From f5935e2b404a5ec6325b6bfcc14da3b493c0cac9 Mon Sep 17 00:00:00 2001 From: shengxuanwei Date: Sun, 24 Apr 2022 15:09:42 +0800 Subject: [PATCH] FIX: typdef NS_ENUM declarator MISSING --- grammar.js | 68 +- src/grammar.json | 541 +- src/node-types.json | 294 +- src/parser.c | 1138190 ++++++++++++------------ test/corpus/compiler_attributes.txt | 4 +- test/corpus/github.txt | 12 +- test/corpus/typedef.txt | 148 +- 7 files changed, 567905 insertions(+), 571352 deletions(-) diff --git a/grammar.js b/grammar.js index a97c3f8..ee1fea7 100644 --- a/grammar.js +++ b/grammar.js @@ -19,8 +19,10 @@ module.exports = grammar(C, { [$.struct_specifier], [$.union_specifier], [$.enum_specifier], + [$.ns_enum_specifier], [$.function_declarator], [$.type_descriptor], + [$.type_definition], // field attributes [$.superclass_reference], [$._expression, $.macro_type_specifier], [$._expression, $.generic_type_specifier], @@ -144,7 +146,7 @@ module.exports = grammar(C, { seq($._name, optional($.parameterized_class_type_arguments), optional($.protocol_qualifiers)), $.generics_type_reference ), - '(', optional(field('category', $.identifier)),')', + '(', field('category', optional($.identifier)),')', optional($.protocol_qualifiers), optional($._instance_variables), optional($._interface_declaration), @@ -532,13 +534,25 @@ module.exports = grammar(C, { optional($.attribute_specifier), optional($.swift_name_attribute_sepcifier), 'typedef', - optional($.attribute_specifier), - repeat($.type_qualifier), - field('type', $._type_specifier), - optional($.attribute_specifier), - repeat($.type_qualifier), - optional(field('declarator', $._type_declarator)), // NS_ENUM optional - optional(choice(field('attributes', $.identifier), $.attribute_specifier)), + choice( + seq( + optional($.attribute_specifier), + repeat($.type_qualifier), + field('type', $._type_specifier), + optional($.attribute_specifier), + repeat($.type_qualifier), + field('declarator', $._type_declarator), + ), + seq( + optional($.attribute_specifier), + repeat($.type_qualifier), + field('type', $.ns_enum_specifier), + optional($.attribute_specifier), + repeat($.type_qualifier), + field('declarator', optional($._type_declarator)), // NS_ENUM optional + ) + ), + field('attributes', optional(choice($.identifier, $.attribute_specifier))), ';' )), @@ -552,28 +566,27 @@ module.exports = grammar(C, { $.block_abstract_declarator, ), - enum_specifier: ($, superclass) => choice( - seq( - 'enum', - choice( - seq( - field('name', optional($._type_identifier)), - field('superclass', optional(seq(':', $._type_specifier))), - field('body', optional($.enumerator_list)) + enum_specifier: ($, superclass) => seq( + 'enum', + choice( + seq( + field('name', optional($._type_identifier)), + field('superclass', optional(seq(':', $._type_specifier))), + field('body', optional($.enumerator_list)) ), - field('body', $.enumerator_list) - ) - ), - seq( - choice('NS_ENUM', 'NS_ERROR_ENUM', 'NS_OPTIONS'), - '(', - field('type', $._type_specifier), - optional(seq(',', field('name', $._type_identifier))), - ')', - field('body', optional($.enumerator_list)), + field('body', $.enumerator_list) ) ), + ns_enum_specifier: ($, superclass) => seq( + choice('NS_ENUM', 'NS_ERROR_ENUM', 'NS_OPTIONS'), + '(', + field('type', $._type_specifier), + optional(seq(',', field('name', $._type_identifier))), + ')', + field('body', optional($.enumerator_list)), + ), + enumerator: ($, superclass) => seq( field('name', $.identifier), optional(seq('=', field('value', $._expression))), @@ -589,6 +602,7 @@ module.exports = grammar(C, { $.BOOL, $.auto, $.instancetype, + $.ns_enum_specifier, $.typeof_specifier, $.atomic_specifier, $.generic_type_specifier, @@ -881,7 +895,7 @@ module.exports = grammar(C, { keyword_argument_list: $ => repeat1($.keyword_argument), keyword_argument: $ => seq( - optional(field('keyword', $.identifier)), + field('keyword', optional($.identifier)), ':', field('argument', choice( $._expression, diff --git a/src/grammar.json b/src/grammar.json index e52c79e..e46b81b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1850,89 +1850,158 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "attribute_specifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "type_qualifier" - } - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "_type_specifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute_specifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "type_qualifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_type_declarator" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "attributes", + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "identifier" + "name": "type_qualifier" } }, { - "type": "SYMBOL", - "name": "attribute_specifier" + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_type_specifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_type_declarator" + } } ] }, { - "type": "BLANK" + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "ns_enum_specifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_declarator" + }, + { + "type": "BLANK" + } + ] + } + } + ] } ] }, + { + "type": "FIELD", + "name": "attributes", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "attribute_specifier" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, { "type": "STRING", "value": ";" @@ -3309,6 +3378,10 @@ "type": "SYMBOL", "name": "instancetype" }, + { + "type": "SYMBOL", + "name": "ns_enum_specifier" + }, { "type": "SYMBOL", "name": "typeof_specifier" @@ -3482,167 +3555,83 @@ } }, "enum_specifier": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "STRING", + "value": "enum" + }, + { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "enum" - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "superclass", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", "members": [ + { + "type": "STRING", + "value": ":" + }, { "type": "SYMBOL", - "name": "_type_identifier" - }, - { - "type": "BLANK" + "name": "_type_specifier" } ] + }, + { + "type": "BLANK" } - }, - { - "type": "FIELD", - "name": "superclass", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_type_specifier" - } - ] - }, - { - "type": "BLANK" - } - ] - } - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "enumerator_list" - }, - { - "type": "BLANK" - } - ] - } - } - ] + ] + } }, { "type": "FIELD", "name": "body", "content": { - "type": "SYMBOL", - "name": "enumerator_list" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "enumerator_list" + }, + { + "type": "BLANK" + } + ] } } ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "NS_ENUM" - }, - { - "type": "STRING", - "value": "NS_ERROR_ENUM" - }, - { - "type": "STRING", - "value": "NS_OPTIONS" - } - ] - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "_type_specifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_type_identifier" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" }, { "type": "FIELD", "name": "body", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "enumerator_list" - }, - { - "type": "BLANK" - } - ] + "type": "SYMBOL", + "name": "enumerator_list" } } ] @@ -7629,20 +7618,20 @@ "value": "(" }, { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "category", - "content": { + "type": "FIELD", + "name": "category", + "content": { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", "name": "identifier" + }, + { + "type": "BLANK" } - }, - { - "type": "BLANK" - } - ] + ] + } }, { "type": "STRING", @@ -9601,6 +9590,85 @@ ] } }, + "ns_enum_specifier": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "NS_ENUM" + }, + { + "type": "STRING", + "value": "NS_ERROR_ENUM" + }, + { + "type": "STRING", + "value": "NS_OPTIONS" + } + ] + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_type_specifier" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "enumerator_list" + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, "typeof_specifier": { "type": "SEQ", "members": [ @@ -9990,8 +10058,17 @@ "value": "BOOL" }, "auto": { - "type": "STRING", - "value": "__auto_type" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "auto" + }, + { + "type": "STRING", + "value": "__auto_type" + } + ] }, "autoreleasepool_statement": { "type": "PREC_RIGHT", @@ -10288,20 +10365,20 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "keyword", - "content": { + "type": "FIELD", + "name": "keyword", + "content": { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", "name": "identifier" + }, + { + "type": "BLANK" } - }, - { - "type": "BLANK" - } - ] + ] + } }, { "type": "STRING", @@ -11242,12 +11319,18 @@ [ "enum_specifier" ], + [ + "ns_enum_specifier" + ], [ "function_declarator" ], [ "type_descriptor" ], + [ + "type_definition" + ], [ "superclass_reference" ], diff --git a/src/node-types.json b/src/node-types.json index 4327d96..bb3b3d5 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1295,6 +1295,10 @@ "type": "method_declaration", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "optional", "named": true @@ -1584,6 +1588,10 @@ "type": "method_declaration", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "optional", "named": true @@ -1850,6 +1858,10 @@ "type": "module_import", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "preproc_def", "named": true @@ -2035,6 +2047,10 @@ "type": "macro_type_specifier", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "primitive_type", "named": true @@ -2185,6 +2201,10 @@ "type": "module_import", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "preproc_def", "named": true @@ -2408,77 +2428,7 @@ "named": true }, { - "type": "primitive_type", - "named": true - }, - { - "type": "sized_type_specifier", - "named": true - }, - { - "type": "struct_specifier", - "named": true - }, - { - "type": "type_identifier", - "named": true - }, - { - "type": "typeof_specifier", - "named": true - }, - { - "type": "union_specifier", - "named": true - } - ] - }, - "type": { - "multiple": false, - "required": false, - "types": [ - { - "type": "BOOL", - "named": true - }, - { - "type": "Class", - "named": true - }, - { - "type": "IMP", - "named": true - }, - { - "type": "SEL", - "named": true - }, - { - "type": "atomic_specifier", - "named": true - }, - { - "type": "auto", - "named": true - }, - { - "type": "enum_specifier", - "named": true - }, - { - "type": "generic_type_specifier", - "named": true - }, - { - "type": "id", - "named": true - }, - { - "type": "instancetype", - "named": true - }, - { - "type": "macro_type_specifier", + "type": "ns_enum_specifier", "named": true }, { @@ -2645,6 +2595,10 @@ "type": "macro_type_specifier", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "primitive_type", "named": true @@ -2865,6 +2819,10 @@ "type": "nonnull", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "nullable", "named": true @@ -2961,6 +2919,10 @@ "type": "macro_type_specifier", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "primitive_type", "named": true @@ -3173,6 +3135,10 @@ "type": "macro_type_specifier", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "primitive_type", "named": true @@ -3343,6 +3309,10 @@ "type": "macro_type_specifier", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "primitive_type", "named": true @@ -3693,6 +3663,10 @@ "type": "nonnull", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "nullable", "named": true @@ -3890,6 +3864,10 @@ "type": "macro_type_specifier", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "primitive_type", "named": true @@ -4030,6 +4008,10 @@ "type": "nonnull", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "nullable", "named": true @@ -4152,6 +4134,10 @@ "type": "macro_type_specifier", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "primitive_type", "named": true @@ -4302,6 +4288,10 @@ "type": "nonnull", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "nullable", "named": true @@ -4424,6 +4414,10 @@ "type": "macro_type_specifier", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "primitive_type", "named": true @@ -4560,6 +4554,110 @@ "named": true, "fields": {} }, + { + "type": "ns_enum_specifier", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "enumerator_list", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "BOOL", + "named": true + }, + { + "type": "Class", + "named": true + }, + { + "type": "IMP", + "named": true + }, + { + "type": "SEL", + "named": true + }, + { + "type": "atomic_specifier", + "named": true + }, + { + "type": "auto", + "named": true + }, + { + "type": "enum_specifier", + "named": true + }, + { + "type": "generic_type_specifier", + "named": true + }, + { + "type": "id", + "named": true + }, + { + "type": "instancetype", + "named": true + }, + { + "type": "macro_type_specifier", + "named": true + }, + { + "type": "ns_enum_specifier", + "named": true + }, + { + "type": "primitive_type", + "named": true + }, + { + "type": "sized_type_specifier", + "named": true + }, + { + "type": "struct_specifier", + "named": true + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "typeof_specifier", + "named": true + }, + { + "type": "union_specifier", + "named": true + } + ] + } + } + }, { "type": "number_expression", "named": true, @@ -4646,6 +4744,10 @@ "type": "macro_type_specifier", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "primitive_type", "named": true @@ -5122,6 +5224,10 @@ "type": "module_import", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "preproc_call", "named": true @@ -5289,6 +5395,10 @@ "type": "module_import", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "preproc_call", "named": true @@ -5573,6 +5683,10 @@ "type": "module_import", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "preproc_call", "named": true @@ -5765,6 +5879,10 @@ "type": "module_import", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "preproc_call", "named": true @@ -6048,6 +6166,10 @@ "type": "macro_type_specifier", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "primitive_type", "named": true @@ -6173,6 +6295,10 @@ "type": "method_declaration", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "optional", "named": true @@ -6405,7 +6531,7 @@ }, { "type": "string_literal", - "named": false, + "named": true, "fields": {}, "children": { "multiple": true, @@ -6635,6 +6761,10 @@ "type": "macro_type_specifier", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "primitive_type", "named": true @@ -6871,6 +7001,10 @@ "type": "module_import", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "preproc_def", "named": true @@ -7000,6 +7134,10 @@ "multiple": false, "required": false, "types": [ + { + "type": "attribute_specifier", + "named": true + }, { "type": "identifier", "named": true @@ -7064,6 +7202,10 @@ "type": "macro_type_specifier", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "primitive_type", "named": true @@ -7172,6 +7314,10 @@ "type": "macro_type_specifier", "named": true }, + { + "type": "ns_enum_specifier", + "named": true + }, { "type": "primitive_type", "named": true @@ -8239,11 +8385,11 @@ }, { "type": "number_literal", - "named": true + "named": false }, { "type": "number_literal", - "named": false + "named": true }, { "type": "oneway", diff --git a/src/parser.c b/src/parser.c index 26b3d7c..46ee4bb 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,9 +14,9 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 5917 -#define LARGE_STATE_COUNT 3906 -#define SYMBOL_COUNT 507 +#define STATE_COUNT 5877 +#define LARGE_STATE_COUNT 3866 +#define SYMBOL_COUNT 508 #define ALIAS_COUNT 5 #define TOKEN_COUNT 272 #define EXTERNAL_TOKEN_COUNT 0 @@ -129,134 +129,134 @@ enum { sym_primitive_type = 102, anon_sym_enum = 103, anon_sym_COLON = 104, - anon_sym_NS_ENUM = 105, - anon_sym_NS_ERROR_ENUM = 106, - anon_sym_NS_OPTIONS = 107, - anon_sym_struct = 108, - anon_sym_ATdefs = 109, - anon_sym_union = 110, - anon_sym_if = 111, - anon_sym_else = 112, - anon_sym_switch = 113, - anon_sym_case = 114, - anon_sym_default = 115, - anon_sym_while = 116, - anon_sym_do = 117, - anon_sym_for = 118, - anon_sym_return = 119, - anon_sym_break = 120, - anon_sym_continue = 121, - anon_sym_goto = 122, - anon_sym_QMARK = 123, - anon_sym_STAR_EQ = 124, - anon_sym_SLASH_EQ = 125, - anon_sym_PERCENT_EQ = 126, - anon_sym_PLUS_EQ = 127, - anon_sym_DASH_EQ = 128, - anon_sym_LT_LT_EQ = 129, - anon_sym_GT_GT_EQ = 130, - anon_sym_AMP_EQ = 131, - anon_sym_CARET_EQ = 132, - anon_sym_PIPE_EQ = 133, - anon_sym_DASH_DASH = 134, - anon_sym_PLUS_PLUS = 135, - anon_sym_sizeof = 136, - anon_sym_DOT = 137, - anon_sym_DASH_GT = 138, - sym_number_literal = 139, - anon_sym_L_SQUOTE = 140, - anon_sym_u_SQUOTE = 141, - anon_sym_U_SQUOTE = 142, - anon_sym_u8_SQUOTE = 143, - anon_sym_SQUOTE = 144, - aux_sym_char_literal_token1 = 145, - anon_sym_L_DQUOTE = 146, - anon_sym_u_DQUOTE = 147, - anon_sym_U_DQUOTE = 148, - anon_sym_u8_DQUOTE = 149, - anon_sym_DQUOTE = 150, - aux_sym_string_literal_token1 = 151, - sym_escape_sequence = 152, - sym_system_lib_string = 153, - sym_true = 154, - sym_false = 155, - sym_null = 156, - sym_comment = 157, - anon_sym_POUNDimport = 158, - anon_sym_ATimport = 159, - sym_module_string = 160, - sym__ns_assume_nonnull_declaration = 161, - anon_sym_ATcompatibility_alias = 162, - anon_sym_ATprotocol = 163, - anon_sym_ATclass = 164, - anon_sym_ATinterface = 165, - anon_sym_ATend = 166, - anon_sym___covariant = 167, - anon_sym___contravariant = 168, - anon_sym___GENERICS = 169, - sym_private = 170, - sym_public = 171, - sym_protected = 172, - sym_package = 173, - sym_optional = 174, - sym_required = 175, - anon_sym_ATproperty = 176, - sym_class_interface_attribute_sepcifier = 177, - sym_method_attribute_specifier = 178, - anon_sym_NS_FORMAT_FUNCTION = 179, - anon_sym_CF_FORMAT_FUNCTION = 180, - anon_sym_NS_UNAVAILABLE = 181, - anon_sym_DEPRECATED_ATTRIBUTE = 182, - anon_sym_UI_APPEARANCE_SELECTOR = 183, - anon_sym_UNAVAILABLE_ATTRIBUTE = 184, - anon_sym_NS_AVAILABLE = 185, - anon_sym___IOS_AVAILABLE = 186, - anon_sym_NS_AVAILABLE_IOS = 187, - anon_sym_API_AVAILABLE = 188, - anon_sym_API_UNAVAILABLE = 189, - anon_sym_API_DEPRECATED = 190, - anon_sym_NS_ENUM_AVAILABLE_IOS = 191, - anon_sym_NS_DEPRECATED_IOS = 192, - anon_sym_NS_ENUM_DEPRECATED_IOS = 193, - anon_sym_DEPRECATED_MSG_ATTRIBUTE = 194, - anon_sym___deprecated_msg = 195, - anon_sym___deprecated_enum_msg = 196, - anon_sym_NS_SWIFT_UNAVAILABLE = 197, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS = 198, - anon_sym_NS_CLASS_AVAILABLE_IOS = 199, - anon_sym_NS_CLASS_DEPRECATED_IOS = 200, - aux_sym_platform_version_token1 = 201, - anon_sym_ios = 202, - anon_sym_tvos = 203, - anon_sym_macos = 204, - anon_sym_macosx = 205, - anon_sym_watchos = 206, - anon_sym_NS_REFINED_FOR_SWIFT = 207, - anon_sym_NS_SWIFT_NAME = 208, - anon_sym_getter = 209, - anon_sym_setter = 210, - sym_nonnull = 211, - sym_nullable = 212, - sym_null_resettable = 213, - sym_unsafe_unretained = 214, - sym_null_unspecified = 215, - sym_direct = 216, - sym_readwrite = 217, - sym_readonly = 218, - sym_strong = 219, - sym_weak = 220, - sym_copy = 221, - sym_assign = 222, - sym_retain = 223, - sym_atomic = 224, - sym_nonatomic = 225, - sym_class = 226, - sym_NS_NONATOMIC_IOSONLY = 227, - sym_DISPATCH_QUEUE_REFERENCE_TYPE = 228, - anon_sym_ATimplementation = 229, - anon_sym_ATsynthesize = 230, - anon_sym_ATdynamic = 231, - anon_sym_NS_NOESCAPE = 232, + anon_sym_struct = 105, + anon_sym_ATdefs = 106, + anon_sym_union = 107, + anon_sym_if = 108, + anon_sym_else = 109, + anon_sym_switch = 110, + anon_sym_case = 111, + anon_sym_default = 112, + anon_sym_while = 113, + anon_sym_do = 114, + anon_sym_for = 115, + anon_sym_return = 116, + anon_sym_break = 117, + anon_sym_continue = 118, + anon_sym_goto = 119, + anon_sym_QMARK = 120, + anon_sym_STAR_EQ = 121, + anon_sym_SLASH_EQ = 122, + anon_sym_PERCENT_EQ = 123, + anon_sym_PLUS_EQ = 124, + anon_sym_DASH_EQ = 125, + anon_sym_LT_LT_EQ = 126, + anon_sym_GT_GT_EQ = 127, + anon_sym_AMP_EQ = 128, + anon_sym_CARET_EQ = 129, + anon_sym_PIPE_EQ = 130, + anon_sym_DASH_DASH = 131, + anon_sym_PLUS_PLUS = 132, + anon_sym_sizeof = 133, + anon_sym_DOT = 134, + anon_sym_DASH_GT = 135, + sym_number_literal = 136, + anon_sym_L_SQUOTE = 137, + anon_sym_u_SQUOTE = 138, + anon_sym_U_SQUOTE = 139, + anon_sym_u8_SQUOTE = 140, + anon_sym_SQUOTE = 141, + aux_sym_char_literal_token1 = 142, + anon_sym_L_DQUOTE = 143, + anon_sym_u_DQUOTE = 144, + anon_sym_U_DQUOTE = 145, + anon_sym_u8_DQUOTE = 146, + anon_sym_DQUOTE = 147, + aux_sym_string_literal_token1 = 148, + sym_escape_sequence = 149, + sym_system_lib_string = 150, + sym_true = 151, + sym_false = 152, + sym_null = 153, + sym_comment = 154, + anon_sym_POUNDimport = 155, + anon_sym_ATimport = 156, + sym_module_string = 157, + sym__ns_assume_nonnull_declaration = 158, + anon_sym_ATcompatibility_alias = 159, + anon_sym_ATprotocol = 160, + anon_sym_ATclass = 161, + anon_sym_ATinterface = 162, + anon_sym_ATend = 163, + anon_sym___covariant = 164, + anon_sym___contravariant = 165, + anon_sym___GENERICS = 166, + sym_private = 167, + sym_public = 168, + sym_protected = 169, + sym_package = 170, + sym_optional = 171, + sym_required = 172, + anon_sym_ATproperty = 173, + sym_class_interface_attribute_sepcifier = 174, + sym_method_attribute_specifier = 175, + anon_sym_NS_FORMAT_FUNCTION = 176, + anon_sym_CF_FORMAT_FUNCTION = 177, + anon_sym_NS_UNAVAILABLE = 178, + anon_sym_DEPRECATED_ATTRIBUTE = 179, + anon_sym_UI_APPEARANCE_SELECTOR = 180, + anon_sym_UNAVAILABLE_ATTRIBUTE = 181, + anon_sym_NS_AVAILABLE = 182, + anon_sym___IOS_AVAILABLE = 183, + anon_sym_NS_AVAILABLE_IOS = 184, + anon_sym_API_AVAILABLE = 185, + anon_sym_API_UNAVAILABLE = 186, + anon_sym_API_DEPRECATED = 187, + anon_sym_NS_ENUM_AVAILABLE_IOS = 188, + anon_sym_NS_DEPRECATED_IOS = 189, + anon_sym_NS_ENUM_DEPRECATED_IOS = 190, + anon_sym_DEPRECATED_MSG_ATTRIBUTE = 191, + anon_sym___deprecated_msg = 192, + anon_sym___deprecated_enum_msg = 193, + anon_sym_NS_SWIFT_UNAVAILABLE = 194, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS = 195, + anon_sym_NS_CLASS_AVAILABLE_IOS = 196, + anon_sym_NS_CLASS_DEPRECATED_IOS = 197, + aux_sym_platform_version_token1 = 198, + anon_sym_ios = 199, + anon_sym_tvos = 200, + anon_sym_macos = 201, + anon_sym_macosx = 202, + anon_sym_watchos = 203, + anon_sym_NS_REFINED_FOR_SWIFT = 204, + anon_sym_NS_SWIFT_NAME = 205, + anon_sym_getter = 206, + anon_sym_setter = 207, + sym_nonnull = 208, + sym_nullable = 209, + sym_null_resettable = 210, + sym_unsafe_unretained = 211, + sym_null_unspecified = 212, + sym_direct = 213, + sym_readwrite = 214, + sym_readonly = 215, + sym_strong = 216, + sym_weak = 217, + sym_copy = 218, + sym_assign = 219, + sym_retain = 220, + sym_atomic = 221, + sym_nonatomic = 222, + sym_class = 223, + sym_NS_NONATOMIC_IOSONLY = 224, + sym_DISPATCH_QUEUE_REFERENCE_TYPE = 225, + anon_sym_ATimplementation = 226, + anon_sym_ATsynthesize = 227, + anon_sym_ATdynamic = 228, + anon_sym_NS_NOESCAPE = 229, + anon_sym_NS_ENUM = 230, + anon_sym_NS_ERROR_ENUM = 231, + anon_sym_NS_OPTIONS = 232, anon_sym_typeof = 233, anon_sym___typeof = 234, anon_sym___typeof__ = 235, @@ -453,89 +453,90 @@ enum { sym_keyword_declarator = 426, sym__method_argument_type_specifier = 427, sym__argument_type_declarator = 428, - sym_typeof_specifier = 429, - sym_atomic_specifier = 430, - sym_generic_type_specifier = 431, - sym_generic_type_references = 432, - sym_block_abstract_declarator = 433, - sym_block_declarator = 434, - sym_block_expression = 435, - sym_autoreleasepool_statement = 436, - sym_synchronized_statement = 437, - sym_for_in_statement = 438, - sym_try_catch_statement = 439, - sym_throw_statement = 440, - sym_message_expression = 441, - sym__receiver = 442, - sym__message_selector = 443, - sym_keyword_argument_list = 444, - sym_keyword_argument = 445, - sym__variadic_arguments = 446, - sym_selector_expression = 447, - sym__selector_name = 448, - sym__keyword_name = 449, - sym_protocol_expression = 450, - sym_encode_expression = 451, - sym_number_expression = 452, - sym_string_expression = 453, - sym_object_expression = 454, - sym_dictionary_expression = 455, - sym__dictionary_key_value_list = 456, - sym__dictionary_key_value_pair = 457, - sym_array_expression = 458, - sym_boolean_expression = 459, - sym_available_expression = 460, - sym_statement_expression = 461, - sym_va_arg_expression = 462, - sym_preproc_has_include = 463, - aux_sym_translation_unit_repeat1 = 464, - aux_sym_preproc_params_repeat1 = 465, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 466, - aux_sym_preproc_argument_list_repeat1 = 467, - aux_sym_declaration_repeat1 = 468, - aux_sym_type_definition_repeat1 = 469, - aux_sym__declaration_specifiers_repeat1 = 470, - aux_sym_pointer_declarator_repeat1 = 471, - aux_sym_function_declarator_repeat1 = 472, - aux_sym_sized_type_specifier_repeat1 = 473, - aux_sym_enumerator_list_repeat1 = 474, - aux_sym_field_declaration_repeat1 = 475, - aux_sym_enumerator_repeat1 = 476, - aux_sym_parameter_list_repeat1 = 477, - aux_sym_case_statement_repeat1 = 478, - aux_sym_argument_list_repeat1 = 479, - aux_sym_initializer_list_repeat1 = 480, - aux_sym_initializer_pair_repeat1 = 481, - aux_sym_concatenated_string_repeat1 = 482, - aux_sym_string_literal_repeat1 = 483, - aux_sym_protocol_forward_declaration_repeat1 = 484, - aux_sym_class_forward_declaration_repeat1 = 485, - aux_sym_protocol_qualifiers_repeat1 = 486, - aux_sym_parameterized_class_type_arguments_repeat1 = 487, - aux_sym_generics_type_reference_repeat1 = 488, - aux_sym__instance_variables_repeat1 = 489, - aux_sym_property_declaration_repeat1 = 490, - aux_sym_property_attributes_repeat1 = 491, - aux_sym_availability_attribute_specifier_repeat1 = 492, - aux_sym_platform_version_repeat1 = 493, - aux_sym_swift_name_attribute_sepcifier_repeat1 = 494, - aux_sym_swift_name_attribute_sepcifier_repeat2 = 495, - aux_sym_synthesize_definition_repeat1 = 496, - aux_sym_dynamic_definition_repeat1 = 497, - aux_sym_keyword_selector_repeat1 = 498, - aux_sym_generic_type_specifier_repeat1 = 499, - aux_sym_generic_type_references_repeat1 = 500, - aux_sym_try_catch_statement_repeat1 = 501, - aux_sym_keyword_argument_list_repeat1 = 502, - aux_sym__selector_name_repeat1 = 503, - aux_sym_string_expression_repeat1 = 504, - aux_sym__dictionary_key_value_list_repeat1 = 505, - aux_sym_available_expression_repeat1 = 506, - alias_sym_field_identifier = 507, - anon_alias_sym_number_literal = 508, - alias_sym_statement_identifier = 509, - anon_alias_sym_string_literal = 510, - alias_sym_type_identifier = 511, + sym_ns_enum_specifier = 429, + sym_typeof_specifier = 430, + sym_atomic_specifier = 431, + sym_generic_type_specifier = 432, + sym_generic_type_references = 433, + sym_block_abstract_declarator = 434, + sym_block_declarator = 435, + sym_block_expression = 436, + sym_autoreleasepool_statement = 437, + sym_synchronized_statement = 438, + sym_for_in_statement = 439, + sym_try_catch_statement = 440, + sym_throw_statement = 441, + sym_message_expression = 442, + sym__receiver = 443, + sym__message_selector = 444, + sym_keyword_argument_list = 445, + sym_keyword_argument = 446, + sym__variadic_arguments = 447, + sym_selector_expression = 448, + sym__selector_name = 449, + sym__keyword_name = 450, + sym_protocol_expression = 451, + sym_encode_expression = 452, + sym_number_expression = 453, + sym_string_expression = 454, + sym_object_expression = 455, + sym_dictionary_expression = 456, + sym__dictionary_key_value_list = 457, + sym__dictionary_key_value_pair = 458, + sym_array_expression = 459, + sym_boolean_expression = 460, + sym_available_expression = 461, + sym_statement_expression = 462, + sym_va_arg_expression = 463, + sym_preproc_has_include = 464, + aux_sym_translation_unit_repeat1 = 465, + aux_sym_preproc_params_repeat1 = 466, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 467, + aux_sym_preproc_argument_list_repeat1 = 468, + aux_sym_declaration_repeat1 = 469, + aux_sym_type_definition_repeat1 = 470, + aux_sym__declaration_specifiers_repeat1 = 471, + aux_sym_pointer_declarator_repeat1 = 472, + aux_sym_function_declarator_repeat1 = 473, + aux_sym_sized_type_specifier_repeat1 = 474, + aux_sym_enumerator_list_repeat1 = 475, + aux_sym_field_declaration_repeat1 = 476, + aux_sym_enumerator_repeat1 = 477, + aux_sym_parameter_list_repeat1 = 478, + aux_sym_case_statement_repeat1 = 479, + aux_sym_argument_list_repeat1 = 480, + aux_sym_initializer_list_repeat1 = 481, + aux_sym_initializer_pair_repeat1 = 482, + aux_sym_concatenated_string_repeat1 = 483, + aux_sym_string_literal_repeat1 = 484, + aux_sym_protocol_forward_declaration_repeat1 = 485, + aux_sym_class_forward_declaration_repeat1 = 486, + aux_sym_protocol_qualifiers_repeat1 = 487, + aux_sym_parameterized_class_type_arguments_repeat1 = 488, + aux_sym_generics_type_reference_repeat1 = 489, + aux_sym__instance_variables_repeat1 = 490, + aux_sym_property_declaration_repeat1 = 491, + aux_sym_property_attributes_repeat1 = 492, + aux_sym_availability_attribute_specifier_repeat1 = 493, + aux_sym_platform_version_repeat1 = 494, + aux_sym_swift_name_attribute_sepcifier_repeat1 = 495, + aux_sym_swift_name_attribute_sepcifier_repeat2 = 496, + aux_sym_synthesize_definition_repeat1 = 497, + aux_sym_dynamic_definition_repeat1 = 498, + aux_sym_keyword_selector_repeat1 = 499, + aux_sym_generic_type_specifier_repeat1 = 500, + aux_sym_generic_type_references_repeat1 = 501, + aux_sym_try_catch_statement_repeat1 = 502, + aux_sym_keyword_argument_list_repeat1 = 503, + aux_sym__selector_name_repeat1 = 504, + aux_sym_string_expression_repeat1 = 505, + aux_sym__dictionary_key_value_list_repeat1 = 506, + aux_sym_available_expression_repeat1 = 507, + alias_sym_field_identifier = 508, + anon_alias_sym_number_literal = 509, + alias_sym_statement_identifier = 510, + anon_alias_sym_string_literal = 511, + alias_sym_type_identifier = 512, }; static const char * const ts_symbol_names[] = { @@ -644,9 +645,6 @@ static const char * const ts_symbol_names[] = { [sym_primitive_type] = "primitive_type", [anon_sym_enum] = "enum", [anon_sym_COLON] = ":", - [anon_sym_NS_ENUM] = "NS_ENUM", - [anon_sym_NS_ERROR_ENUM] = "NS_ERROR_ENUM", - [anon_sym_NS_OPTIONS] = "NS_OPTIONS", [anon_sym_struct] = "struct", [anon_sym_ATdefs] = "@defs", [anon_sym_union] = "union", @@ -772,6 +770,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_ATsynthesize] = "@synthesize", [anon_sym_ATdynamic] = "@dynamic", [anon_sym_NS_NOESCAPE] = "NS_NOESCAPE", + [anon_sym_NS_ENUM] = "NS_ENUM", + [anon_sym_NS_ERROR_ENUM] = "NS_ERROR_ENUM", + [anon_sym_NS_OPTIONS] = "NS_OPTIONS", [anon_sym_typeof] = "typeof", [anon_sym___typeof] = "__typeof", [anon_sym___typeof__] = "__typeof__", @@ -968,6 +969,7 @@ static const char * const ts_symbol_names[] = { [sym_keyword_declarator] = "keyword_declarator", [sym__method_argument_type_specifier] = "_method_argument_type_specifier", [sym__argument_type_declarator] = "_argument_type_declarator", + [sym_ns_enum_specifier] = "ns_enum_specifier", [sym_typeof_specifier] = "typeof_specifier", [sym_atomic_specifier] = "atomic_specifier", [sym_generic_type_specifier] = "generic_type_specifier", @@ -1159,9 +1161,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_primitive_type] = sym_primitive_type, [anon_sym_enum] = anon_sym_enum, [anon_sym_COLON] = anon_sym_COLON, - [anon_sym_NS_ENUM] = anon_sym_NS_ENUM, - [anon_sym_NS_ERROR_ENUM] = anon_sym_NS_ERROR_ENUM, - [anon_sym_NS_OPTIONS] = anon_sym_NS_OPTIONS, [anon_sym_struct] = anon_sym_struct, [anon_sym_ATdefs] = anon_sym_ATdefs, [anon_sym_union] = anon_sym_union, @@ -1287,6 +1286,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_ATsynthesize] = anon_sym_ATsynthesize, [anon_sym_ATdynamic] = anon_sym_ATdynamic, [anon_sym_NS_NOESCAPE] = anon_sym_NS_NOESCAPE, + [anon_sym_NS_ENUM] = anon_sym_NS_ENUM, + [anon_sym_NS_ERROR_ENUM] = anon_sym_NS_ERROR_ENUM, + [anon_sym_NS_OPTIONS] = anon_sym_NS_OPTIONS, [anon_sym_typeof] = anon_sym_typeof, [anon_sym___typeof] = anon_sym___typeof, [anon_sym___typeof__] = anon_sym___typeof__, @@ -1483,6 +1485,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_keyword_declarator] = sym_keyword_declarator, [sym__method_argument_type_specifier] = sym__method_argument_type_specifier, [sym__argument_type_declarator] = sym__argument_type_declarator, + [sym_ns_enum_specifier] = sym_ns_enum_specifier, [sym_typeof_specifier] = sym_typeof_specifier, [sym_atomic_specifier] = sym_atomic_specifier, [sym_generic_type_specifier] = sym_generic_type_specifier, @@ -1989,18 +1992,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_NS_ENUM] = { - .visible = true, - .named = false, - }, - [anon_sym_NS_ERROR_ENUM] = { - .visible = true, - .named = false, - }, - [anon_sym_NS_OPTIONS] = { - .visible = true, - .named = false, - }, [anon_sym_struct] = { .visible = true, .named = false, @@ -2501,6 +2492,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_NS_ENUM] = { + .visible = true, + .named = false, + }, + [anon_sym_NS_ERROR_ENUM] = { + .visible = true, + .named = false, + }, + [anon_sym_NS_OPTIONS] = { + .visible = true, + .named = false, + }, [anon_sym_typeof] = { .visible = true, .named = false, @@ -3291,6 +3294,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_ns_enum_specifier] = { + .visible = true, + .named = true, + }, [sym_typeof_specifier] = { .visible = true, .named = true, @@ -3824,29 +3831,29 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [97] = {.index = 151, .length = 2}, [98] = {.index = 153, .length = 2}, [99] = {.index = 155, .length = 1}, - [100] = {.index = 156, .length = 2}, - [101] = {.index = 158, .length = 3}, + [100] = {.index = 156, .length = 3}, + [101] = {.index = 159, .length = 2}, [102] = {.index = 161, .length = 2}, [103] = {.index = 163, .length = 2}, [104] = {.index = 165, .length = 4}, [105] = {.index = 169, .length = 2}, - [106] = {.index = 171, .length = 2}, - [107] = {.index = 173, .length = 4}, + [106] = {.index = 171, .length = 4}, + [107] = {.index = 175, .length = 2}, [108] = {.index = 177, .length = 2}, - [109] = {.index = 179, .length = 2}, - [110] = {.index = 181, .length = 3}, - [111] = {.index = 184, .length = 2}, - [112] = {.index = 186, .length = 1}, + [109] = {.index = 179, .length = 3}, + [110] = {.index = 182, .length = 2}, + [111] = {.index = 184, .length = 1}, + [112] = {.index = 185, .length = 2}, [113] = {.index = 187, .length = 2}, - [114] = {.index = 189, .length = 2}, - [115] = {.index = 191, .length = 1}, - [116] = {.index = 192, .length = 1}, + [114] = {.index = 189, .length = 1}, + [115] = {.index = 190, .length = 1}, + [116] = {.index = 191, .length = 2}, [117] = {.index = 193, .length = 2}, - [118] = {.index = 195, .length = 2}, - [119] = {.index = 197, .length = 1}, - [120] = {.index = 198, .length = 2}, - [121] = {.index = 200, .length = 1}, - [122] = {.index = 201, .length = 3}, + [118] = {.index = 195, .length = 1}, + [119] = {.index = 196, .length = 2}, + [120] = {.index = 198, .length = 1}, + [121] = {.index = 199, .length = 3}, + [122] = {.index = 202, .length = 2}, [123] = {.index = 204, .length = 4}, [124] = {.index = 208, .length = 2}, [125] = {.index = 210, .length = 2}, @@ -3859,34 +3866,34 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [132] = {.index = 225, .length = 1}, [133] = {.index = 226, .length = 1}, [135] = {.index = 227, .length = 2}, - [136] = {.index = 229, .length = 2}, - [137] = {.index = 231, .length = 3}, + [136] = {.index = 229, .length = 3}, + [137] = {.index = 232, .length = 2}, [138] = {.index = 234, .length = 2}, [139] = {.index = 236, .length = 2}, [140] = {.index = 238, .length = 3}, [141] = {.index = 241, .length = 2}, [142] = {.index = 243, .length = 2}, - [143] = {.index = 245, .length = 2}, - [144] = {.index = 247, .length = 5}, - [145] = {.index = 252, .length = 4}, - [146] = {.index = 256, .length = 2}, - [147] = {.index = 258, .length = 1}, - [148] = {.index = 259, .length = 2}, - [149] = {.index = 261, .length = 4}, - [150] = {.index = 265, .length = 2}, - [151] = {.index = 267, .length = 5}, + [143] = {.index = 245, .length = 5}, + [144] = {.index = 250, .length = 4}, + [145] = {.index = 254, .length = 2}, + [146] = {.index = 256, .length = 1}, + [147] = {.index = 257, .length = 2}, + [148] = {.index = 259, .length = 4}, + [149] = {.index = 263, .length = 2}, + [150] = {.index = 265, .length = 5}, + [151] = {.index = 270, .length = 2}, [152] = {.index = 272, .length = 2}, [153] = {.index = 274, .length = 2}, - [154] = {.index = 276, .length = 2}, - [155] = {.index = 278, .length = 1}, - [156] = {.index = 279, .length = 1}, - [157] = {.index = 280, .length = 2}, - [158] = {.index = 282, .length = 3}, + [154] = {.index = 276, .length = 1}, + [155] = {.index = 277, .length = 1}, + [156] = {.index = 278, .length = 2}, + [157] = {.index = 280, .length = 3}, + [158] = {.index = 283, .length = 2}, [159] = {.index = 285, .length = 2}, [160] = {.index = 287, .length = 2}, - [161] = {.index = 289, .length = 2}, - [162] = {.index = 291, .length = 3}, - [163] = {.index = 294, .length = 6}, + [161] = {.index = 289, .length = 3}, + [162] = {.index = 292, .length = 6}, + [163] = {.index = 298, .length = 2}, [164] = {.index = 300, .length = 3}, [165] = {.index = 303, .length = 2}, [166] = {.index = 305, .length = 2}, @@ -3901,24 +3908,24 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [175] = {.index = 321, .length = 2}, [176] = {.index = 323, .length = 2}, [177] = {.index = 325, .length = 2}, - [178] = {.index = 327, .length = 2}, - [179] = {.index = 329, .length = 3}, + [178] = {.index = 327, .length = 3}, + [179] = {.index = 330, .length = 2}, [180] = {.index = 332, .length = 3}, - [181] = {.index = 335, .length = 3}, - [182] = {.index = 338, .length = 5}, - [183] = {.index = 343, .length = 1}, - [184] = {.index = 344, .length = 1}, - [185] = {.index = 345, .length = 2}, - [186] = {.index = 347, .length = 2}, - [187] = {.index = 349, .length = 4}, - [188] = {.index = 353, .length = 3}, - [189] = {.index = 356, .length = 5}, - [190] = {.index = 361, .length = 2}, - [191] = {.index = 363, .length = 3}, - [192] = {.index = 366, .length = 4}, - [193] = {.index = 370, .length = 4}, - [194] = {.index = 374, .length = 3}, - [195] = {.index = 377, .length = 6}, + [181] = {.index = 335, .length = 5}, + [182] = {.index = 340, .length = 1}, + [183] = {.index = 341, .length = 1}, + [184] = {.index = 342, .length = 2}, + [185] = {.index = 344, .length = 2}, + [186] = {.index = 346, .length = 4}, + [187] = {.index = 350, .length = 3}, + [188] = {.index = 353, .length = 5}, + [189] = {.index = 358, .length = 2}, + [190] = {.index = 360, .length = 3}, + [191] = {.index = 363, .length = 4}, + [192] = {.index = 367, .length = 4}, + [193] = {.index = 371, .length = 3}, + [194] = {.index = 374, .length = 6}, + [195] = {.index = 380, .length = 3}, [196] = {.index = 383, .length = 4}, [197] = {.index = 387, .length = 2}, [198] = {.index = 389, .length = 2}, @@ -3943,8 +3950,8 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [217] = {.index = 433, .length = 6}, [218] = {.index = 439, .length = 2}, [219] = {.index = 441, .length = 2}, - [220] = {.index = 443, .length = 2}, - [221] = {.index = 445, .length = 3}, + [220] = {.index = 443, .length = 3}, + [221] = {.index = 446, .length = 2}, [222] = {.index = 448, .length = 2}, [223] = {.index = 450, .length = 2}, [224] = {.index = 452, .length = 3}, @@ -3956,8 +3963,8 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [230] = {.index = 470, .length = 2}, [231] = {.index = 472, .length = 2}, [232] = {.index = 474, .length = 2}, - [233] = {.index = 476, .length = 2}, - [234] = {.index = 478, .length = 3}, + [233] = {.index = 476, .length = 3}, + [234] = {.index = 479, .length = 2}, [235] = {.index = 481, .length = 3}, [236] = {.index = 484, .length = 3}, [237] = {.index = 487, .length = 3}, @@ -4211,20 +4218,20 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_declarator, 3}, {field_type, 1}, [151] = - {field_attributes, 3}, + {field_declarator, 3}, {field_type, 2}, [153] = - {field_declarator, 3}, + {field_attributes, 3}, {field_type, 2}, [155] = {field_type, 3}, [156] = - {field_attributes, 3}, - {field_type, 1}, - [158] = {field_attributes, 3}, {field_declarator, 2}, {field_type, 1}, + [159] = + {field_attributes, 3}, + {field_type, 1}, [161] = {field_argument, 2}, {field_keyword, 0}, @@ -4237,58 +4244,58 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_superclass, 2}, {field_superclass, 3}, [169] = - {field_body, 4}, - {field_type, 2}, - [171] = {field_argument, 1}, {field_directive, 0}, - [173] = + [171] = {field_body, 1}, {field_body, 2}, {field_body, 4}, {field_class_name, 3}, - [177] = + [175] = {field_name, 1, .inherited = true}, {field_type_reference, 2}, - [179] = + [177] = {field_body, 4}, {field_name, 2}, - [181] = + [179] = {field_alternative, 4}, {field_condition, 1}, {field_consequence, 2}, - [184] = + [182] = {field_body, 1}, {field_condition, 3}, - [186] = + [184] = {field_type, 2, .inherited = true}, - [187] = + [185] = {field_scope, 0}, {field_selector, 1}, - [189] = + [187] = {field_name, 1, .inherited = true}, {field_name, 3, .inherited = true}, - [191] = + [189] = {field_name, 3, .inherited = true}, - [192] = + [190] = {field_message, 1}, - [193] = + [191] = {field_message, 2}, {field_message, 3, .inherited = true}, - [195] = + [193] = {field_message, 0, .inherited = true}, {field_message, 1, .inherited = true}, - [197] = + [195] = {field_message, 3, .inherited = true}, - [198] = + [196] = {field_class, 2}, {field_method, 3}, - [200] = + [198] = {field_property, 1}, - [201] = + [199] = {field_body, 2}, {field_scope, 0}, {field_selector, 1}, + [202] = + {field_body, 4}, + {field_type, 2}, [204] = {field_body, 1}, {field_catch, 2, .inherited = true}, @@ -4324,107 +4331,107 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [226] = {field_size, 2}, [227] = - {field_attributes, 4}, - {field_type, 2}, - [229] = {field_declarator, 4}, {field_type, 2}, - [231] = + [229] = {field_attributes, 4}, {field_declarator, 3}, {field_type, 2}, - [234] = + [232] = {field_attributes, 4}, + {field_type, 2}, + [234] = + {field_declarator, 4}, {field_type, 3}, [236] = - {field_declarator, 4}, + {field_attributes, 4}, {field_type, 3}, [238] = {field_attributes, 4}, {field_declarator, 3}, {field_type, 1}, [241] = - {field_attributes, 4}, - {field_type, 1}, - [243] = {field_declarator, 4}, {field_type, 1}, + [243] = + {field_attributes, 4}, + {field_type, 1}, [245] = - {field_name, 4}, - {field_type, 2}, - [247] = {field_body, 2}, {field_body, 3}, {field_body, 5}, {field_class_name, 4}, {field_name, 1}, - [252] = + [250] = {field_body, 2}, {field_body, 3}, {field_body, 5}, {field_class_name, 4}, - [256] = + [254] = {field_declarator, 3}, {field_type, 2, .inherited = true}, - [258] = + [256] = {field_initializer, 2}, - [259] = + [257] = {field_declarator, 1, .inherited = true}, {field_type, 1, .inherited = true}, - [261] = + [259] = {field_declarator, 1, .inherited = true}, {field_name, 2, .inherited = true}, {field_type, 1}, {field_type, 1, .inherited = true}, - [265] = + [263] = {field_keyword, 0}, {field_name, 2, .inherited = true}, - [267] = + [265] = {field_declarator, 1, .inherited = true}, {field_return_type, 1}, {field_scope, 0}, {field_selector, 2}, {field_type, 1, .inherited = true}, - [272] = + [270] = {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [274] = + [272] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [276] = + [274] = {field_category, 3}, {field_name, 1, .inherited = true}, - [278] = + [276] = {field_category, 3}, - [279] = + [277] = {field_name, 4, .inherited = true}, - [280] = + [278] = {field_platform, 0}, {field_version, 2}, - [282] = + [280] = {field_method, 2}, {field_parameters, 3}, {field_parameters, 4}, - [285] = + [283] = {field_instance_variable, 2}, {field_property, 0}, - [287] = + [285] = {field_property, 1}, {field_property, 2, .inherited = true}, - [289] = + [287] = {field_property, 0, .inherited = true}, {field_property, 1, .inherited = true}, - [291] = + [289] = {field_body, 3}, {field_scope, 0}, {field_selector, 1}, - [294] = + [292] = {field_body, 3}, {field_declarator, 1, .inherited = true}, {field_return_type, 1}, {field_scope, 0}, {field_selector, 2}, {field_type, 1, .inherited = true}, + [298] = + {field_name, 4}, + {field_type, 2}, [300] = {field_platform, 2}, {field_platform, 4, .inherited = true}, @@ -4458,88 +4465,88 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_declarator, 4}, {field_type, 2}, [321] = - {field_attributes, 5}, + {field_declarator, 5}, {field_type, 2}, [323] = - {field_declarator, 5}, + {field_attributes, 5}, {field_type, 2}, [325] = - {field_attributes, 5}, - {field_type, 3}, - [327] = {field_declarator, 5}, {field_type, 3}, - [329] = + [327] = {field_attributes, 5}, {field_declarator, 4}, {field_type, 3}, + [330] = + {field_attributes, 5}, + {field_type, 3}, [332] = {field_attributes, 5}, {field_declarator, 4}, {field_type, 1}, [335] = - {field_body, 6}, - {field_name, 4}, - {field_type, 2}, - [338] = {field_body, 3}, {field_body, 4}, {field_body, 6}, {field_class_name, 5}, {field_name, 2}, - [343] = + [340] = + {field_update, 4}, + [341] = + {field_condition, 3}, + [342] = + {field_initializer, 2}, {field_update, 4}, [344] = {field_condition, 3}, - [345] = {field_initializer, 2}, - {field_update, 4}, - [347] = - {field_condition, 3}, - {field_initializer, 2}, - [349] = + [346] = {field_declarator, 2, .inherited = true}, {field_initializer, 2}, {field_loop, 4}, {field_type, 2, .inherited = true}, - [353] = + [350] = {field_declarator, 2}, {field_declarator, 3, .inherited = true}, {field_type, 1}, - [356] = + [353] = {field_declarator, 2, .inherited = true}, {field_keyword, 0}, {field_name, 3, .inherited = true}, {field_type, 2}, {field_type, 2, .inherited = true}, - [361] = + [358] = {field_category, 4}, {field_name, 1, .inherited = true}, - [363] = + [360] = {field_platform, 0}, {field_version, 2}, {field_version, 3}, - [366] = + [363] = {field_method, 2}, {field_parameters, 3}, {field_parameters, 4}, {field_parameters, 5}, - [370] = + [367] = {field_class, 2}, {field_method, 3}, {field_parameters, 4}, {field_parameters, 5}, - [374] = + [371] = {field_body, 4}, {field_scope, 0}, {field_selector, 1}, - [377] = + [374] = {field_body, 4}, {field_declarator, 1, .inherited = true}, {field_return_type, 1}, {field_scope, 0}, {field_selector, 2}, {field_type, 1, .inherited = true}, + [380] = + {field_body, 6}, + {field_name, 4}, + {field_type, 2}, [383] = {field_catch, 4}, {field_declaration, 1}, @@ -4555,10 +4562,10 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_declarator, 3}, {field_parameters, 5}, [393] = - {field_attributes, 5}, + {field_declarator, 5}, {field_type, 4}, [395] = - {field_declarator, 5}, + {field_attributes, 5}, {field_type, 4}, [397] = {field_category, 4}, @@ -4576,10 +4583,10 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_declarator, 5}, {field_type, 3}, [407] = - {field_attributes, 6}, + {field_declarator, 6}, {field_type, 3}, [409] = - {field_declarator, 6}, + {field_attributes, 6}, {field_type, 3}, [411] = {field_condition, 3}, @@ -4622,20 +4629,20 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_declarator, 3}, {field_parameters, 6}, [441] = - {field_attributes, 6}, - {field_type, 4}, - [443] = {field_declarator, 6}, {field_type, 4}, - [445] = + [443] = {field_attributes, 6}, {field_declarator, 5}, {field_type, 4}, - [448] = + [446] = {field_attributes, 6}, + {field_type, 4}, + [448] = + {field_declarator, 6}, {field_type, 5}, [450] = - {field_declarator, 6}, + {field_attributes, 6}, {field_type, 5}, [452] = {field_attributes, 7}, @@ -4662,21 +4669,21 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_declarator, 6}, {field_type, 4}, [470] = - {field_attributes, 7}, + {field_declarator, 7}, {field_type, 4}, [472] = - {field_declarator, 7}, + {field_attributes, 7}, {field_type, 4}, [474] = - {field_attributes, 7}, - {field_type, 5}, - [476] = {field_declarator, 7}, {field_type, 5}, - [478] = + [476] = {field_attributes, 7}, {field_declarator, 6}, {field_type, 5}, + [479] = + {field_attributes, 7}, + {field_type, 5}, [481] = {field_declarator, 5}, {field_declarator, 6, .inherited = true}, @@ -4698,10 +4705,10 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_declarator, 7}, {field_type, 5}, [496] = - {field_attributes, 8}, + {field_declarator, 8}, {field_type, 5}, [498] = - {field_declarator, 8}, + {field_attributes, 8}, {field_type, 5}, [500] = {field_declarator, 6}, @@ -4777,16 +4784,16 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [104] = { [1] = alias_sym_type_identifier, }, - [109] = { + [108] = { [2] = alias_sym_type_identifier, }, [134] = { [1] = alias_sym_field_identifier, }, - [143] = { + [163] = { [4] = alias_sym_type_identifier, }, - [181] = { + [195] = { [4] = alias_sym_type_identifier, }, }; @@ -5551,9 +5558,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ' || lookahead == 160) SKIP(85) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(867); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(896); END_STATE(); case 86: if (lookahead == '!') ADVANCE(106); @@ -5710,9 +5717,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ' || lookahead == 160) SKIP(93) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(896); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(867); END_STATE(); case 94: if (lookahead == '#') ADVANCE(172); @@ -14784,7 +14791,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [21] = {.lex_state = 477}, [22] = {.lex_state = 477}, [23] = {.lex_state = 477}, - [24] = {.lex_state = 477}, + [24] = {.lex_state = 80}, [25] = {.lex_state = 477}, [26] = {.lex_state = 477}, [27] = {.lex_state = 477}, @@ -14796,20 +14803,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [33] = {.lex_state = 477}, [34] = {.lex_state = 477}, [35] = {.lex_state = 477}, - [36] = {.lex_state = 477}, + [36] = {.lex_state = 80}, [37] = {.lex_state = 477}, - [38] = {.lex_state = 80}, - [39] = {.lex_state = 80}, - [40] = {.lex_state = 477}, - [41] = {.lex_state = 79}, + [38] = {.lex_state = 477}, + [39] = {.lex_state = 477}, + [40] = {.lex_state = 79}, + [41] = {.lex_state = 477}, [42] = {.lex_state = 79}, - [43] = {.lex_state = 477}, + [43] = {.lex_state = 79}, [44] = {.lex_state = 477}, [45] = {.lex_state = 79}, [46] = {.lex_state = 477}, - [47] = {.lex_state = 477}, - [48] = {.lex_state = 79}, - [49] = {.lex_state = 79}, + [47] = {.lex_state = 79}, + [48] = {.lex_state = 477}, + [49] = {.lex_state = 477}, [50] = {.lex_state = 80}, [51] = {.lex_state = 80}, [52] = {.lex_state = 80}, @@ -14825,95 +14832,95 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [62] = {.lex_state = 477}, [63] = {.lex_state = 79}, [64] = {.lex_state = 477}, - [65] = {.lex_state = 477}, + [65] = {.lex_state = 79}, [66] = {.lex_state = 477}, [67] = {.lex_state = 79}, - [68] = {.lex_state = 79}, - [69] = {.lex_state = 477}, - [70] = {.lex_state = 79}, + [68] = {.lex_state = 477}, + [69] = {.lex_state = 79}, + [70] = {.lex_state = 477}, [71] = {.lex_state = 477}, [72] = {.lex_state = 477}, [73] = {.lex_state = 477}, [74] = {.lex_state = 477}, [75] = {.lex_state = 477}, - [76] = {.lex_state = 79}, - [77] = {.lex_state = 79}, - [78] = {.lex_state = 79}, - [79] = {.lex_state = 79}, - [80] = {.lex_state = 79}, + [76] = {.lex_state = 477}, + [77] = {.lex_state = 477}, + [78] = {.lex_state = 477}, + [79] = {.lex_state = 477}, + [80] = {.lex_state = 477}, [81] = {.lex_state = 477}, - [82] = {.lex_state = 79}, - [83] = {.lex_state = 79}, - [84] = {.lex_state = 79}, + [82] = {.lex_state = 477}, + [83] = {.lex_state = 477}, + [84] = {.lex_state = 477}, [85] = {.lex_state = 477}, - [86] = {.lex_state = 79}, - [87] = {.lex_state = 79}, - [88] = {.lex_state = 79}, - [89] = {.lex_state = 79}, - [90] = {.lex_state = 79}, - [91] = {.lex_state = 79}, - [92] = {.lex_state = 79}, - [93] = {.lex_state = 79}, - [94] = {.lex_state = 79}, - [95] = {.lex_state = 79}, - [96] = {.lex_state = 79}, - [97] = {.lex_state = 79}, - [98] = {.lex_state = 79}, - [99] = {.lex_state = 79}, - [100] = {.lex_state = 79}, - [101] = {.lex_state = 79}, - [102] = {.lex_state = 79}, - [103] = {.lex_state = 79}, - [104] = {.lex_state = 79}, - [105] = {.lex_state = 79}, - [106] = {.lex_state = 79}, - [107] = {.lex_state = 79}, - [108] = {.lex_state = 79}, - [109] = {.lex_state = 79}, - [110] = {.lex_state = 79}, + [86] = {.lex_state = 477}, + [87] = {.lex_state = 477}, + [88] = {.lex_state = 477}, + [89] = {.lex_state = 477}, + [90] = {.lex_state = 477}, + [91] = {.lex_state = 477}, + [92] = {.lex_state = 477}, + [93] = {.lex_state = 477}, + [94] = {.lex_state = 477}, + [95] = {.lex_state = 477}, + [96] = {.lex_state = 477}, + [97] = {.lex_state = 477}, + [98] = {.lex_state = 477}, + [99] = {.lex_state = 477}, + [100] = {.lex_state = 477}, + [101] = {.lex_state = 477}, + [102] = {.lex_state = 477}, + [103] = {.lex_state = 477}, + [104] = {.lex_state = 477}, + [105] = {.lex_state = 477}, + [106] = {.lex_state = 477}, + [107] = {.lex_state = 477}, + [108] = {.lex_state = 477}, + [109] = {.lex_state = 477}, + [110] = {.lex_state = 477}, [111] = {.lex_state = 79}, - [112] = {.lex_state = 79}, - [113] = {.lex_state = 79}, + [112] = {.lex_state = 477}, + [113] = {.lex_state = 477}, [114] = {.lex_state = 79}, [115] = {.lex_state = 79}, [116] = {.lex_state = 79}, - [117] = {.lex_state = 79}, - [118] = {.lex_state = 477}, + [117] = {.lex_state = 477}, + [118] = {.lex_state = 79}, [119] = {.lex_state = 79}, [120] = {.lex_state = 79}, [121] = {.lex_state = 79}, - [122] = {.lex_state = 477}, - [123] = {.lex_state = 477}, - [124] = {.lex_state = 477}, - [125] = {.lex_state = 477}, - [126] = {.lex_state = 477}, - [127] = {.lex_state = 477}, - [128] = {.lex_state = 79}, - [129] = {.lex_state = 79}, - [130] = {.lex_state = 79}, - [131] = {.lex_state = 79}, - [132] = {.lex_state = 79}, - [133] = {.lex_state = 79}, - [134] = {.lex_state = 79}, + [122] = {.lex_state = 79}, + [123] = {.lex_state = 79}, + [124] = {.lex_state = 79}, + [125] = {.lex_state = 79}, + [126] = {.lex_state = 79}, + [127] = {.lex_state = 79}, + [128] = {.lex_state = 477}, + [129] = {.lex_state = 477}, + [130] = {.lex_state = 477}, + [131] = {.lex_state = 477}, + [132] = {.lex_state = 477}, + [133] = {.lex_state = 477}, + [134] = {.lex_state = 477}, [135] = {.lex_state = 477}, - [136] = {.lex_state = 477}, - [137] = {.lex_state = 477}, - [138] = {.lex_state = 477}, + [136] = {.lex_state = 79}, + [137] = {.lex_state = 79}, + [138] = {.lex_state = 79}, [139] = {.lex_state = 477}, [140] = {.lex_state = 79}, - [141] = {.lex_state = 477}, - [142] = {.lex_state = 477}, + [141] = {.lex_state = 79}, + [142] = {.lex_state = 79}, [143] = {.lex_state = 477}, [144] = {.lex_state = 477}, - [145] = {.lex_state = 477}, - [146] = {.lex_state = 477}, + [145] = {.lex_state = 79}, + [146] = {.lex_state = 79}, [147] = {.lex_state = 477}, [148] = {.lex_state = 477}, - [149] = {.lex_state = 477}, + [149] = {.lex_state = 79}, [150] = {.lex_state = 477}, [151] = {.lex_state = 477}, [152] = {.lex_state = 79}, - [153] = {.lex_state = 79}, + [153] = {.lex_state = 477}, [154] = {.lex_state = 477}, [155] = {.lex_state = 477}, [156] = {.lex_state = 477}, @@ -14922,108 +14929,108 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [159] = {.lex_state = 477}, [160] = {.lex_state = 477}, [161] = {.lex_state = 477}, - [162] = {.lex_state = 79}, - [163] = {.lex_state = 79}, - [164] = {.lex_state = 79}, - [165] = {.lex_state = 79}, - [166] = {.lex_state = 79}, - [167] = {.lex_state = 79}, - [168] = {.lex_state = 79}, - [169] = {.lex_state = 79}, + [162] = {.lex_state = 477}, + [163] = {.lex_state = 477}, + [164] = {.lex_state = 477}, + [165] = {.lex_state = 477}, + [166] = {.lex_state = 477}, + [167] = {.lex_state = 477}, + [168] = {.lex_state = 477}, + [169] = {.lex_state = 477}, [170] = {.lex_state = 79}, [171] = {.lex_state = 79}, [172] = {.lex_state = 79}, [173] = {.lex_state = 79}, - [174] = {.lex_state = 477}, + [174] = {.lex_state = 79}, [175] = {.lex_state = 79}, - [176] = {.lex_state = 477}, + [176] = {.lex_state = 79}, [177] = {.lex_state = 477}, [178] = {.lex_state = 477}, - [179] = {.lex_state = 79}, - [180] = {.lex_state = 477}, + [179] = {.lex_state = 477}, + [180] = {.lex_state = 79}, [181] = {.lex_state = 477}, - [182] = {.lex_state = 477}, + [182] = {.lex_state = 79}, [183] = {.lex_state = 477}, [184] = {.lex_state = 477}, [185] = {.lex_state = 79}, - [186] = {.lex_state = 79}, - [187] = {.lex_state = 79}, - [188] = {.lex_state = 79}, - [189] = {.lex_state = 477}, - [190] = {.lex_state = 477}, - [191] = {.lex_state = 477}, + [186] = {.lex_state = 477}, + [187] = {.lex_state = 477}, + [188] = {.lex_state = 477}, + [189] = {.lex_state = 79}, + [190] = {.lex_state = 79}, + [191] = {.lex_state = 79}, [192] = {.lex_state = 79}, [193] = {.lex_state = 79}, [194] = {.lex_state = 79}, [195] = {.lex_state = 79}, [196] = {.lex_state = 79}, - [197] = {.lex_state = 79}, + [197] = {.lex_state = 477}, [198] = {.lex_state = 79}, [199] = {.lex_state = 79}, - [200] = {.lex_state = 79}, + [200] = {.lex_state = 477}, [201] = {.lex_state = 79}, [202] = {.lex_state = 79}, - [203] = {.lex_state = 79}, + [203] = {.lex_state = 477}, [204] = {.lex_state = 79}, [205] = {.lex_state = 79}, [206] = {.lex_state = 79}, - [207] = {.lex_state = 79}, - [208] = {.lex_state = 79}, + [207] = {.lex_state = 477}, + [208] = {.lex_state = 477}, [209] = {.lex_state = 79}, [210] = {.lex_state = 79}, - [211] = {.lex_state = 477}, + [211] = {.lex_state = 79}, [212] = {.lex_state = 79}, [213] = {.lex_state = 79}, - [214] = {.lex_state = 79}, + [214] = {.lex_state = 477}, [215] = {.lex_state = 79}, [216] = {.lex_state = 79}, [217] = {.lex_state = 79}, - [218] = {.lex_state = 79}, + [218] = {.lex_state = 477}, [219] = {.lex_state = 79}, - [220] = {.lex_state = 477}, + [220] = {.lex_state = 79}, [221] = {.lex_state = 79}, [222] = {.lex_state = 79}, [223] = {.lex_state = 79}, [224] = {.lex_state = 477}, - [225] = {.lex_state = 79}, + [225] = {.lex_state = 477}, [226] = {.lex_state = 477}, - [227] = {.lex_state = 79}, - [228] = {.lex_state = 79}, + [227] = {.lex_state = 477}, + [228] = {.lex_state = 477}, [229] = {.lex_state = 79}, - [230] = {.lex_state = 79}, - [231] = {.lex_state = 79}, + [230] = {.lex_state = 477}, + [231] = {.lex_state = 477}, [232] = {.lex_state = 79}, - [233] = {.lex_state = 477}, - [234] = {.lex_state = 79}, + [233] = {.lex_state = 79}, + [234] = {.lex_state = 477}, [235] = {.lex_state = 79}, [236] = {.lex_state = 79}, [237] = {.lex_state = 79}, [238] = {.lex_state = 79}, [239] = {.lex_state = 79}, [240] = {.lex_state = 79}, - [241] = {.lex_state = 79}, - [242] = {.lex_state = 477}, + [241] = {.lex_state = 477}, + [242] = {.lex_state = 79}, [243] = {.lex_state = 477}, [244] = {.lex_state = 477}, - [245] = {.lex_state = 477}, + [245] = {.lex_state = 79}, [246] = {.lex_state = 477}, - [247] = {.lex_state = 477}, - [248] = {.lex_state = 477}, - [249] = {.lex_state = 477}, + [247] = {.lex_state = 79}, + [248] = {.lex_state = 79}, + [249] = {.lex_state = 79}, [250] = {.lex_state = 477}, [251] = {.lex_state = 477}, - [252] = {.lex_state = 477}, + [252] = {.lex_state = 79}, [253] = {.lex_state = 477}, [254] = {.lex_state = 477}, - [255] = {.lex_state = 477}, - [256] = {.lex_state = 477}, - [257] = {.lex_state = 477}, + [255] = {.lex_state = 79}, + [256] = {.lex_state = 79}, + [257] = {.lex_state = 79}, [258] = {.lex_state = 477}, [259] = {.lex_state = 477}, [260] = {.lex_state = 477}, [261] = {.lex_state = 477}, - [262] = {.lex_state = 477}, - [263] = {.lex_state = 477}, + [262] = {.lex_state = 79}, + [263] = {.lex_state = 79}, [264] = {.lex_state = 477}, [265] = {.lex_state = 477}, [266] = {.lex_state = 477}, @@ -15031,100 +15038,100 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [268] = {.lex_state = 477}, [269] = {.lex_state = 477}, [270] = {.lex_state = 477}, - [271] = {.lex_state = 79}, - [272] = {.lex_state = 79}, + [271] = {.lex_state = 477}, + [272] = {.lex_state = 477}, [273] = {.lex_state = 79}, [274] = {.lex_state = 79}, [275] = {.lex_state = 79}, [276] = {.lex_state = 79}, [277] = {.lex_state = 79}, - [278] = {.lex_state = 79}, + [278] = {.lex_state = 477}, [279] = {.lex_state = 79}, - [280] = {.lex_state = 79}, - [281] = {.lex_state = 79}, + [280] = {.lex_state = 477}, + [281] = {.lex_state = 477}, [282] = {.lex_state = 477}, [283] = {.lex_state = 79}, - [284] = {.lex_state = 79}, - [285] = {.lex_state = 79}, - [286] = {.lex_state = 477}, - [287] = {.lex_state = 477}, + [284] = {.lex_state = 477}, + [285] = {.lex_state = 477}, + [286] = {.lex_state = 79}, + [287] = {.lex_state = 79}, [288] = {.lex_state = 79}, [289] = {.lex_state = 79}, [290] = {.lex_state = 79}, [291] = {.lex_state = 79}, - [292] = {.lex_state = 477}, + [292] = {.lex_state = 79}, [293] = {.lex_state = 79}, - [294] = {.lex_state = 477}, + [294] = {.lex_state = 79}, [295] = {.lex_state = 79}, [296] = {.lex_state = 79}, [297] = {.lex_state = 79}, [298] = {.lex_state = 79}, [299] = {.lex_state = 79}, [300] = {.lex_state = 79}, - [301] = {.lex_state = 477}, - [302] = {.lex_state = 79}, - [303] = {.lex_state = 79}, - [304] = {.lex_state = 477}, - [305] = {.lex_state = 477}, + [301] = {.lex_state = 79}, + [302] = {.lex_state = 477}, + [303] = {.lex_state = 477}, + [304] = {.lex_state = 79}, + [305] = {.lex_state = 79}, [306] = {.lex_state = 477}, - [307] = {.lex_state = 477}, + [307] = {.lex_state = 79}, [308] = {.lex_state = 79}, [309] = {.lex_state = 79}, - [310] = {.lex_state = 477}, + [310] = {.lex_state = 79}, [311] = {.lex_state = 477}, - [312] = {.lex_state = 477}, - [313] = {.lex_state = 477}, - [314] = {.lex_state = 477}, - [315] = {.lex_state = 477}, + [312] = {.lex_state = 79}, + [313] = {.lex_state = 79}, + [314] = {.lex_state = 79}, + [315] = {.lex_state = 79}, [316] = {.lex_state = 79}, - [317] = {.lex_state = 477}, - [318] = {.lex_state = 477}, - [319] = {.lex_state = 477}, - [320] = {.lex_state = 477}, - [321] = {.lex_state = 477}, - [322] = {.lex_state = 477}, - [323] = {.lex_state = 477}, - [324] = {.lex_state = 477}, - [325] = {.lex_state = 477}, - [326] = {.lex_state = 477}, - [327] = {.lex_state = 477}, - [328] = {.lex_state = 477}, - [329] = {.lex_state = 477}, - [330] = {.lex_state = 477}, - [331] = {.lex_state = 477}, - [332] = {.lex_state = 477}, + [317] = {.lex_state = 79}, + [318] = {.lex_state = 79}, + [319] = {.lex_state = 79}, + [320] = {.lex_state = 79}, + [321] = {.lex_state = 79}, + [322] = {.lex_state = 79}, + [323] = {.lex_state = 79}, + [324] = {.lex_state = 79}, + [325] = {.lex_state = 79}, + [326] = {.lex_state = 79}, + [327] = {.lex_state = 79}, + [328] = {.lex_state = 79}, + [329] = {.lex_state = 79}, + [330] = {.lex_state = 79}, + [331] = {.lex_state = 79}, + [332] = {.lex_state = 79}, [333] = {.lex_state = 477}, [334] = {.lex_state = 477}, - [335] = {.lex_state = 477}, - [336] = {.lex_state = 477}, - [337] = {.lex_state = 477}, - [338] = {.lex_state = 477}, - [339] = {.lex_state = 477}, - [340] = {.lex_state = 477}, - [341] = {.lex_state = 477}, - [342] = {.lex_state = 477}, - [343] = {.lex_state = 477}, - [344] = {.lex_state = 477}, - [345] = {.lex_state = 477}, - [346] = {.lex_state = 477}, - [347] = {.lex_state = 477}, - [348] = {.lex_state = 477}, - [349] = {.lex_state = 477}, - [350] = {.lex_state = 477}, - [351] = {.lex_state = 477}, - [352] = {.lex_state = 477}, - [353] = {.lex_state = 477}, - [354] = {.lex_state = 477}, - [355] = {.lex_state = 477}, - [356] = {.lex_state = 477}, - [357] = {.lex_state = 477}, - [358] = {.lex_state = 477}, - [359] = {.lex_state = 477}, - [360] = {.lex_state = 477}, - [361] = {.lex_state = 477}, - [362] = {.lex_state = 477}, - [363] = {.lex_state = 79}, - [364] = {.lex_state = 477}, + [335] = {.lex_state = 80}, + [336] = {.lex_state = 80}, + [337] = {.lex_state = 80}, + [338] = {.lex_state = 80}, + [339] = {.lex_state = 80}, + [340] = {.lex_state = 80}, + [341] = {.lex_state = 80}, + [342] = {.lex_state = 80}, + [343] = {.lex_state = 80}, + [344] = {.lex_state = 80}, + [345] = {.lex_state = 80}, + [346] = {.lex_state = 80}, + [347] = {.lex_state = 80}, + [348] = {.lex_state = 80}, + [349] = {.lex_state = 80}, + [350] = {.lex_state = 80}, + [351] = {.lex_state = 80}, + [352] = {.lex_state = 80}, + [353] = {.lex_state = 80}, + [354] = {.lex_state = 80}, + [355] = {.lex_state = 80}, + [356] = {.lex_state = 80}, + [357] = {.lex_state = 80}, + [358] = {.lex_state = 80}, + [359] = {.lex_state = 80}, + [360] = {.lex_state = 80}, + [361] = {.lex_state = 80}, + [362] = {.lex_state = 80}, + [363] = {.lex_state = 80}, + [364] = {.lex_state = 80}, [365] = {.lex_state = 80}, [366] = {.lex_state = 80}, [367] = {.lex_state = 80}, @@ -15231,51 +15238,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [468] = {.lex_state = 80}, [469] = {.lex_state = 80}, [470] = {.lex_state = 80}, - [471] = {.lex_state = 80}, - [472] = {.lex_state = 80}, - [473] = {.lex_state = 80}, - [474] = {.lex_state = 80}, - [475] = {.lex_state = 80}, - [476] = {.lex_state = 80}, - [477] = {.lex_state = 80}, - [478] = {.lex_state = 80}, - [479] = {.lex_state = 80}, - [480] = {.lex_state = 80}, - [481] = {.lex_state = 80}, - [482] = {.lex_state = 80}, - [483] = {.lex_state = 80}, - [484] = {.lex_state = 80}, - [485] = {.lex_state = 80}, - [486] = {.lex_state = 80}, - [487] = {.lex_state = 80}, - [488] = {.lex_state = 80}, - [489] = {.lex_state = 80}, - [490] = {.lex_state = 80}, - [491] = {.lex_state = 80}, - [492] = {.lex_state = 80}, - [493] = {.lex_state = 80}, - [494] = {.lex_state = 80}, - [495] = {.lex_state = 80}, - [496] = {.lex_state = 80}, - [497] = {.lex_state = 80}, - [498] = {.lex_state = 80}, - [499] = {.lex_state = 80}, - [500] = {.lex_state = 80}, - [501] = {.lex_state = 80}, - [502] = {.lex_state = 80}, - [503] = {.lex_state = 80}, - [504] = {.lex_state = 80}, - [505] = {.lex_state = 80}, - [506] = {.lex_state = 80}, - [507] = {.lex_state = 80}, - [508] = {.lex_state = 80}, - [509] = {.lex_state = 80}, - [510] = {.lex_state = 80}, - [511] = {.lex_state = 80}, - [512] = {.lex_state = 80}, - [513] = {.lex_state = 80}, - [514] = {.lex_state = 80}, - [515] = {.lex_state = 80}, + [471] = {.lex_state = 79}, + [472] = {.lex_state = 79}, + [473] = {.lex_state = 79}, + [474] = {.lex_state = 79}, + [475] = {.lex_state = 79}, + [476] = {.lex_state = 79}, + [477] = {.lex_state = 79}, + [478] = {.lex_state = 79}, + [479] = {.lex_state = 79}, + [480] = {.lex_state = 79}, + [481] = {.lex_state = 79}, + [482] = {.lex_state = 79}, + [483] = {.lex_state = 79}, + [484] = {.lex_state = 79}, + [485] = {.lex_state = 79}, + [486] = {.lex_state = 79}, + [487] = {.lex_state = 79}, + [488] = {.lex_state = 79}, + [489] = {.lex_state = 79}, + [490] = {.lex_state = 79}, + [491] = {.lex_state = 79}, + [492] = {.lex_state = 79}, + [493] = {.lex_state = 79}, + [494] = {.lex_state = 79}, + [495] = {.lex_state = 79}, + [496] = {.lex_state = 79}, + [497] = {.lex_state = 79}, + [498] = {.lex_state = 79}, + [499] = {.lex_state = 79}, + [500] = {.lex_state = 79}, + [501] = {.lex_state = 79}, + [502] = {.lex_state = 79}, + [503] = {.lex_state = 79}, + [504] = {.lex_state = 79}, + [505] = {.lex_state = 79}, + [506] = {.lex_state = 79}, + [507] = {.lex_state = 79}, + [508] = {.lex_state = 79}, + [509] = {.lex_state = 79}, + [510] = {.lex_state = 79}, + [511] = {.lex_state = 79}, + [512] = {.lex_state = 79}, + [513] = {.lex_state = 79}, + [514] = {.lex_state = 79}, + [515] = {.lex_state = 79}, [516] = {.lex_state = 79}, [517] = {.lex_state = 79}, [518] = {.lex_state = 79}, @@ -15600,51 +15607,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [837] = {.lex_state = 79}, [838] = {.lex_state = 79}, [839] = {.lex_state = 79}, - [840] = {.lex_state = 79}, - [841] = {.lex_state = 79}, - [842] = {.lex_state = 79}, - [843] = {.lex_state = 79}, - [844] = {.lex_state = 79}, - [845] = {.lex_state = 79}, - [846] = {.lex_state = 79}, - [847] = {.lex_state = 79}, - [848] = {.lex_state = 79}, - [849] = {.lex_state = 79}, - [850] = {.lex_state = 79}, - [851] = {.lex_state = 79}, - [852] = {.lex_state = 79}, - [853] = {.lex_state = 79}, - [854] = {.lex_state = 79}, - [855] = {.lex_state = 79}, - [856] = {.lex_state = 79}, - [857] = {.lex_state = 79}, - [858] = {.lex_state = 79}, - [859] = {.lex_state = 79}, - [860] = {.lex_state = 79}, - [861] = {.lex_state = 79}, - [862] = {.lex_state = 79}, - [863] = {.lex_state = 79}, - [864] = {.lex_state = 79}, - [865] = {.lex_state = 79}, - [866] = {.lex_state = 79}, - [867] = {.lex_state = 79}, - [868] = {.lex_state = 79}, - [869] = {.lex_state = 79}, - [870] = {.lex_state = 79}, - [871] = {.lex_state = 79}, - [872] = {.lex_state = 79}, - [873] = {.lex_state = 79}, - [874] = {.lex_state = 79}, - [875] = {.lex_state = 79}, - [876] = {.lex_state = 79}, - [877] = {.lex_state = 79}, - [878] = {.lex_state = 79}, - [879] = {.lex_state = 79}, - [880] = {.lex_state = 79}, - [881] = {.lex_state = 79}, - [882] = {.lex_state = 79}, - [883] = {.lex_state = 79}, - [884] = {.lex_state = 79}, + [840] = {.lex_state = 477}, + [841] = {.lex_state = 477}, + [842] = {.lex_state = 477}, + [843] = {.lex_state = 477}, + [844] = {.lex_state = 477}, + [845] = {.lex_state = 477}, + [846] = {.lex_state = 477}, + [847] = {.lex_state = 477}, + [848] = {.lex_state = 477}, + [849] = {.lex_state = 477}, + [850] = {.lex_state = 477}, + [851] = {.lex_state = 477}, + [852] = {.lex_state = 477}, + [853] = {.lex_state = 477}, + [854] = {.lex_state = 477}, + [855] = {.lex_state = 477}, + [856] = {.lex_state = 477}, + [857] = {.lex_state = 477}, + [858] = {.lex_state = 477}, + [859] = {.lex_state = 477}, + [860] = {.lex_state = 477}, + [861] = {.lex_state = 477}, + [862] = {.lex_state = 477}, + [863] = {.lex_state = 477}, + [864] = {.lex_state = 477}, + [865] = {.lex_state = 477}, + [866] = {.lex_state = 477}, + [867] = {.lex_state = 477}, + [868] = {.lex_state = 477}, + [869] = {.lex_state = 477}, + [870] = {.lex_state = 477}, + [871] = {.lex_state = 477}, + [872] = {.lex_state = 477}, + [873] = {.lex_state = 477}, + [874] = {.lex_state = 477}, + [875] = {.lex_state = 477}, + [876] = {.lex_state = 477}, + [877] = {.lex_state = 477}, + [878] = {.lex_state = 477}, + [879] = {.lex_state = 477}, + [880] = {.lex_state = 477}, + [881] = {.lex_state = 477}, + [882] = {.lex_state = 477}, + [883] = {.lex_state = 477}, + [884] = {.lex_state = 477}, [885] = {.lex_state = 477}, [886] = {.lex_state = 477}, [887] = {.lex_state = 477}, @@ -15969,51 +15976,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1206] = {.lex_state = 477}, [1207] = {.lex_state = 477}, [1208] = {.lex_state = 477}, - [1209] = {.lex_state = 477}, - [1210] = {.lex_state = 477}, - [1211] = {.lex_state = 477}, - [1212] = {.lex_state = 477}, - [1213] = {.lex_state = 477}, - [1214] = {.lex_state = 477}, - [1215] = {.lex_state = 477}, - [1216] = {.lex_state = 477}, - [1217] = {.lex_state = 477}, - [1218] = {.lex_state = 477}, - [1219] = {.lex_state = 477}, - [1220] = {.lex_state = 477}, - [1221] = {.lex_state = 477}, - [1222] = {.lex_state = 477}, - [1223] = {.lex_state = 477}, - [1224] = {.lex_state = 477}, - [1225] = {.lex_state = 477}, - [1226] = {.lex_state = 477}, - [1227] = {.lex_state = 477}, - [1228] = {.lex_state = 477}, - [1229] = {.lex_state = 477}, - [1230] = {.lex_state = 477}, - [1231] = {.lex_state = 477}, - [1232] = {.lex_state = 477}, - [1233] = {.lex_state = 477}, - [1234] = {.lex_state = 477}, - [1235] = {.lex_state = 477}, - [1236] = {.lex_state = 477}, - [1237] = {.lex_state = 477}, - [1238] = {.lex_state = 477}, - [1239] = {.lex_state = 477}, - [1240] = {.lex_state = 477}, - [1241] = {.lex_state = 477}, - [1242] = {.lex_state = 477}, - [1243] = {.lex_state = 477}, - [1244] = {.lex_state = 477}, - [1245] = {.lex_state = 477}, - [1246] = {.lex_state = 477}, - [1247] = {.lex_state = 477}, - [1248] = {.lex_state = 477}, - [1249] = {.lex_state = 477}, - [1250] = {.lex_state = 477}, - [1251] = {.lex_state = 477}, - [1252] = {.lex_state = 477}, - [1253] = {.lex_state = 477}, + [1209] = {.lex_state = 80}, + [1210] = {.lex_state = 80}, + [1211] = {.lex_state = 80}, + [1212] = {.lex_state = 80}, + [1213] = {.lex_state = 80}, + [1214] = {.lex_state = 80}, + [1215] = {.lex_state = 80}, + [1216] = {.lex_state = 80}, + [1217] = {.lex_state = 80}, + [1218] = {.lex_state = 80}, + [1219] = {.lex_state = 80}, + [1220] = {.lex_state = 80}, + [1221] = {.lex_state = 80}, + [1222] = {.lex_state = 80}, + [1223] = {.lex_state = 80}, + [1224] = {.lex_state = 80}, + [1225] = {.lex_state = 80}, + [1226] = {.lex_state = 80}, + [1227] = {.lex_state = 80}, + [1228] = {.lex_state = 80}, + [1229] = {.lex_state = 80}, + [1230] = {.lex_state = 80}, + [1231] = {.lex_state = 80}, + [1232] = {.lex_state = 80}, + [1233] = {.lex_state = 80}, + [1234] = {.lex_state = 80}, + [1235] = {.lex_state = 80}, + [1236] = {.lex_state = 80}, + [1237] = {.lex_state = 80}, + [1238] = {.lex_state = 80}, + [1239] = {.lex_state = 80}, + [1240] = {.lex_state = 80}, + [1241] = {.lex_state = 80}, + [1242] = {.lex_state = 80}, + [1243] = {.lex_state = 80}, + [1244] = {.lex_state = 80}, + [1245] = {.lex_state = 80}, + [1246] = {.lex_state = 80}, + [1247] = {.lex_state = 80}, + [1248] = {.lex_state = 80}, + [1249] = {.lex_state = 80}, + [1250] = {.lex_state = 80}, + [1251] = {.lex_state = 80}, + [1252] = {.lex_state = 80}, + [1253] = {.lex_state = 80}, [1254] = {.lex_state = 80}, [1255] = {.lex_state = 80}, [1256] = {.lex_state = 80}, @@ -16049,7 +16056,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1286] = {.lex_state = 80}, [1287] = {.lex_state = 80}, [1288] = {.lex_state = 80}, - [1289] = {.lex_state = 80}, + [1289] = {.lex_state = 77}, [1290] = {.lex_state = 80}, [1291] = {.lex_state = 80}, [1292] = {.lex_state = 80}, @@ -16108,7 +16115,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1345] = {.lex_state = 80}, [1346] = {.lex_state = 80}, [1347] = {.lex_state = 80}, - [1348] = {.lex_state = 77}, + [1348] = {.lex_state = 80}, [1349] = {.lex_state = 80}, [1350] = {.lex_state = 80}, [1351] = {.lex_state = 80}, @@ -16339,52 +16346,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1576] = {.lex_state = 80}, [1577] = {.lex_state = 80}, [1578] = {.lex_state = 80}, - [1579] = {.lex_state = 80}, - [1580] = {.lex_state = 80}, - [1581] = {.lex_state = 80}, - [1582] = {.lex_state = 80}, - [1583] = {.lex_state = 80}, - [1584] = {.lex_state = 80}, - [1585] = {.lex_state = 80}, - [1586] = {.lex_state = 80}, - [1587] = {.lex_state = 80}, - [1588] = {.lex_state = 80}, - [1589] = {.lex_state = 80}, - [1590] = {.lex_state = 80}, - [1591] = {.lex_state = 80}, - [1592] = {.lex_state = 80}, - [1593] = {.lex_state = 80}, - [1594] = {.lex_state = 80}, - [1595] = {.lex_state = 80}, - [1596] = {.lex_state = 80}, - [1597] = {.lex_state = 80}, - [1598] = {.lex_state = 80}, - [1599] = {.lex_state = 80}, - [1600] = {.lex_state = 80}, - [1601] = {.lex_state = 80}, - [1602] = {.lex_state = 80}, - [1603] = {.lex_state = 80}, - [1604] = {.lex_state = 80}, - [1605] = {.lex_state = 80}, - [1606] = {.lex_state = 80}, - [1607] = {.lex_state = 80}, - [1608] = {.lex_state = 80}, - [1609] = {.lex_state = 80}, - [1610] = {.lex_state = 80}, - [1611] = {.lex_state = 80}, - [1612] = {.lex_state = 80}, - [1613] = {.lex_state = 80}, - [1614] = {.lex_state = 80}, - [1615] = {.lex_state = 80}, - [1616] = {.lex_state = 80}, - [1617] = {.lex_state = 80}, - [1618] = {.lex_state = 80}, - [1619] = {.lex_state = 80}, - [1620] = {.lex_state = 80}, - [1621] = {.lex_state = 80}, - [1622] = {.lex_state = 80}, - [1623] = {.lex_state = 80}, - [1624] = {.lex_state = 78}, + [1579] = {.lex_state = 78}, + [1580] = {.lex_state = 95}, + [1581] = {.lex_state = 95}, + [1582] = {.lex_state = 95}, + [1583] = {.lex_state = 95}, + [1584] = {.lex_state = 95}, + [1585] = {.lex_state = 95}, + [1586] = {.lex_state = 95}, + [1587] = {.lex_state = 95}, + [1588] = {.lex_state = 95}, + [1589] = {.lex_state = 95}, + [1590] = {.lex_state = 95}, + [1591] = {.lex_state = 95}, + [1592] = {.lex_state = 95}, + [1593] = {.lex_state = 95}, + [1594] = {.lex_state = 95}, + [1595] = {.lex_state = 95}, + [1596] = {.lex_state = 95}, + [1597] = {.lex_state = 95}, + [1598] = {.lex_state = 95}, + [1599] = {.lex_state = 95}, + [1600] = {.lex_state = 95}, + [1601] = {.lex_state = 95}, + [1602] = {.lex_state = 95}, + [1603] = {.lex_state = 95}, + [1604] = {.lex_state = 95}, + [1605] = {.lex_state = 95}, + [1606] = {.lex_state = 95}, + [1607] = {.lex_state = 95}, + [1608] = {.lex_state = 95}, + [1609] = {.lex_state = 95}, + [1610] = {.lex_state = 95}, + [1611] = {.lex_state = 95}, + [1612] = {.lex_state = 95}, + [1613] = {.lex_state = 95}, + [1614] = {.lex_state = 95}, + [1615] = {.lex_state = 95}, + [1616] = {.lex_state = 95}, + [1617] = {.lex_state = 95}, + [1618] = {.lex_state = 95}, + [1619] = {.lex_state = 95}, + [1620] = {.lex_state = 95}, + [1621] = {.lex_state = 95}, + [1622] = {.lex_state = 95}, + [1623] = {.lex_state = 95}, + [1624] = {.lex_state = 95}, [1625] = {.lex_state = 95}, [1626] = {.lex_state = 95}, [1627] = {.lex_state = 95}, @@ -17434,103 +17441,103 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2671] = {.lex_state = 95}, [2672] = {.lex_state = 95}, [2673] = {.lex_state = 95}, - [2674] = {.lex_state = 95}, - [2675] = {.lex_state = 95}, - [2676] = {.lex_state = 95}, - [2677] = {.lex_state = 95}, - [2678] = {.lex_state = 95}, - [2679] = {.lex_state = 95}, - [2680] = {.lex_state = 95}, - [2681] = {.lex_state = 95}, - [2682] = {.lex_state = 95}, - [2683] = {.lex_state = 95}, - [2684] = {.lex_state = 95}, - [2685] = {.lex_state = 95}, - [2686] = {.lex_state = 95}, - [2687] = {.lex_state = 95}, - [2688] = {.lex_state = 95}, + [2674] = {.lex_state = 94}, + [2675] = {.lex_state = 94}, + [2676] = {.lex_state = 94}, + [2677] = {.lex_state = 94}, + [2678] = {.lex_state = 94}, + [2679] = {.lex_state = 94}, + [2680] = {.lex_state = 94}, + [2681] = {.lex_state = 94}, + [2682] = {.lex_state = 94}, + [2683] = {.lex_state = 94}, + [2684] = {.lex_state = 94}, + [2685] = {.lex_state = 94}, + [2686] = {.lex_state = 94}, + [2687] = {.lex_state = 94}, + [2688] = {.lex_state = 94}, [2689] = {.lex_state = 95}, [2690] = {.lex_state = 95}, - [2691] = {.lex_state = 95}, - [2692] = {.lex_state = 95}, + [2691] = {.lex_state = 96}, + [2692] = {.lex_state = 96}, [2693] = {.lex_state = 95}, - [2694] = {.lex_state = 95}, - [2695] = {.lex_state = 95}, - [2696] = {.lex_state = 95}, - [2697] = {.lex_state = 95}, - [2698] = {.lex_state = 95}, - [2699] = {.lex_state = 95}, - [2700] = {.lex_state = 95}, - [2701] = {.lex_state = 95}, + [2694] = {.lex_state = 96}, + [2695] = {.lex_state = 96}, + [2696] = {.lex_state = 97}, + [2697] = {.lex_state = 96}, + [2698] = {.lex_state = 96}, + [2699] = {.lex_state = 96}, + [2700] = {.lex_state = 97}, + [2701] = {.lex_state = 97}, [2702] = {.lex_state = 95}, [2703] = {.lex_state = 95}, [2704] = {.lex_state = 95}, [2705] = {.lex_state = 95}, [2706] = {.lex_state = 95}, - [2707] = {.lex_state = 95}, - [2708] = {.lex_state = 95}, - [2709] = {.lex_state = 95}, + [2707] = {.lex_state = 82}, + [2708] = {.lex_state = 82}, + [2709] = {.lex_state = 82}, [2710] = {.lex_state = 95}, - [2711] = {.lex_state = 95}, - [2712] = {.lex_state = 95}, + [2711] = {.lex_state = 82}, + [2712] = {.lex_state = 82}, [2713] = {.lex_state = 95}, [2714] = {.lex_state = 95}, - [2715] = {.lex_state = 95}, + [2715] = {.lex_state = 82}, [2716] = {.lex_state = 95}, [2717] = {.lex_state = 95}, - [2718] = {.lex_state = 95}, - [2719] = {.lex_state = 94}, - [2720] = {.lex_state = 94}, - [2721] = {.lex_state = 94}, - [2722] = {.lex_state = 94}, - [2723] = {.lex_state = 94}, - [2724] = {.lex_state = 94}, - [2725] = {.lex_state = 94}, - [2726] = {.lex_state = 94}, - [2727] = {.lex_state = 94}, - [2728] = {.lex_state = 94}, - [2729] = {.lex_state = 94}, - [2730] = {.lex_state = 94}, - [2731] = {.lex_state = 94}, - [2732] = {.lex_state = 94}, - [2733] = {.lex_state = 94}, - [2734] = {.lex_state = 95}, - [2735] = {.lex_state = 95}, - [2736] = {.lex_state = 96}, - [2737] = {.lex_state = 97}, - [2738] = {.lex_state = 96}, - [2739] = {.lex_state = 95}, - [2740] = {.lex_state = 96}, - [2741] = {.lex_state = 96}, - [2742] = {.lex_state = 95}, - [2743] = {.lex_state = 96}, - [2744] = {.lex_state = 97}, - [2745] = {.lex_state = 96}, - [2746] = {.lex_state = 96}, - [2747] = {.lex_state = 97}, - [2748] = {.lex_state = 95}, - [2749] = {.lex_state = 95}, + [2718] = {.lex_state = 477}, + [2719] = {.lex_state = 477}, + [2720] = {.lex_state = 477}, + [2721] = {.lex_state = 84}, + [2722] = {.lex_state = 477}, + [2723] = {.lex_state = 477}, + [2724] = {.lex_state = 477}, + [2725] = {.lex_state = 477}, + [2726] = {.lex_state = 477}, + [2727] = {.lex_state = 477}, + [2728] = {.lex_state = 477}, + [2729] = {.lex_state = 477}, + [2730] = {.lex_state = 477}, + [2731] = {.lex_state = 477}, + [2732] = {.lex_state = 477}, + [2733] = {.lex_state = 477}, + [2734] = {.lex_state = 477}, + [2735] = {.lex_state = 477}, + [2736] = {.lex_state = 477}, + [2737] = {.lex_state = 84}, + [2738] = {.lex_state = 477}, + [2739] = {.lex_state = 477}, + [2740] = {.lex_state = 477}, + [2741] = {.lex_state = 95}, + [2742] = {.lex_state = 477}, + [2743] = {.lex_state = 82}, + [2744] = {.lex_state = 477}, + [2745] = {.lex_state = 477}, + [2746] = {.lex_state = 477}, + [2747] = {.lex_state = 477}, + [2748] = {.lex_state = 477}, + [2749] = {.lex_state = 477}, [2750] = {.lex_state = 95}, - [2751] = {.lex_state = 95}, - [2752] = {.lex_state = 82}, - [2753] = {.lex_state = 82}, - [2754] = {.lex_state = 82}, - [2755] = {.lex_state = 95}, - [2756] = {.lex_state = 82}, - [2757] = {.lex_state = 82}, - [2758] = {.lex_state = 82}, + [2751] = {.lex_state = 477}, + [2752] = {.lex_state = 477}, + [2753] = {.lex_state = 477}, + [2754] = {.lex_state = 477}, + [2755] = {.lex_state = 477}, + [2756] = {.lex_state = 477}, + [2757] = {.lex_state = 477}, + [2758] = {.lex_state = 477}, [2759] = {.lex_state = 477}, [2760] = {.lex_state = 477}, [2761] = {.lex_state = 477}, [2762] = {.lex_state = 477}, [2763] = {.lex_state = 477}, [2764] = {.lex_state = 477}, - [2765] = {.lex_state = 82}, - [2766] = {.lex_state = 477}, + [2765] = {.lex_state = 477}, + [2766] = {.lex_state = 82}, [2767] = {.lex_state = 477}, [2768] = {.lex_state = 477}, [2769] = {.lex_state = 477}, - [2770] = {.lex_state = 84}, + [2770] = {.lex_state = 477}, [2771] = {.lex_state = 477}, [2772] = {.lex_state = 477}, [2773] = {.lex_state = 477}, @@ -17538,78 +17545,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2775] = {.lex_state = 477}, [2776] = {.lex_state = 477}, [2777] = {.lex_state = 477}, - [2778] = {.lex_state = 95}, - [2779] = {.lex_state = 84}, + [2778] = {.lex_state = 477}, + [2779] = {.lex_state = 95}, [2780] = {.lex_state = 477}, [2781] = {.lex_state = 477}, - [2782] = {.lex_state = 82}, + [2782] = {.lex_state = 477}, [2783] = {.lex_state = 477}, [2784] = {.lex_state = 477}, [2785] = {.lex_state = 477}, [2786] = {.lex_state = 477}, - [2787] = {.lex_state = 84}, + [2787] = {.lex_state = 477}, [2788] = {.lex_state = 477}, - [2789] = {.lex_state = 84}, - [2790] = {.lex_state = 95}, - [2791] = {.lex_state = 84}, - [2792] = {.lex_state = 477}, + [2789] = {.lex_state = 477}, + [2790] = {.lex_state = 477}, + [2791] = {.lex_state = 82}, + [2792] = {.lex_state = 84}, [2793] = {.lex_state = 477}, - [2794] = {.lex_state = 477}, - [2795] = {.lex_state = 477}, + [2794] = {.lex_state = 84}, + [2795] = {.lex_state = 82}, [2796] = {.lex_state = 477}, - [2797] = {.lex_state = 477}, - [2798] = {.lex_state = 82}, + [2797] = {.lex_state = 84}, + [2798] = {.lex_state = 95}, [2799] = {.lex_state = 477}, [2800] = {.lex_state = 477}, - [2801] = {.lex_state = 95}, + [2801] = {.lex_state = 84}, [2802] = {.lex_state = 477}, [2803] = {.lex_state = 95}, [2804] = {.lex_state = 477}, - [2805] = {.lex_state = 477}, - [2806] = {.lex_state = 82}, + [2805] = {.lex_state = 95}, + [2806] = {.lex_state = 84}, [2807] = {.lex_state = 95}, - [2808] = {.lex_state = 477}, - [2809] = {.lex_state = 477}, - [2810] = {.lex_state = 477}, - [2811] = {.lex_state = 477}, - [2812] = {.lex_state = 477}, - [2813] = {.lex_state = 477}, - [2814] = {.lex_state = 477}, - [2815] = {.lex_state = 477}, - [2816] = {.lex_state = 477}, - [2817] = {.lex_state = 477}, - [2818] = {.lex_state = 477}, + [2808] = {.lex_state = 95}, + [2809] = {.lex_state = 95}, + [2810] = {.lex_state = 95}, + [2811] = {.lex_state = 95}, + [2812] = {.lex_state = 95}, + [2813] = {.lex_state = 95}, + [2814] = {.lex_state = 95}, + [2815] = {.lex_state = 95}, + [2816] = {.lex_state = 95}, + [2817] = {.lex_state = 95}, + [2818] = {.lex_state = 95}, [2819] = {.lex_state = 477}, - [2820] = {.lex_state = 477}, - [2821] = {.lex_state = 477}, - [2822] = {.lex_state = 477}, - [2823] = {.lex_state = 477}, - [2824] = {.lex_state = 477}, - [2825] = {.lex_state = 477}, - [2826] = {.lex_state = 477}, - [2827] = {.lex_state = 477}, - [2828] = {.lex_state = 477}, - [2829] = {.lex_state = 477}, - [2830] = {.lex_state = 477}, - [2831] = {.lex_state = 477}, - [2832] = {.lex_state = 477}, + [2820] = {.lex_state = 95}, + [2821] = {.lex_state = 95}, + [2822] = {.lex_state = 95}, + [2823] = {.lex_state = 95}, + [2824] = {.lex_state = 95}, + [2825] = {.lex_state = 95}, + [2826] = {.lex_state = 95}, + [2827] = {.lex_state = 95}, + [2828] = {.lex_state = 95}, + [2829] = {.lex_state = 95}, + [2830] = {.lex_state = 95}, + [2831] = {.lex_state = 95}, + [2832] = {.lex_state = 95}, [2833] = {.lex_state = 95}, - [2834] = {.lex_state = 477}, - [2835] = {.lex_state = 477}, - [2836] = {.lex_state = 477}, + [2834] = {.lex_state = 95}, + [2835] = {.lex_state = 95}, + [2836] = {.lex_state = 95}, [2837] = {.lex_state = 95}, [2838] = {.lex_state = 477}, - [2839] = {.lex_state = 477}, - [2840] = {.lex_state = 84}, - [2841] = {.lex_state = 477}, - [2842] = {.lex_state = 477}, - [2843] = {.lex_state = 477}, - [2844] = {.lex_state = 477}, - [2845] = {.lex_state = 477}, - [2846] = {.lex_state = 477}, - [2847] = {.lex_state = 477}, + [2839] = {.lex_state = 95}, + [2840] = {.lex_state = 477}, + [2841] = {.lex_state = 95}, + [2842] = {.lex_state = 95}, + [2843] = {.lex_state = 95}, + [2844] = {.lex_state = 95}, + [2845] = {.lex_state = 95}, + [2846] = {.lex_state = 95}, + [2847] = {.lex_state = 95}, [2848] = {.lex_state = 95}, - [2849] = {.lex_state = 84}, + [2849] = {.lex_state = 95}, [2850] = {.lex_state = 95}, [2851] = {.lex_state = 95}, [2852] = {.lex_state = 95}, @@ -17626,7 +17633,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2863] = {.lex_state = 95}, [2864] = {.lex_state = 95}, [2865] = {.lex_state = 95}, - [2866] = {.lex_state = 95}, + [2866] = {.lex_state = 477}, [2867] = {.lex_state = 95}, [2868] = {.lex_state = 95}, [2869] = {.lex_state = 95}, @@ -17634,9 +17641,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2871] = {.lex_state = 95}, [2872] = {.lex_state = 95}, [2873] = {.lex_state = 95}, - [2874] = {.lex_state = 95}, + [2874] = {.lex_state = 477}, [2875] = {.lex_state = 95}, - [2876] = {.lex_state = 95}, + [2876] = {.lex_state = 477}, [2877] = {.lex_state = 95}, [2878] = {.lex_state = 95}, [2879] = {.lex_state = 95}, @@ -17655,7 +17662,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2892] = {.lex_state = 95}, [2893] = {.lex_state = 95}, [2894] = {.lex_state = 95}, - [2895] = {.lex_state = 477}, + [2895] = {.lex_state = 95}, [2896] = {.lex_state = 95}, [2897] = {.lex_state = 95}, [2898] = {.lex_state = 95}, @@ -17665,12 +17672,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2902] = {.lex_state = 95}, [2903] = {.lex_state = 95}, [2904] = {.lex_state = 95}, - [2905] = {.lex_state = 477}, - [2906] = {.lex_state = 95}, + [2905] = {.lex_state = 95}, + [2906] = {.lex_state = 477}, [2907] = {.lex_state = 95}, [2908] = {.lex_state = 95}, [2909] = {.lex_state = 95}, - [2910] = {.lex_state = 95}, + [2910] = {.lex_state = 477}, [2911] = {.lex_state = 95}, [2912] = {.lex_state = 95}, [2913] = {.lex_state = 95}, @@ -17680,26 +17687,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2917] = {.lex_state = 95}, [2918] = {.lex_state = 95}, [2919] = {.lex_state = 95}, - [2920] = {.lex_state = 95}, - [2921] = {.lex_state = 477}, + [2920] = {.lex_state = 477}, + [2921] = {.lex_state = 95}, [2922] = {.lex_state = 95}, [2923] = {.lex_state = 95}, [2924] = {.lex_state = 95}, [2925] = {.lex_state = 95}, [2926] = {.lex_state = 95}, - [2927] = {.lex_state = 95}, - [2928] = {.lex_state = 95}, + [2927] = {.lex_state = 477}, + [2928] = {.lex_state = 477}, [2929] = {.lex_state = 95}, [2930] = {.lex_state = 95}, [2931] = {.lex_state = 95}, - [2932] = {.lex_state = 95}, - [2933] = {.lex_state = 95}, + [2932] = {.lex_state = 477}, + [2933] = {.lex_state = 477}, [2934] = {.lex_state = 95}, [2935] = {.lex_state = 95}, [2936] = {.lex_state = 95}, [2937] = {.lex_state = 95}, [2938] = {.lex_state = 95}, - [2939] = {.lex_state = 477}, + [2939] = {.lex_state = 95}, [2940] = {.lex_state = 95}, [2941] = {.lex_state = 95}, [2942] = {.lex_state = 95}, @@ -17709,75 +17716,75 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2946] = {.lex_state = 95}, [2947] = {.lex_state = 95}, [2948] = {.lex_state = 95}, - [2949] = {.lex_state = 95}, - [2950] = {.lex_state = 95}, - [2951] = {.lex_state = 95}, + [2949] = {.lex_state = 84}, + [2950] = {.lex_state = 84}, + [2951] = {.lex_state = 84}, [2952] = {.lex_state = 95}, - [2953] = {.lex_state = 95}, - [2954] = {.lex_state = 95}, - [2955] = {.lex_state = 95}, - [2956] = {.lex_state = 95}, - [2957] = {.lex_state = 95}, - [2958] = {.lex_state = 95}, - [2959] = {.lex_state = 477}, - [2960] = {.lex_state = 95}, + [2953] = {.lex_state = 84}, + [2954] = {.lex_state = 84}, + [2955] = {.lex_state = 84}, + [2956] = {.lex_state = 84}, + [2957] = {.lex_state = 84}, + [2958] = {.lex_state = 84}, + [2959] = {.lex_state = 84}, + [2960] = {.lex_state = 84}, [2961] = {.lex_state = 95}, - [2962] = {.lex_state = 95}, + [2962] = {.lex_state = 84}, [2963] = {.lex_state = 95}, - [2964] = {.lex_state = 95}, - [2965] = {.lex_state = 477}, - [2966] = {.lex_state = 477}, - [2967] = {.lex_state = 477}, + [2964] = {.lex_state = 84}, + [2965] = {.lex_state = 95}, + [2966] = {.lex_state = 84}, + [2967] = {.lex_state = 95}, [2968] = {.lex_state = 95}, [2969] = {.lex_state = 95}, [2970] = {.lex_state = 95}, [2971] = {.lex_state = 95}, [2972] = {.lex_state = 95}, [2973] = {.lex_state = 95}, - [2974] = {.lex_state = 95}, - [2975] = {.lex_state = 95}, - [2976] = {.lex_state = 95}, - [2977] = {.lex_state = 477}, - [2978] = {.lex_state = 95}, + [2974] = {.lex_state = 84}, + [2975] = {.lex_state = 84}, + [2976] = {.lex_state = 84}, + [2977] = {.lex_state = 84}, + [2978] = {.lex_state = 84}, [2979] = {.lex_state = 95}, - [2980] = {.lex_state = 95}, - [2981] = {.lex_state = 477}, - [2982] = {.lex_state = 95}, - [2983] = {.lex_state = 95}, - [2984] = {.lex_state = 95}, - [2985] = {.lex_state = 95}, - [2986] = {.lex_state = 95}, - [2987] = {.lex_state = 95}, - [2988] = {.lex_state = 95}, + [2980] = {.lex_state = 84}, + [2981] = {.lex_state = 84}, + [2982] = {.lex_state = 84}, + [2983] = {.lex_state = 84}, + [2984] = {.lex_state = 84}, + [2985] = {.lex_state = 84}, + [2986] = {.lex_state = 84}, + [2987] = {.lex_state = 84}, + [2988] = {.lex_state = 84}, [2989] = {.lex_state = 95}, - [2990] = {.lex_state = 95}, - [2991] = {.lex_state = 95}, - [2992] = {.lex_state = 477}, - [2993] = {.lex_state = 95}, - [2994] = {.lex_state = 95}, - [2995] = {.lex_state = 95}, - [2996] = {.lex_state = 95}, - [2997] = {.lex_state = 95}, - [2998] = {.lex_state = 477}, - [2999] = {.lex_state = 95}, - [3000] = {.lex_state = 95}, - [3001] = {.lex_state = 95}, - [3002] = {.lex_state = 477}, - [3003] = {.lex_state = 95}, - [3004] = {.lex_state = 95}, - [3005] = {.lex_state = 95}, + [2990] = {.lex_state = 84}, + [2991] = {.lex_state = 84}, + [2992] = {.lex_state = 84}, + [2993] = {.lex_state = 84}, + [2994] = {.lex_state = 84}, + [2995] = {.lex_state = 84}, + [2996] = {.lex_state = 84}, + [2997] = {.lex_state = 84}, + [2998] = {.lex_state = 84}, + [2999] = {.lex_state = 84}, + [3000] = {.lex_state = 84}, + [3001] = {.lex_state = 84}, + [3002] = {.lex_state = 95}, + [3003] = {.lex_state = 84}, + [3004] = {.lex_state = 84}, + [3005] = {.lex_state = 84}, [3006] = {.lex_state = 84}, [3007] = {.lex_state = 95}, - [3008] = {.lex_state = 95}, - [3009] = {.lex_state = 84}, + [3008] = {.lex_state = 84}, + [3009] = {.lex_state = 95}, [3010] = {.lex_state = 95}, [3011] = {.lex_state = 95}, - [3012] = {.lex_state = 95}, - [3013] = {.lex_state = 95}, + [3012] = {.lex_state = 84}, + [3013] = {.lex_state = 84}, [3014] = {.lex_state = 95}, [3015] = {.lex_state = 84}, [3016] = {.lex_state = 84}, - [3017] = {.lex_state = 95}, + [3017] = {.lex_state = 84}, [3018] = {.lex_state = 84}, [3019] = {.lex_state = 84}, [3020] = {.lex_state = 84}, @@ -17785,78 +17792,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3022] = {.lex_state = 84}, [3023] = {.lex_state = 84}, [3024] = {.lex_state = 84}, - [3025] = {.lex_state = 84}, + [3025] = {.lex_state = 95}, [3026] = {.lex_state = 84}, [3027] = {.lex_state = 84}, [3028] = {.lex_state = 95}, - [3029] = {.lex_state = 95}, - [3030] = {.lex_state = 84}, - [3031] = {.lex_state = 95}, + [3029] = {.lex_state = 84}, + [3030] = {.lex_state = 95}, + [3031] = {.lex_state = 84}, [3032] = {.lex_state = 84}, - [3033] = {.lex_state = 95}, - [3034] = {.lex_state = 84}, - [3035] = {.lex_state = 84}, + [3033] = {.lex_state = 84}, + [3034] = {.lex_state = 95}, + [3035] = {.lex_state = 95}, [3036] = {.lex_state = 84}, [3037] = {.lex_state = 95}, [3038] = {.lex_state = 95}, - [3039] = {.lex_state = 84}, - [3040] = {.lex_state = 84}, - [3041] = {.lex_state = 84}, - [3042] = {.lex_state = 84}, - [3043] = {.lex_state = 84}, - [3044] = {.lex_state = 84}, + [3039] = {.lex_state = 95}, + [3040] = {.lex_state = 95}, + [3041] = {.lex_state = 95}, + [3042] = {.lex_state = 95}, + [3043] = {.lex_state = 95}, + [3044] = {.lex_state = 95}, [3045] = {.lex_state = 95}, [3046] = {.lex_state = 95}, [3047] = {.lex_state = 95}, - [3048] = {.lex_state = 84}, - [3049] = {.lex_state = 84}, - [3050] = {.lex_state = 84}, - [3051] = {.lex_state = 84}, - [3052] = {.lex_state = 95}, - [3053] = {.lex_state = 95}, - [3054] = {.lex_state = 84}, - [3055] = {.lex_state = 84}, - [3056] = {.lex_state = 84}, - [3057] = {.lex_state = 84}, - [3058] = {.lex_state = 84}, - [3059] = {.lex_state = 84}, + [3048] = {.lex_state = 95}, + [3049] = {.lex_state = 95}, + [3050] = {.lex_state = 83}, + [3051] = {.lex_state = 83}, + [3052] = {.lex_state = 83}, + [3053] = {.lex_state = 83}, + [3054] = {.lex_state = 83}, + [3055] = {.lex_state = 83}, + [3056] = {.lex_state = 83}, + [3057] = {.lex_state = 95}, + [3058] = {.lex_state = 95}, + [3059] = {.lex_state = 95}, [3060] = {.lex_state = 95}, - [3061] = {.lex_state = 84}, + [3061] = {.lex_state = 95}, [3062] = {.lex_state = 95}, - [3063] = {.lex_state = 84}, - [3064] = {.lex_state = 84}, - [3065] = {.lex_state = 84}, - [3066] = {.lex_state = 84}, - [3067] = {.lex_state = 84}, - [3068] = {.lex_state = 84}, - [3069] = {.lex_state = 84}, + [3063] = {.lex_state = 83}, + [3064] = {.lex_state = 95}, + [3065] = {.lex_state = 95}, + [3066] = {.lex_state = 95}, + [3067] = {.lex_state = 95}, + [3068] = {.lex_state = 95}, + [3069] = {.lex_state = 95}, [3070] = {.lex_state = 95}, - [3071] = {.lex_state = 84}, - [3072] = {.lex_state = 84}, - [3073] = {.lex_state = 84}, + [3071] = {.lex_state = 95}, + [3072] = {.lex_state = 95}, + [3073] = {.lex_state = 95}, [3074] = {.lex_state = 95}, - [3075] = {.lex_state = 84}, + [3075] = {.lex_state = 95}, [3076] = {.lex_state = 95}, - [3077] = {.lex_state = 84}, - [3078] = {.lex_state = 84}, - [3079] = {.lex_state = 84}, - [3080] = {.lex_state = 84}, - [3081] = {.lex_state = 84}, - [3082] = {.lex_state = 84}, - [3083] = {.lex_state = 84}, - [3084] = {.lex_state = 84}, - [3085] = {.lex_state = 84}, - [3086] = {.lex_state = 84}, - [3087] = {.lex_state = 84}, - [3088] = {.lex_state = 84}, - [3089] = {.lex_state = 84}, + [3077] = {.lex_state = 95}, + [3078] = {.lex_state = 95}, + [3079] = {.lex_state = 95}, + [3080] = {.lex_state = 95}, + [3081] = {.lex_state = 95}, + [3082] = {.lex_state = 95}, + [3083] = {.lex_state = 95}, + [3084] = {.lex_state = 95}, + [3085] = {.lex_state = 95}, + [3086] = {.lex_state = 95}, + [3087] = {.lex_state = 95}, + [3088] = {.lex_state = 95}, + [3089] = {.lex_state = 95}, [3090] = {.lex_state = 95}, - [3091] = {.lex_state = 84}, - [3092] = {.lex_state = 84}, + [3091] = {.lex_state = 95}, + [3092] = {.lex_state = 95}, [3093] = {.lex_state = 95}, [3094] = {.lex_state = 95}, - [3095] = {.lex_state = 84}, - [3096] = {.lex_state = 84}, + [3095] = {.lex_state = 83}, + [3096] = {.lex_state = 95}, [3097] = {.lex_state = 95}, [3098] = {.lex_state = 95}, [3099] = {.lex_state = 95}, @@ -17870,12 +17877,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3107] = {.lex_state = 95}, [3108] = {.lex_state = 95}, [3109] = {.lex_state = 95}, - [3110] = {.lex_state = 83}, - [3111] = {.lex_state = 83}, - [3112] = {.lex_state = 83}, - [3113] = {.lex_state = 83}, - [3114] = {.lex_state = 83}, - [3115] = {.lex_state = 83}, + [3110] = {.lex_state = 95}, + [3111] = {.lex_state = 95}, + [3112] = {.lex_state = 95}, + [3113] = {.lex_state = 95}, + [3114] = {.lex_state = 95}, + [3115] = {.lex_state = 95}, [3116] = {.lex_state = 95}, [3117] = {.lex_state = 95}, [3118] = {.lex_state = 95}, @@ -17884,7 +17891,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3121] = {.lex_state = 95}, [3122] = {.lex_state = 95}, [3123] = {.lex_state = 95}, - [3124] = {.lex_state = 83}, + [3124] = {.lex_state = 95}, [3125] = {.lex_state = 95}, [3126] = {.lex_state = 95}, [3127] = {.lex_state = 95}, @@ -17904,7 +17911,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3141] = {.lex_state = 95}, [3142] = {.lex_state = 95}, [3143] = {.lex_state = 95}, - [3144] = {.lex_state = 95}, + [3144] = {.lex_state = 83}, [3145] = {.lex_state = 95}, [3146] = {.lex_state = 95}, [3147] = {.lex_state = 95}, @@ -17926,200 +17933,200 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3163] = {.lex_state = 95}, [3164] = {.lex_state = 95}, [3165] = {.lex_state = 95}, - [3166] = {.lex_state = 95}, - [3167] = {.lex_state = 83}, - [3168] = {.lex_state = 95}, + [3166] = {.lex_state = 94}, + [3167] = {.lex_state = 94}, + [3168] = {.lex_state = 94}, [3169] = {.lex_state = 95}, - [3170] = {.lex_state = 95}, - [3171] = {.lex_state = 95}, - [3172] = {.lex_state = 95}, - [3173] = {.lex_state = 95}, - [3174] = {.lex_state = 95}, + [3170] = {.lex_state = 94}, + [3171] = {.lex_state = 94}, + [3172] = {.lex_state = 94}, + [3173] = {.lex_state = 94}, + [3174] = {.lex_state = 94}, [3175] = {.lex_state = 95}, - [3176] = {.lex_state = 95}, - [3177] = {.lex_state = 95}, + [3176] = {.lex_state = 94}, + [3177] = {.lex_state = 94}, [3178] = {.lex_state = 95}, - [3179] = {.lex_state = 83}, + [3179] = {.lex_state = 94}, [3180] = {.lex_state = 95}, [3181] = {.lex_state = 95}, - [3182] = {.lex_state = 95}, - [3183] = {.lex_state = 95}, - [3184] = {.lex_state = 95}, - [3185] = {.lex_state = 95}, - [3186] = {.lex_state = 95}, - [3187] = {.lex_state = 95}, - [3188] = {.lex_state = 95}, + [3182] = {.lex_state = 94}, + [3183] = {.lex_state = 94}, + [3184] = {.lex_state = 94}, + [3185] = {.lex_state = 94}, + [3186] = {.lex_state = 94}, + [3187] = {.lex_state = 94}, + [3188] = {.lex_state = 94}, [3189] = {.lex_state = 95}, - [3190] = {.lex_state = 95}, - [3191] = {.lex_state = 95}, + [3190] = {.lex_state = 94}, + [3191] = {.lex_state = 94}, [3192] = {.lex_state = 95}, [3193] = {.lex_state = 95}, [3194] = {.lex_state = 95}, [3195] = {.lex_state = 95}, - [3196] = {.lex_state = 95}, - [3197] = {.lex_state = 95}, - [3198] = {.lex_state = 95}, - [3199] = {.lex_state = 95}, - [3200] = {.lex_state = 95}, - [3201] = {.lex_state = 95}, - [3202] = {.lex_state = 95}, - [3203] = {.lex_state = 95}, - [3204] = {.lex_state = 83}, - [3205] = {.lex_state = 95}, - [3206] = {.lex_state = 95}, - [3207] = {.lex_state = 95}, - [3208] = {.lex_state = 95}, - [3209] = {.lex_state = 95}, - [3210] = {.lex_state = 95}, - [3211] = {.lex_state = 95}, - [3212] = {.lex_state = 95}, - [3213] = {.lex_state = 94}, - [3214] = {.lex_state = 94}, - [3215] = {.lex_state = 95}, - [3216] = {.lex_state = 94}, - [3217] = {.lex_state = 94}, - [3218] = {.lex_state = 95}, - [3219] = {.lex_state = 95}, - [3220] = {.lex_state = 95}, - [3221] = {.lex_state = 95}, - [3222] = {.lex_state = 94}, - [3223] = {.lex_state = 94}, - [3224] = {.lex_state = 95}, - [3225] = {.lex_state = 94}, - [3226] = {.lex_state = 94}, - [3227] = {.lex_state = 94}, - [3228] = {.lex_state = 94}, - [3229] = {.lex_state = 95}, - [3230] = {.lex_state = 94}, - [3231] = {.lex_state = 95}, - [3232] = {.lex_state = 94}, - [3233] = {.lex_state = 95}, - [3234] = {.lex_state = 95}, - [3235] = {.lex_state = 95}, - [3236] = {.lex_state = 95}, - [3237] = {.lex_state = 94}, - [3238] = {.lex_state = 94}, - [3239] = {.lex_state = 94}, - [3240] = {.lex_state = 95}, - [3241] = {.lex_state = 94}, - [3242] = {.lex_state = 95}, - [3243] = {.lex_state = 95}, - [3244] = {.lex_state = 95}, - [3245] = {.lex_state = 94}, - [3246] = {.lex_state = 95}, - [3247] = {.lex_state = 94}, - [3248] = {.lex_state = 95}, - [3249] = {.lex_state = 95}, - [3250] = {.lex_state = 94}, - [3251] = {.lex_state = 94}, - [3252] = {.lex_state = 95}, - [3253] = {.lex_state = 95}, - [3254] = {.lex_state = 95}, - [3255] = {.lex_state = 95}, - [3256] = {.lex_state = 86}, - [3257] = {.lex_state = 96}, + [3196] = {.lex_state = 86}, + [3197] = {.lex_state = 97}, + [3198] = {.lex_state = 96}, + [3199] = {.lex_state = 86}, + [3200] = {.lex_state = 86}, + [3201] = {.lex_state = 96}, + [3202] = {.lex_state = 96}, + [3203] = {.lex_state = 86}, + [3204] = {.lex_state = 86}, + [3205] = {.lex_state = 86}, + [3206] = {.lex_state = 86}, + [3207] = {.lex_state = 97}, + [3208] = {.lex_state = 86}, + [3209] = {.lex_state = 86}, + [3210] = {.lex_state = 86}, + [3211] = {.lex_state = 96}, + [3212] = {.lex_state = 97}, + [3213] = {.lex_state = 97}, + [3214] = {.lex_state = 97}, + [3215] = {.lex_state = 86}, + [3216] = {.lex_state = 97}, + [3217] = {.lex_state = 96}, + [3218] = {.lex_state = 96}, + [3219] = {.lex_state = 97}, + [3220] = {.lex_state = 97}, + [3221] = {.lex_state = 96}, + [3222] = {.lex_state = 97}, + [3223] = {.lex_state = 96}, + [3224] = {.lex_state = 96}, + [3225] = {.lex_state = 86}, + [3226] = {.lex_state = 86}, + [3227] = {.lex_state = 97}, + [3228] = {.lex_state = 97}, + [3229] = {.lex_state = 96}, + [3230] = {.lex_state = 86}, + [3231] = {.lex_state = 96}, + [3232] = {.lex_state = 86}, + [3233] = {.lex_state = 86}, + [3234] = {.lex_state = 96}, + [3235] = {.lex_state = 97}, + [3236] = {.lex_state = 96}, + [3237] = {.lex_state = 97}, + [3238] = {.lex_state = 97}, + [3239] = {.lex_state = 97}, + [3240] = {.lex_state = 96}, + [3241] = {.lex_state = 96}, + [3242] = {.lex_state = 97}, + [3243] = {.lex_state = 82}, + [3244] = {.lex_state = 96}, + [3245] = {.lex_state = 96}, + [3246] = {.lex_state = 97}, + [3247] = {.lex_state = 96}, + [3248] = {.lex_state = 82}, + [3249] = {.lex_state = 96}, + [3250] = {.lex_state = 82}, + [3251] = {.lex_state = 97}, + [3252] = {.lex_state = 97}, + [3253] = {.lex_state = 96}, + [3254] = {.lex_state = 97}, + [3255] = {.lex_state = 86}, + [3256] = {.lex_state = 95}, + [3257] = {.lex_state = 86}, [3258] = {.lex_state = 86}, - [3259] = {.lex_state = 96}, - [3260] = {.lex_state = 96}, + [3259] = {.lex_state = 86}, + [3260] = {.lex_state = 86}, [3261] = {.lex_state = 86}, - [3262] = {.lex_state = 96}, - [3263] = {.lex_state = 97}, - [3264] = {.lex_state = 96}, - [3265] = {.lex_state = 96}, - [3266] = {.lex_state = 96}, - [3267] = {.lex_state = 96}, - [3268] = {.lex_state = 96}, + [3262] = {.lex_state = 86}, + [3263] = {.lex_state = 86}, + [3264] = {.lex_state = 86}, + [3265] = {.lex_state = 86}, + [3266] = {.lex_state = 86}, + [3267] = {.lex_state = 86}, + [3268] = {.lex_state = 86}, [3269] = {.lex_state = 86}, [3270] = {.lex_state = 86}, [3271] = {.lex_state = 86}, - [3272] = {.lex_state = 82}, - [3273] = {.lex_state = 96}, + [3272] = {.lex_state = 86}, + [3273] = {.lex_state = 86}, [3274] = {.lex_state = 86}, - [3275] = {.lex_state = 96}, - [3276] = {.lex_state = 97}, - [3277] = {.lex_state = 96}, - [3278] = {.lex_state = 97}, - [3279] = {.lex_state = 96}, - [3280] = {.lex_state = 96}, - [3281] = {.lex_state = 96}, - [3282] = {.lex_state = 97}, - [3283] = {.lex_state = 96}, - [3284] = {.lex_state = 97}, - [3285] = {.lex_state = 97}, - [3286] = {.lex_state = 96}, + [3275] = {.lex_state = 86}, + [3276] = {.lex_state = 86}, + [3277] = {.lex_state = 86}, + [3278] = {.lex_state = 95}, + [3279] = {.lex_state = 95}, + [3280] = {.lex_state = 86}, + [3281] = {.lex_state = 86}, + [3282] = {.lex_state = 86}, + [3283] = {.lex_state = 95}, + [3284] = {.lex_state = 86}, + [3285] = {.lex_state = 95}, + [3286] = {.lex_state = 95}, [3287] = {.lex_state = 86}, - [3288] = {.lex_state = 97}, - [3289] = {.lex_state = 82}, - [3290] = {.lex_state = 97}, - [3291] = {.lex_state = 97}, - [3292] = {.lex_state = 97}, - [3293] = {.lex_state = 97}, - [3294] = {.lex_state = 97}, + [3288] = {.lex_state = 86}, + [3289] = {.lex_state = 86}, + [3290] = {.lex_state = 86}, + [3291] = {.lex_state = 86}, + [3292] = {.lex_state = 86}, + [3293] = {.lex_state = 86}, + [3294] = {.lex_state = 86}, [3295] = {.lex_state = 86}, [3296] = {.lex_state = 86}, - [3297] = {.lex_state = 82}, + [3297] = {.lex_state = 86}, [3298] = {.lex_state = 86}, - [3299] = {.lex_state = 86}, - [3300] = {.lex_state = 86}, - [3301] = {.lex_state = 86}, - [3302] = {.lex_state = 97}, - [3303] = {.lex_state = 97}, - [3304] = {.lex_state = 86}, - [3305] = {.lex_state = 97}, - [3306] = {.lex_state = 97}, - [3307] = {.lex_state = 96}, - [3308] = {.lex_state = 97}, - [3309] = {.lex_state = 97}, - [3310] = {.lex_state = 97}, - [3311] = {.lex_state = 86}, - [3312] = {.lex_state = 86}, - [3313] = {.lex_state = 96}, - [3314] = {.lex_state = 96}, - [3315] = {.lex_state = 97}, + [3299] = {.lex_state = 95}, + [3300] = {.lex_state = 95}, + [3301] = {.lex_state = 95}, + [3302] = {.lex_state = 95}, + [3303] = {.lex_state = 95}, + [3304] = {.lex_state = 95}, + [3305] = {.lex_state = 95}, + [3306] = {.lex_state = 95}, + [3307] = {.lex_state = 95}, + [3308] = {.lex_state = 95}, + [3309] = {.lex_state = 95}, + [3310] = {.lex_state = 95}, + [3311] = {.lex_state = 95}, + [3312] = {.lex_state = 95}, + [3313] = {.lex_state = 95}, + [3314] = {.lex_state = 95}, + [3315] = {.lex_state = 95}, [3316] = {.lex_state = 86}, - [3317] = {.lex_state = 86}, - [3318] = {.lex_state = 86}, - [3319] = {.lex_state = 86}, - [3320] = {.lex_state = 95}, - [3321] = {.lex_state = 86}, - [3322] = {.lex_state = 86}, - [3323] = {.lex_state = 86}, - [3324] = {.lex_state = 86}, - [3325] = {.lex_state = 86}, - [3326] = {.lex_state = 86}, - [3327] = {.lex_state = 86}, - [3328] = {.lex_state = 86}, - [3329] = {.lex_state = 86}, - [3330] = {.lex_state = 86}, - [3331] = {.lex_state = 86}, + [3317] = {.lex_state = 95}, + [3318] = {.lex_state = 95}, + [3319] = {.lex_state = 95}, + [3320] = {.lex_state = 477}, + [3321] = {.lex_state = 95}, + [3322] = {.lex_state = 95}, + [3323] = {.lex_state = 477}, + [3324] = {.lex_state = 95}, + [3325] = {.lex_state = 95}, + [3326] = {.lex_state = 477}, + [3327] = {.lex_state = 477}, + [3328] = {.lex_state = 95}, + [3329] = {.lex_state = 477}, + [3330] = {.lex_state = 95}, + [3331] = {.lex_state = 477}, [3332] = {.lex_state = 95}, - [3333] = {.lex_state = 86}, - [3334] = {.lex_state = 86}, - [3335] = {.lex_state = 86}, - [3336] = {.lex_state = 86}, - [3337] = {.lex_state = 86}, - [3338] = {.lex_state = 86}, - [3339] = {.lex_state = 86}, - [3340] = {.lex_state = 86}, - [3341] = {.lex_state = 86}, + [3333] = {.lex_state = 95}, + [3334] = {.lex_state = 95}, + [3335] = {.lex_state = 95}, + [3336] = {.lex_state = 95}, + [3337] = {.lex_state = 477}, + [3338] = {.lex_state = 95}, + [3339] = {.lex_state = 95}, + [3340] = {.lex_state = 95}, + [3341] = {.lex_state = 95}, [3342] = {.lex_state = 95}, - [3343] = {.lex_state = 86}, - [3344] = {.lex_state = 86}, - [3345] = {.lex_state = 86}, - [3346] = {.lex_state = 86}, - [3347] = {.lex_state = 86}, - [3348] = {.lex_state = 86}, - [3349] = {.lex_state = 86}, + [3343] = {.lex_state = 95}, + [3344] = {.lex_state = 95}, + [3345] = {.lex_state = 95}, + [3346] = {.lex_state = 95}, + [3347] = {.lex_state = 95}, + [3348] = {.lex_state = 95}, + [3349] = {.lex_state = 95}, [3350] = {.lex_state = 95}, - [3351] = {.lex_state = 86}, - [3352] = {.lex_state = 86}, - [3353] = {.lex_state = 86}, - [3354] = {.lex_state = 86}, + [3351] = {.lex_state = 95}, + [3352] = {.lex_state = 95}, + [3353] = {.lex_state = 95}, + [3354] = {.lex_state = 95}, [3355] = {.lex_state = 95}, - [3356] = {.lex_state = 86}, - [3357] = {.lex_state = 86}, + [3356] = {.lex_state = 95}, + [3357] = {.lex_state = 95}, [3358] = {.lex_state = 95}, - [3359] = {.lex_state = 95}, + [3359] = {.lex_state = 84}, [3360] = {.lex_state = 95}, [3361] = {.lex_state = 95}, [3362] = {.lex_state = 95}, @@ -18136,29 +18143,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3373] = {.lex_state = 95}, [3374] = {.lex_state = 95}, [3375] = {.lex_state = 95}, - [3376] = {.lex_state = 86}, + [3376] = {.lex_state = 95}, [3377] = {.lex_state = 95}, [3378] = {.lex_state = 95}, - [3379] = {.lex_state = 477}, + [3379] = {.lex_state = 95}, [3380] = {.lex_state = 95}, - [3381] = {.lex_state = 477}, + [3381] = {.lex_state = 95}, [3382] = {.lex_state = 95}, [3383] = {.lex_state = 95}, [3384] = {.lex_state = 95}, [3385] = {.lex_state = 95}, - [3386] = {.lex_state = 477}, - [3387] = {.lex_state = 477}, + [3386] = {.lex_state = 95}, + [3387] = {.lex_state = 95}, [3388] = {.lex_state = 95}, [3389] = {.lex_state = 95}, [3390] = {.lex_state = 95}, [3391] = {.lex_state = 95}, - [3392] = {.lex_state = 477}, - [3393] = {.lex_state = 477}, + [3392] = {.lex_state = 95}, + [3393] = {.lex_state = 95}, [3394] = {.lex_state = 95}, [3395] = {.lex_state = 95}, [3396] = {.lex_state = 95}, [3397] = {.lex_state = 95}, - [3398] = {.lex_state = 477}, + [3398] = {.lex_state = 95}, [3399] = {.lex_state = 95}, [3400] = {.lex_state = 95}, [3401] = {.lex_state = 95}, @@ -18174,17 +18181,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3411] = {.lex_state = 95}, [3412] = {.lex_state = 95}, [3413] = {.lex_state = 95}, - [3414] = {.lex_state = 95}, + [3414] = {.lex_state = 477}, [3415] = {.lex_state = 95}, [3416] = {.lex_state = 95}, [3417] = {.lex_state = 95}, [3418] = {.lex_state = 95}, [3419] = {.lex_state = 95}, - [3420] = {.lex_state = 84}, + [3420] = {.lex_state = 95}, [3421] = {.lex_state = 95}, [3422] = {.lex_state = 95}, [3423] = {.lex_state = 95}, - [3424] = {.lex_state = 95}, + [3424] = {.lex_state = 477}, [3425] = {.lex_state = 95}, [3426] = {.lex_state = 95}, [3427] = {.lex_state = 95}, @@ -18204,17 +18211,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3441] = {.lex_state = 95}, [3442] = {.lex_state = 95}, [3443] = {.lex_state = 95}, - [3444] = {.lex_state = 95}, + [3444] = {.lex_state = 477}, [3445] = {.lex_state = 95}, [3446] = {.lex_state = 95}, [3447] = {.lex_state = 95}, [3448] = {.lex_state = 95}, [3449] = {.lex_state = 95}, - [3450] = {.lex_state = 477}, + [3450] = {.lex_state = 95}, [3451] = {.lex_state = 95}, [3452] = {.lex_state = 95}, [3453] = {.lex_state = 95}, - [3454] = {.lex_state = 477}, + [3454] = {.lex_state = 95}, [3455] = {.lex_state = 95}, [3456] = {.lex_state = 95}, [3457] = {.lex_state = 95}, @@ -18265,43 +18272,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3502] = {.lex_state = 95}, [3503] = {.lex_state = 95}, [3504] = {.lex_state = 95}, - [3505] = {.lex_state = 95}, + [3505] = {.lex_state = 477}, [3506] = {.lex_state = 95}, [3507] = {.lex_state = 95}, - [3508] = {.lex_state = 95}, - [3509] = {.lex_state = 95}, - [3510] = {.lex_state = 95}, + [3508] = {.lex_state = 477}, + [3509] = {.lex_state = 477}, + [3510] = {.lex_state = 477}, [3511] = {.lex_state = 95}, [3512] = {.lex_state = 95}, - [3513] = {.lex_state = 95}, - [3514] = {.lex_state = 95}, - [3515] = {.lex_state = 95}, - [3516] = {.lex_state = 95}, - [3517] = {.lex_state = 95}, - [3518] = {.lex_state = 95}, - [3519] = {.lex_state = 95}, + [3513] = {.lex_state = 477}, + [3514] = {.lex_state = 477}, + [3515] = {.lex_state = 477}, + [3516] = {.lex_state = 477}, + [3517] = {.lex_state = 477}, + [3518] = {.lex_state = 477}, + [3519] = {.lex_state = 477}, [3520] = {.lex_state = 95}, [3521] = {.lex_state = 95}, [3522] = {.lex_state = 95}, [3523] = {.lex_state = 95}, [3524] = {.lex_state = 95}, - [3525] = {.lex_state = 95}, - [3526] = {.lex_state = 95}, + [3525] = {.lex_state = 477}, + [3526] = {.lex_state = 477}, [3527] = {.lex_state = 95}, - [3528] = {.lex_state = 95}, + [3528] = {.lex_state = 477}, [3529] = {.lex_state = 95}, - [3530] = {.lex_state = 95}, - [3531] = {.lex_state = 95}, + [3530] = {.lex_state = 477}, + [3531] = {.lex_state = 477}, [3532] = {.lex_state = 95}, - [3533] = {.lex_state = 477}, + [3533] = {.lex_state = 95}, [3534] = {.lex_state = 95}, - [3535] = {.lex_state = 95}, - [3536] = {.lex_state = 95}, + [3535] = {.lex_state = 477}, + [3536] = {.lex_state = 477}, [3537] = {.lex_state = 95}, - [3538] = {.lex_state = 95}, + [3538] = {.lex_state = 477}, [3539] = {.lex_state = 95}, [3540] = {.lex_state = 95}, - [3541] = {.lex_state = 95}, + [3541] = {.lex_state = 477}, [3542] = {.lex_state = 95}, [3543] = {.lex_state = 95}, [3544] = {.lex_state = 95}, @@ -18311,73 +18318,73 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3548] = {.lex_state = 95}, [3549] = {.lex_state = 95}, [3550] = {.lex_state = 95}, - [3551] = {.lex_state = 95}, - [3552] = {.lex_state = 95}, - [3553] = {.lex_state = 95}, - [3554] = {.lex_state = 95}, + [3551] = {.lex_state = 477}, + [3552] = {.lex_state = 477}, + [3553] = {.lex_state = 477}, + [3554] = {.lex_state = 477}, [3555] = {.lex_state = 95}, - [3556] = {.lex_state = 95}, - [3557] = {.lex_state = 95}, - [3558] = {.lex_state = 95}, + [3556] = {.lex_state = 477}, + [3557] = {.lex_state = 477}, + [3558] = {.lex_state = 477}, [3559] = {.lex_state = 95}, - [3560] = {.lex_state = 95}, + [3560] = {.lex_state = 477}, [3561] = {.lex_state = 95}, - [3562] = {.lex_state = 95}, + [3562] = {.lex_state = 477}, [3563] = {.lex_state = 95}, - [3564] = {.lex_state = 95}, - [3565] = {.lex_state = 477}, - [3566] = {.lex_state = 477}, - [3567] = {.lex_state = 477}, - [3568] = {.lex_state = 477}, + [3564] = {.lex_state = 477}, + [3565] = {.lex_state = 95}, + [3566] = {.lex_state = 95}, + [3567] = {.lex_state = 95}, + [3568] = {.lex_state = 95}, [3569] = {.lex_state = 95}, [3570] = {.lex_state = 477}, [3571] = {.lex_state = 477}, - [3572] = {.lex_state = 477}, - [3573] = {.lex_state = 95}, + [3572] = {.lex_state = 95}, + [3573] = {.lex_state = 477}, [3574] = {.lex_state = 477}, [3575] = {.lex_state = 477}, - [3576] = {.lex_state = 95}, + [3576] = {.lex_state = 477}, [3577] = {.lex_state = 477}, [3578] = {.lex_state = 477}, [3579] = {.lex_state = 477}, [3580] = {.lex_state = 477}, [3581] = {.lex_state = 477}, - [3582] = {.lex_state = 477}, + [3582] = {.lex_state = 95}, [3583] = {.lex_state = 477}, - [3584] = {.lex_state = 95}, + [3584] = {.lex_state = 477}, [3585] = {.lex_state = 477}, [3586] = {.lex_state = 477}, [3587] = {.lex_state = 477}, [3588] = {.lex_state = 477}, - [3589] = {.lex_state = 95}, - [3590] = {.lex_state = 95}, + [3589] = {.lex_state = 477}, + [3590] = {.lex_state = 477}, [3591] = {.lex_state = 477}, [3592] = {.lex_state = 477}, - [3593] = {.lex_state = 95}, + [3593] = {.lex_state = 477}, [3594] = {.lex_state = 477}, [3595] = {.lex_state = 477}, - [3596] = {.lex_state = 95}, - [3597] = {.lex_state = 95}, - [3598] = {.lex_state = 95}, + [3596] = {.lex_state = 477}, + [3597] = {.lex_state = 477}, + [3598] = {.lex_state = 477}, [3599] = {.lex_state = 95}, [3600] = {.lex_state = 477}, [3601] = {.lex_state = 95}, - [3602] = {.lex_state = 95}, + [3602] = {.lex_state = 477}, [3603] = {.lex_state = 477}, - [3604] = {.lex_state = 95}, + [3604] = {.lex_state = 477}, [3605] = {.lex_state = 477}, - [3606] = {.lex_state = 95}, - [3607] = {.lex_state = 477}, + [3606] = {.lex_state = 477}, + [3607] = {.lex_state = 95}, [3608] = {.lex_state = 477}, [3609] = {.lex_state = 95}, [3610] = {.lex_state = 477}, [3611] = {.lex_state = 477}, - [3612] = {.lex_state = 477}, - [3613] = {.lex_state = 477}, - [3614] = {.lex_state = 95}, + [3612] = {.lex_state = 95}, + [3613] = {.lex_state = 95}, + [3614] = {.lex_state = 477}, [3615] = {.lex_state = 477}, [3616] = {.lex_state = 477}, - [3617] = {.lex_state = 95}, + [3617] = {.lex_state = 477}, [3618] = {.lex_state = 477}, [3619] = {.lex_state = 477}, [3620] = {.lex_state = 477}, @@ -18385,9 +18392,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3622] = {.lex_state = 477}, [3623] = {.lex_state = 477}, [3624] = {.lex_state = 477}, - [3625] = {.lex_state = 95}, + [3625] = {.lex_state = 477}, [3626] = {.lex_state = 477}, - [3627] = {.lex_state = 95}, + [3627] = {.lex_state = 477}, [3628] = {.lex_state = 477}, [3629] = {.lex_state = 477}, [3630] = {.lex_state = 477}, @@ -18395,7 +18402,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3632] = {.lex_state = 477}, [3633] = {.lex_state = 477}, [3634] = {.lex_state = 477}, - [3635] = {.lex_state = 95}, + [3635] = {.lex_state = 477}, [3636] = {.lex_state = 477}, [3637] = {.lex_state = 477}, [3638] = {.lex_state = 477}, @@ -18428,54 +18435,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3665] = {.lex_state = 477}, [3666] = {.lex_state = 477}, [3667] = {.lex_state = 477}, - [3668] = {.lex_state = 477}, - [3669] = {.lex_state = 477}, - [3670] = {.lex_state = 477}, - [3671] = {.lex_state = 477}, - [3672] = {.lex_state = 477}, - [3673] = {.lex_state = 477}, - [3674] = {.lex_state = 477}, - [3675] = {.lex_state = 477}, - [3676] = {.lex_state = 477}, - [3677] = {.lex_state = 477}, - [3678] = {.lex_state = 477}, + [3668] = {.lex_state = 95}, + [3669] = {.lex_state = 95}, + [3670] = {.lex_state = 95}, + [3671] = {.lex_state = 95}, + [3672] = {.lex_state = 95}, + [3673] = {.lex_state = 95}, + [3674] = {.lex_state = 95}, + [3675] = {.lex_state = 95}, + [3676] = {.lex_state = 95}, + [3677] = {.lex_state = 95}, + [3678] = {.lex_state = 95}, [3679] = {.lex_state = 95}, - [3680] = {.lex_state = 477}, - [3681] = {.lex_state = 477}, - [3682] = {.lex_state = 477}, - [3683] = {.lex_state = 477}, - [3684] = {.lex_state = 477}, - [3685] = {.lex_state = 477}, - [3686] = {.lex_state = 477}, - [3687] = {.lex_state = 477}, - [3688] = {.lex_state = 477}, - [3689] = {.lex_state = 477}, - [3690] = {.lex_state = 477}, - [3691] = {.lex_state = 477}, + [3680] = {.lex_state = 95}, + [3681] = {.lex_state = 95}, + [3682] = {.lex_state = 95}, + [3683] = {.lex_state = 95}, + [3684] = {.lex_state = 95}, + [3685] = {.lex_state = 95}, + [3686] = {.lex_state = 95}, + [3687] = {.lex_state = 95}, + [3688] = {.lex_state = 95}, + [3689] = {.lex_state = 95}, + [3690] = {.lex_state = 95}, + [3691] = {.lex_state = 95}, [3692] = {.lex_state = 95}, [3693] = {.lex_state = 95}, - [3694] = {.lex_state = 477}, - [3695] = {.lex_state = 477}, - [3696] = {.lex_state = 477}, - [3697] = {.lex_state = 477}, + [3694] = {.lex_state = 95}, + [3695] = {.lex_state = 95}, + [3696] = {.lex_state = 95}, + [3697] = {.lex_state = 95}, [3698] = {.lex_state = 95}, [3699] = {.lex_state = 95}, [3700] = {.lex_state = 95}, - [3701] = {.lex_state = 477}, - [3702] = {.lex_state = 477}, - [3703] = {.lex_state = 477}, + [3701] = {.lex_state = 95}, + [3702] = {.lex_state = 95}, + [3703] = {.lex_state = 95}, [3704] = {.lex_state = 95}, - [3705] = {.lex_state = 477}, - [3706] = {.lex_state = 477}, - [3707] = {.lex_state = 477}, - [3708] = {.lex_state = 477}, - [3709] = {.lex_state = 477}, - [3710] = {.lex_state = 477}, + [3705] = {.lex_state = 95}, + [3706] = {.lex_state = 95}, + [3707] = {.lex_state = 95}, + [3708] = {.lex_state = 95}, + [3709] = {.lex_state = 95}, + [3710] = {.lex_state = 95}, [3711] = {.lex_state = 95}, [3712] = {.lex_state = 95}, - [3713] = {.lex_state = 477}, + [3713] = {.lex_state = 95}, [3714] = {.lex_state = 95}, - [3715] = {.lex_state = 477}, + [3715] = {.lex_state = 95}, [3716] = {.lex_state = 95}, [3717] = {.lex_state = 95}, [3718] = {.lex_state = 95}, @@ -18620,7 +18627,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3857] = {.lex_state = 95}, [3858] = {.lex_state = 95}, [3859] = {.lex_state = 95}, - [3860] = {.lex_state = 95}, + [3860] = {.lex_state = 86}, [3861] = {.lex_state = 95}, [3862] = {.lex_state = 95}, [3863] = {.lex_state = 95}, @@ -18630,7 +18637,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3867] = {.lex_state = 95}, [3868] = {.lex_state = 95}, [3869] = {.lex_state = 95}, - [3870] = {.lex_state = 95}, + [3870] = {.lex_state = 477}, [3871] = {.lex_state = 95}, [3872] = {.lex_state = 95}, [3873] = {.lex_state = 95}, @@ -18660,7 +18667,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3897] = {.lex_state = 95}, [3898] = {.lex_state = 95}, [3899] = {.lex_state = 95}, - [3900] = {.lex_state = 86}, + [3900] = {.lex_state = 95}, [3901] = {.lex_state = 95}, [3902] = {.lex_state = 95}, [3903] = {.lex_state = 95}, @@ -18669,7 +18676,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3906] = {.lex_state = 95}, [3907] = {.lex_state = 95}, [3908] = {.lex_state = 95}, - [3909] = {.lex_state = 477}, + [3909] = {.lex_state = 95}, [3910] = {.lex_state = 95}, [3911] = {.lex_state = 95}, [3912] = {.lex_state = 95}, @@ -18757,7 +18764,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3994] = {.lex_state = 95}, [3995] = {.lex_state = 95}, [3996] = {.lex_state = 95}, - [3997] = {.lex_state = 84}, + [3997] = {.lex_state = 95}, [3998] = {.lex_state = 95}, [3999] = {.lex_state = 95}, [4000] = {.lex_state = 95}, @@ -18765,9 +18772,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4002] = {.lex_state = 95}, [4003] = {.lex_state = 95}, [4004] = {.lex_state = 95}, - [4005] = {.lex_state = 82}, - [4006] = {.lex_state = 82}, - [4007] = {.lex_state = 82}, + [4005] = {.lex_state = 95}, + [4006] = {.lex_state = 95}, + [4007] = {.lex_state = 95}, [4008] = {.lex_state = 95}, [4009] = {.lex_state = 95}, [4010] = {.lex_state = 95}, @@ -18777,7 +18784,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4014] = {.lex_state = 95}, [4015] = {.lex_state = 95}, [4016] = {.lex_state = 95}, - [4017] = {.lex_state = 95}, + [4017] = {.lex_state = 84}, [4018] = {.lex_state = 95}, [4019] = {.lex_state = 95}, [4020] = {.lex_state = 95}, @@ -18785,9 +18792,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4022] = {.lex_state = 95}, [4023] = {.lex_state = 95}, [4024] = {.lex_state = 95}, - [4025] = {.lex_state = 95}, - [4026] = {.lex_state = 95}, - [4027] = {.lex_state = 95}, + [4025] = {.lex_state = 82}, + [4026] = {.lex_state = 82}, + [4027] = {.lex_state = 82}, [4028] = {.lex_state = 95}, [4029] = {.lex_state = 95}, [4030] = {.lex_state = 95}, @@ -19054,13 +19061,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4291] = {.lex_state = 95}, [4292] = {.lex_state = 95}, [4293] = {.lex_state = 95}, - [4294] = {.lex_state = 86}, + [4294] = {.lex_state = 95}, [4295] = {.lex_state = 95}, [4296] = {.lex_state = 95}, [4297] = {.lex_state = 95}, - [4298] = {.lex_state = 86}, + [4298] = {.lex_state = 95}, [4299] = {.lex_state = 95}, - [4300] = {.lex_state = 86}, + [4300] = {.lex_state = 95}, [4301] = {.lex_state = 95}, [4302] = {.lex_state = 95}, [4303] = {.lex_state = 95}, @@ -19074,10 +19081,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4311] = {.lex_state = 95}, [4312] = {.lex_state = 95}, [4313] = {.lex_state = 95}, - [4314] = {.lex_state = 95}, - [4315] = {.lex_state = 95}, + [4314] = {.lex_state = 86}, + [4315] = {.lex_state = 86}, [4316] = {.lex_state = 95}, - [4317] = {.lex_state = 95}, + [4317] = {.lex_state = 86}, [4318] = {.lex_state = 95}, [4319] = {.lex_state = 95}, [4320] = {.lex_state = 95}, @@ -19119,7 +19126,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4356] = {.lex_state = 95}, [4357] = {.lex_state = 95}, [4358] = {.lex_state = 95}, - [4359] = {.lex_state = 83}, + [4359] = {.lex_state = 95}, [4360] = {.lex_state = 95}, [4361] = {.lex_state = 95}, [4362] = {.lex_state = 95}, @@ -19133,9 +19140,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4370] = {.lex_state = 95}, [4371] = {.lex_state = 95}, [4372] = {.lex_state = 95}, - [4373] = {.lex_state = 95}, - [4374] = {.lex_state = 95}, - [4375] = {.lex_state = 95}, + [4373] = {.lex_state = 83}, + [4374] = {.lex_state = 83}, + [4375] = {.lex_state = 83}, [4376] = {.lex_state = 95}, [4377] = {.lex_state = 95}, [4378] = {.lex_state = 95}, @@ -19145,7 +19152,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4382] = {.lex_state = 95}, [4383] = {.lex_state = 95}, [4384] = {.lex_state = 95}, - [4385] = {.lex_state = 83}, + [4385] = {.lex_state = 95}, [4386] = {.lex_state = 95}, [4387] = {.lex_state = 95}, [4388] = {.lex_state = 95}, @@ -19153,13 +19160,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4390] = {.lex_state = 95}, [4391] = {.lex_state = 95}, [4392] = {.lex_state = 95}, - [4393] = {.lex_state = 83}, + [4393] = {.lex_state = 95}, [4394] = {.lex_state = 95}, [4395] = {.lex_state = 95}, [4396] = {.lex_state = 95}, [4397] = {.lex_state = 95}, [4398] = {.lex_state = 95}, - [4399] = {.lex_state = 83}, + [4399] = {.lex_state = 95}, [4400] = {.lex_state = 95}, [4401] = {.lex_state = 95}, [4402] = {.lex_state = 95}, @@ -19167,12 +19174,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4404] = {.lex_state = 95}, [4405] = {.lex_state = 95}, [4406] = {.lex_state = 95}, - [4407] = {.lex_state = 95}, + [4407] = {.lex_state = 86}, [4408] = {.lex_state = 95}, [4409] = {.lex_state = 95}, [4410] = {.lex_state = 95}, [4411] = {.lex_state = 95}, - [4412] = {.lex_state = 83}, + [4412] = {.lex_state = 95}, [4413] = {.lex_state = 95}, [4414] = {.lex_state = 95}, [4415] = {.lex_state = 95}, @@ -19183,92 +19190,92 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4420] = {.lex_state = 95}, [4421] = {.lex_state = 95}, [4422] = {.lex_state = 95}, - [4423] = {.lex_state = 95}, - [4424] = {.lex_state = 83}, + [4423] = {.lex_state = 83}, + [4424] = {.lex_state = 95}, [4425] = {.lex_state = 95}, [4426] = {.lex_state = 95}, - [4427] = {.lex_state = 83}, + [4427] = {.lex_state = 95}, [4428] = {.lex_state = 95}, [4429] = {.lex_state = 95}, - [4430] = {.lex_state = 86}, + [4430] = {.lex_state = 95}, [4431] = {.lex_state = 95}, - [4432] = {.lex_state = 83}, - [4433] = {.lex_state = 83}, - [4434] = {.lex_state = 83}, + [4432] = {.lex_state = 95}, + [4433] = {.lex_state = 95}, + [4434] = {.lex_state = 95}, [4435] = {.lex_state = 95}, - [4436] = {.lex_state = 83}, - [4437] = {.lex_state = 83}, + [4436] = {.lex_state = 95}, + [4437] = {.lex_state = 95}, [4438] = {.lex_state = 83}, - [4439] = {.lex_state = 83}, - [4440] = {.lex_state = 83}, - [4441] = {.lex_state = 83}, + [4439] = {.lex_state = 95}, + [4440] = {.lex_state = 95}, + [4441] = {.lex_state = 95}, [4442] = {.lex_state = 83}, [4443] = {.lex_state = 95}, - [4444] = {.lex_state = 83}, - [4445] = {.lex_state = 83}, + [4444] = {.lex_state = 95}, + [4445] = {.lex_state = 95}, [4446] = {.lex_state = 83}, [4447] = {.lex_state = 95}, - [4448] = {.lex_state = 83}, - [4449] = {.lex_state = 83}, + [4448] = {.lex_state = 95}, + [4449] = {.lex_state = 95}, [4450] = {.lex_state = 95}, - [4451] = {.lex_state = 83}, + [4451] = {.lex_state = 86}, [4452] = {.lex_state = 83}, - [4453] = {.lex_state = 95}, - [4454] = {.lex_state = 95}, + [4453] = {.lex_state = 83}, + [4454] = {.lex_state = 83}, [4455] = {.lex_state = 83}, - [4456] = {.lex_state = 95}, + [4456] = {.lex_state = 83}, [4457] = {.lex_state = 83}, - [4458] = {.lex_state = 95}, + [4458] = {.lex_state = 83}, [4459] = {.lex_state = 83}, - [4460] = {.lex_state = 95}, + [4460] = {.lex_state = 83}, [4461] = {.lex_state = 95}, - [4462] = {.lex_state = 83}, - [4463] = {.lex_state = 83}, + [4462] = {.lex_state = 95}, + [4463] = {.lex_state = 95}, [4464] = {.lex_state = 83}, [4465] = {.lex_state = 95}, [4466] = {.lex_state = 83}, - [4467] = {.lex_state = 95}, - [4468] = {.lex_state = 83}, - [4469] = {.lex_state = 95}, + [4467] = {.lex_state = 83}, + [4468] = {.lex_state = 95}, + [4469] = {.lex_state = 83}, [4470] = {.lex_state = 95}, [4471] = {.lex_state = 83}, [4472] = {.lex_state = 95}, - [4473] = {.lex_state = 86}, + [4473] = {.lex_state = 95}, [4474] = {.lex_state = 95}, [4475] = {.lex_state = 95}, - [4476] = {.lex_state = 83}, - [4477] = {.lex_state = 83}, + [4476] = {.lex_state = 95}, + [4477] = {.lex_state = 95}, [4478] = {.lex_state = 95}, [4479] = {.lex_state = 83}, - [4480] = {.lex_state = 95}, - [4481] = {.lex_state = 95}, + [4480] = {.lex_state = 83}, + [4481] = {.lex_state = 83}, [4482] = {.lex_state = 83}, [4483] = {.lex_state = 83}, [4484] = {.lex_state = 83}, [4485] = {.lex_state = 83}, - [4486] = {.lex_state = 95}, + [4486] = {.lex_state = 83}, [4487] = {.lex_state = 95}, [4488] = {.lex_state = 95}, - [4489] = {.lex_state = 95}, + [4489] = {.lex_state = 83}, [4490] = {.lex_state = 95}, [4491] = {.lex_state = 83}, - [4492] = {.lex_state = 83}, + [4492] = {.lex_state = 95}, [4493] = {.lex_state = 83}, [4494] = {.lex_state = 83}, - [4495] = {.lex_state = 83}, + [4495] = {.lex_state = 95}, [4496] = {.lex_state = 83}, - [4497] = {.lex_state = 83}, - [4498] = {.lex_state = 83}, - [4499] = {.lex_state = 83}, + [4497] = {.lex_state = 95}, + [4498] = {.lex_state = 95}, + [4499] = {.lex_state = 95}, [4500] = {.lex_state = 83}, - [4501] = {.lex_state = 83}, + [4501] = {.lex_state = 95}, [4502] = {.lex_state = 83}, [4503] = {.lex_state = 83}, - [4504] = {.lex_state = 83}, - [4505] = {.lex_state = 83}, - [4506] = {.lex_state = 83}, + [4504] = {.lex_state = 95}, + [4505] = {.lex_state = 95}, + [4506] = {.lex_state = 95}, [4507] = {.lex_state = 83}, - [4508] = {.lex_state = 83}, + [4508] = {.lex_state = 95}, [4509] = {.lex_state = 83}, [4510] = {.lex_state = 83}, [4511] = {.lex_state = 83}, @@ -19293,30 +19300,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4530] = {.lex_state = 83}, [4531] = {.lex_state = 83}, [4532] = {.lex_state = 83}, - [4533] = {.lex_state = 95}, - [4534] = {.lex_state = 95}, - [4535] = {.lex_state = 95}, - [4536] = {.lex_state = 95}, - [4537] = {.lex_state = 95}, - [4538] = {.lex_state = 95}, - [4539] = {.lex_state = 95}, - [4540] = {.lex_state = 95}, - [4541] = {.lex_state = 95}, - [4542] = {.lex_state = 95}, - [4543] = {.lex_state = 95}, - [4544] = {.lex_state = 95}, + [4533] = {.lex_state = 83}, + [4534] = {.lex_state = 83}, + [4535] = {.lex_state = 83}, + [4536] = {.lex_state = 83}, + [4537] = {.lex_state = 83}, + [4538] = {.lex_state = 83}, + [4539] = {.lex_state = 83}, + [4540] = {.lex_state = 83}, + [4541] = {.lex_state = 83}, + [4542] = {.lex_state = 83}, + [4543] = {.lex_state = 83}, + [4544] = {.lex_state = 83}, [4545] = {.lex_state = 83}, - [4546] = {.lex_state = 95}, - [4547] = {.lex_state = 95}, - [4548] = {.lex_state = 95}, - [4549] = {.lex_state = 95}, - [4550] = {.lex_state = 95}, - [4551] = {.lex_state = 95}, - [4552] = {.lex_state = 95}, + [4546] = {.lex_state = 83}, + [4547] = {.lex_state = 83}, + [4548] = {.lex_state = 83}, + [4549] = {.lex_state = 83}, + [4550] = {.lex_state = 83}, + [4551] = {.lex_state = 83}, + [4552] = {.lex_state = 83}, [4553] = {.lex_state = 95}, [4554] = {.lex_state = 95}, [4555] = {.lex_state = 83}, - [4556] = {.lex_state = 95}, + [4556] = {.lex_state = 83}, [4557] = {.lex_state = 95}, [4558] = {.lex_state = 95}, [4559] = {.lex_state = 95}, @@ -19350,28 +19357,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4587] = {.lex_state = 95}, [4588] = {.lex_state = 95}, [4589] = {.lex_state = 95}, - [4590] = {.lex_state = 81}, + [4590] = {.lex_state = 95}, [4591] = {.lex_state = 95}, - [4592] = {.lex_state = 81}, - [4593] = {.lex_state = 81}, - [4594] = {.lex_state = 81}, - [4595] = {.lex_state = 81}, - [4596] = {.lex_state = 81}, - [4597] = {.lex_state = 81}, - [4598] = {.lex_state = 81}, - [4599] = {.lex_state = 81}, - [4600] = {.lex_state = 81}, - [4601] = {.lex_state = 81}, - [4602] = {.lex_state = 81}, - [4603] = {.lex_state = 81}, - [4604] = {.lex_state = 81}, - [4605] = {.lex_state = 81}, - [4606] = {.lex_state = 81}, - [4607] = {.lex_state = 81}, - [4608] = {.lex_state = 81}, - [4609] = {.lex_state = 81}, + [4592] = {.lex_state = 95}, + [4593] = {.lex_state = 95}, + [4594] = {.lex_state = 95}, + [4595] = {.lex_state = 95}, + [4596] = {.lex_state = 95}, + [4597] = {.lex_state = 95}, + [4598] = {.lex_state = 95}, + [4599] = {.lex_state = 95}, + [4600] = {.lex_state = 95}, + [4601] = {.lex_state = 95}, + [4602] = {.lex_state = 95}, + [4603] = {.lex_state = 95}, + [4604] = {.lex_state = 95}, + [4605] = {.lex_state = 95}, + [4606] = {.lex_state = 95}, + [4607] = {.lex_state = 95}, + [4608] = {.lex_state = 95}, + [4609] = {.lex_state = 95}, [4610] = {.lex_state = 81}, - [4611] = {.lex_state = 81}, + [4611] = {.lex_state = 95}, [4612] = {.lex_state = 81}, [4613] = {.lex_state = 81}, [4614] = {.lex_state = 81}, @@ -19386,90 +19393,90 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4623] = {.lex_state = 81}, [4624] = {.lex_state = 81}, [4625] = {.lex_state = 81}, - [4626] = {.lex_state = 85}, - [4627] = {.lex_state = 95}, - [4628] = {.lex_state = 47}, - [4629] = {.lex_state = 85}, - [4630] = {.lex_state = 85}, - [4631] = {.lex_state = 85}, - [4632] = {.lex_state = 85}, - [4633] = {.lex_state = 85}, - [4634] = {.lex_state = 85}, - [4635] = {.lex_state = 85}, - [4636] = {.lex_state = 85}, - [4637] = {.lex_state = 85}, - [4638] = {.lex_state = 85}, - [4639] = {.lex_state = 85}, - [4640] = {.lex_state = 85}, - [4641] = {.lex_state = 85}, - [4642] = {.lex_state = 85}, + [4626] = {.lex_state = 81}, + [4627] = {.lex_state = 81}, + [4628] = {.lex_state = 81}, + [4629] = {.lex_state = 81}, + [4630] = {.lex_state = 81}, + [4631] = {.lex_state = 81}, + [4632] = {.lex_state = 81}, + [4633] = {.lex_state = 81}, + [4634] = {.lex_state = 81}, + [4635] = {.lex_state = 81}, + [4636] = {.lex_state = 81}, + [4637] = {.lex_state = 81}, + [4638] = {.lex_state = 81}, + [4639] = {.lex_state = 81}, + [4640] = {.lex_state = 81}, + [4641] = {.lex_state = 81}, + [4642] = {.lex_state = 81}, [4643] = {.lex_state = 85}, - [4644] = {.lex_state = 85}, - [4645] = {.lex_state = 85}, - [4646] = {.lex_state = 85}, - [4647] = {.lex_state = 85}, + [4644] = {.lex_state = 81}, + [4645] = {.lex_state = 81}, + [4646] = {.lex_state = 81}, + [4647] = {.lex_state = 95}, [4648] = {.lex_state = 85}, - [4649] = {.lex_state = 85}, + [4649] = {.lex_state = 47}, [4650] = {.lex_state = 85}, [4651] = {.lex_state = 85}, - [4652] = {.lex_state = 47}, - [4653] = {.lex_state = 47}, - [4654] = {.lex_state = 47}, - [4655] = {.lex_state = 47}, - [4656] = {.lex_state = 47}, - [4657] = {.lex_state = 47}, - [4658] = {.lex_state = 47}, - [4659] = {.lex_state = 47}, - [4660] = {.lex_state = 47}, - [4661] = {.lex_state = 47}, + [4652] = {.lex_state = 85}, + [4653] = {.lex_state = 85}, + [4654] = {.lex_state = 85}, + [4655] = {.lex_state = 85}, + [4656] = {.lex_state = 85}, + [4657] = {.lex_state = 85}, + [4658] = {.lex_state = 85}, + [4659] = {.lex_state = 85}, + [4660] = {.lex_state = 85}, + [4661] = {.lex_state = 85}, [4662] = {.lex_state = 85}, - [4663] = {.lex_state = 47}, - [4664] = {.lex_state = 47}, - [4665] = {.lex_state = 47}, - [4666] = {.lex_state = 47}, - [4667] = {.lex_state = 47}, - [4668] = {.lex_state = 47}, - [4669] = {.lex_state = 47}, - [4670] = {.lex_state = 47}, - [4671] = {.lex_state = 47}, - [4672] = {.lex_state = 47}, + [4663] = {.lex_state = 85}, + [4664] = {.lex_state = 85}, + [4665] = {.lex_state = 85}, + [4666] = {.lex_state = 85}, + [4667] = {.lex_state = 85}, + [4668] = {.lex_state = 85}, + [4669] = {.lex_state = 85}, + [4670] = {.lex_state = 85}, + [4671] = {.lex_state = 85}, + [4672] = {.lex_state = 85}, [4673] = {.lex_state = 47}, [4674] = {.lex_state = 47}, [4675] = {.lex_state = 47}, - [4676] = {.lex_state = 85}, + [4676] = {.lex_state = 47}, [4677] = {.lex_state = 47}, [4678] = {.lex_state = 47}, [4679] = {.lex_state = 47}, [4680] = {.lex_state = 47}, [4681] = {.lex_state = 47}, - [4682] = {.lex_state = 88}, - [4683] = {.lex_state = 88}, - [4684] = {.lex_state = 87}, - [4685] = {.lex_state = 87}, - [4686] = {.lex_state = 88}, - [4687] = {.lex_state = 88}, - [4688] = {.lex_state = 88}, - [4689] = {.lex_state = 88}, - [4690] = {.lex_state = 95}, - [4691] = {.lex_state = 95}, - [4692] = {.lex_state = 95}, - [4693] = {.lex_state = 95}, - [4694] = {.lex_state = 95}, - [4695] = {.lex_state = 95}, - [4696] = {.lex_state = 95}, - [4697] = {.lex_state = 95}, - [4698] = {.lex_state = 95}, - [4699] = {.lex_state = 95}, - [4700] = {.lex_state = 95}, - [4701] = {.lex_state = 95}, - [4702] = {.lex_state = 95}, - [4703] = {.lex_state = 95}, - [4704] = {.lex_state = 95}, - [4705] = {.lex_state = 95}, - [4706] = {.lex_state = 95}, - [4707] = {.lex_state = 95}, - [4708] = {.lex_state = 95}, - [4709] = {.lex_state = 95}, + [4682] = {.lex_state = 47}, + [4683] = {.lex_state = 47}, + [4684] = {.lex_state = 47}, + [4685] = {.lex_state = 47}, + [4686] = {.lex_state = 47}, + [4687] = {.lex_state = 47}, + [4688] = {.lex_state = 47}, + [4689] = {.lex_state = 47}, + [4690] = {.lex_state = 47}, + [4691] = {.lex_state = 47}, + [4692] = {.lex_state = 47}, + [4693] = {.lex_state = 47}, + [4694] = {.lex_state = 85}, + [4695] = {.lex_state = 47}, + [4696] = {.lex_state = 47}, + [4697] = {.lex_state = 47}, + [4698] = {.lex_state = 47}, + [4699] = {.lex_state = 47}, + [4700] = {.lex_state = 47}, + [4701] = {.lex_state = 47}, + [4702] = {.lex_state = 88}, + [4703] = {.lex_state = 88}, + [4704] = {.lex_state = 88}, + [4705] = {.lex_state = 88}, + [4706] = {.lex_state = 87}, + [4707] = {.lex_state = 87}, + [4708] = {.lex_state = 88}, + [4709] = {.lex_state = 88}, [4710] = {.lex_state = 95}, [4711] = {.lex_state = 95}, [4712] = {.lex_state = 95}, @@ -19479,220 +19486,220 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4716] = {.lex_state = 95}, [4717] = {.lex_state = 95}, [4718] = {.lex_state = 95}, - [4719] = {.lex_state = 88}, + [4719] = {.lex_state = 95}, [4720] = {.lex_state = 95}, [4721] = {.lex_state = 95}, - [4722] = {.lex_state = 88}, - [4723] = {.lex_state = 88}, - [4724] = {.lex_state = 477}, - [4725] = {.lex_state = 477}, - [4726] = {.lex_state = 89}, - [4727] = {.lex_state = 477}, - [4728] = {.lex_state = 89}, - [4729] = {.lex_state = 477}, + [4722] = {.lex_state = 95}, + [4723] = {.lex_state = 95}, + [4724] = {.lex_state = 95}, + [4725] = {.lex_state = 95}, + [4726] = {.lex_state = 95}, + [4727] = {.lex_state = 95}, + [4728] = {.lex_state = 95}, + [4729] = {.lex_state = 95}, [4730] = {.lex_state = 95}, - [4731] = {.lex_state = 477}, - [4732] = {.lex_state = 477}, - [4733] = {.lex_state = 477}, + [4731] = {.lex_state = 95}, + [4732] = {.lex_state = 95}, + [4733] = {.lex_state = 95}, [4734] = {.lex_state = 95}, - [4735] = {.lex_state = 477}, - [4736] = {.lex_state = 477}, - [4737] = {.lex_state = 477}, - [4738] = {.lex_state = 477}, - [4739] = {.lex_state = 95}, - [4740] = {.lex_state = 477}, - [4741] = {.lex_state = 477}, - [4742] = {.lex_state = 477}, - [4743] = {.lex_state = 477}, - [4744] = {.lex_state = 95}, - [4745] = {.lex_state = 95}, - [4746] = {.lex_state = 95}, + [4735] = {.lex_state = 95}, + [4736] = {.lex_state = 95}, + [4737] = {.lex_state = 95}, + [4738] = {.lex_state = 95}, + [4739] = {.lex_state = 88}, + [4740] = {.lex_state = 95}, + [4741] = {.lex_state = 88}, + [4742] = {.lex_state = 88}, + [4743] = {.lex_state = 95}, + [4744] = {.lex_state = 477}, + [4745] = {.lex_state = 477}, + [4746] = {.lex_state = 89}, [4747] = {.lex_state = 477}, - [4748] = {.lex_state = 77}, - [4749] = {.lex_state = 95}, - [4750] = {.lex_state = 95}, + [4748] = {.lex_state = 89}, + [4749] = {.lex_state = 477}, + [4750] = {.lex_state = 477}, [4751] = {.lex_state = 477}, [4752] = {.lex_state = 95}, - [4753] = {.lex_state = 95}, + [4753] = {.lex_state = 477}, [4754] = {.lex_state = 477}, - [4755] = {.lex_state = 477}, - [4756] = {.lex_state = 77}, + [4755] = {.lex_state = 95}, + [4756] = {.lex_state = 477}, [4757] = {.lex_state = 95}, - [4758] = {.lex_state = 95}, + [4758] = {.lex_state = 477}, [4759] = {.lex_state = 95}, - [4760] = {.lex_state = 77}, + [4760] = {.lex_state = 477}, [4761] = {.lex_state = 95}, [4762] = {.lex_state = 95}, - [4763] = {.lex_state = 95}, + [4763] = {.lex_state = 477}, [4764] = {.lex_state = 477}, - [4765] = {.lex_state = 95}, - [4766] = {.lex_state = 95}, - [4767] = {.lex_state = 95}, + [4765] = {.lex_state = 477}, + [4766] = {.lex_state = 477}, + [4767] = {.lex_state = 477}, [4768] = {.lex_state = 95}, [4769] = {.lex_state = 95}, - [4770] = {.lex_state = 95}, - [4771] = {.lex_state = 95}, - [4772] = {.lex_state = 477}, - [4773] = {.lex_state = 477}, + [4770] = {.lex_state = 477}, + [4771] = {.lex_state = 477}, + [4772] = {.lex_state = 95}, + [4773] = {.lex_state = 77}, [4774] = {.lex_state = 95}, - [4775] = {.lex_state = 95}, + [4775] = {.lex_state = 477}, [4776] = {.lex_state = 477}, - [4777] = {.lex_state = 477}, - [4778] = {.lex_state = 477}, - [4779] = {.lex_state = 477}, + [4777] = {.lex_state = 95}, + [4778] = {.lex_state = 77}, + [4779] = {.lex_state = 95}, [4780] = {.lex_state = 95}, - [4781] = {.lex_state = 477}, + [4781] = {.lex_state = 95}, [4782] = {.lex_state = 477}, - [4783] = {.lex_state = 477}, + [4783] = {.lex_state = 77}, [4784] = {.lex_state = 95}, - [4785] = {.lex_state = 477}, - [4786] = {.lex_state = 477}, - [4787] = {.lex_state = 477}, + [4785] = {.lex_state = 95}, + [4786] = {.lex_state = 95}, + [4787] = {.lex_state = 95}, [4788] = {.lex_state = 477}, [4789] = {.lex_state = 95}, - [4790] = {.lex_state = 95}, - [4791] = {.lex_state = 95}, + [4790] = {.lex_state = 477}, + [4791] = {.lex_state = 477}, [4792] = {.lex_state = 477}, - [4793] = {.lex_state = 77}, - [4794] = {.lex_state = 477}, - [4795] = {.lex_state = 95}, + [4793] = {.lex_state = 477}, + [4794] = {.lex_state = 95}, + [4795] = {.lex_state = 477}, [4796] = {.lex_state = 477}, [4797] = {.lex_state = 477}, - [4798] = {.lex_state = 477}, + [4798] = {.lex_state = 95}, [4799] = {.lex_state = 477}, [4800] = {.lex_state = 95}, - [4801] = {.lex_state = 95}, - [4802] = {.lex_state = 477}, - [4803] = {.lex_state = 477}, + [4801] = {.lex_state = 477}, + [4802] = {.lex_state = 95}, + [4803] = {.lex_state = 95}, [4804] = {.lex_state = 95}, [4805] = {.lex_state = 95}, - [4806] = {.lex_state = 95}, + [4806] = {.lex_state = 477}, [4807] = {.lex_state = 95}, - [4808] = {.lex_state = 477}, - [4809] = {.lex_state = 95}, - [4810] = {.lex_state = 477}, - [4811] = {.lex_state = 95}, + [4808] = {.lex_state = 95}, + [4809] = {.lex_state = 477}, + [4810] = {.lex_state = 95}, + [4811] = {.lex_state = 477}, [4812] = {.lex_state = 477}, [4813] = {.lex_state = 95}, [4814] = {.lex_state = 95}, [4815] = {.lex_state = 95}, [4816] = {.lex_state = 95}, [4817] = {.lex_state = 477}, - [4818] = {.lex_state = 54}, + [4818] = {.lex_state = 95}, [4819] = {.lex_state = 477}, - [4820] = {.lex_state = 56}, - [4821] = {.lex_state = 95}, - [4822] = {.lex_state = 95}, - [4823] = {.lex_state = 95}, - [4824] = {.lex_state = 95}, - [4825] = {.lex_state = 95}, - [4826] = {.lex_state = 477}, - [4827] = {.lex_state = 95}, + [4820] = {.lex_state = 95}, + [4821] = {.lex_state = 477}, + [4822] = {.lex_state = 477}, + [4823] = {.lex_state = 77}, + [4824] = {.lex_state = 477}, + [4825] = {.lex_state = 477}, + [4826] = {.lex_state = 95}, + [4827] = {.lex_state = 477}, [4828] = {.lex_state = 95}, - [4829] = {.lex_state = 54}, - [4830] = {.lex_state = 54}, - [4831] = {.lex_state = 54}, - [4832] = {.lex_state = 95}, - [4833] = {.lex_state = 95}, - [4834] = {.lex_state = 54}, - [4835] = {.lex_state = 95}, - [4836] = {.lex_state = 56}, + [4829] = {.lex_state = 477}, + [4830] = {.lex_state = 95}, + [4831] = {.lex_state = 95}, + [4832] = {.lex_state = 477}, + [4833] = {.lex_state = 477}, + [4834] = {.lex_state = 95}, + [4835] = {.lex_state = 54}, + [4836] = {.lex_state = 477}, [4837] = {.lex_state = 95}, - [4838] = {.lex_state = 54}, + [4838] = {.lex_state = 95}, [4839] = {.lex_state = 95}, [4840] = {.lex_state = 54}, - [4841] = {.lex_state = 477}, + [4841] = {.lex_state = 56}, [4842] = {.lex_state = 54}, [4843] = {.lex_state = 95}, - [4844] = {.lex_state = 56}, - [4845] = {.lex_state = 477}, + [4844] = {.lex_state = 54}, + [4845] = {.lex_state = 56}, [4846] = {.lex_state = 95}, [4847] = {.lex_state = 95}, - [4848] = {.lex_state = 54}, + [4848] = {.lex_state = 95}, [4849] = {.lex_state = 95}, - [4850] = {.lex_state = 95}, + [4850] = {.lex_state = 54}, [4851] = {.lex_state = 95}, - [4852] = {.lex_state = 54}, - [4853] = {.lex_state = 56}, + [4852] = {.lex_state = 56}, + [4853] = {.lex_state = 95}, [4854] = {.lex_state = 95}, - [4855] = {.lex_state = 54}, - [4856] = {.lex_state = 477}, + [4855] = {.lex_state = 95}, + [4856] = {.lex_state = 56}, [4857] = {.lex_state = 54}, - [4858] = {.lex_state = 56}, - [4859] = {.lex_state = 95}, - [4860] = {.lex_state = 54}, - [4861] = {.lex_state = 54}, - [4862] = {.lex_state = 56}, - [4863] = {.lex_state = 54}, - [4864] = {.lex_state = 56}, + [4858] = {.lex_state = 54}, + [4859] = {.lex_state = 56}, + [4860] = {.lex_state = 95}, + [4861] = {.lex_state = 477}, + [4862] = {.lex_state = 477}, + [4863] = {.lex_state = 95}, + [4864] = {.lex_state = 95}, [4865] = {.lex_state = 95}, - [4866] = {.lex_state = 95}, + [4866] = {.lex_state = 477}, [4867] = {.lex_state = 95}, - [4868] = {.lex_state = 95}, - [4869] = {.lex_state = 95}, - [4870] = {.lex_state = 95}, + [4868] = {.lex_state = 54}, + [4869] = {.lex_state = 477}, + [4870] = {.lex_state = 477}, [4871] = {.lex_state = 95}, - [4872] = {.lex_state = 95}, - [4873] = {.lex_state = 477}, + [4872] = {.lex_state = 56}, + [4873] = {.lex_state = 95}, [4874] = {.lex_state = 95}, - [4875] = {.lex_state = 477}, - [4876] = {.lex_state = 95}, - [4877] = {.lex_state = 477}, + [4875] = {.lex_state = 95}, + [4876] = {.lex_state = 54}, + [4877] = {.lex_state = 56}, [4878] = {.lex_state = 477}, - [4879] = {.lex_state = 477}, - [4880] = {.lex_state = 477}, - [4881] = {.lex_state = 477}, - [4882] = {.lex_state = 477}, - [4883] = {.lex_state = 95}, - [4884] = {.lex_state = 58}, - [4885] = {.lex_state = 477}, + [4879] = {.lex_state = 95}, + [4880] = {.lex_state = 54}, + [4881] = {.lex_state = 54}, + [4882] = {.lex_state = 95}, + [4883] = {.lex_state = 54}, + [4884] = {.lex_state = 54}, + [4885] = {.lex_state = 95}, [4886] = {.lex_state = 95}, - [4887] = {.lex_state = 477}, - [4888] = {.lex_state = 477}, - [4889] = {.lex_state = 477}, - [4890] = {.lex_state = 477}, - [4891] = {.lex_state = 477}, - [4892] = {.lex_state = 477}, - [4893] = {.lex_state = 47}, - [4894] = {.lex_state = 477}, - [4895] = {.lex_state = 477}, - [4896] = {.lex_state = 477}, + [4887] = {.lex_state = 95}, + [4888] = {.lex_state = 95}, + [4889] = {.lex_state = 54}, + [4890] = {.lex_state = 54}, + [4891] = {.lex_state = 95}, + [4892] = {.lex_state = 95}, + [4893] = {.lex_state = 95}, + [4894] = {.lex_state = 95}, + [4895] = {.lex_state = 95}, + [4896] = {.lex_state = 95}, [4897] = {.lex_state = 477}, [4898] = {.lex_state = 477}, [4899] = {.lex_state = 477}, - [4900] = {.lex_state = 477}, + [4900] = {.lex_state = 95}, [4901] = {.lex_state = 477}, [4902] = {.lex_state = 477}, [4903] = {.lex_state = 477}, - [4904] = {.lex_state = 95}, + [4904] = {.lex_state = 477}, [4905] = {.lex_state = 477}, [4906] = {.lex_state = 477}, - [4907] = {.lex_state = 91}, - [4908] = {.lex_state = 477}, - [4909] = {.lex_state = 477}, + [4907] = {.lex_state = 58}, + [4908] = {.lex_state = 95}, + [4909] = {.lex_state = 95}, [4910] = {.lex_state = 477}, [4911] = {.lex_state = 477}, - [4912] = {.lex_state = 91}, - [4913] = {.lex_state = 58}, + [4912] = {.lex_state = 477}, + [4913] = {.lex_state = 477}, [4914] = {.lex_state = 477}, - [4915] = {.lex_state = 95}, - [4916] = {.lex_state = 477}, - [4917] = {.lex_state = 95}, - [4918] = {.lex_state = 95}, + [4915] = {.lex_state = 477}, + [4916] = {.lex_state = 95}, + [4917] = {.lex_state = 47}, + [4918] = {.lex_state = 477}, [4919] = {.lex_state = 477}, [4920] = {.lex_state = 477}, [4921] = {.lex_state = 477}, - [4922] = {.lex_state = 95}, - [4923] = {.lex_state = 95}, + [4922] = {.lex_state = 477}, + [4923] = {.lex_state = 477}, [4924] = {.lex_state = 477}, [4925] = {.lex_state = 477}, [4926] = {.lex_state = 477}, - [4927] = {.lex_state = 477}, - [4928] = {.lex_state = 477}, + [4927] = {.lex_state = 95}, + [4928] = {.lex_state = 95}, [4929] = {.lex_state = 477}, [4930] = {.lex_state = 477}, [4931] = {.lex_state = 477}, - [4932] = {.lex_state = 477}, + [4932] = {.lex_state = 91}, [4933] = {.lex_state = 477}, [4934] = {.lex_state = 477}, [4935] = {.lex_state = 477}, @@ -19700,31 +19707,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4937] = {.lex_state = 477}, [4938] = {.lex_state = 477}, [4939] = {.lex_state = 95}, - [4940] = {.lex_state = 95}, + [4940] = {.lex_state = 477}, [4941] = {.lex_state = 477}, - [4942] = {.lex_state = 95}, - [4943] = {.lex_state = 477}, + [4942] = {.lex_state = 477}, + [4943] = {.lex_state = 95}, [4944] = {.lex_state = 477}, [4945] = {.lex_state = 477}, [4946] = {.lex_state = 477}, [4947] = {.lex_state = 477}, [4948] = {.lex_state = 477}, - [4949] = {.lex_state = 477}, + [4949] = {.lex_state = 95}, [4950] = {.lex_state = 477}, - [4951] = {.lex_state = 477}, - [4952] = {.lex_state = 477}, - [4953] = {.lex_state = 95}, - [4954] = {.lex_state = 95}, - [4955] = {.lex_state = 95}, - [4956] = {.lex_state = 95}, - [4957] = {.lex_state = 95}, - [4958] = {.lex_state = 95}, - [4959] = {.lex_state = 477}, + [4951] = {.lex_state = 95}, + [4952] = {.lex_state = 95}, + [4953] = {.lex_state = 477}, + [4954] = {.lex_state = 477}, + [4955] = {.lex_state = 477}, + [4956] = {.lex_state = 477}, + [4957] = {.lex_state = 477}, + [4958] = {.lex_state = 477}, + [4959] = {.lex_state = 58}, [4960] = {.lex_state = 477}, - [4961] = {.lex_state = 477}, - [4962] = {.lex_state = 95}, + [4961] = {.lex_state = 95}, + [4962] = {.lex_state = 477}, [4963] = {.lex_state = 477}, - [4964] = {.lex_state = 477}, + [4964] = {.lex_state = 95}, [4965] = {.lex_state = 477}, [4966] = {.lex_state = 95}, [4967] = {.lex_state = 477}, @@ -19733,40 +19740,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4970] = {.lex_state = 477}, [4971] = {.lex_state = 477}, [4972] = {.lex_state = 477}, - [4973] = {.lex_state = 47}, + [4973] = {.lex_state = 477}, [4974] = {.lex_state = 477}, [4975] = {.lex_state = 477}, [4976] = {.lex_state = 477}, [4977] = {.lex_state = 477}, [4978] = {.lex_state = 477}, - [4979] = {.lex_state = 47}, - [4980] = {.lex_state = 95}, + [4979] = {.lex_state = 477}, + [4980] = {.lex_state = 477}, [4981] = {.lex_state = 477}, [4982] = {.lex_state = 477}, - [4983] = {.lex_state = 95}, + [4983] = {.lex_state = 477}, [4984] = {.lex_state = 95}, - [4985] = {.lex_state = 477}, + [4985] = {.lex_state = 95}, [4986] = {.lex_state = 477}, [4987] = {.lex_state = 477}, [4988] = {.lex_state = 477}, [4989] = {.lex_state = 477}, [4990] = {.lex_state = 477}, - [4991] = {.lex_state = 477}, - [4992] = {.lex_state = 477}, + [4991] = {.lex_state = 91}, + [4992] = {.lex_state = 95}, [4993] = {.lex_state = 477}, - [4994] = {.lex_state = 477}, + [4994] = {.lex_state = 47}, [4995] = {.lex_state = 477}, [4996] = {.lex_state = 477}, - [4997] = {.lex_state = 95}, + [4997] = {.lex_state = 477}, [4998] = {.lex_state = 477}, [4999] = {.lex_state = 477}, [5000] = {.lex_state = 477}, [5001] = {.lex_state = 477}, [5002] = {.lex_state = 477}, - [5003] = {.lex_state = 477}, + [5003] = {.lex_state = 95}, [5004] = {.lex_state = 477}, - [5005] = {.lex_state = 477}, - [5006] = {.lex_state = 477}, + [5005] = {.lex_state = 95}, + [5006] = {.lex_state = 95}, [5007] = {.lex_state = 477}, [5008] = {.lex_state = 477}, [5009] = {.lex_state = 477}, @@ -19775,260 +19782,260 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5012] = {.lex_state = 477}, [5013] = {.lex_state = 477}, [5014] = {.lex_state = 477}, - [5015] = {.lex_state = 95}, + [5015] = {.lex_state = 477}, [5016] = {.lex_state = 477}, [5017] = {.lex_state = 477}, - [5018] = {.lex_state = 477}, - [5019] = {.lex_state = 477}, - [5020] = {.lex_state = 477}, + [5018] = {.lex_state = 47}, + [5019] = {.lex_state = 95}, + [5020] = {.lex_state = 95}, [5021] = {.lex_state = 477}, [5022] = {.lex_state = 477}, [5023] = {.lex_state = 477}, [5024] = {.lex_state = 477}, [5025] = {.lex_state = 477}, - [5026] = {.lex_state = 57}, - [5027] = {.lex_state = 77}, + [5026] = {.lex_state = 477}, + [5027] = {.lex_state = 477}, [5028] = {.lex_state = 477}, - [5029] = {.lex_state = 95}, + [5029] = {.lex_state = 477}, [5030] = {.lex_state = 477}, - [5031] = {.lex_state = 477}, + [5031] = {.lex_state = 95}, [5032] = {.lex_state = 477}, - [5033] = {.lex_state = 77}, - [5034] = {.lex_state = 77}, + [5033] = {.lex_state = 95}, + [5034] = {.lex_state = 477}, [5035] = {.lex_state = 477}, [5036] = {.lex_state = 477}, [5037] = {.lex_state = 477}, - [5038] = {.lex_state = 57}, - [5039] = {.lex_state = 95}, - [5040] = {.lex_state = 57}, + [5038] = {.lex_state = 477}, + [5039] = {.lex_state = 477}, + [5040] = {.lex_state = 477}, [5041] = {.lex_state = 477}, [5042] = {.lex_state = 477}, - [5043] = {.lex_state = 95}, - [5044] = {.lex_state = 95}, + [5043] = {.lex_state = 477}, + [5044] = {.lex_state = 477}, [5045] = {.lex_state = 477}, [5046] = {.lex_state = 477}, [5047] = {.lex_state = 95}, - [5048] = {.lex_state = 477}, - [5049] = {.lex_state = 57}, - [5050] = {.lex_state = 77}, + [5048] = {.lex_state = 95}, + [5049] = {.lex_state = 95}, + [5050] = {.lex_state = 477}, [5051] = {.lex_state = 477}, - [5052] = {.lex_state = 95}, - [5053] = {.lex_state = 77}, - [5054] = {.lex_state = 77}, - [5055] = {.lex_state = 77}, - [5056] = {.lex_state = 95}, - [5057] = {.lex_state = 77}, + [5052] = {.lex_state = 57}, + [5053] = {.lex_state = 477}, + [5054] = {.lex_state = 477}, + [5055] = {.lex_state = 58}, + [5056] = {.lex_state = 57}, + [5057] = {.lex_state = 477}, [5058] = {.lex_state = 477}, [5059] = {.lex_state = 477}, [5060] = {.lex_state = 477}, - [5061] = {.lex_state = 77}, + [5061] = {.lex_state = 57}, [5062] = {.lex_state = 57}, - [5063] = {.lex_state = 477}, - [5064] = {.lex_state = 57}, + [5063] = {.lex_state = 95}, + [5064] = {.lex_state = 477}, [5065] = {.lex_state = 477}, - [5066] = {.lex_state = 477}, - [5067] = {.lex_state = 95}, - [5068] = {.lex_state = 477}, - [5069] = {.lex_state = 77}, - [5070] = {.lex_state = 77}, - [5071] = {.lex_state = 77}, - [5072] = {.lex_state = 95}, - [5073] = {.lex_state = 77}, - [5074] = {.lex_state = 77}, - [5075] = {.lex_state = 95}, - [5076] = {.lex_state = 77}, - [5077] = {.lex_state = 477}, - [5078] = {.lex_state = 57}, - [5079] = {.lex_state = 477}, - [5080] = {.lex_state = 95}, - [5081] = {.lex_state = 477}, - [5082] = {.lex_state = 77}, - [5083] = {.lex_state = 477}, + [5066] = {.lex_state = 57}, + [5067] = {.lex_state = 477}, + [5068] = {.lex_state = 77}, + [5069] = {.lex_state = 477}, + [5070] = {.lex_state = 477}, + [5071] = {.lex_state = 477}, + [5072] = {.lex_state = 77}, + [5073] = {.lex_state = 95}, + [5074] = {.lex_state = 477}, + [5075] = {.lex_state = 77}, + [5076] = {.lex_state = 477}, + [5077] = {.lex_state = 95}, + [5078] = {.lex_state = 95}, + [5079] = {.lex_state = 95}, + [5080] = {.lex_state = 477}, + [5081] = {.lex_state = 77}, + [5082] = {.lex_state = 477}, + [5083] = {.lex_state = 77}, [5084] = {.lex_state = 95}, - [5085] = {.lex_state = 477}, - [5086] = {.lex_state = 477}, - [5087] = {.lex_state = 477}, + [5085] = {.lex_state = 77}, + [5086] = {.lex_state = 95}, + [5087] = {.lex_state = 95}, [5088] = {.lex_state = 477}, - [5089] = {.lex_state = 477}, - [5090] = {.lex_state = 77}, - [5091] = {.lex_state = 95}, - [5092] = {.lex_state = 95}, - [5093] = {.lex_state = 77}, + [5089] = {.lex_state = 77}, + [5090] = {.lex_state = 95}, + [5091] = {.lex_state = 477}, + [5092] = {.lex_state = 477}, + [5093] = {.lex_state = 57}, [5094] = {.lex_state = 77}, - [5095] = {.lex_state = 95}, - [5096] = {.lex_state = 57}, - [5097] = {.lex_state = 77}, - [5098] = {.lex_state = 477}, - [5099] = {.lex_state = 477}, - [5100] = {.lex_state = 77}, - [5101] = {.lex_state = 477}, - [5102] = {.lex_state = 477}, + [5095] = {.lex_state = 77}, + [5096] = {.lex_state = 77}, + [5097] = {.lex_state = 95}, + [5098] = {.lex_state = 77}, + [5099] = {.lex_state = 95}, + [5100] = {.lex_state = 477}, + [5101] = {.lex_state = 95}, + [5102] = {.lex_state = 77}, [5103] = {.lex_state = 95}, - [5104] = {.lex_state = 95}, - [5105] = {.lex_state = 77}, + [5104] = {.lex_state = 57}, + [5105] = {.lex_state = 477}, [5106] = {.lex_state = 477}, [5107] = {.lex_state = 477}, - [5108] = {.lex_state = 477}, - [5109] = {.lex_state = 477}, - [5110] = {.lex_state = 477}, - [5111] = {.lex_state = 95}, - [5112] = {.lex_state = 77}, - [5113] = {.lex_state = 77}, + [5108] = {.lex_state = 95}, + [5109] = {.lex_state = 95}, + [5110] = {.lex_state = 95}, + [5111] = {.lex_state = 77}, + [5112] = {.lex_state = 477}, + [5113] = {.lex_state = 477}, [5114] = {.lex_state = 477}, - [5115] = {.lex_state = 58}, - [5116] = {.lex_state = 77}, - [5117] = {.lex_state = 58}, + [5115] = {.lex_state = 477}, + [5116] = {.lex_state = 477}, + [5117] = {.lex_state = 95}, [5118] = {.lex_state = 477}, - [5119] = {.lex_state = 477}, + [5119] = {.lex_state = 95}, [5120] = {.lex_state = 95}, [5121] = {.lex_state = 57}, - [5122] = {.lex_state = 77}, - [5123] = {.lex_state = 477}, + [5122] = {.lex_state = 95}, + [5123] = {.lex_state = 95}, [5124] = {.lex_state = 77}, - [5125] = {.lex_state = 77}, - [5126] = {.lex_state = 57}, - [5127] = {.lex_state = 58}, - [5128] = {.lex_state = 77}, - [5129] = {.lex_state = 95}, - [5130] = {.lex_state = 77}, - [5131] = {.lex_state = 95}, - [5132] = {.lex_state = 95}, - [5133] = {.lex_state = 95}, - [5134] = {.lex_state = 77}, + [5125] = {.lex_state = 477}, + [5126] = {.lex_state = 77}, + [5127] = {.lex_state = 477}, + [5128] = {.lex_state = 95}, + [5129] = {.lex_state = 477}, + [5130] = {.lex_state = 57}, + [5131] = {.lex_state = 77}, + [5132] = {.lex_state = 77}, + [5133] = {.lex_state = 477}, + [5134] = {.lex_state = 95}, [5135] = {.lex_state = 95}, - [5136] = {.lex_state = 95}, - [5137] = {.lex_state = 477}, + [5136] = {.lex_state = 77}, + [5137] = {.lex_state = 77}, [5138] = {.lex_state = 477}, - [5139] = {.lex_state = 77}, - [5140] = {.lex_state = 477}, - [5141] = {.lex_state = 477}, - [5142] = {.lex_state = 477}, + [5139] = {.lex_state = 57}, + [5140] = {.lex_state = 95}, + [5141] = {.lex_state = 77}, + [5142] = {.lex_state = 57}, [5143] = {.lex_state = 477}, [5144] = {.lex_state = 477}, [5145] = {.lex_state = 477}, [5146] = {.lex_state = 477}, [5147] = {.lex_state = 477}, - [5148] = {.lex_state = 77}, - [5149] = {.lex_state = 57}, - [5150] = {.lex_state = 95}, - [5151] = {.lex_state = 95}, - [5152] = {.lex_state = 477}, - [5153] = {.lex_state = 77}, + [5148] = {.lex_state = 477}, + [5149] = {.lex_state = 477}, + [5150] = {.lex_state = 477}, + [5151] = {.lex_state = 77}, + [5152] = {.lex_state = 77}, + [5153] = {.lex_state = 95}, [5154] = {.lex_state = 95}, - [5155] = {.lex_state = 95}, - [5156] = {.lex_state = 95}, - [5157] = {.lex_state = 95}, - [5158] = {.lex_state = 477}, - [5159] = {.lex_state = 95}, + [5155] = {.lex_state = 477}, + [5156] = {.lex_state = 477}, + [5157] = {.lex_state = 477}, + [5158] = {.lex_state = 77}, + [5159] = {.lex_state = 77}, [5160] = {.lex_state = 477}, - [5161] = {.lex_state = 95}, - [5162] = {.lex_state = 95}, + [5161] = {.lex_state = 77}, + [5162] = {.lex_state = 77}, [5163] = {.lex_state = 95}, - [5164] = {.lex_state = 95}, + [5164] = {.lex_state = 77}, [5165] = {.lex_state = 77}, - [5166] = {.lex_state = 95}, - [5167] = {.lex_state = 95}, - [5168] = {.lex_state = 95}, - [5169] = {.lex_state = 477}, - [5170] = {.lex_state = 477}, - [5171] = {.lex_state = 95}, - [5172] = {.lex_state = 477}, - [5173] = {.lex_state = 477}, - [5174] = {.lex_state = 477}, + [5166] = {.lex_state = 77}, + [5167] = {.lex_state = 477}, + [5168] = {.lex_state = 77}, + [5169] = {.lex_state = 77}, + [5170] = {.lex_state = 77}, + [5171] = {.lex_state = 77}, + [5172] = {.lex_state = 57}, + [5173] = {.lex_state = 95}, + [5174] = {.lex_state = 95}, [5175] = {.lex_state = 77}, - [5176] = {.lex_state = 57}, - [5177] = {.lex_state = 95}, + [5176] = {.lex_state = 477}, + [5177] = {.lex_state = 77}, [5178] = {.lex_state = 77}, - [5179] = {.lex_state = 77}, + [5179] = {.lex_state = 477}, [5180] = {.lex_state = 477}, - [5181] = {.lex_state = 58}, - [5182] = {.lex_state = 95}, - [5183] = {.lex_state = 477}, - [5184] = {.lex_state = 95}, + [5181] = {.lex_state = 477}, + [5182] = {.lex_state = 477}, + [5183] = {.lex_state = 77}, + [5184] = {.lex_state = 477}, [5185] = {.lex_state = 77}, - [5186] = {.lex_state = 77}, - [5187] = {.lex_state = 477}, - [5188] = {.lex_state = 95}, - [5189] = {.lex_state = 477}, - [5190] = {.lex_state = 477}, - [5191] = {.lex_state = 477}, - [5192] = {.lex_state = 477}, - [5193] = {.lex_state = 477}, + [5186] = {.lex_state = 477}, + [5187] = {.lex_state = 77}, + [5188] = {.lex_state = 477}, + [5189] = {.lex_state = 95}, + [5190] = {.lex_state = 95}, + [5191] = {.lex_state = 77}, + [5192] = {.lex_state = 95}, + [5193] = {.lex_state = 77}, [5194] = {.lex_state = 477}, [5195] = {.lex_state = 477}, - [5196] = {.lex_state = 477}, - [5197] = {.lex_state = 477}, - [5198] = {.lex_state = 477}, - [5199] = {.lex_state = 95}, - [5200] = {.lex_state = 77}, - [5201] = {.lex_state = 77}, - [5202] = {.lex_state = 77}, - [5203] = {.lex_state = 477}, - [5204] = {.lex_state = 77}, + [5196] = {.lex_state = 95}, + [5197] = {.lex_state = 58}, + [5198] = {.lex_state = 95}, + [5199] = {.lex_state = 58}, + [5200] = {.lex_state = 95}, + [5201] = {.lex_state = 477}, + [5202] = {.lex_state = 95}, + [5203] = {.lex_state = 77}, + [5204] = {.lex_state = 95}, [5205] = {.lex_state = 95}, - [5206] = {.lex_state = 77}, - [5207] = {.lex_state = 95}, + [5206] = {.lex_state = 477}, + [5207] = {.lex_state = 477}, [5208] = {.lex_state = 95}, [5209] = {.lex_state = 477}, [5210] = {.lex_state = 95}, [5211] = {.lex_state = 477}, - [5212] = {.lex_state = 57}, - [5213] = {.lex_state = 477}, + [5212] = {.lex_state = 477}, + [5213] = {.lex_state = 95}, [5214] = {.lex_state = 77}, - [5215] = {.lex_state = 95}, - [5216] = {.lex_state = 477}, + [5215] = {.lex_state = 477}, + [5216] = {.lex_state = 77}, [5217] = {.lex_state = 95}, [5218] = {.lex_state = 95}, [5219] = {.lex_state = 77}, - [5220] = {.lex_state = 77}, + [5220] = {.lex_state = 477}, [5221] = {.lex_state = 477}, [5222] = {.lex_state = 477}, - [5223] = {.lex_state = 95}, + [5223] = {.lex_state = 77}, [5224] = {.lex_state = 477}, - [5225] = {.lex_state = 477}, + [5225] = {.lex_state = 95}, [5226] = {.lex_state = 477}, - [5227] = {.lex_state = 77}, + [5227] = {.lex_state = 95}, [5228] = {.lex_state = 477}, [5229] = {.lex_state = 95}, - [5230] = {.lex_state = 95}, - [5231] = {.lex_state = 477}, + [5230] = {.lex_state = 477}, + [5231] = {.lex_state = 77}, [5232] = {.lex_state = 477}, - [5233] = {.lex_state = 477}, + [5233] = {.lex_state = 95}, [5234] = {.lex_state = 477}, [5235] = {.lex_state = 477}, - [5236] = {.lex_state = 77}, - [5237] = {.lex_state = 477}, + [5236] = {.lex_state = 477}, + [5237] = {.lex_state = 77}, [5238] = {.lex_state = 95}, [5239] = {.lex_state = 95}, - [5240] = {.lex_state = 77}, + [5240] = {.lex_state = 95}, [5241] = {.lex_state = 477}, - [5242] = {.lex_state = 95}, + [5242] = {.lex_state = 477}, [5243] = {.lex_state = 477}, - [5244] = {.lex_state = 477}, + [5244] = {.lex_state = 95}, [5245] = {.lex_state = 477}, - [5246] = {.lex_state = 95}, - [5247] = {.lex_state = 95}, - [5248] = {.lex_state = 477}, - [5249] = {.lex_state = 477}, - [5250] = {.lex_state = 477}, - [5251] = {.lex_state = 47}, - [5252] = {.lex_state = 95}, + [5246] = {.lex_state = 77}, + [5247] = {.lex_state = 477}, + [5248] = {.lex_state = 95}, + [5249] = {.lex_state = 57}, + [5250] = {.lex_state = 77}, + [5251] = {.lex_state = 477}, + [5252] = {.lex_state = 477}, [5253] = {.lex_state = 477}, - [5254] = {.lex_state = 477}, + [5254] = {.lex_state = 58}, [5255] = {.lex_state = 477}, - [5256] = {.lex_state = 477}, + [5256] = {.lex_state = 95}, [5257] = {.lex_state = 477}, [5258] = {.lex_state = 477}, - [5259] = {.lex_state = 80}, - [5260] = {.lex_state = 95}, - [5261] = {.lex_state = 80}, + [5259] = {.lex_state = 477}, + [5260] = {.lex_state = 477}, + [5261] = {.lex_state = 77}, [5262] = {.lex_state = 477}, [5263] = {.lex_state = 477}, - [5264] = {.lex_state = 47}, - [5265] = {.lex_state = 477}, + [5264] = {.lex_state = 95}, + [5265] = {.lex_state = 95}, [5266] = {.lex_state = 477}, [5267] = {.lex_state = 477}, - [5268] = {.lex_state = 95}, + [5268] = {.lex_state = 47}, [5269] = {.lex_state = 477}, [5270] = {.lex_state = 477}, [5271] = {.lex_state = 477}, @@ -20036,14 +20043,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5273] = {.lex_state = 477}, [5274] = {.lex_state = 477}, [5275] = {.lex_state = 477}, - [5276] = {.lex_state = 477}, + [5276] = {.lex_state = 47}, [5277] = {.lex_state = 477}, [5278] = {.lex_state = 477}, [5279] = {.lex_state = 477}, [5280] = {.lex_state = 477}, [5281] = {.lex_state = 477}, - [5282] = {.lex_state = 95}, - [5283] = {.lex_state = 477}, + [5282] = {.lex_state = 477}, + [5283] = {.lex_state = 47}, [5284] = {.lex_state = 477}, [5285] = {.lex_state = 477}, [5286] = {.lex_state = 477}, @@ -20051,12 +20058,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5288] = {.lex_state = 477}, [5289] = {.lex_state = 477}, [5290] = {.lex_state = 477}, - [5291] = {.lex_state = 477}, + [5291] = {.lex_state = 95}, [5292] = {.lex_state = 477}, [5293] = {.lex_state = 477}, [5294] = {.lex_state = 95}, [5295] = {.lex_state = 477}, - [5296] = {.lex_state = 95}, + [5296] = {.lex_state = 477}, [5297] = {.lex_state = 477}, [5298] = {.lex_state = 477}, [5299] = {.lex_state = 477}, @@ -20074,16 +20081,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5311] = {.lex_state = 477}, [5312] = {.lex_state = 477}, [5313] = {.lex_state = 477}, - [5314] = {.lex_state = 95}, - [5315] = {.lex_state = 477}, - [5316] = {.lex_state = 477}, - [5317] = {.lex_state = 80}, + [5314] = {.lex_state = 477}, + [5315] = {.lex_state = 80}, + [5316] = {.lex_state = 95}, + [5317] = {.lex_state = 477}, [5318] = {.lex_state = 477}, [5319] = {.lex_state = 477}, - [5320] = {.lex_state = 477}, + [5320] = {.lex_state = 80}, [5321] = {.lex_state = 477}, [5322] = {.lex_state = 477}, - [5323] = {.lex_state = 95}, + [5323] = {.lex_state = 477}, [5324] = {.lex_state = 477}, [5325] = {.lex_state = 477}, [5326] = {.lex_state = 477}, @@ -20091,47 +20098,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5328] = {.lex_state = 477}, [5329] = {.lex_state = 477}, [5330] = {.lex_state = 477}, - [5331] = {.lex_state = 477}, - [5332] = {.lex_state = 95}, - [5333] = {.lex_state = 95}, + [5331] = {.lex_state = 95}, + [5332] = {.lex_state = 477}, + [5333] = {.lex_state = 477}, [5334] = {.lex_state = 477}, [5335] = {.lex_state = 477}, [5336] = {.lex_state = 477}, [5337] = {.lex_state = 477}, [5338] = {.lex_state = 477}, [5339] = {.lex_state = 477}, - [5340] = {.lex_state = 80}, + [5340] = {.lex_state = 477}, [5341] = {.lex_state = 477}, [5342] = {.lex_state = 477}, [5343] = {.lex_state = 477}, - [5344] = {.lex_state = 477}, - [5345] = {.lex_state = 47}, + [5344] = {.lex_state = 80}, + [5345] = {.lex_state = 477}, [5346] = {.lex_state = 477}, [5347] = {.lex_state = 477}, [5348] = {.lex_state = 477}, [5349] = {.lex_state = 477}, - [5350] = {.lex_state = 477}, + [5350] = {.lex_state = 80}, [5351] = {.lex_state = 477}, [5352] = {.lex_state = 477}, - [5353] = {.lex_state = 80}, - [5354] = {.lex_state = 85}, + [5353] = {.lex_state = 477}, + [5354] = {.lex_state = 477}, [5355] = {.lex_state = 477}, [5356] = {.lex_state = 477}, - [5357] = {.lex_state = 477}, - [5358] = {.lex_state = 85}, + [5357] = {.lex_state = 95}, + [5358] = {.lex_state = 477}, [5359] = {.lex_state = 477}, [5360] = {.lex_state = 477}, [5361] = {.lex_state = 477}, - [5362] = {.lex_state = 47}, - [5363] = {.lex_state = 477}, + [5362] = {.lex_state = 477}, + [5363] = {.lex_state = 47}, [5364] = {.lex_state = 477}, [5365] = {.lex_state = 477}, [5366] = {.lex_state = 477}, [5367] = {.lex_state = 477}, - [5368] = {.lex_state = 47}, - [5369] = {.lex_state = 95}, + [5368] = {.lex_state = 477}, + [5369] = {.lex_state = 477}, [5370] = {.lex_state = 477}, - [5371] = {.lex_state = 477}, + [5371] = {.lex_state = 95}, [5372] = {.lex_state = 477}, [5373] = {.lex_state = 477}, [5374] = {.lex_state = 477}, @@ -20141,10 +20148,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5378] = {.lex_state = 477}, [5379] = {.lex_state = 477}, [5380] = {.lex_state = 477}, - [5381] = {.lex_state = 477}, + [5381] = {.lex_state = 95}, [5382] = {.lex_state = 477}, [5383] = {.lex_state = 477}, - [5384] = {.lex_state = 477}, + [5384] = {.lex_state = 95}, [5385] = {.lex_state = 477}, [5386] = {.lex_state = 477}, [5387] = {.lex_state = 477}, @@ -20153,19 +20160,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5390] = {.lex_state = 477}, [5391] = {.lex_state = 477}, [5392] = {.lex_state = 477}, - [5393] = {.lex_state = 95}, + [5393] = {.lex_state = 477}, [5394] = {.lex_state = 477}, [5395] = {.lex_state = 477}, - [5396] = {.lex_state = 477}, + [5396] = {.lex_state = 47}, [5397] = {.lex_state = 477}, [5398] = {.lex_state = 477}, [5399] = {.lex_state = 477}, [5400] = {.lex_state = 477}, - [5401] = {.lex_state = 477}, + [5401] = {.lex_state = 80}, [5402] = {.lex_state = 477}, [5403] = {.lex_state = 47}, - [5404] = {.lex_state = 80}, - [5405] = {.lex_state = 477}, + [5404] = {.lex_state = 477}, + [5405] = {.lex_state = 80}, [5406] = {.lex_state = 477}, [5407] = {.lex_state = 477}, [5408] = {.lex_state = 477}, @@ -20174,96 +20181,96 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5411] = {.lex_state = 477}, [5412] = {.lex_state = 477}, [5413] = {.lex_state = 477}, - [5414] = {.lex_state = 477}, + [5414] = {.lex_state = 95}, [5415] = {.lex_state = 477}, [5416] = {.lex_state = 477}, [5417] = {.lex_state = 477}, - [5418] = {.lex_state = 477}, + [5418] = {.lex_state = 47}, [5419] = {.lex_state = 477}, [5420] = {.lex_state = 477}, - [5421] = {.lex_state = 477}, - [5422] = {.lex_state = 477}, + [5421] = {.lex_state = 80}, + [5422] = {.lex_state = 47}, [5423] = {.lex_state = 477}, [5424] = {.lex_state = 477}, - [5425] = {.lex_state = 477}, + [5425] = {.lex_state = 80}, [5426] = {.lex_state = 477}, [5427] = {.lex_state = 477}, [5428] = {.lex_state = 477}, [5429] = {.lex_state = 477}, [5430] = {.lex_state = 477}, [5431] = {.lex_state = 477}, - [5432] = {.lex_state = 477}, + [5432] = {.lex_state = 47}, [5433] = {.lex_state = 477}, [5434] = {.lex_state = 477}, [5435] = {.lex_state = 477}, - [5436] = {.lex_state = 477}, + [5436] = {.lex_state = 47}, [5437] = {.lex_state = 477}, [5438] = {.lex_state = 477}, [5439] = {.lex_state = 477}, - [5440] = {.lex_state = 95}, - [5441] = {.lex_state = 477}, + [5440] = {.lex_state = 477}, + [5441] = {.lex_state = 95}, [5442] = {.lex_state = 477}, [5443] = {.lex_state = 477}, - [5444] = {.lex_state = 477}, + [5444] = {.lex_state = 80}, [5445] = {.lex_state = 477}, [5446] = {.lex_state = 477}, [5447] = {.lex_state = 477}, [5448] = {.lex_state = 477}, - [5449] = {.lex_state = 95}, - [5450] = {.lex_state = 477}, - [5451] = {.lex_state = 477}, + [5449] = {.lex_state = 477}, + [5450] = {.lex_state = 95}, + [5451] = {.lex_state = 95}, [5452] = {.lex_state = 477}, [5453] = {.lex_state = 477}, - [5454] = {.lex_state = 477}, + [5454] = {.lex_state = 80}, [5455] = {.lex_state = 477}, [5456] = {.lex_state = 477}, - [5457] = {.lex_state = 477}, - [5458] = {.lex_state = 477}, + [5457] = {.lex_state = 80}, + [5458] = {.lex_state = 95}, [5459] = {.lex_state = 477}, [5460] = {.lex_state = 477}, [5461] = {.lex_state = 477}, [5462] = {.lex_state = 477}, [5463] = {.lex_state = 477}, - [5464] = {.lex_state = 477}, + [5464] = {.lex_state = 80}, [5465] = {.lex_state = 477}, - [5466] = {.lex_state = 80}, + [5466] = {.lex_state = 477}, [5467] = {.lex_state = 477}, [5468] = {.lex_state = 477}, [5469] = {.lex_state = 477}, [5470] = {.lex_state = 477}, - [5471] = {.lex_state = 80}, + [5471] = {.lex_state = 95}, [5472] = {.lex_state = 477}, [5473] = {.lex_state = 477}, [5474] = {.lex_state = 477}, - [5475] = {.lex_state = 477}, + [5475] = {.lex_state = 95}, [5476] = {.lex_state = 477}, - [5477] = {.lex_state = 477}, + [5477] = {.lex_state = 95}, [5478] = {.lex_state = 477}, [5479] = {.lex_state = 477}, [5480] = {.lex_state = 477}, - [5481] = {.lex_state = 477}, + [5481] = {.lex_state = 95}, [5482] = {.lex_state = 477}, [5483] = {.lex_state = 477}, [5484] = {.lex_state = 477}, - [5485] = {.lex_state = 477}, + [5485] = {.lex_state = 85}, [5486] = {.lex_state = 477}, [5487] = {.lex_state = 477}, - [5488] = {.lex_state = 477}, + [5488] = {.lex_state = 95}, [5489] = {.lex_state = 477}, [5490] = {.lex_state = 477}, [5491] = {.lex_state = 477}, - [5492] = {.lex_state = 477}, - [5493] = {.lex_state = 477}, + [5492] = {.lex_state = 80}, + [5493] = {.lex_state = 95}, [5494] = {.lex_state = 477}, [5495] = {.lex_state = 477}, - [5496] = {.lex_state = 47}, + [5496] = {.lex_state = 477}, [5497] = {.lex_state = 477}, [5498] = {.lex_state = 477}, [5499] = {.lex_state = 477}, - [5500] = {.lex_state = 477}, - [5501] = {.lex_state = 477}, + [5500] = {.lex_state = 95}, + [5501] = {.lex_state = 95}, [5502] = {.lex_state = 477}, - [5503] = {.lex_state = 47}, + [5503] = {.lex_state = 477}, [5504] = {.lex_state = 477}, [5505] = {.lex_state = 477}, [5506] = {.lex_state = 477}, @@ -20271,80 +20278,80 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5508] = {.lex_state = 477}, [5509] = {.lex_state = 80}, [5510] = {.lex_state = 477}, - [5511] = {.lex_state = 477}, + [5511] = {.lex_state = 95}, [5512] = {.lex_state = 477}, [5513] = {.lex_state = 477}, [5514] = {.lex_state = 477}, - [5515] = {.lex_state = 47}, + [5515] = {.lex_state = 477}, [5516] = {.lex_state = 477}, [5517] = {.lex_state = 477}, - [5518] = {.lex_state = 47}, - [5519] = {.lex_state = 80}, + [5518] = {.lex_state = 477}, + [5519] = {.lex_state = 477}, [5520] = {.lex_state = 477}, [5521] = {.lex_state = 477}, - [5522] = {.lex_state = 47}, + [5522] = {.lex_state = 477}, [5523] = {.lex_state = 477}, [5524] = {.lex_state = 477}, - [5525] = {.lex_state = 80}, - [5526] = {.lex_state = 477}, - [5527] = {.lex_state = 477}, + [5525] = {.lex_state = 477}, + [5526] = {.lex_state = 95}, + [5527] = {.lex_state = 95}, [5528] = {.lex_state = 477}, [5529] = {.lex_state = 477}, [5530] = {.lex_state = 477}, [5531] = {.lex_state = 477}, - [5532] = {.lex_state = 47}, - [5533] = {.lex_state = 47}, + [5532] = {.lex_state = 477}, + [5533] = {.lex_state = 477}, [5534] = {.lex_state = 477}, - [5535] = {.lex_state = 47}, - [5536] = {.lex_state = 47}, + [5535] = {.lex_state = 80}, + [5536] = {.lex_state = 477}, [5537] = {.lex_state = 477}, [5538] = {.lex_state = 477}, [5539] = {.lex_state = 477}, - [5540] = {.lex_state = 95}, + [5540] = {.lex_state = 477}, [5541] = {.lex_state = 477}, - [5542] = {.lex_state = 477}, + [5542] = {.lex_state = 95}, [5543] = {.lex_state = 477}, [5544] = {.lex_state = 477}, [5545] = {.lex_state = 477}, [5546] = {.lex_state = 477}, [5547] = {.lex_state = 477}, - [5548] = {.lex_state = 477}, + [5548] = {.lex_state = 95}, [5549] = {.lex_state = 477}, - [5550] = {.lex_state = 95}, - [5551] = {.lex_state = 95}, - [5552] = {.lex_state = 95}, + [5550] = {.lex_state = 477}, + [5551] = {.lex_state = 477}, + [5552] = {.lex_state = 477}, [5553] = {.lex_state = 477}, [5554] = {.lex_state = 477}, - [5555] = {.lex_state = 80}, + [5555] = {.lex_state = 477}, [5556] = {.lex_state = 477}, - [5557] = {.lex_state = 80}, + [5557] = {.lex_state = 477}, [5558] = {.lex_state = 95}, [5559] = {.lex_state = 477}, [5560] = {.lex_state = 477}, [5561] = {.lex_state = 477}, [5562] = {.lex_state = 477}, - [5563] = {.lex_state = 80}, - [5564] = {.lex_state = 477}, + [5563] = {.lex_state = 477}, + [5564] = {.lex_state = 80}, [5565] = {.lex_state = 477}, [5566] = {.lex_state = 477}, - [5567] = {.lex_state = 80}, + [5567] = {.lex_state = 477}, [5568] = {.lex_state = 477}, - [5569] = {.lex_state = 477}, - [5570] = {.lex_state = 95}, + [5569] = {.lex_state = 95}, + [5570] = {.lex_state = 477}, [5571] = {.lex_state = 477}, [5572] = {.lex_state = 477}, - [5573] = {.lex_state = 477}, + [5573] = {.lex_state = 95}, [5574] = {.lex_state = 477}, [5575] = {.lex_state = 477}, [5576] = {.lex_state = 477}, - [5577] = {.lex_state = 95}, + [5577] = {.lex_state = 477}, [5578] = {.lex_state = 477}, [5579] = {.lex_state = 477}, [5580] = {.lex_state = 477}, [5581] = {.lex_state = 477}, [5582] = {.lex_state = 477}, - [5583] = {.lex_state = 80}, - [5584] = {.lex_state = 93}, + [5583] = {.lex_state = 477}, + [5584] = {.lex_state = 477}, [5585] = {.lex_state = 477}, [5586] = {.lex_state = 477}, [5587] = {.lex_state = 477}, @@ -20352,86 +20359,86 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5589] = {.lex_state = 477}, [5590] = {.lex_state = 477}, [5591] = {.lex_state = 477}, - [5592] = {.lex_state = 95}, + [5592] = {.lex_state = 477}, [5593] = {.lex_state = 477}, [5594] = {.lex_state = 477}, [5595] = {.lex_state = 477}, - [5596] = {.lex_state = 95}, - [5597] = {.lex_state = 95}, - [5598] = {.lex_state = 80}, + [5596] = {.lex_state = 477}, + [5597] = {.lex_state = 477}, + [5598] = {.lex_state = 477}, [5599] = {.lex_state = 477}, - [5600] = {.lex_state = 477}, + [5600] = {.lex_state = 47}, [5601] = {.lex_state = 477}, - [5602] = {.lex_state = 477}, + [5602] = {.lex_state = 47}, [5603] = {.lex_state = 477}, - [5604] = {.lex_state = 477}, - [5605] = {.lex_state = 47}, - [5606] = {.lex_state = 477}, - [5607] = {.lex_state = 95}, - [5608] = {.lex_state = 80}, - [5609] = {.lex_state = 477}, - [5610] = {.lex_state = 477}, + [5604] = {.lex_state = 95}, + [5605] = {.lex_state = 95}, + [5606] = {.lex_state = 80}, + [5607] = {.lex_state = 477}, + [5608] = {.lex_state = 477}, + [5609] = {.lex_state = 47}, + [5610] = {.lex_state = 95}, [5611] = {.lex_state = 477}, [5612] = {.lex_state = 477}, - [5613] = {.lex_state = 477}, - [5614] = {.lex_state = 477}, - [5615] = {.lex_state = 477}, + [5613] = {.lex_state = 80}, + [5614] = {.lex_state = 80}, + [5615] = {.lex_state = 47}, [5616] = {.lex_state = 477}, - [5617] = {.lex_state = 95}, - [5618] = {.lex_state = 80}, - [5619] = {.lex_state = 95}, - [5620] = {.lex_state = 95}, + [5617] = {.lex_state = 477}, + [5618] = {.lex_state = 477}, + [5619] = {.lex_state = 477}, + [5620] = {.lex_state = 477}, [5621] = {.lex_state = 477}, [5622] = {.lex_state = 477}, - [5623] = {.lex_state = 477}, - [5624] = {.lex_state = 477}, - [5625] = {.lex_state = 477}, - [5626] = {.lex_state = 95}, + [5623] = {.lex_state = 80}, + [5624] = {.lex_state = 47}, + [5625] = {.lex_state = 95}, + [5626] = {.lex_state = 477}, [5627] = {.lex_state = 477}, [5628] = {.lex_state = 477}, [5629] = {.lex_state = 477}, - [5630] = {.lex_state = 477}, + [5630] = {.lex_state = 47}, [5631] = {.lex_state = 477}, - [5632] = {.lex_state = 477}, + [5632] = {.lex_state = 93}, [5633] = {.lex_state = 477}, [5634] = {.lex_state = 477}, [5635] = {.lex_state = 477}, [5636] = {.lex_state = 477}, [5637] = {.lex_state = 477}, - [5638] = {.lex_state = 477}, + [5638] = {.lex_state = 95}, [5639] = {.lex_state = 477}, - [5640] = {.lex_state = 95}, - [5641] = {.lex_state = 477}, + [5640] = {.lex_state = 477}, + [5641] = {.lex_state = 95}, [5642] = {.lex_state = 95}, - [5643] = {.lex_state = 477}, + [5643] = {.lex_state = 47}, [5644] = {.lex_state = 477}, [5645] = {.lex_state = 477}, [5646] = {.lex_state = 477}, - [5647] = {.lex_state = 95}, + [5647] = {.lex_state = 477}, [5648] = {.lex_state = 477}, [5649] = {.lex_state = 477}, [5650] = {.lex_state = 477}, - [5651] = {.lex_state = 477}, + [5651] = {.lex_state = 93}, [5652] = {.lex_state = 477}, [5653] = {.lex_state = 95}, - [5654] = {.lex_state = 477}, - [5655] = {.lex_state = 477}, + [5654] = {.lex_state = 47}, + [5655] = {.lex_state = 95}, [5656] = {.lex_state = 477}, [5657] = {.lex_state = 477}, - [5658] = {.lex_state = 80}, - [5659] = {.lex_state = 80}, + [5658] = {.lex_state = 477}, + [5659] = {.lex_state = 477}, [5660] = {.lex_state = 477}, [5661] = {.lex_state = 477}, [5662] = {.lex_state = 477}, - [5663] = {.lex_state = 477}, - [5664] = {.lex_state = 477}, + [5663] = {.lex_state = 95}, + [5664] = {.lex_state = 95}, [5665] = {.lex_state = 477}, [5666] = {.lex_state = 477}, - [5667] = {.lex_state = 477}, - [5668] = {.lex_state = 477}, + [5667] = {.lex_state = 95}, + [5668] = {.lex_state = 85}, [5669] = {.lex_state = 477}, - [5670] = {.lex_state = 477}, - [5671] = {.lex_state = 95}, + [5670] = {.lex_state = 47}, + [5671] = {.lex_state = 80}, [5672] = {.lex_state = 477}, [5673] = {.lex_state = 477}, [5674] = {.lex_state = 477}, @@ -20439,107 +20446,107 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5676] = {.lex_state = 477}, [5677] = {.lex_state = 477}, [5678] = {.lex_state = 477}, - [5679] = {.lex_state = 477}, + [5679] = {.lex_state = 95}, [5680] = {.lex_state = 477}, - [5681] = {.lex_state = 80}, + [5681] = {.lex_state = 477}, [5682] = {.lex_state = 477}, - [5683] = {.lex_state = 47}, - [5684] = {.lex_state = 95}, - [5685] = {.lex_state = 95}, + [5683] = {.lex_state = 95}, + [5684] = {.lex_state = 477}, + [5685] = {.lex_state = 477}, [5686] = {.lex_state = 477}, [5687] = {.lex_state = 477}, - [5688] = {.lex_state = 477}, + [5688] = {.lex_state = 95}, [5689] = {.lex_state = 477}, - [5690] = {.lex_state = 95}, + [5690] = {.lex_state = 477}, [5691] = {.lex_state = 477}, [5692] = {.lex_state = 477}, [5693] = {.lex_state = 477}, - [5694] = {.lex_state = 477}, + [5694] = {.lex_state = 80}, [5695] = {.lex_state = 477}, - [5696] = {.lex_state = 80}, + [5696] = {.lex_state = 477}, [5697] = {.lex_state = 477}, - [5698] = {.lex_state = 93}, + [5698] = {.lex_state = 477}, [5699] = {.lex_state = 477}, - [5700] = {.lex_state = 477}, + [5700] = {.lex_state = 95}, [5701] = {.lex_state = 477}, [5702] = {.lex_state = 477}, [5703] = {.lex_state = 477}, - [5704] = {.lex_state = 95}, - [5705] = {.lex_state = 95}, - [5706] = {.lex_state = 80}, + [5704] = {.lex_state = 477}, + [5705] = {.lex_state = 477}, + [5706] = {.lex_state = 47}, [5707] = {.lex_state = 477}, - [5708] = {.lex_state = 80}, - [5709] = {.lex_state = 47}, - [5710] = {.lex_state = 95}, + [5708] = {.lex_state = 477}, + [5709] = {.lex_state = 477}, + [5710] = {.lex_state = 477}, [5711] = {.lex_state = 477}, - [5712] = {.lex_state = 477}, - [5713] = {.lex_state = 47}, + [5712] = {.lex_state = 80}, + [5713] = {.lex_state = 80}, [5714] = {.lex_state = 477}, - [5715] = {.lex_state = 477}, + [5715] = {.lex_state = 95}, [5716] = {.lex_state = 477}, - [5717] = {.lex_state = 95}, - [5718] = {.lex_state = 95}, - [5719] = {.lex_state = 477}, + [5717] = {.lex_state = 47}, + [5718] = {.lex_state = 477}, + [5719] = {.lex_state = 95}, [5720] = {.lex_state = 477}, [5721] = {.lex_state = 477}, [5722] = {.lex_state = 477}, [5723] = {.lex_state = 477}, [5724] = {.lex_state = 477}, [5725] = {.lex_state = 477}, - [5726] = {.lex_state = 95}, + [5726] = {.lex_state = 477}, [5727] = {.lex_state = 477}, [5728] = {.lex_state = 477}, - [5729] = {.lex_state = 477}, - [5730] = {.lex_state = 47}, + [5729] = {.lex_state = 80}, + [5730] = {.lex_state = 477}, [5731] = {.lex_state = 477}, - [5732] = {.lex_state = 95}, - [5733] = {.lex_state = 477}, - [5734] = {.lex_state = 95}, + [5732] = {.lex_state = 477}, + [5733] = {.lex_state = 95}, + [5734] = {.lex_state = 477}, [5735] = {.lex_state = 477}, - [5736] = {.lex_state = 95}, - [5737] = {.lex_state = 95}, + [5736] = {.lex_state = 477}, + [5737] = {.lex_state = 477}, [5738] = {.lex_state = 477}, [5739] = {.lex_state = 477}, [5740] = {.lex_state = 477}, [5741] = {.lex_state = 477}, [5742] = {.lex_state = 477}, - [5743] = {.lex_state = 477}, - [5744] = {.lex_state = 95}, + [5743] = {.lex_state = 95}, + [5744] = {.lex_state = 477}, [5745] = {.lex_state = 477}, [5746] = {.lex_state = 477}, - [5747] = {.lex_state = 477}, + [5747] = {.lex_state = 80}, [5748] = {.lex_state = 477}, [5749] = {.lex_state = 477}, [5750] = {.lex_state = 477}, [5751] = {.lex_state = 477}, [5752] = {.lex_state = 477}, - [5753] = {.lex_state = 477}, + [5753] = {.lex_state = 47}, [5754] = {.lex_state = 477}, [5755] = {.lex_state = 477}, [5756] = {.lex_state = 477}, - [5757] = {.lex_state = 95}, + [5757] = {.lex_state = 477}, [5758] = {.lex_state = 477}, - [5759] = {.lex_state = 477}, + [5759] = {.lex_state = 95}, [5760] = {.lex_state = 477}, [5761] = {.lex_state = 477}, [5762] = {.lex_state = 477}, [5763] = {.lex_state = 477}, - [5764] = {.lex_state = 477}, - [5765] = {.lex_state = 477}, + [5764] = {.lex_state = 95}, + [5765] = {.lex_state = 95}, [5766] = {.lex_state = 477}, - [5767] = {.lex_state = 477}, - [5768] = {.lex_state = 477}, + [5767] = {.lex_state = 95}, + [5768] = {.lex_state = 95}, [5769] = {.lex_state = 477}, - [5770] = {.lex_state = 477}, + [5770] = {.lex_state = 95}, [5771] = {.lex_state = 477}, [5772] = {.lex_state = 477}, [5773] = {.lex_state = 477}, [5774] = {.lex_state = 477}, - [5775] = {.lex_state = 80}, - [5776] = {.lex_state = 47}, + [5775] = {.lex_state = 95}, + [5776] = {.lex_state = 477}, [5777] = {.lex_state = 477}, [5778] = {.lex_state = 477}, - [5779] = {.lex_state = 95}, + [5779] = {.lex_state = 477}, [5780] = {.lex_state = 477}, [5781] = {.lex_state = 477}, [5782] = {.lex_state = 477}, @@ -20550,38 +20557,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5787] = {.lex_state = 477}, [5788] = {.lex_state = 477}, [5789] = {.lex_state = 477}, - [5790] = {.lex_state = 477}, - [5791] = {.lex_state = 80}, + [5790] = {.lex_state = 95}, + [5791] = {.lex_state = 477}, [5792] = {.lex_state = 477}, - [5793] = {.lex_state = 47}, + [5793] = {.lex_state = 477}, [5794] = {.lex_state = 95}, [5795] = {.lex_state = 477}, - [5796] = {.lex_state = 477}, + [5796] = {.lex_state = 95}, [5797] = {.lex_state = 477}, [5798] = {.lex_state = 477}, - [5799] = {.lex_state = 95}, - [5800] = {.lex_state = 85}, + [5799] = {.lex_state = 477}, + [5800] = {.lex_state = 477}, [5801] = {.lex_state = 477}, [5802] = {.lex_state = 477}, - [5803] = {.lex_state = 95}, - [5804] = {.lex_state = 477}, + [5803] = {.lex_state = 477}, + [5804] = {.lex_state = 95}, [5805] = {.lex_state = 95}, [5806] = {.lex_state = 477}, [5807] = {.lex_state = 95}, - [5808] = {.lex_state = 95}, + [5808] = {.lex_state = 477}, [5809] = {.lex_state = 477}, - [5810] = {.lex_state = 95}, - [5811] = {.lex_state = 477}, + [5810] = {.lex_state = 477}, + [5811] = {.lex_state = 93}, [5812] = {.lex_state = 477}, [5813] = {.lex_state = 477}, [5814] = {.lex_state = 477}, - [5815] = {.lex_state = 477}, - [5816] = {.lex_state = 95}, + [5815] = {.lex_state = 95}, + [5816] = {.lex_state = 477}, [5817] = {.lex_state = 477}, [5818] = {.lex_state = 477}, [5819] = {.lex_state = 477}, - [5820] = {.lex_state = 477}, - [5821] = {.lex_state = 477}, + [5820] = {.lex_state = 95}, + [5821] = {.lex_state = 95}, [5822] = {.lex_state = 477}, [5823] = {.lex_state = 477}, [5824] = {.lex_state = 477}, @@ -20590,11 +20597,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5827] = {.lex_state = 477}, [5828] = {.lex_state = 477}, [5829] = {.lex_state = 477}, - [5830] = {.lex_state = 95}, - [5831] = {.lex_state = 477}, + [5830] = {.lex_state = 477}, + [5831] = {.lex_state = 95}, [5832] = {.lex_state = 477}, - [5833] = {.lex_state = 477}, - [5834] = {.lex_state = 95}, + [5833] = {.lex_state = 80}, + [5834] = {.lex_state = 80}, [5835] = {.lex_state = 477}, [5836] = {.lex_state = 95}, [5837] = {.lex_state = 477}, @@ -20603,80 +20610,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5840] = {.lex_state = 477}, [5841] = {.lex_state = 477}, [5842] = {.lex_state = 477}, - [5843] = {.lex_state = 477}, - [5844] = {.lex_state = 95}, + [5843] = {.lex_state = 95}, + [5844] = {.lex_state = 477}, [5845] = {.lex_state = 477}, - [5846] = {.lex_state = 477}, - [5847] = {.lex_state = 95}, + [5846] = {.lex_state = 95}, + [5847] = {.lex_state = 477}, [5848] = {.lex_state = 477}, - [5849] = {.lex_state = 477}, + [5849] = {.lex_state = 95}, [5850] = {.lex_state = 477}, [5851] = {.lex_state = 477}, [5852] = {.lex_state = 477}, [5853] = {.lex_state = 477}, - [5854] = {.lex_state = 477}, - [5855] = {.lex_state = 95}, + [5854] = {.lex_state = 95}, + [5855] = {.lex_state = 477}, [5856] = {.lex_state = 477}, [5857] = {.lex_state = 477}, [5858] = {.lex_state = 477}, [5859] = {.lex_state = 477}, [5860] = {.lex_state = 477}, - [5861] = {.lex_state = 95}, - [5862] = {.lex_state = 477}, + [5861] = {.lex_state = 477}, + [5862] = {.lex_state = 95}, [5863] = {.lex_state = 477}, [5864] = {.lex_state = 477}, [5865] = {.lex_state = 477}, [5866] = {.lex_state = 477}, - [5867] = {.lex_state = 477}, + [5867] = {.lex_state = 95}, [5868] = {.lex_state = 477}, [5869] = {.lex_state = 477}, [5870] = {.lex_state = 477}, - [5871] = {.lex_state = 95}, - [5872] = {.lex_state = 95}, + [5871] = {.lex_state = 477}, + [5872] = {.lex_state = 477}, [5873] = {.lex_state = 477}, [5874] = {.lex_state = 477}, [5875] = {.lex_state = 477}, - [5876] = {.lex_state = 95}, - [5877] = {.lex_state = 477}, - [5878] = {.lex_state = 477}, - [5879] = {.lex_state = 477}, - [5880] = {.lex_state = 477}, - [5881] = {.lex_state = 80}, - [5882] = {.lex_state = 477}, - [5883] = {.lex_state = 95}, - [5884] = {.lex_state = 477}, - [5885] = {.lex_state = 477}, - [5886] = {.lex_state = 95}, - [5887] = {.lex_state = 477}, - [5888] = {.lex_state = 477}, - [5889] = {.lex_state = 95}, - [5890] = {.lex_state = 477}, - [5891] = {.lex_state = 477}, - [5892] = {.lex_state = 477}, - [5893] = {.lex_state = 477}, - [5894] = {.lex_state = 95}, - [5895] = {.lex_state = 477}, - [5896] = {.lex_state = 477}, - [5897] = {.lex_state = 477}, - [5898] = {.lex_state = 477}, - [5899] = {.lex_state = 477}, - [5900] = {.lex_state = 477}, - [5901] = {.lex_state = 477}, - [5902] = {.lex_state = 477}, - [5903] = {.lex_state = 477}, - [5904] = {.lex_state = 477}, - [5905] = {.lex_state = 477}, - [5906] = {.lex_state = 477}, - [5907] = {.lex_state = 477}, - [5908] = {.lex_state = 477}, - [5909] = {.lex_state = 477}, - [5910] = {.lex_state = 477}, - [5911] = {.lex_state = 477}, - [5912] = {.lex_state = 477}, - [5913] = {.lex_state = 477}, - [5914] = {.lex_state = 477}, - [5915] = {.lex_state = 477}, - [5916] = {.lex_state = 477}, + [5876] = {.lex_state = 477}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -20783,9 +20750,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_primitive_type] = ACTIONS(1), [anon_sym_enum] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), - [anon_sym_NS_ENUM] = ACTIONS(1), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1), - [anon_sym_NS_OPTIONS] = ACTIONS(1), [anon_sym_struct] = ACTIONS(1), [anon_sym_ATdefs] = ACTIONS(1), [anon_sym_union] = ACTIONS(1), @@ -20903,6 +20867,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATsynthesize] = ACTIONS(1), [anon_sym_ATdynamic] = ACTIONS(1), [anon_sym_NS_NOESCAPE] = ACTIONS(1), + [anon_sym_NS_ENUM] = ACTIONS(1), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1), + [anon_sym_NS_OPTIONS] = ACTIONS(1), [anon_sym_typeof] = ACTIONS(1), [anon_sym___typeof] = ACTIONS(1), [anon_sym___typeof__] = ACTIONS(1), @@ -20943,7 +20910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(5513), + [sym_translation_unit] = STATE(5757), [sym_preproc_include] = STATE(21), [sym_preproc_def] = STATE(21), [sym_preproc_function_def] = STATE(21), @@ -20952,52 +20919,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(21), [sym_declaration] = STATE(21), [sym_type_definition] = STATE(21), - [sym__declaration_specifiers] = STATE(4707), + [sym__declaration_specifiers] = STATE(4727), [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), [sym__statement] = STATE(21), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(3413), + [sym_macro_type_specifier] = STATE(3358), [sym__import] = STATE(21), [sym_preproc_import] = STATE(21), [sym_module_import] = STATE(21), @@ -21007,37 +20974,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_interface] = STATE(21), [sym_category_interface] = STATE(21), [sym_protocol_declaration] = STATE(21), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), [sym_class_implementation] = STATE(21), [sym_category_implementation] = STATE(21), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [aux_sym_translation_unit_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [aux_sym_preproc_include_token1] = ACTIONS(11), @@ -21109,80 +21077,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), - [sym__ns_assume_nonnull_declaration] = ACTIONS(101), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), + [sym__ns_assume_nonnull_declaration] = ACTIONS(99), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(53), [sym_Class] = ACTIONS(131), @@ -21197,8 +21165,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -21210,102 +21178,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [2] = { - [sym_preproc_include] = STATE(10), - [sym_preproc_def] = STATE(10), - [sym_preproc_function_def] = STATE(10), - [sym_preproc_if] = STATE(10), - [sym_preproc_ifdef] = STATE(10), - [sym_preproc_else] = STATE(5509), - [sym_preproc_elif] = STATE(5509), - [sym_function_definition] = STATE(10), - [sym_declaration] = STATE(10), - [sym_type_definition] = STATE(10), - [sym__declaration_specifiers] = STATE(4708), - [sym_linkage_specification] = STATE(10), - [sym_attribute_specifier] = STATE(3254), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3000), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3417), - [sym_sized_type_specifier] = STATE(3417), - [sym_enum_specifier] = STATE(3417), - [sym_struct_specifier] = STATE(3417), - [sym_union_specifier] = STATE(3417), - [sym__statement] = STATE(10), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(10), - [sym_macro_type_specifier] = STATE(3417), - [sym__import] = STATE(10), - [sym_preproc_import] = STATE(10), - [sym_module_import] = STATE(10), - [sym_compatibility_alias_declaration] = STATE(10), - [sym_protocol_forward_declaration] = STATE(10), - [sym_class_forward_declaration] = STATE(10), - [sym_class_interface] = STATE(10), - [sym_category_interface] = STATE(10), - [sym_protocol_declaration] = STATE(10), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2833), - [sym_class_implementation] = STATE(10), - [sym_category_implementation] = STATE(10), - [sym_typeof_specifier] = STATE(3417), - [sym_atomic_specifier] = STATE(3417), - [sym_generic_type_specifier] = STATE(3417), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(10), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4304), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(12), + [sym_preproc_def] = STATE(12), + [sym_preproc_function_def] = STATE(12), + [sym_preproc_if] = STATE(12), + [sym_preproc_ifdef] = STATE(12), + [sym_preproc_else] = STATE(5401), + [sym_preproc_elif] = STATE(5401), + [sym_function_definition] = STATE(12), + [sym_declaration] = STATE(12), + [sym_type_definition] = STATE(12), + [sym__declaration_specifiers] = STATE(4725), + [sym_linkage_specification] = STATE(12), + [sym_attribute_specifier] = STATE(3194), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2842), + [sym_compound_statement] = STATE(176), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3356), + [sym_enum_specifier] = STATE(3356), + [sym_struct_specifier] = STATE(3356), + [sym_union_specifier] = STATE(3356), + [sym__statement] = STATE(12), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(12), + [sym_macro_type_specifier] = STATE(3356), + [sym__import] = STATE(12), + [sym_preproc_import] = STATE(12), + [sym_module_import] = STATE(12), + [sym_compatibility_alias_declaration] = STATE(12), + [sym_protocol_forward_declaration] = STATE(12), + [sym_class_forward_declaration] = STATE(12), + [sym_class_interface] = STATE(12), + [sym_category_interface] = STATE(12), + [sym_protocol_declaration] = STATE(12), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2710), + [sym_class_implementation] = STATE(12), + [sym_category_implementation] = STATE(12), + [sym_ns_enum_specifier] = STATE(3356), + [sym_typeof_specifier] = STATE(3356), + [sym_atomic_specifier] = STATE(3356), + [sym_generic_type_specifier] = STATE(3356), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(12), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4342), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(153), [aux_sym_preproc_include_token1] = ACTIONS(155), [aux_sym_preproc_def_token1] = ACTIONS(157), @@ -21379,11 +21348,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(179), [anon_sym_switch] = ACTIONS(181), [anon_sym_case] = ACTIONS(183), @@ -21395,23 +21361,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(195), [anon_sym_continue] = ACTIONS(197), [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_POUNDimport] = ACTIONS(201), [anon_sym_ATimport] = ACTIONS(203), @@ -21421,38 +21387,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATclass] = ACTIONS(211), [anon_sym_ATinterface] = ACTIONS(213), [sym_class_interface_attribute_sepcifier] = ACTIONS(215), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), [anon_sym_ATimplementation] = ACTIONS(217), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(177), [sym_Class] = ACTIONS(131), @@ -21467,8 +21436,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -21480,102 +21449,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3] = { - [sym_preproc_include] = STATE(11), - [sym_preproc_def] = STATE(11), - [sym_preproc_function_def] = STATE(11), - [sym_preproc_if] = STATE(11), - [sym_preproc_ifdef] = STATE(11), - [sym_preproc_else] = STATE(5563), - [sym_preproc_elif] = STATE(5563), - [sym_function_definition] = STATE(11), - [sym_declaration] = STATE(11), - [sym_type_definition] = STATE(11), - [sym__declaration_specifiers] = STATE(4708), - [sym_linkage_specification] = STATE(11), - [sym_attribute_specifier] = STATE(3254), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3000), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3417), - [sym_sized_type_specifier] = STATE(3417), - [sym_enum_specifier] = STATE(3417), - [sym_struct_specifier] = STATE(3417), - [sym_union_specifier] = STATE(3417), - [sym__statement] = STATE(11), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(11), - [sym_macro_type_specifier] = STATE(3417), - [sym__import] = STATE(11), - [sym_preproc_import] = STATE(11), - [sym_module_import] = STATE(11), - [sym_compatibility_alias_declaration] = STATE(11), - [sym_protocol_forward_declaration] = STATE(11), - [sym_class_forward_declaration] = STATE(11), - [sym_class_interface] = STATE(11), - [sym_category_interface] = STATE(11), - [sym_protocol_declaration] = STATE(11), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2833), - [sym_class_implementation] = STATE(11), - [sym_category_implementation] = STATE(11), - [sym_typeof_specifier] = STATE(3417), - [sym_atomic_specifier] = STATE(3417), - [sym_generic_type_specifier] = STATE(3417), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(11), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4304), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(13), + [sym_preproc_def] = STATE(13), + [sym_preproc_function_def] = STATE(13), + [sym_preproc_if] = STATE(13), + [sym_preproc_ifdef] = STATE(13), + [sym_preproc_else] = STATE(5606), + [sym_preproc_elif] = STATE(5606), + [sym_function_definition] = STATE(13), + [sym_declaration] = STATE(13), + [sym_type_definition] = STATE(13), + [sym__declaration_specifiers] = STATE(4725), + [sym_linkage_specification] = STATE(13), + [sym_attribute_specifier] = STATE(3194), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2842), + [sym_compound_statement] = STATE(176), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3356), + [sym_enum_specifier] = STATE(3356), + [sym_struct_specifier] = STATE(3356), + [sym_union_specifier] = STATE(3356), + [sym__statement] = STATE(13), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(13), + [sym_macro_type_specifier] = STATE(3356), + [sym__import] = STATE(13), + [sym_preproc_import] = STATE(13), + [sym_module_import] = STATE(13), + [sym_compatibility_alias_declaration] = STATE(13), + [sym_protocol_forward_declaration] = STATE(13), + [sym_class_forward_declaration] = STATE(13), + [sym_class_interface] = STATE(13), + [sym_category_interface] = STATE(13), + [sym_protocol_declaration] = STATE(13), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2710), + [sym_class_implementation] = STATE(13), + [sym_category_implementation] = STATE(13), + [sym_ns_enum_specifier] = STATE(3356), + [sym_typeof_specifier] = STATE(3356), + [sym_atomic_specifier] = STATE(3356), + [sym_generic_type_specifier] = STATE(3356), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(13), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4342), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(153), [aux_sym_preproc_include_token1] = ACTIONS(155), [aux_sym_preproc_def_token1] = ACTIONS(157), @@ -21649,11 +21619,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(179), [anon_sym_switch] = ACTIONS(181), [anon_sym_case] = ACTIONS(183), @@ -21665,23 +21632,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(195), [anon_sym_continue] = ACTIONS(197), [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_POUNDimport] = ACTIONS(201), [anon_sym_ATimport] = ACTIONS(203), @@ -21691,38 +21658,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATclass] = ACTIONS(211), [anon_sym_ATinterface] = ACTIONS(213), [sym_class_interface_attribute_sepcifier] = ACTIONS(215), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), [anon_sym_ATimplementation] = ACTIONS(217), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(177), [sym_Class] = ACTIONS(131), @@ -21737,8 +21707,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -21750,102 +21720,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [4] = { - [sym_preproc_include] = STATE(16), - [sym_preproc_def] = STATE(16), - [sym_preproc_function_def] = STATE(16), - [sym_preproc_if] = STATE(16), - [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(5618), - [sym_preproc_elif] = STATE(5618), - [sym_function_definition] = STATE(16), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_specifiers] = STATE(4708), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(3254), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3000), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3417), - [sym_sized_type_specifier] = STATE(3417), - [sym_enum_specifier] = STATE(3417), - [sym_struct_specifier] = STATE(3417), - [sym_union_specifier] = STATE(3417), - [sym__statement] = STATE(16), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(3417), - [sym__import] = STATE(16), - [sym_preproc_import] = STATE(16), - [sym_module_import] = STATE(16), - [sym_compatibility_alias_declaration] = STATE(16), - [sym_protocol_forward_declaration] = STATE(16), - [sym_class_forward_declaration] = STATE(16), - [sym_class_interface] = STATE(16), - [sym_category_interface] = STATE(16), - [sym_protocol_declaration] = STATE(16), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2833), - [sym_class_implementation] = STATE(16), - [sym_category_implementation] = STATE(16), - [sym_typeof_specifier] = STATE(3417), - [sym_atomic_specifier] = STATE(3417), - [sym_generic_type_specifier] = STATE(3417), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4304), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(7), + [sym_preproc_def] = STATE(7), + [sym_preproc_function_def] = STATE(7), + [sym_preproc_if] = STATE(7), + [sym_preproc_ifdef] = STATE(7), + [sym_preproc_else] = STATE(5671), + [sym_preproc_elif] = STATE(5671), + [sym_function_definition] = STATE(7), + [sym_declaration] = STATE(7), + [sym_type_definition] = STATE(7), + [sym__declaration_specifiers] = STATE(4725), + [sym_linkage_specification] = STATE(7), + [sym_attribute_specifier] = STATE(3194), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2842), + [sym_compound_statement] = STATE(176), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3356), + [sym_enum_specifier] = STATE(3356), + [sym_struct_specifier] = STATE(3356), + [sym_union_specifier] = STATE(3356), + [sym__statement] = STATE(7), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(7), + [sym_macro_type_specifier] = STATE(3356), + [sym__import] = STATE(7), + [sym_preproc_import] = STATE(7), + [sym_module_import] = STATE(7), + [sym_compatibility_alias_declaration] = STATE(7), + [sym_protocol_forward_declaration] = STATE(7), + [sym_class_forward_declaration] = STATE(7), + [sym_class_interface] = STATE(7), + [sym_category_interface] = STATE(7), + [sym_protocol_declaration] = STATE(7), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2710), + [sym_class_implementation] = STATE(7), + [sym_category_implementation] = STATE(7), + [sym_ns_enum_specifier] = STATE(3356), + [sym_typeof_specifier] = STATE(3356), + [sym_atomic_specifier] = STATE(3356), + [sym_generic_type_specifier] = STATE(3356), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(7), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4342), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(153), [aux_sym_preproc_include_token1] = ACTIONS(155), [aux_sym_preproc_def_token1] = ACTIONS(157), @@ -21919,11 +21890,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(179), [anon_sym_switch] = ACTIONS(181), [anon_sym_case] = ACTIONS(183), @@ -21935,23 +21903,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(195), [anon_sym_continue] = ACTIONS(197), [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_POUNDimport] = ACTIONS(201), [anon_sym_ATimport] = ACTIONS(203), @@ -21961,38 +21929,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATclass] = ACTIONS(211), [anon_sym_ATinterface] = ACTIONS(213), [sym_class_interface_attribute_sepcifier] = ACTIONS(215), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), [anon_sym_ATimplementation] = ACTIONS(217), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(177), [sym_Class] = ACTIONS(131), @@ -22007,8 +21978,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -22025,57 +21996,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_function_def] = STATE(16), [sym_preproc_if] = STATE(16), [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(5706), - [sym_preproc_elif] = STATE(5706), + [sym_preproc_else] = STATE(5320), + [sym_preproc_elif] = STATE(5320), [sym_function_definition] = STATE(16), [sym_declaration] = STATE(16), [sym_type_definition] = STATE(16), - [sym__declaration_specifiers] = STATE(4708), + [sym__declaration_specifiers] = STATE(4725), [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(3254), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3000), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3417), - [sym_sized_type_specifier] = STATE(3417), - [sym_enum_specifier] = STATE(3417), - [sym_struct_specifier] = STATE(3417), - [sym_union_specifier] = STATE(3417), + [sym_attribute_specifier] = STATE(3194), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2842), + [sym_compound_statement] = STATE(176), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3356), + [sym_enum_specifier] = STATE(3356), + [sym_struct_specifier] = STATE(3356), + [sym_union_specifier] = STATE(3356), [sym__statement] = STATE(16), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(3417), + [sym_macro_type_specifier] = STATE(3356), [sym__import] = STATE(16), [sym_preproc_import] = STATE(16), [sym_module_import] = STATE(16), @@ -22085,37 +22056,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_interface] = STATE(16), [sym_category_interface] = STATE(16), [sym_protocol_declaration] = STATE(16), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2833), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2710), [sym_class_implementation] = STATE(16), [sym_category_implementation] = STATE(16), - [sym_typeof_specifier] = STATE(3417), - [sym_atomic_specifier] = STATE(3417), - [sym_generic_type_specifier] = STATE(3417), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym_ns_enum_specifier] = STATE(3356), + [sym_typeof_specifier] = STATE(3356), + [sym_atomic_specifier] = STATE(3356), + [sym_generic_type_specifier] = STATE(3356), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [aux_sym_translation_unit_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4304), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4342), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(153), [aux_sym_preproc_include_token1] = ACTIONS(155), [aux_sym_preproc_def_token1] = ACTIONS(157), @@ -22189,11 +22161,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(179), [anon_sym_switch] = ACTIONS(181), [anon_sym_case] = ACTIONS(183), @@ -22205,64 +22174,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(195), [anon_sym_continue] = ACTIONS(197), [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_POUNDimport] = ACTIONS(201), [anon_sym_ATimport] = ACTIONS(203), - [sym__ns_assume_nonnull_declaration] = ACTIONS(233), + [sym__ns_assume_nonnull_declaration] = ACTIONS(237), [anon_sym_ATcompatibility_alias] = ACTIONS(207), [anon_sym_ATprotocol] = ACTIONS(209), [anon_sym_ATclass] = ACTIONS(211), [anon_sym_ATinterface] = ACTIONS(213), [sym_class_interface_attribute_sepcifier] = ACTIONS(215), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), [anon_sym_ATimplementation] = ACTIONS(217), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(177), [sym_Class] = ACTIONS(131), @@ -22277,8 +22249,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -22290,107 +22262,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [6] = { - [sym_preproc_include] = STATE(4), - [sym_preproc_def] = STATE(4), - [sym_preproc_function_def] = STATE(4), - [sym_preproc_if] = STATE(4), - [sym_preproc_ifdef] = STATE(4), - [sym_preproc_else] = STATE(5708), - [sym_preproc_elif] = STATE(5708), - [sym_function_definition] = STATE(4), - [sym_declaration] = STATE(4), - [sym_type_definition] = STATE(4), - [sym__declaration_specifiers] = STATE(4708), - [sym_linkage_specification] = STATE(4), - [sym_attribute_specifier] = STATE(3254), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3000), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3417), - [sym_sized_type_specifier] = STATE(3417), - [sym_enum_specifier] = STATE(3417), - [sym_struct_specifier] = STATE(3417), - [sym_union_specifier] = STATE(3417), - [sym__statement] = STATE(4), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(4), - [sym_macro_type_specifier] = STATE(3417), - [sym__import] = STATE(4), - [sym_preproc_import] = STATE(4), - [sym_module_import] = STATE(4), - [sym_compatibility_alias_declaration] = STATE(4), - [sym_protocol_forward_declaration] = STATE(4), - [sym_class_forward_declaration] = STATE(4), - [sym_class_interface] = STATE(4), - [sym_category_interface] = STATE(4), - [sym_protocol_declaration] = STATE(4), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2833), - [sym_class_implementation] = STATE(4), - [sym_category_implementation] = STATE(4), - [sym_typeof_specifier] = STATE(3417), - [sym_atomic_specifier] = STATE(3417), - [sym_generic_type_specifier] = STATE(3417), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(4), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4304), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(8), + [sym_preproc_def] = STATE(8), + [sym_preproc_function_def] = STATE(8), + [sym_preproc_if] = STATE(8), + [sym_preproc_ifdef] = STATE(8), + [sym_preproc_else] = STATE(5712), + [sym_preproc_elif] = STATE(5712), + [sym_function_definition] = STATE(8), + [sym_declaration] = STATE(8), + [sym_type_definition] = STATE(8), + [sym__declaration_specifiers] = STATE(4725), + [sym_linkage_specification] = STATE(8), + [sym_attribute_specifier] = STATE(3194), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2842), + [sym_compound_statement] = STATE(176), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3356), + [sym_enum_specifier] = STATE(3356), + [sym_struct_specifier] = STATE(3356), + [sym_union_specifier] = STATE(3356), + [sym__statement] = STATE(8), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(8), + [sym_macro_type_specifier] = STATE(3356), + [sym__import] = STATE(8), + [sym_preproc_import] = STATE(8), + [sym_module_import] = STATE(8), + [sym_compatibility_alias_declaration] = STATE(8), + [sym_protocol_forward_declaration] = STATE(8), + [sym_class_forward_declaration] = STATE(8), + [sym_class_interface] = STATE(8), + [sym_category_interface] = STATE(8), + [sym_protocol_declaration] = STATE(8), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2710), + [sym_class_implementation] = STATE(8), + [sym_category_implementation] = STATE(8), + [sym_ns_enum_specifier] = STATE(3356), + [sym_typeof_specifier] = STATE(3356), + [sym_atomic_specifier] = STATE(3356), + [sym_generic_type_specifier] = STATE(3356), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(8), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4342), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(153), [aux_sym_preproc_include_token1] = ACTIONS(155), [aux_sym_preproc_def_token1] = ACTIONS(157), [aux_sym_preproc_if_token1] = ACTIONS(159), - [aux_sym_preproc_if_token2] = ACTIONS(237), + [aux_sym_preproc_if_token2] = ACTIONS(239), [aux_sym_preproc_ifdef_token1] = ACTIONS(163), [aux_sym_preproc_ifdef_token2] = ACTIONS(163), [aux_sym_preproc_else_token1] = ACTIONS(165), @@ -22459,11 +22432,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(179), [anon_sym_switch] = ACTIONS(181), [anon_sym_case] = ACTIONS(183), @@ -22475,64 +22445,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(195), [anon_sym_continue] = ACTIONS(197), [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_POUNDimport] = ACTIONS(201), [anon_sym_ATimport] = ACTIONS(203), - [sym__ns_assume_nonnull_declaration] = ACTIONS(239), + [sym__ns_assume_nonnull_declaration] = ACTIONS(241), [anon_sym_ATcompatibility_alias] = ACTIONS(207), [anon_sym_ATprotocol] = ACTIONS(209), [anon_sym_ATclass] = ACTIONS(211), [anon_sym_ATinterface] = ACTIONS(213), [sym_class_interface_attribute_sepcifier] = ACTIONS(215), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), [anon_sym_ATimplementation] = ACTIONS(217), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(177), [sym_Class] = ACTIONS(131), @@ -22547,8 +22520,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -22560,107 +22533,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [7] = { - [sym_preproc_include] = STATE(5), - [sym_preproc_def] = STATE(5), - [sym_preproc_function_def] = STATE(5), - [sym_preproc_if] = STATE(5), - [sym_preproc_ifdef] = STATE(5), - [sym_preproc_else] = STATE(5775), - [sym_preproc_elif] = STATE(5775), - [sym_function_definition] = STATE(5), - [sym_declaration] = STATE(5), - [sym_type_definition] = STATE(5), - [sym__declaration_specifiers] = STATE(4708), - [sym_linkage_specification] = STATE(5), - [sym_attribute_specifier] = STATE(3254), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3000), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3417), - [sym_sized_type_specifier] = STATE(3417), - [sym_enum_specifier] = STATE(3417), - [sym_struct_specifier] = STATE(3417), - [sym_union_specifier] = STATE(3417), - [sym__statement] = STATE(5), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(3417), - [sym__import] = STATE(5), - [sym_preproc_import] = STATE(5), - [sym_module_import] = STATE(5), - [sym_compatibility_alias_declaration] = STATE(5), - [sym_protocol_forward_declaration] = STATE(5), - [sym_class_forward_declaration] = STATE(5), - [sym_class_interface] = STATE(5), - [sym_category_interface] = STATE(5), - [sym_protocol_declaration] = STATE(5), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2833), - [sym_class_implementation] = STATE(5), - [sym_category_implementation] = STATE(5), - [sym_typeof_specifier] = STATE(3417), - [sym_atomic_specifier] = STATE(3417), - [sym_generic_type_specifier] = STATE(3417), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(5), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4304), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(5713), + [sym_preproc_elif] = STATE(5713), + [sym_function_definition] = STATE(16), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_specifiers] = STATE(4725), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(3194), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2842), + [sym_compound_statement] = STATE(176), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3356), + [sym_enum_specifier] = STATE(3356), + [sym_struct_specifier] = STATE(3356), + [sym_union_specifier] = STATE(3356), + [sym__statement] = STATE(16), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(16), + [sym_macro_type_specifier] = STATE(3356), + [sym__import] = STATE(16), + [sym_preproc_import] = STATE(16), + [sym_module_import] = STATE(16), + [sym_compatibility_alias_declaration] = STATE(16), + [sym_protocol_forward_declaration] = STATE(16), + [sym_class_forward_declaration] = STATE(16), + [sym_class_interface] = STATE(16), + [sym_category_interface] = STATE(16), + [sym_protocol_declaration] = STATE(16), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2710), + [sym_class_implementation] = STATE(16), + [sym_category_implementation] = STATE(16), + [sym_ns_enum_specifier] = STATE(3356), + [sym_typeof_specifier] = STATE(3356), + [sym_atomic_specifier] = STATE(3356), + [sym_generic_type_specifier] = STATE(3356), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4342), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(153), [aux_sym_preproc_include_token1] = ACTIONS(155), [aux_sym_preproc_def_token1] = ACTIONS(157), [aux_sym_preproc_if_token1] = ACTIONS(159), - [aux_sym_preproc_if_token2] = ACTIONS(241), + [aux_sym_preproc_if_token2] = ACTIONS(243), [aux_sym_preproc_ifdef_token1] = ACTIONS(163), [aux_sym_preproc_ifdef_token2] = ACTIONS(163), [aux_sym_preproc_else_token1] = ACTIONS(165), @@ -22729,11 +22703,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(179), [anon_sym_switch] = ACTIONS(181), [anon_sym_case] = ACTIONS(183), @@ -22745,64 +22716,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(195), [anon_sym_continue] = ACTIONS(197), [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_POUNDimport] = ACTIONS(201), [anon_sym_ATimport] = ACTIONS(203), - [sym__ns_assume_nonnull_declaration] = ACTIONS(243), + [sym__ns_assume_nonnull_declaration] = ACTIONS(237), [anon_sym_ATcompatibility_alias] = ACTIONS(207), [anon_sym_ATprotocol] = ACTIONS(209), [anon_sym_ATclass] = ACTIONS(211), [anon_sym_ATinterface] = ACTIONS(213), [sym_class_interface_attribute_sepcifier] = ACTIONS(215), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), [anon_sym_ATimplementation] = ACTIONS(217), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(177), [sym_Class] = ACTIONS(131), @@ -22817,8 +22791,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -22835,57 +22809,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_function_def] = STATE(16), [sym_preproc_if] = STATE(16), [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(5317), - [sym_preproc_elif] = STATE(5317), + [sym_preproc_else] = STATE(5729), + [sym_preproc_elif] = STATE(5729), [sym_function_definition] = STATE(16), [sym_declaration] = STATE(16), [sym_type_definition] = STATE(16), - [sym__declaration_specifiers] = STATE(4708), + [sym__declaration_specifiers] = STATE(4725), [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(3254), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3000), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3417), - [sym_sized_type_specifier] = STATE(3417), - [sym_enum_specifier] = STATE(3417), - [sym_struct_specifier] = STATE(3417), - [sym_union_specifier] = STATE(3417), + [sym_attribute_specifier] = STATE(3194), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2842), + [sym_compound_statement] = STATE(176), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3356), + [sym_enum_specifier] = STATE(3356), + [sym_struct_specifier] = STATE(3356), + [sym_union_specifier] = STATE(3356), [sym__statement] = STATE(16), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(3417), + [sym_macro_type_specifier] = STATE(3356), [sym__import] = STATE(16), [sym_preproc_import] = STATE(16), [sym_module_import] = STATE(16), @@ -22895,37 +22869,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_interface] = STATE(16), [sym_category_interface] = STATE(16), [sym_protocol_declaration] = STATE(16), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2833), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2710), [sym_class_implementation] = STATE(16), [sym_category_implementation] = STATE(16), - [sym_typeof_specifier] = STATE(3417), - [sym_atomic_specifier] = STATE(3417), - [sym_generic_type_specifier] = STATE(3417), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym_ns_enum_specifier] = STATE(3356), + [sym_typeof_specifier] = STATE(3356), + [sym_atomic_specifier] = STATE(3356), + [sym_generic_type_specifier] = STATE(3356), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [aux_sym_translation_unit_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4304), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4342), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(153), [aux_sym_preproc_include_token1] = ACTIONS(155), [aux_sym_preproc_def_token1] = ACTIONS(157), @@ -22999,11 +22974,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(179), [anon_sym_switch] = ACTIONS(181), [anon_sym_case] = ACTIONS(183), @@ -23015,64 +22987,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(195), [anon_sym_continue] = ACTIONS(197), [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_POUNDimport] = ACTIONS(201), [anon_sym_ATimport] = ACTIONS(203), - [sym__ns_assume_nonnull_declaration] = ACTIONS(233), + [sym__ns_assume_nonnull_declaration] = ACTIONS(237), [anon_sym_ATcompatibility_alias] = ACTIONS(207), [anon_sym_ATprotocol] = ACTIONS(209), [anon_sym_ATclass] = ACTIONS(211), [anon_sym_ATinterface] = ACTIONS(213), [sym_class_interface_attribute_sepcifier] = ACTIONS(215), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), [anon_sym_ATimplementation] = ACTIONS(217), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(177), [sym_Class] = ACTIONS(131), @@ -23087,8 +23062,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -23100,102 +23075,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [9] = { - [sym_preproc_include] = STATE(8), - [sym_preproc_def] = STATE(8), - [sym_preproc_function_def] = STATE(8), - [sym_preproc_if] = STATE(8), - [sym_preproc_ifdef] = STATE(8), - [sym_preproc_else] = STATE(5261), - [sym_preproc_elif] = STATE(5261), - [sym_function_definition] = STATE(8), - [sym_declaration] = STATE(8), - [sym_type_definition] = STATE(8), - [sym__declaration_specifiers] = STATE(4708), - [sym_linkage_specification] = STATE(8), - [sym_attribute_specifier] = STATE(3254), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3000), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3417), - [sym_sized_type_specifier] = STATE(3417), - [sym_enum_specifier] = STATE(3417), - [sym_struct_specifier] = STATE(3417), - [sym_union_specifier] = STATE(3417), - [sym__statement] = STATE(8), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(8), - [sym_macro_type_specifier] = STATE(3417), - [sym__import] = STATE(8), - [sym_preproc_import] = STATE(8), - [sym_module_import] = STATE(8), - [sym_compatibility_alias_declaration] = STATE(8), - [sym_protocol_forward_declaration] = STATE(8), - [sym_class_forward_declaration] = STATE(8), - [sym_class_interface] = STATE(8), - [sym_category_interface] = STATE(8), - [sym_protocol_declaration] = STATE(8), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2833), - [sym_class_implementation] = STATE(8), - [sym_category_implementation] = STATE(8), - [sym_typeof_specifier] = STATE(3417), - [sym_atomic_specifier] = STATE(3417), - [sym_generic_type_specifier] = STATE(3417), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(8), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4304), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_if] = STATE(14), + [sym_preproc_ifdef] = STATE(14), + [sym_preproc_else] = STATE(5623), + [sym_preproc_elif] = STATE(5623), + [sym_function_definition] = STATE(14), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_specifiers] = STATE(4725), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(3194), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2842), + [sym_compound_statement] = STATE(176), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3356), + [sym_enum_specifier] = STATE(3356), + [sym_struct_specifier] = STATE(3356), + [sym_union_specifier] = STATE(3356), + [sym__statement] = STATE(14), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(3356), + [sym__import] = STATE(14), + [sym_preproc_import] = STATE(14), + [sym_module_import] = STATE(14), + [sym_compatibility_alias_declaration] = STATE(14), + [sym_protocol_forward_declaration] = STATE(14), + [sym_class_forward_declaration] = STATE(14), + [sym_class_interface] = STATE(14), + [sym_category_interface] = STATE(14), + [sym_protocol_declaration] = STATE(14), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2710), + [sym_class_implementation] = STATE(14), + [sym_category_implementation] = STATE(14), + [sym_ns_enum_specifier] = STATE(3356), + [sym_typeof_specifier] = STATE(3356), + [sym_atomic_specifier] = STATE(3356), + [sym_generic_type_specifier] = STATE(3356), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4342), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(153), [aux_sym_preproc_include_token1] = ACTIONS(155), [aux_sym_preproc_def_token1] = ACTIONS(157), @@ -23269,11 +23245,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(179), [anon_sym_switch] = ACTIONS(181), [anon_sym_case] = ACTIONS(183), @@ -23285,23 +23258,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(195), [anon_sym_continue] = ACTIONS(197), [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_POUNDimport] = ACTIONS(201), [anon_sym_ATimport] = ACTIONS(203), @@ -23311,38 +23284,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATclass] = ACTIONS(211), [anon_sym_ATinterface] = ACTIONS(213), [sym_class_interface_attribute_sepcifier] = ACTIONS(215), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), [anon_sym_ATimplementation] = ACTIONS(217), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(177), [sym_Class] = ACTIONS(131), @@ -23357,8 +23333,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -23375,57 +23351,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_function_def] = STATE(16), [sym_preproc_if] = STATE(16), [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(5608), - [sym_preproc_elif] = STATE(5608), + [sym_preproc_else] = STATE(5564), + [sym_preproc_elif] = STATE(5564), [sym_function_definition] = STATE(16), [sym_declaration] = STATE(16), [sym_type_definition] = STATE(16), - [sym__declaration_specifiers] = STATE(4708), + [sym__declaration_specifiers] = STATE(4725), [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(3254), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3000), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3417), - [sym_sized_type_specifier] = STATE(3417), - [sym_enum_specifier] = STATE(3417), - [sym_struct_specifier] = STATE(3417), - [sym_union_specifier] = STATE(3417), + [sym_attribute_specifier] = STATE(3194), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2842), + [sym_compound_statement] = STATE(176), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3356), + [sym_enum_specifier] = STATE(3356), + [sym_struct_specifier] = STATE(3356), + [sym_union_specifier] = STATE(3356), [sym__statement] = STATE(16), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(3417), + [sym_macro_type_specifier] = STATE(3356), [sym__import] = STATE(16), [sym_preproc_import] = STATE(16), [sym_module_import] = STATE(16), @@ -23435,37 +23411,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_interface] = STATE(16), [sym_category_interface] = STATE(16), [sym_protocol_declaration] = STATE(16), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2833), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2710), [sym_class_implementation] = STATE(16), [sym_category_implementation] = STATE(16), - [sym_typeof_specifier] = STATE(3417), - [sym_atomic_specifier] = STATE(3417), - [sym_generic_type_specifier] = STATE(3417), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym_ns_enum_specifier] = STATE(3356), + [sym_typeof_specifier] = STATE(3356), + [sym_atomic_specifier] = STATE(3356), + [sym_generic_type_specifier] = STATE(3356), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [aux_sym_translation_unit_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4304), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4342), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(153), [aux_sym_preproc_include_token1] = ACTIONS(155), [aux_sym_preproc_def_token1] = ACTIONS(157), @@ -23539,11 +23516,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(179), [anon_sym_switch] = ACTIONS(181), [anon_sym_case] = ACTIONS(183), @@ -23555,64 +23529,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(195), [anon_sym_continue] = ACTIONS(197), [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_POUNDimport] = ACTIONS(201), [anon_sym_ATimport] = ACTIONS(203), - [sym__ns_assume_nonnull_declaration] = ACTIONS(233), + [sym__ns_assume_nonnull_declaration] = ACTIONS(237), [anon_sym_ATcompatibility_alias] = ACTIONS(207), [anon_sym_ATprotocol] = ACTIONS(209), [anon_sym_ATclass] = ACTIONS(211), [anon_sym_ATinterface] = ACTIONS(213), [sym_class_interface_attribute_sepcifier] = ACTIONS(215), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), [anon_sym_ATimplementation] = ACTIONS(217), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(177), [sym_Class] = ACTIONS(131), @@ -23627,8 +23604,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -23640,102 +23617,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [11] = { - [sym_preproc_include] = STATE(16), - [sym_preproc_def] = STATE(16), - [sym_preproc_function_def] = STATE(16), - [sym_preproc_if] = STATE(16), - [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(5259), - [sym_preproc_elif] = STATE(5259), - [sym_function_definition] = STATE(16), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_specifiers] = STATE(4708), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(3254), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3000), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3417), - [sym_sized_type_specifier] = STATE(3417), - [sym_enum_specifier] = STATE(3417), - [sym_struct_specifier] = STATE(3417), - [sym_union_specifier] = STATE(3417), - [sym__statement] = STATE(16), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(3417), - [sym__import] = STATE(16), - [sym_preproc_import] = STATE(16), - [sym_module_import] = STATE(16), - [sym_compatibility_alias_declaration] = STATE(16), - [sym_protocol_forward_declaration] = STATE(16), - [sym_class_forward_declaration] = STATE(16), - [sym_class_interface] = STATE(16), - [sym_category_interface] = STATE(16), - [sym_protocol_declaration] = STATE(16), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2833), - [sym_class_implementation] = STATE(16), - [sym_category_implementation] = STATE(16), - [sym_typeof_specifier] = STATE(3417), - [sym_atomic_specifier] = STATE(3417), - [sym_generic_type_specifier] = STATE(3417), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4304), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(5), + [sym_preproc_def] = STATE(5), + [sym_preproc_function_def] = STATE(5), + [sym_preproc_if] = STATE(5), + [sym_preproc_ifdef] = STATE(5), + [sym_preproc_else] = STATE(5350), + [sym_preproc_elif] = STATE(5350), + [sym_function_definition] = STATE(5), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), + [sym__declaration_specifiers] = STATE(4725), + [sym_linkage_specification] = STATE(5), + [sym_attribute_specifier] = STATE(3194), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2842), + [sym_compound_statement] = STATE(176), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3356), + [sym_enum_specifier] = STATE(3356), + [sym_struct_specifier] = STATE(3356), + [sym_union_specifier] = STATE(3356), + [sym__statement] = STATE(5), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(3356), + [sym__import] = STATE(5), + [sym_preproc_import] = STATE(5), + [sym_module_import] = STATE(5), + [sym_compatibility_alias_declaration] = STATE(5), + [sym_protocol_forward_declaration] = STATE(5), + [sym_class_forward_declaration] = STATE(5), + [sym_class_interface] = STATE(5), + [sym_category_interface] = STATE(5), + [sym_protocol_declaration] = STATE(5), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2710), + [sym_class_implementation] = STATE(5), + [sym_category_implementation] = STATE(5), + [sym_ns_enum_specifier] = STATE(3356), + [sym_typeof_specifier] = STATE(3356), + [sym_atomic_specifier] = STATE(3356), + [sym_generic_type_specifier] = STATE(3356), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(5), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4342), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(153), [aux_sym_preproc_include_token1] = ACTIONS(155), [aux_sym_preproc_def_token1] = ACTIONS(157), @@ -23809,11 +23787,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(179), [anon_sym_switch] = ACTIONS(181), [anon_sym_case] = ACTIONS(183), @@ -23825,64 +23800,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(195), [anon_sym_continue] = ACTIONS(197), [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_POUNDimport] = ACTIONS(201), [anon_sym_ATimport] = ACTIONS(203), - [sym__ns_assume_nonnull_declaration] = ACTIONS(233), + [sym__ns_assume_nonnull_declaration] = ACTIONS(255), [anon_sym_ATcompatibility_alias] = ACTIONS(207), [anon_sym_ATprotocol] = ACTIONS(209), [anon_sym_ATclass] = ACTIONS(211), [anon_sym_ATinterface] = ACTIONS(213), [sym_class_interface_attribute_sepcifier] = ACTIONS(215), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), [anon_sym_ATimplementation] = ACTIONS(217), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(177), [sym_Class] = ACTIONS(131), @@ -23897,8 +23875,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -23915,57 +23893,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_function_def] = STATE(16), [sym_preproc_if] = STATE(16), [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(5567), - [sym_preproc_elif] = STATE(5567), + [sym_preproc_else] = STATE(5444), + [sym_preproc_elif] = STATE(5444), [sym_function_definition] = STATE(16), [sym_declaration] = STATE(16), [sym_type_definition] = STATE(16), - [sym__declaration_specifiers] = STATE(4708), + [sym__declaration_specifiers] = STATE(4725), [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(3254), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3000), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3417), - [sym_sized_type_specifier] = STATE(3417), - [sym_enum_specifier] = STATE(3417), - [sym_struct_specifier] = STATE(3417), - [sym_union_specifier] = STATE(3417), + [sym_attribute_specifier] = STATE(3194), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2842), + [sym_compound_statement] = STATE(176), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3356), + [sym_enum_specifier] = STATE(3356), + [sym_struct_specifier] = STATE(3356), + [sym_union_specifier] = STATE(3356), [sym__statement] = STATE(16), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(3417), + [sym_macro_type_specifier] = STATE(3356), [sym__import] = STATE(16), [sym_preproc_import] = STATE(16), [sym_module_import] = STATE(16), @@ -23975,307 +23953,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_interface] = STATE(16), [sym_category_interface] = STATE(16), [sym_protocol_declaration] = STATE(16), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2833), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2710), [sym_class_implementation] = STATE(16), [sym_category_implementation] = STATE(16), - [sym_typeof_specifier] = STATE(3417), - [sym_atomic_specifier] = STATE(3417), - [sym_generic_type_specifier] = STATE(3417), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym_ns_enum_specifier] = STATE(3356), + [sym_typeof_specifier] = STATE(3356), + [sym_atomic_specifier] = STATE(3356), + [sym_generic_type_specifier] = STATE(3356), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [aux_sym_translation_unit_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4304), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(153), - [aux_sym_preproc_include_token1] = ACTIONS(155), - [aux_sym_preproc_def_token1] = ACTIONS(157), - [aux_sym_preproc_if_token1] = ACTIONS(159), - [aux_sym_preproc_if_token2] = ACTIONS(255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(163), - [aux_sym_preproc_else_token1] = ACTIONS(165), - [aux_sym_preproc_elif_token1] = ACTIONS(167), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_typedef] = ACTIONS(171), - [anon_sym_extern] = ACTIONS(173), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(177), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(201), - [anon_sym_ATimport] = ACTIONS(203), - [sym__ns_assume_nonnull_declaration] = ACTIONS(233), - [anon_sym_ATcompatibility_alias] = ACTIONS(207), - [anon_sym_ATprotocol] = ACTIONS(209), - [anon_sym_ATclass] = ACTIONS(211), - [anon_sym_ATinterface] = ACTIONS(213), - [sym_class_interface_attribute_sepcifier] = ACTIONS(215), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(217), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(177), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(177), - [sym_IMP] = ACTIONS(177), - [sym_BOOL] = ACTIONS(177), - [sym_auto] = ACTIONS(177), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [13] = { - [sym_preproc_include] = STATE(16), - [sym_preproc_def] = STATE(16), - [sym_preproc_function_def] = STATE(16), - [sym_preproc_if] = STATE(16), - [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(5525), - [sym_preproc_elif] = STATE(5525), - [sym_function_definition] = STATE(16), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_specifiers] = STATE(4708), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(3254), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3000), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3417), - [sym_sized_type_specifier] = STATE(3417), - [sym_enum_specifier] = STATE(3417), - [sym_struct_specifier] = STATE(3417), - [sym_union_specifier] = STATE(3417), - [sym__statement] = STATE(16), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(3417), - [sym__import] = STATE(16), - [sym_preproc_import] = STATE(16), - [sym_module_import] = STATE(16), - [sym_compatibility_alias_declaration] = STATE(16), - [sym_protocol_forward_declaration] = STATE(16), - [sym_class_forward_declaration] = STATE(16), - [sym_class_interface] = STATE(16), - [sym_category_interface] = STATE(16), - [sym_protocol_declaration] = STATE(16), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2833), - [sym_class_implementation] = STATE(16), - [sym_category_implementation] = STATE(16), - [sym_typeof_specifier] = STATE(3417), - [sym_atomic_specifier] = STATE(3417), - [sym_generic_type_specifier] = STATE(3417), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4304), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4342), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(153), [aux_sym_preproc_include_token1] = ACTIONS(155), [aux_sym_preproc_def_token1] = ACTIONS(157), @@ -24349,11 +24058,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(179), [anon_sym_switch] = ACTIONS(181), [anon_sym_case] = ACTIONS(183), @@ -24365,64 +24071,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(195), [anon_sym_continue] = ACTIONS(197), [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_POUNDimport] = ACTIONS(201), [anon_sym_ATimport] = ACTIONS(203), - [sym__ns_assume_nonnull_declaration] = ACTIONS(233), + [sym__ns_assume_nonnull_declaration] = ACTIONS(237), [anon_sym_ATcompatibility_alias] = ACTIONS(207), [anon_sym_ATprotocol] = ACTIONS(209), [anon_sym_ATclass] = ACTIONS(211), [anon_sym_ATinterface] = ACTIONS(213), [sym_class_interface_attribute_sepcifier] = ACTIONS(215), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), [anon_sym_ATimplementation] = ACTIONS(217), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(177), [sym_Class] = ACTIONS(131), @@ -24437,8 +24146,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -24449,103 +24158,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [14] = { - [sym_preproc_include] = STATE(13), - [sym_preproc_def] = STATE(13), - [sym_preproc_function_def] = STATE(13), - [sym_preproc_if] = STATE(13), - [sym_preproc_ifdef] = STATE(13), - [sym_preproc_else] = STATE(5404), - [sym_preproc_elif] = STATE(5404), - [sym_function_definition] = STATE(13), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), - [sym__declaration_specifiers] = STATE(4708), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(3254), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3000), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3417), - [sym_sized_type_specifier] = STATE(3417), - [sym_enum_specifier] = STATE(3417), - [sym_struct_specifier] = STATE(3417), - [sym_union_specifier] = STATE(3417), - [sym__statement] = STATE(13), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(3417), - [sym__import] = STATE(13), - [sym_preproc_import] = STATE(13), - [sym_module_import] = STATE(13), - [sym_compatibility_alias_declaration] = STATE(13), - [sym_protocol_forward_declaration] = STATE(13), - [sym_class_forward_declaration] = STATE(13), - [sym_class_interface] = STATE(13), - [sym_category_interface] = STATE(13), - [sym_protocol_declaration] = STATE(13), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2833), - [sym_class_implementation] = STATE(13), - [sym_category_implementation] = STATE(13), - [sym_typeof_specifier] = STATE(3417), - [sym_atomic_specifier] = STATE(3417), - [sym_generic_type_specifier] = STATE(3417), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4304), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [13] = { + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(5315), + [sym_preproc_elif] = STATE(5315), + [sym_function_definition] = STATE(16), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_specifiers] = STATE(4725), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(3194), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2842), + [sym_compound_statement] = STATE(176), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3356), + [sym_enum_specifier] = STATE(3356), + [sym_struct_specifier] = STATE(3356), + [sym_union_specifier] = STATE(3356), + [sym__statement] = STATE(16), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(16), + [sym_macro_type_specifier] = STATE(3356), + [sym__import] = STATE(16), + [sym_preproc_import] = STATE(16), + [sym_module_import] = STATE(16), + [sym_compatibility_alias_declaration] = STATE(16), + [sym_protocol_forward_declaration] = STATE(16), + [sym_class_forward_declaration] = STATE(16), + [sym_class_interface] = STATE(16), + [sym_category_interface] = STATE(16), + [sym_protocol_declaration] = STATE(16), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2710), + [sym_class_implementation] = STATE(16), + [sym_category_implementation] = STATE(16), + [sym_ns_enum_specifier] = STATE(3356), + [sym_typeof_specifier] = STATE(3356), + [sym_atomic_specifier] = STATE(3356), + [sym_generic_type_specifier] = STATE(3356), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4342), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(153), [aux_sym_preproc_include_token1] = ACTIONS(155), [aux_sym_preproc_def_token1] = ACTIONS(157), @@ -24619,11 +24329,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(179), [anon_sym_switch] = ACTIONS(181), [anon_sym_case] = ACTIONS(183), @@ -24635,64 +24342,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(195), [anon_sym_continue] = ACTIONS(197), [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_POUNDimport] = ACTIONS(201), [anon_sym_ATimport] = ACTIONS(203), - [sym__ns_assume_nonnull_declaration] = ACTIONS(261), + [sym__ns_assume_nonnull_declaration] = ACTIONS(237), [anon_sym_ATcompatibility_alias] = ACTIONS(207), [anon_sym_ATprotocol] = ACTIONS(209), [anon_sym_ATclass] = ACTIONS(211), [anon_sym_ATinterface] = ACTIONS(213), [sym_class_interface_attribute_sepcifier] = ACTIONS(215), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), [anon_sym_ATimplementation] = ACTIONS(217), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(177), [sym_Class] = ACTIONS(131), @@ -24707,8 +24417,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [14] = { + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(5613), + [sym_preproc_elif] = STATE(5613), + [sym_function_definition] = STATE(16), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_specifiers] = STATE(4725), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(3194), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2842), + [sym_compound_statement] = STATE(176), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3356), + [sym_enum_specifier] = STATE(3356), + [sym_struct_specifier] = STATE(3356), + [sym_union_specifier] = STATE(3356), + [sym__statement] = STATE(16), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(16), + [sym_macro_type_specifier] = STATE(3356), + [sym__import] = STATE(16), + [sym_preproc_import] = STATE(16), + [sym_module_import] = STATE(16), + [sym_compatibility_alias_declaration] = STATE(16), + [sym_protocol_forward_declaration] = STATE(16), + [sym_class_forward_declaration] = STATE(16), + [sym_class_interface] = STATE(16), + [sym_category_interface] = STATE(16), + [sym_protocol_declaration] = STATE(16), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2710), + [sym_class_implementation] = STATE(16), + [sym_category_implementation] = STATE(16), + [sym_ns_enum_specifier] = STATE(3356), + [sym_typeof_specifier] = STATE(3356), + [sym_atomic_specifier] = STATE(3356), + [sym_generic_type_specifier] = STATE(3356), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4342), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(159), + [aux_sym_preproc_if_token2] = ACTIONS(261), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [aux_sym_preproc_else_token1] = ACTIONS(165), + [aux_sym_preproc_elif_token1] = ACTIONS(167), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_typedef] = ACTIONS(171), + [anon_sym_extern] = ACTIONS(173), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(177), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(201), + [anon_sym_ATimport] = ACTIONS(203), + [sym__ns_assume_nonnull_declaration] = ACTIONS(237), + [anon_sym_ATcompatibility_alias] = ACTIONS(207), + [anon_sym_ATprotocol] = ACTIONS(209), + [anon_sym_ATclass] = ACTIONS(211), + [anon_sym_ATinterface] = ACTIONS(213), + [sym_class_interface_attribute_sepcifier] = ACTIONS(215), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(217), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(177), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(177), + [sym_IMP] = ACTIONS(177), + [sym_BOOL] = ACTIONS(177), + [sym_auto] = ACTIONS(177), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -24720,102 +24701,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [15] = { - [sym_preproc_include] = STATE(12), - [sym_preproc_def] = STATE(12), - [sym_preproc_function_def] = STATE(12), - [sym_preproc_if] = STATE(12), - [sym_preproc_ifdef] = STATE(12), - [sym_preproc_else] = STATE(5519), - [sym_preproc_elif] = STATE(5519), - [sym_function_definition] = STATE(12), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_specifiers] = STATE(4708), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(3254), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3000), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3417), - [sym_sized_type_specifier] = STATE(3417), - [sym_enum_specifier] = STATE(3417), - [sym_struct_specifier] = STATE(3417), - [sym_union_specifier] = STATE(3417), - [sym__statement] = STATE(12), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(3417), - [sym__import] = STATE(12), - [sym_preproc_import] = STATE(12), - [sym_module_import] = STATE(12), - [sym_compatibility_alias_declaration] = STATE(12), - [sym_protocol_forward_declaration] = STATE(12), - [sym_class_forward_declaration] = STATE(12), - [sym_class_interface] = STATE(12), - [sym_category_interface] = STATE(12), - [sym_protocol_declaration] = STATE(12), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2833), - [sym_class_implementation] = STATE(12), - [sym_category_implementation] = STATE(12), - [sym_typeof_specifier] = STATE(3417), - [sym_atomic_specifier] = STATE(3417), - [sym_generic_type_specifier] = STATE(3417), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4304), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(10), + [sym_preproc_def] = STATE(10), + [sym_preproc_function_def] = STATE(10), + [sym_preproc_if] = STATE(10), + [sym_preproc_ifdef] = STATE(10), + [sym_preproc_else] = STATE(5614), + [sym_preproc_elif] = STATE(5614), + [sym_function_definition] = STATE(10), + [sym_declaration] = STATE(10), + [sym_type_definition] = STATE(10), + [sym__declaration_specifiers] = STATE(4725), + [sym_linkage_specification] = STATE(10), + [sym_attribute_specifier] = STATE(3194), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2842), + [sym_compound_statement] = STATE(176), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3356), + [sym_enum_specifier] = STATE(3356), + [sym_struct_specifier] = STATE(3356), + [sym_union_specifier] = STATE(3356), + [sym__statement] = STATE(10), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(10), + [sym_macro_type_specifier] = STATE(3356), + [sym__import] = STATE(10), + [sym_preproc_import] = STATE(10), + [sym_module_import] = STATE(10), + [sym_compatibility_alias_declaration] = STATE(10), + [sym_protocol_forward_declaration] = STATE(10), + [sym_class_forward_declaration] = STATE(10), + [sym_class_interface] = STATE(10), + [sym_category_interface] = STATE(10), + [sym_protocol_declaration] = STATE(10), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2710), + [sym_class_implementation] = STATE(10), + [sym_category_implementation] = STATE(10), + [sym_ns_enum_specifier] = STATE(3356), + [sym_typeof_specifier] = STATE(3356), + [sym_atomic_specifier] = STATE(3356), + [sym_generic_type_specifier] = STATE(3356), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(10), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4342), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(153), [aux_sym_preproc_include_token1] = ACTIONS(155), [aux_sym_preproc_def_token1] = ACTIONS(157), @@ -24889,11 +24871,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(177), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(179), [anon_sym_switch] = ACTIONS(181), [anon_sym_case] = ACTIONS(183), @@ -24905,23 +24884,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(195), [anon_sym_continue] = ACTIONS(197), [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_POUNDimport] = ACTIONS(201), [anon_sym_ATimport] = ACTIONS(203), @@ -24931,38 +24910,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATclass] = ACTIONS(211), [anon_sym_ATinterface] = ACTIONS(213), [sym_class_interface_attribute_sepcifier] = ACTIONS(215), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), [anon_sym_ATimplementation] = ACTIONS(217), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(177), [sym_Class] = ACTIONS(131), @@ -24977,8 +24959,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -24998,52 +24980,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(16), [sym_declaration] = STATE(16), [sym_type_definition] = STATE(16), - [sym__declaration_specifiers] = STATE(4708), + [sym__declaration_specifiers] = STATE(4725), [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(3254), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3000), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3417), - [sym_sized_type_specifier] = STATE(3417), - [sym_enum_specifier] = STATE(3417), - [sym_struct_specifier] = STATE(3417), - [sym_union_specifier] = STATE(3417), + [sym_attribute_specifier] = STATE(3194), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2842), + [sym_compound_statement] = STATE(176), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3356), + [sym_sized_type_specifier] = STATE(3356), + [sym_enum_specifier] = STATE(3356), + [sym_struct_specifier] = STATE(3356), + [sym_union_specifier] = STATE(3356), [sym__statement] = STATE(16), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(3417), + [sym_macro_type_specifier] = STATE(3356), [sym__import] = STATE(16), [sym_preproc_import] = STATE(16), [sym_module_import] = STATE(16), @@ -25053,37 +25035,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_interface] = STATE(16), [sym_category_interface] = STATE(16), [sym_protocol_declaration] = STATE(16), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2833), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2710), [sym_class_implementation] = STATE(16), [sym_category_implementation] = STATE(16), - [sym_typeof_specifier] = STATE(3417), - [sym_atomic_specifier] = STATE(3417), - [sym_generic_type_specifier] = STATE(3417), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym_ns_enum_specifier] = STATE(3356), + [sym_typeof_specifier] = STATE(3356), + [sym_atomic_specifier] = STATE(3356), + [sym_generic_type_specifier] = STATE(3356), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [aux_sym_translation_unit_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4304), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4342), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(270), [aux_sym_preproc_def_token1] = ACTIONS(273), @@ -25157,80 +25140,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(332), [sym_primitive_type] = ACTIONS(335), [anon_sym_enum] = ACTIONS(338), - [anon_sym_NS_ENUM] = ACTIONS(341), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(341), - [anon_sym_NS_OPTIONS] = ACTIONS(341), - [anon_sym_struct] = ACTIONS(344), - [anon_sym_union] = ACTIONS(347), - [anon_sym_if] = ACTIONS(350), - [anon_sym_switch] = ACTIONS(353), - [anon_sym_case] = ACTIONS(356), - [anon_sym_default] = ACTIONS(359), - [anon_sym_while] = ACTIONS(362), - [anon_sym_do] = ACTIONS(365), - [anon_sym_for] = ACTIONS(368), - [anon_sym_return] = ACTIONS(371), - [anon_sym_break] = ACTIONS(374), - [anon_sym_continue] = ACTIONS(377), - [anon_sym_goto] = ACTIONS(380), - [anon_sym_DASH_DASH] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(383), - [anon_sym_sizeof] = ACTIONS(386), - [sym_number_literal] = ACTIONS(389), - [anon_sym_L_SQUOTE] = ACTIONS(392), - [anon_sym_u_SQUOTE] = ACTIONS(392), - [anon_sym_U_SQUOTE] = ACTIONS(392), - [anon_sym_u8_SQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_L_DQUOTE] = ACTIONS(395), - [anon_sym_u_DQUOTE] = ACTIONS(395), - [anon_sym_U_DQUOTE] = ACTIONS(395), - [anon_sym_u8_DQUOTE] = ACTIONS(395), - [anon_sym_DQUOTE] = ACTIONS(395), - [sym_true] = ACTIONS(398), - [sym_false] = ACTIONS(398), - [sym_null] = ACTIONS(398), + [anon_sym_struct] = ACTIONS(341), + [anon_sym_union] = ACTIONS(344), + [anon_sym_if] = ACTIONS(347), + [anon_sym_switch] = ACTIONS(350), + [anon_sym_case] = ACTIONS(353), + [anon_sym_default] = ACTIONS(356), + [anon_sym_while] = ACTIONS(359), + [anon_sym_do] = ACTIONS(362), + [anon_sym_for] = ACTIONS(365), + [anon_sym_return] = ACTIONS(368), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(374), + [anon_sym_goto] = ACTIONS(377), + [anon_sym_DASH_DASH] = ACTIONS(380), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_sizeof] = ACTIONS(383), + [sym_number_literal] = ACTIONS(386), + [anon_sym_L_SQUOTE] = ACTIONS(389), + [anon_sym_u_SQUOTE] = ACTIONS(389), + [anon_sym_U_SQUOTE] = ACTIONS(389), + [anon_sym_u8_SQUOTE] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_L_DQUOTE] = ACTIONS(392), + [anon_sym_u_DQUOTE] = ACTIONS(392), + [anon_sym_U_DQUOTE] = ACTIONS(392), + [anon_sym_u8_DQUOTE] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(392), + [sym_true] = ACTIONS(395), + [sym_false] = ACTIONS(395), + [sym_null] = ACTIONS(395), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(401), - [anon_sym_ATimport] = ACTIONS(404), - [sym__ns_assume_nonnull_declaration] = ACTIONS(407), - [anon_sym_ATcompatibility_alias] = ACTIONS(410), - [anon_sym_ATprotocol] = ACTIONS(413), - [anon_sym_ATclass] = ACTIONS(416), - [anon_sym_ATinterface] = ACTIONS(419), - [sym_class_interface_attribute_sepcifier] = ACTIONS(422), - [sym_method_attribute_specifier] = ACTIONS(425), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(428), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(428), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(431), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(431), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(431), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(431), - [anon_sym_NS_AVAILABLE] = ACTIONS(434), - [anon_sym___IOS_AVAILABLE] = ACTIONS(434), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(434), - [anon_sym_API_AVAILABLE] = ACTIONS(434), - [anon_sym_API_UNAVAILABLE] = ACTIONS(434), - [anon_sym_API_DEPRECATED] = ACTIONS(434), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(434), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(434), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(434), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(434), - [anon_sym___deprecated_msg] = ACTIONS(434), - [anon_sym___deprecated_enum_msg] = ACTIONS(434), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(434), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(434), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(434), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(434), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(437), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(440), - [anon_sym_ATimplementation] = ACTIONS(443), + [anon_sym_POUNDimport] = ACTIONS(398), + [anon_sym_ATimport] = ACTIONS(401), + [sym__ns_assume_nonnull_declaration] = ACTIONS(404), + [anon_sym_ATcompatibility_alias] = ACTIONS(407), + [anon_sym_ATprotocol] = ACTIONS(410), + [anon_sym_ATclass] = ACTIONS(413), + [anon_sym_ATinterface] = ACTIONS(416), + [sym_class_interface_attribute_sepcifier] = ACTIONS(419), + [sym_method_attribute_specifier] = ACTIONS(422), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(425), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(425), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(428), + [anon_sym_NS_AVAILABLE] = ACTIONS(431), + [anon_sym___IOS_AVAILABLE] = ACTIONS(431), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(431), + [anon_sym_API_AVAILABLE] = ACTIONS(431), + [anon_sym_API_UNAVAILABLE] = ACTIONS(431), + [anon_sym_API_DEPRECATED] = ACTIONS(431), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(431), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(431), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(431), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(431), + [anon_sym___deprecated_msg] = ACTIONS(431), + [anon_sym___deprecated_enum_msg] = ACTIONS(431), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(431), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(431), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(431), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(431), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(434), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(437), + [anon_sym_ATimplementation] = ACTIONS(440), + [anon_sym_NS_ENUM] = ACTIONS(443), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(443), + [anon_sym_NS_OPTIONS] = ACTIONS(443), [anon_sym_typeof] = ACTIONS(446), [anon_sym___typeof] = ACTIONS(446), [anon_sym___typeof__] = ACTIONS(446), [sym_self] = ACTIONS(449), - [sym_super] = ACTIONS(398), - [sym_nil] = ACTIONS(398), + [sym_super] = ACTIONS(395), + [sym_nil] = ACTIONS(395), [sym_id] = ACTIONS(452), [sym_instancetype] = ACTIONS(335), [sym_Class] = ACTIONS(452), @@ -25245,8 +25228,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(467), [anon_sym_ATencode] = ACTIONS(470), [anon_sym_AT] = ACTIONS(473), - [sym_YES] = ACTIONS(398), - [sym_NO] = ACTIONS(398), + [sym_YES] = ACTIONS(395), + [sym_NO] = ACTIONS(395), [anon_sym___builtin_available] = ACTIONS(476), [anon_sym_ATavailable] = ACTIONS(479), [anon_sym_va_arg] = ACTIONS(482), @@ -25266,52 +25249,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(17), [sym_declaration] = STATE(17), [sym_type_definition] = STATE(17), - [sym__declaration_specifiers] = STATE(4707), + [sym__declaration_specifiers] = STATE(4727), [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), [sym__statement] = STATE(17), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(3413), + [sym_macro_type_specifier] = STATE(3358), [sym__import] = STATE(17), [sym_preproc_import] = STATE(17), [sym_module_import] = STATE(17), @@ -25321,37 +25304,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_interface] = STATE(17), [sym_category_interface] = STATE(17), [sym_protocol_declaration] = STATE(17), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), [sym_class_implementation] = STATE(17), [sym_category_implementation] = STATE(17), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [aux_sym_translation_unit_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [ts_builtin_sym_end] = ACTIONS(485), [sym_identifier] = ACTIONS(487), [aux_sym_preproc_include_token1] = ACTIONS(490), @@ -25424,11 +25408,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(332), [sym_primitive_type] = ACTIONS(514), [anon_sym_enum] = ACTIONS(338), - [anon_sym_NS_ENUM] = ACTIONS(341), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(341), - [anon_sym_NS_OPTIONS] = ACTIONS(341), - [anon_sym_struct] = ACTIONS(344), - [anon_sym_union] = ACTIONS(347), + [anon_sym_struct] = ACTIONS(341), + [anon_sym_union] = ACTIONS(344), [anon_sym_if] = ACTIONS(517), [anon_sym_switch] = ACTIONS(520), [anon_sym_case] = ACTIONS(523), @@ -25440,23 +25421,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(541), [anon_sym_continue] = ACTIONS(544), [anon_sym_goto] = ACTIONS(547), - [anon_sym_DASH_DASH] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(383), - [anon_sym_sizeof] = ACTIONS(386), - [sym_number_literal] = ACTIONS(389), - [anon_sym_L_SQUOTE] = ACTIONS(392), - [anon_sym_u_SQUOTE] = ACTIONS(392), - [anon_sym_U_SQUOTE] = ACTIONS(392), - [anon_sym_u8_SQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_L_DQUOTE] = ACTIONS(395), - [anon_sym_u_DQUOTE] = ACTIONS(395), - [anon_sym_U_DQUOTE] = ACTIONS(395), - [anon_sym_u8_DQUOTE] = ACTIONS(395), - [anon_sym_DQUOTE] = ACTIONS(395), - [sym_true] = ACTIONS(398), - [sym_false] = ACTIONS(398), - [sym_null] = ACTIONS(398), + [anon_sym_DASH_DASH] = ACTIONS(380), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_sizeof] = ACTIONS(383), + [sym_number_literal] = ACTIONS(386), + [anon_sym_L_SQUOTE] = ACTIONS(389), + [anon_sym_u_SQUOTE] = ACTIONS(389), + [anon_sym_U_SQUOTE] = ACTIONS(389), + [anon_sym_u8_SQUOTE] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_L_DQUOTE] = ACTIONS(392), + [anon_sym_u_DQUOTE] = ACTIONS(392), + [anon_sym_U_DQUOTE] = ACTIONS(392), + [anon_sym_u8_DQUOTE] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(392), + [sym_true] = ACTIONS(395), + [sym_false] = ACTIONS(395), + [sym_null] = ACTIONS(395), [sym_comment] = ACTIONS(3), [anon_sym_POUNDimport] = ACTIONS(550), [anon_sym_ATimport] = ACTIONS(553), @@ -25466,38 +25447,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATclass] = ACTIONS(565), [anon_sym_ATinterface] = ACTIONS(568), [sym_class_interface_attribute_sepcifier] = ACTIONS(571), - [sym_method_attribute_specifier] = ACTIONS(425), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(428), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(428), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(431), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(431), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(431), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(431), - [anon_sym_NS_AVAILABLE] = ACTIONS(434), - [anon_sym___IOS_AVAILABLE] = ACTIONS(434), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(434), - [anon_sym_API_AVAILABLE] = ACTIONS(434), - [anon_sym_API_UNAVAILABLE] = ACTIONS(434), - [anon_sym_API_DEPRECATED] = ACTIONS(434), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(434), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(434), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(434), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(434), - [anon_sym___deprecated_msg] = ACTIONS(434), - [anon_sym___deprecated_enum_msg] = ACTIONS(434), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(434), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(434), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(434), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(434), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(437), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(440), + [sym_method_attribute_specifier] = ACTIONS(422), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(425), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(425), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(428), + [anon_sym_NS_AVAILABLE] = ACTIONS(431), + [anon_sym___IOS_AVAILABLE] = ACTIONS(431), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(431), + [anon_sym_API_AVAILABLE] = ACTIONS(431), + [anon_sym_API_UNAVAILABLE] = ACTIONS(431), + [anon_sym_API_DEPRECATED] = ACTIONS(431), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(431), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(431), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(431), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(431), + [anon_sym___deprecated_msg] = ACTIONS(431), + [anon_sym___deprecated_enum_msg] = ACTIONS(431), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(431), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(431), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(431), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(431), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(434), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(437), [anon_sym_ATimplementation] = ACTIONS(574), + [anon_sym_NS_ENUM] = ACTIONS(443), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(443), + [anon_sym_NS_OPTIONS] = ACTIONS(443), [anon_sym_typeof] = ACTIONS(446), [anon_sym___typeof] = ACTIONS(446), [anon_sym___typeof__] = ACTIONS(446), [sym_self] = ACTIONS(449), - [sym_super] = ACTIONS(398), - [sym_nil] = ACTIONS(398), + [sym_super] = ACTIONS(395), + [sym_nil] = ACTIONS(395), [sym_id] = ACTIONS(452), [sym_instancetype] = ACTIONS(514), [sym_Class] = ACTIONS(452), @@ -25512,8 +25496,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(467), [anon_sym_ATencode] = ACTIONS(470), [anon_sym_AT] = ACTIONS(473), - [sym_YES] = ACTIONS(398), - [sym_NO] = ACTIONS(398), + [sym_YES] = ACTIONS(395), + [sym_NO] = ACTIONS(395), [anon_sym___builtin_available] = ACTIONS(476), [anon_sym_ATavailable] = ACTIONS(479), [anon_sym_va_arg] = ACTIONS(482), @@ -25525,100 +25509,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [18] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_specifiers] = STATE(4707), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), - [sym__statement] = STATE(20), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(3413), - [sym__import] = STATE(20), - [sym_preproc_import] = STATE(20), - [sym_module_import] = STATE(20), - [sym_compatibility_alias_declaration] = STATE(20), - [sym_protocol_forward_declaration] = STATE(20), - [sym_class_forward_declaration] = STATE(20), - [sym_class_interface] = STATE(20), - [sym_category_interface] = STATE(20), - [sym_protocol_declaration] = STATE(20), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), - [sym_class_implementation] = STATE(20), - [sym_category_implementation] = STATE(20), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(33), + [sym_preproc_def] = STATE(33), + [sym_preproc_function_def] = STATE(33), + [sym_preproc_if] = STATE(33), + [sym_preproc_ifdef] = STATE(33), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_specifiers] = STATE(4727), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), + [sym__statement] = STATE(33), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(3358), + [sym__import] = STATE(33), + [sym_preproc_import] = STATE(33), + [sym_module_import] = STATE(33), + [sym_compatibility_alias_declaration] = STATE(33), + [sym_protocol_forward_declaration] = STATE(33), + [sym_class_forward_declaration] = STATE(33), + [sym_class_interface] = STATE(33), + [sym_category_interface] = STATE(33), + [sym_protocol_declaration] = STATE(33), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), + [sym_class_implementation] = STATE(33), + [sym_category_implementation] = STATE(33), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(9), [aux_sym_preproc_include_token1] = ACTIONS(11), [aux_sym_preproc_def_token1] = ACTIONS(13), @@ -25690,80 +25675,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), [sym__ns_assume_nonnull_declaration] = ACTIONS(591), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(53), [sym_Class] = ACTIONS(131), @@ -25778,8 +25763,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -25791,100 +25776,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [19] = { - [sym_preproc_include] = STATE(17), - [sym_preproc_def] = STATE(17), - [sym_preproc_function_def] = STATE(17), - [sym_preproc_if] = STATE(17), - [sym_preproc_ifdef] = STATE(17), - [sym_function_definition] = STATE(17), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_specifiers] = STATE(4707), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), - [sym__statement] = STATE(17), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(3413), - [sym__import] = STATE(17), - [sym_preproc_import] = STATE(17), - [sym_module_import] = STATE(17), - [sym_compatibility_alias_declaration] = STATE(17), - [sym_protocol_forward_declaration] = STATE(17), - [sym_class_forward_declaration] = STATE(17), - [sym_class_interface] = STATE(17), - [sym_category_interface] = STATE(17), - [sym_protocol_declaration] = STATE(17), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), - [sym_class_implementation] = STATE(17), - [sym_category_implementation] = STATE(17), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_specifiers] = STATE(4727), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), + [sym__statement] = STATE(31), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(3358), + [sym__import] = STATE(31), + [sym_preproc_import] = STATE(31), + [sym_module_import] = STATE(31), + [sym_compatibility_alias_declaration] = STATE(31), + [sym_protocol_forward_declaration] = STATE(31), + [sym_class_forward_declaration] = STATE(31), + [sym_class_interface] = STATE(31), + [sym_category_interface] = STATE(31), + [sym_protocol_declaration] = STATE(31), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), + [sym_class_implementation] = STATE(31), + [sym_category_implementation] = STATE(31), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(9), [aux_sym_preproc_include_token1] = ACTIONS(11), [aux_sym_preproc_def_token1] = ACTIONS(13), @@ -25956,80 +25942,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), [sym__ns_assume_nonnull_declaration] = ACTIONS(595), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(53), [sym_Class] = ACTIONS(131), @@ -26044,8 +26030,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -26065,52 +26051,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(17), [sym_declaration] = STATE(17), [sym_type_definition] = STATE(17), - [sym__declaration_specifiers] = STATE(4707), + [sym__declaration_specifiers] = STATE(4727), [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), [sym__statement] = STATE(17), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(3413), + [sym_macro_type_specifier] = STATE(3358), [sym__import] = STATE(17), [sym_preproc_import] = STATE(17), [sym_module_import] = STATE(17), @@ -26120,37 +26106,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_interface] = STATE(17), [sym_category_interface] = STATE(17), [sym_protocol_declaration] = STATE(17), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), [sym_class_implementation] = STATE(17), [sym_category_implementation] = STATE(17), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [aux_sym_translation_unit_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(9), [aux_sym_preproc_include_token1] = ACTIONS(11), [aux_sym_preproc_def_token1] = ACTIONS(13), @@ -26222,80 +26209,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), - [sym__ns_assume_nonnull_declaration] = ACTIONS(595), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), + [sym__ns_assume_nonnull_declaration] = ACTIONS(599), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(53), [sym_Class] = ACTIONS(131), @@ -26310,8 +26297,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -26331,52 +26318,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(17), [sym_declaration] = STATE(17), [sym_type_definition] = STATE(17), - [sym__declaration_specifiers] = STATE(4707), + [sym__declaration_specifiers] = STATE(4727), [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), [sym__statement] = STATE(17), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(3413), + [sym_macro_type_specifier] = STATE(3358), [sym__import] = STATE(17), [sym_preproc_import] = STATE(17), [sym_module_import] = STATE(17), @@ -26386,38 +26373,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_interface] = STATE(17), [sym_category_interface] = STATE(17), [sym_protocol_declaration] = STATE(17), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), [sym_class_implementation] = STATE(17), [sym_category_implementation] = STATE(17), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [aux_sym_translation_unit_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [ts_builtin_sym_end] = ACTIONS(599), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [ts_builtin_sym_end] = ACTIONS(601), [sym_identifier] = ACTIONS(9), [aux_sym_preproc_include_token1] = ACTIONS(11), [aux_sym_preproc_def_token1] = ACTIONS(13), @@ -26488,80 +26476,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), - [sym__ns_assume_nonnull_declaration] = ACTIONS(595), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), + [sym__ns_assume_nonnull_declaration] = ACTIONS(599), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(53), [sym_Class] = ACTIONS(131), @@ -26576,8 +26564,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -26589,366 +26577,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [22] = { - [sym_preproc_include] = STATE(17), - [sym_preproc_def] = STATE(17), - [sym_preproc_function_def] = STATE(17), - [sym_preproc_if] = STATE(17), - [sym_preproc_ifdef] = STATE(17), - [sym_function_definition] = STATE(17), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_specifiers] = STATE(4707), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), - [sym__statement] = STATE(17), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(3413), - [sym__import] = STATE(17), - [sym_preproc_import] = STATE(17), - [sym_module_import] = STATE(17), - [sym_compatibility_alias_declaration] = STATE(17), - [sym_protocol_forward_declaration] = STATE(17), - [sym_class_forward_declaration] = STATE(17), - [sym_class_interface] = STATE(17), - [sym_category_interface] = STATE(17), - [sym_protocol_declaration] = STATE(17), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), - [sym_class_implementation] = STATE(17), - [sym_category_implementation] = STATE(17), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(9), - [aux_sym_preproc_include_token1] = ACTIONS(11), - [aux_sym_preproc_def_token1] = ACTIONS(13), - [aux_sym_preproc_if_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token1] = ACTIONS(17), - [aux_sym_preproc_ifdef_token2] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(33), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), - [sym__ns_assume_nonnull_declaration] = ACTIONS(595), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(53), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(53), - [sym_IMP] = ACTIONS(53), - [sym_BOOL] = ACTIONS(53), - [sym_auto] = ACTIONS(53), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [23] = { - [sym_preproc_include] = STATE(17), - [sym_preproc_def] = STATE(17), - [sym_preproc_function_def] = STATE(17), - [sym_preproc_if] = STATE(17), - [sym_preproc_ifdef] = STATE(17), - [sym_function_definition] = STATE(17), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_specifiers] = STATE(4707), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), - [sym__statement] = STATE(17), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(3413), - [sym__import] = STATE(17), - [sym_preproc_import] = STATE(17), - [sym_module_import] = STATE(17), - [sym_compatibility_alias_declaration] = STATE(17), - [sym_protocol_forward_declaration] = STATE(17), - [sym_class_forward_declaration] = STATE(17), - [sym_class_interface] = STATE(17), - [sym_category_interface] = STATE(17), - [sym_protocol_declaration] = STATE(17), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), - [sym_class_implementation] = STATE(17), - [sym_category_implementation] = STATE(17), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(25), + [sym_preproc_def] = STATE(25), + [sym_preproc_function_def] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_function_definition] = STATE(25), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_specifiers] = STATE(4727), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), + [sym__statement] = STATE(25), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(3358), + [sym__import] = STATE(25), + [sym_preproc_import] = STATE(25), + [sym_module_import] = STATE(25), + [sym_compatibility_alias_declaration] = STATE(25), + [sym_protocol_forward_declaration] = STATE(25), + [sym_class_forward_declaration] = STATE(25), + [sym_class_interface] = STATE(25), + [sym_category_interface] = STATE(25), + [sym_protocol_declaration] = STATE(25), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), + [sym_class_implementation] = STATE(25), + [sym_category_implementation] = STATE(25), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(9), [aux_sym_preproc_include_token1] = ACTIONS(11), [aux_sym_preproc_def_token1] = ACTIONS(13), @@ -27020,80 +26743,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), - [sym__ns_assume_nonnull_declaration] = ACTIONS(595), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), + [sym__ns_assume_nonnull_declaration] = ACTIONS(605), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(53), [sym_Class] = ACTIONS(131), @@ -27108,8 +26831,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [23] = { + [sym_preproc_include] = STATE(39), + [sym_preproc_def] = STATE(39), + [sym_preproc_function_def] = STATE(39), + [sym_preproc_if] = STATE(39), + [sym_preproc_ifdef] = STATE(39), + [sym_function_definition] = STATE(39), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_specifiers] = STATE(4727), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), + [sym__statement] = STATE(39), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(3358), + [sym__import] = STATE(39), + [sym_preproc_import] = STATE(39), + [sym_module_import] = STATE(39), + [sym_compatibility_alias_declaration] = STATE(39), + [sym_protocol_forward_declaration] = STATE(39), + [sym_class_forward_declaration] = STATE(39), + [sym_class_interface] = STATE(39), + [sym_category_interface] = STATE(39), + [sym_protocol_declaration] = STATE(39), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), + [sym_class_implementation] = STATE(39), + [sym_category_implementation] = STATE(39), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(9), + [aux_sym_preproc_include_token1] = ACTIONS(11), + [aux_sym_preproc_def_token1] = ACTIONS(13), + [aux_sym_preproc_if_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token1] = ACTIONS(17), + [aux_sym_preproc_ifdef_token2] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(33), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), + [sym__ns_assume_nonnull_declaration] = ACTIONS(609), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(53), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(53), + [sym_IMP] = ACTIONS(53), + [sym_BOOL] = ACTIONS(53), + [sym_auto] = ACTIONS(53), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -27121,106 +27111,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [24] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_specifiers] = STATE(4707), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), - [sym__statement] = STATE(22), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(3413), - [sym__import] = STATE(22), - [sym_preproc_import] = STATE(22), - [sym_module_import] = STATE(22), - [sym_compatibility_alias_declaration] = STATE(22), - [sym_protocol_forward_declaration] = STATE(22), - [sym_class_forward_declaration] = STATE(22), - [sym_class_interface] = STATE(22), - [sym_category_interface] = STATE(22), - [sym_protocol_declaration] = STATE(22), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), - [sym_class_implementation] = STATE(22), - [sym_category_implementation] = STATE(22), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(9), - [aux_sym_preproc_include_token1] = ACTIONS(11), - [aux_sym_preproc_def_token1] = ACTIONS(13), - [aux_sym_preproc_if_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token1] = ACTIONS(17), - [aux_sym_preproc_ifdef_token2] = ACTIONS(17), + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_specifiers] = STATE(4724), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(3195), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2853), + [sym_compound_statement] = STATE(407), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3357), + [sym_sized_type_specifier] = STATE(3357), + [sym_enum_specifier] = STATE(3357), + [sym_struct_specifier] = STATE(3357), + [sym_union_specifier] = STATE(3357), + [sym__statement] = STATE(29), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(3357), + [sym__import] = STATE(29), + [sym_preproc_import] = STATE(29), + [sym_module_import] = STATE(29), + [sym_compatibility_alias_declaration] = STATE(29), + [sym_protocol_forward_declaration] = STATE(29), + [sym_class_forward_declaration] = STATE(29), + [sym_class_interface] = STATE(29), + [sym_category_interface] = STATE(29), + [sym_protocol_declaration] = STATE(29), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2714), + [sym_class_implementation] = STATE(29), + [sym_category_implementation] = STATE(29), + [sym_ns_enum_specifier] = STATE(3357), + [sym_typeof_specifier] = STATE(3357), + [sym_atomic_specifier] = STATE(3357), + [sym_generic_type_specifier] = STATE(3357), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4330), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_if_token2] = ACTIONS(619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(621), + [aux_sym_preproc_ifdef_token2] = ACTIONS(621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27229,9 +27221,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_typedef] = ACTIONS(625), + [anon_sym_extern] = ACTIONS(627), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -27241,8 +27233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), @@ -27284,98 +27275,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(631), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), - [sym__ns_assume_nonnull_declaration] = ACTIONS(607), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), + [anon_sym_POUNDimport] = ACTIONS(655), + [anon_sym_ATimport] = ACTIONS(657), + [sym__ns_assume_nonnull_declaration] = ACTIONS(659), + [anon_sym_ATcompatibility_alias] = ACTIONS(661), + [anon_sym_ATprotocol] = ACTIONS(663), + [anon_sym_ATclass] = ACTIONS(665), + [anon_sym_ATinterface] = ACTIONS(667), + [sym_class_interface_attribute_sepcifier] = ACTIONS(669), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(671), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(53), + [sym_instancetype] = ACTIONS(631), [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(53), - [sym_IMP] = ACTIONS(53), - [sym_BOOL] = ACTIONS(53), - [sym_auto] = ACTIONS(53), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), + [sym_SEL] = ACTIONS(631), + [sym_IMP] = ACTIONS(631), + [sym_BOOL] = ACTIONS(631), + [sym_auto] = ACTIONS(631), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -27383,104 +27374,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, [25] = { - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_specifiers] = STATE(4707), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), - [sym__statement] = STATE(23), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(3413), - [sym__import] = STATE(23), - [sym_preproc_import] = STATE(23), - [sym_module_import] = STATE(23), - [sym_compatibility_alias_declaration] = STATE(23), - [sym_protocol_forward_declaration] = STATE(23), - [sym_class_forward_declaration] = STATE(23), - [sym_class_interface] = STATE(23), - [sym_category_interface] = STATE(23), - [sym_protocol_declaration] = STATE(23), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), - [sym_class_implementation] = STATE(23), - [sym_category_implementation] = STATE(23), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(17), + [sym_preproc_def] = STATE(17), + [sym_preproc_function_def] = STATE(17), + [sym_preproc_if] = STATE(17), + [sym_preproc_ifdef] = STATE(17), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_specifiers] = STATE(4727), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), + [sym__statement] = STATE(17), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(3358), + [sym__import] = STATE(17), + [sym_preproc_import] = STATE(17), + [sym_module_import] = STATE(17), + [sym_compatibility_alias_declaration] = STATE(17), + [sym_protocol_forward_declaration] = STATE(17), + [sym_class_forward_declaration] = STATE(17), + [sym_class_interface] = STATE(17), + [sym_category_interface] = STATE(17), + [sym_protocol_declaration] = STATE(17), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), + [sym_class_implementation] = STATE(17), + [sym_category_implementation] = STATE(17), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(9), [aux_sym_preproc_include_token1] = ACTIONS(11), [aux_sym_preproc_def_token1] = ACTIONS(13), @@ -27508,7 +27500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(609), + [anon_sym_RBRACE] = ACTIONS(681), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), @@ -27552,80 +27544,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), - [sym__ns_assume_nonnull_declaration] = ACTIONS(611), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), + [sym__ns_assume_nonnull_declaration] = ACTIONS(599), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(53), [sym_Class] = ACTIONS(131), @@ -27640,8 +27632,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -27653,100 +27645,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [26] = { - [sym_preproc_include] = STATE(17), - [sym_preproc_def] = STATE(17), - [sym_preproc_function_def] = STATE(17), - [sym_preproc_if] = STATE(17), - [sym_preproc_ifdef] = STATE(17), - [sym_function_definition] = STATE(17), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_specifiers] = STATE(4707), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), - [sym__statement] = STATE(17), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(3413), - [sym__import] = STATE(17), - [sym_preproc_import] = STATE(17), - [sym_module_import] = STATE(17), - [sym_compatibility_alias_declaration] = STATE(17), - [sym_protocol_forward_declaration] = STATE(17), - [sym_class_forward_declaration] = STATE(17), - [sym_class_interface] = STATE(17), - [sym_category_interface] = STATE(17), - [sym_protocol_declaration] = STATE(17), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), - [sym_class_implementation] = STATE(17), - [sym_category_implementation] = STATE(17), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_specifiers] = STATE(4727), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), + [sym__statement] = STATE(34), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(3358), + [sym__import] = STATE(34), + [sym_preproc_import] = STATE(34), + [sym_module_import] = STATE(34), + [sym_compatibility_alias_declaration] = STATE(34), + [sym_protocol_forward_declaration] = STATE(34), + [sym_class_forward_declaration] = STATE(34), + [sym_class_interface] = STATE(34), + [sym_category_interface] = STATE(34), + [sym_protocol_declaration] = STATE(34), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), + [sym_class_implementation] = STATE(34), + [sym_category_implementation] = STATE(34), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(9), [aux_sym_preproc_include_token1] = ACTIONS(11), [aux_sym_preproc_def_token1] = ACTIONS(13), @@ -27774,7 +27767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_RBRACE] = ACTIONS(683), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), @@ -27818,80 +27811,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), - [sym__ns_assume_nonnull_declaration] = ACTIONS(595), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), + [sym__ns_assume_nonnull_declaration] = ACTIONS(685), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(53), [sym_Class] = ACTIONS(131), @@ -27906,8 +27899,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -27919,100 +27912,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [27] = { - [sym_preproc_include] = STATE(17), - [sym_preproc_def] = STATE(17), - [sym_preproc_function_def] = STATE(17), - [sym_preproc_if] = STATE(17), - [sym_preproc_ifdef] = STATE(17), - [sym_function_definition] = STATE(17), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_specifiers] = STATE(4707), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), - [sym__statement] = STATE(17), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(3413), - [sym__import] = STATE(17), - [sym_preproc_import] = STATE(17), - [sym_module_import] = STATE(17), - [sym_compatibility_alias_declaration] = STATE(17), - [sym_protocol_forward_declaration] = STATE(17), - [sym_class_forward_declaration] = STATE(17), - [sym_class_interface] = STATE(17), - [sym_category_interface] = STATE(17), - [sym_protocol_declaration] = STATE(17), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), - [sym_class_implementation] = STATE(17), - [sym_category_implementation] = STATE(17), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_specifiers] = STATE(4727), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), + [sym__statement] = STATE(37), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(3358), + [sym__import] = STATE(37), + [sym_preproc_import] = STATE(37), + [sym_module_import] = STATE(37), + [sym_compatibility_alias_declaration] = STATE(37), + [sym_protocol_forward_declaration] = STATE(37), + [sym_class_forward_declaration] = STATE(37), + [sym_class_interface] = STATE(37), + [sym_category_interface] = STATE(37), + [sym_protocol_declaration] = STATE(37), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), + [sym_class_implementation] = STATE(37), + [sym_category_implementation] = STATE(37), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(9), [aux_sym_preproc_include_token1] = ACTIONS(11), [aux_sym_preproc_def_token1] = ACTIONS(13), @@ -28040,7 +28034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(687), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), @@ -28084,80 +28078,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), - [sym__ns_assume_nonnull_declaration] = ACTIONS(595), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), + [sym__ns_assume_nonnull_declaration] = ACTIONS(689), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(53), [sym_Class] = ACTIONS(131), @@ -28172,8 +28166,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -28185,100 +28179,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [28] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_specifiers] = STATE(4707), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), - [sym__statement] = STATE(26), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(3413), - [sym__import] = STATE(26), - [sym_preproc_import] = STATE(26), - [sym_module_import] = STATE(26), - [sym_compatibility_alias_declaration] = STATE(26), - [sym_protocol_forward_declaration] = STATE(26), - [sym_class_forward_declaration] = STATE(26), - [sym_class_interface] = STATE(26), - [sym_category_interface] = STATE(26), - [sym_protocol_declaration] = STATE(26), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), - [sym_class_implementation] = STATE(26), - [sym_category_implementation] = STATE(26), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(32), + [sym_preproc_def] = STATE(32), + [sym_preproc_function_def] = STATE(32), + [sym_preproc_if] = STATE(32), + [sym_preproc_ifdef] = STATE(32), + [sym_function_definition] = STATE(32), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), + [sym__declaration_specifiers] = STATE(4727), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), + [sym__statement] = STATE(32), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(32), + [sym_macro_type_specifier] = STATE(3358), + [sym__import] = STATE(32), + [sym_preproc_import] = STATE(32), + [sym_module_import] = STATE(32), + [sym_compatibility_alias_declaration] = STATE(32), + [sym_protocol_forward_declaration] = STATE(32), + [sym_class_forward_declaration] = STATE(32), + [sym_class_interface] = STATE(32), + [sym_category_interface] = STATE(32), + [sym_protocol_declaration] = STATE(32), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), + [sym_class_implementation] = STATE(32), + [sym_category_implementation] = STATE(32), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(9), [aux_sym_preproc_include_token1] = ACTIONS(11), [aux_sym_preproc_def_token1] = ACTIONS(13), @@ -28306,7 +28301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(691), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), @@ -28350,80 +28345,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), - [sym__ns_assume_nonnull_declaration] = ACTIONS(619), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), + [sym__ns_assume_nonnull_declaration] = ACTIONS(693), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(53), [sym_Class] = ACTIONS(131), @@ -28438,8 +28433,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -28459,52 +28454,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(29), [sym_declaration] = STATE(29), [sym_type_definition] = STATE(29), - [sym__declaration_specifiers] = STATE(4702), + [sym__declaration_specifiers] = STATE(4724), [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3253), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3004), - [sym_compound_statement] = STATE(514), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3415), - [sym_sized_type_specifier] = STATE(3415), - [sym_enum_specifier] = STATE(3415), - [sym_struct_specifier] = STATE(3415), - [sym_union_specifier] = STATE(3415), + [sym_attribute_specifier] = STATE(3195), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2853), + [sym_compound_statement] = STATE(407), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3357), + [sym_sized_type_specifier] = STATE(3357), + [sym_enum_specifier] = STATE(3357), + [sym_struct_specifier] = STATE(3357), + [sym_union_specifier] = STATE(3357), [sym__statement] = STATE(29), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), [sym__empty_declaration] = STATE(29), - [sym_macro_type_specifier] = STATE(3415), + [sym_macro_type_specifier] = STATE(3357), [sym__import] = STATE(29), [sym_preproc_import] = STATE(29), [sym_module_import] = STATE(29), @@ -28514,44 +28509,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_interface] = STATE(29), [sym_category_interface] = STATE(29), [sym_protocol_declaration] = STATE(29), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2837), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2714), [sym_class_implementation] = STATE(29), [sym_category_implementation] = STATE(29), - [sym_typeof_specifier] = STATE(3415), - [sym_atomic_specifier] = STATE(3415), - [sym_generic_type_specifier] = STATE(3415), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym_ns_enum_specifier] = STATE(3357), + [sym_typeof_specifier] = STATE(3357), + [sym_atomic_specifier] = STATE(3357), + [sym_generic_type_specifier] = STATE(3357), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4343), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(621), - [aux_sym_preproc_include_token1] = ACTIONS(624), - [aux_sym_preproc_def_token1] = ACTIONS(627), - [aux_sym_preproc_if_token1] = ACTIONS(630), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4330), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(695), + [aux_sym_preproc_include_token1] = ACTIONS(698), + [aux_sym_preproc_def_token1] = ACTIONS(701), + [aux_sym_preproc_if_token1] = ACTIONS(704), [aux_sym_preproc_if_token2] = ACTIONS(279), - [aux_sym_preproc_ifdef_token1] = ACTIONS(633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(633), + [aux_sym_preproc_ifdef_token1] = ACTIONS(707), + [aux_sym_preproc_ifdef_token2] = ACTIONS(707), [anon_sym_LPAREN2] = ACTIONS(284), [anon_sym_BANG] = ACTIONS(287), [anon_sym_TILDE] = ACTIONS(287), @@ -28560,9 +28556,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(293), [anon_sym_CARET] = ACTIONS(296), [anon_sym_AMP] = ACTIONS(293), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_typedef] = ACTIONS(639), - [anon_sym_extern] = ACTIONS(642), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_typedef] = ACTIONS(713), + [anon_sym_extern] = ACTIONS(716), [anon_sym___attribute] = ACTIONS(308), [anon_sym___attribute__] = ACTIONS(308), [anon_sym___declspec] = ACTIONS(311), @@ -28572,7 +28568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(314), [anon_sym___thiscall] = ACTIONS(314), [anon_sym___vectorcall] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(719), [anon_sym_LBRACK] = ACTIONS(320), [anon_sym_static] = ACTIONS(323), [anon_sym_auto] = ACTIONS(323), @@ -28614,98 +28610,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(332), [anon_sym_long] = ACTIONS(332), [anon_sym_short] = ACTIONS(332), - [sym_primitive_type] = ACTIONS(648), + [sym_primitive_type] = ACTIONS(722), [anon_sym_enum] = ACTIONS(338), - [anon_sym_NS_ENUM] = ACTIONS(341), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(341), - [anon_sym_NS_OPTIONS] = ACTIONS(341), - [anon_sym_struct] = ACTIONS(344), - [anon_sym_union] = ACTIONS(347), - [anon_sym_if] = ACTIONS(651), - [anon_sym_switch] = ACTIONS(654), - [anon_sym_case] = ACTIONS(657), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(663), - [anon_sym_do] = ACTIONS(666), - [anon_sym_for] = ACTIONS(669), - [anon_sym_return] = ACTIONS(672), - [anon_sym_break] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(678), - [anon_sym_goto] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(383), - [anon_sym_sizeof] = ACTIONS(386), - [sym_number_literal] = ACTIONS(389), - [anon_sym_L_SQUOTE] = ACTIONS(392), - [anon_sym_u_SQUOTE] = ACTIONS(392), - [anon_sym_U_SQUOTE] = ACTIONS(392), - [anon_sym_u8_SQUOTE] = ACTIONS(392), - [anon_sym_SQUOTE] = ACTIONS(392), - [anon_sym_L_DQUOTE] = ACTIONS(395), - [anon_sym_u_DQUOTE] = ACTIONS(395), - [anon_sym_U_DQUOTE] = ACTIONS(395), - [anon_sym_u8_DQUOTE] = ACTIONS(395), - [anon_sym_DQUOTE] = ACTIONS(395), - [sym_true] = ACTIONS(398), - [sym_false] = ACTIONS(398), - [sym_null] = ACTIONS(398), + [anon_sym_struct] = ACTIONS(341), + [anon_sym_union] = ACTIONS(344), + [anon_sym_if] = ACTIONS(725), + [anon_sym_switch] = ACTIONS(728), + [anon_sym_case] = ACTIONS(731), + [anon_sym_default] = ACTIONS(734), + [anon_sym_while] = ACTIONS(737), + [anon_sym_do] = ACTIONS(740), + [anon_sym_for] = ACTIONS(743), + [anon_sym_return] = ACTIONS(746), + [anon_sym_break] = ACTIONS(749), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_goto] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(380), + [anon_sym_PLUS_PLUS] = ACTIONS(380), + [anon_sym_sizeof] = ACTIONS(383), + [sym_number_literal] = ACTIONS(386), + [anon_sym_L_SQUOTE] = ACTIONS(389), + [anon_sym_u_SQUOTE] = ACTIONS(389), + [anon_sym_U_SQUOTE] = ACTIONS(389), + [anon_sym_u8_SQUOTE] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_L_DQUOTE] = ACTIONS(392), + [anon_sym_u_DQUOTE] = ACTIONS(392), + [anon_sym_U_DQUOTE] = ACTIONS(392), + [anon_sym_u8_DQUOTE] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(392), + [sym_true] = ACTIONS(395), + [sym_false] = ACTIONS(395), + [sym_null] = ACTIONS(395), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(684), - [anon_sym_ATimport] = ACTIONS(687), - [sym__ns_assume_nonnull_declaration] = ACTIONS(690), - [anon_sym_ATcompatibility_alias] = ACTIONS(693), - [anon_sym_ATprotocol] = ACTIONS(696), - [anon_sym_ATclass] = ACTIONS(699), - [anon_sym_ATinterface] = ACTIONS(702), - [sym_class_interface_attribute_sepcifier] = ACTIONS(705), - [sym_method_attribute_specifier] = ACTIONS(425), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(428), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(428), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(431), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(431), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(431), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(431), - [anon_sym_NS_AVAILABLE] = ACTIONS(434), - [anon_sym___IOS_AVAILABLE] = ACTIONS(434), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(434), - [anon_sym_API_AVAILABLE] = ACTIONS(434), - [anon_sym_API_UNAVAILABLE] = ACTIONS(434), - [anon_sym_API_DEPRECATED] = ACTIONS(434), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(434), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(434), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(434), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(434), - [anon_sym___deprecated_msg] = ACTIONS(434), - [anon_sym___deprecated_enum_msg] = ACTIONS(434), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(434), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(434), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(434), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(434), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(437), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(440), - [anon_sym_ATimplementation] = ACTIONS(708), + [anon_sym_POUNDimport] = ACTIONS(758), + [anon_sym_ATimport] = ACTIONS(761), + [sym__ns_assume_nonnull_declaration] = ACTIONS(764), + [anon_sym_ATcompatibility_alias] = ACTIONS(767), + [anon_sym_ATprotocol] = ACTIONS(770), + [anon_sym_ATclass] = ACTIONS(773), + [anon_sym_ATinterface] = ACTIONS(776), + [sym_class_interface_attribute_sepcifier] = ACTIONS(779), + [sym_method_attribute_specifier] = ACTIONS(422), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(425), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(425), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(428), + [anon_sym_NS_AVAILABLE] = ACTIONS(431), + [anon_sym___IOS_AVAILABLE] = ACTIONS(431), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(431), + [anon_sym_API_AVAILABLE] = ACTIONS(431), + [anon_sym_API_UNAVAILABLE] = ACTIONS(431), + [anon_sym_API_DEPRECATED] = ACTIONS(431), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(431), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(431), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(431), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(431), + [anon_sym___deprecated_msg] = ACTIONS(431), + [anon_sym___deprecated_enum_msg] = ACTIONS(431), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(431), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(431), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(431), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(431), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(434), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(437), + [anon_sym_ATimplementation] = ACTIONS(782), + [anon_sym_NS_ENUM] = ACTIONS(443), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(443), + [anon_sym_NS_OPTIONS] = ACTIONS(443), [anon_sym_typeof] = ACTIONS(446), [anon_sym___typeof] = ACTIONS(446), [anon_sym___typeof__] = ACTIONS(446), [sym_self] = ACTIONS(449), - [sym_super] = ACTIONS(398), - [sym_nil] = ACTIONS(398), + [sym_super] = ACTIONS(395), + [sym_nil] = ACTIONS(395), [sym_id] = ACTIONS(452), - [sym_instancetype] = ACTIONS(648), + [sym_instancetype] = ACTIONS(722), [sym_Class] = ACTIONS(452), - [sym_SEL] = ACTIONS(648), - [sym_IMP] = ACTIONS(648), - [sym_BOOL] = ACTIONS(648), - [sym_auto] = ACTIONS(648), - [anon_sym_ATautoreleasepool] = ACTIONS(711), - [anon_sym_ATsynchronized] = ACTIONS(714), - [anon_sym_ATtry] = ACTIONS(717), - [anon_sym_ATthrow] = ACTIONS(720), + [sym_SEL] = ACTIONS(722), + [sym_IMP] = ACTIONS(722), + [sym_BOOL] = ACTIONS(722), + [sym_auto] = ACTIONS(722), + [anon_sym_ATautoreleasepool] = ACTIONS(785), + [anon_sym_ATsynchronized] = ACTIONS(788), + [anon_sym_ATtry] = ACTIONS(791), + [anon_sym_ATthrow] = ACTIONS(794), [anon_sym_ATselector] = ACTIONS(467), [anon_sym_ATencode] = ACTIONS(470), [anon_sym_AT] = ACTIONS(473), - [sym_YES] = ACTIONS(398), - [sym_NO] = ACTIONS(398), + [sym_YES] = ACTIONS(395), + [sym_NO] = ACTIONS(395), [anon_sym___builtin_available] = ACTIONS(476), [anon_sym_ATavailable] = ACTIONS(479), [anon_sym_va_arg] = ACTIONS(482), @@ -28717,100 +28713,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [30] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_specifiers] = STATE(4707), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), - [sym__statement] = STATE(27), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(3413), - [sym__import] = STATE(27), - [sym_preproc_import] = STATE(27), - [sym_module_import] = STATE(27), - [sym_compatibility_alias_declaration] = STATE(27), - [sym_protocol_forward_declaration] = STATE(27), - [sym_class_forward_declaration] = STATE(27), - [sym_class_interface] = STATE(27), - [sym_category_interface] = STATE(27), - [sym_protocol_declaration] = STATE(27), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), - [sym_class_implementation] = STATE(27), - [sym_category_implementation] = STATE(27), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(38), + [sym_preproc_def] = STATE(38), + [sym_preproc_function_def] = STATE(38), + [sym_preproc_if] = STATE(38), + [sym_preproc_ifdef] = STATE(38), + [sym_function_definition] = STATE(38), + [sym_declaration] = STATE(38), + [sym_type_definition] = STATE(38), + [sym__declaration_specifiers] = STATE(4727), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), + [sym__statement] = STATE(38), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(38), + [sym_macro_type_specifier] = STATE(3358), + [sym__import] = STATE(38), + [sym_preproc_import] = STATE(38), + [sym_module_import] = STATE(38), + [sym_compatibility_alias_declaration] = STATE(38), + [sym_protocol_forward_declaration] = STATE(38), + [sym_class_forward_declaration] = STATE(38), + [sym_class_interface] = STATE(38), + [sym_category_interface] = STATE(38), + [sym_protocol_declaration] = STATE(38), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), + [sym_class_implementation] = STATE(38), + [sym_category_implementation] = STATE(38), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(9), [aux_sym_preproc_include_token1] = ACTIONS(11), [aux_sym_preproc_def_token1] = ACTIONS(13), @@ -28838,7 +28835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(723), + [anon_sym_RBRACE] = ACTIONS(797), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), @@ -28882,80 +28879,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), - [sym__ns_assume_nonnull_declaration] = ACTIONS(725), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), + [sym__ns_assume_nonnull_declaration] = ACTIONS(799), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(53), [sym_Class] = ACTIONS(131), @@ -28970,8 +28967,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -28983,100 +28980,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [31] = { - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_function_definition] = STATE(32), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_specifiers] = STATE(4707), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), - [sym__statement] = STATE(32), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(3413), - [sym__import] = STATE(32), - [sym_preproc_import] = STATE(32), - [sym_module_import] = STATE(32), - [sym_compatibility_alias_declaration] = STATE(32), - [sym_protocol_forward_declaration] = STATE(32), - [sym_class_forward_declaration] = STATE(32), - [sym_class_interface] = STATE(32), - [sym_category_interface] = STATE(32), - [sym_protocol_declaration] = STATE(32), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), - [sym_class_implementation] = STATE(32), - [sym_category_implementation] = STATE(32), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(17), + [sym_preproc_def] = STATE(17), + [sym_preproc_function_def] = STATE(17), + [sym_preproc_if] = STATE(17), + [sym_preproc_ifdef] = STATE(17), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_specifiers] = STATE(4727), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), + [sym__statement] = STATE(17), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(3358), + [sym__import] = STATE(17), + [sym_preproc_import] = STATE(17), + [sym_module_import] = STATE(17), + [sym_compatibility_alias_declaration] = STATE(17), + [sym_protocol_forward_declaration] = STATE(17), + [sym_class_forward_declaration] = STATE(17), + [sym_class_interface] = STATE(17), + [sym_category_interface] = STATE(17), + [sym_protocol_declaration] = STATE(17), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), + [sym_class_implementation] = STATE(17), + [sym_category_implementation] = STATE(17), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(9), [aux_sym_preproc_include_token1] = ACTIONS(11), [aux_sym_preproc_def_token1] = ACTIONS(13), @@ -29104,7 +29102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(801), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), @@ -29148,80 +29146,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), - [sym__ns_assume_nonnull_declaration] = ACTIONS(729), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), + [sym__ns_assume_nonnull_declaration] = ACTIONS(599), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(53), [sym_Class] = ACTIONS(131), @@ -29236,8 +29234,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -29257,52 +29255,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(17), [sym_declaration] = STATE(17), [sym_type_definition] = STATE(17), - [sym__declaration_specifiers] = STATE(4707), + [sym__declaration_specifiers] = STATE(4727), [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), [sym__statement] = STATE(17), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(3413), + [sym_macro_type_specifier] = STATE(3358), [sym__import] = STATE(17), [sym_preproc_import] = STATE(17), [sym_module_import] = STATE(17), @@ -29312,37 +29310,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_interface] = STATE(17), [sym_category_interface] = STATE(17), [sym_protocol_declaration] = STATE(17), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), [sym_class_implementation] = STATE(17), [sym_category_implementation] = STATE(17), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [aux_sym_translation_unit_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(9), [aux_sym_preproc_include_token1] = ACTIONS(11), [aux_sym_preproc_def_token1] = ACTIONS(13), @@ -29370,7 +29369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(731), + [anon_sym_RBRACE] = ACTIONS(803), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), @@ -29414,80 +29413,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), - [sym__ns_assume_nonnull_declaration] = ACTIONS(595), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), + [sym__ns_assume_nonnull_declaration] = ACTIONS(599), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(53), [sym_Class] = ACTIONS(131), @@ -29502,8 +29501,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -29515,100 +29514,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [33] = { - [sym_preproc_include] = STATE(19), - [sym_preproc_def] = STATE(19), - [sym_preproc_function_def] = STATE(19), - [sym_preproc_if] = STATE(19), - [sym_preproc_ifdef] = STATE(19), - [sym_function_definition] = STATE(19), - [sym_declaration] = STATE(19), - [sym_type_definition] = STATE(19), - [sym__declaration_specifiers] = STATE(4707), - [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), - [sym__statement] = STATE(19), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(19), - [sym_macro_type_specifier] = STATE(3413), - [sym__import] = STATE(19), - [sym_preproc_import] = STATE(19), - [sym_module_import] = STATE(19), - [sym_compatibility_alias_declaration] = STATE(19), - [sym_protocol_forward_declaration] = STATE(19), - [sym_class_forward_declaration] = STATE(19), - [sym_class_interface] = STATE(19), - [sym_category_interface] = STATE(19), - [sym_protocol_declaration] = STATE(19), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), - [sym_class_implementation] = STATE(19), - [sym_category_implementation] = STATE(19), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(19), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(17), + [sym_preproc_def] = STATE(17), + [sym_preproc_function_def] = STATE(17), + [sym_preproc_if] = STATE(17), + [sym_preproc_ifdef] = STATE(17), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_specifiers] = STATE(4727), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), + [sym__statement] = STATE(17), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(3358), + [sym__import] = STATE(17), + [sym_preproc_import] = STATE(17), + [sym_module_import] = STATE(17), + [sym_compatibility_alias_declaration] = STATE(17), + [sym_protocol_forward_declaration] = STATE(17), + [sym_class_forward_declaration] = STATE(17), + [sym_class_interface] = STATE(17), + [sym_category_interface] = STATE(17), + [sym_protocol_declaration] = STATE(17), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), + [sym_class_implementation] = STATE(17), + [sym_category_implementation] = STATE(17), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(9), [aux_sym_preproc_include_token1] = ACTIONS(11), [aux_sym_preproc_def_token1] = ACTIONS(13), @@ -29636,7 +29636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(733), + [anon_sym_RBRACE] = ACTIONS(805), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), @@ -29680,80 +29680,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), - [sym__ns_assume_nonnull_declaration] = ACTIONS(735), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), + [sym__ns_assume_nonnull_declaration] = ACTIONS(599), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(53), [sym_Class] = ACTIONS(131), @@ -29768,8 +29768,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -29781,100 +29781,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [34] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_specifiers] = STATE(4707), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), - [sym__statement] = STATE(37), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(3413), - [sym__import] = STATE(37), - [sym_preproc_import] = STATE(37), - [sym_module_import] = STATE(37), - [sym_compatibility_alias_declaration] = STATE(37), - [sym_protocol_forward_declaration] = STATE(37), - [sym_class_forward_declaration] = STATE(37), - [sym_class_interface] = STATE(37), - [sym_category_interface] = STATE(37), - [sym_protocol_declaration] = STATE(37), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), - [sym_class_implementation] = STATE(37), - [sym_category_implementation] = STATE(37), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(17), + [sym_preproc_def] = STATE(17), + [sym_preproc_function_def] = STATE(17), + [sym_preproc_if] = STATE(17), + [sym_preproc_ifdef] = STATE(17), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_specifiers] = STATE(4727), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), + [sym__statement] = STATE(17), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(3358), + [sym__import] = STATE(17), + [sym_preproc_import] = STATE(17), + [sym_module_import] = STATE(17), + [sym_compatibility_alias_declaration] = STATE(17), + [sym_protocol_forward_declaration] = STATE(17), + [sym_class_forward_declaration] = STATE(17), + [sym_class_interface] = STATE(17), + [sym_category_interface] = STATE(17), + [sym_protocol_declaration] = STATE(17), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), + [sym_class_implementation] = STATE(17), + [sym_category_implementation] = STATE(17), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(9), [aux_sym_preproc_include_token1] = ACTIONS(11), [aux_sym_preproc_def_token1] = ACTIONS(13), @@ -29902,7 +29903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(737), + [anon_sym_RBRACE] = ACTIONS(807), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), @@ -29946,80 +29947,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), - [sym__ns_assume_nonnull_declaration] = ACTIONS(739), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), + [sym__ns_assume_nonnull_declaration] = ACTIONS(599), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(53), [sym_Class] = ACTIONS(131), @@ -30034,8 +30035,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -30047,100 +30048,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [35] = { - [sym_preproc_include] = STATE(36), - [sym_preproc_def] = STATE(36), - [sym_preproc_function_def] = STATE(36), - [sym_preproc_if] = STATE(36), - [sym_preproc_ifdef] = STATE(36), - [sym_function_definition] = STATE(36), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_specifiers] = STATE(4707), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), - [sym__statement] = STATE(36), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(3413), - [sym__import] = STATE(36), - [sym_preproc_import] = STATE(36), - [sym_module_import] = STATE(36), - [sym_compatibility_alias_declaration] = STATE(36), - [sym_protocol_forward_declaration] = STATE(36), - [sym_class_forward_declaration] = STATE(36), - [sym_class_interface] = STATE(36), - [sym_category_interface] = STATE(36), - [sym_protocol_declaration] = STATE(36), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), - [sym_class_implementation] = STATE(36), - [sym_category_implementation] = STATE(36), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_if] = STATE(20), + [sym_preproc_ifdef] = STATE(20), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_specifiers] = STATE(4727), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), + [sym__statement] = STATE(20), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(3358), + [sym__import] = STATE(20), + [sym_preproc_import] = STATE(20), + [sym_module_import] = STATE(20), + [sym_compatibility_alias_declaration] = STATE(20), + [sym_protocol_forward_declaration] = STATE(20), + [sym_class_forward_declaration] = STATE(20), + [sym_class_interface] = STATE(20), + [sym_category_interface] = STATE(20), + [sym_protocol_declaration] = STATE(20), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), + [sym_class_implementation] = STATE(20), + [sym_category_implementation] = STATE(20), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(9), [aux_sym_preproc_include_token1] = ACTIONS(11), [aux_sym_preproc_def_token1] = ACTIONS(13), @@ -30168,7 +30170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_RBRACE] = ACTIONS(809), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), @@ -30212,80 +30214,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), - [sym__ns_assume_nonnull_declaration] = ACTIONS(743), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), + [sym__ns_assume_nonnull_declaration] = ACTIONS(811), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(53), [sym_Class] = ACTIONS(131), @@ -30300,8 +30302,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -30313,106 +30315,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [36] = { - [sym_preproc_include] = STATE(17), - [sym_preproc_def] = STATE(17), - [sym_preproc_function_def] = STATE(17), - [sym_preproc_if] = STATE(17), - [sym_preproc_ifdef] = STATE(17), - [sym_function_definition] = STATE(17), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_specifiers] = STATE(4707), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), - [sym__statement] = STATE(17), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(3413), - [sym__import] = STATE(17), - [sym_preproc_import] = STATE(17), - [sym_module_import] = STATE(17), - [sym_compatibility_alias_declaration] = STATE(17), - [sym_protocol_forward_declaration] = STATE(17), - [sym_class_forward_declaration] = STATE(17), - [sym_class_interface] = STATE(17), - [sym_category_interface] = STATE(17), - [sym_protocol_declaration] = STATE(17), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), - [sym_class_implementation] = STATE(17), - [sym_category_implementation] = STATE(17), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(9), - [aux_sym_preproc_include_token1] = ACTIONS(11), - [aux_sym_preproc_def_token1] = ACTIONS(13), - [aux_sym_preproc_if_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token1] = ACTIONS(17), - [aux_sym_preproc_ifdef_token2] = ACTIONS(17), + [sym_preproc_include] = STATE(24), + [sym_preproc_def] = STATE(24), + [sym_preproc_function_def] = STATE(24), + [sym_preproc_if] = STATE(24), + [sym_preproc_ifdef] = STATE(24), + [sym_function_definition] = STATE(24), + [sym_declaration] = STATE(24), + [sym_type_definition] = STATE(24), + [sym__declaration_specifiers] = STATE(4724), + [sym_linkage_specification] = STATE(24), + [sym_attribute_specifier] = STATE(3195), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2853), + [sym_compound_statement] = STATE(407), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3357), + [sym_sized_type_specifier] = STATE(3357), + [sym_enum_specifier] = STATE(3357), + [sym_struct_specifier] = STATE(3357), + [sym_union_specifier] = STATE(3357), + [sym__statement] = STATE(24), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(24), + [sym_macro_type_specifier] = STATE(3357), + [sym__import] = STATE(24), + [sym_preproc_import] = STATE(24), + [sym_module_import] = STATE(24), + [sym_compatibility_alias_declaration] = STATE(24), + [sym_protocol_forward_declaration] = STATE(24), + [sym_class_forward_declaration] = STATE(24), + [sym_class_interface] = STATE(24), + [sym_category_interface] = STATE(24), + [sym_protocol_declaration] = STATE(24), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2714), + [sym_class_implementation] = STATE(24), + [sym_category_implementation] = STATE(24), + [sym_ns_enum_specifier] = STATE(3357), + [sym_typeof_specifier] = STATE(3357), + [sym_atomic_specifier] = STATE(3357), + [sym_generic_type_specifier] = STATE(3357), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(24), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4330), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(611), + [aux_sym_preproc_include_token1] = ACTIONS(613), + [aux_sym_preproc_def_token1] = ACTIONS(615), + [aux_sym_preproc_if_token1] = ACTIONS(617), + [aux_sym_preproc_if_token2] = ACTIONS(813), + [aux_sym_preproc_ifdef_token1] = ACTIONS(621), + [aux_sym_preproc_ifdef_token2] = ACTIONS(621), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -30421,9 +30425,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_typedef] = ACTIONS(625), + [anon_sym_extern] = ACTIONS(627), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -30433,8 +30437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), @@ -30476,98 +30479,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(53), + [sym_primitive_type] = ACTIONS(631), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), - [sym__ns_assume_nonnull_declaration] = ACTIONS(595), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), + [anon_sym_POUNDimport] = ACTIONS(655), + [anon_sym_ATimport] = ACTIONS(657), + [sym__ns_assume_nonnull_declaration] = ACTIONS(815), + [anon_sym_ATcompatibility_alias] = ACTIONS(661), + [anon_sym_ATprotocol] = ACTIONS(663), + [anon_sym_ATclass] = ACTIONS(665), + [anon_sym_ATinterface] = ACTIONS(667), + [sym_class_interface_attribute_sepcifier] = ACTIONS(669), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(671), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(53), + [sym_instancetype] = ACTIONS(631), [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(53), - [sym_IMP] = ACTIONS(53), - [sym_BOOL] = ACTIONS(53), - [sym_auto] = ACTIONS(53), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), + [sym_SEL] = ACTIONS(631), + [sym_IMP] = ACTIONS(631), + [sym_BOOL] = ACTIONS(631), + [sym_auto] = ACTIONS(631), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -30575,7 +30578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, [37] = { @@ -30587,52 +30590,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(17), [sym_declaration] = STATE(17), [sym_type_definition] = STATE(17), - [sym__declaration_specifiers] = STATE(4707), + [sym__declaration_specifiers] = STATE(4727), [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(3252), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3413), - [sym_sized_type_specifier] = STATE(3413), - [sym_enum_specifier] = STATE(3413), - [sym_struct_specifier] = STATE(3413), - [sym_union_specifier] = STATE(3413), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), [sym__statement] = STATE(17), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(3413), + [sym_macro_type_specifier] = STATE(3358), [sym__import] = STATE(17), [sym_preproc_import] = STATE(17), [sym_module_import] = STATE(17), @@ -30642,37 +30645,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_class_interface] = STATE(17), [sym_category_interface] = STATE(17), [sym_protocol_declaration] = STATE(17), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2803), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), [sym_class_implementation] = STATE(17), [sym_category_implementation] = STATE(17), - [sym_typeof_specifier] = STATE(3413), - [sym_atomic_specifier] = STATE(3413), - [sym_generic_type_specifier] = STATE(3413), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [aux_sym_translation_unit_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4335), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(9), [aux_sym_preproc_include_token1] = ACTIONS(11), [aux_sym_preproc_def_token1] = ACTIONS(13), @@ -30700,7 +30704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(817), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), @@ -30744,80 +30748,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(97), - [anon_sym_ATimport] = ACTIONS(99), - [sym__ns_assume_nonnull_declaration] = ACTIONS(595), - [anon_sym_ATcompatibility_alias] = ACTIONS(103), - [anon_sym_ATprotocol] = ACTIONS(105), - [anon_sym_ATclass] = ACTIONS(107), - [anon_sym_ATinterface] = ACTIONS(109), - [sym_class_interface_attribute_sepcifier] = ACTIONS(111), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(125), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), + [sym__ns_assume_nonnull_declaration] = ACTIONS(599), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(53), [sym_Class] = ACTIONS(131), @@ -30832,8 +30836,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -30845,107 +30849,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [38] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_specifiers] = STATE(4702), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3253), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3004), - [sym_compound_statement] = STATE(514), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3415), - [sym_sized_type_specifier] = STATE(3415), - [sym_enum_specifier] = STATE(3415), - [sym_struct_specifier] = STATE(3415), - [sym_union_specifier] = STATE(3415), - [sym__statement] = STATE(29), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(29), - [sym_macro_type_specifier] = STATE(3415), - [sym__import] = STATE(29), - [sym_preproc_import] = STATE(29), - [sym_module_import] = STATE(29), - [sym_compatibility_alias_declaration] = STATE(29), - [sym_protocol_forward_declaration] = STATE(29), - [sym_class_forward_declaration] = STATE(29), - [sym_class_interface] = STATE(29), - [sym_category_interface] = STATE(29), - [sym_protocol_declaration] = STATE(29), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2837), - [sym_class_implementation] = STATE(29), - [sym_category_implementation] = STATE(29), - [sym_typeof_specifier] = STATE(3415), - [sym_atomic_specifier] = STATE(3415), - [sym_generic_type_specifier] = STATE(3415), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4343), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(749), - [aux_sym_preproc_include_token1] = ACTIONS(751), - [aux_sym_preproc_def_token1] = ACTIONS(753), - [aux_sym_preproc_if_token1] = ACTIONS(755), - [aux_sym_preproc_if_token2] = ACTIONS(757), - [aux_sym_preproc_ifdef_token1] = ACTIONS(759), - [aux_sym_preproc_ifdef_token2] = ACTIONS(759), + [sym_preproc_include] = STATE(17), + [sym_preproc_def] = STATE(17), + [sym_preproc_function_def] = STATE(17), + [sym_preproc_if] = STATE(17), + [sym_preproc_ifdef] = STATE(17), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_specifiers] = STATE(4727), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), + [sym__statement] = STATE(17), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(3358), + [sym__import] = STATE(17), + [sym_preproc_import] = STATE(17), + [sym_module_import] = STATE(17), + [sym_compatibility_alias_declaration] = STATE(17), + [sym_protocol_forward_declaration] = STATE(17), + [sym_class_forward_declaration] = STATE(17), + [sym_class_interface] = STATE(17), + [sym_category_interface] = STATE(17), + [sym_protocol_declaration] = STATE(17), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), + [sym_class_implementation] = STATE(17), + [sym_category_implementation] = STATE(17), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(9), + [aux_sym_preproc_include_token1] = ACTIONS(11), + [aux_sym_preproc_def_token1] = ACTIONS(13), + [aux_sym_preproc_if_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token1] = ACTIONS(17), + [aux_sym_preproc_ifdef_token2] = ACTIONS(17), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -30954,9 +30958,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_typedef] = ACTIONS(763), - [anon_sym_extern] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(33), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -30966,7 +30970,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(819), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), @@ -31008,98 +31013,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(769), + [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(793), - [anon_sym_ATimport] = ACTIONS(795), - [sym__ns_assume_nonnull_declaration] = ACTIONS(797), - [anon_sym_ATcompatibility_alias] = ACTIONS(799), - [anon_sym_ATprotocol] = ACTIONS(801), - [anon_sym_ATclass] = ACTIONS(803), - [anon_sym_ATinterface] = ACTIONS(805), - [sym_class_interface_attribute_sepcifier] = ACTIONS(807), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(809), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), + [sym__ns_assume_nonnull_declaration] = ACTIONS(599), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(769), + [sym_instancetype] = ACTIONS(53), [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(769), - [sym_IMP] = ACTIONS(769), - [sym_BOOL] = ACTIONS(769), - [sym_auto] = ACTIONS(769), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), + [sym_SEL] = ACTIONS(53), + [sym_IMP] = ACTIONS(53), + [sym_BOOL] = ACTIONS(53), + [sym_auto] = ACTIONS(53), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -31107,111 +31112,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, [39] = { - [sym_preproc_include] = STATE(38), - [sym_preproc_def] = STATE(38), - [sym_preproc_function_def] = STATE(38), - [sym_preproc_if] = STATE(38), - [sym_preproc_ifdef] = STATE(38), - [sym_function_definition] = STATE(38), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_specifiers] = STATE(4702), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(3253), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3004), - [sym_compound_statement] = STATE(514), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3415), - [sym_sized_type_specifier] = STATE(3415), - [sym_enum_specifier] = STATE(3415), - [sym_struct_specifier] = STATE(3415), - [sym_union_specifier] = STATE(3415), - [sym__statement] = STATE(38), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym__empty_declaration] = STATE(38), - [sym_macro_type_specifier] = STATE(3415), - [sym__import] = STATE(38), - [sym_preproc_import] = STATE(38), - [sym_module_import] = STATE(38), - [sym_compatibility_alias_declaration] = STATE(38), - [sym_protocol_forward_declaration] = STATE(38), - [sym_class_forward_declaration] = STATE(38), - [sym_class_interface] = STATE(38), - [sym_category_interface] = STATE(38), - [sym_protocol_declaration] = STATE(38), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2837), - [sym_class_implementation] = STATE(38), - [sym_category_implementation] = STATE(38), - [sym_typeof_specifier] = STATE(3415), - [sym_atomic_specifier] = STATE(3415), - [sym_generic_type_specifier] = STATE(3415), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_translation_unit_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4343), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(749), - [aux_sym_preproc_include_token1] = ACTIONS(751), - [aux_sym_preproc_def_token1] = ACTIONS(753), - [aux_sym_preproc_if_token1] = ACTIONS(755), - [aux_sym_preproc_if_token2] = ACTIONS(819), - [aux_sym_preproc_ifdef_token1] = ACTIONS(759), - [aux_sym_preproc_ifdef_token2] = ACTIONS(759), + [sym_preproc_include] = STATE(17), + [sym_preproc_def] = STATE(17), + [sym_preproc_function_def] = STATE(17), + [sym_preproc_if] = STATE(17), + [sym_preproc_ifdef] = STATE(17), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_specifiers] = STATE(4727), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(3193), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3358), + [sym_sized_type_specifier] = STATE(3358), + [sym_enum_specifier] = STATE(3358), + [sym_struct_specifier] = STATE(3358), + [sym_union_specifier] = STATE(3358), + [sym__statement] = STATE(17), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(3358), + [sym__import] = STATE(17), + [sym_preproc_import] = STATE(17), + [sym_module_import] = STATE(17), + [sym_compatibility_alias_declaration] = STATE(17), + [sym_protocol_forward_declaration] = STATE(17), + [sym_class_forward_declaration] = STATE(17), + [sym_class_interface] = STATE(17), + [sym_category_interface] = STATE(17), + [sym_protocol_declaration] = STATE(17), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2716), + [sym_class_implementation] = STATE(17), + [sym_category_implementation] = STATE(17), + [sym_ns_enum_specifier] = STATE(3358), + [sym_typeof_specifier] = STATE(3358), + [sym_atomic_specifier] = STATE(3358), + [sym_generic_type_specifier] = STATE(3358), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_translation_unit_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4328), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(9), + [aux_sym_preproc_include_token1] = ACTIONS(11), + [aux_sym_preproc_def_token1] = ACTIONS(13), + [aux_sym_preproc_if_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token1] = ACTIONS(17), + [aux_sym_preproc_ifdef_token2] = ACTIONS(17), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -31220,9 +31225,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_typedef] = ACTIONS(763), - [anon_sym_extern] = ACTIONS(765), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(33), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -31232,7 +31237,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(821), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), @@ -31274,98 +31280,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(769), + [sym_primitive_type] = ACTIONS(53), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(793), - [anon_sym_ATimport] = ACTIONS(795), - [sym__ns_assume_nonnull_declaration] = ACTIONS(821), - [anon_sym_ATcompatibility_alias] = ACTIONS(799), - [anon_sym_ATprotocol] = ACTIONS(801), - [anon_sym_ATclass] = ACTIONS(803), - [anon_sym_ATinterface] = ACTIONS(805), - [sym_class_interface_attribute_sepcifier] = ACTIONS(807), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(809), + [anon_sym_POUNDimport] = ACTIONS(95), + [anon_sym_ATimport] = ACTIONS(97), + [sym__ns_assume_nonnull_declaration] = ACTIONS(599), + [anon_sym_ATcompatibility_alias] = ACTIONS(101), + [anon_sym_ATprotocol] = ACTIONS(103), + [anon_sym_ATclass] = ACTIONS(105), + [anon_sym_ATinterface] = ACTIONS(107), + [sym_class_interface_attribute_sepcifier] = ACTIONS(109), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(123), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(769), + [sym_instancetype] = ACTIONS(53), [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(769), - [sym_IMP] = ACTIONS(769), - [sym_BOOL] = ACTIONS(769), - [sym_auto] = ACTIONS(769), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), + [sym_SEL] = ACTIONS(53), + [sym_IMP] = ACTIONS(53), + [sym_BOOL] = ACTIONS(53), + [sym_auto] = ACTIONS(53), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -31373,767 +31379,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, [40] = { - [sym_declaration] = STATE(47), - [sym_type_definition] = STATE(47), - [sym__declaration_specifiers] = STATE(4704), - [sym_attribute_specifier] = STATE(3359), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_labeled_statement] = STATE(47), - [sym_expression_statement] = STATE(47), - [sym_if_statement] = STATE(47), - [sym_switch_statement] = STATE(47), - [sym_while_statement] = STATE(47), - [sym_do_statement] = STATE(47), - [sym_for_statement] = STATE(47), - [sym_return_statement] = STATE(47), - [sym_break_statement] = STATE(47), - [sym_continue_statement] = STATE(47), - [sym_goto_statement] = STATE(47), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2897), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(47), - [sym_synchronized_statement] = STATE(47), - [sym_for_in_statement] = STATE(47), - [sym_try_catch_statement] = STATE(47), - [sym_throw_statement] = STATE(47), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [aux_sym_case_statement_repeat1] = STATE(47), - [ts_builtin_sym_end] = ACTIONS(823), - [sym_identifier] = ACTIONS(825), - [aux_sym_preproc_include_token1] = ACTIONS(823), - [aux_sym_preproc_def_token1] = ACTIONS(823), - [anon_sym_RPAREN] = ACTIONS(823), - [aux_sym_preproc_if_token1] = ACTIONS(827), - [aux_sym_preproc_ifdef_token1] = ACTIONS(827), - [aux_sym_preproc_ifdef_token2] = ACTIONS(827), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(827), - [anon_sym___clrcall] = ACTIONS(827), - [anon_sym___stdcall] = ACTIONS(827), - [anon_sym___fastcall] = ACTIONS(827), - [anon_sym___thiscall] = ACTIONS(827), - [anon_sym___vectorcall] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_else] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(827), - [anon_sym_default] = ACTIONS(827), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(823), - [anon_sym_ATimport] = ACTIONS(823), - [sym__ns_assume_nonnull_declaration] = ACTIONS(827), - [anon_sym_ATcompatibility_alias] = ACTIONS(823), - [anon_sym_ATprotocol] = ACTIONS(831), - [anon_sym_ATclass] = ACTIONS(823), - [anon_sym_ATinterface] = ACTIONS(823), - [sym_class_interface_attribute_sepcifier] = ACTIONS(827), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(823), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATcatch] = ACTIONS(823), - [anon_sym_ATfinally] = ACTIONS(823), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [41] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_specifiers] = STATE(4709), - [sym_attribute_specifier] = STATE(3360), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2974), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(49), - [sym_synchronized_statement] = STATE(49), - [sym_for_in_statement] = STATE(49), - [sym_try_catch_statement] = STATE(49), - [sym_throw_statement] = STATE(49), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [aux_sym_case_statement_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(833), - [aux_sym_preproc_include_token1] = ACTIONS(835), - [aux_sym_preproc_def_token1] = ACTIONS(835), - [aux_sym_preproc_if_token1] = ACTIONS(837), - [aux_sym_preproc_if_token2] = ACTIONS(837), - [aux_sym_preproc_ifdef_token1] = ACTIONS(837), - [aux_sym_preproc_ifdef_token2] = ACTIONS(837), - [aux_sym_preproc_else_token1] = ACTIONS(837), - [aux_sym_preproc_elif_token1] = ACTIONS(837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_typedef] = ACTIONS(171), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(837), - [anon_sym___clrcall] = ACTIONS(837), - [anon_sym___stdcall] = ACTIONS(837), - [anon_sym___fastcall] = ACTIONS(837), - [anon_sym___thiscall] = ACTIONS(837), - [anon_sym___vectorcall] = ACTIONS(837), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(179), - [anon_sym_else] = ACTIONS(837), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(837), - [anon_sym_default] = ACTIONS(837), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(835), - [anon_sym_ATimport] = ACTIONS(835), - [sym__ns_assume_nonnull_declaration] = ACTIONS(837), - [anon_sym_ATcompatibility_alias] = ACTIONS(835), - [anon_sym_ATprotocol] = ACTIONS(831), - [anon_sym_ATclass] = ACTIONS(835), - [anon_sym_ATinterface] = ACTIONS(835), - [sym_class_interface_attribute_sepcifier] = ACTIONS(837), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(835), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATcatch] = ACTIONS(835), - [anon_sym_ATfinally] = ACTIONS(835), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [42] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_specifiers] = STATE(4709), - [sym_attribute_specifier] = STATE(3360), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2974), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(49), - [sym_synchronized_statement] = STATE(49), - [sym_for_in_statement] = STATE(49), - [sym_try_catch_statement] = STATE(49), - [sym_throw_statement] = STATE(49), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [aux_sym_case_statement_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(833), - [aux_sym_preproc_include_token1] = ACTIONS(839), - [aux_sym_preproc_def_token1] = ACTIONS(839), - [aux_sym_preproc_if_token1] = ACTIONS(841), - [aux_sym_preproc_if_token2] = ACTIONS(841), - [aux_sym_preproc_ifdef_token1] = ACTIONS(841), - [aux_sym_preproc_ifdef_token2] = ACTIONS(841), - [aux_sym_preproc_else_token1] = ACTIONS(841), - [aux_sym_preproc_elif_token1] = ACTIONS(841), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_typedef] = ACTIONS(171), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(841), - [anon_sym___clrcall] = ACTIONS(841), - [anon_sym___stdcall] = ACTIONS(841), - [anon_sym___fastcall] = ACTIONS(841), - [anon_sym___thiscall] = ACTIONS(841), - [anon_sym___vectorcall] = ACTIONS(841), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(179), - [anon_sym_else] = ACTIONS(841), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(841), - [anon_sym_default] = ACTIONS(841), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(839), - [anon_sym_ATimport] = ACTIONS(839), - [sym__ns_assume_nonnull_declaration] = ACTIONS(841), - [anon_sym_ATcompatibility_alias] = ACTIONS(839), - [anon_sym_ATprotocol] = ACTIONS(831), - [anon_sym_ATclass] = ACTIONS(839), - [anon_sym_ATinterface] = ACTIONS(839), - [sym_class_interface_attribute_sepcifier] = ACTIONS(841), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(839), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATcatch] = ACTIONS(839), - [anon_sym_ATfinally] = ACTIONS(839), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [43] = { [sym_declaration] = STATE(43), [sym_type_definition] = STATE(43), - [sym__declaration_specifiers] = STATE(4704), - [sym_attribute_specifier] = STATE(3359), - [sym_ms_declspec_modifier] = STATE(3031), + [sym__declaration_specifiers] = STATE(4729), + [sym_attribute_specifier] = STATE(3302), + [sym_ms_declspec_modifier] = STATE(2947), [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), [sym_labeled_statement] = STATE(43), [sym_expression_statement] = STATE(43), [sym_if_statement] = STATE(43), @@ -32145,552 +31407,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(43), [sym_continue_statement] = STATE(43), [sym_goto_statement] = STATE(43), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2897), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [sym_block_expression] = STATE(3351), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2812), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [sym_block_expression] = STATE(3280), [sym_autoreleasepool_statement] = STATE(43), [sym_synchronized_statement] = STATE(43), [sym_for_in_statement] = STATE(43), [sym_try_catch_statement] = STATE(43), [sym_throw_statement] = STATE(43), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [aux_sym_case_statement_repeat1] = STATE(43), - [ts_builtin_sym_end] = ACTIONS(843), - [sym_identifier] = ACTIONS(845), - [aux_sym_preproc_include_token1] = ACTIONS(843), - [aux_sym_preproc_def_token1] = ACTIONS(843), - [anon_sym_RPAREN] = ACTIONS(843), - [aux_sym_preproc_if_token1] = ACTIONS(848), - [aux_sym_preproc_ifdef_token1] = ACTIONS(848), - [aux_sym_preproc_ifdef_token2] = ACTIONS(848), - [anon_sym_LPAREN2] = ACTIONS(850), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_DASH] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(856), - [anon_sym_STAR] = ACTIONS(859), - [anon_sym_CARET] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_typedef] = ACTIONS(868), - [anon_sym_extern] = ACTIONS(871), - [anon_sym___attribute] = ACTIONS(874), - [anon_sym___attribute__] = ACTIONS(874), - [anon_sym___declspec] = ACTIONS(877), - [anon_sym___cdecl] = ACTIONS(848), - [anon_sym___clrcall] = ACTIONS(848), - [anon_sym___stdcall] = ACTIONS(848), - [anon_sym___fastcall] = ACTIONS(848), - [anon_sym___thiscall] = ACTIONS(848), - [anon_sym___vectorcall] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(880), - [anon_sym_RBRACE] = ACTIONS(843), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_static] = ACTIONS(871), - [anon_sym_auto] = ACTIONS(871), - [anon_sym_register] = ACTIONS(871), - [anon_sym_inline] = ACTIONS(871), - [aux_sym_storage_class_specifier_token1] = ACTIONS(871), - [anon_sym_const] = ACTIONS(886), - [anon_sym_volatile] = ACTIONS(886), - [anon_sym_restrict] = ACTIONS(886), - [anon_sym__Atomic] = ACTIONS(889), - [anon_sym_in] = ACTIONS(886), - [anon_sym_out] = ACTIONS(886), - [anon_sym_inout] = ACTIONS(886), - [anon_sym_bycopy] = ACTIONS(886), - [anon_sym_byref] = ACTIONS(886), - [anon_sym_oneway] = ACTIONS(886), - [anon_sym__Nullable] = ACTIONS(886), - [anon_sym__Nonnull] = ACTIONS(886), - [anon_sym__Nullable_result] = ACTIONS(886), - [anon_sym__Null_unspecified] = ACTIONS(886), - [anon_sym___autoreleasing] = ACTIONS(886), - [anon_sym___nullable] = ACTIONS(886), - [anon_sym___nonnull] = ACTIONS(886), - [anon_sym___strong] = ACTIONS(886), - [anon_sym___weak] = ACTIONS(886), - [anon_sym___bridge] = ACTIONS(886), - [anon_sym___bridge_transfer] = ACTIONS(886), - [anon_sym___bridge_retained] = ACTIONS(886), - [anon_sym___unsafe_unretained] = ACTIONS(886), - [anon_sym___block] = ACTIONS(886), - [anon_sym___kindof] = ACTIONS(886), - [anon_sym___unused] = ACTIONS(886), - [anon_sym__Complex] = ACTIONS(886), - [anon_sym___complex] = ACTIONS(886), - [anon_sym_IBOutlet] = ACTIONS(886), - [anon_sym_IBInspectable] = ACTIONS(886), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(886), - [anon_sym_signed] = ACTIONS(892), - [anon_sym_unsigned] = ACTIONS(892), - [anon_sym_long] = ACTIONS(892), - [anon_sym_short] = ACTIONS(892), - [sym_primitive_type] = ACTIONS(895), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_NS_ENUM] = ACTIONS(901), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(901), - [anon_sym_NS_OPTIONS] = ACTIONS(901), - [anon_sym_struct] = ACTIONS(904), - [anon_sym_union] = ACTIONS(907), - [anon_sym_if] = ACTIONS(910), - [anon_sym_else] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(913), - [anon_sym_case] = ACTIONS(848), - [anon_sym_default] = ACTIONS(848), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(919), - [anon_sym_for] = ACTIONS(922), - [anon_sym_return] = ACTIONS(925), - [anon_sym_break] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(931), - [anon_sym_goto] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_sizeof] = ACTIONS(940), - [sym_number_literal] = ACTIONS(943), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(949), - [anon_sym_u_DQUOTE] = ACTIONS(949), - [anon_sym_U_DQUOTE] = ACTIONS(949), - [anon_sym_u8_DQUOTE] = ACTIONS(949), - [anon_sym_DQUOTE] = ACTIONS(949), - [sym_true] = ACTIONS(952), - [sym_false] = ACTIONS(952), - [sym_null] = ACTIONS(952), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(843), - [anon_sym_ATimport] = ACTIONS(843), - [sym__ns_assume_nonnull_declaration] = ACTIONS(848), - [anon_sym_ATcompatibility_alias] = ACTIONS(843), - [anon_sym_ATprotocol] = ACTIONS(955), - [anon_sym_ATclass] = ACTIONS(843), - [anon_sym_ATinterface] = ACTIONS(843), - [sym_class_interface_attribute_sepcifier] = ACTIONS(848), - [sym_method_attribute_specifier] = ACTIONS(958), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(961), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(961), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(964), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(964), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(964), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(964), - [anon_sym_NS_AVAILABLE] = ACTIONS(967), - [anon_sym___IOS_AVAILABLE] = ACTIONS(967), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(967), - [anon_sym_API_AVAILABLE] = ACTIONS(967), - [anon_sym_API_UNAVAILABLE] = ACTIONS(967), - [anon_sym_API_DEPRECATED] = ACTIONS(967), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(967), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(967), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(967), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(967), - [anon_sym___deprecated_msg] = ACTIONS(967), - [anon_sym___deprecated_enum_msg] = ACTIONS(967), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(967), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(967), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(967), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(967), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(970), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(973), - [anon_sym_ATimplementation] = ACTIONS(843), - [anon_sym_typeof] = ACTIONS(976), - [anon_sym___typeof] = ACTIONS(976), - [anon_sym___typeof__] = ACTIONS(976), - [sym_self] = ACTIONS(979), - [sym_super] = ACTIONS(952), - [sym_nil] = ACTIONS(952), - [sym_id] = ACTIONS(982), - [sym_instancetype] = ACTIONS(895), - [sym_Class] = ACTIONS(982), - [sym_SEL] = ACTIONS(895), - [sym_IMP] = ACTIONS(895), - [sym_BOOL] = ACTIONS(895), - [sym_auto] = ACTIONS(895), - [anon_sym_ATautoreleasepool] = ACTIONS(985), - [anon_sym_ATsynchronized] = ACTIONS(988), - [anon_sym_ATtry] = ACTIONS(991), - [anon_sym_ATcatch] = ACTIONS(843), - [anon_sym_ATfinally] = ACTIONS(843), - [anon_sym_ATthrow] = ACTIONS(994), - [anon_sym_ATselector] = ACTIONS(997), - [anon_sym_ATencode] = ACTIONS(1000), - [anon_sym_AT] = ACTIONS(1003), - [sym_YES] = ACTIONS(952), - [sym_NO] = ACTIONS(952), - [anon_sym___builtin_available] = ACTIONS(1006), - [anon_sym_ATavailable] = ACTIONS(1009), - [anon_sym_va_arg] = ACTIONS(1012), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [44] = { - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_specifiers] = STATE(4704), - [sym_attribute_specifier] = STATE(3359), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_labeled_statement] = STATE(43), - [sym_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_goto_statement] = STATE(43), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2897), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(43), - [sym_synchronized_statement] = STATE(43), - [sym_for_in_statement] = STATE(43), - [sym_try_catch_statement] = STATE(43), - [sym_throw_statement] = STATE(43), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [aux_sym_case_statement_repeat1] = STATE(43), - [ts_builtin_sym_end] = ACTIONS(835), - [sym_identifier] = ACTIONS(825), - [aux_sym_preproc_include_token1] = ACTIONS(835), - [aux_sym_preproc_def_token1] = ACTIONS(835), - [anon_sym_RPAREN] = ACTIONS(835), - [aux_sym_preproc_if_token1] = ACTIONS(837), - [aux_sym_preproc_ifdef_token1] = ACTIONS(837), - [aux_sym_preproc_ifdef_token2] = ACTIONS(837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(837), - [anon_sym___clrcall] = ACTIONS(837), - [anon_sym___stdcall] = ACTIONS(837), - [anon_sym___fastcall] = ACTIONS(837), - [anon_sym___thiscall] = ACTIONS(837), - [anon_sym___vectorcall] = ACTIONS(837), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_else] = ACTIONS(837), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(837), - [anon_sym_default] = ACTIONS(837), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(835), - [anon_sym_ATimport] = ACTIONS(835), - [sym__ns_assume_nonnull_declaration] = ACTIONS(837), - [anon_sym_ATcompatibility_alias] = ACTIONS(835), - [anon_sym_ATprotocol] = ACTIONS(831), - [anon_sym_ATclass] = ACTIONS(835), - [anon_sym_ATinterface] = ACTIONS(835), - [sym_class_interface_attribute_sepcifier] = ACTIONS(837), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(835), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATcatch] = ACTIONS(835), - [anon_sym_ATfinally] = ACTIONS(835), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [45] = { - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_specifiers] = STATE(4709), - [sym_attribute_specifier] = STATE(3360), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_labeled_statement] = STATE(42), - [sym_expression_statement] = STATE(42), - [sym_if_statement] = STATE(42), - [sym_switch_statement] = STATE(42), - [sym_while_statement] = STATE(42), - [sym_do_statement] = STATE(42), - [sym_for_statement] = STATE(42), - [sym_return_statement] = STATE(42), - [sym_break_statement] = STATE(42), - [sym_continue_statement] = STATE(42), - [sym_goto_statement] = STATE(42), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2974), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(42), - [sym_synchronized_statement] = STATE(42), - [sym_for_in_statement] = STATE(42), - [sym_try_catch_statement] = STATE(42), - [sym_throw_statement] = STATE(42), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [aux_sym_case_statement_repeat1] = STATE(42), - [sym_identifier] = ACTIONS(833), - [aux_sym_preproc_include_token1] = ACTIONS(823), - [aux_sym_preproc_def_token1] = ACTIONS(823), + [sym_identifier] = ACTIONS(823), + [aux_sym_preproc_include_token1] = ACTIONS(825), + [aux_sym_preproc_def_token1] = ACTIONS(825), [aux_sym_preproc_if_token1] = ACTIONS(827), [aux_sym_preproc_if_token2] = ACTIONS(827), [aux_sym_preproc_ifdef_token1] = ACTIONS(827), @@ -32761,11 +31528,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(829), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(179), [anon_sym_else] = ACTIONS(827), [anon_sym_switch] = ACTIONS(181), @@ -32778,64 +31542,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(195), [anon_sym_continue] = ACTIONS(197), [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(823), - [anon_sym_ATimport] = ACTIONS(823), + [anon_sym_POUNDimport] = ACTIONS(825), + [anon_sym_ATimport] = ACTIONS(825), [sym__ns_assume_nonnull_declaration] = ACTIONS(827), - [anon_sym_ATcompatibility_alias] = ACTIONS(823), + [anon_sym_ATcompatibility_alias] = ACTIONS(825), [anon_sym_ATprotocol] = ACTIONS(831), - [anon_sym_ATclass] = ACTIONS(823), - [anon_sym_ATinterface] = ACTIONS(823), + [anon_sym_ATclass] = ACTIONS(825), + [anon_sym_ATinterface] = ACTIONS(825), [sym_class_interface_attribute_sepcifier] = ACTIONS(827), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(823), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(825), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(829), [sym_Class] = ACTIONS(131), @@ -32846,14 +31613,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATautoreleasepool] = ACTIONS(219), [anon_sym_ATsynchronized] = ACTIONS(221), [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATcatch] = ACTIONS(823), - [anon_sym_ATfinally] = ACTIONS(823), + [anon_sym_ATcatch] = ACTIONS(825), + [anon_sym_ATfinally] = ACTIONS(825), [anon_sym_ATthrow] = ACTIONS(225), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -32864,583 +31631,586 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [46] = { - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_specifiers] = STATE(4704), - [sym_attribute_specifier] = STATE(3359), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_labeled_statement] = STATE(44), - [sym_expression_statement] = STATE(44), - [sym_if_statement] = STATE(44), - [sym_switch_statement] = STATE(44), - [sym_while_statement] = STATE(44), - [sym_do_statement] = STATE(44), - [sym_for_statement] = STATE(44), - [sym_return_statement] = STATE(44), - [sym_break_statement] = STATE(44), - [sym_continue_statement] = STATE(44), - [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2897), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(44), - [sym_synchronized_statement] = STATE(44), - [sym_for_in_statement] = STATE(44), - [sym_try_catch_statement] = STATE(44), - [sym_throw_statement] = STATE(44), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [aux_sym_case_statement_repeat1] = STATE(44), - [ts_builtin_sym_end] = ACTIONS(1015), - [sym_identifier] = ACTIONS(825), - [aux_sym_preproc_include_token1] = ACTIONS(1015), - [aux_sym_preproc_def_token1] = ACTIONS(1015), - [anon_sym_RPAREN] = ACTIONS(1015), - [aux_sym_preproc_if_token1] = ACTIONS(1017), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1017), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1017), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1017), - [anon_sym___clrcall] = ACTIONS(1017), - [anon_sym___stdcall] = ACTIONS(1017), - [anon_sym___fastcall] = ACTIONS(1017), - [anon_sym___thiscall] = ACTIONS(1017), - [anon_sym___vectorcall] = ACTIONS(1017), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_else] = ACTIONS(1017), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(1017), - [anon_sym_default] = ACTIONS(1017), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1015), - [anon_sym_ATimport] = ACTIONS(1015), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1017), - [anon_sym_ATcompatibility_alias] = ACTIONS(1015), - [anon_sym_ATprotocol] = ACTIONS(831), - [anon_sym_ATclass] = ACTIONS(1015), - [anon_sym_ATinterface] = ACTIONS(1015), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1017), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(1015), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATcatch] = ACTIONS(1015), - [anon_sym_ATfinally] = ACTIONS(1015), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [47] = { - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_specifiers] = STATE(4704), - [sym_attribute_specifier] = STATE(3359), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_labeled_statement] = STATE(43), - [sym_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_goto_statement] = STATE(43), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2897), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(43), - [sym_synchronized_statement] = STATE(43), - [sym_for_in_statement] = STATE(43), - [sym_try_catch_statement] = STATE(43), - [sym_throw_statement] = STATE(43), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [aux_sym_case_statement_repeat1] = STATE(43), - [ts_builtin_sym_end] = ACTIONS(839), - [sym_identifier] = ACTIONS(825), - [aux_sym_preproc_include_token1] = ACTIONS(839), - [aux_sym_preproc_def_token1] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [aux_sym_preproc_if_token1] = ACTIONS(841), - [aux_sym_preproc_ifdef_token1] = ACTIONS(841), - [aux_sym_preproc_ifdef_token2] = ACTIONS(841), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_typedef] = ACTIONS(31), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(841), - [anon_sym___clrcall] = ACTIONS(841), - [anon_sym___stdcall] = ACTIONS(841), - [anon_sym___fastcall] = ACTIONS(841), - [anon_sym___thiscall] = ACTIONS(841), - [anon_sym___vectorcall] = ACTIONS(841), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_else] = ACTIONS(841), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(841), - [anon_sym_default] = ACTIONS(841), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(839), - [anon_sym_ATimport] = ACTIONS(839), - [sym__ns_assume_nonnull_declaration] = ACTIONS(841), - [anon_sym_ATcompatibility_alias] = ACTIONS(839), - [anon_sym_ATprotocol] = ACTIONS(831), - [anon_sym_ATclass] = ACTIONS(839), - [anon_sym_ATinterface] = ACTIONS(839), - [sym_class_interface_attribute_sepcifier] = ACTIONS(841), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(839), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATcatch] = ACTIONS(839), - [anon_sym_ATfinally] = ACTIONS(839), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [48] = { - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_specifiers] = STATE(4709), - [sym_attribute_specifier] = STATE(3360), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_labeled_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_goto_statement] = STATE(41), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2974), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(41), - [sym_synchronized_statement] = STATE(41), - [sym_for_in_statement] = STATE(41), - [sym_try_catch_statement] = STATE(41), - [sym_throw_statement] = STATE(41), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [aux_sym_case_statement_repeat1] = STATE(41), + [41] = { + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_specifiers] = STATE(4719), + [sym_attribute_specifier] = STATE(3301), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2814), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(48), + [sym_synchronized_statement] = STATE(48), + [sym_for_in_statement] = STATE(48), + [sym_try_catch_statement] = STATE(48), + [sym_throw_statement] = STATE(48), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [aux_sym_case_statement_repeat1] = STATE(48), + [ts_builtin_sym_end] = ACTIONS(825), [sym_identifier] = ACTIONS(833), - [aux_sym_preproc_include_token1] = ACTIONS(1015), - [aux_sym_preproc_def_token1] = ACTIONS(1015), - [aux_sym_preproc_if_token1] = ACTIONS(1017), - [aux_sym_preproc_if_token2] = ACTIONS(1017), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1017), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1017), - [aux_sym_preproc_else_token1] = ACTIONS(1017), - [aux_sym_preproc_elif_token1] = ACTIONS(1017), + [aux_sym_preproc_include_token1] = ACTIONS(825), + [aux_sym_preproc_def_token1] = ACTIONS(825), + [anon_sym_RPAREN] = ACTIONS(825), + [aux_sym_preproc_if_token1] = ACTIONS(827), + [aux_sym_preproc_ifdef_token1] = ACTIONS(827), + [aux_sym_preproc_ifdef_token2] = ACTIONS(827), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(827), + [anon_sym___clrcall] = ACTIONS(827), + [anon_sym___stdcall] = ACTIONS(827), + [anon_sym___fastcall] = ACTIONS(827), + [anon_sym___thiscall] = ACTIONS(827), + [anon_sym___vectorcall] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_else] = ACTIONS(827), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(827), + [anon_sym_default] = ACTIONS(827), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(825), + [anon_sym_ATimport] = ACTIONS(825), + [sym__ns_assume_nonnull_declaration] = ACTIONS(827), + [anon_sym_ATcompatibility_alias] = ACTIONS(825), + [anon_sym_ATprotocol] = ACTIONS(831), + [anon_sym_ATclass] = ACTIONS(825), + [anon_sym_ATinterface] = ACTIONS(825), + [sym_class_interface_attribute_sepcifier] = ACTIONS(827), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(825), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATcatch] = ACTIONS(825), + [anon_sym_ATfinally] = ACTIONS(825), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [42] = { + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_specifiers] = STATE(4729), + [sym_attribute_specifier] = STATE(3302), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_labeled_statement] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_if_statement] = STATE(42), + [sym_switch_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_do_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_return_statement] = STATE(42), + [sym_break_statement] = STATE(42), + [sym_continue_statement] = STATE(42), + [sym_goto_statement] = STATE(42), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2812), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(42), + [sym_synchronized_statement] = STATE(42), + [sym_for_in_statement] = STATE(42), + [sym_try_catch_statement] = STATE(42), + [sym_throw_statement] = STATE(42), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [aux_sym_case_statement_repeat1] = STATE(42), + [sym_identifier] = ACTIONS(835), + [aux_sym_preproc_include_token1] = ACTIONS(838), + [aux_sym_preproc_def_token1] = ACTIONS(838), + [aux_sym_preproc_if_token1] = ACTIONS(840), + [aux_sym_preproc_if_token2] = ACTIONS(840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(840), + [aux_sym_preproc_else_token1] = ACTIONS(840), + [aux_sym_preproc_elif_token1] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(842), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(848), + [anon_sym_STAR] = ACTIONS(851), + [anon_sym_CARET] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_typedef] = ACTIONS(860), + [anon_sym_extern] = ACTIONS(863), + [anon_sym___attribute] = ACTIONS(866), + [anon_sym___attribute__] = ACTIONS(866), + [anon_sym___declspec] = ACTIONS(869), + [anon_sym___cdecl] = ACTIONS(840), + [anon_sym___clrcall] = ACTIONS(840), + [anon_sym___stdcall] = ACTIONS(840), + [anon_sym___fastcall] = ACTIONS(840), + [anon_sym___thiscall] = ACTIONS(840), + [anon_sym___vectorcall] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(872), + [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_static] = ACTIONS(863), + [anon_sym_auto] = ACTIONS(863), + [anon_sym_register] = ACTIONS(863), + [anon_sym_inline] = ACTIONS(863), + [aux_sym_storage_class_specifier_token1] = ACTIONS(863), + [anon_sym_const] = ACTIONS(878), + [anon_sym_volatile] = ACTIONS(878), + [anon_sym_restrict] = ACTIONS(878), + [anon_sym__Atomic] = ACTIONS(881), + [anon_sym_in] = ACTIONS(878), + [anon_sym_out] = ACTIONS(878), + [anon_sym_inout] = ACTIONS(878), + [anon_sym_bycopy] = ACTIONS(878), + [anon_sym_byref] = ACTIONS(878), + [anon_sym_oneway] = ACTIONS(878), + [anon_sym__Nullable] = ACTIONS(878), + [anon_sym__Nonnull] = ACTIONS(878), + [anon_sym__Nullable_result] = ACTIONS(878), + [anon_sym__Null_unspecified] = ACTIONS(878), + [anon_sym___autoreleasing] = ACTIONS(878), + [anon_sym___nullable] = ACTIONS(878), + [anon_sym___nonnull] = ACTIONS(878), + [anon_sym___strong] = ACTIONS(878), + [anon_sym___weak] = ACTIONS(878), + [anon_sym___bridge] = ACTIONS(878), + [anon_sym___bridge_transfer] = ACTIONS(878), + [anon_sym___bridge_retained] = ACTIONS(878), + [anon_sym___unsafe_unretained] = ACTIONS(878), + [anon_sym___block] = ACTIONS(878), + [anon_sym___kindof] = ACTIONS(878), + [anon_sym___unused] = ACTIONS(878), + [anon_sym__Complex] = ACTIONS(878), + [anon_sym___complex] = ACTIONS(878), + [anon_sym_IBOutlet] = ACTIONS(878), + [anon_sym_IBInspectable] = ACTIONS(878), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(878), + [anon_sym_signed] = ACTIONS(884), + [anon_sym_unsigned] = ACTIONS(884), + [anon_sym_long] = ACTIONS(884), + [anon_sym_short] = ACTIONS(884), + [sym_primitive_type] = ACTIONS(887), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_struct] = ACTIONS(893), + [anon_sym_union] = ACTIONS(896), + [anon_sym_if] = ACTIONS(899), + [anon_sym_else] = ACTIONS(840), + [anon_sym_switch] = ACTIONS(902), + [anon_sym_case] = ACTIONS(840), + [anon_sym_default] = ACTIONS(840), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(908), + [anon_sym_for] = ACTIONS(911), + [anon_sym_return] = ACTIONS(914), + [anon_sym_break] = ACTIONS(917), + [anon_sym_continue] = ACTIONS(920), + [anon_sym_goto] = ACTIONS(923), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_sizeof] = ACTIONS(929), + [sym_number_literal] = ACTIONS(932), + [anon_sym_L_SQUOTE] = ACTIONS(935), + [anon_sym_u_SQUOTE] = ACTIONS(935), + [anon_sym_U_SQUOTE] = ACTIONS(935), + [anon_sym_u8_SQUOTE] = ACTIONS(935), + [anon_sym_SQUOTE] = ACTIONS(935), + [anon_sym_L_DQUOTE] = ACTIONS(938), + [anon_sym_u_DQUOTE] = ACTIONS(938), + [anon_sym_U_DQUOTE] = ACTIONS(938), + [anon_sym_u8_DQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym_true] = ACTIONS(941), + [sym_false] = ACTIONS(941), + [sym_null] = ACTIONS(941), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(838), + [anon_sym_ATimport] = ACTIONS(838), + [sym__ns_assume_nonnull_declaration] = ACTIONS(840), + [anon_sym_ATcompatibility_alias] = ACTIONS(838), + [anon_sym_ATprotocol] = ACTIONS(944), + [anon_sym_ATclass] = ACTIONS(838), + [anon_sym_ATinterface] = ACTIONS(838), + [sym_class_interface_attribute_sepcifier] = ACTIONS(840), + [sym_method_attribute_specifier] = ACTIONS(947), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(953), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(953), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(953), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(953), + [anon_sym_NS_AVAILABLE] = ACTIONS(956), + [anon_sym___IOS_AVAILABLE] = ACTIONS(956), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(956), + [anon_sym_API_AVAILABLE] = ACTIONS(956), + [anon_sym_API_UNAVAILABLE] = ACTIONS(956), + [anon_sym_API_DEPRECATED] = ACTIONS(956), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(956), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(956), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(956), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(956), + [anon_sym___deprecated_msg] = ACTIONS(956), + [anon_sym___deprecated_enum_msg] = ACTIONS(956), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(956), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(956), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(956), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(956), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(959), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(962), + [anon_sym_ATimplementation] = ACTIONS(838), + [anon_sym_NS_ENUM] = ACTIONS(965), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(965), + [anon_sym_NS_OPTIONS] = ACTIONS(965), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym___typeof] = ACTIONS(968), + [anon_sym___typeof__] = ACTIONS(968), + [sym_self] = ACTIONS(971), + [sym_super] = ACTIONS(941), + [sym_nil] = ACTIONS(941), + [sym_id] = ACTIONS(974), + [sym_instancetype] = ACTIONS(887), + [sym_Class] = ACTIONS(974), + [sym_SEL] = ACTIONS(887), + [sym_IMP] = ACTIONS(887), + [sym_BOOL] = ACTIONS(887), + [sym_auto] = ACTIONS(887), + [anon_sym_ATautoreleasepool] = ACTIONS(977), + [anon_sym_ATsynchronized] = ACTIONS(980), + [anon_sym_ATtry] = ACTIONS(983), + [anon_sym_ATcatch] = ACTIONS(838), + [anon_sym_ATfinally] = ACTIONS(838), + [anon_sym_ATthrow] = ACTIONS(986), + [anon_sym_ATselector] = ACTIONS(989), + [anon_sym_ATencode] = ACTIONS(992), + [anon_sym_AT] = ACTIONS(995), + [sym_YES] = ACTIONS(941), + [sym_NO] = ACTIONS(941), + [anon_sym___builtin_available] = ACTIONS(998), + [anon_sym_ATavailable] = ACTIONS(1001), + [anon_sym_va_arg] = ACTIONS(1004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [43] = { + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_specifiers] = STATE(4729), + [sym_attribute_specifier] = STATE(3302), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_labeled_statement] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_if_statement] = STATE(42), + [sym_switch_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_do_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_return_statement] = STATE(42), + [sym_break_statement] = STATE(42), + [sym_continue_statement] = STATE(42), + [sym_goto_statement] = STATE(42), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2812), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(42), + [sym_synchronized_statement] = STATE(42), + [sym_for_in_statement] = STATE(42), + [sym_try_catch_statement] = STATE(42), + [sym_throw_statement] = STATE(42), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [aux_sym_case_statement_repeat1] = STATE(42), + [sym_identifier] = ACTIONS(823), + [aux_sym_preproc_include_token1] = ACTIONS(1007), + [aux_sym_preproc_def_token1] = ACTIONS(1007), + [aux_sym_preproc_if_token1] = ACTIONS(1009), + [aux_sym_preproc_if_token2] = ACTIONS(1009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1009), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1009), + [aux_sym_preproc_else_token1] = ACTIONS(1009), + [aux_sym_preproc_elif_token1] = ACTIONS(1009), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -33455,12 +32225,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1017), - [anon_sym___clrcall] = ACTIONS(1017), - [anon_sym___stdcall] = ACTIONS(1017), - [anon_sym___fastcall] = ACTIONS(1017), - [anon_sym___thiscall] = ACTIONS(1017), - [anon_sym___vectorcall] = ACTIONS(1017), + [anon_sym___cdecl] = ACTIONS(1009), + [anon_sym___clrcall] = ACTIONS(1009), + [anon_sym___stdcall] = ACTIONS(1009), + [anon_sym___fastcall] = ACTIONS(1009), + [anon_sym___thiscall] = ACTIONS(1009), + [anon_sym___vectorcall] = ACTIONS(1009), [anon_sym_LBRACE] = ACTIONS(175), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_static] = ACTIONS(45), @@ -33505,16 +32275,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(829), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [anon_sym_if] = ACTIONS(179), - [anon_sym_else] = ACTIONS(1017), + [anon_sym_else] = ACTIONS(1009), [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(1017), - [anon_sym_default] = ACTIONS(1017), + [anon_sym_case] = ACTIONS(1009), + [anon_sym_default] = ACTIONS(1009), [anon_sym_while] = ACTIONS(187), [anon_sym_do] = ACTIONS(189), [anon_sym_for] = ACTIONS(191), @@ -33522,64 +32289,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(195), [anon_sym_continue] = ACTIONS(197), [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1015), - [anon_sym_ATimport] = ACTIONS(1015), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1017), - [anon_sym_ATcompatibility_alias] = ACTIONS(1015), + [anon_sym_POUNDimport] = ACTIONS(1007), + [anon_sym_ATimport] = ACTIONS(1007), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1009), + [anon_sym_ATcompatibility_alias] = ACTIONS(1007), [anon_sym_ATprotocol] = ACTIONS(831), - [anon_sym_ATclass] = ACTIONS(1015), - [anon_sym_ATinterface] = ACTIONS(1015), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1017), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(1015), + [anon_sym_ATclass] = ACTIONS(1007), + [anon_sym_ATinterface] = ACTIONS(1007), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1009), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(1007), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(829), [sym_Class] = ACTIONS(131), @@ -33590,14 +32360,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATautoreleasepool] = ACTIONS(219), [anon_sym_ATsynchronized] = ACTIONS(221), [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATcatch] = ACTIONS(1015), - [anon_sym_ATfinally] = ACTIONS(1015), + [anon_sym_ATcatch] = ACTIONS(1007), + [anon_sym_ATfinally] = ACTIONS(1007), [anon_sym_ATthrow] = ACTIONS(225), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -33608,247 +32378,497 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [49] = { - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_specifiers] = STATE(4709), - [sym_attribute_specifier] = STATE(3360), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2974), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(49), - [sym_synchronized_statement] = STATE(49), - [sym_for_in_statement] = STATE(49), - [sym_try_catch_statement] = STATE(49), - [sym_throw_statement] = STATE(49), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [aux_sym_case_statement_repeat1] = STATE(49), - [sym_identifier] = ACTIONS(1019), - [aux_sym_preproc_include_token1] = ACTIONS(843), - [aux_sym_preproc_def_token1] = ACTIONS(843), - [aux_sym_preproc_if_token1] = ACTIONS(848), - [aux_sym_preproc_if_token2] = ACTIONS(848), - [aux_sym_preproc_ifdef_token1] = ACTIONS(848), - [aux_sym_preproc_ifdef_token2] = ACTIONS(848), - [aux_sym_preproc_else_token1] = ACTIONS(848), - [aux_sym_preproc_elif_token1] = ACTIONS(848), - [anon_sym_LPAREN2] = ACTIONS(850), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_DASH] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(856), - [anon_sym_STAR] = ACTIONS(859), - [anon_sym_CARET] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1025), - [anon_sym_extern] = ACTIONS(871), - [anon_sym___attribute] = ACTIONS(874), - [anon_sym___attribute__] = ACTIONS(874), - [anon_sym___declspec] = ACTIONS(877), - [anon_sym___cdecl] = ACTIONS(848), - [anon_sym___clrcall] = ACTIONS(848), - [anon_sym___stdcall] = ACTIONS(848), - [anon_sym___fastcall] = ACTIONS(848), - [anon_sym___thiscall] = ACTIONS(848), - [anon_sym___vectorcall] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_static] = ACTIONS(871), - [anon_sym_auto] = ACTIONS(871), - [anon_sym_register] = ACTIONS(871), - [anon_sym_inline] = ACTIONS(871), - [aux_sym_storage_class_specifier_token1] = ACTIONS(871), - [anon_sym_const] = ACTIONS(886), - [anon_sym_volatile] = ACTIONS(886), - [anon_sym_restrict] = ACTIONS(886), - [anon_sym__Atomic] = ACTIONS(889), - [anon_sym_in] = ACTIONS(886), - [anon_sym_out] = ACTIONS(886), - [anon_sym_inout] = ACTIONS(886), - [anon_sym_bycopy] = ACTIONS(886), - [anon_sym_byref] = ACTIONS(886), - [anon_sym_oneway] = ACTIONS(886), - [anon_sym__Nullable] = ACTIONS(886), - [anon_sym__Nonnull] = ACTIONS(886), - [anon_sym__Nullable_result] = ACTIONS(886), - [anon_sym__Null_unspecified] = ACTIONS(886), - [anon_sym___autoreleasing] = ACTIONS(886), - [anon_sym___nullable] = ACTIONS(886), - [anon_sym___nonnull] = ACTIONS(886), - [anon_sym___strong] = ACTIONS(886), - [anon_sym___weak] = ACTIONS(886), - [anon_sym___bridge] = ACTIONS(886), - [anon_sym___bridge_transfer] = ACTIONS(886), - [anon_sym___bridge_retained] = ACTIONS(886), - [anon_sym___unsafe_unretained] = ACTIONS(886), - [anon_sym___block] = ACTIONS(886), - [anon_sym___kindof] = ACTIONS(886), - [anon_sym___unused] = ACTIONS(886), - [anon_sym__Complex] = ACTIONS(886), - [anon_sym___complex] = ACTIONS(886), - [anon_sym_IBOutlet] = ACTIONS(886), - [anon_sym_IBInspectable] = ACTIONS(886), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(886), - [anon_sym_signed] = ACTIONS(892), - [anon_sym_unsigned] = ACTIONS(892), - [anon_sym_long] = ACTIONS(892), - [anon_sym_short] = ACTIONS(892), - [sym_primitive_type] = ACTIONS(895), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_NS_ENUM] = ACTIONS(901), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(901), - [anon_sym_NS_OPTIONS] = ACTIONS(901), - [anon_sym_struct] = ACTIONS(904), - [anon_sym_union] = ACTIONS(907), - [anon_sym_if] = ACTIONS(1031), - [anon_sym_else] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(1034), - [anon_sym_case] = ACTIONS(848), - [anon_sym_default] = ACTIONS(848), - [anon_sym_while] = ACTIONS(1037), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(1046), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_sizeof] = ACTIONS(940), - [sym_number_literal] = ACTIONS(943), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(949), - [anon_sym_u_DQUOTE] = ACTIONS(949), - [anon_sym_U_DQUOTE] = ACTIONS(949), - [anon_sym_u8_DQUOTE] = ACTIONS(949), - [anon_sym_DQUOTE] = ACTIONS(949), - [sym_true] = ACTIONS(952), - [sym_false] = ACTIONS(952), - [sym_null] = ACTIONS(952), + [44] = { + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_specifiers] = STATE(4719), + [sym_attribute_specifier] = STATE(3301), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2814), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(46), + [sym_synchronized_statement] = STATE(46), + [sym_for_in_statement] = STATE(46), + [sym_try_catch_statement] = STATE(46), + [sym_throw_statement] = STATE(46), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [aux_sym_case_statement_repeat1] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(1011), + [sym_identifier] = ACTIONS(833), + [aux_sym_preproc_include_token1] = ACTIONS(1011), + [aux_sym_preproc_def_token1] = ACTIONS(1011), + [anon_sym_RPAREN] = ACTIONS(1011), + [aux_sym_preproc_if_token1] = ACTIONS(1013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1013), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1013), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1013), + [anon_sym___clrcall] = ACTIONS(1013), + [anon_sym___stdcall] = ACTIONS(1013), + [anon_sym___fastcall] = ACTIONS(1013), + [anon_sym___thiscall] = ACTIONS(1013), + [anon_sym___vectorcall] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_else] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1013), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(843), - [anon_sym_ATimport] = ACTIONS(843), - [sym__ns_assume_nonnull_declaration] = ACTIONS(848), - [anon_sym_ATcompatibility_alias] = ACTIONS(843), - [anon_sym_ATprotocol] = ACTIONS(955), - [anon_sym_ATclass] = ACTIONS(843), - [anon_sym_ATinterface] = ACTIONS(843), - [sym_class_interface_attribute_sepcifier] = ACTIONS(848), - [sym_method_attribute_specifier] = ACTIONS(958), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(961), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(961), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(964), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(964), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(964), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(964), - [anon_sym_NS_AVAILABLE] = ACTIONS(967), - [anon_sym___IOS_AVAILABLE] = ACTIONS(967), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(967), - [anon_sym_API_AVAILABLE] = ACTIONS(967), - [anon_sym_API_UNAVAILABLE] = ACTIONS(967), - [anon_sym_API_DEPRECATED] = ACTIONS(967), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(967), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(967), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(967), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(967), - [anon_sym___deprecated_msg] = ACTIONS(967), - [anon_sym___deprecated_enum_msg] = ACTIONS(967), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(967), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(967), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(967), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(967), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(970), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(973), - [anon_sym_ATimplementation] = ACTIONS(843), - [anon_sym_typeof] = ACTIONS(976), - [anon_sym___typeof] = ACTIONS(976), - [anon_sym___typeof__] = ACTIONS(976), - [sym_self] = ACTIONS(979), - [sym_super] = ACTIONS(952), - [sym_nil] = ACTIONS(952), - [sym_id] = ACTIONS(982), - [sym_instancetype] = ACTIONS(895), - [sym_Class] = ACTIONS(982), - [sym_SEL] = ACTIONS(895), - [sym_IMP] = ACTIONS(895), - [sym_BOOL] = ACTIONS(895), - [sym_auto] = ACTIONS(895), - [anon_sym_ATautoreleasepool] = ACTIONS(1058), - [anon_sym_ATsynchronized] = ACTIONS(1061), - [anon_sym_ATtry] = ACTIONS(1064), - [anon_sym_ATcatch] = ACTIONS(843), - [anon_sym_ATfinally] = ACTIONS(843), - [anon_sym_ATthrow] = ACTIONS(1067), - [anon_sym_ATselector] = ACTIONS(997), - [anon_sym_ATencode] = ACTIONS(1000), - [anon_sym_AT] = ACTIONS(1003), - [sym_YES] = ACTIONS(952), - [sym_NO] = ACTIONS(952), - [anon_sym___builtin_available] = ACTIONS(1006), - [anon_sym_ATavailable] = ACTIONS(1009), - [anon_sym_va_arg] = ACTIONS(1012), + [anon_sym_POUNDimport] = ACTIONS(1011), + [anon_sym_ATimport] = ACTIONS(1011), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1013), + [anon_sym_ATcompatibility_alias] = ACTIONS(1011), + [anon_sym_ATprotocol] = ACTIONS(831), + [anon_sym_ATclass] = ACTIONS(1011), + [anon_sym_ATinterface] = ACTIONS(1011), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1013), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(1011), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATcatch] = ACTIONS(1011), + [anon_sym_ATfinally] = ACTIONS(1011), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [45] = { + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_specifiers] = STATE(4729), + [sym_attribute_specifier] = STATE(3302), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_labeled_statement] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_if_statement] = STATE(42), + [sym_switch_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_do_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_return_statement] = STATE(42), + [sym_break_statement] = STATE(42), + [sym_continue_statement] = STATE(42), + [sym_goto_statement] = STATE(42), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2812), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(42), + [sym_synchronized_statement] = STATE(42), + [sym_for_in_statement] = STATE(42), + [sym_try_catch_statement] = STATE(42), + [sym_throw_statement] = STATE(42), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [aux_sym_case_statement_repeat1] = STATE(42), + [sym_identifier] = ACTIONS(823), + [aux_sym_preproc_include_token1] = ACTIONS(1011), + [aux_sym_preproc_def_token1] = ACTIONS(1011), + [aux_sym_preproc_if_token1] = ACTIONS(1013), + [aux_sym_preproc_if_token2] = ACTIONS(1013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1013), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1013), + [aux_sym_preproc_else_token1] = ACTIONS(1013), + [aux_sym_preproc_elif_token1] = ACTIONS(1013), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_typedef] = ACTIONS(171), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1013), + [anon_sym___clrcall] = ACTIONS(1013), + [anon_sym___stdcall] = ACTIONS(1013), + [anon_sym___fastcall] = ACTIONS(1013), + [anon_sym___thiscall] = ACTIONS(1013), + [anon_sym___vectorcall] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(179), + [anon_sym_else] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(1013), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1011), + [anon_sym_ATimport] = ACTIONS(1011), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1013), + [anon_sym_ATcompatibility_alias] = ACTIONS(1011), + [anon_sym_ATprotocol] = ACTIONS(831), + [anon_sym_ATclass] = ACTIONS(1011), + [anon_sym_ATinterface] = ACTIONS(1011), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1013), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(1011), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATcatch] = ACTIONS(1011), + [anon_sym_ATfinally] = ACTIONS(1011), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -33856,20 +32876,1016 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, + [46] = { + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_specifiers] = STATE(4719), + [sym_attribute_specifier] = STATE(3301), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2814), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(46), + [sym_synchronized_statement] = STATE(46), + [sym_for_in_statement] = STATE(46), + [sym_try_catch_statement] = STATE(46), + [sym_throw_statement] = STATE(46), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [aux_sym_case_statement_repeat1] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(838), + [sym_identifier] = ACTIONS(1015), + [aux_sym_preproc_include_token1] = ACTIONS(838), + [aux_sym_preproc_def_token1] = ACTIONS(838), + [anon_sym_RPAREN] = ACTIONS(838), + [aux_sym_preproc_if_token1] = ACTIONS(840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(842), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(848), + [anon_sym_STAR] = ACTIONS(851), + [anon_sym_CARET] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(1018), + [anon_sym_typedef] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(863), + [anon_sym___attribute] = ACTIONS(866), + [anon_sym___attribute__] = ACTIONS(866), + [anon_sym___declspec] = ACTIONS(869), + [anon_sym___cdecl] = ACTIONS(840), + [anon_sym___clrcall] = ACTIONS(840), + [anon_sym___stdcall] = ACTIONS(840), + [anon_sym___fastcall] = ACTIONS(840), + [anon_sym___thiscall] = ACTIONS(840), + [anon_sym___vectorcall] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1024), + [anon_sym_RBRACE] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_static] = ACTIONS(863), + [anon_sym_auto] = ACTIONS(863), + [anon_sym_register] = ACTIONS(863), + [anon_sym_inline] = ACTIONS(863), + [aux_sym_storage_class_specifier_token1] = ACTIONS(863), + [anon_sym_const] = ACTIONS(878), + [anon_sym_volatile] = ACTIONS(878), + [anon_sym_restrict] = ACTIONS(878), + [anon_sym__Atomic] = ACTIONS(881), + [anon_sym_in] = ACTIONS(878), + [anon_sym_out] = ACTIONS(878), + [anon_sym_inout] = ACTIONS(878), + [anon_sym_bycopy] = ACTIONS(878), + [anon_sym_byref] = ACTIONS(878), + [anon_sym_oneway] = ACTIONS(878), + [anon_sym__Nullable] = ACTIONS(878), + [anon_sym__Nonnull] = ACTIONS(878), + [anon_sym__Nullable_result] = ACTIONS(878), + [anon_sym__Null_unspecified] = ACTIONS(878), + [anon_sym___autoreleasing] = ACTIONS(878), + [anon_sym___nullable] = ACTIONS(878), + [anon_sym___nonnull] = ACTIONS(878), + [anon_sym___strong] = ACTIONS(878), + [anon_sym___weak] = ACTIONS(878), + [anon_sym___bridge] = ACTIONS(878), + [anon_sym___bridge_transfer] = ACTIONS(878), + [anon_sym___bridge_retained] = ACTIONS(878), + [anon_sym___unsafe_unretained] = ACTIONS(878), + [anon_sym___block] = ACTIONS(878), + [anon_sym___kindof] = ACTIONS(878), + [anon_sym___unused] = ACTIONS(878), + [anon_sym__Complex] = ACTIONS(878), + [anon_sym___complex] = ACTIONS(878), + [anon_sym_IBOutlet] = ACTIONS(878), + [anon_sym_IBInspectable] = ACTIONS(878), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(878), + [anon_sym_signed] = ACTIONS(884), + [anon_sym_unsigned] = ACTIONS(884), + [anon_sym_long] = ACTIONS(884), + [anon_sym_short] = ACTIONS(884), + [sym_primitive_type] = ACTIONS(887), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_struct] = ACTIONS(893), + [anon_sym_union] = ACTIONS(896), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_else] = ACTIONS(840), + [anon_sym_switch] = ACTIONS(1030), + [anon_sym_case] = ACTIONS(840), + [anon_sym_default] = ACTIONS(840), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1039), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_goto] = ACTIONS(1051), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_sizeof] = ACTIONS(929), + [sym_number_literal] = ACTIONS(932), + [anon_sym_L_SQUOTE] = ACTIONS(935), + [anon_sym_u_SQUOTE] = ACTIONS(935), + [anon_sym_U_SQUOTE] = ACTIONS(935), + [anon_sym_u8_SQUOTE] = ACTIONS(935), + [anon_sym_SQUOTE] = ACTIONS(935), + [anon_sym_L_DQUOTE] = ACTIONS(938), + [anon_sym_u_DQUOTE] = ACTIONS(938), + [anon_sym_U_DQUOTE] = ACTIONS(938), + [anon_sym_u8_DQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym_true] = ACTIONS(941), + [sym_false] = ACTIONS(941), + [sym_null] = ACTIONS(941), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(838), + [anon_sym_ATimport] = ACTIONS(838), + [sym__ns_assume_nonnull_declaration] = ACTIONS(840), + [anon_sym_ATcompatibility_alias] = ACTIONS(838), + [anon_sym_ATprotocol] = ACTIONS(944), + [anon_sym_ATclass] = ACTIONS(838), + [anon_sym_ATinterface] = ACTIONS(838), + [sym_class_interface_attribute_sepcifier] = ACTIONS(840), + [sym_method_attribute_specifier] = ACTIONS(947), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(953), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(953), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(953), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(953), + [anon_sym_NS_AVAILABLE] = ACTIONS(956), + [anon_sym___IOS_AVAILABLE] = ACTIONS(956), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(956), + [anon_sym_API_AVAILABLE] = ACTIONS(956), + [anon_sym_API_UNAVAILABLE] = ACTIONS(956), + [anon_sym_API_DEPRECATED] = ACTIONS(956), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(956), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(956), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(956), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(956), + [anon_sym___deprecated_msg] = ACTIONS(956), + [anon_sym___deprecated_enum_msg] = ACTIONS(956), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(956), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(956), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(956), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(956), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(959), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(962), + [anon_sym_ATimplementation] = ACTIONS(838), + [anon_sym_NS_ENUM] = ACTIONS(965), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(965), + [anon_sym_NS_OPTIONS] = ACTIONS(965), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym___typeof] = ACTIONS(968), + [anon_sym___typeof__] = ACTIONS(968), + [sym_self] = ACTIONS(971), + [sym_super] = ACTIONS(941), + [sym_nil] = ACTIONS(941), + [sym_id] = ACTIONS(974), + [sym_instancetype] = ACTIONS(887), + [sym_Class] = ACTIONS(974), + [sym_SEL] = ACTIONS(887), + [sym_IMP] = ACTIONS(887), + [sym_BOOL] = ACTIONS(887), + [sym_auto] = ACTIONS(887), + [anon_sym_ATautoreleasepool] = ACTIONS(1054), + [anon_sym_ATsynchronized] = ACTIONS(1057), + [anon_sym_ATtry] = ACTIONS(1060), + [anon_sym_ATcatch] = ACTIONS(838), + [anon_sym_ATfinally] = ACTIONS(838), + [anon_sym_ATthrow] = ACTIONS(1063), + [anon_sym_ATselector] = ACTIONS(989), + [anon_sym_ATencode] = ACTIONS(992), + [anon_sym_AT] = ACTIONS(995), + [sym_YES] = ACTIONS(941), + [sym_NO] = ACTIONS(941), + [anon_sym___builtin_available] = ACTIONS(998), + [anon_sym_ATavailable] = ACTIONS(1001), + [anon_sym_va_arg] = ACTIONS(1004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [47] = { + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_specifiers] = STATE(4729), + [sym_attribute_specifier] = STATE(3302), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2812), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(45), + [sym_synchronized_statement] = STATE(45), + [sym_for_in_statement] = STATE(45), + [sym_try_catch_statement] = STATE(45), + [sym_throw_statement] = STATE(45), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [aux_sym_case_statement_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(823), + [aux_sym_preproc_include_token1] = ACTIONS(1066), + [aux_sym_preproc_def_token1] = ACTIONS(1066), + [aux_sym_preproc_if_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token2] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), + [aux_sym_preproc_else_token1] = ACTIONS(1068), + [aux_sym_preproc_elif_token1] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_typedef] = ACTIONS(171), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1068), + [anon_sym___clrcall] = ACTIONS(1068), + [anon_sym___stdcall] = ACTIONS(1068), + [anon_sym___fastcall] = ACTIONS(1068), + [anon_sym___thiscall] = ACTIONS(1068), + [anon_sym___vectorcall] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(179), + [anon_sym_else] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1066), + [anon_sym_ATimport] = ACTIONS(1066), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1068), + [anon_sym_ATcompatibility_alias] = ACTIONS(1066), + [anon_sym_ATprotocol] = ACTIONS(831), + [anon_sym_ATclass] = ACTIONS(1066), + [anon_sym_ATinterface] = ACTIONS(1066), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1068), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(1066), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATcatch] = ACTIONS(1066), + [anon_sym_ATfinally] = ACTIONS(1066), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [48] = { + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_specifiers] = STATE(4719), + [sym_attribute_specifier] = STATE(3301), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2814), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(46), + [sym_synchronized_statement] = STATE(46), + [sym_for_in_statement] = STATE(46), + [sym_try_catch_statement] = STATE(46), + [sym_throw_statement] = STATE(46), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [aux_sym_case_statement_repeat1] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(1007), + [sym_identifier] = ACTIONS(833), + [aux_sym_preproc_include_token1] = ACTIONS(1007), + [aux_sym_preproc_def_token1] = ACTIONS(1007), + [anon_sym_RPAREN] = ACTIONS(1007), + [aux_sym_preproc_if_token1] = ACTIONS(1009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1009), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1009), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1009), + [anon_sym___clrcall] = ACTIONS(1009), + [anon_sym___stdcall] = ACTIONS(1009), + [anon_sym___fastcall] = ACTIONS(1009), + [anon_sym___thiscall] = ACTIONS(1009), + [anon_sym___vectorcall] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_else] = ACTIONS(1009), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1009), + [anon_sym_default] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1007), + [anon_sym_ATimport] = ACTIONS(1007), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1009), + [anon_sym_ATcompatibility_alias] = ACTIONS(1007), + [anon_sym_ATprotocol] = ACTIONS(831), + [anon_sym_ATclass] = ACTIONS(1007), + [anon_sym_ATinterface] = ACTIONS(1007), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1009), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(1007), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATcatch] = ACTIONS(1007), + [anon_sym_ATfinally] = ACTIONS(1007), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [49] = { + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_specifiers] = STATE(4719), + [sym_attribute_specifier] = STATE(3301), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_labeled_statement] = STATE(44), + [sym_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2814), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(44), + [sym_synchronized_statement] = STATE(44), + [sym_for_in_statement] = STATE(44), + [sym_try_catch_statement] = STATE(44), + [sym_throw_statement] = STATE(44), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [aux_sym_case_statement_repeat1] = STATE(44), + [ts_builtin_sym_end] = ACTIONS(1066), + [sym_identifier] = ACTIONS(833), + [aux_sym_preproc_include_token1] = ACTIONS(1066), + [aux_sym_preproc_def_token1] = ACTIONS(1066), + [anon_sym_RPAREN] = ACTIONS(1066), + [aux_sym_preproc_if_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_typedef] = ACTIONS(31), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1068), + [anon_sym___clrcall] = ACTIONS(1068), + [anon_sym___stdcall] = ACTIONS(1068), + [anon_sym___fastcall] = ACTIONS(1068), + [anon_sym___thiscall] = ACTIONS(1068), + [anon_sym___vectorcall] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(61), + [anon_sym_else] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1066), + [anon_sym_ATimport] = ACTIONS(1066), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1068), + [anon_sym_ATcompatibility_alias] = ACTIONS(1066), + [anon_sym_ATprotocol] = ACTIONS(831), + [anon_sym_ATclass] = ACTIONS(1066), + [anon_sym_ATinterface] = ACTIONS(1066), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1068), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(1066), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATcatch] = ACTIONS(1066), + [anon_sym_ATfinally] = ACTIONS(1066), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, [50] = { [sym_declaration] = STATE(51), [sym_type_definition] = STATE(51), - [sym__declaration_specifiers] = STATE(4706), - [sym_attribute_specifier] = STATE(3362), - [sym_ms_declspec_modifier] = STATE(3031), + [sym__declaration_specifiers] = STATE(4726), + [sym_attribute_specifier] = STATE(3299), + [sym_ms_declspec_modifier] = STATE(2947), [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), [sym_labeled_statement] = STATE(51), [sym_expression_statement] = STATE(51), [sym_if_statement] = STATE(51), @@ -33881,548 +33897,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(51), [sym_continue_statement] = STATE(51), [sym_goto_statement] = STATE(51), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2887), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [sym_block_expression] = STATE(3351), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2811), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [sym_block_expression] = STATE(3280), [sym_autoreleasepool_statement] = STATE(51), [sym_synchronized_statement] = STATE(51), [sym_for_in_statement] = STATE(51), [sym_try_catch_statement] = STATE(51), [sym_throw_statement] = STATE(51), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [aux_sym_case_statement_repeat1] = STATE(51), [sym_identifier] = ACTIONS(1070), - [aux_sym_preproc_include_token1] = ACTIONS(1015), - [aux_sym_preproc_def_token1] = ACTIONS(1015), - [aux_sym_preproc_if_token1] = ACTIONS(1017), - [aux_sym_preproc_if_token2] = ACTIONS(1017), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1017), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1017), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_typedef] = ACTIONS(763), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1017), - [anon_sym___clrcall] = ACTIONS(1017), - [anon_sym___stdcall] = ACTIONS(1017), - [anon_sym___fastcall] = ACTIONS(1017), - [anon_sym___thiscall] = ACTIONS(1017), - [anon_sym___vectorcall] = ACTIONS(1017), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(771), - [anon_sym_else] = ACTIONS(1017), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(1017), - [anon_sym_default] = ACTIONS(1017), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1015), - [anon_sym_ATimport] = ACTIONS(1015), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1017), - [anon_sym_ATcompatibility_alias] = ACTIONS(1015), - [anon_sym_ATprotocol] = ACTIONS(831), - [anon_sym_ATclass] = ACTIONS(1015), - [anon_sym_ATinterface] = ACTIONS(1015), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1017), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(1015), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATcatch] = ACTIONS(1015), - [anon_sym_ATfinally] = ACTIONS(1015), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [51] = { - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_specifiers] = STATE(4706), - [sym_attribute_specifier] = STATE(3362), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_labeled_statement] = STATE(53), - [sym_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_while_statement] = STATE(53), - [sym_do_statement] = STATE(53), - [sym_for_statement] = STATE(53), - [sym_return_statement] = STATE(53), - [sym_break_statement] = STATE(53), - [sym_continue_statement] = STATE(53), - [sym_goto_statement] = STATE(53), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2887), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(53), - [sym_synchronized_statement] = STATE(53), - [sym_for_in_statement] = STATE(53), - [sym_try_catch_statement] = STATE(53), - [sym_throw_statement] = STATE(53), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [aux_sym_case_statement_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(1070), - [aux_sym_preproc_include_token1] = ACTIONS(835), - [aux_sym_preproc_def_token1] = ACTIONS(835), - [aux_sym_preproc_if_token1] = ACTIONS(837), - [aux_sym_preproc_if_token2] = ACTIONS(837), - [aux_sym_preproc_ifdef_token1] = ACTIONS(837), - [aux_sym_preproc_ifdef_token2] = ACTIONS(837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_typedef] = ACTIONS(763), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(837), - [anon_sym___clrcall] = ACTIONS(837), - [anon_sym___stdcall] = ACTIONS(837), - [anon_sym___fastcall] = ACTIONS(837), - [anon_sym___thiscall] = ACTIONS(837), - [anon_sym___vectorcall] = ACTIONS(837), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(771), - [anon_sym_else] = ACTIONS(837), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(837), - [anon_sym_default] = ACTIONS(837), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(835), - [anon_sym_ATimport] = ACTIONS(835), - [sym__ns_assume_nonnull_declaration] = ACTIONS(837), - [anon_sym_ATcompatibility_alias] = ACTIONS(835), - [anon_sym_ATprotocol] = ACTIONS(831), - [anon_sym_ATclass] = ACTIONS(835), - [anon_sym_ATinterface] = ACTIONS(835), - [sym_class_interface_attribute_sepcifier] = ACTIONS(837), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(835), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATcatch] = ACTIONS(835), - [anon_sym_ATfinally] = ACTIONS(835), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [52] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_specifiers] = STATE(4706), - [sym_attribute_specifier] = STATE(3362), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_labeled_statement] = STATE(54), - [sym_expression_statement] = STATE(54), - [sym_if_statement] = STATE(54), - [sym_switch_statement] = STATE(54), - [sym_while_statement] = STATE(54), - [sym_do_statement] = STATE(54), - [sym_for_statement] = STATE(54), - [sym_return_statement] = STATE(54), - [sym_break_statement] = STATE(54), - [sym_continue_statement] = STATE(54), - [sym_goto_statement] = STATE(54), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2887), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(54), - [sym_synchronized_statement] = STATE(54), - [sym_for_in_statement] = STATE(54), - [sym_try_catch_statement] = STATE(54), - [sym_throw_statement] = STATE(54), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(1070), - [aux_sym_preproc_include_token1] = ACTIONS(823), - [aux_sym_preproc_def_token1] = ACTIONS(823), + [aux_sym_preproc_include_token1] = ACTIONS(825), + [aux_sym_preproc_def_token1] = ACTIONS(825), [aux_sym_preproc_if_token1] = ACTIONS(827), [aux_sym_preproc_if_token2] = ACTIONS(827), [aux_sym_preproc_ifdef_token1] = ACTIONS(827), @@ -34435,8 +33960,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_typedef] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_typedef] = ACTIONS(625), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), @@ -34447,7 +33972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(827), [anon_sym___thiscall] = ACTIONS(827), [anon_sym___vectorcall] = ACTIONS(827), - [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), @@ -34491,81 +34016,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(829), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(771), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(633), [anon_sym_else] = ACTIONS(827), - [anon_sym_switch] = ACTIONS(773), + [anon_sym_switch] = ACTIONS(635), [anon_sym_case] = ACTIONS(827), [anon_sym_default] = ACTIONS(827), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(823), - [anon_sym_ATimport] = ACTIONS(823), + [anon_sym_POUNDimport] = ACTIONS(825), + [anon_sym_ATimport] = ACTIONS(825), [sym__ns_assume_nonnull_declaration] = ACTIONS(827), - [anon_sym_ATcompatibility_alias] = ACTIONS(823), + [anon_sym_ATcompatibility_alias] = ACTIONS(825), [anon_sym_ATprotocol] = ACTIONS(831), - [anon_sym_ATclass] = ACTIONS(823), - [anon_sym_ATinterface] = ACTIONS(823), + [anon_sym_ATclass] = ACTIONS(825), + [anon_sym_ATinterface] = ACTIONS(825), [sym_class_interface_attribute_sepcifier] = ACTIONS(827), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(823), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(825), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(829), [sym_Class] = ACTIONS(131), @@ -34573,17 +34098,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(829), [sym_BOOL] = ACTIONS(829), [sym_auto] = ACTIONS(829), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATcatch] = ACTIONS(823), - [anon_sym_ATfinally] = ACTIONS(823), - [anon_sym_ATthrow] = ACTIONS(817), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATcatch] = ACTIONS(825), + [anon_sym_ATfinally] = ACTIONS(825), + [anon_sym_ATthrow] = ACTIONS(679), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -34594,331 +34119,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [53] = { - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_specifiers] = STATE(4706), - [sym_attribute_specifier] = STATE(3362), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_labeled_statement] = STATE(53), - [sym_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_while_statement] = STATE(53), - [sym_do_statement] = STATE(53), - [sym_for_statement] = STATE(53), - [sym_return_statement] = STATE(53), - [sym_break_statement] = STATE(53), - [sym_continue_statement] = STATE(53), - [sym_goto_statement] = STATE(53), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2887), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(53), - [sym_synchronized_statement] = STATE(53), - [sym_for_in_statement] = STATE(53), - [sym_try_catch_statement] = STATE(53), - [sym_throw_statement] = STATE(53), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [aux_sym_case_statement_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(1072), - [aux_sym_preproc_include_token1] = ACTIONS(843), - [aux_sym_preproc_def_token1] = ACTIONS(843), - [aux_sym_preproc_if_token1] = ACTIONS(848), - [aux_sym_preproc_if_token2] = ACTIONS(848), - [aux_sym_preproc_ifdef_token1] = ACTIONS(848), - [aux_sym_preproc_ifdef_token2] = ACTIONS(848), - [anon_sym_LPAREN2] = ACTIONS(850), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_TILDE] = ACTIONS(853), - [anon_sym_DASH] = ACTIONS(856), - [anon_sym_PLUS] = ACTIONS(856), - [anon_sym_STAR] = ACTIONS(859), - [anon_sym_CARET] = ACTIONS(862), - [anon_sym_AMP] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(1075), - [anon_sym_typedef] = ACTIONS(1078), - [anon_sym_extern] = ACTIONS(871), - [anon_sym___attribute] = ACTIONS(874), - [anon_sym___attribute__] = ACTIONS(874), - [anon_sym___declspec] = ACTIONS(877), - [anon_sym___cdecl] = ACTIONS(848), - [anon_sym___clrcall] = ACTIONS(848), - [anon_sym___stdcall] = ACTIONS(848), - [anon_sym___fastcall] = ACTIONS(848), - [anon_sym___thiscall] = ACTIONS(848), - [anon_sym___vectorcall] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(1081), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_static] = ACTIONS(871), - [anon_sym_auto] = ACTIONS(871), - [anon_sym_register] = ACTIONS(871), - [anon_sym_inline] = ACTIONS(871), - [aux_sym_storage_class_specifier_token1] = ACTIONS(871), - [anon_sym_const] = ACTIONS(886), - [anon_sym_volatile] = ACTIONS(886), - [anon_sym_restrict] = ACTIONS(886), - [anon_sym__Atomic] = ACTIONS(889), - [anon_sym_in] = ACTIONS(886), - [anon_sym_out] = ACTIONS(886), - [anon_sym_inout] = ACTIONS(886), - [anon_sym_bycopy] = ACTIONS(886), - [anon_sym_byref] = ACTIONS(886), - [anon_sym_oneway] = ACTIONS(886), - [anon_sym__Nullable] = ACTIONS(886), - [anon_sym__Nonnull] = ACTIONS(886), - [anon_sym__Nullable_result] = ACTIONS(886), - [anon_sym__Null_unspecified] = ACTIONS(886), - [anon_sym___autoreleasing] = ACTIONS(886), - [anon_sym___nullable] = ACTIONS(886), - [anon_sym___nonnull] = ACTIONS(886), - [anon_sym___strong] = ACTIONS(886), - [anon_sym___weak] = ACTIONS(886), - [anon_sym___bridge] = ACTIONS(886), - [anon_sym___bridge_transfer] = ACTIONS(886), - [anon_sym___bridge_retained] = ACTIONS(886), - [anon_sym___unsafe_unretained] = ACTIONS(886), - [anon_sym___block] = ACTIONS(886), - [anon_sym___kindof] = ACTIONS(886), - [anon_sym___unused] = ACTIONS(886), - [anon_sym__Complex] = ACTIONS(886), - [anon_sym___complex] = ACTIONS(886), - [anon_sym_IBOutlet] = ACTIONS(886), - [anon_sym_IBInspectable] = ACTIONS(886), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(886), - [anon_sym_signed] = ACTIONS(892), - [anon_sym_unsigned] = ACTIONS(892), - [anon_sym_long] = ACTIONS(892), - [anon_sym_short] = ACTIONS(892), - [sym_primitive_type] = ACTIONS(895), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_NS_ENUM] = ACTIONS(901), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(901), - [anon_sym_NS_OPTIONS] = ACTIONS(901), - [anon_sym_struct] = ACTIONS(904), - [anon_sym_union] = ACTIONS(907), - [anon_sym_if] = ACTIONS(1084), - [anon_sym_else] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(1087), - [anon_sym_case] = ACTIONS(848), - [anon_sym_default] = ACTIONS(848), - [anon_sym_while] = ACTIONS(1090), - [anon_sym_do] = ACTIONS(1093), - [anon_sym_for] = ACTIONS(1096), - [anon_sym_return] = ACTIONS(1099), - [anon_sym_break] = ACTIONS(1102), - [anon_sym_continue] = ACTIONS(1105), - [anon_sym_goto] = ACTIONS(1108), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_sizeof] = ACTIONS(940), - [sym_number_literal] = ACTIONS(943), - [anon_sym_L_SQUOTE] = ACTIONS(946), - [anon_sym_u_SQUOTE] = ACTIONS(946), - [anon_sym_U_SQUOTE] = ACTIONS(946), - [anon_sym_u8_SQUOTE] = ACTIONS(946), - [anon_sym_SQUOTE] = ACTIONS(946), - [anon_sym_L_DQUOTE] = ACTIONS(949), - [anon_sym_u_DQUOTE] = ACTIONS(949), - [anon_sym_U_DQUOTE] = ACTIONS(949), - [anon_sym_u8_DQUOTE] = ACTIONS(949), - [anon_sym_DQUOTE] = ACTIONS(949), - [sym_true] = ACTIONS(952), - [sym_false] = ACTIONS(952), - [sym_null] = ACTIONS(952), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(843), - [anon_sym_ATimport] = ACTIONS(843), - [sym__ns_assume_nonnull_declaration] = ACTIONS(848), - [anon_sym_ATcompatibility_alias] = ACTIONS(843), - [anon_sym_ATprotocol] = ACTIONS(955), - [anon_sym_ATclass] = ACTIONS(843), - [anon_sym_ATinterface] = ACTIONS(843), - [sym_class_interface_attribute_sepcifier] = ACTIONS(848), - [sym_method_attribute_specifier] = ACTIONS(958), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(961), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(961), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(964), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(964), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(964), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(964), - [anon_sym_NS_AVAILABLE] = ACTIONS(967), - [anon_sym___IOS_AVAILABLE] = ACTIONS(967), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(967), - [anon_sym_API_AVAILABLE] = ACTIONS(967), - [anon_sym_API_UNAVAILABLE] = ACTIONS(967), - [anon_sym_API_DEPRECATED] = ACTIONS(967), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(967), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(967), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(967), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(967), - [anon_sym___deprecated_msg] = ACTIONS(967), - [anon_sym___deprecated_enum_msg] = ACTIONS(967), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(967), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(967), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(967), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(967), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(970), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(973), - [anon_sym_ATimplementation] = ACTIONS(843), - [anon_sym_typeof] = ACTIONS(976), - [anon_sym___typeof] = ACTIONS(976), - [anon_sym___typeof__] = ACTIONS(976), - [sym_self] = ACTIONS(979), - [sym_super] = ACTIONS(952), - [sym_nil] = ACTIONS(952), - [sym_id] = ACTIONS(982), - [sym_instancetype] = ACTIONS(895), - [sym_Class] = ACTIONS(982), - [sym_SEL] = ACTIONS(895), - [sym_IMP] = ACTIONS(895), - [sym_BOOL] = ACTIONS(895), - [sym_auto] = ACTIONS(895), - [anon_sym_ATautoreleasepool] = ACTIONS(1111), - [anon_sym_ATsynchronized] = ACTIONS(1114), - [anon_sym_ATtry] = ACTIONS(1117), - [anon_sym_ATcatch] = ACTIONS(843), - [anon_sym_ATfinally] = ACTIONS(843), - [anon_sym_ATthrow] = ACTIONS(1120), - [anon_sym_ATselector] = ACTIONS(997), - [anon_sym_ATencode] = ACTIONS(1000), - [anon_sym_AT] = ACTIONS(1003), - [sym_YES] = ACTIONS(952), - [sym_NO] = ACTIONS(952), - [anon_sym___builtin_available] = ACTIONS(1006), - [anon_sym_ATavailable] = ACTIONS(1009), - [anon_sym_va_arg] = ACTIONS(1012), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [54] = { - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_specifiers] = STATE(4706), - [sym_attribute_specifier] = STATE(3362), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_labeled_statement] = STATE(53), - [sym_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_while_statement] = STATE(53), - [sym_do_statement] = STATE(53), - [sym_for_statement] = STATE(53), - [sym_return_statement] = STATE(53), - [sym_break_statement] = STATE(53), - [sym_continue_statement] = STATE(53), - [sym_goto_statement] = STATE(53), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2887), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(53), - [sym_synchronized_statement] = STATE(53), - [sym_for_in_statement] = STATE(53), - [sym_try_catch_statement] = STATE(53), - [sym_throw_statement] = STATE(53), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [aux_sym_case_statement_repeat1] = STATE(53), + [51] = { + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_specifiers] = STATE(4726), + [sym_attribute_specifier] = STATE(3299), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2811), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(52), + [sym_synchronized_statement] = STATE(52), + [sym_for_in_statement] = STATE(52), + [sym_try_catch_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [aux_sym_case_statement_repeat1] = STATE(52), [sym_identifier] = ACTIONS(1070), - [aux_sym_preproc_include_token1] = ACTIONS(839), - [aux_sym_preproc_def_token1] = ACTIONS(839), - [aux_sym_preproc_if_token1] = ACTIONS(841), - [aux_sym_preproc_if_token2] = ACTIONS(841), - [aux_sym_preproc_ifdef_token1] = ACTIONS(841), - [aux_sym_preproc_ifdef_token2] = ACTIONS(841), + [aux_sym_preproc_include_token1] = ACTIONS(1007), + [aux_sym_preproc_def_token1] = ACTIONS(1007), + [aux_sym_preproc_if_token1] = ACTIONS(1009), + [aux_sym_preproc_if_token2] = ACTIONS(1009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1009), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1009), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -34927,19 +34207,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_typedef] = ACTIONS(763), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_typedef] = ACTIONS(625), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(841), - [anon_sym___clrcall] = ACTIONS(841), - [anon_sym___stdcall] = ACTIONS(841), - [anon_sym___fastcall] = ACTIONS(841), - [anon_sym___thiscall] = ACTIONS(841), - [anon_sym___vectorcall] = ACTIONS(841), - [anon_sym_LBRACE] = ACTIONS(767), + [anon_sym___cdecl] = ACTIONS(1009), + [anon_sym___clrcall] = ACTIONS(1009), + [anon_sym___stdcall] = ACTIONS(1009), + [anon_sym___fastcall] = ACTIONS(1009), + [anon_sym___thiscall] = ACTIONS(1009), + [anon_sym___vectorcall] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_LBRACK] = ACTIONS(43), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), @@ -34983,81 +34263,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(829), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_if] = ACTIONS(771), - [anon_sym_else] = ACTIONS(841), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(841), - [anon_sym_default] = ACTIONS(841), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(633), + [anon_sym_else] = ACTIONS(1009), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(1009), + [anon_sym_default] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(839), - [anon_sym_ATimport] = ACTIONS(839), - [sym__ns_assume_nonnull_declaration] = ACTIONS(841), - [anon_sym_ATcompatibility_alias] = ACTIONS(839), + [anon_sym_POUNDimport] = ACTIONS(1007), + [anon_sym_ATimport] = ACTIONS(1007), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1009), + [anon_sym_ATcompatibility_alias] = ACTIONS(1007), [anon_sym_ATprotocol] = ACTIONS(831), - [anon_sym_ATclass] = ACTIONS(839), - [anon_sym_ATinterface] = ACTIONS(839), - [sym_class_interface_attribute_sepcifier] = ACTIONS(841), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(839), + [anon_sym_ATclass] = ACTIONS(1007), + [anon_sym_ATinterface] = ACTIONS(1007), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1009), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(1007), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(829), [sym_Class] = ACTIONS(131), @@ -35065,17 +34345,758 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(829), [sym_BOOL] = ACTIONS(829), [sym_auto] = ACTIONS(829), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATcatch] = ACTIONS(839), - [anon_sym_ATfinally] = ACTIONS(839), - [anon_sym_ATthrow] = ACTIONS(817), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATcatch] = ACTIONS(1007), + [anon_sym_ATfinally] = ACTIONS(1007), + [anon_sym_ATthrow] = ACTIONS(679), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [52] = { + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_specifiers] = STATE(4726), + [sym_attribute_specifier] = STATE(3299), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2811), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(52), + [sym_synchronized_statement] = STATE(52), + [sym_for_in_statement] = STATE(52), + [sym_try_catch_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [aux_sym_case_statement_repeat1] = STATE(52), + [sym_identifier] = ACTIONS(1072), + [aux_sym_preproc_include_token1] = ACTIONS(838), + [aux_sym_preproc_def_token1] = ACTIONS(838), + [aux_sym_preproc_if_token1] = ACTIONS(840), + [aux_sym_preproc_if_token2] = ACTIONS(840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(840), + [anon_sym_LPAREN2] = ACTIONS(842), + [anon_sym_BANG] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(848), + [anon_sym_PLUS] = ACTIONS(848), + [anon_sym_STAR] = ACTIONS(851), + [anon_sym_CARET] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(1075), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(863), + [anon_sym___attribute] = ACTIONS(866), + [anon_sym___attribute__] = ACTIONS(866), + [anon_sym___declspec] = ACTIONS(869), + [anon_sym___cdecl] = ACTIONS(840), + [anon_sym___clrcall] = ACTIONS(840), + [anon_sym___stdcall] = ACTIONS(840), + [anon_sym___fastcall] = ACTIONS(840), + [anon_sym___thiscall] = ACTIONS(840), + [anon_sym___vectorcall] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_static] = ACTIONS(863), + [anon_sym_auto] = ACTIONS(863), + [anon_sym_register] = ACTIONS(863), + [anon_sym_inline] = ACTIONS(863), + [aux_sym_storage_class_specifier_token1] = ACTIONS(863), + [anon_sym_const] = ACTIONS(878), + [anon_sym_volatile] = ACTIONS(878), + [anon_sym_restrict] = ACTIONS(878), + [anon_sym__Atomic] = ACTIONS(881), + [anon_sym_in] = ACTIONS(878), + [anon_sym_out] = ACTIONS(878), + [anon_sym_inout] = ACTIONS(878), + [anon_sym_bycopy] = ACTIONS(878), + [anon_sym_byref] = ACTIONS(878), + [anon_sym_oneway] = ACTIONS(878), + [anon_sym__Nullable] = ACTIONS(878), + [anon_sym__Nonnull] = ACTIONS(878), + [anon_sym__Nullable_result] = ACTIONS(878), + [anon_sym__Null_unspecified] = ACTIONS(878), + [anon_sym___autoreleasing] = ACTIONS(878), + [anon_sym___nullable] = ACTIONS(878), + [anon_sym___nonnull] = ACTIONS(878), + [anon_sym___strong] = ACTIONS(878), + [anon_sym___weak] = ACTIONS(878), + [anon_sym___bridge] = ACTIONS(878), + [anon_sym___bridge_transfer] = ACTIONS(878), + [anon_sym___bridge_retained] = ACTIONS(878), + [anon_sym___unsafe_unretained] = ACTIONS(878), + [anon_sym___block] = ACTIONS(878), + [anon_sym___kindof] = ACTIONS(878), + [anon_sym___unused] = ACTIONS(878), + [anon_sym__Complex] = ACTIONS(878), + [anon_sym___complex] = ACTIONS(878), + [anon_sym_IBOutlet] = ACTIONS(878), + [anon_sym_IBInspectable] = ACTIONS(878), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(878), + [anon_sym_signed] = ACTIONS(884), + [anon_sym_unsigned] = ACTIONS(884), + [anon_sym_long] = ACTIONS(884), + [anon_sym_short] = ACTIONS(884), + [sym_primitive_type] = ACTIONS(887), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_struct] = ACTIONS(893), + [anon_sym_union] = ACTIONS(896), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_else] = ACTIONS(840), + [anon_sym_switch] = ACTIONS(1087), + [anon_sym_case] = ACTIONS(840), + [anon_sym_default] = ACTIONS(840), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(1093), + [anon_sym_for] = ACTIONS(1096), + [anon_sym_return] = ACTIONS(1099), + [anon_sym_break] = ACTIONS(1102), + [anon_sym_continue] = ACTIONS(1105), + [anon_sym_goto] = ACTIONS(1108), + [anon_sym_DASH_DASH] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(926), + [anon_sym_sizeof] = ACTIONS(929), + [sym_number_literal] = ACTIONS(932), + [anon_sym_L_SQUOTE] = ACTIONS(935), + [anon_sym_u_SQUOTE] = ACTIONS(935), + [anon_sym_U_SQUOTE] = ACTIONS(935), + [anon_sym_u8_SQUOTE] = ACTIONS(935), + [anon_sym_SQUOTE] = ACTIONS(935), + [anon_sym_L_DQUOTE] = ACTIONS(938), + [anon_sym_u_DQUOTE] = ACTIONS(938), + [anon_sym_U_DQUOTE] = ACTIONS(938), + [anon_sym_u8_DQUOTE] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(938), + [sym_true] = ACTIONS(941), + [sym_false] = ACTIONS(941), + [sym_null] = ACTIONS(941), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(838), + [anon_sym_ATimport] = ACTIONS(838), + [sym__ns_assume_nonnull_declaration] = ACTIONS(840), + [anon_sym_ATcompatibility_alias] = ACTIONS(838), + [anon_sym_ATprotocol] = ACTIONS(944), + [anon_sym_ATclass] = ACTIONS(838), + [anon_sym_ATinterface] = ACTIONS(838), + [sym_class_interface_attribute_sepcifier] = ACTIONS(840), + [sym_method_attribute_specifier] = ACTIONS(947), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(953), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(953), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(953), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(953), + [anon_sym_NS_AVAILABLE] = ACTIONS(956), + [anon_sym___IOS_AVAILABLE] = ACTIONS(956), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(956), + [anon_sym_API_AVAILABLE] = ACTIONS(956), + [anon_sym_API_UNAVAILABLE] = ACTIONS(956), + [anon_sym_API_DEPRECATED] = ACTIONS(956), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(956), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(956), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(956), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(956), + [anon_sym___deprecated_msg] = ACTIONS(956), + [anon_sym___deprecated_enum_msg] = ACTIONS(956), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(956), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(956), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(956), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(956), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(959), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(962), + [anon_sym_ATimplementation] = ACTIONS(838), + [anon_sym_NS_ENUM] = ACTIONS(965), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(965), + [anon_sym_NS_OPTIONS] = ACTIONS(965), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym___typeof] = ACTIONS(968), + [anon_sym___typeof__] = ACTIONS(968), + [sym_self] = ACTIONS(971), + [sym_super] = ACTIONS(941), + [sym_nil] = ACTIONS(941), + [sym_id] = ACTIONS(974), + [sym_instancetype] = ACTIONS(887), + [sym_Class] = ACTIONS(974), + [sym_SEL] = ACTIONS(887), + [sym_IMP] = ACTIONS(887), + [sym_BOOL] = ACTIONS(887), + [sym_auto] = ACTIONS(887), + [anon_sym_ATautoreleasepool] = ACTIONS(1111), + [anon_sym_ATsynchronized] = ACTIONS(1114), + [anon_sym_ATtry] = ACTIONS(1117), + [anon_sym_ATcatch] = ACTIONS(838), + [anon_sym_ATfinally] = ACTIONS(838), + [anon_sym_ATthrow] = ACTIONS(1120), + [anon_sym_ATselector] = ACTIONS(989), + [anon_sym_ATencode] = ACTIONS(992), + [anon_sym_AT] = ACTIONS(995), + [sym_YES] = ACTIONS(941), + [sym_NO] = ACTIONS(941), + [anon_sym___builtin_available] = ACTIONS(998), + [anon_sym_ATavailable] = ACTIONS(1001), + [anon_sym_va_arg] = ACTIONS(1004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [53] = { + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_specifiers] = STATE(4726), + [sym_attribute_specifier] = STATE(3299), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2811), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(52), + [sym_synchronized_statement] = STATE(52), + [sym_for_in_statement] = STATE(52), + [sym_try_catch_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [aux_sym_case_statement_repeat1] = STATE(52), + [sym_identifier] = ACTIONS(1070), + [aux_sym_preproc_include_token1] = ACTIONS(1011), + [aux_sym_preproc_def_token1] = ACTIONS(1011), + [aux_sym_preproc_if_token1] = ACTIONS(1013), + [aux_sym_preproc_if_token2] = ACTIONS(1013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1013), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1013), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_typedef] = ACTIONS(625), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1013), + [anon_sym___clrcall] = ACTIONS(1013), + [anon_sym___stdcall] = ACTIONS(1013), + [anon_sym___fastcall] = ACTIONS(1013), + [anon_sym___thiscall] = ACTIONS(1013), + [anon_sym___vectorcall] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(633), + [anon_sym_else] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(1013), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1011), + [anon_sym_ATimport] = ACTIONS(1011), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1013), + [anon_sym_ATcompatibility_alias] = ACTIONS(1011), + [anon_sym_ATprotocol] = ACTIONS(831), + [anon_sym_ATclass] = ACTIONS(1011), + [anon_sym_ATinterface] = ACTIONS(1011), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1013), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(1011), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATcatch] = ACTIONS(1011), + [anon_sym_ATfinally] = ACTIONS(1011), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [54] = { + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_specifiers] = STATE(4726), + [sym_attribute_specifier] = STATE(3299), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_labeled_statement] = STATE(53), + [sym_expression_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_switch_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_do_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_return_statement] = STATE(53), + [sym_break_statement] = STATE(53), + [sym_continue_statement] = STATE(53), + [sym_goto_statement] = STATE(53), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2811), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(53), + [sym_synchronized_statement] = STATE(53), + [sym_for_in_statement] = STATE(53), + [sym_try_catch_statement] = STATE(53), + [sym_throw_statement] = STATE(53), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [aux_sym_case_statement_repeat1] = STATE(53), + [sym_identifier] = ACTIONS(1070), + [aux_sym_preproc_include_token1] = ACTIONS(1066), + [aux_sym_preproc_def_token1] = ACTIONS(1066), + [aux_sym_preproc_if_token1] = ACTIONS(1068), + [aux_sym_preproc_if_token2] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1068), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_typedef] = ACTIONS(625), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(1068), + [anon_sym___clrcall] = ACTIONS(1068), + [anon_sym___stdcall] = ACTIONS(1068), + [anon_sym___fastcall] = ACTIONS(1068), + [anon_sym___thiscall] = ACTIONS(1068), + [anon_sym___vectorcall] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_if] = ACTIONS(633), + [anon_sym_else] = ACTIONS(1068), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(1068), + [anon_sym_default] = ACTIONS(1068), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1066), + [anon_sym_ATimport] = ACTIONS(1066), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1068), + [anon_sym_ATcompatibility_alias] = ACTIONS(1066), + [anon_sym_ATprotocol] = ACTIONS(831), + [anon_sym_ATclass] = ACTIONS(1066), + [anon_sym_ATinterface] = ACTIONS(1066), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1068), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(1066), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATcatch] = ACTIONS(1066), + [anon_sym_ATfinally] = ACTIONS(1066), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -35087,59 +35108,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [55] = { - [sym_declaration] = STATE(3619), - [sym__declaration_specifiers] = STATE(3947), - [sym_attribute_specifier] = STATE(3013), - [sym_ms_declspec_modifier] = STATE(3013), - [sym_storage_class_specifier] = STATE(3013), - [sym_type_qualifier] = STATE(3013), - [sym__type_specifier] = STATE(3410), - [sym_sized_type_specifier] = STATE(3410), - [sym_enum_specifier] = STATE(3410), - [sym_struct_specifier] = STATE(3410), - [sym_union_specifier] = STATE(3410), - [sym__expression] = STATE(4434), - [sym_comma_expression] = STATE(5326), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3410), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2996), - [sym__argument_type_declarator] = STATE(5323), - [sym_typeof_specifier] = STATE(3410), - [sym_atomic_specifier] = STATE(3410), - [sym_generic_type_specifier] = STATE(3410), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym__declaration_specifiers_repeat1] = STATE(3013), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_declaration] = STATE(3596), + [sym__declaration_specifiers] = STATE(3907), + [sym_attribute_specifier] = STATE(2945), + [sym_ms_declspec_modifier] = STATE(2945), + [sym_storage_class_specifier] = STATE(2945), + [sym_type_qualifier] = STATE(2945), + [sym__type_specifier] = STATE(3352), + [sym_sized_type_specifier] = STATE(3352), + [sym_enum_specifier] = STATE(3352), + [sym_struct_specifier] = STATE(3352), + [sym_union_specifier] = STATE(3352), + [sym__expression] = STATE(4460), + [sym_comma_expression] = STATE(5842), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3352), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2891), + [sym__argument_type_declarator] = STATE(5843), + [sym_ns_enum_specifier] = STATE(3352), + [sym_typeof_specifier] = STATE(3352), + [sym_atomic_specifier] = STATE(3352), + [sym_generic_type_specifier] = STATE(3352), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym__declaration_specifiers_repeat1] = STATE(2945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(1123), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -35197,64 +35219,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(1127), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), [sym_nonnull] = ACTIONS(1129), [sym_nullable] = ACTIONS(1129), [anon_sym_NS_NOESCAPE] = ACTIONS(1131), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(1127), [sym_Class] = ACTIONS(131), @@ -35265,8 +35287,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -35278,59 +35300,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [56] = { - [sym_declaration] = STATE(3616), - [sym__declaration_specifiers] = STATE(3947), - [sym_attribute_specifier] = STATE(3013), - [sym_ms_declspec_modifier] = STATE(3013), - [sym_storage_class_specifier] = STATE(3013), - [sym_type_qualifier] = STATE(3013), - [sym__type_specifier] = STATE(3410), - [sym_sized_type_specifier] = STATE(3410), - [sym_enum_specifier] = STATE(3410), - [sym_struct_specifier] = STATE(3410), - [sym_union_specifier] = STATE(3410), - [sym__expression] = STATE(4462), - [sym_comma_expression] = STATE(5882), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3410), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2996), - [sym__argument_type_declarator] = STATE(5883), - [sym_typeof_specifier] = STATE(3410), - [sym_atomic_specifier] = STATE(3410), - [sym_generic_type_specifier] = STATE(3410), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym__declaration_specifiers_repeat1] = STATE(3013), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_declaration] = STATE(3610), + [sym__declaration_specifiers] = STATE(3907), + [sym_attribute_specifier] = STATE(2945), + [sym_ms_declspec_modifier] = STATE(2945), + [sym_storage_class_specifier] = STATE(2945), + [sym_type_qualifier] = STATE(2945), + [sym__type_specifier] = STATE(3352), + [sym_sized_type_specifier] = STATE(3352), + [sym_enum_specifier] = STATE(3352), + [sym_struct_specifier] = STATE(3352), + [sym_union_specifier] = STATE(3352), + [sym__expression] = STATE(4486), + [sym_comma_expression] = STATE(5803), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3352), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2891), + [sym__argument_type_declarator] = STATE(5804), + [sym_ns_enum_specifier] = STATE(3352), + [sym_typeof_specifier] = STATE(3352), + [sym_atomic_specifier] = STATE(3352), + [sym_generic_type_specifier] = STATE(3352), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym__declaration_specifiers_repeat1] = STATE(2945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(1123), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -35388,64 +35411,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(1127), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), [sym_nonnull] = ACTIONS(1129), [sym_nullable] = ACTIONS(1129), [anon_sym_NS_NOESCAPE] = ACTIONS(1131), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(1127), [sym_Class] = ACTIONS(131), @@ -35456,8 +35479,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -35469,59 +35492,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [57] = { - [sym_declaration] = STATE(3626), - [sym__declaration_specifiers] = STATE(3947), - [sym_attribute_specifier] = STATE(3013), - [sym_ms_declspec_modifier] = STATE(3013), - [sym_storage_class_specifier] = STATE(3013), - [sym_type_qualifier] = STATE(3013), - [sym__type_specifier] = STATE(3410), - [sym_sized_type_specifier] = STATE(3410), - [sym_enum_specifier] = STATE(3410), - [sym_struct_specifier] = STATE(3410), - [sym_union_specifier] = STATE(3410), - [sym__expression] = STATE(4436), - [sym_comma_expression] = STATE(5843), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3410), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2996), - [sym__argument_type_declarator] = STATE(5844), - [sym_typeof_specifier] = STATE(3410), - [sym_atomic_specifier] = STATE(3410), - [sym_generic_type_specifier] = STATE(3410), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym__declaration_specifiers_repeat1] = STATE(3013), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), + [sym_declaration] = STATE(3573), + [sym__declaration_specifiers] = STATE(3907), + [sym_attribute_specifier] = STATE(2945), + [sym_ms_declspec_modifier] = STATE(2945), + [sym_storage_class_specifier] = STATE(2945), + [sym_type_qualifier] = STATE(2945), + [sym__type_specifier] = STATE(3352), + [sym_sized_type_specifier] = STATE(3352), + [sym_enum_specifier] = STATE(3352), + [sym_struct_specifier] = STATE(3352), + [sym_union_specifier] = STATE(3352), + [sym__expression] = STATE(4453), + [sym_comma_expression] = STATE(5549), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3352), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2891), + [sym__argument_type_declarator] = STATE(5548), + [sym_ns_enum_specifier] = STATE(3352), + [sym_typeof_specifier] = STATE(3352), + [sym_atomic_specifier] = STATE(3352), + [sym_generic_type_specifier] = STATE(3352), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym__declaration_specifiers_repeat1] = STATE(2945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), [sym_identifier] = ACTIONS(1123), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -35579,64 +35603,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(1127), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), [sym_nonnull] = ACTIONS(1129), [sym_nullable] = ACTIONS(1129), [anon_sym_NS_NOESCAPE] = ACTIONS(1131), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(131), [sym_instancetype] = ACTIONS(1127), [sym_Class] = ACTIONS(131), @@ -35647,8 +35671,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -35660,71 +35684,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [58] = { - [sym_compound_statement] = STATE(85), - [sym_type_qualifier] = STATE(3914), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym__statement] = STATE(5560), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4427), - [sym_comma_expression] = STATE(5138), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_type_descriptor] = STATE(5566), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [sym_block_abstract_declarator] = STATE(5569), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), + [sym_compound_statement] = STATE(76), + [sym_type_qualifier] = STATE(3873), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__statement] = STATE(5741), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4373), + [sym_comma_expression] = STATE(5226), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_type_descriptor] = STATE(5738), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [sym_block_abstract_declarator] = STATE(5737), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), [sym_identifier] = ACTIONS(1137), [anon_sym_LPAREN2] = ACTIONS(1139), [anon_sym_BANG] = ACTIONS(21), @@ -35774,48 +35799,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1147), [sym_primitive_type] = ACTIONS(1149), [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), - [anon_sym_NS_NOESCAPE] = ACTIONS(1159), + [anon_sym_NS_NOESCAPE] = ACTIONS(1157), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), [anon_sym_typeof] = ACTIONS(1161), [anon_sym___typeof] = ACTIONS(1161), [anon_sym___typeof__] = ACTIONS(1161), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(1163), [sym_instancetype] = ACTIONS(1149), [sym_Class] = ACTIONS(1163), @@ -35830,8 +35855,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -35843,71 +35868,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [59] = { - [sym_compound_statement] = STATE(85), - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym__statement] = STATE(5560), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4427), - [sym_comma_expression] = STATE(5138), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_type_descriptor] = STATE(5566), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [sym_block_abstract_declarator] = STATE(5569), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), + [sym_compound_statement] = STATE(76), + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__statement] = STATE(5656), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4373), + [sym_comma_expression] = STATE(5226), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_type_descriptor] = STATE(5657), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [sym_block_abstract_declarator] = STATE(5658), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), [sym_identifier] = ACTIONS(1137), [anon_sym_LPAREN2] = ACTIONS(1139), [anon_sym_BANG] = ACTIONS(21), @@ -35957,47 +35983,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1147), [sym_primitive_type] = ACTIONS(1149), [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), [anon_sym_typeof] = ACTIONS(1161), [anon_sym___typeof] = ACTIONS(1161), [anon_sym___typeof__] = ACTIONS(1161), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(1163), [sym_instancetype] = ACTIONS(1149), [sym_Class] = ACTIONS(1163), @@ -36012,8 +36038,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -36025,71 +36051,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [60] = { - [sym_compound_statement] = STATE(85), - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym__statement] = STATE(5372), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4427), - [sym_comma_expression] = STATE(5138), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_type_descriptor] = STATE(5373), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [sym_block_abstract_declarator] = STATE(5374), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), + [sym_compound_statement] = STATE(76), + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__statement] = STATE(5741), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4373), + [sym_comma_expression] = STATE(5226), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_type_descriptor] = STATE(5546), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [sym_block_abstract_declarator] = STATE(5737), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), [sym_identifier] = ACTIONS(1137), [anon_sym_LPAREN2] = ACTIONS(1139), [anon_sym_BANG] = ACTIONS(21), @@ -36139,47 +36166,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1147), [sym_primitive_type] = ACTIONS(1149), [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), [anon_sym_typeof] = ACTIONS(1161), [anon_sym___typeof] = ACTIONS(1161), [anon_sym___typeof__] = ACTIONS(1161), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(1163), [sym_instancetype] = ACTIONS(1149), [sym_Class] = ACTIONS(1163), @@ -36194,8 +36221,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -36207,71 +36234,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [61] = { - [sym_compound_statement] = STATE(85), - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym__statement] = STATE(5372), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4427), - [sym_comma_expression] = STATE(5138), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_type_descriptor] = STATE(5432), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [sym_block_abstract_declarator] = STATE(5374), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), + [sym_compound_statement] = STATE(76), + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__statement] = STATE(5656), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4373), + [sym_comma_expression] = STATE(5226), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_type_descriptor] = STATE(5682), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [sym_block_abstract_declarator] = STATE(5658), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), [sym_identifier] = ACTIONS(1137), [anon_sym_LPAREN2] = ACTIONS(1139), [anon_sym_BANG] = ACTIONS(21), @@ -36321,47 +36349,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1147), [sym_primitive_type] = ACTIONS(1149), [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), [anon_sym_typeof] = ACTIONS(1161), [anon_sym___typeof] = ACTIONS(1161), [anon_sym___typeof__] = ACTIONS(1161), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(1163), [sym_instancetype] = ACTIONS(1149), [sym_Class] = ACTIONS(1163), @@ -36376,8 +36404,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -36389,71 +36417,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [62] = { - [sym_compound_statement] = STATE(85), - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym__statement] = STATE(5560), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4427), - [sym_comma_expression] = STATE(5138), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_type_descriptor] = STATE(5322), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [sym_block_abstract_declarator] = STATE(5569), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), + [sym_compound_statement] = STATE(76), + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__statement] = STATE(5741), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4373), + [sym_comma_expression] = STATE(5226), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_type_descriptor] = STATE(5738), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [sym_block_abstract_declarator] = STATE(5737), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), [sym_identifier] = ACTIONS(1137), [anon_sym_LPAREN2] = ACTIONS(1139), [anon_sym_BANG] = ACTIONS(21), @@ -36503,47 +36532,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1147), [sym_primitive_type] = ACTIONS(1149), [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), [anon_sym_typeof] = ACTIONS(1161), [anon_sym___typeof] = ACTIONS(1161), [anon_sym___typeof__] = ACTIONS(1161), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [sym_id] = ACTIONS(1163), [sym_instancetype] = ACTIONS(1149), [sym_Class] = ACTIONS(1163), @@ -36558,8 +36587,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -36571,7 +36600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [63] = { - [aux_sym_try_catch_statement_repeat1] = STATE(68), + [aux_sym_try_catch_statement_repeat1] = STATE(65), [sym_identifier] = ACTIONS(1165), [aux_sym_preproc_include_token1] = ACTIONS(1167), [aux_sym_preproc_def_token1] = ACTIONS(1167), @@ -36645,9 +36674,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1165), [sym_primitive_type] = ACTIONS(1165), [anon_sym_enum] = ACTIONS(1165), - [anon_sym_NS_ENUM] = ACTIONS(1165), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1165), - [anon_sym_NS_OPTIONS] = ACTIONS(1165), [anon_sym_struct] = ACTIONS(1165), [anon_sym_union] = ACTIONS(1165), [anon_sym_if] = ACTIONS(1165), @@ -36714,6 +36740,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1165), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1165), [anon_sym_ATimplementation] = ACTIONS(1167), + [anon_sym_NS_ENUM] = ACTIONS(1165), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1165), + [anon_sym_NS_OPTIONS] = ACTIONS(1165), [anon_sym_typeof] = ACTIONS(1165), [anon_sym___typeof] = ACTIONS(1165), [anon_sym___typeof__] = ACTIONS(1165), @@ -36749,7 +36778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [64] = { - [aux_sym_try_catch_statement_repeat1] = STATE(65), + [aux_sym_try_catch_statement_repeat1] = STATE(68), [ts_builtin_sym_end] = ACTIONS(1167), [sym_identifier] = ACTIONS(1165), [aux_sym_preproc_include_token1] = ACTIONS(1167), @@ -36823,9 +36852,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1165), [sym_primitive_type] = ACTIONS(1165), [anon_sym_enum] = ACTIONS(1165), - [anon_sym_NS_ENUM] = ACTIONS(1165), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1165), - [anon_sym_NS_OPTIONS] = ACTIONS(1165), [anon_sym_struct] = ACTIONS(1165), [anon_sym_union] = ACTIONS(1165), [anon_sym_if] = ACTIONS(1165), @@ -36892,6 +36918,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1165), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1165), [anon_sym_ATimplementation] = ACTIONS(1167), + [anon_sym_NS_ENUM] = ACTIONS(1165), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1165), + [anon_sym_NS_OPTIONS] = ACTIONS(1165), [anon_sym_typeof] = ACTIONS(1165), [anon_sym___typeof] = ACTIONS(1165), [anon_sym___typeof__] = ACTIONS(1165), @@ -36928,180 +36957,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [65] = { [aux_sym_try_catch_statement_repeat1] = STATE(65), - [ts_builtin_sym_end] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), - [aux_sym_preproc_include_token1] = ACTIONS(1177), - [aux_sym_preproc_def_token1] = ACTIONS(1177), - [anon_sym_RPAREN] = ACTIONS(1177), - [aux_sym_preproc_if_token1] = ACTIONS(1179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), - [anon_sym_LPAREN2] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1177), - [anon_sym_TILDE] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1177), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_AMP] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_typedef] = ACTIONS(1179), - [anon_sym_extern] = ACTIONS(1179), - [anon_sym___attribute] = ACTIONS(1179), - [anon_sym___attribute__] = ACTIONS(1179), - [anon_sym___declspec] = ACTIONS(1179), - [anon_sym___cdecl] = ACTIONS(1179), - [anon_sym___clrcall] = ACTIONS(1179), - [anon_sym___stdcall] = ACTIONS(1179), - [anon_sym___fastcall] = ACTIONS(1179), - [anon_sym___thiscall] = ACTIONS(1179), - [anon_sym___vectorcall] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_static] = ACTIONS(1179), - [anon_sym_auto] = ACTIONS(1179), - [anon_sym_register] = ACTIONS(1179), - [anon_sym_inline] = ACTIONS(1179), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1179), - [anon_sym_const] = ACTIONS(1179), - [anon_sym_volatile] = ACTIONS(1179), - [anon_sym_restrict] = ACTIONS(1179), - [anon_sym__Atomic] = ACTIONS(1179), - [anon_sym_in] = ACTIONS(1179), - [anon_sym_out] = ACTIONS(1179), - [anon_sym_inout] = ACTIONS(1179), - [anon_sym_bycopy] = ACTIONS(1179), - [anon_sym_byref] = ACTIONS(1179), - [anon_sym_oneway] = ACTIONS(1179), - [anon_sym__Nullable] = ACTIONS(1179), - [anon_sym__Nonnull] = ACTIONS(1179), - [anon_sym__Nullable_result] = ACTIONS(1179), - [anon_sym__Null_unspecified] = ACTIONS(1179), - [anon_sym___autoreleasing] = ACTIONS(1179), - [anon_sym___nullable] = ACTIONS(1179), - [anon_sym___nonnull] = ACTIONS(1179), - [anon_sym___strong] = ACTIONS(1179), - [anon_sym___weak] = ACTIONS(1179), - [anon_sym___bridge] = ACTIONS(1179), - [anon_sym___bridge_transfer] = ACTIONS(1179), - [anon_sym___bridge_retained] = ACTIONS(1179), - [anon_sym___unsafe_unretained] = ACTIONS(1179), - [anon_sym___block] = ACTIONS(1179), - [anon_sym___kindof] = ACTIONS(1179), - [anon_sym___unused] = ACTIONS(1179), - [anon_sym__Complex] = ACTIONS(1179), - [anon_sym___complex] = ACTIONS(1179), - [anon_sym_IBOutlet] = ACTIONS(1179), - [anon_sym_IBInspectable] = ACTIONS(1179), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(1179), - [anon_sym_unsigned] = ACTIONS(1179), - [anon_sym_long] = ACTIONS(1179), - [anon_sym_short] = ACTIONS(1179), - [sym_primitive_type] = ACTIONS(1179), - [anon_sym_enum] = ACTIONS(1179), - [anon_sym_NS_ENUM] = ACTIONS(1179), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1179), - [anon_sym_NS_OPTIONS] = ACTIONS(1179), - [anon_sym_struct] = ACTIONS(1179), - [anon_sym_union] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_switch] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(1179), - [anon_sym_default] = ACTIONS(1179), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_for] = ACTIONS(1179), - [anon_sym_return] = ACTIONS(1179), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1179), - [anon_sym_goto] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1177), - [anon_sym_PLUS_PLUS] = ACTIONS(1177), - [anon_sym_sizeof] = ACTIONS(1179), - [sym_number_literal] = ACTIONS(1177), - [anon_sym_L_SQUOTE] = ACTIONS(1177), - [anon_sym_u_SQUOTE] = ACTIONS(1177), - [anon_sym_U_SQUOTE] = ACTIONS(1177), - [anon_sym_u8_SQUOTE] = ACTIONS(1177), - [anon_sym_SQUOTE] = ACTIONS(1177), - [anon_sym_L_DQUOTE] = ACTIONS(1177), - [anon_sym_u_DQUOTE] = ACTIONS(1177), - [anon_sym_U_DQUOTE] = ACTIONS(1177), - [anon_sym_u8_DQUOTE] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1177), - [sym_true] = ACTIONS(1179), - [sym_false] = ACTIONS(1179), - [sym_null] = ACTIONS(1179), + [sym_identifier] = ACTIONS(1177), + [aux_sym_preproc_include_token1] = ACTIONS(1179), + [aux_sym_preproc_def_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token1] = ACTIONS(1177), + [aux_sym_preproc_if_token2] = ACTIONS(1177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1177), + [aux_sym_preproc_else_token1] = ACTIONS(1177), + [aux_sym_preproc_elif_token1] = ACTIONS(1177), + [anon_sym_LPAREN2] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_typedef] = ACTIONS(1177), + [anon_sym_extern] = ACTIONS(1177), + [anon_sym___attribute] = ACTIONS(1177), + [anon_sym___attribute__] = ACTIONS(1177), + [anon_sym___declspec] = ACTIONS(1177), + [anon_sym___cdecl] = ACTIONS(1177), + [anon_sym___clrcall] = ACTIONS(1177), + [anon_sym___stdcall] = ACTIONS(1177), + [anon_sym___fastcall] = ACTIONS(1177), + [anon_sym___thiscall] = ACTIONS(1177), + [anon_sym___vectorcall] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_auto] = ACTIONS(1177), + [anon_sym_register] = ACTIONS(1177), + [anon_sym_inline] = ACTIONS(1177), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1177), + [anon_sym_const] = ACTIONS(1177), + [anon_sym_volatile] = ACTIONS(1177), + [anon_sym_restrict] = ACTIONS(1177), + [anon_sym__Atomic] = ACTIONS(1177), + [anon_sym_in] = ACTIONS(1177), + [anon_sym_out] = ACTIONS(1177), + [anon_sym_inout] = ACTIONS(1177), + [anon_sym_bycopy] = ACTIONS(1177), + [anon_sym_byref] = ACTIONS(1177), + [anon_sym_oneway] = ACTIONS(1177), + [anon_sym__Nullable] = ACTIONS(1177), + [anon_sym__Nonnull] = ACTIONS(1177), + [anon_sym__Nullable_result] = ACTIONS(1177), + [anon_sym__Null_unspecified] = ACTIONS(1177), + [anon_sym___autoreleasing] = ACTIONS(1177), + [anon_sym___nullable] = ACTIONS(1177), + [anon_sym___nonnull] = ACTIONS(1177), + [anon_sym___strong] = ACTIONS(1177), + [anon_sym___weak] = ACTIONS(1177), + [anon_sym___bridge] = ACTIONS(1177), + [anon_sym___bridge_transfer] = ACTIONS(1177), + [anon_sym___bridge_retained] = ACTIONS(1177), + [anon_sym___unsafe_unretained] = ACTIONS(1177), + [anon_sym___block] = ACTIONS(1177), + [anon_sym___kindof] = ACTIONS(1177), + [anon_sym___unused] = ACTIONS(1177), + [anon_sym__Complex] = ACTIONS(1177), + [anon_sym___complex] = ACTIONS(1177), + [anon_sym_IBOutlet] = ACTIONS(1177), + [anon_sym_IBInspectable] = ACTIONS(1177), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1177), + [anon_sym_signed] = ACTIONS(1177), + [anon_sym_unsigned] = ACTIONS(1177), + [anon_sym_long] = ACTIONS(1177), + [anon_sym_short] = ACTIONS(1177), + [sym_primitive_type] = ACTIONS(1177), + [anon_sym_enum] = ACTIONS(1177), + [anon_sym_struct] = ACTIONS(1177), + [anon_sym_union] = ACTIONS(1177), + [anon_sym_if] = ACTIONS(1177), + [anon_sym_else] = ACTIONS(1177), + [anon_sym_switch] = ACTIONS(1177), + [anon_sym_case] = ACTIONS(1177), + [anon_sym_default] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1177), + [anon_sym_do] = ACTIONS(1177), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1177), + [anon_sym_continue] = ACTIONS(1177), + [anon_sym_goto] = ACTIONS(1177), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_sizeof] = ACTIONS(1177), + [sym_number_literal] = ACTIONS(1179), + [anon_sym_L_SQUOTE] = ACTIONS(1179), + [anon_sym_u_SQUOTE] = ACTIONS(1179), + [anon_sym_U_SQUOTE] = ACTIONS(1179), + [anon_sym_u8_SQUOTE] = ACTIONS(1179), + [anon_sym_SQUOTE] = ACTIONS(1179), + [anon_sym_L_DQUOTE] = ACTIONS(1179), + [anon_sym_u_DQUOTE] = ACTIONS(1179), + [anon_sym_U_DQUOTE] = ACTIONS(1179), + [anon_sym_u8_DQUOTE] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [sym_null] = ACTIONS(1177), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1177), - [anon_sym_ATimport] = ACTIONS(1177), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1179), - [anon_sym_ATcompatibility_alias] = ACTIONS(1177), - [anon_sym_ATprotocol] = ACTIONS(1177), - [anon_sym_ATclass] = ACTIONS(1177), - [anon_sym_ATinterface] = ACTIONS(1177), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1179), - [sym_method_attribute_specifier] = ACTIONS(1179), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1179), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1179), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1179), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1179), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1179), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1179), - [anon_sym_NS_AVAILABLE] = ACTIONS(1179), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1179), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1179), - [anon_sym_API_AVAILABLE] = ACTIONS(1179), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1179), - [anon_sym_API_DEPRECATED] = ACTIONS(1179), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1179), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1179), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1179), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1179), - [anon_sym___deprecated_msg] = ACTIONS(1179), - [anon_sym___deprecated_enum_msg] = ACTIONS(1179), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1179), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1179), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1179), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1179), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1179), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1179), - [anon_sym_ATimplementation] = ACTIONS(1177), - [anon_sym_typeof] = ACTIONS(1179), - [anon_sym___typeof] = ACTIONS(1179), - [anon_sym___typeof__] = ACTIONS(1179), - [sym_self] = ACTIONS(1179), - [sym_super] = ACTIONS(1179), - [sym_nil] = ACTIONS(1179), - [sym_id] = ACTIONS(1179), - [sym_instancetype] = ACTIONS(1179), - [sym_Class] = ACTIONS(1179), - [sym_SEL] = ACTIONS(1179), - [sym_IMP] = ACTIONS(1179), - [sym_BOOL] = ACTIONS(1179), - [sym_auto] = ACTIONS(1179), - [anon_sym_ATautoreleasepool] = ACTIONS(1177), - [anon_sym_ATsynchronized] = ACTIONS(1177), - [anon_sym_ATtry] = ACTIONS(1177), + [anon_sym_POUNDimport] = ACTIONS(1179), + [anon_sym_ATimport] = ACTIONS(1179), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1177), + [anon_sym_ATcompatibility_alias] = ACTIONS(1179), + [anon_sym_ATprotocol] = ACTIONS(1179), + [anon_sym_ATclass] = ACTIONS(1179), + [anon_sym_ATinterface] = ACTIONS(1179), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1177), + [sym_method_attribute_specifier] = ACTIONS(1177), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1177), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1177), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1177), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1177), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1177), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1177), + [anon_sym_NS_AVAILABLE] = ACTIONS(1177), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1177), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1177), + [anon_sym_API_AVAILABLE] = ACTIONS(1177), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1177), + [anon_sym_API_DEPRECATED] = ACTIONS(1177), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1177), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1177), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1177), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1177), + [anon_sym___deprecated_msg] = ACTIONS(1177), + [anon_sym___deprecated_enum_msg] = ACTIONS(1177), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1177), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1177), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1177), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1177), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1177), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1177), + [anon_sym_ATimplementation] = ACTIONS(1179), + [anon_sym_NS_ENUM] = ACTIONS(1177), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1177), + [anon_sym_NS_OPTIONS] = ACTIONS(1177), + [anon_sym_typeof] = ACTIONS(1177), + [anon_sym___typeof] = ACTIONS(1177), + [anon_sym___typeof__] = ACTIONS(1177), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1177), + [sym_nil] = ACTIONS(1177), + [sym_id] = ACTIONS(1177), + [sym_instancetype] = ACTIONS(1177), + [sym_Class] = ACTIONS(1177), + [sym_SEL] = ACTIONS(1177), + [sym_IMP] = ACTIONS(1177), + [sym_BOOL] = ACTIONS(1177), + [sym_auto] = ACTIONS(1177), + [anon_sym_ATautoreleasepool] = ACTIONS(1179), + [anon_sym_ATsynchronized] = ACTIONS(1179), + [anon_sym_ATtry] = ACTIONS(1179), [anon_sym_ATcatch] = ACTIONS(1181), - [anon_sym_ATfinally] = ACTIONS(1177), - [anon_sym_ATthrow] = ACTIONS(1177), - [anon_sym_ATselector] = ACTIONS(1177), - [anon_sym_ATencode] = ACTIONS(1177), - [anon_sym_AT] = ACTIONS(1179), - [sym_YES] = ACTIONS(1179), - [sym_NO] = ACTIONS(1179), - [anon_sym___builtin_available] = ACTIONS(1179), - [anon_sym_ATavailable] = ACTIONS(1177), - [anon_sym_va_arg] = ACTIONS(1179), + [anon_sym_ATfinally] = ACTIONS(1179), + [anon_sym_ATthrow] = ACTIONS(1179), + [anon_sym_ATselector] = ACTIONS(1179), + [anon_sym_ATencode] = ACTIONS(1179), + [anon_sym_AT] = ACTIONS(1177), + [sym_YES] = ACTIONS(1177), + [sym_NO] = ACTIONS(1177), + [anon_sym___builtin_available] = ACTIONS(1177), + [anon_sym_ATavailable] = ACTIONS(1179), + [anon_sym_va_arg] = ACTIONS(1177), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, [66] = { @@ -37179,9 +37208,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1186), [sym_primitive_type] = ACTIONS(1186), [anon_sym_enum] = ACTIONS(1186), - [anon_sym_NS_ENUM] = ACTIONS(1186), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1186), - [anon_sym_NS_OPTIONS] = ACTIONS(1186), [anon_sym_struct] = ACTIONS(1186), [anon_sym_union] = ACTIONS(1186), [anon_sym_if] = ACTIONS(1186), @@ -37248,6 +37274,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1186), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1186), [anon_sym_ATimplementation] = ACTIONS(1184), + [anon_sym_NS_ENUM] = ACTIONS(1186), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1186), + [anon_sym_NS_OPTIONS] = ACTIONS(1186), [anon_sym_typeof] = ACTIONS(1186), [anon_sym___typeof] = ACTIONS(1186), [anon_sym___typeof__] = ACTIONS(1186), @@ -37357,9 +37386,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1186), [sym_primitive_type] = ACTIONS(1186), [anon_sym_enum] = ACTIONS(1186), - [anon_sym_NS_ENUM] = ACTIONS(1186), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1186), - [anon_sym_NS_OPTIONS] = ACTIONS(1186), [anon_sym_struct] = ACTIONS(1186), [anon_sym_union] = ACTIONS(1186), [anon_sym_if] = ACTIONS(1186), @@ -37426,6 +37452,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1186), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1186), [anon_sym_ATimplementation] = ACTIONS(1184), + [anon_sym_NS_ENUM] = ACTIONS(1186), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1186), + [anon_sym_NS_OPTIONS] = ACTIONS(1186), [anon_sym_typeof] = ACTIONS(1186), [anon_sym___typeof] = ACTIONS(1186), [anon_sym___typeof__] = ACTIONS(1186), @@ -37462,352 +37491,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [68] = { [aux_sym_try_catch_statement_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(1179), - [aux_sym_preproc_include_token1] = ACTIONS(1177), - [aux_sym_preproc_def_token1] = ACTIONS(1177), - [aux_sym_preproc_if_token1] = ACTIONS(1179), - [aux_sym_preproc_if_token2] = ACTIONS(1179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), - [aux_sym_preproc_else_token1] = ACTIONS(1179), - [aux_sym_preproc_elif_token1] = ACTIONS(1179), - [anon_sym_LPAREN2] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1177), - [anon_sym_TILDE] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1177), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_AMP] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_typedef] = ACTIONS(1179), - [anon_sym_extern] = ACTIONS(1179), - [anon_sym___attribute] = ACTIONS(1179), - [anon_sym___attribute__] = ACTIONS(1179), - [anon_sym___declspec] = ACTIONS(1179), - [anon_sym___cdecl] = ACTIONS(1179), - [anon_sym___clrcall] = ACTIONS(1179), - [anon_sym___stdcall] = ACTIONS(1179), - [anon_sym___fastcall] = ACTIONS(1179), - [anon_sym___thiscall] = ACTIONS(1179), - [anon_sym___vectorcall] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_static] = ACTIONS(1179), - [anon_sym_auto] = ACTIONS(1179), - [anon_sym_register] = ACTIONS(1179), - [anon_sym_inline] = ACTIONS(1179), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1179), - [anon_sym_const] = ACTIONS(1179), - [anon_sym_volatile] = ACTIONS(1179), - [anon_sym_restrict] = ACTIONS(1179), - [anon_sym__Atomic] = ACTIONS(1179), - [anon_sym_in] = ACTIONS(1179), - [anon_sym_out] = ACTIONS(1179), - [anon_sym_inout] = ACTIONS(1179), - [anon_sym_bycopy] = ACTIONS(1179), - [anon_sym_byref] = ACTIONS(1179), - [anon_sym_oneway] = ACTIONS(1179), - [anon_sym__Nullable] = ACTIONS(1179), - [anon_sym__Nonnull] = ACTIONS(1179), - [anon_sym__Nullable_result] = ACTIONS(1179), - [anon_sym__Null_unspecified] = ACTIONS(1179), - [anon_sym___autoreleasing] = ACTIONS(1179), - [anon_sym___nullable] = ACTIONS(1179), - [anon_sym___nonnull] = ACTIONS(1179), - [anon_sym___strong] = ACTIONS(1179), - [anon_sym___weak] = ACTIONS(1179), - [anon_sym___bridge] = ACTIONS(1179), - [anon_sym___bridge_transfer] = ACTIONS(1179), - [anon_sym___bridge_retained] = ACTIONS(1179), - [anon_sym___unsafe_unretained] = ACTIONS(1179), - [anon_sym___block] = ACTIONS(1179), - [anon_sym___kindof] = ACTIONS(1179), - [anon_sym___unused] = ACTIONS(1179), - [anon_sym__Complex] = ACTIONS(1179), - [anon_sym___complex] = ACTIONS(1179), - [anon_sym_IBOutlet] = ACTIONS(1179), - [anon_sym_IBInspectable] = ACTIONS(1179), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(1179), - [anon_sym_unsigned] = ACTIONS(1179), - [anon_sym_long] = ACTIONS(1179), - [anon_sym_short] = ACTIONS(1179), - [sym_primitive_type] = ACTIONS(1179), - [anon_sym_enum] = ACTIONS(1179), - [anon_sym_NS_ENUM] = ACTIONS(1179), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1179), - [anon_sym_NS_OPTIONS] = ACTIONS(1179), - [anon_sym_struct] = ACTIONS(1179), - [anon_sym_union] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_switch] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(1179), - [anon_sym_default] = ACTIONS(1179), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_for] = ACTIONS(1179), - [anon_sym_return] = ACTIONS(1179), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1179), - [anon_sym_goto] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1177), - [anon_sym_PLUS_PLUS] = ACTIONS(1177), - [anon_sym_sizeof] = ACTIONS(1179), - [sym_number_literal] = ACTIONS(1177), - [anon_sym_L_SQUOTE] = ACTIONS(1177), - [anon_sym_u_SQUOTE] = ACTIONS(1177), - [anon_sym_U_SQUOTE] = ACTIONS(1177), - [anon_sym_u8_SQUOTE] = ACTIONS(1177), - [anon_sym_SQUOTE] = ACTIONS(1177), - [anon_sym_L_DQUOTE] = ACTIONS(1177), - [anon_sym_u_DQUOTE] = ACTIONS(1177), - [anon_sym_U_DQUOTE] = ACTIONS(1177), - [anon_sym_u8_DQUOTE] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1177), - [sym_true] = ACTIONS(1179), - [sym_false] = ACTIONS(1179), - [sym_null] = ACTIONS(1179), + [ts_builtin_sym_end] = ACTIONS(1179), + [sym_identifier] = ACTIONS(1177), + [aux_sym_preproc_include_token1] = ACTIONS(1179), + [aux_sym_preproc_def_token1] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1179), + [aux_sym_preproc_if_token1] = ACTIONS(1177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1177), + [anon_sym_LPAREN2] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_typedef] = ACTIONS(1177), + [anon_sym_extern] = ACTIONS(1177), + [anon_sym___attribute] = ACTIONS(1177), + [anon_sym___attribute__] = ACTIONS(1177), + [anon_sym___declspec] = ACTIONS(1177), + [anon_sym___cdecl] = ACTIONS(1177), + [anon_sym___clrcall] = ACTIONS(1177), + [anon_sym___stdcall] = ACTIONS(1177), + [anon_sym___fastcall] = ACTIONS(1177), + [anon_sym___thiscall] = ACTIONS(1177), + [anon_sym___vectorcall] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_auto] = ACTIONS(1177), + [anon_sym_register] = ACTIONS(1177), + [anon_sym_inline] = ACTIONS(1177), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1177), + [anon_sym_const] = ACTIONS(1177), + [anon_sym_volatile] = ACTIONS(1177), + [anon_sym_restrict] = ACTIONS(1177), + [anon_sym__Atomic] = ACTIONS(1177), + [anon_sym_in] = ACTIONS(1177), + [anon_sym_out] = ACTIONS(1177), + [anon_sym_inout] = ACTIONS(1177), + [anon_sym_bycopy] = ACTIONS(1177), + [anon_sym_byref] = ACTIONS(1177), + [anon_sym_oneway] = ACTIONS(1177), + [anon_sym__Nullable] = ACTIONS(1177), + [anon_sym__Nonnull] = ACTIONS(1177), + [anon_sym__Nullable_result] = ACTIONS(1177), + [anon_sym__Null_unspecified] = ACTIONS(1177), + [anon_sym___autoreleasing] = ACTIONS(1177), + [anon_sym___nullable] = ACTIONS(1177), + [anon_sym___nonnull] = ACTIONS(1177), + [anon_sym___strong] = ACTIONS(1177), + [anon_sym___weak] = ACTIONS(1177), + [anon_sym___bridge] = ACTIONS(1177), + [anon_sym___bridge_transfer] = ACTIONS(1177), + [anon_sym___bridge_retained] = ACTIONS(1177), + [anon_sym___unsafe_unretained] = ACTIONS(1177), + [anon_sym___block] = ACTIONS(1177), + [anon_sym___kindof] = ACTIONS(1177), + [anon_sym___unused] = ACTIONS(1177), + [anon_sym__Complex] = ACTIONS(1177), + [anon_sym___complex] = ACTIONS(1177), + [anon_sym_IBOutlet] = ACTIONS(1177), + [anon_sym_IBInspectable] = ACTIONS(1177), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1177), + [anon_sym_signed] = ACTIONS(1177), + [anon_sym_unsigned] = ACTIONS(1177), + [anon_sym_long] = ACTIONS(1177), + [anon_sym_short] = ACTIONS(1177), + [sym_primitive_type] = ACTIONS(1177), + [anon_sym_enum] = ACTIONS(1177), + [anon_sym_struct] = ACTIONS(1177), + [anon_sym_union] = ACTIONS(1177), + [anon_sym_if] = ACTIONS(1177), + [anon_sym_else] = ACTIONS(1177), + [anon_sym_switch] = ACTIONS(1177), + [anon_sym_case] = ACTIONS(1177), + [anon_sym_default] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1177), + [anon_sym_do] = ACTIONS(1177), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1177), + [anon_sym_continue] = ACTIONS(1177), + [anon_sym_goto] = ACTIONS(1177), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_sizeof] = ACTIONS(1177), + [sym_number_literal] = ACTIONS(1179), + [anon_sym_L_SQUOTE] = ACTIONS(1179), + [anon_sym_u_SQUOTE] = ACTIONS(1179), + [anon_sym_U_SQUOTE] = ACTIONS(1179), + [anon_sym_u8_SQUOTE] = ACTIONS(1179), + [anon_sym_SQUOTE] = ACTIONS(1179), + [anon_sym_L_DQUOTE] = ACTIONS(1179), + [anon_sym_u_DQUOTE] = ACTIONS(1179), + [anon_sym_U_DQUOTE] = ACTIONS(1179), + [anon_sym_u8_DQUOTE] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [sym_null] = ACTIONS(1177), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1177), - [anon_sym_ATimport] = ACTIONS(1177), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1179), - [anon_sym_ATcompatibility_alias] = ACTIONS(1177), - [anon_sym_ATprotocol] = ACTIONS(1177), - [anon_sym_ATclass] = ACTIONS(1177), - [anon_sym_ATinterface] = ACTIONS(1177), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1179), - [sym_method_attribute_specifier] = ACTIONS(1179), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1179), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1179), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1179), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1179), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1179), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1179), - [anon_sym_NS_AVAILABLE] = ACTIONS(1179), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1179), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1179), - [anon_sym_API_AVAILABLE] = ACTIONS(1179), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1179), - [anon_sym_API_DEPRECATED] = ACTIONS(1179), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1179), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1179), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1179), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1179), - [anon_sym___deprecated_msg] = ACTIONS(1179), - [anon_sym___deprecated_enum_msg] = ACTIONS(1179), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1179), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1179), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1179), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1179), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1179), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1179), - [anon_sym_ATimplementation] = ACTIONS(1177), - [anon_sym_typeof] = ACTIONS(1179), - [anon_sym___typeof] = ACTIONS(1179), - [anon_sym___typeof__] = ACTIONS(1179), - [sym_self] = ACTIONS(1179), - [sym_super] = ACTIONS(1179), - [sym_nil] = ACTIONS(1179), - [sym_id] = ACTIONS(1179), - [sym_instancetype] = ACTIONS(1179), - [sym_Class] = ACTIONS(1179), - [sym_SEL] = ACTIONS(1179), - [sym_IMP] = ACTIONS(1179), - [sym_BOOL] = ACTIONS(1179), - [sym_auto] = ACTIONS(1179), - [anon_sym_ATautoreleasepool] = ACTIONS(1177), - [anon_sym_ATsynchronized] = ACTIONS(1177), - [anon_sym_ATtry] = ACTIONS(1177), + [anon_sym_POUNDimport] = ACTIONS(1179), + [anon_sym_ATimport] = ACTIONS(1179), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1177), + [anon_sym_ATcompatibility_alias] = ACTIONS(1179), + [anon_sym_ATprotocol] = ACTIONS(1179), + [anon_sym_ATclass] = ACTIONS(1179), + [anon_sym_ATinterface] = ACTIONS(1179), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1177), + [sym_method_attribute_specifier] = ACTIONS(1177), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1177), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1177), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1177), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1177), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1177), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1177), + [anon_sym_NS_AVAILABLE] = ACTIONS(1177), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1177), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1177), + [anon_sym_API_AVAILABLE] = ACTIONS(1177), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1177), + [anon_sym_API_DEPRECATED] = ACTIONS(1177), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1177), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1177), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1177), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1177), + [anon_sym___deprecated_msg] = ACTIONS(1177), + [anon_sym___deprecated_enum_msg] = ACTIONS(1177), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1177), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1177), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1177), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1177), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1177), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1177), + [anon_sym_ATimplementation] = ACTIONS(1179), + [anon_sym_NS_ENUM] = ACTIONS(1177), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1177), + [anon_sym_NS_OPTIONS] = ACTIONS(1177), + [anon_sym_typeof] = ACTIONS(1177), + [anon_sym___typeof] = ACTIONS(1177), + [anon_sym___typeof__] = ACTIONS(1177), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1177), + [sym_nil] = ACTIONS(1177), + [sym_id] = ACTIONS(1177), + [sym_instancetype] = ACTIONS(1177), + [sym_Class] = ACTIONS(1177), + [sym_SEL] = ACTIONS(1177), + [sym_IMP] = ACTIONS(1177), + [sym_BOOL] = ACTIONS(1177), + [sym_auto] = ACTIONS(1177), + [anon_sym_ATautoreleasepool] = ACTIONS(1179), + [anon_sym_ATsynchronized] = ACTIONS(1179), + [anon_sym_ATtry] = ACTIONS(1179), [anon_sym_ATcatch] = ACTIONS(1192), - [anon_sym_ATfinally] = ACTIONS(1177), - [anon_sym_ATthrow] = ACTIONS(1177), - [anon_sym_ATselector] = ACTIONS(1177), - [anon_sym_ATencode] = ACTIONS(1177), - [anon_sym_AT] = ACTIONS(1179), - [sym_YES] = ACTIONS(1179), - [sym_NO] = ACTIONS(1179), - [anon_sym___builtin_available] = ACTIONS(1179), - [anon_sym_ATavailable] = ACTIONS(1177), - [anon_sym_va_arg] = ACTIONS(1179), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [69] = { - [ts_builtin_sym_end] = ACTIONS(1195), - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1195), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [anon_sym_RPAREN] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_RBRACE] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_out] = ACTIONS(1197), - [anon_sym_inout] = ACTIONS(1197), - [anon_sym_bycopy] = ACTIONS(1197), - [anon_sym_byref] = ACTIONS(1197), - [anon_sym_oneway] = ACTIONS(1197), - [anon_sym__Nullable] = ACTIONS(1197), - [anon_sym__Nonnull] = ACTIONS(1197), - [anon_sym__Nullable_result] = ACTIONS(1197), - [anon_sym__Null_unspecified] = ACTIONS(1197), - [anon_sym___autoreleasing] = ACTIONS(1197), - [anon_sym___nullable] = ACTIONS(1197), - [anon_sym___nonnull] = ACTIONS(1197), - [anon_sym___strong] = ACTIONS(1197), - [anon_sym___weak] = ACTIONS(1197), - [anon_sym___bridge] = ACTIONS(1197), - [anon_sym___bridge_transfer] = ACTIONS(1197), - [anon_sym___bridge_retained] = ACTIONS(1197), - [anon_sym___unsafe_unretained] = ACTIONS(1197), - [anon_sym___block] = ACTIONS(1197), - [anon_sym___kindof] = ACTIONS(1197), - [anon_sym___unused] = ACTIONS(1197), - [anon_sym__Complex] = ACTIONS(1197), - [anon_sym___complex] = ACTIONS(1197), - [anon_sym_IBOutlet] = ACTIONS(1197), - [anon_sym_IBInspectable] = ACTIONS(1197), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_NS_ENUM] = ACTIONS(1197), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1197), - [anon_sym_NS_OPTIONS] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [sym_null] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1195), - [anon_sym_ATimport] = ACTIONS(1195), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1197), - [anon_sym_ATcompatibility_alias] = ACTIONS(1195), - [anon_sym_ATprotocol] = ACTIONS(1195), - [anon_sym_ATclass] = ACTIONS(1195), - [anon_sym_ATinterface] = ACTIONS(1195), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1197), - [sym_method_attribute_specifier] = ACTIONS(1197), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1197), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE] = ACTIONS(1197), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_API_AVAILABLE] = ACTIONS(1197), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_API_DEPRECATED] = ACTIONS(1197), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1197), - [anon_sym___deprecated_msg] = ACTIONS(1197), - [anon_sym___deprecated_enum_msg] = ACTIONS(1197), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1197), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1197), - [anon_sym_ATimplementation] = ACTIONS(1195), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym___typeof] = ACTIONS(1197), - [anon_sym___typeof__] = ACTIONS(1197), - [sym_self] = ACTIONS(1197), - [sym_super] = ACTIONS(1197), - [sym_nil] = ACTIONS(1197), - [sym_id] = ACTIONS(1197), - [sym_instancetype] = ACTIONS(1197), - [sym_Class] = ACTIONS(1197), - [sym_SEL] = ACTIONS(1197), - [sym_IMP] = ACTIONS(1197), - [sym_BOOL] = ACTIONS(1197), - [sym_auto] = ACTIONS(1197), - [anon_sym_ATautoreleasepool] = ACTIONS(1195), - [anon_sym_ATsynchronized] = ACTIONS(1195), - [anon_sym_ATtry] = ACTIONS(1195), - [anon_sym_ATcatch] = ACTIONS(1195), - [anon_sym_ATfinally] = ACTIONS(1195), - [anon_sym_ATthrow] = ACTIONS(1195), - [anon_sym_ATselector] = ACTIONS(1195), - [anon_sym_ATencode] = ACTIONS(1195), - [anon_sym_AT] = ACTIONS(1197), - [sym_YES] = ACTIONS(1197), - [sym_NO] = ACTIONS(1197), - [anon_sym___builtin_available] = ACTIONS(1197), - [anon_sym_ATavailable] = ACTIONS(1195), - [anon_sym_va_arg] = ACTIONS(1197), + [anon_sym_ATfinally] = ACTIONS(1179), + [anon_sym_ATthrow] = ACTIONS(1179), + [anon_sym_ATselector] = ACTIONS(1179), + [anon_sym_ATencode] = ACTIONS(1179), + [anon_sym_AT] = ACTIONS(1177), + [sym_YES] = ACTIONS(1177), + [sym_NO] = ACTIONS(1177), + [anon_sym___builtin_available] = ACTIONS(1177), + [anon_sym_ATavailable] = ACTIONS(1179), + [anon_sym_va_arg] = ACTIONS(1177), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -37815,176 +37667,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [70] = { - [sym_identifier] = ACTIONS(1199), - [aux_sym_preproc_include_token1] = ACTIONS(1201), - [aux_sym_preproc_def_token1] = ACTIONS(1201), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_if_token2] = ACTIONS(1199), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), - [aux_sym_preproc_else_token1] = ACTIONS(1199), - [aux_sym_preproc_elif_token1] = ACTIONS(1199), - [anon_sym_LPAREN2] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1199), - [anon_sym_PLUS] = ACTIONS(1199), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_typedef] = ACTIONS(1199), - [anon_sym_extern] = ACTIONS(1199), - [anon_sym___attribute] = ACTIONS(1199), - [anon_sym___attribute__] = ACTIONS(1199), - [anon_sym___declspec] = ACTIONS(1199), - [anon_sym___cdecl] = ACTIONS(1199), - [anon_sym___clrcall] = ACTIONS(1199), - [anon_sym___stdcall] = ACTIONS(1199), - [anon_sym___fastcall] = ACTIONS(1199), - [anon_sym___thiscall] = ACTIONS(1199), - [anon_sym___vectorcall] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_auto] = ACTIONS(1199), - [anon_sym_register] = ACTIONS(1199), - [anon_sym_inline] = ACTIONS(1199), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1199), - [anon_sym_const] = ACTIONS(1199), - [anon_sym_volatile] = ACTIONS(1199), - [anon_sym_restrict] = ACTIONS(1199), - [anon_sym__Atomic] = ACTIONS(1199), - [anon_sym_in] = ACTIONS(1199), - [anon_sym_out] = ACTIONS(1199), - [anon_sym_inout] = ACTIONS(1199), - [anon_sym_bycopy] = ACTIONS(1199), - [anon_sym_byref] = ACTIONS(1199), - [anon_sym_oneway] = ACTIONS(1199), - [anon_sym__Nullable] = ACTIONS(1199), - [anon_sym__Nonnull] = ACTIONS(1199), - [anon_sym__Nullable_result] = ACTIONS(1199), - [anon_sym__Null_unspecified] = ACTIONS(1199), - [anon_sym___autoreleasing] = ACTIONS(1199), - [anon_sym___nullable] = ACTIONS(1199), - [anon_sym___nonnull] = ACTIONS(1199), - [anon_sym___strong] = ACTIONS(1199), - [anon_sym___weak] = ACTIONS(1199), - [anon_sym___bridge] = ACTIONS(1199), - [anon_sym___bridge_transfer] = ACTIONS(1199), - [anon_sym___bridge_retained] = ACTIONS(1199), - [anon_sym___unsafe_unretained] = ACTIONS(1199), - [anon_sym___block] = ACTIONS(1199), - [anon_sym___kindof] = ACTIONS(1199), - [anon_sym___unused] = ACTIONS(1199), - [anon_sym__Complex] = ACTIONS(1199), - [anon_sym___complex] = ACTIONS(1199), - [anon_sym_IBOutlet] = ACTIONS(1199), - [anon_sym_IBInspectable] = ACTIONS(1199), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1199), - [anon_sym_signed] = ACTIONS(1199), - [anon_sym_unsigned] = ACTIONS(1199), - [anon_sym_long] = ACTIONS(1199), - [anon_sym_short] = ACTIONS(1199), - [sym_primitive_type] = ACTIONS(1199), - [anon_sym_enum] = ACTIONS(1199), - [anon_sym_NS_ENUM] = ACTIONS(1199), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1199), - [anon_sym_NS_OPTIONS] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_else] = ACTIONS(1199), - [anon_sym_switch] = ACTIONS(1199), - [anon_sym_case] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [anon_sym_do] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_goto] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1201), - [anon_sym_PLUS_PLUS] = ACTIONS(1201), - [anon_sym_sizeof] = ACTIONS(1199), - [sym_number_literal] = ACTIONS(1201), - [anon_sym_L_SQUOTE] = ACTIONS(1201), - [anon_sym_u_SQUOTE] = ACTIONS(1201), - [anon_sym_U_SQUOTE] = ACTIONS(1201), - [anon_sym_u8_SQUOTE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1201), - [anon_sym_L_DQUOTE] = ACTIONS(1201), - [anon_sym_u_DQUOTE] = ACTIONS(1201), - [anon_sym_U_DQUOTE] = ACTIONS(1201), - [anon_sym_u8_DQUOTE] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [sym_true] = ACTIONS(1199), - [sym_false] = ACTIONS(1199), - [sym_null] = ACTIONS(1199), + [69] = { + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token2] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [aux_sym_preproc_else_token1] = ACTIONS(1195), + [aux_sym_preproc_elif_token1] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym_in] = ACTIONS(1195), + [anon_sym_out] = ACTIONS(1195), + [anon_sym_inout] = ACTIONS(1195), + [anon_sym_bycopy] = ACTIONS(1195), + [anon_sym_byref] = ACTIONS(1195), + [anon_sym_oneway] = ACTIONS(1195), + [anon_sym__Nullable] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym__Nullable_result] = ACTIONS(1195), + [anon_sym__Null_unspecified] = ACTIONS(1195), + [anon_sym___autoreleasing] = ACTIONS(1195), + [anon_sym___nullable] = ACTIONS(1195), + [anon_sym___nonnull] = ACTIONS(1195), + [anon_sym___strong] = ACTIONS(1195), + [anon_sym___weak] = ACTIONS(1195), + [anon_sym___bridge] = ACTIONS(1195), + [anon_sym___bridge_transfer] = ACTIONS(1195), + [anon_sym___bridge_retained] = ACTIONS(1195), + [anon_sym___unsafe_unretained] = ACTIONS(1195), + [anon_sym___block] = ACTIONS(1195), + [anon_sym___kindof] = ACTIONS(1195), + [anon_sym___unused] = ACTIONS(1195), + [anon_sym__Complex] = ACTIONS(1195), + [anon_sym___complex] = ACTIONS(1195), + [anon_sym_IBOutlet] = ACTIONS(1195), + [anon_sym_IBInspectable] = ACTIONS(1195), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [sym_null] = ACTIONS(1195), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1201), - [anon_sym_ATimport] = ACTIONS(1201), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1199), - [anon_sym_ATcompatibility_alias] = ACTIONS(1201), - [anon_sym_ATprotocol] = ACTIONS(1201), - [anon_sym_ATclass] = ACTIONS(1201), - [anon_sym_ATinterface] = ACTIONS(1201), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1199), - [sym_method_attribute_specifier] = ACTIONS(1199), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1199), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1199), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1199), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1199), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1199), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1199), - [anon_sym_NS_AVAILABLE] = ACTIONS(1199), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1199), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1199), - [anon_sym_API_AVAILABLE] = ACTIONS(1199), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1199), - [anon_sym_API_DEPRECATED] = ACTIONS(1199), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1199), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1199), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1199), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1199), - [anon_sym___deprecated_msg] = ACTIONS(1199), - [anon_sym___deprecated_enum_msg] = ACTIONS(1199), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1199), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1199), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1199), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1199), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1199), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1199), - [anon_sym_ATimplementation] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1199), - [anon_sym___typeof] = ACTIONS(1199), - [anon_sym___typeof__] = ACTIONS(1199), - [sym_self] = ACTIONS(1199), - [sym_super] = ACTIONS(1199), - [sym_nil] = ACTIONS(1199), - [sym_id] = ACTIONS(1199), - [sym_instancetype] = ACTIONS(1199), - [sym_Class] = ACTIONS(1199), - [sym_SEL] = ACTIONS(1199), - [sym_IMP] = ACTIONS(1199), - [sym_BOOL] = ACTIONS(1199), - [sym_auto] = ACTIONS(1199), - [anon_sym_ATautoreleasepool] = ACTIONS(1201), - [anon_sym_ATsynchronized] = ACTIONS(1201), - [anon_sym_ATtry] = ACTIONS(1201), - [anon_sym_ATcatch] = ACTIONS(1201), - [anon_sym_ATfinally] = ACTIONS(1201), - [anon_sym_ATthrow] = ACTIONS(1201), - [anon_sym_ATselector] = ACTIONS(1201), - [anon_sym_ATencode] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1199), - [sym_YES] = ACTIONS(1199), - [sym_NO] = ACTIONS(1199), - [anon_sym___builtin_available] = ACTIONS(1199), - [anon_sym_ATavailable] = ACTIONS(1201), - [anon_sym_va_arg] = ACTIONS(1199), + [anon_sym_POUNDimport] = ACTIONS(1197), + [anon_sym_ATimport] = ACTIONS(1197), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1195), + [anon_sym_ATcompatibility_alias] = ACTIONS(1197), + [anon_sym_ATprotocol] = ACTIONS(1197), + [anon_sym_ATclass] = ACTIONS(1197), + [anon_sym_ATinterface] = ACTIONS(1197), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1195), + [sym_method_attribute_specifier] = ACTIONS(1195), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1195), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE] = ACTIONS(1195), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_API_AVAILABLE] = ACTIONS(1195), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_API_DEPRECATED] = ACTIONS(1195), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1195), + [anon_sym___deprecated_msg] = ACTIONS(1195), + [anon_sym___deprecated_enum_msg] = ACTIONS(1195), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1195), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1195), + [anon_sym_ATimplementation] = ACTIONS(1197), + [anon_sym_NS_ENUM] = ACTIONS(1195), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1195), + [anon_sym_NS_OPTIONS] = ACTIONS(1195), + [anon_sym_typeof] = ACTIONS(1195), + [anon_sym___typeof] = ACTIONS(1195), + [anon_sym___typeof__] = ACTIONS(1195), + [sym_self] = ACTIONS(1195), + [sym_super] = ACTIONS(1195), + [sym_nil] = ACTIONS(1195), + [sym_id] = ACTIONS(1195), + [sym_instancetype] = ACTIONS(1195), + [sym_Class] = ACTIONS(1195), + [sym_SEL] = ACTIONS(1195), + [sym_IMP] = ACTIONS(1195), + [sym_BOOL] = ACTIONS(1195), + [sym_auto] = ACTIONS(1195), + [anon_sym_ATautoreleasepool] = ACTIONS(1197), + [anon_sym_ATsynchronized] = ACTIONS(1197), + [anon_sym_ATtry] = ACTIONS(1197), + [anon_sym_ATcatch] = ACTIONS(1197), + [anon_sym_ATfinally] = ACTIONS(1197), + [anon_sym_ATthrow] = ACTIONS(1197), + [anon_sym_ATselector] = ACTIONS(1197), + [anon_sym_ATencode] = ACTIONS(1197), + [anon_sym_AT] = ACTIONS(1195), + [sym_YES] = ACTIONS(1195), + [sym_NO] = ACTIONS(1195), + [anon_sym___builtin_available] = ACTIONS(1195), + [anon_sym_ATavailable] = ACTIONS(1197), + [anon_sym_va_arg] = ACTIONS(1195), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -37992,6 +37844,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, + [70] = { + [ts_builtin_sym_end] = ACTIONS(1199), + [sym_identifier] = ACTIONS(1201), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [anon_sym_RPAREN] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1201), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1201), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1201), + [anon_sym_LPAREN2] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_CARET] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1201), + [anon_sym_extern] = ACTIONS(1201), + [anon_sym___attribute] = ACTIONS(1201), + [anon_sym___attribute__] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1201), + [anon_sym___cdecl] = ACTIONS(1201), + [anon_sym___clrcall] = ACTIONS(1201), + [anon_sym___stdcall] = ACTIONS(1201), + [anon_sym___fastcall] = ACTIONS(1201), + [anon_sym___thiscall] = ACTIONS(1201), + [anon_sym___vectorcall] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_RBRACE] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_auto] = ACTIONS(1201), + [anon_sym_register] = ACTIONS(1201), + [anon_sym_inline] = ACTIONS(1201), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_volatile] = ACTIONS(1201), + [anon_sym_restrict] = ACTIONS(1201), + [anon_sym__Atomic] = ACTIONS(1201), + [anon_sym_in] = ACTIONS(1201), + [anon_sym_out] = ACTIONS(1201), + [anon_sym_inout] = ACTIONS(1201), + [anon_sym_bycopy] = ACTIONS(1201), + [anon_sym_byref] = ACTIONS(1201), + [anon_sym_oneway] = ACTIONS(1201), + [anon_sym__Nullable] = ACTIONS(1201), + [anon_sym__Nonnull] = ACTIONS(1201), + [anon_sym__Nullable_result] = ACTIONS(1201), + [anon_sym__Null_unspecified] = ACTIONS(1201), + [anon_sym___autoreleasing] = ACTIONS(1201), + [anon_sym___nullable] = ACTIONS(1201), + [anon_sym___nonnull] = ACTIONS(1201), + [anon_sym___strong] = ACTIONS(1201), + [anon_sym___weak] = ACTIONS(1201), + [anon_sym___bridge] = ACTIONS(1201), + [anon_sym___bridge_transfer] = ACTIONS(1201), + [anon_sym___bridge_retained] = ACTIONS(1201), + [anon_sym___unsafe_unretained] = ACTIONS(1201), + [anon_sym___block] = ACTIONS(1201), + [anon_sym___kindof] = ACTIONS(1201), + [anon_sym___unused] = ACTIONS(1201), + [anon_sym__Complex] = ACTIONS(1201), + [anon_sym___complex] = ACTIONS(1201), + [anon_sym_IBOutlet] = ACTIONS(1201), + [anon_sym_IBInspectable] = ACTIONS(1201), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1201), + [anon_sym_unsigned] = ACTIONS(1201), + [anon_sym_long] = ACTIONS(1201), + [anon_sym_short] = ACTIONS(1201), + [sym_primitive_type] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_else] = ACTIONS(1201), + [anon_sym_switch] = ACTIONS(1201), + [anon_sym_case] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [sym_number_literal] = ACTIONS(1199), + [anon_sym_L_SQUOTE] = ACTIONS(1199), + [anon_sym_u_SQUOTE] = ACTIONS(1199), + [anon_sym_U_SQUOTE] = ACTIONS(1199), + [anon_sym_u8_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_L_DQUOTE] = ACTIONS(1199), + [anon_sym_u_DQUOTE] = ACTIONS(1199), + [anon_sym_U_DQUOTE] = ACTIONS(1199), + [anon_sym_u8_DQUOTE] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1199), + [sym_true] = ACTIONS(1201), + [sym_false] = ACTIONS(1201), + [sym_null] = ACTIONS(1201), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1199), + [anon_sym_ATimport] = ACTIONS(1199), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1201), + [anon_sym_ATcompatibility_alias] = ACTIONS(1199), + [anon_sym_ATprotocol] = ACTIONS(1199), + [anon_sym_ATclass] = ACTIONS(1199), + [anon_sym_ATinterface] = ACTIONS(1199), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1201), + [sym_method_attribute_specifier] = ACTIONS(1201), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1201), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1201), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1201), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1201), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1201), + [anon_sym_NS_AVAILABLE] = ACTIONS(1201), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1201), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_API_AVAILABLE] = ACTIONS(1201), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_API_DEPRECATED] = ACTIONS(1201), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1201), + [anon_sym___deprecated_msg] = ACTIONS(1201), + [anon_sym___deprecated_enum_msg] = ACTIONS(1201), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1201), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1201), + [anon_sym_ATimplementation] = ACTIONS(1199), + [anon_sym_NS_ENUM] = ACTIONS(1201), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1201), + [anon_sym_NS_OPTIONS] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1201), + [anon_sym___typeof] = ACTIONS(1201), + [anon_sym___typeof__] = ACTIONS(1201), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_nil] = ACTIONS(1201), + [sym_id] = ACTIONS(1201), + [sym_instancetype] = ACTIONS(1201), + [sym_Class] = ACTIONS(1201), + [sym_SEL] = ACTIONS(1201), + [sym_IMP] = ACTIONS(1201), + [sym_BOOL] = ACTIONS(1201), + [sym_auto] = ACTIONS(1201), + [anon_sym_ATautoreleasepool] = ACTIONS(1199), + [anon_sym_ATsynchronized] = ACTIONS(1199), + [anon_sym_ATtry] = ACTIONS(1199), + [anon_sym_ATcatch] = ACTIONS(1199), + [anon_sym_ATfinally] = ACTIONS(1199), + [anon_sym_ATthrow] = ACTIONS(1199), + [anon_sym_ATselector] = ACTIONS(1199), + [anon_sym_ATencode] = ACTIONS(1199), + [anon_sym_AT] = ACTIONS(1201), + [sym_YES] = ACTIONS(1201), + [sym_NO] = ACTIONS(1201), + [anon_sym___builtin_available] = ACTIONS(1201), + [anon_sym_ATavailable] = ACTIONS(1199), + [anon_sym_va_arg] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, [71] = { [ts_builtin_sym_end] = ACTIONS(1203), [sym_identifier] = ACTIONS(1205), @@ -38066,9 +38095,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1205), [sym_primitive_type] = ACTIONS(1205), [anon_sym_enum] = ACTIONS(1205), - [anon_sym_NS_ENUM] = ACTIONS(1205), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1205), - [anon_sym_NS_OPTIONS] = ACTIONS(1205), [anon_sym_struct] = ACTIONS(1205), [anon_sym_union] = ACTIONS(1205), [anon_sym_if] = ACTIONS(1205), @@ -38135,6 +38161,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1205), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1205), [anon_sym_ATimplementation] = ACTIONS(1203), + [anon_sym_NS_ENUM] = ACTIONS(1205), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1205), + [anon_sym_NS_OPTIONS] = ACTIONS(1205), [anon_sym_typeof] = ACTIONS(1205), [anon_sym___typeof] = ACTIONS(1205), [anon_sym___typeof__] = ACTIONS(1205), @@ -38243,9 +38272,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1209), [sym_primitive_type] = ACTIONS(1209), [anon_sym_enum] = ACTIONS(1209), - [anon_sym_NS_ENUM] = ACTIONS(1209), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1209), - [anon_sym_NS_OPTIONS] = ACTIONS(1209), [anon_sym_struct] = ACTIONS(1209), [anon_sym_union] = ACTIONS(1209), [anon_sym_if] = ACTIONS(1209), @@ -38312,6 +38338,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1209), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1209), [anon_sym_ATimplementation] = ACTIONS(1207), + [anon_sym_NS_ENUM] = ACTIONS(1209), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1209), + [anon_sym_NS_OPTIONS] = ACTIONS(1209), [anon_sym_typeof] = ACTIONS(1209), [anon_sym___typeof] = ACTIONS(1209), [anon_sym___typeof__] = ACTIONS(1209), @@ -38420,9 +38449,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1213), [sym_primitive_type] = ACTIONS(1213), [anon_sym_enum] = ACTIONS(1213), - [anon_sym_NS_ENUM] = ACTIONS(1213), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1213), - [anon_sym_NS_OPTIONS] = ACTIONS(1213), [anon_sym_struct] = ACTIONS(1213), [anon_sym_union] = ACTIONS(1213), [anon_sym_if] = ACTIONS(1213), @@ -38489,6 +38515,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1213), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1213), [anon_sym_ATimplementation] = ACTIONS(1211), + [anon_sym_NS_ENUM] = ACTIONS(1213), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1213), + [anon_sym_NS_OPTIONS] = ACTIONS(1213), [anon_sym_typeof] = ACTIONS(1213), [anon_sym___typeof] = ACTIONS(1213), [anon_sym___typeof__] = ACTIONS(1213), @@ -38597,9 +38626,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1217), [sym_primitive_type] = ACTIONS(1217), [anon_sym_enum] = ACTIONS(1217), - [anon_sym_NS_ENUM] = ACTIONS(1217), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1217), - [anon_sym_NS_OPTIONS] = ACTIONS(1217), [anon_sym_struct] = ACTIONS(1217), [anon_sym_union] = ACTIONS(1217), [anon_sym_if] = ACTIONS(1217), @@ -38666,6 +38692,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1217), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1217), [anon_sym_ATimplementation] = ACTIONS(1215), + [anon_sym_NS_ENUM] = ACTIONS(1217), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1217), + [anon_sym_NS_OPTIONS] = ACTIONS(1217), [anon_sym_typeof] = ACTIONS(1217), [anon_sym___typeof] = ACTIONS(1217), [anon_sym___typeof__] = ACTIONS(1217), @@ -38774,9 +38803,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1221), [sym_primitive_type] = ACTIONS(1221), [anon_sym_enum] = ACTIONS(1221), - [anon_sym_NS_ENUM] = ACTIONS(1221), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1221), - [anon_sym_NS_OPTIONS] = ACTIONS(1221), [anon_sym_struct] = ACTIONS(1221), [anon_sym_union] = ACTIONS(1221), [anon_sym_if] = ACTIONS(1221), @@ -38843,6 +38869,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1221), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1221), [anon_sym_ATimplementation] = ACTIONS(1219), + [anon_sym_NS_ENUM] = ACTIONS(1221), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1221), + [anon_sym_NS_OPTIONS] = ACTIONS(1221), [anon_sym_typeof] = ACTIONS(1221), [anon_sym___typeof] = ACTIONS(1221), [anon_sym___typeof__] = ACTIONS(1221), @@ -38878,888 +38907,888 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [76] = { - [sym_identifier] = ACTIONS(1223), - [aux_sym_preproc_include_token1] = ACTIONS(1225), - [aux_sym_preproc_def_token1] = ACTIONS(1225), - [aux_sym_preproc_if_token1] = ACTIONS(1223), - [aux_sym_preproc_if_token2] = ACTIONS(1223), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), - [aux_sym_preproc_else_token1] = ACTIONS(1223), - [aux_sym_preproc_elif_token1] = ACTIONS(1223), - [anon_sym_LPAREN2] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1225), - [anon_sym_TILDE] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(1225), - [anon_sym_CARET] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_typedef] = ACTIONS(1223), - [anon_sym_extern] = ACTIONS(1223), - [anon_sym___attribute] = ACTIONS(1223), - [anon_sym___attribute__] = ACTIONS(1223), - [anon_sym___declspec] = ACTIONS(1223), - [anon_sym___cdecl] = ACTIONS(1223), - [anon_sym___clrcall] = ACTIONS(1223), - [anon_sym___stdcall] = ACTIONS(1223), - [anon_sym___fastcall] = ACTIONS(1223), - [anon_sym___thiscall] = ACTIONS(1223), - [anon_sym___vectorcall] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_LBRACK] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_auto] = ACTIONS(1223), - [anon_sym_register] = ACTIONS(1223), - [anon_sym_inline] = ACTIONS(1223), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1223), - [anon_sym_const] = ACTIONS(1223), - [anon_sym_volatile] = ACTIONS(1223), - [anon_sym_restrict] = ACTIONS(1223), - [anon_sym__Atomic] = ACTIONS(1223), - [anon_sym_in] = ACTIONS(1223), - [anon_sym_out] = ACTIONS(1223), - [anon_sym_inout] = ACTIONS(1223), - [anon_sym_bycopy] = ACTIONS(1223), - [anon_sym_byref] = ACTIONS(1223), - [anon_sym_oneway] = ACTIONS(1223), - [anon_sym__Nullable] = ACTIONS(1223), - [anon_sym__Nonnull] = ACTIONS(1223), - [anon_sym__Nullable_result] = ACTIONS(1223), - [anon_sym__Null_unspecified] = ACTIONS(1223), - [anon_sym___autoreleasing] = ACTIONS(1223), - [anon_sym___nullable] = ACTIONS(1223), - [anon_sym___nonnull] = ACTIONS(1223), - [anon_sym___strong] = ACTIONS(1223), - [anon_sym___weak] = ACTIONS(1223), - [anon_sym___bridge] = ACTIONS(1223), - [anon_sym___bridge_transfer] = ACTIONS(1223), - [anon_sym___bridge_retained] = ACTIONS(1223), - [anon_sym___unsafe_unretained] = ACTIONS(1223), - [anon_sym___block] = ACTIONS(1223), - [anon_sym___kindof] = ACTIONS(1223), - [anon_sym___unused] = ACTIONS(1223), - [anon_sym__Complex] = ACTIONS(1223), - [anon_sym___complex] = ACTIONS(1223), - [anon_sym_IBOutlet] = ACTIONS(1223), - [anon_sym_IBInspectable] = ACTIONS(1223), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1223), - [anon_sym_signed] = ACTIONS(1223), - [anon_sym_unsigned] = ACTIONS(1223), - [anon_sym_long] = ACTIONS(1223), - [anon_sym_short] = ACTIONS(1223), - [sym_primitive_type] = ACTIONS(1223), - [anon_sym_enum] = ACTIONS(1223), - [anon_sym_NS_ENUM] = ACTIONS(1223), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1223), - [anon_sym_NS_OPTIONS] = ACTIONS(1223), - [anon_sym_struct] = ACTIONS(1223), - [anon_sym_union] = ACTIONS(1223), - [anon_sym_if] = ACTIONS(1223), - [anon_sym_else] = ACTIONS(1223), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_case] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1223), - [anon_sym_while] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1223), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_return] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1223), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_goto] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1225), - [anon_sym_PLUS_PLUS] = ACTIONS(1225), - [anon_sym_sizeof] = ACTIONS(1223), - [sym_number_literal] = ACTIONS(1225), - [anon_sym_L_SQUOTE] = ACTIONS(1225), - [anon_sym_u_SQUOTE] = ACTIONS(1225), - [anon_sym_U_SQUOTE] = ACTIONS(1225), - [anon_sym_u8_SQUOTE] = ACTIONS(1225), - [anon_sym_SQUOTE] = ACTIONS(1225), - [anon_sym_L_DQUOTE] = ACTIONS(1225), - [anon_sym_u_DQUOTE] = ACTIONS(1225), - [anon_sym_U_DQUOTE] = ACTIONS(1225), - [anon_sym_u8_DQUOTE] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_true] = ACTIONS(1223), - [sym_false] = ACTIONS(1223), - [sym_null] = ACTIONS(1223), + [ts_builtin_sym_end] = ACTIONS(1223), + [sym_identifier] = ACTIONS(1225), + [aux_sym_preproc_include_token1] = ACTIONS(1223), + [aux_sym_preproc_def_token1] = ACTIONS(1223), + [anon_sym_RPAREN] = ACTIONS(1223), + [aux_sym_preproc_if_token1] = ACTIONS(1225), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1225), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1225), + [anon_sym_LPAREN2] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1223), + [anon_sym_TILDE] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1223), + [anon_sym_CARET] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym_typedef] = ACTIONS(1225), + [anon_sym_extern] = ACTIONS(1225), + [anon_sym___attribute] = ACTIONS(1225), + [anon_sym___attribute__] = ACTIONS(1225), + [anon_sym___declspec] = ACTIONS(1225), + [anon_sym___cdecl] = ACTIONS(1225), + [anon_sym___clrcall] = ACTIONS(1225), + [anon_sym___stdcall] = ACTIONS(1225), + [anon_sym___fastcall] = ACTIONS(1225), + [anon_sym___thiscall] = ACTIONS(1225), + [anon_sym___vectorcall] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1223), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_auto] = ACTIONS(1225), + [anon_sym_register] = ACTIONS(1225), + [anon_sym_inline] = ACTIONS(1225), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_volatile] = ACTIONS(1225), + [anon_sym_restrict] = ACTIONS(1225), + [anon_sym__Atomic] = ACTIONS(1225), + [anon_sym_in] = ACTIONS(1225), + [anon_sym_out] = ACTIONS(1225), + [anon_sym_inout] = ACTIONS(1225), + [anon_sym_bycopy] = ACTIONS(1225), + [anon_sym_byref] = ACTIONS(1225), + [anon_sym_oneway] = ACTIONS(1225), + [anon_sym__Nullable] = ACTIONS(1225), + [anon_sym__Nonnull] = ACTIONS(1225), + [anon_sym__Nullable_result] = ACTIONS(1225), + [anon_sym__Null_unspecified] = ACTIONS(1225), + [anon_sym___autoreleasing] = ACTIONS(1225), + [anon_sym___nullable] = ACTIONS(1225), + [anon_sym___nonnull] = ACTIONS(1225), + [anon_sym___strong] = ACTIONS(1225), + [anon_sym___weak] = ACTIONS(1225), + [anon_sym___bridge] = ACTIONS(1225), + [anon_sym___bridge_transfer] = ACTIONS(1225), + [anon_sym___bridge_retained] = ACTIONS(1225), + [anon_sym___unsafe_unretained] = ACTIONS(1225), + [anon_sym___block] = ACTIONS(1225), + [anon_sym___kindof] = ACTIONS(1225), + [anon_sym___unused] = ACTIONS(1225), + [anon_sym__Complex] = ACTIONS(1225), + [anon_sym___complex] = ACTIONS(1225), + [anon_sym_IBOutlet] = ACTIONS(1225), + [anon_sym_IBInspectable] = ACTIONS(1225), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(1225), + [anon_sym_unsigned] = ACTIONS(1225), + [anon_sym_long] = ACTIONS(1225), + [anon_sym_short] = ACTIONS(1225), + [sym_primitive_type] = ACTIONS(1225), + [anon_sym_enum] = ACTIONS(1225), + [anon_sym_struct] = ACTIONS(1225), + [anon_sym_union] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_else] = ACTIONS(1225), + [anon_sym_switch] = ACTIONS(1225), + [anon_sym_case] = ACTIONS(1225), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_goto] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1223), + [anon_sym_PLUS_PLUS] = ACTIONS(1223), + [anon_sym_sizeof] = ACTIONS(1225), + [sym_number_literal] = ACTIONS(1223), + [anon_sym_L_SQUOTE] = ACTIONS(1223), + [anon_sym_u_SQUOTE] = ACTIONS(1223), + [anon_sym_U_SQUOTE] = ACTIONS(1223), + [anon_sym_u8_SQUOTE] = ACTIONS(1223), + [anon_sym_SQUOTE] = ACTIONS(1223), + [anon_sym_L_DQUOTE] = ACTIONS(1223), + [anon_sym_u_DQUOTE] = ACTIONS(1223), + [anon_sym_U_DQUOTE] = ACTIONS(1223), + [anon_sym_u8_DQUOTE] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym_true] = ACTIONS(1225), + [sym_false] = ACTIONS(1225), + [sym_null] = ACTIONS(1225), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1225), - [anon_sym_ATimport] = ACTIONS(1225), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1223), - [anon_sym_ATcompatibility_alias] = ACTIONS(1225), - [anon_sym_ATprotocol] = ACTIONS(1225), - [anon_sym_ATclass] = ACTIONS(1225), - [anon_sym_ATinterface] = ACTIONS(1225), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1223), - [sym_method_attribute_specifier] = ACTIONS(1223), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1223), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1223), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1223), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1223), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1223), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1223), - [anon_sym_NS_AVAILABLE] = ACTIONS(1223), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1223), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1223), - [anon_sym_API_AVAILABLE] = ACTIONS(1223), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1223), - [anon_sym_API_DEPRECATED] = ACTIONS(1223), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1223), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1223), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1223), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1223), - [anon_sym___deprecated_msg] = ACTIONS(1223), - [anon_sym___deprecated_enum_msg] = ACTIONS(1223), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1223), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1223), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1223), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1223), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1223), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1223), - [anon_sym_ATimplementation] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1223), - [anon_sym___typeof] = ACTIONS(1223), - [anon_sym___typeof__] = ACTIONS(1223), - [sym_self] = ACTIONS(1223), - [sym_super] = ACTIONS(1223), - [sym_nil] = ACTIONS(1223), - [sym_id] = ACTIONS(1223), - [sym_instancetype] = ACTIONS(1223), - [sym_Class] = ACTIONS(1223), - [sym_SEL] = ACTIONS(1223), - [sym_IMP] = ACTIONS(1223), - [sym_BOOL] = ACTIONS(1223), - [sym_auto] = ACTIONS(1223), - [anon_sym_ATautoreleasepool] = ACTIONS(1225), - [anon_sym_ATsynchronized] = ACTIONS(1225), - [anon_sym_ATtry] = ACTIONS(1225), - [anon_sym_ATcatch] = ACTIONS(1225), - [anon_sym_ATfinally] = ACTIONS(1225), - [anon_sym_ATthrow] = ACTIONS(1225), - [anon_sym_ATselector] = ACTIONS(1225), - [anon_sym_ATencode] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1223), - [sym_YES] = ACTIONS(1223), - [sym_NO] = ACTIONS(1223), - [anon_sym___builtin_available] = ACTIONS(1223), - [anon_sym_ATavailable] = ACTIONS(1225), - [anon_sym_va_arg] = ACTIONS(1223), + [anon_sym_POUNDimport] = ACTIONS(1223), + [anon_sym_ATimport] = ACTIONS(1223), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1225), + [anon_sym_ATcompatibility_alias] = ACTIONS(1223), + [anon_sym_ATprotocol] = ACTIONS(1223), + [anon_sym_ATclass] = ACTIONS(1223), + [anon_sym_ATinterface] = ACTIONS(1223), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1225), + [sym_method_attribute_specifier] = ACTIONS(1225), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1225), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1225), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1225), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1225), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1225), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1225), + [anon_sym_NS_AVAILABLE] = ACTIONS(1225), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1225), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1225), + [anon_sym_API_AVAILABLE] = ACTIONS(1225), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1225), + [anon_sym_API_DEPRECATED] = ACTIONS(1225), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1225), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1225), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1225), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1225), + [anon_sym___deprecated_msg] = ACTIONS(1225), + [anon_sym___deprecated_enum_msg] = ACTIONS(1225), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1225), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1225), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1225), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1225), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1225), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1225), + [anon_sym_ATimplementation] = ACTIONS(1223), + [anon_sym_NS_ENUM] = ACTIONS(1225), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1225), + [anon_sym_NS_OPTIONS] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym___typeof] = ACTIONS(1225), + [anon_sym___typeof__] = ACTIONS(1225), + [sym_self] = ACTIONS(1225), + [sym_super] = ACTIONS(1225), + [sym_nil] = ACTIONS(1225), + [sym_id] = ACTIONS(1225), + [sym_instancetype] = ACTIONS(1225), + [sym_Class] = ACTIONS(1225), + [sym_SEL] = ACTIONS(1225), + [sym_IMP] = ACTIONS(1225), + [sym_BOOL] = ACTIONS(1225), + [sym_auto] = ACTIONS(1225), + [anon_sym_ATautoreleasepool] = ACTIONS(1223), + [anon_sym_ATsynchronized] = ACTIONS(1223), + [anon_sym_ATtry] = ACTIONS(1223), + [anon_sym_ATcatch] = ACTIONS(1223), + [anon_sym_ATfinally] = ACTIONS(1223), + [anon_sym_ATthrow] = ACTIONS(1223), + [anon_sym_ATselector] = ACTIONS(1223), + [anon_sym_ATencode] = ACTIONS(1223), + [anon_sym_AT] = ACTIONS(1225), + [sym_YES] = ACTIONS(1225), + [sym_NO] = ACTIONS(1225), + [anon_sym___builtin_available] = ACTIONS(1225), + [anon_sym_ATavailable] = ACTIONS(1223), + [anon_sym_va_arg] = ACTIONS(1225), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, [77] = { - [sym_identifier] = ACTIONS(1227), - [aux_sym_preproc_include_token1] = ACTIONS(1229), - [aux_sym_preproc_def_token1] = ACTIONS(1229), - [aux_sym_preproc_if_token1] = ACTIONS(1227), - [aux_sym_preproc_if_token2] = ACTIONS(1227), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), - [aux_sym_preproc_else_token1] = ACTIONS(1227), - [aux_sym_preproc_elif_token1] = ACTIONS(1227), - [anon_sym_LPAREN2] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_SEMI] = ACTIONS(1229), - [anon_sym_typedef] = ACTIONS(1227), - [anon_sym_extern] = ACTIONS(1227), - [anon_sym___attribute] = ACTIONS(1227), - [anon_sym___attribute__] = ACTIONS(1227), - [anon_sym___declspec] = ACTIONS(1227), - [anon_sym___cdecl] = ACTIONS(1227), - [anon_sym___clrcall] = ACTIONS(1227), - [anon_sym___stdcall] = ACTIONS(1227), - [anon_sym___fastcall] = ACTIONS(1227), - [anon_sym___thiscall] = ACTIONS(1227), - [anon_sym___vectorcall] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1229), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_auto] = ACTIONS(1227), - [anon_sym_register] = ACTIONS(1227), - [anon_sym_inline] = ACTIONS(1227), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_volatile] = ACTIONS(1227), - [anon_sym_restrict] = ACTIONS(1227), - [anon_sym__Atomic] = ACTIONS(1227), - [anon_sym_in] = ACTIONS(1227), - [anon_sym_out] = ACTIONS(1227), - [anon_sym_inout] = ACTIONS(1227), - [anon_sym_bycopy] = ACTIONS(1227), - [anon_sym_byref] = ACTIONS(1227), - [anon_sym_oneway] = ACTIONS(1227), - [anon_sym__Nullable] = ACTIONS(1227), - [anon_sym__Nonnull] = ACTIONS(1227), - [anon_sym__Nullable_result] = ACTIONS(1227), - [anon_sym__Null_unspecified] = ACTIONS(1227), - [anon_sym___autoreleasing] = ACTIONS(1227), - [anon_sym___nullable] = ACTIONS(1227), - [anon_sym___nonnull] = ACTIONS(1227), - [anon_sym___strong] = ACTIONS(1227), - [anon_sym___weak] = ACTIONS(1227), - [anon_sym___bridge] = ACTIONS(1227), - [anon_sym___bridge_transfer] = ACTIONS(1227), - [anon_sym___bridge_retained] = ACTIONS(1227), - [anon_sym___unsafe_unretained] = ACTIONS(1227), - [anon_sym___block] = ACTIONS(1227), - [anon_sym___kindof] = ACTIONS(1227), - [anon_sym___unused] = ACTIONS(1227), - [anon_sym__Complex] = ACTIONS(1227), - [anon_sym___complex] = ACTIONS(1227), - [anon_sym_IBOutlet] = ACTIONS(1227), - [anon_sym_IBInspectable] = ACTIONS(1227), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1227), - [anon_sym_signed] = ACTIONS(1227), - [anon_sym_unsigned] = ACTIONS(1227), - [anon_sym_long] = ACTIONS(1227), - [anon_sym_short] = ACTIONS(1227), - [sym_primitive_type] = ACTIONS(1227), - [anon_sym_enum] = ACTIONS(1227), - [anon_sym_NS_ENUM] = ACTIONS(1227), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1227), - [anon_sym_NS_OPTIONS] = ACTIONS(1227), - [anon_sym_struct] = ACTIONS(1227), - [anon_sym_union] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_else] = ACTIONS(1227), - [anon_sym_switch] = ACTIONS(1227), - [anon_sym_case] = ACTIONS(1227), - [anon_sym_default] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_do] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_goto] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1229), - [anon_sym_PLUS_PLUS] = ACTIONS(1229), - [anon_sym_sizeof] = ACTIONS(1227), - [sym_number_literal] = ACTIONS(1229), - [anon_sym_L_SQUOTE] = ACTIONS(1229), - [anon_sym_u_SQUOTE] = ACTIONS(1229), - [anon_sym_U_SQUOTE] = ACTIONS(1229), - [anon_sym_u8_SQUOTE] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1229), - [anon_sym_L_DQUOTE] = ACTIONS(1229), - [anon_sym_u_DQUOTE] = ACTIONS(1229), - [anon_sym_U_DQUOTE] = ACTIONS(1229), - [anon_sym_u8_DQUOTE] = ACTIONS(1229), - [anon_sym_DQUOTE] = ACTIONS(1229), - [sym_true] = ACTIONS(1227), - [sym_false] = ACTIONS(1227), - [sym_null] = ACTIONS(1227), + [ts_builtin_sym_end] = ACTIONS(1227), + [sym_identifier] = ACTIONS(1229), + [aux_sym_preproc_include_token1] = ACTIONS(1227), + [aux_sym_preproc_def_token1] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1227), + [aux_sym_preproc_if_token1] = ACTIONS(1229), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1229), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1229), + [anon_sym_LPAREN2] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_typedef] = ACTIONS(1229), + [anon_sym_extern] = ACTIONS(1229), + [anon_sym___attribute] = ACTIONS(1229), + [anon_sym___attribute__] = ACTIONS(1229), + [anon_sym___declspec] = ACTIONS(1229), + [anon_sym___cdecl] = ACTIONS(1229), + [anon_sym___clrcall] = ACTIONS(1229), + [anon_sym___stdcall] = ACTIONS(1229), + [anon_sym___fastcall] = ACTIONS(1229), + [anon_sym___thiscall] = ACTIONS(1229), + [anon_sym___vectorcall] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_static] = ACTIONS(1229), + [anon_sym_auto] = ACTIONS(1229), + [anon_sym_register] = ACTIONS(1229), + [anon_sym_inline] = ACTIONS(1229), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [anon_sym_volatile] = ACTIONS(1229), + [anon_sym_restrict] = ACTIONS(1229), + [anon_sym__Atomic] = ACTIONS(1229), + [anon_sym_in] = ACTIONS(1229), + [anon_sym_out] = ACTIONS(1229), + [anon_sym_inout] = ACTIONS(1229), + [anon_sym_bycopy] = ACTIONS(1229), + [anon_sym_byref] = ACTIONS(1229), + [anon_sym_oneway] = ACTIONS(1229), + [anon_sym__Nullable] = ACTIONS(1229), + [anon_sym__Nonnull] = ACTIONS(1229), + [anon_sym__Nullable_result] = ACTIONS(1229), + [anon_sym__Null_unspecified] = ACTIONS(1229), + [anon_sym___autoreleasing] = ACTIONS(1229), + [anon_sym___nullable] = ACTIONS(1229), + [anon_sym___nonnull] = ACTIONS(1229), + [anon_sym___strong] = ACTIONS(1229), + [anon_sym___weak] = ACTIONS(1229), + [anon_sym___bridge] = ACTIONS(1229), + [anon_sym___bridge_transfer] = ACTIONS(1229), + [anon_sym___bridge_retained] = ACTIONS(1229), + [anon_sym___unsafe_unretained] = ACTIONS(1229), + [anon_sym___block] = ACTIONS(1229), + [anon_sym___kindof] = ACTIONS(1229), + [anon_sym___unused] = ACTIONS(1229), + [anon_sym__Complex] = ACTIONS(1229), + [anon_sym___complex] = ACTIONS(1229), + [anon_sym_IBOutlet] = ACTIONS(1229), + [anon_sym_IBInspectable] = ACTIONS(1229), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1229), + [anon_sym_signed] = ACTIONS(1229), + [anon_sym_unsigned] = ACTIONS(1229), + [anon_sym_long] = ACTIONS(1229), + [anon_sym_short] = ACTIONS(1229), + [sym_primitive_type] = ACTIONS(1229), + [anon_sym_enum] = ACTIONS(1229), + [anon_sym_struct] = ACTIONS(1229), + [anon_sym_union] = ACTIONS(1229), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_else] = ACTIONS(1229), + [anon_sym_switch] = ACTIONS(1229), + [anon_sym_case] = ACTIONS(1229), + [anon_sym_default] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1229), + [anon_sym_do] = ACTIONS(1229), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_continue] = ACTIONS(1229), + [anon_sym_goto] = ACTIONS(1229), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_sizeof] = ACTIONS(1229), + [sym_number_literal] = ACTIONS(1227), + [anon_sym_L_SQUOTE] = ACTIONS(1227), + [anon_sym_u_SQUOTE] = ACTIONS(1227), + [anon_sym_U_SQUOTE] = ACTIONS(1227), + [anon_sym_u8_SQUOTE] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1227), + [anon_sym_L_DQUOTE] = ACTIONS(1227), + [anon_sym_u_DQUOTE] = ACTIONS(1227), + [anon_sym_U_DQUOTE] = ACTIONS(1227), + [anon_sym_u8_DQUOTE] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1227), + [sym_true] = ACTIONS(1229), + [sym_false] = ACTIONS(1229), + [sym_null] = ACTIONS(1229), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1229), - [anon_sym_ATimport] = ACTIONS(1229), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1227), - [anon_sym_ATcompatibility_alias] = ACTIONS(1229), - [anon_sym_ATprotocol] = ACTIONS(1229), - [anon_sym_ATclass] = ACTIONS(1229), - [anon_sym_ATinterface] = ACTIONS(1229), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1227), - [sym_method_attribute_specifier] = ACTIONS(1227), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1227), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1227), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1227), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1227), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1227), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1227), - [anon_sym_NS_AVAILABLE] = ACTIONS(1227), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1227), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1227), - [anon_sym_API_AVAILABLE] = ACTIONS(1227), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1227), - [anon_sym_API_DEPRECATED] = ACTIONS(1227), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1227), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1227), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1227), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1227), - [anon_sym___deprecated_msg] = ACTIONS(1227), - [anon_sym___deprecated_enum_msg] = ACTIONS(1227), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1227), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1227), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1227), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1227), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1227), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1227), - [anon_sym_ATimplementation] = ACTIONS(1229), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym___typeof] = ACTIONS(1227), - [anon_sym___typeof__] = ACTIONS(1227), - [sym_self] = ACTIONS(1227), - [sym_super] = ACTIONS(1227), - [sym_nil] = ACTIONS(1227), - [sym_id] = ACTIONS(1227), - [sym_instancetype] = ACTIONS(1227), - [sym_Class] = ACTIONS(1227), - [sym_SEL] = ACTIONS(1227), - [sym_IMP] = ACTIONS(1227), - [sym_BOOL] = ACTIONS(1227), - [sym_auto] = ACTIONS(1227), - [anon_sym_ATautoreleasepool] = ACTIONS(1229), - [anon_sym_ATsynchronized] = ACTIONS(1229), - [anon_sym_ATtry] = ACTIONS(1229), - [anon_sym_ATcatch] = ACTIONS(1229), - [anon_sym_ATfinally] = ACTIONS(1229), - [anon_sym_ATthrow] = ACTIONS(1229), - [anon_sym_ATselector] = ACTIONS(1229), - [anon_sym_ATencode] = ACTIONS(1229), - [anon_sym_AT] = ACTIONS(1227), - [sym_YES] = ACTIONS(1227), - [sym_NO] = ACTIONS(1227), - [anon_sym___builtin_available] = ACTIONS(1227), - [anon_sym_ATavailable] = ACTIONS(1229), - [anon_sym_va_arg] = ACTIONS(1227), + [anon_sym_POUNDimport] = ACTIONS(1227), + [anon_sym_ATimport] = ACTIONS(1227), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1229), + [anon_sym_ATcompatibility_alias] = ACTIONS(1227), + [anon_sym_ATprotocol] = ACTIONS(1227), + [anon_sym_ATclass] = ACTIONS(1227), + [anon_sym_ATinterface] = ACTIONS(1227), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1229), + [sym_method_attribute_specifier] = ACTIONS(1229), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1229), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1229), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1229), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1229), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1229), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1229), + [anon_sym_NS_AVAILABLE] = ACTIONS(1229), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1229), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1229), + [anon_sym_API_AVAILABLE] = ACTIONS(1229), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1229), + [anon_sym_API_DEPRECATED] = ACTIONS(1229), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1229), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1229), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1229), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1229), + [anon_sym___deprecated_msg] = ACTIONS(1229), + [anon_sym___deprecated_enum_msg] = ACTIONS(1229), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1229), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1229), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1229), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1229), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1229), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1229), + [anon_sym_ATimplementation] = ACTIONS(1227), + [anon_sym_NS_ENUM] = ACTIONS(1229), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1229), + [anon_sym_NS_OPTIONS] = ACTIONS(1229), + [anon_sym_typeof] = ACTIONS(1229), + [anon_sym___typeof] = ACTIONS(1229), + [anon_sym___typeof__] = ACTIONS(1229), + [sym_self] = ACTIONS(1229), + [sym_super] = ACTIONS(1229), + [sym_nil] = ACTIONS(1229), + [sym_id] = ACTIONS(1229), + [sym_instancetype] = ACTIONS(1229), + [sym_Class] = ACTIONS(1229), + [sym_SEL] = ACTIONS(1229), + [sym_IMP] = ACTIONS(1229), + [sym_BOOL] = ACTIONS(1229), + [sym_auto] = ACTIONS(1229), + [anon_sym_ATautoreleasepool] = ACTIONS(1227), + [anon_sym_ATsynchronized] = ACTIONS(1227), + [anon_sym_ATtry] = ACTIONS(1227), + [anon_sym_ATcatch] = ACTIONS(1227), + [anon_sym_ATfinally] = ACTIONS(1227), + [anon_sym_ATthrow] = ACTIONS(1227), + [anon_sym_ATselector] = ACTIONS(1227), + [anon_sym_ATencode] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(1229), + [sym_YES] = ACTIONS(1229), + [sym_NO] = ACTIONS(1229), + [anon_sym___builtin_available] = ACTIONS(1229), + [anon_sym_ATavailable] = ACTIONS(1227), + [anon_sym_va_arg] = ACTIONS(1229), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, [78] = { - [sym_identifier] = ACTIONS(1231), - [aux_sym_preproc_include_token1] = ACTIONS(1233), - [aux_sym_preproc_def_token1] = ACTIONS(1233), - [aux_sym_preproc_if_token1] = ACTIONS(1231), - [aux_sym_preproc_if_token2] = ACTIONS(1231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), - [aux_sym_preproc_else_token1] = ACTIONS(1231), - [aux_sym_preproc_elif_token1] = ACTIONS(1231), - [anon_sym_LPAREN2] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(1233), - [anon_sym_TILDE] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_PLUS] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(1233), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym_typedef] = ACTIONS(1231), - [anon_sym_extern] = ACTIONS(1231), - [anon_sym___attribute] = ACTIONS(1231), - [anon_sym___attribute__] = ACTIONS(1231), - [anon_sym___declspec] = ACTIONS(1231), - [anon_sym___cdecl] = ACTIONS(1231), - [anon_sym___clrcall] = ACTIONS(1231), - [anon_sym___stdcall] = ACTIONS(1231), - [anon_sym___fastcall] = ACTIONS(1231), - [anon_sym___thiscall] = ACTIONS(1231), - [anon_sym___vectorcall] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_auto] = ACTIONS(1231), - [anon_sym_register] = ACTIONS(1231), - [anon_sym_inline] = ACTIONS(1231), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1231), - [anon_sym_const] = ACTIONS(1231), - [anon_sym_volatile] = ACTIONS(1231), - [anon_sym_restrict] = ACTIONS(1231), - [anon_sym__Atomic] = ACTIONS(1231), - [anon_sym_in] = ACTIONS(1231), - [anon_sym_out] = ACTIONS(1231), - [anon_sym_inout] = ACTIONS(1231), - [anon_sym_bycopy] = ACTIONS(1231), - [anon_sym_byref] = ACTIONS(1231), - [anon_sym_oneway] = ACTIONS(1231), - [anon_sym__Nullable] = ACTIONS(1231), - [anon_sym__Nonnull] = ACTIONS(1231), - [anon_sym__Nullable_result] = ACTIONS(1231), - [anon_sym__Null_unspecified] = ACTIONS(1231), - [anon_sym___autoreleasing] = ACTIONS(1231), - [anon_sym___nullable] = ACTIONS(1231), - [anon_sym___nonnull] = ACTIONS(1231), - [anon_sym___strong] = ACTIONS(1231), - [anon_sym___weak] = ACTIONS(1231), - [anon_sym___bridge] = ACTIONS(1231), - [anon_sym___bridge_transfer] = ACTIONS(1231), - [anon_sym___bridge_retained] = ACTIONS(1231), - [anon_sym___unsafe_unretained] = ACTIONS(1231), - [anon_sym___block] = ACTIONS(1231), - [anon_sym___kindof] = ACTIONS(1231), - [anon_sym___unused] = ACTIONS(1231), - [anon_sym__Complex] = ACTIONS(1231), - [anon_sym___complex] = ACTIONS(1231), - [anon_sym_IBOutlet] = ACTIONS(1231), - [anon_sym_IBInspectable] = ACTIONS(1231), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1231), - [anon_sym_signed] = ACTIONS(1231), - [anon_sym_unsigned] = ACTIONS(1231), - [anon_sym_long] = ACTIONS(1231), - [anon_sym_short] = ACTIONS(1231), - [sym_primitive_type] = ACTIONS(1231), - [anon_sym_enum] = ACTIONS(1231), - [anon_sym_NS_ENUM] = ACTIONS(1231), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1231), - [anon_sym_NS_OPTIONS] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1231), - [anon_sym_union] = ACTIONS(1231), - [anon_sym_if] = ACTIONS(1231), - [anon_sym_else] = ACTIONS(1231), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_case] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1231), - [anon_sym_while] = ACTIONS(1231), - [anon_sym_do] = ACTIONS(1231), - [anon_sym_for] = ACTIONS(1231), - [anon_sym_return] = ACTIONS(1231), - [anon_sym_break] = ACTIONS(1231), - [anon_sym_continue] = ACTIONS(1231), - [anon_sym_goto] = ACTIONS(1231), - [anon_sym_DASH_DASH] = ACTIONS(1233), - [anon_sym_PLUS_PLUS] = ACTIONS(1233), - [anon_sym_sizeof] = ACTIONS(1231), - [sym_number_literal] = ACTIONS(1233), - [anon_sym_L_SQUOTE] = ACTIONS(1233), - [anon_sym_u_SQUOTE] = ACTIONS(1233), - [anon_sym_U_SQUOTE] = ACTIONS(1233), - [anon_sym_u8_SQUOTE] = ACTIONS(1233), - [anon_sym_SQUOTE] = ACTIONS(1233), - [anon_sym_L_DQUOTE] = ACTIONS(1233), - [anon_sym_u_DQUOTE] = ACTIONS(1233), - [anon_sym_U_DQUOTE] = ACTIONS(1233), - [anon_sym_u8_DQUOTE] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [sym_true] = ACTIONS(1231), - [sym_false] = ACTIONS(1231), - [sym_null] = ACTIONS(1231), + [ts_builtin_sym_end] = ACTIONS(1231), + [sym_identifier] = ACTIONS(1233), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [anon_sym_RPAREN] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1233), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1233), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1233), + [anon_sym_LPAREN2] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1231), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1233), + [anon_sym_extern] = ACTIONS(1233), + [anon_sym___attribute] = ACTIONS(1233), + [anon_sym___attribute__] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1233), + [anon_sym___cdecl] = ACTIONS(1233), + [anon_sym___clrcall] = ACTIONS(1233), + [anon_sym___stdcall] = ACTIONS(1233), + [anon_sym___fastcall] = ACTIONS(1233), + [anon_sym___thiscall] = ACTIONS(1233), + [anon_sym___vectorcall] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1231), + [anon_sym_RBRACE] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1233), + [anon_sym_auto] = ACTIONS(1233), + [anon_sym_register] = ACTIONS(1233), + [anon_sym_inline] = ACTIONS(1233), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_volatile] = ACTIONS(1233), + [anon_sym_restrict] = ACTIONS(1233), + [anon_sym__Atomic] = ACTIONS(1233), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_out] = ACTIONS(1233), + [anon_sym_inout] = ACTIONS(1233), + [anon_sym_bycopy] = ACTIONS(1233), + [anon_sym_byref] = ACTIONS(1233), + [anon_sym_oneway] = ACTIONS(1233), + [anon_sym__Nullable] = ACTIONS(1233), + [anon_sym__Nonnull] = ACTIONS(1233), + [anon_sym__Nullable_result] = ACTIONS(1233), + [anon_sym__Null_unspecified] = ACTIONS(1233), + [anon_sym___autoreleasing] = ACTIONS(1233), + [anon_sym___nullable] = ACTIONS(1233), + [anon_sym___nonnull] = ACTIONS(1233), + [anon_sym___strong] = ACTIONS(1233), + [anon_sym___weak] = ACTIONS(1233), + [anon_sym___bridge] = ACTIONS(1233), + [anon_sym___bridge_transfer] = ACTIONS(1233), + [anon_sym___bridge_retained] = ACTIONS(1233), + [anon_sym___unsafe_unretained] = ACTIONS(1233), + [anon_sym___block] = ACTIONS(1233), + [anon_sym___kindof] = ACTIONS(1233), + [anon_sym___unused] = ACTIONS(1233), + [anon_sym__Complex] = ACTIONS(1233), + [anon_sym___complex] = ACTIONS(1233), + [anon_sym_IBOutlet] = ACTIONS(1233), + [anon_sym_IBInspectable] = ACTIONS(1233), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1233), + [anon_sym_unsigned] = ACTIONS(1233), + [anon_sym_long] = ACTIONS(1233), + [anon_sym_short] = ACTIONS(1233), + [sym_primitive_type] = ACTIONS(1233), + [anon_sym_enum] = ACTIONS(1233), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_union] = ACTIONS(1233), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_else] = ACTIONS(1233), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_break] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(1233), + [anon_sym_goto] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(1233), + [sym_number_literal] = ACTIONS(1231), + [anon_sym_L_SQUOTE] = ACTIONS(1231), + [anon_sym_u_SQUOTE] = ACTIONS(1231), + [anon_sym_U_SQUOTE] = ACTIONS(1231), + [anon_sym_u8_SQUOTE] = ACTIONS(1231), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_L_DQUOTE] = ACTIONS(1231), + [anon_sym_u_DQUOTE] = ACTIONS(1231), + [anon_sym_U_DQUOTE] = ACTIONS(1231), + [anon_sym_u8_DQUOTE] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym_true] = ACTIONS(1233), + [sym_false] = ACTIONS(1233), + [sym_null] = ACTIONS(1233), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1233), - [anon_sym_ATimport] = ACTIONS(1233), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1231), - [anon_sym_ATcompatibility_alias] = ACTIONS(1233), - [anon_sym_ATprotocol] = ACTIONS(1233), - [anon_sym_ATclass] = ACTIONS(1233), - [anon_sym_ATinterface] = ACTIONS(1233), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1231), - [sym_method_attribute_specifier] = ACTIONS(1231), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1231), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1231), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1231), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1231), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1231), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1231), - [anon_sym_NS_AVAILABLE] = ACTIONS(1231), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1231), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1231), - [anon_sym_API_AVAILABLE] = ACTIONS(1231), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1231), - [anon_sym_API_DEPRECATED] = ACTIONS(1231), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1231), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1231), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1231), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1231), - [anon_sym___deprecated_msg] = ACTIONS(1231), - [anon_sym___deprecated_enum_msg] = ACTIONS(1231), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1231), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1231), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1231), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1231), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1231), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1231), - [anon_sym_ATimplementation] = ACTIONS(1233), - [anon_sym_typeof] = ACTIONS(1231), - [anon_sym___typeof] = ACTIONS(1231), - [anon_sym___typeof__] = ACTIONS(1231), - [sym_self] = ACTIONS(1231), - [sym_super] = ACTIONS(1231), - [sym_nil] = ACTIONS(1231), - [sym_id] = ACTIONS(1231), - [sym_instancetype] = ACTIONS(1231), - [sym_Class] = ACTIONS(1231), - [sym_SEL] = ACTIONS(1231), - [sym_IMP] = ACTIONS(1231), - [sym_BOOL] = ACTIONS(1231), - [sym_auto] = ACTIONS(1231), - [anon_sym_ATautoreleasepool] = ACTIONS(1233), - [anon_sym_ATsynchronized] = ACTIONS(1233), - [anon_sym_ATtry] = ACTIONS(1233), - [anon_sym_ATcatch] = ACTIONS(1233), - [anon_sym_ATfinally] = ACTIONS(1233), - [anon_sym_ATthrow] = ACTIONS(1233), - [anon_sym_ATselector] = ACTIONS(1233), - [anon_sym_ATencode] = ACTIONS(1233), - [anon_sym_AT] = ACTIONS(1231), - [sym_YES] = ACTIONS(1231), - [sym_NO] = ACTIONS(1231), - [anon_sym___builtin_available] = ACTIONS(1231), - [anon_sym_ATavailable] = ACTIONS(1233), - [anon_sym_va_arg] = ACTIONS(1231), + [anon_sym_POUNDimport] = ACTIONS(1231), + [anon_sym_ATimport] = ACTIONS(1231), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1233), + [anon_sym_ATcompatibility_alias] = ACTIONS(1231), + [anon_sym_ATprotocol] = ACTIONS(1231), + [anon_sym_ATclass] = ACTIONS(1231), + [anon_sym_ATinterface] = ACTIONS(1231), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1233), + [sym_method_attribute_specifier] = ACTIONS(1233), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1233), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1233), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1233), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1233), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1233), + [anon_sym_NS_AVAILABLE] = ACTIONS(1233), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1233), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_API_AVAILABLE] = ACTIONS(1233), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_API_DEPRECATED] = ACTIONS(1233), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1233), + [anon_sym___deprecated_msg] = ACTIONS(1233), + [anon_sym___deprecated_enum_msg] = ACTIONS(1233), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1233), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1233), + [anon_sym_ATimplementation] = ACTIONS(1231), + [anon_sym_NS_ENUM] = ACTIONS(1233), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1233), + [anon_sym_NS_OPTIONS] = ACTIONS(1233), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym___typeof] = ACTIONS(1233), + [anon_sym___typeof__] = ACTIONS(1233), + [sym_self] = ACTIONS(1233), + [sym_super] = ACTIONS(1233), + [sym_nil] = ACTIONS(1233), + [sym_id] = ACTIONS(1233), + [sym_instancetype] = ACTIONS(1233), + [sym_Class] = ACTIONS(1233), + [sym_SEL] = ACTIONS(1233), + [sym_IMP] = ACTIONS(1233), + [sym_BOOL] = ACTIONS(1233), + [sym_auto] = ACTIONS(1233), + [anon_sym_ATautoreleasepool] = ACTIONS(1231), + [anon_sym_ATsynchronized] = ACTIONS(1231), + [anon_sym_ATtry] = ACTIONS(1231), + [anon_sym_ATcatch] = ACTIONS(1231), + [anon_sym_ATfinally] = ACTIONS(1231), + [anon_sym_ATthrow] = ACTIONS(1231), + [anon_sym_ATselector] = ACTIONS(1231), + [anon_sym_ATencode] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1233), + [sym_YES] = ACTIONS(1233), + [sym_NO] = ACTIONS(1233), + [anon_sym___builtin_available] = ACTIONS(1233), + [anon_sym_ATavailable] = ACTIONS(1231), + [anon_sym_va_arg] = ACTIONS(1233), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, [79] = { - [sym_identifier] = ACTIONS(1235), - [aux_sym_preproc_include_token1] = ACTIONS(1237), - [aux_sym_preproc_def_token1] = ACTIONS(1237), - [aux_sym_preproc_if_token1] = ACTIONS(1235), - [aux_sym_preproc_if_token2] = ACTIONS(1235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1235), - [aux_sym_preproc_else_token1] = ACTIONS(1235), - [aux_sym_preproc_elif_token1] = ACTIONS(1235), - [anon_sym_LPAREN2] = ACTIONS(1237), - [anon_sym_BANG] = ACTIONS(1237), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_typedef] = ACTIONS(1235), - [anon_sym_extern] = ACTIONS(1235), - [anon_sym___attribute] = ACTIONS(1235), - [anon_sym___attribute__] = ACTIONS(1235), - [anon_sym___declspec] = ACTIONS(1235), - [anon_sym___cdecl] = ACTIONS(1235), - [anon_sym___clrcall] = ACTIONS(1235), - [anon_sym___stdcall] = ACTIONS(1235), - [anon_sym___fastcall] = ACTIONS(1235), - [anon_sym___thiscall] = ACTIONS(1235), - [anon_sym___vectorcall] = ACTIONS(1235), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_static] = ACTIONS(1235), - [anon_sym_auto] = ACTIONS(1235), - [anon_sym_register] = ACTIONS(1235), - [anon_sym_inline] = ACTIONS(1235), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1235), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_volatile] = ACTIONS(1235), - [anon_sym_restrict] = ACTIONS(1235), - [anon_sym__Atomic] = ACTIONS(1235), - [anon_sym_in] = ACTIONS(1235), - [anon_sym_out] = ACTIONS(1235), - [anon_sym_inout] = ACTIONS(1235), - [anon_sym_bycopy] = ACTIONS(1235), - [anon_sym_byref] = ACTIONS(1235), - [anon_sym_oneway] = ACTIONS(1235), - [anon_sym__Nullable] = ACTIONS(1235), - [anon_sym__Nonnull] = ACTIONS(1235), - [anon_sym__Nullable_result] = ACTIONS(1235), - [anon_sym__Null_unspecified] = ACTIONS(1235), - [anon_sym___autoreleasing] = ACTIONS(1235), - [anon_sym___nullable] = ACTIONS(1235), - [anon_sym___nonnull] = ACTIONS(1235), - [anon_sym___strong] = ACTIONS(1235), - [anon_sym___weak] = ACTIONS(1235), - [anon_sym___bridge] = ACTIONS(1235), - [anon_sym___bridge_transfer] = ACTIONS(1235), - [anon_sym___bridge_retained] = ACTIONS(1235), - [anon_sym___unsafe_unretained] = ACTIONS(1235), - [anon_sym___block] = ACTIONS(1235), - [anon_sym___kindof] = ACTIONS(1235), - [anon_sym___unused] = ACTIONS(1235), - [anon_sym__Complex] = ACTIONS(1235), - [anon_sym___complex] = ACTIONS(1235), - [anon_sym_IBOutlet] = ACTIONS(1235), - [anon_sym_IBInspectable] = ACTIONS(1235), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1235), - [anon_sym_signed] = ACTIONS(1235), - [anon_sym_unsigned] = ACTIONS(1235), - [anon_sym_long] = ACTIONS(1235), - [anon_sym_short] = ACTIONS(1235), - [sym_primitive_type] = ACTIONS(1235), - [anon_sym_enum] = ACTIONS(1235), - [anon_sym_NS_ENUM] = ACTIONS(1235), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1235), - [anon_sym_NS_OPTIONS] = ACTIONS(1235), - [anon_sym_struct] = ACTIONS(1235), - [anon_sym_union] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1235), - [anon_sym_else] = ACTIONS(1235), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_case] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1235), - [anon_sym_while] = ACTIONS(1235), - [anon_sym_do] = ACTIONS(1235), - [anon_sym_for] = ACTIONS(1235), - [anon_sym_return] = ACTIONS(1235), - [anon_sym_break] = ACTIONS(1235), - [anon_sym_continue] = ACTIONS(1235), - [anon_sym_goto] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_PLUS_PLUS] = ACTIONS(1237), - [anon_sym_sizeof] = ACTIONS(1235), - [sym_number_literal] = ACTIONS(1237), - [anon_sym_L_SQUOTE] = ACTIONS(1237), - [anon_sym_u_SQUOTE] = ACTIONS(1237), - [anon_sym_U_SQUOTE] = ACTIONS(1237), - [anon_sym_u8_SQUOTE] = ACTIONS(1237), - [anon_sym_SQUOTE] = ACTIONS(1237), - [anon_sym_L_DQUOTE] = ACTIONS(1237), - [anon_sym_u_DQUOTE] = ACTIONS(1237), - [anon_sym_U_DQUOTE] = ACTIONS(1237), - [anon_sym_u8_DQUOTE] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [sym_true] = ACTIONS(1235), - [sym_false] = ACTIONS(1235), - [sym_null] = ACTIONS(1235), + [ts_builtin_sym_end] = ACTIONS(1235), + [sym_identifier] = ACTIONS(1237), + [aux_sym_preproc_include_token1] = ACTIONS(1235), + [aux_sym_preproc_def_token1] = ACTIONS(1235), + [anon_sym_RPAREN] = ACTIONS(1235), + [aux_sym_preproc_if_token1] = ACTIONS(1237), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1237), + [anon_sym_LPAREN2] = ACTIONS(1235), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_TILDE] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_typedef] = ACTIONS(1237), + [anon_sym_extern] = ACTIONS(1237), + [anon_sym___attribute] = ACTIONS(1237), + [anon_sym___attribute__] = ACTIONS(1237), + [anon_sym___declspec] = ACTIONS(1237), + [anon_sym___cdecl] = ACTIONS(1237), + [anon_sym___clrcall] = ACTIONS(1237), + [anon_sym___stdcall] = ACTIONS(1237), + [anon_sym___fastcall] = ACTIONS(1237), + [anon_sym___thiscall] = ACTIONS(1237), + [anon_sym___vectorcall] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1235), + [anon_sym_RBRACE] = ACTIONS(1235), + [anon_sym_LBRACK] = ACTIONS(1235), + [anon_sym_static] = ACTIONS(1237), + [anon_sym_auto] = ACTIONS(1237), + [anon_sym_register] = ACTIONS(1237), + [anon_sym_inline] = ACTIONS(1237), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [anon_sym_volatile] = ACTIONS(1237), + [anon_sym_restrict] = ACTIONS(1237), + [anon_sym__Atomic] = ACTIONS(1237), + [anon_sym_in] = ACTIONS(1237), + [anon_sym_out] = ACTIONS(1237), + [anon_sym_inout] = ACTIONS(1237), + [anon_sym_bycopy] = ACTIONS(1237), + [anon_sym_byref] = ACTIONS(1237), + [anon_sym_oneway] = ACTIONS(1237), + [anon_sym__Nullable] = ACTIONS(1237), + [anon_sym__Nonnull] = ACTIONS(1237), + [anon_sym__Nullable_result] = ACTIONS(1237), + [anon_sym__Null_unspecified] = ACTIONS(1237), + [anon_sym___autoreleasing] = ACTIONS(1237), + [anon_sym___nullable] = ACTIONS(1237), + [anon_sym___nonnull] = ACTIONS(1237), + [anon_sym___strong] = ACTIONS(1237), + [anon_sym___weak] = ACTIONS(1237), + [anon_sym___bridge] = ACTIONS(1237), + [anon_sym___bridge_transfer] = ACTIONS(1237), + [anon_sym___bridge_retained] = ACTIONS(1237), + [anon_sym___unsafe_unretained] = ACTIONS(1237), + [anon_sym___block] = ACTIONS(1237), + [anon_sym___kindof] = ACTIONS(1237), + [anon_sym___unused] = ACTIONS(1237), + [anon_sym__Complex] = ACTIONS(1237), + [anon_sym___complex] = ACTIONS(1237), + [anon_sym_IBOutlet] = ACTIONS(1237), + [anon_sym_IBInspectable] = ACTIONS(1237), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1237), + [anon_sym_signed] = ACTIONS(1237), + [anon_sym_unsigned] = ACTIONS(1237), + [anon_sym_long] = ACTIONS(1237), + [anon_sym_short] = ACTIONS(1237), + [sym_primitive_type] = ACTIONS(1237), + [anon_sym_enum] = ACTIONS(1237), + [anon_sym_struct] = ACTIONS(1237), + [anon_sym_union] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_else] = ACTIONS(1237), + [anon_sym_switch] = ACTIONS(1237), + [anon_sym_case] = ACTIONS(1237), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1237), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1237), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_goto] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_sizeof] = ACTIONS(1237), + [sym_number_literal] = ACTIONS(1235), + [anon_sym_L_SQUOTE] = ACTIONS(1235), + [anon_sym_u_SQUOTE] = ACTIONS(1235), + [anon_sym_U_SQUOTE] = ACTIONS(1235), + [anon_sym_u8_SQUOTE] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1235), + [anon_sym_L_DQUOTE] = ACTIONS(1235), + [anon_sym_u_DQUOTE] = ACTIONS(1235), + [anon_sym_U_DQUOTE] = ACTIONS(1235), + [anon_sym_u8_DQUOTE] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), + [sym_null] = ACTIONS(1237), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1237), - [anon_sym_ATimport] = ACTIONS(1237), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1235), - [anon_sym_ATcompatibility_alias] = ACTIONS(1237), - [anon_sym_ATprotocol] = ACTIONS(1237), - [anon_sym_ATclass] = ACTIONS(1237), - [anon_sym_ATinterface] = ACTIONS(1237), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1235), - [sym_method_attribute_specifier] = ACTIONS(1235), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1235), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1235), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1235), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1235), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1235), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1235), - [anon_sym_NS_AVAILABLE] = ACTIONS(1235), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1235), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1235), - [anon_sym_API_AVAILABLE] = ACTIONS(1235), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1235), - [anon_sym_API_DEPRECATED] = ACTIONS(1235), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1235), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1235), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1235), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1235), - [anon_sym___deprecated_msg] = ACTIONS(1235), - [anon_sym___deprecated_enum_msg] = ACTIONS(1235), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1235), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1235), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1235), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1235), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1235), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1235), - [anon_sym_ATimplementation] = ACTIONS(1237), - [anon_sym_typeof] = ACTIONS(1235), - [anon_sym___typeof] = ACTIONS(1235), - [anon_sym___typeof__] = ACTIONS(1235), - [sym_self] = ACTIONS(1235), - [sym_super] = ACTIONS(1235), - [sym_nil] = ACTIONS(1235), - [sym_id] = ACTIONS(1235), - [sym_instancetype] = ACTIONS(1235), - [sym_Class] = ACTIONS(1235), - [sym_SEL] = ACTIONS(1235), - [sym_IMP] = ACTIONS(1235), - [sym_BOOL] = ACTIONS(1235), - [sym_auto] = ACTIONS(1235), - [anon_sym_ATautoreleasepool] = ACTIONS(1237), - [anon_sym_ATsynchronized] = ACTIONS(1237), - [anon_sym_ATtry] = ACTIONS(1237), - [anon_sym_ATcatch] = ACTIONS(1237), - [anon_sym_ATfinally] = ACTIONS(1237), - [anon_sym_ATthrow] = ACTIONS(1237), - [anon_sym_ATselector] = ACTIONS(1237), - [anon_sym_ATencode] = ACTIONS(1237), - [anon_sym_AT] = ACTIONS(1235), - [sym_YES] = ACTIONS(1235), - [sym_NO] = ACTIONS(1235), - [anon_sym___builtin_available] = ACTIONS(1235), - [anon_sym_ATavailable] = ACTIONS(1237), - [anon_sym_va_arg] = ACTIONS(1235), + [anon_sym_POUNDimport] = ACTIONS(1235), + [anon_sym_ATimport] = ACTIONS(1235), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1237), + [anon_sym_ATcompatibility_alias] = ACTIONS(1235), + [anon_sym_ATprotocol] = ACTIONS(1235), + [anon_sym_ATclass] = ACTIONS(1235), + [anon_sym_ATinterface] = ACTIONS(1235), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1237), + [sym_method_attribute_specifier] = ACTIONS(1237), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1237), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1237), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1237), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1237), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1237), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1237), + [anon_sym_NS_AVAILABLE] = ACTIONS(1237), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1237), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1237), + [anon_sym_API_AVAILABLE] = ACTIONS(1237), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1237), + [anon_sym_API_DEPRECATED] = ACTIONS(1237), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1237), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1237), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1237), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1237), + [anon_sym___deprecated_msg] = ACTIONS(1237), + [anon_sym___deprecated_enum_msg] = ACTIONS(1237), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1237), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1237), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1237), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1237), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1237), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1237), + [anon_sym_ATimplementation] = ACTIONS(1235), + [anon_sym_NS_ENUM] = ACTIONS(1237), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1237), + [anon_sym_NS_OPTIONS] = ACTIONS(1237), + [anon_sym_typeof] = ACTIONS(1237), + [anon_sym___typeof] = ACTIONS(1237), + [anon_sym___typeof__] = ACTIONS(1237), + [sym_self] = ACTIONS(1237), + [sym_super] = ACTIONS(1237), + [sym_nil] = ACTIONS(1237), + [sym_id] = ACTIONS(1237), + [sym_instancetype] = ACTIONS(1237), + [sym_Class] = ACTIONS(1237), + [sym_SEL] = ACTIONS(1237), + [sym_IMP] = ACTIONS(1237), + [sym_BOOL] = ACTIONS(1237), + [sym_auto] = ACTIONS(1237), + [anon_sym_ATautoreleasepool] = ACTIONS(1235), + [anon_sym_ATsynchronized] = ACTIONS(1235), + [anon_sym_ATtry] = ACTIONS(1235), + [anon_sym_ATcatch] = ACTIONS(1235), + [anon_sym_ATfinally] = ACTIONS(1235), + [anon_sym_ATthrow] = ACTIONS(1235), + [anon_sym_ATselector] = ACTIONS(1235), + [anon_sym_ATencode] = ACTIONS(1235), + [anon_sym_AT] = ACTIONS(1237), + [sym_YES] = ACTIONS(1237), + [sym_NO] = ACTIONS(1237), + [anon_sym___builtin_available] = ACTIONS(1237), + [anon_sym_ATavailable] = ACTIONS(1235), + [anon_sym_va_arg] = ACTIONS(1237), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, [80] = { - [sym_identifier] = ACTIONS(1239), - [aux_sym_preproc_include_token1] = ACTIONS(1241), - [aux_sym_preproc_def_token1] = ACTIONS(1241), - [aux_sym_preproc_if_token1] = ACTIONS(1239), - [aux_sym_preproc_if_token2] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), - [aux_sym_preproc_else_token1] = ACTIONS(1239), - [aux_sym_preproc_elif_token1] = ACTIONS(1239), - [anon_sym_LPAREN2] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_TILDE] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_typedef] = ACTIONS(1239), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym___attribute] = ACTIONS(1239), - [anon_sym___attribute__] = ACTIONS(1239), - [anon_sym___declspec] = ACTIONS(1239), - [anon_sym___cdecl] = ACTIONS(1239), - [anon_sym___clrcall] = ACTIONS(1239), - [anon_sym___stdcall] = ACTIONS(1239), - [anon_sym___fastcall] = ACTIONS(1239), - [anon_sym___thiscall] = ACTIONS(1239), - [anon_sym___vectorcall] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_static] = ACTIONS(1239), - [anon_sym_auto] = ACTIONS(1239), - [anon_sym_register] = ACTIONS(1239), - [anon_sym_inline] = ACTIONS(1239), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_volatile] = ACTIONS(1239), - [anon_sym_restrict] = ACTIONS(1239), - [anon_sym__Atomic] = ACTIONS(1239), - [anon_sym_in] = ACTIONS(1239), - [anon_sym_out] = ACTIONS(1239), - [anon_sym_inout] = ACTIONS(1239), - [anon_sym_bycopy] = ACTIONS(1239), - [anon_sym_byref] = ACTIONS(1239), - [anon_sym_oneway] = ACTIONS(1239), - [anon_sym__Nullable] = ACTIONS(1239), - [anon_sym__Nonnull] = ACTIONS(1239), - [anon_sym__Nullable_result] = ACTIONS(1239), - [anon_sym__Null_unspecified] = ACTIONS(1239), - [anon_sym___autoreleasing] = ACTIONS(1239), - [anon_sym___nullable] = ACTIONS(1239), - [anon_sym___nonnull] = ACTIONS(1239), - [anon_sym___strong] = ACTIONS(1239), - [anon_sym___weak] = ACTIONS(1239), - [anon_sym___bridge] = ACTIONS(1239), - [anon_sym___bridge_transfer] = ACTIONS(1239), - [anon_sym___bridge_retained] = ACTIONS(1239), - [anon_sym___unsafe_unretained] = ACTIONS(1239), - [anon_sym___block] = ACTIONS(1239), - [anon_sym___kindof] = ACTIONS(1239), - [anon_sym___unused] = ACTIONS(1239), - [anon_sym__Complex] = ACTIONS(1239), - [anon_sym___complex] = ACTIONS(1239), - [anon_sym_IBOutlet] = ACTIONS(1239), - [anon_sym_IBInspectable] = ACTIONS(1239), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1239), - [anon_sym_signed] = ACTIONS(1239), - [anon_sym_unsigned] = ACTIONS(1239), - [anon_sym_long] = ACTIONS(1239), - [anon_sym_short] = ACTIONS(1239), - [sym_primitive_type] = ACTIONS(1239), - [anon_sym_enum] = ACTIONS(1239), - [anon_sym_NS_ENUM] = ACTIONS(1239), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1239), - [anon_sym_NS_OPTIONS] = ACTIONS(1239), - [anon_sym_struct] = ACTIONS(1239), - [anon_sym_union] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_switch] = ACTIONS(1239), - [anon_sym_case] = ACTIONS(1239), - [anon_sym_default] = ACTIONS(1239), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_do] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_return] = ACTIONS(1239), - [anon_sym_break] = ACTIONS(1239), - [anon_sym_continue] = ACTIONS(1239), - [anon_sym_goto] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_sizeof] = ACTIONS(1239), - [sym_number_literal] = ACTIONS(1241), - [anon_sym_L_SQUOTE] = ACTIONS(1241), - [anon_sym_u_SQUOTE] = ACTIONS(1241), - [anon_sym_U_SQUOTE] = ACTIONS(1241), - [anon_sym_u8_SQUOTE] = ACTIONS(1241), - [anon_sym_SQUOTE] = ACTIONS(1241), - [anon_sym_L_DQUOTE] = ACTIONS(1241), - [anon_sym_u_DQUOTE] = ACTIONS(1241), - [anon_sym_U_DQUOTE] = ACTIONS(1241), - [anon_sym_u8_DQUOTE] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), - [sym_null] = ACTIONS(1239), + [ts_builtin_sym_end] = ACTIONS(1239), + [sym_identifier] = ACTIONS(1241), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [anon_sym_RPAREN] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1241), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1241), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1241), + [anon_sym_LPAREN2] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1241), + [anon_sym_extern] = ACTIONS(1241), + [anon_sym___attribute] = ACTIONS(1241), + [anon_sym___attribute__] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1241), + [anon_sym___cdecl] = ACTIONS(1241), + [anon_sym___clrcall] = ACTIONS(1241), + [anon_sym___stdcall] = ACTIONS(1241), + [anon_sym___fastcall] = ACTIONS(1241), + [anon_sym___thiscall] = ACTIONS(1241), + [anon_sym___vectorcall] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1241), + [anon_sym_auto] = ACTIONS(1241), + [anon_sym_register] = ACTIONS(1241), + [anon_sym_inline] = ACTIONS(1241), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1241), + [anon_sym_const] = ACTIONS(1241), + [anon_sym_volatile] = ACTIONS(1241), + [anon_sym_restrict] = ACTIONS(1241), + [anon_sym__Atomic] = ACTIONS(1241), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_out] = ACTIONS(1241), + [anon_sym_inout] = ACTIONS(1241), + [anon_sym_bycopy] = ACTIONS(1241), + [anon_sym_byref] = ACTIONS(1241), + [anon_sym_oneway] = ACTIONS(1241), + [anon_sym__Nullable] = ACTIONS(1241), + [anon_sym__Nonnull] = ACTIONS(1241), + [anon_sym__Nullable_result] = ACTIONS(1241), + [anon_sym__Null_unspecified] = ACTIONS(1241), + [anon_sym___autoreleasing] = ACTIONS(1241), + [anon_sym___nullable] = ACTIONS(1241), + [anon_sym___nonnull] = ACTIONS(1241), + [anon_sym___strong] = ACTIONS(1241), + [anon_sym___weak] = ACTIONS(1241), + [anon_sym___bridge] = ACTIONS(1241), + [anon_sym___bridge_transfer] = ACTIONS(1241), + [anon_sym___bridge_retained] = ACTIONS(1241), + [anon_sym___unsafe_unretained] = ACTIONS(1241), + [anon_sym___block] = ACTIONS(1241), + [anon_sym___kindof] = ACTIONS(1241), + [anon_sym___unused] = ACTIONS(1241), + [anon_sym__Complex] = ACTIONS(1241), + [anon_sym___complex] = ACTIONS(1241), + [anon_sym_IBOutlet] = ACTIONS(1241), + [anon_sym_IBInspectable] = ACTIONS(1241), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1241), + [anon_sym_unsigned] = ACTIONS(1241), + [anon_sym_long] = ACTIONS(1241), + [anon_sym_short] = ACTIONS(1241), + [sym_primitive_type] = ACTIONS(1241), + [anon_sym_enum] = ACTIONS(1241), + [anon_sym_struct] = ACTIONS(1241), + [anon_sym_union] = ACTIONS(1241), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1241), + [anon_sym_case] = ACTIONS(1241), + [anon_sym_default] = ACTIONS(1241), + [anon_sym_while] = ACTIONS(1241), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1241), + [anon_sym_break] = ACTIONS(1241), + [anon_sym_continue] = ACTIONS(1241), + [anon_sym_goto] = ACTIONS(1241), + [anon_sym_DASH_DASH] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_sizeof] = ACTIONS(1241), + [sym_number_literal] = ACTIONS(1239), + [anon_sym_L_SQUOTE] = ACTIONS(1239), + [anon_sym_u_SQUOTE] = ACTIONS(1239), + [anon_sym_U_SQUOTE] = ACTIONS(1239), + [anon_sym_u8_SQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1239), + [anon_sym_L_DQUOTE] = ACTIONS(1239), + [anon_sym_u_DQUOTE] = ACTIONS(1239), + [anon_sym_U_DQUOTE] = ACTIONS(1239), + [anon_sym_u8_DQUOTE] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1239), + [sym_true] = ACTIONS(1241), + [sym_false] = ACTIONS(1241), + [sym_null] = ACTIONS(1241), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1241), - [anon_sym_ATimport] = ACTIONS(1241), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1239), - [anon_sym_ATcompatibility_alias] = ACTIONS(1241), - [anon_sym_ATprotocol] = ACTIONS(1241), - [anon_sym_ATclass] = ACTIONS(1241), - [anon_sym_ATinterface] = ACTIONS(1241), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1239), - [sym_method_attribute_specifier] = ACTIONS(1239), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1239), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1239), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1239), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1239), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1239), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1239), - [anon_sym_NS_AVAILABLE] = ACTIONS(1239), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1239), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1239), - [anon_sym_API_AVAILABLE] = ACTIONS(1239), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1239), - [anon_sym_API_DEPRECATED] = ACTIONS(1239), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1239), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1239), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1239), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1239), - [anon_sym___deprecated_msg] = ACTIONS(1239), - [anon_sym___deprecated_enum_msg] = ACTIONS(1239), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1239), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1239), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1239), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1239), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1239), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1239), - [anon_sym_ATimplementation] = ACTIONS(1241), - [anon_sym_typeof] = ACTIONS(1239), - [anon_sym___typeof] = ACTIONS(1239), - [anon_sym___typeof__] = ACTIONS(1239), - [sym_self] = ACTIONS(1239), - [sym_super] = ACTIONS(1239), - [sym_nil] = ACTIONS(1239), - [sym_id] = ACTIONS(1239), - [sym_instancetype] = ACTIONS(1239), - [sym_Class] = ACTIONS(1239), - [sym_SEL] = ACTIONS(1239), - [sym_IMP] = ACTIONS(1239), - [sym_BOOL] = ACTIONS(1239), - [sym_auto] = ACTIONS(1239), - [anon_sym_ATautoreleasepool] = ACTIONS(1241), - [anon_sym_ATsynchronized] = ACTIONS(1241), - [anon_sym_ATtry] = ACTIONS(1241), - [anon_sym_ATcatch] = ACTIONS(1241), - [anon_sym_ATfinally] = ACTIONS(1241), - [anon_sym_ATthrow] = ACTIONS(1241), - [anon_sym_ATselector] = ACTIONS(1241), - [anon_sym_ATencode] = ACTIONS(1241), - [anon_sym_AT] = ACTIONS(1239), - [sym_YES] = ACTIONS(1239), - [sym_NO] = ACTIONS(1239), - [anon_sym___builtin_available] = ACTIONS(1239), - [anon_sym_ATavailable] = ACTIONS(1241), - [anon_sym_va_arg] = ACTIONS(1239), + [anon_sym_POUNDimport] = ACTIONS(1239), + [anon_sym_ATimport] = ACTIONS(1239), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1241), + [anon_sym_ATcompatibility_alias] = ACTIONS(1239), + [anon_sym_ATprotocol] = ACTIONS(1239), + [anon_sym_ATclass] = ACTIONS(1239), + [anon_sym_ATinterface] = ACTIONS(1239), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1241), + [sym_method_attribute_specifier] = ACTIONS(1241), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1241), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1241), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1241), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1241), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1241), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1241), + [anon_sym_NS_AVAILABLE] = ACTIONS(1241), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1241), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1241), + [anon_sym_API_AVAILABLE] = ACTIONS(1241), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1241), + [anon_sym_API_DEPRECATED] = ACTIONS(1241), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1241), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1241), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1241), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1241), + [anon_sym___deprecated_msg] = ACTIONS(1241), + [anon_sym___deprecated_enum_msg] = ACTIONS(1241), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1241), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1241), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1241), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1241), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1241), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1241), + [anon_sym_ATimplementation] = ACTIONS(1239), + [anon_sym_NS_ENUM] = ACTIONS(1241), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1241), + [anon_sym_NS_OPTIONS] = ACTIONS(1241), + [anon_sym_typeof] = ACTIONS(1241), + [anon_sym___typeof] = ACTIONS(1241), + [anon_sym___typeof__] = ACTIONS(1241), + [sym_self] = ACTIONS(1241), + [sym_super] = ACTIONS(1241), + [sym_nil] = ACTIONS(1241), + [sym_id] = ACTIONS(1241), + [sym_instancetype] = ACTIONS(1241), + [sym_Class] = ACTIONS(1241), + [sym_SEL] = ACTIONS(1241), + [sym_IMP] = ACTIONS(1241), + [sym_BOOL] = ACTIONS(1241), + [sym_auto] = ACTIONS(1241), + [anon_sym_ATautoreleasepool] = ACTIONS(1239), + [anon_sym_ATsynchronized] = ACTIONS(1239), + [anon_sym_ATtry] = ACTIONS(1239), + [anon_sym_ATcatch] = ACTIONS(1239), + [anon_sym_ATfinally] = ACTIONS(1239), + [anon_sym_ATthrow] = ACTIONS(1239), + [anon_sym_ATselector] = ACTIONS(1239), + [anon_sym_ATencode] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(1241), + [sym_YES] = ACTIONS(1241), + [sym_NO] = ACTIONS(1241), + [anon_sym___builtin_available] = ACTIONS(1241), + [anon_sym_ATavailable] = ACTIONS(1239), + [anon_sym_va_arg] = ACTIONS(1241), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, [81] = { @@ -39836,9 +39865,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1245), [sym_primitive_type] = ACTIONS(1245), [anon_sym_enum] = ACTIONS(1245), - [anon_sym_NS_ENUM] = ACTIONS(1245), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1245), - [anon_sym_NS_OPTIONS] = ACTIONS(1245), [anon_sym_struct] = ACTIONS(1245), [anon_sym_union] = ACTIONS(1245), [anon_sym_if] = ACTIONS(1245), @@ -39905,6 +39931,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1245), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1245), [anon_sym_ATimplementation] = ACTIONS(1243), + [anon_sym_NS_ENUM] = ACTIONS(1245), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1245), + [anon_sym_NS_OPTIONS] = ACTIONS(1245), [anon_sym_typeof] = ACTIONS(1245), [anon_sym___typeof] = ACTIONS(1245), [anon_sym___typeof__] = ACTIONS(1245), @@ -39940,706 +39969,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [82] = { - [sym_identifier] = ACTIONS(1247), - [aux_sym_preproc_include_token1] = ACTIONS(1249), - [aux_sym_preproc_def_token1] = ACTIONS(1249), - [aux_sym_preproc_if_token1] = ACTIONS(1247), - [aux_sym_preproc_if_token2] = ACTIONS(1247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), - [aux_sym_preproc_else_token1] = ACTIONS(1247), - [aux_sym_preproc_elif_token1] = ACTIONS(1247), - [anon_sym_LPAREN2] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1249), - [anon_sym_TILDE] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1249), - [anon_sym_CARET] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym_typedef] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym___attribute] = ACTIONS(1247), - [anon_sym___attribute__] = ACTIONS(1247), - [anon_sym___declspec] = ACTIONS(1247), - [anon_sym___cdecl] = ACTIONS(1247), - [anon_sym___clrcall] = ACTIONS(1247), - [anon_sym___stdcall] = ACTIONS(1247), - [anon_sym___fastcall] = ACTIONS(1247), - [anon_sym___thiscall] = ACTIONS(1247), - [anon_sym___vectorcall] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1249), - [anon_sym_static] = ACTIONS(1247), - [anon_sym_auto] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_inline] = ACTIONS(1247), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_volatile] = ACTIONS(1247), - [anon_sym_restrict] = ACTIONS(1247), - [anon_sym__Atomic] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_out] = ACTIONS(1247), - [anon_sym_inout] = ACTIONS(1247), - [anon_sym_bycopy] = ACTIONS(1247), - [anon_sym_byref] = ACTIONS(1247), - [anon_sym_oneway] = ACTIONS(1247), - [anon_sym__Nullable] = ACTIONS(1247), - [anon_sym__Nonnull] = ACTIONS(1247), - [anon_sym__Nullable_result] = ACTIONS(1247), - [anon_sym__Null_unspecified] = ACTIONS(1247), - [anon_sym___autoreleasing] = ACTIONS(1247), - [anon_sym___nullable] = ACTIONS(1247), - [anon_sym___nonnull] = ACTIONS(1247), - [anon_sym___strong] = ACTIONS(1247), - [anon_sym___weak] = ACTIONS(1247), - [anon_sym___bridge] = ACTIONS(1247), - [anon_sym___bridge_transfer] = ACTIONS(1247), - [anon_sym___bridge_retained] = ACTIONS(1247), - [anon_sym___unsafe_unretained] = ACTIONS(1247), - [anon_sym___block] = ACTIONS(1247), - [anon_sym___kindof] = ACTIONS(1247), - [anon_sym___unused] = ACTIONS(1247), - [anon_sym__Complex] = ACTIONS(1247), - [anon_sym___complex] = ACTIONS(1247), - [anon_sym_IBOutlet] = ACTIONS(1247), - [anon_sym_IBInspectable] = ACTIONS(1247), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1247), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_long] = ACTIONS(1247), - [anon_sym_short] = ACTIONS(1247), - [sym_primitive_type] = ACTIONS(1247), - [anon_sym_enum] = ACTIONS(1247), - [anon_sym_NS_ENUM] = ACTIONS(1247), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1247), - [anon_sym_NS_OPTIONS] = ACTIONS(1247), - [anon_sym_struct] = ACTIONS(1247), - [anon_sym_union] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_else] = ACTIONS(1247), - [anon_sym_switch] = ACTIONS(1247), - [anon_sym_case] = ACTIONS(1247), - [anon_sym_default] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_goto] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1249), - [anon_sym_PLUS_PLUS] = ACTIONS(1249), - [anon_sym_sizeof] = ACTIONS(1247), - [sym_number_literal] = ACTIONS(1249), - [anon_sym_L_SQUOTE] = ACTIONS(1249), - [anon_sym_u_SQUOTE] = ACTIONS(1249), - [anon_sym_U_SQUOTE] = ACTIONS(1249), - [anon_sym_u8_SQUOTE] = ACTIONS(1249), - [anon_sym_SQUOTE] = ACTIONS(1249), - [anon_sym_L_DQUOTE] = ACTIONS(1249), - [anon_sym_u_DQUOTE] = ACTIONS(1249), - [anon_sym_U_DQUOTE] = ACTIONS(1249), - [anon_sym_u8_DQUOTE] = ACTIONS(1249), - [anon_sym_DQUOTE] = ACTIONS(1249), - [sym_true] = ACTIONS(1247), - [sym_false] = ACTIONS(1247), - [sym_null] = ACTIONS(1247), + [ts_builtin_sym_end] = ACTIONS(1231), + [sym_identifier] = ACTIONS(1233), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [anon_sym_RPAREN] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1233), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1233), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1233), + [anon_sym_LPAREN2] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1231), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1233), + [anon_sym_extern] = ACTIONS(1233), + [anon_sym___attribute] = ACTIONS(1233), + [anon_sym___attribute__] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1233), + [anon_sym___cdecl] = ACTIONS(1233), + [anon_sym___clrcall] = ACTIONS(1233), + [anon_sym___stdcall] = ACTIONS(1233), + [anon_sym___fastcall] = ACTIONS(1233), + [anon_sym___thiscall] = ACTIONS(1233), + [anon_sym___vectorcall] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1231), + [anon_sym_RBRACE] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1233), + [anon_sym_auto] = ACTIONS(1233), + [anon_sym_register] = ACTIONS(1233), + [anon_sym_inline] = ACTIONS(1233), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_volatile] = ACTIONS(1233), + [anon_sym_restrict] = ACTIONS(1233), + [anon_sym__Atomic] = ACTIONS(1233), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_out] = ACTIONS(1233), + [anon_sym_inout] = ACTIONS(1233), + [anon_sym_bycopy] = ACTIONS(1233), + [anon_sym_byref] = ACTIONS(1233), + [anon_sym_oneway] = ACTIONS(1233), + [anon_sym__Nullable] = ACTIONS(1233), + [anon_sym__Nonnull] = ACTIONS(1233), + [anon_sym__Nullable_result] = ACTIONS(1233), + [anon_sym__Null_unspecified] = ACTIONS(1233), + [anon_sym___autoreleasing] = ACTIONS(1233), + [anon_sym___nullable] = ACTIONS(1233), + [anon_sym___nonnull] = ACTIONS(1233), + [anon_sym___strong] = ACTIONS(1233), + [anon_sym___weak] = ACTIONS(1233), + [anon_sym___bridge] = ACTIONS(1233), + [anon_sym___bridge_transfer] = ACTIONS(1233), + [anon_sym___bridge_retained] = ACTIONS(1233), + [anon_sym___unsafe_unretained] = ACTIONS(1233), + [anon_sym___block] = ACTIONS(1233), + [anon_sym___kindof] = ACTIONS(1233), + [anon_sym___unused] = ACTIONS(1233), + [anon_sym__Complex] = ACTIONS(1233), + [anon_sym___complex] = ACTIONS(1233), + [anon_sym_IBOutlet] = ACTIONS(1233), + [anon_sym_IBInspectable] = ACTIONS(1233), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1233), + [anon_sym_unsigned] = ACTIONS(1233), + [anon_sym_long] = ACTIONS(1233), + [anon_sym_short] = ACTIONS(1233), + [sym_primitive_type] = ACTIONS(1233), + [anon_sym_enum] = ACTIONS(1233), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_union] = ACTIONS(1233), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_else] = ACTIONS(1233), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_break] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(1233), + [anon_sym_goto] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(1233), + [sym_number_literal] = ACTIONS(1231), + [anon_sym_L_SQUOTE] = ACTIONS(1231), + [anon_sym_u_SQUOTE] = ACTIONS(1231), + [anon_sym_U_SQUOTE] = ACTIONS(1231), + [anon_sym_u8_SQUOTE] = ACTIONS(1231), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_L_DQUOTE] = ACTIONS(1231), + [anon_sym_u_DQUOTE] = ACTIONS(1231), + [anon_sym_U_DQUOTE] = ACTIONS(1231), + [anon_sym_u8_DQUOTE] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym_true] = ACTIONS(1233), + [sym_false] = ACTIONS(1233), + [sym_null] = ACTIONS(1233), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1249), - [anon_sym_ATimport] = ACTIONS(1249), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1247), - [anon_sym_ATcompatibility_alias] = ACTIONS(1249), - [anon_sym_ATprotocol] = ACTIONS(1249), - [anon_sym_ATclass] = ACTIONS(1249), - [anon_sym_ATinterface] = ACTIONS(1249), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1247), - [sym_method_attribute_specifier] = ACTIONS(1247), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1247), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1247), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1247), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1247), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1247), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1247), - [anon_sym_NS_AVAILABLE] = ACTIONS(1247), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1247), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1247), - [anon_sym_API_AVAILABLE] = ACTIONS(1247), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1247), - [anon_sym_API_DEPRECATED] = ACTIONS(1247), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1247), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1247), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1247), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1247), - [anon_sym___deprecated_msg] = ACTIONS(1247), - [anon_sym___deprecated_enum_msg] = ACTIONS(1247), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1247), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1247), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1247), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1247), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1247), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1247), - [anon_sym_ATimplementation] = ACTIONS(1249), - [anon_sym_typeof] = ACTIONS(1247), - [anon_sym___typeof] = ACTIONS(1247), - [anon_sym___typeof__] = ACTIONS(1247), - [sym_self] = ACTIONS(1247), - [sym_super] = ACTIONS(1247), - [sym_nil] = ACTIONS(1247), - [sym_id] = ACTIONS(1247), - [sym_instancetype] = ACTIONS(1247), - [sym_Class] = ACTIONS(1247), - [sym_SEL] = ACTIONS(1247), - [sym_IMP] = ACTIONS(1247), - [sym_BOOL] = ACTIONS(1247), - [sym_auto] = ACTIONS(1247), - [anon_sym_ATautoreleasepool] = ACTIONS(1249), - [anon_sym_ATsynchronized] = ACTIONS(1249), - [anon_sym_ATtry] = ACTIONS(1249), - [anon_sym_ATcatch] = ACTIONS(1249), - [anon_sym_ATfinally] = ACTIONS(1249), - [anon_sym_ATthrow] = ACTIONS(1249), - [anon_sym_ATselector] = ACTIONS(1249), - [anon_sym_ATencode] = ACTIONS(1249), - [anon_sym_AT] = ACTIONS(1247), - [sym_YES] = ACTIONS(1247), - [sym_NO] = ACTIONS(1247), - [anon_sym___builtin_available] = ACTIONS(1247), - [anon_sym_ATavailable] = ACTIONS(1249), - [anon_sym_va_arg] = ACTIONS(1247), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [83] = { - [sym_identifier] = ACTIONS(1251), - [aux_sym_preproc_include_token1] = ACTIONS(1253), - [aux_sym_preproc_def_token1] = ACTIONS(1253), - [aux_sym_preproc_if_token1] = ACTIONS(1251), - [aux_sym_preproc_if_token2] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), - [aux_sym_preproc_else_token1] = ACTIONS(1251), - [aux_sym_preproc_elif_token1] = ACTIONS(1251), - [anon_sym_LPAREN2] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_typedef] = ACTIONS(1251), - [anon_sym_extern] = ACTIONS(1251), - [anon_sym___attribute] = ACTIONS(1251), - [anon_sym___attribute__] = ACTIONS(1251), - [anon_sym___declspec] = ACTIONS(1251), - [anon_sym___cdecl] = ACTIONS(1251), - [anon_sym___clrcall] = ACTIONS(1251), - [anon_sym___stdcall] = ACTIONS(1251), - [anon_sym___fastcall] = ACTIONS(1251), - [anon_sym___thiscall] = ACTIONS(1251), - [anon_sym___vectorcall] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1253), - [anon_sym_static] = ACTIONS(1251), - [anon_sym_auto] = ACTIONS(1251), - [anon_sym_register] = ACTIONS(1251), - [anon_sym_inline] = ACTIONS(1251), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_volatile] = ACTIONS(1251), - [anon_sym_restrict] = ACTIONS(1251), - [anon_sym__Atomic] = ACTIONS(1251), - [anon_sym_in] = ACTIONS(1251), - [anon_sym_out] = ACTIONS(1251), - [anon_sym_inout] = ACTIONS(1251), - [anon_sym_bycopy] = ACTIONS(1251), - [anon_sym_byref] = ACTIONS(1251), - [anon_sym_oneway] = ACTIONS(1251), - [anon_sym__Nullable] = ACTIONS(1251), - [anon_sym__Nonnull] = ACTIONS(1251), - [anon_sym__Nullable_result] = ACTIONS(1251), - [anon_sym__Null_unspecified] = ACTIONS(1251), - [anon_sym___autoreleasing] = ACTIONS(1251), - [anon_sym___nullable] = ACTIONS(1251), - [anon_sym___nonnull] = ACTIONS(1251), - [anon_sym___strong] = ACTIONS(1251), - [anon_sym___weak] = ACTIONS(1251), - [anon_sym___bridge] = ACTIONS(1251), - [anon_sym___bridge_transfer] = ACTIONS(1251), - [anon_sym___bridge_retained] = ACTIONS(1251), - [anon_sym___unsafe_unretained] = ACTIONS(1251), - [anon_sym___block] = ACTIONS(1251), - [anon_sym___kindof] = ACTIONS(1251), - [anon_sym___unused] = ACTIONS(1251), - [anon_sym__Complex] = ACTIONS(1251), - [anon_sym___complex] = ACTIONS(1251), - [anon_sym_IBOutlet] = ACTIONS(1251), - [anon_sym_IBInspectable] = ACTIONS(1251), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1251), - [anon_sym_signed] = ACTIONS(1251), - [anon_sym_unsigned] = ACTIONS(1251), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_short] = ACTIONS(1251), - [sym_primitive_type] = ACTIONS(1251), - [anon_sym_enum] = ACTIONS(1251), - [anon_sym_NS_ENUM] = ACTIONS(1251), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1251), - [anon_sym_NS_OPTIONS] = ACTIONS(1251), - [anon_sym_struct] = ACTIONS(1251), - [anon_sym_union] = ACTIONS(1251), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_switch] = ACTIONS(1251), - [anon_sym_case] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1251), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_do] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_return] = ACTIONS(1251), - [anon_sym_break] = ACTIONS(1251), - [anon_sym_continue] = ACTIONS(1251), - [anon_sym_goto] = ACTIONS(1251), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1251), - [sym_number_literal] = ACTIONS(1253), - [anon_sym_L_SQUOTE] = ACTIONS(1253), - [anon_sym_u_SQUOTE] = ACTIONS(1253), - [anon_sym_U_SQUOTE] = ACTIONS(1253), - [anon_sym_u8_SQUOTE] = ACTIONS(1253), - [anon_sym_SQUOTE] = ACTIONS(1253), - [anon_sym_L_DQUOTE] = ACTIONS(1253), - [anon_sym_u_DQUOTE] = ACTIONS(1253), - [anon_sym_U_DQUOTE] = ACTIONS(1253), - [anon_sym_u8_DQUOTE] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym_true] = ACTIONS(1251), - [sym_false] = ACTIONS(1251), - [sym_null] = ACTIONS(1251), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1253), - [anon_sym_ATimport] = ACTIONS(1253), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1251), - [anon_sym_ATcompatibility_alias] = ACTIONS(1253), - [anon_sym_ATprotocol] = ACTIONS(1253), - [anon_sym_ATclass] = ACTIONS(1253), - [anon_sym_ATinterface] = ACTIONS(1253), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1251), - [sym_method_attribute_specifier] = ACTIONS(1251), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1251), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1251), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1251), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1251), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1251), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1251), - [anon_sym_NS_AVAILABLE] = ACTIONS(1251), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1251), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1251), - [anon_sym_API_AVAILABLE] = ACTIONS(1251), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1251), - [anon_sym_API_DEPRECATED] = ACTIONS(1251), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1251), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1251), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1251), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1251), - [anon_sym___deprecated_msg] = ACTIONS(1251), - [anon_sym___deprecated_enum_msg] = ACTIONS(1251), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1251), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1251), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1251), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1251), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1251), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1251), - [anon_sym_ATimplementation] = ACTIONS(1253), - [anon_sym_typeof] = ACTIONS(1251), - [anon_sym___typeof] = ACTIONS(1251), - [anon_sym___typeof__] = ACTIONS(1251), - [sym_self] = ACTIONS(1251), - [sym_super] = ACTIONS(1251), - [sym_nil] = ACTIONS(1251), - [sym_id] = ACTIONS(1251), - [sym_instancetype] = ACTIONS(1251), - [sym_Class] = ACTIONS(1251), - [sym_SEL] = ACTIONS(1251), - [sym_IMP] = ACTIONS(1251), - [sym_BOOL] = ACTIONS(1251), - [sym_auto] = ACTIONS(1251), - [anon_sym_ATautoreleasepool] = ACTIONS(1253), - [anon_sym_ATsynchronized] = ACTIONS(1253), - [anon_sym_ATtry] = ACTIONS(1253), - [anon_sym_ATcatch] = ACTIONS(1253), - [anon_sym_ATfinally] = ACTIONS(1253), - [anon_sym_ATthrow] = ACTIONS(1253), - [anon_sym_ATselector] = ACTIONS(1253), - [anon_sym_ATencode] = ACTIONS(1253), - [anon_sym_AT] = ACTIONS(1251), - [sym_YES] = ACTIONS(1251), - [sym_NO] = ACTIONS(1251), - [anon_sym___builtin_available] = ACTIONS(1251), - [anon_sym_ATavailable] = ACTIONS(1253), - [anon_sym_va_arg] = ACTIONS(1251), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [84] = { - [sym_identifier] = ACTIONS(1255), - [aux_sym_preproc_include_token1] = ACTIONS(1257), - [aux_sym_preproc_def_token1] = ACTIONS(1257), - [aux_sym_preproc_if_token1] = ACTIONS(1255), - [aux_sym_preproc_if_token2] = ACTIONS(1255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), - [aux_sym_preproc_else_token1] = ACTIONS(1255), - [aux_sym_preproc_elif_token1] = ACTIONS(1255), - [anon_sym_LPAREN2] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_typedef] = ACTIONS(1255), - [anon_sym_extern] = ACTIONS(1255), - [anon_sym___attribute] = ACTIONS(1255), - [anon_sym___attribute__] = ACTIONS(1255), - [anon_sym___declspec] = ACTIONS(1255), - [anon_sym___cdecl] = ACTIONS(1255), - [anon_sym___clrcall] = ACTIONS(1255), - [anon_sym___stdcall] = ACTIONS(1255), - [anon_sym___fastcall] = ACTIONS(1255), - [anon_sym___thiscall] = ACTIONS(1255), - [anon_sym___vectorcall] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_static] = ACTIONS(1255), - [anon_sym_auto] = ACTIONS(1255), - [anon_sym_register] = ACTIONS(1255), - [anon_sym_inline] = ACTIONS(1255), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1255), - [anon_sym_const] = ACTIONS(1255), - [anon_sym_volatile] = ACTIONS(1255), - [anon_sym_restrict] = ACTIONS(1255), - [anon_sym__Atomic] = ACTIONS(1255), - [anon_sym_in] = ACTIONS(1255), - [anon_sym_out] = ACTIONS(1255), - [anon_sym_inout] = ACTIONS(1255), - [anon_sym_bycopy] = ACTIONS(1255), - [anon_sym_byref] = ACTIONS(1255), - [anon_sym_oneway] = ACTIONS(1255), - [anon_sym__Nullable] = ACTIONS(1255), - [anon_sym__Nonnull] = ACTIONS(1255), - [anon_sym__Nullable_result] = ACTIONS(1255), - [anon_sym__Null_unspecified] = ACTIONS(1255), - [anon_sym___autoreleasing] = ACTIONS(1255), - [anon_sym___nullable] = ACTIONS(1255), - [anon_sym___nonnull] = ACTIONS(1255), - [anon_sym___strong] = ACTIONS(1255), - [anon_sym___weak] = ACTIONS(1255), - [anon_sym___bridge] = ACTIONS(1255), - [anon_sym___bridge_transfer] = ACTIONS(1255), - [anon_sym___bridge_retained] = ACTIONS(1255), - [anon_sym___unsafe_unretained] = ACTIONS(1255), - [anon_sym___block] = ACTIONS(1255), - [anon_sym___kindof] = ACTIONS(1255), - [anon_sym___unused] = ACTIONS(1255), - [anon_sym__Complex] = ACTIONS(1255), - [anon_sym___complex] = ACTIONS(1255), - [anon_sym_IBOutlet] = ACTIONS(1255), - [anon_sym_IBInspectable] = ACTIONS(1255), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1255), - [anon_sym_signed] = ACTIONS(1255), - [anon_sym_unsigned] = ACTIONS(1255), - [anon_sym_long] = ACTIONS(1255), - [anon_sym_short] = ACTIONS(1255), - [sym_primitive_type] = ACTIONS(1255), - [anon_sym_enum] = ACTIONS(1255), - [anon_sym_NS_ENUM] = ACTIONS(1255), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1255), - [anon_sym_NS_OPTIONS] = ACTIONS(1255), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_union] = ACTIONS(1255), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_switch] = ACTIONS(1255), - [anon_sym_case] = ACTIONS(1255), - [anon_sym_default] = ACTIONS(1255), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_do] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_return] = ACTIONS(1255), - [anon_sym_break] = ACTIONS(1255), - [anon_sym_continue] = ACTIONS(1255), - [anon_sym_goto] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_number_literal] = ACTIONS(1257), - [anon_sym_L_SQUOTE] = ACTIONS(1257), - [anon_sym_u_SQUOTE] = ACTIONS(1257), - [anon_sym_U_SQUOTE] = ACTIONS(1257), - [anon_sym_u8_SQUOTE] = ACTIONS(1257), - [anon_sym_SQUOTE] = ACTIONS(1257), - [anon_sym_L_DQUOTE] = ACTIONS(1257), - [anon_sym_u_DQUOTE] = ACTIONS(1257), - [anon_sym_U_DQUOTE] = ACTIONS(1257), - [anon_sym_u8_DQUOTE] = ACTIONS(1257), - [anon_sym_DQUOTE] = ACTIONS(1257), - [sym_true] = ACTIONS(1255), - [sym_false] = ACTIONS(1255), - [sym_null] = ACTIONS(1255), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1257), - [anon_sym_ATimport] = ACTIONS(1257), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1255), - [anon_sym_ATcompatibility_alias] = ACTIONS(1257), - [anon_sym_ATprotocol] = ACTIONS(1257), - [anon_sym_ATclass] = ACTIONS(1257), - [anon_sym_ATinterface] = ACTIONS(1257), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1255), - [sym_method_attribute_specifier] = ACTIONS(1255), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1255), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1255), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1255), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1255), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1255), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1255), - [anon_sym_NS_AVAILABLE] = ACTIONS(1255), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1255), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1255), - [anon_sym_API_AVAILABLE] = ACTIONS(1255), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1255), - [anon_sym_API_DEPRECATED] = ACTIONS(1255), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1255), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1255), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1255), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1255), - [anon_sym___deprecated_msg] = ACTIONS(1255), - [anon_sym___deprecated_enum_msg] = ACTIONS(1255), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1255), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1255), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1255), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1255), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1255), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1255), - [anon_sym_ATimplementation] = ACTIONS(1257), - [anon_sym_typeof] = ACTIONS(1255), - [anon_sym___typeof] = ACTIONS(1255), - [anon_sym___typeof__] = ACTIONS(1255), - [sym_self] = ACTIONS(1255), - [sym_super] = ACTIONS(1255), - [sym_nil] = ACTIONS(1255), - [sym_id] = ACTIONS(1255), - [sym_instancetype] = ACTIONS(1255), - [sym_Class] = ACTIONS(1255), - [sym_SEL] = ACTIONS(1255), - [sym_IMP] = ACTIONS(1255), - [sym_BOOL] = ACTIONS(1255), - [sym_auto] = ACTIONS(1255), - [anon_sym_ATautoreleasepool] = ACTIONS(1257), - [anon_sym_ATsynchronized] = ACTIONS(1257), - [anon_sym_ATtry] = ACTIONS(1257), - [anon_sym_ATcatch] = ACTIONS(1257), - [anon_sym_ATfinally] = ACTIONS(1257), - [anon_sym_ATthrow] = ACTIONS(1257), - [anon_sym_ATselector] = ACTIONS(1257), - [anon_sym_ATencode] = ACTIONS(1257), - [anon_sym_AT] = ACTIONS(1255), - [sym_YES] = ACTIONS(1255), - [sym_NO] = ACTIONS(1255), - [anon_sym___builtin_available] = ACTIONS(1255), - [anon_sym_ATavailable] = ACTIONS(1257), - [anon_sym_va_arg] = ACTIONS(1255), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [85] = { - [ts_builtin_sym_end] = ACTIONS(1229), - [sym_identifier] = ACTIONS(1227), - [aux_sym_preproc_include_token1] = ACTIONS(1229), - [aux_sym_preproc_def_token1] = ACTIONS(1229), - [anon_sym_RPAREN] = ACTIONS(1229), - [aux_sym_preproc_if_token1] = ACTIONS(1227), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), - [anon_sym_LPAREN2] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_SEMI] = ACTIONS(1229), - [anon_sym_typedef] = ACTIONS(1227), - [anon_sym_extern] = ACTIONS(1227), - [anon_sym___attribute] = ACTIONS(1227), - [anon_sym___attribute__] = ACTIONS(1227), - [anon_sym___declspec] = ACTIONS(1227), - [anon_sym___cdecl] = ACTIONS(1227), - [anon_sym___clrcall] = ACTIONS(1227), - [anon_sym___stdcall] = ACTIONS(1227), - [anon_sym___fastcall] = ACTIONS(1227), - [anon_sym___thiscall] = ACTIONS(1227), - [anon_sym___vectorcall] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1229), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_auto] = ACTIONS(1227), - [anon_sym_register] = ACTIONS(1227), - [anon_sym_inline] = ACTIONS(1227), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_volatile] = ACTIONS(1227), - [anon_sym_restrict] = ACTIONS(1227), - [anon_sym__Atomic] = ACTIONS(1227), - [anon_sym_in] = ACTIONS(1227), - [anon_sym_out] = ACTIONS(1227), - [anon_sym_inout] = ACTIONS(1227), - [anon_sym_bycopy] = ACTIONS(1227), - [anon_sym_byref] = ACTIONS(1227), - [anon_sym_oneway] = ACTIONS(1227), - [anon_sym__Nullable] = ACTIONS(1227), - [anon_sym__Nonnull] = ACTIONS(1227), - [anon_sym__Nullable_result] = ACTIONS(1227), - [anon_sym__Null_unspecified] = ACTIONS(1227), - [anon_sym___autoreleasing] = ACTIONS(1227), - [anon_sym___nullable] = ACTIONS(1227), - [anon_sym___nonnull] = ACTIONS(1227), - [anon_sym___strong] = ACTIONS(1227), - [anon_sym___weak] = ACTIONS(1227), - [anon_sym___bridge] = ACTIONS(1227), - [anon_sym___bridge_transfer] = ACTIONS(1227), - [anon_sym___bridge_retained] = ACTIONS(1227), - [anon_sym___unsafe_unretained] = ACTIONS(1227), - [anon_sym___block] = ACTIONS(1227), - [anon_sym___kindof] = ACTIONS(1227), - [anon_sym___unused] = ACTIONS(1227), - [anon_sym__Complex] = ACTIONS(1227), - [anon_sym___complex] = ACTIONS(1227), - [anon_sym_IBOutlet] = ACTIONS(1227), - [anon_sym_IBInspectable] = ACTIONS(1227), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1227), - [anon_sym_signed] = ACTIONS(1227), - [anon_sym_unsigned] = ACTIONS(1227), - [anon_sym_long] = ACTIONS(1227), - [anon_sym_short] = ACTIONS(1227), - [sym_primitive_type] = ACTIONS(1227), - [anon_sym_enum] = ACTIONS(1227), - [anon_sym_NS_ENUM] = ACTIONS(1227), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1227), - [anon_sym_NS_OPTIONS] = ACTIONS(1227), - [anon_sym_struct] = ACTIONS(1227), - [anon_sym_union] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_else] = ACTIONS(1227), - [anon_sym_switch] = ACTIONS(1227), - [anon_sym_case] = ACTIONS(1227), - [anon_sym_default] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_do] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_goto] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1229), - [anon_sym_PLUS_PLUS] = ACTIONS(1229), - [anon_sym_sizeof] = ACTIONS(1227), - [sym_number_literal] = ACTIONS(1229), - [anon_sym_L_SQUOTE] = ACTIONS(1229), - [anon_sym_u_SQUOTE] = ACTIONS(1229), - [anon_sym_U_SQUOTE] = ACTIONS(1229), - [anon_sym_u8_SQUOTE] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1229), - [anon_sym_L_DQUOTE] = ACTIONS(1229), - [anon_sym_u_DQUOTE] = ACTIONS(1229), - [anon_sym_U_DQUOTE] = ACTIONS(1229), - [anon_sym_u8_DQUOTE] = ACTIONS(1229), - [anon_sym_DQUOTE] = ACTIONS(1229), - [sym_true] = ACTIONS(1227), - [sym_false] = ACTIONS(1227), - [sym_null] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1229), - [anon_sym_ATimport] = ACTIONS(1229), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1227), - [anon_sym_ATcompatibility_alias] = ACTIONS(1229), - [anon_sym_ATprotocol] = ACTIONS(1229), - [anon_sym_ATclass] = ACTIONS(1229), - [anon_sym_ATinterface] = ACTIONS(1229), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1227), - [sym_method_attribute_specifier] = ACTIONS(1227), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1227), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1227), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1227), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1227), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1227), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1227), - [anon_sym_NS_AVAILABLE] = ACTIONS(1227), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1227), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1227), - [anon_sym_API_AVAILABLE] = ACTIONS(1227), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1227), - [anon_sym_API_DEPRECATED] = ACTIONS(1227), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1227), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1227), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1227), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1227), - [anon_sym___deprecated_msg] = ACTIONS(1227), - [anon_sym___deprecated_enum_msg] = ACTIONS(1227), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1227), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1227), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1227), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1227), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1227), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1227), - [anon_sym_ATimplementation] = ACTIONS(1229), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym___typeof] = ACTIONS(1227), - [anon_sym___typeof__] = ACTIONS(1227), - [sym_self] = ACTIONS(1227), - [sym_super] = ACTIONS(1227), - [sym_nil] = ACTIONS(1227), - [sym_id] = ACTIONS(1227), - [sym_instancetype] = ACTIONS(1227), - [sym_Class] = ACTIONS(1227), - [sym_SEL] = ACTIONS(1227), - [sym_IMP] = ACTIONS(1227), - [sym_BOOL] = ACTIONS(1227), - [sym_auto] = ACTIONS(1227), - [anon_sym_ATautoreleasepool] = ACTIONS(1229), - [anon_sym_ATsynchronized] = ACTIONS(1229), - [anon_sym_ATtry] = ACTIONS(1229), - [anon_sym_ATcatch] = ACTIONS(1229), - [anon_sym_ATfinally] = ACTIONS(1229), - [anon_sym_ATthrow] = ACTIONS(1229), - [anon_sym_ATselector] = ACTIONS(1229), - [anon_sym_ATencode] = ACTIONS(1229), - [anon_sym_AT] = ACTIONS(1227), - [sym_YES] = ACTIONS(1227), - [sym_NO] = ACTIONS(1227), - [anon_sym___builtin_available] = ACTIONS(1227), - [anon_sym_ATavailable] = ACTIONS(1229), - [anon_sym_va_arg] = ACTIONS(1227), + [anon_sym_POUNDimport] = ACTIONS(1231), + [anon_sym_ATimport] = ACTIONS(1231), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1233), + [anon_sym_ATcompatibility_alias] = ACTIONS(1231), + [anon_sym_ATprotocol] = ACTIONS(1231), + [anon_sym_ATclass] = ACTIONS(1231), + [anon_sym_ATinterface] = ACTIONS(1231), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1233), + [sym_method_attribute_specifier] = ACTIONS(1233), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1233), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1233), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1233), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1233), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1233), + [anon_sym_NS_AVAILABLE] = ACTIONS(1233), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1233), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_API_AVAILABLE] = ACTIONS(1233), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_API_DEPRECATED] = ACTIONS(1233), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1233), + [anon_sym___deprecated_msg] = ACTIONS(1233), + [anon_sym___deprecated_enum_msg] = ACTIONS(1233), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1233), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1233), + [anon_sym_ATimplementation] = ACTIONS(1231), + [anon_sym_NS_ENUM] = ACTIONS(1233), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1233), + [anon_sym_NS_OPTIONS] = ACTIONS(1233), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym___typeof] = ACTIONS(1233), + [anon_sym___typeof__] = ACTIONS(1233), + [sym_self] = ACTIONS(1233), + [sym_super] = ACTIONS(1233), + [sym_nil] = ACTIONS(1233), + [sym_id] = ACTIONS(1233), + [sym_instancetype] = ACTIONS(1233), + [sym_Class] = ACTIONS(1233), + [sym_SEL] = ACTIONS(1233), + [sym_IMP] = ACTIONS(1233), + [sym_BOOL] = ACTIONS(1233), + [sym_auto] = ACTIONS(1233), + [anon_sym_ATautoreleasepool] = ACTIONS(1231), + [anon_sym_ATsynchronized] = ACTIONS(1231), + [anon_sym_ATtry] = ACTIONS(1231), + [anon_sym_ATcatch] = ACTIONS(1231), + [anon_sym_ATfinally] = ACTIONS(1231), + [anon_sym_ATthrow] = ACTIONS(1231), + [anon_sym_ATselector] = ACTIONS(1231), + [anon_sym_ATencode] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1233), + [sym_YES] = ACTIONS(1233), + [sym_NO] = ACTIONS(1233), + [anon_sym___builtin_available] = ACTIONS(1233), + [anon_sym_ATavailable] = ACTIONS(1231), + [anon_sym_va_arg] = ACTIONS(1233), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -40647,25 +40145,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [86] = { + [83] = { + [ts_builtin_sym_end] = ACTIONS(1247), + [sym_identifier] = ACTIONS(1249), + [aux_sym_preproc_include_token1] = ACTIONS(1247), + [aux_sym_preproc_def_token1] = ACTIONS(1247), + [anon_sym_RPAREN] = ACTIONS(1247), + [aux_sym_preproc_if_token1] = ACTIONS(1249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1249), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1249), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1247), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_typedef] = ACTIONS(1249), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym___attribute] = ACTIONS(1249), + [anon_sym___attribute__] = ACTIONS(1249), + [anon_sym___declspec] = ACTIONS(1249), + [anon_sym___cdecl] = ACTIONS(1249), + [anon_sym___clrcall] = ACTIONS(1249), + [anon_sym___stdcall] = ACTIONS(1249), + [anon_sym___fastcall] = ACTIONS(1249), + [anon_sym___thiscall] = ACTIONS(1249), + [anon_sym___vectorcall] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1247), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_LBRACK] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1249), + [anon_sym_auto] = ACTIONS(1249), + [anon_sym_register] = ACTIONS(1249), + [anon_sym_inline] = ACTIONS(1249), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_volatile] = ACTIONS(1249), + [anon_sym_restrict] = ACTIONS(1249), + [anon_sym__Atomic] = ACTIONS(1249), + [anon_sym_in] = ACTIONS(1249), + [anon_sym_out] = ACTIONS(1249), + [anon_sym_inout] = ACTIONS(1249), + [anon_sym_bycopy] = ACTIONS(1249), + [anon_sym_byref] = ACTIONS(1249), + [anon_sym_oneway] = ACTIONS(1249), + [anon_sym__Nullable] = ACTIONS(1249), + [anon_sym__Nonnull] = ACTIONS(1249), + [anon_sym__Nullable_result] = ACTIONS(1249), + [anon_sym__Null_unspecified] = ACTIONS(1249), + [anon_sym___autoreleasing] = ACTIONS(1249), + [anon_sym___nullable] = ACTIONS(1249), + [anon_sym___nonnull] = ACTIONS(1249), + [anon_sym___strong] = ACTIONS(1249), + [anon_sym___weak] = ACTIONS(1249), + [anon_sym___bridge] = ACTIONS(1249), + [anon_sym___bridge_transfer] = ACTIONS(1249), + [anon_sym___bridge_retained] = ACTIONS(1249), + [anon_sym___unsafe_unretained] = ACTIONS(1249), + [anon_sym___block] = ACTIONS(1249), + [anon_sym___kindof] = ACTIONS(1249), + [anon_sym___unused] = ACTIONS(1249), + [anon_sym__Complex] = ACTIONS(1249), + [anon_sym___complex] = ACTIONS(1249), + [anon_sym_IBOutlet] = ACTIONS(1249), + [anon_sym_IBInspectable] = ACTIONS(1249), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1249), + [anon_sym_signed] = ACTIONS(1249), + [anon_sym_unsigned] = ACTIONS(1249), + [anon_sym_long] = ACTIONS(1249), + [anon_sym_short] = ACTIONS(1249), + [sym_primitive_type] = ACTIONS(1249), + [anon_sym_enum] = ACTIONS(1249), + [anon_sym_struct] = ACTIONS(1249), + [anon_sym_union] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1249), + [anon_sym_else] = ACTIONS(1249), + [anon_sym_switch] = ACTIONS(1249), + [anon_sym_case] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(1249), + [anon_sym_for] = ACTIONS(1249), + [anon_sym_return] = ACTIONS(1249), + [anon_sym_break] = ACTIONS(1249), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_goto] = ACTIONS(1249), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_sizeof] = ACTIONS(1249), + [sym_number_literal] = ACTIONS(1247), + [anon_sym_L_SQUOTE] = ACTIONS(1247), + [anon_sym_u_SQUOTE] = ACTIONS(1247), + [anon_sym_U_SQUOTE] = ACTIONS(1247), + [anon_sym_u8_SQUOTE] = ACTIONS(1247), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_L_DQUOTE] = ACTIONS(1247), + [anon_sym_u_DQUOTE] = ACTIONS(1247), + [anon_sym_U_DQUOTE] = ACTIONS(1247), + [anon_sym_u8_DQUOTE] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1247), + [anon_sym_ATimport] = ACTIONS(1247), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1249), + [anon_sym_ATcompatibility_alias] = ACTIONS(1247), + [anon_sym_ATprotocol] = ACTIONS(1247), + [anon_sym_ATclass] = ACTIONS(1247), + [anon_sym_ATinterface] = ACTIONS(1247), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1249), + [sym_method_attribute_specifier] = ACTIONS(1249), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1249), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1249), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1249), + [anon_sym_NS_AVAILABLE] = ACTIONS(1249), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1249), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1249), + [anon_sym_API_AVAILABLE] = ACTIONS(1249), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1249), + [anon_sym_API_DEPRECATED] = ACTIONS(1249), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1249), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1249), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1249), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1249), + [anon_sym___deprecated_msg] = ACTIONS(1249), + [anon_sym___deprecated_enum_msg] = ACTIONS(1249), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1249), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1249), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1249), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1249), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1249), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1249), + [anon_sym_ATimplementation] = ACTIONS(1247), + [anon_sym_NS_ENUM] = ACTIONS(1249), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1249), + [anon_sym_NS_OPTIONS] = ACTIONS(1249), + [anon_sym_typeof] = ACTIONS(1249), + [anon_sym___typeof] = ACTIONS(1249), + [anon_sym___typeof__] = ACTIONS(1249), + [sym_self] = ACTIONS(1249), + [sym_super] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [sym_id] = ACTIONS(1249), + [sym_instancetype] = ACTIONS(1249), + [sym_Class] = ACTIONS(1249), + [sym_SEL] = ACTIONS(1249), + [sym_IMP] = ACTIONS(1249), + [sym_BOOL] = ACTIONS(1249), + [sym_auto] = ACTIONS(1249), + [anon_sym_ATautoreleasepool] = ACTIONS(1247), + [anon_sym_ATsynchronized] = ACTIONS(1247), + [anon_sym_ATtry] = ACTIONS(1247), + [anon_sym_ATcatch] = ACTIONS(1247), + [anon_sym_ATfinally] = ACTIONS(1247), + [anon_sym_ATthrow] = ACTIONS(1247), + [anon_sym_ATselector] = ACTIONS(1247), + [anon_sym_ATencode] = ACTIONS(1247), + [anon_sym_AT] = ACTIONS(1249), + [sym_YES] = ACTIONS(1249), + [sym_NO] = ACTIONS(1249), + [anon_sym___builtin_available] = ACTIONS(1249), + [anon_sym_ATavailable] = ACTIONS(1247), + [anon_sym_va_arg] = ACTIONS(1249), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [84] = { + [ts_builtin_sym_end] = ACTIONS(1251), + [sym_identifier] = ACTIONS(1254), + [aux_sym_preproc_include_token1] = ACTIONS(1251), + [aux_sym_preproc_def_token1] = ACTIONS(1251), + [anon_sym_RPAREN] = ACTIONS(1251), + [aux_sym_preproc_if_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), + [anon_sym_LPAREN2] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1251), + [anon_sym_TILDE] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_typedef] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym___attribute] = ACTIONS(1254), + [anon_sym___attribute__] = ACTIONS(1254), + [anon_sym___declspec] = ACTIONS(1254), + [anon_sym___cdecl] = ACTIONS(1254), + [anon_sym___clrcall] = ACTIONS(1254), + [anon_sym___stdcall] = ACTIONS(1254), + [anon_sym___fastcall] = ACTIONS(1254), + [anon_sym___thiscall] = ACTIONS(1254), + [anon_sym___vectorcall] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_auto] = ACTIONS(1254), + [anon_sym_register] = ACTIONS(1254), + [anon_sym_inline] = ACTIONS(1254), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_volatile] = ACTIONS(1254), + [anon_sym_restrict] = ACTIONS(1254), + [anon_sym__Atomic] = ACTIONS(1254), + [anon_sym_in] = ACTIONS(1254), + [anon_sym_out] = ACTIONS(1254), + [anon_sym_inout] = ACTIONS(1254), + [anon_sym_bycopy] = ACTIONS(1254), + [anon_sym_byref] = ACTIONS(1254), + [anon_sym_oneway] = ACTIONS(1254), + [anon_sym__Nullable] = ACTIONS(1254), + [anon_sym__Nonnull] = ACTIONS(1254), + [anon_sym__Nullable_result] = ACTIONS(1254), + [anon_sym__Null_unspecified] = ACTIONS(1254), + [anon_sym___autoreleasing] = ACTIONS(1254), + [anon_sym___nullable] = ACTIONS(1254), + [anon_sym___nonnull] = ACTIONS(1254), + [anon_sym___strong] = ACTIONS(1254), + [anon_sym___weak] = ACTIONS(1254), + [anon_sym___bridge] = ACTIONS(1254), + [anon_sym___bridge_transfer] = ACTIONS(1254), + [anon_sym___bridge_retained] = ACTIONS(1254), + [anon_sym___unsafe_unretained] = ACTIONS(1254), + [anon_sym___block] = ACTIONS(1254), + [anon_sym___kindof] = ACTIONS(1254), + [anon_sym___unused] = ACTIONS(1254), + [anon_sym__Complex] = ACTIONS(1254), + [anon_sym___complex] = ACTIONS(1254), + [anon_sym_IBOutlet] = ACTIONS(1254), + [anon_sym_IBInspectable] = ACTIONS(1254), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1254), + [anon_sym_unsigned] = ACTIONS(1254), + [anon_sym_long] = ACTIONS(1254), + [anon_sym_short] = ACTIONS(1254), + [sym_primitive_type] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1254), + [anon_sym_switch] = ACTIONS(1254), + [anon_sym_case] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_do] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_goto] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1251), + [anon_sym_sizeof] = ACTIONS(1254), + [sym_number_literal] = ACTIONS(1251), + [anon_sym_L_SQUOTE] = ACTIONS(1251), + [anon_sym_u_SQUOTE] = ACTIONS(1251), + [anon_sym_U_SQUOTE] = ACTIONS(1251), + [anon_sym_u8_SQUOTE] = ACTIONS(1251), + [anon_sym_SQUOTE] = ACTIONS(1251), + [anon_sym_L_DQUOTE] = ACTIONS(1251), + [anon_sym_u_DQUOTE] = ACTIONS(1251), + [anon_sym_U_DQUOTE] = ACTIONS(1251), + [anon_sym_u8_DQUOTE] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_true] = ACTIONS(1254), + [sym_false] = ACTIONS(1254), + [sym_null] = ACTIONS(1254), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1251), + [anon_sym_ATimport] = ACTIONS(1251), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1254), + [anon_sym_ATcompatibility_alias] = ACTIONS(1251), + [anon_sym_ATprotocol] = ACTIONS(1251), + [anon_sym_ATclass] = ACTIONS(1251), + [anon_sym_ATinterface] = ACTIONS(1251), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1254), + [sym_method_attribute_specifier] = ACTIONS(1254), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1254), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1254), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1254), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1254), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1254), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1254), + [anon_sym_NS_AVAILABLE] = ACTIONS(1254), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1254), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1254), + [anon_sym_API_AVAILABLE] = ACTIONS(1254), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1254), + [anon_sym_API_DEPRECATED] = ACTIONS(1254), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1254), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1254), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1254), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1254), + [anon_sym___deprecated_msg] = ACTIONS(1254), + [anon_sym___deprecated_enum_msg] = ACTIONS(1254), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1254), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1254), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1254), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1254), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1254), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1254), + [anon_sym_ATimplementation] = ACTIONS(1251), + [anon_sym_NS_ENUM] = ACTIONS(1254), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1254), + [anon_sym_NS_OPTIONS] = ACTIONS(1254), + [anon_sym_typeof] = ACTIONS(1254), + [anon_sym___typeof] = ACTIONS(1254), + [anon_sym___typeof__] = ACTIONS(1254), + [sym_self] = ACTIONS(1254), + [sym_super] = ACTIONS(1254), + [sym_nil] = ACTIONS(1254), + [sym_id] = ACTIONS(1254), + [sym_instancetype] = ACTIONS(1254), + [sym_Class] = ACTIONS(1254), + [sym_SEL] = ACTIONS(1254), + [sym_IMP] = ACTIONS(1254), + [sym_BOOL] = ACTIONS(1254), + [sym_auto] = ACTIONS(1254), + [anon_sym_ATautoreleasepool] = ACTIONS(1251), + [anon_sym_ATsynchronized] = ACTIONS(1251), + [anon_sym_ATtry] = ACTIONS(1251), + [anon_sym_ATcatch] = ACTIONS(1251), + [anon_sym_ATfinally] = ACTIONS(1251), + [anon_sym_ATthrow] = ACTIONS(1251), + [anon_sym_ATselector] = ACTIONS(1251), + [anon_sym_ATencode] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(1254), + [sym_YES] = ACTIONS(1254), + [sym_NO] = ACTIONS(1254), + [anon_sym___builtin_available] = ACTIONS(1254), + [anon_sym_ATavailable] = ACTIONS(1251), + [anon_sym_va_arg] = ACTIONS(1254), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [85] = { + [ts_builtin_sym_end] = ACTIONS(1257), [sym_identifier] = ACTIONS(1259), - [aux_sym_preproc_include_token1] = ACTIONS(1261), - [aux_sym_preproc_def_token1] = ACTIONS(1261), + [aux_sym_preproc_include_token1] = ACTIONS(1257), + [aux_sym_preproc_def_token1] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), [aux_sym_preproc_if_token1] = ACTIONS(1259), - [aux_sym_preproc_if_token2] = ACTIONS(1259), [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), - [aux_sym_preproc_else_token1] = ACTIONS(1259), - [aux_sym_preproc_elif_token1] = ACTIONS(1259), - [anon_sym_LPAREN2] = ACTIONS(1261), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), [anon_sym_DASH] = ACTIONS(1259), [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), [anon_sym_typedef] = ACTIONS(1259), [anon_sym_extern] = ACTIONS(1259), [anon_sym___attribute] = ACTIONS(1259), @@ -40677,8 +40528,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1259), [anon_sym___thiscall] = ACTIONS(1259), [anon_sym___vectorcall] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), [anon_sym_static] = ACTIONS(1259), [anon_sym_auto] = ACTIONS(1259), [anon_sym_register] = ACTIONS(1259), @@ -40721,9 +40573,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1259), [sym_primitive_type] = ACTIONS(1259), [anon_sym_enum] = ACTIONS(1259), - [anon_sym_NS_ENUM] = ACTIONS(1259), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1259), - [anon_sym_NS_OPTIONS] = ACTIONS(1259), [anon_sym_struct] = ACTIONS(1259), [anon_sym_union] = ACTIONS(1259), [anon_sym_if] = ACTIONS(1259), @@ -40738,31 +40587,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1259), [anon_sym_continue] = ACTIONS(1259), [anon_sym_goto] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), [anon_sym_sizeof] = ACTIONS(1259), - [sym_number_literal] = ACTIONS(1261), - [anon_sym_L_SQUOTE] = ACTIONS(1261), - [anon_sym_u_SQUOTE] = ACTIONS(1261), - [anon_sym_U_SQUOTE] = ACTIONS(1261), - [anon_sym_u8_SQUOTE] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1261), - [anon_sym_L_DQUOTE] = ACTIONS(1261), - [anon_sym_u_DQUOTE] = ACTIONS(1261), - [anon_sym_U_DQUOTE] = ACTIONS(1261), - [anon_sym_u8_DQUOTE] = ACTIONS(1261), - [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_number_literal] = ACTIONS(1257), + [anon_sym_L_SQUOTE] = ACTIONS(1257), + [anon_sym_u_SQUOTE] = ACTIONS(1257), + [anon_sym_U_SQUOTE] = ACTIONS(1257), + [anon_sym_u8_SQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_L_DQUOTE] = ACTIONS(1257), + [anon_sym_u_DQUOTE] = ACTIONS(1257), + [anon_sym_U_DQUOTE] = ACTIONS(1257), + [anon_sym_u8_DQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), [sym_true] = ACTIONS(1259), [sym_false] = ACTIONS(1259), [sym_null] = ACTIONS(1259), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1261), - [anon_sym_ATimport] = ACTIONS(1261), + [anon_sym_POUNDimport] = ACTIONS(1257), + [anon_sym_ATimport] = ACTIONS(1257), [sym__ns_assume_nonnull_declaration] = ACTIONS(1259), - [anon_sym_ATcompatibility_alias] = ACTIONS(1261), - [anon_sym_ATprotocol] = ACTIONS(1261), - [anon_sym_ATclass] = ACTIONS(1261), - [anon_sym_ATinterface] = ACTIONS(1261), + [anon_sym_ATcompatibility_alias] = ACTIONS(1257), + [anon_sym_ATprotocol] = ACTIONS(1257), + [anon_sym_ATclass] = ACTIONS(1257), + [anon_sym_ATinterface] = ACTIONS(1257), [sym_class_interface_attribute_sepcifier] = ACTIONS(1259), [sym_method_attribute_specifier] = ACTIONS(1259), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1259), @@ -40789,7 +40638,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1259), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1259), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1259), - [anon_sym_ATimplementation] = ACTIONS(1261), + [anon_sym_ATimplementation] = ACTIONS(1257), + [anon_sym_NS_ENUM] = ACTIONS(1259), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1259), + [anon_sym_NS_OPTIONS] = ACTIONS(1259), [anon_sym_typeof] = ACTIONS(1259), [anon_sym___typeof] = ACTIONS(1259), [anon_sym___typeof__] = ACTIONS(1259), @@ -40803,46 +40655,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1259), [sym_BOOL] = ACTIONS(1259), [sym_auto] = ACTIONS(1259), - [anon_sym_ATautoreleasepool] = ACTIONS(1261), - [anon_sym_ATsynchronized] = ACTIONS(1261), - [anon_sym_ATtry] = ACTIONS(1261), - [anon_sym_ATcatch] = ACTIONS(1261), - [anon_sym_ATfinally] = ACTIONS(1261), - [anon_sym_ATthrow] = ACTIONS(1261), - [anon_sym_ATselector] = ACTIONS(1261), - [anon_sym_ATencode] = ACTIONS(1261), + [anon_sym_ATautoreleasepool] = ACTIONS(1257), + [anon_sym_ATsynchronized] = ACTIONS(1257), + [anon_sym_ATtry] = ACTIONS(1257), + [anon_sym_ATcatch] = ACTIONS(1257), + [anon_sym_ATfinally] = ACTIONS(1257), + [anon_sym_ATthrow] = ACTIONS(1257), + [anon_sym_ATselector] = ACTIONS(1257), + [anon_sym_ATencode] = ACTIONS(1257), [anon_sym_AT] = ACTIONS(1259), [sym_YES] = ACTIONS(1259), [sym_NO] = ACTIONS(1259), [anon_sym___builtin_available] = ACTIONS(1259), - [anon_sym_ATavailable] = ACTIONS(1261), + [anon_sym_ATavailable] = ACTIONS(1257), [anon_sym_va_arg] = ACTIONS(1259), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [87] = { + [86] = { + [ts_builtin_sym_end] = ACTIONS(1261), [sym_identifier] = ACTIONS(1263), - [aux_sym_preproc_include_token1] = ACTIONS(1265), - [aux_sym_preproc_def_token1] = ACTIONS(1265), + [aux_sym_preproc_include_token1] = ACTIONS(1261), + [aux_sym_preproc_def_token1] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1261), [aux_sym_preproc_if_token1] = ACTIONS(1263), - [aux_sym_preproc_if_token2] = ACTIONS(1263), [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), - [aux_sym_preproc_else_token1] = ACTIONS(1263), - [aux_sym_preproc_elif_token1] = ACTIONS(1263), - [anon_sym_LPAREN2] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), [anon_sym_DASH] = ACTIONS(1263), [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), [anon_sym_typedef] = ACTIONS(1263), [anon_sym_extern] = ACTIONS(1263), [anon_sym___attribute] = ACTIONS(1263), @@ -40854,8 +40705,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1263), [anon_sym___thiscall] = ACTIONS(1263), [anon_sym___vectorcall] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), [anon_sym_static] = ACTIONS(1263), [anon_sym_auto] = ACTIONS(1263), [anon_sym_register] = ACTIONS(1263), @@ -40898,13 +40750,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1263), [sym_primitive_type] = ACTIONS(1263), [anon_sym_enum] = ACTIONS(1263), - [anon_sym_NS_ENUM] = ACTIONS(1263), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1263), - [anon_sym_NS_OPTIONS] = ACTIONS(1263), [anon_sym_struct] = ACTIONS(1263), [anon_sym_union] = ACTIONS(1263), [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1263), [anon_sym_switch] = ACTIONS(1263), [anon_sym_case] = ACTIONS(1263), [anon_sym_default] = ACTIONS(1263), @@ -40915,31 +40764,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1263), [anon_sym_continue] = ACTIONS(1263), [anon_sym_goto] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), [anon_sym_sizeof] = ACTIONS(1263), - [sym_number_literal] = ACTIONS(1265), - [anon_sym_L_SQUOTE] = ACTIONS(1265), - [anon_sym_u_SQUOTE] = ACTIONS(1265), - [anon_sym_U_SQUOTE] = ACTIONS(1265), - [anon_sym_u8_SQUOTE] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1265), - [anon_sym_L_DQUOTE] = ACTIONS(1265), - [anon_sym_u_DQUOTE] = ACTIONS(1265), - [anon_sym_U_DQUOTE] = ACTIONS(1265), - [anon_sym_u8_DQUOTE] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_L_SQUOTE] = ACTIONS(1261), + [anon_sym_u_SQUOTE] = ACTIONS(1261), + [anon_sym_U_SQUOTE] = ACTIONS(1261), + [anon_sym_u8_SQUOTE] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_L_DQUOTE] = ACTIONS(1261), + [anon_sym_u_DQUOTE] = ACTIONS(1261), + [anon_sym_U_DQUOTE] = ACTIONS(1261), + [anon_sym_u8_DQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), [sym_true] = ACTIONS(1263), [sym_false] = ACTIONS(1263), [sym_null] = ACTIONS(1263), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1265), - [anon_sym_ATimport] = ACTIONS(1265), + [anon_sym_POUNDimport] = ACTIONS(1261), + [anon_sym_ATimport] = ACTIONS(1261), [sym__ns_assume_nonnull_declaration] = ACTIONS(1263), - [anon_sym_ATcompatibility_alias] = ACTIONS(1265), - [anon_sym_ATprotocol] = ACTIONS(1265), - [anon_sym_ATclass] = ACTIONS(1265), - [anon_sym_ATinterface] = ACTIONS(1265), + [anon_sym_ATcompatibility_alias] = ACTIONS(1261), + [anon_sym_ATprotocol] = ACTIONS(1261), + [anon_sym_ATclass] = ACTIONS(1261), + [anon_sym_ATinterface] = ACTIONS(1261), [sym_class_interface_attribute_sepcifier] = ACTIONS(1263), [sym_method_attribute_specifier] = ACTIONS(1263), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1263), @@ -40966,7 +40815,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1263), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1263), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1263), - [anon_sym_ATimplementation] = ACTIONS(1265), + [anon_sym_ATimplementation] = ACTIONS(1261), + [anon_sym_NS_ENUM] = ACTIONS(1263), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1263), + [anon_sym_NS_OPTIONS] = ACTIONS(1263), [anon_sym_typeof] = ACTIONS(1263), [anon_sym___typeof] = ACTIONS(1263), [anon_sym___typeof__] = ACTIONS(1263), @@ -40980,6 +40832,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1263), [sym_BOOL] = ACTIONS(1263), [sym_auto] = ACTIONS(1263), + [anon_sym_ATautoreleasepool] = ACTIONS(1261), + [anon_sym_ATsynchronized] = ACTIONS(1261), + [anon_sym_ATtry] = ACTIONS(1261), + [anon_sym_ATcatch] = ACTIONS(1261), + [anon_sym_ATfinally] = ACTIONS(1261), + [anon_sym_ATthrow] = ACTIONS(1261), + [anon_sym_ATselector] = ACTIONS(1261), + [anon_sym_ATencode] = ACTIONS(1261), + [anon_sym_AT] = ACTIONS(1263), + [sym_YES] = ACTIONS(1263), + [sym_NO] = ACTIONS(1263), + [anon_sym___builtin_available] = ACTIONS(1263), + [anon_sym_ATavailable] = ACTIONS(1261), + [anon_sym_va_arg] = ACTIONS(1263), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [87] = { + [ts_builtin_sym_end] = ACTIONS(1265), + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_include_token1] = ACTIONS(1265), + [aux_sym_preproc_def_token1] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1265), + [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym_in] = ACTIONS(1267), + [anon_sym_out] = ACTIONS(1267), + [anon_sym_inout] = ACTIONS(1267), + [anon_sym_bycopy] = ACTIONS(1267), + [anon_sym_byref] = ACTIONS(1267), + [anon_sym_oneway] = ACTIONS(1267), + [anon_sym__Nullable] = ACTIONS(1267), + [anon_sym__Nonnull] = ACTIONS(1267), + [anon_sym__Nullable_result] = ACTIONS(1267), + [anon_sym__Null_unspecified] = ACTIONS(1267), + [anon_sym___autoreleasing] = ACTIONS(1267), + [anon_sym___nullable] = ACTIONS(1267), + [anon_sym___nonnull] = ACTIONS(1267), + [anon_sym___strong] = ACTIONS(1267), + [anon_sym___weak] = ACTIONS(1267), + [anon_sym___bridge] = ACTIONS(1267), + [anon_sym___bridge_transfer] = ACTIONS(1267), + [anon_sym___bridge_retained] = ACTIONS(1267), + [anon_sym___unsafe_unretained] = ACTIONS(1267), + [anon_sym___block] = ACTIONS(1267), + [anon_sym___kindof] = ACTIONS(1267), + [anon_sym___unused] = ACTIONS(1267), + [anon_sym__Complex] = ACTIONS(1267), + [anon_sym___complex] = ACTIONS(1267), + [anon_sym_IBOutlet] = ACTIONS(1267), + [anon_sym_IBInspectable] = ACTIONS(1267), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1267), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_sizeof] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1265), + [anon_sym_L_SQUOTE] = ACTIONS(1265), + [anon_sym_u_SQUOTE] = ACTIONS(1265), + [anon_sym_U_SQUOTE] = ACTIONS(1265), + [anon_sym_u8_SQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_L_DQUOTE] = ACTIONS(1265), + [anon_sym_u_DQUOTE] = ACTIONS(1265), + [anon_sym_U_DQUOTE] = ACTIONS(1265), + [anon_sym_u8_DQUOTE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [sym_null] = ACTIONS(1267), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1265), + [anon_sym_ATimport] = ACTIONS(1265), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1267), + [anon_sym_ATcompatibility_alias] = ACTIONS(1265), + [anon_sym_ATprotocol] = ACTIONS(1265), + [anon_sym_ATclass] = ACTIONS(1265), + [anon_sym_ATinterface] = ACTIONS(1265), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1267), + [sym_method_attribute_specifier] = ACTIONS(1267), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1267), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1267), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1267), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1267), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1267), + [anon_sym_NS_AVAILABLE] = ACTIONS(1267), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1267), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_API_AVAILABLE] = ACTIONS(1267), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_API_DEPRECATED] = ACTIONS(1267), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1267), + [anon_sym___deprecated_msg] = ACTIONS(1267), + [anon_sym___deprecated_enum_msg] = ACTIONS(1267), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1267), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1267), + [anon_sym_ATimplementation] = ACTIONS(1265), + [anon_sym_NS_ENUM] = ACTIONS(1267), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1267), + [anon_sym_NS_OPTIONS] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1267), + [anon_sym___typeof] = ACTIONS(1267), + [anon_sym___typeof__] = ACTIONS(1267), + [sym_self] = ACTIONS(1267), + [sym_super] = ACTIONS(1267), + [sym_nil] = ACTIONS(1267), + [sym_id] = ACTIONS(1267), + [sym_instancetype] = ACTIONS(1267), + [sym_Class] = ACTIONS(1267), + [sym_SEL] = ACTIONS(1267), + [sym_IMP] = ACTIONS(1267), + [sym_BOOL] = ACTIONS(1267), + [sym_auto] = ACTIONS(1267), [anon_sym_ATautoreleasepool] = ACTIONS(1265), [anon_sym_ATsynchronized] = ACTIONS(1265), [anon_sym_ATtry] = ACTIONS(1265), @@ -40988,1100 +41017,922 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATthrow] = ACTIONS(1265), [anon_sym_ATselector] = ACTIONS(1265), [anon_sym_ATencode] = ACTIONS(1265), - [anon_sym_AT] = ACTIONS(1263), - [sym_YES] = ACTIONS(1263), - [sym_NO] = ACTIONS(1263), - [anon_sym___builtin_available] = ACTIONS(1263), + [anon_sym_AT] = ACTIONS(1267), + [sym_YES] = ACTIONS(1267), + [sym_NO] = ACTIONS(1267), + [anon_sym___builtin_available] = ACTIONS(1267), [anon_sym_ATavailable] = ACTIONS(1265), - [anon_sym_va_arg] = ACTIONS(1263), + [anon_sym_va_arg] = ACTIONS(1267), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, [88] = { - [sym_identifier] = ACTIONS(1269), - [aux_sym_preproc_include_token1] = ACTIONS(1271), - [aux_sym_preproc_def_token1] = ACTIONS(1271), - [aux_sym_preproc_if_token1] = ACTIONS(1269), - [aux_sym_preproc_if_token2] = ACTIONS(1269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1269), - [aux_sym_preproc_else_token1] = ACTIONS(1269), - [aux_sym_preproc_elif_token1] = ACTIONS(1269), - [anon_sym_LPAREN2] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1271), - [anon_sym_TILDE] = ACTIONS(1271), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_CARET] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_typedef] = ACTIONS(1269), - [anon_sym_extern] = ACTIONS(1269), - [anon_sym___attribute] = ACTIONS(1269), - [anon_sym___attribute__] = ACTIONS(1269), - [anon_sym___declspec] = ACTIONS(1269), - [anon_sym___cdecl] = ACTIONS(1269), - [anon_sym___clrcall] = ACTIONS(1269), - [anon_sym___stdcall] = ACTIONS(1269), - [anon_sym___fastcall] = ACTIONS(1269), - [anon_sym___thiscall] = ACTIONS(1269), - [anon_sym___vectorcall] = ACTIONS(1269), - [anon_sym_LBRACE] = ACTIONS(1271), - [anon_sym_LBRACK] = ACTIONS(1271), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_auto] = ACTIONS(1269), - [anon_sym_register] = ACTIONS(1269), - [anon_sym_inline] = ACTIONS(1269), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1269), - [anon_sym_const] = ACTIONS(1269), - [anon_sym_volatile] = ACTIONS(1269), - [anon_sym_restrict] = ACTIONS(1269), - [anon_sym__Atomic] = ACTIONS(1269), - [anon_sym_in] = ACTIONS(1269), - [anon_sym_out] = ACTIONS(1269), - [anon_sym_inout] = ACTIONS(1269), - [anon_sym_bycopy] = ACTIONS(1269), - [anon_sym_byref] = ACTIONS(1269), - [anon_sym_oneway] = ACTIONS(1269), - [anon_sym__Nullable] = ACTIONS(1269), - [anon_sym__Nonnull] = ACTIONS(1269), - [anon_sym__Nullable_result] = ACTIONS(1269), - [anon_sym__Null_unspecified] = ACTIONS(1269), - [anon_sym___autoreleasing] = ACTIONS(1269), - [anon_sym___nullable] = ACTIONS(1269), - [anon_sym___nonnull] = ACTIONS(1269), - [anon_sym___strong] = ACTIONS(1269), - [anon_sym___weak] = ACTIONS(1269), - [anon_sym___bridge] = ACTIONS(1269), - [anon_sym___bridge_transfer] = ACTIONS(1269), - [anon_sym___bridge_retained] = ACTIONS(1269), - [anon_sym___unsafe_unretained] = ACTIONS(1269), - [anon_sym___block] = ACTIONS(1269), - [anon_sym___kindof] = ACTIONS(1269), - [anon_sym___unused] = ACTIONS(1269), - [anon_sym__Complex] = ACTIONS(1269), - [anon_sym___complex] = ACTIONS(1269), - [anon_sym_IBOutlet] = ACTIONS(1269), - [anon_sym_IBInspectable] = ACTIONS(1269), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1269), - [anon_sym_signed] = ACTIONS(1269), - [anon_sym_unsigned] = ACTIONS(1269), - [anon_sym_long] = ACTIONS(1269), - [anon_sym_short] = ACTIONS(1269), - [sym_primitive_type] = ACTIONS(1269), - [anon_sym_enum] = ACTIONS(1269), - [anon_sym_NS_ENUM] = ACTIONS(1269), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1269), - [anon_sym_NS_OPTIONS] = ACTIONS(1269), - [anon_sym_struct] = ACTIONS(1269), - [anon_sym_union] = ACTIONS(1269), - [anon_sym_if] = ACTIONS(1269), - [anon_sym_else] = ACTIONS(1269), - [anon_sym_switch] = ACTIONS(1269), - [anon_sym_case] = ACTIONS(1269), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_while] = ACTIONS(1269), - [anon_sym_do] = ACTIONS(1269), - [anon_sym_for] = ACTIONS(1269), - [anon_sym_return] = ACTIONS(1269), - [anon_sym_break] = ACTIONS(1269), - [anon_sym_continue] = ACTIONS(1269), - [anon_sym_goto] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_sizeof] = ACTIONS(1269), - [sym_number_literal] = ACTIONS(1271), - [anon_sym_L_SQUOTE] = ACTIONS(1271), - [anon_sym_u_SQUOTE] = ACTIONS(1271), - [anon_sym_U_SQUOTE] = ACTIONS(1271), - [anon_sym_u8_SQUOTE] = ACTIONS(1271), - [anon_sym_SQUOTE] = ACTIONS(1271), - [anon_sym_L_DQUOTE] = ACTIONS(1271), - [anon_sym_u_DQUOTE] = ACTIONS(1271), - [anon_sym_U_DQUOTE] = ACTIONS(1271), - [anon_sym_u8_DQUOTE] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1271), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_null] = ACTIONS(1269), + [ts_builtin_sym_end] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1271), + [aux_sym_preproc_include_token1] = ACTIONS(1269), + [aux_sym_preproc_def_token1] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1269), + [aux_sym_preproc_if_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_TILDE] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_typedef] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym___attribute] = ACTIONS(1271), + [anon_sym___attribute__] = ACTIONS(1271), + [anon_sym___declspec] = ACTIONS(1271), + [anon_sym___cdecl] = ACTIONS(1271), + [anon_sym___clrcall] = ACTIONS(1271), + [anon_sym___stdcall] = ACTIONS(1271), + [anon_sym___fastcall] = ACTIONS(1271), + [anon_sym___thiscall] = ACTIONS(1271), + [anon_sym___vectorcall] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_auto] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_inline] = ACTIONS(1271), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_volatile] = ACTIONS(1271), + [anon_sym_restrict] = ACTIONS(1271), + [anon_sym__Atomic] = ACTIONS(1271), + [anon_sym_in] = ACTIONS(1271), + [anon_sym_out] = ACTIONS(1271), + [anon_sym_inout] = ACTIONS(1271), + [anon_sym_bycopy] = ACTIONS(1271), + [anon_sym_byref] = ACTIONS(1271), + [anon_sym_oneway] = ACTIONS(1271), + [anon_sym__Nullable] = ACTIONS(1271), + [anon_sym__Nonnull] = ACTIONS(1271), + [anon_sym__Nullable_result] = ACTIONS(1271), + [anon_sym__Null_unspecified] = ACTIONS(1271), + [anon_sym___autoreleasing] = ACTIONS(1271), + [anon_sym___nullable] = ACTIONS(1271), + [anon_sym___nonnull] = ACTIONS(1271), + [anon_sym___strong] = ACTIONS(1271), + [anon_sym___weak] = ACTIONS(1271), + [anon_sym___bridge] = ACTIONS(1271), + [anon_sym___bridge_transfer] = ACTIONS(1271), + [anon_sym___bridge_retained] = ACTIONS(1271), + [anon_sym___unsafe_unretained] = ACTIONS(1271), + [anon_sym___block] = ACTIONS(1271), + [anon_sym___kindof] = ACTIONS(1271), + [anon_sym___unused] = ACTIONS(1271), + [anon_sym__Complex] = ACTIONS(1271), + [anon_sym___complex] = ACTIONS(1271), + [anon_sym_IBOutlet] = ACTIONS(1271), + [anon_sym_IBInspectable] = ACTIONS(1271), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1271), + [anon_sym_signed] = ACTIONS(1271), + [anon_sym_unsigned] = ACTIONS(1271), + [anon_sym_long] = ACTIONS(1271), + [anon_sym_short] = ACTIONS(1271), + [sym_primitive_type] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_else] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_goto] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(1271), + [sym_number_literal] = ACTIONS(1269), + [anon_sym_L_SQUOTE] = ACTIONS(1269), + [anon_sym_u_SQUOTE] = ACTIONS(1269), + [anon_sym_U_SQUOTE] = ACTIONS(1269), + [anon_sym_u8_SQUOTE] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1269), + [anon_sym_L_DQUOTE] = ACTIONS(1269), + [anon_sym_u_DQUOTE] = ACTIONS(1269), + [anon_sym_U_DQUOTE] = ACTIONS(1269), + [anon_sym_u8_DQUOTE] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_true] = ACTIONS(1271), + [sym_false] = ACTIONS(1271), + [sym_null] = ACTIONS(1271), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1271), - [anon_sym_ATimport] = ACTIONS(1271), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1269), - [anon_sym_ATcompatibility_alias] = ACTIONS(1271), - [anon_sym_ATprotocol] = ACTIONS(1271), - [anon_sym_ATclass] = ACTIONS(1271), - [anon_sym_ATinterface] = ACTIONS(1271), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1269), - [sym_method_attribute_specifier] = ACTIONS(1269), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1269), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1269), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1269), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1269), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1269), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1269), - [anon_sym_NS_AVAILABLE] = ACTIONS(1269), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1269), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1269), - [anon_sym_API_AVAILABLE] = ACTIONS(1269), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1269), - [anon_sym_API_DEPRECATED] = ACTIONS(1269), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1269), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1269), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1269), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1269), - [anon_sym___deprecated_msg] = ACTIONS(1269), - [anon_sym___deprecated_enum_msg] = ACTIONS(1269), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1269), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1269), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1269), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1269), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1269), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1269), - [anon_sym_ATimplementation] = ACTIONS(1271), - [anon_sym_typeof] = ACTIONS(1269), - [anon_sym___typeof] = ACTIONS(1269), - [anon_sym___typeof__] = ACTIONS(1269), - [sym_self] = ACTIONS(1269), - [sym_super] = ACTIONS(1269), - [sym_nil] = ACTIONS(1269), - [sym_id] = ACTIONS(1269), - [sym_instancetype] = ACTIONS(1269), - [sym_Class] = ACTIONS(1269), - [sym_SEL] = ACTIONS(1269), - [sym_IMP] = ACTIONS(1269), - [sym_BOOL] = ACTIONS(1269), - [sym_auto] = ACTIONS(1269), - [anon_sym_ATautoreleasepool] = ACTIONS(1271), - [anon_sym_ATsynchronized] = ACTIONS(1271), - [anon_sym_ATtry] = ACTIONS(1271), - [anon_sym_ATcatch] = ACTIONS(1271), - [anon_sym_ATfinally] = ACTIONS(1271), - [anon_sym_ATthrow] = ACTIONS(1271), - [anon_sym_ATselector] = ACTIONS(1271), - [anon_sym_ATencode] = ACTIONS(1271), - [anon_sym_AT] = ACTIONS(1269), - [sym_YES] = ACTIONS(1269), - [sym_NO] = ACTIONS(1269), - [anon_sym___builtin_available] = ACTIONS(1269), - [anon_sym_ATavailable] = ACTIONS(1271), - [anon_sym_va_arg] = ACTIONS(1269), + [anon_sym_POUNDimport] = ACTIONS(1269), + [anon_sym_ATimport] = ACTIONS(1269), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1271), + [anon_sym_ATcompatibility_alias] = ACTIONS(1269), + [anon_sym_ATprotocol] = ACTIONS(1269), + [anon_sym_ATclass] = ACTIONS(1269), + [anon_sym_ATinterface] = ACTIONS(1269), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1271), + [sym_method_attribute_specifier] = ACTIONS(1271), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1271), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1271), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1271), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1271), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1271), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1271), + [anon_sym_NS_AVAILABLE] = ACTIONS(1271), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1271), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1271), + [anon_sym_API_AVAILABLE] = ACTIONS(1271), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1271), + [anon_sym_API_DEPRECATED] = ACTIONS(1271), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1271), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1271), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1271), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1271), + [anon_sym___deprecated_msg] = ACTIONS(1271), + [anon_sym___deprecated_enum_msg] = ACTIONS(1271), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1271), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1271), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1271), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1271), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1271), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1271), + [anon_sym_ATimplementation] = ACTIONS(1269), + [anon_sym_NS_ENUM] = ACTIONS(1271), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1271), + [anon_sym_NS_OPTIONS] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1271), + [anon_sym___typeof] = ACTIONS(1271), + [anon_sym___typeof__] = ACTIONS(1271), + [sym_self] = ACTIONS(1271), + [sym_super] = ACTIONS(1271), + [sym_nil] = ACTIONS(1271), + [sym_id] = ACTIONS(1271), + [sym_instancetype] = ACTIONS(1271), + [sym_Class] = ACTIONS(1271), + [sym_SEL] = ACTIONS(1271), + [sym_IMP] = ACTIONS(1271), + [sym_BOOL] = ACTIONS(1271), + [sym_auto] = ACTIONS(1271), + [anon_sym_ATautoreleasepool] = ACTIONS(1269), + [anon_sym_ATsynchronized] = ACTIONS(1269), + [anon_sym_ATtry] = ACTIONS(1269), + [anon_sym_ATcatch] = ACTIONS(1269), + [anon_sym_ATfinally] = ACTIONS(1269), + [anon_sym_ATthrow] = ACTIONS(1269), + [anon_sym_ATselector] = ACTIONS(1269), + [anon_sym_ATencode] = ACTIONS(1269), + [anon_sym_AT] = ACTIONS(1271), + [sym_YES] = ACTIONS(1271), + [sym_NO] = ACTIONS(1271), + [anon_sym___builtin_available] = ACTIONS(1271), + [anon_sym_ATavailable] = ACTIONS(1269), + [anon_sym_va_arg] = ACTIONS(1271), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, [89] = { - [sym_identifier] = ACTIONS(1273), - [aux_sym_preproc_include_token1] = ACTIONS(1275), - [aux_sym_preproc_def_token1] = ACTIONS(1275), - [aux_sym_preproc_if_token1] = ACTIONS(1273), - [aux_sym_preproc_if_token2] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), - [aux_sym_preproc_else_token1] = ACTIONS(1273), - [aux_sym_preproc_elif_token1] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1275), - [anon_sym_TILDE] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1275), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_typedef] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym___attribute] = ACTIONS(1273), - [anon_sym___attribute__] = ACTIONS(1273), - [anon_sym___declspec] = ACTIONS(1273), - [anon_sym___cdecl] = ACTIONS(1273), - [anon_sym___clrcall] = ACTIONS(1273), - [anon_sym___stdcall] = ACTIONS(1273), - [anon_sym___fastcall] = ACTIONS(1273), - [anon_sym___thiscall] = ACTIONS(1273), - [anon_sym___vectorcall] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1275), - [anon_sym_static] = ACTIONS(1273), - [anon_sym_auto] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_inline] = ACTIONS(1273), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_volatile] = ACTIONS(1273), - [anon_sym_restrict] = ACTIONS(1273), - [anon_sym__Atomic] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), - [anon_sym_out] = ACTIONS(1273), - [anon_sym_inout] = ACTIONS(1273), - [anon_sym_bycopy] = ACTIONS(1273), - [anon_sym_byref] = ACTIONS(1273), - [anon_sym_oneway] = ACTIONS(1273), - [anon_sym__Nullable] = ACTIONS(1273), - [anon_sym__Nonnull] = ACTIONS(1273), - [anon_sym__Nullable_result] = ACTIONS(1273), - [anon_sym__Null_unspecified] = ACTIONS(1273), - [anon_sym___autoreleasing] = ACTIONS(1273), - [anon_sym___nullable] = ACTIONS(1273), - [anon_sym___nonnull] = ACTIONS(1273), - [anon_sym___strong] = ACTIONS(1273), - [anon_sym___weak] = ACTIONS(1273), - [anon_sym___bridge] = ACTIONS(1273), - [anon_sym___bridge_transfer] = ACTIONS(1273), - [anon_sym___bridge_retained] = ACTIONS(1273), - [anon_sym___unsafe_unretained] = ACTIONS(1273), - [anon_sym___block] = ACTIONS(1273), - [anon_sym___kindof] = ACTIONS(1273), - [anon_sym___unused] = ACTIONS(1273), - [anon_sym__Complex] = ACTIONS(1273), - [anon_sym___complex] = ACTIONS(1273), - [anon_sym_IBOutlet] = ACTIONS(1273), - [anon_sym_IBInspectable] = ACTIONS(1273), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1273), - [anon_sym_signed] = ACTIONS(1273), - [anon_sym_unsigned] = ACTIONS(1273), - [anon_sym_long] = ACTIONS(1273), - [anon_sym_short] = ACTIONS(1273), - [sym_primitive_type] = ACTIONS(1273), - [anon_sym_enum] = ACTIONS(1273), - [anon_sym_NS_ENUM] = ACTIONS(1273), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1273), - [anon_sym_NS_OPTIONS] = ACTIONS(1273), - [anon_sym_struct] = ACTIONS(1273), - [anon_sym_union] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_else] = ACTIONS(1273), - [anon_sym_switch] = ACTIONS(1273), - [anon_sym_case] = ACTIONS(1273), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_goto] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1273), - [sym_number_literal] = ACTIONS(1275), - [anon_sym_L_SQUOTE] = ACTIONS(1275), - [anon_sym_u_SQUOTE] = ACTIONS(1275), - [anon_sym_U_SQUOTE] = ACTIONS(1275), - [anon_sym_u8_SQUOTE] = ACTIONS(1275), - [anon_sym_SQUOTE] = ACTIONS(1275), - [anon_sym_L_DQUOTE] = ACTIONS(1275), - [anon_sym_u_DQUOTE] = ACTIONS(1275), - [anon_sym_U_DQUOTE] = ACTIONS(1275), - [anon_sym_u8_DQUOTE] = ACTIONS(1275), - [anon_sym_DQUOTE] = ACTIONS(1275), - [sym_true] = ACTIONS(1273), - [sym_false] = ACTIONS(1273), - [sym_null] = ACTIONS(1273), + [ts_builtin_sym_end] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [aux_sym_preproc_include_token1] = ACTIONS(1273), + [aux_sym_preproc_def_token1] = ACTIONS(1273), + [anon_sym_RPAREN] = ACTIONS(1273), + [aux_sym_preproc_if_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_CARET] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_typedef] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym___attribute] = ACTIONS(1275), + [anon_sym___attribute__] = ACTIONS(1275), + [anon_sym___declspec] = ACTIONS(1275), + [anon_sym___cdecl] = ACTIONS(1275), + [anon_sym___clrcall] = ACTIONS(1275), + [anon_sym___stdcall] = ACTIONS(1275), + [anon_sym___fastcall] = ACTIONS(1275), + [anon_sym___thiscall] = ACTIONS(1275), + [anon_sym___vectorcall] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_auto] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_inline] = ACTIONS(1275), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1275), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1275), + [anon_sym_in] = ACTIONS(1275), + [anon_sym_out] = ACTIONS(1275), + [anon_sym_inout] = ACTIONS(1275), + [anon_sym_bycopy] = ACTIONS(1275), + [anon_sym_byref] = ACTIONS(1275), + [anon_sym_oneway] = ACTIONS(1275), + [anon_sym__Nullable] = ACTIONS(1275), + [anon_sym__Nonnull] = ACTIONS(1275), + [anon_sym__Nullable_result] = ACTIONS(1275), + [anon_sym__Null_unspecified] = ACTIONS(1275), + [anon_sym___autoreleasing] = ACTIONS(1275), + [anon_sym___nullable] = ACTIONS(1275), + [anon_sym___nonnull] = ACTIONS(1275), + [anon_sym___strong] = ACTIONS(1275), + [anon_sym___weak] = ACTIONS(1275), + [anon_sym___bridge] = ACTIONS(1275), + [anon_sym___bridge_transfer] = ACTIONS(1275), + [anon_sym___bridge_retained] = ACTIONS(1275), + [anon_sym___unsafe_unretained] = ACTIONS(1275), + [anon_sym___block] = ACTIONS(1275), + [anon_sym___kindof] = ACTIONS(1275), + [anon_sym___unused] = ACTIONS(1275), + [anon_sym__Complex] = ACTIONS(1275), + [anon_sym___complex] = ACTIONS(1275), + [anon_sym_IBOutlet] = ACTIONS(1275), + [anon_sym_IBInspectable] = ACTIONS(1275), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1275), + [anon_sym_signed] = ACTIONS(1275), + [anon_sym_unsigned] = ACTIONS(1275), + [anon_sym_long] = ACTIONS(1275), + [anon_sym_short] = ACTIONS(1275), + [sym_primitive_type] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_else] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_case] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_goto] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1275), + [sym_number_literal] = ACTIONS(1273), + [anon_sym_L_SQUOTE] = ACTIONS(1273), + [anon_sym_u_SQUOTE] = ACTIONS(1273), + [anon_sym_U_SQUOTE] = ACTIONS(1273), + [anon_sym_u8_SQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1273), + [anon_sym_L_DQUOTE] = ACTIONS(1273), + [anon_sym_u_DQUOTE] = ACTIONS(1273), + [anon_sym_U_DQUOTE] = ACTIONS(1273), + [anon_sym_u8_DQUOTE] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_true] = ACTIONS(1275), + [sym_false] = ACTIONS(1275), + [sym_null] = ACTIONS(1275), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1275), - [anon_sym_ATimport] = ACTIONS(1275), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1273), - [anon_sym_ATcompatibility_alias] = ACTIONS(1275), - [anon_sym_ATprotocol] = ACTIONS(1275), - [anon_sym_ATclass] = ACTIONS(1275), - [anon_sym_ATinterface] = ACTIONS(1275), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1273), - [sym_method_attribute_specifier] = ACTIONS(1273), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1273), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1273), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1273), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1273), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1273), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1273), - [anon_sym_NS_AVAILABLE] = ACTIONS(1273), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1273), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1273), - [anon_sym_API_AVAILABLE] = ACTIONS(1273), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1273), - [anon_sym_API_DEPRECATED] = ACTIONS(1273), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1273), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1273), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1273), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1273), - [anon_sym___deprecated_msg] = ACTIONS(1273), - [anon_sym___deprecated_enum_msg] = ACTIONS(1273), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1273), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1273), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1273), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1273), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1273), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1273), - [anon_sym_ATimplementation] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1273), - [anon_sym___typeof] = ACTIONS(1273), - [anon_sym___typeof__] = ACTIONS(1273), - [sym_self] = ACTIONS(1273), - [sym_super] = ACTIONS(1273), - [sym_nil] = ACTIONS(1273), - [sym_id] = ACTIONS(1273), - [sym_instancetype] = ACTIONS(1273), - [sym_Class] = ACTIONS(1273), - [sym_SEL] = ACTIONS(1273), - [sym_IMP] = ACTIONS(1273), - [sym_BOOL] = ACTIONS(1273), - [sym_auto] = ACTIONS(1273), - [anon_sym_ATautoreleasepool] = ACTIONS(1275), - [anon_sym_ATsynchronized] = ACTIONS(1275), - [anon_sym_ATtry] = ACTIONS(1275), - [anon_sym_ATcatch] = ACTIONS(1275), - [anon_sym_ATfinally] = ACTIONS(1275), - [anon_sym_ATthrow] = ACTIONS(1275), - [anon_sym_ATselector] = ACTIONS(1275), - [anon_sym_ATencode] = ACTIONS(1275), - [anon_sym_AT] = ACTIONS(1273), - [sym_YES] = ACTIONS(1273), - [sym_NO] = ACTIONS(1273), - [anon_sym___builtin_available] = ACTIONS(1273), - [anon_sym_ATavailable] = ACTIONS(1275), - [anon_sym_va_arg] = ACTIONS(1273), + [anon_sym_POUNDimport] = ACTIONS(1273), + [anon_sym_ATimport] = ACTIONS(1273), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1275), + [anon_sym_ATcompatibility_alias] = ACTIONS(1273), + [anon_sym_ATprotocol] = ACTIONS(1273), + [anon_sym_ATclass] = ACTIONS(1273), + [anon_sym_ATinterface] = ACTIONS(1273), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1275), + [sym_method_attribute_specifier] = ACTIONS(1275), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1275), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1275), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1275), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1275), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1275), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1275), + [anon_sym_NS_AVAILABLE] = ACTIONS(1275), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1275), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1275), + [anon_sym_API_AVAILABLE] = ACTIONS(1275), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1275), + [anon_sym_API_DEPRECATED] = ACTIONS(1275), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1275), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1275), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1275), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1275), + [anon_sym___deprecated_msg] = ACTIONS(1275), + [anon_sym___deprecated_enum_msg] = ACTIONS(1275), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1275), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1275), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1275), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1275), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1275), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1275), + [anon_sym_ATimplementation] = ACTIONS(1273), + [anon_sym_NS_ENUM] = ACTIONS(1275), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1275), + [anon_sym_NS_OPTIONS] = ACTIONS(1275), + [anon_sym_typeof] = ACTIONS(1275), + [anon_sym___typeof] = ACTIONS(1275), + [anon_sym___typeof__] = ACTIONS(1275), + [sym_self] = ACTIONS(1275), + [sym_super] = ACTIONS(1275), + [sym_nil] = ACTIONS(1275), + [sym_id] = ACTIONS(1275), + [sym_instancetype] = ACTIONS(1275), + [sym_Class] = ACTIONS(1275), + [sym_SEL] = ACTIONS(1275), + [sym_IMP] = ACTIONS(1275), + [sym_BOOL] = ACTIONS(1275), + [sym_auto] = ACTIONS(1275), + [anon_sym_ATautoreleasepool] = ACTIONS(1273), + [anon_sym_ATsynchronized] = ACTIONS(1273), + [anon_sym_ATtry] = ACTIONS(1273), + [anon_sym_ATcatch] = ACTIONS(1273), + [anon_sym_ATfinally] = ACTIONS(1273), + [anon_sym_ATthrow] = ACTIONS(1273), + [anon_sym_ATselector] = ACTIONS(1273), + [anon_sym_ATencode] = ACTIONS(1273), + [anon_sym_AT] = ACTIONS(1275), + [sym_YES] = ACTIONS(1275), + [sym_NO] = ACTIONS(1275), + [anon_sym___builtin_available] = ACTIONS(1275), + [anon_sym_ATavailable] = ACTIONS(1273), + [anon_sym_va_arg] = ACTIONS(1275), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, [90] = { - [sym_identifier] = ACTIONS(1277), - [aux_sym_preproc_include_token1] = ACTIONS(1279), - [aux_sym_preproc_def_token1] = ACTIONS(1279), - [aux_sym_preproc_if_token1] = ACTIONS(1277), - [aux_sym_preproc_if_token2] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1277), - [aux_sym_preproc_else_token1] = ACTIONS(1277), - [aux_sym_preproc_elif_token1] = ACTIONS(1277), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1277), - [anon_sym_STAR] = ACTIONS(1279), - [anon_sym_CARET] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_typedef] = ACTIONS(1277), - [anon_sym_extern] = ACTIONS(1277), - [anon_sym___attribute] = ACTIONS(1277), - [anon_sym___attribute__] = ACTIONS(1277), - [anon_sym___declspec] = ACTIONS(1277), - [anon_sym___cdecl] = ACTIONS(1277), - [anon_sym___clrcall] = ACTIONS(1277), - [anon_sym___stdcall] = ACTIONS(1277), - [anon_sym___fastcall] = ACTIONS(1277), - [anon_sym___thiscall] = ACTIONS(1277), - [anon_sym___vectorcall] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(1279), - [anon_sym_static] = ACTIONS(1277), - [anon_sym_auto] = ACTIONS(1277), - [anon_sym_register] = ACTIONS(1277), - [anon_sym_inline] = ACTIONS(1277), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1277), - [anon_sym_const] = ACTIONS(1277), - [anon_sym_volatile] = ACTIONS(1277), - [anon_sym_restrict] = ACTIONS(1277), - [anon_sym__Atomic] = ACTIONS(1277), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), - [anon_sym_inout] = ACTIONS(1277), - [anon_sym_bycopy] = ACTIONS(1277), - [anon_sym_byref] = ACTIONS(1277), - [anon_sym_oneway] = ACTIONS(1277), - [anon_sym__Nullable] = ACTIONS(1277), - [anon_sym__Nonnull] = ACTIONS(1277), - [anon_sym__Nullable_result] = ACTIONS(1277), - [anon_sym__Null_unspecified] = ACTIONS(1277), - [anon_sym___autoreleasing] = ACTIONS(1277), - [anon_sym___nullable] = ACTIONS(1277), - [anon_sym___nonnull] = ACTIONS(1277), - [anon_sym___strong] = ACTIONS(1277), - [anon_sym___weak] = ACTIONS(1277), - [anon_sym___bridge] = ACTIONS(1277), - [anon_sym___bridge_transfer] = ACTIONS(1277), - [anon_sym___bridge_retained] = ACTIONS(1277), - [anon_sym___unsafe_unretained] = ACTIONS(1277), - [anon_sym___block] = ACTIONS(1277), - [anon_sym___kindof] = ACTIONS(1277), - [anon_sym___unused] = ACTIONS(1277), - [anon_sym__Complex] = ACTIONS(1277), - [anon_sym___complex] = ACTIONS(1277), - [anon_sym_IBOutlet] = ACTIONS(1277), - [anon_sym_IBInspectable] = ACTIONS(1277), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1277), - [anon_sym_signed] = ACTIONS(1277), - [anon_sym_unsigned] = ACTIONS(1277), - [anon_sym_long] = ACTIONS(1277), - [anon_sym_short] = ACTIONS(1277), - [sym_primitive_type] = ACTIONS(1277), - [anon_sym_enum] = ACTIONS(1277), - [anon_sym_NS_ENUM] = ACTIONS(1277), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1277), - [anon_sym_NS_OPTIONS] = ACTIONS(1277), - [anon_sym_struct] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1277), - [anon_sym_else] = ACTIONS(1277), - [anon_sym_switch] = ACTIONS(1277), - [anon_sym_case] = ACTIONS(1277), - [anon_sym_default] = ACTIONS(1277), - [anon_sym_while] = ACTIONS(1277), - [anon_sym_do] = ACTIONS(1277), - [anon_sym_for] = ACTIONS(1277), - [anon_sym_return] = ACTIONS(1277), - [anon_sym_break] = ACTIONS(1277), - [anon_sym_continue] = ACTIONS(1277), - [anon_sym_goto] = ACTIONS(1277), - [anon_sym_DASH_DASH] = ACTIONS(1279), - [anon_sym_PLUS_PLUS] = ACTIONS(1279), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_number_literal] = ACTIONS(1279), - [anon_sym_L_SQUOTE] = ACTIONS(1279), - [anon_sym_u_SQUOTE] = ACTIONS(1279), - [anon_sym_U_SQUOTE] = ACTIONS(1279), - [anon_sym_u8_SQUOTE] = ACTIONS(1279), - [anon_sym_SQUOTE] = ACTIONS(1279), - [anon_sym_L_DQUOTE] = ACTIONS(1279), - [anon_sym_u_DQUOTE] = ACTIONS(1279), - [anon_sym_U_DQUOTE] = ACTIONS(1279), - [anon_sym_u8_DQUOTE] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [sym_true] = ACTIONS(1277), - [sym_false] = ACTIONS(1277), - [sym_null] = ACTIONS(1277), + [ts_builtin_sym_end] = ACTIONS(1277), + [sym_identifier] = ACTIONS(1279), + [aux_sym_preproc_include_token1] = ACTIONS(1277), + [aux_sym_preproc_def_token1] = ACTIONS(1277), + [anon_sym_RPAREN] = ACTIONS(1277), + [aux_sym_preproc_if_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1277), + [anon_sym_CARET] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_typedef] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym___attribute] = ACTIONS(1279), + [anon_sym___attribute__] = ACTIONS(1279), + [anon_sym___declspec] = ACTIONS(1279), + [anon_sym___cdecl] = ACTIONS(1279), + [anon_sym___clrcall] = ACTIONS(1279), + [anon_sym___stdcall] = ACTIONS(1279), + [anon_sym___fastcall] = ACTIONS(1279), + [anon_sym___thiscall] = ACTIONS(1279), + [anon_sym___vectorcall] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_auto] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_inline] = ACTIONS(1279), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_volatile] = ACTIONS(1279), + [anon_sym_restrict] = ACTIONS(1279), + [anon_sym__Atomic] = ACTIONS(1279), + [anon_sym_in] = ACTIONS(1279), + [anon_sym_out] = ACTIONS(1279), + [anon_sym_inout] = ACTIONS(1279), + [anon_sym_bycopy] = ACTIONS(1279), + [anon_sym_byref] = ACTIONS(1279), + [anon_sym_oneway] = ACTIONS(1279), + [anon_sym__Nullable] = ACTIONS(1279), + [anon_sym__Nonnull] = ACTIONS(1279), + [anon_sym__Nullable_result] = ACTIONS(1279), + [anon_sym__Null_unspecified] = ACTIONS(1279), + [anon_sym___autoreleasing] = ACTIONS(1279), + [anon_sym___nullable] = ACTIONS(1279), + [anon_sym___nonnull] = ACTIONS(1279), + [anon_sym___strong] = ACTIONS(1279), + [anon_sym___weak] = ACTIONS(1279), + [anon_sym___bridge] = ACTIONS(1279), + [anon_sym___bridge_transfer] = ACTIONS(1279), + [anon_sym___bridge_retained] = ACTIONS(1279), + [anon_sym___unsafe_unretained] = ACTIONS(1279), + [anon_sym___block] = ACTIONS(1279), + [anon_sym___kindof] = ACTIONS(1279), + [anon_sym___unused] = ACTIONS(1279), + [anon_sym__Complex] = ACTIONS(1279), + [anon_sym___complex] = ACTIONS(1279), + [anon_sym_IBOutlet] = ACTIONS(1279), + [anon_sym_IBInspectable] = ACTIONS(1279), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1279), + [anon_sym_signed] = ACTIONS(1279), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [sym_primitive_type] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_else] = ACTIONS(1279), + [anon_sym_switch] = ACTIONS(1279), + [anon_sym_case] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_goto] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1279), + [sym_number_literal] = ACTIONS(1277), + [anon_sym_L_SQUOTE] = ACTIONS(1277), + [anon_sym_u_SQUOTE] = ACTIONS(1277), + [anon_sym_U_SQUOTE] = ACTIONS(1277), + [anon_sym_u8_SQUOTE] = ACTIONS(1277), + [anon_sym_SQUOTE] = ACTIONS(1277), + [anon_sym_L_DQUOTE] = ACTIONS(1277), + [anon_sym_u_DQUOTE] = ACTIONS(1277), + [anon_sym_U_DQUOTE] = ACTIONS(1277), + [anon_sym_u8_DQUOTE] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [sym_null] = ACTIONS(1279), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1279), - [anon_sym_ATimport] = ACTIONS(1279), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1277), - [anon_sym_ATcompatibility_alias] = ACTIONS(1279), - [anon_sym_ATprotocol] = ACTIONS(1279), - [anon_sym_ATclass] = ACTIONS(1279), - [anon_sym_ATinterface] = ACTIONS(1279), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1277), - [sym_method_attribute_specifier] = ACTIONS(1277), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1277), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1277), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1277), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1277), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1277), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1277), - [anon_sym_NS_AVAILABLE] = ACTIONS(1277), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1277), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1277), - [anon_sym_API_AVAILABLE] = ACTIONS(1277), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1277), - [anon_sym_API_DEPRECATED] = ACTIONS(1277), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1277), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1277), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1277), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1277), - [anon_sym___deprecated_msg] = ACTIONS(1277), - [anon_sym___deprecated_enum_msg] = ACTIONS(1277), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1277), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1277), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1277), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1277), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1277), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1277), - [anon_sym_ATimplementation] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___typeof] = ACTIONS(1277), - [anon_sym___typeof__] = ACTIONS(1277), - [sym_self] = ACTIONS(1277), - [sym_super] = ACTIONS(1277), - [sym_nil] = ACTIONS(1277), - [sym_id] = ACTIONS(1277), - [sym_instancetype] = ACTIONS(1277), - [sym_Class] = ACTIONS(1277), - [sym_SEL] = ACTIONS(1277), - [sym_IMP] = ACTIONS(1277), - [sym_BOOL] = ACTIONS(1277), - [sym_auto] = ACTIONS(1277), - [anon_sym_ATautoreleasepool] = ACTIONS(1279), - [anon_sym_ATsynchronized] = ACTIONS(1279), - [anon_sym_ATtry] = ACTIONS(1279), - [anon_sym_ATcatch] = ACTIONS(1279), - [anon_sym_ATfinally] = ACTIONS(1279), - [anon_sym_ATthrow] = ACTIONS(1279), - [anon_sym_ATselector] = ACTIONS(1279), - [anon_sym_ATencode] = ACTIONS(1279), - [anon_sym_AT] = ACTIONS(1277), - [sym_YES] = ACTIONS(1277), - [sym_NO] = ACTIONS(1277), - [anon_sym___builtin_available] = ACTIONS(1277), - [anon_sym_ATavailable] = ACTIONS(1279), - [anon_sym_va_arg] = ACTIONS(1277), + [anon_sym_POUNDimport] = ACTIONS(1277), + [anon_sym_ATimport] = ACTIONS(1277), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1279), + [anon_sym_ATcompatibility_alias] = ACTIONS(1277), + [anon_sym_ATprotocol] = ACTIONS(1277), + [anon_sym_ATclass] = ACTIONS(1277), + [anon_sym_ATinterface] = ACTIONS(1277), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1279), + [sym_method_attribute_specifier] = ACTIONS(1279), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1279), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1279), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1279), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1279), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1279), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1279), + [anon_sym_NS_AVAILABLE] = ACTIONS(1279), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1279), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1279), + [anon_sym_API_AVAILABLE] = ACTIONS(1279), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1279), + [anon_sym_API_DEPRECATED] = ACTIONS(1279), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1279), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1279), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1279), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1279), + [anon_sym___deprecated_msg] = ACTIONS(1279), + [anon_sym___deprecated_enum_msg] = ACTIONS(1279), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1279), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1279), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1279), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1279), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1279), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1279), + [anon_sym_ATimplementation] = ACTIONS(1277), + [anon_sym_NS_ENUM] = ACTIONS(1279), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1279), + [anon_sym_NS_OPTIONS] = ACTIONS(1279), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___typeof] = ACTIONS(1279), + [anon_sym___typeof__] = ACTIONS(1279), + [sym_self] = ACTIONS(1279), + [sym_super] = ACTIONS(1279), + [sym_nil] = ACTIONS(1279), + [sym_id] = ACTIONS(1279), + [sym_instancetype] = ACTIONS(1279), + [sym_Class] = ACTIONS(1279), + [sym_SEL] = ACTIONS(1279), + [sym_IMP] = ACTIONS(1279), + [sym_BOOL] = ACTIONS(1279), + [sym_auto] = ACTIONS(1279), + [anon_sym_ATautoreleasepool] = ACTIONS(1277), + [anon_sym_ATsynchronized] = ACTIONS(1277), + [anon_sym_ATtry] = ACTIONS(1277), + [anon_sym_ATcatch] = ACTIONS(1277), + [anon_sym_ATfinally] = ACTIONS(1277), + [anon_sym_ATthrow] = ACTIONS(1277), + [anon_sym_ATselector] = ACTIONS(1277), + [anon_sym_ATencode] = ACTIONS(1277), + [anon_sym_AT] = ACTIONS(1279), + [sym_YES] = ACTIONS(1279), + [sym_NO] = ACTIONS(1279), + [anon_sym___builtin_available] = ACTIONS(1279), + [anon_sym_ATavailable] = ACTIONS(1277), + [anon_sym_va_arg] = ACTIONS(1279), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, [91] = { - [sym_identifier] = ACTIONS(1281), - [aux_sym_preproc_include_token1] = ACTIONS(1283), - [aux_sym_preproc_def_token1] = ACTIONS(1283), - [aux_sym_preproc_if_token1] = ACTIONS(1281), - [aux_sym_preproc_if_token2] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1281), - [aux_sym_preproc_else_token1] = ACTIONS(1281), - [aux_sym_preproc_elif_token1] = ACTIONS(1281), - [anon_sym_LPAREN2] = ACTIONS(1283), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_typedef] = ACTIONS(1281), - [anon_sym_extern] = ACTIONS(1281), - [anon_sym___attribute] = ACTIONS(1281), - [anon_sym___attribute__] = ACTIONS(1281), - [anon_sym___declspec] = ACTIONS(1281), - [anon_sym___cdecl] = ACTIONS(1281), - [anon_sym___clrcall] = ACTIONS(1281), - [anon_sym___stdcall] = ACTIONS(1281), - [anon_sym___fastcall] = ACTIONS(1281), - [anon_sym___thiscall] = ACTIONS(1281), - [anon_sym___vectorcall] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_static] = ACTIONS(1281), - [anon_sym_auto] = ACTIONS(1281), - [anon_sym_register] = ACTIONS(1281), - [anon_sym_inline] = ACTIONS(1281), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1281), - [anon_sym_const] = ACTIONS(1281), - [anon_sym_volatile] = ACTIONS(1281), - [anon_sym_restrict] = ACTIONS(1281), - [anon_sym__Atomic] = ACTIONS(1281), - [anon_sym_in] = ACTIONS(1281), - [anon_sym_out] = ACTIONS(1281), - [anon_sym_inout] = ACTIONS(1281), - [anon_sym_bycopy] = ACTIONS(1281), - [anon_sym_byref] = ACTIONS(1281), - [anon_sym_oneway] = ACTIONS(1281), - [anon_sym__Nullable] = ACTIONS(1281), - [anon_sym__Nonnull] = ACTIONS(1281), - [anon_sym__Nullable_result] = ACTIONS(1281), - [anon_sym__Null_unspecified] = ACTIONS(1281), - [anon_sym___autoreleasing] = ACTIONS(1281), - [anon_sym___nullable] = ACTIONS(1281), - [anon_sym___nonnull] = ACTIONS(1281), - [anon_sym___strong] = ACTIONS(1281), - [anon_sym___weak] = ACTIONS(1281), - [anon_sym___bridge] = ACTIONS(1281), - [anon_sym___bridge_transfer] = ACTIONS(1281), - [anon_sym___bridge_retained] = ACTIONS(1281), - [anon_sym___unsafe_unretained] = ACTIONS(1281), - [anon_sym___block] = ACTIONS(1281), - [anon_sym___kindof] = ACTIONS(1281), - [anon_sym___unused] = ACTIONS(1281), - [anon_sym__Complex] = ACTIONS(1281), - [anon_sym___complex] = ACTIONS(1281), - [anon_sym_IBOutlet] = ACTIONS(1281), - [anon_sym_IBInspectable] = ACTIONS(1281), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1281), - [anon_sym_signed] = ACTIONS(1281), - [anon_sym_unsigned] = ACTIONS(1281), - [anon_sym_long] = ACTIONS(1281), - [anon_sym_short] = ACTIONS(1281), - [sym_primitive_type] = ACTIONS(1281), - [anon_sym_enum] = ACTIONS(1281), - [anon_sym_NS_ENUM] = ACTIONS(1281), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1281), - [anon_sym_NS_OPTIONS] = ACTIONS(1281), - [anon_sym_struct] = ACTIONS(1281), - [anon_sym_union] = ACTIONS(1281), - [anon_sym_if] = ACTIONS(1281), - [anon_sym_else] = ACTIONS(1281), - [anon_sym_switch] = ACTIONS(1281), - [anon_sym_case] = ACTIONS(1281), - [anon_sym_default] = ACTIONS(1281), - [anon_sym_while] = ACTIONS(1281), - [anon_sym_do] = ACTIONS(1281), - [anon_sym_for] = ACTIONS(1281), - [anon_sym_return] = ACTIONS(1281), - [anon_sym_break] = ACTIONS(1281), - [anon_sym_continue] = ACTIONS(1281), - [anon_sym_goto] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_sizeof] = ACTIONS(1281), - [sym_number_literal] = ACTIONS(1283), - [anon_sym_L_SQUOTE] = ACTIONS(1283), - [anon_sym_u_SQUOTE] = ACTIONS(1283), - [anon_sym_U_SQUOTE] = ACTIONS(1283), - [anon_sym_u8_SQUOTE] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1283), - [anon_sym_L_DQUOTE] = ACTIONS(1283), - [anon_sym_u_DQUOTE] = ACTIONS(1283), - [anon_sym_U_DQUOTE] = ACTIONS(1283), - [anon_sym_u8_DQUOTE] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1283), - [sym_true] = ACTIONS(1281), - [sym_false] = ACTIONS(1281), - [sym_null] = ACTIONS(1281), + [ts_builtin_sym_end] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [aux_sym_preproc_include_token1] = ACTIONS(1281), + [aux_sym_preproc_def_token1] = ACTIONS(1281), + [anon_sym_RPAREN] = ACTIONS(1281), + [aux_sym_preproc_if_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym___attribute] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym___declspec] = ACTIONS(1283), + [anon_sym___cdecl] = ACTIONS(1283), + [anon_sym___clrcall] = ACTIONS(1283), + [anon_sym___stdcall] = ACTIONS(1283), + [anon_sym___fastcall] = ACTIONS(1283), + [anon_sym___thiscall] = ACTIONS(1283), + [anon_sym___vectorcall] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1281), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [anon_sym__Atomic] = ACTIONS(1283), + [anon_sym_in] = ACTIONS(1283), + [anon_sym_out] = ACTIONS(1283), + [anon_sym_inout] = ACTIONS(1283), + [anon_sym_bycopy] = ACTIONS(1283), + [anon_sym_byref] = ACTIONS(1283), + [anon_sym_oneway] = ACTIONS(1283), + [anon_sym__Nullable] = ACTIONS(1283), + [anon_sym__Nonnull] = ACTIONS(1283), + [anon_sym__Nullable_result] = ACTIONS(1283), + [anon_sym__Null_unspecified] = ACTIONS(1283), + [anon_sym___autoreleasing] = ACTIONS(1283), + [anon_sym___nullable] = ACTIONS(1283), + [anon_sym___nonnull] = ACTIONS(1283), + [anon_sym___strong] = ACTIONS(1283), + [anon_sym___weak] = ACTIONS(1283), + [anon_sym___bridge] = ACTIONS(1283), + [anon_sym___bridge_transfer] = ACTIONS(1283), + [anon_sym___bridge_retained] = ACTIONS(1283), + [anon_sym___unsafe_unretained] = ACTIONS(1283), + [anon_sym___block] = ACTIONS(1283), + [anon_sym___kindof] = ACTIONS(1283), + [anon_sym___unused] = ACTIONS(1283), + [anon_sym__Complex] = ACTIONS(1283), + [anon_sym___complex] = ACTIONS(1283), + [anon_sym_IBOutlet] = ACTIONS(1283), + [anon_sym_IBInspectable] = ACTIONS(1283), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1283), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [sym_primitive_type] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_else] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_case] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_goto] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [sym_number_literal] = ACTIONS(1281), + [anon_sym_L_SQUOTE] = ACTIONS(1281), + [anon_sym_u_SQUOTE] = ACTIONS(1281), + [anon_sym_U_SQUOTE] = ACTIONS(1281), + [anon_sym_u8_SQUOTE] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_L_DQUOTE] = ACTIONS(1281), + [anon_sym_u_DQUOTE] = ACTIONS(1281), + [anon_sym_U_DQUOTE] = ACTIONS(1281), + [anon_sym_u8_DQUOTE] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [sym_null] = ACTIONS(1283), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1283), - [anon_sym_ATimport] = ACTIONS(1283), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1281), - [anon_sym_ATcompatibility_alias] = ACTIONS(1283), - [anon_sym_ATprotocol] = ACTIONS(1283), - [anon_sym_ATclass] = ACTIONS(1283), - [anon_sym_ATinterface] = ACTIONS(1283), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1281), - [sym_method_attribute_specifier] = ACTIONS(1281), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1281), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1281), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1281), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1281), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1281), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1281), - [anon_sym_NS_AVAILABLE] = ACTIONS(1281), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1281), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1281), - [anon_sym_API_AVAILABLE] = ACTIONS(1281), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1281), - [anon_sym_API_DEPRECATED] = ACTIONS(1281), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1281), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1281), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1281), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1281), - [anon_sym___deprecated_msg] = ACTIONS(1281), - [anon_sym___deprecated_enum_msg] = ACTIONS(1281), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1281), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1281), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1281), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1281), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1281), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1281), - [anon_sym_ATimplementation] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___typeof] = ACTIONS(1281), - [anon_sym___typeof__] = ACTIONS(1281), - [sym_self] = ACTIONS(1281), - [sym_super] = ACTIONS(1281), - [sym_nil] = ACTIONS(1281), - [sym_id] = ACTIONS(1281), - [sym_instancetype] = ACTIONS(1281), - [sym_Class] = ACTIONS(1281), - [sym_SEL] = ACTIONS(1281), - [sym_IMP] = ACTIONS(1281), - [sym_BOOL] = ACTIONS(1281), - [sym_auto] = ACTIONS(1281), - [anon_sym_ATautoreleasepool] = ACTIONS(1283), - [anon_sym_ATsynchronized] = ACTIONS(1283), - [anon_sym_ATtry] = ACTIONS(1283), - [anon_sym_ATcatch] = ACTIONS(1283), - [anon_sym_ATfinally] = ACTIONS(1283), - [anon_sym_ATthrow] = ACTIONS(1283), - [anon_sym_ATselector] = ACTIONS(1283), - [anon_sym_ATencode] = ACTIONS(1283), - [anon_sym_AT] = ACTIONS(1281), - [sym_YES] = ACTIONS(1281), - [sym_NO] = ACTIONS(1281), - [anon_sym___builtin_available] = ACTIONS(1281), - [anon_sym_ATavailable] = ACTIONS(1283), - [anon_sym_va_arg] = ACTIONS(1281), + [anon_sym_POUNDimport] = ACTIONS(1281), + [anon_sym_ATimport] = ACTIONS(1281), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1283), + [anon_sym_ATcompatibility_alias] = ACTIONS(1281), + [anon_sym_ATprotocol] = ACTIONS(1281), + [anon_sym_ATclass] = ACTIONS(1281), + [anon_sym_ATinterface] = ACTIONS(1281), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1283), + [sym_method_attribute_specifier] = ACTIONS(1283), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1283), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1283), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1283), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1283), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1283), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1283), + [anon_sym_NS_AVAILABLE] = ACTIONS(1283), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1283), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1283), + [anon_sym_API_AVAILABLE] = ACTIONS(1283), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1283), + [anon_sym_API_DEPRECATED] = ACTIONS(1283), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1283), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1283), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1283), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1283), + [anon_sym___deprecated_msg] = ACTIONS(1283), + [anon_sym___deprecated_enum_msg] = ACTIONS(1283), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1283), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1283), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1283), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1283), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1283), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1283), + [anon_sym_ATimplementation] = ACTIONS(1281), + [anon_sym_NS_ENUM] = ACTIONS(1283), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1283), + [anon_sym_NS_OPTIONS] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1283), + [anon_sym___typeof] = ACTIONS(1283), + [anon_sym___typeof__] = ACTIONS(1283), + [sym_self] = ACTIONS(1283), + [sym_super] = ACTIONS(1283), + [sym_nil] = ACTIONS(1283), + [sym_id] = ACTIONS(1283), + [sym_instancetype] = ACTIONS(1283), + [sym_Class] = ACTIONS(1283), + [sym_SEL] = ACTIONS(1283), + [sym_IMP] = ACTIONS(1283), + [sym_BOOL] = ACTIONS(1283), + [sym_auto] = ACTIONS(1283), + [anon_sym_ATautoreleasepool] = ACTIONS(1281), + [anon_sym_ATsynchronized] = ACTIONS(1281), + [anon_sym_ATtry] = ACTIONS(1281), + [anon_sym_ATcatch] = ACTIONS(1281), + [anon_sym_ATfinally] = ACTIONS(1281), + [anon_sym_ATthrow] = ACTIONS(1281), + [anon_sym_ATselector] = ACTIONS(1281), + [anon_sym_ATencode] = ACTIONS(1281), + [anon_sym_AT] = ACTIONS(1283), + [sym_YES] = ACTIONS(1283), + [sym_NO] = ACTIONS(1283), + [anon_sym___builtin_available] = ACTIONS(1283), + [anon_sym_ATavailable] = ACTIONS(1281), + [anon_sym_va_arg] = ACTIONS(1283), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, [92] = { - [sym_identifier] = ACTIONS(1285), - [aux_sym_preproc_include_token1] = ACTIONS(1287), - [aux_sym_preproc_def_token1] = ACTIONS(1287), - [aux_sym_preproc_if_token1] = ACTIONS(1285), - [aux_sym_preproc_if_token2] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1285), - [aux_sym_preproc_else_token1] = ACTIONS(1285), - [aux_sym_preproc_elif_token1] = ACTIONS(1285), - [anon_sym_LPAREN2] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_TILDE] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1287), - [anon_sym_CARET] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1287), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_typedef] = ACTIONS(1285), - [anon_sym_extern] = ACTIONS(1285), - [anon_sym___attribute] = ACTIONS(1285), - [anon_sym___attribute__] = ACTIONS(1285), - [anon_sym___declspec] = ACTIONS(1285), - [anon_sym___cdecl] = ACTIONS(1285), - [anon_sym___clrcall] = ACTIONS(1285), - [anon_sym___stdcall] = ACTIONS(1285), - [anon_sym___fastcall] = ACTIONS(1285), - [anon_sym___thiscall] = ACTIONS(1285), - [anon_sym___vectorcall] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1287), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_static] = ACTIONS(1285), - [anon_sym_auto] = ACTIONS(1285), - [anon_sym_register] = ACTIONS(1285), - [anon_sym_inline] = ACTIONS(1285), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1285), - [anon_sym_const] = ACTIONS(1285), - [anon_sym_volatile] = ACTIONS(1285), - [anon_sym_restrict] = ACTIONS(1285), - [anon_sym__Atomic] = ACTIONS(1285), - [anon_sym_in] = ACTIONS(1285), - [anon_sym_out] = ACTIONS(1285), - [anon_sym_inout] = ACTIONS(1285), - [anon_sym_bycopy] = ACTIONS(1285), - [anon_sym_byref] = ACTIONS(1285), - [anon_sym_oneway] = ACTIONS(1285), - [anon_sym__Nullable] = ACTIONS(1285), - [anon_sym__Nonnull] = ACTIONS(1285), - [anon_sym__Nullable_result] = ACTIONS(1285), - [anon_sym__Null_unspecified] = ACTIONS(1285), - [anon_sym___autoreleasing] = ACTIONS(1285), - [anon_sym___nullable] = ACTIONS(1285), - [anon_sym___nonnull] = ACTIONS(1285), - [anon_sym___strong] = ACTIONS(1285), - [anon_sym___weak] = ACTIONS(1285), - [anon_sym___bridge] = ACTIONS(1285), - [anon_sym___bridge_transfer] = ACTIONS(1285), - [anon_sym___bridge_retained] = ACTIONS(1285), - [anon_sym___unsafe_unretained] = ACTIONS(1285), - [anon_sym___block] = ACTIONS(1285), - [anon_sym___kindof] = ACTIONS(1285), - [anon_sym___unused] = ACTIONS(1285), - [anon_sym__Complex] = ACTIONS(1285), - [anon_sym___complex] = ACTIONS(1285), - [anon_sym_IBOutlet] = ACTIONS(1285), - [anon_sym_IBInspectable] = ACTIONS(1285), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1285), - [anon_sym_signed] = ACTIONS(1285), - [anon_sym_unsigned] = ACTIONS(1285), - [anon_sym_long] = ACTIONS(1285), - [anon_sym_short] = ACTIONS(1285), - [sym_primitive_type] = ACTIONS(1285), - [anon_sym_enum] = ACTIONS(1285), - [anon_sym_NS_ENUM] = ACTIONS(1285), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1285), - [anon_sym_NS_OPTIONS] = ACTIONS(1285), - [anon_sym_struct] = ACTIONS(1285), - [anon_sym_union] = ACTIONS(1285), - [anon_sym_if] = ACTIONS(1285), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_switch] = ACTIONS(1285), - [anon_sym_case] = ACTIONS(1285), - [anon_sym_default] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1285), - [anon_sym_do] = ACTIONS(1285), - [anon_sym_for] = ACTIONS(1285), - [anon_sym_return] = ACTIONS(1285), - [anon_sym_break] = ACTIONS(1285), - [anon_sym_continue] = ACTIONS(1285), - [anon_sym_goto] = ACTIONS(1285), - [anon_sym_DASH_DASH] = ACTIONS(1287), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_sizeof] = ACTIONS(1285), - [sym_number_literal] = ACTIONS(1287), - [anon_sym_L_SQUOTE] = ACTIONS(1287), - [anon_sym_u_SQUOTE] = ACTIONS(1287), - [anon_sym_U_SQUOTE] = ACTIONS(1287), - [anon_sym_u8_SQUOTE] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1287), - [anon_sym_L_DQUOTE] = ACTIONS(1287), - [anon_sym_u_DQUOTE] = ACTIONS(1287), - [anon_sym_U_DQUOTE] = ACTIONS(1287), - [anon_sym_u8_DQUOTE] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1287), - [sym_true] = ACTIONS(1285), - [sym_false] = ACTIONS(1285), - [sym_null] = ACTIONS(1285), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1288), + [aux_sym_preproc_include_token1] = ACTIONS(1285), + [aux_sym_preproc_def_token1] = ACTIONS(1285), + [anon_sym_RPAREN] = ACTIONS(1285), + [aux_sym_preproc_if_token1] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), + [anon_sym_LPAREN2] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1285), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_typedef] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym___attribute] = ACTIONS(1288), + [anon_sym___attribute__] = ACTIONS(1288), + [anon_sym___declspec] = ACTIONS(1288), + [anon_sym___cdecl] = ACTIONS(1288), + [anon_sym___clrcall] = ACTIONS(1288), + [anon_sym___stdcall] = ACTIONS(1288), + [anon_sym___fastcall] = ACTIONS(1288), + [anon_sym___thiscall] = ACTIONS(1288), + [anon_sym___vectorcall] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_auto] = ACTIONS(1288), + [anon_sym_register] = ACTIONS(1288), + [anon_sym_inline] = ACTIONS(1288), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_volatile] = ACTIONS(1288), + [anon_sym_restrict] = ACTIONS(1288), + [anon_sym__Atomic] = ACTIONS(1288), + [anon_sym_in] = ACTIONS(1288), + [anon_sym_out] = ACTIONS(1288), + [anon_sym_inout] = ACTIONS(1288), + [anon_sym_bycopy] = ACTIONS(1288), + [anon_sym_byref] = ACTIONS(1288), + [anon_sym_oneway] = ACTIONS(1288), + [anon_sym__Nullable] = ACTIONS(1288), + [anon_sym__Nonnull] = ACTIONS(1288), + [anon_sym__Nullable_result] = ACTIONS(1288), + [anon_sym__Null_unspecified] = ACTIONS(1288), + [anon_sym___autoreleasing] = ACTIONS(1288), + [anon_sym___nullable] = ACTIONS(1288), + [anon_sym___nonnull] = ACTIONS(1288), + [anon_sym___strong] = ACTIONS(1288), + [anon_sym___weak] = ACTIONS(1288), + [anon_sym___bridge] = ACTIONS(1288), + [anon_sym___bridge_transfer] = ACTIONS(1288), + [anon_sym___bridge_retained] = ACTIONS(1288), + [anon_sym___unsafe_unretained] = ACTIONS(1288), + [anon_sym___block] = ACTIONS(1288), + [anon_sym___kindof] = ACTIONS(1288), + [anon_sym___unused] = ACTIONS(1288), + [anon_sym__Complex] = ACTIONS(1288), + [anon_sym___complex] = ACTIONS(1288), + [anon_sym_IBOutlet] = ACTIONS(1288), + [anon_sym_IBInspectable] = ACTIONS(1288), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1288), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [sym_primitive_type] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_switch] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_do] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_goto] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1288), + [sym_number_literal] = ACTIONS(1285), + [anon_sym_L_SQUOTE] = ACTIONS(1285), + [anon_sym_u_SQUOTE] = ACTIONS(1285), + [anon_sym_U_SQUOTE] = ACTIONS(1285), + [anon_sym_u8_SQUOTE] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1285), + [anon_sym_L_DQUOTE] = ACTIONS(1285), + [anon_sym_u_DQUOTE] = ACTIONS(1285), + [anon_sym_U_DQUOTE] = ACTIONS(1285), + [anon_sym_u8_DQUOTE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_true] = ACTIONS(1288), + [sym_false] = ACTIONS(1288), + [sym_null] = ACTIONS(1288), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1287), - [anon_sym_ATimport] = ACTIONS(1287), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1285), - [anon_sym_ATcompatibility_alias] = ACTIONS(1287), - [anon_sym_ATprotocol] = ACTIONS(1287), - [anon_sym_ATclass] = ACTIONS(1287), - [anon_sym_ATinterface] = ACTIONS(1287), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1285), - [sym_method_attribute_specifier] = ACTIONS(1285), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1285), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1285), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1285), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1285), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1285), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1285), - [anon_sym_NS_AVAILABLE] = ACTIONS(1285), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1285), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1285), - [anon_sym_API_AVAILABLE] = ACTIONS(1285), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1285), - [anon_sym_API_DEPRECATED] = ACTIONS(1285), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1285), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1285), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1285), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1285), - [anon_sym___deprecated_msg] = ACTIONS(1285), - [anon_sym___deprecated_enum_msg] = ACTIONS(1285), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1285), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1285), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1285), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1285), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1285), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1285), - [anon_sym_ATimplementation] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___typeof] = ACTIONS(1285), - [anon_sym___typeof__] = ACTIONS(1285), - [sym_self] = ACTIONS(1285), - [sym_super] = ACTIONS(1285), - [sym_nil] = ACTIONS(1285), - [sym_id] = ACTIONS(1285), - [sym_instancetype] = ACTIONS(1285), - [sym_Class] = ACTIONS(1285), - [sym_SEL] = ACTIONS(1285), - [sym_IMP] = ACTIONS(1285), - [sym_BOOL] = ACTIONS(1285), - [sym_auto] = ACTIONS(1285), - [anon_sym_ATautoreleasepool] = ACTIONS(1287), - [anon_sym_ATsynchronized] = ACTIONS(1287), - [anon_sym_ATtry] = ACTIONS(1287), - [anon_sym_ATcatch] = ACTIONS(1287), - [anon_sym_ATfinally] = ACTIONS(1287), - [anon_sym_ATthrow] = ACTIONS(1287), - [anon_sym_ATselector] = ACTIONS(1287), - [anon_sym_ATencode] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1285), - [sym_YES] = ACTIONS(1285), - [sym_NO] = ACTIONS(1285), - [anon_sym___builtin_available] = ACTIONS(1285), - [anon_sym_ATavailable] = ACTIONS(1287), - [anon_sym_va_arg] = ACTIONS(1285), + [anon_sym_POUNDimport] = ACTIONS(1285), + [anon_sym_ATimport] = ACTIONS(1285), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1288), + [anon_sym_ATcompatibility_alias] = ACTIONS(1285), + [anon_sym_ATprotocol] = ACTIONS(1285), + [anon_sym_ATclass] = ACTIONS(1285), + [anon_sym_ATinterface] = ACTIONS(1285), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1288), + [sym_method_attribute_specifier] = ACTIONS(1288), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1288), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1288), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1288), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1288), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1288), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1288), + [anon_sym_NS_AVAILABLE] = ACTIONS(1288), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1288), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1288), + [anon_sym_API_AVAILABLE] = ACTIONS(1288), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1288), + [anon_sym_API_DEPRECATED] = ACTIONS(1288), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1288), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1288), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1288), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1288), + [anon_sym___deprecated_msg] = ACTIONS(1288), + [anon_sym___deprecated_enum_msg] = ACTIONS(1288), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1288), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1288), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1288), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1288), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1288), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1288), + [anon_sym_ATimplementation] = ACTIONS(1285), + [anon_sym_NS_ENUM] = ACTIONS(1288), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1288), + [anon_sym_NS_OPTIONS] = ACTIONS(1288), + [anon_sym_typeof] = ACTIONS(1288), + [anon_sym___typeof] = ACTIONS(1288), + [anon_sym___typeof__] = ACTIONS(1288), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_nil] = ACTIONS(1288), + [sym_id] = ACTIONS(1288), + [sym_instancetype] = ACTIONS(1288), + [sym_Class] = ACTIONS(1288), + [sym_SEL] = ACTIONS(1288), + [sym_IMP] = ACTIONS(1288), + [sym_BOOL] = ACTIONS(1288), + [sym_auto] = ACTIONS(1288), + [anon_sym_ATautoreleasepool] = ACTIONS(1285), + [anon_sym_ATsynchronized] = ACTIONS(1285), + [anon_sym_ATtry] = ACTIONS(1285), + [anon_sym_ATcatch] = ACTIONS(1285), + [anon_sym_ATfinally] = ACTIONS(1285), + [anon_sym_ATthrow] = ACTIONS(1285), + [anon_sym_ATselector] = ACTIONS(1285), + [anon_sym_ATencode] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1288), + [sym_YES] = ACTIONS(1288), + [sym_NO] = ACTIONS(1288), + [anon_sym___builtin_available] = ACTIONS(1288), + [anon_sym_ATavailable] = ACTIONS(1285), + [anon_sym_va_arg] = ACTIONS(1288), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, [93] = { - [sym_identifier] = ACTIONS(1289), + [ts_builtin_sym_end] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1293), [aux_sym_preproc_include_token1] = ACTIONS(1291), [aux_sym_preproc_def_token1] = ACTIONS(1291), - [aux_sym_preproc_if_token1] = ACTIONS(1289), - [aux_sym_preproc_if_token2] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1289), - [aux_sym_preproc_else_token1] = ACTIONS(1289), - [aux_sym_preproc_elif_token1] = ACTIONS(1289), + [anon_sym_RPAREN] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1293), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1293), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1293), [anon_sym_LPAREN2] = ACTIONS(1291), [anon_sym_BANG] = ACTIONS(1291), [anon_sym_TILDE] = ACTIONS(1291), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(1293), [anon_sym_STAR] = ACTIONS(1291), [anon_sym_CARET] = ACTIONS(1291), [anon_sym_AMP] = ACTIONS(1291), [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym_typedef] = ACTIONS(1289), - [anon_sym_extern] = ACTIONS(1289), - [anon_sym___attribute] = ACTIONS(1289), - [anon_sym___attribute__] = ACTIONS(1289), - [anon_sym___declspec] = ACTIONS(1289), - [anon_sym___cdecl] = ACTIONS(1289), - [anon_sym___clrcall] = ACTIONS(1289), - [anon_sym___stdcall] = ACTIONS(1289), - [anon_sym___fastcall] = ACTIONS(1289), - [anon_sym___thiscall] = ACTIONS(1289), - [anon_sym___vectorcall] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1291), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_auto] = ACTIONS(1289), - [anon_sym_register] = ACTIONS(1289), - [anon_sym_inline] = ACTIONS(1289), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1289), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_volatile] = ACTIONS(1289), - [anon_sym_restrict] = ACTIONS(1289), - [anon_sym__Atomic] = ACTIONS(1289), - [anon_sym_in] = ACTIONS(1289), - [anon_sym_out] = ACTIONS(1289), - [anon_sym_inout] = ACTIONS(1289), - [anon_sym_bycopy] = ACTIONS(1289), - [anon_sym_byref] = ACTIONS(1289), - [anon_sym_oneway] = ACTIONS(1289), - [anon_sym__Nullable] = ACTIONS(1289), - [anon_sym__Nonnull] = ACTIONS(1289), - [anon_sym__Nullable_result] = ACTIONS(1289), - [anon_sym__Null_unspecified] = ACTIONS(1289), - [anon_sym___autoreleasing] = ACTIONS(1289), - [anon_sym___nullable] = ACTIONS(1289), - [anon_sym___nonnull] = ACTIONS(1289), - [anon_sym___strong] = ACTIONS(1289), - [anon_sym___weak] = ACTIONS(1289), - [anon_sym___bridge] = ACTIONS(1289), - [anon_sym___bridge_transfer] = ACTIONS(1289), - [anon_sym___bridge_retained] = ACTIONS(1289), - [anon_sym___unsafe_unretained] = ACTIONS(1289), - [anon_sym___block] = ACTIONS(1289), - [anon_sym___kindof] = ACTIONS(1289), - [anon_sym___unused] = ACTIONS(1289), - [anon_sym__Complex] = ACTIONS(1289), - [anon_sym___complex] = ACTIONS(1289), - [anon_sym_IBOutlet] = ACTIONS(1289), - [anon_sym_IBInspectable] = ACTIONS(1289), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1289), - [anon_sym_signed] = ACTIONS(1289), - [anon_sym_unsigned] = ACTIONS(1289), - [anon_sym_long] = ACTIONS(1289), - [anon_sym_short] = ACTIONS(1289), - [sym_primitive_type] = ACTIONS(1289), - [anon_sym_enum] = ACTIONS(1289), - [anon_sym_NS_ENUM] = ACTIONS(1289), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1289), - [anon_sym_NS_OPTIONS] = ACTIONS(1289), - [anon_sym_struct] = ACTIONS(1289), - [anon_sym_union] = ACTIONS(1289), - [anon_sym_if] = ACTIONS(1289), - [anon_sym_else] = ACTIONS(1289), - [anon_sym_switch] = ACTIONS(1289), - [anon_sym_case] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1289), - [anon_sym_while] = ACTIONS(1289), - [anon_sym_do] = ACTIONS(1289), - [anon_sym_for] = ACTIONS(1289), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_break] = ACTIONS(1289), - [anon_sym_continue] = ACTIONS(1289), - [anon_sym_goto] = ACTIONS(1289), - [anon_sym_DASH_DASH] = ACTIONS(1291), - [anon_sym_PLUS_PLUS] = ACTIONS(1291), - [anon_sym_sizeof] = ACTIONS(1289), - [sym_number_literal] = ACTIONS(1291), - [anon_sym_L_SQUOTE] = ACTIONS(1291), - [anon_sym_u_SQUOTE] = ACTIONS(1291), - [anon_sym_U_SQUOTE] = ACTIONS(1291), - [anon_sym_u8_SQUOTE] = ACTIONS(1291), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_L_DQUOTE] = ACTIONS(1291), - [anon_sym_u_DQUOTE] = ACTIONS(1291), - [anon_sym_U_DQUOTE] = ACTIONS(1291), - [anon_sym_u8_DQUOTE] = ACTIONS(1291), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_true] = ACTIONS(1289), - [sym_false] = ACTIONS(1289), - [sym_null] = ACTIONS(1289), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1291), - [anon_sym_ATimport] = ACTIONS(1291), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1289), - [anon_sym_ATcompatibility_alias] = ACTIONS(1291), - [anon_sym_ATprotocol] = ACTIONS(1291), - [anon_sym_ATclass] = ACTIONS(1291), - [anon_sym_ATinterface] = ACTIONS(1291), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1289), - [sym_method_attribute_specifier] = ACTIONS(1289), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1289), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1289), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1289), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1289), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1289), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1289), - [anon_sym_NS_AVAILABLE] = ACTIONS(1289), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1289), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1289), - [anon_sym_API_AVAILABLE] = ACTIONS(1289), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1289), - [anon_sym_API_DEPRECATED] = ACTIONS(1289), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1289), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1289), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1289), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1289), - [anon_sym___deprecated_msg] = ACTIONS(1289), - [anon_sym___deprecated_enum_msg] = ACTIONS(1289), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1289), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1289), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1289), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1289), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1289), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1289), - [anon_sym_ATimplementation] = ACTIONS(1291), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym___typeof] = ACTIONS(1289), - [anon_sym___typeof__] = ACTIONS(1289), - [sym_self] = ACTIONS(1289), - [sym_super] = ACTIONS(1289), - [sym_nil] = ACTIONS(1289), - [sym_id] = ACTIONS(1289), - [sym_instancetype] = ACTIONS(1289), - [sym_Class] = ACTIONS(1289), - [sym_SEL] = ACTIONS(1289), - [sym_IMP] = ACTIONS(1289), - [sym_BOOL] = ACTIONS(1289), - [sym_auto] = ACTIONS(1289), - [anon_sym_ATautoreleasepool] = ACTIONS(1291), - [anon_sym_ATsynchronized] = ACTIONS(1291), - [anon_sym_ATtry] = ACTIONS(1291), - [anon_sym_ATcatch] = ACTIONS(1291), - [anon_sym_ATfinally] = ACTIONS(1291), - [anon_sym_ATthrow] = ACTIONS(1291), - [anon_sym_ATselector] = ACTIONS(1291), - [anon_sym_ATencode] = ACTIONS(1291), - [anon_sym_AT] = ACTIONS(1289), - [sym_YES] = ACTIONS(1289), - [sym_NO] = ACTIONS(1289), - [anon_sym___builtin_available] = ACTIONS(1289), - [anon_sym_ATavailable] = ACTIONS(1291), - [anon_sym_va_arg] = ACTIONS(1289), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [94] = { - [sym_identifier] = ACTIONS(1293), - [aux_sym_preproc_include_token1] = ACTIONS(1295), - [aux_sym_preproc_def_token1] = ACTIONS(1295), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_if_token2] = ACTIONS(1293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1293), - [aux_sym_preproc_else_token1] = ACTIONS(1293), - [aux_sym_preproc_elif_token1] = ACTIONS(1293), - [anon_sym_LPAREN2] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_TILDE] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_STAR] = ACTIONS(1295), - [anon_sym_CARET] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(1295), - [anon_sym_SEMI] = ACTIONS(1295), [anon_sym_typedef] = ACTIONS(1293), [anon_sym_extern] = ACTIONS(1293), [anon_sym___attribute] = ACTIONS(1293), @@ -42093,8 +41944,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1293), [anon_sym___thiscall] = ACTIONS(1293), [anon_sym___vectorcall] = ACTIONS(1293), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1291), + [anon_sym_RBRACE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1291), [anon_sym_static] = ACTIONS(1293), [anon_sym_auto] = ACTIONS(1293), [anon_sym_register] = ACTIONS(1293), @@ -42137,9 +41989,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1293), [sym_primitive_type] = ACTIONS(1293), [anon_sym_enum] = ACTIONS(1293), - [anon_sym_NS_ENUM] = ACTIONS(1293), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1293), - [anon_sym_NS_OPTIONS] = ACTIONS(1293), [anon_sym_struct] = ACTIONS(1293), [anon_sym_union] = ACTIONS(1293), [anon_sym_if] = ACTIONS(1293), @@ -42154,31 +42003,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1293), [anon_sym_continue] = ACTIONS(1293), [anon_sym_goto] = ACTIONS(1293), - [anon_sym_DASH_DASH] = ACTIONS(1295), - [anon_sym_PLUS_PLUS] = ACTIONS(1295), + [anon_sym_DASH_DASH] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1291), [anon_sym_sizeof] = ACTIONS(1293), - [sym_number_literal] = ACTIONS(1295), - [anon_sym_L_SQUOTE] = ACTIONS(1295), - [anon_sym_u_SQUOTE] = ACTIONS(1295), - [anon_sym_U_SQUOTE] = ACTIONS(1295), - [anon_sym_u8_SQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1295), - [anon_sym_L_DQUOTE] = ACTIONS(1295), - [anon_sym_u_DQUOTE] = ACTIONS(1295), - [anon_sym_U_DQUOTE] = ACTIONS(1295), - [anon_sym_u8_DQUOTE] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1295), + [sym_number_literal] = ACTIONS(1291), + [anon_sym_L_SQUOTE] = ACTIONS(1291), + [anon_sym_u_SQUOTE] = ACTIONS(1291), + [anon_sym_U_SQUOTE] = ACTIONS(1291), + [anon_sym_u8_SQUOTE] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_L_DQUOTE] = ACTIONS(1291), + [anon_sym_u_DQUOTE] = ACTIONS(1291), + [anon_sym_U_DQUOTE] = ACTIONS(1291), + [anon_sym_u8_DQUOTE] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1291), [sym_true] = ACTIONS(1293), [sym_false] = ACTIONS(1293), [sym_null] = ACTIONS(1293), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1295), - [anon_sym_ATimport] = ACTIONS(1295), + [anon_sym_POUNDimport] = ACTIONS(1291), + [anon_sym_ATimport] = ACTIONS(1291), [sym__ns_assume_nonnull_declaration] = ACTIONS(1293), - [anon_sym_ATcompatibility_alias] = ACTIONS(1295), - [anon_sym_ATprotocol] = ACTIONS(1295), - [anon_sym_ATclass] = ACTIONS(1295), - [anon_sym_ATinterface] = ACTIONS(1295), + [anon_sym_ATcompatibility_alias] = ACTIONS(1291), + [anon_sym_ATprotocol] = ACTIONS(1291), + [anon_sym_ATclass] = ACTIONS(1291), + [anon_sym_ATinterface] = ACTIONS(1291), [sym_class_interface_attribute_sepcifier] = ACTIONS(1293), [sym_method_attribute_specifier] = ACTIONS(1293), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1293), @@ -42205,7 +42054,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1293), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1293), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1293), - [anon_sym_ATimplementation] = ACTIONS(1295), + [anon_sym_ATimplementation] = ACTIONS(1291), + [anon_sym_NS_ENUM] = ACTIONS(1293), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1293), + [anon_sym_NS_OPTIONS] = ACTIONS(1293), [anon_sym_typeof] = ACTIONS(1293), [anon_sym___typeof] = ACTIONS(1293), [anon_sym___typeof__] = ACTIONS(1293), @@ -42219,6 +42071,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1293), [sym_BOOL] = ACTIONS(1293), [sym_auto] = ACTIONS(1293), + [anon_sym_ATautoreleasepool] = ACTIONS(1291), + [anon_sym_ATsynchronized] = ACTIONS(1291), + [anon_sym_ATtry] = ACTIONS(1291), + [anon_sym_ATcatch] = ACTIONS(1291), + [anon_sym_ATfinally] = ACTIONS(1291), + [anon_sym_ATthrow] = ACTIONS(1291), + [anon_sym_ATselector] = ACTIONS(1291), + [anon_sym_ATencode] = ACTIONS(1291), + [anon_sym_AT] = ACTIONS(1293), + [sym_YES] = ACTIONS(1293), + [sym_NO] = ACTIONS(1293), + [anon_sym___builtin_available] = ACTIONS(1293), + [anon_sym_ATavailable] = ACTIONS(1291), + [anon_sym_va_arg] = ACTIONS(1293), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [94] = { + [ts_builtin_sym_end] = ACTIONS(1265), + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_include_token1] = ACTIONS(1265), + [aux_sym_preproc_def_token1] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1265), + [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym_in] = ACTIONS(1267), + [anon_sym_out] = ACTIONS(1267), + [anon_sym_inout] = ACTIONS(1267), + [anon_sym_bycopy] = ACTIONS(1267), + [anon_sym_byref] = ACTIONS(1267), + [anon_sym_oneway] = ACTIONS(1267), + [anon_sym__Nullable] = ACTIONS(1267), + [anon_sym__Nonnull] = ACTIONS(1267), + [anon_sym__Nullable_result] = ACTIONS(1267), + [anon_sym__Null_unspecified] = ACTIONS(1267), + [anon_sym___autoreleasing] = ACTIONS(1267), + [anon_sym___nullable] = ACTIONS(1267), + [anon_sym___nonnull] = ACTIONS(1267), + [anon_sym___strong] = ACTIONS(1267), + [anon_sym___weak] = ACTIONS(1267), + [anon_sym___bridge] = ACTIONS(1267), + [anon_sym___bridge_transfer] = ACTIONS(1267), + [anon_sym___bridge_retained] = ACTIONS(1267), + [anon_sym___unsafe_unretained] = ACTIONS(1267), + [anon_sym___block] = ACTIONS(1267), + [anon_sym___kindof] = ACTIONS(1267), + [anon_sym___unused] = ACTIONS(1267), + [anon_sym__Complex] = ACTIONS(1267), + [anon_sym___complex] = ACTIONS(1267), + [anon_sym_IBOutlet] = ACTIONS(1267), + [anon_sym_IBInspectable] = ACTIONS(1267), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1267), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_sizeof] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1265), + [anon_sym_L_SQUOTE] = ACTIONS(1265), + [anon_sym_u_SQUOTE] = ACTIONS(1265), + [anon_sym_U_SQUOTE] = ACTIONS(1265), + [anon_sym_u8_SQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_L_DQUOTE] = ACTIONS(1265), + [anon_sym_u_DQUOTE] = ACTIONS(1265), + [anon_sym_U_DQUOTE] = ACTIONS(1265), + [anon_sym_u8_DQUOTE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [sym_null] = ACTIONS(1267), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1265), + [anon_sym_ATimport] = ACTIONS(1265), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1267), + [anon_sym_ATcompatibility_alias] = ACTIONS(1265), + [anon_sym_ATprotocol] = ACTIONS(1265), + [anon_sym_ATclass] = ACTIONS(1265), + [anon_sym_ATinterface] = ACTIONS(1265), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1267), + [sym_method_attribute_specifier] = ACTIONS(1267), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1267), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1267), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1267), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1267), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1267), + [anon_sym_NS_AVAILABLE] = ACTIONS(1267), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1267), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_API_AVAILABLE] = ACTIONS(1267), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_API_DEPRECATED] = ACTIONS(1267), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1267), + [anon_sym___deprecated_msg] = ACTIONS(1267), + [anon_sym___deprecated_enum_msg] = ACTIONS(1267), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1267), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1267), + [anon_sym_ATimplementation] = ACTIONS(1265), + [anon_sym_NS_ENUM] = ACTIONS(1267), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1267), + [anon_sym_NS_OPTIONS] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1267), + [anon_sym___typeof] = ACTIONS(1267), + [anon_sym___typeof__] = ACTIONS(1267), + [sym_self] = ACTIONS(1267), + [sym_super] = ACTIONS(1267), + [sym_nil] = ACTIONS(1267), + [sym_id] = ACTIONS(1267), + [sym_instancetype] = ACTIONS(1267), + [sym_Class] = ACTIONS(1267), + [sym_SEL] = ACTIONS(1267), + [sym_IMP] = ACTIONS(1267), + [sym_BOOL] = ACTIONS(1267), + [sym_auto] = ACTIONS(1267), + [anon_sym_ATautoreleasepool] = ACTIONS(1265), + [anon_sym_ATsynchronized] = ACTIONS(1265), + [anon_sym_ATtry] = ACTIONS(1265), + [anon_sym_ATcatch] = ACTIONS(1265), + [anon_sym_ATfinally] = ACTIONS(1265), + [anon_sym_ATthrow] = ACTIONS(1265), + [anon_sym_ATselector] = ACTIONS(1265), + [anon_sym_ATencode] = ACTIONS(1265), + [anon_sym_AT] = ACTIONS(1267), + [sym_YES] = ACTIONS(1267), + [sym_NO] = ACTIONS(1267), + [anon_sym___builtin_available] = ACTIONS(1267), + [anon_sym_ATavailable] = ACTIONS(1265), + [anon_sym_va_arg] = ACTIONS(1267), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [95] = { + [ts_builtin_sym_end] = ACTIONS(1295), + [sym_identifier] = ACTIONS(1297), + [aux_sym_preproc_include_token1] = ACTIONS(1295), + [aux_sym_preproc_def_token1] = ACTIONS(1295), + [anon_sym_RPAREN] = ACTIONS(1295), + [aux_sym_preproc_if_token1] = ACTIONS(1297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1297), + [anon_sym_LPAREN2] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_STAR] = ACTIONS(1295), + [anon_sym_CARET] = ACTIONS(1295), + [anon_sym_AMP] = ACTIONS(1295), + [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1297), + [anon_sym___attribute] = ACTIONS(1297), + [anon_sym___attribute__] = ACTIONS(1297), + [anon_sym___declspec] = ACTIONS(1297), + [anon_sym___cdecl] = ACTIONS(1297), + [anon_sym___clrcall] = ACTIONS(1297), + [anon_sym___stdcall] = ACTIONS(1297), + [anon_sym___fastcall] = ACTIONS(1297), + [anon_sym___thiscall] = ACTIONS(1297), + [anon_sym___vectorcall] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_RBRACE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1297), + [anon_sym_auto] = ACTIONS(1297), + [anon_sym_register] = ACTIONS(1297), + [anon_sym_inline] = ACTIONS(1297), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_volatile] = ACTIONS(1297), + [anon_sym_restrict] = ACTIONS(1297), + [anon_sym__Atomic] = ACTIONS(1297), + [anon_sym_in] = ACTIONS(1297), + [anon_sym_out] = ACTIONS(1297), + [anon_sym_inout] = ACTIONS(1297), + [anon_sym_bycopy] = ACTIONS(1297), + [anon_sym_byref] = ACTIONS(1297), + [anon_sym_oneway] = ACTIONS(1297), + [anon_sym__Nullable] = ACTIONS(1297), + [anon_sym__Nonnull] = ACTIONS(1297), + [anon_sym__Nullable_result] = ACTIONS(1297), + [anon_sym__Null_unspecified] = ACTIONS(1297), + [anon_sym___autoreleasing] = ACTIONS(1297), + [anon_sym___nullable] = ACTIONS(1297), + [anon_sym___nonnull] = ACTIONS(1297), + [anon_sym___strong] = ACTIONS(1297), + [anon_sym___weak] = ACTIONS(1297), + [anon_sym___bridge] = ACTIONS(1297), + [anon_sym___bridge_transfer] = ACTIONS(1297), + [anon_sym___bridge_retained] = ACTIONS(1297), + [anon_sym___unsafe_unretained] = ACTIONS(1297), + [anon_sym___block] = ACTIONS(1297), + [anon_sym___kindof] = ACTIONS(1297), + [anon_sym___unused] = ACTIONS(1297), + [anon_sym__Complex] = ACTIONS(1297), + [anon_sym___complex] = ACTIONS(1297), + [anon_sym_IBOutlet] = ACTIONS(1297), + [anon_sym_IBInspectable] = ACTIONS(1297), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1297), + [anon_sym_signed] = ACTIONS(1297), + [anon_sym_unsigned] = ACTIONS(1297), + [anon_sym_long] = ACTIONS(1297), + [anon_sym_short] = ACTIONS(1297), + [sym_primitive_type] = ACTIONS(1297), + [anon_sym_enum] = ACTIONS(1297), + [anon_sym_struct] = ACTIONS(1297), + [anon_sym_union] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1297), + [anon_sym_else] = ACTIONS(1297), + [anon_sym_switch] = ACTIONS(1297), + [anon_sym_case] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_while] = ACTIONS(1297), + [anon_sym_do] = ACTIONS(1297), + [anon_sym_for] = ACTIONS(1297), + [anon_sym_return] = ACTIONS(1297), + [anon_sym_break] = ACTIONS(1297), + [anon_sym_continue] = ACTIONS(1297), + [anon_sym_goto] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1295), + [anon_sym_sizeof] = ACTIONS(1297), + [sym_number_literal] = ACTIONS(1295), + [anon_sym_L_SQUOTE] = ACTIONS(1295), + [anon_sym_u_SQUOTE] = ACTIONS(1295), + [anon_sym_U_SQUOTE] = ACTIONS(1295), + [anon_sym_u8_SQUOTE] = ACTIONS(1295), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_L_DQUOTE] = ACTIONS(1295), + [anon_sym_u_DQUOTE] = ACTIONS(1295), + [anon_sym_U_DQUOTE] = ACTIONS(1295), + [anon_sym_u8_DQUOTE] = ACTIONS(1295), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1295), + [anon_sym_ATimport] = ACTIONS(1295), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1297), + [anon_sym_ATcompatibility_alias] = ACTIONS(1295), + [anon_sym_ATprotocol] = ACTIONS(1295), + [anon_sym_ATclass] = ACTIONS(1295), + [anon_sym_ATinterface] = ACTIONS(1295), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1297), + [sym_method_attribute_specifier] = ACTIONS(1297), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1297), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1297), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1297), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1297), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1297), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1297), + [anon_sym_NS_AVAILABLE] = ACTIONS(1297), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1297), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1297), + [anon_sym_API_AVAILABLE] = ACTIONS(1297), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1297), + [anon_sym_API_DEPRECATED] = ACTIONS(1297), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1297), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1297), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1297), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1297), + [anon_sym___deprecated_msg] = ACTIONS(1297), + [anon_sym___deprecated_enum_msg] = ACTIONS(1297), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1297), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1297), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1297), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1297), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1297), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1297), + [anon_sym_ATimplementation] = ACTIONS(1295), + [anon_sym_NS_ENUM] = ACTIONS(1297), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1297), + [anon_sym_NS_OPTIONS] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym___typeof] = ACTIONS(1297), + [anon_sym___typeof__] = ACTIONS(1297), + [sym_self] = ACTIONS(1297), + [sym_super] = ACTIONS(1297), + [sym_nil] = ACTIONS(1297), + [sym_id] = ACTIONS(1297), + [sym_instancetype] = ACTIONS(1297), + [sym_Class] = ACTIONS(1297), + [sym_SEL] = ACTIONS(1297), + [sym_IMP] = ACTIONS(1297), + [sym_BOOL] = ACTIONS(1297), + [sym_auto] = ACTIONS(1297), [anon_sym_ATautoreleasepool] = ACTIONS(1295), [anon_sym_ATsynchronized] = ACTIONS(1295), [anon_sym_ATtry] = ACTIONS(1295), @@ -42227,392 +42433,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATthrow] = ACTIONS(1295), [anon_sym_ATselector] = ACTIONS(1295), [anon_sym_ATencode] = ACTIONS(1295), - [anon_sym_AT] = ACTIONS(1293), - [sym_YES] = ACTIONS(1293), - [sym_NO] = ACTIONS(1293), - [anon_sym___builtin_available] = ACTIONS(1293), - [anon_sym_ATavailable] = ACTIONS(1295), - [anon_sym_va_arg] = ACTIONS(1293), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [95] = { - [sym_identifier] = ACTIONS(1297), - [aux_sym_preproc_include_token1] = ACTIONS(1299), - [aux_sym_preproc_def_token1] = ACTIONS(1299), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_if_token2] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1297), - [aux_sym_preproc_else_token1] = ACTIONS(1297), - [aux_sym_preproc_elif_token1] = ACTIONS(1297), - [anon_sym_LPAREN2] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_STAR] = ACTIONS(1299), - [anon_sym_CARET] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1299), - [anon_sym_typedef] = ACTIONS(1297), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym___attribute] = ACTIONS(1297), - [anon_sym___attribute__] = ACTIONS(1297), - [anon_sym___declspec] = ACTIONS(1297), - [anon_sym___cdecl] = ACTIONS(1297), - [anon_sym___clrcall] = ACTIONS(1297), - [anon_sym___stdcall] = ACTIONS(1297), - [anon_sym___fastcall] = ACTIONS(1297), - [anon_sym___thiscall] = ACTIONS(1297), - [anon_sym___vectorcall] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_auto] = ACTIONS(1297), - [anon_sym_register] = ACTIONS(1297), - [anon_sym_inline] = ACTIONS(1297), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_volatile] = ACTIONS(1297), - [anon_sym_restrict] = ACTIONS(1297), - [anon_sym__Atomic] = ACTIONS(1297), - [anon_sym_in] = ACTIONS(1297), - [anon_sym_out] = ACTIONS(1297), - [anon_sym_inout] = ACTIONS(1297), - [anon_sym_bycopy] = ACTIONS(1297), - [anon_sym_byref] = ACTIONS(1297), - [anon_sym_oneway] = ACTIONS(1297), - [anon_sym__Nullable] = ACTIONS(1297), - [anon_sym__Nonnull] = ACTIONS(1297), - [anon_sym__Nullable_result] = ACTIONS(1297), - [anon_sym__Null_unspecified] = ACTIONS(1297), - [anon_sym___autoreleasing] = ACTIONS(1297), - [anon_sym___nullable] = ACTIONS(1297), - [anon_sym___nonnull] = ACTIONS(1297), - [anon_sym___strong] = ACTIONS(1297), - [anon_sym___weak] = ACTIONS(1297), - [anon_sym___bridge] = ACTIONS(1297), - [anon_sym___bridge_transfer] = ACTIONS(1297), - [anon_sym___bridge_retained] = ACTIONS(1297), - [anon_sym___unsafe_unretained] = ACTIONS(1297), - [anon_sym___block] = ACTIONS(1297), - [anon_sym___kindof] = ACTIONS(1297), - [anon_sym___unused] = ACTIONS(1297), - [anon_sym__Complex] = ACTIONS(1297), - [anon_sym___complex] = ACTIONS(1297), - [anon_sym_IBOutlet] = ACTIONS(1297), - [anon_sym_IBInspectable] = ACTIONS(1297), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1297), - [anon_sym_unsigned] = ACTIONS(1297), - [anon_sym_long] = ACTIONS(1297), - [anon_sym_short] = ACTIONS(1297), - [sym_primitive_type] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_NS_ENUM] = ACTIONS(1297), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1297), - [anon_sym_NS_OPTIONS] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_else] = ACTIONS(1297), - [anon_sym_switch] = ACTIONS(1297), - [anon_sym_case] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_do] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_goto] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_sizeof] = ACTIONS(1297), - [sym_number_literal] = ACTIONS(1299), - [anon_sym_L_SQUOTE] = ACTIONS(1299), - [anon_sym_u_SQUOTE] = ACTIONS(1299), - [anon_sym_U_SQUOTE] = ACTIONS(1299), - [anon_sym_u8_SQUOTE] = ACTIONS(1299), - [anon_sym_SQUOTE] = ACTIONS(1299), - [anon_sym_L_DQUOTE] = ACTIONS(1299), - [anon_sym_u_DQUOTE] = ACTIONS(1299), - [anon_sym_U_DQUOTE] = ACTIONS(1299), - [anon_sym_u8_DQUOTE] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [sym_null] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1299), - [anon_sym_ATimport] = ACTIONS(1299), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1297), - [anon_sym_ATcompatibility_alias] = ACTIONS(1299), - [anon_sym_ATprotocol] = ACTIONS(1299), - [anon_sym_ATclass] = ACTIONS(1299), - [anon_sym_ATinterface] = ACTIONS(1299), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1297), - [sym_method_attribute_specifier] = ACTIONS(1297), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1297), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1297), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1297), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1297), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1297), - [anon_sym_NS_AVAILABLE] = ACTIONS(1297), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1297), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_API_AVAILABLE] = ACTIONS(1297), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_API_DEPRECATED] = ACTIONS(1297), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1297), - [anon_sym___deprecated_msg] = ACTIONS(1297), - [anon_sym___deprecated_enum_msg] = ACTIONS(1297), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1297), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1297), - [anon_sym_ATimplementation] = ACTIONS(1299), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym___typeof] = ACTIONS(1297), - [anon_sym___typeof__] = ACTIONS(1297), - [sym_self] = ACTIONS(1297), - [sym_super] = ACTIONS(1297), - [sym_nil] = ACTIONS(1297), - [sym_id] = ACTIONS(1297), - [sym_instancetype] = ACTIONS(1297), - [sym_Class] = ACTIONS(1297), - [sym_SEL] = ACTIONS(1297), - [sym_IMP] = ACTIONS(1297), - [sym_BOOL] = ACTIONS(1297), - [sym_auto] = ACTIONS(1297), - [anon_sym_ATautoreleasepool] = ACTIONS(1299), - [anon_sym_ATsynchronized] = ACTIONS(1299), - [anon_sym_ATtry] = ACTIONS(1299), - [anon_sym_ATcatch] = ACTIONS(1299), - [anon_sym_ATfinally] = ACTIONS(1299), - [anon_sym_ATthrow] = ACTIONS(1299), - [anon_sym_ATselector] = ACTIONS(1299), - [anon_sym_ATencode] = ACTIONS(1299), [anon_sym_AT] = ACTIONS(1297), [sym_YES] = ACTIONS(1297), [sym_NO] = ACTIONS(1297), [anon_sym___builtin_available] = ACTIONS(1297), - [anon_sym_ATavailable] = ACTIONS(1299), + [anon_sym_ATavailable] = ACTIONS(1295), [anon_sym_va_arg] = ACTIONS(1297), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, [96] = { - [sym_identifier] = ACTIONS(1297), + [ts_builtin_sym_end] = ACTIONS(1299), + [sym_identifier] = ACTIONS(1301), [aux_sym_preproc_include_token1] = ACTIONS(1299), [aux_sym_preproc_def_token1] = ACTIONS(1299), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_if_token2] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1297), - [aux_sym_preproc_else_token1] = ACTIONS(1297), - [aux_sym_preproc_elif_token1] = ACTIONS(1297), + [anon_sym_RPAREN] = ACTIONS(1299), + [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1301), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1301), [anon_sym_LPAREN2] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(1299), [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(1299), [anon_sym_CARET] = ACTIONS(1299), [anon_sym_AMP] = ACTIONS(1299), [anon_sym_SEMI] = ACTIONS(1299), - [anon_sym_typedef] = ACTIONS(1297), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym___attribute] = ACTIONS(1297), - [anon_sym___attribute__] = ACTIONS(1297), - [anon_sym___declspec] = ACTIONS(1297), - [anon_sym___cdecl] = ACTIONS(1297), - [anon_sym___clrcall] = ACTIONS(1297), - [anon_sym___stdcall] = ACTIONS(1297), - [anon_sym___fastcall] = ACTIONS(1297), - [anon_sym___thiscall] = ACTIONS(1297), - [anon_sym___vectorcall] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_auto] = ACTIONS(1297), - [anon_sym_register] = ACTIONS(1297), - [anon_sym_inline] = ACTIONS(1297), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_volatile] = ACTIONS(1297), - [anon_sym_restrict] = ACTIONS(1297), - [anon_sym__Atomic] = ACTIONS(1297), - [anon_sym_in] = ACTIONS(1297), - [anon_sym_out] = ACTIONS(1297), - [anon_sym_inout] = ACTIONS(1297), - [anon_sym_bycopy] = ACTIONS(1297), - [anon_sym_byref] = ACTIONS(1297), - [anon_sym_oneway] = ACTIONS(1297), - [anon_sym__Nullable] = ACTIONS(1297), - [anon_sym__Nonnull] = ACTIONS(1297), - [anon_sym__Nullable_result] = ACTIONS(1297), - [anon_sym__Null_unspecified] = ACTIONS(1297), - [anon_sym___autoreleasing] = ACTIONS(1297), - [anon_sym___nullable] = ACTIONS(1297), - [anon_sym___nonnull] = ACTIONS(1297), - [anon_sym___strong] = ACTIONS(1297), - [anon_sym___weak] = ACTIONS(1297), - [anon_sym___bridge] = ACTIONS(1297), - [anon_sym___bridge_transfer] = ACTIONS(1297), - [anon_sym___bridge_retained] = ACTIONS(1297), - [anon_sym___unsafe_unretained] = ACTIONS(1297), - [anon_sym___block] = ACTIONS(1297), - [anon_sym___kindof] = ACTIONS(1297), - [anon_sym___unused] = ACTIONS(1297), - [anon_sym__Complex] = ACTIONS(1297), - [anon_sym___complex] = ACTIONS(1297), - [anon_sym_IBOutlet] = ACTIONS(1297), - [anon_sym_IBInspectable] = ACTIONS(1297), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1297), - [anon_sym_unsigned] = ACTIONS(1297), - [anon_sym_long] = ACTIONS(1297), - [anon_sym_short] = ACTIONS(1297), - [sym_primitive_type] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_NS_ENUM] = ACTIONS(1297), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1297), - [anon_sym_NS_OPTIONS] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_else] = ACTIONS(1297), - [anon_sym_switch] = ACTIONS(1297), - [anon_sym_case] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_do] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_goto] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_sizeof] = ACTIONS(1297), - [sym_number_literal] = ACTIONS(1299), - [anon_sym_L_SQUOTE] = ACTIONS(1299), - [anon_sym_u_SQUOTE] = ACTIONS(1299), - [anon_sym_U_SQUOTE] = ACTIONS(1299), - [anon_sym_u8_SQUOTE] = ACTIONS(1299), - [anon_sym_SQUOTE] = ACTIONS(1299), - [anon_sym_L_DQUOTE] = ACTIONS(1299), - [anon_sym_u_DQUOTE] = ACTIONS(1299), - [anon_sym_U_DQUOTE] = ACTIONS(1299), - [anon_sym_u8_DQUOTE] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [sym_null] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1299), - [anon_sym_ATimport] = ACTIONS(1299), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1297), - [anon_sym_ATcompatibility_alias] = ACTIONS(1299), - [anon_sym_ATprotocol] = ACTIONS(1299), - [anon_sym_ATclass] = ACTIONS(1299), - [anon_sym_ATinterface] = ACTIONS(1299), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1297), - [sym_method_attribute_specifier] = ACTIONS(1297), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1297), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1297), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1297), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1297), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1297), - [anon_sym_NS_AVAILABLE] = ACTIONS(1297), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1297), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_API_AVAILABLE] = ACTIONS(1297), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_API_DEPRECATED] = ACTIONS(1297), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1297), - [anon_sym___deprecated_msg] = ACTIONS(1297), - [anon_sym___deprecated_enum_msg] = ACTIONS(1297), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1297), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1297), - [anon_sym_ATimplementation] = ACTIONS(1299), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym___typeof] = ACTIONS(1297), - [anon_sym___typeof__] = ACTIONS(1297), - [sym_self] = ACTIONS(1297), - [sym_super] = ACTIONS(1297), - [sym_nil] = ACTIONS(1297), - [sym_id] = ACTIONS(1297), - [sym_instancetype] = ACTIONS(1297), - [sym_Class] = ACTIONS(1297), - [sym_SEL] = ACTIONS(1297), - [sym_IMP] = ACTIONS(1297), - [sym_BOOL] = ACTIONS(1297), - [sym_auto] = ACTIONS(1297), - [anon_sym_ATautoreleasepool] = ACTIONS(1299), - [anon_sym_ATsynchronized] = ACTIONS(1299), - [anon_sym_ATtry] = ACTIONS(1299), - [anon_sym_ATcatch] = ACTIONS(1299), - [anon_sym_ATfinally] = ACTIONS(1299), - [anon_sym_ATthrow] = ACTIONS(1299), - [anon_sym_ATselector] = ACTIONS(1299), - [anon_sym_ATencode] = ACTIONS(1299), - [anon_sym_AT] = ACTIONS(1297), - [sym_YES] = ACTIONS(1297), - [sym_NO] = ACTIONS(1297), - [anon_sym___builtin_available] = ACTIONS(1297), - [anon_sym_ATavailable] = ACTIONS(1299), - [anon_sym_va_arg] = ACTIONS(1297), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [97] = { - [sym_identifier] = ACTIONS(1301), - [aux_sym_preproc_include_token1] = ACTIONS(1303), - [aux_sym_preproc_def_token1] = ACTIONS(1303), - [aux_sym_preproc_if_token1] = ACTIONS(1301), - [aux_sym_preproc_if_token2] = ACTIONS(1301), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1301), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1301), - [aux_sym_preproc_else_token1] = ACTIONS(1301), - [aux_sym_preproc_elif_token1] = ACTIONS(1301), - [anon_sym_LPAREN2] = ACTIONS(1303), - [anon_sym_BANG] = ACTIONS(1303), - [anon_sym_TILDE] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_PLUS] = ACTIONS(1301), - [anon_sym_STAR] = ACTIONS(1303), - [anon_sym_CARET] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1303), [anon_sym_typedef] = ACTIONS(1301), [anon_sym_extern] = ACTIONS(1301), [anon_sym___attribute] = ACTIONS(1301), @@ -42624,8 +42475,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1301), [anon_sym___thiscall] = ACTIONS(1301), [anon_sym___vectorcall] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LBRACK] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1299), + [anon_sym_RBRACE] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1299), [anon_sym_static] = ACTIONS(1301), [anon_sym_auto] = ACTIONS(1301), [anon_sym_register] = ACTIONS(1301), @@ -42668,9 +42520,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1301), [sym_primitive_type] = ACTIONS(1301), [anon_sym_enum] = ACTIONS(1301), - [anon_sym_NS_ENUM] = ACTIONS(1301), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1301), - [anon_sym_NS_OPTIONS] = ACTIONS(1301), [anon_sym_struct] = ACTIONS(1301), [anon_sym_union] = ACTIONS(1301), [anon_sym_if] = ACTIONS(1301), @@ -42685,31 +42534,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1301), [anon_sym_continue] = ACTIONS(1301), [anon_sym_goto] = ACTIONS(1301), - [anon_sym_DASH_DASH] = ACTIONS(1303), - [anon_sym_PLUS_PLUS] = ACTIONS(1303), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), [anon_sym_sizeof] = ACTIONS(1301), - [sym_number_literal] = ACTIONS(1303), - [anon_sym_L_SQUOTE] = ACTIONS(1303), - [anon_sym_u_SQUOTE] = ACTIONS(1303), - [anon_sym_U_SQUOTE] = ACTIONS(1303), - [anon_sym_u8_SQUOTE] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1303), - [anon_sym_L_DQUOTE] = ACTIONS(1303), - [anon_sym_u_DQUOTE] = ACTIONS(1303), - [anon_sym_U_DQUOTE] = ACTIONS(1303), - [anon_sym_u8_DQUOTE] = ACTIONS(1303), - [anon_sym_DQUOTE] = ACTIONS(1303), + [sym_number_literal] = ACTIONS(1299), + [anon_sym_L_SQUOTE] = ACTIONS(1299), + [anon_sym_u_SQUOTE] = ACTIONS(1299), + [anon_sym_U_SQUOTE] = ACTIONS(1299), + [anon_sym_u8_SQUOTE] = ACTIONS(1299), + [anon_sym_SQUOTE] = ACTIONS(1299), + [anon_sym_L_DQUOTE] = ACTIONS(1299), + [anon_sym_u_DQUOTE] = ACTIONS(1299), + [anon_sym_U_DQUOTE] = ACTIONS(1299), + [anon_sym_u8_DQUOTE] = ACTIONS(1299), + [anon_sym_DQUOTE] = ACTIONS(1299), [sym_true] = ACTIONS(1301), [sym_false] = ACTIONS(1301), [sym_null] = ACTIONS(1301), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1303), - [anon_sym_ATimport] = ACTIONS(1303), + [anon_sym_POUNDimport] = ACTIONS(1299), + [anon_sym_ATimport] = ACTIONS(1299), [sym__ns_assume_nonnull_declaration] = ACTIONS(1301), - [anon_sym_ATcompatibility_alias] = ACTIONS(1303), - [anon_sym_ATprotocol] = ACTIONS(1303), - [anon_sym_ATclass] = ACTIONS(1303), - [anon_sym_ATinterface] = ACTIONS(1303), + [anon_sym_ATcompatibility_alias] = ACTIONS(1299), + [anon_sym_ATprotocol] = ACTIONS(1299), + [anon_sym_ATclass] = ACTIONS(1299), + [anon_sym_ATinterface] = ACTIONS(1299), [sym_class_interface_attribute_sepcifier] = ACTIONS(1301), [sym_method_attribute_specifier] = ACTIONS(1301), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1301), @@ -42736,7 +42585,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1301), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1301), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1301), - [anon_sym_ATimplementation] = ACTIONS(1303), + [anon_sym_ATimplementation] = ACTIONS(1299), + [anon_sym_NS_ENUM] = ACTIONS(1301), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1301), + [anon_sym_NS_OPTIONS] = ACTIONS(1301), [anon_sym_typeof] = ACTIONS(1301), [anon_sym___typeof] = ACTIONS(1301), [anon_sym___typeof__] = ACTIONS(1301), @@ -42750,46 +42602,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1301), [sym_BOOL] = ACTIONS(1301), [sym_auto] = ACTIONS(1301), - [anon_sym_ATautoreleasepool] = ACTIONS(1303), - [anon_sym_ATsynchronized] = ACTIONS(1303), - [anon_sym_ATtry] = ACTIONS(1303), - [anon_sym_ATcatch] = ACTIONS(1303), - [anon_sym_ATfinally] = ACTIONS(1303), - [anon_sym_ATthrow] = ACTIONS(1303), - [anon_sym_ATselector] = ACTIONS(1303), - [anon_sym_ATencode] = ACTIONS(1303), + [anon_sym_ATautoreleasepool] = ACTIONS(1299), + [anon_sym_ATsynchronized] = ACTIONS(1299), + [anon_sym_ATtry] = ACTIONS(1299), + [anon_sym_ATcatch] = ACTIONS(1299), + [anon_sym_ATfinally] = ACTIONS(1299), + [anon_sym_ATthrow] = ACTIONS(1299), + [anon_sym_ATselector] = ACTIONS(1299), + [anon_sym_ATencode] = ACTIONS(1299), [anon_sym_AT] = ACTIONS(1301), [sym_YES] = ACTIONS(1301), [sym_NO] = ACTIONS(1301), [anon_sym___builtin_available] = ACTIONS(1301), - [anon_sym_ATavailable] = ACTIONS(1303), + [anon_sym_ATavailable] = ACTIONS(1299), [anon_sym_va_arg] = ACTIONS(1301), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [98] = { + [97] = { + [ts_builtin_sym_end] = ACTIONS(1303), [sym_identifier] = ACTIONS(1305), - [aux_sym_preproc_include_token1] = ACTIONS(1307), - [aux_sym_preproc_def_token1] = ACTIONS(1307), + [aux_sym_preproc_include_token1] = ACTIONS(1303), + [aux_sym_preproc_def_token1] = ACTIONS(1303), + [anon_sym_RPAREN] = ACTIONS(1303), [aux_sym_preproc_if_token1] = ACTIONS(1305), - [aux_sym_preproc_if_token2] = ACTIONS(1305), [aux_sym_preproc_ifdef_token1] = ACTIONS(1305), [aux_sym_preproc_ifdef_token2] = ACTIONS(1305), - [aux_sym_preproc_else_token1] = ACTIONS(1305), - [aux_sym_preproc_elif_token1] = ACTIONS(1305), - [anon_sym_LPAREN2] = ACTIONS(1307), - [anon_sym_BANG] = ACTIONS(1307), - [anon_sym_TILDE] = ACTIONS(1307), + [anon_sym_LPAREN2] = ACTIONS(1303), + [anon_sym_BANG] = ACTIONS(1303), + [anon_sym_TILDE] = ACTIONS(1303), [anon_sym_DASH] = ACTIONS(1305), [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1307), - [anon_sym_CARET] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_CARET] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1303), [anon_sym_typedef] = ACTIONS(1305), [anon_sym_extern] = ACTIONS(1305), [anon_sym___attribute] = ACTIONS(1305), @@ -42801,8 +42652,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1305), [anon_sym___thiscall] = ACTIONS(1305), [anon_sym___vectorcall] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1307), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1303), [anon_sym_static] = ACTIONS(1305), [anon_sym_auto] = ACTIONS(1305), [anon_sym_register] = ACTIONS(1305), @@ -42845,9 +42697,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1305), [sym_primitive_type] = ACTIONS(1305), [anon_sym_enum] = ACTIONS(1305), - [anon_sym_NS_ENUM] = ACTIONS(1305), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1305), - [anon_sym_NS_OPTIONS] = ACTIONS(1305), [anon_sym_struct] = ACTIONS(1305), [anon_sym_union] = ACTIONS(1305), [anon_sym_if] = ACTIONS(1305), @@ -42862,31 +42711,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1305), [anon_sym_continue] = ACTIONS(1305), [anon_sym_goto] = ACTIONS(1305), - [anon_sym_DASH_DASH] = ACTIONS(1307), - [anon_sym_PLUS_PLUS] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1303), + [anon_sym_PLUS_PLUS] = ACTIONS(1303), [anon_sym_sizeof] = ACTIONS(1305), - [sym_number_literal] = ACTIONS(1307), - [anon_sym_L_SQUOTE] = ACTIONS(1307), - [anon_sym_u_SQUOTE] = ACTIONS(1307), - [anon_sym_U_SQUOTE] = ACTIONS(1307), - [anon_sym_u8_SQUOTE] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1307), - [anon_sym_L_DQUOTE] = ACTIONS(1307), - [anon_sym_u_DQUOTE] = ACTIONS(1307), - [anon_sym_U_DQUOTE] = ACTIONS(1307), - [anon_sym_u8_DQUOTE] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), + [sym_number_literal] = ACTIONS(1303), + [anon_sym_L_SQUOTE] = ACTIONS(1303), + [anon_sym_u_SQUOTE] = ACTIONS(1303), + [anon_sym_U_SQUOTE] = ACTIONS(1303), + [anon_sym_u8_SQUOTE] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(1303), + [anon_sym_L_DQUOTE] = ACTIONS(1303), + [anon_sym_u_DQUOTE] = ACTIONS(1303), + [anon_sym_U_DQUOTE] = ACTIONS(1303), + [anon_sym_u8_DQUOTE] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1303), [sym_true] = ACTIONS(1305), [sym_false] = ACTIONS(1305), [sym_null] = ACTIONS(1305), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1307), - [anon_sym_ATimport] = ACTIONS(1307), + [anon_sym_POUNDimport] = ACTIONS(1303), + [anon_sym_ATimport] = ACTIONS(1303), [sym__ns_assume_nonnull_declaration] = ACTIONS(1305), - [anon_sym_ATcompatibility_alias] = ACTIONS(1307), - [anon_sym_ATprotocol] = ACTIONS(1307), - [anon_sym_ATclass] = ACTIONS(1307), - [anon_sym_ATinterface] = ACTIONS(1307), + [anon_sym_ATcompatibility_alias] = ACTIONS(1303), + [anon_sym_ATprotocol] = ACTIONS(1303), + [anon_sym_ATclass] = ACTIONS(1303), + [anon_sym_ATinterface] = ACTIONS(1303), [sym_class_interface_attribute_sepcifier] = ACTIONS(1305), [sym_method_attribute_specifier] = ACTIONS(1305), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1305), @@ -42913,7 +42762,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1305), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1305), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1305), - [anon_sym_ATimplementation] = ACTIONS(1307), + [anon_sym_ATimplementation] = ACTIONS(1303), + [anon_sym_NS_ENUM] = ACTIONS(1305), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1305), + [anon_sym_NS_OPTIONS] = ACTIONS(1305), [anon_sym_typeof] = ACTIONS(1305), [anon_sym___typeof] = ACTIONS(1305), [anon_sym___typeof__] = ACTIONS(1305), @@ -42927,46 +42779,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1305), [sym_BOOL] = ACTIONS(1305), [sym_auto] = ACTIONS(1305), - [anon_sym_ATautoreleasepool] = ACTIONS(1307), - [anon_sym_ATsynchronized] = ACTIONS(1307), - [anon_sym_ATtry] = ACTIONS(1307), - [anon_sym_ATcatch] = ACTIONS(1307), - [anon_sym_ATfinally] = ACTIONS(1307), - [anon_sym_ATthrow] = ACTIONS(1307), - [anon_sym_ATselector] = ACTIONS(1307), - [anon_sym_ATencode] = ACTIONS(1307), + [anon_sym_ATautoreleasepool] = ACTIONS(1303), + [anon_sym_ATsynchronized] = ACTIONS(1303), + [anon_sym_ATtry] = ACTIONS(1303), + [anon_sym_ATcatch] = ACTIONS(1303), + [anon_sym_ATfinally] = ACTIONS(1303), + [anon_sym_ATthrow] = ACTIONS(1303), + [anon_sym_ATselector] = ACTIONS(1303), + [anon_sym_ATencode] = ACTIONS(1303), [anon_sym_AT] = ACTIONS(1305), [sym_YES] = ACTIONS(1305), [sym_NO] = ACTIONS(1305), [anon_sym___builtin_available] = ACTIONS(1305), - [anon_sym_ATavailable] = ACTIONS(1307), + [anon_sym_ATavailable] = ACTIONS(1303), [anon_sym_va_arg] = ACTIONS(1305), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [99] = { + [98] = { + [ts_builtin_sym_end] = ACTIONS(1307), [sym_identifier] = ACTIONS(1309), - [aux_sym_preproc_include_token1] = ACTIONS(1311), - [aux_sym_preproc_def_token1] = ACTIONS(1311), + [aux_sym_preproc_include_token1] = ACTIONS(1307), + [aux_sym_preproc_def_token1] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_if_token2] = ACTIONS(1309), [aux_sym_preproc_ifdef_token1] = ACTIONS(1309), [aux_sym_preproc_ifdef_token2] = ACTIONS(1309), - [aux_sym_preproc_else_token1] = ACTIONS(1309), - [aux_sym_preproc_elif_token1] = ACTIONS(1309), - [anon_sym_LPAREN2] = ACTIONS(1311), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_TILDE] = ACTIONS(1311), + [anon_sym_LPAREN2] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1307), + [anon_sym_TILDE] = ACTIONS(1307), [anon_sym_DASH] = ACTIONS(1309), [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_CARET] = ACTIONS(1311), - [anon_sym_AMP] = ACTIONS(1311), - [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), [anon_sym_typedef] = ACTIONS(1309), [anon_sym_extern] = ACTIONS(1309), [anon_sym___attribute] = ACTIONS(1309), @@ -42978,8 +42829,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1309), [anon_sym___thiscall] = ACTIONS(1309), [anon_sym___vectorcall] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_static] = ACTIONS(1309), [anon_sym_auto] = ACTIONS(1309), [anon_sym_register] = ACTIONS(1309), @@ -43022,9 +42874,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1309), [sym_primitive_type] = ACTIONS(1309), [anon_sym_enum] = ACTIONS(1309), - [anon_sym_NS_ENUM] = ACTIONS(1309), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1309), - [anon_sym_NS_OPTIONS] = ACTIONS(1309), [anon_sym_struct] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1309), [anon_sym_if] = ACTIONS(1309), @@ -43039,31 +42888,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1309), [anon_sym_continue] = ACTIONS(1309), [anon_sym_goto] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1311), - [anon_sym_PLUS_PLUS] = ACTIONS(1311), + [anon_sym_DASH_DASH] = ACTIONS(1307), + [anon_sym_PLUS_PLUS] = ACTIONS(1307), [anon_sym_sizeof] = ACTIONS(1309), - [sym_number_literal] = ACTIONS(1311), - [anon_sym_L_SQUOTE] = ACTIONS(1311), - [anon_sym_u_SQUOTE] = ACTIONS(1311), - [anon_sym_U_SQUOTE] = ACTIONS(1311), - [anon_sym_u8_SQUOTE] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1311), - [anon_sym_L_DQUOTE] = ACTIONS(1311), - [anon_sym_u_DQUOTE] = ACTIONS(1311), - [anon_sym_U_DQUOTE] = ACTIONS(1311), - [anon_sym_u8_DQUOTE] = ACTIONS(1311), - [anon_sym_DQUOTE] = ACTIONS(1311), + [sym_number_literal] = ACTIONS(1307), + [anon_sym_L_SQUOTE] = ACTIONS(1307), + [anon_sym_u_SQUOTE] = ACTIONS(1307), + [anon_sym_U_SQUOTE] = ACTIONS(1307), + [anon_sym_u8_SQUOTE] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1307), + [anon_sym_L_DQUOTE] = ACTIONS(1307), + [anon_sym_u_DQUOTE] = ACTIONS(1307), + [anon_sym_U_DQUOTE] = ACTIONS(1307), + [anon_sym_u8_DQUOTE] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), [sym_true] = ACTIONS(1309), [sym_false] = ACTIONS(1309), [sym_null] = ACTIONS(1309), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1311), - [anon_sym_ATimport] = ACTIONS(1311), + [anon_sym_POUNDimport] = ACTIONS(1307), + [anon_sym_ATimport] = ACTIONS(1307), [sym__ns_assume_nonnull_declaration] = ACTIONS(1309), - [anon_sym_ATcompatibility_alias] = ACTIONS(1311), - [anon_sym_ATprotocol] = ACTIONS(1311), - [anon_sym_ATclass] = ACTIONS(1311), - [anon_sym_ATinterface] = ACTIONS(1311), + [anon_sym_ATcompatibility_alias] = ACTIONS(1307), + [anon_sym_ATprotocol] = ACTIONS(1307), + [anon_sym_ATclass] = ACTIONS(1307), + [anon_sym_ATinterface] = ACTIONS(1307), [sym_class_interface_attribute_sepcifier] = ACTIONS(1309), [sym_method_attribute_specifier] = ACTIONS(1309), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1309), @@ -43090,7 +42939,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1309), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1309), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1309), - [anon_sym_ATimplementation] = ACTIONS(1311), + [anon_sym_ATimplementation] = ACTIONS(1307), + [anon_sym_NS_ENUM] = ACTIONS(1309), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1309), + [anon_sym_NS_OPTIONS] = ACTIONS(1309), [anon_sym_typeof] = ACTIONS(1309), [anon_sym___typeof] = ACTIONS(1309), [anon_sym___typeof__] = ACTIONS(1309), @@ -43104,46 +42956,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1309), [sym_BOOL] = ACTIONS(1309), [sym_auto] = ACTIONS(1309), - [anon_sym_ATautoreleasepool] = ACTIONS(1311), - [anon_sym_ATsynchronized] = ACTIONS(1311), - [anon_sym_ATtry] = ACTIONS(1311), - [anon_sym_ATcatch] = ACTIONS(1311), - [anon_sym_ATfinally] = ACTIONS(1311), - [anon_sym_ATthrow] = ACTIONS(1311), - [anon_sym_ATselector] = ACTIONS(1311), - [anon_sym_ATencode] = ACTIONS(1311), + [anon_sym_ATautoreleasepool] = ACTIONS(1307), + [anon_sym_ATsynchronized] = ACTIONS(1307), + [anon_sym_ATtry] = ACTIONS(1307), + [anon_sym_ATcatch] = ACTIONS(1307), + [anon_sym_ATfinally] = ACTIONS(1307), + [anon_sym_ATthrow] = ACTIONS(1307), + [anon_sym_ATselector] = ACTIONS(1307), + [anon_sym_ATencode] = ACTIONS(1307), [anon_sym_AT] = ACTIONS(1309), [sym_YES] = ACTIONS(1309), [sym_NO] = ACTIONS(1309), [anon_sym___builtin_available] = ACTIONS(1309), - [anon_sym_ATavailable] = ACTIONS(1311), + [anon_sym_ATavailable] = ACTIONS(1307), [anon_sym_va_arg] = ACTIONS(1309), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [100] = { + [99] = { + [ts_builtin_sym_end] = ACTIONS(1311), [sym_identifier] = ACTIONS(1313), - [aux_sym_preproc_include_token1] = ACTIONS(1315), - [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_include_token1] = ACTIONS(1311), + [aux_sym_preproc_def_token1] = ACTIONS(1311), + [anon_sym_RPAREN] = ACTIONS(1311), [aux_sym_preproc_if_token1] = ACTIONS(1313), - [aux_sym_preproc_if_token2] = ACTIONS(1313), [aux_sym_preproc_ifdef_token1] = ACTIONS(1313), [aux_sym_preproc_ifdef_token2] = ACTIONS(1313), - [aux_sym_preproc_else_token1] = ACTIONS(1313), - [aux_sym_preproc_elif_token1] = ACTIONS(1313), - [anon_sym_LPAREN2] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1311), + [anon_sym_BANG] = ACTIONS(1311), + [anon_sym_TILDE] = ACTIONS(1311), [anon_sym_DASH] = ACTIONS(1313), [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_CARET] = ACTIONS(1315), - [anon_sym_AMP] = ACTIONS(1315), - [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1311), [anon_sym_typedef] = ACTIONS(1313), [anon_sym_extern] = ACTIONS(1313), [anon_sym___attribute] = ACTIONS(1313), @@ -43155,8 +43006,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1313), [anon_sym___thiscall] = ACTIONS(1313), [anon_sym___vectorcall] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1315), - [anon_sym_LBRACK] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1311), [anon_sym_static] = ACTIONS(1313), [anon_sym_auto] = ACTIONS(1313), [anon_sym_register] = ACTIONS(1313), @@ -43199,9 +43051,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1313), [sym_primitive_type] = ACTIONS(1313), [anon_sym_enum] = ACTIONS(1313), - [anon_sym_NS_ENUM] = ACTIONS(1313), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1313), - [anon_sym_NS_OPTIONS] = ACTIONS(1313), [anon_sym_struct] = ACTIONS(1313), [anon_sym_union] = ACTIONS(1313), [anon_sym_if] = ACTIONS(1313), @@ -43216,31 +43065,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1313), [anon_sym_continue] = ACTIONS(1313), [anon_sym_goto] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), + [anon_sym_DASH_DASH] = ACTIONS(1311), + [anon_sym_PLUS_PLUS] = ACTIONS(1311), [anon_sym_sizeof] = ACTIONS(1313), - [sym_number_literal] = ACTIONS(1315), - [anon_sym_L_SQUOTE] = ACTIONS(1315), - [anon_sym_u_SQUOTE] = ACTIONS(1315), - [anon_sym_U_SQUOTE] = ACTIONS(1315), - [anon_sym_u8_SQUOTE] = ACTIONS(1315), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_L_DQUOTE] = ACTIONS(1315), - [anon_sym_u_DQUOTE] = ACTIONS(1315), - [anon_sym_U_DQUOTE] = ACTIONS(1315), - [anon_sym_u8_DQUOTE] = ACTIONS(1315), - [anon_sym_DQUOTE] = ACTIONS(1315), + [sym_number_literal] = ACTIONS(1311), + [anon_sym_L_SQUOTE] = ACTIONS(1311), + [anon_sym_u_SQUOTE] = ACTIONS(1311), + [anon_sym_U_SQUOTE] = ACTIONS(1311), + [anon_sym_u8_SQUOTE] = ACTIONS(1311), + [anon_sym_SQUOTE] = ACTIONS(1311), + [anon_sym_L_DQUOTE] = ACTIONS(1311), + [anon_sym_u_DQUOTE] = ACTIONS(1311), + [anon_sym_U_DQUOTE] = ACTIONS(1311), + [anon_sym_u8_DQUOTE] = ACTIONS(1311), + [anon_sym_DQUOTE] = ACTIONS(1311), [sym_true] = ACTIONS(1313), [sym_false] = ACTIONS(1313), [sym_null] = ACTIONS(1313), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1315), - [anon_sym_ATimport] = ACTIONS(1315), + [anon_sym_POUNDimport] = ACTIONS(1311), + [anon_sym_ATimport] = ACTIONS(1311), [sym__ns_assume_nonnull_declaration] = ACTIONS(1313), - [anon_sym_ATcompatibility_alias] = ACTIONS(1315), - [anon_sym_ATprotocol] = ACTIONS(1315), - [anon_sym_ATclass] = ACTIONS(1315), - [anon_sym_ATinterface] = ACTIONS(1315), + [anon_sym_ATcompatibility_alias] = ACTIONS(1311), + [anon_sym_ATprotocol] = ACTIONS(1311), + [anon_sym_ATclass] = ACTIONS(1311), + [anon_sym_ATinterface] = ACTIONS(1311), [sym_class_interface_attribute_sepcifier] = ACTIONS(1313), [sym_method_attribute_specifier] = ACTIONS(1313), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1313), @@ -43267,7 +43116,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1313), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1313), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1313), - [anon_sym_ATimplementation] = ACTIONS(1315), + [anon_sym_ATimplementation] = ACTIONS(1311), + [anon_sym_NS_ENUM] = ACTIONS(1313), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1313), + [anon_sym_NS_OPTIONS] = ACTIONS(1313), [anon_sym_typeof] = ACTIONS(1313), [anon_sym___typeof] = ACTIONS(1313), [anon_sym___typeof__] = ACTIONS(1313), @@ -43281,46 +43133,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1313), [sym_BOOL] = ACTIONS(1313), [sym_auto] = ACTIONS(1313), - [anon_sym_ATautoreleasepool] = ACTIONS(1315), - [anon_sym_ATsynchronized] = ACTIONS(1315), - [anon_sym_ATtry] = ACTIONS(1315), - [anon_sym_ATcatch] = ACTIONS(1315), - [anon_sym_ATfinally] = ACTIONS(1315), - [anon_sym_ATthrow] = ACTIONS(1315), - [anon_sym_ATselector] = ACTIONS(1315), - [anon_sym_ATencode] = ACTIONS(1315), + [anon_sym_ATautoreleasepool] = ACTIONS(1311), + [anon_sym_ATsynchronized] = ACTIONS(1311), + [anon_sym_ATtry] = ACTIONS(1311), + [anon_sym_ATcatch] = ACTIONS(1311), + [anon_sym_ATfinally] = ACTIONS(1311), + [anon_sym_ATthrow] = ACTIONS(1311), + [anon_sym_ATselector] = ACTIONS(1311), + [anon_sym_ATencode] = ACTIONS(1311), [anon_sym_AT] = ACTIONS(1313), [sym_YES] = ACTIONS(1313), [sym_NO] = ACTIONS(1313), [anon_sym___builtin_available] = ACTIONS(1313), - [anon_sym_ATavailable] = ACTIONS(1315), + [anon_sym_ATavailable] = ACTIONS(1311), [anon_sym_va_arg] = ACTIONS(1313), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [101] = { + [100] = { + [ts_builtin_sym_end] = ACTIONS(1315), [sym_identifier] = ACTIONS(1317), - [aux_sym_preproc_include_token1] = ACTIONS(1319), - [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [anon_sym_RPAREN] = ACTIONS(1315), [aux_sym_preproc_if_token1] = ACTIONS(1317), - [aux_sym_preproc_if_token2] = ACTIONS(1317), [aux_sym_preproc_ifdef_token1] = ACTIONS(1317), [aux_sym_preproc_ifdef_token2] = ACTIONS(1317), - [aux_sym_preproc_else_token1] = ACTIONS(1317), - [aux_sym_preproc_elif_token1] = ACTIONS(1317), - [anon_sym_LPAREN2] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_TILDE] = ACTIONS(1319), + [anon_sym_LPAREN2] = ACTIONS(1315), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_TILDE] = ACTIONS(1315), [anon_sym_DASH] = ACTIONS(1317), [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_CARET] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_CARET] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_SEMI] = ACTIONS(1315), [anon_sym_typedef] = ACTIONS(1317), [anon_sym_extern] = ACTIONS(1317), [anon_sym___attribute] = ACTIONS(1317), @@ -43332,8 +43183,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1317), [anon_sym___thiscall] = ACTIONS(1317), [anon_sym___vectorcall] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym_RBRACE] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1315), [anon_sym_static] = ACTIONS(1317), [anon_sym_auto] = ACTIONS(1317), [anon_sym_register] = ACTIONS(1317), @@ -43376,9 +43228,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1317), [sym_primitive_type] = ACTIONS(1317), [anon_sym_enum] = ACTIONS(1317), - [anon_sym_NS_ENUM] = ACTIONS(1317), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1317), - [anon_sym_NS_OPTIONS] = ACTIONS(1317), [anon_sym_struct] = ACTIONS(1317), [anon_sym_union] = ACTIONS(1317), [anon_sym_if] = ACTIONS(1317), @@ -43393,31 +43242,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1317), [anon_sym_continue] = ACTIONS(1317), [anon_sym_goto] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_DASH_DASH] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1315), [anon_sym_sizeof] = ACTIONS(1317), - [sym_number_literal] = ACTIONS(1319), - [anon_sym_L_SQUOTE] = ACTIONS(1319), - [anon_sym_u_SQUOTE] = ACTIONS(1319), - [anon_sym_U_SQUOTE] = ACTIONS(1319), - [anon_sym_u8_SQUOTE] = ACTIONS(1319), - [anon_sym_SQUOTE] = ACTIONS(1319), - [anon_sym_L_DQUOTE] = ACTIONS(1319), - [anon_sym_u_DQUOTE] = ACTIONS(1319), - [anon_sym_U_DQUOTE] = ACTIONS(1319), - [anon_sym_u8_DQUOTE] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), + [sym_number_literal] = ACTIONS(1315), + [anon_sym_L_SQUOTE] = ACTIONS(1315), + [anon_sym_u_SQUOTE] = ACTIONS(1315), + [anon_sym_U_SQUOTE] = ACTIONS(1315), + [anon_sym_u8_SQUOTE] = ACTIONS(1315), + [anon_sym_SQUOTE] = ACTIONS(1315), + [anon_sym_L_DQUOTE] = ACTIONS(1315), + [anon_sym_u_DQUOTE] = ACTIONS(1315), + [anon_sym_U_DQUOTE] = ACTIONS(1315), + [anon_sym_u8_DQUOTE] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(1315), [sym_true] = ACTIONS(1317), [sym_false] = ACTIONS(1317), [sym_null] = ACTIONS(1317), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1319), - [anon_sym_ATimport] = ACTIONS(1319), + [anon_sym_POUNDimport] = ACTIONS(1315), + [anon_sym_ATimport] = ACTIONS(1315), [sym__ns_assume_nonnull_declaration] = ACTIONS(1317), - [anon_sym_ATcompatibility_alias] = ACTIONS(1319), - [anon_sym_ATprotocol] = ACTIONS(1319), - [anon_sym_ATclass] = ACTIONS(1319), - [anon_sym_ATinterface] = ACTIONS(1319), + [anon_sym_ATcompatibility_alias] = ACTIONS(1315), + [anon_sym_ATprotocol] = ACTIONS(1315), + [anon_sym_ATclass] = ACTIONS(1315), + [anon_sym_ATinterface] = ACTIONS(1315), [sym_class_interface_attribute_sepcifier] = ACTIONS(1317), [sym_method_attribute_specifier] = ACTIONS(1317), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1317), @@ -43444,7 +43293,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1317), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1317), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1317), - [anon_sym_ATimplementation] = ACTIONS(1319), + [anon_sym_ATimplementation] = ACTIONS(1315), + [anon_sym_NS_ENUM] = ACTIONS(1317), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1317), + [anon_sym_NS_OPTIONS] = ACTIONS(1317), [anon_sym_typeof] = ACTIONS(1317), [anon_sym___typeof] = ACTIONS(1317), [anon_sym___typeof__] = ACTIONS(1317), @@ -43458,6 +43310,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1317), [sym_BOOL] = ACTIONS(1317), [sym_auto] = ACTIONS(1317), + [anon_sym_ATautoreleasepool] = ACTIONS(1315), + [anon_sym_ATsynchronized] = ACTIONS(1315), + [anon_sym_ATtry] = ACTIONS(1315), + [anon_sym_ATcatch] = ACTIONS(1315), + [anon_sym_ATfinally] = ACTIONS(1315), + [anon_sym_ATthrow] = ACTIONS(1315), + [anon_sym_ATselector] = ACTIONS(1315), + [anon_sym_ATencode] = ACTIONS(1315), + [anon_sym_AT] = ACTIONS(1317), + [sym_YES] = ACTIONS(1317), + [sym_NO] = ACTIONS(1317), + [anon_sym___builtin_available] = ACTIONS(1317), + [anon_sym_ATavailable] = ACTIONS(1315), + [anon_sym_va_arg] = ACTIONS(1317), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [101] = { + [ts_builtin_sym_end] = ACTIONS(1319), + [sym_identifier] = ACTIONS(1321), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [anon_sym_RPAREN] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), + [anon_sym_LPAREN2] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_TILDE] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1321), + [anon_sym_extern] = ACTIONS(1321), + [anon_sym___attribute] = ACTIONS(1321), + [anon_sym___attribute__] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1321), + [anon_sym___cdecl] = ACTIONS(1321), + [anon_sym___clrcall] = ACTIONS(1321), + [anon_sym___stdcall] = ACTIONS(1321), + [anon_sym___fastcall] = ACTIONS(1321), + [anon_sym___thiscall] = ACTIONS(1321), + [anon_sym___vectorcall] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_RBRACE] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1321), + [anon_sym_auto] = ACTIONS(1321), + [anon_sym_register] = ACTIONS(1321), + [anon_sym_inline] = ACTIONS(1321), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1321), + [anon_sym_const] = ACTIONS(1321), + [anon_sym_volatile] = ACTIONS(1321), + [anon_sym_restrict] = ACTIONS(1321), + [anon_sym__Atomic] = ACTIONS(1321), + [anon_sym_in] = ACTIONS(1321), + [anon_sym_out] = ACTIONS(1321), + [anon_sym_inout] = ACTIONS(1321), + [anon_sym_bycopy] = ACTIONS(1321), + [anon_sym_byref] = ACTIONS(1321), + [anon_sym_oneway] = ACTIONS(1321), + [anon_sym__Nullable] = ACTIONS(1321), + [anon_sym__Nonnull] = ACTIONS(1321), + [anon_sym__Nullable_result] = ACTIONS(1321), + [anon_sym__Null_unspecified] = ACTIONS(1321), + [anon_sym___autoreleasing] = ACTIONS(1321), + [anon_sym___nullable] = ACTIONS(1321), + [anon_sym___nonnull] = ACTIONS(1321), + [anon_sym___strong] = ACTIONS(1321), + [anon_sym___weak] = ACTIONS(1321), + [anon_sym___bridge] = ACTIONS(1321), + [anon_sym___bridge_transfer] = ACTIONS(1321), + [anon_sym___bridge_retained] = ACTIONS(1321), + [anon_sym___unsafe_unretained] = ACTIONS(1321), + [anon_sym___block] = ACTIONS(1321), + [anon_sym___kindof] = ACTIONS(1321), + [anon_sym___unused] = ACTIONS(1321), + [anon_sym__Complex] = ACTIONS(1321), + [anon_sym___complex] = ACTIONS(1321), + [anon_sym_IBOutlet] = ACTIONS(1321), + [anon_sym_IBInspectable] = ACTIONS(1321), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1321), + [anon_sym_unsigned] = ACTIONS(1321), + [anon_sym_long] = ACTIONS(1321), + [anon_sym_short] = ACTIONS(1321), + [sym_primitive_type] = ACTIONS(1321), + [anon_sym_enum] = ACTIONS(1321), + [anon_sym_struct] = ACTIONS(1321), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_if] = ACTIONS(1321), + [anon_sym_else] = ACTIONS(1321), + [anon_sym_switch] = ACTIONS(1321), + [anon_sym_case] = ACTIONS(1321), + [anon_sym_default] = ACTIONS(1321), + [anon_sym_while] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1321), + [anon_sym_for] = ACTIONS(1321), + [anon_sym_return] = ACTIONS(1321), + [anon_sym_break] = ACTIONS(1321), + [anon_sym_continue] = ACTIONS(1321), + [anon_sym_goto] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_sizeof] = ACTIONS(1321), + [sym_number_literal] = ACTIONS(1319), + [anon_sym_L_SQUOTE] = ACTIONS(1319), + [anon_sym_u_SQUOTE] = ACTIONS(1319), + [anon_sym_U_SQUOTE] = ACTIONS(1319), + [anon_sym_u8_SQUOTE] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_L_DQUOTE] = ACTIONS(1319), + [anon_sym_u_DQUOTE] = ACTIONS(1319), + [anon_sym_U_DQUOTE] = ACTIONS(1319), + [anon_sym_u8_DQUOTE] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym_true] = ACTIONS(1321), + [sym_false] = ACTIONS(1321), + [sym_null] = ACTIONS(1321), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1319), + [anon_sym_ATimport] = ACTIONS(1319), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1321), + [anon_sym_ATcompatibility_alias] = ACTIONS(1319), + [anon_sym_ATprotocol] = ACTIONS(1319), + [anon_sym_ATclass] = ACTIONS(1319), + [anon_sym_ATinterface] = ACTIONS(1319), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1321), + [sym_method_attribute_specifier] = ACTIONS(1321), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1321), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1321), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1321), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1321), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1321), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1321), + [anon_sym_NS_AVAILABLE] = ACTIONS(1321), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1321), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1321), + [anon_sym_API_AVAILABLE] = ACTIONS(1321), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1321), + [anon_sym_API_DEPRECATED] = ACTIONS(1321), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1321), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1321), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1321), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1321), + [anon_sym___deprecated_msg] = ACTIONS(1321), + [anon_sym___deprecated_enum_msg] = ACTIONS(1321), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1321), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1321), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1321), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1321), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1321), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1321), + [anon_sym_ATimplementation] = ACTIONS(1319), + [anon_sym_NS_ENUM] = ACTIONS(1321), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1321), + [anon_sym_NS_OPTIONS] = ACTIONS(1321), + [anon_sym_typeof] = ACTIONS(1321), + [anon_sym___typeof] = ACTIONS(1321), + [anon_sym___typeof__] = ACTIONS(1321), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1321), + [sym_nil] = ACTIONS(1321), + [sym_id] = ACTIONS(1321), + [sym_instancetype] = ACTIONS(1321), + [sym_Class] = ACTIONS(1321), + [sym_SEL] = ACTIONS(1321), + [sym_IMP] = ACTIONS(1321), + [sym_BOOL] = ACTIONS(1321), + [sym_auto] = ACTIONS(1321), [anon_sym_ATautoreleasepool] = ACTIONS(1319), [anon_sym_ATsynchronized] = ACTIONS(1319), [anon_sym_ATtry] = ACTIONS(1319), @@ -43466,113 +43495,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATthrow] = ACTIONS(1319), [anon_sym_ATselector] = ACTIONS(1319), [anon_sym_ATencode] = ACTIONS(1319), - [anon_sym_AT] = ACTIONS(1317), - [sym_YES] = ACTIONS(1317), - [sym_NO] = ACTIONS(1317), - [anon_sym___builtin_available] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(1321), + [sym_YES] = ACTIONS(1321), + [sym_NO] = ACTIONS(1321), + [anon_sym___builtin_available] = ACTIONS(1321), [anon_sym_ATavailable] = ACTIONS(1319), - [anon_sym_va_arg] = ACTIONS(1317), + [anon_sym_va_arg] = ACTIONS(1321), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, [102] = { - [sym_identifier] = ACTIONS(1321), + [ts_builtin_sym_end] = ACTIONS(1323), + [sym_identifier] = ACTIONS(1325), [aux_sym_preproc_include_token1] = ACTIONS(1323), [aux_sym_preproc_def_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1321), - [aux_sym_preproc_if_token2] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), - [aux_sym_preproc_else_token1] = ACTIONS(1321), - [aux_sym_preproc_elif_token1] = ACTIONS(1321), + [anon_sym_RPAREN] = ACTIONS(1323), + [aux_sym_preproc_if_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), [anon_sym_LPAREN2] = ACTIONS(1323), [anon_sym_BANG] = ACTIONS(1323), [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1325), [anon_sym_STAR] = ACTIONS(1323), [anon_sym_CARET] = ACTIONS(1323), [anon_sym_AMP] = ACTIONS(1323), [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), + [anon_sym_typedef] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym___attribute] = ACTIONS(1325), + [anon_sym___attribute__] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(1325), + [anon_sym___cdecl] = ACTIONS(1325), + [anon_sym___clrcall] = ACTIONS(1325), + [anon_sym___stdcall] = ACTIONS(1325), + [anon_sym___fastcall] = ACTIONS(1325), + [anon_sym___thiscall] = ACTIONS(1325), + [anon_sym___vectorcall] = ACTIONS(1325), [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_RBRACE] = ACTIONS(1323), [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), - [anon_sym_inout] = ACTIONS(1321), - [anon_sym_bycopy] = ACTIONS(1321), - [anon_sym_byref] = ACTIONS(1321), - [anon_sym_oneway] = ACTIONS(1321), - [anon_sym__Nullable] = ACTIONS(1321), - [anon_sym__Nonnull] = ACTIONS(1321), - [anon_sym__Nullable_result] = ACTIONS(1321), - [anon_sym__Null_unspecified] = ACTIONS(1321), - [anon_sym___autoreleasing] = ACTIONS(1321), - [anon_sym___nullable] = ACTIONS(1321), - [anon_sym___nonnull] = ACTIONS(1321), - [anon_sym___strong] = ACTIONS(1321), - [anon_sym___weak] = ACTIONS(1321), - [anon_sym___bridge] = ACTIONS(1321), - [anon_sym___bridge_transfer] = ACTIONS(1321), - [anon_sym___bridge_retained] = ACTIONS(1321), - [anon_sym___unsafe_unretained] = ACTIONS(1321), - [anon_sym___block] = ACTIONS(1321), - [anon_sym___kindof] = ACTIONS(1321), - [anon_sym___unused] = ACTIONS(1321), - [anon_sym__Complex] = ACTIONS(1321), - [anon_sym___complex] = ACTIONS(1321), - [anon_sym_IBOutlet] = ACTIONS(1321), - [anon_sym_IBInspectable] = ACTIONS(1321), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_NS_ENUM] = ACTIONS(1321), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1321), - [anon_sym_NS_OPTIONS] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_else] = ACTIONS(1321), - [anon_sym_switch] = ACTIONS(1321), - [anon_sym_case] = ACTIONS(1321), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_goto] = ACTIONS(1321), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_auto] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_inline] = ACTIONS(1325), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_volatile] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1325), + [anon_sym__Atomic] = ACTIONS(1325), + [anon_sym_in] = ACTIONS(1325), + [anon_sym_out] = ACTIONS(1325), + [anon_sym_inout] = ACTIONS(1325), + [anon_sym_bycopy] = ACTIONS(1325), + [anon_sym_byref] = ACTIONS(1325), + [anon_sym_oneway] = ACTIONS(1325), + [anon_sym__Nullable] = ACTIONS(1325), + [anon_sym__Nonnull] = ACTIONS(1325), + [anon_sym__Nullable_result] = ACTIONS(1325), + [anon_sym__Null_unspecified] = ACTIONS(1325), + [anon_sym___autoreleasing] = ACTIONS(1325), + [anon_sym___nullable] = ACTIONS(1325), + [anon_sym___nonnull] = ACTIONS(1325), + [anon_sym___strong] = ACTIONS(1325), + [anon_sym___weak] = ACTIONS(1325), + [anon_sym___bridge] = ACTIONS(1325), + [anon_sym___bridge_transfer] = ACTIONS(1325), + [anon_sym___bridge_retained] = ACTIONS(1325), + [anon_sym___unsafe_unretained] = ACTIONS(1325), + [anon_sym___block] = ACTIONS(1325), + [anon_sym___kindof] = ACTIONS(1325), + [anon_sym___unused] = ACTIONS(1325), + [anon_sym__Complex] = ACTIONS(1325), + [anon_sym___complex] = ACTIONS(1325), + [anon_sym_IBOutlet] = ACTIONS(1325), + [anon_sym_IBInspectable] = ACTIONS(1325), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1325), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [sym_primitive_type] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_else] = ACTIONS(1325), + [anon_sym_switch] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_goto] = ACTIONS(1325), [anon_sym_DASH_DASH] = ACTIONS(1323), [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_sizeof] = ACTIONS(1321), + [anon_sym_sizeof] = ACTIONS(1325), [sym_number_literal] = ACTIONS(1323), [anon_sym_L_SQUOTE] = ACTIONS(1323), [anon_sym_u_SQUOTE] = ACTIONS(1323), @@ -43584,57 +43610,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(1323), [anon_sym_u8_DQUOTE] = ACTIONS(1323), [anon_sym_DQUOTE] = ACTIONS(1323), - [sym_true] = ACTIONS(1321), - [sym_false] = ACTIONS(1321), - [sym_null] = ACTIONS(1321), + [sym_true] = ACTIONS(1325), + [sym_false] = ACTIONS(1325), + [sym_null] = ACTIONS(1325), [sym_comment] = ACTIONS(3), [anon_sym_POUNDimport] = ACTIONS(1323), [anon_sym_ATimport] = ACTIONS(1323), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1321), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1325), [anon_sym_ATcompatibility_alias] = ACTIONS(1323), [anon_sym_ATprotocol] = ACTIONS(1323), [anon_sym_ATclass] = ACTIONS(1323), [anon_sym_ATinterface] = ACTIONS(1323), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1321), - [sym_method_attribute_specifier] = ACTIONS(1321), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1321), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE] = ACTIONS(1321), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_API_AVAILABLE] = ACTIONS(1321), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_API_DEPRECATED] = ACTIONS(1321), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1321), - [anon_sym___deprecated_msg] = ACTIONS(1321), - [anon_sym___deprecated_enum_msg] = ACTIONS(1321), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1321), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1321), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1325), + [sym_method_attribute_specifier] = ACTIONS(1325), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1325), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1325), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1325), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1325), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1325), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1325), + [anon_sym_NS_AVAILABLE] = ACTIONS(1325), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1325), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1325), + [anon_sym_API_AVAILABLE] = ACTIONS(1325), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1325), + [anon_sym_API_DEPRECATED] = ACTIONS(1325), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1325), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1325), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1325), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1325), + [anon_sym___deprecated_msg] = ACTIONS(1325), + [anon_sym___deprecated_enum_msg] = ACTIONS(1325), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1325), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1325), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1325), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1325), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1325), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1325), [anon_sym_ATimplementation] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1321), - [anon_sym___typeof] = ACTIONS(1321), - [anon_sym___typeof__] = ACTIONS(1321), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1321), - [sym_nil] = ACTIONS(1321), - [sym_id] = ACTIONS(1321), - [sym_instancetype] = ACTIONS(1321), - [sym_Class] = ACTIONS(1321), - [sym_SEL] = ACTIONS(1321), - [sym_IMP] = ACTIONS(1321), - [sym_BOOL] = ACTIONS(1321), - [sym_auto] = ACTIONS(1321), + [anon_sym_NS_ENUM] = ACTIONS(1325), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1325), + [anon_sym_NS_OPTIONS] = ACTIONS(1325), + [anon_sym_typeof] = ACTIONS(1325), + [anon_sym___typeof] = ACTIONS(1325), + [anon_sym___typeof__] = ACTIONS(1325), + [sym_self] = ACTIONS(1325), + [sym_super] = ACTIONS(1325), + [sym_nil] = ACTIONS(1325), + [sym_id] = ACTIONS(1325), + [sym_instancetype] = ACTIONS(1325), + [sym_Class] = ACTIONS(1325), + [sym_SEL] = ACTIONS(1325), + [sym_IMP] = ACTIONS(1325), + [sym_BOOL] = ACTIONS(1325), + [sym_auto] = ACTIONS(1325), [anon_sym_ATautoreleasepool] = ACTIONS(1323), [anon_sym_ATsynchronized] = ACTIONS(1323), [anon_sym_ATtry] = ACTIONS(1323), @@ -43643,1277 +43672,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATthrow] = ACTIONS(1323), [anon_sym_ATselector] = ACTIONS(1323), [anon_sym_ATencode] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(1321), - [sym_YES] = ACTIONS(1321), - [sym_NO] = ACTIONS(1321), - [anon_sym___builtin_available] = ACTIONS(1321), + [anon_sym_AT] = ACTIONS(1325), + [sym_YES] = ACTIONS(1325), + [sym_NO] = ACTIONS(1325), + [anon_sym___builtin_available] = ACTIONS(1325), [anon_sym_ATavailable] = ACTIONS(1323), - [anon_sym_va_arg] = ACTIONS(1321), + [anon_sym_va_arg] = ACTIONS(1325), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, [103] = { - [sym_identifier] = ACTIONS(1321), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1321), - [aux_sym_preproc_if_token2] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), - [aux_sym_preproc_else_token1] = ACTIONS(1321), - [aux_sym_preproc_elif_token1] = ACTIONS(1321), - [anon_sym_LPAREN2] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), - [anon_sym_inout] = ACTIONS(1321), - [anon_sym_bycopy] = ACTIONS(1321), - [anon_sym_byref] = ACTIONS(1321), - [anon_sym_oneway] = ACTIONS(1321), - [anon_sym__Nullable] = ACTIONS(1321), - [anon_sym__Nonnull] = ACTIONS(1321), - [anon_sym__Nullable_result] = ACTIONS(1321), - [anon_sym__Null_unspecified] = ACTIONS(1321), - [anon_sym___autoreleasing] = ACTIONS(1321), - [anon_sym___nullable] = ACTIONS(1321), - [anon_sym___nonnull] = ACTIONS(1321), - [anon_sym___strong] = ACTIONS(1321), - [anon_sym___weak] = ACTIONS(1321), - [anon_sym___bridge] = ACTIONS(1321), - [anon_sym___bridge_transfer] = ACTIONS(1321), - [anon_sym___bridge_retained] = ACTIONS(1321), - [anon_sym___unsafe_unretained] = ACTIONS(1321), - [anon_sym___block] = ACTIONS(1321), - [anon_sym___kindof] = ACTIONS(1321), - [anon_sym___unused] = ACTIONS(1321), - [anon_sym__Complex] = ACTIONS(1321), - [anon_sym___complex] = ACTIONS(1321), - [anon_sym_IBOutlet] = ACTIONS(1321), - [anon_sym_IBInspectable] = ACTIONS(1321), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_NS_ENUM] = ACTIONS(1321), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1321), - [anon_sym_NS_OPTIONS] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_else] = ACTIONS(1321), - [anon_sym_switch] = ACTIONS(1321), - [anon_sym_case] = ACTIONS(1321), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_goto] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_sizeof] = ACTIONS(1321), - [sym_number_literal] = ACTIONS(1323), - [anon_sym_L_SQUOTE] = ACTIONS(1323), - [anon_sym_u_SQUOTE] = ACTIONS(1323), - [anon_sym_U_SQUOTE] = ACTIONS(1323), - [anon_sym_u8_SQUOTE] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_L_DQUOTE] = ACTIONS(1323), - [anon_sym_u_DQUOTE] = ACTIONS(1323), - [anon_sym_U_DQUOTE] = ACTIONS(1323), - [anon_sym_u8_DQUOTE] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [sym_true] = ACTIONS(1321), - [sym_false] = ACTIONS(1321), - [sym_null] = ACTIONS(1321), + [ts_builtin_sym_end] = ACTIONS(1327), + [sym_identifier] = ACTIONS(1329), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [anon_sym_RPAREN] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_CARET] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1329), + [anon_sym___attribute] = ACTIONS(1329), + [anon_sym___attribute__] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1329), + [anon_sym___cdecl] = ACTIONS(1329), + [anon_sym___clrcall] = ACTIONS(1329), + [anon_sym___stdcall] = ACTIONS(1329), + [anon_sym___fastcall] = ACTIONS(1329), + [anon_sym___thiscall] = ACTIONS(1329), + [anon_sym___vectorcall] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1327), + [anon_sym_RBRACE] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1329), + [anon_sym_auto] = ACTIONS(1329), + [anon_sym_register] = ACTIONS(1329), + [anon_sym_inline] = ACTIONS(1329), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_volatile] = ACTIONS(1329), + [anon_sym_restrict] = ACTIONS(1329), + [anon_sym__Atomic] = ACTIONS(1329), + [anon_sym_in] = ACTIONS(1329), + [anon_sym_out] = ACTIONS(1329), + [anon_sym_inout] = ACTIONS(1329), + [anon_sym_bycopy] = ACTIONS(1329), + [anon_sym_byref] = ACTIONS(1329), + [anon_sym_oneway] = ACTIONS(1329), + [anon_sym__Nullable] = ACTIONS(1329), + [anon_sym__Nonnull] = ACTIONS(1329), + [anon_sym__Nullable_result] = ACTIONS(1329), + [anon_sym__Null_unspecified] = ACTIONS(1329), + [anon_sym___autoreleasing] = ACTIONS(1329), + [anon_sym___nullable] = ACTIONS(1329), + [anon_sym___nonnull] = ACTIONS(1329), + [anon_sym___strong] = ACTIONS(1329), + [anon_sym___weak] = ACTIONS(1329), + [anon_sym___bridge] = ACTIONS(1329), + [anon_sym___bridge_transfer] = ACTIONS(1329), + [anon_sym___bridge_retained] = ACTIONS(1329), + [anon_sym___unsafe_unretained] = ACTIONS(1329), + [anon_sym___block] = ACTIONS(1329), + [anon_sym___kindof] = ACTIONS(1329), + [anon_sym___unused] = ACTIONS(1329), + [anon_sym__Complex] = ACTIONS(1329), + [anon_sym___complex] = ACTIONS(1329), + [anon_sym_IBOutlet] = ACTIONS(1329), + [anon_sym_IBInspectable] = ACTIONS(1329), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1329), + [anon_sym_unsigned] = ACTIONS(1329), + [anon_sym_long] = ACTIONS(1329), + [anon_sym_short] = ACTIONS(1329), + [sym_primitive_type] = ACTIONS(1329), + [anon_sym_enum] = ACTIONS(1329), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_union] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_switch] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_do] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_goto] = ACTIONS(1329), + [anon_sym_DASH_DASH] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1327), + [anon_sym_sizeof] = ACTIONS(1329), + [sym_number_literal] = ACTIONS(1327), + [anon_sym_L_SQUOTE] = ACTIONS(1327), + [anon_sym_u_SQUOTE] = ACTIONS(1327), + [anon_sym_U_SQUOTE] = ACTIONS(1327), + [anon_sym_u8_SQUOTE] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_L_DQUOTE] = ACTIONS(1327), + [anon_sym_u_DQUOTE] = ACTIONS(1327), + [anon_sym_U_DQUOTE] = ACTIONS(1327), + [anon_sym_u8_DQUOTE] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1327), + [sym_true] = ACTIONS(1329), + [sym_false] = ACTIONS(1329), + [sym_null] = ACTIONS(1329), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1323), - [anon_sym_ATimport] = ACTIONS(1323), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1321), - [anon_sym_ATcompatibility_alias] = ACTIONS(1323), - [anon_sym_ATprotocol] = ACTIONS(1323), - [anon_sym_ATclass] = ACTIONS(1323), - [anon_sym_ATinterface] = ACTIONS(1323), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1321), - [sym_method_attribute_specifier] = ACTIONS(1321), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1321), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE] = ACTIONS(1321), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_API_AVAILABLE] = ACTIONS(1321), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_API_DEPRECATED] = ACTIONS(1321), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1321), - [anon_sym___deprecated_msg] = ACTIONS(1321), - [anon_sym___deprecated_enum_msg] = ACTIONS(1321), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1321), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1321), - [anon_sym_ATimplementation] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1321), - [anon_sym___typeof] = ACTIONS(1321), - [anon_sym___typeof__] = ACTIONS(1321), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1321), - [sym_nil] = ACTIONS(1321), - [sym_id] = ACTIONS(1321), - [sym_instancetype] = ACTIONS(1321), - [sym_Class] = ACTIONS(1321), - [sym_SEL] = ACTIONS(1321), - [sym_IMP] = ACTIONS(1321), - [sym_BOOL] = ACTIONS(1321), - [sym_auto] = ACTIONS(1321), - [anon_sym_ATautoreleasepool] = ACTIONS(1323), - [anon_sym_ATsynchronized] = ACTIONS(1323), - [anon_sym_ATtry] = ACTIONS(1323), - [anon_sym_ATcatch] = ACTIONS(1323), - [anon_sym_ATfinally] = ACTIONS(1323), - [anon_sym_ATthrow] = ACTIONS(1323), - [anon_sym_ATselector] = ACTIONS(1323), - [anon_sym_ATencode] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(1321), - [sym_YES] = ACTIONS(1321), - [sym_NO] = ACTIONS(1321), - [anon_sym___builtin_available] = ACTIONS(1321), - [anon_sym_ATavailable] = ACTIONS(1323), - [anon_sym_va_arg] = ACTIONS(1321), + [anon_sym_POUNDimport] = ACTIONS(1327), + [anon_sym_ATimport] = ACTIONS(1327), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1329), + [anon_sym_ATcompatibility_alias] = ACTIONS(1327), + [anon_sym_ATprotocol] = ACTIONS(1327), + [anon_sym_ATclass] = ACTIONS(1327), + [anon_sym_ATinterface] = ACTIONS(1327), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1329), + [sym_method_attribute_specifier] = ACTIONS(1329), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1329), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1329), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1329), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1329), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1329), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1329), + [anon_sym_NS_AVAILABLE] = ACTIONS(1329), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1329), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1329), + [anon_sym_API_AVAILABLE] = ACTIONS(1329), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1329), + [anon_sym_API_DEPRECATED] = ACTIONS(1329), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1329), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1329), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1329), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1329), + [anon_sym___deprecated_msg] = ACTIONS(1329), + [anon_sym___deprecated_enum_msg] = ACTIONS(1329), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1329), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1329), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1329), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1329), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1329), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1329), + [anon_sym_ATimplementation] = ACTIONS(1327), + [anon_sym_NS_ENUM] = ACTIONS(1329), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1329), + [anon_sym_NS_OPTIONS] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1329), + [anon_sym___typeof] = ACTIONS(1329), + [anon_sym___typeof__] = ACTIONS(1329), + [sym_self] = ACTIONS(1329), + [sym_super] = ACTIONS(1329), + [sym_nil] = ACTIONS(1329), + [sym_id] = ACTIONS(1329), + [sym_instancetype] = ACTIONS(1329), + [sym_Class] = ACTIONS(1329), + [sym_SEL] = ACTIONS(1329), + [sym_IMP] = ACTIONS(1329), + [sym_BOOL] = ACTIONS(1329), + [sym_auto] = ACTIONS(1329), + [anon_sym_ATautoreleasepool] = ACTIONS(1327), + [anon_sym_ATsynchronized] = ACTIONS(1327), + [anon_sym_ATtry] = ACTIONS(1327), + [anon_sym_ATcatch] = ACTIONS(1327), + [anon_sym_ATfinally] = ACTIONS(1327), + [anon_sym_ATthrow] = ACTIONS(1327), + [anon_sym_ATselector] = ACTIONS(1327), + [anon_sym_ATencode] = ACTIONS(1327), + [anon_sym_AT] = ACTIONS(1329), + [sym_YES] = ACTIONS(1329), + [sym_NO] = ACTIONS(1329), + [anon_sym___builtin_available] = ACTIONS(1329), + [anon_sym_ATavailable] = ACTIONS(1327), + [anon_sym_va_arg] = ACTIONS(1329), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, [104] = { - [sym_identifier] = ACTIONS(1325), - [aux_sym_preproc_include_token1] = ACTIONS(1327), - [aux_sym_preproc_def_token1] = ACTIONS(1327), - [aux_sym_preproc_if_token1] = ACTIONS(1325), - [aux_sym_preproc_if_token2] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), - [aux_sym_preproc_else_token1] = ACTIONS(1325), - [aux_sym_preproc_elif_token1] = ACTIONS(1325), - [anon_sym_LPAREN2] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_typedef] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym___attribute] = ACTIONS(1325), - [anon_sym___attribute__] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1325), - [anon_sym___cdecl] = ACTIONS(1325), - [anon_sym___clrcall] = ACTIONS(1325), - [anon_sym___stdcall] = ACTIONS(1325), - [anon_sym___fastcall] = ACTIONS(1325), - [anon_sym___thiscall] = ACTIONS(1325), - [anon_sym___vectorcall] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_auto] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_inline] = ACTIONS(1325), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_volatile] = ACTIONS(1325), - [anon_sym_restrict] = ACTIONS(1325), - [anon_sym__Atomic] = ACTIONS(1325), - [anon_sym_in] = ACTIONS(1325), - [anon_sym_out] = ACTIONS(1325), - [anon_sym_inout] = ACTIONS(1325), - [anon_sym_bycopy] = ACTIONS(1325), - [anon_sym_byref] = ACTIONS(1325), - [anon_sym_oneway] = ACTIONS(1325), - [anon_sym__Nullable] = ACTIONS(1325), - [anon_sym__Nonnull] = ACTIONS(1325), - [anon_sym__Nullable_result] = ACTIONS(1325), - [anon_sym__Null_unspecified] = ACTIONS(1325), - [anon_sym___autoreleasing] = ACTIONS(1325), - [anon_sym___nullable] = ACTIONS(1325), - [anon_sym___nonnull] = ACTIONS(1325), - [anon_sym___strong] = ACTIONS(1325), - [anon_sym___weak] = ACTIONS(1325), - [anon_sym___bridge] = ACTIONS(1325), - [anon_sym___bridge_transfer] = ACTIONS(1325), - [anon_sym___bridge_retained] = ACTIONS(1325), - [anon_sym___unsafe_unretained] = ACTIONS(1325), - [anon_sym___block] = ACTIONS(1325), - [anon_sym___kindof] = ACTIONS(1325), - [anon_sym___unused] = ACTIONS(1325), - [anon_sym__Complex] = ACTIONS(1325), - [anon_sym___complex] = ACTIONS(1325), - [anon_sym_IBOutlet] = ACTIONS(1325), - [anon_sym_IBInspectable] = ACTIONS(1325), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1325), - [anon_sym_signed] = ACTIONS(1325), - [anon_sym_unsigned] = ACTIONS(1325), - [anon_sym_long] = ACTIONS(1325), - [anon_sym_short] = ACTIONS(1325), - [sym_primitive_type] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_NS_ENUM] = ACTIONS(1325), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1325), - [anon_sym_NS_OPTIONS] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_else] = ACTIONS(1325), - [anon_sym_switch] = ACTIONS(1325), - [anon_sym_case] = ACTIONS(1325), - [anon_sym_default] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_goto] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1327), - [anon_sym_sizeof] = ACTIONS(1325), - [sym_number_literal] = ACTIONS(1327), - [anon_sym_L_SQUOTE] = ACTIONS(1327), - [anon_sym_u_SQUOTE] = ACTIONS(1327), - [anon_sym_U_SQUOTE] = ACTIONS(1327), - [anon_sym_u8_SQUOTE] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_L_DQUOTE] = ACTIONS(1327), - [anon_sym_u_DQUOTE] = ACTIONS(1327), - [anon_sym_U_DQUOTE] = ACTIONS(1327), - [anon_sym_u8_DQUOTE] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [sym_true] = ACTIONS(1325), - [sym_false] = ACTIONS(1325), - [sym_null] = ACTIONS(1325), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1327), - [anon_sym_ATimport] = ACTIONS(1327), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1325), - [anon_sym_ATcompatibility_alias] = ACTIONS(1327), - [anon_sym_ATprotocol] = ACTIONS(1327), - [anon_sym_ATclass] = ACTIONS(1327), - [anon_sym_ATinterface] = ACTIONS(1327), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1325), - [sym_method_attribute_specifier] = ACTIONS(1325), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1325), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1325), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1325), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1325), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1325), - [anon_sym_NS_AVAILABLE] = ACTIONS(1325), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1325), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_API_AVAILABLE] = ACTIONS(1325), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_API_DEPRECATED] = ACTIONS(1325), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1325), - [anon_sym___deprecated_msg] = ACTIONS(1325), - [anon_sym___deprecated_enum_msg] = ACTIONS(1325), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1325), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1325), - [anon_sym_ATimplementation] = ACTIONS(1327), - [anon_sym_typeof] = ACTIONS(1325), - [anon_sym___typeof] = ACTIONS(1325), - [anon_sym___typeof__] = ACTIONS(1325), - [sym_self] = ACTIONS(1325), - [sym_super] = ACTIONS(1325), - [sym_nil] = ACTIONS(1325), - [sym_id] = ACTIONS(1325), - [sym_instancetype] = ACTIONS(1325), - [sym_Class] = ACTIONS(1325), - [sym_SEL] = ACTIONS(1325), - [sym_IMP] = ACTIONS(1325), - [sym_BOOL] = ACTIONS(1325), - [sym_auto] = ACTIONS(1325), - [anon_sym_ATautoreleasepool] = ACTIONS(1327), - [anon_sym_ATsynchronized] = ACTIONS(1327), - [anon_sym_ATtry] = ACTIONS(1327), - [anon_sym_ATcatch] = ACTIONS(1327), - [anon_sym_ATfinally] = ACTIONS(1327), - [anon_sym_ATthrow] = ACTIONS(1327), - [anon_sym_ATselector] = ACTIONS(1327), - [anon_sym_ATencode] = ACTIONS(1327), - [anon_sym_AT] = ACTIONS(1325), - [sym_YES] = ACTIONS(1325), - [sym_NO] = ACTIONS(1325), - [anon_sym___builtin_available] = ACTIONS(1325), - [anon_sym_ATavailable] = ACTIONS(1327), - [anon_sym_va_arg] = ACTIONS(1325), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [105] = { - [sym_identifier] = ACTIONS(1321), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1321), - [aux_sym_preproc_if_token2] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), - [aux_sym_preproc_else_token1] = ACTIONS(1321), - [aux_sym_preproc_elif_token1] = ACTIONS(1321), - [anon_sym_LPAREN2] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), - [anon_sym_inout] = ACTIONS(1321), - [anon_sym_bycopy] = ACTIONS(1321), - [anon_sym_byref] = ACTIONS(1321), - [anon_sym_oneway] = ACTIONS(1321), - [anon_sym__Nullable] = ACTIONS(1321), - [anon_sym__Nonnull] = ACTIONS(1321), - [anon_sym__Nullable_result] = ACTIONS(1321), - [anon_sym__Null_unspecified] = ACTIONS(1321), - [anon_sym___autoreleasing] = ACTIONS(1321), - [anon_sym___nullable] = ACTIONS(1321), - [anon_sym___nonnull] = ACTIONS(1321), - [anon_sym___strong] = ACTIONS(1321), - [anon_sym___weak] = ACTIONS(1321), - [anon_sym___bridge] = ACTIONS(1321), - [anon_sym___bridge_transfer] = ACTIONS(1321), - [anon_sym___bridge_retained] = ACTIONS(1321), - [anon_sym___unsafe_unretained] = ACTIONS(1321), - [anon_sym___block] = ACTIONS(1321), - [anon_sym___kindof] = ACTIONS(1321), - [anon_sym___unused] = ACTIONS(1321), - [anon_sym__Complex] = ACTIONS(1321), - [anon_sym___complex] = ACTIONS(1321), - [anon_sym_IBOutlet] = ACTIONS(1321), - [anon_sym_IBInspectable] = ACTIONS(1321), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_NS_ENUM] = ACTIONS(1321), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1321), - [anon_sym_NS_OPTIONS] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_else] = ACTIONS(1321), - [anon_sym_switch] = ACTIONS(1321), - [anon_sym_case] = ACTIONS(1321), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_goto] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_sizeof] = ACTIONS(1321), - [sym_number_literal] = ACTIONS(1323), - [anon_sym_L_SQUOTE] = ACTIONS(1323), - [anon_sym_u_SQUOTE] = ACTIONS(1323), - [anon_sym_U_SQUOTE] = ACTIONS(1323), - [anon_sym_u8_SQUOTE] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_L_DQUOTE] = ACTIONS(1323), - [anon_sym_u_DQUOTE] = ACTIONS(1323), - [anon_sym_U_DQUOTE] = ACTIONS(1323), - [anon_sym_u8_DQUOTE] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [sym_true] = ACTIONS(1321), - [sym_false] = ACTIONS(1321), - [sym_null] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1323), - [anon_sym_ATimport] = ACTIONS(1323), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1321), - [anon_sym_ATcompatibility_alias] = ACTIONS(1323), - [anon_sym_ATprotocol] = ACTIONS(1323), - [anon_sym_ATclass] = ACTIONS(1323), - [anon_sym_ATinterface] = ACTIONS(1323), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1321), - [sym_method_attribute_specifier] = ACTIONS(1321), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1321), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE] = ACTIONS(1321), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_API_AVAILABLE] = ACTIONS(1321), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_API_DEPRECATED] = ACTIONS(1321), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1321), - [anon_sym___deprecated_msg] = ACTIONS(1321), - [anon_sym___deprecated_enum_msg] = ACTIONS(1321), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1321), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1321), - [anon_sym_ATimplementation] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1321), - [anon_sym___typeof] = ACTIONS(1321), - [anon_sym___typeof__] = ACTIONS(1321), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1321), - [sym_nil] = ACTIONS(1321), - [sym_id] = ACTIONS(1321), - [sym_instancetype] = ACTIONS(1321), - [sym_Class] = ACTIONS(1321), - [sym_SEL] = ACTIONS(1321), - [sym_IMP] = ACTIONS(1321), - [sym_BOOL] = ACTIONS(1321), - [sym_auto] = ACTIONS(1321), - [anon_sym_ATautoreleasepool] = ACTIONS(1323), - [anon_sym_ATsynchronized] = ACTIONS(1323), - [anon_sym_ATtry] = ACTIONS(1323), - [anon_sym_ATcatch] = ACTIONS(1323), - [anon_sym_ATfinally] = ACTIONS(1323), - [anon_sym_ATthrow] = ACTIONS(1323), - [anon_sym_ATselector] = ACTIONS(1323), - [anon_sym_ATencode] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(1321), - [sym_YES] = ACTIONS(1321), - [sym_NO] = ACTIONS(1321), - [anon_sym___builtin_available] = ACTIONS(1321), - [anon_sym_ATavailable] = ACTIONS(1323), - [anon_sym_va_arg] = ACTIONS(1321), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [106] = { - [sym_identifier] = ACTIONS(1321), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1321), - [aux_sym_preproc_if_token2] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), - [aux_sym_preproc_else_token1] = ACTIONS(1321), - [aux_sym_preproc_elif_token1] = ACTIONS(1321), - [anon_sym_LPAREN2] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), - [anon_sym_inout] = ACTIONS(1321), - [anon_sym_bycopy] = ACTIONS(1321), - [anon_sym_byref] = ACTIONS(1321), - [anon_sym_oneway] = ACTIONS(1321), - [anon_sym__Nullable] = ACTIONS(1321), - [anon_sym__Nonnull] = ACTIONS(1321), - [anon_sym__Nullable_result] = ACTIONS(1321), - [anon_sym__Null_unspecified] = ACTIONS(1321), - [anon_sym___autoreleasing] = ACTIONS(1321), - [anon_sym___nullable] = ACTIONS(1321), - [anon_sym___nonnull] = ACTIONS(1321), - [anon_sym___strong] = ACTIONS(1321), - [anon_sym___weak] = ACTIONS(1321), - [anon_sym___bridge] = ACTIONS(1321), - [anon_sym___bridge_transfer] = ACTIONS(1321), - [anon_sym___bridge_retained] = ACTIONS(1321), - [anon_sym___unsafe_unretained] = ACTIONS(1321), - [anon_sym___block] = ACTIONS(1321), - [anon_sym___kindof] = ACTIONS(1321), - [anon_sym___unused] = ACTIONS(1321), - [anon_sym__Complex] = ACTIONS(1321), - [anon_sym___complex] = ACTIONS(1321), - [anon_sym_IBOutlet] = ACTIONS(1321), - [anon_sym_IBInspectable] = ACTIONS(1321), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_NS_ENUM] = ACTIONS(1321), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1321), - [anon_sym_NS_OPTIONS] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_else] = ACTIONS(1321), - [anon_sym_switch] = ACTIONS(1321), - [anon_sym_case] = ACTIONS(1321), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_goto] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_sizeof] = ACTIONS(1321), - [sym_number_literal] = ACTIONS(1323), - [anon_sym_L_SQUOTE] = ACTIONS(1323), - [anon_sym_u_SQUOTE] = ACTIONS(1323), - [anon_sym_U_SQUOTE] = ACTIONS(1323), - [anon_sym_u8_SQUOTE] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_L_DQUOTE] = ACTIONS(1323), - [anon_sym_u_DQUOTE] = ACTIONS(1323), - [anon_sym_U_DQUOTE] = ACTIONS(1323), - [anon_sym_u8_DQUOTE] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [sym_true] = ACTIONS(1321), - [sym_false] = ACTIONS(1321), - [sym_null] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1323), - [anon_sym_ATimport] = ACTIONS(1323), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1321), - [anon_sym_ATcompatibility_alias] = ACTIONS(1323), - [anon_sym_ATprotocol] = ACTIONS(1323), - [anon_sym_ATclass] = ACTIONS(1323), - [anon_sym_ATinterface] = ACTIONS(1323), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1321), - [sym_method_attribute_specifier] = ACTIONS(1321), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1321), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE] = ACTIONS(1321), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_API_AVAILABLE] = ACTIONS(1321), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_API_DEPRECATED] = ACTIONS(1321), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1321), - [anon_sym___deprecated_msg] = ACTIONS(1321), - [anon_sym___deprecated_enum_msg] = ACTIONS(1321), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1321), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1321), - [anon_sym_ATimplementation] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1321), - [anon_sym___typeof] = ACTIONS(1321), - [anon_sym___typeof__] = ACTIONS(1321), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1321), - [sym_nil] = ACTIONS(1321), - [sym_id] = ACTIONS(1321), - [sym_instancetype] = ACTIONS(1321), - [sym_Class] = ACTIONS(1321), - [sym_SEL] = ACTIONS(1321), - [sym_IMP] = ACTIONS(1321), - [sym_BOOL] = ACTIONS(1321), - [sym_auto] = ACTIONS(1321), - [anon_sym_ATautoreleasepool] = ACTIONS(1323), - [anon_sym_ATsynchronized] = ACTIONS(1323), - [anon_sym_ATtry] = ACTIONS(1323), - [anon_sym_ATcatch] = ACTIONS(1323), - [anon_sym_ATfinally] = ACTIONS(1323), - [anon_sym_ATthrow] = ACTIONS(1323), - [anon_sym_ATselector] = ACTIONS(1323), - [anon_sym_ATencode] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(1321), - [sym_YES] = ACTIONS(1321), - [sym_NO] = ACTIONS(1321), - [anon_sym___builtin_available] = ACTIONS(1321), - [anon_sym_ATavailable] = ACTIONS(1323), - [anon_sym_va_arg] = ACTIONS(1321), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [107] = { - [sym_identifier] = ACTIONS(1325), - [aux_sym_preproc_include_token1] = ACTIONS(1327), - [aux_sym_preproc_def_token1] = ACTIONS(1327), - [aux_sym_preproc_if_token1] = ACTIONS(1325), - [aux_sym_preproc_if_token2] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), - [aux_sym_preproc_else_token1] = ACTIONS(1325), - [aux_sym_preproc_elif_token1] = ACTIONS(1325), - [anon_sym_LPAREN2] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_typedef] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym___attribute] = ACTIONS(1325), - [anon_sym___attribute__] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1325), - [anon_sym___cdecl] = ACTIONS(1325), - [anon_sym___clrcall] = ACTIONS(1325), - [anon_sym___stdcall] = ACTIONS(1325), - [anon_sym___fastcall] = ACTIONS(1325), - [anon_sym___thiscall] = ACTIONS(1325), - [anon_sym___vectorcall] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_auto] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_inline] = ACTIONS(1325), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_volatile] = ACTIONS(1325), - [anon_sym_restrict] = ACTIONS(1325), - [anon_sym__Atomic] = ACTIONS(1325), - [anon_sym_in] = ACTIONS(1325), - [anon_sym_out] = ACTIONS(1325), - [anon_sym_inout] = ACTIONS(1325), - [anon_sym_bycopy] = ACTIONS(1325), - [anon_sym_byref] = ACTIONS(1325), - [anon_sym_oneway] = ACTIONS(1325), - [anon_sym__Nullable] = ACTIONS(1325), - [anon_sym__Nonnull] = ACTIONS(1325), - [anon_sym__Nullable_result] = ACTIONS(1325), - [anon_sym__Null_unspecified] = ACTIONS(1325), - [anon_sym___autoreleasing] = ACTIONS(1325), - [anon_sym___nullable] = ACTIONS(1325), - [anon_sym___nonnull] = ACTIONS(1325), - [anon_sym___strong] = ACTIONS(1325), - [anon_sym___weak] = ACTIONS(1325), - [anon_sym___bridge] = ACTIONS(1325), - [anon_sym___bridge_transfer] = ACTIONS(1325), - [anon_sym___bridge_retained] = ACTIONS(1325), - [anon_sym___unsafe_unretained] = ACTIONS(1325), - [anon_sym___block] = ACTIONS(1325), - [anon_sym___kindof] = ACTIONS(1325), - [anon_sym___unused] = ACTIONS(1325), - [anon_sym__Complex] = ACTIONS(1325), - [anon_sym___complex] = ACTIONS(1325), - [anon_sym_IBOutlet] = ACTIONS(1325), - [anon_sym_IBInspectable] = ACTIONS(1325), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1325), - [anon_sym_signed] = ACTIONS(1325), - [anon_sym_unsigned] = ACTIONS(1325), - [anon_sym_long] = ACTIONS(1325), - [anon_sym_short] = ACTIONS(1325), - [sym_primitive_type] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_NS_ENUM] = ACTIONS(1325), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1325), - [anon_sym_NS_OPTIONS] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_else] = ACTIONS(1325), - [anon_sym_switch] = ACTIONS(1325), - [anon_sym_case] = ACTIONS(1325), - [anon_sym_default] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_goto] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1327), - [anon_sym_sizeof] = ACTIONS(1325), - [sym_number_literal] = ACTIONS(1327), - [anon_sym_L_SQUOTE] = ACTIONS(1327), - [anon_sym_u_SQUOTE] = ACTIONS(1327), - [anon_sym_U_SQUOTE] = ACTIONS(1327), - [anon_sym_u8_SQUOTE] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_L_DQUOTE] = ACTIONS(1327), - [anon_sym_u_DQUOTE] = ACTIONS(1327), - [anon_sym_U_DQUOTE] = ACTIONS(1327), - [anon_sym_u8_DQUOTE] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [sym_true] = ACTIONS(1325), - [sym_false] = ACTIONS(1325), - [sym_null] = ACTIONS(1325), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1327), - [anon_sym_ATimport] = ACTIONS(1327), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1325), - [anon_sym_ATcompatibility_alias] = ACTIONS(1327), - [anon_sym_ATprotocol] = ACTIONS(1327), - [anon_sym_ATclass] = ACTIONS(1327), - [anon_sym_ATinterface] = ACTIONS(1327), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1325), - [sym_method_attribute_specifier] = ACTIONS(1325), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1325), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1325), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1325), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1325), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1325), - [anon_sym_NS_AVAILABLE] = ACTIONS(1325), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1325), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_API_AVAILABLE] = ACTIONS(1325), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_API_DEPRECATED] = ACTIONS(1325), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1325), - [anon_sym___deprecated_msg] = ACTIONS(1325), - [anon_sym___deprecated_enum_msg] = ACTIONS(1325), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1325), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1325), - [anon_sym_ATimplementation] = ACTIONS(1327), - [anon_sym_typeof] = ACTIONS(1325), - [anon_sym___typeof] = ACTIONS(1325), - [anon_sym___typeof__] = ACTIONS(1325), - [sym_self] = ACTIONS(1325), - [sym_super] = ACTIONS(1325), - [sym_nil] = ACTIONS(1325), - [sym_id] = ACTIONS(1325), - [sym_instancetype] = ACTIONS(1325), - [sym_Class] = ACTIONS(1325), - [sym_SEL] = ACTIONS(1325), - [sym_IMP] = ACTIONS(1325), - [sym_BOOL] = ACTIONS(1325), - [sym_auto] = ACTIONS(1325), - [anon_sym_ATautoreleasepool] = ACTIONS(1327), - [anon_sym_ATsynchronized] = ACTIONS(1327), - [anon_sym_ATtry] = ACTIONS(1327), - [anon_sym_ATcatch] = ACTIONS(1327), - [anon_sym_ATfinally] = ACTIONS(1327), - [anon_sym_ATthrow] = ACTIONS(1327), - [anon_sym_ATselector] = ACTIONS(1327), - [anon_sym_ATencode] = ACTIONS(1327), - [anon_sym_AT] = ACTIONS(1325), - [sym_YES] = ACTIONS(1325), - [sym_NO] = ACTIONS(1325), - [anon_sym___builtin_available] = ACTIONS(1325), - [anon_sym_ATavailable] = ACTIONS(1327), - [anon_sym_va_arg] = ACTIONS(1325), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [108] = { - [sym_identifier] = ACTIONS(1329), - [aux_sym_preproc_include_token1] = ACTIONS(1331), - [aux_sym_preproc_def_token1] = ACTIONS(1331), - [aux_sym_preproc_if_token1] = ACTIONS(1329), - [aux_sym_preproc_if_token2] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), - [aux_sym_preproc_else_token1] = ACTIONS(1329), - [aux_sym_preproc_elif_token1] = ACTIONS(1329), - [anon_sym_LPAREN2] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_typedef] = ACTIONS(1329), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym___attribute] = ACTIONS(1329), - [anon_sym___attribute__] = ACTIONS(1329), - [anon_sym___declspec] = ACTIONS(1329), - [anon_sym___cdecl] = ACTIONS(1329), - [anon_sym___clrcall] = ACTIONS(1329), - [anon_sym___stdcall] = ACTIONS(1329), - [anon_sym___fastcall] = ACTIONS(1329), - [anon_sym___thiscall] = ACTIONS(1329), - [anon_sym___vectorcall] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_static] = ACTIONS(1329), - [anon_sym_auto] = ACTIONS(1329), - [anon_sym_register] = ACTIONS(1329), - [anon_sym_inline] = ACTIONS(1329), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1329), - [anon_sym_const] = ACTIONS(1329), - [anon_sym_volatile] = ACTIONS(1329), - [anon_sym_restrict] = ACTIONS(1329), - [anon_sym__Atomic] = ACTIONS(1329), - [anon_sym_in] = ACTIONS(1329), - [anon_sym_out] = ACTIONS(1329), - [anon_sym_inout] = ACTIONS(1329), - [anon_sym_bycopy] = ACTIONS(1329), - [anon_sym_byref] = ACTIONS(1329), - [anon_sym_oneway] = ACTIONS(1329), - [anon_sym__Nullable] = ACTIONS(1329), - [anon_sym__Nonnull] = ACTIONS(1329), - [anon_sym__Nullable_result] = ACTIONS(1329), - [anon_sym__Null_unspecified] = ACTIONS(1329), - [anon_sym___autoreleasing] = ACTIONS(1329), - [anon_sym___nullable] = ACTIONS(1329), - [anon_sym___nonnull] = ACTIONS(1329), - [anon_sym___strong] = ACTIONS(1329), - [anon_sym___weak] = ACTIONS(1329), - [anon_sym___bridge] = ACTIONS(1329), - [anon_sym___bridge_transfer] = ACTIONS(1329), - [anon_sym___bridge_retained] = ACTIONS(1329), - [anon_sym___unsafe_unretained] = ACTIONS(1329), - [anon_sym___block] = ACTIONS(1329), - [anon_sym___kindof] = ACTIONS(1329), - [anon_sym___unused] = ACTIONS(1329), - [anon_sym__Complex] = ACTIONS(1329), - [anon_sym___complex] = ACTIONS(1329), - [anon_sym_IBOutlet] = ACTIONS(1329), - [anon_sym_IBInspectable] = ACTIONS(1329), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1329), - [anon_sym_signed] = ACTIONS(1329), - [anon_sym_unsigned] = ACTIONS(1329), - [anon_sym_long] = ACTIONS(1329), - [anon_sym_short] = ACTIONS(1329), - [sym_primitive_type] = ACTIONS(1329), - [anon_sym_enum] = ACTIONS(1329), - [anon_sym_NS_ENUM] = ACTIONS(1329), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1329), - [anon_sym_NS_OPTIONS] = ACTIONS(1329), - [anon_sym_struct] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1329), - [anon_sym_if] = ACTIONS(1329), - [anon_sym_else] = ACTIONS(1329), - [anon_sym_switch] = ACTIONS(1329), - [anon_sym_case] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1329), - [anon_sym_while] = ACTIONS(1329), - [anon_sym_do] = ACTIONS(1329), - [anon_sym_for] = ACTIONS(1329), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_break] = ACTIONS(1329), - [anon_sym_continue] = ACTIONS(1329), - [anon_sym_goto] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1331), - [anon_sym_PLUS_PLUS] = ACTIONS(1331), - [anon_sym_sizeof] = ACTIONS(1329), - [sym_number_literal] = ACTIONS(1331), - [anon_sym_L_SQUOTE] = ACTIONS(1331), - [anon_sym_u_SQUOTE] = ACTIONS(1331), - [anon_sym_U_SQUOTE] = ACTIONS(1331), - [anon_sym_u8_SQUOTE] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_L_DQUOTE] = ACTIONS(1331), - [anon_sym_u_DQUOTE] = ACTIONS(1331), - [anon_sym_U_DQUOTE] = ACTIONS(1331), - [anon_sym_u8_DQUOTE] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [sym_true] = ACTIONS(1329), - [sym_false] = ACTIONS(1329), - [sym_null] = ACTIONS(1329), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1331), - [anon_sym_ATimport] = ACTIONS(1331), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1329), - [anon_sym_ATcompatibility_alias] = ACTIONS(1331), - [anon_sym_ATprotocol] = ACTIONS(1331), - [anon_sym_ATclass] = ACTIONS(1331), - [anon_sym_ATinterface] = ACTIONS(1331), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1329), - [sym_method_attribute_specifier] = ACTIONS(1329), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1329), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1329), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1329), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1329), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1329), - [anon_sym_NS_AVAILABLE] = ACTIONS(1329), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1329), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_API_AVAILABLE] = ACTIONS(1329), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_API_DEPRECATED] = ACTIONS(1329), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1329), - [anon_sym___deprecated_msg] = ACTIONS(1329), - [anon_sym___deprecated_enum_msg] = ACTIONS(1329), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1329), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1329), - [anon_sym_ATimplementation] = ACTIONS(1331), - [anon_sym_typeof] = ACTIONS(1329), - [anon_sym___typeof] = ACTIONS(1329), - [anon_sym___typeof__] = ACTIONS(1329), - [sym_self] = ACTIONS(1329), - [sym_super] = ACTIONS(1329), - [sym_nil] = ACTIONS(1329), - [sym_id] = ACTIONS(1329), - [sym_instancetype] = ACTIONS(1329), - [sym_Class] = ACTIONS(1329), - [sym_SEL] = ACTIONS(1329), - [sym_IMP] = ACTIONS(1329), - [sym_BOOL] = ACTIONS(1329), - [sym_auto] = ACTIONS(1329), - [anon_sym_ATautoreleasepool] = ACTIONS(1331), - [anon_sym_ATsynchronized] = ACTIONS(1331), - [anon_sym_ATtry] = ACTIONS(1331), - [anon_sym_ATcatch] = ACTIONS(1331), - [anon_sym_ATfinally] = ACTIONS(1331), - [anon_sym_ATthrow] = ACTIONS(1331), - [anon_sym_ATselector] = ACTIONS(1331), - [anon_sym_ATencode] = ACTIONS(1331), - [anon_sym_AT] = ACTIONS(1329), - [sym_YES] = ACTIONS(1329), - [sym_NO] = ACTIONS(1329), - [anon_sym___builtin_available] = ACTIONS(1329), - [anon_sym_ATavailable] = ACTIONS(1331), - [anon_sym_va_arg] = ACTIONS(1329), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [109] = { - [sym_identifier] = ACTIONS(1329), - [aux_sym_preproc_include_token1] = ACTIONS(1331), - [aux_sym_preproc_def_token1] = ACTIONS(1331), - [aux_sym_preproc_if_token1] = ACTIONS(1329), - [aux_sym_preproc_if_token2] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), - [aux_sym_preproc_else_token1] = ACTIONS(1329), - [aux_sym_preproc_elif_token1] = ACTIONS(1329), - [anon_sym_LPAREN2] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_typedef] = ACTIONS(1329), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym___attribute] = ACTIONS(1329), - [anon_sym___attribute__] = ACTIONS(1329), - [anon_sym___declspec] = ACTIONS(1329), - [anon_sym___cdecl] = ACTIONS(1329), - [anon_sym___clrcall] = ACTIONS(1329), - [anon_sym___stdcall] = ACTIONS(1329), - [anon_sym___fastcall] = ACTIONS(1329), - [anon_sym___thiscall] = ACTIONS(1329), - [anon_sym___vectorcall] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_static] = ACTIONS(1329), - [anon_sym_auto] = ACTIONS(1329), - [anon_sym_register] = ACTIONS(1329), - [anon_sym_inline] = ACTIONS(1329), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1329), - [anon_sym_const] = ACTIONS(1329), - [anon_sym_volatile] = ACTIONS(1329), - [anon_sym_restrict] = ACTIONS(1329), - [anon_sym__Atomic] = ACTIONS(1329), - [anon_sym_in] = ACTIONS(1329), - [anon_sym_out] = ACTIONS(1329), - [anon_sym_inout] = ACTIONS(1329), - [anon_sym_bycopy] = ACTIONS(1329), - [anon_sym_byref] = ACTIONS(1329), - [anon_sym_oneway] = ACTIONS(1329), - [anon_sym__Nullable] = ACTIONS(1329), - [anon_sym__Nonnull] = ACTIONS(1329), - [anon_sym__Nullable_result] = ACTIONS(1329), - [anon_sym__Null_unspecified] = ACTIONS(1329), - [anon_sym___autoreleasing] = ACTIONS(1329), - [anon_sym___nullable] = ACTIONS(1329), - [anon_sym___nonnull] = ACTIONS(1329), - [anon_sym___strong] = ACTIONS(1329), - [anon_sym___weak] = ACTIONS(1329), - [anon_sym___bridge] = ACTIONS(1329), - [anon_sym___bridge_transfer] = ACTIONS(1329), - [anon_sym___bridge_retained] = ACTIONS(1329), - [anon_sym___unsafe_unretained] = ACTIONS(1329), - [anon_sym___block] = ACTIONS(1329), - [anon_sym___kindof] = ACTIONS(1329), - [anon_sym___unused] = ACTIONS(1329), - [anon_sym__Complex] = ACTIONS(1329), - [anon_sym___complex] = ACTIONS(1329), - [anon_sym_IBOutlet] = ACTIONS(1329), - [anon_sym_IBInspectable] = ACTIONS(1329), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1329), - [anon_sym_signed] = ACTIONS(1329), - [anon_sym_unsigned] = ACTIONS(1329), - [anon_sym_long] = ACTIONS(1329), - [anon_sym_short] = ACTIONS(1329), - [sym_primitive_type] = ACTIONS(1329), - [anon_sym_enum] = ACTIONS(1329), - [anon_sym_NS_ENUM] = ACTIONS(1329), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1329), - [anon_sym_NS_OPTIONS] = ACTIONS(1329), - [anon_sym_struct] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1329), - [anon_sym_if] = ACTIONS(1329), - [anon_sym_else] = ACTIONS(1329), - [anon_sym_switch] = ACTIONS(1329), - [anon_sym_case] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1329), - [anon_sym_while] = ACTIONS(1329), - [anon_sym_do] = ACTIONS(1329), - [anon_sym_for] = ACTIONS(1329), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_break] = ACTIONS(1329), - [anon_sym_continue] = ACTIONS(1329), - [anon_sym_goto] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1331), - [anon_sym_PLUS_PLUS] = ACTIONS(1331), - [anon_sym_sizeof] = ACTIONS(1329), - [sym_number_literal] = ACTIONS(1331), - [anon_sym_L_SQUOTE] = ACTIONS(1331), - [anon_sym_u_SQUOTE] = ACTIONS(1331), - [anon_sym_U_SQUOTE] = ACTIONS(1331), - [anon_sym_u8_SQUOTE] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_L_DQUOTE] = ACTIONS(1331), - [anon_sym_u_DQUOTE] = ACTIONS(1331), - [anon_sym_U_DQUOTE] = ACTIONS(1331), - [anon_sym_u8_DQUOTE] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [sym_true] = ACTIONS(1329), - [sym_false] = ACTIONS(1329), - [sym_null] = ACTIONS(1329), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1331), - [anon_sym_ATimport] = ACTIONS(1331), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1329), - [anon_sym_ATcompatibility_alias] = ACTIONS(1331), - [anon_sym_ATprotocol] = ACTIONS(1331), - [anon_sym_ATclass] = ACTIONS(1331), - [anon_sym_ATinterface] = ACTIONS(1331), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1329), - [sym_method_attribute_specifier] = ACTIONS(1329), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1329), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1329), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1329), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1329), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1329), - [anon_sym_NS_AVAILABLE] = ACTIONS(1329), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1329), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_API_AVAILABLE] = ACTIONS(1329), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_API_DEPRECATED] = ACTIONS(1329), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1329), - [anon_sym___deprecated_msg] = ACTIONS(1329), - [anon_sym___deprecated_enum_msg] = ACTIONS(1329), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1329), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1329), - [anon_sym_ATimplementation] = ACTIONS(1331), - [anon_sym_typeof] = ACTIONS(1329), - [anon_sym___typeof] = ACTIONS(1329), - [anon_sym___typeof__] = ACTIONS(1329), - [sym_self] = ACTIONS(1329), - [sym_super] = ACTIONS(1329), - [sym_nil] = ACTIONS(1329), - [sym_id] = ACTIONS(1329), - [sym_instancetype] = ACTIONS(1329), - [sym_Class] = ACTIONS(1329), - [sym_SEL] = ACTIONS(1329), - [sym_IMP] = ACTIONS(1329), - [sym_BOOL] = ACTIONS(1329), - [sym_auto] = ACTIONS(1329), - [anon_sym_ATautoreleasepool] = ACTIONS(1331), - [anon_sym_ATsynchronized] = ACTIONS(1331), - [anon_sym_ATtry] = ACTIONS(1331), - [anon_sym_ATcatch] = ACTIONS(1331), - [anon_sym_ATfinally] = ACTIONS(1331), - [anon_sym_ATthrow] = ACTIONS(1331), - [anon_sym_ATselector] = ACTIONS(1331), - [anon_sym_ATencode] = ACTIONS(1331), - [anon_sym_AT] = ACTIONS(1329), - [sym_YES] = ACTIONS(1329), - [sym_NO] = ACTIONS(1329), - [anon_sym___builtin_available] = ACTIONS(1329), - [anon_sym_ATavailable] = ACTIONS(1331), - [anon_sym_va_arg] = ACTIONS(1329), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [110] = { + [ts_builtin_sym_end] = ACTIONS(1331), [sym_identifier] = ACTIONS(1333), - [aux_sym_preproc_include_token1] = ACTIONS(1335), - [aux_sym_preproc_def_token1] = ACTIONS(1335), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [anon_sym_RPAREN] = ACTIONS(1331), [aux_sym_preproc_if_token1] = ACTIONS(1333), - [aux_sym_preproc_if_token2] = ACTIONS(1333), [aux_sym_preproc_ifdef_token1] = ACTIONS(1333), [aux_sym_preproc_ifdef_token2] = ACTIONS(1333), - [aux_sym_preproc_else_token1] = ACTIONS(1333), - [aux_sym_preproc_elif_token1] = ACTIONS(1333), - [anon_sym_LPAREN2] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_LPAREN2] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), [anon_sym_DASH] = ACTIONS(1333), [anon_sym_PLUS] = ACTIONS(1333), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_SEMI] = ACTIONS(1331), [anon_sym_typedef] = ACTIONS(1333), [anon_sym_extern] = ACTIONS(1333), [anon_sym___attribute] = ACTIONS(1333), @@ -44925,8 +43891,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1333), [anon_sym___thiscall] = ACTIONS(1333), [anon_sym___vectorcall] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_RBRACE] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_static] = ACTIONS(1333), [anon_sym_auto] = ACTIONS(1333), [anon_sym_register] = ACTIONS(1333), @@ -44969,9 +43936,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1333), [sym_primitive_type] = ACTIONS(1333), [anon_sym_enum] = ACTIONS(1333), - [anon_sym_NS_ENUM] = ACTIONS(1333), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1333), - [anon_sym_NS_OPTIONS] = ACTIONS(1333), [anon_sym_struct] = ACTIONS(1333), [anon_sym_union] = ACTIONS(1333), [anon_sym_if] = ACTIONS(1333), @@ -44986,31 +43950,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1333), [anon_sym_continue] = ACTIONS(1333), [anon_sym_goto] = ACTIONS(1333), - [anon_sym_DASH_DASH] = ACTIONS(1335), - [anon_sym_PLUS_PLUS] = ACTIONS(1335), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), [anon_sym_sizeof] = ACTIONS(1333), - [sym_number_literal] = ACTIONS(1335), - [anon_sym_L_SQUOTE] = ACTIONS(1335), - [anon_sym_u_SQUOTE] = ACTIONS(1335), - [anon_sym_U_SQUOTE] = ACTIONS(1335), - [anon_sym_u8_SQUOTE] = ACTIONS(1335), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_L_DQUOTE] = ACTIONS(1335), - [anon_sym_u_DQUOTE] = ACTIONS(1335), - [anon_sym_U_DQUOTE] = ACTIONS(1335), - [anon_sym_u8_DQUOTE] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(1331), + [anon_sym_L_SQUOTE] = ACTIONS(1331), + [anon_sym_u_SQUOTE] = ACTIONS(1331), + [anon_sym_U_SQUOTE] = ACTIONS(1331), + [anon_sym_u8_SQUOTE] = ACTIONS(1331), + [anon_sym_SQUOTE] = ACTIONS(1331), + [anon_sym_L_DQUOTE] = ACTIONS(1331), + [anon_sym_u_DQUOTE] = ACTIONS(1331), + [anon_sym_U_DQUOTE] = ACTIONS(1331), + [anon_sym_u8_DQUOTE] = ACTIONS(1331), + [anon_sym_DQUOTE] = ACTIONS(1331), [sym_true] = ACTIONS(1333), [sym_false] = ACTIONS(1333), [sym_null] = ACTIONS(1333), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1335), - [anon_sym_ATimport] = ACTIONS(1335), + [anon_sym_POUNDimport] = ACTIONS(1331), + [anon_sym_ATimport] = ACTIONS(1331), [sym__ns_assume_nonnull_declaration] = ACTIONS(1333), - [anon_sym_ATcompatibility_alias] = ACTIONS(1335), - [anon_sym_ATprotocol] = ACTIONS(1335), - [anon_sym_ATclass] = ACTIONS(1335), - [anon_sym_ATinterface] = ACTIONS(1335), + [anon_sym_ATcompatibility_alias] = ACTIONS(1331), + [anon_sym_ATprotocol] = ACTIONS(1331), + [anon_sym_ATclass] = ACTIONS(1331), + [anon_sym_ATinterface] = ACTIONS(1331), [sym_class_interface_attribute_sepcifier] = ACTIONS(1333), [sym_method_attribute_specifier] = ACTIONS(1333), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1333), @@ -45037,7 +44001,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1333), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1333), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1333), - [anon_sym_ATimplementation] = ACTIONS(1335), + [anon_sym_ATimplementation] = ACTIONS(1331), + [anon_sym_NS_ENUM] = ACTIONS(1333), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1333), + [anon_sym_NS_OPTIONS] = ACTIONS(1333), [anon_sym_typeof] = ACTIONS(1333), [anon_sym___typeof] = ACTIONS(1333), [anon_sym___typeof__] = ACTIONS(1333), @@ -45051,46 +44018,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1333), [sym_BOOL] = ACTIONS(1333), [sym_auto] = ACTIONS(1333), - [anon_sym_ATautoreleasepool] = ACTIONS(1335), - [anon_sym_ATsynchronized] = ACTIONS(1335), - [anon_sym_ATtry] = ACTIONS(1335), - [anon_sym_ATcatch] = ACTIONS(1335), - [anon_sym_ATfinally] = ACTIONS(1335), - [anon_sym_ATthrow] = ACTIONS(1335), - [anon_sym_ATselector] = ACTIONS(1335), - [anon_sym_ATencode] = ACTIONS(1335), + [anon_sym_ATautoreleasepool] = ACTIONS(1331), + [anon_sym_ATsynchronized] = ACTIONS(1331), + [anon_sym_ATtry] = ACTIONS(1331), + [anon_sym_ATcatch] = ACTIONS(1331), + [anon_sym_ATfinally] = ACTIONS(1331), + [anon_sym_ATthrow] = ACTIONS(1331), + [anon_sym_ATselector] = ACTIONS(1331), + [anon_sym_ATencode] = ACTIONS(1331), [anon_sym_AT] = ACTIONS(1333), [sym_YES] = ACTIONS(1333), [sym_NO] = ACTIONS(1333), [anon_sym___builtin_available] = ACTIONS(1333), - [anon_sym_ATavailable] = ACTIONS(1335), + [anon_sym_ATavailable] = ACTIONS(1331), [anon_sym_va_arg] = ACTIONS(1333), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [111] = { + [105] = { + [ts_builtin_sym_end] = ACTIONS(1335), [sym_identifier] = ACTIONS(1337), - [aux_sym_preproc_include_token1] = ACTIONS(1339), - [aux_sym_preproc_def_token1] = ACTIONS(1339), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [anon_sym_RPAREN] = ACTIONS(1335), [aux_sym_preproc_if_token1] = ACTIONS(1337), - [aux_sym_preproc_if_token2] = ACTIONS(1337), [aux_sym_preproc_ifdef_token1] = ACTIONS(1337), [aux_sym_preproc_ifdef_token2] = ACTIONS(1337), - [aux_sym_preproc_else_token1] = ACTIONS(1337), - [aux_sym_preproc_elif_token1] = ACTIONS(1337), - [anon_sym_LPAREN2] = ACTIONS(1339), - [anon_sym_BANG] = ACTIONS(1339), - [anon_sym_TILDE] = ACTIONS(1339), + [anon_sym_LPAREN2] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_TILDE] = ACTIONS(1335), [anon_sym_DASH] = ACTIONS(1337), [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1339), - [anon_sym_CARET] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1339), - [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1335), [anon_sym_typedef] = ACTIONS(1337), [anon_sym_extern] = ACTIONS(1337), [anon_sym___attribute] = ACTIONS(1337), @@ -45102,8 +44068,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1337), [anon_sym___thiscall] = ACTIONS(1337), [anon_sym___vectorcall] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1335), [anon_sym_static] = ACTIONS(1337), [anon_sym_auto] = ACTIONS(1337), [anon_sym_register] = ACTIONS(1337), @@ -45146,9 +44113,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1337), [sym_primitive_type] = ACTIONS(1337), [anon_sym_enum] = ACTIONS(1337), - [anon_sym_NS_ENUM] = ACTIONS(1337), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1337), - [anon_sym_NS_OPTIONS] = ACTIONS(1337), [anon_sym_struct] = ACTIONS(1337), [anon_sym_union] = ACTIONS(1337), [anon_sym_if] = ACTIONS(1337), @@ -45163,31 +44127,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1337), [anon_sym_continue] = ACTIONS(1337), [anon_sym_goto] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1339), - [anon_sym_PLUS_PLUS] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1335), + [anon_sym_PLUS_PLUS] = ACTIONS(1335), [anon_sym_sizeof] = ACTIONS(1337), - [sym_number_literal] = ACTIONS(1339), - [anon_sym_L_SQUOTE] = ACTIONS(1339), - [anon_sym_u_SQUOTE] = ACTIONS(1339), - [anon_sym_U_SQUOTE] = ACTIONS(1339), - [anon_sym_u8_SQUOTE] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(1339), - [anon_sym_L_DQUOTE] = ACTIONS(1339), - [anon_sym_u_DQUOTE] = ACTIONS(1339), - [anon_sym_U_DQUOTE] = ACTIONS(1339), - [anon_sym_u8_DQUOTE] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(1339), + [sym_number_literal] = ACTIONS(1335), + [anon_sym_L_SQUOTE] = ACTIONS(1335), + [anon_sym_u_SQUOTE] = ACTIONS(1335), + [anon_sym_U_SQUOTE] = ACTIONS(1335), + [anon_sym_u8_SQUOTE] = ACTIONS(1335), + [anon_sym_SQUOTE] = ACTIONS(1335), + [anon_sym_L_DQUOTE] = ACTIONS(1335), + [anon_sym_u_DQUOTE] = ACTIONS(1335), + [anon_sym_U_DQUOTE] = ACTIONS(1335), + [anon_sym_u8_DQUOTE] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1335), [sym_true] = ACTIONS(1337), [sym_false] = ACTIONS(1337), [sym_null] = ACTIONS(1337), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1339), - [anon_sym_ATimport] = ACTIONS(1339), + [anon_sym_POUNDimport] = ACTIONS(1335), + [anon_sym_ATimport] = ACTIONS(1335), [sym__ns_assume_nonnull_declaration] = ACTIONS(1337), - [anon_sym_ATcompatibility_alias] = ACTIONS(1339), - [anon_sym_ATprotocol] = ACTIONS(1339), - [anon_sym_ATclass] = ACTIONS(1339), - [anon_sym_ATinterface] = ACTIONS(1339), + [anon_sym_ATcompatibility_alias] = ACTIONS(1335), + [anon_sym_ATprotocol] = ACTIONS(1335), + [anon_sym_ATclass] = ACTIONS(1335), + [anon_sym_ATinterface] = ACTIONS(1335), [sym_class_interface_attribute_sepcifier] = ACTIONS(1337), [sym_method_attribute_specifier] = ACTIONS(1337), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1337), @@ -45214,7 +44178,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1337), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1337), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1337), - [anon_sym_ATimplementation] = ACTIONS(1339), + [anon_sym_ATimplementation] = ACTIONS(1335), + [anon_sym_NS_ENUM] = ACTIONS(1337), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1337), + [anon_sym_NS_OPTIONS] = ACTIONS(1337), [anon_sym_typeof] = ACTIONS(1337), [anon_sym___typeof] = ACTIONS(1337), [anon_sym___typeof__] = ACTIONS(1337), @@ -45228,46 +44195,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1337), [sym_BOOL] = ACTIONS(1337), [sym_auto] = ACTIONS(1337), - [anon_sym_ATautoreleasepool] = ACTIONS(1339), - [anon_sym_ATsynchronized] = ACTIONS(1339), - [anon_sym_ATtry] = ACTIONS(1339), - [anon_sym_ATcatch] = ACTIONS(1339), - [anon_sym_ATfinally] = ACTIONS(1339), - [anon_sym_ATthrow] = ACTIONS(1339), - [anon_sym_ATselector] = ACTIONS(1339), - [anon_sym_ATencode] = ACTIONS(1339), + [anon_sym_ATautoreleasepool] = ACTIONS(1335), + [anon_sym_ATsynchronized] = ACTIONS(1335), + [anon_sym_ATtry] = ACTIONS(1335), + [anon_sym_ATcatch] = ACTIONS(1335), + [anon_sym_ATfinally] = ACTIONS(1335), + [anon_sym_ATthrow] = ACTIONS(1335), + [anon_sym_ATselector] = ACTIONS(1335), + [anon_sym_ATencode] = ACTIONS(1335), [anon_sym_AT] = ACTIONS(1337), [sym_YES] = ACTIONS(1337), [sym_NO] = ACTIONS(1337), [anon_sym___builtin_available] = ACTIONS(1337), - [anon_sym_ATavailable] = ACTIONS(1339), + [anon_sym_ATavailable] = ACTIONS(1335), [anon_sym_va_arg] = ACTIONS(1337), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [112] = { + [106] = { + [ts_builtin_sym_end] = ACTIONS(1339), [sym_identifier] = ACTIONS(1341), - [aux_sym_preproc_include_token1] = ACTIONS(1343), - [aux_sym_preproc_def_token1] = ACTIONS(1343), + [aux_sym_preproc_include_token1] = ACTIONS(1339), + [aux_sym_preproc_def_token1] = ACTIONS(1339), + [anon_sym_RPAREN] = ACTIONS(1339), [aux_sym_preproc_if_token1] = ACTIONS(1341), - [aux_sym_preproc_if_token2] = ACTIONS(1341), [aux_sym_preproc_ifdef_token1] = ACTIONS(1341), [aux_sym_preproc_ifdef_token2] = ACTIONS(1341), - [aux_sym_preproc_else_token1] = ACTIONS(1341), - [aux_sym_preproc_elif_token1] = ACTIONS(1341), - [anon_sym_LPAREN2] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LPAREN2] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1339), + [anon_sym_TILDE] = ACTIONS(1339), [anon_sym_DASH] = ACTIONS(1341), [anon_sym_PLUS] = ACTIONS(1341), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1339), + [anon_sym_SEMI] = ACTIONS(1339), [anon_sym_typedef] = ACTIONS(1341), [anon_sym_extern] = ACTIONS(1341), [anon_sym___attribute] = ACTIONS(1341), @@ -45279,8 +44245,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1341), [anon_sym___thiscall] = ACTIONS(1341), [anon_sym___vectorcall] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_RBRACE] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1339), [anon_sym_static] = ACTIONS(1341), [anon_sym_auto] = ACTIONS(1341), [anon_sym_register] = ACTIONS(1341), @@ -45323,9 +44290,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1341), [sym_primitive_type] = ACTIONS(1341), [anon_sym_enum] = ACTIONS(1341), - [anon_sym_NS_ENUM] = ACTIONS(1341), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1341), - [anon_sym_NS_OPTIONS] = ACTIONS(1341), [anon_sym_struct] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1341), [anon_sym_if] = ACTIONS(1341), @@ -45340,31 +44304,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1341), [anon_sym_continue] = ACTIONS(1341), [anon_sym_goto] = ACTIONS(1341), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1339), + [anon_sym_PLUS_PLUS] = ACTIONS(1339), [anon_sym_sizeof] = ACTIONS(1341), - [sym_number_literal] = ACTIONS(1343), - [anon_sym_L_SQUOTE] = ACTIONS(1343), - [anon_sym_u_SQUOTE] = ACTIONS(1343), - [anon_sym_U_SQUOTE] = ACTIONS(1343), - [anon_sym_u8_SQUOTE] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1343), - [anon_sym_L_DQUOTE] = ACTIONS(1343), - [anon_sym_u_DQUOTE] = ACTIONS(1343), - [anon_sym_U_DQUOTE] = ACTIONS(1343), - [anon_sym_u8_DQUOTE] = ACTIONS(1343), - [anon_sym_DQUOTE] = ACTIONS(1343), + [sym_number_literal] = ACTIONS(1339), + [anon_sym_L_SQUOTE] = ACTIONS(1339), + [anon_sym_u_SQUOTE] = ACTIONS(1339), + [anon_sym_U_SQUOTE] = ACTIONS(1339), + [anon_sym_u8_SQUOTE] = ACTIONS(1339), + [anon_sym_SQUOTE] = ACTIONS(1339), + [anon_sym_L_DQUOTE] = ACTIONS(1339), + [anon_sym_u_DQUOTE] = ACTIONS(1339), + [anon_sym_U_DQUOTE] = ACTIONS(1339), + [anon_sym_u8_DQUOTE] = ACTIONS(1339), + [anon_sym_DQUOTE] = ACTIONS(1339), [sym_true] = ACTIONS(1341), [sym_false] = ACTIONS(1341), [sym_null] = ACTIONS(1341), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1343), - [anon_sym_ATimport] = ACTIONS(1343), + [anon_sym_POUNDimport] = ACTIONS(1339), + [anon_sym_ATimport] = ACTIONS(1339), [sym__ns_assume_nonnull_declaration] = ACTIONS(1341), - [anon_sym_ATcompatibility_alias] = ACTIONS(1343), - [anon_sym_ATprotocol] = ACTIONS(1343), - [anon_sym_ATclass] = ACTIONS(1343), - [anon_sym_ATinterface] = ACTIONS(1343), + [anon_sym_ATcompatibility_alias] = ACTIONS(1339), + [anon_sym_ATprotocol] = ACTIONS(1339), + [anon_sym_ATclass] = ACTIONS(1339), + [anon_sym_ATinterface] = ACTIONS(1339), [sym_class_interface_attribute_sepcifier] = ACTIONS(1341), [sym_method_attribute_specifier] = ACTIONS(1341), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1341), @@ -45391,7 +44355,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1341), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1341), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1341), - [anon_sym_ATimplementation] = ACTIONS(1343), + [anon_sym_ATimplementation] = ACTIONS(1339), + [anon_sym_NS_ENUM] = ACTIONS(1341), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1341), + [anon_sym_NS_OPTIONS] = ACTIONS(1341), [anon_sym_typeof] = ACTIONS(1341), [anon_sym___typeof] = ACTIONS(1341), [anon_sym___typeof__] = ACTIONS(1341), @@ -45405,46 +44372,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1341), [sym_BOOL] = ACTIONS(1341), [sym_auto] = ACTIONS(1341), - [anon_sym_ATautoreleasepool] = ACTIONS(1343), - [anon_sym_ATsynchronized] = ACTIONS(1343), - [anon_sym_ATtry] = ACTIONS(1343), - [anon_sym_ATcatch] = ACTIONS(1343), - [anon_sym_ATfinally] = ACTIONS(1343), - [anon_sym_ATthrow] = ACTIONS(1343), - [anon_sym_ATselector] = ACTIONS(1343), - [anon_sym_ATencode] = ACTIONS(1343), + [anon_sym_ATautoreleasepool] = ACTIONS(1339), + [anon_sym_ATsynchronized] = ACTIONS(1339), + [anon_sym_ATtry] = ACTIONS(1339), + [anon_sym_ATcatch] = ACTIONS(1339), + [anon_sym_ATfinally] = ACTIONS(1339), + [anon_sym_ATthrow] = ACTIONS(1339), + [anon_sym_ATselector] = ACTIONS(1339), + [anon_sym_ATencode] = ACTIONS(1339), [anon_sym_AT] = ACTIONS(1341), [sym_YES] = ACTIONS(1341), [sym_NO] = ACTIONS(1341), [anon_sym___builtin_available] = ACTIONS(1341), - [anon_sym_ATavailable] = ACTIONS(1343), + [anon_sym_ATavailable] = ACTIONS(1339), [anon_sym_va_arg] = ACTIONS(1341), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [113] = { + [107] = { + [ts_builtin_sym_end] = ACTIONS(1343), [sym_identifier] = ACTIONS(1345), - [aux_sym_preproc_include_token1] = ACTIONS(1347), - [aux_sym_preproc_def_token1] = ACTIONS(1347), + [aux_sym_preproc_include_token1] = ACTIONS(1343), + [aux_sym_preproc_def_token1] = ACTIONS(1343), + [anon_sym_RPAREN] = ACTIONS(1343), [aux_sym_preproc_if_token1] = ACTIONS(1345), - [aux_sym_preproc_if_token2] = ACTIONS(1345), [aux_sym_preproc_ifdef_token1] = ACTIONS(1345), [aux_sym_preproc_ifdef_token2] = ACTIONS(1345), - [aux_sym_preproc_else_token1] = ACTIONS(1345), - [aux_sym_preproc_elif_token1] = ACTIONS(1345), - [anon_sym_LPAREN2] = ACTIONS(1347), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_LPAREN2] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1343), [anon_sym_DASH] = ACTIONS(1345), [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1347), - [anon_sym_CARET] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1343), [anon_sym_typedef] = ACTIONS(1345), [anon_sym_extern] = ACTIONS(1345), [anon_sym___attribute] = ACTIONS(1345), @@ -45456,8 +44422,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1345), [anon_sym___thiscall] = ACTIONS(1345), [anon_sym___vectorcall] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_LBRACK] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_RBRACE] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(1343), [anon_sym_static] = ACTIONS(1345), [anon_sym_auto] = ACTIONS(1345), [anon_sym_register] = ACTIONS(1345), @@ -45500,9 +44467,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1345), [sym_primitive_type] = ACTIONS(1345), [anon_sym_enum] = ACTIONS(1345), - [anon_sym_NS_ENUM] = ACTIONS(1345), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1345), - [anon_sym_NS_OPTIONS] = ACTIONS(1345), [anon_sym_struct] = ACTIONS(1345), [anon_sym_union] = ACTIONS(1345), [anon_sym_if] = ACTIONS(1345), @@ -45517,31 +44481,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1345), [anon_sym_continue] = ACTIONS(1345), [anon_sym_goto] = ACTIONS(1345), - [anon_sym_DASH_DASH] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_PLUS_PLUS] = ACTIONS(1343), [anon_sym_sizeof] = ACTIONS(1345), - [sym_number_literal] = ACTIONS(1347), - [anon_sym_L_SQUOTE] = ACTIONS(1347), - [anon_sym_u_SQUOTE] = ACTIONS(1347), - [anon_sym_U_SQUOTE] = ACTIONS(1347), - [anon_sym_u8_SQUOTE] = ACTIONS(1347), - [anon_sym_SQUOTE] = ACTIONS(1347), - [anon_sym_L_DQUOTE] = ACTIONS(1347), - [anon_sym_u_DQUOTE] = ACTIONS(1347), - [anon_sym_U_DQUOTE] = ACTIONS(1347), - [anon_sym_u8_DQUOTE] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(1347), + [sym_number_literal] = ACTIONS(1343), + [anon_sym_L_SQUOTE] = ACTIONS(1343), + [anon_sym_u_SQUOTE] = ACTIONS(1343), + [anon_sym_U_SQUOTE] = ACTIONS(1343), + [anon_sym_u8_SQUOTE] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1343), + [anon_sym_L_DQUOTE] = ACTIONS(1343), + [anon_sym_u_DQUOTE] = ACTIONS(1343), + [anon_sym_U_DQUOTE] = ACTIONS(1343), + [anon_sym_u8_DQUOTE] = ACTIONS(1343), + [anon_sym_DQUOTE] = ACTIONS(1343), [sym_true] = ACTIONS(1345), [sym_false] = ACTIONS(1345), [sym_null] = ACTIONS(1345), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1347), - [anon_sym_ATimport] = ACTIONS(1347), + [anon_sym_POUNDimport] = ACTIONS(1343), + [anon_sym_ATimport] = ACTIONS(1343), [sym__ns_assume_nonnull_declaration] = ACTIONS(1345), - [anon_sym_ATcompatibility_alias] = ACTIONS(1347), - [anon_sym_ATprotocol] = ACTIONS(1347), - [anon_sym_ATclass] = ACTIONS(1347), - [anon_sym_ATinterface] = ACTIONS(1347), + [anon_sym_ATcompatibility_alias] = ACTIONS(1343), + [anon_sym_ATprotocol] = ACTIONS(1343), + [anon_sym_ATclass] = ACTIONS(1343), + [anon_sym_ATinterface] = ACTIONS(1343), [sym_class_interface_attribute_sepcifier] = ACTIONS(1345), [sym_method_attribute_specifier] = ACTIONS(1345), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1345), @@ -45568,7 +44532,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1345), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1345), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1345), - [anon_sym_ATimplementation] = ACTIONS(1347), + [anon_sym_ATimplementation] = ACTIONS(1343), + [anon_sym_NS_ENUM] = ACTIONS(1345), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1345), + [anon_sym_NS_OPTIONS] = ACTIONS(1345), [anon_sym_typeof] = ACTIONS(1345), [anon_sym___typeof] = ACTIONS(1345), [anon_sym___typeof__] = ACTIONS(1345), @@ -45582,46 +44549,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1345), [sym_BOOL] = ACTIONS(1345), [sym_auto] = ACTIONS(1345), - [anon_sym_ATautoreleasepool] = ACTIONS(1347), - [anon_sym_ATsynchronized] = ACTIONS(1347), - [anon_sym_ATtry] = ACTIONS(1347), - [anon_sym_ATcatch] = ACTIONS(1347), - [anon_sym_ATfinally] = ACTIONS(1347), - [anon_sym_ATthrow] = ACTIONS(1347), - [anon_sym_ATselector] = ACTIONS(1347), - [anon_sym_ATencode] = ACTIONS(1347), + [anon_sym_ATautoreleasepool] = ACTIONS(1343), + [anon_sym_ATsynchronized] = ACTIONS(1343), + [anon_sym_ATtry] = ACTIONS(1343), + [anon_sym_ATcatch] = ACTIONS(1343), + [anon_sym_ATfinally] = ACTIONS(1343), + [anon_sym_ATthrow] = ACTIONS(1343), + [anon_sym_ATselector] = ACTIONS(1343), + [anon_sym_ATencode] = ACTIONS(1343), [anon_sym_AT] = ACTIONS(1345), [sym_YES] = ACTIONS(1345), [sym_NO] = ACTIONS(1345), [anon_sym___builtin_available] = ACTIONS(1345), - [anon_sym_ATavailable] = ACTIONS(1347), + [anon_sym_ATavailable] = ACTIONS(1343), [anon_sym_va_arg] = ACTIONS(1345), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [114] = { + [108] = { + [ts_builtin_sym_end] = ACTIONS(1347), [sym_identifier] = ACTIONS(1349), - [aux_sym_preproc_include_token1] = ACTIONS(1351), - [aux_sym_preproc_def_token1] = ACTIONS(1351), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [anon_sym_RPAREN] = ACTIONS(1347), [aux_sym_preproc_if_token1] = ACTIONS(1349), - [aux_sym_preproc_if_token2] = ACTIONS(1349), [aux_sym_preproc_ifdef_token1] = ACTIONS(1349), [aux_sym_preproc_ifdef_token2] = ACTIONS(1349), - [aux_sym_preproc_else_token1] = ACTIONS(1349), - [aux_sym_preproc_elif_token1] = ACTIONS(1349), - [anon_sym_LPAREN2] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(1351), - [anon_sym_TILDE] = ACTIONS(1351), + [anon_sym_LPAREN2] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), [anon_sym_DASH] = ACTIONS(1349), [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1351), - [anon_sym_AMP] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), [anon_sym_typedef] = ACTIONS(1349), [anon_sym_extern] = ACTIONS(1349), [anon_sym___attribute] = ACTIONS(1349), @@ -45633,8 +44599,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1349), [anon_sym___thiscall] = ACTIONS(1349), [anon_sym___vectorcall] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1347), + [anon_sym_RBRACE] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1347), [anon_sym_static] = ACTIONS(1349), [anon_sym_auto] = ACTIONS(1349), [anon_sym_register] = ACTIONS(1349), @@ -45677,9 +44644,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1349), [sym_primitive_type] = ACTIONS(1349), [anon_sym_enum] = ACTIONS(1349), - [anon_sym_NS_ENUM] = ACTIONS(1349), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1349), - [anon_sym_NS_OPTIONS] = ACTIONS(1349), [anon_sym_struct] = ACTIONS(1349), [anon_sym_union] = ACTIONS(1349), [anon_sym_if] = ACTIONS(1349), @@ -45694,31 +44658,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1349), [anon_sym_continue] = ACTIONS(1349), [anon_sym_goto] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1351), - [anon_sym_PLUS_PLUS] = ACTIONS(1351), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), [anon_sym_sizeof] = ACTIONS(1349), - [sym_number_literal] = ACTIONS(1351), - [anon_sym_L_SQUOTE] = ACTIONS(1351), - [anon_sym_u_SQUOTE] = ACTIONS(1351), - [anon_sym_U_SQUOTE] = ACTIONS(1351), - [anon_sym_u8_SQUOTE] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_L_DQUOTE] = ACTIONS(1351), - [anon_sym_u_DQUOTE] = ACTIONS(1351), - [anon_sym_U_DQUOTE] = ACTIONS(1351), - [anon_sym_u8_DQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1351), + [sym_number_literal] = ACTIONS(1347), + [anon_sym_L_SQUOTE] = ACTIONS(1347), + [anon_sym_u_SQUOTE] = ACTIONS(1347), + [anon_sym_U_SQUOTE] = ACTIONS(1347), + [anon_sym_u8_SQUOTE] = ACTIONS(1347), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_L_DQUOTE] = ACTIONS(1347), + [anon_sym_u_DQUOTE] = ACTIONS(1347), + [anon_sym_U_DQUOTE] = ACTIONS(1347), + [anon_sym_u8_DQUOTE] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(1347), [sym_true] = ACTIONS(1349), [sym_false] = ACTIONS(1349), [sym_null] = ACTIONS(1349), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1351), - [anon_sym_ATimport] = ACTIONS(1351), + [anon_sym_POUNDimport] = ACTIONS(1347), + [anon_sym_ATimport] = ACTIONS(1347), [sym__ns_assume_nonnull_declaration] = ACTIONS(1349), - [anon_sym_ATcompatibility_alias] = ACTIONS(1351), - [anon_sym_ATprotocol] = ACTIONS(1351), - [anon_sym_ATclass] = ACTIONS(1351), - [anon_sym_ATinterface] = ACTIONS(1351), + [anon_sym_ATcompatibility_alias] = ACTIONS(1347), + [anon_sym_ATprotocol] = ACTIONS(1347), + [anon_sym_ATclass] = ACTIONS(1347), + [anon_sym_ATinterface] = ACTIONS(1347), [sym_class_interface_attribute_sepcifier] = ACTIONS(1349), [sym_method_attribute_specifier] = ACTIONS(1349), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1349), @@ -45745,7 +44709,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1349), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1349), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1349), - [anon_sym_ATimplementation] = ACTIONS(1351), + [anon_sym_ATimplementation] = ACTIONS(1347), + [anon_sym_NS_ENUM] = ACTIONS(1349), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1349), + [anon_sym_NS_OPTIONS] = ACTIONS(1349), [anon_sym_typeof] = ACTIONS(1349), [anon_sym___typeof] = ACTIONS(1349), [anon_sym___typeof__] = ACTIONS(1349), @@ -45759,46 +44726,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1349), [sym_BOOL] = ACTIONS(1349), [sym_auto] = ACTIONS(1349), - [anon_sym_ATautoreleasepool] = ACTIONS(1351), - [anon_sym_ATsynchronized] = ACTIONS(1351), - [anon_sym_ATtry] = ACTIONS(1351), - [anon_sym_ATcatch] = ACTIONS(1351), - [anon_sym_ATfinally] = ACTIONS(1351), - [anon_sym_ATthrow] = ACTIONS(1351), - [anon_sym_ATselector] = ACTIONS(1351), - [anon_sym_ATencode] = ACTIONS(1351), + [anon_sym_ATautoreleasepool] = ACTIONS(1347), + [anon_sym_ATsynchronized] = ACTIONS(1347), + [anon_sym_ATtry] = ACTIONS(1347), + [anon_sym_ATcatch] = ACTIONS(1347), + [anon_sym_ATfinally] = ACTIONS(1347), + [anon_sym_ATthrow] = ACTIONS(1347), + [anon_sym_ATselector] = ACTIONS(1347), + [anon_sym_ATencode] = ACTIONS(1347), [anon_sym_AT] = ACTIONS(1349), [sym_YES] = ACTIONS(1349), [sym_NO] = ACTIONS(1349), [anon_sym___builtin_available] = ACTIONS(1349), - [anon_sym_ATavailable] = ACTIONS(1351), + [anon_sym_ATavailable] = ACTIONS(1347), [anon_sym_va_arg] = ACTIONS(1349), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [115] = { + [109] = { + [ts_builtin_sym_end] = ACTIONS(1351), [sym_identifier] = ACTIONS(1353), - [aux_sym_preproc_include_token1] = ACTIONS(1355), - [aux_sym_preproc_def_token1] = ACTIONS(1355), + [aux_sym_preproc_include_token1] = ACTIONS(1351), + [aux_sym_preproc_def_token1] = ACTIONS(1351), + [anon_sym_RPAREN] = ACTIONS(1351), [aux_sym_preproc_if_token1] = ACTIONS(1353), - [aux_sym_preproc_if_token2] = ACTIONS(1353), [aux_sym_preproc_ifdef_token1] = ACTIONS(1353), [aux_sym_preproc_ifdef_token2] = ACTIONS(1353), - [aux_sym_preproc_else_token1] = ACTIONS(1353), - [aux_sym_preproc_elif_token1] = ACTIONS(1353), - [anon_sym_LPAREN2] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_LPAREN2] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1351), [anon_sym_DASH] = ACTIONS(1353), [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_CARET] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(1355), - [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1351), [anon_sym_typedef] = ACTIONS(1353), [anon_sym_extern] = ACTIONS(1353), [anon_sym___attribute] = ACTIONS(1353), @@ -45810,8 +44776,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1353), [anon_sym___thiscall] = ACTIONS(1353), [anon_sym___vectorcall] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_LBRACK] = ACTIONS(1355), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_RBRACE] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1351), [anon_sym_static] = ACTIONS(1353), [anon_sym_auto] = ACTIONS(1353), [anon_sym_register] = ACTIONS(1353), @@ -45854,9 +44821,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1353), [sym_primitive_type] = ACTIONS(1353), [anon_sym_enum] = ACTIONS(1353), - [anon_sym_NS_ENUM] = ACTIONS(1353), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1353), - [anon_sym_NS_OPTIONS] = ACTIONS(1353), [anon_sym_struct] = ACTIONS(1353), [anon_sym_union] = ACTIONS(1353), [anon_sym_if] = ACTIONS(1353), @@ -45871,31 +44835,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1353), [anon_sym_continue] = ACTIONS(1353), [anon_sym_goto] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1355), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(1351), [anon_sym_sizeof] = ACTIONS(1353), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_L_SQUOTE] = ACTIONS(1355), - [anon_sym_u_SQUOTE] = ACTIONS(1355), - [anon_sym_U_SQUOTE] = ACTIONS(1355), - [anon_sym_u8_SQUOTE] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_L_DQUOTE] = ACTIONS(1355), - [anon_sym_u_DQUOTE] = ACTIONS(1355), - [anon_sym_U_DQUOTE] = ACTIONS(1355), - [anon_sym_u8_DQUOTE] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1355), + [sym_number_literal] = ACTIONS(1351), + [anon_sym_L_SQUOTE] = ACTIONS(1351), + [anon_sym_u_SQUOTE] = ACTIONS(1351), + [anon_sym_U_SQUOTE] = ACTIONS(1351), + [anon_sym_u8_SQUOTE] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_L_DQUOTE] = ACTIONS(1351), + [anon_sym_u_DQUOTE] = ACTIONS(1351), + [anon_sym_U_DQUOTE] = ACTIONS(1351), + [anon_sym_u8_DQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1351), [sym_true] = ACTIONS(1353), [sym_false] = ACTIONS(1353), [sym_null] = ACTIONS(1353), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1355), - [anon_sym_ATimport] = ACTIONS(1355), + [anon_sym_POUNDimport] = ACTIONS(1351), + [anon_sym_ATimport] = ACTIONS(1351), [sym__ns_assume_nonnull_declaration] = ACTIONS(1353), - [anon_sym_ATcompatibility_alias] = ACTIONS(1355), - [anon_sym_ATprotocol] = ACTIONS(1355), - [anon_sym_ATclass] = ACTIONS(1355), - [anon_sym_ATinterface] = ACTIONS(1355), + [anon_sym_ATcompatibility_alias] = ACTIONS(1351), + [anon_sym_ATprotocol] = ACTIONS(1351), + [anon_sym_ATclass] = ACTIONS(1351), + [anon_sym_ATinterface] = ACTIONS(1351), [sym_class_interface_attribute_sepcifier] = ACTIONS(1353), [sym_method_attribute_specifier] = ACTIONS(1353), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1353), @@ -45922,7 +44886,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1353), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1353), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1353), - [anon_sym_ATimplementation] = ACTIONS(1355), + [anon_sym_ATimplementation] = ACTIONS(1351), + [anon_sym_NS_ENUM] = ACTIONS(1353), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1353), + [anon_sym_NS_OPTIONS] = ACTIONS(1353), [anon_sym_typeof] = ACTIONS(1353), [anon_sym___typeof] = ACTIONS(1353), [anon_sym___typeof__] = ACTIONS(1353), @@ -45936,46 +44903,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1353), [sym_BOOL] = ACTIONS(1353), [sym_auto] = ACTIONS(1353), - [anon_sym_ATautoreleasepool] = ACTIONS(1355), - [anon_sym_ATsynchronized] = ACTIONS(1355), - [anon_sym_ATtry] = ACTIONS(1355), - [anon_sym_ATcatch] = ACTIONS(1355), - [anon_sym_ATfinally] = ACTIONS(1355), - [anon_sym_ATthrow] = ACTIONS(1355), - [anon_sym_ATselector] = ACTIONS(1355), - [anon_sym_ATencode] = ACTIONS(1355), + [anon_sym_ATautoreleasepool] = ACTIONS(1351), + [anon_sym_ATsynchronized] = ACTIONS(1351), + [anon_sym_ATtry] = ACTIONS(1351), + [anon_sym_ATcatch] = ACTIONS(1351), + [anon_sym_ATfinally] = ACTIONS(1351), + [anon_sym_ATthrow] = ACTIONS(1351), + [anon_sym_ATselector] = ACTIONS(1351), + [anon_sym_ATencode] = ACTIONS(1351), [anon_sym_AT] = ACTIONS(1353), [sym_YES] = ACTIONS(1353), [sym_NO] = ACTIONS(1353), [anon_sym___builtin_available] = ACTIONS(1353), - [anon_sym_ATavailable] = ACTIONS(1355), + [anon_sym_ATavailable] = ACTIONS(1351), [anon_sym_va_arg] = ACTIONS(1353), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [116] = { + [110] = { + [ts_builtin_sym_end] = ACTIONS(1355), [sym_identifier] = ACTIONS(1357), - [aux_sym_preproc_include_token1] = ACTIONS(1359), - [aux_sym_preproc_def_token1] = ACTIONS(1359), + [aux_sym_preproc_include_token1] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1355), + [anon_sym_RPAREN] = ACTIONS(1355), [aux_sym_preproc_if_token1] = ACTIONS(1357), - [aux_sym_preproc_if_token2] = ACTIONS(1357), [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), - [aux_sym_preproc_else_token1] = ACTIONS(1357), - [aux_sym_preproc_elif_token1] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_LPAREN2] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_TILDE] = ACTIONS(1355), [anon_sym_DASH] = ACTIONS(1357), [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_CARET] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_SEMI] = ACTIONS(1355), [anon_sym_typedef] = ACTIONS(1357), [anon_sym_extern] = ACTIONS(1357), [anon_sym___attribute] = ACTIONS(1357), @@ -45987,8 +44953,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1357), [anon_sym___thiscall] = ACTIONS(1357), [anon_sym___vectorcall] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_RBRACE] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1355), [anon_sym_static] = ACTIONS(1357), [anon_sym_auto] = ACTIONS(1357), [anon_sym_register] = ACTIONS(1357), @@ -46031,9 +44998,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1357), [sym_primitive_type] = ACTIONS(1357), [anon_sym_enum] = ACTIONS(1357), - [anon_sym_NS_ENUM] = ACTIONS(1357), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1357), - [anon_sym_NS_OPTIONS] = ACTIONS(1357), [anon_sym_struct] = ACTIONS(1357), [anon_sym_union] = ACTIONS(1357), [anon_sym_if] = ACTIONS(1357), @@ -46048,31 +45012,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1357), [anon_sym_continue] = ACTIONS(1357), [anon_sym_goto] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), [anon_sym_sizeof] = ACTIONS(1357), - [sym_number_literal] = ACTIONS(1359), - [anon_sym_L_SQUOTE] = ACTIONS(1359), - [anon_sym_u_SQUOTE] = ACTIONS(1359), - [anon_sym_U_SQUOTE] = ACTIONS(1359), - [anon_sym_u8_SQUOTE] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_L_DQUOTE] = ACTIONS(1359), - [anon_sym_u_DQUOTE] = ACTIONS(1359), - [anon_sym_U_DQUOTE] = ACTIONS(1359), - [anon_sym_u8_DQUOTE] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), + [sym_number_literal] = ACTIONS(1355), + [anon_sym_L_SQUOTE] = ACTIONS(1355), + [anon_sym_u_SQUOTE] = ACTIONS(1355), + [anon_sym_U_SQUOTE] = ACTIONS(1355), + [anon_sym_u8_SQUOTE] = ACTIONS(1355), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_L_DQUOTE] = ACTIONS(1355), + [anon_sym_u_DQUOTE] = ACTIONS(1355), + [anon_sym_U_DQUOTE] = ACTIONS(1355), + [anon_sym_u8_DQUOTE] = ACTIONS(1355), + [anon_sym_DQUOTE] = ACTIONS(1355), [sym_true] = ACTIONS(1357), [sym_false] = ACTIONS(1357), [sym_null] = ACTIONS(1357), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1359), - [anon_sym_ATimport] = ACTIONS(1359), + [anon_sym_POUNDimport] = ACTIONS(1355), + [anon_sym_ATimport] = ACTIONS(1355), [sym__ns_assume_nonnull_declaration] = ACTIONS(1357), - [anon_sym_ATcompatibility_alias] = ACTIONS(1359), - [anon_sym_ATprotocol] = ACTIONS(1359), - [anon_sym_ATclass] = ACTIONS(1359), - [anon_sym_ATinterface] = ACTIONS(1359), + [anon_sym_ATcompatibility_alias] = ACTIONS(1355), + [anon_sym_ATprotocol] = ACTIONS(1355), + [anon_sym_ATclass] = ACTIONS(1355), + [anon_sym_ATinterface] = ACTIONS(1355), [sym_class_interface_attribute_sepcifier] = ACTIONS(1357), [sym_method_attribute_specifier] = ACTIONS(1357), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1357), @@ -46099,7 +45063,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1357), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1357), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1357), - [anon_sym_ATimplementation] = ACTIONS(1359), + [anon_sym_ATimplementation] = ACTIONS(1355), + [anon_sym_NS_ENUM] = ACTIONS(1357), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1357), + [anon_sym_NS_OPTIONS] = ACTIONS(1357), [anon_sym_typeof] = ACTIONS(1357), [anon_sym___typeof] = ACTIONS(1357), [anon_sym___typeof__] = ACTIONS(1357), @@ -46113,121 +45080,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1357), [sym_BOOL] = ACTIONS(1357), [sym_auto] = ACTIONS(1357), - [anon_sym_ATautoreleasepool] = ACTIONS(1359), - [anon_sym_ATsynchronized] = ACTIONS(1359), - [anon_sym_ATtry] = ACTIONS(1359), - [anon_sym_ATcatch] = ACTIONS(1359), - [anon_sym_ATfinally] = ACTIONS(1359), - [anon_sym_ATthrow] = ACTIONS(1359), - [anon_sym_ATselector] = ACTIONS(1359), - [anon_sym_ATencode] = ACTIONS(1359), + [anon_sym_ATautoreleasepool] = ACTIONS(1355), + [anon_sym_ATsynchronized] = ACTIONS(1355), + [anon_sym_ATtry] = ACTIONS(1355), + [anon_sym_ATcatch] = ACTIONS(1355), + [anon_sym_ATfinally] = ACTIONS(1355), + [anon_sym_ATthrow] = ACTIONS(1355), + [anon_sym_ATselector] = ACTIONS(1355), + [anon_sym_ATencode] = ACTIONS(1355), [anon_sym_AT] = ACTIONS(1357), [sym_YES] = ACTIONS(1357), [sym_NO] = ACTIONS(1357), [anon_sym___builtin_available] = ACTIONS(1357), - [anon_sym_ATavailable] = ACTIONS(1359), + [anon_sym_ATavailable] = ACTIONS(1355), [anon_sym_va_arg] = ACTIONS(1357), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [111] = { + [sym_identifier] = ACTIONS(1359), + [aux_sym_preproc_include_token1] = ACTIONS(1361), + [aux_sym_preproc_def_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token1] = ACTIONS(1359), + [aux_sym_preproc_if_token2] = ACTIONS(1359), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1359), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1359), + [aux_sym_preproc_else_token1] = ACTIONS(1359), + [aux_sym_preproc_elif_token1] = ACTIONS(1359), + [anon_sym_LPAREN2] = ACTIONS(1361), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1361), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_typedef] = ACTIONS(1359), + [anon_sym_extern] = ACTIONS(1359), + [anon_sym___attribute] = ACTIONS(1359), + [anon_sym___attribute__] = ACTIONS(1359), + [anon_sym___declspec] = ACTIONS(1359), + [anon_sym___cdecl] = ACTIONS(1359), + [anon_sym___clrcall] = ACTIONS(1359), + [anon_sym___stdcall] = ACTIONS(1359), + [anon_sym___fastcall] = ACTIONS(1359), + [anon_sym___thiscall] = ACTIONS(1359), + [anon_sym___vectorcall] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_static] = ACTIONS(1359), + [anon_sym_auto] = ACTIONS(1359), + [anon_sym_register] = ACTIONS(1359), + [anon_sym_inline] = ACTIONS(1359), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1359), + [anon_sym_volatile] = ACTIONS(1359), + [anon_sym_restrict] = ACTIONS(1359), + [anon_sym__Atomic] = ACTIONS(1359), + [anon_sym_in] = ACTIONS(1359), + [anon_sym_out] = ACTIONS(1359), + [anon_sym_inout] = ACTIONS(1359), + [anon_sym_bycopy] = ACTIONS(1359), + [anon_sym_byref] = ACTIONS(1359), + [anon_sym_oneway] = ACTIONS(1359), + [anon_sym__Nullable] = ACTIONS(1359), + [anon_sym__Nonnull] = ACTIONS(1359), + [anon_sym__Nullable_result] = ACTIONS(1359), + [anon_sym__Null_unspecified] = ACTIONS(1359), + [anon_sym___autoreleasing] = ACTIONS(1359), + [anon_sym___nullable] = ACTIONS(1359), + [anon_sym___nonnull] = ACTIONS(1359), + [anon_sym___strong] = ACTIONS(1359), + [anon_sym___weak] = ACTIONS(1359), + [anon_sym___bridge] = ACTIONS(1359), + [anon_sym___bridge_transfer] = ACTIONS(1359), + [anon_sym___bridge_retained] = ACTIONS(1359), + [anon_sym___unsafe_unretained] = ACTIONS(1359), + [anon_sym___block] = ACTIONS(1359), + [anon_sym___kindof] = ACTIONS(1359), + [anon_sym___unused] = ACTIONS(1359), + [anon_sym__Complex] = ACTIONS(1359), + [anon_sym___complex] = ACTIONS(1359), + [anon_sym_IBOutlet] = ACTIONS(1359), + [anon_sym_IBInspectable] = ACTIONS(1359), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1359), + [anon_sym_signed] = ACTIONS(1359), + [anon_sym_unsigned] = ACTIONS(1359), + [anon_sym_long] = ACTIONS(1359), + [anon_sym_short] = ACTIONS(1359), + [sym_primitive_type] = ACTIONS(1359), + [anon_sym_enum] = ACTIONS(1359), + [anon_sym_struct] = ACTIONS(1359), + [anon_sym_union] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1359), + [anon_sym_else] = ACTIONS(1359), + [anon_sym_switch] = ACTIONS(1359), + [anon_sym_case] = ACTIONS(1359), + [anon_sym_default] = ACTIONS(1359), + [anon_sym_while] = ACTIONS(1359), + [anon_sym_do] = ACTIONS(1359), + [anon_sym_for] = ACTIONS(1359), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_break] = ACTIONS(1359), + [anon_sym_continue] = ACTIONS(1359), + [anon_sym_goto] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_sizeof] = ACTIONS(1359), + [sym_number_literal] = ACTIONS(1361), + [anon_sym_L_SQUOTE] = ACTIONS(1361), + [anon_sym_u_SQUOTE] = ACTIONS(1361), + [anon_sym_U_SQUOTE] = ACTIONS(1361), + [anon_sym_u8_SQUOTE] = ACTIONS(1361), + [anon_sym_SQUOTE] = ACTIONS(1361), + [anon_sym_L_DQUOTE] = ACTIONS(1361), + [anon_sym_u_DQUOTE] = ACTIONS(1361), + [anon_sym_U_DQUOTE] = ACTIONS(1361), + [anon_sym_u8_DQUOTE] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [sym_true] = ACTIONS(1359), + [sym_false] = ACTIONS(1359), + [sym_null] = ACTIONS(1359), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1361), + [anon_sym_ATimport] = ACTIONS(1361), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1359), + [anon_sym_ATcompatibility_alias] = ACTIONS(1361), + [anon_sym_ATprotocol] = ACTIONS(1361), + [anon_sym_ATclass] = ACTIONS(1361), + [anon_sym_ATinterface] = ACTIONS(1361), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1359), + [sym_method_attribute_specifier] = ACTIONS(1359), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1359), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1359), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1359), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1359), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1359), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1359), + [anon_sym_NS_AVAILABLE] = ACTIONS(1359), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1359), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_API_AVAILABLE] = ACTIONS(1359), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1359), + [anon_sym_API_DEPRECATED] = ACTIONS(1359), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1359), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1359), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1359), + [anon_sym___deprecated_msg] = ACTIONS(1359), + [anon_sym___deprecated_enum_msg] = ACTIONS(1359), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1359), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1359), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1359), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1359), + [anon_sym_ATimplementation] = ACTIONS(1361), + [anon_sym_NS_ENUM] = ACTIONS(1359), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1359), + [anon_sym_NS_OPTIONS] = ACTIONS(1359), + [anon_sym_typeof] = ACTIONS(1359), + [anon_sym___typeof] = ACTIONS(1359), + [anon_sym___typeof__] = ACTIONS(1359), + [sym_self] = ACTIONS(1359), + [sym_super] = ACTIONS(1359), + [sym_nil] = ACTIONS(1359), + [sym_id] = ACTIONS(1359), + [sym_instancetype] = ACTIONS(1359), + [sym_Class] = ACTIONS(1359), + [sym_SEL] = ACTIONS(1359), + [sym_IMP] = ACTIONS(1359), + [sym_BOOL] = ACTIONS(1359), + [sym_auto] = ACTIONS(1359), + [anon_sym_ATautoreleasepool] = ACTIONS(1361), + [anon_sym_ATsynchronized] = ACTIONS(1361), + [anon_sym_ATtry] = ACTIONS(1361), + [anon_sym_ATcatch] = ACTIONS(1361), + [anon_sym_ATfinally] = ACTIONS(1361), + [anon_sym_ATthrow] = ACTIONS(1361), + [anon_sym_ATselector] = ACTIONS(1361), + [anon_sym_ATencode] = ACTIONS(1361), + [anon_sym_AT] = ACTIONS(1359), + [sym_YES] = ACTIONS(1359), + [sym_NO] = ACTIONS(1359), + [anon_sym___builtin_available] = ACTIONS(1359), + [anon_sym_ATavailable] = ACTIONS(1361), + [anon_sym_va_arg] = ACTIONS(1359), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), [sym__ifdef_else_ignore] = ACTIONS(5), [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [117] = { - [sym_identifier] = ACTIONS(1361), + [112] = { + [ts_builtin_sym_end] = ACTIONS(1363), + [sym_identifier] = ACTIONS(1365), [aux_sym_preproc_include_token1] = ACTIONS(1363), [aux_sym_preproc_def_token1] = ACTIONS(1363), - [aux_sym_preproc_if_token1] = ACTIONS(1361), - [aux_sym_preproc_if_token2] = ACTIONS(1361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), - [aux_sym_preproc_else_token1] = ACTIONS(1361), - [aux_sym_preproc_elif_token1] = ACTIONS(1361), + [anon_sym_RPAREN] = ACTIONS(1363), + [aux_sym_preproc_if_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), [anon_sym_LPAREN2] = ACTIONS(1363), [anon_sym_BANG] = ACTIONS(1363), [anon_sym_TILDE] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), [anon_sym_STAR] = ACTIONS(1363), [anon_sym_CARET] = ACTIONS(1363), [anon_sym_AMP] = ACTIONS(1363), [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_typedef] = ACTIONS(1361), - [anon_sym_extern] = ACTIONS(1361), - [anon_sym___attribute] = ACTIONS(1361), - [anon_sym___attribute__] = ACTIONS(1361), - [anon_sym___declspec] = ACTIONS(1361), - [anon_sym___cdecl] = ACTIONS(1361), - [anon_sym___clrcall] = ACTIONS(1361), - [anon_sym___stdcall] = ACTIONS(1361), - [anon_sym___fastcall] = ACTIONS(1361), - [anon_sym___thiscall] = ACTIONS(1361), - [anon_sym___vectorcall] = ACTIONS(1361), + [anon_sym_typedef] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym___attribute] = ACTIONS(1365), + [anon_sym___attribute__] = ACTIONS(1365), + [anon_sym___declspec] = ACTIONS(1365), + [anon_sym___cdecl] = ACTIONS(1365), + [anon_sym___clrcall] = ACTIONS(1365), + [anon_sym___stdcall] = ACTIONS(1365), + [anon_sym___fastcall] = ACTIONS(1365), + [anon_sym___thiscall] = ACTIONS(1365), + [anon_sym___vectorcall] = ACTIONS(1365), [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1363), [anon_sym_LBRACK] = ACTIONS(1363), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_auto] = ACTIONS(1361), - [anon_sym_register] = ACTIONS(1361), - [anon_sym_inline] = ACTIONS(1361), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1361), - [anon_sym_const] = ACTIONS(1361), - [anon_sym_volatile] = ACTIONS(1361), - [anon_sym_restrict] = ACTIONS(1361), - [anon_sym__Atomic] = ACTIONS(1361), - [anon_sym_in] = ACTIONS(1361), - [anon_sym_out] = ACTIONS(1361), - [anon_sym_inout] = ACTIONS(1361), - [anon_sym_bycopy] = ACTIONS(1361), - [anon_sym_byref] = ACTIONS(1361), - [anon_sym_oneway] = ACTIONS(1361), - [anon_sym__Nullable] = ACTIONS(1361), - [anon_sym__Nonnull] = ACTIONS(1361), - [anon_sym__Nullable_result] = ACTIONS(1361), - [anon_sym__Null_unspecified] = ACTIONS(1361), - [anon_sym___autoreleasing] = ACTIONS(1361), - [anon_sym___nullable] = ACTIONS(1361), - [anon_sym___nonnull] = ACTIONS(1361), - [anon_sym___strong] = ACTIONS(1361), - [anon_sym___weak] = ACTIONS(1361), - [anon_sym___bridge] = ACTIONS(1361), - [anon_sym___bridge_transfer] = ACTIONS(1361), - [anon_sym___bridge_retained] = ACTIONS(1361), - [anon_sym___unsafe_unretained] = ACTIONS(1361), - [anon_sym___block] = ACTIONS(1361), - [anon_sym___kindof] = ACTIONS(1361), - [anon_sym___unused] = ACTIONS(1361), - [anon_sym__Complex] = ACTIONS(1361), - [anon_sym___complex] = ACTIONS(1361), - [anon_sym_IBOutlet] = ACTIONS(1361), - [anon_sym_IBInspectable] = ACTIONS(1361), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1361), - [anon_sym_signed] = ACTIONS(1361), - [anon_sym_unsigned] = ACTIONS(1361), - [anon_sym_long] = ACTIONS(1361), - [anon_sym_short] = ACTIONS(1361), - [sym_primitive_type] = ACTIONS(1361), - [anon_sym_enum] = ACTIONS(1361), - [anon_sym_NS_ENUM] = ACTIONS(1361), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1361), - [anon_sym_NS_OPTIONS] = ACTIONS(1361), - [anon_sym_struct] = ACTIONS(1361), - [anon_sym_union] = ACTIONS(1361), - [anon_sym_if] = ACTIONS(1361), - [anon_sym_else] = ACTIONS(1361), - [anon_sym_switch] = ACTIONS(1361), - [anon_sym_case] = ACTIONS(1361), - [anon_sym_default] = ACTIONS(1361), - [anon_sym_while] = ACTIONS(1361), - [anon_sym_do] = ACTIONS(1361), - [anon_sym_for] = ACTIONS(1361), - [anon_sym_return] = ACTIONS(1361), - [anon_sym_break] = ACTIONS(1361), - [anon_sym_continue] = ACTIONS(1361), - [anon_sym_goto] = ACTIONS(1361), + [anon_sym_static] = ACTIONS(1365), + [anon_sym_auto] = ACTIONS(1365), + [anon_sym_register] = ACTIONS(1365), + [anon_sym_inline] = ACTIONS(1365), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_volatile] = ACTIONS(1365), + [anon_sym_restrict] = ACTIONS(1365), + [anon_sym__Atomic] = ACTIONS(1365), + [anon_sym_in] = ACTIONS(1365), + [anon_sym_out] = ACTIONS(1365), + [anon_sym_inout] = ACTIONS(1365), + [anon_sym_bycopy] = ACTIONS(1365), + [anon_sym_byref] = ACTIONS(1365), + [anon_sym_oneway] = ACTIONS(1365), + [anon_sym__Nullable] = ACTIONS(1365), + [anon_sym__Nonnull] = ACTIONS(1365), + [anon_sym__Nullable_result] = ACTIONS(1365), + [anon_sym__Null_unspecified] = ACTIONS(1365), + [anon_sym___autoreleasing] = ACTIONS(1365), + [anon_sym___nullable] = ACTIONS(1365), + [anon_sym___nonnull] = ACTIONS(1365), + [anon_sym___strong] = ACTIONS(1365), + [anon_sym___weak] = ACTIONS(1365), + [anon_sym___bridge] = ACTIONS(1365), + [anon_sym___bridge_transfer] = ACTIONS(1365), + [anon_sym___bridge_retained] = ACTIONS(1365), + [anon_sym___unsafe_unretained] = ACTIONS(1365), + [anon_sym___block] = ACTIONS(1365), + [anon_sym___kindof] = ACTIONS(1365), + [anon_sym___unused] = ACTIONS(1365), + [anon_sym__Complex] = ACTIONS(1365), + [anon_sym___complex] = ACTIONS(1365), + [anon_sym_IBOutlet] = ACTIONS(1365), + [anon_sym_IBInspectable] = ACTIONS(1365), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1365), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), + [sym_primitive_type] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_else] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_case] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_do] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_goto] = ACTIONS(1365), [anon_sym_DASH_DASH] = ACTIONS(1363), [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_sizeof] = ACTIONS(1361), + [anon_sym_sizeof] = ACTIONS(1365), [sym_number_literal] = ACTIONS(1363), [anon_sym_L_SQUOTE] = ACTIONS(1363), [anon_sym_u_SQUOTE] = ACTIONS(1363), @@ -46239,57 +45380,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(1363), [anon_sym_u8_DQUOTE] = ACTIONS(1363), [anon_sym_DQUOTE] = ACTIONS(1363), - [sym_true] = ACTIONS(1361), - [sym_false] = ACTIONS(1361), - [sym_null] = ACTIONS(1361), + [sym_true] = ACTIONS(1365), + [sym_false] = ACTIONS(1365), + [sym_null] = ACTIONS(1365), [sym_comment] = ACTIONS(3), [anon_sym_POUNDimport] = ACTIONS(1363), [anon_sym_ATimport] = ACTIONS(1363), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1361), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1365), [anon_sym_ATcompatibility_alias] = ACTIONS(1363), [anon_sym_ATprotocol] = ACTIONS(1363), [anon_sym_ATclass] = ACTIONS(1363), [anon_sym_ATinterface] = ACTIONS(1363), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1361), - [sym_method_attribute_specifier] = ACTIONS(1361), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1361), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1361), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1361), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1361), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1361), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1361), - [anon_sym_NS_AVAILABLE] = ACTIONS(1361), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1361), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1361), - [anon_sym_API_AVAILABLE] = ACTIONS(1361), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1361), - [anon_sym_API_DEPRECATED] = ACTIONS(1361), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1361), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1361), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1361), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1361), - [anon_sym___deprecated_msg] = ACTIONS(1361), - [anon_sym___deprecated_enum_msg] = ACTIONS(1361), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1361), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1361), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1361), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1361), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1361), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1361), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1365), + [sym_method_attribute_specifier] = ACTIONS(1365), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1365), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1365), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1365), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1365), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1365), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1365), + [anon_sym_NS_AVAILABLE] = ACTIONS(1365), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1365), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1365), + [anon_sym_API_AVAILABLE] = ACTIONS(1365), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1365), + [anon_sym_API_DEPRECATED] = ACTIONS(1365), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1365), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1365), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1365), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1365), + [anon_sym___deprecated_msg] = ACTIONS(1365), + [anon_sym___deprecated_enum_msg] = ACTIONS(1365), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1365), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1365), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1365), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1365), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1365), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1365), [anon_sym_ATimplementation] = ACTIONS(1363), - [anon_sym_typeof] = ACTIONS(1361), - [anon_sym___typeof] = ACTIONS(1361), - [anon_sym___typeof__] = ACTIONS(1361), - [sym_self] = ACTIONS(1361), - [sym_super] = ACTIONS(1361), - [sym_nil] = ACTIONS(1361), - [sym_id] = ACTIONS(1361), - [sym_instancetype] = ACTIONS(1361), - [sym_Class] = ACTIONS(1361), - [sym_SEL] = ACTIONS(1361), - [sym_IMP] = ACTIONS(1361), - [sym_BOOL] = ACTIONS(1361), - [sym_auto] = ACTIONS(1361), + [anon_sym_NS_ENUM] = ACTIONS(1365), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1365), + [anon_sym_NS_OPTIONS] = ACTIONS(1365), + [anon_sym_typeof] = ACTIONS(1365), + [anon_sym___typeof] = ACTIONS(1365), + [anon_sym___typeof__] = ACTIONS(1365), + [sym_self] = ACTIONS(1365), + [sym_super] = ACTIONS(1365), + [sym_nil] = ACTIONS(1365), + [sym_id] = ACTIONS(1365), + [sym_instancetype] = ACTIONS(1365), + [sym_Class] = ACTIONS(1365), + [sym_SEL] = ACTIONS(1365), + [sym_IMP] = ACTIONS(1365), + [sym_BOOL] = ACTIONS(1365), + [sym_auto] = ACTIONS(1365), [anon_sym_ATautoreleasepool] = ACTIONS(1363), [anon_sym_ATsynchronized] = ACTIONS(1363), [anon_sym_ATtry] = ACTIONS(1363), @@ -46298,189 +45442,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATthrow] = ACTIONS(1363), [anon_sym_ATselector] = ACTIONS(1363), [anon_sym_ATencode] = ACTIONS(1363), - [anon_sym_AT] = ACTIONS(1361), - [sym_YES] = ACTIONS(1361), - [sym_NO] = ACTIONS(1361), - [anon_sym___builtin_available] = ACTIONS(1361), + [anon_sym_AT] = ACTIONS(1365), + [sym_YES] = ACTIONS(1365), + [sym_NO] = ACTIONS(1365), + [anon_sym___builtin_available] = ACTIONS(1365), [anon_sym_ATavailable] = ACTIONS(1363), - [anon_sym_va_arg] = ACTIONS(1361), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [118] = { - [ts_builtin_sym_end] = ACTIONS(1365), - [sym_identifier] = ACTIONS(1367), - [aux_sym_preproc_include_token1] = ACTIONS(1365), - [aux_sym_preproc_def_token1] = ACTIONS(1365), - [anon_sym_RPAREN] = ACTIONS(1365), - [aux_sym_preproc_if_token1] = ACTIONS(1367), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1367), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1367), - [anon_sym_LPAREN2] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_typedef] = ACTIONS(1367), - [anon_sym_extern] = ACTIONS(1367), - [anon_sym___attribute] = ACTIONS(1367), - [anon_sym___attribute__] = ACTIONS(1367), - [anon_sym___declspec] = ACTIONS(1367), - [anon_sym___cdecl] = ACTIONS(1367), - [anon_sym___clrcall] = ACTIONS(1367), - [anon_sym___stdcall] = ACTIONS(1367), - [anon_sym___fastcall] = ACTIONS(1367), - [anon_sym___thiscall] = ACTIONS(1367), - [anon_sym___vectorcall] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_RBRACE] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1367), - [anon_sym_auto] = ACTIONS(1367), - [anon_sym_register] = ACTIONS(1367), - [anon_sym_inline] = ACTIONS(1367), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1367), - [anon_sym_const] = ACTIONS(1367), - [anon_sym_volatile] = ACTIONS(1367), - [anon_sym_restrict] = ACTIONS(1367), - [anon_sym__Atomic] = ACTIONS(1367), - [anon_sym_in] = ACTIONS(1367), - [anon_sym_out] = ACTIONS(1367), - [anon_sym_inout] = ACTIONS(1367), - [anon_sym_bycopy] = ACTIONS(1367), - [anon_sym_byref] = ACTIONS(1367), - [anon_sym_oneway] = ACTIONS(1367), - [anon_sym__Nullable] = ACTIONS(1367), - [anon_sym__Nonnull] = ACTIONS(1367), - [anon_sym__Nullable_result] = ACTIONS(1367), - [anon_sym__Null_unspecified] = ACTIONS(1367), - [anon_sym___autoreleasing] = ACTIONS(1367), - [anon_sym___nullable] = ACTIONS(1367), - [anon_sym___nonnull] = ACTIONS(1367), - [anon_sym___strong] = ACTIONS(1367), - [anon_sym___weak] = ACTIONS(1367), - [anon_sym___bridge] = ACTIONS(1367), - [anon_sym___bridge_transfer] = ACTIONS(1367), - [anon_sym___bridge_retained] = ACTIONS(1367), - [anon_sym___unsafe_unretained] = ACTIONS(1367), - [anon_sym___block] = ACTIONS(1367), - [anon_sym___kindof] = ACTIONS(1367), - [anon_sym___unused] = ACTIONS(1367), - [anon_sym__Complex] = ACTIONS(1367), - [anon_sym___complex] = ACTIONS(1367), - [anon_sym_IBOutlet] = ACTIONS(1367), - [anon_sym_IBInspectable] = ACTIONS(1367), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1367), - [anon_sym_signed] = ACTIONS(1367), - [anon_sym_unsigned] = ACTIONS(1367), - [anon_sym_long] = ACTIONS(1367), - [anon_sym_short] = ACTIONS(1367), - [sym_primitive_type] = ACTIONS(1367), - [anon_sym_enum] = ACTIONS(1367), - [anon_sym_NS_ENUM] = ACTIONS(1367), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1367), - [anon_sym_NS_OPTIONS] = ACTIONS(1367), - [anon_sym_struct] = ACTIONS(1367), - [anon_sym_union] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1367), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1367), - [anon_sym_default] = ACTIONS(1367), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_do] = ACTIONS(1367), - [anon_sym_for] = ACTIONS(1367), - [anon_sym_return] = ACTIONS(1367), - [anon_sym_break] = ACTIONS(1367), - [anon_sym_continue] = ACTIONS(1367), - [anon_sym_goto] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_sizeof] = ACTIONS(1367), - [sym_number_literal] = ACTIONS(1365), - [anon_sym_L_SQUOTE] = ACTIONS(1365), - [anon_sym_u_SQUOTE] = ACTIONS(1365), - [anon_sym_U_SQUOTE] = ACTIONS(1365), - [anon_sym_u8_SQUOTE] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1365), - [anon_sym_L_DQUOTE] = ACTIONS(1365), - [anon_sym_u_DQUOTE] = ACTIONS(1365), - [anon_sym_U_DQUOTE] = ACTIONS(1365), - [anon_sym_u8_DQUOTE] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_true] = ACTIONS(1367), - [sym_false] = ACTIONS(1367), - [sym_null] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1365), - [anon_sym_ATimport] = ACTIONS(1365), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1367), - [anon_sym_ATcompatibility_alias] = ACTIONS(1365), - [anon_sym_ATprotocol] = ACTIONS(1365), - [anon_sym_ATclass] = ACTIONS(1365), - [anon_sym_ATinterface] = ACTIONS(1365), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1367), - [sym_method_attribute_specifier] = ACTIONS(1367), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1367), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1367), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1367), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1367), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1367), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1367), - [anon_sym_NS_AVAILABLE] = ACTIONS(1367), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1367), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_API_AVAILABLE] = ACTIONS(1367), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1367), - [anon_sym_API_DEPRECATED] = ACTIONS(1367), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1367), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1367), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1367), - [anon_sym___deprecated_msg] = ACTIONS(1367), - [anon_sym___deprecated_enum_msg] = ACTIONS(1367), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1367), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1367), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1367), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1367), - [anon_sym_ATimplementation] = ACTIONS(1365), - [anon_sym_typeof] = ACTIONS(1367), - [anon_sym___typeof] = ACTIONS(1367), - [anon_sym___typeof__] = ACTIONS(1367), - [sym_self] = ACTIONS(1367), - [sym_super] = ACTIONS(1367), - [sym_nil] = ACTIONS(1367), - [sym_id] = ACTIONS(1367), - [sym_instancetype] = ACTIONS(1367), - [sym_Class] = ACTIONS(1367), - [sym_SEL] = ACTIONS(1367), - [sym_IMP] = ACTIONS(1367), - [sym_BOOL] = ACTIONS(1367), - [sym_auto] = ACTIONS(1367), - [anon_sym_ATautoreleasepool] = ACTIONS(1365), - [anon_sym_ATsynchronized] = ACTIONS(1365), - [anon_sym_ATtry] = ACTIONS(1365), - [anon_sym_ATcatch] = ACTIONS(1365), - [anon_sym_ATfinally] = ACTIONS(1365), - [anon_sym_ATthrow] = ACTIONS(1365), - [anon_sym_ATselector] = ACTIONS(1365), - [anon_sym_ATencode] = ACTIONS(1365), - [anon_sym_AT] = ACTIONS(1367), - [sym_YES] = ACTIONS(1367), - [sym_NO] = ACTIONS(1367), - [anon_sym___builtin_available] = ACTIONS(1367), - [anon_sym_ATavailable] = ACTIONS(1365), - [anon_sym_va_arg] = ACTIONS(1367), + [anon_sym_va_arg] = ACTIONS(1365), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -46488,25 +45455,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [119] = { + [113] = { + [ts_builtin_sym_end] = ACTIONS(1367), [sym_identifier] = ACTIONS(1369), - [aux_sym_preproc_include_token1] = ACTIONS(1371), - [aux_sym_preproc_def_token1] = ACTIONS(1371), + [aux_sym_preproc_include_token1] = ACTIONS(1367), + [aux_sym_preproc_def_token1] = ACTIONS(1367), + [anon_sym_RPAREN] = ACTIONS(1367), [aux_sym_preproc_if_token1] = ACTIONS(1369), - [aux_sym_preproc_if_token2] = ACTIONS(1369), [aux_sym_preproc_ifdef_token1] = ACTIONS(1369), [aux_sym_preproc_ifdef_token2] = ACTIONS(1369), - [aux_sym_preproc_else_token1] = ACTIONS(1369), - [aux_sym_preproc_elif_token1] = ACTIONS(1369), - [anon_sym_LPAREN2] = ACTIONS(1371), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_DASH] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1371), - [anon_sym_CARET] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1367), [anon_sym_typedef] = ACTIONS(1369), [anon_sym_extern] = ACTIONS(1369), [anon_sym___attribute] = ACTIONS(1369), @@ -46518,8 +45484,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1369), [anon_sym___thiscall] = ACTIONS(1369), [anon_sym___vectorcall] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1367), [anon_sym_static] = ACTIONS(1369), [anon_sym_auto] = ACTIONS(1369), [anon_sym_register] = ACTIONS(1369), @@ -46562,9 +45529,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1369), [sym_primitive_type] = ACTIONS(1369), [anon_sym_enum] = ACTIONS(1369), - [anon_sym_NS_ENUM] = ACTIONS(1369), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1369), - [anon_sym_NS_OPTIONS] = ACTIONS(1369), [anon_sym_struct] = ACTIONS(1369), [anon_sym_union] = ACTIONS(1369), [anon_sym_if] = ACTIONS(1369), @@ -46579,31 +45543,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1369), [anon_sym_continue] = ACTIONS(1369), [anon_sym_goto] = ACTIONS(1369), - [anon_sym_DASH_DASH] = ACTIONS(1371), - [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), [anon_sym_sizeof] = ACTIONS(1369), - [sym_number_literal] = ACTIONS(1371), - [anon_sym_L_SQUOTE] = ACTIONS(1371), - [anon_sym_u_SQUOTE] = ACTIONS(1371), - [anon_sym_U_SQUOTE] = ACTIONS(1371), - [anon_sym_u8_SQUOTE] = ACTIONS(1371), - [anon_sym_SQUOTE] = ACTIONS(1371), - [anon_sym_L_DQUOTE] = ACTIONS(1371), - [anon_sym_u_DQUOTE] = ACTIONS(1371), - [anon_sym_U_DQUOTE] = ACTIONS(1371), - [anon_sym_u8_DQUOTE] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1371), + [sym_number_literal] = ACTIONS(1367), + [anon_sym_L_SQUOTE] = ACTIONS(1367), + [anon_sym_u_SQUOTE] = ACTIONS(1367), + [anon_sym_U_SQUOTE] = ACTIONS(1367), + [anon_sym_u8_SQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_L_DQUOTE] = ACTIONS(1367), + [anon_sym_u_DQUOTE] = ACTIONS(1367), + [anon_sym_U_DQUOTE] = ACTIONS(1367), + [anon_sym_u8_DQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), [sym_true] = ACTIONS(1369), [sym_false] = ACTIONS(1369), [sym_null] = ACTIONS(1369), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1371), - [anon_sym_ATimport] = ACTIONS(1371), + [anon_sym_POUNDimport] = ACTIONS(1367), + [anon_sym_ATimport] = ACTIONS(1367), [sym__ns_assume_nonnull_declaration] = ACTIONS(1369), - [anon_sym_ATcompatibility_alias] = ACTIONS(1371), - [anon_sym_ATprotocol] = ACTIONS(1371), - [anon_sym_ATclass] = ACTIONS(1371), - [anon_sym_ATinterface] = ACTIONS(1371), + [anon_sym_ATcompatibility_alias] = ACTIONS(1367), + [anon_sym_ATprotocol] = ACTIONS(1367), + [anon_sym_ATclass] = ACTIONS(1367), + [anon_sym_ATinterface] = ACTIONS(1367), [sym_class_interface_attribute_sepcifier] = ACTIONS(1369), [sym_method_attribute_specifier] = ACTIONS(1369), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1369), @@ -46630,7 +45594,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1369), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1369), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1369), - [anon_sym_ATimplementation] = ACTIONS(1371), + [anon_sym_ATimplementation] = ACTIONS(1367), + [anon_sym_NS_ENUM] = ACTIONS(1369), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1369), + [anon_sym_NS_OPTIONS] = ACTIONS(1369), [anon_sym_typeof] = ACTIONS(1369), [anon_sym___typeof] = ACTIONS(1369), [anon_sym___typeof__] = ACTIONS(1369), @@ -46644,197 +45611,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1369), [sym_BOOL] = ACTIONS(1369), [sym_auto] = ACTIONS(1369), - [anon_sym_ATautoreleasepool] = ACTIONS(1371), - [anon_sym_ATsynchronized] = ACTIONS(1371), - [anon_sym_ATtry] = ACTIONS(1371), - [anon_sym_ATcatch] = ACTIONS(1371), - [anon_sym_ATfinally] = ACTIONS(1371), - [anon_sym_ATthrow] = ACTIONS(1371), - [anon_sym_ATselector] = ACTIONS(1371), - [anon_sym_ATencode] = ACTIONS(1371), + [anon_sym_ATautoreleasepool] = ACTIONS(1367), + [anon_sym_ATsynchronized] = ACTIONS(1367), + [anon_sym_ATtry] = ACTIONS(1367), + [anon_sym_ATcatch] = ACTIONS(1367), + [anon_sym_ATfinally] = ACTIONS(1367), + [anon_sym_ATthrow] = ACTIONS(1367), + [anon_sym_ATselector] = ACTIONS(1367), + [anon_sym_ATencode] = ACTIONS(1367), [anon_sym_AT] = ACTIONS(1369), [sym_YES] = ACTIONS(1369), [sym_NO] = ACTIONS(1369), [anon_sym___builtin_available] = ACTIONS(1369), - [anon_sym_ATavailable] = ACTIONS(1371), + [anon_sym_ATavailable] = ACTIONS(1367), [anon_sym_va_arg] = ACTIONS(1369), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [120] = { - [sym_identifier] = ACTIONS(1373), - [aux_sym_preproc_include_token1] = ACTIONS(1375), - [aux_sym_preproc_def_token1] = ACTIONS(1375), - [aux_sym_preproc_if_token1] = ACTIONS(1373), - [aux_sym_preproc_if_token2] = ACTIONS(1373), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1373), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1373), - [aux_sym_preproc_else_token1] = ACTIONS(1373), - [aux_sym_preproc_elif_token1] = ACTIONS(1373), - [anon_sym_LPAREN2] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_TILDE] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_typedef] = ACTIONS(1373), - [anon_sym_extern] = ACTIONS(1373), - [anon_sym___attribute] = ACTIONS(1373), - [anon_sym___attribute__] = ACTIONS(1373), - [anon_sym___declspec] = ACTIONS(1373), - [anon_sym___cdecl] = ACTIONS(1373), - [anon_sym___clrcall] = ACTIONS(1373), - [anon_sym___stdcall] = ACTIONS(1373), - [anon_sym___fastcall] = ACTIONS(1373), - [anon_sym___thiscall] = ACTIONS(1373), - [anon_sym___vectorcall] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1375), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_auto] = ACTIONS(1373), - [anon_sym_register] = ACTIONS(1373), - [anon_sym_inline] = ACTIONS(1373), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1373), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_volatile] = ACTIONS(1373), - [anon_sym_restrict] = ACTIONS(1373), - [anon_sym__Atomic] = ACTIONS(1373), - [anon_sym_in] = ACTIONS(1373), - [anon_sym_out] = ACTIONS(1373), - [anon_sym_inout] = ACTIONS(1373), - [anon_sym_bycopy] = ACTIONS(1373), - [anon_sym_byref] = ACTIONS(1373), - [anon_sym_oneway] = ACTIONS(1373), - [anon_sym__Nullable] = ACTIONS(1373), - [anon_sym__Nonnull] = ACTIONS(1373), - [anon_sym__Nullable_result] = ACTIONS(1373), - [anon_sym__Null_unspecified] = ACTIONS(1373), - [anon_sym___autoreleasing] = ACTIONS(1373), - [anon_sym___nullable] = ACTIONS(1373), - [anon_sym___nonnull] = ACTIONS(1373), - [anon_sym___strong] = ACTIONS(1373), - [anon_sym___weak] = ACTIONS(1373), - [anon_sym___bridge] = ACTIONS(1373), - [anon_sym___bridge_transfer] = ACTIONS(1373), - [anon_sym___bridge_retained] = ACTIONS(1373), - [anon_sym___unsafe_unretained] = ACTIONS(1373), - [anon_sym___block] = ACTIONS(1373), - [anon_sym___kindof] = ACTIONS(1373), - [anon_sym___unused] = ACTIONS(1373), - [anon_sym__Complex] = ACTIONS(1373), - [anon_sym___complex] = ACTIONS(1373), - [anon_sym_IBOutlet] = ACTIONS(1373), - [anon_sym_IBInspectable] = ACTIONS(1373), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1373), - [anon_sym_signed] = ACTIONS(1373), - [anon_sym_unsigned] = ACTIONS(1373), - [anon_sym_long] = ACTIONS(1373), - [anon_sym_short] = ACTIONS(1373), - [sym_primitive_type] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1373), - [anon_sym_NS_ENUM] = ACTIONS(1373), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1373), - [anon_sym_NS_OPTIONS] = ACTIONS(1373), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_union] = ACTIONS(1373), - [anon_sym_if] = ACTIONS(1373), - [anon_sym_else] = ACTIONS(1373), - [anon_sym_switch] = ACTIONS(1373), - [anon_sym_case] = ACTIONS(1373), - [anon_sym_default] = ACTIONS(1373), - [anon_sym_while] = ACTIONS(1373), - [anon_sym_do] = ACTIONS(1373), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1373), - [anon_sym_break] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(1373), - [anon_sym_goto] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1375), - [anon_sym_sizeof] = ACTIONS(1373), - [sym_number_literal] = ACTIONS(1375), - [anon_sym_L_SQUOTE] = ACTIONS(1375), - [anon_sym_u_SQUOTE] = ACTIONS(1375), - [anon_sym_U_SQUOTE] = ACTIONS(1375), - [anon_sym_u8_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_L_DQUOTE] = ACTIONS(1375), - [anon_sym_u_DQUOTE] = ACTIONS(1375), - [anon_sym_U_DQUOTE] = ACTIONS(1375), - [anon_sym_u8_DQUOTE] = ACTIONS(1375), - [anon_sym_DQUOTE] = ACTIONS(1375), - [sym_true] = ACTIONS(1373), - [sym_false] = ACTIONS(1373), - [sym_null] = ACTIONS(1373), + [114] = { + [sym_identifier] = ACTIONS(1371), + [aux_sym_preproc_include_token1] = ACTIONS(1373), + [aux_sym_preproc_def_token1] = ACTIONS(1373), + [aux_sym_preproc_if_token1] = ACTIONS(1371), + [aux_sym_preproc_if_token2] = ACTIONS(1371), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1371), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1371), + [aux_sym_preproc_else_token1] = ACTIONS(1371), + [aux_sym_preproc_elif_token1] = ACTIONS(1371), + [anon_sym_LPAREN2] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_CARET] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_typedef] = ACTIONS(1371), + [anon_sym_extern] = ACTIONS(1371), + [anon_sym___attribute] = ACTIONS(1371), + [anon_sym___attribute__] = ACTIONS(1371), + [anon_sym___declspec] = ACTIONS(1371), + [anon_sym___cdecl] = ACTIONS(1371), + [anon_sym___clrcall] = ACTIONS(1371), + [anon_sym___stdcall] = ACTIONS(1371), + [anon_sym___fastcall] = ACTIONS(1371), + [anon_sym___thiscall] = ACTIONS(1371), + [anon_sym___vectorcall] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1371), + [anon_sym_auto] = ACTIONS(1371), + [anon_sym_register] = ACTIONS(1371), + [anon_sym_inline] = ACTIONS(1371), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_volatile] = ACTIONS(1371), + [anon_sym_restrict] = ACTIONS(1371), + [anon_sym__Atomic] = ACTIONS(1371), + [anon_sym_in] = ACTIONS(1371), + [anon_sym_out] = ACTIONS(1371), + [anon_sym_inout] = ACTIONS(1371), + [anon_sym_bycopy] = ACTIONS(1371), + [anon_sym_byref] = ACTIONS(1371), + [anon_sym_oneway] = ACTIONS(1371), + [anon_sym__Nullable] = ACTIONS(1371), + [anon_sym__Nonnull] = ACTIONS(1371), + [anon_sym__Nullable_result] = ACTIONS(1371), + [anon_sym__Null_unspecified] = ACTIONS(1371), + [anon_sym___autoreleasing] = ACTIONS(1371), + [anon_sym___nullable] = ACTIONS(1371), + [anon_sym___nonnull] = ACTIONS(1371), + [anon_sym___strong] = ACTIONS(1371), + [anon_sym___weak] = ACTIONS(1371), + [anon_sym___bridge] = ACTIONS(1371), + [anon_sym___bridge_transfer] = ACTIONS(1371), + [anon_sym___bridge_retained] = ACTIONS(1371), + [anon_sym___unsafe_unretained] = ACTIONS(1371), + [anon_sym___block] = ACTIONS(1371), + [anon_sym___kindof] = ACTIONS(1371), + [anon_sym___unused] = ACTIONS(1371), + [anon_sym__Complex] = ACTIONS(1371), + [anon_sym___complex] = ACTIONS(1371), + [anon_sym_IBOutlet] = ACTIONS(1371), + [anon_sym_IBInspectable] = ACTIONS(1371), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1371), + [anon_sym_signed] = ACTIONS(1371), + [anon_sym_unsigned] = ACTIONS(1371), + [anon_sym_long] = ACTIONS(1371), + [anon_sym_short] = ACTIONS(1371), + [sym_primitive_type] = ACTIONS(1371), + [anon_sym_enum] = ACTIONS(1371), + [anon_sym_struct] = ACTIONS(1371), + [anon_sym_union] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1371), + [anon_sym_else] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1371), + [anon_sym_case] = ACTIONS(1371), + [anon_sym_default] = ACTIONS(1371), + [anon_sym_while] = ACTIONS(1371), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(1371), + [anon_sym_continue] = ACTIONS(1371), + [anon_sym_goto] = ACTIONS(1371), + [anon_sym_DASH_DASH] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(1373), + [anon_sym_sizeof] = ACTIONS(1371), + [sym_number_literal] = ACTIONS(1373), + [anon_sym_L_SQUOTE] = ACTIONS(1373), + [anon_sym_u_SQUOTE] = ACTIONS(1373), + [anon_sym_U_SQUOTE] = ACTIONS(1373), + [anon_sym_u8_SQUOTE] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1373), + [anon_sym_L_DQUOTE] = ACTIONS(1373), + [anon_sym_u_DQUOTE] = ACTIONS(1373), + [anon_sym_U_DQUOTE] = ACTIONS(1373), + [anon_sym_u8_DQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_true] = ACTIONS(1371), + [sym_false] = ACTIONS(1371), + [sym_null] = ACTIONS(1371), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1375), - [anon_sym_ATimport] = ACTIONS(1375), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1373), - [anon_sym_ATcompatibility_alias] = ACTIONS(1375), - [anon_sym_ATprotocol] = ACTIONS(1375), - [anon_sym_ATclass] = ACTIONS(1375), - [anon_sym_ATinterface] = ACTIONS(1375), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1373), - [sym_method_attribute_specifier] = ACTIONS(1373), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1373), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1373), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1373), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1373), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1373), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1373), - [anon_sym_NS_AVAILABLE] = ACTIONS(1373), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1373), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1373), - [anon_sym_API_AVAILABLE] = ACTIONS(1373), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1373), - [anon_sym_API_DEPRECATED] = ACTIONS(1373), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1373), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1373), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1373), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1373), - [anon_sym___deprecated_msg] = ACTIONS(1373), - [anon_sym___deprecated_enum_msg] = ACTIONS(1373), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1373), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1373), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1373), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1373), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1373), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1373), - [anon_sym_ATimplementation] = ACTIONS(1375), - [anon_sym_typeof] = ACTIONS(1373), - [anon_sym___typeof] = ACTIONS(1373), - [anon_sym___typeof__] = ACTIONS(1373), - [sym_self] = ACTIONS(1373), - [sym_super] = ACTIONS(1373), - [sym_nil] = ACTIONS(1373), - [sym_id] = ACTIONS(1373), - [sym_instancetype] = ACTIONS(1373), - [sym_Class] = ACTIONS(1373), - [sym_SEL] = ACTIONS(1373), - [sym_IMP] = ACTIONS(1373), - [sym_BOOL] = ACTIONS(1373), - [sym_auto] = ACTIONS(1373), - [anon_sym_ATautoreleasepool] = ACTIONS(1375), - [anon_sym_ATsynchronized] = ACTIONS(1375), - [anon_sym_ATtry] = ACTIONS(1375), - [anon_sym_ATcatch] = ACTIONS(1375), - [anon_sym_ATfinally] = ACTIONS(1375), - [anon_sym_ATthrow] = ACTIONS(1375), - [anon_sym_ATselector] = ACTIONS(1375), - [anon_sym_ATencode] = ACTIONS(1375), - [anon_sym_AT] = ACTIONS(1373), - [sym_YES] = ACTIONS(1373), - [sym_NO] = ACTIONS(1373), - [anon_sym___builtin_available] = ACTIONS(1373), - [anon_sym_ATavailable] = ACTIONS(1375), - [anon_sym_va_arg] = ACTIONS(1373), + [anon_sym_POUNDimport] = ACTIONS(1373), + [anon_sym_ATimport] = ACTIONS(1373), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1371), + [anon_sym_ATcompatibility_alias] = ACTIONS(1373), + [anon_sym_ATprotocol] = ACTIONS(1373), + [anon_sym_ATclass] = ACTIONS(1373), + [anon_sym_ATinterface] = ACTIONS(1373), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1371), + [sym_method_attribute_specifier] = ACTIONS(1371), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1371), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1371), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1371), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1371), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1371), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1371), + [anon_sym_NS_AVAILABLE] = ACTIONS(1371), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1371), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_API_AVAILABLE] = ACTIONS(1371), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1371), + [anon_sym_API_DEPRECATED] = ACTIONS(1371), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1371), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1371), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1371), + [anon_sym___deprecated_msg] = ACTIONS(1371), + [anon_sym___deprecated_enum_msg] = ACTIONS(1371), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1371), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1371), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1371), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1371), + [anon_sym_ATimplementation] = ACTIONS(1373), + [anon_sym_NS_ENUM] = ACTIONS(1371), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1371), + [anon_sym_NS_OPTIONS] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym___typeof] = ACTIONS(1371), + [anon_sym___typeof__] = ACTIONS(1371), + [sym_self] = ACTIONS(1371), + [sym_super] = ACTIONS(1371), + [sym_nil] = ACTIONS(1371), + [sym_id] = ACTIONS(1371), + [sym_instancetype] = ACTIONS(1371), + [sym_Class] = ACTIONS(1371), + [sym_SEL] = ACTIONS(1371), + [sym_IMP] = ACTIONS(1371), + [sym_BOOL] = ACTIONS(1371), + [sym_auto] = ACTIONS(1371), + [anon_sym_ATautoreleasepool] = ACTIONS(1373), + [anon_sym_ATsynchronized] = ACTIONS(1373), + [anon_sym_ATtry] = ACTIONS(1373), + [anon_sym_ATcatch] = ACTIONS(1373), + [anon_sym_ATfinally] = ACTIONS(1373), + [anon_sym_ATthrow] = ACTIONS(1373), + [anon_sym_ATselector] = ACTIONS(1373), + [anon_sym_ATencode] = ACTIONS(1373), + [anon_sym_AT] = ACTIONS(1371), + [sym_YES] = ACTIONS(1371), + [sym_NO] = ACTIONS(1371), + [anon_sym___builtin_available] = ACTIONS(1371), + [anon_sym_ATavailable] = ACTIONS(1373), + [anon_sym_va_arg] = ACTIONS(1371), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -46842,176 +45809,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [121] = { - [sym_identifier] = ACTIONS(1377), - [aux_sym_preproc_include_token1] = ACTIONS(1379), - [aux_sym_preproc_def_token1] = ACTIONS(1379), - [aux_sym_preproc_if_token1] = ACTIONS(1377), - [aux_sym_preproc_if_token2] = ACTIONS(1377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1377), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1377), - [aux_sym_preproc_else_token1] = ACTIONS(1377), - [aux_sym_preproc_elif_token1] = ACTIONS(1377), - [anon_sym_LPAREN2] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_typedef] = ACTIONS(1377), - [anon_sym_extern] = ACTIONS(1377), - [anon_sym___attribute] = ACTIONS(1377), - [anon_sym___attribute__] = ACTIONS(1377), - [anon_sym___declspec] = ACTIONS(1377), - [anon_sym___cdecl] = ACTIONS(1377), - [anon_sym___clrcall] = ACTIONS(1377), - [anon_sym___stdcall] = ACTIONS(1377), - [anon_sym___fastcall] = ACTIONS(1377), - [anon_sym___thiscall] = ACTIONS(1377), - [anon_sym___vectorcall] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1379), - [anon_sym_static] = ACTIONS(1377), - [anon_sym_auto] = ACTIONS(1377), - [anon_sym_register] = ACTIONS(1377), - [anon_sym_inline] = ACTIONS(1377), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1377), - [anon_sym_const] = ACTIONS(1377), - [anon_sym_volatile] = ACTIONS(1377), - [anon_sym_restrict] = ACTIONS(1377), - [anon_sym__Atomic] = ACTIONS(1377), - [anon_sym_in] = ACTIONS(1377), - [anon_sym_out] = ACTIONS(1377), - [anon_sym_inout] = ACTIONS(1377), - [anon_sym_bycopy] = ACTIONS(1377), - [anon_sym_byref] = ACTIONS(1377), - [anon_sym_oneway] = ACTIONS(1377), - [anon_sym__Nullable] = ACTIONS(1377), - [anon_sym__Nonnull] = ACTIONS(1377), - [anon_sym__Nullable_result] = ACTIONS(1377), - [anon_sym__Null_unspecified] = ACTIONS(1377), - [anon_sym___autoreleasing] = ACTIONS(1377), - [anon_sym___nullable] = ACTIONS(1377), - [anon_sym___nonnull] = ACTIONS(1377), - [anon_sym___strong] = ACTIONS(1377), - [anon_sym___weak] = ACTIONS(1377), - [anon_sym___bridge] = ACTIONS(1377), - [anon_sym___bridge_transfer] = ACTIONS(1377), - [anon_sym___bridge_retained] = ACTIONS(1377), - [anon_sym___unsafe_unretained] = ACTIONS(1377), - [anon_sym___block] = ACTIONS(1377), - [anon_sym___kindof] = ACTIONS(1377), - [anon_sym___unused] = ACTIONS(1377), - [anon_sym__Complex] = ACTIONS(1377), - [anon_sym___complex] = ACTIONS(1377), - [anon_sym_IBOutlet] = ACTIONS(1377), - [anon_sym_IBInspectable] = ACTIONS(1377), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1377), - [anon_sym_signed] = ACTIONS(1377), - [anon_sym_unsigned] = ACTIONS(1377), - [anon_sym_long] = ACTIONS(1377), - [anon_sym_short] = ACTIONS(1377), - [sym_primitive_type] = ACTIONS(1377), - [anon_sym_enum] = ACTIONS(1377), - [anon_sym_NS_ENUM] = ACTIONS(1377), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1377), - [anon_sym_NS_OPTIONS] = ACTIONS(1377), - [anon_sym_struct] = ACTIONS(1377), - [anon_sym_union] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1377), - [anon_sym_else] = ACTIONS(1377), - [anon_sym_switch] = ACTIONS(1377), - [anon_sym_case] = ACTIONS(1377), - [anon_sym_default] = ACTIONS(1377), - [anon_sym_while] = ACTIONS(1377), - [anon_sym_do] = ACTIONS(1377), - [anon_sym_for] = ACTIONS(1377), - [anon_sym_return] = ACTIONS(1377), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1377), - [anon_sym_goto] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1377), - [sym_number_literal] = ACTIONS(1379), - [anon_sym_L_SQUOTE] = ACTIONS(1379), - [anon_sym_u_SQUOTE] = ACTIONS(1379), - [anon_sym_U_SQUOTE] = ACTIONS(1379), - [anon_sym_u8_SQUOTE] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_L_DQUOTE] = ACTIONS(1379), - [anon_sym_u_DQUOTE] = ACTIONS(1379), - [anon_sym_U_DQUOTE] = ACTIONS(1379), - [anon_sym_u8_DQUOTE] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [sym_true] = ACTIONS(1377), - [sym_false] = ACTIONS(1377), - [sym_null] = ACTIONS(1377), + [115] = { + [sym_identifier] = ACTIONS(1375), + [aux_sym_preproc_include_token1] = ACTIONS(1377), + [aux_sym_preproc_def_token1] = ACTIONS(1377), + [aux_sym_preproc_if_token1] = ACTIONS(1375), + [aux_sym_preproc_if_token2] = ACTIONS(1375), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1375), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1375), + [aux_sym_preproc_else_token1] = ACTIONS(1375), + [aux_sym_preproc_elif_token1] = ACTIONS(1375), + [anon_sym_LPAREN2] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_typedef] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym___attribute] = ACTIONS(1375), + [anon_sym___attribute__] = ACTIONS(1375), + [anon_sym___declspec] = ACTIONS(1375), + [anon_sym___cdecl] = ACTIONS(1375), + [anon_sym___clrcall] = ACTIONS(1375), + [anon_sym___stdcall] = ACTIONS(1375), + [anon_sym___fastcall] = ACTIONS(1375), + [anon_sym___thiscall] = ACTIONS(1375), + [anon_sym___vectorcall] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_auto] = ACTIONS(1375), + [anon_sym_register] = ACTIONS(1375), + [anon_sym_inline] = ACTIONS(1375), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_volatile] = ACTIONS(1375), + [anon_sym_restrict] = ACTIONS(1375), + [anon_sym__Atomic] = ACTIONS(1375), + [anon_sym_in] = ACTIONS(1375), + [anon_sym_out] = ACTIONS(1375), + [anon_sym_inout] = ACTIONS(1375), + [anon_sym_bycopy] = ACTIONS(1375), + [anon_sym_byref] = ACTIONS(1375), + [anon_sym_oneway] = ACTIONS(1375), + [anon_sym__Nullable] = ACTIONS(1375), + [anon_sym__Nonnull] = ACTIONS(1375), + [anon_sym__Nullable_result] = ACTIONS(1375), + [anon_sym__Null_unspecified] = ACTIONS(1375), + [anon_sym___autoreleasing] = ACTIONS(1375), + [anon_sym___nullable] = ACTIONS(1375), + [anon_sym___nonnull] = ACTIONS(1375), + [anon_sym___strong] = ACTIONS(1375), + [anon_sym___weak] = ACTIONS(1375), + [anon_sym___bridge] = ACTIONS(1375), + [anon_sym___bridge_transfer] = ACTIONS(1375), + [anon_sym___bridge_retained] = ACTIONS(1375), + [anon_sym___unsafe_unretained] = ACTIONS(1375), + [anon_sym___block] = ACTIONS(1375), + [anon_sym___kindof] = ACTIONS(1375), + [anon_sym___unused] = ACTIONS(1375), + [anon_sym__Complex] = ACTIONS(1375), + [anon_sym___complex] = ACTIONS(1375), + [anon_sym_IBOutlet] = ACTIONS(1375), + [anon_sym_IBInspectable] = ACTIONS(1375), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1375), + [anon_sym_signed] = ACTIONS(1375), + [anon_sym_unsigned] = ACTIONS(1375), + [anon_sym_long] = ACTIONS(1375), + [anon_sym_short] = ACTIONS(1375), + [sym_primitive_type] = ACTIONS(1375), + [anon_sym_enum] = ACTIONS(1375), + [anon_sym_struct] = ACTIONS(1375), + [anon_sym_union] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_default] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_goto] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_sizeof] = ACTIONS(1375), + [sym_number_literal] = ACTIONS(1377), + [anon_sym_L_SQUOTE] = ACTIONS(1377), + [anon_sym_u_SQUOTE] = ACTIONS(1377), + [anon_sym_U_SQUOTE] = ACTIONS(1377), + [anon_sym_u8_SQUOTE] = ACTIONS(1377), + [anon_sym_SQUOTE] = ACTIONS(1377), + [anon_sym_L_DQUOTE] = ACTIONS(1377), + [anon_sym_u_DQUOTE] = ACTIONS(1377), + [anon_sym_U_DQUOTE] = ACTIONS(1377), + [anon_sym_u8_DQUOTE] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1377), + [sym_true] = ACTIONS(1375), + [sym_false] = ACTIONS(1375), + [sym_null] = ACTIONS(1375), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1379), - [anon_sym_ATimport] = ACTIONS(1379), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1377), - [anon_sym_ATcompatibility_alias] = ACTIONS(1379), - [anon_sym_ATprotocol] = ACTIONS(1379), - [anon_sym_ATclass] = ACTIONS(1379), - [anon_sym_ATinterface] = ACTIONS(1379), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1377), - [sym_method_attribute_specifier] = ACTIONS(1377), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1377), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1377), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1377), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1377), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1377), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1377), - [anon_sym_NS_AVAILABLE] = ACTIONS(1377), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1377), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1377), - [anon_sym_API_AVAILABLE] = ACTIONS(1377), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1377), - [anon_sym_API_DEPRECATED] = ACTIONS(1377), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1377), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1377), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1377), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1377), - [anon_sym___deprecated_msg] = ACTIONS(1377), - [anon_sym___deprecated_enum_msg] = ACTIONS(1377), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1377), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1377), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1377), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1377), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1377), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1377), - [anon_sym_ATimplementation] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym___typeof] = ACTIONS(1377), - [anon_sym___typeof__] = ACTIONS(1377), - [sym_self] = ACTIONS(1377), - [sym_super] = ACTIONS(1377), - [sym_nil] = ACTIONS(1377), - [sym_id] = ACTIONS(1377), - [sym_instancetype] = ACTIONS(1377), - [sym_Class] = ACTIONS(1377), - [sym_SEL] = ACTIONS(1377), - [sym_IMP] = ACTIONS(1377), - [sym_BOOL] = ACTIONS(1377), - [sym_auto] = ACTIONS(1377), - [anon_sym_ATautoreleasepool] = ACTIONS(1379), - [anon_sym_ATsynchronized] = ACTIONS(1379), - [anon_sym_ATtry] = ACTIONS(1379), - [anon_sym_ATcatch] = ACTIONS(1379), - [anon_sym_ATfinally] = ACTIONS(1379), - [anon_sym_ATthrow] = ACTIONS(1379), - [anon_sym_ATselector] = ACTIONS(1379), - [anon_sym_ATencode] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1377), - [sym_YES] = ACTIONS(1377), - [sym_NO] = ACTIONS(1377), - [anon_sym___builtin_available] = ACTIONS(1377), - [anon_sym_ATavailable] = ACTIONS(1379), - [anon_sym_va_arg] = ACTIONS(1377), + [anon_sym_POUNDimport] = ACTIONS(1377), + [anon_sym_ATimport] = ACTIONS(1377), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1375), + [anon_sym_ATcompatibility_alias] = ACTIONS(1377), + [anon_sym_ATprotocol] = ACTIONS(1377), + [anon_sym_ATclass] = ACTIONS(1377), + [anon_sym_ATinterface] = ACTIONS(1377), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1375), + [sym_method_attribute_specifier] = ACTIONS(1375), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1375), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1375), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1375), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1375), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1375), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1375), + [anon_sym_NS_AVAILABLE] = ACTIONS(1375), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1375), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1375), + [anon_sym_API_AVAILABLE] = ACTIONS(1375), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1375), + [anon_sym_API_DEPRECATED] = ACTIONS(1375), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1375), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1375), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1375), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1375), + [anon_sym___deprecated_msg] = ACTIONS(1375), + [anon_sym___deprecated_enum_msg] = ACTIONS(1375), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1375), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1375), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1375), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1375), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1375), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1375), + [anon_sym_ATimplementation] = ACTIONS(1377), + [anon_sym_NS_ENUM] = ACTIONS(1375), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1375), + [anon_sym_NS_OPTIONS] = ACTIONS(1375), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym___typeof] = ACTIONS(1375), + [anon_sym___typeof__] = ACTIONS(1375), + [sym_self] = ACTIONS(1375), + [sym_super] = ACTIONS(1375), + [sym_nil] = ACTIONS(1375), + [sym_id] = ACTIONS(1375), + [sym_instancetype] = ACTIONS(1375), + [sym_Class] = ACTIONS(1375), + [sym_SEL] = ACTIONS(1375), + [sym_IMP] = ACTIONS(1375), + [sym_BOOL] = ACTIONS(1375), + [sym_auto] = ACTIONS(1375), + [anon_sym_ATautoreleasepool] = ACTIONS(1377), + [anon_sym_ATsynchronized] = ACTIONS(1377), + [anon_sym_ATtry] = ACTIONS(1377), + [anon_sym_ATcatch] = ACTIONS(1377), + [anon_sym_ATfinally] = ACTIONS(1377), + [anon_sym_ATthrow] = ACTIONS(1377), + [anon_sym_ATselector] = ACTIONS(1377), + [anon_sym_ATencode] = ACTIONS(1377), + [anon_sym_AT] = ACTIONS(1375), + [sym_YES] = ACTIONS(1375), + [sym_NO] = ACTIONS(1375), + [anon_sym___builtin_available] = ACTIONS(1375), + [anon_sym_ATavailable] = ACTIONS(1377), + [anon_sym_va_arg] = ACTIONS(1375), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -47019,24 +45986,379 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [122] = { - [ts_builtin_sym_end] = ACTIONS(1381), - [sym_identifier] = ACTIONS(1383), + [116] = { + [sym_identifier] = ACTIONS(1379), [aux_sym_preproc_include_token1] = ACTIONS(1381), [aux_sym_preproc_def_token1] = ACTIONS(1381), - [anon_sym_RPAREN] = ACTIONS(1381), - [aux_sym_preproc_if_token1] = ACTIONS(1383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1383), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1383), + [aux_sym_preproc_if_token1] = ACTIONS(1379), + [aux_sym_preproc_if_token2] = ACTIONS(1379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1379), + [aux_sym_preproc_else_token1] = ACTIONS(1379), + [aux_sym_preproc_elif_token1] = ACTIONS(1379), [anon_sym_LPAREN2] = ACTIONS(1381), [anon_sym_BANG] = ACTIONS(1381), [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1379), [anon_sym_STAR] = ACTIONS(1381), [anon_sym_CARET] = ACTIONS(1381), [anon_sym_AMP] = ACTIONS(1381), [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_typedef] = ACTIONS(1379), + [anon_sym_extern] = ACTIONS(1379), + [anon_sym___attribute] = ACTIONS(1379), + [anon_sym___attribute__] = ACTIONS(1379), + [anon_sym___declspec] = ACTIONS(1379), + [anon_sym___cdecl] = ACTIONS(1379), + [anon_sym___clrcall] = ACTIONS(1379), + [anon_sym___stdcall] = ACTIONS(1379), + [anon_sym___fastcall] = ACTIONS(1379), + [anon_sym___thiscall] = ACTIONS(1379), + [anon_sym___vectorcall] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1379), + [anon_sym_auto] = ACTIONS(1379), + [anon_sym_register] = ACTIONS(1379), + [anon_sym_inline] = ACTIONS(1379), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_volatile] = ACTIONS(1379), + [anon_sym_restrict] = ACTIONS(1379), + [anon_sym__Atomic] = ACTIONS(1379), + [anon_sym_in] = ACTIONS(1379), + [anon_sym_out] = ACTIONS(1379), + [anon_sym_inout] = ACTIONS(1379), + [anon_sym_bycopy] = ACTIONS(1379), + [anon_sym_byref] = ACTIONS(1379), + [anon_sym_oneway] = ACTIONS(1379), + [anon_sym__Nullable] = ACTIONS(1379), + [anon_sym__Nonnull] = ACTIONS(1379), + [anon_sym__Nullable_result] = ACTIONS(1379), + [anon_sym__Null_unspecified] = ACTIONS(1379), + [anon_sym___autoreleasing] = ACTIONS(1379), + [anon_sym___nullable] = ACTIONS(1379), + [anon_sym___nonnull] = ACTIONS(1379), + [anon_sym___strong] = ACTIONS(1379), + [anon_sym___weak] = ACTIONS(1379), + [anon_sym___bridge] = ACTIONS(1379), + [anon_sym___bridge_transfer] = ACTIONS(1379), + [anon_sym___bridge_retained] = ACTIONS(1379), + [anon_sym___unsafe_unretained] = ACTIONS(1379), + [anon_sym___block] = ACTIONS(1379), + [anon_sym___kindof] = ACTIONS(1379), + [anon_sym___unused] = ACTIONS(1379), + [anon_sym__Complex] = ACTIONS(1379), + [anon_sym___complex] = ACTIONS(1379), + [anon_sym_IBOutlet] = ACTIONS(1379), + [anon_sym_IBInspectable] = ACTIONS(1379), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1379), + [anon_sym_signed] = ACTIONS(1379), + [anon_sym_unsigned] = ACTIONS(1379), + [anon_sym_long] = ACTIONS(1379), + [anon_sym_short] = ACTIONS(1379), + [sym_primitive_type] = ACTIONS(1379), + [anon_sym_enum] = ACTIONS(1379), + [anon_sym_struct] = ACTIONS(1379), + [anon_sym_union] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_else] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_case] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1379), + [anon_sym_while] = ACTIONS(1379), + [anon_sym_do] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_return] = ACTIONS(1379), + [anon_sym_break] = ACTIONS(1379), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_sizeof] = ACTIONS(1379), + [sym_number_literal] = ACTIONS(1381), + [anon_sym_L_SQUOTE] = ACTIONS(1381), + [anon_sym_u_SQUOTE] = ACTIONS(1381), + [anon_sym_U_SQUOTE] = ACTIONS(1381), + [anon_sym_u8_SQUOTE] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1381), + [anon_sym_L_DQUOTE] = ACTIONS(1381), + [anon_sym_u_DQUOTE] = ACTIONS(1381), + [anon_sym_U_DQUOTE] = ACTIONS(1381), + [anon_sym_u8_DQUOTE] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [sym_true] = ACTIONS(1379), + [sym_false] = ACTIONS(1379), + [sym_null] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1381), + [anon_sym_ATimport] = ACTIONS(1381), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1379), + [anon_sym_ATcompatibility_alias] = ACTIONS(1381), + [anon_sym_ATprotocol] = ACTIONS(1381), + [anon_sym_ATclass] = ACTIONS(1381), + [anon_sym_ATinterface] = ACTIONS(1381), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1379), + [sym_method_attribute_specifier] = ACTIONS(1379), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1379), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1379), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1379), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1379), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1379), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1379), + [anon_sym_NS_AVAILABLE] = ACTIONS(1379), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1379), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1379), + [anon_sym_API_AVAILABLE] = ACTIONS(1379), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1379), + [anon_sym_API_DEPRECATED] = ACTIONS(1379), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1379), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1379), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1379), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1379), + [anon_sym___deprecated_msg] = ACTIONS(1379), + [anon_sym___deprecated_enum_msg] = ACTIONS(1379), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1379), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1379), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1379), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1379), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1379), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1379), + [anon_sym_ATimplementation] = ACTIONS(1381), + [anon_sym_NS_ENUM] = ACTIONS(1379), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1379), + [anon_sym_NS_OPTIONS] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1379), + [anon_sym___typeof] = ACTIONS(1379), + [anon_sym___typeof__] = ACTIONS(1379), + [sym_self] = ACTIONS(1379), + [sym_super] = ACTIONS(1379), + [sym_nil] = ACTIONS(1379), + [sym_id] = ACTIONS(1379), + [sym_instancetype] = ACTIONS(1379), + [sym_Class] = ACTIONS(1379), + [sym_SEL] = ACTIONS(1379), + [sym_IMP] = ACTIONS(1379), + [sym_BOOL] = ACTIONS(1379), + [sym_auto] = ACTIONS(1379), + [anon_sym_ATautoreleasepool] = ACTIONS(1381), + [anon_sym_ATsynchronized] = ACTIONS(1381), + [anon_sym_ATtry] = ACTIONS(1381), + [anon_sym_ATcatch] = ACTIONS(1381), + [anon_sym_ATfinally] = ACTIONS(1381), + [anon_sym_ATthrow] = ACTIONS(1381), + [anon_sym_ATselector] = ACTIONS(1381), + [anon_sym_ATencode] = ACTIONS(1381), + [anon_sym_AT] = ACTIONS(1379), + [sym_YES] = ACTIONS(1379), + [sym_NO] = ACTIONS(1379), + [anon_sym___builtin_available] = ACTIONS(1379), + [anon_sym_ATavailable] = ACTIONS(1381), + [anon_sym_va_arg] = ACTIONS(1379), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [117] = { + [ts_builtin_sym_end] = ACTIONS(1373), + [sym_identifier] = ACTIONS(1371), + [aux_sym_preproc_include_token1] = ACTIONS(1373), + [aux_sym_preproc_def_token1] = ACTIONS(1373), + [anon_sym_RPAREN] = ACTIONS(1373), + [aux_sym_preproc_if_token1] = ACTIONS(1371), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1371), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1371), + [anon_sym_LPAREN2] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_CARET] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_typedef] = ACTIONS(1371), + [anon_sym_extern] = ACTIONS(1371), + [anon_sym___attribute] = ACTIONS(1371), + [anon_sym___attribute__] = ACTIONS(1371), + [anon_sym___declspec] = ACTIONS(1371), + [anon_sym___cdecl] = ACTIONS(1371), + [anon_sym___clrcall] = ACTIONS(1371), + [anon_sym___stdcall] = ACTIONS(1371), + [anon_sym___fastcall] = ACTIONS(1371), + [anon_sym___thiscall] = ACTIONS(1371), + [anon_sym___vectorcall] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1371), + [anon_sym_auto] = ACTIONS(1371), + [anon_sym_register] = ACTIONS(1371), + [anon_sym_inline] = ACTIONS(1371), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_volatile] = ACTIONS(1371), + [anon_sym_restrict] = ACTIONS(1371), + [anon_sym__Atomic] = ACTIONS(1371), + [anon_sym_in] = ACTIONS(1371), + [anon_sym_out] = ACTIONS(1371), + [anon_sym_inout] = ACTIONS(1371), + [anon_sym_bycopy] = ACTIONS(1371), + [anon_sym_byref] = ACTIONS(1371), + [anon_sym_oneway] = ACTIONS(1371), + [anon_sym__Nullable] = ACTIONS(1371), + [anon_sym__Nonnull] = ACTIONS(1371), + [anon_sym__Nullable_result] = ACTIONS(1371), + [anon_sym__Null_unspecified] = ACTIONS(1371), + [anon_sym___autoreleasing] = ACTIONS(1371), + [anon_sym___nullable] = ACTIONS(1371), + [anon_sym___nonnull] = ACTIONS(1371), + [anon_sym___strong] = ACTIONS(1371), + [anon_sym___weak] = ACTIONS(1371), + [anon_sym___bridge] = ACTIONS(1371), + [anon_sym___bridge_transfer] = ACTIONS(1371), + [anon_sym___bridge_retained] = ACTIONS(1371), + [anon_sym___unsafe_unretained] = ACTIONS(1371), + [anon_sym___block] = ACTIONS(1371), + [anon_sym___kindof] = ACTIONS(1371), + [anon_sym___unused] = ACTIONS(1371), + [anon_sym__Complex] = ACTIONS(1371), + [anon_sym___complex] = ACTIONS(1371), + [anon_sym_IBOutlet] = ACTIONS(1371), + [anon_sym_IBInspectable] = ACTIONS(1371), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1371), + [anon_sym_signed] = ACTIONS(1371), + [anon_sym_unsigned] = ACTIONS(1371), + [anon_sym_long] = ACTIONS(1371), + [anon_sym_short] = ACTIONS(1371), + [sym_primitive_type] = ACTIONS(1371), + [anon_sym_enum] = ACTIONS(1371), + [anon_sym_struct] = ACTIONS(1371), + [anon_sym_union] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1371), + [anon_sym_else] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1371), + [anon_sym_case] = ACTIONS(1371), + [anon_sym_default] = ACTIONS(1371), + [anon_sym_while] = ACTIONS(1371), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(1371), + [anon_sym_continue] = ACTIONS(1371), + [anon_sym_goto] = ACTIONS(1371), + [anon_sym_DASH_DASH] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(1373), + [anon_sym_sizeof] = ACTIONS(1371), + [sym_number_literal] = ACTIONS(1373), + [anon_sym_L_SQUOTE] = ACTIONS(1373), + [anon_sym_u_SQUOTE] = ACTIONS(1373), + [anon_sym_U_SQUOTE] = ACTIONS(1373), + [anon_sym_u8_SQUOTE] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1373), + [anon_sym_L_DQUOTE] = ACTIONS(1373), + [anon_sym_u_DQUOTE] = ACTIONS(1373), + [anon_sym_U_DQUOTE] = ACTIONS(1373), + [anon_sym_u8_DQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_true] = ACTIONS(1371), + [sym_false] = ACTIONS(1371), + [sym_null] = ACTIONS(1371), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1373), + [anon_sym_ATimport] = ACTIONS(1373), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1371), + [anon_sym_ATcompatibility_alias] = ACTIONS(1373), + [anon_sym_ATprotocol] = ACTIONS(1373), + [anon_sym_ATclass] = ACTIONS(1373), + [anon_sym_ATinterface] = ACTIONS(1373), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1371), + [sym_method_attribute_specifier] = ACTIONS(1371), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1371), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1371), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1371), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1371), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1371), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1371), + [anon_sym_NS_AVAILABLE] = ACTIONS(1371), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1371), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_API_AVAILABLE] = ACTIONS(1371), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1371), + [anon_sym_API_DEPRECATED] = ACTIONS(1371), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1371), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1371), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1371), + [anon_sym___deprecated_msg] = ACTIONS(1371), + [anon_sym___deprecated_enum_msg] = ACTIONS(1371), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1371), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1371), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1371), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1371), + [anon_sym_ATimplementation] = ACTIONS(1373), + [anon_sym_NS_ENUM] = ACTIONS(1371), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1371), + [anon_sym_NS_OPTIONS] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym___typeof] = ACTIONS(1371), + [anon_sym___typeof__] = ACTIONS(1371), + [sym_self] = ACTIONS(1371), + [sym_super] = ACTIONS(1371), + [sym_nil] = ACTIONS(1371), + [sym_id] = ACTIONS(1371), + [sym_instancetype] = ACTIONS(1371), + [sym_Class] = ACTIONS(1371), + [sym_SEL] = ACTIONS(1371), + [sym_IMP] = ACTIONS(1371), + [sym_BOOL] = ACTIONS(1371), + [sym_auto] = ACTIONS(1371), + [anon_sym_ATautoreleasepool] = ACTIONS(1373), + [anon_sym_ATsynchronized] = ACTIONS(1373), + [anon_sym_ATtry] = ACTIONS(1373), + [anon_sym_ATcatch] = ACTIONS(1373), + [anon_sym_ATfinally] = ACTIONS(1373), + [anon_sym_ATthrow] = ACTIONS(1373), + [anon_sym_ATselector] = ACTIONS(1373), + [anon_sym_ATencode] = ACTIONS(1373), + [anon_sym_AT] = ACTIONS(1371), + [sym_YES] = ACTIONS(1371), + [sym_NO] = ACTIONS(1371), + [anon_sym___builtin_available] = ACTIONS(1371), + [anon_sym_ATavailable] = ACTIONS(1373), + [anon_sym_va_arg] = ACTIONS(1371), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [118] = { + [sym_identifier] = ACTIONS(1383), + [aux_sym_preproc_include_token1] = ACTIONS(1385), + [aux_sym_preproc_def_token1] = ACTIONS(1385), + [aux_sym_preproc_if_token1] = ACTIONS(1383), + [aux_sym_preproc_if_token2] = ACTIONS(1383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1383), + [aux_sym_preproc_else_token1] = ACTIONS(1383), + [aux_sym_preproc_elif_token1] = ACTIONS(1383), + [anon_sym_LPAREN2] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_TILDE] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_CARET] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1385), [anon_sym_typedef] = ACTIONS(1383), [anon_sym_extern] = ACTIONS(1383), [anon_sym___attribute] = ACTIONS(1383), @@ -47048,9 +46370,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1383), [anon_sym___thiscall] = ACTIONS(1383), [anon_sym___vectorcall] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_RBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1385), [anon_sym_static] = ACTIONS(1383), [anon_sym_auto] = ACTIONS(1383), [anon_sym_register] = ACTIONS(1383), @@ -47093,9 +46414,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1383), [sym_primitive_type] = ACTIONS(1383), [anon_sym_enum] = ACTIONS(1383), - [anon_sym_NS_ENUM] = ACTIONS(1383), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1383), - [anon_sym_NS_OPTIONS] = ACTIONS(1383), [anon_sym_struct] = ACTIONS(1383), [anon_sym_union] = ACTIONS(1383), [anon_sym_if] = ACTIONS(1383), @@ -47110,31 +46428,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1383), [anon_sym_continue] = ACTIONS(1383), [anon_sym_goto] = ACTIONS(1383), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1385), [anon_sym_sizeof] = ACTIONS(1383), - [sym_number_literal] = ACTIONS(1381), - [anon_sym_L_SQUOTE] = ACTIONS(1381), - [anon_sym_u_SQUOTE] = ACTIONS(1381), - [anon_sym_U_SQUOTE] = ACTIONS(1381), - [anon_sym_u8_SQUOTE] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [anon_sym_L_DQUOTE] = ACTIONS(1381), - [anon_sym_u_DQUOTE] = ACTIONS(1381), - [anon_sym_U_DQUOTE] = ACTIONS(1381), - [anon_sym_u8_DQUOTE] = ACTIONS(1381), - [anon_sym_DQUOTE] = ACTIONS(1381), + [sym_number_literal] = ACTIONS(1385), + [anon_sym_L_SQUOTE] = ACTIONS(1385), + [anon_sym_u_SQUOTE] = ACTIONS(1385), + [anon_sym_U_SQUOTE] = ACTIONS(1385), + [anon_sym_u8_SQUOTE] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1385), + [anon_sym_L_DQUOTE] = ACTIONS(1385), + [anon_sym_u_DQUOTE] = ACTIONS(1385), + [anon_sym_U_DQUOTE] = ACTIONS(1385), + [anon_sym_u8_DQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(1385), [sym_true] = ACTIONS(1383), [sym_false] = ACTIONS(1383), [sym_null] = ACTIONS(1383), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1381), - [anon_sym_ATimport] = ACTIONS(1381), + [anon_sym_POUNDimport] = ACTIONS(1385), + [anon_sym_ATimport] = ACTIONS(1385), [sym__ns_assume_nonnull_declaration] = ACTIONS(1383), - [anon_sym_ATcompatibility_alias] = ACTIONS(1381), - [anon_sym_ATprotocol] = ACTIONS(1381), - [anon_sym_ATclass] = ACTIONS(1381), - [anon_sym_ATinterface] = ACTIONS(1381), + [anon_sym_ATcompatibility_alias] = ACTIONS(1385), + [anon_sym_ATprotocol] = ACTIONS(1385), + [anon_sym_ATclass] = ACTIONS(1385), + [anon_sym_ATinterface] = ACTIONS(1385), [sym_class_interface_attribute_sepcifier] = ACTIONS(1383), [sym_method_attribute_specifier] = ACTIONS(1383), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1383), @@ -47161,7 +46479,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1383), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1383), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1383), - [anon_sym_ATimplementation] = ACTIONS(1381), + [anon_sym_ATimplementation] = ACTIONS(1385), + [anon_sym_NS_ENUM] = ACTIONS(1383), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1383), + [anon_sym_NS_OPTIONS] = ACTIONS(1383), [anon_sym_typeof] = ACTIONS(1383), [anon_sym___typeof] = ACTIONS(1383), [anon_sym___typeof__] = ACTIONS(1383), @@ -47175,45 +46496,1462 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1383), [sym_BOOL] = ACTIONS(1383), [sym_auto] = ACTIONS(1383), - [anon_sym_ATautoreleasepool] = ACTIONS(1381), - [anon_sym_ATsynchronized] = ACTIONS(1381), - [anon_sym_ATtry] = ACTIONS(1381), - [anon_sym_ATcatch] = ACTIONS(1381), - [anon_sym_ATfinally] = ACTIONS(1381), - [anon_sym_ATthrow] = ACTIONS(1381), - [anon_sym_ATselector] = ACTIONS(1381), - [anon_sym_ATencode] = ACTIONS(1381), + [anon_sym_ATautoreleasepool] = ACTIONS(1385), + [anon_sym_ATsynchronized] = ACTIONS(1385), + [anon_sym_ATtry] = ACTIONS(1385), + [anon_sym_ATcatch] = ACTIONS(1385), + [anon_sym_ATfinally] = ACTIONS(1385), + [anon_sym_ATthrow] = ACTIONS(1385), + [anon_sym_ATselector] = ACTIONS(1385), + [anon_sym_ATencode] = ACTIONS(1385), [anon_sym_AT] = ACTIONS(1383), [sym_YES] = ACTIONS(1383), [sym_NO] = ACTIONS(1383), [anon_sym___builtin_available] = ACTIONS(1383), - [anon_sym_ATavailable] = ACTIONS(1381), + [anon_sym_ATavailable] = ACTIONS(1385), [anon_sym_va_arg] = ACTIONS(1383), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [119] = { + [sym_identifier] = ACTIONS(1241), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1241), + [aux_sym_preproc_if_token2] = ACTIONS(1241), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1241), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1241), + [aux_sym_preproc_else_token1] = ACTIONS(1241), + [aux_sym_preproc_elif_token1] = ACTIONS(1241), + [anon_sym_LPAREN2] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1241), + [anon_sym_extern] = ACTIONS(1241), + [anon_sym___attribute] = ACTIONS(1241), + [anon_sym___attribute__] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1241), + [anon_sym___cdecl] = ACTIONS(1241), + [anon_sym___clrcall] = ACTIONS(1241), + [anon_sym___stdcall] = ACTIONS(1241), + [anon_sym___fastcall] = ACTIONS(1241), + [anon_sym___thiscall] = ACTIONS(1241), + [anon_sym___vectorcall] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1241), + [anon_sym_auto] = ACTIONS(1241), + [anon_sym_register] = ACTIONS(1241), + [anon_sym_inline] = ACTIONS(1241), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1241), + [anon_sym_const] = ACTIONS(1241), + [anon_sym_volatile] = ACTIONS(1241), + [anon_sym_restrict] = ACTIONS(1241), + [anon_sym__Atomic] = ACTIONS(1241), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_out] = ACTIONS(1241), + [anon_sym_inout] = ACTIONS(1241), + [anon_sym_bycopy] = ACTIONS(1241), + [anon_sym_byref] = ACTIONS(1241), + [anon_sym_oneway] = ACTIONS(1241), + [anon_sym__Nullable] = ACTIONS(1241), + [anon_sym__Nonnull] = ACTIONS(1241), + [anon_sym__Nullable_result] = ACTIONS(1241), + [anon_sym__Null_unspecified] = ACTIONS(1241), + [anon_sym___autoreleasing] = ACTIONS(1241), + [anon_sym___nullable] = ACTIONS(1241), + [anon_sym___nonnull] = ACTIONS(1241), + [anon_sym___strong] = ACTIONS(1241), + [anon_sym___weak] = ACTIONS(1241), + [anon_sym___bridge] = ACTIONS(1241), + [anon_sym___bridge_transfer] = ACTIONS(1241), + [anon_sym___bridge_retained] = ACTIONS(1241), + [anon_sym___unsafe_unretained] = ACTIONS(1241), + [anon_sym___block] = ACTIONS(1241), + [anon_sym___kindof] = ACTIONS(1241), + [anon_sym___unused] = ACTIONS(1241), + [anon_sym__Complex] = ACTIONS(1241), + [anon_sym___complex] = ACTIONS(1241), + [anon_sym_IBOutlet] = ACTIONS(1241), + [anon_sym_IBInspectable] = ACTIONS(1241), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1241), + [anon_sym_unsigned] = ACTIONS(1241), + [anon_sym_long] = ACTIONS(1241), + [anon_sym_short] = ACTIONS(1241), + [sym_primitive_type] = ACTIONS(1241), + [anon_sym_enum] = ACTIONS(1241), + [anon_sym_struct] = ACTIONS(1241), + [anon_sym_union] = ACTIONS(1241), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1241), + [anon_sym_case] = ACTIONS(1241), + [anon_sym_default] = ACTIONS(1241), + [anon_sym_while] = ACTIONS(1241), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1241), + [anon_sym_break] = ACTIONS(1241), + [anon_sym_continue] = ACTIONS(1241), + [anon_sym_goto] = ACTIONS(1241), + [anon_sym_DASH_DASH] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_sizeof] = ACTIONS(1241), + [sym_number_literal] = ACTIONS(1239), + [anon_sym_L_SQUOTE] = ACTIONS(1239), + [anon_sym_u_SQUOTE] = ACTIONS(1239), + [anon_sym_U_SQUOTE] = ACTIONS(1239), + [anon_sym_u8_SQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1239), + [anon_sym_L_DQUOTE] = ACTIONS(1239), + [anon_sym_u_DQUOTE] = ACTIONS(1239), + [anon_sym_U_DQUOTE] = ACTIONS(1239), + [anon_sym_u8_DQUOTE] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1239), + [sym_true] = ACTIONS(1241), + [sym_false] = ACTIONS(1241), + [sym_null] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1239), + [anon_sym_ATimport] = ACTIONS(1239), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1241), + [anon_sym_ATcompatibility_alias] = ACTIONS(1239), + [anon_sym_ATprotocol] = ACTIONS(1239), + [anon_sym_ATclass] = ACTIONS(1239), + [anon_sym_ATinterface] = ACTIONS(1239), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1241), + [sym_method_attribute_specifier] = ACTIONS(1241), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1241), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1241), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1241), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1241), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1241), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1241), + [anon_sym_NS_AVAILABLE] = ACTIONS(1241), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1241), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1241), + [anon_sym_API_AVAILABLE] = ACTIONS(1241), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1241), + [anon_sym_API_DEPRECATED] = ACTIONS(1241), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1241), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1241), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1241), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1241), + [anon_sym___deprecated_msg] = ACTIONS(1241), + [anon_sym___deprecated_enum_msg] = ACTIONS(1241), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1241), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1241), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1241), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1241), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1241), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1241), + [anon_sym_ATimplementation] = ACTIONS(1239), + [anon_sym_NS_ENUM] = ACTIONS(1241), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1241), + [anon_sym_NS_OPTIONS] = ACTIONS(1241), + [anon_sym_typeof] = ACTIONS(1241), + [anon_sym___typeof] = ACTIONS(1241), + [anon_sym___typeof__] = ACTIONS(1241), + [sym_self] = ACTIONS(1241), + [sym_super] = ACTIONS(1241), + [sym_nil] = ACTIONS(1241), + [sym_id] = ACTIONS(1241), + [sym_instancetype] = ACTIONS(1241), + [sym_Class] = ACTIONS(1241), + [sym_SEL] = ACTIONS(1241), + [sym_IMP] = ACTIONS(1241), + [sym_BOOL] = ACTIONS(1241), + [sym_auto] = ACTIONS(1241), + [anon_sym_ATautoreleasepool] = ACTIONS(1239), + [anon_sym_ATsynchronized] = ACTIONS(1239), + [anon_sym_ATtry] = ACTIONS(1239), + [anon_sym_ATcatch] = ACTIONS(1239), + [anon_sym_ATfinally] = ACTIONS(1239), + [anon_sym_ATthrow] = ACTIONS(1239), + [anon_sym_ATselector] = ACTIONS(1239), + [anon_sym_ATencode] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(1241), + [sym_YES] = ACTIONS(1241), + [sym_NO] = ACTIONS(1241), + [anon_sym___builtin_available] = ACTIONS(1241), + [anon_sym_ATavailable] = ACTIONS(1239), + [anon_sym_va_arg] = ACTIONS(1241), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [120] = { + [sym_identifier] = ACTIONS(1237), + [aux_sym_preproc_include_token1] = ACTIONS(1235), + [aux_sym_preproc_def_token1] = ACTIONS(1235), + [aux_sym_preproc_if_token1] = ACTIONS(1237), + [aux_sym_preproc_if_token2] = ACTIONS(1237), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1237), + [aux_sym_preproc_else_token1] = ACTIONS(1237), + [aux_sym_preproc_elif_token1] = ACTIONS(1237), + [anon_sym_LPAREN2] = ACTIONS(1235), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_TILDE] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_typedef] = ACTIONS(1237), + [anon_sym_extern] = ACTIONS(1237), + [anon_sym___attribute] = ACTIONS(1237), + [anon_sym___attribute__] = ACTIONS(1237), + [anon_sym___declspec] = ACTIONS(1237), + [anon_sym___cdecl] = ACTIONS(1237), + [anon_sym___clrcall] = ACTIONS(1237), + [anon_sym___stdcall] = ACTIONS(1237), + [anon_sym___fastcall] = ACTIONS(1237), + [anon_sym___thiscall] = ACTIONS(1237), + [anon_sym___vectorcall] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1235), + [anon_sym_LBRACK] = ACTIONS(1235), + [anon_sym_static] = ACTIONS(1237), + [anon_sym_auto] = ACTIONS(1237), + [anon_sym_register] = ACTIONS(1237), + [anon_sym_inline] = ACTIONS(1237), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [anon_sym_volatile] = ACTIONS(1237), + [anon_sym_restrict] = ACTIONS(1237), + [anon_sym__Atomic] = ACTIONS(1237), + [anon_sym_in] = ACTIONS(1237), + [anon_sym_out] = ACTIONS(1237), + [anon_sym_inout] = ACTIONS(1237), + [anon_sym_bycopy] = ACTIONS(1237), + [anon_sym_byref] = ACTIONS(1237), + [anon_sym_oneway] = ACTIONS(1237), + [anon_sym__Nullable] = ACTIONS(1237), + [anon_sym__Nonnull] = ACTIONS(1237), + [anon_sym__Nullable_result] = ACTIONS(1237), + [anon_sym__Null_unspecified] = ACTIONS(1237), + [anon_sym___autoreleasing] = ACTIONS(1237), + [anon_sym___nullable] = ACTIONS(1237), + [anon_sym___nonnull] = ACTIONS(1237), + [anon_sym___strong] = ACTIONS(1237), + [anon_sym___weak] = ACTIONS(1237), + [anon_sym___bridge] = ACTIONS(1237), + [anon_sym___bridge_transfer] = ACTIONS(1237), + [anon_sym___bridge_retained] = ACTIONS(1237), + [anon_sym___unsafe_unretained] = ACTIONS(1237), + [anon_sym___block] = ACTIONS(1237), + [anon_sym___kindof] = ACTIONS(1237), + [anon_sym___unused] = ACTIONS(1237), + [anon_sym__Complex] = ACTIONS(1237), + [anon_sym___complex] = ACTIONS(1237), + [anon_sym_IBOutlet] = ACTIONS(1237), + [anon_sym_IBInspectable] = ACTIONS(1237), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1237), + [anon_sym_signed] = ACTIONS(1237), + [anon_sym_unsigned] = ACTIONS(1237), + [anon_sym_long] = ACTIONS(1237), + [anon_sym_short] = ACTIONS(1237), + [sym_primitive_type] = ACTIONS(1237), + [anon_sym_enum] = ACTIONS(1237), + [anon_sym_struct] = ACTIONS(1237), + [anon_sym_union] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_else] = ACTIONS(1237), + [anon_sym_switch] = ACTIONS(1237), + [anon_sym_case] = ACTIONS(1237), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1237), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1237), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_goto] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_sizeof] = ACTIONS(1237), + [sym_number_literal] = ACTIONS(1235), + [anon_sym_L_SQUOTE] = ACTIONS(1235), + [anon_sym_u_SQUOTE] = ACTIONS(1235), + [anon_sym_U_SQUOTE] = ACTIONS(1235), + [anon_sym_u8_SQUOTE] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1235), + [anon_sym_L_DQUOTE] = ACTIONS(1235), + [anon_sym_u_DQUOTE] = ACTIONS(1235), + [anon_sym_U_DQUOTE] = ACTIONS(1235), + [anon_sym_u8_DQUOTE] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), + [sym_null] = ACTIONS(1237), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1235), + [anon_sym_ATimport] = ACTIONS(1235), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1237), + [anon_sym_ATcompatibility_alias] = ACTIONS(1235), + [anon_sym_ATprotocol] = ACTIONS(1235), + [anon_sym_ATclass] = ACTIONS(1235), + [anon_sym_ATinterface] = ACTIONS(1235), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1237), + [sym_method_attribute_specifier] = ACTIONS(1237), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1237), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1237), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1237), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1237), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1237), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1237), + [anon_sym_NS_AVAILABLE] = ACTIONS(1237), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1237), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1237), + [anon_sym_API_AVAILABLE] = ACTIONS(1237), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1237), + [anon_sym_API_DEPRECATED] = ACTIONS(1237), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1237), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1237), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1237), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1237), + [anon_sym___deprecated_msg] = ACTIONS(1237), + [anon_sym___deprecated_enum_msg] = ACTIONS(1237), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1237), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1237), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1237), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1237), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1237), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1237), + [anon_sym_ATimplementation] = ACTIONS(1235), + [anon_sym_NS_ENUM] = ACTIONS(1237), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1237), + [anon_sym_NS_OPTIONS] = ACTIONS(1237), + [anon_sym_typeof] = ACTIONS(1237), + [anon_sym___typeof] = ACTIONS(1237), + [anon_sym___typeof__] = ACTIONS(1237), + [sym_self] = ACTIONS(1237), + [sym_super] = ACTIONS(1237), + [sym_nil] = ACTIONS(1237), + [sym_id] = ACTIONS(1237), + [sym_instancetype] = ACTIONS(1237), + [sym_Class] = ACTIONS(1237), + [sym_SEL] = ACTIONS(1237), + [sym_IMP] = ACTIONS(1237), + [sym_BOOL] = ACTIONS(1237), + [sym_auto] = ACTIONS(1237), + [anon_sym_ATautoreleasepool] = ACTIONS(1235), + [anon_sym_ATsynchronized] = ACTIONS(1235), + [anon_sym_ATtry] = ACTIONS(1235), + [anon_sym_ATcatch] = ACTIONS(1235), + [anon_sym_ATfinally] = ACTIONS(1235), + [anon_sym_ATthrow] = ACTIONS(1235), + [anon_sym_ATselector] = ACTIONS(1235), + [anon_sym_ATencode] = ACTIONS(1235), + [anon_sym_AT] = ACTIONS(1237), + [sym_YES] = ACTIONS(1237), + [sym_NO] = ACTIONS(1237), + [anon_sym___builtin_available] = ACTIONS(1237), + [anon_sym_ATavailable] = ACTIONS(1235), + [anon_sym_va_arg] = ACTIONS(1237), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [121] = { + [sym_identifier] = ACTIONS(1229), + [aux_sym_preproc_include_token1] = ACTIONS(1227), + [aux_sym_preproc_def_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token1] = ACTIONS(1229), + [aux_sym_preproc_if_token2] = ACTIONS(1229), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1229), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1229), + [aux_sym_preproc_else_token1] = ACTIONS(1229), + [aux_sym_preproc_elif_token1] = ACTIONS(1229), + [anon_sym_LPAREN2] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_typedef] = ACTIONS(1229), + [anon_sym_extern] = ACTIONS(1229), + [anon_sym___attribute] = ACTIONS(1229), + [anon_sym___attribute__] = ACTIONS(1229), + [anon_sym___declspec] = ACTIONS(1229), + [anon_sym___cdecl] = ACTIONS(1229), + [anon_sym___clrcall] = ACTIONS(1229), + [anon_sym___stdcall] = ACTIONS(1229), + [anon_sym___fastcall] = ACTIONS(1229), + [anon_sym___thiscall] = ACTIONS(1229), + [anon_sym___vectorcall] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_static] = ACTIONS(1229), + [anon_sym_auto] = ACTIONS(1229), + [anon_sym_register] = ACTIONS(1229), + [anon_sym_inline] = ACTIONS(1229), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [anon_sym_volatile] = ACTIONS(1229), + [anon_sym_restrict] = ACTIONS(1229), + [anon_sym__Atomic] = ACTIONS(1229), + [anon_sym_in] = ACTIONS(1229), + [anon_sym_out] = ACTIONS(1229), + [anon_sym_inout] = ACTIONS(1229), + [anon_sym_bycopy] = ACTIONS(1229), + [anon_sym_byref] = ACTIONS(1229), + [anon_sym_oneway] = ACTIONS(1229), + [anon_sym__Nullable] = ACTIONS(1229), + [anon_sym__Nonnull] = ACTIONS(1229), + [anon_sym__Nullable_result] = ACTIONS(1229), + [anon_sym__Null_unspecified] = ACTIONS(1229), + [anon_sym___autoreleasing] = ACTIONS(1229), + [anon_sym___nullable] = ACTIONS(1229), + [anon_sym___nonnull] = ACTIONS(1229), + [anon_sym___strong] = ACTIONS(1229), + [anon_sym___weak] = ACTIONS(1229), + [anon_sym___bridge] = ACTIONS(1229), + [anon_sym___bridge_transfer] = ACTIONS(1229), + [anon_sym___bridge_retained] = ACTIONS(1229), + [anon_sym___unsafe_unretained] = ACTIONS(1229), + [anon_sym___block] = ACTIONS(1229), + [anon_sym___kindof] = ACTIONS(1229), + [anon_sym___unused] = ACTIONS(1229), + [anon_sym__Complex] = ACTIONS(1229), + [anon_sym___complex] = ACTIONS(1229), + [anon_sym_IBOutlet] = ACTIONS(1229), + [anon_sym_IBInspectable] = ACTIONS(1229), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1229), + [anon_sym_signed] = ACTIONS(1229), + [anon_sym_unsigned] = ACTIONS(1229), + [anon_sym_long] = ACTIONS(1229), + [anon_sym_short] = ACTIONS(1229), + [sym_primitive_type] = ACTIONS(1229), + [anon_sym_enum] = ACTIONS(1229), + [anon_sym_struct] = ACTIONS(1229), + [anon_sym_union] = ACTIONS(1229), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_else] = ACTIONS(1229), + [anon_sym_switch] = ACTIONS(1229), + [anon_sym_case] = ACTIONS(1229), + [anon_sym_default] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1229), + [anon_sym_do] = ACTIONS(1229), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_continue] = ACTIONS(1229), + [anon_sym_goto] = ACTIONS(1229), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_sizeof] = ACTIONS(1229), + [sym_number_literal] = ACTIONS(1227), + [anon_sym_L_SQUOTE] = ACTIONS(1227), + [anon_sym_u_SQUOTE] = ACTIONS(1227), + [anon_sym_U_SQUOTE] = ACTIONS(1227), + [anon_sym_u8_SQUOTE] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1227), + [anon_sym_L_DQUOTE] = ACTIONS(1227), + [anon_sym_u_DQUOTE] = ACTIONS(1227), + [anon_sym_U_DQUOTE] = ACTIONS(1227), + [anon_sym_u8_DQUOTE] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1227), + [sym_true] = ACTIONS(1229), + [sym_false] = ACTIONS(1229), + [sym_null] = ACTIONS(1229), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1227), + [anon_sym_ATimport] = ACTIONS(1227), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1229), + [anon_sym_ATcompatibility_alias] = ACTIONS(1227), + [anon_sym_ATprotocol] = ACTIONS(1227), + [anon_sym_ATclass] = ACTIONS(1227), + [anon_sym_ATinterface] = ACTIONS(1227), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1229), + [sym_method_attribute_specifier] = ACTIONS(1229), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1229), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1229), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1229), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1229), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1229), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1229), + [anon_sym_NS_AVAILABLE] = ACTIONS(1229), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1229), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1229), + [anon_sym_API_AVAILABLE] = ACTIONS(1229), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1229), + [anon_sym_API_DEPRECATED] = ACTIONS(1229), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1229), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1229), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1229), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1229), + [anon_sym___deprecated_msg] = ACTIONS(1229), + [anon_sym___deprecated_enum_msg] = ACTIONS(1229), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1229), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1229), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1229), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1229), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1229), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1229), + [anon_sym_ATimplementation] = ACTIONS(1227), + [anon_sym_NS_ENUM] = ACTIONS(1229), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1229), + [anon_sym_NS_OPTIONS] = ACTIONS(1229), + [anon_sym_typeof] = ACTIONS(1229), + [anon_sym___typeof] = ACTIONS(1229), + [anon_sym___typeof__] = ACTIONS(1229), + [sym_self] = ACTIONS(1229), + [sym_super] = ACTIONS(1229), + [sym_nil] = ACTIONS(1229), + [sym_id] = ACTIONS(1229), + [sym_instancetype] = ACTIONS(1229), + [sym_Class] = ACTIONS(1229), + [sym_SEL] = ACTIONS(1229), + [sym_IMP] = ACTIONS(1229), + [sym_BOOL] = ACTIONS(1229), + [sym_auto] = ACTIONS(1229), + [anon_sym_ATautoreleasepool] = ACTIONS(1227), + [anon_sym_ATsynchronized] = ACTIONS(1227), + [anon_sym_ATtry] = ACTIONS(1227), + [anon_sym_ATcatch] = ACTIONS(1227), + [anon_sym_ATfinally] = ACTIONS(1227), + [anon_sym_ATthrow] = ACTIONS(1227), + [anon_sym_ATselector] = ACTIONS(1227), + [anon_sym_ATencode] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(1229), + [sym_YES] = ACTIONS(1229), + [sym_NO] = ACTIONS(1229), + [anon_sym___builtin_available] = ACTIONS(1229), + [anon_sym_ATavailable] = ACTIONS(1227), + [anon_sym_va_arg] = ACTIONS(1229), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [122] = { + [sym_identifier] = ACTIONS(1221), + [aux_sym_preproc_include_token1] = ACTIONS(1219), + [aux_sym_preproc_def_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token1] = ACTIONS(1221), + [aux_sym_preproc_if_token2] = ACTIONS(1221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1221), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1221), + [aux_sym_preproc_else_token1] = ACTIONS(1221), + [aux_sym_preproc_elif_token1] = ACTIONS(1221), + [anon_sym_LPAREN2] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1219), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_SEMI] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym___attribute] = ACTIONS(1221), + [anon_sym___attribute__] = ACTIONS(1221), + [anon_sym___declspec] = ACTIONS(1221), + [anon_sym___cdecl] = ACTIONS(1221), + [anon_sym___clrcall] = ACTIONS(1221), + [anon_sym___stdcall] = ACTIONS(1221), + [anon_sym___fastcall] = ACTIONS(1221), + [anon_sym___thiscall] = ACTIONS(1221), + [anon_sym___vectorcall] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_static] = ACTIONS(1221), + [anon_sym_auto] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_inline] = ACTIONS(1221), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_volatile] = ACTIONS(1221), + [anon_sym_restrict] = ACTIONS(1221), + [anon_sym__Atomic] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_out] = ACTIONS(1221), + [anon_sym_inout] = ACTIONS(1221), + [anon_sym_bycopy] = ACTIONS(1221), + [anon_sym_byref] = ACTIONS(1221), + [anon_sym_oneway] = ACTIONS(1221), + [anon_sym__Nullable] = ACTIONS(1221), + [anon_sym__Nonnull] = ACTIONS(1221), + [anon_sym__Nullable_result] = ACTIONS(1221), + [anon_sym__Null_unspecified] = ACTIONS(1221), + [anon_sym___autoreleasing] = ACTIONS(1221), + [anon_sym___nullable] = ACTIONS(1221), + [anon_sym___nonnull] = ACTIONS(1221), + [anon_sym___strong] = ACTIONS(1221), + [anon_sym___weak] = ACTIONS(1221), + [anon_sym___bridge] = ACTIONS(1221), + [anon_sym___bridge_transfer] = ACTIONS(1221), + [anon_sym___bridge_retained] = ACTIONS(1221), + [anon_sym___unsafe_unretained] = ACTIONS(1221), + [anon_sym___block] = ACTIONS(1221), + [anon_sym___kindof] = ACTIONS(1221), + [anon_sym___unused] = ACTIONS(1221), + [anon_sym__Complex] = ACTIONS(1221), + [anon_sym___complex] = ACTIONS(1221), + [anon_sym_IBOutlet] = ACTIONS(1221), + [anon_sym_IBInspectable] = ACTIONS(1221), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1221), + [anon_sym_signed] = ACTIONS(1221), + [anon_sym_unsigned] = ACTIONS(1221), + [anon_sym_long] = ACTIONS(1221), + [anon_sym_short] = ACTIONS(1221), + [sym_primitive_type] = ACTIONS(1221), + [anon_sym_enum] = ACTIONS(1221), + [anon_sym_struct] = ACTIONS(1221), + [anon_sym_union] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_else] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_case] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_goto] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_sizeof] = ACTIONS(1221), + [sym_number_literal] = ACTIONS(1219), + [anon_sym_L_SQUOTE] = ACTIONS(1219), + [anon_sym_u_SQUOTE] = ACTIONS(1219), + [anon_sym_U_SQUOTE] = ACTIONS(1219), + [anon_sym_u8_SQUOTE] = ACTIONS(1219), + [anon_sym_SQUOTE] = ACTIONS(1219), + [anon_sym_L_DQUOTE] = ACTIONS(1219), + [anon_sym_u_DQUOTE] = ACTIONS(1219), + [anon_sym_U_DQUOTE] = ACTIONS(1219), + [anon_sym_u8_DQUOTE] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_true] = ACTIONS(1221), + [sym_false] = ACTIONS(1221), + [sym_null] = ACTIONS(1221), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1219), + [anon_sym_ATimport] = ACTIONS(1219), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1221), + [anon_sym_ATcompatibility_alias] = ACTIONS(1219), + [anon_sym_ATprotocol] = ACTIONS(1219), + [anon_sym_ATclass] = ACTIONS(1219), + [anon_sym_ATinterface] = ACTIONS(1219), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1221), + [sym_method_attribute_specifier] = ACTIONS(1221), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1221), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1221), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1221), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1221), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1221), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1221), + [anon_sym_NS_AVAILABLE] = ACTIONS(1221), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1221), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1221), + [anon_sym_API_AVAILABLE] = ACTIONS(1221), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1221), + [anon_sym_API_DEPRECATED] = ACTIONS(1221), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1221), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1221), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1221), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1221), + [anon_sym___deprecated_msg] = ACTIONS(1221), + [anon_sym___deprecated_enum_msg] = ACTIONS(1221), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1221), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1221), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1221), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1221), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1221), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1221), + [anon_sym_ATimplementation] = ACTIONS(1219), + [anon_sym_NS_ENUM] = ACTIONS(1221), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1221), + [anon_sym_NS_OPTIONS] = ACTIONS(1221), + [anon_sym_typeof] = ACTIONS(1221), + [anon_sym___typeof] = ACTIONS(1221), + [anon_sym___typeof__] = ACTIONS(1221), + [sym_self] = ACTIONS(1221), + [sym_super] = ACTIONS(1221), + [sym_nil] = ACTIONS(1221), + [sym_id] = ACTIONS(1221), + [sym_instancetype] = ACTIONS(1221), + [sym_Class] = ACTIONS(1221), + [sym_SEL] = ACTIONS(1221), + [sym_IMP] = ACTIONS(1221), + [sym_BOOL] = ACTIONS(1221), + [sym_auto] = ACTIONS(1221), + [anon_sym_ATautoreleasepool] = ACTIONS(1219), + [anon_sym_ATsynchronized] = ACTIONS(1219), + [anon_sym_ATtry] = ACTIONS(1219), + [anon_sym_ATcatch] = ACTIONS(1219), + [anon_sym_ATfinally] = ACTIONS(1219), + [anon_sym_ATthrow] = ACTIONS(1219), + [anon_sym_ATselector] = ACTIONS(1219), + [anon_sym_ATencode] = ACTIONS(1219), + [anon_sym_AT] = ACTIONS(1221), + [sym_YES] = ACTIONS(1221), + [sym_NO] = ACTIONS(1221), + [anon_sym___builtin_available] = ACTIONS(1221), + [anon_sym_ATavailable] = ACTIONS(1219), + [anon_sym_va_arg] = ACTIONS(1221), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, [123] = { - [ts_builtin_sym_end] = ACTIONS(1385), + [sym_identifier] = ACTIONS(1217), + [aux_sym_preproc_include_token1] = ACTIONS(1215), + [aux_sym_preproc_def_token1] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1217), + [aux_sym_preproc_if_token2] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), + [aux_sym_preproc_else_token1] = ACTIONS(1217), + [aux_sym_preproc_elif_token1] = ACTIONS(1217), + [anon_sym_LPAREN2] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_typedef] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym___attribute] = ACTIONS(1217), + [anon_sym___attribute__] = ACTIONS(1217), + [anon_sym___declspec] = ACTIONS(1217), + [anon_sym___cdecl] = ACTIONS(1217), + [anon_sym___clrcall] = ACTIONS(1217), + [anon_sym___stdcall] = ACTIONS(1217), + [anon_sym___fastcall] = ACTIONS(1217), + [anon_sym___thiscall] = ACTIONS(1217), + [anon_sym___vectorcall] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1215), + [anon_sym_static] = ACTIONS(1217), + [anon_sym_auto] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_inline] = ACTIONS(1217), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_volatile] = ACTIONS(1217), + [anon_sym_restrict] = ACTIONS(1217), + [anon_sym__Atomic] = ACTIONS(1217), + [anon_sym_in] = ACTIONS(1217), + [anon_sym_out] = ACTIONS(1217), + [anon_sym_inout] = ACTIONS(1217), + [anon_sym_bycopy] = ACTIONS(1217), + [anon_sym_byref] = ACTIONS(1217), + [anon_sym_oneway] = ACTIONS(1217), + [anon_sym__Nullable] = ACTIONS(1217), + [anon_sym__Nonnull] = ACTIONS(1217), + [anon_sym__Nullable_result] = ACTIONS(1217), + [anon_sym__Null_unspecified] = ACTIONS(1217), + [anon_sym___autoreleasing] = ACTIONS(1217), + [anon_sym___nullable] = ACTIONS(1217), + [anon_sym___nonnull] = ACTIONS(1217), + [anon_sym___strong] = ACTIONS(1217), + [anon_sym___weak] = ACTIONS(1217), + [anon_sym___bridge] = ACTIONS(1217), + [anon_sym___bridge_transfer] = ACTIONS(1217), + [anon_sym___bridge_retained] = ACTIONS(1217), + [anon_sym___unsafe_unretained] = ACTIONS(1217), + [anon_sym___block] = ACTIONS(1217), + [anon_sym___kindof] = ACTIONS(1217), + [anon_sym___unused] = ACTIONS(1217), + [anon_sym__Complex] = ACTIONS(1217), + [anon_sym___complex] = ACTIONS(1217), + [anon_sym_IBOutlet] = ACTIONS(1217), + [anon_sym_IBInspectable] = ACTIONS(1217), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1217), + [anon_sym_signed] = ACTIONS(1217), + [anon_sym_unsigned] = ACTIONS(1217), + [anon_sym_long] = ACTIONS(1217), + [anon_sym_short] = ACTIONS(1217), + [sym_primitive_type] = ACTIONS(1217), + [anon_sym_enum] = ACTIONS(1217), + [anon_sym_struct] = ACTIONS(1217), + [anon_sym_union] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_switch] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_default] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_goto] = ACTIONS(1217), + [anon_sym_DASH_DASH] = ACTIONS(1215), + [anon_sym_PLUS_PLUS] = ACTIONS(1215), + [anon_sym_sizeof] = ACTIONS(1217), + [sym_number_literal] = ACTIONS(1215), + [anon_sym_L_SQUOTE] = ACTIONS(1215), + [anon_sym_u_SQUOTE] = ACTIONS(1215), + [anon_sym_U_SQUOTE] = ACTIONS(1215), + [anon_sym_u8_SQUOTE] = ACTIONS(1215), + [anon_sym_SQUOTE] = ACTIONS(1215), + [anon_sym_L_DQUOTE] = ACTIONS(1215), + [anon_sym_u_DQUOTE] = ACTIONS(1215), + [anon_sym_U_DQUOTE] = ACTIONS(1215), + [anon_sym_u8_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_null] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1215), + [anon_sym_ATimport] = ACTIONS(1215), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1217), + [anon_sym_ATcompatibility_alias] = ACTIONS(1215), + [anon_sym_ATprotocol] = ACTIONS(1215), + [anon_sym_ATclass] = ACTIONS(1215), + [anon_sym_ATinterface] = ACTIONS(1215), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1217), + [sym_method_attribute_specifier] = ACTIONS(1217), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1217), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1217), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1217), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1217), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1217), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1217), + [anon_sym_NS_AVAILABLE] = ACTIONS(1217), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1217), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1217), + [anon_sym_API_AVAILABLE] = ACTIONS(1217), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1217), + [anon_sym_API_DEPRECATED] = ACTIONS(1217), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1217), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1217), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1217), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1217), + [anon_sym___deprecated_msg] = ACTIONS(1217), + [anon_sym___deprecated_enum_msg] = ACTIONS(1217), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1217), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1217), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1217), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1217), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1217), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1217), + [anon_sym_ATimplementation] = ACTIONS(1215), + [anon_sym_NS_ENUM] = ACTIONS(1217), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1217), + [anon_sym_NS_OPTIONS] = ACTIONS(1217), + [anon_sym_typeof] = ACTIONS(1217), + [anon_sym___typeof] = ACTIONS(1217), + [anon_sym___typeof__] = ACTIONS(1217), + [sym_self] = ACTIONS(1217), + [sym_super] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [sym_id] = ACTIONS(1217), + [sym_instancetype] = ACTIONS(1217), + [sym_Class] = ACTIONS(1217), + [sym_SEL] = ACTIONS(1217), + [sym_IMP] = ACTIONS(1217), + [sym_BOOL] = ACTIONS(1217), + [sym_auto] = ACTIONS(1217), + [anon_sym_ATautoreleasepool] = ACTIONS(1215), + [anon_sym_ATsynchronized] = ACTIONS(1215), + [anon_sym_ATtry] = ACTIONS(1215), + [anon_sym_ATcatch] = ACTIONS(1215), + [anon_sym_ATfinally] = ACTIONS(1215), + [anon_sym_ATthrow] = ACTIONS(1215), + [anon_sym_ATselector] = ACTIONS(1215), + [anon_sym_ATencode] = ACTIONS(1215), + [anon_sym_AT] = ACTIONS(1217), + [sym_YES] = ACTIONS(1217), + [sym_NO] = ACTIONS(1217), + [anon_sym___builtin_available] = ACTIONS(1217), + [anon_sym_ATavailable] = ACTIONS(1215), + [anon_sym_va_arg] = ACTIONS(1217), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [124] = { + [sym_identifier] = ACTIONS(1213), + [aux_sym_preproc_include_token1] = ACTIONS(1211), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), + [aux_sym_preproc_if_token2] = ACTIONS(1213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1213), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1213), + [aux_sym_preproc_else_token1] = ACTIONS(1213), + [aux_sym_preproc_elif_token1] = ACTIONS(1213), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_typedef] = ACTIONS(1213), + [anon_sym_extern] = ACTIONS(1213), + [anon_sym___attribute] = ACTIONS(1213), + [anon_sym___attribute__] = ACTIONS(1213), + [anon_sym___declspec] = ACTIONS(1213), + [anon_sym___cdecl] = ACTIONS(1213), + [anon_sym___clrcall] = ACTIONS(1213), + [anon_sym___stdcall] = ACTIONS(1213), + [anon_sym___fastcall] = ACTIONS(1213), + [anon_sym___thiscall] = ACTIONS(1213), + [anon_sym___vectorcall] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1213), + [anon_sym_auto] = ACTIONS(1213), + [anon_sym_register] = ACTIONS(1213), + [anon_sym_inline] = ACTIONS(1213), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1213), + [anon_sym_const] = ACTIONS(1213), + [anon_sym_volatile] = ACTIONS(1213), + [anon_sym_restrict] = ACTIONS(1213), + [anon_sym__Atomic] = ACTIONS(1213), + [anon_sym_in] = ACTIONS(1213), + [anon_sym_out] = ACTIONS(1213), + [anon_sym_inout] = ACTIONS(1213), + [anon_sym_bycopy] = ACTIONS(1213), + [anon_sym_byref] = ACTIONS(1213), + [anon_sym_oneway] = ACTIONS(1213), + [anon_sym__Nullable] = ACTIONS(1213), + [anon_sym__Nonnull] = ACTIONS(1213), + [anon_sym__Nullable_result] = ACTIONS(1213), + [anon_sym__Null_unspecified] = ACTIONS(1213), + [anon_sym___autoreleasing] = ACTIONS(1213), + [anon_sym___nullable] = ACTIONS(1213), + [anon_sym___nonnull] = ACTIONS(1213), + [anon_sym___strong] = ACTIONS(1213), + [anon_sym___weak] = ACTIONS(1213), + [anon_sym___bridge] = ACTIONS(1213), + [anon_sym___bridge_transfer] = ACTIONS(1213), + [anon_sym___bridge_retained] = ACTIONS(1213), + [anon_sym___unsafe_unretained] = ACTIONS(1213), + [anon_sym___block] = ACTIONS(1213), + [anon_sym___kindof] = ACTIONS(1213), + [anon_sym___unused] = ACTIONS(1213), + [anon_sym__Complex] = ACTIONS(1213), + [anon_sym___complex] = ACTIONS(1213), + [anon_sym_IBOutlet] = ACTIONS(1213), + [anon_sym_IBInspectable] = ACTIONS(1213), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1213), + [anon_sym_signed] = ACTIONS(1213), + [anon_sym_unsigned] = ACTIONS(1213), + [anon_sym_long] = ACTIONS(1213), + [anon_sym_short] = ACTIONS(1213), + [sym_primitive_type] = ACTIONS(1213), + [anon_sym_enum] = ACTIONS(1213), + [anon_sym_struct] = ACTIONS(1213), + [anon_sym_union] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_else] = ACTIONS(1213), + [anon_sym_switch] = ACTIONS(1213), + [anon_sym_case] = ACTIONS(1213), + [anon_sym_default] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_break] = ACTIONS(1213), + [anon_sym_continue] = ACTIONS(1213), + [anon_sym_goto] = ACTIONS(1213), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_sizeof] = ACTIONS(1213), + [sym_number_literal] = ACTIONS(1211), + [anon_sym_L_SQUOTE] = ACTIONS(1211), + [anon_sym_u_SQUOTE] = ACTIONS(1211), + [anon_sym_U_SQUOTE] = ACTIONS(1211), + [anon_sym_u8_SQUOTE] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1211), + [anon_sym_L_DQUOTE] = ACTIONS(1211), + [anon_sym_u_DQUOTE] = ACTIONS(1211), + [anon_sym_U_DQUOTE] = ACTIONS(1211), + [anon_sym_u8_DQUOTE] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [sym_true] = ACTIONS(1213), + [sym_false] = ACTIONS(1213), + [sym_null] = ACTIONS(1213), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1211), + [anon_sym_ATimport] = ACTIONS(1211), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1213), + [anon_sym_ATcompatibility_alias] = ACTIONS(1211), + [anon_sym_ATprotocol] = ACTIONS(1211), + [anon_sym_ATclass] = ACTIONS(1211), + [anon_sym_ATinterface] = ACTIONS(1211), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1213), + [sym_method_attribute_specifier] = ACTIONS(1213), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1213), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1213), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1213), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1213), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1213), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1213), + [anon_sym_NS_AVAILABLE] = ACTIONS(1213), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1213), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1213), + [anon_sym_API_AVAILABLE] = ACTIONS(1213), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1213), + [anon_sym_API_DEPRECATED] = ACTIONS(1213), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1213), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1213), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1213), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1213), + [anon_sym___deprecated_msg] = ACTIONS(1213), + [anon_sym___deprecated_enum_msg] = ACTIONS(1213), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1213), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1213), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1213), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1213), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1213), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1213), + [anon_sym_ATimplementation] = ACTIONS(1211), + [anon_sym_NS_ENUM] = ACTIONS(1213), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1213), + [anon_sym_NS_OPTIONS] = ACTIONS(1213), + [anon_sym_typeof] = ACTIONS(1213), + [anon_sym___typeof] = ACTIONS(1213), + [anon_sym___typeof__] = ACTIONS(1213), + [sym_self] = ACTIONS(1213), + [sym_super] = ACTIONS(1213), + [sym_nil] = ACTIONS(1213), + [sym_id] = ACTIONS(1213), + [sym_instancetype] = ACTIONS(1213), + [sym_Class] = ACTIONS(1213), + [sym_SEL] = ACTIONS(1213), + [sym_IMP] = ACTIONS(1213), + [sym_BOOL] = ACTIONS(1213), + [sym_auto] = ACTIONS(1213), + [anon_sym_ATautoreleasepool] = ACTIONS(1211), + [anon_sym_ATsynchronized] = ACTIONS(1211), + [anon_sym_ATtry] = ACTIONS(1211), + [anon_sym_ATcatch] = ACTIONS(1211), + [anon_sym_ATfinally] = ACTIONS(1211), + [anon_sym_ATthrow] = ACTIONS(1211), + [anon_sym_ATselector] = ACTIONS(1211), + [anon_sym_ATencode] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(1213), + [sym_YES] = ACTIONS(1213), + [sym_NO] = ACTIONS(1213), + [anon_sym___builtin_available] = ACTIONS(1213), + [anon_sym_ATavailable] = ACTIONS(1211), + [anon_sym_va_arg] = ACTIONS(1213), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [125] = { + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1209), + [aux_sym_preproc_if_token2] = ACTIONS(1209), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1209), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1209), + [aux_sym_preproc_else_token1] = ACTIONS(1209), + [aux_sym_preproc_elif_token1] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1207), + [anon_sym_AMP] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(1209), + [anon_sym___attribute] = ACTIONS(1209), + [anon_sym___attribute__] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1209), + [anon_sym___cdecl] = ACTIONS(1209), + [anon_sym___clrcall] = ACTIONS(1209), + [anon_sym___stdcall] = ACTIONS(1209), + [anon_sym___fastcall] = ACTIONS(1209), + [anon_sym___thiscall] = ACTIONS(1209), + [anon_sym___vectorcall] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1209), + [anon_sym_auto] = ACTIONS(1209), + [anon_sym_register] = ACTIONS(1209), + [anon_sym_inline] = ACTIONS(1209), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1209), + [anon_sym_volatile] = ACTIONS(1209), + [anon_sym_restrict] = ACTIONS(1209), + [anon_sym__Atomic] = ACTIONS(1209), + [anon_sym_in] = ACTIONS(1209), + [anon_sym_out] = ACTIONS(1209), + [anon_sym_inout] = ACTIONS(1209), + [anon_sym_bycopy] = ACTIONS(1209), + [anon_sym_byref] = ACTIONS(1209), + [anon_sym_oneway] = ACTIONS(1209), + [anon_sym__Nullable] = ACTIONS(1209), + [anon_sym__Nonnull] = ACTIONS(1209), + [anon_sym__Nullable_result] = ACTIONS(1209), + [anon_sym__Null_unspecified] = ACTIONS(1209), + [anon_sym___autoreleasing] = ACTIONS(1209), + [anon_sym___nullable] = ACTIONS(1209), + [anon_sym___nonnull] = ACTIONS(1209), + [anon_sym___strong] = ACTIONS(1209), + [anon_sym___weak] = ACTIONS(1209), + [anon_sym___bridge] = ACTIONS(1209), + [anon_sym___bridge_transfer] = ACTIONS(1209), + [anon_sym___bridge_retained] = ACTIONS(1209), + [anon_sym___unsafe_unretained] = ACTIONS(1209), + [anon_sym___block] = ACTIONS(1209), + [anon_sym___kindof] = ACTIONS(1209), + [anon_sym___unused] = ACTIONS(1209), + [anon_sym__Complex] = ACTIONS(1209), + [anon_sym___complex] = ACTIONS(1209), + [anon_sym_IBOutlet] = ACTIONS(1209), + [anon_sym_IBInspectable] = ACTIONS(1209), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1209), + [anon_sym_unsigned] = ACTIONS(1209), + [anon_sym_long] = ACTIONS(1209), + [anon_sym_short] = ACTIONS(1209), + [sym_primitive_type] = ACTIONS(1209), + [anon_sym_enum] = ACTIONS(1209), + [anon_sym_struct] = ACTIONS(1209), + [anon_sym_union] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_else] = ACTIONS(1209), + [anon_sym_switch] = ACTIONS(1209), + [anon_sym_case] = ACTIONS(1209), + [anon_sym_default] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_break] = ACTIONS(1209), + [anon_sym_continue] = ACTIONS(1209), + [anon_sym_goto] = ACTIONS(1209), + [anon_sym_DASH_DASH] = ACTIONS(1207), + [anon_sym_PLUS_PLUS] = ACTIONS(1207), + [anon_sym_sizeof] = ACTIONS(1209), + [sym_number_literal] = ACTIONS(1207), + [anon_sym_L_SQUOTE] = ACTIONS(1207), + [anon_sym_u_SQUOTE] = ACTIONS(1207), + [anon_sym_U_SQUOTE] = ACTIONS(1207), + [anon_sym_u8_SQUOTE] = ACTIONS(1207), + [anon_sym_SQUOTE] = ACTIONS(1207), + [anon_sym_L_DQUOTE] = ACTIONS(1207), + [anon_sym_u_DQUOTE] = ACTIONS(1207), + [anon_sym_U_DQUOTE] = ACTIONS(1207), + [anon_sym_u8_DQUOTE] = ACTIONS(1207), + [anon_sym_DQUOTE] = ACTIONS(1207), + [sym_true] = ACTIONS(1209), + [sym_false] = ACTIONS(1209), + [sym_null] = ACTIONS(1209), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1207), + [anon_sym_ATimport] = ACTIONS(1207), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1209), + [anon_sym_ATcompatibility_alias] = ACTIONS(1207), + [anon_sym_ATprotocol] = ACTIONS(1207), + [anon_sym_ATclass] = ACTIONS(1207), + [anon_sym_ATinterface] = ACTIONS(1207), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1209), + [sym_method_attribute_specifier] = ACTIONS(1209), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1209), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1209), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1209), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1209), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1209), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1209), + [anon_sym_NS_AVAILABLE] = ACTIONS(1209), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1209), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1209), + [anon_sym_API_AVAILABLE] = ACTIONS(1209), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1209), + [anon_sym_API_DEPRECATED] = ACTIONS(1209), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1209), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1209), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1209), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1209), + [anon_sym___deprecated_msg] = ACTIONS(1209), + [anon_sym___deprecated_enum_msg] = ACTIONS(1209), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1209), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1209), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1209), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1209), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1209), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1209), + [anon_sym_ATimplementation] = ACTIONS(1207), + [anon_sym_NS_ENUM] = ACTIONS(1209), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1209), + [anon_sym_NS_OPTIONS] = ACTIONS(1209), + [anon_sym_typeof] = ACTIONS(1209), + [anon_sym___typeof] = ACTIONS(1209), + [anon_sym___typeof__] = ACTIONS(1209), + [sym_self] = ACTIONS(1209), + [sym_super] = ACTIONS(1209), + [sym_nil] = ACTIONS(1209), + [sym_id] = ACTIONS(1209), + [sym_instancetype] = ACTIONS(1209), + [sym_Class] = ACTIONS(1209), + [sym_SEL] = ACTIONS(1209), + [sym_IMP] = ACTIONS(1209), + [sym_BOOL] = ACTIONS(1209), + [sym_auto] = ACTIONS(1209), + [anon_sym_ATautoreleasepool] = ACTIONS(1207), + [anon_sym_ATsynchronized] = ACTIONS(1207), + [anon_sym_ATtry] = ACTIONS(1207), + [anon_sym_ATcatch] = ACTIONS(1207), + [anon_sym_ATfinally] = ACTIONS(1207), + [anon_sym_ATthrow] = ACTIONS(1207), + [anon_sym_ATselector] = ACTIONS(1207), + [anon_sym_ATencode] = ACTIONS(1207), + [anon_sym_AT] = ACTIONS(1209), + [sym_YES] = ACTIONS(1209), + [sym_NO] = ACTIONS(1209), + [anon_sym___builtin_available] = ACTIONS(1209), + [anon_sym_ATavailable] = ACTIONS(1207), + [anon_sym_va_arg] = ACTIONS(1209), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [126] = { + [sym_identifier] = ACTIONS(1205), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1205), + [aux_sym_preproc_if_token2] = ACTIONS(1205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1205), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1205), + [aux_sym_preproc_else_token1] = ACTIONS(1205), + [aux_sym_preproc_elif_token1] = ACTIONS(1205), + [anon_sym_LPAREN2] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(1205), + [anon_sym___attribute] = ACTIONS(1205), + [anon_sym___attribute__] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1205), + [anon_sym___cdecl] = ACTIONS(1205), + [anon_sym___clrcall] = ACTIONS(1205), + [anon_sym___stdcall] = ACTIONS(1205), + [anon_sym___fastcall] = ACTIONS(1205), + [anon_sym___thiscall] = ACTIONS(1205), + [anon_sym___vectorcall] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1203), + [anon_sym_LBRACK] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1205), + [anon_sym_auto] = ACTIONS(1205), + [anon_sym_register] = ACTIONS(1205), + [anon_sym_inline] = ACTIONS(1205), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1205), + [anon_sym_const] = ACTIONS(1205), + [anon_sym_volatile] = ACTIONS(1205), + [anon_sym_restrict] = ACTIONS(1205), + [anon_sym__Atomic] = ACTIONS(1205), + [anon_sym_in] = ACTIONS(1205), + [anon_sym_out] = ACTIONS(1205), + [anon_sym_inout] = ACTIONS(1205), + [anon_sym_bycopy] = ACTIONS(1205), + [anon_sym_byref] = ACTIONS(1205), + [anon_sym_oneway] = ACTIONS(1205), + [anon_sym__Nullable] = ACTIONS(1205), + [anon_sym__Nonnull] = ACTIONS(1205), + [anon_sym__Nullable_result] = ACTIONS(1205), + [anon_sym__Null_unspecified] = ACTIONS(1205), + [anon_sym___autoreleasing] = ACTIONS(1205), + [anon_sym___nullable] = ACTIONS(1205), + [anon_sym___nonnull] = ACTIONS(1205), + [anon_sym___strong] = ACTIONS(1205), + [anon_sym___weak] = ACTIONS(1205), + [anon_sym___bridge] = ACTIONS(1205), + [anon_sym___bridge_transfer] = ACTIONS(1205), + [anon_sym___bridge_retained] = ACTIONS(1205), + [anon_sym___unsafe_unretained] = ACTIONS(1205), + [anon_sym___block] = ACTIONS(1205), + [anon_sym___kindof] = ACTIONS(1205), + [anon_sym___unused] = ACTIONS(1205), + [anon_sym__Complex] = ACTIONS(1205), + [anon_sym___complex] = ACTIONS(1205), + [anon_sym_IBOutlet] = ACTIONS(1205), + [anon_sym_IBInspectable] = ACTIONS(1205), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1205), + [anon_sym_unsigned] = ACTIONS(1205), + [anon_sym_long] = ACTIONS(1205), + [anon_sym_short] = ACTIONS(1205), + [sym_primitive_type] = ACTIONS(1205), + [anon_sym_enum] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1205), + [anon_sym_union] = ACTIONS(1205), + [anon_sym_if] = ACTIONS(1205), + [anon_sym_else] = ACTIONS(1205), + [anon_sym_switch] = ACTIONS(1205), + [anon_sym_case] = ACTIONS(1205), + [anon_sym_default] = ACTIONS(1205), + [anon_sym_while] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(1205), + [anon_sym_for] = ACTIONS(1205), + [anon_sym_return] = ACTIONS(1205), + [anon_sym_break] = ACTIONS(1205), + [anon_sym_continue] = ACTIONS(1205), + [anon_sym_goto] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(1205), + [sym_number_literal] = ACTIONS(1203), + [anon_sym_L_SQUOTE] = ACTIONS(1203), + [anon_sym_u_SQUOTE] = ACTIONS(1203), + [anon_sym_U_SQUOTE] = ACTIONS(1203), + [anon_sym_u8_SQUOTE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1203), + [anon_sym_L_DQUOTE] = ACTIONS(1203), + [anon_sym_u_DQUOTE] = ACTIONS(1203), + [anon_sym_U_DQUOTE] = ACTIONS(1203), + [anon_sym_u8_DQUOTE] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1203), + [sym_true] = ACTIONS(1205), + [sym_false] = ACTIONS(1205), + [sym_null] = ACTIONS(1205), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1203), + [anon_sym_ATimport] = ACTIONS(1203), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1205), + [anon_sym_ATcompatibility_alias] = ACTIONS(1203), + [anon_sym_ATprotocol] = ACTIONS(1203), + [anon_sym_ATclass] = ACTIONS(1203), + [anon_sym_ATinterface] = ACTIONS(1203), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1205), + [sym_method_attribute_specifier] = ACTIONS(1205), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1205), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1205), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1205), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1205), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1205), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1205), + [anon_sym_NS_AVAILABLE] = ACTIONS(1205), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1205), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1205), + [anon_sym_API_AVAILABLE] = ACTIONS(1205), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1205), + [anon_sym_API_DEPRECATED] = ACTIONS(1205), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1205), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1205), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1205), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1205), + [anon_sym___deprecated_msg] = ACTIONS(1205), + [anon_sym___deprecated_enum_msg] = ACTIONS(1205), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1205), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1205), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1205), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1205), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1205), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1205), + [anon_sym_ATimplementation] = ACTIONS(1203), + [anon_sym_NS_ENUM] = ACTIONS(1205), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1205), + [anon_sym_NS_OPTIONS] = ACTIONS(1205), + [anon_sym_typeof] = ACTIONS(1205), + [anon_sym___typeof] = ACTIONS(1205), + [anon_sym___typeof__] = ACTIONS(1205), + [sym_self] = ACTIONS(1205), + [sym_super] = ACTIONS(1205), + [sym_nil] = ACTIONS(1205), + [sym_id] = ACTIONS(1205), + [sym_instancetype] = ACTIONS(1205), + [sym_Class] = ACTIONS(1205), + [sym_SEL] = ACTIONS(1205), + [sym_IMP] = ACTIONS(1205), + [sym_BOOL] = ACTIONS(1205), + [sym_auto] = ACTIONS(1205), + [anon_sym_ATautoreleasepool] = ACTIONS(1203), + [anon_sym_ATsynchronized] = ACTIONS(1203), + [anon_sym_ATtry] = ACTIONS(1203), + [anon_sym_ATcatch] = ACTIONS(1203), + [anon_sym_ATfinally] = ACTIONS(1203), + [anon_sym_ATthrow] = ACTIONS(1203), + [anon_sym_ATselector] = ACTIONS(1203), + [anon_sym_ATencode] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1205), + [sym_YES] = ACTIONS(1205), + [sym_NO] = ACTIONS(1205), + [anon_sym___builtin_available] = ACTIONS(1205), + [anon_sym_ATavailable] = ACTIONS(1203), + [anon_sym_va_arg] = ACTIONS(1205), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [127] = { [sym_identifier] = ACTIONS(1387), - [aux_sym_preproc_include_token1] = ACTIONS(1385), - [aux_sym_preproc_def_token1] = ACTIONS(1385), - [anon_sym_RPAREN] = ACTIONS(1385), + [aux_sym_preproc_include_token1] = ACTIONS(1389), + [aux_sym_preproc_def_token1] = ACTIONS(1389), [aux_sym_preproc_if_token1] = ACTIONS(1387), + [aux_sym_preproc_if_token2] = ACTIONS(1387), [aux_sym_preproc_ifdef_token1] = ACTIONS(1387), [aux_sym_preproc_ifdef_token2] = ACTIONS(1387), - [anon_sym_LPAREN2] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), + [aux_sym_preproc_else_token1] = ACTIONS(1387), + [aux_sym_preproc_elif_token1] = ACTIONS(1387), + [anon_sym_LPAREN2] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_TILDE] = ACTIONS(1389), [anon_sym_DASH] = ACTIONS(1387), [anon_sym_PLUS] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_CARET] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1389), [anon_sym_typedef] = ACTIONS(1387), [anon_sym_extern] = ACTIONS(1387), [anon_sym___attribute] = ACTIONS(1387), @@ -47225,9 +47963,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1387), [anon_sym___thiscall] = ACTIONS(1387), [anon_sym___vectorcall] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_RBRACE] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1389), [anon_sym_static] = ACTIONS(1387), [anon_sym_auto] = ACTIONS(1387), [anon_sym_register] = ACTIONS(1387), @@ -47270,9 +48007,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1387), [sym_primitive_type] = ACTIONS(1387), [anon_sym_enum] = ACTIONS(1387), - [anon_sym_NS_ENUM] = ACTIONS(1387), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1387), - [anon_sym_NS_OPTIONS] = ACTIONS(1387), [anon_sym_struct] = ACTIONS(1387), [anon_sym_union] = ACTIONS(1387), [anon_sym_if] = ACTIONS(1387), @@ -47287,31 +48021,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1387), [anon_sym_continue] = ACTIONS(1387), [anon_sym_goto] = ACTIONS(1387), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), [anon_sym_sizeof] = ACTIONS(1387), - [sym_number_literal] = ACTIONS(1385), - [anon_sym_L_SQUOTE] = ACTIONS(1385), - [anon_sym_u_SQUOTE] = ACTIONS(1385), - [anon_sym_U_SQUOTE] = ACTIONS(1385), - [anon_sym_u8_SQUOTE] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_L_DQUOTE] = ACTIONS(1385), - [anon_sym_u_DQUOTE] = ACTIONS(1385), - [anon_sym_U_DQUOTE] = ACTIONS(1385), - [anon_sym_u8_DQUOTE] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), + [sym_number_literal] = ACTIONS(1389), + [anon_sym_L_SQUOTE] = ACTIONS(1389), + [anon_sym_u_SQUOTE] = ACTIONS(1389), + [anon_sym_U_SQUOTE] = ACTIONS(1389), + [anon_sym_u8_SQUOTE] = ACTIONS(1389), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_L_DQUOTE] = ACTIONS(1389), + [anon_sym_u_DQUOTE] = ACTIONS(1389), + [anon_sym_U_DQUOTE] = ACTIONS(1389), + [anon_sym_u8_DQUOTE] = ACTIONS(1389), + [anon_sym_DQUOTE] = ACTIONS(1389), [sym_true] = ACTIONS(1387), [sym_false] = ACTIONS(1387), [sym_null] = ACTIONS(1387), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1385), - [anon_sym_ATimport] = ACTIONS(1385), + [anon_sym_POUNDimport] = ACTIONS(1389), + [anon_sym_ATimport] = ACTIONS(1389), [sym__ns_assume_nonnull_declaration] = ACTIONS(1387), - [anon_sym_ATcompatibility_alias] = ACTIONS(1385), - [anon_sym_ATprotocol] = ACTIONS(1385), - [anon_sym_ATclass] = ACTIONS(1385), - [anon_sym_ATinterface] = ACTIONS(1385), + [anon_sym_ATcompatibility_alias] = ACTIONS(1389), + [anon_sym_ATprotocol] = ACTIONS(1389), + [anon_sym_ATclass] = ACTIONS(1389), + [anon_sym_ATinterface] = ACTIONS(1389), [sym_class_interface_attribute_sepcifier] = ACTIONS(1387), [sym_method_attribute_specifier] = ACTIONS(1387), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1387), @@ -47338,7 +48072,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1387), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1387), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1387), - [anon_sym_ATimplementation] = ACTIONS(1385), + [anon_sym_ATimplementation] = ACTIONS(1389), + [anon_sym_NS_ENUM] = ACTIONS(1387), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1387), + [anon_sym_NS_OPTIONS] = ACTIONS(1387), [anon_sym_typeof] = ACTIONS(1387), [anon_sym___typeof] = ACTIONS(1387), [anon_sym___typeof__] = ACTIONS(1387), @@ -47352,183 +48089,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1387), [sym_BOOL] = ACTIONS(1387), [sym_auto] = ACTIONS(1387), - [anon_sym_ATautoreleasepool] = ACTIONS(1385), - [anon_sym_ATsynchronized] = ACTIONS(1385), - [anon_sym_ATtry] = ACTIONS(1385), - [anon_sym_ATcatch] = ACTIONS(1385), - [anon_sym_ATfinally] = ACTIONS(1385), - [anon_sym_ATthrow] = ACTIONS(1385), - [anon_sym_ATselector] = ACTIONS(1385), - [anon_sym_ATencode] = ACTIONS(1385), - [anon_sym_AT] = ACTIONS(1387), - [sym_YES] = ACTIONS(1387), - [sym_NO] = ACTIONS(1387), - [anon_sym___builtin_available] = ACTIONS(1387), - [anon_sym_ATavailable] = ACTIONS(1385), - [anon_sym_va_arg] = ACTIONS(1387), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [124] = { - [ts_builtin_sym_end] = ACTIONS(1389), - [sym_identifier] = ACTIONS(1391), - [aux_sym_preproc_include_token1] = ACTIONS(1389), - [aux_sym_preproc_def_token1] = ACTIONS(1389), - [anon_sym_RPAREN] = ACTIONS(1389), - [aux_sym_preproc_if_token1] = ACTIONS(1391), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1391), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1391), - [anon_sym_LPAREN2] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_typedef] = ACTIONS(1391), - [anon_sym_extern] = ACTIONS(1391), - [anon_sym___attribute] = ACTIONS(1391), - [anon_sym___attribute__] = ACTIONS(1391), - [anon_sym___declspec] = ACTIONS(1391), - [anon_sym___cdecl] = ACTIONS(1391), - [anon_sym___clrcall] = ACTIONS(1391), - [anon_sym___stdcall] = ACTIONS(1391), - [anon_sym___fastcall] = ACTIONS(1391), - [anon_sym___thiscall] = ACTIONS(1391), - [anon_sym___vectorcall] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_auto] = ACTIONS(1391), - [anon_sym_register] = ACTIONS(1391), - [anon_sym_inline] = ACTIONS(1391), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1391), - [anon_sym_const] = ACTIONS(1391), - [anon_sym_volatile] = ACTIONS(1391), - [anon_sym_restrict] = ACTIONS(1391), - [anon_sym__Atomic] = ACTIONS(1391), - [anon_sym_in] = ACTIONS(1391), - [anon_sym_out] = ACTIONS(1391), - [anon_sym_inout] = ACTIONS(1391), - [anon_sym_bycopy] = ACTIONS(1391), - [anon_sym_byref] = ACTIONS(1391), - [anon_sym_oneway] = ACTIONS(1391), - [anon_sym__Nullable] = ACTIONS(1391), - [anon_sym__Nonnull] = ACTIONS(1391), - [anon_sym__Nullable_result] = ACTIONS(1391), - [anon_sym__Null_unspecified] = ACTIONS(1391), - [anon_sym___autoreleasing] = ACTIONS(1391), - [anon_sym___nullable] = ACTIONS(1391), - [anon_sym___nonnull] = ACTIONS(1391), - [anon_sym___strong] = ACTIONS(1391), - [anon_sym___weak] = ACTIONS(1391), - [anon_sym___bridge] = ACTIONS(1391), - [anon_sym___bridge_transfer] = ACTIONS(1391), - [anon_sym___bridge_retained] = ACTIONS(1391), - [anon_sym___unsafe_unretained] = ACTIONS(1391), - [anon_sym___block] = ACTIONS(1391), - [anon_sym___kindof] = ACTIONS(1391), - [anon_sym___unused] = ACTIONS(1391), - [anon_sym__Complex] = ACTIONS(1391), - [anon_sym___complex] = ACTIONS(1391), - [anon_sym_IBOutlet] = ACTIONS(1391), - [anon_sym_IBInspectable] = ACTIONS(1391), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1391), - [anon_sym_signed] = ACTIONS(1391), - [anon_sym_unsigned] = ACTIONS(1391), - [anon_sym_long] = ACTIONS(1391), - [anon_sym_short] = ACTIONS(1391), - [sym_primitive_type] = ACTIONS(1391), - [anon_sym_enum] = ACTIONS(1391), - [anon_sym_NS_ENUM] = ACTIONS(1391), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1391), - [anon_sym_NS_OPTIONS] = ACTIONS(1391), - [anon_sym_struct] = ACTIONS(1391), - [anon_sym_union] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1391), - [anon_sym_else] = ACTIONS(1391), - [anon_sym_switch] = ACTIONS(1391), - [anon_sym_case] = ACTIONS(1391), - [anon_sym_default] = ACTIONS(1391), - [anon_sym_while] = ACTIONS(1391), - [anon_sym_do] = ACTIONS(1391), - [anon_sym_for] = ACTIONS(1391), - [anon_sym_return] = ACTIONS(1391), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_continue] = ACTIONS(1391), - [anon_sym_goto] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_sizeof] = ACTIONS(1391), - [sym_number_literal] = ACTIONS(1389), - [anon_sym_L_SQUOTE] = ACTIONS(1389), - [anon_sym_u_SQUOTE] = ACTIONS(1389), - [anon_sym_U_SQUOTE] = ACTIONS(1389), - [anon_sym_u8_SQUOTE] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_L_DQUOTE] = ACTIONS(1389), - [anon_sym_u_DQUOTE] = ACTIONS(1389), - [anon_sym_U_DQUOTE] = ACTIONS(1389), - [anon_sym_u8_DQUOTE] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym_true] = ACTIONS(1391), - [sym_false] = ACTIONS(1391), - [sym_null] = ACTIONS(1391), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1389), - [anon_sym_ATimport] = ACTIONS(1389), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1391), - [anon_sym_ATcompatibility_alias] = ACTIONS(1389), - [anon_sym_ATprotocol] = ACTIONS(1389), - [anon_sym_ATclass] = ACTIONS(1389), - [anon_sym_ATinterface] = ACTIONS(1389), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1391), - [sym_method_attribute_specifier] = ACTIONS(1391), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1391), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1391), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1391), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1391), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1391), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1391), - [anon_sym_NS_AVAILABLE] = ACTIONS(1391), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1391), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1391), - [anon_sym_API_AVAILABLE] = ACTIONS(1391), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1391), - [anon_sym_API_DEPRECATED] = ACTIONS(1391), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1391), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1391), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1391), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1391), - [anon_sym___deprecated_msg] = ACTIONS(1391), - [anon_sym___deprecated_enum_msg] = ACTIONS(1391), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1391), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1391), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1391), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1391), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1391), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1391), - [anon_sym_ATimplementation] = ACTIONS(1389), - [anon_sym_typeof] = ACTIONS(1391), - [anon_sym___typeof] = ACTIONS(1391), - [anon_sym___typeof__] = ACTIONS(1391), - [sym_self] = ACTIONS(1391), - [sym_super] = ACTIONS(1391), - [sym_nil] = ACTIONS(1391), - [sym_id] = ACTIONS(1391), - [sym_instancetype] = ACTIONS(1391), - [sym_Class] = ACTIONS(1391), - [sym_SEL] = ACTIONS(1391), - [sym_IMP] = ACTIONS(1391), - [sym_BOOL] = ACTIONS(1391), - [sym_auto] = ACTIONS(1391), [anon_sym_ATautoreleasepool] = ACTIONS(1389), [anon_sym_ATsynchronized] = ACTIONS(1389), [anon_sym_ATtry] = ACTIONS(1389), @@ -47537,189 +48097,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATthrow] = ACTIONS(1389), [anon_sym_ATselector] = ACTIONS(1389), [anon_sym_ATencode] = ACTIONS(1389), - [anon_sym_AT] = ACTIONS(1391), - [sym_YES] = ACTIONS(1391), - [sym_NO] = ACTIONS(1391), - [anon_sym___builtin_available] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1387), + [sym_YES] = ACTIONS(1387), + [sym_NO] = ACTIONS(1387), + [anon_sym___builtin_available] = ACTIONS(1387), [anon_sym_ATavailable] = ACTIONS(1389), - [anon_sym_va_arg] = ACTIONS(1391), + [anon_sym_va_arg] = ACTIONS(1387), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [125] = { - [ts_builtin_sym_end] = ACTIONS(1393), - [sym_identifier] = ACTIONS(1395), - [aux_sym_preproc_include_token1] = ACTIONS(1393), - [aux_sym_preproc_def_token1] = ACTIONS(1393), - [anon_sym_RPAREN] = ACTIONS(1393), - [aux_sym_preproc_if_token1] = ACTIONS(1395), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1395), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1395), - [anon_sym_LPAREN2] = ACTIONS(1393), - [anon_sym_BANG] = ACTIONS(1393), - [anon_sym_TILDE] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_CARET] = ACTIONS(1393), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_typedef] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym___attribute] = ACTIONS(1395), - [anon_sym___attribute__] = ACTIONS(1395), - [anon_sym___declspec] = ACTIONS(1395), - [anon_sym___cdecl] = ACTIONS(1395), - [anon_sym___clrcall] = ACTIONS(1395), - [anon_sym___stdcall] = ACTIONS(1395), - [anon_sym___fastcall] = ACTIONS(1395), - [anon_sym___thiscall] = ACTIONS(1395), - [anon_sym___vectorcall] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1395), - [anon_sym_auto] = ACTIONS(1395), - [anon_sym_register] = ACTIONS(1395), - [anon_sym_inline] = ACTIONS(1395), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_volatile] = ACTIONS(1395), - [anon_sym_restrict] = ACTIONS(1395), - [anon_sym__Atomic] = ACTIONS(1395), - [anon_sym_in] = ACTIONS(1395), - [anon_sym_out] = ACTIONS(1395), - [anon_sym_inout] = ACTIONS(1395), - [anon_sym_bycopy] = ACTIONS(1395), - [anon_sym_byref] = ACTIONS(1395), - [anon_sym_oneway] = ACTIONS(1395), - [anon_sym__Nullable] = ACTIONS(1395), - [anon_sym__Nonnull] = ACTIONS(1395), - [anon_sym__Nullable_result] = ACTIONS(1395), - [anon_sym__Null_unspecified] = ACTIONS(1395), - [anon_sym___autoreleasing] = ACTIONS(1395), - [anon_sym___nullable] = ACTIONS(1395), - [anon_sym___nonnull] = ACTIONS(1395), - [anon_sym___strong] = ACTIONS(1395), - [anon_sym___weak] = ACTIONS(1395), - [anon_sym___bridge] = ACTIONS(1395), - [anon_sym___bridge_transfer] = ACTIONS(1395), - [anon_sym___bridge_retained] = ACTIONS(1395), - [anon_sym___unsafe_unretained] = ACTIONS(1395), - [anon_sym___block] = ACTIONS(1395), - [anon_sym___kindof] = ACTIONS(1395), - [anon_sym___unused] = ACTIONS(1395), - [anon_sym__Complex] = ACTIONS(1395), - [anon_sym___complex] = ACTIONS(1395), - [anon_sym_IBOutlet] = ACTIONS(1395), - [anon_sym_IBInspectable] = ACTIONS(1395), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1395), - [anon_sym_signed] = ACTIONS(1395), - [anon_sym_unsigned] = ACTIONS(1395), - [anon_sym_long] = ACTIONS(1395), - [anon_sym_short] = ACTIONS(1395), - [sym_primitive_type] = ACTIONS(1395), - [anon_sym_enum] = ACTIONS(1395), - [anon_sym_NS_ENUM] = ACTIONS(1395), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1395), - [anon_sym_NS_OPTIONS] = ACTIONS(1395), - [anon_sym_struct] = ACTIONS(1395), - [anon_sym_union] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1395), - [anon_sym_case] = ACTIONS(1395), - [anon_sym_default] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_goto] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), - [sym_number_literal] = ACTIONS(1393), - [anon_sym_L_SQUOTE] = ACTIONS(1393), - [anon_sym_u_SQUOTE] = ACTIONS(1393), - [anon_sym_U_SQUOTE] = ACTIONS(1393), - [anon_sym_u8_SQUOTE] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1393), - [anon_sym_L_DQUOTE] = ACTIONS(1393), - [anon_sym_u_DQUOTE] = ACTIONS(1393), - [anon_sym_U_DQUOTE] = ACTIONS(1393), - [anon_sym_u8_DQUOTE] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1393), - [sym_true] = ACTIONS(1395), - [sym_false] = ACTIONS(1395), - [sym_null] = ACTIONS(1395), + [128] = { + [ts_builtin_sym_end] = ACTIONS(1391), + [sym_identifier] = ACTIONS(1393), + [aux_sym_preproc_include_token1] = ACTIONS(1391), + [aux_sym_preproc_def_token1] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [aux_sym_preproc_if_token1] = ACTIONS(1393), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1393), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1393), + [anon_sym_LPAREN2] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_typedef] = ACTIONS(1393), + [anon_sym_extern] = ACTIONS(1393), + [anon_sym___attribute] = ACTIONS(1393), + [anon_sym___attribute__] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(1393), + [anon_sym___cdecl] = ACTIONS(1393), + [anon_sym___clrcall] = ACTIONS(1393), + [anon_sym___stdcall] = ACTIONS(1393), + [anon_sym___fastcall] = ACTIONS(1393), + [anon_sym___thiscall] = ACTIONS(1393), + [anon_sym___vectorcall] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_auto] = ACTIONS(1393), + [anon_sym_register] = ACTIONS(1393), + [anon_sym_inline] = ACTIONS(1393), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_volatile] = ACTIONS(1393), + [anon_sym_restrict] = ACTIONS(1393), + [anon_sym__Atomic] = ACTIONS(1393), + [anon_sym_in] = ACTIONS(1393), + [anon_sym_out] = ACTIONS(1393), + [anon_sym_inout] = ACTIONS(1393), + [anon_sym_bycopy] = ACTIONS(1393), + [anon_sym_byref] = ACTIONS(1393), + [anon_sym_oneway] = ACTIONS(1393), + [anon_sym__Nullable] = ACTIONS(1393), + [anon_sym__Nonnull] = ACTIONS(1393), + [anon_sym__Nullable_result] = ACTIONS(1393), + [anon_sym__Null_unspecified] = ACTIONS(1393), + [anon_sym___autoreleasing] = ACTIONS(1393), + [anon_sym___nullable] = ACTIONS(1393), + [anon_sym___nonnull] = ACTIONS(1393), + [anon_sym___strong] = ACTIONS(1393), + [anon_sym___weak] = ACTIONS(1393), + [anon_sym___bridge] = ACTIONS(1393), + [anon_sym___bridge_transfer] = ACTIONS(1393), + [anon_sym___bridge_retained] = ACTIONS(1393), + [anon_sym___unsafe_unretained] = ACTIONS(1393), + [anon_sym___block] = ACTIONS(1393), + [anon_sym___kindof] = ACTIONS(1393), + [anon_sym___unused] = ACTIONS(1393), + [anon_sym__Complex] = ACTIONS(1393), + [anon_sym___complex] = ACTIONS(1393), + [anon_sym_IBOutlet] = ACTIONS(1393), + [anon_sym_IBInspectable] = ACTIONS(1393), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1393), + [anon_sym_signed] = ACTIONS(1393), + [anon_sym_unsigned] = ACTIONS(1393), + [anon_sym_long] = ACTIONS(1393), + [anon_sym_short] = ACTIONS(1393), + [sym_primitive_type] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_union] = ACTIONS(1393), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_else] = ACTIONS(1393), + [anon_sym_switch] = ACTIONS(1393), + [anon_sym_case] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_goto] = ACTIONS(1393), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_sizeof] = ACTIONS(1393), + [sym_number_literal] = ACTIONS(1391), + [anon_sym_L_SQUOTE] = ACTIONS(1391), + [anon_sym_u_SQUOTE] = ACTIONS(1391), + [anon_sym_U_SQUOTE] = ACTIONS(1391), + [anon_sym_u8_SQUOTE] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_L_DQUOTE] = ACTIONS(1391), + [anon_sym_u_DQUOTE] = ACTIONS(1391), + [anon_sym_U_DQUOTE] = ACTIONS(1391), + [anon_sym_u8_DQUOTE] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym_true] = ACTIONS(1393), + [sym_false] = ACTIONS(1393), + [sym_null] = ACTIONS(1393), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1393), - [anon_sym_ATimport] = ACTIONS(1393), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1395), - [anon_sym_ATcompatibility_alias] = ACTIONS(1393), - [anon_sym_ATprotocol] = ACTIONS(1393), - [anon_sym_ATclass] = ACTIONS(1393), - [anon_sym_ATinterface] = ACTIONS(1393), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1395), - [sym_method_attribute_specifier] = ACTIONS(1395), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1395), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1395), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1395), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1395), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1395), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1395), - [anon_sym_NS_AVAILABLE] = ACTIONS(1395), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1395), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1395), - [anon_sym_API_AVAILABLE] = ACTIONS(1395), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1395), - [anon_sym_API_DEPRECATED] = ACTIONS(1395), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1395), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1395), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1395), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1395), - [anon_sym___deprecated_msg] = ACTIONS(1395), - [anon_sym___deprecated_enum_msg] = ACTIONS(1395), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1395), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1395), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1395), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1395), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1395), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1395), - [anon_sym_ATimplementation] = ACTIONS(1393), - [anon_sym_typeof] = ACTIONS(1395), - [anon_sym___typeof] = ACTIONS(1395), - [anon_sym___typeof__] = ACTIONS(1395), - [sym_self] = ACTIONS(1395), - [sym_super] = ACTIONS(1395), - [sym_nil] = ACTIONS(1395), - [sym_id] = ACTIONS(1395), - [sym_instancetype] = ACTIONS(1395), - [sym_Class] = ACTIONS(1395), - [sym_SEL] = ACTIONS(1395), - [sym_IMP] = ACTIONS(1395), - [sym_BOOL] = ACTIONS(1395), - [sym_auto] = ACTIONS(1395), - [anon_sym_ATautoreleasepool] = ACTIONS(1393), - [anon_sym_ATsynchronized] = ACTIONS(1393), - [anon_sym_ATtry] = ACTIONS(1393), - [anon_sym_ATcatch] = ACTIONS(1393), - [anon_sym_ATfinally] = ACTIONS(1393), - [anon_sym_ATthrow] = ACTIONS(1393), - [anon_sym_ATselector] = ACTIONS(1393), - [anon_sym_ATencode] = ACTIONS(1393), - [anon_sym_AT] = ACTIONS(1395), - [sym_YES] = ACTIONS(1395), - [sym_NO] = ACTIONS(1395), - [anon_sym___builtin_available] = ACTIONS(1395), - [anon_sym_ATavailable] = ACTIONS(1393), - [anon_sym_va_arg] = ACTIONS(1395), + [anon_sym_POUNDimport] = ACTIONS(1391), + [anon_sym_ATimport] = ACTIONS(1391), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1393), + [anon_sym_ATcompatibility_alias] = ACTIONS(1391), + [anon_sym_ATprotocol] = ACTIONS(1391), + [anon_sym_ATclass] = ACTIONS(1391), + [anon_sym_ATinterface] = ACTIONS(1391), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1393), + [sym_method_attribute_specifier] = ACTIONS(1393), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1393), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1393), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1393), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1393), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1393), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1393), + [anon_sym_NS_AVAILABLE] = ACTIONS(1393), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1393), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1393), + [anon_sym_API_AVAILABLE] = ACTIONS(1393), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1393), + [anon_sym_API_DEPRECATED] = ACTIONS(1393), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1393), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1393), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1393), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1393), + [anon_sym___deprecated_msg] = ACTIONS(1393), + [anon_sym___deprecated_enum_msg] = ACTIONS(1393), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1393), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1393), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1393), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1393), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1393), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1393), + [anon_sym_ATimplementation] = ACTIONS(1391), + [anon_sym_NS_ENUM] = ACTIONS(1393), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1393), + [anon_sym_NS_OPTIONS] = ACTIONS(1393), + [anon_sym_typeof] = ACTIONS(1393), + [anon_sym___typeof] = ACTIONS(1393), + [anon_sym___typeof__] = ACTIONS(1393), + [sym_self] = ACTIONS(1393), + [sym_super] = ACTIONS(1393), + [sym_nil] = ACTIONS(1393), + [sym_id] = ACTIONS(1393), + [sym_instancetype] = ACTIONS(1393), + [sym_Class] = ACTIONS(1393), + [sym_SEL] = ACTIONS(1393), + [sym_IMP] = ACTIONS(1393), + [sym_BOOL] = ACTIONS(1393), + [sym_auto] = ACTIONS(1393), + [anon_sym_ATautoreleasepool] = ACTIONS(1391), + [anon_sym_ATsynchronized] = ACTIONS(1391), + [anon_sym_ATtry] = ACTIONS(1391), + [anon_sym_ATcatch] = ACTIONS(1391), + [anon_sym_ATfinally] = ACTIONS(1391), + [anon_sym_ATthrow] = ACTIONS(1391), + [anon_sym_ATselector] = ACTIONS(1391), + [anon_sym_ATencode] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [sym_YES] = ACTIONS(1393), + [sym_NO] = ACTIONS(1393), + [anon_sym___builtin_available] = ACTIONS(1393), + [anon_sym_ATavailable] = ACTIONS(1391), + [anon_sym_va_arg] = ACTIONS(1393), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -47727,176 +48287,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [126] = { - [ts_builtin_sym_end] = ACTIONS(1397), - [sym_identifier] = ACTIONS(1399), - [aux_sym_preproc_include_token1] = ACTIONS(1397), - [aux_sym_preproc_def_token1] = ACTIONS(1397), - [anon_sym_RPAREN] = ACTIONS(1397), - [aux_sym_preproc_if_token1] = ACTIONS(1399), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1399), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1399), - [anon_sym_LPAREN2] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_typedef] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1399), - [anon_sym___attribute] = ACTIONS(1399), - [anon_sym___attribute__] = ACTIONS(1399), - [anon_sym___declspec] = ACTIONS(1399), - [anon_sym___cdecl] = ACTIONS(1399), - [anon_sym___clrcall] = ACTIONS(1399), - [anon_sym___stdcall] = ACTIONS(1399), - [anon_sym___fastcall] = ACTIONS(1399), - [anon_sym___thiscall] = ACTIONS(1399), - [anon_sym___vectorcall] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1399), - [anon_sym_auto] = ACTIONS(1399), - [anon_sym_register] = ACTIONS(1399), - [anon_sym_inline] = ACTIONS(1399), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_volatile] = ACTIONS(1399), - [anon_sym_restrict] = ACTIONS(1399), - [anon_sym__Atomic] = ACTIONS(1399), - [anon_sym_in] = ACTIONS(1399), - [anon_sym_out] = ACTIONS(1399), - [anon_sym_inout] = ACTIONS(1399), - [anon_sym_bycopy] = ACTIONS(1399), - [anon_sym_byref] = ACTIONS(1399), - [anon_sym_oneway] = ACTIONS(1399), - [anon_sym__Nullable] = ACTIONS(1399), - [anon_sym__Nonnull] = ACTIONS(1399), - [anon_sym__Nullable_result] = ACTIONS(1399), - [anon_sym__Null_unspecified] = ACTIONS(1399), - [anon_sym___autoreleasing] = ACTIONS(1399), - [anon_sym___nullable] = ACTIONS(1399), - [anon_sym___nonnull] = ACTIONS(1399), - [anon_sym___strong] = ACTIONS(1399), - [anon_sym___weak] = ACTIONS(1399), - [anon_sym___bridge] = ACTIONS(1399), - [anon_sym___bridge_transfer] = ACTIONS(1399), - [anon_sym___bridge_retained] = ACTIONS(1399), - [anon_sym___unsafe_unretained] = ACTIONS(1399), - [anon_sym___block] = ACTIONS(1399), - [anon_sym___kindof] = ACTIONS(1399), - [anon_sym___unused] = ACTIONS(1399), - [anon_sym__Complex] = ACTIONS(1399), - [anon_sym___complex] = ACTIONS(1399), - [anon_sym_IBOutlet] = ACTIONS(1399), - [anon_sym_IBInspectable] = ACTIONS(1399), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1399), - [anon_sym_signed] = ACTIONS(1399), - [anon_sym_unsigned] = ACTIONS(1399), - [anon_sym_long] = ACTIONS(1399), - [anon_sym_short] = ACTIONS(1399), - [sym_primitive_type] = ACTIONS(1399), - [anon_sym_enum] = ACTIONS(1399), - [anon_sym_NS_ENUM] = ACTIONS(1399), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1399), - [anon_sym_NS_OPTIONS] = ACTIONS(1399), - [anon_sym_struct] = ACTIONS(1399), - [anon_sym_union] = ACTIONS(1399), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_else] = ACTIONS(1399), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_goto] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_sizeof] = ACTIONS(1399), - [sym_number_literal] = ACTIONS(1397), - [anon_sym_L_SQUOTE] = ACTIONS(1397), - [anon_sym_u_SQUOTE] = ACTIONS(1397), - [anon_sym_U_SQUOTE] = ACTIONS(1397), - [anon_sym_u8_SQUOTE] = ACTIONS(1397), - [anon_sym_SQUOTE] = ACTIONS(1397), - [anon_sym_L_DQUOTE] = ACTIONS(1397), - [anon_sym_u_DQUOTE] = ACTIONS(1397), - [anon_sym_U_DQUOTE] = ACTIONS(1397), - [anon_sym_u8_DQUOTE] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [sym_true] = ACTIONS(1399), - [sym_false] = ACTIONS(1399), - [sym_null] = ACTIONS(1399), + [129] = { + [ts_builtin_sym_end] = ACTIONS(1395), + [sym_identifier] = ACTIONS(1397), + [aux_sym_preproc_include_token1] = ACTIONS(1395), + [aux_sym_preproc_def_token1] = ACTIONS(1395), + [anon_sym_RPAREN] = ACTIONS(1395), + [aux_sym_preproc_if_token1] = ACTIONS(1397), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1397), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1397), + [anon_sym_LPAREN2] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_CARET] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_typedef] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1397), + [anon_sym___attribute] = ACTIONS(1397), + [anon_sym___attribute__] = ACTIONS(1397), + [anon_sym___declspec] = ACTIONS(1397), + [anon_sym___cdecl] = ACTIONS(1397), + [anon_sym___clrcall] = ACTIONS(1397), + [anon_sym___stdcall] = ACTIONS(1397), + [anon_sym___fastcall] = ACTIONS(1397), + [anon_sym___thiscall] = ACTIONS(1397), + [anon_sym___vectorcall] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_RBRACE] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_auto] = ACTIONS(1397), + [anon_sym_register] = ACTIONS(1397), + [anon_sym_inline] = ACTIONS(1397), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_volatile] = ACTIONS(1397), + [anon_sym_restrict] = ACTIONS(1397), + [anon_sym__Atomic] = ACTIONS(1397), + [anon_sym_in] = ACTIONS(1397), + [anon_sym_out] = ACTIONS(1397), + [anon_sym_inout] = ACTIONS(1397), + [anon_sym_bycopy] = ACTIONS(1397), + [anon_sym_byref] = ACTIONS(1397), + [anon_sym_oneway] = ACTIONS(1397), + [anon_sym__Nullable] = ACTIONS(1397), + [anon_sym__Nonnull] = ACTIONS(1397), + [anon_sym__Nullable_result] = ACTIONS(1397), + [anon_sym__Null_unspecified] = ACTIONS(1397), + [anon_sym___autoreleasing] = ACTIONS(1397), + [anon_sym___nullable] = ACTIONS(1397), + [anon_sym___nonnull] = ACTIONS(1397), + [anon_sym___strong] = ACTIONS(1397), + [anon_sym___weak] = ACTIONS(1397), + [anon_sym___bridge] = ACTIONS(1397), + [anon_sym___bridge_transfer] = ACTIONS(1397), + [anon_sym___bridge_retained] = ACTIONS(1397), + [anon_sym___unsafe_unretained] = ACTIONS(1397), + [anon_sym___block] = ACTIONS(1397), + [anon_sym___kindof] = ACTIONS(1397), + [anon_sym___unused] = ACTIONS(1397), + [anon_sym__Complex] = ACTIONS(1397), + [anon_sym___complex] = ACTIONS(1397), + [anon_sym_IBOutlet] = ACTIONS(1397), + [anon_sym_IBInspectable] = ACTIONS(1397), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1397), + [anon_sym_signed] = ACTIONS(1397), + [anon_sym_unsigned] = ACTIONS(1397), + [anon_sym_long] = ACTIONS(1397), + [anon_sym_short] = ACTIONS(1397), + [sym_primitive_type] = ACTIONS(1397), + [anon_sym_enum] = ACTIONS(1397), + [anon_sym_struct] = ACTIONS(1397), + [anon_sym_union] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1397), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_case] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_goto] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_sizeof] = ACTIONS(1397), + [sym_number_literal] = ACTIONS(1395), + [anon_sym_L_SQUOTE] = ACTIONS(1395), + [anon_sym_u_SQUOTE] = ACTIONS(1395), + [anon_sym_U_SQUOTE] = ACTIONS(1395), + [anon_sym_u8_SQUOTE] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_L_DQUOTE] = ACTIONS(1395), + [anon_sym_u_DQUOTE] = ACTIONS(1395), + [anon_sym_U_DQUOTE] = ACTIONS(1395), + [anon_sym_u8_DQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1395), + [sym_true] = ACTIONS(1397), + [sym_false] = ACTIONS(1397), + [sym_null] = ACTIONS(1397), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1397), - [anon_sym_ATimport] = ACTIONS(1397), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1399), - [anon_sym_ATcompatibility_alias] = ACTIONS(1397), - [anon_sym_ATprotocol] = ACTIONS(1397), - [anon_sym_ATclass] = ACTIONS(1397), - [anon_sym_ATinterface] = ACTIONS(1397), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1399), - [sym_method_attribute_specifier] = ACTIONS(1399), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1399), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1399), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1399), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1399), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1399), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1399), - [anon_sym_NS_AVAILABLE] = ACTIONS(1399), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1399), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1399), - [anon_sym_API_AVAILABLE] = ACTIONS(1399), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1399), - [anon_sym_API_DEPRECATED] = ACTIONS(1399), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1399), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1399), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1399), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1399), - [anon_sym___deprecated_msg] = ACTIONS(1399), - [anon_sym___deprecated_enum_msg] = ACTIONS(1399), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1399), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1399), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1399), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1399), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1399), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1399), - [anon_sym_ATimplementation] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1399), - [anon_sym___typeof] = ACTIONS(1399), - [anon_sym___typeof__] = ACTIONS(1399), - [sym_self] = ACTIONS(1399), - [sym_super] = ACTIONS(1399), - [sym_nil] = ACTIONS(1399), - [sym_id] = ACTIONS(1399), - [sym_instancetype] = ACTIONS(1399), - [sym_Class] = ACTIONS(1399), - [sym_SEL] = ACTIONS(1399), - [sym_IMP] = ACTIONS(1399), - [sym_BOOL] = ACTIONS(1399), - [sym_auto] = ACTIONS(1399), - [anon_sym_ATautoreleasepool] = ACTIONS(1397), - [anon_sym_ATsynchronized] = ACTIONS(1397), - [anon_sym_ATtry] = ACTIONS(1397), - [anon_sym_ATcatch] = ACTIONS(1397), - [anon_sym_ATfinally] = ACTIONS(1397), - [anon_sym_ATthrow] = ACTIONS(1397), - [anon_sym_ATselector] = ACTIONS(1397), - [anon_sym_ATencode] = ACTIONS(1397), - [anon_sym_AT] = ACTIONS(1399), - [sym_YES] = ACTIONS(1399), - [sym_NO] = ACTIONS(1399), - [anon_sym___builtin_available] = ACTIONS(1399), - [anon_sym_ATavailable] = ACTIONS(1397), - [anon_sym_va_arg] = ACTIONS(1399), + [anon_sym_POUNDimport] = ACTIONS(1395), + [anon_sym_ATimport] = ACTIONS(1395), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1397), + [anon_sym_ATcompatibility_alias] = ACTIONS(1395), + [anon_sym_ATprotocol] = ACTIONS(1395), + [anon_sym_ATclass] = ACTIONS(1395), + [anon_sym_ATinterface] = ACTIONS(1395), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1397), + [sym_method_attribute_specifier] = ACTIONS(1397), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1397), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1397), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1397), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1397), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1397), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1397), + [anon_sym_NS_AVAILABLE] = ACTIONS(1397), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1397), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1397), + [anon_sym_API_AVAILABLE] = ACTIONS(1397), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1397), + [anon_sym_API_DEPRECATED] = ACTIONS(1397), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1397), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1397), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1397), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1397), + [anon_sym___deprecated_msg] = ACTIONS(1397), + [anon_sym___deprecated_enum_msg] = ACTIONS(1397), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1397), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1397), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1397), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1397), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1397), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1397), + [anon_sym_ATimplementation] = ACTIONS(1395), + [anon_sym_NS_ENUM] = ACTIONS(1397), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1397), + [anon_sym_NS_OPTIONS] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1397), + [anon_sym___typeof] = ACTIONS(1397), + [anon_sym___typeof__] = ACTIONS(1397), + [sym_self] = ACTIONS(1397), + [sym_super] = ACTIONS(1397), + [sym_nil] = ACTIONS(1397), + [sym_id] = ACTIONS(1397), + [sym_instancetype] = ACTIONS(1397), + [sym_Class] = ACTIONS(1397), + [sym_SEL] = ACTIONS(1397), + [sym_IMP] = ACTIONS(1397), + [sym_BOOL] = ACTIONS(1397), + [sym_auto] = ACTIONS(1397), + [anon_sym_ATautoreleasepool] = ACTIONS(1395), + [anon_sym_ATsynchronized] = ACTIONS(1395), + [anon_sym_ATtry] = ACTIONS(1395), + [anon_sym_ATcatch] = ACTIONS(1395), + [anon_sym_ATfinally] = ACTIONS(1395), + [anon_sym_ATthrow] = ACTIONS(1395), + [anon_sym_ATselector] = ACTIONS(1395), + [anon_sym_ATencode] = ACTIONS(1395), + [anon_sym_AT] = ACTIONS(1397), + [sym_YES] = ACTIONS(1397), + [sym_NO] = ACTIONS(1397), + [anon_sym___builtin_available] = ACTIONS(1397), + [anon_sym_ATavailable] = ACTIONS(1395), + [anon_sym_va_arg] = ACTIONS(1397), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -47904,24 +48464,1087 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [127] = { - [ts_builtin_sym_end] = ACTIONS(1401), + [130] = { + [ts_builtin_sym_end] = ACTIONS(1197), + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym_in] = ACTIONS(1195), + [anon_sym_out] = ACTIONS(1195), + [anon_sym_inout] = ACTIONS(1195), + [anon_sym_bycopy] = ACTIONS(1195), + [anon_sym_byref] = ACTIONS(1195), + [anon_sym_oneway] = ACTIONS(1195), + [anon_sym__Nullable] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym__Nullable_result] = ACTIONS(1195), + [anon_sym__Null_unspecified] = ACTIONS(1195), + [anon_sym___autoreleasing] = ACTIONS(1195), + [anon_sym___nullable] = ACTIONS(1195), + [anon_sym___nonnull] = ACTIONS(1195), + [anon_sym___strong] = ACTIONS(1195), + [anon_sym___weak] = ACTIONS(1195), + [anon_sym___bridge] = ACTIONS(1195), + [anon_sym___bridge_transfer] = ACTIONS(1195), + [anon_sym___bridge_retained] = ACTIONS(1195), + [anon_sym___unsafe_unretained] = ACTIONS(1195), + [anon_sym___block] = ACTIONS(1195), + [anon_sym___kindof] = ACTIONS(1195), + [anon_sym___unused] = ACTIONS(1195), + [anon_sym__Complex] = ACTIONS(1195), + [anon_sym___complex] = ACTIONS(1195), + [anon_sym_IBOutlet] = ACTIONS(1195), + [anon_sym_IBInspectable] = ACTIONS(1195), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [sym_null] = ACTIONS(1195), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1197), + [anon_sym_ATimport] = ACTIONS(1197), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1195), + [anon_sym_ATcompatibility_alias] = ACTIONS(1197), + [anon_sym_ATprotocol] = ACTIONS(1197), + [anon_sym_ATclass] = ACTIONS(1197), + [anon_sym_ATinterface] = ACTIONS(1197), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1195), + [sym_method_attribute_specifier] = ACTIONS(1195), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1195), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE] = ACTIONS(1195), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_API_AVAILABLE] = ACTIONS(1195), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_API_DEPRECATED] = ACTIONS(1195), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1195), + [anon_sym___deprecated_msg] = ACTIONS(1195), + [anon_sym___deprecated_enum_msg] = ACTIONS(1195), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1195), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1195), + [anon_sym_ATimplementation] = ACTIONS(1197), + [anon_sym_NS_ENUM] = ACTIONS(1195), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1195), + [anon_sym_NS_OPTIONS] = ACTIONS(1195), + [anon_sym_typeof] = ACTIONS(1195), + [anon_sym___typeof] = ACTIONS(1195), + [anon_sym___typeof__] = ACTIONS(1195), + [sym_self] = ACTIONS(1195), + [sym_super] = ACTIONS(1195), + [sym_nil] = ACTIONS(1195), + [sym_id] = ACTIONS(1195), + [sym_instancetype] = ACTIONS(1195), + [sym_Class] = ACTIONS(1195), + [sym_SEL] = ACTIONS(1195), + [sym_IMP] = ACTIONS(1195), + [sym_BOOL] = ACTIONS(1195), + [sym_auto] = ACTIONS(1195), + [anon_sym_ATautoreleasepool] = ACTIONS(1197), + [anon_sym_ATsynchronized] = ACTIONS(1197), + [anon_sym_ATtry] = ACTIONS(1197), + [anon_sym_ATcatch] = ACTIONS(1197), + [anon_sym_ATfinally] = ACTIONS(1197), + [anon_sym_ATthrow] = ACTIONS(1197), + [anon_sym_ATselector] = ACTIONS(1197), + [anon_sym_ATencode] = ACTIONS(1197), + [anon_sym_AT] = ACTIONS(1195), + [sym_YES] = ACTIONS(1195), + [sym_NO] = ACTIONS(1195), + [anon_sym___builtin_available] = ACTIONS(1195), + [anon_sym_ATavailable] = ACTIONS(1197), + [anon_sym_va_arg] = ACTIONS(1195), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [131] = { + [ts_builtin_sym_end] = ACTIONS(1197), + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym_in] = ACTIONS(1195), + [anon_sym_out] = ACTIONS(1195), + [anon_sym_inout] = ACTIONS(1195), + [anon_sym_bycopy] = ACTIONS(1195), + [anon_sym_byref] = ACTIONS(1195), + [anon_sym_oneway] = ACTIONS(1195), + [anon_sym__Nullable] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym__Nullable_result] = ACTIONS(1195), + [anon_sym__Null_unspecified] = ACTIONS(1195), + [anon_sym___autoreleasing] = ACTIONS(1195), + [anon_sym___nullable] = ACTIONS(1195), + [anon_sym___nonnull] = ACTIONS(1195), + [anon_sym___strong] = ACTIONS(1195), + [anon_sym___weak] = ACTIONS(1195), + [anon_sym___bridge] = ACTIONS(1195), + [anon_sym___bridge_transfer] = ACTIONS(1195), + [anon_sym___bridge_retained] = ACTIONS(1195), + [anon_sym___unsafe_unretained] = ACTIONS(1195), + [anon_sym___block] = ACTIONS(1195), + [anon_sym___kindof] = ACTIONS(1195), + [anon_sym___unused] = ACTIONS(1195), + [anon_sym__Complex] = ACTIONS(1195), + [anon_sym___complex] = ACTIONS(1195), + [anon_sym_IBOutlet] = ACTIONS(1195), + [anon_sym_IBInspectable] = ACTIONS(1195), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [sym_null] = ACTIONS(1195), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1197), + [anon_sym_ATimport] = ACTIONS(1197), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1195), + [anon_sym_ATcompatibility_alias] = ACTIONS(1197), + [anon_sym_ATprotocol] = ACTIONS(1197), + [anon_sym_ATclass] = ACTIONS(1197), + [anon_sym_ATinterface] = ACTIONS(1197), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1195), + [sym_method_attribute_specifier] = ACTIONS(1195), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1195), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE] = ACTIONS(1195), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_API_AVAILABLE] = ACTIONS(1195), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_API_DEPRECATED] = ACTIONS(1195), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1195), + [anon_sym___deprecated_msg] = ACTIONS(1195), + [anon_sym___deprecated_enum_msg] = ACTIONS(1195), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1195), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1195), + [anon_sym_ATimplementation] = ACTIONS(1197), + [anon_sym_NS_ENUM] = ACTIONS(1195), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1195), + [anon_sym_NS_OPTIONS] = ACTIONS(1195), + [anon_sym_typeof] = ACTIONS(1195), + [anon_sym___typeof] = ACTIONS(1195), + [anon_sym___typeof__] = ACTIONS(1195), + [sym_self] = ACTIONS(1195), + [sym_super] = ACTIONS(1195), + [sym_nil] = ACTIONS(1195), + [sym_id] = ACTIONS(1195), + [sym_instancetype] = ACTIONS(1195), + [sym_Class] = ACTIONS(1195), + [sym_SEL] = ACTIONS(1195), + [sym_IMP] = ACTIONS(1195), + [sym_BOOL] = ACTIONS(1195), + [sym_auto] = ACTIONS(1195), + [anon_sym_ATautoreleasepool] = ACTIONS(1197), + [anon_sym_ATsynchronized] = ACTIONS(1197), + [anon_sym_ATtry] = ACTIONS(1197), + [anon_sym_ATcatch] = ACTIONS(1197), + [anon_sym_ATfinally] = ACTIONS(1197), + [anon_sym_ATthrow] = ACTIONS(1197), + [anon_sym_ATselector] = ACTIONS(1197), + [anon_sym_ATencode] = ACTIONS(1197), + [anon_sym_AT] = ACTIONS(1195), + [sym_YES] = ACTIONS(1195), + [sym_NO] = ACTIONS(1195), + [anon_sym___builtin_available] = ACTIONS(1195), + [anon_sym_ATavailable] = ACTIONS(1197), + [anon_sym_va_arg] = ACTIONS(1195), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [132] = { + [ts_builtin_sym_end] = ACTIONS(1399), + [sym_identifier] = ACTIONS(1401), + [aux_sym_preproc_include_token1] = ACTIONS(1399), + [aux_sym_preproc_def_token1] = ACTIONS(1399), + [anon_sym_RPAREN] = ACTIONS(1399), + [aux_sym_preproc_if_token1] = ACTIONS(1401), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1401), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1401), + [anon_sym_LPAREN2] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_typedef] = ACTIONS(1401), + [anon_sym_extern] = ACTIONS(1401), + [anon_sym___attribute] = ACTIONS(1401), + [anon_sym___attribute__] = ACTIONS(1401), + [anon_sym___declspec] = ACTIONS(1401), + [anon_sym___cdecl] = ACTIONS(1401), + [anon_sym___clrcall] = ACTIONS(1401), + [anon_sym___stdcall] = ACTIONS(1401), + [anon_sym___fastcall] = ACTIONS(1401), + [anon_sym___thiscall] = ACTIONS(1401), + [anon_sym___vectorcall] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1399), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_auto] = ACTIONS(1401), + [anon_sym_register] = ACTIONS(1401), + [anon_sym_inline] = ACTIONS(1401), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_volatile] = ACTIONS(1401), + [anon_sym_restrict] = ACTIONS(1401), + [anon_sym__Atomic] = ACTIONS(1401), + [anon_sym_in] = ACTIONS(1401), + [anon_sym_out] = ACTIONS(1401), + [anon_sym_inout] = ACTIONS(1401), + [anon_sym_bycopy] = ACTIONS(1401), + [anon_sym_byref] = ACTIONS(1401), + [anon_sym_oneway] = ACTIONS(1401), + [anon_sym__Nullable] = ACTIONS(1401), + [anon_sym__Nonnull] = ACTIONS(1401), + [anon_sym__Nullable_result] = ACTIONS(1401), + [anon_sym__Null_unspecified] = ACTIONS(1401), + [anon_sym___autoreleasing] = ACTIONS(1401), + [anon_sym___nullable] = ACTIONS(1401), + [anon_sym___nonnull] = ACTIONS(1401), + [anon_sym___strong] = ACTIONS(1401), + [anon_sym___weak] = ACTIONS(1401), + [anon_sym___bridge] = ACTIONS(1401), + [anon_sym___bridge_transfer] = ACTIONS(1401), + [anon_sym___bridge_retained] = ACTIONS(1401), + [anon_sym___unsafe_unretained] = ACTIONS(1401), + [anon_sym___block] = ACTIONS(1401), + [anon_sym___kindof] = ACTIONS(1401), + [anon_sym___unused] = ACTIONS(1401), + [anon_sym__Complex] = ACTIONS(1401), + [anon_sym___complex] = ACTIONS(1401), + [anon_sym_IBOutlet] = ACTIONS(1401), + [anon_sym_IBInspectable] = ACTIONS(1401), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1401), + [anon_sym_signed] = ACTIONS(1401), + [anon_sym_unsigned] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [sym_primitive_type] = ACTIONS(1401), + [anon_sym_enum] = ACTIONS(1401), + [anon_sym_struct] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_else] = ACTIONS(1401), + [anon_sym_switch] = ACTIONS(1401), + [anon_sym_case] = ACTIONS(1401), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_do] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_goto] = ACTIONS(1401), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_sizeof] = ACTIONS(1401), + [sym_number_literal] = ACTIONS(1399), + [anon_sym_L_SQUOTE] = ACTIONS(1399), + [anon_sym_u_SQUOTE] = ACTIONS(1399), + [anon_sym_U_SQUOTE] = ACTIONS(1399), + [anon_sym_u8_SQUOTE] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_L_DQUOTE] = ACTIONS(1399), + [anon_sym_u_DQUOTE] = ACTIONS(1399), + [anon_sym_U_DQUOTE] = ACTIONS(1399), + [anon_sym_u8_DQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [sym_true] = ACTIONS(1401), + [sym_false] = ACTIONS(1401), + [sym_null] = ACTIONS(1401), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1399), + [anon_sym_ATimport] = ACTIONS(1399), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1401), + [anon_sym_ATcompatibility_alias] = ACTIONS(1399), + [anon_sym_ATprotocol] = ACTIONS(1399), + [anon_sym_ATclass] = ACTIONS(1399), + [anon_sym_ATinterface] = ACTIONS(1399), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1401), + [sym_method_attribute_specifier] = ACTIONS(1401), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1401), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1401), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1401), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1401), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1401), + [anon_sym_NS_AVAILABLE] = ACTIONS(1401), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1401), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_API_AVAILABLE] = ACTIONS(1401), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_API_DEPRECATED] = ACTIONS(1401), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1401), + [anon_sym___deprecated_msg] = ACTIONS(1401), + [anon_sym___deprecated_enum_msg] = ACTIONS(1401), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1401), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1401), + [anon_sym_ATimplementation] = ACTIONS(1399), + [anon_sym_NS_ENUM] = ACTIONS(1401), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1401), + [anon_sym_NS_OPTIONS] = ACTIONS(1401), + [anon_sym_typeof] = ACTIONS(1401), + [anon_sym___typeof] = ACTIONS(1401), + [anon_sym___typeof__] = ACTIONS(1401), + [sym_self] = ACTIONS(1401), + [sym_super] = ACTIONS(1401), + [sym_nil] = ACTIONS(1401), + [sym_id] = ACTIONS(1401), + [sym_instancetype] = ACTIONS(1401), + [sym_Class] = ACTIONS(1401), + [sym_SEL] = ACTIONS(1401), + [sym_IMP] = ACTIONS(1401), + [sym_BOOL] = ACTIONS(1401), + [sym_auto] = ACTIONS(1401), + [anon_sym_ATautoreleasepool] = ACTIONS(1399), + [anon_sym_ATsynchronized] = ACTIONS(1399), + [anon_sym_ATtry] = ACTIONS(1399), + [anon_sym_ATcatch] = ACTIONS(1399), + [anon_sym_ATfinally] = ACTIONS(1399), + [anon_sym_ATthrow] = ACTIONS(1399), + [anon_sym_ATselector] = ACTIONS(1399), + [anon_sym_ATencode] = ACTIONS(1399), + [anon_sym_AT] = ACTIONS(1401), + [sym_YES] = ACTIONS(1401), + [sym_NO] = ACTIONS(1401), + [anon_sym___builtin_available] = ACTIONS(1401), + [anon_sym_ATavailable] = ACTIONS(1399), + [anon_sym_va_arg] = ACTIONS(1401), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [133] = { + [ts_builtin_sym_end] = ACTIONS(1197), + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym_in] = ACTIONS(1195), + [anon_sym_out] = ACTIONS(1195), + [anon_sym_inout] = ACTIONS(1195), + [anon_sym_bycopy] = ACTIONS(1195), + [anon_sym_byref] = ACTIONS(1195), + [anon_sym_oneway] = ACTIONS(1195), + [anon_sym__Nullable] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym__Nullable_result] = ACTIONS(1195), + [anon_sym__Null_unspecified] = ACTIONS(1195), + [anon_sym___autoreleasing] = ACTIONS(1195), + [anon_sym___nullable] = ACTIONS(1195), + [anon_sym___nonnull] = ACTIONS(1195), + [anon_sym___strong] = ACTIONS(1195), + [anon_sym___weak] = ACTIONS(1195), + [anon_sym___bridge] = ACTIONS(1195), + [anon_sym___bridge_transfer] = ACTIONS(1195), + [anon_sym___bridge_retained] = ACTIONS(1195), + [anon_sym___unsafe_unretained] = ACTIONS(1195), + [anon_sym___block] = ACTIONS(1195), + [anon_sym___kindof] = ACTIONS(1195), + [anon_sym___unused] = ACTIONS(1195), + [anon_sym__Complex] = ACTIONS(1195), + [anon_sym___complex] = ACTIONS(1195), + [anon_sym_IBOutlet] = ACTIONS(1195), + [anon_sym_IBInspectable] = ACTIONS(1195), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [sym_null] = ACTIONS(1195), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1197), + [anon_sym_ATimport] = ACTIONS(1197), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1195), + [anon_sym_ATcompatibility_alias] = ACTIONS(1197), + [anon_sym_ATprotocol] = ACTIONS(1197), + [anon_sym_ATclass] = ACTIONS(1197), + [anon_sym_ATinterface] = ACTIONS(1197), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1195), + [sym_method_attribute_specifier] = ACTIONS(1195), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1195), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE] = ACTIONS(1195), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_API_AVAILABLE] = ACTIONS(1195), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_API_DEPRECATED] = ACTIONS(1195), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1195), + [anon_sym___deprecated_msg] = ACTIONS(1195), + [anon_sym___deprecated_enum_msg] = ACTIONS(1195), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1195), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1195), + [anon_sym_ATimplementation] = ACTIONS(1197), + [anon_sym_NS_ENUM] = ACTIONS(1195), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1195), + [anon_sym_NS_OPTIONS] = ACTIONS(1195), + [anon_sym_typeof] = ACTIONS(1195), + [anon_sym___typeof] = ACTIONS(1195), + [anon_sym___typeof__] = ACTIONS(1195), + [sym_self] = ACTIONS(1195), + [sym_super] = ACTIONS(1195), + [sym_nil] = ACTIONS(1195), + [sym_id] = ACTIONS(1195), + [sym_instancetype] = ACTIONS(1195), + [sym_Class] = ACTIONS(1195), + [sym_SEL] = ACTIONS(1195), + [sym_IMP] = ACTIONS(1195), + [sym_BOOL] = ACTIONS(1195), + [sym_auto] = ACTIONS(1195), + [anon_sym_ATautoreleasepool] = ACTIONS(1197), + [anon_sym_ATsynchronized] = ACTIONS(1197), + [anon_sym_ATtry] = ACTIONS(1197), + [anon_sym_ATcatch] = ACTIONS(1197), + [anon_sym_ATfinally] = ACTIONS(1197), + [anon_sym_ATthrow] = ACTIONS(1197), + [anon_sym_ATselector] = ACTIONS(1197), + [anon_sym_ATencode] = ACTIONS(1197), + [anon_sym_AT] = ACTIONS(1195), + [sym_YES] = ACTIONS(1195), + [sym_NO] = ACTIONS(1195), + [anon_sym___builtin_available] = ACTIONS(1195), + [anon_sym_ATavailable] = ACTIONS(1197), + [anon_sym_va_arg] = ACTIONS(1195), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [134] = { + [ts_builtin_sym_end] = ACTIONS(1197), + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym_in] = ACTIONS(1195), + [anon_sym_out] = ACTIONS(1195), + [anon_sym_inout] = ACTIONS(1195), + [anon_sym_bycopy] = ACTIONS(1195), + [anon_sym_byref] = ACTIONS(1195), + [anon_sym_oneway] = ACTIONS(1195), + [anon_sym__Nullable] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym__Nullable_result] = ACTIONS(1195), + [anon_sym__Null_unspecified] = ACTIONS(1195), + [anon_sym___autoreleasing] = ACTIONS(1195), + [anon_sym___nullable] = ACTIONS(1195), + [anon_sym___nonnull] = ACTIONS(1195), + [anon_sym___strong] = ACTIONS(1195), + [anon_sym___weak] = ACTIONS(1195), + [anon_sym___bridge] = ACTIONS(1195), + [anon_sym___bridge_transfer] = ACTIONS(1195), + [anon_sym___bridge_retained] = ACTIONS(1195), + [anon_sym___unsafe_unretained] = ACTIONS(1195), + [anon_sym___block] = ACTIONS(1195), + [anon_sym___kindof] = ACTIONS(1195), + [anon_sym___unused] = ACTIONS(1195), + [anon_sym__Complex] = ACTIONS(1195), + [anon_sym___complex] = ACTIONS(1195), + [anon_sym_IBOutlet] = ACTIONS(1195), + [anon_sym_IBInspectable] = ACTIONS(1195), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [sym_null] = ACTIONS(1195), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1197), + [anon_sym_ATimport] = ACTIONS(1197), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1195), + [anon_sym_ATcompatibility_alias] = ACTIONS(1197), + [anon_sym_ATprotocol] = ACTIONS(1197), + [anon_sym_ATclass] = ACTIONS(1197), + [anon_sym_ATinterface] = ACTIONS(1197), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1195), + [sym_method_attribute_specifier] = ACTIONS(1195), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1195), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE] = ACTIONS(1195), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_API_AVAILABLE] = ACTIONS(1195), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_API_DEPRECATED] = ACTIONS(1195), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1195), + [anon_sym___deprecated_msg] = ACTIONS(1195), + [anon_sym___deprecated_enum_msg] = ACTIONS(1195), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1195), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1195), + [anon_sym_ATimplementation] = ACTIONS(1197), + [anon_sym_NS_ENUM] = ACTIONS(1195), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1195), + [anon_sym_NS_OPTIONS] = ACTIONS(1195), + [anon_sym_typeof] = ACTIONS(1195), + [anon_sym___typeof] = ACTIONS(1195), + [anon_sym___typeof__] = ACTIONS(1195), + [sym_self] = ACTIONS(1195), + [sym_super] = ACTIONS(1195), + [sym_nil] = ACTIONS(1195), + [sym_id] = ACTIONS(1195), + [sym_instancetype] = ACTIONS(1195), + [sym_Class] = ACTIONS(1195), + [sym_SEL] = ACTIONS(1195), + [sym_IMP] = ACTIONS(1195), + [sym_BOOL] = ACTIONS(1195), + [sym_auto] = ACTIONS(1195), + [anon_sym_ATautoreleasepool] = ACTIONS(1197), + [anon_sym_ATsynchronized] = ACTIONS(1197), + [anon_sym_ATtry] = ACTIONS(1197), + [anon_sym_ATcatch] = ACTIONS(1197), + [anon_sym_ATfinally] = ACTIONS(1197), + [anon_sym_ATthrow] = ACTIONS(1197), + [anon_sym_ATselector] = ACTIONS(1197), + [anon_sym_ATencode] = ACTIONS(1197), + [anon_sym_AT] = ACTIONS(1195), + [sym_YES] = ACTIONS(1195), + [sym_NO] = ACTIONS(1195), + [anon_sym___builtin_available] = ACTIONS(1195), + [anon_sym_ATavailable] = ACTIONS(1197), + [anon_sym_va_arg] = ACTIONS(1195), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [135] = { + [ts_builtin_sym_end] = ACTIONS(1399), + [sym_identifier] = ACTIONS(1401), + [aux_sym_preproc_include_token1] = ACTIONS(1399), + [aux_sym_preproc_def_token1] = ACTIONS(1399), + [anon_sym_RPAREN] = ACTIONS(1399), + [aux_sym_preproc_if_token1] = ACTIONS(1401), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1401), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1401), + [anon_sym_LPAREN2] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_typedef] = ACTIONS(1401), + [anon_sym_extern] = ACTIONS(1401), + [anon_sym___attribute] = ACTIONS(1401), + [anon_sym___attribute__] = ACTIONS(1401), + [anon_sym___declspec] = ACTIONS(1401), + [anon_sym___cdecl] = ACTIONS(1401), + [anon_sym___clrcall] = ACTIONS(1401), + [anon_sym___stdcall] = ACTIONS(1401), + [anon_sym___fastcall] = ACTIONS(1401), + [anon_sym___thiscall] = ACTIONS(1401), + [anon_sym___vectorcall] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1399), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_auto] = ACTIONS(1401), + [anon_sym_register] = ACTIONS(1401), + [anon_sym_inline] = ACTIONS(1401), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_volatile] = ACTIONS(1401), + [anon_sym_restrict] = ACTIONS(1401), + [anon_sym__Atomic] = ACTIONS(1401), + [anon_sym_in] = ACTIONS(1401), + [anon_sym_out] = ACTIONS(1401), + [anon_sym_inout] = ACTIONS(1401), + [anon_sym_bycopy] = ACTIONS(1401), + [anon_sym_byref] = ACTIONS(1401), + [anon_sym_oneway] = ACTIONS(1401), + [anon_sym__Nullable] = ACTIONS(1401), + [anon_sym__Nonnull] = ACTIONS(1401), + [anon_sym__Nullable_result] = ACTIONS(1401), + [anon_sym__Null_unspecified] = ACTIONS(1401), + [anon_sym___autoreleasing] = ACTIONS(1401), + [anon_sym___nullable] = ACTIONS(1401), + [anon_sym___nonnull] = ACTIONS(1401), + [anon_sym___strong] = ACTIONS(1401), + [anon_sym___weak] = ACTIONS(1401), + [anon_sym___bridge] = ACTIONS(1401), + [anon_sym___bridge_transfer] = ACTIONS(1401), + [anon_sym___bridge_retained] = ACTIONS(1401), + [anon_sym___unsafe_unretained] = ACTIONS(1401), + [anon_sym___block] = ACTIONS(1401), + [anon_sym___kindof] = ACTIONS(1401), + [anon_sym___unused] = ACTIONS(1401), + [anon_sym__Complex] = ACTIONS(1401), + [anon_sym___complex] = ACTIONS(1401), + [anon_sym_IBOutlet] = ACTIONS(1401), + [anon_sym_IBInspectable] = ACTIONS(1401), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1401), + [anon_sym_signed] = ACTIONS(1401), + [anon_sym_unsigned] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [sym_primitive_type] = ACTIONS(1401), + [anon_sym_enum] = ACTIONS(1401), + [anon_sym_struct] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_else] = ACTIONS(1401), + [anon_sym_switch] = ACTIONS(1401), + [anon_sym_case] = ACTIONS(1401), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_do] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_goto] = ACTIONS(1401), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_sizeof] = ACTIONS(1401), + [sym_number_literal] = ACTIONS(1399), + [anon_sym_L_SQUOTE] = ACTIONS(1399), + [anon_sym_u_SQUOTE] = ACTIONS(1399), + [anon_sym_U_SQUOTE] = ACTIONS(1399), + [anon_sym_u8_SQUOTE] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_L_DQUOTE] = ACTIONS(1399), + [anon_sym_u_DQUOTE] = ACTIONS(1399), + [anon_sym_U_DQUOTE] = ACTIONS(1399), + [anon_sym_u8_DQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [sym_true] = ACTIONS(1401), + [sym_false] = ACTIONS(1401), + [sym_null] = ACTIONS(1401), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1399), + [anon_sym_ATimport] = ACTIONS(1399), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1401), + [anon_sym_ATcompatibility_alias] = ACTIONS(1399), + [anon_sym_ATprotocol] = ACTIONS(1399), + [anon_sym_ATclass] = ACTIONS(1399), + [anon_sym_ATinterface] = ACTIONS(1399), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1401), + [sym_method_attribute_specifier] = ACTIONS(1401), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1401), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1401), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1401), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1401), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1401), + [anon_sym_NS_AVAILABLE] = ACTIONS(1401), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1401), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_API_AVAILABLE] = ACTIONS(1401), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_API_DEPRECATED] = ACTIONS(1401), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1401), + [anon_sym___deprecated_msg] = ACTIONS(1401), + [anon_sym___deprecated_enum_msg] = ACTIONS(1401), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1401), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1401), + [anon_sym_ATimplementation] = ACTIONS(1399), + [anon_sym_NS_ENUM] = ACTIONS(1401), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1401), + [anon_sym_NS_OPTIONS] = ACTIONS(1401), + [anon_sym_typeof] = ACTIONS(1401), + [anon_sym___typeof] = ACTIONS(1401), + [anon_sym___typeof__] = ACTIONS(1401), + [sym_self] = ACTIONS(1401), + [sym_super] = ACTIONS(1401), + [sym_nil] = ACTIONS(1401), + [sym_id] = ACTIONS(1401), + [sym_instancetype] = ACTIONS(1401), + [sym_Class] = ACTIONS(1401), + [sym_SEL] = ACTIONS(1401), + [sym_IMP] = ACTIONS(1401), + [sym_BOOL] = ACTIONS(1401), + [sym_auto] = ACTIONS(1401), + [anon_sym_ATautoreleasepool] = ACTIONS(1399), + [anon_sym_ATsynchronized] = ACTIONS(1399), + [anon_sym_ATtry] = ACTIONS(1399), + [anon_sym_ATcatch] = ACTIONS(1399), + [anon_sym_ATfinally] = ACTIONS(1399), + [anon_sym_ATthrow] = ACTIONS(1399), + [anon_sym_ATselector] = ACTIONS(1399), + [anon_sym_ATencode] = ACTIONS(1399), + [anon_sym_AT] = ACTIONS(1401), + [sym_YES] = ACTIONS(1401), + [sym_NO] = ACTIONS(1401), + [anon_sym___builtin_available] = ACTIONS(1401), + [anon_sym_ATavailable] = ACTIONS(1399), + [anon_sym_va_arg] = ACTIONS(1401), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [136] = { [sym_identifier] = ACTIONS(1403), - [aux_sym_preproc_include_token1] = ACTIONS(1401), - [aux_sym_preproc_def_token1] = ACTIONS(1401), - [anon_sym_RPAREN] = ACTIONS(1401), + [aux_sym_preproc_include_token1] = ACTIONS(1405), + [aux_sym_preproc_def_token1] = ACTIONS(1405), [aux_sym_preproc_if_token1] = ACTIONS(1403), + [aux_sym_preproc_if_token2] = ACTIONS(1403), [aux_sym_preproc_ifdef_token1] = ACTIONS(1403), [aux_sym_preproc_ifdef_token2] = ACTIONS(1403), - [anon_sym_LPAREN2] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_TILDE] = ACTIONS(1401), + [aux_sym_preproc_else_token1] = ACTIONS(1403), + [aux_sym_preproc_elif_token1] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), [anon_sym_DASH] = ACTIONS(1403), [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_CARET] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1405), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1405), [anon_sym_typedef] = ACTIONS(1403), [anon_sym_extern] = ACTIONS(1403), [anon_sym___attribute] = ACTIONS(1403), @@ -47933,9 +49556,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1403), [anon_sym___thiscall] = ACTIONS(1403), [anon_sym___vectorcall] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_RBRACE] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(1405), [anon_sym_static] = ACTIONS(1403), [anon_sym_auto] = ACTIONS(1403), [anon_sym_register] = ACTIONS(1403), @@ -47978,9 +49600,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1403), [sym_primitive_type] = ACTIONS(1403), [anon_sym_enum] = ACTIONS(1403), - [anon_sym_NS_ENUM] = ACTIONS(1403), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1403), - [anon_sym_NS_OPTIONS] = ACTIONS(1403), [anon_sym_struct] = ACTIONS(1403), [anon_sym_union] = ACTIONS(1403), [anon_sym_if] = ACTIONS(1403), @@ -47995,31 +49614,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1403), [anon_sym_continue] = ACTIONS(1403), [anon_sym_goto] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), [anon_sym_sizeof] = ACTIONS(1403), - [sym_number_literal] = ACTIONS(1401), - [anon_sym_L_SQUOTE] = ACTIONS(1401), - [anon_sym_u_SQUOTE] = ACTIONS(1401), - [anon_sym_U_SQUOTE] = ACTIONS(1401), - [anon_sym_u8_SQUOTE] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1401), - [anon_sym_L_DQUOTE] = ACTIONS(1401), - [anon_sym_u_DQUOTE] = ACTIONS(1401), - [anon_sym_U_DQUOTE] = ACTIONS(1401), - [anon_sym_u8_DQUOTE] = ACTIONS(1401), - [anon_sym_DQUOTE] = ACTIONS(1401), + [sym_number_literal] = ACTIONS(1405), + [anon_sym_L_SQUOTE] = ACTIONS(1405), + [anon_sym_u_SQUOTE] = ACTIONS(1405), + [anon_sym_U_SQUOTE] = ACTIONS(1405), + [anon_sym_u8_SQUOTE] = ACTIONS(1405), + [anon_sym_SQUOTE] = ACTIONS(1405), + [anon_sym_L_DQUOTE] = ACTIONS(1405), + [anon_sym_u_DQUOTE] = ACTIONS(1405), + [anon_sym_U_DQUOTE] = ACTIONS(1405), + [anon_sym_u8_DQUOTE] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1405), [sym_true] = ACTIONS(1403), [sym_false] = ACTIONS(1403), [sym_null] = ACTIONS(1403), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1401), - [anon_sym_ATimport] = ACTIONS(1401), + [anon_sym_POUNDimport] = ACTIONS(1405), + [anon_sym_ATimport] = ACTIONS(1405), [sym__ns_assume_nonnull_declaration] = ACTIONS(1403), - [anon_sym_ATcompatibility_alias] = ACTIONS(1401), - [anon_sym_ATprotocol] = ACTIONS(1401), - [anon_sym_ATclass] = ACTIONS(1401), - [anon_sym_ATinterface] = ACTIONS(1401), + [anon_sym_ATcompatibility_alias] = ACTIONS(1405), + [anon_sym_ATprotocol] = ACTIONS(1405), + [anon_sym_ATclass] = ACTIONS(1405), + [anon_sym_ATinterface] = ACTIONS(1405), [sym_class_interface_attribute_sepcifier] = ACTIONS(1403), [sym_method_attribute_specifier] = ACTIONS(1403), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1403), @@ -48046,7 +49665,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1403), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1403), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1403), - [anon_sym_ATimplementation] = ACTIONS(1401), + [anon_sym_ATimplementation] = ACTIONS(1405), + [anon_sym_NS_ENUM] = ACTIONS(1403), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1403), + [anon_sym_NS_OPTIONS] = ACTIONS(1403), [anon_sym_typeof] = ACTIONS(1403), [anon_sym___typeof] = ACTIONS(1403), [anon_sym___typeof__] = ACTIONS(1403), @@ -48060,1284 +49682,577 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1403), [sym_BOOL] = ACTIONS(1403), [sym_auto] = ACTIONS(1403), - [anon_sym_ATautoreleasepool] = ACTIONS(1401), - [anon_sym_ATsynchronized] = ACTIONS(1401), - [anon_sym_ATtry] = ACTIONS(1401), - [anon_sym_ATcatch] = ACTIONS(1401), - [anon_sym_ATfinally] = ACTIONS(1401), - [anon_sym_ATthrow] = ACTIONS(1401), - [anon_sym_ATselector] = ACTIONS(1401), - [anon_sym_ATencode] = ACTIONS(1401), + [anon_sym_ATautoreleasepool] = ACTIONS(1405), + [anon_sym_ATsynchronized] = ACTIONS(1405), + [anon_sym_ATtry] = ACTIONS(1405), + [anon_sym_ATcatch] = ACTIONS(1405), + [anon_sym_ATfinally] = ACTIONS(1405), + [anon_sym_ATthrow] = ACTIONS(1405), + [anon_sym_ATselector] = ACTIONS(1405), + [anon_sym_ATencode] = ACTIONS(1405), [anon_sym_AT] = ACTIONS(1403), [sym_YES] = ACTIONS(1403), [sym_NO] = ACTIONS(1403), [anon_sym___builtin_available] = ACTIONS(1403), - [anon_sym_ATavailable] = ACTIONS(1401), + [anon_sym_ATavailable] = ACTIONS(1405), [anon_sym_va_arg] = ACTIONS(1403), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [137] = { + [sym_identifier] = ACTIONS(1407), + [aux_sym_preproc_include_token1] = ACTIONS(1409), + [aux_sym_preproc_def_token1] = ACTIONS(1409), + [aux_sym_preproc_if_token1] = ACTIONS(1407), + [aux_sym_preproc_if_token2] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1407), + [aux_sym_preproc_else_token1] = ACTIONS(1407), + [aux_sym_preproc_elif_token1] = ACTIONS(1407), + [anon_sym_LPAREN2] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym_typedef] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym___attribute] = ACTIONS(1407), + [anon_sym___attribute__] = ACTIONS(1407), + [anon_sym___declspec] = ACTIONS(1407), + [anon_sym___cdecl] = ACTIONS(1407), + [anon_sym___clrcall] = ACTIONS(1407), + [anon_sym___stdcall] = ACTIONS(1407), + [anon_sym___fastcall] = ACTIONS(1407), + [anon_sym___thiscall] = ACTIONS(1407), + [anon_sym___vectorcall] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_auto] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_inline] = ACTIONS(1407), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_volatile] = ACTIONS(1407), + [anon_sym_restrict] = ACTIONS(1407), + [anon_sym__Atomic] = ACTIONS(1407), + [anon_sym_in] = ACTIONS(1407), + [anon_sym_out] = ACTIONS(1407), + [anon_sym_inout] = ACTIONS(1407), + [anon_sym_bycopy] = ACTIONS(1407), + [anon_sym_byref] = ACTIONS(1407), + [anon_sym_oneway] = ACTIONS(1407), + [anon_sym__Nullable] = ACTIONS(1407), + [anon_sym__Nonnull] = ACTIONS(1407), + [anon_sym__Nullable_result] = ACTIONS(1407), + [anon_sym__Null_unspecified] = ACTIONS(1407), + [anon_sym___autoreleasing] = ACTIONS(1407), + [anon_sym___nullable] = ACTIONS(1407), + [anon_sym___nonnull] = ACTIONS(1407), + [anon_sym___strong] = ACTIONS(1407), + [anon_sym___weak] = ACTIONS(1407), + [anon_sym___bridge] = ACTIONS(1407), + [anon_sym___bridge_transfer] = ACTIONS(1407), + [anon_sym___bridge_retained] = ACTIONS(1407), + [anon_sym___unsafe_unretained] = ACTIONS(1407), + [anon_sym___block] = ACTIONS(1407), + [anon_sym___kindof] = ACTIONS(1407), + [anon_sym___unused] = ACTIONS(1407), + [anon_sym__Complex] = ACTIONS(1407), + [anon_sym___complex] = ACTIONS(1407), + [anon_sym_IBOutlet] = ACTIONS(1407), + [anon_sym_IBInspectable] = ACTIONS(1407), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1407), + [anon_sym_signed] = ACTIONS(1407), + [anon_sym_unsigned] = ACTIONS(1407), + [anon_sym_long] = ACTIONS(1407), + [anon_sym_short] = ACTIONS(1407), + [sym_primitive_type] = ACTIONS(1407), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_else] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_case] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_goto] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1407), + [sym_number_literal] = ACTIONS(1409), + [anon_sym_L_SQUOTE] = ACTIONS(1409), + [anon_sym_u_SQUOTE] = ACTIONS(1409), + [anon_sym_U_SQUOTE] = ACTIONS(1409), + [anon_sym_u8_SQUOTE] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_L_DQUOTE] = ACTIONS(1409), + [anon_sym_u_DQUOTE] = ACTIONS(1409), + [anon_sym_U_DQUOTE] = ACTIONS(1409), + [anon_sym_u8_DQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym_true] = ACTIONS(1407), + [sym_false] = ACTIONS(1407), + [sym_null] = ACTIONS(1407), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1409), + [anon_sym_ATimport] = ACTIONS(1409), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1407), + [anon_sym_ATcompatibility_alias] = ACTIONS(1409), + [anon_sym_ATprotocol] = ACTIONS(1409), + [anon_sym_ATclass] = ACTIONS(1409), + [anon_sym_ATinterface] = ACTIONS(1409), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1407), + [sym_method_attribute_specifier] = ACTIONS(1407), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1407), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1407), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1407), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1407), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1407), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1407), + [anon_sym_NS_AVAILABLE] = ACTIONS(1407), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1407), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1407), + [anon_sym_API_AVAILABLE] = ACTIONS(1407), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1407), + [anon_sym_API_DEPRECATED] = ACTIONS(1407), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1407), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1407), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1407), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1407), + [anon_sym___deprecated_msg] = ACTIONS(1407), + [anon_sym___deprecated_enum_msg] = ACTIONS(1407), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1407), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1407), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1407), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1407), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1407), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1407), + [anon_sym_ATimplementation] = ACTIONS(1409), + [anon_sym_NS_ENUM] = ACTIONS(1407), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1407), + [anon_sym_NS_OPTIONS] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1407), + [anon_sym___typeof] = ACTIONS(1407), + [anon_sym___typeof__] = ACTIONS(1407), + [sym_self] = ACTIONS(1407), + [sym_super] = ACTIONS(1407), + [sym_nil] = ACTIONS(1407), + [sym_id] = ACTIONS(1407), + [sym_instancetype] = ACTIONS(1407), + [sym_Class] = ACTIONS(1407), + [sym_SEL] = ACTIONS(1407), + [sym_IMP] = ACTIONS(1407), + [sym_BOOL] = ACTIONS(1407), + [sym_auto] = ACTIONS(1407), + [anon_sym_ATautoreleasepool] = ACTIONS(1409), + [anon_sym_ATsynchronized] = ACTIONS(1409), + [anon_sym_ATtry] = ACTIONS(1409), + [anon_sym_ATcatch] = ACTIONS(1409), + [anon_sym_ATfinally] = ACTIONS(1409), + [anon_sym_ATthrow] = ACTIONS(1409), + [anon_sym_ATselector] = ACTIONS(1409), + [anon_sym_ATencode] = ACTIONS(1409), + [anon_sym_AT] = ACTIONS(1407), + [sym_YES] = ACTIONS(1407), + [sym_NO] = ACTIONS(1407), + [anon_sym___builtin_available] = ACTIONS(1407), + [anon_sym_ATavailable] = ACTIONS(1409), + [anon_sym_va_arg] = ACTIONS(1407), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [138] = { + [sym_identifier] = ACTIONS(1411), + [aux_sym_preproc_include_token1] = ACTIONS(1413), + [aux_sym_preproc_def_token1] = ACTIONS(1413), + [aux_sym_preproc_if_token1] = ACTIONS(1411), + [aux_sym_preproc_if_token2] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1411), + [aux_sym_preproc_else_token1] = ACTIONS(1411), + [aux_sym_preproc_elif_token1] = ACTIONS(1411), + [anon_sym_LPAREN2] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_CARET] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym_typedef] = ACTIONS(1411), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym___attribute] = ACTIONS(1411), + [anon_sym___attribute__] = ACTIONS(1411), + [anon_sym___declspec] = ACTIONS(1411), + [anon_sym___cdecl] = ACTIONS(1411), + [anon_sym___clrcall] = ACTIONS(1411), + [anon_sym___stdcall] = ACTIONS(1411), + [anon_sym___fastcall] = ACTIONS(1411), + [anon_sym___thiscall] = ACTIONS(1411), + [anon_sym___vectorcall] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_auto] = ACTIONS(1411), + [anon_sym_register] = ACTIONS(1411), + [anon_sym_inline] = ACTIONS(1411), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_volatile] = ACTIONS(1411), + [anon_sym_restrict] = ACTIONS(1411), + [anon_sym__Atomic] = ACTIONS(1411), + [anon_sym_in] = ACTIONS(1411), + [anon_sym_out] = ACTIONS(1411), + [anon_sym_inout] = ACTIONS(1411), + [anon_sym_bycopy] = ACTIONS(1411), + [anon_sym_byref] = ACTIONS(1411), + [anon_sym_oneway] = ACTIONS(1411), + [anon_sym__Nullable] = ACTIONS(1411), + [anon_sym__Nonnull] = ACTIONS(1411), + [anon_sym__Nullable_result] = ACTIONS(1411), + [anon_sym__Null_unspecified] = ACTIONS(1411), + [anon_sym___autoreleasing] = ACTIONS(1411), + [anon_sym___nullable] = ACTIONS(1411), + [anon_sym___nonnull] = ACTIONS(1411), + [anon_sym___strong] = ACTIONS(1411), + [anon_sym___weak] = ACTIONS(1411), + [anon_sym___bridge] = ACTIONS(1411), + [anon_sym___bridge_transfer] = ACTIONS(1411), + [anon_sym___bridge_retained] = ACTIONS(1411), + [anon_sym___unsafe_unretained] = ACTIONS(1411), + [anon_sym___block] = ACTIONS(1411), + [anon_sym___kindof] = ACTIONS(1411), + [anon_sym___unused] = ACTIONS(1411), + [anon_sym__Complex] = ACTIONS(1411), + [anon_sym___complex] = ACTIONS(1411), + [anon_sym_IBOutlet] = ACTIONS(1411), + [anon_sym_IBInspectable] = ACTIONS(1411), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1411), + [anon_sym_signed] = ACTIONS(1411), + [anon_sym_unsigned] = ACTIONS(1411), + [anon_sym_long] = ACTIONS(1411), + [anon_sym_short] = ACTIONS(1411), + [sym_primitive_type] = ACTIONS(1411), + [anon_sym_enum] = ACTIONS(1411), + [anon_sym_struct] = ACTIONS(1411), + [anon_sym_union] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_else] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_case] = ACTIONS(1411), + [anon_sym_default] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_goto] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_sizeof] = ACTIONS(1411), + [sym_number_literal] = ACTIONS(1413), + [anon_sym_L_SQUOTE] = ACTIONS(1413), + [anon_sym_u_SQUOTE] = ACTIONS(1413), + [anon_sym_U_SQUOTE] = ACTIONS(1413), + [anon_sym_u8_SQUOTE] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_L_DQUOTE] = ACTIONS(1413), + [anon_sym_u_DQUOTE] = ACTIONS(1413), + [anon_sym_U_DQUOTE] = ACTIONS(1413), + [anon_sym_u8_DQUOTE] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [sym_true] = ACTIONS(1411), + [sym_false] = ACTIONS(1411), + [sym_null] = ACTIONS(1411), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1413), + [anon_sym_ATimport] = ACTIONS(1413), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1411), + [anon_sym_ATcompatibility_alias] = ACTIONS(1413), + [anon_sym_ATprotocol] = ACTIONS(1413), + [anon_sym_ATclass] = ACTIONS(1413), + [anon_sym_ATinterface] = ACTIONS(1413), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1411), + [sym_method_attribute_specifier] = ACTIONS(1411), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1411), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1411), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1411), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1411), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1411), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1411), + [anon_sym_NS_AVAILABLE] = ACTIONS(1411), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1411), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1411), + [anon_sym_API_AVAILABLE] = ACTIONS(1411), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1411), + [anon_sym_API_DEPRECATED] = ACTIONS(1411), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1411), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1411), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1411), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1411), + [anon_sym___deprecated_msg] = ACTIONS(1411), + [anon_sym___deprecated_enum_msg] = ACTIONS(1411), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1411), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1411), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1411), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1411), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1411), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1411), + [anon_sym_ATimplementation] = ACTIONS(1413), + [anon_sym_NS_ENUM] = ACTIONS(1411), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1411), + [anon_sym_NS_OPTIONS] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym___typeof] = ACTIONS(1411), + [anon_sym___typeof__] = ACTIONS(1411), + [sym_self] = ACTIONS(1411), + [sym_super] = ACTIONS(1411), + [sym_nil] = ACTIONS(1411), + [sym_id] = ACTIONS(1411), + [sym_instancetype] = ACTIONS(1411), + [sym_Class] = ACTIONS(1411), + [sym_SEL] = ACTIONS(1411), + [sym_IMP] = ACTIONS(1411), + [sym_BOOL] = ACTIONS(1411), + [sym_auto] = ACTIONS(1411), + [anon_sym_ATautoreleasepool] = ACTIONS(1413), + [anon_sym_ATsynchronized] = ACTIONS(1413), + [anon_sym_ATtry] = ACTIONS(1413), + [anon_sym_ATcatch] = ACTIONS(1413), + [anon_sym_ATfinally] = ACTIONS(1413), + [anon_sym_ATthrow] = ACTIONS(1413), + [anon_sym_ATselector] = ACTIONS(1413), + [anon_sym_ATencode] = ACTIONS(1413), + [anon_sym_AT] = ACTIONS(1411), + [sym_YES] = ACTIONS(1411), + [sym_NO] = ACTIONS(1411), + [anon_sym___builtin_available] = ACTIONS(1411), + [anon_sym_ATavailable] = ACTIONS(1413), + [anon_sym_va_arg] = ACTIONS(1411), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [139] = { + [ts_builtin_sym_end] = ACTIONS(1415), + [sym_identifier] = ACTIONS(1417), + [aux_sym_preproc_include_token1] = ACTIONS(1415), + [aux_sym_preproc_def_token1] = ACTIONS(1415), + [anon_sym_RPAREN] = ACTIONS(1415), + [aux_sym_preproc_if_token1] = ACTIONS(1417), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1417), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1417), + [anon_sym_LPAREN2] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_typedef] = ACTIONS(1417), + [anon_sym_extern] = ACTIONS(1417), + [anon_sym___attribute] = ACTIONS(1417), + [anon_sym___attribute__] = ACTIONS(1417), + [anon_sym___declspec] = ACTIONS(1417), + [anon_sym___cdecl] = ACTIONS(1417), + [anon_sym___clrcall] = ACTIONS(1417), + [anon_sym___stdcall] = ACTIONS(1417), + [anon_sym___fastcall] = ACTIONS(1417), + [anon_sym___thiscall] = ACTIONS(1417), + [anon_sym___vectorcall] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_auto] = ACTIONS(1417), + [anon_sym_register] = ACTIONS(1417), + [anon_sym_inline] = ACTIONS(1417), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_volatile] = ACTIONS(1417), + [anon_sym_restrict] = ACTIONS(1417), + [anon_sym__Atomic] = ACTIONS(1417), + [anon_sym_in] = ACTIONS(1417), + [anon_sym_out] = ACTIONS(1417), + [anon_sym_inout] = ACTIONS(1417), + [anon_sym_bycopy] = ACTIONS(1417), + [anon_sym_byref] = ACTIONS(1417), + [anon_sym_oneway] = ACTIONS(1417), + [anon_sym__Nullable] = ACTIONS(1417), + [anon_sym__Nonnull] = ACTIONS(1417), + [anon_sym__Nullable_result] = ACTIONS(1417), + [anon_sym__Null_unspecified] = ACTIONS(1417), + [anon_sym___autoreleasing] = ACTIONS(1417), + [anon_sym___nullable] = ACTIONS(1417), + [anon_sym___nonnull] = ACTIONS(1417), + [anon_sym___strong] = ACTIONS(1417), + [anon_sym___weak] = ACTIONS(1417), + [anon_sym___bridge] = ACTIONS(1417), + [anon_sym___bridge_transfer] = ACTIONS(1417), + [anon_sym___bridge_retained] = ACTIONS(1417), + [anon_sym___unsafe_unretained] = ACTIONS(1417), + [anon_sym___block] = ACTIONS(1417), + [anon_sym___kindof] = ACTIONS(1417), + [anon_sym___unused] = ACTIONS(1417), + [anon_sym__Complex] = ACTIONS(1417), + [anon_sym___complex] = ACTIONS(1417), + [anon_sym_IBOutlet] = ACTIONS(1417), + [anon_sym_IBInspectable] = ACTIONS(1417), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1417), + [anon_sym_signed] = ACTIONS(1417), + [anon_sym_unsigned] = ACTIONS(1417), + [anon_sym_long] = ACTIONS(1417), + [anon_sym_short] = ACTIONS(1417), + [sym_primitive_type] = ACTIONS(1417), + [anon_sym_enum] = ACTIONS(1417), + [anon_sym_struct] = ACTIONS(1417), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_else] = ACTIONS(1417), + [anon_sym_switch] = ACTIONS(1417), + [anon_sym_case] = ACTIONS(1417), + [anon_sym_default] = ACTIONS(1417), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_do] = ACTIONS(1417), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_goto] = ACTIONS(1417), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_sizeof] = ACTIONS(1417), + [sym_number_literal] = ACTIONS(1415), + [anon_sym_L_SQUOTE] = ACTIONS(1415), + [anon_sym_u_SQUOTE] = ACTIONS(1415), + [anon_sym_U_SQUOTE] = ACTIONS(1415), + [anon_sym_u8_SQUOTE] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_L_DQUOTE] = ACTIONS(1415), + [anon_sym_u_DQUOTE] = ACTIONS(1415), + [anon_sym_U_DQUOTE] = ACTIONS(1415), + [anon_sym_u8_DQUOTE] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1415), + [sym_true] = ACTIONS(1417), + [sym_false] = ACTIONS(1417), + [sym_null] = ACTIONS(1417), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1415), + [anon_sym_ATimport] = ACTIONS(1415), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1417), + [anon_sym_ATcompatibility_alias] = ACTIONS(1415), + [anon_sym_ATprotocol] = ACTIONS(1415), + [anon_sym_ATclass] = ACTIONS(1415), + [anon_sym_ATinterface] = ACTIONS(1415), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1417), + [sym_method_attribute_specifier] = ACTIONS(1417), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1417), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1417), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1417), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1417), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1417), + [anon_sym_NS_AVAILABLE] = ACTIONS(1417), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1417), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_API_AVAILABLE] = ACTIONS(1417), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_API_DEPRECATED] = ACTIONS(1417), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1417), + [anon_sym___deprecated_msg] = ACTIONS(1417), + [anon_sym___deprecated_enum_msg] = ACTIONS(1417), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1417), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1417), + [anon_sym_ATimplementation] = ACTIONS(1415), + [anon_sym_NS_ENUM] = ACTIONS(1417), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1417), + [anon_sym_NS_OPTIONS] = ACTIONS(1417), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym___typeof] = ACTIONS(1417), + [anon_sym___typeof__] = ACTIONS(1417), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1417), + [sym_nil] = ACTIONS(1417), + [sym_id] = ACTIONS(1417), + [sym_instancetype] = ACTIONS(1417), + [sym_Class] = ACTIONS(1417), + [sym_SEL] = ACTIONS(1417), + [sym_IMP] = ACTIONS(1417), + [sym_BOOL] = ACTIONS(1417), + [sym_auto] = ACTIONS(1417), + [anon_sym_ATautoreleasepool] = ACTIONS(1415), + [anon_sym_ATsynchronized] = ACTIONS(1415), + [anon_sym_ATtry] = ACTIONS(1415), + [anon_sym_ATcatch] = ACTIONS(1415), + [anon_sym_ATfinally] = ACTIONS(1415), + [anon_sym_ATthrow] = ACTIONS(1415), + [anon_sym_ATselector] = ACTIONS(1415), + [anon_sym_ATencode] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [sym_YES] = ACTIONS(1417), + [sym_NO] = ACTIONS(1417), + [anon_sym___builtin_available] = ACTIONS(1417), + [anon_sym_ATavailable] = ACTIONS(1415), + [anon_sym_va_arg] = ACTIONS(1417), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), [sym__ifdef_else_ignore] = ACTIONS(3), [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [128] = { - [sym_identifier] = ACTIONS(1405), - [aux_sym_preproc_include_token1] = ACTIONS(1407), - [aux_sym_preproc_def_token1] = ACTIONS(1407), - [aux_sym_preproc_if_token1] = ACTIONS(1405), - [aux_sym_preproc_if_token2] = ACTIONS(1405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1405), - [aux_sym_preproc_else_token1] = ACTIONS(1405), - [aux_sym_preproc_elif_token1] = ACTIONS(1405), - [anon_sym_LPAREN2] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_typedef] = ACTIONS(1405), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym___attribute] = ACTIONS(1405), - [anon_sym___attribute__] = ACTIONS(1405), - [anon_sym___declspec] = ACTIONS(1405), - [anon_sym___cdecl] = ACTIONS(1405), - [anon_sym___clrcall] = ACTIONS(1405), - [anon_sym___stdcall] = ACTIONS(1405), - [anon_sym___fastcall] = ACTIONS(1405), - [anon_sym___thiscall] = ACTIONS(1405), - [anon_sym___vectorcall] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_auto] = ACTIONS(1405), - [anon_sym_register] = ACTIONS(1405), - [anon_sym_inline] = ACTIONS(1405), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_volatile] = ACTIONS(1405), - [anon_sym_restrict] = ACTIONS(1405), - [anon_sym__Atomic] = ACTIONS(1405), - [anon_sym_in] = ACTIONS(1405), - [anon_sym_out] = ACTIONS(1405), - [anon_sym_inout] = ACTIONS(1405), - [anon_sym_bycopy] = ACTIONS(1405), - [anon_sym_byref] = ACTIONS(1405), - [anon_sym_oneway] = ACTIONS(1405), - [anon_sym__Nullable] = ACTIONS(1405), - [anon_sym__Nonnull] = ACTIONS(1405), - [anon_sym__Nullable_result] = ACTIONS(1405), - [anon_sym__Null_unspecified] = ACTIONS(1405), - [anon_sym___autoreleasing] = ACTIONS(1405), - [anon_sym___nullable] = ACTIONS(1405), - [anon_sym___nonnull] = ACTIONS(1405), - [anon_sym___strong] = ACTIONS(1405), - [anon_sym___weak] = ACTIONS(1405), - [anon_sym___bridge] = ACTIONS(1405), - [anon_sym___bridge_transfer] = ACTIONS(1405), - [anon_sym___bridge_retained] = ACTIONS(1405), - [anon_sym___unsafe_unretained] = ACTIONS(1405), - [anon_sym___block] = ACTIONS(1405), - [anon_sym___kindof] = ACTIONS(1405), - [anon_sym___unused] = ACTIONS(1405), - [anon_sym__Complex] = ACTIONS(1405), - [anon_sym___complex] = ACTIONS(1405), - [anon_sym_IBOutlet] = ACTIONS(1405), - [anon_sym_IBInspectable] = ACTIONS(1405), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1405), - [anon_sym_signed] = ACTIONS(1405), - [anon_sym_unsigned] = ACTIONS(1405), - [anon_sym_long] = ACTIONS(1405), - [anon_sym_short] = ACTIONS(1405), - [sym_primitive_type] = ACTIONS(1405), - [anon_sym_enum] = ACTIONS(1405), - [anon_sym_NS_ENUM] = ACTIONS(1405), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1405), - [anon_sym_NS_OPTIONS] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_union] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_switch] = ACTIONS(1405), - [anon_sym_case] = ACTIONS(1405), - [anon_sym_default] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_goto] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_sizeof] = ACTIONS(1405), - [sym_number_literal] = ACTIONS(1407), - [anon_sym_L_SQUOTE] = ACTIONS(1407), - [anon_sym_u_SQUOTE] = ACTIONS(1407), - [anon_sym_U_SQUOTE] = ACTIONS(1407), - [anon_sym_u8_SQUOTE] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1407), - [anon_sym_L_DQUOTE] = ACTIONS(1407), - [anon_sym_u_DQUOTE] = ACTIONS(1407), - [anon_sym_U_DQUOTE] = ACTIONS(1407), - [anon_sym_u8_DQUOTE] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [sym_true] = ACTIONS(1405), - [sym_false] = ACTIONS(1405), - [sym_null] = ACTIONS(1405), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1407), - [anon_sym_ATimport] = ACTIONS(1407), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1405), - [anon_sym_ATcompatibility_alias] = ACTIONS(1407), - [anon_sym_ATprotocol] = ACTIONS(1407), - [anon_sym_ATclass] = ACTIONS(1407), - [anon_sym_ATinterface] = ACTIONS(1407), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1405), - [sym_method_attribute_specifier] = ACTIONS(1405), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1405), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1405), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1405), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1405), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1405), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1405), - [anon_sym_NS_AVAILABLE] = ACTIONS(1405), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1405), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1405), - [anon_sym_API_AVAILABLE] = ACTIONS(1405), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1405), - [anon_sym_API_DEPRECATED] = ACTIONS(1405), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1405), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1405), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1405), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1405), - [anon_sym___deprecated_msg] = ACTIONS(1405), - [anon_sym___deprecated_enum_msg] = ACTIONS(1405), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1405), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1405), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1405), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1405), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1405), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1405), - [anon_sym_ATimplementation] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1405), - [anon_sym___typeof] = ACTIONS(1405), - [anon_sym___typeof__] = ACTIONS(1405), - [sym_self] = ACTIONS(1405), - [sym_super] = ACTIONS(1405), - [sym_nil] = ACTIONS(1405), - [sym_id] = ACTIONS(1405), - [sym_instancetype] = ACTIONS(1405), - [sym_Class] = ACTIONS(1405), - [sym_SEL] = ACTIONS(1405), - [sym_IMP] = ACTIONS(1405), - [sym_BOOL] = ACTIONS(1405), - [sym_auto] = ACTIONS(1405), - [anon_sym_ATautoreleasepool] = ACTIONS(1407), - [anon_sym_ATsynchronized] = ACTIONS(1407), - [anon_sym_ATtry] = ACTIONS(1407), - [anon_sym_ATcatch] = ACTIONS(1407), - [anon_sym_ATfinally] = ACTIONS(1407), - [anon_sym_ATthrow] = ACTIONS(1407), - [anon_sym_ATselector] = ACTIONS(1407), - [anon_sym_ATencode] = ACTIONS(1407), - [anon_sym_AT] = ACTIONS(1405), - [sym_YES] = ACTIONS(1405), - [sym_NO] = ACTIONS(1405), - [anon_sym___builtin_available] = ACTIONS(1405), - [anon_sym_ATavailable] = ACTIONS(1407), - [anon_sym_va_arg] = ACTIONS(1405), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [129] = { - [sym_identifier] = ACTIONS(1409), - [aux_sym_preproc_include_token1] = ACTIONS(1411), - [aux_sym_preproc_def_token1] = ACTIONS(1411), - [aux_sym_preproc_if_token1] = ACTIONS(1409), - [aux_sym_preproc_if_token2] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1409), - [aux_sym_preproc_else_token1] = ACTIONS(1409), - [aux_sym_preproc_elif_token1] = ACTIONS(1409), - [anon_sym_LPAREN2] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_typedef] = ACTIONS(1409), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym___attribute] = ACTIONS(1409), - [anon_sym___attribute__] = ACTIONS(1409), - [anon_sym___declspec] = ACTIONS(1409), - [anon_sym___cdecl] = ACTIONS(1409), - [anon_sym___clrcall] = ACTIONS(1409), - [anon_sym___stdcall] = ACTIONS(1409), - [anon_sym___fastcall] = ACTIONS(1409), - [anon_sym___thiscall] = ACTIONS(1409), - [anon_sym___vectorcall] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_auto] = ACTIONS(1409), - [anon_sym_register] = ACTIONS(1409), - [anon_sym_inline] = ACTIONS(1409), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_volatile] = ACTIONS(1409), - [anon_sym_restrict] = ACTIONS(1409), - [anon_sym__Atomic] = ACTIONS(1409), - [anon_sym_in] = ACTIONS(1409), - [anon_sym_out] = ACTIONS(1409), - [anon_sym_inout] = ACTIONS(1409), - [anon_sym_bycopy] = ACTIONS(1409), - [anon_sym_byref] = ACTIONS(1409), - [anon_sym_oneway] = ACTIONS(1409), - [anon_sym__Nullable] = ACTIONS(1409), - [anon_sym__Nonnull] = ACTIONS(1409), - [anon_sym__Nullable_result] = ACTIONS(1409), - [anon_sym__Null_unspecified] = ACTIONS(1409), - [anon_sym___autoreleasing] = ACTIONS(1409), - [anon_sym___nullable] = ACTIONS(1409), - [anon_sym___nonnull] = ACTIONS(1409), - [anon_sym___strong] = ACTIONS(1409), - [anon_sym___weak] = ACTIONS(1409), - [anon_sym___bridge] = ACTIONS(1409), - [anon_sym___bridge_transfer] = ACTIONS(1409), - [anon_sym___bridge_retained] = ACTIONS(1409), - [anon_sym___unsafe_unretained] = ACTIONS(1409), - [anon_sym___block] = ACTIONS(1409), - [anon_sym___kindof] = ACTIONS(1409), - [anon_sym___unused] = ACTIONS(1409), - [anon_sym__Complex] = ACTIONS(1409), - [anon_sym___complex] = ACTIONS(1409), - [anon_sym_IBOutlet] = ACTIONS(1409), - [anon_sym_IBInspectable] = ACTIONS(1409), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1409), - [anon_sym_signed] = ACTIONS(1409), - [anon_sym_unsigned] = ACTIONS(1409), - [anon_sym_long] = ACTIONS(1409), - [anon_sym_short] = ACTIONS(1409), - [sym_primitive_type] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_NS_ENUM] = ACTIONS(1409), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1409), - [anon_sym_NS_OPTIONS] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_switch] = ACTIONS(1409), - [anon_sym_case] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_do] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_goto] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_sizeof] = ACTIONS(1409), - [sym_number_literal] = ACTIONS(1411), - [anon_sym_L_SQUOTE] = ACTIONS(1411), - [anon_sym_u_SQUOTE] = ACTIONS(1411), - [anon_sym_U_SQUOTE] = ACTIONS(1411), - [anon_sym_u8_SQUOTE] = ACTIONS(1411), - [anon_sym_SQUOTE] = ACTIONS(1411), - [anon_sym_L_DQUOTE] = ACTIONS(1411), - [anon_sym_u_DQUOTE] = ACTIONS(1411), - [anon_sym_U_DQUOTE] = ACTIONS(1411), - [anon_sym_u8_DQUOTE] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym_true] = ACTIONS(1409), - [sym_false] = ACTIONS(1409), - [sym_null] = ACTIONS(1409), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1411), - [anon_sym_ATimport] = ACTIONS(1411), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1409), - [anon_sym_ATcompatibility_alias] = ACTIONS(1411), - [anon_sym_ATprotocol] = ACTIONS(1411), - [anon_sym_ATclass] = ACTIONS(1411), - [anon_sym_ATinterface] = ACTIONS(1411), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1409), - [sym_method_attribute_specifier] = ACTIONS(1409), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1409), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1409), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1409), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1409), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1409), - [anon_sym_NS_AVAILABLE] = ACTIONS(1409), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1409), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_API_AVAILABLE] = ACTIONS(1409), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_API_DEPRECATED] = ACTIONS(1409), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1409), - [anon_sym___deprecated_msg] = ACTIONS(1409), - [anon_sym___deprecated_enum_msg] = ACTIONS(1409), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1409), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1409), - [anon_sym_ATimplementation] = ACTIONS(1411), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___typeof] = ACTIONS(1409), - [anon_sym___typeof__] = ACTIONS(1409), - [sym_self] = ACTIONS(1409), - [sym_super] = ACTIONS(1409), - [sym_nil] = ACTIONS(1409), - [sym_id] = ACTIONS(1409), - [sym_instancetype] = ACTIONS(1409), - [sym_Class] = ACTIONS(1409), - [sym_SEL] = ACTIONS(1409), - [sym_IMP] = ACTIONS(1409), - [sym_BOOL] = ACTIONS(1409), - [sym_auto] = ACTIONS(1409), - [anon_sym_ATautoreleasepool] = ACTIONS(1411), - [anon_sym_ATsynchronized] = ACTIONS(1411), - [anon_sym_ATtry] = ACTIONS(1411), - [anon_sym_ATcatch] = ACTIONS(1411), - [anon_sym_ATfinally] = ACTIONS(1411), - [anon_sym_ATthrow] = ACTIONS(1411), - [anon_sym_ATselector] = ACTIONS(1411), - [anon_sym_ATencode] = ACTIONS(1411), - [anon_sym_AT] = ACTIONS(1409), - [sym_YES] = ACTIONS(1409), - [sym_NO] = ACTIONS(1409), - [anon_sym___builtin_available] = ACTIONS(1409), - [anon_sym_ATavailable] = ACTIONS(1411), - [anon_sym_va_arg] = ACTIONS(1409), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [130] = { - [sym_identifier] = ACTIONS(1413), - [aux_sym_preproc_include_token1] = ACTIONS(1415), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [aux_sym_preproc_if_token1] = ACTIONS(1413), - [aux_sym_preproc_if_token2] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1413), - [aux_sym_preproc_else_token1] = ACTIONS(1413), - [aux_sym_preproc_elif_token1] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym___attribute] = ACTIONS(1413), - [anon_sym___attribute__] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1413), - [anon_sym___cdecl] = ACTIONS(1413), - [anon_sym___clrcall] = ACTIONS(1413), - [anon_sym___stdcall] = ACTIONS(1413), - [anon_sym___fastcall] = ACTIONS(1413), - [anon_sym___thiscall] = ACTIONS(1413), - [anon_sym___vectorcall] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_auto] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_inline] = ACTIONS(1413), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_volatile] = ACTIONS(1413), - [anon_sym_restrict] = ACTIONS(1413), - [anon_sym__Atomic] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_out] = ACTIONS(1413), - [anon_sym_inout] = ACTIONS(1413), - [anon_sym_bycopy] = ACTIONS(1413), - [anon_sym_byref] = ACTIONS(1413), - [anon_sym_oneway] = ACTIONS(1413), - [anon_sym__Nullable] = ACTIONS(1413), - [anon_sym__Nonnull] = ACTIONS(1413), - [anon_sym__Nullable_result] = ACTIONS(1413), - [anon_sym__Null_unspecified] = ACTIONS(1413), - [anon_sym___autoreleasing] = ACTIONS(1413), - [anon_sym___nullable] = ACTIONS(1413), - [anon_sym___nonnull] = ACTIONS(1413), - [anon_sym___strong] = ACTIONS(1413), - [anon_sym___weak] = ACTIONS(1413), - [anon_sym___bridge] = ACTIONS(1413), - [anon_sym___bridge_transfer] = ACTIONS(1413), - [anon_sym___bridge_retained] = ACTIONS(1413), - [anon_sym___unsafe_unretained] = ACTIONS(1413), - [anon_sym___block] = ACTIONS(1413), - [anon_sym___kindof] = ACTIONS(1413), - [anon_sym___unused] = ACTIONS(1413), - [anon_sym__Complex] = ACTIONS(1413), - [anon_sym___complex] = ACTIONS(1413), - [anon_sym_IBOutlet] = ACTIONS(1413), - [anon_sym_IBInspectable] = ACTIONS(1413), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1413), - [anon_sym_unsigned] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [sym_primitive_type] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_NS_ENUM] = ACTIONS(1413), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1413), - [anon_sym_NS_OPTIONS] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_case] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_goto] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_sizeof] = ACTIONS(1413), - [sym_number_literal] = ACTIONS(1415), - [anon_sym_L_SQUOTE] = ACTIONS(1415), - [anon_sym_u_SQUOTE] = ACTIONS(1415), - [anon_sym_U_SQUOTE] = ACTIONS(1415), - [anon_sym_u8_SQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_L_DQUOTE] = ACTIONS(1415), - [anon_sym_u_DQUOTE] = ACTIONS(1415), - [anon_sym_U_DQUOTE] = ACTIONS(1415), - [anon_sym_u8_DQUOTE] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [sym_true] = ACTIONS(1413), - [sym_false] = ACTIONS(1413), - [sym_null] = ACTIONS(1413), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1415), - [anon_sym_ATimport] = ACTIONS(1415), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1413), - [anon_sym_ATcompatibility_alias] = ACTIONS(1415), - [anon_sym_ATprotocol] = ACTIONS(1415), - [anon_sym_ATclass] = ACTIONS(1415), - [anon_sym_ATinterface] = ACTIONS(1415), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1413), - [sym_method_attribute_specifier] = ACTIONS(1413), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1413), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE] = ACTIONS(1413), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_API_AVAILABLE] = ACTIONS(1413), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_API_DEPRECATED] = ACTIONS(1413), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1413), - [anon_sym___deprecated_msg] = ACTIONS(1413), - [anon_sym___deprecated_enum_msg] = ACTIONS(1413), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1413), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1413), - [anon_sym_ATimplementation] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym___typeof] = ACTIONS(1413), - [anon_sym___typeof__] = ACTIONS(1413), - [sym_self] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_nil] = ACTIONS(1413), - [sym_id] = ACTIONS(1413), - [sym_instancetype] = ACTIONS(1413), - [sym_Class] = ACTIONS(1413), - [sym_SEL] = ACTIONS(1413), - [sym_IMP] = ACTIONS(1413), - [sym_BOOL] = ACTIONS(1413), - [sym_auto] = ACTIONS(1413), - [anon_sym_ATautoreleasepool] = ACTIONS(1415), - [anon_sym_ATsynchronized] = ACTIONS(1415), - [anon_sym_ATtry] = ACTIONS(1415), - [anon_sym_ATcatch] = ACTIONS(1415), - [anon_sym_ATfinally] = ACTIONS(1415), - [anon_sym_ATthrow] = ACTIONS(1415), - [anon_sym_ATselector] = ACTIONS(1415), - [anon_sym_ATencode] = ACTIONS(1415), - [anon_sym_AT] = ACTIONS(1413), - [sym_YES] = ACTIONS(1413), - [sym_NO] = ACTIONS(1413), - [anon_sym___builtin_available] = ACTIONS(1413), - [anon_sym_ATavailable] = ACTIONS(1415), - [anon_sym_va_arg] = ACTIONS(1413), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [131] = { - [sym_identifier] = ACTIONS(1413), - [aux_sym_preproc_include_token1] = ACTIONS(1415), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [aux_sym_preproc_if_token1] = ACTIONS(1413), - [aux_sym_preproc_if_token2] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1413), - [aux_sym_preproc_else_token1] = ACTIONS(1413), - [aux_sym_preproc_elif_token1] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym___attribute] = ACTIONS(1413), - [anon_sym___attribute__] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1413), - [anon_sym___cdecl] = ACTIONS(1413), - [anon_sym___clrcall] = ACTIONS(1413), - [anon_sym___stdcall] = ACTIONS(1413), - [anon_sym___fastcall] = ACTIONS(1413), - [anon_sym___thiscall] = ACTIONS(1413), - [anon_sym___vectorcall] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_auto] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_inline] = ACTIONS(1413), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_volatile] = ACTIONS(1413), - [anon_sym_restrict] = ACTIONS(1413), - [anon_sym__Atomic] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_out] = ACTIONS(1413), - [anon_sym_inout] = ACTIONS(1413), - [anon_sym_bycopy] = ACTIONS(1413), - [anon_sym_byref] = ACTIONS(1413), - [anon_sym_oneway] = ACTIONS(1413), - [anon_sym__Nullable] = ACTIONS(1413), - [anon_sym__Nonnull] = ACTIONS(1413), - [anon_sym__Nullable_result] = ACTIONS(1413), - [anon_sym__Null_unspecified] = ACTIONS(1413), - [anon_sym___autoreleasing] = ACTIONS(1413), - [anon_sym___nullable] = ACTIONS(1413), - [anon_sym___nonnull] = ACTIONS(1413), - [anon_sym___strong] = ACTIONS(1413), - [anon_sym___weak] = ACTIONS(1413), - [anon_sym___bridge] = ACTIONS(1413), - [anon_sym___bridge_transfer] = ACTIONS(1413), - [anon_sym___bridge_retained] = ACTIONS(1413), - [anon_sym___unsafe_unretained] = ACTIONS(1413), - [anon_sym___block] = ACTIONS(1413), - [anon_sym___kindof] = ACTIONS(1413), - [anon_sym___unused] = ACTIONS(1413), - [anon_sym__Complex] = ACTIONS(1413), - [anon_sym___complex] = ACTIONS(1413), - [anon_sym_IBOutlet] = ACTIONS(1413), - [anon_sym_IBInspectable] = ACTIONS(1413), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1413), - [anon_sym_unsigned] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [sym_primitive_type] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_NS_ENUM] = ACTIONS(1413), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1413), - [anon_sym_NS_OPTIONS] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_case] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_goto] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_sizeof] = ACTIONS(1413), - [sym_number_literal] = ACTIONS(1415), - [anon_sym_L_SQUOTE] = ACTIONS(1415), - [anon_sym_u_SQUOTE] = ACTIONS(1415), - [anon_sym_U_SQUOTE] = ACTIONS(1415), - [anon_sym_u8_SQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_L_DQUOTE] = ACTIONS(1415), - [anon_sym_u_DQUOTE] = ACTIONS(1415), - [anon_sym_U_DQUOTE] = ACTIONS(1415), - [anon_sym_u8_DQUOTE] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [sym_true] = ACTIONS(1413), - [sym_false] = ACTIONS(1413), - [sym_null] = ACTIONS(1413), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1415), - [anon_sym_ATimport] = ACTIONS(1415), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1413), - [anon_sym_ATcompatibility_alias] = ACTIONS(1415), - [anon_sym_ATprotocol] = ACTIONS(1415), - [anon_sym_ATclass] = ACTIONS(1415), - [anon_sym_ATinterface] = ACTIONS(1415), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1413), - [sym_method_attribute_specifier] = ACTIONS(1413), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1413), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE] = ACTIONS(1413), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_API_AVAILABLE] = ACTIONS(1413), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_API_DEPRECATED] = ACTIONS(1413), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1413), - [anon_sym___deprecated_msg] = ACTIONS(1413), - [anon_sym___deprecated_enum_msg] = ACTIONS(1413), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1413), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1413), - [anon_sym_ATimplementation] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym___typeof] = ACTIONS(1413), - [anon_sym___typeof__] = ACTIONS(1413), - [sym_self] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_nil] = ACTIONS(1413), - [sym_id] = ACTIONS(1413), - [sym_instancetype] = ACTIONS(1413), - [sym_Class] = ACTIONS(1413), - [sym_SEL] = ACTIONS(1413), - [sym_IMP] = ACTIONS(1413), - [sym_BOOL] = ACTIONS(1413), - [sym_auto] = ACTIONS(1413), - [anon_sym_ATautoreleasepool] = ACTIONS(1415), - [anon_sym_ATsynchronized] = ACTIONS(1415), - [anon_sym_ATtry] = ACTIONS(1415), - [anon_sym_ATcatch] = ACTIONS(1415), - [anon_sym_ATfinally] = ACTIONS(1415), - [anon_sym_ATthrow] = ACTIONS(1415), - [anon_sym_ATselector] = ACTIONS(1415), - [anon_sym_ATencode] = ACTIONS(1415), - [anon_sym_AT] = ACTIONS(1413), - [sym_YES] = ACTIONS(1413), - [sym_NO] = ACTIONS(1413), - [anon_sym___builtin_available] = ACTIONS(1413), - [anon_sym_ATavailable] = ACTIONS(1415), - [anon_sym_va_arg] = ACTIONS(1413), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [132] = { - [sym_identifier] = ACTIONS(1409), - [aux_sym_preproc_include_token1] = ACTIONS(1411), - [aux_sym_preproc_def_token1] = ACTIONS(1411), - [aux_sym_preproc_if_token1] = ACTIONS(1409), - [aux_sym_preproc_if_token2] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1409), - [aux_sym_preproc_else_token1] = ACTIONS(1409), - [aux_sym_preproc_elif_token1] = ACTIONS(1409), - [anon_sym_LPAREN2] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_typedef] = ACTIONS(1409), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym___attribute] = ACTIONS(1409), - [anon_sym___attribute__] = ACTIONS(1409), - [anon_sym___declspec] = ACTIONS(1409), - [anon_sym___cdecl] = ACTIONS(1409), - [anon_sym___clrcall] = ACTIONS(1409), - [anon_sym___stdcall] = ACTIONS(1409), - [anon_sym___fastcall] = ACTIONS(1409), - [anon_sym___thiscall] = ACTIONS(1409), - [anon_sym___vectorcall] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_auto] = ACTIONS(1409), - [anon_sym_register] = ACTIONS(1409), - [anon_sym_inline] = ACTIONS(1409), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_volatile] = ACTIONS(1409), - [anon_sym_restrict] = ACTIONS(1409), - [anon_sym__Atomic] = ACTIONS(1409), - [anon_sym_in] = ACTIONS(1409), - [anon_sym_out] = ACTIONS(1409), - [anon_sym_inout] = ACTIONS(1409), - [anon_sym_bycopy] = ACTIONS(1409), - [anon_sym_byref] = ACTIONS(1409), - [anon_sym_oneway] = ACTIONS(1409), - [anon_sym__Nullable] = ACTIONS(1409), - [anon_sym__Nonnull] = ACTIONS(1409), - [anon_sym__Nullable_result] = ACTIONS(1409), - [anon_sym__Null_unspecified] = ACTIONS(1409), - [anon_sym___autoreleasing] = ACTIONS(1409), - [anon_sym___nullable] = ACTIONS(1409), - [anon_sym___nonnull] = ACTIONS(1409), - [anon_sym___strong] = ACTIONS(1409), - [anon_sym___weak] = ACTIONS(1409), - [anon_sym___bridge] = ACTIONS(1409), - [anon_sym___bridge_transfer] = ACTIONS(1409), - [anon_sym___bridge_retained] = ACTIONS(1409), - [anon_sym___unsafe_unretained] = ACTIONS(1409), - [anon_sym___block] = ACTIONS(1409), - [anon_sym___kindof] = ACTIONS(1409), - [anon_sym___unused] = ACTIONS(1409), - [anon_sym__Complex] = ACTIONS(1409), - [anon_sym___complex] = ACTIONS(1409), - [anon_sym_IBOutlet] = ACTIONS(1409), - [anon_sym_IBInspectable] = ACTIONS(1409), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1409), - [anon_sym_signed] = ACTIONS(1409), - [anon_sym_unsigned] = ACTIONS(1409), - [anon_sym_long] = ACTIONS(1409), - [anon_sym_short] = ACTIONS(1409), - [sym_primitive_type] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_NS_ENUM] = ACTIONS(1409), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1409), - [anon_sym_NS_OPTIONS] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_switch] = ACTIONS(1409), - [anon_sym_case] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_do] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_goto] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_sizeof] = ACTIONS(1409), - [sym_number_literal] = ACTIONS(1411), - [anon_sym_L_SQUOTE] = ACTIONS(1411), - [anon_sym_u_SQUOTE] = ACTIONS(1411), - [anon_sym_U_SQUOTE] = ACTIONS(1411), - [anon_sym_u8_SQUOTE] = ACTIONS(1411), - [anon_sym_SQUOTE] = ACTIONS(1411), - [anon_sym_L_DQUOTE] = ACTIONS(1411), - [anon_sym_u_DQUOTE] = ACTIONS(1411), - [anon_sym_U_DQUOTE] = ACTIONS(1411), - [anon_sym_u8_DQUOTE] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym_true] = ACTIONS(1409), - [sym_false] = ACTIONS(1409), - [sym_null] = ACTIONS(1409), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1411), - [anon_sym_ATimport] = ACTIONS(1411), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1409), - [anon_sym_ATcompatibility_alias] = ACTIONS(1411), - [anon_sym_ATprotocol] = ACTIONS(1411), - [anon_sym_ATclass] = ACTIONS(1411), - [anon_sym_ATinterface] = ACTIONS(1411), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1409), - [sym_method_attribute_specifier] = ACTIONS(1409), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1409), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1409), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1409), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1409), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1409), - [anon_sym_NS_AVAILABLE] = ACTIONS(1409), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1409), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_API_AVAILABLE] = ACTIONS(1409), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_API_DEPRECATED] = ACTIONS(1409), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1409), - [anon_sym___deprecated_msg] = ACTIONS(1409), - [anon_sym___deprecated_enum_msg] = ACTIONS(1409), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1409), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1409), - [anon_sym_ATimplementation] = ACTIONS(1411), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___typeof] = ACTIONS(1409), - [anon_sym___typeof__] = ACTIONS(1409), - [sym_self] = ACTIONS(1409), - [sym_super] = ACTIONS(1409), - [sym_nil] = ACTIONS(1409), - [sym_id] = ACTIONS(1409), - [sym_instancetype] = ACTIONS(1409), - [sym_Class] = ACTIONS(1409), - [sym_SEL] = ACTIONS(1409), - [sym_IMP] = ACTIONS(1409), - [sym_BOOL] = ACTIONS(1409), - [sym_auto] = ACTIONS(1409), - [anon_sym_ATautoreleasepool] = ACTIONS(1411), - [anon_sym_ATsynchronized] = ACTIONS(1411), - [anon_sym_ATtry] = ACTIONS(1411), - [anon_sym_ATcatch] = ACTIONS(1411), - [anon_sym_ATfinally] = ACTIONS(1411), - [anon_sym_ATthrow] = ACTIONS(1411), - [anon_sym_ATselector] = ACTIONS(1411), - [anon_sym_ATencode] = ACTIONS(1411), - [anon_sym_AT] = ACTIONS(1409), - [sym_YES] = ACTIONS(1409), - [sym_NO] = ACTIONS(1409), - [anon_sym___builtin_available] = ACTIONS(1409), - [anon_sym_ATavailable] = ACTIONS(1411), - [anon_sym_va_arg] = ACTIONS(1409), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [133] = { - [sym_identifier] = ACTIONS(1413), - [aux_sym_preproc_include_token1] = ACTIONS(1415), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [aux_sym_preproc_if_token1] = ACTIONS(1413), - [aux_sym_preproc_if_token2] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1413), - [aux_sym_preproc_else_token1] = ACTIONS(1413), - [aux_sym_preproc_elif_token1] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym___attribute] = ACTIONS(1413), - [anon_sym___attribute__] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1413), - [anon_sym___cdecl] = ACTIONS(1413), - [anon_sym___clrcall] = ACTIONS(1413), - [anon_sym___stdcall] = ACTIONS(1413), - [anon_sym___fastcall] = ACTIONS(1413), - [anon_sym___thiscall] = ACTIONS(1413), - [anon_sym___vectorcall] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_auto] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_inline] = ACTIONS(1413), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_volatile] = ACTIONS(1413), - [anon_sym_restrict] = ACTIONS(1413), - [anon_sym__Atomic] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_out] = ACTIONS(1413), - [anon_sym_inout] = ACTIONS(1413), - [anon_sym_bycopy] = ACTIONS(1413), - [anon_sym_byref] = ACTIONS(1413), - [anon_sym_oneway] = ACTIONS(1413), - [anon_sym__Nullable] = ACTIONS(1413), - [anon_sym__Nonnull] = ACTIONS(1413), - [anon_sym__Nullable_result] = ACTIONS(1413), - [anon_sym__Null_unspecified] = ACTIONS(1413), - [anon_sym___autoreleasing] = ACTIONS(1413), - [anon_sym___nullable] = ACTIONS(1413), - [anon_sym___nonnull] = ACTIONS(1413), - [anon_sym___strong] = ACTIONS(1413), - [anon_sym___weak] = ACTIONS(1413), - [anon_sym___bridge] = ACTIONS(1413), - [anon_sym___bridge_transfer] = ACTIONS(1413), - [anon_sym___bridge_retained] = ACTIONS(1413), - [anon_sym___unsafe_unretained] = ACTIONS(1413), - [anon_sym___block] = ACTIONS(1413), - [anon_sym___kindof] = ACTIONS(1413), - [anon_sym___unused] = ACTIONS(1413), - [anon_sym__Complex] = ACTIONS(1413), - [anon_sym___complex] = ACTIONS(1413), - [anon_sym_IBOutlet] = ACTIONS(1413), - [anon_sym_IBInspectable] = ACTIONS(1413), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1413), - [anon_sym_unsigned] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [sym_primitive_type] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_NS_ENUM] = ACTIONS(1413), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1413), - [anon_sym_NS_OPTIONS] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_case] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_goto] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_sizeof] = ACTIONS(1413), - [sym_number_literal] = ACTIONS(1415), - [anon_sym_L_SQUOTE] = ACTIONS(1415), - [anon_sym_u_SQUOTE] = ACTIONS(1415), - [anon_sym_U_SQUOTE] = ACTIONS(1415), - [anon_sym_u8_SQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_L_DQUOTE] = ACTIONS(1415), - [anon_sym_u_DQUOTE] = ACTIONS(1415), - [anon_sym_U_DQUOTE] = ACTIONS(1415), - [anon_sym_u8_DQUOTE] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [sym_true] = ACTIONS(1413), - [sym_false] = ACTIONS(1413), - [sym_null] = ACTIONS(1413), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1415), - [anon_sym_ATimport] = ACTIONS(1415), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1413), - [anon_sym_ATcompatibility_alias] = ACTIONS(1415), - [anon_sym_ATprotocol] = ACTIONS(1415), - [anon_sym_ATclass] = ACTIONS(1415), - [anon_sym_ATinterface] = ACTIONS(1415), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1413), - [sym_method_attribute_specifier] = ACTIONS(1413), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1413), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE] = ACTIONS(1413), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_API_AVAILABLE] = ACTIONS(1413), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_API_DEPRECATED] = ACTIONS(1413), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1413), - [anon_sym___deprecated_msg] = ACTIONS(1413), - [anon_sym___deprecated_enum_msg] = ACTIONS(1413), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1413), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1413), - [anon_sym_ATimplementation] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym___typeof] = ACTIONS(1413), - [anon_sym___typeof__] = ACTIONS(1413), - [sym_self] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_nil] = ACTIONS(1413), - [sym_id] = ACTIONS(1413), - [sym_instancetype] = ACTIONS(1413), - [sym_Class] = ACTIONS(1413), - [sym_SEL] = ACTIONS(1413), - [sym_IMP] = ACTIONS(1413), - [sym_BOOL] = ACTIONS(1413), - [sym_auto] = ACTIONS(1413), - [anon_sym_ATautoreleasepool] = ACTIONS(1415), - [anon_sym_ATsynchronized] = ACTIONS(1415), - [anon_sym_ATtry] = ACTIONS(1415), - [anon_sym_ATcatch] = ACTIONS(1415), - [anon_sym_ATfinally] = ACTIONS(1415), - [anon_sym_ATthrow] = ACTIONS(1415), - [anon_sym_ATselector] = ACTIONS(1415), - [anon_sym_ATencode] = ACTIONS(1415), - [anon_sym_AT] = ACTIONS(1413), - [sym_YES] = ACTIONS(1413), - [sym_NO] = ACTIONS(1413), - [anon_sym___builtin_available] = ACTIONS(1413), - [anon_sym_ATavailable] = ACTIONS(1415), - [anon_sym_va_arg] = ACTIONS(1413), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [134] = { - [sym_identifier] = ACTIONS(1413), - [aux_sym_preproc_include_token1] = ACTIONS(1415), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [aux_sym_preproc_if_token1] = ACTIONS(1413), - [aux_sym_preproc_if_token2] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1413), - [aux_sym_preproc_else_token1] = ACTIONS(1413), - [aux_sym_preproc_elif_token1] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym___attribute] = ACTIONS(1413), - [anon_sym___attribute__] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1413), - [anon_sym___cdecl] = ACTIONS(1413), - [anon_sym___clrcall] = ACTIONS(1413), - [anon_sym___stdcall] = ACTIONS(1413), - [anon_sym___fastcall] = ACTIONS(1413), - [anon_sym___thiscall] = ACTIONS(1413), - [anon_sym___vectorcall] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_auto] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_inline] = ACTIONS(1413), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_volatile] = ACTIONS(1413), - [anon_sym_restrict] = ACTIONS(1413), - [anon_sym__Atomic] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_out] = ACTIONS(1413), - [anon_sym_inout] = ACTIONS(1413), - [anon_sym_bycopy] = ACTIONS(1413), - [anon_sym_byref] = ACTIONS(1413), - [anon_sym_oneway] = ACTIONS(1413), - [anon_sym__Nullable] = ACTIONS(1413), - [anon_sym__Nonnull] = ACTIONS(1413), - [anon_sym__Nullable_result] = ACTIONS(1413), - [anon_sym__Null_unspecified] = ACTIONS(1413), - [anon_sym___autoreleasing] = ACTIONS(1413), - [anon_sym___nullable] = ACTIONS(1413), - [anon_sym___nonnull] = ACTIONS(1413), - [anon_sym___strong] = ACTIONS(1413), - [anon_sym___weak] = ACTIONS(1413), - [anon_sym___bridge] = ACTIONS(1413), - [anon_sym___bridge_transfer] = ACTIONS(1413), - [anon_sym___bridge_retained] = ACTIONS(1413), - [anon_sym___unsafe_unretained] = ACTIONS(1413), - [anon_sym___block] = ACTIONS(1413), - [anon_sym___kindof] = ACTIONS(1413), - [anon_sym___unused] = ACTIONS(1413), - [anon_sym__Complex] = ACTIONS(1413), - [anon_sym___complex] = ACTIONS(1413), - [anon_sym_IBOutlet] = ACTIONS(1413), - [anon_sym_IBInspectable] = ACTIONS(1413), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1413), - [anon_sym_unsigned] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [sym_primitive_type] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_NS_ENUM] = ACTIONS(1413), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1413), - [anon_sym_NS_OPTIONS] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_case] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_goto] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_sizeof] = ACTIONS(1413), - [sym_number_literal] = ACTIONS(1415), - [anon_sym_L_SQUOTE] = ACTIONS(1415), - [anon_sym_u_SQUOTE] = ACTIONS(1415), - [anon_sym_U_SQUOTE] = ACTIONS(1415), - [anon_sym_u8_SQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_L_DQUOTE] = ACTIONS(1415), - [anon_sym_u_DQUOTE] = ACTIONS(1415), - [anon_sym_U_DQUOTE] = ACTIONS(1415), - [anon_sym_u8_DQUOTE] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [sym_true] = ACTIONS(1413), - [sym_false] = ACTIONS(1413), - [sym_null] = ACTIONS(1413), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1415), - [anon_sym_ATimport] = ACTIONS(1415), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1413), - [anon_sym_ATcompatibility_alias] = ACTIONS(1415), - [anon_sym_ATprotocol] = ACTIONS(1415), - [anon_sym_ATclass] = ACTIONS(1415), - [anon_sym_ATinterface] = ACTIONS(1415), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1413), - [sym_method_attribute_specifier] = ACTIONS(1413), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1413), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE] = ACTIONS(1413), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_API_AVAILABLE] = ACTIONS(1413), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_API_DEPRECATED] = ACTIONS(1413), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1413), - [anon_sym___deprecated_msg] = ACTIONS(1413), - [anon_sym___deprecated_enum_msg] = ACTIONS(1413), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1413), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1413), - [anon_sym_ATimplementation] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym___typeof] = ACTIONS(1413), - [anon_sym___typeof__] = ACTIONS(1413), - [sym_self] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_nil] = ACTIONS(1413), - [sym_id] = ACTIONS(1413), - [sym_instancetype] = ACTIONS(1413), - [sym_Class] = ACTIONS(1413), - [sym_SEL] = ACTIONS(1413), - [sym_IMP] = ACTIONS(1413), - [sym_BOOL] = ACTIONS(1413), - [sym_auto] = ACTIONS(1413), - [anon_sym_ATautoreleasepool] = ACTIONS(1415), - [anon_sym_ATsynchronized] = ACTIONS(1415), - [anon_sym_ATtry] = ACTIONS(1415), - [anon_sym_ATcatch] = ACTIONS(1415), - [anon_sym_ATfinally] = ACTIONS(1415), - [anon_sym_ATthrow] = ACTIONS(1415), - [anon_sym_ATselector] = ACTIONS(1415), - [anon_sym_ATencode] = ACTIONS(1415), - [anon_sym_AT] = ACTIONS(1413), - [sym_YES] = ACTIONS(1413), - [sym_NO] = ACTIONS(1413), - [anon_sym___builtin_available] = ACTIONS(1413), - [anon_sym_ATavailable] = ACTIONS(1415), - [anon_sym_va_arg] = ACTIONS(1413), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [135] = { - [ts_builtin_sym_end] = ACTIONS(1417), + [140] = { [sym_identifier] = ACTIONS(1419), - [aux_sym_preproc_include_token1] = ACTIONS(1417), - [aux_sym_preproc_def_token1] = ACTIONS(1417), - [anon_sym_RPAREN] = ACTIONS(1417), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), [aux_sym_preproc_if_token1] = ACTIONS(1419), + [aux_sym_preproc_if_token2] = ACTIONS(1419), [aux_sym_preproc_ifdef_token1] = ACTIONS(1419), [aux_sym_preproc_ifdef_token2] = ACTIONS(1419), - [anon_sym_LPAREN2] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), + [aux_sym_preproc_else_token1] = ACTIONS(1419), + [aux_sym_preproc_elif_token1] = ACTIONS(1419), + [anon_sym_LPAREN2] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1422), [anon_sym_DASH] = ACTIONS(1419), [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1417), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_CARET] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), [anon_sym_typedef] = ACTIONS(1419), [anon_sym_extern] = ACTIONS(1419), [anon_sym___attribute] = ACTIONS(1419), @@ -49349,9 +50264,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1419), [anon_sym___thiscall] = ACTIONS(1419), [anon_sym___vectorcall] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_RBRACE] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1422), [anon_sym_static] = ACTIONS(1419), [anon_sym_auto] = ACTIONS(1419), [anon_sym_register] = ACTIONS(1419), @@ -49394,9 +50308,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1419), [sym_primitive_type] = ACTIONS(1419), [anon_sym_enum] = ACTIONS(1419), - [anon_sym_NS_ENUM] = ACTIONS(1419), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1419), - [anon_sym_NS_OPTIONS] = ACTIONS(1419), [anon_sym_struct] = ACTIONS(1419), [anon_sym_union] = ACTIONS(1419), [anon_sym_if] = ACTIONS(1419), @@ -49411,31 +50322,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1419), [anon_sym_continue] = ACTIONS(1419), [anon_sym_goto] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1417), - [anon_sym_PLUS_PLUS] = ACTIONS(1417), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), [anon_sym_sizeof] = ACTIONS(1419), - [sym_number_literal] = ACTIONS(1417), - [anon_sym_L_SQUOTE] = ACTIONS(1417), - [anon_sym_u_SQUOTE] = ACTIONS(1417), - [anon_sym_U_SQUOTE] = ACTIONS(1417), - [anon_sym_u8_SQUOTE] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_L_DQUOTE] = ACTIONS(1417), - [anon_sym_u_DQUOTE] = ACTIONS(1417), - [anon_sym_U_DQUOTE] = ACTIONS(1417), - [anon_sym_u8_DQUOTE] = ACTIONS(1417), - [anon_sym_DQUOTE] = ACTIONS(1417), + [sym_number_literal] = ACTIONS(1422), + [anon_sym_L_SQUOTE] = ACTIONS(1422), + [anon_sym_u_SQUOTE] = ACTIONS(1422), + [anon_sym_U_SQUOTE] = ACTIONS(1422), + [anon_sym_u8_SQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [anon_sym_L_DQUOTE] = ACTIONS(1422), + [anon_sym_u_DQUOTE] = ACTIONS(1422), + [anon_sym_U_DQUOTE] = ACTIONS(1422), + [anon_sym_u8_DQUOTE] = ACTIONS(1422), + [anon_sym_DQUOTE] = ACTIONS(1422), [sym_true] = ACTIONS(1419), [sym_false] = ACTIONS(1419), [sym_null] = ACTIONS(1419), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1417), - [anon_sym_ATimport] = ACTIONS(1417), + [anon_sym_POUNDimport] = ACTIONS(1422), + [anon_sym_ATimport] = ACTIONS(1422), [sym__ns_assume_nonnull_declaration] = ACTIONS(1419), - [anon_sym_ATcompatibility_alias] = ACTIONS(1417), - [anon_sym_ATprotocol] = ACTIONS(1417), - [anon_sym_ATclass] = ACTIONS(1417), - [anon_sym_ATinterface] = ACTIONS(1417), + [anon_sym_ATcompatibility_alias] = ACTIONS(1422), + [anon_sym_ATprotocol] = ACTIONS(1422), + [anon_sym_ATclass] = ACTIONS(1422), + [anon_sym_ATinterface] = ACTIONS(1422), [sym_class_interface_attribute_sepcifier] = ACTIONS(1419), [sym_method_attribute_specifier] = ACTIONS(1419), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1419), @@ -49462,7 +50373,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1419), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1419), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1419), - [anon_sym_ATimplementation] = ACTIONS(1417), + [anon_sym_ATimplementation] = ACTIONS(1422), + [anon_sym_NS_ENUM] = ACTIONS(1419), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1419), + [anon_sym_NS_OPTIONS] = ACTIONS(1419), [anon_sym_typeof] = ACTIONS(1419), [anon_sym___typeof] = ACTIONS(1419), [anon_sym___typeof__] = ACTIONS(1419), @@ -49476,559 +50390,382 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1419), [sym_BOOL] = ACTIONS(1419), [sym_auto] = ACTIONS(1419), - [anon_sym_ATautoreleasepool] = ACTIONS(1417), - [anon_sym_ATsynchronized] = ACTIONS(1417), - [anon_sym_ATtry] = ACTIONS(1417), - [anon_sym_ATcatch] = ACTIONS(1417), - [anon_sym_ATfinally] = ACTIONS(1417), - [anon_sym_ATthrow] = ACTIONS(1417), - [anon_sym_ATselector] = ACTIONS(1417), - [anon_sym_ATencode] = ACTIONS(1417), + [anon_sym_ATautoreleasepool] = ACTIONS(1422), + [anon_sym_ATsynchronized] = ACTIONS(1422), + [anon_sym_ATtry] = ACTIONS(1422), + [anon_sym_ATcatch] = ACTIONS(1422), + [anon_sym_ATfinally] = ACTIONS(1422), + [anon_sym_ATthrow] = ACTIONS(1422), + [anon_sym_ATselector] = ACTIONS(1422), + [anon_sym_ATencode] = ACTIONS(1422), [anon_sym_AT] = ACTIONS(1419), [sym_YES] = ACTIONS(1419), [sym_NO] = ACTIONS(1419), [anon_sym___builtin_available] = ACTIONS(1419), - [anon_sym_ATavailable] = ACTIONS(1417), + [anon_sym_ATavailable] = ACTIONS(1422), [anon_sym_va_arg] = ACTIONS(1419), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [136] = { - [ts_builtin_sym_end] = ACTIONS(1421), - [sym_identifier] = ACTIONS(1423), - [aux_sym_preproc_include_token1] = ACTIONS(1421), - [aux_sym_preproc_def_token1] = ACTIONS(1421), - [anon_sym_RPAREN] = ACTIONS(1421), - [aux_sym_preproc_if_token1] = ACTIONS(1423), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1423), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1423), - [anon_sym_LPAREN2] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym_typedef] = ACTIONS(1423), - [anon_sym_extern] = ACTIONS(1423), - [anon_sym___attribute] = ACTIONS(1423), - [anon_sym___attribute__] = ACTIONS(1423), - [anon_sym___declspec] = ACTIONS(1423), - [anon_sym___cdecl] = ACTIONS(1423), - [anon_sym___clrcall] = ACTIONS(1423), - [anon_sym___stdcall] = ACTIONS(1423), - [anon_sym___fastcall] = ACTIONS(1423), - [anon_sym___thiscall] = ACTIONS(1423), - [anon_sym___vectorcall] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1421), - [anon_sym_RBRACE] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_auto] = ACTIONS(1423), - [anon_sym_register] = ACTIONS(1423), - [anon_sym_inline] = ACTIONS(1423), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1423), - [anon_sym_volatile] = ACTIONS(1423), - [anon_sym_restrict] = ACTIONS(1423), - [anon_sym__Atomic] = ACTIONS(1423), - [anon_sym_in] = ACTIONS(1423), - [anon_sym_out] = ACTIONS(1423), - [anon_sym_inout] = ACTIONS(1423), - [anon_sym_bycopy] = ACTIONS(1423), - [anon_sym_byref] = ACTIONS(1423), - [anon_sym_oneway] = ACTIONS(1423), - [anon_sym__Nullable] = ACTIONS(1423), - [anon_sym__Nonnull] = ACTIONS(1423), - [anon_sym__Nullable_result] = ACTIONS(1423), - [anon_sym__Null_unspecified] = ACTIONS(1423), - [anon_sym___autoreleasing] = ACTIONS(1423), - [anon_sym___nullable] = ACTIONS(1423), - [anon_sym___nonnull] = ACTIONS(1423), - [anon_sym___strong] = ACTIONS(1423), - [anon_sym___weak] = ACTIONS(1423), - [anon_sym___bridge] = ACTIONS(1423), - [anon_sym___bridge_transfer] = ACTIONS(1423), - [anon_sym___bridge_retained] = ACTIONS(1423), - [anon_sym___unsafe_unretained] = ACTIONS(1423), - [anon_sym___block] = ACTIONS(1423), - [anon_sym___kindof] = ACTIONS(1423), - [anon_sym___unused] = ACTIONS(1423), - [anon_sym__Complex] = ACTIONS(1423), - [anon_sym___complex] = ACTIONS(1423), - [anon_sym_IBOutlet] = ACTIONS(1423), - [anon_sym_IBInspectable] = ACTIONS(1423), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1423), - [anon_sym_signed] = ACTIONS(1423), - [anon_sym_unsigned] = ACTIONS(1423), - [anon_sym_long] = ACTIONS(1423), - [anon_sym_short] = ACTIONS(1423), - [sym_primitive_type] = ACTIONS(1423), - [anon_sym_enum] = ACTIONS(1423), - [anon_sym_NS_ENUM] = ACTIONS(1423), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1423), - [anon_sym_NS_OPTIONS] = ACTIONS(1423), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1423), - [anon_sym_if] = ACTIONS(1423), - [anon_sym_else] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(1423), - [anon_sym_case] = ACTIONS(1423), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_do] = ACTIONS(1423), - [anon_sym_for] = ACTIONS(1423), - [anon_sym_return] = ACTIONS(1423), - [anon_sym_break] = ACTIONS(1423), - [anon_sym_continue] = ACTIONS(1423), - [anon_sym_goto] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1421), - [anon_sym_PLUS_PLUS] = ACTIONS(1421), - [anon_sym_sizeof] = ACTIONS(1423), - [sym_number_literal] = ACTIONS(1421), - [anon_sym_L_SQUOTE] = ACTIONS(1421), - [anon_sym_u_SQUOTE] = ACTIONS(1421), - [anon_sym_U_SQUOTE] = ACTIONS(1421), - [anon_sym_u8_SQUOTE] = ACTIONS(1421), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_L_DQUOTE] = ACTIONS(1421), - [anon_sym_u_DQUOTE] = ACTIONS(1421), - [anon_sym_U_DQUOTE] = ACTIONS(1421), - [anon_sym_u8_DQUOTE] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1421), - [sym_true] = ACTIONS(1423), - [sym_false] = ACTIONS(1423), - [sym_null] = ACTIONS(1423), + [141] = { + [sym_identifier] = ACTIONS(1425), + [aux_sym_preproc_include_token1] = ACTIONS(1427), + [aux_sym_preproc_def_token1] = ACTIONS(1427), + [aux_sym_preproc_if_token1] = ACTIONS(1425), + [aux_sym_preproc_if_token2] = ACTIONS(1425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1425), + [aux_sym_preproc_else_token1] = ACTIONS(1425), + [aux_sym_preproc_elif_token1] = ACTIONS(1425), + [anon_sym_LPAREN2] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_typedef] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym___attribute] = ACTIONS(1425), + [anon_sym___attribute__] = ACTIONS(1425), + [anon_sym___declspec] = ACTIONS(1425), + [anon_sym___cdecl] = ACTIONS(1425), + [anon_sym___clrcall] = ACTIONS(1425), + [anon_sym___stdcall] = ACTIONS(1425), + [anon_sym___fastcall] = ACTIONS(1425), + [anon_sym___thiscall] = ACTIONS(1425), + [anon_sym___vectorcall] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_auto] = ACTIONS(1425), + [anon_sym_register] = ACTIONS(1425), + [anon_sym_inline] = ACTIONS(1425), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_volatile] = ACTIONS(1425), + [anon_sym_restrict] = ACTIONS(1425), + [anon_sym__Atomic] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_out] = ACTIONS(1425), + [anon_sym_inout] = ACTIONS(1425), + [anon_sym_bycopy] = ACTIONS(1425), + [anon_sym_byref] = ACTIONS(1425), + [anon_sym_oneway] = ACTIONS(1425), + [anon_sym__Nullable] = ACTIONS(1425), + [anon_sym__Nonnull] = ACTIONS(1425), + [anon_sym__Nullable_result] = ACTIONS(1425), + [anon_sym__Null_unspecified] = ACTIONS(1425), + [anon_sym___autoreleasing] = ACTIONS(1425), + [anon_sym___nullable] = ACTIONS(1425), + [anon_sym___nonnull] = ACTIONS(1425), + [anon_sym___strong] = ACTIONS(1425), + [anon_sym___weak] = ACTIONS(1425), + [anon_sym___bridge] = ACTIONS(1425), + [anon_sym___bridge_transfer] = ACTIONS(1425), + [anon_sym___bridge_retained] = ACTIONS(1425), + [anon_sym___unsafe_unretained] = ACTIONS(1425), + [anon_sym___block] = ACTIONS(1425), + [anon_sym___kindof] = ACTIONS(1425), + [anon_sym___unused] = ACTIONS(1425), + [anon_sym__Complex] = ACTIONS(1425), + [anon_sym___complex] = ACTIONS(1425), + [anon_sym_IBOutlet] = ACTIONS(1425), + [anon_sym_IBInspectable] = ACTIONS(1425), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1425), + [anon_sym_signed] = ACTIONS(1425), + [anon_sym_unsigned] = ACTIONS(1425), + [anon_sym_long] = ACTIONS(1425), + [anon_sym_short] = ACTIONS(1425), + [sym_primitive_type] = ACTIONS(1425), + [anon_sym_enum] = ACTIONS(1425), + [anon_sym_struct] = ACTIONS(1425), + [anon_sym_union] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_switch] = ACTIONS(1425), + [anon_sym_case] = ACTIONS(1425), + [anon_sym_default] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_goto] = ACTIONS(1425), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_sizeof] = ACTIONS(1425), + [sym_number_literal] = ACTIONS(1427), + [anon_sym_L_SQUOTE] = ACTIONS(1427), + [anon_sym_u_SQUOTE] = ACTIONS(1427), + [anon_sym_U_SQUOTE] = ACTIONS(1427), + [anon_sym_u8_SQUOTE] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_L_DQUOTE] = ACTIONS(1427), + [anon_sym_u_DQUOTE] = ACTIONS(1427), + [anon_sym_U_DQUOTE] = ACTIONS(1427), + [anon_sym_u8_DQUOTE] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [sym_true] = ACTIONS(1425), + [sym_false] = ACTIONS(1425), + [sym_null] = ACTIONS(1425), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1421), - [anon_sym_ATimport] = ACTIONS(1421), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1423), - [anon_sym_ATcompatibility_alias] = ACTIONS(1421), - [anon_sym_ATprotocol] = ACTIONS(1421), - [anon_sym_ATclass] = ACTIONS(1421), - [anon_sym_ATinterface] = ACTIONS(1421), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1423), - [sym_method_attribute_specifier] = ACTIONS(1423), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1423), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1423), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1423), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1423), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1423), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1423), - [anon_sym_NS_AVAILABLE] = ACTIONS(1423), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1423), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1423), - [anon_sym_API_AVAILABLE] = ACTIONS(1423), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1423), - [anon_sym_API_DEPRECATED] = ACTIONS(1423), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1423), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1423), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1423), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1423), - [anon_sym___deprecated_msg] = ACTIONS(1423), - [anon_sym___deprecated_enum_msg] = ACTIONS(1423), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1423), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1423), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1423), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1423), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1423), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1423), - [anon_sym_ATimplementation] = ACTIONS(1421), - [anon_sym_typeof] = ACTIONS(1423), - [anon_sym___typeof] = ACTIONS(1423), - [anon_sym___typeof__] = ACTIONS(1423), - [sym_self] = ACTIONS(1423), - [sym_super] = ACTIONS(1423), - [sym_nil] = ACTIONS(1423), - [sym_id] = ACTIONS(1423), - [sym_instancetype] = ACTIONS(1423), - [sym_Class] = ACTIONS(1423), - [sym_SEL] = ACTIONS(1423), - [sym_IMP] = ACTIONS(1423), - [sym_BOOL] = ACTIONS(1423), - [sym_auto] = ACTIONS(1423), - [anon_sym_ATautoreleasepool] = ACTIONS(1421), - [anon_sym_ATsynchronized] = ACTIONS(1421), - [anon_sym_ATtry] = ACTIONS(1421), - [anon_sym_ATcatch] = ACTIONS(1421), - [anon_sym_ATfinally] = ACTIONS(1421), - [anon_sym_ATthrow] = ACTIONS(1421), - [anon_sym_ATselector] = ACTIONS(1421), - [anon_sym_ATencode] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [sym_YES] = ACTIONS(1423), - [sym_NO] = ACTIONS(1423), - [anon_sym___builtin_available] = ACTIONS(1423), - [anon_sym_ATavailable] = ACTIONS(1421), - [anon_sym_va_arg] = ACTIONS(1423), + [anon_sym_POUNDimport] = ACTIONS(1427), + [anon_sym_ATimport] = ACTIONS(1427), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1425), + [anon_sym_ATcompatibility_alias] = ACTIONS(1427), + [anon_sym_ATprotocol] = ACTIONS(1427), + [anon_sym_ATclass] = ACTIONS(1427), + [anon_sym_ATinterface] = ACTIONS(1427), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1425), + [sym_method_attribute_specifier] = ACTIONS(1425), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1425), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1425), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1425), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1425), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1425), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1425), + [anon_sym_NS_AVAILABLE] = ACTIONS(1425), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1425), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1425), + [anon_sym_API_AVAILABLE] = ACTIONS(1425), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1425), + [anon_sym_API_DEPRECATED] = ACTIONS(1425), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1425), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1425), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1425), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1425), + [anon_sym___deprecated_msg] = ACTIONS(1425), + [anon_sym___deprecated_enum_msg] = ACTIONS(1425), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1425), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1425), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1425), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1425), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1425), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1425), + [anon_sym_ATimplementation] = ACTIONS(1427), + [anon_sym_NS_ENUM] = ACTIONS(1425), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1425), + [anon_sym_NS_OPTIONS] = ACTIONS(1425), + [anon_sym_typeof] = ACTIONS(1425), + [anon_sym___typeof] = ACTIONS(1425), + [anon_sym___typeof__] = ACTIONS(1425), + [sym_self] = ACTIONS(1425), + [sym_super] = ACTIONS(1425), + [sym_nil] = ACTIONS(1425), + [sym_id] = ACTIONS(1425), + [sym_instancetype] = ACTIONS(1425), + [sym_Class] = ACTIONS(1425), + [sym_SEL] = ACTIONS(1425), + [sym_IMP] = ACTIONS(1425), + [sym_BOOL] = ACTIONS(1425), + [sym_auto] = ACTIONS(1425), + [anon_sym_ATautoreleasepool] = ACTIONS(1427), + [anon_sym_ATsynchronized] = ACTIONS(1427), + [anon_sym_ATtry] = ACTIONS(1427), + [anon_sym_ATcatch] = ACTIONS(1427), + [anon_sym_ATfinally] = ACTIONS(1427), + [anon_sym_ATthrow] = ACTIONS(1427), + [anon_sym_ATselector] = ACTIONS(1427), + [anon_sym_ATencode] = ACTIONS(1427), + [anon_sym_AT] = ACTIONS(1425), + [sym_YES] = ACTIONS(1425), + [sym_NO] = ACTIONS(1425), + [anon_sym___builtin_available] = ACTIONS(1425), + [anon_sym_ATavailable] = ACTIONS(1427), + [anon_sym_va_arg] = ACTIONS(1425), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [137] = { - [ts_builtin_sym_end] = ACTIONS(1425), - [sym_identifier] = ACTIONS(1427), - [aux_sym_preproc_include_token1] = ACTIONS(1425), - [aux_sym_preproc_def_token1] = ACTIONS(1425), - [anon_sym_RPAREN] = ACTIONS(1425), - [aux_sym_preproc_if_token1] = ACTIONS(1427), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1427), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1427), - [anon_sym_LPAREN2] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1425), - [anon_sym_TILDE] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_CARET] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_typedef] = ACTIONS(1427), - [anon_sym_extern] = ACTIONS(1427), - [anon_sym___attribute] = ACTIONS(1427), - [anon_sym___attribute__] = ACTIONS(1427), - [anon_sym___declspec] = ACTIONS(1427), - [anon_sym___cdecl] = ACTIONS(1427), - [anon_sym___clrcall] = ACTIONS(1427), - [anon_sym___stdcall] = ACTIONS(1427), - [anon_sym___fastcall] = ACTIONS(1427), - [anon_sym___thiscall] = ACTIONS(1427), - [anon_sym___vectorcall] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1425), - [anon_sym_RBRACE] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_auto] = ACTIONS(1427), - [anon_sym_register] = ACTIONS(1427), - [anon_sym_inline] = ACTIONS(1427), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(1427), - [anon_sym_volatile] = ACTIONS(1427), - [anon_sym_restrict] = ACTIONS(1427), - [anon_sym__Atomic] = ACTIONS(1427), - [anon_sym_in] = ACTIONS(1427), - [anon_sym_out] = ACTIONS(1427), - [anon_sym_inout] = ACTIONS(1427), - [anon_sym_bycopy] = ACTIONS(1427), - [anon_sym_byref] = ACTIONS(1427), - [anon_sym_oneway] = ACTIONS(1427), - [anon_sym__Nullable] = ACTIONS(1427), - [anon_sym__Nonnull] = ACTIONS(1427), - [anon_sym__Nullable_result] = ACTIONS(1427), - [anon_sym__Null_unspecified] = ACTIONS(1427), - [anon_sym___autoreleasing] = ACTIONS(1427), - [anon_sym___nullable] = ACTIONS(1427), - [anon_sym___nonnull] = ACTIONS(1427), - [anon_sym___strong] = ACTIONS(1427), - [anon_sym___weak] = ACTIONS(1427), - [anon_sym___bridge] = ACTIONS(1427), - [anon_sym___bridge_transfer] = ACTIONS(1427), - [anon_sym___bridge_retained] = ACTIONS(1427), - [anon_sym___unsafe_unretained] = ACTIONS(1427), - [anon_sym___block] = ACTIONS(1427), - [anon_sym___kindof] = ACTIONS(1427), - [anon_sym___unused] = ACTIONS(1427), - [anon_sym__Complex] = ACTIONS(1427), - [anon_sym___complex] = ACTIONS(1427), - [anon_sym_IBOutlet] = ACTIONS(1427), - [anon_sym_IBInspectable] = ACTIONS(1427), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1427), - [anon_sym_signed] = ACTIONS(1427), - [anon_sym_unsigned] = ACTIONS(1427), - [anon_sym_long] = ACTIONS(1427), - [anon_sym_short] = ACTIONS(1427), - [sym_primitive_type] = ACTIONS(1427), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_NS_ENUM] = ACTIONS(1427), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1427), - [anon_sym_NS_OPTIONS] = ACTIONS(1427), - [anon_sym_struct] = ACTIONS(1427), - [anon_sym_union] = ACTIONS(1427), - [anon_sym_if] = ACTIONS(1427), - [anon_sym_else] = ACTIONS(1427), - [anon_sym_switch] = ACTIONS(1427), - [anon_sym_case] = ACTIONS(1427), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_while] = ACTIONS(1427), - [anon_sym_do] = ACTIONS(1427), - [anon_sym_for] = ACTIONS(1427), - [anon_sym_return] = ACTIONS(1427), - [anon_sym_break] = ACTIONS(1427), - [anon_sym_continue] = ACTIONS(1427), - [anon_sym_goto] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1425), - [anon_sym_PLUS_PLUS] = ACTIONS(1425), - [anon_sym_sizeof] = ACTIONS(1427), - [sym_number_literal] = ACTIONS(1425), - [anon_sym_L_SQUOTE] = ACTIONS(1425), - [anon_sym_u_SQUOTE] = ACTIONS(1425), - [anon_sym_U_SQUOTE] = ACTIONS(1425), - [anon_sym_u8_SQUOTE] = ACTIONS(1425), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_L_DQUOTE] = ACTIONS(1425), - [anon_sym_u_DQUOTE] = ACTIONS(1425), - [anon_sym_U_DQUOTE] = ACTIONS(1425), - [anon_sym_u8_DQUOTE] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(1425), - [sym_true] = ACTIONS(1427), - [sym_false] = ACTIONS(1427), - [sym_null] = ACTIONS(1427), + [142] = { + [sym_identifier] = ACTIONS(1429), + [aux_sym_preproc_include_token1] = ACTIONS(1431), + [aux_sym_preproc_def_token1] = ACTIONS(1431), + [aux_sym_preproc_if_token1] = ACTIONS(1429), + [aux_sym_preproc_if_token2] = ACTIONS(1429), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1429), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1429), + [aux_sym_preproc_else_token1] = ACTIONS(1429), + [aux_sym_preproc_elif_token1] = ACTIONS(1429), + [anon_sym_LPAREN2] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_CARET] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_typedef] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym___attribute] = ACTIONS(1429), + [anon_sym___attribute__] = ACTIONS(1429), + [anon_sym___declspec] = ACTIONS(1429), + [anon_sym___cdecl] = ACTIONS(1429), + [anon_sym___clrcall] = ACTIONS(1429), + [anon_sym___stdcall] = ACTIONS(1429), + [anon_sym___fastcall] = ACTIONS(1429), + [anon_sym___thiscall] = ACTIONS(1429), + [anon_sym___vectorcall] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_auto] = ACTIONS(1429), + [anon_sym_register] = ACTIONS(1429), + [anon_sym_inline] = ACTIONS(1429), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_volatile] = ACTIONS(1429), + [anon_sym_restrict] = ACTIONS(1429), + [anon_sym__Atomic] = ACTIONS(1429), + [anon_sym_in] = ACTIONS(1429), + [anon_sym_out] = ACTIONS(1429), + [anon_sym_inout] = ACTIONS(1429), + [anon_sym_bycopy] = ACTIONS(1429), + [anon_sym_byref] = ACTIONS(1429), + [anon_sym_oneway] = ACTIONS(1429), + [anon_sym__Nullable] = ACTIONS(1429), + [anon_sym__Nonnull] = ACTIONS(1429), + [anon_sym__Nullable_result] = ACTIONS(1429), + [anon_sym__Null_unspecified] = ACTIONS(1429), + [anon_sym___autoreleasing] = ACTIONS(1429), + [anon_sym___nullable] = ACTIONS(1429), + [anon_sym___nonnull] = ACTIONS(1429), + [anon_sym___strong] = ACTIONS(1429), + [anon_sym___weak] = ACTIONS(1429), + [anon_sym___bridge] = ACTIONS(1429), + [anon_sym___bridge_transfer] = ACTIONS(1429), + [anon_sym___bridge_retained] = ACTIONS(1429), + [anon_sym___unsafe_unretained] = ACTIONS(1429), + [anon_sym___block] = ACTIONS(1429), + [anon_sym___kindof] = ACTIONS(1429), + [anon_sym___unused] = ACTIONS(1429), + [anon_sym__Complex] = ACTIONS(1429), + [anon_sym___complex] = ACTIONS(1429), + [anon_sym_IBOutlet] = ACTIONS(1429), + [anon_sym_IBInspectable] = ACTIONS(1429), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1429), + [anon_sym_signed] = ACTIONS(1429), + [anon_sym_unsigned] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [sym_primitive_type] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [anon_sym_struct] = ACTIONS(1429), + [anon_sym_union] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_else] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [anon_sym_case] = ACTIONS(1429), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_goto] = ACTIONS(1429), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1429), + [sym_number_literal] = ACTIONS(1431), + [anon_sym_L_SQUOTE] = ACTIONS(1431), + [anon_sym_u_SQUOTE] = ACTIONS(1431), + [anon_sym_U_SQUOTE] = ACTIONS(1431), + [anon_sym_u8_SQUOTE] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_L_DQUOTE] = ACTIONS(1431), + [anon_sym_u_DQUOTE] = ACTIONS(1431), + [anon_sym_U_DQUOTE] = ACTIONS(1431), + [anon_sym_u8_DQUOTE] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [sym_true] = ACTIONS(1429), + [sym_false] = ACTIONS(1429), + [sym_null] = ACTIONS(1429), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1425), - [anon_sym_ATimport] = ACTIONS(1425), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1427), - [anon_sym_ATcompatibility_alias] = ACTIONS(1425), - [anon_sym_ATprotocol] = ACTIONS(1425), - [anon_sym_ATclass] = ACTIONS(1425), - [anon_sym_ATinterface] = ACTIONS(1425), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1427), - [sym_method_attribute_specifier] = ACTIONS(1427), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1427), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1427), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1427), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1427), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1427), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1427), - [anon_sym_NS_AVAILABLE] = ACTIONS(1427), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1427), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1427), - [anon_sym_API_AVAILABLE] = ACTIONS(1427), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1427), - [anon_sym_API_DEPRECATED] = ACTIONS(1427), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1427), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1427), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1427), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1427), - [anon_sym___deprecated_msg] = ACTIONS(1427), - [anon_sym___deprecated_enum_msg] = ACTIONS(1427), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1427), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1427), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1427), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1427), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1427), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1427), - [anon_sym_ATimplementation] = ACTIONS(1425), - [anon_sym_typeof] = ACTIONS(1427), - [anon_sym___typeof] = ACTIONS(1427), - [anon_sym___typeof__] = ACTIONS(1427), - [sym_self] = ACTIONS(1427), - [sym_super] = ACTIONS(1427), - [sym_nil] = ACTIONS(1427), - [sym_id] = ACTIONS(1427), - [sym_instancetype] = ACTIONS(1427), - [sym_Class] = ACTIONS(1427), - [sym_SEL] = ACTIONS(1427), - [sym_IMP] = ACTIONS(1427), - [sym_BOOL] = ACTIONS(1427), - [sym_auto] = ACTIONS(1427), - [anon_sym_ATautoreleasepool] = ACTIONS(1425), - [anon_sym_ATsynchronized] = ACTIONS(1425), - [anon_sym_ATtry] = ACTIONS(1425), - [anon_sym_ATcatch] = ACTIONS(1425), - [anon_sym_ATfinally] = ACTIONS(1425), - [anon_sym_ATthrow] = ACTIONS(1425), - [anon_sym_ATselector] = ACTIONS(1425), - [anon_sym_ATencode] = ACTIONS(1425), - [anon_sym_AT] = ACTIONS(1427), - [sym_YES] = ACTIONS(1427), - [sym_NO] = ACTIONS(1427), - [anon_sym___builtin_available] = ACTIONS(1427), - [anon_sym_ATavailable] = ACTIONS(1425), - [anon_sym_va_arg] = ACTIONS(1427), + [anon_sym_POUNDimport] = ACTIONS(1431), + [anon_sym_ATimport] = ACTIONS(1431), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1429), + [anon_sym_ATcompatibility_alias] = ACTIONS(1431), + [anon_sym_ATprotocol] = ACTIONS(1431), + [anon_sym_ATclass] = ACTIONS(1431), + [anon_sym_ATinterface] = ACTIONS(1431), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1429), + [sym_method_attribute_specifier] = ACTIONS(1429), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1429), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1429), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1429), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1429), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1429), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1429), + [anon_sym_NS_AVAILABLE] = ACTIONS(1429), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1429), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1429), + [anon_sym_API_AVAILABLE] = ACTIONS(1429), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1429), + [anon_sym_API_DEPRECATED] = ACTIONS(1429), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1429), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1429), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1429), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1429), + [anon_sym___deprecated_msg] = ACTIONS(1429), + [anon_sym___deprecated_enum_msg] = ACTIONS(1429), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1429), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1429), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1429), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1429), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1429), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1429), + [anon_sym_ATimplementation] = ACTIONS(1431), + [anon_sym_NS_ENUM] = ACTIONS(1429), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1429), + [anon_sym_NS_OPTIONS] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(1429), + [anon_sym___typeof] = ACTIONS(1429), + [anon_sym___typeof__] = ACTIONS(1429), + [sym_self] = ACTIONS(1429), + [sym_super] = ACTIONS(1429), + [sym_nil] = ACTIONS(1429), + [sym_id] = ACTIONS(1429), + [sym_instancetype] = ACTIONS(1429), + [sym_Class] = ACTIONS(1429), + [sym_SEL] = ACTIONS(1429), + [sym_IMP] = ACTIONS(1429), + [sym_BOOL] = ACTIONS(1429), + [sym_auto] = ACTIONS(1429), + [anon_sym_ATautoreleasepool] = ACTIONS(1431), + [anon_sym_ATsynchronized] = ACTIONS(1431), + [anon_sym_ATtry] = ACTIONS(1431), + [anon_sym_ATcatch] = ACTIONS(1431), + [anon_sym_ATfinally] = ACTIONS(1431), + [anon_sym_ATthrow] = ACTIONS(1431), + [anon_sym_ATselector] = ACTIONS(1431), + [anon_sym_ATencode] = ACTIONS(1431), + [anon_sym_AT] = ACTIONS(1429), + [sym_YES] = ACTIONS(1429), + [sym_NO] = ACTIONS(1429), + [anon_sym___builtin_available] = ACTIONS(1429), + [anon_sym_ATavailable] = ACTIONS(1431), + [anon_sym_va_arg] = ACTIONS(1429), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [138] = { - [ts_builtin_sym_end] = ACTIONS(1429), - [sym_identifier] = ACTIONS(1431), - [aux_sym_preproc_include_token1] = ACTIONS(1429), - [aux_sym_preproc_def_token1] = ACTIONS(1429), - [anon_sym_RPAREN] = ACTIONS(1429), - [aux_sym_preproc_if_token1] = ACTIONS(1431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1431), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(1429), - [anon_sym_BANG] = ACTIONS(1429), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_CARET] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1429), - [anon_sym_typedef] = ACTIONS(1431), - [anon_sym_extern] = ACTIONS(1431), - [anon_sym___attribute] = ACTIONS(1431), - [anon_sym___attribute__] = ACTIONS(1431), - [anon_sym___declspec] = ACTIONS(1431), - [anon_sym___cdecl] = ACTIONS(1431), - [anon_sym___clrcall] = ACTIONS(1431), - [anon_sym___stdcall] = ACTIONS(1431), - [anon_sym___fastcall] = ACTIONS(1431), - [anon_sym___thiscall] = ACTIONS(1431), - [anon_sym___vectorcall] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1429), - [anon_sym_RBRACE] = ACTIONS(1429), - [anon_sym_LBRACK] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_auto] = ACTIONS(1431), - [anon_sym_register] = ACTIONS(1431), - [anon_sym_inline] = ACTIONS(1431), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [anon_sym_volatile] = ACTIONS(1431), - [anon_sym_restrict] = ACTIONS(1431), - [anon_sym__Atomic] = ACTIONS(1431), - [anon_sym_in] = ACTIONS(1431), - [anon_sym_out] = ACTIONS(1431), - [anon_sym_inout] = ACTIONS(1431), - [anon_sym_bycopy] = ACTIONS(1431), - [anon_sym_byref] = ACTIONS(1431), - [anon_sym_oneway] = ACTIONS(1431), - [anon_sym__Nullable] = ACTIONS(1431), - [anon_sym__Nonnull] = ACTIONS(1431), - [anon_sym__Nullable_result] = ACTIONS(1431), - [anon_sym__Null_unspecified] = ACTIONS(1431), - [anon_sym___autoreleasing] = ACTIONS(1431), - [anon_sym___nullable] = ACTIONS(1431), - [anon_sym___nonnull] = ACTIONS(1431), - [anon_sym___strong] = ACTIONS(1431), - [anon_sym___weak] = ACTIONS(1431), - [anon_sym___bridge] = ACTIONS(1431), - [anon_sym___bridge_transfer] = ACTIONS(1431), - [anon_sym___bridge_retained] = ACTIONS(1431), - [anon_sym___unsafe_unretained] = ACTIONS(1431), - [anon_sym___block] = ACTIONS(1431), - [anon_sym___kindof] = ACTIONS(1431), - [anon_sym___unused] = ACTIONS(1431), - [anon_sym__Complex] = ACTIONS(1431), - [anon_sym___complex] = ACTIONS(1431), - [anon_sym_IBOutlet] = ACTIONS(1431), - [anon_sym_IBInspectable] = ACTIONS(1431), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1431), - [anon_sym_signed] = ACTIONS(1431), - [anon_sym_unsigned] = ACTIONS(1431), - [anon_sym_long] = ACTIONS(1431), - [anon_sym_short] = ACTIONS(1431), - [sym_primitive_type] = ACTIONS(1431), - [anon_sym_enum] = ACTIONS(1431), - [anon_sym_NS_ENUM] = ACTIONS(1431), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1431), - [anon_sym_NS_OPTIONS] = ACTIONS(1431), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_else] = ACTIONS(1431), - [anon_sym_switch] = ACTIONS(1431), - [anon_sym_case] = ACTIONS(1431), - [anon_sym_default] = ACTIONS(1431), - [anon_sym_while] = ACTIONS(1431), - [anon_sym_do] = ACTIONS(1431), - [anon_sym_for] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1431), - [anon_sym_break] = ACTIONS(1431), - [anon_sym_continue] = ACTIONS(1431), - [anon_sym_goto] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [sym_number_literal] = ACTIONS(1429), - [anon_sym_L_SQUOTE] = ACTIONS(1429), - [anon_sym_u_SQUOTE] = ACTIONS(1429), - [anon_sym_U_SQUOTE] = ACTIONS(1429), - [anon_sym_u8_SQUOTE] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_L_DQUOTE] = ACTIONS(1429), - [anon_sym_u_DQUOTE] = ACTIONS(1429), - [anon_sym_U_DQUOTE] = ACTIONS(1429), - [anon_sym_u8_DQUOTE] = ACTIONS(1429), - [anon_sym_DQUOTE] = ACTIONS(1429), - [sym_true] = ACTIONS(1431), - [sym_false] = ACTIONS(1431), - [sym_null] = ACTIONS(1431), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1429), - [anon_sym_ATimport] = ACTIONS(1429), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1431), - [anon_sym_ATcompatibility_alias] = ACTIONS(1429), - [anon_sym_ATprotocol] = ACTIONS(1429), - [anon_sym_ATclass] = ACTIONS(1429), - [anon_sym_ATinterface] = ACTIONS(1429), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1431), - [sym_method_attribute_specifier] = ACTIONS(1431), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1431), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1431), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1431), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1431), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1431), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1431), - [anon_sym_NS_AVAILABLE] = ACTIONS(1431), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1431), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1431), - [anon_sym_API_AVAILABLE] = ACTIONS(1431), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1431), - [anon_sym_API_DEPRECATED] = ACTIONS(1431), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1431), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1431), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1431), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1431), - [anon_sym___deprecated_msg] = ACTIONS(1431), - [anon_sym___deprecated_enum_msg] = ACTIONS(1431), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1431), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1431), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1431), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1431), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1431), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1431), - [anon_sym_ATimplementation] = ACTIONS(1429), - [anon_sym_typeof] = ACTIONS(1431), - [anon_sym___typeof] = ACTIONS(1431), - [anon_sym___typeof__] = ACTIONS(1431), - [sym_self] = ACTIONS(1431), - [sym_super] = ACTIONS(1431), - [sym_nil] = ACTIONS(1431), - [sym_id] = ACTIONS(1431), - [sym_instancetype] = ACTIONS(1431), - [sym_Class] = ACTIONS(1431), - [sym_SEL] = ACTIONS(1431), - [sym_IMP] = ACTIONS(1431), - [sym_BOOL] = ACTIONS(1431), - [sym_auto] = ACTIONS(1431), - [anon_sym_ATautoreleasepool] = ACTIONS(1429), - [anon_sym_ATsynchronized] = ACTIONS(1429), - [anon_sym_ATtry] = ACTIONS(1429), - [anon_sym_ATcatch] = ACTIONS(1429), - [anon_sym_ATfinally] = ACTIONS(1429), - [anon_sym_ATthrow] = ACTIONS(1429), - [anon_sym_ATselector] = ACTIONS(1429), - [anon_sym_ATencode] = ACTIONS(1429), - [anon_sym_AT] = ACTIONS(1431), - [sym_YES] = ACTIONS(1431), - [sym_NO] = ACTIONS(1431), - [anon_sym___builtin_available] = ACTIONS(1431), - [anon_sym_ATavailable] = ACTIONS(1429), - [anon_sym_va_arg] = ACTIONS(1431), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [139] = { + [143] = { [ts_builtin_sym_end] = ACTIONS(1433), [sym_identifier] = ACTIONS(1435), [aux_sym_preproc_include_token1] = ACTIONS(1433), @@ -50102,9 +50839,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1435), [sym_primitive_type] = ACTIONS(1435), [anon_sym_enum] = ACTIONS(1435), - [anon_sym_NS_ENUM] = ACTIONS(1435), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1435), - [anon_sym_NS_OPTIONS] = ACTIONS(1435), [anon_sym_struct] = ACTIONS(1435), [anon_sym_union] = ACTIONS(1435), [anon_sym_if] = ACTIONS(1435), @@ -50171,6 +50905,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1435), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1435), [anon_sym_ATimplementation] = ACTIONS(1433), + [anon_sym_NS_ENUM] = ACTIONS(1435), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1435), + [anon_sym_NS_OPTIONS] = ACTIONS(1435), [anon_sym_typeof] = ACTIONS(1435), [anon_sym___typeof] = ACTIONS(1435), [anon_sym___typeof__] = ACTIONS(1435), @@ -50205,184 +50942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [140] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1195), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token2] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [aux_sym_preproc_else_token1] = ACTIONS(1197), - [aux_sym_preproc_elif_token1] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_out] = ACTIONS(1197), - [anon_sym_inout] = ACTIONS(1197), - [anon_sym_bycopy] = ACTIONS(1197), - [anon_sym_byref] = ACTIONS(1197), - [anon_sym_oneway] = ACTIONS(1197), - [anon_sym__Nullable] = ACTIONS(1197), - [anon_sym__Nonnull] = ACTIONS(1197), - [anon_sym__Nullable_result] = ACTIONS(1197), - [anon_sym__Null_unspecified] = ACTIONS(1197), - [anon_sym___autoreleasing] = ACTIONS(1197), - [anon_sym___nullable] = ACTIONS(1197), - [anon_sym___nonnull] = ACTIONS(1197), - [anon_sym___strong] = ACTIONS(1197), - [anon_sym___weak] = ACTIONS(1197), - [anon_sym___bridge] = ACTIONS(1197), - [anon_sym___bridge_transfer] = ACTIONS(1197), - [anon_sym___bridge_retained] = ACTIONS(1197), - [anon_sym___unsafe_unretained] = ACTIONS(1197), - [anon_sym___block] = ACTIONS(1197), - [anon_sym___kindof] = ACTIONS(1197), - [anon_sym___unused] = ACTIONS(1197), - [anon_sym__Complex] = ACTIONS(1197), - [anon_sym___complex] = ACTIONS(1197), - [anon_sym_IBOutlet] = ACTIONS(1197), - [anon_sym_IBInspectable] = ACTIONS(1197), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_NS_ENUM] = ACTIONS(1197), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1197), - [anon_sym_NS_OPTIONS] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [sym_null] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1195), - [anon_sym_ATimport] = ACTIONS(1195), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1197), - [anon_sym_ATcompatibility_alias] = ACTIONS(1195), - [anon_sym_ATprotocol] = ACTIONS(1195), - [anon_sym_ATclass] = ACTIONS(1195), - [anon_sym_ATinterface] = ACTIONS(1195), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1197), - [sym_method_attribute_specifier] = ACTIONS(1197), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1197), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE] = ACTIONS(1197), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_API_AVAILABLE] = ACTIONS(1197), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_API_DEPRECATED] = ACTIONS(1197), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1197), - [anon_sym___deprecated_msg] = ACTIONS(1197), - [anon_sym___deprecated_enum_msg] = ACTIONS(1197), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1197), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1197), - [anon_sym_ATimplementation] = ACTIONS(1195), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym___typeof] = ACTIONS(1197), - [anon_sym___typeof__] = ACTIONS(1197), - [sym_self] = ACTIONS(1197), - [sym_super] = ACTIONS(1197), - [sym_nil] = ACTIONS(1197), - [sym_id] = ACTIONS(1197), - [sym_instancetype] = ACTIONS(1197), - [sym_Class] = ACTIONS(1197), - [sym_SEL] = ACTIONS(1197), - [sym_IMP] = ACTIONS(1197), - [sym_BOOL] = ACTIONS(1197), - [sym_auto] = ACTIONS(1197), - [anon_sym_ATautoreleasepool] = ACTIONS(1195), - [anon_sym_ATsynchronized] = ACTIONS(1195), - [anon_sym_ATtry] = ACTIONS(1195), - [anon_sym_ATcatch] = ACTIONS(1195), - [anon_sym_ATfinally] = ACTIONS(1195), - [anon_sym_ATthrow] = ACTIONS(1195), - [anon_sym_ATselector] = ACTIONS(1195), - [anon_sym_ATencode] = ACTIONS(1195), - [anon_sym_AT] = ACTIONS(1197), - [sym_YES] = ACTIONS(1197), - [sym_NO] = ACTIONS(1197), - [anon_sym___builtin_available] = ACTIONS(1197), - [anon_sym_ATavailable] = ACTIONS(1195), - [anon_sym_va_arg] = ACTIONS(1197), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [141] = { + [144] = { [ts_builtin_sym_end] = ACTIONS(1437), [sym_identifier] = ACTIONS(1439), [aux_sym_preproc_include_token1] = ACTIONS(1437), @@ -50456,9 +51016,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1439), [sym_primitive_type] = ACTIONS(1439), [anon_sym_enum] = ACTIONS(1439), - [anon_sym_NS_ENUM] = ACTIONS(1439), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1439), - [anon_sym_NS_OPTIONS] = ACTIONS(1439), [anon_sym_struct] = ACTIONS(1439), [anon_sym_union] = ACTIONS(1439), [anon_sym_if] = ACTIONS(1439), @@ -50525,6 +51082,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1439), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1439), [anon_sym_ATimplementation] = ACTIONS(1437), + [anon_sym_NS_ENUM] = ACTIONS(1439), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1439), + [anon_sym_NS_OPTIONS] = ACTIONS(1439), [anon_sym_typeof] = ACTIONS(1439), [anon_sym___typeof] = ACTIONS(1439), [anon_sym___typeof__] = ACTIONS(1439), @@ -50559,538 +51119,361 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [142] = { - [ts_builtin_sym_end] = ACTIONS(1441), - [sym_identifier] = ACTIONS(1443), - [aux_sym_preproc_include_token1] = ACTIONS(1441), - [aux_sym_preproc_def_token1] = ACTIONS(1441), - [anon_sym_RPAREN] = ACTIONS(1441), - [aux_sym_preproc_if_token1] = ACTIONS(1443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1443), - [anon_sym_LPAREN2] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_typedef] = ACTIONS(1443), - [anon_sym_extern] = ACTIONS(1443), - [anon_sym___attribute] = ACTIONS(1443), - [anon_sym___attribute__] = ACTIONS(1443), - [anon_sym___declspec] = ACTIONS(1443), - [anon_sym___cdecl] = ACTIONS(1443), - [anon_sym___clrcall] = ACTIONS(1443), - [anon_sym___stdcall] = ACTIONS(1443), - [anon_sym___fastcall] = ACTIONS(1443), - [anon_sym___thiscall] = ACTIONS(1443), - [anon_sym___vectorcall] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_auto] = ACTIONS(1443), - [anon_sym_register] = ACTIONS(1443), - [anon_sym_inline] = ACTIONS(1443), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_volatile] = ACTIONS(1443), - [anon_sym_restrict] = ACTIONS(1443), - [anon_sym__Atomic] = ACTIONS(1443), - [anon_sym_in] = ACTIONS(1443), - [anon_sym_out] = ACTIONS(1443), - [anon_sym_inout] = ACTIONS(1443), - [anon_sym_bycopy] = ACTIONS(1443), - [anon_sym_byref] = ACTIONS(1443), - [anon_sym_oneway] = ACTIONS(1443), - [anon_sym__Nullable] = ACTIONS(1443), - [anon_sym__Nonnull] = ACTIONS(1443), - [anon_sym__Nullable_result] = ACTIONS(1443), - [anon_sym__Null_unspecified] = ACTIONS(1443), - [anon_sym___autoreleasing] = ACTIONS(1443), - [anon_sym___nullable] = ACTIONS(1443), - [anon_sym___nonnull] = ACTIONS(1443), - [anon_sym___strong] = ACTIONS(1443), - [anon_sym___weak] = ACTIONS(1443), - [anon_sym___bridge] = ACTIONS(1443), - [anon_sym___bridge_transfer] = ACTIONS(1443), - [anon_sym___bridge_retained] = ACTIONS(1443), - [anon_sym___unsafe_unretained] = ACTIONS(1443), - [anon_sym___block] = ACTIONS(1443), - [anon_sym___kindof] = ACTIONS(1443), - [anon_sym___unused] = ACTIONS(1443), - [anon_sym__Complex] = ACTIONS(1443), - [anon_sym___complex] = ACTIONS(1443), - [anon_sym_IBOutlet] = ACTIONS(1443), - [anon_sym_IBInspectable] = ACTIONS(1443), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1443), - [anon_sym_signed] = ACTIONS(1443), - [anon_sym_unsigned] = ACTIONS(1443), - [anon_sym_long] = ACTIONS(1443), - [anon_sym_short] = ACTIONS(1443), - [sym_primitive_type] = ACTIONS(1443), - [anon_sym_enum] = ACTIONS(1443), - [anon_sym_NS_ENUM] = ACTIONS(1443), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1443), - [anon_sym_NS_OPTIONS] = ACTIONS(1443), - [anon_sym_struct] = ACTIONS(1443), - [anon_sym_union] = ACTIONS(1443), - [anon_sym_if] = ACTIONS(1443), - [anon_sym_else] = ACTIONS(1443), - [anon_sym_switch] = ACTIONS(1443), - [anon_sym_case] = ACTIONS(1443), - [anon_sym_default] = ACTIONS(1443), - [anon_sym_while] = ACTIONS(1443), - [anon_sym_do] = ACTIONS(1443), - [anon_sym_for] = ACTIONS(1443), - [anon_sym_return] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1443), - [anon_sym_continue] = ACTIONS(1443), - [anon_sym_goto] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_sizeof] = ACTIONS(1443), - [sym_number_literal] = ACTIONS(1441), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1441), - [anon_sym_u_DQUOTE] = ACTIONS(1441), - [anon_sym_U_DQUOTE] = ACTIONS(1441), - [anon_sym_u8_DQUOTE] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [sym_true] = ACTIONS(1443), - [sym_false] = ACTIONS(1443), - [sym_null] = ACTIONS(1443), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1441), - [anon_sym_ATimport] = ACTIONS(1441), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1443), - [anon_sym_ATcompatibility_alias] = ACTIONS(1441), - [anon_sym_ATprotocol] = ACTIONS(1441), - [anon_sym_ATclass] = ACTIONS(1441), - [anon_sym_ATinterface] = ACTIONS(1441), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1443), - [sym_method_attribute_specifier] = ACTIONS(1443), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1443), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1443), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1443), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1443), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1443), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1443), - [anon_sym_NS_AVAILABLE] = ACTIONS(1443), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1443), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1443), - [anon_sym_API_AVAILABLE] = ACTIONS(1443), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1443), - [anon_sym_API_DEPRECATED] = ACTIONS(1443), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1443), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1443), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1443), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1443), - [anon_sym___deprecated_msg] = ACTIONS(1443), - [anon_sym___deprecated_enum_msg] = ACTIONS(1443), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1443), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1443), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1443), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1443), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1443), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1443), - [anon_sym_ATimplementation] = ACTIONS(1441), - [anon_sym_typeof] = ACTIONS(1443), - [anon_sym___typeof] = ACTIONS(1443), - [anon_sym___typeof__] = ACTIONS(1443), - [sym_self] = ACTIONS(1443), - [sym_super] = ACTIONS(1443), - [sym_nil] = ACTIONS(1443), - [sym_id] = ACTIONS(1443), - [sym_instancetype] = ACTIONS(1443), - [sym_Class] = ACTIONS(1443), - [sym_SEL] = ACTIONS(1443), - [sym_IMP] = ACTIONS(1443), - [sym_BOOL] = ACTIONS(1443), - [sym_auto] = ACTIONS(1443), - [anon_sym_ATautoreleasepool] = ACTIONS(1441), - [anon_sym_ATsynchronized] = ACTIONS(1441), - [anon_sym_ATtry] = ACTIONS(1441), - [anon_sym_ATcatch] = ACTIONS(1441), - [anon_sym_ATfinally] = ACTIONS(1441), - [anon_sym_ATthrow] = ACTIONS(1441), - [anon_sym_ATselector] = ACTIONS(1441), - [anon_sym_ATencode] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [sym_YES] = ACTIONS(1443), - [sym_NO] = ACTIONS(1443), - [anon_sym___builtin_available] = ACTIONS(1443), - [anon_sym_ATavailable] = ACTIONS(1441), - [anon_sym_va_arg] = ACTIONS(1443), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [143] = { - [ts_builtin_sym_end] = ACTIONS(1445), - [sym_identifier] = ACTIONS(1447), - [aux_sym_preproc_include_token1] = ACTIONS(1445), - [aux_sym_preproc_def_token1] = ACTIONS(1445), - [anon_sym_RPAREN] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1447), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1447), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1447), - [anon_sym_LPAREN2] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1445), - [anon_sym_TILDE] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_CARET] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_typedef] = ACTIONS(1447), - [anon_sym_extern] = ACTIONS(1447), - [anon_sym___attribute] = ACTIONS(1447), - [anon_sym___attribute__] = ACTIONS(1447), - [anon_sym___declspec] = ACTIONS(1447), - [anon_sym___cdecl] = ACTIONS(1447), - [anon_sym___clrcall] = ACTIONS(1447), - [anon_sym___stdcall] = ACTIONS(1447), - [anon_sym___fastcall] = ACTIONS(1447), - [anon_sym___thiscall] = ACTIONS(1447), - [anon_sym___vectorcall] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_auto] = ACTIONS(1447), - [anon_sym_register] = ACTIONS(1447), - [anon_sym_inline] = ACTIONS(1447), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_volatile] = ACTIONS(1447), - [anon_sym_restrict] = ACTIONS(1447), - [anon_sym__Atomic] = ACTIONS(1447), - [anon_sym_in] = ACTIONS(1447), - [anon_sym_out] = ACTIONS(1447), - [anon_sym_inout] = ACTIONS(1447), - [anon_sym_bycopy] = ACTIONS(1447), - [anon_sym_byref] = ACTIONS(1447), - [anon_sym_oneway] = ACTIONS(1447), - [anon_sym__Nullable] = ACTIONS(1447), - [anon_sym__Nonnull] = ACTIONS(1447), - [anon_sym__Nullable_result] = ACTIONS(1447), - [anon_sym__Null_unspecified] = ACTIONS(1447), - [anon_sym___autoreleasing] = ACTIONS(1447), - [anon_sym___nullable] = ACTIONS(1447), - [anon_sym___nonnull] = ACTIONS(1447), - [anon_sym___strong] = ACTIONS(1447), - [anon_sym___weak] = ACTIONS(1447), - [anon_sym___bridge] = ACTIONS(1447), - [anon_sym___bridge_transfer] = ACTIONS(1447), - [anon_sym___bridge_retained] = ACTIONS(1447), - [anon_sym___unsafe_unretained] = ACTIONS(1447), - [anon_sym___block] = ACTIONS(1447), - [anon_sym___kindof] = ACTIONS(1447), - [anon_sym___unused] = ACTIONS(1447), - [anon_sym__Complex] = ACTIONS(1447), - [anon_sym___complex] = ACTIONS(1447), - [anon_sym_IBOutlet] = ACTIONS(1447), - [anon_sym_IBInspectable] = ACTIONS(1447), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1447), - [anon_sym_signed] = ACTIONS(1447), - [anon_sym_unsigned] = ACTIONS(1447), - [anon_sym_long] = ACTIONS(1447), - [anon_sym_short] = ACTIONS(1447), - [sym_primitive_type] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1447), - [anon_sym_NS_ENUM] = ACTIONS(1447), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1447), - [anon_sym_NS_OPTIONS] = ACTIONS(1447), - [anon_sym_struct] = ACTIONS(1447), - [anon_sym_union] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_else] = ACTIONS(1447), - [anon_sym_switch] = ACTIONS(1447), - [anon_sym_case] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_do] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_goto] = ACTIONS(1447), - [anon_sym_DASH_DASH] = ACTIONS(1445), - [anon_sym_PLUS_PLUS] = ACTIONS(1445), - [anon_sym_sizeof] = ACTIONS(1447), - [sym_number_literal] = ACTIONS(1445), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1445), - [anon_sym_u_DQUOTE] = ACTIONS(1445), - [anon_sym_U_DQUOTE] = ACTIONS(1445), - [anon_sym_u8_DQUOTE] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1445), - [sym_true] = ACTIONS(1447), - [sym_false] = ACTIONS(1447), - [sym_null] = ACTIONS(1447), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1445), - [anon_sym_ATimport] = ACTIONS(1445), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1447), - [anon_sym_ATcompatibility_alias] = ACTIONS(1445), - [anon_sym_ATprotocol] = ACTIONS(1445), - [anon_sym_ATclass] = ACTIONS(1445), - [anon_sym_ATinterface] = ACTIONS(1445), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1447), - [sym_method_attribute_specifier] = ACTIONS(1447), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1447), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1447), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1447), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1447), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1447), - [anon_sym_NS_AVAILABLE] = ACTIONS(1447), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1447), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_API_AVAILABLE] = ACTIONS(1447), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_API_DEPRECATED] = ACTIONS(1447), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1447), - [anon_sym___deprecated_msg] = ACTIONS(1447), - [anon_sym___deprecated_enum_msg] = ACTIONS(1447), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1447), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1447), - [anon_sym_ATimplementation] = ACTIONS(1445), - [anon_sym_typeof] = ACTIONS(1447), - [anon_sym___typeof] = ACTIONS(1447), - [anon_sym___typeof__] = ACTIONS(1447), - [sym_self] = ACTIONS(1447), - [sym_super] = ACTIONS(1447), - [sym_nil] = ACTIONS(1447), - [sym_id] = ACTIONS(1447), - [sym_instancetype] = ACTIONS(1447), - [sym_Class] = ACTIONS(1447), - [sym_SEL] = ACTIONS(1447), - [sym_IMP] = ACTIONS(1447), - [sym_BOOL] = ACTIONS(1447), - [sym_auto] = ACTIONS(1447), - [anon_sym_ATautoreleasepool] = ACTIONS(1445), - [anon_sym_ATsynchronized] = ACTIONS(1445), - [anon_sym_ATtry] = ACTIONS(1445), - [anon_sym_ATcatch] = ACTIONS(1445), - [anon_sym_ATfinally] = ACTIONS(1445), - [anon_sym_ATthrow] = ACTIONS(1445), - [anon_sym_ATselector] = ACTIONS(1445), - [anon_sym_ATencode] = ACTIONS(1445), - [anon_sym_AT] = ACTIONS(1447), - [sym_YES] = ACTIONS(1447), - [sym_NO] = ACTIONS(1447), - [anon_sym___builtin_available] = ACTIONS(1447), - [anon_sym_ATavailable] = ACTIONS(1445), - [anon_sym_va_arg] = ACTIONS(1447), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [144] = { - [ts_builtin_sym_end] = ACTIONS(1233), - [sym_identifier] = ACTIONS(1231), - [aux_sym_preproc_include_token1] = ACTIONS(1233), - [aux_sym_preproc_def_token1] = ACTIONS(1233), - [anon_sym_RPAREN] = ACTIONS(1233), - [aux_sym_preproc_if_token1] = ACTIONS(1231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), - [anon_sym_LPAREN2] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(1233), - [anon_sym_TILDE] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_PLUS] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(1233), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym_typedef] = ACTIONS(1231), - [anon_sym_extern] = ACTIONS(1231), - [anon_sym___attribute] = ACTIONS(1231), - [anon_sym___attribute__] = ACTIONS(1231), - [anon_sym___declspec] = ACTIONS(1231), - [anon_sym___cdecl] = ACTIONS(1231), - [anon_sym___clrcall] = ACTIONS(1231), - [anon_sym___stdcall] = ACTIONS(1231), - [anon_sym___fastcall] = ACTIONS(1231), - [anon_sym___thiscall] = ACTIONS(1231), - [anon_sym___vectorcall] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_RBRACE] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_auto] = ACTIONS(1231), - [anon_sym_register] = ACTIONS(1231), - [anon_sym_inline] = ACTIONS(1231), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1231), - [anon_sym_const] = ACTIONS(1231), - [anon_sym_volatile] = ACTIONS(1231), - [anon_sym_restrict] = ACTIONS(1231), - [anon_sym__Atomic] = ACTIONS(1231), - [anon_sym_in] = ACTIONS(1231), - [anon_sym_out] = ACTIONS(1231), - [anon_sym_inout] = ACTIONS(1231), - [anon_sym_bycopy] = ACTIONS(1231), - [anon_sym_byref] = ACTIONS(1231), - [anon_sym_oneway] = ACTIONS(1231), - [anon_sym__Nullable] = ACTIONS(1231), - [anon_sym__Nonnull] = ACTIONS(1231), - [anon_sym__Nullable_result] = ACTIONS(1231), - [anon_sym__Null_unspecified] = ACTIONS(1231), - [anon_sym___autoreleasing] = ACTIONS(1231), - [anon_sym___nullable] = ACTIONS(1231), - [anon_sym___nonnull] = ACTIONS(1231), - [anon_sym___strong] = ACTIONS(1231), - [anon_sym___weak] = ACTIONS(1231), - [anon_sym___bridge] = ACTIONS(1231), - [anon_sym___bridge_transfer] = ACTIONS(1231), - [anon_sym___bridge_retained] = ACTIONS(1231), - [anon_sym___unsafe_unretained] = ACTIONS(1231), - [anon_sym___block] = ACTIONS(1231), - [anon_sym___kindof] = ACTIONS(1231), - [anon_sym___unused] = ACTIONS(1231), - [anon_sym__Complex] = ACTIONS(1231), - [anon_sym___complex] = ACTIONS(1231), - [anon_sym_IBOutlet] = ACTIONS(1231), - [anon_sym_IBInspectable] = ACTIONS(1231), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1231), - [anon_sym_signed] = ACTIONS(1231), - [anon_sym_unsigned] = ACTIONS(1231), - [anon_sym_long] = ACTIONS(1231), - [anon_sym_short] = ACTIONS(1231), - [sym_primitive_type] = ACTIONS(1231), - [anon_sym_enum] = ACTIONS(1231), - [anon_sym_NS_ENUM] = ACTIONS(1231), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1231), - [anon_sym_NS_OPTIONS] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1231), - [anon_sym_union] = ACTIONS(1231), - [anon_sym_if] = ACTIONS(1231), - [anon_sym_else] = ACTIONS(1231), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_case] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1231), - [anon_sym_while] = ACTIONS(1231), - [anon_sym_do] = ACTIONS(1231), - [anon_sym_for] = ACTIONS(1231), - [anon_sym_return] = ACTIONS(1231), - [anon_sym_break] = ACTIONS(1231), - [anon_sym_continue] = ACTIONS(1231), - [anon_sym_goto] = ACTIONS(1231), - [anon_sym_DASH_DASH] = ACTIONS(1233), - [anon_sym_PLUS_PLUS] = ACTIONS(1233), - [anon_sym_sizeof] = ACTIONS(1231), - [sym_number_literal] = ACTIONS(1233), - [anon_sym_L_SQUOTE] = ACTIONS(1233), - [anon_sym_u_SQUOTE] = ACTIONS(1233), - [anon_sym_U_SQUOTE] = ACTIONS(1233), - [anon_sym_u8_SQUOTE] = ACTIONS(1233), - [anon_sym_SQUOTE] = ACTIONS(1233), - [anon_sym_L_DQUOTE] = ACTIONS(1233), - [anon_sym_u_DQUOTE] = ACTIONS(1233), - [anon_sym_U_DQUOTE] = ACTIONS(1233), - [anon_sym_u8_DQUOTE] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [sym_true] = ACTIONS(1231), - [sym_false] = ACTIONS(1231), - [sym_null] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1233), - [anon_sym_ATimport] = ACTIONS(1233), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1231), - [anon_sym_ATcompatibility_alias] = ACTIONS(1233), - [anon_sym_ATprotocol] = ACTIONS(1233), - [anon_sym_ATclass] = ACTIONS(1233), - [anon_sym_ATinterface] = ACTIONS(1233), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1231), - [sym_method_attribute_specifier] = ACTIONS(1231), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1231), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1231), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1231), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1231), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1231), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1231), - [anon_sym_NS_AVAILABLE] = ACTIONS(1231), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1231), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1231), - [anon_sym_API_AVAILABLE] = ACTIONS(1231), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1231), - [anon_sym_API_DEPRECATED] = ACTIONS(1231), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1231), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1231), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1231), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1231), - [anon_sym___deprecated_msg] = ACTIONS(1231), - [anon_sym___deprecated_enum_msg] = ACTIONS(1231), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1231), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1231), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1231), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1231), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1231), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1231), - [anon_sym_ATimplementation] = ACTIONS(1233), - [anon_sym_typeof] = ACTIONS(1231), - [anon_sym___typeof] = ACTIONS(1231), - [anon_sym___typeof__] = ACTIONS(1231), - [sym_self] = ACTIONS(1231), - [sym_super] = ACTIONS(1231), - [sym_nil] = ACTIONS(1231), - [sym_id] = ACTIONS(1231), - [sym_instancetype] = ACTIONS(1231), - [sym_Class] = ACTIONS(1231), - [sym_SEL] = ACTIONS(1231), - [sym_IMP] = ACTIONS(1231), - [sym_BOOL] = ACTIONS(1231), - [sym_auto] = ACTIONS(1231), - [anon_sym_ATautoreleasepool] = ACTIONS(1233), - [anon_sym_ATsynchronized] = ACTIONS(1233), - [anon_sym_ATtry] = ACTIONS(1233), - [anon_sym_ATcatch] = ACTIONS(1233), - [anon_sym_ATfinally] = ACTIONS(1233), - [anon_sym_ATthrow] = ACTIONS(1233), - [anon_sym_ATselector] = ACTIONS(1233), - [anon_sym_ATencode] = ACTIONS(1233), - [anon_sym_AT] = ACTIONS(1231), - [sym_YES] = ACTIONS(1231), - [sym_NO] = ACTIONS(1231), - [anon_sym___builtin_available] = ACTIONS(1231), - [anon_sym_ATavailable] = ACTIONS(1233), - [anon_sym_va_arg] = ACTIONS(1231), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, [145] = { + [sym_identifier] = ACTIONS(1441), + [aux_sym_preproc_include_token1] = ACTIONS(1443), + [aux_sym_preproc_def_token1] = ACTIONS(1443), + [aux_sym_preproc_if_token1] = ACTIONS(1441), + [aux_sym_preproc_if_token2] = ACTIONS(1441), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1441), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1441), + [aux_sym_preproc_else_token1] = ACTIONS(1441), + [aux_sym_preproc_elif_token1] = ACTIONS(1441), + [anon_sym_LPAREN2] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_typedef] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym___attribute] = ACTIONS(1441), + [anon_sym___attribute__] = ACTIONS(1441), + [anon_sym___declspec] = ACTIONS(1441), + [anon_sym___cdecl] = ACTIONS(1441), + [anon_sym___clrcall] = ACTIONS(1441), + [anon_sym___stdcall] = ACTIONS(1441), + [anon_sym___fastcall] = ACTIONS(1441), + [anon_sym___thiscall] = ACTIONS(1441), + [anon_sym___vectorcall] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_auto] = ACTIONS(1441), + [anon_sym_register] = ACTIONS(1441), + [anon_sym_inline] = ACTIONS(1441), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_volatile] = ACTIONS(1441), + [anon_sym_restrict] = ACTIONS(1441), + [anon_sym__Atomic] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_out] = ACTIONS(1441), + [anon_sym_inout] = ACTIONS(1441), + [anon_sym_bycopy] = ACTIONS(1441), + [anon_sym_byref] = ACTIONS(1441), + [anon_sym_oneway] = ACTIONS(1441), + [anon_sym__Nullable] = ACTIONS(1441), + [anon_sym__Nonnull] = ACTIONS(1441), + [anon_sym__Nullable_result] = ACTIONS(1441), + [anon_sym__Null_unspecified] = ACTIONS(1441), + [anon_sym___autoreleasing] = ACTIONS(1441), + [anon_sym___nullable] = ACTIONS(1441), + [anon_sym___nonnull] = ACTIONS(1441), + [anon_sym___strong] = ACTIONS(1441), + [anon_sym___weak] = ACTIONS(1441), + [anon_sym___bridge] = ACTIONS(1441), + [anon_sym___bridge_transfer] = ACTIONS(1441), + [anon_sym___bridge_retained] = ACTIONS(1441), + [anon_sym___unsafe_unretained] = ACTIONS(1441), + [anon_sym___block] = ACTIONS(1441), + [anon_sym___kindof] = ACTIONS(1441), + [anon_sym___unused] = ACTIONS(1441), + [anon_sym__Complex] = ACTIONS(1441), + [anon_sym___complex] = ACTIONS(1441), + [anon_sym_IBOutlet] = ACTIONS(1441), + [anon_sym_IBInspectable] = ACTIONS(1441), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1441), + [anon_sym_signed] = ACTIONS(1441), + [anon_sym_unsigned] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [sym_primitive_type] = ACTIONS(1441), + [anon_sym_enum] = ACTIONS(1441), + [anon_sym_struct] = ACTIONS(1441), + [anon_sym_union] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_case] = ACTIONS(1441), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_goto] = ACTIONS(1441), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1443), + [anon_sym_u_SQUOTE] = ACTIONS(1443), + [anon_sym_U_SQUOTE] = ACTIONS(1443), + [anon_sym_u8_SQUOTE] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_L_DQUOTE] = ACTIONS(1443), + [anon_sym_u_DQUOTE] = ACTIONS(1443), + [anon_sym_U_DQUOTE] = ACTIONS(1443), + [anon_sym_u8_DQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [sym_true] = ACTIONS(1441), + [sym_false] = ACTIONS(1441), + [sym_null] = ACTIONS(1441), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1443), + [anon_sym_ATimport] = ACTIONS(1443), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1441), + [anon_sym_ATcompatibility_alias] = ACTIONS(1443), + [anon_sym_ATprotocol] = ACTIONS(1443), + [anon_sym_ATclass] = ACTIONS(1443), + [anon_sym_ATinterface] = ACTIONS(1443), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1441), + [sym_method_attribute_specifier] = ACTIONS(1441), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1441), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1441), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1441), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1441), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1441), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1441), + [anon_sym_NS_AVAILABLE] = ACTIONS(1441), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1441), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1441), + [anon_sym_API_AVAILABLE] = ACTIONS(1441), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1441), + [anon_sym_API_DEPRECATED] = ACTIONS(1441), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1441), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1441), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1441), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1441), + [anon_sym___deprecated_msg] = ACTIONS(1441), + [anon_sym___deprecated_enum_msg] = ACTIONS(1441), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1441), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1441), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1441), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1441), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1441), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1441), + [anon_sym_ATimplementation] = ACTIONS(1443), + [anon_sym_NS_ENUM] = ACTIONS(1441), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1441), + [anon_sym_NS_OPTIONS] = ACTIONS(1441), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___typeof] = ACTIONS(1441), + [anon_sym___typeof__] = ACTIONS(1441), + [sym_self] = ACTIONS(1441), + [sym_super] = ACTIONS(1441), + [sym_nil] = ACTIONS(1441), + [sym_id] = ACTIONS(1441), + [sym_instancetype] = ACTIONS(1441), + [sym_Class] = ACTIONS(1441), + [sym_SEL] = ACTIONS(1441), + [sym_IMP] = ACTIONS(1441), + [sym_BOOL] = ACTIONS(1441), + [sym_auto] = ACTIONS(1441), + [anon_sym_ATautoreleasepool] = ACTIONS(1443), + [anon_sym_ATsynchronized] = ACTIONS(1443), + [anon_sym_ATtry] = ACTIONS(1443), + [anon_sym_ATcatch] = ACTIONS(1443), + [anon_sym_ATfinally] = ACTIONS(1443), + [anon_sym_ATthrow] = ACTIONS(1443), + [anon_sym_ATselector] = ACTIONS(1443), + [anon_sym_ATencode] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1441), + [sym_YES] = ACTIONS(1441), + [sym_NO] = ACTIONS(1441), + [anon_sym___builtin_available] = ACTIONS(1441), + [anon_sym_ATavailable] = ACTIONS(1443), + [anon_sym_va_arg] = ACTIONS(1441), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [146] = { + [sym_identifier] = ACTIONS(1445), + [aux_sym_preproc_include_token1] = ACTIONS(1447), + [aux_sym_preproc_def_token1] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1445), + [aux_sym_preproc_if_token2] = ACTIONS(1445), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1445), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1445), + [aux_sym_preproc_else_token1] = ACTIONS(1445), + [aux_sym_preproc_elif_token1] = ACTIONS(1445), + [anon_sym_LPAREN2] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_typedef] = ACTIONS(1445), + [anon_sym_extern] = ACTIONS(1445), + [anon_sym___attribute] = ACTIONS(1445), + [anon_sym___attribute__] = ACTIONS(1445), + [anon_sym___declspec] = ACTIONS(1445), + [anon_sym___cdecl] = ACTIONS(1445), + [anon_sym___clrcall] = ACTIONS(1445), + [anon_sym___stdcall] = ACTIONS(1445), + [anon_sym___fastcall] = ACTIONS(1445), + [anon_sym___thiscall] = ACTIONS(1445), + [anon_sym___vectorcall] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1447), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_auto] = ACTIONS(1445), + [anon_sym_register] = ACTIONS(1445), + [anon_sym_inline] = ACTIONS(1445), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_volatile] = ACTIONS(1445), + [anon_sym_restrict] = ACTIONS(1445), + [anon_sym__Atomic] = ACTIONS(1445), + [anon_sym_in] = ACTIONS(1445), + [anon_sym_out] = ACTIONS(1445), + [anon_sym_inout] = ACTIONS(1445), + [anon_sym_bycopy] = ACTIONS(1445), + [anon_sym_byref] = ACTIONS(1445), + [anon_sym_oneway] = ACTIONS(1445), + [anon_sym__Nullable] = ACTIONS(1445), + [anon_sym__Nonnull] = ACTIONS(1445), + [anon_sym__Nullable_result] = ACTIONS(1445), + [anon_sym__Null_unspecified] = ACTIONS(1445), + [anon_sym___autoreleasing] = ACTIONS(1445), + [anon_sym___nullable] = ACTIONS(1445), + [anon_sym___nonnull] = ACTIONS(1445), + [anon_sym___strong] = ACTIONS(1445), + [anon_sym___weak] = ACTIONS(1445), + [anon_sym___bridge] = ACTIONS(1445), + [anon_sym___bridge_transfer] = ACTIONS(1445), + [anon_sym___bridge_retained] = ACTIONS(1445), + [anon_sym___unsafe_unretained] = ACTIONS(1445), + [anon_sym___block] = ACTIONS(1445), + [anon_sym___kindof] = ACTIONS(1445), + [anon_sym___unused] = ACTIONS(1445), + [anon_sym__Complex] = ACTIONS(1445), + [anon_sym___complex] = ACTIONS(1445), + [anon_sym_IBOutlet] = ACTIONS(1445), + [anon_sym_IBInspectable] = ACTIONS(1445), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1445), + [anon_sym_signed] = ACTIONS(1445), + [anon_sym_unsigned] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [sym_primitive_type] = ACTIONS(1445), + [anon_sym_enum] = ACTIONS(1445), + [anon_sym_struct] = ACTIONS(1445), + [anon_sym_union] = ACTIONS(1445), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_else] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_case] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_goto] = ACTIONS(1445), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_sizeof] = ACTIONS(1445), + [sym_number_literal] = ACTIONS(1447), + [anon_sym_L_SQUOTE] = ACTIONS(1447), + [anon_sym_u_SQUOTE] = ACTIONS(1447), + [anon_sym_U_SQUOTE] = ACTIONS(1447), + [anon_sym_u8_SQUOTE] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1445), + [sym_false] = ACTIONS(1445), + [sym_null] = ACTIONS(1445), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1447), + [anon_sym_ATimport] = ACTIONS(1447), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1445), + [anon_sym_ATcompatibility_alias] = ACTIONS(1447), + [anon_sym_ATprotocol] = ACTIONS(1447), + [anon_sym_ATclass] = ACTIONS(1447), + [anon_sym_ATinterface] = ACTIONS(1447), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1445), + [sym_method_attribute_specifier] = ACTIONS(1445), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1445), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1445), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1445), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1445), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1445), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1445), + [anon_sym_NS_AVAILABLE] = ACTIONS(1445), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1445), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1445), + [anon_sym_API_AVAILABLE] = ACTIONS(1445), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1445), + [anon_sym_API_DEPRECATED] = ACTIONS(1445), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1445), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1445), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1445), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1445), + [anon_sym___deprecated_msg] = ACTIONS(1445), + [anon_sym___deprecated_enum_msg] = ACTIONS(1445), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1445), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1445), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1445), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1445), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1445), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1445), + [anon_sym_ATimplementation] = ACTIONS(1447), + [anon_sym_NS_ENUM] = ACTIONS(1445), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1445), + [anon_sym_NS_OPTIONS] = ACTIONS(1445), + [anon_sym_typeof] = ACTIONS(1445), + [anon_sym___typeof] = ACTIONS(1445), + [anon_sym___typeof__] = ACTIONS(1445), + [sym_self] = ACTIONS(1445), + [sym_super] = ACTIONS(1445), + [sym_nil] = ACTIONS(1445), + [sym_id] = ACTIONS(1445), + [sym_instancetype] = ACTIONS(1445), + [sym_Class] = ACTIONS(1445), + [sym_SEL] = ACTIONS(1445), + [sym_IMP] = ACTIONS(1445), + [sym_BOOL] = ACTIONS(1445), + [sym_auto] = ACTIONS(1445), + [anon_sym_ATautoreleasepool] = ACTIONS(1447), + [anon_sym_ATsynchronized] = ACTIONS(1447), + [anon_sym_ATtry] = ACTIONS(1447), + [anon_sym_ATcatch] = ACTIONS(1447), + [anon_sym_ATfinally] = ACTIONS(1447), + [anon_sym_ATthrow] = ACTIONS(1447), + [anon_sym_ATselector] = ACTIONS(1447), + [anon_sym_ATencode] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1445), + [sym_YES] = ACTIONS(1445), + [sym_NO] = ACTIONS(1445), + [anon_sym___builtin_available] = ACTIONS(1445), + [anon_sym_ATavailable] = ACTIONS(1447), + [anon_sym_va_arg] = ACTIONS(1445), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [147] = { [ts_builtin_sym_end] = ACTIONS(1449), [sym_identifier] = ACTIONS(1451), [aux_sym_preproc_include_token1] = ACTIONS(1449), @@ -51164,9 +51547,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1451), [sym_primitive_type] = ACTIONS(1451), [anon_sym_enum] = ACTIONS(1451), - [anon_sym_NS_ENUM] = ACTIONS(1451), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1451), - [anon_sym_NS_OPTIONS] = ACTIONS(1451), [anon_sym_struct] = ACTIONS(1451), [anon_sym_union] = ACTIONS(1451), [anon_sym_if] = ACTIONS(1451), @@ -51233,6 +51613,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1451), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1451), [anon_sym_ATimplementation] = ACTIONS(1449), + [anon_sym_NS_ENUM] = ACTIONS(1451), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1451), + [anon_sym_NS_OPTIONS] = ACTIONS(1451), [anon_sym_typeof] = ACTIONS(1451), [anon_sym___typeof] = ACTIONS(1451), [anon_sym___typeof__] = ACTIONS(1451), @@ -51267,538 +51650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [146] = { - [ts_builtin_sym_end] = ACTIONS(1445), - [sym_identifier] = ACTIONS(1447), - [aux_sym_preproc_include_token1] = ACTIONS(1445), - [aux_sym_preproc_def_token1] = ACTIONS(1445), - [anon_sym_RPAREN] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1447), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1447), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1447), - [anon_sym_LPAREN2] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1445), - [anon_sym_TILDE] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_CARET] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_typedef] = ACTIONS(1447), - [anon_sym_extern] = ACTIONS(1447), - [anon_sym___attribute] = ACTIONS(1447), - [anon_sym___attribute__] = ACTIONS(1447), - [anon_sym___declspec] = ACTIONS(1447), - [anon_sym___cdecl] = ACTIONS(1447), - [anon_sym___clrcall] = ACTIONS(1447), - [anon_sym___stdcall] = ACTIONS(1447), - [anon_sym___fastcall] = ACTIONS(1447), - [anon_sym___thiscall] = ACTIONS(1447), - [anon_sym___vectorcall] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_auto] = ACTIONS(1447), - [anon_sym_register] = ACTIONS(1447), - [anon_sym_inline] = ACTIONS(1447), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_volatile] = ACTIONS(1447), - [anon_sym_restrict] = ACTIONS(1447), - [anon_sym__Atomic] = ACTIONS(1447), - [anon_sym_in] = ACTIONS(1447), - [anon_sym_out] = ACTIONS(1447), - [anon_sym_inout] = ACTIONS(1447), - [anon_sym_bycopy] = ACTIONS(1447), - [anon_sym_byref] = ACTIONS(1447), - [anon_sym_oneway] = ACTIONS(1447), - [anon_sym__Nullable] = ACTIONS(1447), - [anon_sym__Nonnull] = ACTIONS(1447), - [anon_sym__Nullable_result] = ACTIONS(1447), - [anon_sym__Null_unspecified] = ACTIONS(1447), - [anon_sym___autoreleasing] = ACTIONS(1447), - [anon_sym___nullable] = ACTIONS(1447), - [anon_sym___nonnull] = ACTIONS(1447), - [anon_sym___strong] = ACTIONS(1447), - [anon_sym___weak] = ACTIONS(1447), - [anon_sym___bridge] = ACTIONS(1447), - [anon_sym___bridge_transfer] = ACTIONS(1447), - [anon_sym___bridge_retained] = ACTIONS(1447), - [anon_sym___unsafe_unretained] = ACTIONS(1447), - [anon_sym___block] = ACTIONS(1447), - [anon_sym___kindof] = ACTIONS(1447), - [anon_sym___unused] = ACTIONS(1447), - [anon_sym__Complex] = ACTIONS(1447), - [anon_sym___complex] = ACTIONS(1447), - [anon_sym_IBOutlet] = ACTIONS(1447), - [anon_sym_IBInspectable] = ACTIONS(1447), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1447), - [anon_sym_signed] = ACTIONS(1447), - [anon_sym_unsigned] = ACTIONS(1447), - [anon_sym_long] = ACTIONS(1447), - [anon_sym_short] = ACTIONS(1447), - [sym_primitive_type] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1447), - [anon_sym_NS_ENUM] = ACTIONS(1447), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1447), - [anon_sym_NS_OPTIONS] = ACTIONS(1447), - [anon_sym_struct] = ACTIONS(1447), - [anon_sym_union] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_else] = ACTIONS(1447), - [anon_sym_switch] = ACTIONS(1447), - [anon_sym_case] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_do] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_goto] = ACTIONS(1447), - [anon_sym_DASH_DASH] = ACTIONS(1445), - [anon_sym_PLUS_PLUS] = ACTIONS(1445), - [anon_sym_sizeof] = ACTIONS(1447), - [sym_number_literal] = ACTIONS(1445), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1445), - [anon_sym_u_DQUOTE] = ACTIONS(1445), - [anon_sym_U_DQUOTE] = ACTIONS(1445), - [anon_sym_u8_DQUOTE] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1445), - [sym_true] = ACTIONS(1447), - [sym_false] = ACTIONS(1447), - [sym_null] = ACTIONS(1447), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1445), - [anon_sym_ATimport] = ACTIONS(1445), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1447), - [anon_sym_ATcompatibility_alias] = ACTIONS(1445), - [anon_sym_ATprotocol] = ACTIONS(1445), - [anon_sym_ATclass] = ACTIONS(1445), - [anon_sym_ATinterface] = ACTIONS(1445), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1447), - [sym_method_attribute_specifier] = ACTIONS(1447), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1447), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1447), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1447), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1447), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1447), - [anon_sym_NS_AVAILABLE] = ACTIONS(1447), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1447), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_API_AVAILABLE] = ACTIONS(1447), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_API_DEPRECATED] = ACTIONS(1447), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1447), - [anon_sym___deprecated_msg] = ACTIONS(1447), - [anon_sym___deprecated_enum_msg] = ACTIONS(1447), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1447), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1447), - [anon_sym_ATimplementation] = ACTIONS(1445), - [anon_sym_typeof] = ACTIONS(1447), - [anon_sym___typeof] = ACTIONS(1447), - [anon_sym___typeof__] = ACTIONS(1447), - [sym_self] = ACTIONS(1447), - [sym_super] = ACTIONS(1447), - [sym_nil] = ACTIONS(1447), - [sym_id] = ACTIONS(1447), - [sym_instancetype] = ACTIONS(1447), - [sym_Class] = ACTIONS(1447), - [sym_SEL] = ACTIONS(1447), - [sym_IMP] = ACTIONS(1447), - [sym_BOOL] = ACTIONS(1447), - [sym_auto] = ACTIONS(1447), - [anon_sym_ATautoreleasepool] = ACTIONS(1445), - [anon_sym_ATsynchronized] = ACTIONS(1445), - [anon_sym_ATtry] = ACTIONS(1445), - [anon_sym_ATcatch] = ACTIONS(1445), - [anon_sym_ATfinally] = ACTIONS(1445), - [anon_sym_ATthrow] = ACTIONS(1445), - [anon_sym_ATselector] = ACTIONS(1445), - [anon_sym_ATencode] = ACTIONS(1445), - [anon_sym_AT] = ACTIONS(1447), - [sym_YES] = ACTIONS(1447), - [sym_NO] = ACTIONS(1447), - [anon_sym___builtin_available] = ACTIONS(1447), - [anon_sym_ATavailable] = ACTIONS(1445), - [anon_sym_va_arg] = ACTIONS(1447), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [147] = { - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1235), - [aux_sym_preproc_include_token1] = ACTIONS(1237), - [aux_sym_preproc_def_token1] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [aux_sym_preproc_if_token1] = ACTIONS(1235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1235), - [anon_sym_LPAREN2] = ACTIONS(1237), - [anon_sym_BANG] = ACTIONS(1237), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_typedef] = ACTIONS(1235), - [anon_sym_extern] = ACTIONS(1235), - [anon_sym___attribute] = ACTIONS(1235), - [anon_sym___attribute__] = ACTIONS(1235), - [anon_sym___declspec] = ACTIONS(1235), - [anon_sym___cdecl] = ACTIONS(1235), - [anon_sym___clrcall] = ACTIONS(1235), - [anon_sym___stdcall] = ACTIONS(1235), - [anon_sym___fastcall] = ACTIONS(1235), - [anon_sym___thiscall] = ACTIONS(1235), - [anon_sym___vectorcall] = ACTIONS(1235), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_static] = ACTIONS(1235), - [anon_sym_auto] = ACTIONS(1235), - [anon_sym_register] = ACTIONS(1235), - [anon_sym_inline] = ACTIONS(1235), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1235), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_volatile] = ACTIONS(1235), - [anon_sym_restrict] = ACTIONS(1235), - [anon_sym__Atomic] = ACTIONS(1235), - [anon_sym_in] = ACTIONS(1235), - [anon_sym_out] = ACTIONS(1235), - [anon_sym_inout] = ACTIONS(1235), - [anon_sym_bycopy] = ACTIONS(1235), - [anon_sym_byref] = ACTIONS(1235), - [anon_sym_oneway] = ACTIONS(1235), - [anon_sym__Nullable] = ACTIONS(1235), - [anon_sym__Nonnull] = ACTIONS(1235), - [anon_sym__Nullable_result] = ACTIONS(1235), - [anon_sym__Null_unspecified] = ACTIONS(1235), - [anon_sym___autoreleasing] = ACTIONS(1235), - [anon_sym___nullable] = ACTIONS(1235), - [anon_sym___nonnull] = ACTIONS(1235), - [anon_sym___strong] = ACTIONS(1235), - [anon_sym___weak] = ACTIONS(1235), - [anon_sym___bridge] = ACTIONS(1235), - [anon_sym___bridge_transfer] = ACTIONS(1235), - [anon_sym___bridge_retained] = ACTIONS(1235), - [anon_sym___unsafe_unretained] = ACTIONS(1235), - [anon_sym___block] = ACTIONS(1235), - [anon_sym___kindof] = ACTIONS(1235), - [anon_sym___unused] = ACTIONS(1235), - [anon_sym__Complex] = ACTIONS(1235), - [anon_sym___complex] = ACTIONS(1235), - [anon_sym_IBOutlet] = ACTIONS(1235), - [anon_sym_IBInspectable] = ACTIONS(1235), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1235), - [anon_sym_signed] = ACTIONS(1235), - [anon_sym_unsigned] = ACTIONS(1235), - [anon_sym_long] = ACTIONS(1235), - [anon_sym_short] = ACTIONS(1235), - [sym_primitive_type] = ACTIONS(1235), - [anon_sym_enum] = ACTIONS(1235), - [anon_sym_NS_ENUM] = ACTIONS(1235), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1235), - [anon_sym_NS_OPTIONS] = ACTIONS(1235), - [anon_sym_struct] = ACTIONS(1235), - [anon_sym_union] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1235), - [anon_sym_else] = ACTIONS(1235), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_case] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1235), - [anon_sym_while] = ACTIONS(1235), - [anon_sym_do] = ACTIONS(1235), - [anon_sym_for] = ACTIONS(1235), - [anon_sym_return] = ACTIONS(1235), - [anon_sym_break] = ACTIONS(1235), - [anon_sym_continue] = ACTIONS(1235), - [anon_sym_goto] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_PLUS_PLUS] = ACTIONS(1237), - [anon_sym_sizeof] = ACTIONS(1235), - [sym_number_literal] = ACTIONS(1237), - [anon_sym_L_SQUOTE] = ACTIONS(1237), - [anon_sym_u_SQUOTE] = ACTIONS(1237), - [anon_sym_U_SQUOTE] = ACTIONS(1237), - [anon_sym_u8_SQUOTE] = ACTIONS(1237), - [anon_sym_SQUOTE] = ACTIONS(1237), - [anon_sym_L_DQUOTE] = ACTIONS(1237), - [anon_sym_u_DQUOTE] = ACTIONS(1237), - [anon_sym_U_DQUOTE] = ACTIONS(1237), - [anon_sym_u8_DQUOTE] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [sym_true] = ACTIONS(1235), - [sym_false] = ACTIONS(1235), - [sym_null] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1237), - [anon_sym_ATimport] = ACTIONS(1237), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1235), - [anon_sym_ATcompatibility_alias] = ACTIONS(1237), - [anon_sym_ATprotocol] = ACTIONS(1237), - [anon_sym_ATclass] = ACTIONS(1237), - [anon_sym_ATinterface] = ACTIONS(1237), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1235), - [sym_method_attribute_specifier] = ACTIONS(1235), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1235), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1235), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1235), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1235), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1235), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1235), - [anon_sym_NS_AVAILABLE] = ACTIONS(1235), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1235), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1235), - [anon_sym_API_AVAILABLE] = ACTIONS(1235), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1235), - [anon_sym_API_DEPRECATED] = ACTIONS(1235), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1235), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1235), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1235), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1235), - [anon_sym___deprecated_msg] = ACTIONS(1235), - [anon_sym___deprecated_enum_msg] = ACTIONS(1235), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1235), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1235), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1235), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1235), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1235), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1235), - [anon_sym_ATimplementation] = ACTIONS(1237), - [anon_sym_typeof] = ACTIONS(1235), - [anon_sym___typeof] = ACTIONS(1235), - [anon_sym___typeof__] = ACTIONS(1235), - [sym_self] = ACTIONS(1235), - [sym_super] = ACTIONS(1235), - [sym_nil] = ACTIONS(1235), - [sym_id] = ACTIONS(1235), - [sym_instancetype] = ACTIONS(1235), - [sym_Class] = ACTIONS(1235), - [sym_SEL] = ACTIONS(1235), - [sym_IMP] = ACTIONS(1235), - [sym_BOOL] = ACTIONS(1235), - [sym_auto] = ACTIONS(1235), - [anon_sym_ATautoreleasepool] = ACTIONS(1237), - [anon_sym_ATsynchronized] = ACTIONS(1237), - [anon_sym_ATtry] = ACTIONS(1237), - [anon_sym_ATcatch] = ACTIONS(1237), - [anon_sym_ATfinally] = ACTIONS(1237), - [anon_sym_ATthrow] = ACTIONS(1237), - [anon_sym_ATselector] = ACTIONS(1237), - [anon_sym_ATencode] = ACTIONS(1237), - [anon_sym_AT] = ACTIONS(1235), - [sym_YES] = ACTIONS(1235), - [sym_NO] = ACTIONS(1235), - [anon_sym___builtin_available] = ACTIONS(1235), - [anon_sym_ATavailable] = ACTIONS(1237), - [anon_sym_va_arg] = ACTIONS(1235), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, [148] = { - [ts_builtin_sym_end] = ACTIONS(1241), - [sym_identifier] = ACTIONS(1239), - [aux_sym_preproc_include_token1] = ACTIONS(1241), - [aux_sym_preproc_def_token1] = ACTIONS(1241), - [anon_sym_RPAREN] = ACTIONS(1241), - [aux_sym_preproc_if_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), - [anon_sym_LPAREN2] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_TILDE] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_typedef] = ACTIONS(1239), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym___attribute] = ACTIONS(1239), - [anon_sym___attribute__] = ACTIONS(1239), - [anon_sym___declspec] = ACTIONS(1239), - [anon_sym___cdecl] = ACTIONS(1239), - [anon_sym___clrcall] = ACTIONS(1239), - [anon_sym___stdcall] = ACTIONS(1239), - [anon_sym___fastcall] = ACTIONS(1239), - [anon_sym___thiscall] = ACTIONS(1239), - [anon_sym___vectorcall] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_RBRACE] = ACTIONS(1241), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_static] = ACTIONS(1239), - [anon_sym_auto] = ACTIONS(1239), - [anon_sym_register] = ACTIONS(1239), - [anon_sym_inline] = ACTIONS(1239), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_volatile] = ACTIONS(1239), - [anon_sym_restrict] = ACTIONS(1239), - [anon_sym__Atomic] = ACTIONS(1239), - [anon_sym_in] = ACTIONS(1239), - [anon_sym_out] = ACTIONS(1239), - [anon_sym_inout] = ACTIONS(1239), - [anon_sym_bycopy] = ACTIONS(1239), - [anon_sym_byref] = ACTIONS(1239), - [anon_sym_oneway] = ACTIONS(1239), - [anon_sym__Nullable] = ACTIONS(1239), - [anon_sym__Nonnull] = ACTIONS(1239), - [anon_sym__Nullable_result] = ACTIONS(1239), - [anon_sym__Null_unspecified] = ACTIONS(1239), - [anon_sym___autoreleasing] = ACTIONS(1239), - [anon_sym___nullable] = ACTIONS(1239), - [anon_sym___nonnull] = ACTIONS(1239), - [anon_sym___strong] = ACTIONS(1239), - [anon_sym___weak] = ACTIONS(1239), - [anon_sym___bridge] = ACTIONS(1239), - [anon_sym___bridge_transfer] = ACTIONS(1239), - [anon_sym___bridge_retained] = ACTIONS(1239), - [anon_sym___unsafe_unretained] = ACTIONS(1239), - [anon_sym___block] = ACTIONS(1239), - [anon_sym___kindof] = ACTIONS(1239), - [anon_sym___unused] = ACTIONS(1239), - [anon_sym__Complex] = ACTIONS(1239), - [anon_sym___complex] = ACTIONS(1239), - [anon_sym_IBOutlet] = ACTIONS(1239), - [anon_sym_IBInspectable] = ACTIONS(1239), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1239), - [anon_sym_signed] = ACTIONS(1239), - [anon_sym_unsigned] = ACTIONS(1239), - [anon_sym_long] = ACTIONS(1239), - [anon_sym_short] = ACTIONS(1239), - [sym_primitive_type] = ACTIONS(1239), - [anon_sym_enum] = ACTIONS(1239), - [anon_sym_NS_ENUM] = ACTIONS(1239), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1239), - [anon_sym_NS_OPTIONS] = ACTIONS(1239), - [anon_sym_struct] = ACTIONS(1239), - [anon_sym_union] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_switch] = ACTIONS(1239), - [anon_sym_case] = ACTIONS(1239), - [anon_sym_default] = ACTIONS(1239), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_do] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_return] = ACTIONS(1239), - [anon_sym_break] = ACTIONS(1239), - [anon_sym_continue] = ACTIONS(1239), - [anon_sym_goto] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_sizeof] = ACTIONS(1239), - [sym_number_literal] = ACTIONS(1241), - [anon_sym_L_SQUOTE] = ACTIONS(1241), - [anon_sym_u_SQUOTE] = ACTIONS(1241), - [anon_sym_U_SQUOTE] = ACTIONS(1241), - [anon_sym_u8_SQUOTE] = ACTIONS(1241), - [anon_sym_SQUOTE] = ACTIONS(1241), - [anon_sym_L_DQUOTE] = ACTIONS(1241), - [anon_sym_u_DQUOTE] = ACTIONS(1241), - [anon_sym_U_DQUOTE] = ACTIONS(1241), - [anon_sym_u8_DQUOTE] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), - [sym_null] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1241), - [anon_sym_ATimport] = ACTIONS(1241), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1239), - [anon_sym_ATcompatibility_alias] = ACTIONS(1241), - [anon_sym_ATprotocol] = ACTIONS(1241), - [anon_sym_ATclass] = ACTIONS(1241), - [anon_sym_ATinterface] = ACTIONS(1241), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1239), - [sym_method_attribute_specifier] = ACTIONS(1239), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1239), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1239), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1239), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1239), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1239), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1239), - [anon_sym_NS_AVAILABLE] = ACTIONS(1239), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1239), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1239), - [anon_sym_API_AVAILABLE] = ACTIONS(1239), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1239), - [anon_sym_API_DEPRECATED] = ACTIONS(1239), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1239), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1239), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1239), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1239), - [anon_sym___deprecated_msg] = ACTIONS(1239), - [anon_sym___deprecated_enum_msg] = ACTIONS(1239), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1239), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1239), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1239), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1239), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1239), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1239), - [anon_sym_ATimplementation] = ACTIONS(1241), - [anon_sym_typeof] = ACTIONS(1239), - [anon_sym___typeof] = ACTIONS(1239), - [anon_sym___typeof__] = ACTIONS(1239), - [sym_self] = ACTIONS(1239), - [sym_super] = ACTIONS(1239), - [sym_nil] = ACTIONS(1239), - [sym_id] = ACTIONS(1239), - [sym_instancetype] = ACTIONS(1239), - [sym_Class] = ACTIONS(1239), - [sym_SEL] = ACTIONS(1239), - [sym_IMP] = ACTIONS(1239), - [sym_BOOL] = ACTIONS(1239), - [sym_auto] = ACTIONS(1239), - [anon_sym_ATautoreleasepool] = ACTIONS(1241), - [anon_sym_ATsynchronized] = ACTIONS(1241), - [anon_sym_ATtry] = ACTIONS(1241), - [anon_sym_ATcatch] = ACTIONS(1241), - [anon_sym_ATfinally] = ACTIONS(1241), - [anon_sym_ATthrow] = ACTIONS(1241), - [anon_sym_ATselector] = ACTIONS(1241), - [anon_sym_ATencode] = ACTIONS(1241), - [anon_sym_AT] = ACTIONS(1239), - [sym_YES] = ACTIONS(1239), - [sym_NO] = ACTIONS(1239), - [anon_sym___builtin_available] = ACTIONS(1239), - [anon_sym_ATavailable] = ACTIONS(1241), - [anon_sym_va_arg] = ACTIONS(1239), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [149] = { [ts_builtin_sym_end] = ACTIONS(1453), [sym_identifier] = ACTIONS(1455), [aux_sym_preproc_include_token1] = ACTIONS(1453), @@ -51872,9 +51724,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1455), [sym_primitive_type] = ACTIONS(1455), [anon_sym_enum] = ACTIONS(1455), - [anon_sym_NS_ENUM] = ACTIONS(1455), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1455), - [anon_sym_NS_OPTIONS] = ACTIONS(1455), [anon_sym_struct] = ACTIONS(1455), [anon_sym_union] = ACTIONS(1455), [anon_sym_if] = ACTIONS(1455), @@ -51941,6 +51790,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1455), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1455), [anon_sym_ATimplementation] = ACTIONS(1453), + [anon_sym_NS_ENUM] = ACTIONS(1455), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1455), + [anon_sym_NS_OPTIONS] = ACTIONS(1455), [anon_sym_typeof] = ACTIONS(1455), [anon_sym___typeof] = ACTIONS(1455), [anon_sym___typeof__] = ACTIONS(1455), @@ -51975,184 +51827,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [150] = { - [ts_builtin_sym_end] = ACTIONS(1457), - [sym_identifier] = ACTIONS(1459), - [aux_sym_preproc_include_token1] = ACTIONS(1457), - [aux_sym_preproc_def_token1] = ACTIONS(1457), - [anon_sym_RPAREN] = ACTIONS(1457), - [aux_sym_preproc_if_token1] = ACTIONS(1459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1459), - [anon_sym_LPAREN2] = ACTIONS(1457), - [anon_sym_BANG] = ACTIONS(1457), - [anon_sym_TILDE] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1457), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_AMP] = ACTIONS(1457), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_typedef] = ACTIONS(1459), - [anon_sym_extern] = ACTIONS(1459), - [anon_sym___attribute] = ACTIONS(1459), - [anon_sym___attribute__] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(1459), - [anon_sym___cdecl] = ACTIONS(1459), - [anon_sym___clrcall] = ACTIONS(1459), - [anon_sym___stdcall] = ACTIONS(1459), - [anon_sym___fastcall] = ACTIONS(1459), - [anon_sym___thiscall] = ACTIONS(1459), - [anon_sym___vectorcall] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1457), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_static] = ACTIONS(1459), - [anon_sym_auto] = ACTIONS(1459), - [anon_sym_register] = ACTIONS(1459), - [anon_sym_inline] = ACTIONS(1459), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1459), - [anon_sym_volatile] = ACTIONS(1459), - [anon_sym_restrict] = ACTIONS(1459), - [anon_sym__Atomic] = ACTIONS(1459), - [anon_sym_in] = ACTIONS(1459), - [anon_sym_out] = ACTIONS(1459), - [anon_sym_inout] = ACTIONS(1459), - [anon_sym_bycopy] = ACTIONS(1459), - [anon_sym_byref] = ACTIONS(1459), - [anon_sym_oneway] = ACTIONS(1459), - [anon_sym__Nullable] = ACTIONS(1459), - [anon_sym__Nonnull] = ACTIONS(1459), - [anon_sym__Nullable_result] = ACTIONS(1459), - [anon_sym__Null_unspecified] = ACTIONS(1459), - [anon_sym___autoreleasing] = ACTIONS(1459), - [anon_sym___nullable] = ACTIONS(1459), - [anon_sym___nonnull] = ACTIONS(1459), - [anon_sym___strong] = ACTIONS(1459), - [anon_sym___weak] = ACTIONS(1459), - [anon_sym___bridge] = ACTIONS(1459), - [anon_sym___bridge_transfer] = ACTIONS(1459), - [anon_sym___bridge_retained] = ACTIONS(1459), - [anon_sym___unsafe_unretained] = ACTIONS(1459), - [anon_sym___block] = ACTIONS(1459), - [anon_sym___kindof] = ACTIONS(1459), - [anon_sym___unused] = ACTIONS(1459), - [anon_sym__Complex] = ACTIONS(1459), - [anon_sym___complex] = ACTIONS(1459), - [anon_sym_IBOutlet] = ACTIONS(1459), - [anon_sym_IBInspectable] = ACTIONS(1459), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1459), - [anon_sym_signed] = ACTIONS(1459), - [anon_sym_unsigned] = ACTIONS(1459), - [anon_sym_long] = ACTIONS(1459), - [anon_sym_short] = ACTIONS(1459), - [sym_primitive_type] = ACTIONS(1459), - [anon_sym_enum] = ACTIONS(1459), - [anon_sym_NS_ENUM] = ACTIONS(1459), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1459), - [anon_sym_NS_OPTIONS] = ACTIONS(1459), - [anon_sym_struct] = ACTIONS(1459), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_if] = ACTIONS(1459), - [anon_sym_else] = ACTIONS(1459), - [anon_sym_switch] = ACTIONS(1459), - [anon_sym_case] = ACTIONS(1459), - [anon_sym_default] = ACTIONS(1459), - [anon_sym_while] = ACTIONS(1459), - [anon_sym_do] = ACTIONS(1459), - [anon_sym_for] = ACTIONS(1459), - [anon_sym_return] = ACTIONS(1459), - [anon_sym_break] = ACTIONS(1459), - [anon_sym_continue] = ACTIONS(1459), - [anon_sym_goto] = ACTIONS(1459), - [anon_sym_DASH_DASH] = ACTIONS(1457), - [anon_sym_PLUS_PLUS] = ACTIONS(1457), - [anon_sym_sizeof] = ACTIONS(1459), - [sym_number_literal] = ACTIONS(1457), - [anon_sym_L_SQUOTE] = ACTIONS(1457), - [anon_sym_u_SQUOTE] = ACTIONS(1457), - [anon_sym_U_SQUOTE] = ACTIONS(1457), - [anon_sym_u8_SQUOTE] = ACTIONS(1457), - [anon_sym_SQUOTE] = ACTIONS(1457), - [anon_sym_L_DQUOTE] = ACTIONS(1457), - [anon_sym_u_DQUOTE] = ACTIONS(1457), - [anon_sym_U_DQUOTE] = ACTIONS(1457), - [anon_sym_u8_DQUOTE] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(1457), - [sym_true] = ACTIONS(1459), - [sym_false] = ACTIONS(1459), - [sym_null] = ACTIONS(1459), + [149] = { + [sym_identifier] = ACTIONS(1457), + [aux_sym_preproc_include_token1] = ACTIONS(1459), + [aux_sym_preproc_def_token1] = ACTIONS(1459), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_if_token2] = ACTIONS(1457), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1457), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1457), + [aux_sym_preproc_else_token1] = ACTIONS(1457), + [aux_sym_preproc_elif_token1] = ACTIONS(1457), + [anon_sym_LPAREN2] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_typedef] = ACTIONS(1457), + [anon_sym_extern] = ACTIONS(1457), + [anon_sym___attribute] = ACTIONS(1457), + [anon_sym___attribute__] = ACTIONS(1457), + [anon_sym___declspec] = ACTIONS(1457), + [anon_sym___cdecl] = ACTIONS(1457), + [anon_sym___clrcall] = ACTIONS(1457), + [anon_sym___stdcall] = ACTIONS(1457), + [anon_sym___fastcall] = ACTIONS(1457), + [anon_sym___thiscall] = ACTIONS(1457), + [anon_sym___vectorcall] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1459), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_auto] = ACTIONS(1457), + [anon_sym_register] = ACTIONS(1457), + [anon_sym_inline] = ACTIONS(1457), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_volatile] = ACTIONS(1457), + [anon_sym_restrict] = ACTIONS(1457), + [anon_sym__Atomic] = ACTIONS(1457), + [anon_sym_in] = ACTIONS(1457), + [anon_sym_out] = ACTIONS(1457), + [anon_sym_inout] = ACTIONS(1457), + [anon_sym_bycopy] = ACTIONS(1457), + [anon_sym_byref] = ACTIONS(1457), + [anon_sym_oneway] = ACTIONS(1457), + [anon_sym__Nullable] = ACTIONS(1457), + [anon_sym__Nonnull] = ACTIONS(1457), + [anon_sym__Nullable_result] = ACTIONS(1457), + [anon_sym__Null_unspecified] = ACTIONS(1457), + [anon_sym___autoreleasing] = ACTIONS(1457), + [anon_sym___nullable] = ACTIONS(1457), + [anon_sym___nonnull] = ACTIONS(1457), + [anon_sym___strong] = ACTIONS(1457), + [anon_sym___weak] = ACTIONS(1457), + [anon_sym___bridge] = ACTIONS(1457), + [anon_sym___bridge_transfer] = ACTIONS(1457), + [anon_sym___bridge_retained] = ACTIONS(1457), + [anon_sym___unsafe_unretained] = ACTIONS(1457), + [anon_sym___block] = ACTIONS(1457), + [anon_sym___kindof] = ACTIONS(1457), + [anon_sym___unused] = ACTIONS(1457), + [anon_sym__Complex] = ACTIONS(1457), + [anon_sym___complex] = ACTIONS(1457), + [anon_sym_IBOutlet] = ACTIONS(1457), + [anon_sym_IBInspectable] = ACTIONS(1457), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1457), + [anon_sym_signed] = ACTIONS(1457), + [anon_sym_unsigned] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [sym_primitive_type] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1457), + [anon_sym_struct] = ACTIONS(1457), + [anon_sym_union] = ACTIONS(1457), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_else] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_case] = ACTIONS(1457), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_goto] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_sizeof] = ACTIONS(1457), + [sym_number_literal] = ACTIONS(1459), + [anon_sym_L_SQUOTE] = ACTIONS(1459), + [anon_sym_u_SQUOTE] = ACTIONS(1459), + [anon_sym_U_SQUOTE] = ACTIONS(1459), + [anon_sym_u8_SQUOTE] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_L_DQUOTE] = ACTIONS(1459), + [anon_sym_u_DQUOTE] = ACTIONS(1459), + [anon_sym_U_DQUOTE] = ACTIONS(1459), + [anon_sym_u8_DQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [sym_true] = ACTIONS(1457), + [sym_false] = ACTIONS(1457), + [sym_null] = ACTIONS(1457), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1457), - [anon_sym_ATimport] = ACTIONS(1457), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1459), - [anon_sym_ATcompatibility_alias] = ACTIONS(1457), - [anon_sym_ATprotocol] = ACTIONS(1457), - [anon_sym_ATclass] = ACTIONS(1457), - [anon_sym_ATinterface] = ACTIONS(1457), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1459), - [sym_method_attribute_specifier] = ACTIONS(1459), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1459), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1459), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1459), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1459), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1459), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1459), - [anon_sym_NS_AVAILABLE] = ACTIONS(1459), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1459), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1459), - [anon_sym_API_AVAILABLE] = ACTIONS(1459), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1459), - [anon_sym_API_DEPRECATED] = ACTIONS(1459), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1459), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1459), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1459), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1459), - [anon_sym___deprecated_msg] = ACTIONS(1459), - [anon_sym___deprecated_enum_msg] = ACTIONS(1459), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1459), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1459), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1459), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1459), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1459), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1459), - [anon_sym_ATimplementation] = ACTIONS(1457), - [anon_sym_typeof] = ACTIONS(1459), - [anon_sym___typeof] = ACTIONS(1459), - [anon_sym___typeof__] = ACTIONS(1459), - [sym_self] = ACTIONS(1459), - [sym_super] = ACTIONS(1459), - [sym_nil] = ACTIONS(1459), - [sym_id] = ACTIONS(1459), - [sym_instancetype] = ACTIONS(1459), - [sym_Class] = ACTIONS(1459), - [sym_SEL] = ACTIONS(1459), - [sym_IMP] = ACTIONS(1459), - [sym_BOOL] = ACTIONS(1459), - [sym_auto] = ACTIONS(1459), - [anon_sym_ATautoreleasepool] = ACTIONS(1457), - [anon_sym_ATsynchronized] = ACTIONS(1457), - [anon_sym_ATtry] = ACTIONS(1457), - [anon_sym_ATcatch] = ACTIONS(1457), - [anon_sym_ATfinally] = ACTIONS(1457), - [anon_sym_ATthrow] = ACTIONS(1457), - [anon_sym_ATselector] = ACTIONS(1457), - [anon_sym_ATencode] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(1459), - [sym_YES] = ACTIONS(1459), - [sym_NO] = ACTIONS(1459), - [anon_sym___builtin_available] = ACTIONS(1459), - [anon_sym_ATavailable] = ACTIONS(1457), - [anon_sym_va_arg] = ACTIONS(1459), + [anon_sym_POUNDimport] = ACTIONS(1459), + [anon_sym_ATimport] = ACTIONS(1459), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1457), + [anon_sym_ATcompatibility_alias] = ACTIONS(1459), + [anon_sym_ATprotocol] = ACTIONS(1459), + [anon_sym_ATclass] = ACTIONS(1459), + [anon_sym_ATinterface] = ACTIONS(1459), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1457), + [sym_method_attribute_specifier] = ACTIONS(1457), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1457), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1457), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1457), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1457), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1457), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1457), + [anon_sym_NS_AVAILABLE] = ACTIONS(1457), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1457), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1457), + [anon_sym_API_AVAILABLE] = ACTIONS(1457), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1457), + [anon_sym_API_DEPRECATED] = ACTIONS(1457), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1457), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1457), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1457), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1457), + [anon_sym___deprecated_msg] = ACTIONS(1457), + [anon_sym___deprecated_enum_msg] = ACTIONS(1457), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1457), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1457), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1457), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1457), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1457), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1457), + [anon_sym_ATimplementation] = ACTIONS(1459), + [anon_sym_NS_ENUM] = ACTIONS(1457), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1457), + [anon_sym_NS_OPTIONS] = ACTIONS(1457), + [anon_sym_typeof] = ACTIONS(1457), + [anon_sym___typeof] = ACTIONS(1457), + [anon_sym___typeof__] = ACTIONS(1457), + [sym_self] = ACTIONS(1457), + [sym_super] = ACTIONS(1457), + [sym_nil] = ACTIONS(1457), + [sym_id] = ACTIONS(1457), + [sym_instancetype] = ACTIONS(1457), + [sym_Class] = ACTIONS(1457), + [sym_SEL] = ACTIONS(1457), + [sym_IMP] = ACTIONS(1457), + [sym_BOOL] = ACTIONS(1457), + [sym_auto] = ACTIONS(1457), + [anon_sym_ATautoreleasepool] = ACTIONS(1459), + [anon_sym_ATsynchronized] = ACTIONS(1459), + [anon_sym_ATtry] = ACTIONS(1459), + [anon_sym_ATcatch] = ACTIONS(1459), + [anon_sym_ATfinally] = ACTIONS(1459), + [anon_sym_ATthrow] = ACTIONS(1459), + [anon_sym_ATselector] = ACTIONS(1459), + [anon_sym_ATencode] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1457), + [sym_YES] = ACTIONS(1457), + [sym_NO] = ACTIONS(1457), + [anon_sym___builtin_available] = ACTIONS(1457), + [anon_sym_ATavailable] = ACTIONS(1459), + [anon_sym_va_arg] = ACTIONS(1457), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [151] = { + [150] = { [ts_builtin_sym_end] = ACTIONS(1461), [sym_identifier] = ACTIONS(1463), [aux_sym_preproc_include_token1] = ACTIONS(1461), @@ -52226,9 +52078,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1463), [sym_primitive_type] = ACTIONS(1463), [anon_sym_enum] = ACTIONS(1463), - [anon_sym_NS_ENUM] = ACTIONS(1463), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1463), - [anon_sym_NS_OPTIONS] = ACTIONS(1463), [anon_sym_struct] = ACTIONS(1463), [anon_sym_union] = ACTIONS(1463), [anon_sym_if] = ACTIONS(1463), @@ -52295,6 +52144,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1463), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1463), [anon_sym_ATimplementation] = ACTIONS(1461), + [anon_sym_NS_ENUM] = ACTIONS(1463), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1463), + [anon_sym_NS_OPTIONS] = ACTIONS(1463), [anon_sym_typeof] = ACTIONS(1463), [anon_sym___typeof] = ACTIONS(1463), [anon_sym___typeof__] = ACTIONS(1463), @@ -52329,184 +52181,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [152] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1195), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token2] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [aux_sym_preproc_else_token1] = ACTIONS(1197), - [aux_sym_preproc_elif_token1] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_out] = ACTIONS(1197), - [anon_sym_inout] = ACTIONS(1197), - [anon_sym_bycopy] = ACTIONS(1197), - [anon_sym_byref] = ACTIONS(1197), - [anon_sym_oneway] = ACTIONS(1197), - [anon_sym__Nullable] = ACTIONS(1197), - [anon_sym__Nonnull] = ACTIONS(1197), - [anon_sym__Nullable_result] = ACTIONS(1197), - [anon_sym__Null_unspecified] = ACTIONS(1197), - [anon_sym___autoreleasing] = ACTIONS(1197), - [anon_sym___nullable] = ACTIONS(1197), - [anon_sym___nonnull] = ACTIONS(1197), - [anon_sym___strong] = ACTIONS(1197), - [anon_sym___weak] = ACTIONS(1197), - [anon_sym___bridge] = ACTIONS(1197), - [anon_sym___bridge_transfer] = ACTIONS(1197), - [anon_sym___bridge_retained] = ACTIONS(1197), - [anon_sym___unsafe_unretained] = ACTIONS(1197), - [anon_sym___block] = ACTIONS(1197), - [anon_sym___kindof] = ACTIONS(1197), - [anon_sym___unused] = ACTIONS(1197), - [anon_sym__Complex] = ACTIONS(1197), - [anon_sym___complex] = ACTIONS(1197), - [anon_sym_IBOutlet] = ACTIONS(1197), - [anon_sym_IBInspectable] = ACTIONS(1197), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_NS_ENUM] = ACTIONS(1197), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1197), - [anon_sym_NS_OPTIONS] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [sym_null] = ACTIONS(1197), + [151] = { + [ts_builtin_sym_end] = ACTIONS(1433), + [sym_identifier] = ACTIONS(1435), + [aux_sym_preproc_include_token1] = ACTIONS(1433), + [aux_sym_preproc_def_token1] = ACTIONS(1433), + [anon_sym_RPAREN] = ACTIONS(1433), + [aux_sym_preproc_if_token1] = ACTIONS(1435), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1435), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1435), + [anon_sym_LPAREN2] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_typedef] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym___attribute] = ACTIONS(1435), + [anon_sym___attribute__] = ACTIONS(1435), + [anon_sym___declspec] = ACTIONS(1435), + [anon_sym___cdecl] = ACTIONS(1435), + [anon_sym___clrcall] = ACTIONS(1435), + [anon_sym___stdcall] = ACTIONS(1435), + [anon_sym___fastcall] = ACTIONS(1435), + [anon_sym___thiscall] = ACTIONS(1435), + [anon_sym___vectorcall] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1435), + [anon_sym_auto] = ACTIONS(1435), + [anon_sym_register] = ACTIONS(1435), + [anon_sym_inline] = ACTIONS(1435), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_volatile] = ACTIONS(1435), + [anon_sym_restrict] = ACTIONS(1435), + [anon_sym__Atomic] = ACTIONS(1435), + [anon_sym_in] = ACTIONS(1435), + [anon_sym_out] = ACTIONS(1435), + [anon_sym_inout] = ACTIONS(1435), + [anon_sym_bycopy] = ACTIONS(1435), + [anon_sym_byref] = ACTIONS(1435), + [anon_sym_oneway] = ACTIONS(1435), + [anon_sym__Nullable] = ACTIONS(1435), + [anon_sym__Nonnull] = ACTIONS(1435), + [anon_sym__Nullable_result] = ACTIONS(1435), + [anon_sym__Null_unspecified] = ACTIONS(1435), + [anon_sym___autoreleasing] = ACTIONS(1435), + [anon_sym___nullable] = ACTIONS(1435), + [anon_sym___nonnull] = ACTIONS(1435), + [anon_sym___strong] = ACTIONS(1435), + [anon_sym___weak] = ACTIONS(1435), + [anon_sym___bridge] = ACTIONS(1435), + [anon_sym___bridge_transfer] = ACTIONS(1435), + [anon_sym___bridge_retained] = ACTIONS(1435), + [anon_sym___unsafe_unretained] = ACTIONS(1435), + [anon_sym___block] = ACTIONS(1435), + [anon_sym___kindof] = ACTIONS(1435), + [anon_sym___unused] = ACTIONS(1435), + [anon_sym__Complex] = ACTIONS(1435), + [anon_sym___complex] = ACTIONS(1435), + [anon_sym_IBOutlet] = ACTIONS(1435), + [anon_sym_IBInspectable] = ACTIONS(1435), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1435), + [anon_sym_signed] = ACTIONS(1435), + [anon_sym_unsigned] = ACTIONS(1435), + [anon_sym_long] = ACTIONS(1435), + [anon_sym_short] = ACTIONS(1435), + [sym_primitive_type] = ACTIONS(1435), + [anon_sym_enum] = ACTIONS(1435), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_else] = ACTIONS(1435), + [anon_sym_switch] = ACTIONS(1435), + [anon_sym_case] = ACTIONS(1435), + [anon_sym_default] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_do] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_goto] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1433), + [anon_sym_sizeof] = ACTIONS(1435), + [sym_number_literal] = ACTIONS(1433), + [anon_sym_L_SQUOTE] = ACTIONS(1433), + [anon_sym_u_SQUOTE] = ACTIONS(1433), + [anon_sym_U_SQUOTE] = ACTIONS(1433), + [anon_sym_u8_SQUOTE] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_L_DQUOTE] = ACTIONS(1433), + [anon_sym_u_DQUOTE] = ACTIONS(1433), + [anon_sym_U_DQUOTE] = ACTIONS(1433), + [anon_sym_u8_DQUOTE] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [sym_true] = ACTIONS(1435), + [sym_false] = ACTIONS(1435), + [sym_null] = ACTIONS(1435), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1195), - [anon_sym_ATimport] = ACTIONS(1195), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1197), - [anon_sym_ATcompatibility_alias] = ACTIONS(1195), - [anon_sym_ATprotocol] = ACTIONS(1195), - [anon_sym_ATclass] = ACTIONS(1195), - [anon_sym_ATinterface] = ACTIONS(1195), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1197), - [sym_method_attribute_specifier] = ACTIONS(1197), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1197), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE] = ACTIONS(1197), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_API_AVAILABLE] = ACTIONS(1197), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_API_DEPRECATED] = ACTIONS(1197), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1197), - [anon_sym___deprecated_msg] = ACTIONS(1197), - [anon_sym___deprecated_enum_msg] = ACTIONS(1197), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1197), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1197), - [anon_sym_ATimplementation] = ACTIONS(1195), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym___typeof] = ACTIONS(1197), - [anon_sym___typeof__] = ACTIONS(1197), - [sym_self] = ACTIONS(1197), - [sym_super] = ACTIONS(1197), - [sym_nil] = ACTIONS(1197), - [sym_id] = ACTIONS(1197), - [sym_instancetype] = ACTIONS(1197), - [sym_Class] = ACTIONS(1197), - [sym_SEL] = ACTIONS(1197), - [sym_IMP] = ACTIONS(1197), - [sym_BOOL] = ACTIONS(1197), - [sym_auto] = ACTIONS(1197), - [anon_sym_ATautoreleasepool] = ACTIONS(1195), - [anon_sym_ATsynchronized] = ACTIONS(1195), - [anon_sym_ATtry] = ACTIONS(1195), - [anon_sym_ATcatch] = ACTIONS(1195), - [anon_sym_ATfinally] = ACTIONS(1195), - [anon_sym_ATthrow] = ACTIONS(1195), - [anon_sym_ATselector] = ACTIONS(1195), - [anon_sym_ATencode] = ACTIONS(1195), - [anon_sym_AT] = ACTIONS(1197), - [sym_YES] = ACTIONS(1197), - [sym_NO] = ACTIONS(1197), - [anon_sym___builtin_available] = ACTIONS(1197), - [anon_sym_ATavailable] = ACTIONS(1195), - [anon_sym_va_arg] = ACTIONS(1197), + [anon_sym_POUNDimport] = ACTIONS(1433), + [anon_sym_ATimport] = ACTIONS(1433), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1435), + [anon_sym_ATcompatibility_alias] = ACTIONS(1433), + [anon_sym_ATprotocol] = ACTIONS(1433), + [anon_sym_ATclass] = ACTIONS(1433), + [anon_sym_ATinterface] = ACTIONS(1433), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1435), + [sym_method_attribute_specifier] = ACTIONS(1435), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1435), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1435), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1435), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1435), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1435), + [anon_sym_NS_AVAILABLE] = ACTIONS(1435), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1435), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_API_AVAILABLE] = ACTIONS(1435), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_API_DEPRECATED] = ACTIONS(1435), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1435), + [anon_sym___deprecated_msg] = ACTIONS(1435), + [anon_sym___deprecated_enum_msg] = ACTIONS(1435), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1435), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1435), + [anon_sym_ATimplementation] = ACTIONS(1433), + [anon_sym_NS_ENUM] = ACTIONS(1435), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1435), + [anon_sym_NS_OPTIONS] = ACTIONS(1435), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___typeof] = ACTIONS(1435), + [anon_sym___typeof__] = ACTIONS(1435), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_nil] = ACTIONS(1435), + [sym_id] = ACTIONS(1435), + [sym_instancetype] = ACTIONS(1435), + [sym_Class] = ACTIONS(1435), + [sym_SEL] = ACTIONS(1435), + [sym_IMP] = ACTIONS(1435), + [sym_BOOL] = ACTIONS(1435), + [sym_auto] = ACTIONS(1435), + [anon_sym_ATautoreleasepool] = ACTIONS(1433), + [anon_sym_ATsynchronized] = ACTIONS(1433), + [anon_sym_ATtry] = ACTIONS(1433), + [anon_sym_ATcatch] = ACTIONS(1433), + [anon_sym_ATfinally] = ACTIONS(1433), + [anon_sym_ATthrow] = ACTIONS(1433), + [anon_sym_ATselector] = ACTIONS(1433), + [anon_sym_ATencode] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(1435), + [sym_YES] = ACTIONS(1435), + [sym_NO] = ACTIONS(1435), + [anon_sym___builtin_available] = ACTIONS(1435), + [anon_sym_ATavailable] = ACTIONS(1433), + [anon_sym_va_arg] = ACTIONS(1435), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [153] = { + [152] = { [sym_identifier] = ACTIONS(1465), [aux_sym_preproc_include_token1] = ACTIONS(1467), [aux_sym_preproc_def_token1] = ACTIONS(1467), @@ -52580,9 +52432,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1465), [sym_primitive_type] = ACTIONS(1465), [anon_sym_enum] = ACTIONS(1465), - [anon_sym_NS_ENUM] = ACTIONS(1465), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1465), - [anon_sym_NS_OPTIONS] = ACTIONS(1465), [anon_sym_struct] = ACTIONS(1465), [anon_sym_union] = ACTIONS(1465), [anon_sym_if] = ACTIONS(1465), @@ -52649,6 +52498,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1465), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1465), [anon_sym_ATimplementation] = ACTIONS(1467), + [anon_sym_NS_ENUM] = ACTIONS(1465), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1465), + [anon_sym_NS_OPTIONS] = ACTIONS(1465), [anon_sym_typeof] = ACTIONS(1465), [anon_sym___typeof] = ACTIONS(1465), [anon_sym___typeof__] = ACTIONS(1465), @@ -52683,6 +52535,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, + [153] = { + [ts_builtin_sym_end] = ACTIONS(1469), + [sym_identifier] = ACTIONS(1471), + [aux_sym_preproc_include_token1] = ACTIONS(1469), + [aux_sym_preproc_def_token1] = ACTIONS(1469), + [anon_sym_RPAREN] = ACTIONS(1469), + [aux_sym_preproc_if_token1] = ACTIONS(1471), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1471), + [anon_sym_LPAREN2] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_typedef] = ACTIONS(1471), + [anon_sym_extern] = ACTIONS(1471), + [anon_sym___attribute] = ACTIONS(1471), + [anon_sym___attribute__] = ACTIONS(1471), + [anon_sym___declspec] = ACTIONS(1471), + [anon_sym___cdecl] = ACTIONS(1471), + [anon_sym___clrcall] = ACTIONS(1471), + [anon_sym___stdcall] = ACTIONS(1471), + [anon_sym___fastcall] = ACTIONS(1471), + [anon_sym___thiscall] = ACTIONS(1471), + [anon_sym___vectorcall] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_auto] = ACTIONS(1471), + [anon_sym_register] = ACTIONS(1471), + [anon_sym_inline] = ACTIONS(1471), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_volatile] = ACTIONS(1471), + [anon_sym_restrict] = ACTIONS(1471), + [anon_sym__Atomic] = ACTIONS(1471), + [anon_sym_in] = ACTIONS(1471), + [anon_sym_out] = ACTIONS(1471), + [anon_sym_inout] = ACTIONS(1471), + [anon_sym_bycopy] = ACTIONS(1471), + [anon_sym_byref] = ACTIONS(1471), + [anon_sym_oneway] = ACTIONS(1471), + [anon_sym__Nullable] = ACTIONS(1471), + [anon_sym__Nonnull] = ACTIONS(1471), + [anon_sym__Nullable_result] = ACTIONS(1471), + [anon_sym__Null_unspecified] = ACTIONS(1471), + [anon_sym___autoreleasing] = ACTIONS(1471), + [anon_sym___nullable] = ACTIONS(1471), + [anon_sym___nonnull] = ACTIONS(1471), + [anon_sym___strong] = ACTIONS(1471), + [anon_sym___weak] = ACTIONS(1471), + [anon_sym___bridge] = ACTIONS(1471), + [anon_sym___bridge_transfer] = ACTIONS(1471), + [anon_sym___bridge_retained] = ACTIONS(1471), + [anon_sym___unsafe_unretained] = ACTIONS(1471), + [anon_sym___block] = ACTIONS(1471), + [anon_sym___kindof] = ACTIONS(1471), + [anon_sym___unused] = ACTIONS(1471), + [anon_sym__Complex] = ACTIONS(1471), + [anon_sym___complex] = ACTIONS(1471), + [anon_sym_IBOutlet] = ACTIONS(1471), + [anon_sym_IBInspectable] = ACTIONS(1471), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1471), + [anon_sym_signed] = ACTIONS(1471), + [anon_sym_unsigned] = ACTIONS(1471), + [anon_sym_long] = ACTIONS(1471), + [anon_sym_short] = ACTIONS(1471), + [sym_primitive_type] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_struct] = ACTIONS(1471), + [anon_sym_union] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_else] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1471), + [anon_sym_case] = ACTIONS(1471), + [anon_sym_default] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_goto] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_sizeof] = ACTIONS(1471), + [sym_number_literal] = ACTIONS(1469), + [anon_sym_L_SQUOTE] = ACTIONS(1469), + [anon_sym_u_SQUOTE] = ACTIONS(1469), + [anon_sym_U_SQUOTE] = ACTIONS(1469), + [anon_sym_u8_SQUOTE] = ACTIONS(1469), + [anon_sym_SQUOTE] = ACTIONS(1469), + [anon_sym_L_DQUOTE] = ACTIONS(1469), + [anon_sym_u_DQUOTE] = ACTIONS(1469), + [anon_sym_U_DQUOTE] = ACTIONS(1469), + [anon_sym_u8_DQUOTE] = ACTIONS(1469), + [anon_sym_DQUOTE] = ACTIONS(1469), + [sym_true] = ACTIONS(1471), + [sym_false] = ACTIONS(1471), + [sym_null] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1469), + [anon_sym_ATimport] = ACTIONS(1469), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1471), + [anon_sym_ATcompatibility_alias] = ACTIONS(1469), + [anon_sym_ATprotocol] = ACTIONS(1469), + [anon_sym_ATclass] = ACTIONS(1469), + [anon_sym_ATinterface] = ACTIONS(1469), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1471), + [sym_method_attribute_specifier] = ACTIONS(1471), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1471), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1471), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1471), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1471), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1471), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1471), + [anon_sym_NS_AVAILABLE] = ACTIONS(1471), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1471), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_API_AVAILABLE] = ACTIONS(1471), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1471), + [anon_sym_API_DEPRECATED] = ACTIONS(1471), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1471), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1471), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1471), + [anon_sym___deprecated_msg] = ACTIONS(1471), + [anon_sym___deprecated_enum_msg] = ACTIONS(1471), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1471), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1471), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1471), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1471), + [anon_sym_ATimplementation] = ACTIONS(1469), + [anon_sym_NS_ENUM] = ACTIONS(1471), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1471), + [anon_sym_NS_OPTIONS] = ACTIONS(1471), + [anon_sym_typeof] = ACTIONS(1471), + [anon_sym___typeof] = ACTIONS(1471), + [anon_sym___typeof__] = ACTIONS(1471), + [sym_self] = ACTIONS(1471), + [sym_super] = ACTIONS(1471), + [sym_nil] = ACTIONS(1471), + [sym_id] = ACTIONS(1471), + [sym_instancetype] = ACTIONS(1471), + [sym_Class] = ACTIONS(1471), + [sym_SEL] = ACTIONS(1471), + [sym_IMP] = ACTIONS(1471), + [sym_BOOL] = ACTIONS(1471), + [sym_auto] = ACTIONS(1471), + [anon_sym_ATautoreleasepool] = ACTIONS(1469), + [anon_sym_ATsynchronized] = ACTIONS(1469), + [anon_sym_ATtry] = ACTIONS(1469), + [anon_sym_ATcatch] = ACTIONS(1469), + [anon_sym_ATfinally] = ACTIONS(1469), + [anon_sym_ATthrow] = ACTIONS(1469), + [anon_sym_ATselector] = ACTIONS(1469), + [anon_sym_ATencode] = ACTIONS(1469), + [anon_sym_AT] = ACTIONS(1471), + [sym_YES] = ACTIONS(1471), + [sym_NO] = ACTIONS(1471), + [anon_sym___builtin_available] = ACTIONS(1471), + [anon_sym_ATavailable] = ACTIONS(1469), + [anon_sym_va_arg] = ACTIONS(1471), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, [154] = { [ts_builtin_sym_end] = ACTIONS(1469), [sym_identifier] = ACTIONS(1471), @@ -52757,9 +52786,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1471), [sym_primitive_type] = ACTIONS(1471), [anon_sym_enum] = ACTIONS(1471), - [anon_sym_NS_ENUM] = ACTIONS(1471), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1471), - [anon_sym_NS_OPTIONS] = ACTIONS(1471), [anon_sym_struct] = ACTIONS(1471), [anon_sym_union] = ACTIONS(1471), [anon_sym_if] = ACTIONS(1471), @@ -52826,6 +52852,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1471), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1471), [anon_sym_ATimplementation] = ACTIONS(1469), + [anon_sym_NS_ENUM] = ACTIONS(1471), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1471), + [anon_sym_NS_OPTIONS] = ACTIONS(1471), [anon_sym_typeof] = ACTIONS(1471), [anon_sym___typeof] = ACTIONS(1471), [anon_sym___typeof__] = ACTIONS(1471), @@ -52934,9 +52963,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1475), [sym_primitive_type] = ACTIONS(1475), [anon_sym_enum] = ACTIONS(1475), - [anon_sym_NS_ENUM] = ACTIONS(1475), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1475), - [anon_sym_NS_OPTIONS] = ACTIONS(1475), [anon_sym_struct] = ACTIONS(1475), [anon_sym_union] = ACTIONS(1475), [anon_sym_if] = ACTIONS(1475), @@ -53003,6 +53029,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1475), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1475), [anon_sym_ATimplementation] = ACTIONS(1473), + [anon_sym_NS_ENUM] = ACTIONS(1475), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1475), + [anon_sym_NS_OPTIONS] = ACTIONS(1475), [anon_sym_typeof] = ACTIONS(1475), [anon_sym___typeof] = ACTIONS(1475), [anon_sym___typeof__] = ACTIONS(1475), @@ -53111,9 +53140,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1479), [sym_primitive_type] = ACTIONS(1479), [anon_sym_enum] = ACTIONS(1479), - [anon_sym_NS_ENUM] = ACTIONS(1479), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1479), - [anon_sym_NS_OPTIONS] = ACTIONS(1479), [anon_sym_struct] = ACTIONS(1479), [anon_sym_union] = ACTIONS(1479), [anon_sym_if] = ACTIONS(1479), @@ -53180,6 +53206,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1479), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1479), [anon_sym_ATimplementation] = ACTIONS(1477), + [anon_sym_NS_ENUM] = ACTIONS(1479), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1479), + [anon_sym_NS_OPTIONS] = ACTIONS(1479), [anon_sym_typeof] = ACTIONS(1479), [anon_sym___typeof] = ACTIONS(1479), [anon_sym___typeof__] = ACTIONS(1479), @@ -53288,9 +53317,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1483), [sym_primitive_type] = ACTIONS(1483), [anon_sym_enum] = ACTIONS(1483), - [anon_sym_NS_ENUM] = ACTIONS(1483), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1483), - [anon_sym_NS_OPTIONS] = ACTIONS(1483), [anon_sym_struct] = ACTIONS(1483), [anon_sym_union] = ACTIONS(1483), [anon_sym_if] = ACTIONS(1483), @@ -53357,6 +53383,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1483), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1483), [anon_sym_ATimplementation] = ACTIONS(1481), + [anon_sym_NS_ENUM] = ACTIONS(1483), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1483), + [anon_sym_NS_OPTIONS] = ACTIONS(1483), [anon_sym_typeof] = ACTIONS(1483), [anon_sym___typeof] = ACTIONS(1483), [anon_sym___typeof__] = ACTIONS(1483), @@ -53393,98 +53422,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [158] = { [ts_builtin_sym_end] = ACTIONS(1485), - [sym_identifier] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1488), [aux_sym_preproc_include_token1] = ACTIONS(1485), [aux_sym_preproc_def_token1] = ACTIONS(1485), [anon_sym_RPAREN] = ACTIONS(1485), - [aux_sym_preproc_if_token1] = ACTIONS(1487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1487), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), [anon_sym_LPAREN2] = ACTIONS(1485), [anon_sym_BANG] = ACTIONS(1485), [anon_sym_TILDE] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), [anon_sym_STAR] = ACTIONS(1485), [anon_sym_CARET] = ACTIONS(1485), [anon_sym_AMP] = ACTIONS(1485), [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_typedef] = ACTIONS(1487), - [anon_sym_extern] = ACTIONS(1487), - [anon_sym___attribute] = ACTIONS(1487), - [anon_sym___attribute__] = ACTIONS(1487), - [anon_sym___declspec] = ACTIONS(1487), - [anon_sym___cdecl] = ACTIONS(1487), - [anon_sym___clrcall] = ACTIONS(1487), - [anon_sym___stdcall] = ACTIONS(1487), - [anon_sym___fastcall] = ACTIONS(1487), - [anon_sym___thiscall] = ACTIONS(1487), - [anon_sym___vectorcall] = ACTIONS(1487), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), [anon_sym_LBRACE] = ACTIONS(1485), [anon_sym_RBRACE] = ACTIONS(1485), [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_auto] = ACTIONS(1487), - [anon_sym_register] = ACTIONS(1487), - [anon_sym_inline] = ACTIONS(1487), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_volatile] = ACTIONS(1487), - [anon_sym_restrict] = ACTIONS(1487), - [anon_sym__Atomic] = ACTIONS(1487), - [anon_sym_in] = ACTIONS(1487), - [anon_sym_out] = ACTIONS(1487), - [anon_sym_inout] = ACTIONS(1487), - [anon_sym_bycopy] = ACTIONS(1487), - [anon_sym_byref] = ACTIONS(1487), - [anon_sym_oneway] = ACTIONS(1487), - [anon_sym__Nullable] = ACTIONS(1487), - [anon_sym__Nonnull] = ACTIONS(1487), - [anon_sym__Nullable_result] = ACTIONS(1487), - [anon_sym__Null_unspecified] = ACTIONS(1487), - [anon_sym___autoreleasing] = ACTIONS(1487), - [anon_sym___nullable] = ACTIONS(1487), - [anon_sym___nonnull] = ACTIONS(1487), - [anon_sym___strong] = ACTIONS(1487), - [anon_sym___weak] = ACTIONS(1487), - [anon_sym___bridge] = ACTIONS(1487), - [anon_sym___bridge_transfer] = ACTIONS(1487), - [anon_sym___bridge_retained] = ACTIONS(1487), - [anon_sym___unsafe_unretained] = ACTIONS(1487), - [anon_sym___block] = ACTIONS(1487), - [anon_sym___kindof] = ACTIONS(1487), - [anon_sym___unused] = ACTIONS(1487), - [anon_sym__Complex] = ACTIONS(1487), - [anon_sym___complex] = ACTIONS(1487), - [anon_sym_IBOutlet] = ACTIONS(1487), - [anon_sym_IBInspectable] = ACTIONS(1487), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1487), - [anon_sym_signed] = ACTIONS(1487), - [anon_sym_unsigned] = ACTIONS(1487), - [anon_sym_long] = ACTIONS(1487), - [anon_sym_short] = ACTIONS(1487), - [sym_primitive_type] = ACTIONS(1487), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_NS_ENUM] = ACTIONS(1487), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1487), - [anon_sym_NS_OPTIONS] = ACTIONS(1487), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1487), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_else] = ACTIONS(1487), - [anon_sym_switch] = ACTIONS(1487), - [anon_sym_case] = ACTIONS(1487), - [anon_sym_default] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_do] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_goto] = ACTIONS(1487), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_out] = ACTIONS(1488), + [anon_sym_inout] = ACTIONS(1488), + [anon_sym_bycopy] = ACTIONS(1488), + [anon_sym_byref] = ACTIONS(1488), + [anon_sym_oneway] = ACTIONS(1488), + [anon_sym__Nullable] = ACTIONS(1488), + [anon_sym__Nonnull] = ACTIONS(1488), + [anon_sym__Nullable_result] = ACTIONS(1488), + [anon_sym__Null_unspecified] = ACTIONS(1488), + [anon_sym___autoreleasing] = ACTIONS(1488), + [anon_sym___nullable] = ACTIONS(1488), + [anon_sym___nonnull] = ACTIONS(1488), + [anon_sym___strong] = ACTIONS(1488), + [anon_sym___weak] = ACTIONS(1488), + [anon_sym___bridge] = ACTIONS(1488), + [anon_sym___bridge_transfer] = ACTIONS(1488), + [anon_sym___bridge_retained] = ACTIONS(1488), + [anon_sym___unsafe_unretained] = ACTIONS(1488), + [anon_sym___block] = ACTIONS(1488), + [anon_sym___kindof] = ACTIONS(1488), + [anon_sym___unused] = ACTIONS(1488), + [anon_sym__Complex] = ACTIONS(1488), + [anon_sym___complex] = ACTIONS(1488), + [anon_sym_IBOutlet] = ACTIONS(1488), + [anon_sym_IBInspectable] = ACTIONS(1488), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1488), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_else] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), [anon_sym_DASH_DASH] = ACTIONS(1485), [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_sizeof] = ACTIONS(1487), + [anon_sym_sizeof] = ACTIONS(1488), [sym_number_literal] = ACTIONS(1485), [anon_sym_L_SQUOTE] = ACTIONS(1485), [anon_sym_u_SQUOTE] = ACTIONS(1485), @@ -53496,57 +53522,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(1485), [anon_sym_u8_DQUOTE] = ACTIONS(1485), [anon_sym_DQUOTE] = ACTIONS(1485), - [sym_true] = ACTIONS(1487), - [sym_false] = ACTIONS(1487), - [sym_null] = ACTIONS(1487), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [sym_null] = ACTIONS(1488), [sym_comment] = ACTIONS(3), [anon_sym_POUNDimport] = ACTIONS(1485), [anon_sym_ATimport] = ACTIONS(1485), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1487), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1488), [anon_sym_ATcompatibility_alias] = ACTIONS(1485), [anon_sym_ATprotocol] = ACTIONS(1485), [anon_sym_ATclass] = ACTIONS(1485), [anon_sym_ATinterface] = ACTIONS(1485), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1487), - [sym_method_attribute_specifier] = ACTIONS(1487), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1487), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1487), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1487), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1487), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1487), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1487), - [anon_sym_NS_AVAILABLE] = ACTIONS(1487), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1487), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1487), - [anon_sym_API_AVAILABLE] = ACTIONS(1487), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1487), - [anon_sym_API_DEPRECATED] = ACTIONS(1487), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1487), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1487), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1487), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1487), - [anon_sym___deprecated_msg] = ACTIONS(1487), - [anon_sym___deprecated_enum_msg] = ACTIONS(1487), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1487), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1487), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1487), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1487), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1487), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1487), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1488), + [sym_method_attribute_specifier] = ACTIONS(1488), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1488), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1488), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1488), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1488), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1488), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1488), + [anon_sym_NS_AVAILABLE] = ACTIONS(1488), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1488), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1488), + [anon_sym_API_AVAILABLE] = ACTIONS(1488), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1488), + [anon_sym_API_DEPRECATED] = ACTIONS(1488), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1488), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1488), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1488), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1488), + [anon_sym___deprecated_msg] = ACTIONS(1488), + [anon_sym___deprecated_enum_msg] = ACTIONS(1488), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1488), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1488), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1488), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1488), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1488), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1488), [anon_sym_ATimplementation] = ACTIONS(1485), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym___typeof] = ACTIONS(1487), - [anon_sym___typeof__] = ACTIONS(1487), - [sym_self] = ACTIONS(1487), - [sym_super] = ACTIONS(1487), - [sym_nil] = ACTIONS(1487), - [sym_id] = ACTIONS(1487), - [sym_instancetype] = ACTIONS(1487), - [sym_Class] = ACTIONS(1487), - [sym_SEL] = ACTIONS(1487), - [sym_IMP] = ACTIONS(1487), - [sym_BOOL] = ACTIONS(1487), - [sym_auto] = ACTIONS(1487), + [anon_sym_NS_ENUM] = ACTIONS(1488), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1488), + [anon_sym_NS_OPTIONS] = ACTIONS(1488), + [anon_sym_typeof] = ACTIONS(1488), + [anon_sym___typeof] = ACTIONS(1488), + [anon_sym___typeof__] = ACTIONS(1488), + [sym_self] = ACTIONS(1488), + [sym_super] = ACTIONS(1488), + [sym_nil] = ACTIONS(1488), + [sym_id] = ACTIONS(1488), + [sym_instancetype] = ACTIONS(1488), + [sym_Class] = ACTIONS(1488), + [sym_SEL] = ACTIONS(1488), + [sym_IMP] = ACTIONS(1488), + [sym_BOOL] = ACTIONS(1488), + [sym_auto] = ACTIONS(1488), [anon_sym_ATautoreleasepool] = ACTIONS(1485), [anon_sym_ATsynchronized] = ACTIONS(1485), [anon_sym_ATtry] = ACTIONS(1485), @@ -53555,12 +53584,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATthrow] = ACTIONS(1485), [anon_sym_ATselector] = ACTIONS(1485), [anon_sym_ATencode] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [sym_YES] = ACTIONS(1487), - [sym_NO] = ACTIONS(1487), - [anon_sym___builtin_available] = ACTIONS(1487), + [anon_sym_AT] = ACTIONS(1488), + [sym_YES] = ACTIONS(1488), + [sym_NO] = ACTIONS(1488), + [anon_sym___builtin_available] = ACTIONS(1488), [anon_sym_ATavailable] = ACTIONS(1485), - [anon_sym_va_arg] = ACTIONS(1487), + [anon_sym_va_arg] = ACTIONS(1488), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -53569,175 +53598,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [159] = { - [ts_builtin_sym_end] = ACTIONS(1489), - [sym_identifier] = ACTIONS(1491), - [aux_sym_preproc_include_token1] = ACTIONS(1489), - [aux_sym_preproc_def_token1] = ACTIONS(1489), - [anon_sym_RPAREN] = ACTIONS(1489), - [aux_sym_preproc_if_token1] = ACTIONS(1491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1491), - [anon_sym_LPAREN2] = ACTIONS(1489), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_CARET] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1489), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_typedef] = ACTIONS(1491), - [anon_sym_extern] = ACTIONS(1491), - [anon_sym___attribute] = ACTIONS(1491), - [anon_sym___attribute__] = ACTIONS(1491), - [anon_sym___declspec] = ACTIONS(1491), - [anon_sym___cdecl] = ACTIONS(1491), - [anon_sym___clrcall] = ACTIONS(1491), - [anon_sym___stdcall] = ACTIONS(1491), - [anon_sym___fastcall] = ACTIONS(1491), - [anon_sym___thiscall] = ACTIONS(1491), - [anon_sym___vectorcall] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_auto] = ACTIONS(1491), - [anon_sym_register] = ACTIONS(1491), - [anon_sym_inline] = ACTIONS(1491), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_volatile] = ACTIONS(1491), - [anon_sym_restrict] = ACTIONS(1491), - [anon_sym__Atomic] = ACTIONS(1491), - [anon_sym_in] = ACTIONS(1491), - [anon_sym_out] = ACTIONS(1491), - [anon_sym_inout] = ACTIONS(1491), - [anon_sym_bycopy] = ACTIONS(1491), - [anon_sym_byref] = ACTIONS(1491), - [anon_sym_oneway] = ACTIONS(1491), - [anon_sym__Nullable] = ACTIONS(1491), - [anon_sym__Nonnull] = ACTIONS(1491), - [anon_sym__Nullable_result] = ACTIONS(1491), - [anon_sym__Null_unspecified] = ACTIONS(1491), - [anon_sym___autoreleasing] = ACTIONS(1491), - [anon_sym___nullable] = ACTIONS(1491), - [anon_sym___nonnull] = ACTIONS(1491), - [anon_sym___strong] = ACTIONS(1491), - [anon_sym___weak] = ACTIONS(1491), - [anon_sym___bridge] = ACTIONS(1491), - [anon_sym___bridge_transfer] = ACTIONS(1491), - [anon_sym___bridge_retained] = ACTIONS(1491), - [anon_sym___unsafe_unretained] = ACTIONS(1491), - [anon_sym___block] = ACTIONS(1491), - [anon_sym___kindof] = ACTIONS(1491), - [anon_sym___unused] = ACTIONS(1491), - [anon_sym__Complex] = ACTIONS(1491), - [anon_sym___complex] = ACTIONS(1491), - [anon_sym_IBOutlet] = ACTIONS(1491), - [anon_sym_IBInspectable] = ACTIONS(1491), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1491), - [anon_sym_signed] = ACTIONS(1491), - [anon_sym_unsigned] = ACTIONS(1491), - [anon_sym_long] = ACTIONS(1491), - [anon_sym_short] = ACTIONS(1491), - [sym_primitive_type] = ACTIONS(1491), - [anon_sym_enum] = ACTIONS(1491), - [anon_sym_NS_ENUM] = ACTIONS(1491), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1491), - [anon_sym_NS_OPTIONS] = ACTIONS(1491), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_else] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_case] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_goto] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_sizeof] = ACTIONS(1491), - [sym_number_literal] = ACTIONS(1489), - [anon_sym_L_SQUOTE] = ACTIONS(1489), - [anon_sym_u_SQUOTE] = ACTIONS(1489), - [anon_sym_U_SQUOTE] = ACTIONS(1489), - [anon_sym_u8_SQUOTE] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_L_DQUOTE] = ACTIONS(1489), - [anon_sym_u_DQUOTE] = ACTIONS(1489), - [anon_sym_U_DQUOTE] = ACTIONS(1489), - [anon_sym_u8_DQUOTE] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(1489), - [sym_true] = ACTIONS(1491), - [sym_false] = ACTIONS(1491), - [sym_null] = ACTIONS(1491), + [ts_builtin_sym_end] = ACTIONS(1491), + [sym_identifier] = ACTIONS(1493), + [aux_sym_preproc_include_token1] = ACTIONS(1491), + [aux_sym_preproc_def_token1] = ACTIONS(1491), + [anon_sym_RPAREN] = ACTIONS(1491), + [aux_sym_preproc_if_token1] = ACTIONS(1493), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1493), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(1491), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_typedef] = ACTIONS(1493), + [anon_sym_extern] = ACTIONS(1493), + [anon_sym___attribute] = ACTIONS(1493), + [anon_sym___attribute__] = ACTIONS(1493), + [anon_sym___declspec] = ACTIONS(1493), + [anon_sym___cdecl] = ACTIONS(1493), + [anon_sym___clrcall] = ACTIONS(1493), + [anon_sym___stdcall] = ACTIONS(1493), + [anon_sym___fastcall] = ACTIONS(1493), + [anon_sym___thiscall] = ACTIONS(1493), + [anon_sym___vectorcall] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_auto] = ACTIONS(1493), + [anon_sym_register] = ACTIONS(1493), + [anon_sym_inline] = ACTIONS(1493), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_volatile] = ACTIONS(1493), + [anon_sym_restrict] = ACTIONS(1493), + [anon_sym__Atomic] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_out] = ACTIONS(1493), + [anon_sym_inout] = ACTIONS(1493), + [anon_sym_bycopy] = ACTIONS(1493), + [anon_sym_byref] = ACTIONS(1493), + [anon_sym_oneway] = ACTIONS(1493), + [anon_sym__Nullable] = ACTIONS(1493), + [anon_sym__Nonnull] = ACTIONS(1493), + [anon_sym__Nullable_result] = ACTIONS(1493), + [anon_sym__Null_unspecified] = ACTIONS(1493), + [anon_sym___autoreleasing] = ACTIONS(1493), + [anon_sym___nullable] = ACTIONS(1493), + [anon_sym___nonnull] = ACTIONS(1493), + [anon_sym___strong] = ACTIONS(1493), + [anon_sym___weak] = ACTIONS(1493), + [anon_sym___bridge] = ACTIONS(1493), + [anon_sym___bridge_transfer] = ACTIONS(1493), + [anon_sym___bridge_retained] = ACTIONS(1493), + [anon_sym___unsafe_unretained] = ACTIONS(1493), + [anon_sym___block] = ACTIONS(1493), + [anon_sym___kindof] = ACTIONS(1493), + [anon_sym___unused] = ACTIONS(1493), + [anon_sym__Complex] = ACTIONS(1493), + [anon_sym___complex] = ACTIONS(1493), + [anon_sym_IBOutlet] = ACTIONS(1493), + [anon_sym_IBInspectable] = ACTIONS(1493), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1493), + [anon_sym_signed] = ACTIONS(1493), + [anon_sym_unsigned] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [sym_primitive_type] = ACTIONS(1493), + [anon_sym_enum] = ACTIONS(1493), + [anon_sym_struct] = ACTIONS(1493), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_else] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_case] = ACTIONS(1493), + [anon_sym_default] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_goto] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [sym_number_literal] = ACTIONS(1491), + [anon_sym_L_SQUOTE] = ACTIONS(1491), + [anon_sym_u_SQUOTE] = ACTIONS(1491), + [anon_sym_U_SQUOTE] = ACTIONS(1491), + [anon_sym_u8_SQUOTE] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_L_DQUOTE] = ACTIONS(1491), + [anon_sym_u_DQUOTE] = ACTIONS(1491), + [anon_sym_U_DQUOTE] = ACTIONS(1491), + [anon_sym_u8_DQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [sym_true] = ACTIONS(1493), + [sym_false] = ACTIONS(1493), + [sym_null] = ACTIONS(1493), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1489), - [anon_sym_ATimport] = ACTIONS(1489), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1491), - [anon_sym_ATcompatibility_alias] = ACTIONS(1489), - [anon_sym_ATprotocol] = ACTIONS(1489), - [anon_sym_ATclass] = ACTIONS(1489), - [anon_sym_ATinterface] = ACTIONS(1489), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1491), - [sym_method_attribute_specifier] = ACTIONS(1491), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1491), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1491), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1491), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1491), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1491), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1491), - [anon_sym_NS_AVAILABLE] = ACTIONS(1491), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1491), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1491), - [anon_sym_API_AVAILABLE] = ACTIONS(1491), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1491), - [anon_sym_API_DEPRECATED] = ACTIONS(1491), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1491), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1491), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1491), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1491), - [anon_sym___deprecated_msg] = ACTIONS(1491), - [anon_sym___deprecated_enum_msg] = ACTIONS(1491), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1491), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1491), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1491), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1491), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1491), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1491), - [anon_sym_ATimplementation] = ACTIONS(1489), - [anon_sym_typeof] = ACTIONS(1491), - [anon_sym___typeof] = ACTIONS(1491), - [anon_sym___typeof__] = ACTIONS(1491), - [sym_self] = ACTIONS(1491), - [sym_super] = ACTIONS(1491), - [sym_nil] = ACTIONS(1491), - [sym_id] = ACTIONS(1491), - [sym_instancetype] = ACTIONS(1491), - [sym_Class] = ACTIONS(1491), - [sym_SEL] = ACTIONS(1491), - [sym_IMP] = ACTIONS(1491), - [sym_BOOL] = ACTIONS(1491), - [sym_auto] = ACTIONS(1491), - [anon_sym_ATautoreleasepool] = ACTIONS(1489), - [anon_sym_ATsynchronized] = ACTIONS(1489), - [anon_sym_ATtry] = ACTIONS(1489), - [anon_sym_ATcatch] = ACTIONS(1489), - [anon_sym_ATfinally] = ACTIONS(1489), - [anon_sym_ATthrow] = ACTIONS(1489), - [anon_sym_ATselector] = ACTIONS(1489), - [anon_sym_ATencode] = ACTIONS(1489), - [anon_sym_AT] = ACTIONS(1491), - [sym_YES] = ACTIONS(1491), - [sym_NO] = ACTIONS(1491), - [anon_sym___builtin_available] = ACTIONS(1491), - [anon_sym_ATavailable] = ACTIONS(1489), - [anon_sym_va_arg] = ACTIONS(1491), + [anon_sym_POUNDimport] = ACTIONS(1491), + [anon_sym_ATimport] = ACTIONS(1491), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1493), + [anon_sym_ATcompatibility_alias] = ACTIONS(1491), + [anon_sym_ATprotocol] = ACTIONS(1491), + [anon_sym_ATclass] = ACTIONS(1491), + [anon_sym_ATinterface] = ACTIONS(1491), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1493), + [sym_method_attribute_specifier] = ACTIONS(1493), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1493), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1493), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1493), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1493), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1493), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1493), + [anon_sym_NS_AVAILABLE] = ACTIONS(1493), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1493), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1493), + [anon_sym_API_AVAILABLE] = ACTIONS(1493), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1493), + [anon_sym_API_DEPRECATED] = ACTIONS(1493), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1493), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1493), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1493), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1493), + [anon_sym___deprecated_msg] = ACTIONS(1493), + [anon_sym___deprecated_enum_msg] = ACTIONS(1493), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1493), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1493), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1493), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1493), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1493), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1493), + [anon_sym_ATimplementation] = ACTIONS(1491), + [anon_sym_NS_ENUM] = ACTIONS(1493), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1493), + [anon_sym_NS_OPTIONS] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1493), + [anon_sym___typeof] = ACTIONS(1493), + [anon_sym___typeof__] = ACTIONS(1493), + [sym_self] = ACTIONS(1493), + [sym_super] = ACTIONS(1493), + [sym_nil] = ACTIONS(1493), + [sym_id] = ACTIONS(1493), + [sym_instancetype] = ACTIONS(1493), + [sym_Class] = ACTIONS(1493), + [sym_SEL] = ACTIONS(1493), + [sym_IMP] = ACTIONS(1493), + [sym_BOOL] = ACTIONS(1493), + [sym_auto] = ACTIONS(1493), + [anon_sym_ATautoreleasepool] = ACTIONS(1491), + [anon_sym_ATsynchronized] = ACTIONS(1491), + [anon_sym_ATtry] = ACTIONS(1491), + [anon_sym_ATcatch] = ACTIONS(1491), + [anon_sym_ATfinally] = ACTIONS(1491), + [anon_sym_ATthrow] = ACTIONS(1491), + [anon_sym_ATselector] = ACTIONS(1491), + [anon_sym_ATencode] = ACTIONS(1491), + [anon_sym_AT] = ACTIONS(1493), + [sym_YES] = ACTIONS(1493), + [sym_NO] = ACTIONS(1493), + [anon_sym___builtin_available] = ACTIONS(1493), + [anon_sym_ATavailable] = ACTIONS(1491), + [anon_sym_va_arg] = ACTIONS(1493), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -53746,175 +53775,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [160] = { - [ts_builtin_sym_end] = ACTIONS(1493), - [sym_identifier] = ACTIONS(1495), - [aux_sym_preproc_include_token1] = ACTIONS(1493), - [aux_sym_preproc_def_token1] = ACTIONS(1493), - [anon_sym_RPAREN] = ACTIONS(1493), - [aux_sym_preproc_if_token1] = ACTIONS(1495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1495), - [anon_sym_LPAREN2] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_typedef] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym___attribute] = ACTIONS(1495), - [anon_sym___attribute__] = ACTIONS(1495), - [anon_sym___declspec] = ACTIONS(1495), - [anon_sym___cdecl] = ACTIONS(1495), - [anon_sym___clrcall] = ACTIONS(1495), - [anon_sym___stdcall] = ACTIONS(1495), - [anon_sym___fastcall] = ACTIONS(1495), - [anon_sym___thiscall] = ACTIONS(1495), - [anon_sym___vectorcall] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_auto] = ACTIONS(1495), - [anon_sym_register] = ACTIONS(1495), - [anon_sym_inline] = ACTIONS(1495), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_volatile] = ACTIONS(1495), - [anon_sym_restrict] = ACTIONS(1495), - [anon_sym__Atomic] = ACTIONS(1495), - [anon_sym_in] = ACTIONS(1495), - [anon_sym_out] = ACTIONS(1495), - [anon_sym_inout] = ACTIONS(1495), - [anon_sym_bycopy] = ACTIONS(1495), - [anon_sym_byref] = ACTIONS(1495), - [anon_sym_oneway] = ACTIONS(1495), - [anon_sym__Nullable] = ACTIONS(1495), - [anon_sym__Nonnull] = ACTIONS(1495), - [anon_sym__Nullable_result] = ACTIONS(1495), - [anon_sym__Null_unspecified] = ACTIONS(1495), - [anon_sym___autoreleasing] = ACTIONS(1495), - [anon_sym___nullable] = ACTIONS(1495), - [anon_sym___nonnull] = ACTIONS(1495), - [anon_sym___strong] = ACTIONS(1495), - [anon_sym___weak] = ACTIONS(1495), - [anon_sym___bridge] = ACTIONS(1495), - [anon_sym___bridge_transfer] = ACTIONS(1495), - [anon_sym___bridge_retained] = ACTIONS(1495), - [anon_sym___unsafe_unretained] = ACTIONS(1495), - [anon_sym___block] = ACTIONS(1495), - [anon_sym___kindof] = ACTIONS(1495), - [anon_sym___unused] = ACTIONS(1495), - [anon_sym__Complex] = ACTIONS(1495), - [anon_sym___complex] = ACTIONS(1495), - [anon_sym_IBOutlet] = ACTIONS(1495), - [anon_sym_IBInspectable] = ACTIONS(1495), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1495), - [anon_sym_signed] = ACTIONS(1495), - [anon_sym_unsigned] = ACTIONS(1495), - [anon_sym_long] = ACTIONS(1495), - [anon_sym_short] = ACTIONS(1495), - [sym_primitive_type] = ACTIONS(1495), - [anon_sym_enum] = ACTIONS(1495), - [anon_sym_NS_ENUM] = ACTIONS(1495), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1495), - [anon_sym_NS_OPTIONS] = ACTIONS(1495), - [anon_sym_struct] = ACTIONS(1495), - [anon_sym_union] = ACTIONS(1495), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_else] = ACTIONS(1495), - [anon_sym_switch] = ACTIONS(1495), - [anon_sym_case] = ACTIONS(1495), - [anon_sym_default] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_goto] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_sizeof] = ACTIONS(1495), - [sym_number_literal] = ACTIONS(1493), - [anon_sym_L_SQUOTE] = ACTIONS(1493), - [anon_sym_u_SQUOTE] = ACTIONS(1493), - [anon_sym_U_SQUOTE] = ACTIONS(1493), - [anon_sym_u8_SQUOTE] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_L_DQUOTE] = ACTIONS(1493), - [anon_sym_u_DQUOTE] = ACTIONS(1493), - [anon_sym_U_DQUOTE] = ACTIONS(1493), - [anon_sym_u8_DQUOTE] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [sym_true] = ACTIONS(1495), - [sym_false] = ACTIONS(1495), - [sym_null] = ACTIONS(1495), + [ts_builtin_sym_end] = ACTIONS(1495), + [sym_identifier] = ACTIONS(1497), + [aux_sym_preproc_include_token1] = ACTIONS(1495), + [aux_sym_preproc_def_token1] = ACTIONS(1495), + [anon_sym_RPAREN] = ACTIONS(1495), + [aux_sym_preproc_if_token1] = ACTIONS(1497), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1497), + [anon_sym_LPAREN2] = ACTIONS(1495), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_typedef] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(1497), + [anon_sym___attribute] = ACTIONS(1497), + [anon_sym___attribute__] = ACTIONS(1497), + [anon_sym___declspec] = ACTIONS(1497), + [anon_sym___cdecl] = ACTIONS(1497), + [anon_sym___clrcall] = ACTIONS(1497), + [anon_sym___stdcall] = ACTIONS(1497), + [anon_sym___fastcall] = ACTIONS(1497), + [anon_sym___thiscall] = ACTIONS(1497), + [anon_sym___vectorcall] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1495), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_auto] = ACTIONS(1497), + [anon_sym_register] = ACTIONS(1497), + [anon_sym_inline] = ACTIONS(1497), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_volatile] = ACTIONS(1497), + [anon_sym_restrict] = ACTIONS(1497), + [anon_sym__Atomic] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_out] = ACTIONS(1497), + [anon_sym_inout] = ACTIONS(1497), + [anon_sym_bycopy] = ACTIONS(1497), + [anon_sym_byref] = ACTIONS(1497), + [anon_sym_oneway] = ACTIONS(1497), + [anon_sym__Nullable] = ACTIONS(1497), + [anon_sym__Nonnull] = ACTIONS(1497), + [anon_sym__Nullable_result] = ACTIONS(1497), + [anon_sym__Null_unspecified] = ACTIONS(1497), + [anon_sym___autoreleasing] = ACTIONS(1497), + [anon_sym___nullable] = ACTIONS(1497), + [anon_sym___nonnull] = ACTIONS(1497), + [anon_sym___strong] = ACTIONS(1497), + [anon_sym___weak] = ACTIONS(1497), + [anon_sym___bridge] = ACTIONS(1497), + [anon_sym___bridge_transfer] = ACTIONS(1497), + [anon_sym___bridge_retained] = ACTIONS(1497), + [anon_sym___unsafe_unretained] = ACTIONS(1497), + [anon_sym___block] = ACTIONS(1497), + [anon_sym___kindof] = ACTIONS(1497), + [anon_sym___unused] = ACTIONS(1497), + [anon_sym__Complex] = ACTIONS(1497), + [anon_sym___complex] = ACTIONS(1497), + [anon_sym_IBOutlet] = ACTIONS(1497), + [anon_sym_IBInspectable] = ACTIONS(1497), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1497), + [anon_sym_signed] = ACTIONS(1497), + [anon_sym_unsigned] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [sym_primitive_type] = ACTIONS(1497), + [anon_sym_enum] = ACTIONS(1497), + [anon_sym_struct] = ACTIONS(1497), + [anon_sym_union] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_else] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_case] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_goto] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(1497), + [sym_number_literal] = ACTIONS(1495), + [anon_sym_L_SQUOTE] = ACTIONS(1495), + [anon_sym_u_SQUOTE] = ACTIONS(1495), + [anon_sym_U_SQUOTE] = ACTIONS(1495), + [anon_sym_u8_SQUOTE] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_L_DQUOTE] = ACTIONS(1495), + [anon_sym_u_DQUOTE] = ACTIONS(1495), + [anon_sym_U_DQUOTE] = ACTIONS(1495), + [anon_sym_u8_DQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [sym_true] = ACTIONS(1497), + [sym_false] = ACTIONS(1497), + [sym_null] = ACTIONS(1497), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1493), - [anon_sym_ATimport] = ACTIONS(1493), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1495), - [anon_sym_ATcompatibility_alias] = ACTIONS(1493), - [anon_sym_ATprotocol] = ACTIONS(1493), - [anon_sym_ATclass] = ACTIONS(1493), - [anon_sym_ATinterface] = ACTIONS(1493), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1495), - [sym_method_attribute_specifier] = ACTIONS(1495), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1495), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1495), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1495), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1495), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1495), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1495), - [anon_sym_NS_AVAILABLE] = ACTIONS(1495), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1495), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1495), - [anon_sym_API_AVAILABLE] = ACTIONS(1495), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1495), - [anon_sym_API_DEPRECATED] = ACTIONS(1495), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1495), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1495), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1495), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1495), - [anon_sym___deprecated_msg] = ACTIONS(1495), - [anon_sym___deprecated_enum_msg] = ACTIONS(1495), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1495), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1495), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1495), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1495), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1495), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1495), - [anon_sym_ATimplementation] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___typeof] = ACTIONS(1495), - [anon_sym___typeof__] = ACTIONS(1495), - [sym_self] = ACTIONS(1495), - [sym_super] = ACTIONS(1495), - [sym_nil] = ACTIONS(1495), - [sym_id] = ACTIONS(1495), - [sym_instancetype] = ACTIONS(1495), - [sym_Class] = ACTIONS(1495), - [sym_SEL] = ACTIONS(1495), - [sym_IMP] = ACTIONS(1495), - [sym_BOOL] = ACTIONS(1495), - [sym_auto] = ACTIONS(1495), - [anon_sym_ATautoreleasepool] = ACTIONS(1493), - [anon_sym_ATsynchronized] = ACTIONS(1493), - [anon_sym_ATtry] = ACTIONS(1493), - [anon_sym_ATcatch] = ACTIONS(1493), - [anon_sym_ATfinally] = ACTIONS(1493), - [anon_sym_ATthrow] = ACTIONS(1493), - [anon_sym_ATselector] = ACTIONS(1493), - [anon_sym_ATencode] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [sym_YES] = ACTIONS(1495), - [sym_NO] = ACTIONS(1495), - [anon_sym___builtin_available] = ACTIONS(1495), - [anon_sym_ATavailable] = ACTIONS(1493), - [anon_sym_va_arg] = ACTIONS(1495), + [anon_sym_POUNDimport] = ACTIONS(1495), + [anon_sym_ATimport] = ACTIONS(1495), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1497), + [anon_sym_ATcompatibility_alias] = ACTIONS(1495), + [anon_sym_ATprotocol] = ACTIONS(1495), + [anon_sym_ATclass] = ACTIONS(1495), + [anon_sym_ATinterface] = ACTIONS(1495), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1497), + [sym_method_attribute_specifier] = ACTIONS(1497), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1497), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1497), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1497), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1497), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1497), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1497), + [anon_sym_NS_AVAILABLE] = ACTIONS(1497), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1497), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1497), + [anon_sym_API_AVAILABLE] = ACTIONS(1497), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1497), + [anon_sym_API_DEPRECATED] = ACTIONS(1497), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1497), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1497), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1497), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1497), + [anon_sym___deprecated_msg] = ACTIONS(1497), + [anon_sym___deprecated_enum_msg] = ACTIONS(1497), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1497), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1497), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1497), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1497), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1497), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1497), + [anon_sym_ATimplementation] = ACTIONS(1495), + [anon_sym_NS_ENUM] = ACTIONS(1497), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1497), + [anon_sym_NS_OPTIONS] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym___typeof] = ACTIONS(1497), + [anon_sym___typeof__] = ACTIONS(1497), + [sym_self] = ACTIONS(1497), + [sym_super] = ACTIONS(1497), + [sym_nil] = ACTIONS(1497), + [sym_id] = ACTIONS(1497), + [sym_instancetype] = ACTIONS(1497), + [sym_Class] = ACTIONS(1497), + [sym_SEL] = ACTIONS(1497), + [sym_IMP] = ACTIONS(1497), + [sym_BOOL] = ACTIONS(1497), + [sym_auto] = ACTIONS(1497), + [anon_sym_ATautoreleasepool] = ACTIONS(1495), + [anon_sym_ATsynchronized] = ACTIONS(1495), + [anon_sym_ATtry] = ACTIONS(1495), + [anon_sym_ATcatch] = ACTIONS(1495), + [anon_sym_ATfinally] = ACTIONS(1495), + [anon_sym_ATthrow] = ACTIONS(1495), + [anon_sym_ATselector] = ACTIONS(1495), + [anon_sym_ATencode] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1497), + [sym_YES] = ACTIONS(1497), + [sym_NO] = ACTIONS(1497), + [anon_sym___builtin_available] = ACTIONS(1497), + [anon_sym_ATavailable] = ACTIONS(1495), + [anon_sym_va_arg] = ACTIONS(1497), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -53923,175 +53952,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [161] = { - [ts_builtin_sym_end] = ACTIONS(1497), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_include_token1] = ACTIONS(1497), - [aux_sym_preproc_def_token1] = ACTIONS(1497), - [anon_sym_RPAREN] = ACTIONS(1497), - [aux_sym_preproc_if_token1] = ACTIONS(1499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1499), - [anon_sym_LPAREN2] = ACTIONS(1497), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_CARET] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_typedef] = ACTIONS(1499), - [anon_sym_extern] = ACTIONS(1499), - [anon_sym___attribute] = ACTIONS(1499), - [anon_sym___attribute__] = ACTIONS(1499), - [anon_sym___declspec] = ACTIONS(1499), - [anon_sym___cdecl] = ACTIONS(1499), - [anon_sym___clrcall] = ACTIONS(1499), - [anon_sym___stdcall] = ACTIONS(1499), - [anon_sym___fastcall] = ACTIONS(1499), - [anon_sym___thiscall] = ACTIONS(1499), - [anon_sym___vectorcall] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1497), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1497), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_auto] = ACTIONS(1499), - [anon_sym_register] = ACTIONS(1499), - [anon_sym_inline] = ACTIONS(1499), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_volatile] = ACTIONS(1499), - [anon_sym_restrict] = ACTIONS(1499), - [anon_sym__Atomic] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_out] = ACTIONS(1499), - [anon_sym_inout] = ACTIONS(1499), - [anon_sym_bycopy] = ACTIONS(1499), - [anon_sym_byref] = ACTIONS(1499), - [anon_sym_oneway] = ACTIONS(1499), - [anon_sym__Nullable] = ACTIONS(1499), - [anon_sym__Nonnull] = ACTIONS(1499), - [anon_sym__Nullable_result] = ACTIONS(1499), - [anon_sym__Null_unspecified] = ACTIONS(1499), - [anon_sym___autoreleasing] = ACTIONS(1499), - [anon_sym___nullable] = ACTIONS(1499), - [anon_sym___nonnull] = ACTIONS(1499), - [anon_sym___strong] = ACTIONS(1499), - [anon_sym___weak] = ACTIONS(1499), - [anon_sym___bridge] = ACTIONS(1499), - [anon_sym___bridge_transfer] = ACTIONS(1499), - [anon_sym___bridge_retained] = ACTIONS(1499), - [anon_sym___unsafe_unretained] = ACTIONS(1499), - [anon_sym___block] = ACTIONS(1499), - [anon_sym___kindof] = ACTIONS(1499), - [anon_sym___unused] = ACTIONS(1499), - [anon_sym__Complex] = ACTIONS(1499), - [anon_sym___complex] = ACTIONS(1499), - [anon_sym_IBOutlet] = ACTIONS(1499), - [anon_sym_IBInspectable] = ACTIONS(1499), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1499), - [anon_sym_signed] = ACTIONS(1499), - [anon_sym_unsigned] = ACTIONS(1499), - [anon_sym_long] = ACTIONS(1499), - [anon_sym_short] = ACTIONS(1499), - [sym_primitive_type] = ACTIONS(1499), - [anon_sym_enum] = ACTIONS(1499), - [anon_sym_NS_ENUM] = ACTIONS(1499), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1499), - [anon_sym_NS_OPTIONS] = ACTIONS(1499), - [anon_sym_struct] = ACTIONS(1499), - [anon_sym_union] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_else] = ACTIONS(1499), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1499), - [anon_sym_default] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_do] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_goto] = ACTIONS(1499), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_sizeof] = ACTIONS(1499), - [sym_number_literal] = ACTIONS(1497), - [anon_sym_L_SQUOTE] = ACTIONS(1497), - [anon_sym_u_SQUOTE] = ACTIONS(1497), - [anon_sym_U_SQUOTE] = ACTIONS(1497), - [anon_sym_u8_SQUOTE] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_L_DQUOTE] = ACTIONS(1497), - [anon_sym_u_DQUOTE] = ACTIONS(1497), - [anon_sym_U_DQUOTE] = ACTIONS(1497), - [anon_sym_u8_DQUOTE] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [sym_true] = ACTIONS(1499), - [sym_false] = ACTIONS(1499), - [sym_null] = ACTIONS(1499), + [ts_builtin_sym_end] = ACTIONS(1385), + [sym_identifier] = ACTIONS(1383), + [aux_sym_preproc_include_token1] = ACTIONS(1385), + [aux_sym_preproc_def_token1] = ACTIONS(1385), + [anon_sym_RPAREN] = ACTIONS(1385), + [aux_sym_preproc_if_token1] = ACTIONS(1383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1383), + [anon_sym_LPAREN2] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_TILDE] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_CARET] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_typedef] = ACTIONS(1383), + [anon_sym_extern] = ACTIONS(1383), + [anon_sym___attribute] = ACTIONS(1383), + [anon_sym___attribute__] = ACTIONS(1383), + [anon_sym___declspec] = ACTIONS(1383), + [anon_sym___cdecl] = ACTIONS(1383), + [anon_sym___clrcall] = ACTIONS(1383), + [anon_sym___stdcall] = ACTIONS(1383), + [anon_sym___fastcall] = ACTIONS(1383), + [anon_sym___thiscall] = ACTIONS(1383), + [anon_sym___vectorcall] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1383), + [anon_sym_auto] = ACTIONS(1383), + [anon_sym_register] = ACTIONS(1383), + [anon_sym_inline] = ACTIONS(1383), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1383), + [anon_sym_const] = ACTIONS(1383), + [anon_sym_volatile] = ACTIONS(1383), + [anon_sym_restrict] = ACTIONS(1383), + [anon_sym__Atomic] = ACTIONS(1383), + [anon_sym_in] = ACTIONS(1383), + [anon_sym_out] = ACTIONS(1383), + [anon_sym_inout] = ACTIONS(1383), + [anon_sym_bycopy] = ACTIONS(1383), + [anon_sym_byref] = ACTIONS(1383), + [anon_sym_oneway] = ACTIONS(1383), + [anon_sym__Nullable] = ACTIONS(1383), + [anon_sym__Nonnull] = ACTIONS(1383), + [anon_sym__Nullable_result] = ACTIONS(1383), + [anon_sym__Null_unspecified] = ACTIONS(1383), + [anon_sym___autoreleasing] = ACTIONS(1383), + [anon_sym___nullable] = ACTIONS(1383), + [anon_sym___nonnull] = ACTIONS(1383), + [anon_sym___strong] = ACTIONS(1383), + [anon_sym___weak] = ACTIONS(1383), + [anon_sym___bridge] = ACTIONS(1383), + [anon_sym___bridge_transfer] = ACTIONS(1383), + [anon_sym___bridge_retained] = ACTIONS(1383), + [anon_sym___unsafe_unretained] = ACTIONS(1383), + [anon_sym___block] = ACTIONS(1383), + [anon_sym___kindof] = ACTIONS(1383), + [anon_sym___unused] = ACTIONS(1383), + [anon_sym__Complex] = ACTIONS(1383), + [anon_sym___complex] = ACTIONS(1383), + [anon_sym_IBOutlet] = ACTIONS(1383), + [anon_sym_IBInspectable] = ACTIONS(1383), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1383), + [anon_sym_signed] = ACTIONS(1383), + [anon_sym_unsigned] = ACTIONS(1383), + [anon_sym_long] = ACTIONS(1383), + [anon_sym_short] = ACTIONS(1383), + [sym_primitive_type] = ACTIONS(1383), + [anon_sym_enum] = ACTIONS(1383), + [anon_sym_struct] = ACTIONS(1383), + [anon_sym_union] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_else] = ACTIONS(1383), + [anon_sym_switch] = ACTIONS(1383), + [anon_sym_case] = ACTIONS(1383), + [anon_sym_default] = ACTIONS(1383), + [anon_sym_while] = ACTIONS(1383), + [anon_sym_do] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(1383), + [anon_sym_return] = ACTIONS(1383), + [anon_sym_break] = ACTIONS(1383), + [anon_sym_continue] = ACTIONS(1383), + [anon_sym_goto] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1385), + [anon_sym_sizeof] = ACTIONS(1383), + [sym_number_literal] = ACTIONS(1385), + [anon_sym_L_SQUOTE] = ACTIONS(1385), + [anon_sym_u_SQUOTE] = ACTIONS(1385), + [anon_sym_U_SQUOTE] = ACTIONS(1385), + [anon_sym_u8_SQUOTE] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1385), + [anon_sym_L_DQUOTE] = ACTIONS(1385), + [anon_sym_u_DQUOTE] = ACTIONS(1385), + [anon_sym_U_DQUOTE] = ACTIONS(1385), + [anon_sym_u8_DQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(1385), + [sym_true] = ACTIONS(1383), + [sym_false] = ACTIONS(1383), + [sym_null] = ACTIONS(1383), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1497), - [anon_sym_ATimport] = ACTIONS(1497), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1499), - [anon_sym_ATcompatibility_alias] = ACTIONS(1497), - [anon_sym_ATprotocol] = ACTIONS(1497), - [anon_sym_ATclass] = ACTIONS(1497), - [anon_sym_ATinterface] = ACTIONS(1497), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1499), - [sym_method_attribute_specifier] = ACTIONS(1499), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1499), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1499), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1499), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1499), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1499), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1499), - [anon_sym_NS_AVAILABLE] = ACTIONS(1499), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1499), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1499), - [anon_sym_API_AVAILABLE] = ACTIONS(1499), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1499), - [anon_sym_API_DEPRECATED] = ACTIONS(1499), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1499), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1499), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1499), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1499), - [anon_sym___deprecated_msg] = ACTIONS(1499), - [anon_sym___deprecated_enum_msg] = ACTIONS(1499), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1499), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1499), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1499), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1499), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1499), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1499), - [anon_sym_ATimplementation] = ACTIONS(1497), - [anon_sym_typeof] = ACTIONS(1499), - [anon_sym___typeof] = ACTIONS(1499), - [anon_sym___typeof__] = ACTIONS(1499), - [sym_self] = ACTIONS(1499), - [sym_super] = ACTIONS(1499), - [sym_nil] = ACTIONS(1499), - [sym_id] = ACTIONS(1499), - [sym_instancetype] = ACTIONS(1499), - [sym_Class] = ACTIONS(1499), - [sym_SEL] = ACTIONS(1499), - [sym_IMP] = ACTIONS(1499), - [sym_BOOL] = ACTIONS(1499), - [sym_auto] = ACTIONS(1499), - [anon_sym_ATautoreleasepool] = ACTIONS(1497), - [anon_sym_ATsynchronized] = ACTIONS(1497), - [anon_sym_ATtry] = ACTIONS(1497), - [anon_sym_ATcatch] = ACTIONS(1497), - [anon_sym_ATfinally] = ACTIONS(1497), - [anon_sym_ATthrow] = ACTIONS(1497), - [anon_sym_ATselector] = ACTIONS(1497), - [anon_sym_ATencode] = ACTIONS(1497), - [anon_sym_AT] = ACTIONS(1499), - [sym_YES] = ACTIONS(1499), - [sym_NO] = ACTIONS(1499), - [anon_sym___builtin_available] = ACTIONS(1499), - [anon_sym_ATavailable] = ACTIONS(1497), - [anon_sym_va_arg] = ACTIONS(1499), + [anon_sym_POUNDimport] = ACTIONS(1385), + [anon_sym_ATimport] = ACTIONS(1385), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1383), + [anon_sym_ATcompatibility_alias] = ACTIONS(1385), + [anon_sym_ATprotocol] = ACTIONS(1385), + [anon_sym_ATclass] = ACTIONS(1385), + [anon_sym_ATinterface] = ACTIONS(1385), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1383), + [sym_method_attribute_specifier] = ACTIONS(1383), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1383), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1383), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1383), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1383), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1383), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1383), + [anon_sym_NS_AVAILABLE] = ACTIONS(1383), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1383), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1383), + [anon_sym_API_AVAILABLE] = ACTIONS(1383), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1383), + [anon_sym_API_DEPRECATED] = ACTIONS(1383), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1383), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1383), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1383), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1383), + [anon_sym___deprecated_msg] = ACTIONS(1383), + [anon_sym___deprecated_enum_msg] = ACTIONS(1383), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1383), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1383), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1383), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1383), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1383), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1383), + [anon_sym_ATimplementation] = ACTIONS(1385), + [anon_sym_NS_ENUM] = ACTIONS(1383), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1383), + [anon_sym_NS_OPTIONS] = ACTIONS(1383), + [anon_sym_typeof] = ACTIONS(1383), + [anon_sym___typeof] = ACTIONS(1383), + [anon_sym___typeof__] = ACTIONS(1383), + [sym_self] = ACTIONS(1383), + [sym_super] = ACTIONS(1383), + [sym_nil] = ACTIONS(1383), + [sym_id] = ACTIONS(1383), + [sym_instancetype] = ACTIONS(1383), + [sym_Class] = ACTIONS(1383), + [sym_SEL] = ACTIONS(1383), + [sym_IMP] = ACTIONS(1383), + [sym_BOOL] = ACTIONS(1383), + [sym_auto] = ACTIONS(1383), + [anon_sym_ATautoreleasepool] = ACTIONS(1385), + [anon_sym_ATsynchronized] = ACTIONS(1385), + [anon_sym_ATtry] = ACTIONS(1385), + [anon_sym_ATcatch] = ACTIONS(1385), + [anon_sym_ATfinally] = ACTIONS(1385), + [anon_sym_ATthrow] = ACTIONS(1385), + [anon_sym_ATselector] = ACTIONS(1385), + [anon_sym_ATencode] = ACTIONS(1385), + [anon_sym_AT] = ACTIONS(1383), + [sym_YES] = ACTIONS(1383), + [sym_NO] = ACTIONS(1383), + [anon_sym___builtin_available] = ACTIONS(1383), + [anon_sym_ATavailable] = ACTIONS(1385), + [anon_sym_va_arg] = ACTIONS(1383), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -54100,555 +54129,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [162] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1195), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token2] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [aux_sym_preproc_else_token1] = ACTIONS(1197), - [aux_sym_preproc_elif_token1] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_out] = ACTIONS(1197), - [anon_sym_inout] = ACTIONS(1197), - [anon_sym_bycopy] = ACTIONS(1197), - [anon_sym_byref] = ACTIONS(1197), - [anon_sym_oneway] = ACTIONS(1197), - [anon_sym__Nullable] = ACTIONS(1197), - [anon_sym__Nonnull] = ACTIONS(1197), - [anon_sym__Nullable_result] = ACTIONS(1197), - [anon_sym__Null_unspecified] = ACTIONS(1197), - [anon_sym___autoreleasing] = ACTIONS(1197), - [anon_sym___nullable] = ACTIONS(1197), - [anon_sym___nonnull] = ACTIONS(1197), - [anon_sym___strong] = ACTIONS(1197), - [anon_sym___weak] = ACTIONS(1197), - [anon_sym___bridge] = ACTIONS(1197), - [anon_sym___bridge_transfer] = ACTIONS(1197), - [anon_sym___bridge_retained] = ACTIONS(1197), - [anon_sym___unsafe_unretained] = ACTIONS(1197), - [anon_sym___block] = ACTIONS(1197), - [anon_sym___kindof] = ACTIONS(1197), - [anon_sym___unused] = ACTIONS(1197), - [anon_sym__Complex] = ACTIONS(1197), - [anon_sym___complex] = ACTIONS(1197), - [anon_sym_IBOutlet] = ACTIONS(1197), - [anon_sym_IBInspectable] = ACTIONS(1197), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_NS_ENUM] = ACTIONS(1197), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1197), - [anon_sym_NS_OPTIONS] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [sym_null] = ACTIONS(1197), + [ts_builtin_sym_end] = ACTIONS(1381), + [sym_identifier] = ACTIONS(1379), + [aux_sym_preproc_include_token1] = ACTIONS(1381), + [aux_sym_preproc_def_token1] = ACTIONS(1381), + [anon_sym_RPAREN] = ACTIONS(1381), + [aux_sym_preproc_if_token1] = ACTIONS(1379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1379), + [anon_sym_LPAREN2] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_typedef] = ACTIONS(1379), + [anon_sym_extern] = ACTIONS(1379), + [anon_sym___attribute] = ACTIONS(1379), + [anon_sym___attribute__] = ACTIONS(1379), + [anon_sym___declspec] = ACTIONS(1379), + [anon_sym___cdecl] = ACTIONS(1379), + [anon_sym___clrcall] = ACTIONS(1379), + [anon_sym___stdcall] = ACTIONS(1379), + [anon_sym___fastcall] = ACTIONS(1379), + [anon_sym___thiscall] = ACTIONS(1379), + [anon_sym___vectorcall] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1379), + [anon_sym_auto] = ACTIONS(1379), + [anon_sym_register] = ACTIONS(1379), + [anon_sym_inline] = ACTIONS(1379), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_volatile] = ACTIONS(1379), + [anon_sym_restrict] = ACTIONS(1379), + [anon_sym__Atomic] = ACTIONS(1379), + [anon_sym_in] = ACTIONS(1379), + [anon_sym_out] = ACTIONS(1379), + [anon_sym_inout] = ACTIONS(1379), + [anon_sym_bycopy] = ACTIONS(1379), + [anon_sym_byref] = ACTIONS(1379), + [anon_sym_oneway] = ACTIONS(1379), + [anon_sym__Nullable] = ACTIONS(1379), + [anon_sym__Nonnull] = ACTIONS(1379), + [anon_sym__Nullable_result] = ACTIONS(1379), + [anon_sym__Null_unspecified] = ACTIONS(1379), + [anon_sym___autoreleasing] = ACTIONS(1379), + [anon_sym___nullable] = ACTIONS(1379), + [anon_sym___nonnull] = ACTIONS(1379), + [anon_sym___strong] = ACTIONS(1379), + [anon_sym___weak] = ACTIONS(1379), + [anon_sym___bridge] = ACTIONS(1379), + [anon_sym___bridge_transfer] = ACTIONS(1379), + [anon_sym___bridge_retained] = ACTIONS(1379), + [anon_sym___unsafe_unretained] = ACTIONS(1379), + [anon_sym___block] = ACTIONS(1379), + [anon_sym___kindof] = ACTIONS(1379), + [anon_sym___unused] = ACTIONS(1379), + [anon_sym__Complex] = ACTIONS(1379), + [anon_sym___complex] = ACTIONS(1379), + [anon_sym_IBOutlet] = ACTIONS(1379), + [anon_sym_IBInspectable] = ACTIONS(1379), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1379), + [anon_sym_signed] = ACTIONS(1379), + [anon_sym_unsigned] = ACTIONS(1379), + [anon_sym_long] = ACTIONS(1379), + [anon_sym_short] = ACTIONS(1379), + [sym_primitive_type] = ACTIONS(1379), + [anon_sym_enum] = ACTIONS(1379), + [anon_sym_struct] = ACTIONS(1379), + [anon_sym_union] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_else] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_case] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1379), + [anon_sym_while] = ACTIONS(1379), + [anon_sym_do] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_return] = ACTIONS(1379), + [anon_sym_break] = ACTIONS(1379), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_sizeof] = ACTIONS(1379), + [sym_number_literal] = ACTIONS(1381), + [anon_sym_L_SQUOTE] = ACTIONS(1381), + [anon_sym_u_SQUOTE] = ACTIONS(1381), + [anon_sym_U_SQUOTE] = ACTIONS(1381), + [anon_sym_u8_SQUOTE] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1381), + [anon_sym_L_DQUOTE] = ACTIONS(1381), + [anon_sym_u_DQUOTE] = ACTIONS(1381), + [anon_sym_U_DQUOTE] = ACTIONS(1381), + [anon_sym_u8_DQUOTE] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [sym_true] = ACTIONS(1379), + [sym_false] = ACTIONS(1379), + [sym_null] = ACTIONS(1379), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1195), - [anon_sym_ATimport] = ACTIONS(1195), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1197), - [anon_sym_ATcompatibility_alias] = ACTIONS(1195), - [anon_sym_ATprotocol] = ACTIONS(1195), - [anon_sym_ATclass] = ACTIONS(1195), - [anon_sym_ATinterface] = ACTIONS(1195), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1197), - [sym_method_attribute_specifier] = ACTIONS(1197), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1197), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE] = ACTIONS(1197), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_API_AVAILABLE] = ACTIONS(1197), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_API_DEPRECATED] = ACTIONS(1197), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1197), - [anon_sym___deprecated_msg] = ACTIONS(1197), - [anon_sym___deprecated_enum_msg] = ACTIONS(1197), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1197), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1197), - [anon_sym_ATimplementation] = ACTIONS(1195), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym___typeof] = ACTIONS(1197), - [anon_sym___typeof__] = ACTIONS(1197), - [sym_self] = ACTIONS(1197), - [sym_super] = ACTIONS(1197), - [sym_nil] = ACTIONS(1197), - [sym_id] = ACTIONS(1197), - [sym_instancetype] = ACTIONS(1197), - [sym_Class] = ACTIONS(1197), - [sym_SEL] = ACTIONS(1197), - [sym_IMP] = ACTIONS(1197), - [sym_BOOL] = ACTIONS(1197), - [sym_auto] = ACTIONS(1197), - [anon_sym_ATautoreleasepool] = ACTIONS(1195), - [anon_sym_ATsynchronized] = ACTIONS(1195), - [anon_sym_ATtry] = ACTIONS(1195), - [anon_sym_ATcatch] = ACTIONS(1195), - [anon_sym_ATfinally] = ACTIONS(1195), - [anon_sym_ATthrow] = ACTIONS(1195), - [anon_sym_ATselector] = ACTIONS(1195), - [anon_sym_ATencode] = ACTIONS(1195), - [anon_sym_AT] = ACTIONS(1197), - [sym_YES] = ACTIONS(1197), - [sym_NO] = ACTIONS(1197), - [anon_sym___builtin_available] = ACTIONS(1197), - [anon_sym_ATavailable] = ACTIONS(1195), - [anon_sym_va_arg] = ACTIONS(1197), + [anon_sym_POUNDimport] = ACTIONS(1381), + [anon_sym_ATimport] = ACTIONS(1381), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1379), + [anon_sym_ATcompatibility_alias] = ACTIONS(1381), + [anon_sym_ATprotocol] = ACTIONS(1381), + [anon_sym_ATclass] = ACTIONS(1381), + [anon_sym_ATinterface] = ACTIONS(1381), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1379), + [sym_method_attribute_specifier] = ACTIONS(1379), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1379), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1379), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1379), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1379), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1379), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1379), + [anon_sym_NS_AVAILABLE] = ACTIONS(1379), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1379), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1379), + [anon_sym_API_AVAILABLE] = ACTIONS(1379), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1379), + [anon_sym_API_DEPRECATED] = ACTIONS(1379), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1379), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1379), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1379), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1379), + [anon_sym___deprecated_msg] = ACTIONS(1379), + [anon_sym___deprecated_enum_msg] = ACTIONS(1379), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1379), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1379), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1379), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1379), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1379), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1379), + [anon_sym_ATimplementation] = ACTIONS(1381), + [anon_sym_NS_ENUM] = ACTIONS(1379), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1379), + [anon_sym_NS_OPTIONS] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1379), + [anon_sym___typeof] = ACTIONS(1379), + [anon_sym___typeof__] = ACTIONS(1379), + [sym_self] = ACTIONS(1379), + [sym_super] = ACTIONS(1379), + [sym_nil] = ACTIONS(1379), + [sym_id] = ACTIONS(1379), + [sym_instancetype] = ACTIONS(1379), + [sym_Class] = ACTIONS(1379), + [sym_SEL] = ACTIONS(1379), + [sym_IMP] = ACTIONS(1379), + [sym_BOOL] = ACTIONS(1379), + [sym_auto] = ACTIONS(1379), + [anon_sym_ATautoreleasepool] = ACTIONS(1381), + [anon_sym_ATsynchronized] = ACTIONS(1381), + [anon_sym_ATtry] = ACTIONS(1381), + [anon_sym_ATcatch] = ACTIONS(1381), + [anon_sym_ATfinally] = ACTIONS(1381), + [anon_sym_ATthrow] = ACTIONS(1381), + [anon_sym_ATselector] = ACTIONS(1381), + [anon_sym_ATencode] = ACTIONS(1381), + [anon_sym_AT] = ACTIONS(1379), + [sym_YES] = ACTIONS(1379), + [sym_NO] = ACTIONS(1379), + [anon_sym___builtin_available] = ACTIONS(1379), + [anon_sym_ATavailable] = ACTIONS(1381), + [anon_sym_va_arg] = ACTIONS(1379), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, [163] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1195), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token2] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [aux_sym_preproc_else_token1] = ACTIONS(1197), - [aux_sym_preproc_elif_token1] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_out] = ACTIONS(1197), - [anon_sym_inout] = ACTIONS(1197), - [anon_sym_bycopy] = ACTIONS(1197), - [anon_sym_byref] = ACTIONS(1197), - [anon_sym_oneway] = ACTIONS(1197), - [anon_sym__Nullable] = ACTIONS(1197), - [anon_sym__Nonnull] = ACTIONS(1197), - [anon_sym__Nullable_result] = ACTIONS(1197), - [anon_sym__Null_unspecified] = ACTIONS(1197), - [anon_sym___autoreleasing] = ACTIONS(1197), - [anon_sym___nullable] = ACTIONS(1197), - [anon_sym___nonnull] = ACTIONS(1197), - [anon_sym___strong] = ACTIONS(1197), - [anon_sym___weak] = ACTIONS(1197), - [anon_sym___bridge] = ACTIONS(1197), - [anon_sym___bridge_transfer] = ACTIONS(1197), - [anon_sym___bridge_retained] = ACTIONS(1197), - [anon_sym___unsafe_unretained] = ACTIONS(1197), - [anon_sym___block] = ACTIONS(1197), - [anon_sym___kindof] = ACTIONS(1197), - [anon_sym___unused] = ACTIONS(1197), - [anon_sym__Complex] = ACTIONS(1197), - [anon_sym___complex] = ACTIONS(1197), - [anon_sym_IBOutlet] = ACTIONS(1197), - [anon_sym_IBInspectable] = ACTIONS(1197), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_NS_ENUM] = ACTIONS(1197), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1197), - [anon_sym_NS_OPTIONS] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [sym_null] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1195), - [anon_sym_ATimport] = ACTIONS(1195), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1197), - [anon_sym_ATcompatibility_alias] = ACTIONS(1195), - [anon_sym_ATprotocol] = ACTIONS(1195), - [anon_sym_ATclass] = ACTIONS(1195), - [anon_sym_ATinterface] = ACTIONS(1195), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1197), - [sym_method_attribute_specifier] = ACTIONS(1197), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1197), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE] = ACTIONS(1197), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_API_AVAILABLE] = ACTIONS(1197), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_API_DEPRECATED] = ACTIONS(1197), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1197), - [anon_sym___deprecated_msg] = ACTIONS(1197), - [anon_sym___deprecated_enum_msg] = ACTIONS(1197), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1197), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1197), - [anon_sym_ATimplementation] = ACTIONS(1195), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym___typeof] = ACTIONS(1197), - [anon_sym___typeof__] = ACTIONS(1197), - [sym_self] = ACTIONS(1197), - [sym_super] = ACTIONS(1197), - [sym_nil] = ACTIONS(1197), - [sym_id] = ACTIONS(1197), - [sym_instancetype] = ACTIONS(1197), - [sym_Class] = ACTIONS(1197), - [sym_SEL] = ACTIONS(1197), - [sym_IMP] = ACTIONS(1197), - [sym_BOOL] = ACTIONS(1197), - [sym_auto] = ACTIONS(1197), - [anon_sym_ATautoreleasepool] = ACTIONS(1195), - [anon_sym_ATsynchronized] = ACTIONS(1195), - [anon_sym_ATtry] = ACTIONS(1195), - [anon_sym_ATcatch] = ACTIONS(1195), - [anon_sym_ATfinally] = ACTIONS(1195), - [anon_sym_ATthrow] = ACTIONS(1195), - [anon_sym_ATselector] = ACTIONS(1195), - [anon_sym_ATencode] = ACTIONS(1195), - [anon_sym_AT] = ACTIONS(1197), - [sym_YES] = ACTIONS(1197), - [sym_NO] = ACTIONS(1197), - [anon_sym___builtin_available] = ACTIONS(1197), - [anon_sym_ATavailable] = ACTIONS(1195), - [anon_sym_va_arg] = ACTIONS(1197), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [164] = { - [sym_identifier] = ACTIONS(1465), - [aux_sym_preproc_include_token1] = ACTIONS(1467), - [aux_sym_preproc_def_token1] = ACTIONS(1467), - [aux_sym_preproc_if_token1] = ACTIONS(1465), - [aux_sym_preproc_if_token2] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1465), - [aux_sym_preproc_else_token1] = ACTIONS(1465), - [aux_sym_preproc_elif_token1] = ACTIONS(1465), - [anon_sym_LPAREN2] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_typedef] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym___attribute] = ACTIONS(1465), - [anon_sym___attribute__] = ACTIONS(1465), - [anon_sym___declspec] = ACTIONS(1465), - [anon_sym___cdecl] = ACTIONS(1465), - [anon_sym___clrcall] = ACTIONS(1465), - [anon_sym___stdcall] = ACTIONS(1465), - [anon_sym___fastcall] = ACTIONS(1465), - [anon_sym___thiscall] = ACTIONS(1465), - [anon_sym___vectorcall] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_auto] = ACTIONS(1465), - [anon_sym_register] = ACTIONS(1465), - [anon_sym_inline] = ACTIONS(1465), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_volatile] = ACTIONS(1465), - [anon_sym_restrict] = ACTIONS(1465), - [anon_sym__Atomic] = ACTIONS(1465), - [anon_sym_in] = ACTIONS(1465), - [anon_sym_out] = ACTIONS(1465), - [anon_sym_inout] = ACTIONS(1465), - [anon_sym_bycopy] = ACTIONS(1465), - [anon_sym_byref] = ACTIONS(1465), - [anon_sym_oneway] = ACTIONS(1465), - [anon_sym__Nullable] = ACTIONS(1465), - [anon_sym__Nonnull] = ACTIONS(1465), - [anon_sym__Nullable_result] = ACTIONS(1465), - [anon_sym__Null_unspecified] = ACTIONS(1465), - [anon_sym___autoreleasing] = ACTIONS(1465), - [anon_sym___nullable] = ACTIONS(1465), - [anon_sym___nonnull] = ACTIONS(1465), - [anon_sym___strong] = ACTIONS(1465), - [anon_sym___weak] = ACTIONS(1465), - [anon_sym___bridge] = ACTIONS(1465), - [anon_sym___bridge_transfer] = ACTIONS(1465), - [anon_sym___bridge_retained] = ACTIONS(1465), - [anon_sym___unsafe_unretained] = ACTIONS(1465), - [anon_sym___block] = ACTIONS(1465), - [anon_sym___kindof] = ACTIONS(1465), - [anon_sym___unused] = ACTIONS(1465), - [anon_sym__Complex] = ACTIONS(1465), - [anon_sym___complex] = ACTIONS(1465), - [anon_sym_IBOutlet] = ACTIONS(1465), - [anon_sym_IBInspectable] = ACTIONS(1465), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1465), - [anon_sym_signed] = ACTIONS(1465), - [anon_sym_unsigned] = ACTIONS(1465), - [anon_sym_long] = ACTIONS(1465), - [anon_sym_short] = ACTIONS(1465), - [sym_primitive_type] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_NS_ENUM] = ACTIONS(1465), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1465), - [anon_sym_NS_OPTIONS] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_else] = ACTIONS(1465), - [anon_sym_switch] = ACTIONS(1465), - [anon_sym_case] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_do] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_goto] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_sizeof] = ACTIONS(1465), - [sym_number_literal] = ACTIONS(1467), - [anon_sym_L_SQUOTE] = ACTIONS(1467), - [anon_sym_u_SQUOTE] = ACTIONS(1467), - [anon_sym_U_SQUOTE] = ACTIONS(1467), - [anon_sym_u8_SQUOTE] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1467), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1465), - [sym_false] = ACTIONS(1465), - [sym_null] = ACTIONS(1465), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1467), - [anon_sym_ATimport] = ACTIONS(1467), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1465), - [anon_sym_ATcompatibility_alias] = ACTIONS(1467), - [anon_sym_ATprotocol] = ACTIONS(1467), - [anon_sym_ATclass] = ACTIONS(1467), - [anon_sym_ATinterface] = ACTIONS(1467), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1465), - [sym_method_attribute_specifier] = ACTIONS(1465), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1465), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1465), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1465), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1465), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1465), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1465), - [anon_sym_NS_AVAILABLE] = ACTIONS(1465), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1465), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_API_AVAILABLE] = ACTIONS(1465), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1465), - [anon_sym_API_DEPRECATED] = ACTIONS(1465), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1465), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1465), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1465), - [anon_sym___deprecated_msg] = ACTIONS(1465), - [anon_sym___deprecated_enum_msg] = ACTIONS(1465), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1465), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1465), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1465), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1465), - [anon_sym_ATimplementation] = ACTIONS(1467), - [anon_sym_typeof] = ACTIONS(1465), - [anon_sym___typeof] = ACTIONS(1465), - [anon_sym___typeof__] = ACTIONS(1465), - [sym_self] = ACTIONS(1465), - [sym_super] = ACTIONS(1465), - [sym_nil] = ACTIONS(1465), - [sym_id] = ACTIONS(1465), - [sym_instancetype] = ACTIONS(1465), - [sym_Class] = ACTIONS(1465), - [sym_SEL] = ACTIONS(1465), - [sym_IMP] = ACTIONS(1465), - [sym_BOOL] = ACTIONS(1465), - [sym_auto] = ACTIONS(1465), - [anon_sym_ATautoreleasepool] = ACTIONS(1467), - [anon_sym_ATsynchronized] = ACTIONS(1467), - [anon_sym_ATtry] = ACTIONS(1467), - [anon_sym_ATcatch] = ACTIONS(1467), - [anon_sym_ATfinally] = ACTIONS(1467), - [anon_sym_ATthrow] = ACTIONS(1467), - [anon_sym_ATselector] = ACTIONS(1467), - [anon_sym_ATencode] = ACTIONS(1467), - [anon_sym_AT] = ACTIONS(1465), - [sym_YES] = ACTIONS(1465), - [sym_NO] = ACTIONS(1465), - [anon_sym___builtin_available] = ACTIONS(1465), - [anon_sym_ATavailable] = ACTIONS(1467), - [anon_sym_va_arg] = ACTIONS(1465), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [165] = { + [ts_builtin_sym_end] = ACTIONS(1499), [sym_identifier] = ACTIONS(1501), - [aux_sym_preproc_include_token1] = ACTIONS(1503), - [aux_sym_preproc_def_token1] = ACTIONS(1503), + [aux_sym_preproc_include_token1] = ACTIONS(1499), + [aux_sym_preproc_def_token1] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), [aux_sym_preproc_if_token1] = ACTIONS(1501), - [aux_sym_preproc_if_token2] = ACTIONS(1501), [aux_sym_preproc_ifdef_token1] = ACTIONS(1501), [aux_sym_preproc_ifdef_token2] = ACTIONS(1501), - [aux_sym_preproc_else_token1] = ACTIONS(1501), - [aux_sym_preproc_elif_token1] = ACTIONS(1501), - [anon_sym_LPAREN2] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(1499), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), [anon_sym_DASH] = ACTIONS(1501), [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_CARET] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), [anon_sym_typedef] = ACTIONS(1501), [anon_sym_extern] = ACTIONS(1501), [anon_sym___attribute] = ACTIONS(1501), @@ -54660,8 +54334,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1501), [anon_sym___thiscall] = ACTIONS(1501), [anon_sym___vectorcall] = ACTIONS(1501), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_static] = ACTIONS(1501), [anon_sym_auto] = ACTIONS(1501), [anon_sym_register] = ACTIONS(1501), @@ -54704,9 +54379,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1501), [sym_primitive_type] = ACTIONS(1501), [anon_sym_enum] = ACTIONS(1501), - [anon_sym_NS_ENUM] = ACTIONS(1501), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1501), - [anon_sym_NS_OPTIONS] = ACTIONS(1501), [anon_sym_struct] = ACTIONS(1501), [anon_sym_union] = ACTIONS(1501), [anon_sym_if] = ACTIONS(1501), @@ -54721,31 +54393,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1501), [anon_sym_continue] = ACTIONS(1501), [anon_sym_goto] = ACTIONS(1501), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), [anon_sym_sizeof] = ACTIONS(1501), - [sym_number_literal] = ACTIONS(1503), - [anon_sym_L_SQUOTE] = ACTIONS(1503), - [anon_sym_u_SQUOTE] = ACTIONS(1503), - [anon_sym_U_SQUOTE] = ACTIONS(1503), - [anon_sym_u8_SQUOTE] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1503), - [anon_sym_L_DQUOTE] = ACTIONS(1503), - [anon_sym_u_DQUOTE] = ACTIONS(1503), - [anon_sym_U_DQUOTE] = ACTIONS(1503), - [anon_sym_u8_DQUOTE] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1503), + [sym_number_literal] = ACTIONS(1499), + [anon_sym_L_SQUOTE] = ACTIONS(1499), + [anon_sym_u_SQUOTE] = ACTIONS(1499), + [anon_sym_U_SQUOTE] = ACTIONS(1499), + [anon_sym_u8_SQUOTE] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_L_DQUOTE] = ACTIONS(1499), + [anon_sym_u_DQUOTE] = ACTIONS(1499), + [anon_sym_U_DQUOTE] = ACTIONS(1499), + [anon_sym_u8_DQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), [sym_true] = ACTIONS(1501), [sym_false] = ACTIONS(1501), [sym_null] = ACTIONS(1501), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1503), - [anon_sym_ATimport] = ACTIONS(1503), + [anon_sym_POUNDimport] = ACTIONS(1499), + [anon_sym_ATimport] = ACTIONS(1499), [sym__ns_assume_nonnull_declaration] = ACTIONS(1501), - [anon_sym_ATcompatibility_alias] = ACTIONS(1503), - [anon_sym_ATprotocol] = ACTIONS(1503), - [anon_sym_ATclass] = ACTIONS(1503), - [anon_sym_ATinterface] = ACTIONS(1503), + [anon_sym_ATcompatibility_alias] = ACTIONS(1499), + [anon_sym_ATprotocol] = ACTIONS(1499), + [anon_sym_ATclass] = ACTIONS(1499), + [anon_sym_ATinterface] = ACTIONS(1499), [sym_class_interface_attribute_sepcifier] = ACTIONS(1501), [sym_method_attribute_specifier] = ACTIONS(1501), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1501), @@ -54772,7 +54444,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1501), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1501), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1501), - [anon_sym_ATimplementation] = ACTIONS(1503), + [anon_sym_ATimplementation] = ACTIONS(1499), + [anon_sym_NS_ENUM] = ACTIONS(1501), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1501), + [anon_sym_NS_OPTIONS] = ACTIONS(1501), [anon_sym_typeof] = ACTIONS(1501), [anon_sym___typeof] = ACTIONS(1501), [anon_sym___typeof__] = ACTIONS(1501), @@ -54786,46 +54461,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1501), [sym_BOOL] = ACTIONS(1501), [sym_auto] = ACTIONS(1501), - [anon_sym_ATautoreleasepool] = ACTIONS(1503), - [anon_sym_ATsynchronized] = ACTIONS(1503), - [anon_sym_ATtry] = ACTIONS(1503), - [anon_sym_ATcatch] = ACTIONS(1503), - [anon_sym_ATfinally] = ACTIONS(1503), - [anon_sym_ATthrow] = ACTIONS(1503), - [anon_sym_ATselector] = ACTIONS(1503), - [anon_sym_ATencode] = ACTIONS(1503), + [anon_sym_ATautoreleasepool] = ACTIONS(1499), + [anon_sym_ATsynchronized] = ACTIONS(1499), + [anon_sym_ATtry] = ACTIONS(1499), + [anon_sym_ATcatch] = ACTIONS(1499), + [anon_sym_ATfinally] = ACTIONS(1499), + [anon_sym_ATthrow] = ACTIONS(1499), + [anon_sym_ATselector] = ACTIONS(1499), + [anon_sym_ATencode] = ACTIONS(1499), [anon_sym_AT] = ACTIONS(1501), [sym_YES] = ACTIONS(1501), [sym_NO] = ACTIONS(1501), [anon_sym___builtin_available] = ACTIONS(1501), - [anon_sym_ATavailable] = ACTIONS(1503), + [anon_sym_ATavailable] = ACTIONS(1499), [anon_sym_va_arg] = ACTIONS(1501), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [166] = { + [164] = { + [ts_builtin_sym_end] = ACTIONS(1503), [sym_identifier] = ACTIONS(1505), - [aux_sym_preproc_include_token1] = ACTIONS(1507), - [aux_sym_preproc_def_token1] = ACTIONS(1507), + [aux_sym_preproc_include_token1] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(1503), [aux_sym_preproc_if_token1] = ACTIONS(1505), - [aux_sym_preproc_if_token2] = ACTIONS(1505), [aux_sym_preproc_ifdef_token1] = ACTIONS(1505), [aux_sym_preproc_ifdef_token2] = ACTIONS(1505), - [aux_sym_preproc_else_token1] = ACTIONS(1505), - [aux_sym_preproc_elif_token1] = ACTIONS(1505), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_LPAREN2] = ACTIONS(1503), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), [anon_sym_DASH] = ACTIONS(1505), [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1503), + [anon_sym_SEMI] = ACTIONS(1503), [anon_sym_typedef] = ACTIONS(1505), [anon_sym_extern] = ACTIONS(1505), [anon_sym___attribute] = ACTIONS(1505), @@ -54837,8 +54511,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1505), [anon_sym___thiscall] = ACTIONS(1505), [anon_sym___vectorcall] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1503), + [anon_sym_RBRACE] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_static] = ACTIONS(1505), [anon_sym_auto] = ACTIONS(1505), [anon_sym_register] = ACTIONS(1505), @@ -54881,9 +54556,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1505), [sym_primitive_type] = ACTIONS(1505), [anon_sym_enum] = ACTIONS(1505), - [anon_sym_NS_ENUM] = ACTIONS(1505), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1505), - [anon_sym_NS_OPTIONS] = ACTIONS(1505), [anon_sym_struct] = ACTIONS(1505), [anon_sym_union] = ACTIONS(1505), [anon_sym_if] = ACTIONS(1505), @@ -54898,31 +54570,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1505), [anon_sym_continue] = ACTIONS(1505), [anon_sym_goto] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), [anon_sym_sizeof] = ACTIONS(1505), - [sym_number_literal] = ACTIONS(1507), - [anon_sym_L_SQUOTE] = ACTIONS(1507), - [anon_sym_u_SQUOTE] = ACTIONS(1507), - [anon_sym_U_SQUOTE] = ACTIONS(1507), - [anon_sym_u8_SQUOTE] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_L_DQUOTE] = ACTIONS(1507), - [anon_sym_u_DQUOTE] = ACTIONS(1507), - [anon_sym_U_DQUOTE] = ACTIONS(1507), - [anon_sym_u8_DQUOTE] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1507), + [sym_number_literal] = ACTIONS(1503), + [anon_sym_L_SQUOTE] = ACTIONS(1503), + [anon_sym_u_SQUOTE] = ACTIONS(1503), + [anon_sym_U_SQUOTE] = ACTIONS(1503), + [anon_sym_u8_SQUOTE] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_L_DQUOTE] = ACTIONS(1503), + [anon_sym_u_DQUOTE] = ACTIONS(1503), + [anon_sym_U_DQUOTE] = ACTIONS(1503), + [anon_sym_u8_DQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), [sym_true] = ACTIONS(1505), [sym_false] = ACTIONS(1505), [sym_null] = ACTIONS(1505), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1507), - [anon_sym_ATimport] = ACTIONS(1507), + [anon_sym_POUNDimport] = ACTIONS(1503), + [anon_sym_ATimport] = ACTIONS(1503), [sym__ns_assume_nonnull_declaration] = ACTIONS(1505), - [anon_sym_ATcompatibility_alias] = ACTIONS(1507), - [anon_sym_ATprotocol] = ACTIONS(1507), - [anon_sym_ATclass] = ACTIONS(1507), - [anon_sym_ATinterface] = ACTIONS(1507), + [anon_sym_ATcompatibility_alias] = ACTIONS(1503), + [anon_sym_ATprotocol] = ACTIONS(1503), + [anon_sym_ATclass] = ACTIONS(1503), + [anon_sym_ATinterface] = ACTIONS(1503), [sym_class_interface_attribute_sepcifier] = ACTIONS(1505), [sym_method_attribute_specifier] = ACTIONS(1505), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1505), @@ -54949,7 +54621,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1505), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1505), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1505), - [anon_sym_ATimplementation] = ACTIONS(1507), + [anon_sym_ATimplementation] = ACTIONS(1503), + [anon_sym_NS_ENUM] = ACTIONS(1505), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1505), + [anon_sym_NS_OPTIONS] = ACTIONS(1505), [anon_sym_typeof] = ACTIONS(1505), [anon_sym___typeof] = ACTIONS(1505), [anon_sym___typeof__] = ACTIONS(1505), @@ -54963,46 +54638,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1505), [sym_BOOL] = ACTIONS(1505), [sym_auto] = ACTIONS(1505), - [anon_sym_ATautoreleasepool] = ACTIONS(1507), - [anon_sym_ATsynchronized] = ACTIONS(1507), - [anon_sym_ATtry] = ACTIONS(1507), - [anon_sym_ATcatch] = ACTIONS(1507), - [anon_sym_ATfinally] = ACTIONS(1507), - [anon_sym_ATthrow] = ACTIONS(1507), - [anon_sym_ATselector] = ACTIONS(1507), - [anon_sym_ATencode] = ACTIONS(1507), + [anon_sym_ATautoreleasepool] = ACTIONS(1503), + [anon_sym_ATsynchronized] = ACTIONS(1503), + [anon_sym_ATtry] = ACTIONS(1503), + [anon_sym_ATcatch] = ACTIONS(1503), + [anon_sym_ATfinally] = ACTIONS(1503), + [anon_sym_ATthrow] = ACTIONS(1503), + [anon_sym_ATselector] = ACTIONS(1503), + [anon_sym_ATencode] = ACTIONS(1503), [anon_sym_AT] = ACTIONS(1505), [sym_YES] = ACTIONS(1505), [sym_NO] = ACTIONS(1505), [anon_sym___builtin_available] = ACTIONS(1505), - [anon_sym_ATavailable] = ACTIONS(1507), + [anon_sym_ATavailable] = ACTIONS(1503), [anon_sym_va_arg] = ACTIONS(1505), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [167] = { + [165] = { + [ts_builtin_sym_end] = ACTIONS(1507), [sym_identifier] = ACTIONS(1509), - [aux_sym_preproc_include_token1] = ACTIONS(1511), - [aux_sym_preproc_def_token1] = ACTIONS(1511), + [aux_sym_preproc_include_token1] = ACTIONS(1507), + [aux_sym_preproc_def_token1] = ACTIONS(1507), + [anon_sym_RPAREN] = ACTIONS(1507), [aux_sym_preproc_if_token1] = ACTIONS(1509), - [aux_sym_preproc_if_token2] = ACTIONS(1509), [aux_sym_preproc_ifdef_token1] = ACTIONS(1509), [aux_sym_preproc_ifdef_token2] = ACTIONS(1509), - [aux_sym_preproc_else_token1] = ACTIONS(1509), - [aux_sym_preproc_elif_token1] = ACTIONS(1509), - [anon_sym_LPAREN2] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), [anon_sym_DASH] = ACTIONS(1509), [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1507), [anon_sym_typedef] = ACTIONS(1509), [anon_sym_extern] = ACTIONS(1509), [anon_sym___attribute] = ACTIONS(1509), @@ -55014,8 +54688,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1509), [anon_sym___thiscall] = ACTIONS(1509), [anon_sym___vectorcall] = ACTIONS(1509), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1507), [anon_sym_static] = ACTIONS(1509), [anon_sym_auto] = ACTIONS(1509), [anon_sym_register] = ACTIONS(1509), @@ -55058,9 +54733,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1509), [sym_primitive_type] = ACTIONS(1509), [anon_sym_enum] = ACTIONS(1509), - [anon_sym_NS_ENUM] = ACTIONS(1509), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1509), - [anon_sym_NS_OPTIONS] = ACTIONS(1509), [anon_sym_struct] = ACTIONS(1509), [anon_sym_union] = ACTIONS(1509), [anon_sym_if] = ACTIONS(1509), @@ -55075,31 +54747,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1509), [anon_sym_continue] = ACTIONS(1509), [anon_sym_goto] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), [anon_sym_sizeof] = ACTIONS(1509), - [sym_number_literal] = ACTIONS(1511), - [anon_sym_L_SQUOTE] = ACTIONS(1511), - [anon_sym_u_SQUOTE] = ACTIONS(1511), - [anon_sym_U_SQUOTE] = ACTIONS(1511), - [anon_sym_u8_SQUOTE] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1511), - [anon_sym_L_DQUOTE] = ACTIONS(1511), - [anon_sym_u_DQUOTE] = ACTIONS(1511), - [anon_sym_U_DQUOTE] = ACTIONS(1511), - [anon_sym_u8_DQUOTE] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(1511), + [sym_number_literal] = ACTIONS(1507), + [anon_sym_L_SQUOTE] = ACTIONS(1507), + [anon_sym_u_SQUOTE] = ACTIONS(1507), + [anon_sym_U_SQUOTE] = ACTIONS(1507), + [anon_sym_u8_SQUOTE] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_L_DQUOTE] = ACTIONS(1507), + [anon_sym_u_DQUOTE] = ACTIONS(1507), + [anon_sym_U_DQUOTE] = ACTIONS(1507), + [anon_sym_u8_DQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), [sym_true] = ACTIONS(1509), [sym_false] = ACTIONS(1509), [sym_null] = ACTIONS(1509), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1511), - [anon_sym_ATimport] = ACTIONS(1511), + [anon_sym_POUNDimport] = ACTIONS(1507), + [anon_sym_ATimport] = ACTIONS(1507), [sym__ns_assume_nonnull_declaration] = ACTIONS(1509), - [anon_sym_ATcompatibility_alias] = ACTIONS(1511), - [anon_sym_ATprotocol] = ACTIONS(1511), - [anon_sym_ATclass] = ACTIONS(1511), - [anon_sym_ATinterface] = ACTIONS(1511), + [anon_sym_ATcompatibility_alias] = ACTIONS(1507), + [anon_sym_ATprotocol] = ACTIONS(1507), + [anon_sym_ATclass] = ACTIONS(1507), + [anon_sym_ATinterface] = ACTIONS(1507), [sym_class_interface_attribute_sepcifier] = ACTIONS(1509), [sym_method_attribute_specifier] = ACTIONS(1509), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1509), @@ -55126,7 +54798,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1509), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1509), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1509), - [anon_sym_ATimplementation] = ACTIONS(1511), + [anon_sym_ATimplementation] = ACTIONS(1507), + [anon_sym_NS_ENUM] = ACTIONS(1509), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1509), + [anon_sym_NS_OPTIONS] = ACTIONS(1509), [anon_sym_typeof] = ACTIONS(1509), [anon_sym___typeof] = ACTIONS(1509), [anon_sym___typeof__] = ACTIONS(1509), @@ -55140,46 +54815,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1509), [sym_BOOL] = ACTIONS(1509), [sym_auto] = ACTIONS(1509), - [anon_sym_ATautoreleasepool] = ACTIONS(1511), - [anon_sym_ATsynchronized] = ACTIONS(1511), - [anon_sym_ATtry] = ACTIONS(1511), - [anon_sym_ATcatch] = ACTIONS(1511), - [anon_sym_ATfinally] = ACTIONS(1511), - [anon_sym_ATthrow] = ACTIONS(1511), - [anon_sym_ATselector] = ACTIONS(1511), - [anon_sym_ATencode] = ACTIONS(1511), + [anon_sym_ATautoreleasepool] = ACTIONS(1507), + [anon_sym_ATsynchronized] = ACTIONS(1507), + [anon_sym_ATtry] = ACTIONS(1507), + [anon_sym_ATcatch] = ACTIONS(1507), + [anon_sym_ATfinally] = ACTIONS(1507), + [anon_sym_ATthrow] = ACTIONS(1507), + [anon_sym_ATselector] = ACTIONS(1507), + [anon_sym_ATencode] = ACTIONS(1507), [anon_sym_AT] = ACTIONS(1509), [sym_YES] = ACTIONS(1509), [sym_NO] = ACTIONS(1509), [anon_sym___builtin_available] = ACTIONS(1509), - [anon_sym_ATavailable] = ACTIONS(1511), + [anon_sym_ATavailable] = ACTIONS(1507), [anon_sym_va_arg] = ACTIONS(1509), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [168] = { + [166] = { + [ts_builtin_sym_end] = ACTIONS(1511), [sym_identifier] = ACTIONS(1513), - [aux_sym_preproc_include_token1] = ACTIONS(1515), - [aux_sym_preproc_def_token1] = ACTIONS(1515), + [aux_sym_preproc_include_token1] = ACTIONS(1511), + [aux_sym_preproc_def_token1] = ACTIONS(1511), + [anon_sym_RPAREN] = ACTIONS(1511), [aux_sym_preproc_if_token1] = ACTIONS(1513), - [aux_sym_preproc_if_token2] = ACTIONS(1513), [aux_sym_preproc_ifdef_token1] = ACTIONS(1513), [aux_sym_preproc_ifdef_token2] = ACTIONS(1513), - [aux_sym_preproc_else_token1] = ACTIONS(1513), - [aux_sym_preproc_elif_token1] = ACTIONS(1513), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_LPAREN2] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), [anon_sym_DASH] = ACTIONS(1513), [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1511), [anon_sym_typedef] = ACTIONS(1513), [anon_sym_extern] = ACTIONS(1513), [anon_sym___attribute] = ACTIONS(1513), @@ -55191,8 +54865,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1513), [anon_sym___thiscall] = ACTIONS(1513), [anon_sym___vectorcall] = ACTIONS(1513), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_RBRACE] = ACTIONS(1511), + [anon_sym_LBRACK] = ACTIONS(1511), [anon_sym_static] = ACTIONS(1513), [anon_sym_auto] = ACTIONS(1513), [anon_sym_register] = ACTIONS(1513), @@ -55235,9 +54910,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1513), [sym_primitive_type] = ACTIONS(1513), [anon_sym_enum] = ACTIONS(1513), - [anon_sym_NS_ENUM] = ACTIONS(1513), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1513), - [anon_sym_NS_OPTIONS] = ACTIONS(1513), [anon_sym_struct] = ACTIONS(1513), [anon_sym_union] = ACTIONS(1513), [anon_sym_if] = ACTIONS(1513), @@ -55252,31 +54924,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1513), [anon_sym_continue] = ACTIONS(1513), [anon_sym_goto] = ACTIONS(1513), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), [anon_sym_sizeof] = ACTIONS(1513), - [sym_number_literal] = ACTIONS(1515), - [anon_sym_L_SQUOTE] = ACTIONS(1515), - [anon_sym_u_SQUOTE] = ACTIONS(1515), - [anon_sym_U_SQUOTE] = ACTIONS(1515), - [anon_sym_u8_SQUOTE] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1515), - [anon_sym_L_DQUOTE] = ACTIONS(1515), - [anon_sym_u_DQUOTE] = ACTIONS(1515), - [anon_sym_U_DQUOTE] = ACTIONS(1515), - [anon_sym_u8_DQUOTE] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), + [sym_number_literal] = ACTIONS(1511), + [anon_sym_L_SQUOTE] = ACTIONS(1511), + [anon_sym_u_SQUOTE] = ACTIONS(1511), + [anon_sym_U_SQUOTE] = ACTIONS(1511), + [anon_sym_u8_SQUOTE] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_L_DQUOTE] = ACTIONS(1511), + [anon_sym_u_DQUOTE] = ACTIONS(1511), + [anon_sym_U_DQUOTE] = ACTIONS(1511), + [anon_sym_u8_DQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1511), [sym_true] = ACTIONS(1513), [sym_false] = ACTIONS(1513), [sym_null] = ACTIONS(1513), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1515), - [anon_sym_ATimport] = ACTIONS(1515), + [anon_sym_POUNDimport] = ACTIONS(1511), + [anon_sym_ATimport] = ACTIONS(1511), [sym__ns_assume_nonnull_declaration] = ACTIONS(1513), - [anon_sym_ATcompatibility_alias] = ACTIONS(1515), - [anon_sym_ATprotocol] = ACTIONS(1515), - [anon_sym_ATclass] = ACTIONS(1515), - [anon_sym_ATinterface] = ACTIONS(1515), + [anon_sym_ATcompatibility_alias] = ACTIONS(1511), + [anon_sym_ATprotocol] = ACTIONS(1511), + [anon_sym_ATclass] = ACTIONS(1511), + [anon_sym_ATinterface] = ACTIONS(1511), [sym_class_interface_attribute_sepcifier] = ACTIONS(1513), [sym_method_attribute_specifier] = ACTIONS(1513), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1513), @@ -55303,7 +54975,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1513), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1513), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1513), - [anon_sym_ATimplementation] = ACTIONS(1515), + [anon_sym_ATimplementation] = ACTIONS(1511), + [anon_sym_NS_ENUM] = ACTIONS(1513), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1513), + [anon_sym_NS_OPTIONS] = ACTIONS(1513), [anon_sym_typeof] = ACTIONS(1513), [anon_sym___typeof] = ACTIONS(1513), [anon_sym___typeof__] = ACTIONS(1513), @@ -55317,46 +54992,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1513), [sym_BOOL] = ACTIONS(1513), [sym_auto] = ACTIONS(1513), - [anon_sym_ATautoreleasepool] = ACTIONS(1515), - [anon_sym_ATsynchronized] = ACTIONS(1515), - [anon_sym_ATtry] = ACTIONS(1515), - [anon_sym_ATcatch] = ACTIONS(1515), - [anon_sym_ATfinally] = ACTIONS(1515), - [anon_sym_ATthrow] = ACTIONS(1515), - [anon_sym_ATselector] = ACTIONS(1515), - [anon_sym_ATencode] = ACTIONS(1515), + [anon_sym_ATautoreleasepool] = ACTIONS(1511), + [anon_sym_ATsynchronized] = ACTIONS(1511), + [anon_sym_ATtry] = ACTIONS(1511), + [anon_sym_ATcatch] = ACTIONS(1511), + [anon_sym_ATfinally] = ACTIONS(1511), + [anon_sym_ATthrow] = ACTIONS(1511), + [anon_sym_ATselector] = ACTIONS(1511), + [anon_sym_ATencode] = ACTIONS(1511), [anon_sym_AT] = ACTIONS(1513), [sym_YES] = ACTIONS(1513), [sym_NO] = ACTIONS(1513), [anon_sym___builtin_available] = ACTIONS(1513), - [anon_sym_ATavailable] = ACTIONS(1515), + [anon_sym_ATavailable] = ACTIONS(1511), [anon_sym_va_arg] = ACTIONS(1513), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [169] = { + [167] = { + [ts_builtin_sym_end] = ACTIONS(1515), [sym_identifier] = ACTIONS(1517), - [aux_sym_preproc_include_token1] = ACTIONS(1519), - [aux_sym_preproc_def_token1] = ACTIONS(1519), + [aux_sym_preproc_include_token1] = ACTIONS(1515), + [aux_sym_preproc_def_token1] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(1515), [aux_sym_preproc_if_token1] = ACTIONS(1517), - [aux_sym_preproc_if_token2] = ACTIONS(1517), [aux_sym_preproc_ifdef_token1] = ACTIONS(1517), [aux_sym_preproc_ifdef_token2] = ACTIONS(1517), - [aux_sym_preproc_else_token1] = ACTIONS(1517), - [aux_sym_preproc_elif_token1] = ACTIONS(1517), - [anon_sym_LPAREN2] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_LPAREN2] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), [anon_sym_DASH] = ACTIONS(1517), [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_CARET] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), [anon_sym_typedef] = ACTIONS(1517), [anon_sym_extern] = ACTIONS(1517), [anon_sym___attribute] = ACTIONS(1517), @@ -55368,8 +55042,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1517), [anon_sym___thiscall] = ACTIONS(1517), [anon_sym___vectorcall] = ACTIONS(1517), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1515), [anon_sym_static] = ACTIONS(1517), [anon_sym_auto] = ACTIONS(1517), [anon_sym_register] = ACTIONS(1517), @@ -55412,9 +55087,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1517), [sym_primitive_type] = ACTIONS(1517), [anon_sym_enum] = ACTIONS(1517), - [anon_sym_NS_ENUM] = ACTIONS(1517), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1517), - [anon_sym_NS_OPTIONS] = ACTIONS(1517), [anon_sym_struct] = ACTIONS(1517), [anon_sym_union] = ACTIONS(1517), [anon_sym_if] = ACTIONS(1517), @@ -55429,31 +55101,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1517), [anon_sym_continue] = ACTIONS(1517), [anon_sym_goto] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), [anon_sym_sizeof] = ACTIONS(1517), - [sym_number_literal] = ACTIONS(1519), - [anon_sym_L_SQUOTE] = ACTIONS(1519), - [anon_sym_u_SQUOTE] = ACTIONS(1519), - [anon_sym_U_SQUOTE] = ACTIONS(1519), - [anon_sym_u8_SQUOTE] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1519), - [anon_sym_L_DQUOTE] = ACTIONS(1519), - [anon_sym_u_DQUOTE] = ACTIONS(1519), - [anon_sym_U_DQUOTE] = ACTIONS(1519), - [anon_sym_u8_DQUOTE] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), + [sym_number_literal] = ACTIONS(1515), + [anon_sym_L_SQUOTE] = ACTIONS(1515), + [anon_sym_u_SQUOTE] = ACTIONS(1515), + [anon_sym_U_SQUOTE] = ACTIONS(1515), + [anon_sym_u8_SQUOTE] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_L_DQUOTE] = ACTIONS(1515), + [anon_sym_u_DQUOTE] = ACTIONS(1515), + [anon_sym_U_DQUOTE] = ACTIONS(1515), + [anon_sym_u8_DQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), [sym_true] = ACTIONS(1517), [sym_false] = ACTIONS(1517), [sym_null] = ACTIONS(1517), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1519), - [anon_sym_ATimport] = ACTIONS(1519), + [anon_sym_POUNDimport] = ACTIONS(1515), + [anon_sym_ATimport] = ACTIONS(1515), [sym__ns_assume_nonnull_declaration] = ACTIONS(1517), - [anon_sym_ATcompatibility_alias] = ACTIONS(1519), - [anon_sym_ATprotocol] = ACTIONS(1519), - [anon_sym_ATclass] = ACTIONS(1519), - [anon_sym_ATinterface] = ACTIONS(1519), + [anon_sym_ATcompatibility_alias] = ACTIONS(1515), + [anon_sym_ATprotocol] = ACTIONS(1515), + [anon_sym_ATclass] = ACTIONS(1515), + [anon_sym_ATinterface] = ACTIONS(1515), [sym_class_interface_attribute_sepcifier] = ACTIONS(1517), [sym_method_attribute_specifier] = ACTIONS(1517), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1517), @@ -55480,7 +55152,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1517), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1517), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1517), - [anon_sym_ATimplementation] = ACTIONS(1519), + [anon_sym_ATimplementation] = ACTIONS(1515), + [anon_sym_NS_ENUM] = ACTIONS(1517), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1517), + [anon_sym_NS_OPTIONS] = ACTIONS(1517), [anon_sym_typeof] = ACTIONS(1517), [anon_sym___typeof] = ACTIONS(1517), [anon_sym___typeof__] = ACTIONS(1517), @@ -55494,46 +55169,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1517), [sym_BOOL] = ACTIONS(1517), [sym_auto] = ACTIONS(1517), - [anon_sym_ATautoreleasepool] = ACTIONS(1519), - [anon_sym_ATsynchronized] = ACTIONS(1519), - [anon_sym_ATtry] = ACTIONS(1519), - [anon_sym_ATcatch] = ACTIONS(1519), - [anon_sym_ATfinally] = ACTIONS(1519), - [anon_sym_ATthrow] = ACTIONS(1519), - [anon_sym_ATselector] = ACTIONS(1519), - [anon_sym_ATencode] = ACTIONS(1519), + [anon_sym_ATautoreleasepool] = ACTIONS(1515), + [anon_sym_ATsynchronized] = ACTIONS(1515), + [anon_sym_ATtry] = ACTIONS(1515), + [anon_sym_ATcatch] = ACTIONS(1515), + [anon_sym_ATfinally] = ACTIONS(1515), + [anon_sym_ATthrow] = ACTIONS(1515), + [anon_sym_ATselector] = ACTIONS(1515), + [anon_sym_ATencode] = ACTIONS(1515), [anon_sym_AT] = ACTIONS(1517), [sym_YES] = ACTIONS(1517), [sym_NO] = ACTIONS(1517), [anon_sym___builtin_available] = ACTIONS(1517), - [anon_sym_ATavailable] = ACTIONS(1519), + [anon_sym_ATavailable] = ACTIONS(1515), [anon_sym_va_arg] = ACTIONS(1517), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [170] = { + [168] = { + [ts_builtin_sym_end] = ACTIONS(1519), [sym_identifier] = ACTIONS(1521), - [aux_sym_preproc_include_token1] = ACTIONS(1523), - [aux_sym_preproc_def_token1] = ACTIONS(1523), + [aux_sym_preproc_include_token1] = ACTIONS(1519), + [aux_sym_preproc_def_token1] = ACTIONS(1519), + [anon_sym_RPAREN] = ACTIONS(1519), [aux_sym_preproc_if_token1] = ACTIONS(1521), - [aux_sym_preproc_if_token2] = ACTIONS(1521), [aux_sym_preproc_ifdef_token1] = ACTIONS(1521), [aux_sym_preproc_ifdef_token2] = ACTIONS(1521), - [aux_sym_preproc_else_token1] = ACTIONS(1521), - [aux_sym_preproc_elif_token1] = ACTIONS(1521), - [anon_sym_LPAREN2] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), [anon_sym_DASH] = ACTIONS(1521), [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_CARET] = ACTIONS(1523), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), [anon_sym_typedef] = ACTIONS(1521), [anon_sym_extern] = ACTIONS(1521), [anon_sym___attribute] = ACTIONS(1521), @@ -55545,8 +55219,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1521), [anon_sym___thiscall] = ACTIONS(1521), [anon_sym___vectorcall] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_LBRACK] = ACTIONS(1523), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1519), [anon_sym_static] = ACTIONS(1521), [anon_sym_auto] = ACTIONS(1521), [anon_sym_register] = ACTIONS(1521), @@ -55589,9 +55264,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1521), [sym_primitive_type] = ACTIONS(1521), [anon_sym_enum] = ACTIONS(1521), - [anon_sym_NS_ENUM] = ACTIONS(1521), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1521), - [anon_sym_NS_OPTIONS] = ACTIONS(1521), [anon_sym_struct] = ACTIONS(1521), [anon_sym_union] = ACTIONS(1521), [anon_sym_if] = ACTIONS(1521), @@ -55606,31 +55278,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1521), [anon_sym_continue] = ACTIONS(1521), [anon_sym_goto] = ACTIONS(1521), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), [anon_sym_sizeof] = ACTIONS(1521), - [sym_number_literal] = ACTIONS(1523), - [anon_sym_L_SQUOTE] = ACTIONS(1523), - [anon_sym_u_SQUOTE] = ACTIONS(1523), - [anon_sym_U_SQUOTE] = ACTIONS(1523), - [anon_sym_u8_SQUOTE] = ACTIONS(1523), - [anon_sym_SQUOTE] = ACTIONS(1523), - [anon_sym_L_DQUOTE] = ACTIONS(1523), - [anon_sym_u_DQUOTE] = ACTIONS(1523), - [anon_sym_U_DQUOTE] = ACTIONS(1523), - [anon_sym_u8_DQUOTE] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1523), + [sym_number_literal] = ACTIONS(1519), + [anon_sym_L_SQUOTE] = ACTIONS(1519), + [anon_sym_u_SQUOTE] = ACTIONS(1519), + [anon_sym_U_SQUOTE] = ACTIONS(1519), + [anon_sym_u8_SQUOTE] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_L_DQUOTE] = ACTIONS(1519), + [anon_sym_u_DQUOTE] = ACTIONS(1519), + [anon_sym_U_DQUOTE] = ACTIONS(1519), + [anon_sym_u8_DQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), [sym_true] = ACTIONS(1521), [sym_false] = ACTIONS(1521), [sym_null] = ACTIONS(1521), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1523), - [anon_sym_ATimport] = ACTIONS(1523), + [anon_sym_POUNDimport] = ACTIONS(1519), + [anon_sym_ATimport] = ACTIONS(1519), [sym__ns_assume_nonnull_declaration] = ACTIONS(1521), - [anon_sym_ATcompatibility_alias] = ACTIONS(1523), - [anon_sym_ATprotocol] = ACTIONS(1523), - [anon_sym_ATclass] = ACTIONS(1523), - [anon_sym_ATinterface] = ACTIONS(1523), + [anon_sym_ATcompatibility_alias] = ACTIONS(1519), + [anon_sym_ATprotocol] = ACTIONS(1519), + [anon_sym_ATclass] = ACTIONS(1519), + [anon_sym_ATinterface] = ACTIONS(1519), [sym_class_interface_attribute_sepcifier] = ACTIONS(1521), [sym_method_attribute_specifier] = ACTIONS(1521), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1521), @@ -55657,7 +55329,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1521), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1521), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1521), - [anon_sym_ATimplementation] = ACTIONS(1523), + [anon_sym_ATimplementation] = ACTIONS(1519), + [anon_sym_NS_ENUM] = ACTIONS(1521), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1521), + [anon_sym_NS_OPTIONS] = ACTIONS(1521), [anon_sym_typeof] = ACTIONS(1521), [anon_sym___typeof] = ACTIONS(1521), [anon_sym___typeof__] = ACTIONS(1521), @@ -55671,46 +55346,1461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1521), [sym_BOOL] = ACTIONS(1521), [sym_auto] = ACTIONS(1521), - [anon_sym_ATautoreleasepool] = ACTIONS(1523), - [anon_sym_ATsynchronized] = ACTIONS(1523), - [anon_sym_ATtry] = ACTIONS(1523), - [anon_sym_ATcatch] = ACTIONS(1523), - [anon_sym_ATfinally] = ACTIONS(1523), - [anon_sym_ATthrow] = ACTIONS(1523), - [anon_sym_ATselector] = ACTIONS(1523), - [anon_sym_ATencode] = ACTIONS(1523), + [anon_sym_ATautoreleasepool] = ACTIONS(1519), + [anon_sym_ATsynchronized] = ACTIONS(1519), + [anon_sym_ATtry] = ACTIONS(1519), + [anon_sym_ATcatch] = ACTIONS(1519), + [anon_sym_ATfinally] = ACTIONS(1519), + [anon_sym_ATthrow] = ACTIONS(1519), + [anon_sym_ATselector] = ACTIONS(1519), + [anon_sym_ATencode] = ACTIONS(1519), [anon_sym_AT] = ACTIONS(1521), [sym_YES] = ACTIONS(1521), [sym_NO] = ACTIONS(1521), [anon_sym___builtin_available] = ACTIONS(1521), - [anon_sym_ATavailable] = ACTIONS(1523), + [anon_sym_ATavailable] = ACTIONS(1519), [anon_sym_va_arg] = ACTIONS(1521), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [169] = { + [ts_builtin_sym_end] = ACTIONS(1377), + [sym_identifier] = ACTIONS(1375), + [aux_sym_preproc_include_token1] = ACTIONS(1377), + [aux_sym_preproc_def_token1] = ACTIONS(1377), + [anon_sym_RPAREN] = ACTIONS(1377), + [aux_sym_preproc_if_token1] = ACTIONS(1375), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1375), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1375), + [anon_sym_LPAREN2] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_typedef] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym___attribute] = ACTIONS(1375), + [anon_sym___attribute__] = ACTIONS(1375), + [anon_sym___declspec] = ACTIONS(1375), + [anon_sym___cdecl] = ACTIONS(1375), + [anon_sym___clrcall] = ACTIONS(1375), + [anon_sym___stdcall] = ACTIONS(1375), + [anon_sym___fastcall] = ACTIONS(1375), + [anon_sym___thiscall] = ACTIONS(1375), + [anon_sym___vectorcall] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_auto] = ACTIONS(1375), + [anon_sym_register] = ACTIONS(1375), + [anon_sym_inline] = ACTIONS(1375), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_volatile] = ACTIONS(1375), + [anon_sym_restrict] = ACTIONS(1375), + [anon_sym__Atomic] = ACTIONS(1375), + [anon_sym_in] = ACTIONS(1375), + [anon_sym_out] = ACTIONS(1375), + [anon_sym_inout] = ACTIONS(1375), + [anon_sym_bycopy] = ACTIONS(1375), + [anon_sym_byref] = ACTIONS(1375), + [anon_sym_oneway] = ACTIONS(1375), + [anon_sym__Nullable] = ACTIONS(1375), + [anon_sym__Nonnull] = ACTIONS(1375), + [anon_sym__Nullable_result] = ACTIONS(1375), + [anon_sym__Null_unspecified] = ACTIONS(1375), + [anon_sym___autoreleasing] = ACTIONS(1375), + [anon_sym___nullable] = ACTIONS(1375), + [anon_sym___nonnull] = ACTIONS(1375), + [anon_sym___strong] = ACTIONS(1375), + [anon_sym___weak] = ACTIONS(1375), + [anon_sym___bridge] = ACTIONS(1375), + [anon_sym___bridge_transfer] = ACTIONS(1375), + [anon_sym___bridge_retained] = ACTIONS(1375), + [anon_sym___unsafe_unretained] = ACTIONS(1375), + [anon_sym___block] = ACTIONS(1375), + [anon_sym___kindof] = ACTIONS(1375), + [anon_sym___unused] = ACTIONS(1375), + [anon_sym__Complex] = ACTIONS(1375), + [anon_sym___complex] = ACTIONS(1375), + [anon_sym_IBOutlet] = ACTIONS(1375), + [anon_sym_IBInspectable] = ACTIONS(1375), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1375), + [anon_sym_signed] = ACTIONS(1375), + [anon_sym_unsigned] = ACTIONS(1375), + [anon_sym_long] = ACTIONS(1375), + [anon_sym_short] = ACTIONS(1375), + [sym_primitive_type] = ACTIONS(1375), + [anon_sym_enum] = ACTIONS(1375), + [anon_sym_struct] = ACTIONS(1375), + [anon_sym_union] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_default] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_goto] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_sizeof] = ACTIONS(1375), + [sym_number_literal] = ACTIONS(1377), + [anon_sym_L_SQUOTE] = ACTIONS(1377), + [anon_sym_u_SQUOTE] = ACTIONS(1377), + [anon_sym_U_SQUOTE] = ACTIONS(1377), + [anon_sym_u8_SQUOTE] = ACTIONS(1377), + [anon_sym_SQUOTE] = ACTIONS(1377), + [anon_sym_L_DQUOTE] = ACTIONS(1377), + [anon_sym_u_DQUOTE] = ACTIONS(1377), + [anon_sym_U_DQUOTE] = ACTIONS(1377), + [anon_sym_u8_DQUOTE] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1377), + [sym_true] = ACTIONS(1375), + [sym_false] = ACTIONS(1375), + [sym_null] = ACTIONS(1375), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1377), + [anon_sym_ATimport] = ACTIONS(1377), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1375), + [anon_sym_ATcompatibility_alias] = ACTIONS(1377), + [anon_sym_ATprotocol] = ACTIONS(1377), + [anon_sym_ATclass] = ACTIONS(1377), + [anon_sym_ATinterface] = ACTIONS(1377), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1375), + [sym_method_attribute_specifier] = ACTIONS(1375), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1375), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1375), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1375), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1375), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1375), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1375), + [anon_sym_NS_AVAILABLE] = ACTIONS(1375), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1375), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1375), + [anon_sym_API_AVAILABLE] = ACTIONS(1375), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1375), + [anon_sym_API_DEPRECATED] = ACTIONS(1375), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1375), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1375), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1375), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1375), + [anon_sym___deprecated_msg] = ACTIONS(1375), + [anon_sym___deprecated_enum_msg] = ACTIONS(1375), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1375), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1375), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1375), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1375), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1375), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1375), + [anon_sym_ATimplementation] = ACTIONS(1377), + [anon_sym_NS_ENUM] = ACTIONS(1375), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1375), + [anon_sym_NS_OPTIONS] = ACTIONS(1375), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym___typeof] = ACTIONS(1375), + [anon_sym___typeof__] = ACTIONS(1375), + [sym_self] = ACTIONS(1375), + [sym_super] = ACTIONS(1375), + [sym_nil] = ACTIONS(1375), + [sym_id] = ACTIONS(1375), + [sym_instancetype] = ACTIONS(1375), + [sym_Class] = ACTIONS(1375), + [sym_SEL] = ACTIONS(1375), + [sym_IMP] = ACTIONS(1375), + [sym_BOOL] = ACTIONS(1375), + [sym_auto] = ACTIONS(1375), + [anon_sym_ATautoreleasepool] = ACTIONS(1377), + [anon_sym_ATsynchronized] = ACTIONS(1377), + [anon_sym_ATtry] = ACTIONS(1377), + [anon_sym_ATcatch] = ACTIONS(1377), + [anon_sym_ATfinally] = ACTIONS(1377), + [anon_sym_ATthrow] = ACTIONS(1377), + [anon_sym_ATselector] = ACTIONS(1377), + [anon_sym_ATencode] = ACTIONS(1377), + [anon_sym_AT] = ACTIONS(1375), + [sym_YES] = ACTIONS(1375), + [sym_NO] = ACTIONS(1375), + [anon_sym___builtin_available] = ACTIONS(1375), + [anon_sym_ATavailable] = ACTIONS(1377), + [anon_sym_va_arg] = ACTIONS(1375), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [170] = { + [sym_identifier] = ACTIONS(1271), + [aux_sym_preproc_include_token1] = ACTIONS(1269), + [aux_sym_preproc_def_token1] = ACTIONS(1269), + [aux_sym_preproc_if_token1] = ACTIONS(1271), + [aux_sym_preproc_if_token2] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1271), + [aux_sym_preproc_else_token1] = ACTIONS(1271), + [aux_sym_preproc_elif_token1] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_TILDE] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_typedef] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym___attribute] = ACTIONS(1271), + [anon_sym___attribute__] = ACTIONS(1271), + [anon_sym___declspec] = ACTIONS(1271), + [anon_sym___cdecl] = ACTIONS(1271), + [anon_sym___clrcall] = ACTIONS(1271), + [anon_sym___stdcall] = ACTIONS(1271), + [anon_sym___fastcall] = ACTIONS(1271), + [anon_sym___thiscall] = ACTIONS(1271), + [anon_sym___vectorcall] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_auto] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_inline] = ACTIONS(1271), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_volatile] = ACTIONS(1271), + [anon_sym_restrict] = ACTIONS(1271), + [anon_sym__Atomic] = ACTIONS(1271), + [anon_sym_in] = ACTIONS(1271), + [anon_sym_out] = ACTIONS(1271), + [anon_sym_inout] = ACTIONS(1271), + [anon_sym_bycopy] = ACTIONS(1271), + [anon_sym_byref] = ACTIONS(1271), + [anon_sym_oneway] = ACTIONS(1271), + [anon_sym__Nullable] = ACTIONS(1271), + [anon_sym__Nonnull] = ACTIONS(1271), + [anon_sym__Nullable_result] = ACTIONS(1271), + [anon_sym__Null_unspecified] = ACTIONS(1271), + [anon_sym___autoreleasing] = ACTIONS(1271), + [anon_sym___nullable] = ACTIONS(1271), + [anon_sym___nonnull] = ACTIONS(1271), + [anon_sym___strong] = ACTIONS(1271), + [anon_sym___weak] = ACTIONS(1271), + [anon_sym___bridge] = ACTIONS(1271), + [anon_sym___bridge_transfer] = ACTIONS(1271), + [anon_sym___bridge_retained] = ACTIONS(1271), + [anon_sym___unsafe_unretained] = ACTIONS(1271), + [anon_sym___block] = ACTIONS(1271), + [anon_sym___kindof] = ACTIONS(1271), + [anon_sym___unused] = ACTIONS(1271), + [anon_sym__Complex] = ACTIONS(1271), + [anon_sym___complex] = ACTIONS(1271), + [anon_sym_IBOutlet] = ACTIONS(1271), + [anon_sym_IBInspectable] = ACTIONS(1271), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1271), + [anon_sym_signed] = ACTIONS(1271), + [anon_sym_unsigned] = ACTIONS(1271), + [anon_sym_long] = ACTIONS(1271), + [anon_sym_short] = ACTIONS(1271), + [sym_primitive_type] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_else] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_goto] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(1271), + [sym_number_literal] = ACTIONS(1269), + [anon_sym_L_SQUOTE] = ACTIONS(1269), + [anon_sym_u_SQUOTE] = ACTIONS(1269), + [anon_sym_U_SQUOTE] = ACTIONS(1269), + [anon_sym_u8_SQUOTE] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1269), + [anon_sym_L_DQUOTE] = ACTIONS(1269), + [anon_sym_u_DQUOTE] = ACTIONS(1269), + [anon_sym_U_DQUOTE] = ACTIONS(1269), + [anon_sym_u8_DQUOTE] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_true] = ACTIONS(1271), + [sym_false] = ACTIONS(1271), + [sym_null] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1269), + [anon_sym_ATimport] = ACTIONS(1269), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1271), + [anon_sym_ATcompatibility_alias] = ACTIONS(1269), + [anon_sym_ATprotocol] = ACTIONS(1269), + [anon_sym_ATclass] = ACTIONS(1269), + [anon_sym_ATinterface] = ACTIONS(1269), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1271), + [sym_method_attribute_specifier] = ACTIONS(1271), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1271), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1271), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1271), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1271), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1271), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1271), + [anon_sym_NS_AVAILABLE] = ACTIONS(1271), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1271), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1271), + [anon_sym_API_AVAILABLE] = ACTIONS(1271), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1271), + [anon_sym_API_DEPRECATED] = ACTIONS(1271), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1271), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1271), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1271), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1271), + [anon_sym___deprecated_msg] = ACTIONS(1271), + [anon_sym___deprecated_enum_msg] = ACTIONS(1271), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1271), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1271), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1271), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1271), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1271), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1271), + [anon_sym_ATimplementation] = ACTIONS(1269), + [anon_sym_NS_ENUM] = ACTIONS(1271), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1271), + [anon_sym_NS_OPTIONS] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1271), + [anon_sym___typeof] = ACTIONS(1271), + [anon_sym___typeof__] = ACTIONS(1271), + [sym_self] = ACTIONS(1271), + [sym_super] = ACTIONS(1271), + [sym_nil] = ACTIONS(1271), + [sym_id] = ACTIONS(1271), + [sym_instancetype] = ACTIONS(1271), + [sym_Class] = ACTIONS(1271), + [sym_SEL] = ACTIONS(1271), + [sym_IMP] = ACTIONS(1271), + [sym_BOOL] = ACTIONS(1271), + [sym_auto] = ACTIONS(1271), + [anon_sym_ATautoreleasepool] = ACTIONS(1269), + [anon_sym_ATsynchronized] = ACTIONS(1269), + [anon_sym_ATtry] = ACTIONS(1269), + [anon_sym_ATcatch] = ACTIONS(1269), + [anon_sym_ATfinally] = ACTIONS(1269), + [anon_sym_ATthrow] = ACTIONS(1269), + [anon_sym_ATselector] = ACTIONS(1269), + [anon_sym_ATencode] = ACTIONS(1269), + [anon_sym_AT] = ACTIONS(1271), + [sym_YES] = ACTIONS(1271), + [sym_NO] = ACTIONS(1271), + [anon_sym___builtin_available] = ACTIONS(1271), + [anon_sym_ATavailable] = ACTIONS(1269), + [anon_sym_va_arg] = ACTIONS(1271), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), [sym__ifdef_else_ignore] = ACTIONS(5), [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, [171] = { + [sym_identifier] = ACTIONS(1325), + [aux_sym_preproc_include_token1] = ACTIONS(1323), + [aux_sym_preproc_def_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token2] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), + [aux_sym_preproc_else_token1] = ACTIONS(1325), + [aux_sym_preproc_elif_token1] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1323), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_CARET] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym_typedef] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym___attribute] = ACTIONS(1325), + [anon_sym___attribute__] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(1325), + [anon_sym___cdecl] = ACTIONS(1325), + [anon_sym___clrcall] = ACTIONS(1325), + [anon_sym___stdcall] = ACTIONS(1325), + [anon_sym___fastcall] = ACTIONS(1325), + [anon_sym___thiscall] = ACTIONS(1325), + [anon_sym___vectorcall] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1323), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_auto] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_inline] = ACTIONS(1325), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_volatile] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1325), + [anon_sym__Atomic] = ACTIONS(1325), + [anon_sym_in] = ACTIONS(1325), + [anon_sym_out] = ACTIONS(1325), + [anon_sym_inout] = ACTIONS(1325), + [anon_sym_bycopy] = ACTIONS(1325), + [anon_sym_byref] = ACTIONS(1325), + [anon_sym_oneway] = ACTIONS(1325), + [anon_sym__Nullable] = ACTIONS(1325), + [anon_sym__Nonnull] = ACTIONS(1325), + [anon_sym__Nullable_result] = ACTIONS(1325), + [anon_sym__Null_unspecified] = ACTIONS(1325), + [anon_sym___autoreleasing] = ACTIONS(1325), + [anon_sym___nullable] = ACTIONS(1325), + [anon_sym___nonnull] = ACTIONS(1325), + [anon_sym___strong] = ACTIONS(1325), + [anon_sym___weak] = ACTIONS(1325), + [anon_sym___bridge] = ACTIONS(1325), + [anon_sym___bridge_transfer] = ACTIONS(1325), + [anon_sym___bridge_retained] = ACTIONS(1325), + [anon_sym___unsafe_unretained] = ACTIONS(1325), + [anon_sym___block] = ACTIONS(1325), + [anon_sym___kindof] = ACTIONS(1325), + [anon_sym___unused] = ACTIONS(1325), + [anon_sym__Complex] = ACTIONS(1325), + [anon_sym___complex] = ACTIONS(1325), + [anon_sym_IBOutlet] = ACTIONS(1325), + [anon_sym_IBInspectable] = ACTIONS(1325), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1325), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [sym_primitive_type] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_else] = ACTIONS(1325), + [anon_sym_switch] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_goto] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_PLUS_PLUS] = ACTIONS(1323), + [anon_sym_sizeof] = ACTIONS(1325), + [sym_number_literal] = ACTIONS(1323), + [anon_sym_L_SQUOTE] = ACTIONS(1323), + [anon_sym_u_SQUOTE] = ACTIONS(1323), + [anon_sym_U_SQUOTE] = ACTIONS(1323), + [anon_sym_u8_SQUOTE] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1323), + [anon_sym_L_DQUOTE] = ACTIONS(1323), + [anon_sym_u_DQUOTE] = ACTIONS(1323), + [anon_sym_U_DQUOTE] = ACTIONS(1323), + [anon_sym_u8_DQUOTE] = ACTIONS(1323), + [anon_sym_DQUOTE] = ACTIONS(1323), + [sym_true] = ACTIONS(1325), + [sym_false] = ACTIONS(1325), + [sym_null] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1323), + [anon_sym_ATimport] = ACTIONS(1323), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1325), + [anon_sym_ATcompatibility_alias] = ACTIONS(1323), + [anon_sym_ATprotocol] = ACTIONS(1323), + [anon_sym_ATclass] = ACTIONS(1323), + [anon_sym_ATinterface] = ACTIONS(1323), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1325), + [sym_method_attribute_specifier] = ACTIONS(1325), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1325), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1325), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1325), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1325), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1325), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1325), + [anon_sym_NS_AVAILABLE] = ACTIONS(1325), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1325), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1325), + [anon_sym_API_AVAILABLE] = ACTIONS(1325), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1325), + [anon_sym_API_DEPRECATED] = ACTIONS(1325), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1325), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1325), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1325), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1325), + [anon_sym___deprecated_msg] = ACTIONS(1325), + [anon_sym___deprecated_enum_msg] = ACTIONS(1325), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1325), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1325), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1325), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1325), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1325), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1325), + [anon_sym_ATimplementation] = ACTIONS(1323), + [anon_sym_NS_ENUM] = ACTIONS(1325), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1325), + [anon_sym_NS_OPTIONS] = ACTIONS(1325), + [anon_sym_typeof] = ACTIONS(1325), + [anon_sym___typeof] = ACTIONS(1325), + [anon_sym___typeof__] = ACTIONS(1325), + [sym_self] = ACTIONS(1325), + [sym_super] = ACTIONS(1325), + [sym_nil] = ACTIONS(1325), + [sym_id] = ACTIONS(1325), + [sym_instancetype] = ACTIONS(1325), + [sym_Class] = ACTIONS(1325), + [sym_SEL] = ACTIONS(1325), + [sym_IMP] = ACTIONS(1325), + [sym_BOOL] = ACTIONS(1325), + [sym_auto] = ACTIONS(1325), + [anon_sym_ATautoreleasepool] = ACTIONS(1323), + [anon_sym_ATsynchronized] = ACTIONS(1323), + [anon_sym_ATtry] = ACTIONS(1323), + [anon_sym_ATcatch] = ACTIONS(1323), + [anon_sym_ATfinally] = ACTIONS(1323), + [anon_sym_ATthrow] = ACTIONS(1323), + [anon_sym_ATselector] = ACTIONS(1323), + [anon_sym_ATencode] = ACTIONS(1323), + [anon_sym_AT] = ACTIONS(1325), + [sym_YES] = ACTIONS(1325), + [sym_NO] = ACTIONS(1325), + [anon_sym___builtin_available] = ACTIONS(1325), + [anon_sym_ATavailable] = ACTIONS(1323), + [anon_sym_va_arg] = ACTIONS(1325), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [172] = { + [sym_identifier] = ACTIONS(1321), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1321), + [aux_sym_preproc_if_token2] = ACTIONS(1321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), + [aux_sym_preproc_else_token1] = ACTIONS(1321), + [aux_sym_preproc_elif_token1] = ACTIONS(1321), + [anon_sym_LPAREN2] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_TILDE] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1321), + [anon_sym_extern] = ACTIONS(1321), + [anon_sym___attribute] = ACTIONS(1321), + [anon_sym___attribute__] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1321), + [anon_sym___cdecl] = ACTIONS(1321), + [anon_sym___clrcall] = ACTIONS(1321), + [anon_sym___stdcall] = ACTIONS(1321), + [anon_sym___fastcall] = ACTIONS(1321), + [anon_sym___thiscall] = ACTIONS(1321), + [anon_sym___vectorcall] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1321), + [anon_sym_auto] = ACTIONS(1321), + [anon_sym_register] = ACTIONS(1321), + [anon_sym_inline] = ACTIONS(1321), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1321), + [anon_sym_const] = ACTIONS(1321), + [anon_sym_volatile] = ACTIONS(1321), + [anon_sym_restrict] = ACTIONS(1321), + [anon_sym__Atomic] = ACTIONS(1321), + [anon_sym_in] = ACTIONS(1321), + [anon_sym_out] = ACTIONS(1321), + [anon_sym_inout] = ACTIONS(1321), + [anon_sym_bycopy] = ACTIONS(1321), + [anon_sym_byref] = ACTIONS(1321), + [anon_sym_oneway] = ACTIONS(1321), + [anon_sym__Nullable] = ACTIONS(1321), + [anon_sym__Nonnull] = ACTIONS(1321), + [anon_sym__Nullable_result] = ACTIONS(1321), + [anon_sym__Null_unspecified] = ACTIONS(1321), + [anon_sym___autoreleasing] = ACTIONS(1321), + [anon_sym___nullable] = ACTIONS(1321), + [anon_sym___nonnull] = ACTIONS(1321), + [anon_sym___strong] = ACTIONS(1321), + [anon_sym___weak] = ACTIONS(1321), + [anon_sym___bridge] = ACTIONS(1321), + [anon_sym___bridge_transfer] = ACTIONS(1321), + [anon_sym___bridge_retained] = ACTIONS(1321), + [anon_sym___unsafe_unretained] = ACTIONS(1321), + [anon_sym___block] = ACTIONS(1321), + [anon_sym___kindof] = ACTIONS(1321), + [anon_sym___unused] = ACTIONS(1321), + [anon_sym__Complex] = ACTIONS(1321), + [anon_sym___complex] = ACTIONS(1321), + [anon_sym_IBOutlet] = ACTIONS(1321), + [anon_sym_IBInspectable] = ACTIONS(1321), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1321), + [anon_sym_unsigned] = ACTIONS(1321), + [anon_sym_long] = ACTIONS(1321), + [anon_sym_short] = ACTIONS(1321), + [sym_primitive_type] = ACTIONS(1321), + [anon_sym_enum] = ACTIONS(1321), + [anon_sym_struct] = ACTIONS(1321), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_if] = ACTIONS(1321), + [anon_sym_else] = ACTIONS(1321), + [anon_sym_switch] = ACTIONS(1321), + [anon_sym_case] = ACTIONS(1321), + [anon_sym_default] = ACTIONS(1321), + [anon_sym_while] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1321), + [anon_sym_for] = ACTIONS(1321), + [anon_sym_return] = ACTIONS(1321), + [anon_sym_break] = ACTIONS(1321), + [anon_sym_continue] = ACTIONS(1321), + [anon_sym_goto] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_sizeof] = ACTIONS(1321), + [sym_number_literal] = ACTIONS(1319), + [anon_sym_L_SQUOTE] = ACTIONS(1319), + [anon_sym_u_SQUOTE] = ACTIONS(1319), + [anon_sym_U_SQUOTE] = ACTIONS(1319), + [anon_sym_u8_SQUOTE] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_L_DQUOTE] = ACTIONS(1319), + [anon_sym_u_DQUOTE] = ACTIONS(1319), + [anon_sym_U_DQUOTE] = ACTIONS(1319), + [anon_sym_u8_DQUOTE] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym_true] = ACTIONS(1321), + [sym_false] = ACTIONS(1321), + [sym_null] = ACTIONS(1321), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1319), + [anon_sym_ATimport] = ACTIONS(1319), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1321), + [anon_sym_ATcompatibility_alias] = ACTIONS(1319), + [anon_sym_ATprotocol] = ACTIONS(1319), + [anon_sym_ATclass] = ACTIONS(1319), + [anon_sym_ATinterface] = ACTIONS(1319), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1321), + [sym_method_attribute_specifier] = ACTIONS(1321), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1321), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1321), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1321), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1321), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1321), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1321), + [anon_sym_NS_AVAILABLE] = ACTIONS(1321), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1321), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1321), + [anon_sym_API_AVAILABLE] = ACTIONS(1321), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1321), + [anon_sym_API_DEPRECATED] = ACTIONS(1321), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1321), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1321), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1321), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1321), + [anon_sym___deprecated_msg] = ACTIONS(1321), + [anon_sym___deprecated_enum_msg] = ACTIONS(1321), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1321), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1321), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1321), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1321), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1321), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1321), + [anon_sym_ATimplementation] = ACTIONS(1319), + [anon_sym_NS_ENUM] = ACTIONS(1321), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1321), + [anon_sym_NS_OPTIONS] = ACTIONS(1321), + [anon_sym_typeof] = ACTIONS(1321), + [anon_sym___typeof] = ACTIONS(1321), + [anon_sym___typeof__] = ACTIONS(1321), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1321), + [sym_nil] = ACTIONS(1321), + [sym_id] = ACTIONS(1321), + [sym_instancetype] = ACTIONS(1321), + [sym_Class] = ACTIONS(1321), + [sym_SEL] = ACTIONS(1321), + [sym_IMP] = ACTIONS(1321), + [sym_BOOL] = ACTIONS(1321), + [sym_auto] = ACTIONS(1321), + [anon_sym_ATautoreleasepool] = ACTIONS(1319), + [anon_sym_ATsynchronized] = ACTIONS(1319), + [anon_sym_ATtry] = ACTIONS(1319), + [anon_sym_ATcatch] = ACTIONS(1319), + [anon_sym_ATfinally] = ACTIONS(1319), + [anon_sym_ATthrow] = ACTIONS(1319), + [anon_sym_ATselector] = ACTIONS(1319), + [anon_sym_ATencode] = ACTIONS(1319), + [anon_sym_AT] = ACTIONS(1321), + [sym_YES] = ACTIONS(1321), + [sym_NO] = ACTIONS(1321), + [anon_sym___builtin_available] = ACTIONS(1321), + [anon_sym_ATavailable] = ACTIONS(1319), + [anon_sym_va_arg] = ACTIONS(1321), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [173] = { + [sym_identifier] = ACTIONS(1317), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1317), + [aux_sym_preproc_if_token2] = ACTIONS(1317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1317), + [aux_sym_preproc_else_token1] = ACTIONS(1317), + [aux_sym_preproc_elif_token1] = ACTIONS(1317), + [anon_sym_LPAREN2] = ACTIONS(1315), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_TILDE] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_CARET] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1317), + [anon_sym_extern] = ACTIONS(1317), + [anon_sym___attribute] = ACTIONS(1317), + [anon_sym___attribute__] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1317), + [anon_sym___cdecl] = ACTIONS(1317), + [anon_sym___clrcall] = ACTIONS(1317), + [anon_sym___stdcall] = ACTIONS(1317), + [anon_sym___fastcall] = ACTIONS(1317), + [anon_sym___thiscall] = ACTIONS(1317), + [anon_sym___vectorcall] = ACTIONS(1317), + [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1317), + [anon_sym_auto] = ACTIONS(1317), + [anon_sym_register] = ACTIONS(1317), + [anon_sym_inline] = ACTIONS(1317), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1317), + [anon_sym_const] = ACTIONS(1317), + [anon_sym_volatile] = ACTIONS(1317), + [anon_sym_restrict] = ACTIONS(1317), + [anon_sym__Atomic] = ACTIONS(1317), + [anon_sym_in] = ACTIONS(1317), + [anon_sym_out] = ACTIONS(1317), + [anon_sym_inout] = ACTIONS(1317), + [anon_sym_bycopy] = ACTIONS(1317), + [anon_sym_byref] = ACTIONS(1317), + [anon_sym_oneway] = ACTIONS(1317), + [anon_sym__Nullable] = ACTIONS(1317), + [anon_sym__Nonnull] = ACTIONS(1317), + [anon_sym__Nullable_result] = ACTIONS(1317), + [anon_sym__Null_unspecified] = ACTIONS(1317), + [anon_sym___autoreleasing] = ACTIONS(1317), + [anon_sym___nullable] = ACTIONS(1317), + [anon_sym___nonnull] = ACTIONS(1317), + [anon_sym___strong] = ACTIONS(1317), + [anon_sym___weak] = ACTIONS(1317), + [anon_sym___bridge] = ACTIONS(1317), + [anon_sym___bridge_transfer] = ACTIONS(1317), + [anon_sym___bridge_retained] = ACTIONS(1317), + [anon_sym___unsafe_unretained] = ACTIONS(1317), + [anon_sym___block] = ACTIONS(1317), + [anon_sym___kindof] = ACTIONS(1317), + [anon_sym___unused] = ACTIONS(1317), + [anon_sym__Complex] = ACTIONS(1317), + [anon_sym___complex] = ACTIONS(1317), + [anon_sym_IBOutlet] = ACTIONS(1317), + [anon_sym_IBInspectable] = ACTIONS(1317), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1317), + [anon_sym_unsigned] = ACTIONS(1317), + [anon_sym_long] = ACTIONS(1317), + [anon_sym_short] = ACTIONS(1317), + [sym_primitive_type] = ACTIONS(1317), + [anon_sym_enum] = ACTIONS(1317), + [anon_sym_struct] = ACTIONS(1317), + [anon_sym_union] = ACTIONS(1317), + [anon_sym_if] = ACTIONS(1317), + [anon_sym_else] = ACTIONS(1317), + [anon_sym_switch] = ACTIONS(1317), + [anon_sym_case] = ACTIONS(1317), + [anon_sym_default] = ACTIONS(1317), + [anon_sym_while] = ACTIONS(1317), + [anon_sym_do] = ACTIONS(1317), + [anon_sym_for] = ACTIONS(1317), + [anon_sym_return] = ACTIONS(1317), + [anon_sym_break] = ACTIONS(1317), + [anon_sym_continue] = ACTIONS(1317), + [anon_sym_goto] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1315), + [anon_sym_sizeof] = ACTIONS(1317), + [sym_number_literal] = ACTIONS(1315), + [anon_sym_L_SQUOTE] = ACTIONS(1315), + [anon_sym_u_SQUOTE] = ACTIONS(1315), + [anon_sym_U_SQUOTE] = ACTIONS(1315), + [anon_sym_u8_SQUOTE] = ACTIONS(1315), + [anon_sym_SQUOTE] = ACTIONS(1315), + [anon_sym_L_DQUOTE] = ACTIONS(1315), + [anon_sym_u_DQUOTE] = ACTIONS(1315), + [anon_sym_U_DQUOTE] = ACTIONS(1315), + [anon_sym_u8_DQUOTE] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(1315), + [sym_true] = ACTIONS(1317), + [sym_false] = ACTIONS(1317), + [sym_null] = ACTIONS(1317), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1315), + [anon_sym_ATimport] = ACTIONS(1315), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1317), + [anon_sym_ATcompatibility_alias] = ACTIONS(1315), + [anon_sym_ATprotocol] = ACTIONS(1315), + [anon_sym_ATclass] = ACTIONS(1315), + [anon_sym_ATinterface] = ACTIONS(1315), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1317), + [sym_method_attribute_specifier] = ACTIONS(1317), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1317), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1317), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1317), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1317), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1317), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1317), + [anon_sym_NS_AVAILABLE] = ACTIONS(1317), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1317), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1317), + [anon_sym_API_AVAILABLE] = ACTIONS(1317), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1317), + [anon_sym_API_DEPRECATED] = ACTIONS(1317), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1317), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1317), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1317), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1317), + [anon_sym___deprecated_msg] = ACTIONS(1317), + [anon_sym___deprecated_enum_msg] = ACTIONS(1317), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1317), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1317), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1317), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1317), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1317), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1317), + [anon_sym_ATimplementation] = ACTIONS(1315), + [anon_sym_NS_ENUM] = ACTIONS(1317), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1317), + [anon_sym_NS_OPTIONS] = ACTIONS(1317), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym___typeof] = ACTIONS(1317), + [anon_sym___typeof__] = ACTIONS(1317), + [sym_self] = ACTIONS(1317), + [sym_super] = ACTIONS(1317), + [sym_nil] = ACTIONS(1317), + [sym_id] = ACTIONS(1317), + [sym_instancetype] = ACTIONS(1317), + [sym_Class] = ACTIONS(1317), + [sym_SEL] = ACTIONS(1317), + [sym_IMP] = ACTIONS(1317), + [sym_BOOL] = ACTIONS(1317), + [sym_auto] = ACTIONS(1317), + [anon_sym_ATautoreleasepool] = ACTIONS(1315), + [anon_sym_ATsynchronized] = ACTIONS(1315), + [anon_sym_ATtry] = ACTIONS(1315), + [anon_sym_ATcatch] = ACTIONS(1315), + [anon_sym_ATfinally] = ACTIONS(1315), + [anon_sym_ATthrow] = ACTIONS(1315), + [anon_sym_ATselector] = ACTIONS(1315), + [anon_sym_ATencode] = ACTIONS(1315), + [anon_sym_AT] = ACTIONS(1317), + [sym_YES] = ACTIONS(1317), + [sym_NO] = ACTIONS(1317), + [anon_sym___builtin_available] = ACTIONS(1317), + [anon_sym_ATavailable] = ACTIONS(1315), + [anon_sym_va_arg] = ACTIONS(1317), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [174] = { + [sym_identifier] = ACTIONS(1313), + [aux_sym_preproc_include_token1] = ACTIONS(1311), + [aux_sym_preproc_def_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token1] = ACTIONS(1313), + [aux_sym_preproc_if_token2] = ACTIONS(1313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1313), + [aux_sym_preproc_else_token1] = ACTIONS(1313), + [aux_sym_preproc_elif_token1] = ACTIONS(1313), + [anon_sym_LPAREN2] = ACTIONS(1311), + [anon_sym_BANG] = ACTIONS(1311), + [anon_sym_TILDE] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_typedef] = ACTIONS(1313), + [anon_sym_extern] = ACTIONS(1313), + [anon_sym___attribute] = ACTIONS(1313), + [anon_sym___attribute__] = ACTIONS(1313), + [anon_sym___declspec] = ACTIONS(1313), + [anon_sym___cdecl] = ACTIONS(1313), + [anon_sym___clrcall] = ACTIONS(1313), + [anon_sym___stdcall] = ACTIONS(1313), + [anon_sym___fastcall] = ACTIONS(1313), + [anon_sym___thiscall] = ACTIONS(1313), + [anon_sym___vectorcall] = ACTIONS(1313), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_static] = ACTIONS(1313), + [anon_sym_auto] = ACTIONS(1313), + [anon_sym_register] = ACTIONS(1313), + [anon_sym_inline] = ACTIONS(1313), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1313), + [anon_sym_const] = ACTIONS(1313), + [anon_sym_volatile] = ACTIONS(1313), + [anon_sym_restrict] = ACTIONS(1313), + [anon_sym__Atomic] = ACTIONS(1313), + [anon_sym_in] = ACTIONS(1313), + [anon_sym_out] = ACTIONS(1313), + [anon_sym_inout] = ACTIONS(1313), + [anon_sym_bycopy] = ACTIONS(1313), + [anon_sym_byref] = ACTIONS(1313), + [anon_sym_oneway] = ACTIONS(1313), + [anon_sym__Nullable] = ACTIONS(1313), + [anon_sym__Nonnull] = ACTIONS(1313), + [anon_sym__Nullable_result] = ACTIONS(1313), + [anon_sym__Null_unspecified] = ACTIONS(1313), + [anon_sym___autoreleasing] = ACTIONS(1313), + [anon_sym___nullable] = ACTIONS(1313), + [anon_sym___nonnull] = ACTIONS(1313), + [anon_sym___strong] = ACTIONS(1313), + [anon_sym___weak] = ACTIONS(1313), + [anon_sym___bridge] = ACTIONS(1313), + [anon_sym___bridge_transfer] = ACTIONS(1313), + [anon_sym___bridge_retained] = ACTIONS(1313), + [anon_sym___unsafe_unretained] = ACTIONS(1313), + [anon_sym___block] = ACTIONS(1313), + [anon_sym___kindof] = ACTIONS(1313), + [anon_sym___unused] = ACTIONS(1313), + [anon_sym__Complex] = ACTIONS(1313), + [anon_sym___complex] = ACTIONS(1313), + [anon_sym_IBOutlet] = ACTIONS(1313), + [anon_sym_IBInspectable] = ACTIONS(1313), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1313), + [anon_sym_signed] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(1313), + [anon_sym_long] = ACTIONS(1313), + [anon_sym_short] = ACTIONS(1313), + [sym_primitive_type] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1313), + [anon_sym_struct] = ACTIONS(1313), + [anon_sym_union] = ACTIONS(1313), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_else] = ACTIONS(1313), + [anon_sym_switch] = ACTIONS(1313), + [anon_sym_case] = ACTIONS(1313), + [anon_sym_default] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1313), + [anon_sym_do] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_return] = ACTIONS(1313), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_goto] = ACTIONS(1313), + [anon_sym_DASH_DASH] = ACTIONS(1311), + [anon_sym_PLUS_PLUS] = ACTIONS(1311), + [anon_sym_sizeof] = ACTIONS(1313), + [sym_number_literal] = ACTIONS(1311), + [anon_sym_L_SQUOTE] = ACTIONS(1311), + [anon_sym_u_SQUOTE] = ACTIONS(1311), + [anon_sym_U_SQUOTE] = ACTIONS(1311), + [anon_sym_u8_SQUOTE] = ACTIONS(1311), + [anon_sym_SQUOTE] = ACTIONS(1311), + [anon_sym_L_DQUOTE] = ACTIONS(1311), + [anon_sym_u_DQUOTE] = ACTIONS(1311), + [anon_sym_U_DQUOTE] = ACTIONS(1311), + [anon_sym_u8_DQUOTE] = ACTIONS(1311), + [anon_sym_DQUOTE] = ACTIONS(1311), + [sym_true] = ACTIONS(1313), + [sym_false] = ACTIONS(1313), + [sym_null] = ACTIONS(1313), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1311), + [anon_sym_ATimport] = ACTIONS(1311), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1313), + [anon_sym_ATcompatibility_alias] = ACTIONS(1311), + [anon_sym_ATprotocol] = ACTIONS(1311), + [anon_sym_ATclass] = ACTIONS(1311), + [anon_sym_ATinterface] = ACTIONS(1311), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1313), + [sym_method_attribute_specifier] = ACTIONS(1313), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1313), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1313), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1313), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1313), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1313), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1313), + [anon_sym_NS_AVAILABLE] = ACTIONS(1313), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1313), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1313), + [anon_sym_API_AVAILABLE] = ACTIONS(1313), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1313), + [anon_sym_API_DEPRECATED] = ACTIONS(1313), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1313), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1313), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1313), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1313), + [anon_sym___deprecated_msg] = ACTIONS(1313), + [anon_sym___deprecated_enum_msg] = ACTIONS(1313), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1313), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1313), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1313), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1313), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1313), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1313), + [anon_sym_ATimplementation] = ACTIONS(1311), + [anon_sym_NS_ENUM] = ACTIONS(1313), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1313), + [anon_sym_NS_OPTIONS] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym___typeof] = ACTIONS(1313), + [anon_sym___typeof__] = ACTIONS(1313), + [sym_self] = ACTIONS(1313), + [sym_super] = ACTIONS(1313), + [sym_nil] = ACTIONS(1313), + [sym_id] = ACTIONS(1313), + [sym_instancetype] = ACTIONS(1313), + [sym_Class] = ACTIONS(1313), + [sym_SEL] = ACTIONS(1313), + [sym_IMP] = ACTIONS(1313), + [sym_BOOL] = ACTIONS(1313), + [sym_auto] = ACTIONS(1313), + [anon_sym_ATautoreleasepool] = ACTIONS(1311), + [anon_sym_ATsynchronized] = ACTIONS(1311), + [anon_sym_ATtry] = ACTIONS(1311), + [anon_sym_ATcatch] = ACTIONS(1311), + [anon_sym_ATfinally] = ACTIONS(1311), + [anon_sym_ATthrow] = ACTIONS(1311), + [anon_sym_ATselector] = ACTIONS(1311), + [anon_sym_ATencode] = ACTIONS(1311), + [anon_sym_AT] = ACTIONS(1313), + [sym_YES] = ACTIONS(1313), + [sym_NO] = ACTIONS(1313), + [anon_sym___builtin_available] = ACTIONS(1313), + [anon_sym_ATavailable] = ACTIONS(1311), + [anon_sym_va_arg] = ACTIONS(1313), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [175] = { + [sym_identifier] = ACTIONS(1309), + [aux_sym_preproc_include_token1] = ACTIONS(1307), + [aux_sym_preproc_def_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token1] = ACTIONS(1309), + [aux_sym_preproc_if_token2] = ACTIONS(1309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1309), + [aux_sym_preproc_else_token1] = ACTIONS(1309), + [aux_sym_preproc_elif_token1] = ACTIONS(1309), + [anon_sym_LPAREN2] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1307), + [anon_sym_TILDE] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_typedef] = ACTIONS(1309), + [anon_sym_extern] = ACTIONS(1309), + [anon_sym___attribute] = ACTIONS(1309), + [anon_sym___attribute__] = ACTIONS(1309), + [anon_sym___declspec] = ACTIONS(1309), + [anon_sym___cdecl] = ACTIONS(1309), + [anon_sym___clrcall] = ACTIONS(1309), + [anon_sym___stdcall] = ACTIONS(1309), + [anon_sym___fastcall] = ACTIONS(1309), + [anon_sym___thiscall] = ACTIONS(1309), + [anon_sym___vectorcall] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_static] = ACTIONS(1309), + [anon_sym_auto] = ACTIONS(1309), + [anon_sym_register] = ACTIONS(1309), + [anon_sym_inline] = ACTIONS(1309), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1309), + [anon_sym_const] = ACTIONS(1309), + [anon_sym_volatile] = ACTIONS(1309), + [anon_sym_restrict] = ACTIONS(1309), + [anon_sym__Atomic] = ACTIONS(1309), + [anon_sym_in] = ACTIONS(1309), + [anon_sym_out] = ACTIONS(1309), + [anon_sym_inout] = ACTIONS(1309), + [anon_sym_bycopy] = ACTIONS(1309), + [anon_sym_byref] = ACTIONS(1309), + [anon_sym_oneway] = ACTIONS(1309), + [anon_sym__Nullable] = ACTIONS(1309), + [anon_sym__Nonnull] = ACTIONS(1309), + [anon_sym__Nullable_result] = ACTIONS(1309), + [anon_sym__Null_unspecified] = ACTIONS(1309), + [anon_sym___autoreleasing] = ACTIONS(1309), + [anon_sym___nullable] = ACTIONS(1309), + [anon_sym___nonnull] = ACTIONS(1309), + [anon_sym___strong] = ACTIONS(1309), + [anon_sym___weak] = ACTIONS(1309), + [anon_sym___bridge] = ACTIONS(1309), + [anon_sym___bridge_transfer] = ACTIONS(1309), + [anon_sym___bridge_retained] = ACTIONS(1309), + [anon_sym___unsafe_unretained] = ACTIONS(1309), + [anon_sym___block] = ACTIONS(1309), + [anon_sym___kindof] = ACTIONS(1309), + [anon_sym___unused] = ACTIONS(1309), + [anon_sym__Complex] = ACTIONS(1309), + [anon_sym___complex] = ACTIONS(1309), + [anon_sym_IBOutlet] = ACTIONS(1309), + [anon_sym_IBInspectable] = ACTIONS(1309), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(1309), + [anon_sym_unsigned] = ACTIONS(1309), + [anon_sym_long] = ACTIONS(1309), + [anon_sym_short] = ACTIONS(1309), + [sym_primitive_type] = ACTIONS(1309), + [anon_sym_enum] = ACTIONS(1309), + [anon_sym_struct] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1309), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_else] = ACTIONS(1309), + [anon_sym_switch] = ACTIONS(1309), + [anon_sym_case] = ACTIONS(1309), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_while] = ACTIONS(1309), + [anon_sym_do] = ACTIONS(1309), + [anon_sym_for] = ACTIONS(1309), + [anon_sym_return] = ACTIONS(1309), + [anon_sym_break] = ACTIONS(1309), + [anon_sym_continue] = ACTIONS(1309), + [anon_sym_goto] = ACTIONS(1309), + [anon_sym_DASH_DASH] = ACTIONS(1307), + [anon_sym_PLUS_PLUS] = ACTIONS(1307), + [anon_sym_sizeof] = ACTIONS(1309), + [sym_number_literal] = ACTIONS(1307), + [anon_sym_L_SQUOTE] = ACTIONS(1307), + [anon_sym_u_SQUOTE] = ACTIONS(1307), + [anon_sym_U_SQUOTE] = ACTIONS(1307), + [anon_sym_u8_SQUOTE] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1307), + [anon_sym_L_DQUOTE] = ACTIONS(1307), + [anon_sym_u_DQUOTE] = ACTIONS(1307), + [anon_sym_U_DQUOTE] = ACTIONS(1307), + [anon_sym_u8_DQUOTE] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym_true] = ACTIONS(1309), + [sym_false] = ACTIONS(1309), + [sym_null] = ACTIONS(1309), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1307), + [anon_sym_ATimport] = ACTIONS(1307), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1309), + [anon_sym_ATcompatibility_alias] = ACTIONS(1307), + [anon_sym_ATprotocol] = ACTIONS(1307), + [anon_sym_ATclass] = ACTIONS(1307), + [anon_sym_ATinterface] = ACTIONS(1307), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1309), + [sym_method_attribute_specifier] = ACTIONS(1309), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1309), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1309), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1309), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1309), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1309), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1309), + [anon_sym_NS_AVAILABLE] = ACTIONS(1309), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1309), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1309), + [anon_sym_API_AVAILABLE] = ACTIONS(1309), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1309), + [anon_sym_API_DEPRECATED] = ACTIONS(1309), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1309), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1309), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1309), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1309), + [anon_sym___deprecated_msg] = ACTIONS(1309), + [anon_sym___deprecated_enum_msg] = ACTIONS(1309), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1309), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1309), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1309), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1309), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1309), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1309), + [anon_sym_ATimplementation] = ACTIONS(1307), + [anon_sym_NS_ENUM] = ACTIONS(1309), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1309), + [anon_sym_NS_OPTIONS] = ACTIONS(1309), + [anon_sym_typeof] = ACTIONS(1309), + [anon_sym___typeof] = ACTIONS(1309), + [anon_sym___typeof__] = ACTIONS(1309), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1309), + [sym_nil] = ACTIONS(1309), + [sym_id] = ACTIONS(1309), + [sym_instancetype] = ACTIONS(1309), + [sym_Class] = ACTIONS(1309), + [sym_SEL] = ACTIONS(1309), + [sym_IMP] = ACTIONS(1309), + [sym_BOOL] = ACTIONS(1309), + [sym_auto] = ACTIONS(1309), + [anon_sym_ATautoreleasepool] = ACTIONS(1307), + [anon_sym_ATsynchronized] = ACTIONS(1307), + [anon_sym_ATtry] = ACTIONS(1307), + [anon_sym_ATcatch] = ACTIONS(1307), + [anon_sym_ATfinally] = ACTIONS(1307), + [anon_sym_ATthrow] = ACTIONS(1307), + [anon_sym_ATselector] = ACTIONS(1307), + [anon_sym_ATencode] = ACTIONS(1307), + [anon_sym_AT] = ACTIONS(1309), + [sym_YES] = ACTIONS(1309), + [sym_NO] = ACTIONS(1309), + [anon_sym___builtin_available] = ACTIONS(1309), + [anon_sym_ATavailable] = ACTIONS(1307), + [anon_sym_va_arg] = ACTIONS(1309), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [176] = { + [sym_identifier] = ACTIONS(1225), + [aux_sym_preproc_include_token1] = ACTIONS(1223), + [aux_sym_preproc_def_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token1] = ACTIONS(1225), + [aux_sym_preproc_if_token2] = ACTIONS(1225), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1225), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1225), + [aux_sym_preproc_else_token1] = ACTIONS(1225), + [aux_sym_preproc_elif_token1] = ACTIONS(1225), + [anon_sym_LPAREN2] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1223), + [anon_sym_TILDE] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1223), + [anon_sym_CARET] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym_typedef] = ACTIONS(1225), + [anon_sym_extern] = ACTIONS(1225), + [anon_sym___attribute] = ACTIONS(1225), + [anon_sym___attribute__] = ACTIONS(1225), + [anon_sym___declspec] = ACTIONS(1225), + [anon_sym___cdecl] = ACTIONS(1225), + [anon_sym___clrcall] = ACTIONS(1225), + [anon_sym___stdcall] = ACTIONS(1225), + [anon_sym___fastcall] = ACTIONS(1225), + [anon_sym___thiscall] = ACTIONS(1225), + [anon_sym___vectorcall] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1223), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_auto] = ACTIONS(1225), + [anon_sym_register] = ACTIONS(1225), + [anon_sym_inline] = ACTIONS(1225), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_volatile] = ACTIONS(1225), + [anon_sym_restrict] = ACTIONS(1225), + [anon_sym__Atomic] = ACTIONS(1225), + [anon_sym_in] = ACTIONS(1225), + [anon_sym_out] = ACTIONS(1225), + [anon_sym_inout] = ACTIONS(1225), + [anon_sym_bycopy] = ACTIONS(1225), + [anon_sym_byref] = ACTIONS(1225), + [anon_sym_oneway] = ACTIONS(1225), + [anon_sym__Nullable] = ACTIONS(1225), + [anon_sym__Nonnull] = ACTIONS(1225), + [anon_sym__Nullable_result] = ACTIONS(1225), + [anon_sym__Null_unspecified] = ACTIONS(1225), + [anon_sym___autoreleasing] = ACTIONS(1225), + [anon_sym___nullable] = ACTIONS(1225), + [anon_sym___nonnull] = ACTIONS(1225), + [anon_sym___strong] = ACTIONS(1225), + [anon_sym___weak] = ACTIONS(1225), + [anon_sym___bridge] = ACTIONS(1225), + [anon_sym___bridge_transfer] = ACTIONS(1225), + [anon_sym___bridge_retained] = ACTIONS(1225), + [anon_sym___unsafe_unretained] = ACTIONS(1225), + [anon_sym___block] = ACTIONS(1225), + [anon_sym___kindof] = ACTIONS(1225), + [anon_sym___unused] = ACTIONS(1225), + [anon_sym__Complex] = ACTIONS(1225), + [anon_sym___complex] = ACTIONS(1225), + [anon_sym_IBOutlet] = ACTIONS(1225), + [anon_sym_IBInspectable] = ACTIONS(1225), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(1225), + [anon_sym_unsigned] = ACTIONS(1225), + [anon_sym_long] = ACTIONS(1225), + [anon_sym_short] = ACTIONS(1225), + [sym_primitive_type] = ACTIONS(1225), + [anon_sym_enum] = ACTIONS(1225), + [anon_sym_struct] = ACTIONS(1225), + [anon_sym_union] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_else] = ACTIONS(1225), + [anon_sym_switch] = ACTIONS(1225), + [anon_sym_case] = ACTIONS(1225), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_goto] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1223), + [anon_sym_PLUS_PLUS] = ACTIONS(1223), + [anon_sym_sizeof] = ACTIONS(1225), + [sym_number_literal] = ACTIONS(1223), + [anon_sym_L_SQUOTE] = ACTIONS(1223), + [anon_sym_u_SQUOTE] = ACTIONS(1223), + [anon_sym_U_SQUOTE] = ACTIONS(1223), + [anon_sym_u8_SQUOTE] = ACTIONS(1223), + [anon_sym_SQUOTE] = ACTIONS(1223), + [anon_sym_L_DQUOTE] = ACTIONS(1223), + [anon_sym_u_DQUOTE] = ACTIONS(1223), + [anon_sym_U_DQUOTE] = ACTIONS(1223), + [anon_sym_u8_DQUOTE] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym_true] = ACTIONS(1225), + [sym_false] = ACTIONS(1225), + [sym_null] = ACTIONS(1225), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1223), + [anon_sym_ATimport] = ACTIONS(1223), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1225), + [anon_sym_ATcompatibility_alias] = ACTIONS(1223), + [anon_sym_ATprotocol] = ACTIONS(1223), + [anon_sym_ATclass] = ACTIONS(1223), + [anon_sym_ATinterface] = ACTIONS(1223), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1225), + [sym_method_attribute_specifier] = ACTIONS(1225), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1225), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1225), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1225), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1225), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1225), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1225), + [anon_sym_NS_AVAILABLE] = ACTIONS(1225), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1225), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1225), + [anon_sym_API_AVAILABLE] = ACTIONS(1225), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1225), + [anon_sym_API_DEPRECATED] = ACTIONS(1225), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1225), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1225), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1225), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1225), + [anon_sym___deprecated_msg] = ACTIONS(1225), + [anon_sym___deprecated_enum_msg] = ACTIONS(1225), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1225), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1225), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1225), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1225), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1225), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1225), + [anon_sym_ATimplementation] = ACTIONS(1223), + [anon_sym_NS_ENUM] = ACTIONS(1225), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1225), + [anon_sym_NS_OPTIONS] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym___typeof] = ACTIONS(1225), + [anon_sym___typeof__] = ACTIONS(1225), + [sym_self] = ACTIONS(1225), + [sym_super] = ACTIONS(1225), + [sym_nil] = ACTIONS(1225), + [sym_id] = ACTIONS(1225), + [sym_instancetype] = ACTIONS(1225), + [sym_Class] = ACTIONS(1225), + [sym_SEL] = ACTIONS(1225), + [sym_IMP] = ACTIONS(1225), + [sym_BOOL] = ACTIONS(1225), + [sym_auto] = ACTIONS(1225), + [anon_sym_ATautoreleasepool] = ACTIONS(1223), + [anon_sym_ATsynchronized] = ACTIONS(1223), + [anon_sym_ATtry] = ACTIONS(1223), + [anon_sym_ATcatch] = ACTIONS(1223), + [anon_sym_ATfinally] = ACTIONS(1223), + [anon_sym_ATthrow] = ACTIONS(1223), + [anon_sym_ATselector] = ACTIONS(1223), + [anon_sym_ATencode] = ACTIONS(1223), + [anon_sym_AT] = ACTIONS(1225), + [sym_YES] = ACTIONS(1225), + [sym_NO] = ACTIONS(1225), + [anon_sym___builtin_available] = ACTIONS(1225), + [anon_sym_ATavailable] = ACTIONS(1223), + [anon_sym_va_arg] = ACTIONS(1225), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [177] = { + [ts_builtin_sym_end] = ACTIONS(1523), [sym_identifier] = ACTIONS(1525), - [aux_sym_preproc_include_token1] = ACTIONS(1527), - [aux_sym_preproc_def_token1] = ACTIONS(1527), + [aux_sym_preproc_include_token1] = ACTIONS(1523), + [aux_sym_preproc_def_token1] = ACTIONS(1523), + [anon_sym_RPAREN] = ACTIONS(1523), [aux_sym_preproc_if_token1] = ACTIONS(1525), - [aux_sym_preproc_if_token2] = ACTIONS(1525), [aux_sym_preproc_ifdef_token1] = ACTIONS(1525), [aux_sym_preproc_ifdef_token2] = ACTIONS(1525), - [aux_sym_preproc_else_token1] = ACTIONS(1525), - [aux_sym_preproc_elif_token1] = ACTIONS(1525), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_LPAREN2] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), [anon_sym_DASH] = ACTIONS(1525), [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_CARET] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1523), [anon_sym_typedef] = ACTIONS(1525), [anon_sym_extern] = ACTIONS(1525), [anon_sym___attribute] = ACTIONS(1525), @@ -55722,8 +56812,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1525), [anon_sym___thiscall] = ACTIONS(1525), [anon_sym___vectorcall] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_LBRACK] = ACTIONS(1523), [anon_sym_static] = ACTIONS(1525), [anon_sym_auto] = ACTIONS(1525), [anon_sym_register] = ACTIONS(1525), @@ -55766,9 +56857,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1525), [sym_primitive_type] = ACTIONS(1525), [anon_sym_enum] = ACTIONS(1525), - [anon_sym_NS_ENUM] = ACTIONS(1525), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1525), - [anon_sym_NS_OPTIONS] = ACTIONS(1525), [anon_sym_struct] = ACTIONS(1525), [anon_sym_union] = ACTIONS(1525), [anon_sym_if] = ACTIONS(1525), @@ -55783,31 +56871,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1525), [anon_sym_continue] = ACTIONS(1525), [anon_sym_goto] = ACTIONS(1525), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1527), - [anon_sym_u_SQUOTE] = ACTIONS(1527), - [anon_sym_U_SQUOTE] = ACTIONS(1527), - [anon_sym_u8_SQUOTE] = ACTIONS(1527), - [anon_sym_SQUOTE] = ACTIONS(1527), - [anon_sym_L_DQUOTE] = ACTIONS(1527), - [anon_sym_u_DQUOTE] = ACTIONS(1527), - [anon_sym_U_DQUOTE] = ACTIONS(1527), - [anon_sym_u8_DQUOTE] = ACTIONS(1527), - [anon_sym_DQUOTE] = ACTIONS(1527), + [sym_number_literal] = ACTIONS(1523), + [anon_sym_L_SQUOTE] = ACTIONS(1523), + [anon_sym_u_SQUOTE] = ACTIONS(1523), + [anon_sym_U_SQUOTE] = ACTIONS(1523), + [anon_sym_u8_SQUOTE] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_L_DQUOTE] = ACTIONS(1523), + [anon_sym_u_DQUOTE] = ACTIONS(1523), + [anon_sym_U_DQUOTE] = ACTIONS(1523), + [anon_sym_u8_DQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1523), [sym_true] = ACTIONS(1525), [sym_false] = ACTIONS(1525), [sym_null] = ACTIONS(1525), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1527), - [anon_sym_ATimport] = ACTIONS(1527), + [anon_sym_POUNDimport] = ACTIONS(1523), + [anon_sym_ATimport] = ACTIONS(1523), [sym__ns_assume_nonnull_declaration] = ACTIONS(1525), - [anon_sym_ATcompatibility_alias] = ACTIONS(1527), - [anon_sym_ATprotocol] = ACTIONS(1527), - [anon_sym_ATclass] = ACTIONS(1527), - [anon_sym_ATinterface] = ACTIONS(1527), + [anon_sym_ATcompatibility_alias] = ACTIONS(1523), + [anon_sym_ATprotocol] = ACTIONS(1523), + [anon_sym_ATclass] = ACTIONS(1523), + [anon_sym_ATinterface] = ACTIONS(1523), [sym_class_interface_attribute_sepcifier] = ACTIONS(1525), [sym_method_attribute_specifier] = ACTIONS(1525), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1525), @@ -55834,7 +56922,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1525), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1525), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1525), - [anon_sym_ATimplementation] = ACTIONS(1527), + [anon_sym_ATimplementation] = ACTIONS(1523), + [anon_sym_NS_ENUM] = ACTIONS(1525), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1525), + [anon_sym_NS_OPTIONS] = ACTIONS(1525), [anon_sym_typeof] = ACTIONS(1525), [anon_sym___typeof] = ACTIONS(1525), [anon_sym___typeof__] = ACTIONS(1525), @@ -55848,46 +56939,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1525), [sym_BOOL] = ACTIONS(1525), [sym_auto] = ACTIONS(1525), - [anon_sym_ATautoreleasepool] = ACTIONS(1527), - [anon_sym_ATsynchronized] = ACTIONS(1527), - [anon_sym_ATtry] = ACTIONS(1527), - [anon_sym_ATcatch] = ACTIONS(1527), - [anon_sym_ATfinally] = ACTIONS(1527), - [anon_sym_ATthrow] = ACTIONS(1527), - [anon_sym_ATselector] = ACTIONS(1527), - [anon_sym_ATencode] = ACTIONS(1527), + [anon_sym_ATautoreleasepool] = ACTIONS(1523), + [anon_sym_ATsynchronized] = ACTIONS(1523), + [anon_sym_ATtry] = ACTIONS(1523), + [anon_sym_ATcatch] = ACTIONS(1523), + [anon_sym_ATfinally] = ACTIONS(1523), + [anon_sym_ATthrow] = ACTIONS(1523), + [anon_sym_ATselector] = ACTIONS(1523), + [anon_sym_ATencode] = ACTIONS(1523), [anon_sym_AT] = ACTIONS(1525), [sym_YES] = ACTIONS(1525), [sym_NO] = ACTIONS(1525), [anon_sym___builtin_available] = ACTIONS(1525), - [anon_sym_ATavailable] = ACTIONS(1527), + [anon_sym_ATavailable] = ACTIONS(1523), [anon_sym_va_arg] = ACTIONS(1525), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [172] = { + [178] = { + [ts_builtin_sym_end] = ACTIONS(1527), [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_include_token1] = ACTIONS(1531), - [aux_sym_preproc_def_token1] = ACTIONS(1531), + [aux_sym_preproc_include_token1] = ACTIONS(1527), + [aux_sym_preproc_def_token1] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(1527), [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_if_token2] = ACTIONS(1529), [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [aux_sym_preproc_else_token1] = ACTIONS(1529), - [aux_sym_preproc_elif_token1] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), [anon_sym_DASH] = ACTIONS(1529), [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_CARET] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_CARET] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), [anon_sym_typedef] = ACTIONS(1529), [anon_sym_extern] = ACTIONS(1529), [anon_sym___attribute] = ACTIONS(1529), @@ -55899,8 +56989,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1529), [anon_sym___thiscall] = ACTIONS(1529), [anon_sym___vectorcall] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1527), [anon_sym_static] = ACTIONS(1529), [anon_sym_auto] = ACTIONS(1529), [anon_sym_register] = ACTIONS(1529), @@ -55943,9 +57034,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1529), [sym_primitive_type] = ACTIONS(1529), [anon_sym_enum] = ACTIONS(1529), - [anon_sym_NS_ENUM] = ACTIONS(1529), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1529), - [anon_sym_NS_OPTIONS] = ACTIONS(1529), [anon_sym_struct] = ACTIONS(1529), [anon_sym_union] = ACTIONS(1529), [anon_sym_if] = ACTIONS(1529), @@ -55960,31 +57048,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1529), [anon_sym_continue] = ACTIONS(1529), [anon_sym_goto] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), [anon_sym_sizeof] = ACTIONS(1529), - [sym_number_literal] = ACTIONS(1531), - [anon_sym_L_SQUOTE] = ACTIONS(1531), - [anon_sym_u_SQUOTE] = ACTIONS(1531), - [anon_sym_U_SQUOTE] = ACTIONS(1531), - [anon_sym_u8_SQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1527), + [anon_sym_u_SQUOTE] = ACTIONS(1527), + [anon_sym_U_SQUOTE] = ACTIONS(1527), + [anon_sym_u8_SQUOTE] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_L_DQUOTE] = ACTIONS(1527), + [anon_sym_u_DQUOTE] = ACTIONS(1527), + [anon_sym_U_DQUOTE] = ACTIONS(1527), + [anon_sym_u8_DQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), [sym_true] = ACTIONS(1529), [sym_false] = ACTIONS(1529), [sym_null] = ACTIONS(1529), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1531), - [anon_sym_ATimport] = ACTIONS(1531), + [anon_sym_POUNDimport] = ACTIONS(1527), + [anon_sym_ATimport] = ACTIONS(1527), [sym__ns_assume_nonnull_declaration] = ACTIONS(1529), - [anon_sym_ATcompatibility_alias] = ACTIONS(1531), - [anon_sym_ATprotocol] = ACTIONS(1531), - [anon_sym_ATclass] = ACTIONS(1531), - [anon_sym_ATinterface] = ACTIONS(1531), + [anon_sym_ATcompatibility_alias] = ACTIONS(1527), + [anon_sym_ATprotocol] = ACTIONS(1527), + [anon_sym_ATclass] = ACTIONS(1527), + [anon_sym_ATinterface] = ACTIONS(1527), [sym_class_interface_attribute_sepcifier] = ACTIONS(1529), [sym_method_attribute_specifier] = ACTIONS(1529), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1529), @@ -56011,7 +57099,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1529), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1529), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1529), - [anon_sym_ATimplementation] = ACTIONS(1531), + [anon_sym_ATimplementation] = ACTIONS(1527), + [anon_sym_NS_ENUM] = ACTIONS(1529), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1529), + [anon_sym_NS_OPTIONS] = ACTIONS(1529), [anon_sym_typeof] = ACTIONS(1529), [anon_sym___typeof] = ACTIONS(1529), [anon_sym___typeof__] = ACTIONS(1529), @@ -56025,46 +57116,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1529), [sym_BOOL] = ACTIONS(1529), [sym_auto] = ACTIONS(1529), - [anon_sym_ATautoreleasepool] = ACTIONS(1531), - [anon_sym_ATsynchronized] = ACTIONS(1531), - [anon_sym_ATtry] = ACTIONS(1531), - [anon_sym_ATcatch] = ACTIONS(1531), - [anon_sym_ATfinally] = ACTIONS(1531), - [anon_sym_ATthrow] = ACTIONS(1531), - [anon_sym_ATselector] = ACTIONS(1531), - [anon_sym_ATencode] = ACTIONS(1531), + [anon_sym_ATautoreleasepool] = ACTIONS(1527), + [anon_sym_ATsynchronized] = ACTIONS(1527), + [anon_sym_ATtry] = ACTIONS(1527), + [anon_sym_ATcatch] = ACTIONS(1527), + [anon_sym_ATfinally] = ACTIONS(1527), + [anon_sym_ATthrow] = ACTIONS(1527), + [anon_sym_ATselector] = ACTIONS(1527), + [anon_sym_ATencode] = ACTIONS(1527), [anon_sym_AT] = ACTIONS(1529), [sym_YES] = ACTIONS(1529), [sym_NO] = ACTIONS(1529), [anon_sym___builtin_available] = ACTIONS(1529), - [anon_sym_ATavailable] = ACTIONS(1531), + [anon_sym_ATavailable] = ACTIONS(1527), [anon_sym_va_arg] = ACTIONS(1529), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [173] = { + [179] = { + [ts_builtin_sym_end] = ACTIONS(1531), [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1535), - [aux_sym_preproc_def_token1] = ACTIONS(1535), + [aux_sym_preproc_include_token1] = ACTIONS(1531), + [aux_sym_preproc_def_token1] = ACTIONS(1531), + [anon_sym_RPAREN] = ACTIONS(1531), [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [aux_sym_preproc_else_token1] = ACTIONS(1533), - [aux_sym_preproc_elif_token1] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_LPAREN2] = ACTIONS(1531), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), [anon_sym_DASH] = ACTIONS(1533), [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_CARET] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1531), [anon_sym_typedef] = ACTIONS(1533), [anon_sym_extern] = ACTIONS(1533), [anon_sym___attribute] = ACTIONS(1533), @@ -56076,8 +57166,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1533), [anon_sym___thiscall] = ACTIONS(1533), [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1535), + [anon_sym_LBRACE] = ACTIONS(1531), + [anon_sym_RBRACE] = ACTIONS(1531), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(1533), [anon_sym_auto] = ACTIONS(1533), [anon_sym_register] = ACTIONS(1533), @@ -56120,9 +57211,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1533), [sym_primitive_type] = ACTIONS(1533), [anon_sym_enum] = ACTIONS(1533), - [anon_sym_NS_ENUM] = ACTIONS(1533), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1533), - [anon_sym_NS_OPTIONS] = ACTIONS(1533), [anon_sym_struct] = ACTIONS(1533), [anon_sym_union] = ACTIONS(1533), [anon_sym_if] = ACTIONS(1533), @@ -56137,31 +57225,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1533), [anon_sym_continue] = ACTIONS(1533), [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), + [sym_number_literal] = ACTIONS(1531), + [anon_sym_L_SQUOTE] = ACTIONS(1531), + [anon_sym_u_SQUOTE] = ACTIONS(1531), + [anon_sym_U_SQUOTE] = ACTIONS(1531), + [anon_sym_u8_SQUOTE] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), [sym_true] = ACTIONS(1533), [sym_false] = ACTIONS(1533), [sym_null] = ACTIONS(1533), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1535), - [anon_sym_ATimport] = ACTIONS(1535), + [anon_sym_POUNDimport] = ACTIONS(1531), + [anon_sym_ATimport] = ACTIONS(1531), [sym__ns_assume_nonnull_declaration] = ACTIONS(1533), - [anon_sym_ATcompatibility_alias] = ACTIONS(1535), - [anon_sym_ATprotocol] = ACTIONS(1535), - [anon_sym_ATclass] = ACTIONS(1535), - [anon_sym_ATinterface] = ACTIONS(1535), + [anon_sym_ATcompatibility_alias] = ACTIONS(1531), + [anon_sym_ATprotocol] = ACTIONS(1531), + [anon_sym_ATclass] = ACTIONS(1531), + [anon_sym_ATinterface] = ACTIONS(1531), [sym_class_interface_attribute_sepcifier] = ACTIONS(1533), [sym_method_attribute_specifier] = ACTIONS(1533), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1533), @@ -56188,7 +57276,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1533), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1533), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1533), - [anon_sym_ATimplementation] = ACTIONS(1535), + [anon_sym_ATimplementation] = ACTIONS(1531), + [anon_sym_NS_ENUM] = ACTIONS(1533), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1533), + [anon_sym_NS_OPTIONS] = ACTIONS(1533), [anon_sym_typeof] = ACTIONS(1533), [anon_sym___typeof] = ACTIONS(1533), [anon_sym___typeof__] = ACTIONS(1533), @@ -56202,6 +57293,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1533), [sym_BOOL] = ACTIONS(1533), [sym_auto] = ACTIONS(1533), + [anon_sym_ATautoreleasepool] = ACTIONS(1531), + [anon_sym_ATsynchronized] = ACTIONS(1531), + [anon_sym_ATtry] = ACTIONS(1531), + [anon_sym_ATcatch] = ACTIONS(1531), + [anon_sym_ATfinally] = ACTIONS(1531), + [anon_sym_ATthrow] = ACTIONS(1531), + [anon_sym_ATselector] = ACTIONS(1531), + [anon_sym_ATencode] = ACTIONS(1531), + [anon_sym_AT] = ACTIONS(1533), + [sym_YES] = ACTIONS(1533), + [sym_NO] = ACTIONS(1533), + [anon_sym___builtin_available] = ACTIONS(1533), + [anon_sym_ATavailable] = ACTIONS(1531), + [anon_sym_va_arg] = ACTIONS(1533), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [180] = { + [sym_identifier] = ACTIONS(1305), + [aux_sym_preproc_include_token1] = ACTIONS(1303), + [aux_sym_preproc_def_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token1] = ACTIONS(1305), + [aux_sym_preproc_if_token2] = ACTIONS(1305), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1305), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1305), + [aux_sym_preproc_else_token1] = ACTIONS(1305), + [aux_sym_preproc_elif_token1] = ACTIONS(1305), + [anon_sym_LPAREN2] = ACTIONS(1303), + [anon_sym_BANG] = ACTIONS(1303), + [anon_sym_TILDE] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(1305), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_CARET] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1303), + [anon_sym_typedef] = ACTIONS(1305), + [anon_sym_extern] = ACTIONS(1305), + [anon_sym___attribute] = ACTIONS(1305), + [anon_sym___attribute__] = ACTIONS(1305), + [anon_sym___declspec] = ACTIONS(1305), + [anon_sym___cdecl] = ACTIONS(1305), + [anon_sym___clrcall] = ACTIONS(1305), + [anon_sym___stdcall] = ACTIONS(1305), + [anon_sym___fastcall] = ACTIONS(1305), + [anon_sym___thiscall] = ACTIONS(1305), + [anon_sym___vectorcall] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1305), + [anon_sym_auto] = ACTIONS(1305), + [anon_sym_register] = ACTIONS(1305), + [anon_sym_inline] = ACTIONS(1305), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1305), + [anon_sym_const] = ACTIONS(1305), + [anon_sym_volatile] = ACTIONS(1305), + [anon_sym_restrict] = ACTIONS(1305), + [anon_sym__Atomic] = ACTIONS(1305), + [anon_sym_in] = ACTIONS(1305), + [anon_sym_out] = ACTIONS(1305), + [anon_sym_inout] = ACTIONS(1305), + [anon_sym_bycopy] = ACTIONS(1305), + [anon_sym_byref] = ACTIONS(1305), + [anon_sym_oneway] = ACTIONS(1305), + [anon_sym__Nullable] = ACTIONS(1305), + [anon_sym__Nonnull] = ACTIONS(1305), + [anon_sym__Nullable_result] = ACTIONS(1305), + [anon_sym__Null_unspecified] = ACTIONS(1305), + [anon_sym___autoreleasing] = ACTIONS(1305), + [anon_sym___nullable] = ACTIONS(1305), + [anon_sym___nonnull] = ACTIONS(1305), + [anon_sym___strong] = ACTIONS(1305), + [anon_sym___weak] = ACTIONS(1305), + [anon_sym___bridge] = ACTIONS(1305), + [anon_sym___bridge_transfer] = ACTIONS(1305), + [anon_sym___bridge_retained] = ACTIONS(1305), + [anon_sym___unsafe_unretained] = ACTIONS(1305), + [anon_sym___block] = ACTIONS(1305), + [anon_sym___kindof] = ACTIONS(1305), + [anon_sym___unused] = ACTIONS(1305), + [anon_sym__Complex] = ACTIONS(1305), + [anon_sym___complex] = ACTIONS(1305), + [anon_sym_IBOutlet] = ACTIONS(1305), + [anon_sym_IBInspectable] = ACTIONS(1305), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1305), + [anon_sym_signed] = ACTIONS(1305), + [anon_sym_unsigned] = ACTIONS(1305), + [anon_sym_long] = ACTIONS(1305), + [anon_sym_short] = ACTIONS(1305), + [sym_primitive_type] = ACTIONS(1305), + [anon_sym_enum] = ACTIONS(1305), + [anon_sym_struct] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1305), + [anon_sym_if] = ACTIONS(1305), + [anon_sym_else] = ACTIONS(1305), + [anon_sym_switch] = ACTIONS(1305), + [anon_sym_case] = ACTIONS(1305), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_do] = ACTIONS(1305), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_return] = ACTIONS(1305), + [anon_sym_break] = ACTIONS(1305), + [anon_sym_continue] = ACTIONS(1305), + [anon_sym_goto] = ACTIONS(1305), + [anon_sym_DASH_DASH] = ACTIONS(1303), + [anon_sym_PLUS_PLUS] = ACTIONS(1303), + [anon_sym_sizeof] = ACTIONS(1305), + [sym_number_literal] = ACTIONS(1303), + [anon_sym_L_SQUOTE] = ACTIONS(1303), + [anon_sym_u_SQUOTE] = ACTIONS(1303), + [anon_sym_U_SQUOTE] = ACTIONS(1303), + [anon_sym_u8_SQUOTE] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(1303), + [anon_sym_L_DQUOTE] = ACTIONS(1303), + [anon_sym_u_DQUOTE] = ACTIONS(1303), + [anon_sym_U_DQUOTE] = ACTIONS(1303), + [anon_sym_u8_DQUOTE] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1303), + [sym_true] = ACTIONS(1305), + [sym_false] = ACTIONS(1305), + [sym_null] = ACTIONS(1305), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1303), + [anon_sym_ATimport] = ACTIONS(1303), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1305), + [anon_sym_ATcompatibility_alias] = ACTIONS(1303), + [anon_sym_ATprotocol] = ACTIONS(1303), + [anon_sym_ATclass] = ACTIONS(1303), + [anon_sym_ATinterface] = ACTIONS(1303), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1305), + [sym_method_attribute_specifier] = ACTIONS(1305), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1305), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1305), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1305), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1305), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1305), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1305), + [anon_sym_NS_AVAILABLE] = ACTIONS(1305), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1305), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1305), + [anon_sym_API_AVAILABLE] = ACTIONS(1305), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1305), + [anon_sym_API_DEPRECATED] = ACTIONS(1305), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1305), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1305), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1305), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1305), + [anon_sym___deprecated_msg] = ACTIONS(1305), + [anon_sym___deprecated_enum_msg] = ACTIONS(1305), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1305), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1305), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1305), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1305), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1305), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1305), + [anon_sym_ATimplementation] = ACTIONS(1303), + [anon_sym_NS_ENUM] = ACTIONS(1305), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1305), + [anon_sym_NS_OPTIONS] = ACTIONS(1305), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym___typeof] = ACTIONS(1305), + [anon_sym___typeof__] = ACTIONS(1305), + [sym_self] = ACTIONS(1305), + [sym_super] = ACTIONS(1305), + [sym_nil] = ACTIONS(1305), + [sym_id] = ACTIONS(1305), + [sym_instancetype] = ACTIONS(1305), + [sym_Class] = ACTIONS(1305), + [sym_SEL] = ACTIONS(1305), + [sym_IMP] = ACTIONS(1305), + [sym_BOOL] = ACTIONS(1305), + [sym_auto] = ACTIONS(1305), + [anon_sym_ATautoreleasepool] = ACTIONS(1303), + [anon_sym_ATsynchronized] = ACTIONS(1303), + [anon_sym_ATtry] = ACTIONS(1303), + [anon_sym_ATcatch] = ACTIONS(1303), + [anon_sym_ATfinally] = ACTIONS(1303), + [anon_sym_ATthrow] = ACTIONS(1303), + [anon_sym_ATselector] = ACTIONS(1303), + [anon_sym_ATencode] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [sym_YES] = ACTIONS(1305), + [sym_NO] = ACTIONS(1305), + [anon_sym___builtin_available] = ACTIONS(1305), + [anon_sym_ATavailable] = ACTIONS(1303), + [anon_sym_va_arg] = ACTIONS(1305), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [181] = { + [ts_builtin_sym_end] = ACTIONS(1535), + [sym_identifier] = ACTIONS(1537), + [aux_sym_preproc_include_token1] = ACTIONS(1535), + [aux_sym_preproc_def_token1] = ACTIONS(1535), + [anon_sym_RPAREN] = ACTIONS(1535), + [aux_sym_preproc_if_token1] = ACTIONS(1537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1537), + [anon_sym_LPAREN2] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_typedef] = ACTIONS(1537), + [anon_sym_extern] = ACTIONS(1537), + [anon_sym___attribute] = ACTIONS(1537), + [anon_sym___attribute__] = ACTIONS(1537), + [anon_sym___declspec] = ACTIONS(1537), + [anon_sym___cdecl] = ACTIONS(1537), + [anon_sym___clrcall] = ACTIONS(1537), + [anon_sym___stdcall] = ACTIONS(1537), + [anon_sym___fastcall] = ACTIONS(1537), + [anon_sym___thiscall] = ACTIONS(1537), + [anon_sym___vectorcall] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1535), + [anon_sym_RBRACE] = ACTIONS(1535), + [anon_sym_LBRACK] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_auto] = ACTIONS(1537), + [anon_sym_register] = ACTIONS(1537), + [anon_sym_inline] = ACTIONS(1537), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_volatile] = ACTIONS(1537), + [anon_sym_restrict] = ACTIONS(1537), + [anon_sym__Atomic] = ACTIONS(1537), + [anon_sym_in] = ACTIONS(1537), + [anon_sym_out] = ACTIONS(1537), + [anon_sym_inout] = ACTIONS(1537), + [anon_sym_bycopy] = ACTIONS(1537), + [anon_sym_byref] = ACTIONS(1537), + [anon_sym_oneway] = ACTIONS(1537), + [anon_sym__Nullable] = ACTIONS(1537), + [anon_sym__Nonnull] = ACTIONS(1537), + [anon_sym__Nullable_result] = ACTIONS(1537), + [anon_sym__Null_unspecified] = ACTIONS(1537), + [anon_sym___autoreleasing] = ACTIONS(1537), + [anon_sym___nullable] = ACTIONS(1537), + [anon_sym___nonnull] = ACTIONS(1537), + [anon_sym___strong] = ACTIONS(1537), + [anon_sym___weak] = ACTIONS(1537), + [anon_sym___bridge] = ACTIONS(1537), + [anon_sym___bridge_transfer] = ACTIONS(1537), + [anon_sym___bridge_retained] = ACTIONS(1537), + [anon_sym___unsafe_unretained] = ACTIONS(1537), + [anon_sym___block] = ACTIONS(1537), + [anon_sym___kindof] = ACTIONS(1537), + [anon_sym___unused] = ACTIONS(1537), + [anon_sym__Complex] = ACTIONS(1537), + [anon_sym___complex] = ACTIONS(1537), + [anon_sym_IBOutlet] = ACTIONS(1537), + [anon_sym_IBInspectable] = ACTIONS(1537), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1537), + [anon_sym_signed] = ACTIONS(1537), + [anon_sym_unsigned] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [sym_primitive_type] = ACTIONS(1537), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_struct] = ACTIONS(1537), + [anon_sym_union] = ACTIONS(1537), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_else] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_case] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_goto] = ACTIONS(1537), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_sizeof] = ACTIONS(1537), + [sym_number_literal] = ACTIONS(1535), + [anon_sym_L_SQUOTE] = ACTIONS(1535), + [anon_sym_u_SQUOTE] = ACTIONS(1535), + [anon_sym_U_SQUOTE] = ACTIONS(1535), + [anon_sym_u8_SQUOTE] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_L_DQUOTE] = ACTIONS(1535), + [anon_sym_u_DQUOTE] = ACTIONS(1535), + [anon_sym_U_DQUOTE] = ACTIONS(1535), + [anon_sym_u8_DQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1535), + [sym_true] = ACTIONS(1537), + [sym_false] = ACTIONS(1537), + [sym_null] = ACTIONS(1537), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1535), + [anon_sym_ATimport] = ACTIONS(1535), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1537), + [anon_sym_ATcompatibility_alias] = ACTIONS(1535), + [anon_sym_ATprotocol] = ACTIONS(1535), + [anon_sym_ATclass] = ACTIONS(1535), + [anon_sym_ATinterface] = ACTIONS(1535), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1537), + [sym_method_attribute_specifier] = ACTIONS(1537), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1537), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1537), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1537), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1537), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1537), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1537), + [anon_sym_NS_AVAILABLE] = ACTIONS(1537), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1537), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1537), + [anon_sym_API_AVAILABLE] = ACTIONS(1537), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1537), + [anon_sym_API_DEPRECATED] = ACTIONS(1537), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1537), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1537), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1537), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1537), + [anon_sym___deprecated_msg] = ACTIONS(1537), + [anon_sym___deprecated_enum_msg] = ACTIONS(1537), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1537), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1537), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1537), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1537), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1537), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1537), + [anon_sym_ATimplementation] = ACTIONS(1535), + [anon_sym_NS_ENUM] = ACTIONS(1537), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1537), + [anon_sym_NS_OPTIONS] = ACTIONS(1537), + [anon_sym_typeof] = ACTIONS(1537), + [anon_sym___typeof] = ACTIONS(1537), + [anon_sym___typeof__] = ACTIONS(1537), + [sym_self] = ACTIONS(1537), + [sym_super] = ACTIONS(1537), + [sym_nil] = ACTIONS(1537), + [sym_id] = ACTIONS(1537), + [sym_instancetype] = ACTIONS(1537), + [sym_Class] = ACTIONS(1537), + [sym_SEL] = ACTIONS(1537), + [sym_IMP] = ACTIONS(1537), + [sym_BOOL] = ACTIONS(1537), + [sym_auto] = ACTIONS(1537), [anon_sym_ATautoreleasepool] = ACTIONS(1535), [anon_sym_ATsynchronized] = ACTIONS(1535), [anon_sym_ATtry] = ACTIONS(1535), @@ -56210,189 +57655,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATthrow] = ACTIONS(1535), [anon_sym_ATselector] = ACTIONS(1535), [anon_sym_ATencode] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(1533), - [sym_YES] = ACTIONS(1533), - [sym_NO] = ACTIONS(1533), - [anon_sym___builtin_available] = ACTIONS(1533), + [anon_sym_AT] = ACTIONS(1537), + [sym_YES] = ACTIONS(1537), + [sym_NO] = ACTIONS(1537), + [anon_sym___builtin_available] = ACTIONS(1537), [anon_sym_ATavailable] = ACTIONS(1535), - [anon_sym_va_arg] = ACTIONS(1533), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [174] = { - [ts_builtin_sym_end] = ACTIONS(1537), - [sym_identifier] = ACTIONS(1539), - [aux_sym_preproc_include_token1] = ACTIONS(1537), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [aux_sym_preproc_if_token1] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_typedef] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym___attribute] = ACTIONS(1539), - [anon_sym___attribute__] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1539), - [anon_sym___cdecl] = ACTIONS(1539), - [anon_sym___clrcall] = ACTIONS(1539), - [anon_sym___stdcall] = ACTIONS(1539), - [anon_sym___fastcall] = ACTIONS(1539), - [anon_sym___thiscall] = ACTIONS(1539), - [anon_sym___vectorcall] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_auto] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_inline] = ACTIONS(1539), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_volatile] = ACTIONS(1539), - [anon_sym_restrict] = ACTIONS(1539), - [anon_sym__Atomic] = ACTIONS(1539), - [anon_sym_in] = ACTIONS(1539), - [anon_sym_out] = ACTIONS(1539), - [anon_sym_inout] = ACTIONS(1539), - [anon_sym_bycopy] = ACTIONS(1539), - [anon_sym_byref] = ACTIONS(1539), - [anon_sym_oneway] = ACTIONS(1539), - [anon_sym__Nullable] = ACTIONS(1539), - [anon_sym__Nonnull] = ACTIONS(1539), - [anon_sym__Nullable_result] = ACTIONS(1539), - [anon_sym__Null_unspecified] = ACTIONS(1539), - [anon_sym___autoreleasing] = ACTIONS(1539), - [anon_sym___nullable] = ACTIONS(1539), - [anon_sym___nonnull] = ACTIONS(1539), - [anon_sym___strong] = ACTIONS(1539), - [anon_sym___weak] = ACTIONS(1539), - [anon_sym___bridge] = ACTIONS(1539), - [anon_sym___bridge_transfer] = ACTIONS(1539), - [anon_sym___bridge_retained] = ACTIONS(1539), - [anon_sym___unsafe_unretained] = ACTIONS(1539), - [anon_sym___block] = ACTIONS(1539), - [anon_sym___kindof] = ACTIONS(1539), - [anon_sym___unused] = ACTIONS(1539), - [anon_sym__Complex] = ACTIONS(1539), - [anon_sym___complex] = ACTIONS(1539), - [anon_sym_IBOutlet] = ACTIONS(1539), - [anon_sym_IBInspectable] = ACTIONS(1539), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1539), - [anon_sym_signed] = ACTIONS(1539), - [anon_sym_unsigned] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_NS_ENUM] = ACTIONS(1539), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1539), - [anon_sym_NS_OPTIONS] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1539), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1539), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_goto] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1537), - [anon_sym_sizeof] = ACTIONS(1539), - [sym_number_literal] = ACTIONS(1537), - [anon_sym_L_SQUOTE] = ACTIONS(1537), - [anon_sym_u_SQUOTE] = ACTIONS(1537), - [anon_sym_U_SQUOTE] = ACTIONS(1537), - [anon_sym_u8_SQUOTE] = ACTIONS(1537), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_L_DQUOTE] = ACTIONS(1537), - [anon_sym_u_DQUOTE] = ACTIONS(1537), - [anon_sym_U_DQUOTE] = ACTIONS(1537), - [anon_sym_u8_DQUOTE] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym_true] = ACTIONS(1539), - [sym_false] = ACTIONS(1539), - [sym_null] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1537), - [anon_sym_ATimport] = ACTIONS(1537), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1539), - [anon_sym_ATcompatibility_alias] = ACTIONS(1537), - [anon_sym_ATprotocol] = ACTIONS(1537), - [anon_sym_ATclass] = ACTIONS(1537), - [anon_sym_ATinterface] = ACTIONS(1537), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1539), - [sym_method_attribute_specifier] = ACTIONS(1539), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1539), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE] = ACTIONS(1539), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_API_AVAILABLE] = ACTIONS(1539), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_API_DEPRECATED] = ACTIONS(1539), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1539), - [anon_sym___deprecated_msg] = ACTIONS(1539), - [anon_sym___deprecated_enum_msg] = ACTIONS(1539), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1539), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1539), - [anon_sym_ATimplementation] = ACTIONS(1537), - [anon_sym_typeof] = ACTIONS(1539), - [anon_sym___typeof] = ACTIONS(1539), - [anon_sym___typeof__] = ACTIONS(1539), - [sym_self] = ACTIONS(1539), - [sym_super] = ACTIONS(1539), - [sym_nil] = ACTIONS(1539), - [sym_id] = ACTIONS(1539), - [sym_instancetype] = ACTIONS(1539), - [sym_Class] = ACTIONS(1539), - [sym_SEL] = ACTIONS(1539), - [sym_IMP] = ACTIONS(1539), - [sym_BOOL] = ACTIONS(1539), - [sym_auto] = ACTIONS(1539), - [anon_sym_ATautoreleasepool] = ACTIONS(1537), - [anon_sym_ATsynchronized] = ACTIONS(1537), - [anon_sym_ATtry] = ACTIONS(1537), - [anon_sym_ATcatch] = ACTIONS(1537), - [anon_sym_ATfinally] = ACTIONS(1537), - [anon_sym_ATthrow] = ACTIONS(1537), - [anon_sym_ATselector] = ACTIONS(1537), - [anon_sym_ATencode] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1539), - [sym_YES] = ACTIONS(1539), - [sym_NO] = ACTIONS(1539), - [anon_sym___builtin_available] = ACTIONS(1539), - [anon_sym_ATavailable] = ACTIONS(1537), - [anon_sym_va_arg] = ACTIONS(1539), + [anon_sym_va_arg] = ACTIONS(1537), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -56400,25 +57668,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [175] = { + [182] = { + [sym_identifier] = ACTIONS(1301), + [aux_sym_preproc_include_token1] = ACTIONS(1299), + [aux_sym_preproc_def_token1] = ACTIONS(1299), + [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_if_token2] = ACTIONS(1301), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1301), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1301), + [aux_sym_preproc_else_token1] = ACTIONS(1301), + [aux_sym_preproc_elif_token1] = ACTIONS(1301), + [anon_sym_LPAREN2] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_CARET] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1299), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_typedef] = ACTIONS(1301), + [anon_sym_extern] = ACTIONS(1301), + [anon_sym___attribute] = ACTIONS(1301), + [anon_sym___attribute__] = ACTIONS(1301), + [anon_sym___declspec] = ACTIONS(1301), + [anon_sym___cdecl] = ACTIONS(1301), + [anon_sym___clrcall] = ACTIONS(1301), + [anon_sym___stdcall] = ACTIONS(1301), + [anon_sym___fastcall] = ACTIONS(1301), + [anon_sym___thiscall] = ACTIONS(1301), + [anon_sym___vectorcall] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_auto] = ACTIONS(1301), + [anon_sym_register] = ACTIONS(1301), + [anon_sym_inline] = ACTIONS(1301), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1301), + [anon_sym_const] = ACTIONS(1301), + [anon_sym_volatile] = ACTIONS(1301), + [anon_sym_restrict] = ACTIONS(1301), + [anon_sym__Atomic] = ACTIONS(1301), + [anon_sym_in] = ACTIONS(1301), + [anon_sym_out] = ACTIONS(1301), + [anon_sym_inout] = ACTIONS(1301), + [anon_sym_bycopy] = ACTIONS(1301), + [anon_sym_byref] = ACTIONS(1301), + [anon_sym_oneway] = ACTIONS(1301), + [anon_sym__Nullable] = ACTIONS(1301), + [anon_sym__Nonnull] = ACTIONS(1301), + [anon_sym__Nullable_result] = ACTIONS(1301), + [anon_sym__Null_unspecified] = ACTIONS(1301), + [anon_sym___autoreleasing] = ACTIONS(1301), + [anon_sym___nullable] = ACTIONS(1301), + [anon_sym___nonnull] = ACTIONS(1301), + [anon_sym___strong] = ACTIONS(1301), + [anon_sym___weak] = ACTIONS(1301), + [anon_sym___bridge] = ACTIONS(1301), + [anon_sym___bridge_transfer] = ACTIONS(1301), + [anon_sym___bridge_retained] = ACTIONS(1301), + [anon_sym___unsafe_unretained] = ACTIONS(1301), + [anon_sym___block] = ACTIONS(1301), + [anon_sym___kindof] = ACTIONS(1301), + [anon_sym___unused] = ACTIONS(1301), + [anon_sym__Complex] = ACTIONS(1301), + [anon_sym___complex] = ACTIONS(1301), + [anon_sym_IBOutlet] = ACTIONS(1301), + [anon_sym_IBInspectable] = ACTIONS(1301), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1301), + [anon_sym_signed] = ACTIONS(1301), + [anon_sym_unsigned] = ACTIONS(1301), + [anon_sym_long] = ACTIONS(1301), + [anon_sym_short] = ACTIONS(1301), + [sym_primitive_type] = ACTIONS(1301), + [anon_sym_enum] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(1301), + [anon_sym_union] = ACTIONS(1301), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_else] = ACTIONS(1301), + [anon_sym_switch] = ACTIONS(1301), + [anon_sym_case] = ACTIONS(1301), + [anon_sym_default] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1301), + [anon_sym_do] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_return] = ACTIONS(1301), + [anon_sym_break] = ACTIONS(1301), + [anon_sym_continue] = ACTIONS(1301), + [anon_sym_goto] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_sizeof] = ACTIONS(1301), + [sym_number_literal] = ACTIONS(1299), + [anon_sym_L_SQUOTE] = ACTIONS(1299), + [anon_sym_u_SQUOTE] = ACTIONS(1299), + [anon_sym_U_SQUOTE] = ACTIONS(1299), + [anon_sym_u8_SQUOTE] = ACTIONS(1299), + [anon_sym_SQUOTE] = ACTIONS(1299), + [anon_sym_L_DQUOTE] = ACTIONS(1299), + [anon_sym_u_DQUOTE] = ACTIONS(1299), + [anon_sym_U_DQUOTE] = ACTIONS(1299), + [anon_sym_u8_DQUOTE] = ACTIONS(1299), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_true] = ACTIONS(1301), + [sym_false] = ACTIONS(1301), + [sym_null] = ACTIONS(1301), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1299), + [anon_sym_ATimport] = ACTIONS(1299), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1301), + [anon_sym_ATcompatibility_alias] = ACTIONS(1299), + [anon_sym_ATprotocol] = ACTIONS(1299), + [anon_sym_ATclass] = ACTIONS(1299), + [anon_sym_ATinterface] = ACTIONS(1299), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1301), + [sym_method_attribute_specifier] = ACTIONS(1301), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1301), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1301), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1301), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1301), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1301), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1301), + [anon_sym_NS_AVAILABLE] = ACTIONS(1301), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1301), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1301), + [anon_sym_API_AVAILABLE] = ACTIONS(1301), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1301), + [anon_sym_API_DEPRECATED] = ACTIONS(1301), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1301), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1301), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1301), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1301), + [anon_sym___deprecated_msg] = ACTIONS(1301), + [anon_sym___deprecated_enum_msg] = ACTIONS(1301), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1301), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1301), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1301), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1301), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1301), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1301), + [anon_sym_ATimplementation] = ACTIONS(1299), + [anon_sym_NS_ENUM] = ACTIONS(1301), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1301), + [anon_sym_NS_OPTIONS] = ACTIONS(1301), + [anon_sym_typeof] = ACTIONS(1301), + [anon_sym___typeof] = ACTIONS(1301), + [anon_sym___typeof__] = ACTIONS(1301), + [sym_self] = ACTIONS(1301), + [sym_super] = ACTIONS(1301), + [sym_nil] = ACTIONS(1301), + [sym_id] = ACTIONS(1301), + [sym_instancetype] = ACTIONS(1301), + [sym_Class] = ACTIONS(1301), + [sym_SEL] = ACTIONS(1301), + [sym_IMP] = ACTIONS(1301), + [sym_BOOL] = ACTIONS(1301), + [sym_auto] = ACTIONS(1301), + [anon_sym_ATautoreleasepool] = ACTIONS(1299), + [anon_sym_ATsynchronized] = ACTIONS(1299), + [anon_sym_ATtry] = ACTIONS(1299), + [anon_sym_ATcatch] = ACTIONS(1299), + [anon_sym_ATfinally] = ACTIONS(1299), + [anon_sym_ATthrow] = ACTIONS(1299), + [anon_sym_ATselector] = ACTIONS(1299), + [anon_sym_ATencode] = ACTIONS(1299), + [anon_sym_AT] = ACTIONS(1301), + [sym_YES] = ACTIONS(1301), + [sym_NO] = ACTIONS(1301), + [anon_sym___builtin_available] = ACTIONS(1301), + [anon_sym_ATavailable] = ACTIONS(1299), + [anon_sym_va_arg] = ACTIONS(1301), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [183] = { + [ts_builtin_sym_end] = ACTIONS(1405), + [sym_identifier] = ACTIONS(1403), + [aux_sym_preproc_include_token1] = ACTIONS(1405), + [aux_sym_preproc_def_token1] = ACTIONS(1405), + [anon_sym_RPAREN] = ACTIONS(1405), + [aux_sym_preproc_if_token1] = ACTIONS(1403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1403), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(1403), + [anon_sym_STAR] = ACTIONS(1405), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_typedef] = ACTIONS(1403), + [anon_sym_extern] = ACTIONS(1403), + [anon_sym___attribute] = ACTIONS(1403), + [anon_sym___attribute__] = ACTIONS(1403), + [anon_sym___declspec] = ACTIONS(1403), + [anon_sym___cdecl] = ACTIONS(1403), + [anon_sym___clrcall] = ACTIONS(1403), + [anon_sym___stdcall] = ACTIONS(1403), + [anon_sym___fastcall] = ACTIONS(1403), + [anon_sym___thiscall] = ACTIONS(1403), + [anon_sym___vectorcall] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(1405), + [anon_sym_static] = ACTIONS(1403), + [anon_sym_auto] = ACTIONS(1403), + [anon_sym_register] = ACTIONS(1403), + [anon_sym_inline] = ACTIONS(1403), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1403), + [anon_sym_const] = ACTIONS(1403), + [anon_sym_volatile] = ACTIONS(1403), + [anon_sym_restrict] = ACTIONS(1403), + [anon_sym__Atomic] = ACTIONS(1403), + [anon_sym_in] = ACTIONS(1403), + [anon_sym_out] = ACTIONS(1403), + [anon_sym_inout] = ACTIONS(1403), + [anon_sym_bycopy] = ACTIONS(1403), + [anon_sym_byref] = ACTIONS(1403), + [anon_sym_oneway] = ACTIONS(1403), + [anon_sym__Nullable] = ACTIONS(1403), + [anon_sym__Nonnull] = ACTIONS(1403), + [anon_sym__Nullable_result] = ACTIONS(1403), + [anon_sym__Null_unspecified] = ACTIONS(1403), + [anon_sym___autoreleasing] = ACTIONS(1403), + [anon_sym___nullable] = ACTIONS(1403), + [anon_sym___nonnull] = ACTIONS(1403), + [anon_sym___strong] = ACTIONS(1403), + [anon_sym___weak] = ACTIONS(1403), + [anon_sym___bridge] = ACTIONS(1403), + [anon_sym___bridge_transfer] = ACTIONS(1403), + [anon_sym___bridge_retained] = ACTIONS(1403), + [anon_sym___unsafe_unretained] = ACTIONS(1403), + [anon_sym___block] = ACTIONS(1403), + [anon_sym___kindof] = ACTIONS(1403), + [anon_sym___unused] = ACTIONS(1403), + [anon_sym__Complex] = ACTIONS(1403), + [anon_sym___complex] = ACTIONS(1403), + [anon_sym_IBOutlet] = ACTIONS(1403), + [anon_sym_IBInspectable] = ACTIONS(1403), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1403), + [anon_sym_signed] = ACTIONS(1403), + [anon_sym_unsigned] = ACTIONS(1403), + [anon_sym_long] = ACTIONS(1403), + [anon_sym_short] = ACTIONS(1403), + [sym_primitive_type] = ACTIONS(1403), + [anon_sym_enum] = ACTIONS(1403), + [anon_sym_struct] = ACTIONS(1403), + [anon_sym_union] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1403), + [anon_sym_else] = ACTIONS(1403), + [anon_sym_switch] = ACTIONS(1403), + [anon_sym_case] = ACTIONS(1403), + [anon_sym_default] = ACTIONS(1403), + [anon_sym_while] = ACTIONS(1403), + [anon_sym_do] = ACTIONS(1403), + [anon_sym_for] = ACTIONS(1403), + [anon_sym_return] = ACTIONS(1403), + [anon_sym_break] = ACTIONS(1403), + [anon_sym_continue] = ACTIONS(1403), + [anon_sym_goto] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1403), + [sym_number_literal] = ACTIONS(1405), + [anon_sym_L_SQUOTE] = ACTIONS(1405), + [anon_sym_u_SQUOTE] = ACTIONS(1405), + [anon_sym_U_SQUOTE] = ACTIONS(1405), + [anon_sym_u8_SQUOTE] = ACTIONS(1405), + [anon_sym_SQUOTE] = ACTIONS(1405), + [anon_sym_L_DQUOTE] = ACTIONS(1405), + [anon_sym_u_DQUOTE] = ACTIONS(1405), + [anon_sym_U_DQUOTE] = ACTIONS(1405), + [anon_sym_u8_DQUOTE] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1405), + [sym_true] = ACTIONS(1403), + [sym_false] = ACTIONS(1403), + [sym_null] = ACTIONS(1403), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1405), + [anon_sym_ATimport] = ACTIONS(1405), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1403), + [anon_sym_ATcompatibility_alias] = ACTIONS(1405), + [anon_sym_ATprotocol] = ACTIONS(1405), + [anon_sym_ATclass] = ACTIONS(1405), + [anon_sym_ATinterface] = ACTIONS(1405), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1403), + [sym_method_attribute_specifier] = ACTIONS(1403), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1403), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1403), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1403), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1403), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1403), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1403), + [anon_sym_NS_AVAILABLE] = ACTIONS(1403), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1403), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1403), + [anon_sym_API_AVAILABLE] = ACTIONS(1403), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1403), + [anon_sym_API_DEPRECATED] = ACTIONS(1403), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1403), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1403), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1403), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1403), + [anon_sym___deprecated_msg] = ACTIONS(1403), + [anon_sym___deprecated_enum_msg] = ACTIONS(1403), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1403), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1403), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1403), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1403), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1403), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1403), + [anon_sym_ATimplementation] = ACTIONS(1405), + [anon_sym_NS_ENUM] = ACTIONS(1403), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1403), + [anon_sym_NS_OPTIONS] = ACTIONS(1403), + [anon_sym_typeof] = ACTIONS(1403), + [anon_sym___typeof] = ACTIONS(1403), + [anon_sym___typeof__] = ACTIONS(1403), + [sym_self] = ACTIONS(1403), + [sym_super] = ACTIONS(1403), + [sym_nil] = ACTIONS(1403), + [sym_id] = ACTIONS(1403), + [sym_instancetype] = ACTIONS(1403), + [sym_Class] = ACTIONS(1403), + [sym_SEL] = ACTIONS(1403), + [sym_IMP] = ACTIONS(1403), + [sym_BOOL] = ACTIONS(1403), + [sym_auto] = ACTIONS(1403), + [anon_sym_ATautoreleasepool] = ACTIONS(1405), + [anon_sym_ATsynchronized] = ACTIONS(1405), + [anon_sym_ATtry] = ACTIONS(1405), + [anon_sym_ATcatch] = ACTIONS(1405), + [anon_sym_ATfinally] = ACTIONS(1405), + [anon_sym_ATthrow] = ACTIONS(1405), + [anon_sym_ATselector] = ACTIONS(1405), + [anon_sym_ATencode] = ACTIONS(1405), + [anon_sym_AT] = ACTIONS(1403), + [sym_YES] = ACTIONS(1403), + [sym_NO] = ACTIONS(1403), + [anon_sym___builtin_available] = ACTIONS(1403), + [anon_sym_ATavailable] = ACTIONS(1405), + [anon_sym_va_arg] = ACTIONS(1403), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [184] = { + [ts_builtin_sym_end] = ACTIONS(1539), [sym_identifier] = ACTIONS(1541), - [aux_sym_preproc_include_token1] = ACTIONS(1543), - [aux_sym_preproc_def_token1] = ACTIONS(1543), + [aux_sym_preproc_include_token1] = ACTIONS(1539), + [aux_sym_preproc_def_token1] = ACTIONS(1539), + [anon_sym_RPAREN] = ACTIONS(1539), [aux_sym_preproc_if_token1] = ACTIONS(1541), - [aux_sym_preproc_if_token2] = ACTIONS(1541), [aux_sym_preproc_ifdef_token1] = ACTIONS(1541), [aux_sym_preproc_ifdef_token2] = ACTIONS(1541), - [aux_sym_preproc_else_token1] = ACTIONS(1541), - [aux_sym_preproc_elif_token1] = ACTIONS(1541), - [anon_sym_LPAREN2] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_LPAREN2] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), [anon_sym_DASH] = ACTIONS(1541), [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1543), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_SEMI] = ACTIONS(1539), [anon_sym_typedef] = ACTIONS(1541), [anon_sym_extern] = ACTIONS(1541), [anon_sym___attribute] = ACTIONS(1541), @@ -56430,8 +58051,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1541), [anon_sym___thiscall] = ACTIONS(1541), [anon_sym___vectorcall] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_LBRACK] = ACTIONS(1539), [anon_sym_static] = ACTIONS(1541), [anon_sym_auto] = ACTIONS(1541), [anon_sym_register] = ACTIONS(1541), @@ -56474,9 +58096,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1541), [sym_primitive_type] = ACTIONS(1541), [anon_sym_enum] = ACTIONS(1541), - [anon_sym_NS_ENUM] = ACTIONS(1541), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1541), - [anon_sym_NS_OPTIONS] = ACTIONS(1541), [anon_sym_struct] = ACTIONS(1541), [anon_sym_union] = ACTIONS(1541), [anon_sym_if] = ACTIONS(1541), @@ -56491,31 +58110,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1541), [anon_sym_continue] = ACTIONS(1541), [anon_sym_goto] = ACTIONS(1541), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), [anon_sym_sizeof] = ACTIONS(1541), - [sym_number_literal] = ACTIONS(1543), - [anon_sym_L_SQUOTE] = ACTIONS(1543), - [anon_sym_u_SQUOTE] = ACTIONS(1543), - [anon_sym_U_SQUOTE] = ACTIONS(1543), - [anon_sym_u8_SQUOTE] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_L_DQUOTE] = ACTIONS(1543), - [anon_sym_u_DQUOTE] = ACTIONS(1543), - [anon_sym_U_DQUOTE] = ACTIONS(1543), - [anon_sym_u8_DQUOTE] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1543), + [sym_number_literal] = ACTIONS(1539), + [anon_sym_L_SQUOTE] = ACTIONS(1539), + [anon_sym_u_SQUOTE] = ACTIONS(1539), + [anon_sym_U_SQUOTE] = ACTIONS(1539), + [anon_sym_u8_SQUOTE] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_L_DQUOTE] = ACTIONS(1539), + [anon_sym_u_DQUOTE] = ACTIONS(1539), + [anon_sym_U_DQUOTE] = ACTIONS(1539), + [anon_sym_u8_DQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), [sym_true] = ACTIONS(1541), [sym_false] = ACTIONS(1541), [sym_null] = ACTIONS(1541), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1543), - [anon_sym_ATimport] = ACTIONS(1543), + [anon_sym_POUNDimport] = ACTIONS(1539), + [anon_sym_ATimport] = ACTIONS(1539), [sym__ns_assume_nonnull_declaration] = ACTIONS(1541), - [anon_sym_ATcompatibility_alias] = ACTIONS(1543), - [anon_sym_ATprotocol] = ACTIONS(1543), - [anon_sym_ATclass] = ACTIONS(1543), - [anon_sym_ATinterface] = ACTIONS(1543), + [anon_sym_ATcompatibility_alias] = ACTIONS(1539), + [anon_sym_ATprotocol] = ACTIONS(1539), + [anon_sym_ATclass] = ACTIONS(1539), + [anon_sym_ATinterface] = ACTIONS(1539), [sym_class_interface_attribute_sepcifier] = ACTIONS(1541), [sym_method_attribute_specifier] = ACTIONS(1541), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1541), @@ -56542,7 +58161,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1541), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1541), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1541), - [anon_sym_ATimplementation] = ACTIONS(1543), + [anon_sym_ATimplementation] = ACTIONS(1539), + [anon_sym_NS_ENUM] = ACTIONS(1541), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1541), + [anon_sym_NS_OPTIONS] = ACTIONS(1541), [anon_sym_typeof] = ACTIONS(1541), [anon_sym___typeof] = ACTIONS(1541), [anon_sym___typeof__] = ACTIONS(1541), @@ -56556,6 +58178,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1541), [sym_BOOL] = ACTIONS(1541), [sym_auto] = ACTIONS(1541), + [anon_sym_ATautoreleasepool] = ACTIONS(1539), + [anon_sym_ATsynchronized] = ACTIONS(1539), + [anon_sym_ATtry] = ACTIONS(1539), + [anon_sym_ATcatch] = ACTIONS(1539), + [anon_sym_ATfinally] = ACTIONS(1539), + [anon_sym_ATthrow] = ACTIONS(1539), + [anon_sym_ATselector] = ACTIONS(1539), + [anon_sym_ATencode] = ACTIONS(1539), + [anon_sym_AT] = ACTIONS(1541), + [sym_YES] = ACTIONS(1541), + [sym_NO] = ACTIONS(1541), + [anon_sym___builtin_available] = ACTIONS(1541), + [anon_sym_ATavailable] = ACTIONS(1539), + [anon_sym_va_arg] = ACTIONS(1541), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [185] = { + [sym_identifier] = ACTIONS(1297), + [aux_sym_preproc_include_token1] = ACTIONS(1295), + [aux_sym_preproc_def_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token1] = ACTIONS(1297), + [aux_sym_preproc_if_token2] = ACTIONS(1297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1297), + [aux_sym_preproc_else_token1] = ACTIONS(1297), + [aux_sym_preproc_elif_token1] = ACTIONS(1297), + [anon_sym_LPAREN2] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_STAR] = ACTIONS(1295), + [anon_sym_CARET] = ACTIONS(1295), + [anon_sym_AMP] = ACTIONS(1295), + [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1297), + [anon_sym___attribute] = ACTIONS(1297), + [anon_sym___attribute__] = ACTIONS(1297), + [anon_sym___declspec] = ACTIONS(1297), + [anon_sym___cdecl] = ACTIONS(1297), + [anon_sym___clrcall] = ACTIONS(1297), + [anon_sym___stdcall] = ACTIONS(1297), + [anon_sym___fastcall] = ACTIONS(1297), + [anon_sym___thiscall] = ACTIONS(1297), + [anon_sym___vectorcall] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1297), + [anon_sym_auto] = ACTIONS(1297), + [anon_sym_register] = ACTIONS(1297), + [anon_sym_inline] = ACTIONS(1297), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_volatile] = ACTIONS(1297), + [anon_sym_restrict] = ACTIONS(1297), + [anon_sym__Atomic] = ACTIONS(1297), + [anon_sym_in] = ACTIONS(1297), + [anon_sym_out] = ACTIONS(1297), + [anon_sym_inout] = ACTIONS(1297), + [anon_sym_bycopy] = ACTIONS(1297), + [anon_sym_byref] = ACTIONS(1297), + [anon_sym_oneway] = ACTIONS(1297), + [anon_sym__Nullable] = ACTIONS(1297), + [anon_sym__Nonnull] = ACTIONS(1297), + [anon_sym__Nullable_result] = ACTIONS(1297), + [anon_sym__Null_unspecified] = ACTIONS(1297), + [anon_sym___autoreleasing] = ACTIONS(1297), + [anon_sym___nullable] = ACTIONS(1297), + [anon_sym___nonnull] = ACTIONS(1297), + [anon_sym___strong] = ACTIONS(1297), + [anon_sym___weak] = ACTIONS(1297), + [anon_sym___bridge] = ACTIONS(1297), + [anon_sym___bridge_transfer] = ACTIONS(1297), + [anon_sym___bridge_retained] = ACTIONS(1297), + [anon_sym___unsafe_unretained] = ACTIONS(1297), + [anon_sym___block] = ACTIONS(1297), + [anon_sym___kindof] = ACTIONS(1297), + [anon_sym___unused] = ACTIONS(1297), + [anon_sym__Complex] = ACTIONS(1297), + [anon_sym___complex] = ACTIONS(1297), + [anon_sym_IBOutlet] = ACTIONS(1297), + [anon_sym_IBInspectable] = ACTIONS(1297), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1297), + [anon_sym_signed] = ACTIONS(1297), + [anon_sym_unsigned] = ACTIONS(1297), + [anon_sym_long] = ACTIONS(1297), + [anon_sym_short] = ACTIONS(1297), + [sym_primitive_type] = ACTIONS(1297), + [anon_sym_enum] = ACTIONS(1297), + [anon_sym_struct] = ACTIONS(1297), + [anon_sym_union] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1297), + [anon_sym_else] = ACTIONS(1297), + [anon_sym_switch] = ACTIONS(1297), + [anon_sym_case] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_while] = ACTIONS(1297), + [anon_sym_do] = ACTIONS(1297), + [anon_sym_for] = ACTIONS(1297), + [anon_sym_return] = ACTIONS(1297), + [anon_sym_break] = ACTIONS(1297), + [anon_sym_continue] = ACTIONS(1297), + [anon_sym_goto] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1295), + [anon_sym_sizeof] = ACTIONS(1297), + [sym_number_literal] = ACTIONS(1295), + [anon_sym_L_SQUOTE] = ACTIONS(1295), + [anon_sym_u_SQUOTE] = ACTIONS(1295), + [anon_sym_U_SQUOTE] = ACTIONS(1295), + [anon_sym_u8_SQUOTE] = ACTIONS(1295), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_L_DQUOTE] = ACTIONS(1295), + [anon_sym_u_DQUOTE] = ACTIONS(1295), + [anon_sym_U_DQUOTE] = ACTIONS(1295), + [anon_sym_u8_DQUOTE] = ACTIONS(1295), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1295), + [anon_sym_ATimport] = ACTIONS(1295), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1297), + [anon_sym_ATcompatibility_alias] = ACTIONS(1295), + [anon_sym_ATprotocol] = ACTIONS(1295), + [anon_sym_ATclass] = ACTIONS(1295), + [anon_sym_ATinterface] = ACTIONS(1295), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1297), + [sym_method_attribute_specifier] = ACTIONS(1297), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1297), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1297), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1297), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1297), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1297), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1297), + [anon_sym_NS_AVAILABLE] = ACTIONS(1297), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1297), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1297), + [anon_sym_API_AVAILABLE] = ACTIONS(1297), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1297), + [anon_sym_API_DEPRECATED] = ACTIONS(1297), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1297), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1297), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1297), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1297), + [anon_sym___deprecated_msg] = ACTIONS(1297), + [anon_sym___deprecated_enum_msg] = ACTIONS(1297), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1297), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1297), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1297), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1297), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1297), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1297), + [anon_sym_ATimplementation] = ACTIONS(1295), + [anon_sym_NS_ENUM] = ACTIONS(1297), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1297), + [anon_sym_NS_OPTIONS] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym___typeof] = ACTIONS(1297), + [anon_sym___typeof__] = ACTIONS(1297), + [sym_self] = ACTIONS(1297), + [sym_super] = ACTIONS(1297), + [sym_nil] = ACTIONS(1297), + [sym_id] = ACTIONS(1297), + [sym_instancetype] = ACTIONS(1297), + [sym_Class] = ACTIONS(1297), + [sym_SEL] = ACTIONS(1297), + [sym_IMP] = ACTIONS(1297), + [sym_BOOL] = ACTIONS(1297), + [sym_auto] = ACTIONS(1297), + [anon_sym_ATautoreleasepool] = ACTIONS(1295), + [anon_sym_ATsynchronized] = ACTIONS(1295), + [anon_sym_ATtry] = ACTIONS(1295), + [anon_sym_ATcatch] = ACTIONS(1295), + [anon_sym_ATfinally] = ACTIONS(1295), + [anon_sym_ATthrow] = ACTIONS(1295), + [anon_sym_ATselector] = ACTIONS(1295), + [anon_sym_ATencode] = ACTIONS(1295), + [anon_sym_AT] = ACTIONS(1297), + [sym_YES] = ACTIONS(1297), + [sym_NO] = ACTIONS(1297), + [anon_sym___builtin_available] = ACTIONS(1297), + [anon_sym_ATavailable] = ACTIONS(1295), + [anon_sym_va_arg] = ACTIONS(1297), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [186] = { + [ts_builtin_sym_end] = ACTIONS(1543), + [sym_identifier] = ACTIONS(1545), + [aux_sym_preproc_include_token1] = ACTIONS(1543), + [aux_sym_preproc_def_token1] = ACTIONS(1543), + [anon_sym_RPAREN] = ACTIONS(1543), + [aux_sym_preproc_if_token1] = ACTIONS(1545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1545), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_CARET] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_typedef] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1545), + [anon_sym___attribute] = ACTIONS(1545), + [anon_sym___attribute__] = ACTIONS(1545), + [anon_sym___declspec] = ACTIONS(1545), + [anon_sym___cdecl] = ACTIONS(1545), + [anon_sym___clrcall] = ACTIONS(1545), + [anon_sym___stdcall] = ACTIONS(1545), + [anon_sym___fastcall] = ACTIONS(1545), + [anon_sym___thiscall] = ACTIONS(1545), + [anon_sym___vectorcall] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_auto] = ACTIONS(1545), + [anon_sym_register] = ACTIONS(1545), + [anon_sym_inline] = ACTIONS(1545), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_volatile] = ACTIONS(1545), + [anon_sym_restrict] = ACTIONS(1545), + [anon_sym__Atomic] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(1545), + [anon_sym_out] = ACTIONS(1545), + [anon_sym_inout] = ACTIONS(1545), + [anon_sym_bycopy] = ACTIONS(1545), + [anon_sym_byref] = ACTIONS(1545), + [anon_sym_oneway] = ACTIONS(1545), + [anon_sym__Nullable] = ACTIONS(1545), + [anon_sym__Nonnull] = ACTIONS(1545), + [anon_sym__Nullable_result] = ACTIONS(1545), + [anon_sym__Null_unspecified] = ACTIONS(1545), + [anon_sym___autoreleasing] = ACTIONS(1545), + [anon_sym___nullable] = ACTIONS(1545), + [anon_sym___nonnull] = ACTIONS(1545), + [anon_sym___strong] = ACTIONS(1545), + [anon_sym___weak] = ACTIONS(1545), + [anon_sym___bridge] = ACTIONS(1545), + [anon_sym___bridge_transfer] = ACTIONS(1545), + [anon_sym___bridge_retained] = ACTIONS(1545), + [anon_sym___unsafe_unretained] = ACTIONS(1545), + [anon_sym___block] = ACTIONS(1545), + [anon_sym___kindof] = ACTIONS(1545), + [anon_sym___unused] = ACTIONS(1545), + [anon_sym__Complex] = ACTIONS(1545), + [anon_sym___complex] = ACTIONS(1545), + [anon_sym_IBOutlet] = ACTIONS(1545), + [anon_sym_IBInspectable] = ACTIONS(1545), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1545), + [anon_sym_signed] = ACTIONS(1545), + [anon_sym_unsigned] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [sym_primitive_type] = ACTIONS(1545), + [anon_sym_enum] = ACTIONS(1545), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_else] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_case] = ACTIONS(1545), + [anon_sym_default] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_goto] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_sizeof] = ACTIONS(1545), + [sym_number_literal] = ACTIONS(1543), + [anon_sym_L_SQUOTE] = ACTIONS(1543), + [anon_sym_u_SQUOTE] = ACTIONS(1543), + [anon_sym_U_SQUOTE] = ACTIONS(1543), + [anon_sym_u8_SQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_L_DQUOTE] = ACTIONS(1543), + [anon_sym_u_DQUOTE] = ACTIONS(1543), + [anon_sym_U_DQUOTE] = ACTIONS(1543), + [anon_sym_u8_DQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [sym_true] = ACTIONS(1545), + [sym_false] = ACTIONS(1545), + [sym_null] = ACTIONS(1545), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1543), + [anon_sym_ATimport] = ACTIONS(1543), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1545), + [anon_sym_ATcompatibility_alias] = ACTIONS(1543), + [anon_sym_ATprotocol] = ACTIONS(1543), + [anon_sym_ATclass] = ACTIONS(1543), + [anon_sym_ATinterface] = ACTIONS(1543), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1545), + [sym_method_attribute_specifier] = ACTIONS(1545), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1545), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1545), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1545), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1545), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1545), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1545), + [anon_sym_NS_AVAILABLE] = ACTIONS(1545), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1545), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1545), + [anon_sym_API_AVAILABLE] = ACTIONS(1545), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1545), + [anon_sym_API_DEPRECATED] = ACTIONS(1545), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1545), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1545), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1545), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1545), + [anon_sym___deprecated_msg] = ACTIONS(1545), + [anon_sym___deprecated_enum_msg] = ACTIONS(1545), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1545), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1545), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1545), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1545), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1545), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1545), + [anon_sym_ATimplementation] = ACTIONS(1543), + [anon_sym_NS_ENUM] = ACTIONS(1545), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1545), + [anon_sym_NS_OPTIONS] = ACTIONS(1545), + [anon_sym_typeof] = ACTIONS(1545), + [anon_sym___typeof] = ACTIONS(1545), + [anon_sym___typeof__] = ACTIONS(1545), + [sym_self] = ACTIONS(1545), + [sym_super] = ACTIONS(1545), + [sym_nil] = ACTIONS(1545), + [sym_id] = ACTIONS(1545), + [sym_instancetype] = ACTIONS(1545), + [sym_Class] = ACTIONS(1545), + [sym_SEL] = ACTIONS(1545), + [sym_IMP] = ACTIONS(1545), + [sym_BOOL] = ACTIONS(1545), + [sym_auto] = ACTIONS(1545), [anon_sym_ATautoreleasepool] = ACTIONS(1543), [anon_sym_ATsynchronized] = ACTIONS(1543), [anon_sym_ATtry] = ACTIONS(1543), @@ -56564,189 +58540,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATthrow] = ACTIONS(1543), [anon_sym_ATselector] = ACTIONS(1543), [anon_sym_ATencode] = ACTIONS(1543), - [anon_sym_AT] = ACTIONS(1541), - [sym_YES] = ACTIONS(1541), - [sym_NO] = ACTIONS(1541), - [anon_sym___builtin_available] = ACTIONS(1541), + [anon_sym_AT] = ACTIONS(1545), + [sym_YES] = ACTIONS(1545), + [sym_NO] = ACTIONS(1545), + [anon_sym___builtin_available] = ACTIONS(1545), [anon_sym_ATavailable] = ACTIONS(1543), - [anon_sym_va_arg] = ACTIONS(1541), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [176] = { - [ts_builtin_sym_end] = ACTIONS(1537), - [sym_identifier] = ACTIONS(1539), - [aux_sym_preproc_include_token1] = ACTIONS(1537), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [aux_sym_preproc_if_token1] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_typedef] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym___attribute] = ACTIONS(1539), - [anon_sym___attribute__] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1539), - [anon_sym___cdecl] = ACTIONS(1539), - [anon_sym___clrcall] = ACTIONS(1539), - [anon_sym___stdcall] = ACTIONS(1539), - [anon_sym___fastcall] = ACTIONS(1539), - [anon_sym___thiscall] = ACTIONS(1539), - [anon_sym___vectorcall] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_auto] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_inline] = ACTIONS(1539), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_volatile] = ACTIONS(1539), - [anon_sym_restrict] = ACTIONS(1539), - [anon_sym__Atomic] = ACTIONS(1539), - [anon_sym_in] = ACTIONS(1539), - [anon_sym_out] = ACTIONS(1539), - [anon_sym_inout] = ACTIONS(1539), - [anon_sym_bycopy] = ACTIONS(1539), - [anon_sym_byref] = ACTIONS(1539), - [anon_sym_oneway] = ACTIONS(1539), - [anon_sym__Nullable] = ACTIONS(1539), - [anon_sym__Nonnull] = ACTIONS(1539), - [anon_sym__Nullable_result] = ACTIONS(1539), - [anon_sym__Null_unspecified] = ACTIONS(1539), - [anon_sym___autoreleasing] = ACTIONS(1539), - [anon_sym___nullable] = ACTIONS(1539), - [anon_sym___nonnull] = ACTIONS(1539), - [anon_sym___strong] = ACTIONS(1539), - [anon_sym___weak] = ACTIONS(1539), - [anon_sym___bridge] = ACTIONS(1539), - [anon_sym___bridge_transfer] = ACTIONS(1539), - [anon_sym___bridge_retained] = ACTIONS(1539), - [anon_sym___unsafe_unretained] = ACTIONS(1539), - [anon_sym___block] = ACTIONS(1539), - [anon_sym___kindof] = ACTIONS(1539), - [anon_sym___unused] = ACTIONS(1539), - [anon_sym__Complex] = ACTIONS(1539), - [anon_sym___complex] = ACTIONS(1539), - [anon_sym_IBOutlet] = ACTIONS(1539), - [anon_sym_IBInspectable] = ACTIONS(1539), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1539), - [anon_sym_signed] = ACTIONS(1539), - [anon_sym_unsigned] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_NS_ENUM] = ACTIONS(1539), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1539), - [anon_sym_NS_OPTIONS] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1539), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1539), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_goto] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1537), - [anon_sym_sizeof] = ACTIONS(1539), - [sym_number_literal] = ACTIONS(1537), - [anon_sym_L_SQUOTE] = ACTIONS(1537), - [anon_sym_u_SQUOTE] = ACTIONS(1537), - [anon_sym_U_SQUOTE] = ACTIONS(1537), - [anon_sym_u8_SQUOTE] = ACTIONS(1537), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_L_DQUOTE] = ACTIONS(1537), - [anon_sym_u_DQUOTE] = ACTIONS(1537), - [anon_sym_U_DQUOTE] = ACTIONS(1537), - [anon_sym_u8_DQUOTE] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym_true] = ACTIONS(1539), - [sym_false] = ACTIONS(1539), - [sym_null] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1537), - [anon_sym_ATimport] = ACTIONS(1537), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1539), - [anon_sym_ATcompatibility_alias] = ACTIONS(1537), - [anon_sym_ATprotocol] = ACTIONS(1537), - [anon_sym_ATclass] = ACTIONS(1537), - [anon_sym_ATinterface] = ACTIONS(1537), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1539), - [sym_method_attribute_specifier] = ACTIONS(1539), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1539), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE] = ACTIONS(1539), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_API_AVAILABLE] = ACTIONS(1539), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_API_DEPRECATED] = ACTIONS(1539), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1539), - [anon_sym___deprecated_msg] = ACTIONS(1539), - [anon_sym___deprecated_enum_msg] = ACTIONS(1539), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1539), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1539), - [anon_sym_ATimplementation] = ACTIONS(1537), - [anon_sym_typeof] = ACTIONS(1539), - [anon_sym___typeof] = ACTIONS(1539), - [anon_sym___typeof__] = ACTIONS(1539), - [sym_self] = ACTIONS(1539), - [sym_super] = ACTIONS(1539), - [sym_nil] = ACTIONS(1539), - [sym_id] = ACTIONS(1539), - [sym_instancetype] = ACTIONS(1539), - [sym_Class] = ACTIONS(1539), - [sym_SEL] = ACTIONS(1539), - [sym_IMP] = ACTIONS(1539), - [sym_BOOL] = ACTIONS(1539), - [sym_auto] = ACTIONS(1539), - [anon_sym_ATautoreleasepool] = ACTIONS(1537), - [anon_sym_ATsynchronized] = ACTIONS(1537), - [anon_sym_ATtry] = ACTIONS(1537), - [anon_sym_ATcatch] = ACTIONS(1537), - [anon_sym_ATfinally] = ACTIONS(1537), - [anon_sym_ATthrow] = ACTIONS(1537), - [anon_sym_ATselector] = ACTIONS(1537), - [anon_sym_ATencode] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1539), - [sym_YES] = ACTIONS(1539), - [sym_NO] = ACTIONS(1539), - [anon_sym___builtin_available] = ACTIONS(1539), - [anon_sym_ATavailable] = ACTIONS(1537), - [anon_sym_va_arg] = ACTIONS(1539), + [anon_sym_va_arg] = ACTIONS(1545), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -56754,379 +58553,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [177] = { - [ts_builtin_sym_end] = ACTIONS(1545), - [sym_identifier] = ACTIONS(1547), - [aux_sym_preproc_include_token1] = ACTIONS(1545), - [aux_sym_preproc_def_token1] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1545), - [aux_sym_preproc_if_token1] = ACTIONS(1547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1547), - [anon_sym_LPAREN2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1545), - [anon_sym_TILDE] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_typedef] = ACTIONS(1547), - [anon_sym_extern] = ACTIONS(1547), - [anon_sym___attribute] = ACTIONS(1547), - [anon_sym___attribute__] = ACTIONS(1547), - [anon_sym___declspec] = ACTIONS(1547), - [anon_sym___cdecl] = ACTIONS(1547), - [anon_sym___clrcall] = ACTIONS(1547), - [anon_sym___stdcall] = ACTIONS(1547), - [anon_sym___fastcall] = ACTIONS(1547), - [anon_sym___thiscall] = ACTIONS(1547), - [anon_sym___vectorcall] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_auto] = ACTIONS(1547), - [anon_sym_register] = ACTIONS(1547), - [anon_sym_inline] = ACTIONS(1547), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1547), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_volatile] = ACTIONS(1547), - [anon_sym_restrict] = ACTIONS(1547), - [anon_sym__Atomic] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(1547), - [anon_sym_out] = ACTIONS(1547), - [anon_sym_inout] = ACTIONS(1547), - [anon_sym_bycopy] = ACTIONS(1547), - [anon_sym_byref] = ACTIONS(1547), - [anon_sym_oneway] = ACTIONS(1547), - [anon_sym__Nullable] = ACTIONS(1547), - [anon_sym__Nonnull] = ACTIONS(1547), - [anon_sym__Nullable_result] = ACTIONS(1547), - [anon_sym__Null_unspecified] = ACTIONS(1547), - [anon_sym___autoreleasing] = ACTIONS(1547), - [anon_sym___nullable] = ACTIONS(1547), - [anon_sym___nonnull] = ACTIONS(1547), - [anon_sym___strong] = ACTIONS(1547), - [anon_sym___weak] = ACTIONS(1547), - [anon_sym___bridge] = ACTIONS(1547), - [anon_sym___bridge_transfer] = ACTIONS(1547), - [anon_sym___bridge_retained] = ACTIONS(1547), - [anon_sym___unsafe_unretained] = ACTIONS(1547), - [anon_sym___block] = ACTIONS(1547), - [anon_sym___kindof] = ACTIONS(1547), - [anon_sym___unused] = ACTIONS(1547), - [anon_sym__Complex] = ACTIONS(1547), - [anon_sym___complex] = ACTIONS(1547), - [anon_sym_IBOutlet] = ACTIONS(1547), - [anon_sym_IBInspectable] = ACTIONS(1547), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1547), - [anon_sym_signed] = ACTIONS(1547), - [anon_sym_unsigned] = ACTIONS(1547), - [anon_sym_long] = ACTIONS(1547), - [anon_sym_short] = ACTIONS(1547), - [sym_primitive_type] = ACTIONS(1547), - [anon_sym_enum] = ACTIONS(1547), - [anon_sym_NS_ENUM] = ACTIONS(1547), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1547), - [anon_sym_NS_OPTIONS] = ACTIONS(1547), - [anon_sym_struct] = ACTIONS(1547), - [anon_sym_union] = ACTIONS(1547), - [anon_sym_if] = ACTIONS(1547), - [anon_sym_else] = ACTIONS(1547), - [anon_sym_switch] = ACTIONS(1547), - [anon_sym_case] = ACTIONS(1547), - [anon_sym_default] = ACTIONS(1547), - [anon_sym_while] = ACTIONS(1547), - [anon_sym_do] = ACTIONS(1547), - [anon_sym_for] = ACTIONS(1547), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1547), - [anon_sym_continue] = ACTIONS(1547), - [anon_sym_goto] = ACTIONS(1547), - [anon_sym_DASH_DASH] = ACTIONS(1545), - [anon_sym_PLUS_PLUS] = ACTIONS(1545), - [anon_sym_sizeof] = ACTIONS(1547), - [sym_number_literal] = ACTIONS(1545), - [anon_sym_L_SQUOTE] = ACTIONS(1545), - [anon_sym_u_SQUOTE] = ACTIONS(1545), - [anon_sym_U_SQUOTE] = ACTIONS(1545), - [anon_sym_u8_SQUOTE] = ACTIONS(1545), - [anon_sym_SQUOTE] = ACTIONS(1545), - [anon_sym_L_DQUOTE] = ACTIONS(1545), - [anon_sym_u_DQUOTE] = ACTIONS(1545), - [anon_sym_U_DQUOTE] = ACTIONS(1545), - [anon_sym_u8_DQUOTE] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [sym_true] = ACTIONS(1547), - [sym_false] = ACTIONS(1547), - [sym_null] = ACTIONS(1547), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1545), - [anon_sym_ATimport] = ACTIONS(1545), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1547), - [anon_sym_ATcompatibility_alias] = ACTIONS(1545), - [anon_sym_ATprotocol] = ACTIONS(1545), - [anon_sym_ATclass] = ACTIONS(1545), - [anon_sym_ATinterface] = ACTIONS(1545), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1547), - [sym_method_attribute_specifier] = ACTIONS(1547), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1547), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1547), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1547), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1547), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1547), - [anon_sym_NS_AVAILABLE] = ACTIONS(1547), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1547), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_API_AVAILABLE] = ACTIONS(1547), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_API_DEPRECATED] = ACTIONS(1547), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1547), - [anon_sym___deprecated_msg] = ACTIONS(1547), - [anon_sym___deprecated_enum_msg] = ACTIONS(1547), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1547), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1547), - [anon_sym_ATimplementation] = ACTIONS(1545), - [anon_sym_typeof] = ACTIONS(1547), - [anon_sym___typeof] = ACTIONS(1547), - [anon_sym___typeof__] = ACTIONS(1547), - [sym_self] = ACTIONS(1547), - [sym_super] = ACTIONS(1547), - [sym_nil] = ACTIONS(1547), - [sym_id] = ACTIONS(1547), - [sym_instancetype] = ACTIONS(1547), - [sym_Class] = ACTIONS(1547), - [sym_SEL] = ACTIONS(1547), - [sym_IMP] = ACTIONS(1547), - [sym_BOOL] = ACTIONS(1547), - [sym_auto] = ACTIONS(1547), - [anon_sym_ATautoreleasepool] = ACTIONS(1545), - [anon_sym_ATsynchronized] = ACTIONS(1545), - [anon_sym_ATtry] = ACTIONS(1545), - [anon_sym_ATcatch] = ACTIONS(1545), - [anon_sym_ATfinally] = ACTIONS(1545), - [anon_sym_ATthrow] = ACTIONS(1545), - [anon_sym_ATselector] = ACTIONS(1545), - [anon_sym_ATencode] = ACTIONS(1545), - [anon_sym_AT] = ACTIONS(1547), - [sym_YES] = ACTIONS(1547), - [sym_NO] = ACTIONS(1547), - [anon_sym___builtin_available] = ACTIONS(1547), - [anon_sym_ATavailable] = ACTIONS(1545), - [anon_sym_va_arg] = ACTIONS(1547), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [178] = { - [ts_builtin_sym_end] = ACTIONS(1537), - [sym_identifier] = ACTIONS(1539), - [aux_sym_preproc_include_token1] = ACTIONS(1537), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [aux_sym_preproc_if_token1] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_typedef] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym___attribute] = ACTIONS(1539), - [anon_sym___attribute__] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1539), - [anon_sym___cdecl] = ACTIONS(1539), - [anon_sym___clrcall] = ACTIONS(1539), - [anon_sym___stdcall] = ACTIONS(1539), - [anon_sym___fastcall] = ACTIONS(1539), - [anon_sym___thiscall] = ACTIONS(1539), - [anon_sym___vectorcall] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_auto] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_inline] = ACTIONS(1539), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_volatile] = ACTIONS(1539), - [anon_sym_restrict] = ACTIONS(1539), - [anon_sym__Atomic] = ACTIONS(1539), - [anon_sym_in] = ACTIONS(1539), - [anon_sym_out] = ACTIONS(1539), - [anon_sym_inout] = ACTIONS(1539), - [anon_sym_bycopy] = ACTIONS(1539), - [anon_sym_byref] = ACTIONS(1539), - [anon_sym_oneway] = ACTIONS(1539), - [anon_sym__Nullable] = ACTIONS(1539), - [anon_sym__Nonnull] = ACTIONS(1539), - [anon_sym__Nullable_result] = ACTIONS(1539), - [anon_sym__Null_unspecified] = ACTIONS(1539), - [anon_sym___autoreleasing] = ACTIONS(1539), - [anon_sym___nullable] = ACTIONS(1539), - [anon_sym___nonnull] = ACTIONS(1539), - [anon_sym___strong] = ACTIONS(1539), - [anon_sym___weak] = ACTIONS(1539), - [anon_sym___bridge] = ACTIONS(1539), - [anon_sym___bridge_transfer] = ACTIONS(1539), - [anon_sym___bridge_retained] = ACTIONS(1539), - [anon_sym___unsafe_unretained] = ACTIONS(1539), - [anon_sym___block] = ACTIONS(1539), - [anon_sym___kindof] = ACTIONS(1539), - [anon_sym___unused] = ACTIONS(1539), - [anon_sym__Complex] = ACTIONS(1539), - [anon_sym___complex] = ACTIONS(1539), - [anon_sym_IBOutlet] = ACTIONS(1539), - [anon_sym_IBInspectable] = ACTIONS(1539), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1539), - [anon_sym_signed] = ACTIONS(1539), - [anon_sym_unsigned] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_NS_ENUM] = ACTIONS(1539), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1539), - [anon_sym_NS_OPTIONS] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1539), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1539), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_goto] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1537), - [anon_sym_sizeof] = ACTIONS(1539), - [sym_number_literal] = ACTIONS(1537), - [anon_sym_L_SQUOTE] = ACTIONS(1537), - [anon_sym_u_SQUOTE] = ACTIONS(1537), - [anon_sym_U_SQUOTE] = ACTIONS(1537), - [anon_sym_u8_SQUOTE] = ACTIONS(1537), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_L_DQUOTE] = ACTIONS(1537), - [anon_sym_u_DQUOTE] = ACTIONS(1537), - [anon_sym_U_DQUOTE] = ACTIONS(1537), - [anon_sym_u8_DQUOTE] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym_true] = ACTIONS(1539), - [sym_false] = ACTIONS(1539), - [sym_null] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1537), - [anon_sym_ATimport] = ACTIONS(1537), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1539), - [anon_sym_ATcompatibility_alias] = ACTIONS(1537), - [anon_sym_ATprotocol] = ACTIONS(1537), - [anon_sym_ATclass] = ACTIONS(1537), - [anon_sym_ATinterface] = ACTIONS(1537), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1539), - [sym_method_attribute_specifier] = ACTIONS(1539), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1539), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE] = ACTIONS(1539), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_API_AVAILABLE] = ACTIONS(1539), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_API_DEPRECATED] = ACTIONS(1539), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1539), - [anon_sym___deprecated_msg] = ACTIONS(1539), - [anon_sym___deprecated_enum_msg] = ACTIONS(1539), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1539), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1539), - [anon_sym_ATimplementation] = ACTIONS(1537), - [anon_sym_typeof] = ACTIONS(1539), - [anon_sym___typeof] = ACTIONS(1539), - [anon_sym___typeof__] = ACTIONS(1539), - [sym_self] = ACTIONS(1539), - [sym_super] = ACTIONS(1539), - [sym_nil] = ACTIONS(1539), - [sym_id] = ACTIONS(1539), - [sym_instancetype] = ACTIONS(1539), - [sym_Class] = ACTIONS(1539), - [sym_SEL] = ACTIONS(1539), - [sym_IMP] = ACTIONS(1539), - [sym_BOOL] = ACTIONS(1539), - [sym_auto] = ACTIONS(1539), - [anon_sym_ATautoreleasepool] = ACTIONS(1537), - [anon_sym_ATsynchronized] = ACTIONS(1537), - [anon_sym_ATtry] = ACTIONS(1537), - [anon_sym_ATcatch] = ACTIONS(1537), - [anon_sym_ATfinally] = ACTIONS(1537), - [anon_sym_ATthrow] = ACTIONS(1537), - [anon_sym_ATselector] = ACTIONS(1537), - [anon_sym_ATencode] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1539), - [sym_YES] = ACTIONS(1539), - [sym_NO] = ACTIONS(1539), - [anon_sym___builtin_available] = ACTIONS(1539), - [anon_sym_ATavailable] = ACTIONS(1537), - [anon_sym_va_arg] = ACTIONS(1539), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [179] = { + [187] = { + [ts_builtin_sym_end] = ACTIONS(1547), [sym_identifier] = ACTIONS(1549), - [aux_sym_preproc_include_token1] = ACTIONS(1551), - [aux_sym_preproc_def_token1] = ACTIONS(1551), + [aux_sym_preproc_include_token1] = ACTIONS(1547), + [aux_sym_preproc_def_token1] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(1547), [aux_sym_preproc_if_token1] = ACTIONS(1549), - [aux_sym_preproc_if_token2] = ACTIONS(1549), [aux_sym_preproc_ifdef_token1] = ACTIONS(1549), [aux_sym_preproc_ifdef_token2] = ACTIONS(1549), - [aux_sym_preproc_else_token1] = ACTIONS(1549), - [aux_sym_preproc_elif_token1] = ACTIONS(1549), - [anon_sym_LPAREN2] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), [anon_sym_DASH] = ACTIONS(1549), [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_CARET] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1547), [anon_sym_typedef] = ACTIONS(1549), [anon_sym_extern] = ACTIONS(1549), [anon_sym___attribute] = ACTIONS(1549), @@ -57138,8 +58582,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1549), [anon_sym___thiscall] = ACTIONS(1549), [anon_sym___vectorcall] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1547), [anon_sym_static] = ACTIONS(1549), [anon_sym_auto] = ACTIONS(1549), [anon_sym_register] = ACTIONS(1549), @@ -57182,9 +58627,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1549), [sym_primitive_type] = ACTIONS(1549), [anon_sym_enum] = ACTIONS(1549), - [anon_sym_NS_ENUM] = ACTIONS(1549), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1549), - [anon_sym_NS_OPTIONS] = ACTIONS(1549), [anon_sym_struct] = ACTIONS(1549), [anon_sym_union] = ACTIONS(1549), [anon_sym_if] = ACTIONS(1549), @@ -57199,31 +58641,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1549), [anon_sym_continue] = ACTIONS(1549), [anon_sym_goto] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), [anon_sym_sizeof] = ACTIONS(1549), - [sym_number_literal] = ACTIONS(1551), - [anon_sym_L_SQUOTE] = ACTIONS(1551), - [anon_sym_u_SQUOTE] = ACTIONS(1551), - [anon_sym_U_SQUOTE] = ACTIONS(1551), - [anon_sym_u8_SQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), + [sym_number_literal] = ACTIONS(1547), + [anon_sym_L_SQUOTE] = ACTIONS(1547), + [anon_sym_u_SQUOTE] = ACTIONS(1547), + [anon_sym_U_SQUOTE] = ACTIONS(1547), + [anon_sym_u8_SQUOTE] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_L_DQUOTE] = ACTIONS(1547), + [anon_sym_u_DQUOTE] = ACTIONS(1547), + [anon_sym_U_DQUOTE] = ACTIONS(1547), + [anon_sym_u8_DQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), [sym_true] = ACTIONS(1549), [sym_false] = ACTIONS(1549), [sym_null] = ACTIONS(1549), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1551), - [anon_sym_ATimport] = ACTIONS(1551), + [anon_sym_POUNDimport] = ACTIONS(1547), + [anon_sym_ATimport] = ACTIONS(1547), [sym__ns_assume_nonnull_declaration] = ACTIONS(1549), - [anon_sym_ATcompatibility_alias] = ACTIONS(1551), - [anon_sym_ATprotocol] = ACTIONS(1551), - [anon_sym_ATclass] = ACTIONS(1551), - [anon_sym_ATinterface] = ACTIONS(1551), + [anon_sym_ATcompatibility_alias] = ACTIONS(1547), + [anon_sym_ATprotocol] = ACTIONS(1547), + [anon_sym_ATclass] = ACTIONS(1547), + [anon_sym_ATinterface] = ACTIONS(1547), [sym_class_interface_attribute_sepcifier] = ACTIONS(1549), [sym_method_attribute_specifier] = ACTIONS(1549), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1549), @@ -57250,7 +58692,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1549), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1549), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1549), - [anon_sym_ATimplementation] = ACTIONS(1551), + [anon_sym_ATimplementation] = ACTIONS(1547), + [anon_sym_NS_ENUM] = ACTIONS(1549), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1549), + [anon_sym_NS_OPTIONS] = ACTIONS(1549), [anon_sym_typeof] = ACTIONS(1549), [anon_sym___typeof] = ACTIONS(1549), [anon_sym___typeof__] = ACTIONS(1549), @@ -57264,6 +58709,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1549), [sym_BOOL] = ACTIONS(1549), [sym_auto] = ACTIONS(1549), + [anon_sym_ATautoreleasepool] = ACTIONS(1547), + [anon_sym_ATsynchronized] = ACTIONS(1547), + [anon_sym_ATtry] = ACTIONS(1547), + [anon_sym_ATcatch] = ACTIONS(1547), + [anon_sym_ATfinally] = ACTIONS(1547), + [anon_sym_ATthrow] = ACTIONS(1547), + [anon_sym_ATselector] = ACTIONS(1547), + [anon_sym_ATencode] = ACTIONS(1547), + [anon_sym_AT] = ACTIONS(1549), + [sym_YES] = ACTIONS(1549), + [sym_NO] = ACTIONS(1549), + [anon_sym___builtin_available] = ACTIONS(1549), + [anon_sym_ATavailable] = ACTIONS(1547), + [anon_sym_va_arg] = ACTIONS(1549), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [188] = { + [ts_builtin_sym_end] = ACTIONS(1551), + [sym_identifier] = ACTIONS(1553), + [aux_sym_preproc_include_token1] = ACTIONS(1551), + [aux_sym_preproc_def_token1] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [aux_sym_preproc_if_token1] = ACTIONS(1553), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1553), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(1551), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_typedef] = ACTIONS(1553), + [anon_sym_extern] = ACTIONS(1553), + [anon_sym___attribute] = ACTIONS(1553), + [anon_sym___attribute__] = ACTIONS(1553), + [anon_sym___declspec] = ACTIONS(1553), + [anon_sym___cdecl] = ACTIONS(1553), + [anon_sym___clrcall] = ACTIONS(1553), + [anon_sym___stdcall] = ACTIONS(1553), + [anon_sym___fastcall] = ACTIONS(1553), + [anon_sym___thiscall] = ACTIONS(1553), + [anon_sym___vectorcall] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_auto] = ACTIONS(1553), + [anon_sym_register] = ACTIONS(1553), + [anon_sym_inline] = ACTIONS(1553), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_volatile] = ACTIONS(1553), + [anon_sym_restrict] = ACTIONS(1553), + [anon_sym__Atomic] = ACTIONS(1553), + [anon_sym_in] = ACTIONS(1553), + [anon_sym_out] = ACTIONS(1553), + [anon_sym_inout] = ACTIONS(1553), + [anon_sym_bycopy] = ACTIONS(1553), + [anon_sym_byref] = ACTIONS(1553), + [anon_sym_oneway] = ACTIONS(1553), + [anon_sym__Nullable] = ACTIONS(1553), + [anon_sym__Nonnull] = ACTIONS(1553), + [anon_sym__Nullable_result] = ACTIONS(1553), + [anon_sym__Null_unspecified] = ACTIONS(1553), + [anon_sym___autoreleasing] = ACTIONS(1553), + [anon_sym___nullable] = ACTIONS(1553), + [anon_sym___nonnull] = ACTIONS(1553), + [anon_sym___strong] = ACTIONS(1553), + [anon_sym___weak] = ACTIONS(1553), + [anon_sym___bridge] = ACTIONS(1553), + [anon_sym___bridge_transfer] = ACTIONS(1553), + [anon_sym___bridge_retained] = ACTIONS(1553), + [anon_sym___unsafe_unretained] = ACTIONS(1553), + [anon_sym___block] = ACTIONS(1553), + [anon_sym___kindof] = ACTIONS(1553), + [anon_sym___unused] = ACTIONS(1553), + [anon_sym__Complex] = ACTIONS(1553), + [anon_sym___complex] = ACTIONS(1553), + [anon_sym_IBOutlet] = ACTIONS(1553), + [anon_sym_IBInspectable] = ACTIONS(1553), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1553), + [anon_sym_signed] = ACTIONS(1553), + [anon_sym_unsigned] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [sym_primitive_type] = ACTIONS(1553), + [anon_sym_enum] = ACTIONS(1553), + [anon_sym_struct] = ACTIONS(1553), + [anon_sym_union] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_else] = ACTIONS(1555), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_goto] = ACTIONS(1553), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_sizeof] = ACTIONS(1553), + [sym_number_literal] = ACTIONS(1551), + [anon_sym_L_SQUOTE] = ACTIONS(1551), + [anon_sym_u_SQUOTE] = ACTIONS(1551), + [anon_sym_U_SQUOTE] = ACTIONS(1551), + [anon_sym_u8_SQUOTE] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_L_DQUOTE] = ACTIONS(1551), + [anon_sym_u_DQUOTE] = ACTIONS(1551), + [anon_sym_U_DQUOTE] = ACTIONS(1551), + [anon_sym_u8_DQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym_true] = ACTIONS(1553), + [sym_false] = ACTIONS(1553), + [sym_null] = ACTIONS(1553), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1551), + [anon_sym_ATimport] = ACTIONS(1551), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1553), + [anon_sym_ATcompatibility_alias] = ACTIONS(1551), + [anon_sym_ATprotocol] = ACTIONS(1551), + [anon_sym_ATclass] = ACTIONS(1551), + [anon_sym_ATinterface] = ACTIONS(1551), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1553), + [sym_method_attribute_specifier] = ACTIONS(1553), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1553), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1553), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1553), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1553), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1553), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1553), + [anon_sym_NS_AVAILABLE] = ACTIONS(1553), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1553), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1553), + [anon_sym_API_AVAILABLE] = ACTIONS(1553), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1553), + [anon_sym_API_DEPRECATED] = ACTIONS(1553), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1553), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1553), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1553), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1553), + [anon_sym___deprecated_msg] = ACTIONS(1553), + [anon_sym___deprecated_enum_msg] = ACTIONS(1553), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1553), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1553), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1553), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1553), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1553), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1553), + [anon_sym_ATimplementation] = ACTIONS(1551), + [anon_sym_NS_ENUM] = ACTIONS(1553), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1553), + [anon_sym_NS_OPTIONS] = ACTIONS(1553), + [anon_sym_typeof] = ACTIONS(1553), + [anon_sym___typeof] = ACTIONS(1553), + [anon_sym___typeof__] = ACTIONS(1553), + [sym_self] = ACTIONS(1553), + [sym_super] = ACTIONS(1553), + [sym_nil] = ACTIONS(1553), + [sym_id] = ACTIONS(1553), + [sym_instancetype] = ACTIONS(1553), + [sym_Class] = ACTIONS(1553), + [sym_SEL] = ACTIONS(1553), + [sym_IMP] = ACTIONS(1553), + [sym_BOOL] = ACTIONS(1553), + [sym_auto] = ACTIONS(1553), [anon_sym_ATautoreleasepool] = ACTIONS(1551), [anon_sym_ATsynchronized] = ACTIONS(1551), [anon_sym_ATtry] = ACTIONS(1551), @@ -57272,189 +58894,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATthrow] = ACTIONS(1551), [anon_sym_ATselector] = ACTIONS(1551), [anon_sym_ATencode] = ACTIONS(1551), - [anon_sym_AT] = ACTIONS(1549), - [sym_YES] = ACTIONS(1549), - [sym_NO] = ACTIONS(1549), - [anon_sym___builtin_available] = ACTIONS(1549), + [anon_sym_AT] = ACTIONS(1553), + [sym_YES] = ACTIONS(1553), + [sym_NO] = ACTIONS(1553), + [anon_sym___builtin_available] = ACTIONS(1553), [anon_sym_ATavailable] = ACTIONS(1551), - [anon_sym_va_arg] = ACTIONS(1549), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [180] = { - [ts_builtin_sym_end] = ACTIONS(1249), - [sym_identifier] = ACTIONS(1247), - [aux_sym_preproc_include_token1] = ACTIONS(1249), - [aux_sym_preproc_def_token1] = ACTIONS(1249), - [anon_sym_RPAREN] = ACTIONS(1249), - [aux_sym_preproc_if_token1] = ACTIONS(1247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), - [anon_sym_LPAREN2] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1249), - [anon_sym_TILDE] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1249), - [anon_sym_CARET] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym_typedef] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym___attribute] = ACTIONS(1247), - [anon_sym___attribute__] = ACTIONS(1247), - [anon_sym___declspec] = ACTIONS(1247), - [anon_sym___cdecl] = ACTIONS(1247), - [anon_sym___clrcall] = ACTIONS(1247), - [anon_sym___stdcall] = ACTIONS(1247), - [anon_sym___fastcall] = ACTIONS(1247), - [anon_sym___thiscall] = ACTIONS(1247), - [anon_sym___vectorcall] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1249), - [anon_sym_static] = ACTIONS(1247), - [anon_sym_auto] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_inline] = ACTIONS(1247), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_volatile] = ACTIONS(1247), - [anon_sym_restrict] = ACTIONS(1247), - [anon_sym__Atomic] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_out] = ACTIONS(1247), - [anon_sym_inout] = ACTIONS(1247), - [anon_sym_bycopy] = ACTIONS(1247), - [anon_sym_byref] = ACTIONS(1247), - [anon_sym_oneway] = ACTIONS(1247), - [anon_sym__Nullable] = ACTIONS(1247), - [anon_sym__Nonnull] = ACTIONS(1247), - [anon_sym__Nullable_result] = ACTIONS(1247), - [anon_sym__Null_unspecified] = ACTIONS(1247), - [anon_sym___autoreleasing] = ACTIONS(1247), - [anon_sym___nullable] = ACTIONS(1247), - [anon_sym___nonnull] = ACTIONS(1247), - [anon_sym___strong] = ACTIONS(1247), - [anon_sym___weak] = ACTIONS(1247), - [anon_sym___bridge] = ACTIONS(1247), - [anon_sym___bridge_transfer] = ACTIONS(1247), - [anon_sym___bridge_retained] = ACTIONS(1247), - [anon_sym___unsafe_unretained] = ACTIONS(1247), - [anon_sym___block] = ACTIONS(1247), - [anon_sym___kindof] = ACTIONS(1247), - [anon_sym___unused] = ACTIONS(1247), - [anon_sym__Complex] = ACTIONS(1247), - [anon_sym___complex] = ACTIONS(1247), - [anon_sym_IBOutlet] = ACTIONS(1247), - [anon_sym_IBInspectable] = ACTIONS(1247), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1247), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_long] = ACTIONS(1247), - [anon_sym_short] = ACTIONS(1247), - [sym_primitive_type] = ACTIONS(1247), - [anon_sym_enum] = ACTIONS(1247), - [anon_sym_NS_ENUM] = ACTIONS(1247), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1247), - [anon_sym_NS_OPTIONS] = ACTIONS(1247), - [anon_sym_struct] = ACTIONS(1247), - [anon_sym_union] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_else] = ACTIONS(1247), - [anon_sym_switch] = ACTIONS(1247), - [anon_sym_case] = ACTIONS(1247), - [anon_sym_default] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_goto] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1249), - [anon_sym_PLUS_PLUS] = ACTIONS(1249), - [anon_sym_sizeof] = ACTIONS(1247), - [sym_number_literal] = ACTIONS(1249), - [anon_sym_L_SQUOTE] = ACTIONS(1249), - [anon_sym_u_SQUOTE] = ACTIONS(1249), - [anon_sym_U_SQUOTE] = ACTIONS(1249), - [anon_sym_u8_SQUOTE] = ACTIONS(1249), - [anon_sym_SQUOTE] = ACTIONS(1249), - [anon_sym_L_DQUOTE] = ACTIONS(1249), - [anon_sym_u_DQUOTE] = ACTIONS(1249), - [anon_sym_U_DQUOTE] = ACTIONS(1249), - [anon_sym_u8_DQUOTE] = ACTIONS(1249), - [anon_sym_DQUOTE] = ACTIONS(1249), - [sym_true] = ACTIONS(1247), - [sym_false] = ACTIONS(1247), - [sym_null] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1249), - [anon_sym_ATimport] = ACTIONS(1249), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1247), - [anon_sym_ATcompatibility_alias] = ACTIONS(1249), - [anon_sym_ATprotocol] = ACTIONS(1249), - [anon_sym_ATclass] = ACTIONS(1249), - [anon_sym_ATinterface] = ACTIONS(1249), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1247), - [sym_method_attribute_specifier] = ACTIONS(1247), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1247), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1247), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1247), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1247), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1247), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1247), - [anon_sym_NS_AVAILABLE] = ACTIONS(1247), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1247), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1247), - [anon_sym_API_AVAILABLE] = ACTIONS(1247), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1247), - [anon_sym_API_DEPRECATED] = ACTIONS(1247), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1247), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1247), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1247), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1247), - [anon_sym___deprecated_msg] = ACTIONS(1247), - [anon_sym___deprecated_enum_msg] = ACTIONS(1247), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1247), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1247), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1247), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1247), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1247), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1247), - [anon_sym_ATimplementation] = ACTIONS(1249), - [anon_sym_typeof] = ACTIONS(1247), - [anon_sym___typeof] = ACTIONS(1247), - [anon_sym___typeof__] = ACTIONS(1247), - [sym_self] = ACTIONS(1247), - [sym_super] = ACTIONS(1247), - [sym_nil] = ACTIONS(1247), - [sym_id] = ACTIONS(1247), - [sym_instancetype] = ACTIONS(1247), - [sym_Class] = ACTIONS(1247), - [sym_SEL] = ACTIONS(1247), - [sym_IMP] = ACTIONS(1247), - [sym_BOOL] = ACTIONS(1247), - [sym_auto] = ACTIONS(1247), - [anon_sym_ATautoreleasepool] = ACTIONS(1249), - [anon_sym_ATsynchronized] = ACTIONS(1249), - [anon_sym_ATtry] = ACTIONS(1249), - [anon_sym_ATcatch] = ACTIONS(1249), - [anon_sym_ATfinally] = ACTIONS(1249), - [anon_sym_ATthrow] = ACTIONS(1249), - [anon_sym_ATselector] = ACTIONS(1249), - [anon_sym_ATencode] = ACTIONS(1249), - [anon_sym_AT] = ACTIONS(1247), - [sym_YES] = ACTIONS(1247), - [sym_NO] = ACTIONS(1247), - [anon_sym___builtin_available] = ACTIONS(1247), - [anon_sym_ATavailable] = ACTIONS(1249), - [anon_sym_va_arg] = ACTIONS(1247), + [anon_sym_va_arg] = ACTIONS(1553), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -57462,2123 +58907,707 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [181] = { - [ts_builtin_sym_end] = ACTIONS(1537), - [sym_identifier] = ACTIONS(1539), - [aux_sym_preproc_include_token1] = ACTIONS(1537), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [anon_sym_RPAREN] = ACTIONS(1537), - [aux_sym_preproc_if_token1] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_typedef] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym___attribute] = ACTIONS(1539), - [anon_sym___attribute__] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1539), - [anon_sym___cdecl] = ACTIONS(1539), - [anon_sym___clrcall] = ACTIONS(1539), - [anon_sym___stdcall] = ACTIONS(1539), - [anon_sym___fastcall] = ACTIONS(1539), - [anon_sym___thiscall] = ACTIONS(1539), - [anon_sym___vectorcall] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_auto] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_inline] = ACTIONS(1539), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_volatile] = ACTIONS(1539), - [anon_sym_restrict] = ACTIONS(1539), - [anon_sym__Atomic] = ACTIONS(1539), - [anon_sym_in] = ACTIONS(1539), - [anon_sym_out] = ACTIONS(1539), - [anon_sym_inout] = ACTIONS(1539), - [anon_sym_bycopy] = ACTIONS(1539), - [anon_sym_byref] = ACTIONS(1539), - [anon_sym_oneway] = ACTIONS(1539), - [anon_sym__Nullable] = ACTIONS(1539), - [anon_sym__Nonnull] = ACTIONS(1539), - [anon_sym__Nullable_result] = ACTIONS(1539), - [anon_sym__Null_unspecified] = ACTIONS(1539), - [anon_sym___autoreleasing] = ACTIONS(1539), - [anon_sym___nullable] = ACTIONS(1539), - [anon_sym___nonnull] = ACTIONS(1539), - [anon_sym___strong] = ACTIONS(1539), - [anon_sym___weak] = ACTIONS(1539), - [anon_sym___bridge] = ACTIONS(1539), - [anon_sym___bridge_transfer] = ACTIONS(1539), - [anon_sym___bridge_retained] = ACTIONS(1539), - [anon_sym___unsafe_unretained] = ACTIONS(1539), - [anon_sym___block] = ACTIONS(1539), - [anon_sym___kindof] = ACTIONS(1539), - [anon_sym___unused] = ACTIONS(1539), - [anon_sym__Complex] = ACTIONS(1539), - [anon_sym___complex] = ACTIONS(1539), - [anon_sym_IBOutlet] = ACTIONS(1539), - [anon_sym_IBInspectable] = ACTIONS(1539), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1539), - [anon_sym_signed] = ACTIONS(1539), - [anon_sym_unsigned] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_NS_ENUM] = ACTIONS(1539), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1539), - [anon_sym_NS_OPTIONS] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1539), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1539), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_goto] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1537), - [anon_sym_sizeof] = ACTIONS(1539), - [sym_number_literal] = ACTIONS(1537), - [anon_sym_L_SQUOTE] = ACTIONS(1537), - [anon_sym_u_SQUOTE] = ACTIONS(1537), - [anon_sym_U_SQUOTE] = ACTIONS(1537), - [anon_sym_u8_SQUOTE] = ACTIONS(1537), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_L_DQUOTE] = ACTIONS(1537), - [anon_sym_u_DQUOTE] = ACTIONS(1537), - [anon_sym_U_DQUOTE] = ACTIONS(1537), - [anon_sym_u8_DQUOTE] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym_true] = ACTIONS(1539), - [sym_false] = ACTIONS(1539), - [sym_null] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1537), - [anon_sym_ATimport] = ACTIONS(1537), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1539), - [anon_sym_ATcompatibility_alias] = ACTIONS(1537), - [anon_sym_ATprotocol] = ACTIONS(1537), - [anon_sym_ATclass] = ACTIONS(1537), - [anon_sym_ATinterface] = ACTIONS(1537), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1539), - [sym_method_attribute_specifier] = ACTIONS(1539), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1539), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE] = ACTIONS(1539), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_API_AVAILABLE] = ACTIONS(1539), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_API_DEPRECATED] = ACTIONS(1539), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1539), - [anon_sym___deprecated_msg] = ACTIONS(1539), - [anon_sym___deprecated_enum_msg] = ACTIONS(1539), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1539), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1539), - [anon_sym_ATimplementation] = ACTIONS(1537), - [anon_sym_typeof] = ACTIONS(1539), - [anon_sym___typeof] = ACTIONS(1539), - [anon_sym___typeof__] = ACTIONS(1539), - [sym_self] = ACTIONS(1539), - [sym_super] = ACTIONS(1539), - [sym_nil] = ACTIONS(1539), - [sym_id] = ACTIONS(1539), - [sym_instancetype] = ACTIONS(1539), - [sym_Class] = ACTIONS(1539), - [sym_SEL] = ACTIONS(1539), - [sym_IMP] = ACTIONS(1539), - [sym_BOOL] = ACTIONS(1539), - [sym_auto] = ACTIONS(1539), - [anon_sym_ATautoreleasepool] = ACTIONS(1537), - [anon_sym_ATsynchronized] = ACTIONS(1537), - [anon_sym_ATtry] = ACTIONS(1537), - [anon_sym_ATcatch] = ACTIONS(1537), - [anon_sym_ATfinally] = ACTIONS(1537), - [anon_sym_ATthrow] = ACTIONS(1537), - [anon_sym_ATselector] = ACTIONS(1537), - [anon_sym_ATencode] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1539), - [sym_YES] = ACTIONS(1539), - [sym_NO] = ACTIONS(1539), - [anon_sym___builtin_available] = ACTIONS(1539), - [anon_sym_ATavailable] = ACTIONS(1537), - [anon_sym_va_arg] = ACTIONS(1539), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [182] = { - [ts_builtin_sym_end] = ACTIONS(1553), - [sym_identifier] = ACTIONS(1555), - [aux_sym_preproc_include_token1] = ACTIONS(1553), - [aux_sym_preproc_def_token1] = ACTIONS(1553), - [anon_sym_RPAREN] = ACTIONS(1553), - [aux_sym_preproc_if_token1] = ACTIONS(1555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1555), - [anon_sym_LPAREN2] = ACTIONS(1553), - [anon_sym_BANG] = ACTIONS(1553), - [anon_sym_TILDE] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_PLUS] = ACTIONS(1555), - [anon_sym_STAR] = ACTIONS(1553), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_typedef] = ACTIONS(1555), - [anon_sym_extern] = ACTIONS(1555), - [anon_sym___attribute] = ACTIONS(1555), - [anon_sym___attribute__] = ACTIONS(1555), - [anon_sym___declspec] = ACTIONS(1555), - [anon_sym___cdecl] = ACTIONS(1555), - [anon_sym___clrcall] = ACTIONS(1555), - [anon_sym___stdcall] = ACTIONS(1555), - [anon_sym___fastcall] = ACTIONS(1555), - [anon_sym___thiscall] = ACTIONS(1555), - [anon_sym___vectorcall] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_static] = ACTIONS(1555), - [anon_sym_auto] = ACTIONS(1555), - [anon_sym_register] = ACTIONS(1555), - [anon_sym_inline] = ACTIONS(1555), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1555), - [anon_sym_const] = ACTIONS(1555), - [anon_sym_volatile] = ACTIONS(1555), - [anon_sym_restrict] = ACTIONS(1555), - [anon_sym__Atomic] = ACTIONS(1555), - [anon_sym_in] = ACTIONS(1555), - [anon_sym_out] = ACTIONS(1555), - [anon_sym_inout] = ACTIONS(1555), - [anon_sym_bycopy] = ACTIONS(1555), - [anon_sym_byref] = ACTIONS(1555), - [anon_sym_oneway] = ACTIONS(1555), - [anon_sym__Nullable] = ACTIONS(1555), - [anon_sym__Nonnull] = ACTIONS(1555), - [anon_sym__Nullable_result] = ACTIONS(1555), - [anon_sym__Null_unspecified] = ACTIONS(1555), - [anon_sym___autoreleasing] = ACTIONS(1555), - [anon_sym___nullable] = ACTIONS(1555), - [anon_sym___nonnull] = ACTIONS(1555), - [anon_sym___strong] = ACTIONS(1555), - [anon_sym___weak] = ACTIONS(1555), - [anon_sym___bridge] = ACTIONS(1555), - [anon_sym___bridge_transfer] = ACTIONS(1555), - [anon_sym___bridge_retained] = ACTIONS(1555), - [anon_sym___unsafe_unretained] = ACTIONS(1555), - [anon_sym___block] = ACTIONS(1555), - [anon_sym___kindof] = ACTIONS(1555), - [anon_sym___unused] = ACTIONS(1555), - [anon_sym__Complex] = ACTIONS(1555), - [anon_sym___complex] = ACTIONS(1555), - [anon_sym_IBOutlet] = ACTIONS(1555), - [anon_sym_IBInspectable] = ACTIONS(1555), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1555), - [anon_sym_signed] = ACTIONS(1555), - [anon_sym_unsigned] = ACTIONS(1555), - [anon_sym_long] = ACTIONS(1555), - [anon_sym_short] = ACTIONS(1555), - [sym_primitive_type] = ACTIONS(1555), - [anon_sym_enum] = ACTIONS(1555), - [anon_sym_NS_ENUM] = ACTIONS(1555), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1555), - [anon_sym_NS_OPTIONS] = ACTIONS(1555), - [anon_sym_struct] = ACTIONS(1555), - [anon_sym_union] = ACTIONS(1555), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_else] = ACTIONS(1555), - [anon_sym_switch] = ACTIONS(1555), - [anon_sym_case] = ACTIONS(1555), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_do] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_goto] = ACTIONS(1555), - [anon_sym_DASH_DASH] = ACTIONS(1553), - [anon_sym_PLUS_PLUS] = ACTIONS(1553), - [anon_sym_sizeof] = ACTIONS(1555), - [sym_number_literal] = ACTIONS(1553), - [anon_sym_L_SQUOTE] = ACTIONS(1553), - [anon_sym_u_SQUOTE] = ACTIONS(1553), - [anon_sym_U_SQUOTE] = ACTIONS(1553), - [anon_sym_u8_SQUOTE] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_L_DQUOTE] = ACTIONS(1553), - [anon_sym_u_DQUOTE] = ACTIONS(1553), - [anon_sym_U_DQUOTE] = ACTIONS(1553), - [anon_sym_u8_DQUOTE] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1553), - [sym_true] = ACTIONS(1555), - [sym_false] = ACTIONS(1555), - [sym_null] = ACTIONS(1555), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1553), - [anon_sym_ATimport] = ACTIONS(1553), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1555), - [anon_sym_ATcompatibility_alias] = ACTIONS(1553), - [anon_sym_ATprotocol] = ACTIONS(1553), - [anon_sym_ATclass] = ACTIONS(1553), - [anon_sym_ATinterface] = ACTIONS(1553), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1555), - [sym_method_attribute_specifier] = ACTIONS(1555), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1555), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1555), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1555), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1555), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1555), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1555), - [anon_sym_NS_AVAILABLE] = ACTIONS(1555), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1555), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1555), - [anon_sym_API_AVAILABLE] = ACTIONS(1555), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1555), - [anon_sym_API_DEPRECATED] = ACTIONS(1555), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1555), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1555), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1555), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1555), - [anon_sym___deprecated_msg] = ACTIONS(1555), - [anon_sym___deprecated_enum_msg] = ACTIONS(1555), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1555), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1555), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1555), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1555), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1555), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1555), - [anon_sym_ATimplementation] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), - [anon_sym___typeof] = ACTIONS(1555), - [anon_sym___typeof__] = ACTIONS(1555), - [sym_self] = ACTIONS(1555), - [sym_super] = ACTIONS(1555), - [sym_nil] = ACTIONS(1555), - [sym_id] = ACTIONS(1555), - [sym_instancetype] = ACTIONS(1555), - [sym_Class] = ACTIONS(1555), - [sym_SEL] = ACTIONS(1555), - [sym_IMP] = ACTIONS(1555), - [sym_BOOL] = ACTIONS(1555), - [sym_auto] = ACTIONS(1555), - [anon_sym_ATautoreleasepool] = ACTIONS(1553), - [anon_sym_ATsynchronized] = ACTIONS(1553), - [anon_sym_ATtry] = ACTIONS(1553), - [anon_sym_ATcatch] = ACTIONS(1553), - [anon_sym_ATfinally] = ACTIONS(1553), - [anon_sym_ATthrow] = ACTIONS(1553), - [anon_sym_ATselector] = ACTIONS(1553), - [anon_sym_ATencode] = ACTIONS(1553), - [anon_sym_AT] = ACTIONS(1555), - [sym_YES] = ACTIONS(1555), - [sym_NO] = ACTIONS(1555), - [anon_sym___builtin_available] = ACTIONS(1555), - [anon_sym_ATavailable] = ACTIONS(1553), - [anon_sym_va_arg] = ACTIONS(1555), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [183] = { - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1251), - [aux_sym_preproc_include_token1] = ACTIONS(1253), - [aux_sym_preproc_def_token1] = ACTIONS(1253), - [anon_sym_RPAREN] = ACTIONS(1253), - [aux_sym_preproc_if_token1] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), - [anon_sym_LPAREN2] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_typedef] = ACTIONS(1251), - [anon_sym_extern] = ACTIONS(1251), - [anon_sym___attribute] = ACTIONS(1251), - [anon_sym___attribute__] = ACTIONS(1251), - [anon_sym___declspec] = ACTIONS(1251), - [anon_sym___cdecl] = ACTIONS(1251), - [anon_sym___clrcall] = ACTIONS(1251), - [anon_sym___stdcall] = ACTIONS(1251), - [anon_sym___fastcall] = ACTIONS(1251), - [anon_sym___thiscall] = ACTIONS(1251), - [anon_sym___vectorcall] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1253), - [anon_sym_static] = ACTIONS(1251), - [anon_sym_auto] = ACTIONS(1251), - [anon_sym_register] = ACTIONS(1251), - [anon_sym_inline] = ACTIONS(1251), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_volatile] = ACTIONS(1251), - [anon_sym_restrict] = ACTIONS(1251), - [anon_sym__Atomic] = ACTIONS(1251), - [anon_sym_in] = ACTIONS(1251), - [anon_sym_out] = ACTIONS(1251), - [anon_sym_inout] = ACTIONS(1251), - [anon_sym_bycopy] = ACTIONS(1251), - [anon_sym_byref] = ACTIONS(1251), - [anon_sym_oneway] = ACTIONS(1251), - [anon_sym__Nullable] = ACTIONS(1251), - [anon_sym__Nonnull] = ACTIONS(1251), - [anon_sym__Nullable_result] = ACTIONS(1251), - [anon_sym__Null_unspecified] = ACTIONS(1251), - [anon_sym___autoreleasing] = ACTIONS(1251), - [anon_sym___nullable] = ACTIONS(1251), - [anon_sym___nonnull] = ACTIONS(1251), - [anon_sym___strong] = ACTIONS(1251), - [anon_sym___weak] = ACTIONS(1251), - [anon_sym___bridge] = ACTIONS(1251), - [anon_sym___bridge_transfer] = ACTIONS(1251), - [anon_sym___bridge_retained] = ACTIONS(1251), - [anon_sym___unsafe_unretained] = ACTIONS(1251), - [anon_sym___block] = ACTIONS(1251), - [anon_sym___kindof] = ACTIONS(1251), - [anon_sym___unused] = ACTIONS(1251), - [anon_sym__Complex] = ACTIONS(1251), - [anon_sym___complex] = ACTIONS(1251), - [anon_sym_IBOutlet] = ACTIONS(1251), - [anon_sym_IBInspectable] = ACTIONS(1251), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1251), - [anon_sym_signed] = ACTIONS(1251), - [anon_sym_unsigned] = ACTIONS(1251), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_short] = ACTIONS(1251), - [sym_primitive_type] = ACTIONS(1251), - [anon_sym_enum] = ACTIONS(1251), - [anon_sym_NS_ENUM] = ACTIONS(1251), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1251), - [anon_sym_NS_OPTIONS] = ACTIONS(1251), - [anon_sym_struct] = ACTIONS(1251), - [anon_sym_union] = ACTIONS(1251), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_switch] = ACTIONS(1251), - [anon_sym_case] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1251), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_do] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_return] = ACTIONS(1251), - [anon_sym_break] = ACTIONS(1251), - [anon_sym_continue] = ACTIONS(1251), - [anon_sym_goto] = ACTIONS(1251), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1251), - [sym_number_literal] = ACTIONS(1253), - [anon_sym_L_SQUOTE] = ACTIONS(1253), - [anon_sym_u_SQUOTE] = ACTIONS(1253), - [anon_sym_U_SQUOTE] = ACTIONS(1253), - [anon_sym_u8_SQUOTE] = ACTIONS(1253), - [anon_sym_SQUOTE] = ACTIONS(1253), - [anon_sym_L_DQUOTE] = ACTIONS(1253), - [anon_sym_u_DQUOTE] = ACTIONS(1253), - [anon_sym_U_DQUOTE] = ACTIONS(1253), - [anon_sym_u8_DQUOTE] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym_true] = ACTIONS(1251), - [sym_false] = ACTIONS(1251), - [sym_null] = ACTIONS(1251), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1253), - [anon_sym_ATimport] = ACTIONS(1253), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1251), - [anon_sym_ATcompatibility_alias] = ACTIONS(1253), - [anon_sym_ATprotocol] = ACTIONS(1253), - [anon_sym_ATclass] = ACTIONS(1253), - [anon_sym_ATinterface] = ACTIONS(1253), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1251), - [sym_method_attribute_specifier] = ACTIONS(1251), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1251), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1251), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1251), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1251), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1251), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1251), - [anon_sym_NS_AVAILABLE] = ACTIONS(1251), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1251), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1251), - [anon_sym_API_AVAILABLE] = ACTIONS(1251), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1251), - [anon_sym_API_DEPRECATED] = ACTIONS(1251), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1251), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1251), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1251), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1251), - [anon_sym___deprecated_msg] = ACTIONS(1251), - [anon_sym___deprecated_enum_msg] = ACTIONS(1251), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1251), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1251), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1251), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1251), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1251), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1251), - [anon_sym_ATimplementation] = ACTIONS(1253), - [anon_sym_typeof] = ACTIONS(1251), - [anon_sym___typeof] = ACTIONS(1251), - [anon_sym___typeof__] = ACTIONS(1251), - [sym_self] = ACTIONS(1251), - [sym_super] = ACTIONS(1251), - [sym_nil] = ACTIONS(1251), - [sym_id] = ACTIONS(1251), - [sym_instancetype] = ACTIONS(1251), - [sym_Class] = ACTIONS(1251), - [sym_SEL] = ACTIONS(1251), - [sym_IMP] = ACTIONS(1251), - [sym_BOOL] = ACTIONS(1251), - [sym_auto] = ACTIONS(1251), - [anon_sym_ATautoreleasepool] = ACTIONS(1253), - [anon_sym_ATsynchronized] = ACTIONS(1253), - [anon_sym_ATtry] = ACTIONS(1253), - [anon_sym_ATcatch] = ACTIONS(1253), - [anon_sym_ATfinally] = ACTIONS(1253), - [anon_sym_ATthrow] = ACTIONS(1253), - [anon_sym_ATselector] = ACTIONS(1253), - [anon_sym_ATencode] = ACTIONS(1253), - [anon_sym_AT] = ACTIONS(1251), - [sym_YES] = ACTIONS(1251), - [sym_NO] = ACTIONS(1251), - [anon_sym___builtin_available] = ACTIONS(1251), - [anon_sym_ATavailable] = ACTIONS(1253), - [anon_sym_va_arg] = ACTIONS(1251), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [184] = { - [ts_builtin_sym_end] = ACTIONS(1545), - [sym_identifier] = ACTIONS(1547), - [aux_sym_preproc_include_token1] = ACTIONS(1545), - [aux_sym_preproc_def_token1] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1545), - [aux_sym_preproc_if_token1] = ACTIONS(1547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1547), - [anon_sym_LPAREN2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1545), - [anon_sym_TILDE] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_typedef] = ACTIONS(1547), - [anon_sym_extern] = ACTIONS(1547), - [anon_sym___attribute] = ACTIONS(1547), - [anon_sym___attribute__] = ACTIONS(1547), - [anon_sym___declspec] = ACTIONS(1547), - [anon_sym___cdecl] = ACTIONS(1547), - [anon_sym___clrcall] = ACTIONS(1547), - [anon_sym___stdcall] = ACTIONS(1547), - [anon_sym___fastcall] = ACTIONS(1547), - [anon_sym___thiscall] = ACTIONS(1547), - [anon_sym___vectorcall] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_auto] = ACTIONS(1547), - [anon_sym_register] = ACTIONS(1547), - [anon_sym_inline] = ACTIONS(1547), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1547), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_volatile] = ACTIONS(1547), - [anon_sym_restrict] = ACTIONS(1547), - [anon_sym__Atomic] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(1547), - [anon_sym_out] = ACTIONS(1547), - [anon_sym_inout] = ACTIONS(1547), - [anon_sym_bycopy] = ACTIONS(1547), - [anon_sym_byref] = ACTIONS(1547), - [anon_sym_oneway] = ACTIONS(1547), - [anon_sym__Nullable] = ACTIONS(1547), - [anon_sym__Nonnull] = ACTIONS(1547), - [anon_sym__Nullable_result] = ACTIONS(1547), - [anon_sym__Null_unspecified] = ACTIONS(1547), - [anon_sym___autoreleasing] = ACTIONS(1547), - [anon_sym___nullable] = ACTIONS(1547), - [anon_sym___nonnull] = ACTIONS(1547), - [anon_sym___strong] = ACTIONS(1547), - [anon_sym___weak] = ACTIONS(1547), - [anon_sym___bridge] = ACTIONS(1547), - [anon_sym___bridge_transfer] = ACTIONS(1547), - [anon_sym___bridge_retained] = ACTIONS(1547), - [anon_sym___unsafe_unretained] = ACTIONS(1547), - [anon_sym___block] = ACTIONS(1547), - [anon_sym___kindof] = ACTIONS(1547), - [anon_sym___unused] = ACTIONS(1547), - [anon_sym__Complex] = ACTIONS(1547), - [anon_sym___complex] = ACTIONS(1547), - [anon_sym_IBOutlet] = ACTIONS(1547), - [anon_sym_IBInspectable] = ACTIONS(1547), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1547), - [anon_sym_signed] = ACTIONS(1547), - [anon_sym_unsigned] = ACTIONS(1547), - [anon_sym_long] = ACTIONS(1547), - [anon_sym_short] = ACTIONS(1547), - [sym_primitive_type] = ACTIONS(1547), - [anon_sym_enum] = ACTIONS(1547), - [anon_sym_NS_ENUM] = ACTIONS(1547), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1547), - [anon_sym_NS_OPTIONS] = ACTIONS(1547), - [anon_sym_struct] = ACTIONS(1547), - [anon_sym_union] = ACTIONS(1547), - [anon_sym_if] = ACTIONS(1547), - [anon_sym_else] = ACTIONS(1547), - [anon_sym_switch] = ACTIONS(1547), - [anon_sym_case] = ACTIONS(1547), - [anon_sym_default] = ACTIONS(1547), - [anon_sym_while] = ACTIONS(1547), - [anon_sym_do] = ACTIONS(1547), - [anon_sym_for] = ACTIONS(1547), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1547), - [anon_sym_continue] = ACTIONS(1547), - [anon_sym_goto] = ACTIONS(1547), - [anon_sym_DASH_DASH] = ACTIONS(1545), - [anon_sym_PLUS_PLUS] = ACTIONS(1545), - [anon_sym_sizeof] = ACTIONS(1547), - [sym_number_literal] = ACTIONS(1545), - [anon_sym_L_SQUOTE] = ACTIONS(1545), - [anon_sym_u_SQUOTE] = ACTIONS(1545), - [anon_sym_U_SQUOTE] = ACTIONS(1545), - [anon_sym_u8_SQUOTE] = ACTIONS(1545), - [anon_sym_SQUOTE] = ACTIONS(1545), - [anon_sym_L_DQUOTE] = ACTIONS(1545), - [anon_sym_u_DQUOTE] = ACTIONS(1545), - [anon_sym_U_DQUOTE] = ACTIONS(1545), - [anon_sym_u8_DQUOTE] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [sym_true] = ACTIONS(1547), - [sym_false] = ACTIONS(1547), - [sym_null] = ACTIONS(1547), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1545), - [anon_sym_ATimport] = ACTIONS(1545), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1547), - [anon_sym_ATcompatibility_alias] = ACTIONS(1545), - [anon_sym_ATprotocol] = ACTIONS(1545), - [anon_sym_ATclass] = ACTIONS(1545), - [anon_sym_ATinterface] = ACTIONS(1545), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1547), - [sym_method_attribute_specifier] = ACTIONS(1547), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1547), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1547), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1547), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1547), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1547), - [anon_sym_NS_AVAILABLE] = ACTIONS(1547), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1547), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_API_AVAILABLE] = ACTIONS(1547), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_API_DEPRECATED] = ACTIONS(1547), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1547), - [anon_sym___deprecated_msg] = ACTIONS(1547), - [anon_sym___deprecated_enum_msg] = ACTIONS(1547), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1547), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1547), - [anon_sym_ATimplementation] = ACTIONS(1545), - [anon_sym_typeof] = ACTIONS(1547), - [anon_sym___typeof] = ACTIONS(1547), - [anon_sym___typeof__] = ACTIONS(1547), - [sym_self] = ACTIONS(1547), - [sym_super] = ACTIONS(1547), - [sym_nil] = ACTIONS(1547), - [sym_id] = ACTIONS(1547), - [sym_instancetype] = ACTIONS(1547), - [sym_Class] = ACTIONS(1547), - [sym_SEL] = ACTIONS(1547), - [sym_IMP] = ACTIONS(1547), - [sym_BOOL] = ACTIONS(1547), - [sym_auto] = ACTIONS(1547), - [anon_sym_ATautoreleasepool] = ACTIONS(1545), - [anon_sym_ATsynchronized] = ACTIONS(1545), - [anon_sym_ATtry] = ACTIONS(1545), - [anon_sym_ATcatch] = ACTIONS(1545), - [anon_sym_ATfinally] = ACTIONS(1545), - [anon_sym_ATthrow] = ACTIONS(1545), - [anon_sym_ATselector] = ACTIONS(1545), - [anon_sym_ATencode] = ACTIONS(1545), - [anon_sym_AT] = ACTIONS(1547), - [sym_YES] = ACTIONS(1547), - [sym_NO] = ACTIONS(1547), - [anon_sym___builtin_available] = ACTIONS(1547), - [anon_sym_ATavailable] = ACTIONS(1545), - [anon_sym_va_arg] = ACTIONS(1547), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [185] = { - [sym_identifier] = ACTIONS(1557), - [aux_sym_preproc_include_token1] = ACTIONS(1559), - [aux_sym_preproc_def_token1] = ACTIONS(1559), - [aux_sym_preproc_if_token1] = ACTIONS(1557), - [aux_sym_preproc_if_token2] = ACTIONS(1557), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1557), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1557), - [aux_sym_preproc_else_token1] = ACTIONS(1557), - [aux_sym_preproc_elif_token1] = ACTIONS(1557), - [anon_sym_LPAREN2] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_typedef] = ACTIONS(1557), - [anon_sym_extern] = ACTIONS(1557), - [anon_sym___attribute] = ACTIONS(1557), - [anon_sym___attribute__] = ACTIONS(1557), - [anon_sym___declspec] = ACTIONS(1557), - [anon_sym___cdecl] = ACTIONS(1557), - [anon_sym___clrcall] = ACTIONS(1557), - [anon_sym___stdcall] = ACTIONS(1557), - [anon_sym___fastcall] = ACTIONS(1557), - [anon_sym___thiscall] = ACTIONS(1557), - [anon_sym___vectorcall] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_auto] = ACTIONS(1557), - [anon_sym_register] = ACTIONS(1557), - [anon_sym_inline] = ACTIONS(1557), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1557), - [anon_sym_const] = ACTIONS(1557), - [anon_sym_volatile] = ACTIONS(1557), - [anon_sym_restrict] = ACTIONS(1557), - [anon_sym__Atomic] = ACTIONS(1557), - [anon_sym_in] = ACTIONS(1557), - [anon_sym_out] = ACTIONS(1557), - [anon_sym_inout] = ACTIONS(1557), - [anon_sym_bycopy] = ACTIONS(1557), - [anon_sym_byref] = ACTIONS(1557), - [anon_sym_oneway] = ACTIONS(1557), - [anon_sym__Nullable] = ACTIONS(1557), - [anon_sym__Nonnull] = ACTIONS(1557), - [anon_sym__Nullable_result] = ACTIONS(1557), - [anon_sym__Null_unspecified] = ACTIONS(1557), - [anon_sym___autoreleasing] = ACTIONS(1557), - [anon_sym___nullable] = ACTIONS(1557), - [anon_sym___nonnull] = ACTIONS(1557), - [anon_sym___strong] = ACTIONS(1557), - [anon_sym___weak] = ACTIONS(1557), - [anon_sym___bridge] = ACTIONS(1557), - [anon_sym___bridge_transfer] = ACTIONS(1557), - [anon_sym___bridge_retained] = ACTIONS(1557), - [anon_sym___unsafe_unretained] = ACTIONS(1557), - [anon_sym___block] = ACTIONS(1557), - [anon_sym___kindof] = ACTIONS(1557), - [anon_sym___unused] = ACTIONS(1557), - [anon_sym__Complex] = ACTIONS(1557), - [anon_sym___complex] = ACTIONS(1557), - [anon_sym_IBOutlet] = ACTIONS(1557), - [anon_sym_IBInspectable] = ACTIONS(1557), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1557), - [anon_sym_signed] = ACTIONS(1557), - [anon_sym_unsigned] = ACTIONS(1557), - [anon_sym_long] = ACTIONS(1557), - [anon_sym_short] = ACTIONS(1557), - [sym_primitive_type] = ACTIONS(1557), - [anon_sym_enum] = ACTIONS(1557), - [anon_sym_NS_ENUM] = ACTIONS(1557), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1557), - [anon_sym_NS_OPTIONS] = ACTIONS(1557), - [anon_sym_struct] = ACTIONS(1557), - [anon_sym_union] = ACTIONS(1557), - [anon_sym_if] = ACTIONS(1557), - [anon_sym_else] = ACTIONS(1557), - [anon_sym_switch] = ACTIONS(1557), - [anon_sym_case] = ACTIONS(1557), - [anon_sym_default] = ACTIONS(1557), - [anon_sym_while] = ACTIONS(1557), - [anon_sym_do] = ACTIONS(1557), - [anon_sym_for] = ACTIONS(1557), - [anon_sym_return] = ACTIONS(1557), - [anon_sym_break] = ACTIONS(1557), - [anon_sym_continue] = ACTIONS(1557), - [anon_sym_goto] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_sizeof] = ACTIONS(1557), - [sym_number_literal] = ACTIONS(1559), - [anon_sym_L_SQUOTE] = ACTIONS(1559), - [anon_sym_u_SQUOTE] = ACTIONS(1559), - [anon_sym_U_SQUOTE] = ACTIONS(1559), - [anon_sym_u8_SQUOTE] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1559), - [anon_sym_L_DQUOTE] = ACTIONS(1559), - [anon_sym_u_DQUOTE] = ACTIONS(1559), - [anon_sym_U_DQUOTE] = ACTIONS(1559), - [anon_sym_u8_DQUOTE] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1559), - [anon_sym_ATimport] = ACTIONS(1559), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1557), - [anon_sym_ATcompatibility_alias] = ACTIONS(1559), - [anon_sym_ATprotocol] = ACTIONS(1559), - [anon_sym_ATclass] = ACTIONS(1559), - [anon_sym_ATinterface] = ACTIONS(1559), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1557), - [sym_method_attribute_specifier] = ACTIONS(1557), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1557), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1557), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1557), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1557), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1557), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1557), - [anon_sym_NS_AVAILABLE] = ACTIONS(1557), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1557), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1557), - [anon_sym_API_AVAILABLE] = ACTIONS(1557), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1557), - [anon_sym_API_DEPRECATED] = ACTIONS(1557), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1557), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1557), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1557), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1557), - [anon_sym___deprecated_msg] = ACTIONS(1557), - [anon_sym___deprecated_enum_msg] = ACTIONS(1557), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1557), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1557), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1557), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1557), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1557), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1557), - [anon_sym_ATimplementation] = ACTIONS(1559), - [anon_sym_typeof] = ACTIONS(1557), - [anon_sym___typeof] = ACTIONS(1557), - [anon_sym___typeof__] = ACTIONS(1557), - [sym_self] = ACTIONS(1557), - [sym_super] = ACTIONS(1557), - [sym_nil] = ACTIONS(1557), - [sym_id] = ACTIONS(1557), - [sym_instancetype] = ACTIONS(1557), - [sym_Class] = ACTIONS(1557), - [sym_SEL] = ACTIONS(1557), - [sym_IMP] = ACTIONS(1557), - [sym_BOOL] = ACTIONS(1557), - [sym_auto] = ACTIONS(1557), - [anon_sym_ATautoreleasepool] = ACTIONS(1559), - [anon_sym_ATsynchronized] = ACTIONS(1559), - [anon_sym_ATtry] = ACTIONS(1559), - [anon_sym_ATcatch] = ACTIONS(1559), - [anon_sym_ATfinally] = ACTIONS(1559), - [anon_sym_ATthrow] = ACTIONS(1559), - [anon_sym_ATselector] = ACTIONS(1559), - [anon_sym_ATencode] = ACTIONS(1559), - [anon_sym_AT] = ACTIONS(1557), - [sym_YES] = ACTIONS(1557), - [sym_NO] = ACTIONS(1557), - [anon_sym___builtin_available] = ACTIONS(1557), - [anon_sym_ATavailable] = ACTIONS(1559), - [anon_sym_va_arg] = ACTIONS(1557), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [186] = { - [sym_identifier] = ACTIONS(1561), - [aux_sym_preproc_include_token1] = ACTIONS(1563), - [aux_sym_preproc_def_token1] = ACTIONS(1563), - [aux_sym_preproc_if_token1] = ACTIONS(1561), - [aux_sym_preproc_if_token2] = ACTIONS(1561), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1561), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1561), - [aux_sym_preproc_else_token1] = ACTIONS(1561), - [aux_sym_preproc_elif_token1] = ACTIONS(1561), - [anon_sym_LPAREN2] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_typedef] = ACTIONS(1561), - [anon_sym_extern] = ACTIONS(1561), - [anon_sym___attribute] = ACTIONS(1561), - [anon_sym___attribute__] = ACTIONS(1561), - [anon_sym___declspec] = ACTIONS(1561), - [anon_sym___cdecl] = ACTIONS(1561), - [anon_sym___clrcall] = ACTIONS(1561), - [anon_sym___stdcall] = ACTIONS(1561), - [anon_sym___fastcall] = ACTIONS(1561), - [anon_sym___thiscall] = ACTIONS(1561), - [anon_sym___vectorcall] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1563), - [anon_sym_static] = ACTIONS(1561), - [anon_sym_auto] = ACTIONS(1561), - [anon_sym_register] = ACTIONS(1561), - [anon_sym_inline] = ACTIONS(1561), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1561), - [anon_sym_const] = ACTIONS(1561), - [anon_sym_volatile] = ACTIONS(1561), - [anon_sym_restrict] = ACTIONS(1561), - [anon_sym__Atomic] = ACTIONS(1561), - [anon_sym_in] = ACTIONS(1561), - [anon_sym_out] = ACTIONS(1561), - [anon_sym_inout] = ACTIONS(1561), - [anon_sym_bycopy] = ACTIONS(1561), - [anon_sym_byref] = ACTIONS(1561), - [anon_sym_oneway] = ACTIONS(1561), - [anon_sym__Nullable] = ACTIONS(1561), - [anon_sym__Nonnull] = ACTIONS(1561), - [anon_sym__Nullable_result] = ACTIONS(1561), - [anon_sym__Null_unspecified] = ACTIONS(1561), - [anon_sym___autoreleasing] = ACTIONS(1561), - [anon_sym___nullable] = ACTIONS(1561), - [anon_sym___nonnull] = ACTIONS(1561), - [anon_sym___strong] = ACTIONS(1561), - [anon_sym___weak] = ACTIONS(1561), - [anon_sym___bridge] = ACTIONS(1561), - [anon_sym___bridge_transfer] = ACTIONS(1561), - [anon_sym___bridge_retained] = ACTIONS(1561), - [anon_sym___unsafe_unretained] = ACTIONS(1561), - [anon_sym___block] = ACTIONS(1561), - [anon_sym___kindof] = ACTIONS(1561), - [anon_sym___unused] = ACTIONS(1561), - [anon_sym__Complex] = ACTIONS(1561), - [anon_sym___complex] = ACTIONS(1561), - [anon_sym_IBOutlet] = ACTIONS(1561), - [anon_sym_IBInspectable] = ACTIONS(1561), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1561), - [anon_sym_signed] = ACTIONS(1561), - [anon_sym_unsigned] = ACTIONS(1561), - [anon_sym_long] = ACTIONS(1561), - [anon_sym_short] = ACTIONS(1561), - [sym_primitive_type] = ACTIONS(1561), - [anon_sym_enum] = ACTIONS(1561), - [anon_sym_NS_ENUM] = ACTIONS(1561), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1561), - [anon_sym_NS_OPTIONS] = ACTIONS(1561), - [anon_sym_struct] = ACTIONS(1561), - [anon_sym_union] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1561), - [anon_sym_else] = ACTIONS(1561), - [anon_sym_switch] = ACTIONS(1561), - [anon_sym_case] = ACTIONS(1561), - [anon_sym_default] = ACTIONS(1561), - [anon_sym_while] = ACTIONS(1561), - [anon_sym_do] = ACTIONS(1561), - [anon_sym_for] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1561), - [anon_sym_break] = ACTIONS(1561), - [anon_sym_continue] = ACTIONS(1561), - [anon_sym_goto] = ACTIONS(1561), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_sizeof] = ACTIONS(1561), - [sym_number_literal] = ACTIONS(1563), - [anon_sym_L_SQUOTE] = ACTIONS(1563), - [anon_sym_u_SQUOTE] = ACTIONS(1563), - [anon_sym_U_SQUOTE] = ACTIONS(1563), - [anon_sym_u8_SQUOTE] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_L_DQUOTE] = ACTIONS(1563), - [anon_sym_u_DQUOTE] = ACTIONS(1563), - [anon_sym_U_DQUOTE] = ACTIONS(1563), - [anon_sym_u8_DQUOTE] = ACTIONS(1563), - [anon_sym_DQUOTE] = ACTIONS(1563), - [sym_true] = ACTIONS(1561), - [sym_false] = ACTIONS(1561), - [sym_null] = ACTIONS(1561), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1563), - [anon_sym_ATimport] = ACTIONS(1563), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1561), - [anon_sym_ATcompatibility_alias] = ACTIONS(1563), - [anon_sym_ATprotocol] = ACTIONS(1563), - [anon_sym_ATclass] = ACTIONS(1563), - [anon_sym_ATinterface] = ACTIONS(1563), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1561), - [sym_method_attribute_specifier] = ACTIONS(1561), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1561), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1561), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1561), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1561), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1561), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1561), - [anon_sym_NS_AVAILABLE] = ACTIONS(1561), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1561), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1561), - [anon_sym_API_AVAILABLE] = ACTIONS(1561), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1561), - [anon_sym_API_DEPRECATED] = ACTIONS(1561), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1561), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1561), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1561), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1561), - [anon_sym___deprecated_msg] = ACTIONS(1561), - [anon_sym___deprecated_enum_msg] = ACTIONS(1561), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1561), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1561), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1561), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1561), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1561), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1561), - [anon_sym_ATimplementation] = ACTIONS(1563), - [anon_sym_typeof] = ACTIONS(1561), - [anon_sym___typeof] = ACTIONS(1561), - [anon_sym___typeof__] = ACTIONS(1561), - [sym_self] = ACTIONS(1561), - [sym_super] = ACTIONS(1561), - [sym_nil] = ACTIONS(1561), - [sym_id] = ACTIONS(1561), - [sym_instancetype] = ACTIONS(1561), - [sym_Class] = ACTIONS(1561), - [sym_SEL] = ACTIONS(1561), - [sym_IMP] = ACTIONS(1561), - [sym_BOOL] = ACTIONS(1561), - [sym_auto] = ACTIONS(1561), - [anon_sym_ATautoreleasepool] = ACTIONS(1563), - [anon_sym_ATsynchronized] = ACTIONS(1563), - [anon_sym_ATtry] = ACTIONS(1563), - [anon_sym_ATcatch] = ACTIONS(1563), - [anon_sym_ATfinally] = ACTIONS(1563), - [anon_sym_ATthrow] = ACTIONS(1563), - [anon_sym_ATselector] = ACTIONS(1563), - [anon_sym_ATencode] = ACTIONS(1563), - [anon_sym_AT] = ACTIONS(1561), - [sym_YES] = ACTIONS(1561), - [sym_NO] = ACTIONS(1561), - [anon_sym___builtin_available] = ACTIONS(1561), - [anon_sym_ATavailable] = ACTIONS(1563), - [anon_sym_va_arg] = ACTIONS(1561), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [187] = { - [sym_identifier] = ACTIONS(1565), - [aux_sym_preproc_include_token1] = ACTIONS(1567), - [aux_sym_preproc_def_token1] = ACTIONS(1567), - [aux_sym_preproc_if_token1] = ACTIONS(1565), - [aux_sym_preproc_if_token2] = ACTIONS(1565), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1565), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1565), - [aux_sym_preproc_else_token1] = ACTIONS(1565), - [aux_sym_preproc_elif_token1] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1567), - [anon_sym_TILDE] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_typedef] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym___attribute] = ACTIONS(1565), - [anon_sym___attribute__] = ACTIONS(1565), - [anon_sym___declspec] = ACTIONS(1565), - [anon_sym___cdecl] = ACTIONS(1565), - [anon_sym___clrcall] = ACTIONS(1565), - [anon_sym___stdcall] = ACTIONS(1565), - [anon_sym___fastcall] = ACTIONS(1565), - [anon_sym___thiscall] = ACTIONS(1565), - [anon_sym___vectorcall] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_static] = ACTIONS(1565), - [anon_sym_auto] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_inline] = ACTIONS(1565), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [anon_sym_volatile] = ACTIONS(1565), - [anon_sym_restrict] = ACTIONS(1565), - [anon_sym__Atomic] = ACTIONS(1565), - [anon_sym_in] = ACTIONS(1565), - [anon_sym_out] = ACTIONS(1565), - [anon_sym_inout] = ACTIONS(1565), - [anon_sym_bycopy] = ACTIONS(1565), - [anon_sym_byref] = ACTIONS(1565), - [anon_sym_oneway] = ACTIONS(1565), - [anon_sym__Nullable] = ACTIONS(1565), - [anon_sym__Nonnull] = ACTIONS(1565), - [anon_sym__Nullable_result] = ACTIONS(1565), - [anon_sym__Null_unspecified] = ACTIONS(1565), - [anon_sym___autoreleasing] = ACTIONS(1565), - [anon_sym___nullable] = ACTIONS(1565), - [anon_sym___nonnull] = ACTIONS(1565), - [anon_sym___strong] = ACTIONS(1565), - [anon_sym___weak] = ACTIONS(1565), - [anon_sym___bridge] = ACTIONS(1565), - [anon_sym___bridge_transfer] = ACTIONS(1565), - [anon_sym___bridge_retained] = ACTIONS(1565), - [anon_sym___unsafe_unretained] = ACTIONS(1565), - [anon_sym___block] = ACTIONS(1565), - [anon_sym___kindof] = ACTIONS(1565), - [anon_sym___unused] = ACTIONS(1565), - [anon_sym__Complex] = ACTIONS(1565), - [anon_sym___complex] = ACTIONS(1565), - [anon_sym_IBOutlet] = ACTIONS(1565), - [anon_sym_IBInspectable] = ACTIONS(1565), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1565), - [anon_sym_signed] = ACTIONS(1565), - [anon_sym_unsigned] = ACTIONS(1565), - [anon_sym_long] = ACTIONS(1565), - [anon_sym_short] = ACTIONS(1565), - [sym_primitive_type] = ACTIONS(1565), - [anon_sym_enum] = ACTIONS(1565), - [anon_sym_NS_ENUM] = ACTIONS(1565), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1565), - [anon_sym_NS_OPTIONS] = ACTIONS(1565), - [anon_sym_struct] = ACTIONS(1565), - [anon_sym_union] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_switch] = ACTIONS(1565), - [anon_sym_case] = ACTIONS(1565), - [anon_sym_default] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_goto] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_PLUS_PLUS] = ACTIONS(1567), - [anon_sym_sizeof] = ACTIONS(1565), - [sym_number_literal] = ACTIONS(1567), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1567), - [anon_sym_u_DQUOTE] = ACTIONS(1567), - [anon_sym_U_DQUOTE] = ACTIONS(1567), - [anon_sym_u8_DQUOTE] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym_true] = ACTIONS(1565), - [sym_false] = ACTIONS(1565), - [sym_null] = ACTIONS(1565), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1567), - [anon_sym_ATimport] = ACTIONS(1567), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1565), - [anon_sym_ATcompatibility_alias] = ACTIONS(1567), - [anon_sym_ATprotocol] = ACTIONS(1567), - [anon_sym_ATclass] = ACTIONS(1567), - [anon_sym_ATinterface] = ACTIONS(1567), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1565), - [sym_method_attribute_specifier] = ACTIONS(1565), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1565), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1565), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1565), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1565), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1565), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1565), - [anon_sym_NS_AVAILABLE] = ACTIONS(1565), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1565), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1565), - [anon_sym_API_AVAILABLE] = ACTIONS(1565), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1565), - [anon_sym_API_DEPRECATED] = ACTIONS(1565), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1565), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1565), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1565), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1565), - [anon_sym___deprecated_msg] = ACTIONS(1565), - [anon_sym___deprecated_enum_msg] = ACTIONS(1565), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1565), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1565), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1565), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1565), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1565), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1565), - [anon_sym_ATimplementation] = ACTIONS(1567), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym___typeof] = ACTIONS(1565), - [anon_sym___typeof__] = ACTIONS(1565), - [sym_self] = ACTIONS(1565), - [sym_super] = ACTIONS(1565), - [sym_nil] = ACTIONS(1565), - [sym_id] = ACTIONS(1565), - [sym_instancetype] = ACTIONS(1565), - [sym_Class] = ACTIONS(1565), - [sym_SEL] = ACTIONS(1565), - [sym_IMP] = ACTIONS(1565), - [sym_BOOL] = ACTIONS(1565), - [sym_auto] = ACTIONS(1565), - [anon_sym_ATautoreleasepool] = ACTIONS(1567), - [anon_sym_ATsynchronized] = ACTIONS(1567), - [anon_sym_ATtry] = ACTIONS(1567), - [anon_sym_ATcatch] = ACTIONS(1567), - [anon_sym_ATfinally] = ACTIONS(1567), - [anon_sym_ATthrow] = ACTIONS(1567), - [anon_sym_ATselector] = ACTIONS(1567), - [anon_sym_ATencode] = ACTIONS(1567), - [anon_sym_AT] = ACTIONS(1565), - [sym_YES] = ACTIONS(1565), - [sym_NO] = ACTIONS(1565), - [anon_sym___builtin_available] = ACTIONS(1565), - [anon_sym_ATavailable] = ACTIONS(1567), - [anon_sym_va_arg] = ACTIONS(1565), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [188] = { - [sym_identifier] = ACTIONS(1569), - [aux_sym_preproc_include_token1] = ACTIONS(1571), - [aux_sym_preproc_def_token1] = ACTIONS(1571), - [aux_sym_preproc_if_token1] = ACTIONS(1569), - [aux_sym_preproc_if_token2] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1569), - [aux_sym_preproc_else_token1] = ACTIONS(1569), - [aux_sym_preproc_elif_token1] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_typedef] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym___attribute] = ACTIONS(1569), - [anon_sym___attribute__] = ACTIONS(1569), - [anon_sym___declspec] = ACTIONS(1569), - [anon_sym___cdecl] = ACTIONS(1569), - [anon_sym___clrcall] = ACTIONS(1569), - [anon_sym___stdcall] = ACTIONS(1569), - [anon_sym___fastcall] = ACTIONS(1569), - [anon_sym___thiscall] = ACTIONS(1569), - [anon_sym___vectorcall] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_auto] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_inline] = ACTIONS(1569), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [anon_sym_volatile] = ACTIONS(1569), - [anon_sym_restrict] = ACTIONS(1569), - [anon_sym__Atomic] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_out] = ACTIONS(1569), - [anon_sym_inout] = ACTIONS(1569), - [anon_sym_bycopy] = ACTIONS(1569), - [anon_sym_byref] = ACTIONS(1569), - [anon_sym_oneway] = ACTIONS(1569), - [anon_sym__Nullable] = ACTIONS(1569), - [anon_sym__Nonnull] = ACTIONS(1569), - [anon_sym__Nullable_result] = ACTIONS(1569), - [anon_sym__Null_unspecified] = ACTIONS(1569), - [anon_sym___autoreleasing] = ACTIONS(1569), - [anon_sym___nullable] = ACTIONS(1569), - [anon_sym___nonnull] = ACTIONS(1569), - [anon_sym___strong] = ACTIONS(1569), - [anon_sym___weak] = ACTIONS(1569), - [anon_sym___bridge] = ACTIONS(1569), - [anon_sym___bridge_transfer] = ACTIONS(1569), - [anon_sym___bridge_retained] = ACTIONS(1569), - [anon_sym___unsafe_unretained] = ACTIONS(1569), - [anon_sym___block] = ACTIONS(1569), - [anon_sym___kindof] = ACTIONS(1569), - [anon_sym___unused] = ACTIONS(1569), - [anon_sym__Complex] = ACTIONS(1569), - [anon_sym___complex] = ACTIONS(1569), - [anon_sym_IBOutlet] = ACTIONS(1569), - [anon_sym_IBInspectable] = ACTIONS(1569), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1569), - [anon_sym_signed] = ACTIONS(1569), - [anon_sym_unsigned] = ACTIONS(1569), - [anon_sym_long] = ACTIONS(1569), - [anon_sym_short] = ACTIONS(1569), - [sym_primitive_type] = ACTIONS(1569), - [anon_sym_enum] = ACTIONS(1569), - [anon_sym_NS_ENUM] = ACTIONS(1569), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1569), - [anon_sym_NS_OPTIONS] = ACTIONS(1569), - [anon_sym_struct] = ACTIONS(1569), - [anon_sym_union] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_switch] = ACTIONS(1569), - [anon_sym_case] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_goto] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_sizeof] = ACTIONS(1569), - [sym_number_literal] = ACTIONS(1571), - [anon_sym_L_SQUOTE] = ACTIONS(1571), - [anon_sym_u_SQUOTE] = ACTIONS(1571), - [anon_sym_U_SQUOTE] = ACTIONS(1571), - [anon_sym_u8_SQUOTE] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [anon_sym_L_DQUOTE] = ACTIONS(1571), - [anon_sym_u_DQUOTE] = ACTIONS(1571), - [anon_sym_U_DQUOTE] = ACTIONS(1571), - [anon_sym_u8_DQUOTE] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym_true] = ACTIONS(1569), - [sym_false] = ACTIONS(1569), - [sym_null] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1571), - [anon_sym_ATimport] = ACTIONS(1571), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1569), - [anon_sym_ATcompatibility_alias] = ACTIONS(1571), - [anon_sym_ATprotocol] = ACTIONS(1571), - [anon_sym_ATclass] = ACTIONS(1571), - [anon_sym_ATinterface] = ACTIONS(1571), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1569), - [sym_method_attribute_specifier] = ACTIONS(1569), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1569), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1569), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1569), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1569), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1569), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1569), - [anon_sym_NS_AVAILABLE] = ACTIONS(1569), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1569), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1569), - [anon_sym_API_AVAILABLE] = ACTIONS(1569), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1569), - [anon_sym_API_DEPRECATED] = ACTIONS(1569), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1569), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1569), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1569), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1569), - [anon_sym___deprecated_msg] = ACTIONS(1569), - [anon_sym___deprecated_enum_msg] = ACTIONS(1569), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1569), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1569), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1569), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1569), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1569), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1569), - [anon_sym_ATimplementation] = ACTIONS(1571), - [anon_sym_typeof] = ACTIONS(1569), - [anon_sym___typeof] = ACTIONS(1569), - [anon_sym___typeof__] = ACTIONS(1569), - [sym_self] = ACTIONS(1569), - [sym_super] = ACTIONS(1569), - [sym_nil] = ACTIONS(1569), - [sym_id] = ACTIONS(1569), - [sym_instancetype] = ACTIONS(1569), - [sym_Class] = ACTIONS(1569), - [sym_SEL] = ACTIONS(1569), - [sym_IMP] = ACTIONS(1569), - [sym_BOOL] = ACTIONS(1569), - [sym_auto] = ACTIONS(1569), - [anon_sym_ATautoreleasepool] = ACTIONS(1571), - [anon_sym_ATsynchronized] = ACTIONS(1571), - [anon_sym_ATtry] = ACTIONS(1571), - [anon_sym_ATcatch] = ACTIONS(1571), - [anon_sym_ATfinally] = ACTIONS(1571), - [anon_sym_ATthrow] = ACTIONS(1571), - [anon_sym_ATselector] = ACTIONS(1571), - [anon_sym_ATencode] = ACTIONS(1571), - [anon_sym_AT] = ACTIONS(1569), - [sym_YES] = ACTIONS(1569), - [sym_NO] = ACTIONS(1569), - [anon_sym___builtin_available] = ACTIONS(1569), - [anon_sym_ATavailable] = ACTIONS(1571), - [anon_sym_va_arg] = ACTIONS(1569), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, [189] = { - [ts_builtin_sym_end] = ACTIONS(1573), - [sym_identifier] = ACTIONS(1575), - [aux_sym_preproc_include_token1] = ACTIONS(1573), - [aux_sym_preproc_def_token1] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(1573), - [aux_sym_preproc_if_token1] = ACTIONS(1575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1575), - [anon_sym_LPAREN2] = ACTIONS(1573), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_typedef] = ACTIONS(1575), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym___attribute] = ACTIONS(1575), - [anon_sym___attribute__] = ACTIONS(1575), - [anon_sym___declspec] = ACTIONS(1575), - [anon_sym___cdecl] = ACTIONS(1575), - [anon_sym___clrcall] = ACTIONS(1575), - [anon_sym___stdcall] = ACTIONS(1575), - [anon_sym___fastcall] = ACTIONS(1575), - [anon_sym___thiscall] = ACTIONS(1575), - [anon_sym___vectorcall] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_LBRACK] = ACTIONS(1573), - [anon_sym_static] = ACTIONS(1575), - [anon_sym_auto] = ACTIONS(1575), - [anon_sym_register] = ACTIONS(1575), - [anon_sym_inline] = ACTIONS(1575), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [anon_sym_volatile] = ACTIONS(1575), - [anon_sym_restrict] = ACTIONS(1575), - [anon_sym__Atomic] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_out] = ACTIONS(1575), - [anon_sym_inout] = ACTIONS(1575), - [anon_sym_bycopy] = ACTIONS(1575), - [anon_sym_byref] = ACTIONS(1575), - [anon_sym_oneway] = ACTIONS(1575), - [anon_sym__Nullable] = ACTIONS(1575), - [anon_sym__Nonnull] = ACTIONS(1575), - [anon_sym__Nullable_result] = ACTIONS(1575), - [anon_sym__Null_unspecified] = ACTIONS(1575), - [anon_sym___autoreleasing] = ACTIONS(1575), - [anon_sym___nullable] = ACTIONS(1575), - [anon_sym___nonnull] = ACTIONS(1575), - [anon_sym___strong] = ACTIONS(1575), - [anon_sym___weak] = ACTIONS(1575), - [anon_sym___bridge] = ACTIONS(1575), - [anon_sym___bridge_transfer] = ACTIONS(1575), - [anon_sym___bridge_retained] = ACTIONS(1575), - [anon_sym___unsafe_unretained] = ACTIONS(1575), - [anon_sym___block] = ACTIONS(1575), - [anon_sym___kindof] = ACTIONS(1575), - [anon_sym___unused] = ACTIONS(1575), - [anon_sym__Complex] = ACTIONS(1575), - [anon_sym___complex] = ACTIONS(1575), - [anon_sym_IBOutlet] = ACTIONS(1575), - [anon_sym_IBInspectable] = ACTIONS(1575), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1575), - [anon_sym_signed] = ACTIONS(1575), - [anon_sym_unsigned] = ACTIONS(1575), - [anon_sym_long] = ACTIONS(1575), - [anon_sym_short] = ACTIONS(1575), - [sym_primitive_type] = ACTIONS(1575), - [anon_sym_enum] = ACTIONS(1575), - [anon_sym_NS_ENUM] = ACTIONS(1575), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1575), - [anon_sym_NS_OPTIONS] = ACTIONS(1575), - [anon_sym_struct] = ACTIONS(1575), - [anon_sym_union] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_else] = ACTIONS(1575), - [anon_sym_switch] = ACTIONS(1575), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_goto] = ACTIONS(1575), - [anon_sym_DASH_DASH] = ACTIONS(1573), - [anon_sym_PLUS_PLUS] = ACTIONS(1573), - [anon_sym_sizeof] = ACTIONS(1575), - [sym_number_literal] = ACTIONS(1573), - [anon_sym_L_SQUOTE] = ACTIONS(1573), - [anon_sym_u_SQUOTE] = ACTIONS(1573), - [anon_sym_U_SQUOTE] = ACTIONS(1573), - [anon_sym_u8_SQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1573), - [anon_sym_L_DQUOTE] = ACTIONS(1573), - [anon_sym_u_DQUOTE] = ACTIONS(1573), - [anon_sym_U_DQUOTE] = ACTIONS(1573), - [anon_sym_u8_DQUOTE] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(1573), - [sym_true] = ACTIONS(1575), - [sym_false] = ACTIONS(1575), - [sym_null] = ACTIONS(1575), + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_include_token1] = ACTIONS(1265), + [aux_sym_preproc_def_token1] = ACTIONS(1265), + [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token2] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), + [aux_sym_preproc_else_token1] = ACTIONS(1267), + [aux_sym_preproc_elif_token1] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym_in] = ACTIONS(1267), + [anon_sym_out] = ACTIONS(1267), + [anon_sym_inout] = ACTIONS(1267), + [anon_sym_bycopy] = ACTIONS(1267), + [anon_sym_byref] = ACTIONS(1267), + [anon_sym_oneway] = ACTIONS(1267), + [anon_sym__Nullable] = ACTIONS(1267), + [anon_sym__Nonnull] = ACTIONS(1267), + [anon_sym__Nullable_result] = ACTIONS(1267), + [anon_sym__Null_unspecified] = ACTIONS(1267), + [anon_sym___autoreleasing] = ACTIONS(1267), + [anon_sym___nullable] = ACTIONS(1267), + [anon_sym___nonnull] = ACTIONS(1267), + [anon_sym___strong] = ACTIONS(1267), + [anon_sym___weak] = ACTIONS(1267), + [anon_sym___bridge] = ACTIONS(1267), + [anon_sym___bridge_transfer] = ACTIONS(1267), + [anon_sym___bridge_retained] = ACTIONS(1267), + [anon_sym___unsafe_unretained] = ACTIONS(1267), + [anon_sym___block] = ACTIONS(1267), + [anon_sym___kindof] = ACTIONS(1267), + [anon_sym___unused] = ACTIONS(1267), + [anon_sym__Complex] = ACTIONS(1267), + [anon_sym___complex] = ACTIONS(1267), + [anon_sym_IBOutlet] = ACTIONS(1267), + [anon_sym_IBInspectable] = ACTIONS(1267), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1267), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_sizeof] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1265), + [anon_sym_L_SQUOTE] = ACTIONS(1265), + [anon_sym_u_SQUOTE] = ACTIONS(1265), + [anon_sym_U_SQUOTE] = ACTIONS(1265), + [anon_sym_u8_SQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_L_DQUOTE] = ACTIONS(1265), + [anon_sym_u_DQUOTE] = ACTIONS(1265), + [anon_sym_U_DQUOTE] = ACTIONS(1265), + [anon_sym_u8_DQUOTE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [sym_null] = ACTIONS(1267), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1573), - [anon_sym_ATimport] = ACTIONS(1573), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1575), - [anon_sym_ATcompatibility_alias] = ACTIONS(1573), - [anon_sym_ATprotocol] = ACTIONS(1573), - [anon_sym_ATclass] = ACTIONS(1573), - [anon_sym_ATinterface] = ACTIONS(1573), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1575), - [sym_method_attribute_specifier] = ACTIONS(1575), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1575), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1575), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1575), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1575), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1575), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1575), - [anon_sym_NS_AVAILABLE] = ACTIONS(1575), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1575), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1575), - [anon_sym_API_AVAILABLE] = ACTIONS(1575), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1575), - [anon_sym_API_DEPRECATED] = ACTIONS(1575), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1575), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1575), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1575), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1575), - [anon_sym___deprecated_msg] = ACTIONS(1575), - [anon_sym___deprecated_enum_msg] = ACTIONS(1575), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1575), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1575), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1575), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1575), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1575), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1575), - [anon_sym_ATimplementation] = ACTIONS(1573), - [anon_sym_typeof] = ACTIONS(1575), - [anon_sym___typeof] = ACTIONS(1575), - [anon_sym___typeof__] = ACTIONS(1575), - [sym_self] = ACTIONS(1575), - [sym_super] = ACTIONS(1575), - [sym_nil] = ACTIONS(1575), - [sym_id] = ACTIONS(1575), - [sym_instancetype] = ACTIONS(1575), - [sym_Class] = ACTIONS(1575), - [sym_SEL] = ACTIONS(1575), - [sym_IMP] = ACTIONS(1575), - [sym_BOOL] = ACTIONS(1575), - [sym_auto] = ACTIONS(1575), - [anon_sym_ATautoreleasepool] = ACTIONS(1573), - [anon_sym_ATsynchronized] = ACTIONS(1573), - [anon_sym_ATtry] = ACTIONS(1573), - [anon_sym_ATcatch] = ACTIONS(1573), - [anon_sym_ATfinally] = ACTIONS(1573), - [anon_sym_ATthrow] = ACTIONS(1573), - [anon_sym_ATselector] = ACTIONS(1573), - [anon_sym_ATencode] = ACTIONS(1573), - [anon_sym_AT] = ACTIONS(1575), - [sym_YES] = ACTIONS(1575), - [sym_NO] = ACTIONS(1575), - [anon_sym___builtin_available] = ACTIONS(1575), - [anon_sym_ATavailable] = ACTIONS(1573), - [anon_sym_va_arg] = ACTIONS(1575), + [anon_sym_POUNDimport] = ACTIONS(1265), + [anon_sym_ATimport] = ACTIONS(1265), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1267), + [anon_sym_ATcompatibility_alias] = ACTIONS(1265), + [anon_sym_ATprotocol] = ACTIONS(1265), + [anon_sym_ATclass] = ACTIONS(1265), + [anon_sym_ATinterface] = ACTIONS(1265), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1267), + [sym_method_attribute_specifier] = ACTIONS(1267), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1267), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1267), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1267), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1267), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1267), + [anon_sym_NS_AVAILABLE] = ACTIONS(1267), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1267), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_API_AVAILABLE] = ACTIONS(1267), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_API_DEPRECATED] = ACTIONS(1267), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1267), + [anon_sym___deprecated_msg] = ACTIONS(1267), + [anon_sym___deprecated_enum_msg] = ACTIONS(1267), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1267), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1267), + [anon_sym_ATimplementation] = ACTIONS(1265), + [anon_sym_NS_ENUM] = ACTIONS(1267), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1267), + [anon_sym_NS_OPTIONS] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1267), + [anon_sym___typeof] = ACTIONS(1267), + [anon_sym___typeof__] = ACTIONS(1267), + [sym_self] = ACTIONS(1267), + [sym_super] = ACTIONS(1267), + [sym_nil] = ACTIONS(1267), + [sym_id] = ACTIONS(1267), + [sym_instancetype] = ACTIONS(1267), + [sym_Class] = ACTIONS(1267), + [sym_SEL] = ACTIONS(1267), + [sym_IMP] = ACTIONS(1267), + [sym_BOOL] = ACTIONS(1267), + [sym_auto] = ACTIONS(1267), + [anon_sym_ATautoreleasepool] = ACTIONS(1265), + [anon_sym_ATsynchronized] = ACTIONS(1265), + [anon_sym_ATtry] = ACTIONS(1265), + [anon_sym_ATcatch] = ACTIONS(1265), + [anon_sym_ATfinally] = ACTIONS(1265), + [anon_sym_ATthrow] = ACTIONS(1265), + [anon_sym_ATselector] = ACTIONS(1265), + [anon_sym_ATencode] = ACTIONS(1265), + [anon_sym_AT] = ACTIONS(1267), + [sym_YES] = ACTIONS(1267), + [sym_NO] = ACTIONS(1267), + [anon_sym___builtin_available] = ACTIONS(1267), + [anon_sym_ATavailable] = ACTIONS(1265), + [anon_sym_va_arg] = ACTIONS(1267), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, [190] = { - [ts_builtin_sym_end] = ACTIONS(1577), - [sym_identifier] = ACTIONS(1579), - [aux_sym_preproc_include_token1] = ACTIONS(1577), - [aux_sym_preproc_def_token1] = ACTIONS(1577), - [anon_sym_RPAREN] = ACTIONS(1577), - [aux_sym_preproc_if_token1] = ACTIONS(1579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1579), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_TILDE] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_typedef] = ACTIONS(1579), - [anon_sym_extern] = ACTIONS(1579), - [anon_sym___attribute] = ACTIONS(1579), - [anon_sym___attribute__] = ACTIONS(1579), - [anon_sym___declspec] = ACTIONS(1579), - [anon_sym___cdecl] = ACTIONS(1579), - [anon_sym___clrcall] = ACTIONS(1579), - [anon_sym___stdcall] = ACTIONS(1579), - [anon_sym___fastcall] = ACTIONS(1579), - [anon_sym___thiscall] = ACTIONS(1579), - [anon_sym___vectorcall] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_auto] = ACTIONS(1579), - [anon_sym_register] = ACTIONS(1579), - [anon_sym_inline] = ACTIONS(1579), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_volatile] = ACTIONS(1579), - [anon_sym_restrict] = ACTIONS(1579), - [anon_sym__Atomic] = ACTIONS(1579), - [anon_sym_in] = ACTIONS(1579), - [anon_sym_out] = ACTIONS(1579), - [anon_sym_inout] = ACTIONS(1579), - [anon_sym_bycopy] = ACTIONS(1579), - [anon_sym_byref] = ACTIONS(1579), - [anon_sym_oneway] = ACTIONS(1579), - [anon_sym__Nullable] = ACTIONS(1579), - [anon_sym__Nonnull] = ACTIONS(1579), - [anon_sym__Nullable_result] = ACTIONS(1579), - [anon_sym__Null_unspecified] = ACTIONS(1579), - [anon_sym___autoreleasing] = ACTIONS(1579), - [anon_sym___nullable] = ACTIONS(1579), - [anon_sym___nonnull] = ACTIONS(1579), - [anon_sym___strong] = ACTIONS(1579), - [anon_sym___weak] = ACTIONS(1579), - [anon_sym___bridge] = ACTIONS(1579), - [anon_sym___bridge_transfer] = ACTIONS(1579), - [anon_sym___bridge_retained] = ACTIONS(1579), - [anon_sym___unsafe_unretained] = ACTIONS(1579), - [anon_sym___block] = ACTIONS(1579), - [anon_sym___kindof] = ACTIONS(1579), - [anon_sym___unused] = ACTIONS(1579), - [anon_sym__Complex] = ACTIONS(1579), - [anon_sym___complex] = ACTIONS(1579), - [anon_sym_IBOutlet] = ACTIONS(1579), - [anon_sym_IBInspectable] = ACTIONS(1579), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1579), - [anon_sym_signed] = ACTIONS(1579), - [anon_sym_unsigned] = ACTIONS(1579), - [anon_sym_long] = ACTIONS(1579), - [anon_sym_short] = ACTIONS(1579), - [sym_primitive_type] = ACTIONS(1579), - [anon_sym_enum] = ACTIONS(1579), - [anon_sym_NS_ENUM] = ACTIONS(1579), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1579), - [anon_sym_NS_OPTIONS] = ACTIONS(1579), - [anon_sym_struct] = ACTIONS(1579), - [anon_sym_union] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_else] = ACTIONS(1579), - [anon_sym_switch] = ACTIONS(1579), - [anon_sym_case] = ACTIONS(1579), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_goto] = ACTIONS(1579), - [anon_sym_DASH_DASH] = ACTIONS(1577), - [anon_sym_PLUS_PLUS] = ACTIONS(1577), - [anon_sym_sizeof] = ACTIONS(1579), - [sym_number_literal] = ACTIONS(1577), - [anon_sym_L_SQUOTE] = ACTIONS(1577), - [anon_sym_u_SQUOTE] = ACTIONS(1577), - [anon_sym_U_SQUOTE] = ACTIONS(1577), - [anon_sym_u8_SQUOTE] = ACTIONS(1577), - [anon_sym_SQUOTE] = ACTIONS(1577), - [anon_sym_L_DQUOTE] = ACTIONS(1577), - [anon_sym_u_DQUOTE] = ACTIONS(1577), - [anon_sym_U_DQUOTE] = ACTIONS(1577), - [anon_sym_u8_DQUOTE] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1577), - [sym_true] = ACTIONS(1579), - [sym_false] = ACTIONS(1579), - [sym_null] = ACTIONS(1579), + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_include_token1] = ACTIONS(1265), + [aux_sym_preproc_def_token1] = ACTIONS(1265), + [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token2] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), + [aux_sym_preproc_else_token1] = ACTIONS(1267), + [aux_sym_preproc_elif_token1] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym_in] = ACTIONS(1267), + [anon_sym_out] = ACTIONS(1267), + [anon_sym_inout] = ACTIONS(1267), + [anon_sym_bycopy] = ACTIONS(1267), + [anon_sym_byref] = ACTIONS(1267), + [anon_sym_oneway] = ACTIONS(1267), + [anon_sym__Nullable] = ACTIONS(1267), + [anon_sym__Nonnull] = ACTIONS(1267), + [anon_sym__Nullable_result] = ACTIONS(1267), + [anon_sym__Null_unspecified] = ACTIONS(1267), + [anon_sym___autoreleasing] = ACTIONS(1267), + [anon_sym___nullable] = ACTIONS(1267), + [anon_sym___nonnull] = ACTIONS(1267), + [anon_sym___strong] = ACTIONS(1267), + [anon_sym___weak] = ACTIONS(1267), + [anon_sym___bridge] = ACTIONS(1267), + [anon_sym___bridge_transfer] = ACTIONS(1267), + [anon_sym___bridge_retained] = ACTIONS(1267), + [anon_sym___unsafe_unretained] = ACTIONS(1267), + [anon_sym___block] = ACTIONS(1267), + [anon_sym___kindof] = ACTIONS(1267), + [anon_sym___unused] = ACTIONS(1267), + [anon_sym__Complex] = ACTIONS(1267), + [anon_sym___complex] = ACTIONS(1267), + [anon_sym_IBOutlet] = ACTIONS(1267), + [anon_sym_IBInspectable] = ACTIONS(1267), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1267), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_sizeof] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1265), + [anon_sym_L_SQUOTE] = ACTIONS(1265), + [anon_sym_u_SQUOTE] = ACTIONS(1265), + [anon_sym_U_SQUOTE] = ACTIONS(1265), + [anon_sym_u8_SQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_L_DQUOTE] = ACTIONS(1265), + [anon_sym_u_DQUOTE] = ACTIONS(1265), + [anon_sym_U_DQUOTE] = ACTIONS(1265), + [anon_sym_u8_DQUOTE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [sym_null] = ACTIONS(1267), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1577), - [anon_sym_ATimport] = ACTIONS(1577), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1579), - [anon_sym_ATcompatibility_alias] = ACTIONS(1577), - [anon_sym_ATprotocol] = ACTIONS(1577), - [anon_sym_ATclass] = ACTIONS(1577), - [anon_sym_ATinterface] = ACTIONS(1577), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1579), - [sym_method_attribute_specifier] = ACTIONS(1579), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1579), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1579), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1579), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1579), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1579), - [anon_sym_NS_AVAILABLE] = ACTIONS(1579), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1579), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_API_AVAILABLE] = ACTIONS(1579), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_API_DEPRECATED] = ACTIONS(1579), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1579), - [anon_sym___deprecated_msg] = ACTIONS(1579), - [anon_sym___deprecated_enum_msg] = ACTIONS(1579), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1579), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1579), - [anon_sym_ATimplementation] = ACTIONS(1577), - [anon_sym_typeof] = ACTIONS(1579), - [anon_sym___typeof] = ACTIONS(1579), - [anon_sym___typeof__] = ACTIONS(1579), - [sym_self] = ACTIONS(1579), - [sym_super] = ACTIONS(1579), - [sym_nil] = ACTIONS(1579), - [sym_id] = ACTIONS(1579), - [sym_instancetype] = ACTIONS(1579), - [sym_Class] = ACTIONS(1579), - [sym_SEL] = ACTIONS(1579), - [sym_IMP] = ACTIONS(1579), - [sym_BOOL] = ACTIONS(1579), - [sym_auto] = ACTIONS(1579), - [anon_sym_ATautoreleasepool] = ACTIONS(1577), - [anon_sym_ATsynchronized] = ACTIONS(1577), - [anon_sym_ATtry] = ACTIONS(1577), - [anon_sym_ATcatch] = ACTIONS(1577), - [anon_sym_ATfinally] = ACTIONS(1577), - [anon_sym_ATthrow] = ACTIONS(1577), - [anon_sym_ATselector] = ACTIONS(1577), - [anon_sym_ATencode] = ACTIONS(1577), - [anon_sym_AT] = ACTIONS(1579), - [sym_YES] = ACTIONS(1579), - [sym_NO] = ACTIONS(1579), - [anon_sym___builtin_available] = ACTIONS(1579), - [anon_sym_ATavailable] = ACTIONS(1577), - [anon_sym_va_arg] = ACTIONS(1579), + [anon_sym_POUNDimport] = ACTIONS(1265), + [anon_sym_ATimport] = ACTIONS(1265), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1267), + [anon_sym_ATcompatibility_alias] = ACTIONS(1265), + [anon_sym_ATprotocol] = ACTIONS(1265), + [anon_sym_ATclass] = ACTIONS(1265), + [anon_sym_ATinterface] = ACTIONS(1265), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1267), + [sym_method_attribute_specifier] = ACTIONS(1267), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1267), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1267), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1267), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1267), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1267), + [anon_sym_NS_AVAILABLE] = ACTIONS(1267), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1267), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_API_AVAILABLE] = ACTIONS(1267), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_API_DEPRECATED] = ACTIONS(1267), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1267), + [anon_sym___deprecated_msg] = ACTIONS(1267), + [anon_sym___deprecated_enum_msg] = ACTIONS(1267), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1267), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1267), + [anon_sym_ATimplementation] = ACTIONS(1265), + [anon_sym_NS_ENUM] = ACTIONS(1267), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1267), + [anon_sym_NS_OPTIONS] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1267), + [anon_sym___typeof] = ACTIONS(1267), + [anon_sym___typeof__] = ACTIONS(1267), + [sym_self] = ACTIONS(1267), + [sym_super] = ACTIONS(1267), + [sym_nil] = ACTIONS(1267), + [sym_id] = ACTIONS(1267), + [sym_instancetype] = ACTIONS(1267), + [sym_Class] = ACTIONS(1267), + [sym_SEL] = ACTIONS(1267), + [sym_IMP] = ACTIONS(1267), + [sym_BOOL] = ACTIONS(1267), + [sym_auto] = ACTIONS(1267), + [anon_sym_ATautoreleasepool] = ACTIONS(1265), + [anon_sym_ATsynchronized] = ACTIONS(1265), + [anon_sym_ATtry] = ACTIONS(1265), + [anon_sym_ATcatch] = ACTIONS(1265), + [anon_sym_ATfinally] = ACTIONS(1265), + [anon_sym_ATthrow] = ACTIONS(1265), + [anon_sym_ATselector] = ACTIONS(1265), + [anon_sym_ATencode] = ACTIONS(1265), + [anon_sym_AT] = ACTIONS(1267), + [sym_YES] = ACTIONS(1267), + [sym_NO] = ACTIONS(1267), + [anon_sym___builtin_available] = ACTIONS(1267), + [anon_sym_ATavailable] = ACTIONS(1265), + [anon_sym_va_arg] = ACTIONS(1267), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, [191] = { - [ts_builtin_sym_end] = ACTIONS(1577), - [sym_identifier] = ACTIONS(1579), - [aux_sym_preproc_include_token1] = ACTIONS(1577), - [aux_sym_preproc_def_token1] = ACTIONS(1577), - [anon_sym_RPAREN] = ACTIONS(1577), - [aux_sym_preproc_if_token1] = ACTIONS(1579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1579), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_TILDE] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_typedef] = ACTIONS(1579), - [anon_sym_extern] = ACTIONS(1579), - [anon_sym___attribute] = ACTIONS(1579), - [anon_sym___attribute__] = ACTIONS(1579), - [anon_sym___declspec] = ACTIONS(1579), - [anon_sym___cdecl] = ACTIONS(1579), - [anon_sym___clrcall] = ACTIONS(1579), - [anon_sym___stdcall] = ACTIONS(1579), - [anon_sym___fastcall] = ACTIONS(1579), - [anon_sym___thiscall] = ACTIONS(1579), - [anon_sym___vectorcall] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_auto] = ACTIONS(1579), - [anon_sym_register] = ACTIONS(1579), - [anon_sym_inline] = ACTIONS(1579), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_volatile] = ACTIONS(1579), - [anon_sym_restrict] = ACTIONS(1579), - [anon_sym__Atomic] = ACTIONS(1579), - [anon_sym_in] = ACTIONS(1579), - [anon_sym_out] = ACTIONS(1579), - [anon_sym_inout] = ACTIONS(1579), - [anon_sym_bycopy] = ACTIONS(1579), - [anon_sym_byref] = ACTIONS(1579), - [anon_sym_oneway] = ACTIONS(1579), - [anon_sym__Nullable] = ACTIONS(1579), - [anon_sym__Nonnull] = ACTIONS(1579), - [anon_sym__Nullable_result] = ACTIONS(1579), - [anon_sym__Null_unspecified] = ACTIONS(1579), - [anon_sym___autoreleasing] = ACTIONS(1579), - [anon_sym___nullable] = ACTIONS(1579), - [anon_sym___nonnull] = ACTIONS(1579), - [anon_sym___strong] = ACTIONS(1579), - [anon_sym___weak] = ACTIONS(1579), - [anon_sym___bridge] = ACTIONS(1579), - [anon_sym___bridge_transfer] = ACTIONS(1579), - [anon_sym___bridge_retained] = ACTIONS(1579), - [anon_sym___unsafe_unretained] = ACTIONS(1579), - [anon_sym___block] = ACTIONS(1579), - [anon_sym___kindof] = ACTIONS(1579), - [anon_sym___unused] = ACTIONS(1579), - [anon_sym__Complex] = ACTIONS(1579), - [anon_sym___complex] = ACTIONS(1579), - [anon_sym_IBOutlet] = ACTIONS(1579), - [anon_sym_IBInspectable] = ACTIONS(1579), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1579), - [anon_sym_signed] = ACTIONS(1579), - [anon_sym_unsigned] = ACTIONS(1579), - [anon_sym_long] = ACTIONS(1579), - [anon_sym_short] = ACTIONS(1579), - [sym_primitive_type] = ACTIONS(1579), - [anon_sym_enum] = ACTIONS(1579), - [anon_sym_NS_ENUM] = ACTIONS(1579), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1579), - [anon_sym_NS_OPTIONS] = ACTIONS(1579), - [anon_sym_struct] = ACTIONS(1579), - [anon_sym_union] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_else] = ACTIONS(1579), - [anon_sym_switch] = ACTIONS(1579), - [anon_sym_case] = ACTIONS(1579), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_goto] = ACTIONS(1579), - [anon_sym_DASH_DASH] = ACTIONS(1577), - [anon_sym_PLUS_PLUS] = ACTIONS(1577), - [anon_sym_sizeof] = ACTIONS(1579), - [sym_number_literal] = ACTIONS(1577), - [anon_sym_L_SQUOTE] = ACTIONS(1577), - [anon_sym_u_SQUOTE] = ACTIONS(1577), - [anon_sym_U_SQUOTE] = ACTIONS(1577), - [anon_sym_u8_SQUOTE] = ACTIONS(1577), - [anon_sym_SQUOTE] = ACTIONS(1577), - [anon_sym_L_DQUOTE] = ACTIONS(1577), - [anon_sym_u_DQUOTE] = ACTIONS(1577), - [anon_sym_U_DQUOTE] = ACTIONS(1577), - [anon_sym_u8_DQUOTE] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1577), - [sym_true] = ACTIONS(1579), - [sym_false] = ACTIONS(1579), - [sym_null] = ACTIONS(1579), + [sym_identifier] = ACTIONS(1263), + [aux_sym_preproc_include_token1] = ACTIONS(1261), + [aux_sym_preproc_def_token1] = ACTIONS(1261), + [aux_sym_preproc_if_token1] = ACTIONS(1263), + [aux_sym_preproc_if_token2] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), + [aux_sym_preproc_else_token1] = ACTIONS(1263), + [aux_sym_preproc_elif_token1] = ACTIONS(1263), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_typedef] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym___attribute] = ACTIONS(1263), + [anon_sym___attribute__] = ACTIONS(1263), + [anon_sym___declspec] = ACTIONS(1263), + [anon_sym___cdecl] = ACTIONS(1263), + [anon_sym___clrcall] = ACTIONS(1263), + [anon_sym___stdcall] = ACTIONS(1263), + [anon_sym___fastcall] = ACTIONS(1263), + [anon_sym___thiscall] = ACTIONS(1263), + [anon_sym___vectorcall] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_auto] = ACTIONS(1263), + [anon_sym_register] = ACTIONS(1263), + [anon_sym_inline] = ACTIONS(1263), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym_in] = ACTIONS(1263), + [anon_sym_out] = ACTIONS(1263), + [anon_sym_inout] = ACTIONS(1263), + [anon_sym_bycopy] = ACTIONS(1263), + [anon_sym_byref] = ACTIONS(1263), + [anon_sym_oneway] = ACTIONS(1263), + [anon_sym__Nullable] = ACTIONS(1263), + [anon_sym__Nonnull] = ACTIONS(1263), + [anon_sym__Nullable_result] = ACTIONS(1263), + [anon_sym__Null_unspecified] = ACTIONS(1263), + [anon_sym___autoreleasing] = ACTIONS(1263), + [anon_sym___nullable] = ACTIONS(1263), + [anon_sym___nonnull] = ACTIONS(1263), + [anon_sym___strong] = ACTIONS(1263), + [anon_sym___weak] = ACTIONS(1263), + [anon_sym___bridge] = ACTIONS(1263), + [anon_sym___bridge_transfer] = ACTIONS(1263), + [anon_sym___bridge_retained] = ACTIONS(1263), + [anon_sym___unsafe_unretained] = ACTIONS(1263), + [anon_sym___block] = ACTIONS(1263), + [anon_sym___kindof] = ACTIONS(1263), + [anon_sym___unused] = ACTIONS(1263), + [anon_sym__Complex] = ACTIONS(1263), + [anon_sym___complex] = ACTIONS(1263), + [anon_sym_IBOutlet] = ACTIONS(1263), + [anon_sym_IBInspectable] = ACTIONS(1263), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1263), + [anon_sym_signed] = ACTIONS(1263), + [anon_sym_unsigned] = ACTIONS(1263), + [anon_sym_long] = ACTIONS(1263), + [anon_sym_short] = ACTIONS(1263), + [sym_primitive_type] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_else] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_goto] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_sizeof] = ACTIONS(1263), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_L_SQUOTE] = ACTIONS(1261), + [anon_sym_u_SQUOTE] = ACTIONS(1261), + [anon_sym_U_SQUOTE] = ACTIONS(1261), + [anon_sym_u8_SQUOTE] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_L_DQUOTE] = ACTIONS(1261), + [anon_sym_u_DQUOTE] = ACTIONS(1261), + [anon_sym_U_DQUOTE] = ACTIONS(1261), + [anon_sym_u8_DQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_true] = ACTIONS(1263), + [sym_false] = ACTIONS(1263), + [sym_null] = ACTIONS(1263), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1577), - [anon_sym_ATimport] = ACTIONS(1577), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1579), - [anon_sym_ATcompatibility_alias] = ACTIONS(1577), - [anon_sym_ATprotocol] = ACTIONS(1577), - [anon_sym_ATclass] = ACTIONS(1577), - [anon_sym_ATinterface] = ACTIONS(1577), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1579), - [sym_method_attribute_specifier] = ACTIONS(1579), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1579), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1579), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1579), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1579), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1579), - [anon_sym_NS_AVAILABLE] = ACTIONS(1579), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1579), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_API_AVAILABLE] = ACTIONS(1579), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_API_DEPRECATED] = ACTIONS(1579), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1579), - [anon_sym___deprecated_msg] = ACTIONS(1579), - [anon_sym___deprecated_enum_msg] = ACTIONS(1579), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1579), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1579), - [anon_sym_ATimplementation] = ACTIONS(1577), - [anon_sym_typeof] = ACTIONS(1579), - [anon_sym___typeof] = ACTIONS(1579), - [anon_sym___typeof__] = ACTIONS(1579), - [sym_self] = ACTIONS(1579), - [sym_super] = ACTIONS(1579), - [sym_nil] = ACTIONS(1579), - [sym_id] = ACTIONS(1579), - [sym_instancetype] = ACTIONS(1579), - [sym_Class] = ACTIONS(1579), - [sym_SEL] = ACTIONS(1579), - [sym_IMP] = ACTIONS(1579), - [sym_BOOL] = ACTIONS(1579), - [sym_auto] = ACTIONS(1579), - [anon_sym_ATautoreleasepool] = ACTIONS(1577), - [anon_sym_ATsynchronized] = ACTIONS(1577), - [anon_sym_ATtry] = ACTIONS(1577), - [anon_sym_ATcatch] = ACTIONS(1577), - [anon_sym_ATfinally] = ACTIONS(1577), - [anon_sym_ATthrow] = ACTIONS(1577), - [anon_sym_ATselector] = ACTIONS(1577), - [anon_sym_ATencode] = ACTIONS(1577), - [anon_sym_AT] = ACTIONS(1579), - [sym_YES] = ACTIONS(1579), - [sym_NO] = ACTIONS(1579), - [anon_sym___builtin_available] = ACTIONS(1579), - [anon_sym_ATavailable] = ACTIONS(1577), - [anon_sym_va_arg] = ACTIONS(1579), + [anon_sym_POUNDimport] = ACTIONS(1261), + [anon_sym_ATimport] = ACTIONS(1261), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1263), + [anon_sym_ATcompatibility_alias] = ACTIONS(1261), + [anon_sym_ATprotocol] = ACTIONS(1261), + [anon_sym_ATclass] = ACTIONS(1261), + [anon_sym_ATinterface] = ACTIONS(1261), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1263), + [sym_method_attribute_specifier] = ACTIONS(1263), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1263), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1263), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1263), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1263), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1263), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1263), + [anon_sym_NS_AVAILABLE] = ACTIONS(1263), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1263), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1263), + [anon_sym_API_AVAILABLE] = ACTIONS(1263), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1263), + [anon_sym_API_DEPRECATED] = ACTIONS(1263), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1263), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1263), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1263), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1263), + [anon_sym___deprecated_msg] = ACTIONS(1263), + [anon_sym___deprecated_enum_msg] = ACTIONS(1263), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1263), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1263), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1263), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1263), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1263), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1263), + [anon_sym_ATimplementation] = ACTIONS(1261), + [anon_sym_NS_ENUM] = ACTIONS(1263), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1263), + [anon_sym_NS_OPTIONS] = ACTIONS(1263), + [anon_sym_typeof] = ACTIONS(1263), + [anon_sym___typeof] = ACTIONS(1263), + [anon_sym___typeof__] = ACTIONS(1263), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1263), + [sym_nil] = ACTIONS(1263), + [sym_id] = ACTIONS(1263), + [sym_instancetype] = ACTIONS(1263), + [sym_Class] = ACTIONS(1263), + [sym_SEL] = ACTIONS(1263), + [sym_IMP] = ACTIONS(1263), + [sym_BOOL] = ACTIONS(1263), + [sym_auto] = ACTIONS(1263), + [anon_sym_ATautoreleasepool] = ACTIONS(1261), + [anon_sym_ATsynchronized] = ACTIONS(1261), + [anon_sym_ATtry] = ACTIONS(1261), + [anon_sym_ATcatch] = ACTIONS(1261), + [anon_sym_ATfinally] = ACTIONS(1261), + [anon_sym_ATthrow] = ACTIONS(1261), + [anon_sym_ATselector] = ACTIONS(1261), + [anon_sym_ATencode] = ACTIONS(1261), + [anon_sym_AT] = ACTIONS(1263), + [sym_YES] = ACTIONS(1263), + [sym_NO] = ACTIONS(1263), + [anon_sym___builtin_available] = ACTIONS(1263), + [anon_sym_ATavailable] = ACTIONS(1261), + [anon_sym_va_arg] = ACTIONS(1263), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, [192] = { - [sym_identifier] = ACTIONS(1579), - [aux_sym_preproc_include_token1] = ACTIONS(1577), - [aux_sym_preproc_def_token1] = ACTIONS(1577), - [aux_sym_preproc_if_token1] = ACTIONS(1579), - [aux_sym_preproc_if_token2] = ACTIONS(1579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1579), - [aux_sym_preproc_else_token1] = ACTIONS(1579), - [aux_sym_preproc_elif_token1] = ACTIONS(1579), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_TILDE] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_typedef] = ACTIONS(1579), - [anon_sym_extern] = ACTIONS(1579), - [anon_sym___attribute] = ACTIONS(1579), - [anon_sym___attribute__] = ACTIONS(1579), - [anon_sym___declspec] = ACTIONS(1579), - [anon_sym___cdecl] = ACTIONS(1579), - [anon_sym___clrcall] = ACTIONS(1579), - [anon_sym___stdcall] = ACTIONS(1579), - [anon_sym___fastcall] = ACTIONS(1579), - [anon_sym___thiscall] = ACTIONS(1579), - [anon_sym___vectorcall] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_auto] = ACTIONS(1579), - [anon_sym_register] = ACTIONS(1579), - [anon_sym_inline] = ACTIONS(1579), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_volatile] = ACTIONS(1579), - [anon_sym_restrict] = ACTIONS(1579), - [anon_sym__Atomic] = ACTIONS(1579), - [anon_sym_in] = ACTIONS(1579), - [anon_sym_out] = ACTIONS(1579), - [anon_sym_inout] = ACTIONS(1579), - [anon_sym_bycopy] = ACTIONS(1579), - [anon_sym_byref] = ACTIONS(1579), - [anon_sym_oneway] = ACTIONS(1579), - [anon_sym__Nullable] = ACTIONS(1579), - [anon_sym__Nonnull] = ACTIONS(1579), - [anon_sym__Nullable_result] = ACTIONS(1579), - [anon_sym__Null_unspecified] = ACTIONS(1579), - [anon_sym___autoreleasing] = ACTIONS(1579), - [anon_sym___nullable] = ACTIONS(1579), - [anon_sym___nonnull] = ACTIONS(1579), - [anon_sym___strong] = ACTIONS(1579), - [anon_sym___weak] = ACTIONS(1579), - [anon_sym___bridge] = ACTIONS(1579), - [anon_sym___bridge_transfer] = ACTIONS(1579), - [anon_sym___bridge_retained] = ACTIONS(1579), - [anon_sym___unsafe_unretained] = ACTIONS(1579), - [anon_sym___block] = ACTIONS(1579), - [anon_sym___kindof] = ACTIONS(1579), - [anon_sym___unused] = ACTIONS(1579), - [anon_sym__Complex] = ACTIONS(1579), - [anon_sym___complex] = ACTIONS(1579), - [anon_sym_IBOutlet] = ACTIONS(1579), - [anon_sym_IBInspectable] = ACTIONS(1579), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1579), - [anon_sym_signed] = ACTIONS(1579), - [anon_sym_unsigned] = ACTIONS(1579), - [anon_sym_long] = ACTIONS(1579), - [anon_sym_short] = ACTIONS(1579), - [sym_primitive_type] = ACTIONS(1579), - [anon_sym_enum] = ACTIONS(1579), - [anon_sym_NS_ENUM] = ACTIONS(1579), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1579), - [anon_sym_NS_OPTIONS] = ACTIONS(1579), - [anon_sym_struct] = ACTIONS(1579), - [anon_sym_union] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_else] = ACTIONS(1579), - [anon_sym_switch] = ACTIONS(1579), - [anon_sym_case] = ACTIONS(1579), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_goto] = ACTIONS(1579), - [anon_sym_DASH_DASH] = ACTIONS(1577), - [anon_sym_PLUS_PLUS] = ACTIONS(1577), - [anon_sym_sizeof] = ACTIONS(1579), - [sym_number_literal] = ACTIONS(1577), - [anon_sym_L_SQUOTE] = ACTIONS(1577), - [anon_sym_u_SQUOTE] = ACTIONS(1577), - [anon_sym_U_SQUOTE] = ACTIONS(1577), - [anon_sym_u8_SQUOTE] = ACTIONS(1577), - [anon_sym_SQUOTE] = ACTIONS(1577), - [anon_sym_L_DQUOTE] = ACTIONS(1577), - [anon_sym_u_DQUOTE] = ACTIONS(1577), - [anon_sym_U_DQUOTE] = ACTIONS(1577), - [anon_sym_u8_DQUOTE] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1577), - [sym_true] = ACTIONS(1579), - [sym_false] = ACTIONS(1579), - [sym_null] = ACTIONS(1579), + [sym_identifier] = ACTIONS(1259), + [aux_sym_preproc_include_token1] = ACTIONS(1257), + [aux_sym_preproc_def_token1] = ACTIONS(1257), + [aux_sym_preproc_if_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token2] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), + [aux_sym_preproc_else_token1] = ACTIONS(1259), + [aux_sym_preproc_elif_token1] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym___attribute] = ACTIONS(1259), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(1259), + [anon_sym___cdecl] = ACTIONS(1259), + [anon_sym___clrcall] = ACTIONS(1259), + [anon_sym___stdcall] = ACTIONS(1259), + [anon_sym___fastcall] = ACTIONS(1259), + [anon_sym___thiscall] = ACTIONS(1259), + [anon_sym___vectorcall] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_inline] = ACTIONS(1259), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [anon_sym_in] = ACTIONS(1259), + [anon_sym_out] = ACTIONS(1259), + [anon_sym_inout] = ACTIONS(1259), + [anon_sym_bycopy] = ACTIONS(1259), + [anon_sym_byref] = ACTIONS(1259), + [anon_sym_oneway] = ACTIONS(1259), + [anon_sym__Nullable] = ACTIONS(1259), + [anon_sym__Nonnull] = ACTIONS(1259), + [anon_sym__Nullable_result] = ACTIONS(1259), + [anon_sym__Null_unspecified] = ACTIONS(1259), + [anon_sym___autoreleasing] = ACTIONS(1259), + [anon_sym___nullable] = ACTIONS(1259), + [anon_sym___nonnull] = ACTIONS(1259), + [anon_sym___strong] = ACTIONS(1259), + [anon_sym___weak] = ACTIONS(1259), + [anon_sym___bridge] = ACTIONS(1259), + [anon_sym___bridge_transfer] = ACTIONS(1259), + [anon_sym___bridge_retained] = ACTIONS(1259), + [anon_sym___unsafe_unretained] = ACTIONS(1259), + [anon_sym___block] = ACTIONS(1259), + [anon_sym___kindof] = ACTIONS(1259), + [anon_sym___unused] = ACTIONS(1259), + [anon_sym__Complex] = ACTIONS(1259), + [anon_sym___complex] = ACTIONS(1259), + [anon_sym_IBOutlet] = ACTIONS(1259), + [anon_sym_IBInspectable] = ACTIONS(1259), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1259), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_else] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [anon_sym_case] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_goto] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(1259), + [sym_number_literal] = ACTIONS(1257), + [anon_sym_L_SQUOTE] = ACTIONS(1257), + [anon_sym_u_SQUOTE] = ACTIONS(1257), + [anon_sym_U_SQUOTE] = ACTIONS(1257), + [anon_sym_u8_SQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_L_DQUOTE] = ACTIONS(1257), + [anon_sym_u_DQUOTE] = ACTIONS(1257), + [anon_sym_U_DQUOTE] = ACTIONS(1257), + [anon_sym_u8_DQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym_true] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [sym_null] = ACTIONS(1259), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1577), - [anon_sym_ATimport] = ACTIONS(1577), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1579), - [anon_sym_ATcompatibility_alias] = ACTIONS(1577), - [anon_sym_ATprotocol] = ACTIONS(1577), - [anon_sym_ATclass] = ACTIONS(1577), - [anon_sym_ATinterface] = ACTIONS(1577), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1579), - [sym_method_attribute_specifier] = ACTIONS(1579), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1579), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1579), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1579), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1579), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1579), - [anon_sym_NS_AVAILABLE] = ACTIONS(1579), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1579), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_API_AVAILABLE] = ACTIONS(1579), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_API_DEPRECATED] = ACTIONS(1579), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1579), - [anon_sym___deprecated_msg] = ACTIONS(1579), - [anon_sym___deprecated_enum_msg] = ACTIONS(1579), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1579), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1579), - [anon_sym_ATimplementation] = ACTIONS(1577), - [anon_sym_typeof] = ACTIONS(1579), - [anon_sym___typeof] = ACTIONS(1579), - [anon_sym___typeof__] = ACTIONS(1579), - [sym_self] = ACTIONS(1579), - [sym_super] = ACTIONS(1579), - [sym_nil] = ACTIONS(1579), - [sym_id] = ACTIONS(1579), - [sym_instancetype] = ACTIONS(1579), - [sym_Class] = ACTIONS(1579), - [sym_SEL] = ACTIONS(1579), - [sym_IMP] = ACTIONS(1579), - [sym_BOOL] = ACTIONS(1579), - [sym_auto] = ACTIONS(1579), - [anon_sym_ATautoreleasepool] = ACTIONS(1577), - [anon_sym_ATsynchronized] = ACTIONS(1577), - [anon_sym_ATtry] = ACTIONS(1577), - [anon_sym_ATcatch] = ACTIONS(1577), - [anon_sym_ATfinally] = ACTIONS(1577), - [anon_sym_ATthrow] = ACTIONS(1577), - [anon_sym_ATselector] = ACTIONS(1577), - [anon_sym_ATencode] = ACTIONS(1577), - [anon_sym_AT] = ACTIONS(1579), - [sym_YES] = ACTIONS(1579), - [sym_NO] = ACTIONS(1579), - [anon_sym___builtin_available] = ACTIONS(1579), - [anon_sym_ATavailable] = ACTIONS(1577), - [anon_sym_va_arg] = ACTIONS(1579), + [anon_sym_POUNDimport] = ACTIONS(1257), + [anon_sym_ATimport] = ACTIONS(1257), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1259), + [anon_sym_ATcompatibility_alias] = ACTIONS(1257), + [anon_sym_ATprotocol] = ACTIONS(1257), + [anon_sym_ATclass] = ACTIONS(1257), + [anon_sym_ATinterface] = ACTIONS(1257), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1259), + [sym_method_attribute_specifier] = ACTIONS(1259), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1259), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1259), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1259), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1259), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1259), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1259), + [anon_sym_NS_AVAILABLE] = ACTIONS(1259), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1259), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1259), + [anon_sym_API_AVAILABLE] = ACTIONS(1259), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1259), + [anon_sym_API_DEPRECATED] = ACTIONS(1259), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1259), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1259), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1259), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1259), + [anon_sym___deprecated_msg] = ACTIONS(1259), + [anon_sym___deprecated_enum_msg] = ACTIONS(1259), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1259), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1259), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1259), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1259), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1259), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1259), + [anon_sym_ATimplementation] = ACTIONS(1257), + [anon_sym_NS_ENUM] = ACTIONS(1259), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1259), + [anon_sym_NS_OPTIONS] = ACTIONS(1259), + [anon_sym_typeof] = ACTIONS(1259), + [anon_sym___typeof] = ACTIONS(1259), + [anon_sym___typeof__] = ACTIONS(1259), + [sym_self] = ACTIONS(1259), + [sym_super] = ACTIONS(1259), + [sym_nil] = ACTIONS(1259), + [sym_id] = ACTIONS(1259), + [sym_instancetype] = ACTIONS(1259), + [sym_Class] = ACTIONS(1259), + [sym_SEL] = ACTIONS(1259), + [sym_IMP] = ACTIONS(1259), + [sym_BOOL] = ACTIONS(1259), + [sym_auto] = ACTIONS(1259), + [anon_sym_ATautoreleasepool] = ACTIONS(1257), + [anon_sym_ATsynchronized] = ACTIONS(1257), + [anon_sym_ATtry] = ACTIONS(1257), + [anon_sym_ATcatch] = ACTIONS(1257), + [anon_sym_ATfinally] = ACTIONS(1257), + [anon_sym_ATthrow] = ACTIONS(1257), + [anon_sym_ATselector] = ACTIONS(1257), + [anon_sym_ATencode] = ACTIONS(1257), + [anon_sym_AT] = ACTIONS(1259), + [sym_YES] = ACTIONS(1259), + [sym_NO] = ACTIONS(1259), + [anon_sym___builtin_available] = ACTIONS(1259), + [anon_sym_ATavailable] = ACTIONS(1257), + [anon_sym_va_arg] = ACTIONS(1259), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -59587,2661 +59616,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [193] = { - [sym_identifier] = ACTIONS(1579), - [aux_sym_preproc_include_token1] = ACTIONS(1577), - [aux_sym_preproc_def_token1] = ACTIONS(1577), - [aux_sym_preproc_if_token1] = ACTIONS(1579), - [aux_sym_preproc_if_token2] = ACTIONS(1579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1579), - [aux_sym_preproc_else_token1] = ACTIONS(1579), - [aux_sym_preproc_elif_token1] = ACTIONS(1579), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_TILDE] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_typedef] = ACTIONS(1579), - [anon_sym_extern] = ACTIONS(1579), - [anon_sym___attribute] = ACTIONS(1579), - [anon_sym___attribute__] = ACTIONS(1579), - [anon_sym___declspec] = ACTIONS(1579), - [anon_sym___cdecl] = ACTIONS(1579), - [anon_sym___clrcall] = ACTIONS(1579), - [anon_sym___stdcall] = ACTIONS(1579), - [anon_sym___fastcall] = ACTIONS(1579), - [anon_sym___thiscall] = ACTIONS(1579), - [anon_sym___vectorcall] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_auto] = ACTIONS(1579), - [anon_sym_register] = ACTIONS(1579), - [anon_sym_inline] = ACTIONS(1579), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_volatile] = ACTIONS(1579), - [anon_sym_restrict] = ACTIONS(1579), - [anon_sym__Atomic] = ACTIONS(1579), - [anon_sym_in] = ACTIONS(1579), - [anon_sym_out] = ACTIONS(1579), - [anon_sym_inout] = ACTIONS(1579), - [anon_sym_bycopy] = ACTIONS(1579), - [anon_sym_byref] = ACTIONS(1579), - [anon_sym_oneway] = ACTIONS(1579), - [anon_sym__Nullable] = ACTIONS(1579), - [anon_sym__Nonnull] = ACTIONS(1579), - [anon_sym__Nullable_result] = ACTIONS(1579), - [anon_sym__Null_unspecified] = ACTIONS(1579), - [anon_sym___autoreleasing] = ACTIONS(1579), - [anon_sym___nullable] = ACTIONS(1579), - [anon_sym___nonnull] = ACTIONS(1579), - [anon_sym___strong] = ACTIONS(1579), - [anon_sym___weak] = ACTIONS(1579), - [anon_sym___bridge] = ACTIONS(1579), - [anon_sym___bridge_transfer] = ACTIONS(1579), - [anon_sym___bridge_retained] = ACTIONS(1579), - [anon_sym___unsafe_unretained] = ACTIONS(1579), - [anon_sym___block] = ACTIONS(1579), - [anon_sym___kindof] = ACTIONS(1579), - [anon_sym___unused] = ACTIONS(1579), - [anon_sym__Complex] = ACTIONS(1579), - [anon_sym___complex] = ACTIONS(1579), - [anon_sym_IBOutlet] = ACTIONS(1579), - [anon_sym_IBInspectable] = ACTIONS(1579), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1579), - [anon_sym_signed] = ACTIONS(1579), - [anon_sym_unsigned] = ACTIONS(1579), - [anon_sym_long] = ACTIONS(1579), - [anon_sym_short] = ACTIONS(1579), - [sym_primitive_type] = ACTIONS(1579), - [anon_sym_enum] = ACTIONS(1579), - [anon_sym_NS_ENUM] = ACTIONS(1579), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1579), - [anon_sym_NS_OPTIONS] = ACTIONS(1579), - [anon_sym_struct] = ACTIONS(1579), - [anon_sym_union] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_else] = ACTIONS(1579), - [anon_sym_switch] = ACTIONS(1579), - [anon_sym_case] = ACTIONS(1579), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_goto] = ACTIONS(1579), - [anon_sym_DASH_DASH] = ACTIONS(1577), - [anon_sym_PLUS_PLUS] = ACTIONS(1577), - [anon_sym_sizeof] = ACTIONS(1579), - [sym_number_literal] = ACTIONS(1577), - [anon_sym_L_SQUOTE] = ACTIONS(1577), - [anon_sym_u_SQUOTE] = ACTIONS(1577), - [anon_sym_U_SQUOTE] = ACTIONS(1577), - [anon_sym_u8_SQUOTE] = ACTIONS(1577), - [anon_sym_SQUOTE] = ACTIONS(1577), - [anon_sym_L_DQUOTE] = ACTIONS(1577), - [anon_sym_u_DQUOTE] = ACTIONS(1577), - [anon_sym_U_DQUOTE] = ACTIONS(1577), - [anon_sym_u8_DQUOTE] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1577), - [sym_true] = ACTIONS(1579), - [sym_false] = ACTIONS(1579), - [sym_null] = ACTIONS(1579), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1577), - [anon_sym_ATimport] = ACTIONS(1577), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1579), - [anon_sym_ATcompatibility_alias] = ACTIONS(1577), - [anon_sym_ATprotocol] = ACTIONS(1577), - [anon_sym_ATclass] = ACTIONS(1577), - [anon_sym_ATinterface] = ACTIONS(1577), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1579), - [sym_method_attribute_specifier] = ACTIONS(1579), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1579), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1579), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1579), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1579), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1579), - [anon_sym_NS_AVAILABLE] = ACTIONS(1579), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1579), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_API_AVAILABLE] = ACTIONS(1579), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_API_DEPRECATED] = ACTIONS(1579), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1579), - [anon_sym___deprecated_msg] = ACTIONS(1579), - [anon_sym___deprecated_enum_msg] = ACTIONS(1579), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1579), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1579), - [anon_sym_ATimplementation] = ACTIONS(1577), - [anon_sym_typeof] = ACTIONS(1579), - [anon_sym___typeof] = ACTIONS(1579), - [anon_sym___typeof__] = ACTIONS(1579), - [sym_self] = ACTIONS(1579), - [sym_super] = ACTIONS(1579), - [sym_nil] = ACTIONS(1579), - [sym_id] = ACTIONS(1579), - [sym_instancetype] = ACTIONS(1579), - [sym_Class] = ACTIONS(1579), - [sym_SEL] = ACTIONS(1579), - [sym_IMP] = ACTIONS(1579), - [sym_BOOL] = ACTIONS(1579), - [sym_auto] = ACTIONS(1579), - [anon_sym_ATautoreleasepool] = ACTIONS(1577), - [anon_sym_ATsynchronized] = ACTIONS(1577), - [anon_sym_ATtry] = ACTIONS(1577), - [anon_sym_ATcatch] = ACTIONS(1577), - [anon_sym_ATfinally] = ACTIONS(1577), - [anon_sym_ATthrow] = ACTIONS(1577), - [anon_sym_ATselector] = ACTIONS(1577), - [anon_sym_ATencode] = ACTIONS(1577), - [anon_sym_AT] = ACTIONS(1579), - [sym_YES] = ACTIONS(1579), - [sym_NO] = ACTIONS(1579), - [anon_sym___builtin_available] = ACTIONS(1579), - [anon_sym_ATavailable] = ACTIONS(1577), - [anon_sym_va_arg] = ACTIONS(1579), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [194] = { - [sym_identifier] = ACTIONS(1575), - [aux_sym_preproc_include_token1] = ACTIONS(1573), - [aux_sym_preproc_def_token1] = ACTIONS(1573), - [aux_sym_preproc_if_token1] = ACTIONS(1575), - [aux_sym_preproc_if_token2] = ACTIONS(1575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1575), - [aux_sym_preproc_else_token1] = ACTIONS(1575), - [aux_sym_preproc_elif_token1] = ACTIONS(1575), - [anon_sym_LPAREN2] = ACTIONS(1573), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_typedef] = ACTIONS(1575), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym___attribute] = ACTIONS(1575), - [anon_sym___attribute__] = ACTIONS(1575), - [anon_sym___declspec] = ACTIONS(1575), - [anon_sym___cdecl] = ACTIONS(1575), - [anon_sym___clrcall] = ACTIONS(1575), - [anon_sym___stdcall] = ACTIONS(1575), - [anon_sym___fastcall] = ACTIONS(1575), - [anon_sym___thiscall] = ACTIONS(1575), - [anon_sym___vectorcall] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1573), - [anon_sym_LBRACK] = ACTIONS(1573), - [anon_sym_static] = ACTIONS(1575), - [anon_sym_auto] = ACTIONS(1575), - [anon_sym_register] = ACTIONS(1575), - [anon_sym_inline] = ACTIONS(1575), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [anon_sym_volatile] = ACTIONS(1575), - [anon_sym_restrict] = ACTIONS(1575), - [anon_sym__Atomic] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_out] = ACTIONS(1575), - [anon_sym_inout] = ACTIONS(1575), - [anon_sym_bycopy] = ACTIONS(1575), - [anon_sym_byref] = ACTIONS(1575), - [anon_sym_oneway] = ACTIONS(1575), - [anon_sym__Nullable] = ACTIONS(1575), - [anon_sym__Nonnull] = ACTIONS(1575), - [anon_sym__Nullable_result] = ACTIONS(1575), - [anon_sym__Null_unspecified] = ACTIONS(1575), - [anon_sym___autoreleasing] = ACTIONS(1575), - [anon_sym___nullable] = ACTIONS(1575), - [anon_sym___nonnull] = ACTIONS(1575), - [anon_sym___strong] = ACTIONS(1575), - [anon_sym___weak] = ACTIONS(1575), - [anon_sym___bridge] = ACTIONS(1575), - [anon_sym___bridge_transfer] = ACTIONS(1575), - [anon_sym___bridge_retained] = ACTIONS(1575), - [anon_sym___unsafe_unretained] = ACTIONS(1575), - [anon_sym___block] = ACTIONS(1575), - [anon_sym___kindof] = ACTIONS(1575), - [anon_sym___unused] = ACTIONS(1575), - [anon_sym__Complex] = ACTIONS(1575), - [anon_sym___complex] = ACTIONS(1575), - [anon_sym_IBOutlet] = ACTIONS(1575), - [anon_sym_IBInspectable] = ACTIONS(1575), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1575), - [anon_sym_signed] = ACTIONS(1575), - [anon_sym_unsigned] = ACTIONS(1575), - [anon_sym_long] = ACTIONS(1575), - [anon_sym_short] = ACTIONS(1575), - [sym_primitive_type] = ACTIONS(1575), - [anon_sym_enum] = ACTIONS(1575), - [anon_sym_NS_ENUM] = ACTIONS(1575), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1575), - [anon_sym_NS_OPTIONS] = ACTIONS(1575), - [anon_sym_struct] = ACTIONS(1575), - [anon_sym_union] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_else] = ACTIONS(1575), - [anon_sym_switch] = ACTIONS(1575), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_goto] = ACTIONS(1575), - [anon_sym_DASH_DASH] = ACTIONS(1573), - [anon_sym_PLUS_PLUS] = ACTIONS(1573), - [anon_sym_sizeof] = ACTIONS(1575), - [sym_number_literal] = ACTIONS(1573), - [anon_sym_L_SQUOTE] = ACTIONS(1573), - [anon_sym_u_SQUOTE] = ACTIONS(1573), - [anon_sym_U_SQUOTE] = ACTIONS(1573), - [anon_sym_u8_SQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1573), - [anon_sym_L_DQUOTE] = ACTIONS(1573), - [anon_sym_u_DQUOTE] = ACTIONS(1573), - [anon_sym_U_DQUOTE] = ACTIONS(1573), - [anon_sym_u8_DQUOTE] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(1573), - [sym_true] = ACTIONS(1575), - [sym_false] = ACTIONS(1575), - [sym_null] = ACTIONS(1575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1573), - [anon_sym_ATimport] = ACTIONS(1573), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1575), - [anon_sym_ATcompatibility_alias] = ACTIONS(1573), - [anon_sym_ATprotocol] = ACTIONS(1573), - [anon_sym_ATclass] = ACTIONS(1573), - [anon_sym_ATinterface] = ACTIONS(1573), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1575), - [sym_method_attribute_specifier] = ACTIONS(1575), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1575), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1575), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1575), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1575), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1575), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1575), - [anon_sym_NS_AVAILABLE] = ACTIONS(1575), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1575), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1575), - [anon_sym_API_AVAILABLE] = ACTIONS(1575), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1575), - [anon_sym_API_DEPRECATED] = ACTIONS(1575), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1575), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1575), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1575), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1575), - [anon_sym___deprecated_msg] = ACTIONS(1575), - [anon_sym___deprecated_enum_msg] = ACTIONS(1575), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1575), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1575), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1575), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1575), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1575), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1575), - [anon_sym_ATimplementation] = ACTIONS(1573), - [anon_sym_typeof] = ACTIONS(1575), - [anon_sym___typeof] = ACTIONS(1575), - [anon_sym___typeof__] = ACTIONS(1575), - [sym_self] = ACTIONS(1575), - [sym_super] = ACTIONS(1575), - [sym_nil] = ACTIONS(1575), - [sym_id] = ACTIONS(1575), - [sym_instancetype] = ACTIONS(1575), - [sym_Class] = ACTIONS(1575), - [sym_SEL] = ACTIONS(1575), - [sym_IMP] = ACTIONS(1575), - [sym_BOOL] = ACTIONS(1575), - [sym_auto] = ACTIONS(1575), - [anon_sym_ATautoreleasepool] = ACTIONS(1573), - [anon_sym_ATsynchronized] = ACTIONS(1573), - [anon_sym_ATtry] = ACTIONS(1573), - [anon_sym_ATcatch] = ACTIONS(1573), - [anon_sym_ATfinally] = ACTIONS(1573), - [anon_sym_ATthrow] = ACTIONS(1573), - [anon_sym_ATselector] = ACTIONS(1573), - [anon_sym_ATencode] = ACTIONS(1573), - [anon_sym_AT] = ACTIONS(1575), - [sym_YES] = ACTIONS(1575), - [sym_NO] = ACTIONS(1575), - [anon_sym___builtin_available] = ACTIONS(1575), - [anon_sym_ATavailable] = ACTIONS(1573), - [anon_sym_va_arg] = ACTIONS(1575), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [195] = { - [sym_identifier] = ACTIONS(1547), - [aux_sym_preproc_include_token1] = ACTIONS(1545), - [aux_sym_preproc_def_token1] = ACTIONS(1545), - [aux_sym_preproc_if_token1] = ACTIONS(1547), - [aux_sym_preproc_if_token2] = ACTIONS(1547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1547), - [aux_sym_preproc_else_token1] = ACTIONS(1547), - [aux_sym_preproc_elif_token1] = ACTIONS(1547), - [anon_sym_LPAREN2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1545), - [anon_sym_TILDE] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_typedef] = ACTIONS(1547), - [anon_sym_extern] = ACTIONS(1547), - [anon_sym___attribute] = ACTIONS(1547), - [anon_sym___attribute__] = ACTIONS(1547), - [anon_sym___declspec] = ACTIONS(1547), - [anon_sym___cdecl] = ACTIONS(1547), - [anon_sym___clrcall] = ACTIONS(1547), - [anon_sym___stdcall] = ACTIONS(1547), - [anon_sym___fastcall] = ACTIONS(1547), - [anon_sym___thiscall] = ACTIONS(1547), - [anon_sym___vectorcall] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_auto] = ACTIONS(1547), - [anon_sym_register] = ACTIONS(1547), - [anon_sym_inline] = ACTIONS(1547), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1547), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_volatile] = ACTIONS(1547), - [anon_sym_restrict] = ACTIONS(1547), - [anon_sym__Atomic] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(1547), - [anon_sym_out] = ACTIONS(1547), - [anon_sym_inout] = ACTIONS(1547), - [anon_sym_bycopy] = ACTIONS(1547), - [anon_sym_byref] = ACTIONS(1547), - [anon_sym_oneway] = ACTIONS(1547), - [anon_sym__Nullable] = ACTIONS(1547), - [anon_sym__Nonnull] = ACTIONS(1547), - [anon_sym__Nullable_result] = ACTIONS(1547), - [anon_sym__Null_unspecified] = ACTIONS(1547), - [anon_sym___autoreleasing] = ACTIONS(1547), - [anon_sym___nullable] = ACTIONS(1547), - [anon_sym___nonnull] = ACTIONS(1547), - [anon_sym___strong] = ACTIONS(1547), - [anon_sym___weak] = ACTIONS(1547), - [anon_sym___bridge] = ACTIONS(1547), - [anon_sym___bridge_transfer] = ACTIONS(1547), - [anon_sym___bridge_retained] = ACTIONS(1547), - [anon_sym___unsafe_unretained] = ACTIONS(1547), - [anon_sym___block] = ACTIONS(1547), - [anon_sym___kindof] = ACTIONS(1547), - [anon_sym___unused] = ACTIONS(1547), - [anon_sym__Complex] = ACTIONS(1547), - [anon_sym___complex] = ACTIONS(1547), - [anon_sym_IBOutlet] = ACTIONS(1547), - [anon_sym_IBInspectable] = ACTIONS(1547), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1547), - [anon_sym_signed] = ACTIONS(1547), - [anon_sym_unsigned] = ACTIONS(1547), - [anon_sym_long] = ACTIONS(1547), - [anon_sym_short] = ACTIONS(1547), - [sym_primitive_type] = ACTIONS(1547), - [anon_sym_enum] = ACTIONS(1547), - [anon_sym_NS_ENUM] = ACTIONS(1547), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1547), - [anon_sym_NS_OPTIONS] = ACTIONS(1547), - [anon_sym_struct] = ACTIONS(1547), - [anon_sym_union] = ACTIONS(1547), - [anon_sym_if] = ACTIONS(1547), - [anon_sym_else] = ACTIONS(1547), - [anon_sym_switch] = ACTIONS(1547), - [anon_sym_case] = ACTIONS(1547), - [anon_sym_default] = ACTIONS(1547), - [anon_sym_while] = ACTIONS(1547), - [anon_sym_do] = ACTIONS(1547), - [anon_sym_for] = ACTIONS(1547), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1547), - [anon_sym_continue] = ACTIONS(1547), - [anon_sym_goto] = ACTIONS(1547), - [anon_sym_DASH_DASH] = ACTIONS(1545), - [anon_sym_PLUS_PLUS] = ACTIONS(1545), - [anon_sym_sizeof] = ACTIONS(1547), - [sym_number_literal] = ACTIONS(1545), - [anon_sym_L_SQUOTE] = ACTIONS(1545), - [anon_sym_u_SQUOTE] = ACTIONS(1545), - [anon_sym_U_SQUOTE] = ACTIONS(1545), - [anon_sym_u8_SQUOTE] = ACTIONS(1545), - [anon_sym_SQUOTE] = ACTIONS(1545), - [anon_sym_L_DQUOTE] = ACTIONS(1545), - [anon_sym_u_DQUOTE] = ACTIONS(1545), - [anon_sym_U_DQUOTE] = ACTIONS(1545), - [anon_sym_u8_DQUOTE] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [sym_true] = ACTIONS(1547), - [sym_false] = ACTIONS(1547), - [sym_null] = ACTIONS(1547), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1545), - [anon_sym_ATimport] = ACTIONS(1545), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1547), - [anon_sym_ATcompatibility_alias] = ACTIONS(1545), - [anon_sym_ATprotocol] = ACTIONS(1545), - [anon_sym_ATclass] = ACTIONS(1545), - [anon_sym_ATinterface] = ACTIONS(1545), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1547), - [sym_method_attribute_specifier] = ACTIONS(1547), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1547), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1547), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1547), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1547), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1547), - [anon_sym_NS_AVAILABLE] = ACTIONS(1547), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1547), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_API_AVAILABLE] = ACTIONS(1547), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_API_DEPRECATED] = ACTIONS(1547), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1547), - [anon_sym___deprecated_msg] = ACTIONS(1547), - [anon_sym___deprecated_enum_msg] = ACTIONS(1547), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1547), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1547), - [anon_sym_ATimplementation] = ACTIONS(1545), - [anon_sym_typeof] = ACTIONS(1547), - [anon_sym___typeof] = ACTIONS(1547), - [anon_sym___typeof__] = ACTIONS(1547), - [sym_self] = ACTIONS(1547), - [sym_super] = ACTIONS(1547), - [sym_nil] = ACTIONS(1547), - [sym_id] = ACTIONS(1547), - [sym_instancetype] = ACTIONS(1547), - [sym_Class] = ACTIONS(1547), - [sym_SEL] = ACTIONS(1547), - [sym_IMP] = ACTIONS(1547), - [sym_BOOL] = ACTIONS(1547), - [sym_auto] = ACTIONS(1547), - [anon_sym_ATautoreleasepool] = ACTIONS(1545), - [anon_sym_ATsynchronized] = ACTIONS(1545), - [anon_sym_ATtry] = ACTIONS(1545), - [anon_sym_ATcatch] = ACTIONS(1545), - [anon_sym_ATfinally] = ACTIONS(1545), - [anon_sym_ATthrow] = ACTIONS(1545), - [anon_sym_ATselector] = ACTIONS(1545), - [anon_sym_ATencode] = ACTIONS(1545), - [anon_sym_AT] = ACTIONS(1547), - [sym_YES] = ACTIONS(1547), - [sym_NO] = ACTIONS(1547), - [anon_sym___builtin_available] = ACTIONS(1547), - [anon_sym_ATavailable] = ACTIONS(1545), - [anon_sym_va_arg] = ACTIONS(1547), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [196] = { - [sym_identifier] = ACTIONS(1539), - [aux_sym_preproc_include_token1] = ACTIONS(1537), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [aux_sym_preproc_if_token1] = ACTIONS(1539), - [aux_sym_preproc_if_token2] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1539), - [aux_sym_preproc_else_token1] = ACTIONS(1539), - [aux_sym_preproc_elif_token1] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_typedef] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym___attribute] = ACTIONS(1539), - [anon_sym___attribute__] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1539), - [anon_sym___cdecl] = ACTIONS(1539), - [anon_sym___clrcall] = ACTIONS(1539), - [anon_sym___stdcall] = ACTIONS(1539), - [anon_sym___fastcall] = ACTIONS(1539), - [anon_sym___thiscall] = ACTIONS(1539), - [anon_sym___vectorcall] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_auto] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_inline] = ACTIONS(1539), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_volatile] = ACTIONS(1539), - [anon_sym_restrict] = ACTIONS(1539), - [anon_sym__Atomic] = ACTIONS(1539), - [anon_sym_in] = ACTIONS(1539), - [anon_sym_out] = ACTIONS(1539), - [anon_sym_inout] = ACTIONS(1539), - [anon_sym_bycopy] = ACTIONS(1539), - [anon_sym_byref] = ACTIONS(1539), - [anon_sym_oneway] = ACTIONS(1539), - [anon_sym__Nullable] = ACTIONS(1539), - [anon_sym__Nonnull] = ACTIONS(1539), - [anon_sym__Nullable_result] = ACTIONS(1539), - [anon_sym__Null_unspecified] = ACTIONS(1539), - [anon_sym___autoreleasing] = ACTIONS(1539), - [anon_sym___nullable] = ACTIONS(1539), - [anon_sym___nonnull] = ACTIONS(1539), - [anon_sym___strong] = ACTIONS(1539), - [anon_sym___weak] = ACTIONS(1539), - [anon_sym___bridge] = ACTIONS(1539), - [anon_sym___bridge_transfer] = ACTIONS(1539), - [anon_sym___bridge_retained] = ACTIONS(1539), - [anon_sym___unsafe_unretained] = ACTIONS(1539), - [anon_sym___block] = ACTIONS(1539), - [anon_sym___kindof] = ACTIONS(1539), - [anon_sym___unused] = ACTIONS(1539), - [anon_sym__Complex] = ACTIONS(1539), - [anon_sym___complex] = ACTIONS(1539), - [anon_sym_IBOutlet] = ACTIONS(1539), - [anon_sym_IBInspectable] = ACTIONS(1539), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1539), - [anon_sym_signed] = ACTIONS(1539), - [anon_sym_unsigned] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_NS_ENUM] = ACTIONS(1539), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1539), - [anon_sym_NS_OPTIONS] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1539), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1539), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_goto] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1537), - [anon_sym_sizeof] = ACTIONS(1539), - [sym_number_literal] = ACTIONS(1537), - [anon_sym_L_SQUOTE] = ACTIONS(1537), - [anon_sym_u_SQUOTE] = ACTIONS(1537), - [anon_sym_U_SQUOTE] = ACTIONS(1537), - [anon_sym_u8_SQUOTE] = ACTIONS(1537), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_L_DQUOTE] = ACTIONS(1537), - [anon_sym_u_DQUOTE] = ACTIONS(1537), - [anon_sym_U_DQUOTE] = ACTIONS(1537), - [anon_sym_u8_DQUOTE] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym_true] = ACTIONS(1539), - [sym_false] = ACTIONS(1539), - [sym_null] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1537), - [anon_sym_ATimport] = ACTIONS(1537), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1539), - [anon_sym_ATcompatibility_alias] = ACTIONS(1537), - [anon_sym_ATprotocol] = ACTIONS(1537), - [anon_sym_ATclass] = ACTIONS(1537), - [anon_sym_ATinterface] = ACTIONS(1537), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1539), - [sym_method_attribute_specifier] = ACTIONS(1539), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1539), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE] = ACTIONS(1539), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_API_AVAILABLE] = ACTIONS(1539), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_API_DEPRECATED] = ACTIONS(1539), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1539), - [anon_sym___deprecated_msg] = ACTIONS(1539), - [anon_sym___deprecated_enum_msg] = ACTIONS(1539), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1539), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1539), - [anon_sym_ATimplementation] = ACTIONS(1537), - [anon_sym_typeof] = ACTIONS(1539), - [anon_sym___typeof] = ACTIONS(1539), - [anon_sym___typeof__] = ACTIONS(1539), - [sym_self] = ACTIONS(1539), - [sym_super] = ACTIONS(1539), - [sym_nil] = ACTIONS(1539), - [sym_id] = ACTIONS(1539), - [sym_instancetype] = ACTIONS(1539), - [sym_Class] = ACTIONS(1539), - [sym_SEL] = ACTIONS(1539), - [sym_IMP] = ACTIONS(1539), - [sym_BOOL] = ACTIONS(1539), - [sym_auto] = ACTIONS(1539), - [anon_sym_ATautoreleasepool] = ACTIONS(1537), - [anon_sym_ATsynchronized] = ACTIONS(1537), - [anon_sym_ATtry] = ACTIONS(1537), - [anon_sym_ATcatch] = ACTIONS(1537), - [anon_sym_ATfinally] = ACTIONS(1537), - [anon_sym_ATthrow] = ACTIONS(1537), - [anon_sym_ATselector] = ACTIONS(1537), - [anon_sym_ATencode] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1539), - [sym_YES] = ACTIONS(1539), - [sym_NO] = ACTIONS(1539), - [anon_sym___builtin_available] = ACTIONS(1539), - [anon_sym_ATavailable] = ACTIONS(1537), - [anon_sym_va_arg] = ACTIONS(1539), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [197] = { - [sym_identifier] = ACTIONS(1539), - [aux_sym_preproc_include_token1] = ACTIONS(1537), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [aux_sym_preproc_if_token1] = ACTIONS(1539), - [aux_sym_preproc_if_token2] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1539), - [aux_sym_preproc_else_token1] = ACTIONS(1539), - [aux_sym_preproc_elif_token1] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_typedef] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym___attribute] = ACTIONS(1539), - [anon_sym___attribute__] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1539), - [anon_sym___cdecl] = ACTIONS(1539), - [anon_sym___clrcall] = ACTIONS(1539), - [anon_sym___stdcall] = ACTIONS(1539), - [anon_sym___fastcall] = ACTIONS(1539), - [anon_sym___thiscall] = ACTIONS(1539), - [anon_sym___vectorcall] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_auto] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_inline] = ACTIONS(1539), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_volatile] = ACTIONS(1539), - [anon_sym_restrict] = ACTIONS(1539), - [anon_sym__Atomic] = ACTIONS(1539), - [anon_sym_in] = ACTIONS(1539), - [anon_sym_out] = ACTIONS(1539), - [anon_sym_inout] = ACTIONS(1539), - [anon_sym_bycopy] = ACTIONS(1539), - [anon_sym_byref] = ACTIONS(1539), - [anon_sym_oneway] = ACTIONS(1539), - [anon_sym__Nullable] = ACTIONS(1539), - [anon_sym__Nonnull] = ACTIONS(1539), - [anon_sym__Nullable_result] = ACTIONS(1539), - [anon_sym__Null_unspecified] = ACTIONS(1539), - [anon_sym___autoreleasing] = ACTIONS(1539), - [anon_sym___nullable] = ACTIONS(1539), - [anon_sym___nonnull] = ACTIONS(1539), - [anon_sym___strong] = ACTIONS(1539), - [anon_sym___weak] = ACTIONS(1539), - [anon_sym___bridge] = ACTIONS(1539), - [anon_sym___bridge_transfer] = ACTIONS(1539), - [anon_sym___bridge_retained] = ACTIONS(1539), - [anon_sym___unsafe_unretained] = ACTIONS(1539), - [anon_sym___block] = ACTIONS(1539), - [anon_sym___kindof] = ACTIONS(1539), - [anon_sym___unused] = ACTIONS(1539), - [anon_sym__Complex] = ACTIONS(1539), - [anon_sym___complex] = ACTIONS(1539), - [anon_sym_IBOutlet] = ACTIONS(1539), - [anon_sym_IBInspectable] = ACTIONS(1539), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1539), - [anon_sym_signed] = ACTIONS(1539), - [anon_sym_unsigned] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_NS_ENUM] = ACTIONS(1539), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1539), - [anon_sym_NS_OPTIONS] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1539), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1539), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_goto] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1537), - [anon_sym_sizeof] = ACTIONS(1539), - [sym_number_literal] = ACTIONS(1537), - [anon_sym_L_SQUOTE] = ACTIONS(1537), - [anon_sym_u_SQUOTE] = ACTIONS(1537), - [anon_sym_U_SQUOTE] = ACTIONS(1537), - [anon_sym_u8_SQUOTE] = ACTIONS(1537), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_L_DQUOTE] = ACTIONS(1537), - [anon_sym_u_DQUOTE] = ACTIONS(1537), - [anon_sym_U_DQUOTE] = ACTIONS(1537), - [anon_sym_u8_DQUOTE] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym_true] = ACTIONS(1539), - [sym_false] = ACTIONS(1539), - [sym_null] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1537), - [anon_sym_ATimport] = ACTIONS(1537), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1539), - [anon_sym_ATcompatibility_alias] = ACTIONS(1537), - [anon_sym_ATprotocol] = ACTIONS(1537), - [anon_sym_ATclass] = ACTIONS(1537), - [anon_sym_ATinterface] = ACTIONS(1537), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1539), - [sym_method_attribute_specifier] = ACTIONS(1539), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1539), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE] = ACTIONS(1539), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_API_AVAILABLE] = ACTIONS(1539), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_API_DEPRECATED] = ACTIONS(1539), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1539), - [anon_sym___deprecated_msg] = ACTIONS(1539), - [anon_sym___deprecated_enum_msg] = ACTIONS(1539), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1539), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1539), - [anon_sym_ATimplementation] = ACTIONS(1537), - [anon_sym_typeof] = ACTIONS(1539), - [anon_sym___typeof] = ACTIONS(1539), - [anon_sym___typeof__] = ACTIONS(1539), - [sym_self] = ACTIONS(1539), - [sym_super] = ACTIONS(1539), - [sym_nil] = ACTIONS(1539), - [sym_id] = ACTIONS(1539), - [sym_instancetype] = ACTIONS(1539), - [sym_Class] = ACTIONS(1539), - [sym_SEL] = ACTIONS(1539), - [sym_IMP] = ACTIONS(1539), - [sym_BOOL] = ACTIONS(1539), - [sym_auto] = ACTIONS(1539), - [anon_sym_ATautoreleasepool] = ACTIONS(1537), - [anon_sym_ATsynchronized] = ACTIONS(1537), - [anon_sym_ATtry] = ACTIONS(1537), - [anon_sym_ATcatch] = ACTIONS(1537), - [anon_sym_ATfinally] = ACTIONS(1537), - [anon_sym_ATthrow] = ACTIONS(1537), - [anon_sym_ATselector] = ACTIONS(1537), - [anon_sym_ATencode] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1539), - [sym_YES] = ACTIONS(1539), - [sym_NO] = ACTIONS(1539), - [anon_sym___builtin_available] = ACTIONS(1539), - [anon_sym_ATavailable] = ACTIONS(1537), - [anon_sym_va_arg] = ACTIONS(1539), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [198] = { - [sym_identifier] = ACTIONS(1547), - [aux_sym_preproc_include_token1] = ACTIONS(1545), - [aux_sym_preproc_def_token1] = ACTIONS(1545), - [aux_sym_preproc_if_token1] = ACTIONS(1547), - [aux_sym_preproc_if_token2] = ACTIONS(1547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1547), - [aux_sym_preproc_else_token1] = ACTIONS(1547), - [aux_sym_preproc_elif_token1] = ACTIONS(1547), - [anon_sym_LPAREN2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1545), - [anon_sym_TILDE] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_typedef] = ACTIONS(1547), - [anon_sym_extern] = ACTIONS(1547), - [anon_sym___attribute] = ACTIONS(1547), - [anon_sym___attribute__] = ACTIONS(1547), - [anon_sym___declspec] = ACTIONS(1547), - [anon_sym___cdecl] = ACTIONS(1547), - [anon_sym___clrcall] = ACTIONS(1547), - [anon_sym___stdcall] = ACTIONS(1547), - [anon_sym___fastcall] = ACTIONS(1547), - [anon_sym___thiscall] = ACTIONS(1547), - [anon_sym___vectorcall] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_auto] = ACTIONS(1547), - [anon_sym_register] = ACTIONS(1547), - [anon_sym_inline] = ACTIONS(1547), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1547), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_volatile] = ACTIONS(1547), - [anon_sym_restrict] = ACTIONS(1547), - [anon_sym__Atomic] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(1547), - [anon_sym_out] = ACTIONS(1547), - [anon_sym_inout] = ACTIONS(1547), - [anon_sym_bycopy] = ACTIONS(1547), - [anon_sym_byref] = ACTIONS(1547), - [anon_sym_oneway] = ACTIONS(1547), - [anon_sym__Nullable] = ACTIONS(1547), - [anon_sym__Nonnull] = ACTIONS(1547), - [anon_sym__Nullable_result] = ACTIONS(1547), - [anon_sym__Null_unspecified] = ACTIONS(1547), - [anon_sym___autoreleasing] = ACTIONS(1547), - [anon_sym___nullable] = ACTIONS(1547), - [anon_sym___nonnull] = ACTIONS(1547), - [anon_sym___strong] = ACTIONS(1547), - [anon_sym___weak] = ACTIONS(1547), - [anon_sym___bridge] = ACTIONS(1547), - [anon_sym___bridge_transfer] = ACTIONS(1547), - [anon_sym___bridge_retained] = ACTIONS(1547), - [anon_sym___unsafe_unretained] = ACTIONS(1547), - [anon_sym___block] = ACTIONS(1547), - [anon_sym___kindof] = ACTIONS(1547), - [anon_sym___unused] = ACTIONS(1547), - [anon_sym__Complex] = ACTIONS(1547), - [anon_sym___complex] = ACTIONS(1547), - [anon_sym_IBOutlet] = ACTIONS(1547), - [anon_sym_IBInspectable] = ACTIONS(1547), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1547), - [anon_sym_signed] = ACTIONS(1547), - [anon_sym_unsigned] = ACTIONS(1547), - [anon_sym_long] = ACTIONS(1547), - [anon_sym_short] = ACTIONS(1547), - [sym_primitive_type] = ACTIONS(1547), - [anon_sym_enum] = ACTIONS(1547), - [anon_sym_NS_ENUM] = ACTIONS(1547), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1547), - [anon_sym_NS_OPTIONS] = ACTIONS(1547), - [anon_sym_struct] = ACTIONS(1547), - [anon_sym_union] = ACTIONS(1547), - [anon_sym_if] = ACTIONS(1547), - [anon_sym_else] = ACTIONS(1547), - [anon_sym_switch] = ACTIONS(1547), - [anon_sym_case] = ACTIONS(1547), - [anon_sym_default] = ACTIONS(1547), - [anon_sym_while] = ACTIONS(1547), - [anon_sym_do] = ACTIONS(1547), - [anon_sym_for] = ACTIONS(1547), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1547), - [anon_sym_continue] = ACTIONS(1547), - [anon_sym_goto] = ACTIONS(1547), - [anon_sym_DASH_DASH] = ACTIONS(1545), - [anon_sym_PLUS_PLUS] = ACTIONS(1545), - [anon_sym_sizeof] = ACTIONS(1547), - [sym_number_literal] = ACTIONS(1545), - [anon_sym_L_SQUOTE] = ACTIONS(1545), - [anon_sym_u_SQUOTE] = ACTIONS(1545), - [anon_sym_U_SQUOTE] = ACTIONS(1545), - [anon_sym_u8_SQUOTE] = ACTIONS(1545), - [anon_sym_SQUOTE] = ACTIONS(1545), - [anon_sym_L_DQUOTE] = ACTIONS(1545), - [anon_sym_u_DQUOTE] = ACTIONS(1545), - [anon_sym_U_DQUOTE] = ACTIONS(1545), - [anon_sym_u8_DQUOTE] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [sym_true] = ACTIONS(1547), - [sym_false] = ACTIONS(1547), - [sym_null] = ACTIONS(1547), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1545), - [anon_sym_ATimport] = ACTIONS(1545), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1547), - [anon_sym_ATcompatibility_alias] = ACTIONS(1545), - [anon_sym_ATprotocol] = ACTIONS(1545), - [anon_sym_ATclass] = ACTIONS(1545), - [anon_sym_ATinterface] = ACTIONS(1545), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1547), - [sym_method_attribute_specifier] = ACTIONS(1547), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1547), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1547), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1547), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1547), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1547), - [anon_sym_NS_AVAILABLE] = ACTIONS(1547), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1547), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_API_AVAILABLE] = ACTIONS(1547), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_API_DEPRECATED] = ACTIONS(1547), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1547), - [anon_sym___deprecated_msg] = ACTIONS(1547), - [anon_sym___deprecated_enum_msg] = ACTIONS(1547), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1547), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1547), - [anon_sym_ATimplementation] = ACTIONS(1545), - [anon_sym_typeof] = ACTIONS(1547), - [anon_sym___typeof] = ACTIONS(1547), - [anon_sym___typeof__] = ACTIONS(1547), - [sym_self] = ACTIONS(1547), - [sym_super] = ACTIONS(1547), - [sym_nil] = ACTIONS(1547), - [sym_id] = ACTIONS(1547), - [sym_instancetype] = ACTIONS(1547), - [sym_Class] = ACTIONS(1547), - [sym_SEL] = ACTIONS(1547), - [sym_IMP] = ACTIONS(1547), - [sym_BOOL] = ACTIONS(1547), - [sym_auto] = ACTIONS(1547), - [anon_sym_ATautoreleasepool] = ACTIONS(1545), - [anon_sym_ATsynchronized] = ACTIONS(1545), - [anon_sym_ATtry] = ACTIONS(1545), - [anon_sym_ATcatch] = ACTIONS(1545), - [anon_sym_ATfinally] = ACTIONS(1545), - [anon_sym_ATthrow] = ACTIONS(1545), - [anon_sym_ATselector] = ACTIONS(1545), - [anon_sym_ATencode] = ACTIONS(1545), - [anon_sym_AT] = ACTIONS(1547), - [sym_YES] = ACTIONS(1547), - [sym_NO] = ACTIONS(1547), - [anon_sym___builtin_available] = ACTIONS(1547), - [anon_sym_ATavailable] = ACTIONS(1545), - [anon_sym_va_arg] = ACTIONS(1547), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [199] = { - [sym_identifier] = ACTIONS(1539), - [aux_sym_preproc_include_token1] = ACTIONS(1537), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [aux_sym_preproc_if_token1] = ACTIONS(1539), - [aux_sym_preproc_if_token2] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1539), - [aux_sym_preproc_else_token1] = ACTIONS(1539), - [aux_sym_preproc_elif_token1] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_typedef] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym___attribute] = ACTIONS(1539), - [anon_sym___attribute__] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1539), - [anon_sym___cdecl] = ACTIONS(1539), - [anon_sym___clrcall] = ACTIONS(1539), - [anon_sym___stdcall] = ACTIONS(1539), - [anon_sym___fastcall] = ACTIONS(1539), - [anon_sym___thiscall] = ACTIONS(1539), - [anon_sym___vectorcall] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_auto] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_inline] = ACTIONS(1539), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_volatile] = ACTIONS(1539), - [anon_sym_restrict] = ACTIONS(1539), - [anon_sym__Atomic] = ACTIONS(1539), - [anon_sym_in] = ACTIONS(1539), - [anon_sym_out] = ACTIONS(1539), - [anon_sym_inout] = ACTIONS(1539), - [anon_sym_bycopy] = ACTIONS(1539), - [anon_sym_byref] = ACTIONS(1539), - [anon_sym_oneway] = ACTIONS(1539), - [anon_sym__Nullable] = ACTIONS(1539), - [anon_sym__Nonnull] = ACTIONS(1539), - [anon_sym__Nullable_result] = ACTIONS(1539), - [anon_sym__Null_unspecified] = ACTIONS(1539), - [anon_sym___autoreleasing] = ACTIONS(1539), - [anon_sym___nullable] = ACTIONS(1539), - [anon_sym___nonnull] = ACTIONS(1539), - [anon_sym___strong] = ACTIONS(1539), - [anon_sym___weak] = ACTIONS(1539), - [anon_sym___bridge] = ACTIONS(1539), - [anon_sym___bridge_transfer] = ACTIONS(1539), - [anon_sym___bridge_retained] = ACTIONS(1539), - [anon_sym___unsafe_unretained] = ACTIONS(1539), - [anon_sym___block] = ACTIONS(1539), - [anon_sym___kindof] = ACTIONS(1539), - [anon_sym___unused] = ACTIONS(1539), - [anon_sym__Complex] = ACTIONS(1539), - [anon_sym___complex] = ACTIONS(1539), - [anon_sym_IBOutlet] = ACTIONS(1539), - [anon_sym_IBInspectable] = ACTIONS(1539), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1539), - [anon_sym_signed] = ACTIONS(1539), - [anon_sym_unsigned] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_NS_ENUM] = ACTIONS(1539), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1539), - [anon_sym_NS_OPTIONS] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1539), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1539), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_goto] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1537), - [anon_sym_sizeof] = ACTIONS(1539), - [sym_number_literal] = ACTIONS(1537), - [anon_sym_L_SQUOTE] = ACTIONS(1537), - [anon_sym_u_SQUOTE] = ACTIONS(1537), - [anon_sym_U_SQUOTE] = ACTIONS(1537), - [anon_sym_u8_SQUOTE] = ACTIONS(1537), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_L_DQUOTE] = ACTIONS(1537), - [anon_sym_u_DQUOTE] = ACTIONS(1537), - [anon_sym_U_DQUOTE] = ACTIONS(1537), - [anon_sym_u8_DQUOTE] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym_true] = ACTIONS(1539), - [sym_false] = ACTIONS(1539), - [sym_null] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1537), - [anon_sym_ATimport] = ACTIONS(1537), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1539), - [anon_sym_ATcompatibility_alias] = ACTIONS(1537), - [anon_sym_ATprotocol] = ACTIONS(1537), - [anon_sym_ATclass] = ACTIONS(1537), - [anon_sym_ATinterface] = ACTIONS(1537), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1539), - [sym_method_attribute_specifier] = ACTIONS(1539), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1539), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE] = ACTIONS(1539), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_API_AVAILABLE] = ACTIONS(1539), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_API_DEPRECATED] = ACTIONS(1539), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1539), - [anon_sym___deprecated_msg] = ACTIONS(1539), - [anon_sym___deprecated_enum_msg] = ACTIONS(1539), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1539), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1539), - [anon_sym_ATimplementation] = ACTIONS(1537), - [anon_sym_typeof] = ACTIONS(1539), - [anon_sym___typeof] = ACTIONS(1539), - [anon_sym___typeof__] = ACTIONS(1539), - [sym_self] = ACTIONS(1539), - [sym_super] = ACTIONS(1539), - [sym_nil] = ACTIONS(1539), - [sym_id] = ACTIONS(1539), - [sym_instancetype] = ACTIONS(1539), - [sym_Class] = ACTIONS(1539), - [sym_SEL] = ACTIONS(1539), - [sym_IMP] = ACTIONS(1539), - [sym_BOOL] = ACTIONS(1539), - [sym_auto] = ACTIONS(1539), - [anon_sym_ATautoreleasepool] = ACTIONS(1537), - [anon_sym_ATsynchronized] = ACTIONS(1537), - [anon_sym_ATtry] = ACTIONS(1537), - [anon_sym_ATcatch] = ACTIONS(1537), - [anon_sym_ATfinally] = ACTIONS(1537), - [anon_sym_ATthrow] = ACTIONS(1537), - [anon_sym_ATselector] = ACTIONS(1537), - [anon_sym_ATencode] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1539), - [sym_YES] = ACTIONS(1539), - [sym_NO] = ACTIONS(1539), - [anon_sym___builtin_available] = ACTIONS(1539), - [anon_sym_ATavailable] = ACTIONS(1537), - [anon_sym_va_arg] = ACTIONS(1539), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [200] = { - [sym_identifier] = ACTIONS(1539), - [aux_sym_preproc_include_token1] = ACTIONS(1537), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [aux_sym_preproc_if_token1] = ACTIONS(1539), - [aux_sym_preproc_if_token2] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1539), - [aux_sym_preproc_else_token1] = ACTIONS(1539), - [aux_sym_preproc_elif_token1] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_typedef] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym___attribute] = ACTIONS(1539), - [anon_sym___attribute__] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1539), - [anon_sym___cdecl] = ACTIONS(1539), - [anon_sym___clrcall] = ACTIONS(1539), - [anon_sym___stdcall] = ACTIONS(1539), - [anon_sym___fastcall] = ACTIONS(1539), - [anon_sym___thiscall] = ACTIONS(1539), - [anon_sym___vectorcall] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_auto] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_inline] = ACTIONS(1539), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_volatile] = ACTIONS(1539), - [anon_sym_restrict] = ACTIONS(1539), - [anon_sym__Atomic] = ACTIONS(1539), - [anon_sym_in] = ACTIONS(1539), - [anon_sym_out] = ACTIONS(1539), - [anon_sym_inout] = ACTIONS(1539), - [anon_sym_bycopy] = ACTIONS(1539), - [anon_sym_byref] = ACTIONS(1539), - [anon_sym_oneway] = ACTIONS(1539), - [anon_sym__Nullable] = ACTIONS(1539), - [anon_sym__Nonnull] = ACTIONS(1539), - [anon_sym__Nullable_result] = ACTIONS(1539), - [anon_sym__Null_unspecified] = ACTIONS(1539), - [anon_sym___autoreleasing] = ACTIONS(1539), - [anon_sym___nullable] = ACTIONS(1539), - [anon_sym___nonnull] = ACTIONS(1539), - [anon_sym___strong] = ACTIONS(1539), - [anon_sym___weak] = ACTIONS(1539), - [anon_sym___bridge] = ACTIONS(1539), - [anon_sym___bridge_transfer] = ACTIONS(1539), - [anon_sym___bridge_retained] = ACTIONS(1539), - [anon_sym___unsafe_unretained] = ACTIONS(1539), - [anon_sym___block] = ACTIONS(1539), - [anon_sym___kindof] = ACTIONS(1539), - [anon_sym___unused] = ACTIONS(1539), - [anon_sym__Complex] = ACTIONS(1539), - [anon_sym___complex] = ACTIONS(1539), - [anon_sym_IBOutlet] = ACTIONS(1539), - [anon_sym_IBInspectable] = ACTIONS(1539), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1539), - [anon_sym_signed] = ACTIONS(1539), - [anon_sym_unsigned] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_NS_ENUM] = ACTIONS(1539), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1539), - [anon_sym_NS_OPTIONS] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1539), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1539), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_goto] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1537), - [anon_sym_sizeof] = ACTIONS(1539), - [sym_number_literal] = ACTIONS(1537), - [anon_sym_L_SQUOTE] = ACTIONS(1537), - [anon_sym_u_SQUOTE] = ACTIONS(1537), - [anon_sym_U_SQUOTE] = ACTIONS(1537), - [anon_sym_u8_SQUOTE] = ACTIONS(1537), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_L_DQUOTE] = ACTIONS(1537), - [anon_sym_u_DQUOTE] = ACTIONS(1537), - [anon_sym_U_DQUOTE] = ACTIONS(1537), - [anon_sym_u8_DQUOTE] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym_true] = ACTIONS(1539), - [sym_false] = ACTIONS(1539), - [sym_null] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1537), - [anon_sym_ATimport] = ACTIONS(1537), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1539), - [anon_sym_ATcompatibility_alias] = ACTIONS(1537), - [anon_sym_ATprotocol] = ACTIONS(1537), - [anon_sym_ATclass] = ACTIONS(1537), - [anon_sym_ATinterface] = ACTIONS(1537), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1539), - [sym_method_attribute_specifier] = ACTIONS(1539), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1539), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE] = ACTIONS(1539), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_API_AVAILABLE] = ACTIONS(1539), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_API_DEPRECATED] = ACTIONS(1539), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1539), - [anon_sym___deprecated_msg] = ACTIONS(1539), - [anon_sym___deprecated_enum_msg] = ACTIONS(1539), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1539), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1539), - [anon_sym_ATimplementation] = ACTIONS(1537), - [anon_sym_typeof] = ACTIONS(1539), - [anon_sym___typeof] = ACTIONS(1539), - [anon_sym___typeof__] = ACTIONS(1539), - [sym_self] = ACTIONS(1539), - [sym_super] = ACTIONS(1539), - [sym_nil] = ACTIONS(1539), - [sym_id] = ACTIONS(1539), - [sym_instancetype] = ACTIONS(1539), - [sym_Class] = ACTIONS(1539), - [sym_SEL] = ACTIONS(1539), - [sym_IMP] = ACTIONS(1539), - [sym_BOOL] = ACTIONS(1539), - [sym_auto] = ACTIONS(1539), - [anon_sym_ATautoreleasepool] = ACTIONS(1537), - [anon_sym_ATsynchronized] = ACTIONS(1537), - [anon_sym_ATtry] = ACTIONS(1537), - [anon_sym_ATcatch] = ACTIONS(1537), - [anon_sym_ATfinally] = ACTIONS(1537), - [anon_sym_ATthrow] = ACTIONS(1537), - [anon_sym_ATselector] = ACTIONS(1537), - [anon_sym_ATencode] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1539), - [sym_YES] = ACTIONS(1539), - [sym_NO] = ACTIONS(1539), - [anon_sym___builtin_available] = ACTIONS(1539), - [anon_sym_ATavailable] = ACTIONS(1537), - [anon_sym_va_arg] = ACTIONS(1539), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [201] = { - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_include_token1] = ACTIONS(1497), - [aux_sym_preproc_def_token1] = ACTIONS(1497), - [aux_sym_preproc_if_token1] = ACTIONS(1499), - [aux_sym_preproc_if_token2] = ACTIONS(1499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1499), - [aux_sym_preproc_else_token1] = ACTIONS(1499), - [aux_sym_preproc_elif_token1] = ACTIONS(1499), - [anon_sym_LPAREN2] = ACTIONS(1497), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_CARET] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_typedef] = ACTIONS(1499), - [anon_sym_extern] = ACTIONS(1499), - [anon_sym___attribute] = ACTIONS(1499), - [anon_sym___attribute__] = ACTIONS(1499), - [anon_sym___declspec] = ACTIONS(1499), - [anon_sym___cdecl] = ACTIONS(1499), - [anon_sym___clrcall] = ACTIONS(1499), - [anon_sym___stdcall] = ACTIONS(1499), - [anon_sym___fastcall] = ACTIONS(1499), - [anon_sym___thiscall] = ACTIONS(1499), - [anon_sym___vectorcall] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1497), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_auto] = ACTIONS(1499), - [anon_sym_register] = ACTIONS(1499), - [anon_sym_inline] = ACTIONS(1499), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_volatile] = ACTIONS(1499), - [anon_sym_restrict] = ACTIONS(1499), - [anon_sym__Atomic] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_out] = ACTIONS(1499), - [anon_sym_inout] = ACTIONS(1499), - [anon_sym_bycopy] = ACTIONS(1499), - [anon_sym_byref] = ACTIONS(1499), - [anon_sym_oneway] = ACTIONS(1499), - [anon_sym__Nullable] = ACTIONS(1499), - [anon_sym__Nonnull] = ACTIONS(1499), - [anon_sym__Nullable_result] = ACTIONS(1499), - [anon_sym__Null_unspecified] = ACTIONS(1499), - [anon_sym___autoreleasing] = ACTIONS(1499), - [anon_sym___nullable] = ACTIONS(1499), - [anon_sym___nonnull] = ACTIONS(1499), - [anon_sym___strong] = ACTIONS(1499), - [anon_sym___weak] = ACTIONS(1499), - [anon_sym___bridge] = ACTIONS(1499), - [anon_sym___bridge_transfer] = ACTIONS(1499), - [anon_sym___bridge_retained] = ACTIONS(1499), - [anon_sym___unsafe_unretained] = ACTIONS(1499), - [anon_sym___block] = ACTIONS(1499), - [anon_sym___kindof] = ACTIONS(1499), - [anon_sym___unused] = ACTIONS(1499), - [anon_sym__Complex] = ACTIONS(1499), - [anon_sym___complex] = ACTIONS(1499), - [anon_sym_IBOutlet] = ACTIONS(1499), - [anon_sym_IBInspectable] = ACTIONS(1499), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1499), - [anon_sym_signed] = ACTIONS(1499), - [anon_sym_unsigned] = ACTIONS(1499), - [anon_sym_long] = ACTIONS(1499), - [anon_sym_short] = ACTIONS(1499), - [sym_primitive_type] = ACTIONS(1499), - [anon_sym_enum] = ACTIONS(1499), - [anon_sym_NS_ENUM] = ACTIONS(1499), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1499), - [anon_sym_NS_OPTIONS] = ACTIONS(1499), - [anon_sym_struct] = ACTIONS(1499), - [anon_sym_union] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_else] = ACTIONS(1499), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1499), - [anon_sym_default] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_do] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_goto] = ACTIONS(1499), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_sizeof] = ACTIONS(1499), - [sym_number_literal] = ACTIONS(1497), - [anon_sym_L_SQUOTE] = ACTIONS(1497), - [anon_sym_u_SQUOTE] = ACTIONS(1497), - [anon_sym_U_SQUOTE] = ACTIONS(1497), - [anon_sym_u8_SQUOTE] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_L_DQUOTE] = ACTIONS(1497), - [anon_sym_u_DQUOTE] = ACTIONS(1497), - [anon_sym_U_DQUOTE] = ACTIONS(1497), - [anon_sym_u8_DQUOTE] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [sym_true] = ACTIONS(1499), - [sym_false] = ACTIONS(1499), - [sym_null] = ACTIONS(1499), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1497), - [anon_sym_ATimport] = ACTIONS(1497), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1499), - [anon_sym_ATcompatibility_alias] = ACTIONS(1497), - [anon_sym_ATprotocol] = ACTIONS(1497), - [anon_sym_ATclass] = ACTIONS(1497), - [anon_sym_ATinterface] = ACTIONS(1497), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1499), - [sym_method_attribute_specifier] = ACTIONS(1499), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1499), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1499), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1499), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1499), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1499), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1499), - [anon_sym_NS_AVAILABLE] = ACTIONS(1499), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1499), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1499), - [anon_sym_API_AVAILABLE] = ACTIONS(1499), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1499), - [anon_sym_API_DEPRECATED] = ACTIONS(1499), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1499), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1499), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1499), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1499), - [anon_sym___deprecated_msg] = ACTIONS(1499), - [anon_sym___deprecated_enum_msg] = ACTIONS(1499), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1499), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1499), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1499), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1499), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1499), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1499), - [anon_sym_ATimplementation] = ACTIONS(1497), - [anon_sym_typeof] = ACTIONS(1499), - [anon_sym___typeof] = ACTIONS(1499), - [anon_sym___typeof__] = ACTIONS(1499), - [sym_self] = ACTIONS(1499), - [sym_super] = ACTIONS(1499), - [sym_nil] = ACTIONS(1499), - [sym_id] = ACTIONS(1499), - [sym_instancetype] = ACTIONS(1499), - [sym_Class] = ACTIONS(1499), - [sym_SEL] = ACTIONS(1499), - [sym_IMP] = ACTIONS(1499), - [sym_BOOL] = ACTIONS(1499), - [sym_auto] = ACTIONS(1499), - [anon_sym_ATautoreleasepool] = ACTIONS(1497), - [anon_sym_ATsynchronized] = ACTIONS(1497), - [anon_sym_ATtry] = ACTIONS(1497), - [anon_sym_ATcatch] = ACTIONS(1497), - [anon_sym_ATfinally] = ACTIONS(1497), - [anon_sym_ATthrow] = ACTIONS(1497), - [anon_sym_ATselector] = ACTIONS(1497), - [anon_sym_ATencode] = ACTIONS(1497), - [anon_sym_AT] = ACTIONS(1499), - [sym_YES] = ACTIONS(1499), - [sym_NO] = ACTIONS(1499), - [anon_sym___builtin_available] = ACTIONS(1499), - [anon_sym_ATavailable] = ACTIONS(1497), - [anon_sym_va_arg] = ACTIONS(1499), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [202] = { - [sym_identifier] = ACTIONS(1495), - [aux_sym_preproc_include_token1] = ACTIONS(1493), - [aux_sym_preproc_def_token1] = ACTIONS(1493), - [aux_sym_preproc_if_token1] = ACTIONS(1495), - [aux_sym_preproc_if_token2] = ACTIONS(1495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1495), - [aux_sym_preproc_else_token1] = ACTIONS(1495), - [aux_sym_preproc_elif_token1] = ACTIONS(1495), - [anon_sym_LPAREN2] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_typedef] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym___attribute] = ACTIONS(1495), - [anon_sym___attribute__] = ACTIONS(1495), - [anon_sym___declspec] = ACTIONS(1495), - [anon_sym___cdecl] = ACTIONS(1495), - [anon_sym___clrcall] = ACTIONS(1495), - [anon_sym___stdcall] = ACTIONS(1495), - [anon_sym___fastcall] = ACTIONS(1495), - [anon_sym___thiscall] = ACTIONS(1495), - [anon_sym___vectorcall] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_auto] = ACTIONS(1495), - [anon_sym_register] = ACTIONS(1495), - [anon_sym_inline] = ACTIONS(1495), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_volatile] = ACTIONS(1495), - [anon_sym_restrict] = ACTIONS(1495), - [anon_sym__Atomic] = ACTIONS(1495), - [anon_sym_in] = ACTIONS(1495), - [anon_sym_out] = ACTIONS(1495), - [anon_sym_inout] = ACTIONS(1495), - [anon_sym_bycopy] = ACTIONS(1495), - [anon_sym_byref] = ACTIONS(1495), - [anon_sym_oneway] = ACTIONS(1495), - [anon_sym__Nullable] = ACTIONS(1495), - [anon_sym__Nonnull] = ACTIONS(1495), - [anon_sym__Nullable_result] = ACTIONS(1495), - [anon_sym__Null_unspecified] = ACTIONS(1495), - [anon_sym___autoreleasing] = ACTIONS(1495), - [anon_sym___nullable] = ACTIONS(1495), - [anon_sym___nonnull] = ACTIONS(1495), - [anon_sym___strong] = ACTIONS(1495), - [anon_sym___weak] = ACTIONS(1495), - [anon_sym___bridge] = ACTIONS(1495), - [anon_sym___bridge_transfer] = ACTIONS(1495), - [anon_sym___bridge_retained] = ACTIONS(1495), - [anon_sym___unsafe_unretained] = ACTIONS(1495), - [anon_sym___block] = ACTIONS(1495), - [anon_sym___kindof] = ACTIONS(1495), - [anon_sym___unused] = ACTIONS(1495), - [anon_sym__Complex] = ACTIONS(1495), - [anon_sym___complex] = ACTIONS(1495), - [anon_sym_IBOutlet] = ACTIONS(1495), - [anon_sym_IBInspectable] = ACTIONS(1495), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1495), - [anon_sym_signed] = ACTIONS(1495), - [anon_sym_unsigned] = ACTIONS(1495), - [anon_sym_long] = ACTIONS(1495), - [anon_sym_short] = ACTIONS(1495), - [sym_primitive_type] = ACTIONS(1495), - [anon_sym_enum] = ACTIONS(1495), - [anon_sym_NS_ENUM] = ACTIONS(1495), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1495), - [anon_sym_NS_OPTIONS] = ACTIONS(1495), - [anon_sym_struct] = ACTIONS(1495), - [anon_sym_union] = ACTIONS(1495), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_else] = ACTIONS(1495), - [anon_sym_switch] = ACTIONS(1495), - [anon_sym_case] = ACTIONS(1495), - [anon_sym_default] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_goto] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_sizeof] = ACTIONS(1495), - [sym_number_literal] = ACTIONS(1493), - [anon_sym_L_SQUOTE] = ACTIONS(1493), - [anon_sym_u_SQUOTE] = ACTIONS(1493), - [anon_sym_U_SQUOTE] = ACTIONS(1493), - [anon_sym_u8_SQUOTE] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_L_DQUOTE] = ACTIONS(1493), - [anon_sym_u_DQUOTE] = ACTIONS(1493), - [anon_sym_U_DQUOTE] = ACTIONS(1493), - [anon_sym_u8_DQUOTE] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [sym_true] = ACTIONS(1495), - [sym_false] = ACTIONS(1495), - [sym_null] = ACTIONS(1495), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1493), - [anon_sym_ATimport] = ACTIONS(1493), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1495), - [anon_sym_ATcompatibility_alias] = ACTIONS(1493), - [anon_sym_ATprotocol] = ACTIONS(1493), - [anon_sym_ATclass] = ACTIONS(1493), - [anon_sym_ATinterface] = ACTIONS(1493), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1495), - [sym_method_attribute_specifier] = ACTIONS(1495), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1495), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1495), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1495), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1495), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1495), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1495), - [anon_sym_NS_AVAILABLE] = ACTIONS(1495), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1495), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1495), - [anon_sym_API_AVAILABLE] = ACTIONS(1495), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1495), - [anon_sym_API_DEPRECATED] = ACTIONS(1495), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1495), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1495), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1495), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1495), - [anon_sym___deprecated_msg] = ACTIONS(1495), - [anon_sym___deprecated_enum_msg] = ACTIONS(1495), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1495), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1495), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1495), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1495), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1495), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1495), - [anon_sym_ATimplementation] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___typeof] = ACTIONS(1495), - [anon_sym___typeof__] = ACTIONS(1495), - [sym_self] = ACTIONS(1495), - [sym_super] = ACTIONS(1495), - [sym_nil] = ACTIONS(1495), - [sym_id] = ACTIONS(1495), - [sym_instancetype] = ACTIONS(1495), - [sym_Class] = ACTIONS(1495), - [sym_SEL] = ACTIONS(1495), - [sym_IMP] = ACTIONS(1495), - [sym_BOOL] = ACTIONS(1495), - [sym_auto] = ACTIONS(1495), - [anon_sym_ATautoreleasepool] = ACTIONS(1493), - [anon_sym_ATsynchronized] = ACTIONS(1493), - [anon_sym_ATtry] = ACTIONS(1493), - [anon_sym_ATcatch] = ACTIONS(1493), - [anon_sym_ATfinally] = ACTIONS(1493), - [anon_sym_ATthrow] = ACTIONS(1493), - [anon_sym_ATselector] = ACTIONS(1493), - [anon_sym_ATencode] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [sym_YES] = ACTIONS(1495), - [sym_NO] = ACTIONS(1495), - [anon_sym___builtin_available] = ACTIONS(1495), - [anon_sym_ATavailable] = ACTIONS(1493), - [anon_sym_va_arg] = ACTIONS(1495), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [203] = { - [sym_identifier] = ACTIONS(1491), - [aux_sym_preproc_include_token1] = ACTIONS(1489), - [aux_sym_preproc_def_token1] = ACTIONS(1489), - [aux_sym_preproc_if_token1] = ACTIONS(1491), - [aux_sym_preproc_if_token2] = ACTIONS(1491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1491), - [aux_sym_preproc_else_token1] = ACTIONS(1491), - [aux_sym_preproc_elif_token1] = ACTIONS(1491), - [anon_sym_LPAREN2] = ACTIONS(1489), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_CARET] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1489), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_typedef] = ACTIONS(1491), - [anon_sym_extern] = ACTIONS(1491), - [anon_sym___attribute] = ACTIONS(1491), - [anon_sym___attribute__] = ACTIONS(1491), - [anon_sym___declspec] = ACTIONS(1491), - [anon_sym___cdecl] = ACTIONS(1491), - [anon_sym___clrcall] = ACTIONS(1491), - [anon_sym___stdcall] = ACTIONS(1491), - [anon_sym___fastcall] = ACTIONS(1491), - [anon_sym___thiscall] = ACTIONS(1491), - [anon_sym___vectorcall] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_auto] = ACTIONS(1491), - [anon_sym_register] = ACTIONS(1491), - [anon_sym_inline] = ACTIONS(1491), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_volatile] = ACTIONS(1491), - [anon_sym_restrict] = ACTIONS(1491), - [anon_sym__Atomic] = ACTIONS(1491), - [anon_sym_in] = ACTIONS(1491), - [anon_sym_out] = ACTIONS(1491), - [anon_sym_inout] = ACTIONS(1491), - [anon_sym_bycopy] = ACTIONS(1491), - [anon_sym_byref] = ACTIONS(1491), - [anon_sym_oneway] = ACTIONS(1491), - [anon_sym__Nullable] = ACTIONS(1491), - [anon_sym__Nonnull] = ACTIONS(1491), - [anon_sym__Nullable_result] = ACTIONS(1491), - [anon_sym__Null_unspecified] = ACTIONS(1491), - [anon_sym___autoreleasing] = ACTIONS(1491), - [anon_sym___nullable] = ACTIONS(1491), - [anon_sym___nonnull] = ACTIONS(1491), - [anon_sym___strong] = ACTIONS(1491), - [anon_sym___weak] = ACTIONS(1491), - [anon_sym___bridge] = ACTIONS(1491), - [anon_sym___bridge_transfer] = ACTIONS(1491), - [anon_sym___bridge_retained] = ACTIONS(1491), - [anon_sym___unsafe_unretained] = ACTIONS(1491), - [anon_sym___block] = ACTIONS(1491), - [anon_sym___kindof] = ACTIONS(1491), - [anon_sym___unused] = ACTIONS(1491), - [anon_sym__Complex] = ACTIONS(1491), - [anon_sym___complex] = ACTIONS(1491), - [anon_sym_IBOutlet] = ACTIONS(1491), - [anon_sym_IBInspectable] = ACTIONS(1491), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1491), - [anon_sym_signed] = ACTIONS(1491), - [anon_sym_unsigned] = ACTIONS(1491), - [anon_sym_long] = ACTIONS(1491), - [anon_sym_short] = ACTIONS(1491), - [sym_primitive_type] = ACTIONS(1491), - [anon_sym_enum] = ACTIONS(1491), - [anon_sym_NS_ENUM] = ACTIONS(1491), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1491), - [anon_sym_NS_OPTIONS] = ACTIONS(1491), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_else] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_case] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_goto] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_sizeof] = ACTIONS(1491), - [sym_number_literal] = ACTIONS(1489), - [anon_sym_L_SQUOTE] = ACTIONS(1489), - [anon_sym_u_SQUOTE] = ACTIONS(1489), - [anon_sym_U_SQUOTE] = ACTIONS(1489), - [anon_sym_u8_SQUOTE] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_L_DQUOTE] = ACTIONS(1489), - [anon_sym_u_DQUOTE] = ACTIONS(1489), - [anon_sym_U_DQUOTE] = ACTIONS(1489), - [anon_sym_u8_DQUOTE] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(1489), - [sym_true] = ACTIONS(1491), - [sym_false] = ACTIONS(1491), - [sym_null] = ACTIONS(1491), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1489), - [anon_sym_ATimport] = ACTIONS(1489), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1491), - [anon_sym_ATcompatibility_alias] = ACTIONS(1489), - [anon_sym_ATprotocol] = ACTIONS(1489), - [anon_sym_ATclass] = ACTIONS(1489), - [anon_sym_ATinterface] = ACTIONS(1489), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1491), - [sym_method_attribute_specifier] = ACTIONS(1491), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1491), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1491), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1491), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1491), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1491), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1491), - [anon_sym_NS_AVAILABLE] = ACTIONS(1491), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1491), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1491), - [anon_sym_API_AVAILABLE] = ACTIONS(1491), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1491), - [anon_sym_API_DEPRECATED] = ACTIONS(1491), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1491), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1491), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1491), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1491), - [anon_sym___deprecated_msg] = ACTIONS(1491), - [anon_sym___deprecated_enum_msg] = ACTIONS(1491), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1491), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1491), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1491), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1491), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1491), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1491), - [anon_sym_ATimplementation] = ACTIONS(1489), - [anon_sym_typeof] = ACTIONS(1491), - [anon_sym___typeof] = ACTIONS(1491), - [anon_sym___typeof__] = ACTIONS(1491), - [sym_self] = ACTIONS(1491), - [sym_super] = ACTIONS(1491), - [sym_nil] = ACTIONS(1491), - [sym_id] = ACTIONS(1491), - [sym_instancetype] = ACTIONS(1491), - [sym_Class] = ACTIONS(1491), - [sym_SEL] = ACTIONS(1491), - [sym_IMP] = ACTIONS(1491), - [sym_BOOL] = ACTIONS(1491), - [sym_auto] = ACTIONS(1491), - [anon_sym_ATautoreleasepool] = ACTIONS(1489), - [anon_sym_ATsynchronized] = ACTIONS(1489), - [anon_sym_ATtry] = ACTIONS(1489), - [anon_sym_ATcatch] = ACTIONS(1489), - [anon_sym_ATfinally] = ACTIONS(1489), - [anon_sym_ATthrow] = ACTIONS(1489), - [anon_sym_ATselector] = ACTIONS(1489), - [anon_sym_ATencode] = ACTIONS(1489), - [anon_sym_AT] = ACTIONS(1491), - [sym_YES] = ACTIONS(1491), - [sym_NO] = ACTIONS(1491), - [anon_sym___builtin_available] = ACTIONS(1491), - [anon_sym_ATavailable] = ACTIONS(1489), - [anon_sym_va_arg] = ACTIONS(1491), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [204] = { - [sym_identifier] = ACTIONS(1475), - [aux_sym_preproc_include_token1] = ACTIONS(1473), - [aux_sym_preproc_def_token1] = ACTIONS(1473), - [aux_sym_preproc_if_token1] = ACTIONS(1475), - [aux_sym_preproc_if_token2] = ACTIONS(1475), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1475), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1475), - [aux_sym_preproc_else_token1] = ACTIONS(1475), - [aux_sym_preproc_elif_token1] = ACTIONS(1475), - [anon_sym_LPAREN2] = ACTIONS(1473), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym_typedef] = ACTIONS(1475), - [anon_sym_extern] = ACTIONS(1475), - [anon_sym___attribute] = ACTIONS(1475), - [anon_sym___attribute__] = ACTIONS(1475), - [anon_sym___declspec] = ACTIONS(1475), - [anon_sym___cdecl] = ACTIONS(1475), - [anon_sym___clrcall] = ACTIONS(1475), - [anon_sym___stdcall] = ACTIONS(1475), - [anon_sym___fastcall] = ACTIONS(1475), - [anon_sym___thiscall] = ACTIONS(1475), - [anon_sym___vectorcall] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1473), - [anon_sym_LBRACK] = ACTIONS(1473), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_auto] = ACTIONS(1475), - [anon_sym_register] = ACTIONS(1475), - [anon_sym_inline] = ACTIONS(1475), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_volatile] = ACTIONS(1475), - [anon_sym_restrict] = ACTIONS(1475), - [anon_sym__Atomic] = ACTIONS(1475), - [anon_sym_in] = ACTIONS(1475), - [anon_sym_out] = ACTIONS(1475), - [anon_sym_inout] = ACTIONS(1475), - [anon_sym_bycopy] = ACTIONS(1475), - [anon_sym_byref] = ACTIONS(1475), - [anon_sym_oneway] = ACTIONS(1475), - [anon_sym__Nullable] = ACTIONS(1475), - [anon_sym__Nonnull] = ACTIONS(1475), - [anon_sym__Nullable_result] = ACTIONS(1475), - [anon_sym__Null_unspecified] = ACTIONS(1475), - [anon_sym___autoreleasing] = ACTIONS(1475), - [anon_sym___nullable] = ACTIONS(1475), - [anon_sym___nonnull] = ACTIONS(1475), - [anon_sym___strong] = ACTIONS(1475), - [anon_sym___weak] = ACTIONS(1475), - [anon_sym___bridge] = ACTIONS(1475), - [anon_sym___bridge_transfer] = ACTIONS(1475), - [anon_sym___bridge_retained] = ACTIONS(1475), - [anon_sym___unsafe_unretained] = ACTIONS(1475), - [anon_sym___block] = ACTIONS(1475), - [anon_sym___kindof] = ACTIONS(1475), - [anon_sym___unused] = ACTIONS(1475), - [anon_sym__Complex] = ACTIONS(1475), - [anon_sym___complex] = ACTIONS(1475), - [anon_sym_IBOutlet] = ACTIONS(1475), - [anon_sym_IBInspectable] = ACTIONS(1475), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1475), - [anon_sym_signed] = ACTIONS(1475), - [anon_sym_unsigned] = ACTIONS(1475), - [anon_sym_long] = ACTIONS(1475), - [anon_sym_short] = ACTIONS(1475), - [sym_primitive_type] = ACTIONS(1475), - [anon_sym_enum] = ACTIONS(1475), - [anon_sym_NS_ENUM] = ACTIONS(1475), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1475), - [anon_sym_NS_OPTIONS] = ACTIONS(1475), - [anon_sym_struct] = ACTIONS(1475), - [anon_sym_union] = ACTIONS(1475), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_else] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1475), - [anon_sym_case] = ACTIONS(1475), - [anon_sym_default] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_goto] = ACTIONS(1475), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_sizeof] = ACTIONS(1475), - [sym_number_literal] = ACTIONS(1473), - [anon_sym_L_SQUOTE] = ACTIONS(1473), - [anon_sym_u_SQUOTE] = ACTIONS(1473), - [anon_sym_U_SQUOTE] = ACTIONS(1473), - [anon_sym_u8_SQUOTE] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_L_DQUOTE] = ACTIONS(1473), - [anon_sym_u_DQUOTE] = ACTIONS(1473), - [anon_sym_U_DQUOTE] = ACTIONS(1473), - [anon_sym_u8_DQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [sym_true] = ACTIONS(1475), - [sym_false] = ACTIONS(1475), - [sym_null] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1473), - [anon_sym_ATimport] = ACTIONS(1473), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1475), - [anon_sym_ATcompatibility_alias] = ACTIONS(1473), - [anon_sym_ATprotocol] = ACTIONS(1473), - [anon_sym_ATclass] = ACTIONS(1473), - [anon_sym_ATinterface] = ACTIONS(1473), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1475), - [sym_method_attribute_specifier] = ACTIONS(1475), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1475), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1475), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1475), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1475), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1475), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1475), - [anon_sym_NS_AVAILABLE] = ACTIONS(1475), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1475), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1475), - [anon_sym_API_AVAILABLE] = ACTIONS(1475), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1475), - [anon_sym_API_DEPRECATED] = ACTIONS(1475), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1475), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1475), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1475), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1475), - [anon_sym___deprecated_msg] = ACTIONS(1475), - [anon_sym___deprecated_enum_msg] = ACTIONS(1475), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1475), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1475), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1475), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1475), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1475), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1475), - [anon_sym_ATimplementation] = ACTIONS(1473), - [anon_sym_typeof] = ACTIONS(1475), - [anon_sym___typeof] = ACTIONS(1475), - [anon_sym___typeof__] = ACTIONS(1475), - [sym_self] = ACTIONS(1475), - [sym_super] = ACTIONS(1475), - [sym_nil] = ACTIONS(1475), - [sym_id] = ACTIONS(1475), - [sym_instancetype] = ACTIONS(1475), - [sym_Class] = ACTIONS(1475), - [sym_SEL] = ACTIONS(1475), - [sym_IMP] = ACTIONS(1475), - [sym_BOOL] = ACTIONS(1475), - [sym_auto] = ACTIONS(1475), - [anon_sym_ATautoreleasepool] = ACTIONS(1473), - [anon_sym_ATsynchronized] = ACTIONS(1473), - [anon_sym_ATtry] = ACTIONS(1473), - [anon_sym_ATcatch] = ACTIONS(1473), - [anon_sym_ATfinally] = ACTIONS(1473), - [anon_sym_ATthrow] = ACTIONS(1473), - [anon_sym_ATselector] = ACTIONS(1473), - [anon_sym_ATencode] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(1475), - [sym_YES] = ACTIONS(1475), - [sym_NO] = ACTIONS(1475), - [anon_sym___builtin_available] = ACTIONS(1475), - [anon_sym_ATavailable] = ACTIONS(1473), - [anon_sym_va_arg] = ACTIONS(1475), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [205] = { - [sym_identifier] = ACTIONS(1471), - [aux_sym_preproc_include_token1] = ACTIONS(1469), - [aux_sym_preproc_def_token1] = ACTIONS(1469), - [aux_sym_preproc_if_token1] = ACTIONS(1471), - [aux_sym_preproc_if_token2] = ACTIONS(1471), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1471), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1471), - [aux_sym_preproc_else_token1] = ACTIONS(1471), - [aux_sym_preproc_elif_token1] = ACTIONS(1471), - [anon_sym_LPAREN2] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_typedef] = ACTIONS(1471), - [anon_sym_extern] = ACTIONS(1471), - [anon_sym___attribute] = ACTIONS(1471), - [anon_sym___attribute__] = ACTIONS(1471), - [anon_sym___declspec] = ACTIONS(1471), - [anon_sym___cdecl] = ACTIONS(1471), - [anon_sym___clrcall] = ACTIONS(1471), - [anon_sym___stdcall] = ACTIONS(1471), - [anon_sym___fastcall] = ACTIONS(1471), - [anon_sym___thiscall] = ACTIONS(1471), - [anon_sym___vectorcall] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_auto] = ACTIONS(1471), - [anon_sym_register] = ACTIONS(1471), - [anon_sym_inline] = ACTIONS(1471), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1471), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_volatile] = ACTIONS(1471), - [anon_sym_restrict] = ACTIONS(1471), - [anon_sym__Atomic] = ACTIONS(1471), - [anon_sym_in] = ACTIONS(1471), - [anon_sym_out] = ACTIONS(1471), - [anon_sym_inout] = ACTIONS(1471), - [anon_sym_bycopy] = ACTIONS(1471), - [anon_sym_byref] = ACTIONS(1471), - [anon_sym_oneway] = ACTIONS(1471), - [anon_sym__Nullable] = ACTIONS(1471), - [anon_sym__Nonnull] = ACTIONS(1471), - [anon_sym__Nullable_result] = ACTIONS(1471), - [anon_sym__Null_unspecified] = ACTIONS(1471), - [anon_sym___autoreleasing] = ACTIONS(1471), - [anon_sym___nullable] = ACTIONS(1471), - [anon_sym___nonnull] = ACTIONS(1471), - [anon_sym___strong] = ACTIONS(1471), - [anon_sym___weak] = ACTIONS(1471), - [anon_sym___bridge] = ACTIONS(1471), - [anon_sym___bridge_transfer] = ACTIONS(1471), - [anon_sym___bridge_retained] = ACTIONS(1471), - [anon_sym___unsafe_unretained] = ACTIONS(1471), - [anon_sym___block] = ACTIONS(1471), - [anon_sym___kindof] = ACTIONS(1471), - [anon_sym___unused] = ACTIONS(1471), - [anon_sym__Complex] = ACTIONS(1471), - [anon_sym___complex] = ACTIONS(1471), - [anon_sym_IBOutlet] = ACTIONS(1471), - [anon_sym_IBInspectable] = ACTIONS(1471), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1471), - [anon_sym_signed] = ACTIONS(1471), - [anon_sym_unsigned] = ACTIONS(1471), - [anon_sym_long] = ACTIONS(1471), - [anon_sym_short] = ACTIONS(1471), - [sym_primitive_type] = ACTIONS(1471), - [anon_sym_enum] = ACTIONS(1471), - [anon_sym_NS_ENUM] = ACTIONS(1471), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1471), - [anon_sym_NS_OPTIONS] = ACTIONS(1471), - [anon_sym_struct] = ACTIONS(1471), - [anon_sym_union] = ACTIONS(1471), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_else] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(1471), - [anon_sym_case] = ACTIONS(1471), - [anon_sym_default] = ACTIONS(1471), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_do] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_goto] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1469), - [anon_sym_PLUS_PLUS] = ACTIONS(1469), - [anon_sym_sizeof] = ACTIONS(1471), - [sym_number_literal] = ACTIONS(1469), - [anon_sym_L_SQUOTE] = ACTIONS(1469), - [anon_sym_u_SQUOTE] = ACTIONS(1469), - [anon_sym_U_SQUOTE] = ACTIONS(1469), - [anon_sym_u8_SQUOTE] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_L_DQUOTE] = ACTIONS(1469), - [anon_sym_u_DQUOTE] = ACTIONS(1469), - [anon_sym_U_DQUOTE] = ACTIONS(1469), - [anon_sym_u8_DQUOTE] = ACTIONS(1469), - [anon_sym_DQUOTE] = ACTIONS(1469), - [sym_true] = ACTIONS(1471), - [sym_false] = ACTIONS(1471), - [sym_null] = ACTIONS(1471), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1469), - [anon_sym_ATimport] = ACTIONS(1469), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1471), - [anon_sym_ATcompatibility_alias] = ACTIONS(1469), - [anon_sym_ATprotocol] = ACTIONS(1469), - [anon_sym_ATclass] = ACTIONS(1469), - [anon_sym_ATinterface] = ACTIONS(1469), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1471), - [sym_method_attribute_specifier] = ACTIONS(1471), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1471), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1471), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1471), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1471), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1471), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1471), - [anon_sym_NS_AVAILABLE] = ACTIONS(1471), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1471), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1471), - [anon_sym_API_AVAILABLE] = ACTIONS(1471), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1471), - [anon_sym_API_DEPRECATED] = ACTIONS(1471), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1471), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1471), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1471), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1471), - [anon_sym___deprecated_msg] = ACTIONS(1471), - [anon_sym___deprecated_enum_msg] = ACTIONS(1471), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1471), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1471), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1471), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1471), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1471), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1471), - [anon_sym_ATimplementation] = ACTIONS(1469), - [anon_sym_typeof] = ACTIONS(1471), - [anon_sym___typeof] = ACTIONS(1471), - [anon_sym___typeof__] = ACTIONS(1471), - [sym_self] = ACTIONS(1471), - [sym_super] = ACTIONS(1471), - [sym_nil] = ACTIONS(1471), - [sym_id] = ACTIONS(1471), - [sym_instancetype] = ACTIONS(1471), - [sym_Class] = ACTIONS(1471), - [sym_SEL] = ACTIONS(1471), - [sym_IMP] = ACTIONS(1471), - [sym_BOOL] = ACTIONS(1471), - [sym_auto] = ACTIONS(1471), - [anon_sym_ATautoreleasepool] = ACTIONS(1469), - [anon_sym_ATsynchronized] = ACTIONS(1469), - [anon_sym_ATtry] = ACTIONS(1469), - [anon_sym_ATcatch] = ACTIONS(1469), - [anon_sym_ATfinally] = ACTIONS(1469), - [anon_sym_ATthrow] = ACTIONS(1469), - [anon_sym_ATselector] = ACTIONS(1469), - [anon_sym_ATencode] = ACTIONS(1469), - [anon_sym_AT] = ACTIONS(1471), - [sym_YES] = ACTIONS(1471), - [sym_NO] = ACTIONS(1471), - [anon_sym___builtin_available] = ACTIONS(1471), - [anon_sym_ATavailable] = ACTIONS(1469), - [anon_sym_va_arg] = ACTIONS(1471), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [206] = { - [sym_identifier] = ACTIONS(1451), - [aux_sym_preproc_include_token1] = ACTIONS(1449), - [aux_sym_preproc_def_token1] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1451), - [aux_sym_preproc_if_token2] = ACTIONS(1451), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1451), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1451), - [aux_sym_preproc_else_token1] = ACTIONS(1451), - [aux_sym_preproc_elif_token1] = ACTIONS(1451), - [anon_sym_LPAREN2] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_typedef] = ACTIONS(1451), - [anon_sym_extern] = ACTIONS(1451), - [anon_sym___attribute] = ACTIONS(1451), - [anon_sym___attribute__] = ACTIONS(1451), - [anon_sym___declspec] = ACTIONS(1451), - [anon_sym___cdecl] = ACTIONS(1451), - [anon_sym___clrcall] = ACTIONS(1451), - [anon_sym___stdcall] = ACTIONS(1451), - [anon_sym___fastcall] = ACTIONS(1451), - [anon_sym___thiscall] = ACTIONS(1451), - [anon_sym___vectorcall] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_auto] = ACTIONS(1451), - [anon_sym_register] = ACTIONS(1451), - [anon_sym_inline] = ACTIONS(1451), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_volatile] = ACTIONS(1451), - [anon_sym_restrict] = ACTIONS(1451), - [anon_sym__Atomic] = ACTIONS(1451), - [anon_sym_in] = ACTIONS(1451), - [anon_sym_out] = ACTIONS(1451), - [anon_sym_inout] = ACTIONS(1451), - [anon_sym_bycopy] = ACTIONS(1451), - [anon_sym_byref] = ACTIONS(1451), - [anon_sym_oneway] = ACTIONS(1451), - [anon_sym__Nullable] = ACTIONS(1451), - [anon_sym__Nonnull] = ACTIONS(1451), - [anon_sym__Nullable_result] = ACTIONS(1451), - [anon_sym__Null_unspecified] = ACTIONS(1451), - [anon_sym___autoreleasing] = ACTIONS(1451), - [anon_sym___nullable] = ACTIONS(1451), - [anon_sym___nonnull] = ACTIONS(1451), - [anon_sym___strong] = ACTIONS(1451), - [anon_sym___weak] = ACTIONS(1451), - [anon_sym___bridge] = ACTIONS(1451), - [anon_sym___bridge_transfer] = ACTIONS(1451), - [anon_sym___bridge_retained] = ACTIONS(1451), - [anon_sym___unsafe_unretained] = ACTIONS(1451), - [anon_sym___block] = ACTIONS(1451), - [anon_sym___kindof] = ACTIONS(1451), - [anon_sym___unused] = ACTIONS(1451), - [anon_sym__Complex] = ACTIONS(1451), - [anon_sym___complex] = ACTIONS(1451), - [anon_sym_IBOutlet] = ACTIONS(1451), - [anon_sym_IBInspectable] = ACTIONS(1451), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1451), - [anon_sym_signed] = ACTIONS(1451), - [anon_sym_unsigned] = ACTIONS(1451), - [anon_sym_long] = ACTIONS(1451), - [anon_sym_short] = ACTIONS(1451), - [sym_primitive_type] = ACTIONS(1451), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_NS_ENUM] = ACTIONS(1451), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1451), - [anon_sym_NS_OPTIONS] = ACTIONS(1451), - [anon_sym_struct] = ACTIONS(1451), - [anon_sym_union] = ACTIONS(1451), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_else] = ACTIONS(1451), - [anon_sym_switch] = ACTIONS(1451), - [anon_sym_case] = ACTIONS(1451), - [anon_sym_default] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_do] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_goto] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_sizeof] = ACTIONS(1451), - [sym_number_literal] = ACTIONS(1449), - [anon_sym_L_SQUOTE] = ACTIONS(1449), - [anon_sym_u_SQUOTE] = ACTIONS(1449), - [anon_sym_U_SQUOTE] = ACTIONS(1449), - [anon_sym_u8_SQUOTE] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1449), - [anon_sym_L_DQUOTE] = ACTIONS(1449), - [anon_sym_u_DQUOTE] = ACTIONS(1449), - [anon_sym_U_DQUOTE] = ACTIONS(1449), - [anon_sym_u8_DQUOTE] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1449), - [sym_true] = ACTIONS(1451), - [sym_false] = ACTIONS(1451), - [sym_null] = ACTIONS(1451), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1449), - [anon_sym_ATimport] = ACTIONS(1449), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1451), - [anon_sym_ATcompatibility_alias] = ACTIONS(1449), - [anon_sym_ATprotocol] = ACTIONS(1449), - [anon_sym_ATclass] = ACTIONS(1449), - [anon_sym_ATinterface] = ACTIONS(1449), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1451), - [sym_method_attribute_specifier] = ACTIONS(1451), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1451), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1451), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1451), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1451), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1451), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1451), - [anon_sym_NS_AVAILABLE] = ACTIONS(1451), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1451), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1451), - [anon_sym_API_AVAILABLE] = ACTIONS(1451), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1451), - [anon_sym_API_DEPRECATED] = ACTIONS(1451), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1451), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1451), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1451), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1451), - [anon_sym___deprecated_msg] = ACTIONS(1451), - [anon_sym___deprecated_enum_msg] = ACTIONS(1451), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1451), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1451), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1451), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1451), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1451), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1451), - [anon_sym_ATimplementation] = ACTIONS(1449), - [anon_sym_typeof] = ACTIONS(1451), - [anon_sym___typeof] = ACTIONS(1451), - [anon_sym___typeof__] = ACTIONS(1451), - [sym_self] = ACTIONS(1451), - [sym_super] = ACTIONS(1451), - [sym_nil] = ACTIONS(1451), - [sym_id] = ACTIONS(1451), - [sym_instancetype] = ACTIONS(1451), - [sym_Class] = ACTIONS(1451), - [sym_SEL] = ACTIONS(1451), - [sym_IMP] = ACTIONS(1451), - [sym_BOOL] = ACTIONS(1451), - [sym_auto] = ACTIONS(1451), - [anon_sym_ATautoreleasepool] = ACTIONS(1449), - [anon_sym_ATsynchronized] = ACTIONS(1449), - [anon_sym_ATtry] = ACTIONS(1449), - [anon_sym_ATcatch] = ACTIONS(1449), - [anon_sym_ATfinally] = ACTIONS(1449), - [anon_sym_ATthrow] = ACTIONS(1449), - [anon_sym_ATselector] = ACTIONS(1449), - [anon_sym_ATencode] = ACTIONS(1449), - [anon_sym_AT] = ACTIONS(1451), - [sym_YES] = ACTIONS(1451), - [sym_NO] = ACTIONS(1451), - [anon_sym___builtin_available] = ACTIONS(1451), - [anon_sym_ATavailable] = ACTIONS(1449), - [anon_sym_va_arg] = ACTIONS(1451), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [207] = { - [sym_identifier] = ACTIONS(1443), - [aux_sym_preproc_include_token1] = ACTIONS(1441), - [aux_sym_preproc_def_token1] = ACTIONS(1441), - [aux_sym_preproc_if_token1] = ACTIONS(1443), - [aux_sym_preproc_if_token2] = ACTIONS(1443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1443), - [aux_sym_preproc_else_token1] = ACTIONS(1443), - [aux_sym_preproc_elif_token1] = ACTIONS(1443), - [anon_sym_LPAREN2] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_typedef] = ACTIONS(1443), - [anon_sym_extern] = ACTIONS(1443), - [anon_sym___attribute] = ACTIONS(1443), - [anon_sym___attribute__] = ACTIONS(1443), - [anon_sym___declspec] = ACTIONS(1443), - [anon_sym___cdecl] = ACTIONS(1443), - [anon_sym___clrcall] = ACTIONS(1443), - [anon_sym___stdcall] = ACTIONS(1443), - [anon_sym___fastcall] = ACTIONS(1443), - [anon_sym___thiscall] = ACTIONS(1443), - [anon_sym___vectorcall] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_auto] = ACTIONS(1443), - [anon_sym_register] = ACTIONS(1443), - [anon_sym_inline] = ACTIONS(1443), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_volatile] = ACTIONS(1443), - [anon_sym_restrict] = ACTIONS(1443), - [anon_sym__Atomic] = ACTIONS(1443), - [anon_sym_in] = ACTIONS(1443), - [anon_sym_out] = ACTIONS(1443), - [anon_sym_inout] = ACTIONS(1443), - [anon_sym_bycopy] = ACTIONS(1443), - [anon_sym_byref] = ACTIONS(1443), - [anon_sym_oneway] = ACTIONS(1443), - [anon_sym__Nullable] = ACTIONS(1443), - [anon_sym__Nonnull] = ACTIONS(1443), - [anon_sym__Nullable_result] = ACTIONS(1443), - [anon_sym__Null_unspecified] = ACTIONS(1443), - [anon_sym___autoreleasing] = ACTIONS(1443), - [anon_sym___nullable] = ACTIONS(1443), - [anon_sym___nonnull] = ACTIONS(1443), - [anon_sym___strong] = ACTIONS(1443), - [anon_sym___weak] = ACTIONS(1443), - [anon_sym___bridge] = ACTIONS(1443), - [anon_sym___bridge_transfer] = ACTIONS(1443), - [anon_sym___bridge_retained] = ACTIONS(1443), - [anon_sym___unsafe_unretained] = ACTIONS(1443), - [anon_sym___block] = ACTIONS(1443), - [anon_sym___kindof] = ACTIONS(1443), - [anon_sym___unused] = ACTIONS(1443), - [anon_sym__Complex] = ACTIONS(1443), - [anon_sym___complex] = ACTIONS(1443), - [anon_sym_IBOutlet] = ACTIONS(1443), - [anon_sym_IBInspectable] = ACTIONS(1443), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1443), - [anon_sym_signed] = ACTIONS(1443), - [anon_sym_unsigned] = ACTIONS(1443), - [anon_sym_long] = ACTIONS(1443), - [anon_sym_short] = ACTIONS(1443), - [sym_primitive_type] = ACTIONS(1443), - [anon_sym_enum] = ACTIONS(1443), - [anon_sym_NS_ENUM] = ACTIONS(1443), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1443), - [anon_sym_NS_OPTIONS] = ACTIONS(1443), - [anon_sym_struct] = ACTIONS(1443), - [anon_sym_union] = ACTIONS(1443), - [anon_sym_if] = ACTIONS(1443), - [anon_sym_else] = ACTIONS(1443), - [anon_sym_switch] = ACTIONS(1443), - [anon_sym_case] = ACTIONS(1443), - [anon_sym_default] = ACTIONS(1443), - [anon_sym_while] = ACTIONS(1443), - [anon_sym_do] = ACTIONS(1443), - [anon_sym_for] = ACTIONS(1443), - [anon_sym_return] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1443), - [anon_sym_continue] = ACTIONS(1443), - [anon_sym_goto] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_sizeof] = ACTIONS(1443), - [sym_number_literal] = ACTIONS(1441), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1441), - [anon_sym_u_DQUOTE] = ACTIONS(1441), - [anon_sym_U_DQUOTE] = ACTIONS(1441), - [anon_sym_u8_DQUOTE] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [sym_true] = ACTIONS(1443), - [sym_false] = ACTIONS(1443), - [sym_null] = ACTIONS(1443), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1441), - [anon_sym_ATimport] = ACTIONS(1441), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1443), - [anon_sym_ATcompatibility_alias] = ACTIONS(1441), - [anon_sym_ATprotocol] = ACTIONS(1441), - [anon_sym_ATclass] = ACTIONS(1441), - [anon_sym_ATinterface] = ACTIONS(1441), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1443), - [sym_method_attribute_specifier] = ACTIONS(1443), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1443), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1443), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1443), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1443), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1443), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1443), - [anon_sym_NS_AVAILABLE] = ACTIONS(1443), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1443), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1443), - [anon_sym_API_AVAILABLE] = ACTIONS(1443), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1443), - [anon_sym_API_DEPRECATED] = ACTIONS(1443), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1443), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1443), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1443), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1443), - [anon_sym___deprecated_msg] = ACTIONS(1443), - [anon_sym___deprecated_enum_msg] = ACTIONS(1443), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1443), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1443), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1443), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1443), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1443), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1443), - [anon_sym_ATimplementation] = ACTIONS(1441), - [anon_sym_typeof] = ACTIONS(1443), - [anon_sym___typeof] = ACTIONS(1443), - [anon_sym___typeof__] = ACTIONS(1443), - [sym_self] = ACTIONS(1443), - [sym_super] = ACTIONS(1443), - [sym_nil] = ACTIONS(1443), - [sym_id] = ACTIONS(1443), - [sym_instancetype] = ACTIONS(1443), - [sym_Class] = ACTIONS(1443), - [sym_SEL] = ACTIONS(1443), - [sym_IMP] = ACTIONS(1443), - [sym_BOOL] = ACTIONS(1443), - [sym_auto] = ACTIONS(1443), - [anon_sym_ATautoreleasepool] = ACTIONS(1441), - [anon_sym_ATsynchronized] = ACTIONS(1441), - [anon_sym_ATtry] = ACTIONS(1441), - [anon_sym_ATcatch] = ACTIONS(1441), - [anon_sym_ATfinally] = ACTIONS(1441), - [anon_sym_ATthrow] = ACTIONS(1441), - [anon_sym_ATselector] = ACTIONS(1441), - [anon_sym_ATencode] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [sym_YES] = ACTIONS(1443), - [sym_NO] = ACTIONS(1443), - [anon_sym___builtin_available] = ACTIONS(1443), - [anon_sym_ATavailable] = ACTIONS(1441), - [anon_sym_va_arg] = ACTIONS(1443), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [208] = { [sym_identifier] = ACTIONS(1439), [aux_sym_preproc_include_token1] = ACTIONS(1437), [aux_sym_preproc_def_token1] = ACTIONS(1437), @@ -62315,9 +59689,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1439), [sym_primitive_type] = ACTIONS(1439), [anon_sym_enum] = ACTIONS(1439), - [anon_sym_NS_ENUM] = ACTIONS(1439), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1439), - [anon_sym_NS_OPTIONS] = ACTIONS(1439), [anon_sym_struct] = ACTIONS(1439), [anon_sym_union] = ACTIONS(1439), [anon_sym_if] = ACTIONS(1439), @@ -62384,6 +59755,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1439), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1439), [anon_sym_ATimplementation] = ACTIONS(1437), + [anon_sym_NS_ENUM] = ACTIONS(1439), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1439), + [anon_sym_NS_OPTIONS] = ACTIONS(1439), [anon_sym_typeof] = ACTIONS(1439), [anon_sym___typeof] = ACTIONS(1439), [anon_sym___typeof__] = ACTIONS(1439), @@ -62418,176 +59792,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [209] = { - [sym_identifier] = ACTIONS(1431), - [aux_sym_preproc_include_token1] = ACTIONS(1429), - [aux_sym_preproc_def_token1] = ACTIONS(1429), - [aux_sym_preproc_if_token1] = ACTIONS(1431), - [aux_sym_preproc_if_token2] = ACTIONS(1431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1431), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1431), - [aux_sym_preproc_else_token1] = ACTIONS(1431), - [aux_sym_preproc_elif_token1] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(1429), - [anon_sym_BANG] = ACTIONS(1429), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_CARET] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1429), - [anon_sym_typedef] = ACTIONS(1431), - [anon_sym_extern] = ACTIONS(1431), - [anon_sym___attribute] = ACTIONS(1431), - [anon_sym___attribute__] = ACTIONS(1431), - [anon_sym___declspec] = ACTIONS(1431), - [anon_sym___cdecl] = ACTIONS(1431), - [anon_sym___clrcall] = ACTIONS(1431), - [anon_sym___stdcall] = ACTIONS(1431), - [anon_sym___fastcall] = ACTIONS(1431), - [anon_sym___thiscall] = ACTIONS(1431), - [anon_sym___vectorcall] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1429), - [anon_sym_LBRACK] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_auto] = ACTIONS(1431), - [anon_sym_register] = ACTIONS(1431), - [anon_sym_inline] = ACTIONS(1431), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [anon_sym_volatile] = ACTIONS(1431), - [anon_sym_restrict] = ACTIONS(1431), - [anon_sym__Atomic] = ACTIONS(1431), - [anon_sym_in] = ACTIONS(1431), - [anon_sym_out] = ACTIONS(1431), - [anon_sym_inout] = ACTIONS(1431), - [anon_sym_bycopy] = ACTIONS(1431), - [anon_sym_byref] = ACTIONS(1431), - [anon_sym_oneway] = ACTIONS(1431), - [anon_sym__Nullable] = ACTIONS(1431), - [anon_sym__Nonnull] = ACTIONS(1431), - [anon_sym__Nullable_result] = ACTIONS(1431), - [anon_sym__Null_unspecified] = ACTIONS(1431), - [anon_sym___autoreleasing] = ACTIONS(1431), - [anon_sym___nullable] = ACTIONS(1431), - [anon_sym___nonnull] = ACTIONS(1431), - [anon_sym___strong] = ACTIONS(1431), - [anon_sym___weak] = ACTIONS(1431), - [anon_sym___bridge] = ACTIONS(1431), - [anon_sym___bridge_transfer] = ACTIONS(1431), - [anon_sym___bridge_retained] = ACTIONS(1431), - [anon_sym___unsafe_unretained] = ACTIONS(1431), - [anon_sym___block] = ACTIONS(1431), - [anon_sym___kindof] = ACTIONS(1431), - [anon_sym___unused] = ACTIONS(1431), - [anon_sym__Complex] = ACTIONS(1431), - [anon_sym___complex] = ACTIONS(1431), - [anon_sym_IBOutlet] = ACTIONS(1431), - [anon_sym_IBInspectable] = ACTIONS(1431), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1431), - [anon_sym_signed] = ACTIONS(1431), - [anon_sym_unsigned] = ACTIONS(1431), - [anon_sym_long] = ACTIONS(1431), - [anon_sym_short] = ACTIONS(1431), - [sym_primitive_type] = ACTIONS(1431), - [anon_sym_enum] = ACTIONS(1431), - [anon_sym_NS_ENUM] = ACTIONS(1431), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1431), - [anon_sym_NS_OPTIONS] = ACTIONS(1431), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_else] = ACTIONS(1431), - [anon_sym_switch] = ACTIONS(1431), - [anon_sym_case] = ACTIONS(1431), - [anon_sym_default] = ACTIONS(1431), - [anon_sym_while] = ACTIONS(1431), - [anon_sym_do] = ACTIONS(1431), - [anon_sym_for] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1431), - [anon_sym_break] = ACTIONS(1431), - [anon_sym_continue] = ACTIONS(1431), - [anon_sym_goto] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [sym_number_literal] = ACTIONS(1429), - [anon_sym_L_SQUOTE] = ACTIONS(1429), - [anon_sym_u_SQUOTE] = ACTIONS(1429), - [anon_sym_U_SQUOTE] = ACTIONS(1429), - [anon_sym_u8_SQUOTE] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_L_DQUOTE] = ACTIONS(1429), - [anon_sym_u_DQUOTE] = ACTIONS(1429), - [anon_sym_U_DQUOTE] = ACTIONS(1429), - [anon_sym_u8_DQUOTE] = ACTIONS(1429), - [anon_sym_DQUOTE] = ACTIONS(1429), - [sym_true] = ACTIONS(1431), - [sym_false] = ACTIONS(1431), - [sym_null] = ACTIONS(1431), + [194] = { + [sym_identifier] = ACTIONS(1254), + [aux_sym_preproc_include_token1] = ACTIONS(1251), + [aux_sym_preproc_def_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token2] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), + [aux_sym_preproc_else_token1] = ACTIONS(1254), + [aux_sym_preproc_elif_token1] = ACTIONS(1254), + [anon_sym_LPAREN2] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1251), + [anon_sym_TILDE] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_typedef] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym___attribute] = ACTIONS(1254), + [anon_sym___attribute__] = ACTIONS(1254), + [anon_sym___declspec] = ACTIONS(1254), + [anon_sym___cdecl] = ACTIONS(1254), + [anon_sym___clrcall] = ACTIONS(1254), + [anon_sym___stdcall] = ACTIONS(1254), + [anon_sym___fastcall] = ACTIONS(1254), + [anon_sym___thiscall] = ACTIONS(1254), + [anon_sym___vectorcall] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_auto] = ACTIONS(1254), + [anon_sym_register] = ACTIONS(1254), + [anon_sym_inline] = ACTIONS(1254), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_volatile] = ACTIONS(1254), + [anon_sym_restrict] = ACTIONS(1254), + [anon_sym__Atomic] = ACTIONS(1254), + [anon_sym_in] = ACTIONS(1254), + [anon_sym_out] = ACTIONS(1254), + [anon_sym_inout] = ACTIONS(1254), + [anon_sym_bycopy] = ACTIONS(1254), + [anon_sym_byref] = ACTIONS(1254), + [anon_sym_oneway] = ACTIONS(1254), + [anon_sym__Nullable] = ACTIONS(1254), + [anon_sym__Nonnull] = ACTIONS(1254), + [anon_sym__Nullable_result] = ACTIONS(1254), + [anon_sym__Null_unspecified] = ACTIONS(1254), + [anon_sym___autoreleasing] = ACTIONS(1254), + [anon_sym___nullable] = ACTIONS(1254), + [anon_sym___nonnull] = ACTIONS(1254), + [anon_sym___strong] = ACTIONS(1254), + [anon_sym___weak] = ACTIONS(1254), + [anon_sym___bridge] = ACTIONS(1254), + [anon_sym___bridge_transfer] = ACTIONS(1254), + [anon_sym___bridge_retained] = ACTIONS(1254), + [anon_sym___unsafe_unretained] = ACTIONS(1254), + [anon_sym___block] = ACTIONS(1254), + [anon_sym___kindof] = ACTIONS(1254), + [anon_sym___unused] = ACTIONS(1254), + [anon_sym__Complex] = ACTIONS(1254), + [anon_sym___complex] = ACTIONS(1254), + [anon_sym_IBOutlet] = ACTIONS(1254), + [anon_sym_IBInspectable] = ACTIONS(1254), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1254), + [anon_sym_unsigned] = ACTIONS(1254), + [anon_sym_long] = ACTIONS(1254), + [anon_sym_short] = ACTIONS(1254), + [sym_primitive_type] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1254), + [anon_sym_switch] = ACTIONS(1254), + [anon_sym_case] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_do] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_goto] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1251), + [anon_sym_sizeof] = ACTIONS(1254), + [sym_number_literal] = ACTIONS(1251), + [anon_sym_L_SQUOTE] = ACTIONS(1251), + [anon_sym_u_SQUOTE] = ACTIONS(1251), + [anon_sym_U_SQUOTE] = ACTIONS(1251), + [anon_sym_u8_SQUOTE] = ACTIONS(1251), + [anon_sym_SQUOTE] = ACTIONS(1251), + [anon_sym_L_DQUOTE] = ACTIONS(1251), + [anon_sym_u_DQUOTE] = ACTIONS(1251), + [anon_sym_U_DQUOTE] = ACTIONS(1251), + [anon_sym_u8_DQUOTE] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_true] = ACTIONS(1254), + [sym_false] = ACTIONS(1254), + [sym_null] = ACTIONS(1254), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1429), - [anon_sym_ATimport] = ACTIONS(1429), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1431), - [anon_sym_ATcompatibility_alias] = ACTIONS(1429), - [anon_sym_ATprotocol] = ACTIONS(1429), - [anon_sym_ATclass] = ACTIONS(1429), - [anon_sym_ATinterface] = ACTIONS(1429), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1431), - [sym_method_attribute_specifier] = ACTIONS(1431), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1431), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1431), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1431), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1431), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1431), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1431), - [anon_sym_NS_AVAILABLE] = ACTIONS(1431), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1431), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1431), - [anon_sym_API_AVAILABLE] = ACTIONS(1431), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1431), - [anon_sym_API_DEPRECATED] = ACTIONS(1431), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1431), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1431), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1431), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1431), - [anon_sym___deprecated_msg] = ACTIONS(1431), - [anon_sym___deprecated_enum_msg] = ACTIONS(1431), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1431), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1431), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1431), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1431), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1431), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1431), - [anon_sym_ATimplementation] = ACTIONS(1429), - [anon_sym_typeof] = ACTIONS(1431), - [anon_sym___typeof] = ACTIONS(1431), - [anon_sym___typeof__] = ACTIONS(1431), - [sym_self] = ACTIONS(1431), - [sym_super] = ACTIONS(1431), - [sym_nil] = ACTIONS(1431), - [sym_id] = ACTIONS(1431), - [sym_instancetype] = ACTIONS(1431), - [sym_Class] = ACTIONS(1431), - [sym_SEL] = ACTIONS(1431), - [sym_IMP] = ACTIONS(1431), - [sym_BOOL] = ACTIONS(1431), - [sym_auto] = ACTIONS(1431), - [anon_sym_ATautoreleasepool] = ACTIONS(1429), - [anon_sym_ATsynchronized] = ACTIONS(1429), - [anon_sym_ATtry] = ACTIONS(1429), - [anon_sym_ATcatch] = ACTIONS(1429), - [anon_sym_ATfinally] = ACTIONS(1429), - [anon_sym_ATthrow] = ACTIONS(1429), - [anon_sym_ATselector] = ACTIONS(1429), - [anon_sym_ATencode] = ACTIONS(1429), - [anon_sym_AT] = ACTIONS(1431), - [sym_YES] = ACTIONS(1431), - [sym_NO] = ACTIONS(1431), - [anon_sym___builtin_available] = ACTIONS(1431), - [anon_sym_ATavailable] = ACTIONS(1429), - [anon_sym_va_arg] = ACTIONS(1431), + [anon_sym_POUNDimport] = ACTIONS(1251), + [anon_sym_ATimport] = ACTIONS(1251), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1254), + [anon_sym_ATcompatibility_alias] = ACTIONS(1251), + [anon_sym_ATprotocol] = ACTIONS(1251), + [anon_sym_ATclass] = ACTIONS(1251), + [anon_sym_ATinterface] = ACTIONS(1251), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1254), + [sym_method_attribute_specifier] = ACTIONS(1254), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1254), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1254), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1254), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1254), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1254), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1254), + [anon_sym_NS_AVAILABLE] = ACTIONS(1254), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1254), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1254), + [anon_sym_API_AVAILABLE] = ACTIONS(1254), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1254), + [anon_sym_API_DEPRECATED] = ACTIONS(1254), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1254), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1254), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1254), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1254), + [anon_sym___deprecated_msg] = ACTIONS(1254), + [anon_sym___deprecated_enum_msg] = ACTIONS(1254), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1254), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1254), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1254), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1254), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1254), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1254), + [anon_sym_ATimplementation] = ACTIONS(1251), + [anon_sym_NS_ENUM] = ACTIONS(1254), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1254), + [anon_sym_NS_OPTIONS] = ACTIONS(1254), + [anon_sym_typeof] = ACTIONS(1254), + [anon_sym___typeof] = ACTIONS(1254), + [anon_sym___typeof__] = ACTIONS(1254), + [sym_self] = ACTIONS(1254), + [sym_super] = ACTIONS(1254), + [sym_nil] = ACTIONS(1254), + [sym_id] = ACTIONS(1254), + [sym_instancetype] = ACTIONS(1254), + [sym_Class] = ACTIONS(1254), + [sym_SEL] = ACTIONS(1254), + [sym_IMP] = ACTIONS(1254), + [sym_BOOL] = ACTIONS(1254), + [sym_auto] = ACTIONS(1254), + [anon_sym_ATautoreleasepool] = ACTIONS(1251), + [anon_sym_ATsynchronized] = ACTIONS(1251), + [anon_sym_ATtry] = ACTIONS(1251), + [anon_sym_ATcatch] = ACTIONS(1251), + [anon_sym_ATfinally] = ACTIONS(1251), + [anon_sym_ATthrow] = ACTIONS(1251), + [anon_sym_ATselector] = ACTIONS(1251), + [anon_sym_ATencode] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(1254), + [sym_YES] = ACTIONS(1254), + [sym_NO] = ACTIONS(1254), + [anon_sym___builtin_available] = ACTIONS(1254), + [anon_sym_ATavailable] = ACTIONS(1251), + [anon_sym_va_arg] = ACTIONS(1254), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -62595,176 +59969,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [210] = { - [sym_identifier] = ACTIONS(1427), - [aux_sym_preproc_include_token1] = ACTIONS(1425), - [aux_sym_preproc_def_token1] = ACTIONS(1425), - [aux_sym_preproc_if_token1] = ACTIONS(1427), - [aux_sym_preproc_if_token2] = ACTIONS(1427), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1427), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1427), - [aux_sym_preproc_else_token1] = ACTIONS(1427), - [aux_sym_preproc_elif_token1] = ACTIONS(1427), - [anon_sym_LPAREN2] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1425), - [anon_sym_TILDE] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_CARET] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_typedef] = ACTIONS(1427), - [anon_sym_extern] = ACTIONS(1427), - [anon_sym___attribute] = ACTIONS(1427), - [anon_sym___attribute__] = ACTIONS(1427), - [anon_sym___declspec] = ACTIONS(1427), - [anon_sym___cdecl] = ACTIONS(1427), - [anon_sym___clrcall] = ACTIONS(1427), - [anon_sym___stdcall] = ACTIONS(1427), - [anon_sym___fastcall] = ACTIONS(1427), - [anon_sym___thiscall] = ACTIONS(1427), - [anon_sym___vectorcall] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_auto] = ACTIONS(1427), - [anon_sym_register] = ACTIONS(1427), - [anon_sym_inline] = ACTIONS(1427), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(1427), - [anon_sym_volatile] = ACTIONS(1427), - [anon_sym_restrict] = ACTIONS(1427), - [anon_sym__Atomic] = ACTIONS(1427), - [anon_sym_in] = ACTIONS(1427), - [anon_sym_out] = ACTIONS(1427), - [anon_sym_inout] = ACTIONS(1427), - [anon_sym_bycopy] = ACTIONS(1427), - [anon_sym_byref] = ACTIONS(1427), - [anon_sym_oneway] = ACTIONS(1427), - [anon_sym__Nullable] = ACTIONS(1427), - [anon_sym__Nonnull] = ACTIONS(1427), - [anon_sym__Nullable_result] = ACTIONS(1427), - [anon_sym__Null_unspecified] = ACTIONS(1427), - [anon_sym___autoreleasing] = ACTIONS(1427), - [anon_sym___nullable] = ACTIONS(1427), - [anon_sym___nonnull] = ACTIONS(1427), - [anon_sym___strong] = ACTIONS(1427), - [anon_sym___weak] = ACTIONS(1427), - [anon_sym___bridge] = ACTIONS(1427), - [anon_sym___bridge_transfer] = ACTIONS(1427), - [anon_sym___bridge_retained] = ACTIONS(1427), - [anon_sym___unsafe_unretained] = ACTIONS(1427), - [anon_sym___block] = ACTIONS(1427), - [anon_sym___kindof] = ACTIONS(1427), - [anon_sym___unused] = ACTIONS(1427), - [anon_sym__Complex] = ACTIONS(1427), - [anon_sym___complex] = ACTIONS(1427), - [anon_sym_IBOutlet] = ACTIONS(1427), - [anon_sym_IBInspectable] = ACTIONS(1427), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1427), - [anon_sym_signed] = ACTIONS(1427), - [anon_sym_unsigned] = ACTIONS(1427), - [anon_sym_long] = ACTIONS(1427), - [anon_sym_short] = ACTIONS(1427), - [sym_primitive_type] = ACTIONS(1427), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_NS_ENUM] = ACTIONS(1427), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1427), - [anon_sym_NS_OPTIONS] = ACTIONS(1427), - [anon_sym_struct] = ACTIONS(1427), - [anon_sym_union] = ACTIONS(1427), - [anon_sym_if] = ACTIONS(1427), - [anon_sym_else] = ACTIONS(1427), - [anon_sym_switch] = ACTIONS(1427), - [anon_sym_case] = ACTIONS(1427), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_while] = ACTIONS(1427), - [anon_sym_do] = ACTIONS(1427), - [anon_sym_for] = ACTIONS(1427), - [anon_sym_return] = ACTIONS(1427), - [anon_sym_break] = ACTIONS(1427), - [anon_sym_continue] = ACTIONS(1427), - [anon_sym_goto] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1425), - [anon_sym_PLUS_PLUS] = ACTIONS(1425), - [anon_sym_sizeof] = ACTIONS(1427), - [sym_number_literal] = ACTIONS(1425), - [anon_sym_L_SQUOTE] = ACTIONS(1425), - [anon_sym_u_SQUOTE] = ACTIONS(1425), - [anon_sym_U_SQUOTE] = ACTIONS(1425), - [anon_sym_u8_SQUOTE] = ACTIONS(1425), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_L_DQUOTE] = ACTIONS(1425), - [anon_sym_u_DQUOTE] = ACTIONS(1425), - [anon_sym_U_DQUOTE] = ACTIONS(1425), - [anon_sym_u8_DQUOTE] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(1425), - [sym_true] = ACTIONS(1427), - [sym_false] = ACTIONS(1427), - [sym_null] = ACTIONS(1427), + [195] = { + [sym_identifier] = ACTIONS(1249), + [aux_sym_preproc_include_token1] = ACTIONS(1247), + [aux_sym_preproc_def_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token1] = ACTIONS(1249), + [aux_sym_preproc_if_token2] = ACTIONS(1249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1249), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1249), + [aux_sym_preproc_else_token1] = ACTIONS(1249), + [aux_sym_preproc_elif_token1] = ACTIONS(1249), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1247), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_typedef] = ACTIONS(1249), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym___attribute] = ACTIONS(1249), + [anon_sym___attribute__] = ACTIONS(1249), + [anon_sym___declspec] = ACTIONS(1249), + [anon_sym___cdecl] = ACTIONS(1249), + [anon_sym___clrcall] = ACTIONS(1249), + [anon_sym___stdcall] = ACTIONS(1249), + [anon_sym___fastcall] = ACTIONS(1249), + [anon_sym___thiscall] = ACTIONS(1249), + [anon_sym___vectorcall] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1247), + [anon_sym_LBRACK] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1249), + [anon_sym_auto] = ACTIONS(1249), + [anon_sym_register] = ACTIONS(1249), + [anon_sym_inline] = ACTIONS(1249), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_volatile] = ACTIONS(1249), + [anon_sym_restrict] = ACTIONS(1249), + [anon_sym__Atomic] = ACTIONS(1249), + [anon_sym_in] = ACTIONS(1249), + [anon_sym_out] = ACTIONS(1249), + [anon_sym_inout] = ACTIONS(1249), + [anon_sym_bycopy] = ACTIONS(1249), + [anon_sym_byref] = ACTIONS(1249), + [anon_sym_oneway] = ACTIONS(1249), + [anon_sym__Nullable] = ACTIONS(1249), + [anon_sym__Nonnull] = ACTIONS(1249), + [anon_sym__Nullable_result] = ACTIONS(1249), + [anon_sym__Null_unspecified] = ACTIONS(1249), + [anon_sym___autoreleasing] = ACTIONS(1249), + [anon_sym___nullable] = ACTIONS(1249), + [anon_sym___nonnull] = ACTIONS(1249), + [anon_sym___strong] = ACTIONS(1249), + [anon_sym___weak] = ACTIONS(1249), + [anon_sym___bridge] = ACTIONS(1249), + [anon_sym___bridge_transfer] = ACTIONS(1249), + [anon_sym___bridge_retained] = ACTIONS(1249), + [anon_sym___unsafe_unretained] = ACTIONS(1249), + [anon_sym___block] = ACTIONS(1249), + [anon_sym___kindof] = ACTIONS(1249), + [anon_sym___unused] = ACTIONS(1249), + [anon_sym__Complex] = ACTIONS(1249), + [anon_sym___complex] = ACTIONS(1249), + [anon_sym_IBOutlet] = ACTIONS(1249), + [anon_sym_IBInspectable] = ACTIONS(1249), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1249), + [anon_sym_signed] = ACTIONS(1249), + [anon_sym_unsigned] = ACTIONS(1249), + [anon_sym_long] = ACTIONS(1249), + [anon_sym_short] = ACTIONS(1249), + [sym_primitive_type] = ACTIONS(1249), + [anon_sym_enum] = ACTIONS(1249), + [anon_sym_struct] = ACTIONS(1249), + [anon_sym_union] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1249), + [anon_sym_else] = ACTIONS(1249), + [anon_sym_switch] = ACTIONS(1249), + [anon_sym_case] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(1249), + [anon_sym_for] = ACTIONS(1249), + [anon_sym_return] = ACTIONS(1249), + [anon_sym_break] = ACTIONS(1249), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_goto] = ACTIONS(1249), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_sizeof] = ACTIONS(1249), + [sym_number_literal] = ACTIONS(1247), + [anon_sym_L_SQUOTE] = ACTIONS(1247), + [anon_sym_u_SQUOTE] = ACTIONS(1247), + [anon_sym_U_SQUOTE] = ACTIONS(1247), + [anon_sym_u8_SQUOTE] = ACTIONS(1247), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_L_DQUOTE] = ACTIONS(1247), + [anon_sym_u_DQUOTE] = ACTIONS(1247), + [anon_sym_U_DQUOTE] = ACTIONS(1247), + [anon_sym_u8_DQUOTE] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1425), - [anon_sym_ATimport] = ACTIONS(1425), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1427), - [anon_sym_ATcompatibility_alias] = ACTIONS(1425), - [anon_sym_ATprotocol] = ACTIONS(1425), - [anon_sym_ATclass] = ACTIONS(1425), - [anon_sym_ATinterface] = ACTIONS(1425), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1427), - [sym_method_attribute_specifier] = ACTIONS(1427), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1427), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1427), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1427), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1427), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1427), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1427), - [anon_sym_NS_AVAILABLE] = ACTIONS(1427), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1427), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1427), - [anon_sym_API_AVAILABLE] = ACTIONS(1427), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1427), - [anon_sym_API_DEPRECATED] = ACTIONS(1427), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1427), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1427), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1427), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1427), - [anon_sym___deprecated_msg] = ACTIONS(1427), - [anon_sym___deprecated_enum_msg] = ACTIONS(1427), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1427), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1427), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1427), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1427), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1427), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1427), - [anon_sym_ATimplementation] = ACTIONS(1425), - [anon_sym_typeof] = ACTIONS(1427), - [anon_sym___typeof] = ACTIONS(1427), - [anon_sym___typeof__] = ACTIONS(1427), - [sym_self] = ACTIONS(1427), - [sym_super] = ACTIONS(1427), - [sym_nil] = ACTIONS(1427), - [sym_id] = ACTIONS(1427), - [sym_instancetype] = ACTIONS(1427), - [sym_Class] = ACTIONS(1427), - [sym_SEL] = ACTIONS(1427), - [sym_IMP] = ACTIONS(1427), - [sym_BOOL] = ACTIONS(1427), - [sym_auto] = ACTIONS(1427), - [anon_sym_ATautoreleasepool] = ACTIONS(1425), - [anon_sym_ATsynchronized] = ACTIONS(1425), - [anon_sym_ATtry] = ACTIONS(1425), - [anon_sym_ATcatch] = ACTIONS(1425), - [anon_sym_ATfinally] = ACTIONS(1425), - [anon_sym_ATthrow] = ACTIONS(1425), - [anon_sym_ATselector] = ACTIONS(1425), - [anon_sym_ATencode] = ACTIONS(1425), - [anon_sym_AT] = ACTIONS(1427), - [sym_YES] = ACTIONS(1427), - [sym_NO] = ACTIONS(1427), - [anon_sym___builtin_available] = ACTIONS(1427), - [anon_sym_ATavailable] = ACTIONS(1425), - [anon_sym_va_arg] = ACTIONS(1427), + [anon_sym_POUNDimport] = ACTIONS(1247), + [anon_sym_ATimport] = ACTIONS(1247), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1249), + [anon_sym_ATcompatibility_alias] = ACTIONS(1247), + [anon_sym_ATprotocol] = ACTIONS(1247), + [anon_sym_ATclass] = ACTIONS(1247), + [anon_sym_ATinterface] = ACTIONS(1247), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1249), + [sym_method_attribute_specifier] = ACTIONS(1249), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1249), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1249), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1249), + [anon_sym_NS_AVAILABLE] = ACTIONS(1249), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1249), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1249), + [anon_sym_API_AVAILABLE] = ACTIONS(1249), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1249), + [anon_sym_API_DEPRECATED] = ACTIONS(1249), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1249), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1249), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1249), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1249), + [anon_sym___deprecated_msg] = ACTIONS(1249), + [anon_sym___deprecated_enum_msg] = ACTIONS(1249), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1249), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1249), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1249), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1249), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1249), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1249), + [anon_sym_ATimplementation] = ACTIONS(1247), + [anon_sym_NS_ENUM] = ACTIONS(1249), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1249), + [anon_sym_NS_OPTIONS] = ACTIONS(1249), + [anon_sym_typeof] = ACTIONS(1249), + [anon_sym___typeof] = ACTIONS(1249), + [anon_sym___typeof__] = ACTIONS(1249), + [sym_self] = ACTIONS(1249), + [sym_super] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [sym_id] = ACTIONS(1249), + [sym_instancetype] = ACTIONS(1249), + [sym_Class] = ACTIONS(1249), + [sym_SEL] = ACTIONS(1249), + [sym_IMP] = ACTIONS(1249), + [sym_BOOL] = ACTIONS(1249), + [sym_auto] = ACTIONS(1249), + [anon_sym_ATautoreleasepool] = ACTIONS(1247), + [anon_sym_ATsynchronized] = ACTIONS(1247), + [anon_sym_ATtry] = ACTIONS(1247), + [anon_sym_ATcatch] = ACTIONS(1247), + [anon_sym_ATfinally] = ACTIONS(1247), + [anon_sym_ATthrow] = ACTIONS(1247), + [anon_sym_ATselector] = ACTIONS(1247), + [anon_sym_ATencode] = ACTIONS(1247), + [anon_sym_AT] = ACTIONS(1249), + [sym_YES] = ACTIONS(1249), + [sym_NO] = ACTIONS(1249), + [anon_sym___builtin_available] = ACTIONS(1249), + [anon_sym_ATavailable] = ACTIONS(1247), + [anon_sym_va_arg] = ACTIONS(1249), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -62772,176 +60146,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [211] = { - [ts_builtin_sym_end] = ACTIONS(1581), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_include_token1] = ACTIONS(1581), - [aux_sym_preproc_def_token1] = ACTIONS(1581), - [anon_sym_RPAREN] = ACTIONS(1581), - [aux_sym_preproc_if_token1] = ACTIONS(1583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1583), - [anon_sym_LPAREN2] = ACTIONS(1581), - [anon_sym_BANG] = ACTIONS(1581), - [anon_sym_TILDE] = ACTIONS(1581), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_PLUS] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1581), - [anon_sym_CARET] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_SEMI] = ACTIONS(1581), - [anon_sym_typedef] = ACTIONS(1583), - [anon_sym_extern] = ACTIONS(1583), - [anon_sym___attribute] = ACTIONS(1583), - [anon_sym___attribute__] = ACTIONS(1583), - [anon_sym___declspec] = ACTIONS(1583), - [anon_sym___cdecl] = ACTIONS(1583), - [anon_sym___clrcall] = ACTIONS(1583), - [anon_sym___stdcall] = ACTIONS(1583), - [anon_sym___fastcall] = ACTIONS(1583), - [anon_sym___thiscall] = ACTIONS(1583), - [anon_sym___vectorcall] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_RBRACE] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_auto] = ACTIONS(1583), - [anon_sym_register] = ACTIONS(1583), - [anon_sym_inline] = ACTIONS(1583), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1583), - [anon_sym_const] = ACTIONS(1583), - [anon_sym_volatile] = ACTIONS(1583), - [anon_sym_restrict] = ACTIONS(1583), - [anon_sym__Atomic] = ACTIONS(1583), - [anon_sym_in] = ACTIONS(1583), - [anon_sym_out] = ACTIONS(1583), - [anon_sym_inout] = ACTIONS(1583), - [anon_sym_bycopy] = ACTIONS(1583), - [anon_sym_byref] = ACTIONS(1583), - [anon_sym_oneway] = ACTIONS(1583), - [anon_sym__Nullable] = ACTIONS(1583), - [anon_sym__Nonnull] = ACTIONS(1583), - [anon_sym__Nullable_result] = ACTIONS(1583), - [anon_sym__Null_unspecified] = ACTIONS(1583), - [anon_sym___autoreleasing] = ACTIONS(1583), - [anon_sym___nullable] = ACTIONS(1583), - [anon_sym___nonnull] = ACTIONS(1583), - [anon_sym___strong] = ACTIONS(1583), - [anon_sym___weak] = ACTIONS(1583), - [anon_sym___bridge] = ACTIONS(1583), - [anon_sym___bridge_transfer] = ACTIONS(1583), - [anon_sym___bridge_retained] = ACTIONS(1583), - [anon_sym___unsafe_unretained] = ACTIONS(1583), - [anon_sym___block] = ACTIONS(1583), - [anon_sym___kindof] = ACTIONS(1583), - [anon_sym___unused] = ACTIONS(1583), - [anon_sym__Complex] = ACTIONS(1583), - [anon_sym___complex] = ACTIONS(1583), - [anon_sym_IBOutlet] = ACTIONS(1583), - [anon_sym_IBInspectable] = ACTIONS(1583), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1583), - [anon_sym_signed] = ACTIONS(1583), - [anon_sym_unsigned] = ACTIONS(1583), - [anon_sym_long] = ACTIONS(1583), - [anon_sym_short] = ACTIONS(1583), - [sym_primitive_type] = ACTIONS(1583), - [anon_sym_enum] = ACTIONS(1583), - [anon_sym_NS_ENUM] = ACTIONS(1583), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1583), - [anon_sym_NS_OPTIONS] = ACTIONS(1583), - [anon_sym_struct] = ACTIONS(1583), - [anon_sym_union] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1583), - [anon_sym_else] = ACTIONS(1583), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1583), - [anon_sym_default] = ACTIONS(1583), - [anon_sym_while] = ACTIONS(1583), - [anon_sym_do] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_break] = ACTIONS(1583), - [anon_sym_continue] = ACTIONS(1583), - [anon_sym_goto] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_sizeof] = ACTIONS(1583), - [sym_number_literal] = ACTIONS(1581), - [anon_sym_L_SQUOTE] = ACTIONS(1581), - [anon_sym_u_SQUOTE] = ACTIONS(1581), - [anon_sym_U_SQUOTE] = ACTIONS(1581), - [anon_sym_u8_SQUOTE] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1581), - [anon_sym_L_DQUOTE] = ACTIONS(1581), - [anon_sym_u_DQUOTE] = ACTIONS(1581), - [anon_sym_U_DQUOTE] = ACTIONS(1581), - [anon_sym_u8_DQUOTE] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1581), - [sym_true] = ACTIONS(1583), - [sym_false] = ACTIONS(1583), - [sym_null] = ACTIONS(1583), + [196] = { + [sym_identifier] = ACTIONS(1451), + [aux_sym_preproc_include_token1] = ACTIONS(1449), + [aux_sym_preproc_def_token1] = ACTIONS(1449), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_if_token2] = ACTIONS(1451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1451), + [aux_sym_preproc_else_token1] = ACTIONS(1451), + [aux_sym_preproc_elif_token1] = ACTIONS(1451), + [anon_sym_LPAREN2] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_CARET] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_typedef] = ACTIONS(1451), + [anon_sym_extern] = ACTIONS(1451), + [anon_sym___attribute] = ACTIONS(1451), + [anon_sym___attribute__] = ACTIONS(1451), + [anon_sym___declspec] = ACTIONS(1451), + [anon_sym___cdecl] = ACTIONS(1451), + [anon_sym___clrcall] = ACTIONS(1451), + [anon_sym___stdcall] = ACTIONS(1451), + [anon_sym___fastcall] = ACTIONS(1451), + [anon_sym___thiscall] = ACTIONS(1451), + [anon_sym___vectorcall] = ACTIONS(1451), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1451), + [anon_sym_auto] = ACTIONS(1451), + [anon_sym_register] = ACTIONS(1451), + [anon_sym_inline] = ACTIONS(1451), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_volatile] = ACTIONS(1451), + [anon_sym_restrict] = ACTIONS(1451), + [anon_sym__Atomic] = ACTIONS(1451), + [anon_sym_in] = ACTIONS(1451), + [anon_sym_out] = ACTIONS(1451), + [anon_sym_inout] = ACTIONS(1451), + [anon_sym_bycopy] = ACTIONS(1451), + [anon_sym_byref] = ACTIONS(1451), + [anon_sym_oneway] = ACTIONS(1451), + [anon_sym__Nullable] = ACTIONS(1451), + [anon_sym__Nonnull] = ACTIONS(1451), + [anon_sym__Nullable_result] = ACTIONS(1451), + [anon_sym__Null_unspecified] = ACTIONS(1451), + [anon_sym___autoreleasing] = ACTIONS(1451), + [anon_sym___nullable] = ACTIONS(1451), + [anon_sym___nonnull] = ACTIONS(1451), + [anon_sym___strong] = ACTIONS(1451), + [anon_sym___weak] = ACTIONS(1451), + [anon_sym___bridge] = ACTIONS(1451), + [anon_sym___bridge_transfer] = ACTIONS(1451), + [anon_sym___bridge_retained] = ACTIONS(1451), + [anon_sym___unsafe_unretained] = ACTIONS(1451), + [anon_sym___block] = ACTIONS(1451), + [anon_sym___kindof] = ACTIONS(1451), + [anon_sym___unused] = ACTIONS(1451), + [anon_sym__Complex] = ACTIONS(1451), + [anon_sym___complex] = ACTIONS(1451), + [anon_sym_IBOutlet] = ACTIONS(1451), + [anon_sym_IBInspectable] = ACTIONS(1451), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1451), + [anon_sym_signed] = ACTIONS(1451), + [anon_sym_unsigned] = ACTIONS(1451), + [anon_sym_long] = ACTIONS(1451), + [anon_sym_short] = ACTIONS(1451), + [sym_primitive_type] = ACTIONS(1451), + [anon_sym_enum] = ACTIONS(1451), + [anon_sym_struct] = ACTIONS(1451), + [anon_sym_union] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1451), + [anon_sym_else] = ACTIONS(1451), + [anon_sym_switch] = ACTIONS(1451), + [anon_sym_case] = ACTIONS(1451), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_while] = ACTIONS(1451), + [anon_sym_do] = ACTIONS(1451), + [anon_sym_for] = ACTIONS(1451), + [anon_sym_return] = ACTIONS(1451), + [anon_sym_break] = ACTIONS(1451), + [anon_sym_continue] = ACTIONS(1451), + [anon_sym_goto] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1449), + [anon_sym_sizeof] = ACTIONS(1451), + [sym_number_literal] = ACTIONS(1449), + [anon_sym_L_SQUOTE] = ACTIONS(1449), + [anon_sym_u_SQUOTE] = ACTIONS(1449), + [anon_sym_U_SQUOTE] = ACTIONS(1449), + [anon_sym_u8_SQUOTE] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1449), + [anon_sym_L_DQUOTE] = ACTIONS(1449), + [anon_sym_u_DQUOTE] = ACTIONS(1449), + [anon_sym_U_DQUOTE] = ACTIONS(1449), + [anon_sym_u8_DQUOTE] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_true] = ACTIONS(1451), + [sym_false] = ACTIONS(1451), + [sym_null] = ACTIONS(1451), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1581), - [anon_sym_ATimport] = ACTIONS(1581), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1583), - [anon_sym_ATcompatibility_alias] = ACTIONS(1581), - [anon_sym_ATprotocol] = ACTIONS(1581), - [anon_sym_ATclass] = ACTIONS(1581), - [anon_sym_ATinterface] = ACTIONS(1581), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1583), - [sym_method_attribute_specifier] = ACTIONS(1583), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1583), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1583), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1583), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1583), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1583), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1583), - [anon_sym_NS_AVAILABLE] = ACTIONS(1583), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1583), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1583), - [anon_sym_API_AVAILABLE] = ACTIONS(1583), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1583), - [anon_sym_API_DEPRECATED] = ACTIONS(1583), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1583), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1583), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1583), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1583), - [anon_sym___deprecated_msg] = ACTIONS(1583), - [anon_sym___deprecated_enum_msg] = ACTIONS(1583), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1583), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1583), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1583), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1583), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1583), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1583), - [anon_sym_ATimplementation] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___typeof] = ACTIONS(1583), - [anon_sym___typeof__] = ACTIONS(1583), - [sym_self] = ACTIONS(1583), - [sym_super] = ACTIONS(1583), - [sym_nil] = ACTIONS(1583), - [sym_id] = ACTIONS(1583), - [sym_instancetype] = ACTIONS(1583), - [sym_Class] = ACTIONS(1583), - [sym_SEL] = ACTIONS(1583), - [sym_IMP] = ACTIONS(1583), - [sym_BOOL] = ACTIONS(1583), - [sym_auto] = ACTIONS(1583), - [anon_sym_ATautoreleasepool] = ACTIONS(1581), - [anon_sym_ATsynchronized] = ACTIONS(1581), - [anon_sym_ATtry] = ACTIONS(1581), - [anon_sym_ATcatch] = ACTIONS(1581), - [anon_sym_ATfinally] = ACTIONS(1581), - [anon_sym_ATthrow] = ACTIONS(1581), - [anon_sym_ATselector] = ACTIONS(1581), - [anon_sym_ATencode] = ACTIONS(1581), - [anon_sym_AT] = ACTIONS(1583), - [sym_YES] = ACTIONS(1583), - [sym_NO] = ACTIONS(1583), - [anon_sym___builtin_available] = ACTIONS(1583), - [anon_sym_ATavailable] = ACTIONS(1581), - [anon_sym_va_arg] = ACTIONS(1583), + [anon_sym_POUNDimport] = ACTIONS(1449), + [anon_sym_ATimport] = ACTIONS(1449), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1451), + [anon_sym_ATcompatibility_alias] = ACTIONS(1449), + [anon_sym_ATprotocol] = ACTIONS(1449), + [anon_sym_ATclass] = ACTIONS(1449), + [anon_sym_ATinterface] = ACTIONS(1449), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1451), + [sym_method_attribute_specifier] = ACTIONS(1451), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1451), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1451), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1451), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1451), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1451), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1451), + [anon_sym_NS_AVAILABLE] = ACTIONS(1451), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1451), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1451), + [anon_sym_API_AVAILABLE] = ACTIONS(1451), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1451), + [anon_sym_API_DEPRECATED] = ACTIONS(1451), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1451), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1451), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1451), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1451), + [anon_sym___deprecated_msg] = ACTIONS(1451), + [anon_sym___deprecated_enum_msg] = ACTIONS(1451), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1451), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1451), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1451), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1451), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1451), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1451), + [anon_sym_ATimplementation] = ACTIONS(1449), + [anon_sym_NS_ENUM] = ACTIONS(1451), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1451), + [anon_sym_NS_OPTIONS] = ACTIONS(1451), + [anon_sym_typeof] = ACTIONS(1451), + [anon_sym___typeof] = ACTIONS(1451), + [anon_sym___typeof__] = ACTIONS(1451), + [sym_self] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_nil] = ACTIONS(1451), + [sym_id] = ACTIONS(1451), + [sym_instancetype] = ACTIONS(1451), + [sym_Class] = ACTIONS(1451), + [sym_SEL] = ACTIONS(1451), + [sym_IMP] = ACTIONS(1451), + [sym_BOOL] = ACTIONS(1451), + [sym_auto] = ACTIONS(1451), + [anon_sym_ATautoreleasepool] = ACTIONS(1449), + [anon_sym_ATsynchronized] = ACTIONS(1449), + [anon_sym_ATtry] = ACTIONS(1449), + [anon_sym_ATcatch] = ACTIONS(1449), + [anon_sym_ATfinally] = ACTIONS(1449), + [anon_sym_ATthrow] = ACTIONS(1449), + [anon_sym_ATselector] = ACTIONS(1449), + [anon_sym_ATencode] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(1451), + [sym_YES] = ACTIONS(1451), + [sym_NO] = ACTIONS(1451), + [anon_sym___builtin_available] = ACTIONS(1451), + [anon_sym_ATavailable] = ACTIONS(1449), + [anon_sym_va_arg] = ACTIONS(1451), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [197] = { + [ts_builtin_sym_end] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1407), + [aux_sym_preproc_include_token1] = ACTIONS(1409), + [aux_sym_preproc_def_token1] = ACTIONS(1409), + [anon_sym_RPAREN] = ACTIONS(1409), + [aux_sym_preproc_if_token1] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1407), + [anon_sym_LPAREN2] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym_typedef] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym___attribute] = ACTIONS(1407), + [anon_sym___attribute__] = ACTIONS(1407), + [anon_sym___declspec] = ACTIONS(1407), + [anon_sym___cdecl] = ACTIONS(1407), + [anon_sym___clrcall] = ACTIONS(1407), + [anon_sym___stdcall] = ACTIONS(1407), + [anon_sym___fastcall] = ACTIONS(1407), + [anon_sym___thiscall] = ACTIONS(1407), + [anon_sym___vectorcall] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_RBRACE] = ACTIONS(1409), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_auto] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_inline] = ACTIONS(1407), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_volatile] = ACTIONS(1407), + [anon_sym_restrict] = ACTIONS(1407), + [anon_sym__Atomic] = ACTIONS(1407), + [anon_sym_in] = ACTIONS(1407), + [anon_sym_out] = ACTIONS(1407), + [anon_sym_inout] = ACTIONS(1407), + [anon_sym_bycopy] = ACTIONS(1407), + [anon_sym_byref] = ACTIONS(1407), + [anon_sym_oneway] = ACTIONS(1407), + [anon_sym__Nullable] = ACTIONS(1407), + [anon_sym__Nonnull] = ACTIONS(1407), + [anon_sym__Nullable_result] = ACTIONS(1407), + [anon_sym__Null_unspecified] = ACTIONS(1407), + [anon_sym___autoreleasing] = ACTIONS(1407), + [anon_sym___nullable] = ACTIONS(1407), + [anon_sym___nonnull] = ACTIONS(1407), + [anon_sym___strong] = ACTIONS(1407), + [anon_sym___weak] = ACTIONS(1407), + [anon_sym___bridge] = ACTIONS(1407), + [anon_sym___bridge_transfer] = ACTIONS(1407), + [anon_sym___bridge_retained] = ACTIONS(1407), + [anon_sym___unsafe_unretained] = ACTIONS(1407), + [anon_sym___block] = ACTIONS(1407), + [anon_sym___kindof] = ACTIONS(1407), + [anon_sym___unused] = ACTIONS(1407), + [anon_sym__Complex] = ACTIONS(1407), + [anon_sym___complex] = ACTIONS(1407), + [anon_sym_IBOutlet] = ACTIONS(1407), + [anon_sym_IBInspectable] = ACTIONS(1407), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1407), + [anon_sym_signed] = ACTIONS(1407), + [anon_sym_unsigned] = ACTIONS(1407), + [anon_sym_long] = ACTIONS(1407), + [anon_sym_short] = ACTIONS(1407), + [sym_primitive_type] = ACTIONS(1407), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_else] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_case] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_goto] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1407), + [sym_number_literal] = ACTIONS(1409), + [anon_sym_L_SQUOTE] = ACTIONS(1409), + [anon_sym_u_SQUOTE] = ACTIONS(1409), + [anon_sym_U_SQUOTE] = ACTIONS(1409), + [anon_sym_u8_SQUOTE] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_L_DQUOTE] = ACTIONS(1409), + [anon_sym_u_DQUOTE] = ACTIONS(1409), + [anon_sym_U_DQUOTE] = ACTIONS(1409), + [anon_sym_u8_DQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym_true] = ACTIONS(1407), + [sym_false] = ACTIONS(1407), + [sym_null] = ACTIONS(1407), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1409), + [anon_sym_ATimport] = ACTIONS(1409), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1407), + [anon_sym_ATcompatibility_alias] = ACTIONS(1409), + [anon_sym_ATprotocol] = ACTIONS(1409), + [anon_sym_ATclass] = ACTIONS(1409), + [anon_sym_ATinterface] = ACTIONS(1409), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1407), + [sym_method_attribute_specifier] = ACTIONS(1407), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1407), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1407), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1407), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1407), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1407), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1407), + [anon_sym_NS_AVAILABLE] = ACTIONS(1407), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1407), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1407), + [anon_sym_API_AVAILABLE] = ACTIONS(1407), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1407), + [anon_sym_API_DEPRECATED] = ACTIONS(1407), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1407), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1407), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1407), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1407), + [anon_sym___deprecated_msg] = ACTIONS(1407), + [anon_sym___deprecated_enum_msg] = ACTIONS(1407), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1407), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1407), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1407), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1407), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1407), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1407), + [anon_sym_ATimplementation] = ACTIONS(1409), + [anon_sym_NS_ENUM] = ACTIONS(1407), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1407), + [anon_sym_NS_OPTIONS] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1407), + [anon_sym___typeof] = ACTIONS(1407), + [anon_sym___typeof__] = ACTIONS(1407), + [sym_self] = ACTIONS(1407), + [sym_super] = ACTIONS(1407), + [sym_nil] = ACTIONS(1407), + [sym_id] = ACTIONS(1407), + [sym_instancetype] = ACTIONS(1407), + [sym_Class] = ACTIONS(1407), + [sym_SEL] = ACTIONS(1407), + [sym_IMP] = ACTIONS(1407), + [sym_BOOL] = ACTIONS(1407), + [sym_auto] = ACTIONS(1407), + [anon_sym_ATautoreleasepool] = ACTIONS(1409), + [anon_sym_ATsynchronized] = ACTIONS(1409), + [anon_sym_ATtry] = ACTIONS(1409), + [anon_sym_ATcatch] = ACTIONS(1409), + [anon_sym_ATfinally] = ACTIONS(1409), + [anon_sym_ATthrow] = ACTIONS(1409), + [anon_sym_ATselector] = ACTIONS(1409), + [anon_sym_ATencode] = ACTIONS(1409), + [anon_sym_AT] = ACTIONS(1407), + [sym_YES] = ACTIONS(1407), + [sym_NO] = ACTIONS(1407), + [anon_sym___builtin_available] = ACTIONS(1407), + [anon_sym_ATavailable] = ACTIONS(1409), + [anon_sym_va_arg] = ACTIONS(1407), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -62949,176 +60500,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [212] = { - [sym_identifier] = ACTIONS(1423), - [aux_sym_preproc_include_token1] = ACTIONS(1421), - [aux_sym_preproc_def_token1] = ACTIONS(1421), - [aux_sym_preproc_if_token1] = ACTIONS(1423), - [aux_sym_preproc_if_token2] = ACTIONS(1423), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1423), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1423), - [aux_sym_preproc_else_token1] = ACTIONS(1423), - [aux_sym_preproc_elif_token1] = ACTIONS(1423), - [anon_sym_LPAREN2] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym_typedef] = ACTIONS(1423), - [anon_sym_extern] = ACTIONS(1423), - [anon_sym___attribute] = ACTIONS(1423), - [anon_sym___attribute__] = ACTIONS(1423), - [anon_sym___declspec] = ACTIONS(1423), - [anon_sym___cdecl] = ACTIONS(1423), - [anon_sym___clrcall] = ACTIONS(1423), - [anon_sym___stdcall] = ACTIONS(1423), - [anon_sym___fastcall] = ACTIONS(1423), - [anon_sym___thiscall] = ACTIONS(1423), - [anon_sym___vectorcall] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_auto] = ACTIONS(1423), - [anon_sym_register] = ACTIONS(1423), - [anon_sym_inline] = ACTIONS(1423), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1423), - [anon_sym_volatile] = ACTIONS(1423), - [anon_sym_restrict] = ACTIONS(1423), - [anon_sym__Atomic] = ACTIONS(1423), - [anon_sym_in] = ACTIONS(1423), - [anon_sym_out] = ACTIONS(1423), - [anon_sym_inout] = ACTIONS(1423), - [anon_sym_bycopy] = ACTIONS(1423), - [anon_sym_byref] = ACTIONS(1423), - [anon_sym_oneway] = ACTIONS(1423), - [anon_sym__Nullable] = ACTIONS(1423), - [anon_sym__Nonnull] = ACTIONS(1423), - [anon_sym__Nullable_result] = ACTIONS(1423), - [anon_sym__Null_unspecified] = ACTIONS(1423), - [anon_sym___autoreleasing] = ACTIONS(1423), - [anon_sym___nullable] = ACTIONS(1423), - [anon_sym___nonnull] = ACTIONS(1423), - [anon_sym___strong] = ACTIONS(1423), - [anon_sym___weak] = ACTIONS(1423), - [anon_sym___bridge] = ACTIONS(1423), - [anon_sym___bridge_transfer] = ACTIONS(1423), - [anon_sym___bridge_retained] = ACTIONS(1423), - [anon_sym___unsafe_unretained] = ACTIONS(1423), - [anon_sym___block] = ACTIONS(1423), - [anon_sym___kindof] = ACTIONS(1423), - [anon_sym___unused] = ACTIONS(1423), - [anon_sym__Complex] = ACTIONS(1423), - [anon_sym___complex] = ACTIONS(1423), - [anon_sym_IBOutlet] = ACTIONS(1423), - [anon_sym_IBInspectable] = ACTIONS(1423), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1423), - [anon_sym_signed] = ACTIONS(1423), - [anon_sym_unsigned] = ACTIONS(1423), - [anon_sym_long] = ACTIONS(1423), - [anon_sym_short] = ACTIONS(1423), - [sym_primitive_type] = ACTIONS(1423), - [anon_sym_enum] = ACTIONS(1423), - [anon_sym_NS_ENUM] = ACTIONS(1423), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1423), - [anon_sym_NS_OPTIONS] = ACTIONS(1423), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1423), - [anon_sym_if] = ACTIONS(1423), - [anon_sym_else] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(1423), - [anon_sym_case] = ACTIONS(1423), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_do] = ACTIONS(1423), - [anon_sym_for] = ACTIONS(1423), - [anon_sym_return] = ACTIONS(1423), - [anon_sym_break] = ACTIONS(1423), - [anon_sym_continue] = ACTIONS(1423), - [anon_sym_goto] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1421), - [anon_sym_PLUS_PLUS] = ACTIONS(1421), - [anon_sym_sizeof] = ACTIONS(1423), - [sym_number_literal] = ACTIONS(1421), - [anon_sym_L_SQUOTE] = ACTIONS(1421), - [anon_sym_u_SQUOTE] = ACTIONS(1421), - [anon_sym_U_SQUOTE] = ACTIONS(1421), - [anon_sym_u8_SQUOTE] = ACTIONS(1421), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_L_DQUOTE] = ACTIONS(1421), - [anon_sym_u_DQUOTE] = ACTIONS(1421), - [anon_sym_U_DQUOTE] = ACTIONS(1421), - [anon_sym_u8_DQUOTE] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1421), - [sym_true] = ACTIONS(1423), - [sym_false] = ACTIONS(1423), - [sym_null] = ACTIONS(1423), + [198] = { + [sym_identifier] = ACTIONS(1455), + [aux_sym_preproc_include_token1] = ACTIONS(1453), + [aux_sym_preproc_def_token1] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1455), + [aux_sym_preproc_if_token2] = ACTIONS(1455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1455), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1455), + [aux_sym_preproc_else_token1] = ACTIONS(1455), + [aux_sym_preproc_elif_token1] = ACTIONS(1455), + [anon_sym_LPAREN2] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_TILDE] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_CARET] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1453), + [anon_sym_typedef] = ACTIONS(1455), + [anon_sym_extern] = ACTIONS(1455), + [anon_sym___attribute] = ACTIONS(1455), + [anon_sym___attribute__] = ACTIONS(1455), + [anon_sym___declspec] = ACTIONS(1455), + [anon_sym___cdecl] = ACTIONS(1455), + [anon_sym___clrcall] = ACTIONS(1455), + [anon_sym___stdcall] = ACTIONS(1455), + [anon_sym___fastcall] = ACTIONS(1455), + [anon_sym___thiscall] = ACTIONS(1455), + [anon_sym___vectorcall] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_auto] = ACTIONS(1455), + [anon_sym_register] = ACTIONS(1455), + [anon_sym_inline] = ACTIONS(1455), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_volatile] = ACTIONS(1455), + [anon_sym_restrict] = ACTIONS(1455), + [anon_sym__Atomic] = ACTIONS(1455), + [anon_sym_in] = ACTIONS(1455), + [anon_sym_out] = ACTIONS(1455), + [anon_sym_inout] = ACTIONS(1455), + [anon_sym_bycopy] = ACTIONS(1455), + [anon_sym_byref] = ACTIONS(1455), + [anon_sym_oneway] = ACTIONS(1455), + [anon_sym__Nullable] = ACTIONS(1455), + [anon_sym__Nonnull] = ACTIONS(1455), + [anon_sym__Nullable_result] = ACTIONS(1455), + [anon_sym__Null_unspecified] = ACTIONS(1455), + [anon_sym___autoreleasing] = ACTIONS(1455), + [anon_sym___nullable] = ACTIONS(1455), + [anon_sym___nonnull] = ACTIONS(1455), + [anon_sym___strong] = ACTIONS(1455), + [anon_sym___weak] = ACTIONS(1455), + [anon_sym___bridge] = ACTIONS(1455), + [anon_sym___bridge_transfer] = ACTIONS(1455), + [anon_sym___bridge_retained] = ACTIONS(1455), + [anon_sym___unsafe_unretained] = ACTIONS(1455), + [anon_sym___block] = ACTIONS(1455), + [anon_sym___kindof] = ACTIONS(1455), + [anon_sym___unused] = ACTIONS(1455), + [anon_sym__Complex] = ACTIONS(1455), + [anon_sym___complex] = ACTIONS(1455), + [anon_sym_IBOutlet] = ACTIONS(1455), + [anon_sym_IBInspectable] = ACTIONS(1455), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1455), + [anon_sym_signed] = ACTIONS(1455), + [anon_sym_unsigned] = ACTIONS(1455), + [anon_sym_long] = ACTIONS(1455), + [anon_sym_short] = ACTIONS(1455), + [sym_primitive_type] = ACTIONS(1455), + [anon_sym_enum] = ACTIONS(1455), + [anon_sym_struct] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_else] = ACTIONS(1455), + [anon_sym_switch] = ACTIONS(1455), + [anon_sym_case] = ACTIONS(1455), + [anon_sym_default] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_do] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_goto] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1453), + [anon_sym_PLUS_PLUS] = ACTIONS(1453), + [anon_sym_sizeof] = ACTIONS(1455), + [sym_number_literal] = ACTIONS(1453), + [anon_sym_L_SQUOTE] = ACTIONS(1453), + [anon_sym_u_SQUOTE] = ACTIONS(1453), + [anon_sym_U_SQUOTE] = ACTIONS(1453), + [anon_sym_u8_SQUOTE] = ACTIONS(1453), + [anon_sym_SQUOTE] = ACTIONS(1453), + [anon_sym_L_DQUOTE] = ACTIONS(1453), + [anon_sym_u_DQUOTE] = ACTIONS(1453), + [anon_sym_U_DQUOTE] = ACTIONS(1453), + [anon_sym_u8_DQUOTE] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1453), + [sym_true] = ACTIONS(1455), + [sym_false] = ACTIONS(1455), + [sym_null] = ACTIONS(1455), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1421), - [anon_sym_ATimport] = ACTIONS(1421), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1423), - [anon_sym_ATcompatibility_alias] = ACTIONS(1421), - [anon_sym_ATprotocol] = ACTIONS(1421), - [anon_sym_ATclass] = ACTIONS(1421), - [anon_sym_ATinterface] = ACTIONS(1421), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1423), - [sym_method_attribute_specifier] = ACTIONS(1423), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1423), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1423), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1423), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1423), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1423), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1423), - [anon_sym_NS_AVAILABLE] = ACTIONS(1423), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1423), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1423), - [anon_sym_API_AVAILABLE] = ACTIONS(1423), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1423), - [anon_sym_API_DEPRECATED] = ACTIONS(1423), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1423), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1423), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1423), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1423), - [anon_sym___deprecated_msg] = ACTIONS(1423), - [anon_sym___deprecated_enum_msg] = ACTIONS(1423), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1423), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1423), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1423), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1423), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1423), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1423), - [anon_sym_ATimplementation] = ACTIONS(1421), - [anon_sym_typeof] = ACTIONS(1423), - [anon_sym___typeof] = ACTIONS(1423), - [anon_sym___typeof__] = ACTIONS(1423), - [sym_self] = ACTIONS(1423), - [sym_super] = ACTIONS(1423), - [sym_nil] = ACTIONS(1423), - [sym_id] = ACTIONS(1423), - [sym_instancetype] = ACTIONS(1423), - [sym_Class] = ACTIONS(1423), - [sym_SEL] = ACTIONS(1423), - [sym_IMP] = ACTIONS(1423), - [sym_BOOL] = ACTIONS(1423), - [sym_auto] = ACTIONS(1423), - [anon_sym_ATautoreleasepool] = ACTIONS(1421), - [anon_sym_ATsynchronized] = ACTIONS(1421), - [anon_sym_ATtry] = ACTIONS(1421), - [anon_sym_ATcatch] = ACTIONS(1421), - [anon_sym_ATfinally] = ACTIONS(1421), - [anon_sym_ATthrow] = ACTIONS(1421), - [anon_sym_ATselector] = ACTIONS(1421), - [anon_sym_ATencode] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [sym_YES] = ACTIONS(1423), - [sym_NO] = ACTIONS(1423), - [anon_sym___builtin_available] = ACTIONS(1423), - [anon_sym_ATavailable] = ACTIONS(1421), - [anon_sym_va_arg] = ACTIONS(1423), + [anon_sym_POUNDimport] = ACTIONS(1453), + [anon_sym_ATimport] = ACTIONS(1453), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1455), + [anon_sym_ATcompatibility_alias] = ACTIONS(1453), + [anon_sym_ATprotocol] = ACTIONS(1453), + [anon_sym_ATclass] = ACTIONS(1453), + [anon_sym_ATinterface] = ACTIONS(1453), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1455), + [sym_method_attribute_specifier] = ACTIONS(1455), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1455), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1455), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1455), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1455), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1455), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1455), + [anon_sym_NS_AVAILABLE] = ACTIONS(1455), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1455), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1455), + [anon_sym_API_AVAILABLE] = ACTIONS(1455), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1455), + [anon_sym_API_DEPRECATED] = ACTIONS(1455), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1455), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1455), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1455), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1455), + [anon_sym___deprecated_msg] = ACTIONS(1455), + [anon_sym___deprecated_enum_msg] = ACTIONS(1455), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1455), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1455), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1455), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1455), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1455), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1455), + [anon_sym_ATimplementation] = ACTIONS(1453), + [anon_sym_NS_ENUM] = ACTIONS(1455), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1455), + [anon_sym_NS_OPTIONS] = ACTIONS(1455), + [anon_sym_typeof] = ACTIONS(1455), + [anon_sym___typeof] = ACTIONS(1455), + [anon_sym___typeof__] = ACTIONS(1455), + [sym_self] = ACTIONS(1455), + [sym_super] = ACTIONS(1455), + [sym_nil] = ACTIONS(1455), + [sym_id] = ACTIONS(1455), + [sym_instancetype] = ACTIONS(1455), + [sym_Class] = ACTIONS(1455), + [sym_SEL] = ACTIONS(1455), + [sym_IMP] = ACTIONS(1455), + [sym_BOOL] = ACTIONS(1455), + [sym_auto] = ACTIONS(1455), + [anon_sym_ATautoreleasepool] = ACTIONS(1453), + [anon_sym_ATsynchronized] = ACTIONS(1453), + [anon_sym_ATtry] = ACTIONS(1453), + [anon_sym_ATcatch] = ACTIONS(1453), + [anon_sym_ATfinally] = ACTIONS(1453), + [anon_sym_ATthrow] = ACTIONS(1453), + [anon_sym_ATselector] = ACTIONS(1453), + [anon_sym_ATencode] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1455), + [sym_YES] = ACTIONS(1455), + [sym_NO] = ACTIONS(1455), + [anon_sym___builtin_available] = ACTIONS(1455), + [anon_sym_ATavailable] = ACTIONS(1453), + [anon_sym_va_arg] = ACTIONS(1455), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -63126,176 +60677,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [213] = { - [sym_identifier] = ACTIONS(1419), - [aux_sym_preproc_include_token1] = ACTIONS(1417), - [aux_sym_preproc_def_token1] = ACTIONS(1417), - [aux_sym_preproc_if_token1] = ACTIONS(1419), - [aux_sym_preproc_if_token2] = ACTIONS(1419), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1419), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1419), - [aux_sym_preproc_else_token1] = ACTIONS(1419), - [aux_sym_preproc_elif_token1] = ACTIONS(1419), - [anon_sym_LPAREN2] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1417), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_typedef] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(1419), - [anon_sym___attribute] = ACTIONS(1419), - [anon_sym___attribute__] = ACTIONS(1419), - [anon_sym___declspec] = ACTIONS(1419), - [anon_sym___cdecl] = ACTIONS(1419), - [anon_sym___clrcall] = ACTIONS(1419), - [anon_sym___stdcall] = ACTIONS(1419), - [anon_sym___fastcall] = ACTIONS(1419), - [anon_sym___thiscall] = ACTIONS(1419), - [anon_sym___vectorcall] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_static] = ACTIONS(1419), - [anon_sym_auto] = ACTIONS(1419), - [anon_sym_register] = ACTIONS(1419), - [anon_sym_inline] = ACTIONS(1419), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1419), - [anon_sym_const] = ACTIONS(1419), - [anon_sym_volatile] = ACTIONS(1419), - [anon_sym_restrict] = ACTIONS(1419), - [anon_sym__Atomic] = ACTIONS(1419), - [anon_sym_in] = ACTIONS(1419), - [anon_sym_out] = ACTIONS(1419), - [anon_sym_inout] = ACTIONS(1419), - [anon_sym_bycopy] = ACTIONS(1419), - [anon_sym_byref] = ACTIONS(1419), - [anon_sym_oneway] = ACTIONS(1419), - [anon_sym__Nullable] = ACTIONS(1419), - [anon_sym__Nonnull] = ACTIONS(1419), - [anon_sym__Nullable_result] = ACTIONS(1419), - [anon_sym__Null_unspecified] = ACTIONS(1419), - [anon_sym___autoreleasing] = ACTIONS(1419), - [anon_sym___nullable] = ACTIONS(1419), - [anon_sym___nonnull] = ACTIONS(1419), - [anon_sym___strong] = ACTIONS(1419), - [anon_sym___weak] = ACTIONS(1419), - [anon_sym___bridge] = ACTIONS(1419), - [anon_sym___bridge_transfer] = ACTIONS(1419), - [anon_sym___bridge_retained] = ACTIONS(1419), - [anon_sym___unsafe_unretained] = ACTIONS(1419), - [anon_sym___block] = ACTIONS(1419), - [anon_sym___kindof] = ACTIONS(1419), - [anon_sym___unused] = ACTIONS(1419), - [anon_sym__Complex] = ACTIONS(1419), - [anon_sym___complex] = ACTIONS(1419), - [anon_sym_IBOutlet] = ACTIONS(1419), - [anon_sym_IBInspectable] = ACTIONS(1419), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1419), - [anon_sym_signed] = ACTIONS(1419), - [anon_sym_unsigned] = ACTIONS(1419), - [anon_sym_long] = ACTIONS(1419), - [anon_sym_short] = ACTIONS(1419), - [sym_primitive_type] = ACTIONS(1419), - [anon_sym_enum] = ACTIONS(1419), - [anon_sym_NS_ENUM] = ACTIONS(1419), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1419), - [anon_sym_NS_OPTIONS] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(1419), - [anon_sym_union] = ACTIONS(1419), - [anon_sym_if] = ACTIONS(1419), - [anon_sym_else] = ACTIONS(1419), - [anon_sym_switch] = ACTIONS(1419), - [anon_sym_case] = ACTIONS(1419), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_while] = ACTIONS(1419), - [anon_sym_do] = ACTIONS(1419), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_return] = ACTIONS(1419), - [anon_sym_break] = ACTIONS(1419), - [anon_sym_continue] = ACTIONS(1419), - [anon_sym_goto] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1417), - [anon_sym_PLUS_PLUS] = ACTIONS(1417), - [anon_sym_sizeof] = ACTIONS(1419), - [sym_number_literal] = ACTIONS(1417), - [anon_sym_L_SQUOTE] = ACTIONS(1417), - [anon_sym_u_SQUOTE] = ACTIONS(1417), - [anon_sym_U_SQUOTE] = ACTIONS(1417), - [anon_sym_u8_SQUOTE] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_L_DQUOTE] = ACTIONS(1417), - [anon_sym_u_DQUOTE] = ACTIONS(1417), - [anon_sym_U_DQUOTE] = ACTIONS(1417), - [anon_sym_u8_DQUOTE] = ACTIONS(1417), - [anon_sym_DQUOTE] = ACTIONS(1417), - [sym_true] = ACTIONS(1419), - [sym_false] = ACTIONS(1419), - [sym_null] = ACTIONS(1419), + [199] = { + [sym_identifier] = ACTIONS(1537), + [aux_sym_preproc_include_token1] = ACTIONS(1535), + [aux_sym_preproc_def_token1] = ACTIONS(1535), + [aux_sym_preproc_if_token1] = ACTIONS(1537), + [aux_sym_preproc_if_token2] = ACTIONS(1537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1537), + [aux_sym_preproc_else_token1] = ACTIONS(1537), + [aux_sym_preproc_elif_token1] = ACTIONS(1537), + [anon_sym_LPAREN2] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_typedef] = ACTIONS(1537), + [anon_sym_extern] = ACTIONS(1537), + [anon_sym___attribute] = ACTIONS(1537), + [anon_sym___attribute__] = ACTIONS(1537), + [anon_sym___declspec] = ACTIONS(1537), + [anon_sym___cdecl] = ACTIONS(1537), + [anon_sym___clrcall] = ACTIONS(1537), + [anon_sym___stdcall] = ACTIONS(1537), + [anon_sym___fastcall] = ACTIONS(1537), + [anon_sym___thiscall] = ACTIONS(1537), + [anon_sym___vectorcall] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1535), + [anon_sym_LBRACK] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_auto] = ACTIONS(1537), + [anon_sym_register] = ACTIONS(1537), + [anon_sym_inline] = ACTIONS(1537), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_volatile] = ACTIONS(1537), + [anon_sym_restrict] = ACTIONS(1537), + [anon_sym__Atomic] = ACTIONS(1537), + [anon_sym_in] = ACTIONS(1537), + [anon_sym_out] = ACTIONS(1537), + [anon_sym_inout] = ACTIONS(1537), + [anon_sym_bycopy] = ACTIONS(1537), + [anon_sym_byref] = ACTIONS(1537), + [anon_sym_oneway] = ACTIONS(1537), + [anon_sym__Nullable] = ACTIONS(1537), + [anon_sym__Nonnull] = ACTIONS(1537), + [anon_sym__Nullable_result] = ACTIONS(1537), + [anon_sym__Null_unspecified] = ACTIONS(1537), + [anon_sym___autoreleasing] = ACTIONS(1537), + [anon_sym___nullable] = ACTIONS(1537), + [anon_sym___nonnull] = ACTIONS(1537), + [anon_sym___strong] = ACTIONS(1537), + [anon_sym___weak] = ACTIONS(1537), + [anon_sym___bridge] = ACTIONS(1537), + [anon_sym___bridge_transfer] = ACTIONS(1537), + [anon_sym___bridge_retained] = ACTIONS(1537), + [anon_sym___unsafe_unretained] = ACTIONS(1537), + [anon_sym___block] = ACTIONS(1537), + [anon_sym___kindof] = ACTIONS(1537), + [anon_sym___unused] = ACTIONS(1537), + [anon_sym__Complex] = ACTIONS(1537), + [anon_sym___complex] = ACTIONS(1537), + [anon_sym_IBOutlet] = ACTIONS(1537), + [anon_sym_IBInspectable] = ACTIONS(1537), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1537), + [anon_sym_signed] = ACTIONS(1537), + [anon_sym_unsigned] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [sym_primitive_type] = ACTIONS(1537), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_struct] = ACTIONS(1537), + [anon_sym_union] = ACTIONS(1537), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_else] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_case] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_goto] = ACTIONS(1537), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_sizeof] = ACTIONS(1537), + [sym_number_literal] = ACTIONS(1535), + [anon_sym_L_SQUOTE] = ACTIONS(1535), + [anon_sym_u_SQUOTE] = ACTIONS(1535), + [anon_sym_U_SQUOTE] = ACTIONS(1535), + [anon_sym_u8_SQUOTE] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_L_DQUOTE] = ACTIONS(1535), + [anon_sym_u_DQUOTE] = ACTIONS(1535), + [anon_sym_U_DQUOTE] = ACTIONS(1535), + [anon_sym_u8_DQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1535), + [sym_true] = ACTIONS(1537), + [sym_false] = ACTIONS(1537), + [sym_null] = ACTIONS(1537), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1417), - [anon_sym_ATimport] = ACTIONS(1417), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1419), - [anon_sym_ATcompatibility_alias] = ACTIONS(1417), - [anon_sym_ATprotocol] = ACTIONS(1417), - [anon_sym_ATclass] = ACTIONS(1417), - [anon_sym_ATinterface] = ACTIONS(1417), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1419), - [sym_method_attribute_specifier] = ACTIONS(1419), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1419), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1419), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1419), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1419), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1419), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1419), - [anon_sym_NS_AVAILABLE] = ACTIONS(1419), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1419), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1419), - [anon_sym_API_AVAILABLE] = ACTIONS(1419), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1419), - [anon_sym_API_DEPRECATED] = ACTIONS(1419), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1419), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1419), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1419), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1419), - [anon_sym___deprecated_msg] = ACTIONS(1419), - [anon_sym___deprecated_enum_msg] = ACTIONS(1419), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1419), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1419), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1419), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1419), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1419), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1419), - [anon_sym_ATimplementation] = ACTIONS(1417), - [anon_sym_typeof] = ACTIONS(1419), - [anon_sym___typeof] = ACTIONS(1419), - [anon_sym___typeof__] = ACTIONS(1419), - [sym_self] = ACTIONS(1419), - [sym_super] = ACTIONS(1419), - [sym_nil] = ACTIONS(1419), - [sym_id] = ACTIONS(1419), - [sym_instancetype] = ACTIONS(1419), - [sym_Class] = ACTIONS(1419), - [sym_SEL] = ACTIONS(1419), - [sym_IMP] = ACTIONS(1419), - [sym_BOOL] = ACTIONS(1419), - [sym_auto] = ACTIONS(1419), - [anon_sym_ATautoreleasepool] = ACTIONS(1417), - [anon_sym_ATsynchronized] = ACTIONS(1417), - [anon_sym_ATtry] = ACTIONS(1417), - [anon_sym_ATcatch] = ACTIONS(1417), - [anon_sym_ATfinally] = ACTIONS(1417), - [anon_sym_ATthrow] = ACTIONS(1417), - [anon_sym_ATselector] = ACTIONS(1417), - [anon_sym_ATencode] = ACTIONS(1417), - [anon_sym_AT] = ACTIONS(1419), - [sym_YES] = ACTIONS(1419), - [sym_NO] = ACTIONS(1419), - [anon_sym___builtin_available] = ACTIONS(1419), - [anon_sym_ATavailable] = ACTIONS(1417), - [anon_sym_va_arg] = ACTIONS(1419), + [anon_sym_POUNDimport] = ACTIONS(1535), + [anon_sym_ATimport] = ACTIONS(1535), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1537), + [anon_sym_ATcompatibility_alias] = ACTIONS(1535), + [anon_sym_ATprotocol] = ACTIONS(1535), + [anon_sym_ATclass] = ACTIONS(1535), + [anon_sym_ATinterface] = ACTIONS(1535), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1537), + [sym_method_attribute_specifier] = ACTIONS(1537), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1537), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1537), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1537), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1537), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1537), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1537), + [anon_sym_NS_AVAILABLE] = ACTIONS(1537), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1537), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1537), + [anon_sym_API_AVAILABLE] = ACTIONS(1537), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1537), + [anon_sym_API_DEPRECATED] = ACTIONS(1537), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1537), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1537), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1537), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1537), + [anon_sym___deprecated_msg] = ACTIONS(1537), + [anon_sym___deprecated_enum_msg] = ACTIONS(1537), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1537), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1537), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1537), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1537), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1537), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1537), + [anon_sym_ATimplementation] = ACTIONS(1535), + [anon_sym_NS_ENUM] = ACTIONS(1537), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1537), + [anon_sym_NS_OPTIONS] = ACTIONS(1537), + [anon_sym_typeof] = ACTIONS(1537), + [anon_sym___typeof] = ACTIONS(1537), + [anon_sym___typeof__] = ACTIONS(1537), + [sym_self] = ACTIONS(1537), + [sym_super] = ACTIONS(1537), + [sym_nil] = ACTIONS(1537), + [sym_id] = ACTIONS(1537), + [sym_instancetype] = ACTIONS(1537), + [sym_Class] = ACTIONS(1537), + [sym_SEL] = ACTIONS(1537), + [sym_IMP] = ACTIONS(1537), + [sym_BOOL] = ACTIONS(1537), + [sym_auto] = ACTIONS(1537), + [anon_sym_ATautoreleasepool] = ACTIONS(1535), + [anon_sym_ATsynchronized] = ACTIONS(1535), + [anon_sym_ATtry] = ACTIONS(1535), + [anon_sym_ATcatch] = ACTIONS(1535), + [anon_sym_ATfinally] = ACTIONS(1535), + [anon_sym_ATthrow] = ACTIONS(1535), + [anon_sym_ATselector] = ACTIONS(1535), + [anon_sym_ATencode] = ACTIONS(1535), + [anon_sym_AT] = ACTIONS(1537), + [sym_YES] = ACTIONS(1537), + [sym_NO] = ACTIONS(1537), + [anon_sym___builtin_available] = ACTIONS(1537), + [anon_sym_ATavailable] = ACTIONS(1535), + [anon_sym_va_arg] = ACTIONS(1537), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -63303,1238 +60854,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [214] = { - [sym_identifier] = ACTIONS(1403), - [aux_sym_preproc_include_token1] = ACTIONS(1401), - [aux_sym_preproc_def_token1] = ACTIONS(1401), - [aux_sym_preproc_if_token1] = ACTIONS(1403), - [aux_sym_preproc_if_token2] = ACTIONS(1403), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1403), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1403), - [aux_sym_preproc_else_token1] = ACTIONS(1403), - [aux_sym_preproc_elif_token1] = ACTIONS(1403), - [anon_sym_LPAREN2] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_TILDE] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_CARET] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_typedef] = ACTIONS(1403), - [anon_sym_extern] = ACTIONS(1403), - [anon_sym___attribute] = ACTIONS(1403), - [anon_sym___attribute__] = ACTIONS(1403), - [anon_sym___declspec] = ACTIONS(1403), - [anon_sym___cdecl] = ACTIONS(1403), - [anon_sym___clrcall] = ACTIONS(1403), - [anon_sym___stdcall] = ACTIONS(1403), - [anon_sym___fastcall] = ACTIONS(1403), - [anon_sym___thiscall] = ACTIONS(1403), - [anon_sym___vectorcall] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1401), - [anon_sym_static] = ACTIONS(1403), - [anon_sym_auto] = ACTIONS(1403), - [anon_sym_register] = ACTIONS(1403), - [anon_sym_inline] = ACTIONS(1403), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1403), - [anon_sym_const] = ACTIONS(1403), - [anon_sym_volatile] = ACTIONS(1403), - [anon_sym_restrict] = ACTIONS(1403), - [anon_sym__Atomic] = ACTIONS(1403), - [anon_sym_in] = ACTIONS(1403), - [anon_sym_out] = ACTIONS(1403), - [anon_sym_inout] = ACTIONS(1403), - [anon_sym_bycopy] = ACTIONS(1403), - [anon_sym_byref] = ACTIONS(1403), - [anon_sym_oneway] = ACTIONS(1403), - [anon_sym__Nullable] = ACTIONS(1403), - [anon_sym__Nonnull] = ACTIONS(1403), - [anon_sym__Nullable_result] = ACTIONS(1403), - [anon_sym__Null_unspecified] = ACTIONS(1403), - [anon_sym___autoreleasing] = ACTIONS(1403), - [anon_sym___nullable] = ACTIONS(1403), - [anon_sym___nonnull] = ACTIONS(1403), - [anon_sym___strong] = ACTIONS(1403), - [anon_sym___weak] = ACTIONS(1403), - [anon_sym___bridge] = ACTIONS(1403), - [anon_sym___bridge_transfer] = ACTIONS(1403), - [anon_sym___bridge_retained] = ACTIONS(1403), - [anon_sym___unsafe_unretained] = ACTIONS(1403), - [anon_sym___block] = ACTIONS(1403), - [anon_sym___kindof] = ACTIONS(1403), - [anon_sym___unused] = ACTIONS(1403), - [anon_sym__Complex] = ACTIONS(1403), - [anon_sym___complex] = ACTIONS(1403), - [anon_sym_IBOutlet] = ACTIONS(1403), - [anon_sym_IBInspectable] = ACTIONS(1403), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1403), - [anon_sym_signed] = ACTIONS(1403), - [anon_sym_unsigned] = ACTIONS(1403), - [anon_sym_long] = ACTIONS(1403), - [anon_sym_short] = ACTIONS(1403), - [sym_primitive_type] = ACTIONS(1403), - [anon_sym_enum] = ACTIONS(1403), - [anon_sym_NS_ENUM] = ACTIONS(1403), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1403), - [anon_sym_NS_OPTIONS] = ACTIONS(1403), - [anon_sym_struct] = ACTIONS(1403), - [anon_sym_union] = ACTIONS(1403), - [anon_sym_if] = ACTIONS(1403), - [anon_sym_else] = ACTIONS(1403), - [anon_sym_switch] = ACTIONS(1403), - [anon_sym_case] = ACTIONS(1403), - [anon_sym_default] = ACTIONS(1403), - [anon_sym_while] = ACTIONS(1403), - [anon_sym_do] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1403), - [anon_sym_return] = ACTIONS(1403), - [anon_sym_break] = ACTIONS(1403), - [anon_sym_continue] = ACTIONS(1403), - [anon_sym_goto] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_sizeof] = ACTIONS(1403), - [sym_number_literal] = ACTIONS(1401), - [anon_sym_L_SQUOTE] = ACTIONS(1401), - [anon_sym_u_SQUOTE] = ACTIONS(1401), - [anon_sym_U_SQUOTE] = ACTIONS(1401), - [anon_sym_u8_SQUOTE] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1401), - [anon_sym_L_DQUOTE] = ACTIONS(1401), - [anon_sym_u_DQUOTE] = ACTIONS(1401), - [anon_sym_U_DQUOTE] = ACTIONS(1401), - [anon_sym_u8_DQUOTE] = ACTIONS(1401), - [anon_sym_DQUOTE] = ACTIONS(1401), - [sym_true] = ACTIONS(1403), - [sym_false] = ACTIONS(1403), - [sym_null] = ACTIONS(1403), + [200] = { + [ts_builtin_sym_end] = ACTIONS(1415), + [sym_identifier] = ACTIONS(1417), + [aux_sym_preproc_include_token1] = ACTIONS(1415), + [aux_sym_preproc_def_token1] = ACTIONS(1415), + [anon_sym_RPAREN] = ACTIONS(1415), + [aux_sym_preproc_if_token1] = ACTIONS(1417), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1417), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1417), + [anon_sym_LPAREN2] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_typedef] = ACTIONS(1417), + [anon_sym_extern] = ACTIONS(1417), + [anon_sym___attribute] = ACTIONS(1417), + [anon_sym___attribute__] = ACTIONS(1417), + [anon_sym___declspec] = ACTIONS(1417), + [anon_sym___cdecl] = ACTIONS(1417), + [anon_sym___clrcall] = ACTIONS(1417), + [anon_sym___stdcall] = ACTIONS(1417), + [anon_sym___fastcall] = ACTIONS(1417), + [anon_sym___thiscall] = ACTIONS(1417), + [anon_sym___vectorcall] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_auto] = ACTIONS(1417), + [anon_sym_register] = ACTIONS(1417), + [anon_sym_inline] = ACTIONS(1417), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_volatile] = ACTIONS(1417), + [anon_sym_restrict] = ACTIONS(1417), + [anon_sym__Atomic] = ACTIONS(1417), + [anon_sym_in] = ACTIONS(1417), + [anon_sym_out] = ACTIONS(1417), + [anon_sym_inout] = ACTIONS(1417), + [anon_sym_bycopy] = ACTIONS(1417), + [anon_sym_byref] = ACTIONS(1417), + [anon_sym_oneway] = ACTIONS(1417), + [anon_sym__Nullable] = ACTIONS(1417), + [anon_sym__Nonnull] = ACTIONS(1417), + [anon_sym__Nullable_result] = ACTIONS(1417), + [anon_sym__Null_unspecified] = ACTIONS(1417), + [anon_sym___autoreleasing] = ACTIONS(1417), + [anon_sym___nullable] = ACTIONS(1417), + [anon_sym___nonnull] = ACTIONS(1417), + [anon_sym___strong] = ACTIONS(1417), + [anon_sym___weak] = ACTIONS(1417), + [anon_sym___bridge] = ACTIONS(1417), + [anon_sym___bridge_transfer] = ACTIONS(1417), + [anon_sym___bridge_retained] = ACTIONS(1417), + [anon_sym___unsafe_unretained] = ACTIONS(1417), + [anon_sym___block] = ACTIONS(1417), + [anon_sym___kindof] = ACTIONS(1417), + [anon_sym___unused] = ACTIONS(1417), + [anon_sym__Complex] = ACTIONS(1417), + [anon_sym___complex] = ACTIONS(1417), + [anon_sym_IBOutlet] = ACTIONS(1417), + [anon_sym_IBInspectable] = ACTIONS(1417), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1417), + [anon_sym_signed] = ACTIONS(1417), + [anon_sym_unsigned] = ACTIONS(1417), + [anon_sym_long] = ACTIONS(1417), + [anon_sym_short] = ACTIONS(1417), + [sym_primitive_type] = ACTIONS(1417), + [anon_sym_enum] = ACTIONS(1417), + [anon_sym_struct] = ACTIONS(1417), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_else] = ACTIONS(1417), + [anon_sym_switch] = ACTIONS(1417), + [anon_sym_case] = ACTIONS(1417), + [anon_sym_default] = ACTIONS(1417), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_do] = ACTIONS(1417), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_goto] = ACTIONS(1417), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_sizeof] = ACTIONS(1417), + [sym_number_literal] = ACTIONS(1415), + [anon_sym_L_SQUOTE] = ACTIONS(1415), + [anon_sym_u_SQUOTE] = ACTIONS(1415), + [anon_sym_U_SQUOTE] = ACTIONS(1415), + [anon_sym_u8_SQUOTE] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_L_DQUOTE] = ACTIONS(1415), + [anon_sym_u_DQUOTE] = ACTIONS(1415), + [anon_sym_U_DQUOTE] = ACTIONS(1415), + [anon_sym_u8_DQUOTE] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1415), + [sym_true] = ACTIONS(1417), + [sym_false] = ACTIONS(1417), + [sym_null] = ACTIONS(1417), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1401), - [anon_sym_ATimport] = ACTIONS(1401), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1403), - [anon_sym_ATcompatibility_alias] = ACTIONS(1401), - [anon_sym_ATprotocol] = ACTIONS(1401), - [anon_sym_ATclass] = ACTIONS(1401), - [anon_sym_ATinterface] = ACTIONS(1401), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1403), - [sym_method_attribute_specifier] = ACTIONS(1403), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1403), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1403), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1403), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1403), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1403), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1403), - [anon_sym_NS_AVAILABLE] = ACTIONS(1403), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1403), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1403), - [anon_sym_API_AVAILABLE] = ACTIONS(1403), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1403), - [anon_sym_API_DEPRECATED] = ACTIONS(1403), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1403), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1403), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1403), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1403), - [anon_sym___deprecated_msg] = ACTIONS(1403), - [anon_sym___deprecated_enum_msg] = ACTIONS(1403), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1403), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1403), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1403), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1403), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1403), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1403), - [anon_sym_ATimplementation] = ACTIONS(1401), - [anon_sym_typeof] = ACTIONS(1403), - [anon_sym___typeof] = ACTIONS(1403), - [anon_sym___typeof__] = ACTIONS(1403), - [sym_self] = ACTIONS(1403), - [sym_super] = ACTIONS(1403), - [sym_nil] = ACTIONS(1403), - [sym_id] = ACTIONS(1403), - [sym_instancetype] = ACTIONS(1403), - [sym_Class] = ACTIONS(1403), - [sym_SEL] = ACTIONS(1403), - [sym_IMP] = ACTIONS(1403), - [sym_BOOL] = ACTIONS(1403), - [sym_auto] = ACTIONS(1403), - [anon_sym_ATautoreleasepool] = ACTIONS(1401), - [anon_sym_ATsynchronized] = ACTIONS(1401), - [anon_sym_ATtry] = ACTIONS(1401), - [anon_sym_ATcatch] = ACTIONS(1401), - [anon_sym_ATfinally] = ACTIONS(1401), - [anon_sym_ATthrow] = ACTIONS(1401), - [anon_sym_ATselector] = ACTIONS(1401), - [anon_sym_ATencode] = ACTIONS(1401), - [anon_sym_AT] = ACTIONS(1403), - [sym_YES] = ACTIONS(1403), - [sym_NO] = ACTIONS(1403), - [anon_sym___builtin_available] = ACTIONS(1403), - [anon_sym_ATavailable] = ACTIONS(1401), - [anon_sym_va_arg] = ACTIONS(1403), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [215] = { - [sym_identifier] = ACTIONS(1399), - [aux_sym_preproc_include_token1] = ACTIONS(1397), - [aux_sym_preproc_def_token1] = ACTIONS(1397), - [aux_sym_preproc_if_token1] = ACTIONS(1399), - [aux_sym_preproc_if_token2] = ACTIONS(1399), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1399), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1399), - [aux_sym_preproc_else_token1] = ACTIONS(1399), - [aux_sym_preproc_elif_token1] = ACTIONS(1399), - [anon_sym_LPAREN2] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_typedef] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1399), - [anon_sym___attribute] = ACTIONS(1399), - [anon_sym___attribute__] = ACTIONS(1399), - [anon_sym___declspec] = ACTIONS(1399), - [anon_sym___cdecl] = ACTIONS(1399), - [anon_sym___clrcall] = ACTIONS(1399), - [anon_sym___stdcall] = ACTIONS(1399), - [anon_sym___fastcall] = ACTIONS(1399), - [anon_sym___thiscall] = ACTIONS(1399), - [anon_sym___vectorcall] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1399), - [anon_sym_auto] = ACTIONS(1399), - [anon_sym_register] = ACTIONS(1399), - [anon_sym_inline] = ACTIONS(1399), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_volatile] = ACTIONS(1399), - [anon_sym_restrict] = ACTIONS(1399), - [anon_sym__Atomic] = ACTIONS(1399), - [anon_sym_in] = ACTIONS(1399), - [anon_sym_out] = ACTIONS(1399), - [anon_sym_inout] = ACTIONS(1399), - [anon_sym_bycopy] = ACTIONS(1399), - [anon_sym_byref] = ACTIONS(1399), - [anon_sym_oneway] = ACTIONS(1399), - [anon_sym__Nullable] = ACTIONS(1399), - [anon_sym__Nonnull] = ACTIONS(1399), - [anon_sym__Nullable_result] = ACTIONS(1399), - [anon_sym__Null_unspecified] = ACTIONS(1399), - [anon_sym___autoreleasing] = ACTIONS(1399), - [anon_sym___nullable] = ACTIONS(1399), - [anon_sym___nonnull] = ACTIONS(1399), - [anon_sym___strong] = ACTIONS(1399), - [anon_sym___weak] = ACTIONS(1399), - [anon_sym___bridge] = ACTIONS(1399), - [anon_sym___bridge_transfer] = ACTIONS(1399), - [anon_sym___bridge_retained] = ACTIONS(1399), - [anon_sym___unsafe_unretained] = ACTIONS(1399), - [anon_sym___block] = ACTIONS(1399), - [anon_sym___kindof] = ACTIONS(1399), - [anon_sym___unused] = ACTIONS(1399), - [anon_sym__Complex] = ACTIONS(1399), - [anon_sym___complex] = ACTIONS(1399), - [anon_sym_IBOutlet] = ACTIONS(1399), - [anon_sym_IBInspectable] = ACTIONS(1399), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1399), - [anon_sym_signed] = ACTIONS(1399), - [anon_sym_unsigned] = ACTIONS(1399), - [anon_sym_long] = ACTIONS(1399), - [anon_sym_short] = ACTIONS(1399), - [sym_primitive_type] = ACTIONS(1399), - [anon_sym_enum] = ACTIONS(1399), - [anon_sym_NS_ENUM] = ACTIONS(1399), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1399), - [anon_sym_NS_OPTIONS] = ACTIONS(1399), - [anon_sym_struct] = ACTIONS(1399), - [anon_sym_union] = ACTIONS(1399), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_else] = ACTIONS(1399), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_goto] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_sizeof] = ACTIONS(1399), - [sym_number_literal] = ACTIONS(1397), - [anon_sym_L_SQUOTE] = ACTIONS(1397), - [anon_sym_u_SQUOTE] = ACTIONS(1397), - [anon_sym_U_SQUOTE] = ACTIONS(1397), - [anon_sym_u8_SQUOTE] = ACTIONS(1397), - [anon_sym_SQUOTE] = ACTIONS(1397), - [anon_sym_L_DQUOTE] = ACTIONS(1397), - [anon_sym_u_DQUOTE] = ACTIONS(1397), - [anon_sym_U_DQUOTE] = ACTIONS(1397), - [anon_sym_u8_DQUOTE] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [sym_true] = ACTIONS(1399), - [sym_false] = ACTIONS(1399), - [sym_null] = ACTIONS(1399), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1397), - [anon_sym_ATimport] = ACTIONS(1397), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1399), - [anon_sym_ATcompatibility_alias] = ACTIONS(1397), - [anon_sym_ATprotocol] = ACTIONS(1397), - [anon_sym_ATclass] = ACTIONS(1397), - [anon_sym_ATinterface] = ACTIONS(1397), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1399), - [sym_method_attribute_specifier] = ACTIONS(1399), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1399), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1399), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1399), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1399), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1399), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1399), - [anon_sym_NS_AVAILABLE] = ACTIONS(1399), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1399), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1399), - [anon_sym_API_AVAILABLE] = ACTIONS(1399), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1399), - [anon_sym_API_DEPRECATED] = ACTIONS(1399), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1399), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1399), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1399), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1399), - [anon_sym___deprecated_msg] = ACTIONS(1399), - [anon_sym___deprecated_enum_msg] = ACTIONS(1399), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1399), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1399), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1399), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1399), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1399), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1399), - [anon_sym_ATimplementation] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1399), - [anon_sym___typeof] = ACTIONS(1399), - [anon_sym___typeof__] = ACTIONS(1399), - [sym_self] = ACTIONS(1399), - [sym_super] = ACTIONS(1399), - [sym_nil] = ACTIONS(1399), - [sym_id] = ACTIONS(1399), - [sym_instancetype] = ACTIONS(1399), - [sym_Class] = ACTIONS(1399), - [sym_SEL] = ACTIONS(1399), - [sym_IMP] = ACTIONS(1399), - [sym_BOOL] = ACTIONS(1399), - [sym_auto] = ACTIONS(1399), - [anon_sym_ATautoreleasepool] = ACTIONS(1397), - [anon_sym_ATsynchronized] = ACTIONS(1397), - [anon_sym_ATtry] = ACTIONS(1397), - [anon_sym_ATcatch] = ACTIONS(1397), - [anon_sym_ATfinally] = ACTIONS(1397), - [anon_sym_ATthrow] = ACTIONS(1397), - [anon_sym_ATselector] = ACTIONS(1397), - [anon_sym_ATencode] = ACTIONS(1397), - [anon_sym_AT] = ACTIONS(1399), - [sym_YES] = ACTIONS(1399), - [sym_NO] = ACTIONS(1399), - [anon_sym___builtin_available] = ACTIONS(1399), - [anon_sym_ATavailable] = ACTIONS(1397), - [anon_sym_va_arg] = ACTIONS(1399), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [216] = { - [sym_identifier] = ACTIONS(1395), - [aux_sym_preproc_include_token1] = ACTIONS(1393), - [aux_sym_preproc_def_token1] = ACTIONS(1393), - [aux_sym_preproc_if_token1] = ACTIONS(1395), - [aux_sym_preproc_if_token2] = ACTIONS(1395), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1395), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1395), - [aux_sym_preproc_else_token1] = ACTIONS(1395), - [aux_sym_preproc_elif_token1] = ACTIONS(1395), - [anon_sym_LPAREN2] = ACTIONS(1393), - [anon_sym_BANG] = ACTIONS(1393), - [anon_sym_TILDE] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_CARET] = ACTIONS(1393), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_typedef] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym___attribute] = ACTIONS(1395), - [anon_sym___attribute__] = ACTIONS(1395), - [anon_sym___declspec] = ACTIONS(1395), - [anon_sym___cdecl] = ACTIONS(1395), - [anon_sym___clrcall] = ACTIONS(1395), - [anon_sym___stdcall] = ACTIONS(1395), - [anon_sym___fastcall] = ACTIONS(1395), - [anon_sym___thiscall] = ACTIONS(1395), - [anon_sym___vectorcall] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1395), - [anon_sym_auto] = ACTIONS(1395), - [anon_sym_register] = ACTIONS(1395), - [anon_sym_inline] = ACTIONS(1395), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_volatile] = ACTIONS(1395), - [anon_sym_restrict] = ACTIONS(1395), - [anon_sym__Atomic] = ACTIONS(1395), - [anon_sym_in] = ACTIONS(1395), - [anon_sym_out] = ACTIONS(1395), - [anon_sym_inout] = ACTIONS(1395), - [anon_sym_bycopy] = ACTIONS(1395), - [anon_sym_byref] = ACTIONS(1395), - [anon_sym_oneway] = ACTIONS(1395), - [anon_sym__Nullable] = ACTIONS(1395), - [anon_sym__Nonnull] = ACTIONS(1395), - [anon_sym__Nullable_result] = ACTIONS(1395), - [anon_sym__Null_unspecified] = ACTIONS(1395), - [anon_sym___autoreleasing] = ACTIONS(1395), - [anon_sym___nullable] = ACTIONS(1395), - [anon_sym___nonnull] = ACTIONS(1395), - [anon_sym___strong] = ACTIONS(1395), - [anon_sym___weak] = ACTIONS(1395), - [anon_sym___bridge] = ACTIONS(1395), - [anon_sym___bridge_transfer] = ACTIONS(1395), - [anon_sym___bridge_retained] = ACTIONS(1395), - [anon_sym___unsafe_unretained] = ACTIONS(1395), - [anon_sym___block] = ACTIONS(1395), - [anon_sym___kindof] = ACTIONS(1395), - [anon_sym___unused] = ACTIONS(1395), - [anon_sym__Complex] = ACTIONS(1395), - [anon_sym___complex] = ACTIONS(1395), - [anon_sym_IBOutlet] = ACTIONS(1395), - [anon_sym_IBInspectable] = ACTIONS(1395), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1395), - [anon_sym_signed] = ACTIONS(1395), - [anon_sym_unsigned] = ACTIONS(1395), - [anon_sym_long] = ACTIONS(1395), - [anon_sym_short] = ACTIONS(1395), - [sym_primitive_type] = ACTIONS(1395), - [anon_sym_enum] = ACTIONS(1395), - [anon_sym_NS_ENUM] = ACTIONS(1395), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1395), - [anon_sym_NS_OPTIONS] = ACTIONS(1395), - [anon_sym_struct] = ACTIONS(1395), - [anon_sym_union] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1395), - [anon_sym_case] = ACTIONS(1395), - [anon_sym_default] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_goto] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), - [sym_number_literal] = ACTIONS(1393), - [anon_sym_L_SQUOTE] = ACTIONS(1393), - [anon_sym_u_SQUOTE] = ACTIONS(1393), - [anon_sym_U_SQUOTE] = ACTIONS(1393), - [anon_sym_u8_SQUOTE] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1393), - [anon_sym_L_DQUOTE] = ACTIONS(1393), - [anon_sym_u_DQUOTE] = ACTIONS(1393), - [anon_sym_U_DQUOTE] = ACTIONS(1393), - [anon_sym_u8_DQUOTE] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1393), - [sym_true] = ACTIONS(1395), - [sym_false] = ACTIONS(1395), - [sym_null] = ACTIONS(1395), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1393), - [anon_sym_ATimport] = ACTIONS(1393), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1395), - [anon_sym_ATcompatibility_alias] = ACTIONS(1393), - [anon_sym_ATprotocol] = ACTIONS(1393), - [anon_sym_ATclass] = ACTIONS(1393), - [anon_sym_ATinterface] = ACTIONS(1393), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1395), - [sym_method_attribute_specifier] = ACTIONS(1395), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1395), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1395), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1395), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1395), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1395), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1395), - [anon_sym_NS_AVAILABLE] = ACTIONS(1395), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1395), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1395), - [anon_sym_API_AVAILABLE] = ACTIONS(1395), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1395), - [anon_sym_API_DEPRECATED] = ACTIONS(1395), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1395), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1395), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1395), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1395), - [anon_sym___deprecated_msg] = ACTIONS(1395), - [anon_sym___deprecated_enum_msg] = ACTIONS(1395), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1395), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1395), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1395), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1395), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1395), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1395), - [anon_sym_ATimplementation] = ACTIONS(1393), - [anon_sym_typeof] = ACTIONS(1395), - [anon_sym___typeof] = ACTIONS(1395), - [anon_sym___typeof__] = ACTIONS(1395), - [sym_self] = ACTIONS(1395), - [sym_super] = ACTIONS(1395), - [sym_nil] = ACTIONS(1395), - [sym_id] = ACTIONS(1395), - [sym_instancetype] = ACTIONS(1395), - [sym_Class] = ACTIONS(1395), - [sym_SEL] = ACTIONS(1395), - [sym_IMP] = ACTIONS(1395), - [sym_BOOL] = ACTIONS(1395), - [sym_auto] = ACTIONS(1395), - [anon_sym_ATautoreleasepool] = ACTIONS(1393), - [anon_sym_ATsynchronized] = ACTIONS(1393), - [anon_sym_ATtry] = ACTIONS(1393), - [anon_sym_ATcatch] = ACTIONS(1393), - [anon_sym_ATfinally] = ACTIONS(1393), - [anon_sym_ATthrow] = ACTIONS(1393), - [anon_sym_ATselector] = ACTIONS(1393), - [anon_sym_ATencode] = ACTIONS(1393), - [anon_sym_AT] = ACTIONS(1395), - [sym_YES] = ACTIONS(1395), - [sym_NO] = ACTIONS(1395), - [anon_sym___builtin_available] = ACTIONS(1395), - [anon_sym_ATavailable] = ACTIONS(1393), - [anon_sym_va_arg] = ACTIONS(1395), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [217] = { - [sym_identifier] = ACTIONS(1391), - [aux_sym_preproc_include_token1] = ACTIONS(1389), - [aux_sym_preproc_def_token1] = ACTIONS(1389), - [aux_sym_preproc_if_token1] = ACTIONS(1391), - [aux_sym_preproc_if_token2] = ACTIONS(1391), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1391), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1391), - [aux_sym_preproc_else_token1] = ACTIONS(1391), - [aux_sym_preproc_elif_token1] = ACTIONS(1391), - [anon_sym_LPAREN2] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_typedef] = ACTIONS(1391), - [anon_sym_extern] = ACTIONS(1391), - [anon_sym___attribute] = ACTIONS(1391), - [anon_sym___attribute__] = ACTIONS(1391), - [anon_sym___declspec] = ACTIONS(1391), - [anon_sym___cdecl] = ACTIONS(1391), - [anon_sym___clrcall] = ACTIONS(1391), - [anon_sym___stdcall] = ACTIONS(1391), - [anon_sym___fastcall] = ACTIONS(1391), - [anon_sym___thiscall] = ACTIONS(1391), - [anon_sym___vectorcall] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_auto] = ACTIONS(1391), - [anon_sym_register] = ACTIONS(1391), - [anon_sym_inline] = ACTIONS(1391), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1391), - [anon_sym_const] = ACTIONS(1391), - [anon_sym_volatile] = ACTIONS(1391), - [anon_sym_restrict] = ACTIONS(1391), - [anon_sym__Atomic] = ACTIONS(1391), - [anon_sym_in] = ACTIONS(1391), - [anon_sym_out] = ACTIONS(1391), - [anon_sym_inout] = ACTIONS(1391), - [anon_sym_bycopy] = ACTIONS(1391), - [anon_sym_byref] = ACTIONS(1391), - [anon_sym_oneway] = ACTIONS(1391), - [anon_sym__Nullable] = ACTIONS(1391), - [anon_sym__Nonnull] = ACTIONS(1391), - [anon_sym__Nullable_result] = ACTIONS(1391), - [anon_sym__Null_unspecified] = ACTIONS(1391), - [anon_sym___autoreleasing] = ACTIONS(1391), - [anon_sym___nullable] = ACTIONS(1391), - [anon_sym___nonnull] = ACTIONS(1391), - [anon_sym___strong] = ACTIONS(1391), - [anon_sym___weak] = ACTIONS(1391), - [anon_sym___bridge] = ACTIONS(1391), - [anon_sym___bridge_transfer] = ACTIONS(1391), - [anon_sym___bridge_retained] = ACTIONS(1391), - [anon_sym___unsafe_unretained] = ACTIONS(1391), - [anon_sym___block] = ACTIONS(1391), - [anon_sym___kindof] = ACTIONS(1391), - [anon_sym___unused] = ACTIONS(1391), - [anon_sym__Complex] = ACTIONS(1391), - [anon_sym___complex] = ACTIONS(1391), - [anon_sym_IBOutlet] = ACTIONS(1391), - [anon_sym_IBInspectable] = ACTIONS(1391), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1391), - [anon_sym_signed] = ACTIONS(1391), - [anon_sym_unsigned] = ACTIONS(1391), - [anon_sym_long] = ACTIONS(1391), - [anon_sym_short] = ACTIONS(1391), - [sym_primitive_type] = ACTIONS(1391), - [anon_sym_enum] = ACTIONS(1391), - [anon_sym_NS_ENUM] = ACTIONS(1391), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1391), - [anon_sym_NS_OPTIONS] = ACTIONS(1391), - [anon_sym_struct] = ACTIONS(1391), - [anon_sym_union] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1391), - [anon_sym_else] = ACTIONS(1391), - [anon_sym_switch] = ACTIONS(1391), - [anon_sym_case] = ACTIONS(1391), - [anon_sym_default] = ACTIONS(1391), - [anon_sym_while] = ACTIONS(1391), - [anon_sym_do] = ACTIONS(1391), - [anon_sym_for] = ACTIONS(1391), - [anon_sym_return] = ACTIONS(1391), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_continue] = ACTIONS(1391), - [anon_sym_goto] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_sizeof] = ACTIONS(1391), - [sym_number_literal] = ACTIONS(1389), - [anon_sym_L_SQUOTE] = ACTIONS(1389), - [anon_sym_u_SQUOTE] = ACTIONS(1389), - [anon_sym_U_SQUOTE] = ACTIONS(1389), - [anon_sym_u8_SQUOTE] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_L_DQUOTE] = ACTIONS(1389), - [anon_sym_u_DQUOTE] = ACTIONS(1389), - [anon_sym_U_DQUOTE] = ACTIONS(1389), - [anon_sym_u8_DQUOTE] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym_true] = ACTIONS(1391), - [sym_false] = ACTIONS(1391), - [sym_null] = ACTIONS(1391), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1389), - [anon_sym_ATimport] = ACTIONS(1389), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1391), - [anon_sym_ATcompatibility_alias] = ACTIONS(1389), - [anon_sym_ATprotocol] = ACTIONS(1389), - [anon_sym_ATclass] = ACTIONS(1389), - [anon_sym_ATinterface] = ACTIONS(1389), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1391), - [sym_method_attribute_specifier] = ACTIONS(1391), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1391), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1391), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1391), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1391), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1391), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1391), - [anon_sym_NS_AVAILABLE] = ACTIONS(1391), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1391), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1391), - [anon_sym_API_AVAILABLE] = ACTIONS(1391), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1391), - [anon_sym_API_DEPRECATED] = ACTIONS(1391), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1391), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1391), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1391), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1391), - [anon_sym___deprecated_msg] = ACTIONS(1391), - [anon_sym___deprecated_enum_msg] = ACTIONS(1391), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1391), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1391), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1391), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1391), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1391), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1391), - [anon_sym_ATimplementation] = ACTIONS(1389), - [anon_sym_typeof] = ACTIONS(1391), - [anon_sym___typeof] = ACTIONS(1391), - [anon_sym___typeof__] = ACTIONS(1391), - [sym_self] = ACTIONS(1391), - [sym_super] = ACTIONS(1391), - [sym_nil] = ACTIONS(1391), - [sym_id] = ACTIONS(1391), - [sym_instancetype] = ACTIONS(1391), - [sym_Class] = ACTIONS(1391), - [sym_SEL] = ACTIONS(1391), - [sym_IMP] = ACTIONS(1391), - [sym_BOOL] = ACTIONS(1391), - [sym_auto] = ACTIONS(1391), - [anon_sym_ATautoreleasepool] = ACTIONS(1389), - [anon_sym_ATsynchronized] = ACTIONS(1389), - [anon_sym_ATtry] = ACTIONS(1389), - [anon_sym_ATcatch] = ACTIONS(1389), - [anon_sym_ATfinally] = ACTIONS(1389), - [anon_sym_ATthrow] = ACTIONS(1389), - [anon_sym_ATselector] = ACTIONS(1389), - [anon_sym_ATencode] = ACTIONS(1389), - [anon_sym_AT] = ACTIONS(1391), - [sym_YES] = ACTIONS(1391), - [sym_NO] = ACTIONS(1391), - [anon_sym___builtin_available] = ACTIONS(1391), - [anon_sym_ATavailable] = ACTIONS(1389), - [anon_sym_va_arg] = ACTIONS(1391), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [218] = { - [sym_identifier] = ACTIONS(1387), - [aux_sym_preproc_include_token1] = ACTIONS(1385), - [aux_sym_preproc_def_token1] = ACTIONS(1385), - [aux_sym_preproc_if_token1] = ACTIONS(1387), - [aux_sym_preproc_if_token2] = ACTIONS(1387), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1387), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1387), - [aux_sym_preproc_else_token1] = ACTIONS(1387), - [aux_sym_preproc_elif_token1] = ACTIONS(1387), - [anon_sym_LPAREN2] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_typedef] = ACTIONS(1387), - [anon_sym_extern] = ACTIONS(1387), - [anon_sym___attribute] = ACTIONS(1387), - [anon_sym___attribute__] = ACTIONS(1387), - [anon_sym___declspec] = ACTIONS(1387), - [anon_sym___cdecl] = ACTIONS(1387), - [anon_sym___clrcall] = ACTIONS(1387), - [anon_sym___stdcall] = ACTIONS(1387), - [anon_sym___fastcall] = ACTIONS(1387), - [anon_sym___thiscall] = ACTIONS(1387), - [anon_sym___vectorcall] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1387), - [anon_sym_auto] = ACTIONS(1387), - [anon_sym_register] = ACTIONS(1387), - [anon_sym_inline] = ACTIONS(1387), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1387), - [anon_sym_const] = ACTIONS(1387), - [anon_sym_volatile] = ACTIONS(1387), - [anon_sym_restrict] = ACTIONS(1387), - [anon_sym__Atomic] = ACTIONS(1387), - [anon_sym_in] = ACTIONS(1387), - [anon_sym_out] = ACTIONS(1387), - [anon_sym_inout] = ACTIONS(1387), - [anon_sym_bycopy] = ACTIONS(1387), - [anon_sym_byref] = ACTIONS(1387), - [anon_sym_oneway] = ACTIONS(1387), - [anon_sym__Nullable] = ACTIONS(1387), - [anon_sym__Nonnull] = ACTIONS(1387), - [anon_sym__Nullable_result] = ACTIONS(1387), - [anon_sym__Null_unspecified] = ACTIONS(1387), - [anon_sym___autoreleasing] = ACTIONS(1387), - [anon_sym___nullable] = ACTIONS(1387), - [anon_sym___nonnull] = ACTIONS(1387), - [anon_sym___strong] = ACTIONS(1387), - [anon_sym___weak] = ACTIONS(1387), - [anon_sym___bridge] = ACTIONS(1387), - [anon_sym___bridge_transfer] = ACTIONS(1387), - [anon_sym___bridge_retained] = ACTIONS(1387), - [anon_sym___unsafe_unretained] = ACTIONS(1387), - [anon_sym___block] = ACTIONS(1387), - [anon_sym___kindof] = ACTIONS(1387), - [anon_sym___unused] = ACTIONS(1387), - [anon_sym__Complex] = ACTIONS(1387), - [anon_sym___complex] = ACTIONS(1387), - [anon_sym_IBOutlet] = ACTIONS(1387), - [anon_sym_IBInspectable] = ACTIONS(1387), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1387), - [anon_sym_signed] = ACTIONS(1387), - [anon_sym_unsigned] = ACTIONS(1387), - [anon_sym_long] = ACTIONS(1387), - [anon_sym_short] = ACTIONS(1387), - [sym_primitive_type] = ACTIONS(1387), - [anon_sym_enum] = ACTIONS(1387), - [anon_sym_NS_ENUM] = ACTIONS(1387), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1387), - [anon_sym_NS_OPTIONS] = ACTIONS(1387), - [anon_sym_struct] = ACTIONS(1387), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_else] = ACTIONS(1387), - [anon_sym_switch] = ACTIONS(1387), - [anon_sym_case] = ACTIONS(1387), - [anon_sym_default] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_do] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_goto] = ACTIONS(1387), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_sizeof] = ACTIONS(1387), - [sym_number_literal] = ACTIONS(1385), - [anon_sym_L_SQUOTE] = ACTIONS(1385), - [anon_sym_u_SQUOTE] = ACTIONS(1385), - [anon_sym_U_SQUOTE] = ACTIONS(1385), - [anon_sym_u8_SQUOTE] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_L_DQUOTE] = ACTIONS(1385), - [anon_sym_u_DQUOTE] = ACTIONS(1385), - [anon_sym_U_DQUOTE] = ACTIONS(1385), - [anon_sym_u8_DQUOTE] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [sym_null] = ACTIONS(1387), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1385), - [anon_sym_ATimport] = ACTIONS(1385), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1387), - [anon_sym_ATcompatibility_alias] = ACTIONS(1385), - [anon_sym_ATprotocol] = ACTIONS(1385), - [anon_sym_ATclass] = ACTIONS(1385), - [anon_sym_ATinterface] = ACTIONS(1385), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1387), - [sym_method_attribute_specifier] = ACTIONS(1387), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1387), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1387), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1387), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1387), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1387), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1387), - [anon_sym_NS_AVAILABLE] = ACTIONS(1387), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1387), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1387), - [anon_sym_API_AVAILABLE] = ACTIONS(1387), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1387), - [anon_sym_API_DEPRECATED] = ACTIONS(1387), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1387), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1387), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1387), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1387), - [anon_sym___deprecated_msg] = ACTIONS(1387), - [anon_sym___deprecated_enum_msg] = ACTIONS(1387), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1387), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1387), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1387), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1387), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1387), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1387), - [anon_sym_ATimplementation] = ACTIONS(1385), - [anon_sym_typeof] = ACTIONS(1387), - [anon_sym___typeof] = ACTIONS(1387), - [anon_sym___typeof__] = ACTIONS(1387), - [sym_self] = ACTIONS(1387), - [sym_super] = ACTIONS(1387), - [sym_nil] = ACTIONS(1387), - [sym_id] = ACTIONS(1387), - [sym_instancetype] = ACTIONS(1387), - [sym_Class] = ACTIONS(1387), - [sym_SEL] = ACTIONS(1387), - [sym_IMP] = ACTIONS(1387), - [sym_BOOL] = ACTIONS(1387), - [sym_auto] = ACTIONS(1387), - [anon_sym_ATautoreleasepool] = ACTIONS(1385), - [anon_sym_ATsynchronized] = ACTIONS(1385), - [anon_sym_ATtry] = ACTIONS(1385), - [anon_sym_ATcatch] = ACTIONS(1385), - [anon_sym_ATfinally] = ACTIONS(1385), - [anon_sym_ATthrow] = ACTIONS(1385), - [anon_sym_ATselector] = ACTIONS(1385), - [anon_sym_ATencode] = ACTIONS(1385), - [anon_sym_AT] = ACTIONS(1387), - [sym_YES] = ACTIONS(1387), - [sym_NO] = ACTIONS(1387), - [anon_sym___builtin_available] = ACTIONS(1387), - [anon_sym_ATavailable] = ACTIONS(1385), - [anon_sym_va_arg] = ACTIONS(1387), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [219] = { - [sym_identifier] = ACTIONS(1383), - [aux_sym_preproc_include_token1] = ACTIONS(1381), - [aux_sym_preproc_def_token1] = ACTIONS(1381), - [aux_sym_preproc_if_token1] = ACTIONS(1383), - [aux_sym_preproc_if_token2] = ACTIONS(1383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1383), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1383), - [aux_sym_preproc_else_token1] = ACTIONS(1383), - [aux_sym_preproc_elif_token1] = ACTIONS(1383), - [anon_sym_LPAREN2] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_typedef] = ACTIONS(1383), - [anon_sym_extern] = ACTIONS(1383), - [anon_sym___attribute] = ACTIONS(1383), - [anon_sym___attribute__] = ACTIONS(1383), - [anon_sym___declspec] = ACTIONS(1383), - [anon_sym___cdecl] = ACTIONS(1383), - [anon_sym___clrcall] = ACTIONS(1383), - [anon_sym___stdcall] = ACTIONS(1383), - [anon_sym___fastcall] = ACTIONS(1383), - [anon_sym___thiscall] = ACTIONS(1383), - [anon_sym___vectorcall] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1383), - [anon_sym_auto] = ACTIONS(1383), - [anon_sym_register] = ACTIONS(1383), - [anon_sym_inline] = ACTIONS(1383), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1383), - [anon_sym_const] = ACTIONS(1383), - [anon_sym_volatile] = ACTIONS(1383), - [anon_sym_restrict] = ACTIONS(1383), - [anon_sym__Atomic] = ACTIONS(1383), - [anon_sym_in] = ACTIONS(1383), - [anon_sym_out] = ACTIONS(1383), - [anon_sym_inout] = ACTIONS(1383), - [anon_sym_bycopy] = ACTIONS(1383), - [anon_sym_byref] = ACTIONS(1383), - [anon_sym_oneway] = ACTIONS(1383), - [anon_sym__Nullable] = ACTIONS(1383), - [anon_sym__Nonnull] = ACTIONS(1383), - [anon_sym__Nullable_result] = ACTIONS(1383), - [anon_sym__Null_unspecified] = ACTIONS(1383), - [anon_sym___autoreleasing] = ACTIONS(1383), - [anon_sym___nullable] = ACTIONS(1383), - [anon_sym___nonnull] = ACTIONS(1383), - [anon_sym___strong] = ACTIONS(1383), - [anon_sym___weak] = ACTIONS(1383), - [anon_sym___bridge] = ACTIONS(1383), - [anon_sym___bridge_transfer] = ACTIONS(1383), - [anon_sym___bridge_retained] = ACTIONS(1383), - [anon_sym___unsafe_unretained] = ACTIONS(1383), - [anon_sym___block] = ACTIONS(1383), - [anon_sym___kindof] = ACTIONS(1383), - [anon_sym___unused] = ACTIONS(1383), - [anon_sym__Complex] = ACTIONS(1383), - [anon_sym___complex] = ACTIONS(1383), - [anon_sym_IBOutlet] = ACTIONS(1383), - [anon_sym_IBInspectable] = ACTIONS(1383), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1383), - [anon_sym_signed] = ACTIONS(1383), - [anon_sym_unsigned] = ACTIONS(1383), - [anon_sym_long] = ACTIONS(1383), - [anon_sym_short] = ACTIONS(1383), - [sym_primitive_type] = ACTIONS(1383), - [anon_sym_enum] = ACTIONS(1383), - [anon_sym_NS_ENUM] = ACTIONS(1383), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1383), - [anon_sym_NS_OPTIONS] = ACTIONS(1383), - [anon_sym_struct] = ACTIONS(1383), - [anon_sym_union] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_else] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1383), - [anon_sym_case] = ACTIONS(1383), - [anon_sym_default] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_do] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_goto] = ACTIONS(1383), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_sizeof] = ACTIONS(1383), - [sym_number_literal] = ACTIONS(1381), - [anon_sym_L_SQUOTE] = ACTIONS(1381), - [anon_sym_u_SQUOTE] = ACTIONS(1381), - [anon_sym_U_SQUOTE] = ACTIONS(1381), - [anon_sym_u8_SQUOTE] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [anon_sym_L_DQUOTE] = ACTIONS(1381), - [anon_sym_u_DQUOTE] = ACTIONS(1381), - [anon_sym_U_DQUOTE] = ACTIONS(1381), - [anon_sym_u8_DQUOTE] = ACTIONS(1381), - [anon_sym_DQUOTE] = ACTIONS(1381), - [sym_true] = ACTIONS(1383), - [sym_false] = ACTIONS(1383), - [sym_null] = ACTIONS(1383), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1381), - [anon_sym_ATimport] = ACTIONS(1381), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1383), - [anon_sym_ATcompatibility_alias] = ACTIONS(1381), - [anon_sym_ATprotocol] = ACTIONS(1381), - [anon_sym_ATclass] = ACTIONS(1381), - [anon_sym_ATinterface] = ACTIONS(1381), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1383), - [sym_method_attribute_specifier] = ACTIONS(1383), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1383), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1383), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1383), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1383), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1383), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1383), - [anon_sym_NS_AVAILABLE] = ACTIONS(1383), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1383), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1383), - [anon_sym_API_AVAILABLE] = ACTIONS(1383), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1383), - [anon_sym_API_DEPRECATED] = ACTIONS(1383), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1383), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1383), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1383), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1383), - [anon_sym___deprecated_msg] = ACTIONS(1383), - [anon_sym___deprecated_enum_msg] = ACTIONS(1383), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1383), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1383), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1383), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1383), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1383), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1383), - [anon_sym_ATimplementation] = ACTIONS(1381), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym___typeof] = ACTIONS(1383), - [anon_sym___typeof__] = ACTIONS(1383), - [sym_self] = ACTIONS(1383), - [sym_super] = ACTIONS(1383), - [sym_nil] = ACTIONS(1383), - [sym_id] = ACTIONS(1383), - [sym_instancetype] = ACTIONS(1383), - [sym_Class] = ACTIONS(1383), - [sym_SEL] = ACTIONS(1383), - [sym_IMP] = ACTIONS(1383), - [sym_BOOL] = ACTIONS(1383), - [sym_auto] = ACTIONS(1383), - [anon_sym_ATautoreleasepool] = ACTIONS(1381), - [anon_sym_ATsynchronized] = ACTIONS(1381), - [anon_sym_ATtry] = ACTIONS(1381), - [anon_sym_ATcatch] = ACTIONS(1381), - [anon_sym_ATfinally] = ACTIONS(1381), - [anon_sym_ATthrow] = ACTIONS(1381), - [anon_sym_ATselector] = ACTIONS(1381), - [anon_sym_ATencode] = ACTIONS(1381), - [anon_sym_AT] = ACTIONS(1383), - [sym_YES] = ACTIONS(1383), - [sym_NO] = ACTIONS(1383), - [anon_sym___builtin_available] = ACTIONS(1383), - [anon_sym_ATavailable] = ACTIONS(1381), - [anon_sym_va_arg] = ACTIONS(1383), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [220] = { - [ts_builtin_sym_end] = ACTIONS(1571), - [sym_identifier] = ACTIONS(1569), - [aux_sym_preproc_include_token1] = ACTIONS(1571), - [aux_sym_preproc_def_token1] = ACTIONS(1571), - [anon_sym_RPAREN] = ACTIONS(1571), - [aux_sym_preproc_if_token1] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_typedef] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym___attribute] = ACTIONS(1569), - [anon_sym___attribute__] = ACTIONS(1569), - [anon_sym___declspec] = ACTIONS(1569), - [anon_sym___cdecl] = ACTIONS(1569), - [anon_sym___clrcall] = ACTIONS(1569), - [anon_sym___stdcall] = ACTIONS(1569), - [anon_sym___fastcall] = ACTIONS(1569), - [anon_sym___thiscall] = ACTIONS(1569), - [anon_sym___vectorcall] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_auto] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_inline] = ACTIONS(1569), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [anon_sym_volatile] = ACTIONS(1569), - [anon_sym_restrict] = ACTIONS(1569), - [anon_sym__Atomic] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_out] = ACTIONS(1569), - [anon_sym_inout] = ACTIONS(1569), - [anon_sym_bycopy] = ACTIONS(1569), - [anon_sym_byref] = ACTIONS(1569), - [anon_sym_oneway] = ACTIONS(1569), - [anon_sym__Nullable] = ACTIONS(1569), - [anon_sym__Nonnull] = ACTIONS(1569), - [anon_sym__Nullable_result] = ACTIONS(1569), - [anon_sym__Null_unspecified] = ACTIONS(1569), - [anon_sym___autoreleasing] = ACTIONS(1569), - [anon_sym___nullable] = ACTIONS(1569), - [anon_sym___nonnull] = ACTIONS(1569), - [anon_sym___strong] = ACTIONS(1569), - [anon_sym___weak] = ACTIONS(1569), - [anon_sym___bridge] = ACTIONS(1569), - [anon_sym___bridge_transfer] = ACTIONS(1569), - [anon_sym___bridge_retained] = ACTIONS(1569), - [anon_sym___unsafe_unretained] = ACTIONS(1569), - [anon_sym___block] = ACTIONS(1569), - [anon_sym___kindof] = ACTIONS(1569), - [anon_sym___unused] = ACTIONS(1569), - [anon_sym__Complex] = ACTIONS(1569), - [anon_sym___complex] = ACTIONS(1569), - [anon_sym_IBOutlet] = ACTIONS(1569), - [anon_sym_IBInspectable] = ACTIONS(1569), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1569), - [anon_sym_signed] = ACTIONS(1569), - [anon_sym_unsigned] = ACTIONS(1569), - [anon_sym_long] = ACTIONS(1569), - [anon_sym_short] = ACTIONS(1569), - [sym_primitive_type] = ACTIONS(1569), - [anon_sym_enum] = ACTIONS(1569), - [anon_sym_NS_ENUM] = ACTIONS(1569), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1569), - [anon_sym_NS_OPTIONS] = ACTIONS(1569), - [anon_sym_struct] = ACTIONS(1569), - [anon_sym_union] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_switch] = ACTIONS(1569), - [anon_sym_case] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_goto] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_sizeof] = ACTIONS(1569), - [sym_number_literal] = ACTIONS(1571), - [anon_sym_L_SQUOTE] = ACTIONS(1571), - [anon_sym_u_SQUOTE] = ACTIONS(1571), - [anon_sym_U_SQUOTE] = ACTIONS(1571), - [anon_sym_u8_SQUOTE] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [anon_sym_L_DQUOTE] = ACTIONS(1571), - [anon_sym_u_DQUOTE] = ACTIONS(1571), - [anon_sym_U_DQUOTE] = ACTIONS(1571), - [anon_sym_u8_DQUOTE] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym_true] = ACTIONS(1569), - [sym_false] = ACTIONS(1569), - [sym_null] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1571), - [anon_sym_ATimport] = ACTIONS(1571), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1569), - [anon_sym_ATcompatibility_alias] = ACTIONS(1571), - [anon_sym_ATprotocol] = ACTIONS(1571), - [anon_sym_ATclass] = ACTIONS(1571), - [anon_sym_ATinterface] = ACTIONS(1571), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1569), - [sym_method_attribute_specifier] = ACTIONS(1569), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1569), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1569), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1569), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1569), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1569), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1569), - [anon_sym_NS_AVAILABLE] = ACTIONS(1569), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1569), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1569), - [anon_sym_API_AVAILABLE] = ACTIONS(1569), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1569), - [anon_sym_API_DEPRECATED] = ACTIONS(1569), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1569), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1569), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1569), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1569), - [anon_sym___deprecated_msg] = ACTIONS(1569), - [anon_sym___deprecated_enum_msg] = ACTIONS(1569), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1569), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1569), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1569), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1569), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1569), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1569), - [anon_sym_ATimplementation] = ACTIONS(1571), - [anon_sym_typeof] = ACTIONS(1569), - [anon_sym___typeof] = ACTIONS(1569), - [anon_sym___typeof__] = ACTIONS(1569), - [sym_self] = ACTIONS(1569), - [sym_super] = ACTIONS(1569), - [sym_nil] = ACTIONS(1569), - [sym_id] = ACTIONS(1569), - [sym_instancetype] = ACTIONS(1569), - [sym_Class] = ACTIONS(1569), - [sym_SEL] = ACTIONS(1569), - [sym_IMP] = ACTIONS(1569), - [sym_BOOL] = ACTIONS(1569), - [sym_auto] = ACTIONS(1569), - [anon_sym_ATautoreleasepool] = ACTIONS(1571), - [anon_sym_ATsynchronized] = ACTIONS(1571), - [anon_sym_ATtry] = ACTIONS(1571), - [anon_sym_ATcatch] = ACTIONS(1571), - [anon_sym_ATfinally] = ACTIONS(1571), - [anon_sym_ATthrow] = ACTIONS(1571), - [anon_sym_ATselector] = ACTIONS(1571), - [anon_sym_ATencode] = ACTIONS(1571), - [anon_sym_AT] = ACTIONS(1569), - [sym_YES] = ACTIONS(1569), - [sym_NO] = ACTIONS(1569), - [anon_sym___builtin_available] = ACTIONS(1569), - [anon_sym_ATavailable] = ACTIONS(1571), - [anon_sym_va_arg] = ACTIONS(1569), + [anon_sym_POUNDimport] = ACTIONS(1415), + [anon_sym_ATimport] = ACTIONS(1415), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1417), + [anon_sym_ATcompatibility_alias] = ACTIONS(1415), + [anon_sym_ATprotocol] = ACTIONS(1415), + [anon_sym_ATclass] = ACTIONS(1415), + [anon_sym_ATinterface] = ACTIONS(1415), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1417), + [sym_method_attribute_specifier] = ACTIONS(1417), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1417), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1417), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1417), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1417), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1417), + [anon_sym_NS_AVAILABLE] = ACTIONS(1417), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1417), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_API_AVAILABLE] = ACTIONS(1417), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_API_DEPRECATED] = ACTIONS(1417), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1417), + [anon_sym___deprecated_msg] = ACTIONS(1417), + [anon_sym___deprecated_enum_msg] = ACTIONS(1417), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1417), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1417), + [anon_sym_ATimplementation] = ACTIONS(1415), + [anon_sym_NS_ENUM] = ACTIONS(1417), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1417), + [anon_sym_NS_OPTIONS] = ACTIONS(1417), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym___typeof] = ACTIONS(1417), + [anon_sym___typeof__] = ACTIONS(1417), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1417), + [sym_nil] = ACTIONS(1417), + [sym_id] = ACTIONS(1417), + [sym_instancetype] = ACTIONS(1417), + [sym_Class] = ACTIONS(1417), + [sym_SEL] = ACTIONS(1417), + [sym_IMP] = ACTIONS(1417), + [sym_BOOL] = ACTIONS(1417), + [sym_auto] = ACTIONS(1417), + [anon_sym_ATautoreleasepool] = ACTIONS(1415), + [anon_sym_ATsynchronized] = ACTIONS(1415), + [anon_sym_ATtry] = ACTIONS(1415), + [anon_sym_ATcatch] = ACTIONS(1415), + [anon_sym_ATfinally] = ACTIONS(1415), + [anon_sym_ATthrow] = ACTIONS(1415), + [anon_sym_ATselector] = ACTIONS(1415), + [anon_sym_ATencode] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [sym_YES] = ACTIONS(1417), + [sym_NO] = ACTIONS(1417), + [anon_sym___builtin_available] = ACTIONS(1417), + [anon_sym_ATavailable] = ACTIONS(1415), + [anon_sym_va_arg] = ACTIONS(1417), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -64542,176 +61031,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [221] = { - [sym_identifier] = ACTIONS(1245), - [aux_sym_preproc_include_token1] = ACTIONS(1243), - [aux_sym_preproc_def_token1] = ACTIONS(1243), - [aux_sym_preproc_if_token1] = ACTIONS(1245), - [aux_sym_preproc_if_token2] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), - [aux_sym_preproc_else_token1] = ACTIONS(1245), - [aux_sym_preproc_elif_token1] = ACTIONS(1245), - [anon_sym_LPAREN2] = ACTIONS(1243), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1243), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_CARET] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym_typedef] = ACTIONS(1245), - [anon_sym_extern] = ACTIONS(1245), - [anon_sym___attribute] = ACTIONS(1245), - [anon_sym___attribute__] = ACTIONS(1245), - [anon_sym___declspec] = ACTIONS(1245), - [anon_sym___cdecl] = ACTIONS(1245), - [anon_sym___clrcall] = ACTIONS(1245), - [anon_sym___stdcall] = ACTIONS(1245), - [anon_sym___fastcall] = ACTIONS(1245), - [anon_sym___thiscall] = ACTIONS(1245), - [anon_sym___vectorcall] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_LBRACK] = ACTIONS(1243), - [anon_sym_static] = ACTIONS(1245), - [anon_sym_auto] = ACTIONS(1245), - [anon_sym_register] = ACTIONS(1245), - [anon_sym_inline] = ACTIONS(1245), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(1245), - [anon_sym_volatile] = ACTIONS(1245), - [anon_sym_restrict] = ACTIONS(1245), - [anon_sym__Atomic] = ACTIONS(1245), - [anon_sym_in] = ACTIONS(1245), - [anon_sym_out] = ACTIONS(1245), - [anon_sym_inout] = ACTIONS(1245), - [anon_sym_bycopy] = ACTIONS(1245), - [anon_sym_byref] = ACTIONS(1245), - [anon_sym_oneway] = ACTIONS(1245), - [anon_sym__Nullable] = ACTIONS(1245), - [anon_sym__Nonnull] = ACTIONS(1245), - [anon_sym__Nullable_result] = ACTIONS(1245), - [anon_sym__Null_unspecified] = ACTIONS(1245), - [anon_sym___autoreleasing] = ACTIONS(1245), - [anon_sym___nullable] = ACTIONS(1245), - [anon_sym___nonnull] = ACTIONS(1245), - [anon_sym___strong] = ACTIONS(1245), - [anon_sym___weak] = ACTIONS(1245), - [anon_sym___bridge] = ACTIONS(1245), - [anon_sym___bridge_transfer] = ACTIONS(1245), - [anon_sym___bridge_retained] = ACTIONS(1245), - [anon_sym___unsafe_unretained] = ACTIONS(1245), - [anon_sym___block] = ACTIONS(1245), - [anon_sym___kindof] = ACTIONS(1245), - [anon_sym___unused] = ACTIONS(1245), - [anon_sym__Complex] = ACTIONS(1245), - [anon_sym___complex] = ACTIONS(1245), - [anon_sym_IBOutlet] = ACTIONS(1245), - [anon_sym_IBInspectable] = ACTIONS(1245), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1245), - [anon_sym_signed] = ACTIONS(1245), - [anon_sym_unsigned] = ACTIONS(1245), - [anon_sym_long] = ACTIONS(1245), - [anon_sym_short] = ACTIONS(1245), - [sym_primitive_type] = ACTIONS(1245), - [anon_sym_enum] = ACTIONS(1245), - [anon_sym_NS_ENUM] = ACTIONS(1245), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1245), - [anon_sym_NS_OPTIONS] = ACTIONS(1245), - [anon_sym_struct] = ACTIONS(1245), - [anon_sym_union] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_else] = ACTIONS(1245), - [anon_sym_switch] = ACTIONS(1245), - [anon_sym_case] = ACTIONS(1245), - [anon_sym_default] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_goto] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_sizeof] = ACTIONS(1245), - [sym_number_literal] = ACTIONS(1243), - [anon_sym_L_SQUOTE] = ACTIONS(1243), - [anon_sym_u_SQUOTE] = ACTIONS(1243), - [anon_sym_U_SQUOTE] = ACTIONS(1243), - [anon_sym_u8_SQUOTE] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1243), - [anon_sym_L_DQUOTE] = ACTIONS(1243), - [anon_sym_u_DQUOTE] = ACTIONS(1243), - [anon_sym_U_DQUOTE] = ACTIONS(1243), - [anon_sym_u8_DQUOTE] = ACTIONS(1243), - [anon_sym_DQUOTE] = ACTIONS(1243), - [sym_true] = ACTIONS(1245), - [sym_false] = ACTIONS(1245), - [sym_null] = ACTIONS(1245), + [201] = { + [sym_identifier] = ACTIONS(1541), + [aux_sym_preproc_include_token1] = ACTIONS(1539), + [aux_sym_preproc_def_token1] = ACTIONS(1539), + [aux_sym_preproc_if_token1] = ACTIONS(1541), + [aux_sym_preproc_if_token2] = ACTIONS(1541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1541), + [aux_sym_preproc_else_token1] = ACTIONS(1541), + [aux_sym_preproc_elif_token1] = ACTIONS(1541), + [anon_sym_LPAREN2] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_typedef] = ACTIONS(1541), + [anon_sym_extern] = ACTIONS(1541), + [anon_sym___attribute] = ACTIONS(1541), + [anon_sym___attribute__] = ACTIONS(1541), + [anon_sym___declspec] = ACTIONS(1541), + [anon_sym___cdecl] = ACTIONS(1541), + [anon_sym___clrcall] = ACTIONS(1541), + [anon_sym___stdcall] = ACTIONS(1541), + [anon_sym___fastcall] = ACTIONS(1541), + [anon_sym___thiscall] = ACTIONS(1541), + [anon_sym___vectorcall] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1539), + [anon_sym_LBRACK] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_auto] = ACTIONS(1541), + [anon_sym_register] = ACTIONS(1541), + [anon_sym_inline] = ACTIONS(1541), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_volatile] = ACTIONS(1541), + [anon_sym_restrict] = ACTIONS(1541), + [anon_sym__Atomic] = ACTIONS(1541), + [anon_sym_in] = ACTIONS(1541), + [anon_sym_out] = ACTIONS(1541), + [anon_sym_inout] = ACTIONS(1541), + [anon_sym_bycopy] = ACTIONS(1541), + [anon_sym_byref] = ACTIONS(1541), + [anon_sym_oneway] = ACTIONS(1541), + [anon_sym__Nullable] = ACTIONS(1541), + [anon_sym__Nonnull] = ACTIONS(1541), + [anon_sym__Nullable_result] = ACTIONS(1541), + [anon_sym__Null_unspecified] = ACTIONS(1541), + [anon_sym___autoreleasing] = ACTIONS(1541), + [anon_sym___nullable] = ACTIONS(1541), + [anon_sym___nonnull] = ACTIONS(1541), + [anon_sym___strong] = ACTIONS(1541), + [anon_sym___weak] = ACTIONS(1541), + [anon_sym___bridge] = ACTIONS(1541), + [anon_sym___bridge_transfer] = ACTIONS(1541), + [anon_sym___bridge_retained] = ACTIONS(1541), + [anon_sym___unsafe_unretained] = ACTIONS(1541), + [anon_sym___block] = ACTIONS(1541), + [anon_sym___kindof] = ACTIONS(1541), + [anon_sym___unused] = ACTIONS(1541), + [anon_sym__Complex] = ACTIONS(1541), + [anon_sym___complex] = ACTIONS(1541), + [anon_sym_IBOutlet] = ACTIONS(1541), + [anon_sym_IBInspectable] = ACTIONS(1541), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1541), + [anon_sym_signed] = ACTIONS(1541), + [anon_sym_unsigned] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [sym_primitive_type] = ACTIONS(1541), + [anon_sym_enum] = ACTIONS(1541), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1541), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_else] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_case] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_goto] = ACTIONS(1541), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_sizeof] = ACTIONS(1541), + [sym_number_literal] = ACTIONS(1539), + [anon_sym_L_SQUOTE] = ACTIONS(1539), + [anon_sym_u_SQUOTE] = ACTIONS(1539), + [anon_sym_U_SQUOTE] = ACTIONS(1539), + [anon_sym_u8_SQUOTE] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_L_DQUOTE] = ACTIONS(1539), + [anon_sym_u_DQUOTE] = ACTIONS(1539), + [anon_sym_U_DQUOTE] = ACTIONS(1539), + [anon_sym_u8_DQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), + [sym_true] = ACTIONS(1541), + [sym_false] = ACTIONS(1541), + [sym_null] = ACTIONS(1541), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1243), - [anon_sym_ATimport] = ACTIONS(1243), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1245), - [anon_sym_ATcompatibility_alias] = ACTIONS(1243), - [anon_sym_ATprotocol] = ACTIONS(1243), - [anon_sym_ATclass] = ACTIONS(1243), - [anon_sym_ATinterface] = ACTIONS(1243), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1245), - [sym_method_attribute_specifier] = ACTIONS(1245), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1245), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1245), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1245), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1245), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1245), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1245), - [anon_sym_NS_AVAILABLE] = ACTIONS(1245), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1245), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1245), - [anon_sym_API_AVAILABLE] = ACTIONS(1245), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1245), - [anon_sym_API_DEPRECATED] = ACTIONS(1245), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1245), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1245), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1245), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1245), - [anon_sym___deprecated_msg] = ACTIONS(1245), - [anon_sym___deprecated_enum_msg] = ACTIONS(1245), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1245), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1245), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1245), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1245), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1245), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1245), - [anon_sym_ATimplementation] = ACTIONS(1243), - [anon_sym_typeof] = ACTIONS(1245), - [anon_sym___typeof] = ACTIONS(1245), - [anon_sym___typeof__] = ACTIONS(1245), - [sym_self] = ACTIONS(1245), - [sym_super] = ACTIONS(1245), - [sym_nil] = ACTIONS(1245), - [sym_id] = ACTIONS(1245), - [sym_instancetype] = ACTIONS(1245), - [sym_Class] = ACTIONS(1245), - [sym_SEL] = ACTIONS(1245), - [sym_IMP] = ACTIONS(1245), - [sym_BOOL] = ACTIONS(1245), - [sym_auto] = ACTIONS(1245), - [anon_sym_ATautoreleasepool] = ACTIONS(1243), - [anon_sym_ATsynchronized] = ACTIONS(1243), - [anon_sym_ATtry] = ACTIONS(1243), - [anon_sym_ATcatch] = ACTIONS(1243), - [anon_sym_ATfinally] = ACTIONS(1243), - [anon_sym_ATthrow] = ACTIONS(1243), - [anon_sym_ATselector] = ACTIONS(1243), - [anon_sym_ATencode] = ACTIONS(1243), - [anon_sym_AT] = ACTIONS(1245), - [sym_YES] = ACTIONS(1245), - [sym_NO] = ACTIONS(1245), - [anon_sym___builtin_available] = ACTIONS(1245), - [anon_sym_ATavailable] = ACTIONS(1243), - [anon_sym_va_arg] = ACTIONS(1245), + [anon_sym_POUNDimport] = ACTIONS(1539), + [anon_sym_ATimport] = ACTIONS(1539), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1541), + [anon_sym_ATcompatibility_alias] = ACTIONS(1539), + [anon_sym_ATprotocol] = ACTIONS(1539), + [anon_sym_ATclass] = ACTIONS(1539), + [anon_sym_ATinterface] = ACTIONS(1539), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1541), + [sym_method_attribute_specifier] = ACTIONS(1541), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1541), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1541), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1541), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1541), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1541), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1541), + [anon_sym_NS_AVAILABLE] = ACTIONS(1541), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1541), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1541), + [anon_sym_API_AVAILABLE] = ACTIONS(1541), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1541), + [anon_sym_API_DEPRECATED] = ACTIONS(1541), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1541), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1541), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1541), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1541), + [anon_sym___deprecated_msg] = ACTIONS(1541), + [anon_sym___deprecated_enum_msg] = ACTIONS(1541), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1541), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1541), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1541), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1541), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1541), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1541), + [anon_sym_ATimplementation] = ACTIONS(1539), + [anon_sym_NS_ENUM] = ACTIONS(1541), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1541), + [anon_sym_NS_OPTIONS] = ACTIONS(1541), + [anon_sym_typeof] = ACTIONS(1541), + [anon_sym___typeof] = ACTIONS(1541), + [anon_sym___typeof__] = ACTIONS(1541), + [sym_self] = ACTIONS(1541), + [sym_super] = ACTIONS(1541), + [sym_nil] = ACTIONS(1541), + [sym_id] = ACTIONS(1541), + [sym_instancetype] = ACTIONS(1541), + [sym_Class] = ACTIONS(1541), + [sym_SEL] = ACTIONS(1541), + [sym_IMP] = ACTIONS(1541), + [sym_BOOL] = ACTIONS(1541), + [sym_auto] = ACTIONS(1541), + [anon_sym_ATautoreleasepool] = ACTIONS(1539), + [anon_sym_ATsynchronized] = ACTIONS(1539), + [anon_sym_ATtry] = ACTIONS(1539), + [anon_sym_ATcatch] = ACTIONS(1539), + [anon_sym_ATfinally] = ACTIONS(1539), + [anon_sym_ATthrow] = ACTIONS(1539), + [anon_sym_ATselector] = ACTIONS(1539), + [anon_sym_ATencode] = ACTIONS(1539), + [anon_sym_AT] = ACTIONS(1541), + [sym_YES] = ACTIONS(1541), + [sym_NO] = ACTIONS(1541), + [anon_sym___builtin_available] = ACTIONS(1541), + [anon_sym_ATavailable] = ACTIONS(1539), + [anon_sym_va_arg] = ACTIONS(1541), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -64719,176 +61208,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [222] = { - [sym_identifier] = ACTIONS(1221), - [aux_sym_preproc_include_token1] = ACTIONS(1219), - [aux_sym_preproc_def_token1] = ACTIONS(1219), - [aux_sym_preproc_if_token1] = ACTIONS(1221), - [aux_sym_preproc_if_token2] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1221), - [aux_sym_preproc_else_token1] = ACTIONS(1221), - [aux_sym_preproc_elif_token1] = ACTIONS(1221), - [anon_sym_LPAREN2] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_TILDE] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_CARET] = ACTIONS(1219), - [anon_sym_AMP] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1219), - [anon_sym_typedef] = ACTIONS(1221), - [anon_sym_extern] = ACTIONS(1221), - [anon_sym___attribute] = ACTIONS(1221), - [anon_sym___attribute__] = ACTIONS(1221), - [anon_sym___declspec] = ACTIONS(1221), - [anon_sym___cdecl] = ACTIONS(1221), - [anon_sym___clrcall] = ACTIONS(1221), - [anon_sym___stdcall] = ACTIONS(1221), - [anon_sym___fastcall] = ACTIONS(1221), - [anon_sym___thiscall] = ACTIONS(1221), - [anon_sym___vectorcall] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_auto] = ACTIONS(1221), - [anon_sym_register] = ACTIONS(1221), - [anon_sym_inline] = ACTIONS(1221), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1221), - [anon_sym_const] = ACTIONS(1221), - [anon_sym_volatile] = ACTIONS(1221), - [anon_sym_restrict] = ACTIONS(1221), - [anon_sym__Atomic] = ACTIONS(1221), - [anon_sym_in] = ACTIONS(1221), - [anon_sym_out] = ACTIONS(1221), - [anon_sym_inout] = ACTIONS(1221), - [anon_sym_bycopy] = ACTIONS(1221), - [anon_sym_byref] = ACTIONS(1221), - [anon_sym_oneway] = ACTIONS(1221), - [anon_sym__Nullable] = ACTIONS(1221), - [anon_sym__Nonnull] = ACTIONS(1221), - [anon_sym__Nullable_result] = ACTIONS(1221), - [anon_sym__Null_unspecified] = ACTIONS(1221), - [anon_sym___autoreleasing] = ACTIONS(1221), - [anon_sym___nullable] = ACTIONS(1221), - [anon_sym___nonnull] = ACTIONS(1221), - [anon_sym___strong] = ACTIONS(1221), - [anon_sym___weak] = ACTIONS(1221), - [anon_sym___bridge] = ACTIONS(1221), - [anon_sym___bridge_transfer] = ACTIONS(1221), - [anon_sym___bridge_retained] = ACTIONS(1221), - [anon_sym___unsafe_unretained] = ACTIONS(1221), - [anon_sym___block] = ACTIONS(1221), - [anon_sym___kindof] = ACTIONS(1221), - [anon_sym___unused] = ACTIONS(1221), - [anon_sym__Complex] = ACTIONS(1221), - [anon_sym___complex] = ACTIONS(1221), - [anon_sym_IBOutlet] = ACTIONS(1221), - [anon_sym_IBInspectable] = ACTIONS(1221), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1221), - [anon_sym_signed] = ACTIONS(1221), - [anon_sym_unsigned] = ACTIONS(1221), - [anon_sym_long] = ACTIONS(1221), - [anon_sym_short] = ACTIONS(1221), - [sym_primitive_type] = ACTIONS(1221), - [anon_sym_enum] = ACTIONS(1221), - [anon_sym_NS_ENUM] = ACTIONS(1221), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1221), - [anon_sym_NS_OPTIONS] = ACTIONS(1221), - [anon_sym_struct] = ACTIONS(1221), - [anon_sym_union] = ACTIONS(1221), - [anon_sym_if] = ACTIONS(1221), - [anon_sym_else] = ACTIONS(1221), - [anon_sym_switch] = ACTIONS(1221), - [anon_sym_case] = ACTIONS(1221), - [anon_sym_default] = ACTIONS(1221), - [anon_sym_while] = ACTIONS(1221), - [anon_sym_do] = ACTIONS(1221), - [anon_sym_for] = ACTIONS(1221), - [anon_sym_return] = ACTIONS(1221), - [anon_sym_break] = ACTIONS(1221), - [anon_sym_continue] = ACTIONS(1221), - [anon_sym_goto] = ACTIONS(1221), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_sizeof] = ACTIONS(1221), - [sym_number_literal] = ACTIONS(1219), - [anon_sym_L_SQUOTE] = ACTIONS(1219), - [anon_sym_u_SQUOTE] = ACTIONS(1219), - [anon_sym_U_SQUOTE] = ACTIONS(1219), - [anon_sym_u8_SQUOTE] = ACTIONS(1219), - [anon_sym_SQUOTE] = ACTIONS(1219), - [anon_sym_L_DQUOTE] = ACTIONS(1219), - [anon_sym_u_DQUOTE] = ACTIONS(1219), - [anon_sym_U_DQUOTE] = ACTIONS(1219), - [anon_sym_u8_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE] = ACTIONS(1219), - [sym_true] = ACTIONS(1221), - [sym_false] = ACTIONS(1221), - [sym_null] = ACTIONS(1221), + [202] = { + [sym_identifier] = ACTIONS(1557), + [aux_sym_preproc_include_token1] = ACTIONS(1559), + [aux_sym_preproc_def_token1] = ACTIONS(1559), + [aux_sym_preproc_if_token1] = ACTIONS(1557), + [aux_sym_preproc_if_token2] = ACTIONS(1557), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1557), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1557), + [aux_sym_preproc_else_token1] = ACTIONS(1557), + [aux_sym_preproc_elif_token1] = ACTIONS(1557), + [anon_sym_LPAREN2] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_typedef] = ACTIONS(1557), + [anon_sym_extern] = ACTIONS(1557), + [anon_sym___attribute] = ACTIONS(1557), + [anon_sym___attribute__] = ACTIONS(1557), + [anon_sym___declspec] = ACTIONS(1557), + [anon_sym___cdecl] = ACTIONS(1557), + [anon_sym___clrcall] = ACTIONS(1557), + [anon_sym___stdcall] = ACTIONS(1557), + [anon_sym___fastcall] = ACTIONS(1557), + [anon_sym___thiscall] = ACTIONS(1557), + [anon_sym___vectorcall] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_auto] = ACTIONS(1557), + [anon_sym_register] = ACTIONS(1557), + [anon_sym_inline] = ACTIONS(1557), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_volatile] = ACTIONS(1557), + [anon_sym_restrict] = ACTIONS(1557), + [anon_sym__Atomic] = ACTIONS(1557), + [anon_sym_in] = ACTIONS(1557), + [anon_sym_out] = ACTIONS(1557), + [anon_sym_inout] = ACTIONS(1557), + [anon_sym_bycopy] = ACTIONS(1557), + [anon_sym_byref] = ACTIONS(1557), + [anon_sym_oneway] = ACTIONS(1557), + [anon_sym__Nullable] = ACTIONS(1557), + [anon_sym__Nonnull] = ACTIONS(1557), + [anon_sym__Nullable_result] = ACTIONS(1557), + [anon_sym__Null_unspecified] = ACTIONS(1557), + [anon_sym___autoreleasing] = ACTIONS(1557), + [anon_sym___nullable] = ACTIONS(1557), + [anon_sym___nonnull] = ACTIONS(1557), + [anon_sym___strong] = ACTIONS(1557), + [anon_sym___weak] = ACTIONS(1557), + [anon_sym___bridge] = ACTIONS(1557), + [anon_sym___bridge_transfer] = ACTIONS(1557), + [anon_sym___bridge_retained] = ACTIONS(1557), + [anon_sym___unsafe_unretained] = ACTIONS(1557), + [anon_sym___block] = ACTIONS(1557), + [anon_sym___kindof] = ACTIONS(1557), + [anon_sym___unused] = ACTIONS(1557), + [anon_sym__Complex] = ACTIONS(1557), + [anon_sym___complex] = ACTIONS(1557), + [anon_sym_IBOutlet] = ACTIONS(1557), + [anon_sym_IBInspectable] = ACTIONS(1557), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1557), + [anon_sym_signed] = ACTIONS(1557), + [anon_sym_unsigned] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [sym_primitive_type] = ACTIONS(1557), + [anon_sym_enum] = ACTIONS(1557), + [anon_sym_struct] = ACTIONS(1557), + [anon_sym_union] = ACTIONS(1557), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_else] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_case] = ACTIONS(1557), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_goto] = ACTIONS(1557), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_sizeof] = ACTIONS(1557), + [sym_number_literal] = ACTIONS(1559), + [anon_sym_L_SQUOTE] = ACTIONS(1559), + [anon_sym_u_SQUOTE] = ACTIONS(1559), + [anon_sym_U_SQUOTE] = ACTIONS(1559), + [anon_sym_u8_SQUOTE] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_L_DQUOTE] = ACTIONS(1559), + [anon_sym_u_DQUOTE] = ACTIONS(1559), + [anon_sym_U_DQUOTE] = ACTIONS(1559), + [anon_sym_u8_DQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [sym_true] = ACTIONS(1557), + [sym_false] = ACTIONS(1557), + [sym_null] = ACTIONS(1557), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1219), - [anon_sym_ATimport] = ACTIONS(1219), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1221), - [anon_sym_ATcompatibility_alias] = ACTIONS(1219), - [anon_sym_ATprotocol] = ACTIONS(1219), - [anon_sym_ATclass] = ACTIONS(1219), - [anon_sym_ATinterface] = ACTIONS(1219), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1221), - [sym_method_attribute_specifier] = ACTIONS(1221), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1221), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1221), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1221), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1221), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1221), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1221), - [anon_sym_NS_AVAILABLE] = ACTIONS(1221), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1221), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1221), - [anon_sym_API_AVAILABLE] = ACTIONS(1221), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1221), - [anon_sym_API_DEPRECATED] = ACTIONS(1221), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1221), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1221), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1221), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1221), - [anon_sym___deprecated_msg] = ACTIONS(1221), - [anon_sym___deprecated_enum_msg] = ACTIONS(1221), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1221), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1221), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1221), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1221), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1221), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1221), - [anon_sym_ATimplementation] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(1221), - [anon_sym___typeof] = ACTIONS(1221), - [anon_sym___typeof__] = ACTIONS(1221), - [sym_self] = ACTIONS(1221), - [sym_super] = ACTIONS(1221), - [sym_nil] = ACTIONS(1221), - [sym_id] = ACTIONS(1221), - [sym_instancetype] = ACTIONS(1221), - [sym_Class] = ACTIONS(1221), - [sym_SEL] = ACTIONS(1221), - [sym_IMP] = ACTIONS(1221), - [sym_BOOL] = ACTIONS(1221), - [sym_auto] = ACTIONS(1221), - [anon_sym_ATautoreleasepool] = ACTIONS(1219), - [anon_sym_ATsynchronized] = ACTIONS(1219), - [anon_sym_ATtry] = ACTIONS(1219), - [anon_sym_ATcatch] = ACTIONS(1219), - [anon_sym_ATfinally] = ACTIONS(1219), - [anon_sym_ATthrow] = ACTIONS(1219), - [anon_sym_ATselector] = ACTIONS(1219), - [anon_sym_ATencode] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(1221), - [sym_YES] = ACTIONS(1221), - [sym_NO] = ACTIONS(1221), - [anon_sym___builtin_available] = ACTIONS(1221), - [anon_sym_ATavailable] = ACTIONS(1219), - [anon_sym_va_arg] = ACTIONS(1221), + [anon_sym_POUNDimport] = ACTIONS(1559), + [anon_sym_ATimport] = ACTIONS(1559), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1557), + [anon_sym_ATcompatibility_alias] = ACTIONS(1559), + [anon_sym_ATprotocol] = ACTIONS(1559), + [anon_sym_ATclass] = ACTIONS(1559), + [anon_sym_ATinterface] = ACTIONS(1559), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1557), + [sym_method_attribute_specifier] = ACTIONS(1557), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1557), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1557), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1557), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1557), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1557), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1557), + [anon_sym_NS_AVAILABLE] = ACTIONS(1557), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1557), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1557), + [anon_sym_API_AVAILABLE] = ACTIONS(1557), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1557), + [anon_sym_API_DEPRECATED] = ACTIONS(1557), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1557), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1557), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1557), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1557), + [anon_sym___deprecated_msg] = ACTIONS(1557), + [anon_sym___deprecated_enum_msg] = ACTIONS(1557), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1557), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1557), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1557), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1557), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1557), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1557), + [anon_sym_ATimplementation] = ACTIONS(1559), + [anon_sym_NS_ENUM] = ACTIONS(1557), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1557), + [anon_sym_NS_OPTIONS] = ACTIONS(1557), + [anon_sym_typeof] = ACTIONS(1557), + [anon_sym___typeof] = ACTIONS(1557), + [anon_sym___typeof__] = ACTIONS(1557), + [sym_self] = ACTIONS(1557), + [sym_super] = ACTIONS(1557), + [sym_nil] = ACTIONS(1557), + [sym_id] = ACTIONS(1557), + [sym_instancetype] = ACTIONS(1557), + [sym_Class] = ACTIONS(1557), + [sym_SEL] = ACTIONS(1557), + [sym_IMP] = ACTIONS(1557), + [sym_BOOL] = ACTIONS(1557), + [sym_auto] = ACTIONS(1557), + [anon_sym_ATautoreleasepool] = ACTIONS(1559), + [anon_sym_ATsynchronized] = ACTIONS(1559), + [anon_sym_ATtry] = ACTIONS(1559), + [anon_sym_ATcatch] = ACTIONS(1559), + [anon_sym_ATfinally] = ACTIONS(1559), + [anon_sym_ATthrow] = ACTIONS(1559), + [anon_sym_ATselector] = ACTIONS(1559), + [anon_sym_ATencode] = ACTIONS(1559), + [anon_sym_AT] = ACTIONS(1557), + [sym_YES] = ACTIONS(1557), + [sym_NO] = ACTIONS(1557), + [anon_sym___builtin_available] = ACTIONS(1557), + [anon_sym_ATavailable] = ACTIONS(1559), + [anon_sym_va_arg] = ACTIONS(1557), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -64896,353 +61385,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [223] = { - [sym_identifier] = ACTIONS(1217), - [aux_sym_preproc_include_token1] = ACTIONS(1215), - [aux_sym_preproc_def_token1] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1217), - [aux_sym_preproc_if_token2] = ACTIONS(1217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), - [aux_sym_preproc_else_token1] = ACTIONS(1217), - [aux_sym_preproc_elif_token1] = ACTIONS(1217), - [anon_sym_LPAREN2] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1215), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1215), - [anon_sym_CARET] = ACTIONS(1215), - [anon_sym_AMP] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1215), - [anon_sym_typedef] = ACTIONS(1217), - [anon_sym_extern] = ACTIONS(1217), - [anon_sym___attribute] = ACTIONS(1217), - [anon_sym___attribute__] = ACTIONS(1217), - [anon_sym___declspec] = ACTIONS(1217), - [anon_sym___cdecl] = ACTIONS(1217), - [anon_sym___clrcall] = ACTIONS(1217), - [anon_sym___stdcall] = ACTIONS(1217), - [anon_sym___fastcall] = ACTIONS(1217), - [anon_sym___thiscall] = ACTIONS(1217), - [anon_sym___vectorcall] = ACTIONS(1217), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_LBRACK] = ACTIONS(1215), - [anon_sym_static] = ACTIONS(1217), - [anon_sym_auto] = ACTIONS(1217), - [anon_sym_register] = ACTIONS(1217), - [anon_sym_inline] = ACTIONS(1217), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1217), - [anon_sym_const] = ACTIONS(1217), - [anon_sym_volatile] = ACTIONS(1217), - [anon_sym_restrict] = ACTIONS(1217), - [anon_sym__Atomic] = ACTIONS(1217), - [anon_sym_in] = ACTIONS(1217), - [anon_sym_out] = ACTIONS(1217), - [anon_sym_inout] = ACTIONS(1217), - [anon_sym_bycopy] = ACTIONS(1217), - [anon_sym_byref] = ACTIONS(1217), - [anon_sym_oneway] = ACTIONS(1217), - [anon_sym__Nullable] = ACTIONS(1217), - [anon_sym__Nonnull] = ACTIONS(1217), - [anon_sym__Nullable_result] = ACTIONS(1217), - [anon_sym__Null_unspecified] = ACTIONS(1217), - [anon_sym___autoreleasing] = ACTIONS(1217), - [anon_sym___nullable] = ACTIONS(1217), - [anon_sym___nonnull] = ACTIONS(1217), - [anon_sym___strong] = ACTIONS(1217), - [anon_sym___weak] = ACTIONS(1217), - [anon_sym___bridge] = ACTIONS(1217), - [anon_sym___bridge_transfer] = ACTIONS(1217), - [anon_sym___bridge_retained] = ACTIONS(1217), - [anon_sym___unsafe_unretained] = ACTIONS(1217), - [anon_sym___block] = ACTIONS(1217), - [anon_sym___kindof] = ACTIONS(1217), - [anon_sym___unused] = ACTIONS(1217), - [anon_sym__Complex] = ACTIONS(1217), - [anon_sym___complex] = ACTIONS(1217), - [anon_sym_IBOutlet] = ACTIONS(1217), - [anon_sym_IBInspectable] = ACTIONS(1217), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1217), - [anon_sym_signed] = ACTIONS(1217), - [anon_sym_unsigned] = ACTIONS(1217), - [anon_sym_long] = ACTIONS(1217), - [anon_sym_short] = ACTIONS(1217), - [sym_primitive_type] = ACTIONS(1217), - [anon_sym_enum] = ACTIONS(1217), - [anon_sym_NS_ENUM] = ACTIONS(1217), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1217), - [anon_sym_NS_OPTIONS] = ACTIONS(1217), - [anon_sym_struct] = ACTIONS(1217), - [anon_sym_union] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1217), - [anon_sym_else] = ACTIONS(1217), - [anon_sym_switch] = ACTIONS(1217), - [anon_sym_case] = ACTIONS(1217), - [anon_sym_default] = ACTIONS(1217), - [anon_sym_while] = ACTIONS(1217), - [anon_sym_do] = ACTIONS(1217), - [anon_sym_for] = ACTIONS(1217), - [anon_sym_return] = ACTIONS(1217), - [anon_sym_break] = ACTIONS(1217), - [anon_sym_continue] = ACTIONS(1217), - [anon_sym_goto] = ACTIONS(1217), - [anon_sym_DASH_DASH] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1215), - [anon_sym_sizeof] = ACTIONS(1217), - [sym_number_literal] = ACTIONS(1215), - [anon_sym_L_SQUOTE] = ACTIONS(1215), - [anon_sym_u_SQUOTE] = ACTIONS(1215), - [anon_sym_U_SQUOTE] = ACTIONS(1215), - [anon_sym_u8_SQUOTE] = ACTIONS(1215), - [anon_sym_SQUOTE] = ACTIONS(1215), - [anon_sym_L_DQUOTE] = ACTIONS(1215), - [anon_sym_u_DQUOTE] = ACTIONS(1215), - [anon_sym_U_DQUOTE] = ACTIONS(1215), - [anon_sym_u8_DQUOTE] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1215), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_null] = ACTIONS(1217), + [203] = { + [ts_builtin_sym_end] = ACTIONS(1561), + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_include_token1] = ACTIONS(1561), + [aux_sym_preproc_def_token1] = ACTIONS(1561), + [anon_sym_RPAREN] = ACTIONS(1561), + [aux_sym_preproc_if_token1] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1563), + [anon_sym_LPAREN2] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_typedef] = ACTIONS(1563), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym___attribute] = ACTIONS(1563), + [anon_sym___attribute__] = ACTIONS(1563), + [anon_sym___declspec] = ACTIONS(1563), + [anon_sym___cdecl] = ACTIONS(1563), + [anon_sym___clrcall] = ACTIONS(1563), + [anon_sym___stdcall] = ACTIONS(1563), + [anon_sym___fastcall] = ACTIONS(1563), + [anon_sym___thiscall] = ACTIONS(1563), + [anon_sym___vectorcall] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_auto] = ACTIONS(1563), + [anon_sym_register] = ACTIONS(1563), + [anon_sym_inline] = ACTIONS(1563), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_volatile] = ACTIONS(1563), + [anon_sym_restrict] = ACTIONS(1563), + [anon_sym__Atomic] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [anon_sym_out] = ACTIONS(1563), + [anon_sym_inout] = ACTIONS(1563), + [anon_sym_bycopy] = ACTIONS(1563), + [anon_sym_byref] = ACTIONS(1563), + [anon_sym_oneway] = ACTIONS(1563), + [anon_sym__Nullable] = ACTIONS(1563), + [anon_sym__Nonnull] = ACTIONS(1563), + [anon_sym__Nullable_result] = ACTIONS(1563), + [anon_sym__Null_unspecified] = ACTIONS(1563), + [anon_sym___autoreleasing] = ACTIONS(1563), + [anon_sym___nullable] = ACTIONS(1563), + [anon_sym___nonnull] = ACTIONS(1563), + [anon_sym___strong] = ACTIONS(1563), + [anon_sym___weak] = ACTIONS(1563), + [anon_sym___bridge] = ACTIONS(1563), + [anon_sym___bridge_transfer] = ACTIONS(1563), + [anon_sym___bridge_retained] = ACTIONS(1563), + [anon_sym___unsafe_unretained] = ACTIONS(1563), + [anon_sym___block] = ACTIONS(1563), + [anon_sym___kindof] = ACTIONS(1563), + [anon_sym___unused] = ACTIONS(1563), + [anon_sym__Complex] = ACTIONS(1563), + [anon_sym___complex] = ACTIONS(1563), + [anon_sym_IBOutlet] = ACTIONS(1563), + [anon_sym_IBInspectable] = ACTIONS(1563), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1563), + [anon_sym_signed] = ACTIONS(1563), + [anon_sym_unsigned] = ACTIONS(1563), + [anon_sym_long] = ACTIONS(1563), + [anon_sym_short] = ACTIONS(1563), + [sym_primitive_type] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_else] = ACTIONS(1563), + [anon_sym_switch] = ACTIONS(1563), + [anon_sym_case] = ACTIONS(1563), + [anon_sym_default] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_goto] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1561), + [anon_sym_L_SQUOTE] = ACTIONS(1561), + [anon_sym_u_SQUOTE] = ACTIONS(1561), + [anon_sym_U_SQUOTE] = ACTIONS(1561), + [anon_sym_u8_SQUOTE] = ACTIONS(1561), + [anon_sym_SQUOTE] = ACTIONS(1561), + [anon_sym_L_DQUOTE] = ACTIONS(1561), + [anon_sym_u_DQUOTE] = ACTIONS(1561), + [anon_sym_U_DQUOTE] = ACTIONS(1561), + [anon_sym_u8_DQUOTE] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1561), + [sym_true] = ACTIONS(1563), + [sym_false] = ACTIONS(1563), + [sym_null] = ACTIONS(1563), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1215), - [anon_sym_ATimport] = ACTIONS(1215), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1217), - [anon_sym_ATcompatibility_alias] = ACTIONS(1215), - [anon_sym_ATprotocol] = ACTIONS(1215), - [anon_sym_ATclass] = ACTIONS(1215), - [anon_sym_ATinterface] = ACTIONS(1215), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1217), - [sym_method_attribute_specifier] = ACTIONS(1217), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1217), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1217), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1217), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1217), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1217), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1217), - [anon_sym_NS_AVAILABLE] = ACTIONS(1217), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1217), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1217), - [anon_sym_API_AVAILABLE] = ACTIONS(1217), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1217), - [anon_sym_API_DEPRECATED] = ACTIONS(1217), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1217), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1217), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1217), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1217), - [anon_sym___deprecated_msg] = ACTIONS(1217), - [anon_sym___deprecated_enum_msg] = ACTIONS(1217), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1217), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1217), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1217), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1217), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1217), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1217), - [anon_sym_ATimplementation] = ACTIONS(1215), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym___typeof] = ACTIONS(1217), - [anon_sym___typeof__] = ACTIONS(1217), - [sym_self] = ACTIONS(1217), - [sym_super] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [sym_id] = ACTIONS(1217), - [sym_instancetype] = ACTIONS(1217), - [sym_Class] = ACTIONS(1217), - [sym_SEL] = ACTIONS(1217), - [sym_IMP] = ACTIONS(1217), - [sym_BOOL] = ACTIONS(1217), - [sym_auto] = ACTIONS(1217), - [anon_sym_ATautoreleasepool] = ACTIONS(1215), - [anon_sym_ATsynchronized] = ACTIONS(1215), - [anon_sym_ATtry] = ACTIONS(1215), - [anon_sym_ATcatch] = ACTIONS(1215), - [anon_sym_ATfinally] = ACTIONS(1215), - [anon_sym_ATthrow] = ACTIONS(1215), - [anon_sym_ATselector] = ACTIONS(1215), - [anon_sym_ATencode] = ACTIONS(1215), - [anon_sym_AT] = ACTIONS(1217), - [sym_YES] = ACTIONS(1217), - [sym_NO] = ACTIONS(1217), - [anon_sym___builtin_available] = ACTIONS(1217), - [anon_sym_ATavailable] = ACTIONS(1215), - [anon_sym_va_arg] = ACTIONS(1217), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [224] = { - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1255), - [aux_sym_preproc_include_token1] = ACTIONS(1257), - [aux_sym_preproc_def_token1] = ACTIONS(1257), - [anon_sym_RPAREN] = ACTIONS(1257), - [aux_sym_preproc_if_token1] = ACTIONS(1255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), - [anon_sym_LPAREN2] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_typedef] = ACTIONS(1255), - [anon_sym_extern] = ACTIONS(1255), - [anon_sym___attribute] = ACTIONS(1255), - [anon_sym___attribute__] = ACTIONS(1255), - [anon_sym___declspec] = ACTIONS(1255), - [anon_sym___cdecl] = ACTIONS(1255), - [anon_sym___clrcall] = ACTIONS(1255), - [anon_sym___stdcall] = ACTIONS(1255), - [anon_sym___fastcall] = ACTIONS(1255), - [anon_sym___thiscall] = ACTIONS(1255), - [anon_sym___vectorcall] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_static] = ACTIONS(1255), - [anon_sym_auto] = ACTIONS(1255), - [anon_sym_register] = ACTIONS(1255), - [anon_sym_inline] = ACTIONS(1255), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1255), - [anon_sym_const] = ACTIONS(1255), - [anon_sym_volatile] = ACTIONS(1255), - [anon_sym_restrict] = ACTIONS(1255), - [anon_sym__Atomic] = ACTIONS(1255), - [anon_sym_in] = ACTIONS(1255), - [anon_sym_out] = ACTIONS(1255), - [anon_sym_inout] = ACTIONS(1255), - [anon_sym_bycopy] = ACTIONS(1255), - [anon_sym_byref] = ACTIONS(1255), - [anon_sym_oneway] = ACTIONS(1255), - [anon_sym__Nullable] = ACTIONS(1255), - [anon_sym__Nonnull] = ACTIONS(1255), - [anon_sym__Nullable_result] = ACTIONS(1255), - [anon_sym__Null_unspecified] = ACTIONS(1255), - [anon_sym___autoreleasing] = ACTIONS(1255), - [anon_sym___nullable] = ACTIONS(1255), - [anon_sym___nonnull] = ACTIONS(1255), - [anon_sym___strong] = ACTIONS(1255), - [anon_sym___weak] = ACTIONS(1255), - [anon_sym___bridge] = ACTIONS(1255), - [anon_sym___bridge_transfer] = ACTIONS(1255), - [anon_sym___bridge_retained] = ACTIONS(1255), - [anon_sym___unsafe_unretained] = ACTIONS(1255), - [anon_sym___block] = ACTIONS(1255), - [anon_sym___kindof] = ACTIONS(1255), - [anon_sym___unused] = ACTIONS(1255), - [anon_sym__Complex] = ACTIONS(1255), - [anon_sym___complex] = ACTIONS(1255), - [anon_sym_IBOutlet] = ACTIONS(1255), - [anon_sym_IBInspectable] = ACTIONS(1255), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1255), - [anon_sym_signed] = ACTIONS(1255), - [anon_sym_unsigned] = ACTIONS(1255), - [anon_sym_long] = ACTIONS(1255), - [anon_sym_short] = ACTIONS(1255), - [sym_primitive_type] = ACTIONS(1255), - [anon_sym_enum] = ACTIONS(1255), - [anon_sym_NS_ENUM] = ACTIONS(1255), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1255), - [anon_sym_NS_OPTIONS] = ACTIONS(1255), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_union] = ACTIONS(1255), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_switch] = ACTIONS(1255), - [anon_sym_case] = ACTIONS(1255), - [anon_sym_default] = ACTIONS(1255), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_do] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_return] = ACTIONS(1255), - [anon_sym_break] = ACTIONS(1255), - [anon_sym_continue] = ACTIONS(1255), - [anon_sym_goto] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_number_literal] = ACTIONS(1257), - [anon_sym_L_SQUOTE] = ACTIONS(1257), - [anon_sym_u_SQUOTE] = ACTIONS(1257), - [anon_sym_U_SQUOTE] = ACTIONS(1257), - [anon_sym_u8_SQUOTE] = ACTIONS(1257), - [anon_sym_SQUOTE] = ACTIONS(1257), - [anon_sym_L_DQUOTE] = ACTIONS(1257), - [anon_sym_u_DQUOTE] = ACTIONS(1257), - [anon_sym_U_DQUOTE] = ACTIONS(1257), - [anon_sym_u8_DQUOTE] = ACTIONS(1257), - [anon_sym_DQUOTE] = ACTIONS(1257), - [sym_true] = ACTIONS(1255), - [sym_false] = ACTIONS(1255), - [sym_null] = ACTIONS(1255), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1257), - [anon_sym_ATimport] = ACTIONS(1257), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1255), - [anon_sym_ATcompatibility_alias] = ACTIONS(1257), - [anon_sym_ATprotocol] = ACTIONS(1257), - [anon_sym_ATclass] = ACTIONS(1257), - [anon_sym_ATinterface] = ACTIONS(1257), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1255), - [sym_method_attribute_specifier] = ACTIONS(1255), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1255), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1255), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1255), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1255), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1255), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1255), - [anon_sym_NS_AVAILABLE] = ACTIONS(1255), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1255), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1255), - [anon_sym_API_AVAILABLE] = ACTIONS(1255), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1255), - [anon_sym_API_DEPRECATED] = ACTIONS(1255), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1255), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1255), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1255), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1255), - [anon_sym___deprecated_msg] = ACTIONS(1255), - [anon_sym___deprecated_enum_msg] = ACTIONS(1255), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1255), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1255), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1255), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1255), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1255), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1255), - [anon_sym_ATimplementation] = ACTIONS(1257), - [anon_sym_typeof] = ACTIONS(1255), - [anon_sym___typeof] = ACTIONS(1255), - [anon_sym___typeof__] = ACTIONS(1255), - [sym_self] = ACTIONS(1255), - [sym_super] = ACTIONS(1255), - [sym_nil] = ACTIONS(1255), - [sym_id] = ACTIONS(1255), - [sym_instancetype] = ACTIONS(1255), - [sym_Class] = ACTIONS(1255), - [sym_SEL] = ACTIONS(1255), - [sym_IMP] = ACTIONS(1255), - [sym_BOOL] = ACTIONS(1255), - [sym_auto] = ACTIONS(1255), - [anon_sym_ATautoreleasepool] = ACTIONS(1257), - [anon_sym_ATsynchronized] = ACTIONS(1257), - [anon_sym_ATtry] = ACTIONS(1257), - [anon_sym_ATcatch] = ACTIONS(1257), - [anon_sym_ATfinally] = ACTIONS(1257), - [anon_sym_ATthrow] = ACTIONS(1257), - [anon_sym_ATselector] = ACTIONS(1257), - [anon_sym_ATencode] = ACTIONS(1257), - [anon_sym_AT] = ACTIONS(1255), - [sym_YES] = ACTIONS(1255), - [sym_NO] = ACTIONS(1255), - [anon_sym___builtin_available] = ACTIONS(1255), - [anon_sym_ATavailable] = ACTIONS(1257), - [anon_sym_va_arg] = ACTIONS(1255), + [anon_sym_POUNDimport] = ACTIONS(1561), + [anon_sym_ATimport] = ACTIONS(1561), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1563), + [anon_sym_ATcompatibility_alias] = ACTIONS(1561), + [anon_sym_ATprotocol] = ACTIONS(1561), + [anon_sym_ATclass] = ACTIONS(1561), + [anon_sym_ATinterface] = ACTIONS(1561), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1563), + [sym_method_attribute_specifier] = ACTIONS(1563), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1563), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE] = ACTIONS(1563), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_API_AVAILABLE] = ACTIONS(1563), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_API_DEPRECATED] = ACTIONS(1563), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1563), + [anon_sym___deprecated_msg] = ACTIONS(1563), + [anon_sym___deprecated_enum_msg] = ACTIONS(1563), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1563), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1563), + [anon_sym_ATimplementation] = ACTIONS(1561), + [anon_sym_NS_ENUM] = ACTIONS(1563), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1563), + [anon_sym_NS_OPTIONS] = ACTIONS(1563), + [anon_sym_typeof] = ACTIONS(1563), + [anon_sym___typeof] = ACTIONS(1563), + [anon_sym___typeof__] = ACTIONS(1563), + [sym_self] = ACTIONS(1563), + [sym_super] = ACTIONS(1563), + [sym_nil] = ACTIONS(1563), + [sym_id] = ACTIONS(1563), + [sym_instancetype] = ACTIONS(1563), + [sym_Class] = ACTIONS(1563), + [sym_SEL] = ACTIONS(1563), + [sym_IMP] = ACTIONS(1563), + [sym_BOOL] = ACTIONS(1563), + [sym_auto] = ACTIONS(1563), + [anon_sym_ATautoreleasepool] = ACTIONS(1561), + [anon_sym_ATsynchronized] = ACTIONS(1561), + [anon_sym_ATtry] = ACTIONS(1561), + [anon_sym_ATcatch] = ACTIONS(1561), + [anon_sym_ATfinally] = ACTIONS(1561), + [anon_sym_ATthrow] = ACTIONS(1561), + [anon_sym_ATselector] = ACTIONS(1561), + [anon_sym_ATencode] = ACTIONS(1561), + [anon_sym_AT] = ACTIONS(1563), + [sym_YES] = ACTIONS(1563), + [sym_NO] = ACTIONS(1563), + [anon_sym___builtin_available] = ACTIONS(1563), + [anon_sym_ATavailable] = ACTIONS(1561), + [anon_sym_va_arg] = ACTIONS(1563), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -65250,192 +61562,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [225] = { - [sym_identifier] = ACTIONS(1205), - [aux_sym_preproc_include_token1] = ACTIONS(1203), - [aux_sym_preproc_def_token1] = ACTIONS(1203), - [aux_sym_preproc_if_token1] = ACTIONS(1205), - [aux_sym_preproc_if_token2] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1205), - [aux_sym_preproc_else_token1] = ACTIONS(1205), - [aux_sym_preproc_elif_token1] = ACTIONS(1205), - [anon_sym_LPAREN2] = ACTIONS(1203), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_TILDE] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_CARET] = ACTIONS(1203), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_SEMI] = ACTIONS(1203), - [anon_sym_typedef] = ACTIONS(1205), - [anon_sym_extern] = ACTIONS(1205), - [anon_sym___attribute] = ACTIONS(1205), - [anon_sym___attribute__] = ACTIONS(1205), - [anon_sym___declspec] = ACTIONS(1205), - [anon_sym___cdecl] = ACTIONS(1205), - [anon_sym___clrcall] = ACTIONS(1205), - [anon_sym___stdcall] = ACTIONS(1205), - [anon_sym___fastcall] = ACTIONS(1205), - [anon_sym___thiscall] = ACTIONS(1205), - [anon_sym___vectorcall] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_LBRACK] = ACTIONS(1203), - [anon_sym_static] = ACTIONS(1205), - [anon_sym_auto] = ACTIONS(1205), - [anon_sym_register] = ACTIONS(1205), - [anon_sym_inline] = ACTIONS(1205), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1205), - [anon_sym_const] = ACTIONS(1205), - [anon_sym_volatile] = ACTIONS(1205), - [anon_sym_restrict] = ACTIONS(1205), - [anon_sym__Atomic] = ACTIONS(1205), - [anon_sym_in] = ACTIONS(1205), - [anon_sym_out] = ACTIONS(1205), - [anon_sym_inout] = ACTIONS(1205), - [anon_sym_bycopy] = ACTIONS(1205), - [anon_sym_byref] = ACTIONS(1205), - [anon_sym_oneway] = ACTIONS(1205), - [anon_sym__Nullable] = ACTIONS(1205), - [anon_sym__Nonnull] = ACTIONS(1205), - [anon_sym__Nullable_result] = ACTIONS(1205), - [anon_sym__Null_unspecified] = ACTIONS(1205), - [anon_sym___autoreleasing] = ACTIONS(1205), - [anon_sym___nullable] = ACTIONS(1205), - [anon_sym___nonnull] = ACTIONS(1205), - [anon_sym___strong] = ACTIONS(1205), - [anon_sym___weak] = ACTIONS(1205), - [anon_sym___bridge] = ACTIONS(1205), - [anon_sym___bridge_transfer] = ACTIONS(1205), - [anon_sym___bridge_retained] = ACTIONS(1205), - [anon_sym___unsafe_unretained] = ACTIONS(1205), - [anon_sym___block] = ACTIONS(1205), - [anon_sym___kindof] = ACTIONS(1205), - [anon_sym___unused] = ACTIONS(1205), - [anon_sym__Complex] = ACTIONS(1205), - [anon_sym___complex] = ACTIONS(1205), - [anon_sym_IBOutlet] = ACTIONS(1205), - [anon_sym_IBInspectable] = ACTIONS(1205), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1205), - [anon_sym_signed] = ACTIONS(1205), - [anon_sym_unsigned] = ACTIONS(1205), - [anon_sym_long] = ACTIONS(1205), - [anon_sym_short] = ACTIONS(1205), - [sym_primitive_type] = ACTIONS(1205), - [anon_sym_enum] = ACTIONS(1205), - [anon_sym_NS_ENUM] = ACTIONS(1205), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1205), - [anon_sym_NS_OPTIONS] = ACTIONS(1205), - [anon_sym_struct] = ACTIONS(1205), - [anon_sym_union] = ACTIONS(1205), - [anon_sym_if] = ACTIONS(1205), - [anon_sym_else] = ACTIONS(1205), - [anon_sym_switch] = ACTIONS(1205), - [anon_sym_case] = ACTIONS(1205), - [anon_sym_default] = ACTIONS(1205), - [anon_sym_while] = ACTIONS(1205), - [anon_sym_do] = ACTIONS(1205), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1205), - [anon_sym_break] = ACTIONS(1205), - [anon_sym_continue] = ACTIONS(1205), - [anon_sym_goto] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1203), - [anon_sym_sizeof] = ACTIONS(1205), - [sym_number_literal] = ACTIONS(1203), - [anon_sym_L_SQUOTE] = ACTIONS(1203), - [anon_sym_u_SQUOTE] = ACTIONS(1203), - [anon_sym_U_SQUOTE] = ACTIONS(1203), - [anon_sym_u8_SQUOTE] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1203), - [anon_sym_L_DQUOTE] = ACTIONS(1203), - [anon_sym_u_DQUOTE] = ACTIONS(1203), - [anon_sym_U_DQUOTE] = ACTIONS(1203), - [anon_sym_u8_DQUOTE] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [sym_true] = ACTIONS(1205), - [sym_false] = ACTIONS(1205), - [sym_null] = ACTIONS(1205), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1203), - [anon_sym_ATimport] = ACTIONS(1203), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1205), - [anon_sym_ATcompatibility_alias] = ACTIONS(1203), - [anon_sym_ATprotocol] = ACTIONS(1203), - [anon_sym_ATclass] = ACTIONS(1203), - [anon_sym_ATinterface] = ACTIONS(1203), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1205), - [sym_method_attribute_specifier] = ACTIONS(1205), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1205), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1205), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1205), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1205), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1205), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1205), - [anon_sym_NS_AVAILABLE] = ACTIONS(1205), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1205), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1205), - [anon_sym_API_AVAILABLE] = ACTIONS(1205), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1205), - [anon_sym_API_DEPRECATED] = ACTIONS(1205), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1205), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1205), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1205), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1205), - [anon_sym___deprecated_msg] = ACTIONS(1205), - [anon_sym___deprecated_enum_msg] = ACTIONS(1205), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1205), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1205), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1205), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1205), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1205), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1205), - [anon_sym_ATimplementation] = ACTIONS(1203), - [anon_sym_typeof] = ACTIONS(1205), - [anon_sym___typeof] = ACTIONS(1205), - [anon_sym___typeof__] = ACTIONS(1205), - [sym_self] = ACTIONS(1205), - [sym_super] = ACTIONS(1205), - [sym_nil] = ACTIONS(1205), - [sym_id] = ACTIONS(1205), - [sym_instancetype] = ACTIONS(1205), - [sym_Class] = ACTIONS(1205), - [sym_SEL] = ACTIONS(1205), - [sym_IMP] = ACTIONS(1205), - [sym_BOOL] = ACTIONS(1205), - [sym_auto] = ACTIONS(1205), - [anon_sym_ATautoreleasepool] = ACTIONS(1203), - [anon_sym_ATsynchronized] = ACTIONS(1203), - [anon_sym_ATtry] = ACTIONS(1203), - [anon_sym_ATcatch] = ACTIONS(1203), - [anon_sym_ATfinally] = ACTIONS(1203), - [anon_sym_ATthrow] = ACTIONS(1203), - [anon_sym_ATselector] = ACTIONS(1203), - [anon_sym_ATencode] = ACTIONS(1203), - [anon_sym_AT] = ACTIONS(1205), - [sym_YES] = ACTIONS(1205), - [sym_NO] = ACTIONS(1205), - [anon_sym___builtin_available] = ACTIONS(1205), - [anon_sym_ATavailable] = ACTIONS(1203), - [anon_sym_va_arg] = ACTIONS(1205), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [226] = { - [ts_builtin_sym_end] = ACTIONS(1567), + [204] = { [sym_identifier] = ACTIONS(1565), [aux_sym_preproc_include_token1] = ACTIONS(1567), [aux_sym_preproc_def_token1] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(1567), [aux_sym_preproc_if_token1] = ACTIONS(1565), + [aux_sym_preproc_if_token2] = ACTIONS(1565), [aux_sym_preproc_ifdef_token1] = ACTIONS(1565), [aux_sym_preproc_ifdef_token2] = ACTIONS(1565), + [aux_sym_preproc_else_token1] = ACTIONS(1565), + [aux_sym_preproc_elif_token1] = ACTIONS(1565), [anon_sym_LPAREN2] = ACTIONS(1567), [anon_sym_BANG] = ACTIONS(1567), [anon_sym_TILDE] = ACTIONS(1567), @@ -65457,7 +61593,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1565), [anon_sym___vectorcall] = ACTIONS(1565), [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_RBRACE] = ACTIONS(1567), [anon_sym_LBRACK] = ACTIONS(1567), [anon_sym_static] = ACTIONS(1565), [anon_sym_auto] = ACTIONS(1565), @@ -65501,9 +61636,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1565), [sym_primitive_type] = ACTIONS(1565), [anon_sym_enum] = ACTIONS(1565), - [anon_sym_NS_ENUM] = ACTIONS(1565), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1565), - [anon_sym_NS_OPTIONS] = ACTIONS(1565), [anon_sym_struct] = ACTIONS(1565), [anon_sym_union] = ACTIONS(1565), [anon_sym_if] = ACTIONS(1565), @@ -65570,6 +61702,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1565), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1565), [anon_sym_ATimplementation] = ACTIONS(1567), + [anon_sym_NS_ENUM] = ACTIONS(1565), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1565), + [anon_sym_NS_OPTIONS] = ACTIONS(1565), [anon_sym_typeof] = ACTIONS(1565), [anon_sym___typeof] = ACTIONS(1565), [anon_sym___typeof__] = ACTIONS(1565), @@ -65600,180 +61735,888 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [205] = { + [sym_identifier] = ACTIONS(1553), + [aux_sym_preproc_include_token1] = ACTIONS(1551), + [aux_sym_preproc_def_token1] = ACTIONS(1551), + [aux_sym_preproc_if_token1] = ACTIONS(1553), + [aux_sym_preproc_if_token2] = ACTIONS(1553), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1553), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1553), + [aux_sym_preproc_else_token1] = ACTIONS(1553), + [aux_sym_preproc_elif_token1] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(1551), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_typedef] = ACTIONS(1553), + [anon_sym_extern] = ACTIONS(1553), + [anon_sym___attribute] = ACTIONS(1553), + [anon_sym___attribute__] = ACTIONS(1553), + [anon_sym___declspec] = ACTIONS(1553), + [anon_sym___cdecl] = ACTIONS(1553), + [anon_sym___clrcall] = ACTIONS(1553), + [anon_sym___stdcall] = ACTIONS(1553), + [anon_sym___fastcall] = ACTIONS(1553), + [anon_sym___thiscall] = ACTIONS(1553), + [anon_sym___vectorcall] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_auto] = ACTIONS(1553), + [anon_sym_register] = ACTIONS(1553), + [anon_sym_inline] = ACTIONS(1553), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_volatile] = ACTIONS(1553), + [anon_sym_restrict] = ACTIONS(1553), + [anon_sym__Atomic] = ACTIONS(1553), + [anon_sym_in] = ACTIONS(1553), + [anon_sym_out] = ACTIONS(1553), + [anon_sym_inout] = ACTIONS(1553), + [anon_sym_bycopy] = ACTIONS(1553), + [anon_sym_byref] = ACTIONS(1553), + [anon_sym_oneway] = ACTIONS(1553), + [anon_sym__Nullable] = ACTIONS(1553), + [anon_sym__Nonnull] = ACTIONS(1553), + [anon_sym__Nullable_result] = ACTIONS(1553), + [anon_sym__Null_unspecified] = ACTIONS(1553), + [anon_sym___autoreleasing] = ACTIONS(1553), + [anon_sym___nullable] = ACTIONS(1553), + [anon_sym___nonnull] = ACTIONS(1553), + [anon_sym___strong] = ACTIONS(1553), + [anon_sym___weak] = ACTIONS(1553), + [anon_sym___bridge] = ACTIONS(1553), + [anon_sym___bridge_transfer] = ACTIONS(1553), + [anon_sym___bridge_retained] = ACTIONS(1553), + [anon_sym___unsafe_unretained] = ACTIONS(1553), + [anon_sym___block] = ACTIONS(1553), + [anon_sym___kindof] = ACTIONS(1553), + [anon_sym___unused] = ACTIONS(1553), + [anon_sym__Complex] = ACTIONS(1553), + [anon_sym___complex] = ACTIONS(1553), + [anon_sym_IBOutlet] = ACTIONS(1553), + [anon_sym_IBInspectable] = ACTIONS(1553), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1553), + [anon_sym_signed] = ACTIONS(1553), + [anon_sym_unsigned] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [sym_primitive_type] = ACTIONS(1553), + [anon_sym_enum] = ACTIONS(1553), + [anon_sym_struct] = ACTIONS(1553), + [anon_sym_union] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_else] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_goto] = ACTIONS(1553), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_sizeof] = ACTIONS(1553), + [sym_number_literal] = ACTIONS(1551), + [anon_sym_L_SQUOTE] = ACTIONS(1551), + [anon_sym_u_SQUOTE] = ACTIONS(1551), + [anon_sym_U_SQUOTE] = ACTIONS(1551), + [anon_sym_u8_SQUOTE] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_L_DQUOTE] = ACTIONS(1551), + [anon_sym_u_DQUOTE] = ACTIONS(1551), + [anon_sym_U_DQUOTE] = ACTIONS(1551), + [anon_sym_u8_DQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym_true] = ACTIONS(1553), + [sym_false] = ACTIONS(1553), + [sym_null] = ACTIONS(1553), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1551), + [anon_sym_ATimport] = ACTIONS(1551), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1553), + [anon_sym_ATcompatibility_alias] = ACTIONS(1551), + [anon_sym_ATprotocol] = ACTIONS(1551), + [anon_sym_ATclass] = ACTIONS(1551), + [anon_sym_ATinterface] = ACTIONS(1551), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1553), + [sym_method_attribute_specifier] = ACTIONS(1553), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1553), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1553), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1553), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1553), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1553), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1553), + [anon_sym_NS_AVAILABLE] = ACTIONS(1553), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1553), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1553), + [anon_sym_API_AVAILABLE] = ACTIONS(1553), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1553), + [anon_sym_API_DEPRECATED] = ACTIONS(1553), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1553), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1553), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1553), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1553), + [anon_sym___deprecated_msg] = ACTIONS(1553), + [anon_sym___deprecated_enum_msg] = ACTIONS(1553), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1553), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1553), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1553), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1553), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1553), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1553), + [anon_sym_ATimplementation] = ACTIONS(1551), + [anon_sym_NS_ENUM] = ACTIONS(1553), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1553), + [anon_sym_NS_OPTIONS] = ACTIONS(1553), + [anon_sym_typeof] = ACTIONS(1553), + [anon_sym___typeof] = ACTIONS(1553), + [anon_sym___typeof__] = ACTIONS(1553), + [sym_self] = ACTIONS(1553), + [sym_super] = ACTIONS(1553), + [sym_nil] = ACTIONS(1553), + [sym_id] = ACTIONS(1553), + [sym_instancetype] = ACTIONS(1553), + [sym_Class] = ACTIONS(1553), + [sym_SEL] = ACTIONS(1553), + [sym_IMP] = ACTIONS(1553), + [sym_BOOL] = ACTIONS(1553), + [sym_auto] = ACTIONS(1553), + [anon_sym_ATautoreleasepool] = ACTIONS(1551), + [anon_sym_ATsynchronized] = ACTIONS(1551), + [anon_sym_ATtry] = ACTIONS(1551), + [anon_sym_ATcatch] = ACTIONS(1551), + [anon_sym_ATfinally] = ACTIONS(1551), + [anon_sym_ATthrow] = ACTIONS(1551), + [anon_sym_ATselector] = ACTIONS(1551), + [anon_sym_ATencode] = ACTIONS(1551), + [anon_sym_AT] = ACTIONS(1553), + [sym_YES] = ACTIONS(1553), + [sym_NO] = ACTIONS(1553), + [anon_sym___builtin_available] = ACTIONS(1553), + [anon_sym_ATavailable] = ACTIONS(1551), + [anon_sym_va_arg] = ACTIONS(1553), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [206] = { + [sym_identifier] = ACTIONS(1549), + [aux_sym_preproc_include_token1] = ACTIONS(1547), + [aux_sym_preproc_def_token1] = ACTIONS(1547), + [aux_sym_preproc_if_token1] = ACTIONS(1549), + [aux_sym_preproc_if_token2] = ACTIONS(1549), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1549), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1549), + [aux_sym_preproc_else_token1] = ACTIONS(1549), + [aux_sym_preproc_elif_token1] = ACTIONS(1549), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_CARET] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_typedef] = ACTIONS(1549), + [anon_sym_extern] = ACTIONS(1549), + [anon_sym___attribute] = ACTIONS(1549), + [anon_sym___attribute__] = ACTIONS(1549), + [anon_sym___declspec] = ACTIONS(1549), + [anon_sym___cdecl] = ACTIONS(1549), + [anon_sym___clrcall] = ACTIONS(1549), + [anon_sym___stdcall] = ACTIONS(1549), + [anon_sym___fastcall] = ACTIONS(1549), + [anon_sym___thiscall] = ACTIONS(1549), + [anon_sym___vectorcall] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_auto] = ACTIONS(1549), + [anon_sym_register] = ACTIONS(1549), + [anon_sym_inline] = ACTIONS(1549), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_volatile] = ACTIONS(1549), + [anon_sym_restrict] = ACTIONS(1549), + [anon_sym__Atomic] = ACTIONS(1549), + [anon_sym_in] = ACTIONS(1549), + [anon_sym_out] = ACTIONS(1549), + [anon_sym_inout] = ACTIONS(1549), + [anon_sym_bycopy] = ACTIONS(1549), + [anon_sym_byref] = ACTIONS(1549), + [anon_sym_oneway] = ACTIONS(1549), + [anon_sym__Nullable] = ACTIONS(1549), + [anon_sym__Nonnull] = ACTIONS(1549), + [anon_sym__Nullable_result] = ACTIONS(1549), + [anon_sym__Null_unspecified] = ACTIONS(1549), + [anon_sym___autoreleasing] = ACTIONS(1549), + [anon_sym___nullable] = ACTIONS(1549), + [anon_sym___nonnull] = ACTIONS(1549), + [anon_sym___strong] = ACTIONS(1549), + [anon_sym___weak] = ACTIONS(1549), + [anon_sym___bridge] = ACTIONS(1549), + [anon_sym___bridge_transfer] = ACTIONS(1549), + [anon_sym___bridge_retained] = ACTIONS(1549), + [anon_sym___unsafe_unretained] = ACTIONS(1549), + [anon_sym___block] = ACTIONS(1549), + [anon_sym___kindof] = ACTIONS(1549), + [anon_sym___unused] = ACTIONS(1549), + [anon_sym__Complex] = ACTIONS(1549), + [anon_sym___complex] = ACTIONS(1549), + [anon_sym_IBOutlet] = ACTIONS(1549), + [anon_sym_IBInspectable] = ACTIONS(1549), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1549), + [anon_sym_signed] = ACTIONS(1549), + [anon_sym_unsigned] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [sym_primitive_type] = ACTIONS(1549), + [anon_sym_enum] = ACTIONS(1549), + [anon_sym_struct] = ACTIONS(1549), + [anon_sym_union] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_else] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_goto] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(1549), + [sym_number_literal] = ACTIONS(1547), + [anon_sym_L_SQUOTE] = ACTIONS(1547), + [anon_sym_u_SQUOTE] = ACTIONS(1547), + [anon_sym_U_SQUOTE] = ACTIONS(1547), + [anon_sym_u8_SQUOTE] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_L_DQUOTE] = ACTIONS(1547), + [anon_sym_u_DQUOTE] = ACTIONS(1547), + [anon_sym_U_DQUOTE] = ACTIONS(1547), + [anon_sym_u8_DQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [sym_null] = ACTIONS(1549), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1547), + [anon_sym_ATimport] = ACTIONS(1547), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1549), + [anon_sym_ATcompatibility_alias] = ACTIONS(1547), + [anon_sym_ATprotocol] = ACTIONS(1547), + [anon_sym_ATclass] = ACTIONS(1547), + [anon_sym_ATinterface] = ACTIONS(1547), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1549), + [sym_method_attribute_specifier] = ACTIONS(1549), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1549), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1549), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1549), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1549), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1549), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1549), + [anon_sym_NS_AVAILABLE] = ACTIONS(1549), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1549), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1549), + [anon_sym_API_AVAILABLE] = ACTIONS(1549), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1549), + [anon_sym_API_DEPRECATED] = ACTIONS(1549), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1549), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1549), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1549), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1549), + [anon_sym___deprecated_msg] = ACTIONS(1549), + [anon_sym___deprecated_enum_msg] = ACTIONS(1549), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1549), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1549), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1549), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1549), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1549), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1549), + [anon_sym_ATimplementation] = ACTIONS(1547), + [anon_sym_NS_ENUM] = ACTIONS(1549), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1549), + [anon_sym_NS_OPTIONS] = ACTIONS(1549), + [anon_sym_typeof] = ACTIONS(1549), + [anon_sym___typeof] = ACTIONS(1549), + [anon_sym___typeof__] = ACTIONS(1549), + [sym_self] = ACTIONS(1549), + [sym_super] = ACTIONS(1549), + [sym_nil] = ACTIONS(1549), + [sym_id] = ACTIONS(1549), + [sym_instancetype] = ACTIONS(1549), + [sym_Class] = ACTIONS(1549), + [sym_SEL] = ACTIONS(1549), + [sym_IMP] = ACTIONS(1549), + [sym_BOOL] = ACTIONS(1549), + [sym_auto] = ACTIONS(1549), + [anon_sym_ATautoreleasepool] = ACTIONS(1547), + [anon_sym_ATsynchronized] = ACTIONS(1547), + [anon_sym_ATtry] = ACTIONS(1547), + [anon_sym_ATcatch] = ACTIONS(1547), + [anon_sym_ATfinally] = ACTIONS(1547), + [anon_sym_ATthrow] = ACTIONS(1547), + [anon_sym_ATselector] = ACTIONS(1547), + [anon_sym_ATencode] = ACTIONS(1547), + [anon_sym_AT] = ACTIONS(1549), + [sym_YES] = ACTIONS(1549), + [sym_NO] = ACTIONS(1549), + [anon_sym___builtin_available] = ACTIONS(1549), + [anon_sym_ATavailable] = ACTIONS(1547), + [anon_sym_va_arg] = ACTIONS(1549), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [207] = { + [ts_builtin_sym_end] = ACTIONS(1413), + [sym_identifier] = ACTIONS(1411), + [aux_sym_preproc_include_token1] = ACTIONS(1413), + [aux_sym_preproc_def_token1] = ACTIONS(1413), + [anon_sym_RPAREN] = ACTIONS(1413), + [aux_sym_preproc_if_token1] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1411), + [anon_sym_LPAREN2] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_CARET] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym_typedef] = ACTIONS(1411), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym___attribute] = ACTIONS(1411), + [anon_sym___attribute__] = ACTIONS(1411), + [anon_sym___declspec] = ACTIONS(1411), + [anon_sym___cdecl] = ACTIONS(1411), + [anon_sym___clrcall] = ACTIONS(1411), + [anon_sym___stdcall] = ACTIONS(1411), + [anon_sym___fastcall] = ACTIONS(1411), + [anon_sym___thiscall] = ACTIONS(1411), + [anon_sym___vectorcall] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_auto] = ACTIONS(1411), + [anon_sym_register] = ACTIONS(1411), + [anon_sym_inline] = ACTIONS(1411), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_volatile] = ACTIONS(1411), + [anon_sym_restrict] = ACTIONS(1411), + [anon_sym__Atomic] = ACTIONS(1411), + [anon_sym_in] = ACTIONS(1411), + [anon_sym_out] = ACTIONS(1411), + [anon_sym_inout] = ACTIONS(1411), + [anon_sym_bycopy] = ACTIONS(1411), + [anon_sym_byref] = ACTIONS(1411), + [anon_sym_oneway] = ACTIONS(1411), + [anon_sym__Nullable] = ACTIONS(1411), + [anon_sym__Nonnull] = ACTIONS(1411), + [anon_sym__Nullable_result] = ACTIONS(1411), + [anon_sym__Null_unspecified] = ACTIONS(1411), + [anon_sym___autoreleasing] = ACTIONS(1411), + [anon_sym___nullable] = ACTIONS(1411), + [anon_sym___nonnull] = ACTIONS(1411), + [anon_sym___strong] = ACTIONS(1411), + [anon_sym___weak] = ACTIONS(1411), + [anon_sym___bridge] = ACTIONS(1411), + [anon_sym___bridge_transfer] = ACTIONS(1411), + [anon_sym___bridge_retained] = ACTIONS(1411), + [anon_sym___unsafe_unretained] = ACTIONS(1411), + [anon_sym___block] = ACTIONS(1411), + [anon_sym___kindof] = ACTIONS(1411), + [anon_sym___unused] = ACTIONS(1411), + [anon_sym__Complex] = ACTIONS(1411), + [anon_sym___complex] = ACTIONS(1411), + [anon_sym_IBOutlet] = ACTIONS(1411), + [anon_sym_IBInspectable] = ACTIONS(1411), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1411), + [anon_sym_signed] = ACTIONS(1411), + [anon_sym_unsigned] = ACTIONS(1411), + [anon_sym_long] = ACTIONS(1411), + [anon_sym_short] = ACTIONS(1411), + [sym_primitive_type] = ACTIONS(1411), + [anon_sym_enum] = ACTIONS(1411), + [anon_sym_struct] = ACTIONS(1411), + [anon_sym_union] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_else] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_case] = ACTIONS(1411), + [anon_sym_default] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_goto] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_sizeof] = ACTIONS(1411), + [sym_number_literal] = ACTIONS(1413), + [anon_sym_L_SQUOTE] = ACTIONS(1413), + [anon_sym_u_SQUOTE] = ACTIONS(1413), + [anon_sym_U_SQUOTE] = ACTIONS(1413), + [anon_sym_u8_SQUOTE] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_L_DQUOTE] = ACTIONS(1413), + [anon_sym_u_DQUOTE] = ACTIONS(1413), + [anon_sym_U_DQUOTE] = ACTIONS(1413), + [anon_sym_u8_DQUOTE] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [sym_true] = ACTIONS(1411), + [sym_false] = ACTIONS(1411), + [sym_null] = ACTIONS(1411), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1413), + [anon_sym_ATimport] = ACTIONS(1413), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1411), + [anon_sym_ATcompatibility_alias] = ACTIONS(1413), + [anon_sym_ATprotocol] = ACTIONS(1413), + [anon_sym_ATclass] = ACTIONS(1413), + [anon_sym_ATinterface] = ACTIONS(1413), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1411), + [sym_method_attribute_specifier] = ACTIONS(1411), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1411), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1411), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1411), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1411), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1411), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1411), + [anon_sym_NS_AVAILABLE] = ACTIONS(1411), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1411), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1411), + [anon_sym_API_AVAILABLE] = ACTIONS(1411), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1411), + [anon_sym_API_DEPRECATED] = ACTIONS(1411), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1411), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1411), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1411), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1411), + [anon_sym___deprecated_msg] = ACTIONS(1411), + [anon_sym___deprecated_enum_msg] = ACTIONS(1411), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1411), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1411), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1411), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1411), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1411), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1411), + [anon_sym_ATimplementation] = ACTIONS(1413), + [anon_sym_NS_ENUM] = ACTIONS(1411), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1411), + [anon_sym_NS_OPTIONS] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym___typeof] = ACTIONS(1411), + [anon_sym___typeof__] = ACTIONS(1411), + [sym_self] = ACTIONS(1411), + [sym_super] = ACTIONS(1411), + [sym_nil] = ACTIONS(1411), + [sym_id] = ACTIONS(1411), + [sym_instancetype] = ACTIONS(1411), + [sym_Class] = ACTIONS(1411), + [sym_SEL] = ACTIONS(1411), + [sym_IMP] = ACTIONS(1411), + [sym_BOOL] = ACTIONS(1411), + [sym_auto] = ACTIONS(1411), + [anon_sym_ATautoreleasepool] = ACTIONS(1413), + [anon_sym_ATsynchronized] = ACTIONS(1413), + [anon_sym_ATtry] = ACTIONS(1413), + [anon_sym_ATcatch] = ACTIONS(1413), + [anon_sym_ATfinally] = ACTIONS(1413), + [anon_sym_ATthrow] = ACTIONS(1413), + [anon_sym_ATselector] = ACTIONS(1413), + [anon_sym_ATencode] = ACTIONS(1413), + [anon_sym_AT] = ACTIONS(1411), + [sym_YES] = ACTIONS(1411), + [sym_NO] = ACTIONS(1411), + [anon_sym___builtin_available] = ACTIONS(1411), + [anon_sym_ATavailable] = ACTIONS(1413), + [anon_sym_va_arg] = ACTIONS(1411), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), [sym__ifdef_else_ignore] = ACTIONS(3), [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [227] = { - [sym_identifier] = ACTIONS(1585), - [aux_sym_preproc_include_token1] = ACTIONS(1587), - [aux_sym_preproc_def_token1] = ACTIONS(1587), - [aux_sym_preproc_if_token1] = ACTIONS(1585), - [aux_sym_preproc_if_token2] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1585), - [aux_sym_preproc_else_token1] = ACTIONS(1585), - [aux_sym_preproc_elif_token1] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_typedef] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym___attribute] = ACTIONS(1585), - [anon_sym___attribute__] = ACTIONS(1585), - [anon_sym___declspec] = ACTIONS(1585), - [anon_sym___cdecl] = ACTIONS(1585), - [anon_sym___clrcall] = ACTIONS(1585), - [anon_sym___stdcall] = ACTIONS(1585), - [anon_sym___fastcall] = ACTIONS(1585), - [anon_sym___thiscall] = ACTIONS(1585), - [anon_sym___vectorcall] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_auto] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_inline] = ACTIONS(1585), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_volatile] = ACTIONS(1585), - [anon_sym_restrict] = ACTIONS(1585), - [anon_sym__Atomic] = ACTIONS(1585), - [anon_sym_in] = ACTIONS(1585), - [anon_sym_out] = ACTIONS(1585), - [anon_sym_inout] = ACTIONS(1585), - [anon_sym_bycopy] = ACTIONS(1585), - [anon_sym_byref] = ACTIONS(1585), - [anon_sym_oneway] = ACTIONS(1585), - [anon_sym__Nullable] = ACTIONS(1585), - [anon_sym__Nonnull] = ACTIONS(1585), - [anon_sym__Nullable_result] = ACTIONS(1585), - [anon_sym__Null_unspecified] = ACTIONS(1585), - [anon_sym___autoreleasing] = ACTIONS(1585), - [anon_sym___nullable] = ACTIONS(1585), - [anon_sym___nonnull] = ACTIONS(1585), - [anon_sym___strong] = ACTIONS(1585), - [anon_sym___weak] = ACTIONS(1585), - [anon_sym___bridge] = ACTIONS(1585), - [anon_sym___bridge_transfer] = ACTIONS(1585), - [anon_sym___bridge_retained] = ACTIONS(1585), - [anon_sym___unsafe_unretained] = ACTIONS(1585), - [anon_sym___block] = ACTIONS(1585), - [anon_sym___kindof] = ACTIONS(1585), - [anon_sym___unused] = ACTIONS(1585), - [anon_sym__Complex] = ACTIONS(1585), - [anon_sym___complex] = ACTIONS(1585), - [anon_sym_IBOutlet] = ACTIONS(1585), - [anon_sym_IBInspectable] = ACTIONS(1585), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1585), - [anon_sym_signed] = ACTIONS(1585), - [anon_sym_unsigned] = ACTIONS(1585), - [anon_sym_long] = ACTIONS(1585), - [anon_sym_short] = ACTIONS(1585), - [sym_primitive_type] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [anon_sym_NS_ENUM] = ACTIONS(1585), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1585), - [anon_sym_NS_OPTIONS] = ACTIONS(1585), - [anon_sym_struct] = ACTIONS(1585), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_else] = ACTIONS(1585), - [anon_sym_switch] = ACTIONS(1585), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_goto] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1587), - [anon_sym_u_SQUOTE] = ACTIONS(1587), - [anon_sym_U_SQUOTE] = ACTIONS(1587), - [anon_sym_u8_SQUOTE] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1587), - [anon_sym_L_DQUOTE] = ACTIONS(1587), - [anon_sym_u_DQUOTE] = ACTIONS(1587), - [anon_sym_U_DQUOTE] = ACTIONS(1587), - [anon_sym_u8_DQUOTE] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym_true] = ACTIONS(1585), - [sym_false] = ACTIONS(1585), - [sym_null] = ACTIONS(1585), + [208] = { + [ts_builtin_sym_end] = ACTIONS(1561), + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_include_token1] = ACTIONS(1561), + [aux_sym_preproc_def_token1] = ACTIONS(1561), + [anon_sym_RPAREN] = ACTIONS(1561), + [aux_sym_preproc_if_token1] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1563), + [anon_sym_LPAREN2] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_typedef] = ACTIONS(1563), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym___attribute] = ACTIONS(1563), + [anon_sym___attribute__] = ACTIONS(1563), + [anon_sym___declspec] = ACTIONS(1563), + [anon_sym___cdecl] = ACTIONS(1563), + [anon_sym___clrcall] = ACTIONS(1563), + [anon_sym___stdcall] = ACTIONS(1563), + [anon_sym___fastcall] = ACTIONS(1563), + [anon_sym___thiscall] = ACTIONS(1563), + [anon_sym___vectorcall] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_auto] = ACTIONS(1563), + [anon_sym_register] = ACTIONS(1563), + [anon_sym_inline] = ACTIONS(1563), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_volatile] = ACTIONS(1563), + [anon_sym_restrict] = ACTIONS(1563), + [anon_sym__Atomic] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [anon_sym_out] = ACTIONS(1563), + [anon_sym_inout] = ACTIONS(1563), + [anon_sym_bycopy] = ACTIONS(1563), + [anon_sym_byref] = ACTIONS(1563), + [anon_sym_oneway] = ACTIONS(1563), + [anon_sym__Nullable] = ACTIONS(1563), + [anon_sym__Nonnull] = ACTIONS(1563), + [anon_sym__Nullable_result] = ACTIONS(1563), + [anon_sym__Null_unspecified] = ACTIONS(1563), + [anon_sym___autoreleasing] = ACTIONS(1563), + [anon_sym___nullable] = ACTIONS(1563), + [anon_sym___nonnull] = ACTIONS(1563), + [anon_sym___strong] = ACTIONS(1563), + [anon_sym___weak] = ACTIONS(1563), + [anon_sym___bridge] = ACTIONS(1563), + [anon_sym___bridge_transfer] = ACTIONS(1563), + [anon_sym___bridge_retained] = ACTIONS(1563), + [anon_sym___unsafe_unretained] = ACTIONS(1563), + [anon_sym___block] = ACTIONS(1563), + [anon_sym___kindof] = ACTIONS(1563), + [anon_sym___unused] = ACTIONS(1563), + [anon_sym__Complex] = ACTIONS(1563), + [anon_sym___complex] = ACTIONS(1563), + [anon_sym_IBOutlet] = ACTIONS(1563), + [anon_sym_IBInspectable] = ACTIONS(1563), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1563), + [anon_sym_signed] = ACTIONS(1563), + [anon_sym_unsigned] = ACTIONS(1563), + [anon_sym_long] = ACTIONS(1563), + [anon_sym_short] = ACTIONS(1563), + [sym_primitive_type] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_else] = ACTIONS(1563), + [anon_sym_switch] = ACTIONS(1563), + [anon_sym_case] = ACTIONS(1563), + [anon_sym_default] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_goto] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1561), + [anon_sym_L_SQUOTE] = ACTIONS(1561), + [anon_sym_u_SQUOTE] = ACTIONS(1561), + [anon_sym_U_SQUOTE] = ACTIONS(1561), + [anon_sym_u8_SQUOTE] = ACTIONS(1561), + [anon_sym_SQUOTE] = ACTIONS(1561), + [anon_sym_L_DQUOTE] = ACTIONS(1561), + [anon_sym_u_DQUOTE] = ACTIONS(1561), + [anon_sym_U_DQUOTE] = ACTIONS(1561), + [anon_sym_u8_DQUOTE] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1561), + [sym_true] = ACTIONS(1563), + [sym_false] = ACTIONS(1563), + [sym_null] = ACTIONS(1563), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1587), - [anon_sym_ATimport] = ACTIONS(1587), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1585), - [anon_sym_ATcompatibility_alias] = ACTIONS(1587), - [anon_sym_ATprotocol] = ACTIONS(1587), - [anon_sym_ATclass] = ACTIONS(1587), - [anon_sym_ATinterface] = ACTIONS(1587), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1585), - [sym_method_attribute_specifier] = ACTIONS(1585), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1585), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1585), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1585), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1585), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1585), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1585), - [anon_sym_NS_AVAILABLE] = ACTIONS(1585), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1585), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1585), - [anon_sym_API_AVAILABLE] = ACTIONS(1585), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1585), - [anon_sym_API_DEPRECATED] = ACTIONS(1585), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1585), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1585), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1585), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1585), - [anon_sym___deprecated_msg] = ACTIONS(1585), - [anon_sym___deprecated_enum_msg] = ACTIONS(1585), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1585), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1585), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1585), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1585), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1585), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1585), - [anon_sym_ATimplementation] = ACTIONS(1587), - [anon_sym_typeof] = ACTIONS(1585), - [anon_sym___typeof] = ACTIONS(1585), - [anon_sym___typeof__] = ACTIONS(1585), - [sym_self] = ACTIONS(1585), - [sym_super] = ACTIONS(1585), - [sym_nil] = ACTIONS(1585), - [sym_id] = ACTIONS(1585), - [sym_instancetype] = ACTIONS(1585), - [sym_Class] = ACTIONS(1585), - [sym_SEL] = ACTIONS(1585), - [sym_IMP] = ACTIONS(1585), - [sym_BOOL] = ACTIONS(1585), - [sym_auto] = ACTIONS(1585), - [anon_sym_ATautoreleasepool] = ACTIONS(1587), - [anon_sym_ATsynchronized] = ACTIONS(1587), - [anon_sym_ATtry] = ACTIONS(1587), - [anon_sym_ATcatch] = ACTIONS(1587), - [anon_sym_ATfinally] = ACTIONS(1587), - [anon_sym_ATthrow] = ACTIONS(1587), - [anon_sym_ATselector] = ACTIONS(1587), - [anon_sym_ATencode] = ACTIONS(1587), - [anon_sym_AT] = ACTIONS(1585), - [sym_YES] = ACTIONS(1585), - [sym_NO] = ACTIONS(1585), - [anon_sym___builtin_available] = ACTIONS(1585), - [anon_sym_ATavailable] = ACTIONS(1587), - [anon_sym_va_arg] = ACTIONS(1585), + [anon_sym_POUNDimport] = ACTIONS(1561), + [anon_sym_ATimport] = ACTIONS(1561), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1563), + [anon_sym_ATcompatibility_alias] = ACTIONS(1561), + [anon_sym_ATprotocol] = ACTIONS(1561), + [anon_sym_ATclass] = ACTIONS(1561), + [anon_sym_ATinterface] = ACTIONS(1561), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1563), + [sym_method_attribute_specifier] = ACTIONS(1563), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1563), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE] = ACTIONS(1563), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_API_AVAILABLE] = ACTIONS(1563), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_API_DEPRECATED] = ACTIONS(1563), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1563), + [anon_sym___deprecated_msg] = ACTIONS(1563), + [anon_sym___deprecated_enum_msg] = ACTIONS(1563), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1563), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1563), + [anon_sym_ATimplementation] = ACTIONS(1561), + [anon_sym_NS_ENUM] = ACTIONS(1563), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1563), + [anon_sym_NS_OPTIONS] = ACTIONS(1563), + [anon_sym_typeof] = ACTIONS(1563), + [anon_sym___typeof] = ACTIONS(1563), + [anon_sym___typeof__] = ACTIONS(1563), + [sym_self] = ACTIONS(1563), + [sym_super] = ACTIONS(1563), + [sym_nil] = ACTIONS(1563), + [sym_id] = ACTIONS(1563), + [sym_instancetype] = ACTIONS(1563), + [sym_Class] = ACTIONS(1563), + [sym_SEL] = ACTIONS(1563), + [sym_IMP] = ACTIONS(1563), + [sym_BOOL] = ACTIONS(1563), + [sym_auto] = ACTIONS(1563), + [anon_sym_ATautoreleasepool] = ACTIONS(1561), + [anon_sym_ATsynchronized] = ACTIONS(1561), + [anon_sym_ATtry] = ACTIONS(1561), + [anon_sym_ATcatch] = ACTIONS(1561), + [anon_sym_ATfinally] = ACTIONS(1561), + [anon_sym_ATthrow] = ACTIONS(1561), + [anon_sym_ATselector] = ACTIONS(1561), + [anon_sym_ATencode] = ACTIONS(1561), + [anon_sym_AT] = ACTIONS(1563), + [sym_YES] = ACTIONS(1563), + [sym_NO] = ACTIONS(1563), + [anon_sym___builtin_available] = ACTIONS(1563), + [anon_sym_ATavailable] = ACTIONS(1561), + [anon_sym_va_arg] = ACTIONS(1563), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [209] = { + [sym_identifier] = ACTIONS(1529), + [aux_sym_preproc_include_token1] = ACTIONS(1527), + [aux_sym_preproc_def_token1] = ACTIONS(1527), + [aux_sym_preproc_if_token1] = ACTIONS(1529), + [aux_sym_preproc_if_token2] = ACTIONS(1529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), + [aux_sym_preproc_else_token1] = ACTIONS(1529), + [aux_sym_preproc_elif_token1] = ACTIONS(1529), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_CARET] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_typedef] = ACTIONS(1529), + [anon_sym_extern] = ACTIONS(1529), + [anon_sym___attribute] = ACTIONS(1529), + [anon_sym___attribute__] = ACTIONS(1529), + [anon_sym___declspec] = ACTIONS(1529), + [anon_sym___cdecl] = ACTIONS(1529), + [anon_sym___clrcall] = ACTIONS(1529), + [anon_sym___stdcall] = ACTIONS(1529), + [anon_sym___fastcall] = ACTIONS(1529), + [anon_sym___thiscall] = ACTIONS(1529), + [anon_sym___vectorcall] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_auto] = ACTIONS(1529), + [anon_sym_register] = ACTIONS(1529), + [anon_sym_inline] = ACTIONS(1529), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_volatile] = ACTIONS(1529), + [anon_sym_restrict] = ACTIONS(1529), + [anon_sym__Atomic] = ACTIONS(1529), + [anon_sym_in] = ACTIONS(1529), + [anon_sym_out] = ACTIONS(1529), + [anon_sym_inout] = ACTIONS(1529), + [anon_sym_bycopy] = ACTIONS(1529), + [anon_sym_byref] = ACTIONS(1529), + [anon_sym_oneway] = ACTIONS(1529), + [anon_sym__Nullable] = ACTIONS(1529), + [anon_sym__Nonnull] = ACTIONS(1529), + [anon_sym__Nullable_result] = ACTIONS(1529), + [anon_sym__Null_unspecified] = ACTIONS(1529), + [anon_sym___autoreleasing] = ACTIONS(1529), + [anon_sym___nullable] = ACTIONS(1529), + [anon_sym___nonnull] = ACTIONS(1529), + [anon_sym___strong] = ACTIONS(1529), + [anon_sym___weak] = ACTIONS(1529), + [anon_sym___bridge] = ACTIONS(1529), + [anon_sym___bridge_transfer] = ACTIONS(1529), + [anon_sym___bridge_retained] = ACTIONS(1529), + [anon_sym___unsafe_unretained] = ACTIONS(1529), + [anon_sym___block] = ACTIONS(1529), + [anon_sym___kindof] = ACTIONS(1529), + [anon_sym___unused] = ACTIONS(1529), + [anon_sym__Complex] = ACTIONS(1529), + [anon_sym___complex] = ACTIONS(1529), + [anon_sym_IBOutlet] = ACTIONS(1529), + [anon_sym_IBInspectable] = ACTIONS(1529), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1529), + [anon_sym_signed] = ACTIONS(1529), + [anon_sym_unsigned] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [sym_primitive_type] = ACTIONS(1529), + [anon_sym_enum] = ACTIONS(1529), + [anon_sym_struct] = ACTIONS(1529), + [anon_sym_union] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_else] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_case] = ACTIONS(1529), + [anon_sym_default] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_goto] = ACTIONS(1529), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_sizeof] = ACTIONS(1529), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1527), + [anon_sym_u_SQUOTE] = ACTIONS(1527), + [anon_sym_U_SQUOTE] = ACTIONS(1527), + [anon_sym_u8_SQUOTE] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_L_DQUOTE] = ACTIONS(1527), + [anon_sym_u_DQUOTE] = ACTIONS(1527), + [anon_sym_U_DQUOTE] = ACTIONS(1527), + [anon_sym_u8_DQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [sym_true] = ACTIONS(1529), + [sym_false] = ACTIONS(1529), + [sym_null] = ACTIONS(1529), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1527), + [anon_sym_ATimport] = ACTIONS(1527), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1529), + [anon_sym_ATcompatibility_alias] = ACTIONS(1527), + [anon_sym_ATprotocol] = ACTIONS(1527), + [anon_sym_ATclass] = ACTIONS(1527), + [anon_sym_ATinterface] = ACTIONS(1527), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1529), + [sym_method_attribute_specifier] = ACTIONS(1529), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1529), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1529), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1529), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1529), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1529), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1529), + [anon_sym_NS_AVAILABLE] = ACTIONS(1529), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1529), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1529), + [anon_sym_API_AVAILABLE] = ACTIONS(1529), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1529), + [anon_sym_API_DEPRECATED] = ACTIONS(1529), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1529), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1529), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1529), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1529), + [anon_sym___deprecated_msg] = ACTIONS(1529), + [anon_sym___deprecated_enum_msg] = ACTIONS(1529), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1529), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1529), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1529), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1529), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1529), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1529), + [anon_sym_ATimplementation] = ACTIONS(1527), + [anon_sym_NS_ENUM] = ACTIONS(1529), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1529), + [anon_sym_NS_OPTIONS] = ACTIONS(1529), + [anon_sym_typeof] = ACTIONS(1529), + [anon_sym___typeof] = ACTIONS(1529), + [anon_sym___typeof__] = ACTIONS(1529), + [sym_self] = ACTIONS(1529), + [sym_super] = ACTIONS(1529), + [sym_nil] = ACTIONS(1529), + [sym_id] = ACTIONS(1529), + [sym_instancetype] = ACTIONS(1529), + [sym_Class] = ACTIONS(1529), + [sym_SEL] = ACTIONS(1529), + [sym_IMP] = ACTIONS(1529), + [sym_BOOL] = ACTIONS(1529), + [sym_auto] = ACTIONS(1529), + [anon_sym_ATautoreleasepool] = ACTIONS(1527), + [anon_sym_ATsynchronized] = ACTIONS(1527), + [anon_sym_ATtry] = ACTIONS(1527), + [anon_sym_ATcatch] = ACTIONS(1527), + [anon_sym_ATfinally] = ACTIONS(1527), + [anon_sym_ATthrow] = ACTIONS(1527), + [anon_sym_ATselector] = ACTIONS(1527), + [anon_sym_ATencode] = ACTIONS(1527), + [anon_sym_AT] = ACTIONS(1529), + [sym_YES] = ACTIONS(1529), + [sym_NO] = ACTIONS(1529), + [anon_sym___builtin_available] = ACTIONS(1529), + [anon_sym_ATavailable] = ACTIONS(1527), + [anon_sym_va_arg] = ACTIONS(1529), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -65781,176 +62624,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [228] = { - [sym_identifier] = ACTIONS(1447), - [aux_sym_preproc_include_token1] = ACTIONS(1445), - [aux_sym_preproc_def_token1] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1447), - [aux_sym_preproc_if_token2] = ACTIONS(1447), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1447), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1447), - [aux_sym_preproc_else_token1] = ACTIONS(1447), - [aux_sym_preproc_elif_token1] = ACTIONS(1447), - [anon_sym_LPAREN2] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1445), - [anon_sym_TILDE] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_CARET] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_typedef] = ACTIONS(1447), - [anon_sym_extern] = ACTIONS(1447), - [anon_sym___attribute] = ACTIONS(1447), - [anon_sym___attribute__] = ACTIONS(1447), - [anon_sym___declspec] = ACTIONS(1447), - [anon_sym___cdecl] = ACTIONS(1447), - [anon_sym___clrcall] = ACTIONS(1447), - [anon_sym___stdcall] = ACTIONS(1447), - [anon_sym___fastcall] = ACTIONS(1447), - [anon_sym___thiscall] = ACTIONS(1447), - [anon_sym___vectorcall] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_auto] = ACTIONS(1447), - [anon_sym_register] = ACTIONS(1447), - [anon_sym_inline] = ACTIONS(1447), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_volatile] = ACTIONS(1447), - [anon_sym_restrict] = ACTIONS(1447), - [anon_sym__Atomic] = ACTIONS(1447), - [anon_sym_in] = ACTIONS(1447), - [anon_sym_out] = ACTIONS(1447), - [anon_sym_inout] = ACTIONS(1447), - [anon_sym_bycopy] = ACTIONS(1447), - [anon_sym_byref] = ACTIONS(1447), - [anon_sym_oneway] = ACTIONS(1447), - [anon_sym__Nullable] = ACTIONS(1447), - [anon_sym__Nonnull] = ACTIONS(1447), - [anon_sym__Nullable_result] = ACTIONS(1447), - [anon_sym__Null_unspecified] = ACTIONS(1447), - [anon_sym___autoreleasing] = ACTIONS(1447), - [anon_sym___nullable] = ACTIONS(1447), - [anon_sym___nonnull] = ACTIONS(1447), - [anon_sym___strong] = ACTIONS(1447), - [anon_sym___weak] = ACTIONS(1447), - [anon_sym___bridge] = ACTIONS(1447), - [anon_sym___bridge_transfer] = ACTIONS(1447), - [anon_sym___bridge_retained] = ACTIONS(1447), - [anon_sym___unsafe_unretained] = ACTIONS(1447), - [anon_sym___block] = ACTIONS(1447), - [anon_sym___kindof] = ACTIONS(1447), - [anon_sym___unused] = ACTIONS(1447), - [anon_sym__Complex] = ACTIONS(1447), - [anon_sym___complex] = ACTIONS(1447), - [anon_sym_IBOutlet] = ACTIONS(1447), - [anon_sym_IBInspectable] = ACTIONS(1447), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1447), - [anon_sym_signed] = ACTIONS(1447), - [anon_sym_unsigned] = ACTIONS(1447), - [anon_sym_long] = ACTIONS(1447), - [anon_sym_short] = ACTIONS(1447), - [sym_primitive_type] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1447), - [anon_sym_NS_ENUM] = ACTIONS(1447), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1447), - [anon_sym_NS_OPTIONS] = ACTIONS(1447), - [anon_sym_struct] = ACTIONS(1447), - [anon_sym_union] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_else] = ACTIONS(1447), - [anon_sym_switch] = ACTIONS(1447), - [anon_sym_case] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_do] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_goto] = ACTIONS(1447), - [anon_sym_DASH_DASH] = ACTIONS(1445), - [anon_sym_PLUS_PLUS] = ACTIONS(1445), - [anon_sym_sizeof] = ACTIONS(1447), - [sym_number_literal] = ACTIONS(1445), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1445), - [anon_sym_u_DQUOTE] = ACTIONS(1445), - [anon_sym_U_DQUOTE] = ACTIONS(1445), - [anon_sym_u8_DQUOTE] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1445), - [sym_true] = ACTIONS(1447), - [sym_false] = ACTIONS(1447), - [sym_null] = ACTIONS(1447), + [210] = { + [sym_identifier] = ACTIONS(1505), + [aux_sym_preproc_include_token1] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1503), + [aux_sym_preproc_if_token1] = ACTIONS(1505), + [aux_sym_preproc_if_token2] = ACTIONS(1505), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1505), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1505), + [aux_sym_preproc_else_token1] = ACTIONS(1505), + [aux_sym_preproc_elif_token1] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(1503), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1503), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_typedef] = ACTIONS(1505), + [anon_sym_extern] = ACTIONS(1505), + [anon_sym___attribute] = ACTIONS(1505), + [anon_sym___attribute__] = ACTIONS(1505), + [anon_sym___declspec] = ACTIONS(1505), + [anon_sym___cdecl] = ACTIONS(1505), + [anon_sym___clrcall] = ACTIONS(1505), + [anon_sym___stdcall] = ACTIONS(1505), + [anon_sym___fastcall] = ACTIONS(1505), + [anon_sym___thiscall] = ACTIONS(1505), + [anon_sym___vectorcall] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_auto] = ACTIONS(1505), + [anon_sym_register] = ACTIONS(1505), + [anon_sym_inline] = ACTIONS(1505), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_volatile] = ACTIONS(1505), + [anon_sym_restrict] = ACTIONS(1505), + [anon_sym__Atomic] = ACTIONS(1505), + [anon_sym_in] = ACTIONS(1505), + [anon_sym_out] = ACTIONS(1505), + [anon_sym_inout] = ACTIONS(1505), + [anon_sym_bycopy] = ACTIONS(1505), + [anon_sym_byref] = ACTIONS(1505), + [anon_sym_oneway] = ACTIONS(1505), + [anon_sym__Nullable] = ACTIONS(1505), + [anon_sym__Nonnull] = ACTIONS(1505), + [anon_sym__Nullable_result] = ACTIONS(1505), + [anon_sym__Null_unspecified] = ACTIONS(1505), + [anon_sym___autoreleasing] = ACTIONS(1505), + [anon_sym___nullable] = ACTIONS(1505), + [anon_sym___nonnull] = ACTIONS(1505), + [anon_sym___strong] = ACTIONS(1505), + [anon_sym___weak] = ACTIONS(1505), + [anon_sym___bridge] = ACTIONS(1505), + [anon_sym___bridge_transfer] = ACTIONS(1505), + [anon_sym___bridge_retained] = ACTIONS(1505), + [anon_sym___unsafe_unretained] = ACTIONS(1505), + [anon_sym___block] = ACTIONS(1505), + [anon_sym___kindof] = ACTIONS(1505), + [anon_sym___unused] = ACTIONS(1505), + [anon_sym__Complex] = ACTIONS(1505), + [anon_sym___complex] = ACTIONS(1505), + [anon_sym_IBOutlet] = ACTIONS(1505), + [anon_sym_IBInspectable] = ACTIONS(1505), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1505), + [anon_sym_signed] = ACTIONS(1505), + [anon_sym_unsigned] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [sym_primitive_type] = ACTIONS(1505), + [anon_sym_enum] = ACTIONS(1505), + [anon_sym_struct] = ACTIONS(1505), + [anon_sym_union] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_else] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_case] = ACTIONS(1505), + [anon_sym_default] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_goto] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_sizeof] = ACTIONS(1505), + [sym_number_literal] = ACTIONS(1503), + [anon_sym_L_SQUOTE] = ACTIONS(1503), + [anon_sym_u_SQUOTE] = ACTIONS(1503), + [anon_sym_U_SQUOTE] = ACTIONS(1503), + [anon_sym_u8_SQUOTE] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_L_DQUOTE] = ACTIONS(1503), + [anon_sym_u_DQUOTE] = ACTIONS(1503), + [anon_sym_U_DQUOTE] = ACTIONS(1503), + [anon_sym_u8_DQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [sym_true] = ACTIONS(1505), + [sym_false] = ACTIONS(1505), + [sym_null] = ACTIONS(1505), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1445), - [anon_sym_ATimport] = ACTIONS(1445), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1447), - [anon_sym_ATcompatibility_alias] = ACTIONS(1445), - [anon_sym_ATprotocol] = ACTIONS(1445), - [anon_sym_ATclass] = ACTIONS(1445), - [anon_sym_ATinterface] = ACTIONS(1445), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1447), - [sym_method_attribute_specifier] = ACTIONS(1447), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1447), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1447), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1447), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1447), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1447), - [anon_sym_NS_AVAILABLE] = ACTIONS(1447), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1447), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_API_AVAILABLE] = ACTIONS(1447), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_API_DEPRECATED] = ACTIONS(1447), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1447), - [anon_sym___deprecated_msg] = ACTIONS(1447), - [anon_sym___deprecated_enum_msg] = ACTIONS(1447), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1447), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1447), - [anon_sym_ATimplementation] = ACTIONS(1445), - [anon_sym_typeof] = ACTIONS(1447), - [anon_sym___typeof] = ACTIONS(1447), - [anon_sym___typeof__] = ACTIONS(1447), - [sym_self] = ACTIONS(1447), - [sym_super] = ACTIONS(1447), - [sym_nil] = ACTIONS(1447), - [sym_id] = ACTIONS(1447), - [sym_instancetype] = ACTIONS(1447), - [sym_Class] = ACTIONS(1447), - [sym_SEL] = ACTIONS(1447), - [sym_IMP] = ACTIONS(1447), - [sym_BOOL] = ACTIONS(1447), - [sym_auto] = ACTIONS(1447), - [anon_sym_ATautoreleasepool] = ACTIONS(1445), - [anon_sym_ATsynchronized] = ACTIONS(1445), - [anon_sym_ATtry] = ACTIONS(1445), - [anon_sym_ATcatch] = ACTIONS(1445), - [anon_sym_ATfinally] = ACTIONS(1445), - [anon_sym_ATthrow] = ACTIONS(1445), - [anon_sym_ATselector] = ACTIONS(1445), - [anon_sym_ATencode] = ACTIONS(1445), - [anon_sym_AT] = ACTIONS(1447), - [sym_YES] = ACTIONS(1447), - [sym_NO] = ACTIONS(1447), - [anon_sym___builtin_available] = ACTIONS(1447), - [anon_sym_ATavailable] = ACTIONS(1445), - [anon_sym_va_arg] = ACTIONS(1447), + [anon_sym_POUNDimport] = ACTIONS(1503), + [anon_sym_ATimport] = ACTIONS(1503), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1505), + [anon_sym_ATcompatibility_alias] = ACTIONS(1503), + [anon_sym_ATprotocol] = ACTIONS(1503), + [anon_sym_ATclass] = ACTIONS(1503), + [anon_sym_ATinterface] = ACTIONS(1503), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1505), + [sym_method_attribute_specifier] = ACTIONS(1505), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1505), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1505), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1505), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1505), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1505), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1505), + [anon_sym_NS_AVAILABLE] = ACTIONS(1505), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1505), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1505), + [anon_sym_API_AVAILABLE] = ACTIONS(1505), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1505), + [anon_sym_API_DEPRECATED] = ACTIONS(1505), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1505), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1505), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1505), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1505), + [anon_sym___deprecated_msg] = ACTIONS(1505), + [anon_sym___deprecated_enum_msg] = ACTIONS(1505), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1505), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1505), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1505), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1505), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1505), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1505), + [anon_sym_ATimplementation] = ACTIONS(1503), + [anon_sym_NS_ENUM] = ACTIONS(1505), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1505), + [anon_sym_NS_OPTIONS] = ACTIONS(1505), + [anon_sym_typeof] = ACTIONS(1505), + [anon_sym___typeof] = ACTIONS(1505), + [anon_sym___typeof__] = ACTIONS(1505), + [sym_self] = ACTIONS(1505), + [sym_super] = ACTIONS(1505), + [sym_nil] = ACTIONS(1505), + [sym_id] = ACTIONS(1505), + [sym_instancetype] = ACTIONS(1505), + [sym_Class] = ACTIONS(1505), + [sym_SEL] = ACTIONS(1505), + [sym_IMP] = ACTIONS(1505), + [sym_BOOL] = ACTIONS(1505), + [sym_auto] = ACTIONS(1505), + [anon_sym_ATautoreleasepool] = ACTIONS(1503), + [anon_sym_ATsynchronized] = ACTIONS(1503), + [anon_sym_ATtry] = ACTIONS(1503), + [anon_sym_ATcatch] = ACTIONS(1503), + [anon_sym_ATfinally] = ACTIONS(1503), + [anon_sym_ATthrow] = ACTIONS(1503), + [anon_sym_ATselector] = ACTIONS(1503), + [anon_sym_ATencode] = ACTIONS(1503), + [anon_sym_AT] = ACTIONS(1505), + [sym_YES] = ACTIONS(1505), + [sym_NO] = ACTIONS(1505), + [anon_sym___builtin_available] = ACTIONS(1505), + [anon_sym_ATavailable] = ACTIONS(1503), + [anon_sym_va_arg] = ACTIONS(1505), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -65958,176 +62801,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [229] = { - [sym_identifier] = ACTIONS(1447), - [aux_sym_preproc_include_token1] = ACTIONS(1445), - [aux_sym_preproc_def_token1] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1447), - [aux_sym_preproc_if_token2] = ACTIONS(1447), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1447), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1447), - [aux_sym_preproc_else_token1] = ACTIONS(1447), - [aux_sym_preproc_elif_token1] = ACTIONS(1447), - [anon_sym_LPAREN2] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1445), - [anon_sym_TILDE] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_CARET] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_typedef] = ACTIONS(1447), - [anon_sym_extern] = ACTIONS(1447), - [anon_sym___attribute] = ACTIONS(1447), - [anon_sym___attribute__] = ACTIONS(1447), - [anon_sym___declspec] = ACTIONS(1447), - [anon_sym___cdecl] = ACTIONS(1447), - [anon_sym___clrcall] = ACTIONS(1447), - [anon_sym___stdcall] = ACTIONS(1447), - [anon_sym___fastcall] = ACTIONS(1447), - [anon_sym___thiscall] = ACTIONS(1447), - [anon_sym___vectorcall] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_auto] = ACTIONS(1447), - [anon_sym_register] = ACTIONS(1447), - [anon_sym_inline] = ACTIONS(1447), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_volatile] = ACTIONS(1447), - [anon_sym_restrict] = ACTIONS(1447), - [anon_sym__Atomic] = ACTIONS(1447), - [anon_sym_in] = ACTIONS(1447), - [anon_sym_out] = ACTIONS(1447), - [anon_sym_inout] = ACTIONS(1447), - [anon_sym_bycopy] = ACTIONS(1447), - [anon_sym_byref] = ACTIONS(1447), - [anon_sym_oneway] = ACTIONS(1447), - [anon_sym__Nullable] = ACTIONS(1447), - [anon_sym__Nonnull] = ACTIONS(1447), - [anon_sym__Nullable_result] = ACTIONS(1447), - [anon_sym__Null_unspecified] = ACTIONS(1447), - [anon_sym___autoreleasing] = ACTIONS(1447), - [anon_sym___nullable] = ACTIONS(1447), - [anon_sym___nonnull] = ACTIONS(1447), - [anon_sym___strong] = ACTIONS(1447), - [anon_sym___weak] = ACTIONS(1447), - [anon_sym___bridge] = ACTIONS(1447), - [anon_sym___bridge_transfer] = ACTIONS(1447), - [anon_sym___bridge_retained] = ACTIONS(1447), - [anon_sym___unsafe_unretained] = ACTIONS(1447), - [anon_sym___block] = ACTIONS(1447), - [anon_sym___kindof] = ACTIONS(1447), - [anon_sym___unused] = ACTIONS(1447), - [anon_sym__Complex] = ACTIONS(1447), - [anon_sym___complex] = ACTIONS(1447), - [anon_sym_IBOutlet] = ACTIONS(1447), - [anon_sym_IBInspectable] = ACTIONS(1447), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1447), - [anon_sym_signed] = ACTIONS(1447), - [anon_sym_unsigned] = ACTIONS(1447), - [anon_sym_long] = ACTIONS(1447), - [anon_sym_short] = ACTIONS(1447), - [sym_primitive_type] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1447), - [anon_sym_NS_ENUM] = ACTIONS(1447), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1447), - [anon_sym_NS_OPTIONS] = ACTIONS(1447), - [anon_sym_struct] = ACTIONS(1447), - [anon_sym_union] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_else] = ACTIONS(1447), - [anon_sym_switch] = ACTIONS(1447), - [anon_sym_case] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_do] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_goto] = ACTIONS(1447), - [anon_sym_DASH_DASH] = ACTIONS(1445), - [anon_sym_PLUS_PLUS] = ACTIONS(1445), - [anon_sym_sizeof] = ACTIONS(1447), - [sym_number_literal] = ACTIONS(1445), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1445), - [anon_sym_u_DQUOTE] = ACTIONS(1445), - [anon_sym_U_DQUOTE] = ACTIONS(1445), - [anon_sym_u8_DQUOTE] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1445), - [sym_true] = ACTIONS(1447), - [sym_false] = ACTIONS(1447), - [sym_null] = ACTIONS(1447), + [211] = { + [sym_identifier] = ACTIONS(1501), + [aux_sym_preproc_include_token1] = ACTIONS(1499), + [aux_sym_preproc_def_token1] = ACTIONS(1499), + [aux_sym_preproc_if_token1] = ACTIONS(1501), + [aux_sym_preproc_if_token2] = ACTIONS(1501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1501), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1501), + [aux_sym_preproc_else_token1] = ACTIONS(1501), + [aux_sym_preproc_elif_token1] = ACTIONS(1501), + [anon_sym_LPAREN2] = ACTIONS(1499), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_CARET] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_typedef] = ACTIONS(1501), + [anon_sym_extern] = ACTIONS(1501), + [anon_sym___attribute] = ACTIONS(1501), + [anon_sym___attribute__] = ACTIONS(1501), + [anon_sym___declspec] = ACTIONS(1501), + [anon_sym___cdecl] = ACTIONS(1501), + [anon_sym___clrcall] = ACTIONS(1501), + [anon_sym___stdcall] = ACTIONS(1501), + [anon_sym___fastcall] = ACTIONS(1501), + [anon_sym___thiscall] = ACTIONS(1501), + [anon_sym___vectorcall] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_auto] = ACTIONS(1501), + [anon_sym_register] = ACTIONS(1501), + [anon_sym_inline] = ACTIONS(1501), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_volatile] = ACTIONS(1501), + [anon_sym_restrict] = ACTIONS(1501), + [anon_sym__Atomic] = ACTIONS(1501), + [anon_sym_in] = ACTIONS(1501), + [anon_sym_out] = ACTIONS(1501), + [anon_sym_inout] = ACTIONS(1501), + [anon_sym_bycopy] = ACTIONS(1501), + [anon_sym_byref] = ACTIONS(1501), + [anon_sym_oneway] = ACTIONS(1501), + [anon_sym__Nullable] = ACTIONS(1501), + [anon_sym__Nonnull] = ACTIONS(1501), + [anon_sym__Nullable_result] = ACTIONS(1501), + [anon_sym__Null_unspecified] = ACTIONS(1501), + [anon_sym___autoreleasing] = ACTIONS(1501), + [anon_sym___nullable] = ACTIONS(1501), + [anon_sym___nonnull] = ACTIONS(1501), + [anon_sym___strong] = ACTIONS(1501), + [anon_sym___weak] = ACTIONS(1501), + [anon_sym___bridge] = ACTIONS(1501), + [anon_sym___bridge_transfer] = ACTIONS(1501), + [anon_sym___bridge_retained] = ACTIONS(1501), + [anon_sym___unsafe_unretained] = ACTIONS(1501), + [anon_sym___block] = ACTIONS(1501), + [anon_sym___kindof] = ACTIONS(1501), + [anon_sym___unused] = ACTIONS(1501), + [anon_sym__Complex] = ACTIONS(1501), + [anon_sym___complex] = ACTIONS(1501), + [anon_sym_IBOutlet] = ACTIONS(1501), + [anon_sym_IBInspectable] = ACTIONS(1501), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1501), + [anon_sym_signed] = ACTIONS(1501), + [anon_sym_unsigned] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [sym_primitive_type] = ACTIONS(1501), + [anon_sym_enum] = ACTIONS(1501), + [anon_sym_struct] = ACTIONS(1501), + [anon_sym_union] = ACTIONS(1501), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_else] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_case] = ACTIONS(1501), + [anon_sym_default] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_goto] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_sizeof] = ACTIONS(1501), + [sym_number_literal] = ACTIONS(1499), + [anon_sym_L_SQUOTE] = ACTIONS(1499), + [anon_sym_u_SQUOTE] = ACTIONS(1499), + [anon_sym_U_SQUOTE] = ACTIONS(1499), + [anon_sym_u8_SQUOTE] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_L_DQUOTE] = ACTIONS(1499), + [anon_sym_u_DQUOTE] = ACTIONS(1499), + [anon_sym_U_DQUOTE] = ACTIONS(1499), + [anon_sym_u8_DQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym_true] = ACTIONS(1501), + [sym_false] = ACTIONS(1501), + [sym_null] = ACTIONS(1501), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1445), - [anon_sym_ATimport] = ACTIONS(1445), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1447), - [anon_sym_ATcompatibility_alias] = ACTIONS(1445), - [anon_sym_ATprotocol] = ACTIONS(1445), - [anon_sym_ATclass] = ACTIONS(1445), - [anon_sym_ATinterface] = ACTIONS(1445), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1447), - [sym_method_attribute_specifier] = ACTIONS(1447), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1447), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1447), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1447), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1447), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1447), - [anon_sym_NS_AVAILABLE] = ACTIONS(1447), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1447), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_API_AVAILABLE] = ACTIONS(1447), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_API_DEPRECATED] = ACTIONS(1447), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1447), - [anon_sym___deprecated_msg] = ACTIONS(1447), - [anon_sym___deprecated_enum_msg] = ACTIONS(1447), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1447), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1447), - [anon_sym_ATimplementation] = ACTIONS(1445), - [anon_sym_typeof] = ACTIONS(1447), - [anon_sym___typeof] = ACTIONS(1447), - [anon_sym___typeof__] = ACTIONS(1447), - [sym_self] = ACTIONS(1447), - [sym_super] = ACTIONS(1447), - [sym_nil] = ACTIONS(1447), - [sym_id] = ACTIONS(1447), - [sym_instancetype] = ACTIONS(1447), - [sym_Class] = ACTIONS(1447), - [sym_SEL] = ACTIONS(1447), - [sym_IMP] = ACTIONS(1447), - [sym_BOOL] = ACTIONS(1447), - [sym_auto] = ACTIONS(1447), - [anon_sym_ATautoreleasepool] = ACTIONS(1445), - [anon_sym_ATsynchronized] = ACTIONS(1445), - [anon_sym_ATtry] = ACTIONS(1445), - [anon_sym_ATcatch] = ACTIONS(1445), - [anon_sym_ATfinally] = ACTIONS(1445), - [anon_sym_ATthrow] = ACTIONS(1445), - [anon_sym_ATselector] = ACTIONS(1445), - [anon_sym_ATencode] = ACTIONS(1445), - [anon_sym_AT] = ACTIONS(1447), - [sym_YES] = ACTIONS(1447), - [sym_NO] = ACTIONS(1447), - [anon_sym___builtin_available] = ACTIONS(1447), - [anon_sym_ATavailable] = ACTIONS(1445), - [anon_sym_va_arg] = ACTIONS(1447), + [anon_sym_POUNDimport] = ACTIONS(1499), + [anon_sym_ATimport] = ACTIONS(1499), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1501), + [anon_sym_ATcompatibility_alias] = ACTIONS(1499), + [anon_sym_ATprotocol] = ACTIONS(1499), + [anon_sym_ATclass] = ACTIONS(1499), + [anon_sym_ATinterface] = ACTIONS(1499), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1501), + [sym_method_attribute_specifier] = ACTIONS(1501), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1501), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1501), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1501), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1501), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1501), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1501), + [anon_sym_NS_AVAILABLE] = ACTIONS(1501), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1501), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1501), + [anon_sym_API_AVAILABLE] = ACTIONS(1501), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1501), + [anon_sym_API_DEPRECATED] = ACTIONS(1501), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1501), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1501), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1501), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1501), + [anon_sym___deprecated_msg] = ACTIONS(1501), + [anon_sym___deprecated_enum_msg] = ACTIONS(1501), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1501), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1501), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1501), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1501), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1501), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1501), + [anon_sym_ATimplementation] = ACTIONS(1499), + [anon_sym_NS_ENUM] = ACTIONS(1501), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1501), + [anon_sym_NS_OPTIONS] = ACTIONS(1501), + [anon_sym_typeof] = ACTIONS(1501), + [anon_sym___typeof] = ACTIONS(1501), + [anon_sym___typeof__] = ACTIONS(1501), + [sym_self] = ACTIONS(1501), + [sym_super] = ACTIONS(1501), + [sym_nil] = ACTIONS(1501), + [sym_id] = ACTIONS(1501), + [sym_instancetype] = ACTIONS(1501), + [sym_Class] = ACTIONS(1501), + [sym_SEL] = ACTIONS(1501), + [sym_IMP] = ACTIONS(1501), + [sym_BOOL] = ACTIONS(1501), + [sym_auto] = ACTIONS(1501), + [anon_sym_ATautoreleasepool] = ACTIONS(1499), + [anon_sym_ATsynchronized] = ACTIONS(1499), + [anon_sym_ATtry] = ACTIONS(1499), + [anon_sym_ATcatch] = ACTIONS(1499), + [anon_sym_ATfinally] = ACTIONS(1499), + [anon_sym_ATthrow] = ACTIONS(1499), + [anon_sym_ATselector] = ACTIONS(1499), + [anon_sym_ATencode] = ACTIONS(1499), + [anon_sym_AT] = ACTIONS(1501), + [sym_YES] = ACTIONS(1501), + [sym_NO] = ACTIONS(1501), + [anon_sym___builtin_available] = ACTIONS(1501), + [anon_sym_ATavailable] = ACTIONS(1499), + [anon_sym_va_arg] = ACTIONS(1501), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -66135,184 +62978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [230] = { - [sym_identifier] = ACTIONS(1459), - [aux_sym_preproc_include_token1] = ACTIONS(1457), - [aux_sym_preproc_def_token1] = ACTIONS(1457), - [aux_sym_preproc_if_token1] = ACTIONS(1459), - [aux_sym_preproc_if_token2] = ACTIONS(1459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1459), - [aux_sym_preproc_else_token1] = ACTIONS(1459), - [aux_sym_preproc_elif_token1] = ACTIONS(1459), - [anon_sym_LPAREN2] = ACTIONS(1457), - [anon_sym_BANG] = ACTIONS(1457), - [anon_sym_TILDE] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1457), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_AMP] = ACTIONS(1457), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_typedef] = ACTIONS(1459), - [anon_sym_extern] = ACTIONS(1459), - [anon_sym___attribute] = ACTIONS(1459), - [anon_sym___attribute__] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(1459), - [anon_sym___cdecl] = ACTIONS(1459), - [anon_sym___clrcall] = ACTIONS(1459), - [anon_sym___stdcall] = ACTIONS(1459), - [anon_sym___fastcall] = ACTIONS(1459), - [anon_sym___thiscall] = ACTIONS(1459), - [anon_sym___vectorcall] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_static] = ACTIONS(1459), - [anon_sym_auto] = ACTIONS(1459), - [anon_sym_register] = ACTIONS(1459), - [anon_sym_inline] = ACTIONS(1459), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1459), - [anon_sym_volatile] = ACTIONS(1459), - [anon_sym_restrict] = ACTIONS(1459), - [anon_sym__Atomic] = ACTIONS(1459), - [anon_sym_in] = ACTIONS(1459), - [anon_sym_out] = ACTIONS(1459), - [anon_sym_inout] = ACTIONS(1459), - [anon_sym_bycopy] = ACTIONS(1459), - [anon_sym_byref] = ACTIONS(1459), - [anon_sym_oneway] = ACTIONS(1459), - [anon_sym__Nullable] = ACTIONS(1459), - [anon_sym__Nonnull] = ACTIONS(1459), - [anon_sym__Nullable_result] = ACTIONS(1459), - [anon_sym__Null_unspecified] = ACTIONS(1459), - [anon_sym___autoreleasing] = ACTIONS(1459), - [anon_sym___nullable] = ACTIONS(1459), - [anon_sym___nonnull] = ACTIONS(1459), - [anon_sym___strong] = ACTIONS(1459), - [anon_sym___weak] = ACTIONS(1459), - [anon_sym___bridge] = ACTIONS(1459), - [anon_sym___bridge_transfer] = ACTIONS(1459), - [anon_sym___bridge_retained] = ACTIONS(1459), - [anon_sym___unsafe_unretained] = ACTIONS(1459), - [anon_sym___block] = ACTIONS(1459), - [anon_sym___kindof] = ACTIONS(1459), - [anon_sym___unused] = ACTIONS(1459), - [anon_sym__Complex] = ACTIONS(1459), - [anon_sym___complex] = ACTIONS(1459), - [anon_sym_IBOutlet] = ACTIONS(1459), - [anon_sym_IBInspectable] = ACTIONS(1459), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1459), - [anon_sym_signed] = ACTIONS(1459), - [anon_sym_unsigned] = ACTIONS(1459), - [anon_sym_long] = ACTIONS(1459), - [anon_sym_short] = ACTIONS(1459), - [sym_primitive_type] = ACTIONS(1459), - [anon_sym_enum] = ACTIONS(1459), - [anon_sym_NS_ENUM] = ACTIONS(1459), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1459), - [anon_sym_NS_OPTIONS] = ACTIONS(1459), - [anon_sym_struct] = ACTIONS(1459), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_if] = ACTIONS(1459), - [anon_sym_else] = ACTIONS(1459), - [anon_sym_switch] = ACTIONS(1459), - [anon_sym_case] = ACTIONS(1459), - [anon_sym_default] = ACTIONS(1459), - [anon_sym_while] = ACTIONS(1459), - [anon_sym_do] = ACTIONS(1459), - [anon_sym_for] = ACTIONS(1459), - [anon_sym_return] = ACTIONS(1459), - [anon_sym_break] = ACTIONS(1459), - [anon_sym_continue] = ACTIONS(1459), - [anon_sym_goto] = ACTIONS(1459), - [anon_sym_DASH_DASH] = ACTIONS(1457), - [anon_sym_PLUS_PLUS] = ACTIONS(1457), - [anon_sym_sizeof] = ACTIONS(1459), - [sym_number_literal] = ACTIONS(1457), - [anon_sym_L_SQUOTE] = ACTIONS(1457), - [anon_sym_u_SQUOTE] = ACTIONS(1457), - [anon_sym_U_SQUOTE] = ACTIONS(1457), - [anon_sym_u8_SQUOTE] = ACTIONS(1457), - [anon_sym_SQUOTE] = ACTIONS(1457), - [anon_sym_L_DQUOTE] = ACTIONS(1457), - [anon_sym_u_DQUOTE] = ACTIONS(1457), - [anon_sym_U_DQUOTE] = ACTIONS(1457), - [anon_sym_u8_DQUOTE] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(1457), - [sym_true] = ACTIONS(1459), - [sym_false] = ACTIONS(1459), - [sym_null] = ACTIONS(1459), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1457), - [anon_sym_ATimport] = ACTIONS(1457), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1459), - [anon_sym_ATcompatibility_alias] = ACTIONS(1457), - [anon_sym_ATprotocol] = ACTIONS(1457), - [anon_sym_ATclass] = ACTIONS(1457), - [anon_sym_ATinterface] = ACTIONS(1457), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1459), - [sym_method_attribute_specifier] = ACTIONS(1459), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1459), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1459), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1459), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1459), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1459), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1459), - [anon_sym_NS_AVAILABLE] = ACTIONS(1459), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1459), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1459), - [anon_sym_API_AVAILABLE] = ACTIONS(1459), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1459), - [anon_sym_API_DEPRECATED] = ACTIONS(1459), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1459), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1459), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1459), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1459), - [anon_sym___deprecated_msg] = ACTIONS(1459), - [anon_sym___deprecated_enum_msg] = ACTIONS(1459), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1459), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1459), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1459), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1459), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1459), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1459), - [anon_sym_ATimplementation] = ACTIONS(1457), - [anon_sym_typeof] = ACTIONS(1459), - [anon_sym___typeof] = ACTIONS(1459), - [anon_sym___typeof__] = ACTIONS(1459), - [sym_self] = ACTIONS(1459), - [sym_super] = ACTIONS(1459), - [sym_nil] = ACTIONS(1459), - [sym_id] = ACTIONS(1459), - [sym_instancetype] = ACTIONS(1459), - [sym_Class] = ACTIONS(1459), - [sym_SEL] = ACTIONS(1459), - [sym_IMP] = ACTIONS(1459), - [sym_BOOL] = ACTIONS(1459), - [sym_auto] = ACTIONS(1459), - [anon_sym_ATautoreleasepool] = ACTIONS(1457), - [anon_sym_ATsynchronized] = ACTIONS(1457), - [anon_sym_ATtry] = ACTIONS(1457), - [anon_sym_ATcatch] = ACTIONS(1457), - [anon_sym_ATfinally] = ACTIONS(1457), - [anon_sym_ATthrow] = ACTIONS(1457), - [anon_sym_ATselector] = ACTIONS(1457), - [anon_sym_ATencode] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(1459), - [sym_YES] = ACTIONS(1459), - [sym_NO] = ACTIONS(1459), - [anon_sym___builtin_available] = ACTIONS(1459), - [anon_sym_ATavailable] = ACTIONS(1457), - [anon_sym_va_arg] = ACTIONS(1459), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [231] = { + [212] = { [sym_identifier] = ACTIONS(1463), [aux_sym_preproc_include_token1] = ACTIONS(1461), [aux_sym_preproc_def_token1] = ACTIONS(1461), @@ -66386,9 +63052,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1463), [sym_primitive_type] = ACTIONS(1463), [anon_sym_enum] = ACTIONS(1463), - [anon_sym_NS_ENUM] = ACTIONS(1463), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1463), - [anon_sym_NS_OPTIONS] = ACTIONS(1463), [anon_sym_struct] = ACTIONS(1463), [anon_sym_union] = ACTIONS(1463), [anon_sym_if] = ACTIONS(1463), @@ -66455,6 +63118,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1463), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1463), [anon_sym_ATimplementation] = ACTIONS(1461), + [anon_sym_NS_ENUM] = ACTIONS(1463), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1463), + [anon_sym_NS_OPTIONS] = ACTIONS(1463), [anon_sym_typeof] = ACTIONS(1463), [anon_sym___typeof] = ACTIONS(1463), [anon_sym___typeof__] = ACTIONS(1463), @@ -66489,176 +63155,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [232] = { - [sym_identifier] = ACTIONS(1479), - [aux_sym_preproc_include_token1] = ACTIONS(1477), - [aux_sym_preproc_def_token1] = ACTIONS(1477), - [aux_sym_preproc_if_token1] = ACTIONS(1479), - [aux_sym_preproc_if_token2] = ACTIONS(1479), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1479), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1479), - [aux_sym_preproc_else_token1] = ACTIONS(1479), - [aux_sym_preproc_elif_token1] = ACTIONS(1479), - [anon_sym_LPAREN2] = ACTIONS(1477), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_typedef] = ACTIONS(1479), - [anon_sym_extern] = ACTIONS(1479), - [anon_sym___attribute] = ACTIONS(1479), - [anon_sym___attribute__] = ACTIONS(1479), - [anon_sym___declspec] = ACTIONS(1479), - [anon_sym___cdecl] = ACTIONS(1479), - [anon_sym___clrcall] = ACTIONS(1479), - [anon_sym___stdcall] = ACTIONS(1479), - [anon_sym___fastcall] = ACTIONS(1479), - [anon_sym___thiscall] = ACTIONS(1479), - [anon_sym___vectorcall] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_auto] = ACTIONS(1479), - [anon_sym_register] = ACTIONS(1479), - [anon_sym_inline] = ACTIONS(1479), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_volatile] = ACTIONS(1479), - [anon_sym_restrict] = ACTIONS(1479), - [anon_sym__Atomic] = ACTIONS(1479), - [anon_sym_in] = ACTIONS(1479), - [anon_sym_out] = ACTIONS(1479), - [anon_sym_inout] = ACTIONS(1479), - [anon_sym_bycopy] = ACTIONS(1479), - [anon_sym_byref] = ACTIONS(1479), - [anon_sym_oneway] = ACTIONS(1479), - [anon_sym__Nullable] = ACTIONS(1479), - [anon_sym__Nonnull] = ACTIONS(1479), - [anon_sym__Nullable_result] = ACTIONS(1479), - [anon_sym__Null_unspecified] = ACTIONS(1479), - [anon_sym___autoreleasing] = ACTIONS(1479), - [anon_sym___nullable] = ACTIONS(1479), - [anon_sym___nonnull] = ACTIONS(1479), - [anon_sym___strong] = ACTIONS(1479), - [anon_sym___weak] = ACTIONS(1479), - [anon_sym___bridge] = ACTIONS(1479), - [anon_sym___bridge_transfer] = ACTIONS(1479), - [anon_sym___bridge_retained] = ACTIONS(1479), - [anon_sym___unsafe_unretained] = ACTIONS(1479), - [anon_sym___block] = ACTIONS(1479), - [anon_sym___kindof] = ACTIONS(1479), - [anon_sym___unused] = ACTIONS(1479), - [anon_sym__Complex] = ACTIONS(1479), - [anon_sym___complex] = ACTIONS(1479), - [anon_sym_IBOutlet] = ACTIONS(1479), - [anon_sym_IBInspectable] = ACTIONS(1479), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1479), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1479), - [anon_sym_enum] = ACTIONS(1479), - [anon_sym_NS_ENUM] = ACTIONS(1479), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1479), - [anon_sym_NS_OPTIONS] = ACTIONS(1479), - [anon_sym_struct] = ACTIONS(1479), - [anon_sym_union] = ACTIONS(1479), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_else] = ACTIONS(1479), - [anon_sym_switch] = ACTIONS(1479), - [anon_sym_case] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_do] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_goto] = ACTIONS(1479), - [anon_sym_DASH_DASH] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1477), - [anon_sym_sizeof] = ACTIONS(1479), - [sym_number_literal] = ACTIONS(1477), - [anon_sym_L_SQUOTE] = ACTIONS(1477), - [anon_sym_u_SQUOTE] = ACTIONS(1477), - [anon_sym_U_SQUOTE] = ACTIONS(1477), - [anon_sym_u8_SQUOTE] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_L_DQUOTE] = ACTIONS(1477), - [anon_sym_u_DQUOTE] = ACTIONS(1477), - [anon_sym_U_DQUOTE] = ACTIONS(1477), - [anon_sym_u8_DQUOTE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1477), - [sym_true] = ACTIONS(1479), - [sym_false] = ACTIONS(1479), - [sym_null] = ACTIONS(1479), + [213] = { + [sym_identifier] = ACTIONS(1341), + [aux_sym_preproc_include_token1] = ACTIONS(1339), + [aux_sym_preproc_def_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token2] = ACTIONS(1341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1341), + [aux_sym_preproc_else_token1] = ACTIONS(1341), + [aux_sym_preproc_elif_token1] = ACTIONS(1341), + [anon_sym_LPAREN2] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1339), + [anon_sym_TILDE] = ACTIONS(1339), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1339), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_typedef] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym___attribute] = ACTIONS(1341), + [anon_sym___attribute__] = ACTIONS(1341), + [anon_sym___declspec] = ACTIONS(1341), + [anon_sym___cdecl] = ACTIONS(1341), + [anon_sym___clrcall] = ACTIONS(1341), + [anon_sym___stdcall] = ACTIONS(1341), + [anon_sym___fastcall] = ACTIONS(1341), + [anon_sym___thiscall] = ACTIONS(1341), + [anon_sym___vectorcall] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1339), + [anon_sym_static] = ACTIONS(1341), + [anon_sym_auto] = ACTIONS(1341), + [anon_sym_register] = ACTIONS(1341), + [anon_sym_inline] = ACTIONS(1341), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_volatile] = ACTIONS(1341), + [anon_sym_restrict] = ACTIONS(1341), + [anon_sym__Atomic] = ACTIONS(1341), + [anon_sym_in] = ACTIONS(1341), + [anon_sym_out] = ACTIONS(1341), + [anon_sym_inout] = ACTIONS(1341), + [anon_sym_bycopy] = ACTIONS(1341), + [anon_sym_byref] = ACTIONS(1341), + [anon_sym_oneway] = ACTIONS(1341), + [anon_sym__Nullable] = ACTIONS(1341), + [anon_sym__Nonnull] = ACTIONS(1341), + [anon_sym__Nullable_result] = ACTIONS(1341), + [anon_sym__Null_unspecified] = ACTIONS(1341), + [anon_sym___autoreleasing] = ACTIONS(1341), + [anon_sym___nullable] = ACTIONS(1341), + [anon_sym___nonnull] = ACTIONS(1341), + [anon_sym___strong] = ACTIONS(1341), + [anon_sym___weak] = ACTIONS(1341), + [anon_sym___bridge] = ACTIONS(1341), + [anon_sym___bridge_transfer] = ACTIONS(1341), + [anon_sym___bridge_retained] = ACTIONS(1341), + [anon_sym___unsafe_unretained] = ACTIONS(1341), + [anon_sym___block] = ACTIONS(1341), + [anon_sym___kindof] = ACTIONS(1341), + [anon_sym___unused] = ACTIONS(1341), + [anon_sym__Complex] = ACTIONS(1341), + [anon_sym___complex] = ACTIONS(1341), + [anon_sym_IBOutlet] = ACTIONS(1341), + [anon_sym_IBInspectable] = ACTIONS(1341), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1341), + [anon_sym_signed] = ACTIONS(1341), + [anon_sym_unsigned] = ACTIONS(1341), + [anon_sym_long] = ACTIONS(1341), + [anon_sym_short] = ACTIONS(1341), + [sym_primitive_type] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_struct] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_else] = ACTIONS(1341), + [anon_sym_switch] = ACTIONS(1341), + [anon_sym_case] = ACTIONS(1341), + [anon_sym_default] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_goto] = ACTIONS(1341), + [anon_sym_DASH_DASH] = ACTIONS(1339), + [anon_sym_PLUS_PLUS] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [sym_number_literal] = ACTIONS(1339), + [anon_sym_L_SQUOTE] = ACTIONS(1339), + [anon_sym_u_SQUOTE] = ACTIONS(1339), + [anon_sym_U_SQUOTE] = ACTIONS(1339), + [anon_sym_u8_SQUOTE] = ACTIONS(1339), + [anon_sym_SQUOTE] = ACTIONS(1339), + [anon_sym_L_DQUOTE] = ACTIONS(1339), + [anon_sym_u_DQUOTE] = ACTIONS(1339), + [anon_sym_U_DQUOTE] = ACTIONS(1339), + [anon_sym_u8_DQUOTE] = ACTIONS(1339), + [anon_sym_DQUOTE] = ACTIONS(1339), + [sym_true] = ACTIONS(1341), + [sym_false] = ACTIONS(1341), + [sym_null] = ACTIONS(1341), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1477), - [anon_sym_ATimport] = ACTIONS(1477), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1479), - [anon_sym_ATcompatibility_alias] = ACTIONS(1477), - [anon_sym_ATprotocol] = ACTIONS(1477), - [anon_sym_ATclass] = ACTIONS(1477), - [anon_sym_ATinterface] = ACTIONS(1477), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1479), - [sym_method_attribute_specifier] = ACTIONS(1479), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1479), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1479), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1479), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1479), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1479), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1479), - [anon_sym_NS_AVAILABLE] = ACTIONS(1479), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1479), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1479), - [anon_sym_API_AVAILABLE] = ACTIONS(1479), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1479), - [anon_sym_API_DEPRECATED] = ACTIONS(1479), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1479), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1479), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1479), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1479), - [anon_sym___deprecated_msg] = ACTIONS(1479), - [anon_sym___deprecated_enum_msg] = ACTIONS(1479), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1479), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1479), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1479), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1479), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1479), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1479), - [anon_sym_ATimplementation] = ACTIONS(1477), - [anon_sym_typeof] = ACTIONS(1479), - [anon_sym___typeof] = ACTIONS(1479), - [anon_sym___typeof__] = ACTIONS(1479), - [sym_self] = ACTIONS(1479), - [sym_super] = ACTIONS(1479), - [sym_nil] = ACTIONS(1479), - [sym_id] = ACTIONS(1479), - [sym_instancetype] = ACTIONS(1479), - [sym_Class] = ACTIONS(1479), - [sym_SEL] = ACTIONS(1479), - [sym_IMP] = ACTIONS(1479), - [sym_BOOL] = ACTIONS(1479), - [sym_auto] = ACTIONS(1479), - [anon_sym_ATautoreleasepool] = ACTIONS(1477), - [anon_sym_ATsynchronized] = ACTIONS(1477), - [anon_sym_ATtry] = ACTIONS(1477), - [anon_sym_ATcatch] = ACTIONS(1477), - [anon_sym_ATfinally] = ACTIONS(1477), - [anon_sym_ATthrow] = ACTIONS(1477), - [anon_sym_ATselector] = ACTIONS(1477), - [anon_sym_ATencode] = ACTIONS(1477), - [anon_sym_AT] = ACTIONS(1479), - [sym_YES] = ACTIONS(1479), - [sym_NO] = ACTIONS(1479), - [anon_sym___builtin_available] = ACTIONS(1479), - [anon_sym_ATavailable] = ACTIONS(1477), - [anon_sym_va_arg] = ACTIONS(1479), + [anon_sym_POUNDimport] = ACTIONS(1339), + [anon_sym_ATimport] = ACTIONS(1339), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1341), + [anon_sym_ATcompatibility_alias] = ACTIONS(1339), + [anon_sym_ATprotocol] = ACTIONS(1339), + [anon_sym_ATclass] = ACTIONS(1339), + [anon_sym_ATinterface] = ACTIONS(1339), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1341), + [sym_method_attribute_specifier] = ACTIONS(1341), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1341), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1341), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1341), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1341), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1341), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1341), + [anon_sym_NS_AVAILABLE] = ACTIONS(1341), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1341), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1341), + [anon_sym_API_AVAILABLE] = ACTIONS(1341), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1341), + [anon_sym_API_DEPRECATED] = ACTIONS(1341), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1341), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1341), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1341), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1341), + [anon_sym___deprecated_msg] = ACTIONS(1341), + [anon_sym___deprecated_enum_msg] = ACTIONS(1341), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1341), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1341), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1341), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1341), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1341), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1341), + [anon_sym_ATimplementation] = ACTIONS(1339), + [anon_sym_NS_ENUM] = ACTIONS(1341), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1341), + [anon_sym_NS_OPTIONS] = ACTIONS(1341), + [anon_sym_typeof] = ACTIONS(1341), + [anon_sym___typeof] = ACTIONS(1341), + [anon_sym___typeof__] = ACTIONS(1341), + [sym_self] = ACTIONS(1341), + [sym_super] = ACTIONS(1341), + [sym_nil] = ACTIONS(1341), + [sym_id] = ACTIONS(1341), + [sym_instancetype] = ACTIONS(1341), + [sym_Class] = ACTIONS(1341), + [sym_SEL] = ACTIONS(1341), + [sym_IMP] = ACTIONS(1341), + [sym_BOOL] = ACTIONS(1341), + [sym_auto] = ACTIONS(1341), + [anon_sym_ATautoreleasepool] = ACTIONS(1339), + [anon_sym_ATsynchronized] = ACTIONS(1339), + [anon_sym_ATtry] = ACTIONS(1339), + [anon_sym_ATcatch] = ACTIONS(1339), + [anon_sym_ATfinally] = ACTIONS(1339), + [anon_sym_ATthrow] = ACTIONS(1339), + [anon_sym_ATselector] = ACTIONS(1339), + [anon_sym_ATencode] = ACTIONS(1339), + [anon_sym_AT] = ACTIONS(1341), + [sym_YES] = ACTIONS(1341), + [sym_NO] = ACTIONS(1341), + [anon_sym___builtin_available] = ACTIONS(1341), + [anon_sym_ATavailable] = ACTIONS(1339), + [anon_sym_va_arg] = ACTIONS(1341), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -66666,176 +63332,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [233] = { - [ts_builtin_sym_end] = ACTIONS(1589), - [sym_identifier] = ACTIONS(1591), - [aux_sym_preproc_include_token1] = ACTIONS(1589), - [aux_sym_preproc_def_token1] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1589), - [aux_sym_preproc_if_token1] = ACTIONS(1591), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_CARET] = ACTIONS(1589), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_typedef] = ACTIONS(1591), - [anon_sym_extern] = ACTIONS(1591), - [anon_sym___attribute] = ACTIONS(1591), - [anon_sym___attribute__] = ACTIONS(1591), - [anon_sym___declspec] = ACTIONS(1591), - [anon_sym___cdecl] = ACTIONS(1591), - [anon_sym___clrcall] = ACTIONS(1591), - [anon_sym___stdcall] = ACTIONS(1591), - [anon_sym___fastcall] = ACTIONS(1591), - [anon_sym___thiscall] = ACTIONS(1591), - [anon_sym___vectorcall] = ACTIONS(1591), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1591), - [anon_sym_auto] = ACTIONS(1591), - [anon_sym_register] = ACTIONS(1591), - [anon_sym_inline] = ACTIONS(1591), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1591), - [anon_sym_const] = ACTIONS(1591), - [anon_sym_volatile] = ACTIONS(1591), - [anon_sym_restrict] = ACTIONS(1591), - [anon_sym__Atomic] = ACTIONS(1591), - [anon_sym_in] = ACTIONS(1591), - [anon_sym_out] = ACTIONS(1591), - [anon_sym_inout] = ACTIONS(1591), - [anon_sym_bycopy] = ACTIONS(1591), - [anon_sym_byref] = ACTIONS(1591), - [anon_sym_oneway] = ACTIONS(1591), - [anon_sym__Nullable] = ACTIONS(1591), - [anon_sym__Nonnull] = ACTIONS(1591), - [anon_sym__Nullable_result] = ACTIONS(1591), - [anon_sym__Null_unspecified] = ACTIONS(1591), - [anon_sym___autoreleasing] = ACTIONS(1591), - [anon_sym___nullable] = ACTIONS(1591), - [anon_sym___nonnull] = ACTIONS(1591), - [anon_sym___strong] = ACTIONS(1591), - [anon_sym___weak] = ACTIONS(1591), - [anon_sym___bridge] = ACTIONS(1591), - [anon_sym___bridge_transfer] = ACTIONS(1591), - [anon_sym___bridge_retained] = ACTIONS(1591), - [anon_sym___unsafe_unretained] = ACTIONS(1591), - [anon_sym___block] = ACTIONS(1591), - [anon_sym___kindof] = ACTIONS(1591), - [anon_sym___unused] = ACTIONS(1591), - [anon_sym__Complex] = ACTIONS(1591), - [anon_sym___complex] = ACTIONS(1591), - [anon_sym_IBOutlet] = ACTIONS(1591), - [anon_sym_IBInspectable] = ACTIONS(1591), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1591), - [anon_sym_signed] = ACTIONS(1591), - [anon_sym_unsigned] = ACTIONS(1591), - [anon_sym_long] = ACTIONS(1591), - [anon_sym_short] = ACTIONS(1591), - [sym_primitive_type] = ACTIONS(1591), - [anon_sym_enum] = ACTIONS(1591), - [anon_sym_NS_ENUM] = ACTIONS(1591), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1591), - [anon_sym_NS_OPTIONS] = ACTIONS(1591), - [anon_sym_struct] = ACTIONS(1591), - [anon_sym_union] = ACTIONS(1591), - [anon_sym_if] = ACTIONS(1591), - [anon_sym_else] = ACTIONS(1591), - [anon_sym_switch] = ACTIONS(1591), - [anon_sym_case] = ACTIONS(1591), - [anon_sym_default] = ACTIONS(1591), - [anon_sym_while] = ACTIONS(1591), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1591), - [anon_sym_return] = ACTIONS(1591), - [anon_sym_break] = ACTIONS(1591), - [anon_sym_continue] = ACTIONS(1591), - [anon_sym_goto] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_sizeof] = ACTIONS(1591), - [sym_number_literal] = ACTIONS(1589), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1589), - [anon_sym_u_DQUOTE] = ACTIONS(1589), - [anon_sym_U_DQUOTE] = ACTIONS(1589), - [anon_sym_u8_DQUOTE] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym_true] = ACTIONS(1591), - [sym_false] = ACTIONS(1591), - [sym_null] = ACTIONS(1591), + [214] = { + [ts_builtin_sym_end] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), + [aux_sym_preproc_include_token1] = ACTIONS(1571), + [aux_sym_preproc_def_token1] = ACTIONS(1571), + [anon_sym_RPAREN] = ACTIONS(1571), + [aux_sym_preproc_if_token1] = ACTIONS(1573), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1573), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1573), + [anon_sym_LPAREN2] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_typedef] = ACTIONS(1573), + [anon_sym_extern] = ACTIONS(1573), + [anon_sym___attribute] = ACTIONS(1573), + [anon_sym___attribute__] = ACTIONS(1573), + [anon_sym___declspec] = ACTIONS(1573), + [anon_sym___cdecl] = ACTIONS(1573), + [anon_sym___clrcall] = ACTIONS(1573), + [anon_sym___stdcall] = ACTIONS(1573), + [anon_sym___fastcall] = ACTIONS(1573), + [anon_sym___thiscall] = ACTIONS(1573), + [anon_sym___vectorcall] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_auto] = ACTIONS(1573), + [anon_sym_register] = ACTIONS(1573), + [anon_sym_inline] = ACTIONS(1573), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_volatile] = ACTIONS(1573), + [anon_sym_restrict] = ACTIONS(1573), + [anon_sym__Atomic] = ACTIONS(1573), + [anon_sym_in] = ACTIONS(1573), + [anon_sym_out] = ACTIONS(1573), + [anon_sym_inout] = ACTIONS(1573), + [anon_sym_bycopy] = ACTIONS(1573), + [anon_sym_byref] = ACTIONS(1573), + [anon_sym_oneway] = ACTIONS(1573), + [anon_sym__Nullable] = ACTIONS(1573), + [anon_sym__Nonnull] = ACTIONS(1573), + [anon_sym__Nullable_result] = ACTIONS(1573), + [anon_sym__Null_unspecified] = ACTIONS(1573), + [anon_sym___autoreleasing] = ACTIONS(1573), + [anon_sym___nullable] = ACTIONS(1573), + [anon_sym___nonnull] = ACTIONS(1573), + [anon_sym___strong] = ACTIONS(1573), + [anon_sym___weak] = ACTIONS(1573), + [anon_sym___bridge] = ACTIONS(1573), + [anon_sym___bridge_transfer] = ACTIONS(1573), + [anon_sym___bridge_retained] = ACTIONS(1573), + [anon_sym___unsafe_unretained] = ACTIONS(1573), + [anon_sym___block] = ACTIONS(1573), + [anon_sym___kindof] = ACTIONS(1573), + [anon_sym___unused] = ACTIONS(1573), + [anon_sym__Complex] = ACTIONS(1573), + [anon_sym___complex] = ACTIONS(1573), + [anon_sym_IBOutlet] = ACTIONS(1573), + [anon_sym_IBInspectable] = ACTIONS(1573), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1573), + [anon_sym_signed] = ACTIONS(1573), + [anon_sym_unsigned] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [sym_primitive_type] = ACTIONS(1573), + [anon_sym_enum] = ACTIONS(1573), + [anon_sym_struct] = ACTIONS(1573), + [anon_sym_union] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_else] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_case] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_goto] = ACTIONS(1573), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_sizeof] = ACTIONS(1573), + [sym_number_literal] = ACTIONS(1571), + [anon_sym_L_SQUOTE] = ACTIONS(1571), + [anon_sym_u_SQUOTE] = ACTIONS(1571), + [anon_sym_U_SQUOTE] = ACTIONS(1571), + [anon_sym_u8_SQUOTE] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_L_DQUOTE] = ACTIONS(1571), + [anon_sym_u_DQUOTE] = ACTIONS(1571), + [anon_sym_U_DQUOTE] = ACTIONS(1571), + [anon_sym_u8_DQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym_true] = ACTIONS(1573), + [sym_false] = ACTIONS(1573), + [sym_null] = ACTIONS(1573), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1589), - [anon_sym_ATimport] = ACTIONS(1589), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1591), - [anon_sym_ATcompatibility_alias] = ACTIONS(1589), - [anon_sym_ATprotocol] = ACTIONS(1589), - [anon_sym_ATclass] = ACTIONS(1589), - [anon_sym_ATinterface] = ACTIONS(1589), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1591), - [sym_method_attribute_specifier] = ACTIONS(1591), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1591), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1591), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1591), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1591), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1591), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1591), - [anon_sym_NS_AVAILABLE] = ACTIONS(1591), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1591), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1591), - [anon_sym_API_AVAILABLE] = ACTIONS(1591), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1591), - [anon_sym_API_DEPRECATED] = ACTIONS(1591), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1591), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1591), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1591), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1591), - [anon_sym___deprecated_msg] = ACTIONS(1591), - [anon_sym___deprecated_enum_msg] = ACTIONS(1591), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1591), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1591), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1591), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1591), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1591), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1591), - [anon_sym_ATimplementation] = ACTIONS(1589), - [anon_sym_typeof] = ACTIONS(1591), - [anon_sym___typeof] = ACTIONS(1591), - [anon_sym___typeof__] = ACTIONS(1591), - [sym_self] = ACTIONS(1591), - [sym_super] = ACTIONS(1591), - [sym_nil] = ACTIONS(1591), - [sym_id] = ACTIONS(1591), - [sym_instancetype] = ACTIONS(1591), - [sym_Class] = ACTIONS(1591), - [sym_SEL] = ACTIONS(1591), - [sym_IMP] = ACTIONS(1591), - [sym_BOOL] = ACTIONS(1591), - [sym_auto] = ACTIONS(1591), - [anon_sym_ATautoreleasepool] = ACTIONS(1589), - [anon_sym_ATsynchronized] = ACTIONS(1589), - [anon_sym_ATtry] = ACTIONS(1589), - [anon_sym_ATcatch] = ACTIONS(1589), - [anon_sym_ATfinally] = ACTIONS(1589), - [anon_sym_ATthrow] = ACTIONS(1589), - [anon_sym_ATselector] = ACTIONS(1589), - [anon_sym_ATencode] = ACTIONS(1589), - [anon_sym_AT] = ACTIONS(1591), - [sym_YES] = ACTIONS(1591), - [sym_NO] = ACTIONS(1591), - [anon_sym___builtin_available] = ACTIONS(1591), - [anon_sym_ATavailable] = ACTIONS(1589), - [anon_sym_va_arg] = ACTIONS(1591), + [anon_sym_POUNDimport] = ACTIONS(1571), + [anon_sym_ATimport] = ACTIONS(1571), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1573), + [anon_sym_ATcompatibility_alias] = ACTIONS(1571), + [anon_sym_ATprotocol] = ACTIONS(1571), + [anon_sym_ATclass] = ACTIONS(1571), + [anon_sym_ATinterface] = ACTIONS(1571), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1573), + [sym_method_attribute_specifier] = ACTIONS(1573), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1573), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1573), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1573), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1573), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1573), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1573), + [anon_sym_NS_AVAILABLE] = ACTIONS(1573), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1573), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1573), + [anon_sym_API_AVAILABLE] = ACTIONS(1573), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1573), + [anon_sym_API_DEPRECATED] = ACTIONS(1573), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1573), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1573), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1573), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1573), + [anon_sym___deprecated_msg] = ACTIONS(1573), + [anon_sym___deprecated_enum_msg] = ACTIONS(1573), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1573), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1573), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1573), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1573), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1573), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1573), + [anon_sym_ATimplementation] = ACTIONS(1571), + [anon_sym_NS_ENUM] = ACTIONS(1573), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1573), + [anon_sym_NS_OPTIONS] = ACTIONS(1573), + [anon_sym_typeof] = ACTIONS(1573), + [anon_sym___typeof] = ACTIONS(1573), + [anon_sym___typeof__] = ACTIONS(1573), + [sym_self] = ACTIONS(1573), + [sym_super] = ACTIONS(1573), + [sym_nil] = ACTIONS(1573), + [sym_id] = ACTIONS(1573), + [sym_instancetype] = ACTIONS(1573), + [sym_Class] = ACTIONS(1573), + [sym_SEL] = ACTIONS(1573), + [sym_IMP] = ACTIONS(1573), + [sym_BOOL] = ACTIONS(1573), + [sym_auto] = ACTIONS(1573), + [anon_sym_ATautoreleasepool] = ACTIONS(1571), + [anon_sym_ATsynchronized] = ACTIONS(1571), + [anon_sym_ATtry] = ACTIONS(1571), + [anon_sym_ATcatch] = ACTIONS(1571), + [anon_sym_ATfinally] = ACTIONS(1571), + [anon_sym_ATthrow] = ACTIONS(1571), + [anon_sym_ATselector] = ACTIONS(1571), + [anon_sym_ATencode] = ACTIONS(1571), + [anon_sym_AT] = ACTIONS(1573), + [sym_YES] = ACTIONS(1573), + [sym_NO] = ACTIONS(1573), + [anon_sym___builtin_available] = ACTIONS(1573), + [anon_sym_ATavailable] = ACTIONS(1571), + [anon_sym_va_arg] = ACTIONS(1573), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -66843,176 +63509,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [234] = { - [sym_identifier] = ACTIONS(1483), - [aux_sym_preproc_include_token1] = ACTIONS(1481), - [aux_sym_preproc_def_token1] = ACTIONS(1481), - [aux_sym_preproc_if_token1] = ACTIONS(1483), - [aux_sym_preproc_if_token2] = ACTIONS(1483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1483), - [aux_sym_preproc_else_token1] = ACTIONS(1483), - [aux_sym_preproc_elif_token1] = ACTIONS(1483), - [anon_sym_LPAREN2] = ACTIONS(1481), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_CARET] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_typedef] = ACTIONS(1483), - [anon_sym_extern] = ACTIONS(1483), - [anon_sym___attribute] = ACTIONS(1483), - [anon_sym___attribute__] = ACTIONS(1483), - [anon_sym___declspec] = ACTIONS(1483), - [anon_sym___cdecl] = ACTIONS(1483), - [anon_sym___clrcall] = ACTIONS(1483), - [anon_sym___stdcall] = ACTIONS(1483), - [anon_sym___fastcall] = ACTIONS(1483), - [anon_sym___thiscall] = ACTIONS(1483), - [anon_sym___vectorcall] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_auto] = ACTIONS(1483), - [anon_sym_register] = ACTIONS(1483), - [anon_sym_inline] = ACTIONS(1483), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_volatile] = ACTIONS(1483), - [anon_sym_restrict] = ACTIONS(1483), - [anon_sym__Atomic] = ACTIONS(1483), - [anon_sym_in] = ACTIONS(1483), - [anon_sym_out] = ACTIONS(1483), - [anon_sym_inout] = ACTIONS(1483), - [anon_sym_bycopy] = ACTIONS(1483), - [anon_sym_byref] = ACTIONS(1483), - [anon_sym_oneway] = ACTIONS(1483), - [anon_sym__Nullable] = ACTIONS(1483), - [anon_sym__Nonnull] = ACTIONS(1483), - [anon_sym__Nullable_result] = ACTIONS(1483), - [anon_sym__Null_unspecified] = ACTIONS(1483), - [anon_sym___autoreleasing] = ACTIONS(1483), - [anon_sym___nullable] = ACTIONS(1483), - [anon_sym___nonnull] = ACTIONS(1483), - [anon_sym___strong] = ACTIONS(1483), - [anon_sym___weak] = ACTIONS(1483), - [anon_sym___bridge] = ACTIONS(1483), - [anon_sym___bridge_transfer] = ACTIONS(1483), - [anon_sym___bridge_retained] = ACTIONS(1483), - [anon_sym___unsafe_unretained] = ACTIONS(1483), - [anon_sym___block] = ACTIONS(1483), - [anon_sym___kindof] = ACTIONS(1483), - [anon_sym___unused] = ACTIONS(1483), - [anon_sym__Complex] = ACTIONS(1483), - [anon_sym___complex] = ACTIONS(1483), - [anon_sym_IBOutlet] = ACTIONS(1483), - [anon_sym_IBInspectable] = ACTIONS(1483), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1483), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [sym_primitive_type] = ACTIONS(1483), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_NS_ENUM] = ACTIONS(1483), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1483), - [anon_sym_NS_OPTIONS] = ACTIONS(1483), - [anon_sym_struct] = ACTIONS(1483), - [anon_sym_union] = ACTIONS(1483), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_else] = ACTIONS(1483), - [anon_sym_switch] = ACTIONS(1483), - [anon_sym_case] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_goto] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [sym_number_literal] = ACTIONS(1481), - [anon_sym_L_SQUOTE] = ACTIONS(1481), - [anon_sym_u_SQUOTE] = ACTIONS(1481), - [anon_sym_U_SQUOTE] = ACTIONS(1481), - [anon_sym_u8_SQUOTE] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_L_DQUOTE] = ACTIONS(1481), - [anon_sym_u_DQUOTE] = ACTIONS(1481), - [anon_sym_U_DQUOTE] = ACTIONS(1481), - [anon_sym_u8_DQUOTE] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [sym_true] = ACTIONS(1483), - [sym_false] = ACTIONS(1483), - [sym_null] = ACTIONS(1483), + [215] = { + [sym_identifier] = ACTIONS(1333), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1333), + [aux_sym_preproc_if_token2] = ACTIONS(1333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1333), + [aux_sym_preproc_else_token1] = ACTIONS(1333), + [aux_sym_preproc_elif_token1] = ACTIONS(1333), + [anon_sym_LPAREN2] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1333), + [anon_sym_extern] = ACTIONS(1333), + [anon_sym___attribute] = ACTIONS(1333), + [anon_sym___attribute__] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1333), + [anon_sym___cdecl] = ACTIONS(1333), + [anon_sym___clrcall] = ACTIONS(1333), + [anon_sym___stdcall] = ACTIONS(1333), + [anon_sym___fastcall] = ACTIONS(1333), + [anon_sym___thiscall] = ACTIONS(1333), + [anon_sym___vectorcall] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1333), + [anon_sym_auto] = ACTIONS(1333), + [anon_sym_register] = ACTIONS(1333), + [anon_sym_inline] = ACTIONS(1333), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [anon_sym_volatile] = ACTIONS(1333), + [anon_sym_restrict] = ACTIONS(1333), + [anon_sym__Atomic] = ACTIONS(1333), + [anon_sym_in] = ACTIONS(1333), + [anon_sym_out] = ACTIONS(1333), + [anon_sym_inout] = ACTIONS(1333), + [anon_sym_bycopy] = ACTIONS(1333), + [anon_sym_byref] = ACTIONS(1333), + [anon_sym_oneway] = ACTIONS(1333), + [anon_sym__Nullable] = ACTIONS(1333), + [anon_sym__Nonnull] = ACTIONS(1333), + [anon_sym__Nullable_result] = ACTIONS(1333), + [anon_sym__Null_unspecified] = ACTIONS(1333), + [anon_sym___autoreleasing] = ACTIONS(1333), + [anon_sym___nullable] = ACTIONS(1333), + [anon_sym___nonnull] = ACTIONS(1333), + [anon_sym___strong] = ACTIONS(1333), + [anon_sym___weak] = ACTIONS(1333), + [anon_sym___bridge] = ACTIONS(1333), + [anon_sym___bridge_transfer] = ACTIONS(1333), + [anon_sym___bridge_retained] = ACTIONS(1333), + [anon_sym___unsafe_unretained] = ACTIONS(1333), + [anon_sym___block] = ACTIONS(1333), + [anon_sym___kindof] = ACTIONS(1333), + [anon_sym___unused] = ACTIONS(1333), + [anon_sym__Complex] = ACTIONS(1333), + [anon_sym___complex] = ACTIONS(1333), + [anon_sym_IBOutlet] = ACTIONS(1333), + [anon_sym_IBInspectable] = ACTIONS(1333), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1333), + [anon_sym_unsigned] = ACTIONS(1333), + [anon_sym_long] = ACTIONS(1333), + [anon_sym_short] = ACTIONS(1333), + [sym_primitive_type] = ACTIONS(1333), + [anon_sym_enum] = ACTIONS(1333), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1333), + [anon_sym_switch] = ACTIONS(1333), + [anon_sym_case] = ACTIONS(1333), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_do] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_goto] = ACTIONS(1333), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(1333), + [sym_number_literal] = ACTIONS(1331), + [anon_sym_L_SQUOTE] = ACTIONS(1331), + [anon_sym_u_SQUOTE] = ACTIONS(1331), + [anon_sym_U_SQUOTE] = ACTIONS(1331), + [anon_sym_u8_SQUOTE] = ACTIONS(1331), + [anon_sym_SQUOTE] = ACTIONS(1331), + [anon_sym_L_DQUOTE] = ACTIONS(1331), + [anon_sym_u_DQUOTE] = ACTIONS(1331), + [anon_sym_U_DQUOTE] = ACTIONS(1331), + [anon_sym_u8_DQUOTE] = ACTIONS(1331), + [anon_sym_DQUOTE] = ACTIONS(1331), + [sym_true] = ACTIONS(1333), + [sym_false] = ACTIONS(1333), + [sym_null] = ACTIONS(1333), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1481), - [anon_sym_ATimport] = ACTIONS(1481), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1483), - [anon_sym_ATcompatibility_alias] = ACTIONS(1481), - [anon_sym_ATprotocol] = ACTIONS(1481), - [anon_sym_ATclass] = ACTIONS(1481), - [anon_sym_ATinterface] = ACTIONS(1481), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1483), - [sym_method_attribute_specifier] = ACTIONS(1483), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1483), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1483), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1483), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1483), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1483), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1483), - [anon_sym_NS_AVAILABLE] = ACTIONS(1483), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1483), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1483), - [anon_sym_API_AVAILABLE] = ACTIONS(1483), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1483), - [anon_sym_API_DEPRECATED] = ACTIONS(1483), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1483), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1483), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1483), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1483), - [anon_sym___deprecated_msg] = ACTIONS(1483), - [anon_sym___deprecated_enum_msg] = ACTIONS(1483), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1483), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1483), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1483), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1483), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1483), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1483), - [anon_sym_ATimplementation] = ACTIONS(1481), - [anon_sym_typeof] = ACTIONS(1483), - [anon_sym___typeof] = ACTIONS(1483), - [anon_sym___typeof__] = ACTIONS(1483), - [sym_self] = ACTIONS(1483), - [sym_super] = ACTIONS(1483), - [sym_nil] = ACTIONS(1483), - [sym_id] = ACTIONS(1483), - [sym_instancetype] = ACTIONS(1483), - [sym_Class] = ACTIONS(1483), - [sym_SEL] = ACTIONS(1483), - [sym_IMP] = ACTIONS(1483), - [sym_BOOL] = ACTIONS(1483), - [sym_auto] = ACTIONS(1483), - [anon_sym_ATautoreleasepool] = ACTIONS(1481), - [anon_sym_ATsynchronized] = ACTIONS(1481), - [anon_sym_ATtry] = ACTIONS(1481), - [anon_sym_ATcatch] = ACTIONS(1481), - [anon_sym_ATfinally] = ACTIONS(1481), - [anon_sym_ATthrow] = ACTIONS(1481), - [anon_sym_ATselector] = ACTIONS(1481), - [anon_sym_ATencode] = ACTIONS(1481), - [anon_sym_AT] = ACTIONS(1483), - [sym_YES] = ACTIONS(1483), - [sym_NO] = ACTIONS(1483), - [anon_sym___builtin_available] = ACTIONS(1483), - [anon_sym_ATavailable] = ACTIONS(1481), - [anon_sym_va_arg] = ACTIONS(1483), + [anon_sym_POUNDimport] = ACTIONS(1331), + [anon_sym_ATimport] = ACTIONS(1331), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1333), + [anon_sym_ATcompatibility_alias] = ACTIONS(1331), + [anon_sym_ATprotocol] = ACTIONS(1331), + [anon_sym_ATclass] = ACTIONS(1331), + [anon_sym_ATinterface] = ACTIONS(1331), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1333), + [sym_method_attribute_specifier] = ACTIONS(1333), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1333), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1333), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1333), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1333), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1333), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1333), + [anon_sym_NS_AVAILABLE] = ACTIONS(1333), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1333), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1333), + [anon_sym_API_AVAILABLE] = ACTIONS(1333), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1333), + [anon_sym_API_DEPRECATED] = ACTIONS(1333), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1333), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1333), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1333), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1333), + [anon_sym___deprecated_msg] = ACTIONS(1333), + [anon_sym___deprecated_enum_msg] = ACTIONS(1333), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1333), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1333), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1333), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1333), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1333), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1333), + [anon_sym_ATimplementation] = ACTIONS(1331), + [anon_sym_NS_ENUM] = ACTIONS(1333), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1333), + [anon_sym_NS_OPTIONS] = ACTIONS(1333), + [anon_sym_typeof] = ACTIONS(1333), + [anon_sym___typeof] = ACTIONS(1333), + [anon_sym___typeof__] = ACTIONS(1333), + [sym_self] = ACTIONS(1333), + [sym_super] = ACTIONS(1333), + [sym_nil] = ACTIONS(1333), + [sym_id] = ACTIONS(1333), + [sym_instancetype] = ACTIONS(1333), + [sym_Class] = ACTIONS(1333), + [sym_SEL] = ACTIONS(1333), + [sym_IMP] = ACTIONS(1333), + [sym_BOOL] = ACTIONS(1333), + [sym_auto] = ACTIONS(1333), + [anon_sym_ATautoreleasepool] = ACTIONS(1331), + [anon_sym_ATsynchronized] = ACTIONS(1331), + [anon_sym_ATtry] = ACTIONS(1331), + [anon_sym_ATcatch] = ACTIONS(1331), + [anon_sym_ATfinally] = ACTIONS(1331), + [anon_sym_ATthrow] = ACTIONS(1331), + [anon_sym_ATselector] = ACTIONS(1331), + [anon_sym_ATencode] = ACTIONS(1331), + [anon_sym_AT] = ACTIONS(1333), + [sym_YES] = ACTIONS(1333), + [sym_NO] = ACTIONS(1333), + [anon_sym___builtin_available] = ACTIONS(1333), + [anon_sym_ATavailable] = ACTIONS(1331), + [anon_sym_va_arg] = ACTIONS(1333), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -67020,176 +63686,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [235] = { - [sym_identifier] = ACTIONS(1487), - [aux_sym_preproc_include_token1] = ACTIONS(1485), - [aux_sym_preproc_def_token1] = ACTIONS(1485), - [aux_sym_preproc_if_token1] = ACTIONS(1487), - [aux_sym_preproc_if_token2] = ACTIONS(1487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1487), - [aux_sym_preproc_else_token1] = ACTIONS(1487), - [aux_sym_preproc_elif_token1] = ACTIONS(1487), - [anon_sym_LPAREN2] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_typedef] = ACTIONS(1487), - [anon_sym_extern] = ACTIONS(1487), - [anon_sym___attribute] = ACTIONS(1487), - [anon_sym___attribute__] = ACTIONS(1487), - [anon_sym___declspec] = ACTIONS(1487), - [anon_sym___cdecl] = ACTIONS(1487), - [anon_sym___clrcall] = ACTIONS(1487), - [anon_sym___stdcall] = ACTIONS(1487), - [anon_sym___fastcall] = ACTIONS(1487), - [anon_sym___thiscall] = ACTIONS(1487), - [anon_sym___vectorcall] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_auto] = ACTIONS(1487), - [anon_sym_register] = ACTIONS(1487), - [anon_sym_inline] = ACTIONS(1487), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_volatile] = ACTIONS(1487), - [anon_sym_restrict] = ACTIONS(1487), - [anon_sym__Atomic] = ACTIONS(1487), - [anon_sym_in] = ACTIONS(1487), - [anon_sym_out] = ACTIONS(1487), - [anon_sym_inout] = ACTIONS(1487), - [anon_sym_bycopy] = ACTIONS(1487), - [anon_sym_byref] = ACTIONS(1487), - [anon_sym_oneway] = ACTIONS(1487), - [anon_sym__Nullable] = ACTIONS(1487), - [anon_sym__Nonnull] = ACTIONS(1487), - [anon_sym__Nullable_result] = ACTIONS(1487), - [anon_sym__Null_unspecified] = ACTIONS(1487), - [anon_sym___autoreleasing] = ACTIONS(1487), - [anon_sym___nullable] = ACTIONS(1487), - [anon_sym___nonnull] = ACTIONS(1487), - [anon_sym___strong] = ACTIONS(1487), - [anon_sym___weak] = ACTIONS(1487), - [anon_sym___bridge] = ACTIONS(1487), - [anon_sym___bridge_transfer] = ACTIONS(1487), - [anon_sym___bridge_retained] = ACTIONS(1487), - [anon_sym___unsafe_unretained] = ACTIONS(1487), - [anon_sym___block] = ACTIONS(1487), - [anon_sym___kindof] = ACTIONS(1487), - [anon_sym___unused] = ACTIONS(1487), - [anon_sym__Complex] = ACTIONS(1487), - [anon_sym___complex] = ACTIONS(1487), - [anon_sym_IBOutlet] = ACTIONS(1487), - [anon_sym_IBInspectable] = ACTIONS(1487), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1487), - [anon_sym_signed] = ACTIONS(1487), - [anon_sym_unsigned] = ACTIONS(1487), - [anon_sym_long] = ACTIONS(1487), - [anon_sym_short] = ACTIONS(1487), - [sym_primitive_type] = ACTIONS(1487), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_NS_ENUM] = ACTIONS(1487), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1487), - [anon_sym_NS_OPTIONS] = ACTIONS(1487), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1487), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_else] = ACTIONS(1487), - [anon_sym_switch] = ACTIONS(1487), - [anon_sym_case] = ACTIONS(1487), - [anon_sym_default] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_do] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_goto] = ACTIONS(1487), - [anon_sym_DASH_DASH] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_sizeof] = ACTIONS(1487), - [sym_number_literal] = ACTIONS(1485), - [anon_sym_L_SQUOTE] = ACTIONS(1485), - [anon_sym_u_SQUOTE] = ACTIONS(1485), - [anon_sym_U_SQUOTE] = ACTIONS(1485), - [anon_sym_u8_SQUOTE] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_L_DQUOTE] = ACTIONS(1485), - [anon_sym_u_DQUOTE] = ACTIONS(1485), - [anon_sym_U_DQUOTE] = ACTIONS(1485), - [anon_sym_u8_DQUOTE] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [sym_true] = ACTIONS(1487), - [sym_false] = ACTIONS(1487), - [sym_null] = ACTIONS(1487), + [216] = { + [sym_identifier] = ACTIONS(1233), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1233), + [aux_sym_preproc_if_token2] = ACTIONS(1233), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1233), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1233), + [aux_sym_preproc_else_token1] = ACTIONS(1233), + [aux_sym_preproc_elif_token1] = ACTIONS(1233), + [anon_sym_LPAREN2] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1231), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1233), + [anon_sym_extern] = ACTIONS(1233), + [anon_sym___attribute] = ACTIONS(1233), + [anon_sym___attribute__] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1233), + [anon_sym___cdecl] = ACTIONS(1233), + [anon_sym___clrcall] = ACTIONS(1233), + [anon_sym___stdcall] = ACTIONS(1233), + [anon_sym___fastcall] = ACTIONS(1233), + [anon_sym___thiscall] = ACTIONS(1233), + [anon_sym___vectorcall] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1233), + [anon_sym_auto] = ACTIONS(1233), + [anon_sym_register] = ACTIONS(1233), + [anon_sym_inline] = ACTIONS(1233), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_volatile] = ACTIONS(1233), + [anon_sym_restrict] = ACTIONS(1233), + [anon_sym__Atomic] = ACTIONS(1233), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_out] = ACTIONS(1233), + [anon_sym_inout] = ACTIONS(1233), + [anon_sym_bycopy] = ACTIONS(1233), + [anon_sym_byref] = ACTIONS(1233), + [anon_sym_oneway] = ACTIONS(1233), + [anon_sym__Nullable] = ACTIONS(1233), + [anon_sym__Nonnull] = ACTIONS(1233), + [anon_sym__Nullable_result] = ACTIONS(1233), + [anon_sym__Null_unspecified] = ACTIONS(1233), + [anon_sym___autoreleasing] = ACTIONS(1233), + [anon_sym___nullable] = ACTIONS(1233), + [anon_sym___nonnull] = ACTIONS(1233), + [anon_sym___strong] = ACTIONS(1233), + [anon_sym___weak] = ACTIONS(1233), + [anon_sym___bridge] = ACTIONS(1233), + [anon_sym___bridge_transfer] = ACTIONS(1233), + [anon_sym___bridge_retained] = ACTIONS(1233), + [anon_sym___unsafe_unretained] = ACTIONS(1233), + [anon_sym___block] = ACTIONS(1233), + [anon_sym___kindof] = ACTIONS(1233), + [anon_sym___unused] = ACTIONS(1233), + [anon_sym__Complex] = ACTIONS(1233), + [anon_sym___complex] = ACTIONS(1233), + [anon_sym_IBOutlet] = ACTIONS(1233), + [anon_sym_IBInspectable] = ACTIONS(1233), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1233), + [anon_sym_unsigned] = ACTIONS(1233), + [anon_sym_long] = ACTIONS(1233), + [anon_sym_short] = ACTIONS(1233), + [sym_primitive_type] = ACTIONS(1233), + [anon_sym_enum] = ACTIONS(1233), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_union] = ACTIONS(1233), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_else] = ACTIONS(1233), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_break] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(1233), + [anon_sym_goto] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(1233), + [sym_number_literal] = ACTIONS(1231), + [anon_sym_L_SQUOTE] = ACTIONS(1231), + [anon_sym_u_SQUOTE] = ACTIONS(1231), + [anon_sym_U_SQUOTE] = ACTIONS(1231), + [anon_sym_u8_SQUOTE] = ACTIONS(1231), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_L_DQUOTE] = ACTIONS(1231), + [anon_sym_u_DQUOTE] = ACTIONS(1231), + [anon_sym_U_DQUOTE] = ACTIONS(1231), + [anon_sym_u8_DQUOTE] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym_true] = ACTIONS(1233), + [sym_false] = ACTIONS(1233), + [sym_null] = ACTIONS(1233), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1485), - [anon_sym_ATimport] = ACTIONS(1485), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1487), - [anon_sym_ATcompatibility_alias] = ACTIONS(1485), - [anon_sym_ATprotocol] = ACTIONS(1485), - [anon_sym_ATclass] = ACTIONS(1485), - [anon_sym_ATinterface] = ACTIONS(1485), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1487), - [sym_method_attribute_specifier] = ACTIONS(1487), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1487), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1487), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1487), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1487), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1487), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1487), - [anon_sym_NS_AVAILABLE] = ACTIONS(1487), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1487), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1487), - [anon_sym_API_AVAILABLE] = ACTIONS(1487), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1487), - [anon_sym_API_DEPRECATED] = ACTIONS(1487), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1487), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1487), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1487), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1487), - [anon_sym___deprecated_msg] = ACTIONS(1487), - [anon_sym___deprecated_enum_msg] = ACTIONS(1487), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1487), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1487), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1487), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1487), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1487), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1487), - [anon_sym_ATimplementation] = ACTIONS(1485), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym___typeof] = ACTIONS(1487), - [anon_sym___typeof__] = ACTIONS(1487), - [sym_self] = ACTIONS(1487), - [sym_super] = ACTIONS(1487), - [sym_nil] = ACTIONS(1487), - [sym_id] = ACTIONS(1487), - [sym_instancetype] = ACTIONS(1487), - [sym_Class] = ACTIONS(1487), - [sym_SEL] = ACTIONS(1487), - [sym_IMP] = ACTIONS(1487), - [sym_BOOL] = ACTIONS(1487), - [sym_auto] = ACTIONS(1487), - [anon_sym_ATautoreleasepool] = ACTIONS(1485), - [anon_sym_ATsynchronized] = ACTIONS(1485), - [anon_sym_ATtry] = ACTIONS(1485), - [anon_sym_ATcatch] = ACTIONS(1485), - [anon_sym_ATfinally] = ACTIONS(1485), - [anon_sym_ATthrow] = ACTIONS(1485), - [anon_sym_ATselector] = ACTIONS(1485), - [anon_sym_ATencode] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [sym_YES] = ACTIONS(1487), - [sym_NO] = ACTIONS(1487), - [anon_sym___builtin_available] = ACTIONS(1487), - [anon_sym_ATavailable] = ACTIONS(1485), - [anon_sym_va_arg] = ACTIONS(1487), + [anon_sym_POUNDimport] = ACTIONS(1231), + [anon_sym_ATimport] = ACTIONS(1231), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1233), + [anon_sym_ATcompatibility_alias] = ACTIONS(1231), + [anon_sym_ATprotocol] = ACTIONS(1231), + [anon_sym_ATclass] = ACTIONS(1231), + [anon_sym_ATinterface] = ACTIONS(1231), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1233), + [sym_method_attribute_specifier] = ACTIONS(1233), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1233), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1233), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1233), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1233), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1233), + [anon_sym_NS_AVAILABLE] = ACTIONS(1233), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1233), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_API_AVAILABLE] = ACTIONS(1233), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_API_DEPRECATED] = ACTIONS(1233), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1233), + [anon_sym___deprecated_msg] = ACTIONS(1233), + [anon_sym___deprecated_enum_msg] = ACTIONS(1233), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1233), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1233), + [anon_sym_ATimplementation] = ACTIONS(1231), + [anon_sym_NS_ENUM] = ACTIONS(1233), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1233), + [anon_sym_NS_OPTIONS] = ACTIONS(1233), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym___typeof] = ACTIONS(1233), + [anon_sym___typeof__] = ACTIONS(1233), + [sym_self] = ACTIONS(1233), + [sym_super] = ACTIONS(1233), + [sym_nil] = ACTIONS(1233), + [sym_id] = ACTIONS(1233), + [sym_instancetype] = ACTIONS(1233), + [sym_Class] = ACTIONS(1233), + [sym_SEL] = ACTIONS(1233), + [sym_IMP] = ACTIONS(1233), + [sym_BOOL] = ACTIONS(1233), + [sym_auto] = ACTIONS(1233), + [anon_sym_ATautoreleasepool] = ACTIONS(1231), + [anon_sym_ATsynchronized] = ACTIONS(1231), + [anon_sym_ATtry] = ACTIONS(1231), + [anon_sym_ATcatch] = ACTIONS(1231), + [anon_sym_ATfinally] = ACTIONS(1231), + [anon_sym_ATthrow] = ACTIONS(1231), + [anon_sym_ATselector] = ACTIONS(1231), + [anon_sym_ATencode] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1233), + [sym_YES] = ACTIONS(1233), + [sym_NO] = ACTIONS(1233), + [anon_sym___builtin_available] = ACTIONS(1233), + [anon_sym_ATavailable] = ACTIONS(1231), + [anon_sym_va_arg] = ACTIONS(1233), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -67197,176 +63863,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [236] = { - [sym_identifier] = ACTIONS(1555), - [aux_sym_preproc_include_token1] = ACTIONS(1553), - [aux_sym_preproc_def_token1] = ACTIONS(1553), - [aux_sym_preproc_if_token1] = ACTIONS(1555), - [aux_sym_preproc_if_token2] = ACTIONS(1555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1555), - [aux_sym_preproc_else_token1] = ACTIONS(1555), - [aux_sym_preproc_elif_token1] = ACTIONS(1555), - [anon_sym_LPAREN2] = ACTIONS(1553), - [anon_sym_BANG] = ACTIONS(1553), - [anon_sym_TILDE] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_PLUS] = ACTIONS(1555), - [anon_sym_STAR] = ACTIONS(1553), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_typedef] = ACTIONS(1555), - [anon_sym_extern] = ACTIONS(1555), - [anon_sym___attribute] = ACTIONS(1555), - [anon_sym___attribute__] = ACTIONS(1555), - [anon_sym___declspec] = ACTIONS(1555), - [anon_sym___cdecl] = ACTIONS(1555), - [anon_sym___clrcall] = ACTIONS(1555), - [anon_sym___stdcall] = ACTIONS(1555), - [anon_sym___fastcall] = ACTIONS(1555), - [anon_sym___thiscall] = ACTIONS(1555), - [anon_sym___vectorcall] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_static] = ACTIONS(1555), - [anon_sym_auto] = ACTIONS(1555), - [anon_sym_register] = ACTIONS(1555), - [anon_sym_inline] = ACTIONS(1555), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1555), - [anon_sym_const] = ACTIONS(1555), - [anon_sym_volatile] = ACTIONS(1555), - [anon_sym_restrict] = ACTIONS(1555), - [anon_sym__Atomic] = ACTIONS(1555), - [anon_sym_in] = ACTIONS(1555), - [anon_sym_out] = ACTIONS(1555), - [anon_sym_inout] = ACTIONS(1555), - [anon_sym_bycopy] = ACTIONS(1555), - [anon_sym_byref] = ACTIONS(1555), - [anon_sym_oneway] = ACTIONS(1555), - [anon_sym__Nullable] = ACTIONS(1555), - [anon_sym__Nonnull] = ACTIONS(1555), - [anon_sym__Nullable_result] = ACTIONS(1555), - [anon_sym__Null_unspecified] = ACTIONS(1555), - [anon_sym___autoreleasing] = ACTIONS(1555), - [anon_sym___nullable] = ACTIONS(1555), - [anon_sym___nonnull] = ACTIONS(1555), - [anon_sym___strong] = ACTIONS(1555), - [anon_sym___weak] = ACTIONS(1555), - [anon_sym___bridge] = ACTIONS(1555), - [anon_sym___bridge_transfer] = ACTIONS(1555), - [anon_sym___bridge_retained] = ACTIONS(1555), - [anon_sym___unsafe_unretained] = ACTIONS(1555), - [anon_sym___block] = ACTIONS(1555), - [anon_sym___kindof] = ACTIONS(1555), - [anon_sym___unused] = ACTIONS(1555), - [anon_sym__Complex] = ACTIONS(1555), - [anon_sym___complex] = ACTIONS(1555), - [anon_sym_IBOutlet] = ACTIONS(1555), - [anon_sym_IBInspectable] = ACTIONS(1555), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1555), - [anon_sym_signed] = ACTIONS(1555), - [anon_sym_unsigned] = ACTIONS(1555), - [anon_sym_long] = ACTIONS(1555), - [anon_sym_short] = ACTIONS(1555), - [sym_primitive_type] = ACTIONS(1555), - [anon_sym_enum] = ACTIONS(1555), - [anon_sym_NS_ENUM] = ACTIONS(1555), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1555), - [anon_sym_NS_OPTIONS] = ACTIONS(1555), - [anon_sym_struct] = ACTIONS(1555), - [anon_sym_union] = ACTIONS(1555), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_else] = ACTIONS(1555), - [anon_sym_switch] = ACTIONS(1555), - [anon_sym_case] = ACTIONS(1555), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_do] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_goto] = ACTIONS(1555), - [anon_sym_DASH_DASH] = ACTIONS(1553), - [anon_sym_PLUS_PLUS] = ACTIONS(1553), - [anon_sym_sizeof] = ACTIONS(1555), - [sym_number_literal] = ACTIONS(1553), - [anon_sym_L_SQUOTE] = ACTIONS(1553), - [anon_sym_u_SQUOTE] = ACTIONS(1553), - [anon_sym_U_SQUOTE] = ACTIONS(1553), - [anon_sym_u8_SQUOTE] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_L_DQUOTE] = ACTIONS(1553), - [anon_sym_u_DQUOTE] = ACTIONS(1553), - [anon_sym_U_DQUOTE] = ACTIONS(1553), - [anon_sym_u8_DQUOTE] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1553), - [sym_true] = ACTIONS(1555), - [sym_false] = ACTIONS(1555), - [sym_null] = ACTIONS(1555), + [217] = { + [sym_identifier] = ACTIONS(1233), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1233), + [aux_sym_preproc_if_token2] = ACTIONS(1233), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1233), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1233), + [aux_sym_preproc_else_token1] = ACTIONS(1233), + [aux_sym_preproc_elif_token1] = ACTIONS(1233), + [anon_sym_LPAREN2] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1231), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1233), + [anon_sym_extern] = ACTIONS(1233), + [anon_sym___attribute] = ACTIONS(1233), + [anon_sym___attribute__] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1233), + [anon_sym___cdecl] = ACTIONS(1233), + [anon_sym___clrcall] = ACTIONS(1233), + [anon_sym___stdcall] = ACTIONS(1233), + [anon_sym___fastcall] = ACTIONS(1233), + [anon_sym___thiscall] = ACTIONS(1233), + [anon_sym___vectorcall] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1233), + [anon_sym_auto] = ACTIONS(1233), + [anon_sym_register] = ACTIONS(1233), + [anon_sym_inline] = ACTIONS(1233), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_volatile] = ACTIONS(1233), + [anon_sym_restrict] = ACTIONS(1233), + [anon_sym__Atomic] = ACTIONS(1233), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_out] = ACTIONS(1233), + [anon_sym_inout] = ACTIONS(1233), + [anon_sym_bycopy] = ACTIONS(1233), + [anon_sym_byref] = ACTIONS(1233), + [anon_sym_oneway] = ACTIONS(1233), + [anon_sym__Nullable] = ACTIONS(1233), + [anon_sym__Nonnull] = ACTIONS(1233), + [anon_sym__Nullable_result] = ACTIONS(1233), + [anon_sym__Null_unspecified] = ACTIONS(1233), + [anon_sym___autoreleasing] = ACTIONS(1233), + [anon_sym___nullable] = ACTIONS(1233), + [anon_sym___nonnull] = ACTIONS(1233), + [anon_sym___strong] = ACTIONS(1233), + [anon_sym___weak] = ACTIONS(1233), + [anon_sym___bridge] = ACTIONS(1233), + [anon_sym___bridge_transfer] = ACTIONS(1233), + [anon_sym___bridge_retained] = ACTIONS(1233), + [anon_sym___unsafe_unretained] = ACTIONS(1233), + [anon_sym___block] = ACTIONS(1233), + [anon_sym___kindof] = ACTIONS(1233), + [anon_sym___unused] = ACTIONS(1233), + [anon_sym__Complex] = ACTIONS(1233), + [anon_sym___complex] = ACTIONS(1233), + [anon_sym_IBOutlet] = ACTIONS(1233), + [anon_sym_IBInspectable] = ACTIONS(1233), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1233), + [anon_sym_unsigned] = ACTIONS(1233), + [anon_sym_long] = ACTIONS(1233), + [anon_sym_short] = ACTIONS(1233), + [sym_primitive_type] = ACTIONS(1233), + [anon_sym_enum] = ACTIONS(1233), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_union] = ACTIONS(1233), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_else] = ACTIONS(1233), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_break] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(1233), + [anon_sym_goto] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(1233), + [sym_number_literal] = ACTIONS(1231), + [anon_sym_L_SQUOTE] = ACTIONS(1231), + [anon_sym_u_SQUOTE] = ACTIONS(1231), + [anon_sym_U_SQUOTE] = ACTIONS(1231), + [anon_sym_u8_SQUOTE] = ACTIONS(1231), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_L_DQUOTE] = ACTIONS(1231), + [anon_sym_u_DQUOTE] = ACTIONS(1231), + [anon_sym_U_DQUOTE] = ACTIONS(1231), + [anon_sym_u8_DQUOTE] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym_true] = ACTIONS(1233), + [sym_false] = ACTIONS(1233), + [sym_null] = ACTIONS(1233), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1553), - [anon_sym_ATimport] = ACTIONS(1553), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1555), - [anon_sym_ATcompatibility_alias] = ACTIONS(1553), - [anon_sym_ATprotocol] = ACTIONS(1553), - [anon_sym_ATclass] = ACTIONS(1553), - [anon_sym_ATinterface] = ACTIONS(1553), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1555), - [sym_method_attribute_specifier] = ACTIONS(1555), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1555), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1555), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1555), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1555), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1555), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1555), - [anon_sym_NS_AVAILABLE] = ACTIONS(1555), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1555), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1555), - [anon_sym_API_AVAILABLE] = ACTIONS(1555), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1555), - [anon_sym_API_DEPRECATED] = ACTIONS(1555), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1555), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1555), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1555), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1555), - [anon_sym___deprecated_msg] = ACTIONS(1555), - [anon_sym___deprecated_enum_msg] = ACTIONS(1555), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1555), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1555), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1555), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1555), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1555), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1555), - [anon_sym_ATimplementation] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), - [anon_sym___typeof] = ACTIONS(1555), - [anon_sym___typeof__] = ACTIONS(1555), - [sym_self] = ACTIONS(1555), - [sym_super] = ACTIONS(1555), - [sym_nil] = ACTIONS(1555), - [sym_id] = ACTIONS(1555), - [sym_instancetype] = ACTIONS(1555), - [sym_Class] = ACTIONS(1555), - [sym_SEL] = ACTIONS(1555), - [sym_IMP] = ACTIONS(1555), - [sym_BOOL] = ACTIONS(1555), - [sym_auto] = ACTIONS(1555), - [anon_sym_ATautoreleasepool] = ACTIONS(1553), - [anon_sym_ATsynchronized] = ACTIONS(1553), - [anon_sym_ATtry] = ACTIONS(1553), - [anon_sym_ATcatch] = ACTIONS(1553), - [anon_sym_ATfinally] = ACTIONS(1553), - [anon_sym_ATthrow] = ACTIONS(1553), - [anon_sym_ATselector] = ACTIONS(1553), - [anon_sym_ATencode] = ACTIONS(1553), - [anon_sym_AT] = ACTIONS(1555), - [sym_YES] = ACTIONS(1555), - [sym_NO] = ACTIONS(1555), - [anon_sym___builtin_available] = ACTIONS(1555), - [anon_sym_ATavailable] = ACTIONS(1553), - [anon_sym_va_arg] = ACTIONS(1555), + [anon_sym_POUNDimport] = ACTIONS(1231), + [anon_sym_ATimport] = ACTIONS(1231), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1233), + [anon_sym_ATcompatibility_alias] = ACTIONS(1231), + [anon_sym_ATprotocol] = ACTIONS(1231), + [anon_sym_ATclass] = ACTIONS(1231), + [anon_sym_ATinterface] = ACTIONS(1231), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1233), + [sym_method_attribute_specifier] = ACTIONS(1233), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1233), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1233), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1233), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1233), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1233), + [anon_sym_NS_AVAILABLE] = ACTIONS(1233), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1233), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_API_AVAILABLE] = ACTIONS(1233), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_API_DEPRECATED] = ACTIONS(1233), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1233), + [anon_sym___deprecated_msg] = ACTIONS(1233), + [anon_sym___deprecated_enum_msg] = ACTIONS(1233), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1233), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1233), + [anon_sym_ATimplementation] = ACTIONS(1231), + [anon_sym_NS_ENUM] = ACTIONS(1233), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1233), + [anon_sym_NS_OPTIONS] = ACTIONS(1233), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym___typeof] = ACTIONS(1233), + [anon_sym___typeof__] = ACTIONS(1233), + [sym_self] = ACTIONS(1233), + [sym_super] = ACTIONS(1233), + [sym_nil] = ACTIONS(1233), + [sym_id] = ACTIONS(1233), + [sym_instancetype] = ACTIONS(1233), + [sym_Class] = ACTIONS(1233), + [sym_SEL] = ACTIONS(1233), + [sym_IMP] = ACTIONS(1233), + [sym_BOOL] = ACTIONS(1233), + [sym_auto] = ACTIONS(1233), + [anon_sym_ATautoreleasepool] = ACTIONS(1231), + [anon_sym_ATsynchronized] = ACTIONS(1231), + [anon_sym_ATtry] = ACTIONS(1231), + [anon_sym_ATcatch] = ACTIONS(1231), + [anon_sym_ATfinally] = ACTIONS(1231), + [anon_sym_ATthrow] = ACTIONS(1231), + [anon_sym_ATselector] = ACTIONS(1231), + [anon_sym_ATencode] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1233), + [sym_YES] = ACTIONS(1233), + [sym_NO] = ACTIONS(1233), + [anon_sym___builtin_available] = ACTIONS(1233), + [anon_sym_ATavailable] = ACTIONS(1231), + [anon_sym_va_arg] = ACTIONS(1233), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -67374,1061 +64040,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [237] = { - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_include_token1] = ACTIONS(1581), - [aux_sym_preproc_def_token1] = ACTIONS(1581), - [aux_sym_preproc_if_token1] = ACTIONS(1583), - [aux_sym_preproc_if_token2] = ACTIONS(1583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1583), - [aux_sym_preproc_else_token1] = ACTIONS(1583), - [aux_sym_preproc_elif_token1] = ACTIONS(1583), - [anon_sym_LPAREN2] = ACTIONS(1581), - [anon_sym_BANG] = ACTIONS(1581), - [anon_sym_TILDE] = ACTIONS(1581), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_PLUS] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1581), - [anon_sym_CARET] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_SEMI] = ACTIONS(1581), - [anon_sym_typedef] = ACTIONS(1583), - [anon_sym_extern] = ACTIONS(1583), - [anon_sym___attribute] = ACTIONS(1583), - [anon_sym___attribute__] = ACTIONS(1583), - [anon_sym___declspec] = ACTIONS(1583), - [anon_sym___cdecl] = ACTIONS(1583), - [anon_sym___clrcall] = ACTIONS(1583), - [anon_sym___stdcall] = ACTIONS(1583), - [anon_sym___fastcall] = ACTIONS(1583), - [anon_sym___thiscall] = ACTIONS(1583), - [anon_sym___vectorcall] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_auto] = ACTIONS(1583), - [anon_sym_register] = ACTIONS(1583), - [anon_sym_inline] = ACTIONS(1583), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1583), - [anon_sym_const] = ACTIONS(1583), - [anon_sym_volatile] = ACTIONS(1583), - [anon_sym_restrict] = ACTIONS(1583), - [anon_sym__Atomic] = ACTIONS(1583), - [anon_sym_in] = ACTIONS(1583), - [anon_sym_out] = ACTIONS(1583), - [anon_sym_inout] = ACTIONS(1583), - [anon_sym_bycopy] = ACTIONS(1583), - [anon_sym_byref] = ACTIONS(1583), - [anon_sym_oneway] = ACTIONS(1583), - [anon_sym__Nullable] = ACTIONS(1583), - [anon_sym__Nonnull] = ACTIONS(1583), - [anon_sym__Nullable_result] = ACTIONS(1583), - [anon_sym__Null_unspecified] = ACTIONS(1583), - [anon_sym___autoreleasing] = ACTIONS(1583), - [anon_sym___nullable] = ACTIONS(1583), - [anon_sym___nonnull] = ACTIONS(1583), - [anon_sym___strong] = ACTIONS(1583), - [anon_sym___weak] = ACTIONS(1583), - [anon_sym___bridge] = ACTIONS(1583), - [anon_sym___bridge_transfer] = ACTIONS(1583), - [anon_sym___bridge_retained] = ACTIONS(1583), - [anon_sym___unsafe_unretained] = ACTIONS(1583), - [anon_sym___block] = ACTIONS(1583), - [anon_sym___kindof] = ACTIONS(1583), - [anon_sym___unused] = ACTIONS(1583), - [anon_sym__Complex] = ACTIONS(1583), - [anon_sym___complex] = ACTIONS(1583), - [anon_sym_IBOutlet] = ACTIONS(1583), - [anon_sym_IBInspectable] = ACTIONS(1583), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1583), - [anon_sym_signed] = ACTIONS(1583), - [anon_sym_unsigned] = ACTIONS(1583), - [anon_sym_long] = ACTIONS(1583), - [anon_sym_short] = ACTIONS(1583), - [sym_primitive_type] = ACTIONS(1583), - [anon_sym_enum] = ACTIONS(1583), - [anon_sym_NS_ENUM] = ACTIONS(1583), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1583), - [anon_sym_NS_OPTIONS] = ACTIONS(1583), - [anon_sym_struct] = ACTIONS(1583), - [anon_sym_union] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1583), - [anon_sym_else] = ACTIONS(1583), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1583), - [anon_sym_default] = ACTIONS(1583), - [anon_sym_while] = ACTIONS(1583), - [anon_sym_do] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_break] = ACTIONS(1583), - [anon_sym_continue] = ACTIONS(1583), - [anon_sym_goto] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_sizeof] = ACTIONS(1583), - [sym_number_literal] = ACTIONS(1581), - [anon_sym_L_SQUOTE] = ACTIONS(1581), - [anon_sym_u_SQUOTE] = ACTIONS(1581), - [anon_sym_U_SQUOTE] = ACTIONS(1581), - [anon_sym_u8_SQUOTE] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1581), - [anon_sym_L_DQUOTE] = ACTIONS(1581), - [anon_sym_u_DQUOTE] = ACTIONS(1581), - [anon_sym_U_DQUOTE] = ACTIONS(1581), - [anon_sym_u8_DQUOTE] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1581), - [sym_true] = ACTIONS(1583), - [sym_false] = ACTIONS(1583), - [sym_null] = ACTIONS(1583), + [218] = { + [ts_builtin_sym_end] = ACTIONS(1561), + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_include_token1] = ACTIONS(1561), + [aux_sym_preproc_def_token1] = ACTIONS(1561), + [anon_sym_RPAREN] = ACTIONS(1561), + [aux_sym_preproc_if_token1] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1563), + [anon_sym_LPAREN2] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_typedef] = ACTIONS(1563), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym___attribute] = ACTIONS(1563), + [anon_sym___attribute__] = ACTIONS(1563), + [anon_sym___declspec] = ACTIONS(1563), + [anon_sym___cdecl] = ACTIONS(1563), + [anon_sym___clrcall] = ACTIONS(1563), + [anon_sym___stdcall] = ACTIONS(1563), + [anon_sym___fastcall] = ACTIONS(1563), + [anon_sym___thiscall] = ACTIONS(1563), + [anon_sym___vectorcall] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_auto] = ACTIONS(1563), + [anon_sym_register] = ACTIONS(1563), + [anon_sym_inline] = ACTIONS(1563), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_volatile] = ACTIONS(1563), + [anon_sym_restrict] = ACTIONS(1563), + [anon_sym__Atomic] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [anon_sym_out] = ACTIONS(1563), + [anon_sym_inout] = ACTIONS(1563), + [anon_sym_bycopy] = ACTIONS(1563), + [anon_sym_byref] = ACTIONS(1563), + [anon_sym_oneway] = ACTIONS(1563), + [anon_sym__Nullable] = ACTIONS(1563), + [anon_sym__Nonnull] = ACTIONS(1563), + [anon_sym__Nullable_result] = ACTIONS(1563), + [anon_sym__Null_unspecified] = ACTIONS(1563), + [anon_sym___autoreleasing] = ACTIONS(1563), + [anon_sym___nullable] = ACTIONS(1563), + [anon_sym___nonnull] = ACTIONS(1563), + [anon_sym___strong] = ACTIONS(1563), + [anon_sym___weak] = ACTIONS(1563), + [anon_sym___bridge] = ACTIONS(1563), + [anon_sym___bridge_transfer] = ACTIONS(1563), + [anon_sym___bridge_retained] = ACTIONS(1563), + [anon_sym___unsafe_unretained] = ACTIONS(1563), + [anon_sym___block] = ACTIONS(1563), + [anon_sym___kindof] = ACTIONS(1563), + [anon_sym___unused] = ACTIONS(1563), + [anon_sym__Complex] = ACTIONS(1563), + [anon_sym___complex] = ACTIONS(1563), + [anon_sym_IBOutlet] = ACTIONS(1563), + [anon_sym_IBInspectable] = ACTIONS(1563), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1563), + [anon_sym_signed] = ACTIONS(1563), + [anon_sym_unsigned] = ACTIONS(1563), + [anon_sym_long] = ACTIONS(1563), + [anon_sym_short] = ACTIONS(1563), + [sym_primitive_type] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_else] = ACTIONS(1563), + [anon_sym_switch] = ACTIONS(1563), + [anon_sym_case] = ACTIONS(1563), + [anon_sym_default] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_goto] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1561), + [anon_sym_L_SQUOTE] = ACTIONS(1561), + [anon_sym_u_SQUOTE] = ACTIONS(1561), + [anon_sym_U_SQUOTE] = ACTIONS(1561), + [anon_sym_u8_SQUOTE] = ACTIONS(1561), + [anon_sym_SQUOTE] = ACTIONS(1561), + [anon_sym_L_DQUOTE] = ACTIONS(1561), + [anon_sym_u_DQUOTE] = ACTIONS(1561), + [anon_sym_U_DQUOTE] = ACTIONS(1561), + [anon_sym_u8_DQUOTE] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1561), + [sym_true] = ACTIONS(1563), + [sym_false] = ACTIONS(1563), + [sym_null] = ACTIONS(1563), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1581), - [anon_sym_ATimport] = ACTIONS(1581), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1583), - [anon_sym_ATcompatibility_alias] = ACTIONS(1581), - [anon_sym_ATprotocol] = ACTIONS(1581), - [anon_sym_ATclass] = ACTIONS(1581), - [anon_sym_ATinterface] = ACTIONS(1581), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1583), - [sym_method_attribute_specifier] = ACTIONS(1583), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1583), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1583), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1583), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1583), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1583), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1583), - [anon_sym_NS_AVAILABLE] = ACTIONS(1583), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1583), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1583), - [anon_sym_API_AVAILABLE] = ACTIONS(1583), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1583), - [anon_sym_API_DEPRECATED] = ACTIONS(1583), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1583), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1583), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1583), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1583), - [anon_sym___deprecated_msg] = ACTIONS(1583), - [anon_sym___deprecated_enum_msg] = ACTIONS(1583), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1583), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1583), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1583), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1583), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1583), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1583), - [anon_sym_ATimplementation] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___typeof] = ACTIONS(1583), - [anon_sym___typeof__] = ACTIONS(1583), - [sym_self] = ACTIONS(1583), - [sym_super] = ACTIONS(1583), - [sym_nil] = ACTIONS(1583), - [sym_id] = ACTIONS(1583), - [sym_instancetype] = ACTIONS(1583), - [sym_Class] = ACTIONS(1583), - [sym_SEL] = ACTIONS(1583), - [sym_IMP] = ACTIONS(1583), - [sym_BOOL] = ACTIONS(1583), - [sym_auto] = ACTIONS(1583), - [anon_sym_ATautoreleasepool] = ACTIONS(1581), - [anon_sym_ATsynchronized] = ACTIONS(1581), - [anon_sym_ATtry] = ACTIONS(1581), - [anon_sym_ATcatch] = ACTIONS(1581), - [anon_sym_ATfinally] = ACTIONS(1581), - [anon_sym_ATthrow] = ACTIONS(1581), - [anon_sym_ATselector] = ACTIONS(1581), - [anon_sym_ATencode] = ACTIONS(1581), - [anon_sym_AT] = ACTIONS(1583), - [sym_YES] = ACTIONS(1583), - [sym_NO] = ACTIONS(1583), - [anon_sym___builtin_available] = ACTIONS(1583), - [anon_sym_ATavailable] = ACTIONS(1581), - [anon_sym_va_arg] = ACTIONS(1583), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [238] = { - [sym_identifier] = ACTIONS(1593), - [aux_sym_preproc_include_token1] = ACTIONS(1595), - [aux_sym_preproc_def_token1] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token2] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), - [aux_sym_preproc_else_token1] = ACTIONS(1593), - [aux_sym_preproc_elif_token1] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_CARET] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_typedef] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym___attribute] = ACTIONS(1593), - [anon_sym___attribute__] = ACTIONS(1593), - [anon_sym___declspec] = ACTIONS(1593), - [anon_sym___cdecl] = ACTIONS(1593), - [anon_sym___clrcall] = ACTIONS(1593), - [anon_sym___stdcall] = ACTIONS(1593), - [anon_sym___fastcall] = ACTIONS(1593), - [anon_sym___thiscall] = ACTIONS(1593), - [anon_sym___vectorcall] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_auto] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_inline] = ACTIONS(1593), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_volatile] = ACTIONS(1593), - [anon_sym_restrict] = ACTIONS(1593), - [anon_sym__Atomic] = ACTIONS(1593), - [anon_sym_in] = ACTIONS(1593), - [anon_sym_out] = ACTIONS(1593), - [anon_sym_inout] = ACTIONS(1593), - [anon_sym_bycopy] = ACTIONS(1593), - [anon_sym_byref] = ACTIONS(1593), - [anon_sym_oneway] = ACTIONS(1593), - [anon_sym__Nullable] = ACTIONS(1593), - [anon_sym__Nonnull] = ACTIONS(1593), - [anon_sym__Nullable_result] = ACTIONS(1593), - [anon_sym__Null_unspecified] = ACTIONS(1593), - [anon_sym___autoreleasing] = ACTIONS(1593), - [anon_sym___nullable] = ACTIONS(1593), - [anon_sym___nonnull] = ACTIONS(1593), - [anon_sym___strong] = ACTIONS(1593), - [anon_sym___weak] = ACTIONS(1593), - [anon_sym___bridge] = ACTIONS(1593), - [anon_sym___bridge_transfer] = ACTIONS(1593), - [anon_sym___bridge_retained] = ACTIONS(1593), - [anon_sym___unsafe_unretained] = ACTIONS(1593), - [anon_sym___block] = ACTIONS(1593), - [anon_sym___kindof] = ACTIONS(1593), - [anon_sym___unused] = ACTIONS(1593), - [anon_sym__Complex] = ACTIONS(1593), - [anon_sym___complex] = ACTIONS(1593), - [anon_sym_IBOutlet] = ACTIONS(1593), - [anon_sym_IBInspectable] = ACTIONS(1593), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1593), - [anon_sym_signed] = ACTIONS(1593), - [anon_sym_unsigned] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [sym_primitive_type] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_NS_ENUM] = ACTIONS(1593), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1593), - [anon_sym_NS_OPTIONS] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_else] = ACTIONS(1593), - [anon_sym_switch] = ACTIONS(1593), - [anon_sym_case] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_goto] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_PLUS_PLUS] = ACTIONS(1595), - [anon_sym_sizeof] = ACTIONS(1593), - [sym_number_literal] = ACTIONS(1595), - [anon_sym_L_SQUOTE] = ACTIONS(1595), - [anon_sym_u_SQUOTE] = ACTIONS(1595), - [anon_sym_U_SQUOTE] = ACTIONS(1595), - [anon_sym_u8_SQUOTE] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1595), - [anon_sym_L_DQUOTE] = ACTIONS(1595), - [anon_sym_u_DQUOTE] = ACTIONS(1595), - [anon_sym_U_DQUOTE] = ACTIONS(1595), - [anon_sym_u8_DQUOTE] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1595), - [anon_sym_ATimport] = ACTIONS(1595), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1593), - [anon_sym_ATcompatibility_alias] = ACTIONS(1595), - [anon_sym_ATprotocol] = ACTIONS(1595), - [anon_sym_ATclass] = ACTIONS(1595), - [anon_sym_ATinterface] = ACTIONS(1595), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1593), - [sym_method_attribute_specifier] = ACTIONS(1593), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1593), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1593), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1593), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1593), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1593), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1593), - [anon_sym_NS_AVAILABLE] = ACTIONS(1593), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1593), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1593), - [anon_sym_API_AVAILABLE] = ACTIONS(1593), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1593), - [anon_sym_API_DEPRECATED] = ACTIONS(1593), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1593), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1593), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1593), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1593), - [anon_sym___deprecated_msg] = ACTIONS(1593), - [anon_sym___deprecated_enum_msg] = ACTIONS(1593), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1593), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1593), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1593), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1593), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1593), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1593), - [anon_sym_ATimplementation] = ACTIONS(1595), - [anon_sym_typeof] = ACTIONS(1593), - [anon_sym___typeof] = ACTIONS(1593), - [anon_sym___typeof__] = ACTIONS(1593), - [sym_self] = ACTIONS(1593), - [sym_super] = ACTIONS(1593), - [sym_nil] = ACTIONS(1593), - [sym_id] = ACTIONS(1593), - [sym_instancetype] = ACTIONS(1593), - [sym_Class] = ACTIONS(1593), - [sym_SEL] = ACTIONS(1593), - [sym_IMP] = ACTIONS(1593), - [sym_BOOL] = ACTIONS(1593), - [sym_auto] = ACTIONS(1593), - [anon_sym_ATautoreleasepool] = ACTIONS(1595), - [anon_sym_ATsynchronized] = ACTIONS(1595), - [anon_sym_ATtry] = ACTIONS(1595), - [anon_sym_ATcatch] = ACTIONS(1595), - [anon_sym_ATfinally] = ACTIONS(1595), - [anon_sym_ATthrow] = ACTIONS(1595), - [anon_sym_ATselector] = ACTIONS(1595), - [anon_sym_ATencode] = ACTIONS(1595), - [anon_sym_AT] = ACTIONS(1593), - [sym_YES] = ACTIONS(1593), - [sym_NO] = ACTIONS(1593), - [anon_sym___builtin_available] = ACTIONS(1593), - [anon_sym_ATavailable] = ACTIONS(1595), - [anon_sym_va_arg] = ACTIONS(1593), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [239] = { - [sym_identifier] = ACTIONS(1597), - [aux_sym_preproc_include_token1] = ACTIONS(1599), - [aux_sym_preproc_def_token1] = ACTIONS(1599), - [aux_sym_preproc_if_token1] = ACTIONS(1597), - [aux_sym_preproc_if_token2] = ACTIONS(1597), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1597), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1597), - [aux_sym_preproc_else_token1] = ACTIONS(1597), - [aux_sym_preproc_elif_token1] = ACTIONS(1597), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_typedef] = ACTIONS(1597), - [anon_sym_extern] = ACTIONS(1597), - [anon_sym___attribute] = ACTIONS(1597), - [anon_sym___attribute__] = ACTIONS(1597), - [anon_sym___declspec] = ACTIONS(1597), - [anon_sym___cdecl] = ACTIONS(1597), - [anon_sym___clrcall] = ACTIONS(1597), - [anon_sym___stdcall] = ACTIONS(1597), - [anon_sym___fastcall] = ACTIONS(1597), - [anon_sym___thiscall] = ACTIONS(1597), - [anon_sym___vectorcall] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_auto] = ACTIONS(1597), - [anon_sym_register] = ACTIONS(1597), - [anon_sym_inline] = ACTIONS(1597), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1597), - [anon_sym_volatile] = ACTIONS(1597), - [anon_sym_restrict] = ACTIONS(1597), - [anon_sym__Atomic] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_out] = ACTIONS(1597), - [anon_sym_inout] = ACTIONS(1597), - [anon_sym_bycopy] = ACTIONS(1597), - [anon_sym_byref] = ACTIONS(1597), - [anon_sym_oneway] = ACTIONS(1597), - [anon_sym__Nullable] = ACTIONS(1597), - [anon_sym__Nonnull] = ACTIONS(1597), - [anon_sym__Nullable_result] = ACTIONS(1597), - [anon_sym__Null_unspecified] = ACTIONS(1597), - [anon_sym___autoreleasing] = ACTIONS(1597), - [anon_sym___nullable] = ACTIONS(1597), - [anon_sym___nonnull] = ACTIONS(1597), - [anon_sym___strong] = ACTIONS(1597), - [anon_sym___weak] = ACTIONS(1597), - [anon_sym___bridge] = ACTIONS(1597), - [anon_sym___bridge_transfer] = ACTIONS(1597), - [anon_sym___bridge_retained] = ACTIONS(1597), - [anon_sym___unsafe_unretained] = ACTIONS(1597), - [anon_sym___block] = ACTIONS(1597), - [anon_sym___kindof] = ACTIONS(1597), - [anon_sym___unused] = ACTIONS(1597), - [anon_sym__Complex] = ACTIONS(1597), - [anon_sym___complex] = ACTIONS(1597), - [anon_sym_IBOutlet] = ACTIONS(1597), - [anon_sym_IBInspectable] = ACTIONS(1597), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1597), - [anon_sym_signed] = ACTIONS(1597), - [anon_sym_unsigned] = ACTIONS(1597), - [anon_sym_long] = ACTIONS(1597), - [anon_sym_short] = ACTIONS(1597), - [sym_primitive_type] = ACTIONS(1597), - [anon_sym_enum] = ACTIONS(1597), - [anon_sym_NS_ENUM] = ACTIONS(1597), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1597), - [anon_sym_NS_OPTIONS] = ACTIONS(1597), - [anon_sym_struct] = ACTIONS(1597), - [anon_sym_union] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_else] = ACTIONS(1597), - [anon_sym_switch] = ACTIONS(1597), - [anon_sym_case] = ACTIONS(1597), - [anon_sym_default] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_do] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_goto] = ACTIONS(1597), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_sizeof] = ACTIONS(1597), - [sym_number_literal] = ACTIONS(1599), - [anon_sym_L_SQUOTE] = ACTIONS(1599), - [anon_sym_u_SQUOTE] = ACTIONS(1599), - [anon_sym_U_SQUOTE] = ACTIONS(1599), - [anon_sym_u8_SQUOTE] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_L_DQUOTE] = ACTIONS(1599), - [anon_sym_u_DQUOTE] = ACTIONS(1599), - [anon_sym_U_DQUOTE] = ACTIONS(1599), - [anon_sym_u8_DQUOTE] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym_true] = ACTIONS(1597), - [sym_false] = ACTIONS(1597), - [sym_null] = ACTIONS(1597), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1599), - [anon_sym_ATimport] = ACTIONS(1599), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1597), - [anon_sym_ATcompatibility_alias] = ACTIONS(1599), - [anon_sym_ATprotocol] = ACTIONS(1599), - [anon_sym_ATclass] = ACTIONS(1599), - [anon_sym_ATinterface] = ACTIONS(1599), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1597), - [sym_method_attribute_specifier] = ACTIONS(1597), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1597), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1597), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1597), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1597), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1597), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1597), - [anon_sym_NS_AVAILABLE] = ACTIONS(1597), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1597), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1597), - [anon_sym_API_AVAILABLE] = ACTIONS(1597), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1597), - [anon_sym_API_DEPRECATED] = ACTIONS(1597), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1597), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1597), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1597), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1597), - [anon_sym___deprecated_msg] = ACTIONS(1597), - [anon_sym___deprecated_enum_msg] = ACTIONS(1597), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1597), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1597), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1597), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1597), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1597), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1597), - [anon_sym_ATimplementation] = ACTIONS(1599), - [anon_sym_typeof] = ACTIONS(1597), - [anon_sym___typeof] = ACTIONS(1597), - [anon_sym___typeof__] = ACTIONS(1597), - [sym_self] = ACTIONS(1597), - [sym_super] = ACTIONS(1597), - [sym_nil] = ACTIONS(1597), - [sym_id] = ACTIONS(1597), - [sym_instancetype] = ACTIONS(1597), - [sym_Class] = ACTIONS(1597), - [sym_SEL] = ACTIONS(1597), - [sym_IMP] = ACTIONS(1597), - [sym_BOOL] = ACTIONS(1597), - [sym_auto] = ACTIONS(1597), - [anon_sym_ATautoreleasepool] = ACTIONS(1599), - [anon_sym_ATsynchronized] = ACTIONS(1599), - [anon_sym_ATtry] = ACTIONS(1599), - [anon_sym_ATcatch] = ACTIONS(1599), - [anon_sym_ATfinally] = ACTIONS(1599), - [anon_sym_ATthrow] = ACTIONS(1599), - [anon_sym_ATselector] = ACTIONS(1599), - [anon_sym_ATencode] = ACTIONS(1599), - [anon_sym_AT] = ACTIONS(1597), - [sym_YES] = ACTIONS(1597), - [sym_NO] = ACTIONS(1597), - [anon_sym___builtin_available] = ACTIONS(1597), - [anon_sym_ATavailable] = ACTIONS(1599), - [anon_sym_va_arg] = ACTIONS(1597), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [240] = { - [sym_identifier] = ACTIONS(1601), - [aux_sym_preproc_include_token1] = ACTIONS(1603), - [aux_sym_preproc_def_token1] = ACTIONS(1603), - [aux_sym_preproc_if_token1] = ACTIONS(1601), - [aux_sym_preproc_if_token2] = ACTIONS(1601), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1601), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1601), - [aux_sym_preproc_else_token1] = ACTIONS(1601), - [aux_sym_preproc_elif_token1] = ACTIONS(1601), - [anon_sym_LPAREN2] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_CARET] = ACTIONS(1603), - [anon_sym_AMP] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_typedef] = ACTIONS(1601), - [anon_sym_extern] = ACTIONS(1601), - [anon_sym___attribute] = ACTIONS(1601), - [anon_sym___attribute__] = ACTIONS(1601), - [anon_sym___declspec] = ACTIONS(1601), - [anon_sym___cdecl] = ACTIONS(1601), - [anon_sym___clrcall] = ACTIONS(1601), - [anon_sym___stdcall] = ACTIONS(1601), - [anon_sym___fastcall] = ACTIONS(1601), - [anon_sym___thiscall] = ACTIONS(1601), - [anon_sym___vectorcall] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1601), - [anon_sym_auto] = ACTIONS(1601), - [anon_sym_register] = ACTIONS(1601), - [anon_sym_inline] = ACTIONS(1601), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1601), - [anon_sym_const] = ACTIONS(1601), - [anon_sym_volatile] = ACTIONS(1601), - [anon_sym_restrict] = ACTIONS(1601), - [anon_sym__Atomic] = ACTIONS(1601), - [anon_sym_in] = ACTIONS(1601), - [anon_sym_out] = ACTIONS(1601), - [anon_sym_inout] = ACTIONS(1601), - [anon_sym_bycopy] = ACTIONS(1601), - [anon_sym_byref] = ACTIONS(1601), - [anon_sym_oneway] = ACTIONS(1601), - [anon_sym__Nullable] = ACTIONS(1601), - [anon_sym__Nonnull] = ACTIONS(1601), - [anon_sym__Nullable_result] = ACTIONS(1601), - [anon_sym__Null_unspecified] = ACTIONS(1601), - [anon_sym___autoreleasing] = ACTIONS(1601), - [anon_sym___nullable] = ACTIONS(1601), - [anon_sym___nonnull] = ACTIONS(1601), - [anon_sym___strong] = ACTIONS(1601), - [anon_sym___weak] = ACTIONS(1601), - [anon_sym___bridge] = ACTIONS(1601), - [anon_sym___bridge_transfer] = ACTIONS(1601), - [anon_sym___bridge_retained] = ACTIONS(1601), - [anon_sym___unsafe_unretained] = ACTIONS(1601), - [anon_sym___block] = ACTIONS(1601), - [anon_sym___kindof] = ACTIONS(1601), - [anon_sym___unused] = ACTIONS(1601), - [anon_sym__Complex] = ACTIONS(1601), - [anon_sym___complex] = ACTIONS(1601), - [anon_sym_IBOutlet] = ACTIONS(1601), - [anon_sym_IBInspectable] = ACTIONS(1601), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1601), - [anon_sym_signed] = ACTIONS(1601), - [anon_sym_unsigned] = ACTIONS(1601), - [anon_sym_long] = ACTIONS(1601), - [anon_sym_short] = ACTIONS(1601), - [sym_primitive_type] = ACTIONS(1601), - [anon_sym_enum] = ACTIONS(1601), - [anon_sym_NS_ENUM] = ACTIONS(1601), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1601), - [anon_sym_NS_OPTIONS] = ACTIONS(1601), - [anon_sym_struct] = ACTIONS(1601), - [anon_sym_union] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_else] = ACTIONS(1601), - [anon_sym_switch] = ACTIONS(1601), - [anon_sym_case] = ACTIONS(1601), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_do] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1603), - [anon_sym_sizeof] = ACTIONS(1601), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_L_SQUOTE] = ACTIONS(1603), - [anon_sym_u_SQUOTE] = ACTIONS(1603), - [anon_sym_U_SQUOTE] = ACTIONS(1603), - [anon_sym_u8_SQUOTE] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(1603), - [anon_sym_L_DQUOTE] = ACTIONS(1603), - [anon_sym_u_DQUOTE] = ACTIONS(1603), - [anon_sym_U_DQUOTE] = ACTIONS(1603), - [anon_sym_u8_DQUOTE] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1603), - [anon_sym_ATimport] = ACTIONS(1603), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1601), - [anon_sym_ATcompatibility_alias] = ACTIONS(1603), - [anon_sym_ATprotocol] = ACTIONS(1603), - [anon_sym_ATclass] = ACTIONS(1603), - [anon_sym_ATinterface] = ACTIONS(1603), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1601), - [sym_method_attribute_specifier] = ACTIONS(1601), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1601), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1601), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1601), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1601), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1601), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1601), - [anon_sym_NS_AVAILABLE] = ACTIONS(1601), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1601), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1601), - [anon_sym_API_AVAILABLE] = ACTIONS(1601), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1601), - [anon_sym_API_DEPRECATED] = ACTIONS(1601), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1601), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1601), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1601), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1601), - [anon_sym___deprecated_msg] = ACTIONS(1601), - [anon_sym___deprecated_enum_msg] = ACTIONS(1601), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1601), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1601), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1601), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1601), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1601), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1601), - [anon_sym_ATimplementation] = ACTIONS(1603), - [anon_sym_typeof] = ACTIONS(1601), - [anon_sym___typeof] = ACTIONS(1601), - [anon_sym___typeof__] = ACTIONS(1601), - [sym_self] = ACTIONS(1601), - [sym_super] = ACTIONS(1601), - [sym_nil] = ACTIONS(1601), - [sym_id] = ACTIONS(1601), - [sym_instancetype] = ACTIONS(1601), - [sym_Class] = ACTIONS(1601), - [sym_SEL] = ACTIONS(1601), - [sym_IMP] = ACTIONS(1601), - [sym_BOOL] = ACTIONS(1601), - [sym_auto] = ACTIONS(1601), - [anon_sym_ATautoreleasepool] = ACTIONS(1603), - [anon_sym_ATsynchronized] = ACTIONS(1603), - [anon_sym_ATtry] = ACTIONS(1603), - [anon_sym_ATcatch] = ACTIONS(1603), - [anon_sym_ATfinally] = ACTIONS(1603), - [anon_sym_ATthrow] = ACTIONS(1603), - [anon_sym_ATselector] = ACTIONS(1603), - [anon_sym_ATencode] = ACTIONS(1603), - [anon_sym_AT] = ACTIONS(1601), - [sym_YES] = ACTIONS(1601), - [sym_NO] = ACTIONS(1601), - [anon_sym___builtin_available] = ACTIONS(1601), - [anon_sym_ATavailable] = ACTIONS(1603), - [anon_sym_va_arg] = ACTIONS(1601), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [241] = { - [sym_identifier] = ACTIONS(1605), - [aux_sym_preproc_include_token1] = ACTIONS(1607), - [aux_sym_preproc_def_token1] = ACTIONS(1607), - [aux_sym_preproc_if_token1] = ACTIONS(1605), - [aux_sym_preproc_if_token2] = ACTIONS(1605), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1605), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1605), - [aux_sym_preproc_else_token1] = ACTIONS(1605), - [aux_sym_preproc_elif_token1] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1607), - [anon_sym_TILDE] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_CARET] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_typedef] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym___attribute] = ACTIONS(1605), - [anon_sym___attribute__] = ACTIONS(1605), - [anon_sym___declspec] = ACTIONS(1605), - [anon_sym___cdecl] = ACTIONS(1605), - [anon_sym___clrcall] = ACTIONS(1605), - [anon_sym___stdcall] = ACTIONS(1605), - [anon_sym___fastcall] = ACTIONS(1605), - [anon_sym___thiscall] = ACTIONS(1605), - [anon_sym___vectorcall] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1605), - [anon_sym_auto] = ACTIONS(1605), - [anon_sym_register] = ACTIONS(1605), - [anon_sym_inline] = ACTIONS(1605), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_volatile] = ACTIONS(1605), - [anon_sym_restrict] = ACTIONS(1605), - [anon_sym__Atomic] = ACTIONS(1605), - [anon_sym_in] = ACTIONS(1605), - [anon_sym_out] = ACTIONS(1605), - [anon_sym_inout] = ACTIONS(1605), - [anon_sym_bycopy] = ACTIONS(1605), - [anon_sym_byref] = ACTIONS(1605), - [anon_sym_oneway] = ACTIONS(1605), - [anon_sym__Nullable] = ACTIONS(1605), - [anon_sym__Nonnull] = ACTIONS(1605), - [anon_sym__Nullable_result] = ACTIONS(1605), - [anon_sym__Null_unspecified] = ACTIONS(1605), - [anon_sym___autoreleasing] = ACTIONS(1605), - [anon_sym___nullable] = ACTIONS(1605), - [anon_sym___nonnull] = ACTIONS(1605), - [anon_sym___strong] = ACTIONS(1605), - [anon_sym___weak] = ACTIONS(1605), - [anon_sym___bridge] = ACTIONS(1605), - [anon_sym___bridge_transfer] = ACTIONS(1605), - [anon_sym___bridge_retained] = ACTIONS(1605), - [anon_sym___unsafe_unretained] = ACTIONS(1605), - [anon_sym___block] = ACTIONS(1605), - [anon_sym___kindof] = ACTIONS(1605), - [anon_sym___unused] = ACTIONS(1605), - [anon_sym__Complex] = ACTIONS(1605), - [anon_sym___complex] = ACTIONS(1605), - [anon_sym_IBOutlet] = ACTIONS(1605), - [anon_sym_IBInspectable] = ACTIONS(1605), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1605), - [anon_sym_signed] = ACTIONS(1605), - [anon_sym_unsigned] = ACTIONS(1605), - [anon_sym_long] = ACTIONS(1605), - [anon_sym_short] = ACTIONS(1605), - [sym_primitive_type] = ACTIONS(1605), - [anon_sym_enum] = ACTIONS(1605), - [anon_sym_NS_ENUM] = ACTIONS(1605), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1605), - [anon_sym_NS_OPTIONS] = ACTIONS(1605), - [anon_sym_struct] = ACTIONS(1605), - [anon_sym_union] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_else] = ACTIONS(1605), - [anon_sym_switch] = ACTIONS(1605), - [anon_sym_case] = ACTIONS(1605), - [anon_sym_default] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_goto] = ACTIONS(1605), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1605), - [sym_number_literal] = ACTIONS(1607), - [anon_sym_L_SQUOTE] = ACTIONS(1607), - [anon_sym_u_SQUOTE] = ACTIONS(1607), - [anon_sym_U_SQUOTE] = ACTIONS(1607), - [anon_sym_u8_SQUOTE] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1607), - [anon_sym_L_DQUOTE] = ACTIONS(1607), - [anon_sym_u_DQUOTE] = ACTIONS(1607), - [anon_sym_U_DQUOTE] = ACTIONS(1607), - [anon_sym_u8_DQUOTE] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1607), - [anon_sym_ATimport] = ACTIONS(1607), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1605), - [anon_sym_ATcompatibility_alias] = ACTIONS(1607), - [anon_sym_ATprotocol] = ACTIONS(1607), - [anon_sym_ATclass] = ACTIONS(1607), - [anon_sym_ATinterface] = ACTIONS(1607), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1605), - [sym_method_attribute_specifier] = ACTIONS(1605), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1605), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1605), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1605), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1605), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1605), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1605), - [anon_sym_NS_AVAILABLE] = ACTIONS(1605), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1605), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1605), - [anon_sym_API_AVAILABLE] = ACTIONS(1605), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1605), - [anon_sym_API_DEPRECATED] = ACTIONS(1605), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1605), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1605), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1605), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1605), - [anon_sym___deprecated_msg] = ACTIONS(1605), - [anon_sym___deprecated_enum_msg] = ACTIONS(1605), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1605), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1605), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1605), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1605), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1605), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1605), - [anon_sym_ATimplementation] = ACTIONS(1607), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym___typeof] = ACTIONS(1605), - [anon_sym___typeof__] = ACTIONS(1605), - [sym_self] = ACTIONS(1605), - [sym_super] = ACTIONS(1605), - [sym_nil] = ACTIONS(1605), - [sym_id] = ACTIONS(1605), - [sym_instancetype] = ACTIONS(1605), - [sym_Class] = ACTIONS(1605), - [sym_SEL] = ACTIONS(1605), - [sym_IMP] = ACTIONS(1605), - [sym_BOOL] = ACTIONS(1605), - [sym_auto] = ACTIONS(1605), - [anon_sym_ATautoreleasepool] = ACTIONS(1607), - [anon_sym_ATsynchronized] = ACTIONS(1607), - [anon_sym_ATtry] = ACTIONS(1607), - [anon_sym_ATcatch] = ACTIONS(1607), - [anon_sym_ATfinally] = ACTIONS(1607), - [anon_sym_ATthrow] = ACTIONS(1607), - [anon_sym_ATselector] = ACTIONS(1607), - [anon_sym_ATencode] = ACTIONS(1607), - [anon_sym_AT] = ACTIONS(1605), - [sym_YES] = ACTIONS(1605), - [sym_NO] = ACTIONS(1605), - [anon_sym___builtin_available] = ACTIONS(1605), - [anon_sym_ATavailable] = ACTIONS(1607), - [anon_sym_va_arg] = ACTIONS(1605), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [242] = { - [ts_builtin_sym_end] = ACTIONS(1563), - [sym_identifier] = ACTIONS(1561), - [aux_sym_preproc_include_token1] = ACTIONS(1563), - [aux_sym_preproc_def_token1] = ACTIONS(1563), - [anon_sym_RPAREN] = ACTIONS(1563), - [aux_sym_preproc_if_token1] = ACTIONS(1561), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1561), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1561), - [anon_sym_LPAREN2] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_typedef] = ACTIONS(1561), - [anon_sym_extern] = ACTIONS(1561), - [anon_sym___attribute] = ACTIONS(1561), - [anon_sym___attribute__] = ACTIONS(1561), - [anon_sym___declspec] = ACTIONS(1561), - [anon_sym___cdecl] = ACTIONS(1561), - [anon_sym___clrcall] = ACTIONS(1561), - [anon_sym___stdcall] = ACTIONS(1561), - [anon_sym___fastcall] = ACTIONS(1561), - [anon_sym___thiscall] = ACTIONS(1561), - [anon_sym___vectorcall] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_RBRACE] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1563), - [anon_sym_static] = ACTIONS(1561), - [anon_sym_auto] = ACTIONS(1561), - [anon_sym_register] = ACTIONS(1561), - [anon_sym_inline] = ACTIONS(1561), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1561), - [anon_sym_const] = ACTIONS(1561), - [anon_sym_volatile] = ACTIONS(1561), - [anon_sym_restrict] = ACTIONS(1561), - [anon_sym__Atomic] = ACTIONS(1561), - [anon_sym_in] = ACTIONS(1561), - [anon_sym_out] = ACTIONS(1561), - [anon_sym_inout] = ACTIONS(1561), - [anon_sym_bycopy] = ACTIONS(1561), - [anon_sym_byref] = ACTIONS(1561), - [anon_sym_oneway] = ACTIONS(1561), - [anon_sym__Nullable] = ACTIONS(1561), - [anon_sym__Nonnull] = ACTIONS(1561), - [anon_sym__Nullable_result] = ACTIONS(1561), - [anon_sym__Null_unspecified] = ACTIONS(1561), - [anon_sym___autoreleasing] = ACTIONS(1561), - [anon_sym___nullable] = ACTIONS(1561), - [anon_sym___nonnull] = ACTIONS(1561), - [anon_sym___strong] = ACTIONS(1561), - [anon_sym___weak] = ACTIONS(1561), - [anon_sym___bridge] = ACTIONS(1561), - [anon_sym___bridge_transfer] = ACTIONS(1561), - [anon_sym___bridge_retained] = ACTIONS(1561), - [anon_sym___unsafe_unretained] = ACTIONS(1561), - [anon_sym___block] = ACTIONS(1561), - [anon_sym___kindof] = ACTIONS(1561), - [anon_sym___unused] = ACTIONS(1561), - [anon_sym__Complex] = ACTIONS(1561), - [anon_sym___complex] = ACTIONS(1561), - [anon_sym_IBOutlet] = ACTIONS(1561), - [anon_sym_IBInspectable] = ACTIONS(1561), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1561), - [anon_sym_signed] = ACTIONS(1561), - [anon_sym_unsigned] = ACTIONS(1561), - [anon_sym_long] = ACTIONS(1561), - [anon_sym_short] = ACTIONS(1561), - [sym_primitive_type] = ACTIONS(1561), - [anon_sym_enum] = ACTIONS(1561), - [anon_sym_NS_ENUM] = ACTIONS(1561), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1561), - [anon_sym_NS_OPTIONS] = ACTIONS(1561), - [anon_sym_struct] = ACTIONS(1561), - [anon_sym_union] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1561), - [anon_sym_else] = ACTIONS(1561), - [anon_sym_switch] = ACTIONS(1561), - [anon_sym_case] = ACTIONS(1561), - [anon_sym_default] = ACTIONS(1561), - [anon_sym_while] = ACTIONS(1561), - [anon_sym_do] = ACTIONS(1561), - [anon_sym_for] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1561), - [anon_sym_break] = ACTIONS(1561), - [anon_sym_continue] = ACTIONS(1561), - [anon_sym_goto] = ACTIONS(1561), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_sizeof] = ACTIONS(1561), - [sym_number_literal] = ACTIONS(1563), - [anon_sym_L_SQUOTE] = ACTIONS(1563), - [anon_sym_u_SQUOTE] = ACTIONS(1563), - [anon_sym_U_SQUOTE] = ACTIONS(1563), - [anon_sym_u8_SQUOTE] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_L_DQUOTE] = ACTIONS(1563), - [anon_sym_u_DQUOTE] = ACTIONS(1563), - [anon_sym_U_DQUOTE] = ACTIONS(1563), - [anon_sym_u8_DQUOTE] = ACTIONS(1563), - [anon_sym_DQUOTE] = ACTIONS(1563), - [sym_true] = ACTIONS(1561), - [sym_false] = ACTIONS(1561), - [sym_null] = ACTIONS(1561), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1563), - [anon_sym_ATimport] = ACTIONS(1563), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1561), - [anon_sym_ATcompatibility_alias] = ACTIONS(1563), - [anon_sym_ATprotocol] = ACTIONS(1563), - [anon_sym_ATclass] = ACTIONS(1563), - [anon_sym_ATinterface] = ACTIONS(1563), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1561), - [sym_method_attribute_specifier] = ACTIONS(1561), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1561), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1561), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1561), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1561), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1561), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1561), - [anon_sym_NS_AVAILABLE] = ACTIONS(1561), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1561), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1561), - [anon_sym_API_AVAILABLE] = ACTIONS(1561), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1561), - [anon_sym_API_DEPRECATED] = ACTIONS(1561), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1561), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1561), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1561), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1561), - [anon_sym___deprecated_msg] = ACTIONS(1561), - [anon_sym___deprecated_enum_msg] = ACTIONS(1561), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1561), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1561), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1561), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1561), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1561), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1561), - [anon_sym_ATimplementation] = ACTIONS(1563), - [anon_sym_typeof] = ACTIONS(1561), - [anon_sym___typeof] = ACTIONS(1561), - [anon_sym___typeof__] = ACTIONS(1561), - [sym_self] = ACTIONS(1561), - [sym_super] = ACTIONS(1561), - [sym_nil] = ACTIONS(1561), - [sym_id] = ACTIONS(1561), - [sym_instancetype] = ACTIONS(1561), - [sym_Class] = ACTIONS(1561), - [sym_SEL] = ACTIONS(1561), - [sym_IMP] = ACTIONS(1561), - [sym_BOOL] = ACTIONS(1561), - [sym_auto] = ACTIONS(1561), - [anon_sym_ATautoreleasepool] = ACTIONS(1563), - [anon_sym_ATsynchronized] = ACTIONS(1563), - [anon_sym_ATtry] = ACTIONS(1563), - [anon_sym_ATcatch] = ACTIONS(1563), - [anon_sym_ATfinally] = ACTIONS(1563), - [anon_sym_ATthrow] = ACTIONS(1563), - [anon_sym_ATselector] = ACTIONS(1563), - [anon_sym_ATencode] = ACTIONS(1563), - [anon_sym_AT] = ACTIONS(1561), - [sym_YES] = ACTIONS(1561), - [sym_NO] = ACTIONS(1561), - [anon_sym___builtin_available] = ACTIONS(1561), - [anon_sym_ATavailable] = ACTIONS(1563), - [anon_sym_va_arg] = ACTIONS(1561), + [anon_sym_POUNDimport] = ACTIONS(1561), + [anon_sym_ATimport] = ACTIONS(1561), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1563), + [anon_sym_ATcompatibility_alias] = ACTIONS(1561), + [anon_sym_ATprotocol] = ACTIONS(1561), + [anon_sym_ATclass] = ACTIONS(1561), + [anon_sym_ATinterface] = ACTIONS(1561), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1563), + [sym_method_attribute_specifier] = ACTIONS(1563), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1563), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE] = ACTIONS(1563), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_API_AVAILABLE] = ACTIONS(1563), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_API_DEPRECATED] = ACTIONS(1563), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1563), + [anon_sym___deprecated_msg] = ACTIONS(1563), + [anon_sym___deprecated_enum_msg] = ACTIONS(1563), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1563), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1563), + [anon_sym_ATimplementation] = ACTIONS(1561), + [anon_sym_NS_ENUM] = ACTIONS(1563), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1563), + [anon_sym_NS_OPTIONS] = ACTIONS(1563), + [anon_sym_typeof] = ACTIONS(1563), + [anon_sym___typeof] = ACTIONS(1563), + [anon_sym___typeof__] = ACTIONS(1563), + [sym_self] = ACTIONS(1563), + [sym_super] = ACTIONS(1563), + [sym_nil] = ACTIONS(1563), + [sym_id] = ACTIONS(1563), + [sym_instancetype] = ACTIONS(1563), + [sym_Class] = ACTIONS(1563), + [sym_SEL] = ACTIONS(1563), + [sym_IMP] = ACTIONS(1563), + [sym_BOOL] = ACTIONS(1563), + [sym_auto] = ACTIONS(1563), + [anon_sym_ATautoreleasepool] = ACTIONS(1561), + [anon_sym_ATsynchronized] = ACTIONS(1561), + [anon_sym_ATtry] = ACTIONS(1561), + [anon_sym_ATcatch] = ACTIONS(1561), + [anon_sym_ATfinally] = ACTIONS(1561), + [anon_sym_ATthrow] = ACTIONS(1561), + [anon_sym_ATselector] = ACTIONS(1561), + [anon_sym_ATencode] = ACTIONS(1561), + [anon_sym_AT] = ACTIONS(1563), + [sym_YES] = ACTIONS(1563), + [sym_NO] = ACTIONS(1563), + [anon_sym___builtin_available] = ACTIONS(1563), + [anon_sym_ATavailable] = ACTIONS(1561), + [anon_sym_va_arg] = ACTIONS(1563), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -68436,7 +64217,1069 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [243] = { + [219] = { + [sym_identifier] = ACTIONS(1275), + [aux_sym_preproc_include_token1] = ACTIONS(1273), + [aux_sym_preproc_def_token1] = ACTIONS(1273), + [aux_sym_preproc_if_token1] = ACTIONS(1275), + [aux_sym_preproc_if_token2] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1275), + [aux_sym_preproc_else_token1] = ACTIONS(1275), + [aux_sym_preproc_elif_token1] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_CARET] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_typedef] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym___attribute] = ACTIONS(1275), + [anon_sym___attribute__] = ACTIONS(1275), + [anon_sym___declspec] = ACTIONS(1275), + [anon_sym___cdecl] = ACTIONS(1275), + [anon_sym___clrcall] = ACTIONS(1275), + [anon_sym___stdcall] = ACTIONS(1275), + [anon_sym___fastcall] = ACTIONS(1275), + [anon_sym___thiscall] = ACTIONS(1275), + [anon_sym___vectorcall] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_auto] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_inline] = ACTIONS(1275), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1275), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1275), + [anon_sym_in] = ACTIONS(1275), + [anon_sym_out] = ACTIONS(1275), + [anon_sym_inout] = ACTIONS(1275), + [anon_sym_bycopy] = ACTIONS(1275), + [anon_sym_byref] = ACTIONS(1275), + [anon_sym_oneway] = ACTIONS(1275), + [anon_sym__Nullable] = ACTIONS(1275), + [anon_sym__Nonnull] = ACTIONS(1275), + [anon_sym__Nullable_result] = ACTIONS(1275), + [anon_sym__Null_unspecified] = ACTIONS(1275), + [anon_sym___autoreleasing] = ACTIONS(1275), + [anon_sym___nullable] = ACTIONS(1275), + [anon_sym___nonnull] = ACTIONS(1275), + [anon_sym___strong] = ACTIONS(1275), + [anon_sym___weak] = ACTIONS(1275), + [anon_sym___bridge] = ACTIONS(1275), + [anon_sym___bridge_transfer] = ACTIONS(1275), + [anon_sym___bridge_retained] = ACTIONS(1275), + [anon_sym___unsafe_unretained] = ACTIONS(1275), + [anon_sym___block] = ACTIONS(1275), + [anon_sym___kindof] = ACTIONS(1275), + [anon_sym___unused] = ACTIONS(1275), + [anon_sym__Complex] = ACTIONS(1275), + [anon_sym___complex] = ACTIONS(1275), + [anon_sym_IBOutlet] = ACTIONS(1275), + [anon_sym_IBInspectable] = ACTIONS(1275), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1275), + [anon_sym_signed] = ACTIONS(1275), + [anon_sym_unsigned] = ACTIONS(1275), + [anon_sym_long] = ACTIONS(1275), + [anon_sym_short] = ACTIONS(1275), + [sym_primitive_type] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_else] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_case] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_goto] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1275), + [sym_number_literal] = ACTIONS(1273), + [anon_sym_L_SQUOTE] = ACTIONS(1273), + [anon_sym_u_SQUOTE] = ACTIONS(1273), + [anon_sym_U_SQUOTE] = ACTIONS(1273), + [anon_sym_u8_SQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1273), + [anon_sym_L_DQUOTE] = ACTIONS(1273), + [anon_sym_u_DQUOTE] = ACTIONS(1273), + [anon_sym_U_DQUOTE] = ACTIONS(1273), + [anon_sym_u8_DQUOTE] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_true] = ACTIONS(1275), + [sym_false] = ACTIONS(1275), + [sym_null] = ACTIONS(1275), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1273), + [anon_sym_ATimport] = ACTIONS(1273), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1275), + [anon_sym_ATcompatibility_alias] = ACTIONS(1273), + [anon_sym_ATprotocol] = ACTIONS(1273), + [anon_sym_ATclass] = ACTIONS(1273), + [anon_sym_ATinterface] = ACTIONS(1273), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1275), + [sym_method_attribute_specifier] = ACTIONS(1275), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1275), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1275), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1275), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1275), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1275), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1275), + [anon_sym_NS_AVAILABLE] = ACTIONS(1275), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1275), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1275), + [anon_sym_API_AVAILABLE] = ACTIONS(1275), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1275), + [anon_sym_API_DEPRECATED] = ACTIONS(1275), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1275), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1275), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1275), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1275), + [anon_sym___deprecated_msg] = ACTIONS(1275), + [anon_sym___deprecated_enum_msg] = ACTIONS(1275), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1275), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1275), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1275), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1275), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1275), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1275), + [anon_sym_ATimplementation] = ACTIONS(1273), + [anon_sym_NS_ENUM] = ACTIONS(1275), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1275), + [anon_sym_NS_OPTIONS] = ACTIONS(1275), + [anon_sym_typeof] = ACTIONS(1275), + [anon_sym___typeof] = ACTIONS(1275), + [anon_sym___typeof__] = ACTIONS(1275), + [sym_self] = ACTIONS(1275), + [sym_super] = ACTIONS(1275), + [sym_nil] = ACTIONS(1275), + [sym_id] = ACTIONS(1275), + [sym_instancetype] = ACTIONS(1275), + [sym_Class] = ACTIONS(1275), + [sym_SEL] = ACTIONS(1275), + [sym_IMP] = ACTIONS(1275), + [sym_BOOL] = ACTIONS(1275), + [sym_auto] = ACTIONS(1275), + [anon_sym_ATautoreleasepool] = ACTIONS(1273), + [anon_sym_ATsynchronized] = ACTIONS(1273), + [anon_sym_ATtry] = ACTIONS(1273), + [anon_sym_ATcatch] = ACTIONS(1273), + [anon_sym_ATfinally] = ACTIONS(1273), + [anon_sym_ATthrow] = ACTIONS(1273), + [anon_sym_ATselector] = ACTIONS(1273), + [anon_sym_ATencode] = ACTIONS(1273), + [anon_sym_AT] = ACTIONS(1275), + [sym_YES] = ACTIONS(1275), + [sym_NO] = ACTIONS(1275), + [anon_sym___builtin_available] = ACTIONS(1275), + [anon_sym_ATavailable] = ACTIONS(1273), + [anon_sym_va_arg] = ACTIONS(1275), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [220] = { + [sym_identifier] = ACTIONS(1279), + [aux_sym_preproc_include_token1] = ACTIONS(1277), + [aux_sym_preproc_def_token1] = ACTIONS(1277), + [aux_sym_preproc_if_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token2] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), + [aux_sym_preproc_else_token1] = ACTIONS(1279), + [aux_sym_preproc_elif_token1] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1277), + [anon_sym_CARET] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_typedef] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym___attribute] = ACTIONS(1279), + [anon_sym___attribute__] = ACTIONS(1279), + [anon_sym___declspec] = ACTIONS(1279), + [anon_sym___cdecl] = ACTIONS(1279), + [anon_sym___clrcall] = ACTIONS(1279), + [anon_sym___stdcall] = ACTIONS(1279), + [anon_sym___fastcall] = ACTIONS(1279), + [anon_sym___thiscall] = ACTIONS(1279), + [anon_sym___vectorcall] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_auto] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_inline] = ACTIONS(1279), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_volatile] = ACTIONS(1279), + [anon_sym_restrict] = ACTIONS(1279), + [anon_sym__Atomic] = ACTIONS(1279), + [anon_sym_in] = ACTIONS(1279), + [anon_sym_out] = ACTIONS(1279), + [anon_sym_inout] = ACTIONS(1279), + [anon_sym_bycopy] = ACTIONS(1279), + [anon_sym_byref] = ACTIONS(1279), + [anon_sym_oneway] = ACTIONS(1279), + [anon_sym__Nullable] = ACTIONS(1279), + [anon_sym__Nonnull] = ACTIONS(1279), + [anon_sym__Nullable_result] = ACTIONS(1279), + [anon_sym__Null_unspecified] = ACTIONS(1279), + [anon_sym___autoreleasing] = ACTIONS(1279), + [anon_sym___nullable] = ACTIONS(1279), + [anon_sym___nonnull] = ACTIONS(1279), + [anon_sym___strong] = ACTIONS(1279), + [anon_sym___weak] = ACTIONS(1279), + [anon_sym___bridge] = ACTIONS(1279), + [anon_sym___bridge_transfer] = ACTIONS(1279), + [anon_sym___bridge_retained] = ACTIONS(1279), + [anon_sym___unsafe_unretained] = ACTIONS(1279), + [anon_sym___block] = ACTIONS(1279), + [anon_sym___kindof] = ACTIONS(1279), + [anon_sym___unused] = ACTIONS(1279), + [anon_sym__Complex] = ACTIONS(1279), + [anon_sym___complex] = ACTIONS(1279), + [anon_sym_IBOutlet] = ACTIONS(1279), + [anon_sym_IBInspectable] = ACTIONS(1279), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1279), + [anon_sym_signed] = ACTIONS(1279), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [sym_primitive_type] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_else] = ACTIONS(1279), + [anon_sym_switch] = ACTIONS(1279), + [anon_sym_case] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_goto] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1279), + [sym_number_literal] = ACTIONS(1277), + [anon_sym_L_SQUOTE] = ACTIONS(1277), + [anon_sym_u_SQUOTE] = ACTIONS(1277), + [anon_sym_U_SQUOTE] = ACTIONS(1277), + [anon_sym_u8_SQUOTE] = ACTIONS(1277), + [anon_sym_SQUOTE] = ACTIONS(1277), + [anon_sym_L_DQUOTE] = ACTIONS(1277), + [anon_sym_u_DQUOTE] = ACTIONS(1277), + [anon_sym_U_DQUOTE] = ACTIONS(1277), + [anon_sym_u8_DQUOTE] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [sym_null] = ACTIONS(1279), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1277), + [anon_sym_ATimport] = ACTIONS(1277), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1279), + [anon_sym_ATcompatibility_alias] = ACTIONS(1277), + [anon_sym_ATprotocol] = ACTIONS(1277), + [anon_sym_ATclass] = ACTIONS(1277), + [anon_sym_ATinterface] = ACTIONS(1277), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1279), + [sym_method_attribute_specifier] = ACTIONS(1279), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1279), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1279), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1279), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1279), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1279), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1279), + [anon_sym_NS_AVAILABLE] = ACTIONS(1279), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1279), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1279), + [anon_sym_API_AVAILABLE] = ACTIONS(1279), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1279), + [anon_sym_API_DEPRECATED] = ACTIONS(1279), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1279), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1279), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1279), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1279), + [anon_sym___deprecated_msg] = ACTIONS(1279), + [anon_sym___deprecated_enum_msg] = ACTIONS(1279), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1279), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1279), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1279), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1279), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1279), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1279), + [anon_sym_ATimplementation] = ACTIONS(1277), + [anon_sym_NS_ENUM] = ACTIONS(1279), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1279), + [anon_sym_NS_OPTIONS] = ACTIONS(1279), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___typeof] = ACTIONS(1279), + [anon_sym___typeof__] = ACTIONS(1279), + [sym_self] = ACTIONS(1279), + [sym_super] = ACTIONS(1279), + [sym_nil] = ACTIONS(1279), + [sym_id] = ACTIONS(1279), + [sym_instancetype] = ACTIONS(1279), + [sym_Class] = ACTIONS(1279), + [sym_SEL] = ACTIONS(1279), + [sym_IMP] = ACTIONS(1279), + [sym_BOOL] = ACTIONS(1279), + [sym_auto] = ACTIONS(1279), + [anon_sym_ATautoreleasepool] = ACTIONS(1277), + [anon_sym_ATsynchronized] = ACTIONS(1277), + [anon_sym_ATtry] = ACTIONS(1277), + [anon_sym_ATcatch] = ACTIONS(1277), + [anon_sym_ATfinally] = ACTIONS(1277), + [anon_sym_ATthrow] = ACTIONS(1277), + [anon_sym_ATselector] = ACTIONS(1277), + [anon_sym_ATencode] = ACTIONS(1277), + [anon_sym_AT] = ACTIONS(1279), + [sym_YES] = ACTIONS(1279), + [sym_NO] = ACTIONS(1279), + [anon_sym___builtin_available] = ACTIONS(1279), + [anon_sym_ATavailable] = ACTIONS(1277), + [anon_sym_va_arg] = ACTIONS(1279), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [221] = { + [sym_identifier] = ACTIONS(1283), + [aux_sym_preproc_include_token1] = ACTIONS(1281), + [aux_sym_preproc_def_token1] = ACTIONS(1281), + [aux_sym_preproc_if_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token2] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), + [aux_sym_preproc_else_token1] = ACTIONS(1283), + [aux_sym_preproc_elif_token1] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym___attribute] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym___declspec] = ACTIONS(1283), + [anon_sym___cdecl] = ACTIONS(1283), + [anon_sym___clrcall] = ACTIONS(1283), + [anon_sym___stdcall] = ACTIONS(1283), + [anon_sym___fastcall] = ACTIONS(1283), + [anon_sym___thiscall] = ACTIONS(1283), + [anon_sym___vectorcall] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1281), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [anon_sym__Atomic] = ACTIONS(1283), + [anon_sym_in] = ACTIONS(1283), + [anon_sym_out] = ACTIONS(1283), + [anon_sym_inout] = ACTIONS(1283), + [anon_sym_bycopy] = ACTIONS(1283), + [anon_sym_byref] = ACTIONS(1283), + [anon_sym_oneway] = ACTIONS(1283), + [anon_sym__Nullable] = ACTIONS(1283), + [anon_sym__Nonnull] = ACTIONS(1283), + [anon_sym__Nullable_result] = ACTIONS(1283), + [anon_sym__Null_unspecified] = ACTIONS(1283), + [anon_sym___autoreleasing] = ACTIONS(1283), + [anon_sym___nullable] = ACTIONS(1283), + [anon_sym___nonnull] = ACTIONS(1283), + [anon_sym___strong] = ACTIONS(1283), + [anon_sym___weak] = ACTIONS(1283), + [anon_sym___bridge] = ACTIONS(1283), + [anon_sym___bridge_transfer] = ACTIONS(1283), + [anon_sym___bridge_retained] = ACTIONS(1283), + [anon_sym___unsafe_unretained] = ACTIONS(1283), + [anon_sym___block] = ACTIONS(1283), + [anon_sym___kindof] = ACTIONS(1283), + [anon_sym___unused] = ACTIONS(1283), + [anon_sym__Complex] = ACTIONS(1283), + [anon_sym___complex] = ACTIONS(1283), + [anon_sym_IBOutlet] = ACTIONS(1283), + [anon_sym_IBInspectable] = ACTIONS(1283), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1283), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [sym_primitive_type] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_else] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_case] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_goto] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [sym_number_literal] = ACTIONS(1281), + [anon_sym_L_SQUOTE] = ACTIONS(1281), + [anon_sym_u_SQUOTE] = ACTIONS(1281), + [anon_sym_U_SQUOTE] = ACTIONS(1281), + [anon_sym_u8_SQUOTE] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_L_DQUOTE] = ACTIONS(1281), + [anon_sym_u_DQUOTE] = ACTIONS(1281), + [anon_sym_U_DQUOTE] = ACTIONS(1281), + [anon_sym_u8_DQUOTE] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [sym_null] = ACTIONS(1283), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1281), + [anon_sym_ATimport] = ACTIONS(1281), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1283), + [anon_sym_ATcompatibility_alias] = ACTIONS(1281), + [anon_sym_ATprotocol] = ACTIONS(1281), + [anon_sym_ATclass] = ACTIONS(1281), + [anon_sym_ATinterface] = ACTIONS(1281), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1283), + [sym_method_attribute_specifier] = ACTIONS(1283), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1283), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1283), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1283), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1283), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1283), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1283), + [anon_sym_NS_AVAILABLE] = ACTIONS(1283), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1283), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1283), + [anon_sym_API_AVAILABLE] = ACTIONS(1283), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1283), + [anon_sym_API_DEPRECATED] = ACTIONS(1283), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1283), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1283), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1283), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1283), + [anon_sym___deprecated_msg] = ACTIONS(1283), + [anon_sym___deprecated_enum_msg] = ACTIONS(1283), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1283), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1283), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1283), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1283), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1283), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1283), + [anon_sym_ATimplementation] = ACTIONS(1281), + [anon_sym_NS_ENUM] = ACTIONS(1283), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1283), + [anon_sym_NS_OPTIONS] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1283), + [anon_sym___typeof] = ACTIONS(1283), + [anon_sym___typeof__] = ACTIONS(1283), + [sym_self] = ACTIONS(1283), + [sym_super] = ACTIONS(1283), + [sym_nil] = ACTIONS(1283), + [sym_id] = ACTIONS(1283), + [sym_instancetype] = ACTIONS(1283), + [sym_Class] = ACTIONS(1283), + [sym_SEL] = ACTIONS(1283), + [sym_IMP] = ACTIONS(1283), + [sym_BOOL] = ACTIONS(1283), + [sym_auto] = ACTIONS(1283), + [anon_sym_ATautoreleasepool] = ACTIONS(1281), + [anon_sym_ATsynchronized] = ACTIONS(1281), + [anon_sym_ATtry] = ACTIONS(1281), + [anon_sym_ATcatch] = ACTIONS(1281), + [anon_sym_ATfinally] = ACTIONS(1281), + [anon_sym_ATthrow] = ACTIONS(1281), + [anon_sym_ATselector] = ACTIONS(1281), + [anon_sym_ATencode] = ACTIONS(1281), + [anon_sym_AT] = ACTIONS(1283), + [sym_YES] = ACTIONS(1283), + [sym_NO] = ACTIONS(1283), + [anon_sym___builtin_available] = ACTIONS(1283), + [anon_sym_ATavailable] = ACTIONS(1281), + [anon_sym_va_arg] = ACTIONS(1283), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [222] = { + [sym_identifier] = ACTIONS(1288), + [aux_sym_preproc_include_token1] = ACTIONS(1285), + [aux_sym_preproc_def_token1] = ACTIONS(1285), + [aux_sym_preproc_if_token1] = ACTIONS(1288), + [aux_sym_preproc_if_token2] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), + [aux_sym_preproc_else_token1] = ACTIONS(1288), + [aux_sym_preproc_elif_token1] = ACTIONS(1288), + [anon_sym_LPAREN2] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1285), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_typedef] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym___attribute] = ACTIONS(1288), + [anon_sym___attribute__] = ACTIONS(1288), + [anon_sym___declspec] = ACTIONS(1288), + [anon_sym___cdecl] = ACTIONS(1288), + [anon_sym___clrcall] = ACTIONS(1288), + [anon_sym___stdcall] = ACTIONS(1288), + [anon_sym___fastcall] = ACTIONS(1288), + [anon_sym___thiscall] = ACTIONS(1288), + [anon_sym___vectorcall] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_auto] = ACTIONS(1288), + [anon_sym_register] = ACTIONS(1288), + [anon_sym_inline] = ACTIONS(1288), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_volatile] = ACTIONS(1288), + [anon_sym_restrict] = ACTIONS(1288), + [anon_sym__Atomic] = ACTIONS(1288), + [anon_sym_in] = ACTIONS(1288), + [anon_sym_out] = ACTIONS(1288), + [anon_sym_inout] = ACTIONS(1288), + [anon_sym_bycopy] = ACTIONS(1288), + [anon_sym_byref] = ACTIONS(1288), + [anon_sym_oneway] = ACTIONS(1288), + [anon_sym__Nullable] = ACTIONS(1288), + [anon_sym__Nonnull] = ACTIONS(1288), + [anon_sym__Nullable_result] = ACTIONS(1288), + [anon_sym__Null_unspecified] = ACTIONS(1288), + [anon_sym___autoreleasing] = ACTIONS(1288), + [anon_sym___nullable] = ACTIONS(1288), + [anon_sym___nonnull] = ACTIONS(1288), + [anon_sym___strong] = ACTIONS(1288), + [anon_sym___weak] = ACTIONS(1288), + [anon_sym___bridge] = ACTIONS(1288), + [anon_sym___bridge_transfer] = ACTIONS(1288), + [anon_sym___bridge_retained] = ACTIONS(1288), + [anon_sym___unsafe_unretained] = ACTIONS(1288), + [anon_sym___block] = ACTIONS(1288), + [anon_sym___kindof] = ACTIONS(1288), + [anon_sym___unused] = ACTIONS(1288), + [anon_sym__Complex] = ACTIONS(1288), + [anon_sym___complex] = ACTIONS(1288), + [anon_sym_IBOutlet] = ACTIONS(1288), + [anon_sym_IBInspectable] = ACTIONS(1288), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1288), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [sym_primitive_type] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_switch] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_do] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_goto] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1288), + [sym_number_literal] = ACTIONS(1285), + [anon_sym_L_SQUOTE] = ACTIONS(1285), + [anon_sym_u_SQUOTE] = ACTIONS(1285), + [anon_sym_U_SQUOTE] = ACTIONS(1285), + [anon_sym_u8_SQUOTE] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1285), + [anon_sym_L_DQUOTE] = ACTIONS(1285), + [anon_sym_u_DQUOTE] = ACTIONS(1285), + [anon_sym_U_DQUOTE] = ACTIONS(1285), + [anon_sym_u8_DQUOTE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_true] = ACTIONS(1288), + [sym_false] = ACTIONS(1288), + [sym_null] = ACTIONS(1288), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1285), + [anon_sym_ATimport] = ACTIONS(1285), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1288), + [anon_sym_ATcompatibility_alias] = ACTIONS(1285), + [anon_sym_ATprotocol] = ACTIONS(1285), + [anon_sym_ATclass] = ACTIONS(1285), + [anon_sym_ATinterface] = ACTIONS(1285), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1288), + [sym_method_attribute_specifier] = ACTIONS(1288), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1288), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1288), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1288), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1288), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1288), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1288), + [anon_sym_NS_AVAILABLE] = ACTIONS(1288), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1288), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1288), + [anon_sym_API_AVAILABLE] = ACTIONS(1288), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1288), + [anon_sym_API_DEPRECATED] = ACTIONS(1288), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1288), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1288), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1288), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1288), + [anon_sym___deprecated_msg] = ACTIONS(1288), + [anon_sym___deprecated_enum_msg] = ACTIONS(1288), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1288), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1288), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1288), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1288), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1288), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1288), + [anon_sym_ATimplementation] = ACTIONS(1285), + [anon_sym_NS_ENUM] = ACTIONS(1288), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1288), + [anon_sym_NS_OPTIONS] = ACTIONS(1288), + [anon_sym_typeof] = ACTIONS(1288), + [anon_sym___typeof] = ACTIONS(1288), + [anon_sym___typeof__] = ACTIONS(1288), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_nil] = ACTIONS(1288), + [sym_id] = ACTIONS(1288), + [sym_instancetype] = ACTIONS(1288), + [sym_Class] = ACTIONS(1288), + [sym_SEL] = ACTIONS(1288), + [sym_IMP] = ACTIONS(1288), + [sym_BOOL] = ACTIONS(1288), + [sym_auto] = ACTIONS(1288), + [anon_sym_ATautoreleasepool] = ACTIONS(1285), + [anon_sym_ATsynchronized] = ACTIONS(1285), + [anon_sym_ATtry] = ACTIONS(1285), + [anon_sym_ATcatch] = ACTIONS(1285), + [anon_sym_ATfinally] = ACTIONS(1285), + [anon_sym_ATthrow] = ACTIONS(1285), + [anon_sym_ATselector] = ACTIONS(1285), + [anon_sym_ATencode] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1288), + [sym_YES] = ACTIONS(1288), + [sym_NO] = ACTIONS(1288), + [anon_sym___builtin_available] = ACTIONS(1288), + [anon_sym_ATavailable] = ACTIONS(1285), + [anon_sym_va_arg] = ACTIONS(1288), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [223] = { + [sym_identifier] = ACTIONS(1293), + [aux_sym_preproc_include_token1] = ACTIONS(1291), + [aux_sym_preproc_def_token1] = ACTIONS(1291), + [aux_sym_preproc_if_token1] = ACTIONS(1293), + [aux_sym_preproc_if_token2] = ACTIONS(1293), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1293), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1293), + [aux_sym_preproc_else_token1] = ACTIONS(1293), + [aux_sym_preproc_elif_token1] = ACTIONS(1293), + [anon_sym_LPAREN2] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_TILDE] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1293), + [anon_sym_PLUS] = ACTIONS(1293), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_CARET] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_SEMI] = ACTIONS(1291), + [anon_sym_typedef] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1293), + [anon_sym___attribute] = ACTIONS(1293), + [anon_sym___attribute__] = ACTIONS(1293), + [anon_sym___declspec] = ACTIONS(1293), + [anon_sym___cdecl] = ACTIONS(1293), + [anon_sym___clrcall] = ACTIONS(1293), + [anon_sym___stdcall] = ACTIONS(1293), + [anon_sym___fastcall] = ACTIONS(1293), + [anon_sym___thiscall] = ACTIONS(1293), + [anon_sym___vectorcall] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_static] = ACTIONS(1293), + [anon_sym_auto] = ACTIONS(1293), + [anon_sym_register] = ACTIONS(1293), + [anon_sym_inline] = ACTIONS(1293), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_volatile] = ACTIONS(1293), + [anon_sym_restrict] = ACTIONS(1293), + [anon_sym__Atomic] = ACTIONS(1293), + [anon_sym_in] = ACTIONS(1293), + [anon_sym_out] = ACTIONS(1293), + [anon_sym_inout] = ACTIONS(1293), + [anon_sym_bycopy] = ACTIONS(1293), + [anon_sym_byref] = ACTIONS(1293), + [anon_sym_oneway] = ACTIONS(1293), + [anon_sym__Nullable] = ACTIONS(1293), + [anon_sym__Nonnull] = ACTIONS(1293), + [anon_sym__Nullable_result] = ACTIONS(1293), + [anon_sym__Null_unspecified] = ACTIONS(1293), + [anon_sym___autoreleasing] = ACTIONS(1293), + [anon_sym___nullable] = ACTIONS(1293), + [anon_sym___nonnull] = ACTIONS(1293), + [anon_sym___strong] = ACTIONS(1293), + [anon_sym___weak] = ACTIONS(1293), + [anon_sym___bridge] = ACTIONS(1293), + [anon_sym___bridge_transfer] = ACTIONS(1293), + [anon_sym___bridge_retained] = ACTIONS(1293), + [anon_sym___unsafe_unretained] = ACTIONS(1293), + [anon_sym___block] = ACTIONS(1293), + [anon_sym___kindof] = ACTIONS(1293), + [anon_sym___unused] = ACTIONS(1293), + [anon_sym__Complex] = ACTIONS(1293), + [anon_sym___complex] = ACTIONS(1293), + [anon_sym_IBOutlet] = ACTIONS(1293), + [anon_sym_IBInspectable] = ACTIONS(1293), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1293), + [anon_sym_signed] = ACTIONS(1293), + [anon_sym_unsigned] = ACTIONS(1293), + [anon_sym_long] = ACTIONS(1293), + [anon_sym_short] = ACTIONS(1293), + [sym_primitive_type] = ACTIONS(1293), + [anon_sym_enum] = ACTIONS(1293), + [anon_sym_struct] = ACTIONS(1293), + [anon_sym_union] = ACTIONS(1293), + [anon_sym_if] = ACTIONS(1293), + [anon_sym_else] = ACTIONS(1293), + [anon_sym_switch] = ACTIONS(1293), + [anon_sym_case] = ACTIONS(1293), + [anon_sym_default] = ACTIONS(1293), + [anon_sym_while] = ACTIONS(1293), + [anon_sym_do] = ACTIONS(1293), + [anon_sym_for] = ACTIONS(1293), + [anon_sym_return] = ACTIONS(1293), + [anon_sym_break] = ACTIONS(1293), + [anon_sym_continue] = ACTIONS(1293), + [anon_sym_goto] = ACTIONS(1293), + [anon_sym_DASH_DASH] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1291), + [anon_sym_sizeof] = ACTIONS(1293), + [sym_number_literal] = ACTIONS(1291), + [anon_sym_L_SQUOTE] = ACTIONS(1291), + [anon_sym_u_SQUOTE] = ACTIONS(1291), + [anon_sym_U_SQUOTE] = ACTIONS(1291), + [anon_sym_u8_SQUOTE] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_L_DQUOTE] = ACTIONS(1291), + [anon_sym_u_DQUOTE] = ACTIONS(1291), + [anon_sym_U_DQUOTE] = ACTIONS(1291), + [anon_sym_u8_DQUOTE] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1291), + [sym_true] = ACTIONS(1293), + [sym_false] = ACTIONS(1293), + [sym_null] = ACTIONS(1293), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1291), + [anon_sym_ATimport] = ACTIONS(1291), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1293), + [anon_sym_ATcompatibility_alias] = ACTIONS(1291), + [anon_sym_ATprotocol] = ACTIONS(1291), + [anon_sym_ATclass] = ACTIONS(1291), + [anon_sym_ATinterface] = ACTIONS(1291), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1293), + [sym_method_attribute_specifier] = ACTIONS(1293), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1293), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1293), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1293), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1293), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1293), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1293), + [anon_sym_NS_AVAILABLE] = ACTIONS(1293), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1293), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1293), + [anon_sym_API_AVAILABLE] = ACTIONS(1293), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1293), + [anon_sym_API_DEPRECATED] = ACTIONS(1293), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1293), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1293), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1293), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1293), + [anon_sym___deprecated_msg] = ACTIONS(1293), + [anon_sym___deprecated_enum_msg] = ACTIONS(1293), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1293), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1293), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1293), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1293), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1293), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1293), + [anon_sym_ATimplementation] = ACTIONS(1291), + [anon_sym_NS_ENUM] = ACTIONS(1293), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1293), + [anon_sym_NS_OPTIONS] = ACTIONS(1293), + [anon_sym_typeof] = ACTIONS(1293), + [anon_sym___typeof] = ACTIONS(1293), + [anon_sym___typeof__] = ACTIONS(1293), + [sym_self] = ACTIONS(1293), + [sym_super] = ACTIONS(1293), + [sym_nil] = ACTIONS(1293), + [sym_id] = ACTIONS(1293), + [sym_instancetype] = ACTIONS(1293), + [sym_Class] = ACTIONS(1293), + [sym_SEL] = ACTIONS(1293), + [sym_IMP] = ACTIONS(1293), + [sym_BOOL] = ACTIONS(1293), + [sym_auto] = ACTIONS(1293), + [anon_sym_ATautoreleasepool] = ACTIONS(1291), + [anon_sym_ATsynchronized] = ACTIONS(1291), + [anon_sym_ATtry] = ACTIONS(1291), + [anon_sym_ATcatch] = ACTIONS(1291), + [anon_sym_ATfinally] = ACTIONS(1291), + [anon_sym_ATthrow] = ACTIONS(1291), + [anon_sym_ATselector] = ACTIONS(1291), + [anon_sym_ATencode] = ACTIONS(1291), + [anon_sym_AT] = ACTIONS(1293), + [sym_YES] = ACTIONS(1293), + [sym_NO] = ACTIONS(1293), + [anon_sym___builtin_available] = ACTIONS(1293), + [anon_sym_ATavailable] = ACTIONS(1291), + [anon_sym_va_arg] = ACTIONS(1293), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [224] = { + [ts_builtin_sym_end] = ACTIONS(1575), + [sym_identifier] = ACTIONS(1577), + [aux_sym_preproc_include_token1] = ACTIONS(1575), + [aux_sym_preproc_def_token1] = ACTIONS(1575), + [anon_sym_RPAREN] = ACTIONS(1575), + [aux_sym_preproc_if_token1] = ACTIONS(1577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1577), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1577), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_CARET] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_typedef] = ACTIONS(1577), + [anon_sym_extern] = ACTIONS(1577), + [anon_sym___attribute] = ACTIONS(1577), + [anon_sym___attribute__] = ACTIONS(1577), + [anon_sym___declspec] = ACTIONS(1577), + [anon_sym___cdecl] = ACTIONS(1577), + [anon_sym___clrcall] = ACTIONS(1577), + [anon_sym___stdcall] = ACTIONS(1577), + [anon_sym___fastcall] = ACTIONS(1577), + [anon_sym___thiscall] = ACTIONS(1577), + [anon_sym___vectorcall] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_auto] = ACTIONS(1577), + [anon_sym_register] = ACTIONS(1577), + [anon_sym_inline] = ACTIONS(1577), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_volatile] = ACTIONS(1577), + [anon_sym_restrict] = ACTIONS(1577), + [anon_sym__Atomic] = ACTIONS(1577), + [anon_sym_in] = ACTIONS(1577), + [anon_sym_out] = ACTIONS(1577), + [anon_sym_inout] = ACTIONS(1577), + [anon_sym_bycopy] = ACTIONS(1577), + [anon_sym_byref] = ACTIONS(1577), + [anon_sym_oneway] = ACTIONS(1577), + [anon_sym__Nullable] = ACTIONS(1577), + [anon_sym__Nonnull] = ACTIONS(1577), + [anon_sym__Nullable_result] = ACTIONS(1577), + [anon_sym__Null_unspecified] = ACTIONS(1577), + [anon_sym___autoreleasing] = ACTIONS(1577), + [anon_sym___nullable] = ACTIONS(1577), + [anon_sym___nonnull] = ACTIONS(1577), + [anon_sym___strong] = ACTIONS(1577), + [anon_sym___weak] = ACTIONS(1577), + [anon_sym___bridge] = ACTIONS(1577), + [anon_sym___bridge_transfer] = ACTIONS(1577), + [anon_sym___bridge_retained] = ACTIONS(1577), + [anon_sym___unsafe_unretained] = ACTIONS(1577), + [anon_sym___block] = ACTIONS(1577), + [anon_sym___kindof] = ACTIONS(1577), + [anon_sym___unused] = ACTIONS(1577), + [anon_sym__Complex] = ACTIONS(1577), + [anon_sym___complex] = ACTIONS(1577), + [anon_sym_IBOutlet] = ACTIONS(1577), + [anon_sym_IBInspectable] = ACTIONS(1577), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1577), + [anon_sym_signed] = ACTIONS(1577), + [anon_sym_unsigned] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [sym_primitive_type] = ACTIONS(1577), + [anon_sym_enum] = ACTIONS(1577), + [anon_sym_struct] = ACTIONS(1577), + [anon_sym_union] = ACTIONS(1577), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_else] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_case] = ACTIONS(1577), + [anon_sym_default] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_goto] = ACTIONS(1577), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_sizeof] = ACTIONS(1577), + [sym_number_literal] = ACTIONS(1575), + [anon_sym_L_SQUOTE] = ACTIONS(1575), + [anon_sym_u_SQUOTE] = ACTIONS(1575), + [anon_sym_U_SQUOTE] = ACTIONS(1575), + [anon_sym_u8_SQUOTE] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_L_DQUOTE] = ACTIONS(1575), + [anon_sym_u_DQUOTE] = ACTIONS(1575), + [anon_sym_U_DQUOTE] = ACTIONS(1575), + [anon_sym_u8_DQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym_true] = ACTIONS(1577), + [sym_false] = ACTIONS(1577), + [sym_null] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1575), + [anon_sym_ATimport] = ACTIONS(1575), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1577), + [anon_sym_ATcompatibility_alias] = ACTIONS(1575), + [anon_sym_ATprotocol] = ACTIONS(1575), + [anon_sym_ATclass] = ACTIONS(1575), + [anon_sym_ATinterface] = ACTIONS(1575), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1577), + [sym_method_attribute_specifier] = ACTIONS(1577), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1577), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1577), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1577), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1577), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1577), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1577), + [anon_sym_NS_AVAILABLE] = ACTIONS(1577), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1577), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1577), + [anon_sym_API_AVAILABLE] = ACTIONS(1577), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1577), + [anon_sym_API_DEPRECATED] = ACTIONS(1577), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1577), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1577), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1577), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1577), + [anon_sym___deprecated_msg] = ACTIONS(1577), + [anon_sym___deprecated_enum_msg] = ACTIONS(1577), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1577), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1577), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1577), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1577), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1577), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1577), + [anon_sym_ATimplementation] = ACTIONS(1575), + [anon_sym_NS_ENUM] = ACTIONS(1577), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1577), + [anon_sym_NS_OPTIONS] = ACTIONS(1577), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym___typeof] = ACTIONS(1577), + [anon_sym___typeof__] = ACTIONS(1577), + [sym_self] = ACTIONS(1577), + [sym_super] = ACTIONS(1577), + [sym_nil] = ACTIONS(1577), + [sym_id] = ACTIONS(1577), + [sym_instancetype] = ACTIONS(1577), + [sym_Class] = ACTIONS(1577), + [sym_SEL] = ACTIONS(1577), + [sym_IMP] = ACTIONS(1577), + [sym_BOOL] = ACTIONS(1577), + [sym_auto] = ACTIONS(1577), + [anon_sym_ATautoreleasepool] = ACTIONS(1575), + [anon_sym_ATsynchronized] = ACTIONS(1575), + [anon_sym_ATtry] = ACTIONS(1575), + [anon_sym_ATcatch] = ACTIONS(1575), + [anon_sym_ATfinally] = ACTIONS(1575), + [anon_sym_ATthrow] = ACTIONS(1575), + [anon_sym_ATselector] = ACTIONS(1575), + [anon_sym_ATencode] = ACTIONS(1575), + [anon_sym_AT] = ACTIONS(1577), + [sym_YES] = ACTIONS(1577), + [sym_NO] = ACTIONS(1577), + [anon_sym___builtin_available] = ACTIONS(1577), + [anon_sym_ATavailable] = ACTIONS(1575), + [anon_sym_va_arg] = ACTIONS(1577), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [225] = { [ts_builtin_sym_end] = ACTIONS(1559), [sym_identifier] = ACTIONS(1557), [aux_sym_preproc_include_token1] = ACTIONS(1559), @@ -68510,9 +65353,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1557), [sym_primitive_type] = ACTIONS(1557), [anon_sym_enum] = ACTIONS(1557), - [anon_sym_NS_ENUM] = ACTIONS(1557), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1557), - [anon_sym_NS_OPTIONS] = ACTIONS(1557), [anon_sym_struct] = ACTIONS(1557), [anon_sym_union] = ACTIONS(1557), [anon_sym_if] = ACTIONS(1557), @@ -68579,6 +65419,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1557), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1557), [anon_sym_ATimplementation] = ACTIONS(1559), + [anon_sym_NS_ENUM] = ACTIONS(1557), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1557), + [anon_sym_NS_OPTIONS] = ACTIONS(1557), [anon_sym_typeof] = ACTIONS(1557), [anon_sym___typeof] = ACTIONS(1557), [anon_sym___typeof__] = ACTIONS(1557), @@ -68613,176 +65456,3362 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [244] = { - [ts_builtin_sym_end] = ACTIONS(1551), - [sym_identifier] = ACTIONS(1549), - [aux_sym_preproc_include_token1] = ACTIONS(1551), - [aux_sym_preproc_def_token1] = ACTIONS(1551), - [anon_sym_RPAREN] = ACTIONS(1551), - [aux_sym_preproc_if_token1] = ACTIONS(1549), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1549), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1549), - [anon_sym_LPAREN2] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_typedef] = ACTIONS(1549), - [anon_sym_extern] = ACTIONS(1549), - [anon_sym___attribute] = ACTIONS(1549), - [anon_sym___attribute__] = ACTIONS(1549), - [anon_sym___declspec] = ACTIONS(1549), - [anon_sym___cdecl] = ACTIONS(1549), - [anon_sym___clrcall] = ACTIONS(1549), - [anon_sym___stdcall] = ACTIONS(1549), - [anon_sym___fastcall] = ACTIONS(1549), - [anon_sym___thiscall] = ACTIONS(1549), - [anon_sym___vectorcall] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_RBRACE] = ACTIONS(1551), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1549), - [anon_sym_auto] = ACTIONS(1549), - [anon_sym_register] = ACTIONS(1549), - [anon_sym_inline] = ACTIONS(1549), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_volatile] = ACTIONS(1549), - [anon_sym_restrict] = ACTIONS(1549), - [anon_sym__Atomic] = ACTIONS(1549), - [anon_sym_in] = ACTIONS(1549), - [anon_sym_out] = ACTIONS(1549), - [anon_sym_inout] = ACTIONS(1549), - [anon_sym_bycopy] = ACTIONS(1549), - [anon_sym_byref] = ACTIONS(1549), - [anon_sym_oneway] = ACTIONS(1549), - [anon_sym__Nullable] = ACTIONS(1549), - [anon_sym__Nonnull] = ACTIONS(1549), - [anon_sym__Nullable_result] = ACTIONS(1549), - [anon_sym__Null_unspecified] = ACTIONS(1549), - [anon_sym___autoreleasing] = ACTIONS(1549), - [anon_sym___nullable] = ACTIONS(1549), - [anon_sym___nonnull] = ACTIONS(1549), - [anon_sym___strong] = ACTIONS(1549), - [anon_sym___weak] = ACTIONS(1549), - [anon_sym___bridge] = ACTIONS(1549), - [anon_sym___bridge_transfer] = ACTIONS(1549), - [anon_sym___bridge_retained] = ACTIONS(1549), - [anon_sym___unsafe_unretained] = ACTIONS(1549), - [anon_sym___block] = ACTIONS(1549), - [anon_sym___kindof] = ACTIONS(1549), - [anon_sym___unused] = ACTIONS(1549), - [anon_sym__Complex] = ACTIONS(1549), - [anon_sym___complex] = ACTIONS(1549), - [anon_sym_IBOutlet] = ACTIONS(1549), - [anon_sym_IBInspectable] = ACTIONS(1549), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1549), - [anon_sym_signed] = ACTIONS(1549), - [anon_sym_unsigned] = ACTIONS(1549), - [anon_sym_long] = ACTIONS(1549), - [anon_sym_short] = ACTIONS(1549), - [sym_primitive_type] = ACTIONS(1549), - [anon_sym_enum] = ACTIONS(1549), - [anon_sym_NS_ENUM] = ACTIONS(1549), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1549), - [anon_sym_NS_OPTIONS] = ACTIONS(1549), - [anon_sym_struct] = ACTIONS(1549), - [anon_sym_union] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_else] = ACTIONS(1549), - [anon_sym_switch] = ACTIONS(1549), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1549), - [anon_sym_while] = ACTIONS(1549), - [anon_sym_do] = ACTIONS(1549), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1549), - [anon_sym_goto] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_PLUS_PLUS] = ACTIONS(1551), - [anon_sym_sizeof] = ACTIONS(1549), - [sym_number_literal] = ACTIONS(1551), - [anon_sym_L_SQUOTE] = ACTIONS(1551), - [anon_sym_u_SQUOTE] = ACTIONS(1551), - [anon_sym_U_SQUOTE] = ACTIONS(1551), - [anon_sym_u8_SQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1549), - [sym_false] = ACTIONS(1549), - [sym_null] = ACTIONS(1549), + [226] = { + [ts_builtin_sym_end] = ACTIONS(1422), + [sym_identifier] = ACTIONS(1419), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [anon_sym_RPAREN] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1419), + [anon_sym_LPAREN2] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_CARET] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym___attribute] = ACTIONS(1419), + [anon_sym___attribute__] = ACTIONS(1419), + [anon_sym___declspec] = ACTIONS(1419), + [anon_sym___cdecl] = ACTIONS(1419), + [anon_sym___clrcall] = ACTIONS(1419), + [anon_sym___stdcall] = ACTIONS(1419), + [anon_sym___fastcall] = ACTIONS(1419), + [anon_sym___thiscall] = ACTIONS(1419), + [anon_sym___vectorcall] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1419), + [anon_sym_auto] = ACTIONS(1419), + [anon_sym_register] = ACTIONS(1419), + [anon_sym_inline] = ACTIONS(1419), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_volatile] = ACTIONS(1419), + [anon_sym_restrict] = ACTIONS(1419), + [anon_sym__Atomic] = ACTIONS(1419), + [anon_sym_in] = ACTIONS(1419), + [anon_sym_out] = ACTIONS(1419), + [anon_sym_inout] = ACTIONS(1419), + [anon_sym_bycopy] = ACTIONS(1419), + [anon_sym_byref] = ACTIONS(1419), + [anon_sym_oneway] = ACTIONS(1419), + [anon_sym__Nullable] = ACTIONS(1419), + [anon_sym__Nonnull] = ACTIONS(1419), + [anon_sym__Nullable_result] = ACTIONS(1419), + [anon_sym__Null_unspecified] = ACTIONS(1419), + [anon_sym___autoreleasing] = ACTIONS(1419), + [anon_sym___nullable] = ACTIONS(1419), + [anon_sym___nonnull] = ACTIONS(1419), + [anon_sym___strong] = ACTIONS(1419), + [anon_sym___weak] = ACTIONS(1419), + [anon_sym___bridge] = ACTIONS(1419), + [anon_sym___bridge_transfer] = ACTIONS(1419), + [anon_sym___bridge_retained] = ACTIONS(1419), + [anon_sym___unsafe_unretained] = ACTIONS(1419), + [anon_sym___block] = ACTIONS(1419), + [anon_sym___kindof] = ACTIONS(1419), + [anon_sym___unused] = ACTIONS(1419), + [anon_sym__Complex] = ACTIONS(1419), + [anon_sym___complex] = ACTIONS(1419), + [anon_sym_IBOutlet] = ACTIONS(1419), + [anon_sym_IBInspectable] = ACTIONS(1419), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1419), + [anon_sym_signed] = ACTIONS(1419), + [anon_sym_unsigned] = ACTIONS(1419), + [anon_sym_long] = ACTIONS(1419), + [anon_sym_short] = ACTIONS(1419), + [sym_primitive_type] = ACTIONS(1419), + [anon_sym_enum] = ACTIONS(1419), + [anon_sym_struct] = ACTIONS(1419), + [anon_sym_union] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_else] = ACTIONS(1419), + [anon_sym_switch] = ACTIONS(1419), + [anon_sym_case] = ACTIONS(1419), + [anon_sym_default] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_goto] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [anon_sym_sizeof] = ACTIONS(1419), + [sym_number_literal] = ACTIONS(1422), + [anon_sym_L_SQUOTE] = ACTIONS(1422), + [anon_sym_u_SQUOTE] = ACTIONS(1422), + [anon_sym_U_SQUOTE] = ACTIONS(1422), + [anon_sym_u8_SQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [anon_sym_L_DQUOTE] = ACTIONS(1422), + [anon_sym_u_DQUOTE] = ACTIONS(1422), + [anon_sym_U_DQUOTE] = ACTIONS(1422), + [anon_sym_u8_DQUOTE] = ACTIONS(1422), + [anon_sym_DQUOTE] = ACTIONS(1422), + [sym_true] = ACTIONS(1419), + [sym_false] = ACTIONS(1419), + [sym_null] = ACTIONS(1419), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1551), - [anon_sym_ATimport] = ACTIONS(1551), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1549), - [anon_sym_ATcompatibility_alias] = ACTIONS(1551), - [anon_sym_ATprotocol] = ACTIONS(1551), - [anon_sym_ATclass] = ACTIONS(1551), - [anon_sym_ATinterface] = ACTIONS(1551), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1549), - [sym_method_attribute_specifier] = ACTIONS(1549), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1549), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1549), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1549), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1549), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1549), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1549), - [anon_sym_NS_AVAILABLE] = ACTIONS(1549), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1549), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1549), - [anon_sym_API_AVAILABLE] = ACTIONS(1549), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1549), - [anon_sym_API_DEPRECATED] = ACTIONS(1549), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1549), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1549), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1549), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1549), - [anon_sym___deprecated_msg] = ACTIONS(1549), - [anon_sym___deprecated_enum_msg] = ACTIONS(1549), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1549), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1549), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1549), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1549), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1549), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1549), - [anon_sym_ATimplementation] = ACTIONS(1551), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym___typeof] = ACTIONS(1549), - [anon_sym___typeof__] = ACTIONS(1549), - [sym_self] = ACTIONS(1549), - [sym_super] = ACTIONS(1549), - [sym_nil] = ACTIONS(1549), - [sym_id] = ACTIONS(1549), - [sym_instancetype] = ACTIONS(1549), - [sym_Class] = ACTIONS(1549), - [sym_SEL] = ACTIONS(1549), - [sym_IMP] = ACTIONS(1549), - [sym_BOOL] = ACTIONS(1549), - [sym_auto] = ACTIONS(1549), - [anon_sym_ATautoreleasepool] = ACTIONS(1551), - [anon_sym_ATsynchronized] = ACTIONS(1551), - [anon_sym_ATtry] = ACTIONS(1551), - [anon_sym_ATcatch] = ACTIONS(1551), - [anon_sym_ATfinally] = ACTIONS(1551), - [anon_sym_ATthrow] = ACTIONS(1551), - [anon_sym_ATselector] = ACTIONS(1551), - [anon_sym_ATencode] = ACTIONS(1551), - [anon_sym_AT] = ACTIONS(1549), - [sym_YES] = ACTIONS(1549), - [sym_NO] = ACTIONS(1549), - [anon_sym___builtin_available] = ACTIONS(1549), - [anon_sym_ATavailable] = ACTIONS(1551), - [anon_sym_va_arg] = ACTIONS(1549), + [anon_sym_POUNDimport] = ACTIONS(1422), + [anon_sym_ATimport] = ACTIONS(1422), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1419), + [anon_sym_ATcompatibility_alias] = ACTIONS(1422), + [anon_sym_ATprotocol] = ACTIONS(1422), + [anon_sym_ATclass] = ACTIONS(1422), + [anon_sym_ATinterface] = ACTIONS(1422), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1419), + [sym_method_attribute_specifier] = ACTIONS(1419), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1419), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1419), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1419), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1419), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1419), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1419), + [anon_sym_NS_AVAILABLE] = ACTIONS(1419), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1419), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1419), + [anon_sym_API_AVAILABLE] = ACTIONS(1419), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1419), + [anon_sym_API_DEPRECATED] = ACTIONS(1419), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1419), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1419), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1419), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1419), + [anon_sym___deprecated_msg] = ACTIONS(1419), + [anon_sym___deprecated_enum_msg] = ACTIONS(1419), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1419), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1419), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1419), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1419), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1419), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1419), + [anon_sym_ATimplementation] = ACTIONS(1422), + [anon_sym_NS_ENUM] = ACTIONS(1419), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1419), + [anon_sym_NS_OPTIONS] = ACTIONS(1419), + [anon_sym_typeof] = ACTIONS(1419), + [anon_sym___typeof] = ACTIONS(1419), + [anon_sym___typeof__] = ACTIONS(1419), + [sym_self] = ACTIONS(1419), + [sym_super] = ACTIONS(1419), + [sym_nil] = ACTIONS(1419), + [sym_id] = ACTIONS(1419), + [sym_instancetype] = ACTIONS(1419), + [sym_Class] = ACTIONS(1419), + [sym_SEL] = ACTIONS(1419), + [sym_IMP] = ACTIONS(1419), + [sym_BOOL] = ACTIONS(1419), + [sym_auto] = ACTIONS(1419), + [anon_sym_ATautoreleasepool] = ACTIONS(1422), + [anon_sym_ATsynchronized] = ACTIONS(1422), + [anon_sym_ATtry] = ACTIONS(1422), + [anon_sym_ATcatch] = ACTIONS(1422), + [anon_sym_ATfinally] = ACTIONS(1422), + [anon_sym_ATthrow] = ACTIONS(1422), + [anon_sym_ATselector] = ACTIONS(1422), + [anon_sym_ATencode] = ACTIONS(1422), + [anon_sym_AT] = ACTIONS(1419), + [sym_YES] = ACTIONS(1419), + [sym_NO] = ACTIONS(1419), + [anon_sym___builtin_available] = ACTIONS(1419), + [anon_sym_ATavailable] = ACTIONS(1422), + [anon_sym_va_arg] = ACTIONS(1419), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [227] = { + [ts_builtin_sym_end] = ACTIONS(1561), + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_include_token1] = ACTIONS(1561), + [aux_sym_preproc_def_token1] = ACTIONS(1561), + [anon_sym_RPAREN] = ACTIONS(1561), + [aux_sym_preproc_if_token1] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1563), + [anon_sym_LPAREN2] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_typedef] = ACTIONS(1563), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym___attribute] = ACTIONS(1563), + [anon_sym___attribute__] = ACTIONS(1563), + [anon_sym___declspec] = ACTIONS(1563), + [anon_sym___cdecl] = ACTIONS(1563), + [anon_sym___clrcall] = ACTIONS(1563), + [anon_sym___stdcall] = ACTIONS(1563), + [anon_sym___fastcall] = ACTIONS(1563), + [anon_sym___thiscall] = ACTIONS(1563), + [anon_sym___vectorcall] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_auto] = ACTIONS(1563), + [anon_sym_register] = ACTIONS(1563), + [anon_sym_inline] = ACTIONS(1563), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_volatile] = ACTIONS(1563), + [anon_sym_restrict] = ACTIONS(1563), + [anon_sym__Atomic] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [anon_sym_out] = ACTIONS(1563), + [anon_sym_inout] = ACTIONS(1563), + [anon_sym_bycopy] = ACTIONS(1563), + [anon_sym_byref] = ACTIONS(1563), + [anon_sym_oneway] = ACTIONS(1563), + [anon_sym__Nullable] = ACTIONS(1563), + [anon_sym__Nonnull] = ACTIONS(1563), + [anon_sym__Nullable_result] = ACTIONS(1563), + [anon_sym__Null_unspecified] = ACTIONS(1563), + [anon_sym___autoreleasing] = ACTIONS(1563), + [anon_sym___nullable] = ACTIONS(1563), + [anon_sym___nonnull] = ACTIONS(1563), + [anon_sym___strong] = ACTIONS(1563), + [anon_sym___weak] = ACTIONS(1563), + [anon_sym___bridge] = ACTIONS(1563), + [anon_sym___bridge_transfer] = ACTIONS(1563), + [anon_sym___bridge_retained] = ACTIONS(1563), + [anon_sym___unsafe_unretained] = ACTIONS(1563), + [anon_sym___block] = ACTIONS(1563), + [anon_sym___kindof] = ACTIONS(1563), + [anon_sym___unused] = ACTIONS(1563), + [anon_sym__Complex] = ACTIONS(1563), + [anon_sym___complex] = ACTIONS(1563), + [anon_sym_IBOutlet] = ACTIONS(1563), + [anon_sym_IBInspectable] = ACTIONS(1563), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1563), + [anon_sym_signed] = ACTIONS(1563), + [anon_sym_unsigned] = ACTIONS(1563), + [anon_sym_long] = ACTIONS(1563), + [anon_sym_short] = ACTIONS(1563), + [sym_primitive_type] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_else] = ACTIONS(1563), + [anon_sym_switch] = ACTIONS(1563), + [anon_sym_case] = ACTIONS(1563), + [anon_sym_default] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_goto] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1561), + [anon_sym_L_SQUOTE] = ACTIONS(1561), + [anon_sym_u_SQUOTE] = ACTIONS(1561), + [anon_sym_U_SQUOTE] = ACTIONS(1561), + [anon_sym_u8_SQUOTE] = ACTIONS(1561), + [anon_sym_SQUOTE] = ACTIONS(1561), + [anon_sym_L_DQUOTE] = ACTIONS(1561), + [anon_sym_u_DQUOTE] = ACTIONS(1561), + [anon_sym_U_DQUOTE] = ACTIONS(1561), + [anon_sym_u8_DQUOTE] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1561), + [sym_true] = ACTIONS(1563), + [sym_false] = ACTIONS(1563), + [sym_null] = ACTIONS(1563), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1561), + [anon_sym_ATimport] = ACTIONS(1561), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1563), + [anon_sym_ATcompatibility_alias] = ACTIONS(1561), + [anon_sym_ATprotocol] = ACTIONS(1561), + [anon_sym_ATclass] = ACTIONS(1561), + [anon_sym_ATinterface] = ACTIONS(1561), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1563), + [sym_method_attribute_specifier] = ACTIONS(1563), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1563), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE] = ACTIONS(1563), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_API_AVAILABLE] = ACTIONS(1563), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_API_DEPRECATED] = ACTIONS(1563), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1563), + [anon_sym___deprecated_msg] = ACTIONS(1563), + [anon_sym___deprecated_enum_msg] = ACTIONS(1563), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1563), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1563), + [anon_sym_ATimplementation] = ACTIONS(1561), + [anon_sym_NS_ENUM] = ACTIONS(1563), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1563), + [anon_sym_NS_OPTIONS] = ACTIONS(1563), + [anon_sym_typeof] = ACTIONS(1563), + [anon_sym___typeof] = ACTIONS(1563), + [anon_sym___typeof__] = ACTIONS(1563), + [sym_self] = ACTIONS(1563), + [sym_super] = ACTIONS(1563), + [sym_nil] = ACTIONS(1563), + [sym_id] = ACTIONS(1563), + [sym_instancetype] = ACTIONS(1563), + [sym_Class] = ACTIONS(1563), + [sym_SEL] = ACTIONS(1563), + [sym_IMP] = ACTIONS(1563), + [sym_BOOL] = ACTIONS(1563), + [sym_auto] = ACTIONS(1563), + [anon_sym_ATautoreleasepool] = ACTIONS(1561), + [anon_sym_ATsynchronized] = ACTIONS(1561), + [anon_sym_ATtry] = ACTIONS(1561), + [anon_sym_ATcatch] = ACTIONS(1561), + [anon_sym_ATfinally] = ACTIONS(1561), + [anon_sym_ATthrow] = ACTIONS(1561), + [anon_sym_ATselector] = ACTIONS(1561), + [anon_sym_ATencode] = ACTIONS(1561), + [anon_sym_AT] = ACTIONS(1563), + [sym_YES] = ACTIONS(1563), + [sym_NO] = ACTIONS(1563), + [anon_sym___builtin_available] = ACTIONS(1563), + [anon_sym_ATavailable] = ACTIONS(1561), + [anon_sym_va_arg] = ACTIONS(1563), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [228] = { + [ts_builtin_sym_end] = ACTIONS(1579), + [sym_identifier] = ACTIONS(1581), + [aux_sym_preproc_include_token1] = ACTIONS(1579), + [aux_sym_preproc_def_token1] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [aux_sym_preproc_if_token1] = ACTIONS(1581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1581), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1581), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_typedef] = ACTIONS(1581), + [anon_sym_extern] = ACTIONS(1581), + [anon_sym___attribute] = ACTIONS(1581), + [anon_sym___attribute__] = ACTIONS(1581), + [anon_sym___declspec] = ACTIONS(1581), + [anon_sym___cdecl] = ACTIONS(1581), + [anon_sym___clrcall] = ACTIONS(1581), + [anon_sym___stdcall] = ACTIONS(1581), + [anon_sym___fastcall] = ACTIONS(1581), + [anon_sym___thiscall] = ACTIONS(1581), + [anon_sym___vectorcall] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_auto] = ACTIONS(1581), + [anon_sym_register] = ACTIONS(1581), + [anon_sym_inline] = ACTIONS(1581), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_volatile] = ACTIONS(1581), + [anon_sym_restrict] = ACTIONS(1581), + [anon_sym__Atomic] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_out] = ACTIONS(1581), + [anon_sym_inout] = ACTIONS(1581), + [anon_sym_bycopy] = ACTIONS(1581), + [anon_sym_byref] = ACTIONS(1581), + [anon_sym_oneway] = ACTIONS(1581), + [anon_sym__Nullable] = ACTIONS(1581), + [anon_sym__Nonnull] = ACTIONS(1581), + [anon_sym__Nullable_result] = ACTIONS(1581), + [anon_sym__Null_unspecified] = ACTIONS(1581), + [anon_sym___autoreleasing] = ACTIONS(1581), + [anon_sym___nullable] = ACTIONS(1581), + [anon_sym___nonnull] = ACTIONS(1581), + [anon_sym___strong] = ACTIONS(1581), + [anon_sym___weak] = ACTIONS(1581), + [anon_sym___bridge] = ACTIONS(1581), + [anon_sym___bridge_transfer] = ACTIONS(1581), + [anon_sym___bridge_retained] = ACTIONS(1581), + [anon_sym___unsafe_unretained] = ACTIONS(1581), + [anon_sym___block] = ACTIONS(1581), + [anon_sym___kindof] = ACTIONS(1581), + [anon_sym___unused] = ACTIONS(1581), + [anon_sym__Complex] = ACTIONS(1581), + [anon_sym___complex] = ACTIONS(1581), + [anon_sym_IBOutlet] = ACTIONS(1581), + [anon_sym_IBInspectable] = ACTIONS(1581), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1581), + [anon_sym_signed] = ACTIONS(1581), + [anon_sym_unsigned] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [sym_primitive_type] = ACTIONS(1581), + [anon_sym_enum] = ACTIONS(1581), + [anon_sym_struct] = ACTIONS(1581), + [anon_sym_union] = ACTIONS(1581), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_else] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_case] = ACTIONS(1581), + [anon_sym_default] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_goto] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_sizeof] = ACTIONS(1581), + [sym_number_literal] = ACTIONS(1579), + [anon_sym_L_SQUOTE] = ACTIONS(1579), + [anon_sym_u_SQUOTE] = ACTIONS(1579), + [anon_sym_U_SQUOTE] = ACTIONS(1579), + [anon_sym_u8_SQUOTE] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_L_DQUOTE] = ACTIONS(1579), + [anon_sym_u_DQUOTE] = ACTIONS(1579), + [anon_sym_U_DQUOTE] = ACTIONS(1579), + [anon_sym_u8_DQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_true] = ACTIONS(1581), + [sym_false] = ACTIONS(1581), + [sym_null] = ACTIONS(1581), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1579), + [anon_sym_ATimport] = ACTIONS(1579), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1581), + [anon_sym_ATcompatibility_alias] = ACTIONS(1579), + [anon_sym_ATprotocol] = ACTIONS(1579), + [anon_sym_ATclass] = ACTIONS(1579), + [anon_sym_ATinterface] = ACTIONS(1579), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1581), + [sym_method_attribute_specifier] = ACTIONS(1581), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1581), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1581), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1581), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1581), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1581), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1581), + [anon_sym_NS_AVAILABLE] = ACTIONS(1581), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1581), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1581), + [anon_sym_API_AVAILABLE] = ACTIONS(1581), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1581), + [anon_sym_API_DEPRECATED] = ACTIONS(1581), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1581), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1581), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1581), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1581), + [anon_sym___deprecated_msg] = ACTIONS(1581), + [anon_sym___deprecated_enum_msg] = ACTIONS(1581), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1581), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1581), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1581), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1581), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1581), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1581), + [anon_sym_ATimplementation] = ACTIONS(1579), + [anon_sym_NS_ENUM] = ACTIONS(1581), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1581), + [anon_sym_NS_OPTIONS] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1581), + [anon_sym___typeof] = ACTIONS(1581), + [anon_sym___typeof__] = ACTIONS(1581), + [sym_self] = ACTIONS(1581), + [sym_super] = ACTIONS(1581), + [sym_nil] = ACTIONS(1581), + [sym_id] = ACTIONS(1581), + [sym_instancetype] = ACTIONS(1581), + [sym_Class] = ACTIONS(1581), + [sym_SEL] = ACTIONS(1581), + [sym_IMP] = ACTIONS(1581), + [sym_BOOL] = ACTIONS(1581), + [sym_auto] = ACTIONS(1581), + [anon_sym_ATautoreleasepool] = ACTIONS(1579), + [anon_sym_ATsynchronized] = ACTIONS(1579), + [anon_sym_ATtry] = ACTIONS(1579), + [anon_sym_ATcatch] = ACTIONS(1579), + [anon_sym_ATfinally] = ACTIONS(1579), + [anon_sym_ATthrow] = ACTIONS(1579), + [anon_sym_ATselector] = ACTIONS(1579), + [anon_sym_ATencode] = ACTIONS(1579), + [anon_sym_AT] = ACTIONS(1581), + [sym_YES] = ACTIONS(1581), + [sym_NO] = ACTIONS(1581), + [anon_sym___builtin_available] = ACTIONS(1581), + [anon_sym_ATavailable] = ACTIONS(1579), + [anon_sym_va_arg] = ACTIONS(1581), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [229] = { + [sym_identifier] = ACTIONS(1393), + [aux_sym_preproc_include_token1] = ACTIONS(1391), + [aux_sym_preproc_def_token1] = ACTIONS(1391), + [aux_sym_preproc_if_token1] = ACTIONS(1393), + [aux_sym_preproc_if_token2] = ACTIONS(1393), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1393), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1393), + [aux_sym_preproc_else_token1] = ACTIONS(1393), + [aux_sym_preproc_elif_token1] = ACTIONS(1393), + [anon_sym_LPAREN2] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_typedef] = ACTIONS(1393), + [anon_sym_extern] = ACTIONS(1393), + [anon_sym___attribute] = ACTIONS(1393), + [anon_sym___attribute__] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(1393), + [anon_sym___cdecl] = ACTIONS(1393), + [anon_sym___clrcall] = ACTIONS(1393), + [anon_sym___stdcall] = ACTIONS(1393), + [anon_sym___fastcall] = ACTIONS(1393), + [anon_sym___thiscall] = ACTIONS(1393), + [anon_sym___vectorcall] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_auto] = ACTIONS(1393), + [anon_sym_register] = ACTIONS(1393), + [anon_sym_inline] = ACTIONS(1393), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_volatile] = ACTIONS(1393), + [anon_sym_restrict] = ACTIONS(1393), + [anon_sym__Atomic] = ACTIONS(1393), + [anon_sym_in] = ACTIONS(1393), + [anon_sym_out] = ACTIONS(1393), + [anon_sym_inout] = ACTIONS(1393), + [anon_sym_bycopy] = ACTIONS(1393), + [anon_sym_byref] = ACTIONS(1393), + [anon_sym_oneway] = ACTIONS(1393), + [anon_sym__Nullable] = ACTIONS(1393), + [anon_sym__Nonnull] = ACTIONS(1393), + [anon_sym__Nullable_result] = ACTIONS(1393), + [anon_sym__Null_unspecified] = ACTIONS(1393), + [anon_sym___autoreleasing] = ACTIONS(1393), + [anon_sym___nullable] = ACTIONS(1393), + [anon_sym___nonnull] = ACTIONS(1393), + [anon_sym___strong] = ACTIONS(1393), + [anon_sym___weak] = ACTIONS(1393), + [anon_sym___bridge] = ACTIONS(1393), + [anon_sym___bridge_transfer] = ACTIONS(1393), + [anon_sym___bridge_retained] = ACTIONS(1393), + [anon_sym___unsafe_unretained] = ACTIONS(1393), + [anon_sym___block] = ACTIONS(1393), + [anon_sym___kindof] = ACTIONS(1393), + [anon_sym___unused] = ACTIONS(1393), + [anon_sym__Complex] = ACTIONS(1393), + [anon_sym___complex] = ACTIONS(1393), + [anon_sym_IBOutlet] = ACTIONS(1393), + [anon_sym_IBInspectable] = ACTIONS(1393), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1393), + [anon_sym_signed] = ACTIONS(1393), + [anon_sym_unsigned] = ACTIONS(1393), + [anon_sym_long] = ACTIONS(1393), + [anon_sym_short] = ACTIONS(1393), + [sym_primitive_type] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_union] = ACTIONS(1393), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_else] = ACTIONS(1393), + [anon_sym_switch] = ACTIONS(1393), + [anon_sym_case] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_goto] = ACTIONS(1393), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_sizeof] = ACTIONS(1393), + [sym_number_literal] = ACTIONS(1391), + [anon_sym_L_SQUOTE] = ACTIONS(1391), + [anon_sym_u_SQUOTE] = ACTIONS(1391), + [anon_sym_U_SQUOTE] = ACTIONS(1391), + [anon_sym_u8_SQUOTE] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_L_DQUOTE] = ACTIONS(1391), + [anon_sym_u_DQUOTE] = ACTIONS(1391), + [anon_sym_U_DQUOTE] = ACTIONS(1391), + [anon_sym_u8_DQUOTE] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym_true] = ACTIONS(1393), + [sym_false] = ACTIONS(1393), + [sym_null] = ACTIONS(1393), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1391), + [anon_sym_ATimport] = ACTIONS(1391), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1393), + [anon_sym_ATcompatibility_alias] = ACTIONS(1391), + [anon_sym_ATprotocol] = ACTIONS(1391), + [anon_sym_ATclass] = ACTIONS(1391), + [anon_sym_ATinterface] = ACTIONS(1391), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1393), + [sym_method_attribute_specifier] = ACTIONS(1393), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1393), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1393), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1393), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1393), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1393), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1393), + [anon_sym_NS_AVAILABLE] = ACTIONS(1393), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1393), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1393), + [anon_sym_API_AVAILABLE] = ACTIONS(1393), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1393), + [anon_sym_API_DEPRECATED] = ACTIONS(1393), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1393), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1393), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1393), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1393), + [anon_sym___deprecated_msg] = ACTIONS(1393), + [anon_sym___deprecated_enum_msg] = ACTIONS(1393), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1393), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1393), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1393), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1393), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1393), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1393), + [anon_sym_ATimplementation] = ACTIONS(1391), + [anon_sym_NS_ENUM] = ACTIONS(1393), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1393), + [anon_sym_NS_OPTIONS] = ACTIONS(1393), + [anon_sym_typeof] = ACTIONS(1393), + [anon_sym___typeof] = ACTIONS(1393), + [anon_sym___typeof__] = ACTIONS(1393), + [sym_self] = ACTIONS(1393), + [sym_super] = ACTIONS(1393), + [sym_nil] = ACTIONS(1393), + [sym_id] = ACTIONS(1393), + [sym_instancetype] = ACTIONS(1393), + [sym_Class] = ACTIONS(1393), + [sym_SEL] = ACTIONS(1393), + [sym_IMP] = ACTIONS(1393), + [sym_BOOL] = ACTIONS(1393), + [sym_auto] = ACTIONS(1393), + [anon_sym_ATautoreleasepool] = ACTIONS(1391), + [anon_sym_ATsynchronized] = ACTIONS(1391), + [anon_sym_ATtry] = ACTIONS(1391), + [anon_sym_ATcatch] = ACTIONS(1391), + [anon_sym_ATfinally] = ACTIONS(1391), + [anon_sym_ATthrow] = ACTIONS(1391), + [anon_sym_ATselector] = ACTIONS(1391), + [anon_sym_ATencode] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [sym_YES] = ACTIONS(1393), + [sym_NO] = ACTIONS(1393), + [anon_sym___builtin_available] = ACTIONS(1393), + [anon_sym_ATavailable] = ACTIONS(1391), + [anon_sym_va_arg] = ACTIONS(1393), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [230] = { + [ts_builtin_sym_end] = ACTIONS(1427), + [sym_identifier] = ACTIONS(1425), + [aux_sym_preproc_include_token1] = ACTIONS(1427), + [aux_sym_preproc_def_token1] = ACTIONS(1427), + [anon_sym_RPAREN] = ACTIONS(1427), + [aux_sym_preproc_if_token1] = ACTIONS(1425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1425), + [anon_sym_LPAREN2] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_typedef] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym___attribute] = ACTIONS(1425), + [anon_sym___attribute__] = ACTIONS(1425), + [anon_sym___declspec] = ACTIONS(1425), + [anon_sym___cdecl] = ACTIONS(1425), + [anon_sym___clrcall] = ACTIONS(1425), + [anon_sym___stdcall] = ACTIONS(1425), + [anon_sym___fastcall] = ACTIONS(1425), + [anon_sym___thiscall] = ACTIONS(1425), + [anon_sym___vectorcall] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_auto] = ACTIONS(1425), + [anon_sym_register] = ACTIONS(1425), + [anon_sym_inline] = ACTIONS(1425), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_volatile] = ACTIONS(1425), + [anon_sym_restrict] = ACTIONS(1425), + [anon_sym__Atomic] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_out] = ACTIONS(1425), + [anon_sym_inout] = ACTIONS(1425), + [anon_sym_bycopy] = ACTIONS(1425), + [anon_sym_byref] = ACTIONS(1425), + [anon_sym_oneway] = ACTIONS(1425), + [anon_sym__Nullable] = ACTIONS(1425), + [anon_sym__Nonnull] = ACTIONS(1425), + [anon_sym__Nullable_result] = ACTIONS(1425), + [anon_sym__Null_unspecified] = ACTIONS(1425), + [anon_sym___autoreleasing] = ACTIONS(1425), + [anon_sym___nullable] = ACTIONS(1425), + [anon_sym___nonnull] = ACTIONS(1425), + [anon_sym___strong] = ACTIONS(1425), + [anon_sym___weak] = ACTIONS(1425), + [anon_sym___bridge] = ACTIONS(1425), + [anon_sym___bridge_transfer] = ACTIONS(1425), + [anon_sym___bridge_retained] = ACTIONS(1425), + [anon_sym___unsafe_unretained] = ACTIONS(1425), + [anon_sym___block] = ACTIONS(1425), + [anon_sym___kindof] = ACTIONS(1425), + [anon_sym___unused] = ACTIONS(1425), + [anon_sym__Complex] = ACTIONS(1425), + [anon_sym___complex] = ACTIONS(1425), + [anon_sym_IBOutlet] = ACTIONS(1425), + [anon_sym_IBInspectable] = ACTIONS(1425), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1425), + [anon_sym_signed] = ACTIONS(1425), + [anon_sym_unsigned] = ACTIONS(1425), + [anon_sym_long] = ACTIONS(1425), + [anon_sym_short] = ACTIONS(1425), + [sym_primitive_type] = ACTIONS(1425), + [anon_sym_enum] = ACTIONS(1425), + [anon_sym_struct] = ACTIONS(1425), + [anon_sym_union] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_switch] = ACTIONS(1425), + [anon_sym_case] = ACTIONS(1425), + [anon_sym_default] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_goto] = ACTIONS(1425), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_sizeof] = ACTIONS(1425), + [sym_number_literal] = ACTIONS(1427), + [anon_sym_L_SQUOTE] = ACTIONS(1427), + [anon_sym_u_SQUOTE] = ACTIONS(1427), + [anon_sym_U_SQUOTE] = ACTIONS(1427), + [anon_sym_u8_SQUOTE] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_L_DQUOTE] = ACTIONS(1427), + [anon_sym_u_DQUOTE] = ACTIONS(1427), + [anon_sym_U_DQUOTE] = ACTIONS(1427), + [anon_sym_u8_DQUOTE] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [sym_true] = ACTIONS(1425), + [sym_false] = ACTIONS(1425), + [sym_null] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1427), + [anon_sym_ATimport] = ACTIONS(1427), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1425), + [anon_sym_ATcompatibility_alias] = ACTIONS(1427), + [anon_sym_ATprotocol] = ACTIONS(1427), + [anon_sym_ATclass] = ACTIONS(1427), + [anon_sym_ATinterface] = ACTIONS(1427), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1425), + [sym_method_attribute_specifier] = ACTIONS(1425), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1425), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1425), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1425), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1425), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1425), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1425), + [anon_sym_NS_AVAILABLE] = ACTIONS(1425), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1425), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1425), + [anon_sym_API_AVAILABLE] = ACTIONS(1425), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1425), + [anon_sym_API_DEPRECATED] = ACTIONS(1425), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1425), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1425), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1425), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1425), + [anon_sym___deprecated_msg] = ACTIONS(1425), + [anon_sym___deprecated_enum_msg] = ACTIONS(1425), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1425), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1425), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1425), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1425), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1425), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1425), + [anon_sym_ATimplementation] = ACTIONS(1427), + [anon_sym_NS_ENUM] = ACTIONS(1425), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1425), + [anon_sym_NS_OPTIONS] = ACTIONS(1425), + [anon_sym_typeof] = ACTIONS(1425), + [anon_sym___typeof] = ACTIONS(1425), + [anon_sym___typeof__] = ACTIONS(1425), + [sym_self] = ACTIONS(1425), + [sym_super] = ACTIONS(1425), + [sym_nil] = ACTIONS(1425), + [sym_id] = ACTIONS(1425), + [sym_instancetype] = ACTIONS(1425), + [sym_Class] = ACTIONS(1425), + [sym_SEL] = ACTIONS(1425), + [sym_IMP] = ACTIONS(1425), + [sym_BOOL] = ACTIONS(1425), + [sym_auto] = ACTIONS(1425), + [anon_sym_ATautoreleasepool] = ACTIONS(1427), + [anon_sym_ATsynchronized] = ACTIONS(1427), + [anon_sym_ATtry] = ACTIONS(1427), + [anon_sym_ATcatch] = ACTIONS(1427), + [anon_sym_ATfinally] = ACTIONS(1427), + [anon_sym_ATthrow] = ACTIONS(1427), + [anon_sym_ATselector] = ACTIONS(1427), + [anon_sym_ATencode] = ACTIONS(1427), + [anon_sym_AT] = ACTIONS(1425), + [sym_YES] = ACTIONS(1425), + [sym_NO] = ACTIONS(1425), + [anon_sym___builtin_available] = ACTIONS(1425), + [anon_sym_ATavailable] = ACTIONS(1427), + [anon_sym_va_arg] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [231] = { + [ts_builtin_sym_end] = ACTIONS(1431), + [sym_identifier] = ACTIONS(1429), + [aux_sym_preproc_include_token1] = ACTIONS(1431), + [aux_sym_preproc_def_token1] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1431), + [aux_sym_preproc_if_token1] = ACTIONS(1429), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1429), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1429), + [anon_sym_LPAREN2] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_CARET] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_typedef] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym___attribute] = ACTIONS(1429), + [anon_sym___attribute__] = ACTIONS(1429), + [anon_sym___declspec] = ACTIONS(1429), + [anon_sym___cdecl] = ACTIONS(1429), + [anon_sym___clrcall] = ACTIONS(1429), + [anon_sym___stdcall] = ACTIONS(1429), + [anon_sym___fastcall] = ACTIONS(1429), + [anon_sym___thiscall] = ACTIONS(1429), + [anon_sym___vectorcall] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_auto] = ACTIONS(1429), + [anon_sym_register] = ACTIONS(1429), + [anon_sym_inline] = ACTIONS(1429), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_volatile] = ACTIONS(1429), + [anon_sym_restrict] = ACTIONS(1429), + [anon_sym__Atomic] = ACTIONS(1429), + [anon_sym_in] = ACTIONS(1429), + [anon_sym_out] = ACTIONS(1429), + [anon_sym_inout] = ACTIONS(1429), + [anon_sym_bycopy] = ACTIONS(1429), + [anon_sym_byref] = ACTIONS(1429), + [anon_sym_oneway] = ACTIONS(1429), + [anon_sym__Nullable] = ACTIONS(1429), + [anon_sym__Nonnull] = ACTIONS(1429), + [anon_sym__Nullable_result] = ACTIONS(1429), + [anon_sym__Null_unspecified] = ACTIONS(1429), + [anon_sym___autoreleasing] = ACTIONS(1429), + [anon_sym___nullable] = ACTIONS(1429), + [anon_sym___nonnull] = ACTIONS(1429), + [anon_sym___strong] = ACTIONS(1429), + [anon_sym___weak] = ACTIONS(1429), + [anon_sym___bridge] = ACTIONS(1429), + [anon_sym___bridge_transfer] = ACTIONS(1429), + [anon_sym___bridge_retained] = ACTIONS(1429), + [anon_sym___unsafe_unretained] = ACTIONS(1429), + [anon_sym___block] = ACTIONS(1429), + [anon_sym___kindof] = ACTIONS(1429), + [anon_sym___unused] = ACTIONS(1429), + [anon_sym__Complex] = ACTIONS(1429), + [anon_sym___complex] = ACTIONS(1429), + [anon_sym_IBOutlet] = ACTIONS(1429), + [anon_sym_IBInspectable] = ACTIONS(1429), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1429), + [anon_sym_signed] = ACTIONS(1429), + [anon_sym_unsigned] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [sym_primitive_type] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [anon_sym_struct] = ACTIONS(1429), + [anon_sym_union] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_else] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [anon_sym_case] = ACTIONS(1429), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_goto] = ACTIONS(1429), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1429), + [sym_number_literal] = ACTIONS(1431), + [anon_sym_L_SQUOTE] = ACTIONS(1431), + [anon_sym_u_SQUOTE] = ACTIONS(1431), + [anon_sym_U_SQUOTE] = ACTIONS(1431), + [anon_sym_u8_SQUOTE] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_L_DQUOTE] = ACTIONS(1431), + [anon_sym_u_DQUOTE] = ACTIONS(1431), + [anon_sym_U_DQUOTE] = ACTIONS(1431), + [anon_sym_u8_DQUOTE] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [sym_true] = ACTIONS(1429), + [sym_false] = ACTIONS(1429), + [sym_null] = ACTIONS(1429), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1431), + [anon_sym_ATimport] = ACTIONS(1431), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1429), + [anon_sym_ATcompatibility_alias] = ACTIONS(1431), + [anon_sym_ATprotocol] = ACTIONS(1431), + [anon_sym_ATclass] = ACTIONS(1431), + [anon_sym_ATinterface] = ACTIONS(1431), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1429), + [sym_method_attribute_specifier] = ACTIONS(1429), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1429), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1429), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1429), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1429), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1429), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1429), + [anon_sym_NS_AVAILABLE] = ACTIONS(1429), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1429), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1429), + [anon_sym_API_AVAILABLE] = ACTIONS(1429), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1429), + [anon_sym_API_DEPRECATED] = ACTIONS(1429), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1429), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1429), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1429), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1429), + [anon_sym___deprecated_msg] = ACTIONS(1429), + [anon_sym___deprecated_enum_msg] = ACTIONS(1429), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1429), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1429), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1429), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1429), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1429), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1429), + [anon_sym_ATimplementation] = ACTIONS(1431), + [anon_sym_NS_ENUM] = ACTIONS(1429), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1429), + [anon_sym_NS_OPTIONS] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(1429), + [anon_sym___typeof] = ACTIONS(1429), + [anon_sym___typeof__] = ACTIONS(1429), + [sym_self] = ACTIONS(1429), + [sym_super] = ACTIONS(1429), + [sym_nil] = ACTIONS(1429), + [sym_id] = ACTIONS(1429), + [sym_instancetype] = ACTIONS(1429), + [sym_Class] = ACTIONS(1429), + [sym_SEL] = ACTIONS(1429), + [sym_IMP] = ACTIONS(1429), + [sym_BOOL] = ACTIONS(1429), + [sym_auto] = ACTIONS(1429), + [anon_sym_ATautoreleasepool] = ACTIONS(1431), + [anon_sym_ATsynchronized] = ACTIONS(1431), + [anon_sym_ATtry] = ACTIONS(1431), + [anon_sym_ATcatch] = ACTIONS(1431), + [anon_sym_ATfinally] = ACTIONS(1431), + [anon_sym_ATthrow] = ACTIONS(1431), + [anon_sym_ATselector] = ACTIONS(1431), + [anon_sym_ATencode] = ACTIONS(1431), + [anon_sym_AT] = ACTIONS(1429), + [sym_YES] = ACTIONS(1429), + [sym_NO] = ACTIONS(1429), + [anon_sym___builtin_available] = ACTIONS(1429), + [anon_sym_ATavailable] = ACTIONS(1431), + [anon_sym_va_arg] = ACTIONS(1429), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [232] = { + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token2] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [aux_sym_preproc_else_token1] = ACTIONS(1195), + [aux_sym_preproc_elif_token1] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym_in] = ACTIONS(1195), + [anon_sym_out] = ACTIONS(1195), + [anon_sym_inout] = ACTIONS(1195), + [anon_sym_bycopy] = ACTIONS(1195), + [anon_sym_byref] = ACTIONS(1195), + [anon_sym_oneway] = ACTIONS(1195), + [anon_sym__Nullable] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym__Nullable_result] = ACTIONS(1195), + [anon_sym__Null_unspecified] = ACTIONS(1195), + [anon_sym___autoreleasing] = ACTIONS(1195), + [anon_sym___nullable] = ACTIONS(1195), + [anon_sym___nonnull] = ACTIONS(1195), + [anon_sym___strong] = ACTIONS(1195), + [anon_sym___weak] = ACTIONS(1195), + [anon_sym___bridge] = ACTIONS(1195), + [anon_sym___bridge_transfer] = ACTIONS(1195), + [anon_sym___bridge_retained] = ACTIONS(1195), + [anon_sym___unsafe_unretained] = ACTIONS(1195), + [anon_sym___block] = ACTIONS(1195), + [anon_sym___kindof] = ACTIONS(1195), + [anon_sym___unused] = ACTIONS(1195), + [anon_sym__Complex] = ACTIONS(1195), + [anon_sym___complex] = ACTIONS(1195), + [anon_sym_IBOutlet] = ACTIONS(1195), + [anon_sym_IBInspectable] = ACTIONS(1195), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [sym_null] = ACTIONS(1195), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1197), + [anon_sym_ATimport] = ACTIONS(1197), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1195), + [anon_sym_ATcompatibility_alias] = ACTIONS(1197), + [anon_sym_ATprotocol] = ACTIONS(1197), + [anon_sym_ATclass] = ACTIONS(1197), + [anon_sym_ATinterface] = ACTIONS(1197), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1195), + [sym_method_attribute_specifier] = ACTIONS(1195), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1195), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE] = ACTIONS(1195), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_API_AVAILABLE] = ACTIONS(1195), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_API_DEPRECATED] = ACTIONS(1195), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1195), + [anon_sym___deprecated_msg] = ACTIONS(1195), + [anon_sym___deprecated_enum_msg] = ACTIONS(1195), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1195), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1195), + [anon_sym_ATimplementation] = ACTIONS(1197), + [anon_sym_NS_ENUM] = ACTIONS(1195), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1195), + [anon_sym_NS_OPTIONS] = ACTIONS(1195), + [anon_sym_typeof] = ACTIONS(1195), + [anon_sym___typeof] = ACTIONS(1195), + [anon_sym___typeof__] = ACTIONS(1195), + [sym_self] = ACTIONS(1195), + [sym_super] = ACTIONS(1195), + [sym_nil] = ACTIONS(1195), + [sym_id] = ACTIONS(1195), + [sym_instancetype] = ACTIONS(1195), + [sym_Class] = ACTIONS(1195), + [sym_SEL] = ACTIONS(1195), + [sym_IMP] = ACTIONS(1195), + [sym_BOOL] = ACTIONS(1195), + [sym_auto] = ACTIONS(1195), + [anon_sym_ATautoreleasepool] = ACTIONS(1197), + [anon_sym_ATsynchronized] = ACTIONS(1197), + [anon_sym_ATtry] = ACTIONS(1197), + [anon_sym_ATcatch] = ACTIONS(1197), + [anon_sym_ATfinally] = ACTIONS(1197), + [anon_sym_ATthrow] = ACTIONS(1197), + [anon_sym_ATselector] = ACTIONS(1197), + [anon_sym_ATencode] = ACTIONS(1197), + [anon_sym_AT] = ACTIONS(1195), + [sym_YES] = ACTIONS(1195), + [sym_NO] = ACTIONS(1195), + [anon_sym___builtin_available] = ACTIONS(1195), + [anon_sym_ATavailable] = ACTIONS(1197), + [anon_sym_va_arg] = ACTIONS(1195), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [233] = { + [sym_identifier] = ACTIONS(1245), + [aux_sym_preproc_include_token1] = ACTIONS(1243), + [aux_sym_preproc_def_token1] = ACTIONS(1243), + [aux_sym_preproc_if_token1] = ACTIONS(1245), + [aux_sym_preproc_if_token2] = ACTIONS(1245), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1245), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1245), + [aux_sym_preproc_else_token1] = ACTIONS(1245), + [aux_sym_preproc_elif_token1] = ACTIONS(1245), + [anon_sym_LPAREN2] = ACTIONS(1243), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1243), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1243), + [anon_sym_CARET] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_typedef] = ACTIONS(1245), + [anon_sym_extern] = ACTIONS(1245), + [anon_sym___attribute] = ACTIONS(1245), + [anon_sym___attribute__] = ACTIONS(1245), + [anon_sym___declspec] = ACTIONS(1245), + [anon_sym___cdecl] = ACTIONS(1245), + [anon_sym___clrcall] = ACTIONS(1245), + [anon_sym___stdcall] = ACTIONS(1245), + [anon_sym___fastcall] = ACTIONS(1245), + [anon_sym___thiscall] = ACTIONS(1245), + [anon_sym___vectorcall] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1243), + [anon_sym_LBRACK] = ACTIONS(1243), + [anon_sym_static] = ACTIONS(1245), + [anon_sym_auto] = ACTIONS(1245), + [anon_sym_register] = ACTIONS(1245), + [anon_sym_inline] = ACTIONS(1245), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1245), + [anon_sym_const] = ACTIONS(1245), + [anon_sym_volatile] = ACTIONS(1245), + [anon_sym_restrict] = ACTIONS(1245), + [anon_sym__Atomic] = ACTIONS(1245), + [anon_sym_in] = ACTIONS(1245), + [anon_sym_out] = ACTIONS(1245), + [anon_sym_inout] = ACTIONS(1245), + [anon_sym_bycopy] = ACTIONS(1245), + [anon_sym_byref] = ACTIONS(1245), + [anon_sym_oneway] = ACTIONS(1245), + [anon_sym__Nullable] = ACTIONS(1245), + [anon_sym__Nonnull] = ACTIONS(1245), + [anon_sym__Nullable_result] = ACTIONS(1245), + [anon_sym__Null_unspecified] = ACTIONS(1245), + [anon_sym___autoreleasing] = ACTIONS(1245), + [anon_sym___nullable] = ACTIONS(1245), + [anon_sym___nonnull] = ACTIONS(1245), + [anon_sym___strong] = ACTIONS(1245), + [anon_sym___weak] = ACTIONS(1245), + [anon_sym___bridge] = ACTIONS(1245), + [anon_sym___bridge_transfer] = ACTIONS(1245), + [anon_sym___bridge_retained] = ACTIONS(1245), + [anon_sym___unsafe_unretained] = ACTIONS(1245), + [anon_sym___block] = ACTIONS(1245), + [anon_sym___kindof] = ACTIONS(1245), + [anon_sym___unused] = ACTIONS(1245), + [anon_sym__Complex] = ACTIONS(1245), + [anon_sym___complex] = ACTIONS(1245), + [anon_sym_IBOutlet] = ACTIONS(1245), + [anon_sym_IBInspectable] = ACTIONS(1245), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1245), + [anon_sym_signed] = ACTIONS(1245), + [anon_sym_unsigned] = ACTIONS(1245), + [anon_sym_long] = ACTIONS(1245), + [anon_sym_short] = ACTIONS(1245), + [sym_primitive_type] = ACTIONS(1245), + [anon_sym_enum] = ACTIONS(1245), + [anon_sym_struct] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1245), + [anon_sym_if] = ACTIONS(1245), + [anon_sym_else] = ACTIONS(1245), + [anon_sym_switch] = ACTIONS(1245), + [anon_sym_case] = ACTIONS(1245), + [anon_sym_default] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(1245), + [anon_sym_do] = ACTIONS(1245), + [anon_sym_for] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(1245), + [anon_sym_break] = ACTIONS(1245), + [anon_sym_continue] = ACTIONS(1245), + [anon_sym_goto] = ACTIONS(1245), + [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1243), + [anon_sym_sizeof] = ACTIONS(1245), + [sym_number_literal] = ACTIONS(1243), + [anon_sym_L_SQUOTE] = ACTIONS(1243), + [anon_sym_u_SQUOTE] = ACTIONS(1243), + [anon_sym_U_SQUOTE] = ACTIONS(1243), + [anon_sym_u8_SQUOTE] = ACTIONS(1243), + [anon_sym_SQUOTE] = ACTIONS(1243), + [anon_sym_L_DQUOTE] = ACTIONS(1243), + [anon_sym_u_DQUOTE] = ACTIONS(1243), + [anon_sym_U_DQUOTE] = ACTIONS(1243), + [anon_sym_u8_DQUOTE] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [sym_true] = ACTIONS(1245), + [sym_false] = ACTIONS(1245), + [sym_null] = ACTIONS(1245), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1243), + [anon_sym_ATimport] = ACTIONS(1243), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1245), + [anon_sym_ATcompatibility_alias] = ACTIONS(1243), + [anon_sym_ATprotocol] = ACTIONS(1243), + [anon_sym_ATclass] = ACTIONS(1243), + [anon_sym_ATinterface] = ACTIONS(1243), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1245), + [sym_method_attribute_specifier] = ACTIONS(1245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1245), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1245), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1245), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1245), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1245), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1245), + [anon_sym_NS_AVAILABLE] = ACTIONS(1245), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1245), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1245), + [anon_sym_API_AVAILABLE] = ACTIONS(1245), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1245), + [anon_sym_API_DEPRECATED] = ACTIONS(1245), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1245), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1245), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1245), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1245), + [anon_sym___deprecated_msg] = ACTIONS(1245), + [anon_sym___deprecated_enum_msg] = ACTIONS(1245), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1245), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1245), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1245), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1245), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1245), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1245), + [anon_sym_ATimplementation] = ACTIONS(1243), + [anon_sym_NS_ENUM] = ACTIONS(1245), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1245), + [anon_sym_NS_OPTIONS] = ACTIONS(1245), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym___typeof] = ACTIONS(1245), + [anon_sym___typeof__] = ACTIONS(1245), + [sym_self] = ACTIONS(1245), + [sym_super] = ACTIONS(1245), + [sym_nil] = ACTIONS(1245), + [sym_id] = ACTIONS(1245), + [sym_instancetype] = ACTIONS(1245), + [sym_Class] = ACTIONS(1245), + [sym_SEL] = ACTIONS(1245), + [sym_IMP] = ACTIONS(1245), + [sym_BOOL] = ACTIONS(1245), + [sym_auto] = ACTIONS(1245), + [anon_sym_ATautoreleasepool] = ACTIONS(1243), + [anon_sym_ATsynchronized] = ACTIONS(1243), + [anon_sym_ATtry] = ACTIONS(1243), + [anon_sym_ATcatch] = ACTIONS(1243), + [anon_sym_ATfinally] = ACTIONS(1243), + [anon_sym_ATthrow] = ACTIONS(1243), + [anon_sym_ATselector] = ACTIONS(1243), + [anon_sym_ATencode] = ACTIONS(1243), + [anon_sym_AT] = ACTIONS(1245), + [sym_YES] = ACTIONS(1245), + [sym_NO] = ACTIONS(1245), + [anon_sym___builtin_available] = ACTIONS(1245), + [anon_sym_ATavailable] = ACTIONS(1243), + [anon_sym_va_arg] = ACTIONS(1245), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [234] = { + [ts_builtin_sym_end] = ACTIONS(1443), + [sym_identifier] = ACTIONS(1441), + [aux_sym_preproc_include_token1] = ACTIONS(1443), + [aux_sym_preproc_def_token1] = ACTIONS(1443), + [anon_sym_RPAREN] = ACTIONS(1443), + [aux_sym_preproc_if_token1] = ACTIONS(1441), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1441), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1441), + [anon_sym_LPAREN2] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_typedef] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym___attribute] = ACTIONS(1441), + [anon_sym___attribute__] = ACTIONS(1441), + [anon_sym___declspec] = ACTIONS(1441), + [anon_sym___cdecl] = ACTIONS(1441), + [anon_sym___clrcall] = ACTIONS(1441), + [anon_sym___stdcall] = ACTIONS(1441), + [anon_sym___fastcall] = ACTIONS(1441), + [anon_sym___thiscall] = ACTIONS(1441), + [anon_sym___vectorcall] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_RBRACE] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_auto] = ACTIONS(1441), + [anon_sym_register] = ACTIONS(1441), + [anon_sym_inline] = ACTIONS(1441), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_volatile] = ACTIONS(1441), + [anon_sym_restrict] = ACTIONS(1441), + [anon_sym__Atomic] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_out] = ACTIONS(1441), + [anon_sym_inout] = ACTIONS(1441), + [anon_sym_bycopy] = ACTIONS(1441), + [anon_sym_byref] = ACTIONS(1441), + [anon_sym_oneway] = ACTIONS(1441), + [anon_sym__Nullable] = ACTIONS(1441), + [anon_sym__Nonnull] = ACTIONS(1441), + [anon_sym__Nullable_result] = ACTIONS(1441), + [anon_sym__Null_unspecified] = ACTIONS(1441), + [anon_sym___autoreleasing] = ACTIONS(1441), + [anon_sym___nullable] = ACTIONS(1441), + [anon_sym___nonnull] = ACTIONS(1441), + [anon_sym___strong] = ACTIONS(1441), + [anon_sym___weak] = ACTIONS(1441), + [anon_sym___bridge] = ACTIONS(1441), + [anon_sym___bridge_transfer] = ACTIONS(1441), + [anon_sym___bridge_retained] = ACTIONS(1441), + [anon_sym___unsafe_unretained] = ACTIONS(1441), + [anon_sym___block] = ACTIONS(1441), + [anon_sym___kindof] = ACTIONS(1441), + [anon_sym___unused] = ACTIONS(1441), + [anon_sym__Complex] = ACTIONS(1441), + [anon_sym___complex] = ACTIONS(1441), + [anon_sym_IBOutlet] = ACTIONS(1441), + [anon_sym_IBInspectable] = ACTIONS(1441), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1441), + [anon_sym_signed] = ACTIONS(1441), + [anon_sym_unsigned] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [sym_primitive_type] = ACTIONS(1441), + [anon_sym_enum] = ACTIONS(1441), + [anon_sym_struct] = ACTIONS(1441), + [anon_sym_union] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_case] = ACTIONS(1441), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_goto] = ACTIONS(1441), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1443), + [anon_sym_u_SQUOTE] = ACTIONS(1443), + [anon_sym_U_SQUOTE] = ACTIONS(1443), + [anon_sym_u8_SQUOTE] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_L_DQUOTE] = ACTIONS(1443), + [anon_sym_u_DQUOTE] = ACTIONS(1443), + [anon_sym_U_DQUOTE] = ACTIONS(1443), + [anon_sym_u8_DQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [sym_true] = ACTIONS(1441), + [sym_false] = ACTIONS(1441), + [sym_null] = ACTIONS(1441), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1443), + [anon_sym_ATimport] = ACTIONS(1443), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1441), + [anon_sym_ATcompatibility_alias] = ACTIONS(1443), + [anon_sym_ATprotocol] = ACTIONS(1443), + [anon_sym_ATclass] = ACTIONS(1443), + [anon_sym_ATinterface] = ACTIONS(1443), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1441), + [sym_method_attribute_specifier] = ACTIONS(1441), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1441), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1441), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1441), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1441), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1441), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1441), + [anon_sym_NS_AVAILABLE] = ACTIONS(1441), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1441), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1441), + [anon_sym_API_AVAILABLE] = ACTIONS(1441), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1441), + [anon_sym_API_DEPRECATED] = ACTIONS(1441), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1441), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1441), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1441), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1441), + [anon_sym___deprecated_msg] = ACTIONS(1441), + [anon_sym___deprecated_enum_msg] = ACTIONS(1441), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1441), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1441), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1441), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1441), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1441), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1441), + [anon_sym_ATimplementation] = ACTIONS(1443), + [anon_sym_NS_ENUM] = ACTIONS(1441), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1441), + [anon_sym_NS_OPTIONS] = ACTIONS(1441), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___typeof] = ACTIONS(1441), + [anon_sym___typeof__] = ACTIONS(1441), + [sym_self] = ACTIONS(1441), + [sym_super] = ACTIONS(1441), + [sym_nil] = ACTIONS(1441), + [sym_id] = ACTIONS(1441), + [sym_instancetype] = ACTIONS(1441), + [sym_Class] = ACTIONS(1441), + [sym_SEL] = ACTIONS(1441), + [sym_IMP] = ACTIONS(1441), + [sym_BOOL] = ACTIONS(1441), + [sym_auto] = ACTIONS(1441), + [anon_sym_ATautoreleasepool] = ACTIONS(1443), + [anon_sym_ATsynchronized] = ACTIONS(1443), + [anon_sym_ATtry] = ACTIONS(1443), + [anon_sym_ATcatch] = ACTIONS(1443), + [anon_sym_ATfinally] = ACTIONS(1443), + [anon_sym_ATthrow] = ACTIONS(1443), + [anon_sym_ATselector] = ACTIONS(1443), + [anon_sym_ATencode] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1441), + [sym_YES] = ACTIONS(1441), + [sym_NO] = ACTIONS(1441), + [anon_sym___builtin_available] = ACTIONS(1441), + [anon_sym_ATavailable] = ACTIONS(1443), + [anon_sym_va_arg] = ACTIONS(1441), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [235] = { + [sym_identifier] = ACTIONS(1401), + [aux_sym_preproc_include_token1] = ACTIONS(1399), + [aux_sym_preproc_def_token1] = ACTIONS(1399), + [aux_sym_preproc_if_token1] = ACTIONS(1401), + [aux_sym_preproc_if_token2] = ACTIONS(1401), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1401), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1401), + [aux_sym_preproc_else_token1] = ACTIONS(1401), + [aux_sym_preproc_elif_token1] = ACTIONS(1401), + [anon_sym_LPAREN2] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_typedef] = ACTIONS(1401), + [anon_sym_extern] = ACTIONS(1401), + [anon_sym___attribute] = ACTIONS(1401), + [anon_sym___attribute__] = ACTIONS(1401), + [anon_sym___declspec] = ACTIONS(1401), + [anon_sym___cdecl] = ACTIONS(1401), + [anon_sym___clrcall] = ACTIONS(1401), + [anon_sym___stdcall] = ACTIONS(1401), + [anon_sym___fastcall] = ACTIONS(1401), + [anon_sym___thiscall] = ACTIONS(1401), + [anon_sym___vectorcall] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1399), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_auto] = ACTIONS(1401), + [anon_sym_register] = ACTIONS(1401), + [anon_sym_inline] = ACTIONS(1401), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_volatile] = ACTIONS(1401), + [anon_sym_restrict] = ACTIONS(1401), + [anon_sym__Atomic] = ACTIONS(1401), + [anon_sym_in] = ACTIONS(1401), + [anon_sym_out] = ACTIONS(1401), + [anon_sym_inout] = ACTIONS(1401), + [anon_sym_bycopy] = ACTIONS(1401), + [anon_sym_byref] = ACTIONS(1401), + [anon_sym_oneway] = ACTIONS(1401), + [anon_sym__Nullable] = ACTIONS(1401), + [anon_sym__Nonnull] = ACTIONS(1401), + [anon_sym__Nullable_result] = ACTIONS(1401), + [anon_sym__Null_unspecified] = ACTIONS(1401), + [anon_sym___autoreleasing] = ACTIONS(1401), + [anon_sym___nullable] = ACTIONS(1401), + [anon_sym___nonnull] = ACTIONS(1401), + [anon_sym___strong] = ACTIONS(1401), + [anon_sym___weak] = ACTIONS(1401), + [anon_sym___bridge] = ACTIONS(1401), + [anon_sym___bridge_transfer] = ACTIONS(1401), + [anon_sym___bridge_retained] = ACTIONS(1401), + [anon_sym___unsafe_unretained] = ACTIONS(1401), + [anon_sym___block] = ACTIONS(1401), + [anon_sym___kindof] = ACTIONS(1401), + [anon_sym___unused] = ACTIONS(1401), + [anon_sym__Complex] = ACTIONS(1401), + [anon_sym___complex] = ACTIONS(1401), + [anon_sym_IBOutlet] = ACTIONS(1401), + [anon_sym_IBInspectable] = ACTIONS(1401), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1401), + [anon_sym_signed] = ACTIONS(1401), + [anon_sym_unsigned] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [sym_primitive_type] = ACTIONS(1401), + [anon_sym_enum] = ACTIONS(1401), + [anon_sym_struct] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_else] = ACTIONS(1401), + [anon_sym_switch] = ACTIONS(1401), + [anon_sym_case] = ACTIONS(1401), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_do] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_goto] = ACTIONS(1401), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_sizeof] = ACTIONS(1401), + [sym_number_literal] = ACTIONS(1399), + [anon_sym_L_SQUOTE] = ACTIONS(1399), + [anon_sym_u_SQUOTE] = ACTIONS(1399), + [anon_sym_U_SQUOTE] = ACTIONS(1399), + [anon_sym_u8_SQUOTE] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_L_DQUOTE] = ACTIONS(1399), + [anon_sym_u_DQUOTE] = ACTIONS(1399), + [anon_sym_U_DQUOTE] = ACTIONS(1399), + [anon_sym_u8_DQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [sym_true] = ACTIONS(1401), + [sym_false] = ACTIONS(1401), + [sym_null] = ACTIONS(1401), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1399), + [anon_sym_ATimport] = ACTIONS(1399), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1401), + [anon_sym_ATcompatibility_alias] = ACTIONS(1399), + [anon_sym_ATprotocol] = ACTIONS(1399), + [anon_sym_ATclass] = ACTIONS(1399), + [anon_sym_ATinterface] = ACTIONS(1399), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1401), + [sym_method_attribute_specifier] = ACTIONS(1401), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1401), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1401), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1401), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1401), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1401), + [anon_sym_NS_AVAILABLE] = ACTIONS(1401), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1401), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_API_AVAILABLE] = ACTIONS(1401), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_API_DEPRECATED] = ACTIONS(1401), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1401), + [anon_sym___deprecated_msg] = ACTIONS(1401), + [anon_sym___deprecated_enum_msg] = ACTIONS(1401), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1401), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1401), + [anon_sym_ATimplementation] = ACTIONS(1399), + [anon_sym_NS_ENUM] = ACTIONS(1401), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1401), + [anon_sym_NS_OPTIONS] = ACTIONS(1401), + [anon_sym_typeof] = ACTIONS(1401), + [anon_sym___typeof] = ACTIONS(1401), + [anon_sym___typeof__] = ACTIONS(1401), + [sym_self] = ACTIONS(1401), + [sym_super] = ACTIONS(1401), + [sym_nil] = ACTIONS(1401), + [sym_id] = ACTIONS(1401), + [sym_instancetype] = ACTIONS(1401), + [sym_Class] = ACTIONS(1401), + [sym_SEL] = ACTIONS(1401), + [sym_IMP] = ACTIONS(1401), + [sym_BOOL] = ACTIONS(1401), + [sym_auto] = ACTIONS(1401), + [anon_sym_ATautoreleasepool] = ACTIONS(1399), + [anon_sym_ATsynchronized] = ACTIONS(1399), + [anon_sym_ATtry] = ACTIONS(1399), + [anon_sym_ATcatch] = ACTIONS(1399), + [anon_sym_ATfinally] = ACTIONS(1399), + [anon_sym_ATthrow] = ACTIONS(1399), + [anon_sym_ATselector] = ACTIONS(1399), + [anon_sym_ATencode] = ACTIONS(1399), + [anon_sym_AT] = ACTIONS(1401), + [sym_YES] = ACTIONS(1401), + [sym_NO] = ACTIONS(1401), + [anon_sym___builtin_available] = ACTIONS(1401), + [anon_sym_ATavailable] = ACTIONS(1399), + [anon_sym_va_arg] = ACTIONS(1401), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [236] = { + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token2] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [aux_sym_preproc_else_token1] = ACTIONS(1195), + [aux_sym_preproc_elif_token1] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym_in] = ACTIONS(1195), + [anon_sym_out] = ACTIONS(1195), + [anon_sym_inout] = ACTIONS(1195), + [anon_sym_bycopy] = ACTIONS(1195), + [anon_sym_byref] = ACTIONS(1195), + [anon_sym_oneway] = ACTIONS(1195), + [anon_sym__Nullable] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym__Nullable_result] = ACTIONS(1195), + [anon_sym__Null_unspecified] = ACTIONS(1195), + [anon_sym___autoreleasing] = ACTIONS(1195), + [anon_sym___nullable] = ACTIONS(1195), + [anon_sym___nonnull] = ACTIONS(1195), + [anon_sym___strong] = ACTIONS(1195), + [anon_sym___weak] = ACTIONS(1195), + [anon_sym___bridge] = ACTIONS(1195), + [anon_sym___bridge_transfer] = ACTIONS(1195), + [anon_sym___bridge_retained] = ACTIONS(1195), + [anon_sym___unsafe_unretained] = ACTIONS(1195), + [anon_sym___block] = ACTIONS(1195), + [anon_sym___kindof] = ACTIONS(1195), + [anon_sym___unused] = ACTIONS(1195), + [anon_sym__Complex] = ACTIONS(1195), + [anon_sym___complex] = ACTIONS(1195), + [anon_sym_IBOutlet] = ACTIONS(1195), + [anon_sym_IBInspectable] = ACTIONS(1195), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [sym_null] = ACTIONS(1195), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1197), + [anon_sym_ATimport] = ACTIONS(1197), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1195), + [anon_sym_ATcompatibility_alias] = ACTIONS(1197), + [anon_sym_ATprotocol] = ACTIONS(1197), + [anon_sym_ATclass] = ACTIONS(1197), + [anon_sym_ATinterface] = ACTIONS(1197), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1195), + [sym_method_attribute_specifier] = ACTIONS(1195), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1195), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE] = ACTIONS(1195), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_API_AVAILABLE] = ACTIONS(1195), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_API_DEPRECATED] = ACTIONS(1195), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1195), + [anon_sym___deprecated_msg] = ACTIONS(1195), + [anon_sym___deprecated_enum_msg] = ACTIONS(1195), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1195), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1195), + [anon_sym_ATimplementation] = ACTIONS(1197), + [anon_sym_NS_ENUM] = ACTIONS(1195), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1195), + [anon_sym_NS_OPTIONS] = ACTIONS(1195), + [anon_sym_typeof] = ACTIONS(1195), + [anon_sym___typeof] = ACTIONS(1195), + [anon_sym___typeof__] = ACTIONS(1195), + [sym_self] = ACTIONS(1195), + [sym_super] = ACTIONS(1195), + [sym_nil] = ACTIONS(1195), + [sym_id] = ACTIONS(1195), + [sym_instancetype] = ACTIONS(1195), + [sym_Class] = ACTIONS(1195), + [sym_SEL] = ACTIONS(1195), + [sym_IMP] = ACTIONS(1195), + [sym_BOOL] = ACTIONS(1195), + [sym_auto] = ACTIONS(1195), + [anon_sym_ATautoreleasepool] = ACTIONS(1197), + [anon_sym_ATsynchronized] = ACTIONS(1197), + [anon_sym_ATtry] = ACTIONS(1197), + [anon_sym_ATcatch] = ACTIONS(1197), + [anon_sym_ATfinally] = ACTIONS(1197), + [anon_sym_ATthrow] = ACTIONS(1197), + [anon_sym_ATselector] = ACTIONS(1197), + [anon_sym_ATencode] = ACTIONS(1197), + [anon_sym_AT] = ACTIONS(1195), + [sym_YES] = ACTIONS(1195), + [sym_NO] = ACTIONS(1195), + [anon_sym___builtin_available] = ACTIONS(1195), + [anon_sym_ATavailable] = ACTIONS(1197), + [anon_sym_va_arg] = ACTIONS(1195), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [237] = { + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token2] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [aux_sym_preproc_else_token1] = ACTIONS(1195), + [aux_sym_preproc_elif_token1] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym_in] = ACTIONS(1195), + [anon_sym_out] = ACTIONS(1195), + [anon_sym_inout] = ACTIONS(1195), + [anon_sym_bycopy] = ACTIONS(1195), + [anon_sym_byref] = ACTIONS(1195), + [anon_sym_oneway] = ACTIONS(1195), + [anon_sym__Nullable] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym__Nullable_result] = ACTIONS(1195), + [anon_sym__Null_unspecified] = ACTIONS(1195), + [anon_sym___autoreleasing] = ACTIONS(1195), + [anon_sym___nullable] = ACTIONS(1195), + [anon_sym___nonnull] = ACTIONS(1195), + [anon_sym___strong] = ACTIONS(1195), + [anon_sym___weak] = ACTIONS(1195), + [anon_sym___bridge] = ACTIONS(1195), + [anon_sym___bridge_transfer] = ACTIONS(1195), + [anon_sym___bridge_retained] = ACTIONS(1195), + [anon_sym___unsafe_unretained] = ACTIONS(1195), + [anon_sym___block] = ACTIONS(1195), + [anon_sym___kindof] = ACTIONS(1195), + [anon_sym___unused] = ACTIONS(1195), + [anon_sym__Complex] = ACTIONS(1195), + [anon_sym___complex] = ACTIONS(1195), + [anon_sym_IBOutlet] = ACTIONS(1195), + [anon_sym_IBInspectable] = ACTIONS(1195), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [sym_null] = ACTIONS(1195), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1197), + [anon_sym_ATimport] = ACTIONS(1197), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1195), + [anon_sym_ATcompatibility_alias] = ACTIONS(1197), + [anon_sym_ATprotocol] = ACTIONS(1197), + [anon_sym_ATclass] = ACTIONS(1197), + [anon_sym_ATinterface] = ACTIONS(1197), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1195), + [sym_method_attribute_specifier] = ACTIONS(1195), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1195), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE] = ACTIONS(1195), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_API_AVAILABLE] = ACTIONS(1195), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_API_DEPRECATED] = ACTIONS(1195), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1195), + [anon_sym___deprecated_msg] = ACTIONS(1195), + [anon_sym___deprecated_enum_msg] = ACTIONS(1195), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1195), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1195), + [anon_sym_ATimplementation] = ACTIONS(1197), + [anon_sym_NS_ENUM] = ACTIONS(1195), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1195), + [anon_sym_NS_OPTIONS] = ACTIONS(1195), + [anon_sym_typeof] = ACTIONS(1195), + [anon_sym___typeof] = ACTIONS(1195), + [anon_sym___typeof__] = ACTIONS(1195), + [sym_self] = ACTIONS(1195), + [sym_super] = ACTIONS(1195), + [sym_nil] = ACTIONS(1195), + [sym_id] = ACTIONS(1195), + [sym_instancetype] = ACTIONS(1195), + [sym_Class] = ACTIONS(1195), + [sym_SEL] = ACTIONS(1195), + [sym_IMP] = ACTIONS(1195), + [sym_BOOL] = ACTIONS(1195), + [sym_auto] = ACTIONS(1195), + [anon_sym_ATautoreleasepool] = ACTIONS(1197), + [anon_sym_ATsynchronized] = ACTIONS(1197), + [anon_sym_ATtry] = ACTIONS(1197), + [anon_sym_ATcatch] = ACTIONS(1197), + [anon_sym_ATfinally] = ACTIONS(1197), + [anon_sym_ATthrow] = ACTIONS(1197), + [anon_sym_ATselector] = ACTIONS(1197), + [anon_sym_ATencode] = ACTIONS(1197), + [anon_sym_AT] = ACTIONS(1195), + [sym_YES] = ACTIONS(1195), + [sym_NO] = ACTIONS(1195), + [anon_sym___builtin_available] = ACTIONS(1195), + [anon_sym_ATavailable] = ACTIONS(1197), + [anon_sym_va_arg] = ACTIONS(1195), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [238] = { + [sym_identifier] = ACTIONS(1401), + [aux_sym_preproc_include_token1] = ACTIONS(1399), + [aux_sym_preproc_def_token1] = ACTIONS(1399), + [aux_sym_preproc_if_token1] = ACTIONS(1401), + [aux_sym_preproc_if_token2] = ACTIONS(1401), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1401), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1401), + [aux_sym_preproc_else_token1] = ACTIONS(1401), + [aux_sym_preproc_elif_token1] = ACTIONS(1401), + [anon_sym_LPAREN2] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_typedef] = ACTIONS(1401), + [anon_sym_extern] = ACTIONS(1401), + [anon_sym___attribute] = ACTIONS(1401), + [anon_sym___attribute__] = ACTIONS(1401), + [anon_sym___declspec] = ACTIONS(1401), + [anon_sym___cdecl] = ACTIONS(1401), + [anon_sym___clrcall] = ACTIONS(1401), + [anon_sym___stdcall] = ACTIONS(1401), + [anon_sym___fastcall] = ACTIONS(1401), + [anon_sym___thiscall] = ACTIONS(1401), + [anon_sym___vectorcall] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1399), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_auto] = ACTIONS(1401), + [anon_sym_register] = ACTIONS(1401), + [anon_sym_inline] = ACTIONS(1401), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_volatile] = ACTIONS(1401), + [anon_sym_restrict] = ACTIONS(1401), + [anon_sym__Atomic] = ACTIONS(1401), + [anon_sym_in] = ACTIONS(1401), + [anon_sym_out] = ACTIONS(1401), + [anon_sym_inout] = ACTIONS(1401), + [anon_sym_bycopy] = ACTIONS(1401), + [anon_sym_byref] = ACTIONS(1401), + [anon_sym_oneway] = ACTIONS(1401), + [anon_sym__Nullable] = ACTIONS(1401), + [anon_sym__Nonnull] = ACTIONS(1401), + [anon_sym__Nullable_result] = ACTIONS(1401), + [anon_sym__Null_unspecified] = ACTIONS(1401), + [anon_sym___autoreleasing] = ACTIONS(1401), + [anon_sym___nullable] = ACTIONS(1401), + [anon_sym___nonnull] = ACTIONS(1401), + [anon_sym___strong] = ACTIONS(1401), + [anon_sym___weak] = ACTIONS(1401), + [anon_sym___bridge] = ACTIONS(1401), + [anon_sym___bridge_transfer] = ACTIONS(1401), + [anon_sym___bridge_retained] = ACTIONS(1401), + [anon_sym___unsafe_unretained] = ACTIONS(1401), + [anon_sym___block] = ACTIONS(1401), + [anon_sym___kindof] = ACTIONS(1401), + [anon_sym___unused] = ACTIONS(1401), + [anon_sym__Complex] = ACTIONS(1401), + [anon_sym___complex] = ACTIONS(1401), + [anon_sym_IBOutlet] = ACTIONS(1401), + [anon_sym_IBInspectable] = ACTIONS(1401), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1401), + [anon_sym_signed] = ACTIONS(1401), + [anon_sym_unsigned] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [sym_primitive_type] = ACTIONS(1401), + [anon_sym_enum] = ACTIONS(1401), + [anon_sym_struct] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_else] = ACTIONS(1401), + [anon_sym_switch] = ACTIONS(1401), + [anon_sym_case] = ACTIONS(1401), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_do] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_goto] = ACTIONS(1401), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_sizeof] = ACTIONS(1401), + [sym_number_literal] = ACTIONS(1399), + [anon_sym_L_SQUOTE] = ACTIONS(1399), + [anon_sym_u_SQUOTE] = ACTIONS(1399), + [anon_sym_U_SQUOTE] = ACTIONS(1399), + [anon_sym_u8_SQUOTE] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_L_DQUOTE] = ACTIONS(1399), + [anon_sym_u_DQUOTE] = ACTIONS(1399), + [anon_sym_U_DQUOTE] = ACTIONS(1399), + [anon_sym_u8_DQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [sym_true] = ACTIONS(1401), + [sym_false] = ACTIONS(1401), + [sym_null] = ACTIONS(1401), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1399), + [anon_sym_ATimport] = ACTIONS(1399), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1401), + [anon_sym_ATcompatibility_alias] = ACTIONS(1399), + [anon_sym_ATprotocol] = ACTIONS(1399), + [anon_sym_ATclass] = ACTIONS(1399), + [anon_sym_ATinterface] = ACTIONS(1399), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1401), + [sym_method_attribute_specifier] = ACTIONS(1401), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1401), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1401), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1401), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1401), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1401), + [anon_sym_NS_AVAILABLE] = ACTIONS(1401), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1401), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_API_AVAILABLE] = ACTIONS(1401), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_API_DEPRECATED] = ACTIONS(1401), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1401), + [anon_sym___deprecated_msg] = ACTIONS(1401), + [anon_sym___deprecated_enum_msg] = ACTIONS(1401), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1401), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1401), + [anon_sym_ATimplementation] = ACTIONS(1399), + [anon_sym_NS_ENUM] = ACTIONS(1401), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1401), + [anon_sym_NS_OPTIONS] = ACTIONS(1401), + [anon_sym_typeof] = ACTIONS(1401), + [anon_sym___typeof] = ACTIONS(1401), + [anon_sym___typeof__] = ACTIONS(1401), + [sym_self] = ACTIONS(1401), + [sym_super] = ACTIONS(1401), + [sym_nil] = ACTIONS(1401), + [sym_id] = ACTIONS(1401), + [sym_instancetype] = ACTIONS(1401), + [sym_Class] = ACTIONS(1401), + [sym_SEL] = ACTIONS(1401), + [sym_IMP] = ACTIONS(1401), + [sym_BOOL] = ACTIONS(1401), + [sym_auto] = ACTIONS(1401), + [anon_sym_ATautoreleasepool] = ACTIONS(1399), + [anon_sym_ATsynchronized] = ACTIONS(1399), + [anon_sym_ATtry] = ACTIONS(1399), + [anon_sym_ATcatch] = ACTIONS(1399), + [anon_sym_ATfinally] = ACTIONS(1399), + [anon_sym_ATthrow] = ACTIONS(1399), + [anon_sym_ATselector] = ACTIONS(1399), + [anon_sym_ATencode] = ACTIONS(1399), + [anon_sym_AT] = ACTIONS(1401), + [sym_YES] = ACTIONS(1401), + [sym_NO] = ACTIONS(1401), + [anon_sym___builtin_available] = ACTIONS(1401), + [anon_sym_ATavailable] = ACTIONS(1399), + [anon_sym_va_arg] = ACTIONS(1401), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [239] = { + [sym_identifier] = ACTIONS(1471), + [aux_sym_preproc_include_token1] = ACTIONS(1469), + [aux_sym_preproc_def_token1] = ACTIONS(1469), + [aux_sym_preproc_if_token1] = ACTIONS(1471), + [aux_sym_preproc_if_token2] = ACTIONS(1471), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1471), + [aux_sym_preproc_else_token1] = ACTIONS(1471), + [aux_sym_preproc_elif_token1] = ACTIONS(1471), + [anon_sym_LPAREN2] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_typedef] = ACTIONS(1471), + [anon_sym_extern] = ACTIONS(1471), + [anon_sym___attribute] = ACTIONS(1471), + [anon_sym___attribute__] = ACTIONS(1471), + [anon_sym___declspec] = ACTIONS(1471), + [anon_sym___cdecl] = ACTIONS(1471), + [anon_sym___clrcall] = ACTIONS(1471), + [anon_sym___stdcall] = ACTIONS(1471), + [anon_sym___fastcall] = ACTIONS(1471), + [anon_sym___thiscall] = ACTIONS(1471), + [anon_sym___vectorcall] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_auto] = ACTIONS(1471), + [anon_sym_register] = ACTIONS(1471), + [anon_sym_inline] = ACTIONS(1471), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_volatile] = ACTIONS(1471), + [anon_sym_restrict] = ACTIONS(1471), + [anon_sym__Atomic] = ACTIONS(1471), + [anon_sym_in] = ACTIONS(1471), + [anon_sym_out] = ACTIONS(1471), + [anon_sym_inout] = ACTIONS(1471), + [anon_sym_bycopy] = ACTIONS(1471), + [anon_sym_byref] = ACTIONS(1471), + [anon_sym_oneway] = ACTIONS(1471), + [anon_sym__Nullable] = ACTIONS(1471), + [anon_sym__Nonnull] = ACTIONS(1471), + [anon_sym__Nullable_result] = ACTIONS(1471), + [anon_sym__Null_unspecified] = ACTIONS(1471), + [anon_sym___autoreleasing] = ACTIONS(1471), + [anon_sym___nullable] = ACTIONS(1471), + [anon_sym___nonnull] = ACTIONS(1471), + [anon_sym___strong] = ACTIONS(1471), + [anon_sym___weak] = ACTIONS(1471), + [anon_sym___bridge] = ACTIONS(1471), + [anon_sym___bridge_transfer] = ACTIONS(1471), + [anon_sym___bridge_retained] = ACTIONS(1471), + [anon_sym___unsafe_unretained] = ACTIONS(1471), + [anon_sym___block] = ACTIONS(1471), + [anon_sym___kindof] = ACTIONS(1471), + [anon_sym___unused] = ACTIONS(1471), + [anon_sym__Complex] = ACTIONS(1471), + [anon_sym___complex] = ACTIONS(1471), + [anon_sym_IBOutlet] = ACTIONS(1471), + [anon_sym_IBInspectable] = ACTIONS(1471), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1471), + [anon_sym_signed] = ACTIONS(1471), + [anon_sym_unsigned] = ACTIONS(1471), + [anon_sym_long] = ACTIONS(1471), + [anon_sym_short] = ACTIONS(1471), + [sym_primitive_type] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_struct] = ACTIONS(1471), + [anon_sym_union] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_else] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1471), + [anon_sym_case] = ACTIONS(1471), + [anon_sym_default] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_goto] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_sizeof] = ACTIONS(1471), + [sym_number_literal] = ACTIONS(1469), + [anon_sym_L_SQUOTE] = ACTIONS(1469), + [anon_sym_u_SQUOTE] = ACTIONS(1469), + [anon_sym_U_SQUOTE] = ACTIONS(1469), + [anon_sym_u8_SQUOTE] = ACTIONS(1469), + [anon_sym_SQUOTE] = ACTIONS(1469), + [anon_sym_L_DQUOTE] = ACTIONS(1469), + [anon_sym_u_DQUOTE] = ACTIONS(1469), + [anon_sym_U_DQUOTE] = ACTIONS(1469), + [anon_sym_u8_DQUOTE] = ACTIONS(1469), + [anon_sym_DQUOTE] = ACTIONS(1469), + [sym_true] = ACTIONS(1471), + [sym_false] = ACTIONS(1471), + [sym_null] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1469), + [anon_sym_ATimport] = ACTIONS(1469), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1471), + [anon_sym_ATcompatibility_alias] = ACTIONS(1469), + [anon_sym_ATprotocol] = ACTIONS(1469), + [anon_sym_ATclass] = ACTIONS(1469), + [anon_sym_ATinterface] = ACTIONS(1469), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1471), + [sym_method_attribute_specifier] = ACTIONS(1471), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1471), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1471), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1471), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1471), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1471), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1471), + [anon_sym_NS_AVAILABLE] = ACTIONS(1471), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1471), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_API_AVAILABLE] = ACTIONS(1471), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1471), + [anon_sym_API_DEPRECATED] = ACTIONS(1471), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1471), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1471), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1471), + [anon_sym___deprecated_msg] = ACTIONS(1471), + [anon_sym___deprecated_enum_msg] = ACTIONS(1471), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1471), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1471), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1471), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1471), + [anon_sym_ATimplementation] = ACTIONS(1469), + [anon_sym_NS_ENUM] = ACTIONS(1471), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1471), + [anon_sym_NS_OPTIONS] = ACTIONS(1471), + [anon_sym_typeof] = ACTIONS(1471), + [anon_sym___typeof] = ACTIONS(1471), + [anon_sym___typeof__] = ACTIONS(1471), + [sym_self] = ACTIONS(1471), + [sym_super] = ACTIONS(1471), + [sym_nil] = ACTIONS(1471), + [sym_id] = ACTIONS(1471), + [sym_instancetype] = ACTIONS(1471), + [sym_Class] = ACTIONS(1471), + [sym_SEL] = ACTIONS(1471), + [sym_IMP] = ACTIONS(1471), + [sym_BOOL] = ACTIONS(1471), + [sym_auto] = ACTIONS(1471), + [anon_sym_ATautoreleasepool] = ACTIONS(1469), + [anon_sym_ATsynchronized] = ACTIONS(1469), + [anon_sym_ATtry] = ACTIONS(1469), + [anon_sym_ATcatch] = ACTIONS(1469), + [anon_sym_ATfinally] = ACTIONS(1469), + [anon_sym_ATthrow] = ACTIONS(1469), + [anon_sym_ATselector] = ACTIONS(1469), + [anon_sym_ATencode] = ACTIONS(1469), + [anon_sym_AT] = ACTIONS(1471), + [sym_YES] = ACTIONS(1471), + [sym_NO] = ACTIONS(1471), + [anon_sym___builtin_available] = ACTIONS(1471), + [anon_sym_ATavailable] = ACTIONS(1469), + [anon_sym_va_arg] = ACTIONS(1471), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [240] = { + [sym_identifier] = ACTIONS(1471), + [aux_sym_preproc_include_token1] = ACTIONS(1469), + [aux_sym_preproc_def_token1] = ACTIONS(1469), + [aux_sym_preproc_if_token1] = ACTIONS(1471), + [aux_sym_preproc_if_token2] = ACTIONS(1471), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1471), + [aux_sym_preproc_else_token1] = ACTIONS(1471), + [aux_sym_preproc_elif_token1] = ACTIONS(1471), + [anon_sym_LPAREN2] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_typedef] = ACTIONS(1471), + [anon_sym_extern] = ACTIONS(1471), + [anon_sym___attribute] = ACTIONS(1471), + [anon_sym___attribute__] = ACTIONS(1471), + [anon_sym___declspec] = ACTIONS(1471), + [anon_sym___cdecl] = ACTIONS(1471), + [anon_sym___clrcall] = ACTIONS(1471), + [anon_sym___stdcall] = ACTIONS(1471), + [anon_sym___fastcall] = ACTIONS(1471), + [anon_sym___thiscall] = ACTIONS(1471), + [anon_sym___vectorcall] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_auto] = ACTIONS(1471), + [anon_sym_register] = ACTIONS(1471), + [anon_sym_inline] = ACTIONS(1471), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_volatile] = ACTIONS(1471), + [anon_sym_restrict] = ACTIONS(1471), + [anon_sym__Atomic] = ACTIONS(1471), + [anon_sym_in] = ACTIONS(1471), + [anon_sym_out] = ACTIONS(1471), + [anon_sym_inout] = ACTIONS(1471), + [anon_sym_bycopy] = ACTIONS(1471), + [anon_sym_byref] = ACTIONS(1471), + [anon_sym_oneway] = ACTIONS(1471), + [anon_sym__Nullable] = ACTIONS(1471), + [anon_sym__Nonnull] = ACTIONS(1471), + [anon_sym__Nullable_result] = ACTIONS(1471), + [anon_sym__Null_unspecified] = ACTIONS(1471), + [anon_sym___autoreleasing] = ACTIONS(1471), + [anon_sym___nullable] = ACTIONS(1471), + [anon_sym___nonnull] = ACTIONS(1471), + [anon_sym___strong] = ACTIONS(1471), + [anon_sym___weak] = ACTIONS(1471), + [anon_sym___bridge] = ACTIONS(1471), + [anon_sym___bridge_transfer] = ACTIONS(1471), + [anon_sym___bridge_retained] = ACTIONS(1471), + [anon_sym___unsafe_unretained] = ACTIONS(1471), + [anon_sym___block] = ACTIONS(1471), + [anon_sym___kindof] = ACTIONS(1471), + [anon_sym___unused] = ACTIONS(1471), + [anon_sym__Complex] = ACTIONS(1471), + [anon_sym___complex] = ACTIONS(1471), + [anon_sym_IBOutlet] = ACTIONS(1471), + [anon_sym_IBInspectable] = ACTIONS(1471), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1471), + [anon_sym_signed] = ACTIONS(1471), + [anon_sym_unsigned] = ACTIONS(1471), + [anon_sym_long] = ACTIONS(1471), + [anon_sym_short] = ACTIONS(1471), + [sym_primitive_type] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_struct] = ACTIONS(1471), + [anon_sym_union] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_else] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1471), + [anon_sym_case] = ACTIONS(1471), + [anon_sym_default] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_goto] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_sizeof] = ACTIONS(1471), + [sym_number_literal] = ACTIONS(1469), + [anon_sym_L_SQUOTE] = ACTIONS(1469), + [anon_sym_u_SQUOTE] = ACTIONS(1469), + [anon_sym_U_SQUOTE] = ACTIONS(1469), + [anon_sym_u8_SQUOTE] = ACTIONS(1469), + [anon_sym_SQUOTE] = ACTIONS(1469), + [anon_sym_L_DQUOTE] = ACTIONS(1469), + [anon_sym_u_DQUOTE] = ACTIONS(1469), + [anon_sym_U_DQUOTE] = ACTIONS(1469), + [anon_sym_u8_DQUOTE] = ACTIONS(1469), + [anon_sym_DQUOTE] = ACTIONS(1469), + [sym_true] = ACTIONS(1471), + [sym_false] = ACTIONS(1471), + [sym_null] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1469), + [anon_sym_ATimport] = ACTIONS(1469), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1471), + [anon_sym_ATcompatibility_alias] = ACTIONS(1469), + [anon_sym_ATprotocol] = ACTIONS(1469), + [anon_sym_ATclass] = ACTIONS(1469), + [anon_sym_ATinterface] = ACTIONS(1469), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1471), + [sym_method_attribute_specifier] = ACTIONS(1471), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1471), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1471), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1471), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1471), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1471), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1471), + [anon_sym_NS_AVAILABLE] = ACTIONS(1471), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1471), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_API_AVAILABLE] = ACTIONS(1471), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1471), + [anon_sym_API_DEPRECATED] = ACTIONS(1471), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1471), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1471), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1471), + [anon_sym___deprecated_msg] = ACTIONS(1471), + [anon_sym___deprecated_enum_msg] = ACTIONS(1471), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1471), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1471), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1471), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1471), + [anon_sym_ATimplementation] = ACTIONS(1469), + [anon_sym_NS_ENUM] = ACTIONS(1471), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1471), + [anon_sym_NS_OPTIONS] = ACTIONS(1471), + [anon_sym_typeof] = ACTIONS(1471), + [anon_sym___typeof] = ACTIONS(1471), + [anon_sym___typeof__] = ACTIONS(1471), + [sym_self] = ACTIONS(1471), + [sym_super] = ACTIONS(1471), + [sym_nil] = ACTIONS(1471), + [sym_id] = ACTIONS(1471), + [sym_instancetype] = ACTIONS(1471), + [sym_Class] = ACTIONS(1471), + [sym_SEL] = ACTIONS(1471), + [sym_IMP] = ACTIONS(1471), + [sym_BOOL] = ACTIONS(1471), + [sym_auto] = ACTIONS(1471), + [anon_sym_ATautoreleasepool] = ACTIONS(1469), + [anon_sym_ATsynchronized] = ACTIONS(1469), + [anon_sym_ATtry] = ACTIONS(1469), + [anon_sym_ATcatch] = ACTIONS(1469), + [anon_sym_ATfinally] = ACTIONS(1469), + [anon_sym_ATthrow] = ACTIONS(1469), + [anon_sym_ATselector] = ACTIONS(1469), + [anon_sym_ATencode] = ACTIONS(1469), + [anon_sym_AT] = ACTIONS(1471), + [sym_YES] = ACTIONS(1471), + [sym_NO] = ACTIONS(1471), + [anon_sym___builtin_available] = ACTIONS(1471), + [anon_sym_ATavailable] = ACTIONS(1469), + [anon_sym_va_arg] = ACTIONS(1471), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [241] = { + [ts_builtin_sym_end] = ACTIONS(1583), + [sym_identifier] = ACTIONS(1585), + [aux_sym_preproc_include_token1] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1583), + [anon_sym_RPAREN] = ACTIONS(1583), + [aux_sym_preproc_if_token1] = ACTIONS(1585), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1585), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_CARET] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_typedef] = ACTIONS(1585), + [anon_sym_extern] = ACTIONS(1585), + [anon_sym___attribute] = ACTIONS(1585), + [anon_sym___attribute__] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(1585), + [anon_sym___cdecl] = ACTIONS(1585), + [anon_sym___clrcall] = ACTIONS(1585), + [anon_sym___stdcall] = ACTIONS(1585), + [anon_sym___fastcall] = ACTIONS(1585), + [anon_sym___thiscall] = ACTIONS(1585), + [anon_sym___vectorcall] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_auto] = ACTIONS(1585), + [anon_sym_register] = ACTIONS(1585), + [anon_sym_inline] = ACTIONS(1585), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_volatile] = ACTIONS(1585), + [anon_sym_restrict] = ACTIONS(1585), + [anon_sym__Atomic] = ACTIONS(1585), + [anon_sym_in] = ACTIONS(1585), + [anon_sym_out] = ACTIONS(1585), + [anon_sym_inout] = ACTIONS(1585), + [anon_sym_bycopy] = ACTIONS(1585), + [anon_sym_byref] = ACTIONS(1585), + [anon_sym_oneway] = ACTIONS(1585), + [anon_sym__Nullable] = ACTIONS(1585), + [anon_sym__Nonnull] = ACTIONS(1585), + [anon_sym__Nullable_result] = ACTIONS(1585), + [anon_sym__Null_unspecified] = ACTIONS(1585), + [anon_sym___autoreleasing] = ACTIONS(1585), + [anon_sym___nullable] = ACTIONS(1585), + [anon_sym___nonnull] = ACTIONS(1585), + [anon_sym___strong] = ACTIONS(1585), + [anon_sym___weak] = ACTIONS(1585), + [anon_sym___bridge] = ACTIONS(1585), + [anon_sym___bridge_transfer] = ACTIONS(1585), + [anon_sym___bridge_retained] = ACTIONS(1585), + [anon_sym___unsafe_unretained] = ACTIONS(1585), + [anon_sym___block] = ACTIONS(1585), + [anon_sym___kindof] = ACTIONS(1585), + [anon_sym___unused] = ACTIONS(1585), + [anon_sym__Complex] = ACTIONS(1585), + [anon_sym___complex] = ACTIONS(1585), + [anon_sym_IBOutlet] = ACTIONS(1585), + [anon_sym_IBInspectable] = ACTIONS(1585), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1585), + [anon_sym_signed] = ACTIONS(1585), + [anon_sym_unsigned] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [sym_primitive_type] = ACTIONS(1585), + [anon_sym_enum] = ACTIONS(1585), + [anon_sym_struct] = ACTIONS(1585), + [anon_sym_union] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_else] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_case] = ACTIONS(1585), + [anon_sym_default] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_goto] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_sizeof] = ACTIONS(1585), + [sym_number_literal] = ACTIONS(1583), + [anon_sym_L_SQUOTE] = ACTIONS(1583), + [anon_sym_u_SQUOTE] = ACTIONS(1583), + [anon_sym_U_SQUOTE] = ACTIONS(1583), + [anon_sym_u8_SQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_L_DQUOTE] = ACTIONS(1583), + [anon_sym_u_DQUOTE] = ACTIONS(1583), + [anon_sym_U_DQUOTE] = ACTIONS(1583), + [anon_sym_u8_DQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [sym_true] = ACTIONS(1585), + [sym_false] = ACTIONS(1585), + [sym_null] = ACTIONS(1585), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1583), + [anon_sym_ATimport] = ACTIONS(1583), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1585), + [anon_sym_ATcompatibility_alias] = ACTIONS(1583), + [anon_sym_ATprotocol] = ACTIONS(1583), + [anon_sym_ATclass] = ACTIONS(1583), + [anon_sym_ATinterface] = ACTIONS(1583), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1585), + [sym_method_attribute_specifier] = ACTIONS(1585), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1585), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1585), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1585), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1585), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1585), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1585), + [anon_sym_NS_AVAILABLE] = ACTIONS(1585), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1585), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1585), + [anon_sym_API_AVAILABLE] = ACTIONS(1585), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1585), + [anon_sym_API_DEPRECATED] = ACTIONS(1585), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1585), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1585), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1585), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1585), + [anon_sym___deprecated_msg] = ACTIONS(1585), + [anon_sym___deprecated_enum_msg] = ACTIONS(1585), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1585), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1585), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1585), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1585), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1585), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1585), + [anon_sym_ATimplementation] = ACTIONS(1583), + [anon_sym_NS_ENUM] = ACTIONS(1585), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1585), + [anon_sym_NS_OPTIONS] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1585), + [anon_sym___typeof] = ACTIONS(1585), + [anon_sym___typeof__] = ACTIONS(1585), + [sym_self] = ACTIONS(1585), + [sym_super] = ACTIONS(1585), + [sym_nil] = ACTIONS(1585), + [sym_id] = ACTIONS(1585), + [sym_instancetype] = ACTIONS(1585), + [sym_Class] = ACTIONS(1585), + [sym_SEL] = ACTIONS(1585), + [sym_IMP] = ACTIONS(1585), + [sym_BOOL] = ACTIONS(1585), + [sym_auto] = ACTIONS(1585), + [anon_sym_ATautoreleasepool] = ACTIONS(1583), + [anon_sym_ATsynchronized] = ACTIONS(1583), + [anon_sym_ATtry] = ACTIONS(1583), + [anon_sym_ATcatch] = ACTIONS(1583), + [anon_sym_ATfinally] = ACTIONS(1583), + [anon_sym_ATthrow] = ACTIONS(1583), + [anon_sym_ATselector] = ACTIONS(1583), + [anon_sym_ATencode] = ACTIONS(1583), + [anon_sym_AT] = ACTIONS(1585), + [sym_YES] = ACTIONS(1585), + [sym_NO] = ACTIONS(1585), + [anon_sym___builtin_available] = ACTIONS(1585), + [anon_sym_ATavailable] = ACTIONS(1583), + [anon_sym_va_arg] = ACTIONS(1585), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [242] = { + [sym_identifier] = ACTIONS(1479), + [aux_sym_preproc_include_token1] = ACTIONS(1477), + [aux_sym_preproc_def_token1] = ACTIONS(1477), + [aux_sym_preproc_if_token1] = ACTIONS(1479), + [aux_sym_preproc_if_token2] = ACTIONS(1479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1479), + [aux_sym_preproc_else_token1] = ACTIONS(1479), + [aux_sym_preproc_elif_token1] = ACTIONS(1479), + [anon_sym_LPAREN2] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1477), + [anon_sym_TILDE] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1477), + [anon_sym_typedef] = ACTIONS(1479), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym___attribute] = ACTIONS(1479), + [anon_sym___attribute__] = ACTIONS(1479), + [anon_sym___declspec] = ACTIONS(1479), + [anon_sym___cdecl] = ACTIONS(1479), + [anon_sym___clrcall] = ACTIONS(1479), + [anon_sym___stdcall] = ACTIONS(1479), + [anon_sym___fastcall] = ACTIONS(1479), + [anon_sym___thiscall] = ACTIONS(1479), + [anon_sym___vectorcall] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_auto] = ACTIONS(1479), + [anon_sym_register] = ACTIONS(1479), + [anon_sym_inline] = ACTIONS(1479), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [anon_sym_volatile] = ACTIONS(1479), + [anon_sym_restrict] = ACTIONS(1479), + [anon_sym__Atomic] = ACTIONS(1479), + [anon_sym_in] = ACTIONS(1479), + [anon_sym_out] = ACTIONS(1479), + [anon_sym_inout] = ACTIONS(1479), + [anon_sym_bycopy] = ACTIONS(1479), + [anon_sym_byref] = ACTIONS(1479), + [anon_sym_oneway] = ACTIONS(1479), + [anon_sym__Nullable] = ACTIONS(1479), + [anon_sym__Nonnull] = ACTIONS(1479), + [anon_sym__Nullable_result] = ACTIONS(1479), + [anon_sym__Null_unspecified] = ACTIONS(1479), + [anon_sym___autoreleasing] = ACTIONS(1479), + [anon_sym___nullable] = ACTIONS(1479), + [anon_sym___nonnull] = ACTIONS(1479), + [anon_sym___strong] = ACTIONS(1479), + [anon_sym___weak] = ACTIONS(1479), + [anon_sym___bridge] = ACTIONS(1479), + [anon_sym___bridge_transfer] = ACTIONS(1479), + [anon_sym___bridge_retained] = ACTIONS(1479), + [anon_sym___unsafe_unretained] = ACTIONS(1479), + [anon_sym___block] = ACTIONS(1479), + [anon_sym___kindof] = ACTIONS(1479), + [anon_sym___unused] = ACTIONS(1479), + [anon_sym__Complex] = ACTIONS(1479), + [anon_sym___complex] = ACTIONS(1479), + [anon_sym_IBOutlet] = ACTIONS(1479), + [anon_sym_IBInspectable] = ACTIONS(1479), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1479), + [anon_sym_signed] = ACTIONS(1479), + [anon_sym_unsigned] = ACTIONS(1479), + [anon_sym_long] = ACTIONS(1479), + [anon_sym_short] = ACTIONS(1479), + [sym_primitive_type] = ACTIONS(1479), + [anon_sym_enum] = ACTIONS(1479), + [anon_sym_struct] = ACTIONS(1479), + [anon_sym_union] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_case] = ACTIONS(1479), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_goto] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1477), + [anon_sym_PLUS_PLUS] = ACTIONS(1477), + [anon_sym_sizeof] = ACTIONS(1479), + [sym_number_literal] = ACTIONS(1477), + [anon_sym_L_SQUOTE] = ACTIONS(1477), + [anon_sym_u_SQUOTE] = ACTIONS(1477), + [anon_sym_U_SQUOTE] = ACTIONS(1477), + [anon_sym_u8_SQUOTE] = ACTIONS(1477), + [anon_sym_SQUOTE] = ACTIONS(1477), + [anon_sym_L_DQUOTE] = ACTIONS(1477), + [anon_sym_u_DQUOTE] = ACTIONS(1477), + [anon_sym_U_DQUOTE] = ACTIONS(1477), + [anon_sym_u8_DQUOTE] = ACTIONS(1477), + [anon_sym_DQUOTE] = ACTIONS(1477), + [sym_true] = ACTIONS(1479), + [sym_false] = ACTIONS(1479), + [sym_null] = ACTIONS(1479), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1477), + [anon_sym_ATimport] = ACTIONS(1477), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1479), + [anon_sym_ATcompatibility_alias] = ACTIONS(1477), + [anon_sym_ATprotocol] = ACTIONS(1477), + [anon_sym_ATclass] = ACTIONS(1477), + [anon_sym_ATinterface] = ACTIONS(1477), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1479), + [sym_method_attribute_specifier] = ACTIONS(1479), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1479), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1479), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1479), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1479), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1479), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1479), + [anon_sym_NS_AVAILABLE] = ACTIONS(1479), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1479), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1479), + [anon_sym_API_AVAILABLE] = ACTIONS(1479), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1479), + [anon_sym_API_DEPRECATED] = ACTIONS(1479), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1479), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1479), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1479), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1479), + [anon_sym___deprecated_msg] = ACTIONS(1479), + [anon_sym___deprecated_enum_msg] = ACTIONS(1479), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1479), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1479), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1479), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1479), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1479), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1479), + [anon_sym_ATimplementation] = ACTIONS(1477), + [anon_sym_NS_ENUM] = ACTIONS(1479), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1479), + [anon_sym_NS_OPTIONS] = ACTIONS(1479), + [anon_sym_typeof] = ACTIONS(1479), + [anon_sym___typeof] = ACTIONS(1479), + [anon_sym___typeof__] = ACTIONS(1479), + [sym_self] = ACTIONS(1479), + [sym_super] = ACTIONS(1479), + [sym_nil] = ACTIONS(1479), + [sym_id] = ACTIONS(1479), + [sym_instancetype] = ACTIONS(1479), + [sym_Class] = ACTIONS(1479), + [sym_SEL] = ACTIONS(1479), + [sym_IMP] = ACTIONS(1479), + [sym_BOOL] = ACTIONS(1479), + [sym_auto] = ACTIONS(1479), + [anon_sym_ATautoreleasepool] = ACTIONS(1477), + [anon_sym_ATsynchronized] = ACTIONS(1477), + [anon_sym_ATtry] = ACTIONS(1477), + [anon_sym_ATcatch] = ACTIONS(1477), + [anon_sym_ATfinally] = ACTIONS(1477), + [anon_sym_ATthrow] = ACTIONS(1477), + [anon_sym_ATselector] = ACTIONS(1477), + [anon_sym_ATencode] = ACTIONS(1477), + [anon_sym_AT] = ACTIONS(1479), + [sym_YES] = ACTIONS(1479), + [sym_NO] = ACTIONS(1479), + [anon_sym___builtin_available] = ACTIONS(1479), + [anon_sym_ATavailable] = ACTIONS(1477), + [anon_sym_va_arg] = ACTIONS(1479), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [243] = { + [ts_builtin_sym_end] = ACTIONS(1587), + [sym_identifier] = ACTIONS(1589), + [aux_sym_preproc_include_token1] = ACTIONS(1587), + [aux_sym_preproc_def_token1] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1587), + [aux_sym_preproc_if_token1] = ACTIONS(1589), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1589), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_typedef] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym___attribute] = ACTIONS(1589), + [anon_sym___attribute__] = ACTIONS(1589), + [anon_sym___declspec] = ACTIONS(1589), + [anon_sym___cdecl] = ACTIONS(1589), + [anon_sym___clrcall] = ACTIONS(1589), + [anon_sym___stdcall] = ACTIONS(1589), + [anon_sym___fastcall] = ACTIONS(1589), + [anon_sym___thiscall] = ACTIONS(1589), + [anon_sym___vectorcall] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_auto] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_inline] = ACTIONS(1589), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_volatile] = ACTIONS(1589), + [anon_sym_restrict] = ACTIONS(1589), + [anon_sym__Atomic] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_out] = ACTIONS(1589), + [anon_sym_inout] = ACTIONS(1589), + [anon_sym_bycopy] = ACTIONS(1589), + [anon_sym_byref] = ACTIONS(1589), + [anon_sym_oneway] = ACTIONS(1589), + [anon_sym__Nullable] = ACTIONS(1589), + [anon_sym__Nonnull] = ACTIONS(1589), + [anon_sym__Nullable_result] = ACTIONS(1589), + [anon_sym__Null_unspecified] = ACTIONS(1589), + [anon_sym___autoreleasing] = ACTIONS(1589), + [anon_sym___nullable] = ACTIONS(1589), + [anon_sym___nonnull] = ACTIONS(1589), + [anon_sym___strong] = ACTIONS(1589), + [anon_sym___weak] = ACTIONS(1589), + [anon_sym___bridge] = ACTIONS(1589), + [anon_sym___bridge_transfer] = ACTIONS(1589), + [anon_sym___bridge_retained] = ACTIONS(1589), + [anon_sym___unsafe_unretained] = ACTIONS(1589), + [anon_sym___block] = ACTIONS(1589), + [anon_sym___kindof] = ACTIONS(1589), + [anon_sym___unused] = ACTIONS(1589), + [anon_sym__Complex] = ACTIONS(1589), + [anon_sym___complex] = ACTIONS(1589), + [anon_sym_IBOutlet] = ACTIONS(1589), + [anon_sym_IBInspectable] = ACTIONS(1589), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1589), + [anon_sym_signed] = ACTIONS(1589), + [anon_sym_unsigned] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [sym_primitive_type] = ACTIONS(1589), + [anon_sym_enum] = ACTIONS(1589), + [anon_sym_struct] = ACTIONS(1589), + [anon_sym_union] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_case] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_goto] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_sizeof] = ACTIONS(1589), + [sym_number_literal] = ACTIONS(1587), + [anon_sym_L_SQUOTE] = ACTIONS(1587), + [anon_sym_u_SQUOTE] = ACTIONS(1587), + [anon_sym_U_SQUOTE] = ACTIONS(1587), + [anon_sym_u8_SQUOTE] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_L_DQUOTE] = ACTIONS(1587), + [anon_sym_u_DQUOTE] = ACTIONS(1587), + [anon_sym_U_DQUOTE] = ACTIONS(1587), + [anon_sym_u8_DQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1587), + [anon_sym_ATimport] = ACTIONS(1587), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1589), + [anon_sym_ATcompatibility_alias] = ACTIONS(1587), + [anon_sym_ATprotocol] = ACTIONS(1587), + [anon_sym_ATclass] = ACTIONS(1587), + [anon_sym_ATinterface] = ACTIONS(1587), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1589), + [sym_method_attribute_specifier] = ACTIONS(1589), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1589), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1589), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1589), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1589), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1589), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1589), + [anon_sym_NS_AVAILABLE] = ACTIONS(1589), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1589), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1589), + [anon_sym_API_AVAILABLE] = ACTIONS(1589), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1589), + [anon_sym_API_DEPRECATED] = ACTIONS(1589), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1589), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1589), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1589), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1589), + [anon_sym___deprecated_msg] = ACTIONS(1589), + [anon_sym___deprecated_enum_msg] = ACTIONS(1589), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1589), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1589), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1589), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1589), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1589), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1589), + [anon_sym_ATimplementation] = ACTIONS(1587), + [anon_sym_NS_ENUM] = ACTIONS(1589), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1589), + [anon_sym_NS_OPTIONS] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(1589), + [anon_sym___typeof] = ACTIONS(1589), + [anon_sym___typeof__] = ACTIONS(1589), + [sym_self] = ACTIONS(1589), + [sym_super] = ACTIONS(1589), + [sym_nil] = ACTIONS(1589), + [sym_id] = ACTIONS(1589), + [sym_instancetype] = ACTIONS(1589), + [sym_Class] = ACTIONS(1589), + [sym_SEL] = ACTIONS(1589), + [sym_IMP] = ACTIONS(1589), + [sym_BOOL] = ACTIONS(1589), + [sym_auto] = ACTIONS(1589), + [anon_sym_ATautoreleasepool] = ACTIONS(1587), + [anon_sym_ATsynchronized] = ACTIONS(1587), + [anon_sym_ATtry] = ACTIONS(1587), + [anon_sym_ATcatch] = ACTIONS(1587), + [anon_sym_ATfinally] = ACTIONS(1587), + [anon_sym_ATthrow] = ACTIONS(1587), + [anon_sym_ATselector] = ACTIONS(1587), + [anon_sym_ATencode] = ACTIONS(1587), + [anon_sym_AT] = ACTIONS(1589), + [sym_YES] = ACTIONS(1589), + [sym_NO] = ACTIONS(1589), + [anon_sym___builtin_available] = ACTIONS(1589), + [anon_sym_ATavailable] = ACTIONS(1587), + [anon_sym_va_arg] = ACTIONS(1589), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [244] = { + [ts_builtin_sym_end] = ACTIONS(1591), + [sym_identifier] = ACTIONS(1593), + [aux_sym_preproc_include_token1] = ACTIONS(1591), + [aux_sym_preproc_def_token1] = ACTIONS(1591), + [anon_sym_RPAREN] = ACTIONS(1591), + [aux_sym_preproc_if_token1] = ACTIONS(1593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_CARET] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_typedef] = ACTIONS(1593), + [anon_sym_extern] = ACTIONS(1593), + [anon_sym___attribute] = ACTIONS(1593), + [anon_sym___attribute__] = ACTIONS(1593), + [anon_sym___declspec] = ACTIONS(1593), + [anon_sym___cdecl] = ACTIONS(1593), + [anon_sym___clrcall] = ACTIONS(1593), + [anon_sym___stdcall] = ACTIONS(1593), + [anon_sym___fastcall] = ACTIONS(1593), + [anon_sym___thiscall] = ACTIONS(1593), + [anon_sym___vectorcall] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_auto] = ACTIONS(1593), + [anon_sym_register] = ACTIONS(1593), + [anon_sym_inline] = ACTIONS(1593), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_volatile] = ACTIONS(1593), + [anon_sym_restrict] = ACTIONS(1593), + [anon_sym__Atomic] = ACTIONS(1593), + [anon_sym_in] = ACTIONS(1593), + [anon_sym_out] = ACTIONS(1593), + [anon_sym_inout] = ACTIONS(1593), + [anon_sym_bycopy] = ACTIONS(1593), + [anon_sym_byref] = ACTIONS(1593), + [anon_sym_oneway] = ACTIONS(1593), + [anon_sym__Nullable] = ACTIONS(1593), + [anon_sym__Nonnull] = ACTIONS(1593), + [anon_sym__Nullable_result] = ACTIONS(1593), + [anon_sym__Null_unspecified] = ACTIONS(1593), + [anon_sym___autoreleasing] = ACTIONS(1593), + [anon_sym___nullable] = ACTIONS(1593), + [anon_sym___nonnull] = ACTIONS(1593), + [anon_sym___strong] = ACTIONS(1593), + [anon_sym___weak] = ACTIONS(1593), + [anon_sym___bridge] = ACTIONS(1593), + [anon_sym___bridge_transfer] = ACTIONS(1593), + [anon_sym___bridge_retained] = ACTIONS(1593), + [anon_sym___unsafe_unretained] = ACTIONS(1593), + [anon_sym___block] = ACTIONS(1593), + [anon_sym___kindof] = ACTIONS(1593), + [anon_sym___unused] = ACTIONS(1593), + [anon_sym__Complex] = ACTIONS(1593), + [anon_sym___complex] = ACTIONS(1593), + [anon_sym_IBOutlet] = ACTIONS(1593), + [anon_sym_IBInspectable] = ACTIONS(1593), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1593), + [anon_sym_signed] = ACTIONS(1593), + [anon_sym_unsigned] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [sym_primitive_type] = ACTIONS(1593), + [anon_sym_enum] = ACTIONS(1593), + [anon_sym_struct] = ACTIONS(1593), + [anon_sym_union] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_else] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_goto] = ACTIONS(1593), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_sizeof] = ACTIONS(1593), + [sym_number_literal] = ACTIONS(1591), + [anon_sym_L_SQUOTE] = ACTIONS(1591), + [anon_sym_u_SQUOTE] = ACTIONS(1591), + [anon_sym_U_SQUOTE] = ACTIONS(1591), + [anon_sym_u8_SQUOTE] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_L_DQUOTE] = ACTIONS(1591), + [anon_sym_u_DQUOTE] = ACTIONS(1591), + [anon_sym_U_DQUOTE] = ACTIONS(1591), + [anon_sym_u8_DQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym_true] = ACTIONS(1593), + [sym_false] = ACTIONS(1593), + [sym_null] = ACTIONS(1593), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1591), + [anon_sym_ATimport] = ACTIONS(1591), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1593), + [anon_sym_ATcompatibility_alias] = ACTIONS(1591), + [anon_sym_ATprotocol] = ACTIONS(1591), + [anon_sym_ATclass] = ACTIONS(1591), + [anon_sym_ATinterface] = ACTIONS(1591), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1593), + [sym_method_attribute_specifier] = ACTIONS(1593), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1593), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1593), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1593), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1593), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1593), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1593), + [anon_sym_NS_AVAILABLE] = ACTIONS(1593), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1593), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1593), + [anon_sym_API_AVAILABLE] = ACTIONS(1593), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1593), + [anon_sym_API_DEPRECATED] = ACTIONS(1593), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1593), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1593), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1593), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1593), + [anon_sym___deprecated_msg] = ACTIONS(1593), + [anon_sym___deprecated_enum_msg] = ACTIONS(1593), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1593), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1593), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1593), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1593), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1593), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1593), + [anon_sym_ATimplementation] = ACTIONS(1591), + [anon_sym_NS_ENUM] = ACTIONS(1593), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1593), + [anon_sym_NS_OPTIONS] = ACTIONS(1593), + [anon_sym_typeof] = ACTIONS(1593), + [anon_sym___typeof] = ACTIONS(1593), + [anon_sym___typeof__] = ACTIONS(1593), + [sym_self] = ACTIONS(1593), + [sym_super] = ACTIONS(1593), + [sym_nil] = ACTIONS(1593), + [sym_id] = ACTIONS(1593), + [sym_instancetype] = ACTIONS(1593), + [sym_Class] = ACTIONS(1593), + [sym_SEL] = ACTIONS(1593), + [sym_IMP] = ACTIONS(1593), + [sym_BOOL] = ACTIONS(1593), + [sym_auto] = ACTIONS(1593), + [anon_sym_ATautoreleasepool] = ACTIONS(1591), + [anon_sym_ATsynchronized] = ACTIONS(1591), + [anon_sym_ATtry] = ACTIONS(1591), + [anon_sym_ATcatch] = ACTIONS(1591), + [anon_sym_ATfinally] = ACTIONS(1591), + [anon_sym_ATthrow] = ACTIONS(1591), + [anon_sym_ATselector] = ACTIONS(1591), + [anon_sym_ATencode] = ACTIONS(1591), + [anon_sym_AT] = ACTIONS(1593), + [sym_YES] = ACTIONS(1593), + [sym_NO] = ACTIONS(1593), + [anon_sym___builtin_available] = ACTIONS(1593), + [anon_sym_ATavailable] = ACTIONS(1591), + [anon_sym_va_arg] = ACTIONS(1593), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -68791,352 +68820,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [245] = { - [ts_builtin_sym_end] = ACTIONS(1543), - [sym_identifier] = ACTIONS(1541), - [aux_sym_preproc_include_token1] = ACTIONS(1543), - [aux_sym_preproc_def_token1] = ACTIONS(1543), - [anon_sym_RPAREN] = ACTIONS(1543), - [aux_sym_preproc_if_token1] = ACTIONS(1541), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1541), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1541), - [anon_sym_LPAREN2] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1543), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_typedef] = ACTIONS(1541), - [anon_sym_extern] = ACTIONS(1541), - [anon_sym___attribute] = ACTIONS(1541), - [anon_sym___attribute__] = ACTIONS(1541), - [anon_sym___declspec] = ACTIONS(1541), - [anon_sym___cdecl] = ACTIONS(1541), - [anon_sym___clrcall] = ACTIONS(1541), - [anon_sym___stdcall] = ACTIONS(1541), - [anon_sym___fastcall] = ACTIONS(1541), - [anon_sym___thiscall] = ACTIONS(1541), - [anon_sym___vectorcall] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_static] = ACTIONS(1541), - [anon_sym_auto] = ACTIONS(1541), - [anon_sym_register] = ACTIONS(1541), - [anon_sym_inline] = ACTIONS(1541), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_volatile] = ACTIONS(1541), - [anon_sym_restrict] = ACTIONS(1541), - [anon_sym__Atomic] = ACTIONS(1541), - [anon_sym_in] = ACTIONS(1541), - [anon_sym_out] = ACTIONS(1541), - [anon_sym_inout] = ACTIONS(1541), - [anon_sym_bycopy] = ACTIONS(1541), - [anon_sym_byref] = ACTIONS(1541), - [anon_sym_oneway] = ACTIONS(1541), - [anon_sym__Nullable] = ACTIONS(1541), - [anon_sym__Nonnull] = ACTIONS(1541), - [anon_sym__Nullable_result] = ACTIONS(1541), - [anon_sym__Null_unspecified] = ACTIONS(1541), - [anon_sym___autoreleasing] = ACTIONS(1541), - [anon_sym___nullable] = ACTIONS(1541), - [anon_sym___nonnull] = ACTIONS(1541), - [anon_sym___strong] = ACTIONS(1541), - [anon_sym___weak] = ACTIONS(1541), - [anon_sym___bridge] = ACTIONS(1541), - [anon_sym___bridge_transfer] = ACTIONS(1541), - [anon_sym___bridge_retained] = ACTIONS(1541), - [anon_sym___unsafe_unretained] = ACTIONS(1541), - [anon_sym___block] = ACTIONS(1541), - [anon_sym___kindof] = ACTIONS(1541), - [anon_sym___unused] = ACTIONS(1541), - [anon_sym__Complex] = ACTIONS(1541), - [anon_sym___complex] = ACTIONS(1541), - [anon_sym_IBOutlet] = ACTIONS(1541), - [anon_sym_IBInspectable] = ACTIONS(1541), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1541), - [anon_sym_signed] = ACTIONS(1541), - [anon_sym_unsigned] = ACTIONS(1541), - [anon_sym_long] = ACTIONS(1541), - [anon_sym_short] = ACTIONS(1541), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_enum] = ACTIONS(1541), - [anon_sym_NS_ENUM] = ACTIONS(1541), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1541), - [anon_sym_NS_OPTIONS] = ACTIONS(1541), - [anon_sym_struct] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1541), - [anon_sym_else] = ACTIONS(1541), - [anon_sym_switch] = ACTIONS(1541), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1541), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1541), - [anon_sym_for] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1541), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_goto] = ACTIONS(1541), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1541), - [sym_number_literal] = ACTIONS(1543), - [anon_sym_L_SQUOTE] = ACTIONS(1543), - [anon_sym_u_SQUOTE] = ACTIONS(1543), - [anon_sym_U_SQUOTE] = ACTIONS(1543), - [anon_sym_u8_SQUOTE] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_L_DQUOTE] = ACTIONS(1543), - [anon_sym_u_DQUOTE] = ACTIONS(1543), - [anon_sym_U_DQUOTE] = ACTIONS(1543), - [anon_sym_u8_DQUOTE] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1543), - [sym_true] = ACTIONS(1541), - [sym_false] = ACTIONS(1541), - [sym_null] = ACTIONS(1541), + [sym_identifier] = ACTIONS(1483), + [aux_sym_preproc_include_token1] = ACTIONS(1481), + [aux_sym_preproc_def_token1] = ACTIONS(1481), + [aux_sym_preproc_if_token1] = ACTIONS(1483), + [aux_sym_preproc_if_token2] = ACTIONS(1483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1483), + [aux_sym_preproc_else_token1] = ACTIONS(1483), + [aux_sym_preproc_elif_token1] = ACTIONS(1483), + [anon_sym_LPAREN2] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_CARET] = ACTIONS(1481), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1481), + [anon_sym_typedef] = ACTIONS(1483), + [anon_sym_extern] = ACTIONS(1483), + [anon_sym___attribute] = ACTIONS(1483), + [anon_sym___attribute__] = ACTIONS(1483), + [anon_sym___declspec] = ACTIONS(1483), + [anon_sym___cdecl] = ACTIONS(1483), + [anon_sym___clrcall] = ACTIONS(1483), + [anon_sym___stdcall] = ACTIONS(1483), + [anon_sym___fastcall] = ACTIONS(1483), + [anon_sym___thiscall] = ACTIONS(1483), + [anon_sym___vectorcall] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1483), + [anon_sym_auto] = ACTIONS(1483), + [anon_sym_register] = ACTIONS(1483), + [anon_sym_inline] = ACTIONS(1483), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1483), + [anon_sym_volatile] = ACTIONS(1483), + [anon_sym_restrict] = ACTIONS(1483), + [anon_sym__Atomic] = ACTIONS(1483), + [anon_sym_in] = ACTIONS(1483), + [anon_sym_out] = ACTIONS(1483), + [anon_sym_inout] = ACTIONS(1483), + [anon_sym_bycopy] = ACTIONS(1483), + [anon_sym_byref] = ACTIONS(1483), + [anon_sym_oneway] = ACTIONS(1483), + [anon_sym__Nullable] = ACTIONS(1483), + [anon_sym__Nonnull] = ACTIONS(1483), + [anon_sym__Nullable_result] = ACTIONS(1483), + [anon_sym__Null_unspecified] = ACTIONS(1483), + [anon_sym___autoreleasing] = ACTIONS(1483), + [anon_sym___nullable] = ACTIONS(1483), + [anon_sym___nonnull] = ACTIONS(1483), + [anon_sym___strong] = ACTIONS(1483), + [anon_sym___weak] = ACTIONS(1483), + [anon_sym___bridge] = ACTIONS(1483), + [anon_sym___bridge_transfer] = ACTIONS(1483), + [anon_sym___bridge_retained] = ACTIONS(1483), + [anon_sym___unsafe_unretained] = ACTIONS(1483), + [anon_sym___block] = ACTIONS(1483), + [anon_sym___kindof] = ACTIONS(1483), + [anon_sym___unused] = ACTIONS(1483), + [anon_sym__Complex] = ACTIONS(1483), + [anon_sym___complex] = ACTIONS(1483), + [anon_sym_IBOutlet] = ACTIONS(1483), + [anon_sym_IBInspectable] = ACTIONS(1483), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1483), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1483), + [anon_sym_enum] = ACTIONS(1483), + [anon_sym_struct] = ACTIONS(1483), + [anon_sym_union] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1483), + [anon_sym_else] = ACTIONS(1483), + [anon_sym_switch] = ACTIONS(1483), + [anon_sym_case] = ACTIONS(1483), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_while] = ACTIONS(1483), + [anon_sym_do] = ACTIONS(1483), + [anon_sym_for] = ACTIONS(1483), + [anon_sym_return] = ACTIONS(1483), + [anon_sym_break] = ACTIONS(1483), + [anon_sym_continue] = ACTIONS(1483), + [anon_sym_goto] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1481), + [anon_sym_sizeof] = ACTIONS(1483), + [sym_number_literal] = ACTIONS(1481), + [anon_sym_L_SQUOTE] = ACTIONS(1481), + [anon_sym_u_SQUOTE] = ACTIONS(1481), + [anon_sym_U_SQUOTE] = ACTIONS(1481), + [anon_sym_u8_SQUOTE] = ACTIONS(1481), + [anon_sym_SQUOTE] = ACTIONS(1481), + [anon_sym_L_DQUOTE] = ACTIONS(1481), + [anon_sym_u_DQUOTE] = ACTIONS(1481), + [anon_sym_U_DQUOTE] = ACTIONS(1481), + [anon_sym_u8_DQUOTE] = ACTIONS(1481), + [anon_sym_DQUOTE] = ACTIONS(1481), + [sym_true] = ACTIONS(1483), + [sym_false] = ACTIONS(1483), + [sym_null] = ACTIONS(1483), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1543), - [anon_sym_ATimport] = ACTIONS(1543), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1541), - [anon_sym_ATcompatibility_alias] = ACTIONS(1543), - [anon_sym_ATprotocol] = ACTIONS(1543), - [anon_sym_ATclass] = ACTIONS(1543), - [anon_sym_ATinterface] = ACTIONS(1543), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1541), - [sym_method_attribute_specifier] = ACTIONS(1541), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1541), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1541), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1541), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1541), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1541), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1541), - [anon_sym_NS_AVAILABLE] = ACTIONS(1541), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1541), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1541), - [anon_sym_API_AVAILABLE] = ACTIONS(1541), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1541), - [anon_sym_API_DEPRECATED] = ACTIONS(1541), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1541), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1541), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1541), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1541), - [anon_sym___deprecated_msg] = ACTIONS(1541), - [anon_sym___deprecated_enum_msg] = ACTIONS(1541), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1541), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1541), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1541), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1541), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1541), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1541), - [anon_sym_ATimplementation] = ACTIONS(1543), - [anon_sym_typeof] = ACTIONS(1541), - [anon_sym___typeof] = ACTIONS(1541), - [anon_sym___typeof__] = ACTIONS(1541), - [sym_self] = ACTIONS(1541), - [sym_super] = ACTIONS(1541), - [sym_nil] = ACTIONS(1541), - [sym_id] = ACTIONS(1541), - [sym_instancetype] = ACTIONS(1541), - [sym_Class] = ACTIONS(1541), - [sym_SEL] = ACTIONS(1541), - [sym_IMP] = ACTIONS(1541), - [sym_BOOL] = ACTIONS(1541), - [sym_auto] = ACTIONS(1541), - [anon_sym_ATautoreleasepool] = ACTIONS(1543), - [anon_sym_ATsynchronized] = ACTIONS(1543), - [anon_sym_ATtry] = ACTIONS(1543), - [anon_sym_ATcatch] = ACTIONS(1543), - [anon_sym_ATfinally] = ACTIONS(1543), - [anon_sym_ATthrow] = ACTIONS(1543), - [anon_sym_ATselector] = ACTIONS(1543), - [anon_sym_ATencode] = ACTIONS(1543), - [anon_sym_AT] = ACTIONS(1541), - [sym_YES] = ACTIONS(1541), - [sym_NO] = ACTIONS(1541), - [anon_sym___builtin_available] = ACTIONS(1541), - [anon_sym_ATavailable] = ACTIONS(1543), - [anon_sym_va_arg] = ACTIONS(1541), + [anon_sym_POUNDimport] = ACTIONS(1481), + [anon_sym_ATimport] = ACTIONS(1481), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1483), + [anon_sym_ATcompatibility_alias] = ACTIONS(1481), + [anon_sym_ATprotocol] = ACTIONS(1481), + [anon_sym_ATclass] = ACTIONS(1481), + [anon_sym_ATinterface] = ACTIONS(1481), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1483), + [sym_method_attribute_specifier] = ACTIONS(1483), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1483), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1483), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1483), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1483), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1483), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1483), + [anon_sym_NS_AVAILABLE] = ACTIONS(1483), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1483), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1483), + [anon_sym_API_AVAILABLE] = ACTIONS(1483), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1483), + [anon_sym_API_DEPRECATED] = ACTIONS(1483), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1483), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1483), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1483), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1483), + [anon_sym___deprecated_msg] = ACTIONS(1483), + [anon_sym___deprecated_enum_msg] = ACTIONS(1483), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1483), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1483), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1483), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1483), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1483), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1483), + [anon_sym_ATimplementation] = ACTIONS(1481), + [anon_sym_NS_ENUM] = ACTIONS(1483), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1483), + [anon_sym_NS_OPTIONS] = ACTIONS(1483), + [anon_sym_typeof] = ACTIONS(1483), + [anon_sym___typeof] = ACTIONS(1483), + [anon_sym___typeof__] = ACTIONS(1483), + [sym_self] = ACTIONS(1483), + [sym_super] = ACTIONS(1483), + [sym_nil] = ACTIONS(1483), + [sym_id] = ACTIONS(1483), + [sym_instancetype] = ACTIONS(1483), + [sym_Class] = ACTIONS(1483), + [sym_SEL] = ACTIONS(1483), + [sym_IMP] = ACTIONS(1483), + [sym_BOOL] = ACTIONS(1483), + [sym_auto] = ACTIONS(1483), + [anon_sym_ATautoreleasepool] = ACTIONS(1481), + [anon_sym_ATsynchronized] = ACTIONS(1481), + [anon_sym_ATtry] = ACTIONS(1481), + [anon_sym_ATcatch] = ACTIONS(1481), + [anon_sym_ATfinally] = ACTIONS(1481), + [anon_sym_ATthrow] = ACTIONS(1481), + [anon_sym_ATselector] = ACTIONS(1481), + [anon_sym_ATencode] = ACTIONS(1481), + [anon_sym_AT] = ACTIONS(1483), + [sym_YES] = ACTIONS(1483), + [sym_NO] = ACTIONS(1483), + [anon_sym___builtin_available] = ACTIONS(1483), + [anon_sym_ATavailable] = ACTIONS(1481), + [anon_sym_va_arg] = ACTIONS(1483), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, [246] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1535), - [aux_sym_preproc_def_token1] = ACTIONS(1535), - [anon_sym_RPAREN] = ACTIONS(1535), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_auto] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_in] = ACTIONS(1533), - [anon_sym_out] = ACTIONS(1533), - [anon_sym_inout] = ACTIONS(1533), - [anon_sym_bycopy] = ACTIONS(1533), - [anon_sym_byref] = ACTIONS(1533), - [anon_sym_oneway] = ACTIONS(1533), - [anon_sym__Nullable] = ACTIONS(1533), - [anon_sym__Nonnull] = ACTIONS(1533), - [anon_sym__Nullable_result] = ACTIONS(1533), - [anon_sym__Null_unspecified] = ACTIONS(1533), - [anon_sym___autoreleasing] = ACTIONS(1533), - [anon_sym___nullable] = ACTIONS(1533), - [anon_sym___nonnull] = ACTIONS(1533), - [anon_sym___strong] = ACTIONS(1533), - [anon_sym___weak] = ACTIONS(1533), - [anon_sym___bridge] = ACTIONS(1533), - [anon_sym___bridge_transfer] = ACTIONS(1533), - [anon_sym___bridge_retained] = ACTIONS(1533), - [anon_sym___unsafe_unretained] = ACTIONS(1533), - [anon_sym___block] = ACTIONS(1533), - [anon_sym___kindof] = ACTIONS(1533), - [anon_sym___unused] = ACTIONS(1533), - [anon_sym__Complex] = ACTIONS(1533), - [anon_sym___complex] = ACTIONS(1533), - [anon_sym_IBOutlet] = ACTIONS(1533), - [anon_sym_IBInspectable] = ACTIONS(1533), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_NS_ENUM] = ACTIONS(1533), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1533), - [anon_sym_NS_OPTIONS] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), + [ts_builtin_sym_end] = ACTIONS(1595), + [sym_identifier] = ACTIONS(1597), + [aux_sym_preproc_include_token1] = ACTIONS(1595), + [aux_sym_preproc_def_token1] = ACTIONS(1595), + [anon_sym_RPAREN] = ACTIONS(1595), + [aux_sym_preproc_if_token1] = ACTIONS(1597), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1597), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_CARET] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_typedef] = ACTIONS(1597), + [anon_sym_extern] = ACTIONS(1597), + [anon_sym___attribute] = ACTIONS(1597), + [anon_sym___attribute__] = ACTIONS(1597), + [anon_sym___declspec] = ACTIONS(1597), + [anon_sym___cdecl] = ACTIONS(1597), + [anon_sym___clrcall] = ACTIONS(1597), + [anon_sym___stdcall] = ACTIONS(1597), + [anon_sym___fastcall] = ACTIONS(1597), + [anon_sym___thiscall] = ACTIONS(1597), + [anon_sym___vectorcall] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1595), + [anon_sym_RBRACE] = ACTIONS(1595), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_auto] = ACTIONS(1597), + [anon_sym_register] = ACTIONS(1597), + [anon_sym_inline] = ACTIONS(1597), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_volatile] = ACTIONS(1597), + [anon_sym_restrict] = ACTIONS(1597), + [anon_sym__Atomic] = ACTIONS(1597), + [anon_sym_in] = ACTIONS(1597), + [anon_sym_out] = ACTIONS(1597), + [anon_sym_inout] = ACTIONS(1597), + [anon_sym_bycopy] = ACTIONS(1597), + [anon_sym_byref] = ACTIONS(1597), + [anon_sym_oneway] = ACTIONS(1597), + [anon_sym__Nullable] = ACTIONS(1597), + [anon_sym__Nonnull] = ACTIONS(1597), + [anon_sym__Nullable_result] = ACTIONS(1597), + [anon_sym__Null_unspecified] = ACTIONS(1597), + [anon_sym___autoreleasing] = ACTIONS(1597), + [anon_sym___nullable] = ACTIONS(1597), + [anon_sym___nonnull] = ACTIONS(1597), + [anon_sym___strong] = ACTIONS(1597), + [anon_sym___weak] = ACTIONS(1597), + [anon_sym___bridge] = ACTIONS(1597), + [anon_sym___bridge_transfer] = ACTIONS(1597), + [anon_sym___bridge_retained] = ACTIONS(1597), + [anon_sym___unsafe_unretained] = ACTIONS(1597), + [anon_sym___block] = ACTIONS(1597), + [anon_sym___kindof] = ACTIONS(1597), + [anon_sym___unused] = ACTIONS(1597), + [anon_sym__Complex] = ACTIONS(1597), + [anon_sym___complex] = ACTIONS(1597), + [anon_sym_IBOutlet] = ACTIONS(1597), + [anon_sym_IBInspectable] = ACTIONS(1597), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1597), + [anon_sym_signed] = ACTIONS(1597), + [anon_sym_unsigned] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [sym_primitive_type] = ACTIONS(1597), + [anon_sym_enum] = ACTIONS(1597), + [anon_sym_struct] = ACTIONS(1597), + [anon_sym_union] = ACTIONS(1597), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_else] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_case] = ACTIONS(1597), + [anon_sym_default] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_goto] = ACTIONS(1597), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1597), + [sym_number_literal] = ACTIONS(1595), + [anon_sym_L_SQUOTE] = ACTIONS(1595), + [anon_sym_u_SQUOTE] = ACTIONS(1595), + [anon_sym_U_SQUOTE] = ACTIONS(1595), + [anon_sym_u8_SQUOTE] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_L_DQUOTE] = ACTIONS(1595), + [anon_sym_u_DQUOTE] = ACTIONS(1595), + [anon_sym_U_DQUOTE] = ACTIONS(1595), + [anon_sym_u8_DQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [sym_true] = ACTIONS(1597), + [sym_false] = ACTIONS(1597), + [sym_null] = ACTIONS(1597), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1535), - [anon_sym_ATimport] = ACTIONS(1535), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1533), - [anon_sym_ATcompatibility_alias] = ACTIONS(1535), - [anon_sym_ATprotocol] = ACTIONS(1535), - [anon_sym_ATclass] = ACTIONS(1535), - [anon_sym_ATinterface] = ACTIONS(1535), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1533), - [sym_method_attribute_specifier] = ACTIONS(1533), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1533), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1533), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1533), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1533), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_NS_AVAILABLE] = ACTIONS(1533), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1533), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1533), - [anon_sym_API_AVAILABLE] = ACTIONS(1533), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1533), - [anon_sym_API_DEPRECATED] = ACTIONS(1533), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1533), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1533), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1533), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1533), - [anon_sym___deprecated_msg] = ACTIONS(1533), - [anon_sym___deprecated_enum_msg] = ACTIONS(1533), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1533), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1533), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1533), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1533), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1533), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1533), - [anon_sym_ATimplementation] = ACTIONS(1535), - [anon_sym_typeof] = ACTIONS(1533), - [anon_sym___typeof] = ACTIONS(1533), - [anon_sym___typeof__] = ACTIONS(1533), - [sym_self] = ACTIONS(1533), - [sym_super] = ACTIONS(1533), - [sym_nil] = ACTIONS(1533), - [sym_id] = ACTIONS(1533), - [sym_instancetype] = ACTIONS(1533), - [sym_Class] = ACTIONS(1533), - [sym_SEL] = ACTIONS(1533), - [sym_IMP] = ACTIONS(1533), - [sym_BOOL] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_ATautoreleasepool] = ACTIONS(1535), - [anon_sym_ATsynchronized] = ACTIONS(1535), - [anon_sym_ATtry] = ACTIONS(1535), - [anon_sym_ATcatch] = ACTIONS(1535), - [anon_sym_ATfinally] = ACTIONS(1535), - [anon_sym_ATthrow] = ACTIONS(1535), - [anon_sym_ATselector] = ACTIONS(1535), - [anon_sym_ATencode] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(1533), - [sym_YES] = ACTIONS(1533), - [sym_NO] = ACTIONS(1533), - [anon_sym___builtin_available] = ACTIONS(1533), - [anon_sym_ATavailable] = ACTIONS(1535), - [anon_sym_va_arg] = ACTIONS(1533), + [anon_sym_POUNDimport] = ACTIONS(1595), + [anon_sym_ATimport] = ACTIONS(1595), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1597), + [anon_sym_ATcompatibility_alias] = ACTIONS(1595), + [anon_sym_ATprotocol] = ACTIONS(1595), + [anon_sym_ATclass] = ACTIONS(1595), + [anon_sym_ATinterface] = ACTIONS(1595), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1597), + [sym_method_attribute_specifier] = ACTIONS(1597), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1597), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1597), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1597), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1597), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1597), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1597), + [anon_sym_NS_AVAILABLE] = ACTIONS(1597), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1597), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1597), + [anon_sym_API_AVAILABLE] = ACTIONS(1597), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1597), + [anon_sym_API_DEPRECATED] = ACTIONS(1597), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1597), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1597), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1597), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1597), + [anon_sym___deprecated_msg] = ACTIONS(1597), + [anon_sym___deprecated_enum_msg] = ACTIONS(1597), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1597), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1597), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1597), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1597), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1597), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1597), + [anon_sym_ATimplementation] = ACTIONS(1595), + [anon_sym_NS_ENUM] = ACTIONS(1597), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1597), + [anon_sym_NS_OPTIONS] = ACTIONS(1597), + [anon_sym_typeof] = ACTIONS(1597), + [anon_sym___typeof] = ACTIONS(1597), + [anon_sym___typeof__] = ACTIONS(1597), + [sym_self] = ACTIONS(1597), + [sym_super] = ACTIONS(1597), + [sym_nil] = ACTIONS(1597), + [sym_id] = ACTIONS(1597), + [sym_instancetype] = ACTIONS(1597), + [sym_Class] = ACTIONS(1597), + [sym_SEL] = ACTIONS(1597), + [sym_IMP] = ACTIONS(1597), + [sym_BOOL] = ACTIONS(1597), + [sym_auto] = ACTIONS(1597), + [anon_sym_ATautoreleasepool] = ACTIONS(1595), + [anon_sym_ATsynchronized] = ACTIONS(1595), + [anon_sym_ATtry] = ACTIONS(1595), + [anon_sym_ATcatch] = ACTIONS(1595), + [anon_sym_ATfinally] = ACTIONS(1595), + [anon_sym_ATthrow] = ACTIONS(1595), + [anon_sym_ATselector] = ACTIONS(1595), + [anon_sym_ATencode] = ACTIONS(1595), + [anon_sym_AT] = ACTIONS(1597), + [sym_YES] = ACTIONS(1597), + [sym_NO] = ACTIONS(1597), + [anon_sym___builtin_available] = ACTIONS(1597), + [anon_sym_ATavailable] = ACTIONS(1595), + [anon_sym_va_arg] = ACTIONS(1597), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -69145,706 +69174,706 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [247] = { - [ts_builtin_sym_end] = ACTIONS(1531), - [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_include_token1] = ACTIONS(1531), - [aux_sym_preproc_def_token1] = ACTIONS(1531), - [anon_sym_RPAREN] = ACTIONS(1531), - [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_CARET] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym___cdecl] = ACTIONS(1529), - [anon_sym___clrcall] = ACTIONS(1529), - [anon_sym___stdcall] = ACTIONS(1529), - [anon_sym___fastcall] = ACTIONS(1529), - [anon_sym___thiscall] = ACTIONS(1529), - [anon_sym___vectorcall] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_auto] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym_in] = ACTIONS(1529), - [anon_sym_out] = ACTIONS(1529), - [anon_sym_inout] = ACTIONS(1529), - [anon_sym_bycopy] = ACTIONS(1529), - [anon_sym_byref] = ACTIONS(1529), - [anon_sym_oneway] = ACTIONS(1529), - [anon_sym__Nullable] = ACTIONS(1529), - [anon_sym__Nonnull] = ACTIONS(1529), - [anon_sym__Nullable_result] = ACTIONS(1529), - [anon_sym__Null_unspecified] = ACTIONS(1529), - [anon_sym___autoreleasing] = ACTIONS(1529), - [anon_sym___nullable] = ACTIONS(1529), - [anon_sym___nonnull] = ACTIONS(1529), - [anon_sym___strong] = ACTIONS(1529), - [anon_sym___weak] = ACTIONS(1529), - [anon_sym___bridge] = ACTIONS(1529), - [anon_sym___bridge_transfer] = ACTIONS(1529), - [anon_sym___bridge_retained] = ACTIONS(1529), - [anon_sym___unsafe_unretained] = ACTIONS(1529), - [anon_sym___block] = ACTIONS(1529), - [anon_sym___kindof] = ACTIONS(1529), - [anon_sym___unused] = ACTIONS(1529), - [anon_sym__Complex] = ACTIONS(1529), - [anon_sym___complex] = ACTIONS(1529), - [anon_sym_IBOutlet] = ACTIONS(1529), - [anon_sym_IBInspectable] = ACTIONS(1529), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1529), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_NS_ENUM] = ACTIONS(1529), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1529), - [anon_sym_NS_OPTIONS] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_else] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_case] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_goto] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_sizeof] = ACTIONS(1529), - [sym_number_literal] = ACTIONS(1531), - [anon_sym_L_SQUOTE] = ACTIONS(1531), - [anon_sym_u_SQUOTE] = ACTIONS(1531), - [anon_sym_U_SQUOTE] = ACTIONS(1531), - [anon_sym_u8_SQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1529), - [sym_false] = ACTIONS(1529), - [sym_null] = ACTIONS(1529), + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_include_token1] = ACTIONS(1485), + [aux_sym_preproc_def_token1] = ACTIONS(1485), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token2] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), + [aux_sym_preproc_else_token1] = ACTIONS(1488), + [aux_sym_preproc_elif_token1] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1485), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_out] = ACTIONS(1488), + [anon_sym_inout] = ACTIONS(1488), + [anon_sym_bycopy] = ACTIONS(1488), + [anon_sym_byref] = ACTIONS(1488), + [anon_sym_oneway] = ACTIONS(1488), + [anon_sym__Nullable] = ACTIONS(1488), + [anon_sym__Nonnull] = ACTIONS(1488), + [anon_sym__Nullable_result] = ACTIONS(1488), + [anon_sym__Null_unspecified] = ACTIONS(1488), + [anon_sym___autoreleasing] = ACTIONS(1488), + [anon_sym___nullable] = ACTIONS(1488), + [anon_sym___nonnull] = ACTIONS(1488), + [anon_sym___strong] = ACTIONS(1488), + [anon_sym___weak] = ACTIONS(1488), + [anon_sym___bridge] = ACTIONS(1488), + [anon_sym___bridge_transfer] = ACTIONS(1488), + [anon_sym___bridge_retained] = ACTIONS(1488), + [anon_sym___unsafe_unretained] = ACTIONS(1488), + [anon_sym___block] = ACTIONS(1488), + [anon_sym___kindof] = ACTIONS(1488), + [anon_sym___unused] = ACTIONS(1488), + [anon_sym__Complex] = ACTIONS(1488), + [anon_sym___complex] = ACTIONS(1488), + [anon_sym_IBOutlet] = ACTIONS(1488), + [anon_sym_IBInspectable] = ACTIONS(1488), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1488), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_else] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1488), + [sym_number_literal] = ACTIONS(1485), + [anon_sym_L_SQUOTE] = ACTIONS(1485), + [anon_sym_u_SQUOTE] = ACTIONS(1485), + [anon_sym_U_SQUOTE] = ACTIONS(1485), + [anon_sym_u8_SQUOTE] = ACTIONS(1485), + [anon_sym_SQUOTE] = ACTIONS(1485), + [anon_sym_L_DQUOTE] = ACTIONS(1485), + [anon_sym_u_DQUOTE] = ACTIONS(1485), + [anon_sym_U_DQUOTE] = ACTIONS(1485), + [anon_sym_u8_DQUOTE] = ACTIONS(1485), + [anon_sym_DQUOTE] = ACTIONS(1485), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [sym_null] = ACTIONS(1488), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1531), - [anon_sym_ATimport] = ACTIONS(1531), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1529), - [anon_sym_ATcompatibility_alias] = ACTIONS(1531), - [anon_sym_ATprotocol] = ACTIONS(1531), - [anon_sym_ATclass] = ACTIONS(1531), - [anon_sym_ATinterface] = ACTIONS(1531), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1529), - [sym_method_attribute_specifier] = ACTIONS(1529), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1529), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1529), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1529), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1529), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1529), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1529), - [anon_sym_NS_AVAILABLE] = ACTIONS(1529), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1529), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1529), - [anon_sym_API_AVAILABLE] = ACTIONS(1529), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1529), - [anon_sym_API_DEPRECATED] = ACTIONS(1529), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1529), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1529), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1529), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1529), - [anon_sym___deprecated_msg] = ACTIONS(1529), - [anon_sym___deprecated_enum_msg] = ACTIONS(1529), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1529), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1529), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1529), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1529), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1529), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1529), - [anon_sym_ATimplementation] = ACTIONS(1531), - [anon_sym_typeof] = ACTIONS(1529), - [anon_sym___typeof] = ACTIONS(1529), - [anon_sym___typeof__] = ACTIONS(1529), - [sym_self] = ACTIONS(1529), - [sym_super] = ACTIONS(1529), - [sym_nil] = ACTIONS(1529), - [sym_id] = ACTIONS(1529), - [sym_instancetype] = ACTIONS(1529), - [sym_Class] = ACTIONS(1529), - [sym_SEL] = ACTIONS(1529), - [sym_IMP] = ACTIONS(1529), - [sym_BOOL] = ACTIONS(1529), - [sym_auto] = ACTIONS(1529), - [anon_sym_ATautoreleasepool] = ACTIONS(1531), - [anon_sym_ATsynchronized] = ACTIONS(1531), - [anon_sym_ATtry] = ACTIONS(1531), - [anon_sym_ATcatch] = ACTIONS(1531), - [anon_sym_ATfinally] = ACTIONS(1531), - [anon_sym_ATthrow] = ACTIONS(1531), - [anon_sym_ATselector] = ACTIONS(1531), - [anon_sym_ATencode] = ACTIONS(1531), - [anon_sym_AT] = ACTIONS(1529), - [sym_YES] = ACTIONS(1529), - [sym_NO] = ACTIONS(1529), - [anon_sym___builtin_available] = ACTIONS(1529), - [anon_sym_ATavailable] = ACTIONS(1531), - [anon_sym_va_arg] = ACTIONS(1529), + [anon_sym_POUNDimport] = ACTIONS(1485), + [anon_sym_ATimport] = ACTIONS(1485), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1488), + [anon_sym_ATcompatibility_alias] = ACTIONS(1485), + [anon_sym_ATprotocol] = ACTIONS(1485), + [anon_sym_ATclass] = ACTIONS(1485), + [anon_sym_ATinterface] = ACTIONS(1485), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1488), + [sym_method_attribute_specifier] = ACTIONS(1488), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1488), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1488), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1488), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1488), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1488), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1488), + [anon_sym_NS_AVAILABLE] = ACTIONS(1488), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1488), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1488), + [anon_sym_API_AVAILABLE] = ACTIONS(1488), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1488), + [anon_sym_API_DEPRECATED] = ACTIONS(1488), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1488), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1488), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1488), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1488), + [anon_sym___deprecated_msg] = ACTIONS(1488), + [anon_sym___deprecated_enum_msg] = ACTIONS(1488), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1488), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1488), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1488), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1488), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1488), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1488), + [anon_sym_ATimplementation] = ACTIONS(1485), + [anon_sym_NS_ENUM] = ACTIONS(1488), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1488), + [anon_sym_NS_OPTIONS] = ACTIONS(1488), + [anon_sym_typeof] = ACTIONS(1488), + [anon_sym___typeof] = ACTIONS(1488), + [anon_sym___typeof__] = ACTIONS(1488), + [sym_self] = ACTIONS(1488), + [sym_super] = ACTIONS(1488), + [sym_nil] = ACTIONS(1488), + [sym_id] = ACTIONS(1488), + [sym_instancetype] = ACTIONS(1488), + [sym_Class] = ACTIONS(1488), + [sym_SEL] = ACTIONS(1488), + [sym_IMP] = ACTIONS(1488), + [sym_BOOL] = ACTIONS(1488), + [sym_auto] = ACTIONS(1488), + [anon_sym_ATautoreleasepool] = ACTIONS(1485), + [anon_sym_ATsynchronized] = ACTIONS(1485), + [anon_sym_ATtry] = ACTIONS(1485), + [anon_sym_ATcatch] = ACTIONS(1485), + [anon_sym_ATfinally] = ACTIONS(1485), + [anon_sym_ATthrow] = ACTIONS(1485), + [anon_sym_ATselector] = ACTIONS(1485), + [anon_sym_ATencode] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(1488), + [sym_YES] = ACTIONS(1488), + [sym_NO] = ACTIONS(1488), + [anon_sym___builtin_available] = ACTIONS(1488), + [anon_sym_ATavailable] = ACTIONS(1485), + [anon_sym_va_arg] = ACTIONS(1488), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, [248] = { - [ts_builtin_sym_end] = ACTIONS(1527), - [sym_identifier] = ACTIONS(1525), - [aux_sym_preproc_include_token1] = ACTIONS(1527), - [aux_sym_preproc_def_token1] = ACTIONS(1527), - [anon_sym_RPAREN] = ACTIONS(1527), - [aux_sym_preproc_if_token1] = ACTIONS(1525), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1525), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1525), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_typedef] = ACTIONS(1525), - [anon_sym_extern] = ACTIONS(1525), - [anon_sym___attribute] = ACTIONS(1525), - [anon_sym___attribute__] = ACTIONS(1525), - [anon_sym___declspec] = ACTIONS(1525), - [anon_sym___cdecl] = ACTIONS(1525), - [anon_sym___clrcall] = ACTIONS(1525), - [anon_sym___stdcall] = ACTIONS(1525), - [anon_sym___fastcall] = ACTIONS(1525), - [anon_sym___thiscall] = ACTIONS(1525), - [anon_sym___vectorcall] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1527), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(1525), - [anon_sym_auto] = ACTIONS(1525), - [anon_sym_register] = ACTIONS(1525), - [anon_sym_inline] = ACTIONS(1525), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1525), - [anon_sym_const] = ACTIONS(1525), - [anon_sym_volatile] = ACTIONS(1525), - [anon_sym_restrict] = ACTIONS(1525), - [anon_sym__Atomic] = ACTIONS(1525), - [anon_sym_in] = ACTIONS(1525), - [anon_sym_out] = ACTIONS(1525), - [anon_sym_inout] = ACTIONS(1525), - [anon_sym_bycopy] = ACTIONS(1525), - [anon_sym_byref] = ACTIONS(1525), - [anon_sym_oneway] = ACTIONS(1525), - [anon_sym__Nullable] = ACTIONS(1525), - [anon_sym__Nonnull] = ACTIONS(1525), - [anon_sym__Nullable_result] = ACTIONS(1525), - [anon_sym__Null_unspecified] = ACTIONS(1525), - [anon_sym___autoreleasing] = ACTIONS(1525), - [anon_sym___nullable] = ACTIONS(1525), - [anon_sym___nonnull] = ACTIONS(1525), - [anon_sym___strong] = ACTIONS(1525), - [anon_sym___weak] = ACTIONS(1525), - [anon_sym___bridge] = ACTIONS(1525), - [anon_sym___bridge_transfer] = ACTIONS(1525), - [anon_sym___bridge_retained] = ACTIONS(1525), - [anon_sym___unsafe_unretained] = ACTIONS(1525), - [anon_sym___block] = ACTIONS(1525), - [anon_sym___kindof] = ACTIONS(1525), - [anon_sym___unused] = ACTIONS(1525), - [anon_sym__Complex] = ACTIONS(1525), - [anon_sym___complex] = ACTIONS(1525), - [anon_sym_IBOutlet] = ACTIONS(1525), - [anon_sym_IBInspectable] = ACTIONS(1525), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1525), - [anon_sym_signed] = ACTIONS(1525), - [anon_sym_unsigned] = ACTIONS(1525), - [anon_sym_long] = ACTIONS(1525), - [anon_sym_short] = ACTIONS(1525), - [sym_primitive_type] = ACTIONS(1525), - [anon_sym_enum] = ACTIONS(1525), - [anon_sym_NS_ENUM] = ACTIONS(1525), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1525), - [anon_sym_NS_OPTIONS] = ACTIONS(1525), - [anon_sym_struct] = ACTIONS(1525), - [anon_sym_union] = ACTIONS(1525), - [anon_sym_if] = ACTIONS(1525), - [anon_sym_else] = ACTIONS(1525), - [anon_sym_switch] = ACTIONS(1525), - [anon_sym_case] = ACTIONS(1525), - [anon_sym_default] = ACTIONS(1525), - [anon_sym_while] = ACTIONS(1525), - [anon_sym_do] = ACTIONS(1525), - [anon_sym_for] = ACTIONS(1525), - [anon_sym_return] = ACTIONS(1525), - [anon_sym_break] = ACTIONS(1525), - [anon_sym_continue] = ACTIONS(1525), - [anon_sym_goto] = ACTIONS(1525), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1527), - [anon_sym_u_SQUOTE] = ACTIONS(1527), - [anon_sym_U_SQUOTE] = ACTIONS(1527), - [anon_sym_u8_SQUOTE] = ACTIONS(1527), - [anon_sym_SQUOTE] = ACTIONS(1527), - [anon_sym_L_DQUOTE] = ACTIONS(1527), - [anon_sym_u_DQUOTE] = ACTIONS(1527), - [anon_sym_U_DQUOTE] = ACTIONS(1527), - [anon_sym_u8_DQUOTE] = ACTIONS(1527), - [anon_sym_DQUOTE] = ACTIONS(1527), - [sym_true] = ACTIONS(1525), - [sym_false] = ACTIONS(1525), - [sym_null] = ACTIONS(1525), + [sym_identifier] = ACTIONS(1493), + [aux_sym_preproc_include_token1] = ACTIONS(1491), + [aux_sym_preproc_def_token1] = ACTIONS(1491), + [aux_sym_preproc_if_token1] = ACTIONS(1493), + [aux_sym_preproc_if_token2] = ACTIONS(1493), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1493), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1493), + [aux_sym_preproc_else_token1] = ACTIONS(1493), + [aux_sym_preproc_elif_token1] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(1491), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_typedef] = ACTIONS(1493), + [anon_sym_extern] = ACTIONS(1493), + [anon_sym___attribute] = ACTIONS(1493), + [anon_sym___attribute__] = ACTIONS(1493), + [anon_sym___declspec] = ACTIONS(1493), + [anon_sym___cdecl] = ACTIONS(1493), + [anon_sym___clrcall] = ACTIONS(1493), + [anon_sym___stdcall] = ACTIONS(1493), + [anon_sym___fastcall] = ACTIONS(1493), + [anon_sym___thiscall] = ACTIONS(1493), + [anon_sym___vectorcall] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_auto] = ACTIONS(1493), + [anon_sym_register] = ACTIONS(1493), + [anon_sym_inline] = ACTIONS(1493), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_volatile] = ACTIONS(1493), + [anon_sym_restrict] = ACTIONS(1493), + [anon_sym__Atomic] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_out] = ACTIONS(1493), + [anon_sym_inout] = ACTIONS(1493), + [anon_sym_bycopy] = ACTIONS(1493), + [anon_sym_byref] = ACTIONS(1493), + [anon_sym_oneway] = ACTIONS(1493), + [anon_sym__Nullable] = ACTIONS(1493), + [anon_sym__Nonnull] = ACTIONS(1493), + [anon_sym__Nullable_result] = ACTIONS(1493), + [anon_sym__Null_unspecified] = ACTIONS(1493), + [anon_sym___autoreleasing] = ACTIONS(1493), + [anon_sym___nullable] = ACTIONS(1493), + [anon_sym___nonnull] = ACTIONS(1493), + [anon_sym___strong] = ACTIONS(1493), + [anon_sym___weak] = ACTIONS(1493), + [anon_sym___bridge] = ACTIONS(1493), + [anon_sym___bridge_transfer] = ACTIONS(1493), + [anon_sym___bridge_retained] = ACTIONS(1493), + [anon_sym___unsafe_unretained] = ACTIONS(1493), + [anon_sym___block] = ACTIONS(1493), + [anon_sym___kindof] = ACTIONS(1493), + [anon_sym___unused] = ACTIONS(1493), + [anon_sym__Complex] = ACTIONS(1493), + [anon_sym___complex] = ACTIONS(1493), + [anon_sym_IBOutlet] = ACTIONS(1493), + [anon_sym_IBInspectable] = ACTIONS(1493), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1493), + [anon_sym_signed] = ACTIONS(1493), + [anon_sym_unsigned] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [sym_primitive_type] = ACTIONS(1493), + [anon_sym_enum] = ACTIONS(1493), + [anon_sym_struct] = ACTIONS(1493), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_else] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_case] = ACTIONS(1493), + [anon_sym_default] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_goto] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [sym_number_literal] = ACTIONS(1491), + [anon_sym_L_SQUOTE] = ACTIONS(1491), + [anon_sym_u_SQUOTE] = ACTIONS(1491), + [anon_sym_U_SQUOTE] = ACTIONS(1491), + [anon_sym_u8_SQUOTE] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_L_DQUOTE] = ACTIONS(1491), + [anon_sym_u_DQUOTE] = ACTIONS(1491), + [anon_sym_U_DQUOTE] = ACTIONS(1491), + [anon_sym_u8_DQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [sym_true] = ACTIONS(1493), + [sym_false] = ACTIONS(1493), + [sym_null] = ACTIONS(1493), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1527), - [anon_sym_ATimport] = ACTIONS(1527), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1525), - [anon_sym_ATcompatibility_alias] = ACTIONS(1527), - [anon_sym_ATprotocol] = ACTIONS(1527), - [anon_sym_ATclass] = ACTIONS(1527), - [anon_sym_ATinterface] = ACTIONS(1527), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1525), - [sym_method_attribute_specifier] = ACTIONS(1525), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1525), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1525), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1525), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1525), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1525), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1525), - [anon_sym_NS_AVAILABLE] = ACTIONS(1525), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1525), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1525), - [anon_sym_API_AVAILABLE] = ACTIONS(1525), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1525), - [anon_sym_API_DEPRECATED] = ACTIONS(1525), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1525), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1525), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1525), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1525), - [anon_sym___deprecated_msg] = ACTIONS(1525), - [anon_sym___deprecated_enum_msg] = ACTIONS(1525), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1525), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1525), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1525), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1525), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1525), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1525), - [anon_sym_ATimplementation] = ACTIONS(1527), - [anon_sym_typeof] = ACTIONS(1525), - [anon_sym___typeof] = ACTIONS(1525), - [anon_sym___typeof__] = ACTIONS(1525), - [sym_self] = ACTIONS(1525), - [sym_super] = ACTIONS(1525), - [sym_nil] = ACTIONS(1525), - [sym_id] = ACTIONS(1525), - [sym_instancetype] = ACTIONS(1525), - [sym_Class] = ACTIONS(1525), - [sym_SEL] = ACTIONS(1525), - [sym_IMP] = ACTIONS(1525), - [sym_BOOL] = ACTIONS(1525), - [sym_auto] = ACTIONS(1525), - [anon_sym_ATautoreleasepool] = ACTIONS(1527), - [anon_sym_ATsynchronized] = ACTIONS(1527), - [anon_sym_ATtry] = ACTIONS(1527), - [anon_sym_ATcatch] = ACTIONS(1527), - [anon_sym_ATfinally] = ACTIONS(1527), - [anon_sym_ATthrow] = ACTIONS(1527), - [anon_sym_ATselector] = ACTIONS(1527), - [anon_sym_ATencode] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(1525), - [sym_YES] = ACTIONS(1525), - [sym_NO] = ACTIONS(1525), - [anon_sym___builtin_available] = ACTIONS(1525), - [anon_sym_ATavailable] = ACTIONS(1527), - [anon_sym_va_arg] = ACTIONS(1525), + [anon_sym_POUNDimport] = ACTIONS(1491), + [anon_sym_ATimport] = ACTIONS(1491), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1493), + [anon_sym_ATcompatibility_alias] = ACTIONS(1491), + [anon_sym_ATprotocol] = ACTIONS(1491), + [anon_sym_ATclass] = ACTIONS(1491), + [anon_sym_ATinterface] = ACTIONS(1491), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1493), + [sym_method_attribute_specifier] = ACTIONS(1493), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1493), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1493), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1493), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1493), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1493), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1493), + [anon_sym_NS_AVAILABLE] = ACTIONS(1493), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1493), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1493), + [anon_sym_API_AVAILABLE] = ACTIONS(1493), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1493), + [anon_sym_API_DEPRECATED] = ACTIONS(1493), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1493), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1493), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1493), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1493), + [anon_sym___deprecated_msg] = ACTIONS(1493), + [anon_sym___deprecated_enum_msg] = ACTIONS(1493), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1493), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1493), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1493), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1493), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1493), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1493), + [anon_sym_ATimplementation] = ACTIONS(1491), + [anon_sym_NS_ENUM] = ACTIONS(1493), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1493), + [anon_sym_NS_OPTIONS] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1493), + [anon_sym___typeof] = ACTIONS(1493), + [anon_sym___typeof__] = ACTIONS(1493), + [sym_self] = ACTIONS(1493), + [sym_super] = ACTIONS(1493), + [sym_nil] = ACTIONS(1493), + [sym_id] = ACTIONS(1493), + [sym_instancetype] = ACTIONS(1493), + [sym_Class] = ACTIONS(1493), + [sym_SEL] = ACTIONS(1493), + [sym_IMP] = ACTIONS(1493), + [sym_BOOL] = ACTIONS(1493), + [sym_auto] = ACTIONS(1493), + [anon_sym_ATautoreleasepool] = ACTIONS(1491), + [anon_sym_ATsynchronized] = ACTIONS(1491), + [anon_sym_ATtry] = ACTIONS(1491), + [anon_sym_ATcatch] = ACTIONS(1491), + [anon_sym_ATfinally] = ACTIONS(1491), + [anon_sym_ATthrow] = ACTIONS(1491), + [anon_sym_ATselector] = ACTIONS(1491), + [anon_sym_ATencode] = ACTIONS(1491), + [anon_sym_AT] = ACTIONS(1493), + [sym_YES] = ACTIONS(1493), + [sym_NO] = ACTIONS(1493), + [anon_sym___builtin_available] = ACTIONS(1493), + [anon_sym_ATavailable] = ACTIONS(1491), + [anon_sym_va_arg] = ACTIONS(1493), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, [249] = { - [ts_builtin_sym_end] = ACTIONS(1523), - [sym_identifier] = ACTIONS(1521), - [aux_sym_preproc_include_token1] = ACTIONS(1523), - [aux_sym_preproc_def_token1] = ACTIONS(1523), - [anon_sym_RPAREN] = ACTIONS(1523), - [aux_sym_preproc_if_token1] = ACTIONS(1521), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1521), - [anon_sym_LPAREN2] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_TILDE] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_CARET] = ACTIONS(1523), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1523), - [anon_sym_typedef] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(1521), - [anon_sym___attribute] = ACTIONS(1521), - [anon_sym___attribute__] = ACTIONS(1521), - [anon_sym___declspec] = ACTIONS(1521), - [anon_sym___cdecl] = ACTIONS(1521), - [anon_sym___clrcall] = ACTIONS(1521), - [anon_sym___stdcall] = ACTIONS(1521), - [anon_sym___fastcall] = ACTIONS(1521), - [anon_sym___thiscall] = ACTIONS(1521), - [anon_sym___vectorcall] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_RBRACE] = ACTIONS(1523), - [anon_sym_LBRACK] = ACTIONS(1523), - [anon_sym_static] = ACTIONS(1521), - [anon_sym_auto] = ACTIONS(1521), - [anon_sym_register] = ACTIONS(1521), - [anon_sym_inline] = ACTIONS(1521), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1521), - [anon_sym_volatile] = ACTIONS(1521), - [anon_sym_restrict] = ACTIONS(1521), - [anon_sym__Atomic] = ACTIONS(1521), - [anon_sym_in] = ACTIONS(1521), - [anon_sym_out] = ACTIONS(1521), - [anon_sym_inout] = ACTIONS(1521), - [anon_sym_bycopy] = ACTIONS(1521), - [anon_sym_byref] = ACTIONS(1521), - [anon_sym_oneway] = ACTIONS(1521), - [anon_sym__Nullable] = ACTIONS(1521), - [anon_sym__Nonnull] = ACTIONS(1521), - [anon_sym__Nullable_result] = ACTIONS(1521), - [anon_sym__Null_unspecified] = ACTIONS(1521), - [anon_sym___autoreleasing] = ACTIONS(1521), - [anon_sym___nullable] = ACTIONS(1521), - [anon_sym___nonnull] = ACTIONS(1521), - [anon_sym___strong] = ACTIONS(1521), - [anon_sym___weak] = ACTIONS(1521), - [anon_sym___bridge] = ACTIONS(1521), - [anon_sym___bridge_transfer] = ACTIONS(1521), - [anon_sym___bridge_retained] = ACTIONS(1521), - [anon_sym___unsafe_unretained] = ACTIONS(1521), - [anon_sym___block] = ACTIONS(1521), - [anon_sym___kindof] = ACTIONS(1521), - [anon_sym___unused] = ACTIONS(1521), - [anon_sym__Complex] = ACTIONS(1521), - [anon_sym___complex] = ACTIONS(1521), - [anon_sym_IBOutlet] = ACTIONS(1521), - [anon_sym_IBInspectable] = ACTIONS(1521), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1521), - [anon_sym_signed] = ACTIONS(1521), - [anon_sym_unsigned] = ACTIONS(1521), - [anon_sym_long] = ACTIONS(1521), - [anon_sym_short] = ACTIONS(1521), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_enum] = ACTIONS(1521), - [anon_sym_NS_ENUM] = ACTIONS(1521), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1521), - [anon_sym_NS_OPTIONS] = ACTIONS(1521), - [anon_sym_struct] = ACTIONS(1521), - [anon_sym_union] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1521), - [anon_sym_else] = ACTIONS(1521), - [anon_sym_switch] = ACTIONS(1521), - [anon_sym_case] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(1521), - [anon_sym_while] = ACTIONS(1521), - [anon_sym_do] = ACTIONS(1521), - [anon_sym_for] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1521), - [anon_sym_continue] = ACTIONS(1521), - [anon_sym_goto] = ACTIONS(1521), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1521), - [sym_number_literal] = ACTIONS(1523), - [anon_sym_L_SQUOTE] = ACTIONS(1523), - [anon_sym_u_SQUOTE] = ACTIONS(1523), - [anon_sym_U_SQUOTE] = ACTIONS(1523), - [anon_sym_u8_SQUOTE] = ACTIONS(1523), - [anon_sym_SQUOTE] = ACTIONS(1523), - [anon_sym_L_DQUOTE] = ACTIONS(1523), - [anon_sym_u_DQUOTE] = ACTIONS(1523), - [anon_sym_U_DQUOTE] = ACTIONS(1523), - [anon_sym_u8_DQUOTE] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1523), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), + [sym_identifier] = ACTIONS(1497), + [aux_sym_preproc_include_token1] = ACTIONS(1495), + [aux_sym_preproc_def_token1] = ACTIONS(1495), + [aux_sym_preproc_if_token1] = ACTIONS(1497), + [aux_sym_preproc_if_token2] = ACTIONS(1497), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1497), + [aux_sym_preproc_else_token1] = ACTIONS(1497), + [aux_sym_preproc_elif_token1] = ACTIONS(1497), + [anon_sym_LPAREN2] = ACTIONS(1495), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_typedef] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(1497), + [anon_sym___attribute] = ACTIONS(1497), + [anon_sym___attribute__] = ACTIONS(1497), + [anon_sym___declspec] = ACTIONS(1497), + [anon_sym___cdecl] = ACTIONS(1497), + [anon_sym___clrcall] = ACTIONS(1497), + [anon_sym___stdcall] = ACTIONS(1497), + [anon_sym___fastcall] = ACTIONS(1497), + [anon_sym___thiscall] = ACTIONS(1497), + [anon_sym___vectorcall] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1495), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_auto] = ACTIONS(1497), + [anon_sym_register] = ACTIONS(1497), + [anon_sym_inline] = ACTIONS(1497), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_volatile] = ACTIONS(1497), + [anon_sym_restrict] = ACTIONS(1497), + [anon_sym__Atomic] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_out] = ACTIONS(1497), + [anon_sym_inout] = ACTIONS(1497), + [anon_sym_bycopy] = ACTIONS(1497), + [anon_sym_byref] = ACTIONS(1497), + [anon_sym_oneway] = ACTIONS(1497), + [anon_sym__Nullable] = ACTIONS(1497), + [anon_sym__Nonnull] = ACTIONS(1497), + [anon_sym__Nullable_result] = ACTIONS(1497), + [anon_sym__Null_unspecified] = ACTIONS(1497), + [anon_sym___autoreleasing] = ACTIONS(1497), + [anon_sym___nullable] = ACTIONS(1497), + [anon_sym___nonnull] = ACTIONS(1497), + [anon_sym___strong] = ACTIONS(1497), + [anon_sym___weak] = ACTIONS(1497), + [anon_sym___bridge] = ACTIONS(1497), + [anon_sym___bridge_transfer] = ACTIONS(1497), + [anon_sym___bridge_retained] = ACTIONS(1497), + [anon_sym___unsafe_unretained] = ACTIONS(1497), + [anon_sym___block] = ACTIONS(1497), + [anon_sym___kindof] = ACTIONS(1497), + [anon_sym___unused] = ACTIONS(1497), + [anon_sym__Complex] = ACTIONS(1497), + [anon_sym___complex] = ACTIONS(1497), + [anon_sym_IBOutlet] = ACTIONS(1497), + [anon_sym_IBInspectable] = ACTIONS(1497), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1497), + [anon_sym_signed] = ACTIONS(1497), + [anon_sym_unsigned] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [sym_primitive_type] = ACTIONS(1497), + [anon_sym_enum] = ACTIONS(1497), + [anon_sym_struct] = ACTIONS(1497), + [anon_sym_union] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_else] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_case] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_goto] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(1497), + [sym_number_literal] = ACTIONS(1495), + [anon_sym_L_SQUOTE] = ACTIONS(1495), + [anon_sym_u_SQUOTE] = ACTIONS(1495), + [anon_sym_U_SQUOTE] = ACTIONS(1495), + [anon_sym_u8_SQUOTE] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_L_DQUOTE] = ACTIONS(1495), + [anon_sym_u_DQUOTE] = ACTIONS(1495), + [anon_sym_U_DQUOTE] = ACTIONS(1495), + [anon_sym_u8_DQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [sym_true] = ACTIONS(1497), + [sym_false] = ACTIONS(1497), + [sym_null] = ACTIONS(1497), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1523), - [anon_sym_ATimport] = ACTIONS(1523), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1521), - [anon_sym_ATcompatibility_alias] = ACTIONS(1523), - [anon_sym_ATprotocol] = ACTIONS(1523), - [anon_sym_ATclass] = ACTIONS(1523), - [anon_sym_ATinterface] = ACTIONS(1523), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1521), - [sym_method_attribute_specifier] = ACTIONS(1521), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1521), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1521), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1521), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1521), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1521), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1521), - [anon_sym_NS_AVAILABLE] = ACTIONS(1521), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1521), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1521), - [anon_sym_API_AVAILABLE] = ACTIONS(1521), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1521), - [anon_sym_API_DEPRECATED] = ACTIONS(1521), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1521), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1521), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1521), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1521), - [anon_sym___deprecated_msg] = ACTIONS(1521), - [anon_sym___deprecated_enum_msg] = ACTIONS(1521), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1521), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1521), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1521), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1521), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1521), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1521), - [anon_sym_ATimplementation] = ACTIONS(1523), - [anon_sym_typeof] = ACTIONS(1521), - [anon_sym___typeof] = ACTIONS(1521), - [anon_sym___typeof__] = ACTIONS(1521), - [sym_self] = ACTIONS(1521), - [sym_super] = ACTIONS(1521), - [sym_nil] = ACTIONS(1521), - [sym_id] = ACTIONS(1521), - [sym_instancetype] = ACTIONS(1521), - [sym_Class] = ACTIONS(1521), - [sym_SEL] = ACTIONS(1521), - [sym_IMP] = ACTIONS(1521), - [sym_BOOL] = ACTIONS(1521), - [sym_auto] = ACTIONS(1521), - [anon_sym_ATautoreleasepool] = ACTIONS(1523), - [anon_sym_ATsynchronized] = ACTIONS(1523), - [anon_sym_ATtry] = ACTIONS(1523), - [anon_sym_ATcatch] = ACTIONS(1523), - [anon_sym_ATfinally] = ACTIONS(1523), - [anon_sym_ATthrow] = ACTIONS(1523), - [anon_sym_ATselector] = ACTIONS(1523), - [anon_sym_ATencode] = ACTIONS(1523), - [anon_sym_AT] = ACTIONS(1521), - [sym_YES] = ACTIONS(1521), - [sym_NO] = ACTIONS(1521), - [anon_sym___builtin_available] = ACTIONS(1521), - [anon_sym_ATavailable] = ACTIONS(1523), - [anon_sym_va_arg] = ACTIONS(1521), + [anon_sym_POUNDimport] = ACTIONS(1495), + [anon_sym_ATimport] = ACTIONS(1495), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1497), + [anon_sym_ATcompatibility_alias] = ACTIONS(1495), + [anon_sym_ATprotocol] = ACTIONS(1495), + [anon_sym_ATclass] = ACTIONS(1495), + [anon_sym_ATinterface] = ACTIONS(1495), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1497), + [sym_method_attribute_specifier] = ACTIONS(1497), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1497), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1497), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1497), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1497), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1497), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1497), + [anon_sym_NS_AVAILABLE] = ACTIONS(1497), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1497), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1497), + [anon_sym_API_AVAILABLE] = ACTIONS(1497), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1497), + [anon_sym_API_DEPRECATED] = ACTIONS(1497), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1497), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1497), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1497), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1497), + [anon_sym___deprecated_msg] = ACTIONS(1497), + [anon_sym___deprecated_enum_msg] = ACTIONS(1497), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1497), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1497), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1497), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1497), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1497), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1497), + [anon_sym_ATimplementation] = ACTIONS(1495), + [anon_sym_NS_ENUM] = ACTIONS(1497), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1497), + [anon_sym_NS_OPTIONS] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym___typeof] = ACTIONS(1497), + [anon_sym___typeof__] = ACTIONS(1497), + [sym_self] = ACTIONS(1497), + [sym_super] = ACTIONS(1497), + [sym_nil] = ACTIONS(1497), + [sym_id] = ACTIONS(1497), + [sym_instancetype] = ACTIONS(1497), + [sym_Class] = ACTIONS(1497), + [sym_SEL] = ACTIONS(1497), + [sym_IMP] = ACTIONS(1497), + [sym_BOOL] = ACTIONS(1497), + [sym_auto] = ACTIONS(1497), + [anon_sym_ATautoreleasepool] = ACTIONS(1495), + [anon_sym_ATsynchronized] = ACTIONS(1495), + [anon_sym_ATtry] = ACTIONS(1495), + [anon_sym_ATcatch] = ACTIONS(1495), + [anon_sym_ATfinally] = ACTIONS(1495), + [anon_sym_ATthrow] = ACTIONS(1495), + [anon_sym_ATselector] = ACTIONS(1495), + [anon_sym_ATencode] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1497), + [sym_YES] = ACTIONS(1497), + [sym_NO] = ACTIONS(1497), + [anon_sym___builtin_available] = ACTIONS(1497), + [anon_sym_ATavailable] = ACTIONS(1495), + [anon_sym_va_arg] = ACTIONS(1497), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, [250] = { - [ts_builtin_sym_end] = ACTIONS(1519), - [sym_identifier] = ACTIONS(1517), - [aux_sym_preproc_include_token1] = ACTIONS(1519), - [aux_sym_preproc_def_token1] = ACTIONS(1519), - [anon_sym_RPAREN] = ACTIONS(1519), - [aux_sym_preproc_if_token1] = ACTIONS(1517), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1517), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1517), - [anon_sym_LPAREN2] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_TILDE] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_CARET] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_typedef] = ACTIONS(1517), - [anon_sym_extern] = ACTIONS(1517), - [anon_sym___attribute] = ACTIONS(1517), - [anon_sym___attribute__] = ACTIONS(1517), - [anon_sym___declspec] = ACTIONS(1517), - [anon_sym___cdecl] = ACTIONS(1517), - [anon_sym___clrcall] = ACTIONS(1517), - [anon_sym___stdcall] = ACTIONS(1517), - [anon_sym___fastcall] = ACTIONS(1517), - [anon_sym___thiscall] = ACTIONS(1517), - [anon_sym___vectorcall] = ACTIONS(1517), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_static] = ACTIONS(1517), - [anon_sym_auto] = ACTIONS(1517), - [anon_sym_register] = ACTIONS(1517), - [anon_sym_inline] = ACTIONS(1517), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [anon_sym_volatile] = ACTIONS(1517), - [anon_sym_restrict] = ACTIONS(1517), - [anon_sym__Atomic] = ACTIONS(1517), - [anon_sym_in] = ACTIONS(1517), - [anon_sym_out] = ACTIONS(1517), - [anon_sym_inout] = ACTIONS(1517), - [anon_sym_bycopy] = ACTIONS(1517), - [anon_sym_byref] = ACTIONS(1517), - [anon_sym_oneway] = ACTIONS(1517), - [anon_sym__Nullable] = ACTIONS(1517), - [anon_sym__Nonnull] = ACTIONS(1517), - [anon_sym__Nullable_result] = ACTIONS(1517), - [anon_sym__Null_unspecified] = ACTIONS(1517), - [anon_sym___autoreleasing] = ACTIONS(1517), - [anon_sym___nullable] = ACTIONS(1517), - [anon_sym___nonnull] = ACTIONS(1517), - [anon_sym___strong] = ACTIONS(1517), - [anon_sym___weak] = ACTIONS(1517), - [anon_sym___bridge] = ACTIONS(1517), - [anon_sym___bridge_transfer] = ACTIONS(1517), - [anon_sym___bridge_retained] = ACTIONS(1517), - [anon_sym___unsafe_unretained] = ACTIONS(1517), - [anon_sym___block] = ACTIONS(1517), - [anon_sym___kindof] = ACTIONS(1517), - [anon_sym___unused] = ACTIONS(1517), - [anon_sym__Complex] = ACTIONS(1517), - [anon_sym___complex] = ACTIONS(1517), - [anon_sym_IBOutlet] = ACTIONS(1517), - [anon_sym_IBInspectable] = ACTIONS(1517), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1517), - [anon_sym_signed] = ACTIONS(1517), - [anon_sym_unsigned] = ACTIONS(1517), - [anon_sym_long] = ACTIONS(1517), - [anon_sym_short] = ACTIONS(1517), - [sym_primitive_type] = ACTIONS(1517), - [anon_sym_enum] = ACTIONS(1517), - [anon_sym_NS_ENUM] = ACTIONS(1517), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1517), - [anon_sym_NS_OPTIONS] = ACTIONS(1517), - [anon_sym_struct] = ACTIONS(1517), - [anon_sym_union] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_else] = ACTIONS(1517), - [anon_sym_switch] = ACTIONS(1517), - [anon_sym_case] = ACTIONS(1517), - [anon_sym_default] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_do] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_break] = ACTIONS(1517), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_goto] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_sizeof] = ACTIONS(1517), - [sym_number_literal] = ACTIONS(1519), - [anon_sym_L_SQUOTE] = ACTIONS(1519), - [anon_sym_u_SQUOTE] = ACTIONS(1519), - [anon_sym_U_SQUOTE] = ACTIONS(1519), - [anon_sym_u8_SQUOTE] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1519), - [anon_sym_L_DQUOTE] = ACTIONS(1519), - [anon_sym_u_DQUOTE] = ACTIONS(1519), - [anon_sym_U_DQUOTE] = ACTIONS(1519), - [anon_sym_u8_DQUOTE] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [sym_true] = ACTIONS(1517), - [sym_false] = ACTIONS(1517), - [sym_null] = ACTIONS(1517), + [ts_builtin_sym_end] = ACTIONS(1599), + [sym_identifier] = ACTIONS(1602), + [aux_sym_preproc_include_token1] = ACTIONS(1599), + [aux_sym_preproc_def_token1] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [aux_sym_preproc_if_token1] = ACTIONS(1602), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1602), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1602), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_typedef] = ACTIONS(1602), + [anon_sym_extern] = ACTIONS(1602), + [anon_sym___attribute] = ACTIONS(1602), + [anon_sym___attribute__] = ACTIONS(1602), + [anon_sym___declspec] = ACTIONS(1602), + [anon_sym___cdecl] = ACTIONS(1602), + [anon_sym___clrcall] = ACTIONS(1602), + [anon_sym___stdcall] = ACTIONS(1602), + [anon_sym___fastcall] = ACTIONS(1602), + [anon_sym___thiscall] = ACTIONS(1602), + [anon_sym___vectorcall] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_auto] = ACTIONS(1602), + [anon_sym_register] = ACTIONS(1602), + [anon_sym_inline] = ACTIONS(1602), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1602), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_volatile] = ACTIONS(1602), + [anon_sym_restrict] = ACTIONS(1602), + [anon_sym__Atomic] = ACTIONS(1602), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_out] = ACTIONS(1602), + [anon_sym_inout] = ACTIONS(1602), + [anon_sym_bycopy] = ACTIONS(1602), + [anon_sym_byref] = ACTIONS(1602), + [anon_sym_oneway] = ACTIONS(1602), + [anon_sym__Nullable] = ACTIONS(1602), + [anon_sym__Nonnull] = ACTIONS(1602), + [anon_sym__Nullable_result] = ACTIONS(1602), + [anon_sym__Null_unspecified] = ACTIONS(1602), + [anon_sym___autoreleasing] = ACTIONS(1602), + [anon_sym___nullable] = ACTIONS(1602), + [anon_sym___nonnull] = ACTIONS(1602), + [anon_sym___strong] = ACTIONS(1602), + [anon_sym___weak] = ACTIONS(1602), + [anon_sym___bridge] = ACTIONS(1602), + [anon_sym___bridge_transfer] = ACTIONS(1602), + [anon_sym___bridge_retained] = ACTIONS(1602), + [anon_sym___unsafe_unretained] = ACTIONS(1602), + [anon_sym___block] = ACTIONS(1602), + [anon_sym___kindof] = ACTIONS(1602), + [anon_sym___unused] = ACTIONS(1602), + [anon_sym__Complex] = ACTIONS(1602), + [anon_sym___complex] = ACTIONS(1602), + [anon_sym_IBOutlet] = ACTIONS(1602), + [anon_sym_IBInspectable] = ACTIONS(1602), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1602), + [anon_sym_signed] = ACTIONS(1602), + [anon_sym_unsigned] = ACTIONS(1602), + [anon_sym_long] = ACTIONS(1602), + [anon_sym_short] = ACTIONS(1602), + [sym_primitive_type] = ACTIONS(1602), + [anon_sym_enum] = ACTIONS(1602), + [anon_sym_struct] = ACTIONS(1602), + [anon_sym_union] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_else] = ACTIONS(1602), + [anon_sym_switch] = ACTIONS(1602), + [anon_sym_case] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1602), + [anon_sym_while] = ACTIONS(1602), + [anon_sym_do] = ACTIONS(1602), + [anon_sym_for] = ACTIONS(1602), + [anon_sym_return] = ACTIONS(1602), + [anon_sym_break] = ACTIONS(1602), + [anon_sym_continue] = ACTIONS(1602), + [anon_sym_goto] = ACTIONS(1602), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_sizeof] = ACTIONS(1602), + [sym_number_literal] = ACTIONS(1599), + [anon_sym_L_SQUOTE] = ACTIONS(1599), + [anon_sym_u_SQUOTE] = ACTIONS(1599), + [anon_sym_U_SQUOTE] = ACTIONS(1599), + [anon_sym_u8_SQUOTE] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_L_DQUOTE] = ACTIONS(1599), + [anon_sym_u_DQUOTE] = ACTIONS(1599), + [anon_sym_U_DQUOTE] = ACTIONS(1599), + [anon_sym_u8_DQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1519), - [anon_sym_ATimport] = ACTIONS(1519), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1517), - [anon_sym_ATcompatibility_alias] = ACTIONS(1519), - [anon_sym_ATprotocol] = ACTIONS(1519), - [anon_sym_ATclass] = ACTIONS(1519), - [anon_sym_ATinterface] = ACTIONS(1519), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1517), - [sym_method_attribute_specifier] = ACTIONS(1517), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1517), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1517), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1517), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1517), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1517), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1517), - [anon_sym_NS_AVAILABLE] = ACTIONS(1517), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1517), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1517), - [anon_sym_API_AVAILABLE] = ACTIONS(1517), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1517), - [anon_sym_API_DEPRECATED] = ACTIONS(1517), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1517), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1517), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1517), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1517), - [anon_sym___deprecated_msg] = ACTIONS(1517), - [anon_sym___deprecated_enum_msg] = ACTIONS(1517), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1517), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1517), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1517), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1517), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1517), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1517), - [anon_sym_ATimplementation] = ACTIONS(1519), - [anon_sym_typeof] = ACTIONS(1517), - [anon_sym___typeof] = ACTIONS(1517), - [anon_sym___typeof__] = ACTIONS(1517), - [sym_self] = ACTIONS(1517), - [sym_super] = ACTIONS(1517), - [sym_nil] = ACTIONS(1517), - [sym_id] = ACTIONS(1517), - [sym_instancetype] = ACTIONS(1517), - [sym_Class] = ACTIONS(1517), - [sym_SEL] = ACTIONS(1517), - [sym_IMP] = ACTIONS(1517), - [sym_BOOL] = ACTIONS(1517), - [sym_auto] = ACTIONS(1517), - [anon_sym_ATautoreleasepool] = ACTIONS(1519), - [anon_sym_ATsynchronized] = ACTIONS(1519), - [anon_sym_ATtry] = ACTIONS(1519), - [anon_sym_ATcatch] = ACTIONS(1519), - [anon_sym_ATfinally] = ACTIONS(1519), - [anon_sym_ATthrow] = ACTIONS(1519), - [anon_sym_ATselector] = ACTIONS(1519), - [anon_sym_ATencode] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(1517), - [sym_YES] = ACTIONS(1517), - [sym_NO] = ACTIONS(1517), - [anon_sym___builtin_available] = ACTIONS(1517), - [anon_sym_ATavailable] = ACTIONS(1519), - [anon_sym_va_arg] = ACTIONS(1517), + [anon_sym_POUNDimport] = ACTIONS(1599), + [anon_sym_ATimport] = ACTIONS(1599), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1602), + [anon_sym_ATcompatibility_alias] = ACTIONS(1599), + [anon_sym_ATprotocol] = ACTIONS(1599), + [anon_sym_ATclass] = ACTIONS(1599), + [anon_sym_ATinterface] = ACTIONS(1599), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1602), + [sym_method_attribute_specifier] = ACTIONS(1602), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1602), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1602), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1602), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1602), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1602), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1602), + [anon_sym_NS_AVAILABLE] = ACTIONS(1602), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1602), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1602), + [anon_sym_API_AVAILABLE] = ACTIONS(1602), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1602), + [anon_sym_API_DEPRECATED] = ACTIONS(1602), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1602), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1602), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1602), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1602), + [anon_sym___deprecated_msg] = ACTIONS(1602), + [anon_sym___deprecated_enum_msg] = ACTIONS(1602), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1602), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1602), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1602), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1602), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1602), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1602), + [anon_sym_ATimplementation] = ACTIONS(1599), + [anon_sym_NS_ENUM] = ACTIONS(1602), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1602), + [anon_sym_NS_OPTIONS] = ACTIONS(1602), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym___typeof] = ACTIONS(1602), + [anon_sym___typeof__] = ACTIONS(1602), + [sym_self] = ACTIONS(1602), + [sym_super] = ACTIONS(1602), + [sym_nil] = ACTIONS(1602), + [sym_id] = ACTIONS(1602), + [sym_instancetype] = ACTIONS(1602), + [sym_Class] = ACTIONS(1602), + [sym_SEL] = ACTIONS(1602), + [sym_IMP] = ACTIONS(1602), + [sym_BOOL] = ACTIONS(1602), + [sym_auto] = ACTIONS(1602), + [anon_sym_ATautoreleasepool] = ACTIONS(1599), + [anon_sym_ATsynchronized] = ACTIONS(1599), + [anon_sym_ATtry] = ACTIONS(1599), + [anon_sym_ATcatch] = ACTIONS(1599), + [anon_sym_ATfinally] = ACTIONS(1599), + [anon_sym_ATthrow] = ACTIONS(1599), + [anon_sym_ATselector] = ACTIONS(1599), + [anon_sym_ATencode] = ACTIONS(1599), + [anon_sym_AT] = ACTIONS(1602), + [sym_YES] = ACTIONS(1602), + [sym_NO] = ACTIONS(1602), + [anon_sym___builtin_available] = ACTIONS(1602), + [anon_sym_ATavailable] = ACTIONS(1599), + [anon_sym_va_arg] = ACTIONS(1602), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -69853,175 +69882,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [251] = { - [ts_builtin_sym_end] = ACTIONS(1515), - [sym_identifier] = ACTIONS(1513), - [aux_sym_preproc_include_token1] = ACTIONS(1515), - [aux_sym_preproc_def_token1] = ACTIONS(1515), - [anon_sym_RPAREN] = ACTIONS(1515), - [aux_sym_preproc_if_token1] = ACTIONS(1513), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1513), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1513), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_typedef] = ACTIONS(1513), - [anon_sym_extern] = ACTIONS(1513), - [anon_sym___attribute] = ACTIONS(1513), - [anon_sym___attribute__] = ACTIONS(1513), - [anon_sym___declspec] = ACTIONS(1513), - [anon_sym___cdecl] = ACTIONS(1513), - [anon_sym___clrcall] = ACTIONS(1513), - [anon_sym___stdcall] = ACTIONS(1513), - [anon_sym___fastcall] = ACTIONS(1513), - [anon_sym___thiscall] = ACTIONS(1513), - [anon_sym___vectorcall] = ACTIONS(1513), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_static] = ACTIONS(1513), - [anon_sym_auto] = ACTIONS(1513), - [anon_sym_register] = ACTIONS(1513), - [anon_sym_inline] = ACTIONS(1513), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_volatile] = ACTIONS(1513), - [anon_sym_restrict] = ACTIONS(1513), - [anon_sym__Atomic] = ACTIONS(1513), - [anon_sym_in] = ACTIONS(1513), - [anon_sym_out] = ACTIONS(1513), - [anon_sym_inout] = ACTIONS(1513), - [anon_sym_bycopy] = ACTIONS(1513), - [anon_sym_byref] = ACTIONS(1513), - [anon_sym_oneway] = ACTIONS(1513), - [anon_sym__Nullable] = ACTIONS(1513), - [anon_sym__Nonnull] = ACTIONS(1513), - [anon_sym__Nullable_result] = ACTIONS(1513), - [anon_sym__Null_unspecified] = ACTIONS(1513), - [anon_sym___autoreleasing] = ACTIONS(1513), - [anon_sym___nullable] = ACTIONS(1513), - [anon_sym___nonnull] = ACTIONS(1513), - [anon_sym___strong] = ACTIONS(1513), - [anon_sym___weak] = ACTIONS(1513), - [anon_sym___bridge] = ACTIONS(1513), - [anon_sym___bridge_transfer] = ACTIONS(1513), - [anon_sym___bridge_retained] = ACTIONS(1513), - [anon_sym___unsafe_unretained] = ACTIONS(1513), - [anon_sym___block] = ACTIONS(1513), - [anon_sym___kindof] = ACTIONS(1513), - [anon_sym___unused] = ACTIONS(1513), - [anon_sym__Complex] = ACTIONS(1513), - [anon_sym___complex] = ACTIONS(1513), - [anon_sym_IBOutlet] = ACTIONS(1513), - [anon_sym_IBInspectable] = ACTIONS(1513), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1513), - [anon_sym_signed] = ACTIONS(1513), - [anon_sym_unsigned] = ACTIONS(1513), - [anon_sym_long] = ACTIONS(1513), - [anon_sym_short] = ACTIONS(1513), - [sym_primitive_type] = ACTIONS(1513), - [anon_sym_enum] = ACTIONS(1513), - [anon_sym_NS_ENUM] = ACTIONS(1513), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1513), - [anon_sym_NS_OPTIONS] = ACTIONS(1513), - [anon_sym_struct] = ACTIONS(1513), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_if] = ACTIONS(1513), - [anon_sym_else] = ACTIONS(1513), - [anon_sym_switch] = ACTIONS(1513), - [anon_sym_case] = ACTIONS(1513), - [anon_sym_default] = ACTIONS(1513), - [anon_sym_while] = ACTIONS(1513), - [anon_sym_do] = ACTIONS(1513), - [anon_sym_for] = ACTIONS(1513), - [anon_sym_return] = ACTIONS(1513), - [anon_sym_break] = ACTIONS(1513), - [anon_sym_continue] = ACTIONS(1513), - [anon_sym_goto] = ACTIONS(1513), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_sizeof] = ACTIONS(1513), - [sym_number_literal] = ACTIONS(1515), - [anon_sym_L_SQUOTE] = ACTIONS(1515), - [anon_sym_u_SQUOTE] = ACTIONS(1515), - [anon_sym_U_SQUOTE] = ACTIONS(1515), - [anon_sym_u8_SQUOTE] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1515), - [anon_sym_L_DQUOTE] = ACTIONS(1515), - [anon_sym_u_DQUOTE] = ACTIONS(1515), - [anon_sym_U_DQUOTE] = ACTIONS(1515), - [anon_sym_u8_DQUOTE] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [sym_true] = ACTIONS(1513), - [sym_false] = ACTIONS(1513), - [sym_null] = ACTIONS(1513), + [ts_builtin_sym_end] = ACTIONS(1605), + [sym_identifier] = ACTIONS(1607), + [aux_sym_preproc_include_token1] = ACTIONS(1605), + [aux_sym_preproc_def_token1] = ACTIONS(1605), + [anon_sym_RPAREN] = ACTIONS(1605), + [aux_sym_preproc_if_token1] = ACTIONS(1607), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1607), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1605), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym___attribute] = ACTIONS(1607), + [anon_sym___attribute__] = ACTIONS(1607), + [anon_sym___declspec] = ACTIONS(1607), + [anon_sym___cdecl] = ACTIONS(1607), + [anon_sym___clrcall] = ACTIONS(1607), + [anon_sym___stdcall] = ACTIONS(1607), + [anon_sym___fastcall] = ACTIONS(1607), + [anon_sym___thiscall] = ACTIONS(1607), + [anon_sym___vectorcall] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1607), + [anon_sym_auto] = ACTIONS(1607), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_inline] = ACTIONS(1607), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [anon_sym_volatile] = ACTIONS(1607), + [anon_sym_restrict] = ACTIONS(1607), + [anon_sym__Atomic] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_out] = ACTIONS(1607), + [anon_sym_inout] = ACTIONS(1607), + [anon_sym_bycopy] = ACTIONS(1607), + [anon_sym_byref] = ACTIONS(1607), + [anon_sym_oneway] = ACTIONS(1607), + [anon_sym__Nullable] = ACTIONS(1607), + [anon_sym__Nonnull] = ACTIONS(1607), + [anon_sym__Nullable_result] = ACTIONS(1607), + [anon_sym__Null_unspecified] = ACTIONS(1607), + [anon_sym___autoreleasing] = ACTIONS(1607), + [anon_sym___nullable] = ACTIONS(1607), + [anon_sym___nonnull] = ACTIONS(1607), + [anon_sym___strong] = ACTIONS(1607), + [anon_sym___weak] = ACTIONS(1607), + [anon_sym___bridge] = ACTIONS(1607), + [anon_sym___bridge_transfer] = ACTIONS(1607), + [anon_sym___bridge_retained] = ACTIONS(1607), + [anon_sym___unsafe_unretained] = ACTIONS(1607), + [anon_sym___block] = ACTIONS(1607), + [anon_sym___kindof] = ACTIONS(1607), + [anon_sym___unused] = ACTIONS(1607), + [anon_sym__Complex] = ACTIONS(1607), + [anon_sym___complex] = ACTIONS(1607), + [anon_sym_IBOutlet] = ACTIONS(1607), + [anon_sym_IBInspectable] = ACTIONS(1607), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1607), + [anon_sym_signed] = ACTIONS(1607), + [anon_sym_unsigned] = ACTIONS(1607), + [anon_sym_long] = ACTIONS(1607), + [anon_sym_short] = ACTIONS(1607), + [sym_primitive_type] = ACTIONS(1607), + [anon_sym_enum] = ACTIONS(1607), + [anon_sym_struct] = ACTIONS(1607), + [anon_sym_union] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_else] = ACTIONS(1607), + [anon_sym_switch] = ACTIONS(1607), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_goto] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1605), + [anon_sym_sizeof] = ACTIONS(1607), + [sym_number_literal] = ACTIONS(1605), + [anon_sym_L_SQUOTE] = ACTIONS(1605), + [anon_sym_u_SQUOTE] = ACTIONS(1605), + [anon_sym_U_SQUOTE] = ACTIONS(1605), + [anon_sym_u8_SQUOTE] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_L_DQUOTE] = ACTIONS(1605), + [anon_sym_u_DQUOTE] = ACTIONS(1605), + [anon_sym_U_DQUOTE] = ACTIONS(1605), + [anon_sym_u8_DQUOTE] = ACTIONS(1605), + [anon_sym_DQUOTE] = ACTIONS(1605), + [sym_true] = ACTIONS(1607), + [sym_false] = ACTIONS(1607), + [sym_null] = ACTIONS(1607), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1515), - [anon_sym_ATimport] = ACTIONS(1515), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1513), - [anon_sym_ATcompatibility_alias] = ACTIONS(1515), - [anon_sym_ATprotocol] = ACTIONS(1515), - [anon_sym_ATclass] = ACTIONS(1515), - [anon_sym_ATinterface] = ACTIONS(1515), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1513), - [sym_method_attribute_specifier] = ACTIONS(1513), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1513), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1513), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1513), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1513), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1513), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1513), - [anon_sym_NS_AVAILABLE] = ACTIONS(1513), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1513), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1513), - [anon_sym_API_AVAILABLE] = ACTIONS(1513), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1513), - [anon_sym_API_DEPRECATED] = ACTIONS(1513), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1513), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1513), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1513), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1513), - [anon_sym___deprecated_msg] = ACTIONS(1513), - [anon_sym___deprecated_enum_msg] = ACTIONS(1513), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1513), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1513), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1513), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1513), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1513), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1513), - [anon_sym_ATimplementation] = ACTIONS(1515), - [anon_sym_typeof] = ACTIONS(1513), - [anon_sym___typeof] = ACTIONS(1513), - [anon_sym___typeof__] = ACTIONS(1513), - [sym_self] = ACTIONS(1513), - [sym_super] = ACTIONS(1513), - [sym_nil] = ACTIONS(1513), - [sym_id] = ACTIONS(1513), - [sym_instancetype] = ACTIONS(1513), - [sym_Class] = ACTIONS(1513), - [sym_SEL] = ACTIONS(1513), - [sym_IMP] = ACTIONS(1513), - [sym_BOOL] = ACTIONS(1513), - [sym_auto] = ACTIONS(1513), - [anon_sym_ATautoreleasepool] = ACTIONS(1515), - [anon_sym_ATsynchronized] = ACTIONS(1515), - [anon_sym_ATtry] = ACTIONS(1515), - [anon_sym_ATcatch] = ACTIONS(1515), - [anon_sym_ATfinally] = ACTIONS(1515), - [anon_sym_ATthrow] = ACTIONS(1515), - [anon_sym_ATselector] = ACTIONS(1515), - [anon_sym_ATencode] = ACTIONS(1515), - [anon_sym_AT] = ACTIONS(1513), - [sym_YES] = ACTIONS(1513), - [sym_NO] = ACTIONS(1513), - [anon_sym___builtin_available] = ACTIONS(1513), - [anon_sym_ATavailable] = ACTIONS(1515), - [anon_sym_va_arg] = ACTIONS(1513), + [anon_sym_POUNDimport] = ACTIONS(1605), + [anon_sym_ATimport] = ACTIONS(1605), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1607), + [anon_sym_ATcompatibility_alias] = ACTIONS(1605), + [anon_sym_ATprotocol] = ACTIONS(1605), + [anon_sym_ATclass] = ACTIONS(1605), + [anon_sym_ATinterface] = ACTIONS(1605), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1607), + [sym_method_attribute_specifier] = ACTIONS(1607), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1607), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1607), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1607), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1607), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1607), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1607), + [anon_sym_NS_AVAILABLE] = ACTIONS(1607), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1607), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1607), + [anon_sym_API_AVAILABLE] = ACTIONS(1607), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1607), + [anon_sym_API_DEPRECATED] = ACTIONS(1607), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1607), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1607), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1607), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1607), + [anon_sym___deprecated_msg] = ACTIONS(1607), + [anon_sym___deprecated_enum_msg] = ACTIONS(1607), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1607), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1607), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1607), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1607), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1607), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1607), + [anon_sym_ATimplementation] = ACTIONS(1605), + [anon_sym_NS_ENUM] = ACTIONS(1607), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1607), + [anon_sym_NS_OPTIONS] = ACTIONS(1607), + [anon_sym_typeof] = ACTIONS(1607), + [anon_sym___typeof] = ACTIONS(1607), + [anon_sym___typeof__] = ACTIONS(1607), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_nil] = ACTIONS(1607), + [sym_id] = ACTIONS(1607), + [sym_instancetype] = ACTIONS(1607), + [sym_Class] = ACTIONS(1607), + [sym_SEL] = ACTIONS(1607), + [sym_IMP] = ACTIONS(1607), + [sym_BOOL] = ACTIONS(1607), + [sym_auto] = ACTIONS(1607), + [anon_sym_ATautoreleasepool] = ACTIONS(1605), + [anon_sym_ATsynchronized] = ACTIONS(1605), + [anon_sym_ATtry] = ACTIONS(1605), + [anon_sym_ATcatch] = ACTIONS(1605), + [anon_sym_ATfinally] = ACTIONS(1605), + [anon_sym_ATthrow] = ACTIONS(1605), + [anon_sym_ATselector] = ACTIONS(1605), + [anon_sym_ATencode] = ACTIONS(1605), + [anon_sym_AT] = ACTIONS(1607), + [sym_YES] = ACTIONS(1607), + [sym_NO] = ACTIONS(1607), + [anon_sym___builtin_available] = ACTIONS(1607), + [anon_sym_ATavailable] = ACTIONS(1605), + [anon_sym_va_arg] = ACTIONS(1607), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -70030,6 +70059,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [252] = { + [sym_identifier] = ACTIONS(1509), + [aux_sym_preproc_include_token1] = ACTIONS(1507), + [aux_sym_preproc_def_token1] = ACTIONS(1507), + [aux_sym_preproc_if_token1] = ACTIONS(1509), + [aux_sym_preproc_if_token2] = ACTIONS(1509), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1509), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1509), + [aux_sym_preproc_else_token1] = ACTIONS(1509), + [aux_sym_preproc_elif_token1] = ACTIONS(1509), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_typedef] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1509), + [anon_sym___attribute] = ACTIONS(1509), + [anon_sym___attribute__] = ACTIONS(1509), + [anon_sym___declspec] = ACTIONS(1509), + [anon_sym___cdecl] = ACTIONS(1509), + [anon_sym___clrcall] = ACTIONS(1509), + [anon_sym___stdcall] = ACTIONS(1509), + [anon_sym___fastcall] = ACTIONS(1509), + [anon_sym___thiscall] = ACTIONS(1509), + [anon_sym___vectorcall] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_auto] = ACTIONS(1509), + [anon_sym_register] = ACTIONS(1509), + [anon_sym_inline] = ACTIONS(1509), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_volatile] = ACTIONS(1509), + [anon_sym_restrict] = ACTIONS(1509), + [anon_sym__Atomic] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1509), + [anon_sym_out] = ACTIONS(1509), + [anon_sym_inout] = ACTIONS(1509), + [anon_sym_bycopy] = ACTIONS(1509), + [anon_sym_byref] = ACTIONS(1509), + [anon_sym_oneway] = ACTIONS(1509), + [anon_sym__Nullable] = ACTIONS(1509), + [anon_sym__Nonnull] = ACTIONS(1509), + [anon_sym__Nullable_result] = ACTIONS(1509), + [anon_sym__Null_unspecified] = ACTIONS(1509), + [anon_sym___autoreleasing] = ACTIONS(1509), + [anon_sym___nullable] = ACTIONS(1509), + [anon_sym___nonnull] = ACTIONS(1509), + [anon_sym___strong] = ACTIONS(1509), + [anon_sym___weak] = ACTIONS(1509), + [anon_sym___bridge] = ACTIONS(1509), + [anon_sym___bridge_transfer] = ACTIONS(1509), + [anon_sym___bridge_retained] = ACTIONS(1509), + [anon_sym___unsafe_unretained] = ACTIONS(1509), + [anon_sym___block] = ACTIONS(1509), + [anon_sym___kindof] = ACTIONS(1509), + [anon_sym___unused] = ACTIONS(1509), + [anon_sym__Complex] = ACTIONS(1509), + [anon_sym___complex] = ACTIONS(1509), + [anon_sym_IBOutlet] = ACTIONS(1509), + [anon_sym_IBInspectable] = ACTIONS(1509), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1509), + [anon_sym_signed] = ACTIONS(1509), + [anon_sym_unsigned] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [sym_primitive_type] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_else] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_goto] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_sizeof] = ACTIONS(1509), + [sym_number_literal] = ACTIONS(1507), + [anon_sym_L_SQUOTE] = ACTIONS(1507), + [anon_sym_u_SQUOTE] = ACTIONS(1507), + [anon_sym_U_SQUOTE] = ACTIONS(1507), + [anon_sym_u8_SQUOTE] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_L_DQUOTE] = ACTIONS(1507), + [anon_sym_u_DQUOTE] = ACTIONS(1507), + [anon_sym_U_DQUOTE] = ACTIONS(1507), + [anon_sym_u8_DQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [sym_true] = ACTIONS(1509), + [sym_false] = ACTIONS(1509), + [sym_null] = ACTIONS(1509), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1507), + [anon_sym_ATimport] = ACTIONS(1507), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1509), + [anon_sym_ATcompatibility_alias] = ACTIONS(1507), + [anon_sym_ATprotocol] = ACTIONS(1507), + [anon_sym_ATclass] = ACTIONS(1507), + [anon_sym_ATinterface] = ACTIONS(1507), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1509), + [sym_method_attribute_specifier] = ACTIONS(1509), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1509), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1509), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1509), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1509), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1509), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1509), + [anon_sym_NS_AVAILABLE] = ACTIONS(1509), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1509), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1509), + [anon_sym_API_AVAILABLE] = ACTIONS(1509), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1509), + [anon_sym_API_DEPRECATED] = ACTIONS(1509), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1509), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1509), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1509), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1509), + [anon_sym___deprecated_msg] = ACTIONS(1509), + [anon_sym___deprecated_enum_msg] = ACTIONS(1509), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1509), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1509), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1509), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1509), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1509), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1509), + [anon_sym_ATimplementation] = ACTIONS(1507), + [anon_sym_NS_ENUM] = ACTIONS(1509), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1509), + [anon_sym_NS_OPTIONS] = ACTIONS(1509), + [anon_sym_typeof] = ACTIONS(1509), + [anon_sym___typeof] = ACTIONS(1509), + [anon_sym___typeof__] = ACTIONS(1509), + [sym_self] = ACTIONS(1509), + [sym_super] = ACTIONS(1509), + [sym_nil] = ACTIONS(1509), + [sym_id] = ACTIONS(1509), + [sym_instancetype] = ACTIONS(1509), + [sym_Class] = ACTIONS(1509), + [sym_SEL] = ACTIONS(1509), + [sym_IMP] = ACTIONS(1509), + [sym_BOOL] = ACTIONS(1509), + [sym_auto] = ACTIONS(1509), + [anon_sym_ATautoreleasepool] = ACTIONS(1507), + [anon_sym_ATsynchronized] = ACTIONS(1507), + [anon_sym_ATtry] = ACTIONS(1507), + [anon_sym_ATcatch] = ACTIONS(1507), + [anon_sym_ATfinally] = ACTIONS(1507), + [anon_sym_ATthrow] = ACTIONS(1507), + [anon_sym_ATselector] = ACTIONS(1507), + [anon_sym_ATencode] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [sym_YES] = ACTIONS(1509), + [sym_NO] = ACTIONS(1509), + [anon_sym___builtin_available] = ACTIONS(1509), + [anon_sym_ATavailable] = ACTIONS(1507), + [anon_sym_va_arg] = ACTIONS(1509), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [253] = { + [ts_builtin_sym_end] = ACTIONS(1447), + [sym_identifier] = ACTIONS(1445), + [aux_sym_preproc_include_token1] = ACTIONS(1447), + [aux_sym_preproc_def_token1] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1445), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1445), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1445), + [anon_sym_LPAREN2] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_typedef] = ACTIONS(1445), + [anon_sym_extern] = ACTIONS(1445), + [anon_sym___attribute] = ACTIONS(1445), + [anon_sym___attribute__] = ACTIONS(1445), + [anon_sym___declspec] = ACTIONS(1445), + [anon_sym___cdecl] = ACTIONS(1445), + [anon_sym___clrcall] = ACTIONS(1445), + [anon_sym___stdcall] = ACTIONS(1445), + [anon_sym___fastcall] = ACTIONS(1445), + [anon_sym___thiscall] = ACTIONS(1445), + [anon_sym___vectorcall] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1447), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1447), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_auto] = ACTIONS(1445), + [anon_sym_register] = ACTIONS(1445), + [anon_sym_inline] = ACTIONS(1445), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_volatile] = ACTIONS(1445), + [anon_sym_restrict] = ACTIONS(1445), + [anon_sym__Atomic] = ACTIONS(1445), + [anon_sym_in] = ACTIONS(1445), + [anon_sym_out] = ACTIONS(1445), + [anon_sym_inout] = ACTIONS(1445), + [anon_sym_bycopy] = ACTIONS(1445), + [anon_sym_byref] = ACTIONS(1445), + [anon_sym_oneway] = ACTIONS(1445), + [anon_sym__Nullable] = ACTIONS(1445), + [anon_sym__Nonnull] = ACTIONS(1445), + [anon_sym__Nullable_result] = ACTIONS(1445), + [anon_sym__Null_unspecified] = ACTIONS(1445), + [anon_sym___autoreleasing] = ACTIONS(1445), + [anon_sym___nullable] = ACTIONS(1445), + [anon_sym___nonnull] = ACTIONS(1445), + [anon_sym___strong] = ACTIONS(1445), + [anon_sym___weak] = ACTIONS(1445), + [anon_sym___bridge] = ACTIONS(1445), + [anon_sym___bridge_transfer] = ACTIONS(1445), + [anon_sym___bridge_retained] = ACTIONS(1445), + [anon_sym___unsafe_unretained] = ACTIONS(1445), + [anon_sym___block] = ACTIONS(1445), + [anon_sym___kindof] = ACTIONS(1445), + [anon_sym___unused] = ACTIONS(1445), + [anon_sym__Complex] = ACTIONS(1445), + [anon_sym___complex] = ACTIONS(1445), + [anon_sym_IBOutlet] = ACTIONS(1445), + [anon_sym_IBInspectable] = ACTIONS(1445), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1445), + [anon_sym_signed] = ACTIONS(1445), + [anon_sym_unsigned] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [sym_primitive_type] = ACTIONS(1445), + [anon_sym_enum] = ACTIONS(1445), + [anon_sym_struct] = ACTIONS(1445), + [anon_sym_union] = ACTIONS(1445), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_else] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_case] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_goto] = ACTIONS(1445), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_sizeof] = ACTIONS(1445), + [sym_number_literal] = ACTIONS(1447), + [anon_sym_L_SQUOTE] = ACTIONS(1447), + [anon_sym_u_SQUOTE] = ACTIONS(1447), + [anon_sym_U_SQUOTE] = ACTIONS(1447), + [anon_sym_u8_SQUOTE] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1445), + [sym_false] = ACTIONS(1445), + [sym_null] = ACTIONS(1445), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1447), + [anon_sym_ATimport] = ACTIONS(1447), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1445), + [anon_sym_ATcompatibility_alias] = ACTIONS(1447), + [anon_sym_ATprotocol] = ACTIONS(1447), + [anon_sym_ATclass] = ACTIONS(1447), + [anon_sym_ATinterface] = ACTIONS(1447), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1445), + [sym_method_attribute_specifier] = ACTIONS(1445), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1445), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1445), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1445), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1445), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1445), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1445), + [anon_sym_NS_AVAILABLE] = ACTIONS(1445), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1445), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1445), + [anon_sym_API_AVAILABLE] = ACTIONS(1445), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1445), + [anon_sym_API_DEPRECATED] = ACTIONS(1445), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1445), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1445), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1445), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1445), + [anon_sym___deprecated_msg] = ACTIONS(1445), + [anon_sym___deprecated_enum_msg] = ACTIONS(1445), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1445), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1445), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1445), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1445), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1445), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1445), + [anon_sym_ATimplementation] = ACTIONS(1447), + [anon_sym_NS_ENUM] = ACTIONS(1445), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1445), + [anon_sym_NS_OPTIONS] = ACTIONS(1445), + [anon_sym_typeof] = ACTIONS(1445), + [anon_sym___typeof] = ACTIONS(1445), + [anon_sym___typeof__] = ACTIONS(1445), + [sym_self] = ACTIONS(1445), + [sym_super] = ACTIONS(1445), + [sym_nil] = ACTIONS(1445), + [sym_id] = ACTIONS(1445), + [sym_instancetype] = ACTIONS(1445), + [sym_Class] = ACTIONS(1445), + [sym_SEL] = ACTIONS(1445), + [sym_IMP] = ACTIONS(1445), + [sym_BOOL] = ACTIONS(1445), + [sym_auto] = ACTIONS(1445), + [anon_sym_ATautoreleasepool] = ACTIONS(1447), + [anon_sym_ATsynchronized] = ACTIONS(1447), + [anon_sym_ATtry] = ACTIONS(1447), + [anon_sym_ATcatch] = ACTIONS(1447), + [anon_sym_ATfinally] = ACTIONS(1447), + [anon_sym_ATthrow] = ACTIONS(1447), + [anon_sym_ATselector] = ACTIONS(1447), + [anon_sym_ATencode] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1445), + [sym_YES] = ACTIONS(1445), + [sym_NO] = ACTIONS(1445), + [anon_sym___builtin_available] = ACTIONS(1445), + [anon_sym_ATavailable] = ACTIONS(1447), + [anon_sym_va_arg] = ACTIONS(1445), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [254] = { [ts_builtin_sym_end] = ACTIONS(1609), [sym_identifier] = ACTIONS(1611), [aux_sym_preproc_include_token1] = ACTIONS(1609), @@ -70103,9 +70486,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1611), [sym_primitive_type] = ACTIONS(1611), [anon_sym_enum] = ACTIONS(1611), - [anon_sym_NS_ENUM] = ACTIONS(1611), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1611), - [anon_sym_NS_OPTIONS] = ACTIONS(1611), [anon_sym_struct] = ACTIONS(1611), [anon_sym_union] = ACTIONS(1611), [anon_sym_if] = ACTIONS(1611), @@ -70172,6 +70552,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1611), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1611), [anon_sym_ATimplementation] = ACTIONS(1609), + [anon_sym_NS_ENUM] = ACTIONS(1611), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1611), + [anon_sym_NS_OPTIONS] = ACTIONS(1611), [anon_sym_typeof] = ACTIONS(1611), [anon_sym___typeof] = ACTIONS(1611), [anon_sym___typeof__] = ACTIONS(1611), @@ -70206,100 +70589,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [253] = { - [ts_builtin_sym_end] = ACTIONS(1511), - [sym_identifier] = ACTIONS(1509), + [255] = { + [sym_identifier] = ACTIONS(1513), [aux_sym_preproc_include_token1] = ACTIONS(1511), [aux_sym_preproc_def_token1] = ACTIONS(1511), - [anon_sym_RPAREN] = ACTIONS(1511), - [aux_sym_preproc_if_token1] = ACTIONS(1509), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1509), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1509), + [aux_sym_preproc_if_token1] = ACTIONS(1513), + [aux_sym_preproc_if_token2] = ACTIONS(1513), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1513), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1513), + [aux_sym_preproc_else_token1] = ACTIONS(1513), + [aux_sym_preproc_elif_token1] = ACTIONS(1513), [anon_sym_LPAREN2] = ACTIONS(1511), [anon_sym_BANG] = ACTIONS(1511), [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), [anon_sym_STAR] = ACTIONS(1511), [anon_sym_CARET] = ACTIONS(1511), [anon_sym_AMP] = ACTIONS(1511), [anon_sym_SEMI] = ACTIONS(1511), - [anon_sym_typedef] = ACTIONS(1509), - [anon_sym_extern] = ACTIONS(1509), - [anon_sym___attribute] = ACTIONS(1509), - [anon_sym___attribute__] = ACTIONS(1509), - [anon_sym___declspec] = ACTIONS(1509), - [anon_sym___cdecl] = ACTIONS(1509), - [anon_sym___clrcall] = ACTIONS(1509), - [anon_sym___stdcall] = ACTIONS(1509), - [anon_sym___fastcall] = ACTIONS(1509), - [anon_sym___thiscall] = ACTIONS(1509), - [anon_sym___vectorcall] = ACTIONS(1509), + [anon_sym_typedef] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [anon_sym___attribute] = ACTIONS(1513), + [anon_sym___attribute__] = ACTIONS(1513), + [anon_sym___declspec] = ACTIONS(1513), + [anon_sym___cdecl] = ACTIONS(1513), + [anon_sym___clrcall] = ACTIONS(1513), + [anon_sym___stdcall] = ACTIONS(1513), + [anon_sym___fastcall] = ACTIONS(1513), + [anon_sym___thiscall] = ACTIONS(1513), + [anon_sym___vectorcall] = ACTIONS(1513), [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1511), [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_auto] = ACTIONS(1509), - [anon_sym_register] = ACTIONS(1509), - [anon_sym_inline] = ACTIONS(1509), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_volatile] = ACTIONS(1509), - [anon_sym_restrict] = ACTIONS(1509), - [anon_sym__Atomic] = ACTIONS(1509), - [anon_sym_in] = ACTIONS(1509), - [anon_sym_out] = ACTIONS(1509), - [anon_sym_inout] = ACTIONS(1509), - [anon_sym_bycopy] = ACTIONS(1509), - [anon_sym_byref] = ACTIONS(1509), - [anon_sym_oneway] = ACTIONS(1509), - [anon_sym__Nullable] = ACTIONS(1509), - [anon_sym__Nonnull] = ACTIONS(1509), - [anon_sym__Nullable_result] = ACTIONS(1509), - [anon_sym__Null_unspecified] = ACTIONS(1509), - [anon_sym___autoreleasing] = ACTIONS(1509), - [anon_sym___nullable] = ACTIONS(1509), - [anon_sym___nonnull] = ACTIONS(1509), - [anon_sym___strong] = ACTIONS(1509), - [anon_sym___weak] = ACTIONS(1509), - [anon_sym___bridge] = ACTIONS(1509), - [anon_sym___bridge_transfer] = ACTIONS(1509), - [anon_sym___bridge_retained] = ACTIONS(1509), - [anon_sym___unsafe_unretained] = ACTIONS(1509), - [anon_sym___block] = ACTIONS(1509), - [anon_sym___kindof] = ACTIONS(1509), - [anon_sym___unused] = ACTIONS(1509), - [anon_sym__Complex] = ACTIONS(1509), - [anon_sym___complex] = ACTIONS(1509), - [anon_sym_IBOutlet] = ACTIONS(1509), - [anon_sym_IBInspectable] = ACTIONS(1509), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1509), - [anon_sym_signed] = ACTIONS(1509), - [anon_sym_unsigned] = ACTIONS(1509), - [anon_sym_long] = ACTIONS(1509), - [anon_sym_short] = ACTIONS(1509), - [sym_primitive_type] = ACTIONS(1509), - [anon_sym_enum] = ACTIONS(1509), - [anon_sym_NS_ENUM] = ACTIONS(1509), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1509), - [anon_sym_NS_OPTIONS] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1509), - [anon_sym_else] = ACTIONS(1509), - [anon_sym_switch] = ACTIONS(1509), - [anon_sym_case] = ACTIONS(1509), - [anon_sym_default] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1509), - [anon_sym_do] = ACTIONS(1509), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_return] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1509), - [anon_sym_continue] = ACTIONS(1509), - [anon_sym_goto] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_auto] = ACTIONS(1513), + [anon_sym_register] = ACTIONS(1513), + [anon_sym_inline] = ACTIONS(1513), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_volatile] = ACTIONS(1513), + [anon_sym_restrict] = ACTIONS(1513), + [anon_sym__Atomic] = ACTIONS(1513), + [anon_sym_in] = ACTIONS(1513), + [anon_sym_out] = ACTIONS(1513), + [anon_sym_inout] = ACTIONS(1513), + [anon_sym_bycopy] = ACTIONS(1513), + [anon_sym_byref] = ACTIONS(1513), + [anon_sym_oneway] = ACTIONS(1513), + [anon_sym__Nullable] = ACTIONS(1513), + [anon_sym__Nonnull] = ACTIONS(1513), + [anon_sym__Nullable_result] = ACTIONS(1513), + [anon_sym__Null_unspecified] = ACTIONS(1513), + [anon_sym___autoreleasing] = ACTIONS(1513), + [anon_sym___nullable] = ACTIONS(1513), + [anon_sym___nonnull] = ACTIONS(1513), + [anon_sym___strong] = ACTIONS(1513), + [anon_sym___weak] = ACTIONS(1513), + [anon_sym___bridge] = ACTIONS(1513), + [anon_sym___bridge_transfer] = ACTIONS(1513), + [anon_sym___bridge_retained] = ACTIONS(1513), + [anon_sym___unsafe_unretained] = ACTIONS(1513), + [anon_sym___block] = ACTIONS(1513), + [anon_sym___kindof] = ACTIONS(1513), + [anon_sym___unused] = ACTIONS(1513), + [anon_sym__Complex] = ACTIONS(1513), + [anon_sym___complex] = ACTIONS(1513), + [anon_sym_IBOutlet] = ACTIONS(1513), + [anon_sym_IBInspectable] = ACTIONS(1513), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1513), + [anon_sym_signed] = ACTIONS(1513), + [anon_sym_unsigned] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [sym_primitive_type] = ACTIONS(1513), + [anon_sym_enum] = ACTIONS(1513), + [anon_sym_struct] = ACTIONS(1513), + [anon_sym_union] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_else] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_case] = ACTIONS(1513), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_goto] = ACTIONS(1513), [anon_sym_DASH_DASH] = ACTIONS(1511), [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_sizeof] = ACTIONS(1509), + [anon_sym_sizeof] = ACTIONS(1513), [sym_number_literal] = ACTIONS(1511), [anon_sym_L_SQUOTE] = ACTIONS(1511), [anon_sym_u_SQUOTE] = ACTIONS(1511), @@ -70311,57 +70691,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(1511), [anon_sym_u8_DQUOTE] = ACTIONS(1511), [anon_sym_DQUOTE] = ACTIONS(1511), - [sym_true] = ACTIONS(1509), - [sym_false] = ACTIONS(1509), - [sym_null] = ACTIONS(1509), + [sym_true] = ACTIONS(1513), + [sym_false] = ACTIONS(1513), + [sym_null] = ACTIONS(1513), [sym_comment] = ACTIONS(3), [anon_sym_POUNDimport] = ACTIONS(1511), [anon_sym_ATimport] = ACTIONS(1511), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1509), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1513), [anon_sym_ATcompatibility_alias] = ACTIONS(1511), [anon_sym_ATprotocol] = ACTIONS(1511), [anon_sym_ATclass] = ACTIONS(1511), [anon_sym_ATinterface] = ACTIONS(1511), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1509), - [sym_method_attribute_specifier] = ACTIONS(1509), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1509), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1509), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1509), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1509), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1509), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1509), - [anon_sym_NS_AVAILABLE] = ACTIONS(1509), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1509), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1509), - [anon_sym_API_AVAILABLE] = ACTIONS(1509), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1509), - [anon_sym_API_DEPRECATED] = ACTIONS(1509), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1509), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1509), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1509), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1509), - [anon_sym___deprecated_msg] = ACTIONS(1509), - [anon_sym___deprecated_enum_msg] = ACTIONS(1509), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1509), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1509), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1509), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1509), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1509), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1509), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1513), + [sym_method_attribute_specifier] = ACTIONS(1513), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1513), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1513), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1513), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1513), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1513), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1513), + [anon_sym_NS_AVAILABLE] = ACTIONS(1513), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1513), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1513), + [anon_sym_API_AVAILABLE] = ACTIONS(1513), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1513), + [anon_sym_API_DEPRECATED] = ACTIONS(1513), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1513), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1513), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1513), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1513), + [anon_sym___deprecated_msg] = ACTIONS(1513), + [anon_sym___deprecated_enum_msg] = ACTIONS(1513), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1513), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1513), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1513), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1513), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1513), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1513), [anon_sym_ATimplementation] = ACTIONS(1511), - [anon_sym_typeof] = ACTIONS(1509), - [anon_sym___typeof] = ACTIONS(1509), - [anon_sym___typeof__] = ACTIONS(1509), - [sym_self] = ACTIONS(1509), - [sym_super] = ACTIONS(1509), - [sym_nil] = ACTIONS(1509), - [sym_id] = ACTIONS(1509), - [sym_instancetype] = ACTIONS(1509), - [sym_Class] = ACTIONS(1509), - [sym_SEL] = ACTIONS(1509), - [sym_IMP] = ACTIONS(1509), - [sym_BOOL] = ACTIONS(1509), - [sym_auto] = ACTIONS(1509), + [anon_sym_NS_ENUM] = ACTIONS(1513), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1513), + [anon_sym_NS_OPTIONS] = ACTIONS(1513), + [anon_sym_typeof] = ACTIONS(1513), + [anon_sym___typeof] = ACTIONS(1513), + [anon_sym___typeof__] = ACTIONS(1513), + [sym_self] = ACTIONS(1513), + [sym_super] = ACTIONS(1513), + [sym_nil] = ACTIONS(1513), + [sym_id] = ACTIONS(1513), + [sym_instancetype] = ACTIONS(1513), + [sym_Class] = ACTIONS(1513), + [sym_SEL] = ACTIONS(1513), + [sym_IMP] = ACTIONS(1513), + [sym_BOOL] = ACTIONS(1513), + [sym_auto] = ACTIONS(1513), [anon_sym_ATautoreleasepool] = ACTIONS(1511), [anon_sym_ATsynchronized] = ACTIONS(1511), [anon_sym_ATtry] = ACTIONS(1511), @@ -70370,374 +70753,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATthrow] = ACTIONS(1511), [anon_sym_ATselector] = ACTIONS(1511), [anon_sym_ATencode] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1509), - [sym_YES] = ACTIONS(1509), - [sym_NO] = ACTIONS(1509), - [anon_sym___builtin_available] = ACTIONS(1509), + [anon_sym_AT] = ACTIONS(1513), + [sym_YES] = ACTIONS(1513), + [sym_NO] = ACTIONS(1513), + [anon_sym___builtin_available] = ACTIONS(1513), [anon_sym_ATavailable] = ACTIONS(1511), - [anon_sym_va_arg] = ACTIONS(1509), + [anon_sym_va_arg] = ACTIONS(1513), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [254] = { - [ts_builtin_sym_end] = ACTIONS(1507), - [sym_identifier] = ACTIONS(1505), - [aux_sym_preproc_include_token1] = ACTIONS(1507), - [aux_sym_preproc_def_token1] = ACTIONS(1507), - [anon_sym_RPAREN] = ACTIONS(1507), - [aux_sym_preproc_if_token1] = ACTIONS(1505), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1505), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1505), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_typedef] = ACTIONS(1505), - [anon_sym_extern] = ACTIONS(1505), - [anon_sym___attribute] = ACTIONS(1505), - [anon_sym___attribute__] = ACTIONS(1505), - [anon_sym___declspec] = ACTIONS(1505), - [anon_sym___cdecl] = ACTIONS(1505), - [anon_sym___clrcall] = ACTIONS(1505), - [anon_sym___stdcall] = ACTIONS(1505), - [anon_sym___fastcall] = ACTIONS(1505), - [anon_sym___thiscall] = ACTIONS(1505), - [anon_sym___vectorcall] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_static] = ACTIONS(1505), - [anon_sym_auto] = ACTIONS(1505), - [anon_sym_register] = ACTIONS(1505), - [anon_sym_inline] = ACTIONS(1505), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_volatile] = ACTIONS(1505), - [anon_sym_restrict] = ACTIONS(1505), - [anon_sym__Atomic] = ACTIONS(1505), - [anon_sym_in] = ACTIONS(1505), - [anon_sym_out] = ACTIONS(1505), - [anon_sym_inout] = ACTIONS(1505), - [anon_sym_bycopy] = ACTIONS(1505), - [anon_sym_byref] = ACTIONS(1505), - [anon_sym_oneway] = ACTIONS(1505), - [anon_sym__Nullable] = ACTIONS(1505), - [anon_sym__Nonnull] = ACTIONS(1505), - [anon_sym__Nullable_result] = ACTIONS(1505), - [anon_sym__Null_unspecified] = ACTIONS(1505), - [anon_sym___autoreleasing] = ACTIONS(1505), - [anon_sym___nullable] = ACTIONS(1505), - [anon_sym___nonnull] = ACTIONS(1505), - [anon_sym___strong] = ACTIONS(1505), - [anon_sym___weak] = ACTIONS(1505), - [anon_sym___bridge] = ACTIONS(1505), - [anon_sym___bridge_transfer] = ACTIONS(1505), - [anon_sym___bridge_retained] = ACTIONS(1505), - [anon_sym___unsafe_unretained] = ACTIONS(1505), - [anon_sym___block] = ACTIONS(1505), - [anon_sym___kindof] = ACTIONS(1505), - [anon_sym___unused] = ACTIONS(1505), - [anon_sym__Complex] = ACTIONS(1505), - [anon_sym___complex] = ACTIONS(1505), - [anon_sym_IBOutlet] = ACTIONS(1505), - [anon_sym_IBInspectable] = ACTIONS(1505), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1505), - [anon_sym_signed] = ACTIONS(1505), - [anon_sym_unsigned] = ACTIONS(1505), - [anon_sym_long] = ACTIONS(1505), - [anon_sym_short] = ACTIONS(1505), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1505), - [anon_sym_NS_ENUM] = ACTIONS(1505), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1505), - [anon_sym_NS_OPTIONS] = ACTIONS(1505), - [anon_sym_struct] = ACTIONS(1505), - [anon_sym_union] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_else] = ACTIONS(1505), - [anon_sym_switch] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1505), - [anon_sym_default] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_goto] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_sizeof] = ACTIONS(1505), - [sym_number_literal] = ACTIONS(1507), - [anon_sym_L_SQUOTE] = ACTIONS(1507), - [anon_sym_u_SQUOTE] = ACTIONS(1507), - [anon_sym_U_SQUOTE] = ACTIONS(1507), - [anon_sym_u8_SQUOTE] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_L_DQUOTE] = ACTIONS(1507), - [anon_sym_u_DQUOTE] = ACTIONS(1507), - [anon_sym_U_DQUOTE] = ACTIONS(1507), - [anon_sym_u8_DQUOTE] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1507), - [sym_true] = ACTIONS(1505), - [sym_false] = ACTIONS(1505), - [sym_null] = ACTIONS(1505), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1507), - [anon_sym_ATimport] = ACTIONS(1507), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1505), - [anon_sym_ATcompatibility_alias] = ACTIONS(1507), - [anon_sym_ATprotocol] = ACTIONS(1507), - [anon_sym_ATclass] = ACTIONS(1507), - [anon_sym_ATinterface] = ACTIONS(1507), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1505), - [sym_method_attribute_specifier] = ACTIONS(1505), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1505), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1505), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1505), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1505), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1505), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1505), - [anon_sym_NS_AVAILABLE] = ACTIONS(1505), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1505), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1505), - [anon_sym_API_AVAILABLE] = ACTIONS(1505), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1505), - [anon_sym_API_DEPRECATED] = ACTIONS(1505), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1505), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1505), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1505), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1505), - [anon_sym___deprecated_msg] = ACTIONS(1505), - [anon_sym___deprecated_enum_msg] = ACTIONS(1505), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1505), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1505), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1505), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1505), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1505), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1505), - [anon_sym_ATimplementation] = ACTIONS(1507), - [anon_sym_typeof] = ACTIONS(1505), - [anon_sym___typeof] = ACTIONS(1505), - [anon_sym___typeof__] = ACTIONS(1505), - [sym_self] = ACTIONS(1505), - [sym_super] = ACTIONS(1505), - [sym_nil] = ACTIONS(1505), - [sym_id] = ACTIONS(1505), - [sym_instancetype] = ACTIONS(1505), - [sym_Class] = ACTIONS(1505), - [sym_SEL] = ACTIONS(1505), - [sym_IMP] = ACTIONS(1505), - [sym_BOOL] = ACTIONS(1505), - [sym_auto] = ACTIONS(1505), - [anon_sym_ATautoreleasepool] = ACTIONS(1507), - [anon_sym_ATsynchronized] = ACTIONS(1507), - [anon_sym_ATtry] = ACTIONS(1507), - [anon_sym_ATcatch] = ACTIONS(1507), - [anon_sym_ATfinally] = ACTIONS(1507), - [anon_sym_ATthrow] = ACTIONS(1507), - [anon_sym_ATselector] = ACTIONS(1507), - [anon_sym_ATencode] = ACTIONS(1507), - [anon_sym_AT] = ACTIONS(1505), - [sym_YES] = ACTIONS(1505), - [sym_NO] = ACTIONS(1505), - [anon_sym___builtin_available] = ACTIONS(1505), - [anon_sym_ATavailable] = ACTIONS(1507), - [anon_sym_va_arg] = ACTIONS(1505), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [255] = { - [ts_builtin_sym_end] = ACTIONS(1503), - [sym_identifier] = ACTIONS(1501), - [aux_sym_preproc_include_token1] = ACTIONS(1503), - [aux_sym_preproc_def_token1] = ACTIONS(1503), - [anon_sym_RPAREN] = ACTIONS(1503), - [aux_sym_preproc_if_token1] = ACTIONS(1501), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1501), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1501), - [anon_sym_LPAREN2] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1503), - [anon_sym_typedef] = ACTIONS(1501), - [anon_sym_extern] = ACTIONS(1501), - [anon_sym___attribute] = ACTIONS(1501), - [anon_sym___attribute__] = ACTIONS(1501), - [anon_sym___declspec] = ACTIONS(1501), - [anon_sym___cdecl] = ACTIONS(1501), - [anon_sym___clrcall] = ACTIONS(1501), - [anon_sym___stdcall] = ACTIONS(1501), - [anon_sym___fastcall] = ACTIONS(1501), - [anon_sym___thiscall] = ACTIONS(1501), - [anon_sym___vectorcall] = ACTIONS(1501), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1501), - [anon_sym_auto] = ACTIONS(1501), - [anon_sym_register] = ACTIONS(1501), - [anon_sym_inline] = ACTIONS(1501), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_volatile] = ACTIONS(1501), - [anon_sym_restrict] = ACTIONS(1501), - [anon_sym__Atomic] = ACTIONS(1501), - [anon_sym_in] = ACTIONS(1501), - [anon_sym_out] = ACTIONS(1501), - [anon_sym_inout] = ACTIONS(1501), - [anon_sym_bycopy] = ACTIONS(1501), - [anon_sym_byref] = ACTIONS(1501), - [anon_sym_oneway] = ACTIONS(1501), - [anon_sym__Nullable] = ACTIONS(1501), - [anon_sym__Nonnull] = ACTIONS(1501), - [anon_sym__Nullable_result] = ACTIONS(1501), - [anon_sym__Null_unspecified] = ACTIONS(1501), - [anon_sym___autoreleasing] = ACTIONS(1501), - [anon_sym___nullable] = ACTIONS(1501), - [anon_sym___nonnull] = ACTIONS(1501), - [anon_sym___strong] = ACTIONS(1501), - [anon_sym___weak] = ACTIONS(1501), - [anon_sym___bridge] = ACTIONS(1501), - [anon_sym___bridge_transfer] = ACTIONS(1501), - [anon_sym___bridge_retained] = ACTIONS(1501), - [anon_sym___unsafe_unretained] = ACTIONS(1501), - [anon_sym___block] = ACTIONS(1501), - [anon_sym___kindof] = ACTIONS(1501), - [anon_sym___unused] = ACTIONS(1501), - [anon_sym__Complex] = ACTIONS(1501), - [anon_sym___complex] = ACTIONS(1501), - [anon_sym_IBOutlet] = ACTIONS(1501), - [anon_sym_IBInspectable] = ACTIONS(1501), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1501), - [anon_sym_signed] = ACTIONS(1501), - [anon_sym_unsigned] = ACTIONS(1501), - [anon_sym_long] = ACTIONS(1501), - [anon_sym_short] = ACTIONS(1501), - [sym_primitive_type] = ACTIONS(1501), - [anon_sym_enum] = ACTIONS(1501), - [anon_sym_NS_ENUM] = ACTIONS(1501), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1501), - [anon_sym_NS_OPTIONS] = ACTIONS(1501), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_else] = ACTIONS(1501), - [anon_sym_switch] = ACTIONS(1501), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_do] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_goto] = ACTIONS(1501), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_sizeof] = ACTIONS(1501), - [sym_number_literal] = ACTIONS(1503), - [anon_sym_L_SQUOTE] = ACTIONS(1503), - [anon_sym_u_SQUOTE] = ACTIONS(1503), - [anon_sym_U_SQUOTE] = ACTIONS(1503), - [anon_sym_u8_SQUOTE] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1503), - [anon_sym_L_DQUOTE] = ACTIONS(1503), - [anon_sym_u_DQUOTE] = ACTIONS(1503), - [anon_sym_U_DQUOTE] = ACTIONS(1503), - [anon_sym_u8_DQUOTE] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1503), - [sym_true] = ACTIONS(1501), - [sym_false] = ACTIONS(1501), - [sym_null] = ACTIONS(1501), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1503), - [anon_sym_ATimport] = ACTIONS(1503), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1501), - [anon_sym_ATcompatibility_alias] = ACTIONS(1503), - [anon_sym_ATprotocol] = ACTIONS(1503), - [anon_sym_ATclass] = ACTIONS(1503), - [anon_sym_ATinterface] = ACTIONS(1503), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1501), - [sym_method_attribute_specifier] = ACTIONS(1501), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1501), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1501), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1501), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1501), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1501), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1501), - [anon_sym_NS_AVAILABLE] = ACTIONS(1501), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1501), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1501), - [anon_sym_API_AVAILABLE] = ACTIONS(1501), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1501), - [anon_sym_API_DEPRECATED] = ACTIONS(1501), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1501), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1501), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1501), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1501), - [anon_sym___deprecated_msg] = ACTIONS(1501), - [anon_sym___deprecated_enum_msg] = ACTIONS(1501), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1501), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1501), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1501), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1501), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1501), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1501), - [anon_sym_ATimplementation] = ACTIONS(1503), - [anon_sym_typeof] = ACTIONS(1501), - [anon_sym___typeof] = ACTIONS(1501), - [anon_sym___typeof__] = ACTIONS(1501), - [sym_self] = ACTIONS(1501), - [sym_super] = ACTIONS(1501), - [sym_nil] = ACTIONS(1501), - [sym_id] = ACTIONS(1501), - [sym_instancetype] = ACTIONS(1501), - [sym_Class] = ACTIONS(1501), - [sym_SEL] = ACTIONS(1501), - [sym_IMP] = ACTIONS(1501), - [sym_BOOL] = ACTIONS(1501), - [sym_auto] = ACTIONS(1501), - [anon_sym_ATautoreleasepool] = ACTIONS(1503), - [anon_sym_ATsynchronized] = ACTIONS(1503), - [anon_sym_ATtry] = ACTIONS(1503), - [anon_sym_ATcatch] = ACTIONS(1503), - [anon_sym_ATfinally] = ACTIONS(1503), - [anon_sym_ATthrow] = ACTIONS(1503), - [anon_sym_ATselector] = ACTIONS(1503), - [anon_sym_ATencode] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(1501), - [sym_YES] = ACTIONS(1501), - [sym_NO] = ACTIONS(1501), - [anon_sym___builtin_available] = ACTIONS(1501), - [anon_sym_ATavailable] = ACTIONS(1503), - [anon_sym_va_arg] = ACTIONS(1501), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, [256] = { + [sym_identifier] = ACTIONS(1517), + [aux_sym_preproc_include_token1] = ACTIONS(1515), + [aux_sym_preproc_def_token1] = ACTIONS(1515), + [aux_sym_preproc_if_token1] = ACTIONS(1517), + [aux_sym_preproc_if_token2] = ACTIONS(1517), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1517), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1517), + [aux_sym_preproc_else_token1] = ACTIONS(1517), + [aux_sym_preproc_elif_token1] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_typedef] = ACTIONS(1517), + [anon_sym_extern] = ACTIONS(1517), + [anon_sym___attribute] = ACTIONS(1517), + [anon_sym___attribute__] = ACTIONS(1517), + [anon_sym___declspec] = ACTIONS(1517), + [anon_sym___cdecl] = ACTIONS(1517), + [anon_sym___clrcall] = ACTIONS(1517), + [anon_sym___stdcall] = ACTIONS(1517), + [anon_sym___fastcall] = ACTIONS(1517), + [anon_sym___thiscall] = ACTIONS(1517), + [anon_sym___vectorcall] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_auto] = ACTIONS(1517), + [anon_sym_register] = ACTIONS(1517), + [anon_sym_inline] = ACTIONS(1517), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_volatile] = ACTIONS(1517), + [anon_sym_restrict] = ACTIONS(1517), + [anon_sym__Atomic] = ACTIONS(1517), + [anon_sym_in] = ACTIONS(1517), + [anon_sym_out] = ACTIONS(1517), + [anon_sym_inout] = ACTIONS(1517), + [anon_sym_bycopy] = ACTIONS(1517), + [anon_sym_byref] = ACTIONS(1517), + [anon_sym_oneway] = ACTIONS(1517), + [anon_sym__Nullable] = ACTIONS(1517), + [anon_sym__Nonnull] = ACTIONS(1517), + [anon_sym__Nullable_result] = ACTIONS(1517), + [anon_sym__Null_unspecified] = ACTIONS(1517), + [anon_sym___autoreleasing] = ACTIONS(1517), + [anon_sym___nullable] = ACTIONS(1517), + [anon_sym___nonnull] = ACTIONS(1517), + [anon_sym___strong] = ACTIONS(1517), + [anon_sym___weak] = ACTIONS(1517), + [anon_sym___bridge] = ACTIONS(1517), + [anon_sym___bridge_transfer] = ACTIONS(1517), + [anon_sym___bridge_retained] = ACTIONS(1517), + [anon_sym___unsafe_unretained] = ACTIONS(1517), + [anon_sym___block] = ACTIONS(1517), + [anon_sym___kindof] = ACTIONS(1517), + [anon_sym___unused] = ACTIONS(1517), + [anon_sym__Complex] = ACTIONS(1517), + [anon_sym___complex] = ACTIONS(1517), + [anon_sym_IBOutlet] = ACTIONS(1517), + [anon_sym_IBInspectable] = ACTIONS(1517), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1517), + [anon_sym_signed] = ACTIONS(1517), + [anon_sym_unsigned] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [sym_primitive_type] = ACTIONS(1517), + [anon_sym_enum] = ACTIONS(1517), + [anon_sym_struct] = ACTIONS(1517), + [anon_sym_union] = ACTIONS(1517), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_else] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1517), + [anon_sym_default] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_goto] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_sizeof] = ACTIONS(1517), + [sym_number_literal] = ACTIONS(1515), + [anon_sym_L_SQUOTE] = ACTIONS(1515), + [anon_sym_u_SQUOTE] = ACTIONS(1515), + [anon_sym_U_SQUOTE] = ACTIONS(1515), + [anon_sym_u8_SQUOTE] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_L_DQUOTE] = ACTIONS(1515), + [anon_sym_u_DQUOTE] = ACTIONS(1515), + [anon_sym_U_DQUOTE] = ACTIONS(1515), + [anon_sym_u8_DQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [sym_true] = ACTIONS(1517), + [sym_false] = ACTIONS(1517), + [sym_null] = ACTIONS(1517), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1515), + [anon_sym_ATimport] = ACTIONS(1515), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1517), + [anon_sym_ATcompatibility_alias] = ACTIONS(1515), + [anon_sym_ATprotocol] = ACTIONS(1515), + [anon_sym_ATclass] = ACTIONS(1515), + [anon_sym_ATinterface] = ACTIONS(1515), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1517), + [sym_method_attribute_specifier] = ACTIONS(1517), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1517), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1517), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1517), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1517), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1517), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1517), + [anon_sym_NS_AVAILABLE] = ACTIONS(1517), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1517), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1517), + [anon_sym_API_AVAILABLE] = ACTIONS(1517), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1517), + [anon_sym_API_DEPRECATED] = ACTIONS(1517), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1517), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1517), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1517), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1517), + [anon_sym___deprecated_msg] = ACTIONS(1517), + [anon_sym___deprecated_enum_msg] = ACTIONS(1517), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1517), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1517), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1517), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1517), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1517), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1517), + [anon_sym_ATimplementation] = ACTIONS(1515), + [anon_sym_NS_ENUM] = ACTIONS(1517), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1517), + [anon_sym_NS_OPTIONS] = ACTIONS(1517), + [anon_sym_typeof] = ACTIONS(1517), + [anon_sym___typeof] = ACTIONS(1517), + [anon_sym___typeof__] = ACTIONS(1517), + [sym_self] = ACTIONS(1517), + [sym_super] = ACTIONS(1517), + [sym_nil] = ACTIONS(1517), + [sym_id] = ACTIONS(1517), + [sym_instancetype] = ACTIONS(1517), + [sym_Class] = ACTIONS(1517), + [sym_SEL] = ACTIONS(1517), + [sym_IMP] = ACTIONS(1517), + [sym_BOOL] = ACTIONS(1517), + [sym_auto] = ACTIONS(1517), + [anon_sym_ATautoreleasepool] = ACTIONS(1515), + [anon_sym_ATsynchronized] = ACTIONS(1515), + [anon_sym_ATtry] = ACTIONS(1515), + [anon_sym_ATcatch] = ACTIONS(1515), + [anon_sym_ATfinally] = ACTIONS(1515), + [anon_sym_ATthrow] = ACTIONS(1515), + [anon_sym_ATselector] = ACTIONS(1515), + [anon_sym_ATencode] = ACTIONS(1515), + [anon_sym_AT] = ACTIONS(1517), + [sym_YES] = ACTIONS(1517), + [sym_NO] = ACTIONS(1517), + [anon_sym___builtin_available] = ACTIONS(1517), + [anon_sym_ATavailable] = ACTIONS(1515), + [anon_sym_va_arg] = ACTIONS(1517), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [257] = { + [sym_identifier] = ACTIONS(1521), + [aux_sym_preproc_include_token1] = ACTIONS(1519), + [aux_sym_preproc_def_token1] = ACTIONS(1519), + [aux_sym_preproc_if_token1] = ACTIONS(1521), + [aux_sym_preproc_if_token2] = ACTIONS(1521), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1521), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1521), + [aux_sym_preproc_else_token1] = ACTIONS(1521), + [aux_sym_preproc_elif_token1] = ACTIONS(1521), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_typedef] = ACTIONS(1521), + [anon_sym_extern] = ACTIONS(1521), + [anon_sym___attribute] = ACTIONS(1521), + [anon_sym___attribute__] = ACTIONS(1521), + [anon_sym___declspec] = ACTIONS(1521), + [anon_sym___cdecl] = ACTIONS(1521), + [anon_sym___clrcall] = ACTIONS(1521), + [anon_sym___stdcall] = ACTIONS(1521), + [anon_sym___fastcall] = ACTIONS(1521), + [anon_sym___thiscall] = ACTIONS(1521), + [anon_sym___vectorcall] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_auto] = ACTIONS(1521), + [anon_sym_register] = ACTIONS(1521), + [anon_sym_inline] = ACTIONS(1521), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_volatile] = ACTIONS(1521), + [anon_sym_restrict] = ACTIONS(1521), + [anon_sym__Atomic] = ACTIONS(1521), + [anon_sym_in] = ACTIONS(1521), + [anon_sym_out] = ACTIONS(1521), + [anon_sym_inout] = ACTIONS(1521), + [anon_sym_bycopy] = ACTIONS(1521), + [anon_sym_byref] = ACTIONS(1521), + [anon_sym_oneway] = ACTIONS(1521), + [anon_sym__Nullable] = ACTIONS(1521), + [anon_sym__Nonnull] = ACTIONS(1521), + [anon_sym__Nullable_result] = ACTIONS(1521), + [anon_sym__Null_unspecified] = ACTIONS(1521), + [anon_sym___autoreleasing] = ACTIONS(1521), + [anon_sym___nullable] = ACTIONS(1521), + [anon_sym___nonnull] = ACTIONS(1521), + [anon_sym___strong] = ACTIONS(1521), + [anon_sym___weak] = ACTIONS(1521), + [anon_sym___bridge] = ACTIONS(1521), + [anon_sym___bridge_transfer] = ACTIONS(1521), + [anon_sym___bridge_retained] = ACTIONS(1521), + [anon_sym___unsafe_unretained] = ACTIONS(1521), + [anon_sym___block] = ACTIONS(1521), + [anon_sym___kindof] = ACTIONS(1521), + [anon_sym___unused] = ACTIONS(1521), + [anon_sym__Complex] = ACTIONS(1521), + [anon_sym___complex] = ACTIONS(1521), + [anon_sym_IBOutlet] = ACTIONS(1521), + [anon_sym_IBInspectable] = ACTIONS(1521), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1521), + [anon_sym_signed] = ACTIONS(1521), + [anon_sym_unsigned] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_enum] = ACTIONS(1521), + [anon_sym_struct] = ACTIONS(1521), + [anon_sym_union] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_else] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_case] = ACTIONS(1521), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_goto] = ACTIONS(1521), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_sizeof] = ACTIONS(1521), + [sym_number_literal] = ACTIONS(1519), + [anon_sym_L_SQUOTE] = ACTIONS(1519), + [anon_sym_u_SQUOTE] = ACTIONS(1519), + [anon_sym_U_SQUOTE] = ACTIONS(1519), + [anon_sym_u8_SQUOTE] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_L_DQUOTE] = ACTIONS(1519), + [anon_sym_u_DQUOTE] = ACTIONS(1519), + [anon_sym_U_DQUOTE] = ACTIONS(1519), + [anon_sym_u8_DQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1519), + [anon_sym_ATimport] = ACTIONS(1519), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1521), + [anon_sym_ATcompatibility_alias] = ACTIONS(1519), + [anon_sym_ATprotocol] = ACTIONS(1519), + [anon_sym_ATclass] = ACTIONS(1519), + [anon_sym_ATinterface] = ACTIONS(1519), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1521), + [sym_method_attribute_specifier] = ACTIONS(1521), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1521), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1521), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1521), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1521), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1521), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1521), + [anon_sym_NS_AVAILABLE] = ACTIONS(1521), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1521), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1521), + [anon_sym_API_AVAILABLE] = ACTIONS(1521), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1521), + [anon_sym_API_DEPRECATED] = ACTIONS(1521), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1521), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1521), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1521), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1521), + [anon_sym___deprecated_msg] = ACTIONS(1521), + [anon_sym___deprecated_enum_msg] = ACTIONS(1521), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1521), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1521), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1521), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1521), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1521), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1521), + [anon_sym_ATimplementation] = ACTIONS(1519), + [anon_sym_NS_ENUM] = ACTIONS(1521), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1521), + [anon_sym_NS_OPTIONS] = ACTIONS(1521), + [anon_sym_typeof] = ACTIONS(1521), + [anon_sym___typeof] = ACTIONS(1521), + [anon_sym___typeof__] = ACTIONS(1521), + [sym_self] = ACTIONS(1521), + [sym_super] = ACTIONS(1521), + [sym_nil] = ACTIONS(1521), + [sym_id] = ACTIONS(1521), + [sym_instancetype] = ACTIONS(1521), + [sym_Class] = ACTIONS(1521), + [sym_SEL] = ACTIONS(1521), + [sym_IMP] = ACTIONS(1521), + [sym_BOOL] = ACTIONS(1521), + [sym_auto] = ACTIONS(1521), + [anon_sym_ATautoreleasepool] = ACTIONS(1519), + [anon_sym_ATsynchronized] = ACTIONS(1519), + [anon_sym_ATtry] = ACTIONS(1519), + [anon_sym_ATcatch] = ACTIONS(1519), + [anon_sym_ATfinally] = ACTIONS(1519), + [anon_sym_ATthrow] = ACTIONS(1519), + [anon_sym_ATselector] = ACTIONS(1519), + [anon_sym_ATencode] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [sym_YES] = ACTIONS(1521), + [sym_NO] = ACTIONS(1521), + [anon_sym___builtin_available] = ACTIONS(1521), + [anon_sym_ATavailable] = ACTIONS(1519), + [anon_sym_va_arg] = ACTIONS(1521), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [258] = { [ts_builtin_sym_end] = ACTIONS(1613), [sym_identifier] = ACTIONS(1615), [aux_sym_preproc_include_token1] = ACTIONS(1613), @@ -70811,9 +71194,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1615), [sym_primitive_type] = ACTIONS(1615), [anon_sym_enum] = ACTIONS(1615), - [anon_sym_NS_ENUM] = ACTIONS(1615), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1615), - [anon_sym_NS_OPTIONS] = ACTIONS(1615), [anon_sym_struct] = ACTIONS(1615), [anon_sym_union] = ACTIONS(1615), [anon_sym_if] = ACTIONS(1615), @@ -70880,6 +71260,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1615), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1615), [anon_sym_ATimplementation] = ACTIONS(1613), + [anon_sym_NS_ENUM] = ACTIONS(1615), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1615), + [anon_sym_NS_OPTIONS] = ACTIONS(1615), [anon_sym_typeof] = ACTIONS(1615), [anon_sym___typeof] = ACTIONS(1615), [anon_sym___typeof__] = ACTIONS(1615), @@ -70914,184 +71297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [257] = { - [ts_builtin_sym_end] = ACTIONS(1467), - [sym_identifier] = ACTIONS(1465), - [aux_sym_preproc_include_token1] = ACTIONS(1467), - [aux_sym_preproc_def_token1] = ACTIONS(1467), - [anon_sym_RPAREN] = ACTIONS(1467), - [aux_sym_preproc_if_token1] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1465), - [anon_sym_LPAREN2] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_typedef] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym___attribute] = ACTIONS(1465), - [anon_sym___attribute__] = ACTIONS(1465), - [anon_sym___declspec] = ACTIONS(1465), - [anon_sym___cdecl] = ACTIONS(1465), - [anon_sym___clrcall] = ACTIONS(1465), - [anon_sym___stdcall] = ACTIONS(1465), - [anon_sym___fastcall] = ACTIONS(1465), - [anon_sym___thiscall] = ACTIONS(1465), - [anon_sym___vectorcall] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_auto] = ACTIONS(1465), - [anon_sym_register] = ACTIONS(1465), - [anon_sym_inline] = ACTIONS(1465), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_volatile] = ACTIONS(1465), - [anon_sym_restrict] = ACTIONS(1465), - [anon_sym__Atomic] = ACTIONS(1465), - [anon_sym_in] = ACTIONS(1465), - [anon_sym_out] = ACTIONS(1465), - [anon_sym_inout] = ACTIONS(1465), - [anon_sym_bycopy] = ACTIONS(1465), - [anon_sym_byref] = ACTIONS(1465), - [anon_sym_oneway] = ACTIONS(1465), - [anon_sym__Nullable] = ACTIONS(1465), - [anon_sym__Nonnull] = ACTIONS(1465), - [anon_sym__Nullable_result] = ACTIONS(1465), - [anon_sym__Null_unspecified] = ACTIONS(1465), - [anon_sym___autoreleasing] = ACTIONS(1465), - [anon_sym___nullable] = ACTIONS(1465), - [anon_sym___nonnull] = ACTIONS(1465), - [anon_sym___strong] = ACTIONS(1465), - [anon_sym___weak] = ACTIONS(1465), - [anon_sym___bridge] = ACTIONS(1465), - [anon_sym___bridge_transfer] = ACTIONS(1465), - [anon_sym___bridge_retained] = ACTIONS(1465), - [anon_sym___unsafe_unretained] = ACTIONS(1465), - [anon_sym___block] = ACTIONS(1465), - [anon_sym___kindof] = ACTIONS(1465), - [anon_sym___unused] = ACTIONS(1465), - [anon_sym__Complex] = ACTIONS(1465), - [anon_sym___complex] = ACTIONS(1465), - [anon_sym_IBOutlet] = ACTIONS(1465), - [anon_sym_IBInspectable] = ACTIONS(1465), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1465), - [anon_sym_signed] = ACTIONS(1465), - [anon_sym_unsigned] = ACTIONS(1465), - [anon_sym_long] = ACTIONS(1465), - [anon_sym_short] = ACTIONS(1465), - [sym_primitive_type] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_NS_ENUM] = ACTIONS(1465), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1465), - [anon_sym_NS_OPTIONS] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_else] = ACTIONS(1465), - [anon_sym_switch] = ACTIONS(1465), - [anon_sym_case] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_do] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_goto] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_sizeof] = ACTIONS(1465), - [sym_number_literal] = ACTIONS(1467), - [anon_sym_L_SQUOTE] = ACTIONS(1467), - [anon_sym_u_SQUOTE] = ACTIONS(1467), - [anon_sym_U_SQUOTE] = ACTIONS(1467), - [anon_sym_u8_SQUOTE] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1467), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1465), - [sym_false] = ACTIONS(1465), - [sym_null] = ACTIONS(1465), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1467), - [anon_sym_ATimport] = ACTIONS(1467), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1465), - [anon_sym_ATcompatibility_alias] = ACTIONS(1467), - [anon_sym_ATprotocol] = ACTIONS(1467), - [anon_sym_ATclass] = ACTIONS(1467), - [anon_sym_ATinterface] = ACTIONS(1467), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1465), - [sym_method_attribute_specifier] = ACTIONS(1465), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1465), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1465), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1465), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1465), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1465), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1465), - [anon_sym_NS_AVAILABLE] = ACTIONS(1465), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1465), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_API_AVAILABLE] = ACTIONS(1465), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1465), - [anon_sym_API_DEPRECATED] = ACTIONS(1465), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1465), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1465), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1465), - [anon_sym___deprecated_msg] = ACTIONS(1465), - [anon_sym___deprecated_enum_msg] = ACTIONS(1465), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1465), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1465), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1465), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1465), - [anon_sym_ATimplementation] = ACTIONS(1467), - [anon_sym_typeof] = ACTIONS(1465), - [anon_sym___typeof] = ACTIONS(1465), - [anon_sym___typeof__] = ACTIONS(1465), - [sym_self] = ACTIONS(1465), - [sym_super] = ACTIONS(1465), - [sym_nil] = ACTIONS(1465), - [sym_id] = ACTIONS(1465), - [sym_instancetype] = ACTIONS(1465), - [sym_Class] = ACTIONS(1465), - [sym_SEL] = ACTIONS(1465), - [sym_IMP] = ACTIONS(1465), - [sym_BOOL] = ACTIONS(1465), - [sym_auto] = ACTIONS(1465), - [anon_sym_ATautoreleasepool] = ACTIONS(1467), - [anon_sym_ATsynchronized] = ACTIONS(1467), - [anon_sym_ATtry] = ACTIONS(1467), - [anon_sym_ATcatch] = ACTIONS(1467), - [anon_sym_ATfinally] = ACTIONS(1467), - [anon_sym_ATthrow] = ACTIONS(1467), - [anon_sym_ATselector] = ACTIONS(1467), - [anon_sym_ATencode] = ACTIONS(1467), - [anon_sym_AT] = ACTIONS(1465), - [sym_YES] = ACTIONS(1465), - [sym_NO] = ACTIONS(1465), - [anon_sym___builtin_available] = ACTIONS(1465), - [anon_sym_ATavailable] = ACTIONS(1467), - [anon_sym_va_arg] = ACTIONS(1465), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [258] = { + [259] = { [ts_builtin_sym_end] = ACTIONS(1617), [sym_identifier] = ACTIONS(1619), [aux_sym_preproc_include_token1] = ACTIONS(1617), @@ -71165,9 +71371,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1619), [sym_primitive_type] = ACTIONS(1619), [anon_sym_enum] = ACTIONS(1619), - [anon_sym_NS_ENUM] = ACTIONS(1619), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1619), - [anon_sym_NS_OPTIONS] = ACTIONS(1619), [anon_sym_struct] = ACTIONS(1619), [anon_sym_union] = ACTIONS(1619), [anon_sym_if] = ACTIONS(1619), @@ -71234,6 +71437,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1619), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1619), [anon_sym_ATimplementation] = ACTIONS(1617), + [anon_sym_NS_ENUM] = ACTIONS(1619), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1619), + [anon_sym_NS_OPTIONS] = ACTIONS(1619), [anon_sym_typeof] = ACTIONS(1619), [anon_sym___typeof] = ACTIONS(1619), [anon_sym___typeof__] = ACTIONS(1619), @@ -71268,892 +71474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [259] = { - [ts_builtin_sym_end] = ACTIONS(1195), - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1195), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [anon_sym_RPAREN] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_RBRACE] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_out] = ACTIONS(1197), - [anon_sym_inout] = ACTIONS(1197), - [anon_sym_bycopy] = ACTIONS(1197), - [anon_sym_byref] = ACTIONS(1197), - [anon_sym_oneway] = ACTIONS(1197), - [anon_sym__Nullable] = ACTIONS(1197), - [anon_sym__Nonnull] = ACTIONS(1197), - [anon_sym__Nullable_result] = ACTIONS(1197), - [anon_sym__Null_unspecified] = ACTIONS(1197), - [anon_sym___autoreleasing] = ACTIONS(1197), - [anon_sym___nullable] = ACTIONS(1197), - [anon_sym___nonnull] = ACTIONS(1197), - [anon_sym___strong] = ACTIONS(1197), - [anon_sym___weak] = ACTIONS(1197), - [anon_sym___bridge] = ACTIONS(1197), - [anon_sym___bridge_transfer] = ACTIONS(1197), - [anon_sym___bridge_retained] = ACTIONS(1197), - [anon_sym___unsafe_unretained] = ACTIONS(1197), - [anon_sym___block] = ACTIONS(1197), - [anon_sym___kindof] = ACTIONS(1197), - [anon_sym___unused] = ACTIONS(1197), - [anon_sym__Complex] = ACTIONS(1197), - [anon_sym___complex] = ACTIONS(1197), - [anon_sym_IBOutlet] = ACTIONS(1197), - [anon_sym_IBInspectable] = ACTIONS(1197), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_NS_ENUM] = ACTIONS(1197), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1197), - [anon_sym_NS_OPTIONS] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [sym_null] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1195), - [anon_sym_ATimport] = ACTIONS(1195), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1197), - [anon_sym_ATcompatibility_alias] = ACTIONS(1195), - [anon_sym_ATprotocol] = ACTIONS(1195), - [anon_sym_ATclass] = ACTIONS(1195), - [anon_sym_ATinterface] = ACTIONS(1195), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1197), - [sym_method_attribute_specifier] = ACTIONS(1197), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1197), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE] = ACTIONS(1197), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_API_AVAILABLE] = ACTIONS(1197), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_API_DEPRECATED] = ACTIONS(1197), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1197), - [anon_sym___deprecated_msg] = ACTIONS(1197), - [anon_sym___deprecated_enum_msg] = ACTIONS(1197), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1197), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1197), - [anon_sym_ATimplementation] = ACTIONS(1195), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym___typeof] = ACTIONS(1197), - [anon_sym___typeof__] = ACTIONS(1197), - [sym_self] = ACTIONS(1197), - [sym_super] = ACTIONS(1197), - [sym_nil] = ACTIONS(1197), - [sym_id] = ACTIONS(1197), - [sym_instancetype] = ACTIONS(1197), - [sym_Class] = ACTIONS(1197), - [sym_SEL] = ACTIONS(1197), - [sym_IMP] = ACTIONS(1197), - [sym_BOOL] = ACTIONS(1197), - [sym_auto] = ACTIONS(1197), - [anon_sym_ATautoreleasepool] = ACTIONS(1195), - [anon_sym_ATsynchronized] = ACTIONS(1195), - [anon_sym_ATtry] = ACTIONS(1195), - [anon_sym_ATcatch] = ACTIONS(1195), - [anon_sym_ATfinally] = ACTIONS(1195), - [anon_sym_ATthrow] = ACTIONS(1195), - [anon_sym_ATselector] = ACTIONS(1195), - [anon_sym_ATencode] = ACTIONS(1195), - [anon_sym_AT] = ACTIONS(1197), - [sym_YES] = ACTIONS(1197), - [sym_NO] = ACTIONS(1197), - [anon_sym___builtin_available] = ACTIONS(1197), - [anon_sym_ATavailable] = ACTIONS(1195), - [anon_sym_va_arg] = ACTIONS(1197), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, [260] = { - [ts_builtin_sym_end] = ACTIONS(1467), - [sym_identifier] = ACTIONS(1465), - [aux_sym_preproc_include_token1] = ACTIONS(1467), - [aux_sym_preproc_def_token1] = ACTIONS(1467), - [anon_sym_RPAREN] = ACTIONS(1467), - [aux_sym_preproc_if_token1] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1465), - [anon_sym_LPAREN2] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_typedef] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym___attribute] = ACTIONS(1465), - [anon_sym___attribute__] = ACTIONS(1465), - [anon_sym___declspec] = ACTIONS(1465), - [anon_sym___cdecl] = ACTIONS(1465), - [anon_sym___clrcall] = ACTIONS(1465), - [anon_sym___stdcall] = ACTIONS(1465), - [anon_sym___fastcall] = ACTIONS(1465), - [anon_sym___thiscall] = ACTIONS(1465), - [anon_sym___vectorcall] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_auto] = ACTIONS(1465), - [anon_sym_register] = ACTIONS(1465), - [anon_sym_inline] = ACTIONS(1465), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_volatile] = ACTIONS(1465), - [anon_sym_restrict] = ACTIONS(1465), - [anon_sym__Atomic] = ACTIONS(1465), - [anon_sym_in] = ACTIONS(1465), - [anon_sym_out] = ACTIONS(1465), - [anon_sym_inout] = ACTIONS(1465), - [anon_sym_bycopy] = ACTIONS(1465), - [anon_sym_byref] = ACTIONS(1465), - [anon_sym_oneway] = ACTIONS(1465), - [anon_sym__Nullable] = ACTIONS(1465), - [anon_sym__Nonnull] = ACTIONS(1465), - [anon_sym__Nullable_result] = ACTIONS(1465), - [anon_sym__Null_unspecified] = ACTIONS(1465), - [anon_sym___autoreleasing] = ACTIONS(1465), - [anon_sym___nullable] = ACTIONS(1465), - [anon_sym___nonnull] = ACTIONS(1465), - [anon_sym___strong] = ACTIONS(1465), - [anon_sym___weak] = ACTIONS(1465), - [anon_sym___bridge] = ACTIONS(1465), - [anon_sym___bridge_transfer] = ACTIONS(1465), - [anon_sym___bridge_retained] = ACTIONS(1465), - [anon_sym___unsafe_unretained] = ACTIONS(1465), - [anon_sym___block] = ACTIONS(1465), - [anon_sym___kindof] = ACTIONS(1465), - [anon_sym___unused] = ACTIONS(1465), - [anon_sym__Complex] = ACTIONS(1465), - [anon_sym___complex] = ACTIONS(1465), - [anon_sym_IBOutlet] = ACTIONS(1465), - [anon_sym_IBInspectable] = ACTIONS(1465), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1465), - [anon_sym_signed] = ACTIONS(1465), - [anon_sym_unsigned] = ACTIONS(1465), - [anon_sym_long] = ACTIONS(1465), - [anon_sym_short] = ACTIONS(1465), - [sym_primitive_type] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_NS_ENUM] = ACTIONS(1465), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1465), - [anon_sym_NS_OPTIONS] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_else] = ACTIONS(1465), - [anon_sym_switch] = ACTIONS(1465), - [anon_sym_case] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_do] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_goto] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_sizeof] = ACTIONS(1465), - [sym_number_literal] = ACTIONS(1467), - [anon_sym_L_SQUOTE] = ACTIONS(1467), - [anon_sym_u_SQUOTE] = ACTIONS(1467), - [anon_sym_U_SQUOTE] = ACTIONS(1467), - [anon_sym_u8_SQUOTE] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1467), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1465), - [sym_false] = ACTIONS(1465), - [sym_null] = ACTIONS(1465), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1467), - [anon_sym_ATimport] = ACTIONS(1467), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1465), - [anon_sym_ATcompatibility_alias] = ACTIONS(1467), - [anon_sym_ATprotocol] = ACTIONS(1467), - [anon_sym_ATclass] = ACTIONS(1467), - [anon_sym_ATinterface] = ACTIONS(1467), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1465), - [sym_method_attribute_specifier] = ACTIONS(1465), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1465), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1465), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1465), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1465), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1465), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1465), - [anon_sym_NS_AVAILABLE] = ACTIONS(1465), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1465), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_API_AVAILABLE] = ACTIONS(1465), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1465), - [anon_sym_API_DEPRECATED] = ACTIONS(1465), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1465), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1465), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1465), - [anon_sym___deprecated_msg] = ACTIONS(1465), - [anon_sym___deprecated_enum_msg] = ACTIONS(1465), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1465), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1465), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1465), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1465), - [anon_sym_ATimplementation] = ACTIONS(1467), - [anon_sym_typeof] = ACTIONS(1465), - [anon_sym___typeof] = ACTIONS(1465), - [anon_sym___typeof__] = ACTIONS(1465), - [sym_self] = ACTIONS(1465), - [sym_super] = ACTIONS(1465), - [sym_nil] = ACTIONS(1465), - [sym_id] = ACTIONS(1465), - [sym_instancetype] = ACTIONS(1465), - [sym_Class] = ACTIONS(1465), - [sym_SEL] = ACTIONS(1465), - [sym_IMP] = ACTIONS(1465), - [sym_BOOL] = ACTIONS(1465), - [sym_auto] = ACTIONS(1465), - [anon_sym_ATautoreleasepool] = ACTIONS(1467), - [anon_sym_ATsynchronized] = ACTIONS(1467), - [anon_sym_ATtry] = ACTIONS(1467), - [anon_sym_ATcatch] = ACTIONS(1467), - [anon_sym_ATfinally] = ACTIONS(1467), - [anon_sym_ATthrow] = ACTIONS(1467), - [anon_sym_ATselector] = ACTIONS(1467), - [anon_sym_ATencode] = ACTIONS(1467), - [anon_sym_AT] = ACTIONS(1465), - [sym_YES] = ACTIONS(1465), - [sym_NO] = ACTIONS(1465), - [anon_sym___builtin_available] = ACTIONS(1465), - [anon_sym_ATavailable] = ACTIONS(1467), - [anon_sym_va_arg] = ACTIONS(1465), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [261] = { - [ts_builtin_sym_end] = ACTIONS(1195), - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1195), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [anon_sym_RPAREN] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_RBRACE] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_out] = ACTIONS(1197), - [anon_sym_inout] = ACTIONS(1197), - [anon_sym_bycopy] = ACTIONS(1197), - [anon_sym_byref] = ACTIONS(1197), - [anon_sym_oneway] = ACTIONS(1197), - [anon_sym__Nullable] = ACTIONS(1197), - [anon_sym__Nonnull] = ACTIONS(1197), - [anon_sym__Nullable_result] = ACTIONS(1197), - [anon_sym__Null_unspecified] = ACTIONS(1197), - [anon_sym___autoreleasing] = ACTIONS(1197), - [anon_sym___nullable] = ACTIONS(1197), - [anon_sym___nonnull] = ACTIONS(1197), - [anon_sym___strong] = ACTIONS(1197), - [anon_sym___weak] = ACTIONS(1197), - [anon_sym___bridge] = ACTIONS(1197), - [anon_sym___bridge_transfer] = ACTIONS(1197), - [anon_sym___bridge_retained] = ACTIONS(1197), - [anon_sym___unsafe_unretained] = ACTIONS(1197), - [anon_sym___block] = ACTIONS(1197), - [anon_sym___kindof] = ACTIONS(1197), - [anon_sym___unused] = ACTIONS(1197), - [anon_sym__Complex] = ACTIONS(1197), - [anon_sym___complex] = ACTIONS(1197), - [anon_sym_IBOutlet] = ACTIONS(1197), - [anon_sym_IBInspectable] = ACTIONS(1197), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_NS_ENUM] = ACTIONS(1197), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1197), - [anon_sym_NS_OPTIONS] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [sym_null] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1195), - [anon_sym_ATimport] = ACTIONS(1195), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1197), - [anon_sym_ATcompatibility_alias] = ACTIONS(1195), - [anon_sym_ATprotocol] = ACTIONS(1195), - [anon_sym_ATclass] = ACTIONS(1195), - [anon_sym_ATinterface] = ACTIONS(1195), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1197), - [sym_method_attribute_specifier] = ACTIONS(1197), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1197), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE] = ACTIONS(1197), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_API_AVAILABLE] = ACTIONS(1197), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_API_DEPRECATED] = ACTIONS(1197), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1197), - [anon_sym___deprecated_msg] = ACTIONS(1197), - [anon_sym___deprecated_enum_msg] = ACTIONS(1197), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1197), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1197), - [anon_sym_ATimplementation] = ACTIONS(1195), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym___typeof] = ACTIONS(1197), - [anon_sym___typeof__] = ACTIONS(1197), - [sym_self] = ACTIONS(1197), - [sym_super] = ACTIONS(1197), - [sym_nil] = ACTIONS(1197), - [sym_id] = ACTIONS(1197), - [sym_instancetype] = ACTIONS(1197), - [sym_Class] = ACTIONS(1197), - [sym_SEL] = ACTIONS(1197), - [sym_IMP] = ACTIONS(1197), - [sym_BOOL] = ACTIONS(1197), - [sym_auto] = ACTIONS(1197), - [anon_sym_ATautoreleasepool] = ACTIONS(1195), - [anon_sym_ATsynchronized] = ACTIONS(1195), - [anon_sym_ATtry] = ACTIONS(1195), - [anon_sym_ATcatch] = ACTIONS(1195), - [anon_sym_ATfinally] = ACTIONS(1195), - [anon_sym_ATthrow] = ACTIONS(1195), - [anon_sym_ATselector] = ACTIONS(1195), - [anon_sym_ATencode] = ACTIONS(1195), - [anon_sym_AT] = ACTIONS(1197), - [sym_YES] = ACTIONS(1197), - [sym_NO] = ACTIONS(1197), - [anon_sym___builtin_available] = ACTIONS(1197), - [anon_sym_ATavailable] = ACTIONS(1195), - [anon_sym_va_arg] = ACTIONS(1197), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [262] = { - [ts_builtin_sym_end] = ACTIONS(1195), - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1195), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [anon_sym_RPAREN] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_RBRACE] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_out] = ACTIONS(1197), - [anon_sym_inout] = ACTIONS(1197), - [anon_sym_bycopy] = ACTIONS(1197), - [anon_sym_byref] = ACTIONS(1197), - [anon_sym_oneway] = ACTIONS(1197), - [anon_sym__Nullable] = ACTIONS(1197), - [anon_sym__Nonnull] = ACTIONS(1197), - [anon_sym__Nullable_result] = ACTIONS(1197), - [anon_sym__Null_unspecified] = ACTIONS(1197), - [anon_sym___autoreleasing] = ACTIONS(1197), - [anon_sym___nullable] = ACTIONS(1197), - [anon_sym___nonnull] = ACTIONS(1197), - [anon_sym___strong] = ACTIONS(1197), - [anon_sym___weak] = ACTIONS(1197), - [anon_sym___bridge] = ACTIONS(1197), - [anon_sym___bridge_transfer] = ACTIONS(1197), - [anon_sym___bridge_retained] = ACTIONS(1197), - [anon_sym___unsafe_unretained] = ACTIONS(1197), - [anon_sym___block] = ACTIONS(1197), - [anon_sym___kindof] = ACTIONS(1197), - [anon_sym___unused] = ACTIONS(1197), - [anon_sym__Complex] = ACTIONS(1197), - [anon_sym___complex] = ACTIONS(1197), - [anon_sym_IBOutlet] = ACTIONS(1197), - [anon_sym_IBInspectable] = ACTIONS(1197), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_NS_ENUM] = ACTIONS(1197), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1197), - [anon_sym_NS_OPTIONS] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [sym_null] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1195), - [anon_sym_ATimport] = ACTIONS(1195), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1197), - [anon_sym_ATcompatibility_alias] = ACTIONS(1195), - [anon_sym_ATprotocol] = ACTIONS(1195), - [anon_sym_ATclass] = ACTIONS(1195), - [anon_sym_ATinterface] = ACTIONS(1195), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1197), - [sym_method_attribute_specifier] = ACTIONS(1197), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1197), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE] = ACTIONS(1197), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_API_AVAILABLE] = ACTIONS(1197), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_API_DEPRECATED] = ACTIONS(1197), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1197), - [anon_sym___deprecated_msg] = ACTIONS(1197), - [anon_sym___deprecated_enum_msg] = ACTIONS(1197), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1197), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1197), - [anon_sym_ATimplementation] = ACTIONS(1195), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym___typeof] = ACTIONS(1197), - [anon_sym___typeof__] = ACTIONS(1197), - [sym_self] = ACTIONS(1197), - [sym_super] = ACTIONS(1197), - [sym_nil] = ACTIONS(1197), - [sym_id] = ACTIONS(1197), - [sym_instancetype] = ACTIONS(1197), - [sym_Class] = ACTIONS(1197), - [sym_SEL] = ACTIONS(1197), - [sym_IMP] = ACTIONS(1197), - [sym_BOOL] = ACTIONS(1197), - [sym_auto] = ACTIONS(1197), - [anon_sym_ATautoreleasepool] = ACTIONS(1195), - [anon_sym_ATsynchronized] = ACTIONS(1195), - [anon_sym_ATtry] = ACTIONS(1195), - [anon_sym_ATcatch] = ACTIONS(1195), - [anon_sym_ATfinally] = ACTIONS(1195), - [anon_sym_ATthrow] = ACTIONS(1195), - [anon_sym_ATselector] = ACTIONS(1195), - [anon_sym_ATencode] = ACTIONS(1195), - [anon_sym_AT] = ACTIONS(1197), - [sym_YES] = ACTIONS(1197), - [sym_NO] = ACTIONS(1197), - [anon_sym___builtin_available] = ACTIONS(1197), - [anon_sym_ATavailable] = ACTIONS(1195), - [anon_sym_va_arg] = ACTIONS(1197), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [263] = { - [ts_builtin_sym_end] = ACTIONS(1415), - [sym_identifier] = ACTIONS(1413), - [aux_sym_preproc_include_token1] = ACTIONS(1415), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [anon_sym_RPAREN] = ACTIONS(1415), - [aux_sym_preproc_if_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym___attribute] = ACTIONS(1413), - [anon_sym___attribute__] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1413), - [anon_sym___cdecl] = ACTIONS(1413), - [anon_sym___clrcall] = ACTIONS(1413), - [anon_sym___stdcall] = ACTIONS(1413), - [anon_sym___fastcall] = ACTIONS(1413), - [anon_sym___thiscall] = ACTIONS(1413), - [anon_sym___vectorcall] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_RBRACE] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_auto] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_inline] = ACTIONS(1413), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_volatile] = ACTIONS(1413), - [anon_sym_restrict] = ACTIONS(1413), - [anon_sym__Atomic] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_out] = ACTIONS(1413), - [anon_sym_inout] = ACTIONS(1413), - [anon_sym_bycopy] = ACTIONS(1413), - [anon_sym_byref] = ACTIONS(1413), - [anon_sym_oneway] = ACTIONS(1413), - [anon_sym__Nullable] = ACTIONS(1413), - [anon_sym__Nonnull] = ACTIONS(1413), - [anon_sym__Nullable_result] = ACTIONS(1413), - [anon_sym__Null_unspecified] = ACTIONS(1413), - [anon_sym___autoreleasing] = ACTIONS(1413), - [anon_sym___nullable] = ACTIONS(1413), - [anon_sym___nonnull] = ACTIONS(1413), - [anon_sym___strong] = ACTIONS(1413), - [anon_sym___weak] = ACTIONS(1413), - [anon_sym___bridge] = ACTIONS(1413), - [anon_sym___bridge_transfer] = ACTIONS(1413), - [anon_sym___bridge_retained] = ACTIONS(1413), - [anon_sym___unsafe_unretained] = ACTIONS(1413), - [anon_sym___block] = ACTIONS(1413), - [anon_sym___kindof] = ACTIONS(1413), - [anon_sym___unused] = ACTIONS(1413), - [anon_sym__Complex] = ACTIONS(1413), - [anon_sym___complex] = ACTIONS(1413), - [anon_sym_IBOutlet] = ACTIONS(1413), - [anon_sym_IBInspectable] = ACTIONS(1413), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1413), - [anon_sym_unsigned] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [sym_primitive_type] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_NS_ENUM] = ACTIONS(1413), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1413), - [anon_sym_NS_OPTIONS] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_case] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_goto] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_sizeof] = ACTIONS(1413), - [sym_number_literal] = ACTIONS(1415), - [anon_sym_L_SQUOTE] = ACTIONS(1415), - [anon_sym_u_SQUOTE] = ACTIONS(1415), - [anon_sym_U_SQUOTE] = ACTIONS(1415), - [anon_sym_u8_SQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_L_DQUOTE] = ACTIONS(1415), - [anon_sym_u_DQUOTE] = ACTIONS(1415), - [anon_sym_U_DQUOTE] = ACTIONS(1415), - [anon_sym_u8_DQUOTE] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [sym_true] = ACTIONS(1413), - [sym_false] = ACTIONS(1413), - [sym_null] = ACTIONS(1413), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1415), - [anon_sym_ATimport] = ACTIONS(1415), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1413), - [anon_sym_ATcompatibility_alias] = ACTIONS(1415), - [anon_sym_ATprotocol] = ACTIONS(1415), - [anon_sym_ATclass] = ACTIONS(1415), - [anon_sym_ATinterface] = ACTIONS(1415), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1413), - [sym_method_attribute_specifier] = ACTIONS(1413), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1413), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE] = ACTIONS(1413), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_API_AVAILABLE] = ACTIONS(1413), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_API_DEPRECATED] = ACTIONS(1413), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1413), - [anon_sym___deprecated_msg] = ACTIONS(1413), - [anon_sym___deprecated_enum_msg] = ACTIONS(1413), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1413), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1413), - [anon_sym_ATimplementation] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym___typeof] = ACTIONS(1413), - [anon_sym___typeof__] = ACTIONS(1413), - [sym_self] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_nil] = ACTIONS(1413), - [sym_id] = ACTIONS(1413), - [sym_instancetype] = ACTIONS(1413), - [sym_Class] = ACTIONS(1413), - [sym_SEL] = ACTIONS(1413), - [sym_IMP] = ACTIONS(1413), - [sym_BOOL] = ACTIONS(1413), - [sym_auto] = ACTIONS(1413), - [anon_sym_ATautoreleasepool] = ACTIONS(1415), - [anon_sym_ATsynchronized] = ACTIONS(1415), - [anon_sym_ATtry] = ACTIONS(1415), - [anon_sym_ATcatch] = ACTIONS(1415), - [anon_sym_ATfinally] = ACTIONS(1415), - [anon_sym_ATthrow] = ACTIONS(1415), - [anon_sym_ATselector] = ACTIONS(1415), - [anon_sym_ATencode] = ACTIONS(1415), - [anon_sym_AT] = ACTIONS(1413), - [sym_YES] = ACTIONS(1413), - [sym_NO] = ACTIONS(1413), - [anon_sym___builtin_available] = ACTIONS(1413), - [anon_sym_ATavailable] = ACTIONS(1415), - [anon_sym_va_arg] = ACTIONS(1413), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [264] = { [ts_builtin_sym_end] = ACTIONS(1621), [sym_identifier] = ACTIONS(1623), [aux_sym_preproc_include_token1] = ACTIONS(1621), @@ -72227,9 +71548,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1623), [sym_primitive_type] = ACTIONS(1623), [anon_sym_enum] = ACTIONS(1623), - [anon_sym_NS_ENUM] = ACTIONS(1623), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1623), - [anon_sym_NS_OPTIONS] = ACTIONS(1623), [anon_sym_struct] = ACTIONS(1623), [anon_sym_union] = ACTIONS(1623), [anon_sym_if] = ACTIONS(1623), @@ -72296,6 +71614,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1623), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1623), [anon_sym_ATimplementation] = ACTIONS(1621), + [anon_sym_NS_ENUM] = ACTIONS(1623), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1623), + [anon_sym_NS_OPTIONS] = ACTIONS(1623), [anon_sym_typeof] = ACTIONS(1623), [anon_sym___typeof] = ACTIONS(1623), [anon_sym___typeof__] = ACTIONS(1623), @@ -72330,361 +71651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [265] = { - [ts_builtin_sym_end] = ACTIONS(1415), - [sym_identifier] = ACTIONS(1413), - [aux_sym_preproc_include_token1] = ACTIONS(1415), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [anon_sym_RPAREN] = ACTIONS(1415), - [aux_sym_preproc_if_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym___attribute] = ACTIONS(1413), - [anon_sym___attribute__] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1413), - [anon_sym___cdecl] = ACTIONS(1413), - [anon_sym___clrcall] = ACTIONS(1413), - [anon_sym___stdcall] = ACTIONS(1413), - [anon_sym___fastcall] = ACTIONS(1413), - [anon_sym___thiscall] = ACTIONS(1413), - [anon_sym___vectorcall] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_RBRACE] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_auto] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_inline] = ACTIONS(1413), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_volatile] = ACTIONS(1413), - [anon_sym_restrict] = ACTIONS(1413), - [anon_sym__Atomic] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_out] = ACTIONS(1413), - [anon_sym_inout] = ACTIONS(1413), - [anon_sym_bycopy] = ACTIONS(1413), - [anon_sym_byref] = ACTIONS(1413), - [anon_sym_oneway] = ACTIONS(1413), - [anon_sym__Nullable] = ACTIONS(1413), - [anon_sym__Nonnull] = ACTIONS(1413), - [anon_sym__Nullable_result] = ACTIONS(1413), - [anon_sym__Null_unspecified] = ACTIONS(1413), - [anon_sym___autoreleasing] = ACTIONS(1413), - [anon_sym___nullable] = ACTIONS(1413), - [anon_sym___nonnull] = ACTIONS(1413), - [anon_sym___strong] = ACTIONS(1413), - [anon_sym___weak] = ACTIONS(1413), - [anon_sym___bridge] = ACTIONS(1413), - [anon_sym___bridge_transfer] = ACTIONS(1413), - [anon_sym___bridge_retained] = ACTIONS(1413), - [anon_sym___unsafe_unretained] = ACTIONS(1413), - [anon_sym___block] = ACTIONS(1413), - [anon_sym___kindof] = ACTIONS(1413), - [anon_sym___unused] = ACTIONS(1413), - [anon_sym__Complex] = ACTIONS(1413), - [anon_sym___complex] = ACTIONS(1413), - [anon_sym_IBOutlet] = ACTIONS(1413), - [anon_sym_IBInspectable] = ACTIONS(1413), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1413), - [anon_sym_unsigned] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [sym_primitive_type] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_NS_ENUM] = ACTIONS(1413), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1413), - [anon_sym_NS_OPTIONS] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_case] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_goto] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_sizeof] = ACTIONS(1413), - [sym_number_literal] = ACTIONS(1415), - [anon_sym_L_SQUOTE] = ACTIONS(1415), - [anon_sym_u_SQUOTE] = ACTIONS(1415), - [anon_sym_U_SQUOTE] = ACTIONS(1415), - [anon_sym_u8_SQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_L_DQUOTE] = ACTIONS(1415), - [anon_sym_u_DQUOTE] = ACTIONS(1415), - [anon_sym_U_DQUOTE] = ACTIONS(1415), - [anon_sym_u8_DQUOTE] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [sym_true] = ACTIONS(1413), - [sym_false] = ACTIONS(1413), - [sym_null] = ACTIONS(1413), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1415), - [anon_sym_ATimport] = ACTIONS(1415), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1413), - [anon_sym_ATcompatibility_alias] = ACTIONS(1415), - [anon_sym_ATprotocol] = ACTIONS(1415), - [anon_sym_ATclass] = ACTIONS(1415), - [anon_sym_ATinterface] = ACTIONS(1415), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1413), - [sym_method_attribute_specifier] = ACTIONS(1413), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1413), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE] = ACTIONS(1413), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_API_AVAILABLE] = ACTIONS(1413), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_API_DEPRECATED] = ACTIONS(1413), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1413), - [anon_sym___deprecated_msg] = ACTIONS(1413), - [anon_sym___deprecated_enum_msg] = ACTIONS(1413), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1413), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1413), - [anon_sym_ATimplementation] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym___typeof] = ACTIONS(1413), - [anon_sym___typeof__] = ACTIONS(1413), - [sym_self] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_nil] = ACTIONS(1413), - [sym_id] = ACTIONS(1413), - [sym_instancetype] = ACTIONS(1413), - [sym_Class] = ACTIONS(1413), - [sym_SEL] = ACTIONS(1413), - [sym_IMP] = ACTIONS(1413), - [sym_BOOL] = ACTIONS(1413), - [sym_auto] = ACTIONS(1413), - [anon_sym_ATautoreleasepool] = ACTIONS(1415), - [anon_sym_ATsynchronized] = ACTIONS(1415), - [anon_sym_ATtry] = ACTIONS(1415), - [anon_sym_ATcatch] = ACTIONS(1415), - [anon_sym_ATfinally] = ACTIONS(1415), - [anon_sym_ATthrow] = ACTIONS(1415), - [anon_sym_ATselector] = ACTIONS(1415), - [anon_sym_ATencode] = ACTIONS(1415), - [anon_sym_AT] = ACTIONS(1413), - [sym_YES] = ACTIONS(1413), - [sym_NO] = ACTIONS(1413), - [anon_sym___builtin_available] = ACTIONS(1413), - [anon_sym_ATavailable] = ACTIONS(1415), - [anon_sym_va_arg] = ACTIONS(1413), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [266] = { - [ts_builtin_sym_end] = ACTIONS(1411), - [sym_identifier] = ACTIONS(1409), - [aux_sym_preproc_include_token1] = ACTIONS(1411), - [aux_sym_preproc_def_token1] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [aux_sym_preproc_if_token1] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1409), - [anon_sym_LPAREN2] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_typedef] = ACTIONS(1409), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym___attribute] = ACTIONS(1409), - [anon_sym___attribute__] = ACTIONS(1409), - [anon_sym___declspec] = ACTIONS(1409), - [anon_sym___cdecl] = ACTIONS(1409), - [anon_sym___clrcall] = ACTIONS(1409), - [anon_sym___stdcall] = ACTIONS(1409), - [anon_sym___fastcall] = ACTIONS(1409), - [anon_sym___thiscall] = ACTIONS(1409), - [anon_sym___vectorcall] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_auto] = ACTIONS(1409), - [anon_sym_register] = ACTIONS(1409), - [anon_sym_inline] = ACTIONS(1409), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_volatile] = ACTIONS(1409), - [anon_sym_restrict] = ACTIONS(1409), - [anon_sym__Atomic] = ACTIONS(1409), - [anon_sym_in] = ACTIONS(1409), - [anon_sym_out] = ACTIONS(1409), - [anon_sym_inout] = ACTIONS(1409), - [anon_sym_bycopy] = ACTIONS(1409), - [anon_sym_byref] = ACTIONS(1409), - [anon_sym_oneway] = ACTIONS(1409), - [anon_sym__Nullable] = ACTIONS(1409), - [anon_sym__Nonnull] = ACTIONS(1409), - [anon_sym__Nullable_result] = ACTIONS(1409), - [anon_sym__Null_unspecified] = ACTIONS(1409), - [anon_sym___autoreleasing] = ACTIONS(1409), - [anon_sym___nullable] = ACTIONS(1409), - [anon_sym___nonnull] = ACTIONS(1409), - [anon_sym___strong] = ACTIONS(1409), - [anon_sym___weak] = ACTIONS(1409), - [anon_sym___bridge] = ACTIONS(1409), - [anon_sym___bridge_transfer] = ACTIONS(1409), - [anon_sym___bridge_retained] = ACTIONS(1409), - [anon_sym___unsafe_unretained] = ACTIONS(1409), - [anon_sym___block] = ACTIONS(1409), - [anon_sym___kindof] = ACTIONS(1409), - [anon_sym___unused] = ACTIONS(1409), - [anon_sym__Complex] = ACTIONS(1409), - [anon_sym___complex] = ACTIONS(1409), - [anon_sym_IBOutlet] = ACTIONS(1409), - [anon_sym_IBInspectable] = ACTIONS(1409), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1409), - [anon_sym_signed] = ACTIONS(1409), - [anon_sym_unsigned] = ACTIONS(1409), - [anon_sym_long] = ACTIONS(1409), - [anon_sym_short] = ACTIONS(1409), - [sym_primitive_type] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_NS_ENUM] = ACTIONS(1409), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1409), - [anon_sym_NS_OPTIONS] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_switch] = ACTIONS(1409), - [anon_sym_case] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_do] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_goto] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_sizeof] = ACTIONS(1409), - [sym_number_literal] = ACTIONS(1411), - [anon_sym_L_SQUOTE] = ACTIONS(1411), - [anon_sym_u_SQUOTE] = ACTIONS(1411), - [anon_sym_U_SQUOTE] = ACTIONS(1411), - [anon_sym_u8_SQUOTE] = ACTIONS(1411), - [anon_sym_SQUOTE] = ACTIONS(1411), - [anon_sym_L_DQUOTE] = ACTIONS(1411), - [anon_sym_u_DQUOTE] = ACTIONS(1411), - [anon_sym_U_DQUOTE] = ACTIONS(1411), - [anon_sym_u8_DQUOTE] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym_true] = ACTIONS(1409), - [sym_false] = ACTIONS(1409), - [sym_null] = ACTIONS(1409), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1411), - [anon_sym_ATimport] = ACTIONS(1411), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1409), - [anon_sym_ATcompatibility_alias] = ACTIONS(1411), - [anon_sym_ATprotocol] = ACTIONS(1411), - [anon_sym_ATclass] = ACTIONS(1411), - [anon_sym_ATinterface] = ACTIONS(1411), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1409), - [sym_method_attribute_specifier] = ACTIONS(1409), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1409), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1409), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1409), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1409), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1409), - [anon_sym_NS_AVAILABLE] = ACTIONS(1409), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1409), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_API_AVAILABLE] = ACTIONS(1409), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_API_DEPRECATED] = ACTIONS(1409), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1409), - [anon_sym___deprecated_msg] = ACTIONS(1409), - [anon_sym___deprecated_enum_msg] = ACTIONS(1409), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1409), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1409), - [anon_sym_ATimplementation] = ACTIONS(1411), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___typeof] = ACTIONS(1409), - [anon_sym___typeof__] = ACTIONS(1409), - [sym_self] = ACTIONS(1409), - [sym_super] = ACTIONS(1409), - [sym_nil] = ACTIONS(1409), - [sym_id] = ACTIONS(1409), - [sym_instancetype] = ACTIONS(1409), - [sym_Class] = ACTIONS(1409), - [sym_SEL] = ACTIONS(1409), - [sym_IMP] = ACTIONS(1409), - [sym_BOOL] = ACTIONS(1409), - [sym_auto] = ACTIONS(1409), - [anon_sym_ATautoreleasepool] = ACTIONS(1411), - [anon_sym_ATsynchronized] = ACTIONS(1411), - [anon_sym_ATtry] = ACTIONS(1411), - [anon_sym_ATcatch] = ACTIONS(1411), - [anon_sym_ATfinally] = ACTIONS(1411), - [anon_sym_ATthrow] = ACTIONS(1411), - [anon_sym_ATselector] = ACTIONS(1411), - [anon_sym_ATencode] = ACTIONS(1411), - [anon_sym_AT] = ACTIONS(1409), - [sym_YES] = ACTIONS(1409), - [sym_NO] = ACTIONS(1409), - [anon_sym___builtin_available] = ACTIONS(1409), - [anon_sym_ATavailable] = ACTIONS(1411), - [anon_sym_va_arg] = ACTIONS(1409), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [267] = { + [261] = { [ts_builtin_sym_end] = ACTIONS(1625), [sym_identifier] = ACTIONS(1627), [aux_sym_preproc_include_token1] = ACTIONS(1625), @@ -72758,9 +71725,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1627), [sym_primitive_type] = ACTIONS(1627), [anon_sym_enum] = ACTIONS(1627), - [anon_sym_NS_ENUM] = ACTIONS(1627), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1627), - [anon_sym_NS_OPTIONS] = ACTIONS(1627), [anon_sym_struct] = ACTIONS(1627), [anon_sym_union] = ACTIONS(1627), [anon_sym_if] = ACTIONS(1627), @@ -72827,6 +71791,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1627), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1627), [anon_sym_ATimplementation] = ACTIONS(1625), + [anon_sym_NS_ENUM] = ACTIONS(1627), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1627), + [anon_sym_NS_OPTIONS] = ACTIONS(1627), [anon_sym_typeof] = ACTIONS(1627), [anon_sym___typeof] = ACTIONS(1627), [anon_sym___typeof__] = ACTIONS(1627), @@ -72861,538 +71828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [268] = { - [ts_builtin_sym_end] = ACTIONS(1415), - [sym_identifier] = ACTIONS(1413), - [aux_sym_preproc_include_token1] = ACTIONS(1415), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [anon_sym_RPAREN] = ACTIONS(1415), - [aux_sym_preproc_if_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym___attribute] = ACTIONS(1413), - [anon_sym___attribute__] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1413), - [anon_sym___cdecl] = ACTIONS(1413), - [anon_sym___clrcall] = ACTIONS(1413), - [anon_sym___stdcall] = ACTIONS(1413), - [anon_sym___fastcall] = ACTIONS(1413), - [anon_sym___thiscall] = ACTIONS(1413), - [anon_sym___vectorcall] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_RBRACE] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_auto] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_inline] = ACTIONS(1413), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_volatile] = ACTIONS(1413), - [anon_sym_restrict] = ACTIONS(1413), - [anon_sym__Atomic] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_out] = ACTIONS(1413), - [anon_sym_inout] = ACTIONS(1413), - [anon_sym_bycopy] = ACTIONS(1413), - [anon_sym_byref] = ACTIONS(1413), - [anon_sym_oneway] = ACTIONS(1413), - [anon_sym__Nullable] = ACTIONS(1413), - [anon_sym__Nonnull] = ACTIONS(1413), - [anon_sym__Nullable_result] = ACTIONS(1413), - [anon_sym__Null_unspecified] = ACTIONS(1413), - [anon_sym___autoreleasing] = ACTIONS(1413), - [anon_sym___nullable] = ACTIONS(1413), - [anon_sym___nonnull] = ACTIONS(1413), - [anon_sym___strong] = ACTIONS(1413), - [anon_sym___weak] = ACTIONS(1413), - [anon_sym___bridge] = ACTIONS(1413), - [anon_sym___bridge_transfer] = ACTIONS(1413), - [anon_sym___bridge_retained] = ACTIONS(1413), - [anon_sym___unsafe_unretained] = ACTIONS(1413), - [anon_sym___block] = ACTIONS(1413), - [anon_sym___kindof] = ACTIONS(1413), - [anon_sym___unused] = ACTIONS(1413), - [anon_sym__Complex] = ACTIONS(1413), - [anon_sym___complex] = ACTIONS(1413), - [anon_sym_IBOutlet] = ACTIONS(1413), - [anon_sym_IBInspectable] = ACTIONS(1413), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1413), - [anon_sym_unsigned] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [sym_primitive_type] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_NS_ENUM] = ACTIONS(1413), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1413), - [anon_sym_NS_OPTIONS] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_case] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_goto] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_sizeof] = ACTIONS(1413), - [sym_number_literal] = ACTIONS(1415), - [anon_sym_L_SQUOTE] = ACTIONS(1415), - [anon_sym_u_SQUOTE] = ACTIONS(1415), - [anon_sym_U_SQUOTE] = ACTIONS(1415), - [anon_sym_u8_SQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_L_DQUOTE] = ACTIONS(1415), - [anon_sym_u_DQUOTE] = ACTIONS(1415), - [anon_sym_U_DQUOTE] = ACTIONS(1415), - [anon_sym_u8_DQUOTE] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [sym_true] = ACTIONS(1413), - [sym_false] = ACTIONS(1413), - [sym_null] = ACTIONS(1413), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1415), - [anon_sym_ATimport] = ACTIONS(1415), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1413), - [anon_sym_ATcompatibility_alias] = ACTIONS(1415), - [anon_sym_ATprotocol] = ACTIONS(1415), - [anon_sym_ATclass] = ACTIONS(1415), - [anon_sym_ATinterface] = ACTIONS(1415), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1413), - [sym_method_attribute_specifier] = ACTIONS(1413), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1413), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE] = ACTIONS(1413), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_API_AVAILABLE] = ACTIONS(1413), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_API_DEPRECATED] = ACTIONS(1413), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1413), - [anon_sym___deprecated_msg] = ACTIONS(1413), - [anon_sym___deprecated_enum_msg] = ACTIONS(1413), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1413), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1413), - [anon_sym_ATimplementation] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym___typeof] = ACTIONS(1413), - [anon_sym___typeof__] = ACTIONS(1413), - [sym_self] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_nil] = ACTIONS(1413), - [sym_id] = ACTIONS(1413), - [sym_instancetype] = ACTIONS(1413), - [sym_Class] = ACTIONS(1413), - [sym_SEL] = ACTIONS(1413), - [sym_IMP] = ACTIONS(1413), - [sym_BOOL] = ACTIONS(1413), - [sym_auto] = ACTIONS(1413), - [anon_sym_ATautoreleasepool] = ACTIONS(1415), - [anon_sym_ATsynchronized] = ACTIONS(1415), - [anon_sym_ATtry] = ACTIONS(1415), - [anon_sym_ATcatch] = ACTIONS(1415), - [anon_sym_ATfinally] = ACTIONS(1415), - [anon_sym_ATthrow] = ACTIONS(1415), - [anon_sym_ATselector] = ACTIONS(1415), - [anon_sym_ATencode] = ACTIONS(1415), - [anon_sym_AT] = ACTIONS(1413), - [sym_YES] = ACTIONS(1413), - [sym_NO] = ACTIONS(1413), - [anon_sym___builtin_available] = ACTIONS(1413), - [anon_sym_ATavailable] = ACTIONS(1415), - [anon_sym_va_arg] = ACTIONS(1413), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [269] = { - [ts_builtin_sym_end] = ACTIONS(1415), - [sym_identifier] = ACTIONS(1413), - [aux_sym_preproc_include_token1] = ACTIONS(1415), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [anon_sym_RPAREN] = ACTIONS(1415), - [aux_sym_preproc_if_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym___attribute] = ACTIONS(1413), - [anon_sym___attribute__] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1413), - [anon_sym___cdecl] = ACTIONS(1413), - [anon_sym___clrcall] = ACTIONS(1413), - [anon_sym___stdcall] = ACTIONS(1413), - [anon_sym___fastcall] = ACTIONS(1413), - [anon_sym___thiscall] = ACTIONS(1413), - [anon_sym___vectorcall] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_RBRACE] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_auto] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_inline] = ACTIONS(1413), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_volatile] = ACTIONS(1413), - [anon_sym_restrict] = ACTIONS(1413), - [anon_sym__Atomic] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_out] = ACTIONS(1413), - [anon_sym_inout] = ACTIONS(1413), - [anon_sym_bycopy] = ACTIONS(1413), - [anon_sym_byref] = ACTIONS(1413), - [anon_sym_oneway] = ACTIONS(1413), - [anon_sym__Nullable] = ACTIONS(1413), - [anon_sym__Nonnull] = ACTIONS(1413), - [anon_sym__Nullable_result] = ACTIONS(1413), - [anon_sym__Null_unspecified] = ACTIONS(1413), - [anon_sym___autoreleasing] = ACTIONS(1413), - [anon_sym___nullable] = ACTIONS(1413), - [anon_sym___nonnull] = ACTIONS(1413), - [anon_sym___strong] = ACTIONS(1413), - [anon_sym___weak] = ACTIONS(1413), - [anon_sym___bridge] = ACTIONS(1413), - [anon_sym___bridge_transfer] = ACTIONS(1413), - [anon_sym___bridge_retained] = ACTIONS(1413), - [anon_sym___unsafe_unretained] = ACTIONS(1413), - [anon_sym___block] = ACTIONS(1413), - [anon_sym___kindof] = ACTIONS(1413), - [anon_sym___unused] = ACTIONS(1413), - [anon_sym__Complex] = ACTIONS(1413), - [anon_sym___complex] = ACTIONS(1413), - [anon_sym_IBOutlet] = ACTIONS(1413), - [anon_sym_IBInspectable] = ACTIONS(1413), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1413), - [anon_sym_unsigned] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [sym_primitive_type] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_NS_ENUM] = ACTIONS(1413), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1413), - [anon_sym_NS_OPTIONS] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_case] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_goto] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_sizeof] = ACTIONS(1413), - [sym_number_literal] = ACTIONS(1415), - [anon_sym_L_SQUOTE] = ACTIONS(1415), - [anon_sym_u_SQUOTE] = ACTIONS(1415), - [anon_sym_U_SQUOTE] = ACTIONS(1415), - [anon_sym_u8_SQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_L_DQUOTE] = ACTIONS(1415), - [anon_sym_u_DQUOTE] = ACTIONS(1415), - [anon_sym_U_DQUOTE] = ACTIONS(1415), - [anon_sym_u8_DQUOTE] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [sym_true] = ACTIONS(1413), - [sym_false] = ACTIONS(1413), - [sym_null] = ACTIONS(1413), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1415), - [anon_sym_ATimport] = ACTIONS(1415), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1413), - [anon_sym_ATcompatibility_alias] = ACTIONS(1415), - [anon_sym_ATprotocol] = ACTIONS(1415), - [anon_sym_ATclass] = ACTIONS(1415), - [anon_sym_ATinterface] = ACTIONS(1415), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1413), - [sym_method_attribute_specifier] = ACTIONS(1413), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1413), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE] = ACTIONS(1413), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_API_AVAILABLE] = ACTIONS(1413), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_API_DEPRECATED] = ACTIONS(1413), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1413), - [anon_sym___deprecated_msg] = ACTIONS(1413), - [anon_sym___deprecated_enum_msg] = ACTIONS(1413), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1413), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1413), - [anon_sym_ATimplementation] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym___typeof] = ACTIONS(1413), - [anon_sym___typeof__] = ACTIONS(1413), - [sym_self] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_nil] = ACTIONS(1413), - [sym_id] = ACTIONS(1413), - [sym_instancetype] = ACTIONS(1413), - [sym_Class] = ACTIONS(1413), - [sym_SEL] = ACTIONS(1413), - [sym_IMP] = ACTIONS(1413), - [sym_BOOL] = ACTIONS(1413), - [sym_auto] = ACTIONS(1413), - [anon_sym_ATautoreleasepool] = ACTIONS(1415), - [anon_sym_ATsynchronized] = ACTIONS(1415), - [anon_sym_ATtry] = ACTIONS(1415), - [anon_sym_ATcatch] = ACTIONS(1415), - [anon_sym_ATfinally] = ACTIONS(1415), - [anon_sym_ATthrow] = ACTIONS(1415), - [anon_sym_ATselector] = ACTIONS(1415), - [anon_sym_ATencode] = ACTIONS(1415), - [anon_sym_AT] = ACTIONS(1413), - [sym_YES] = ACTIONS(1413), - [sym_NO] = ACTIONS(1413), - [anon_sym___builtin_available] = ACTIONS(1413), - [anon_sym_ATavailable] = ACTIONS(1415), - [anon_sym_va_arg] = ACTIONS(1413), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [270] = { - [ts_builtin_sym_end] = ACTIONS(1411), - [sym_identifier] = ACTIONS(1409), - [aux_sym_preproc_include_token1] = ACTIONS(1411), - [aux_sym_preproc_def_token1] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [aux_sym_preproc_if_token1] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1409), - [anon_sym_LPAREN2] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_typedef] = ACTIONS(1409), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym___attribute] = ACTIONS(1409), - [anon_sym___attribute__] = ACTIONS(1409), - [anon_sym___declspec] = ACTIONS(1409), - [anon_sym___cdecl] = ACTIONS(1409), - [anon_sym___clrcall] = ACTIONS(1409), - [anon_sym___stdcall] = ACTIONS(1409), - [anon_sym___fastcall] = ACTIONS(1409), - [anon_sym___thiscall] = ACTIONS(1409), - [anon_sym___vectorcall] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_auto] = ACTIONS(1409), - [anon_sym_register] = ACTIONS(1409), - [anon_sym_inline] = ACTIONS(1409), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_volatile] = ACTIONS(1409), - [anon_sym_restrict] = ACTIONS(1409), - [anon_sym__Atomic] = ACTIONS(1409), - [anon_sym_in] = ACTIONS(1409), - [anon_sym_out] = ACTIONS(1409), - [anon_sym_inout] = ACTIONS(1409), - [anon_sym_bycopy] = ACTIONS(1409), - [anon_sym_byref] = ACTIONS(1409), - [anon_sym_oneway] = ACTIONS(1409), - [anon_sym__Nullable] = ACTIONS(1409), - [anon_sym__Nonnull] = ACTIONS(1409), - [anon_sym__Nullable_result] = ACTIONS(1409), - [anon_sym__Null_unspecified] = ACTIONS(1409), - [anon_sym___autoreleasing] = ACTIONS(1409), - [anon_sym___nullable] = ACTIONS(1409), - [anon_sym___nonnull] = ACTIONS(1409), - [anon_sym___strong] = ACTIONS(1409), - [anon_sym___weak] = ACTIONS(1409), - [anon_sym___bridge] = ACTIONS(1409), - [anon_sym___bridge_transfer] = ACTIONS(1409), - [anon_sym___bridge_retained] = ACTIONS(1409), - [anon_sym___unsafe_unretained] = ACTIONS(1409), - [anon_sym___block] = ACTIONS(1409), - [anon_sym___kindof] = ACTIONS(1409), - [anon_sym___unused] = ACTIONS(1409), - [anon_sym__Complex] = ACTIONS(1409), - [anon_sym___complex] = ACTIONS(1409), - [anon_sym_IBOutlet] = ACTIONS(1409), - [anon_sym_IBInspectable] = ACTIONS(1409), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1409), - [anon_sym_signed] = ACTIONS(1409), - [anon_sym_unsigned] = ACTIONS(1409), - [anon_sym_long] = ACTIONS(1409), - [anon_sym_short] = ACTIONS(1409), - [sym_primitive_type] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_NS_ENUM] = ACTIONS(1409), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1409), - [anon_sym_NS_OPTIONS] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_switch] = ACTIONS(1409), - [anon_sym_case] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_do] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_goto] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_sizeof] = ACTIONS(1409), - [sym_number_literal] = ACTIONS(1411), - [anon_sym_L_SQUOTE] = ACTIONS(1411), - [anon_sym_u_SQUOTE] = ACTIONS(1411), - [anon_sym_U_SQUOTE] = ACTIONS(1411), - [anon_sym_u8_SQUOTE] = ACTIONS(1411), - [anon_sym_SQUOTE] = ACTIONS(1411), - [anon_sym_L_DQUOTE] = ACTIONS(1411), - [anon_sym_u_DQUOTE] = ACTIONS(1411), - [anon_sym_U_DQUOTE] = ACTIONS(1411), - [anon_sym_u8_DQUOTE] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym_true] = ACTIONS(1409), - [sym_false] = ACTIONS(1409), - [sym_null] = ACTIONS(1409), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1411), - [anon_sym_ATimport] = ACTIONS(1411), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1409), - [anon_sym_ATcompatibility_alias] = ACTIONS(1411), - [anon_sym_ATprotocol] = ACTIONS(1411), - [anon_sym_ATclass] = ACTIONS(1411), - [anon_sym_ATinterface] = ACTIONS(1411), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1409), - [sym_method_attribute_specifier] = ACTIONS(1409), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1409), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1409), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1409), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1409), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1409), - [anon_sym_NS_AVAILABLE] = ACTIONS(1409), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1409), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_API_AVAILABLE] = ACTIONS(1409), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_API_DEPRECATED] = ACTIONS(1409), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1409), - [anon_sym___deprecated_msg] = ACTIONS(1409), - [anon_sym___deprecated_enum_msg] = ACTIONS(1409), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1409), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1409), - [anon_sym_ATimplementation] = ACTIONS(1411), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___typeof] = ACTIONS(1409), - [anon_sym___typeof__] = ACTIONS(1409), - [sym_self] = ACTIONS(1409), - [sym_super] = ACTIONS(1409), - [sym_nil] = ACTIONS(1409), - [sym_id] = ACTIONS(1409), - [sym_instancetype] = ACTIONS(1409), - [sym_Class] = ACTIONS(1409), - [sym_SEL] = ACTIONS(1409), - [sym_IMP] = ACTIONS(1409), - [sym_BOOL] = ACTIONS(1409), - [sym_auto] = ACTIONS(1409), - [anon_sym_ATautoreleasepool] = ACTIONS(1411), - [anon_sym_ATsynchronized] = ACTIONS(1411), - [anon_sym_ATtry] = ACTIONS(1411), - [anon_sym_ATcatch] = ACTIONS(1411), - [anon_sym_ATfinally] = ACTIONS(1411), - [anon_sym_ATthrow] = ACTIONS(1411), - [anon_sym_ATselector] = ACTIONS(1411), - [anon_sym_ATencode] = ACTIONS(1411), - [anon_sym_AT] = ACTIONS(1409), - [sym_YES] = ACTIONS(1409), - [sym_NO] = ACTIONS(1409), - [anon_sym___builtin_available] = ACTIONS(1409), - [anon_sym_ATavailable] = ACTIONS(1411), - [anon_sym_va_arg] = ACTIONS(1409), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [271] = { + [262] = { [sym_identifier] = ACTIONS(1629), [aux_sym_preproc_include_token1] = ACTIONS(1631), [aux_sym_preproc_def_token1] = ACTIONS(1631), @@ -73466,9 +71902,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1629), [sym_primitive_type] = ACTIONS(1629), [anon_sym_enum] = ACTIONS(1629), - [anon_sym_NS_ENUM] = ACTIONS(1629), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1629), - [anon_sym_NS_OPTIONS] = ACTIONS(1629), [anon_sym_struct] = ACTIONS(1629), [anon_sym_union] = ACTIONS(1629), [anon_sym_if] = ACTIONS(1629), @@ -73535,6 +71968,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1629), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1629), [anon_sym_ATimplementation] = ACTIONS(1631), + [anon_sym_NS_ENUM] = ACTIONS(1629), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1629), + [anon_sym_NS_OPTIONS] = ACTIONS(1629), [anon_sym_typeof] = ACTIONS(1629), [anon_sym___typeof] = ACTIONS(1629), [anon_sym___typeof__] = ACTIONS(1629), @@ -73569,7 +72005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [272] = { + [263] = { [sym_identifier] = ACTIONS(1633), [aux_sym_preproc_include_token1] = ACTIONS(1635), [aux_sym_preproc_def_token1] = ACTIONS(1635), @@ -73643,9 +72079,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1633), [sym_primitive_type] = ACTIONS(1633), [anon_sym_enum] = ACTIONS(1633), - [anon_sym_NS_ENUM] = ACTIONS(1633), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1633), - [anon_sym_NS_OPTIONS] = ACTIONS(1633), [anon_sym_struct] = ACTIONS(1633), [anon_sym_union] = ACTIONS(1633), [anon_sym_if] = ACTIONS(1633), @@ -73712,6 +72145,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1633), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1633), [anon_sym_ATimplementation] = ACTIONS(1635), + [anon_sym_NS_ENUM] = ACTIONS(1633), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1633), + [anon_sym_NS_OPTIONS] = ACTIONS(1633), [anon_sym_typeof] = ACTIONS(1633), [anon_sym___typeof] = ACTIONS(1633), [anon_sym___typeof__] = ACTIONS(1633), @@ -73746,361 +72182,1600 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, + [264] = { + [ts_builtin_sym_end] = ACTIONS(1459), + [sym_identifier] = ACTIONS(1457), + [aux_sym_preproc_include_token1] = ACTIONS(1459), + [aux_sym_preproc_def_token1] = ACTIONS(1459), + [anon_sym_RPAREN] = ACTIONS(1459), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1457), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1457), + [anon_sym_LPAREN2] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_typedef] = ACTIONS(1457), + [anon_sym_extern] = ACTIONS(1457), + [anon_sym___attribute] = ACTIONS(1457), + [anon_sym___attribute__] = ACTIONS(1457), + [anon_sym___declspec] = ACTIONS(1457), + [anon_sym___cdecl] = ACTIONS(1457), + [anon_sym___clrcall] = ACTIONS(1457), + [anon_sym___stdcall] = ACTIONS(1457), + [anon_sym___fastcall] = ACTIONS(1457), + [anon_sym___thiscall] = ACTIONS(1457), + [anon_sym___vectorcall] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1459), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_auto] = ACTIONS(1457), + [anon_sym_register] = ACTIONS(1457), + [anon_sym_inline] = ACTIONS(1457), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_volatile] = ACTIONS(1457), + [anon_sym_restrict] = ACTIONS(1457), + [anon_sym__Atomic] = ACTIONS(1457), + [anon_sym_in] = ACTIONS(1457), + [anon_sym_out] = ACTIONS(1457), + [anon_sym_inout] = ACTIONS(1457), + [anon_sym_bycopy] = ACTIONS(1457), + [anon_sym_byref] = ACTIONS(1457), + [anon_sym_oneway] = ACTIONS(1457), + [anon_sym__Nullable] = ACTIONS(1457), + [anon_sym__Nonnull] = ACTIONS(1457), + [anon_sym__Nullable_result] = ACTIONS(1457), + [anon_sym__Null_unspecified] = ACTIONS(1457), + [anon_sym___autoreleasing] = ACTIONS(1457), + [anon_sym___nullable] = ACTIONS(1457), + [anon_sym___nonnull] = ACTIONS(1457), + [anon_sym___strong] = ACTIONS(1457), + [anon_sym___weak] = ACTIONS(1457), + [anon_sym___bridge] = ACTIONS(1457), + [anon_sym___bridge_transfer] = ACTIONS(1457), + [anon_sym___bridge_retained] = ACTIONS(1457), + [anon_sym___unsafe_unretained] = ACTIONS(1457), + [anon_sym___block] = ACTIONS(1457), + [anon_sym___kindof] = ACTIONS(1457), + [anon_sym___unused] = ACTIONS(1457), + [anon_sym__Complex] = ACTIONS(1457), + [anon_sym___complex] = ACTIONS(1457), + [anon_sym_IBOutlet] = ACTIONS(1457), + [anon_sym_IBInspectable] = ACTIONS(1457), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1457), + [anon_sym_signed] = ACTIONS(1457), + [anon_sym_unsigned] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [sym_primitive_type] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1457), + [anon_sym_struct] = ACTIONS(1457), + [anon_sym_union] = ACTIONS(1457), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_else] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_case] = ACTIONS(1457), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_goto] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_sizeof] = ACTIONS(1457), + [sym_number_literal] = ACTIONS(1459), + [anon_sym_L_SQUOTE] = ACTIONS(1459), + [anon_sym_u_SQUOTE] = ACTIONS(1459), + [anon_sym_U_SQUOTE] = ACTIONS(1459), + [anon_sym_u8_SQUOTE] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_L_DQUOTE] = ACTIONS(1459), + [anon_sym_u_DQUOTE] = ACTIONS(1459), + [anon_sym_U_DQUOTE] = ACTIONS(1459), + [anon_sym_u8_DQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [sym_true] = ACTIONS(1457), + [sym_false] = ACTIONS(1457), + [sym_null] = ACTIONS(1457), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1459), + [anon_sym_ATimport] = ACTIONS(1459), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1457), + [anon_sym_ATcompatibility_alias] = ACTIONS(1459), + [anon_sym_ATprotocol] = ACTIONS(1459), + [anon_sym_ATclass] = ACTIONS(1459), + [anon_sym_ATinterface] = ACTIONS(1459), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1457), + [sym_method_attribute_specifier] = ACTIONS(1457), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1457), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1457), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1457), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1457), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1457), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1457), + [anon_sym_NS_AVAILABLE] = ACTIONS(1457), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1457), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1457), + [anon_sym_API_AVAILABLE] = ACTIONS(1457), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1457), + [anon_sym_API_DEPRECATED] = ACTIONS(1457), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1457), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1457), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1457), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1457), + [anon_sym___deprecated_msg] = ACTIONS(1457), + [anon_sym___deprecated_enum_msg] = ACTIONS(1457), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1457), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1457), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1457), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1457), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1457), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1457), + [anon_sym_ATimplementation] = ACTIONS(1459), + [anon_sym_NS_ENUM] = ACTIONS(1457), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1457), + [anon_sym_NS_OPTIONS] = ACTIONS(1457), + [anon_sym_typeof] = ACTIONS(1457), + [anon_sym___typeof] = ACTIONS(1457), + [anon_sym___typeof__] = ACTIONS(1457), + [sym_self] = ACTIONS(1457), + [sym_super] = ACTIONS(1457), + [sym_nil] = ACTIONS(1457), + [sym_id] = ACTIONS(1457), + [sym_instancetype] = ACTIONS(1457), + [sym_Class] = ACTIONS(1457), + [sym_SEL] = ACTIONS(1457), + [sym_IMP] = ACTIONS(1457), + [sym_BOOL] = ACTIONS(1457), + [sym_auto] = ACTIONS(1457), + [anon_sym_ATautoreleasepool] = ACTIONS(1459), + [anon_sym_ATsynchronized] = ACTIONS(1459), + [anon_sym_ATtry] = ACTIONS(1459), + [anon_sym_ATcatch] = ACTIONS(1459), + [anon_sym_ATfinally] = ACTIONS(1459), + [anon_sym_ATthrow] = ACTIONS(1459), + [anon_sym_ATselector] = ACTIONS(1459), + [anon_sym_ATencode] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1457), + [sym_YES] = ACTIONS(1457), + [sym_NO] = ACTIONS(1457), + [anon_sym___builtin_available] = ACTIONS(1457), + [anon_sym_ATavailable] = ACTIONS(1459), + [anon_sym_va_arg] = ACTIONS(1457), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [265] = { + [ts_builtin_sym_end] = ACTIONS(1467), + [sym_identifier] = ACTIONS(1465), + [aux_sym_preproc_include_token1] = ACTIONS(1467), + [aux_sym_preproc_def_token1] = ACTIONS(1467), + [anon_sym_RPAREN] = ACTIONS(1467), + [aux_sym_preproc_if_token1] = ACTIONS(1465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1465), + [anon_sym_LPAREN2] = ACTIONS(1467), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_typedef] = ACTIONS(1465), + [anon_sym_extern] = ACTIONS(1465), + [anon_sym___attribute] = ACTIONS(1465), + [anon_sym___attribute__] = ACTIONS(1465), + [anon_sym___declspec] = ACTIONS(1465), + [anon_sym___cdecl] = ACTIONS(1465), + [anon_sym___clrcall] = ACTIONS(1465), + [anon_sym___stdcall] = ACTIONS(1465), + [anon_sym___fastcall] = ACTIONS(1465), + [anon_sym___thiscall] = ACTIONS(1465), + [anon_sym___vectorcall] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_auto] = ACTIONS(1465), + [anon_sym_register] = ACTIONS(1465), + [anon_sym_inline] = ACTIONS(1465), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_volatile] = ACTIONS(1465), + [anon_sym_restrict] = ACTIONS(1465), + [anon_sym__Atomic] = ACTIONS(1465), + [anon_sym_in] = ACTIONS(1465), + [anon_sym_out] = ACTIONS(1465), + [anon_sym_inout] = ACTIONS(1465), + [anon_sym_bycopy] = ACTIONS(1465), + [anon_sym_byref] = ACTIONS(1465), + [anon_sym_oneway] = ACTIONS(1465), + [anon_sym__Nullable] = ACTIONS(1465), + [anon_sym__Nonnull] = ACTIONS(1465), + [anon_sym__Nullable_result] = ACTIONS(1465), + [anon_sym__Null_unspecified] = ACTIONS(1465), + [anon_sym___autoreleasing] = ACTIONS(1465), + [anon_sym___nullable] = ACTIONS(1465), + [anon_sym___nonnull] = ACTIONS(1465), + [anon_sym___strong] = ACTIONS(1465), + [anon_sym___weak] = ACTIONS(1465), + [anon_sym___bridge] = ACTIONS(1465), + [anon_sym___bridge_transfer] = ACTIONS(1465), + [anon_sym___bridge_retained] = ACTIONS(1465), + [anon_sym___unsafe_unretained] = ACTIONS(1465), + [anon_sym___block] = ACTIONS(1465), + [anon_sym___kindof] = ACTIONS(1465), + [anon_sym___unused] = ACTIONS(1465), + [anon_sym__Complex] = ACTIONS(1465), + [anon_sym___complex] = ACTIONS(1465), + [anon_sym_IBOutlet] = ACTIONS(1465), + [anon_sym_IBInspectable] = ACTIONS(1465), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1465), + [anon_sym_signed] = ACTIONS(1465), + [anon_sym_unsigned] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [sym_primitive_type] = ACTIONS(1465), + [anon_sym_enum] = ACTIONS(1465), + [anon_sym_struct] = ACTIONS(1465), + [anon_sym_union] = ACTIONS(1465), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_else] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_case] = ACTIONS(1465), + [anon_sym_default] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_goto] = ACTIONS(1465), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_sizeof] = ACTIONS(1465), + [sym_number_literal] = ACTIONS(1467), + [anon_sym_L_SQUOTE] = ACTIONS(1467), + [anon_sym_u_SQUOTE] = ACTIONS(1467), + [anon_sym_U_SQUOTE] = ACTIONS(1467), + [anon_sym_u8_SQUOTE] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_L_DQUOTE] = ACTIONS(1467), + [anon_sym_u_DQUOTE] = ACTIONS(1467), + [anon_sym_U_DQUOTE] = ACTIONS(1467), + [anon_sym_u8_DQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [sym_true] = ACTIONS(1465), + [sym_false] = ACTIONS(1465), + [sym_null] = ACTIONS(1465), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1467), + [anon_sym_ATimport] = ACTIONS(1467), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1465), + [anon_sym_ATcompatibility_alias] = ACTIONS(1467), + [anon_sym_ATprotocol] = ACTIONS(1467), + [anon_sym_ATclass] = ACTIONS(1467), + [anon_sym_ATinterface] = ACTIONS(1467), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1465), + [sym_method_attribute_specifier] = ACTIONS(1465), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1465), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1465), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1465), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1465), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1465), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1465), + [anon_sym_NS_AVAILABLE] = ACTIONS(1465), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1465), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1465), + [anon_sym_API_AVAILABLE] = ACTIONS(1465), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1465), + [anon_sym_API_DEPRECATED] = ACTIONS(1465), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1465), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1465), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1465), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1465), + [anon_sym___deprecated_msg] = ACTIONS(1465), + [anon_sym___deprecated_enum_msg] = ACTIONS(1465), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1465), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1465), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1465), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1465), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1465), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1465), + [anon_sym_ATimplementation] = ACTIONS(1467), + [anon_sym_NS_ENUM] = ACTIONS(1465), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1465), + [anon_sym_NS_OPTIONS] = ACTIONS(1465), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym___typeof] = ACTIONS(1465), + [anon_sym___typeof__] = ACTIONS(1465), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1465), + [sym_nil] = ACTIONS(1465), + [sym_id] = ACTIONS(1465), + [sym_instancetype] = ACTIONS(1465), + [sym_Class] = ACTIONS(1465), + [sym_SEL] = ACTIONS(1465), + [sym_IMP] = ACTIONS(1465), + [sym_BOOL] = ACTIONS(1465), + [sym_auto] = ACTIONS(1465), + [anon_sym_ATautoreleasepool] = ACTIONS(1467), + [anon_sym_ATsynchronized] = ACTIONS(1467), + [anon_sym_ATtry] = ACTIONS(1467), + [anon_sym_ATcatch] = ACTIONS(1467), + [anon_sym_ATfinally] = ACTIONS(1467), + [anon_sym_ATthrow] = ACTIONS(1467), + [anon_sym_ATselector] = ACTIONS(1467), + [anon_sym_ATencode] = ACTIONS(1467), + [anon_sym_AT] = ACTIONS(1465), + [sym_YES] = ACTIONS(1465), + [sym_NO] = ACTIONS(1465), + [anon_sym___builtin_available] = ACTIONS(1465), + [anon_sym_ATavailable] = ACTIONS(1467), + [anon_sym_va_arg] = ACTIONS(1465), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [266] = { + [ts_builtin_sym_end] = ACTIONS(1199), + [sym_identifier] = ACTIONS(1201), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [anon_sym_RPAREN] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1201), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1201), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1201), + [anon_sym_LPAREN2] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_CARET] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1201), + [anon_sym_extern] = ACTIONS(1201), + [anon_sym___attribute] = ACTIONS(1201), + [anon_sym___attribute__] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1201), + [anon_sym___cdecl] = ACTIONS(1201), + [anon_sym___clrcall] = ACTIONS(1201), + [anon_sym___stdcall] = ACTIONS(1201), + [anon_sym___fastcall] = ACTIONS(1201), + [anon_sym___thiscall] = ACTIONS(1201), + [anon_sym___vectorcall] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_RBRACE] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_auto] = ACTIONS(1201), + [anon_sym_register] = ACTIONS(1201), + [anon_sym_inline] = ACTIONS(1201), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_volatile] = ACTIONS(1201), + [anon_sym_restrict] = ACTIONS(1201), + [anon_sym__Atomic] = ACTIONS(1201), + [anon_sym_in] = ACTIONS(1201), + [anon_sym_out] = ACTIONS(1201), + [anon_sym_inout] = ACTIONS(1201), + [anon_sym_bycopy] = ACTIONS(1201), + [anon_sym_byref] = ACTIONS(1201), + [anon_sym_oneway] = ACTIONS(1201), + [anon_sym__Nullable] = ACTIONS(1201), + [anon_sym__Nonnull] = ACTIONS(1201), + [anon_sym__Nullable_result] = ACTIONS(1201), + [anon_sym__Null_unspecified] = ACTIONS(1201), + [anon_sym___autoreleasing] = ACTIONS(1201), + [anon_sym___nullable] = ACTIONS(1201), + [anon_sym___nonnull] = ACTIONS(1201), + [anon_sym___strong] = ACTIONS(1201), + [anon_sym___weak] = ACTIONS(1201), + [anon_sym___bridge] = ACTIONS(1201), + [anon_sym___bridge_transfer] = ACTIONS(1201), + [anon_sym___bridge_retained] = ACTIONS(1201), + [anon_sym___unsafe_unretained] = ACTIONS(1201), + [anon_sym___block] = ACTIONS(1201), + [anon_sym___kindof] = ACTIONS(1201), + [anon_sym___unused] = ACTIONS(1201), + [anon_sym__Complex] = ACTIONS(1201), + [anon_sym___complex] = ACTIONS(1201), + [anon_sym_IBOutlet] = ACTIONS(1201), + [anon_sym_IBInspectable] = ACTIONS(1201), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1201), + [anon_sym_unsigned] = ACTIONS(1201), + [anon_sym_long] = ACTIONS(1201), + [anon_sym_short] = ACTIONS(1201), + [sym_primitive_type] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_else] = ACTIONS(1201), + [anon_sym_switch] = ACTIONS(1201), + [anon_sym_case] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [sym_number_literal] = ACTIONS(1199), + [anon_sym_L_SQUOTE] = ACTIONS(1199), + [anon_sym_u_SQUOTE] = ACTIONS(1199), + [anon_sym_U_SQUOTE] = ACTIONS(1199), + [anon_sym_u8_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_L_DQUOTE] = ACTIONS(1199), + [anon_sym_u_DQUOTE] = ACTIONS(1199), + [anon_sym_U_DQUOTE] = ACTIONS(1199), + [anon_sym_u8_DQUOTE] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1199), + [sym_true] = ACTIONS(1201), + [sym_false] = ACTIONS(1201), + [sym_null] = ACTIONS(1201), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1199), + [anon_sym_ATimport] = ACTIONS(1199), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1201), + [anon_sym_ATcompatibility_alias] = ACTIONS(1199), + [anon_sym_ATprotocol] = ACTIONS(1199), + [anon_sym_ATclass] = ACTIONS(1199), + [anon_sym_ATinterface] = ACTIONS(1199), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1201), + [sym_method_attribute_specifier] = ACTIONS(1201), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1201), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1201), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1201), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1201), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1201), + [anon_sym_NS_AVAILABLE] = ACTIONS(1201), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1201), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_API_AVAILABLE] = ACTIONS(1201), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_API_DEPRECATED] = ACTIONS(1201), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1201), + [anon_sym___deprecated_msg] = ACTIONS(1201), + [anon_sym___deprecated_enum_msg] = ACTIONS(1201), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1201), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1201), + [anon_sym_ATimplementation] = ACTIONS(1199), + [anon_sym_NS_ENUM] = ACTIONS(1201), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1201), + [anon_sym_NS_OPTIONS] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1201), + [anon_sym___typeof] = ACTIONS(1201), + [anon_sym___typeof__] = ACTIONS(1201), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_nil] = ACTIONS(1201), + [sym_id] = ACTIONS(1201), + [sym_instancetype] = ACTIONS(1201), + [sym_Class] = ACTIONS(1201), + [sym_SEL] = ACTIONS(1201), + [sym_IMP] = ACTIONS(1201), + [sym_BOOL] = ACTIONS(1201), + [sym_auto] = ACTIONS(1201), + [anon_sym_ATautoreleasepool] = ACTIONS(1199), + [anon_sym_ATsynchronized] = ACTIONS(1199), + [anon_sym_ATtry] = ACTIONS(1199), + [anon_sym_ATcatch] = ACTIONS(1199), + [anon_sym_ATfinally] = ACTIONS(1199), + [anon_sym_ATthrow] = ACTIONS(1199), + [anon_sym_ATselector] = ACTIONS(1199), + [anon_sym_ATencode] = ACTIONS(1199), + [anon_sym_AT] = ACTIONS(1201), + [sym_YES] = ACTIONS(1201), + [sym_NO] = ACTIONS(1201), + [anon_sym___builtin_available] = ACTIONS(1201), + [anon_sym_ATavailable] = ACTIONS(1199), + [anon_sym_va_arg] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [267] = { + [ts_builtin_sym_end] = ACTIONS(1637), + [sym_identifier] = ACTIONS(1639), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [anon_sym_RPAREN] = ACTIONS(1637), + [aux_sym_preproc_if_token1] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_CARET] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1639), + [anon_sym___cdecl] = ACTIONS(1639), + [anon_sym___clrcall] = ACTIONS(1639), + [anon_sym___stdcall] = ACTIONS(1639), + [anon_sym___fastcall] = ACTIONS(1639), + [anon_sym___thiscall] = ACTIONS(1639), + [anon_sym___vectorcall] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_RBRACE] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_auto] = ACTIONS(1639), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_inline] = ACTIONS(1639), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1639), + [anon_sym_restrict] = ACTIONS(1639), + [anon_sym__Atomic] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [anon_sym_out] = ACTIONS(1639), + [anon_sym_inout] = ACTIONS(1639), + [anon_sym_bycopy] = ACTIONS(1639), + [anon_sym_byref] = ACTIONS(1639), + [anon_sym_oneway] = ACTIONS(1639), + [anon_sym__Nullable] = ACTIONS(1639), + [anon_sym__Nonnull] = ACTIONS(1639), + [anon_sym__Nullable_result] = ACTIONS(1639), + [anon_sym__Null_unspecified] = ACTIONS(1639), + [anon_sym___autoreleasing] = ACTIONS(1639), + [anon_sym___nullable] = ACTIONS(1639), + [anon_sym___nonnull] = ACTIONS(1639), + [anon_sym___strong] = ACTIONS(1639), + [anon_sym___weak] = ACTIONS(1639), + [anon_sym___bridge] = ACTIONS(1639), + [anon_sym___bridge_transfer] = ACTIONS(1639), + [anon_sym___bridge_retained] = ACTIONS(1639), + [anon_sym___unsafe_unretained] = ACTIONS(1639), + [anon_sym___block] = ACTIONS(1639), + [anon_sym___kindof] = ACTIONS(1639), + [anon_sym___unused] = ACTIONS(1639), + [anon_sym__Complex] = ACTIONS(1639), + [anon_sym___complex] = ACTIONS(1639), + [anon_sym_IBOutlet] = ACTIONS(1639), + [anon_sym_IBInspectable] = ACTIONS(1639), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1639), + [anon_sym_unsigned] = ACTIONS(1639), + [anon_sym_long] = ACTIONS(1639), + [anon_sym_short] = ACTIONS(1639), + [sym_primitive_type] = ACTIONS(1639), + [anon_sym_enum] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_switch] = ACTIONS(1639), + [anon_sym_case] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_goto] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1637), + [anon_sym_sizeof] = ACTIONS(1639), + [sym_number_literal] = ACTIONS(1637), + [anon_sym_L_SQUOTE] = ACTIONS(1637), + [anon_sym_u_SQUOTE] = ACTIONS(1637), + [anon_sym_U_SQUOTE] = ACTIONS(1637), + [anon_sym_u8_SQUOTE] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1637), + [anon_sym_L_DQUOTE] = ACTIONS(1637), + [anon_sym_u_DQUOTE] = ACTIONS(1637), + [anon_sym_U_DQUOTE] = ACTIONS(1637), + [anon_sym_u8_DQUOTE] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1637), + [anon_sym_ATimport] = ACTIONS(1637), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1639), + [anon_sym_ATcompatibility_alias] = ACTIONS(1637), + [anon_sym_ATprotocol] = ACTIONS(1637), + [anon_sym_ATclass] = ACTIONS(1637), + [anon_sym_ATinterface] = ACTIONS(1637), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1639), + [sym_method_attribute_specifier] = ACTIONS(1639), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1639), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE] = ACTIONS(1639), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_API_AVAILABLE] = ACTIONS(1639), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_API_DEPRECATED] = ACTIONS(1639), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1639), + [anon_sym___deprecated_msg] = ACTIONS(1639), + [anon_sym___deprecated_enum_msg] = ACTIONS(1639), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1639), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1639), + [anon_sym_ATimplementation] = ACTIONS(1637), + [anon_sym_NS_ENUM] = ACTIONS(1639), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1639), + [anon_sym_NS_OPTIONS] = ACTIONS(1639), + [anon_sym_typeof] = ACTIONS(1639), + [anon_sym___typeof] = ACTIONS(1639), + [anon_sym___typeof__] = ACTIONS(1639), + [sym_self] = ACTIONS(1639), + [sym_super] = ACTIONS(1639), + [sym_nil] = ACTIONS(1639), + [sym_id] = ACTIONS(1639), + [sym_instancetype] = ACTIONS(1639), + [sym_Class] = ACTIONS(1639), + [sym_SEL] = ACTIONS(1639), + [sym_IMP] = ACTIONS(1639), + [sym_BOOL] = ACTIONS(1639), + [sym_auto] = ACTIONS(1639), + [anon_sym_ATautoreleasepool] = ACTIONS(1637), + [anon_sym_ATsynchronized] = ACTIONS(1637), + [anon_sym_ATtry] = ACTIONS(1637), + [anon_sym_ATcatch] = ACTIONS(1637), + [anon_sym_ATfinally] = ACTIONS(1637), + [anon_sym_ATthrow] = ACTIONS(1637), + [anon_sym_ATselector] = ACTIONS(1637), + [anon_sym_ATencode] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1639), + [sym_YES] = ACTIONS(1639), + [sym_NO] = ACTIONS(1639), + [anon_sym___builtin_available] = ACTIONS(1639), + [anon_sym_ATavailable] = ACTIONS(1637), + [anon_sym_va_arg] = ACTIONS(1639), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [268] = { + [ts_builtin_sym_end] = ACTIONS(1641), + [sym_identifier] = ACTIONS(1643), + [aux_sym_preproc_include_token1] = ACTIONS(1641), + [aux_sym_preproc_def_token1] = ACTIONS(1641), + [anon_sym_RPAREN] = ACTIONS(1641), + [aux_sym_preproc_if_token1] = ACTIONS(1643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1641), + [anon_sym_TILDE] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_CARET] = ACTIONS(1641), + [anon_sym_AMP] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_typedef] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym___attribute] = ACTIONS(1643), + [anon_sym___attribute__] = ACTIONS(1643), + [anon_sym___declspec] = ACTIONS(1643), + [anon_sym___cdecl] = ACTIONS(1643), + [anon_sym___clrcall] = ACTIONS(1643), + [anon_sym___stdcall] = ACTIONS(1643), + [anon_sym___fastcall] = ACTIONS(1643), + [anon_sym___thiscall] = ACTIONS(1643), + [anon_sym___vectorcall] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1643), + [anon_sym_auto] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_inline] = ACTIONS(1643), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [anon_sym_volatile] = ACTIONS(1643), + [anon_sym_restrict] = ACTIONS(1643), + [anon_sym__Atomic] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_out] = ACTIONS(1643), + [anon_sym_inout] = ACTIONS(1643), + [anon_sym_bycopy] = ACTIONS(1643), + [anon_sym_byref] = ACTIONS(1643), + [anon_sym_oneway] = ACTIONS(1643), + [anon_sym__Nullable] = ACTIONS(1643), + [anon_sym__Nonnull] = ACTIONS(1643), + [anon_sym__Nullable_result] = ACTIONS(1643), + [anon_sym__Null_unspecified] = ACTIONS(1643), + [anon_sym___autoreleasing] = ACTIONS(1643), + [anon_sym___nullable] = ACTIONS(1643), + [anon_sym___nonnull] = ACTIONS(1643), + [anon_sym___strong] = ACTIONS(1643), + [anon_sym___weak] = ACTIONS(1643), + [anon_sym___bridge] = ACTIONS(1643), + [anon_sym___bridge_transfer] = ACTIONS(1643), + [anon_sym___bridge_retained] = ACTIONS(1643), + [anon_sym___unsafe_unretained] = ACTIONS(1643), + [anon_sym___block] = ACTIONS(1643), + [anon_sym___kindof] = ACTIONS(1643), + [anon_sym___unused] = ACTIONS(1643), + [anon_sym__Complex] = ACTIONS(1643), + [anon_sym___complex] = ACTIONS(1643), + [anon_sym_IBOutlet] = ACTIONS(1643), + [anon_sym_IBInspectable] = ACTIONS(1643), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1643), + [anon_sym_signed] = ACTIONS(1643), + [anon_sym_unsigned] = ACTIONS(1643), + [anon_sym_long] = ACTIONS(1643), + [anon_sym_short] = ACTIONS(1643), + [sym_primitive_type] = ACTIONS(1643), + [anon_sym_enum] = ACTIONS(1643), + [anon_sym_struct] = ACTIONS(1643), + [anon_sym_union] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_switch] = ACTIONS(1643), + [anon_sym_case] = ACTIONS(1643), + [anon_sym_default] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_goto] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1641), + [anon_sym_PLUS_PLUS] = ACTIONS(1641), + [anon_sym_sizeof] = ACTIONS(1643), + [sym_number_literal] = ACTIONS(1641), + [anon_sym_L_SQUOTE] = ACTIONS(1641), + [anon_sym_u_SQUOTE] = ACTIONS(1641), + [anon_sym_U_SQUOTE] = ACTIONS(1641), + [anon_sym_u8_SQUOTE] = ACTIONS(1641), + [anon_sym_SQUOTE] = ACTIONS(1641), + [anon_sym_L_DQUOTE] = ACTIONS(1641), + [anon_sym_u_DQUOTE] = ACTIONS(1641), + [anon_sym_U_DQUOTE] = ACTIONS(1641), + [anon_sym_u8_DQUOTE] = ACTIONS(1641), + [anon_sym_DQUOTE] = ACTIONS(1641), + [sym_true] = ACTIONS(1643), + [sym_false] = ACTIONS(1643), + [sym_null] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1641), + [anon_sym_ATimport] = ACTIONS(1641), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1643), + [anon_sym_ATcompatibility_alias] = ACTIONS(1641), + [anon_sym_ATprotocol] = ACTIONS(1641), + [anon_sym_ATclass] = ACTIONS(1641), + [anon_sym_ATinterface] = ACTIONS(1641), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1643), + [sym_method_attribute_specifier] = ACTIONS(1643), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1643), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1643), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1643), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1643), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1643), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1643), + [anon_sym_NS_AVAILABLE] = ACTIONS(1643), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1643), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1643), + [anon_sym_API_AVAILABLE] = ACTIONS(1643), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1643), + [anon_sym_API_DEPRECATED] = ACTIONS(1643), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1643), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1643), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1643), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1643), + [anon_sym___deprecated_msg] = ACTIONS(1643), + [anon_sym___deprecated_enum_msg] = ACTIONS(1643), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1643), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1643), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1643), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1643), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1643), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1643), + [anon_sym_ATimplementation] = ACTIONS(1641), + [anon_sym_NS_ENUM] = ACTIONS(1643), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1643), + [anon_sym_NS_OPTIONS] = ACTIONS(1643), + [anon_sym_typeof] = ACTIONS(1643), + [anon_sym___typeof] = ACTIONS(1643), + [anon_sym___typeof__] = ACTIONS(1643), + [sym_self] = ACTIONS(1643), + [sym_super] = ACTIONS(1643), + [sym_nil] = ACTIONS(1643), + [sym_id] = ACTIONS(1643), + [sym_instancetype] = ACTIONS(1643), + [sym_Class] = ACTIONS(1643), + [sym_SEL] = ACTIONS(1643), + [sym_IMP] = ACTIONS(1643), + [sym_BOOL] = ACTIONS(1643), + [sym_auto] = ACTIONS(1643), + [anon_sym_ATautoreleasepool] = ACTIONS(1641), + [anon_sym_ATsynchronized] = ACTIONS(1641), + [anon_sym_ATtry] = ACTIONS(1641), + [anon_sym_ATcatch] = ACTIONS(1641), + [anon_sym_ATfinally] = ACTIONS(1641), + [anon_sym_ATthrow] = ACTIONS(1641), + [anon_sym_ATselector] = ACTIONS(1641), + [anon_sym_ATencode] = ACTIONS(1641), + [anon_sym_AT] = ACTIONS(1643), + [sym_YES] = ACTIONS(1643), + [sym_NO] = ACTIONS(1643), + [anon_sym___builtin_available] = ACTIONS(1643), + [anon_sym_ATavailable] = ACTIONS(1641), + [anon_sym_va_arg] = ACTIONS(1643), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [269] = { + [ts_builtin_sym_end] = ACTIONS(1637), + [sym_identifier] = ACTIONS(1639), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [anon_sym_RPAREN] = ACTIONS(1637), + [aux_sym_preproc_if_token1] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_CARET] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1639), + [anon_sym___cdecl] = ACTIONS(1639), + [anon_sym___clrcall] = ACTIONS(1639), + [anon_sym___stdcall] = ACTIONS(1639), + [anon_sym___fastcall] = ACTIONS(1639), + [anon_sym___thiscall] = ACTIONS(1639), + [anon_sym___vectorcall] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_RBRACE] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_auto] = ACTIONS(1639), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_inline] = ACTIONS(1639), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1639), + [anon_sym_restrict] = ACTIONS(1639), + [anon_sym__Atomic] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [anon_sym_out] = ACTIONS(1639), + [anon_sym_inout] = ACTIONS(1639), + [anon_sym_bycopy] = ACTIONS(1639), + [anon_sym_byref] = ACTIONS(1639), + [anon_sym_oneway] = ACTIONS(1639), + [anon_sym__Nullable] = ACTIONS(1639), + [anon_sym__Nonnull] = ACTIONS(1639), + [anon_sym__Nullable_result] = ACTIONS(1639), + [anon_sym__Null_unspecified] = ACTIONS(1639), + [anon_sym___autoreleasing] = ACTIONS(1639), + [anon_sym___nullable] = ACTIONS(1639), + [anon_sym___nonnull] = ACTIONS(1639), + [anon_sym___strong] = ACTIONS(1639), + [anon_sym___weak] = ACTIONS(1639), + [anon_sym___bridge] = ACTIONS(1639), + [anon_sym___bridge_transfer] = ACTIONS(1639), + [anon_sym___bridge_retained] = ACTIONS(1639), + [anon_sym___unsafe_unretained] = ACTIONS(1639), + [anon_sym___block] = ACTIONS(1639), + [anon_sym___kindof] = ACTIONS(1639), + [anon_sym___unused] = ACTIONS(1639), + [anon_sym__Complex] = ACTIONS(1639), + [anon_sym___complex] = ACTIONS(1639), + [anon_sym_IBOutlet] = ACTIONS(1639), + [anon_sym_IBInspectable] = ACTIONS(1639), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1639), + [anon_sym_unsigned] = ACTIONS(1639), + [anon_sym_long] = ACTIONS(1639), + [anon_sym_short] = ACTIONS(1639), + [sym_primitive_type] = ACTIONS(1639), + [anon_sym_enum] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_switch] = ACTIONS(1639), + [anon_sym_case] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_goto] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1637), + [anon_sym_sizeof] = ACTIONS(1639), + [sym_number_literal] = ACTIONS(1637), + [anon_sym_L_SQUOTE] = ACTIONS(1637), + [anon_sym_u_SQUOTE] = ACTIONS(1637), + [anon_sym_U_SQUOTE] = ACTIONS(1637), + [anon_sym_u8_SQUOTE] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1637), + [anon_sym_L_DQUOTE] = ACTIONS(1637), + [anon_sym_u_DQUOTE] = ACTIONS(1637), + [anon_sym_U_DQUOTE] = ACTIONS(1637), + [anon_sym_u8_DQUOTE] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1637), + [anon_sym_ATimport] = ACTIONS(1637), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1639), + [anon_sym_ATcompatibility_alias] = ACTIONS(1637), + [anon_sym_ATprotocol] = ACTIONS(1637), + [anon_sym_ATclass] = ACTIONS(1637), + [anon_sym_ATinterface] = ACTIONS(1637), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1639), + [sym_method_attribute_specifier] = ACTIONS(1639), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1639), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE] = ACTIONS(1639), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_API_AVAILABLE] = ACTIONS(1639), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_API_DEPRECATED] = ACTIONS(1639), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1639), + [anon_sym___deprecated_msg] = ACTIONS(1639), + [anon_sym___deprecated_enum_msg] = ACTIONS(1639), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1639), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1639), + [anon_sym_ATimplementation] = ACTIONS(1637), + [anon_sym_NS_ENUM] = ACTIONS(1639), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1639), + [anon_sym_NS_OPTIONS] = ACTIONS(1639), + [anon_sym_typeof] = ACTIONS(1639), + [anon_sym___typeof] = ACTIONS(1639), + [anon_sym___typeof__] = ACTIONS(1639), + [sym_self] = ACTIONS(1639), + [sym_super] = ACTIONS(1639), + [sym_nil] = ACTIONS(1639), + [sym_id] = ACTIONS(1639), + [sym_instancetype] = ACTIONS(1639), + [sym_Class] = ACTIONS(1639), + [sym_SEL] = ACTIONS(1639), + [sym_IMP] = ACTIONS(1639), + [sym_BOOL] = ACTIONS(1639), + [sym_auto] = ACTIONS(1639), + [anon_sym_ATautoreleasepool] = ACTIONS(1637), + [anon_sym_ATsynchronized] = ACTIONS(1637), + [anon_sym_ATtry] = ACTIONS(1637), + [anon_sym_ATcatch] = ACTIONS(1637), + [anon_sym_ATfinally] = ACTIONS(1637), + [anon_sym_ATthrow] = ACTIONS(1637), + [anon_sym_ATselector] = ACTIONS(1637), + [anon_sym_ATencode] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1639), + [sym_YES] = ACTIONS(1639), + [sym_NO] = ACTIONS(1639), + [anon_sym___builtin_available] = ACTIONS(1639), + [anon_sym_ATavailable] = ACTIONS(1637), + [anon_sym_va_arg] = ACTIONS(1639), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [270] = { + [ts_builtin_sym_end] = ACTIONS(1389), + [sym_identifier] = ACTIONS(1387), + [aux_sym_preproc_include_token1] = ACTIONS(1389), + [aux_sym_preproc_def_token1] = ACTIONS(1389), + [anon_sym_RPAREN] = ACTIONS(1389), + [aux_sym_preproc_if_token1] = ACTIONS(1387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1387), + [anon_sym_LPAREN2] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_TILDE] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_CARET] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_typedef] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym___attribute] = ACTIONS(1387), + [anon_sym___attribute__] = ACTIONS(1387), + [anon_sym___declspec] = ACTIONS(1387), + [anon_sym___cdecl] = ACTIONS(1387), + [anon_sym___clrcall] = ACTIONS(1387), + [anon_sym___stdcall] = ACTIONS(1387), + [anon_sym___fastcall] = ACTIONS(1387), + [anon_sym___thiscall] = ACTIONS(1387), + [anon_sym___vectorcall] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_RBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_auto] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_inline] = ACTIONS(1387), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_volatile] = ACTIONS(1387), + [anon_sym_restrict] = ACTIONS(1387), + [anon_sym__Atomic] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_out] = ACTIONS(1387), + [anon_sym_inout] = ACTIONS(1387), + [anon_sym_bycopy] = ACTIONS(1387), + [anon_sym_byref] = ACTIONS(1387), + [anon_sym_oneway] = ACTIONS(1387), + [anon_sym__Nullable] = ACTIONS(1387), + [anon_sym__Nonnull] = ACTIONS(1387), + [anon_sym__Nullable_result] = ACTIONS(1387), + [anon_sym__Null_unspecified] = ACTIONS(1387), + [anon_sym___autoreleasing] = ACTIONS(1387), + [anon_sym___nullable] = ACTIONS(1387), + [anon_sym___nonnull] = ACTIONS(1387), + [anon_sym___strong] = ACTIONS(1387), + [anon_sym___weak] = ACTIONS(1387), + [anon_sym___bridge] = ACTIONS(1387), + [anon_sym___bridge_transfer] = ACTIONS(1387), + [anon_sym___bridge_retained] = ACTIONS(1387), + [anon_sym___unsafe_unretained] = ACTIONS(1387), + [anon_sym___block] = ACTIONS(1387), + [anon_sym___kindof] = ACTIONS(1387), + [anon_sym___unused] = ACTIONS(1387), + [anon_sym__Complex] = ACTIONS(1387), + [anon_sym___complex] = ACTIONS(1387), + [anon_sym_IBOutlet] = ACTIONS(1387), + [anon_sym_IBInspectable] = ACTIONS(1387), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1387), + [anon_sym_signed] = ACTIONS(1387), + [anon_sym_unsigned] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [sym_primitive_type] = ACTIONS(1387), + [anon_sym_enum] = ACTIONS(1387), + [anon_sym_struct] = ACTIONS(1387), + [anon_sym_union] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1387), + [anon_sym_case] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_goto] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_sizeof] = ACTIONS(1387), + [sym_number_literal] = ACTIONS(1389), + [anon_sym_L_SQUOTE] = ACTIONS(1389), + [anon_sym_u_SQUOTE] = ACTIONS(1389), + [anon_sym_U_SQUOTE] = ACTIONS(1389), + [anon_sym_u8_SQUOTE] = ACTIONS(1389), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_L_DQUOTE] = ACTIONS(1389), + [anon_sym_u_DQUOTE] = ACTIONS(1389), + [anon_sym_U_DQUOTE] = ACTIONS(1389), + [anon_sym_u8_DQUOTE] = ACTIONS(1389), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym_true] = ACTIONS(1387), + [sym_false] = ACTIONS(1387), + [sym_null] = ACTIONS(1387), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1389), + [anon_sym_ATimport] = ACTIONS(1389), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1387), + [anon_sym_ATcompatibility_alias] = ACTIONS(1389), + [anon_sym_ATprotocol] = ACTIONS(1389), + [anon_sym_ATclass] = ACTIONS(1389), + [anon_sym_ATinterface] = ACTIONS(1389), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1387), + [sym_method_attribute_specifier] = ACTIONS(1387), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1387), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1387), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1387), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1387), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1387), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1387), + [anon_sym_NS_AVAILABLE] = ACTIONS(1387), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1387), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1387), + [anon_sym_API_AVAILABLE] = ACTIONS(1387), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1387), + [anon_sym_API_DEPRECATED] = ACTIONS(1387), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1387), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1387), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1387), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1387), + [anon_sym___deprecated_msg] = ACTIONS(1387), + [anon_sym___deprecated_enum_msg] = ACTIONS(1387), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1387), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1387), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1387), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1387), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1387), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1387), + [anon_sym_ATimplementation] = ACTIONS(1389), + [anon_sym_NS_ENUM] = ACTIONS(1387), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1387), + [anon_sym_NS_OPTIONS] = ACTIONS(1387), + [anon_sym_typeof] = ACTIONS(1387), + [anon_sym___typeof] = ACTIONS(1387), + [anon_sym___typeof__] = ACTIONS(1387), + [sym_self] = ACTIONS(1387), + [sym_super] = ACTIONS(1387), + [sym_nil] = ACTIONS(1387), + [sym_id] = ACTIONS(1387), + [sym_instancetype] = ACTIONS(1387), + [sym_Class] = ACTIONS(1387), + [sym_SEL] = ACTIONS(1387), + [sym_IMP] = ACTIONS(1387), + [sym_BOOL] = ACTIONS(1387), + [sym_auto] = ACTIONS(1387), + [anon_sym_ATautoreleasepool] = ACTIONS(1389), + [anon_sym_ATsynchronized] = ACTIONS(1389), + [anon_sym_ATtry] = ACTIONS(1389), + [anon_sym_ATcatch] = ACTIONS(1389), + [anon_sym_ATfinally] = ACTIONS(1389), + [anon_sym_ATthrow] = ACTIONS(1389), + [anon_sym_ATselector] = ACTIONS(1389), + [anon_sym_ATencode] = ACTIONS(1389), + [anon_sym_AT] = ACTIONS(1387), + [sym_YES] = ACTIONS(1387), + [sym_NO] = ACTIONS(1387), + [anon_sym___builtin_available] = ACTIONS(1387), + [anon_sym_ATavailable] = ACTIONS(1389), + [anon_sym_va_arg] = ACTIONS(1387), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [271] = { + [ts_builtin_sym_end] = ACTIONS(1637), + [sym_identifier] = ACTIONS(1639), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [anon_sym_RPAREN] = ACTIONS(1637), + [aux_sym_preproc_if_token1] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_CARET] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1639), + [anon_sym___cdecl] = ACTIONS(1639), + [anon_sym___clrcall] = ACTIONS(1639), + [anon_sym___stdcall] = ACTIONS(1639), + [anon_sym___fastcall] = ACTIONS(1639), + [anon_sym___thiscall] = ACTIONS(1639), + [anon_sym___vectorcall] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_RBRACE] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_auto] = ACTIONS(1639), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_inline] = ACTIONS(1639), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1639), + [anon_sym_restrict] = ACTIONS(1639), + [anon_sym__Atomic] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [anon_sym_out] = ACTIONS(1639), + [anon_sym_inout] = ACTIONS(1639), + [anon_sym_bycopy] = ACTIONS(1639), + [anon_sym_byref] = ACTIONS(1639), + [anon_sym_oneway] = ACTIONS(1639), + [anon_sym__Nullable] = ACTIONS(1639), + [anon_sym__Nonnull] = ACTIONS(1639), + [anon_sym__Nullable_result] = ACTIONS(1639), + [anon_sym__Null_unspecified] = ACTIONS(1639), + [anon_sym___autoreleasing] = ACTIONS(1639), + [anon_sym___nullable] = ACTIONS(1639), + [anon_sym___nonnull] = ACTIONS(1639), + [anon_sym___strong] = ACTIONS(1639), + [anon_sym___weak] = ACTIONS(1639), + [anon_sym___bridge] = ACTIONS(1639), + [anon_sym___bridge_transfer] = ACTIONS(1639), + [anon_sym___bridge_retained] = ACTIONS(1639), + [anon_sym___unsafe_unretained] = ACTIONS(1639), + [anon_sym___block] = ACTIONS(1639), + [anon_sym___kindof] = ACTIONS(1639), + [anon_sym___unused] = ACTIONS(1639), + [anon_sym__Complex] = ACTIONS(1639), + [anon_sym___complex] = ACTIONS(1639), + [anon_sym_IBOutlet] = ACTIONS(1639), + [anon_sym_IBInspectable] = ACTIONS(1639), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1639), + [anon_sym_unsigned] = ACTIONS(1639), + [anon_sym_long] = ACTIONS(1639), + [anon_sym_short] = ACTIONS(1639), + [sym_primitive_type] = ACTIONS(1639), + [anon_sym_enum] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_switch] = ACTIONS(1639), + [anon_sym_case] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_goto] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1637), + [anon_sym_sizeof] = ACTIONS(1639), + [sym_number_literal] = ACTIONS(1637), + [anon_sym_L_SQUOTE] = ACTIONS(1637), + [anon_sym_u_SQUOTE] = ACTIONS(1637), + [anon_sym_U_SQUOTE] = ACTIONS(1637), + [anon_sym_u8_SQUOTE] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1637), + [anon_sym_L_DQUOTE] = ACTIONS(1637), + [anon_sym_u_DQUOTE] = ACTIONS(1637), + [anon_sym_U_DQUOTE] = ACTIONS(1637), + [anon_sym_u8_DQUOTE] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1637), + [anon_sym_ATimport] = ACTIONS(1637), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1639), + [anon_sym_ATcompatibility_alias] = ACTIONS(1637), + [anon_sym_ATprotocol] = ACTIONS(1637), + [anon_sym_ATclass] = ACTIONS(1637), + [anon_sym_ATinterface] = ACTIONS(1637), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1639), + [sym_method_attribute_specifier] = ACTIONS(1639), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1639), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE] = ACTIONS(1639), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_API_AVAILABLE] = ACTIONS(1639), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_API_DEPRECATED] = ACTIONS(1639), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1639), + [anon_sym___deprecated_msg] = ACTIONS(1639), + [anon_sym___deprecated_enum_msg] = ACTIONS(1639), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1639), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1639), + [anon_sym_ATimplementation] = ACTIONS(1637), + [anon_sym_NS_ENUM] = ACTIONS(1639), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1639), + [anon_sym_NS_OPTIONS] = ACTIONS(1639), + [anon_sym_typeof] = ACTIONS(1639), + [anon_sym___typeof] = ACTIONS(1639), + [anon_sym___typeof__] = ACTIONS(1639), + [sym_self] = ACTIONS(1639), + [sym_super] = ACTIONS(1639), + [sym_nil] = ACTIONS(1639), + [sym_id] = ACTIONS(1639), + [sym_instancetype] = ACTIONS(1639), + [sym_Class] = ACTIONS(1639), + [sym_SEL] = ACTIONS(1639), + [sym_IMP] = ACTIONS(1639), + [sym_BOOL] = ACTIONS(1639), + [sym_auto] = ACTIONS(1639), + [anon_sym_ATautoreleasepool] = ACTIONS(1637), + [anon_sym_ATsynchronized] = ACTIONS(1637), + [anon_sym_ATtry] = ACTIONS(1637), + [anon_sym_ATcatch] = ACTIONS(1637), + [anon_sym_ATfinally] = ACTIONS(1637), + [anon_sym_ATthrow] = ACTIONS(1637), + [anon_sym_ATselector] = ACTIONS(1637), + [anon_sym_ATencode] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1639), + [sym_YES] = ACTIONS(1639), + [sym_NO] = ACTIONS(1639), + [anon_sym___builtin_available] = ACTIONS(1639), + [anon_sym_ATavailable] = ACTIONS(1637), + [anon_sym_va_arg] = ACTIONS(1639), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [272] = { + [ts_builtin_sym_end] = ACTIONS(1637), + [sym_identifier] = ACTIONS(1639), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [anon_sym_RPAREN] = ACTIONS(1637), + [aux_sym_preproc_if_token1] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_CARET] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1639), + [anon_sym___cdecl] = ACTIONS(1639), + [anon_sym___clrcall] = ACTIONS(1639), + [anon_sym___stdcall] = ACTIONS(1639), + [anon_sym___fastcall] = ACTIONS(1639), + [anon_sym___thiscall] = ACTIONS(1639), + [anon_sym___vectorcall] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_RBRACE] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_auto] = ACTIONS(1639), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_inline] = ACTIONS(1639), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1639), + [anon_sym_restrict] = ACTIONS(1639), + [anon_sym__Atomic] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [anon_sym_out] = ACTIONS(1639), + [anon_sym_inout] = ACTIONS(1639), + [anon_sym_bycopy] = ACTIONS(1639), + [anon_sym_byref] = ACTIONS(1639), + [anon_sym_oneway] = ACTIONS(1639), + [anon_sym__Nullable] = ACTIONS(1639), + [anon_sym__Nonnull] = ACTIONS(1639), + [anon_sym__Nullable_result] = ACTIONS(1639), + [anon_sym__Null_unspecified] = ACTIONS(1639), + [anon_sym___autoreleasing] = ACTIONS(1639), + [anon_sym___nullable] = ACTIONS(1639), + [anon_sym___nonnull] = ACTIONS(1639), + [anon_sym___strong] = ACTIONS(1639), + [anon_sym___weak] = ACTIONS(1639), + [anon_sym___bridge] = ACTIONS(1639), + [anon_sym___bridge_transfer] = ACTIONS(1639), + [anon_sym___bridge_retained] = ACTIONS(1639), + [anon_sym___unsafe_unretained] = ACTIONS(1639), + [anon_sym___block] = ACTIONS(1639), + [anon_sym___kindof] = ACTIONS(1639), + [anon_sym___unused] = ACTIONS(1639), + [anon_sym__Complex] = ACTIONS(1639), + [anon_sym___complex] = ACTIONS(1639), + [anon_sym_IBOutlet] = ACTIONS(1639), + [anon_sym_IBInspectable] = ACTIONS(1639), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1639), + [anon_sym_unsigned] = ACTIONS(1639), + [anon_sym_long] = ACTIONS(1639), + [anon_sym_short] = ACTIONS(1639), + [sym_primitive_type] = ACTIONS(1639), + [anon_sym_enum] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_switch] = ACTIONS(1639), + [anon_sym_case] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_goto] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1637), + [anon_sym_sizeof] = ACTIONS(1639), + [sym_number_literal] = ACTIONS(1637), + [anon_sym_L_SQUOTE] = ACTIONS(1637), + [anon_sym_u_SQUOTE] = ACTIONS(1637), + [anon_sym_U_SQUOTE] = ACTIONS(1637), + [anon_sym_u8_SQUOTE] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1637), + [anon_sym_L_DQUOTE] = ACTIONS(1637), + [anon_sym_u_DQUOTE] = ACTIONS(1637), + [anon_sym_U_DQUOTE] = ACTIONS(1637), + [anon_sym_u8_DQUOTE] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1637), + [anon_sym_ATimport] = ACTIONS(1637), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1639), + [anon_sym_ATcompatibility_alias] = ACTIONS(1637), + [anon_sym_ATprotocol] = ACTIONS(1637), + [anon_sym_ATclass] = ACTIONS(1637), + [anon_sym_ATinterface] = ACTIONS(1637), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1639), + [sym_method_attribute_specifier] = ACTIONS(1639), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1639), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE] = ACTIONS(1639), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_API_AVAILABLE] = ACTIONS(1639), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_API_DEPRECATED] = ACTIONS(1639), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1639), + [anon_sym___deprecated_msg] = ACTIONS(1639), + [anon_sym___deprecated_enum_msg] = ACTIONS(1639), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1639), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1639), + [anon_sym_ATimplementation] = ACTIONS(1637), + [anon_sym_NS_ENUM] = ACTIONS(1639), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1639), + [anon_sym_NS_OPTIONS] = ACTIONS(1639), + [anon_sym_typeof] = ACTIONS(1639), + [anon_sym___typeof] = ACTIONS(1639), + [anon_sym___typeof__] = ACTIONS(1639), + [sym_self] = ACTIONS(1639), + [sym_super] = ACTIONS(1639), + [sym_nil] = ACTIONS(1639), + [sym_id] = ACTIONS(1639), + [sym_instancetype] = ACTIONS(1639), + [sym_Class] = ACTIONS(1639), + [sym_SEL] = ACTIONS(1639), + [sym_IMP] = ACTIONS(1639), + [sym_BOOL] = ACTIONS(1639), + [sym_auto] = ACTIONS(1639), + [anon_sym_ATautoreleasepool] = ACTIONS(1637), + [anon_sym_ATsynchronized] = ACTIONS(1637), + [anon_sym_ATtry] = ACTIONS(1637), + [anon_sym_ATcatch] = ACTIONS(1637), + [anon_sym_ATfinally] = ACTIONS(1637), + [anon_sym_ATthrow] = ACTIONS(1637), + [anon_sym_ATselector] = ACTIONS(1637), + [anon_sym_ATencode] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1639), + [sym_YES] = ACTIONS(1639), + [sym_NO] = ACTIONS(1639), + [anon_sym___builtin_available] = ACTIONS(1639), + [anon_sym_ATavailable] = ACTIONS(1637), + [anon_sym_va_arg] = ACTIONS(1639), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, [273] = { - [sym_identifier] = ACTIONS(1637), - [aux_sym_preproc_include_token1] = ACTIONS(1639), - [aux_sym_preproc_def_token1] = ACTIONS(1639), - [aux_sym_preproc_if_token1] = ACTIONS(1637), - [aux_sym_preproc_if_token2] = ACTIONS(1637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1637), - [aux_sym_preproc_else_token1] = ACTIONS(1637), - [aux_sym_preproc_elif_token1] = ACTIONS(1637), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_typedef] = ACTIONS(1637), - [anon_sym_extern] = ACTIONS(1637), - [anon_sym___attribute] = ACTIONS(1637), - [anon_sym___attribute__] = ACTIONS(1637), - [anon_sym___declspec] = ACTIONS(1637), - [anon_sym___cdecl] = ACTIONS(1637), - [anon_sym___clrcall] = ACTIONS(1637), - [anon_sym___stdcall] = ACTIONS(1637), - [anon_sym___fastcall] = ACTIONS(1637), - [anon_sym___thiscall] = ACTIONS(1637), - [anon_sym___vectorcall] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1639), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_auto] = ACTIONS(1637), - [anon_sym_register] = ACTIONS(1637), - [anon_sym_inline] = ACTIONS(1637), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [anon_sym_volatile] = ACTIONS(1637), - [anon_sym_restrict] = ACTIONS(1637), - [anon_sym__Atomic] = ACTIONS(1637), - [anon_sym_in] = ACTIONS(1637), - [anon_sym_out] = ACTIONS(1637), - [anon_sym_inout] = ACTIONS(1637), - [anon_sym_bycopy] = ACTIONS(1637), - [anon_sym_byref] = ACTIONS(1637), - [anon_sym_oneway] = ACTIONS(1637), - [anon_sym__Nullable] = ACTIONS(1637), - [anon_sym__Nonnull] = ACTIONS(1637), - [anon_sym__Nullable_result] = ACTIONS(1637), - [anon_sym__Null_unspecified] = ACTIONS(1637), - [anon_sym___autoreleasing] = ACTIONS(1637), - [anon_sym___nullable] = ACTIONS(1637), - [anon_sym___nonnull] = ACTIONS(1637), - [anon_sym___strong] = ACTIONS(1637), - [anon_sym___weak] = ACTIONS(1637), - [anon_sym___bridge] = ACTIONS(1637), - [anon_sym___bridge_transfer] = ACTIONS(1637), - [anon_sym___bridge_retained] = ACTIONS(1637), - [anon_sym___unsafe_unretained] = ACTIONS(1637), - [anon_sym___block] = ACTIONS(1637), - [anon_sym___kindof] = ACTIONS(1637), - [anon_sym___unused] = ACTIONS(1637), - [anon_sym__Complex] = ACTIONS(1637), - [anon_sym___complex] = ACTIONS(1637), - [anon_sym_IBOutlet] = ACTIONS(1637), - [anon_sym_IBInspectable] = ACTIONS(1637), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1637), - [anon_sym_signed] = ACTIONS(1637), - [anon_sym_unsigned] = ACTIONS(1637), - [anon_sym_long] = ACTIONS(1637), - [anon_sym_short] = ACTIONS(1637), - [sym_primitive_type] = ACTIONS(1637), - [anon_sym_enum] = ACTIONS(1637), - [anon_sym_NS_ENUM] = ACTIONS(1637), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1637), - [anon_sym_NS_OPTIONS] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(1637), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_else] = ACTIONS(1637), - [anon_sym_switch] = ACTIONS(1637), - [anon_sym_case] = ACTIONS(1637), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_goto] = ACTIONS(1637), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_sizeof] = ACTIONS(1637), - [sym_number_literal] = ACTIONS(1639), - [anon_sym_L_SQUOTE] = ACTIONS(1639), - [anon_sym_u_SQUOTE] = ACTIONS(1639), - [anon_sym_U_SQUOTE] = ACTIONS(1639), - [anon_sym_u8_SQUOTE] = ACTIONS(1639), - [anon_sym_SQUOTE] = ACTIONS(1639), - [anon_sym_L_DQUOTE] = ACTIONS(1639), - [anon_sym_u_DQUOTE] = ACTIONS(1639), - [anon_sym_U_DQUOTE] = ACTIONS(1639), - [anon_sym_u8_DQUOTE] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym_true] = ACTIONS(1637), - [sym_false] = ACTIONS(1637), - [sym_null] = ACTIONS(1637), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1639), - [anon_sym_ATimport] = ACTIONS(1639), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1637), - [anon_sym_ATcompatibility_alias] = ACTIONS(1639), - [anon_sym_ATprotocol] = ACTIONS(1639), - [anon_sym_ATclass] = ACTIONS(1639), - [anon_sym_ATinterface] = ACTIONS(1639), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1637), - [sym_method_attribute_specifier] = ACTIONS(1637), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1637), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1637), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1637), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1637), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1637), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1637), - [anon_sym_NS_AVAILABLE] = ACTIONS(1637), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1637), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1637), - [anon_sym_API_AVAILABLE] = ACTIONS(1637), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1637), - [anon_sym_API_DEPRECATED] = ACTIONS(1637), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1637), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1637), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1637), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1637), - [anon_sym___deprecated_msg] = ACTIONS(1637), - [anon_sym___deprecated_enum_msg] = ACTIONS(1637), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1637), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1637), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1637), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1637), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1637), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1637), - [anon_sym_ATimplementation] = ACTIONS(1639), - [anon_sym_typeof] = ACTIONS(1637), - [anon_sym___typeof] = ACTIONS(1637), - [anon_sym___typeof__] = ACTIONS(1637), - [sym_self] = ACTIONS(1637), - [sym_super] = ACTIONS(1637), - [sym_nil] = ACTIONS(1637), - [sym_id] = ACTIONS(1637), - [sym_instancetype] = ACTIONS(1637), - [sym_Class] = ACTIONS(1637), - [sym_SEL] = ACTIONS(1637), - [sym_IMP] = ACTIONS(1637), - [sym_BOOL] = ACTIONS(1637), - [sym_auto] = ACTIONS(1637), - [anon_sym_ATautoreleasepool] = ACTIONS(1639), - [anon_sym_ATsynchronized] = ACTIONS(1639), - [anon_sym_ATtry] = ACTIONS(1639), - [anon_sym_ATcatch] = ACTIONS(1639), - [anon_sym_ATfinally] = ACTIONS(1639), - [anon_sym_ATthrow] = ACTIONS(1639), - [anon_sym_ATselector] = ACTIONS(1639), - [anon_sym_ATencode] = ACTIONS(1639), - [anon_sym_AT] = ACTIONS(1637), - [sym_YES] = ACTIONS(1637), - [sym_NO] = ACTIONS(1637), - [anon_sym___builtin_available] = ACTIONS(1637), - [anon_sym_ATavailable] = ACTIONS(1639), - [anon_sym_va_arg] = ACTIONS(1637), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [274] = { - [sym_identifier] = ACTIONS(1641), - [aux_sym_preproc_include_token1] = ACTIONS(1643), - [aux_sym_preproc_def_token1] = ACTIONS(1643), - [aux_sym_preproc_if_token1] = ACTIONS(1641), - [aux_sym_preproc_if_token2] = ACTIONS(1641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1641), - [aux_sym_preproc_else_token1] = ACTIONS(1641), - [aux_sym_preproc_elif_token1] = ACTIONS(1641), - [anon_sym_LPAREN2] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_typedef] = ACTIONS(1641), - [anon_sym_extern] = ACTIONS(1641), - [anon_sym___attribute] = ACTIONS(1641), - [anon_sym___attribute__] = ACTIONS(1641), - [anon_sym___declspec] = ACTIONS(1641), - [anon_sym___cdecl] = ACTIONS(1641), - [anon_sym___clrcall] = ACTIONS(1641), - [anon_sym___stdcall] = ACTIONS(1641), - [anon_sym___fastcall] = ACTIONS(1641), - [anon_sym___thiscall] = ACTIONS(1641), - [anon_sym___vectorcall] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_auto] = ACTIONS(1641), - [anon_sym_register] = ACTIONS(1641), - [anon_sym_inline] = ACTIONS(1641), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(1641), - [anon_sym_volatile] = ACTIONS(1641), - [anon_sym_restrict] = ACTIONS(1641), - [anon_sym__Atomic] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [anon_sym_out] = ACTIONS(1641), - [anon_sym_inout] = ACTIONS(1641), - [anon_sym_bycopy] = ACTIONS(1641), - [anon_sym_byref] = ACTIONS(1641), - [anon_sym_oneway] = ACTIONS(1641), - [anon_sym__Nullable] = ACTIONS(1641), - [anon_sym__Nonnull] = ACTIONS(1641), - [anon_sym__Nullable_result] = ACTIONS(1641), - [anon_sym__Null_unspecified] = ACTIONS(1641), - [anon_sym___autoreleasing] = ACTIONS(1641), - [anon_sym___nullable] = ACTIONS(1641), - [anon_sym___nonnull] = ACTIONS(1641), - [anon_sym___strong] = ACTIONS(1641), - [anon_sym___weak] = ACTIONS(1641), - [anon_sym___bridge] = ACTIONS(1641), - [anon_sym___bridge_transfer] = ACTIONS(1641), - [anon_sym___bridge_retained] = ACTIONS(1641), - [anon_sym___unsafe_unretained] = ACTIONS(1641), - [anon_sym___block] = ACTIONS(1641), - [anon_sym___kindof] = ACTIONS(1641), - [anon_sym___unused] = ACTIONS(1641), - [anon_sym__Complex] = ACTIONS(1641), - [anon_sym___complex] = ACTIONS(1641), - [anon_sym_IBOutlet] = ACTIONS(1641), - [anon_sym_IBInspectable] = ACTIONS(1641), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1641), - [anon_sym_signed] = ACTIONS(1641), - [anon_sym_unsigned] = ACTIONS(1641), - [anon_sym_long] = ACTIONS(1641), - [anon_sym_short] = ACTIONS(1641), - [sym_primitive_type] = ACTIONS(1641), - [anon_sym_enum] = ACTIONS(1641), - [anon_sym_NS_ENUM] = ACTIONS(1641), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1641), - [anon_sym_NS_OPTIONS] = ACTIONS(1641), - [anon_sym_struct] = ACTIONS(1641), - [anon_sym_union] = ACTIONS(1641), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_else] = ACTIONS(1641), - [anon_sym_switch] = ACTIONS(1641), - [anon_sym_case] = ACTIONS(1641), - [anon_sym_default] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_do] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_goto] = ACTIONS(1641), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_sizeof] = ACTIONS(1641), - [sym_number_literal] = ACTIONS(1643), - [anon_sym_L_SQUOTE] = ACTIONS(1643), - [anon_sym_u_SQUOTE] = ACTIONS(1643), - [anon_sym_U_SQUOTE] = ACTIONS(1643), - [anon_sym_u8_SQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1643), - [anon_sym_L_DQUOTE] = ACTIONS(1643), - [anon_sym_u_DQUOTE] = ACTIONS(1643), - [anon_sym_U_DQUOTE] = ACTIONS(1643), - [anon_sym_u8_DQUOTE] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym_true] = ACTIONS(1641), - [sym_false] = ACTIONS(1641), - [sym_null] = ACTIONS(1641), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1643), - [anon_sym_ATimport] = ACTIONS(1643), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1641), - [anon_sym_ATcompatibility_alias] = ACTIONS(1643), - [anon_sym_ATprotocol] = ACTIONS(1643), - [anon_sym_ATclass] = ACTIONS(1643), - [anon_sym_ATinterface] = ACTIONS(1643), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1641), - [sym_method_attribute_specifier] = ACTIONS(1641), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1641), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1641), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1641), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1641), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1641), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1641), - [anon_sym_NS_AVAILABLE] = ACTIONS(1641), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1641), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1641), - [anon_sym_API_AVAILABLE] = ACTIONS(1641), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1641), - [anon_sym_API_DEPRECATED] = ACTIONS(1641), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1641), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1641), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1641), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1641), - [anon_sym___deprecated_msg] = ACTIONS(1641), - [anon_sym___deprecated_enum_msg] = ACTIONS(1641), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1641), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1641), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1641), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1641), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1641), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1641), - [anon_sym_ATimplementation] = ACTIONS(1643), - [anon_sym_typeof] = ACTIONS(1641), - [anon_sym___typeof] = ACTIONS(1641), - [anon_sym___typeof__] = ACTIONS(1641), - [sym_self] = ACTIONS(1641), - [sym_super] = ACTIONS(1641), - [sym_nil] = ACTIONS(1641), - [sym_id] = ACTIONS(1641), - [sym_instancetype] = ACTIONS(1641), - [sym_Class] = ACTIONS(1641), - [sym_SEL] = ACTIONS(1641), - [sym_IMP] = ACTIONS(1641), - [sym_BOOL] = ACTIONS(1641), - [sym_auto] = ACTIONS(1641), - [anon_sym_ATautoreleasepool] = ACTIONS(1643), - [anon_sym_ATsynchronized] = ACTIONS(1643), - [anon_sym_ATtry] = ACTIONS(1643), - [anon_sym_ATcatch] = ACTIONS(1643), - [anon_sym_ATfinally] = ACTIONS(1643), - [anon_sym_ATthrow] = ACTIONS(1643), - [anon_sym_ATselector] = ACTIONS(1643), - [anon_sym_ATencode] = ACTIONS(1643), - [anon_sym_AT] = ACTIONS(1641), - [sym_YES] = ACTIONS(1641), - [sym_NO] = ACTIONS(1641), - [anon_sym___builtin_available] = ACTIONS(1641), - [anon_sym_ATavailable] = ACTIONS(1643), - [anon_sym_va_arg] = ACTIONS(1641), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [275] = { [sym_identifier] = ACTIONS(1645), [aux_sym_preproc_include_token1] = ACTIONS(1647), [aux_sym_preproc_def_token1] = ACTIONS(1647), @@ -74174,9 +73849,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1645), [sym_primitive_type] = ACTIONS(1645), [anon_sym_enum] = ACTIONS(1645), - [anon_sym_NS_ENUM] = ACTIONS(1645), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1645), - [anon_sym_NS_OPTIONS] = ACTIONS(1645), [anon_sym_struct] = ACTIONS(1645), [anon_sym_union] = ACTIONS(1645), [anon_sym_if] = ACTIONS(1645), @@ -74243,6 +73915,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1645), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1645), [anon_sym_ATimplementation] = ACTIONS(1647), + [anon_sym_NS_ENUM] = ACTIONS(1645), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1645), + [anon_sym_NS_OPTIONS] = ACTIONS(1645), [anon_sym_typeof] = ACTIONS(1645), [anon_sym___typeof] = ACTIONS(1645), [anon_sym___typeof__] = ACTIONS(1645), @@ -74277,176 +73952,530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [276] = { - [sym_identifier] = ACTIONS(1623), - [aux_sym_preproc_include_token1] = ACTIONS(1621), - [aux_sym_preproc_def_token1] = ACTIONS(1621), - [aux_sym_preproc_if_token1] = ACTIONS(1623), - [aux_sym_preproc_if_token2] = ACTIONS(1623), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1623), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1623), - [aux_sym_preproc_else_token1] = ACTIONS(1623), - [aux_sym_preproc_elif_token1] = ACTIONS(1623), - [anon_sym_LPAREN2] = ACTIONS(1621), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_typedef] = ACTIONS(1623), - [anon_sym_extern] = ACTIONS(1623), - [anon_sym___attribute] = ACTIONS(1623), - [anon_sym___attribute__] = ACTIONS(1623), - [anon_sym___declspec] = ACTIONS(1623), - [anon_sym___cdecl] = ACTIONS(1623), - [anon_sym___clrcall] = ACTIONS(1623), - [anon_sym___stdcall] = ACTIONS(1623), - [anon_sym___fastcall] = ACTIONS(1623), - [anon_sym___thiscall] = ACTIONS(1623), - [anon_sym___vectorcall] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_LBRACK] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1623), - [anon_sym_auto] = ACTIONS(1623), - [anon_sym_register] = ACTIONS(1623), - [anon_sym_inline] = ACTIONS(1623), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1623), - [anon_sym_const] = ACTIONS(1623), - [anon_sym_volatile] = ACTIONS(1623), - [anon_sym_restrict] = ACTIONS(1623), - [anon_sym__Atomic] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_out] = ACTIONS(1623), - [anon_sym_inout] = ACTIONS(1623), - [anon_sym_bycopy] = ACTIONS(1623), - [anon_sym_byref] = ACTIONS(1623), - [anon_sym_oneway] = ACTIONS(1623), - [anon_sym__Nullable] = ACTIONS(1623), - [anon_sym__Nonnull] = ACTIONS(1623), - [anon_sym__Nullable_result] = ACTIONS(1623), - [anon_sym__Null_unspecified] = ACTIONS(1623), - [anon_sym___autoreleasing] = ACTIONS(1623), - [anon_sym___nullable] = ACTIONS(1623), - [anon_sym___nonnull] = ACTIONS(1623), - [anon_sym___strong] = ACTIONS(1623), - [anon_sym___weak] = ACTIONS(1623), - [anon_sym___bridge] = ACTIONS(1623), - [anon_sym___bridge_transfer] = ACTIONS(1623), - [anon_sym___bridge_retained] = ACTIONS(1623), - [anon_sym___unsafe_unretained] = ACTIONS(1623), - [anon_sym___block] = ACTIONS(1623), - [anon_sym___kindof] = ACTIONS(1623), - [anon_sym___unused] = ACTIONS(1623), - [anon_sym__Complex] = ACTIONS(1623), - [anon_sym___complex] = ACTIONS(1623), - [anon_sym_IBOutlet] = ACTIONS(1623), - [anon_sym_IBInspectable] = ACTIONS(1623), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1623), - [anon_sym_signed] = ACTIONS(1623), - [anon_sym_unsigned] = ACTIONS(1623), - [anon_sym_long] = ACTIONS(1623), - [anon_sym_short] = ACTIONS(1623), - [sym_primitive_type] = ACTIONS(1623), - [anon_sym_enum] = ACTIONS(1623), - [anon_sym_NS_ENUM] = ACTIONS(1623), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1623), - [anon_sym_NS_OPTIONS] = ACTIONS(1623), - [anon_sym_struct] = ACTIONS(1623), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_if] = ACTIONS(1623), - [anon_sym_else] = ACTIONS(1623), - [anon_sym_switch] = ACTIONS(1623), - [anon_sym_case] = ACTIONS(1623), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_while] = ACTIONS(1623), - [anon_sym_do] = ACTIONS(1623), - [anon_sym_for] = ACTIONS(1623), - [anon_sym_return] = ACTIONS(1623), - [anon_sym_break] = ACTIONS(1623), - [anon_sym_continue] = ACTIONS(1623), - [anon_sym_goto] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1621), - [anon_sym_L_SQUOTE] = ACTIONS(1621), - [anon_sym_u_SQUOTE] = ACTIONS(1621), - [anon_sym_U_SQUOTE] = ACTIONS(1621), - [anon_sym_u8_SQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1621), - [anon_sym_L_DQUOTE] = ACTIONS(1621), - [anon_sym_u_DQUOTE] = ACTIONS(1621), - [anon_sym_U_DQUOTE] = ACTIONS(1621), - [anon_sym_u8_DQUOTE] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [sym_true] = ACTIONS(1623), - [sym_false] = ACTIONS(1623), - [sym_null] = ACTIONS(1623), + [274] = { + [sym_identifier] = ACTIONS(1649), + [aux_sym_preproc_include_token1] = ACTIONS(1651), + [aux_sym_preproc_def_token1] = ACTIONS(1651), + [aux_sym_preproc_if_token1] = ACTIONS(1649), + [aux_sym_preproc_if_token2] = ACTIONS(1649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1649), + [aux_sym_preproc_else_token1] = ACTIONS(1649), + [aux_sym_preproc_elif_token1] = ACTIONS(1649), + [anon_sym_LPAREN2] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1651), + [anon_sym_TILDE] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1651), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_typedef] = ACTIONS(1649), + [anon_sym_extern] = ACTIONS(1649), + [anon_sym___attribute] = ACTIONS(1649), + [anon_sym___attribute__] = ACTIONS(1649), + [anon_sym___declspec] = ACTIONS(1649), + [anon_sym___cdecl] = ACTIONS(1649), + [anon_sym___clrcall] = ACTIONS(1649), + [anon_sym___stdcall] = ACTIONS(1649), + [anon_sym___fastcall] = ACTIONS(1649), + [anon_sym___thiscall] = ACTIONS(1649), + [anon_sym___vectorcall] = ACTIONS(1649), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1649), + [anon_sym_auto] = ACTIONS(1649), + [anon_sym_register] = ACTIONS(1649), + [anon_sym_inline] = ACTIONS(1649), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1649), + [anon_sym_const] = ACTIONS(1649), + [anon_sym_volatile] = ACTIONS(1649), + [anon_sym_restrict] = ACTIONS(1649), + [anon_sym__Atomic] = ACTIONS(1649), + [anon_sym_in] = ACTIONS(1649), + [anon_sym_out] = ACTIONS(1649), + [anon_sym_inout] = ACTIONS(1649), + [anon_sym_bycopy] = ACTIONS(1649), + [anon_sym_byref] = ACTIONS(1649), + [anon_sym_oneway] = ACTIONS(1649), + [anon_sym__Nullable] = ACTIONS(1649), + [anon_sym__Nonnull] = ACTIONS(1649), + [anon_sym__Nullable_result] = ACTIONS(1649), + [anon_sym__Null_unspecified] = ACTIONS(1649), + [anon_sym___autoreleasing] = ACTIONS(1649), + [anon_sym___nullable] = ACTIONS(1649), + [anon_sym___nonnull] = ACTIONS(1649), + [anon_sym___strong] = ACTIONS(1649), + [anon_sym___weak] = ACTIONS(1649), + [anon_sym___bridge] = ACTIONS(1649), + [anon_sym___bridge_transfer] = ACTIONS(1649), + [anon_sym___bridge_retained] = ACTIONS(1649), + [anon_sym___unsafe_unretained] = ACTIONS(1649), + [anon_sym___block] = ACTIONS(1649), + [anon_sym___kindof] = ACTIONS(1649), + [anon_sym___unused] = ACTIONS(1649), + [anon_sym__Complex] = ACTIONS(1649), + [anon_sym___complex] = ACTIONS(1649), + [anon_sym_IBOutlet] = ACTIONS(1649), + [anon_sym_IBInspectable] = ACTIONS(1649), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1649), + [anon_sym_signed] = ACTIONS(1649), + [anon_sym_unsigned] = ACTIONS(1649), + [anon_sym_long] = ACTIONS(1649), + [anon_sym_short] = ACTIONS(1649), + [sym_primitive_type] = ACTIONS(1649), + [anon_sym_enum] = ACTIONS(1649), + [anon_sym_struct] = ACTIONS(1649), + [anon_sym_union] = ACTIONS(1649), + [anon_sym_if] = ACTIONS(1649), + [anon_sym_else] = ACTIONS(1649), + [anon_sym_switch] = ACTIONS(1649), + [anon_sym_case] = ACTIONS(1649), + [anon_sym_default] = ACTIONS(1649), + [anon_sym_while] = ACTIONS(1649), + [anon_sym_do] = ACTIONS(1649), + [anon_sym_for] = ACTIONS(1649), + [anon_sym_return] = ACTIONS(1649), + [anon_sym_break] = ACTIONS(1649), + [anon_sym_continue] = ACTIONS(1649), + [anon_sym_goto] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1651), + [anon_sym_PLUS_PLUS] = ACTIONS(1651), + [anon_sym_sizeof] = ACTIONS(1649), + [sym_number_literal] = ACTIONS(1651), + [anon_sym_L_SQUOTE] = ACTIONS(1651), + [anon_sym_u_SQUOTE] = ACTIONS(1651), + [anon_sym_U_SQUOTE] = ACTIONS(1651), + [anon_sym_u8_SQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1651), + [anon_sym_L_DQUOTE] = ACTIONS(1651), + [anon_sym_u_DQUOTE] = ACTIONS(1651), + [anon_sym_U_DQUOTE] = ACTIONS(1651), + [anon_sym_u8_DQUOTE] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(1651), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1621), - [anon_sym_ATimport] = ACTIONS(1621), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1623), - [anon_sym_ATcompatibility_alias] = ACTIONS(1621), - [anon_sym_ATprotocol] = ACTIONS(1621), - [anon_sym_ATclass] = ACTIONS(1621), - [anon_sym_ATinterface] = ACTIONS(1621), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1623), - [sym_method_attribute_specifier] = ACTIONS(1623), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1623), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1623), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1623), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1623), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1623), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1623), - [anon_sym_NS_AVAILABLE] = ACTIONS(1623), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1623), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1623), - [anon_sym_API_AVAILABLE] = ACTIONS(1623), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1623), - [anon_sym_API_DEPRECATED] = ACTIONS(1623), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1623), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1623), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1623), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1623), - [anon_sym___deprecated_msg] = ACTIONS(1623), - [anon_sym___deprecated_enum_msg] = ACTIONS(1623), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1623), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1623), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1623), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1623), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1623), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1623), - [anon_sym_ATimplementation] = ACTIONS(1621), - [anon_sym_typeof] = ACTIONS(1623), - [anon_sym___typeof] = ACTIONS(1623), - [anon_sym___typeof__] = ACTIONS(1623), - [sym_self] = ACTIONS(1623), - [sym_super] = ACTIONS(1623), - [sym_nil] = ACTIONS(1623), - [sym_id] = ACTIONS(1623), - [sym_instancetype] = ACTIONS(1623), - [sym_Class] = ACTIONS(1623), - [sym_SEL] = ACTIONS(1623), - [sym_IMP] = ACTIONS(1623), - [sym_BOOL] = ACTIONS(1623), - [sym_auto] = ACTIONS(1623), - [anon_sym_ATautoreleasepool] = ACTIONS(1621), - [anon_sym_ATsynchronized] = ACTIONS(1621), - [anon_sym_ATtry] = ACTIONS(1621), - [anon_sym_ATcatch] = ACTIONS(1621), - [anon_sym_ATfinally] = ACTIONS(1621), - [anon_sym_ATthrow] = ACTIONS(1621), - [anon_sym_ATselector] = ACTIONS(1621), - [anon_sym_ATencode] = ACTIONS(1621), - [anon_sym_AT] = ACTIONS(1623), - [sym_YES] = ACTIONS(1623), - [sym_NO] = ACTIONS(1623), - [anon_sym___builtin_available] = ACTIONS(1623), - [anon_sym_ATavailable] = ACTIONS(1621), - [anon_sym_va_arg] = ACTIONS(1623), + [anon_sym_POUNDimport] = ACTIONS(1651), + [anon_sym_ATimport] = ACTIONS(1651), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1649), + [anon_sym_ATcompatibility_alias] = ACTIONS(1651), + [anon_sym_ATprotocol] = ACTIONS(1651), + [anon_sym_ATclass] = ACTIONS(1651), + [anon_sym_ATinterface] = ACTIONS(1651), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1649), + [sym_method_attribute_specifier] = ACTIONS(1649), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1649), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1649), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1649), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1649), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1649), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1649), + [anon_sym_NS_AVAILABLE] = ACTIONS(1649), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1649), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_API_AVAILABLE] = ACTIONS(1649), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1649), + [anon_sym_API_DEPRECATED] = ACTIONS(1649), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1649), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1649), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1649), + [anon_sym___deprecated_msg] = ACTIONS(1649), + [anon_sym___deprecated_enum_msg] = ACTIONS(1649), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1649), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1649), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1649), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1649), + [anon_sym_ATimplementation] = ACTIONS(1651), + [anon_sym_NS_ENUM] = ACTIONS(1649), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1649), + [anon_sym_NS_OPTIONS] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1649), + [anon_sym___typeof] = ACTIONS(1649), + [anon_sym___typeof__] = ACTIONS(1649), + [sym_self] = ACTIONS(1649), + [sym_super] = ACTIONS(1649), + [sym_nil] = ACTIONS(1649), + [sym_id] = ACTIONS(1649), + [sym_instancetype] = ACTIONS(1649), + [sym_Class] = ACTIONS(1649), + [sym_SEL] = ACTIONS(1649), + [sym_IMP] = ACTIONS(1649), + [sym_BOOL] = ACTIONS(1649), + [sym_auto] = ACTIONS(1649), + [anon_sym_ATautoreleasepool] = ACTIONS(1651), + [anon_sym_ATsynchronized] = ACTIONS(1651), + [anon_sym_ATtry] = ACTIONS(1651), + [anon_sym_ATcatch] = ACTIONS(1651), + [anon_sym_ATfinally] = ACTIONS(1651), + [anon_sym_ATthrow] = ACTIONS(1651), + [anon_sym_ATselector] = ACTIONS(1651), + [anon_sym_ATencode] = ACTIONS(1651), + [anon_sym_AT] = ACTIONS(1649), + [sym_YES] = ACTIONS(1649), + [sym_NO] = ACTIONS(1649), + [anon_sym___builtin_available] = ACTIONS(1649), + [anon_sym_ATavailable] = ACTIONS(1651), + [anon_sym_va_arg] = ACTIONS(1649), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [275] = { + [sym_identifier] = ACTIONS(1653), + [aux_sym_preproc_include_token1] = ACTIONS(1655), + [aux_sym_preproc_def_token1] = ACTIONS(1655), + [aux_sym_preproc_if_token1] = ACTIONS(1653), + [aux_sym_preproc_if_token2] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1653), + [aux_sym_preproc_else_token1] = ACTIONS(1653), + [aux_sym_preproc_elif_token1] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_TILDE] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_typedef] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym___attribute] = ACTIONS(1653), + [anon_sym___attribute__] = ACTIONS(1653), + [anon_sym___declspec] = ACTIONS(1653), + [anon_sym___cdecl] = ACTIONS(1653), + [anon_sym___clrcall] = ACTIONS(1653), + [anon_sym___stdcall] = ACTIONS(1653), + [anon_sym___fastcall] = ACTIONS(1653), + [anon_sym___thiscall] = ACTIONS(1653), + [anon_sym___vectorcall] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_static] = ACTIONS(1653), + [anon_sym_auto] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_inline] = ACTIONS(1653), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_volatile] = ACTIONS(1653), + [anon_sym_restrict] = ACTIONS(1653), + [anon_sym__Atomic] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [anon_sym_out] = ACTIONS(1653), + [anon_sym_inout] = ACTIONS(1653), + [anon_sym_bycopy] = ACTIONS(1653), + [anon_sym_byref] = ACTIONS(1653), + [anon_sym_oneway] = ACTIONS(1653), + [anon_sym__Nullable] = ACTIONS(1653), + [anon_sym__Nonnull] = ACTIONS(1653), + [anon_sym__Nullable_result] = ACTIONS(1653), + [anon_sym__Null_unspecified] = ACTIONS(1653), + [anon_sym___autoreleasing] = ACTIONS(1653), + [anon_sym___nullable] = ACTIONS(1653), + [anon_sym___nonnull] = ACTIONS(1653), + [anon_sym___strong] = ACTIONS(1653), + [anon_sym___weak] = ACTIONS(1653), + [anon_sym___bridge] = ACTIONS(1653), + [anon_sym___bridge_transfer] = ACTIONS(1653), + [anon_sym___bridge_retained] = ACTIONS(1653), + [anon_sym___unsafe_unretained] = ACTIONS(1653), + [anon_sym___block] = ACTIONS(1653), + [anon_sym___kindof] = ACTIONS(1653), + [anon_sym___unused] = ACTIONS(1653), + [anon_sym__Complex] = ACTIONS(1653), + [anon_sym___complex] = ACTIONS(1653), + [anon_sym_IBOutlet] = ACTIONS(1653), + [anon_sym_IBInspectable] = ACTIONS(1653), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1653), + [anon_sym_signed] = ACTIONS(1653), + [anon_sym_unsigned] = ACTIONS(1653), + [anon_sym_long] = ACTIONS(1653), + [anon_sym_short] = ACTIONS(1653), + [sym_primitive_type] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_switch] = ACTIONS(1653), + [anon_sym_case] = ACTIONS(1653), + [anon_sym_default] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_goto] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_sizeof] = ACTIONS(1653), + [sym_number_literal] = ACTIONS(1655), + [anon_sym_L_SQUOTE] = ACTIONS(1655), + [anon_sym_u_SQUOTE] = ACTIONS(1655), + [anon_sym_U_SQUOTE] = ACTIONS(1655), + [anon_sym_u8_SQUOTE] = ACTIONS(1655), + [anon_sym_SQUOTE] = ACTIONS(1655), + [anon_sym_L_DQUOTE] = ACTIONS(1655), + [anon_sym_u_DQUOTE] = ACTIONS(1655), + [anon_sym_U_DQUOTE] = ACTIONS(1655), + [anon_sym_u8_DQUOTE] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym_true] = ACTIONS(1653), + [sym_false] = ACTIONS(1653), + [sym_null] = ACTIONS(1653), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1655), + [anon_sym_ATimport] = ACTIONS(1655), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1653), + [anon_sym_ATcompatibility_alias] = ACTIONS(1655), + [anon_sym_ATprotocol] = ACTIONS(1655), + [anon_sym_ATclass] = ACTIONS(1655), + [anon_sym_ATinterface] = ACTIONS(1655), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1653), + [sym_method_attribute_specifier] = ACTIONS(1653), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1653), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE] = ACTIONS(1653), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_API_AVAILABLE] = ACTIONS(1653), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_API_DEPRECATED] = ACTIONS(1653), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1653), + [anon_sym___deprecated_msg] = ACTIONS(1653), + [anon_sym___deprecated_enum_msg] = ACTIONS(1653), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1653), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1653), + [anon_sym_ATimplementation] = ACTIONS(1655), + [anon_sym_NS_ENUM] = ACTIONS(1653), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), + [anon_sym_NS_OPTIONS] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1653), + [anon_sym___typeof] = ACTIONS(1653), + [anon_sym___typeof__] = ACTIONS(1653), + [sym_self] = ACTIONS(1653), + [sym_super] = ACTIONS(1653), + [sym_nil] = ACTIONS(1653), + [sym_id] = ACTIONS(1653), + [sym_instancetype] = ACTIONS(1653), + [sym_Class] = ACTIONS(1653), + [sym_SEL] = ACTIONS(1653), + [sym_IMP] = ACTIONS(1653), + [sym_BOOL] = ACTIONS(1653), + [sym_auto] = ACTIONS(1653), + [anon_sym_ATautoreleasepool] = ACTIONS(1655), + [anon_sym_ATsynchronized] = ACTIONS(1655), + [anon_sym_ATtry] = ACTIONS(1655), + [anon_sym_ATcatch] = ACTIONS(1655), + [anon_sym_ATfinally] = ACTIONS(1655), + [anon_sym_ATthrow] = ACTIONS(1655), + [anon_sym_ATselector] = ACTIONS(1655), + [anon_sym_ATencode] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [sym_YES] = ACTIONS(1653), + [sym_NO] = ACTIONS(1653), + [anon_sym___builtin_available] = ACTIONS(1653), + [anon_sym_ATavailable] = ACTIONS(1655), + [anon_sym_va_arg] = ACTIONS(1653), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [276] = { + [sym_identifier] = ACTIONS(1653), + [aux_sym_preproc_include_token1] = ACTIONS(1655), + [aux_sym_preproc_def_token1] = ACTIONS(1655), + [aux_sym_preproc_if_token1] = ACTIONS(1653), + [aux_sym_preproc_if_token2] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1653), + [aux_sym_preproc_else_token1] = ACTIONS(1653), + [aux_sym_preproc_elif_token1] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_TILDE] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_typedef] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym___attribute] = ACTIONS(1653), + [anon_sym___attribute__] = ACTIONS(1653), + [anon_sym___declspec] = ACTIONS(1653), + [anon_sym___cdecl] = ACTIONS(1653), + [anon_sym___clrcall] = ACTIONS(1653), + [anon_sym___stdcall] = ACTIONS(1653), + [anon_sym___fastcall] = ACTIONS(1653), + [anon_sym___thiscall] = ACTIONS(1653), + [anon_sym___vectorcall] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_static] = ACTIONS(1653), + [anon_sym_auto] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_inline] = ACTIONS(1653), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_volatile] = ACTIONS(1653), + [anon_sym_restrict] = ACTIONS(1653), + [anon_sym__Atomic] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [anon_sym_out] = ACTIONS(1653), + [anon_sym_inout] = ACTIONS(1653), + [anon_sym_bycopy] = ACTIONS(1653), + [anon_sym_byref] = ACTIONS(1653), + [anon_sym_oneway] = ACTIONS(1653), + [anon_sym__Nullable] = ACTIONS(1653), + [anon_sym__Nonnull] = ACTIONS(1653), + [anon_sym__Nullable_result] = ACTIONS(1653), + [anon_sym__Null_unspecified] = ACTIONS(1653), + [anon_sym___autoreleasing] = ACTIONS(1653), + [anon_sym___nullable] = ACTIONS(1653), + [anon_sym___nonnull] = ACTIONS(1653), + [anon_sym___strong] = ACTIONS(1653), + [anon_sym___weak] = ACTIONS(1653), + [anon_sym___bridge] = ACTIONS(1653), + [anon_sym___bridge_transfer] = ACTIONS(1653), + [anon_sym___bridge_retained] = ACTIONS(1653), + [anon_sym___unsafe_unretained] = ACTIONS(1653), + [anon_sym___block] = ACTIONS(1653), + [anon_sym___kindof] = ACTIONS(1653), + [anon_sym___unused] = ACTIONS(1653), + [anon_sym__Complex] = ACTIONS(1653), + [anon_sym___complex] = ACTIONS(1653), + [anon_sym_IBOutlet] = ACTIONS(1653), + [anon_sym_IBInspectable] = ACTIONS(1653), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1653), + [anon_sym_signed] = ACTIONS(1653), + [anon_sym_unsigned] = ACTIONS(1653), + [anon_sym_long] = ACTIONS(1653), + [anon_sym_short] = ACTIONS(1653), + [sym_primitive_type] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_switch] = ACTIONS(1653), + [anon_sym_case] = ACTIONS(1653), + [anon_sym_default] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_goto] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_sizeof] = ACTIONS(1653), + [sym_number_literal] = ACTIONS(1655), + [anon_sym_L_SQUOTE] = ACTIONS(1655), + [anon_sym_u_SQUOTE] = ACTIONS(1655), + [anon_sym_U_SQUOTE] = ACTIONS(1655), + [anon_sym_u8_SQUOTE] = ACTIONS(1655), + [anon_sym_SQUOTE] = ACTIONS(1655), + [anon_sym_L_DQUOTE] = ACTIONS(1655), + [anon_sym_u_DQUOTE] = ACTIONS(1655), + [anon_sym_U_DQUOTE] = ACTIONS(1655), + [anon_sym_u8_DQUOTE] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym_true] = ACTIONS(1653), + [sym_false] = ACTIONS(1653), + [sym_null] = ACTIONS(1653), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1655), + [anon_sym_ATimport] = ACTIONS(1655), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1653), + [anon_sym_ATcompatibility_alias] = ACTIONS(1655), + [anon_sym_ATprotocol] = ACTIONS(1655), + [anon_sym_ATclass] = ACTIONS(1655), + [anon_sym_ATinterface] = ACTIONS(1655), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1653), + [sym_method_attribute_specifier] = ACTIONS(1653), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1653), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE] = ACTIONS(1653), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_API_AVAILABLE] = ACTIONS(1653), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_API_DEPRECATED] = ACTIONS(1653), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1653), + [anon_sym___deprecated_msg] = ACTIONS(1653), + [anon_sym___deprecated_enum_msg] = ACTIONS(1653), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1653), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1653), + [anon_sym_ATimplementation] = ACTIONS(1655), + [anon_sym_NS_ENUM] = ACTIONS(1653), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), + [anon_sym_NS_OPTIONS] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1653), + [anon_sym___typeof] = ACTIONS(1653), + [anon_sym___typeof__] = ACTIONS(1653), + [sym_self] = ACTIONS(1653), + [sym_super] = ACTIONS(1653), + [sym_nil] = ACTIONS(1653), + [sym_id] = ACTIONS(1653), + [sym_instancetype] = ACTIONS(1653), + [sym_Class] = ACTIONS(1653), + [sym_SEL] = ACTIONS(1653), + [sym_IMP] = ACTIONS(1653), + [sym_BOOL] = ACTIONS(1653), + [sym_auto] = ACTIONS(1653), + [anon_sym_ATautoreleasepool] = ACTIONS(1655), + [anon_sym_ATsynchronized] = ACTIONS(1655), + [anon_sym_ATtry] = ACTIONS(1655), + [anon_sym_ATcatch] = ACTIONS(1655), + [anon_sym_ATfinally] = ACTIONS(1655), + [anon_sym_ATthrow] = ACTIONS(1655), + [anon_sym_ATselector] = ACTIONS(1655), + [anon_sym_ATencode] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [sym_YES] = ACTIONS(1653), + [sym_NO] = ACTIONS(1653), + [anon_sym___builtin_available] = ACTIONS(1653), + [anon_sym_ATavailable] = ACTIONS(1655), + [anon_sym_va_arg] = ACTIONS(1653), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -74528,9 +74557,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1649), [sym_primitive_type] = ACTIONS(1649), [anon_sym_enum] = ACTIONS(1649), - [anon_sym_NS_ENUM] = ACTIONS(1649), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1649), - [anon_sym_NS_OPTIONS] = ACTIONS(1649), [anon_sym_struct] = ACTIONS(1649), [anon_sym_union] = ACTIONS(1649), [anon_sym_if] = ACTIONS(1649), @@ -74597,6 +74623,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1649), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1649), [anon_sym_ATimplementation] = ACTIONS(1651), + [anon_sym_NS_ENUM] = ACTIONS(1649), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1649), + [anon_sym_NS_OPTIONS] = ACTIONS(1649), [anon_sym_typeof] = ACTIONS(1649), [anon_sym___typeof] = ACTIONS(1649), [anon_sym___typeof__] = ACTIONS(1649), @@ -74632,10095 +74661,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [278] = { - [sym_identifier] = ACTIONS(1653), - [aux_sym_preproc_include_token1] = ACTIONS(1655), - [aux_sym_preproc_def_token1] = ACTIONS(1655), - [aux_sym_preproc_if_token1] = ACTIONS(1653), - [aux_sym_preproc_if_token2] = ACTIONS(1653), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1653), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1653), - [aux_sym_preproc_else_token1] = ACTIONS(1653), - [aux_sym_preproc_elif_token1] = ACTIONS(1653), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_CARET] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_typedef] = ACTIONS(1653), - [anon_sym_extern] = ACTIONS(1653), - [anon_sym___attribute] = ACTIONS(1653), - [anon_sym___attribute__] = ACTIONS(1653), - [anon_sym___declspec] = ACTIONS(1653), - [anon_sym___cdecl] = ACTIONS(1653), - [anon_sym___clrcall] = ACTIONS(1653), - [anon_sym___stdcall] = ACTIONS(1653), - [anon_sym___fastcall] = ACTIONS(1653), - [anon_sym___thiscall] = ACTIONS(1653), - [anon_sym___vectorcall] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_auto] = ACTIONS(1653), - [anon_sym_register] = ACTIONS(1653), - [anon_sym_inline] = ACTIONS(1653), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_volatile] = ACTIONS(1653), - [anon_sym_restrict] = ACTIONS(1653), - [anon_sym__Atomic] = ACTIONS(1653), - [anon_sym_in] = ACTIONS(1653), - [anon_sym_out] = ACTIONS(1653), - [anon_sym_inout] = ACTIONS(1653), - [anon_sym_bycopy] = ACTIONS(1653), - [anon_sym_byref] = ACTIONS(1653), - [anon_sym_oneway] = ACTIONS(1653), - [anon_sym__Nullable] = ACTIONS(1653), - [anon_sym__Nonnull] = ACTIONS(1653), - [anon_sym__Nullable_result] = ACTIONS(1653), - [anon_sym__Null_unspecified] = ACTIONS(1653), - [anon_sym___autoreleasing] = ACTIONS(1653), - [anon_sym___nullable] = ACTIONS(1653), - [anon_sym___nonnull] = ACTIONS(1653), - [anon_sym___strong] = ACTIONS(1653), - [anon_sym___weak] = ACTIONS(1653), - [anon_sym___bridge] = ACTIONS(1653), - [anon_sym___bridge_transfer] = ACTIONS(1653), - [anon_sym___bridge_retained] = ACTIONS(1653), - [anon_sym___unsafe_unretained] = ACTIONS(1653), - [anon_sym___block] = ACTIONS(1653), - [anon_sym___kindof] = ACTIONS(1653), - [anon_sym___unused] = ACTIONS(1653), - [anon_sym__Complex] = ACTIONS(1653), - [anon_sym___complex] = ACTIONS(1653), - [anon_sym_IBOutlet] = ACTIONS(1653), - [anon_sym_IBInspectable] = ACTIONS(1653), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1653), - [anon_sym_signed] = ACTIONS(1653), - [anon_sym_unsigned] = ACTIONS(1653), - [anon_sym_long] = ACTIONS(1653), - [anon_sym_short] = ACTIONS(1653), - [sym_primitive_type] = ACTIONS(1653), - [anon_sym_enum] = ACTIONS(1653), - [anon_sym_NS_ENUM] = ACTIONS(1653), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), - [anon_sym_NS_OPTIONS] = ACTIONS(1653), - [anon_sym_struct] = ACTIONS(1653), - [anon_sym_union] = ACTIONS(1653), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(1653), - [anon_sym_switch] = ACTIONS(1653), - [anon_sym_case] = ACTIONS(1653), - [anon_sym_default] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_do] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_goto] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_sizeof] = ACTIONS(1653), - [sym_number_literal] = ACTIONS(1655), - [anon_sym_L_SQUOTE] = ACTIONS(1655), - [anon_sym_u_SQUOTE] = ACTIONS(1655), - [anon_sym_U_SQUOTE] = ACTIONS(1655), - [anon_sym_u8_SQUOTE] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [anon_sym_L_DQUOTE] = ACTIONS(1655), - [anon_sym_u_DQUOTE] = ACTIONS(1655), - [anon_sym_U_DQUOTE] = ACTIONS(1655), - [anon_sym_u8_DQUOTE] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1655), - [anon_sym_ATimport] = ACTIONS(1655), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1653), - [anon_sym_ATcompatibility_alias] = ACTIONS(1655), - [anon_sym_ATprotocol] = ACTIONS(1655), - [anon_sym_ATclass] = ACTIONS(1655), - [anon_sym_ATinterface] = ACTIONS(1655), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1653), - [sym_method_attribute_specifier] = ACTIONS(1653), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1653), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1653), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1653), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1653), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1653), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1653), - [anon_sym_NS_AVAILABLE] = ACTIONS(1653), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1653), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1653), - [anon_sym_API_AVAILABLE] = ACTIONS(1653), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1653), - [anon_sym_API_DEPRECATED] = ACTIONS(1653), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1653), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1653), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1653), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1653), - [anon_sym___deprecated_msg] = ACTIONS(1653), - [anon_sym___deprecated_enum_msg] = ACTIONS(1653), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1653), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1653), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1653), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1653), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1653), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1653), - [anon_sym_ATimplementation] = ACTIONS(1655), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym___typeof] = ACTIONS(1653), - [anon_sym___typeof__] = ACTIONS(1653), - [sym_self] = ACTIONS(1653), - [sym_super] = ACTIONS(1653), - [sym_nil] = ACTIONS(1653), - [sym_id] = ACTIONS(1653), - [sym_instancetype] = ACTIONS(1653), - [sym_Class] = ACTIONS(1653), - [sym_SEL] = ACTIONS(1653), - [sym_IMP] = ACTIONS(1653), - [sym_BOOL] = ACTIONS(1653), - [sym_auto] = ACTIONS(1653), - [anon_sym_ATautoreleasepool] = ACTIONS(1655), - [anon_sym_ATsynchronized] = ACTIONS(1655), - [anon_sym_ATtry] = ACTIONS(1655), - [anon_sym_ATcatch] = ACTIONS(1655), - [anon_sym_ATfinally] = ACTIONS(1655), - [anon_sym_ATthrow] = ACTIONS(1655), - [anon_sym_ATselector] = ACTIONS(1655), - [anon_sym_ATencode] = ACTIONS(1655), - [anon_sym_AT] = ACTIONS(1653), - [sym_YES] = ACTIONS(1653), - [sym_NO] = ACTIONS(1653), - [anon_sym___builtin_available] = ACTIONS(1653), - [anon_sym_ATavailable] = ACTIONS(1655), - [anon_sym_va_arg] = ACTIONS(1653), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [279] = { - [sym_identifier] = ACTIONS(1657), - [aux_sym_preproc_include_token1] = ACTIONS(1659), - [aux_sym_preproc_def_token1] = ACTIONS(1659), - [aux_sym_preproc_if_token1] = ACTIONS(1657), - [aux_sym_preproc_if_token2] = ACTIONS(1657), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1657), - [aux_sym_preproc_else_token1] = ACTIONS(1657), - [aux_sym_preproc_elif_token1] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_typedef] = ACTIONS(1657), - [anon_sym_extern] = ACTIONS(1657), - [anon_sym___attribute] = ACTIONS(1657), - [anon_sym___attribute__] = ACTIONS(1657), - [anon_sym___declspec] = ACTIONS(1657), - [anon_sym___cdecl] = ACTIONS(1657), - [anon_sym___clrcall] = ACTIONS(1657), - [anon_sym___stdcall] = ACTIONS(1657), - [anon_sym___fastcall] = ACTIONS(1657), - [anon_sym___thiscall] = ACTIONS(1657), - [anon_sym___vectorcall] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_auto] = ACTIONS(1657), - [anon_sym_register] = ACTIONS(1657), - [anon_sym_inline] = ACTIONS(1657), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_volatile] = ACTIONS(1657), - [anon_sym_restrict] = ACTIONS(1657), - [anon_sym__Atomic] = ACTIONS(1657), - [anon_sym_in] = ACTIONS(1657), - [anon_sym_out] = ACTIONS(1657), - [anon_sym_inout] = ACTIONS(1657), - [anon_sym_bycopy] = ACTIONS(1657), - [anon_sym_byref] = ACTIONS(1657), - [anon_sym_oneway] = ACTIONS(1657), - [anon_sym__Nullable] = ACTIONS(1657), - [anon_sym__Nonnull] = ACTIONS(1657), - [anon_sym__Nullable_result] = ACTIONS(1657), - [anon_sym__Null_unspecified] = ACTIONS(1657), - [anon_sym___autoreleasing] = ACTIONS(1657), - [anon_sym___nullable] = ACTIONS(1657), - [anon_sym___nonnull] = ACTIONS(1657), - [anon_sym___strong] = ACTIONS(1657), - [anon_sym___weak] = ACTIONS(1657), - [anon_sym___bridge] = ACTIONS(1657), - [anon_sym___bridge_transfer] = ACTIONS(1657), - [anon_sym___bridge_retained] = ACTIONS(1657), - [anon_sym___unsafe_unretained] = ACTIONS(1657), - [anon_sym___block] = ACTIONS(1657), - [anon_sym___kindof] = ACTIONS(1657), - [anon_sym___unused] = ACTIONS(1657), - [anon_sym__Complex] = ACTIONS(1657), - [anon_sym___complex] = ACTIONS(1657), - [anon_sym_IBOutlet] = ACTIONS(1657), - [anon_sym_IBInspectable] = ACTIONS(1657), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1657), - [anon_sym_signed] = ACTIONS(1657), - [anon_sym_unsigned] = ACTIONS(1657), - [anon_sym_long] = ACTIONS(1657), - [anon_sym_short] = ACTIONS(1657), - [sym_primitive_type] = ACTIONS(1657), - [anon_sym_enum] = ACTIONS(1657), - [anon_sym_NS_ENUM] = ACTIONS(1657), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1657), - [anon_sym_NS_OPTIONS] = ACTIONS(1657), - [anon_sym_struct] = ACTIONS(1657), - [anon_sym_union] = ACTIONS(1657), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_else] = ACTIONS(1657), - [anon_sym_switch] = ACTIONS(1657), - [anon_sym_case] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_do] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_goto] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_sizeof] = ACTIONS(1657), - [sym_number_literal] = ACTIONS(1659), - [anon_sym_L_SQUOTE] = ACTIONS(1659), - [anon_sym_u_SQUOTE] = ACTIONS(1659), - [anon_sym_U_SQUOTE] = ACTIONS(1659), - [anon_sym_u8_SQUOTE] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_L_DQUOTE] = ACTIONS(1659), - [anon_sym_u_DQUOTE] = ACTIONS(1659), - [anon_sym_U_DQUOTE] = ACTIONS(1659), - [anon_sym_u8_DQUOTE] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [sym_true] = ACTIONS(1657), - [sym_false] = ACTIONS(1657), - [sym_null] = ACTIONS(1657), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1659), - [anon_sym_ATimport] = ACTIONS(1659), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1657), - [anon_sym_ATcompatibility_alias] = ACTIONS(1659), - [anon_sym_ATprotocol] = ACTIONS(1659), - [anon_sym_ATclass] = ACTIONS(1659), - [anon_sym_ATinterface] = ACTIONS(1659), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1657), - [sym_method_attribute_specifier] = ACTIONS(1657), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1657), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1657), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1657), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1657), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1657), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1657), - [anon_sym_NS_AVAILABLE] = ACTIONS(1657), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1657), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1657), - [anon_sym_API_AVAILABLE] = ACTIONS(1657), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1657), - [anon_sym_API_DEPRECATED] = ACTIONS(1657), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1657), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1657), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1657), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1657), - [anon_sym___deprecated_msg] = ACTIONS(1657), - [anon_sym___deprecated_enum_msg] = ACTIONS(1657), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1657), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1657), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1657), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1657), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1657), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1657), - [anon_sym_ATimplementation] = ACTIONS(1659), - [anon_sym_typeof] = ACTIONS(1657), - [anon_sym___typeof] = ACTIONS(1657), - [anon_sym___typeof__] = ACTIONS(1657), - [sym_self] = ACTIONS(1657), - [sym_super] = ACTIONS(1657), - [sym_nil] = ACTIONS(1657), - [sym_id] = ACTIONS(1657), - [sym_instancetype] = ACTIONS(1657), - [sym_Class] = ACTIONS(1657), - [sym_SEL] = ACTIONS(1657), - [sym_IMP] = ACTIONS(1657), - [sym_BOOL] = ACTIONS(1657), - [sym_auto] = ACTIONS(1657), - [anon_sym_ATautoreleasepool] = ACTIONS(1659), - [anon_sym_ATsynchronized] = ACTIONS(1659), - [anon_sym_ATtry] = ACTIONS(1659), - [anon_sym_ATcatch] = ACTIONS(1659), - [anon_sym_ATfinally] = ACTIONS(1659), - [anon_sym_ATthrow] = ACTIONS(1659), - [anon_sym_ATselector] = ACTIONS(1659), - [anon_sym_ATencode] = ACTIONS(1659), - [anon_sym_AT] = ACTIONS(1657), - [sym_YES] = ACTIONS(1657), - [sym_NO] = ACTIONS(1657), - [anon_sym___builtin_available] = ACTIONS(1657), - [anon_sym_ATavailable] = ACTIONS(1659), - [anon_sym_va_arg] = ACTIONS(1657), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [280] = { - [sym_identifier] = ACTIONS(1661), - [aux_sym_preproc_include_token1] = ACTIONS(1663), - [aux_sym_preproc_def_token1] = ACTIONS(1663), - [aux_sym_preproc_if_token1] = ACTIONS(1661), - [aux_sym_preproc_if_token2] = ACTIONS(1661), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1661), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1661), - [aux_sym_preproc_else_token1] = ACTIONS(1661), - [aux_sym_preproc_elif_token1] = ACTIONS(1661), - [anon_sym_LPAREN2] = ACTIONS(1663), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(1663), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_typedef] = ACTIONS(1661), - [anon_sym_extern] = ACTIONS(1661), - [anon_sym___attribute] = ACTIONS(1661), - [anon_sym___attribute__] = ACTIONS(1661), - [anon_sym___declspec] = ACTIONS(1661), - [anon_sym___cdecl] = ACTIONS(1661), - [anon_sym___clrcall] = ACTIONS(1661), - [anon_sym___stdcall] = ACTIONS(1661), - [anon_sym___fastcall] = ACTIONS(1661), - [anon_sym___thiscall] = ACTIONS(1661), - [anon_sym___vectorcall] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_auto] = ACTIONS(1661), - [anon_sym_register] = ACTIONS(1661), - [anon_sym_inline] = ACTIONS(1661), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_volatile] = ACTIONS(1661), - [anon_sym_restrict] = ACTIONS(1661), - [anon_sym__Atomic] = ACTIONS(1661), - [anon_sym_in] = ACTIONS(1661), - [anon_sym_out] = ACTIONS(1661), - [anon_sym_inout] = ACTIONS(1661), - [anon_sym_bycopy] = ACTIONS(1661), - [anon_sym_byref] = ACTIONS(1661), - [anon_sym_oneway] = ACTIONS(1661), - [anon_sym__Nullable] = ACTIONS(1661), - [anon_sym__Nonnull] = ACTIONS(1661), - [anon_sym__Nullable_result] = ACTIONS(1661), - [anon_sym__Null_unspecified] = ACTIONS(1661), - [anon_sym___autoreleasing] = ACTIONS(1661), - [anon_sym___nullable] = ACTIONS(1661), - [anon_sym___nonnull] = ACTIONS(1661), - [anon_sym___strong] = ACTIONS(1661), - [anon_sym___weak] = ACTIONS(1661), - [anon_sym___bridge] = ACTIONS(1661), - [anon_sym___bridge_transfer] = ACTIONS(1661), - [anon_sym___bridge_retained] = ACTIONS(1661), - [anon_sym___unsafe_unretained] = ACTIONS(1661), - [anon_sym___block] = ACTIONS(1661), - [anon_sym___kindof] = ACTIONS(1661), - [anon_sym___unused] = ACTIONS(1661), - [anon_sym__Complex] = ACTIONS(1661), - [anon_sym___complex] = ACTIONS(1661), - [anon_sym_IBOutlet] = ACTIONS(1661), - [anon_sym_IBInspectable] = ACTIONS(1661), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1661), - [anon_sym_signed] = ACTIONS(1661), - [anon_sym_unsigned] = ACTIONS(1661), - [anon_sym_long] = ACTIONS(1661), - [anon_sym_short] = ACTIONS(1661), - [sym_primitive_type] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [anon_sym_NS_ENUM] = ACTIONS(1661), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1661), - [anon_sym_NS_OPTIONS] = ACTIONS(1661), - [anon_sym_struct] = ACTIONS(1661), - [anon_sym_union] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1661), - [anon_sym_default] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_goto] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1661), - [sym_number_literal] = ACTIONS(1663), - [anon_sym_L_SQUOTE] = ACTIONS(1663), - [anon_sym_u_SQUOTE] = ACTIONS(1663), - [anon_sym_U_SQUOTE] = ACTIONS(1663), - [anon_sym_u8_SQUOTE] = ACTIONS(1663), - [anon_sym_SQUOTE] = ACTIONS(1663), - [anon_sym_L_DQUOTE] = ACTIONS(1663), - [anon_sym_u_DQUOTE] = ACTIONS(1663), - [anon_sym_U_DQUOTE] = ACTIONS(1663), - [anon_sym_u8_DQUOTE] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym_true] = ACTIONS(1661), - [sym_false] = ACTIONS(1661), - [sym_null] = ACTIONS(1661), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1663), - [anon_sym_ATimport] = ACTIONS(1663), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1661), - [anon_sym_ATcompatibility_alias] = ACTIONS(1663), - [anon_sym_ATprotocol] = ACTIONS(1663), - [anon_sym_ATclass] = ACTIONS(1663), - [anon_sym_ATinterface] = ACTIONS(1663), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1661), - [sym_method_attribute_specifier] = ACTIONS(1661), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1661), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1661), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1661), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1661), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1661), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1661), - [anon_sym_NS_AVAILABLE] = ACTIONS(1661), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1661), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1661), - [anon_sym_API_AVAILABLE] = ACTIONS(1661), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1661), - [anon_sym_API_DEPRECATED] = ACTIONS(1661), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1661), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1661), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1661), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1661), - [anon_sym___deprecated_msg] = ACTIONS(1661), - [anon_sym___deprecated_enum_msg] = ACTIONS(1661), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1661), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1661), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1661), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1661), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1661), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1661), - [anon_sym_ATimplementation] = ACTIONS(1663), - [anon_sym_typeof] = ACTIONS(1661), - [anon_sym___typeof] = ACTIONS(1661), - [anon_sym___typeof__] = ACTIONS(1661), - [sym_self] = ACTIONS(1661), - [sym_super] = ACTIONS(1661), - [sym_nil] = ACTIONS(1661), - [sym_id] = ACTIONS(1661), - [sym_instancetype] = ACTIONS(1661), - [sym_Class] = ACTIONS(1661), - [sym_SEL] = ACTIONS(1661), - [sym_IMP] = ACTIONS(1661), - [sym_BOOL] = ACTIONS(1661), - [sym_auto] = ACTIONS(1661), - [anon_sym_ATautoreleasepool] = ACTIONS(1663), - [anon_sym_ATsynchronized] = ACTIONS(1663), - [anon_sym_ATtry] = ACTIONS(1663), - [anon_sym_ATcatch] = ACTIONS(1663), - [anon_sym_ATfinally] = ACTIONS(1663), - [anon_sym_ATthrow] = ACTIONS(1663), - [anon_sym_ATselector] = ACTIONS(1663), - [anon_sym_ATencode] = ACTIONS(1663), - [anon_sym_AT] = ACTIONS(1661), - [sym_YES] = ACTIONS(1661), - [sym_NO] = ACTIONS(1661), - [anon_sym___builtin_available] = ACTIONS(1661), - [anon_sym_ATavailable] = ACTIONS(1663), - [anon_sym_va_arg] = ACTIONS(1661), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [281] = { - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_include_token1] = ACTIONS(1667), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1665), - [aux_sym_preproc_if_token2] = ACTIONS(1665), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1665), - [aux_sym_preproc_else_token1] = ACTIONS(1665), - [aux_sym_preproc_elif_token1] = ACTIONS(1665), - [anon_sym_LPAREN2] = ACTIONS(1667), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_typedef] = ACTIONS(1665), - [anon_sym_extern] = ACTIONS(1665), - [anon_sym___attribute] = ACTIONS(1665), - [anon_sym___attribute__] = ACTIONS(1665), - [anon_sym___declspec] = ACTIONS(1665), - [anon_sym___cdecl] = ACTIONS(1665), - [anon_sym___clrcall] = ACTIONS(1665), - [anon_sym___stdcall] = ACTIONS(1665), - [anon_sym___fastcall] = ACTIONS(1665), - [anon_sym___thiscall] = ACTIONS(1665), - [anon_sym___vectorcall] = ACTIONS(1665), - [anon_sym_LBRACE] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1665), - [anon_sym_auto] = ACTIONS(1665), - [anon_sym_register] = ACTIONS(1665), - [anon_sym_inline] = ACTIONS(1665), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1665), - [anon_sym_volatile] = ACTIONS(1665), - [anon_sym_restrict] = ACTIONS(1665), - [anon_sym__Atomic] = ACTIONS(1665), - [anon_sym_in] = ACTIONS(1665), - [anon_sym_out] = ACTIONS(1665), - [anon_sym_inout] = ACTIONS(1665), - [anon_sym_bycopy] = ACTIONS(1665), - [anon_sym_byref] = ACTIONS(1665), - [anon_sym_oneway] = ACTIONS(1665), - [anon_sym__Nullable] = ACTIONS(1665), - [anon_sym__Nonnull] = ACTIONS(1665), - [anon_sym__Nullable_result] = ACTIONS(1665), - [anon_sym__Null_unspecified] = ACTIONS(1665), - [anon_sym___autoreleasing] = ACTIONS(1665), - [anon_sym___nullable] = ACTIONS(1665), - [anon_sym___nonnull] = ACTIONS(1665), - [anon_sym___strong] = ACTIONS(1665), - [anon_sym___weak] = ACTIONS(1665), - [anon_sym___bridge] = ACTIONS(1665), - [anon_sym___bridge_transfer] = ACTIONS(1665), - [anon_sym___bridge_retained] = ACTIONS(1665), - [anon_sym___unsafe_unretained] = ACTIONS(1665), - [anon_sym___block] = ACTIONS(1665), - [anon_sym___kindof] = ACTIONS(1665), - [anon_sym___unused] = ACTIONS(1665), - [anon_sym__Complex] = ACTIONS(1665), - [anon_sym___complex] = ACTIONS(1665), - [anon_sym_IBOutlet] = ACTIONS(1665), - [anon_sym_IBInspectable] = ACTIONS(1665), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1665), - [anon_sym_signed] = ACTIONS(1665), - [anon_sym_unsigned] = ACTIONS(1665), - [anon_sym_long] = ACTIONS(1665), - [anon_sym_short] = ACTIONS(1665), - [sym_primitive_type] = ACTIONS(1665), - [anon_sym_enum] = ACTIONS(1665), - [anon_sym_NS_ENUM] = ACTIONS(1665), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1665), - [anon_sym_NS_OPTIONS] = ACTIONS(1665), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_union] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1665), - [anon_sym_else] = ACTIONS(1665), - [anon_sym_switch] = ACTIONS(1665), - [anon_sym_case] = ACTIONS(1665), - [anon_sym_default] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1665), - [anon_sym_do] = ACTIONS(1665), - [anon_sym_for] = ACTIONS(1665), - [anon_sym_return] = ACTIONS(1665), - [anon_sym_break] = ACTIONS(1665), - [anon_sym_continue] = ACTIONS(1665), - [anon_sym_goto] = ACTIONS(1665), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_sizeof] = ACTIONS(1665), - [sym_number_literal] = ACTIONS(1667), - [anon_sym_L_SQUOTE] = ACTIONS(1667), - [anon_sym_u_SQUOTE] = ACTIONS(1667), - [anon_sym_U_SQUOTE] = ACTIONS(1667), - [anon_sym_u8_SQUOTE] = ACTIONS(1667), - [anon_sym_SQUOTE] = ACTIONS(1667), - [anon_sym_L_DQUOTE] = ACTIONS(1667), - [anon_sym_u_DQUOTE] = ACTIONS(1667), - [anon_sym_U_DQUOTE] = ACTIONS(1667), - [anon_sym_u8_DQUOTE] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_null] = ACTIONS(1665), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1667), - [anon_sym_ATimport] = ACTIONS(1667), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1665), - [anon_sym_ATcompatibility_alias] = ACTIONS(1667), - [anon_sym_ATprotocol] = ACTIONS(1667), - [anon_sym_ATclass] = ACTIONS(1667), - [anon_sym_ATinterface] = ACTIONS(1667), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1665), - [sym_method_attribute_specifier] = ACTIONS(1665), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1665), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1665), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1665), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1665), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1665), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1665), - [anon_sym_NS_AVAILABLE] = ACTIONS(1665), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1665), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1665), - [anon_sym_API_AVAILABLE] = ACTIONS(1665), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1665), - [anon_sym_API_DEPRECATED] = ACTIONS(1665), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1665), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1665), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1665), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1665), - [anon_sym___deprecated_msg] = ACTIONS(1665), - [anon_sym___deprecated_enum_msg] = ACTIONS(1665), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1665), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1665), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1665), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1665), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1665), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1665), - [anon_sym_ATimplementation] = ACTIONS(1667), - [anon_sym_typeof] = ACTIONS(1665), - [anon_sym___typeof] = ACTIONS(1665), - [anon_sym___typeof__] = ACTIONS(1665), - [sym_self] = ACTIONS(1665), - [sym_super] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [sym_id] = ACTIONS(1665), - [sym_instancetype] = ACTIONS(1665), - [sym_Class] = ACTIONS(1665), - [sym_SEL] = ACTIONS(1665), - [sym_IMP] = ACTIONS(1665), - [sym_BOOL] = ACTIONS(1665), - [sym_auto] = ACTIONS(1665), - [anon_sym_ATautoreleasepool] = ACTIONS(1667), - [anon_sym_ATsynchronized] = ACTIONS(1667), - [anon_sym_ATtry] = ACTIONS(1667), - [anon_sym_ATcatch] = ACTIONS(1667), - [anon_sym_ATfinally] = ACTIONS(1667), - [anon_sym_ATthrow] = ACTIONS(1667), - [anon_sym_ATselector] = ACTIONS(1667), - [anon_sym_ATencode] = ACTIONS(1667), - [anon_sym_AT] = ACTIONS(1665), - [sym_YES] = ACTIONS(1665), - [sym_NO] = ACTIONS(1665), - [anon_sym___builtin_available] = ACTIONS(1665), - [anon_sym_ATavailable] = ACTIONS(1667), - [anon_sym_va_arg] = ACTIONS(1665), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [282] = { - [ts_builtin_sym_end] = ACTIONS(1407), - [sym_identifier] = ACTIONS(1405), - [aux_sym_preproc_include_token1] = ACTIONS(1407), - [aux_sym_preproc_def_token1] = ACTIONS(1407), - [anon_sym_RPAREN] = ACTIONS(1407), - [aux_sym_preproc_if_token1] = ACTIONS(1405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1405), - [anon_sym_LPAREN2] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_typedef] = ACTIONS(1405), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym___attribute] = ACTIONS(1405), - [anon_sym___attribute__] = ACTIONS(1405), - [anon_sym___declspec] = ACTIONS(1405), - [anon_sym___cdecl] = ACTIONS(1405), - [anon_sym___clrcall] = ACTIONS(1405), - [anon_sym___stdcall] = ACTIONS(1405), - [anon_sym___fastcall] = ACTIONS(1405), - [anon_sym___thiscall] = ACTIONS(1405), - [anon_sym___vectorcall] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_auto] = ACTIONS(1405), - [anon_sym_register] = ACTIONS(1405), - [anon_sym_inline] = ACTIONS(1405), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_volatile] = ACTIONS(1405), - [anon_sym_restrict] = ACTIONS(1405), - [anon_sym__Atomic] = ACTIONS(1405), - [anon_sym_in] = ACTIONS(1405), - [anon_sym_out] = ACTIONS(1405), - [anon_sym_inout] = ACTIONS(1405), - [anon_sym_bycopy] = ACTIONS(1405), - [anon_sym_byref] = ACTIONS(1405), - [anon_sym_oneway] = ACTIONS(1405), - [anon_sym__Nullable] = ACTIONS(1405), - [anon_sym__Nonnull] = ACTIONS(1405), - [anon_sym__Nullable_result] = ACTIONS(1405), - [anon_sym__Null_unspecified] = ACTIONS(1405), - [anon_sym___autoreleasing] = ACTIONS(1405), - [anon_sym___nullable] = ACTIONS(1405), - [anon_sym___nonnull] = ACTIONS(1405), - [anon_sym___strong] = ACTIONS(1405), - [anon_sym___weak] = ACTIONS(1405), - [anon_sym___bridge] = ACTIONS(1405), - [anon_sym___bridge_transfer] = ACTIONS(1405), - [anon_sym___bridge_retained] = ACTIONS(1405), - [anon_sym___unsafe_unretained] = ACTIONS(1405), - [anon_sym___block] = ACTIONS(1405), - [anon_sym___kindof] = ACTIONS(1405), - [anon_sym___unused] = ACTIONS(1405), - [anon_sym__Complex] = ACTIONS(1405), - [anon_sym___complex] = ACTIONS(1405), - [anon_sym_IBOutlet] = ACTIONS(1405), - [anon_sym_IBInspectable] = ACTIONS(1405), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1405), - [anon_sym_signed] = ACTIONS(1405), - [anon_sym_unsigned] = ACTIONS(1405), - [anon_sym_long] = ACTIONS(1405), - [anon_sym_short] = ACTIONS(1405), - [sym_primitive_type] = ACTIONS(1405), - [anon_sym_enum] = ACTIONS(1405), - [anon_sym_NS_ENUM] = ACTIONS(1405), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1405), - [anon_sym_NS_OPTIONS] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_union] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_switch] = ACTIONS(1405), - [anon_sym_case] = ACTIONS(1405), - [anon_sym_default] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_goto] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_sizeof] = ACTIONS(1405), - [sym_number_literal] = ACTIONS(1407), - [anon_sym_L_SQUOTE] = ACTIONS(1407), - [anon_sym_u_SQUOTE] = ACTIONS(1407), - [anon_sym_U_SQUOTE] = ACTIONS(1407), - [anon_sym_u8_SQUOTE] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1407), - [anon_sym_L_DQUOTE] = ACTIONS(1407), - [anon_sym_u_DQUOTE] = ACTIONS(1407), - [anon_sym_U_DQUOTE] = ACTIONS(1407), - [anon_sym_u8_DQUOTE] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [sym_true] = ACTIONS(1405), - [sym_false] = ACTIONS(1405), - [sym_null] = ACTIONS(1405), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1407), - [anon_sym_ATimport] = ACTIONS(1407), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1405), - [anon_sym_ATcompatibility_alias] = ACTIONS(1407), - [anon_sym_ATprotocol] = ACTIONS(1407), - [anon_sym_ATclass] = ACTIONS(1407), - [anon_sym_ATinterface] = ACTIONS(1407), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1405), - [sym_method_attribute_specifier] = ACTIONS(1405), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1405), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1405), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1405), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1405), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1405), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1405), - [anon_sym_NS_AVAILABLE] = ACTIONS(1405), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1405), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1405), - [anon_sym_API_AVAILABLE] = ACTIONS(1405), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1405), - [anon_sym_API_DEPRECATED] = ACTIONS(1405), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1405), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1405), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1405), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1405), - [anon_sym___deprecated_msg] = ACTIONS(1405), - [anon_sym___deprecated_enum_msg] = ACTIONS(1405), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1405), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1405), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1405), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1405), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1405), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1405), - [anon_sym_ATimplementation] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1405), - [anon_sym___typeof] = ACTIONS(1405), - [anon_sym___typeof__] = ACTIONS(1405), - [sym_self] = ACTIONS(1405), - [sym_super] = ACTIONS(1405), - [sym_nil] = ACTIONS(1405), - [sym_id] = ACTIONS(1405), - [sym_instancetype] = ACTIONS(1405), - [sym_Class] = ACTIONS(1405), - [sym_SEL] = ACTIONS(1405), - [sym_IMP] = ACTIONS(1405), - [sym_BOOL] = ACTIONS(1405), - [sym_auto] = ACTIONS(1405), - [anon_sym_ATautoreleasepool] = ACTIONS(1407), - [anon_sym_ATsynchronized] = ACTIONS(1407), - [anon_sym_ATtry] = ACTIONS(1407), - [anon_sym_ATcatch] = ACTIONS(1407), - [anon_sym_ATfinally] = ACTIONS(1407), - [anon_sym_ATthrow] = ACTIONS(1407), - [anon_sym_ATselector] = ACTIONS(1407), - [anon_sym_ATencode] = ACTIONS(1407), - [anon_sym_AT] = ACTIONS(1405), - [sym_YES] = ACTIONS(1405), - [sym_NO] = ACTIONS(1405), - [anon_sym___builtin_available] = ACTIONS(1405), - [anon_sym_ATavailable] = ACTIONS(1407), - [anon_sym_va_arg] = ACTIONS(1405), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [283] = { - [sym_identifier] = ACTIONS(1669), - [aux_sym_preproc_include_token1] = ACTIONS(1671), - [aux_sym_preproc_def_token1] = ACTIONS(1671), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_if_token2] = ACTIONS(1669), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1669), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1669), - [aux_sym_preproc_else_token1] = ACTIONS(1669), - [aux_sym_preproc_elif_token1] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1671), - [anon_sym_TILDE] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1671), - [anon_sym_CARET] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_typedef] = ACTIONS(1669), - [anon_sym_extern] = ACTIONS(1669), - [anon_sym___attribute] = ACTIONS(1669), - [anon_sym___attribute__] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1669), - [anon_sym___cdecl] = ACTIONS(1669), - [anon_sym___clrcall] = ACTIONS(1669), - [anon_sym___stdcall] = ACTIONS(1669), - [anon_sym___fastcall] = ACTIONS(1669), - [anon_sym___thiscall] = ACTIONS(1669), - [anon_sym___vectorcall] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_static] = ACTIONS(1669), - [anon_sym_auto] = ACTIONS(1669), - [anon_sym_register] = ACTIONS(1669), - [anon_sym_inline] = ACTIONS(1669), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_volatile] = ACTIONS(1669), - [anon_sym_restrict] = ACTIONS(1669), - [anon_sym__Atomic] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_out] = ACTIONS(1669), - [anon_sym_inout] = ACTIONS(1669), - [anon_sym_bycopy] = ACTIONS(1669), - [anon_sym_byref] = ACTIONS(1669), - [anon_sym_oneway] = ACTIONS(1669), - [anon_sym__Nullable] = ACTIONS(1669), - [anon_sym__Nonnull] = ACTIONS(1669), - [anon_sym__Nullable_result] = ACTIONS(1669), - [anon_sym__Null_unspecified] = ACTIONS(1669), - [anon_sym___autoreleasing] = ACTIONS(1669), - [anon_sym___nullable] = ACTIONS(1669), - [anon_sym___nonnull] = ACTIONS(1669), - [anon_sym___strong] = ACTIONS(1669), - [anon_sym___weak] = ACTIONS(1669), - [anon_sym___bridge] = ACTIONS(1669), - [anon_sym___bridge_transfer] = ACTIONS(1669), - [anon_sym___bridge_retained] = ACTIONS(1669), - [anon_sym___unsafe_unretained] = ACTIONS(1669), - [anon_sym___block] = ACTIONS(1669), - [anon_sym___kindof] = ACTIONS(1669), - [anon_sym___unused] = ACTIONS(1669), - [anon_sym__Complex] = ACTIONS(1669), - [anon_sym___complex] = ACTIONS(1669), - [anon_sym_IBOutlet] = ACTIONS(1669), - [anon_sym_IBInspectable] = ACTIONS(1669), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1669), - [anon_sym_signed] = ACTIONS(1669), - [anon_sym_unsigned] = ACTIONS(1669), - [anon_sym_long] = ACTIONS(1669), - [anon_sym_short] = ACTIONS(1669), - [sym_primitive_type] = ACTIONS(1669), - [anon_sym_enum] = ACTIONS(1669), - [anon_sym_NS_ENUM] = ACTIONS(1669), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1669), - [anon_sym_NS_OPTIONS] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1669), - [anon_sym_union] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_else] = ACTIONS(1669), - [anon_sym_switch] = ACTIONS(1669), - [anon_sym_case] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_do] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_goto] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_sizeof] = ACTIONS(1669), - [sym_number_literal] = ACTIONS(1671), - [anon_sym_L_SQUOTE] = ACTIONS(1671), - [anon_sym_u_SQUOTE] = ACTIONS(1671), - [anon_sym_U_SQUOTE] = ACTIONS(1671), - [anon_sym_u8_SQUOTE] = ACTIONS(1671), - [anon_sym_SQUOTE] = ACTIONS(1671), - [anon_sym_L_DQUOTE] = ACTIONS(1671), - [anon_sym_u_DQUOTE] = ACTIONS(1671), - [anon_sym_U_DQUOTE] = ACTIONS(1671), - [anon_sym_u8_DQUOTE] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym_true] = ACTIONS(1669), - [sym_false] = ACTIONS(1669), - [sym_null] = ACTIONS(1669), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1671), - [anon_sym_ATimport] = ACTIONS(1671), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1669), - [anon_sym_ATcompatibility_alias] = ACTIONS(1671), - [anon_sym_ATprotocol] = ACTIONS(1671), - [anon_sym_ATclass] = ACTIONS(1671), - [anon_sym_ATinterface] = ACTIONS(1671), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1669), - [sym_method_attribute_specifier] = ACTIONS(1669), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1669), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1669), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1669), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1669), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1669), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1669), - [anon_sym_NS_AVAILABLE] = ACTIONS(1669), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1669), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1669), - [anon_sym_API_AVAILABLE] = ACTIONS(1669), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1669), - [anon_sym_API_DEPRECATED] = ACTIONS(1669), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1669), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1669), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1669), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1669), - [anon_sym___deprecated_msg] = ACTIONS(1669), - [anon_sym___deprecated_enum_msg] = ACTIONS(1669), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1669), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1669), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1669), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1669), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1669), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1669), - [anon_sym_ATimplementation] = ACTIONS(1671), - [anon_sym_typeof] = ACTIONS(1669), - [anon_sym___typeof] = ACTIONS(1669), - [anon_sym___typeof__] = ACTIONS(1669), - [sym_self] = ACTIONS(1669), - [sym_super] = ACTIONS(1669), - [sym_nil] = ACTIONS(1669), - [sym_id] = ACTIONS(1669), - [sym_instancetype] = ACTIONS(1669), - [sym_Class] = ACTIONS(1669), - [sym_SEL] = ACTIONS(1669), - [sym_IMP] = ACTIONS(1669), - [sym_BOOL] = ACTIONS(1669), - [sym_auto] = ACTIONS(1669), - [anon_sym_ATautoreleasepool] = ACTIONS(1671), - [anon_sym_ATsynchronized] = ACTIONS(1671), - [anon_sym_ATtry] = ACTIONS(1671), - [anon_sym_ATcatch] = ACTIONS(1671), - [anon_sym_ATfinally] = ACTIONS(1671), - [anon_sym_ATthrow] = ACTIONS(1671), - [anon_sym_ATselector] = ACTIONS(1671), - [anon_sym_ATencode] = ACTIONS(1671), - [anon_sym_AT] = ACTIONS(1669), - [sym_YES] = ACTIONS(1669), - [sym_NO] = ACTIONS(1669), - [anon_sym___builtin_available] = ACTIONS(1669), - [anon_sym_ATavailable] = ACTIONS(1671), - [anon_sym_va_arg] = ACTIONS(1669), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [284] = { - [sym_identifier] = ACTIONS(1673), - [aux_sym_preproc_include_token1] = ACTIONS(1675), - [aux_sym_preproc_def_token1] = ACTIONS(1675), - [aux_sym_preproc_if_token1] = ACTIONS(1673), - [aux_sym_preproc_if_token2] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1673), - [aux_sym_preproc_else_token1] = ACTIONS(1673), - [aux_sym_preproc_elif_token1] = ACTIONS(1673), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_CARET] = ACTIONS(1675), - [anon_sym_AMP] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_typedef] = ACTIONS(1673), - [anon_sym_extern] = ACTIONS(1673), - [anon_sym___attribute] = ACTIONS(1673), - [anon_sym___attribute__] = ACTIONS(1673), - [anon_sym___declspec] = ACTIONS(1673), - [anon_sym___cdecl] = ACTIONS(1673), - [anon_sym___clrcall] = ACTIONS(1673), - [anon_sym___stdcall] = ACTIONS(1673), - [anon_sym___fastcall] = ACTIONS(1673), - [anon_sym___thiscall] = ACTIONS(1673), - [anon_sym___vectorcall] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_static] = ACTIONS(1673), - [anon_sym_auto] = ACTIONS(1673), - [anon_sym_register] = ACTIONS(1673), - [anon_sym_inline] = ACTIONS(1673), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1673), - [anon_sym_const] = ACTIONS(1673), - [anon_sym_volatile] = ACTIONS(1673), - [anon_sym_restrict] = ACTIONS(1673), - [anon_sym__Atomic] = ACTIONS(1673), - [anon_sym_in] = ACTIONS(1673), - [anon_sym_out] = ACTIONS(1673), - [anon_sym_inout] = ACTIONS(1673), - [anon_sym_bycopy] = ACTIONS(1673), - [anon_sym_byref] = ACTIONS(1673), - [anon_sym_oneway] = ACTIONS(1673), - [anon_sym__Nullable] = ACTIONS(1673), - [anon_sym__Nonnull] = ACTIONS(1673), - [anon_sym__Nullable_result] = ACTIONS(1673), - [anon_sym__Null_unspecified] = ACTIONS(1673), - [anon_sym___autoreleasing] = ACTIONS(1673), - [anon_sym___nullable] = ACTIONS(1673), - [anon_sym___nonnull] = ACTIONS(1673), - [anon_sym___strong] = ACTIONS(1673), - [anon_sym___weak] = ACTIONS(1673), - [anon_sym___bridge] = ACTIONS(1673), - [anon_sym___bridge_transfer] = ACTIONS(1673), - [anon_sym___bridge_retained] = ACTIONS(1673), - [anon_sym___unsafe_unretained] = ACTIONS(1673), - [anon_sym___block] = ACTIONS(1673), - [anon_sym___kindof] = ACTIONS(1673), - [anon_sym___unused] = ACTIONS(1673), - [anon_sym__Complex] = ACTIONS(1673), - [anon_sym___complex] = ACTIONS(1673), - [anon_sym_IBOutlet] = ACTIONS(1673), - [anon_sym_IBInspectable] = ACTIONS(1673), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1673), - [anon_sym_signed] = ACTIONS(1673), - [anon_sym_unsigned] = ACTIONS(1673), - [anon_sym_long] = ACTIONS(1673), - [anon_sym_short] = ACTIONS(1673), - [sym_primitive_type] = ACTIONS(1673), - [anon_sym_enum] = ACTIONS(1673), - [anon_sym_NS_ENUM] = ACTIONS(1673), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1673), - [anon_sym_NS_OPTIONS] = ACTIONS(1673), - [anon_sym_struct] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_switch] = ACTIONS(1673), - [anon_sym_case] = ACTIONS(1673), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_do] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1673), - [anon_sym_goto] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_sizeof] = ACTIONS(1673), - [sym_number_literal] = ACTIONS(1675), - [anon_sym_L_SQUOTE] = ACTIONS(1675), - [anon_sym_u_SQUOTE] = ACTIONS(1675), - [anon_sym_U_SQUOTE] = ACTIONS(1675), - [anon_sym_u8_SQUOTE] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1675), - [anon_sym_L_DQUOTE] = ACTIONS(1675), - [anon_sym_u_DQUOTE] = ACTIONS(1675), - [anon_sym_U_DQUOTE] = ACTIONS(1675), - [anon_sym_u8_DQUOTE] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym_true] = ACTIONS(1673), - [sym_false] = ACTIONS(1673), - [sym_null] = ACTIONS(1673), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1675), - [anon_sym_ATimport] = ACTIONS(1675), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1673), - [anon_sym_ATcompatibility_alias] = ACTIONS(1675), - [anon_sym_ATprotocol] = ACTIONS(1675), - [anon_sym_ATclass] = ACTIONS(1675), - [anon_sym_ATinterface] = ACTIONS(1675), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1673), - [sym_method_attribute_specifier] = ACTIONS(1673), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1673), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1673), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1673), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1673), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1673), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1673), - [anon_sym_NS_AVAILABLE] = ACTIONS(1673), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1673), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1673), - [anon_sym_API_AVAILABLE] = ACTIONS(1673), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1673), - [anon_sym_API_DEPRECATED] = ACTIONS(1673), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1673), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1673), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1673), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1673), - [anon_sym___deprecated_msg] = ACTIONS(1673), - [anon_sym___deprecated_enum_msg] = ACTIONS(1673), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1673), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1673), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1673), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1673), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1673), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1673), - [anon_sym_ATimplementation] = ACTIONS(1675), - [anon_sym_typeof] = ACTIONS(1673), - [anon_sym___typeof] = ACTIONS(1673), - [anon_sym___typeof__] = ACTIONS(1673), - [sym_self] = ACTIONS(1673), - [sym_super] = ACTIONS(1673), - [sym_nil] = ACTIONS(1673), - [sym_id] = ACTIONS(1673), - [sym_instancetype] = ACTIONS(1673), - [sym_Class] = ACTIONS(1673), - [sym_SEL] = ACTIONS(1673), - [sym_IMP] = ACTIONS(1673), - [sym_BOOL] = ACTIONS(1673), - [sym_auto] = ACTIONS(1673), - [anon_sym_ATautoreleasepool] = ACTIONS(1675), - [anon_sym_ATsynchronized] = ACTIONS(1675), - [anon_sym_ATtry] = ACTIONS(1675), - [anon_sym_ATcatch] = ACTIONS(1675), - [anon_sym_ATfinally] = ACTIONS(1675), - [anon_sym_ATthrow] = ACTIONS(1675), - [anon_sym_ATselector] = ACTIONS(1675), - [anon_sym_ATencode] = ACTIONS(1675), - [anon_sym_AT] = ACTIONS(1673), - [sym_YES] = ACTIONS(1673), - [sym_NO] = ACTIONS(1673), - [anon_sym___builtin_available] = ACTIONS(1673), - [anon_sym_ATavailable] = ACTIONS(1675), - [anon_sym_va_arg] = ACTIONS(1673), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [285] = { - [sym_identifier] = ACTIONS(1677), - [aux_sym_preproc_include_token1] = ACTIONS(1679), - [aux_sym_preproc_def_token1] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1677), - [aux_sym_preproc_if_token2] = ACTIONS(1677), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1677), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1677), - [aux_sym_preproc_else_token1] = ACTIONS(1677), - [aux_sym_preproc_elif_token1] = ACTIONS(1677), - [anon_sym_LPAREN2] = ACTIONS(1679), - [anon_sym_BANG] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1677), - [anon_sym_PLUS] = ACTIONS(1677), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_CARET] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_typedef] = ACTIONS(1677), - [anon_sym_extern] = ACTIONS(1677), - [anon_sym___attribute] = ACTIONS(1677), - [anon_sym___attribute__] = ACTIONS(1677), - [anon_sym___declspec] = ACTIONS(1677), - [anon_sym___cdecl] = ACTIONS(1677), - [anon_sym___clrcall] = ACTIONS(1677), - [anon_sym___stdcall] = ACTIONS(1677), - [anon_sym___fastcall] = ACTIONS(1677), - [anon_sym___thiscall] = ACTIONS(1677), - [anon_sym___vectorcall] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_static] = ACTIONS(1677), - [anon_sym_auto] = ACTIONS(1677), - [anon_sym_register] = ACTIONS(1677), - [anon_sym_inline] = ACTIONS(1677), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1677), - [anon_sym_const] = ACTIONS(1677), - [anon_sym_volatile] = ACTIONS(1677), - [anon_sym_restrict] = ACTIONS(1677), - [anon_sym__Atomic] = ACTIONS(1677), - [anon_sym_in] = ACTIONS(1677), - [anon_sym_out] = ACTIONS(1677), - [anon_sym_inout] = ACTIONS(1677), - [anon_sym_bycopy] = ACTIONS(1677), - [anon_sym_byref] = ACTIONS(1677), - [anon_sym_oneway] = ACTIONS(1677), - [anon_sym__Nullable] = ACTIONS(1677), - [anon_sym__Nonnull] = ACTIONS(1677), - [anon_sym__Nullable_result] = ACTIONS(1677), - [anon_sym__Null_unspecified] = ACTIONS(1677), - [anon_sym___autoreleasing] = ACTIONS(1677), - [anon_sym___nullable] = ACTIONS(1677), - [anon_sym___nonnull] = ACTIONS(1677), - [anon_sym___strong] = ACTIONS(1677), - [anon_sym___weak] = ACTIONS(1677), - [anon_sym___bridge] = ACTIONS(1677), - [anon_sym___bridge_transfer] = ACTIONS(1677), - [anon_sym___bridge_retained] = ACTIONS(1677), - [anon_sym___unsafe_unretained] = ACTIONS(1677), - [anon_sym___block] = ACTIONS(1677), - [anon_sym___kindof] = ACTIONS(1677), - [anon_sym___unused] = ACTIONS(1677), - [anon_sym__Complex] = ACTIONS(1677), - [anon_sym___complex] = ACTIONS(1677), - [anon_sym_IBOutlet] = ACTIONS(1677), - [anon_sym_IBInspectable] = ACTIONS(1677), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1677), - [anon_sym_signed] = ACTIONS(1677), - [anon_sym_unsigned] = ACTIONS(1677), - [anon_sym_long] = ACTIONS(1677), - [anon_sym_short] = ACTIONS(1677), - [sym_primitive_type] = ACTIONS(1677), - [anon_sym_enum] = ACTIONS(1677), - [anon_sym_NS_ENUM] = ACTIONS(1677), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1677), - [anon_sym_NS_OPTIONS] = ACTIONS(1677), - [anon_sym_struct] = ACTIONS(1677), - [anon_sym_union] = ACTIONS(1677), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(1677), - [anon_sym_switch] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1677), - [anon_sym_default] = ACTIONS(1677), - [anon_sym_while] = ACTIONS(1677), - [anon_sym_do] = ACTIONS(1677), - [anon_sym_for] = ACTIONS(1677), - [anon_sym_return] = ACTIONS(1677), - [anon_sym_break] = ACTIONS(1677), - [anon_sym_continue] = ACTIONS(1677), - [anon_sym_goto] = ACTIONS(1677), - [anon_sym_DASH_DASH] = ACTIONS(1679), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_sizeof] = ACTIONS(1677), - [sym_number_literal] = ACTIONS(1679), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1679), - [anon_sym_u_DQUOTE] = ACTIONS(1679), - [anon_sym_U_DQUOTE] = ACTIONS(1679), - [anon_sym_u8_DQUOTE] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1679), - [sym_true] = ACTIONS(1677), - [sym_false] = ACTIONS(1677), - [sym_null] = ACTIONS(1677), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1679), - [anon_sym_ATimport] = ACTIONS(1679), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1677), - [anon_sym_ATcompatibility_alias] = ACTIONS(1679), - [anon_sym_ATprotocol] = ACTIONS(1679), - [anon_sym_ATclass] = ACTIONS(1679), - [anon_sym_ATinterface] = ACTIONS(1679), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1677), - [sym_method_attribute_specifier] = ACTIONS(1677), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1677), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1677), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1677), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1677), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1677), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1677), - [anon_sym_NS_AVAILABLE] = ACTIONS(1677), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1677), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1677), - [anon_sym_API_AVAILABLE] = ACTIONS(1677), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1677), - [anon_sym_API_DEPRECATED] = ACTIONS(1677), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1677), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1677), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1677), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1677), - [anon_sym___deprecated_msg] = ACTIONS(1677), - [anon_sym___deprecated_enum_msg] = ACTIONS(1677), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1677), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1677), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1677), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1677), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1677), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1677), - [anon_sym_ATimplementation] = ACTIONS(1679), - [anon_sym_typeof] = ACTIONS(1677), - [anon_sym___typeof] = ACTIONS(1677), - [anon_sym___typeof__] = ACTIONS(1677), - [sym_self] = ACTIONS(1677), - [sym_super] = ACTIONS(1677), - [sym_nil] = ACTIONS(1677), - [sym_id] = ACTIONS(1677), - [sym_instancetype] = ACTIONS(1677), - [sym_Class] = ACTIONS(1677), - [sym_SEL] = ACTIONS(1677), - [sym_IMP] = ACTIONS(1677), - [sym_BOOL] = ACTIONS(1677), - [sym_auto] = ACTIONS(1677), - [anon_sym_ATautoreleasepool] = ACTIONS(1679), - [anon_sym_ATsynchronized] = ACTIONS(1679), - [anon_sym_ATtry] = ACTIONS(1679), - [anon_sym_ATcatch] = ACTIONS(1679), - [anon_sym_ATfinally] = ACTIONS(1679), - [anon_sym_ATthrow] = ACTIONS(1679), - [anon_sym_ATselector] = ACTIONS(1679), - [anon_sym_ATencode] = ACTIONS(1679), - [anon_sym_AT] = ACTIONS(1677), - [sym_YES] = ACTIONS(1677), - [sym_NO] = ACTIONS(1677), - [anon_sym___builtin_available] = ACTIONS(1677), - [anon_sym_ATavailable] = ACTIONS(1679), - [anon_sym_va_arg] = ACTIONS(1677), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [286] = { - [ts_builtin_sym_end] = ACTIONS(1595), - [sym_identifier] = ACTIONS(1593), - [aux_sym_preproc_include_token1] = ACTIONS(1595), - [aux_sym_preproc_def_token1] = ACTIONS(1595), - [anon_sym_RPAREN] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_CARET] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_typedef] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym___attribute] = ACTIONS(1593), - [anon_sym___attribute__] = ACTIONS(1593), - [anon_sym___declspec] = ACTIONS(1593), - [anon_sym___cdecl] = ACTIONS(1593), - [anon_sym___clrcall] = ACTIONS(1593), - [anon_sym___stdcall] = ACTIONS(1593), - [anon_sym___fastcall] = ACTIONS(1593), - [anon_sym___thiscall] = ACTIONS(1593), - [anon_sym___vectorcall] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_auto] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_inline] = ACTIONS(1593), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_volatile] = ACTIONS(1593), - [anon_sym_restrict] = ACTIONS(1593), - [anon_sym__Atomic] = ACTIONS(1593), - [anon_sym_in] = ACTIONS(1593), - [anon_sym_out] = ACTIONS(1593), - [anon_sym_inout] = ACTIONS(1593), - [anon_sym_bycopy] = ACTIONS(1593), - [anon_sym_byref] = ACTIONS(1593), - [anon_sym_oneway] = ACTIONS(1593), - [anon_sym__Nullable] = ACTIONS(1593), - [anon_sym__Nonnull] = ACTIONS(1593), - [anon_sym__Nullable_result] = ACTIONS(1593), - [anon_sym__Null_unspecified] = ACTIONS(1593), - [anon_sym___autoreleasing] = ACTIONS(1593), - [anon_sym___nullable] = ACTIONS(1593), - [anon_sym___nonnull] = ACTIONS(1593), - [anon_sym___strong] = ACTIONS(1593), - [anon_sym___weak] = ACTIONS(1593), - [anon_sym___bridge] = ACTIONS(1593), - [anon_sym___bridge_transfer] = ACTIONS(1593), - [anon_sym___bridge_retained] = ACTIONS(1593), - [anon_sym___unsafe_unretained] = ACTIONS(1593), - [anon_sym___block] = ACTIONS(1593), - [anon_sym___kindof] = ACTIONS(1593), - [anon_sym___unused] = ACTIONS(1593), - [anon_sym__Complex] = ACTIONS(1593), - [anon_sym___complex] = ACTIONS(1593), - [anon_sym_IBOutlet] = ACTIONS(1593), - [anon_sym_IBInspectable] = ACTIONS(1593), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1593), - [anon_sym_signed] = ACTIONS(1593), - [anon_sym_unsigned] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [sym_primitive_type] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_NS_ENUM] = ACTIONS(1593), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1593), - [anon_sym_NS_OPTIONS] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_else] = ACTIONS(1593), - [anon_sym_switch] = ACTIONS(1593), - [anon_sym_case] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_goto] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_PLUS_PLUS] = ACTIONS(1595), - [anon_sym_sizeof] = ACTIONS(1593), - [sym_number_literal] = ACTIONS(1595), - [anon_sym_L_SQUOTE] = ACTIONS(1595), - [anon_sym_u_SQUOTE] = ACTIONS(1595), - [anon_sym_U_SQUOTE] = ACTIONS(1595), - [anon_sym_u8_SQUOTE] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1595), - [anon_sym_L_DQUOTE] = ACTIONS(1595), - [anon_sym_u_DQUOTE] = ACTIONS(1595), - [anon_sym_U_DQUOTE] = ACTIONS(1595), - [anon_sym_u8_DQUOTE] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1595), - [anon_sym_ATimport] = ACTIONS(1595), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1593), - [anon_sym_ATcompatibility_alias] = ACTIONS(1595), - [anon_sym_ATprotocol] = ACTIONS(1595), - [anon_sym_ATclass] = ACTIONS(1595), - [anon_sym_ATinterface] = ACTIONS(1595), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1593), - [sym_method_attribute_specifier] = ACTIONS(1593), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1593), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1593), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1593), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1593), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1593), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1593), - [anon_sym_NS_AVAILABLE] = ACTIONS(1593), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1593), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1593), - [anon_sym_API_AVAILABLE] = ACTIONS(1593), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1593), - [anon_sym_API_DEPRECATED] = ACTIONS(1593), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1593), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1593), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1593), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1593), - [anon_sym___deprecated_msg] = ACTIONS(1593), - [anon_sym___deprecated_enum_msg] = ACTIONS(1593), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1593), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1593), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1593), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1593), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1593), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1593), - [anon_sym_ATimplementation] = ACTIONS(1595), - [anon_sym_typeof] = ACTIONS(1593), - [anon_sym___typeof] = ACTIONS(1593), - [anon_sym___typeof__] = ACTIONS(1593), - [sym_self] = ACTIONS(1593), - [sym_super] = ACTIONS(1593), - [sym_nil] = ACTIONS(1593), - [sym_id] = ACTIONS(1593), - [sym_instancetype] = ACTIONS(1593), - [sym_Class] = ACTIONS(1593), - [sym_SEL] = ACTIONS(1593), - [sym_IMP] = ACTIONS(1593), - [sym_BOOL] = ACTIONS(1593), - [sym_auto] = ACTIONS(1593), - [anon_sym_ATautoreleasepool] = ACTIONS(1595), - [anon_sym_ATsynchronized] = ACTIONS(1595), - [anon_sym_ATtry] = ACTIONS(1595), - [anon_sym_ATcatch] = ACTIONS(1595), - [anon_sym_ATfinally] = ACTIONS(1595), - [anon_sym_ATthrow] = ACTIONS(1595), - [anon_sym_ATselector] = ACTIONS(1595), - [anon_sym_ATencode] = ACTIONS(1595), - [anon_sym_AT] = ACTIONS(1593), - [sym_YES] = ACTIONS(1593), - [sym_NO] = ACTIONS(1593), - [anon_sym___builtin_available] = ACTIONS(1593), - [anon_sym_ATavailable] = ACTIONS(1595), - [anon_sym_va_arg] = ACTIONS(1593), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [287] = { - [ts_builtin_sym_end] = ACTIONS(1599), - [sym_identifier] = ACTIONS(1597), - [aux_sym_preproc_include_token1] = ACTIONS(1599), - [aux_sym_preproc_def_token1] = ACTIONS(1599), - [anon_sym_RPAREN] = ACTIONS(1599), - [aux_sym_preproc_if_token1] = ACTIONS(1597), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1597), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1597), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_typedef] = ACTIONS(1597), - [anon_sym_extern] = ACTIONS(1597), - [anon_sym___attribute] = ACTIONS(1597), - [anon_sym___attribute__] = ACTIONS(1597), - [anon_sym___declspec] = ACTIONS(1597), - [anon_sym___cdecl] = ACTIONS(1597), - [anon_sym___clrcall] = ACTIONS(1597), - [anon_sym___stdcall] = ACTIONS(1597), - [anon_sym___fastcall] = ACTIONS(1597), - [anon_sym___thiscall] = ACTIONS(1597), - [anon_sym___vectorcall] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_auto] = ACTIONS(1597), - [anon_sym_register] = ACTIONS(1597), - [anon_sym_inline] = ACTIONS(1597), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1597), - [anon_sym_volatile] = ACTIONS(1597), - [anon_sym_restrict] = ACTIONS(1597), - [anon_sym__Atomic] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_out] = ACTIONS(1597), - [anon_sym_inout] = ACTIONS(1597), - [anon_sym_bycopy] = ACTIONS(1597), - [anon_sym_byref] = ACTIONS(1597), - [anon_sym_oneway] = ACTIONS(1597), - [anon_sym__Nullable] = ACTIONS(1597), - [anon_sym__Nonnull] = ACTIONS(1597), - [anon_sym__Nullable_result] = ACTIONS(1597), - [anon_sym__Null_unspecified] = ACTIONS(1597), - [anon_sym___autoreleasing] = ACTIONS(1597), - [anon_sym___nullable] = ACTIONS(1597), - [anon_sym___nonnull] = ACTIONS(1597), - [anon_sym___strong] = ACTIONS(1597), - [anon_sym___weak] = ACTIONS(1597), - [anon_sym___bridge] = ACTIONS(1597), - [anon_sym___bridge_transfer] = ACTIONS(1597), - [anon_sym___bridge_retained] = ACTIONS(1597), - [anon_sym___unsafe_unretained] = ACTIONS(1597), - [anon_sym___block] = ACTIONS(1597), - [anon_sym___kindof] = ACTIONS(1597), - [anon_sym___unused] = ACTIONS(1597), - [anon_sym__Complex] = ACTIONS(1597), - [anon_sym___complex] = ACTIONS(1597), - [anon_sym_IBOutlet] = ACTIONS(1597), - [anon_sym_IBInspectable] = ACTIONS(1597), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1597), - [anon_sym_signed] = ACTIONS(1597), - [anon_sym_unsigned] = ACTIONS(1597), - [anon_sym_long] = ACTIONS(1597), - [anon_sym_short] = ACTIONS(1597), - [sym_primitive_type] = ACTIONS(1597), - [anon_sym_enum] = ACTIONS(1597), - [anon_sym_NS_ENUM] = ACTIONS(1597), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1597), - [anon_sym_NS_OPTIONS] = ACTIONS(1597), - [anon_sym_struct] = ACTIONS(1597), - [anon_sym_union] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_else] = ACTIONS(1597), - [anon_sym_switch] = ACTIONS(1597), - [anon_sym_case] = ACTIONS(1597), - [anon_sym_default] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_do] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_goto] = ACTIONS(1597), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_sizeof] = ACTIONS(1597), - [sym_number_literal] = ACTIONS(1599), - [anon_sym_L_SQUOTE] = ACTIONS(1599), - [anon_sym_u_SQUOTE] = ACTIONS(1599), - [anon_sym_U_SQUOTE] = ACTIONS(1599), - [anon_sym_u8_SQUOTE] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_L_DQUOTE] = ACTIONS(1599), - [anon_sym_u_DQUOTE] = ACTIONS(1599), - [anon_sym_U_DQUOTE] = ACTIONS(1599), - [anon_sym_u8_DQUOTE] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym_true] = ACTIONS(1597), - [sym_false] = ACTIONS(1597), - [sym_null] = ACTIONS(1597), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1599), - [anon_sym_ATimport] = ACTIONS(1599), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1597), - [anon_sym_ATcompatibility_alias] = ACTIONS(1599), - [anon_sym_ATprotocol] = ACTIONS(1599), - [anon_sym_ATclass] = ACTIONS(1599), - [anon_sym_ATinterface] = ACTIONS(1599), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1597), - [sym_method_attribute_specifier] = ACTIONS(1597), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1597), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1597), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1597), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1597), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1597), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1597), - [anon_sym_NS_AVAILABLE] = ACTIONS(1597), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1597), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1597), - [anon_sym_API_AVAILABLE] = ACTIONS(1597), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1597), - [anon_sym_API_DEPRECATED] = ACTIONS(1597), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1597), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1597), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1597), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1597), - [anon_sym___deprecated_msg] = ACTIONS(1597), - [anon_sym___deprecated_enum_msg] = ACTIONS(1597), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1597), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1597), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1597), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1597), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1597), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1597), - [anon_sym_ATimplementation] = ACTIONS(1599), - [anon_sym_typeof] = ACTIONS(1597), - [anon_sym___typeof] = ACTIONS(1597), - [anon_sym___typeof__] = ACTIONS(1597), - [sym_self] = ACTIONS(1597), - [sym_super] = ACTIONS(1597), - [sym_nil] = ACTIONS(1597), - [sym_id] = ACTIONS(1597), - [sym_instancetype] = ACTIONS(1597), - [sym_Class] = ACTIONS(1597), - [sym_SEL] = ACTIONS(1597), - [sym_IMP] = ACTIONS(1597), - [sym_BOOL] = ACTIONS(1597), - [sym_auto] = ACTIONS(1597), - [anon_sym_ATautoreleasepool] = ACTIONS(1599), - [anon_sym_ATsynchronized] = ACTIONS(1599), - [anon_sym_ATtry] = ACTIONS(1599), - [anon_sym_ATcatch] = ACTIONS(1599), - [anon_sym_ATfinally] = ACTIONS(1599), - [anon_sym_ATthrow] = ACTIONS(1599), - [anon_sym_ATselector] = ACTIONS(1599), - [anon_sym_ATencode] = ACTIONS(1599), - [anon_sym_AT] = ACTIONS(1597), - [sym_YES] = ACTIONS(1597), - [sym_NO] = ACTIONS(1597), - [anon_sym___builtin_available] = ACTIONS(1597), - [anon_sym_ATavailable] = ACTIONS(1599), - [anon_sym_va_arg] = ACTIONS(1597), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [288] = { - [sym_identifier] = ACTIONS(1681), - [aux_sym_preproc_include_token1] = ACTIONS(1683), - [aux_sym_preproc_def_token1] = ACTIONS(1683), - [aux_sym_preproc_if_token1] = ACTIONS(1681), - [aux_sym_preproc_if_token2] = ACTIONS(1681), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1681), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1681), - [aux_sym_preproc_else_token1] = ACTIONS(1681), - [aux_sym_preproc_elif_token1] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1683), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_typedef] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym___attribute] = ACTIONS(1681), - [anon_sym___attribute__] = ACTIONS(1681), - [anon_sym___declspec] = ACTIONS(1681), - [anon_sym___cdecl] = ACTIONS(1681), - [anon_sym___clrcall] = ACTIONS(1681), - [anon_sym___stdcall] = ACTIONS(1681), - [anon_sym___fastcall] = ACTIONS(1681), - [anon_sym___thiscall] = ACTIONS(1681), - [anon_sym___vectorcall] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_static] = ACTIONS(1681), - [anon_sym_auto] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1681), - [anon_sym_inline] = ACTIONS(1681), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [anon_sym_volatile] = ACTIONS(1681), - [anon_sym_restrict] = ACTIONS(1681), - [anon_sym__Atomic] = ACTIONS(1681), - [anon_sym_in] = ACTIONS(1681), - [anon_sym_out] = ACTIONS(1681), - [anon_sym_inout] = ACTIONS(1681), - [anon_sym_bycopy] = ACTIONS(1681), - [anon_sym_byref] = ACTIONS(1681), - [anon_sym_oneway] = ACTIONS(1681), - [anon_sym__Nullable] = ACTIONS(1681), - [anon_sym__Nonnull] = ACTIONS(1681), - [anon_sym__Nullable_result] = ACTIONS(1681), - [anon_sym__Null_unspecified] = ACTIONS(1681), - [anon_sym___autoreleasing] = ACTIONS(1681), - [anon_sym___nullable] = ACTIONS(1681), - [anon_sym___nonnull] = ACTIONS(1681), - [anon_sym___strong] = ACTIONS(1681), - [anon_sym___weak] = ACTIONS(1681), - [anon_sym___bridge] = ACTIONS(1681), - [anon_sym___bridge_transfer] = ACTIONS(1681), - [anon_sym___bridge_retained] = ACTIONS(1681), - [anon_sym___unsafe_unretained] = ACTIONS(1681), - [anon_sym___block] = ACTIONS(1681), - [anon_sym___kindof] = ACTIONS(1681), - [anon_sym___unused] = ACTIONS(1681), - [anon_sym__Complex] = ACTIONS(1681), - [anon_sym___complex] = ACTIONS(1681), - [anon_sym_IBOutlet] = ACTIONS(1681), - [anon_sym_IBInspectable] = ACTIONS(1681), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1681), - [anon_sym_signed] = ACTIONS(1681), - [anon_sym_unsigned] = ACTIONS(1681), - [anon_sym_long] = ACTIONS(1681), - [anon_sym_short] = ACTIONS(1681), - [sym_primitive_type] = ACTIONS(1681), - [anon_sym_enum] = ACTIONS(1681), - [anon_sym_NS_ENUM] = ACTIONS(1681), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1681), - [anon_sym_NS_OPTIONS] = ACTIONS(1681), - [anon_sym_struct] = ACTIONS(1681), - [anon_sym_union] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_else] = ACTIONS(1681), - [anon_sym_switch] = ACTIONS(1681), - [anon_sym_case] = ACTIONS(1681), - [anon_sym_default] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_goto] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_sizeof] = ACTIONS(1681), - [sym_number_literal] = ACTIONS(1683), - [anon_sym_L_SQUOTE] = ACTIONS(1683), - [anon_sym_u_SQUOTE] = ACTIONS(1683), - [anon_sym_U_SQUOTE] = ACTIONS(1683), - [anon_sym_u8_SQUOTE] = ACTIONS(1683), - [anon_sym_SQUOTE] = ACTIONS(1683), - [anon_sym_L_DQUOTE] = ACTIONS(1683), - [anon_sym_u_DQUOTE] = ACTIONS(1683), - [anon_sym_U_DQUOTE] = ACTIONS(1683), - [anon_sym_u8_DQUOTE] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_null] = ACTIONS(1681), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1683), - [anon_sym_ATimport] = ACTIONS(1683), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1681), - [anon_sym_ATcompatibility_alias] = ACTIONS(1683), - [anon_sym_ATprotocol] = ACTIONS(1683), - [anon_sym_ATclass] = ACTIONS(1683), - [anon_sym_ATinterface] = ACTIONS(1683), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1681), - [sym_method_attribute_specifier] = ACTIONS(1681), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1681), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1681), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1681), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1681), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1681), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1681), - [anon_sym_NS_AVAILABLE] = ACTIONS(1681), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1681), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1681), - [anon_sym_API_AVAILABLE] = ACTIONS(1681), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1681), - [anon_sym_API_DEPRECATED] = ACTIONS(1681), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1681), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1681), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1681), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1681), - [anon_sym___deprecated_msg] = ACTIONS(1681), - [anon_sym___deprecated_enum_msg] = ACTIONS(1681), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1681), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1681), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1681), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1681), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1681), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1681), - [anon_sym_ATimplementation] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(1681), - [anon_sym___typeof] = ACTIONS(1681), - [anon_sym___typeof__] = ACTIONS(1681), - [sym_self] = ACTIONS(1681), - [sym_super] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [sym_id] = ACTIONS(1681), - [sym_instancetype] = ACTIONS(1681), - [sym_Class] = ACTIONS(1681), - [sym_SEL] = ACTIONS(1681), - [sym_IMP] = ACTIONS(1681), - [sym_BOOL] = ACTIONS(1681), - [sym_auto] = ACTIONS(1681), - [anon_sym_ATautoreleasepool] = ACTIONS(1683), - [anon_sym_ATsynchronized] = ACTIONS(1683), - [anon_sym_ATtry] = ACTIONS(1683), - [anon_sym_ATcatch] = ACTIONS(1683), - [anon_sym_ATfinally] = ACTIONS(1683), - [anon_sym_ATthrow] = ACTIONS(1683), - [anon_sym_ATselector] = ACTIONS(1683), - [anon_sym_ATencode] = ACTIONS(1683), - [anon_sym_AT] = ACTIONS(1681), - [sym_YES] = ACTIONS(1681), - [sym_NO] = ACTIONS(1681), - [anon_sym___builtin_available] = ACTIONS(1681), - [anon_sym_ATavailable] = ACTIONS(1683), - [anon_sym_va_arg] = ACTIONS(1681), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [289] = { - [sym_identifier] = ACTIONS(1685), - [aux_sym_preproc_include_token1] = ACTIONS(1687), - [aux_sym_preproc_def_token1] = ACTIONS(1687), - [aux_sym_preproc_if_token1] = ACTIONS(1685), - [aux_sym_preproc_if_token2] = ACTIONS(1685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1685), - [aux_sym_preproc_else_token1] = ACTIONS(1685), - [aux_sym_preproc_elif_token1] = ACTIONS(1685), - [anon_sym_LPAREN2] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(1685), - [anon_sym_extern] = ACTIONS(1685), - [anon_sym___attribute] = ACTIONS(1685), - [anon_sym___attribute__] = ACTIONS(1685), - [anon_sym___declspec] = ACTIONS(1685), - [anon_sym___cdecl] = ACTIONS(1685), - [anon_sym___clrcall] = ACTIONS(1685), - [anon_sym___stdcall] = ACTIONS(1685), - [anon_sym___fastcall] = ACTIONS(1685), - [anon_sym___thiscall] = ACTIONS(1685), - [anon_sym___vectorcall] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1687), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_auto] = ACTIONS(1685), - [anon_sym_register] = ACTIONS(1685), - [anon_sym_inline] = ACTIONS(1685), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1685), - [anon_sym_volatile] = ACTIONS(1685), - [anon_sym_restrict] = ACTIONS(1685), - [anon_sym__Atomic] = ACTIONS(1685), - [anon_sym_in] = ACTIONS(1685), - [anon_sym_out] = ACTIONS(1685), - [anon_sym_inout] = ACTIONS(1685), - [anon_sym_bycopy] = ACTIONS(1685), - [anon_sym_byref] = ACTIONS(1685), - [anon_sym_oneway] = ACTIONS(1685), - [anon_sym__Nullable] = ACTIONS(1685), - [anon_sym__Nonnull] = ACTIONS(1685), - [anon_sym__Nullable_result] = ACTIONS(1685), - [anon_sym__Null_unspecified] = ACTIONS(1685), - [anon_sym___autoreleasing] = ACTIONS(1685), - [anon_sym___nullable] = ACTIONS(1685), - [anon_sym___nonnull] = ACTIONS(1685), - [anon_sym___strong] = ACTIONS(1685), - [anon_sym___weak] = ACTIONS(1685), - [anon_sym___bridge] = ACTIONS(1685), - [anon_sym___bridge_transfer] = ACTIONS(1685), - [anon_sym___bridge_retained] = ACTIONS(1685), - [anon_sym___unsafe_unretained] = ACTIONS(1685), - [anon_sym___block] = ACTIONS(1685), - [anon_sym___kindof] = ACTIONS(1685), - [anon_sym___unused] = ACTIONS(1685), - [anon_sym__Complex] = ACTIONS(1685), - [anon_sym___complex] = ACTIONS(1685), - [anon_sym_IBOutlet] = ACTIONS(1685), - [anon_sym_IBInspectable] = ACTIONS(1685), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1685), - [anon_sym_signed] = ACTIONS(1685), - [anon_sym_unsigned] = ACTIONS(1685), - [anon_sym_long] = ACTIONS(1685), - [anon_sym_short] = ACTIONS(1685), - [sym_primitive_type] = ACTIONS(1685), - [anon_sym_enum] = ACTIONS(1685), - [anon_sym_NS_ENUM] = ACTIONS(1685), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1685), - [anon_sym_NS_OPTIONS] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_else] = ACTIONS(1685), - [anon_sym_switch] = ACTIONS(1685), - [anon_sym_case] = ACTIONS(1685), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_while] = ACTIONS(1685), - [anon_sym_do] = ACTIONS(1685), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1685), - [anon_sym_continue] = ACTIONS(1685), - [anon_sym_goto] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_sizeof] = ACTIONS(1685), - [sym_number_literal] = ACTIONS(1687), - [anon_sym_L_SQUOTE] = ACTIONS(1687), - [anon_sym_u_SQUOTE] = ACTIONS(1687), - [anon_sym_U_SQUOTE] = ACTIONS(1687), - [anon_sym_u8_SQUOTE] = ACTIONS(1687), - [anon_sym_SQUOTE] = ACTIONS(1687), - [anon_sym_L_DQUOTE] = ACTIONS(1687), - [anon_sym_u_DQUOTE] = ACTIONS(1687), - [anon_sym_U_DQUOTE] = ACTIONS(1687), - [anon_sym_u8_DQUOTE] = ACTIONS(1687), - [anon_sym_DQUOTE] = ACTIONS(1687), - [sym_true] = ACTIONS(1685), - [sym_false] = ACTIONS(1685), - [sym_null] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1687), - [anon_sym_ATimport] = ACTIONS(1687), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1685), - [anon_sym_ATcompatibility_alias] = ACTIONS(1687), - [anon_sym_ATprotocol] = ACTIONS(1687), - [anon_sym_ATclass] = ACTIONS(1687), - [anon_sym_ATinterface] = ACTIONS(1687), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1685), - [sym_method_attribute_specifier] = ACTIONS(1685), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1685), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1685), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1685), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1685), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1685), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1685), - [anon_sym_NS_AVAILABLE] = ACTIONS(1685), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1685), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1685), - [anon_sym_API_AVAILABLE] = ACTIONS(1685), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1685), - [anon_sym_API_DEPRECATED] = ACTIONS(1685), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1685), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1685), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1685), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1685), - [anon_sym___deprecated_msg] = ACTIONS(1685), - [anon_sym___deprecated_enum_msg] = ACTIONS(1685), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1685), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1685), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1685), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1685), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1685), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1685), - [anon_sym_ATimplementation] = ACTIONS(1687), - [anon_sym_typeof] = ACTIONS(1685), - [anon_sym___typeof] = ACTIONS(1685), - [anon_sym___typeof__] = ACTIONS(1685), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_nil] = ACTIONS(1685), - [sym_id] = ACTIONS(1685), - [sym_instancetype] = ACTIONS(1685), - [sym_Class] = ACTIONS(1685), - [sym_SEL] = ACTIONS(1685), - [sym_IMP] = ACTIONS(1685), - [sym_BOOL] = ACTIONS(1685), - [sym_auto] = ACTIONS(1685), - [anon_sym_ATautoreleasepool] = ACTIONS(1687), - [anon_sym_ATsynchronized] = ACTIONS(1687), - [anon_sym_ATtry] = ACTIONS(1687), - [anon_sym_ATcatch] = ACTIONS(1687), - [anon_sym_ATfinally] = ACTIONS(1687), - [anon_sym_ATthrow] = ACTIONS(1687), - [anon_sym_ATselector] = ACTIONS(1687), - [anon_sym_ATencode] = ACTIONS(1687), - [anon_sym_AT] = ACTIONS(1685), - [sym_YES] = ACTIONS(1685), - [sym_NO] = ACTIONS(1685), - [anon_sym___builtin_available] = ACTIONS(1685), - [anon_sym_ATavailable] = ACTIONS(1687), - [anon_sym_va_arg] = ACTIONS(1685), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [290] = { - [sym_identifier] = ACTIONS(1689), - [aux_sym_preproc_include_token1] = ACTIONS(1691), - [aux_sym_preproc_def_token1] = ACTIONS(1691), - [aux_sym_preproc_if_token1] = ACTIONS(1689), - [aux_sym_preproc_if_token2] = ACTIONS(1689), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1689), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1689), - [aux_sym_preproc_else_token1] = ACTIONS(1689), - [aux_sym_preproc_elif_token1] = ACTIONS(1689), - [anon_sym_LPAREN2] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1691), - [anon_sym_TILDE] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_SEMI] = ACTIONS(1691), - [anon_sym_typedef] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(1689), - [anon_sym___attribute] = ACTIONS(1689), - [anon_sym___attribute__] = ACTIONS(1689), - [anon_sym___declspec] = ACTIONS(1689), - [anon_sym___cdecl] = ACTIONS(1689), - [anon_sym___clrcall] = ACTIONS(1689), - [anon_sym___stdcall] = ACTIONS(1689), - [anon_sym___fastcall] = ACTIONS(1689), - [anon_sym___thiscall] = ACTIONS(1689), - [anon_sym___vectorcall] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1691), - [anon_sym_LBRACK] = ACTIONS(1691), - [anon_sym_static] = ACTIONS(1689), - [anon_sym_auto] = ACTIONS(1689), - [anon_sym_register] = ACTIONS(1689), - [anon_sym_inline] = ACTIONS(1689), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1689), - [anon_sym_const] = ACTIONS(1689), - [anon_sym_volatile] = ACTIONS(1689), - [anon_sym_restrict] = ACTIONS(1689), - [anon_sym__Atomic] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(1689), - [anon_sym_out] = ACTIONS(1689), - [anon_sym_inout] = ACTIONS(1689), - [anon_sym_bycopy] = ACTIONS(1689), - [anon_sym_byref] = ACTIONS(1689), - [anon_sym_oneway] = ACTIONS(1689), - [anon_sym__Nullable] = ACTIONS(1689), - [anon_sym__Nonnull] = ACTIONS(1689), - [anon_sym__Nullable_result] = ACTIONS(1689), - [anon_sym__Null_unspecified] = ACTIONS(1689), - [anon_sym___autoreleasing] = ACTIONS(1689), - [anon_sym___nullable] = ACTIONS(1689), - [anon_sym___nonnull] = ACTIONS(1689), - [anon_sym___strong] = ACTIONS(1689), - [anon_sym___weak] = ACTIONS(1689), - [anon_sym___bridge] = ACTIONS(1689), - [anon_sym___bridge_transfer] = ACTIONS(1689), - [anon_sym___bridge_retained] = ACTIONS(1689), - [anon_sym___unsafe_unretained] = ACTIONS(1689), - [anon_sym___block] = ACTIONS(1689), - [anon_sym___kindof] = ACTIONS(1689), - [anon_sym___unused] = ACTIONS(1689), - [anon_sym__Complex] = ACTIONS(1689), - [anon_sym___complex] = ACTIONS(1689), - [anon_sym_IBOutlet] = ACTIONS(1689), - [anon_sym_IBInspectable] = ACTIONS(1689), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1689), - [anon_sym_signed] = ACTIONS(1689), - [anon_sym_unsigned] = ACTIONS(1689), - [anon_sym_long] = ACTIONS(1689), - [anon_sym_short] = ACTIONS(1689), - [sym_primitive_type] = ACTIONS(1689), - [anon_sym_enum] = ACTIONS(1689), - [anon_sym_NS_ENUM] = ACTIONS(1689), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1689), - [anon_sym_NS_OPTIONS] = ACTIONS(1689), - [anon_sym_struct] = ACTIONS(1689), - [anon_sym_union] = ACTIONS(1689), - [anon_sym_if] = ACTIONS(1689), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_switch] = ACTIONS(1689), - [anon_sym_case] = ACTIONS(1689), - [anon_sym_default] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1689), - [anon_sym_do] = ACTIONS(1689), - [anon_sym_for] = ACTIONS(1689), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1689), - [anon_sym_continue] = ACTIONS(1689), - [anon_sym_goto] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1691), - [anon_sym_PLUS_PLUS] = ACTIONS(1691), - [anon_sym_sizeof] = ACTIONS(1689), - [sym_number_literal] = ACTIONS(1691), - [anon_sym_L_SQUOTE] = ACTIONS(1691), - [anon_sym_u_SQUOTE] = ACTIONS(1691), - [anon_sym_U_SQUOTE] = ACTIONS(1691), - [anon_sym_u8_SQUOTE] = ACTIONS(1691), - [anon_sym_SQUOTE] = ACTIONS(1691), - [anon_sym_L_DQUOTE] = ACTIONS(1691), - [anon_sym_u_DQUOTE] = ACTIONS(1691), - [anon_sym_U_DQUOTE] = ACTIONS(1691), - [anon_sym_u8_DQUOTE] = ACTIONS(1691), - [anon_sym_DQUOTE] = ACTIONS(1691), - [sym_true] = ACTIONS(1689), - [sym_false] = ACTIONS(1689), - [sym_null] = ACTIONS(1689), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1691), - [anon_sym_ATimport] = ACTIONS(1691), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1689), - [anon_sym_ATcompatibility_alias] = ACTIONS(1691), - [anon_sym_ATprotocol] = ACTIONS(1691), - [anon_sym_ATclass] = ACTIONS(1691), - [anon_sym_ATinterface] = ACTIONS(1691), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1689), - [sym_method_attribute_specifier] = ACTIONS(1689), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1689), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1689), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1689), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1689), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1689), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1689), - [anon_sym_NS_AVAILABLE] = ACTIONS(1689), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1689), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1689), - [anon_sym_API_AVAILABLE] = ACTIONS(1689), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1689), - [anon_sym_API_DEPRECATED] = ACTIONS(1689), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1689), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1689), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1689), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1689), - [anon_sym___deprecated_msg] = ACTIONS(1689), - [anon_sym___deprecated_enum_msg] = ACTIONS(1689), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1689), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1689), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1689), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1689), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1689), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1689), - [anon_sym_ATimplementation] = ACTIONS(1691), - [anon_sym_typeof] = ACTIONS(1689), - [anon_sym___typeof] = ACTIONS(1689), - [anon_sym___typeof__] = ACTIONS(1689), - [sym_self] = ACTIONS(1689), - [sym_super] = ACTIONS(1689), - [sym_nil] = ACTIONS(1689), - [sym_id] = ACTIONS(1689), - [sym_instancetype] = ACTIONS(1689), - [sym_Class] = ACTIONS(1689), - [sym_SEL] = ACTIONS(1689), - [sym_IMP] = ACTIONS(1689), - [sym_BOOL] = ACTIONS(1689), - [sym_auto] = ACTIONS(1689), - [anon_sym_ATautoreleasepool] = ACTIONS(1691), - [anon_sym_ATsynchronized] = ACTIONS(1691), - [anon_sym_ATtry] = ACTIONS(1691), - [anon_sym_ATcatch] = ACTIONS(1691), - [anon_sym_ATfinally] = ACTIONS(1691), - [anon_sym_ATthrow] = ACTIONS(1691), - [anon_sym_ATselector] = ACTIONS(1691), - [anon_sym_ATencode] = ACTIONS(1691), - [anon_sym_AT] = ACTIONS(1689), - [sym_YES] = ACTIONS(1689), - [sym_NO] = ACTIONS(1689), - [anon_sym___builtin_available] = ACTIONS(1689), - [anon_sym_ATavailable] = ACTIONS(1691), - [anon_sym_va_arg] = ACTIONS(1689), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [291] = { - [sym_identifier] = ACTIONS(1693), - [aux_sym_preproc_include_token1] = ACTIONS(1695), - [aux_sym_preproc_def_token1] = ACTIONS(1695), - [aux_sym_preproc_if_token1] = ACTIONS(1693), - [aux_sym_preproc_if_token2] = ACTIONS(1693), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1693), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1693), - [aux_sym_preproc_else_token1] = ACTIONS(1693), - [aux_sym_preproc_elif_token1] = ACTIONS(1693), - [anon_sym_LPAREN2] = ACTIONS(1695), - [anon_sym_BANG] = ACTIONS(1695), - [anon_sym_TILDE] = ACTIONS(1695), - [anon_sym_DASH] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1693), - [anon_sym_STAR] = ACTIONS(1695), - [anon_sym_CARET] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_typedef] = ACTIONS(1693), - [anon_sym_extern] = ACTIONS(1693), - [anon_sym___attribute] = ACTIONS(1693), - [anon_sym___attribute__] = ACTIONS(1693), - [anon_sym___declspec] = ACTIONS(1693), - [anon_sym___cdecl] = ACTIONS(1693), - [anon_sym___clrcall] = ACTIONS(1693), - [anon_sym___stdcall] = ACTIONS(1693), - [anon_sym___fastcall] = ACTIONS(1693), - [anon_sym___thiscall] = ACTIONS(1693), - [anon_sym___vectorcall] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1695), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_static] = ACTIONS(1693), - [anon_sym_auto] = ACTIONS(1693), - [anon_sym_register] = ACTIONS(1693), - [anon_sym_inline] = ACTIONS(1693), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1693), - [anon_sym_volatile] = ACTIONS(1693), - [anon_sym_restrict] = ACTIONS(1693), - [anon_sym__Atomic] = ACTIONS(1693), - [anon_sym_in] = ACTIONS(1693), - [anon_sym_out] = ACTIONS(1693), - [anon_sym_inout] = ACTIONS(1693), - [anon_sym_bycopy] = ACTIONS(1693), - [anon_sym_byref] = ACTIONS(1693), - [anon_sym_oneway] = ACTIONS(1693), - [anon_sym__Nullable] = ACTIONS(1693), - [anon_sym__Nonnull] = ACTIONS(1693), - [anon_sym__Nullable_result] = ACTIONS(1693), - [anon_sym__Null_unspecified] = ACTIONS(1693), - [anon_sym___autoreleasing] = ACTIONS(1693), - [anon_sym___nullable] = ACTIONS(1693), - [anon_sym___nonnull] = ACTIONS(1693), - [anon_sym___strong] = ACTIONS(1693), - [anon_sym___weak] = ACTIONS(1693), - [anon_sym___bridge] = ACTIONS(1693), - [anon_sym___bridge_transfer] = ACTIONS(1693), - [anon_sym___bridge_retained] = ACTIONS(1693), - [anon_sym___unsafe_unretained] = ACTIONS(1693), - [anon_sym___block] = ACTIONS(1693), - [anon_sym___kindof] = ACTIONS(1693), - [anon_sym___unused] = ACTIONS(1693), - [anon_sym__Complex] = ACTIONS(1693), - [anon_sym___complex] = ACTIONS(1693), - [anon_sym_IBOutlet] = ACTIONS(1693), - [anon_sym_IBInspectable] = ACTIONS(1693), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1693), - [anon_sym_signed] = ACTIONS(1693), - [anon_sym_unsigned] = ACTIONS(1693), - [anon_sym_long] = ACTIONS(1693), - [anon_sym_short] = ACTIONS(1693), - [sym_primitive_type] = ACTIONS(1693), - [anon_sym_enum] = ACTIONS(1693), - [anon_sym_NS_ENUM] = ACTIONS(1693), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1693), - [anon_sym_NS_OPTIONS] = ACTIONS(1693), - [anon_sym_struct] = ACTIONS(1693), - [anon_sym_union] = ACTIONS(1693), - [anon_sym_if] = ACTIONS(1693), - [anon_sym_else] = ACTIONS(1693), - [anon_sym_switch] = ACTIONS(1693), - [anon_sym_case] = ACTIONS(1693), - [anon_sym_default] = ACTIONS(1693), - [anon_sym_while] = ACTIONS(1693), - [anon_sym_do] = ACTIONS(1693), - [anon_sym_for] = ACTIONS(1693), - [anon_sym_return] = ACTIONS(1693), - [anon_sym_break] = ACTIONS(1693), - [anon_sym_continue] = ACTIONS(1693), - [anon_sym_goto] = ACTIONS(1693), - [anon_sym_DASH_DASH] = ACTIONS(1695), - [anon_sym_PLUS_PLUS] = ACTIONS(1695), - [anon_sym_sizeof] = ACTIONS(1693), - [sym_number_literal] = ACTIONS(1695), - [anon_sym_L_SQUOTE] = ACTIONS(1695), - [anon_sym_u_SQUOTE] = ACTIONS(1695), - [anon_sym_U_SQUOTE] = ACTIONS(1695), - [anon_sym_u8_SQUOTE] = ACTIONS(1695), - [anon_sym_SQUOTE] = ACTIONS(1695), - [anon_sym_L_DQUOTE] = ACTIONS(1695), - [anon_sym_u_DQUOTE] = ACTIONS(1695), - [anon_sym_U_DQUOTE] = ACTIONS(1695), - [anon_sym_u8_DQUOTE] = ACTIONS(1695), - [anon_sym_DQUOTE] = ACTIONS(1695), - [sym_true] = ACTIONS(1693), - [sym_false] = ACTIONS(1693), - [sym_null] = ACTIONS(1693), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1695), - [anon_sym_ATimport] = ACTIONS(1695), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1693), - [anon_sym_ATcompatibility_alias] = ACTIONS(1695), - [anon_sym_ATprotocol] = ACTIONS(1695), - [anon_sym_ATclass] = ACTIONS(1695), - [anon_sym_ATinterface] = ACTIONS(1695), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1693), - [sym_method_attribute_specifier] = ACTIONS(1693), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1693), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1693), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1693), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1693), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1693), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1693), - [anon_sym_NS_AVAILABLE] = ACTIONS(1693), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1693), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1693), - [anon_sym_API_AVAILABLE] = ACTIONS(1693), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1693), - [anon_sym_API_DEPRECATED] = ACTIONS(1693), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1693), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1693), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1693), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1693), - [anon_sym___deprecated_msg] = ACTIONS(1693), - [anon_sym___deprecated_enum_msg] = ACTIONS(1693), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1693), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1693), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1693), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1693), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1693), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1693), - [anon_sym_ATimplementation] = ACTIONS(1695), - [anon_sym_typeof] = ACTIONS(1693), - [anon_sym___typeof] = ACTIONS(1693), - [anon_sym___typeof__] = ACTIONS(1693), - [sym_self] = ACTIONS(1693), - [sym_super] = ACTIONS(1693), - [sym_nil] = ACTIONS(1693), - [sym_id] = ACTIONS(1693), - [sym_instancetype] = ACTIONS(1693), - [sym_Class] = ACTIONS(1693), - [sym_SEL] = ACTIONS(1693), - [sym_IMP] = ACTIONS(1693), - [sym_BOOL] = ACTIONS(1693), - [sym_auto] = ACTIONS(1693), - [anon_sym_ATautoreleasepool] = ACTIONS(1695), - [anon_sym_ATsynchronized] = ACTIONS(1695), - [anon_sym_ATtry] = ACTIONS(1695), - [anon_sym_ATcatch] = ACTIONS(1695), - [anon_sym_ATfinally] = ACTIONS(1695), - [anon_sym_ATthrow] = ACTIONS(1695), - [anon_sym_ATselector] = ACTIONS(1695), - [anon_sym_ATencode] = ACTIONS(1695), - [anon_sym_AT] = ACTIONS(1693), - [sym_YES] = ACTIONS(1693), - [sym_NO] = ACTIONS(1693), - [anon_sym___builtin_available] = ACTIONS(1693), - [anon_sym_ATavailable] = ACTIONS(1695), - [anon_sym_va_arg] = ACTIONS(1693), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [292] = { - [ts_builtin_sym_end] = ACTIONS(1587), - [sym_identifier] = ACTIONS(1585), - [aux_sym_preproc_include_token1] = ACTIONS(1587), - [aux_sym_preproc_def_token1] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [aux_sym_preproc_if_token1] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_typedef] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym___attribute] = ACTIONS(1585), - [anon_sym___attribute__] = ACTIONS(1585), - [anon_sym___declspec] = ACTIONS(1585), - [anon_sym___cdecl] = ACTIONS(1585), - [anon_sym___clrcall] = ACTIONS(1585), - [anon_sym___stdcall] = ACTIONS(1585), - [anon_sym___fastcall] = ACTIONS(1585), - [anon_sym___thiscall] = ACTIONS(1585), - [anon_sym___vectorcall] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_auto] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_inline] = ACTIONS(1585), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_volatile] = ACTIONS(1585), - [anon_sym_restrict] = ACTIONS(1585), - [anon_sym__Atomic] = ACTIONS(1585), - [anon_sym_in] = ACTIONS(1585), - [anon_sym_out] = ACTIONS(1585), - [anon_sym_inout] = ACTIONS(1585), - [anon_sym_bycopy] = ACTIONS(1585), - [anon_sym_byref] = ACTIONS(1585), - [anon_sym_oneway] = ACTIONS(1585), - [anon_sym__Nullable] = ACTIONS(1585), - [anon_sym__Nonnull] = ACTIONS(1585), - [anon_sym__Nullable_result] = ACTIONS(1585), - [anon_sym__Null_unspecified] = ACTIONS(1585), - [anon_sym___autoreleasing] = ACTIONS(1585), - [anon_sym___nullable] = ACTIONS(1585), - [anon_sym___nonnull] = ACTIONS(1585), - [anon_sym___strong] = ACTIONS(1585), - [anon_sym___weak] = ACTIONS(1585), - [anon_sym___bridge] = ACTIONS(1585), - [anon_sym___bridge_transfer] = ACTIONS(1585), - [anon_sym___bridge_retained] = ACTIONS(1585), - [anon_sym___unsafe_unretained] = ACTIONS(1585), - [anon_sym___block] = ACTIONS(1585), - [anon_sym___kindof] = ACTIONS(1585), - [anon_sym___unused] = ACTIONS(1585), - [anon_sym__Complex] = ACTIONS(1585), - [anon_sym___complex] = ACTIONS(1585), - [anon_sym_IBOutlet] = ACTIONS(1585), - [anon_sym_IBInspectable] = ACTIONS(1585), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1585), - [anon_sym_signed] = ACTIONS(1585), - [anon_sym_unsigned] = ACTIONS(1585), - [anon_sym_long] = ACTIONS(1585), - [anon_sym_short] = ACTIONS(1585), - [sym_primitive_type] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [anon_sym_NS_ENUM] = ACTIONS(1585), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1585), - [anon_sym_NS_OPTIONS] = ACTIONS(1585), - [anon_sym_struct] = ACTIONS(1585), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_else] = ACTIONS(1585), - [anon_sym_switch] = ACTIONS(1585), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_goto] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1587), - [anon_sym_u_SQUOTE] = ACTIONS(1587), - [anon_sym_U_SQUOTE] = ACTIONS(1587), - [anon_sym_u8_SQUOTE] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1587), - [anon_sym_L_DQUOTE] = ACTIONS(1587), - [anon_sym_u_DQUOTE] = ACTIONS(1587), - [anon_sym_U_DQUOTE] = ACTIONS(1587), - [anon_sym_u8_DQUOTE] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym_true] = ACTIONS(1585), - [sym_false] = ACTIONS(1585), - [sym_null] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1587), - [anon_sym_ATimport] = ACTIONS(1587), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1585), - [anon_sym_ATcompatibility_alias] = ACTIONS(1587), - [anon_sym_ATprotocol] = ACTIONS(1587), - [anon_sym_ATclass] = ACTIONS(1587), - [anon_sym_ATinterface] = ACTIONS(1587), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1585), - [sym_method_attribute_specifier] = ACTIONS(1585), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1585), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1585), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1585), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1585), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1585), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1585), - [anon_sym_NS_AVAILABLE] = ACTIONS(1585), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1585), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1585), - [anon_sym_API_AVAILABLE] = ACTIONS(1585), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1585), - [anon_sym_API_DEPRECATED] = ACTIONS(1585), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1585), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1585), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1585), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1585), - [anon_sym___deprecated_msg] = ACTIONS(1585), - [anon_sym___deprecated_enum_msg] = ACTIONS(1585), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1585), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1585), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1585), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1585), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1585), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1585), - [anon_sym_ATimplementation] = ACTIONS(1587), - [anon_sym_typeof] = ACTIONS(1585), - [anon_sym___typeof] = ACTIONS(1585), - [anon_sym___typeof__] = ACTIONS(1585), - [sym_self] = ACTIONS(1585), - [sym_super] = ACTIONS(1585), - [sym_nil] = ACTIONS(1585), - [sym_id] = ACTIONS(1585), - [sym_instancetype] = ACTIONS(1585), - [sym_Class] = ACTIONS(1585), - [sym_SEL] = ACTIONS(1585), - [sym_IMP] = ACTIONS(1585), - [sym_BOOL] = ACTIONS(1585), - [sym_auto] = ACTIONS(1585), - [anon_sym_ATautoreleasepool] = ACTIONS(1587), - [anon_sym_ATsynchronized] = ACTIONS(1587), - [anon_sym_ATtry] = ACTIONS(1587), - [anon_sym_ATcatch] = ACTIONS(1587), - [anon_sym_ATfinally] = ACTIONS(1587), - [anon_sym_ATthrow] = ACTIONS(1587), - [anon_sym_ATselector] = ACTIONS(1587), - [anon_sym_ATencode] = ACTIONS(1587), - [anon_sym_AT] = ACTIONS(1585), - [sym_YES] = ACTIONS(1585), - [sym_NO] = ACTIONS(1585), - [anon_sym___builtin_available] = ACTIONS(1585), - [anon_sym_ATavailable] = ACTIONS(1587), - [anon_sym_va_arg] = ACTIONS(1585), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [293] = { - [sym_identifier] = ACTIONS(1697), - [aux_sym_preproc_include_token1] = ACTIONS(1699), - [aux_sym_preproc_def_token1] = ACTIONS(1699), - [aux_sym_preproc_if_token1] = ACTIONS(1697), - [aux_sym_preproc_if_token2] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [aux_sym_preproc_else_token1] = ACTIONS(1697), - [aux_sym_preproc_elif_token1] = ACTIONS(1697), - [anon_sym_LPAREN2] = ACTIONS(1699), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1699), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_typedef] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym___attribute] = ACTIONS(1697), - [anon_sym___attribute__] = ACTIONS(1697), - [anon_sym___declspec] = ACTIONS(1697), - [anon_sym___cdecl] = ACTIONS(1697), - [anon_sym___clrcall] = ACTIONS(1697), - [anon_sym___stdcall] = ACTIONS(1697), - [anon_sym___fastcall] = ACTIONS(1697), - [anon_sym___thiscall] = ACTIONS(1697), - [anon_sym___vectorcall] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_auto] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym_inline] = ACTIONS(1697), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_restrict] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [anon_sym_in] = ACTIONS(1697), - [anon_sym_out] = ACTIONS(1697), - [anon_sym_inout] = ACTIONS(1697), - [anon_sym_bycopy] = ACTIONS(1697), - [anon_sym_byref] = ACTIONS(1697), - [anon_sym_oneway] = ACTIONS(1697), - [anon_sym__Nullable] = ACTIONS(1697), - [anon_sym__Nonnull] = ACTIONS(1697), - [anon_sym__Nullable_result] = ACTIONS(1697), - [anon_sym__Null_unspecified] = ACTIONS(1697), - [anon_sym___autoreleasing] = ACTIONS(1697), - [anon_sym___nullable] = ACTIONS(1697), - [anon_sym___nonnull] = ACTIONS(1697), - [anon_sym___strong] = ACTIONS(1697), - [anon_sym___weak] = ACTIONS(1697), - [anon_sym___bridge] = ACTIONS(1697), - [anon_sym___bridge_transfer] = ACTIONS(1697), - [anon_sym___bridge_retained] = ACTIONS(1697), - [anon_sym___unsafe_unretained] = ACTIONS(1697), - [anon_sym___block] = ACTIONS(1697), - [anon_sym___kindof] = ACTIONS(1697), - [anon_sym___unused] = ACTIONS(1697), - [anon_sym__Complex] = ACTIONS(1697), - [anon_sym___complex] = ACTIONS(1697), - [anon_sym_IBOutlet] = ACTIONS(1697), - [anon_sym_IBInspectable] = ACTIONS(1697), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1697), - [anon_sym_unsigned] = ACTIONS(1697), - [anon_sym_long] = ACTIONS(1697), - [anon_sym_short] = ACTIONS(1697), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1697), - [anon_sym_NS_ENUM] = ACTIONS(1697), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1697), - [anon_sym_NS_OPTIONS] = ACTIONS(1697), - [anon_sym_struct] = ACTIONS(1697), - [anon_sym_union] = ACTIONS(1697), - [anon_sym_if] = ACTIONS(1697), - [anon_sym_else] = ACTIONS(1697), - [anon_sym_switch] = ACTIONS(1697), - [anon_sym_case] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1697), - [anon_sym_while] = ACTIONS(1697), - [anon_sym_do] = ACTIONS(1697), - [anon_sym_for] = ACTIONS(1697), - [anon_sym_return] = ACTIONS(1697), - [anon_sym_break] = ACTIONS(1697), - [anon_sym_continue] = ACTIONS(1697), - [anon_sym_goto] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_sizeof] = ACTIONS(1697), - [sym_number_literal] = ACTIONS(1699), - [anon_sym_L_SQUOTE] = ACTIONS(1699), - [anon_sym_u_SQUOTE] = ACTIONS(1699), - [anon_sym_U_SQUOTE] = ACTIONS(1699), - [anon_sym_u8_SQUOTE] = ACTIONS(1699), - [anon_sym_SQUOTE] = ACTIONS(1699), - [anon_sym_L_DQUOTE] = ACTIONS(1699), - [anon_sym_u_DQUOTE] = ACTIONS(1699), - [anon_sym_U_DQUOTE] = ACTIONS(1699), - [anon_sym_u8_DQUOTE] = ACTIONS(1699), - [anon_sym_DQUOTE] = ACTIONS(1699), - [sym_true] = ACTIONS(1697), - [sym_false] = ACTIONS(1697), - [sym_null] = ACTIONS(1697), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1699), - [anon_sym_ATimport] = ACTIONS(1699), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1697), - [anon_sym_ATcompatibility_alias] = ACTIONS(1699), - [anon_sym_ATprotocol] = ACTIONS(1699), - [anon_sym_ATclass] = ACTIONS(1699), - [anon_sym_ATinterface] = ACTIONS(1699), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1697), - [sym_method_attribute_specifier] = ACTIONS(1697), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1697), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1697), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1697), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1697), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1697), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1697), - [anon_sym_NS_AVAILABLE] = ACTIONS(1697), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1697), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1697), - [anon_sym_API_AVAILABLE] = ACTIONS(1697), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1697), - [anon_sym_API_DEPRECATED] = ACTIONS(1697), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1697), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1697), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1697), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1697), - [anon_sym___deprecated_msg] = ACTIONS(1697), - [anon_sym___deprecated_enum_msg] = ACTIONS(1697), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1697), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1697), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1697), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1697), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1697), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1697), - [anon_sym_ATimplementation] = ACTIONS(1699), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym___typeof] = ACTIONS(1697), - [anon_sym___typeof__] = ACTIONS(1697), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_nil] = ACTIONS(1697), - [sym_id] = ACTIONS(1697), - [sym_instancetype] = ACTIONS(1697), - [sym_Class] = ACTIONS(1697), - [sym_SEL] = ACTIONS(1697), - [sym_IMP] = ACTIONS(1697), - [sym_BOOL] = ACTIONS(1697), - [sym_auto] = ACTIONS(1697), - [anon_sym_ATautoreleasepool] = ACTIONS(1699), - [anon_sym_ATsynchronized] = ACTIONS(1699), - [anon_sym_ATtry] = ACTIONS(1699), - [anon_sym_ATcatch] = ACTIONS(1699), - [anon_sym_ATfinally] = ACTIONS(1699), - [anon_sym_ATthrow] = ACTIONS(1699), - [anon_sym_ATselector] = ACTIONS(1699), - [anon_sym_ATencode] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(1697), - [sym_YES] = ACTIONS(1697), - [sym_NO] = ACTIONS(1697), - [anon_sym___builtin_available] = ACTIONS(1697), - [anon_sym_ATavailable] = ACTIONS(1699), - [anon_sym_va_arg] = ACTIONS(1697), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [294] = { - [ts_builtin_sym_end] = ACTIONS(1261), - [sym_identifier] = ACTIONS(1259), - [aux_sym_preproc_include_token1] = ACTIONS(1261), - [aux_sym_preproc_def_token1] = ACTIONS(1261), - [anon_sym_RPAREN] = ACTIONS(1261), - [aux_sym_preproc_if_token1] = ACTIONS(1259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), - [anon_sym_LPAREN2] = ACTIONS(1261), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_SEMI] = ACTIONS(1261), - [anon_sym_typedef] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym___attribute] = ACTIONS(1259), - [anon_sym___attribute__] = ACTIONS(1259), - [anon_sym___declspec] = ACTIONS(1259), - [anon_sym___cdecl] = ACTIONS(1259), - [anon_sym___clrcall] = ACTIONS(1259), - [anon_sym___stdcall] = ACTIONS(1259), - [anon_sym___fastcall] = ACTIONS(1259), - [anon_sym___thiscall] = ACTIONS(1259), - [anon_sym___vectorcall] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_RBRACE] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_auto] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_inline] = ACTIONS(1259), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_volatile] = ACTIONS(1259), - [anon_sym_restrict] = ACTIONS(1259), - [anon_sym__Atomic] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_out] = ACTIONS(1259), - [anon_sym_inout] = ACTIONS(1259), - [anon_sym_bycopy] = ACTIONS(1259), - [anon_sym_byref] = ACTIONS(1259), - [anon_sym_oneway] = ACTIONS(1259), - [anon_sym__Nullable] = ACTIONS(1259), - [anon_sym__Nonnull] = ACTIONS(1259), - [anon_sym__Nullable_result] = ACTIONS(1259), - [anon_sym__Null_unspecified] = ACTIONS(1259), - [anon_sym___autoreleasing] = ACTIONS(1259), - [anon_sym___nullable] = ACTIONS(1259), - [anon_sym___nonnull] = ACTIONS(1259), - [anon_sym___strong] = ACTIONS(1259), - [anon_sym___weak] = ACTIONS(1259), - [anon_sym___bridge] = ACTIONS(1259), - [anon_sym___bridge_transfer] = ACTIONS(1259), - [anon_sym___bridge_retained] = ACTIONS(1259), - [anon_sym___unsafe_unretained] = ACTIONS(1259), - [anon_sym___block] = ACTIONS(1259), - [anon_sym___kindof] = ACTIONS(1259), - [anon_sym___unused] = ACTIONS(1259), - [anon_sym__Complex] = ACTIONS(1259), - [anon_sym___complex] = ACTIONS(1259), - [anon_sym_IBOutlet] = ACTIONS(1259), - [anon_sym_IBInspectable] = ACTIONS(1259), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1259), - [anon_sym_signed] = ACTIONS(1259), - [anon_sym_unsigned] = ACTIONS(1259), - [anon_sym_long] = ACTIONS(1259), - [anon_sym_short] = ACTIONS(1259), - [sym_primitive_type] = ACTIONS(1259), - [anon_sym_enum] = ACTIONS(1259), - [anon_sym_NS_ENUM] = ACTIONS(1259), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1259), - [anon_sym_NS_OPTIONS] = ACTIONS(1259), - [anon_sym_struct] = ACTIONS(1259), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_else] = ACTIONS(1259), - [anon_sym_switch] = ACTIONS(1259), - [anon_sym_case] = ACTIONS(1259), - [anon_sym_default] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_goto] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_sizeof] = ACTIONS(1259), - [sym_number_literal] = ACTIONS(1261), - [anon_sym_L_SQUOTE] = ACTIONS(1261), - [anon_sym_u_SQUOTE] = ACTIONS(1261), - [anon_sym_U_SQUOTE] = ACTIONS(1261), - [anon_sym_u8_SQUOTE] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1261), - [anon_sym_L_DQUOTE] = ACTIONS(1261), - [anon_sym_u_DQUOTE] = ACTIONS(1261), - [anon_sym_U_DQUOTE] = ACTIONS(1261), - [anon_sym_u8_DQUOTE] = ACTIONS(1261), - [anon_sym_DQUOTE] = ACTIONS(1261), - [sym_true] = ACTIONS(1259), - [sym_false] = ACTIONS(1259), - [sym_null] = ACTIONS(1259), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1261), - [anon_sym_ATimport] = ACTIONS(1261), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1259), - [anon_sym_ATcompatibility_alias] = ACTIONS(1261), - [anon_sym_ATprotocol] = ACTIONS(1261), - [anon_sym_ATclass] = ACTIONS(1261), - [anon_sym_ATinterface] = ACTIONS(1261), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1259), - [sym_method_attribute_specifier] = ACTIONS(1259), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1259), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1259), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1259), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1259), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1259), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1259), - [anon_sym_NS_AVAILABLE] = ACTIONS(1259), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1259), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1259), - [anon_sym_API_AVAILABLE] = ACTIONS(1259), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1259), - [anon_sym_API_DEPRECATED] = ACTIONS(1259), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1259), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1259), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1259), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1259), - [anon_sym___deprecated_msg] = ACTIONS(1259), - [anon_sym___deprecated_enum_msg] = ACTIONS(1259), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1259), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1259), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1259), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1259), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1259), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1259), - [anon_sym_ATimplementation] = ACTIONS(1261), - [anon_sym_typeof] = ACTIONS(1259), - [anon_sym___typeof] = ACTIONS(1259), - [anon_sym___typeof__] = ACTIONS(1259), - [sym_self] = ACTIONS(1259), - [sym_super] = ACTIONS(1259), - [sym_nil] = ACTIONS(1259), - [sym_id] = ACTIONS(1259), - [sym_instancetype] = ACTIONS(1259), - [sym_Class] = ACTIONS(1259), - [sym_SEL] = ACTIONS(1259), - [sym_IMP] = ACTIONS(1259), - [sym_BOOL] = ACTIONS(1259), - [sym_auto] = ACTIONS(1259), - [anon_sym_ATautoreleasepool] = ACTIONS(1261), - [anon_sym_ATsynchronized] = ACTIONS(1261), - [anon_sym_ATtry] = ACTIONS(1261), - [anon_sym_ATcatch] = ACTIONS(1261), - [anon_sym_ATfinally] = ACTIONS(1261), - [anon_sym_ATthrow] = ACTIONS(1261), - [anon_sym_ATselector] = ACTIONS(1261), - [anon_sym_ATencode] = ACTIONS(1261), - [anon_sym_AT] = ACTIONS(1259), - [sym_YES] = ACTIONS(1259), - [sym_NO] = ACTIONS(1259), - [anon_sym___builtin_available] = ACTIONS(1259), - [anon_sym_ATavailable] = ACTIONS(1261), - [anon_sym_va_arg] = ACTIONS(1259), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [295] = { - [sym_identifier] = ACTIONS(1701), - [aux_sym_preproc_include_token1] = ACTIONS(1703), - [aux_sym_preproc_def_token1] = ACTIONS(1703), - [aux_sym_preproc_if_token1] = ACTIONS(1701), - [aux_sym_preproc_if_token2] = ACTIONS(1701), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1701), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1701), - [aux_sym_preproc_else_token1] = ACTIONS(1701), - [aux_sym_preproc_elif_token1] = ACTIONS(1701), - [anon_sym_LPAREN2] = ACTIONS(1703), - [anon_sym_BANG] = ACTIONS(1703), - [anon_sym_TILDE] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_PLUS] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_CARET] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_typedef] = ACTIONS(1701), - [anon_sym_extern] = ACTIONS(1701), - [anon_sym___attribute] = ACTIONS(1701), - [anon_sym___attribute__] = ACTIONS(1701), - [anon_sym___declspec] = ACTIONS(1701), - [anon_sym___cdecl] = ACTIONS(1701), - [anon_sym___clrcall] = ACTIONS(1701), - [anon_sym___stdcall] = ACTIONS(1701), - [anon_sym___fastcall] = ACTIONS(1701), - [anon_sym___thiscall] = ACTIONS(1701), - [anon_sym___vectorcall] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1701), - [anon_sym_auto] = ACTIONS(1701), - [anon_sym_register] = ACTIONS(1701), - [anon_sym_inline] = ACTIONS(1701), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1701), - [anon_sym_const] = ACTIONS(1701), - [anon_sym_volatile] = ACTIONS(1701), - [anon_sym_restrict] = ACTIONS(1701), - [anon_sym__Atomic] = ACTIONS(1701), - [anon_sym_in] = ACTIONS(1701), - [anon_sym_out] = ACTIONS(1701), - [anon_sym_inout] = ACTIONS(1701), - [anon_sym_bycopy] = ACTIONS(1701), - [anon_sym_byref] = ACTIONS(1701), - [anon_sym_oneway] = ACTIONS(1701), - [anon_sym__Nullable] = ACTIONS(1701), - [anon_sym__Nonnull] = ACTIONS(1701), - [anon_sym__Nullable_result] = ACTIONS(1701), - [anon_sym__Null_unspecified] = ACTIONS(1701), - [anon_sym___autoreleasing] = ACTIONS(1701), - [anon_sym___nullable] = ACTIONS(1701), - [anon_sym___nonnull] = ACTIONS(1701), - [anon_sym___strong] = ACTIONS(1701), - [anon_sym___weak] = ACTIONS(1701), - [anon_sym___bridge] = ACTIONS(1701), - [anon_sym___bridge_transfer] = ACTIONS(1701), - [anon_sym___bridge_retained] = ACTIONS(1701), - [anon_sym___unsafe_unretained] = ACTIONS(1701), - [anon_sym___block] = ACTIONS(1701), - [anon_sym___kindof] = ACTIONS(1701), - [anon_sym___unused] = ACTIONS(1701), - [anon_sym__Complex] = ACTIONS(1701), - [anon_sym___complex] = ACTIONS(1701), - [anon_sym_IBOutlet] = ACTIONS(1701), - [anon_sym_IBInspectable] = ACTIONS(1701), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1701), - [anon_sym_signed] = ACTIONS(1701), - [anon_sym_unsigned] = ACTIONS(1701), - [anon_sym_long] = ACTIONS(1701), - [anon_sym_short] = ACTIONS(1701), - [sym_primitive_type] = ACTIONS(1701), - [anon_sym_enum] = ACTIONS(1701), - [anon_sym_NS_ENUM] = ACTIONS(1701), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1701), - [anon_sym_NS_OPTIONS] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1701), - [anon_sym_union] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_else] = ACTIONS(1701), - [anon_sym_switch] = ACTIONS(1701), - [anon_sym_case] = ACTIONS(1701), - [anon_sym_default] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_do] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_break] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_goto] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1703), - [anon_sym_PLUS_PLUS] = ACTIONS(1703), - [anon_sym_sizeof] = ACTIONS(1701), - [sym_number_literal] = ACTIONS(1703), - [anon_sym_L_SQUOTE] = ACTIONS(1703), - [anon_sym_u_SQUOTE] = ACTIONS(1703), - [anon_sym_U_SQUOTE] = ACTIONS(1703), - [anon_sym_u8_SQUOTE] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1703), - [anon_sym_L_DQUOTE] = ACTIONS(1703), - [anon_sym_u_DQUOTE] = ACTIONS(1703), - [anon_sym_U_DQUOTE] = ACTIONS(1703), - [anon_sym_u8_DQUOTE] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [sym_true] = ACTIONS(1701), - [sym_false] = ACTIONS(1701), - [sym_null] = ACTIONS(1701), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1703), - [anon_sym_ATimport] = ACTIONS(1703), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1701), - [anon_sym_ATcompatibility_alias] = ACTIONS(1703), - [anon_sym_ATprotocol] = ACTIONS(1703), - [anon_sym_ATclass] = ACTIONS(1703), - [anon_sym_ATinterface] = ACTIONS(1703), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1701), - [sym_method_attribute_specifier] = ACTIONS(1701), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1701), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1701), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1701), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1701), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1701), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1701), - [anon_sym_NS_AVAILABLE] = ACTIONS(1701), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1701), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1701), - [anon_sym_API_AVAILABLE] = ACTIONS(1701), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1701), - [anon_sym_API_DEPRECATED] = ACTIONS(1701), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1701), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1701), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1701), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1701), - [anon_sym___deprecated_msg] = ACTIONS(1701), - [anon_sym___deprecated_enum_msg] = ACTIONS(1701), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1701), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1701), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1701), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1701), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1701), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1701), - [anon_sym_ATimplementation] = ACTIONS(1703), - [anon_sym_typeof] = ACTIONS(1701), - [anon_sym___typeof] = ACTIONS(1701), - [anon_sym___typeof__] = ACTIONS(1701), - [sym_self] = ACTIONS(1701), - [sym_super] = ACTIONS(1701), - [sym_nil] = ACTIONS(1701), - [sym_id] = ACTIONS(1701), - [sym_instancetype] = ACTIONS(1701), - [sym_Class] = ACTIONS(1701), - [sym_SEL] = ACTIONS(1701), - [sym_IMP] = ACTIONS(1701), - [sym_BOOL] = ACTIONS(1701), - [sym_auto] = ACTIONS(1701), - [anon_sym_ATautoreleasepool] = ACTIONS(1703), - [anon_sym_ATsynchronized] = ACTIONS(1703), - [anon_sym_ATtry] = ACTIONS(1703), - [anon_sym_ATcatch] = ACTIONS(1703), - [anon_sym_ATfinally] = ACTIONS(1703), - [anon_sym_ATthrow] = ACTIONS(1703), - [anon_sym_ATselector] = ACTIONS(1703), - [anon_sym_ATencode] = ACTIONS(1703), - [anon_sym_AT] = ACTIONS(1701), - [sym_YES] = ACTIONS(1701), - [sym_NO] = ACTIONS(1701), - [anon_sym___builtin_available] = ACTIONS(1701), - [anon_sym_ATavailable] = ACTIONS(1703), - [anon_sym_va_arg] = ACTIONS(1701), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [296] = { - [sym_identifier] = ACTIONS(1627), - [aux_sym_preproc_include_token1] = ACTIONS(1625), - [aux_sym_preproc_def_token1] = ACTIONS(1625), - [aux_sym_preproc_if_token1] = ACTIONS(1627), - [aux_sym_preproc_if_token2] = ACTIONS(1627), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1627), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1627), - [aux_sym_preproc_else_token1] = ACTIONS(1627), - [aux_sym_preproc_elif_token1] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(1625), - [anon_sym_BANG] = ACTIONS(1625), - [anon_sym_TILDE] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_CARET] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1625), - [anon_sym_SEMI] = ACTIONS(1625), - [anon_sym_typedef] = ACTIONS(1627), - [anon_sym_extern] = ACTIONS(1627), - [anon_sym___attribute] = ACTIONS(1627), - [anon_sym___attribute__] = ACTIONS(1627), - [anon_sym___declspec] = ACTIONS(1627), - [anon_sym___cdecl] = ACTIONS(1627), - [anon_sym___clrcall] = ACTIONS(1627), - [anon_sym___stdcall] = ACTIONS(1627), - [anon_sym___fastcall] = ACTIONS(1627), - [anon_sym___thiscall] = ACTIONS(1627), - [anon_sym___vectorcall] = ACTIONS(1627), - [anon_sym_LBRACE] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(1625), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_auto] = ACTIONS(1627), - [anon_sym_register] = ACTIONS(1627), - [anon_sym_inline] = ACTIONS(1627), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1627), - [anon_sym_const] = ACTIONS(1627), - [anon_sym_volatile] = ACTIONS(1627), - [anon_sym_restrict] = ACTIONS(1627), - [anon_sym__Atomic] = ACTIONS(1627), - [anon_sym_in] = ACTIONS(1627), - [anon_sym_out] = ACTIONS(1627), - [anon_sym_inout] = ACTIONS(1627), - [anon_sym_bycopy] = ACTIONS(1627), - [anon_sym_byref] = ACTIONS(1627), - [anon_sym_oneway] = ACTIONS(1627), - [anon_sym__Nullable] = ACTIONS(1627), - [anon_sym__Nonnull] = ACTIONS(1627), - [anon_sym__Nullable_result] = ACTIONS(1627), - [anon_sym__Null_unspecified] = ACTIONS(1627), - [anon_sym___autoreleasing] = ACTIONS(1627), - [anon_sym___nullable] = ACTIONS(1627), - [anon_sym___nonnull] = ACTIONS(1627), - [anon_sym___strong] = ACTIONS(1627), - [anon_sym___weak] = ACTIONS(1627), - [anon_sym___bridge] = ACTIONS(1627), - [anon_sym___bridge_transfer] = ACTIONS(1627), - [anon_sym___bridge_retained] = ACTIONS(1627), - [anon_sym___unsafe_unretained] = ACTIONS(1627), - [anon_sym___block] = ACTIONS(1627), - [anon_sym___kindof] = ACTIONS(1627), - [anon_sym___unused] = ACTIONS(1627), - [anon_sym__Complex] = ACTIONS(1627), - [anon_sym___complex] = ACTIONS(1627), - [anon_sym_IBOutlet] = ACTIONS(1627), - [anon_sym_IBInspectable] = ACTIONS(1627), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1627), - [anon_sym_signed] = ACTIONS(1627), - [anon_sym_unsigned] = ACTIONS(1627), - [anon_sym_long] = ACTIONS(1627), - [anon_sym_short] = ACTIONS(1627), - [sym_primitive_type] = ACTIONS(1627), - [anon_sym_enum] = ACTIONS(1627), - [anon_sym_NS_ENUM] = ACTIONS(1627), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1627), - [anon_sym_NS_OPTIONS] = ACTIONS(1627), - [anon_sym_struct] = ACTIONS(1627), - [anon_sym_union] = ACTIONS(1627), - [anon_sym_if] = ACTIONS(1627), - [anon_sym_else] = ACTIONS(1627), - [anon_sym_switch] = ACTIONS(1627), - [anon_sym_case] = ACTIONS(1627), - [anon_sym_default] = ACTIONS(1627), - [anon_sym_while] = ACTIONS(1627), - [anon_sym_do] = ACTIONS(1627), - [anon_sym_for] = ACTIONS(1627), - [anon_sym_return] = ACTIONS(1627), - [anon_sym_break] = ACTIONS(1627), - [anon_sym_continue] = ACTIONS(1627), - [anon_sym_goto] = ACTIONS(1627), - [anon_sym_DASH_DASH] = ACTIONS(1625), - [anon_sym_PLUS_PLUS] = ACTIONS(1625), - [anon_sym_sizeof] = ACTIONS(1627), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1625), - [anon_sym_u_SQUOTE] = ACTIONS(1625), - [anon_sym_U_SQUOTE] = ACTIONS(1625), - [anon_sym_u8_SQUOTE] = ACTIONS(1625), - [anon_sym_SQUOTE] = ACTIONS(1625), - [anon_sym_L_DQUOTE] = ACTIONS(1625), - [anon_sym_u_DQUOTE] = ACTIONS(1625), - [anon_sym_U_DQUOTE] = ACTIONS(1625), - [anon_sym_u8_DQUOTE] = ACTIONS(1625), - [anon_sym_DQUOTE] = ACTIONS(1625), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [sym_null] = ACTIONS(1627), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1625), - [anon_sym_ATimport] = ACTIONS(1625), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1627), - [anon_sym_ATcompatibility_alias] = ACTIONS(1625), - [anon_sym_ATprotocol] = ACTIONS(1625), - [anon_sym_ATclass] = ACTIONS(1625), - [anon_sym_ATinterface] = ACTIONS(1625), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1627), - [sym_method_attribute_specifier] = ACTIONS(1627), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1627), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1627), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1627), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1627), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1627), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1627), - [anon_sym_NS_AVAILABLE] = ACTIONS(1627), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1627), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1627), - [anon_sym_API_AVAILABLE] = ACTIONS(1627), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1627), - [anon_sym_API_DEPRECATED] = ACTIONS(1627), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1627), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1627), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1627), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1627), - [anon_sym___deprecated_msg] = ACTIONS(1627), - [anon_sym___deprecated_enum_msg] = ACTIONS(1627), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1627), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1627), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1627), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1627), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1627), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1627), - [anon_sym_ATimplementation] = ACTIONS(1625), - [anon_sym_typeof] = ACTIONS(1627), - [anon_sym___typeof] = ACTIONS(1627), - [anon_sym___typeof__] = ACTIONS(1627), - [sym_self] = ACTIONS(1627), - [sym_super] = ACTIONS(1627), - [sym_nil] = ACTIONS(1627), - [sym_id] = ACTIONS(1627), - [sym_instancetype] = ACTIONS(1627), - [sym_Class] = ACTIONS(1627), - [sym_SEL] = ACTIONS(1627), - [sym_IMP] = ACTIONS(1627), - [sym_BOOL] = ACTIONS(1627), - [sym_auto] = ACTIONS(1627), - [anon_sym_ATautoreleasepool] = ACTIONS(1625), - [anon_sym_ATsynchronized] = ACTIONS(1625), - [anon_sym_ATtry] = ACTIONS(1625), - [anon_sym_ATcatch] = ACTIONS(1625), - [anon_sym_ATfinally] = ACTIONS(1625), - [anon_sym_ATthrow] = ACTIONS(1625), - [anon_sym_ATselector] = ACTIONS(1625), - [anon_sym_ATencode] = ACTIONS(1625), - [anon_sym_AT] = ACTIONS(1627), - [sym_YES] = ACTIONS(1627), - [sym_NO] = ACTIONS(1627), - [anon_sym___builtin_available] = ACTIONS(1627), - [anon_sym_ATavailable] = ACTIONS(1625), - [anon_sym_va_arg] = ACTIONS(1627), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [297] = { - [sym_identifier] = ACTIONS(1435), - [aux_sym_preproc_include_token1] = ACTIONS(1433), - [aux_sym_preproc_def_token1] = ACTIONS(1433), - [aux_sym_preproc_if_token1] = ACTIONS(1435), - [aux_sym_preproc_if_token2] = ACTIONS(1435), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1435), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1435), - [aux_sym_preproc_else_token1] = ACTIONS(1435), - [aux_sym_preproc_elif_token1] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1433), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1433), - [anon_sym_typedef] = ACTIONS(1435), - [anon_sym_extern] = ACTIONS(1435), - [anon_sym___attribute] = ACTIONS(1435), - [anon_sym___attribute__] = ACTIONS(1435), - [anon_sym___declspec] = ACTIONS(1435), - [anon_sym___cdecl] = ACTIONS(1435), - [anon_sym___clrcall] = ACTIONS(1435), - [anon_sym___stdcall] = ACTIONS(1435), - [anon_sym___fastcall] = ACTIONS(1435), - [anon_sym___thiscall] = ACTIONS(1435), - [anon_sym___vectorcall] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1435), - [anon_sym_auto] = ACTIONS(1435), - [anon_sym_register] = ACTIONS(1435), - [anon_sym_inline] = ACTIONS(1435), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1435), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_volatile] = ACTIONS(1435), - [anon_sym_restrict] = ACTIONS(1435), - [anon_sym__Atomic] = ACTIONS(1435), - [anon_sym_in] = ACTIONS(1435), - [anon_sym_out] = ACTIONS(1435), - [anon_sym_inout] = ACTIONS(1435), - [anon_sym_bycopy] = ACTIONS(1435), - [anon_sym_byref] = ACTIONS(1435), - [anon_sym_oneway] = ACTIONS(1435), - [anon_sym__Nullable] = ACTIONS(1435), - [anon_sym__Nonnull] = ACTIONS(1435), - [anon_sym__Nullable_result] = ACTIONS(1435), - [anon_sym__Null_unspecified] = ACTIONS(1435), - [anon_sym___autoreleasing] = ACTIONS(1435), - [anon_sym___nullable] = ACTIONS(1435), - [anon_sym___nonnull] = ACTIONS(1435), - [anon_sym___strong] = ACTIONS(1435), - [anon_sym___weak] = ACTIONS(1435), - [anon_sym___bridge] = ACTIONS(1435), - [anon_sym___bridge_transfer] = ACTIONS(1435), - [anon_sym___bridge_retained] = ACTIONS(1435), - [anon_sym___unsafe_unretained] = ACTIONS(1435), - [anon_sym___block] = ACTIONS(1435), - [anon_sym___kindof] = ACTIONS(1435), - [anon_sym___unused] = ACTIONS(1435), - [anon_sym__Complex] = ACTIONS(1435), - [anon_sym___complex] = ACTIONS(1435), - [anon_sym_IBOutlet] = ACTIONS(1435), - [anon_sym_IBInspectable] = ACTIONS(1435), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1435), - [anon_sym_signed] = ACTIONS(1435), - [anon_sym_unsigned] = ACTIONS(1435), - [anon_sym_long] = ACTIONS(1435), - [anon_sym_short] = ACTIONS(1435), - [sym_primitive_type] = ACTIONS(1435), - [anon_sym_enum] = ACTIONS(1435), - [anon_sym_NS_ENUM] = ACTIONS(1435), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1435), - [anon_sym_NS_OPTIONS] = ACTIONS(1435), - [anon_sym_struct] = ACTIONS(1435), - [anon_sym_union] = ACTIONS(1435), - [anon_sym_if] = ACTIONS(1435), - [anon_sym_else] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_case] = ACTIONS(1435), - [anon_sym_default] = ACTIONS(1435), - [anon_sym_while] = ACTIONS(1435), - [anon_sym_do] = ACTIONS(1435), - [anon_sym_for] = ACTIONS(1435), - [anon_sym_return] = ACTIONS(1435), - [anon_sym_break] = ACTIONS(1435), - [anon_sym_continue] = ACTIONS(1435), - [anon_sym_goto] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [sym_number_literal] = ACTIONS(1433), - [anon_sym_L_SQUOTE] = ACTIONS(1433), - [anon_sym_u_SQUOTE] = ACTIONS(1433), - [anon_sym_U_SQUOTE] = ACTIONS(1433), - [anon_sym_u8_SQUOTE] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_L_DQUOTE] = ACTIONS(1433), - [anon_sym_u_DQUOTE] = ACTIONS(1433), - [anon_sym_U_DQUOTE] = ACTIONS(1433), - [anon_sym_u8_DQUOTE] = ACTIONS(1433), - [anon_sym_DQUOTE] = ACTIONS(1433), - [sym_true] = ACTIONS(1435), - [sym_false] = ACTIONS(1435), - [sym_null] = ACTIONS(1435), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1433), - [anon_sym_ATimport] = ACTIONS(1433), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1435), - [anon_sym_ATcompatibility_alias] = ACTIONS(1433), - [anon_sym_ATprotocol] = ACTIONS(1433), - [anon_sym_ATclass] = ACTIONS(1433), - [anon_sym_ATinterface] = ACTIONS(1433), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1435), - [sym_method_attribute_specifier] = ACTIONS(1435), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1435), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1435), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1435), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1435), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1435), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1435), - [anon_sym_NS_AVAILABLE] = ACTIONS(1435), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1435), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1435), - [anon_sym_API_AVAILABLE] = ACTIONS(1435), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1435), - [anon_sym_API_DEPRECATED] = ACTIONS(1435), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1435), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1435), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1435), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1435), - [anon_sym___deprecated_msg] = ACTIONS(1435), - [anon_sym___deprecated_enum_msg] = ACTIONS(1435), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1435), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1435), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1435), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1435), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1435), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1435), - [anon_sym_ATimplementation] = ACTIONS(1433), - [anon_sym_typeof] = ACTIONS(1435), - [anon_sym___typeof] = ACTIONS(1435), - [anon_sym___typeof__] = ACTIONS(1435), - [sym_self] = ACTIONS(1435), - [sym_super] = ACTIONS(1435), - [sym_nil] = ACTIONS(1435), - [sym_id] = ACTIONS(1435), - [sym_instancetype] = ACTIONS(1435), - [sym_Class] = ACTIONS(1435), - [sym_SEL] = ACTIONS(1435), - [sym_IMP] = ACTIONS(1435), - [sym_BOOL] = ACTIONS(1435), - [sym_auto] = ACTIONS(1435), - [anon_sym_ATautoreleasepool] = ACTIONS(1433), - [anon_sym_ATsynchronized] = ACTIONS(1433), - [anon_sym_ATtry] = ACTIONS(1433), - [anon_sym_ATcatch] = ACTIONS(1433), - [anon_sym_ATfinally] = ACTIONS(1433), - [anon_sym_ATthrow] = ACTIONS(1433), - [anon_sym_ATselector] = ACTIONS(1433), - [anon_sym_ATencode] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(1435), - [sym_YES] = ACTIONS(1435), - [sym_NO] = ACTIONS(1435), - [anon_sym___builtin_available] = ACTIONS(1435), - [anon_sym_ATavailable] = ACTIONS(1433), - [anon_sym_va_arg] = ACTIONS(1435), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [298] = { - [sym_identifier] = ACTIONS(1619), - [aux_sym_preproc_include_token1] = ACTIONS(1617), - [aux_sym_preproc_def_token1] = ACTIONS(1617), - [aux_sym_preproc_if_token1] = ACTIONS(1619), - [aux_sym_preproc_if_token2] = ACTIONS(1619), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1619), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1619), - [aux_sym_preproc_else_token1] = ACTIONS(1619), - [aux_sym_preproc_elif_token1] = ACTIONS(1619), - [anon_sym_LPAREN2] = ACTIONS(1617), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1617), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_typedef] = ACTIONS(1619), - [anon_sym_extern] = ACTIONS(1619), - [anon_sym___attribute] = ACTIONS(1619), - [anon_sym___attribute__] = ACTIONS(1619), - [anon_sym___declspec] = ACTIONS(1619), - [anon_sym___cdecl] = ACTIONS(1619), - [anon_sym___clrcall] = ACTIONS(1619), - [anon_sym___stdcall] = ACTIONS(1619), - [anon_sym___fastcall] = ACTIONS(1619), - [anon_sym___thiscall] = ACTIONS(1619), - [anon_sym___vectorcall] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1617), - [anon_sym_static] = ACTIONS(1619), - [anon_sym_auto] = ACTIONS(1619), - [anon_sym_register] = ACTIONS(1619), - [anon_sym_inline] = ACTIONS(1619), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1619), - [anon_sym_const] = ACTIONS(1619), - [anon_sym_volatile] = ACTIONS(1619), - [anon_sym_restrict] = ACTIONS(1619), - [anon_sym__Atomic] = ACTIONS(1619), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_out] = ACTIONS(1619), - [anon_sym_inout] = ACTIONS(1619), - [anon_sym_bycopy] = ACTIONS(1619), - [anon_sym_byref] = ACTIONS(1619), - [anon_sym_oneway] = ACTIONS(1619), - [anon_sym__Nullable] = ACTIONS(1619), - [anon_sym__Nonnull] = ACTIONS(1619), - [anon_sym__Nullable_result] = ACTIONS(1619), - [anon_sym__Null_unspecified] = ACTIONS(1619), - [anon_sym___autoreleasing] = ACTIONS(1619), - [anon_sym___nullable] = ACTIONS(1619), - [anon_sym___nonnull] = ACTIONS(1619), - [anon_sym___strong] = ACTIONS(1619), - [anon_sym___weak] = ACTIONS(1619), - [anon_sym___bridge] = ACTIONS(1619), - [anon_sym___bridge_transfer] = ACTIONS(1619), - [anon_sym___bridge_retained] = ACTIONS(1619), - [anon_sym___unsafe_unretained] = ACTIONS(1619), - [anon_sym___block] = ACTIONS(1619), - [anon_sym___kindof] = ACTIONS(1619), - [anon_sym___unused] = ACTIONS(1619), - [anon_sym__Complex] = ACTIONS(1619), - [anon_sym___complex] = ACTIONS(1619), - [anon_sym_IBOutlet] = ACTIONS(1619), - [anon_sym_IBInspectable] = ACTIONS(1619), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1619), - [anon_sym_signed] = ACTIONS(1619), - [anon_sym_unsigned] = ACTIONS(1619), - [anon_sym_long] = ACTIONS(1619), - [anon_sym_short] = ACTIONS(1619), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_enum] = ACTIONS(1619), - [anon_sym_NS_ENUM] = ACTIONS(1619), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1619), - [anon_sym_NS_OPTIONS] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1619), - [anon_sym_union] = ACTIONS(1619), - [anon_sym_if] = ACTIONS(1619), - [anon_sym_else] = ACTIONS(1619), - [anon_sym_switch] = ACTIONS(1619), - [anon_sym_case] = ACTIONS(1619), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_while] = ACTIONS(1619), - [anon_sym_do] = ACTIONS(1619), - [anon_sym_for] = ACTIONS(1619), - [anon_sym_return] = ACTIONS(1619), - [anon_sym_break] = ACTIONS(1619), - [anon_sym_continue] = ACTIONS(1619), - [anon_sym_goto] = ACTIONS(1619), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_sizeof] = ACTIONS(1619), - [sym_number_literal] = ACTIONS(1617), - [anon_sym_L_SQUOTE] = ACTIONS(1617), - [anon_sym_u_SQUOTE] = ACTIONS(1617), - [anon_sym_U_SQUOTE] = ACTIONS(1617), - [anon_sym_u8_SQUOTE] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_L_DQUOTE] = ACTIONS(1617), - [anon_sym_u_DQUOTE] = ACTIONS(1617), - [anon_sym_U_DQUOTE] = ACTIONS(1617), - [anon_sym_u8_DQUOTE] = ACTIONS(1617), - [anon_sym_DQUOTE] = ACTIONS(1617), - [sym_true] = ACTIONS(1619), - [sym_false] = ACTIONS(1619), - [sym_null] = ACTIONS(1619), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1617), - [anon_sym_ATimport] = ACTIONS(1617), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1619), - [anon_sym_ATcompatibility_alias] = ACTIONS(1617), - [anon_sym_ATprotocol] = ACTIONS(1617), - [anon_sym_ATclass] = ACTIONS(1617), - [anon_sym_ATinterface] = ACTIONS(1617), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1619), - [sym_method_attribute_specifier] = ACTIONS(1619), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1619), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1619), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1619), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1619), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1619), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1619), - [anon_sym_NS_AVAILABLE] = ACTIONS(1619), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1619), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1619), - [anon_sym_API_AVAILABLE] = ACTIONS(1619), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1619), - [anon_sym_API_DEPRECATED] = ACTIONS(1619), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1619), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1619), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1619), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1619), - [anon_sym___deprecated_msg] = ACTIONS(1619), - [anon_sym___deprecated_enum_msg] = ACTIONS(1619), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1619), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1619), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1619), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1619), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1619), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1619), - [anon_sym_ATimplementation] = ACTIONS(1617), - [anon_sym_typeof] = ACTIONS(1619), - [anon_sym___typeof] = ACTIONS(1619), - [anon_sym___typeof__] = ACTIONS(1619), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_nil] = ACTIONS(1619), - [sym_id] = ACTIONS(1619), - [sym_instancetype] = ACTIONS(1619), - [sym_Class] = ACTIONS(1619), - [sym_SEL] = ACTIONS(1619), - [sym_IMP] = ACTIONS(1619), - [sym_BOOL] = ACTIONS(1619), - [sym_auto] = ACTIONS(1619), - [anon_sym_ATautoreleasepool] = ACTIONS(1617), - [anon_sym_ATsynchronized] = ACTIONS(1617), - [anon_sym_ATtry] = ACTIONS(1617), - [anon_sym_ATcatch] = ACTIONS(1617), - [anon_sym_ATfinally] = ACTIONS(1617), - [anon_sym_ATthrow] = ACTIONS(1617), - [anon_sym_ATselector] = ACTIONS(1617), - [anon_sym_ATencode] = ACTIONS(1617), - [anon_sym_AT] = ACTIONS(1619), - [sym_YES] = ACTIONS(1619), - [sym_NO] = ACTIONS(1619), - [anon_sym___builtin_available] = ACTIONS(1619), - [anon_sym_ATavailable] = ACTIONS(1617), - [anon_sym_va_arg] = ACTIONS(1619), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [299] = { - [sym_identifier] = ACTIONS(1615), - [aux_sym_preproc_include_token1] = ACTIONS(1613), - [aux_sym_preproc_def_token1] = ACTIONS(1613), - [aux_sym_preproc_if_token1] = ACTIONS(1615), - [aux_sym_preproc_if_token2] = ACTIONS(1615), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1615), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1615), - [aux_sym_preproc_else_token1] = ACTIONS(1615), - [aux_sym_preproc_elif_token1] = ACTIONS(1615), - [anon_sym_LPAREN2] = ACTIONS(1613), - [anon_sym_BANG] = ACTIONS(1613), - [anon_sym_TILDE] = ACTIONS(1613), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1613), - [anon_sym_CARET] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(1613), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_typedef] = ACTIONS(1615), - [anon_sym_extern] = ACTIONS(1615), - [anon_sym___attribute] = ACTIONS(1615), - [anon_sym___attribute__] = ACTIONS(1615), - [anon_sym___declspec] = ACTIONS(1615), - [anon_sym___cdecl] = ACTIONS(1615), - [anon_sym___clrcall] = ACTIONS(1615), - [anon_sym___stdcall] = ACTIONS(1615), - [anon_sym___fastcall] = ACTIONS(1615), - [anon_sym___thiscall] = ACTIONS(1615), - [anon_sym___vectorcall] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1613), - [anon_sym_LBRACK] = ACTIONS(1613), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_auto] = ACTIONS(1615), - [anon_sym_register] = ACTIONS(1615), - [anon_sym_inline] = ACTIONS(1615), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1615), - [anon_sym_const] = ACTIONS(1615), - [anon_sym_volatile] = ACTIONS(1615), - [anon_sym_restrict] = ACTIONS(1615), - [anon_sym__Atomic] = ACTIONS(1615), - [anon_sym_in] = ACTIONS(1615), - [anon_sym_out] = ACTIONS(1615), - [anon_sym_inout] = ACTIONS(1615), - [anon_sym_bycopy] = ACTIONS(1615), - [anon_sym_byref] = ACTIONS(1615), - [anon_sym_oneway] = ACTIONS(1615), - [anon_sym__Nullable] = ACTIONS(1615), - [anon_sym__Nonnull] = ACTIONS(1615), - [anon_sym__Nullable_result] = ACTIONS(1615), - [anon_sym__Null_unspecified] = ACTIONS(1615), - [anon_sym___autoreleasing] = ACTIONS(1615), - [anon_sym___nullable] = ACTIONS(1615), - [anon_sym___nonnull] = ACTIONS(1615), - [anon_sym___strong] = ACTIONS(1615), - [anon_sym___weak] = ACTIONS(1615), - [anon_sym___bridge] = ACTIONS(1615), - [anon_sym___bridge_transfer] = ACTIONS(1615), - [anon_sym___bridge_retained] = ACTIONS(1615), - [anon_sym___unsafe_unretained] = ACTIONS(1615), - [anon_sym___block] = ACTIONS(1615), - [anon_sym___kindof] = ACTIONS(1615), - [anon_sym___unused] = ACTIONS(1615), - [anon_sym__Complex] = ACTIONS(1615), - [anon_sym___complex] = ACTIONS(1615), - [anon_sym_IBOutlet] = ACTIONS(1615), - [anon_sym_IBInspectable] = ACTIONS(1615), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1615), - [anon_sym_signed] = ACTIONS(1615), - [anon_sym_unsigned] = ACTIONS(1615), - [anon_sym_long] = ACTIONS(1615), - [anon_sym_short] = ACTIONS(1615), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1615), - [anon_sym_NS_ENUM] = ACTIONS(1615), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1615), - [anon_sym_NS_OPTIONS] = ACTIONS(1615), - [anon_sym_struct] = ACTIONS(1615), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_if] = ACTIONS(1615), - [anon_sym_else] = ACTIONS(1615), - [anon_sym_switch] = ACTIONS(1615), - [anon_sym_case] = ACTIONS(1615), - [anon_sym_default] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1615), - [anon_sym_do] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1615), - [anon_sym_return] = ACTIONS(1615), - [anon_sym_break] = ACTIONS(1615), - [anon_sym_continue] = ACTIONS(1615), - [anon_sym_goto] = ACTIONS(1615), - [anon_sym_DASH_DASH] = ACTIONS(1613), - [anon_sym_PLUS_PLUS] = ACTIONS(1613), - [anon_sym_sizeof] = ACTIONS(1615), - [sym_number_literal] = ACTIONS(1613), - [anon_sym_L_SQUOTE] = ACTIONS(1613), - [anon_sym_u_SQUOTE] = ACTIONS(1613), - [anon_sym_U_SQUOTE] = ACTIONS(1613), - [anon_sym_u8_SQUOTE] = ACTIONS(1613), - [anon_sym_SQUOTE] = ACTIONS(1613), - [anon_sym_L_DQUOTE] = ACTIONS(1613), - [anon_sym_u_DQUOTE] = ACTIONS(1613), - [anon_sym_U_DQUOTE] = ACTIONS(1613), - [anon_sym_u8_DQUOTE] = ACTIONS(1613), - [anon_sym_DQUOTE] = ACTIONS(1613), - [sym_true] = ACTIONS(1615), - [sym_false] = ACTIONS(1615), - [sym_null] = ACTIONS(1615), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1613), - [anon_sym_ATimport] = ACTIONS(1613), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1615), - [anon_sym_ATcompatibility_alias] = ACTIONS(1613), - [anon_sym_ATprotocol] = ACTIONS(1613), - [anon_sym_ATclass] = ACTIONS(1613), - [anon_sym_ATinterface] = ACTIONS(1613), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1615), - [sym_method_attribute_specifier] = ACTIONS(1615), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1615), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1615), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1615), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1615), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1615), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1615), - [anon_sym_NS_AVAILABLE] = ACTIONS(1615), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1615), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1615), - [anon_sym_API_AVAILABLE] = ACTIONS(1615), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1615), - [anon_sym_API_DEPRECATED] = ACTIONS(1615), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1615), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1615), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1615), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1615), - [anon_sym___deprecated_msg] = ACTIONS(1615), - [anon_sym___deprecated_enum_msg] = ACTIONS(1615), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1615), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1615), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1615), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1615), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1615), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1615), - [anon_sym_ATimplementation] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym___typeof] = ACTIONS(1615), - [anon_sym___typeof__] = ACTIONS(1615), - [sym_self] = ACTIONS(1615), - [sym_super] = ACTIONS(1615), - [sym_nil] = ACTIONS(1615), - [sym_id] = ACTIONS(1615), - [sym_instancetype] = ACTIONS(1615), - [sym_Class] = ACTIONS(1615), - [sym_SEL] = ACTIONS(1615), - [sym_IMP] = ACTIONS(1615), - [sym_BOOL] = ACTIONS(1615), - [sym_auto] = ACTIONS(1615), - [anon_sym_ATautoreleasepool] = ACTIONS(1613), - [anon_sym_ATsynchronized] = ACTIONS(1613), - [anon_sym_ATtry] = ACTIONS(1613), - [anon_sym_ATcatch] = ACTIONS(1613), - [anon_sym_ATfinally] = ACTIONS(1613), - [anon_sym_ATthrow] = ACTIONS(1613), - [anon_sym_ATselector] = ACTIONS(1613), - [anon_sym_ATencode] = ACTIONS(1613), - [anon_sym_AT] = ACTIONS(1615), - [sym_YES] = ACTIONS(1615), - [sym_NO] = ACTIONS(1615), - [anon_sym___builtin_available] = ACTIONS(1615), - [anon_sym_ATavailable] = ACTIONS(1613), - [anon_sym_va_arg] = ACTIONS(1615), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [300] = { - [sym_identifier] = ACTIONS(1611), - [aux_sym_preproc_include_token1] = ACTIONS(1609), - [aux_sym_preproc_def_token1] = ACTIONS(1609), - [aux_sym_preproc_if_token1] = ACTIONS(1611), - [aux_sym_preproc_if_token2] = ACTIONS(1611), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1611), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1611), - [aux_sym_preproc_else_token1] = ACTIONS(1611), - [aux_sym_preproc_elif_token1] = ACTIONS(1611), - [anon_sym_LPAREN2] = ACTIONS(1609), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1611), - [anon_sym_PLUS] = ACTIONS(1611), - [anon_sym_STAR] = ACTIONS(1609), - [anon_sym_CARET] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_typedef] = ACTIONS(1611), - [anon_sym_extern] = ACTIONS(1611), - [anon_sym___attribute] = ACTIONS(1611), - [anon_sym___attribute__] = ACTIONS(1611), - [anon_sym___declspec] = ACTIONS(1611), - [anon_sym___cdecl] = ACTIONS(1611), - [anon_sym___clrcall] = ACTIONS(1611), - [anon_sym___stdcall] = ACTIONS(1611), - [anon_sym___fastcall] = ACTIONS(1611), - [anon_sym___thiscall] = ACTIONS(1611), - [anon_sym___vectorcall] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1609), - [anon_sym_static] = ACTIONS(1611), - [anon_sym_auto] = ACTIONS(1611), - [anon_sym_register] = ACTIONS(1611), - [anon_sym_inline] = ACTIONS(1611), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1611), - [anon_sym_const] = ACTIONS(1611), - [anon_sym_volatile] = ACTIONS(1611), - [anon_sym_restrict] = ACTIONS(1611), - [anon_sym__Atomic] = ACTIONS(1611), - [anon_sym_in] = ACTIONS(1611), - [anon_sym_out] = ACTIONS(1611), - [anon_sym_inout] = ACTIONS(1611), - [anon_sym_bycopy] = ACTIONS(1611), - [anon_sym_byref] = ACTIONS(1611), - [anon_sym_oneway] = ACTIONS(1611), - [anon_sym__Nullable] = ACTIONS(1611), - [anon_sym__Nonnull] = ACTIONS(1611), - [anon_sym__Nullable_result] = ACTIONS(1611), - [anon_sym__Null_unspecified] = ACTIONS(1611), - [anon_sym___autoreleasing] = ACTIONS(1611), - [anon_sym___nullable] = ACTIONS(1611), - [anon_sym___nonnull] = ACTIONS(1611), - [anon_sym___strong] = ACTIONS(1611), - [anon_sym___weak] = ACTIONS(1611), - [anon_sym___bridge] = ACTIONS(1611), - [anon_sym___bridge_transfer] = ACTIONS(1611), - [anon_sym___bridge_retained] = ACTIONS(1611), - [anon_sym___unsafe_unretained] = ACTIONS(1611), - [anon_sym___block] = ACTIONS(1611), - [anon_sym___kindof] = ACTIONS(1611), - [anon_sym___unused] = ACTIONS(1611), - [anon_sym__Complex] = ACTIONS(1611), - [anon_sym___complex] = ACTIONS(1611), - [anon_sym_IBOutlet] = ACTIONS(1611), - [anon_sym_IBInspectable] = ACTIONS(1611), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1611), - [anon_sym_signed] = ACTIONS(1611), - [anon_sym_unsigned] = ACTIONS(1611), - [anon_sym_long] = ACTIONS(1611), - [anon_sym_short] = ACTIONS(1611), - [sym_primitive_type] = ACTIONS(1611), - [anon_sym_enum] = ACTIONS(1611), - [anon_sym_NS_ENUM] = ACTIONS(1611), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1611), - [anon_sym_NS_OPTIONS] = ACTIONS(1611), - [anon_sym_struct] = ACTIONS(1611), - [anon_sym_union] = ACTIONS(1611), - [anon_sym_if] = ACTIONS(1611), - [anon_sym_else] = ACTIONS(1611), - [anon_sym_switch] = ACTIONS(1611), - [anon_sym_case] = ACTIONS(1611), - [anon_sym_default] = ACTIONS(1611), - [anon_sym_while] = ACTIONS(1611), - [anon_sym_do] = ACTIONS(1611), - [anon_sym_for] = ACTIONS(1611), - [anon_sym_return] = ACTIONS(1611), - [anon_sym_break] = ACTIONS(1611), - [anon_sym_continue] = ACTIONS(1611), - [anon_sym_goto] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_sizeof] = ACTIONS(1611), - [sym_number_literal] = ACTIONS(1609), - [anon_sym_L_SQUOTE] = ACTIONS(1609), - [anon_sym_u_SQUOTE] = ACTIONS(1609), - [anon_sym_U_SQUOTE] = ACTIONS(1609), - [anon_sym_u8_SQUOTE] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1609), - [anon_sym_L_DQUOTE] = ACTIONS(1609), - [anon_sym_u_DQUOTE] = ACTIONS(1609), - [anon_sym_U_DQUOTE] = ACTIONS(1609), - [anon_sym_u8_DQUOTE] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [sym_true] = ACTIONS(1611), - [sym_false] = ACTIONS(1611), - [sym_null] = ACTIONS(1611), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1609), - [anon_sym_ATimport] = ACTIONS(1609), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1611), - [anon_sym_ATcompatibility_alias] = ACTIONS(1609), - [anon_sym_ATprotocol] = ACTIONS(1609), - [anon_sym_ATclass] = ACTIONS(1609), - [anon_sym_ATinterface] = ACTIONS(1609), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1611), - [sym_method_attribute_specifier] = ACTIONS(1611), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1611), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1611), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1611), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1611), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1611), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1611), - [anon_sym_NS_AVAILABLE] = ACTIONS(1611), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1611), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1611), - [anon_sym_API_AVAILABLE] = ACTIONS(1611), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1611), - [anon_sym_API_DEPRECATED] = ACTIONS(1611), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1611), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1611), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1611), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1611), - [anon_sym___deprecated_msg] = ACTIONS(1611), - [anon_sym___deprecated_enum_msg] = ACTIONS(1611), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1611), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1611), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1611), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1611), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1611), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1611), - [anon_sym_ATimplementation] = ACTIONS(1609), - [anon_sym_typeof] = ACTIONS(1611), - [anon_sym___typeof] = ACTIONS(1611), - [anon_sym___typeof__] = ACTIONS(1611), - [sym_self] = ACTIONS(1611), - [sym_super] = ACTIONS(1611), - [sym_nil] = ACTIONS(1611), - [sym_id] = ACTIONS(1611), - [sym_instancetype] = ACTIONS(1611), - [sym_Class] = ACTIONS(1611), - [sym_SEL] = ACTIONS(1611), - [sym_IMP] = ACTIONS(1611), - [sym_BOOL] = ACTIONS(1611), - [sym_auto] = ACTIONS(1611), - [anon_sym_ATautoreleasepool] = ACTIONS(1609), - [anon_sym_ATsynchronized] = ACTIONS(1609), - [anon_sym_ATtry] = ACTIONS(1609), - [anon_sym_ATcatch] = ACTIONS(1609), - [anon_sym_ATfinally] = ACTIONS(1609), - [anon_sym_ATthrow] = ACTIONS(1609), - [anon_sym_ATselector] = ACTIONS(1609), - [anon_sym_ATencode] = ACTIONS(1609), - [anon_sym_AT] = ACTIONS(1611), - [sym_YES] = ACTIONS(1611), - [sym_NO] = ACTIONS(1611), - [anon_sym___builtin_available] = ACTIONS(1611), - [anon_sym_ATavailable] = ACTIONS(1609), - [anon_sym_va_arg] = ACTIONS(1611), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [301] = { - [ts_builtin_sym_end] = ACTIONS(1603), - [sym_identifier] = ACTIONS(1601), - [aux_sym_preproc_include_token1] = ACTIONS(1603), - [aux_sym_preproc_def_token1] = ACTIONS(1603), - [anon_sym_RPAREN] = ACTIONS(1603), - [aux_sym_preproc_if_token1] = ACTIONS(1601), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1601), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1601), - [anon_sym_LPAREN2] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_CARET] = ACTIONS(1603), - [anon_sym_AMP] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_typedef] = ACTIONS(1601), - [anon_sym_extern] = ACTIONS(1601), - [anon_sym___attribute] = ACTIONS(1601), - [anon_sym___attribute__] = ACTIONS(1601), - [anon_sym___declspec] = ACTIONS(1601), - [anon_sym___cdecl] = ACTIONS(1601), - [anon_sym___clrcall] = ACTIONS(1601), - [anon_sym___stdcall] = ACTIONS(1601), - [anon_sym___fastcall] = ACTIONS(1601), - [anon_sym___thiscall] = ACTIONS(1601), - [anon_sym___vectorcall] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1601), - [anon_sym_auto] = ACTIONS(1601), - [anon_sym_register] = ACTIONS(1601), - [anon_sym_inline] = ACTIONS(1601), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1601), - [anon_sym_const] = ACTIONS(1601), - [anon_sym_volatile] = ACTIONS(1601), - [anon_sym_restrict] = ACTIONS(1601), - [anon_sym__Atomic] = ACTIONS(1601), - [anon_sym_in] = ACTIONS(1601), - [anon_sym_out] = ACTIONS(1601), - [anon_sym_inout] = ACTIONS(1601), - [anon_sym_bycopy] = ACTIONS(1601), - [anon_sym_byref] = ACTIONS(1601), - [anon_sym_oneway] = ACTIONS(1601), - [anon_sym__Nullable] = ACTIONS(1601), - [anon_sym__Nonnull] = ACTIONS(1601), - [anon_sym__Nullable_result] = ACTIONS(1601), - [anon_sym__Null_unspecified] = ACTIONS(1601), - [anon_sym___autoreleasing] = ACTIONS(1601), - [anon_sym___nullable] = ACTIONS(1601), - [anon_sym___nonnull] = ACTIONS(1601), - [anon_sym___strong] = ACTIONS(1601), - [anon_sym___weak] = ACTIONS(1601), - [anon_sym___bridge] = ACTIONS(1601), - [anon_sym___bridge_transfer] = ACTIONS(1601), - [anon_sym___bridge_retained] = ACTIONS(1601), - [anon_sym___unsafe_unretained] = ACTIONS(1601), - [anon_sym___block] = ACTIONS(1601), - [anon_sym___kindof] = ACTIONS(1601), - [anon_sym___unused] = ACTIONS(1601), - [anon_sym__Complex] = ACTIONS(1601), - [anon_sym___complex] = ACTIONS(1601), - [anon_sym_IBOutlet] = ACTIONS(1601), - [anon_sym_IBInspectable] = ACTIONS(1601), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1601), - [anon_sym_signed] = ACTIONS(1601), - [anon_sym_unsigned] = ACTIONS(1601), - [anon_sym_long] = ACTIONS(1601), - [anon_sym_short] = ACTIONS(1601), - [sym_primitive_type] = ACTIONS(1601), - [anon_sym_enum] = ACTIONS(1601), - [anon_sym_NS_ENUM] = ACTIONS(1601), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1601), - [anon_sym_NS_OPTIONS] = ACTIONS(1601), - [anon_sym_struct] = ACTIONS(1601), - [anon_sym_union] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_else] = ACTIONS(1601), - [anon_sym_switch] = ACTIONS(1601), - [anon_sym_case] = ACTIONS(1601), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_do] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1603), - [anon_sym_sizeof] = ACTIONS(1601), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_L_SQUOTE] = ACTIONS(1603), - [anon_sym_u_SQUOTE] = ACTIONS(1603), - [anon_sym_U_SQUOTE] = ACTIONS(1603), - [anon_sym_u8_SQUOTE] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(1603), - [anon_sym_L_DQUOTE] = ACTIONS(1603), - [anon_sym_u_DQUOTE] = ACTIONS(1603), - [anon_sym_U_DQUOTE] = ACTIONS(1603), - [anon_sym_u8_DQUOTE] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1603), - [anon_sym_ATimport] = ACTIONS(1603), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1601), - [anon_sym_ATcompatibility_alias] = ACTIONS(1603), - [anon_sym_ATprotocol] = ACTIONS(1603), - [anon_sym_ATclass] = ACTIONS(1603), - [anon_sym_ATinterface] = ACTIONS(1603), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1601), - [sym_method_attribute_specifier] = ACTIONS(1601), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1601), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1601), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1601), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1601), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1601), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1601), - [anon_sym_NS_AVAILABLE] = ACTIONS(1601), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1601), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1601), - [anon_sym_API_AVAILABLE] = ACTIONS(1601), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1601), - [anon_sym_API_DEPRECATED] = ACTIONS(1601), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1601), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1601), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1601), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1601), - [anon_sym___deprecated_msg] = ACTIONS(1601), - [anon_sym___deprecated_enum_msg] = ACTIONS(1601), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1601), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1601), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1601), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1601), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1601), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1601), - [anon_sym_ATimplementation] = ACTIONS(1603), - [anon_sym_typeof] = ACTIONS(1601), - [anon_sym___typeof] = ACTIONS(1601), - [anon_sym___typeof__] = ACTIONS(1601), - [sym_self] = ACTIONS(1601), - [sym_super] = ACTIONS(1601), - [sym_nil] = ACTIONS(1601), - [sym_id] = ACTIONS(1601), - [sym_instancetype] = ACTIONS(1601), - [sym_Class] = ACTIONS(1601), - [sym_SEL] = ACTIONS(1601), - [sym_IMP] = ACTIONS(1601), - [sym_BOOL] = ACTIONS(1601), - [sym_auto] = ACTIONS(1601), - [anon_sym_ATautoreleasepool] = ACTIONS(1603), - [anon_sym_ATsynchronized] = ACTIONS(1603), - [anon_sym_ATtry] = ACTIONS(1603), - [anon_sym_ATcatch] = ACTIONS(1603), - [anon_sym_ATfinally] = ACTIONS(1603), - [anon_sym_ATthrow] = ACTIONS(1603), - [anon_sym_ATselector] = ACTIONS(1603), - [anon_sym_ATencode] = ACTIONS(1603), - [anon_sym_AT] = ACTIONS(1601), - [sym_YES] = ACTIONS(1601), - [sym_NO] = ACTIONS(1601), - [anon_sym___builtin_available] = ACTIONS(1601), - [anon_sym_ATavailable] = ACTIONS(1603), - [anon_sym_va_arg] = ACTIONS(1601), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [302] = { - [sym_identifier] = ACTIONS(1591), - [aux_sym_preproc_include_token1] = ACTIONS(1589), - [aux_sym_preproc_def_token1] = ACTIONS(1589), - [aux_sym_preproc_if_token1] = ACTIONS(1591), - [aux_sym_preproc_if_token2] = ACTIONS(1591), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), - [aux_sym_preproc_else_token1] = ACTIONS(1591), - [aux_sym_preproc_elif_token1] = ACTIONS(1591), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_CARET] = ACTIONS(1589), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_typedef] = ACTIONS(1591), - [anon_sym_extern] = ACTIONS(1591), - [anon_sym___attribute] = ACTIONS(1591), - [anon_sym___attribute__] = ACTIONS(1591), - [anon_sym___declspec] = ACTIONS(1591), - [anon_sym___cdecl] = ACTIONS(1591), - [anon_sym___clrcall] = ACTIONS(1591), - [anon_sym___stdcall] = ACTIONS(1591), - [anon_sym___fastcall] = ACTIONS(1591), - [anon_sym___thiscall] = ACTIONS(1591), - [anon_sym___vectorcall] = ACTIONS(1591), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1591), - [anon_sym_auto] = ACTIONS(1591), - [anon_sym_register] = ACTIONS(1591), - [anon_sym_inline] = ACTIONS(1591), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1591), - [anon_sym_const] = ACTIONS(1591), - [anon_sym_volatile] = ACTIONS(1591), - [anon_sym_restrict] = ACTIONS(1591), - [anon_sym__Atomic] = ACTIONS(1591), - [anon_sym_in] = ACTIONS(1591), - [anon_sym_out] = ACTIONS(1591), - [anon_sym_inout] = ACTIONS(1591), - [anon_sym_bycopy] = ACTIONS(1591), - [anon_sym_byref] = ACTIONS(1591), - [anon_sym_oneway] = ACTIONS(1591), - [anon_sym__Nullable] = ACTIONS(1591), - [anon_sym__Nonnull] = ACTIONS(1591), - [anon_sym__Nullable_result] = ACTIONS(1591), - [anon_sym__Null_unspecified] = ACTIONS(1591), - [anon_sym___autoreleasing] = ACTIONS(1591), - [anon_sym___nullable] = ACTIONS(1591), - [anon_sym___nonnull] = ACTIONS(1591), - [anon_sym___strong] = ACTIONS(1591), - [anon_sym___weak] = ACTIONS(1591), - [anon_sym___bridge] = ACTIONS(1591), - [anon_sym___bridge_transfer] = ACTIONS(1591), - [anon_sym___bridge_retained] = ACTIONS(1591), - [anon_sym___unsafe_unretained] = ACTIONS(1591), - [anon_sym___block] = ACTIONS(1591), - [anon_sym___kindof] = ACTIONS(1591), - [anon_sym___unused] = ACTIONS(1591), - [anon_sym__Complex] = ACTIONS(1591), - [anon_sym___complex] = ACTIONS(1591), - [anon_sym_IBOutlet] = ACTIONS(1591), - [anon_sym_IBInspectable] = ACTIONS(1591), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1591), - [anon_sym_signed] = ACTIONS(1591), - [anon_sym_unsigned] = ACTIONS(1591), - [anon_sym_long] = ACTIONS(1591), - [anon_sym_short] = ACTIONS(1591), - [sym_primitive_type] = ACTIONS(1591), - [anon_sym_enum] = ACTIONS(1591), - [anon_sym_NS_ENUM] = ACTIONS(1591), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1591), - [anon_sym_NS_OPTIONS] = ACTIONS(1591), - [anon_sym_struct] = ACTIONS(1591), - [anon_sym_union] = ACTIONS(1591), - [anon_sym_if] = ACTIONS(1591), - [anon_sym_else] = ACTIONS(1591), - [anon_sym_switch] = ACTIONS(1591), - [anon_sym_case] = ACTIONS(1591), - [anon_sym_default] = ACTIONS(1591), - [anon_sym_while] = ACTIONS(1591), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1591), - [anon_sym_return] = ACTIONS(1591), - [anon_sym_break] = ACTIONS(1591), - [anon_sym_continue] = ACTIONS(1591), - [anon_sym_goto] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_sizeof] = ACTIONS(1591), - [sym_number_literal] = ACTIONS(1589), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1589), - [anon_sym_u_DQUOTE] = ACTIONS(1589), - [anon_sym_U_DQUOTE] = ACTIONS(1589), - [anon_sym_u8_DQUOTE] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym_true] = ACTIONS(1591), - [sym_false] = ACTIONS(1591), - [sym_null] = ACTIONS(1591), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1589), - [anon_sym_ATimport] = ACTIONS(1589), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1591), - [anon_sym_ATcompatibility_alias] = ACTIONS(1589), - [anon_sym_ATprotocol] = ACTIONS(1589), - [anon_sym_ATclass] = ACTIONS(1589), - [anon_sym_ATinterface] = ACTIONS(1589), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1591), - [sym_method_attribute_specifier] = ACTIONS(1591), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1591), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1591), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1591), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1591), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1591), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1591), - [anon_sym_NS_AVAILABLE] = ACTIONS(1591), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1591), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1591), - [anon_sym_API_AVAILABLE] = ACTIONS(1591), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1591), - [anon_sym_API_DEPRECATED] = ACTIONS(1591), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1591), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1591), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1591), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1591), - [anon_sym___deprecated_msg] = ACTIONS(1591), - [anon_sym___deprecated_enum_msg] = ACTIONS(1591), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1591), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1591), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1591), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1591), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1591), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1591), - [anon_sym_ATimplementation] = ACTIONS(1589), - [anon_sym_typeof] = ACTIONS(1591), - [anon_sym___typeof] = ACTIONS(1591), - [anon_sym___typeof__] = ACTIONS(1591), - [sym_self] = ACTIONS(1591), - [sym_super] = ACTIONS(1591), - [sym_nil] = ACTIONS(1591), - [sym_id] = ACTIONS(1591), - [sym_instancetype] = ACTIONS(1591), - [sym_Class] = ACTIONS(1591), - [sym_SEL] = ACTIONS(1591), - [sym_IMP] = ACTIONS(1591), - [sym_BOOL] = ACTIONS(1591), - [sym_auto] = ACTIONS(1591), - [anon_sym_ATautoreleasepool] = ACTIONS(1589), - [anon_sym_ATsynchronized] = ACTIONS(1589), - [anon_sym_ATtry] = ACTIONS(1589), - [anon_sym_ATcatch] = ACTIONS(1589), - [anon_sym_ATfinally] = ACTIONS(1589), - [anon_sym_ATthrow] = ACTIONS(1589), - [anon_sym_ATselector] = ACTIONS(1589), - [anon_sym_ATencode] = ACTIONS(1589), - [anon_sym_AT] = ACTIONS(1591), - [sym_YES] = ACTIONS(1591), - [sym_NO] = ACTIONS(1591), - [anon_sym___builtin_available] = ACTIONS(1591), - [anon_sym_ATavailable] = ACTIONS(1589), - [anon_sym_va_arg] = ACTIONS(1591), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [303] = { - [sym_identifier] = ACTIONS(1455), - [aux_sym_preproc_include_token1] = ACTIONS(1453), - [aux_sym_preproc_def_token1] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1455), - [aux_sym_preproc_if_token2] = ACTIONS(1455), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1455), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1455), - [aux_sym_preproc_else_token1] = ACTIONS(1455), - [aux_sym_preproc_elif_token1] = ACTIONS(1455), - [anon_sym_LPAREN2] = ACTIONS(1453), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_PLUS] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_typedef] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1455), - [anon_sym___attribute] = ACTIONS(1455), - [anon_sym___attribute__] = ACTIONS(1455), - [anon_sym___declspec] = ACTIONS(1455), - [anon_sym___cdecl] = ACTIONS(1455), - [anon_sym___clrcall] = ACTIONS(1455), - [anon_sym___stdcall] = ACTIONS(1455), - [anon_sym___fastcall] = ACTIONS(1455), - [anon_sym___thiscall] = ACTIONS(1455), - [anon_sym___vectorcall] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_auto] = ACTIONS(1455), - [anon_sym_register] = ACTIONS(1455), - [anon_sym_inline] = ACTIONS(1455), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_volatile] = ACTIONS(1455), - [anon_sym_restrict] = ACTIONS(1455), - [anon_sym__Atomic] = ACTIONS(1455), - [anon_sym_in] = ACTIONS(1455), - [anon_sym_out] = ACTIONS(1455), - [anon_sym_inout] = ACTIONS(1455), - [anon_sym_bycopy] = ACTIONS(1455), - [anon_sym_byref] = ACTIONS(1455), - [anon_sym_oneway] = ACTIONS(1455), - [anon_sym__Nullable] = ACTIONS(1455), - [anon_sym__Nonnull] = ACTIONS(1455), - [anon_sym__Nullable_result] = ACTIONS(1455), - [anon_sym__Null_unspecified] = ACTIONS(1455), - [anon_sym___autoreleasing] = ACTIONS(1455), - [anon_sym___nullable] = ACTIONS(1455), - [anon_sym___nonnull] = ACTIONS(1455), - [anon_sym___strong] = ACTIONS(1455), - [anon_sym___weak] = ACTIONS(1455), - [anon_sym___bridge] = ACTIONS(1455), - [anon_sym___bridge_transfer] = ACTIONS(1455), - [anon_sym___bridge_retained] = ACTIONS(1455), - [anon_sym___unsafe_unretained] = ACTIONS(1455), - [anon_sym___block] = ACTIONS(1455), - [anon_sym___kindof] = ACTIONS(1455), - [anon_sym___unused] = ACTIONS(1455), - [anon_sym__Complex] = ACTIONS(1455), - [anon_sym___complex] = ACTIONS(1455), - [anon_sym_IBOutlet] = ACTIONS(1455), - [anon_sym_IBInspectable] = ACTIONS(1455), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1455), - [anon_sym_signed] = ACTIONS(1455), - [anon_sym_unsigned] = ACTIONS(1455), - [anon_sym_long] = ACTIONS(1455), - [anon_sym_short] = ACTIONS(1455), - [sym_primitive_type] = ACTIONS(1455), - [anon_sym_enum] = ACTIONS(1455), - [anon_sym_NS_ENUM] = ACTIONS(1455), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1455), - [anon_sym_NS_OPTIONS] = ACTIONS(1455), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_else] = ACTIONS(1455), - [anon_sym_switch] = ACTIONS(1455), - [anon_sym_case] = ACTIONS(1455), - [anon_sym_default] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_do] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_goto] = ACTIONS(1455), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_sizeof] = ACTIONS(1455), - [sym_number_literal] = ACTIONS(1453), - [anon_sym_L_SQUOTE] = ACTIONS(1453), - [anon_sym_u_SQUOTE] = ACTIONS(1453), - [anon_sym_U_SQUOTE] = ACTIONS(1453), - [anon_sym_u8_SQUOTE] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_L_DQUOTE] = ACTIONS(1453), - [anon_sym_u_DQUOTE] = ACTIONS(1453), - [anon_sym_U_DQUOTE] = ACTIONS(1453), - [anon_sym_u8_DQUOTE] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1453), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_null] = ACTIONS(1455), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1453), - [anon_sym_ATimport] = ACTIONS(1453), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1455), - [anon_sym_ATcompatibility_alias] = ACTIONS(1453), - [anon_sym_ATprotocol] = ACTIONS(1453), - [anon_sym_ATclass] = ACTIONS(1453), - [anon_sym_ATinterface] = ACTIONS(1453), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1455), - [sym_method_attribute_specifier] = ACTIONS(1455), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1455), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1455), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1455), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1455), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1455), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1455), - [anon_sym_NS_AVAILABLE] = ACTIONS(1455), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1455), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1455), - [anon_sym_API_AVAILABLE] = ACTIONS(1455), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1455), - [anon_sym_API_DEPRECATED] = ACTIONS(1455), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1455), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1455), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1455), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1455), - [anon_sym___deprecated_msg] = ACTIONS(1455), - [anon_sym___deprecated_enum_msg] = ACTIONS(1455), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1455), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1455), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1455), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1455), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1455), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1455), - [anon_sym_ATimplementation] = ACTIONS(1453), - [anon_sym_typeof] = ACTIONS(1455), - [anon_sym___typeof] = ACTIONS(1455), - [anon_sym___typeof__] = ACTIONS(1455), - [sym_self] = ACTIONS(1455), - [sym_super] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [sym_id] = ACTIONS(1455), - [sym_instancetype] = ACTIONS(1455), - [sym_Class] = ACTIONS(1455), - [sym_SEL] = ACTIONS(1455), - [sym_IMP] = ACTIONS(1455), - [sym_BOOL] = ACTIONS(1455), - [sym_auto] = ACTIONS(1455), - [anon_sym_ATautoreleasepool] = ACTIONS(1453), - [anon_sym_ATsynchronized] = ACTIONS(1453), - [anon_sym_ATtry] = ACTIONS(1453), - [anon_sym_ATcatch] = ACTIONS(1453), - [anon_sym_ATfinally] = ACTIONS(1453), - [anon_sym_ATthrow] = ACTIONS(1453), - [anon_sym_ATselector] = ACTIONS(1453), - [anon_sym_ATencode] = ACTIONS(1453), - [anon_sym_AT] = ACTIONS(1455), - [sym_YES] = ACTIONS(1455), - [sym_NO] = ACTIONS(1455), - [anon_sym___builtin_available] = ACTIONS(1455), - [anon_sym_ATavailable] = ACTIONS(1453), - [anon_sym_va_arg] = ACTIONS(1455), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [304] = { - [ts_builtin_sym_end] = ACTIONS(1607), - [sym_identifier] = ACTIONS(1605), - [aux_sym_preproc_include_token1] = ACTIONS(1607), - [aux_sym_preproc_def_token1] = ACTIONS(1607), - [anon_sym_RPAREN] = ACTIONS(1607), - [aux_sym_preproc_if_token1] = ACTIONS(1605), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1605), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1607), - [anon_sym_TILDE] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_CARET] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_typedef] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym___attribute] = ACTIONS(1605), - [anon_sym___attribute__] = ACTIONS(1605), - [anon_sym___declspec] = ACTIONS(1605), - [anon_sym___cdecl] = ACTIONS(1605), - [anon_sym___clrcall] = ACTIONS(1605), - [anon_sym___stdcall] = ACTIONS(1605), - [anon_sym___fastcall] = ACTIONS(1605), - [anon_sym___thiscall] = ACTIONS(1605), - [anon_sym___vectorcall] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1605), - [anon_sym_auto] = ACTIONS(1605), - [anon_sym_register] = ACTIONS(1605), - [anon_sym_inline] = ACTIONS(1605), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_volatile] = ACTIONS(1605), - [anon_sym_restrict] = ACTIONS(1605), - [anon_sym__Atomic] = ACTIONS(1605), - [anon_sym_in] = ACTIONS(1605), - [anon_sym_out] = ACTIONS(1605), - [anon_sym_inout] = ACTIONS(1605), - [anon_sym_bycopy] = ACTIONS(1605), - [anon_sym_byref] = ACTIONS(1605), - [anon_sym_oneway] = ACTIONS(1605), - [anon_sym__Nullable] = ACTIONS(1605), - [anon_sym__Nonnull] = ACTIONS(1605), - [anon_sym__Nullable_result] = ACTIONS(1605), - [anon_sym__Null_unspecified] = ACTIONS(1605), - [anon_sym___autoreleasing] = ACTIONS(1605), - [anon_sym___nullable] = ACTIONS(1605), - [anon_sym___nonnull] = ACTIONS(1605), - [anon_sym___strong] = ACTIONS(1605), - [anon_sym___weak] = ACTIONS(1605), - [anon_sym___bridge] = ACTIONS(1605), - [anon_sym___bridge_transfer] = ACTIONS(1605), - [anon_sym___bridge_retained] = ACTIONS(1605), - [anon_sym___unsafe_unretained] = ACTIONS(1605), - [anon_sym___block] = ACTIONS(1605), - [anon_sym___kindof] = ACTIONS(1605), - [anon_sym___unused] = ACTIONS(1605), - [anon_sym__Complex] = ACTIONS(1605), - [anon_sym___complex] = ACTIONS(1605), - [anon_sym_IBOutlet] = ACTIONS(1605), - [anon_sym_IBInspectable] = ACTIONS(1605), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1605), - [anon_sym_signed] = ACTIONS(1605), - [anon_sym_unsigned] = ACTIONS(1605), - [anon_sym_long] = ACTIONS(1605), - [anon_sym_short] = ACTIONS(1605), - [sym_primitive_type] = ACTIONS(1605), - [anon_sym_enum] = ACTIONS(1605), - [anon_sym_NS_ENUM] = ACTIONS(1605), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1605), - [anon_sym_NS_OPTIONS] = ACTIONS(1605), - [anon_sym_struct] = ACTIONS(1605), - [anon_sym_union] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_else] = ACTIONS(1605), - [anon_sym_switch] = ACTIONS(1605), - [anon_sym_case] = ACTIONS(1605), - [anon_sym_default] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_goto] = ACTIONS(1605), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1605), - [sym_number_literal] = ACTIONS(1607), - [anon_sym_L_SQUOTE] = ACTIONS(1607), - [anon_sym_u_SQUOTE] = ACTIONS(1607), - [anon_sym_U_SQUOTE] = ACTIONS(1607), - [anon_sym_u8_SQUOTE] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1607), - [anon_sym_L_DQUOTE] = ACTIONS(1607), - [anon_sym_u_DQUOTE] = ACTIONS(1607), - [anon_sym_U_DQUOTE] = ACTIONS(1607), - [anon_sym_u8_DQUOTE] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1607), - [anon_sym_ATimport] = ACTIONS(1607), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1605), - [anon_sym_ATcompatibility_alias] = ACTIONS(1607), - [anon_sym_ATprotocol] = ACTIONS(1607), - [anon_sym_ATclass] = ACTIONS(1607), - [anon_sym_ATinterface] = ACTIONS(1607), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1605), - [sym_method_attribute_specifier] = ACTIONS(1605), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1605), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1605), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1605), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1605), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1605), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1605), - [anon_sym_NS_AVAILABLE] = ACTIONS(1605), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1605), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1605), - [anon_sym_API_AVAILABLE] = ACTIONS(1605), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1605), - [anon_sym_API_DEPRECATED] = ACTIONS(1605), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1605), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1605), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1605), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1605), - [anon_sym___deprecated_msg] = ACTIONS(1605), - [anon_sym___deprecated_enum_msg] = ACTIONS(1605), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1605), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1605), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1605), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1605), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1605), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1605), - [anon_sym_ATimplementation] = ACTIONS(1607), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym___typeof] = ACTIONS(1605), - [anon_sym___typeof__] = ACTIONS(1605), - [sym_self] = ACTIONS(1605), - [sym_super] = ACTIONS(1605), - [sym_nil] = ACTIONS(1605), - [sym_id] = ACTIONS(1605), - [sym_instancetype] = ACTIONS(1605), - [sym_Class] = ACTIONS(1605), - [sym_SEL] = ACTIONS(1605), - [sym_IMP] = ACTIONS(1605), - [sym_BOOL] = ACTIONS(1605), - [sym_auto] = ACTIONS(1605), - [anon_sym_ATautoreleasepool] = ACTIONS(1607), - [anon_sym_ATsynchronized] = ACTIONS(1607), - [anon_sym_ATtry] = ACTIONS(1607), - [anon_sym_ATcatch] = ACTIONS(1607), - [anon_sym_ATfinally] = ACTIONS(1607), - [anon_sym_ATthrow] = ACTIONS(1607), - [anon_sym_ATselector] = ACTIONS(1607), - [anon_sym_ATencode] = ACTIONS(1607), - [anon_sym_AT] = ACTIONS(1605), - [sym_YES] = ACTIONS(1605), - [sym_NO] = ACTIONS(1605), - [anon_sym___builtin_available] = ACTIONS(1605), - [anon_sym_ATavailable] = ACTIONS(1607), - [anon_sym_va_arg] = ACTIONS(1605), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [305] = { - [ts_builtin_sym_end] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1701), - [aux_sym_preproc_include_token1] = ACTIONS(1703), - [aux_sym_preproc_def_token1] = ACTIONS(1703), - [anon_sym_RPAREN] = ACTIONS(1703), - [aux_sym_preproc_if_token1] = ACTIONS(1701), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1701), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1701), - [anon_sym_LPAREN2] = ACTIONS(1703), - [anon_sym_BANG] = ACTIONS(1703), - [anon_sym_TILDE] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_PLUS] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_CARET] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_typedef] = ACTIONS(1701), - [anon_sym_extern] = ACTIONS(1701), - [anon_sym___attribute] = ACTIONS(1701), - [anon_sym___attribute__] = ACTIONS(1701), - [anon_sym___declspec] = ACTIONS(1701), - [anon_sym___cdecl] = ACTIONS(1701), - [anon_sym___clrcall] = ACTIONS(1701), - [anon_sym___stdcall] = ACTIONS(1701), - [anon_sym___fastcall] = ACTIONS(1701), - [anon_sym___thiscall] = ACTIONS(1701), - [anon_sym___vectorcall] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1701), - [anon_sym_auto] = ACTIONS(1701), - [anon_sym_register] = ACTIONS(1701), - [anon_sym_inline] = ACTIONS(1701), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1701), - [anon_sym_const] = ACTIONS(1701), - [anon_sym_volatile] = ACTIONS(1701), - [anon_sym_restrict] = ACTIONS(1701), - [anon_sym__Atomic] = ACTIONS(1701), - [anon_sym_in] = ACTIONS(1701), - [anon_sym_out] = ACTIONS(1701), - [anon_sym_inout] = ACTIONS(1701), - [anon_sym_bycopy] = ACTIONS(1701), - [anon_sym_byref] = ACTIONS(1701), - [anon_sym_oneway] = ACTIONS(1701), - [anon_sym__Nullable] = ACTIONS(1701), - [anon_sym__Nonnull] = ACTIONS(1701), - [anon_sym__Nullable_result] = ACTIONS(1701), - [anon_sym__Null_unspecified] = ACTIONS(1701), - [anon_sym___autoreleasing] = ACTIONS(1701), - [anon_sym___nullable] = ACTIONS(1701), - [anon_sym___nonnull] = ACTIONS(1701), - [anon_sym___strong] = ACTIONS(1701), - [anon_sym___weak] = ACTIONS(1701), - [anon_sym___bridge] = ACTIONS(1701), - [anon_sym___bridge_transfer] = ACTIONS(1701), - [anon_sym___bridge_retained] = ACTIONS(1701), - [anon_sym___unsafe_unretained] = ACTIONS(1701), - [anon_sym___block] = ACTIONS(1701), - [anon_sym___kindof] = ACTIONS(1701), - [anon_sym___unused] = ACTIONS(1701), - [anon_sym__Complex] = ACTIONS(1701), - [anon_sym___complex] = ACTIONS(1701), - [anon_sym_IBOutlet] = ACTIONS(1701), - [anon_sym_IBInspectable] = ACTIONS(1701), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1701), - [anon_sym_signed] = ACTIONS(1701), - [anon_sym_unsigned] = ACTIONS(1701), - [anon_sym_long] = ACTIONS(1701), - [anon_sym_short] = ACTIONS(1701), - [sym_primitive_type] = ACTIONS(1701), - [anon_sym_enum] = ACTIONS(1701), - [anon_sym_NS_ENUM] = ACTIONS(1701), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1701), - [anon_sym_NS_OPTIONS] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1701), - [anon_sym_union] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_else] = ACTIONS(1701), - [anon_sym_switch] = ACTIONS(1701), - [anon_sym_case] = ACTIONS(1701), - [anon_sym_default] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_do] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_break] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_goto] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1703), - [anon_sym_PLUS_PLUS] = ACTIONS(1703), - [anon_sym_sizeof] = ACTIONS(1701), - [sym_number_literal] = ACTIONS(1703), - [anon_sym_L_SQUOTE] = ACTIONS(1703), - [anon_sym_u_SQUOTE] = ACTIONS(1703), - [anon_sym_U_SQUOTE] = ACTIONS(1703), - [anon_sym_u8_SQUOTE] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1703), - [anon_sym_L_DQUOTE] = ACTIONS(1703), - [anon_sym_u_DQUOTE] = ACTIONS(1703), - [anon_sym_U_DQUOTE] = ACTIONS(1703), - [anon_sym_u8_DQUOTE] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [sym_true] = ACTIONS(1701), - [sym_false] = ACTIONS(1701), - [sym_null] = ACTIONS(1701), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1703), - [anon_sym_ATimport] = ACTIONS(1703), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1701), - [anon_sym_ATcompatibility_alias] = ACTIONS(1703), - [anon_sym_ATprotocol] = ACTIONS(1703), - [anon_sym_ATclass] = ACTIONS(1703), - [anon_sym_ATinterface] = ACTIONS(1703), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1701), - [sym_method_attribute_specifier] = ACTIONS(1701), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1701), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1701), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1701), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1701), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1701), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1701), - [anon_sym_NS_AVAILABLE] = ACTIONS(1701), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1701), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1701), - [anon_sym_API_AVAILABLE] = ACTIONS(1701), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1701), - [anon_sym_API_DEPRECATED] = ACTIONS(1701), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1701), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1701), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1701), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1701), - [anon_sym___deprecated_msg] = ACTIONS(1701), - [anon_sym___deprecated_enum_msg] = ACTIONS(1701), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1701), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1701), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1701), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1701), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1701), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1701), - [anon_sym_ATimplementation] = ACTIONS(1703), - [anon_sym_typeof] = ACTIONS(1701), - [anon_sym___typeof] = ACTIONS(1701), - [anon_sym___typeof__] = ACTIONS(1701), - [sym_self] = ACTIONS(1701), - [sym_super] = ACTIONS(1701), - [sym_nil] = ACTIONS(1701), - [sym_id] = ACTIONS(1701), - [sym_instancetype] = ACTIONS(1701), - [sym_Class] = ACTIONS(1701), - [sym_SEL] = ACTIONS(1701), - [sym_IMP] = ACTIONS(1701), - [sym_BOOL] = ACTIONS(1701), - [sym_auto] = ACTIONS(1701), - [anon_sym_ATautoreleasepool] = ACTIONS(1703), - [anon_sym_ATsynchronized] = ACTIONS(1703), - [anon_sym_ATtry] = ACTIONS(1703), - [anon_sym_ATcatch] = ACTIONS(1703), - [anon_sym_ATfinally] = ACTIONS(1703), - [anon_sym_ATthrow] = ACTIONS(1703), - [anon_sym_ATselector] = ACTIONS(1703), - [anon_sym_ATencode] = ACTIONS(1703), - [anon_sym_AT] = ACTIONS(1701), - [sym_YES] = ACTIONS(1701), - [sym_NO] = ACTIONS(1701), - [anon_sym___builtin_available] = ACTIONS(1701), - [anon_sym_ATavailable] = ACTIONS(1703), - [anon_sym_va_arg] = ACTIONS(1701), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [306] = { - [ts_builtin_sym_end] = ACTIONS(1705), - [sym_identifier] = ACTIONS(1707), - [aux_sym_preproc_include_token1] = ACTIONS(1705), - [aux_sym_preproc_def_token1] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1705), - [aux_sym_preproc_if_token1] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_typedef] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym___attribute] = ACTIONS(1707), - [anon_sym___attribute__] = ACTIONS(1707), - [anon_sym___declspec] = ACTIONS(1707), - [anon_sym___cdecl] = ACTIONS(1707), - [anon_sym___clrcall] = ACTIONS(1707), - [anon_sym___stdcall] = ACTIONS(1707), - [anon_sym___fastcall] = ACTIONS(1707), - [anon_sym___thiscall] = ACTIONS(1707), - [anon_sym___vectorcall] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_auto] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_inline] = ACTIONS(1707), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym_restrict] = ACTIONS(1707), - [anon_sym__Atomic] = ACTIONS(1707), - [anon_sym_in] = ACTIONS(1707), - [anon_sym_out] = ACTIONS(1707), - [anon_sym_inout] = ACTIONS(1707), - [anon_sym_bycopy] = ACTIONS(1707), - [anon_sym_byref] = ACTIONS(1707), - [anon_sym_oneway] = ACTIONS(1707), - [anon_sym__Nullable] = ACTIONS(1707), - [anon_sym__Nonnull] = ACTIONS(1707), - [anon_sym__Nullable_result] = ACTIONS(1707), - [anon_sym__Null_unspecified] = ACTIONS(1707), - [anon_sym___autoreleasing] = ACTIONS(1707), - [anon_sym___nullable] = ACTIONS(1707), - [anon_sym___nonnull] = ACTIONS(1707), - [anon_sym___strong] = ACTIONS(1707), - [anon_sym___weak] = ACTIONS(1707), - [anon_sym___bridge] = ACTIONS(1707), - [anon_sym___bridge_transfer] = ACTIONS(1707), - [anon_sym___bridge_retained] = ACTIONS(1707), - [anon_sym___unsafe_unretained] = ACTIONS(1707), - [anon_sym___block] = ACTIONS(1707), - [anon_sym___kindof] = ACTIONS(1707), - [anon_sym___unused] = ACTIONS(1707), - [anon_sym__Complex] = ACTIONS(1707), - [anon_sym___complex] = ACTIONS(1707), - [anon_sym_IBOutlet] = ACTIONS(1707), - [anon_sym_IBInspectable] = ACTIONS(1707), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1707), - [anon_sym_signed] = ACTIONS(1707), - [anon_sym_unsigned] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [sym_primitive_type] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_NS_ENUM] = ACTIONS(1707), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1707), - [anon_sym_NS_OPTIONS] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_else] = ACTIONS(1707), - [anon_sym_switch] = ACTIONS(1707), - [anon_sym_case] = ACTIONS(1707), - [anon_sym_default] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_goto] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_PLUS_PLUS] = ACTIONS(1705), - [anon_sym_sizeof] = ACTIONS(1707), - [sym_number_literal] = ACTIONS(1705), - [anon_sym_L_SQUOTE] = ACTIONS(1705), - [anon_sym_u_SQUOTE] = ACTIONS(1705), - [anon_sym_U_SQUOTE] = ACTIONS(1705), - [anon_sym_u8_SQUOTE] = ACTIONS(1705), - [anon_sym_SQUOTE] = ACTIONS(1705), - [anon_sym_L_DQUOTE] = ACTIONS(1705), - [anon_sym_u_DQUOTE] = ACTIONS(1705), - [anon_sym_U_DQUOTE] = ACTIONS(1705), - [anon_sym_u8_DQUOTE] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_null] = ACTIONS(1707), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1705), - [anon_sym_ATimport] = ACTIONS(1705), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1707), - [anon_sym_ATcompatibility_alias] = ACTIONS(1705), - [anon_sym_ATprotocol] = ACTIONS(1705), - [anon_sym_ATclass] = ACTIONS(1705), - [anon_sym_ATinterface] = ACTIONS(1705), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1707), - [sym_method_attribute_specifier] = ACTIONS(1707), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1707), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1707), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1707), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1707), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1707), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1707), - [anon_sym_NS_AVAILABLE] = ACTIONS(1707), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1707), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_API_AVAILABLE] = ACTIONS(1707), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1707), - [anon_sym_API_DEPRECATED] = ACTIONS(1707), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1707), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1707), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1707), - [anon_sym___deprecated_msg] = ACTIONS(1707), - [anon_sym___deprecated_enum_msg] = ACTIONS(1707), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1707), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1707), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1707), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1707), - [anon_sym_ATimplementation] = ACTIONS(1705), - [anon_sym_typeof] = ACTIONS(1707), - [anon_sym___typeof] = ACTIONS(1707), - [anon_sym___typeof__] = ACTIONS(1707), - [sym_self] = ACTIONS(1707), - [sym_super] = ACTIONS(1707), - [sym_nil] = ACTIONS(1707), - [sym_id] = ACTIONS(1707), - [sym_instancetype] = ACTIONS(1707), - [sym_Class] = ACTIONS(1707), - [sym_SEL] = ACTIONS(1707), - [sym_IMP] = ACTIONS(1707), - [sym_BOOL] = ACTIONS(1707), - [sym_auto] = ACTIONS(1707), - [anon_sym_ATautoreleasepool] = ACTIONS(1705), - [anon_sym_ATsynchronized] = ACTIONS(1705), - [anon_sym_ATtry] = ACTIONS(1705), - [anon_sym_ATcatch] = ACTIONS(1705), - [anon_sym_ATfinally] = ACTIONS(1705), - [anon_sym_ATthrow] = ACTIONS(1705), - [anon_sym_ATselector] = ACTIONS(1705), - [anon_sym_ATencode] = ACTIONS(1705), - [anon_sym_AT] = ACTIONS(1707), - [sym_YES] = ACTIONS(1707), - [sym_NO] = ACTIONS(1707), - [anon_sym___builtin_available] = ACTIONS(1707), - [anon_sym_ATavailable] = ACTIONS(1705), - [anon_sym_va_arg] = ACTIONS(1707), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [307] = { - [ts_builtin_sym_end] = ACTIONS(1699), - [sym_identifier] = ACTIONS(1697), - [aux_sym_preproc_include_token1] = ACTIONS(1699), - [aux_sym_preproc_def_token1] = ACTIONS(1699), - [anon_sym_RPAREN] = ACTIONS(1699), - [aux_sym_preproc_if_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [anon_sym_LPAREN2] = ACTIONS(1699), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1699), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_typedef] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym___attribute] = ACTIONS(1697), - [anon_sym___attribute__] = ACTIONS(1697), - [anon_sym___declspec] = ACTIONS(1697), - [anon_sym___cdecl] = ACTIONS(1697), - [anon_sym___clrcall] = ACTIONS(1697), - [anon_sym___stdcall] = ACTIONS(1697), - [anon_sym___fastcall] = ACTIONS(1697), - [anon_sym___thiscall] = ACTIONS(1697), - [anon_sym___vectorcall] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_auto] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym_inline] = ACTIONS(1697), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_restrict] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [anon_sym_in] = ACTIONS(1697), - [anon_sym_out] = ACTIONS(1697), - [anon_sym_inout] = ACTIONS(1697), - [anon_sym_bycopy] = ACTIONS(1697), - [anon_sym_byref] = ACTIONS(1697), - [anon_sym_oneway] = ACTIONS(1697), - [anon_sym__Nullable] = ACTIONS(1697), - [anon_sym__Nonnull] = ACTIONS(1697), - [anon_sym__Nullable_result] = ACTIONS(1697), - [anon_sym__Null_unspecified] = ACTIONS(1697), - [anon_sym___autoreleasing] = ACTIONS(1697), - [anon_sym___nullable] = ACTIONS(1697), - [anon_sym___nonnull] = ACTIONS(1697), - [anon_sym___strong] = ACTIONS(1697), - [anon_sym___weak] = ACTIONS(1697), - [anon_sym___bridge] = ACTIONS(1697), - [anon_sym___bridge_transfer] = ACTIONS(1697), - [anon_sym___bridge_retained] = ACTIONS(1697), - [anon_sym___unsafe_unretained] = ACTIONS(1697), - [anon_sym___block] = ACTIONS(1697), - [anon_sym___kindof] = ACTIONS(1697), - [anon_sym___unused] = ACTIONS(1697), - [anon_sym__Complex] = ACTIONS(1697), - [anon_sym___complex] = ACTIONS(1697), - [anon_sym_IBOutlet] = ACTIONS(1697), - [anon_sym_IBInspectable] = ACTIONS(1697), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1697), - [anon_sym_unsigned] = ACTIONS(1697), - [anon_sym_long] = ACTIONS(1697), - [anon_sym_short] = ACTIONS(1697), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1697), - [anon_sym_NS_ENUM] = ACTIONS(1697), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1697), - [anon_sym_NS_OPTIONS] = ACTIONS(1697), - [anon_sym_struct] = ACTIONS(1697), - [anon_sym_union] = ACTIONS(1697), - [anon_sym_if] = ACTIONS(1697), - [anon_sym_else] = ACTIONS(1697), - [anon_sym_switch] = ACTIONS(1697), - [anon_sym_case] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1697), - [anon_sym_while] = ACTIONS(1697), - [anon_sym_do] = ACTIONS(1697), - [anon_sym_for] = ACTIONS(1697), - [anon_sym_return] = ACTIONS(1697), - [anon_sym_break] = ACTIONS(1697), - [anon_sym_continue] = ACTIONS(1697), - [anon_sym_goto] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_sizeof] = ACTIONS(1697), - [sym_number_literal] = ACTIONS(1699), - [anon_sym_L_SQUOTE] = ACTIONS(1699), - [anon_sym_u_SQUOTE] = ACTIONS(1699), - [anon_sym_U_SQUOTE] = ACTIONS(1699), - [anon_sym_u8_SQUOTE] = ACTIONS(1699), - [anon_sym_SQUOTE] = ACTIONS(1699), - [anon_sym_L_DQUOTE] = ACTIONS(1699), - [anon_sym_u_DQUOTE] = ACTIONS(1699), - [anon_sym_U_DQUOTE] = ACTIONS(1699), - [anon_sym_u8_DQUOTE] = ACTIONS(1699), - [anon_sym_DQUOTE] = ACTIONS(1699), - [sym_true] = ACTIONS(1697), - [sym_false] = ACTIONS(1697), - [sym_null] = ACTIONS(1697), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1699), - [anon_sym_ATimport] = ACTIONS(1699), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1697), - [anon_sym_ATcompatibility_alias] = ACTIONS(1699), - [anon_sym_ATprotocol] = ACTIONS(1699), - [anon_sym_ATclass] = ACTIONS(1699), - [anon_sym_ATinterface] = ACTIONS(1699), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1697), - [sym_method_attribute_specifier] = ACTIONS(1697), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1697), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1697), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1697), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1697), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1697), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1697), - [anon_sym_NS_AVAILABLE] = ACTIONS(1697), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1697), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1697), - [anon_sym_API_AVAILABLE] = ACTIONS(1697), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1697), - [anon_sym_API_DEPRECATED] = ACTIONS(1697), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1697), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1697), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1697), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1697), - [anon_sym___deprecated_msg] = ACTIONS(1697), - [anon_sym___deprecated_enum_msg] = ACTIONS(1697), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1697), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1697), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1697), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1697), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1697), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1697), - [anon_sym_ATimplementation] = ACTIONS(1699), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym___typeof] = ACTIONS(1697), - [anon_sym___typeof__] = ACTIONS(1697), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_nil] = ACTIONS(1697), - [sym_id] = ACTIONS(1697), - [sym_instancetype] = ACTIONS(1697), - [sym_Class] = ACTIONS(1697), - [sym_SEL] = ACTIONS(1697), - [sym_IMP] = ACTIONS(1697), - [sym_BOOL] = ACTIONS(1697), - [sym_auto] = ACTIONS(1697), - [anon_sym_ATautoreleasepool] = ACTIONS(1699), - [anon_sym_ATsynchronized] = ACTIONS(1699), - [anon_sym_ATtry] = ACTIONS(1699), - [anon_sym_ATcatch] = ACTIONS(1699), - [anon_sym_ATfinally] = ACTIONS(1699), - [anon_sym_ATthrow] = ACTIONS(1699), - [anon_sym_ATselector] = ACTIONS(1699), - [anon_sym_ATencode] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(1697), - [sym_YES] = ACTIONS(1697), - [sym_NO] = ACTIONS(1697), - [anon_sym___builtin_available] = ACTIONS(1697), - [anon_sym_ATavailable] = ACTIONS(1699), - [anon_sym_va_arg] = ACTIONS(1697), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [308] = { - [sym_identifier] = ACTIONS(1209), - [aux_sym_preproc_include_token1] = ACTIONS(1207), - [aux_sym_preproc_def_token1] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1209), - [aux_sym_preproc_if_token2] = ACTIONS(1209), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1209), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1209), - [aux_sym_preproc_else_token1] = ACTIONS(1209), - [aux_sym_preproc_elif_token1] = ACTIONS(1209), - [anon_sym_LPAREN2] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_CARET] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_typedef] = ACTIONS(1209), - [anon_sym_extern] = ACTIONS(1209), - [anon_sym___attribute] = ACTIONS(1209), - [anon_sym___attribute__] = ACTIONS(1209), - [anon_sym___declspec] = ACTIONS(1209), - [anon_sym___cdecl] = ACTIONS(1209), - [anon_sym___clrcall] = ACTIONS(1209), - [anon_sym___stdcall] = ACTIONS(1209), - [anon_sym___fastcall] = ACTIONS(1209), - [anon_sym___thiscall] = ACTIONS(1209), - [anon_sym___vectorcall] = ACTIONS(1209), - [anon_sym_LBRACE] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1207), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_auto] = ACTIONS(1209), - [anon_sym_register] = ACTIONS(1209), - [anon_sym_inline] = ACTIONS(1209), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1209), - [anon_sym_const] = ACTIONS(1209), - [anon_sym_volatile] = ACTIONS(1209), - [anon_sym_restrict] = ACTIONS(1209), - [anon_sym__Atomic] = ACTIONS(1209), - [anon_sym_in] = ACTIONS(1209), - [anon_sym_out] = ACTIONS(1209), - [anon_sym_inout] = ACTIONS(1209), - [anon_sym_bycopy] = ACTIONS(1209), - [anon_sym_byref] = ACTIONS(1209), - [anon_sym_oneway] = ACTIONS(1209), - [anon_sym__Nullable] = ACTIONS(1209), - [anon_sym__Nonnull] = ACTIONS(1209), - [anon_sym__Nullable_result] = ACTIONS(1209), - [anon_sym__Null_unspecified] = ACTIONS(1209), - [anon_sym___autoreleasing] = ACTIONS(1209), - [anon_sym___nullable] = ACTIONS(1209), - [anon_sym___nonnull] = ACTIONS(1209), - [anon_sym___strong] = ACTIONS(1209), - [anon_sym___weak] = ACTIONS(1209), - [anon_sym___bridge] = ACTIONS(1209), - [anon_sym___bridge_transfer] = ACTIONS(1209), - [anon_sym___bridge_retained] = ACTIONS(1209), - [anon_sym___unsafe_unretained] = ACTIONS(1209), - [anon_sym___block] = ACTIONS(1209), - [anon_sym___kindof] = ACTIONS(1209), - [anon_sym___unused] = ACTIONS(1209), - [anon_sym__Complex] = ACTIONS(1209), - [anon_sym___complex] = ACTIONS(1209), - [anon_sym_IBOutlet] = ACTIONS(1209), - [anon_sym_IBInspectable] = ACTIONS(1209), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1209), - [anon_sym_signed] = ACTIONS(1209), - [anon_sym_unsigned] = ACTIONS(1209), - [anon_sym_long] = ACTIONS(1209), - [anon_sym_short] = ACTIONS(1209), - [sym_primitive_type] = ACTIONS(1209), - [anon_sym_enum] = ACTIONS(1209), - [anon_sym_NS_ENUM] = ACTIONS(1209), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1209), - [anon_sym_NS_OPTIONS] = ACTIONS(1209), - [anon_sym_struct] = ACTIONS(1209), - [anon_sym_union] = ACTIONS(1209), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_else] = ACTIONS(1209), - [anon_sym_switch] = ACTIONS(1209), - [anon_sym_case] = ACTIONS(1209), - [anon_sym_default] = ACTIONS(1209), - [anon_sym_while] = ACTIONS(1209), - [anon_sym_do] = ACTIONS(1209), - [anon_sym_for] = ACTIONS(1209), - [anon_sym_return] = ACTIONS(1209), - [anon_sym_break] = ACTIONS(1209), - [anon_sym_continue] = ACTIONS(1209), - [anon_sym_goto] = ACTIONS(1209), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [anon_sym_sizeof] = ACTIONS(1209), - [sym_number_literal] = ACTIONS(1207), - [anon_sym_L_SQUOTE] = ACTIONS(1207), - [anon_sym_u_SQUOTE] = ACTIONS(1207), - [anon_sym_U_SQUOTE] = ACTIONS(1207), - [anon_sym_u8_SQUOTE] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_L_DQUOTE] = ACTIONS(1207), - [anon_sym_u_DQUOTE] = ACTIONS(1207), - [anon_sym_U_DQUOTE] = ACTIONS(1207), - [anon_sym_u8_DQUOTE] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1207), - [sym_true] = ACTIONS(1209), - [sym_false] = ACTIONS(1209), - [sym_null] = ACTIONS(1209), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1207), - [anon_sym_ATimport] = ACTIONS(1207), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1209), - [anon_sym_ATcompatibility_alias] = ACTIONS(1207), - [anon_sym_ATprotocol] = ACTIONS(1207), - [anon_sym_ATclass] = ACTIONS(1207), - [anon_sym_ATinterface] = ACTIONS(1207), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1209), - [sym_method_attribute_specifier] = ACTIONS(1209), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1209), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1209), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1209), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1209), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1209), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1209), - [anon_sym_NS_AVAILABLE] = ACTIONS(1209), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1209), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1209), - [anon_sym_API_AVAILABLE] = ACTIONS(1209), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1209), - [anon_sym_API_DEPRECATED] = ACTIONS(1209), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1209), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1209), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1209), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1209), - [anon_sym___deprecated_msg] = ACTIONS(1209), - [anon_sym___deprecated_enum_msg] = ACTIONS(1209), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1209), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1209), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1209), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1209), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1209), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1209), - [anon_sym_ATimplementation] = ACTIONS(1207), - [anon_sym_typeof] = ACTIONS(1209), - [anon_sym___typeof] = ACTIONS(1209), - [anon_sym___typeof__] = ACTIONS(1209), - [sym_self] = ACTIONS(1209), - [sym_super] = ACTIONS(1209), - [sym_nil] = ACTIONS(1209), - [sym_id] = ACTIONS(1209), - [sym_instancetype] = ACTIONS(1209), - [sym_Class] = ACTIONS(1209), - [sym_SEL] = ACTIONS(1209), - [sym_IMP] = ACTIONS(1209), - [sym_BOOL] = ACTIONS(1209), - [sym_auto] = ACTIONS(1209), - [anon_sym_ATautoreleasepool] = ACTIONS(1207), - [anon_sym_ATsynchronized] = ACTIONS(1207), - [anon_sym_ATtry] = ACTIONS(1207), - [anon_sym_ATcatch] = ACTIONS(1207), - [anon_sym_ATfinally] = ACTIONS(1207), - [anon_sym_ATthrow] = ACTIONS(1207), - [anon_sym_ATselector] = ACTIONS(1207), - [anon_sym_ATencode] = ACTIONS(1207), - [anon_sym_AT] = ACTIONS(1209), - [sym_YES] = ACTIONS(1209), - [sym_NO] = ACTIONS(1209), - [anon_sym___builtin_available] = ACTIONS(1209), - [anon_sym_ATavailable] = ACTIONS(1207), - [anon_sym_va_arg] = ACTIONS(1209), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [309] = { - [sym_identifier] = ACTIONS(1213), - [aux_sym_preproc_include_token1] = ACTIONS(1211), - [aux_sym_preproc_def_token1] = ACTIONS(1211), - [aux_sym_preproc_if_token1] = ACTIONS(1213), - [aux_sym_preproc_if_token2] = ACTIONS(1213), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1213), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1213), - [aux_sym_preproc_else_token1] = ACTIONS(1213), - [aux_sym_preproc_elif_token1] = ACTIONS(1213), - [anon_sym_LPAREN2] = ACTIONS(1211), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1211), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(1211), - [anon_sym_CARET] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(1211), - [anon_sym_typedef] = ACTIONS(1213), - [anon_sym_extern] = ACTIONS(1213), - [anon_sym___attribute] = ACTIONS(1213), - [anon_sym___attribute__] = ACTIONS(1213), - [anon_sym___declspec] = ACTIONS(1213), - [anon_sym___cdecl] = ACTIONS(1213), - [anon_sym___clrcall] = ACTIONS(1213), - [anon_sym___stdcall] = ACTIONS(1213), - [anon_sym___fastcall] = ACTIONS(1213), - [anon_sym___thiscall] = ACTIONS(1213), - [anon_sym___vectorcall] = ACTIONS(1213), - [anon_sym_LBRACE] = ACTIONS(1211), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_static] = ACTIONS(1213), - [anon_sym_auto] = ACTIONS(1213), - [anon_sym_register] = ACTIONS(1213), - [anon_sym_inline] = ACTIONS(1213), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1213), - [anon_sym_const] = ACTIONS(1213), - [anon_sym_volatile] = ACTIONS(1213), - [anon_sym_restrict] = ACTIONS(1213), - [anon_sym__Atomic] = ACTIONS(1213), - [anon_sym_in] = ACTIONS(1213), - [anon_sym_out] = ACTIONS(1213), - [anon_sym_inout] = ACTIONS(1213), - [anon_sym_bycopy] = ACTIONS(1213), - [anon_sym_byref] = ACTIONS(1213), - [anon_sym_oneway] = ACTIONS(1213), - [anon_sym__Nullable] = ACTIONS(1213), - [anon_sym__Nonnull] = ACTIONS(1213), - [anon_sym__Nullable_result] = ACTIONS(1213), - [anon_sym__Null_unspecified] = ACTIONS(1213), - [anon_sym___autoreleasing] = ACTIONS(1213), - [anon_sym___nullable] = ACTIONS(1213), - [anon_sym___nonnull] = ACTIONS(1213), - [anon_sym___strong] = ACTIONS(1213), - [anon_sym___weak] = ACTIONS(1213), - [anon_sym___bridge] = ACTIONS(1213), - [anon_sym___bridge_transfer] = ACTIONS(1213), - [anon_sym___bridge_retained] = ACTIONS(1213), - [anon_sym___unsafe_unretained] = ACTIONS(1213), - [anon_sym___block] = ACTIONS(1213), - [anon_sym___kindof] = ACTIONS(1213), - [anon_sym___unused] = ACTIONS(1213), - [anon_sym__Complex] = ACTIONS(1213), - [anon_sym___complex] = ACTIONS(1213), - [anon_sym_IBOutlet] = ACTIONS(1213), - [anon_sym_IBInspectable] = ACTIONS(1213), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1213), - [anon_sym_signed] = ACTIONS(1213), - [anon_sym_unsigned] = ACTIONS(1213), - [anon_sym_long] = ACTIONS(1213), - [anon_sym_short] = ACTIONS(1213), - [sym_primitive_type] = ACTIONS(1213), - [anon_sym_enum] = ACTIONS(1213), - [anon_sym_NS_ENUM] = ACTIONS(1213), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1213), - [anon_sym_NS_OPTIONS] = ACTIONS(1213), - [anon_sym_struct] = ACTIONS(1213), - [anon_sym_union] = ACTIONS(1213), - [anon_sym_if] = ACTIONS(1213), - [anon_sym_else] = ACTIONS(1213), - [anon_sym_switch] = ACTIONS(1213), - [anon_sym_case] = ACTIONS(1213), - [anon_sym_default] = ACTIONS(1213), - [anon_sym_while] = ACTIONS(1213), - [anon_sym_do] = ACTIONS(1213), - [anon_sym_for] = ACTIONS(1213), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_break] = ACTIONS(1213), - [anon_sym_continue] = ACTIONS(1213), - [anon_sym_goto] = ACTIONS(1213), - [anon_sym_DASH_DASH] = ACTIONS(1211), - [anon_sym_PLUS_PLUS] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1213), - [sym_number_literal] = ACTIONS(1211), - [anon_sym_L_SQUOTE] = ACTIONS(1211), - [anon_sym_u_SQUOTE] = ACTIONS(1211), - [anon_sym_U_SQUOTE] = ACTIONS(1211), - [anon_sym_u8_SQUOTE] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_L_DQUOTE] = ACTIONS(1211), - [anon_sym_u_DQUOTE] = ACTIONS(1211), - [anon_sym_U_DQUOTE] = ACTIONS(1211), - [anon_sym_u8_DQUOTE] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(1211), - [sym_true] = ACTIONS(1213), - [sym_false] = ACTIONS(1213), - [sym_null] = ACTIONS(1213), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1211), - [anon_sym_ATimport] = ACTIONS(1211), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1213), - [anon_sym_ATcompatibility_alias] = ACTIONS(1211), - [anon_sym_ATprotocol] = ACTIONS(1211), - [anon_sym_ATclass] = ACTIONS(1211), - [anon_sym_ATinterface] = ACTIONS(1211), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1213), - [sym_method_attribute_specifier] = ACTIONS(1213), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1213), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1213), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1213), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1213), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1213), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1213), - [anon_sym_NS_AVAILABLE] = ACTIONS(1213), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1213), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1213), - [anon_sym_API_AVAILABLE] = ACTIONS(1213), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1213), - [anon_sym_API_DEPRECATED] = ACTIONS(1213), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1213), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1213), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1213), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1213), - [anon_sym___deprecated_msg] = ACTIONS(1213), - [anon_sym___deprecated_enum_msg] = ACTIONS(1213), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1213), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1213), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1213), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1213), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1213), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1213), - [anon_sym_ATimplementation] = ACTIONS(1211), - [anon_sym_typeof] = ACTIONS(1213), - [anon_sym___typeof] = ACTIONS(1213), - [anon_sym___typeof__] = ACTIONS(1213), - [sym_self] = ACTIONS(1213), - [sym_super] = ACTIONS(1213), - [sym_nil] = ACTIONS(1213), - [sym_id] = ACTIONS(1213), - [sym_instancetype] = ACTIONS(1213), - [sym_Class] = ACTIONS(1213), - [sym_SEL] = ACTIONS(1213), - [sym_IMP] = ACTIONS(1213), - [sym_BOOL] = ACTIONS(1213), - [sym_auto] = ACTIONS(1213), - [anon_sym_ATautoreleasepool] = ACTIONS(1211), - [anon_sym_ATsynchronized] = ACTIONS(1211), - [anon_sym_ATtry] = ACTIONS(1211), - [anon_sym_ATcatch] = ACTIONS(1211), - [anon_sym_ATfinally] = ACTIONS(1211), - [anon_sym_ATthrow] = ACTIONS(1211), - [anon_sym_ATselector] = ACTIONS(1211), - [anon_sym_ATencode] = ACTIONS(1211), - [anon_sym_AT] = ACTIONS(1213), - [sym_YES] = ACTIONS(1213), - [sym_NO] = ACTIONS(1213), - [anon_sym___builtin_available] = ACTIONS(1213), - [anon_sym_ATavailable] = ACTIONS(1211), - [anon_sym_va_arg] = ACTIONS(1213), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [310] = { - [ts_builtin_sym_end] = ACTIONS(1303), - [sym_identifier] = ACTIONS(1301), - [aux_sym_preproc_include_token1] = ACTIONS(1303), - [aux_sym_preproc_def_token1] = ACTIONS(1303), - [anon_sym_RPAREN] = ACTIONS(1303), - [aux_sym_preproc_if_token1] = ACTIONS(1301), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1301), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1301), - [anon_sym_LPAREN2] = ACTIONS(1303), - [anon_sym_BANG] = ACTIONS(1303), - [anon_sym_TILDE] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_PLUS] = ACTIONS(1301), - [anon_sym_STAR] = ACTIONS(1303), - [anon_sym_CARET] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1303), - [anon_sym_typedef] = ACTIONS(1301), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym___attribute] = ACTIONS(1301), - [anon_sym___attribute__] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(1301), - [anon_sym___cdecl] = ACTIONS(1301), - [anon_sym___clrcall] = ACTIONS(1301), - [anon_sym___stdcall] = ACTIONS(1301), - [anon_sym___fastcall] = ACTIONS(1301), - [anon_sym___thiscall] = ACTIONS(1301), - [anon_sym___vectorcall] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_RBRACE] = ACTIONS(1303), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_auto] = ACTIONS(1301), - [anon_sym_register] = ACTIONS(1301), - [anon_sym_inline] = ACTIONS(1301), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1301), - [anon_sym_const] = ACTIONS(1301), - [anon_sym_volatile] = ACTIONS(1301), - [anon_sym_restrict] = ACTIONS(1301), - [anon_sym__Atomic] = ACTIONS(1301), - [anon_sym_in] = ACTIONS(1301), - [anon_sym_out] = ACTIONS(1301), - [anon_sym_inout] = ACTIONS(1301), - [anon_sym_bycopy] = ACTIONS(1301), - [anon_sym_byref] = ACTIONS(1301), - [anon_sym_oneway] = ACTIONS(1301), - [anon_sym__Nullable] = ACTIONS(1301), - [anon_sym__Nonnull] = ACTIONS(1301), - [anon_sym__Nullable_result] = ACTIONS(1301), - [anon_sym__Null_unspecified] = ACTIONS(1301), - [anon_sym___autoreleasing] = ACTIONS(1301), - [anon_sym___nullable] = ACTIONS(1301), - [anon_sym___nonnull] = ACTIONS(1301), - [anon_sym___strong] = ACTIONS(1301), - [anon_sym___weak] = ACTIONS(1301), - [anon_sym___bridge] = ACTIONS(1301), - [anon_sym___bridge_transfer] = ACTIONS(1301), - [anon_sym___bridge_retained] = ACTIONS(1301), - [anon_sym___unsafe_unretained] = ACTIONS(1301), - [anon_sym___block] = ACTIONS(1301), - [anon_sym___kindof] = ACTIONS(1301), - [anon_sym___unused] = ACTIONS(1301), - [anon_sym__Complex] = ACTIONS(1301), - [anon_sym___complex] = ACTIONS(1301), - [anon_sym_IBOutlet] = ACTIONS(1301), - [anon_sym_IBInspectable] = ACTIONS(1301), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1301), - [anon_sym_signed] = ACTIONS(1301), - [anon_sym_unsigned] = ACTIONS(1301), - [anon_sym_long] = ACTIONS(1301), - [anon_sym_short] = ACTIONS(1301), - [sym_primitive_type] = ACTIONS(1301), - [anon_sym_enum] = ACTIONS(1301), - [anon_sym_NS_ENUM] = ACTIONS(1301), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1301), - [anon_sym_NS_OPTIONS] = ACTIONS(1301), - [anon_sym_struct] = ACTIONS(1301), - [anon_sym_union] = ACTIONS(1301), - [anon_sym_if] = ACTIONS(1301), - [anon_sym_else] = ACTIONS(1301), - [anon_sym_switch] = ACTIONS(1301), - [anon_sym_case] = ACTIONS(1301), - [anon_sym_default] = ACTIONS(1301), - [anon_sym_while] = ACTIONS(1301), - [anon_sym_do] = ACTIONS(1301), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_return] = ACTIONS(1301), - [anon_sym_break] = ACTIONS(1301), - [anon_sym_continue] = ACTIONS(1301), - [anon_sym_goto] = ACTIONS(1301), - [anon_sym_DASH_DASH] = ACTIONS(1303), - [anon_sym_PLUS_PLUS] = ACTIONS(1303), - [anon_sym_sizeof] = ACTIONS(1301), - [sym_number_literal] = ACTIONS(1303), - [anon_sym_L_SQUOTE] = ACTIONS(1303), - [anon_sym_u_SQUOTE] = ACTIONS(1303), - [anon_sym_U_SQUOTE] = ACTIONS(1303), - [anon_sym_u8_SQUOTE] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1303), - [anon_sym_L_DQUOTE] = ACTIONS(1303), - [anon_sym_u_DQUOTE] = ACTIONS(1303), - [anon_sym_U_DQUOTE] = ACTIONS(1303), - [anon_sym_u8_DQUOTE] = ACTIONS(1303), - [anon_sym_DQUOTE] = ACTIONS(1303), - [sym_true] = ACTIONS(1301), - [sym_false] = ACTIONS(1301), - [sym_null] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1303), - [anon_sym_ATimport] = ACTIONS(1303), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1301), - [anon_sym_ATcompatibility_alias] = ACTIONS(1303), - [anon_sym_ATprotocol] = ACTIONS(1303), - [anon_sym_ATclass] = ACTIONS(1303), - [anon_sym_ATinterface] = ACTIONS(1303), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1301), - [sym_method_attribute_specifier] = ACTIONS(1301), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1301), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1301), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1301), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1301), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1301), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1301), - [anon_sym_NS_AVAILABLE] = ACTIONS(1301), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1301), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1301), - [anon_sym_API_AVAILABLE] = ACTIONS(1301), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1301), - [anon_sym_API_DEPRECATED] = ACTIONS(1301), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1301), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1301), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1301), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1301), - [anon_sym___deprecated_msg] = ACTIONS(1301), - [anon_sym___deprecated_enum_msg] = ACTIONS(1301), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1301), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1301), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1301), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1301), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1301), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1301), - [anon_sym_ATimplementation] = ACTIONS(1303), - [anon_sym_typeof] = ACTIONS(1301), - [anon_sym___typeof] = ACTIONS(1301), - [anon_sym___typeof__] = ACTIONS(1301), - [sym_self] = ACTIONS(1301), - [sym_super] = ACTIONS(1301), - [sym_nil] = ACTIONS(1301), - [sym_id] = ACTIONS(1301), - [sym_instancetype] = ACTIONS(1301), - [sym_Class] = ACTIONS(1301), - [sym_SEL] = ACTIONS(1301), - [sym_IMP] = ACTIONS(1301), - [sym_BOOL] = ACTIONS(1301), - [sym_auto] = ACTIONS(1301), - [anon_sym_ATautoreleasepool] = ACTIONS(1303), - [anon_sym_ATsynchronized] = ACTIONS(1303), - [anon_sym_ATtry] = ACTIONS(1303), - [anon_sym_ATcatch] = ACTIONS(1303), - [anon_sym_ATfinally] = ACTIONS(1303), - [anon_sym_ATthrow] = ACTIONS(1303), - [anon_sym_ATselector] = ACTIONS(1303), - [anon_sym_ATencode] = ACTIONS(1303), - [anon_sym_AT] = ACTIONS(1301), - [sym_YES] = ACTIONS(1301), - [sym_NO] = ACTIONS(1301), - [anon_sym___builtin_available] = ACTIONS(1301), - [anon_sym_ATavailable] = ACTIONS(1303), - [anon_sym_va_arg] = ACTIONS(1301), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [311] = { - [ts_builtin_sym_end] = ACTIONS(1647), - [sym_identifier] = ACTIONS(1645), - [aux_sym_preproc_include_token1] = ACTIONS(1647), - [aux_sym_preproc_def_token1] = ACTIONS(1647), - [anon_sym_RPAREN] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1645), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1645), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_typedef] = ACTIONS(1645), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym___attribute] = ACTIONS(1645), - [anon_sym___attribute__] = ACTIONS(1645), - [anon_sym___declspec] = ACTIONS(1645), - [anon_sym___cdecl] = ACTIONS(1645), - [anon_sym___clrcall] = ACTIONS(1645), - [anon_sym___stdcall] = ACTIONS(1645), - [anon_sym___fastcall] = ACTIONS(1645), - [anon_sym___thiscall] = ACTIONS(1645), - [anon_sym___vectorcall] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_auto] = ACTIONS(1645), - [anon_sym_register] = ACTIONS(1645), - [anon_sym_inline] = ACTIONS(1645), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_volatile] = ACTIONS(1645), - [anon_sym_restrict] = ACTIONS(1645), - [anon_sym__Atomic] = ACTIONS(1645), - [anon_sym_in] = ACTIONS(1645), - [anon_sym_out] = ACTIONS(1645), - [anon_sym_inout] = ACTIONS(1645), - [anon_sym_bycopy] = ACTIONS(1645), - [anon_sym_byref] = ACTIONS(1645), - [anon_sym_oneway] = ACTIONS(1645), - [anon_sym__Nullable] = ACTIONS(1645), - [anon_sym__Nonnull] = ACTIONS(1645), - [anon_sym__Nullable_result] = ACTIONS(1645), - [anon_sym__Null_unspecified] = ACTIONS(1645), - [anon_sym___autoreleasing] = ACTIONS(1645), - [anon_sym___nullable] = ACTIONS(1645), - [anon_sym___nonnull] = ACTIONS(1645), - [anon_sym___strong] = ACTIONS(1645), - [anon_sym___weak] = ACTIONS(1645), - [anon_sym___bridge] = ACTIONS(1645), - [anon_sym___bridge_transfer] = ACTIONS(1645), - [anon_sym___bridge_retained] = ACTIONS(1645), - [anon_sym___unsafe_unretained] = ACTIONS(1645), - [anon_sym___block] = ACTIONS(1645), - [anon_sym___kindof] = ACTIONS(1645), - [anon_sym___unused] = ACTIONS(1645), - [anon_sym__Complex] = ACTIONS(1645), - [anon_sym___complex] = ACTIONS(1645), - [anon_sym_IBOutlet] = ACTIONS(1645), - [anon_sym_IBInspectable] = ACTIONS(1645), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1645), - [anon_sym_signed] = ACTIONS(1645), - [anon_sym_unsigned] = ACTIONS(1645), - [anon_sym_long] = ACTIONS(1645), - [anon_sym_short] = ACTIONS(1645), - [sym_primitive_type] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1645), - [anon_sym_NS_ENUM] = ACTIONS(1645), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1645), - [anon_sym_NS_OPTIONS] = ACTIONS(1645), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_union] = ACTIONS(1645), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_switch] = ACTIONS(1645), - [anon_sym_case] = ACTIONS(1645), - [anon_sym_default] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_goto] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1645), - [sym_number_literal] = ACTIONS(1647), - [anon_sym_L_SQUOTE] = ACTIONS(1647), - [anon_sym_u_SQUOTE] = ACTIONS(1647), - [anon_sym_U_SQUOTE] = ACTIONS(1647), - [anon_sym_u8_SQUOTE] = ACTIONS(1647), - [anon_sym_SQUOTE] = ACTIONS(1647), - [anon_sym_L_DQUOTE] = ACTIONS(1647), - [anon_sym_u_DQUOTE] = ACTIONS(1647), - [anon_sym_U_DQUOTE] = ACTIONS(1647), - [anon_sym_u8_DQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym_true] = ACTIONS(1645), - [sym_false] = ACTIONS(1645), - [sym_null] = ACTIONS(1645), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1647), - [anon_sym_ATimport] = ACTIONS(1647), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1645), - [anon_sym_ATcompatibility_alias] = ACTIONS(1647), - [anon_sym_ATprotocol] = ACTIONS(1647), - [anon_sym_ATclass] = ACTIONS(1647), - [anon_sym_ATinterface] = ACTIONS(1647), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1645), - [sym_method_attribute_specifier] = ACTIONS(1645), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1645), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1645), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1645), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1645), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1645), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1645), - [anon_sym_NS_AVAILABLE] = ACTIONS(1645), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1645), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1645), - [anon_sym_API_AVAILABLE] = ACTIONS(1645), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1645), - [anon_sym_API_DEPRECATED] = ACTIONS(1645), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1645), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1645), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1645), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1645), - [anon_sym___deprecated_msg] = ACTIONS(1645), - [anon_sym___deprecated_enum_msg] = ACTIONS(1645), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1645), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1645), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1645), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1645), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1645), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1645), - [anon_sym_ATimplementation] = ACTIONS(1647), - [anon_sym_typeof] = ACTIONS(1645), - [anon_sym___typeof] = ACTIONS(1645), - [anon_sym___typeof__] = ACTIONS(1645), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_nil] = ACTIONS(1645), - [sym_id] = ACTIONS(1645), - [sym_instancetype] = ACTIONS(1645), - [sym_Class] = ACTIONS(1645), - [sym_SEL] = ACTIONS(1645), - [sym_IMP] = ACTIONS(1645), - [sym_BOOL] = ACTIONS(1645), - [sym_auto] = ACTIONS(1645), - [anon_sym_ATautoreleasepool] = ACTIONS(1647), - [anon_sym_ATsynchronized] = ACTIONS(1647), - [anon_sym_ATtry] = ACTIONS(1647), - [anon_sym_ATcatch] = ACTIONS(1647), - [anon_sym_ATfinally] = ACTIONS(1647), - [anon_sym_ATthrow] = ACTIONS(1647), - [anon_sym_ATselector] = ACTIONS(1647), - [anon_sym_ATencode] = ACTIONS(1647), - [anon_sym_AT] = ACTIONS(1645), - [sym_YES] = ACTIONS(1645), - [sym_NO] = ACTIONS(1645), - [anon_sym___builtin_available] = ACTIONS(1645), - [anon_sym_ATavailable] = ACTIONS(1647), - [anon_sym_va_arg] = ACTIONS(1645), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [312] = { - [ts_builtin_sym_end] = ACTIONS(1201), - [sym_identifier] = ACTIONS(1199), - [aux_sym_preproc_include_token1] = ACTIONS(1201), - [aux_sym_preproc_def_token1] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1201), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), - [anon_sym_LPAREN2] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1199), - [anon_sym_PLUS] = ACTIONS(1199), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_typedef] = ACTIONS(1199), - [anon_sym_extern] = ACTIONS(1199), - [anon_sym___attribute] = ACTIONS(1199), - [anon_sym___attribute__] = ACTIONS(1199), - [anon_sym___declspec] = ACTIONS(1199), - [anon_sym___cdecl] = ACTIONS(1199), - [anon_sym___clrcall] = ACTIONS(1199), - [anon_sym___stdcall] = ACTIONS(1199), - [anon_sym___fastcall] = ACTIONS(1199), - [anon_sym___thiscall] = ACTIONS(1199), - [anon_sym___vectorcall] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_RBRACE] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_auto] = ACTIONS(1199), - [anon_sym_register] = ACTIONS(1199), - [anon_sym_inline] = ACTIONS(1199), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1199), - [anon_sym_const] = ACTIONS(1199), - [anon_sym_volatile] = ACTIONS(1199), - [anon_sym_restrict] = ACTIONS(1199), - [anon_sym__Atomic] = ACTIONS(1199), - [anon_sym_in] = ACTIONS(1199), - [anon_sym_out] = ACTIONS(1199), - [anon_sym_inout] = ACTIONS(1199), - [anon_sym_bycopy] = ACTIONS(1199), - [anon_sym_byref] = ACTIONS(1199), - [anon_sym_oneway] = ACTIONS(1199), - [anon_sym__Nullable] = ACTIONS(1199), - [anon_sym__Nonnull] = ACTIONS(1199), - [anon_sym__Nullable_result] = ACTIONS(1199), - [anon_sym__Null_unspecified] = ACTIONS(1199), - [anon_sym___autoreleasing] = ACTIONS(1199), - [anon_sym___nullable] = ACTIONS(1199), - [anon_sym___nonnull] = ACTIONS(1199), - [anon_sym___strong] = ACTIONS(1199), - [anon_sym___weak] = ACTIONS(1199), - [anon_sym___bridge] = ACTIONS(1199), - [anon_sym___bridge_transfer] = ACTIONS(1199), - [anon_sym___bridge_retained] = ACTIONS(1199), - [anon_sym___unsafe_unretained] = ACTIONS(1199), - [anon_sym___block] = ACTIONS(1199), - [anon_sym___kindof] = ACTIONS(1199), - [anon_sym___unused] = ACTIONS(1199), - [anon_sym__Complex] = ACTIONS(1199), - [anon_sym___complex] = ACTIONS(1199), - [anon_sym_IBOutlet] = ACTIONS(1199), - [anon_sym_IBInspectable] = ACTIONS(1199), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1199), - [anon_sym_signed] = ACTIONS(1199), - [anon_sym_unsigned] = ACTIONS(1199), - [anon_sym_long] = ACTIONS(1199), - [anon_sym_short] = ACTIONS(1199), - [sym_primitive_type] = ACTIONS(1199), - [anon_sym_enum] = ACTIONS(1199), - [anon_sym_NS_ENUM] = ACTIONS(1199), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1199), - [anon_sym_NS_OPTIONS] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_else] = ACTIONS(1199), - [anon_sym_switch] = ACTIONS(1199), - [anon_sym_case] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [anon_sym_do] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_goto] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1201), - [anon_sym_PLUS_PLUS] = ACTIONS(1201), - [anon_sym_sizeof] = ACTIONS(1199), - [sym_number_literal] = ACTIONS(1201), - [anon_sym_L_SQUOTE] = ACTIONS(1201), - [anon_sym_u_SQUOTE] = ACTIONS(1201), - [anon_sym_U_SQUOTE] = ACTIONS(1201), - [anon_sym_u8_SQUOTE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1201), - [anon_sym_L_DQUOTE] = ACTIONS(1201), - [anon_sym_u_DQUOTE] = ACTIONS(1201), - [anon_sym_U_DQUOTE] = ACTIONS(1201), - [anon_sym_u8_DQUOTE] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [sym_true] = ACTIONS(1199), - [sym_false] = ACTIONS(1199), - [sym_null] = ACTIONS(1199), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1201), - [anon_sym_ATimport] = ACTIONS(1201), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1199), - [anon_sym_ATcompatibility_alias] = ACTIONS(1201), - [anon_sym_ATprotocol] = ACTIONS(1201), - [anon_sym_ATclass] = ACTIONS(1201), - [anon_sym_ATinterface] = ACTIONS(1201), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1199), - [sym_method_attribute_specifier] = ACTIONS(1199), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1199), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1199), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1199), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1199), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1199), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1199), - [anon_sym_NS_AVAILABLE] = ACTIONS(1199), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1199), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1199), - [anon_sym_API_AVAILABLE] = ACTIONS(1199), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1199), - [anon_sym_API_DEPRECATED] = ACTIONS(1199), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1199), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1199), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1199), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1199), - [anon_sym___deprecated_msg] = ACTIONS(1199), - [anon_sym___deprecated_enum_msg] = ACTIONS(1199), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1199), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1199), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1199), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1199), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1199), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1199), - [anon_sym_ATimplementation] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1199), - [anon_sym___typeof] = ACTIONS(1199), - [anon_sym___typeof__] = ACTIONS(1199), - [sym_self] = ACTIONS(1199), - [sym_super] = ACTIONS(1199), - [sym_nil] = ACTIONS(1199), - [sym_id] = ACTIONS(1199), - [sym_instancetype] = ACTIONS(1199), - [sym_Class] = ACTIONS(1199), - [sym_SEL] = ACTIONS(1199), - [sym_IMP] = ACTIONS(1199), - [sym_BOOL] = ACTIONS(1199), - [sym_auto] = ACTIONS(1199), - [anon_sym_ATautoreleasepool] = ACTIONS(1201), - [anon_sym_ATsynchronized] = ACTIONS(1201), - [anon_sym_ATtry] = ACTIONS(1201), - [anon_sym_ATcatch] = ACTIONS(1201), - [anon_sym_ATfinally] = ACTIONS(1201), - [anon_sym_ATthrow] = ACTIONS(1201), - [anon_sym_ATselector] = ACTIONS(1201), - [anon_sym_ATencode] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1199), - [sym_YES] = ACTIONS(1199), - [sym_NO] = ACTIONS(1199), - [anon_sym___builtin_available] = ACTIONS(1199), - [anon_sym_ATavailable] = ACTIONS(1201), - [anon_sym_va_arg] = ACTIONS(1199), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [313] = { - [ts_builtin_sym_end] = ACTIONS(1695), - [sym_identifier] = ACTIONS(1693), - [aux_sym_preproc_include_token1] = ACTIONS(1695), - [aux_sym_preproc_def_token1] = ACTIONS(1695), - [anon_sym_RPAREN] = ACTIONS(1695), - [aux_sym_preproc_if_token1] = ACTIONS(1693), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1693), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1693), - [anon_sym_LPAREN2] = ACTIONS(1695), - [anon_sym_BANG] = ACTIONS(1695), - [anon_sym_TILDE] = ACTIONS(1695), - [anon_sym_DASH] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1693), - [anon_sym_STAR] = ACTIONS(1695), - [anon_sym_CARET] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_typedef] = ACTIONS(1693), - [anon_sym_extern] = ACTIONS(1693), - [anon_sym___attribute] = ACTIONS(1693), - [anon_sym___attribute__] = ACTIONS(1693), - [anon_sym___declspec] = ACTIONS(1693), - [anon_sym___cdecl] = ACTIONS(1693), - [anon_sym___clrcall] = ACTIONS(1693), - [anon_sym___stdcall] = ACTIONS(1693), - [anon_sym___fastcall] = ACTIONS(1693), - [anon_sym___thiscall] = ACTIONS(1693), - [anon_sym___vectorcall] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_static] = ACTIONS(1693), - [anon_sym_auto] = ACTIONS(1693), - [anon_sym_register] = ACTIONS(1693), - [anon_sym_inline] = ACTIONS(1693), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1693), - [anon_sym_volatile] = ACTIONS(1693), - [anon_sym_restrict] = ACTIONS(1693), - [anon_sym__Atomic] = ACTIONS(1693), - [anon_sym_in] = ACTIONS(1693), - [anon_sym_out] = ACTIONS(1693), - [anon_sym_inout] = ACTIONS(1693), - [anon_sym_bycopy] = ACTIONS(1693), - [anon_sym_byref] = ACTIONS(1693), - [anon_sym_oneway] = ACTIONS(1693), - [anon_sym__Nullable] = ACTIONS(1693), - [anon_sym__Nonnull] = ACTIONS(1693), - [anon_sym__Nullable_result] = ACTIONS(1693), - [anon_sym__Null_unspecified] = ACTIONS(1693), - [anon_sym___autoreleasing] = ACTIONS(1693), - [anon_sym___nullable] = ACTIONS(1693), - [anon_sym___nonnull] = ACTIONS(1693), - [anon_sym___strong] = ACTIONS(1693), - [anon_sym___weak] = ACTIONS(1693), - [anon_sym___bridge] = ACTIONS(1693), - [anon_sym___bridge_transfer] = ACTIONS(1693), - [anon_sym___bridge_retained] = ACTIONS(1693), - [anon_sym___unsafe_unretained] = ACTIONS(1693), - [anon_sym___block] = ACTIONS(1693), - [anon_sym___kindof] = ACTIONS(1693), - [anon_sym___unused] = ACTIONS(1693), - [anon_sym__Complex] = ACTIONS(1693), - [anon_sym___complex] = ACTIONS(1693), - [anon_sym_IBOutlet] = ACTIONS(1693), - [anon_sym_IBInspectable] = ACTIONS(1693), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1693), - [anon_sym_signed] = ACTIONS(1693), - [anon_sym_unsigned] = ACTIONS(1693), - [anon_sym_long] = ACTIONS(1693), - [anon_sym_short] = ACTIONS(1693), - [sym_primitive_type] = ACTIONS(1693), - [anon_sym_enum] = ACTIONS(1693), - [anon_sym_NS_ENUM] = ACTIONS(1693), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1693), - [anon_sym_NS_OPTIONS] = ACTIONS(1693), - [anon_sym_struct] = ACTIONS(1693), - [anon_sym_union] = ACTIONS(1693), - [anon_sym_if] = ACTIONS(1693), - [anon_sym_else] = ACTIONS(1693), - [anon_sym_switch] = ACTIONS(1693), - [anon_sym_case] = ACTIONS(1693), - [anon_sym_default] = ACTIONS(1693), - [anon_sym_while] = ACTIONS(1693), - [anon_sym_do] = ACTIONS(1693), - [anon_sym_for] = ACTIONS(1693), - [anon_sym_return] = ACTIONS(1693), - [anon_sym_break] = ACTIONS(1693), - [anon_sym_continue] = ACTIONS(1693), - [anon_sym_goto] = ACTIONS(1693), - [anon_sym_DASH_DASH] = ACTIONS(1695), - [anon_sym_PLUS_PLUS] = ACTIONS(1695), - [anon_sym_sizeof] = ACTIONS(1693), - [sym_number_literal] = ACTIONS(1695), - [anon_sym_L_SQUOTE] = ACTIONS(1695), - [anon_sym_u_SQUOTE] = ACTIONS(1695), - [anon_sym_U_SQUOTE] = ACTIONS(1695), - [anon_sym_u8_SQUOTE] = ACTIONS(1695), - [anon_sym_SQUOTE] = ACTIONS(1695), - [anon_sym_L_DQUOTE] = ACTIONS(1695), - [anon_sym_u_DQUOTE] = ACTIONS(1695), - [anon_sym_U_DQUOTE] = ACTIONS(1695), - [anon_sym_u8_DQUOTE] = ACTIONS(1695), - [anon_sym_DQUOTE] = ACTIONS(1695), - [sym_true] = ACTIONS(1693), - [sym_false] = ACTIONS(1693), - [sym_null] = ACTIONS(1693), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1695), - [anon_sym_ATimport] = ACTIONS(1695), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1693), - [anon_sym_ATcompatibility_alias] = ACTIONS(1695), - [anon_sym_ATprotocol] = ACTIONS(1695), - [anon_sym_ATclass] = ACTIONS(1695), - [anon_sym_ATinterface] = ACTIONS(1695), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1693), - [sym_method_attribute_specifier] = ACTIONS(1693), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1693), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1693), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1693), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1693), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1693), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1693), - [anon_sym_NS_AVAILABLE] = ACTIONS(1693), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1693), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1693), - [anon_sym_API_AVAILABLE] = ACTIONS(1693), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1693), - [anon_sym_API_DEPRECATED] = ACTIONS(1693), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1693), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1693), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1693), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1693), - [anon_sym___deprecated_msg] = ACTIONS(1693), - [anon_sym___deprecated_enum_msg] = ACTIONS(1693), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1693), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1693), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1693), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1693), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1693), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1693), - [anon_sym_ATimplementation] = ACTIONS(1695), - [anon_sym_typeof] = ACTIONS(1693), - [anon_sym___typeof] = ACTIONS(1693), - [anon_sym___typeof__] = ACTIONS(1693), - [sym_self] = ACTIONS(1693), - [sym_super] = ACTIONS(1693), - [sym_nil] = ACTIONS(1693), - [sym_id] = ACTIONS(1693), - [sym_instancetype] = ACTIONS(1693), - [sym_Class] = ACTIONS(1693), - [sym_SEL] = ACTIONS(1693), - [sym_IMP] = ACTIONS(1693), - [sym_BOOL] = ACTIONS(1693), - [sym_auto] = ACTIONS(1693), - [anon_sym_ATautoreleasepool] = ACTIONS(1695), - [anon_sym_ATsynchronized] = ACTIONS(1695), - [anon_sym_ATtry] = ACTIONS(1695), - [anon_sym_ATcatch] = ACTIONS(1695), - [anon_sym_ATfinally] = ACTIONS(1695), - [anon_sym_ATthrow] = ACTIONS(1695), - [anon_sym_ATselector] = ACTIONS(1695), - [anon_sym_ATencode] = ACTIONS(1695), - [anon_sym_AT] = ACTIONS(1693), - [sym_YES] = ACTIONS(1693), - [sym_NO] = ACTIONS(1693), - [anon_sym___builtin_available] = ACTIONS(1693), - [anon_sym_ATavailable] = ACTIONS(1695), - [anon_sym_va_arg] = ACTIONS(1693), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [314] = { - [ts_builtin_sym_end] = ACTIONS(1691), - [sym_identifier] = ACTIONS(1689), - [aux_sym_preproc_include_token1] = ACTIONS(1691), - [aux_sym_preproc_def_token1] = ACTIONS(1691), - [anon_sym_RPAREN] = ACTIONS(1691), - [aux_sym_preproc_if_token1] = ACTIONS(1689), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1689), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1689), - [anon_sym_LPAREN2] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1691), - [anon_sym_TILDE] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_SEMI] = ACTIONS(1691), - [anon_sym_typedef] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(1689), - [anon_sym___attribute] = ACTIONS(1689), - [anon_sym___attribute__] = ACTIONS(1689), - [anon_sym___declspec] = ACTIONS(1689), - [anon_sym___cdecl] = ACTIONS(1689), - [anon_sym___clrcall] = ACTIONS(1689), - [anon_sym___stdcall] = ACTIONS(1689), - [anon_sym___fastcall] = ACTIONS(1689), - [anon_sym___thiscall] = ACTIONS(1689), - [anon_sym___vectorcall] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1691), - [anon_sym_RBRACE] = ACTIONS(1691), - [anon_sym_LBRACK] = ACTIONS(1691), - [anon_sym_static] = ACTIONS(1689), - [anon_sym_auto] = ACTIONS(1689), - [anon_sym_register] = ACTIONS(1689), - [anon_sym_inline] = ACTIONS(1689), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1689), - [anon_sym_const] = ACTIONS(1689), - [anon_sym_volatile] = ACTIONS(1689), - [anon_sym_restrict] = ACTIONS(1689), - [anon_sym__Atomic] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(1689), - [anon_sym_out] = ACTIONS(1689), - [anon_sym_inout] = ACTIONS(1689), - [anon_sym_bycopy] = ACTIONS(1689), - [anon_sym_byref] = ACTIONS(1689), - [anon_sym_oneway] = ACTIONS(1689), - [anon_sym__Nullable] = ACTIONS(1689), - [anon_sym__Nonnull] = ACTIONS(1689), - [anon_sym__Nullable_result] = ACTIONS(1689), - [anon_sym__Null_unspecified] = ACTIONS(1689), - [anon_sym___autoreleasing] = ACTIONS(1689), - [anon_sym___nullable] = ACTIONS(1689), - [anon_sym___nonnull] = ACTIONS(1689), - [anon_sym___strong] = ACTIONS(1689), - [anon_sym___weak] = ACTIONS(1689), - [anon_sym___bridge] = ACTIONS(1689), - [anon_sym___bridge_transfer] = ACTIONS(1689), - [anon_sym___bridge_retained] = ACTIONS(1689), - [anon_sym___unsafe_unretained] = ACTIONS(1689), - [anon_sym___block] = ACTIONS(1689), - [anon_sym___kindof] = ACTIONS(1689), - [anon_sym___unused] = ACTIONS(1689), - [anon_sym__Complex] = ACTIONS(1689), - [anon_sym___complex] = ACTIONS(1689), - [anon_sym_IBOutlet] = ACTIONS(1689), - [anon_sym_IBInspectable] = ACTIONS(1689), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1689), - [anon_sym_signed] = ACTIONS(1689), - [anon_sym_unsigned] = ACTIONS(1689), - [anon_sym_long] = ACTIONS(1689), - [anon_sym_short] = ACTIONS(1689), - [sym_primitive_type] = ACTIONS(1689), - [anon_sym_enum] = ACTIONS(1689), - [anon_sym_NS_ENUM] = ACTIONS(1689), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1689), - [anon_sym_NS_OPTIONS] = ACTIONS(1689), - [anon_sym_struct] = ACTIONS(1689), - [anon_sym_union] = ACTIONS(1689), - [anon_sym_if] = ACTIONS(1689), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_switch] = ACTIONS(1689), - [anon_sym_case] = ACTIONS(1689), - [anon_sym_default] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1689), - [anon_sym_do] = ACTIONS(1689), - [anon_sym_for] = ACTIONS(1689), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1689), - [anon_sym_continue] = ACTIONS(1689), - [anon_sym_goto] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1691), - [anon_sym_PLUS_PLUS] = ACTIONS(1691), - [anon_sym_sizeof] = ACTIONS(1689), - [sym_number_literal] = ACTIONS(1691), - [anon_sym_L_SQUOTE] = ACTIONS(1691), - [anon_sym_u_SQUOTE] = ACTIONS(1691), - [anon_sym_U_SQUOTE] = ACTIONS(1691), - [anon_sym_u8_SQUOTE] = ACTIONS(1691), - [anon_sym_SQUOTE] = ACTIONS(1691), - [anon_sym_L_DQUOTE] = ACTIONS(1691), - [anon_sym_u_DQUOTE] = ACTIONS(1691), - [anon_sym_U_DQUOTE] = ACTIONS(1691), - [anon_sym_u8_DQUOTE] = ACTIONS(1691), - [anon_sym_DQUOTE] = ACTIONS(1691), - [sym_true] = ACTIONS(1689), - [sym_false] = ACTIONS(1689), - [sym_null] = ACTIONS(1689), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1691), - [anon_sym_ATimport] = ACTIONS(1691), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1689), - [anon_sym_ATcompatibility_alias] = ACTIONS(1691), - [anon_sym_ATprotocol] = ACTIONS(1691), - [anon_sym_ATclass] = ACTIONS(1691), - [anon_sym_ATinterface] = ACTIONS(1691), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1689), - [sym_method_attribute_specifier] = ACTIONS(1689), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1689), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1689), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1689), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1689), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1689), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1689), - [anon_sym_NS_AVAILABLE] = ACTIONS(1689), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1689), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1689), - [anon_sym_API_AVAILABLE] = ACTIONS(1689), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1689), - [anon_sym_API_DEPRECATED] = ACTIONS(1689), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1689), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1689), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1689), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1689), - [anon_sym___deprecated_msg] = ACTIONS(1689), - [anon_sym___deprecated_enum_msg] = ACTIONS(1689), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1689), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1689), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1689), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1689), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1689), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1689), - [anon_sym_ATimplementation] = ACTIONS(1691), - [anon_sym_typeof] = ACTIONS(1689), - [anon_sym___typeof] = ACTIONS(1689), - [anon_sym___typeof__] = ACTIONS(1689), - [sym_self] = ACTIONS(1689), - [sym_super] = ACTIONS(1689), - [sym_nil] = ACTIONS(1689), - [sym_id] = ACTIONS(1689), - [sym_instancetype] = ACTIONS(1689), - [sym_Class] = ACTIONS(1689), - [sym_SEL] = ACTIONS(1689), - [sym_IMP] = ACTIONS(1689), - [sym_BOOL] = ACTIONS(1689), - [sym_auto] = ACTIONS(1689), - [anon_sym_ATautoreleasepool] = ACTIONS(1691), - [anon_sym_ATsynchronized] = ACTIONS(1691), - [anon_sym_ATtry] = ACTIONS(1691), - [anon_sym_ATcatch] = ACTIONS(1691), - [anon_sym_ATfinally] = ACTIONS(1691), - [anon_sym_ATthrow] = ACTIONS(1691), - [anon_sym_ATselector] = ACTIONS(1691), - [anon_sym_ATencode] = ACTIONS(1691), - [anon_sym_AT] = ACTIONS(1689), - [sym_YES] = ACTIONS(1689), - [sym_NO] = ACTIONS(1689), - [anon_sym___builtin_available] = ACTIONS(1689), - [anon_sym_ATavailable] = ACTIONS(1691), - [anon_sym_va_arg] = ACTIONS(1689), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [315] = { - [ts_builtin_sym_end] = ACTIONS(1687), - [sym_identifier] = ACTIONS(1685), - [aux_sym_preproc_include_token1] = ACTIONS(1687), - [aux_sym_preproc_def_token1] = ACTIONS(1687), - [anon_sym_RPAREN] = ACTIONS(1687), - [aux_sym_preproc_if_token1] = ACTIONS(1685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1685), - [anon_sym_LPAREN2] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(1685), - [anon_sym_extern] = ACTIONS(1685), - [anon_sym___attribute] = ACTIONS(1685), - [anon_sym___attribute__] = ACTIONS(1685), - [anon_sym___declspec] = ACTIONS(1685), - [anon_sym___cdecl] = ACTIONS(1685), - [anon_sym___clrcall] = ACTIONS(1685), - [anon_sym___stdcall] = ACTIONS(1685), - [anon_sym___fastcall] = ACTIONS(1685), - [anon_sym___thiscall] = ACTIONS(1685), - [anon_sym___vectorcall] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1687), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_auto] = ACTIONS(1685), - [anon_sym_register] = ACTIONS(1685), - [anon_sym_inline] = ACTIONS(1685), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1685), - [anon_sym_volatile] = ACTIONS(1685), - [anon_sym_restrict] = ACTIONS(1685), - [anon_sym__Atomic] = ACTIONS(1685), - [anon_sym_in] = ACTIONS(1685), - [anon_sym_out] = ACTIONS(1685), - [anon_sym_inout] = ACTIONS(1685), - [anon_sym_bycopy] = ACTIONS(1685), - [anon_sym_byref] = ACTIONS(1685), - [anon_sym_oneway] = ACTIONS(1685), - [anon_sym__Nullable] = ACTIONS(1685), - [anon_sym__Nonnull] = ACTIONS(1685), - [anon_sym__Nullable_result] = ACTIONS(1685), - [anon_sym__Null_unspecified] = ACTIONS(1685), - [anon_sym___autoreleasing] = ACTIONS(1685), - [anon_sym___nullable] = ACTIONS(1685), - [anon_sym___nonnull] = ACTIONS(1685), - [anon_sym___strong] = ACTIONS(1685), - [anon_sym___weak] = ACTIONS(1685), - [anon_sym___bridge] = ACTIONS(1685), - [anon_sym___bridge_transfer] = ACTIONS(1685), - [anon_sym___bridge_retained] = ACTIONS(1685), - [anon_sym___unsafe_unretained] = ACTIONS(1685), - [anon_sym___block] = ACTIONS(1685), - [anon_sym___kindof] = ACTIONS(1685), - [anon_sym___unused] = ACTIONS(1685), - [anon_sym__Complex] = ACTIONS(1685), - [anon_sym___complex] = ACTIONS(1685), - [anon_sym_IBOutlet] = ACTIONS(1685), - [anon_sym_IBInspectable] = ACTIONS(1685), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1685), - [anon_sym_signed] = ACTIONS(1685), - [anon_sym_unsigned] = ACTIONS(1685), - [anon_sym_long] = ACTIONS(1685), - [anon_sym_short] = ACTIONS(1685), - [sym_primitive_type] = ACTIONS(1685), - [anon_sym_enum] = ACTIONS(1685), - [anon_sym_NS_ENUM] = ACTIONS(1685), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1685), - [anon_sym_NS_OPTIONS] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_else] = ACTIONS(1685), - [anon_sym_switch] = ACTIONS(1685), - [anon_sym_case] = ACTIONS(1685), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_while] = ACTIONS(1685), - [anon_sym_do] = ACTIONS(1685), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1685), - [anon_sym_continue] = ACTIONS(1685), - [anon_sym_goto] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_sizeof] = ACTIONS(1685), - [sym_number_literal] = ACTIONS(1687), - [anon_sym_L_SQUOTE] = ACTIONS(1687), - [anon_sym_u_SQUOTE] = ACTIONS(1687), - [anon_sym_U_SQUOTE] = ACTIONS(1687), - [anon_sym_u8_SQUOTE] = ACTIONS(1687), - [anon_sym_SQUOTE] = ACTIONS(1687), - [anon_sym_L_DQUOTE] = ACTIONS(1687), - [anon_sym_u_DQUOTE] = ACTIONS(1687), - [anon_sym_U_DQUOTE] = ACTIONS(1687), - [anon_sym_u8_DQUOTE] = ACTIONS(1687), - [anon_sym_DQUOTE] = ACTIONS(1687), - [sym_true] = ACTIONS(1685), - [sym_false] = ACTIONS(1685), - [sym_null] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1687), - [anon_sym_ATimport] = ACTIONS(1687), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1685), - [anon_sym_ATcompatibility_alias] = ACTIONS(1687), - [anon_sym_ATprotocol] = ACTIONS(1687), - [anon_sym_ATclass] = ACTIONS(1687), - [anon_sym_ATinterface] = ACTIONS(1687), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1685), - [sym_method_attribute_specifier] = ACTIONS(1685), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1685), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1685), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1685), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1685), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1685), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1685), - [anon_sym_NS_AVAILABLE] = ACTIONS(1685), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1685), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1685), - [anon_sym_API_AVAILABLE] = ACTIONS(1685), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1685), - [anon_sym_API_DEPRECATED] = ACTIONS(1685), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1685), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1685), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1685), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1685), - [anon_sym___deprecated_msg] = ACTIONS(1685), - [anon_sym___deprecated_enum_msg] = ACTIONS(1685), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1685), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1685), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1685), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1685), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1685), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1685), - [anon_sym_ATimplementation] = ACTIONS(1687), - [anon_sym_typeof] = ACTIONS(1685), - [anon_sym___typeof] = ACTIONS(1685), - [anon_sym___typeof__] = ACTIONS(1685), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_nil] = ACTIONS(1685), - [sym_id] = ACTIONS(1685), - [sym_instancetype] = ACTIONS(1685), - [sym_Class] = ACTIONS(1685), - [sym_SEL] = ACTIONS(1685), - [sym_IMP] = ACTIONS(1685), - [sym_BOOL] = ACTIONS(1685), - [sym_auto] = ACTIONS(1685), - [anon_sym_ATautoreleasepool] = ACTIONS(1687), - [anon_sym_ATsynchronized] = ACTIONS(1687), - [anon_sym_ATtry] = ACTIONS(1687), - [anon_sym_ATcatch] = ACTIONS(1687), - [anon_sym_ATfinally] = ACTIONS(1687), - [anon_sym_ATthrow] = ACTIONS(1687), - [anon_sym_ATselector] = ACTIONS(1687), - [anon_sym_ATencode] = ACTIONS(1687), - [anon_sym_AT] = ACTIONS(1685), - [sym_YES] = ACTIONS(1685), - [sym_NO] = ACTIONS(1685), - [anon_sym___builtin_available] = ACTIONS(1685), - [anon_sym_ATavailable] = ACTIONS(1687), - [anon_sym_va_arg] = ACTIONS(1685), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [316] = { - [sym_identifier] = ACTIONS(1367), - [aux_sym_preproc_include_token1] = ACTIONS(1365), - [aux_sym_preproc_def_token1] = ACTIONS(1365), - [aux_sym_preproc_if_token1] = ACTIONS(1367), - [aux_sym_preproc_if_token2] = ACTIONS(1367), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1367), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1367), - [aux_sym_preproc_else_token1] = ACTIONS(1367), - [aux_sym_preproc_elif_token1] = ACTIONS(1367), - [anon_sym_LPAREN2] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_typedef] = ACTIONS(1367), - [anon_sym_extern] = ACTIONS(1367), - [anon_sym___attribute] = ACTIONS(1367), - [anon_sym___attribute__] = ACTIONS(1367), - [anon_sym___declspec] = ACTIONS(1367), - [anon_sym___cdecl] = ACTIONS(1367), - [anon_sym___clrcall] = ACTIONS(1367), - [anon_sym___stdcall] = ACTIONS(1367), - [anon_sym___fastcall] = ACTIONS(1367), - [anon_sym___thiscall] = ACTIONS(1367), - [anon_sym___vectorcall] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1367), - [anon_sym_auto] = ACTIONS(1367), - [anon_sym_register] = ACTIONS(1367), - [anon_sym_inline] = ACTIONS(1367), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1367), - [anon_sym_const] = ACTIONS(1367), - [anon_sym_volatile] = ACTIONS(1367), - [anon_sym_restrict] = ACTIONS(1367), - [anon_sym__Atomic] = ACTIONS(1367), - [anon_sym_in] = ACTIONS(1367), - [anon_sym_out] = ACTIONS(1367), - [anon_sym_inout] = ACTIONS(1367), - [anon_sym_bycopy] = ACTIONS(1367), - [anon_sym_byref] = ACTIONS(1367), - [anon_sym_oneway] = ACTIONS(1367), - [anon_sym__Nullable] = ACTIONS(1367), - [anon_sym__Nonnull] = ACTIONS(1367), - [anon_sym__Nullable_result] = ACTIONS(1367), - [anon_sym__Null_unspecified] = ACTIONS(1367), - [anon_sym___autoreleasing] = ACTIONS(1367), - [anon_sym___nullable] = ACTIONS(1367), - [anon_sym___nonnull] = ACTIONS(1367), - [anon_sym___strong] = ACTIONS(1367), - [anon_sym___weak] = ACTIONS(1367), - [anon_sym___bridge] = ACTIONS(1367), - [anon_sym___bridge_transfer] = ACTIONS(1367), - [anon_sym___bridge_retained] = ACTIONS(1367), - [anon_sym___unsafe_unretained] = ACTIONS(1367), - [anon_sym___block] = ACTIONS(1367), - [anon_sym___kindof] = ACTIONS(1367), - [anon_sym___unused] = ACTIONS(1367), - [anon_sym__Complex] = ACTIONS(1367), - [anon_sym___complex] = ACTIONS(1367), - [anon_sym_IBOutlet] = ACTIONS(1367), - [anon_sym_IBInspectable] = ACTIONS(1367), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1367), - [anon_sym_signed] = ACTIONS(1367), - [anon_sym_unsigned] = ACTIONS(1367), - [anon_sym_long] = ACTIONS(1367), - [anon_sym_short] = ACTIONS(1367), - [sym_primitive_type] = ACTIONS(1367), - [anon_sym_enum] = ACTIONS(1367), - [anon_sym_NS_ENUM] = ACTIONS(1367), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1367), - [anon_sym_NS_OPTIONS] = ACTIONS(1367), - [anon_sym_struct] = ACTIONS(1367), - [anon_sym_union] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1367), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1367), - [anon_sym_default] = ACTIONS(1367), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_do] = ACTIONS(1367), - [anon_sym_for] = ACTIONS(1367), - [anon_sym_return] = ACTIONS(1367), - [anon_sym_break] = ACTIONS(1367), - [anon_sym_continue] = ACTIONS(1367), - [anon_sym_goto] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_sizeof] = ACTIONS(1367), - [sym_number_literal] = ACTIONS(1365), - [anon_sym_L_SQUOTE] = ACTIONS(1365), - [anon_sym_u_SQUOTE] = ACTIONS(1365), - [anon_sym_U_SQUOTE] = ACTIONS(1365), - [anon_sym_u8_SQUOTE] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1365), - [anon_sym_L_DQUOTE] = ACTIONS(1365), - [anon_sym_u_DQUOTE] = ACTIONS(1365), - [anon_sym_U_DQUOTE] = ACTIONS(1365), - [anon_sym_u8_DQUOTE] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_true] = ACTIONS(1367), - [sym_false] = ACTIONS(1367), - [sym_null] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1365), - [anon_sym_ATimport] = ACTIONS(1365), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1367), - [anon_sym_ATcompatibility_alias] = ACTIONS(1365), - [anon_sym_ATprotocol] = ACTIONS(1365), - [anon_sym_ATclass] = ACTIONS(1365), - [anon_sym_ATinterface] = ACTIONS(1365), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1367), - [sym_method_attribute_specifier] = ACTIONS(1367), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1367), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1367), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1367), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1367), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1367), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1367), - [anon_sym_NS_AVAILABLE] = ACTIONS(1367), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1367), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_API_AVAILABLE] = ACTIONS(1367), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1367), - [anon_sym_API_DEPRECATED] = ACTIONS(1367), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1367), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1367), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1367), - [anon_sym___deprecated_msg] = ACTIONS(1367), - [anon_sym___deprecated_enum_msg] = ACTIONS(1367), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1367), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1367), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1367), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1367), - [anon_sym_ATimplementation] = ACTIONS(1365), - [anon_sym_typeof] = ACTIONS(1367), - [anon_sym___typeof] = ACTIONS(1367), - [anon_sym___typeof__] = ACTIONS(1367), - [sym_self] = ACTIONS(1367), - [sym_super] = ACTIONS(1367), - [sym_nil] = ACTIONS(1367), - [sym_id] = ACTIONS(1367), - [sym_instancetype] = ACTIONS(1367), - [sym_Class] = ACTIONS(1367), - [sym_SEL] = ACTIONS(1367), - [sym_IMP] = ACTIONS(1367), - [sym_BOOL] = ACTIONS(1367), - [sym_auto] = ACTIONS(1367), - [anon_sym_ATautoreleasepool] = ACTIONS(1365), - [anon_sym_ATsynchronized] = ACTIONS(1365), - [anon_sym_ATtry] = ACTIONS(1365), - [anon_sym_ATcatch] = ACTIONS(1365), - [anon_sym_ATfinally] = ACTIONS(1365), - [anon_sym_ATthrow] = ACTIONS(1365), - [anon_sym_ATselector] = ACTIONS(1365), - [anon_sym_ATencode] = ACTIONS(1365), - [anon_sym_AT] = ACTIONS(1367), - [sym_YES] = ACTIONS(1367), - [sym_NO] = ACTIONS(1367), - [anon_sym___builtin_available] = ACTIONS(1367), - [anon_sym_ATavailable] = ACTIONS(1365), - [anon_sym_va_arg] = ACTIONS(1367), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [317] = { - [ts_builtin_sym_end] = ACTIONS(1683), - [sym_identifier] = ACTIONS(1681), - [aux_sym_preproc_include_token1] = ACTIONS(1683), - [aux_sym_preproc_def_token1] = ACTIONS(1683), - [anon_sym_RPAREN] = ACTIONS(1683), - [aux_sym_preproc_if_token1] = ACTIONS(1681), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1681), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1683), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_typedef] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym___attribute] = ACTIONS(1681), - [anon_sym___attribute__] = ACTIONS(1681), - [anon_sym___declspec] = ACTIONS(1681), - [anon_sym___cdecl] = ACTIONS(1681), - [anon_sym___clrcall] = ACTIONS(1681), - [anon_sym___stdcall] = ACTIONS(1681), - [anon_sym___fastcall] = ACTIONS(1681), - [anon_sym___thiscall] = ACTIONS(1681), - [anon_sym___vectorcall] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_static] = ACTIONS(1681), - [anon_sym_auto] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1681), - [anon_sym_inline] = ACTIONS(1681), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [anon_sym_volatile] = ACTIONS(1681), - [anon_sym_restrict] = ACTIONS(1681), - [anon_sym__Atomic] = ACTIONS(1681), - [anon_sym_in] = ACTIONS(1681), - [anon_sym_out] = ACTIONS(1681), - [anon_sym_inout] = ACTIONS(1681), - [anon_sym_bycopy] = ACTIONS(1681), - [anon_sym_byref] = ACTIONS(1681), - [anon_sym_oneway] = ACTIONS(1681), - [anon_sym__Nullable] = ACTIONS(1681), - [anon_sym__Nonnull] = ACTIONS(1681), - [anon_sym__Nullable_result] = ACTIONS(1681), - [anon_sym__Null_unspecified] = ACTIONS(1681), - [anon_sym___autoreleasing] = ACTIONS(1681), - [anon_sym___nullable] = ACTIONS(1681), - [anon_sym___nonnull] = ACTIONS(1681), - [anon_sym___strong] = ACTIONS(1681), - [anon_sym___weak] = ACTIONS(1681), - [anon_sym___bridge] = ACTIONS(1681), - [anon_sym___bridge_transfer] = ACTIONS(1681), - [anon_sym___bridge_retained] = ACTIONS(1681), - [anon_sym___unsafe_unretained] = ACTIONS(1681), - [anon_sym___block] = ACTIONS(1681), - [anon_sym___kindof] = ACTIONS(1681), - [anon_sym___unused] = ACTIONS(1681), - [anon_sym__Complex] = ACTIONS(1681), - [anon_sym___complex] = ACTIONS(1681), - [anon_sym_IBOutlet] = ACTIONS(1681), - [anon_sym_IBInspectable] = ACTIONS(1681), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1681), - [anon_sym_signed] = ACTIONS(1681), - [anon_sym_unsigned] = ACTIONS(1681), - [anon_sym_long] = ACTIONS(1681), - [anon_sym_short] = ACTIONS(1681), - [sym_primitive_type] = ACTIONS(1681), - [anon_sym_enum] = ACTIONS(1681), - [anon_sym_NS_ENUM] = ACTIONS(1681), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1681), - [anon_sym_NS_OPTIONS] = ACTIONS(1681), - [anon_sym_struct] = ACTIONS(1681), - [anon_sym_union] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_else] = ACTIONS(1681), - [anon_sym_switch] = ACTIONS(1681), - [anon_sym_case] = ACTIONS(1681), - [anon_sym_default] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_goto] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_sizeof] = ACTIONS(1681), - [sym_number_literal] = ACTIONS(1683), - [anon_sym_L_SQUOTE] = ACTIONS(1683), - [anon_sym_u_SQUOTE] = ACTIONS(1683), - [anon_sym_U_SQUOTE] = ACTIONS(1683), - [anon_sym_u8_SQUOTE] = ACTIONS(1683), - [anon_sym_SQUOTE] = ACTIONS(1683), - [anon_sym_L_DQUOTE] = ACTIONS(1683), - [anon_sym_u_DQUOTE] = ACTIONS(1683), - [anon_sym_U_DQUOTE] = ACTIONS(1683), - [anon_sym_u8_DQUOTE] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_null] = ACTIONS(1681), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1683), - [anon_sym_ATimport] = ACTIONS(1683), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1681), - [anon_sym_ATcompatibility_alias] = ACTIONS(1683), - [anon_sym_ATprotocol] = ACTIONS(1683), - [anon_sym_ATclass] = ACTIONS(1683), - [anon_sym_ATinterface] = ACTIONS(1683), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1681), - [sym_method_attribute_specifier] = ACTIONS(1681), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1681), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1681), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1681), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1681), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1681), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1681), - [anon_sym_NS_AVAILABLE] = ACTIONS(1681), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1681), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1681), - [anon_sym_API_AVAILABLE] = ACTIONS(1681), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1681), - [anon_sym_API_DEPRECATED] = ACTIONS(1681), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1681), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1681), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1681), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1681), - [anon_sym___deprecated_msg] = ACTIONS(1681), - [anon_sym___deprecated_enum_msg] = ACTIONS(1681), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1681), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1681), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1681), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1681), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1681), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1681), - [anon_sym_ATimplementation] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(1681), - [anon_sym___typeof] = ACTIONS(1681), - [anon_sym___typeof__] = ACTIONS(1681), - [sym_self] = ACTIONS(1681), - [sym_super] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [sym_id] = ACTIONS(1681), - [sym_instancetype] = ACTIONS(1681), - [sym_Class] = ACTIONS(1681), - [sym_SEL] = ACTIONS(1681), - [sym_IMP] = ACTIONS(1681), - [sym_BOOL] = ACTIONS(1681), - [sym_auto] = ACTIONS(1681), - [anon_sym_ATautoreleasepool] = ACTIONS(1683), - [anon_sym_ATsynchronized] = ACTIONS(1683), - [anon_sym_ATtry] = ACTIONS(1683), - [anon_sym_ATcatch] = ACTIONS(1683), - [anon_sym_ATfinally] = ACTIONS(1683), - [anon_sym_ATthrow] = ACTIONS(1683), - [anon_sym_ATselector] = ACTIONS(1683), - [anon_sym_ATencode] = ACTIONS(1683), - [anon_sym_AT] = ACTIONS(1681), - [sym_YES] = ACTIONS(1681), - [sym_NO] = ACTIONS(1681), - [anon_sym___builtin_available] = ACTIONS(1681), - [anon_sym_ATavailable] = ACTIONS(1683), - [anon_sym_va_arg] = ACTIONS(1681), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [318] = { - [ts_builtin_sym_end] = ACTIONS(1307), - [sym_identifier] = ACTIONS(1305), - [aux_sym_preproc_include_token1] = ACTIONS(1307), - [aux_sym_preproc_def_token1] = ACTIONS(1307), - [anon_sym_RPAREN] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1305), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1305), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1305), - [anon_sym_LPAREN2] = ACTIONS(1307), - [anon_sym_BANG] = ACTIONS(1307), - [anon_sym_TILDE] = ACTIONS(1307), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1307), - [anon_sym_CARET] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym_typedef] = ACTIONS(1305), - [anon_sym_extern] = ACTIONS(1305), - [anon_sym___attribute] = ACTIONS(1305), - [anon_sym___attribute__] = ACTIONS(1305), - [anon_sym___declspec] = ACTIONS(1305), - [anon_sym___cdecl] = ACTIONS(1305), - [anon_sym___clrcall] = ACTIONS(1305), - [anon_sym___stdcall] = ACTIONS(1305), - [anon_sym___fastcall] = ACTIONS(1305), - [anon_sym___thiscall] = ACTIONS(1305), - [anon_sym___vectorcall] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1307), - [anon_sym_RBRACE] = ACTIONS(1307), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_static] = ACTIONS(1305), - [anon_sym_auto] = ACTIONS(1305), - [anon_sym_register] = ACTIONS(1305), - [anon_sym_inline] = ACTIONS(1305), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1305), - [anon_sym_const] = ACTIONS(1305), - [anon_sym_volatile] = ACTIONS(1305), - [anon_sym_restrict] = ACTIONS(1305), - [anon_sym__Atomic] = ACTIONS(1305), - [anon_sym_in] = ACTIONS(1305), - [anon_sym_out] = ACTIONS(1305), - [anon_sym_inout] = ACTIONS(1305), - [anon_sym_bycopy] = ACTIONS(1305), - [anon_sym_byref] = ACTIONS(1305), - [anon_sym_oneway] = ACTIONS(1305), - [anon_sym__Nullable] = ACTIONS(1305), - [anon_sym__Nonnull] = ACTIONS(1305), - [anon_sym__Nullable_result] = ACTIONS(1305), - [anon_sym__Null_unspecified] = ACTIONS(1305), - [anon_sym___autoreleasing] = ACTIONS(1305), - [anon_sym___nullable] = ACTIONS(1305), - [anon_sym___nonnull] = ACTIONS(1305), - [anon_sym___strong] = ACTIONS(1305), - [anon_sym___weak] = ACTIONS(1305), - [anon_sym___bridge] = ACTIONS(1305), - [anon_sym___bridge_transfer] = ACTIONS(1305), - [anon_sym___bridge_retained] = ACTIONS(1305), - [anon_sym___unsafe_unretained] = ACTIONS(1305), - [anon_sym___block] = ACTIONS(1305), - [anon_sym___kindof] = ACTIONS(1305), - [anon_sym___unused] = ACTIONS(1305), - [anon_sym__Complex] = ACTIONS(1305), - [anon_sym___complex] = ACTIONS(1305), - [anon_sym_IBOutlet] = ACTIONS(1305), - [anon_sym_IBInspectable] = ACTIONS(1305), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1305), - [anon_sym_signed] = ACTIONS(1305), - [anon_sym_unsigned] = ACTIONS(1305), - [anon_sym_long] = ACTIONS(1305), - [anon_sym_short] = ACTIONS(1305), - [sym_primitive_type] = ACTIONS(1305), - [anon_sym_enum] = ACTIONS(1305), - [anon_sym_NS_ENUM] = ACTIONS(1305), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1305), - [anon_sym_NS_OPTIONS] = ACTIONS(1305), - [anon_sym_struct] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_else] = ACTIONS(1305), - [anon_sym_switch] = ACTIONS(1305), - [anon_sym_case] = ACTIONS(1305), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_while] = ACTIONS(1305), - [anon_sym_do] = ACTIONS(1305), - [anon_sym_for] = ACTIONS(1305), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1305), - [anon_sym_goto] = ACTIONS(1305), - [anon_sym_DASH_DASH] = ACTIONS(1307), - [anon_sym_PLUS_PLUS] = ACTIONS(1307), - [anon_sym_sizeof] = ACTIONS(1305), - [sym_number_literal] = ACTIONS(1307), - [anon_sym_L_SQUOTE] = ACTIONS(1307), - [anon_sym_u_SQUOTE] = ACTIONS(1307), - [anon_sym_U_SQUOTE] = ACTIONS(1307), - [anon_sym_u8_SQUOTE] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1307), - [anon_sym_L_DQUOTE] = ACTIONS(1307), - [anon_sym_u_DQUOTE] = ACTIONS(1307), - [anon_sym_U_DQUOTE] = ACTIONS(1307), - [anon_sym_u8_DQUOTE] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1307), - [anon_sym_ATimport] = ACTIONS(1307), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1305), - [anon_sym_ATcompatibility_alias] = ACTIONS(1307), - [anon_sym_ATprotocol] = ACTIONS(1307), - [anon_sym_ATclass] = ACTIONS(1307), - [anon_sym_ATinterface] = ACTIONS(1307), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1305), - [sym_method_attribute_specifier] = ACTIONS(1305), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1305), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1305), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1305), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1305), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1305), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1305), - [anon_sym_NS_AVAILABLE] = ACTIONS(1305), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1305), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1305), - [anon_sym_API_AVAILABLE] = ACTIONS(1305), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1305), - [anon_sym_API_DEPRECATED] = ACTIONS(1305), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1305), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1305), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1305), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1305), - [anon_sym___deprecated_msg] = ACTIONS(1305), - [anon_sym___deprecated_enum_msg] = ACTIONS(1305), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1305), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1305), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1305), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1305), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1305), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1305), - [anon_sym_ATimplementation] = ACTIONS(1307), - [anon_sym_typeof] = ACTIONS(1305), - [anon_sym___typeof] = ACTIONS(1305), - [anon_sym___typeof__] = ACTIONS(1305), - [sym_self] = ACTIONS(1305), - [sym_super] = ACTIONS(1305), - [sym_nil] = ACTIONS(1305), - [sym_id] = ACTIONS(1305), - [sym_instancetype] = ACTIONS(1305), - [sym_Class] = ACTIONS(1305), - [sym_SEL] = ACTIONS(1305), - [sym_IMP] = ACTIONS(1305), - [sym_BOOL] = ACTIONS(1305), - [sym_auto] = ACTIONS(1305), - [anon_sym_ATautoreleasepool] = ACTIONS(1307), - [anon_sym_ATsynchronized] = ACTIONS(1307), - [anon_sym_ATtry] = ACTIONS(1307), - [anon_sym_ATcatch] = ACTIONS(1307), - [anon_sym_ATfinally] = ACTIONS(1307), - [anon_sym_ATthrow] = ACTIONS(1307), - [anon_sym_ATselector] = ACTIONS(1307), - [anon_sym_ATencode] = ACTIONS(1307), - [anon_sym_AT] = ACTIONS(1305), - [sym_YES] = ACTIONS(1305), - [sym_NO] = ACTIONS(1305), - [anon_sym___builtin_available] = ACTIONS(1305), - [anon_sym_ATavailable] = ACTIONS(1307), - [anon_sym_va_arg] = ACTIONS(1305), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [319] = { - [ts_builtin_sym_end] = ACTIONS(1311), - [sym_identifier] = ACTIONS(1309), - [aux_sym_preproc_include_token1] = ACTIONS(1311), - [aux_sym_preproc_def_token1] = ACTIONS(1311), - [anon_sym_RPAREN] = ACTIONS(1311), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1309), - [anon_sym_LPAREN2] = ACTIONS(1311), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_TILDE] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_CARET] = ACTIONS(1311), - [anon_sym_AMP] = ACTIONS(1311), - [anon_sym_SEMI] = ACTIONS(1311), - [anon_sym_typedef] = ACTIONS(1309), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym___attribute] = ACTIONS(1309), - [anon_sym___attribute__] = ACTIONS(1309), - [anon_sym___declspec] = ACTIONS(1309), - [anon_sym___cdecl] = ACTIONS(1309), - [anon_sym___clrcall] = ACTIONS(1309), - [anon_sym___stdcall] = ACTIONS(1309), - [anon_sym___fastcall] = ACTIONS(1309), - [anon_sym___thiscall] = ACTIONS(1309), - [anon_sym___vectorcall] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_RBRACE] = ACTIONS(1311), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_static] = ACTIONS(1309), - [anon_sym_auto] = ACTIONS(1309), - [anon_sym_register] = ACTIONS(1309), - [anon_sym_inline] = ACTIONS(1309), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1309), - [anon_sym_const] = ACTIONS(1309), - [anon_sym_volatile] = ACTIONS(1309), - [anon_sym_restrict] = ACTIONS(1309), - [anon_sym__Atomic] = ACTIONS(1309), - [anon_sym_in] = ACTIONS(1309), - [anon_sym_out] = ACTIONS(1309), - [anon_sym_inout] = ACTIONS(1309), - [anon_sym_bycopy] = ACTIONS(1309), - [anon_sym_byref] = ACTIONS(1309), - [anon_sym_oneway] = ACTIONS(1309), - [anon_sym__Nullable] = ACTIONS(1309), - [anon_sym__Nonnull] = ACTIONS(1309), - [anon_sym__Nullable_result] = ACTIONS(1309), - [anon_sym__Null_unspecified] = ACTIONS(1309), - [anon_sym___autoreleasing] = ACTIONS(1309), - [anon_sym___nullable] = ACTIONS(1309), - [anon_sym___nonnull] = ACTIONS(1309), - [anon_sym___strong] = ACTIONS(1309), - [anon_sym___weak] = ACTIONS(1309), - [anon_sym___bridge] = ACTIONS(1309), - [anon_sym___bridge_transfer] = ACTIONS(1309), - [anon_sym___bridge_retained] = ACTIONS(1309), - [anon_sym___unsafe_unretained] = ACTIONS(1309), - [anon_sym___block] = ACTIONS(1309), - [anon_sym___kindof] = ACTIONS(1309), - [anon_sym___unused] = ACTIONS(1309), - [anon_sym__Complex] = ACTIONS(1309), - [anon_sym___complex] = ACTIONS(1309), - [anon_sym_IBOutlet] = ACTIONS(1309), - [anon_sym_IBInspectable] = ACTIONS(1309), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1309), - [anon_sym_signed] = ACTIONS(1309), - [anon_sym_unsigned] = ACTIONS(1309), - [anon_sym_long] = ACTIONS(1309), - [anon_sym_short] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(1309), - [anon_sym_enum] = ACTIONS(1309), - [anon_sym_NS_ENUM] = ACTIONS(1309), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1309), - [anon_sym_NS_OPTIONS] = ACTIONS(1309), - [anon_sym_struct] = ACTIONS(1309), - [anon_sym_union] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_else] = ACTIONS(1309), - [anon_sym_switch] = ACTIONS(1309), - [anon_sym_case] = ACTIONS(1309), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_do] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [anon_sym_goto] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1311), - [anon_sym_PLUS_PLUS] = ACTIONS(1311), - [anon_sym_sizeof] = ACTIONS(1309), - [sym_number_literal] = ACTIONS(1311), - [anon_sym_L_SQUOTE] = ACTIONS(1311), - [anon_sym_u_SQUOTE] = ACTIONS(1311), - [anon_sym_U_SQUOTE] = ACTIONS(1311), - [anon_sym_u8_SQUOTE] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1311), - [anon_sym_L_DQUOTE] = ACTIONS(1311), - [anon_sym_u_DQUOTE] = ACTIONS(1311), - [anon_sym_U_DQUOTE] = ACTIONS(1311), - [anon_sym_u8_DQUOTE] = ACTIONS(1311), - [anon_sym_DQUOTE] = ACTIONS(1311), - [sym_true] = ACTIONS(1309), - [sym_false] = ACTIONS(1309), - [sym_null] = ACTIONS(1309), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1311), - [anon_sym_ATimport] = ACTIONS(1311), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1309), - [anon_sym_ATcompatibility_alias] = ACTIONS(1311), - [anon_sym_ATprotocol] = ACTIONS(1311), - [anon_sym_ATclass] = ACTIONS(1311), - [anon_sym_ATinterface] = ACTIONS(1311), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1309), - [sym_method_attribute_specifier] = ACTIONS(1309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1309), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1309), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1309), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1309), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1309), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1309), - [anon_sym_NS_AVAILABLE] = ACTIONS(1309), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1309), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1309), - [anon_sym_API_AVAILABLE] = ACTIONS(1309), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1309), - [anon_sym_API_DEPRECATED] = ACTIONS(1309), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1309), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1309), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1309), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1309), - [anon_sym___deprecated_msg] = ACTIONS(1309), - [anon_sym___deprecated_enum_msg] = ACTIONS(1309), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1309), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1309), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1309), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1309), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1309), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1309), - [anon_sym_ATimplementation] = ACTIONS(1311), - [anon_sym_typeof] = ACTIONS(1309), - [anon_sym___typeof] = ACTIONS(1309), - [anon_sym___typeof__] = ACTIONS(1309), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1309), - [sym_nil] = ACTIONS(1309), - [sym_id] = ACTIONS(1309), - [sym_instancetype] = ACTIONS(1309), - [sym_Class] = ACTIONS(1309), - [sym_SEL] = ACTIONS(1309), - [sym_IMP] = ACTIONS(1309), - [sym_BOOL] = ACTIONS(1309), - [sym_auto] = ACTIONS(1309), - [anon_sym_ATautoreleasepool] = ACTIONS(1311), - [anon_sym_ATsynchronized] = ACTIONS(1311), - [anon_sym_ATtry] = ACTIONS(1311), - [anon_sym_ATcatch] = ACTIONS(1311), - [anon_sym_ATfinally] = ACTIONS(1311), - [anon_sym_ATthrow] = ACTIONS(1311), - [anon_sym_ATselector] = ACTIONS(1311), - [anon_sym_ATencode] = ACTIONS(1311), - [anon_sym_AT] = ACTIONS(1309), - [sym_YES] = ACTIONS(1309), - [sym_NO] = ACTIONS(1309), - [anon_sym___builtin_available] = ACTIONS(1309), - [anon_sym_ATavailable] = ACTIONS(1311), - [anon_sym_va_arg] = ACTIONS(1309), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [320] = { - [ts_builtin_sym_end] = ACTIONS(1315), - [sym_identifier] = ACTIONS(1313), - [aux_sym_preproc_include_token1] = ACTIONS(1315), - [aux_sym_preproc_def_token1] = ACTIONS(1315), - [anon_sym_RPAREN] = ACTIONS(1315), - [aux_sym_preproc_if_token1] = ACTIONS(1313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1313), - [anon_sym_LPAREN2] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_CARET] = ACTIONS(1315), - [anon_sym_AMP] = ACTIONS(1315), - [anon_sym_SEMI] = ACTIONS(1315), - [anon_sym_typedef] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym___attribute] = ACTIONS(1313), - [anon_sym___attribute__] = ACTIONS(1313), - [anon_sym___declspec] = ACTIONS(1313), - [anon_sym___cdecl] = ACTIONS(1313), - [anon_sym___clrcall] = ACTIONS(1313), - [anon_sym___stdcall] = ACTIONS(1313), - [anon_sym___fastcall] = ACTIONS(1313), - [anon_sym___thiscall] = ACTIONS(1313), - [anon_sym___vectorcall] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1315), - [anon_sym_RBRACE] = ACTIONS(1315), - [anon_sym_LBRACK] = ACTIONS(1315), - [anon_sym_static] = ACTIONS(1313), - [anon_sym_auto] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_inline] = ACTIONS(1313), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [anon_sym_volatile] = ACTIONS(1313), - [anon_sym_restrict] = ACTIONS(1313), - [anon_sym__Atomic] = ACTIONS(1313), - [anon_sym_in] = ACTIONS(1313), - [anon_sym_out] = ACTIONS(1313), - [anon_sym_inout] = ACTIONS(1313), - [anon_sym_bycopy] = ACTIONS(1313), - [anon_sym_byref] = ACTIONS(1313), - [anon_sym_oneway] = ACTIONS(1313), - [anon_sym__Nullable] = ACTIONS(1313), - [anon_sym__Nonnull] = ACTIONS(1313), - [anon_sym__Nullable_result] = ACTIONS(1313), - [anon_sym__Null_unspecified] = ACTIONS(1313), - [anon_sym___autoreleasing] = ACTIONS(1313), - [anon_sym___nullable] = ACTIONS(1313), - [anon_sym___nonnull] = ACTIONS(1313), - [anon_sym___strong] = ACTIONS(1313), - [anon_sym___weak] = ACTIONS(1313), - [anon_sym___bridge] = ACTIONS(1313), - [anon_sym___bridge_transfer] = ACTIONS(1313), - [anon_sym___bridge_retained] = ACTIONS(1313), - [anon_sym___unsafe_unretained] = ACTIONS(1313), - [anon_sym___block] = ACTIONS(1313), - [anon_sym___kindof] = ACTIONS(1313), - [anon_sym___unused] = ACTIONS(1313), - [anon_sym__Complex] = ACTIONS(1313), - [anon_sym___complex] = ACTIONS(1313), - [anon_sym_IBOutlet] = ACTIONS(1313), - [anon_sym_IBInspectable] = ACTIONS(1313), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1313), - [anon_sym_signed] = ACTIONS(1313), - [anon_sym_unsigned] = ACTIONS(1313), - [anon_sym_long] = ACTIONS(1313), - [anon_sym_short] = ACTIONS(1313), - [sym_primitive_type] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1313), - [anon_sym_NS_ENUM] = ACTIONS(1313), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1313), - [anon_sym_NS_OPTIONS] = ACTIONS(1313), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_union] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1313), - [anon_sym_switch] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1313), - [anon_sym_default] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_do] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_goto] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_sizeof] = ACTIONS(1313), - [sym_number_literal] = ACTIONS(1315), - [anon_sym_L_SQUOTE] = ACTIONS(1315), - [anon_sym_u_SQUOTE] = ACTIONS(1315), - [anon_sym_U_SQUOTE] = ACTIONS(1315), - [anon_sym_u8_SQUOTE] = ACTIONS(1315), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_L_DQUOTE] = ACTIONS(1315), - [anon_sym_u_DQUOTE] = ACTIONS(1315), - [anon_sym_U_DQUOTE] = ACTIONS(1315), - [anon_sym_u8_DQUOTE] = ACTIONS(1315), - [anon_sym_DQUOTE] = ACTIONS(1315), - [sym_true] = ACTIONS(1313), - [sym_false] = ACTIONS(1313), - [sym_null] = ACTIONS(1313), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1315), - [anon_sym_ATimport] = ACTIONS(1315), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1313), - [anon_sym_ATcompatibility_alias] = ACTIONS(1315), - [anon_sym_ATprotocol] = ACTIONS(1315), - [anon_sym_ATclass] = ACTIONS(1315), - [anon_sym_ATinterface] = ACTIONS(1315), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1313), - [sym_method_attribute_specifier] = ACTIONS(1313), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1313), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1313), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1313), - [anon_sym_NS_AVAILABLE] = ACTIONS(1313), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1313), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1313), - [anon_sym_API_AVAILABLE] = ACTIONS(1313), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1313), - [anon_sym_API_DEPRECATED] = ACTIONS(1313), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1313), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1313), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1313), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1313), - [anon_sym___deprecated_msg] = ACTIONS(1313), - [anon_sym___deprecated_enum_msg] = ACTIONS(1313), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1313), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1313), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1313), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1313), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1313), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1313), - [anon_sym_ATimplementation] = ACTIONS(1315), - [anon_sym_typeof] = ACTIONS(1313), - [anon_sym___typeof] = ACTIONS(1313), - [anon_sym___typeof__] = ACTIONS(1313), - [sym_self] = ACTIONS(1313), - [sym_super] = ACTIONS(1313), - [sym_nil] = ACTIONS(1313), - [sym_id] = ACTIONS(1313), - [sym_instancetype] = ACTIONS(1313), - [sym_Class] = ACTIONS(1313), - [sym_SEL] = ACTIONS(1313), - [sym_IMP] = ACTIONS(1313), - [sym_BOOL] = ACTIONS(1313), - [sym_auto] = ACTIONS(1313), - [anon_sym_ATautoreleasepool] = ACTIONS(1315), - [anon_sym_ATsynchronized] = ACTIONS(1315), - [anon_sym_ATtry] = ACTIONS(1315), - [anon_sym_ATcatch] = ACTIONS(1315), - [anon_sym_ATfinally] = ACTIONS(1315), - [anon_sym_ATthrow] = ACTIONS(1315), - [anon_sym_ATselector] = ACTIONS(1315), - [anon_sym_ATencode] = ACTIONS(1315), - [anon_sym_AT] = ACTIONS(1313), - [sym_YES] = ACTIONS(1313), - [sym_NO] = ACTIONS(1313), - [anon_sym___builtin_available] = ACTIONS(1313), - [anon_sym_ATavailable] = ACTIONS(1315), - [anon_sym_va_arg] = ACTIONS(1313), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [321] = { - [ts_builtin_sym_end] = ACTIONS(1643), - [sym_identifier] = ACTIONS(1641), - [aux_sym_preproc_include_token1] = ACTIONS(1643), - [aux_sym_preproc_def_token1] = ACTIONS(1643), - [anon_sym_RPAREN] = ACTIONS(1643), - [aux_sym_preproc_if_token1] = ACTIONS(1641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1641), - [anon_sym_LPAREN2] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_typedef] = ACTIONS(1641), - [anon_sym_extern] = ACTIONS(1641), - [anon_sym___attribute] = ACTIONS(1641), - [anon_sym___attribute__] = ACTIONS(1641), - [anon_sym___declspec] = ACTIONS(1641), - [anon_sym___cdecl] = ACTIONS(1641), - [anon_sym___clrcall] = ACTIONS(1641), - [anon_sym___stdcall] = ACTIONS(1641), - [anon_sym___fastcall] = ACTIONS(1641), - [anon_sym___thiscall] = ACTIONS(1641), - [anon_sym___vectorcall] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_auto] = ACTIONS(1641), - [anon_sym_register] = ACTIONS(1641), - [anon_sym_inline] = ACTIONS(1641), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(1641), - [anon_sym_volatile] = ACTIONS(1641), - [anon_sym_restrict] = ACTIONS(1641), - [anon_sym__Atomic] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [anon_sym_out] = ACTIONS(1641), - [anon_sym_inout] = ACTIONS(1641), - [anon_sym_bycopy] = ACTIONS(1641), - [anon_sym_byref] = ACTIONS(1641), - [anon_sym_oneway] = ACTIONS(1641), - [anon_sym__Nullable] = ACTIONS(1641), - [anon_sym__Nonnull] = ACTIONS(1641), - [anon_sym__Nullable_result] = ACTIONS(1641), - [anon_sym__Null_unspecified] = ACTIONS(1641), - [anon_sym___autoreleasing] = ACTIONS(1641), - [anon_sym___nullable] = ACTIONS(1641), - [anon_sym___nonnull] = ACTIONS(1641), - [anon_sym___strong] = ACTIONS(1641), - [anon_sym___weak] = ACTIONS(1641), - [anon_sym___bridge] = ACTIONS(1641), - [anon_sym___bridge_transfer] = ACTIONS(1641), - [anon_sym___bridge_retained] = ACTIONS(1641), - [anon_sym___unsafe_unretained] = ACTIONS(1641), - [anon_sym___block] = ACTIONS(1641), - [anon_sym___kindof] = ACTIONS(1641), - [anon_sym___unused] = ACTIONS(1641), - [anon_sym__Complex] = ACTIONS(1641), - [anon_sym___complex] = ACTIONS(1641), - [anon_sym_IBOutlet] = ACTIONS(1641), - [anon_sym_IBInspectable] = ACTIONS(1641), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1641), - [anon_sym_signed] = ACTIONS(1641), - [anon_sym_unsigned] = ACTIONS(1641), - [anon_sym_long] = ACTIONS(1641), - [anon_sym_short] = ACTIONS(1641), - [sym_primitive_type] = ACTIONS(1641), - [anon_sym_enum] = ACTIONS(1641), - [anon_sym_NS_ENUM] = ACTIONS(1641), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1641), - [anon_sym_NS_OPTIONS] = ACTIONS(1641), - [anon_sym_struct] = ACTIONS(1641), - [anon_sym_union] = ACTIONS(1641), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_else] = ACTIONS(1641), - [anon_sym_switch] = ACTIONS(1641), - [anon_sym_case] = ACTIONS(1641), - [anon_sym_default] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_do] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_goto] = ACTIONS(1641), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_sizeof] = ACTIONS(1641), - [sym_number_literal] = ACTIONS(1643), - [anon_sym_L_SQUOTE] = ACTIONS(1643), - [anon_sym_u_SQUOTE] = ACTIONS(1643), - [anon_sym_U_SQUOTE] = ACTIONS(1643), - [anon_sym_u8_SQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1643), - [anon_sym_L_DQUOTE] = ACTIONS(1643), - [anon_sym_u_DQUOTE] = ACTIONS(1643), - [anon_sym_U_DQUOTE] = ACTIONS(1643), - [anon_sym_u8_DQUOTE] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym_true] = ACTIONS(1641), - [sym_false] = ACTIONS(1641), - [sym_null] = ACTIONS(1641), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1643), - [anon_sym_ATimport] = ACTIONS(1643), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1641), - [anon_sym_ATcompatibility_alias] = ACTIONS(1643), - [anon_sym_ATprotocol] = ACTIONS(1643), - [anon_sym_ATclass] = ACTIONS(1643), - [anon_sym_ATinterface] = ACTIONS(1643), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1641), - [sym_method_attribute_specifier] = ACTIONS(1641), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1641), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1641), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1641), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1641), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1641), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1641), - [anon_sym_NS_AVAILABLE] = ACTIONS(1641), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1641), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1641), - [anon_sym_API_AVAILABLE] = ACTIONS(1641), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1641), - [anon_sym_API_DEPRECATED] = ACTIONS(1641), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1641), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1641), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1641), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1641), - [anon_sym___deprecated_msg] = ACTIONS(1641), - [anon_sym___deprecated_enum_msg] = ACTIONS(1641), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1641), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1641), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1641), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1641), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1641), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1641), - [anon_sym_ATimplementation] = ACTIONS(1643), - [anon_sym_typeof] = ACTIONS(1641), - [anon_sym___typeof] = ACTIONS(1641), - [anon_sym___typeof__] = ACTIONS(1641), - [sym_self] = ACTIONS(1641), - [sym_super] = ACTIONS(1641), - [sym_nil] = ACTIONS(1641), - [sym_id] = ACTIONS(1641), - [sym_instancetype] = ACTIONS(1641), - [sym_Class] = ACTIONS(1641), - [sym_SEL] = ACTIONS(1641), - [sym_IMP] = ACTIONS(1641), - [sym_BOOL] = ACTIONS(1641), - [sym_auto] = ACTIONS(1641), - [anon_sym_ATautoreleasepool] = ACTIONS(1643), - [anon_sym_ATsynchronized] = ACTIONS(1643), - [anon_sym_ATtry] = ACTIONS(1643), - [anon_sym_ATcatch] = ACTIONS(1643), - [anon_sym_ATfinally] = ACTIONS(1643), - [anon_sym_ATthrow] = ACTIONS(1643), - [anon_sym_ATselector] = ACTIONS(1643), - [anon_sym_ATencode] = ACTIONS(1643), - [anon_sym_AT] = ACTIONS(1641), - [sym_YES] = ACTIONS(1641), - [sym_NO] = ACTIONS(1641), - [anon_sym___builtin_available] = ACTIONS(1641), - [anon_sym_ATavailable] = ACTIONS(1643), - [anon_sym_va_arg] = ACTIONS(1641), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [322] = { - [ts_builtin_sym_end] = ACTIONS(1659), - [sym_identifier] = ACTIONS(1657), - [aux_sym_preproc_include_token1] = ACTIONS(1659), - [aux_sym_preproc_def_token1] = ACTIONS(1659), - [anon_sym_RPAREN] = ACTIONS(1659), - [aux_sym_preproc_if_token1] = ACTIONS(1657), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_typedef] = ACTIONS(1657), - [anon_sym_extern] = ACTIONS(1657), - [anon_sym___attribute] = ACTIONS(1657), - [anon_sym___attribute__] = ACTIONS(1657), - [anon_sym___declspec] = ACTIONS(1657), - [anon_sym___cdecl] = ACTIONS(1657), - [anon_sym___clrcall] = ACTIONS(1657), - [anon_sym___stdcall] = ACTIONS(1657), - [anon_sym___fastcall] = ACTIONS(1657), - [anon_sym___thiscall] = ACTIONS(1657), - [anon_sym___vectorcall] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_auto] = ACTIONS(1657), - [anon_sym_register] = ACTIONS(1657), - [anon_sym_inline] = ACTIONS(1657), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_volatile] = ACTIONS(1657), - [anon_sym_restrict] = ACTIONS(1657), - [anon_sym__Atomic] = ACTIONS(1657), - [anon_sym_in] = ACTIONS(1657), - [anon_sym_out] = ACTIONS(1657), - [anon_sym_inout] = ACTIONS(1657), - [anon_sym_bycopy] = ACTIONS(1657), - [anon_sym_byref] = ACTIONS(1657), - [anon_sym_oneway] = ACTIONS(1657), - [anon_sym__Nullable] = ACTIONS(1657), - [anon_sym__Nonnull] = ACTIONS(1657), - [anon_sym__Nullable_result] = ACTIONS(1657), - [anon_sym__Null_unspecified] = ACTIONS(1657), - [anon_sym___autoreleasing] = ACTIONS(1657), - [anon_sym___nullable] = ACTIONS(1657), - [anon_sym___nonnull] = ACTIONS(1657), - [anon_sym___strong] = ACTIONS(1657), - [anon_sym___weak] = ACTIONS(1657), - [anon_sym___bridge] = ACTIONS(1657), - [anon_sym___bridge_transfer] = ACTIONS(1657), - [anon_sym___bridge_retained] = ACTIONS(1657), - [anon_sym___unsafe_unretained] = ACTIONS(1657), - [anon_sym___block] = ACTIONS(1657), - [anon_sym___kindof] = ACTIONS(1657), - [anon_sym___unused] = ACTIONS(1657), - [anon_sym__Complex] = ACTIONS(1657), - [anon_sym___complex] = ACTIONS(1657), - [anon_sym_IBOutlet] = ACTIONS(1657), - [anon_sym_IBInspectable] = ACTIONS(1657), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1657), - [anon_sym_signed] = ACTIONS(1657), - [anon_sym_unsigned] = ACTIONS(1657), - [anon_sym_long] = ACTIONS(1657), - [anon_sym_short] = ACTIONS(1657), - [sym_primitive_type] = ACTIONS(1657), - [anon_sym_enum] = ACTIONS(1657), - [anon_sym_NS_ENUM] = ACTIONS(1657), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1657), - [anon_sym_NS_OPTIONS] = ACTIONS(1657), - [anon_sym_struct] = ACTIONS(1657), - [anon_sym_union] = ACTIONS(1657), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_else] = ACTIONS(1657), - [anon_sym_switch] = ACTIONS(1657), - [anon_sym_case] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_do] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_goto] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_sizeof] = ACTIONS(1657), - [sym_number_literal] = ACTIONS(1659), - [anon_sym_L_SQUOTE] = ACTIONS(1659), - [anon_sym_u_SQUOTE] = ACTIONS(1659), - [anon_sym_U_SQUOTE] = ACTIONS(1659), - [anon_sym_u8_SQUOTE] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_L_DQUOTE] = ACTIONS(1659), - [anon_sym_u_DQUOTE] = ACTIONS(1659), - [anon_sym_U_DQUOTE] = ACTIONS(1659), - [anon_sym_u8_DQUOTE] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [sym_true] = ACTIONS(1657), - [sym_false] = ACTIONS(1657), - [sym_null] = ACTIONS(1657), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1659), - [anon_sym_ATimport] = ACTIONS(1659), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1657), - [anon_sym_ATcompatibility_alias] = ACTIONS(1659), - [anon_sym_ATprotocol] = ACTIONS(1659), - [anon_sym_ATclass] = ACTIONS(1659), - [anon_sym_ATinterface] = ACTIONS(1659), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1657), - [sym_method_attribute_specifier] = ACTIONS(1657), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1657), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1657), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1657), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1657), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1657), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1657), - [anon_sym_NS_AVAILABLE] = ACTIONS(1657), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1657), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1657), - [anon_sym_API_AVAILABLE] = ACTIONS(1657), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1657), - [anon_sym_API_DEPRECATED] = ACTIONS(1657), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1657), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1657), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1657), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1657), - [anon_sym___deprecated_msg] = ACTIONS(1657), - [anon_sym___deprecated_enum_msg] = ACTIONS(1657), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1657), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1657), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1657), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1657), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1657), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1657), - [anon_sym_ATimplementation] = ACTIONS(1659), - [anon_sym_typeof] = ACTIONS(1657), - [anon_sym___typeof] = ACTIONS(1657), - [anon_sym___typeof__] = ACTIONS(1657), - [sym_self] = ACTIONS(1657), - [sym_super] = ACTIONS(1657), - [sym_nil] = ACTIONS(1657), - [sym_id] = ACTIONS(1657), - [sym_instancetype] = ACTIONS(1657), - [sym_Class] = ACTIONS(1657), - [sym_SEL] = ACTIONS(1657), - [sym_IMP] = ACTIONS(1657), - [sym_BOOL] = ACTIONS(1657), - [sym_auto] = ACTIONS(1657), - [anon_sym_ATautoreleasepool] = ACTIONS(1659), - [anon_sym_ATsynchronized] = ACTIONS(1659), - [anon_sym_ATtry] = ACTIONS(1659), - [anon_sym_ATcatch] = ACTIONS(1659), - [anon_sym_ATfinally] = ACTIONS(1659), - [anon_sym_ATthrow] = ACTIONS(1659), - [anon_sym_ATselector] = ACTIONS(1659), - [anon_sym_ATencode] = ACTIONS(1659), - [anon_sym_AT] = ACTIONS(1657), - [sym_YES] = ACTIONS(1657), - [sym_NO] = ACTIONS(1657), - [anon_sym___builtin_available] = ACTIONS(1657), - [anon_sym_ATavailable] = ACTIONS(1659), - [anon_sym_va_arg] = ACTIONS(1657), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [323] = { - [ts_builtin_sym_end] = ACTIONS(1667), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_include_token1] = ACTIONS(1667), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [anon_sym_RPAREN] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1665), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1665), - [anon_sym_LPAREN2] = ACTIONS(1667), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_typedef] = ACTIONS(1665), - [anon_sym_extern] = ACTIONS(1665), - [anon_sym___attribute] = ACTIONS(1665), - [anon_sym___attribute__] = ACTIONS(1665), - [anon_sym___declspec] = ACTIONS(1665), - [anon_sym___cdecl] = ACTIONS(1665), - [anon_sym___clrcall] = ACTIONS(1665), - [anon_sym___stdcall] = ACTIONS(1665), - [anon_sym___fastcall] = ACTIONS(1665), - [anon_sym___thiscall] = ACTIONS(1665), - [anon_sym___vectorcall] = ACTIONS(1665), - [anon_sym_LBRACE] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1665), - [anon_sym_auto] = ACTIONS(1665), - [anon_sym_register] = ACTIONS(1665), - [anon_sym_inline] = ACTIONS(1665), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1665), - [anon_sym_volatile] = ACTIONS(1665), - [anon_sym_restrict] = ACTIONS(1665), - [anon_sym__Atomic] = ACTIONS(1665), - [anon_sym_in] = ACTIONS(1665), - [anon_sym_out] = ACTIONS(1665), - [anon_sym_inout] = ACTIONS(1665), - [anon_sym_bycopy] = ACTIONS(1665), - [anon_sym_byref] = ACTIONS(1665), - [anon_sym_oneway] = ACTIONS(1665), - [anon_sym__Nullable] = ACTIONS(1665), - [anon_sym__Nonnull] = ACTIONS(1665), - [anon_sym__Nullable_result] = ACTIONS(1665), - [anon_sym__Null_unspecified] = ACTIONS(1665), - [anon_sym___autoreleasing] = ACTIONS(1665), - [anon_sym___nullable] = ACTIONS(1665), - [anon_sym___nonnull] = ACTIONS(1665), - [anon_sym___strong] = ACTIONS(1665), - [anon_sym___weak] = ACTIONS(1665), - [anon_sym___bridge] = ACTIONS(1665), - [anon_sym___bridge_transfer] = ACTIONS(1665), - [anon_sym___bridge_retained] = ACTIONS(1665), - [anon_sym___unsafe_unretained] = ACTIONS(1665), - [anon_sym___block] = ACTIONS(1665), - [anon_sym___kindof] = ACTIONS(1665), - [anon_sym___unused] = ACTIONS(1665), - [anon_sym__Complex] = ACTIONS(1665), - [anon_sym___complex] = ACTIONS(1665), - [anon_sym_IBOutlet] = ACTIONS(1665), - [anon_sym_IBInspectable] = ACTIONS(1665), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1665), - [anon_sym_signed] = ACTIONS(1665), - [anon_sym_unsigned] = ACTIONS(1665), - [anon_sym_long] = ACTIONS(1665), - [anon_sym_short] = ACTIONS(1665), - [sym_primitive_type] = ACTIONS(1665), - [anon_sym_enum] = ACTIONS(1665), - [anon_sym_NS_ENUM] = ACTIONS(1665), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1665), - [anon_sym_NS_OPTIONS] = ACTIONS(1665), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_union] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1665), - [anon_sym_else] = ACTIONS(1665), - [anon_sym_switch] = ACTIONS(1665), - [anon_sym_case] = ACTIONS(1665), - [anon_sym_default] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1665), - [anon_sym_do] = ACTIONS(1665), - [anon_sym_for] = ACTIONS(1665), - [anon_sym_return] = ACTIONS(1665), - [anon_sym_break] = ACTIONS(1665), - [anon_sym_continue] = ACTIONS(1665), - [anon_sym_goto] = ACTIONS(1665), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_sizeof] = ACTIONS(1665), - [sym_number_literal] = ACTIONS(1667), - [anon_sym_L_SQUOTE] = ACTIONS(1667), - [anon_sym_u_SQUOTE] = ACTIONS(1667), - [anon_sym_U_SQUOTE] = ACTIONS(1667), - [anon_sym_u8_SQUOTE] = ACTIONS(1667), - [anon_sym_SQUOTE] = ACTIONS(1667), - [anon_sym_L_DQUOTE] = ACTIONS(1667), - [anon_sym_u_DQUOTE] = ACTIONS(1667), - [anon_sym_U_DQUOTE] = ACTIONS(1667), - [anon_sym_u8_DQUOTE] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_null] = ACTIONS(1665), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1667), - [anon_sym_ATimport] = ACTIONS(1667), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1665), - [anon_sym_ATcompatibility_alias] = ACTIONS(1667), - [anon_sym_ATprotocol] = ACTIONS(1667), - [anon_sym_ATclass] = ACTIONS(1667), - [anon_sym_ATinterface] = ACTIONS(1667), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1665), - [sym_method_attribute_specifier] = ACTIONS(1665), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1665), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1665), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1665), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1665), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1665), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1665), - [anon_sym_NS_AVAILABLE] = ACTIONS(1665), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1665), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1665), - [anon_sym_API_AVAILABLE] = ACTIONS(1665), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1665), - [anon_sym_API_DEPRECATED] = ACTIONS(1665), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1665), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1665), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1665), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1665), - [anon_sym___deprecated_msg] = ACTIONS(1665), - [anon_sym___deprecated_enum_msg] = ACTIONS(1665), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1665), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1665), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1665), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1665), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1665), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1665), - [anon_sym_ATimplementation] = ACTIONS(1667), - [anon_sym_typeof] = ACTIONS(1665), - [anon_sym___typeof] = ACTIONS(1665), - [anon_sym___typeof__] = ACTIONS(1665), - [sym_self] = ACTIONS(1665), - [sym_super] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [sym_id] = ACTIONS(1665), - [sym_instancetype] = ACTIONS(1665), - [sym_Class] = ACTIONS(1665), - [sym_SEL] = ACTIONS(1665), - [sym_IMP] = ACTIONS(1665), - [sym_BOOL] = ACTIONS(1665), - [sym_auto] = ACTIONS(1665), - [anon_sym_ATautoreleasepool] = ACTIONS(1667), - [anon_sym_ATsynchronized] = ACTIONS(1667), - [anon_sym_ATtry] = ACTIONS(1667), - [anon_sym_ATcatch] = ACTIONS(1667), - [anon_sym_ATfinally] = ACTIONS(1667), - [anon_sym_ATthrow] = ACTIONS(1667), - [anon_sym_ATselector] = ACTIONS(1667), - [anon_sym_ATencode] = ACTIONS(1667), - [anon_sym_AT] = ACTIONS(1665), - [sym_YES] = ACTIONS(1665), - [sym_NO] = ACTIONS(1665), - [anon_sym___builtin_available] = ACTIONS(1665), - [anon_sym_ATavailable] = ACTIONS(1667), - [anon_sym_va_arg] = ACTIONS(1665), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [324] = { - [ts_builtin_sym_end] = ACTIONS(1319), - [sym_identifier] = ACTIONS(1317), - [aux_sym_preproc_include_token1] = ACTIONS(1319), - [aux_sym_preproc_def_token1] = ACTIONS(1319), - [anon_sym_RPAREN] = ACTIONS(1319), - [aux_sym_preproc_if_token1] = ACTIONS(1317), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1317), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1317), - [anon_sym_LPAREN2] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_TILDE] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_CARET] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym_typedef] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym___attribute] = ACTIONS(1317), - [anon_sym___attribute__] = ACTIONS(1317), - [anon_sym___declspec] = ACTIONS(1317), - [anon_sym___cdecl] = ACTIONS(1317), - [anon_sym___clrcall] = ACTIONS(1317), - [anon_sym___stdcall] = ACTIONS(1317), - [anon_sym___fastcall] = ACTIONS(1317), - [anon_sym___thiscall] = ACTIONS(1317), - [anon_sym___vectorcall] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_RBRACE] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_static] = ACTIONS(1317), - [anon_sym_auto] = ACTIONS(1317), - [anon_sym_register] = ACTIONS(1317), - [anon_sym_inline] = ACTIONS(1317), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_volatile] = ACTIONS(1317), - [anon_sym_restrict] = ACTIONS(1317), - [anon_sym__Atomic] = ACTIONS(1317), - [anon_sym_in] = ACTIONS(1317), - [anon_sym_out] = ACTIONS(1317), - [anon_sym_inout] = ACTIONS(1317), - [anon_sym_bycopy] = ACTIONS(1317), - [anon_sym_byref] = ACTIONS(1317), - [anon_sym_oneway] = ACTIONS(1317), - [anon_sym__Nullable] = ACTIONS(1317), - [anon_sym__Nonnull] = ACTIONS(1317), - [anon_sym__Nullable_result] = ACTIONS(1317), - [anon_sym__Null_unspecified] = ACTIONS(1317), - [anon_sym___autoreleasing] = ACTIONS(1317), - [anon_sym___nullable] = ACTIONS(1317), - [anon_sym___nonnull] = ACTIONS(1317), - [anon_sym___strong] = ACTIONS(1317), - [anon_sym___weak] = ACTIONS(1317), - [anon_sym___bridge] = ACTIONS(1317), - [anon_sym___bridge_transfer] = ACTIONS(1317), - [anon_sym___bridge_retained] = ACTIONS(1317), - [anon_sym___unsafe_unretained] = ACTIONS(1317), - [anon_sym___block] = ACTIONS(1317), - [anon_sym___kindof] = ACTIONS(1317), - [anon_sym___unused] = ACTIONS(1317), - [anon_sym__Complex] = ACTIONS(1317), - [anon_sym___complex] = ACTIONS(1317), - [anon_sym_IBOutlet] = ACTIONS(1317), - [anon_sym_IBInspectable] = ACTIONS(1317), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1317), - [anon_sym_signed] = ACTIONS(1317), - [anon_sym_unsigned] = ACTIONS(1317), - [anon_sym_long] = ACTIONS(1317), - [anon_sym_short] = ACTIONS(1317), - [sym_primitive_type] = ACTIONS(1317), - [anon_sym_enum] = ACTIONS(1317), - [anon_sym_NS_ENUM] = ACTIONS(1317), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1317), - [anon_sym_NS_OPTIONS] = ACTIONS(1317), - [anon_sym_struct] = ACTIONS(1317), - [anon_sym_union] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1317), - [anon_sym_else] = ACTIONS(1317), - [anon_sym_switch] = ACTIONS(1317), - [anon_sym_case] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1317), - [anon_sym_do] = ACTIONS(1317), - [anon_sym_for] = ACTIONS(1317), - [anon_sym_return] = ACTIONS(1317), - [anon_sym_break] = ACTIONS(1317), - [anon_sym_continue] = ACTIONS(1317), - [anon_sym_goto] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(1319), - [anon_sym_sizeof] = ACTIONS(1317), - [sym_number_literal] = ACTIONS(1319), - [anon_sym_L_SQUOTE] = ACTIONS(1319), - [anon_sym_u_SQUOTE] = ACTIONS(1319), - [anon_sym_U_SQUOTE] = ACTIONS(1319), - [anon_sym_u8_SQUOTE] = ACTIONS(1319), - [anon_sym_SQUOTE] = ACTIONS(1319), - [anon_sym_L_DQUOTE] = ACTIONS(1319), - [anon_sym_u_DQUOTE] = ACTIONS(1319), - [anon_sym_U_DQUOTE] = ACTIONS(1319), - [anon_sym_u8_DQUOTE] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [sym_true] = ACTIONS(1317), - [sym_false] = ACTIONS(1317), - [sym_null] = ACTIONS(1317), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1319), - [anon_sym_ATimport] = ACTIONS(1319), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1317), - [anon_sym_ATcompatibility_alias] = ACTIONS(1319), - [anon_sym_ATprotocol] = ACTIONS(1319), - [anon_sym_ATclass] = ACTIONS(1319), - [anon_sym_ATinterface] = ACTIONS(1319), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1317), - [sym_method_attribute_specifier] = ACTIONS(1317), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1317), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1317), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1317), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1317), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1317), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1317), - [anon_sym_NS_AVAILABLE] = ACTIONS(1317), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1317), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1317), - [anon_sym_API_AVAILABLE] = ACTIONS(1317), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1317), - [anon_sym_API_DEPRECATED] = ACTIONS(1317), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1317), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1317), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1317), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1317), - [anon_sym___deprecated_msg] = ACTIONS(1317), - [anon_sym___deprecated_enum_msg] = ACTIONS(1317), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1317), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1317), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1317), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1317), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1317), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1317), - [anon_sym_ATimplementation] = ACTIONS(1319), - [anon_sym_typeof] = ACTIONS(1317), - [anon_sym___typeof] = ACTIONS(1317), - [anon_sym___typeof__] = ACTIONS(1317), - [sym_self] = ACTIONS(1317), - [sym_super] = ACTIONS(1317), - [sym_nil] = ACTIONS(1317), - [sym_id] = ACTIONS(1317), - [sym_instancetype] = ACTIONS(1317), - [sym_Class] = ACTIONS(1317), - [sym_SEL] = ACTIONS(1317), - [sym_IMP] = ACTIONS(1317), - [sym_BOOL] = ACTIONS(1317), - [sym_auto] = ACTIONS(1317), - [anon_sym_ATautoreleasepool] = ACTIONS(1319), - [anon_sym_ATsynchronized] = ACTIONS(1319), - [anon_sym_ATtry] = ACTIONS(1319), - [anon_sym_ATcatch] = ACTIONS(1319), - [anon_sym_ATfinally] = ACTIONS(1319), - [anon_sym_ATthrow] = ACTIONS(1319), - [anon_sym_ATselector] = ACTIONS(1319), - [anon_sym_ATencode] = ACTIONS(1319), - [anon_sym_AT] = ACTIONS(1317), - [sym_YES] = ACTIONS(1317), - [sym_NO] = ACTIONS(1317), - [anon_sym___builtin_available] = ACTIONS(1317), - [anon_sym_ATavailable] = ACTIONS(1319), - [anon_sym_va_arg] = ACTIONS(1317), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [325] = { - [ts_builtin_sym_end] = ACTIONS(1663), - [sym_identifier] = ACTIONS(1661), - [aux_sym_preproc_include_token1] = ACTIONS(1663), - [aux_sym_preproc_def_token1] = ACTIONS(1663), - [anon_sym_RPAREN] = ACTIONS(1663), - [aux_sym_preproc_if_token1] = ACTIONS(1661), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1661), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1661), - [anon_sym_LPAREN2] = ACTIONS(1663), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(1663), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_typedef] = ACTIONS(1661), - [anon_sym_extern] = ACTIONS(1661), - [anon_sym___attribute] = ACTIONS(1661), - [anon_sym___attribute__] = ACTIONS(1661), - [anon_sym___declspec] = ACTIONS(1661), - [anon_sym___cdecl] = ACTIONS(1661), - [anon_sym___clrcall] = ACTIONS(1661), - [anon_sym___stdcall] = ACTIONS(1661), - [anon_sym___fastcall] = ACTIONS(1661), - [anon_sym___thiscall] = ACTIONS(1661), - [anon_sym___vectorcall] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_auto] = ACTIONS(1661), - [anon_sym_register] = ACTIONS(1661), - [anon_sym_inline] = ACTIONS(1661), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_volatile] = ACTIONS(1661), - [anon_sym_restrict] = ACTIONS(1661), - [anon_sym__Atomic] = ACTIONS(1661), - [anon_sym_in] = ACTIONS(1661), - [anon_sym_out] = ACTIONS(1661), - [anon_sym_inout] = ACTIONS(1661), - [anon_sym_bycopy] = ACTIONS(1661), - [anon_sym_byref] = ACTIONS(1661), - [anon_sym_oneway] = ACTIONS(1661), - [anon_sym__Nullable] = ACTIONS(1661), - [anon_sym__Nonnull] = ACTIONS(1661), - [anon_sym__Nullable_result] = ACTIONS(1661), - [anon_sym__Null_unspecified] = ACTIONS(1661), - [anon_sym___autoreleasing] = ACTIONS(1661), - [anon_sym___nullable] = ACTIONS(1661), - [anon_sym___nonnull] = ACTIONS(1661), - [anon_sym___strong] = ACTIONS(1661), - [anon_sym___weak] = ACTIONS(1661), - [anon_sym___bridge] = ACTIONS(1661), - [anon_sym___bridge_transfer] = ACTIONS(1661), - [anon_sym___bridge_retained] = ACTIONS(1661), - [anon_sym___unsafe_unretained] = ACTIONS(1661), - [anon_sym___block] = ACTIONS(1661), - [anon_sym___kindof] = ACTIONS(1661), - [anon_sym___unused] = ACTIONS(1661), - [anon_sym__Complex] = ACTIONS(1661), - [anon_sym___complex] = ACTIONS(1661), - [anon_sym_IBOutlet] = ACTIONS(1661), - [anon_sym_IBInspectable] = ACTIONS(1661), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1661), - [anon_sym_signed] = ACTIONS(1661), - [anon_sym_unsigned] = ACTIONS(1661), - [anon_sym_long] = ACTIONS(1661), - [anon_sym_short] = ACTIONS(1661), - [sym_primitive_type] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [anon_sym_NS_ENUM] = ACTIONS(1661), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1661), - [anon_sym_NS_OPTIONS] = ACTIONS(1661), - [anon_sym_struct] = ACTIONS(1661), - [anon_sym_union] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1661), - [anon_sym_default] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_goto] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1661), - [sym_number_literal] = ACTIONS(1663), - [anon_sym_L_SQUOTE] = ACTIONS(1663), - [anon_sym_u_SQUOTE] = ACTIONS(1663), - [anon_sym_U_SQUOTE] = ACTIONS(1663), - [anon_sym_u8_SQUOTE] = ACTIONS(1663), - [anon_sym_SQUOTE] = ACTIONS(1663), - [anon_sym_L_DQUOTE] = ACTIONS(1663), - [anon_sym_u_DQUOTE] = ACTIONS(1663), - [anon_sym_U_DQUOTE] = ACTIONS(1663), - [anon_sym_u8_DQUOTE] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym_true] = ACTIONS(1661), - [sym_false] = ACTIONS(1661), - [sym_null] = ACTIONS(1661), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1663), - [anon_sym_ATimport] = ACTIONS(1663), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1661), - [anon_sym_ATcompatibility_alias] = ACTIONS(1663), - [anon_sym_ATprotocol] = ACTIONS(1663), - [anon_sym_ATclass] = ACTIONS(1663), - [anon_sym_ATinterface] = ACTIONS(1663), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1661), - [sym_method_attribute_specifier] = ACTIONS(1661), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1661), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1661), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1661), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1661), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1661), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1661), - [anon_sym_NS_AVAILABLE] = ACTIONS(1661), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1661), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1661), - [anon_sym_API_AVAILABLE] = ACTIONS(1661), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1661), - [anon_sym_API_DEPRECATED] = ACTIONS(1661), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1661), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1661), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1661), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1661), - [anon_sym___deprecated_msg] = ACTIONS(1661), - [anon_sym___deprecated_enum_msg] = ACTIONS(1661), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1661), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1661), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1661), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1661), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1661), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1661), - [anon_sym_ATimplementation] = ACTIONS(1663), - [anon_sym_typeof] = ACTIONS(1661), - [anon_sym___typeof] = ACTIONS(1661), - [anon_sym___typeof__] = ACTIONS(1661), - [sym_self] = ACTIONS(1661), - [sym_super] = ACTIONS(1661), - [sym_nil] = ACTIONS(1661), - [sym_id] = ACTIONS(1661), - [sym_instancetype] = ACTIONS(1661), - [sym_Class] = ACTIONS(1661), - [sym_SEL] = ACTIONS(1661), - [sym_IMP] = ACTIONS(1661), - [sym_BOOL] = ACTIONS(1661), - [sym_auto] = ACTIONS(1661), - [anon_sym_ATautoreleasepool] = ACTIONS(1663), - [anon_sym_ATsynchronized] = ACTIONS(1663), - [anon_sym_ATtry] = ACTIONS(1663), - [anon_sym_ATcatch] = ACTIONS(1663), - [anon_sym_ATfinally] = ACTIONS(1663), - [anon_sym_ATthrow] = ACTIONS(1663), - [anon_sym_ATselector] = ACTIONS(1663), - [anon_sym_ATencode] = ACTIONS(1663), - [anon_sym_AT] = ACTIONS(1661), - [sym_YES] = ACTIONS(1661), - [sym_NO] = ACTIONS(1661), - [anon_sym___builtin_available] = ACTIONS(1661), - [anon_sym_ATavailable] = ACTIONS(1663), - [anon_sym_va_arg] = ACTIONS(1661), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [326] = { - [ts_builtin_sym_end] = ACTIONS(1679), - [sym_identifier] = ACTIONS(1677), - [aux_sym_preproc_include_token1] = ACTIONS(1679), - [aux_sym_preproc_def_token1] = ACTIONS(1679), - [anon_sym_RPAREN] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1677), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1677), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1677), - [anon_sym_LPAREN2] = ACTIONS(1679), - [anon_sym_BANG] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1677), - [anon_sym_PLUS] = ACTIONS(1677), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_CARET] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_typedef] = ACTIONS(1677), - [anon_sym_extern] = ACTIONS(1677), - [anon_sym___attribute] = ACTIONS(1677), - [anon_sym___attribute__] = ACTIONS(1677), - [anon_sym___declspec] = ACTIONS(1677), - [anon_sym___cdecl] = ACTIONS(1677), - [anon_sym___clrcall] = ACTIONS(1677), - [anon_sym___stdcall] = ACTIONS(1677), - [anon_sym___fastcall] = ACTIONS(1677), - [anon_sym___thiscall] = ACTIONS(1677), - [anon_sym___vectorcall] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_static] = ACTIONS(1677), - [anon_sym_auto] = ACTIONS(1677), - [anon_sym_register] = ACTIONS(1677), - [anon_sym_inline] = ACTIONS(1677), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1677), - [anon_sym_const] = ACTIONS(1677), - [anon_sym_volatile] = ACTIONS(1677), - [anon_sym_restrict] = ACTIONS(1677), - [anon_sym__Atomic] = ACTIONS(1677), - [anon_sym_in] = ACTIONS(1677), - [anon_sym_out] = ACTIONS(1677), - [anon_sym_inout] = ACTIONS(1677), - [anon_sym_bycopy] = ACTIONS(1677), - [anon_sym_byref] = ACTIONS(1677), - [anon_sym_oneway] = ACTIONS(1677), - [anon_sym__Nullable] = ACTIONS(1677), - [anon_sym__Nonnull] = ACTIONS(1677), - [anon_sym__Nullable_result] = ACTIONS(1677), - [anon_sym__Null_unspecified] = ACTIONS(1677), - [anon_sym___autoreleasing] = ACTIONS(1677), - [anon_sym___nullable] = ACTIONS(1677), - [anon_sym___nonnull] = ACTIONS(1677), - [anon_sym___strong] = ACTIONS(1677), - [anon_sym___weak] = ACTIONS(1677), - [anon_sym___bridge] = ACTIONS(1677), - [anon_sym___bridge_transfer] = ACTIONS(1677), - [anon_sym___bridge_retained] = ACTIONS(1677), - [anon_sym___unsafe_unretained] = ACTIONS(1677), - [anon_sym___block] = ACTIONS(1677), - [anon_sym___kindof] = ACTIONS(1677), - [anon_sym___unused] = ACTIONS(1677), - [anon_sym__Complex] = ACTIONS(1677), - [anon_sym___complex] = ACTIONS(1677), - [anon_sym_IBOutlet] = ACTIONS(1677), - [anon_sym_IBInspectable] = ACTIONS(1677), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1677), - [anon_sym_signed] = ACTIONS(1677), - [anon_sym_unsigned] = ACTIONS(1677), - [anon_sym_long] = ACTIONS(1677), - [anon_sym_short] = ACTIONS(1677), - [sym_primitive_type] = ACTIONS(1677), - [anon_sym_enum] = ACTIONS(1677), - [anon_sym_NS_ENUM] = ACTIONS(1677), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1677), - [anon_sym_NS_OPTIONS] = ACTIONS(1677), - [anon_sym_struct] = ACTIONS(1677), - [anon_sym_union] = ACTIONS(1677), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(1677), - [anon_sym_switch] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1677), - [anon_sym_default] = ACTIONS(1677), - [anon_sym_while] = ACTIONS(1677), - [anon_sym_do] = ACTIONS(1677), - [anon_sym_for] = ACTIONS(1677), - [anon_sym_return] = ACTIONS(1677), - [anon_sym_break] = ACTIONS(1677), - [anon_sym_continue] = ACTIONS(1677), - [anon_sym_goto] = ACTIONS(1677), - [anon_sym_DASH_DASH] = ACTIONS(1679), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_sizeof] = ACTIONS(1677), - [sym_number_literal] = ACTIONS(1679), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1679), - [anon_sym_u_DQUOTE] = ACTIONS(1679), - [anon_sym_U_DQUOTE] = ACTIONS(1679), - [anon_sym_u8_DQUOTE] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1679), - [sym_true] = ACTIONS(1677), - [sym_false] = ACTIONS(1677), - [sym_null] = ACTIONS(1677), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1679), - [anon_sym_ATimport] = ACTIONS(1679), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1677), - [anon_sym_ATcompatibility_alias] = ACTIONS(1679), - [anon_sym_ATprotocol] = ACTIONS(1679), - [anon_sym_ATclass] = ACTIONS(1679), - [anon_sym_ATinterface] = ACTIONS(1679), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1677), - [sym_method_attribute_specifier] = ACTIONS(1677), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1677), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1677), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1677), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1677), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1677), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1677), - [anon_sym_NS_AVAILABLE] = ACTIONS(1677), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1677), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1677), - [anon_sym_API_AVAILABLE] = ACTIONS(1677), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1677), - [anon_sym_API_DEPRECATED] = ACTIONS(1677), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1677), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1677), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1677), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1677), - [anon_sym___deprecated_msg] = ACTIONS(1677), - [anon_sym___deprecated_enum_msg] = ACTIONS(1677), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1677), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1677), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1677), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1677), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1677), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1677), - [anon_sym_ATimplementation] = ACTIONS(1679), - [anon_sym_typeof] = ACTIONS(1677), - [anon_sym___typeof] = ACTIONS(1677), - [anon_sym___typeof__] = ACTIONS(1677), - [sym_self] = ACTIONS(1677), - [sym_super] = ACTIONS(1677), - [sym_nil] = ACTIONS(1677), - [sym_id] = ACTIONS(1677), - [sym_instancetype] = ACTIONS(1677), - [sym_Class] = ACTIONS(1677), - [sym_SEL] = ACTIONS(1677), - [sym_IMP] = ACTIONS(1677), - [sym_BOOL] = ACTIONS(1677), - [sym_auto] = ACTIONS(1677), - [anon_sym_ATautoreleasepool] = ACTIONS(1679), - [anon_sym_ATsynchronized] = ACTIONS(1679), - [anon_sym_ATtry] = ACTIONS(1679), - [anon_sym_ATcatch] = ACTIONS(1679), - [anon_sym_ATfinally] = ACTIONS(1679), - [anon_sym_ATthrow] = ACTIONS(1679), - [anon_sym_ATselector] = ACTIONS(1679), - [anon_sym_ATencode] = ACTIONS(1679), - [anon_sym_AT] = ACTIONS(1677), - [sym_YES] = ACTIONS(1677), - [sym_NO] = ACTIONS(1677), - [anon_sym___builtin_available] = ACTIONS(1677), - [anon_sym_ATavailable] = ACTIONS(1679), - [anon_sym_va_arg] = ACTIONS(1677), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [327] = { - [ts_builtin_sym_end] = ACTIONS(1323), - [sym_identifier] = ACTIONS(1321), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [anon_sym_RPAREN] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), - [anon_sym_LPAREN2] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_RBRACE] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), - [anon_sym_inout] = ACTIONS(1321), - [anon_sym_bycopy] = ACTIONS(1321), - [anon_sym_byref] = ACTIONS(1321), - [anon_sym_oneway] = ACTIONS(1321), - [anon_sym__Nullable] = ACTIONS(1321), - [anon_sym__Nonnull] = ACTIONS(1321), - [anon_sym__Nullable_result] = ACTIONS(1321), - [anon_sym__Null_unspecified] = ACTIONS(1321), - [anon_sym___autoreleasing] = ACTIONS(1321), - [anon_sym___nullable] = ACTIONS(1321), - [anon_sym___nonnull] = ACTIONS(1321), - [anon_sym___strong] = ACTIONS(1321), - [anon_sym___weak] = ACTIONS(1321), - [anon_sym___bridge] = ACTIONS(1321), - [anon_sym___bridge_transfer] = ACTIONS(1321), - [anon_sym___bridge_retained] = ACTIONS(1321), - [anon_sym___unsafe_unretained] = ACTIONS(1321), - [anon_sym___block] = ACTIONS(1321), - [anon_sym___kindof] = ACTIONS(1321), - [anon_sym___unused] = ACTIONS(1321), - [anon_sym__Complex] = ACTIONS(1321), - [anon_sym___complex] = ACTIONS(1321), - [anon_sym_IBOutlet] = ACTIONS(1321), - [anon_sym_IBInspectable] = ACTIONS(1321), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_NS_ENUM] = ACTIONS(1321), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1321), - [anon_sym_NS_OPTIONS] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_else] = ACTIONS(1321), - [anon_sym_switch] = ACTIONS(1321), - [anon_sym_case] = ACTIONS(1321), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_goto] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_sizeof] = ACTIONS(1321), - [sym_number_literal] = ACTIONS(1323), - [anon_sym_L_SQUOTE] = ACTIONS(1323), - [anon_sym_u_SQUOTE] = ACTIONS(1323), - [anon_sym_U_SQUOTE] = ACTIONS(1323), - [anon_sym_u8_SQUOTE] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_L_DQUOTE] = ACTIONS(1323), - [anon_sym_u_DQUOTE] = ACTIONS(1323), - [anon_sym_U_DQUOTE] = ACTIONS(1323), - [anon_sym_u8_DQUOTE] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [sym_true] = ACTIONS(1321), - [sym_false] = ACTIONS(1321), - [sym_null] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1323), - [anon_sym_ATimport] = ACTIONS(1323), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1321), - [anon_sym_ATcompatibility_alias] = ACTIONS(1323), - [anon_sym_ATprotocol] = ACTIONS(1323), - [anon_sym_ATclass] = ACTIONS(1323), - [anon_sym_ATinterface] = ACTIONS(1323), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1321), - [sym_method_attribute_specifier] = ACTIONS(1321), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1321), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE] = ACTIONS(1321), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_API_AVAILABLE] = ACTIONS(1321), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_API_DEPRECATED] = ACTIONS(1321), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1321), - [anon_sym___deprecated_msg] = ACTIONS(1321), - [anon_sym___deprecated_enum_msg] = ACTIONS(1321), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1321), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1321), - [anon_sym_ATimplementation] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1321), - [anon_sym___typeof] = ACTIONS(1321), - [anon_sym___typeof__] = ACTIONS(1321), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1321), - [sym_nil] = ACTIONS(1321), - [sym_id] = ACTIONS(1321), - [sym_instancetype] = ACTIONS(1321), - [sym_Class] = ACTIONS(1321), - [sym_SEL] = ACTIONS(1321), - [sym_IMP] = ACTIONS(1321), - [sym_BOOL] = ACTIONS(1321), - [sym_auto] = ACTIONS(1321), - [anon_sym_ATautoreleasepool] = ACTIONS(1323), - [anon_sym_ATsynchronized] = ACTIONS(1323), - [anon_sym_ATtry] = ACTIONS(1323), - [anon_sym_ATcatch] = ACTIONS(1323), - [anon_sym_ATfinally] = ACTIONS(1323), - [anon_sym_ATthrow] = ACTIONS(1323), - [anon_sym_ATselector] = ACTIONS(1323), - [anon_sym_ATencode] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(1321), - [sym_YES] = ACTIONS(1321), - [sym_NO] = ACTIONS(1321), - [anon_sym___builtin_available] = ACTIONS(1321), - [anon_sym_ATavailable] = ACTIONS(1323), - [anon_sym_va_arg] = ACTIONS(1321), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [328] = { - [ts_builtin_sym_end] = ACTIONS(1323), - [sym_identifier] = ACTIONS(1321), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [anon_sym_RPAREN] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), - [anon_sym_LPAREN2] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_RBRACE] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), - [anon_sym_inout] = ACTIONS(1321), - [anon_sym_bycopy] = ACTIONS(1321), - [anon_sym_byref] = ACTIONS(1321), - [anon_sym_oneway] = ACTIONS(1321), - [anon_sym__Nullable] = ACTIONS(1321), - [anon_sym__Nonnull] = ACTIONS(1321), - [anon_sym__Nullable_result] = ACTIONS(1321), - [anon_sym__Null_unspecified] = ACTIONS(1321), - [anon_sym___autoreleasing] = ACTIONS(1321), - [anon_sym___nullable] = ACTIONS(1321), - [anon_sym___nonnull] = ACTIONS(1321), - [anon_sym___strong] = ACTIONS(1321), - [anon_sym___weak] = ACTIONS(1321), - [anon_sym___bridge] = ACTIONS(1321), - [anon_sym___bridge_transfer] = ACTIONS(1321), - [anon_sym___bridge_retained] = ACTIONS(1321), - [anon_sym___unsafe_unretained] = ACTIONS(1321), - [anon_sym___block] = ACTIONS(1321), - [anon_sym___kindof] = ACTIONS(1321), - [anon_sym___unused] = ACTIONS(1321), - [anon_sym__Complex] = ACTIONS(1321), - [anon_sym___complex] = ACTIONS(1321), - [anon_sym_IBOutlet] = ACTIONS(1321), - [anon_sym_IBInspectable] = ACTIONS(1321), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_NS_ENUM] = ACTIONS(1321), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1321), - [anon_sym_NS_OPTIONS] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_else] = ACTIONS(1321), - [anon_sym_switch] = ACTIONS(1321), - [anon_sym_case] = ACTIONS(1321), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_goto] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_sizeof] = ACTIONS(1321), - [sym_number_literal] = ACTIONS(1323), - [anon_sym_L_SQUOTE] = ACTIONS(1323), - [anon_sym_u_SQUOTE] = ACTIONS(1323), - [anon_sym_U_SQUOTE] = ACTIONS(1323), - [anon_sym_u8_SQUOTE] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_L_DQUOTE] = ACTIONS(1323), - [anon_sym_u_DQUOTE] = ACTIONS(1323), - [anon_sym_U_DQUOTE] = ACTIONS(1323), - [anon_sym_u8_DQUOTE] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [sym_true] = ACTIONS(1321), - [sym_false] = ACTIONS(1321), - [sym_null] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1323), - [anon_sym_ATimport] = ACTIONS(1323), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1321), - [anon_sym_ATcompatibility_alias] = ACTIONS(1323), - [anon_sym_ATprotocol] = ACTIONS(1323), - [anon_sym_ATclass] = ACTIONS(1323), - [anon_sym_ATinterface] = ACTIONS(1323), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1321), - [sym_method_attribute_specifier] = ACTIONS(1321), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1321), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE] = ACTIONS(1321), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_API_AVAILABLE] = ACTIONS(1321), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_API_DEPRECATED] = ACTIONS(1321), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1321), - [anon_sym___deprecated_msg] = ACTIONS(1321), - [anon_sym___deprecated_enum_msg] = ACTIONS(1321), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1321), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1321), - [anon_sym_ATimplementation] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1321), - [anon_sym___typeof] = ACTIONS(1321), - [anon_sym___typeof__] = ACTIONS(1321), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1321), - [sym_nil] = ACTIONS(1321), - [sym_id] = ACTIONS(1321), - [sym_instancetype] = ACTIONS(1321), - [sym_Class] = ACTIONS(1321), - [sym_SEL] = ACTIONS(1321), - [sym_IMP] = ACTIONS(1321), - [sym_BOOL] = ACTIONS(1321), - [sym_auto] = ACTIONS(1321), - [anon_sym_ATautoreleasepool] = ACTIONS(1323), - [anon_sym_ATsynchronized] = ACTIONS(1323), - [anon_sym_ATtry] = ACTIONS(1323), - [anon_sym_ATcatch] = ACTIONS(1323), - [anon_sym_ATfinally] = ACTIONS(1323), - [anon_sym_ATthrow] = ACTIONS(1323), - [anon_sym_ATselector] = ACTIONS(1323), - [anon_sym_ATencode] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(1321), - [sym_YES] = ACTIONS(1321), - [sym_NO] = ACTIONS(1321), - [anon_sym___builtin_available] = ACTIONS(1321), - [anon_sym_ATavailable] = ACTIONS(1323), - [anon_sym_va_arg] = ACTIONS(1321), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [329] = { - [ts_builtin_sym_end] = ACTIONS(1327), - [sym_identifier] = ACTIONS(1325), - [aux_sym_preproc_include_token1] = ACTIONS(1327), - [aux_sym_preproc_def_token1] = ACTIONS(1327), - [anon_sym_RPAREN] = ACTIONS(1327), - [aux_sym_preproc_if_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), - [anon_sym_LPAREN2] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_typedef] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym___attribute] = ACTIONS(1325), - [anon_sym___attribute__] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1325), - [anon_sym___cdecl] = ACTIONS(1325), - [anon_sym___clrcall] = ACTIONS(1325), - [anon_sym___stdcall] = ACTIONS(1325), - [anon_sym___fastcall] = ACTIONS(1325), - [anon_sym___thiscall] = ACTIONS(1325), - [anon_sym___vectorcall] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_auto] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_inline] = ACTIONS(1325), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_volatile] = ACTIONS(1325), - [anon_sym_restrict] = ACTIONS(1325), - [anon_sym__Atomic] = ACTIONS(1325), - [anon_sym_in] = ACTIONS(1325), - [anon_sym_out] = ACTIONS(1325), - [anon_sym_inout] = ACTIONS(1325), - [anon_sym_bycopy] = ACTIONS(1325), - [anon_sym_byref] = ACTIONS(1325), - [anon_sym_oneway] = ACTIONS(1325), - [anon_sym__Nullable] = ACTIONS(1325), - [anon_sym__Nonnull] = ACTIONS(1325), - [anon_sym__Nullable_result] = ACTIONS(1325), - [anon_sym__Null_unspecified] = ACTIONS(1325), - [anon_sym___autoreleasing] = ACTIONS(1325), - [anon_sym___nullable] = ACTIONS(1325), - [anon_sym___nonnull] = ACTIONS(1325), - [anon_sym___strong] = ACTIONS(1325), - [anon_sym___weak] = ACTIONS(1325), - [anon_sym___bridge] = ACTIONS(1325), - [anon_sym___bridge_transfer] = ACTIONS(1325), - [anon_sym___bridge_retained] = ACTIONS(1325), - [anon_sym___unsafe_unretained] = ACTIONS(1325), - [anon_sym___block] = ACTIONS(1325), - [anon_sym___kindof] = ACTIONS(1325), - [anon_sym___unused] = ACTIONS(1325), - [anon_sym__Complex] = ACTIONS(1325), - [anon_sym___complex] = ACTIONS(1325), - [anon_sym_IBOutlet] = ACTIONS(1325), - [anon_sym_IBInspectable] = ACTIONS(1325), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1325), - [anon_sym_signed] = ACTIONS(1325), - [anon_sym_unsigned] = ACTIONS(1325), - [anon_sym_long] = ACTIONS(1325), - [anon_sym_short] = ACTIONS(1325), - [sym_primitive_type] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_NS_ENUM] = ACTIONS(1325), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1325), - [anon_sym_NS_OPTIONS] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_else] = ACTIONS(1325), - [anon_sym_switch] = ACTIONS(1325), - [anon_sym_case] = ACTIONS(1325), - [anon_sym_default] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_goto] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1327), - [anon_sym_sizeof] = ACTIONS(1325), - [sym_number_literal] = ACTIONS(1327), - [anon_sym_L_SQUOTE] = ACTIONS(1327), - [anon_sym_u_SQUOTE] = ACTIONS(1327), - [anon_sym_U_SQUOTE] = ACTIONS(1327), - [anon_sym_u8_SQUOTE] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_L_DQUOTE] = ACTIONS(1327), - [anon_sym_u_DQUOTE] = ACTIONS(1327), - [anon_sym_U_DQUOTE] = ACTIONS(1327), - [anon_sym_u8_DQUOTE] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [sym_true] = ACTIONS(1325), - [sym_false] = ACTIONS(1325), - [sym_null] = ACTIONS(1325), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1327), - [anon_sym_ATimport] = ACTIONS(1327), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1325), - [anon_sym_ATcompatibility_alias] = ACTIONS(1327), - [anon_sym_ATprotocol] = ACTIONS(1327), - [anon_sym_ATclass] = ACTIONS(1327), - [anon_sym_ATinterface] = ACTIONS(1327), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1325), - [sym_method_attribute_specifier] = ACTIONS(1325), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1325), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1325), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1325), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1325), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1325), - [anon_sym_NS_AVAILABLE] = ACTIONS(1325), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1325), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_API_AVAILABLE] = ACTIONS(1325), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_API_DEPRECATED] = ACTIONS(1325), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1325), - [anon_sym___deprecated_msg] = ACTIONS(1325), - [anon_sym___deprecated_enum_msg] = ACTIONS(1325), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1325), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1325), - [anon_sym_ATimplementation] = ACTIONS(1327), - [anon_sym_typeof] = ACTIONS(1325), - [anon_sym___typeof] = ACTIONS(1325), - [anon_sym___typeof__] = ACTIONS(1325), - [sym_self] = ACTIONS(1325), - [sym_super] = ACTIONS(1325), - [sym_nil] = ACTIONS(1325), - [sym_id] = ACTIONS(1325), - [sym_instancetype] = ACTIONS(1325), - [sym_Class] = ACTIONS(1325), - [sym_SEL] = ACTIONS(1325), - [sym_IMP] = ACTIONS(1325), - [sym_BOOL] = ACTIONS(1325), - [sym_auto] = ACTIONS(1325), - [anon_sym_ATautoreleasepool] = ACTIONS(1327), - [anon_sym_ATsynchronized] = ACTIONS(1327), - [anon_sym_ATtry] = ACTIONS(1327), - [anon_sym_ATcatch] = ACTIONS(1327), - [anon_sym_ATfinally] = ACTIONS(1327), - [anon_sym_ATthrow] = ACTIONS(1327), - [anon_sym_ATselector] = ACTIONS(1327), - [anon_sym_ATencode] = ACTIONS(1327), - [anon_sym_AT] = ACTIONS(1325), - [sym_YES] = ACTIONS(1325), - [sym_NO] = ACTIONS(1325), - [anon_sym___builtin_available] = ACTIONS(1325), - [anon_sym_ATavailable] = ACTIONS(1327), - [anon_sym_va_arg] = ACTIONS(1325), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [330] = { - [ts_builtin_sym_end] = ACTIONS(1323), - [sym_identifier] = ACTIONS(1321), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [anon_sym_RPAREN] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), - [anon_sym_LPAREN2] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_RBRACE] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), - [anon_sym_inout] = ACTIONS(1321), - [anon_sym_bycopy] = ACTIONS(1321), - [anon_sym_byref] = ACTIONS(1321), - [anon_sym_oneway] = ACTIONS(1321), - [anon_sym__Nullable] = ACTIONS(1321), - [anon_sym__Nonnull] = ACTIONS(1321), - [anon_sym__Nullable_result] = ACTIONS(1321), - [anon_sym__Null_unspecified] = ACTIONS(1321), - [anon_sym___autoreleasing] = ACTIONS(1321), - [anon_sym___nullable] = ACTIONS(1321), - [anon_sym___nonnull] = ACTIONS(1321), - [anon_sym___strong] = ACTIONS(1321), - [anon_sym___weak] = ACTIONS(1321), - [anon_sym___bridge] = ACTIONS(1321), - [anon_sym___bridge_transfer] = ACTIONS(1321), - [anon_sym___bridge_retained] = ACTIONS(1321), - [anon_sym___unsafe_unretained] = ACTIONS(1321), - [anon_sym___block] = ACTIONS(1321), - [anon_sym___kindof] = ACTIONS(1321), - [anon_sym___unused] = ACTIONS(1321), - [anon_sym__Complex] = ACTIONS(1321), - [anon_sym___complex] = ACTIONS(1321), - [anon_sym_IBOutlet] = ACTIONS(1321), - [anon_sym_IBInspectable] = ACTIONS(1321), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_NS_ENUM] = ACTIONS(1321), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1321), - [anon_sym_NS_OPTIONS] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_else] = ACTIONS(1321), - [anon_sym_switch] = ACTIONS(1321), - [anon_sym_case] = ACTIONS(1321), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_goto] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_sizeof] = ACTIONS(1321), - [sym_number_literal] = ACTIONS(1323), - [anon_sym_L_SQUOTE] = ACTIONS(1323), - [anon_sym_u_SQUOTE] = ACTIONS(1323), - [anon_sym_U_SQUOTE] = ACTIONS(1323), - [anon_sym_u8_SQUOTE] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_L_DQUOTE] = ACTIONS(1323), - [anon_sym_u_DQUOTE] = ACTIONS(1323), - [anon_sym_U_DQUOTE] = ACTIONS(1323), - [anon_sym_u8_DQUOTE] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [sym_true] = ACTIONS(1321), - [sym_false] = ACTIONS(1321), - [sym_null] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1323), - [anon_sym_ATimport] = ACTIONS(1323), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1321), - [anon_sym_ATcompatibility_alias] = ACTIONS(1323), - [anon_sym_ATprotocol] = ACTIONS(1323), - [anon_sym_ATclass] = ACTIONS(1323), - [anon_sym_ATinterface] = ACTIONS(1323), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1321), - [sym_method_attribute_specifier] = ACTIONS(1321), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1321), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE] = ACTIONS(1321), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_API_AVAILABLE] = ACTIONS(1321), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_API_DEPRECATED] = ACTIONS(1321), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1321), - [anon_sym___deprecated_msg] = ACTIONS(1321), - [anon_sym___deprecated_enum_msg] = ACTIONS(1321), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1321), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1321), - [anon_sym_ATimplementation] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1321), - [anon_sym___typeof] = ACTIONS(1321), - [anon_sym___typeof__] = ACTIONS(1321), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1321), - [sym_nil] = ACTIONS(1321), - [sym_id] = ACTIONS(1321), - [sym_instancetype] = ACTIONS(1321), - [sym_Class] = ACTIONS(1321), - [sym_SEL] = ACTIONS(1321), - [sym_IMP] = ACTIONS(1321), - [sym_BOOL] = ACTIONS(1321), - [sym_auto] = ACTIONS(1321), - [anon_sym_ATautoreleasepool] = ACTIONS(1323), - [anon_sym_ATsynchronized] = ACTIONS(1323), - [anon_sym_ATtry] = ACTIONS(1323), - [anon_sym_ATcatch] = ACTIONS(1323), - [anon_sym_ATfinally] = ACTIONS(1323), - [anon_sym_ATthrow] = ACTIONS(1323), - [anon_sym_ATselector] = ACTIONS(1323), - [anon_sym_ATencode] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(1321), - [sym_YES] = ACTIONS(1321), - [sym_NO] = ACTIONS(1321), - [anon_sym___builtin_available] = ACTIONS(1321), - [anon_sym_ATavailable] = ACTIONS(1323), - [anon_sym_va_arg] = ACTIONS(1321), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [331] = { - [ts_builtin_sym_end] = ACTIONS(1323), - [sym_identifier] = ACTIONS(1321), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [anon_sym_RPAREN] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), - [anon_sym_LPAREN2] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_RBRACE] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), - [anon_sym_inout] = ACTIONS(1321), - [anon_sym_bycopy] = ACTIONS(1321), - [anon_sym_byref] = ACTIONS(1321), - [anon_sym_oneway] = ACTIONS(1321), - [anon_sym__Nullable] = ACTIONS(1321), - [anon_sym__Nonnull] = ACTIONS(1321), - [anon_sym__Nullable_result] = ACTIONS(1321), - [anon_sym__Null_unspecified] = ACTIONS(1321), - [anon_sym___autoreleasing] = ACTIONS(1321), - [anon_sym___nullable] = ACTIONS(1321), - [anon_sym___nonnull] = ACTIONS(1321), - [anon_sym___strong] = ACTIONS(1321), - [anon_sym___weak] = ACTIONS(1321), - [anon_sym___bridge] = ACTIONS(1321), - [anon_sym___bridge_transfer] = ACTIONS(1321), - [anon_sym___bridge_retained] = ACTIONS(1321), - [anon_sym___unsafe_unretained] = ACTIONS(1321), - [anon_sym___block] = ACTIONS(1321), - [anon_sym___kindof] = ACTIONS(1321), - [anon_sym___unused] = ACTIONS(1321), - [anon_sym__Complex] = ACTIONS(1321), - [anon_sym___complex] = ACTIONS(1321), - [anon_sym_IBOutlet] = ACTIONS(1321), - [anon_sym_IBInspectable] = ACTIONS(1321), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_NS_ENUM] = ACTIONS(1321), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1321), - [anon_sym_NS_OPTIONS] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_else] = ACTIONS(1321), - [anon_sym_switch] = ACTIONS(1321), - [anon_sym_case] = ACTIONS(1321), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_goto] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_sizeof] = ACTIONS(1321), - [sym_number_literal] = ACTIONS(1323), - [anon_sym_L_SQUOTE] = ACTIONS(1323), - [anon_sym_u_SQUOTE] = ACTIONS(1323), - [anon_sym_U_SQUOTE] = ACTIONS(1323), - [anon_sym_u8_SQUOTE] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_L_DQUOTE] = ACTIONS(1323), - [anon_sym_u_DQUOTE] = ACTIONS(1323), - [anon_sym_U_DQUOTE] = ACTIONS(1323), - [anon_sym_u8_DQUOTE] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [sym_true] = ACTIONS(1321), - [sym_false] = ACTIONS(1321), - [sym_null] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1323), - [anon_sym_ATimport] = ACTIONS(1323), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1321), - [anon_sym_ATcompatibility_alias] = ACTIONS(1323), - [anon_sym_ATprotocol] = ACTIONS(1323), - [anon_sym_ATclass] = ACTIONS(1323), - [anon_sym_ATinterface] = ACTIONS(1323), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1321), - [sym_method_attribute_specifier] = ACTIONS(1321), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1321), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE] = ACTIONS(1321), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_API_AVAILABLE] = ACTIONS(1321), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_API_DEPRECATED] = ACTIONS(1321), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1321), - [anon_sym___deprecated_msg] = ACTIONS(1321), - [anon_sym___deprecated_enum_msg] = ACTIONS(1321), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1321), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1321), - [anon_sym_ATimplementation] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1321), - [anon_sym___typeof] = ACTIONS(1321), - [anon_sym___typeof__] = ACTIONS(1321), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1321), - [sym_nil] = ACTIONS(1321), - [sym_id] = ACTIONS(1321), - [sym_instancetype] = ACTIONS(1321), - [sym_Class] = ACTIONS(1321), - [sym_SEL] = ACTIONS(1321), - [sym_IMP] = ACTIONS(1321), - [sym_BOOL] = ACTIONS(1321), - [sym_auto] = ACTIONS(1321), - [anon_sym_ATautoreleasepool] = ACTIONS(1323), - [anon_sym_ATsynchronized] = ACTIONS(1323), - [anon_sym_ATtry] = ACTIONS(1323), - [anon_sym_ATcatch] = ACTIONS(1323), - [anon_sym_ATfinally] = ACTIONS(1323), - [anon_sym_ATthrow] = ACTIONS(1323), - [anon_sym_ATselector] = ACTIONS(1323), - [anon_sym_ATencode] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(1321), - [sym_YES] = ACTIONS(1321), - [sym_NO] = ACTIONS(1321), - [anon_sym___builtin_available] = ACTIONS(1321), - [anon_sym_ATavailable] = ACTIONS(1323), - [anon_sym_va_arg] = ACTIONS(1321), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [332] = { - [ts_builtin_sym_end] = ACTIONS(1327), - [sym_identifier] = ACTIONS(1325), - [aux_sym_preproc_include_token1] = ACTIONS(1327), - [aux_sym_preproc_def_token1] = ACTIONS(1327), - [anon_sym_RPAREN] = ACTIONS(1327), - [aux_sym_preproc_if_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), - [anon_sym_LPAREN2] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_typedef] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym___attribute] = ACTIONS(1325), - [anon_sym___attribute__] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1325), - [anon_sym___cdecl] = ACTIONS(1325), - [anon_sym___clrcall] = ACTIONS(1325), - [anon_sym___stdcall] = ACTIONS(1325), - [anon_sym___fastcall] = ACTIONS(1325), - [anon_sym___thiscall] = ACTIONS(1325), - [anon_sym___vectorcall] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_auto] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_inline] = ACTIONS(1325), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_volatile] = ACTIONS(1325), - [anon_sym_restrict] = ACTIONS(1325), - [anon_sym__Atomic] = ACTIONS(1325), - [anon_sym_in] = ACTIONS(1325), - [anon_sym_out] = ACTIONS(1325), - [anon_sym_inout] = ACTIONS(1325), - [anon_sym_bycopy] = ACTIONS(1325), - [anon_sym_byref] = ACTIONS(1325), - [anon_sym_oneway] = ACTIONS(1325), - [anon_sym__Nullable] = ACTIONS(1325), - [anon_sym__Nonnull] = ACTIONS(1325), - [anon_sym__Nullable_result] = ACTIONS(1325), - [anon_sym__Null_unspecified] = ACTIONS(1325), - [anon_sym___autoreleasing] = ACTIONS(1325), - [anon_sym___nullable] = ACTIONS(1325), - [anon_sym___nonnull] = ACTIONS(1325), - [anon_sym___strong] = ACTIONS(1325), - [anon_sym___weak] = ACTIONS(1325), - [anon_sym___bridge] = ACTIONS(1325), - [anon_sym___bridge_transfer] = ACTIONS(1325), - [anon_sym___bridge_retained] = ACTIONS(1325), - [anon_sym___unsafe_unretained] = ACTIONS(1325), - [anon_sym___block] = ACTIONS(1325), - [anon_sym___kindof] = ACTIONS(1325), - [anon_sym___unused] = ACTIONS(1325), - [anon_sym__Complex] = ACTIONS(1325), - [anon_sym___complex] = ACTIONS(1325), - [anon_sym_IBOutlet] = ACTIONS(1325), - [anon_sym_IBInspectable] = ACTIONS(1325), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1325), - [anon_sym_signed] = ACTIONS(1325), - [anon_sym_unsigned] = ACTIONS(1325), - [anon_sym_long] = ACTIONS(1325), - [anon_sym_short] = ACTIONS(1325), - [sym_primitive_type] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_NS_ENUM] = ACTIONS(1325), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1325), - [anon_sym_NS_OPTIONS] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_else] = ACTIONS(1325), - [anon_sym_switch] = ACTIONS(1325), - [anon_sym_case] = ACTIONS(1325), - [anon_sym_default] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_goto] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1327), - [anon_sym_sizeof] = ACTIONS(1325), - [sym_number_literal] = ACTIONS(1327), - [anon_sym_L_SQUOTE] = ACTIONS(1327), - [anon_sym_u_SQUOTE] = ACTIONS(1327), - [anon_sym_U_SQUOTE] = ACTIONS(1327), - [anon_sym_u8_SQUOTE] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_L_DQUOTE] = ACTIONS(1327), - [anon_sym_u_DQUOTE] = ACTIONS(1327), - [anon_sym_U_DQUOTE] = ACTIONS(1327), - [anon_sym_u8_DQUOTE] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [sym_true] = ACTIONS(1325), - [sym_false] = ACTIONS(1325), - [sym_null] = ACTIONS(1325), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1327), - [anon_sym_ATimport] = ACTIONS(1327), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1325), - [anon_sym_ATcompatibility_alias] = ACTIONS(1327), - [anon_sym_ATprotocol] = ACTIONS(1327), - [anon_sym_ATclass] = ACTIONS(1327), - [anon_sym_ATinterface] = ACTIONS(1327), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1325), - [sym_method_attribute_specifier] = ACTIONS(1325), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1325), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1325), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1325), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1325), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1325), - [anon_sym_NS_AVAILABLE] = ACTIONS(1325), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1325), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_API_AVAILABLE] = ACTIONS(1325), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_API_DEPRECATED] = ACTIONS(1325), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1325), - [anon_sym___deprecated_msg] = ACTIONS(1325), - [anon_sym___deprecated_enum_msg] = ACTIONS(1325), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1325), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1325), - [anon_sym_ATimplementation] = ACTIONS(1327), - [anon_sym_typeof] = ACTIONS(1325), - [anon_sym___typeof] = ACTIONS(1325), - [anon_sym___typeof__] = ACTIONS(1325), - [sym_self] = ACTIONS(1325), - [sym_super] = ACTIONS(1325), - [sym_nil] = ACTIONS(1325), - [sym_id] = ACTIONS(1325), - [sym_instancetype] = ACTIONS(1325), - [sym_Class] = ACTIONS(1325), - [sym_SEL] = ACTIONS(1325), - [sym_IMP] = ACTIONS(1325), - [sym_BOOL] = ACTIONS(1325), - [sym_auto] = ACTIONS(1325), - [anon_sym_ATautoreleasepool] = ACTIONS(1327), - [anon_sym_ATsynchronized] = ACTIONS(1327), - [anon_sym_ATtry] = ACTIONS(1327), - [anon_sym_ATcatch] = ACTIONS(1327), - [anon_sym_ATfinally] = ACTIONS(1327), - [anon_sym_ATthrow] = ACTIONS(1327), - [anon_sym_ATselector] = ACTIONS(1327), - [anon_sym_ATencode] = ACTIONS(1327), - [anon_sym_AT] = ACTIONS(1325), - [sym_YES] = ACTIONS(1325), - [sym_NO] = ACTIONS(1325), - [anon_sym___builtin_available] = ACTIONS(1325), - [anon_sym_ATavailable] = ACTIONS(1327), - [anon_sym_va_arg] = ACTIONS(1325), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [333] = { - [ts_builtin_sym_end] = ACTIONS(1331), - [sym_identifier] = ACTIONS(1329), - [aux_sym_preproc_include_token1] = ACTIONS(1331), - [aux_sym_preproc_def_token1] = ACTIONS(1331), - [anon_sym_RPAREN] = ACTIONS(1331), - [aux_sym_preproc_if_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), - [anon_sym_LPAREN2] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_typedef] = ACTIONS(1329), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym___attribute] = ACTIONS(1329), - [anon_sym___attribute__] = ACTIONS(1329), - [anon_sym___declspec] = ACTIONS(1329), - [anon_sym___cdecl] = ACTIONS(1329), - [anon_sym___clrcall] = ACTIONS(1329), - [anon_sym___stdcall] = ACTIONS(1329), - [anon_sym___fastcall] = ACTIONS(1329), - [anon_sym___thiscall] = ACTIONS(1329), - [anon_sym___vectorcall] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_RBRACE] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_static] = ACTIONS(1329), - [anon_sym_auto] = ACTIONS(1329), - [anon_sym_register] = ACTIONS(1329), - [anon_sym_inline] = ACTIONS(1329), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1329), - [anon_sym_const] = ACTIONS(1329), - [anon_sym_volatile] = ACTIONS(1329), - [anon_sym_restrict] = ACTIONS(1329), - [anon_sym__Atomic] = ACTIONS(1329), - [anon_sym_in] = ACTIONS(1329), - [anon_sym_out] = ACTIONS(1329), - [anon_sym_inout] = ACTIONS(1329), - [anon_sym_bycopy] = ACTIONS(1329), - [anon_sym_byref] = ACTIONS(1329), - [anon_sym_oneway] = ACTIONS(1329), - [anon_sym__Nullable] = ACTIONS(1329), - [anon_sym__Nonnull] = ACTIONS(1329), - [anon_sym__Nullable_result] = ACTIONS(1329), - [anon_sym__Null_unspecified] = ACTIONS(1329), - [anon_sym___autoreleasing] = ACTIONS(1329), - [anon_sym___nullable] = ACTIONS(1329), - [anon_sym___nonnull] = ACTIONS(1329), - [anon_sym___strong] = ACTIONS(1329), - [anon_sym___weak] = ACTIONS(1329), - [anon_sym___bridge] = ACTIONS(1329), - [anon_sym___bridge_transfer] = ACTIONS(1329), - [anon_sym___bridge_retained] = ACTIONS(1329), - [anon_sym___unsafe_unretained] = ACTIONS(1329), - [anon_sym___block] = ACTIONS(1329), - [anon_sym___kindof] = ACTIONS(1329), - [anon_sym___unused] = ACTIONS(1329), - [anon_sym__Complex] = ACTIONS(1329), - [anon_sym___complex] = ACTIONS(1329), - [anon_sym_IBOutlet] = ACTIONS(1329), - [anon_sym_IBInspectable] = ACTIONS(1329), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1329), - [anon_sym_signed] = ACTIONS(1329), - [anon_sym_unsigned] = ACTIONS(1329), - [anon_sym_long] = ACTIONS(1329), - [anon_sym_short] = ACTIONS(1329), - [sym_primitive_type] = ACTIONS(1329), - [anon_sym_enum] = ACTIONS(1329), - [anon_sym_NS_ENUM] = ACTIONS(1329), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1329), - [anon_sym_NS_OPTIONS] = ACTIONS(1329), - [anon_sym_struct] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1329), - [anon_sym_if] = ACTIONS(1329), - [anon_sym_else] = ACTIONS(1329), - [anon_sym_switch] = ACTIONS(1329), - [anon_sym_case] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1329), - [anon_sym_while] = ACTIONS(1329), - [anon_sym_do] = ACTIONS(1329), - [anon_sym_for] = ACTIONS(1329), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_break] = ACTIONS(1329), - [anon_sym_continue] = ACTIONS(1329), - [anon_sym_goto] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1331), - [anon_sym_PLUS_PLUS] = ACTIONS(1331), - [anon_sym_sizeof] = ACTIONS(1329), - [sym_number_literal] = ACTIONS(1331), - [anon_sym_L_SQUOTE] = ACTIONS(1331), - [anon_sym_u_SQUOTE] = ACTIONS(1331), - [anon_sym_U_SQUOTE] = ACTIONS(1331), - [anon_sym_u8_SQUOTE] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_L_DQUOTE] = ACTIONS(1331), - [anon_sym_u_DQUOTE] = ACTIONS(1331), - [anon_sym_U_DQUOTE] = ACTIONS(1331), - [anon_sym_u8_DQUOTE] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [sym_true] = ACTIONS(1329), - [sym_false] = ACTIONS(1329), - [sym_null] = ACTIONS(1329), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1331), - [anon_sym_ATimport] = ACTIONS(1331), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1329), - [anon_sym_ATcompatibility_alias] = ACTIONS(1331), - [anon_sym_ATprotocol] = ACTIONS(1331), - [anon_sym_ATclass] = ACTIONS(1331), - [anon_sym_ATinterface] = ACTIONS(1331), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1329), - [sym_method_attribute_specifier] = ACTIONS(1329), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1329), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1329), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1329), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1329), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1329), - [anon_sym_NS_AVAILABLE] = ACTIONS(1329), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1329), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_API_AVAILABLE] = ACTIONS(1329), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_API_DEPRECATED] = ACTIONS(1329), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1329), - [anon_sym___deprecated_msg] = ACTIONS(1329), - [anon_sym___deprecated_enum_msg] = ACTIONS(1329), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1329), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1329), - [anon_sym_ATimplementation] = ACTIONS(1331), - [anon_sym_typeof] = ACTIONS(1329), - [anon_sym___typeof] = ACTIONS(1329), - [anon_sym___typeof__] = ACTIONS(1329), - [sym_self] = ACTIONS(1329), - [sym_super] = ACTIONS(1329), - [sym_nil] = ACTIONS(1329), - [sym_id] = ACTIONS(1329), - [sym_instancetype] = ACTIONS(1329), - [sym_Class] = ACTIONS(1329), - [sym_SEL] = ACTIONS(1329), - [sym_IMP] = ACTIONS(1329), - [sym_BOOL] = ACTIONS(1329), - [sym_auto] = ACTIONS(1329), - [anon_sym_ATautoreleasepool] = ACTIONS(1331), - [anon_sym_ATsynchronized] = ACTIONS(1331), - [anon_sym_ATtry] = ACTIONS(1331), - [anon_sym_ATcatch] = ACTIONS(1331), - [anon_sym_ATfinally] = ACTIONS(1331), - [anon_sym_ATthrow] = ACTIONS(1331), - [anon_sym_ATselector] = ACTIONS(1331), - [anon_sym_ATencode] = ACTIONS(1331), - [anon_sym_AT] = ACTIONS(1329), - [sym_YES] = ACTIONS(1329), - [sym_NO] = ACTIONS(1329), - [anon_sym___builtin_available] = ACTIONS(1329), - [anon_sym_ATavailable] = ACTIONS(1331), - [anon_sym_va_arg] = ACTIONS(1329), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [334] = { - [ts_builtin_sym_end] = ACTIONS(1331), - [sym_identifier] = ACTIONS(1329), - [aux_sym_preproc_include_token1] = ACTIONS(1331), - [aux_sym_preproc_def_token1] = ACTIONS(1331), - [anon_sym_RPAREN] = ACTIONS(1331), - [aux_sym_preproc_if_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), - [anon_sym_LPAREN2] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_typedef] = ACTIONS(1329), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym___attribute] = ACTIONS(1329), - [anon_sym___attribute__] = ACTIONS(1329), - [anon_sym___declspec] = ACTIONS(1329), - [anon_sym___cdecl] = ACTIONS(1329), - [anon_sym___clrcall] = ACTIONS(1329), - [anon_sym___stdcall] = ACTIONS(1329), - [anon_sym___fastcall] = ACTIONS(1329), - [anon_sym___thiscall] = ACTIONS(1329), - [anon_sym___vectorcall] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_RBRACE] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_static] = ACTIONS(1329), - [anon_sym_auto] = ACTIONS(1329), - [anon_sym_register] = ACTIONS(1329), - [anon_sym_inline] = ACTIONS(1329), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1329), - [anon_sym_const] = ACTIONS(1329), - [anon_sym_volatile] = ACTIONS(1329), - [anon_sym_restrict] = ACTIONS(1329), - [anon_sym__Atomic] = ACTIONS(1329), - [anon_sym_in] = ACTIONS(1329), - [anon_sym_out] = ACTIONS(1329), - [anon_sym_inout] = ACTIONS(1329), - [anon_sym_bycopy] = ACTIONS(1329), - [anon_sym_byref] = ACTIONS(1329), - [anon_sym_oneway] = ACTIONS(1329), - [anon_sym__Nullable] = ACTIONS(1329), - [anon_sym__Nonnull] = ACTIONS(1329), - [anon_sym__Nullable_result] = ACTIONS(1329), - [anon_sym__Null_unspecified] = ACTIONS(1329), - [anon_sym___autoreleasing] = ACTIONS(1329), - [anon_sym___nullable] = ACTIONS(1329), - [anon_sym___nonnull] = ACTIONS(1329), - [anon_sym___strong] = ACTIONS(1329), - [anon_sym___weak] = ACTIONS(1329), - [anon_sym___bridge] = ACTIONS(1329), - [anon_sym___bridge_transfer] = ACTIONS(1329), - [anon_sym___bridge_retained] = ACTIONS(1329), - [anon_sym___unsafe_unretained] = ACTIONS(1329), - [anon_sym___block] = ACTIONS(1329), - [anon_sym___kindof] = ACTIONS(1329), - [anon_sym___unused] = ACTIONS(1329), - [anon_sym__Complex] = ACTIONS(1329), - [anon_sym___complex] = ACTIONS(1329), - [anon_sym_IBOutlet] = ACTIONS(1329), - [anon_sym_IBInspectable] = ACTIONS(1329), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1329), - [anon_sym_signed] = ACTIONS(1329), - [anon_sym_unsigned] = ACTIONS(1329), - [anon_sym_long] = ACTIONS(1329), - [anon_sym_short] = ACTIONS(1329), - [sym_primitive_type] = ACTIONS(1329), - [anon_sym_enum] = ACTIONS(1329), - [anon_sym_NS_ENUM] = ACTIONS(1329), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1329), - [anon_sym_NS_OPTIONS] = ACTIONS(1329), - [anon_sym_struct] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1329), - [anon_sym_if] = ACTIONS(1329), - [anon_sym_else] = ACTIONS(1329), - [anon_sym_switch] = ACTIONS(1329), - [anon_sym_case] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1329), - [anon_sym_while] = ACTIONS(1329), - [anon_sym_do] = ACTIONS(1329), - [anon_sym_for] = ACTIONS(1329), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_break] = ACTIONS(1329), - [anon_sym_continue] = ACTIONS(1329), - [anon_sym_goto] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1331), - [anon_sym_PLUS_PLUS] = ACTIONS(1331), - [anon_sym_sizeof] = ACTIONS(1329), - [sym_number_literal] = ACTIONS(1331), - [anon_sym_L_SQUOTE] = ACTIONS(1331), - [anon_sym_u_SQUOTE] = ACTIONS(1331), - [anon_sym_U_SQUOTE] = ACTIONS(1331), - [anon_sym_u8_SQUOTE] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_L_DQUOTE] = ACTIONS(1331), - [anon_sym_u_DQUOTE] = ACTIONS(1331), - [anon_sym_U_DQUOTE] = ACTIONS(1331), - [anon_sym_u8_DQUOTE] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [sym_true] = ACTIONS(1329), - [sym_false] = ACTIONS(1329), - [sym_null] = ACTIONS(1329), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1331), - [anon_sym_ATimport] = ACTIONS(1331), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1329), - [anon_sym_ATcompatibility_alias] = ACTIONS(1331), - [anon_sym_ATprotocol] = ACTIONS(1331), - [anon_sym_ATclass] = ACTIONS(1331), - [anon_sym_ATinterface] = ACTIONS(1331), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1329), - [sym_method_attribute_specifier] = ACTIONS(1329), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1329), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1329), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1329), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1329), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1329), - [anon_sym_NS_AVAILABLE] = ACTIONS(1329), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1329), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_API_AVAILABLE] = ACTIONS(1329), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_API_DEPRECATED] = ACTIONS(1329), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1329), - [anon_sym___deprecated_msg] = ACTIONS(1329), - [anon_sym___deprecated_enum_msg] = ACTIONS(1329), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1329), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1329), - [anon_sym_ATimplementation] = ACTIONS(1331), - [anon_sym_typeof] = ACTIONS(1329), - [anon_sym___typeof] = ACTIONS(1329), - [anon_sym___typeof__] = ACTIONS(1329), - [sym_self] = ACTIONS(1329), - [sym_super] = ACTIONS(1329), - [sym_nil] = ACTIONS(1329), - [sym_id] = ACTIONS(1329), - [sym_instancetype] = ACTIONS(1329), - [sym_Class] = ACTIONS(1329), - [sym_SEL] = ACTIONS(1329), - [sym_IMP] = ACTIONS(1329), - [sym_BOOL] = ACTIONS(1329), - [sym_auto] = ACTIONS(1329), - [anon_sym_ATautoreleasepool] = ACTIONS(1331), - [anon_sym_ATsynchronized] = ACTIONS(1331), - [anon_sym_ATtry] = ACTIONS(1331), - [anon_sym_ATcatch] = ACTIONS(1331), - [anon_sym_ATfinally] = ACTIONS(1331), - [anon_sym_ATthrow] = ACTIONS(1331), - [anon_sym_ATselector] = ACTIONS(1331), - [anon_sym_ATencode] = ACTIONS(1331), - [anon_sym_AT] = ACTIONS(1329), - [sym_YES] = ACTIONS(1329), - [sym_NO] = ACTIONS(1329), - [anon_sym___builtin_available] = ACTIONS(1329), - [anon_sym_ATavailable] = ACTIONS(1331), - [anon_sym_va_arg] = ACTIONS(1329), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [335] = { [ts_builtin_sym_end] = ACTIONS(1655), [sym_identifier] = ACTIONS(1653), [aux_sym_preproc_include_token1] = ACTIONS(1655), @@ -84794,9 +74734,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1653), [sym_primitive_type] = ACTIONS(1653), [anon_sym_enum] = ACTIONS(1653), - [anon_sym_NS_ENUM] = ACTIONS(1653), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), - [anon_sym_NS_OPTIONS] = ACTIONS(1653), [anon_sym_struct] = ACTIONS(1653), [anon_sym_union] = ACTIONS(1653), [anon_sym_if] = ACTIONS(1653), @@ -84863,6 +74800,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1653), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1653), [anon_sym_ATimplementation] = ACTIONS(1655), + [anon_sym_NS_ENUM] = ACTIONS(1653), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), + [anon_sym_NS_OPTIONS] = ACTIONS(1653), [anon_sym_typeof] = ACTIONS(1653), [anon_sym___typeof] = ACTIONS(1653), [anon_sym___typeof__] = ACTIONS(1653), @@ -84897,176 +74837,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [336] = { - [ts_builtin_sym_end] = ACTIONS(1335), - [sym_identifier] = ACTIONS(1333), - [aux_sym_preproc_include_token1] = ACTIONS(1335), - [aux_sym_preproc_def_token1] = ACTIONS(1335), - [anon_sym_RPAREN] = ACTIONS(1335), - [aux_sym_preproc_if_token1] = ACTIONS(1333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1333), - [anon_sym_LPAREN2] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1333), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_typedef] = ACTIONS(1333), - [anon_sym_extern] = ACTIONS(1333), - [anon_sym___attribute] = ACTIONS(1333), - [anon_sym___attribute__] = ACTIONS(1333), - [anon_sym___declspec] = ACTIONS(1333), - [anon_sym___cdecl] = ACTIONS(1333), - [anon_sym___clrcall] = ACTIONS(1333), - [anon_sym___stdcall] = ACTIONS(1333), - [anon_sym___fastcall] = ACTIONS(1333), - [anon_sym___thiscall] = ACTIONS(1333), - [anon_sym___vectorcall] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_static] = ACTIONS(1333), - [anon_sym_auto] = ACTIONS(1333), - [anon_sym_register] = ACTIONS(1333), - [anon_sym_inline] = ACTIONS(1333), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1333), - [anon_sym_const] = ACTIONS(1333), - [anon_sym_volatile] = ACTIONS(1333), - [anon_sym_restrict] = ACTIONS(1333), - [anon_sym__Atomic] = ACTIONS(1333), - [anon_sym_in] = ACTIONS(1333), - [anon_sym_out] = ACTIONS(1333), - [anon_sym_inout] = ACTIONS(1333), - [anon_sym_bycopy] = ACTIONS(1333), - [anon_sym_byref] = ACTIONS(1333), - [anon_sym_oneway] = ACTIONS(1333), - [anon_sym__Nullable] = ACTIONS(1333), - [anon_sym__Nonnull] = ACTIONS(1333), - [anon_sym__Nullable_result] = ACTIONS(1333), - [anon_sym__Null_unspecified] = ACTIONS(1333), - [anon_sym___autoreleasing] = ACTIONS(1333), - [anon_sym___nullable] = ACTIONS(1333), - [anon_sym___nonnull] = ACTIONS(1333), - [anon_sym___strong] = ACTIONS(1333), - [anon_sym___weak] = ACTIONS(1333), - [anon_sym___bridge] = ACTIONS(1333), - [anon_sym___bridge_transfer] = ACTIONS(1333), - [anon_sym___bridge_retained] = ACTIONS(1333), - [anon_sym___unsafe_unretained] = ACTIONS(1333), - [anon_sym___block] = ACTIONS(1333), - [anon_sym___kindof] = ACTIONS(1333), - [anon_sym___unused] = ACTIONS(1333), - [anon_sym__Complex] = ACTIONS(1333), - [anon_sym___complex] = ACTIONS(1333), - [anon_sym_IBOutlet] = ACTIONS(1333), - [anon_sym_IBInspectable] = ACTIONS(1333), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1333), - [anon_sym_signed] = ACTIONS(1333), - [anon_sym_unsigned] = ACTIONS(1333), - [anon_sym_long] = ACTIONS(1333), - [anon_sym_short] = ACTIONS(1333), - [sym_primitive_type] = ACTIONS(1333), - [anon_sym_enum] = ACTIONS(1333), - [anon_sym_NS_ENUM] = ACTIONS(1333), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1333), - [anon_sym_NS_OPTIONS] = ACTIONS(1333), - [anon_sym_struct] = ACTIONS(1333), - [anon_sym_union] = ACTIONS(1333), - [anon_sym_if] = ACTIONS(1333), - [anon_sym_else] = ACTIONS(1333), - [anon_sym_switch] = ACTIONS(1333), - [anon_sym_case] = ACTIONS(1333), - [anon_sym_default] = ACTIONS(1333), - [anon_sym_while] = ACTIONS(1333), - [anon_sym_do] = ACTIONS(1333), - [anon_sym_for] = ACTIONS(1333), - [anon_sym_return] = ACTIONS(1333), - [anon_sym_break] = ACTIONS(1333), - [anon_sym_continue] = ACTIONS(1333), - [anon_sym_goto] = ACTIONS(1333), - [anon_sym_DASH_DASH] = ACTIONS(1335), - [anon_sym_PLUS_PLUS] = ACTIONS(1335), - [anon_sym_sizeof] = ACTIONS(1333), - [sym_number_literal] = ACTIONS(1335), - [anon_sym_L_SQUOTE] = ACTIONS(1335), - [anon_sym_u_SQUOTE] = ACTIONS(1335), - [anon_sym_U_SQUOTE] = ACTIONS(1335), - [anon_sym_u8_SQUOTE] = ACTIONS(1335), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_L_DQUOTE] = ACTIONS(1335), - [anon_sym_u_DQUOTE] = ACTIONS(1335), - [anon_sym_U_DQUOTE] = ACTIONS(1335), - [anon_sym_u8_DQUOTE] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [sym_true] = ACTIONS(1333), - [sym_false] = ACTIONS(1333), - [sym_null] = ACTIONS(1333), + [279] = { + [sym_identifier] = ACTIONS(1653), + [aux_sym_preproc_include_token1] = ACTIONS(1655), + [aux_sym_preproc_def_token1] = ACTIONS(1655), + [aux_sym_preproc_if_token1] = ACTIONS(1653), + [aux_sym_preproc_if_token2] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1653), + [aux_sym_preproc_else_token1] = ACTIONS(1653), + [aux_sym_preproc_elif_token1] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_TILDE] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_typedef] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym___attribute] = ACTIONS(1653), + [anon_sym___attribute__] = ACTIONS(1653), + [anon_sym___declspec] = ACTIONS(1653), + [anon_sym___cdecl] = ACTIONS(1653), + [anon_sym___clrcall] = ACTIONS(1653), + [anon_sym___stdcall] = ACTIONS(1653), + [anon_sym___fastcall] = ACTIONS(1653), + [anon_sym___thiscall] = ACTIONS(1653), + [anon_sym___vectorcall] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_static] = ACTIONS(1653), + [anon_sym_auto] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_inline] = ACTIONS(1653), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_volatile] = ACTIONS(1653), + [anon_sym_restrict] = ACTIONS(1653), + [anon_sym__Atomic] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [anon_sym_out] = ACTIONS(1653), + [anon_sym_inout] = ACTIONS(1653), + [anon_sym_bycopy] = ACTIONS(1653), + [anon_sym_byref] = ACTIONS(1653), + [anon_sym_oneway] = ACTIONS(1653), + [anon_sym__Nullable] = ACTIONS(1653), + [anon_sym__Nonnull] = ACTIONS(1653), + [anon_sym__Nullable_result] = ACTIONS(1653), + [anon_sym__Null_unspecified] = ACTIONS(1653), + [anon_sym___autoreleasing] = ACTIONS(1653), + [anon_sym___nullable] = ACTIONS(1653), + [anon_sym___nonnull] = ACTIONS(1653), + [anon_sym___strong] = ACTIONS(1653), + [anon_sym___weak] = ACTIONS(1653), + [anon_sym___bridge] = ACTIONS(1653), + [anon_sym___bridge_transfer] = ACTIONS(1653), + [anon_sym___bridge_retained] = ACTIONS(1653), + [anon_sym___unsafe_unretained] = ACTIONS(1653), + [anon_sym___block] = ACTIONS(1653), + [anon_sym___kindof] = ACTIONS(1653), + [anon_sym___unused] = ACTIONS(1653), + [anon_sym__Complex] = ACTIONS(1653), + [anon_sym___complex] = ACTIONS(1653), + [anon_sym_IBOutlet] = ACTIONS(1653), + [anon_sym_IBInspectable] = ACTIONS(1653), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1653), + [anon_sym_signed] = ACTIONS(1653), + [anon_sym_unsigned] = ACTIONS(1653), + [anon_sym_long] = ACTIONS(1653), + [anon_sym_short] = ACTIONS(1653), + [sym_primitive_type] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_switch] = ACTIONS(1653), + [anon_sym_case] = ACTIONS(1653), + [anon_sym_default] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_goto] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_sizeof] = ACTIONS(1653), + [sym_number_literal] = ACTIONS(1655), + [anon_sym_L_SQUOTE] = ACTIONS(1655), + [anon_sym_u_SQUOTE] = ACTIONS(1655), + [anon_sym_U_SQUOTE] = ACTIONS(1655), + [anon_sym_u8_SQUOTE] = ACTIONS(1655), + [anon_sym_SQUOTE] = ACTIONS(1655), + [anon_sym_L_DQUOTE] = ACTIONS(1655), + [anon_sym_u_DQUOTE] = ACTIONS(1655), + [anon_sym_U_DQUOTE] = ACTIONS(1655), + [anon_sym_u8_DQUOTE] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym_true] = ACTIONS(1653), + [sym_false] = ACTIONS(1653), + [sym_null] = ACTIONS(1653), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1335), - [anon_sym_ATimport] = ACTIONS(1335), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1333), - [anon_sym_ATcompatibility_alias] = ACTIONS(1335), - [anon_sym_ATprotocol] = ACTIONS(1335), - [anon_sym_ATclass] = ACTIONS(1335), - [anon_sym_ATinterface] = ACTIONS(1335), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1333), - [sym_method_attribute_specifier] = ACTIONS(1333), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1333), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1333), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1333), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1333), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1333), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1333), - [anon_sym_NS_AVAILABLE] = ACTIONS(1333), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1333), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1333), - [anon_sym_API_AVAILABLE] = ACTIONS(1333), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1333), - [anon_sym_API_DEPRECATED] = ACTIONS(1333), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1333), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1333), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1333), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1333), - [anon_sym___deprecated_msg] = ACTIONS(1333), - [anon_sym___deprecated_enum_msg] = ACTIONS(1333), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1333), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1333), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1333), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1333), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1333), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1333), - [anon_sym_ATimplementation] = ACTIONS(1335), - [anon_sym_typeof] = ACTIONS(1333), - [anon_sym___typeof] = ACTIONS(1333), - [anon_sym___typeof__] = ACTIONS(1333), - [sym_self] = ACTIONS(1333), - [sym_super] = ACTIONS(1333), - [sym_nil] = ACTIONS(1333), - [sym_id] = ACTIONS(1333), - [sym_instancetype] = ACTIONS(1333), - [sym_Class] = ACTIONS(1333), - [sym_SEL] = ACTIONS(1333), - [sym_IMP] = ACTIONS(1333), - [sym_BOOL] = ACTIONS(1333), - [sym_auto] = ACTIONS(1333), - [anon_sym_ATautoreleasepool] = ACTIONS(1335), - [anon_sym_ATsynchronized] = ACTIONS(1335), - [anon_sym_ATtry] = ACTIONS(1335), - [anon_sym_ATcatch] = ACTIONS(1335), - [anon_sym_ATfinally] = ACTIONS(1335), - [anon_sym_ATthrow] = ACTIONS(1335), - [anon_sym_ATselector] = ACTIONS(1335), - [anon_sym_ATencode] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1333), - [sym_YES] = ACTIONS(1333), - [sym_NO] = ACTIONS(1333), - [anon_sym___builtin_available] = ACTIONS(1333), - [anon_sym_ATavailable] = ACTIONS(1335), - [anon_sym_va_arg] = ACTIONS(1333), + [anon_sym_POUNDimport] = ACTIONS(1655), + [anon_sym_ATimport] = ACTIONS(1655), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1653), + [anon_sym_ATcompatibility_alias] = ACTIONS(1655), + [anon_sym_ATprotocol] = ACTIONS(1655), + [anon_sym_ATclass] = ACTIONS(1655), + [anon_sym_ATinterface] = ACTIONS(1655), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1653), + [sym_method_attribute_specifier] = ACTIONS(1653), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1653), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE] = ACTIONS(1653), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_API_AVAILABLE] = ACTIONS(1653), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_API_DEPRECATED] = ACTIONS(1653), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1653), + [anon_sym___deprecated_msg] = ACTIONS(1653), + [anon_sym___deprecated_enum_msg] = ACTIONS(1653), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1653), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1653), + [anon_sym_ATimplementation] = ACTIONS(1655), + [anon_sym_NS_ENUM] = ACTIONS(1653), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), + [anon_sym_NS_OPTIONS] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1653), + [anon_sym___typeof] = ACTIONS(1653), + [anon_sym___typeof__] = ACTIONS(1653), + [sym_self] = ACTIONS(1653), + [sym_super] = ACTIONS(1653), + [sym_nil] = ACTIONS(1653), + [sym_id] = ACTIONS(1653), + [sym_instancetype] = ACTIONS(1653), + [sym_Class] = ACTIONS(1653), + [sym_SEL] = ACTIONS(1653), + [sym_IMP] = ACTIONS(1653), + [sym_BOOL] = ACTIONS(1653), + [sym_auto] = ACTIONS(1653), + [anon_sym_ATautoreleasepool] = ACTIONS(1655), + [anon_sym_ATsynchronized] = ACTIONS(1655), + [anon_sym_ATtry] = ACTIONS(1655), + [anon_sym_ATcatch] = ACTIONS(1655), + [anon_sym_ATfinally] = ACTIONS(1655), + [anon_sym_ATthrow] = ACTIONS(1655), + [anon_sym_ATselector] = ACTIONS(1655), + [anon_sym_ATencode] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [sym_YES] = ACTIONS(1653), + [sym_NO] = ACTIONS(1653), + [anon_sym___builtin_available] = ACTIONS(1653), + [anon_sym_ATavailable] = ACTIONS(1655), + [anon_sym_va_arg] = ACTIONS(1653), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [280] = { + [ts_builtin_sym_end] = ACTIONS(1655), + [sym_identifier] = ACTIONS(1653), + [aux_sym_preproc_include_token1] = ACTIONS(1655), + [aux_sym_preproc_def_token1] = ACTIONS(1655), + [anon_sym_RPAREN] = ACTIONS(1655), + [aux_sym_preproc_if_token1] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_TILDE] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_typedef] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym___attribute] = ACTIONS(1653), + [anon_sym___attribute__] = ACTIONS(1653), + [anon_sym___declspec] = ACTIONS(1653), + [anon_sym___cdecl] = ACTIONS(1653), + [anon_sym___clrcall] = ACTIONS(1653), + [anon_sym___stdcall] = ACTIONS(1653), + [anon_sym___fastcall] = ACTIONS(1653), + [anon_sym___thiscall] = ACTIONS(1653), + [anon_sym___vectorcall] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_static] = ACTIONS(1653), + [anon_sym_auto] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_inline] = ACTIONS(1653), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_volatile] = ACTIONS(1653), + [anon_sym_restrict] = ACTIONS(1653), + [anon_sym__Atomic] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [anon_sym_out] = ACTIONS(1653), + [anon_sym_inout] = ACTIONS(1653), + [anon_sym_bycopy] = ACTIONS(1653), + [anon_sym_byref] = ACTIONS(1653), + [anon_sym_oneway] = ACTIONS(1653), + [anon_sym__Nullable] = ACTIONS(1653), + [anon_sym__Nonnull] = ACTIONS(1653), + [anon_sym__Nullable_result] = ACTIONS(1653), + [anon_sym__Null_unspecified] = ACTIONS(1653), + [anon_sym___autoreleasing] = ACTIONS(1653), + [anon_sym___nullable] = ACTIONS(1653), + [anon_sym___nonnull] = ACTIONS(1653), + [anon_sym___strong] = ACTIONS(1653), + [anon_sym___weak] = ACTIONS(1653), + [anon_sym___bridge] = ACTIONS(1653), + [anon_sym___bridge_transfer] = ACTIONS(1653), + [anon_sym___bridge_retained] = ACTIONS(1653), + [anon_sym___unsafe_unretained] = ACTIONS(1653), + [anon_sym___block] = ACTIONS(1653), + [anon_sym___kindof] = ACTIONS(1653), + [anon_sym___unused] = ACTIONS(1653), + [anon_sym__Complex] = ACTIONS(1653), + [anon_sym___complex] = ACTIONS(1653), + [anon_sym_IBOutlet] = ACTIONS(1653), + [anon_sym_IBInspectable] = ACTIONS(1653), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1653), + [anon_sym_signed] = ACTIONS(1653), + [anon_sym_unsigned] = ACTIONS(1653), + [anon_sym_long] = ACTIONS(1653), + [anon_sym_short] = ACTIONS(1653), + [sym_primitive_type] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_switch] = ACTIONS(1653), + [anon_sym_case] = ACTIONS(1653), + [anon_sym_default] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_goto] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_sizeof] = ACTIONS(1653), + [sym_number_literal] = ACTIONS(1655), + [anon_sym_L_SQUOTE] = ACTIONS(1655), + [anon_sym_u_SQUOTE] = ACTIONS(1655), + [anon_sym_U_SQUOTE] = ACTIONS(1655), + [anon_sym_u8_SQUOTE] = ACTIONS(1655), + [anon_sym_SQUOTE] = ACTIONS(1655), + [anon_sym_L_DQUOTE] = ACTIONS(1655), + [anon_sym_u_DQUOTE] = ACTIONS(1655), + [anon_sym_U_DQUOTE] = ACTIONS(1655), + [anon_sym_u8_DQUOTE] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym_true] = ACTIONS(1653), + [sym_false] = ACTIONS(1653), + [sym_null] = ACTIONS(1653), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1655), + [anon_sym_ATimport] = ACTIONS(1655), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1653), + [anon_sym_ATcompatibility_alias] = ACTIONS(1655), + [anon_sym_ATprotocol] = ACTIONS(1655), + [anon_sym_ATclass] = ACTIONS(1655), + [anon_sym_ATinterface] = ACTIONS(1655), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1653), + [sym_method_attribute_specifier] = ACTIONS(1653), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1653), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE] = ACTIONS(1653), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_API_AVAILABLE] = ACTIONS(1653), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_API_DEPRECATED] = ACTIONS(1653), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1653), + [anon_sym___deprecated_msg] = ACTIONS(1653), + [anon_sym___deprecated_enum_msg] = ACTIONS(1653), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1653), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1653), + [anon_sym_ATimplementation] = ACTIONS(1655), + [anon_sym_NS_ENUM] = ACTIONS(1653), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), + [anon_sym_NS_OPTIONS] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1653), + [anon_sym___typeof] = ACTIONS(1653), + [anon_sym___typeof__] = ACTIONS(1653), + [sym_self] = ACTIONS(1653), + [sym_super] = ACTIONS(1653), + [sym_nil] = ACTIONS(1653), + [sym_id] = ACTIONS(1653), + [sym_instancetype] = ACTIONS(1653), + [sym_Class] = ACTIONS(1653), + [sym_SEL] = ACTIONS(1653), + [sym_IMP] = ACTIONS(1653), + [sym_BOOL] = ACTIONS(1653), + [sym_auto] = ACTIONS(1653), + [anon_sym_ATautoreleasepool] = ACTIONS(1655), + [anon_sym_ATsynchronized] = ACTIONS(1655), + [anon_sym_ATtry] = ACTIONS(1655), + [anon_sym_ATcatch] = ACTIONS(1655), + [anon_sym_ATfinally] = ACTIONS(1655), + [anon_sym_ATthrow] = ACTIONS(1655), + [anon_sym_ATselector] = ACTIONS(1655), + [anon_sym_ATencode] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [sym_YES] = ACTIONS(1653), + [sym_NO] = ACTIONS(1653), + [anon_sym___builtin_available] = ACTIONS(1653), + [anon_sym_ATavailable] = ACTIONS(1655), + [anon_sym_va_arg] = ACTIONS(1653), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -85074,2662 +75191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [337] = { - [ts_builtin_sym_end] = ACTIONS(1339), - [sym_identifier] = ACTIONS(1337), - [aux_sym_preproc_include_token1] = ACTIONS(1339), - [aux_sym_preproc_def_token1] = ACTIONS(1339), - [anon_sym_RPAREN] = ACTIONS(1339), - [aux_sym_preproc_if_token1] = ACTIONS(1337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1337), - [anon_sym_LPAREN2] = ACTIONS(1339), - [anon_sym_BANG] = ACTIONS(1339), - [anon_sym_TILDE] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1339), - [anon_sym_CARET] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1339), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_typedef] = ACTIONS(1337), - [anon_sym_extern] = ACTIONS(1337), - [anon_sym___attribute] = ACTIONS(1337), - [anon_sym___attribute__] = ACTIONS(1337), - [anon_sym___declspec] = ACTIONS(1337), - [anon_sym___cdecl] = ACTIONS(1337), - [anon_sym___clrcall] = ACTIONS(1337), - [anon_sym___stdcall] = ACTIONS(1337), - [anon_sym___fastcall] = ACTIONS(1337), - [anon_sym___thiscall] = ACTIONS(1337), - [anon_sym___vectorcall] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_RBRACE] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1339), - [anon_sym_static] = ACTIONS(1337), - [anon_sym_auto] = ACTIONS(1337), - [anon_sym_register] = ACTIONS(1337), - [anon_sym_inline] = ACTIONS(1337), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_volatile] = ACTIONS(1337), - [anon_sym_restrict] = ACTIONS(1337), - [anon_sym__Atomic] = ACTIONS(1337), - [anon_sym_in] = ACTIONS(1337), - [anon_sym_out] = ACTIONS(1337), - [anon_sym_inout] = ACTIONS(1337), - [anon_sym_bycopy] = ACTIONS(1337), - [anon_sym_byref] = ACTIONS(1337), - [anon_sym_oneway] = ACTIONS(1337), - [anon_sym__Nullable] = ACTIONS(1337), - [anon_sym__Nonnull] = ACTIONS(1337), - [anon_sym__Nullable_result] = ACTIONS(1337), - [anon_sym__Null_unspecified] = ACTIONS(1337), - [anon_sym___autoreleasing] = ACTIONS(1337), - [anon_sym___nullable] = ACTIONS(1337), - [anon_sym___nonnull] = ACTIONS(1337), - [anon_sym___strong] = ACTIONS(1337), - [anon_sym___weak] = ACTIONS(1337), - [anon_sym___bridge] = ACTIONS(1337), - [anon_sym___bridge_transfer] = ACTIONS(1337), - [anon_sym___bridge_retained] = ACTIONS(1337), - [anon_sym___unsafe_unretained] = ACTIONS(1337), - [anon_sym___block] = ACTIONS(1337), - [anon_sym___kindof] = ACTIONS(1337), - [anon_sym___unused] = ACTIONS(1337), - [anon_sym__Complex] = ACTIONS(1337), - [anon_sym___complex] = ACTIONS(1337), - [anon_sym_IBOutlet] = ACTIONS(1337), - [anon_sym_IBInspectable] = ACTIONS(1337), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1337), - [anon_sym_signed] = ACTIONS(1337), - [anon_sym_unsigned] = ACTIONS(1337), - [anon_sym_long] = ACTIONS(1337), - [anon_sym_short] = ACTIONS(1337), - [sym_primitive_type] = ACTIONS(1337), - [anon_sym_enum] = ACTIONS(1337), - [anon_sym_NS_ENUM] = ACTIONS(1337), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1337), - [anon_sym_NS_OPTIONS] = ACTIONS(1337), - [anon_sym_struct] = ACTIONS(1337), - [anon_sym_union] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1337), - [anon_sym_else] = ACTIONS(1337), - [anon_sym_switch] = ACTIONS(1337), - [anon_sym_case] = ACTIONS(1337), - [anon_sym_default] = ACTIONS(1337), - [anon_sym_while] = ACTIONS(1337), - [anon_sym_do] = ACTIONS(1337), - [anon_sym_for] = ACTIONS(1337), - [anon_sym_return] = ACTIONS(1337), - [anon_sym_break] = ACTIONS(1337), - [anon_sym_continue] = ACTIONS(1337), - [anon_sym_goto] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1339), - [anon_sym_PLUS_PLUS] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1337), - [sym_number_literal] = ACTIONS(1339), - [anon_sym_L_SQUOTE] = ACTIONS(1339), - [anon_sym_u_SQUOTE] = ACTIONS(1339), - [anon_sym_U_SQUOTE] = ACTIONS(1339), - [anon_sym_u8_SQUOTE] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(1339), - [anon_sym_L_DQUOTE] = ACTIONS(1339), - [anon_sym_u_DQUOTE] = ACTIONS(1339), - [anon_sym_U_DQUOTE] = ACTIONS(1339), - [anon_sym_u8_DQUOTE] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(1339), - [sym_true] = ACTIONS(1337), - [sym_false] = ACTIONS(1337), - [sym_null] = ACTIONS(1337), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1339), - [anon_sym_ATimport] = ACTIONS(1339), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1337), - [anon_sym_ATcompatibility_alias] = ACTIONS(1339), - [anon_sym_ATprotocol] = ACTIONS(1339), - [anon_sym_ATclass] = ACTIONS(1339), - [anon_sym_ATinterface] = ACTIONS(1339), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1337), - [sym_method_attribute_specifier] = ACTIONS(1337), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1337), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1337), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1337), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1337), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1337), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1337), - [anon_sym_NS_AVAILABLE] = ACTIONS(1337), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1337), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1337), - [anon_sym_API_AVAILABLE] = ACTIONS(1337), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1337), - [anon_sym_API_DEPRECATED] = ACTIONS(1337), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1337), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1337), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1337), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1337), - [anon_sym___deprecated_msg] = ACTIONS(1337), - [anon_sym___deprecated_enum_msg] = ACTIONS(1337), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1337), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1337), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1337), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1337), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1337), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1337), - [anon_sym_ATimplementation] = ACTIONS(1339), - [anon_sym_typeof] = ACTIONS(1337), - [anon_sym___typeof] = ACTIONS(1337), - [anon_sym___typeof__] = ACTIONS(1337), - [sym_self] = ACTIONS(1337), - [sym_super] = ACTIONS(1337), - [sym_nil] = ACTIONS(1337), - [sym_id] = ACTIONS(1337), - [sym_instancetype] = ACTIONS(1337), - [sym_Class] = ACTIONS(1337), - [sym_SEL] = ACTIONS(1337), - [sym_IMP] = ACTIONS(1337), - [sym_BOOL] = ACTIONS(1337), - [sym_auto] = ACTIONS(1337), - [anon_sym_ATautoreleasepool] = ACTIONS(1339), - [anon_sym_ATsynchronized] = ACTIONS(1339), - [anon_sym_ATtry] = ACTIONS(1339), - [anon_sym_ATcatch] = ACTIONS(1339), - [anon_sym_ATfinally] = ACTIONS(1339), - [anon_sym_ATthrow] = ACTIONS(1339), - [anon_sym_ATselector] = ACTIONS(1339), - [anon_sym_ATencode] = ACTIONS(1339), - [anon_sym_AT] = ACTIONS(1337), - [sym_YES] = ACTIONS(1337), - [sym_NO] = ACTIONS(1337), - [anon_sym___builtin_available] = ACTIONS(1337), - [anon_sym_ATavailable] = ACTIONS(1339), - [anon_sym_va_arg] = ACTIONS(1337), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [338] = { - [ts_builtin_sym_end] = ACTIONS(1343), - [sym_identifier] = ACTIONS(1341), - [aux_sym_preproc_include_token1] = ACTIONS(1343), - [aux_sym_preproc_def_token1] = ACTIONS(1343), - [anon_sym_RPAREN] = ACTIONS(1343), - [aux_sym_preproc_if_token1] = ACTIONS(1341), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1341), - [anon_sym_LPAREN2] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [anon_sym_TILDE] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1341), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_typedef] = ACTIONS(1341), - [anon_sym_extern] = ACTIONS(1341), - [anon_sym___attribute] = ACTIONS(1341), - [anon_sym___attribute__] = ACTIONS(1341), - [anon_sym___declspec] = ACTIONS(1341), - [anon_sym___cdecl] = ACTIONS(1341), - [anon_sym___clrcall] = ACTIONS(1341), - [anon_sym___stdcall] = ACTIONS(1341), - [anon_sym___fastcall] = ACTIONS(1341), - [anon_sym___thiscall] = ACTIONS(1341), - [anon_sym___vectorcall] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_RBRACE] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_static] = ACTIONS(1341), - [anon_sym_auto] = ACTIONS(1341), - [anon_sym_register] = ACTIONS(1341), - [anon_sym_inline] = ACTIONS(1341), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1341), - [anon_sym_const] = ACTIONS(1341), - [anon_sym_volatile] = ACTIONS(1341), - [anon_sym_restrict] = ACTIONS(1341), - [anon_sym__Atomic] = ACTIONS(1341), - [anon_sym_in] = ACTIONS(1341), - [anon_sym_out] = ACTIONS(1341), - [anon_sym_inout] = ACTIONS(1341), - [anon_sym_bycopy] = ACTIONS(1341), - [anon_sym_byref] = ACTIONS(1341), - [anon_sym_oneway] = ACTIONS(1341), - [anon_sym__Nullable] = ACTIONS(1341), - [anon_sym__Nonnull] = ACTIONS(1341), - [anon_sym__Nullable_result] = ACTIONS(1341), - [anon_sym__Null_unspecified] = ACTIONS(1341), - [anon_sym___autoreleasing] = ACTIONS(1341), - [anon_sym___nullable] = ACTIONS(1341), - [anon_sym___nonnull] = ACTIONS(1341), - [anon_sym___strong] = ACTIONS(1341), - [anon_sym___weak] = ACTIONS(1341), - [anon_sym___bridge] = ACTIONS(1341), - [anon_sym___bridge_transfer] = ACTIONS(1341), - [anon_sym___bridge_retained] = ACTIONS(1341), - [anon_sym___unsafe_unretained] = ACTIONS(1341), - [anon_sym___block] = ACTIONS(1341), - [anon_sym___kindof] = ACTIONS(1341), - [anon_sym___unused] = ACTIONS(1341), - [anon_sym__Complex] = ACTIONS(1341), - [anon_sym___complex] = ACTIONS(1341), - [anon_sym_IBOutlet] = ACTIONS(1341), - [anon_sym_IBInspectable] = ACTIONS(1341), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1341), - [anon_sym_signed] = ACTIONS(1341), - [anon_sym_unsigned] = ACTIONS(1341), - [anon_sym_long] = ACTIONS(1341), - [anon_sym_short] = ACTIONS(1341), - [sym_primitive_type] = ACTIONS(1341), - [anon_sym_enum] = ACTIONS(1341), - [anon_sym_NS_ENUM] = ACTIONS(1341), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1341), - [anon_sym_NS_OPTIONS] = ACTIONS(1341), - [anon_sym_struct] = ACTIONS(1341), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_if] = ACTIONS(1341), - [anon_sym_else] = ACTIONS(1341), - [anon_sym_switch] = ACTIONS(1341), - [anon_sym_case] = ACTIONS(1341), - [anon_sym_default] = ACTIONS(1341), - [anon_sym_while] = ACTIONS(1341), - [anon_sym_do] = ACTIONS(1341), - [anon_sym_for] = ACTIONS(1341), - [anon_sym_return] = ACTIONS(1341), - [anon_sym_break] = ACTIONS(1341), - [anon_sym_continue] = ACTIONS(1341), - [anon_sym_goto] = ACTIONS(1341), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), - [anon_sym_sizeof] = ACTIONS(1341), - [sym_number_literal] = ACTIONS(1343), - [anon_sym_L_SQUOTE] = ACTIONS(1343), - [anon_sym_u_SQUOTE] = ACTIONS(1343), - [anon_sym_U_SQUOTE] = ACTIONS(1343), - [anon_sym_u8_SQUOTE] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1343), - [anon_sym_L_DQUOTE] = ACTIONS(1343), - [anon_sym_u_DQUOTE] = ACTIONS(1343), - [anon_sym_U_DQUOTE] = ACTIONS(1343), - [anon_sym_u8_DQUOTE] = ACTIONS(1343), - [anon_sym_DQUOTE] = ACTIONS(1343), - [sym_true] = ACTIONS(1341), - [sym_false] = ACTIONS(1341), - [sym_null] = ACTIONS(1341), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1343), - [anon_sym_ATimport] = ACTIONS(1343), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1341), - [anon_sym_ATcompatibility_alias] = ACTIONS(1343), - [anon_sym_ATprotocol] = ACTIONS(1343), - [anon_sym_ATclass] = ACTIONS(1343), - [anon_sym_ATinterface] = ACTIONS(1343), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1341), - [sym_method_attribute_specifier] = ACTIONS(1341), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1341), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1341), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1341), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1341), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1341), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1341), - [anon_sym_NS_AVAILABLE] = ACTIONS(1341), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1341), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1341), - [anon_sym_API_AVAILABLE] = ACTIONS(1341), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1341), - [anon_sym_API_DEPRECATED] = ACTIONS(1341), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1341), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1341), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1341), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1341), - [anon_sym___deprecated_msg] = ACTIONS(1341), - [anon_sym___deprecated_enum_msg] = ACTIONS(1341), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1341), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1341), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1341), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1341), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1341), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1341), - [anon_sym_ATimplementation] = ACTIONS(1343), - [anon_sym_typeof] = ACTIONS(1341), - [anon_sym___typeof] = ACTIONS(1341), - [anon_sym___typeof__] = ACTIONS(1341), - [sym_self] = ACTIONS(1341), - [sym_super] = ACTIONS(1341), - [sym_nil] = ACTIONS(1341), - [sym_id] = ACTIONS(1341), - [sym_instancetype] = ACTIONS(1341), - [sym_Class] = ACTIONS(1341), - [sym_SEL] = ACTIONS(1341), - [sym_IMP] = ACTIONS(1341), - [sym_BOOL] = ACTIONS(1341), - [sym_auto] = ACTIONS(1341), - [anon_sym_ATautoreleasepool] = ACTIONS(1343), - [anon_sym_ATsynchronized] = ACTIONS(1343), - [anon_sym_ATtry] = ACTIONS(1343), - [anon_sym_ATcatch] = ACTIONS(1343), - [anon_sym_ATfinally] = ACTIONS(1343), - [anon_sym_ATthrow] = ACTIONS(1343), - [anon_sym_ATselector] = ACTIONS(1343), - [anon_sym_ATencode] = ACTIONS(1343), - [anon_sym_AT] = ACTIONS(1341), - [sym_YES] = ACTIONS(1341), - [sym_NO] = ACTIONS(1341), - [anon_sym___builtin_available] = ACTIONS(1341), - [anon_sym_ATavailable] = ACTIONS(1343), - [anon_sym_va_arg] = ACTIONS(1341), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [339] = { - [ts_builtin_sym_end] = ACTIONS(1265), - [sym_identifier] = ACTIONS(1263), - [aux_sym_preproc_include_token1] = ACTIONS(1265), - [aux_sym_preproc_def_token1] = ACTIONS(1265), - [anon_sym_RPAREN] = ACTIONS(1265), - [aux_sym_preproc_if_token1] = ACTIONS(1263), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), - [anon_sym_LPAREN2] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym_typedef] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym___attribute] = ACTIONS(1263), - [anon_sym___attribute__] = ACTIONS(1263), - [anon_sym___declspec] = ACTIONS(1263), - [anon_sym___cdecl] = ACTIONS(1263), - [anon_sym___clrcall] = ACTIONS(1263), - [anon_sym___stdcall] = ACTIONS(1263), - [anon_sym___fastcall] = ACTIONS(1263), - [anon_sym___thiscall] = ACTIONS(1263), - [anon_sym___vectorcall] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1265), - [anon_sym_static] = ACTIONS(1263), - [anon_sym_auto] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_inline] = ACTIONS(1263), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_volatile] = ACTIONS(1263), - [anon_sym_restrict] = ACTIONS(1263), - [anon_sym__Atomic] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_out] = ACTIONS(1263), - [anon_sym_inout] = ACTIONS(1263), - [anon_sym_bycopy] = ACTIONS(1263), - [anon_sym_byref] = ACTIONS(1263), - [anon_sym_oneway] = ACTIONS(1263), - [anon_sym__Nullable] = ACTIONS(1263), - [anon_sym__Nonnull] = ACTIONS(1263), - [anon_sym__Nullable_result] = ACTIONS(1263), - [anon_sym__Null_unspecified] = ACTIONS(1263), - [anon_sym___autoreleasing] = ACTIONS(1263), - [anon_sym___nullable] = ACTIONS(1263), - [anon_sym___nonnull] = ACTIONS(1263), - [anon_sym___strong] = ACTIONS(1263), - [anon_sym___weak] = ACTIONS(1263), - [anon_sym___bridge] = ACTIONS(1263), - [anon_sym___bridge_transfer] = ACTIONS(1263), - [anon_sym___bridge_retained] = ACTIONS(1263), - [anon_sym___unsafe_unretained] = ACTIONS(1263), - [anon_sym___block] = ACTIONS(1263), - [anon_sym___kindof] = ACTIONS(1263), - [anon_sym___unused] = ACTIONS(1263), - [anon_sym__Complex] = ACTIONS(1263), - [anon_sym___complex] = ACTIONS(1263), - [anon_sym_IBOutlet] = ACTIONS(1263), - [anon_sym_IBInspectable] = ACTIONS(1263), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1263), - [anon_sym_signed] = ACTIONS(1263), - [anon_sym_unsigned] = ACTIONS(1263), - [anon_sym_long] = ACTIONS(1263), - [anon_sym_short] = ACTIONS(1263), - [sym_primitive_type] = ACTIONS(1263), - [anon_sym_enum] = ACTIONS(1263), - [anon_sym_NS_ENUM] = ACTIONS(1263), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1263), - [anon_sym_NS_OPTIONS] = ACTIONS(1263), - [anon_sym_struct] = ACTIONS(1263), - [anon_sym_union] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1709), - [anon_sym_switch] = ACTIONS(1263), - [anon_sym_case] = ACTIONS(1263), - [anon_sym_default] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_goto] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_sizeof] = ACTIONS(1263), - [sym_number_literal] = ACTIONS(1265), - [anon_sym_L_SQUOTE] = ACTIONS(1265), - [anon_sym_u_SQUOTE] = ACTIONS(1265), - [anon_sym_U_SQUOTE] = ACTIONS(1265), - [anon_sym_u8_SQUOTE] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1265), - [anon_sym_L_DQUOTE] = ACTIONS(1265), - [anon_sym_u_DQUOTE] = ACTIONS(1265), - [anon_sym_U_DQUOTE] = ACTIONS(1265), - [anon_sym_u8_DQUOTE] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [sym_null] = ACTIONS(1263), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1265), - [anon_sym_ATimport] = ACTIONS(1265), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1263), - [anon_sym_ATcompatibility_alias] = ACTIONS(1265), - [anon_sym_ATprotocol] = ACTIONS(1265), - [anon_sym_ATclass] = ACTIONS(1265), - [anon_sym_ATinterface] = ACTIONS(1265), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1263), - [sym_method_attribute_specifier] = ACTIONS(1263), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1263), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1263), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1263), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1263), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1263), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1263), - [anon_sym_NS_AVAILABLE] = ACTIONS(1263), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1263), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1263), - [anon_sym_API_AVAILABLE] = ACTIONS(1263), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1263), - [anon_sym_API_DEPRECATED] = ACTIONS(1263), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1263), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1263), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1263), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1263), - [anon_sym___deprecated_msg] = ACTIONS(1263), - [anon_sym___deprecated_enum_msg] = ACTIONS(1263), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1263), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1263), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1263), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1263), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1263), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1263), - [anon_sym_ATimplementation] = ACTIONS(1265), - [anon_sym_typeof] = ACTIONS(1263), - [anon_sym___typeof] = ACTIONS(1263), - [anon_sym___typeof__] = ACTIONS(1263), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1263), - [sym_nil] = ACTIONS(1263), - [sym_id] = ACTIONS(1263), - [sym_instancetype] = ACTIONS(1263), - [sym_Class] = ACTIONS(1263), - [sym_SEL] = ACTIONS(1263), - [sym_IMP] = ACTIONS(1263), - [sym_BOOL] = ACTIONS(1263), - [sym_auto] = ACTIONS(1263), - [anon_sym_ATautoreleasepool] = ACTIONS(1265), - [anon_sym_ATsynchronized] = ACTIONS(1265), - [anon_sym_ATtry] = ACTIONS(1265), - [anon_sym_ATcatch] = ACTIONS(1265), - [anon_sym_ATfinally] = ACTIONS(1265), - [anon_sym_ATthrow] = ACTIONS(1265), - [anon_sym_ATselector] = ACTIONS(1265), - [anon_sym_ATencode] = ACTIONS(1265), - [anon_sym_AT] = ACTIONS(1263), - [sym_YES] = ACTIONS(1263), - [sym_NO] = ACTIONS(1263), - [anon_sym___builtin_available] = ACTIONS(1263), - [anon_sym_ATavailable] = ACTIONS(1265), - [anon_sym_va_arg] = ACTIONS(1263), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [340] = { - [ts_builtin_sym_end] = ACTIONS(1271), - [sym_identifier] = ACTIONS(1269), - [aux_sym_preproc_include_token1] = ACTIONS(1271), - [aux_sym_preproc_def_token1] = ACTIONS(1271), - [anon_sym_RPAREN] = ACTIONS(1271), - [aux_sym_preproc_if_token1] = ACTIONS(1269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1269), - [anon_sym_LPAREN2] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1271), - [anon_sym_TILDE] = ACTIONS(1271), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_CARET] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_typedef] = ACTIONS(1269), - [anon_sym_extern] = ACTIONS(1269), - [anon_sym___attribute] = ACTIONS(1269), - [anon_sym___attribute__] = ACTIONS(1269), - [anon_sym___declspec] = ACTIONS(1269), - [anon_sym___cdecl] = ACTIONS(1269), - [anon_sym___clrcall] = ACTIONS(1269), - [anon_sym___stdcall] = ACTIONS(1269), - [anon_sym___fastcall] = ACTIONS(1269), - [anon_sym___thiscall] = ACTIONS(1269), - [anon_sym___vectorcall] = ACTIONS(1269), - [anon_sym_LBRACE] = ACTIONS(1271), - [anon_sym_RBRACE] = ACTIONS(1271), - [anon_sym_LBRACK] = ACTIONS(1271), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_auto] = ACTIONS(1269), - [anon_sym_register] = ACTIONS(1269), - [anon_sym_inline] = ACTIONS(1269), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1269), - [anon_sym_const] = ACTIONS(1269), - [anon_sym_volatile] = ACTIONS(1269), - [anon_sym_restrict] = ACTIONS(1269), - [anon_sym__Atomic] = ACTIONS(1269), - [anon_sym_in] = ACTIONS(1269), - [anon_sym_out] = ACTIONS(1269), - [anon_sym_inout] = ACTIONS(1269), - [anon_sym_bycopy] = ACTIONS(1269), - [anon_sym_byref] = ACTIONS(1269), - [anon_sym_oneway] = ACTIONS(1269), - [anon_sym__Nullable] = ACTIONS(1269), - [anon_sym__Nonnull] = ACTIONS(1269), - [anon_sym__Nullable_result] = ACTIONS(1269), - [anon_sym__Null_unspecified] = ACTIONS(1269), - [anon_sym___autoreleasing] = ACTIONS(1269), - [anon_sym___nullable] = ACTIONS(1269), - [anon_sym___nonnull] = ACTIONS(1269), - [anon_sym___strong] = ACTIONS(1269), - [anon_sym___weak] = ACTIONS(1269), - [anon_sym___bridge] = ACTIONS(1269), - [anon_sym___bridge_transfer] = ACTIONS(1269), - [anon_sym___bridge_retained] = ACTIONS(1269), - [anon_sym___unsafe_unretained] = ACTIONS(1269), - [anon_sym___block] = ACTIONS(1269), - [anon_sym___kindof] = ACTIONS(1269), - [anon_sym___unused] = ACTIONS(1269), - [anon_sym__Complex] = ACTIONS(1269), - [anon_sym___complex] = ACTIONS(1269), - [anon_sym_IBOutlet] = ACTIONS(1269), - [anon_sym_IBInspectable] = ACTIONS(1269), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1269), - [anon_sym_signed] = ACTIONS(1269), - [anon_sym_unsigned] = ACTIONS(1269), - [anon_sym_long] = ACTIONS(1269), - [anon_sym_short] = ACTIONS(1269), - [sym_primitive_type] = ACTIONS(1269), - [anon_sym_enum] = ACTIONS(1269), - [anon_sym_NS_ENUM] = ACTIONS(1269), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1269), - [anon_sym_NS_OPTIONS] = ACTIONS(1269), - [anon_sym_struct] = ACTIONS(1269), - [anon_sym_union] = ACTIONS(1269), - [anon_sym_if] = ACTIONS(1269), - [anon_sym_else] = ACTIONS(1269), - [anon_sym_switch] = ACTIONS(1269), - [anon_sym_case] = ACTIONS(1269), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_while] = ACTIONS(1269), - [anon_sym_do] = ACTIONS(1269), - [anon_sym_for] = ACTIONS(1269), - [anon_sym_return] = ACTIONS(1269), - [anon_sym_break] = ACTIONS(1269), - [anon_sym_continue] = ACTIONS(1269), - [anon_sym_goto] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_sizeof] = ACTIONS(1269), - [sym_number_literal] = ACTIONS(1271), - [anon_sym_L_SQUOTE] = ACTIONS(1271), - [anon_sym_u_SQUOTE] = ACTIONS(1271), - [anon_sym_U_SQUOTE] = ACTIONS(1271), - [anon_sym_u8_SQUOTE] = ACTIONS(1271), - [anon_sym_SQUOTE] = ACTIONS(1271), - [anon_sym_L_DQUOTE] = ACTIONS(1271), - [anon_sym_u_DQUOTE] = ACTIONS(1271), - [anon_sym_U_DQUOTE] = ACTIONS(1271), - [anon_sym_u8_DQUOTE] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1271), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_null] = ACTIONS(1269), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1271), - [anon_sym_ATimport] = ACTIONS(1271), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1269), - [anon_sym_ATcompatibility_alias] = ACTIONS(1271), - [anon_sym_ATprotocol] = ACTIONS(1271), - [anon_sym_ATclass] = ACTIONS(1271), - [anon_sym_ATinterface] = ACTIONS(1271), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1269), - [sym_method_attribute_specifier] = ACTIONS(1269), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1269), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1269), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1269), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1269), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1269), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1269), - [anon_sym_NS_AVAILABLE] = ACTIONS(1269), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1269), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1269), - [anon_sym_API_AVAILABLE] = ACTIONS(1269), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1269), - [anon_sym_API_DEPRECATED] = ACTIONS(1269), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1269), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1269), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1269), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1269), - [anon_sym___deprecated_msg] = ACTIONS(1269), - [anon_sym___deprecated_enum_msg] = ACTIONS(1269), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1269), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1269), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1269), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1269), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1269), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1269), - [anon_sym_ATimplementation] = ACTIONS(1271), - [anon_sym_typeof] = ACTIONS(1269), - [anon_sym___typeof] = ACTIONS(1269), - [anon_sym___typeof__] = ACTIONS(1269), - [sym_self] = ACTIONS(1269), - [sym_super] = ACTIONS(1269), - [sym_nil] = ACTIONS(1269), - [sym_id] = ACTIONS(1269), - [sym_instancetype] = ACTIONS(1269), - [sym_Class] = ACTIONS(1269), - [sym_SEL] = ACTIONS(1269), - [sym_IMP] = ACTIONS(1269), - [sym_BOOL] = ACTIONS(1269), - [sym_auto] = ACTIONS(1269), - [anon_sym_ATautoreleasepool] = ACTIONS(1271), - [anon_sym_ATsynchronized] = ACTIONS(1271), - [anon_sym_ATtry] = ACTIONS(1271), - [anon_sym_ATcatch] = ACTIONS(1271), - [anon_sym_ATfinally] = ACTIONS(1271), - [anon_sym_ATthrow] = ACTIONS(1271), - [anon_sym_ATselector] = ACTIONS(1271), - [anon_sym_ATencode] = ACTIONS(1271), - [anon_sym_AT] = ACTIONS(1269), - [sym_YES] = ACTIONS(1269), - [sym_NO] = ACTIONS(1269), - [anon_sym___builtin_available] = ACTIONS(1269), - [anon_sym_ATavailable] = ACTIONS(1271), - [anon_sym_va_arg] = ACTIONS(1269), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [341] = { - [ts_builtin_sym_end] = ACTIONS(1675), - [sym_identifier] = ACTIONS(1673), - [aux_sym_preproc_include_token1] = ACTIONS(1675), - [aux_sym_preproc_def_token1] = ACTIONS(1675), - [anon_sym_RPAREN] = ACTIONS(1675), - [aux_sym_preproc_if_token1] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1673), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_CARET] = ACTIONS(1675), - [anon_sym_AMP] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_typedef] = ACTIONS(1673), - [anon_sym_extern] = ACTIONS(1673), - [anon_sym___attribute] = ACTIONS(1673), - [anon_sym___attribute__] = ACTIONS(1673), - [anon_sym___declspec] = ACTIONS(1673), - [anon_sym___cdecl] = ACTIONS(1673), - [anon_sym___clrcall] = ACTIONS(1673), - [anon_sym___stdcall] = ACTIONS(1673), - [anon_sym___fastcall] = ACTIONS(1673), - [anon_sym___thiscall] = ACTIONS(1673), - [anon_sym___vectorcall] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_static] = ACTIONS(1673), - [anon_sym_auto] = ACTIONS(1673), - [anon_sym_register] = ACTIONS(1673), - [anon_sym_inline] = ACTIONS(1673), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1673), - [anon_sym_const] = ACTIONS(1673), - [anon_sym_volatile] = ACTIONS(1673), - [anon_sym_restrict] = ACTIONS(1673), - [anon_sym__Atomic] = ACTIONS(1673), - [anon_sym_in] = ACTIONS(1673), - [anon_sym_out] = ACTIONS(1673), - [anon_sym_inout] = ACTIONS(1673), - [anon_sym_bycopy] = ACTIONS(1673), - [anon_sym_byref] = ACTIONS(1673), - [anon_sym_oneway] = ACTIONS(1673), - [anon_sym__Nullable] = ACTIONS(1673), - [anon_sym__Nonnull] = ACTIONS(1673), - [anon_sym__Nullable_result] = ACTIONS(1673), - [anon_sym__Null_unspecified] = ACTIONS(1673), - [anon_sym___autoreleasing] = ACTIONS(1673), - [anon_sym___nullable] = ACTIONS(1673), - [anon_sym___nonnull] = ACTIONS(1673), - [anon_sym___strong] = ACTIONS(1673), - [anon_sym___weak] = ACTIONS(1673), - [anon_sym___bridge] = ACTIONS(1673), - [anon_sym___bridge_transfer] = ACTIONS(1673), - [anon_sym___bridge_retained] = ACTIONS(1673), - [anon_sym___unsafe_unretained] = ACTIONS(1673), - [anon_sym___block] = ACTIONS(1673), - [anon_sym___kindof] = ACTIONS(1673), - [anon_sym___unused] = ACTIONS(1673), - [anon_sym__Complex] = ACTIONS(1673), - [anon_sym___complex] = ACTIONS(1673), - [anon_sym_IBOutlet] = ACTIONS(1673), - [anon_sym_IBInspectable] = ACTIONS(1673), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1673), - [anon_sym_signed] = ACTIONS(1673), - [anon_sym_unsigned] = ACTIONS(1673), - [anon_sym_long] = ACTIONS(1673), - [anon_sym_short] = ACTIONS(1673), - [sym_primitive_type] = ACTIONS(1673), - [anon_sym_enum] = ACTIONS(1673), - [anon_sym_NS_ENUM] = ACTIONS(1673), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1673), - [anon_sym_NS_OPTIONS] = ACTIONS(1673), - [anon_sym_struct] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_switch] = ACTIONS(1673), - [anon_sym_case] = ACTIONS(1673), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_do] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1673), - [anon_sym_goto] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_sizeof] = ACTIONS(1673), - [sym_number_literal] = ACTIONS(1675), - [anon_sym_L_SQUOTE] = ACTIONS(1675), - [anon_sym_u_SQUOTE] = ACTIONS(1675), - [anon_sym_U_SQUOTE] = ACTIONS(1675), - [anon_sym_u8_SQUOTE] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1675), - [anon_sym_L_DQUOTE] = ACTIONS(1675), - [anon_sym_u_DQUOTE] = ACTIONS(1675), - [anon_sym_U_DQUOTE] = ACTIONS(1675), - [anon_sym_u8_DQUOTE] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym_true] = ACTIONS(1673), - [sym_false] = ACTIONS(1673), - [sym_null] = ACTIONS(1673), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1675), - [anon_sym_ATimport] = ACTIONS(1675), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1673), - [anon_sym_ATcompatibility_alias] = ACTIONS(1675), - [anon_sym_ATprotocol] = ACTIONS(1675), - [anon_sym_ATclass] = ACTIONS(1675), - [anon_sym_ATinterface] = ACTIONS(1675), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1673), - [sym_method_attribute_specifier] = ACTIONS(1673), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1673), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1673), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1673), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1673), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1673), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1673), - [anon_sym_NS_AVAILABLE] = ACTIONS(1673), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1673), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1673), - [anon_sym_API_AVAILABLE] = ACTIONS(1673), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1673), - [anon_sym_API_DEPRECATED] = ACTIONS(1673), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1673), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1673), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1673), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1673), - [anon_sym___deprecated_msg] = ACTIONS(1673), - [anon_sym___deprecated_enum_msg] = ACTIONS(1673), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1673), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1673), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1673), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1673), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1673), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1673), - [anon_sym_ATimplementation] = ACTIONS(1675), - [anon_sym_typeof] = ACTIONS(1673), - [anon_sym___typeof] = ACTIONS(1673), - [anon_sym___typeof__] = ACTIONS(1673), - [sym_self] = ACTIONS(1673), - [sym_super] = ACTIONS(1673), - [sym_nil] = ACTIONS(1673), - [sym_id] = ACTIONS(1673), - [sym_instancetype] = ACTIONS(1673), - [sym_Class] = ACTIONS(1673), - [sym_SEL] = ACTIONS(1673), - [sym_IMP] = ACTIONS(1673), - [sym_BOOL] = ACTIONS(1673), - [sym_auto] = ACTIONS(1673), - [anon_sym_ATautoreleasepool] = ACTIONS(1675), - [anon_sym_ATsynchronized] = ACTIONS(1675), - [anon_sym_ATtry] = ACTIONS(1675), - [anon_sym_ATcatch] = ACTIONS(1675), - [anon_sym_ATfinally] = ACTIONS(1675), - [anon_sym_ATthrow] = ACTIONS(1675), - [anon_sym_ATselector] = ACTIONS(1675), - [anon_sym_ATencode] = ACTIONS(1675), - [anon_sym_AT] = ACTIONS(1673), - [sym_YES] = ACTIONS(1673), - [sym_NO] = ACTIONS(1673), - [anon_sym___builtin_available] = ACTIONS(1673), - [anon_sym_ATavailable] = ACTIONS(1675), - [anon_sym_va_arg] = ACTIONS(1673), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [342] = { - [ts_builtin_sym_end] = ACTIONS(1347), - [sym_identifier] = ACTIONS(1345), - [aux_sym_preproc_include_token1] = ACTIONS(1347), - [aux_sym_preproc_def_token1] = ACTIONS(1347), - [anon_sym_RPAREN] = ACTIONS(1347), - [aux_sym_preproc_if_token1] = ACTIONS(1345), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1345), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1345), - [anon_sym_LPAREN2] = ACTIONS(1347), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1347), - [anon_sym_CARET] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_typedef] = ACTIONS(1345), - [anon_sym_extern] = ACTIONS(1345), - [anon_sym___attribute] = ACTIONS(1345), - [anon_sym___attribute__] = ACTIONS(1345), - [anon_sym___declspec] = ACTIONS(1345), - [anon_sym___cdecl] = ACTIONS(1345), - [anon_sym___clrcall] = ACTIONS(1345), - [anon_sym___stdcall] = ACTIONS(1345), - [anon_sym___fastcall] = ACTIONS(1345), - [anon_sym___thiscall] = ACTIONS(1345), - [anon_sym___vectorcall] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_RBRACE] = ACTIONS(1347), - [anon_sym_LBRACK] = ACTIONS(1347), - [anon_sym_static] = ACTIONS(1345), - [anon_sym_auto] = ACTIONS(1345), - [anon_sym_register] = ACTIONS(1345), - [anon_sym_inline] = ACTIONS(1345), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1345), - [anon_sym_const] = ACTIONS(1345), - [anon_sym_volatile] = ACTIONS(1345), - [anon_sym_restrict] = ACTIONS(1345), - [anon_sym__Atomic] = ACTIONS(1345), - [anon_sym_in] = ACTIONS(1345), - [anon_sym_out] = ACTIONS(1345), - [anon_sym_inout] = ACTIONS(1345), - [anon_sym_bycopy] = ACTIONS(1345), - [anon_sym_byref] = ACTIONS(1345), - [anon_sym_oneway] = ACTIONS(1345), - [anon_sym__Nullable] = ACTIONS(1345), - [anon_sym__Nonnull] = ACTIONS(1345), - [anon_sym__Nullable_result] = ACTIONS(1345), - [anon_sym__Null_unspecified] = ACTIONS(1345), - [anon_sym___autoreleasing] = ACTIONS(1345), - [anon_sym___nullable] = ACTIONS(1345), - [anon_sym___nonnull] = ACTIONS(1345), - [anon_sym___strong] = ACTIONS(1345), - [anon_sym___weak] = ACTIONS(1345), - [anon_sym___bridge] = ACTIONS(1345), - [anon_sym___bridge_transfer] = ACTIONS(1345), - [anon_sym___bridge_retained] = ACTIONS(1345), - [anon_sym___unsafe_unretained] = ACTIONS(1345), - [anon_sym___block] = ACTIONS(1345), - [anon_sym___kindof] = ACTIONS(1345), - [anon_sym___unused] = ACTIONS(1345), - [anon_sym__Complex] = ACTIONS(1345), - [anon_sym___complex] = ACTIONS(1345), - [anon_sym_IBOutlet] = ACTIONS(1345), - [anon_sym_IBInspectable] = ACTIONS(1345), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1345), - [anon_sym_signed] = ACTIONS(1345), - [anon_sym_unsigned] = ACTIONS(1345), - [anon_sym_long] = ACTIONS(1345), - [anon_sym_short] = ACTIONS(1345), - [sym_primitive_type] = ACTIONS(1345), - [anon_sym_enum] = ACTIONS(1345), - [anon_sym_NS_ENUM] = ACTIONS(1345), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1345), - [anon_sym_NS_OPTIONS] = ACTIONS(1345), - [anon_sym_struct] = ACTIONS(1345), - [anon_sym_union] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_switch] = ACTIONS(1345), - [anon_sym_case] = ACTIONS(1345), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_do] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_break] = ACTIONS(1345), - [anon_sym_continue] = ACTIONS(1345), - [anon_sym_goto] = ACTIONS(1345), - [anon_sym_DASH_DASH] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1347), - [anon_sym_sizeof] = ACTIONS(1345), - [sym_number_literal] = ACTIONS(1347), - [anon_sym_L_SQUOTE] = ACTIONS(1347), - [anon_sym_u_SQUOTE] = ACTIONS(1347), - [anon_sym_U_SQUOTE] = ACTIONS(1347), - [anon_sym_u8_SQUOTE] = ACTIONS(1347), - [anon_sym_SQUOTE] = ACTIONS(1347), - [anon_sym_L_DQUOTE] = ACTIONS(1347), - [anon_sym_u_DQUOTE] = ACTIONS(1347), - [anon_sym_U_DQUOTE] = ACTIONS(1347), - [anon_sym_u8_DQUOTE] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(1347), - [sym_true] = ACTIONS(1345), - [sym_false] = ACTIONS(1345), - [sym_null] = ACTIONS(1345), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1347), - [anon_sym_ATimport] = ACTIONS(1347), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1345), - [anon_sym_ATcompatibility_alias] = ACTIONS(1347), - [anon_sym_ATprotocol] = ACTIONS(1347), - [anon_sym_ATclass] = ACTIONS(1347), - [anon_sym_ATinterface] = ACTIONS(1347), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1345), - [sym_method_attribute_specifier] = ACTIONS(1345), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1345), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1345), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1345), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1345), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1345), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1345), - [anon_sym_NS_AVAILABLE] = ACTIONS(1345), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1345), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1345), - [anon_sym_API_AVAILABLE] = ACTIONS(1345), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1345), - [anon_sym_API_DEPRECATED] = ACTIONS(1345), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1345), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1345), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1345), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1345), - [anon_sym___deprecated_msg] = ACTIONS(1345), - [anon_sym___deprecated_enum_msg] = ACTIONS(1345), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1345), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1345), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1345), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1345), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1345), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1345), - [anon_sym_ATimplementation] = ACTIONS(1347), - [anon_sym_typeof] = ACTIONS(1345), - [anon_sym___typeof] = ACTIONS(1345), - [anon_sym___typeof__] = ACTIONS(1345), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1345), - [sym_nil] = ACTIONS(1345), - [sym_id] = ACTIONS(1345), - [sym_instancetype] = ACTIONS(1345), - [sym_Class] = ACTIONS(1345), - [sym_SEL] = ACTIONS(1345), - [sym_IMP] = ACTIONS(1345), - [sym_BOOL] = ACTIONS(1345), - [sym_auto] = ACTIONS(1345), - [anon_sym_ATautoreleasepool] = ACTIONS(1347), - [anon_sym_ATsynchronized] = ACTIONS(1347), - [anon_sym_ATtry] = ACTIONS(1347), - [anon_sym_ATcatch] = ACTIONS(1347), - [anon_sym_ATfinally] = ACTIONS(1347), - [anon_sym_ATthrow] = ACTIONS(1347), - [anon_sym_ATselector] = ACTIONS(1347), - [anon_sym_ATencode] = ACTIONS(1347), - [anon_sym_AT] = ACTIONS(1345), - [sym_YES] = ACTIONS(1345), - [sym_NO] = ACTIONS(1345), - [anon_sym___builtin_available] = ACTIONS(1345), - [anon_sym_ATavailable] = ACTIONS(1347), - [anon_sym_va_arg] = ACTIONS(1345), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [343] = { - [ts_builtin_sym_end] = ACTIONS(1351), - [sym_identifier] = ACTIONS(1349), - [aux_sym_preproc_include_token1] = ACTIONS(1351), - [aux_sym_preproc_def_token1] = ACTIONS(1351), - [anon_sym_RPAREN] = ACTIONS(1351), - [aux_sym_preproc_if_token1] = ACTIONS(1349), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1349), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1349), - [anon_sym_LPAREN2] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(1351), - [anon_sym_TILDE] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1351), - [anon_sym_AMP] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_typedef] = ACTIONS(1349), - [anon_sym_extern] = ACTIONS(1349), - [anon_sym___attribute] = ACTIONS(1349), - [anon_sym___attribute__] = ACTIONS(1349), - [anon_sym___declspec] = ACTIONS(1349), - [anon_sym___cdecl] = ACTIONS(1349), - [anon_sym___clrcall] = ACTIONS(1349), - [anon_sym___stdcall] = ACTIONS(1349), - [anon_sym___fastcall] = ACTIONS(1349), - [anon_sym___thiscall] = ACTIONS(1349), - [anon_sym___vectorcall] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1351), - [anon_sym_RBRACE] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1351), - [anon_sym_static] = ACTIONS(1349), - [anon_sym_auto] = ACTIONS(1349), - [anon_sym_register] = ACTIONS(1349), - [anon_sym_inline] = ACTIONS(1349), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1349), - [anon_sym_volatile] = ACTIONS(1349), - [anon_sym_restrict] = ACTIONS(1349), - [anon_sym__Atomic] = ACTIONS(1349), - [anon_sym_in] = ACTIONS(1349), - [anon_sym_out] = ACTIONS(1349), - [anon_sym_inout] = ACTIONS(1349), - [anon_sym_bycopy] = ACTIONS(1349), - [anon_sym_byref] = ACTIONS(1349), - [anon_sym_oneway] = ACTIONS(1349), - [anon_sym__Nullable] = ACTIONS(1349), - [anon_sym__Nonnull] = ACTIONS(1349), - [anon_sym__Nullable_result] = ACTIONS(1349), - [anon_sym__Null_unspecified] = ACTIONS(1349), - [anon_sym___autoreleasing] = ACTIONS(1349), - [anon_sym___nullable] = ACTIONS(1349), - [anon_sym___nonnull] = ACTIONS(1349), - [anon_sym___strong] = ACTIONS(1349), - [anon_sym___weak] = ACTIONS(1349), - [anon_sym___bridge] = ACTIONS(1349), - [anon_sym___bridge_transfer] = ACTIONS(1349), - [anon_sym___bridge_retained] = ACTIONS(1349), - [anon_sym___unsafe_unretained] = ACTIONS(1349), - [anon_sym___block] = ACTIONS(1349), - [anon_sym___kindof] = ACTIONS(1349), - [anon_sym___unused] = ACTIONS(1349), - [anon_sym__Complex] = ACTIONS(1349), - [anon_sym___complex] = ACTIONS(1349), - [anon_sym_IBOutlet] = ACTIONS(1349), - [anon_sym_IBInspectable] = ACTIONS(1349), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1349), - [anon_sym_signed] = ACTIONS(1349), - [anon_sym_unsigned] = ACTIONS(1349), - [anon_sym_long] = ACTIONS(1349), - [anon_sym_short] = ACTIONS(1349), - [sym_primitive_type] = ACTIONS(1349), - [anon_sym_enum] = ACTIONS(1349), - [anon_sym_NS_ENUM] = ACTIONS(1349), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1349), - [anon_sym_NS_OPTIONS] = ACTIONS(1349), - [anon_sym_struct] = ACTIONS(1349), - [anon_sym_union] = ACTIONS(1349), - [anon_sym_if] = ACTIONS(1349), - [anon_sym_else] = ACTIONS(1349), - [anon_sym_switch] = ACTIONS(1349), - [anon_sym_case] = ACTIONS(1349), - [anon_sym_default] = ACTIONS(1349), - [anon_sym_while] = ACTIONS(1349), - [anon_sym_do] = ACTIONS(1349), - [anon_sym_for] = ACTIONS(1349), - [anon_sym_return] = ACTIONS(1349), - [anon_sym_break] = ACTIONS(1349), - [anon_sym_continue] = ACTIONS(1349), - [anon_sym_goto] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1351), - [anon_sym_PLUS_PLUS] = ACTIONS(1351), - [anon_sym_sizeof] = ACTIONS(1349), - [sym_number_literal] = ACTIONS(1351), - [anon_sym_L_SQUOTE] = ACTIONS(1351), - [anon_sym_u_SQUOTE] = ACTIONS(1351), - [anon_sym_U_SQUOTE] = ACTIONS(1351), - [anon_sym_u8_SQUOTE] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_L_DQUOTE] = ACTIONS(1351), - [anon_sym_u_DQUOTE] = ACTIONS(1351), - [anon_sym_U_DQUOTE] = ACTIONS(1351), - [anon_sym_u8_DQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1351), - [sym_true] = ACTIONS(1349), - [sym_false] = ACTIONS(1349), - [sym_null] = ACTIONS(1349), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1351), - [anon_sym_ATimport] = ACTIONS(1351), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1349), - [anon_sym_ATcompatibility_alias] = ACTIONS(1351), - [anon_sym_ATprotocol] = ACTIONS(1351), - [anon_sym_ATclass] = ACTIONS(1351), - [anon_sym_ATinterface] = ACTIONS(1351), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1349), - [sym_method_attribute_specifier] = ACTIONS(1349), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1349), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1349), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1349), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1349), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1349), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1349), - [anon_sym_NS_AVAILABLE] = ACTIONS(1349), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1349), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1349), - [anon_sym_API_AVAILABLE] = ACTIONS(1349), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1349), - [anon_sym_API_DEPRECATED] = ACTIONS(1349), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1349), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1349), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1349), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1349), - [anon_sym___deprecated_msg] = ACTIONS(1349), - [anon_sym___deprecated_enum_msg] = ACTIONS(1349), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1349), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1349), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1349), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1349), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1349), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1349), - [anon_sym_ATimplementation] = ACTIONS(1351), - [anon_sym_typeof] = ACTIONS(1349), - [anon_sym___typeof] = ACTIONS(1349), - [anon_sym___typeof__] = ACTIONS(1349), - [sym_self] = ACTIONS(1349), - [sym_super] = ACTIONS(1349), - [sym_nil] = ACTIONS(1349), - [sym_id] = ACTIONS(1349), - [sym_instancetype] = ACTIONS(1349), - [sym_Class] = ACTIONS(1349), - [sym_SEL] = ACTIONS(1349), - [sym_IMP] = ACTIONS(1349), - [sym_BOOL] = ACTIONS(1349), - [sym_auto] = ACTIONS(1349), - [anon_sym_ATautoreleasepool] = ACTIONS(1351), - [anon_sym_ATsynchronized] = ACTIONS(1351), - [anon_sym_ATtry] = ACTIONS(1351), - [anon_sym_ATcatch] = ACTIONS(1351), - [anon_sym_ATfinally] = ACTIONS(1351), - [anon_sym_ATthrow] = ACTIONS(1351), - [anon_sym_ATselector] = ACTIONS(1351), - [anon_sym_ATencode] = ACTIONS(1351), - [anon_sym_AT] = ACTIONS(1349), - [sym_YES] = ACTIONS(1349), - [sym_NO] = ACTIONS(1349), - [anon_sym___builtin_available] = ACTIONS(1349), - [anon_sym_ATavailable] = ACTIONS(1351), - [anon_sym_va_arg] = ACTIONS(1349), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [344] = { - [ts_builtin_sym_end] = ACTIONS(1355), - [sym_identifier] = ACTIONS(1353), - [aux_sym_preproc_include_token1] = ACTIONS(1355), - [aux_sym_preproc_def_token1] = ACTIONS(1355), - [anon_sym_RPAREN] = ACTIONS(1355), - [aux_sym_preproc_if_token1] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1353), - [anon_sym_LPAREN2] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_CARET] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(1355), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_typedef] = ACTIONS(1353), - [anon_sym_extern] = ACTIONS(1353), - [anon_sym___attribute] = ACTIONS(1353), - [anon_sym___attribute__] = ACTIONS(1353), - [anon_sym___declspec] = ACTIONS(1353), - [anon_sym___cdecl] = ACTIONS(1353), - [anon_sym___clrcall] = ACTIONS(1353), - [anon_sym___stdcall] = ACTIONS(1353), - [anon_sym___fastcall] = ACTIONS(1353), - [anon_sym___thiscall] = ACTIONS(1353), - [anon_sym___vectorcall] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_RBRACE] = ACTIONS(1355), - [anon_sym_LBRACK] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_auto] = ACTIONS(1353), - [anon_sym_register] = ACTIONS(1353), - [anon_sym_inline] = ACTIONS(1353), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), - [anon_sym_volatile] = ACTIONS(1353), - [anon_sym_restrict] = ACTIONS(1353), - [anon_sym__Atomic] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(1353), - [anon_sym_out] = ACTIONS(1353), - [anon_sym_inout] = ACTIONS(1353), - [anon_sym_bycopy] = ACTIONS(1353), - [anon_sym_byref] = ACTIONS(1353), - [anon_sym_oneway] = ACTIONS(1353), - [anon_sym__Nullable] = ACTIONS(1353), - [anon_sym__Nonnull] = ACTIONS(1353), - [anon_sym__Nullable_result] = ACTIONS(1353), - [anon_sym__Null_unspecified] = ACTIONS(1353), - [anon_sym___autoreleasing] = ACTIONS(1353), - [anon_sym___nullable] = ACTIONS(1353), - [anon_sym___nonnull] = ACTIONS(1353), - [anon_sym___strong] = ACTIONS(1353), - [anon_sym___weak] = ACTIONS(1353), - [anon_sym___bridge] = ACTIONS(1353), - [anon_sym___bridge_transfer] = ACTIONS(1353), - [anon_sym___bridge_retained] = ACTIONS(1353), - [anon_sym___unsafe_unretained] = ACTIONS(1353), - [anon_sym___block] = ACTIONS(1353), - [anon_sym___kindof] = ACTIONS(1353), - [anon_sym___unused] = ACTIONS(1353), - [anon_sym__Complex] = ACTIONS(1353), - [anon_sym___complex] = ACTIONS(1353), - [anon_sym_IBOutlet] = ACTIONS(1353), - [anon_sym_IBInspectable] = ACTIONS(1353), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1353), - [anon_sym_signed] = ACTIONS(1353), - [anon_sym_unsigned] = ACTIONS(1353), - [anon_sym_long] = ACTIONS(1353), - [anon_sym_short] = ACTIONS(1353), - [sym_primitive_type] = ACTIONS(1353), - [anon_sym_enum] = ACTIONS(1353), - [anon_sym_NS_ENUM] = ACTIONS(1353), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1353), - [anon_sym_NS_OPTIONS] = ACTIONS(1353), - [anon_sym_struct] = ACTIONS(1353), - [anon_sym_union] = ACTIONS(1353), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_else] = ACTIONS(1353), - [anon_sym_switch] = ACTIONS(1353), - [anon_sym_case] = ACTIONS(1353), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [anon_sym_do] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_break] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_goto] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1355), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [anon_sym_sizeof] = ACTIONS(1353), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_L_SQUOTE] = ACTIONS(1355), - [anon_sym_u_SQUOTE] = ACTIONS(1355), - [anon_sym_U_SQUOTE] = ACTIONS(1355), - [anon_sym_u8_SQUOTE] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_L_DQUOTE] = ACTIONS(1355), - [anon_sym_u_DQUOTE] = ACTIONS(1355), - [anon_sym_U_DQUOTE] = ACTIONS(1355), - [anon_sym_u8_DQUOTE] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1355), - [sym_true] = ACTIONS(1353), - [sym_false] = ACTIONS(1353), - [sym_null] = ACTIONS(1353), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1355), - [anon_sym_ATimport] = ACTIONS(1355), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1353), - [anon_sym_ATcompatibility_alias] = ACTIONS(1355), - [anon_sym_ATprotocol] = ACTIONS(1355), - [anon_sym_ATclass] = ACTIONS(1355), - [anon_sym_ATinterface] = ACTIONS(1355), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1353), - [sym_method_attribute_specifier] = ACTIONS(1353), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1353), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1353), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1353), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1353), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1353), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1353), - [anon_sym_NS_AVAILABLE] = ACTIONS(1353), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1353), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1353), - [anon_sym_API_AVAILABLE] = ACTIONS(1353), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1353), - [anon_sym_API_DEPRECATED] = ACTIONS(1353), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1353), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1353), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1353), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1353), - [anon_sym___deprecated_msg] = ACTIONS(1353), - [anon_sym___deprecated_enum_msg] = ACTIONS(1353), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1353), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1353), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1353), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1353), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1353), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1353), - [anon_sym_ATimplementation] = ACTIONS(1355), - [anon_sym_typeof] = ACTIONS(1353), - [anon_sym___typeof] = ACTIONS(1353), - [anon_sym___typeof__] = ACTIONS(1353), - [sym_self] = ACTIONS(1353), - [sym_super] = ACTIONS(1353), - [sym_nil] = ACTIONS(1353), - [sym_id] = ACTIONS(1353), - [sym_instancetype] = ACTIONS(1353), - [sym_Class] = ACTIONS(1353), - [sym_SEL] = ACTIONS(1353), - [sym_IMP] = ACTIONS(1353), - [sym_BOOL] = ACTIONS(1353), - [sym_auto] = ACTIONS(1353), - [anon_sym_ATautoreleasepool] = ACTIONS(1355), - [anon_sym_ATsynchronized] = ACTIONS(1355), - [anon_sym_ATtry] = ACTIONS(1355), - [anon_sym_ATcatch] = ACTIONS(1355), - [anon_sym_ATfinally] = ACTIONS(1355), - [anon_sym_ATthrow] = ACTIONS(1355), - [anon_sym_ATselector] = ACTIONS(1355), - [anon_sym_ATencode] = ACTIONS(1355), - [anon_sym_AT] = ACTIONS(1353), - [sym_YES] = ACTIONS(1353), - [sym_NO] = ACTIONS(1353), - [anon_sym___builtin_available] = ACTIONS(1353), - [anon_sym_ATavailable] = ACTIONS(1355), - [anon_sym_va_arg] = ACTIONS(1353), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [345] = { - [ts_builtin_sym_end] = ACTIONS(1671), - [sym_identifier] = ACTIONS(1669), - [aux_sym_preproc_include_token1] = ACTIONS(1671), - [aux_sym_preproc_def_token1] = ACTIONS(1671), - [anon_sym_RPAREN] = ACTIONS(1671), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1669), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1671), - [anon_sym_TILDE] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1671), - [anon_sym_CARET] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_typedef] = ACTIONS(1669), - [anon_sym_extern] = ACTIONS(1669), - [anon_sym___attribute] = ACTIONS(1669), - [anon_sym___attribute__] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1669), - [anon_sym___cdecl] = ACTIONS(1669), - [anon_sym___clrcall] = ACTIONS(1669), - [anon_sym___stdcall] = ACTIONS(1669), - [anon_sym___fastcall] = ACTIONS(1669), - [anon_sym___thiscall] = ACTIONS(1669), - [anon_sym___vectorcall] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_static] = ACTIONS(1669), - [anon_sym_auto] = ACTIONS(1669), - [anon_sym_register] = ACTIONS(1669), - [anon_sym_inline] = ACTIONS(1669), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_volatile] = ACTIONS(1669), - [anon_sym_restrict] = ACTIONS(1669), - [anon_sym__Atomic] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_out] = ACTIONS(1669), - [anon_sym_inout] = ACTIONS(1669), - [anon_sym_bycopy] = ACTIONS(1669), - [anon_sym_byref] = ACTIONS(1669), - [anon_sym_oneway] = ACTIONS(1669), - [anon_sym__Nullable] = ACTIONS(1669), - [anon_sym__Nonnull] = ACTIONS(1669), - [anon_sym__Nullable_result] = ACTIONS(1669), - [anon_sym__Null_unspecified] = ACTIONS(1669), - [anon_sym___autoreleasing] = ACTIONS(1669), - [anon_sym___nullable] = ACTIONS(1669), - [anon_sym___nonnull] = ACTIONS(1669), - [anon_sym___strong] = ACTIONS(1669), - [anon_sym___weak] = ACTIONS(1669), - [anon_sym___bridge] = ACTIONS(1669), - [anon_sym___bridge_transfer] = ACTIONS(1669), - [anon_sym___bridge_retained] = ACTIONS(1669), - [anon_sym___unsafe_unretained] = ACTIONS(1669), - [anon_sym___block] = ACTIONS(1669), - [anon_sym___kindof] = ACTIONS(1669), - [anon_sym___unused] = ACTIONS(1669), - [anon_sym__Complex] = ACTIONS(1669), - [anon_sym___complex] = ACTIONS(1669), - [anon_sym_IBOutlet] = ACTIONS(1669), - [anon_sym_IBInspectable] = ACTIONS(1669), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1669), - [anon_sym_signed] = ACTIONS(1669), - [anon_sym_unsigned] = ACTIONS(1669), - [anon_sym_long] = ACTIONS(1669), - [anon_sym_short] = ACTIONS(1669), - [sym_primitive_type] = ACTIONS(1669), - [anon_sym_enum] = ACTIONS(1669), - [anon_sym_NS_ENUM] = ACTIONS(1669), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1669), - [anon_sym_NS_OPTIONS] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1669), - [anon_sym_union] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_else] = ACTIONS(1669), - [anon_sym_switch] = ACTIONS(1669), - [anon_sym_case] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_do] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_goto] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_sizeof] = ACTIONS(1669), - [sym_number_literal] = ACTIONS(1671), - [anon_sym_L_SQUOTE] = ACTIONS(1671), - [anon_sym_u_SQUOTE] = ACTIONS(1671), - [anon_sym_U_SQUOTE] = ACTIONS(1671), - [anon_sym_u8_SQUOTE] = ACTIONS(1671), - [anon_sym_SQUOTE] = ACTIONS(1671), - [anon_sym_L_DQUOTE] = ACTIONS(1671), - [anon_sym_u_DQUOTE] = ACTIONS(1671), - [anon_sym_U_DQUOTE] = ACTIONS(1671), - [anon_sym_u8_DQUOTE] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym_true] = ACTIONS(1669), - [sym_false] = ACTIONS(1669), - [sym_null] = ACTIONS(1669), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1671), - [anon_sym_ATimport] = ACTIONS(1671), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1669), - [anon_sym_ATcompatibility_alias] = ACTIONS(1671), - [anon_sym_ATprotocol] = ACTIONS(1671), - [anon_sym_ATclass] = ACTIONS(1671), - [anon_sym_ATinterface] = ACTIONS(1671), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1669), - [sym_method_attribute_specifier] = ACTIONS(1669), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1669), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1669), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1669), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1669), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1669), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1669), - [anon_sym_NS_AVAILABLE] = ACTIONS(1669), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1669), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1669), - [anon_sym_API_AVAILABLE] = ACTIONS(1669), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1669), - [anon_sym_API_DEPRECATED] = ACTIONS(1669), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1669), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1669), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1669), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1669), - [anon_sym___deprecated_msg] = ACTIONS(1669), - [anon_sym___deprecated_enum_msg] = ACTIONS(1669), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1669), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1669), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1669), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1669), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1669), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1669), - [anon_sym_ATimplementation] = ACTIONS(1671), - [anon_sym_typeof] = ACTIONS(1669), - [anon_sym___typeof] = ACTIONS(1669), - [anon_sym___typeof__] = ACTIONS(1669), - [sym_self] = ACTIONS(1669), - [sym_super] = ACTIONS(1669), - [sym_nil] = ACTIONS(1669), - [sym_id] = ACTIONS(1669), - [sym_instancetype] = ACTIONS(1669), - [sym_Class] = ACTIONS(1669), - [sym_SEL] = ACTIONS(1669), - [sym_IMP] = ACTIONS(1669), - [sym_BOOL] = ACTIONS(1669), - [sym_auto] = ACTIONS(1669), - [anon_sym_ATautoreleasepool] = ACTIONS(1671), - [anon_sym_ATsynchronized] = ACTIONS(1671), - [anon_sym_ATtry] = ACTIONS(1671), - [anon_sym_ATcatch] = ACTIONS(1671), - [anon_sym_ATfinally] = ACTIONS(1671), - [anon_sym_ATthrow] = ACTIONS(1671), - [anon_sym_ATselector] = ACTIONS(1671), - [anon_sym_ATencode] = ACTIONS(1671), - [anon_sym_AT] = ACTIONS(1669), - [sym_YES] = ACTIONS(1669), - [sym_NO] = ACTIONS(1669), - [anon_sym___builtin_available] = ACTIONS(1669), - [anon_sym_ATavailable] = ACTIONS(1671), - [anon_sym_va_arg] = ACTIONS(1669), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [346] = { - [ts_builtin_sym_end] = ACTIONS(1275), - [sym_identifier] = ACTIONS(1273), - [aux_sym_preproc_include_token1] = ACTIONS(1275), - [aux_sym_preproc_def_token1] = ACTIONS(1275), - [anon_sym_RPAREN] = ACTIONS(1275), - [aux_sym_preproc_if_token1] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1275), - [anon_sym_TILDE] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1275), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_typedef] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym___attribute] = ACTIONS(1273), - [anon_sym___attribute__] = ACTIONS(1273), - [anon_sym___declspec] = ACTIONS(1273), - [anon_sym___cdecl] = ACTIONS(1273), - [anon_sym___clrcall] = ACTIONS(1273), - [anon_sym___stdcall] = ACTIONS(1273), - [anon_sym___fastcall] = ACTIONS(1273), - [anon_sym___thiscall] = ACTIONS(1273), - [anon_sym___vectorcall] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1275), - [anon_sym_static] = ACTIONS(1273), - [anon_sym_auto] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_inline] = ACTIONS(1273), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_volatile] = ACTIONS(1273), - [anon_sym_restrict] = ACTIONS(1273), - [anon_sym__Atomic] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), - [anon_sym_out] = ACTIONS(1273), - [anon_sym_inout] = ACTIONS(1273), - [anon_sym_bycopy] = ACTIONS(1273), - [anon_sym_byref] = ACTIONS(1273), - [anon_sym_oneway] = ACTIONS(1273), - [anon_sym__Nullable] = ACTIONS(1273), - [anon_sym__Nonnull] = ACTIONS(1273), - [anon_sym__Nullable_result] = ACTIONS(1273), - [anon_sym__Null_unspecified] = ACTIONS(1273), - [anon_sym___autoreleasing] = ACTIONS(1273), - [anon_sym___nullable] = ACTIONS(1273), - [anon_sym___nonnull] = ACTIONS(1273), - [anon_sym___strong] = ACTIONS(1273), - [anon_sym___weak] = ACTIONS(1273), - [anon_sym___bridge] = ACTIONS(1273), - [anon_sym___bridge_transfer] = ACTIONS(1273), - [anon_sym___bridge_retained] = ACTIONS(1273), - [anon_sym___unsafe_unretained] = ACTIONS(1273), - [anon_sym___block] = ACTIONS(1273), - [anon_sym___kindof] = ACTIONS(1273), - [anon_sym___unused] = ACTIONS(1273), - [anon_sym__Complex] = ACTIONS(1273), - [anon_sym___complex] = ACTIONS(1273), - [anon_sym_IBOutlet] = ACTIONS(1273), - [anon_sym_IBInspectable] = ACTIONS(1273), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1273), - [anon_sym_signed] = ACTIONS(1273), - [anon_sym_unsigned] = ACTIONS(1273), - [anon_sym_long] = ACTIONS(1273), - [anon_sym_short] = ACTIONS(1273), - [sym_primitive_type] = ACTIONS(1273), - [anon_sym_enum] = ACTIONS(1273), - [anon_sym_NS_ENUM] = ACTIONS(1273), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1273), - [anon_sym_NS_OPTIONS] = ACTIONS(1273), - [anon_sym_struct] = ACTIONS(1273), - [anon_sym_union] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_else] = ACTIONS(1273), - [anon_sym_switch] = ACTIONS(1273), - [anon_sym_case] = ACTIONS(1273), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_goto] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1273), - [sym_number_literal] = ACTIONS(1275), - [anon_sym_L_SQUOTE] = ACTIONS(1275), - [anon_sym_u_SQUOTE] = ACTIONS(1275), - [anon_sym_U_SQUOTE] = ACTIONS(1275), - [anon_sym_u8_SQUOTE] = ACTIONS(1275), - [anon_sym_SQUOTE] = ACTIONS(1275), - [anon_sym_L_DQUOTE] = ACTIONS(1275), - [anon_sym_u_DQUOTE] = ACTIONS(1275), - [anon_sym_U_DQUOTE] = ACTIONS(1275), - [anon_sym_u8_DQUOTE] = ACTIONS(1275), - [anon_sym_DQUOTE] = ACTIONS(1275), - [sym_true] = ACTIONS(1273), - [sym_false] = ACTIONS(1273), - [sym_null] = ACTIONS(1273), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1275), - [anon_sym_ATimport] = ACTIONS(1275), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1273), - [anon_sym_ATcompatibility_alias] = ACTIONS(1275), - [anon_sym_ATprotocol] = ACTIONS(1275), - [anon_sym_ATclass] = ACTIONS(1275), - [anon_sym_ATinterface] = ACTIONS(1275), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1273), - [sym_method_attribute_specifier] = ACTIONS(1273), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1273), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1273), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1273), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1273), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1273), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1273), - [anon_sym_NS_AVAILABLE] = ACTIONS(1273), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1273), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1273), - [anon_sym_API_AVAILABLE] = ACTIONS(1273), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1273), - [anon_sym_API_DEPRECATED] = ACTIONS(1273), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1273), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1273), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1273), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1273), - [anon_sym___deprecated_msg] = ACTIONS(1273), - [anon_sym___deprecated_enum_msg] = ACTIONS(1273), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1273), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1273), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1273), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1273), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1273), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1273), - [anon_sym_ATimplementation] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1273), - [anon_sym___typeof] = ACTIONS(1273), - [anon_sym___typeof__] = ACTIONS(1273), - [sym_self] = ACTIONS(1273), - [sym_super] = ACTIONS(1273), - [sym_nil] = ACTIONS(1273), - [sym_id] = ACTIONS(1273), - [sym_instancetype] = ACTIONS(1273), - [sym_Class] = ACTIONS(1273), - [sym_SEL] = ACTIONS(1273), - [sym_IMP] = ACTIONS(1273), - [sym_BOOL] = ACTIONS(1273), - [sym_auto] = ACTIONS(1273), - [anon_sym_ATautoreleasepool] = ACTIONS(1275), - [anon_sym_ATsynchronized] = ACTIONS(1275), - [anon_sym_ATtry] = ACTIONS(1275), - [anon_sym_ATcatch] = ACTIONS(1275), - [anon_sym_ATfinally] = ACTIONS(1275), - [anon_sym_ATthrow] = ACTIONS(1275), - [anon_sym_ATselector] = ACTIONS(1275), - [anon_sym_ATencode] = ACTIONS(1275), - [anon_sym_AT] = ACTIONS(1273), - [sym_YES] = ACTIONS(1273), - [sym_NO] = ACTIONS(1273), - [anon_sym___builtin_available] = ACTIONS(1273), - [anon_sym_ATavailable] = ACTIONS(1275), - [anon_sym_va_arg] = ACTIONS(1273), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [347] = { - [ts_builtin_sym_end] = ACTIONS(1359), - [sym_identifier] = ACTIONS(1357), - [aux_sym_preproc_include_token1] = ACTIONS(1359), - [aux_sym_preproc_def_token1] = ACTIONS(1359), - [anon_sym_RPAREN] = ACTIONS(1359), - [aux_sym_preproc_if_token1] = ACTIONS(1357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_typedef] = ACTIONS(1357), - [anon_sym_extern] = ACTIONS(1357), - [anon_sym___attribute] = ACTIONS(1357), - [anon_sym___attribute__] = ACTIONS(1357), - [anon_sym___declspec] = ACTIONS(1357), - [anon_sym___cdecl] = ACTIONS(1357), - [anon_sym___clrcall] = ACTIONS(1357), - [anon_sym___stdcall] = ACTIONS(1357), - [anon_sym___fastcall] = ACTIONS(1357), - [anon_sym___thiscall] = ACTIONS(1357), - [anon_sym___vectorcall] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_RBRACE] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_static] = ACTIONS(1357), - [anon_sym_auto] = ACTIONS(1357), - [anon_sym_register] = ACTIONS(1357), - [anon_sym_inline] = ACTIONS(1357), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_volatile] = ACTIONS(1357), - [anon_sym_restrict] = ACTIONS(1357), - [anon_sym__Atomic] = ACTIONS(1357), - [anon_sym_in] = ACTIONS(1357), - [anon_sym_out] = ACTIONS(1357), - [anon_sym_inout] = ACTIONS(1357), - [anon_sym_bycopy] = ACTIONS(1357), - [anon_sym_byref] = ACTIONS(1357), - [anon_sym_oneway] = ACTIONS(1357), - [anon_sym__Nullable] = ACTIONS(1357), - [anon_sym__Nonnull] = ACTIONS(1357), - [anon_sym__Nullable_result] = ACTIONS(1357), - [anon_sym__Null_unspecified] = ACTIONS(1357), - [anon_sym___autoreleasing] = ACTIONS(1357), - [anon_sym___nullable] = ACTIONS(1357), - [anon_sym___nonnull] = ACTIONS(1357), - [anon_sym___strong] = ACTIONS(1357), - [anon_sym___weak] = ACTIONS(1357), - [anon_sym___bridge] = ACTIONS(1357), - [anon_sym___bridge_transfer] = ACTIONS(1357), - [anon_sym___bridge_retained] = ACTIONS(1357), - [anon_sym___unsafe_unretained] = ACTIONS(1357), - [anon_sym___block] = ACTIONS(1357), - [anon_sym___kindof] = ACTIONS(1357), - [anon_sym___unused] = ACTIONS(1357), - [anon_sym__Complex] = ACTIONS(1357), - [anon_sym___complex] = ACTIONS(1357), - [anon_sym_IBOutlet] = ACTIONS(1357), - [anon_sym_IBInspectable] = ACTIONS(1357), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1357), - [anon_sym_signed] = ACTIONS(1357), - [anon_sym_unsigned] = ACTIONS(1357), - [anon_sym_long] = ACTIONS(1357), - [anon_sym_short] = ACTIONS(1357), - [sym_primitive_type] = ACTIONS(1357), - [anon_sym_enum] = ACTIONS(1357), - [anon_sym_NS_ENUM] = ACTIONS(1357), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1357), - [anon_sym_NS_OPTIONS] = ACTIONS(1357), - [anon_sym_struct] = ACTIONS(1357), - [anon_sym_union] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1357), - [anon_sym_else] = ACTIONS(1357), - [anon_sym_switch] = ACTIONS(1357), - [anon_sym_case] = ACTIONS(1357), - [anon_sym_default] = ACTIONS(1357), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_do] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_return] = ACTIONS(1357), - [anon_sym_break] = ACTIONS(1357), - [anon_sym_continue] = ACTIONS(1357), - [anon_sym_goto] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [anon_sym_sizeof] = ACTIONS(1357), - [sym_number_literal] = ACTIONS(1359), - [anon_sym_L_SQUOTE] = ACTIONS(1359), - [anon_sym_u_SQUOTE] = ACTIONS(1359), - [anon_sym_U_SQUOTE] = ACTIONS(1359), - [anon_sym_u8_SQUOTE] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_L_DQUOTE] = ACTIONS(1359), - [anon_sym_u_DQUOTE] = ACTIONS(1359), - [anon_sym_U_DQUOTE] = ACTIONS(1359), - [anon_sym_u8_DQUOTE] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [sym_true] = ACTIONS(1357), - [sym_false] = ACTIONS(1357), - [sym_null] = ACTIONS(1357), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1359), - [anon_sym_ATimport] = ACTIONS(1359), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1357), - [anon_sym_ATcompatibility_alias] = ACTIONS(1359), - [anon_sym_ATprotocol] = ACTIONS(1359), - [anon_sym_ATclass] = ACTIONS(1359), - [anon_sym_ATinterface] = ACTIONS(1359), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1357), - [sym_method_attribute_specifier] = ACTIONS(1357), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1357), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1357), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1357), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1357), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1357), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1357), - [anon_sym_NS_AVAILABLE] = ACTIONS(1357), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1357), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1357), - [anon_sym_API_AVAILABLE] = ACTIONS(1357), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1357), - [anon_sym_API_DEPRECATED] = ACTIONS(1357), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1357), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1357), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1357), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1357), - [anon_sym___deprecated_msg] = ACTIONS(1357), - [anon_sym___deprecated_enum_msg] = ACTIONS(1357), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1357), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1357), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1357), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1357), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1357), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1357), - [anon_sym_ATimplementation] = ACTIONS(1359), - [anon_sym_typeof] = ACTIONS(1357), - [anon_sym___typeof] = ACTIONS(1357), - [anon_sym___typeof__] = ACTIONS(1357), - [sym_self] = ACTIONS(1357), - [sym_super] = ACTIONS(1357), - [sym_nil] = ACTIONS(1357), - [sym_id] = ACTIONS(1357), - [sym_instancetype] = ACTIONS(1357), - [sym_Class] = ACTIONS(1357), - [sym_SEL] = ACTIONS(1357), - [sym_IMP] = ACTIONS(1357), - [sym_BOOL] = ACTIONS(1357), - [sym_auto] = ACTIONS(1357), - [anon_sym_ATautoreleasepool] = ACTIONS(1359), - [anon_sym_ATsynchronized] = ACTIONS(1359), - [anon_sym_ATtry] = ACTIONS(1359), - [anon_sym_ATcatch] = ACTIONS(1359), - [anon_sym_ATfinally] = ACTIONS(1359), - [anon_sym_ATthrow] = ACTIONS(1359), - [anon_sym_ATselector] = ACTIONS(1359), - [anon_sym_ATencode] = ACTIONS(1359), - [anon_sym_AT] = ACTIONS(1357), - [sym_YES] = ACTIONS(1357), - [sym_NO] = ACTIONS(1357), - [anon_sym___builtin_available] = ACTIONS(1357), - [anon_sym_ATavailable] = ACTIONS(1359), - [anon_sym_va_arg] = ACTIONS(1357), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [348] = { - [ts_builtin_sym_end] = ACTIONS(1299), - [sym_identifier] = ACTIONS(1297), - [aux_sym_preproc_include_token1] = ACTIONS(1299), - [aux_sym_preproc_def_token1] = ACTIONS(1299), - [anon_sym_RPAREN] = ACTIONS(1299), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1297), - [anon_sym_LPAREN2] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_STAR] = ACTIONS(1299), - [anon_sym_CARET] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1299), - [anon_sym_typedef] = ACTIONS(1297), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym___attribute] = ACTIONS(1297), - [anon_sym___attribute__] = ACTIONS(1297), - [anon_sym___declspec] = ACTIONS(1297), - [anon_sym___cdecl] = ACTIONS(1297), - [anon_sym___clrcall] = ACTIONS(1297), - [anon_sym___stdcall] = ACTIONS(1297), - [anon_sym___fastcall] = ACTIONS(1297), - [anon_sym___thiscall] = ACTIONS(1297), - [anon_sym___vectorcall] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_RBRACE] = ACTIONS(1299), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_auto] = ACTIONS(1297), - [anon_sym_register] = ACTIONS(1297), - [anon_sym_inline] = ACTIONS(1297), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_volatile] = ACTIONS(1297), - [anon_sym_restrict] = ACTIONS(1297), - [anon_sym__Atomic] = ACTIONS(1297), - [anon_sym_in] = ACTIONS(1297), - [anon_sym_out] = ACTIONS(1297), - [anon_sym_inout] = ACTIONS(1297), - [anon_sym_bycopy] = ACTIONS(1297), - [anon_sym_byref] = ACTIONS(1297), - [anon_sym_oneway] = ACTIONS(1297), - [anon_sym__Nullable] = ACTIONS(1297), - [anon_sym__Nonnull] = ACTIONS(1297), - [anon_sym__Nullable_result] = ACTIONS(1297), - [anon_sym__Null_unspecified] = ACTIONS(1297), - [anon_sym___autoreleasing] = ACTIONS(1297), - [anon_sym___nullable] = ACTIONS(1297), - [anon_sym___nonnull] = ACTIONS(1297), - [anon_sym___strong] = ACTIONS(1297), - [anon_sym___weak] = ACTIONS(1297), - [anon_sym___bridge] = ACTIONS(1297), - [anon_sym___bridge_transfer] = ACTIONS(1297), - [anon_sym___bridge_retained] = ACTIONS(1297), - [anon_sym___unsafe_unretained] = ACTIONS(1297), - [anon_sym___block] = ACTIONS(1297), - [anon_sym___kindof] = ACTIONS(1297), - [anon_sym___unused] = ACTIONS(1297), - [anon_sym__Complex] = ACTIONS(1297), - [anon_sym___complex] = ACTIONS(1297), - [anon_sym_IBOutlet] = ACTIONS(1297), - [anon_sym_IBInspectable] = ACTIONS(1297), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1297), - [anon_sym_unsigned] = ACTIONS(1297), - [anon_sym_long] = ACTIONS(1297), - [anon_sym_short] = ACTIONS(1297), - [sym_primitive_type] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_NS_ENUM] = ACTIONS(1297), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1297), - [anon_sym_NS_OPTIONS] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_else] = ACTIONS(1297), - [anon_sym_switch] = ACTIONS(1297), - [anon_sym_case] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_do] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_goto] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_sizeof] = ACTIONS(1297), - [sym_number_literal] = ACTIONS(1299), - [anon_sym_L_SQUOTE] = ACTIONS(1299), - [anon_sym_u_SQUOTE] = ACTIONS(1299), - [anon_sym_U_SQUOTE] = ACTIONS(1299), - [anon_sym_u8_SQUOTE] = ACTIONS(1299), - [anon_sym_SQUOTE] = ACTIONS(1299), - [anon_sym_L_DQUOTE] = ACTIONS(1299), - [anon_sym_u_DQUOTE] = ACTIONS(1299), - [anon_sym_U_DQUOTE] = ACTIONS(1299), - [anon_sym_u8_DQUOTE] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [sym_null] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1299), - [anon_sym_ATimport] = ACTIONS(1299), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1297), - [anon_sym_ATcompatibility_alias] = ACTIONS(1299), - [anon_sym_ATprotocol] = ACTIONS(1299), - [anon_sym_ATclass] = ACTIONS(1299), - [anon_sym_ATinterface] = ACTIONS(1299), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1297), - [sym_method_attribute_specifier] = ACTIONS(1297), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1297), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1297), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1297), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1297), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1297), - [anon_sym_NS_AVAILABLE] = ACTIONS(1297), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1297), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_API_AVAILABLE] = ACTIONS(1297), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_API_DEPRECATED] = ACTIONS(1297), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1297), - [anon_sym___deprecated_msg] = ACTIONS(1297), - [anon_sym___deprecated_enum_msg] = ACTIONS(1297), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1297), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1297), - [anon_sym_ATimplementation] = ACTIONS(1299), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym___typeof] = ACTIONS(1297), - [anon_sym___typeof__] = ACTIONS(1297), - [sym_self] = ACTIONS(1297), - [sym_super] = ACTIONS(1297), - [sym_nil] = ACTIONS(1297), - [sym_id] = ACTIONS(1297), - [sym_instancetype] = ACTIONS(1297), - [sym_Class] = ACTIONS(1297), - [sym_SEL] = ACTIONS(1297), - [sym_IMP] = ACTIONS(1297), - [sym_BOOL] = ACTIONS(1297), - [sym_auto] = ACTIONS(1297), - [anon_sym_ATautoreleasepool] = ACTIONS(1299), - [anon_sym_ATsynchronized] = ACTIONS(1299), - [anon_sym_ATtry] = ACTIONS(1299), - [anon_sym_ATcatch] = ACTIONS(1299), - [anon_sym_ATfinally] = ACTIONS(1299), - [anon_sym_ATthrow] = ACTIONS(1299), - [anon_sym_ATselector] = ACTIONS(1299), - [anon_sym_ATencode] = ACTIONS(1299), - [anon_sym_AT] = ACTIONS(1297), - [sym_YES] = ACTIONS(1297), - [sym_NO] = ACTIONS(1297), - [anon_sym___builtin_available] = ACTIONS(1297), - [anon_sym_ATavailable] = ACTIONS(1299), - [anon_sym_va_arg] = ACTIONS(1297), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [349] = { - [ts_builtin_sym_end] = ACTIONS(1299), - [sym_identifier] = ACTIONS(1297), - [aux_sym_preproc_include_token1] = ACTIONS(1299), - [aux_sym_preproc_def_token1] = ACTIONS(1299), - [anon_sym_RPAREN] = ACTIONS(1299), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1297), - [anon_sym_LPAREN2] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_STAR] = ACTIONS(1299), - [anon_sym_CARET] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1299), - [anon_sym_typedef] = ACTIONS(1297), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym___attribute] = ACTIONS(1297), - [anon_sym___attribute__] = ACTIONS(1297), - [anon_sym___declspec] = ACTIONS(1297), - [anon_sym___cdecl] = ACTIONS(1297), - [anon_sym___clrcall] = ACTIONS(1297), - [anon_sym___stdcall] = ACTIONS(1297), - [anon_sym___fastcall] = ACTIONS(1297), - [anon_sym___thiscall] = ACTIONS(1297), - [anon_sym___vectorcall] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_RBRACE] = ACTIONS(1299), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_auto] = ACTIONS(1297), - [anon_sym_register] = ACTIONS(1297), - [anon_sym_inline] = ACTIONS(1297), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_volatile] = ACTIONS(1297), - [anon_sym_restrict] = ACTIONS(1297), - [anon_sym__Atomic] = ACTIONS(1297), - [anon_sym_in] = ACTIONS(1297), - [anon_sym_out] = ACTIONS(1297), - [anon_sym_inout] = ACTIONS(1297), - [anon_sym_bycopy] = ACTIONS(1297), - [anon_sym_byref] = ACTIONS(1297), - [anon_sym_oneway] = ACTIONS(1297), - [anon_sym__Nullable] = ACTIONS(1297), - [anon_sym__Nonnull] = ACTIONS(1297), - [anon_sym__Nullable_result] = ACTIONS(1297), - [anon_sym__Null_unspecified] = ACTIONS(1297), - [anon_sym___autoreleasing] = ACTIONS(1297), - [anon_sym___nullable] = ACTIONS(1297), - [anon_sym___nonnull] = ACTIONS(1297), - [anon_sym___strong] = ACTIONS(1297), - [anon_sym___weak] = ACTIONS(1297), - [anon_sym___bridge] = ACTIONS(1297), - [anon_sym___bridge_transfer] = ACTIONS(1297), - [anon_sym___bridge_retained] = ACTIONS(1297), - [anon_sym___unsafe_unretained] = ACTIONS(1297), - [anon_sym___block] = ACTIONS(1297), - [anon_sym___kindof] = ACTIONS(1297), - [anon_sym___unused] = ACTIONS(1297), - [anon_sym__Complex] = ACTIONS(1297), - [anon_sym___complex] = ACTIONS(1297), - [anon_sym_IBOutlet] = ACTIONS(1297), - [anon_sym_IBInspectable] = ACTIONS(1297), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1297), - [anon_sym_unsigned] = ACTIONS(1297), - [anon_sym_long] = ACTIONS(1297), - [anon_sym_short] = ACTIONS(1297), - [sym_primitive_type] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_NS_ENUM] = ACTIONS(1297), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1297), - [anon_sym_NS_OPTIONS] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_else] = ACTIONS(1297), - [anon_sym_switch] = ACTIONS(1297), - [anon_sym_case] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_do] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_goto] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_sizeof] = ACTIONS(1297), - [sym_number_literal] = ACTIONS(1299), - [anon_sym_L_SQUOTE] = ACTIONS(1299), - [anon_sym_u_SQUOTE] = ACTIONS(1299), - [anon_sym_U_SQUOTE] = ACTIONS(1299), - [anon_sym_u8_SQUOTE] = ACTIONS(1299), - [anon_sym_SQUOTE] = ACTIONS(1299), - [anon_sym_L_DQUOTE] = ACTIONS(1299), - [anon_sym_u_DQUOTE] = ACTIONS(1299), - [anon_sym_U_DQUOTE] = ACTIONS(1299), - [anon_sym_u8_DQUOTE] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [sym_null] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1299), - [anon_sym_ATimport] = ACTIONS(1299), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1297), - [anon_sym_ATcompatibility_alias] = ACTIONS(1299), - [anon_sym_ATprotocol] = ACTIONS(1299), - [anon_sym_ATclass] = ACTIONS(1299), - [anon_sym_ATinterface] = ACTIONS(1299), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1297), - [sym_method_attribute_specifier] = ACTIONS(1297), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1297), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1297), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1297), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1297), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1297), - [anon_sym_NS_AVAILABLE] = ACTIONS(1297), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1297), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_API_AVAILABLE] = ACTIONS(1297), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_API_DEPRECATED] = ACTIONS(1297), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1297), - [anon_sym___deprecated_msg] = ACTIONS(1297), - [anon_sym___deprecated_enum_msg] = ACTIONS(1297), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1297), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1297), - [anon_sym_ATimplementation] = ACTIONS(1299), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym___typeof] = ACTIONS(1297), - [anon_sym___typeof__] = ACTIONS(1297), - [sym_self] = ACTIONS(1297), - [sym_super] = ACTIONS(1297), - [sym_nil] = ACTIONS(1297), - [sym_id] = ACTIONS(1297), - [sym_instancetype] = ACTIONS(1297), - [sym_Class] = ACTIONS(1297), - [sym_SEL] = ACTIONS(1297), - [sym_IMP] = ACTIONS(1297), - [sym_BOOL] = ACTIONS(1297), - [sym_auto] = ACTIONS(1297), - [anon_sym_ATautoreleasepool] = ACTIONS(1299), - [anon_sym_ATsynchronized] = ACTIONS(1299), - [anon_sym_ATtry] = ACTIONS(1299), - [anon_sym_ATcatch] = ACTIONS(1299), - [anon_sym_ATfinally] = ACTIONS(1299), - [anon_sym_ATthrow] = ACTIONS(1299), - [anon_sym_ATselector] = ACTIONS(1299), - [anon_sym_ATencode] = ACTIONS(1299), - [anon_sym_AT] = ACTIONS(1297), - [sym_YES] = ACTIONS(1297), - [sym_NO] = ACTIONS(1297), - [anon_sym___builtin_available] = ACTIONS(1297), - [anon_sym_ATavailable] = ACTIONS(1299), - [anon_sym_va_arg] = ACTIONS(1297), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [350] = { - [ts_builtin_sym_end] = ACTIONS(1363), - [sym_identifier] = ACTIONS(1361), - [aux_sym_preproc_include_token1] = ACTIONS(1363), - [aux_sym_preproc_def_token1] = ACTIONS(1363), - [anon_sym_RPAREN] = ACTIONS(1363), - [aux_sym_preproc_if_token1] = ACTIONS(1361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), - [anon_sym_LPAREN2] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1361), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1363), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_typedef] = ACTIONS(1361), - [anon_sym_extern] = ACTIONS(1361), - [anon_sym___attribute] = ACTIONS(1361), - [anon_sym___attribute__] = ACTIONS(1361), - [anon_sym___declspec] = ACTIONS(1361), - [anon_sym___cdecl] = ACTIONS(1361), - [anon_sym___clrcall] = ACTIONS(1361), - [anon_sym___stdcall] = ACTIONS(1361), - [anon_sym___fastcall] = ACTIONS(1361), - [anon_sym___thiscall] = ACTIONS(1361), - [anon_sym___vectorcall] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_RBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1363), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_auto] = ACTIONS(1361), - [anon_sym_register] = ACTIONS(1361), - [anon_sym_inline] = ACTIONS(1361), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1361), - [anon_sym_const] = ACTIONS(1361), - [anon_sym_volatile] = ACTIONS(1361), - [anon_sym_restrict] = ACTIONS(1361), - [anon_sym__Atomic] = ACTIONS(1361), - [anon_sym_in] = ACTIONS(1361), - [anon_sym_out] = ACTIONS(1361), - [anon_sym_inout] = ACTIONS(1361), - [anon_sym_bycopy] = ACTIONS(1361), - [anon_sym_byref] = ACTIONS(1361), - [anon_sym_oneway] = ACTIONS(1361), - [anon_sym__Nullable] = ACTIONS(1361), - [anon_sym__Nonnull] = ACTIONS(1361), - [anon_sym__Nullable_result] = ACTIONS(1361), - [anon_sym__Null_unspecified] = ACTIONS(1361), - [anon_sym___autoreleasing] = ACTIONS(1361), - [anon_sym___nullable] = ACTIONS(1361), - [anon_sym___nonnull] = ACTIONS(1361), - [anon_sym___strong] = ACTIONS(1361), - [anon_sym___weak] = ACTIONS(1361), - [anon_sym___bridge] = ACTIONS(1361), - [anon_sym___bridge_transfer] = ACTIONS(1361), - [anon_sym___bridge_retained] = ACTIONS(1361), - [anon_sym___unsafe_unretained] = ACTIONS(1361), - [anon_sym___block] = ACTIONS(1361), - [anon_sym___kindof] = ACTIONS(1361), - [anon_sym___unused] = ACTIONS(1361), - [anon_sym__Complex] = ACTIONS(1361), - [anon_sym___complex] = ACTIONS(1361), - [anon_sym_IBOutlet] = ACTIONS(1361), - [anon_sym_IBInspectable] = ACTIONS(1361), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1361), - [anon_sym_signed] = ACTIONS(1361), - [anon_sym_unsigned] = ACTIONS(1361), - [anon_sym_long] = ACTIONS(1361), - [anon_sym_short] = ACTIONS(1361), - [sym_primitive_type] = ACTIONS(1361), - [anon_sym_enum] = ACTIONS(1361), - [anon_sym_NS_ENUM] = ACTIONS(1361), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1361), - [anon_sym_NS_OPTIONS] = ACTIONS(1361), - [anon_sym_struct] = ACTIONS(1361), - [anon_sym_union] = ACTIONS(1361), - [anon_sym_if] = ACTIONS(1361), - [anon_sym_else] = ACTIONS(1361), - [anon_sym_switch] = ACTIONS(1361), - [anon_sym_case] = ACTIONS(1361), - [anon_sym_default] = ACTIONS(1361), - [anon_sym_while] = ACTIONS(1361), - [anon_sym_do] = ACTIONS(1361), - [anon_sym_for] = ACTIONS(1361), - [anon_sym_return] = ACTIONS(1361), - [anon_sym_break] = ACTIONS(1361), - [anon_sym_continue] = ACTIONS(1361), - [anon_sym_goto] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(1363), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_sizeof] = ACTIONS(1361), - [sym_number_literal] = ACTIONS(1363), - [anon_sym_L_SQUOTE] = ACTIONS(1363), - [anon_sym_u_SQUOTE] = ACTIONS(1363), - [anon_sym_U_SQUOTE] = ACTIONS(1363), - [anon_sym_u8_SQUOTE] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1363), - [anon_sym_L_DQUOTE] = ACTIONS(1363), - [anon_sym_u_DQUOTE] = ACTIONS(1363), - [anon_sym_U_DQUOTE] = ACTIONS(1363), - [anon_sym_u8_DQUOTE] = ACTIONS(1363), - [anon_sym_DQUOTE] = ACTIONS(1363), - [sym_true] = ACTIONS(1361), - [sym_false] = ACTIONS(1361), - [sym_null] = ACTIONS(1361), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1363), - [anon_sym_ATimport] = ACTIONS(1363), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1361), - [anon_sym_ATcompatibility_alias] = ACTIONS(1363), - [anon_sym_ATprotocol] = ACTIONS(1363), - [anon_sym_ATclass] = ACTIONS(1363), - [anon_sym_ATinterface] = ACTIONS(1363), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1361), - [sym_method_attribute_specifier] = ACTIONS(1361), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1361), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1361), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1361), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1361), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1361), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1361), - [anon_sym_NS_AVAILABLE] = ACTIONS(1361), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1361), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1361), - [anon_sym_API_AVAILABLE] = ACTIONS(1361), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1361), - [anon_sym_API_DEPRECATED] = ACTIONS(1361), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1361), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1361), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1361), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1361), - [anon_sym___deprecated_msg] = ACTIONS(1361), - [anon_sym___deprecated_enum_msg] = ACTIONS(1361), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1361), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1361), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1361), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1361), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1361), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1361), - [anon_sym_ATimplementation] = ACTIONS(1363), - [anon_sym_typeof] = ACTIONS(1361), - [anon_sym___typeof] = ACTIONS(1361), - [anon_sym___typeof__] = ACTIONS(1361), - [sym_self] = ACTIONS(1361), - [sym_super] = ACTIONS(1361), - [sym_nil] = ACTIONS(1361), - [sym_id] = ACTIONS(1361), - [sym_instancetype] = ACTIONS(1361), - [sym_Class] = ACTIONS(1361), - [sym_SEL] = ACTIONS(1361), - [sym_IMP] = ACTIONS(1361), - [sym_BOOL] = ACTIONS(1361), - [sym_auto] = ACTIONS(1361), - [anon_sym_ATautoreleasepool] = ACTIONS(1363), - [anon_sym_ATsynchronized] = ACTIONS(1363), - [anon_sym_ATtry] = ACTIONS(1363), - [anon_sym_ATcatch] = ACTIONS(1363), - [anon_sym_ATfinally] = ACTIONS(1363), - [anon_sym_ATthrow] = ACTIONS(1363), - [anon_sym_ATselector] = ACTIONS(1363), - [anon_sym_ATencode] = ACTIONS(1363), - [anon_sym_AT] = ACTIONS(1361), - [sym_YES] = ACTIONS(1361), - [sym_NO] = ACTIONS(1361), - [anon_sym___builtin_available] = ACTIONS(1361), - [anon_sym_ATavailable] = ACTIONS(1363), - [anon_sym_va_arg] = ACTIONS(1361), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [351] = { - [ts_builtin_sym_end] = ACTIONS(1295), - [sym_identifier] = ACTIONS(1293), - [aux_sym_preproc_include_token1] = ACTIONS(1295), - [aux_sym_preproc_def_token1] = ACTIONS(1295), - [anon_sym_RPAREN] = ACTIONS(1295), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1293), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1293), - [anon_sym_LPAREN2] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_TILDE] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_STAR] = ACTIONS(1295), - [anon_sym_CARET] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(1295), - [anon_sym_SEMI] = ACTIONS(1295), - [anon_sym_typedef] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1293), - [anon_sym___attribute] = ACTIONS(1293), - [anon_sym___attribute__] = ACTIONS(1293), - [anon_sym___declspec] = ACTIONS(1293), - [anon_sym___cdecl] = ACTIONS(1293), - [anon_sym___clrcall] = ACTIONS(1293), - [anon_sym___stdcall] = ACTIONS(1293), - [anon_sym___fastcall] = ACTIONS(1293), - [anon_sym___thiscall] = ACTIONS(1293), - [anon_sym___vectorcall] = ACTIONS(1293), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_RBRACE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1295), - [anon_sym_static] = ACTIONS(1293), - [anon_sym_auto] = ACTIONS(1293), - [anon_sym_register] = ACTIONS(1293), - [anon_sym_inline] = ACTIONS(1293), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_volatile] = ACTIONS(1293), - [anon_sym_restrict] = ACTIONS(1293), - [anon_sym__Atomic] = ACTIONS(1293), - [anon_sym_in] = ACTIONS(1293), - [anon_sym_out] = ACTIONS(1293), - [anon_sym_inout] = ACTIONS(1293), - [anon_sym_bycopy] = ACTIONS(1293), - [anon_sym_byref] = ACTIONS(1293), - [anon_sym_oneway] = ACTIONS(1293), - [anon_sym__Nullable] = ACTIONS(1293), - [anon_sym__Nonnull] = ACTIONS(1293), - [anon_sym__Nullable_result] = ACTIONS(1293), - [anon_sym__Null_unspecified] = ACTIONS(1293), - [anon_sym___autoreleasing] = ACTIONS(1293), - [anon_sym___nullable] = ACTIONS(1293), - [anon_sym___nonnull] = ACTIONS(1293), - [anon_sym___strong] = ACTIONS(1293), - [anon_sym___weak] = ACTIONS(1293), - [anon_sym___bridge] = ACTIONS(1293), - [anon_sym___bridge_transfer] = ACTIONS(1293), - [anon_sym___bridge_retained] = ACTIONS(1293), - [anon_sym___unsafe_unretained] = ACTIONS(1293), - [anon_sym___block] = ACTIONS(1293), - [anon_sym___kindof] = ACTIONS(1293), - [anon_sym___unused] = ACTIONS(1293), - [anon_sym__Complex] = ACTIONS(1293), - [anon_sym___complex] = ACTIONS(1293), - [anon_sym_IBOutlet] = ACTIONS(1293), - [anon_sym_IBInspectable] = ACTIONS(1293), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1293), - [anon_sym_signed] = ACTIONS(1293), - [anon_sym_unsigned] = ACTIONS(1293), - [anon_sym_long] = ACTIONS(1293), - [anon_sym_short] = ACTIONS(1293), - [sym_primitive_type] = ACTIONS(1293), - [anon_sym_enum] = ACTIONS(1293), - [anon_sym_NS_ENUM] = ACTIONS(1293), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1293), - [anon_sym_NS_OPTIONS] = ACTIONS(1293), - [anon_sym_struct] = ACTIONS(1293), - [anon_sym_union] = ACTIONS(1293), - [anon_sym_if] = ACTIONS(1293), - [anon_sym_else] = ACTIONS(1293), - [anon_sym_switch] = ACTIONS(1293), - [anon_sym_case] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(1293), - [anon_sym_while] = ACTIONS(1293), - [anon_sym_do] = ACTIONS(1293), - [anon_sym_for] = ACTIONS(1293), - [anon_sym_return] = ACTIONS(1293), - [anon_sym_break] = ACTIONS(1293), - [anon_sym_continue] = ACTIONS(1293), - [anon_sym_goto] = ACTIONS(1293), - [anon_sym_DASH_DASH] = ACTIONS(1295), - [anon_sym_PLUS_PLUS] = ACTIONS(1295), - [anon_sym_sizeof] = ACTIONS(1293), - [sym_number_literal] = ACTIONS(1295), - [anon_sym_L_SQUOTE] = ACTIONS(1295), - [anon_sym_u_SQUOTE] = ACTIONS(1295), - [anon_sym_U_SQUOTE] = ACTIONS(1295), - [anon_sym_u8_SQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1295), - [anon_sym_L_DQUOTE] = ACTIONS(1295), - [anon_sym_u_DQUOTE] = ACTIONS(1295), - [anon_sym_U_DQUOTE] = ACTIONS(1295), - [anon_sym_u8_DQUOTE] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), - [sym_null] = ACTIONS(1293), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1295), - [anon_sym_ATimport] = ACTIONS(1295), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1293), - [anon_sym_ATcompatibility_alias] = ACTIONS(1295), - [anon_sym_ATprotocol] = ACTIONS(1295), - [anon_sym_ATclass] = ACTIONS(1295), - [anon_sym_ATinterface] = ACTIONS(1295), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1293), - [sym_method_attribute_specifier] = ACTIONS(1293), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1293), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1293), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1293), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1293), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1293), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1293), - [anon_sym_NS_AVAILABLE] = ACTIONS(1293), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1293), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1293), - [anon_sym_API_AVAILABLE] = ACTIONS(1293), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1293), - [anon_sym_API_DEPRECATED] = ACTIONS(1293), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1293), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1293), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1293), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1293), - [anon_sym___deprecated_msg] = ACTIONS(1293), - [anon_sym___deprecated_enum_msg] = ACTIONS(1293), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1293), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1293), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1293), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1293), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1293), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1293), - [anon_sym_ATimplementation] = ACTIONS(1295), - [anon_sym_typeof] = ACTIONS(1293), - [anon_sym___typeof] = ACTIONS(1293), - [anon_sym___typeof__] = ACTIONS(1293), - [sym_self] = ACTIONS(1293), - [sym_super] = ACTIONS(1293), - [sym_nil] = ACTIONS(1293), - [sym_id] = ACTIONS(1293), - [sym_instancetype] = ACTIONS(1293), - [sym_Class] = ACTIONS(1293), - [sym_SEL] = ACTIONS(1293), - [sym_IMP] = ACTIONS(1293), - [sym_BOOL] = ACTIONS(1293), - [sym_auto] = ACTIONS(1293), - [anon_sym_ATautoreleasepool] = ACTIONS(1295), - [anon_sym_ATsynchronized] = ACTIONS(1295), - [anon_sym_ATtry] = ACTIONS(1295), - [anon_sym_ATcatch] = ACTIONS(1295), - [anon_sym_ATfinally] = ACTIONS(1295), - [anon_sym_ATthrow] = ACTIONS(1295), - [anon_sym_ATselector] = ACTIONS(1295), - [anon_sym_ATencode] = ACTIONS(1295), - [anon_sym_AT] = ACTIONS(1293), - [sym_YES] = ACTIONS(1293), - [sym_NO] = ACTIONS(1293), - [anon_sym___builtin_available] = ACTIONS(1293), - [anon_sym_ATavailable] = ACTIONS(1295), - [anon_sym_va_arg] = ACTIONS(1293), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [352] = { + [281] = { [ts_builtin_sym_end] = ACTIONS(1651), [sym_identifier] = ACTIONS(1649), [aux_sym_preproc_include_token1] = ACTIONS(1651), @@ -87803,9 +75265,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1649), [sym_primitive_type] = ACTIONS(1649), [anon_sym_enum] = ACTIONS(1649), - [anon_sym_NS_ENUM] = ACTIONS(1649), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1649), - [anon_sym_NS_OPTIONS] = ACTIONS(1649), [anon_sym_struct] = ACTIONS(1649), [anon_sym_union] = ACTIONS(1649), [anon_sym_if] = ACTIONS(1649), @@ -87872,6 +75331,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1649), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1649), [anon_sym_ATimplementation] = ACTIONS(1651), + [anon_sym_NS_ENUM] = ACTIONS(1649), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1649), + [anon_sym_NS_OPTIONS] = ACTIONS(1649), [anon_sym_typeof] = ACTIONS(1649), [anon_sym___typeof] = ACTIONS(1649), [anon_sym___typeof__] = ACTIONS(1649), @@ -87906,176 +75368,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [353] = { - [ts_builtin_sym_end] = ACTIONS(1291), - [sym_identifier] = ACTIONS(1289), - [aux_sym_preproc_include_token1] = ACTIONS(1291), - [aux_sym_preproc_def_token1] = ACTIONS(1291), - [anon_sym_RPAREN] = ACTIONS(1291), - [aux_sym_preproc_if_token1] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1289), - [anon_sym_LPAREN2] = ACTIONS(1291), - [anon_sym_BANG] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1291), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1291), - [anon_sym_AMP] = ACTIONS(1291), - [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym_typedef] = ACTIONS(1289), - [anon_sym_extern] = ACTIONS(1289), - [anon_sym___attribute] = ACTIONS(1289), - [anon_sym___attribute__] = ACTIONS(1289), - [anon_sym___declspec] = ACTIONS(1289), - [anon_sym___cdecl] = ACTIONS(1289), - [anon_sym___clrcall] = ACTIONS(1289), - [anon_sym___stdcall] = ACTIONS(1289), - [anon_sym___fastcall] = ACTIONS(1289), - [anon_sym___thiscall] = ACTIONS(1289), - [anon_sym___vectorcall] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_RBRACE] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1291), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_auto] = ACTIONS(1289), - [anon_sym_register] = ACTIONS(1289), - [anon_sym_inline] = ACTIONS(1289), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1289), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_volatile] = ACTIONS(1289), - [anon_sym_restrict] = ACTIONS(1289), - [anon_sym__Atomic] = ACTIONS(1289), - [anon_sym_in] = ACTIONS(1289), - [anon_sym_out] = ACTIONS(1289), - [anon_sym_inout] = ACTIONS(1289), - [anon_sym_bycopy] = ACTIONS(1289), - [anon_sym_byref] = ACTIONS(1289), - [anon_sym_oneway] = ACTIONS(1289), - [anon_sym__Nullable] = ACTIONS(1289), - [anon_sym__Nonnull] = ACTIONS(1289), - [anon_sym__Nullable_result] = ACTIONS(1289), - [anon_sym__Null_unspecified] = ACTIONS(1289), - [anon_sym___autoreleasing] = ACTIONS(1289), - [anon_sym___nullable] = ACTIONS(1289), - [anon_sym___nonnull] = ACTIONS(1289), - [anon_sym___strong] = ACTIONS(1289), - [anon_sym___weak] = ACTIONS(1289), - [anon_sym___bridge] = ACTIONS(1289), - [anon_sym___bridge_transfer] = ACTIONS(1289), - [anon_sym___bridge_retained] = ACTIONS(1289), - [anon_sym___unsafe_unretained] = ACTIONS(1289), - [anon_sym___block] = ACTIONS(1289), - [anon_sym___kindof] = ACTIONS(1289), - [anon_sym___unused] = ACTIONS(1289), - [anon_sym__Complex] = ACTIONS(1289), - [anon_sym___complex] = ACTIONS(1289), - [anon_sym_IBOutlet] = ACTIONS(1289), - [anon_sym_IBInspectable] = ACTIONS(1289), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1289), - [anon_sym_signed] = ACTIONS(1289), - [anon_sym_unsigned] = ACTIONS(1289), - [anon_sym_long] = ACTIONS(1289), - [anon_sym_short] = ACTIONS(1289), - [sym_primitive_type] = ACTIONS(1289), - [anon_sym_enum] = ACTIONS(1289), - [anon_sym_NS_ENUM] = ACTIONS(1289), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1289), - [anon_sym_NS_OPTIONS] = ACTIONS(1289), - [anon_sym_struct] = ACTIONS(1289), - [anon_sym_union] = ACTIONS(1289), - [anon_sym_if] = ACTIONS(1289), - [anon_sym_else] = ACTIONS(1289), - [anon_sym_switch] = ACTIONS(1289), - [anon_sym_case] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1289), - [anon_sym_while] = ACTIONS(1289), - [anon_sym_do] = ACTIONS(1289), - [anon_sym_for] = ACTIONS(1289), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_break] = ACTIONS(1289), - [anon_sym_continue] = ACTIONS(1289), - [anon_sym_goto] = ACTIONS(1289), - [anon_sym_DASH_DASH] = ACTIONS(1291), - [anon_sym_PLUS_PLUS] = ACTIONS(1291), - [anon_sym_sizeof] = ACTIONS(1289), - [sym_number_literal] = ACTIONS(1291), - [anon_sym_L_SQUOTE] = ACTIONS(1291), - [anon_sym_u_SQUOTE] = ACTIONS(1291), - [anon_sym_U_SQUOTE] = ACTIONS(1291), - [anon_sym_u8_SQUOTE] = ACTIONS(1291), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_L_DQUOTE] = ACTIONS(1291), - [anon_sym_u_DQUOTE] = ACTIONS(1291), - [anon_sym_U_DQUOTE] = ACTIONS(1291), - [anon_sym_u8_DQUOTE] = ACTIONS(1291), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_true] = ACTIONS(1289), - [sym_false] = ACTIONS(1289), - [sym_null] = ACTIONS(1289), + [282] = { + [ts_builtin_sym_end] = ACTIONS(1655), + [sym_identifier] = ACTIONS(1653), + [aux_sym_preproc_include_token1] = ACTIONS(1655), + [aux_sym_preproc_def_token1] = ACTIONS(1655), + [anon_sym_RPAREN] = ACTIONS(1655), + [aux_sym_preproc_if_token1] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_TILDE] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_typedef] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym___attribute] = ACTIONS(1653), + [anon_sym___attribute__] = ACTIONS(1653), + [anon_sym___declspec] = ACTIONS(1653), + [anon_sym___cdecl] = ACTIONS(1653), + [anon_sym___clrcall] = ACTIONS(1653), + [anon_sym___stdcall] = ACTIONS(1653), + [anon_sym___fastcall] = ACTIONS(1653), + [anon_sym___thiscall] = ACTIONS(1653), + [anon_sym___vectorcall] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_static] = ACTIONS(1653), + [anon_sym_auto] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_inline] = ACTIONS(1653), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_volatile] = ACTIONS(1653), + [anon_sym_restrict] = ACTIONS(1653), + [anon_sym__Atomic] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [anon_sym_out] = ACTIONS(1653), + [anon_sym_inout] = ACTIONS(1653), + [anon_sym_bycopy] = ACTIONS(1653), + [anon_sym_byref] = ACTIONS(1653), + [anon_sym_oneway] = ACTIONS(1653), + [anon_sym__Nullable] = ACTIONS(1653), + [anon_sym__Nonnull] = ACTIONS(1653), + [anon_sym__Nullable_result] = ACTIONS(1653), + [anon_sym__Null_unspecified] = ACTIONS(1653), + [anon_sym___autoreleasing] = ACTIONS(1653), + [anon_sym___nullable] = ACTIONS(1653), + [anon_sym___nonnull] = ACTIONS(1653), + [anon_sym___strong] = ACTIONS(1653), + [anon_sym___weak] = ACTIONS(1653), + [anon_sym___bridge] = ACTIONS(1653), + [anon_sym___bridge_transfer] = ACTIONS(1653), + [anon_sym___bridge_retained] = ACTIONS(1653), + [anon_sym___unsafe_unretained] = ACTIONS(1653), + [anon_sym___block] = ACTIONS(1653), + [anon_sym___kindof] = ACTIONS(1653), + [anon_sym___unused] = ACTIONS(1653), + [anon_sym__Complex] = ACTIONS(1653), + [anon_sym___complex] = ACTIONS(1653), + [anon_sym_IBOutlet] = ACTIONS(1653), + [anon_sym_IBInspectable] = ACTIONS(1653), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1653), + [anon_sym_signed] = ACTIONS(1653), + [anon_sym_unsigned] = ACTIONS(1653), + [anon_sym_long] = ACTIONS(1653), + [anon_sym_short] = ACTIONS(1653), + [sym_primitive_type] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_switch] = ACTIONS(1653), + [anon_sym_case] = ACTIONS(1653), + [anon_sym_default] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_goto] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_sizeof] = ACTIONS(1653), + [sym_number_literal] = ACTIONS(1655), + [anon_sym_L_SQUOTE] = ACTIONS(1655), + [anon_sym_u_SQUOTE] = ACTIONS(1655), + [anon_sym_U_SQUOTE] = ACTIONS(1655), + [anon_sym_u8_SQUOTE] = ACTIONS(1655), + [anon_sym_SQUOTE] = ACTIONS(1655), + [anon_sym_L_DQUOTE] = ACTIONS(1655), + [anon_sym_u_DQUOTE] = ACTIONS(1655), + [anon_sym_U_DQUOTE] = ACTIONS(1655), + [anon_sym_u8_DQUOTE] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym_true] = ACTIONS(1653), + [sym_false] = ACTIONS(1653), + [sym_null] = ACTIONS(1653), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1291), - [anon_sym_ATimport] = ACTIONS(1291), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1289), - [anon_sym_ATcompatibility_alias] = ACTIONS(1291), - [anon_sym_ATprotocol] = ACTIONS(1291), - [anon_sym_ATclass] = ACTIONS(1291), - [anon_sym_ATinterface] = ACTIONS(1291), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1289), - [sym_method_attribute_specifier] = ACTIONS(1289), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1289), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1289), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1289), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1289), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1289), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1289), - [anon_sym_NS_AVAILABLE] = ACTIONS(1289), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1289), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1289), - [anon_sym_API_AVAILABLE] = ACTIONS(1289), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1289), - [anon_sym_API_DEPRECATED] = ACTIONS(1289), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1289), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1289), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1289), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1289), - [anon_sym___deprecated_msg] = ACTIONS(1289), - [anon_sym___deprecated_enum_msg] = ACTIONS(1289), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1289), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1289), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1289), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1289), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1289), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1289), - [anon_sym_ATimplementation] = ACTIONS(1291), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym___typeof] = ACTIONS(1289), - [anon_sym___typeof__] = ACTIONS(1289), - [sym_self] = ACTIONS(1289), - [sym_super] = ACTIONS(1289), - [sym_nil] = ACTIONS(1289), - [sym_id] = ACTIONS(1289), - [sym_instancetype] = ACTIONS(1289), - [sym_Class] = ACTIONS(1289), - [sym_SEL] = ACTIONS(1289), - [sym_IMP] = ACTIONS(1289), - [sym_BOOL] = ACTIONS(1289), - [sym_auto] = ACTIONS(1289), - [anon_sym_ATautoreleasepool] = ACTIONS(1291), - [anon_sym_ATsynchronized] = ACTIONS(1291), - [anon_sym_ATtry] = ACTIONS(1291), - [anon_sym_ATcatch] = ACTIONS(1291), - [anon_sym_ATfinally] = ACTIONS(1291), - [anon_sym_ATthrow] = ACTIONS(1291), - [anon_sym_ATselector] = ACTIONS(1291), - [anon_sym_ATencode] = ACTIONS(1291), - [anon_sym_AT] = ACTIONS(1289), - [sym_YES] = ACTIONS(1289), - [sym_NO] = ACTIONS(1289), - [anon_sym___builtin_available] = ACTIONS(1289), - [anon_sym_ATavailable] = ACTIONS(1291), - [anon_sym_va_arg] = ACTIONS(1289), + [anon_sym_POUNDimport] = ACTIONS(1655), + [anon_sym_ATimport] = ACTIONS(1655), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1653), + [anon_sym_ATcompatibility_alias] = ACTIONS(1655), + [anon_sym_ATprotocol] = ACTIONS(1655), + [anon_sym_ATclass] = ACTIONS(1655), + [anon_sym_ATinterface] = ACTIONS(1655), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1653), + [sym_method_attribute_specifier] = ACTIONS(1653), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1653), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE] = ACTIONS(1653), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_API_AVAILABLE] = ACTIONS(1653), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_API_DEPRECATED] = ACTIONS(1653), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1653), + [anon_sym___deprecated_msg] = ACTIONS(1653), + [anon_sym___deprecated_enum_msg] = ACTIONS(1653), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1653), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1653), + [anon_sym_ATimplementation] = ACTIONS(1655), + [anon_sym_NS_ENUM] = ACTIONS(1653), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), + [anon_sym_NS_OPTIONS] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1653), + [anon_sym___typeof] = ACTIONS(1653), + [anon_sym___typeof__] = ACTIONS(1653), + [sym_self] = ACTIONS(1653), + [sym_super] = ACTIONS(1653), + [sym_nil] = ACTIONS(1653), + [sym_id] = ACTIONS(1653), + [sym_instancetype] = ACTIONS(1653), + [sym_Class] = ACTIONS(1653), + [sym_SEL] = ACTIONS(1653), + [sym_IMP] = ACTIONS(1653), + [sym_BOOL] = ACTIONS(1653), + [sym_auto] = ACTIONS(1653), + [anon_sym_ATautoreleasepool] = ACTIONS(1655), + [anon_sym_ATsynchronized] = ACTIONS(1655), + [anon_sym_ATtry] = ACTIONS(1655), + [anon_sym_ATcatch] = ACTIONS(1655), + [anon_sym_ATfinally] = ACTIONS(1655), + [anon_sym_ATthrow] = ACTIONS(1655), + [anon_sym_ATselector] = ACTIONS(1655), + [anon_sym_ATencode] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [sym_YES] = ACTIONS(1653), + [sym_NO] = ACTIONS(1653), + [anon_sym___builtin_available] = ACTIONS(1653), + [anon_sym_ATavailable] = ACTIONS(1655), + [anon_sym_va_arg] = ACTIONS(1653), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -88083,24 +75545,7459 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [354] = { - [ts_builtin_sym_end] = ACTIONS(1371), + [283] = { + [sym_identifier] = ACTIONS(1653), + [aux_sym_preproc_include_token1] = ACTIONS(1655), + [aux_sym_preproc_def_token1] = ACTIONS(1655), + [aux_sym_preproc_if_token1] = ACTIONS(1653), + [aux_sym_preproc_if_token2] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1653), + [aux_sym_preproc_else_token1] = ACTIONS(1653), + [aux_sym_preproc_elif_token1] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_TILDE] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_typedef] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym___attribute] = ACTIONS(1653), + [anon_sym___attribute__] = ACTIONS(1653), + [anon_sym___declspec] = ACTIONS(1653), + [anon_sym___cdecl] = ACTIONS(1653), + [anon_sym___clrcall] = ACTIONS(1653), + [anon_sym___stdcall] = ACTIONS(1653), + [anon_sym___fastcall] = ACTIONS(1653), + [anon_sym___thiscall] = ACTIONS(1653), + [anon_sym___vectorcall] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_static] = ACTIONS(1653), + [anon_sym_auto] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_inline] = ACTIONS(1653), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_volatile] = ACTIONS(1653), + [anon_sym_restrict] = ACTIONS(1653), + [anon_sym__Atomic] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [anon_sym_out] = ACTIONS(1653), + [anon_sym_inout] = ACTIONS(1653), + [anon_sym_bycopy] = ACTIONS(1653), + [anon_sym_byref] = ACTIONS(1653), + [anon_sym_oneway] = ACTIONS(1653), + [anon_sym__Nullable] = ACTIONS(1653), + [anon_sym__Nonnull] = ACTIONS(1653), + [anon_sym__Nullable_result] = ACTIONS(1653), + [anon_sym__Null_unspecified] = ACTIONS(1653), + [anon_sym___autoreleasing] = ACTIONS(1653), + [anon_sym___nullable] = ACTIONS(1653), + [anon_sym___nonnull] = ACTIONS(1653), + [anon_sym___strong] = ACTIONS(1653), + [anon_sym___weak] = ACTIONS(1653), + [anon_sym___bridge] = ACTIONS(1653), + [anon_sym___bridge_transfer] = ACTIONS(1653), + [anon_sym___bridge_retained] = ACTIONS(1653), + [anon_sym___unsafe_unretained] = ACTIONS(1653), + [anon_sym___block] = ACTIONS(1653), + [anon_sym___kindof] = ACTIONS(1653), + [anon_sym___unused] = ACTIONS(1653), + [anon_sym__Complex] = ACTIONS(1653), + [anon_sym___complex] = ACTIONS(1653), + [anon_sym_IBOutlet] = ACTIONS(1653), + [anon_sym_IBInspectable] = ACTIONS(1653), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1653), + [anon_sym_signed] = ACTIONS(1653), + [anon_sym_unsigned] = ACTIONS(1653), + [anon_sym_long] = ACTIONS(1653), + [anon_sym_short] = ACTIONS(1653), + [sym_primitive_type] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_switch] = ACTIONS(1653), + [anon_sym_case] = ACTIONS(1653), + [anon_sym_default] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_goto] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_sizeof] = ACTIONS(1653), + [sym_number_literal] = ACTIONS(1655), + [anon_sym_L_SQUOTE] = ACTIONS(1655), + [anon_sym_u_SQUOTE] = ACTIONS(1655), + [anon_sym_U_SQUOTE] = ACTIONS(1655), + [anon_sym_u8_SQUOTE] = ACTIONS(1655), + [anon_sym_SQUOTE] = ACTIONS(1655), + [anon_sym_L_DQUOTE] = ACTIONS(1655), + [anon_sym_u_DQUOTE] = ACTIONS(1655), + [anon_sym_U_DQUOTE] = ACTIONS(1655), + [anon_sym_u8_DQUOTE] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym_true] = ACTIONS(1653), + [sym_false] = ACTIONS(1653), + [sym_null] = ACTIONS(1653), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1655), + [anon_sym_ATimport] = ACTIONS(1655), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1653), + [anon_sym_ATcompatibility_alias] = ACTIONS(1655), + [anon_sym_ATprotocol] = ACTIONS(1655), + [anon_sym_ATclass] = ACTIONS(1655), + [anon_sym_ATinterface] = ACTIONS(1655), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1653), + [sym_method_attribute_specifier] = ACTIONS(1653), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1653), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE] = ACTIONS(1653), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_API_AVAILABLE] = ACTIONS(1653), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_API_DEPRECATED] = ACTIONS(1653), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1653), + [anon_sym___deprecated_msg] = ACTIONS(1653), + [anon_sym___deprecated_enum_msg] = ACTIONS(1653), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1653), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1653), + [anon_sym_ATimplementation] = ACTIONS(1655), + [anon_sym_NS_ENUM] = ACTIONS(1653), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), + [anon_sym_NS_OPTIONS] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1653), + [anon_sym___typeof] = ACTIONS(1653), + [anon_sym___typeof__] = ACTIONS(1653), + [sym_self] = ACTIONS(1653), + [sym_super] = ACTIONS(1653), + [sym_nil] = ACTIONS(1653), + [sym_id] = ACTIONS(1653), + [sym_instancetype] = ACTIONS(1653), + [sym_Class] = ACTIONS(1653), + [sym_SEL] = ACTIONS(1653), + [sym_IMP] = ACTIONS(1653), + [sym_BOOL] = ACTIONS(1653), + [sym_auto] = ACTIONS(1653), + [anon_sym_ATautoreleasepool] = ACTIONS(1655), + [anon_sym_ATsynchronized] = ACTIONS(1655), + [anon_sym_ATtry] = ACTIONS(1655), + [anon_sym_ATcatch] = ACTIONS(1655), + [anon_sym_ATfinally] = ACTIONS(1655), + [anon_sym_ATthrow] = ACTIONS(1655), + [anon_sym_ATselector] = ACTIONS(1655), + [anon_sym_ATencode] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [sym_YES] = ACTIONS(1653), + [sym_NO] = ACTIONS(1653), + [anon_sym___builtin_available] = ACTIONS(1653), + [anon_sym_ATavailable] = ACTIONS(1655), + [anon_sym_va_arg] = ACTIONS(1653), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [284] = { + [ts_builtin_sym_end] = ACTIONS(1655), + [sym_identifier] = ACTIONS(1653), + [aux_sym_preproc_include_token1] = ACTIONS(1655), + [aux_sym_preproc_def_token1] = ACTIONS(1655), + [anon_sym_RPAREN] = ACTIONS(1655), + [aux_sym_preproc_if_token1] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_TILDE] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_typedef] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym___attribute] = ACTIONS(1653), + [anon_sym___attribute__] = ACTIONS(1653), + [anon_sym___declspec] = ACTIONS(1653), + [anon_sym___cdecl] = ACTIONS(1653), + [anon_sym___clrcall] = ACTIONS(1653), + [anon_sym___stdcall] = ACTIONS(1653), + [anon_sym___fastcall] = ACTIONS(1653), + [anon_sym___thiscall] = ACTIONS(1653), + [anon_sym___vectorcall] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_static] = ACTIONS(1653), + [anon_sym_auto] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_inline] = ACTIONS(1653), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_volatile] = ACTIONS(1653), + [anon_sym_restrict] = ACTIONS(1653), + [anon_sym__Atomic] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [anon_sym_out] = ACTIONS(1653), + [anon_sym_inout] = ACTIONS(1653), + [anon_sym_bycopy] = ACTIONS(1653), + [anon_sym_byref] = ACTIONS(1653), + [anon_sym_oneway] = ACTIONS(1653), + [anon_sym__Nullable] = ACTIONS(1653), + [anon_sym__Nonnull] = ACTIONS(1653), + [anon_sym__Nullable_result] = ACTIONS(1653), + [anon_sym__Null_unspecified] = ACTIONS(1653), + [anon_sym___autoreleasing] = ACTIONS(1653), + [anon_sym___nullable] = ACTIONS(1653), + [anon_sym___nonnull] = ACTIONS(1653), + [anon_sym___strong] = ACTIONS(1653), + [anon_sym___weak] = ACTIONS(1653), + [anon_sym___bridge] = ACTIONS(1653), + [anon_sym___bridge_transfer] = ACTIONS(1653), + [anon_sym___bridge_retained] = ACTIONS(1653), + [anon_sym___unsafe_unretained] = ACTIONS(1653), + [anon_sym___block] = ACTIONS(1653), + [anon_sym___kindof] = ACTIONS(1653), + [anon_sym___unused] = ACTIONS(1653), + [anon_sym__Complex] = ACTIONS(1653), + [anon_sym___complex] = ACTIONS(1653), + [anon_sym_IBOutlet] = ACTIONS(1653), + [anon_sym_IBInspectable] = ACTIONS(1653), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1653), + [anon_sym_signed] = ACTIONS(1653), + [anon_sym_unsigned] = ACTIONS(1653), + [anon_sym_long] = ACTIONS(1653), + [anon_sym_short] = ACTIONS(1653), + [sym_primitive_type] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_switch] = ACTIONS(1653), + [anon_sym_case] = ACTIONS(1653), + [anon_sym_default] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_goto] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_sizeof] = ACTIONS(1653), + [sym_number_literal] = ACTIONS(1655), + [anon_sym_L_SQUOTE] = ACTIONS(1655), + [anon_sym_u_SQUOTE] = ACTIONS(1655), + [anon_sym_U_SQUOTE] = ACTIONS(1655), + [anon_sym_u8_SQUOTE] = ACTIONS(1655), + [anon_sym_SQUOTE] = ACTIONS(1655), + [anon_sym_L_DQUOTE] = ACTIONS(1655), + [anon_sym_u_DQUOTE] = ACTIONS(1655), + [anon_sym_U_DQUOTE] = ACTIONS(1655), + [anon_sym_u8_DQUOTE] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym_true] = ACTIONS(1653), + [sym_false] = ACTIONS(1653), + [sym_null] = ACTIONS(1653), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1655), + [anon_sym_ATimport] = ACTIONS(1655), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1653), + [anon_sym_ATcompatibility_alias] = ACTIONS(1655), + [anon_sym_ATprotocol] = ACTIONS(1655), + [anon_sym_ATclass] = ACTIONS(1655), + [anon_sym_ATinterface] = ACTIONS(1655), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1653), + [sym_method_attribute_specifier] = ACTIONS(1653), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1653), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE] = ACTIONS(1653), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_API_AVAILABLE] = ACTIONS(1653), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_API_DEPRECATED] = ACTIONS(1653), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1653), + [anon_sym___deprecated_msg] = ACTIONS(1653), + [anon_sym___deprecated_enum_msg] = ACTIONS(1653), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1653), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1653), + [anon_sym_ATimplementation] = ACTIONS(1655), + [anon_sym_NS_ENUM] = ACTIONS(1653), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), + [anon_sym_NS_OPTIONS] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1653), + [anon_sym___typeof] = ACTIONS(1653), + [anon_sym___typeof__] = ACTIONS(1653), + [sym_self] = ACTIONS(1653), + [sym_super] = ACTIONS(1653), + [sym_nil] = ACTIONS(1653), + [sym_id] = ACTIONS(1653), + [sym_instancetype] = ACTIONS(1653), + [sym_Class] = ACTIONS(1653), + [sym_SEL] = ACTIONS(1653), + [sym_IMP] = ACTIONS(1653), + [sym_BOOL] = ACTIONS(1653), + [sym_auto] = ACTIONS(1653), + [anon_sym_ATautoreleasepool] = ACTIONS(1655), + [anon_sym_ATsynchronized] = ACTIONS(1655), + [anon_sym_ATtry] = ACTIONS(1655), + [anon_sym_ATcatch] = ACTIONS(1655), + [anon_sym_ATfinally] = ACTIONS(1655), + [anon_sym_ATthrow] = ACTIONS(1655), + [anon_sym_ATselector] = ACTIONS(1655), + [anon_sym_ATencode] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [sym_YES] = ACTIONS(1653), + [sym_NO] = ACTIONS(1653), + [anon_sym___builtin_available] = ACTIONS(1653), + [anon_sym_ATavailable] = ACTIONS(1655), + [anon_sym_va_arg] = ACTIONS(1653), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [285] = { + [ts_builtin_sym_end] = ACTIONS(1651), + [sym_identifier] = ACTIONS(1649), + [aux_sym_preproc_include_token1] = ACTIONS(1651), + [aux_sym_preproc_def_token1] = ACTIONS(1651), + [anon_sym_RPAREN] = ACTIONS(1651), + [aux_sym_preproc_if_token1] = ACTIONS(1649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1649), + [anon_sym_LPAREN2] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1651), + [anon_sym_TILDE] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1651), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_typedef] = ACTIONS(1649), + [anon_sym_extern] = ACTIONS(1649), + [anon_sym___attribute] = ACTIONS(1649), + [anon_sym___attribute__] = ACTIONS(1649), + [anon_sym___declspec] = ACTIONS(1649), + [anon_sym___cdecl] = ACTIONS(1649), + [anon_sym___clrcall] = ACTIONS(1649), + [anon_sym___stdcall] = ACTIONS(1649), + [anon_sym___fastcall] = ACTIONS(1649), + [anon_sym___thiscall] = ACTIONS(1649), + [anon_sym___vectorcall] = ACTIONS(1649), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1649), + [anon_sym_auto] = ACTIONS(1649), + [anon_sym_register] = ACTIONS(1649), + [anon_sym_inline] = ACTIONS(1649), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1649), + [anon_sym_const] = ACTIONS(1649), + [anon_sym_volatile] = ACTIONS(1649), + [anon_sym_restrict] = ACTIONS(1649), + [anon_sym__Atomic] = ACTIONS(1649), + [anon_sym_in] = ACTIONS(1649), + [anon_sym_out] = ACTIONS(1649), + [anon_sym_inout] = ACTIONS(1649), + [anon_sym_bycopy] = ACTIONS(1649), + [anon_sym_byref] = ACTIONS(1649), + [anon_sym_oneway] = ACTIONS(1649), + [anon_sym__Nullable] = ACTIONS(1649), + [anon_sym__Nonnull] = ACTIONS(1649), + [anon_sym__Nullable_result] = ACTIONS(1649), + [anon_sym__Null_unspecified] = ACTIONS(1649), + [anon_sym___autoreleasing] = ACTIONS(1649), + [anon_sym___nullable] = ACTIONS(1649), + [anon_sym___nonnull] = ACTIONS(1649), + [anon_sym___strong] = ACTIONS(1649), + [anon_sym___weak] = ACTIONS(1649), + [anon_sym___bridge] = ACTIONS(1649), + [anon_sym___bridge_transfer] = ACTIONS(1649), + [anon_sym___bridge_retained] = ACTIONS(1649), + [anon_sym___unsafe_unretained] = ACTIONS(1649), + [anon_sym___block] = ACTIONS(1649), + [anon_sym___kindof] = ACTIONS(1649), + [anon_sym___unused] = ACTIONS(1649), + [anon_sym__Complex] = ACTIONS(1649), + [anon_sym___complex] = ACTIONS(1649), + [anon_sym_IBOutlet] = ACTIONS(1649), + [anon_sym_IBInspectable] = ACTIONS(1649), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1649), + [anon_sym_signed] = ACTIONS(1649), + [anon_sym_unsigned] = ACTIONS(1649), + [anon_sym_long] = ACTIONS(1649), + [anon_sym_short] = ACTIONS(1649), + [sym_primitive_type] = ACTIONS(1649), + [anon_sym_enum] = ACTIONS(1649), + [anon_sym_struct] = ACTIONS(1649), + [anon_sym_union] = ACTIONS(1649), + [anon_sym_if] = ACTIONS(1649), + [anon_sym_else] = ACTIONS(1649), + [anon_sym_switch] = ACTIONS(1649), + [anon_sym_case] = ACTIONS(1649), + [anon_sym_default] = ACTIONS(1649), + [anon_sym_while] = ACTIONS(1649), + [anon_sym_do] = ACTIONS(1649), + [anon_sym_for] = ACTIONS(1649), + [anon_sym_return] = ACTIONS(1649), + [anon_sym_break] = ACTIONS(1649), + [anon_sym_continue] = ACTIONS(1649), + [anon_sym_goto] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1651), + [anon_sym_PLUS_PLUS] = ACTIONS(1651), + [anon_sym_sizeof] = ACTIONS(1649), + [sym_number_literal] = ACTIONS(1651), + [anon_sym_L_SQUOTE] = ACTIONS(1651), + [anon_sym_u_SQUOTE] = ACTIONS(1651), + [anon_sym_U_SQUOTE] = ACTIONS(1651), + [anon_sym_u8_SQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1651), + [anon_sym_L_DQUOTE] = ACTIONS(1651), + [anon_sym_u_DQUOTE] = ACTIONS(1651), + [anon_sym_U_DQUOTE] = ACTIONS(1651), + [anon_sym_u8_DQUOTE] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(1651), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1651), + [anon_sym_ATimport] = ACTIONS(1651), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1649), + [anon_sym_ATcompatibility_alias] = ACTIONS(1651), + [anon_sym_ATprotocol] = ACTIONS(1651), + [anon_sym_ATclass] = ACTIONS(1651), + [anon_sym_ATinterface] = ACTIONS(1651), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1649), + [sym_method_attribute_specifier] = ACTIONS(1649), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1649), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1649), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1649), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1649), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1649), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1649), + [anon_sym_NS_AVAILABLE] = ACTIONS(1649), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1649), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_API_AVAILABLE] = ACTIONS(1649), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1649), + [anon_sym_API_DEPRECATED] = ACTIONS(1649), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1649), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1649), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1649), + [anon_sym___deprecated_msg] = ACTIONS(1649), + [anon_sym___deprecated_enum_msg] = ACTIONS(1649), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1649), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1649), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1649), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1649), + [anon_sym_ATimplementation] = ACTIONS(1651), + [anon_sym_NS_ENUM] = ACTIONS(1649), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1649), + [anon_sym_NS_OPTIONS] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1649), + [anon_sym___typeof] = ACTIONS(1649), + [anon_sym___typeof__] = ACTIONS(1649), + [sym_self] = ACTIONS(1649), + [sym_super] = ACTIONS(1649), + [sym_nil] = ACTIONS(1649), + [sym_id] = ACTIONS(1649), + [sym_instancetype] = ACTIONS(1649), + [sym_Class] = ACTIONS(1649), + [sym_SEL] = ACTIONS(1649), + [sym_IMP] = ACTIONS(1649), + [sym_BOOL] = ACTIONS(1649), + [sym_auto] = ACTIONS(1649), + [anon_sym_ATautoreleasepool] = ACTIONS(1651), + [anon_sym_ATsynchronized] = ACTIONS(1651), + [anon_sym_ATtry] = ACTIONS(1651), + [anon_sym_ATcatch] = ACTIONS(1651), + [anon_sym_ATfinally] = ACTIONS(1651), + [anon_sym_ATthrow] = ACTIONS(1651), + [anon_sym_ATselector] = ACTIONS(1651), + [anon_sym_ATencode] = ACTIONS(1651), + [anon_sym_AT] = ACTIONS(1649), + [sym_YES] = ACTIONS(1649), + [sym_NO] = ACTIONS(1649), + [anon_sym___builtin_available] = ACTIONS(1649), + [anon_sym_ATavailable] = ACTIONS(1651), + [anon_sym_va_arg] = ACTIONS(1649), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [286] = { + [sym_identifier] = ACTIONS(1639), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [aux_sym_preproc_if_token1] = ACTIONS(1639), + [aux_sym_preproc_if_token2] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1639), + [aux_sym_preproc_else_token1] = ACTIONS(1639), + [aux_sym_preproc_elif_token1] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_CARET] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1639), + [anon_sym___cdecl] = ACTIONS(1639), + [anon_sym___clrcall] = ACTIONS(1639), + [anon_sym___stdcall] = ACTIONS(1639), + [anon_sym___fastcall] = ACTIONS(1639), + [anon_sym___thiscall] = ACTIONS(1639), + [anon_sym___vectorcall] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_auto] = ACTIONS(1639), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_inline] = ACTIONS(1639), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1639), + [anon_sym_restrict] = ACTIONS(1639), + [anon_sym__Atomic] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [anon_sym_out] = ACTIONS(1639), + [anon_sym_inout] = ACTIONS(1639), + [anon_sym_bycopy] = ACTIONS(1639), + [anon_sym_byref] = ACTIONS(1639), + [anon_sym_oneway] = ACTIONS(1639), + [anon_sym__Nullable] = ACTIONS(1639), + [anon_sym__Nonnull] = ACTIONS(1639), + [anon_sym__Nullable_result] = ACTIONS(1639), + [anon_sym__Null_unspecified] = ACTIONS(1639), + [anon_sym___autoreleasing] = ACTIONS(1639), + [anon_sym___nullable] = ACTIONS(1639), + [anon_sym___nonnull] = ACTIONS(1639), + [anon_sym___strong] = ACTIONS(1639), + [anon_sym___weak] = ACTIONS(1639), + [anon_sym___bridge] = ACTIONS(1639), + [anon_sym___bridge_transfer] = ACTIONS(1639), + [anon_sym___bridge_retained] = ACTIONS(1639), + [anon_sym___unsafe_unretained] = ACTIONS(1639), + [anon_sym___block] = ACTIONS(1639), + [anon_sym___kindof] = ACTIONS(1639), + [anon_sym___unused] = ACTIONS(1639), + [anon_sym__Complex] = ACTIONS(1639), + [anon_sym___complex] = ACTIONS(1639), + [anon_sym_IBOutlet] = ACTIONS(1639), + [anon_sym_IBInspectable] = ACTIONS(1639), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1639), + [anon_sym_unsigned] = ACTIONS(1639), + [anon_sym_long] = ACTIONS(1639), + [anon_sym_short] = ACTIONS(1639), + [sym_primitive_type] = ACTIONS(1639), + [anon_sym_enum] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_switch] = ACTIONS(1639), + [anon_sym_case] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_goto] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1637), + [anon_sym_sizeof] = ACTIONS(1639), + [sym_number_literal] = ACTIONS(1637), + [anon_sym_L_SQUOTE] = ACTIONS(1637), + [anon_sym_u_SQUOTE] = ACTIONS(1637), + [anon_sym_U_SQUOTE] = ACTIONS(1637), + [anon_sym_u8_SQUOTE] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1637), + [anon_sym_L_DQUOTE] = ACTIONS(1637), + [anon_sym_u_DQUOTE] = ACTIONS(1637), + [anon_sym_U_DQUOTE] = ACTIONS(1637), + [anon_sym_u8_DQUOTE] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1637), + [anon_sym_ATimport] = ACTIONS(1637), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1639), + [anon_sym_ATcompatibility_alias] = ACTIONS(1637), + [anon_sym_ATprotocol] = ACTIONS(1637), + [anon_sym_ATclass] = ACTIONS(1637), + [anon_sym_ATinterface] = ACTIONS(1637), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1639), + [sym_method_attribute_specifier] = ACTIONS(1639), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1639), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE] = ACTIONS(1639), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_API_AVAILABLE] = ACTIONS(1639), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_API_DEPRECATED] = ACTIONS(1639), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1639), + [anon_sym___deprecated_msg] = ACTIONS(1639), + [anon_sym___deprecated_enum_msg] = ACTIONS(1639), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1639), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1639), + [anon_sym_ATimplementation] = ACTIONS(1637), + [anon_sym_NS_ENUM] = ACTIONS(1639), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1639), + [anon_sym_NS_OPTIONS] = ACTIONS(1639), + [anon_sym_typeof] = ACTIONS(1639), + [anon_sym___typeof] = ACTIONS(1639), + [anon_sym___typeof__] = ACTIONS(1639), + [sym_self] = ACTIONS(1639), + [sym_super] = ACTIONS(1639), + [sym_nil] = ACTIONS(1639), + [sym_id] = ACTIONS(1639), + [sym_instancetype] = ACTIONS(1639), + [sym_Class] = ACTIONS(1639), + [sym_SEL] = ACTIONS(1639), + [sym_IMP] = ACTIONS(1639), + [sym_BOOL] = ACTIONS(1639), + [sym_auto] = ACTIONS(1639), + [anon_sym_ATautoreleasepool] = ACTIONS(1637), + [anon_sym_ATsynchronized] = ACTIONS(1637), + [anon_sym_ATtry] = ACTIONS(1637), + [anon_sym_ATcatch] = ACTIONS(1637), + [anon_sym_ATfinally] = ACTIONS(1637), + [anon_sym_ATthrow] = ACTIONS(1637), + [anon_sym_ATselector] = ACTIONS(1637), + [anon_sym_ATencode] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1639), + [sym_YES] = ACTIONS(1639), + [sym_NO] = ACTIONS(1639), + [anon_sym___builtin_available] = ACTIONS(1639), + [anon_sym_ATavailable] = ACTIONS(1637), + [anon_sym_va_arg] = ACTIONS(1639), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [287] = { + [sym_identifier] = ACTIONS(1639), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [aux_sym_preproc_if_token1] = ACTIONS(1639), + [aux_sym_preproc_if_token2] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1639), + [aux_sym_preproc_else_token1] = ACTIONS(1639), + [aux_sym_preproc_elif_token1] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_CARET] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1639), + [anon_sym___cdecl] = ACTIONS(1639), + [anon_sym___clrcall] = ACTIONS(1639), + [anon_sym___stdcall] = ACTIONS(1639), + [anon_sym___fastcall] = ACTIONS(1639), + [anon_sym___thiscall] = ACTIONS(1639), + [anon_sym___vectorcall] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_auto] = ACTIONS(1639), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_inline] = ACTIONS(1639), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1639), + [anon_sym_restrict] = ACTIONS(1639), + [anon_sym__Atomic] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [anon_sym_out] = ACTIONS(1639), + [anon_sym_inout] = ACTIONS(1639), + [anon_sym_bycopy] = ACTIONS(1639), + [anon_sym_byref] = ACTIONS(1639), + [anon_sym_oneway] = ACTIONS(1639), + [anon_sym__Nullable] = ACTIONS(1639), + [anon_sym__Nonnull] = ACTIONS(1639), + [anon_sym__Nullable_result] = ACTIONS(1639), + [anon_sym__Null_unspecified] = ACTIONS(1639), + [anon_sym___autoreleasing] = ACTIONS(1639), + [anon_sym___nullable] = ACTIONS(1639), + [anon_sym___nonnull] = ACTIONS(1639), + [anon_sym___strong] = ACTIONS(1639), + [anon_sym___weak] = ACTIONS(1639), + [anon_sym___bridge] = ACTIONS(1639), + [anon_sym___bridge_transfer] = ACTIONS(1639), + [anon_sym___bridge_retained] = ACTIONS(1639), + [anon_sym___unsafe_unretained] = ACTIONS(1639), + [anon_sym___block] = ACTIONS(1639), + [anon_sym___kindof] = ACTIONS(1639), + [anon_sym___unused] = ACTIONS(1639), + [anon_sym__Complex] = ACTIONS(1639), + [anon_sym___complex] = ACTIONS(1639), + [anon_sym_IBOutlet] = ACTIONS(1639), + [anon_sym_IBInspectable] = ACTIONS(1639), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1639), + [anon_sym_unsigned] = ACTIONS(1639), + [anon_sym_long] = ACTIONS(1639), + [anon_sym_short] = ACTIONS(1639), + [sym_primitive_type] = ACTIONS(1639), + [anon_sym_enum] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_switch] = ACTIONS(1639), + [anon_sym_case] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_goto] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1637), + [anon_sym_sizeof] = ACTIONS(1639), + [sym_number_literal] = ACTIONS(1637), + [anon_sym_L_SQUOTE] = ACTIONS(1637), + [anon_sym_u_SQUOTE] = ACTIONS(1637), + [anon_sym_U_SQUOTE] = ACTIONS(1637), + [anon_sym_u8_SQUOTE] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1637), + [anon_sym_L_DQUOTE] = ACTIONS(1637), + [anon_sym_u_DQUOTE] = ACTIONS(1637), + [anon_sym_U_DQUOTE] = ACTIONS(1637), + [anon_sym_u8_DQUOTE] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1637), + [anon_sym_ATimport] = ACTIONS(1637), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1639), + [anon_sym_ATcompatibility_alias] = ACTIONS(1637), + [anon_sym_ATprotocol] = ACTIONS(1637), + [anon_sym_ATclass] = ACTIONS(1637), + [anon_sym_ATinterface] = ACTIONS(1637), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1639), + [sym_method_attribute_specifier] = ACTIONS(1639), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1639), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE] = ACTIONS(1639), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_API_AVAILABLE] = ACTIONS(1639), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_API_DEPRECATED] = ACTIONS(1639), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1639), + [anon_sym___deprecated_msg] = ACTIONS(1639), + [anon_sym___deprecated_enum_msg] = ACTIONS(1639), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1639), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1639), + [anon_sym_ATimplementation] = ACTIONS(1637), + [anon_sym_NS_ENUM] = ACTIONS(1639), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1639), + [anon_sym_NS_OPTIONS] = ACTIONS(1639), + [anon_sym_typeof] = ACTIONS(1639), + [anon_sym___typeof] = ACTIONS(1639), + [anon_sym___typeof__] = ACTIONS(1639), + [sym_self] = ACTIONS(1639), + [sym_super] = ACTIONS(1639), + [sym_nil] = ACTIONS(1639), + [sym_id] = ACTIONS(1639), + [sym_instancetype] = ACTIONS(1639), + [sym_Class] = ACTIONS(1639), + [sym_SEL] = ACTIONS(1639), + [sym_IMP] = ACTIONS(1639), + [sym_BOOL] = ACTIONS(1639), + [sym_auto] = ACTIONS(1639), + [anon_sym_ATautoreleasepool] = ACTIONS(1637), + [anon_sym_ATsynchronized] = ACTIONS(1637), + [anon_sym_ATtry] = ACTIONS(1637), + [anon_sym_ATcatch] = ACTIONS(1637), + [anon_sym_ATfinally] = ACTIONS(1637), + [anon_sym_ATthrow] = ACTIONS(1637), + [anon_sym_ATselector] = ACTIONS(1637), + [anon_sym_ATencode] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1639), + [sym_YES] = ACTIONS(1639), + [sym_NO] = ACTIONS(1639), + [anon_sym___builtin_available] = ACTIONS(1639), + [anon_sym_ATavailable] = ACTIONS(1637), + [anon_sym_va_arg] = ACTIONS(1639), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [288] = { + [sym_identifier] = ACTIONS(1201), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1201), + [aux_sym_preproc_if_token2] = ACTIONS(1201), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1201), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1201), + [aux_sym_preproc_else_token1] = ACTIONS(1201), + [aux_sym_preproc_elif_token1] = ACTIONS(1201), + [anon_sym_LPAREN2] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_CARET] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1201), + [anon_sym_extern] = ACTIONS(1201), + [anon_sym___attribute] = ACTIONS(1201), + [anon_sym___attribute__] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1201), + [anon_sym___cdecl] = ACTIONS(1201), + [anon_sym___clrcall] = ACTIONS(1201), + [anon_sym___stdcall] = ACTIONS(1201), + [anon_sym___fastcall] = ACTIONS(1201), + [anon_sym___thiscall] = ACTIONS(1201), + [anon_sym___vectorcall] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_auto] = ACTIONS(1201), + [anon_sym_register] = ACTIONS(1201), + [anon_sym_inline] = ACTIONS(1201), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_volatile] = ACTIONS(1201), + [anon_sym_restrict] = ACTIONS(1201), + [anon_sym__Atomic] = ACTIONS(1201), + [anon_sym_in] = ACTIONS(1201), + [anon_sym_out] = ACTIONS(1201), + [anon_sym_inout] = ACTIONS(1201), + [anon_sym_bycopy] = ACTIONS(1201), + [anon_sym_byref] = ACTIONS(1201), + [anon_sym_oneway] = ACTIONS(1201), + [anon_sym__Nullable] = ACTIONS(1201), + [anon_sym__Nonnull] = ACTIONS(1201), + [anon_sym__Nullable_result] = ACTIONS(1201), + [anon_sym__Null_unspecified] = ACTIONS(1201), + [anon_sym___autoreleasing] = ACTIONS(1201), + [anon_sym___nullable] = ACTIONS(1201), + [anon_sym___nonnull] = ACTIONS(1201), + [anon_sym___strong] = ACTIONS(1201), + [anon_sym___weak] = ACTIONS(1201), + [anon_sym___bridge] = ACTIONS(1201), + [anon_sym___bridge_transfer] = ACTIONS(1201), + [anon_sym___bridge_retained] = ACTIONS(1201), + [anon_sym___unsafe_unretained] = ACTIONS(1201), + [anon_sym___block] = ACTIONS(1201), + [anon_sym___kindof] = ACTIONS(1201), + [anon_sym___unused] = ACTIONS(1201), + [anon_sym__Complex] = ACTIONS(1201), + [anon_sym___complex] = ACTIONS(1201), + [anon_sym_IBOutlet] = ACTIONS(1201), + [anon_sym_IBInspectable] = ACTIONS(1201), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1201), + [anon_sym_unsigned] = ACTIONS(1201), + [anon_sym_long] = ACTIONS(1201), + [anon_sym_short] = ACTIONS(1201), + [sym_primitive_type] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_else] = ACTIONS(1201), + [anon_sym_switch] = ACTIONS(1201), + [anon_sym_case] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [sym_number_literal] = ACTIONS(1199), + [anon_sym_L_SQUOTE] = ACTIONS(1199), + [anon_sym_u_SQUOTE] = ACTIONS(1199), + [anon_sym_U_SQUOTE] = ACTIONS(1199), + [anon_sym_u8_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_L_DQUOTE] = ACTIONS(1199), + [anon_sym_u_DQUOTE] = ACTIONS(1199), + [anon_sym_U_DQUOTE] = ACTIONS(1199), + [anon_sym_u8_DQUOTE] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1199), + [sym_true] = ACTIONS(1201), + [sym_false] = ACTIONS(1201), + [sym_null] = ACTIONS(1201), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1199), + [anon_sym_ATimport] = ACTIONS(1199), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1201), + [anon_sym_ATcompatibility_alias] = ACTIONS(1199), + [anon_sym_ATprotocol] = ACTIONS(1199), + [anon_sym_ATclass] = ACTIONS(1199), + [anon_sym_ATinterface] = ACTIONS(1199), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1201), + [sym_method_attribute_specifier] = ACTIONS(1201), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1201), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1201), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1201), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1201), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1201), + [anon_sym_NS_AVAILABLE] = ACTIONS(1201), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1201), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_API_AVAILABLE] = ACTIONS(1201), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_API_DEPRECATED] = ACTIONS(1201), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1201), + [anon_sym___deprecated_msg] = ACTIONS(1201), + [anon_sym___deprecated_enum_msg] = ACTIONS(1201), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1201), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1201), + [anon_sym_ATimplementation] = ACTIONS(1199), + [anon_sym_NS_ENUM] = ACTIONS(1201), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1201), + [anon_sym_NS_OPTIONS] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1201), + [anon_sym___typeof] = ACTIONS(1201), + [anon_sym___typeof__] = ACTIONS(1201), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_nil] = ACTIONS(1201), + [sym_id] = ACTIONS(1201), + [sym_instancetype] = ACTIONS(1201), + [sym_Class] = ACTIONS(1201), + [sym_SEL] = ACTIONS(1201), + [sym_IMP] = ACTIONS(1201), + [sym_BOOL] = ACTIONS(1201), + [sym_auto] = ACTIONS(1201), + [anon_sym_ATautoreleasepool] = ACTIONS(1199), + [anon_sym_ATsynchronized] = ACTIONS(1199), + [anon_sym_ATtry] = ACTIONS(1199), + [anon_sym_ATcatch] = ACTIONS(1199), + [anon_sym_ATfinally] = ACTIONS(1199), + [anon_sym_ATthrow] = ACTIONS(1199), + [anon_sym_ATselector] = ACTIONS(1199), + [anon_sym_ATencode] = ACTIONS(1199), + [anon_sym_AT] = ACTIONS(1201), + [sym_YES] = ACTIONS(1201), + [sym_NO] = ACTIONS(1201), + [anon_sym___builtin_available] = ACTIONS(1201), + [anon_sym_ATavailable] = ACTIONS(1199), + [anon_sym_va_arg] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [289] = { + [sym_identifier] = ACTIONS(1639), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [aux_sym_preproc_if_token1] = ACTIONS(1639), + [aux_sym_preproc_if_token2] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1639), + [aux_sym_preproc_else_token1] = ACTIONS(1639), + [aux_sym_preproc_elif_token1] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_CARET] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1639), + [anon_sym___cdecl] = ACTIONS(1639), + [anon_sym___clrcall] = ACTIONS(1639), + [anon_sym___stdcall] = ACTIONS(1639), + [anon_sym___fastcall] = ACTIONS(1639), + [anon_sym___thiscall] = ACTIONS(1639), + [anon_sym___vectorcall] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_auto] = ACTIONS(1639), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_inline] = ACTIONS(1639), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1639), + [anon_sym_restrict] = ACTIONS(1639), + [anon_sym__Atomic] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [anon_sym_out] = ACTIONS(1639), + [anon_sym_inout] = ACTIONS(1639), + [anon_sym_bycopy] = ACTIONS(1639), + [anon_sym_byref] = ACTIONS(1639), + [anon_sym_oneway] = ACTIONS(1639), + [anon_sym__Nullable] = ACTIONS(1639), + [anon_sym__Nonnull] = ACTIONS(1639), + [anon_sym__Nullable_result] = ACTIONS(1639), + [anon_sym__Null_unspecified] = ACTIONS(1639), + [anon_sym___autoreleasing] = ACTIONS(1639), + [anon_sym___nullable] = ACTIONS(1639), + [anon_sym___nonnull] = ACTIONS(1639), + [anon_sym___strong] = ACTIONS(1639), + [anon_sym___weak] = ACTIONS(1639), + [anon_sym___bridge] = ACTIONS(1639), + [anon_sym___bridge_transfer] = ACTIONS(1639), + [anon_sym___bridge_retained] = ACTIONS(1639), + [anon_sym___unsafe_unretained] = ACTIONS(1639), + [anon_sym___block] = ACTIONS(1639), + [anon_sym___kindof] = ACTIONS(1639), + [anon_sym___unused] = ACTIONS(1639), + [anon_sym__Complex] = ACTIONS(1639), + [anon_sym___complex] = ACTIONS(1639), + [anon_sym_IBOutlet] = ACTIONS(1639), + [anon_sym_IBInspectable] = ACTIONS(1639), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1639), + [anon_sym_unsigned] = ACTIONS(1639), + [anon_sym_long] = ACTIONS(1639), + [anon_sym_short] = ACTIONS(1639), + [sym_primitive_type] = ACTIONS(1639), + [anon_sym_enum] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_switch] = ACTIONS(1639), + [anon_sym_case] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_goto] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1637), + [anon_sym_sizeof] = ACTIONS(1639), + [sym_number_literal] = ACTIONS(1637), + [anon_sym_L_SQUOTE] = ACTIONS(1637), + [anon_sym_u_SQUOTE] = ACTIONS(1637), + [anon_sym_U_SQUOTE] = ACTIONS(1637), + [anon_sym_u8_SQUOTE] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1637), + [anon_sym_L_DQUOTE] = ACTIONS(1637), + [anon_sym_u_DQUOTE] = ACTIONS(1637), + [anon_sym_U_DQUOTE] = ACTIONS(1637), + [anon_sym_u8_DQUOTE] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1637), + [anon_sym_ATimport] = ACTIONS(1637), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1639), + [anon_sym_ATcompatibility_alias] = ACTIONS(1637), + [anon_sym_ATprotocol] = ACTIONS(1637), + [anon_sym_ATclass] = ACTIONS(1637), + [anon_sym_ATinterface] = ACTIONS(1637), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1639), + [sym_method_attribute_specifier] = ACTIONS(1639), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1639), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE] = ACTIONS(1639), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_API_AVAILABLE] = ACTIONS(1639), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_API_DEPRECATED] = ACTIONS(1639), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1639), + [anon_sym___deprecated_msg] = ACTIONS(1639), + [anon_sym___deprecated_enum_msg] = ACTIONS(1639), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1639), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1639), + [anon_sym_ATimplementation] = ACTIONS(1637), + [anon_sym_NS_ENUM] = ACTIONS(1639), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1639), + [anon_sym_NS_OPTIONS] = ACTIONS(1639), + [anon_sym_typeof] = ACTIONS(1639), + [anon_sym___typeof] = ACTIONS(1639), + [anon_sym___typeof__] = ACTIONS(1639), + [sym_self] = ACTIONS(1639), + [sym_super] = ACTIONS(1639), + [sym_nil] = ACTIONS(1639), + [sym_id] = ACTIONS(1639), + [sym_instancetype] = ACTIONS(1639), + [sym_Class] = ACTIONS(1639), + [sym_SEL] = ACTIONS(1639), + [sym_IMP] = ACTIONS(1639), + [sym_BOOL] = ACTIONS(1639), + [sym_auto] = ACTIONS(1639), + [anon_sym_ATautoreleasepool] = ACTIONS(1637), + [anon_sym_ATsynchronized] = ACTIONS(1637), + [anon_sym_ATtry] = ACTIONS(1637), + [anon_sym_ATcatch] = ACTIONS(1637), + [anon_sym_ATfinally] = ACTIONS(1637), + [anon_sym_ATthrow] = ACTIONS(1637), + [anon_sym_ATselector] = ACTIONS(1637), + [anon_sym_ATencode] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1639), + [sym_YES] = ACTIONS(1639), + [sym_NO] = ACTIONS(1639), + [anon_sym___builtin_available] = ACTIONS(1639), + [anon_sym_ATavailable] = ACTIONS(1637), + [anon_sym_va_arg] = ACTIONS(1639), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [290] = { + [sym_identifier] = ACTIONS(1639), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [aux_sym_preproc_if_token1] = ACTIONS(1639), + [aux_sym_preproc_if_token2] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1639), + [aux_sym_preproc_else_token1] = ACTIONS(1639), + [aux_sym_preproc_elif_token1] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_CARET] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1639), + [anon_sym___cdecl] = ACTIONS(1639), + [anon_sym___clrcall] = ACTIONS(1639), + [anon_sym___stdcall] = ACTIONS(1639), + [anon_sym___fastcall] = ACTIONS(1639), + [anon_sym___thiscall] = ACTIONS(1639), + [anon_sym___vectorcall] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_auto] = ACTIONS(1639), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_inline] = ACTIONS(1639), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1639), + [anon_sym_restrict] = ACTIONS(1639), + [anon_sym__Atomic] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [anon_sym_out] = ACTIONS(1639), + [anon_sym_inout] = ACTIONS(1639), + [anon_sym_bycopy] = ACTIONS(1639), + [anon_sym_byref] = ACTIONS(1639), + [anon_sym_oneway] = ACTIONS(1639), + [anon_sym__Nullable] = ACTIONS(1639), + [anon_sym__Nonnull] = ACTIONS(1639), + [anon_sym__Nullable_result] = ACTIONS(1639), + [anon_sym__Null_unspecified] = ACTIONS(1639), + [anon_sym___autoreleasing] = ACTIONS(1639), + [anon_sym___nullable] = ACTIONS(1639), + [anon_sym___nonnull] = ACTIONS(1639), + [anon_sym___strong] = ACTIONS(1639), + [anon_sym___weak] = ACTIONS(1639), + [anon_sym___bridge] = ACTIONS(1639), + [anon_sym___bridge_transfer] = ACTIONS(1639), + [anon_sym___bridge_retained] = ACTIONS(1639), + [anon_sym___unsafe_unretained] = ACTIONS(1639), + [anon_sym___block] = ACTIONS(1639), + [anon_sym___kindof] = ACTIONS(1639), + [anon_sym___unused] = ACTIONS(1639), + [anon_sym__Complex] = ACTIONS(1639), + [anon_sym___complex] = ACTIONS(1639), + [anon_sym_IBOutlet] = ACTIONS(1639), + [anon_sym_IBInspectable] = ACTIONS(1639), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1639), + [anon_sym_unsigned] = ACTIONS(1639), + [anon_sym_long] = ACTIONS(1639), + [anon_sym_short] = ACTIONS(1639), + [sym_primitive_type] = ACTIONS(1639), + [anon_sym_enum] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_switch] = ACTIONS(1639), + [anon_sym_case] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_goto] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1637), + [anon_sym_sizeof] = ACTIONS(1639), + [sym_number_literal] = ACTIONS(1637), + [anon_sym_L_SQUOTE] = ACTIONS(1637), + [anon_sym_u_SQUOTE] = ACTIONS(1637), + [anon_sym_U_SQUOTE] = ACTIONS(1637), + [anon_sym_u8_SQUOTE] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1637), + [anon_sym_L_DQUOTE] = ACTIONS(1637), + [anon_sym_u_DQUOTE] = ACTIONS(1637), + [anon_sym_U_DQUOTE] = ACTIONS(1637), + [anon_sym_u8_DQUOTE] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1637), + [anon_sym_ATimport] = ACTIONS(1637), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1639), + [anon_sym_ATcompatibility_alias] = ACTIONS(1637), + [anon_sym_ATprotocol] = ACTIONS(1637), + [anon_sym_ATclass] = ACTIONS(1637), + [anon_sym_ATinterface] = ACTIONS(1637), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1639), + [sym_method_attribute_specifier] = ACTIONS(1639), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1639), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE] = ACTIONS(1639), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_API_AVAILABLE] = ACTIONS(1639), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_API_DEPRECATED] = ACTIONS(1639), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1639), + [anon_sym___deprecated_msg] = ACTIONS(1639), + [anon_sym___deprecated_enum_msg] = ACTIONS(1639), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1639), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1639), + [anon_sym_ATimplementation] = ACTIONS(1637), + [anon_sym_NS_ENUM] = ACTIONS(1639), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1639), + [anon_sym_NS_OPTIONS] = ACTIONS(1639), + [anon_sym_typeof] = ACTIONS(1639), + [anon_sym___typeof] = ACTIONS(1639), + [anon_sym___typeof__] = ACTIONS(1639), + [sym_self] = ACTIONS(1639), + [sym_super] = ACTIONS(1639), + [sym_nil] = ACTIONS(1639), + [sym_id] = ACTIONS(1639), + [sym_instancetype] = ACTIONS(1639), + [sym_Class] = ACTIONS(1639), + [sym_SEL] = ACTIONS(1639), + [sym_IMP] = ACTIONS(1639), + [sym_BOOL] = ACTIONS(1639), + [sym_auto] = ACTIONS(1639), + [anon_sym_ATautoreleasepool] = ACTIONS(1637), + [anon_sym_ATsynchronized] = ACTIONS(1637), + [anon_sym_ATtry] = ACTIONS(1637), + [anon_sym_ATcatch] = ACTIONS(1637), + [anon_sym_ATfinally] = ACTIONS(1637), + [anon_sym_ATthrow] = ACTIONS(1637), + [anon_sym_ATselector] = ACTIONS(1637), + [anon_sym_ATencode] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1639), + [sym_YES] = ACTIONS(1639), + [sym_NO] = ACTIONS(1639), + [anon_sym___builtin_available] = ACTIONS(1639), + [anon_sym_ATavailable] = ACTIONS(1637), + [anon_sym_va_arg] = ACTIONS(1639), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [291] = { + [sym_identifier] = ACTIONS(1201), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1201), + [aux_sym_preproc_if_token2] = ACTIONS(1201), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1201), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1201), + [aux_sym_preproc_else_token1] = ACTIONS(1201), + [aux_sym_preproc_elif_token1] = ACTIONS(1201), + [anon_sym_LPAREN2] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_CARET] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1201), + [anon_sym_extern] = ACTIONS(1201), + [anon_sym___attribute] = ACTIONS(1201), + [anon_sym___attribute__] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1201), + [anon_sym___cdecl] = ACTIONS(1201), + [anon_sym___clrcall] = ACTIONS(1201), + [anon_sym___stdcall] = ACTIONS(1201), + [anon_sym___fastcall] = ACTIONS(1201), + [anon_sym___thiscall] = ACTIONS(1201), + [anon_sym___vectorcall] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_auto] = ACTIONS(1201), + [anon_sym_register] = ACTIONS(1201), + [anon_sym_inline] = ACTIONS(1201), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_volatile] = ACTIONS(1201), + [anon_sym_restrict] = ACTIONS(1201), + [anon_sym__Atomic] = ACTIONS(1201), + [anon_sym_in] = ACTIONS(1201), + [anon_sym_out] = ACTIONS(1201), + [anon_sym_inout] = ACTIONS(1201), + [anon_sym_bycopy] = ACTIONS(1201), + [anon_sym_byref] = ACTIONS(1201), + [anon_sym_oneway] = ACTIONS(1201), + [anon_sym__Nullable] = ACTIONS(1201), + [anon_sym__Nonnull] = ACTIONS(1201), + [anon_sym__Nullable_result] = ACTIONS(1201), + [anon_sym__Null_unspecified] = ACTIONS(1201), + [anon_sym___autoreleasing] = ACTIONS(1201), + [anon_sym___nullable] = ACTIONS(1201), + [anon_sym___nonnull] = ACTIONS(1201), + [anon_sym___strong] = ACTIONS(1201), + [anon_sym___weak] = ACTIONS(1201), + [anon_sym___bridge] = ACTIONS(1201), + [anon_sym___bridge_transfer] = ACTIONS(1201), + [anon_sym___bridge_retained] = ACTIONS(1201), + [anon_sym___unsafe_unretained] = ACTIONS(1201), + [anon_sym___block] = ACTIONS(1201), + [anon_sym___kindof] = ACTIONS(1201), + [anon_sym___unused] = ACTIONS(1201), + [anon_sym__Complex] = ACTIONS(1201), + [anon_sym___complex] = ACTIONS(1201), + [anon_sym_IBOutlet] = ACTIONS(1201), + [anon_sym_IBInspectable] = ACTIONS(1201), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1201), + [anon_sym_unsigned] = ACTIONS(1201), + [anon_sym_long] = ACTIONS(1201), + [anon_sym_short] = ACTIONS(1201), + [sym_primitive_type] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_else] = ACTIONS(1201), + [anon_sym_switch] = ACTIONS(1201), + [anon_sym_case] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [sym_number_literal] = ACTIONS(1199), + [anon_sym_L_SQUOTE] = ACTIONS(1199), + [anon_sym_u_SQUOTE] = ACTIONS(1199), + [anon_sym_U_SQUOTE] = ACTIONS(1199), + [anon_sym_u8_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_L_DQUOTE] = ACTIONS(1199), + [anon_sym_u_DQUOTE] = ACTIONS(1199), + [anon_sym_U_DQUOTE] = ACTIONS(1199), + [anon_sym_u8_DQUOTE] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1199), + [sym_true] = ACTIONS(1201), + [sym_false] = ACTIONS(1201), + [sym_null] = ACTIONS(1201), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1199), + [anon_sym_ATimport] = ACTIONS(1199), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1201), + [anon_sym_ATcompatibility_alias] = ACTIONS(1199), + [anon_sym_ATprotocol] = ACTIONS(1199), + [anon_sym_ATclass] = ACTIONS(1199), + [anon_sym_ATinterface] = ACTIONS(1199), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1201), + [sym_method_attribute_specifier] = ACTIONS(1201), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1201), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1201), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1201), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1201), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1201), + [anon_sym_NS_AVAILABLE] = ACTIONS(1201), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1201), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_API_AVAILABLE] = ACTIONS(1201), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_API_DEPRECATED] = ACTIONS(1201), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1201), + [anon_sym___deprecated_msg] = ACTIONS(1201), + [anon_sym___deprecated_enum_msg] = ACTIONS(1201), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1201), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1201), + [anon_sym_ATimplementation] = ACTIONS(1199), + [anon_sym_NS_ENUM] = ACTIONS(1201), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1201), + [anon_sym_NS_OPTIONS] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1201), + [anon_sym___typeof] = ACTIONS(1201), + [anon_sym___typeof__] = ACTIONS(1201), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_nil] = ACTIONS(1201), + [sym_id] = ACTIONS(1201), + [sym_instancetype] = ACTIONS(1201), + [sym_Class] = ACTIONS(1201), + [sym_SEL] = ACTIONS(1201), + [sym_IMP] = ACTIONS(1201), + [sym_BOOL] = ACTIONS(1201), + [sym_auto] = ACTIONS(1201), + [anon_sym_ATautoreleasepool] = ACTIONS(1199), + [anon_sym_ATsynchronized] = ACTIONS(1199), + [anon_sym_ATtry] = ACTIONS(1199), + [anon_sym_ATcatch] = ACTIONS(1199), + [anon_sym_ATfinally] = ACTIONS(1199), + [anon_sym_ATthrow] = ACTIONS(1199), + [anon_sym_ATselector] = ACTIONS(1199), + [anon_sym_ATencode] = ACTIONS(1199), + [anon_sym_AT] = ACTIONS(1201), + [sym_YES] = ACTIONS(1201), + [sym_NO] = ACTIONS(1201), + [anon_sym___builtin_available] = ACTIONS(1201), + [anon_sym_ATavailable] = ACTIONS(1199), + [anon_sym_va_arg] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [292] = { + [sym_identifier] = ACTIONS(1627), + [aux_sym_preproc_include_token1] = ACTIONS(1625), + [aux_sym_preproc_def_token1] = ACTIONS(1625), + [aux_sym_preproc_if_token1] = ACTIONS(1627), + [aux_sym_preproc_if_token2] = ACTIONS(1627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1627), + [aux_sym_preproc_else_token1] = ACTIONS(1627), + [aux_sym_preproc_elif_token1] = ACTIONS(1627), + [anon_sym_LPAREN2] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1625), + [anon_sym_TILDE] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1627), + [anon_sym_PLUS] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1625), + [anon_sym_CARET] = ACTIONS(1625), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1625), + [anon_sym_typedef] = ACTIONS(1627), + [anon_sym_extern] = ACTIONS(1627), + [anon_sym___attribute] = ACTIONS(1627), + [anon_sym___attribute__] = ACTIONS(1627), + [anon_sym___declspec] = ACTIONS(1627), + [anon_sym___cdecl] = ACTIONS(1627), + [anon_sym___clrcall] = ACTIONS(1627), + [anon_sym___stdcall] = ACTIONS(1627), + [anon_sym___fastcall] = ACTIONS(1627), + [anon_sym___thiscall] = ACTIONS(1627), + [anon_sym___vectorcall] = ACTIONS(1627), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_auto] = ACTIONS(1627), + [anon_sym_register] = ACTIONS(1627), + [anon_sym_inline] = ACTIONS(1627), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1627), + [anon_sym_const] = ACTIONS(1627), + [anon_sym_volatile] = ACTIONS(1627), + [anon_sym_restrict] = ACTIONS(1627), + [anon_sym__Atomic] = ACTIONS(1627), + [anon_sym_in] = ACTIONS(1627), + [anon_sym_out] = ACTIONS(1627), + [anon_sym_inout] = ACTIONS(1627), + [anon_sym_bycopy] = ACTIONS(1627), + [anon_sym_byref] = ACTIONS(1627), + [anon_sym_oneway] = ACTIONS(1627), + [anon_sym__Nullable] = ACTIONS(1627), + [anon_sym__Nonnull] = ACTIONS(1627), + [anon_sym__Nullable_result] = ACTIONS(1627), + [anon_sym__Null_unspecified] = ACTIONS(1627), + [anon_sym___autoreleasing] = ACTIONS(1627), + [anon_sym___nullable] = ACTIONS(1627), + [anon_sym___nonnull] = ACTIONS(1627), + [anon_sym___strong] = ACTIONS(1627), + [anon_sym___weak] = ACTIONS(1627), + [anon_sym___bridge] = ACTIONS(1627), + [anon_sym___bridge_transfer] = ACTIONS(1627), + [anon_sym___bridge_retained] = ACTIONS(1627), + [anon_sym___unsafe_unretained] = ACTIONS(1627), + [anon_sym___block] = ACTIONS(1627), + [anon_sym___kindof] = ACTIONS(1627), + [anon_sym___unused] = ACTIONS(1627), + [anon_sym__Complex] = ACTIONS(1627), + [anon_sym___complex] = ACTIONS(1627), + [anon_sym_IBOutlet] = ACTIONS(1627), + [anon_sym_IBInspectable] = ACTIONS(1627), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1627), + [anon_sym_signed] = ACTIONS(1627), + [anon_sym_unsigned] = ACTIONS(1627), + [anon_sym_long] = ACTIONS(1627), + [anon_sym_short] = ACTIONS(1627), + [sym_primitive_type] = ACTIONS(1627), + [anon_sym_enum] = ACTIONS(1627), + [anon_sym_struct] = ACTIONS(1627), + [anon_sym_union] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1627), + [anon_sym_else] = ACTIONS(1627), + [anon_sym_switch] = ACTIONS(1627), + [anon_sym_case] = ACTIONS(1627), + [anon_sym_default] = ACTIONS(1627), + [anon_sym_while] = ACTIONS(1627), + [anon_sym_do] = ACTIONS(1627), + [anon_sym_for] = ACTIONS(1627), + [anon_sym_return] = ACTIONS(1627), + [anon_sym_break] = ACTIONS(1627), + [anon_sym_continue] = ACTIONS(1627), + [anon_sym_goto] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1625), + [anon_sym_PLUS_PLUS] = ACTIONS(1625), + [anon_sym_sizeof] = ACTIONS(1627), + [sym_number_literal] = ACTIONS(1625), + [anon_sym_L_SQUOTE] = ACTIONS(1625), + [anon_sym_u_SQUOTE] = ACTIONS(1625), + [anon_sym_U_SQUOTE] = ACTIONS(1625), + [anon_sym_u8_SQUOTE] = ACTIONS(1625), + [anon_sym_SQUOTE] = ACTIONS(1625), + [anon_sym_L_DQUOTE] = ACTIONS(1625), + [anon_sym_u_DQUOTE] = ACTIONS(1625), + [anon_sym_U_DQUOTE] = ACTIONS(1625), + [anon_sym_u8_DQUOTE] = ACTIONS(1625), + [anon_sym_DQUOTE] = ACTIONS(1625), + [sym_true] = ACTIONS(1627), + [sym_false] = ACTIONS(1627), + [sym_null] = ACTIONS(1627), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1625), + [anon_sym_ATimport] = ACTIONS(1625), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1627), + [anon_sym_ATcompatibility_alias] = ACTIONS(1625), + [anon_sym_ATprotocol] = ACTIONS(1625), + [anon_sym_ATclass] = ACTIONS(1625), + [anon_sym_ATinterface] = ACTIONS(1625), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1627), + [sym_method_attribute_specifier] = ACTIONS(1627), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1627), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1627), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1627), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1627), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1627), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1627), + [anon_sym_NS_AVAILABLE] = ACTIONS(1627), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1627), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1627), + [anon_sym_API_AVAILABLE] = ACTIONS(1627), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1627), + [anon_sym_API_DEPRECATED] = ACTIONS(1627), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1627), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1627), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1627), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1627), + [anon_sym___deprecated_msg] = ACTIONS(1627), + [anon_sym___deprecated_enum_msg] = ACTIONS(1627), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1627), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1627), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1627), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1627), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1627), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1627), + [anon_sym_ATimplementation] = ACTIONS(1625), + [anon_sym_NS_ENUM] = ACTIONS(1627), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1627), + [anon_sym_NS_OPTIONS] = ACTIONS(1627), + [anon_sym_typeof] = ACTIONS(1627), + [anon_sym___typeof] = ACTIONS(1627), + [anon_sym___typeof__] = ACTIONS(1627), + [sym_self] = ACTIONS(1627), + [sym_super] = ACTIONS(1627), + [sym_nil] = ACTIONS(1627), + [sym_id] = ACTIONS(1627), + [sym_instancetype] = ACTIONS(1627), + [sym_Class] = ACTIONS(1627), + [sym_SEL] = ACTIONS(1627), + [sym_IMP] = ACTIONS(1627), + [sym_BOOL] = ACTIONS(1627), + [sym_auto] = ACTIONS(1627), + [anon_sym_ATautoreleasepool] = ACTIONS(1625), + [anon_sym_ATsynchronized] = ACTIONS(1625), + [anon_sym_ATtry] = ACTIONS(1625), + [anon_sym_ATcatch] = ACTIONS(1625), + [anon_sym_ATfinally] = ACTIONS(1625), + [anon_sym_ATthrow] = ACTIONS(1625), + [anon_sym_ATselector] = ACTIONS(1625), + [anon_sym_ATencode] = ACTIONS(1625), + [anon_sym_AT] = ACTIONS(1627), + [sym_YES] = ACTIONS(1627), + [sym_NO] = ACTIONS(1627), + [anon_sym___builtin_available] = ACTIONS(1627), + [anon_sym_ATavailable] = ACTIONS(1625), + [anon_sym_va_arg] = ACTIONS(1627), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [293] = { + [sym_identifier] = ACTIONS(1623), + [aux_sym_preproc_include_token1] = ACTIONS(1621), + [aux_sym_preproc_def_token1] = ACTIONS(1621), + [aux_sym_preproc_if_token1] = ACTIONS(1623), + [aux_sym_preproc_if_token2] = ACTIONS(1623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1623), + [aux_sym_preproc_else_token1] = ACTIONS(1623), + [aux_sym_preproc_elif_token1] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1621), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_typedef] = ACTIONS(1623), + [anon_sym_extern] = ACTIONS(1623), + [anon_sym___attribute] = ACTIONS(1623), + [anon_sym___attribute__] = ACTIONS(1623), + [anon_sym___declspec] = ACTIONS(1623), + [anon_sym___cdecl] = ACTIONS(1623), + [anon_sym___clrcall] = ACTIONS(1623), + [anon_sym___stdcall] = ACTIONS(1623), + [anon_sym___fastcall] = ACTIONS(1623), + [anon_sym___thiscall] = ACTIONS(1623), + [anon_sym___vectorcall] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1623), + [anon_sym_auto] = ACTIONS(1623), + [anon_sym_register] = ACTIONS(1623), + [anon_sym_inline] = ACTIONS(1623), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1623), + [anon_sym_const] = ACTIONS(1623), + [anon_sym_volatile] = ACTIONS(1623), + [anon_sym_restrict] = ACTIONS(1623), + [anon_sym__Atomic] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_out] = ACTIONS(1623), + [anon_sym_inout] = ACTIONS(1623), + [anon_sym_bycopy] = ACTIONS(1623), + [anon_sym_byref] = ACTIONS(1623), + [anon_sym_oneway] = ACTIONS(1623), + [anon_sym__Nullable] = ACTIONS(1623), + [anon_sym__Nonnull] = ACTIONS(1623), + [anon_sym__Nullable_result] = ACTIONS(1623), + [anon_sym__Null_unspecified] = ACTIONS(1623), + [anon_sym___autoreleasing] = ACTIONS(1623), + [anon_sym___nullable] = ACTIONS(1623), + [anon_sym___nonnull] = ACTIONS(1623), + [anon_sym___strong] = ACTIONS(1623), + [anon_sym___weak] = ACTIONS(1623), + [anon_sym___bridge] = ACTIONS(1623), + [anon_sym___bridge_transfer] = ACTIONS(1623), + [anon_sym___bridge_retained] = ACTIONS(1623), + [anon_sym___unsafe_unretained] = ACTIONS(1623), + [anon_sym___block] = ACTIONS(1623), + [anon_sym___kindof] = ACTIONS(1623), + [anon_sym___unused] = ACTIONS(1623), + [anon_sym__Complex] = ACTIONS(1623), + [anon_sym___complex] = ACTIONS(1623), + [anon_sym_IBOutlet] = ACTIONS(1623), + [anon_sym_IBInspectable] = ACTIONS(1623), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1623), + [anon_sym_signed] = ACTIONS(1623), + [anon_sym_unsigned] = ACTIONS(1623), + [anon_sym_long] = ACTIONS(1623), + [anon_sym_short] = ACTIONS(1623), + [sym_primitive_type] = ACTIONS(1623), + [anon_sym_enum] = ACTIONS(1623), + [anon_sym_struct] = ACTIONS(1623), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1623), + [anon_sym_else] = ACTIONS(1623), + [anon_sym_switch] = ACTIONS(1623), + [anon_sym_case] = ACTIONS(1623), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_while] = ACTIONS(1623), + [anon_sym_do] = ACTIONS(1623), + [anon_sym_for] = ACTIONS(1623), + [anon_sym_return] = ACTIONS(1623), + [anon_sym_break] = ACTIONS(1623), + [anon_sym_continue] = ACTIONS(1623), + [anon_sym_goto] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_sizeof] = ACTIONS(1623), + [sym_number_literal] = ACTIONS(1621), + [anon_sym_L_SQUOTE] = ACTIONS(1621), + [anon_sym_u_SQUOTE] = ACTIONS(1621), + [anon_sym_U_SQUOTE] = ACTIONS(1621), + [anon_sym_u8_SQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_L_DQUOTE] = ACTIONS(1621), + [anon_sym_u_DQUOTE] = ACTIONS(1621), + [anon_sym_U_DQUOTE] = ACTIONS(1621), + [anon_sym_u8_DQUOTE] = ACTIONS(1621), + [anon_sym_DQUOTE] = ACTIONS(1621), + [sym_true] = ACTIONS(1623), + [sym_false] = ACTIONS(1623), + [sym_null] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1621), + [anon_sym_ATimport] = ACTIONS(1621), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1623), + [anon_sym_ATcompatibility_alias] = ACTIONS(1621), + [anon_sym_ATprotocol] = ACTIONS(1621), + [anon_sym_ATclass] = ACTIONS(1621), + [anon_sym_ATinterface] = ACTIONS(1621), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1623), + [sym_method_attribute_specifier] = ACTIONS(1623), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1623), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1623), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1623), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1623), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1623), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1623), + [anon_sym_NS_AVAILABLE] = ACTIONS(1623), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1623), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1623), + [anon_sym_API_AVAILABLE] = ACTIONS(1623), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1623), + [anon_sym_API_DEPRECATED] = ACTIONS(1623), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1623), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1623), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1623), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1623), + [anon_sym___deprecated_msg] = ACTIONS(1623), + [anon_sym___deprecated_enum_msg] = ACTIONS(1623), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1623), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1623), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1623), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1623), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1623), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1623), + [anon_sym_ATimplementation] = ACTIONS(1621), + [anon_sym_NS_ENUM] = ACTIONS(1623), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1623), + [anon_sym_NS_OPTIONS] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1623), + [anon_sym___typeof] = ACTIONS(1623), + [anon_sym___typeof__] = ACTIONS(1623), + [sym_self] = ACTIONS(1623), + [sym_super] = ACTIONS(1623), + [sym_nil] = ACTIONS(1623), + [sym_id] = ACTIONS(1623), + [sym_instancetype] = ACTIONS(1623), + [sym_Class] = ACTIONS(1623), + [sym_SEL] = ACTIONS(1623), + [sym_IMP] = ACTIONS(1623), + [sym_BOOL] = ACTIONS(1623), + [sym_auto] = ACTIONS(1623), + [anon_sym_ATautoreleasepool] = ACTIONS(1621), + [anon_sym_ATsynchronized] = ACTIONS(1621), + [anon_sym_ATtry] = ACTIONS(1621), + [anon_sym_ATcatch] = ACTIONS(1621), + [anon_sym_ATfinally] = ACTIONS(1621), + [anon_sym_ATthrow] = ACTIONS(1621), + [anon_sym_ATselector] = ACTIONS(1621), + [anon_sym_ATencode] = ACTIONS(1621), + [anon_sym_AT] = ACTIONS(1623), + [sym_YES] = ACTIONS(1623), + [sym_NO] = ACTIONS(1623), + [anon_sym___builtin_available] = ACTIONS(1623), + [anon_sym_ATavailable] = ACTIONS(1621), + [anon_sym_va_arg] = ACTIONS(1623), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [294] = { + [sym_identifier] = ACTIONS(1619), + [aux_sym_preproc_include_token1] = ACTIONS(1617), + [aux_sym_preproc_def_token1] = ACTIONS(1617), + [aux_sym_preproc_if_token1] = ACTIONS(1619), + [aux_sym_preproc_if_token2] = ACTIONS(1619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1619), + [aux_sym_preproc_else_token1] = ACTIONS(1619), + [aux_sym_preproc_elif_token1] = ACTIONS(1619), + [anon_sym_LPAREN2] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1617), + [anon_sym_TILDE] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1617), + [anon_sym_CARET] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1617), + [anon_sym_typedef] = ACTIONS(1619), + [anon_sym_extern] = ACTIONS(1619), + [anon_sym___attribute] = ACTIONS(1619), + [anon_sym___attribute__] = ACTIONS(1619), + [anon_sym___declspec] = ACTIONS(1619), + [anon_sym___cdecl] = ACTIONS(1619), + [anon_sym___clrcall] = ACTIONS(1619), + [anon_sym___stdcall] = ACTIONS(1619), + [anon_sym___fastcall] = ACTIONS(1619), + [anon_sym___thiscall] = ACTIONS(1619), + [anon_sym___vectorcall] = ACTIONS(1619), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1619), + [anon_sym_auto] = ACTIONS(1619), + [anon_sym_register] = ACTIONS(1619), + [anon_sym_inline] = ACTIONS(1619), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1619), + [anon_sym_const] = ACTIONS(1619), + [anon_sym_volatile] = ACTIONS(1619), + [anon_sym_restrict] = ACTIONS(1619), + [anon_sym__Atomic] = ACTIONS(1619), + [anon_sym_in] = ACTIONS(1619), + [anon_sym_out] = ACTIONS(1619), + [anon_sym_inout] = ACTIONS(1619), + [anon_sym_bycopy] = ACTIONS(1619), + [anon_sym_byref] = ACTIONS(1619), + [anon_sym_oneway] = ACTIONS(1619), + [anon_sym__Nullable] = ACTIONS(1619), + [anon_sym__Nonnull] = ACTIONS(1619), + [anon_sym__Nullable_result] = ACTIONS(1619), + [anon_sym__Null_unspecified] = ACTIONS(1619), + [anon_sym___autoreleasing] = ACTIONS(1619), + [anon_sym___nullable] = ACTIONS(1619), + [anon_sym___nonnull] = ACTIONS(1619), + [anon_sym___strong] = ACTIONS(1619), + [anon_sym___weak] = ACTIONS(1619), + [anon_sym___bridge] = ACTIONS(1619), + [anon_sym___bridge_transfer] = ACTIONS(1619), + [anon_sym___bridge_retained] = ACTIONS(1619), + [anon_sym___unsafe_unretained] = ACTIONS(1619), + [anon_sym___block] = ACTIONS(1619), + [anon_sym___kindof] = ACTIONS(1619), + [anon_sym___unused] = ACTIONS(1619), + [anon_sym__Complex] = ACTIONS(1619), + [anon_sym___complex] = ACTIONS(1619), + [anon_sym_IBOutlet] = ACTIONS(1619), + [anon_sym_IBInspectable] = ACTIONS(1619), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1619), + [anon_sym_signed] = ACTIONS(1619), + [anon_sym_unsigned] = ACTIONS(1619), + [anon_sym_long] = ACTIONS(1619), + [anon_sym_short] = ACTIONS(1619), + [sym_primitive_type] = ACTIONS(1619), + [anon_sym_enum] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1619), + [anon_sym_union] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1619), + [anon_sym_else] = ACTIONS(1619), + [anon_sym_switch] = ACTIONS(1619), + [anon_sym_case] = ACTIONS(1619), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_while] = ACTIONS(1619), + [anon_sym_do] = ACTIONS(1619), + [anon_sym_for] = ACTIONS(1619), + [anon_sym_return] = ACTIONS(1619), + [anon_sym_break] = ACTIONS(1619), + [anon_sym_continue] = ACTIONS(1619), + [anon_sym_goto] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1617), + [anon_sym_PLUS_PLUS] = ACTIONS(1617), + [anon_sym_sizeof] = ACTIONS(1619), + [sym_number_literal] = ACTIONS(1617), + [anon_sym_L_SQUOTE] = ACTIONS(1617), + [anon_sym_u_SQUOTE] = ACTIONS(1617), + [anon_sym_U_SQUOTE] = ACTIONS(1617), + [anon_sym_u8_SQUOTE] = ACTIONS(1617), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_L_DQUOTE] = ACTIONS(1617), + [anon_sym_u_DQUOTE] = ACTIONS(1617), + [anon_sym_U_DQUOTE] = ACTIONS(1617), + [anon_sym_u8_DQUOTE] = ACTIONS(1617), + [anon_sym_DQUOTE] = ACTIONS(1617), + [sym_true] = ACTIONS(1619), + [sym_false] = ACTIONS(1619), + [sym_null] = ACTIONS(1619), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1617), + [anon_sym_ATimport] = ACTIONS(1617), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1619), + [anon_sym_ATcompatibility_alias] = ACTIONS(1617), + [anon_sym_ATprotocol] = ACTIONS(1617), + [anon_sym_ATclass] = ACTIONS(1617), + [anon_sym_ATinterface] = ACTIONS(1617), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1619), + [sym_method_attribute_specifier] = ACTIONS(1619), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1619), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1619), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1619), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1619), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1619), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1619), + [anon_sym_NS_AVAILABLE] = ACTIONS(1619), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1619), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1619), + [anon_sym_API_AVAILABLE] = ACTIONS(1619), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1619), + [anon_sym_API_DEPRECATED] = ACTIONS(1619), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1619), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1619), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1619), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1619), + [anon_sym___deprecated_msg] = ACTIONS(1619), + [anon_sym___deprecated_enum_msg] = ACTIONS(1619), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1619), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1619), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1619), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1619), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1619), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1619), + [anon_sym_ATimplementation] = ACTIONS(1617), + [anon_sym_NS_ENUM] = ACTIONS(1619), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1619), + [anon_sym_NS_OPTIONS] = ACTIONS(1619), + [anon_sym_typeof] = ACTIONS(1619), + [anon_sym___typeof] = ACTIONS(1619), + [anon_sym___typeof__] = ACTIONS(1619), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_nil] = ACTIONS(1619), + [sym_id] = ACTIONS(1619), + [sym_instancetype] = ACTIONS(1619), + [sym_Class] = ACTIONS(1619), + [sym_SEL] = ACTIONS(1619), + [sym_IMP] = ACTIONS(1619), + [sym_BOOL] = ACTIONS(1619), + [sym_auto] = ACTIONS(1619), + [anon_sym_ATautoreleasepool] = ACTIONS(1617), + [anon_sym_ATsynchronized] = ACTIONS(1617), + [anon_sym_ATtry] = ACTIONS(1617), + [anon_sym_ATcatch] = ACTIONS(1617), + [anon_sym_ATfinally] = ACTIONS(1617), + [anon_sym_ATthrow] = ACTIONS(1617), + [anon_sym_ATselector] = ACTIONS(1617), + [anon_sym_ATencode] = ACTIONS(1617), + [anon_sym_AT] = ACTIONS(1619), + [sym_YES] = ACTIONS(1619), + [sym_NO] = ACTIONS(1619), + [anon_sym___builtin_available] = ACTIONS(1619), + [anon_sym_ATavailable] = ACTIONS(1617), + [anon_sym_va_arg] = ACTIONS(1619), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [295] = { + [sym_identifier] = ACTIONS(1615), + [aux_sym_preproc_include_token1] = ACTIONS(1613), + [aux_sym_preproc_def_token1] = ACTIONS(1613), + [aux_sym_preproc_if_token1] = ACTIONS(1615), + [aux_sym_preproc_if_token2] = ACTIONS(1615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1615), + [aux_sym_preproc_else_token1] = ACTIONS(1615), + [aux_sym_preproc_elif_token1] = ACTIONS(1615), + [anon_sym_LPAREN2] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1613), + [anon_sym_TILDE] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_STAR] = ACTIONS(1613), + [anon_sym_CARET] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1613), + [anon_sym_typedef] = ACTIONS(1615), + [anon_sym_extern] = ACTIONS(1615), + [anon_sym___attribute] = ACTIONS(1615), + [anon_sym___attribute__] = ACTIONS(1615), + [anon_sym___declspec] = ACTIONS(1615), + [anon_sym___cdecl] = ACTIONS(1615), + [anon_sym___clrcall] = ACTIONS(1615), + [anon_sym___stdcall] = ACTIONS(1615), + [anon_sym___fastcall] = ACTIONS(1615), + [anon_sym___thiscall] = ACTIONS(1615), + [anon_sym___vectorcall] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_LBRACK] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1615), + [anon_sym_auto] = ACTIONS(1615), + [anon_sym_register] = ACTIONS(1615), + [anon_sym_inline] = ACTIONS(1615), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1615), + [anon_sym_const] = ACTIONS(1615), + [anon_sym_volatile] = ACTIONS(1615), + [anon_sym_restrict] = ACTIONS(1615), + [anon_sym__Atomic] = ACTIONS(1615), + [anon_sym_in] = ACTIONS(1615), + [anon_sym_out] = ACTIONS(1615), + [anon_sym_inout] = ACTIONS(1615), + [anon_sym_bycopy] = ACTIONS(1615), + [anon_sym_byref] = ACTIONS(1615), + [anon_sym_oneway] = ACTIONS(1615), + [anon_sym__Nullable] = ACTIONS(1615), + [anon_sym__Nonnull] = ACTIONS(1615), + [anon_sym__Nullable_result] = ACTIONS(1615), + [anon_sym__Null_unspecified] = ACTIONS(1615), + [anon_sym___autoreleasing] = ACTIONS(1615), + [anon_sym___nullable] = ACTIONS(1615), + [anon_sym___nonnull] = ACTIONS(1615), + [anon_sym___strong] = ACTIONS(1615), + [anon_sym___weak] = ACTIONS(1615), + [anon_sym___bridge] = ACTIONS(1615), + [anon_sym___bridge_transfer] = ACTIONS(1615), + [anon_sym___bridge_retained] = ACTIONS(1615), + [anon_sym___unsafe_unretained] = ACTIONS(1615), + [anon_sym___block] = ACTIONS(1615), + [anon_sym___kindof] = ACTIONS(1615), + [anon_sym___unused] = ACTIONS(1615), + [anon_sym__Complex] = ACTIONS(1615), + [anon_sym___complex] = ACTIONS(1615), + [anon_sym_IBOutlet] = ACTIONS(1615), + [anon_sym_IBInspectable] = ACTIONS(1615), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1615), + [anon_sym_signed] = ACTIONS(1615), + [anon_sym_unsigned] = ACTIONS(1615), + [anon_sym_long] = ACTIONS(1615), + [anon_sym_short] = ACTIONS(1615), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1615), + [anon_sym_struct] = ACTIONS(1615), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1615), + [anon_sym_else] = ACTIONS(1615), + [anon_sym_switch] = ACTIONS(1615), + [anon_sym_case] = ACTIONS(1615), + [anon_sym_default] = ACTIONS(1615), + [anon_sym_while] = ACTIONS(1615), + [anon_sym_do] = ACTIONS(1615), + [anon_sym_for] = ACTIONS(1615), + [anon_sym_return] = ACTIONS(1615), + [anon_sym_break] = ACTIONS(1615), + [anon_sym_continue] = ACTIONS(1615), + [anon_sym_goto] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1613), + [anon_sym_PLUS_PLUS] = ACTIONS(1613), + [anon_sym_sizeof] = ACTIONS(1615), + [sym_number_literal] = ACTIONS(1613), + [anon_sym_L_SQUOTE] = ACTIONS(1613), + [anon_sym_u_SQUOTE] = ACTIONS(1613), + [anon_sym_U_SQUOTE] = ACTIONS(1613), + [anon_sym_u8_SQUOTE] = ACTIONS(1613), + [anon_sym_SQUOTE] = ACTIONS(1613), + [anon_sym_L_DQUOTE] = ACTIONS(1613), + [anon_sym_u_DQUOTE] = ACTIONS(1613), + [anon_sym_U_DQUOTE] = ACTIONS(1613), + [anon_sym_u8_DQUOTE] = ACTIONS(1613), + [anon_sym_DQUOTE] = ACTIONS(1613), + [sym_true] = ACTIONS(1615), + [sym_false] = ACTIONS(1615), + [sym_null] = ACTIONS(1615), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1613), + [anon_sym_ATimport] = ACTIONS(1613), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1615), + [anon_sym_ATcompatibility_alias] = ACTIONS(1613), + [anon_sym_ATprotocol] = ACTIONS(1613), + [anon_sym_ATclass] = ACTIONS(1613), + [anon_sym_ATinterface] = ACTIONS(1613), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1615), + [sym_method_attribute_specifier] = ACTIONS(1615), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1615), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1615), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1615), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1615), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1615), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1615), + [anon_sym_NS_AVAILABLE] = ACTIONS(1615), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1615), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1615), + [anon_sym_API_AVAILABLE] = ACTIONS(1615), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1615), + [anon_sym_API_DEPRECATED] = ACTIONS(1615), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1615), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1615), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1615), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1615), + [anon_sym___deprecated_msg] = ACTIONS(1615), + [anon_sym___deprecated_enum_msg] = ACTIONS(1615), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1615), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1615), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1615), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1615), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1615), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1615), + [anon_sym_ATimplementation] = ACTIONS(1613), + [anon_sym_NS_ENUM] = ACTIONS(1615), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1615), + [anon_sym_NS_OPTIONS] = ACTIONS(1615), + [anon_sym_typeof] = ACTIONS(1615), + [anon_sym___typeof] = ACTIONS(1615), + [anon_sym___typeof__] = ACTIONS(1615), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_nil] = ACTIONS(1615), + [sym_id] = ACTIONS(1615), + [sym_instancetype] = ACTIONS(1615), + [sym_Class] = ACTIONS(1615), + [sym_SEL] = ACTIONS(1615), + [sym_IMP] = ACTIONS(1615), + [sym_BOOL] = ACTIONS(1615), + [sym_auto] = ACTIONS(1615), + [anon_sym_ATautoreleasepool] = ACTIONS(1613), + [anon_sym_ATsynchronized] = ACTIONS(1613), + [anon_sym_ATtry] = ACTIONS(1613), + [anon_sym_ATcatch] = ACTIONS(1613), + [anon_sym_ATfinally] = ACTIONS(1613), + [anon_sym_ATthrow] = ACTIONS(1613), + [anon_sym_ATselector] = ACTIONS(1613), + [anon_sym_ATencode] = ACTIONS(1613), + [anon_sym_AT] = ACTIONS(1615), + [sym_YES] = ACTIONS(1615), + [sym_NO] = ACTIONS(1615), + [anon_sym___builtin_available] = ACTIONS(1615), + [anon_sym_ATavailable] = ACTIONS(1613), + [anon_sym_va_arg] = ACTIONS(1615), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [296] = { + [sym_identifier] = ACTIONS(1545), + [aux_sym_preproc_include_token1] = ACTIONS(1543), + [aux_sym_preproc_def_token1] = ACTIONS(1543), + [aux_sym_preproc_if_token1] = ACTIONS(1545), + [aux_sym_preproc_if_token2] = ACTIONS(1545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1545), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1545), + [aux_sym_preproc_else_token1] = ACTIONS(1545), + [aux_sym_preproc_elif_token1] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_CARET] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_typedef] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1545), + [anon_sym___attribute] = ACTIONS(1545), + [anon_sym___attribute__] = ACTIONS(1545), + [anon_sym___declspec] = ACTIONS(1545), + [anon_sym___cdecl] = ACTIONS(1545), + [anon_sym___clrcall] = ACTIONS(1545), + [anon_sym___stdcall] = ACTIONS(1545), + [anon_sym___fastcall] = ACTIONS(1545), + [anon_sym___thiscall] = ACTIONS(1545), + [anon_sym___vectorcall] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_auto] = ACTIONS(1545), + [anon_sym_register] = ACTIONS(1545), + [anon_sym_inline] = ACTIONS(1545), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_volatile] = ACTIONS(1545), + [anon_sym_restrict] = ACTIONS(1545), + [anon_sym__Atomic] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(1545), + [anon_sym_out] = ACTIONS(1545), + [anon_sym_inout] = ACTIONS(1545), + [anon_sym_bycopy] = ACTIONS(1545), + [anon_sym_byref] = ACTIONS(1545), + [anon_sym_oneway] = ACTIONS(1545), + [anon_sym__Nullable] = ACTIONS(1545), + [anon_sym__Nonnull] = ACTIONS(1545), + [anon_sym__Nullable_result] = ACTIONS(1545), + [anon_sym__Null_unspecified] = ACTIONS(1545), + [anon_sym___autoreleasing] = ACTIONS(1545), + [anon_sym___nullable] = ACTIONS(1545), + [anon_sym___nonnull] = ACTIONS(1545), + [anon_sym___strong] = ACTIONS(1545), + [anon_sym___weak] = ACTIONS(1545), + [anon_sym___bridge] = ACTIONS(1545), + [anon_sym___bridge_transfer] = ACTIONS(1545), + [anon_sym___bridge_retained] = ACTIONS(1545), + [anon_sym___unsafe_unretained] = ACTIONS(1545), + [anon_sym___block] = ACTIONS(1545), + [anon_sym___kindof] = ACTIONS(1545), + [anon_sym___unused] = ACTIONS(1545), + [anon_sym__Complex] = ACTIONS(1545), + [anon_sym___complex] = ACTIONS(1545), + [anon_sym_IBOutlet] = ACTIONS(1545), + [anon_sym_IBInspectable] = ACTIONS(1545), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1545), + [anon_sym_signed] = ACTIONS(1545), + [anon_sym_unsigned] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [sym_primitive_type] = ACTIONS(1545), + [anon_sym_enum] = ACTIONS(1545), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_else] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_case] = ACTIONS(1545), + [anon_sym_default] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_goto] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_sizeof] = ACTIONS(1545), + [sym_number_literal] = ACTIONS(1543), + [anon_sym_L_SQUOTE] = ACTIONS(1543), + [anon_sym_u_SQUOTE] = ACTIONS(1543), + [anon_sym_U_SQUOTE] = ACTIONS(1543), + [anon_sym_u8_SQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_L_DQUOTE] = ACTIONS(1543), + [anon_sym_u_DQUOTE] = ACTIONS(1543), + [anon_sym_U_DQUOTE] = ACTIONS(1543), + [anon_sym_u8_DQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [sym_true] = ACTIONS(1545), + [sym_false] = ACTIONS(1545), + [sym_null] = ACTIONS(1545), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1543), + [anon_sym_ATimport] = ACTIONS(1543), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1545), + [anon_sym_ATcompatibility_alias] = ACTIONS(1543), + [anon_sym_ATprotocol] = ACTIONS(1543), + [anon_sym_ATclass] = ACTIONS(1543), + [anon_sym_ATinterface] = ACTIONS(1543), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1545), + [sym_method_attribute_specifier] = ACTIONS(1545), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1545), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1545), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1545), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1545), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1545), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1545), + [anon_sym_NS_AVAILABLE] = ACTIONS(1545), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1545), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1545), + [anon_sym_API_AVAILABLE] = ACTIONS(1545), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1545), + [anon_sym_API_DEPRECATED] = ACTIONS(1545), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1545), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1545), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1545), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1545), + [anon_sym___deprecated_msg] = ACTIONS(1545), + [anon_sym___deprecated_enum_msg] = ACTIONS(1545), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1545), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1545), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1545), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1545), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1545), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1545), + [anon_sym_ATimplementation] = ACTIONS(1543), + [anon_sym_NS_ENUM] = ACTIONS(1545), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1545), + [anon_sym_NS_OPTIONS] = ACTIONS(1545), + [anon_sym_typeof] = ACTIONS(1545), + [anon_sym___typeof] = ACTIONS(1545), + [anon_sym___typeof__] = ACTIONS(1545), + [sym_self] = ACTIONS(1545), + [sym_super] = ACTIONS(1545), + [sym_nil] = ACTIONS(1545), + [sym_id] = ACTIONS(1545), + [sym_instancetype] = ACTIONS(1545), + [sym_Class] = ACTIONS(1545), + [sym_SEL] = ACTIONS(1545), + [sym_IMP] = ACTIONS(1545), + [sym_BOOL] = ACTIONS(1545), + [sym_auto] = ACTIONS(1545), + [anon_sym_ATautoreleasepool] = ACTIONS(1543), + [anon_sym_ATsynchronized] = ACTIONS(1543), + [anon_sym_ATtry] = ACTIONS(1543), + [anon_sym_ATcatch] = ACTIONS(1543), + [anon_sym_ATfinally] = ACTIONS(1543), + [anon_sym_ATthrow] = ACTIONS(1543), + [anon_sym_ATselector] = ACTIONS(1543), + [anon_sym_ATencode] = ACTIONS(1543), + [anon_sym_AT] = ACTIONS(1545), + [sym_YES] = ACTIONS(1545), + [sym_NO] = ACTIONS(1545), + [anon_sym___builtin_available] = ACTIONS(1545), + [anon_sym_ATavailable] = ACTIONS(1543), + [anon_sym_va_arg] = ACTIONS(1545), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [297] = { + [sym_identifier] = ACTIONS(1611), + [aux_sym_preproc_include_token1] = ACTIONS(1609), + [aux_sym_preproc_def_token1] = ACTIONS(1609), + [aux_sym_preproc_if_token1] = ACTIONS(1611), + [aux_sym_preproc_if_token2] = ACTIONS(1611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1611), + [aux_sym_preproc_else_token1] = ACTIONS(1611), + [aux_sym_preproc_elif_token1] = ACTIONS(1611), + [anon_sym_LPAREN2] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1609), + [anon_sym_TILDE] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1611), + [anon_sym_STAR] = ACTIONS(1609), + [anon_sym_CARET] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_typedef] = ACTIONS(1611), + [anon_sym_extern] = ACTIONS(1611), + [anon_sym___attribute] = ACTIONS(1611), + [anon_sym___attribute__] = ACTIONS(1611), + [anon_sym___declspec] = ACTIONS(1611), + [anon_sym___cdecl] = ACTIONS(1611), + [anon_sym___clrcall] = ACTIONS(1611), + [anon_sym___stdcall] = ACTIONS(1611), + [anon_sym___fastcall] = ACTIONS(1611), + [anon_sym___thiscall] = ACTIONS(1611), + [anon_sym___vectorcall] = ACTIONS(1611), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1611), + [anon_sym_auto] = ACTIONS(1611), + [anon_sym_register] = ACTIONS(1611), + [anon_sym_inline] = ACTIONS(1611), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1611), + [anon_sym_const] = ACTIONS(1611), + [anon_sym_volatile] = ACTIONS(1611), + [anon_sym_restrict] = ACTIONS(1611), + [anon_sym__Atomic] = ACTIONS(1611), + [anon_sym_in] = ACTIONS(1611), + [anon_sym_out] = ACTIONS(1611), + [anon_sym_inout] = ACTIONS(1611), + [anon_sym_bycopy] = ACTIONS(1611), + [anon_sym_byref] = ACTIONS(1611), + [anon_sym_oneway] = ACTIONS(1611), + [anon_sym__Nullable] = ACTIONS(1611), + [anon_sym__Nonnull] = ACTIONS(1611), + [anon_sym__Nullable_result] = ACTIONS(1611), + [anon_sym__Null_unspecified] = ACTIONS(1611), + [anon_sym___autoreleasing] = ACTIONS(1611), + [anon_sym___nullable] = ACTIONS(1611), + [anon_sym___nonnull] = ACTIONS(1611), + [anon_sym___strong] = ACTIONS(1611), + [anon_sym___weak] = ACTIONS(1611), + [anon_sym___bridge] = ACTIONS(1611), + [anon_sym___bridge_transfer] = ACTIONS(1611), + [anon_sym___bridge_retained] = ACTIONS(1611), + [anon_sym___unsafe_unretained] = ACTIONS(1611), + [anon_sym___block] = ACTIONS(1611), + [anon_sym___kindof] = ACTIONS(1611), + [anon_sym___unused] = ACTIONS(1611), + [anon_sym__Complex] = ACTIONS(1611), + [anon_sym___complex] = ACTIONS(1611), + [anon_sym_IBOutlet] = ACTIONS(1611), + [anon_sym_IBInspectable] = ACTIONS(1611), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1611), + [anon_sym_signed] = ACTIONS(1611), + [anon_sym_unsigned] = ACTIONS(1611), + [anon_sym_long] = ACTIONS(1611), + [anon_sym_short] = ACTIONS(1611), + [sym_primitive_type] = ACTIONS(1611), + [anon_sym_enum] = ACTIONS(1611), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1611), + [anon_sym_else] = ACTIONS(1611), + [anon_sym_switch] = ACTIONS(1611), + [anon_sym_case] = ACTIONS(1611), + [anon_sym_default] = ACTIONS(1611), + [anon_sym_while] = ACTIONS(1611), + [anon_sym_do] = ACTIONS(1611), + [anon_sym_for] = ACTIONS(1611), + [anon_sym_return] = ACTIONS(1611), + [anon_sym_break] = ACTIONS(1611), + [anon_sym_continue] = ACTIONS(1611), + [anon_sym_goto] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1609), + [anon_sym_PLUS_PLUS] = ACTIONS(1609), + [anon_sym_sizeof] = ACTIONS(1611), + [sym_number_literal] = ACTIONS(1609), + [anon_sym_L_SQUOTE] = ACTIONS(1609), + [anon_sym_u_SQUOTE] = ACTIONS(1609), + [anon_sym_U_SQUOTE] = ACTIONS(1609), + [anon_sym_u8_SQUOTE] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(1609), + [anon_sym_L_DQUOTE] = ACTIONS(1609), + [anon_sym_u_DQUOTE] = ACTIONS(1609), + [anon_sym_U_DQUOTE] = ACTIONS(1609), + [anon_sym_u8_DQUOTE] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1609), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1609), + [anon_sym_ATimport] = ACTIONS(1609), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1611), + [anon_sym_ATcompatibility_alias] = ACTIONS(1609), + [anon_sym_ATprotocol] = ACTIONS(1609), + [anon_sym_ATclass] = ACTIONS(1609), + [anon_sym_ATinterface] = ACTIONS(1609), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1611), + [sym_method_attribute_specifier] = ACTIONS(1611), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1611), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1611), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1611), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1611), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1611), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1611), + [anon_sym_NS_AVAILABLE] = ACTIONS(1611), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1611), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1611), + [anon_sym_API_AVAILABLE] = ACTIONS(1611), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1611), + [anon_sym_API_DEPRECATED] = ACTIONS(1611), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1611), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1611), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1611), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1611), + [anon_sym___deprecated_msg] = ACTIONS(1611), + [anon_sym___deprecated_enum_msg] = ACTIONS(1611), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1611), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1611), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1611), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1611), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1611), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1611), + [anon_sym_ATimplementation] = ACTIONS(1609), + [anon_sym_NS_ENUM] = ACTIONS(1611), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1611), + [anon_sym_NS_OPTIONS] = ACTIONS(1611), + [anon_sym_typeof] = ACTIONS(1611), + [anon_sym___typeof] = ACTIONS(1611), + [anon_sym___typeof__] = ACTIONS(1611), + [sym_self] = ACTIONS(1611), + [sym_super] = ACTIONS(1611), + [sym_nil] = ACTIONS(1611), + [sym_id] = ACTIONS(1611), + [sym_instancetype] = ACTIONS(1611), + [sym_Class] = ACTIONS(1611), + [sym_SEL] = ACTIONS(1611), + [sym_IMP] = ACTIONS(1611), + [sym_BOOL] = ACTIONS(1611), + [sym_auto] = ACTIONS(1611), + [anon_sym_ATautoreleasepool] = ACTIONS(1609), + [anon_sym_ATsynchronized] = ACTIONS(1609), + [anon_sym_ATtry] = ACTIONS(1609), + [anon_sym_ATcatch] = ACTIONS(1609), + [anon_sym_ATfinally] = ACTIONS(1609), + [anon_sym_ATthrow] = ACTIONS(1609), + [anon_sym_ATselector] = ACTIONS(1609), + [anon_sym_ATencode] = ACTIONS(1609), + [anon_sym_AT] = ACTIONS(1611), + [sym_YES] = ACTIONS(1611), + [sym_NO] = ACTIONS(1611), + [anon_sym___builtin_available] = ACTIONS(1611), + [anon_sym_ATavailable] = ACTIONS(1609), + [anon_sym_va_arg] = ACTIONS(1611), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [298] = { + [sym_identifier] = ACTIONS(1607), + [aux_sym_preproc_include_token1] = ACTIONS(1605), + [aux_sym_preproc_def_token1] = ACTIONS(1605), + [aux_sym_preproc_if_token1] = ACTIONS(1607), + [aux_sym_preproc_if_token2] = ACTIONS(1607), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1607), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1607), + [aux_sym_preproc_else_token1] = ACTIONS(1607), + [aux_sym_preproc_elif_token1] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1605), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym___attribute] = ACTIONS(1607), + [anon_sym___attribute__] = ACTIONS(1607), + [anon_sym___declspec] = ACTIONS(1607), + [anon_sym___cdecl] = ACTIONS(1607), + [anon_sym___clrcall] = ACTIONS(1607), + [anon_sym___stdcall] = ACTIONS(1607), + [anon_sym___fastcall] = ACTIONS(1607), + [anon_sym___thiscall] = ACTIONS(1607), + [anon_sym___vectorcall] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1607), + [anon_sym_auto] = ACTIONS(1607), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_inline] = ACTIONS(1607), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [anon_sym_volatile] = ACTIONS(1607), + [anon_sym_restrict] = ACTIONS(1607), + [anon_sym__Atomic] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_out] = ACTIONS(1607), + [anon_sym_inout] = ACTIONS(1607), + [anon_sym_bycopy] = ACTIONS(1607), + [anon_sym_byref] = ACTIONS(1607), + [anon_sym_oneway] = ACTIONS(1607), + [anon_sym__Nullable] = ACTIONS(1607), + [anon_sym__Nonnull] = ACTIONS(1607), + [anon_sym__Nullable_result] = ACTIONS(1607), + [anon_sym__Null_unspecified] = ACTIONS(1607), + [anon_sym___autoreleasing] = ACTIONS(1607), + [anon_sym___nullable] = ACTIONS(1607), + [anon_sym___nonnull] = ACTIONS(1607), + [anon_sym___strong] = ACTIONS(1607), + [anon_sym___weak] = ACTIONS(1607), + [anon_sym___bridge] = ACTIONS(1607), + [anon_sym___bridge_transfer] = ACTIONS(1607), + [anon_sym___bridge_retained] = ACTIONS(1607), + [anon_sym___unsafe_unretained] = ACTIONS(1607), + [anon_sym___block] = ACTIONS(1607), + [anon_sym___kindof] = ACTIONS(1607), + [anon_sym___unused] = ACTIONS(1607), + [anon_sym__Complex] = ACTIONS(1607), + [anon_sym___complex] = ACTIONS(1607), + [anon_sym_IBOutlet] = ACTIONS(1607), + [anon_sym_IBInspectable] = ACTIONS(1607), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1607), + [anon_sym_signed] = ACTIONS(1607), + [anon_sym_unsigned] = ACTIONS(1607), + [anon_sym_long] = ACTIONS(1607), + [anon_sym_short] = ACTIONS(1607), + [sym_primitive_type] = ACTIONS(1607), + [anon_sym_enum] = ACTIONS(1607), + [anon_sym_struct] = ACTIONS(1607), + [anon_sym_union] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_else] = ACTIONS(1607), + [anon_sym_switch] = ACTIONS(1607), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_goto] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1605), + [anon_sym_sizeof] = ACTIONS(1607), + [sym_number_literal] = ACTIONS(1605), + [anon_sym_L_SQUOTE] = ACTIONS(1605), + [anon_sym_u_SQUOTE] = ACTIONS(1605), + [anon_sym_U_SQUOTE] = ACTIONS(1605), + [anon_sym_u8_SQUOTE] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_L_DQUOTE] = ACTIONS(1605), + [anon_sym_u_DQUOTE] = ACTIONS(1605), + [anon_sym_U_DQUOTE] = ACTIONS(1605), + [anon_sym_u8_DQUOTE] = ACTIONS(1605), + [anon_sym_DQUOTE] = ACTIONS(1605), + [sym_true] = ACTIONS(1607), + [sym_false] = ACTIONS(1607), + [sym_null] = ACTIONS(1607), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1605), + [anon_sym_ATimport] = ACTIONS(1605), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1607), + [anon_sym_ATcompatibility_alias] = ACTIONS(1605), + [anon_sym_ATprotocol] = ACTIONS(1605), + [anon_sym_ATclass] = ACTIONS(1605), + [anon_sym_ATinterface] = ACTIONS(1605), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1607), + [sym_method_attribute_specifier] = ACTIONS(1607), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1607), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1607), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1607), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1607), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1607), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1607), + [anon_sym_NS_AVAILABLE] = ACTIONS(1607), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1607), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1607), + [anon_sym_API_AVAILABLE] = ACTIONS(1607), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1607), + [anon_sym_API_DEPRECATED] = ACTIONS(1607), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1607), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1607), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1607), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1607), + [anon_sym___deprecated_msg] = ACTIONS(1607), + [anon_sym___deprecated_enum_msg] = ACTIONS(1607), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1607), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1607), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1607), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1607), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1607), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1607), + [anon_sym_ATimplementation] = ACTIONS(1605), + [anon_sym_NS_ENUM] = ACTIONS(1607), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1607), + [anon_sym_NS_OPTIONS] = ACTIONS(1607), + [anon_sym_typeof] = ACTIONS(1607), + [anon_sym___typeof] = ACTIONS(1607), + [anon_sym___typeof__] = ACTIONS(1607), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_nil] = ACTIONS(1607), + [sym_id] = ACTIONS(1607), + [sym_instancetype] = ACTIONS(1607), + [sym_Class] = ACTIONS(1607), + [sym_SEL] = ACTIONS(1607), + [sym_IMP] = ACTIONS(1607), + [sym_BOOL] = ACTIONS(1607), + [sym_auto] = ACTIONS(1607), + [anon_sym_ATautoreleasepool] = ACTIONS(1605), + [anon_sym_ATsynchronized] = ACTIONS(1605), + [anon_sym_ATtry] = ACTIONS(1605), + [anon_sym_ATcatch] = ACTIONS(1605), + [anon_sym_ATfinally] = ACTIONS(1605), + [anon_sym_ATthrow] = ACTIONS(1605), + [anon_sym_ATselector] = ACTIONS(1605), + [anon_sym_ATencode] = ACTIONS(1605), + [anon_sym_AT] = ACTIONS(1607), + [sym_YES] = ACTIONS(1607), + [sym_NO] = ACTIONS(1607), + [anon_sym___builtin_available] = ACTIONS(1607), + [anon_sym_ATavailable] = ACTIONS(1605), + [anon_sym_va_arg] = ACTIONS(1607), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [299] = { + [sym_identifier] = ACTIONS(1602), + [aux_sym_preproc_include_token1] = ACTIONS(1599), + [aux_sym_preproc_def_token1] = ACTIONS(1599), + [aux_sym_preproc_if_token1] = ACTIONS(1602), + [aux_sym_preproc_if_token2] = ACTIONS(1602), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1602), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1602), + [aux_sym_preproc_else_token1] = ACTIONS(1602), + [aux_sym_preproc_elif_token1] = ACTIONS(1602), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_typedef] = ACTIONS(1602), + [anon_sym_extern] = ACTIONS(1602), + [anon_sym___attribute] = ACTIONS(1602), + [anon_sym___attribute__] = ACTIONS(1602), + [anon_sym___declspec] = ACTIONS(1602), + [anon_sym___cdecl] = ACTIONS(1602), + [anon_sym___clrcall] = ACTIONS(1602), + [anon_sym___stdcall] = ACTIONS(1602), + [anon_sym___fastcall] = ACTIONS(1602), + [anon_sym___thiscall] = ACTIONS(1602), + [anon_sym___vectorcall] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_auto] = ACTIONS(1602), + [anon_sym_register] = ACTIONS(1602), + [anon_sym_inline] = ACTIONS(1602), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1602), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_volatile] = ACTIONS(1602), + [anon_sym_restrict] = ACTIONS(1602), + [anon_sym__Atomic] = ACTIONS(1602), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_out] = ACTIONS(1602), + [anon_sym_inout] = ACTIONS(1602), + [anon_sym_bycopy] = ACTIONS(1602), + [anon_sym_byref] = ACTIONS(1602), + [anon_sym_oneway] = ACTIONS(1602), + [anon_sym__Nullable] = ACTIONS(1602), + [anon_sym__Nonnull] = ACTIONS(1602), + [anon_sym__Nullable_result] = ACTIONS(1602), + [anon_sym__Null_unspecified] = ACTIONS(1602), + [anon_sym___autoreleasing] = ACTIONS(1602), + [anon_sym___nullable] = ACTIONS(1602), + [anon_sym___nonnull] = ACTIONS(1602), + [anon_sym___strong] = ACTIONS(1602), + [anon_sym___weak] = ACTIONS(1602), + [anon_sym___bridge] = ACTIONS(1602), + [anon_sym___bridge_transfer] = ACTIONS(1602), + [anon_sym___bridge_retained] = ACTIONS(1602), + [anon_sym___unsafe_unretained] = ACTIONS(1602), + [anon_sym___block] = ACTIONS(1602), + [anon_sym___kindof] = ACTIONS(1602), + [anon_sym___unused] = ACTIONS(1602), + [anon_sym__Complex] = ACTIONS(1602), + [anon_sym___complex] = ACTIONS(1602), + [anon_sym_IBOutlet] = ACTIONS(1602), + [anon_sym_IBInspectable] = ACTIONS(1602), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1602), + [anon_sym_signed] = ACTIONS(1602), + [anon_sym_unsigned] = ACTIONS(1602), + [anon_sym_long] = ACTIONS(1602), + [anon_sym_short] = ACTIONS(1602), + [sym_primitive_type] = ACTIONS(1602), + [anon_sym_enum] = ACTIONS(1602), + [anon_sym_struct] = ACTIONS(1602), + [anon_sym_union] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_else] = ACTIONS(1602), + [anon_sym_switch] = ACTIONS(1602), + [anon_sym_case] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1602), + [anon_sym_while] = ACTIONS(1602), + [anon_sym_do] = ACTIONS(1602), + [anon_sym_for] = ACTIONS(1602), + [anon_sym_return] = ACTIONS(1602), + [anon_sym_break] = ACTIONS(1602), + [anon_sym_continue] = ACTIONS(1602), + [anon_sym_goto] = ACTIONS(1602), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_sizeof] = ACTIONS(1602), + [sym_number_literal] = ACTIONS(1599), + [anon_sym_L_SQUOTE] = ACTIONS(1599), + [anon_sym_u_SQUOTE] = ACTIONS(1599), + [anon_sym_U_SQUOTE] = ACTIONS(1599), + [anon_sym_u8_SQUOTE] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_L_DQUOTE] = ACTIONS(1599), + [anon_sym_u_DQUOTE] = ACTIONS(1599), + [anon_sym_U_DQUOTE] = ACTIONS(1599), + [anon_sym_u8_DQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1599), + [anon_sym_ATimport] = ACTIONS(1599), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1602), + [anon_sym_ATcompatibility_alias] = ACTIONS(1599), + [anon_sym_ATprotocol] = ACTIONS(1599), + [anon_sym_ATclass] = ACTIONS(1599), + [anon_sym_ATinterface] = ACTIONS(1599), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1602), + [sym_method_attribute_specifier] = ACTIONS(1602), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1602), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1602), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1602), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1602), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1602), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1602), + [anon_sym_NS_AVAILABLE] = ACTIONS(1602), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1602), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1602), + [anon_sym_API_AVAILABLE] = ACTIONS(1602), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1602), + [anon_sym_API_DEPRECATED] = ACTIONS(1602), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1602), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1602), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1602), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1602), + [anon_sym___deprecated_msg] = ACTIONS(1602), + [anon_sym___deprecated_enum_msg] = ACTIONS(1602), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1602), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1602), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1602), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1602), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1602), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1602), + [anon_sym_ATimplementation] = ACTIONS(1599), + [anon_sym_NS_ENUM] = ACTIONS(1602), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1602), + [anon_sym_NS_OPTIONS] = ACTIONS(1602), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym___typeof] = ACTIONS(1602), + [anon_sym___typeof__] = ACTIONS(1602), + [sym_self] = ACTIONS(1602), + [sym_super] = ACTIONS(1602), + [sym_nil] = ACTIONS(1602), + [sym_id] = ACTIONS(1602), + [sym_instancetype] = ACTIONS(1602), + [sym_Class] = ACTIONS(1602), + [sym_SEL] = ACTIONS(1602), + [sym_IMP] = ACTIONS(1602), + [sym_BOOL] = ACTIONS(1602), + [sym_auto] = ACTIONS(1602), + [anon_sym_ATautoreleasepool] = ACTIONS(1599), + [anon_sym_ATsynchronized] = ACTIONS(1599), + [anon_sym_ATtry] = ACTIONS(1599), + [anon_sym_ATcatch] = ACTIONS(1599), + [anon_sym_ATfinally] = ACTIONS(1599), + [anon_sym_ATthrow] = ACTIONS(1599), + [anon_sym_ATselector] = ACTIONS(1599), + [anon_sym_ATencode] = ACTIONS(1599), + [anon_sym_AT] = ACTIONS(1602), + [sym_YES] = ACTIONS(1602), + [sym_NO] = ACTIONS(1602), + [anon_sym___builtin_available] = ACTIONS(1602), + [anon_sym_ATavailable] = ACTIONS(1599), + [anon_sym_va_arg] = ACTIONS(1602), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [300] = { + [sym_identifier] = ACTIONS(1597), + [aux_sym_preproc_include_token1] = ACTIONS(1595), + [aux_sym_preproc_def_token1] = ACTIONS(1595), + [aux_sym_preproc_if_token1] = ACTIONS(1597), + [aux_sym_preproc_if_token2] = ACTIONS(1597), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1597), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1597), + [aux_sym_preproc_else_token1] = ACTIONS(1597), + [aux_sym_preproc_elif_token1] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_CARET] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_typedef] = ACTIONS(1597), + [anon_sym_extern] = ACTIONS(1597), + [anon_sym___attribute] = ACTIONS(1597), + [anon_sym___attribute__] = ACTIONS(1597), + [anon_sym___declspec] = ACTIONS(1597), + [anon_sym___cdecl] = ACTIONS(1597), + [anon_sym___clrcall] = ACTIONS(1597), + [anon_sym___stdcall] = ACTIONS(1597), + [anon_sym___fastcall] = ACTIONS(1597), + [anon_sym___thiscall] = ACTIONS(1597), + [anon_sym___vectorcall] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1595), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_auto] = ACTIONS(1597), + [anon_sym_register] = ACTIONS(1597), + [anon_sym_inline] = ACTIONS(1597), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_volatile] = ACTIONS(1597), + [anon_sym_restrict] = ACTIONS(1597), + [anon_sym__Atomic] = ACTIONS(1597), + [anon_sym_in] = ACTIONS(1597), + [anon_sym_out] = ACTIONS(1597), + [anon_sym_inout] = ACTIONS(1597), + [anon_sym_bycopy] = ACTIONS(1597), + [anon_sym_byref] = ACTIONS(1597), + [anon_sym_oneway] = ACTIONS(1597), + [anon_sym__Nullable] = ACTIONS(1597), + [anon_sym__Nonnull] = ACTIONS(1597), + [anon_sym__Nullable_result] = ACTIONS(1597), + [anon_sym__Null_unspecified] = ACTIONS(1597), + [anon_sym___autoreleasing] = ACTIONS(1597), + [anon_sym___nullable] = ACTIONS(1597), + [anon_sym___nonnull] = ACTIONS(1597), + [anon_sym___strong] = ACTIONS(1597), + [anon_sym___weak] = ACTIONS(1597), + [anon_sym___bridge] = ACTIONS(1597), + [anon_sym___bridge_transfer] = ACTIONS(1597), + [anon_sym___bridge_retained] = ACTIONS(1597), + [anon_sym___unsafe_unretained] = ACTIONS(1597), + [anon_sym___block] = ACTIONS(1597), + [anon_sym___kindof] = ACTIONS(1597), + [anon_sym___unused] = ACTIONS(1597), + [anon_sym__Complex] = ACTIONS(1597), + [anon_sym___complex] = ACTIONS(1597), + [anon_sym_IBOutlet] = ACTIONS(1597), + [anon_sym_IBInspectable] = ACTIONS(1597), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1597), + [anon_sym_signed] = ACTIONS(1597), + [anon_sym_unsigned] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [sym_primitive_type] = ACTIONS(1597), + [anon_sym_enum] = ACTIONS(1597), + [anon_sym_struct] = ACTIONS(1597), + [anon_sym_union] = ACTIONS(1597), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_else] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_case] = ACTIONS(1597), + [anon_sym_default] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_goto] = ACTIONS(1597), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1597), + [sym_number_literal] = ACTIONS(1595), + [anon_sym_L_SQUOTE] = ACTIONS(1595), + [anon_sym_u_SQUOTE] = ACTIONS(1595), + [anon_sym_U_SQUOTE] = ACTIONS(1595), + [anon_sym_u8_SQUOTE] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_L_DQUOTE] = ACTIONS(1595), + [anon_sym_u_DQUOTE] = ACTIONS(1595), + [anon_sym_U_DQUOTE] = ACTIONS(1595), + [anon_sym_u8_DQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [sym_true] = ACTIONS(1597), + [sym_false] = ACTIONS(1597), + [sym_null] = ACTIONS(1597), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1595), + [anon_sym_ATimport] = ACTIONS(1595), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1597), + [anon_sym_ATcompatibility_alias] = ACTIONS(1595), + [anon_sym_ATprotocol] = ACTIONS(1595), + [anon_sym_ATclass] = ACTIONS(1595), + [anon_sym_ATinterface] = ACTIONS(1595), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1597), + [sym_method_attribute_specifier] = ACTIONS(1597), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1597), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1597), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1597), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1597), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1597), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1597), + [anon_sym_NS_AVAILABLE] = ACTIONS(1597), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1597), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1597), + [anon_sym_API_AVAILABLE] = ACTIONS(1597), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1597), + [anon_sym_API_DEPRECATED] = ACTIONS(1597), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1597), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1597), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1597), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1597), + [anon_sym___deprecated_msg] = ACTIONS(1597), + [anon_sym___deprecated_enum_msg] = ACTIONS(1597), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1597), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1597), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1597), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1597), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1597), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1597), + [anon_sym_ATimplementation] = ACTIONS(1595), + [anon_sym_NS_ENUM] = ACTIONS(1597), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1597), + [anon_sym_NS_OPTIONS] = ACTIONS(1597), + [anon_sym_typeof] = ACTIONS(1597), + [anon_sym___typeof] = ACTIONS(1597), + [anon_sym___typeof__] = ACTIONS(1597), + [sym_self] = ACTIONS(1597), + [sym_super] = ACTIONS(1597), + [sym_nil] = ACTIONS(1597), + [sym_id] = ACTIONS(1597), + [sym_instancetype] = ACTIONS(1597), + [sym_Class] = ACTIONS(1597), + [sym_SEL] = ACTIONS(1597), + [sym_IMP] = ACTIONS(1597), + [sym_BOOL] = ACTIONS(1597), + [sym_auto] = ACTIONS(1597), + [anon_sym_ATautoreleasepool] = ACTIONS(1595), + [anon_sym_ATsynchronized] = ACTIONS(1595), + [anon_sym_ATtry] = ACTIONS(1595), + [anon_sym_ATcatch] = ACTIONS(1595), + [anon_sym_ATfinally] = ACTIONS(1595), + [anon_sym_ATthrow] = ACTIONS(1595), + [anon_sym_ATselector] = ACTIONS(1595), + [anon_sym_ATencode] = ACTIONS(1595), + [anon_sym_AT] = ACTIONS(1597), + [sym_YES] = ACTIONS(1597), + [sym_NO] = ACTIONS(1597), + [anon_sym___builtin_available] = ACTIONS(1597), + [anon_sym_ATavailable] = ACTIONS(1595), + [anon_sym_va_arg] = ACTIONS(1597), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [301] = { + [sym_identifier] = ACTIONS(1593), + [aux_sym_preproc_include_token1] = ACTIONS(1591), + [aux_sym_preproc_def_token1] = ACTIONS(1591), + [aux_sym_preproc_if_token1] = ACTIONS(1593), + [aux_sym_preproc_if_token2] = ACTIONS(1593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), + [aux_sym_preproc_else_token1] = ACTIONS(1593), + [aux_sym_preproc_elif_token1] = ACTIONS(1593), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_CARET] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_typedef] = ACTIONS(1593), + [anon_sym_extern] = ACTIONS(1593), + [anon_sym___attribute] = ACTIONS(1593), + [anon_sym___attribute__] = ACTIONS(1593), + [anon_sym___declspec] = ACTIONS(1593), + [anon_sym___cdecl] = ACTIONS(1593), + [anon_sym___clrcall] = ACTIONS(1593), + [anon_sym___stdcall] = ACTIONS(1593), + [anon_sym___fastcall] = ACTIONS(1593), + [anon_sym___thiscall] = ACTIONS(1593), + [anon_sym___vectorcall] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_auto] = ACTIONS(1593), + [anon_sym_register] = ACTIONS(1593), + [anon_sym_inline] = ACTIONS(1593), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_volatile] = ACTIONS(1593), + [anon_sym_restrict] = ACTIONS(1593), + [anon_sym__Atomic] = ACTIONS(1593), + [anon_sym_in] = ACTIONS(1593), + [anon_sym_out] = ACTIONS(1593), + [anon_sym_inout] = ACTIONS(1593), + [anon_sym_bycopy] = ACTIONS(1593), + [anon_sym_byref] = ACTIONS(1593), + [anon_sym_oneway] = ACTIONS(1593), + [anon_sym__Nullable] = ACTIONS(1593), + [anon_sym__Nonnull] = ACTIONS(1593), + [anon_sym__Nullable_result] = ACTIONS(1593), + [anon_sym__Null_unspecified] = ACTIONS(1593), + [anon_sym___autoreleasing] = ACTIONS(1593), + [anon_sym___nullable] = ACTIONS(1593), + [anon_sym___nonnull] = ACTIONS(1593), + [anon_sym___strong] = ACTIONS(1593), + [anon_sym___weak] = ACTIONS(1593), + [anon_sym___bridge] = ACTIONS(1593), + [anon_sym___bridge_transfer] = ACTIONS(1593), + [anon_sym___bridge_retained] = ACTIONS(1593), + [anon_sym___unsafe_unretained] = ACTIONS(1593), + [anon_sym___block] = ACTIONS(1593), + [anon_sym___kindof] = ACTIONS(1593), + [anon_sym___unused] = ACTIONS(1593), + [anon_sym__Complex] = ACTIONS(1593), + [anon_sym___complex] = ACTIONS(1593), + [anon_sym_IBOutlet] = ACTIONS(1593), + [anon_sym_IBInspectable] = ACTIONS(1593), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1593), + [anon_sym_signed] = ACTIONS(1593), + [anon_sym_unsigned] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [sym_primitive_type] = ACTIONS(1593), + [anon_sym_enum] = ACTIONS(1593), + [anon_sym_struct] = ACTIONS(1593), + [anon_sym_union] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_else] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_goto] = ACTIONS(1593), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_sizeof] = ACTIONS(1593), + [sym_number_literal] = ACTIONS(1591), + [anon_sym_L_SQUOTE] = ACTIONS(1591), + [anon_sym_u_SQUOTE] = ACTIONS(1591), + [anon_sym_U_SQUOTE] = ACTIONS(1591), + [anon_sym_u8_SQUOTE] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_L_DQUOTE] = ACTIONS(1591), + [anon_sym_u_DQUOTE] = ACTIONS(1591), + [anon_sym_U_DQUOTE] = ACTIONS(1591), + [anon_sym_u8_DQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym_true] = ACTIONS(1593), + [sym_false] = ACTIONS(1593), + [sym_null] = ACTIONS(1593), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1591), + [anon_sym_ATimport] = ACTIONS(1591), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1593), + [anon_sym_ATcompatibility_alias] = ACTIONS(1591), + [anon_sym_ATprotocol] = ACTIONS(1591), + [anon_sym_ATclass] = ACTIONS(1591), + [anon_sym_ATinterface] = ACTIONS(1591), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1593), + [sym_method_attribute_specifier] = ACTIONS(1593), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1593), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1593), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1593), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1593), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1593), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1593), + [anon_sym_NS_AVAILABLE] = ACTIONS(1593), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1593), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1593), + [anon_sym_API_AVAILABLE] = ACTIONS(1593), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1593), + [anon_sym_API_DEPRECATED] = ACTIONS(1593), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1593), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1593), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1593), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1593), + [anon_sym___deprecated_msg] = ACTIONS(1593), + [anon_sym___deprecated_enum_msg] = ACTIONS(1593), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1593), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1593), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1593), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1593), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1593), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1593), + [anon_sym_ATimplementation] = ACTIONS(1591), + [anon_sym_NS_ENUM] = ACTIONS(1593), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1593), + [anon_sym_NS_OPTIONS] = ACTIONS(1593), + [anon_sym_typeof] = ACTIONS(1593), + [anon_sym___typeof] = ACTIONS(1593), + [anon_sym___typeof__] = ACTIONS(1593), + [sym_self] = ACTIONS(1593), + [sym_super] = ACTIONS(1593), + [sym_nil] = ACTIONS(1593), + [sym_id] = ACTIONS(1593), + [sym_instancetype] = ACTIONS(1593), + [sym_Class] = ACTIONS(1593), + [sym_SEL] = ACTIONS(1593), + [sym_IMP] = ACTIONS(1593), + [sym_BOOL] = ACTIONS(1593), + [sym_auto] = ACTIONS(1593), + [anon_sym_ATautoreleasepool] = ACTIONS(1591), + [anon_sym_ATsynchronized] = ACTIONS(1591), + [anon_sym_ATtry] = ACTIONS(1591), + [anon_sym_ATcatch] = ACTIONS(1591), + [anon_sym_ATfinally] = ACTIONS(1591), + [anon_sym_ATthrow] = ACTIONS(1591), + [anon_sym_ATselector] = ACTIONS(1591), + [anon_sym_ATencode] = ACTIONS(1591), + [anon_sym_AT] = ACTIONS(1593), + [sym_YES] = ACTIONS(1593), + [sym_NO] = ACTIONS(1593), + [anon_sym___builtin_available] = ACTIONS(1593), + [anon_sym_ATavailable] = ACTIONS(1591), + [anon_sym_va_arg] = ACTIONS(1593), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [302] = { + [ts_builtin_sym_end] = ACTIONS(1567), + [sym_identifier] = ACTIONS(1565), + [aux_sym_preproc_include_token1] = ACTIONS(1567), + [aux_sym_preproc_def_token1] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(1567), + [aux_sym_preproc_if_token1] = ACTIONS(1565), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1565), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(1567), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_CARET] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_typedef] = ACTIONS(1565), + [anon_sym_extern] = ACTIONS(1565), + [anon_sym___attribute] = ACTIONS(1565), + [anon_sym___attribute__] = ACTIONS(1565), + [anon_sym___declspec] = ACTIONS(1565), + [anon_sym___cdecl] = ACTIONS(1565), + [anon_sym___clrcall] = ACTIONS(1565), + [anon_sym___stdcall] = ACTIONS(1565), + [anon_sym___fastcall] = ACTIONS(1565), + [anon_sym___thiscall] = ACTIONS(1565), + [anon_sym___vectorcall] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_auto] = ACTIONS(1565), + [anon_sym_register] = ACTIONS(1565), + [anon_sym_inline] = ACTIONS(1565), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_volatile] = ACTIONS(1565), + [anon_sym_restrict] = ACTIONS(1565), + [anon_sym__Atomic] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_out] = ACTIONS(1565), + [anon_sym_inout] = ACTIONS(1565), + [anon_sym_bycopy] = ACTIONS(1565), + [anon_sym_byref] = ACTIONS(1565), + [anon_sym_oneway] = ACTIONS(1565), + [anon_sym__Nullable] = ACTIONS(1565), + [anon_sym__Nonnull] = ACTIONS(1565), + [anon_sym__Nullable_result] = ACTIONS(1565), + [anon_sym__Null_unspecified] = ACTIONS(1565), + [anon_sym___autoreleasing] = ACTIONS(1565), + [anon_sym___nullable] = ACTIONS(1565), + [anon_sym___nonnull] = ACTIONS(1565), + [anon_sym___strong] = ACTIONS(1565), + [anon_sym___weak] = ACTIONS(1565), + [anon_sym___bridge] = ACTIONS(1565), + [anon_sym___bridge_transfer] = ACTIONS(1565), + [anon_sym___bridge_retained] = ACTIONS(1565), + [anon_sym___unsafe_unretained] = ACTIONS(1565), + [anon_sym___block] = ACTIONS(1565), + [anon_sym___kindof] = ACTIONS(1565), + [anon_sym___unused] = ACTIONS(1565), + [anon_sym__Complex] = ACTIONS(1565), + [anon_sym___complex] = ACTIONS(1565), + [anon_sym_IBOutlet] = ACTIONS(1565), + [anon_sym_IBInspectable] = ACTIONS(1565), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1565), + [anon_sym_signed] = ACTIONS(1565), + [anon_sym_unsigned] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [sym_primitive_type] = ACTIONS(1565), + [anon_sym_enum] = ACTIONS(1565), + [anon_sym_struct] = ACTIONS(1565), + [anon_sym_union] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_else] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_case] = ACTIONS(1565), + [anon_sym_default] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_sizeof] = ACTIONS(1565), + [sym_number_literal] = ACTIONS(1567), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1567), + [anon_sym_u_DQUOTE] = ACTIONS(1567), + [anon_sym_U_DQUOTE] = ACTIONS(1567), + [anon_sym_u8_DQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [sym_true] = ACTIONS(1565), + [sym_false] = ACTIONS(1565), + [sym_null] = ACTIONS(1565), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1567), + [anon_sym_ATimport] = ACTIONS(1567), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1565), + [anon_sym_ATcompatibility_alias] = ACTIONS(1567), + [anon_sym_ATprotocol] = ACTIONS(1567), + [anon_sym_ATclass] = ACTIONS(1567), + [anon_sym_ATinterface] = ACTIONS(1567), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1565), + [sym_method_attribute_specifier] = ACTIONS(1565), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1565), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1565), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1565), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1565), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1565), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1565), + [anon_sym_NS_AVAILABLE] = ACTIONS(1565), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1565), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1565), + [anon_sym_API_AVAILABLE] = ACTIONS(1565), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1565), + [anon_sym_API_DEPRECATED] = ACTIONS(1565), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1565), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1565), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1565), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1565), + [anon_sym___deprecated_msg] = ACTIONS(1565), + [anon_sym___deprecated_enum_msg] = ACTIONS(1565), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1565), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1565), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1565), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1565), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1565), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1565), + [anon_sym_ATimplementation] = ACTIONS(1567), + [anon_sym_NS_ENUM] = ACTIONS(1565), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1565), + [anon_sym_NS_OPTIONS] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym___typeof] = ACTIONS(1565), + [anon_sym___typeof__] = ACTIONS(1565), + [sym_self] = ACTIONS(1565), + [sym_super] = ACTIONS(1565), + [sym_nil] = ACTIONS(1565), + [sym_id] = ACTIONS(1565), + [sym_instancetype] = ACTIONS(1565), + [sym_Class] = ACTIONS(1565), + [sym_SEL] = ACTIONS(1565), + [sym_IMP] = ACTIONS(1565), + [sym_BOOL] = ACTIONS(1565), + [sym_auto] = ACTIONS(1565), + [anon_sym_ATautoreleasepool] = ACTIONS(1567), + [anon_sym_ATsynchronized] = ACTIONS(1567), + [anon_sym_ATtry] = ACTIONS(1567), + [anon_sym_ATcatch] = ACTIONS(1567), + [anon_sym_ATfinally] = ACTIONS(1567), + [anon_sym_ATthrow] = ACTIONS(1567), + [anon_sym_ATselector] = ACTIONS(1567), + [anon_sym_ATencode] = ACTIONS(1567), + [anon_sym_AT] = ACTIONS(1565), + [sym_YES] = ACTIONS(1565), + [sym_NO] = ACTIONS(1565), + [anon_sym___builtin_available] = ACTIONS(1565), + [anon_sym_ATavailable] = ACTIONS(1567), + [anon_sym_va_arg] = ACTIONS(1565), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [303] = { + [ts_builtin_sym_end] = ACTIONS(1647), + [sym_identifier] = ACTIONS(1645), + [aux_sym_preproc_include_token1] = ACTIONS(1647), + [aux_sym_preproc_def_token1] = ACTIONS(1647), + [anon_sym_RPAREN] = ACTIONS(1647), + [aux_sym_preproc_if_token1] = ACTIONS(1645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1645), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1645), + [anon_sym_LPAREN2] = ACTIONS(1647), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_typedef] = ACTIONS(1645), + [anon_sym_extern] = ACTIONS(1645), + [anon_sym___attribute] = ACTIONS(1645), + [anon_sym___attribute__] = ACTIONS(1645), + [anon_sym___declspec] = ACTIONS(1645), + [anon_sym___cdecl] = ACTIONS(1645), + [anon_sym___clrcall] = ACTIONS(1645), + [anon_sym___stdcall] = ACTIONS(1645), + [anon_sym___fastcall] = ACTIONS(1645), + [anon_sym___thiscall] = ACTIONS(1645), + [anon_sym___vectorcall] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1647), + [anon_sym_RBRACE] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1647), + [anon_sym_static] = ACTIONS(1645), + [anon_sym_auto] = ACTIONS(1645), + [anon_sym_register] = ACTIONS(1645), + [anon_sym_inline] = ACTIONS(1645), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1645), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_volatile] = ACTIONS(1645), + [anon_sym_restrict] = ACTIONS(1645), + [anon_sym__Atomic] = ACTIONS(1645), + [anon_sym_in] = ACTIONS(1645), + [anon_sym_out] = ACTIONS(1645), + [anon_sym_inout] = ACTIONS(1645), + [anon_sym_bycopy] = ACTIONS(1645), + [anon_sym_byref] = ACTIONS(1645), + [anon_sym_oneway] = ACTIONS(1645), + [anon_sym__Nullable] = ACTIONS(1645), + [anon_sym__Nonnull] = ACTIONS(1645), + [anon_sym__Nullable_result] = ACTIONS(1645), + [anon_sym__Null_unspecified] = ACTIONS(1645), + [anon_sym___autoreleasing] = ACTIONS(1645), + [anon_sym___nullable] = ACTIONS(1645), + [anon_sym___nonnull] = ACTIONS(1645), + [anon_sym___strong] = ACTIONS(1645), + [anon_sym___weak] = ACTIONS(1645), + [anon_sym___bridge] = ACTIONS(1645), + [anon_sym___bridge_transfer] = ACTIONS(1645), + [anon_sym___bridge_retained] = ACTIONS(1645), + [anon_sym___unsafe_unretained] = ACTIONS(1645), + [anon_sym___block] = ACTIONS(1645), + [anon_sym___kindof] = ACTIONS(1645), + [anon_sym___unused] = ACTIONS(1645), + [anon_sym__Complex] = ACTIONS(1645), + [anon_sym___complex] = ACTIONS(1645), + [anon_sym_IBOutlet] = ACTIONS(1645), + [anon_sym_IBInspectable] = ACTIONS(1645), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1645), + [anon_sym_signed] = ACTIONS(1645), + [anon_sym_unsigned] = ACTIONS(1645), + [anon_sym_long] = ACTIONS(1645), + [anon_sym_short] = ACTIONS(1645), + [sym_primitive_type] = ACTIONS(1645), + [anon_sym_enum] = ACTIONS(1645), + [anon_sym_struct] = ACTIONS(1645), + [anon_sym_union] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1645), + [anon_sym_else] = ACTIONS(1645), + [anon_sym_switch] = ACTIONS(1645), + [anon_sym_case] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1645), + [anon_sym_while] = ACTIONS(1645), + [anon_sym_do] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_return] = ACTIONS(1645), + [anon_sym_break] = ACTIONS(1645), + [anon_sym_continue] = ACTIONS(1645), + [anon_sym_goto] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1645), + [sym_number_literal] = ACTIONS(1647), + [anon_sym_L_SQUOTE] = ACTIONS(1647), + [anon_sym_u_SQUOTE] = ACTIONS(1647), + [anon_sym_U_SQUOTE] = ACTIONS(1647), + [anon_sym_u8_SQUOTE] = ACTIONS(1647), + [anon_sym_SQUOTE] = ACTIONS(1647), + [anon_sym_L_DQUOTE] = ACTIONS(1647), + [anon_sym_u_DQUOTE] = ACTIONS(1647), + [anon_sym_U_DQUOTE] = ACTIONS(1647), + [anon_sym_u8_DQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_null] = ACTIONS(1645), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1647), + [anon_sym_ATimport] = ACTIONS(1647), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1645), + [anon_sym_ATcompatibility_alias] = ACTIONS(1647), + [anon_sym_ATprotocol] = ACTIONS(1647), + [anon_sym_ATclass] = ACTIONS(1647), + [anon_sym_ATinterface] = ACTIONS(1647), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1645), + [sym_method_attribute_specifier] = ACTIONS(1645), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1645), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1645), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1645), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1645), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1645), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1645), + [anon_sym_NS_AVAILABLE] = ACTIONS(1645), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1645), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1645), + [anon_sym_API_AVAILABLE] = ACTIONS(1645), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1645), + [anon_sym_API_DEPRECATED] = ACTIONS(1645), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1645), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1645), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1645), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1645), + [anon_sym___deprecated_msg] = ACTIONS(1645), + [anon_sym___deprecated_enum_msg] = ACTIONS(1645), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1645), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1645), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1645), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1645), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1645), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1645), + [anon_sym_ATimplementation] = ACTIONS(1647), + [anon_sym_NS_ENUM] = ACTIONS(1645), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1645), + [anon_sym_NS_OPTIONS] = ACTIONS(1645), + [anon_sym_typeof] = ACTIONS(1645), + [anon_sym___typeof] = ACTIONS(1645), + [anon_sym___typeof__] = ACTIONS(1645), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [sym_id] = ACTIONS(1645), + [sym_instancetype] = ACTIONS(1645), + [sym_Class] = ACTIONS(1645), + [sym_SEL] = ACTIONS(1645), + [sym_IMP] = ACTIONS(1645), + [sym_BOOL] = ACTIONS(1645), + [sym_auto] = ACTIONS(1645), + [anon_sym_ATautoreleasepool] = ACTIONS(1647), + [anon_sym_ATsynchronized] = ACTIONS(1647), + [anon_sym_ATtry] = ACTIONS(1647), + [anon_sym_ATcatch] = ACTIONS(1647), + [anon_sym_ATfinally] = ACTIONS(1647), + [anon_sym_ATthrow] = ACTIONS(1647), + [anon_sym_ATselector] = ACTIONS(1647), + [anon_sym_ATencode] = ACTIONS(1647), + [anon_sym_AT] = ACTIONS(1645), + [sym_YES] = ACTIONS(1645), + [sym_NO] = ACTIONS(1645), + [anon_sym___builtin_available] = ACTIONS(1645), + [anon_sym_ATavailable] = ACTIONS(1647), + [anon_sym_va_arg] = ACTIONS(1645), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [304] = { + [sym_identifier] = ACTIONS(1589), + [aux_sym_preproc_include_token1] = ACTIONS(1587), + [aux_sym_preproc_def_token1] = ACTIONS(1587), + [aux_sym_preproc_if_token1] = ACTIONS(1589), + [aux_sym_preproc_if_token2] = ACTIONS(1589), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1589), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1589), + [aux_sym_preproc_else_token1] = ACTIONS(1589), + [aux_sym_preproc_elif_token1] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_typedef] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym___attribute] = ACTIONS(1589), + [anon_sym___attribute__] = ACTIONS(1589), + [anon_sym___declspec] = ACTIONS(1589), + [anon_sym___cdecl] = ACTIONS(1589), + [anon_sym___clrcall] = ACTIONS(1589), + [anon_sym___stdcall] = ACTIONS(1589), + [anon_sym___fastcall] = ACTIONS(1589), + [anon_sym___thiscall] = ACTIONS(1589), + [anon_sym___vectorcall] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_auto] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_inline] = ACTIONS(1589), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_volatile] = ACTIONS(1589), + [anon_sym_restrict] = ACTIONS(1589), + [anon_sym__Atomic] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_out] = ACTIONS(1589), + [anon_sym_inout] = ACTIONS(1589), + [anon_sym_bycopy] = ACTIONS(1589), + [anon_sym_byref] = ACTIONS(1589), + [anon_sym_oneway] = ACTIONS(1589), + [anon_sym__Nullable] = ACTIONS(1589), + [anon_sym__Nonnull] = ACTIONS(1589), + [anon_sym__Nullable_result] = ACTIONS(1589), + [anon_sym__Null_unspecified] = ACTIONS(1589), + [anon_sym___autoreleasing] = ACTIONS(1589), + [anon_sym___nullable] = ACTIONS(1589), + [anon_sym___nonnull] = ACTIONS(1589), + [anon_sym___strong] = ACTIONS(1589), + [anon_sym___weak] = ACTIONS(1589), + [anon_sym___bridge] = ACTIONS(1589), + [anon_sym___bridge_transfer] = ACTIONS(1589), + [anon_sym___bridge_retained] = ACTIONS(1589), + [anon_sym___unsafe_unretained] = ACTIONS(1589), + [anon_sym___block] = ACTIONS(1589), + [anon_sym___kindof] = ACTIONS(1589), + [anon_sym___unused] = ACTIONS(1589), + [anon_sym__Complex] = ACTIONS(1589), + [anon_sym___complex] = ACTIONS(1589), + [anon_sym_IBOutlet] = ACTIONS(1589), + [anon_sym_IBInspectable] = ACTIONS(1589), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1589), + [anon_sym_signed] = ACTIONS(1589), + [anon_sym_unsigned] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [sym_primitive_type] = ACTIONS(1589), + [anon_sym_enum] = ACTIONS(1589), + [anon_sym_struct] = ACTIONS(1589), + [anon_sym_union] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_case] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_goto] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_sizeof] = ACTIONS(1589), + [sym_number_literal] = ACTIONS(1587), + [anon_sym_L_SQUOTE] = ACTIONS(1587), + [anon_sym_u_SQUOTE] = ACTIONS(1587), + [anon_sym_U_SQUOTE] = ACTIONS(1587), + [anon_sym_u8_SQUOTE] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_L_DQUOTE] = ACTIONS(1587), + [anon_sym_u_DQUOTE] = ACTIONS(1587), + [anon_sym_U_DQUOTE] = ACTIONS(1587), + [anon_sym_u8_DQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1587), + [anon_sym_ATimport] = ACTIONS(1587), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1589), + [anon_sym_ATcompatibility_alias] = ACTIONS(1587), + [anon_sym_ATprotocol] = ACTIONS(1587), + [anon_sym_ATclass] = ACTIONS(1587), + [anon_sym_ATinterface] = ACTIONS(1587), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1589), + [sym_method_attribute_specifier] = ACTIONS(1589), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1589), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1589), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1589), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1589), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1589), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1589), + [anon_sym_NS_AVAILABLE] = ACTIONS(1589), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1589), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1589), + [anon_sym_API_AVAILABLE] = ACTIONS(1589), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1589), + [anon_sym_API_DEPRECATED] = ACTIONS(1589), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1589), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1589), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1589), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1589), + [anon_sym___deprecated_msg] = ACTIONS(1589), + [anon_sym___deprecated_enum_msg] = ACTIONS(1589), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1589), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1589), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1589), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1589), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1589), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1589), + [anon_sym_ATimplementation] = ACTIONS(1587), + [anon_sym_NS_ENUM] = ACTIONS(1589), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1589), + [anon_sym_NS_OPTIONS] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(1589), + [anon_sym___typeof] = ACTIONS(1589), + [anon_sym___typeof__] = ACTIONS(1589), + [sym_self] = ACTIONS(1589), + [sym_super] = ACTIONS(1589), + [sym_nil] = ACTIONS(1589), + [sym_id] = ACTIONS(1589), + [sym_instancetype] = ACTIONS(1589), + [sym_Class] = ACTIONS(1589), + [sym_SEL] = ACTIONS(1589), + [sym_IMP] = ACTIONS(1589), + [sym_BOOL] = ACTIONS(1589), + [sym_auto] = ACTIONS(1589), + [anon_sym_ATautoreleasepool] = ACTIONS(1587), + [anon_sym_ATsynchronized] = ACTIONS(1587), + [anon_sym_ATtry] = ACTIONS(1587), + [anon_sym_ATcatch] = ACTIONS(1587), + [anon_sym_ATfinally] = ACTIONS(1587), + [anon_sym_ATthrow] = ACTIONS(1587), + [anon_sym_ATselector] = ACTIONS(1587), + [anon_sym_ATencode] = ACTIONS(1587), + [anon_sym_AT] = ACTIONS(1589), + [sym_YES] = ACTIONS(1589), + [sym_NO] = ACTIONS(1589), + [anon_sym___builtin_available] = ACTIONS(1589), + [anon_sym_ATavailable] = ACTIONS(1587), + [anon_sym_va_arg] = ACTIONS(1589), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [305] = { + [sym_identifier] = ACTIONS(1585), + [aux_sym_preproc_include_token1] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1583), + [aux_sym_preproc_if_token1] = ACTIONS(1585), + [aux_sym_preproc_if_token2] = ACTIONS(1585), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1585), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1585), + [aux_sym_preproc_else_token1] = ACTIONS(1585), + [aux_sym_preproc_elif_token1] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_CARET] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_typedef] = ACTIONS(1585), + [anon_sym_extern] = ACTIONS(1585), + [anon_sym___attribute] = ACTIONS(1585), + [anon_sym___attribute__] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(1585), + [anon_sym___cdecl] = ACTIONS(1585), + [anon_sym___clrcall] = ACTIONS(1585), + [anon_sym___stdcall] = ACTIONS(1585), + [anon_sym___fastcall] = ACTIONS(1585), + [anon_sym___thiscall] = ACTIONS(1585), + [anon_sym___vectorcall] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_auto] = ACTIONS(1585), + [anon_sym_register] = ACTIONS(1585), + [anon_sym_inline] = ACTIONS(1585), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_volatile] = ACTIONS(1585), + [anon_sym_restrict] = ACTIONS(1585), + [anon_sym__Atomic] = ACTIONS(1585), + [anon_sym_in] = ACTIONS(1585), + [anon_sym_out] = ACTIONS(1585), + [anon_sym_inout] = ACTIONS(1585), + [anon_sym_bycopy] = ACTIONS(1585), + [anon_sym_byref] = ACTIONS(1585), + [anon_sym_oneway] = ACTIONS(1585), + [anon_sym__Nullable] = ACTIONS(1585), + [anon_sym__Nonnull] = ACTIONS(1585), + [anon_sym__Nullable_result] = ACTIONS(1585), + [anon_sym__Null_unspecified] = ACTIONS(1585), + [anon_sym___autoreleasing] = ACTIONS(1585), + [anon_sym___nullable] = ACTIONS(1585), + [anon_sym___nonnull] = ACTIONS(1585), + [anon_sym___strong] = ACTIONS(1585), + [anon_sym___weak] = ACTIONS(1585), + [anon_sym___bridge] = ACTIONS(1585), + [anon_sym___bridge_transfer] = ACTIONS(1585), + [anon_sym___bridge_retained] = ACTIONS(1585), + [anon_sym___unsafe_unretained] = ACTIONS(1585), + [anon_sym___block] = ACTIONS(1585), + [anon_sym___kindof] = ACTIONS(1585), + [anon_sym___unused] = ACTIONS(1585), + [anon_sym__Complex] = ACTIONS(1585), + [anon_sym___complex] = ACTIONS(1585), + [anon_sym_IBOutlet] = ACTIONS(1585), + [anon_sym_IBInspectable] = ACTIONS(1585), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1585), + [anon_sym_signed] = ACTIONS(1585), + [anon_sym_unsigned] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [sym_primitive_type] = ACTIONS(1585), + [anon_sym_enum] = ACTIONS(1585), + [anon_sym_struct] = ACTIONS(1585), + [anon_sym_union] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_else] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_case] = ACTIONS(1585), + [anon_sym_default] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_goto] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_sizeof] = ACTIONS(1585), + [sym_number_literal] = ACTIONS(1583), + [anon_sym_L_SQUOTE] = ACTIONS(1583), + [anon_sym_u_SQUOTE] = ACTIONS(1583), + [anon_sym_U_SQUOTE] = ACTIONS(1583), + [anon_sym_u8_SQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_L_DQUOTE] = ACTIONS(1583), + [anon_sym_u_DQUOTE] = ACTIONS(1583), + [anon_sym_U_DQUOTE] = ACTIONS(1583), + [anon_sym_u8_DQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [sym_true] = ACTIONS(1585), + [sym_false] = ACTIONS(1585), + [sym_null] = ACTIONS(1585), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1583), + [anon_sym_ATimport] = ACTIONS(1583), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1585), + [anon_sym_ATcompatibility_alias] = ACTIONS(1583), + [anon_sym_ATprotocol] = ACTIONS(1583), + [anon_sym_ATclass] = ACTIONS(1583), + [anon_sym_ATinterface] = ACTIONS(1583), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1585), + [sym_method_attribute_specifier] = ACTIONS(1585), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1585), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1585), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1585), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1585), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1585), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1585), + [anon_sym_NS_AVAILABLE] = ACTIONS(1585), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1585), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1585), + [anon_sym_API_AVAILABLE] = ACTIONS(1585), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1585), + [anon_sym_API_DEPRECATED] = ACTIONS(1585), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1585), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1585), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1585), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1585), + [anon_sym___deprecated_msg] = ACTIONS(1585), + [anon_sym___deprecated_enum_msg] = ACTIONS(1585), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1585), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1585), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1585), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1585), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1585), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1585), + [anon_sym_ATimplementation] = ACTIONS(1583), + [anon_sym_NS_ENUM] = ACTIONS(1585), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1585), + [anon_sym_NS_OPTIONS] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1585), + [anon_sym___typeof] = ACTIONS(1585), + [anon_sym___typeof__] = ACTIONS(1585), + [sym_self] = ACTIONS(1585), + [sym_super] = ACTIONS(1585), + [sym_nil] = ACTIONS(1585), + [sym_id] = ACTIONS(1585), + [sym_instancetype] = ACTIONS(1585), + [sym_Class] = ACTIONS(1585), + [sym_SEL] = ACTIONS(1585), + [sym_IMP] = ACTIONS(1585), + [sym_BOOL] = ACTIONS(1585), + [sym_auto] = ACTIONS(1585), + [anon_sym_ATautoreleasepool] = ACTIONS(1583), + [anon_sym_ATsynchronized] = ACTIONS(1583), + [anon_sym_ATtry] = ACTIONS(1583), + [anon_sym_ATcatch] = ACTIONS(1583), + [anon_sym_ATfinally] = ACTIONS(1583), + [anon_sym_ATthrow] = ACTIONS(1583), + [anon_sym_ATselector] = ACTIONS(1583), + [anon_sym_ATencode] = ACTIONS(1583), + [anon_sym_AT] = ACTIONS(1585), + [sym_YES] = ACTIONS(1585), + [sym_NO] = ACTIONS(1585), + [anon_sym___builtin_available] = ACTIONS(1585), + [anon_sym_ATavailable] = ACTIONS(1583), + [anon_sym_va_arg] = ACTIONS(1585), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [306] = { + [ts_builtin_sym_end] = ACTIONS(1657), + [sym_identifier] = ACTIONS(1659), + [aux_sym_preproc_include_token1] = ACTIONS(1657), + [aux_sym_preproc_def_token1] = ACTIONS(1657), + [anon_sym_RPAREN] = ACTIONS(1657), + [aux_sym_preproc_if_token1] = ACTIONS(1659), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1659), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_TILDE] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_STAR] = ACTIONS(1657), + [anon_sym_CARET] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_typedef] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym___attribute] = ACTIONS(1659), + [anon_sym___attribute__] = ACTIONS(1659), + [anon_sym___declspec] = ACTIONS(1659), + [anon_sym___cdecl] = ACTIONS(1659), + [anon_sym___clrcall] = ACTIONS(1659), + [anon_sym___stdcall] = ACTIONS(1659), + [anon_sym___fastcall] = ACTIONS(1659), + [anon_sym___thiscall] = ACTIONS(1659), + [anon_sym___vectorcall] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_RBRACE] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1659), + [anon_sym_auto] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_inline] = ACTIONS(1659), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [anon_sym_volatile] = ACTIONS(1659), + [anon_sym_restrict] = ACTIONS(1659), + [anon_sym__Atomic] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_out] = ACTIONS(1659), + [anon_sym_inout] = ACTIONS(1659), + [anon_sym_bycopy] = ACTIONS(1659), + [anon_sym_byref] = ACTIONS(1659), + [anon_sym_oneway] = ACTIONS(1659), + [anon_sym__Nullable] = ACTIONS(1659), + [anon_sym__Nonnull] = ACTIONS(1659), + [anon_sym__Nullable_result] = ACTIONS(1659), + [anon_sym__Null_unspecified] = ACTIONS(1659), + [anon_sym___autoreleasing] = ACTIONS(1659), + [anon_sym___nullable] = ACTIONS(1659), + [anon_sym___nonnull] = ACTIONS(1659), + [anon_sym___strong] = ACTIONS(1659), + [anon_sym___weak] = ACTIONS(1659), + [anon_sym___bridge] = ACTIONS(1659), + [anon_sym___bridge_transfer] = ACTIONS(1659), + [anon_sym___bridge_retained] = ACTIONS(1659), + [anon_sym___unsafe_unretained] = ACTIONS(1659), + [anon_sym___block] = ACTIONS(1659), + [anon_sym___kindof] = ACTIONS(1659), + [anon_sym___unused] = ACTIONS(1659), + [anon_sym__Complex] = ACTIONS(1659), + [anon_sym___complex] = ACTIONS(1659), + [anon_sym_IBOutlet] = ACTIONS(1659), + [anon_sym_IBInspectable] = ACTIONS(1659), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1659), + [anon_sym_signed] = ACTIONS(1659), + [anon_sym_unsigned] = ACTIONS(1659), + [anon_sym_long] = ACTIONS(1659), + [anon_sym_short] = ACTIONS(1659), + [sym_primitive_type] = ACTIONS(1659), + [anon_sym_enum] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_switch] = ACTIONS(1659), + [anon_sym_case] = ACTIONS(1659), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_goto] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(1659), + [sym_number_literal] = ACTIONS(1657), + [anon_sym_L_SQUOTE] = ACTIONS(1657), + [anon_sym_u_SQUOTE] = ACTIONS(1657), + [anon_sym_U_SQUOTE] = ACTIONS(1657), + [anon_sym_u8_SQUOTE] = ACTIONS(1657), + [anon_sym_SQUOTE] = ACTIONS(1657), + [anon_sym_L_DQUOTE] = ACTIONS(1657), + [anon_sym_u_DQUOTE] = ACTIONS(1657), + [anon_sym_U_DQUOTE] = ACTIONS(1657), + [anon_sym_u8_DQUOTE] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1657), + [sym_true] = ACTIONS(1659), + [sym_false] = ACTIONS(1659), + [sym_null] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1657), + [anon_sym_ATimport] = ACTIONS(1657), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1659), + [anon_sym_ATcompatibility_alias] = ACTIONS(1657), + [anon_sym_ATprotocol] = ACTIONS(1657), + [anon_sym_ATclass] = ACTIONS(1657), + [anon_sym_ATinterface] = ACTIONS(1657), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1659), + [sym_method_attribute_specifier] = ACTIONS(1659), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1659), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1659), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1659), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1659), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1659), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1659), + [anon_sym_NS_AVAILABLE] = ACTIONS(1659), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1659), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1659), + [anon_sym_API_AVAILABLE] = ACTIONS(1659), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1659), + [anon_sym_API_DEPRECATED] = ACTIONS(1659), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1659), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1659), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1659), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1659), + [anon_sym___deprecated_msg] = ACTIONS(1659), + [anon_sym___deprecated_enum_msg] = ACTIONS(1659), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1659), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1659), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1659), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1659), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1659), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1659), + [anon_sym_ATimplementation] = ACTIONS(1657), + [anon_sym_NS_ENUM] = ACTIONS(1659), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1659), + [anon_sym_NS_OPTIONS] = ACTIONS(1659), + [anon_sym_typeof] = ACTIONS(1659), + [anon_sym___typeof] = ACTIONS(1659), + [anon_sym___typeof__] = ACTIONS(1659), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_nil] = ACTIONS(1659), + [sym_id] = ACTIONS(1659), + [sym_instancetype] = ACTIONS(1659), + [sym_Class] = ACTIONS(1659), + [sym_SEL] = ACTIONS(1659), + [sym_IMP] = ACTIONS(1659), + [sym_BOOL] = ACTIONS(1659), + [sym_auto] = ACTIONS(1659), + [anon_sym_ATautoreleasepool] = ACTIONS(1657), + [anon_sym_ATsynchronized] = ACTIONS(1657), + [anon_sym_ATtry] = ACTIONS(1657), + [anon_sym_ATcatch] = ACTIONS(1657), + [anon_sym_ATfinally] = ACTIONS(1657), + [anon_sym_ATthrow] = ACTIONS(1657), + [anon_sym_ATselector] = ACTIONS(1657), + [anon_sym_ATencode] = ACTIONS(1657), + [anon_sym_AT] = ACTIONS(1659), + [sym_YES] = ACTIONS(1659), + [sym_NO] = ACTIONS(1659), + [anon_sym___builtin_available] = ACTIONS(1659), + [anon_sym_ATavailable] = ACTIONS(1657), + [anon_sym_va_arg] = ACTIONS(1659), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [307] = { + [sym_identifier] = ACTIONS(1581), + [aux_sym_preproc_include_token1] = ACTIONS(1579), + [aux_sym_preproc_def_token1] = ACTIONS(1579), + [aux_sym_preproc_if_token1] = ACTIONS(1581), + [aux_sym_preproc_if_token2] = ACTIONS(1581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1581), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1581), + [aux_sym_preproc_else_token1] = ACTIONS(1581), + [aux_sym_preproc_elif_token1] = ACTIONS(1581), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_typedef] = ACTIONS(1581), + [anon_sym_extern] = ACTIONS(1581), + [anon_sym___attribute] = ACTIONS(1581), + [anon_sym___attribute__] = ACTIONS(1581), + [anon_sym___declspec] = ACTIONS(1581), + [anon_sym___cdecl] = ACTIONS(1581), + [anon_sym___clrcall] = ACTIONS(1581), + [anon_sym___stdcall] = ACTIONS(1581), + [anon_sym___fastcall] = ACTIONS(1581), + [anon_sym___thiscall] = ACTIONS(1581), + [anon_sym___vectorcall] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_auto] = ACTIONS(1581), + [anon_sym_register] = ACTIONS(1581), + [anon_sym_inline] = ACTIONS(1581), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_volatile] = ACTIONS(1581), + [anon_sym_restrict] = ACTIONS(1581), + [anon_sym__Atomic] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_out] = ACTIONS(1581), + [anon_sym_inout] = ACTIONS(1581), + [anon_sym_bycopy] = ACTIONS(1581), + [anon_sym_byref] = ACTIONS(1581), + [anon_sym_oneway] = ACTIONS(1581), + [anon_sym__Nullable] = ACTIONS(1581), + [anon_sym__Nonnull] = ACTIONS(1581), + [anon_sym__Nullable_result] = ACTIONS(1581), + [anon_sym__Null_unspecified] = ACTIONS(1581), + [anon_sym___autoreleasing] = ACTIONS(1581), + [anon_sym___nullable] = ACTIONS(1581), + [anon_sym___nonnull] = ACTIONS(1581), + [anon_sym___strong] = ACTIONS(1581), + [anon_sym___weak] = ACTIONS(1581), + [anon_sym___bridge] = ACTIONS(1581), + [anon_sym___bridge_transfer] = ACTIONS(1581), + [anon_sym___bridge_retained] = ACTIONS(1581), + [anon_sym___unsafe_unretained] = ACTIONS(1581), + [anon_sym___block] = ACTIONS(1581), + [anon_sym___kindof] = ACTIONS(1581), + [anon_sym___unused] = ACTIONS(1581), + [anon_sym__Complex] = ACTIONS(1581), + [anon_sym___complex] = ACTIONS(1581), + [anon_sym_IBOutlet] = ACTIONS(1581), + [anon_sym_IBInspectable] = ACTIONS(1581), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1581), + [anon_sym_signed] = ACTIONS(1581), + [anon_sym_unsigned] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [sym_primitive_type] = ACTIONS(1581), + [anon_sym_enum] = ACTIONS(1581), + [anon_sym_struct] = ACTIONS(1581), + [anon_sym_union] = ACTIONS(1581), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_else] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_case] = ACTIONS(1581), + [anon_sym_default] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_goto] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_sizeof] = ACTIONS(1581), + [sym_number_literal] = ACTIONS(1579), + [anon_sym_L_SQUOTE] = ACTIONS(1579), + [anon_sym_u_SQUOTE] = ACTIONS(1579), + [anon_sym_U_SQUOTE] = ACTIONS(1579), + [anon_sym_u8_SQUOTE] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_L_DQUOTE] = ACTIONS(1579), + [anon_sym_u_DQUOTE] = ACTIONS(1579), + [anon_sym_U_DQUOTE] = ACTIONS(1579), + [anon_sym_u8_DQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_true] = ACTIONS(1581), + [sym_false] = ACTIONS(1581), + [sym_null] = ACTIONS(1581), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1579), + [anon_sym_ATimport] = ACTIONS(1579), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1581), + [anon_sym_ATcompatibility_alias] = ACTIONS(1579), + [anon_sym_ATprotocol] = ACTIONS(1579), + [anon_sym_ATclass] = ACTIONS(1579), + [anon_sym_ATinterface] = ACTIONS(1579), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1581), + [sym_method_attribute_specifier] = ACTIONS(1581), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1581), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1581), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1581), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1581), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1581), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1581), + [anon_sym_NS_AVAILABLE] = ACTIONS(1581), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1581), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1581), + [anon_sym_API_AVAILABLE] = ACTIONS(1581), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1581), + [anon_sym_API_DEPRECATED] = ACTIONS(1581), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1581), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1581), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1581), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1581), + [anon_sym___deprecated_msg] = ACTIONS(1581), + [anon_sym___deprecated_enum_msg] = ACTIONS(1581), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1581), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1581), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1581), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1581), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1581), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1581), + [anon_sym_ATimplementation] = ACTIONS(1579), + [anon_sym_NS_ENUM] = ACTIONS(1581), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1581), + [anon_sym_NS_OPTIONS] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1581), + [anon_sym___typeof] = ACTIONS(1581), + [anon_sym___typeof__] = ACTIONS(1581), + [sym_self] = ACTIONS(1581), + [sym_super] = ACTIONS(1581), + [sym_nil] = ACTIONS(1581), + [sym_id] = ACTIONS(1581), + [sym_instancetype] = ACTIONS(1581), + [sym_Class] = ACTIONS(1581), + [sym_SEL] = ACTIONS(1581), + [sym_IMP] = ACTIONS(1581), + [sym_BOOL] = ACTIONS(1581), + [sym_auto] = ACTIONS(1581), + [anon_sym_ATautoreleasepool] = ACTIONS(1579), + [anon_sym_ATsynchronized] = ACTIONS(1579), + [anon_sym_ATtry] = ACTIONS(1579), + [anon_sym_ATcatch] = ACTIONS(1579), + [anon_sym_ATfinally] = ACTIONS(1579), + [anon_sym_ATthrow] = ACTIONS(1579), + [anon_sym_ATselector] = ACTIONS(1579), + [anon_sym_ATencode] = ACTIONS(1579), + [anon_sym_AT] = ACTIONS(1581), + [sym_YES] = ACTIONS(1581), + [sym_NO] = ACTIONS(1581), + [anon_sym___builtin_available] = ACTIONS(1581), + [anon_sym_ATavailable] = ACTIONS(1579), + [anon_sym_va_arg] = ACTIONS(1581), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [308] = { + [sym_identifier] = ACTIONS(1577), + [aux_sym_preproc_include_token1] = ACTIONS(1575), + [aux_sym_preproc_def_token1] = ACTIONS(1575), + [aux_sym_preproc_if_token1] = ACTIONS(1577), + [aux_sym_preproc_if_token2] = ACTIONS(1577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1577), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1577), + [aux_sym_preproc_else_token1] = ACTIONS(1577), + [aux_sym_preproc_elif_token1] = ACTIONS(1577), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_CARET] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_typedef] = ACTIONS(1577), + [anon_sym_extern] = ACTIONS(1577), + [anon_sym___attribute] = ACTIONS(1577), + [anon_sym___attribute__] = ACTIONS(1577), + [anon_sym___declspec] = ACTIONS(1577), + [anon_sym___cdecl] = ACTIONS(1577), + [anon_sym___clrcall] = ACTIONS(1577), + [anon_sym___stdcall] = ACTIONS(1577), + [anon_sym___fastcall] = ACTIONS(1577), + [anon_sym___thiscall] = ACTIONS(1577), + [anon_sym___vectorcall] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_auto] = ACTIONS(1577), + [anon_sym_register] = ACTIONS(1577), + [anon_sym_inline] = ACTIONS(1577), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_volatile] = ACTIONS(1577), + [anon_sym_restrict] = ACTIONS(1577), + [anon_sym__Atomic] = ACTIONS(1577), + [anon_sym_in] = ACTIONS(1577), + [anon_sym_out] = ACTIONS(1577), + [anon_sym_inout] = ACTIONS(1577), + [anon_sym_bycopy] = ACTIONS(1577), + [anon_sym_byref] = ACTIONS(1577), + [anon_sym_oneway] = ACTIONS(1577), + [anon_sym__Nullable] = ACTIONS(1577), + [anon_sym__Nonnull] = ACTIONS(1577), + [anon_sym__Nullable_result] = ACTIONS(1577), + [anon_sym__Null_unspecified] = ACTIONS(1577), + [anon_sym___autoreleasing] = ACTIONS(1577), + [anon_sym___nullable] = ACTIONS(1577), + [anon_sym___nonnull] = ACTIONS(1577), + [anon_sym___strong] = ACTIONS(1577), + [anon_sym___weak] = ACTIONS(1577), + [anon_sym___bridge] = ACTIONS(1577), + [anon_sym___bridge_transfer] = ACTIONS(1577), + [anon_sym___bridge_retained] = ACTIONS(1577), + [anon_sym___unsafe_unretained] = ACTIONS(1577), + [anon_sym___block] = ACTIONS(1577), + [anon_sym___kindof] = ACTIONS(1577), + [anon_sym___unused] = ACTIONS(1577), + [anon_sym__Complex] = ACTIONS(1577), + [anon_sym___complex] = ACTIONS(1577), + [anon_sym_IBOutlet] = ACTIONS(1577), + [anon_sym_IBInspectable] = ACTIONS(1577), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1577), + [anon_sym_signed] = ACTIONS(1577), + [anon_sym_unsigned] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [sym_primitive_type] = ACTIONS(1577), + [anon_sym_enum] = ACTIONS(1577), + [anon_sym_struct] = ACTIONS(1577), + [anon_sym_union] = ACTIONS(1577), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_else] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_case] = ACTIONS(1577), + [anon_sym_default] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_goto] = ACTIONS(1577), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_sizeof] = ACTIONS(1577), + [sym_number_literal] = ACTIONS(1575), + [anon_sym_L_SQUOTE] = ACTIONS(1575), + [anon_sym_u_SQUOTE] = ACTIONS(1575), + [anon_sym_U_SQUOTE] = ACTIONS(1575), + [anon_sym_u8_SQUOTE] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_L_DQUOTE] = ACTIONS(1575), + [anon_sym_u_DQUOTE] = ACTIONS(1575), + [anon_sym_U_DQUOTE] = ACTIONS(1575), + [anon_sym_u8_DQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym_true] = ACTIONS(1577), + [sym_false] = ACTIONS(1577), + [sym_null] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1575), + [anon_sym_ATimport] = ACTIONS(1575), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1577), + [anon_sym_ATcompatibility_alias] = ACTIONS(1575), + [anon_sym_ATprotocol] = ACTIONS(1575), + [anon_sym_ATclass] = ACTIONS(1575), + [anon_sym_ATinterface] = ACTIONS(1575), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1577), + [sym_method_attribute_specifier] = ACTIONS(1577), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1577), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1577), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1577), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1577), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1577), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1577), + [anon_sym_NS_AVAILABLE] = ACTIONS(1577), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1577), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1577), + [anon_sym_API_AVAILABLE] = ACTIONS(1577), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1577), + [anon_sym_API_DEPRECATED] = ACTIONS(1577), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1577), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1577), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1577), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1577), + [anon_sym___deprecated_msg] = ACTIONS(1577), + [anon_sym___deprecated_enum_msg] = ACTIONS(1577), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1577), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1577), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1577), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1577), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1577), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1577), + [anon_sym_ATimplementation] = ACTIONS(1575), + [anon_sym_NS_ENUM] = ACTIONS(1577), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1577), + [anon_sym_NS_OPTIONS] = ACTIONS(1577), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym___typeof] = ACTIONS(1577), + [anon_sym___typeof__] = ACTIONS(1577), + [sym_self] = ACTIONS(1577), + [sym_super] = ACTIONS(1577), + [sym_nil] = ACTIONS(1577), + [sym_id] = ACTIONS(1577), + [sym_instancetype] = ACTIONS(1577), + [sym_Class] = ACTIONS(1577), + [sym_SEL] = ACTIONS(1577), + [sym_IMP] = ACTIONS(1577), + [sym_BOOL] = ACTIONS(1577), + [sym_auto] = ACTIONS(1577), + [anon_sym_ATautoreleasepool] = ACTIONS(1575), + [anon_sym_ATsynchronized] = ACTIONS(1575), + [anon_sym_ATtry] = ACTIONS(1575), + [anon_sym_ATcatch] = ACTIONS(1575), + [anon_sym_ATfinally] = ACTIONS(1575), + [anon_sym_ATthrow] = ACTIONS(1575), + [anon_sym_ATselector] = ACTIONS(1575), + [anon_sym_ATencode] = ACTIONS(1575), + [anon_sym_AT] = ACTIONS(1577), + [sym_YES] = ACTIONS(1577), + [sym_NO] = ACTIONS(1577), + [anon_sym___builtin_available] = ACTIONS(1577), + [anon_sym_ATavailable] = ACTIONS(1575), + [anon_sym_va_arg] = ACTIONS(1577), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [309] = { + [sym_identifier] = ACTIONS(1435), + [aux_sym_preproc_include_token1] = ACTIONS(1433), + [aux_sym_preproc_def_token1] = ACTIONS(1433), + [aux_sym_preproc_if_token1] = ACTIONS(1435), + [aux_sym_preproc_if_token2] = ACTIONS(1435), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1435), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1435), + [aux_sym_preproc_else_token1] = ACTIONS(1435), + [aux_sym_preproc_elif_token1] = ACTIONS(1435), + [anon_sym_LPAREN2] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_typedef] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym___attribute] = ACTIONS(1435), + [anon_sym___attribute__] = ACTIONS(1435), + [anon_sym___declspec] = ACTIONS(1435), + [anon_sym___cdecl] = ACTIONS(1435), + [anon_sym___clrcall] = ACTIONS(1435), + [anon_sym___stdcall] = ACTIONS(1435), + [anon_sym___fastcall] = ACTIONS(1435), + [anon_sym___thiscall] = ACTIONS(1435), + [anon_sym___vectorcall] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1435), + [anon_sym_auto] = ACTIONS(1435), + [anon_sym_register] = ACTIONS(1435), + [anon_sym_inline] = ACTIONS(1435), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_volatile] = ACTIONS(1435), + [anon_sym_restrict] = ACTIONS(1435), + [anon_sym__Atomic] = ACTIONS(1435), + [anon_sym_in] = ACTIONS(1435), + [anon_sym_out] = ACTIONS(1435), + [anon_sym_inout] = ACTIONS(1435), + [anon_sym_bycopy] = ACTIONS(1435), + [anon_sym_byref] = ACTIONS(1435), + [anon_sym_oneway] = ACTIONS(1435), + [anon_sym__Nullable] = ACTIONS(1435), + [anon_sym__Nonnull] = ACTIONS(1435), + [anon_sym__Nullable_result] = ACTIONS(1435), + [anon_sym__Null_unspecified] = ACTIONS(1435), + [anon_sym___autoreleasing] = ACTIONS(1435), + [anon_sym___nullable] = ACTIONS(1435), + [anon_sym___nonnull] = ACTIONS(1435), + [anon_sym___strong] = ACTIONS(1435), + [anon_sym___weak] = ACTIONS(1435), + [anon_sym___bridge] = ACTIONS(1435), + [anon_sym___bridge_transfer] = ACTIONS(1435), + [anon_sym___bridge_retained] = ACTIONS(1435), + [anon_sym___unsafe_unretained] = ACTIONS(1435), + [anon_sym___block] = ACTIONS(1435), + [anon_sym___kindof] = ACTIONS(1435), + [anon_sym___unused] = ACTIONS(1435), + [anon_sym__Complex] = ACTIONS(1435), + [anon_sym___complex] = ACTIONS(1435), + [anon_sym_IBOutlet] = ACTIONS(1435), + [anon_sym_IBInspectable] = ACTIONS(1435), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1435), + [anon_sym_signed] = ACTIONS(1435), + [anon_sym_unsigned] = ACTIONS(1435), + [anon_sym_long] = ACTIONS(1435), + [anon_sym_short] = ACTIONS(1435), + [sym_primitive_type] = ACTIONS(1435), + [anon_sym_enum] = ACTIONS(1435), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_else] = ACTIONS(1435), + [anon_sym_switch] = ACTIONS(1435), + [anon_sym_case] = ACTIONS(1435), + [anon_sym_default] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_do] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_goto] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1433), + [anon_sym_sizeof] = ACTIONS(1435), + [sym_number_literal] = ACTIONS(1433), + [anon_sym_L_SQUOTE] = ACTIONS(1433), + [anon_sym_u_SQUOTE] = ACTIONS(1433), + [anon_sym_U_SQUOTE] = ACTIONS(1433), + [anon_sym_u8_SQUOTE] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_L_DQUOTE] = ACTIONS(1433), + [anon_sym_u_DQUOTE] = ACTIONS(1433), + [anon_sym_U_DQUOTE] = ACTIONS(1433), + [anon_sym_u8_DQUOTE] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [sym_true] = ACTIONS(1435), + [sym_false] = ACTIONS(1435), + [sym_null] = ACTIONS(1435), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1433), + [anon_sym_ATimport] = ACTIONS(1433), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1435), + [anon_sym_ATcompatibility_alias] = ACTIONS(1433), + [anon_sym_ATprotocol] = ACTIONS(1433), + [anon_sym_ATclass] = ACTIONS(1433), + [anon_sym_ATinterface] = ACTIONS(1433), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1435), + [sym_method_attribute_specifier] = ACTIONS(1435), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1435), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1435), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1435), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1435), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1435), + [anon_sym_NS_AVAILABLE] = ACTIONS(1435), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1435), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_API_AVAILABLE] = ACTIONS(1435), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_API_DEPRECATED] = ACTIONS(1435), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1435), + [anon_sym___deprecated_msg] = ACTIONS(1435), + [anon_sym___deprecated_enum_msg] = ACTIONS(1435), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1435), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1435), + [anon_sym_ATimplementation] = ACTIONS(1433), + [anon_sym_NS_ENUM] = ACTIONS(1435), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1435), + [anon_sym_NS_OPTIONS] = ACTIONS(1435), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___typeof] = ACTIONS(1435), + [anon_sym___typeof__] = ACTIONS(1435), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_nil] = ACTIONS(1435), + [sym_id] = ACTIONS(1435), + [sym_instancetype] = ACTIONS(1435), + [sym_Class] = ACTIONS(1435), + [sym_SEL] = ACTIONS(1435), + [sym_IMP] = ACTIONS(1435), + [sym_BOOL] = ACTIONS(1435), + [sym_auto] = ACTIONS(1435), + [anon_sym_ATautoreleasepool] = ACTIONS(1433), + [anon_sym_ATsynchronized] = ACTIONS(1433), + [anon_sym_ATtry] = ACTIONS(1433), + [anon_sym_ATcatch] = ACTIONS(1433), + [anon_sym_ATfinally] = ACTIONS(1433), + [anon_sym_ATthrow] = ACTIONS(1433), + [anon_sym_ATselector] = ACTIONS(1433), + [anon_sym_ATencode] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(1435), + [sym_YES] = ACTIONS(1435), + [sym_NO] = ACTIONS(1435), + [anon_sym___builtin_available] = ACTIONS(1435), + [anon_sym_ATavailable] = ACTIONS(1433), + [anon_sym_va_arg] = ACTIONS(1435), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [310] = { + [sym_identifier] = ACTIONS(1435), + [aux_sym_preproc_include_token1] = ACTIONS(1433), + [aux_sym_preproc_def_token1] = ACTIONS(1433), + [aux_sym_preproc_if_token1] = ACTIONS(1435), + [aux_sym_preproc_if_token2] = ACTIONS(1435), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1435), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1435), + [aux_sym_preproc_else_token1] = ACTIONS(1435), + [aux_sym_preproc_elif_token1] = ACTIONS(1435), + [anon_sym_LPAREN2] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_typedef] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym___attribute] = ACTIONS(1435), + [anon_sym___attribute__] = ACTIONS(1435), + [anon_sym___declspec] = ACTIONS(1435), + [anon_sym___cdecl] = ACTIONS(1435), + [anon_sym___clrcall] = ACTIONS(1435), + [anon_sym___stdcall] = ACTIONS(1435), + [anon_sym___fastcall] = ACTIONS(1435), + [anon_sym___thiscall] = ACTIONS(1435), + [anon_sym___vectorcall] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1435), + [anon_sym_auto] = ACTIONS(1435), + [anon_sym_register] = ACTIONS(1435), + [anon_sym_inline] = ACTIONS(1435), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_volatile] = ACTIONS(1435), + [anon_sym_restrict] = ACTIONS(1435), + [anon_sym__Atomic] = ACTIONS(1435), + [anon_sym_in] = ACTIONS(1435), + [anon_sym_out] = ACTIONS(1435), + [anon_sym_inout] = ACTIONS(1435), + [anon_sym_bycopy] = ACTIONS(1435), + [anon_sym_byref] = ACTIONS(1435), + [anon_sym_oneway] = ACTIONS(1435), + [anon_sym__Nullable] = ACTIONS(1435), + [anon_sym__Nonnull] = ACTIONS(1435), + [anon_sym__Nullable_result] = ACTIONS(1435), + [anon_sym__Null_unspecified] = ACTIONS(1435), + [anon_sym___autoreleasing] = ACTIONS(1435), + [anon_sym___nullable] = ACTIONS(1435), + [anon_sym___nonnull] = ACTIONS(1435), + [anon_sym___strong] = ACTIONS(1435), + [anon_sym___weak] = ACTIONS(1435), + [anon_sym___bridge] = ACTIONS(1435), + [anon_sym___bridge_transfer] = ACTIONS(1435), + [anon_sym___bridge_retained] = ACTIONS(1435), + [anon_sym___unsafe_unretained] = ACTIONS(1435), + [anon_sym___block] = ACTIONS(1435), + [anon_sym___kindof] = ACTIONS(1435), + [anon_sym___unused] = ACTIONS(1435), + [anon_sym__Complex] = ACTIONS(1435), + [anon_sym___complex] = ACTIONS(1435), + [anon_sym_IBOutlet] = ACTIONS(1435), + [anon_sym_IBInspectable] = ACTIONS(1435), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1435), + [anon_sym_signed] = ACTIONS(1435), + [anon_sym_unsigned] = ACTIONS(1435), + [anon_sym_long] = ACTIONS(1435), + [anon_sym_short] = ACTIONS(1435), + [sym_primitive_type] = ACTIONS(1435), + [anon_sym_enum] = ACTIONS(1435), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_else] = ACTIONS(1435), + [anon_sym_switch] = ACTIONS(1435), + [anon_sym_case] = ACTIONS(1435), + [anon_sym_default] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_do] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_goto] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1433), + [anon_sym_sizeof] = ACTIONS(1435), + [sym_number_literal] = ACTIONS(1433), + [anon_sym_L_SQUOTE] = ACTIONS(1433), + [anon_sym_u_SQUOTE] = ACTIONS(1433), + [anon_sym_U_SQUOTE] = ACTIONS(1433), + [anon_sym_u8_SQUOTE] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_L_DQUOTE] = ACTIONS(1433), + [anon_sym_u_DQUOTE] = ACTIONS(1433), + [anon_sym_U_DQUOTE] = ACTIONS(1433), + [anon_sym_u8_DQUOTE] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [sym_true] = ACTIONS(1435), + [sym_false] = ACTIONS(1435), + [sym_null] = ACTIONS(1435), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1433), + [anon_sym_ATimport] = ACTIONS(1433), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1435), + [anon_sym_ATcompatibility_alias] = ACTIONS(1433), + [anon_sym_ATprotocol] = ACTIONS(1433), + [anon_sym_ATclass] = ACTIONS(1433), + [anon_sym_ATinterface] = ACTIONS(1433), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1435), + [sym_method_attribute_specifier] = ACTIONS(1435), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1435), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1435), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1435), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1435), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1435), + [anon_sym_NS_AVAILABLE] = ACTIONS(1435), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1435), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_API_AVAILABLE] = ACTIONS(1435), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_API_DEPRECATED] = ACTIONS(1435), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1435), + [anon_sym___deprecated_msg] = ACTIONS(1435), + [anon_sym___deprecated_enum_msg] = ACTIONS(1435), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1435), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1435), + [anon_sym_ATimplementation] = ACTIONS(1433), + [anon_sym_NS_ENUM] = ACTIONS(1435), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1435), + [anon_sym_NS_OPTIONS] = ACTIONS(1435), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___typeof] = ACTIONS(1435), + [anon_sym___typeof__] = ACTIONS(1435), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_nil] = ACTIONS(1435), + [sym_id] = ACTIONS(1435), + [sym_instancetype] = ACTIONS(1435), + [sym_Class] = ACTIONS(1435), + [sym_SEL] = ACTIONS(1435), + [sym_IMP] = ACTIONS(1435), + [sym_BOOL] = ACTIONS(1435), + [sym_auto] = ACTIONS(1435), + [anon_sym_ATautoreleasepool] = ACTIONS(1433), + [anon_sym_ATsynchronized] = ACTIONS(1433), + [anon_sym_ATtry] = ACTIONS(1433), + [anon_sym_ATcatch] = ACTIONS(1433), + [anon_sym_ATfinally] = ACTIONS(1433), + [anon_sym_ATthrow] = ACTIONS(1433), + [anon_sym_ATselector] = ACTIONS(1433), + [anon_sym_ATencode] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(1435), + [sym_YES] = ACTIONS(1435), + [sym_NO] = ACTIONS(1435), + [anon_sym___builtin_available] = ACTIONS(1435), + [anon_sym_ATavailable] = ACTIONS(1433), + [anon_sym_va_arg] = ACTIONS(1435), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [311] = { + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1359), + [aux_sym_preproc_include_token1] = ACTIONS(1361), + [aux_sym_preproc_def_token1] = ACTIONS(1361), + [anon_sym_RPAREN] = ACTIONS(1361), + [aux_sym_preproc_if_token1] = ACTIONS(1359), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1359), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1359), + [anon_sym_LPAREN2] = ACTIONS(1361), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1361), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_typedef] = ACTIONS(1359), + [anon_sym_extern] = ACTIONS(1359), + [anon_sym___attribute] = ACTIONS(1359), + [anon_sym___attribute__] = ACTIONS(1359), + [anon_sym___declspec] = ACTIONS(1359), + [anon_sym___cdecl] = ACTIONS(1359), + [anon_sym___clrcall] = ACTIONS(1359), + [anon_sym___stdcall] = ACTIONS(1359), + [anon_sym___fastcall] = ACTIONS(1359), + [anon_sym___thiscall] = ACTIONS(1359), + [anon_sym___vectorcall] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_static] = ACTIONS(1359), + [anon_sym_auto] = ACTIONS(1359), + [anon_sym_register] = ACTIONS(1359), + [anon_sym_inline] = ACTIONS(1359), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1359), + [anon_sym_volatile] = ACTIONS(1359), + [anon_sym_restrict] = ACTIONS(1359), + [anon_sym__Atomic] = ACTIONS(1359), + [anon_sym_in] = ACTIONS(1359), + [anon_sym_out] = ACTIONS(1359), + [anon_sym_inout] = ACTIONS(1359), + [anon_sym_bycopy] = ACTIONS(1359), + [anon_sym_byref] = ACTIONS(1359), + [anon_sym_oneway] = ACTIONS(1359), + [anon_sym__Nullable] = ACTIONS(1359), + [anon_sym__Nonnull] = ACTIONS(1359), + [anon_sym__Nullable_result] = ACTIONS(1359), + [anon_sym__Null_unspecified] = ACTIONS(1359), + [anon_sym___autoreleasing] = ACTIONS(1359), + [anon_sym___nullable] = ACTIONS(1359), + [anon_sym___nonnull] = ACTIONS(1359), + [anon_sym___strong] = ACTIONS(1359), + [anon_sym___weak] = ACTIONS(1359), + [anon_sym___bridge] = ACTIONS(1359), + [anon_sym___bridge_transfer] = ACTIONS(1359), + [anon_sym___bridge_retained] = ACTIONS(1359), + [anon_sym___unsafe_unretained] = ACTIONS(1359), + [anon_sym___block] = ACTIONS(1359), + [anon_sym___kindof] = ACTIONS(1359), + [anon_sym___unused] = ACTIONS(1359), + [anon_sym__Complex] = ACTIONS(1359), + [anon_sym___complex] = ACTIONS(1359), + [anon_sym_IBOutlet] = ACTIONS(1359), + [anon_sym_IBInspectable] = ACTIONS(1359), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1359), + [anon_sym_signed] = ACTIONS(1359), + [anon_sym_unsigned] = ACTIONS(1359), + [anon_sym_long] = ACTIONS(1359), + [anon_sym_short] = ACTIONS(1359), + [sym_primitive_type] = ACTIONS(1359), + [anon_sym_enum] = ACTIONS(1359), + [anon_sym_struct] = ACTIONS(1359), + [anon_sym_union] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1359), + [anon_sym_else] = ACTIONS(1359), + [anon_sym_switch] = ACTIONS(1359), + [anon_sym_case] = ACTIONS(1359), + [anon_sym_default] = ACTIONS(1359), + [anon_sym_while] = ACTIONS(1359), + [anon_sym_do] = ACTIONS(1359), + [anon_sym_for] = ACTIONS(1359), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_break] = ACTIONS(1359), + [anon_sym_continue] = ACTIONS(1359), + [anon_sym_goto] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_sizeof] = ACTIONS(1359), + [sym_number_literal] = ACTIONS(1361), + [anon_sym_L_SQUOTE] = ACTIONS(1361), + [anon_sym_u_SQUOTE] = ACTIONS(1361), + [anon_sym_U_SQUOTE] = ACTIONS(1361), + [anon_sym_u8_SQUOTE] = ACTIONS(1361), + [anon_sym_SQUOTE] = ACTIONS(1361), + [anon_sym_L_DQUOTE] = ACTIONS(1361), + [anon_sym_u_DQUOTE] = ACTIONS(1361), + [anon_sym_U_DQUOTE] = ACTIONS(1361), + [anon_sym_u8_DQUOTE] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [sym_true] = ACTIONS(1359), + [sym_false] = ACTIONS(1359), + [sym_null] = ACTIONS(1359), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1361), + [anon_sym_ATimport] = ACTIONS(1361), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1359), + [anon_sym_ATcompatibility_alias] = ACTIONS(1361), + [anon_sym_ATprotocol] = ACTIONS(1361), + [anon_sym_ATclass] = ACTIONS(1361), + [anon_sym_ATinterface] = ACTIONS(1361), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1359), + [sym_method_attribute_specifier] = ACTIONS(1359), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1359), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1359), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1359), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1359), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1359), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1359), + [anon_sym_NS_AVAILABLE] = ACTIONS(1359), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1359), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_API_AVAILABLE] = ACTIONS(1359), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1359), + [anon_sym_API_DEPRECATED] = ACTIONS(1359), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1359), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1359), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1359), + [anon_sym___deprecated_msg] = ACTIONS(1359), + [anon_sym___deprecated_enum_msg] = ACTIONS(1359), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1359), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1359), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1359), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1359), + [anon_sym_ATimplementation] = ACTIONS(1361), + [anon_sym_NS_ENUM] = ACTIONS(1359), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1359), + [anon_sym_NS_OPTIONS] = ACTIONS(1359), + [anon_sym_typeof] = ACTIONS(1359), + [anon_sym___typeof] = ACTIONS(1359), + [anon_sym___typeof__] = ACTIONS(1359), + [sym_self] = ACTIONS(1359), + [sym_super] = ACTIONS(1359), + [sym_nil] = ACTIONS(1359), + [sym_id] = ACTIONS(1359), + [sym_instancetype] = ACTIONS(1359), + [sym_Class] = ACTIONS(1359), + [sym_SEL] = ACTIONS(1359), + [sym_IMP] = ACTIONS(1359), + [sym_BOOL] = ACTIONS(1359), + [sym_auto] = ACTIONS(1359), + [anon_sym_ATautoreleasepool] = ACTIONS(1361), + [anon_sym_ATsynchronized] = ACTIONS(1361), + [anon_sym_ATtry] = ACTIONS(1361), + [anon_sym_ATcatch] = ACTIONS(1361), + [anon_sym_ATfinally] = ACTIONS(1361), + [anon_sym_ATthrow] = ACTIONS(1361), + [anon_sym_ATselector] = ACTIONS(1361), + [anon_sym_ATencode] = ACTIONS(1361), + [anon_sym_AT] = ACTIONS(1359), + [sym_YES] = ACTIONS(1359), + [sym_NO] = ACTIONS(1359), + [anon_sym___builtin_available] = ACTIONS(1359), + [anon_sym_ATavailable] = ACTIONS(1361), + [anon_sym_va_arg] = ACTIONS(1359), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [312] = { + [sym_identifier] = ACTIONS(1525), + [aux_sym_preproc_include_token1] = ACTIONS(1523), + [aux_sym_preproc_def_token1] = ACTIONS(1523), + [aux_sym_preproc_if_token1] = ACTIONS(1525), + [aux_sym_preproc_if_token2] = ACTIONS(1525), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1525), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1525), + [aux_sym_preproc_else_token1] = ACTIONS(1525), + [aux_sym_preproc_elif_token1] = ACTIONS(1525), + [anon_sym_LPAREN2] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_CARET] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_typedef] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(1525), + [anon_sym___attribute] = ACTIONS(1525), + [anon_sym___attribute__] = ACTIONS(1525), + [anon_sym___declspec] = ACTIONS(1525), + [anon_sym___cdecl] = ACTIONS(1525), + [anon_sym___clrcall] = ACTIONS(1525), + [anon_sym___stdcall] = ACTIONS(1525), + [anon_sym___fastcall] = ACTIONS(1525), + [anon_sym___thiscall] = ACTIONS(1525), + [anon_sym___vectorcall] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_LBRACK] = ACTIONS(1523), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_auto] = ACTIONS(1525), + [anon_sym_register] = ACTIONS(1525), + [anon_sym_inline] = ACTIONS(1525), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_volatile] = ACTIONS(1525), + [anon_sym_restrict] = ACTIONS(1525), + [anon_sym__Atomic] = ACTIONS(1525), + [anon_sym_in] = ACTIONS(1525), + [anon_sym_out] = ACTIONS(1525), + [anon_sym_inout] = ACTIONS(1525), + [anon_sym_bycopy] = ACTIONS(1525), + [anon_sym_byref] = ACTIONS(1525), + [anon_sym_oneway] = ACTIONS(1525), + [anon_sym__Nullable] = ACTIONS(1525), + [anon_sym__Nonnull] = ACTIONS(1525), + [anon_sym__Nullable_result] = ACTIONS(1525), + [anon_sym__Null_unspecified] = ACTIONS(1525), + [anon_sym___autoreleasing] = ACTIONS(1525), + [anon_sym___nullable] = ACTIONS(1525), + [anon_sym___nonnull] = ACTIONS(1525), + [anon_sym___strong] = ACTIONS(1525), + [anon_sym___weak] = ACTIONS(1525), + [anon_sym___bridge] = ACTIONS(1525), + [anon_sym___bridge_transfer] = ACTIONS(1525), + [anon_sym___bridge_retained] = ACTIONS(1525), + [anon_sym___unsafe_unretained] = ACTIONS(1525), + [anon_sym___block] = ACTIONS(1525), + [anon_sym___kindof] = ACTIONS(1525), + [anon_sym___unused] = ACTIONS(1525), + [anon_sym__Complex] = ACTIONS(1525), + [anon_sym___complex] = ACTIONS(1525), + [anon_sym_IBOutlet] = ACTIONS(1525), + [anon_sym_IBInspectable] = ACTIONS(1525), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1525), + [anon_sym_signed] = ACTIONS(1525), + [anon_sym_unsigned] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [sym_primitive_type] = ACTIONS(1525), + [anon_sym_enum] = ACTIONS(1525), + [anon_sym_struct] = ACTIONS(1525), + [anon_sym_union] = ACTIONS(1525), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_else] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_case] = ACTIONS(1525), + [anon_sym_default] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1523), + [anon_sym_L_SQUOTE] = ACTIONS(1523), + [anon_sym_u_SQUOTE] = ACTIONS(1523), + [anon_sym_U_SQUOTE] = ACTIONS(1523), + [anon_sym_u8_SQUOTE] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_L_DQUOTE] = ACTIONS(1523), + [anon_sym_u_DQUOTE] = ACTIONS(1523), + [anon_sym_U_DQUOTE] = ACTIONS(1523), + [anon_sym_u8_DQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1523), + [sym_true] = ACTIONS(1525), + [sym_false] = ACTIONS(1525), + [sym_null] = ACTIONS(1525), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1523), + [anon_sym_ATimport] = ACTIONS(1523), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1525), + [anon_sym_ATcompatibility_alias] = ACTIONS(1523), + [anon_sym_ATprotocol] = ACTIONS(1523), + [anon_sym_ATclass] = ACTIONS(1523), + [anon_sym_ATinterface] = ACTIONS(1523), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1525), + [sym_method_attribute_specifier] = ACTIONS(1525), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1525), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1525), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1525), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1525), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1525), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1525), + [anon_sym_NS_AVAILABLE] = ACTIONS(1525), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1525), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1525), + [anon_sym_API_AVAILABLE] = ACTIONS(1525), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1525), + [anon_sym_API_DEPRECATED] = ACTIONS(1525), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1525), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1525), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1525), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1525), + [anon_sym___deprecated_msg] = ACTIONS(1525), + [anon_sym___deprecated_enum_msg] = ACTIONS(1525), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1525), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1525), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1525), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1525), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1525), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1525), + [anon_sym_ATimplementation] = ACTIONS(1523), + [anon_sym_NS_ENUM] = ACTIONS(1525), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1525), + [anon_sym_NS_OPTIONS] = ACTIONS(1525), + [anon_sym_typeof] = ACTIONS(1525), + [anon_sym___typeof] = ACTIONS(1525), + [anon_sym___typeof__] = ACTIONS(1525), + [sym_self] = ACTIONS(1525), + [sym_super] = ACTIONS(1525), + [sym_nil] = ACTIONS(1525), + [sym_id] = ACTIONS(1525), + [sym_instancetype] = ACTIONS(1525), + [sym_Class] = ACTIONS(1525), + [sym_SEL] = ACTIONS(1525), + [sym_IMP] = ACTIONS(1525), + [sym_BOOL] = ACTIONS(1525), + [sym_auto] = ACTIONS(1525), + [anon_sym_ATautoreleasepool] = ACTIONS(1523), + [anon_sym_ATsynchronized] = ACTIONS(1523), + [anon_sym_ATtry] = ACTIONS(1523), + [anon_sym_ATcatch] = ACTIONS(1523), + [anon_sym_ATfinally] = ACTIONS(1523), + [anon_sym_ATthrow] = ACTIONS(1523), + [anon_sym_ATselector] = ACTIONS(1523), + [anon_sym_ATencode] = ACTIONS(1523), + [anon_sym_AT] = ACTIONS(1525), + [sym_YES] = ACTIONS(1525), + [sym_NO] = ACTIONS(1525), + [anon_sym___builtin_available] = ACTIONS(1525), + [anon_sym_ATavailable] = ACTIONS(1523), + [anon_sym_va_arg] = ACTIONS(1525), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [313] = { + [sym_identifier] = ACTIONS(1417), + [aux_sym_preproc_include_token1] = ACTIONS(1415), + [aux_sym_preproc_def_token1] = ACTIONS(1415), + [aux_sym_preproc_if_token1] = ACTIONS(1417), + [aux_sym_preproc_if_token2] = ACTIONS(1417), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1417), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1417), + [aux_sym_preproc_else_token1] = ACTIONS(1417), + [aux_sym_preproc_elif_token1] = ACTIONS(1417), + [anon_sym_LPAREN2] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_typedef] = ACTIONS(1417), + [anon_sym_extern] = ACTIONS(1417), + [anon_sym___attribute] = ACTIONS(1417), + [anon_sym___attribute__] = ACTIONS(1417), + [anon_sym___declspec] = ACTIONS(1417), + [anon_sym___cdecl] = ACTIONS(1417), + [anon_sym___clrcall] = ACTIONS(1417), + [anon_sym___stdcall] = ACTIONS(1417), + [anon_sym___fastcall] = ACTIONS(1417), + [anon_sym___thiscall] = ACTIONS(1417), + [anon_sym___vectorcall] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_auto] = ACTIONS(1417), + [anon_sym_register] = ACTIONS(1417), + [anon_sym_inline] = ACTIONS(1417), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_volatile] = ACTIONS(1417), + [anon_sym_restrict] = ACTIONS(1417), + [anon_sym__Atomic] = ACTIONS(1417), + [anon_sym_in] = ACTIONS(1417), + [anon_sym_out] = ACTIONS(1417), + [anon_sym_inout] = ACTIONS(1417), + [anon_sym_bycopy] = ACTIONS(1417), + [anon_sym_byref] = ACTIONS(1417), + [anon_sym_oneway] = ACTIONS(1417), + [anon_sym__Nullable] = ACTIONS(1417), + [anon_sym__Nonnull] = ACTIONS(1417), + [anon_sym__Nullable_result] = ACTIONS(1417), + [anon_sym__Null_unspecified] = ACTIONS(1417), + [anon_sym___autoreleasing] = ACTIONS(1417), + [anon_sym___nullable] = ACTIONS(1417), + [anon_sym___nonnull] = ACTIONS(1417), + [anon_sym___strong] = ACTIONS(1417), + [anon_sym___weak] = ACTIONS(1417), + [anon_sym___bridge] = ACTIONS(1417), + [anon_sym___bridge_transfer] = ACTIONS(1417), + [anon_sym___bridge_retained] = ACTIONS(1417), + [anon_sym___unsafe_unretained] = ACTIONS(1417), + [anon_sym___block] = ACTIONS(1417), + [anon_sym___kindof] = ACTIONS(1417), + [anon_sym___unused] = ACTIONS(1417), + [anon_sym__Complex] = ACTIONS(1417), + [anon_sym___complex] = ACTIONS(1417), + [anon_sym_IBOutlet] = ACTIONS(1417), + [anon_sym_IBInspectable] = ACTIONS(1417), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1417), + [anon_sym_signed] = ACTIONS(1417), + [anon_sym_unsigned] = ACTIONS(1417), + [anon_sym_long] = ACTIONS(1417), + [anon_sym_short] = ACTIONS(1417), + [sym_primitive_type] = ACTIONS(1417), + [anon_sym_enum] = ACTIONS(1417), + [anon_sym_struct] = ACTIONS(1417), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_else] = ACTIONS(1417), + [anon_sym_switch] = ACTIONS(1417), + [anon_sym_case] = ACTIONS(1417), + [anon_sym_default] = ACTIONS(1417), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_do] = ACTIONS(1417), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_goto] = ACTIONS(1417), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_sizeof] = ACTIONS(1417), + [sym_number_literal] = ACTIONS(1415), + [anon_sym_L_SQUOTE] = ACTIONS(1415), + [anon_sym_u_SQUOTE] = ACTIONS(1415), + [anon_sym_U_SQUOTE] = ACTIONS(1415), + [anon_sym_u8_SQUOTE] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_L_DQUOTE] = ACTIONS(1415), + [anon_sym_u_DQUOTE] = ACTIONS(1415), + [anon_sym_U_DQUOTE] = ACTIONS(1415), + [anon_sym_u8_DQUOTE] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1415), + [sym_true] = ACTIONS(1417), + [sym_false] = ACTIONS(1417), + [sym_null] = ACTIONS(1417), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1415), + [anon_sym_ATimport] = ACTIONS(1415), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1417), + [anon_sym_ATcompatibility_alias] = ACTIONS(1415), + [anon_sym_ATprotocol] = ACTIONS(1415), + [anon_sym_ATclass] = ACTIONS(1415), + [anon_sym_ATinterface] = ACTIONS(1415), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1417), + [sym_method_attribute_specifier] = ACTIONS(1417), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1417), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1417), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1417), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1417), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1417), + [anon_sym_NS_AVAILABLE] = ACTIONS(1417), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1417), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_API_AVAILABLE] = ACTIONS(1417), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_API_DEPRECATED] = ACTIONS(1417), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1417), + [anon_sym___deprecated_msg] = ACTIONS(1417), + [anon_sym___deprecated_enum_msg] = ACTIONS(1417), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1417), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1417), + [anon_sym_ATimplementation] = ACTIONS(1415), + [anon_sym_NS_ENUM] = ACTIONS(1417), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1417), + [anon_sym_NS_OPTIONS] = ACTIONS(1417), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym___typeof] = ACTIONS(1417), + [anon_sym___typeof__] = ACTIONS(1417), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1417), + [sym_nil] = ACTIONS(1417), + [sym_id] = ACTIONS(1417), + [sym_instancetype] = ACTIONS(1417), + [sym_Class] = ACTIONS(1417), + [sym_SEL] = ACTIONS(1417), + [sym_IMP] = ACTIONS(1417), + [sym_BOOL] = ACTIONS(1417), + [sym_auto] = ACTIONS(1417), + [anon_sym_ATautoreleasepool] = ACTIONS(1415), + [anon_sym_ATsynchronized] = ACTIONS(1415), + [anon_sym_ATtry] = ACTIONS(1415), + [anon_sym_ATcatch] = ACTIONS(1415), + [anon_sym_ATfinally] = ACTIONS(1415), + [anon_sym_ATthrow] = ACTIONS(1415), + [anon_sym_ATselector] = ACTIONS(1415), + [anon_sym_ATencode] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [sym_YES] = ACTIONS(1417), + [sym_NO] = ACTIONS(1417), + [anon_sym___builtin_available] = ACTIONS(1417), + [anon_sym_ATavailable] = ACTIONS(1415), + [anon_sym_va_arg] = ACTIONS(1417), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [314] = { + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_include_token1] = ACTIONS(1561), + [aux_sym_preproc_def_token1] = ACTIONS(1561), + [aux_sym_preproc_if_token1] = ACTIONS(1563), + [aux_sym_preproc_if_token2] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1563), + [aux_sym_preproc_else_token1] = ACTIONS(1563), + [aux_sym_preproc_elif_token1] = ACTIONS(1563), + [anon_sym_LPAREN2] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_typedef] = ACTIONS(1563), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym___attribute] = ACTIONS(1563), + [anon_sym___attribute__] = ACTIONS(1563), + [anon_sym___declspec] = ACTIONS(1563), + [anon_sym___cdecl] = ACTIONS(1563), + [anon_sym___clrcall] = ACTIONS(1563), + [anon_sym___stdcall] = ACTIONS(1563), + [anon_sym___fastcall] = ACTIONS(1563), + [anon_sym___thiscall] = ACTIONS(1563), + [anon_sym___vectorcall] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_auto] = ACTIONS(1563), + [anon_sym_register] = ACTIONS(1563), + [anon_sym_inline] = ACTIONS(1563), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_volatile] = ACTIONS(1563), + [anon_sym_restrict] = ACTIONS(1563), + [anon_sym__Atomic] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [anon_sym_out] = ACTIONS(1563), + [anon_sym_inout] = ACTIONS(1563), + [anon_sym_bycopy] = ACTIONS(1563), + [anon_sym_byref] = ACTIONS(1563), + [anon_sym_oneway] = ACTIONS(1563), + [anon_sym__Nullable] = ACTIONS(1563), + [anon_sym__Nonnull] = ACTIONS(1563), + [anon_sym__Nullable_result] = ACTIONS(1563), + [anon_sym__Null_unspecified] = ACTIONS(1563), + [anon_sym___autoreleasing] = ACTIONS(1563), + [anon_sym___nullable] = ACTIONS(1563), + [anon_sym___nonnull] = ACTIONS(1563), + [anon_sym___strong] = ACTIONS(1563), + [anon_sym___weak] = ACTIONS(1563), + [anon_sym___bridge] = ACTIONS(1563), + [anon_sym___bridge_transfer] = ACTIONS(1563), + [anon_sym___bridge_retained] = ACTIONS(1563), + [anon_sym___unsafe_unretained] = ACTIONS(1563), + [anon_sym___block] = ACTIONS(1563), + [anon_sym___kindof] = ACTIONS(1563), + [anon_sym___unused] = ACTIONS(1563), + [anon_sym__Complex] = ACTIONS(1563), + [anon_sym___complex] = ACTIONS(1563), + [anon_sym_IBOutlet] = ACTIONS(1563), + [anon_sym_IBInspectable] = ACTIONS(1563), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1563), + [anon_sym_signed] = ACTIONS(1563), + [anon_sym_unsigned] = ACTIONS(1563), + [anon_sym_long] = ACTIONS(1563), + [anon_sym_short] = ACTIONS(1563), + [sym_primitive_type] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_else] = ACTIONS(1563), + [anon_sym_switch] = ACTIONS(1563), + [anon_sym_case] = ACTIONS(1563), + [anon_sym_default] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_goto] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1561), + [anon_sym_L_SQUOTE] = ACTIONS(1561), + [anon_sym_u_SQUOTE] = ACTIONS(1561), + [anon_sym_U_SQUOTE] = ACTIONS(1561), + [anon_sym_u8_SQUOTE] = ACTIONS(1561), + [anon_sym_SQUOTE] = ACTIONS(1561), + [anon_sym_L_DQUOTE] = ACTIONS(1561), + [anon_sym_u_DQUOTE] = ACTIONS(1561), + [anon_sym_U_DQUOTE] = ACTIONS(1561), + [anon_sym_u8_DQUOTE] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1561), + [sym_true] = ACTIONS(1563), + [sym_false] = ACTIONS(1563), + [sym_null] = ACTIONS(1563), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1561), + [anon_sym_ATimport] = ACTIONS(1561), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1563), + [anon_sym_ATcompatibility_alias] = ACTIONS(1561), + [anon_sym_ATprotocol] = ACTIONS(1561), + [anon_sym_ATclass] = ACTIONS(1561), + [anon_sym_ATinterface] = ACTIONS(1561), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1563), + [sym_method_attribute_specifier] = ACTIONS(1563), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1563), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE] = ACTIONS(1563), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_API_AVAILABLE] = ACTIONS(1563), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_API_DEPRECATED] = ACTIONS(1563), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1563), + [anon_sym___deprecated_msg] = ACTIONS(1563), + [anon_sym___deprecated_enum_msg] = ACTIONS(1563), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1563), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1563), + [anon_sym_ATimplementation] = ACTIONS(1561), + [anon_sym_NS_ENUM] = ACTIONS(1563), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1563), + [anon_sym_NS_OPTIONS] = ACTIONS(1563), + [anon_sym_typeof] = ACTIONS(1563), + [anon_sym___typeof] = ACTIONS(1563), + [anon_sym___typeof__] = ACTIONS(1563), + [sym_self] = ACTIONS(1563), + [sym_super] = ACTIONS(1563), + [sym_nil] = ACTIONS(1563), + [sym_id] = ACTIONS(1563), + [sym_instancetype] = ACTIONS(1563), + [sym_Class] = ACTIONS(1563), + [sym_SEL] = ACTIONS(1563), + [sym_IMP] = ACTIONS(1563), + [sym_BOOL] = ACTIONS(1563), + [sym_auto] = ACTIONS(1563), + [anon_sym_ATautoreleasepool] = ACTIONS(1561), + [anon_sym_ATsynchronized] = ACTIONS(1561), + [anon_sym_ATtry] = ACTIONS(1561), + [anon_sym_ATcatch] = ACTIONS(1561), + [anon_sym_ATfinally] = ACTIONS(1561), + [anon_sym_ATthrow] = ACTIONS(1561), + [anon_sym_ATselector] = ACTIONS(1561), + [anon_sym_ATencode] = ACTIONS(1561), + [anon_sym_AT] = ACTIONS(1563), + [sym_YES] = ACTIONS(1563), + [sym_NO] = ACTIONS(1563), + [anon_sym___builtin_available] = ACTIONS(1563), + [anon_sym_ATavailable] = ACTIONS(1561), + [anon_sym_va_arg] = ACTIONS(1563), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [315] = { + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_include_token1] = ACTIONS(1561), + [aux_sym_preproc_def_token1] = ACTIONS(1561), + [aux_sym_preproc_if_token1] = ACTIONS(1563), + [aux_sym_preproc_if_token2] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1563), + [aux_sym_preproc_else_token1] = ACTIONS(1563), + [aux_sym_preproc_elif_token1] = ACTIONS(1563), + [anon_sym_LPAREN2] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_typedef] = ACTIONS(1563), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym___attribute] = ACTIONS(1563), + [anon_sym___attribute__] = ACTIONS(1563), + [anon_sym___declspec] = ACTIONS(1563), + [anon_sym___cdecl] = ACTIONS(1563), + [anon_sym___clrcall] = ACTIONS(1563), + [anon_sym___stdcall] = ACTIONS(1563), + [anon_sym___fastcall] = ACTIONS(1563), + [anon_sym___thiscall] = ACTIONS(1563), + [anon_sym___vectorcall] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_auto] = ACTIONS(1563), + [anon_sym_register] = ACTIONS(1563), + [anon_sym_inline] = ACTIONS(1563), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_volatile] = ACTIONS(1563), + [anon_sym_restrict] = ACTIONS(1563), + [anon_sym__Atomic] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [anon_sym_out] = ACTIONS(1563), + [anon_sym_inout] = ACTIONS(1563), + [anon_sym_bycopy] = ACTIONS(1563), + [anon_sym_byref] = ACTIONS(1563), + [anon_sym_oneway] = ACTIONS(1563), + [anon_sym__Nullable] = ACTIONS(1563), + [anon_sym__Nonnull] = ACTIONS(1563), + [anon_sym__Nullable_result] = ACTIONS(1563), + [anon_sym__Null_unspecified] = ACTIONS(1563), + [anon_sym___autoreleasing] = ACTIONS(1563), + [anon_sym___nullable] = ACTIONS(1563), + [anon_sym___nonnull] = ACTIONS(1563), + [anon_sym___strong] = ACTIONS(1563), + [anon_sym___weak] = ACTIONS(1563), + [anon_sym___bridge] = ACTIONS(1563), + [anon_sym___bridge_transfer] = ACTIONS(1563), + [anon_sym___bridge_retained] = ACTIONS(1563), + [anon_sym___unsafe_unretained] = ACTIONS(1563), + [anon_sym___block] = ACTIONS(1563), + [anon_sym___kindof] = ACTIONS(1563), + [anon_sym___unused] = ACTIONS(1563), + [anon_sym__Complex] = ACTIONS(1563), + [anon_sym___complex] = ACTIONS(1563), + [anon_sym_IBOutlet] = ACTIONS(1563), + [anon_sym_IBInspectable] = ACTIONS(1563), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1563), + [anon_sym_signed] = ACTIONS(1563), + [anon_sym_unsigned] = ACTIONS(1563), + [anon_sym_long] = ACTIONS(1563), + [anon_sym_short] = ACTIONS(1563), + [sym_primitive_type] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_else] = ACTIONS(1563), + [anon_sym_switch] = ACTIONS(1563), + [anon_sym_case] = ACTIONS(1563), + [anon_sym_default] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_goto] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1561), + [anon_sym_L_SQUOTE] = ACTIONS(1561), + [anon_sym_u_SQUOTE] = ACTIONS(1561), + [anon_sym_U_SQUOTE] = ACTIONS(1561), + [anon_sym_u8_SQUOTE] = ACTIONS(1561), + [anon_sym_SQUOTE] = ACTIONS(1561), + [anon_sym_L_DQUOTE] = ACTIONS(1561), + [anon_sym_u_DQUOTE] = ACTIONS(1561), + [anon_sym_U_DQUOTE] = ACTIONS(1561), + [anon_sym_u8_DQUOTE] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1561), + [sym_true] = ACTIONS(1563), + [sym_false] = ACTIONS(1563), + [sym_null] = ACTIONS(1563), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1561), + [anon_sym_ATimport] = ACTIONS(1561), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1563), + [anon_sym_ATcompatibility_alias] = ACTIONS(1561), + [anon_sym_ATprotocol] = ACTIONS(1561), + [anon_sym_ATclass] = ACTIONS(1561), + [anon_sym_ATinterface] = ACTIONS(1561), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1563), + [sym_method_attribute_specifier] = ACTIONS(1563), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1563), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE] = ACTIONS(1563), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_API_AVAILABLE] = ACTIONS(1563), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_API_DEPRECATED] = ACTIONS(1563), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1563), + [anon_sym___deprecated_msg] = ACTIONS(1563), + [anon_sym___deprecated_enum_msg] = ACTIONS(1563), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1563), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1563), + [anon_sym_ATimplementation] = ACTIONS(1561), + [anon_sym_NS_ENUM] = ACTIONS(1563), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1563), + [anon_sym_NS_OPTIONS] = ACTIONS(1563), + [anon_sym_typeof] = ACTIONS(1563), + [anon_sym___typeof] = ACTIONS(1563), + [anon_sym___typeof__] = ACTIONS(1563), + [sym_self] = ACTIONS(1563), + [sym_super] = ACTIONS(1563), + [sym_nil] = ACTIONS(1563), + [sym_id] = ACTIONS(1563), + [sym_instancetype] = ACTIONS(1563), + [sym_Class] = ACTIONS(1563), + [sym_SEL] = ACTIONS(1563), + [sym_IMP] = ACTIONS(1563), + [sym_BOOL] = ACTIONS(1563), + [sym_auto] = ACTIONS(1563), + [anon_sym_ATautoreleasepool] = ACTIONS(1561), + [anon_sym_ATsynchronized] = ACTIONS(1561), + [anon_sym_ATtry] = ACTIONS(1561), + [anon_sym_ATcatch] = ACTIONS(1561), + [anon_sym_ATfinally] = ACTIONS(1561), + [anon_sym_ATthrow] = ACTIONS(1561), + [anon_sym_ATselector] = ACTIONS(1561), + [anon_sym_ATencode] = ACTIONS(1561), + [anon_sym_AT] = ACTIONS(1563), + [sym_YES] = ACTIONS(1563), + [sym_NO] = ACTIONS(1563), + [anon_sym___builtin_available] = ACTIONS(1563), + [anon_sym_ATavailable] = ACTIONS(1561), + [anon_sym_va_arg] = ACTIONS(1563), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [316] = { + [sym_identifier] = ACTIONS(1417), + [aux_sym_preproc_include_token1] = ACTIONS(1415), + [aux_sym_preproc_def_token1] = ACTIONS(1415), + [aux_sym_preproc_if_token1] = ACTIONS(1417), + [aux_sym_preproc_if_token2] = ACTIONS(1417), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1417), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1417), + [aux_sym_preproc_else_token1] = ACTIONS(1417), + [aux_sym_preproc_elif_token1] = ACTIONS(1417), + [anon_sym_LPAREN2] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_typedef] = ACTIONS(1417), + [anon_sym_extern] = ACTIONS(1417), + [anon_sym___attribute] = ACTIONS(1417), + [anon_sym___attribute__] = ACTIONS(1417), + [anon_sym___declspec] = ACTIONS(1417), + [anon_sym___cdecl] = ACTIONS(1417), + [anon_sym___clrcall] = ACTIONS(1417), + [anon_sym___stdcall] = ACTIONS(1417), + [anon_sym___fastcall] = ACTIONS(1417), + [anon_sym___thiscall] = ACTIONS(1417), + [anon_sym___vectorcall] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_auto] = ACTIONS(1417), + [anon_sym_register] = ACTIONS(1417), + [anon_sym_inline] = ACTIONS(1417), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_volatile] = ACTIONS(1417), + [anon_sym_restrict] = ACTIONS(1417), + [anon_sym__Atomic] = ACTIONS(1417), + [anon_sym_in] = ACTIONS(1417), + [anon_sym_out] = ACTIONS(1417), + [anon_sym_inout] = ACTIONS(1417), + [anon_sym_bycopy] = ACTIONS(1417), + [anon_sym_byref] = ACTIONS(1417), + [anon_sym_oneway] = ACTIONS(1417), + [anon_sym__Nullable] = ACTIONS(1417), + [anon_sym__Nonnull] = ACTIONS(1417), + [anon_sym__Nullable_result] = ACTIONS(1417), + [anon_sym__Null_unspecified] = ACTIONS(1417), + [anon_sym___autoreleasing] = ACTIONS(1417), + [anon_sym___nullable] = ACTIONS(1417), + [anon_sym___nonnull] = ACTIONS(1417), + [anon_sym___strong] = ACTIONS(1417), + [anon_sym___weak] = ACTIONS(1417), + [anon_sym___bridge] = ACTIONS(1417), + [anon_sym___bridge_transfer] = ACTIONS(1417), + [anon_sym___bridge_retained] = ACTIONS(1417), + [anon_sym___unsafe_unretained] = ACTIONS(1417), + [anon_sym___block] = ACTIONS(1417), + [anon_sym___kindof] = ACTIONS(1417), + [anon_sym___unused] = ACTIONS(1417), + [anon_sym__Complex] = ACTIONS(1417), + [anon_sym___complex] = ACTIONS(1417), + [anon_sym_IBOutlet] = ACTIONS(1417), + [anon_sym_IBInspectable] = ACTIONS(1417), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1417), + [anon_sym_signed] = ACTIONS(1417), + [anon_sym_unsigned] = ACTIONS(1417), + [anon_sym_long] = ACTIONS(1417), + [anon_sym_short] = ACTIONS(1417), + [sym_primitive_type] = ACTIONS(1417), + [anon_sym_enum] = ACTIONS(1417), + [anon_sym_struct] = ACTIONS(1417), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_else] = ACTIONS(1417), + [anon_sym_switch] = ACTIONS(1417), + [anon_sym_case] = ACTIONS(1417), + [anon_sym_default] = ACTIONS(1417), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_do] = ACTIONS(1417), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_goto] = ACTIONS(1417), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_sizeof] = ACTIONS(1417), + [sym_number_literal] = ACTIONS(1415), + [anon_sym_L_SQUOTE] = ACTIONS(1415), + [anon_sym_u_SQUOTE] = ACTIONS(1415), + [anon_sym_U_SQUOTE] = ACTIONS(1415), + [anon_sym_u8_SQUOTE] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_L_DQUOTE] = ACTIONS(1415), + [anon_sym_u_DQUOTE] = ACTIONS(1415), + [anon_sym_U_DQUOTE] = ACTIONS(1415), + [anon_sym_u8_DQUOTE] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1415), + [sym_true] = ACTIONS(1417), + [sym_false] = ACTIONS(1417), + [sym_null] = ACTIONS(1417), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1415), + [anon_sym_ATimport] = ACTIONS(1415), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1417), + [anon_sym_ATcompatibility_alias] = ACTIONS(1415), + [anon_sym_ATprotocol] = ACTIONS(1415), + [anon_sym_ATclass] = ACTIONS(1415), + [anon_sym_ATinterface] = ACTIONS(1415), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1417), + [sym_method_attribute_specifier] = ACTIONS(1417), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1417), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1417), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1417), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1417), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1417), + [anon_sym_NS_AVAILABLE] = ACTIONS(1417), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1417), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_API_AVAILABLE] = ACTIONS(1417), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_API_DEPRECATED] = ACTIONS(1417), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1417), + [anon_sym___deprecated_msg] = ACTIONS(1417), + [anon_sym___deprecated_enum_msg] = ACTIONS(1417), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1417), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1417), + [anon_sym_ATimplementation] = ACTIONS(1415), + [anon_sym_NS_ENUM] = ACTIONS(1417), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1417), + [anon_sym_NS_OPTIONS] = ACTIONS(1417), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym___typeof] = ACTIONS(1417), + [anon_sym___typeof__] = ACTIONS(1417), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1417), + [sym_nil] = ACTIONS(1417), + [sym_id] = ACTIONS(1417), + [sym_instancetype] = ACTIONS(1417), + [sym_Class] = ACTIONS(1417), + [sym_SEL] = ACTIONS(1417), + [sym_IMP] = ACTIONS(1417), + [sym_BOOL] = ACTIONS(1417), + [sym_auto] = ACTIONS(1417), + [anon_sym_ATautoreleasepool] = ACTIONS(1415), + [anon_sym_ATsynchronized] = ACTIONS(1415), + [anon_sym_ATtry] = ACTIONS(1415), + [anon_sym_ATcatch] = ACTIONS(1415), + [anon_sym_ATfinally] = ACTIONS(1415), + [anon_sym_ATthrow] = ACTIONS(1415), + [anon_sym_ATselector] = ACTIONS(1415), + [anon_sym_ATencode] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [sym_YES] = ACTIONS(1417), + [sym_NO] = ACTIONS(1417), + [anon_sym___builtin_available] = ACTIONS(1417), + [anon_sym_ATavailable] = ACTIONS(1415), + [anon_sym_va_arg] = ACTIONS(1417), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [317] = { + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_include_token1] = ACTIONS(1561), + [aux_sym_preproc_def_token1] = ACTIONS(1561), + [aux_sym_preproc_if_token1] = ACTIONS(1563), + [aux_sym_preproc_if_token2] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1563), + [aux_sym_preproc_else_token1] = ACTIONS(1563), + [aux_sym_preproc_elif_token1] = ACTIONS(1563), + [anon_sym_LPAREN2] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_typedef] = ACTIONS(1563), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym___attribute] = ACTIONS(1563), + [anon_sym___attribute__] = ACTIONS(1563), + [anon_sym___declspec] = ACTIONS(1563), + [anon_sym___cdecl] = ACTIONS(1563), + [anon_sym___clrcall] = ACTIONS(1563), + [anon_sym___stdcall] = ACTIONS(1563), + [anon_sym___fastcall] = ACTIONS(1563), + [anon_sym___thiscall] = ACTIONS(1563), + [anon_sym___vectorcall] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_auto] = ACTIONS(1563), + [anon_sym_register] = ACTIONS(1563), + [anon_sym_inline] = ACTIONS(1563), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_volatile] = ACTIONS(1563), + [anon_sym_restrict] = ACTIONS(1563), + [anon_sym__Atomic] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [anon_sym_out] = ACTIONS(1563), + [anon_sym_inout] = ACTIONS(1563), + [anon_sym_bycopy] = ACTIONS(1563), + [anon_sym_byref] = ACTIONS(1563), + [anon_sym_oneway] = ACTIONS(1563), + [anon_sym__Nullable] = ACTIONS(1563), + [anon_sym__Nonnull] = ACTIONS(1563), + [anon_sym__Nullable_result] = ACTIONS(1563), + [anon_sym__Null_unspecified] = ACTIONS(1563), + [anon_sym___autoreleasing] = ACTIONS(1563), + [anon_sym___nullable] = ACTIONS(1563), + [anon_sym___nonnull] = ACTIONS(1563), + [anon_sym___strong] = ACTIONS(1563), + [anon_sym___weak] = ACTIONS(1563), + [anon_sym___bridge] = ACTIONS(1563), + [anon_sym___bridge_transfer] = ACTIONS(1563), + [anon_sym___bridge_retained] = ACTIONS(1563), + [anon_sym___unsafe_unretained] = ACTIONS(1563), + [anon_sym___block] = ACTIONS(1563), + [anon_sym___kindof] = ACTIONS(1563), + [anon_sym___unused] = ACTIONS(1563), + [anon_sym__Complex] = ACTIONS(1563), + [anon_sym___complex] = ACTIONS(1563), + [anon_sym_IBOutlet] = ACTIONS(1563), + [anon_sym_IBInspectable] = ACTIONS(1563), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1563), + [anon_sym_signed] = ACTIONS(1563), + [anon_sym_unsigned] = ACTIONS(1563), + [anon_sym_long] = ACTIONS(1563), + [anon_sym_short] = ACTIONS(1563), + [sym_primitive_type] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_else] = ACTIONS(1563), + [anon_sym_switch] = ACTIONS(1563), + [anon_sym_case] = ACTIONS(1563), + [anon_sym_default] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_goto] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1561), + [anon_sym_L_SQUOTE] = ACTIONS(1561), + [anon_sym_u_SQUOTE] = ACTIONS(1561), + [anon_sym_U_SQUOTE] = ACTIONS(1561), + [anon_sym_u8_SQUOTE] = ACTIONS(1561), + [anon_sym_SQUOTE] = ACTIONS(1561), + [anon_sym_L_DQUOTE] = ACTIONS(1561), + [anon_sym_u_DQUOTE] = ACTIONS(1561), + [anon_sym_U_DQUOTE] = ACTIONS(1561), + [anon_sym_u8_DQUOTE] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1561), + [sym_true] = ACTIONS(1563), + [sym_false] = ACTIONS(1563), + [sym_null] = ACTIONS(1563), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1561), + [anon_sym_ATimport] = ACTIONS(1561), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1563), + [anon_sym_ATcompatibility_alias] = ACTIONS(1561), + [anon_sym_ATprotocol] = ACTIONS(1561), + [anon_sym_ATclass] = ACTIONS(1561), + [anon_sym_ATinterface] = ACTIONS(1561), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1563), + [sym_method_attribute_specifier] = ACTIONS(1563), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1563), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE] = ACTIONS(1563), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_API_AVAILABLE] = ACTIONS(1563), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_API_DEPRECATED] = ACTIONS(1563), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1563), + [anon_sym___deprecated_msg] = ACTIONS(1563), + [anon_sym___deprecated_enum_msg] = ACTIONS(1563), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1563), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1563), + [anon_sym_ATimplementation] = ACTIONS(1561), + [anon_sym_NS_ENUM] = ACTIONS(1563), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1563), + [anon_sym_NS_OPTIONS] = ACTIONS(1563), + [anon_sym_typeof] = ACTIONS(1563), + [anon_sym___typeof] = ACTIONS(1563), + [anon_sym___typeof__] = ACTIONS(1563), + [sym_self] = ACTIONS(1563), + [sym_super] = ACTIONS(1563), + [sym_nil] = ACTIONS(1563), + [sym_id] = ACTIONS(1563), + [sym_instancetype] = ACTIONS(1563), + [sym_Class] = ACTIONS(1563), + [sym_SEL] = ACTIONS(1563), + [sym_IMP] = ACTIONS(1563), + [sym_BOOL] = ACTIONS(1563), + [sym_auto] = ACTIONS(1563), + [anon_sym_ATautoreleasepool] = ACTIONS(1561), + [anon_sym_ATsynchronized] = ACTIONS(1561), + [anon_sym_ATtry] = ACTIONS(1561), + [anon_sym_ATcatch] = ACTIONS(1561), + [anon_sym_ATfinally] = ACTIONS(1561), + [anon_sym_ATthrow] = ACTIONS(1561), + [anon_sym_ATselector] = ACTIONS(1561), + [anon_sym_ATencode] = ACTIONS(1561), + [anon_sym_AT] = ACTIONS(1563), + [sym_YES] = ACTIONS(1563), + [sym_NO] = ACTIONS(1563), + [anon_sym___builtin_available] = ACTIONS(1563), + [anon_sym_ATavailable] = ACTIONS(1561), + [anon_sym_va_arg] = ACTIONS(1563), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [318] = { + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_include_token1] = ACTIONS(1561), + [aux_sym_preproc_def_token1] = ACTIONS(1561), + [aux_sym_preproc_if_token1] = ACTIONS(1563), + [aux_sym_preproc_if_token2] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1563), + [aux_sym_preproc_else_token1] = ACTIONS(1563), + [aux_sym_preproc_elif_token1] = ACTIONS(1563), + [anon_sym_LPAREN2] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_typedef] = ACTIONS(1563), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym___attribute] = ACTIONS(1563), + [anon_sym___attribute__] = ACTIONS(1563), + [anon_sym___declspec] = ACTIONS(1563), + [anon_sym___cdecl] = ACTIONS(1563), + [anon_sym___clrcall] = ACTIONS(1563), + [anon_sym___stdcall] = ACTIONS(1563), + [anon_sym___fastcall] = ACTIONS(1563), + [anon_sym___thiscall] = ACTIONS(1563), + [anon_sym___vectorcall] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_auto] = ACTIONS(1563), + [anon_sym_register] = ACTIONS(1563), + [anon_sym_inline] = ACTIONS(1563), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_volatile] = ACTIONS(1563), + [anon_sym_restrict] = ACTIONS(1563), + [anon_sym__Atomic] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [anon_sym_out] = ACTIONS(1563), + [anon_sym_inout] = ACTIONS(1563), + [anon_sym_bycopy] = ACTIONS(1563), + [anon_sym_byref] = ACTIONS(1563), + [anon_sym_oneway] = ACTIONS(1563), + [anon_sym__Nullable] = ACTIONS(1563), + [anon_sym__Nonnull] = ACTIONS(1563), + [anon_sym__Nullable_result] = ACTIONS(1563), + [anon_sym__Null_unspecified] = ACTIONS(1563), + [anon_sym___autoreleasing] = ACTIONS(1563), + [anon_sym___nullable] = ACTIONS(1563), + [anon_sym___nonnull] = ACTIONS(1563), + [anon_sym___strong] = ACTIONS(1563), + [anon_sym___weak] = ACTIONS(1563), + [anon_sym___bridge] = ACTIONS(1563), + [anon_sym___bridge_transfer] = ACTIONS(1563), + [anon_sym___bridge_retained] = ACTIONS(1563), + [anon_sym___unsafe_unretained] = ACTIONS(1563), + [anon_sym___block] = ACTIONS(1563), + [anon_sym___kindof] = ACTIONS(1563), + [anon_sym___unused] = ACTIONS(1563), + [anon_sym__Complex] = ACTIONS(1563), + [anon_sym___complex] = ACTIONS(1563), + [anon_sym_IBOutlet] = ACTIONS(1563), + [anon_sym_IBInspectable] = ACTIONS(1563), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1563), + [anon_sym_signed] = ACTIONS(1563), + [anon_sym_unsigned] = ACTIONS(1563), + [anon_sym_long] = ACTIONS(1563), + [anon_sym_short] = ACTIONS(1563), + [sym_primitive_type] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_else] = ACTIONS(1563), + [anon_sym_switch] = ACTIONS(1563), + [anon_sym_case] = ACTIONS(1563), + [anon_sym_default] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_goto] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1561), + [anon_sym_L_SQUOTE] = ACTIONS(1561), + [anon_sym_u_SQUOTE] = ACTIONS(1561), + [anon_sym_U_SQUOTE] = ACTIONS(1561), + [anon_sym_u8_SQUOTE] = ACTIONS(1561), + [anon_sym_SQUOTE] = ACTIONS(1561), + [anon_sym_L_DQUOTE] = ACTIONS(1561), + [anon_sym_u_DQUOTE] = ACTIONS(1561), + [anon_sym_U_DQUOTE] = ACTIONS(1561), + [anon_sym_u8_DQUOTE] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1561), + [sym_true] = ACTIONS(1563), + [sym_false] = ACTIONS(1563), + [sym_null] = ACTIONS(1563), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1561), + [anon_sym_ATimport] = ACTIONS(1561), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1563), + [anon_sym_ATcompatibility_alias] = ACTIONS(1561), + [anon_sym_ATprotocol] = ACTIONS(1561), + [anon_sym_ATclass] = ACTIONS(1561), + [anon_sym_ATinterface] = ACTIONS(1561), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1563), + [sym_method_attribute_specifier] = ACTIONS(1563), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1563), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE] = ACTIONS(1563), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_API_AVAILABLE] = ACTIONS(1563), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_API_DEPRECATED] = ACTIONS(1563), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1563), + [anon_sym___deprecated_msg] = ACTIONS(1563), + [anon_sym___deprecated_enum_msg] = ACTIONS(1563), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1563), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1563), + [anon_sym_ATimplementation] = ACTIONS(1561), + [anon_sym_NS_ENUM] = ACTIONS(1563), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1563), + [anon_sym_NS_OPTIONS] = ACTIONS(1563), + [anon_sym_typeof] = ACTIONS(1563), + [anon_sym___typeof] = ACTIONS(1563), + [anon_sym___typeof__] = ACTIONS(1563), + [sym_self] = ACTIONS(1563), + [sym_super] = ACTIONS(1563), + [sym_nil] = ACTIONS(1563), + [sym_id] = ACTIONS(1563), + [sym_instancetype] = ACTIONS(1563), + [sym_Class] = ACTIONS(1563), + [sym_SEL] = ACTIONS(1563), + [sym_IMP] = ACTIONS(1563), + [sym_BOOL] = ACTIONS(1563), + [sym_auto] = ACTIONS(1563), + [anon_sym_ATautoreleasepool] = ACTIONS(1561), + [anon_sym_ATsynchronized] = ACTIONS(1561), + [anon_sym_ATtry] = ACTIONS(1561), + [anon_sym_ATcatch] = ACTIONS(1561), + [anon_sym_ATfinally] = ACTIONS(1561), + [anon_sym_ATthrow] = ACTIONS(1561), + [anon_sym_ATselector] = ACTIONS(1561), + [anon_sym_ATencode] = ACTIONS(1561), + [anon_sym_AT] = ACTIONS(1563), + [sym_YES] = ACTIONS(1563), + [sym_NO] = ACTIONS(1563), + [anon_sym___builtin_available] = ACTIONS(1563), + [anon_sym_ATavailable] = ACTIONS(1561), + [anon_sym_va_arg] = ACTIONS(1563), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [319] = { + [sym_identifier] = ACTIONS(1643), + [aux_sym_preproc_include_token1] = ACTIONS(1641), + [aux_sym_preproc_def_token1] = ACTIONS(1641), + [aux_sym_preproc_if_token1] = ACTIONS(1643), + [aux_sym_preproc_if_token2] = ACTIONS(1643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1643), + [aux_sym_preproc_else_token1] = ACTIONS(1643), + [aux_sym_preproc_elif_token1] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1641), + [anon_sym_TILDE] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_CARET] = ACTIONS(1641), + [anon_sym_AMP] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_typedef] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym___attribute] = ACTIONS(1643), + [anon_sym___attribute__] = ACTIONS(1643), + [anon_sym___declspec] = ACTIONS(1643), + [anon_sym___cdecl] = ACTIONS(1643), + [anon_sym___clrcall] = ACTIONS(1643), + [anon_sym___stdcall] = ACTIONS(1643), + [anon_sym___fastcall] = ACTIONS(1643), + [anon_sym___thiscall] = ACTIONS(1643), + [anon_sym___vectorcall] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1643), + [anon_sym_auto] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_inline] = ACTIONS(1643), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [anon_sym_volatile] = ACTIONS(1643), + [anon_sym_restrict] = ACTIONS(1643), + [anon_sym__Atomic] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_out] = ACTIONS(1643), + [anon_sym_inout] = ACTIONS(1643), + [anon_sym_bycopy] = ACTIONS(1643), + [anon_sym_byref] = ACTIONS(1643), + [anon_sym_oneway] = ACTIONS(1643), + [anon_sym__Nullable] = ACTIONS(1643), + [anon_sym__Nonnull] = ACTIONS(1643), + [anon_sym__Nullable_result] = ACTIONS(1643), + [anon_sym__Null_unspecified] = ACTIONS(1643), + [anon_sym___autoreleasing] = ACTIONS(1643), + [anon_sym___nullable] = ACTIONS(1643), + [anon_sym___nonnull] = ACTIONS(1643), + [anon_sym___strong] = ACTIONS(1643), + [anon_sym___weak] = ACTIONS(1643), + [anon_sym___bridge] = ACTIONS(1643), + [anon_sym___bridge_transfer] = ACTIONS(1643), + [anon_sym___bridge_retained] = ACTIONS(1643), + [anon_sym___unsafe_unretained] = ACTIONS(1643), + [anon_sym___block] = ACTIONS(1643), + [anon_sym___kindof] = ACTIONS(1643), + [anon_sym___unused] = ACTIONS(1643), + [anon_sym__Complex] = ACTIONS(1643), + [anon_sym___complex] = ACTIONS(1643), + [anon_sym_IBOutlet] = ACTIONS(1643), + [anon_sym_IBInspectable] = ACTIONS(1643), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1643), + [anon_sym_signed] = ACTIONS(1643), + [anon_sym_unsigned] = ACTIONS(1643), + [anon_sym_long] = ACTIONS(1643), + [anon_sym_short] = ACTIONS(1643), + [sym_primitive_type] = ACTIONS(1643), + [anon_sym_enum] = ACTIONS(1643), + [anon_sym_struct] = ACTIONS(1643), + [anon_sym_union] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_switch] = ACTIONS(1643), + [anon_sym_case] = ACTIONS(1643), + [anon_sym_default] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_goto] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1641), + [anon_sym_PLUS_PLUS] = ACTIONS(1641), + [anon_sym_sizeof] = ACTIONS(1643), + [sym_number_literal] = ACTIONS(1641), + [anon_sym_L_SQUOTE] = ACTIONS(1641), + [anon_sym_u_SQUOTE] = ACTIONS(1641), + [anon_sym_U_SQUOTE] = ACTIONS(1641), + [anon_sym_u8_SQUOTE] = ACTIONS(1641), + [anon_sym_SQUOTE] = ACTIONS(1641), + [anon_sym_L_DQUOTE] = ACTIONS(1641), + [anon_sym_u_DQUOTE] = ACTIONS(1641), + [anon_sym_U_DQUOTE] = ACTIONS(1641), + [anon_sym_u8_DQUOTE] = ACTIONS(1641), + [anon_sym_DQUOTE] = ACTIONS(1641), + [sym_true] = ACTIONS(1643), + [sym_false] = ACTIONS(1643), + [sym_null] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1641), + [anon_sym_ATimport] = ACTIONS(1641), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1643), + [anon_sym_ATcompatibility_alias] = ACTIONS(1641), + [anon_sym_ATprotocol] = ACTIONS(1641), + [anon_sym_ATclass] = ACTIONS(1641), + [anon_sym_ATinterface] = ACTIONS(1641), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1643), + [sym_method_attribute_specifier] = ACTIONS(1643), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1643), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1643), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1643), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1643), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1643), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1643), + [anon_sym_NS_AVAILABLE] = ACTIONS(1643), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1643), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1643), + [anon_sym_API_AVAILABLE] = ACTIONS(1643), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1643), + [anon_sym_API_DEPRECATED] = ACTIONS(1643), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1643), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1643), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1643), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1643), + [anon_sym___deprecated_msg] = ACTIONS(1643), + [anon_sym___deprecated_enum_msg] = ACTIONS(1643), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1643), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1643), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1643), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1643), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1643), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1643), + [anon_sym_ATimplementation] = ACTIONS(1641), + [anon_sym_NS_ENUM] = ACTIONS(1643), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1643), + [anon_sym_NS_OPTIONS] = ACTIONS(1643), + [anon_sym_typeof] = ACTIONS(1643), + [anon_sym___typeof] = ACTIONS(1643), + [anon_sym___typeof__] = ACTIONS(1643), + [sym_self] = ACTIONS(1643), + [sym_super] = ACTIONS(1643), + [sym_nil] = ACTIONS(1643), + [sym_id] = ACTIONS(1643), + [sym_instancetype] = ACTIONS(1643), + [sym_Class] = ACTIONS(1643), + [sym_SEL] = ACTIONS(1643), + [sym_IMP] = ACTIONS(1643), + [sym_BOOL] = ACTIONS(1643), + [sym_auto] = ACTIONS(1643), + [anon_sym_ATautoreleasepool] = ACTIONS(1641), + [anon_sym_ATsynchronized] = ACTIONS(1641), + [anon_sym_ATtry] = ACTIONS(1641), + [anon_sym_ATcatch] = ACTIONS(1641), + [anon_sym_ATfinally] = ACTIONS(1641), + [anon_sym_ATthrow] = ACTIONS(1641), + [anon_sym_ATselector] = ACTIONS(1641), + [anon_sym_ATencode] = ACTIONS(1641), + [anon_sym_AT] = ACTIONS(1643), + [sym_YES] = ACTIONS(1643), + [sym_NO] = ACTIONS(1643), + [anon_sym___builtin_available] = ACTIONS(1643), + [anon_sym_ATavailable] = ACTIONS(1641), + [anon_sym_va_arg] = ACTIONS(1643), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [320] = { + [sym_identifier] = ACTIONS(1659), + [aux_sym_preproc_include_token1] = ACTIONS(1657), + [aux_sym_preproc_def_token1] = ACTIONS(1657), + [aux_sym_preproc_if_token1] = ACTIONS(1659), + [aux_sym_preproc_if_token2] = ACTIONS(1659), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1659), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1659), + [aux_sym_preproc_else_token1] = ACTIONS(1659), + [aux_sym_preproc_elif_token1] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_TILDE] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_STAR] = ACTIONS(1657), + [anon_sym_CARET] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_typedef] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym___attribute] = ACTIONS(1659), + [anon_sym___attribute__] = ACTIONS(1659), + [anon_sym___declspec] = ACTIONS(1659), + [anon_sym___cdecl] = ACTIONS(1659), + [anon_sym___clrcall] = ACTIONS(1659), + [anon_sym___stdcall] = ACTIONS(1659), + [anon_sym___fastcall] = ACTIONS(1659), + [anon_sym___thiscall] = ACTIONS(1659), + [anon_sym___vectorcall] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1659), + [anon_sym_auto] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_inline] = ACTIONS(1659), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [anon_sym_volatile] = ACTIONS(1659), + [anon_sym_restrict] = ACTIONS(1659), + [anon_sym__Atomic] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_out] = ACTIONS(1659), + [anon_sym_inout] = ACTIONS(1659), + [anon_sym_bycopy] = ACTIONS(1659), + [anon_sym_byref] = ACTIONS(1659), + [anon_sym_oneway] = ACTIONS(1659), + [anon_sym__Nullable] = ACTIONS(1659), + [anon_sym__Nonnull] = ACTIONS(1659), + [anon_sym__Nullable_result] = ACTIONS(1659), + [anon_sym__Null_unspecified] = ACTIONS(1659), + [anon_sym___autoreleasing] = ACTIONS(1659), + [anon_sym___nullable] = ACTIONS(1659), + [anon_sym___nonnull] = ACTIONS(1659), + [anon_sym___strong] = ACTIONS(1659), + [anon_sym___weak] = ACTIONS(1659), + [anon_sym___bridge] = ACTIONS(1659), + [anon_sym___bridge_transfer] = ACTIONS(1659), + [anon_sym___bridge_retained] = ACTIONS(1659), + [anon_sym___unsafe_unretained] = ACTIONS(1659), + [anon_sym___block] = ACTIONS(1659), + [anon_sym___kindof] = ACTIONS(1659), + [anon_sym___unused] = ACTIONS(1659), + [anon_sym__Complex] = ACTIONS(1659), + [anon_sym___complex] = ACTIONS(1659), + [anon_sym_IBOutlet] = ACTIONS(1659), + [anon_sym_IBInspectable] = ACTIONS(1659), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1659), + [anon_sym_signed] = ACTIONS(1659), + [anon_sym_unsigned] = ACTIONS(1659), + [anon_sym_long] = ACTIONS(1659), + [anon_sym_short] = ACTIONS(1659), + [sym_primitive_type] = ACTIONS(1659), + [anon_sym_enum] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_switch] = ACTIONS(1659), + [anon_sym_case] = ACTIONS(1659), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_goto] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(1659), + [sym_number_literal] = ACTIONS(1657), + [anon_sym_L_SQUOTE] = ACTIONS(1657), + [anon_sym_u_SQUOTE] = ACTIONS(1657), + [anon_sym_U_SQUOTE] = ACTIONS(1657), + [anon_sym_u8_SQUOTE] = ACTIONS(1657), + [anon_sym_SQUOTE] = ACTIONS(1657), + [anon_sym_L_DQUOTE] = ACTIONS(1657), + [anon_sym_u_DQUOTE] = ACTIONS(1657), + [anon_sym_U_DQUOTE] = ACTIONS(1657), + [anon_sym_u8_DQUOTE] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1657), + [sym_true] = ACTIONS(1659), + [sym_false] = ACTIONS(1659), + [sym_null] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1657), + [anon_sym_ATimport] = ACTIONS(1657), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1659), + [anon_sym_ATcompatibility_alias] = ACTIONS(1657), + [anon_sym_ATprotocol] = ACTIONS(1657), + [anon_sym_ATclass] = ACTIONS(1657), + [anon_sym_ATinterface] = ACTIONS(1657), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1659), + [sym_method_attribute_specifier] = ACTIONS(1659), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1659), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1659), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1659), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1659), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1659), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1659), + [anon_sym_NS_AVAILABLE] = ACTIONS(1659), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1659), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1659), + [anon_sym_API_AVAILABLE] = ACTIONS(1659), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1659), + [anon_sym_API_DEPRECATED] = ACTIONS(1659), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1659), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1659), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1659), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1659), + [anon_sym___deprecated_msg] = ACTIONS(1659), + [anon_sym___deprecated_enum_msg] = ACTIONS(1659), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1659), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1659), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1659), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1659), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1659), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1659), + [anon_sym_ATimplementation] = ACTIONS(1657), + [anon_sym_NS_ENUM] = ACTIONS(1659), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1659), + [anon_sym_NS_OPTIONS] = ACTIONS(1659), + [anon_sym_typeof] = ACTIONS(1659), + [anon_sym___typeof] = ACTIONS(1659), + [anon_sym___typeof__] = ACTIONS(1659), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_nil] = ACTIONS(1659), + [sym_id] = ACTIONS(1659), + [sym_instancetype] = ACTIONS(1659), + [sym_Class] = ACTIONS(1659), + [sym_SEL] = ACTIONS(1659), + [sym_IMP] = ACTIONS(1659), + [sym_BOOL] = ACTIONS(1659), + [sym_auto] = ACTIONS(1659), + [anon_sym_ATautoreleasepool] = ACTIONS(1657), + [anon_sym_ATsynchronized] = ACTIONS(1657), + [anon_sym_ATtry] = ACTIONS(1657), + [anon_sym_ATcatch] = ACTIONS(1657), + [anon_sym_ATfinally] = ACTIONS(1657), + [anon_sym_ATthrow] = ACTIONS(1657), + [anon_sym_ATselector] = ACTIONS(1657), + [anon_sym_ATencode] = ACTIONS(1657), + [anon_sym_AT] = ACTIONS(1659), + [sym_YES] = ACTIONS(1659), + [sym_NO] = ACTIONS(1659), + [anon_sym___builtin_available] = ACTIONS(1659), + [anon_sym_ATavailable] = ACTIONS(1657), + [anon_sym_va_arg] = ACTIONS(1659), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [321] = { + [sym_identifier] = ACTIONS(1573), + [aux_sym_preproc_include_token1] = ACTIONS(1571), + [aux_sym_preproc_def_token1] = ACTIONS(1571), + [aux_sym_preproc_if_token1] = ACTIONS(1573), + [aux_sym_preproc_if_token2] = ACTIONS(1573), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1573), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1573), + [aux_sym_preproc_else_token1] = ACTIONS(1573), + [aux_sym_preproc_elif_token1] = ACTIONS(1573), + [anon_sym_LPAREN2] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_typedef] = ACTIONS(1573), + [anon_sym_extern] = ACTIONS(1573), + [anon_sym___attribute] = ACTIONS(1573), + [anon_sym___attribute__] = ACTIONS(1573), + [anon_sym___declspec] = ACTIONS(1573), + [anon_sym___cdecl] = ACTIONS(1573), + [anon_sym___clrcall] = ACTIONS(1573), + [anon_sym___stdcall] = ACTIONS(1573), + [anon_sym___fastcall] = ACTIONS(1573), + [anon_sym___thiscall] = ACTIONS(1573), + [anon_sym___vectorcall] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_auto] = ACTIONS(1573), + [anon_sym_register] = ACTIONS(1573), + [anon_sym_inline] = ACTIONS(1573), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_volatile] = ACTIONS(1573), + [anon_sym_restrict] = ACTIONS(1573), + [anon_sym__Atomic] = ACTIONS(1573), + [anon_sym_in] = ACTIONS(1573), + [anon_sym_out] = ACTIONS(1573), + [anon_sym_inout] = ACTIONS(1573), + [anon_sym_bycopy] = ACTIONS(1573), + [anon_sym_byref] = ACTIONS(1573), + [anon_sym_oneway] = ACTIONS(1573), + [anon_sym__Nullable] = ACTIONS(1573), + [anon_sym__Nonnull] = ACTIONS(1573), + [anon_sym__Nullable_result] = ACTIONS(1573), + [anon_sym__Null_unspecified] = ACTIONS(1573), + [anon_sym___autoreleasing] = ACTIONS(1573), + [anon_sym___nullable] = ACTIONS(1573), + [anon_sym___nonnull] = ACTIONS(1573), + [anon_sym___strong] = ACTIONS(1573), + [anon_sym___weak] = ACTIONS(1573), + [anon_sym___bridge] = ACTIONS(1573), + [anon_sym___bridge_transfer] = ACTIONS(1573), + [anon_sym___bridge_retained] = ACTIONS(1573), + [anon_sym___unsafe_unretained] = ACTIONS(1573), + [anon_sym___block] = ACTIONS(1573), + [anon_sym___kindof] = ACTIONS(1573), + [anon_sym___unused] = ACTIONS(1573), + [anon_sym__Complex] = ACTIONS(1573), + [anon_sym___complex] = ACTIONS(1573), + [anon_sym_IBOutlet] = ACTIONS(1573), + [anon_sym_IBInspectable] = ACTIONS(1573), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1573), + [anon_sym_signed] = ACTIONS(1573), + [anon_sym_unsigned] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [sym_primitive_type] = ACTIONS(1573), + [anon_sym_enum] = ACTIONS(1573), + [anon_sym_struct] = ACTIONS(1573), + [anon_sym_union] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_else] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_case] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_goto] = ACTIONS(1573), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_sizeof] = ACTIONS(1573), + [sym_number_literal] = ACTIONS(1571), + [anon_sym_L_SQUOTE] = ACTIONS(1571), + [anon_sym_u_SQUOTE] = ACTIONS(1571), + [anon_sym_U_SQUOTE] = ACTIONS(1571), + [anon_sym_u8_SQUOTE] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_L_DQUOTE] = ACTIONS(1571), + [anon_sym_u_DQUOTE] = ACTIONS(1571), + [anon_sym_U_DQUOTE] = ACTIONS(1571), + [anon_sym_u8_DQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym_true] = ACTIONS(1573), + [sym_false] = ACTIONS(1573), + [sym_null] = ACTIONS(1573), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1571), + [anon_sym_ATimport] = ACTIONS(1571), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1573), + [anon_sym_ATcompatibility_alias] = ACTIONS(1571), + [anon_sym_ATprotocol] = ACTIONS(1571), + [anon_sym_ATclass] = ACTIONS(1571), + [anon_sym_ATinterface] = ACTIONS(1571), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1573), + [sym_method_attribute_specifier] = ACTIONS(1573), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1573), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1573), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1573), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1573), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1573), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1573), + [anon_sym_NS_AVAILABLE] = ACTIONS(1573), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1573), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1573), + [anon_sym_API_AVAILABLE] = ACTIONS(1573), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1573), + [anon_sym_API_DEPRECATED] = ACTIONS(1573), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1573), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1573), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1573), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1573), + [anon_sym___deprecated_msg] = ACTIONS(1573), + [anon_sym___deprecated_enum_msg] = ACTIONS(1573), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1573), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1573), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1573), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1573), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1573), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1573), + [anon_sym_ATimplementation] = ACTIONS(1571), + [anon_sym_NS_ENUM] = ACTIONS(1573), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1573), + [anon_sym_NS_OPTIONS] = ACTIONS(1573), + [anon_sym_typeof] = ACTIONS(1573), + [anon_sym___typeof] = ACTIONS(1573), + [anon_sym___typeof__] = ACTIONS(1573), + [sym_self] = ACTIONS(1573), + [sym_super] = ACTIONS(1573), + [sym_nil] = ACTIONS(1573), + [sym_id] = ACTIONS(1573), + [sym_instancetype] = ACTIONS(1573), + [sym_Class] = ACTIONS(1573), + [sym_SEL] = ACTIONS(1573), + [sym_IMP] = ACTIONS(1573), + [sym_BOOL] = ACTIONS(1573), + [sym_auto] = ACTIONS(1573), + [anon_sym_ATautoreleasepool] = ACTIONS(1571), + [anon_sym_ATsynchronized] = ACTIONS(1571), + [anon_sym_ATtry] = ACTIONS(1571), + [anon_sym_ATcatch] = ACTIONS(1571), + [anon_sym_ATfinally] = ACTIONS(1571), + [anon_sym_ATthrow] = ACTIONS(1571), + [anon_sym_ATselector] = ACTIONS(1571), + [anon_sym_ATencode] = ACTIONS(1571), + [anon_sym_AT] = ACTIONS(1573), + [sym_YES] = ACTIONS(1573), + [sym_NO] = ACTIONS(1573), + [anon_sym___builtin_available] = ACTIONS(1573), + [anon_sym_ATavailable] = ACTIONS(1571), + [anon_sym_va_arg] = ACTIONS(1573), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [322] = { + [sym_identifier] = ACTIONS(1533), + [aux_sym_preproc_include_token1] = ACTIONS(1531), + [aux_sym_preproc_def_token1] = ACTIONS(1531), + [aux_sym_preproc_if_token1] = ACTIONS(1533), + [aux_sym_preproc_if_token2] = ACTIONS(1533), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), + [aux_sym_preproc_else_token1] = ACTIONS(1533), + [aux_sym_preproc_elif_token1] = ACTIONS(1533), + [anon_sym_LPAREN2] = ACTIONS(1531), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_CARET] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_typedef] = ACTIONS(1533), + [anon_sym_extern] = ACTIONS(1533), + [anon_sym___attribute] = ACTIONS(1533), + [anon_sym___attribute__] = ACTIONS(1533), + [anon_sym___declspec] = ACTIONS(1533), + [anon_sym___cdecl] = ACTIONS(1533), + [anon_sym___clrcall] = ACTIONS(1533), + [anon_sym___stdcall] = ACTIONS(1533), + [anon_sym___fastcall] = ACTIONS(1533), + [anon_sym___thiscall] = ACTIONS(1533), + [anon_sym___vectorcall] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1531), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_auto] = ACTIONS(1533), + [anon_sym_register] = ACTIONS(1533), + [anon_sym_inline] = ACTIONS(1533), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_volatile] = ACTIONS(1533), + [anon_sym_restrict] = ACTIONS(1533), + [anon_sym__Atomic] = ACTIONS(1533), + [anon_sym_in] = ACTIONS(1533), + [anon_sym_out] = ACTIONS(1533), + [anon_sym_inout] = ACTIONS(1533), + [anon_sym_bycopy] = ACTIONS(1533), + [anon_sym_byref] = ACTIONS(1533), + [anon_sym_oneway] = ACTIONS(1533), + [anon_sym__Nullable] = ACTIONS(1533), + [anon_sym__Nonnull] = ACTIONS(1533), + [anon_sym__Nullable_result] = ACTIONS(1533), + [anon_sym__Null_unspecified] = ACTIONS(1533), + [anon_sym___autoreleasing] = ACTIONS(1533), + [anon_sym___nullable] = ACTIONS(1533), + [anon_sym___nonnull] = ACTIONS(1533), + [anon_sym___strong] = ACTIONS(1533), + [anon_sym___weak] = ACTIONS(1533), + [anon_sym___bridge] = ACTIONS(1533), + [anon_sym___bridge_transfer] = ACTIONS(1533), + [anon_sym___bridge_retained] = ACTIONS(1533), + [anon_sym___unsafe_unretained] = ACTIONS(1533), + [anon_sym___block] = ACTIONS(1533), + [anon_sym___kindof] = ACTIONS(1533), + [anon_sym___unused] = ACTIONS(1533), + [anon_sym__Complex] = ACTIONS(1533), + [anon_sym___complex] = ACTIONS(1533), + [anon_sym_IBOutlet] = ACTIONS(1533), + [anon_sym_IBInspectable] = ACTIONS(1533), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1533), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1533), + [anon_sym_enum] = ACTIONS(1533), + [anon_sym_struct] = ACTIONS(1533), + [anon_sym_union] = ACTIONS(1533), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_else] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_case] = ACTIONS(1533), + [anon_sym_default] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_goto] = ACTIONS(1533), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_sizeof] = ACTIONS(1533), + [sym_number_literal] = ACTIONS(1531), + [anon_sym_L_SQUOTE] = ACTIONS(1531), + [anon_sym_u_SQUOTE] = ACTIONS(1531), + [anon_sym_U_SQUOTE] = ACTIONS(1531), + [anon_sym_u8_SQUOTE] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1531), + [anon_sym_ATimport] = ACTIONS(1531), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1533), + [anon_sym_ATcompatibility_alias] = ACTIONS(1531), + [anon_sym_ATprotocol] = ACTIONS(1531), + [anon_sym_ATclass] = ACTIONS(1531), + [anon_sym_ATinterface] = ACTIONS(1531), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1533), + [sym_method_attribute_specifier] = ACTIONS(1533), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1533), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1533), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1533), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1533), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1533), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1533), + [anon_sym_NS_AVAILABLE] = ACTIONS(1533), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1533), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1533), + [anon_sym_API_AVAILABLE] = ACTIONS(1533), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1533), + [anon_sym_API_DEPRECATED] = ACTIONS(1533), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1533), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1533), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1533), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1533), + [anon_sym___deprecated_msg] = ACTIONS(1533), + [anon_sym___deprecated_enum_msg] = ACTIONS(1533), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1533), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1533), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1533), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1533), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1533), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1533), + [anon_sym_ATimplementation] = ACTIONS(1531), + [anon_sym_NS_ENUM] = ACTIONS(1533), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1533), + [anon_sym_NS_OPTIONS] = ACTIONS(1533), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym___typeof] = ACTIONS(1533), + [anon_sym___typeof__] = ACTIONS(1533), + [sym_self] = ACTIONS(1533), + [sym_super] = ACTIONS(1533), + [sym_nil] = ACTIONS(1533), + [sym_id] = ACTIONS(1533), + [sym_instancetype] = ACTIONS(1533), + [sym_Class] = ACTIONS(1533), + [sym_SEL] = ACTIONS(1533), + [sym_IMP] = ACTIONS(1533), + [sym_BOOL] = ACTIONS(1533), + [sym_auto] = ACTIONS(1533), + [anon_sym_ATautoreleasepool] = ACTIONS(1531), + [anon_sym_ATsynchronized] = ACTIONS(1531), + [anon_sym_ATtry] = ACTIONS(1531), + [anon_sym_ATcatch] = ACTIONS(1531), + [anon_sym_ATfinally] = ACTIONS(1531), + [anon_sym_ATthrow] = ACTIONS(1531), + [anon_sym_ATselector] = ACTIONS(1531), + [anon_sym_ATencode] = ACTIONS(1531), + [anon_sym_AT] = ACTIONS(1533), + [sym_YES] = ACTIONS(1533), + [sym_NO] = ACTIONS(1533), + [anon_sym___builtin_available] = ACTIONS(1533), + [anon_sym_ATavailable] = ACTIONS(1531), + [anon_sym_va_arg] = ACTIONS(1533), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [323] = { + [sym_identifier] = ACTIONS(1475), + [aux_sym_preproc_include_token1] = ACTIONS(1473), + [aux_sym_preproc_def_token1] = ACTIONS(1473), + [aux_sym_preproc_if_token1] = ACTIONS(1475), + [aux_sym_preproc_if_token2] = ACTIONS(1475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1475), + [aux_sym_preproc_else_token1] = ACTIONS(1475), + [aux_sym_preproc_elif_token1] = ACTIONS(1475), + [anon_sym_LPAREN2] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1475), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1473), + [anon_sym_typedef] = ACTIONS(1475), + [anon_sym_extern] = ACTIONS(1475), + [anon_sym___attribute] = ACTIONS(1475), + [anon_sym___attribute__] = ACTIONS(1475), + [anon_sym___declspec] = ACTIONS(1475), + [anon_sym___cdecl] = ACTIONS(1475), + [anon_sym___clrcall] = ACTIONS(1475), + [anon_sym___stdcall] = ACTIONS(1475), + [anon_sym___fastcall] = ACTIONS(1475), + [anon_sym___thiscall] = ACTIONS(1475), + [anon_sym___vectorcall] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_auto] = ACTIONS(1475), + [anon_sym_register] = ACTIONS(1475), + [anon_sym_inline] = ACTIONS(1475), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1475), + [anon_sym_volatile] = ACTIONS(1475), + [anon_sym_restrict] = ACTIONS(1475), + [anon_sym__Atomic] = ACTIONS(1475), + [anon_sym_in] = ACTIONS(1475), + [anon_sym_out] = ACTIONS(1475), + [anon_sym_inout] = ACTIONS(1475), + [anon_sym_bycopy] = ACTIONS(1475), + [anon_sym_byref] = ACTIONS(1475), + [anon_sym_oneway] = ACTIONS(1475), + [anon_sym__Nullable] = ACTIONS(1475), + [anon_sym__Nonnull] = ACTIONS(1475), + [anon_sym__Nullable_result] = ACTIONS(1475), + [anon_sym__Null_unspecified] = ACTIONS(1475), + [anon_sym___autoreleasing] = ACTIONS(1475), + [anon_sym___nullable] = ACTIONS(1475), + [anon_sym___nonnull] = ACTIONS(1475), + [anon_sym___strong] = ACTIONS(1475), + [anon_sym___weak] = ACTIONS(1475), + [anon_sym___bridge] = ACTIONS(1475), + [anon_sym___bridge_transfer] = ACTIONS(1475), + [anon_sym___bridge_retained] = ACTIONS(1475), + [anon_sym___unsafe_unretained] = ACTIONS(1475), + [anon_sym___block] = ACTIONS(1475), + [anon_sym___kindof] = ACTIONS(1475), + [anon_sym___unused] = ACTIONS(1475), + [anon_sym__Complex] = ACTIONS(1475), + [anon_sym___complex] = ACTIONS(1475), + [anon_sym_IBOutlet] = ACTIONS(1475), + [anon_sym_IBInspectable] = ACTIONS(1475), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1475), + [anon_sym_signed] = ACTIONS(1475), + [anon_sym_unsigned] = ACTIONS(1475), + [anon_sym_long] = ACTIONS(1475), + [anon_sym_short] = ACTIONS(1475), + [sym_primitive_type] = ACTIONS(1475), + [anon_sym_enum] = ACTIONS(1475), + [anon_sym_struct] = ACTIONS(1475), + [anon_sym_union] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1475), + [anon_sym_else] = ACTIONS(1475), + [anon_sym_switch] = ACTIONS(1475), + [anon_sym_case] = ACTIONS(1475), + [anon_sym_default] = ACTIONS(1475), + [anon_sym_while] = ACTIONS(1475), + [anon_sym_do] = ACTIONS(1475), + [anon_sym_for] = ACTIONS(1475), + [anon_sym_return] = ACTIONS(1475), + [anon_sym_break] = ACTIONS(1475), + [anon_sym_continue] = ACTIONS(1475), + [anon_sym_goto] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_PLUS_PLUS] = ACTIONS(1473), + [anon_sym_sizeof] = ACTIONS(1475), + [sym_number_literal] = ACTIONS(1473), + [anon_sym_L_SQUOTE] = ACTIONS(1473), + [anon_sym_u_SQUOTE] = ACTIONS(1473), + [anon_sym_U_SQUOTE] = ACTIONS(1473), + [anon_sym_u8_SQUOTE] = ACTIONS(1473), + [anon_sym_SQUOTE] = ACTIONS(1473), + [anon_sym_L_DQUOTE] = ACTIONS(1473), + [anon_sym_u_DQUOTE] = ACTIONS(1473), + [anon_sym_U_DQUOTE] = ACTIONS(1473), + [anon_sym_u8_DQUOTE] = ACTIONS(1473), + [anon_sym_DQUOTE] = ACTIONS(1473), + [sym_true] = ACTIONS(1475), + [sym_false] = ACTIONS(1475), + [sym_null] = ACTIONS(1475), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1473), + [anon_sym_ATimport] = ACTIONS(1473), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1475), + [anon_sym_ATcompatibility_alias] = ACTIONS(1473), + [anon_sym_ATprotocol] = ACTIONS(1473), + [anon_sym_ATclass] = ACTIONS(1473), + [anon_sym_ATinterface] = ACTIONS(1473), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1475), + [sym_method_attribute_specifier] = ACTIONS(1475), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1475), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1475), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1475), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1475), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1475), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1475), + [anon_sym_NS_AVAILABLE] = ACTIONS(1475), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1475), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1475), + [anon_sym_API_AVAILABLE] = ACTIONS(1475), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1475), + [anon_sym_API_DEPRECATED] = ACTIONS(1475), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1475), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1475), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1475), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1475), + [anon_sym___deprecated_msg] = ACTIONS(1475), + [anon_sym___deprecated_enum_msg] = ACTIONS(1475), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1475), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1475), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1475), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1475), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1475), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1475), + [anon_sym_ATimplementation] = ACTIONS(1473), + [anon_sym_NS_ENUM] = ACTIONS(1475), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1475), + [anon_sym_NS_OPTIONS] = ACTIONS(1475), + [anon_sym_typeof] = ACTIONS(1475), + [anon_sym___typeof] = ACTIONS(1475), + [anon_sym___typeof__] = ACTIONS(1475), + [sym_self] = ACTIONS(1475), + [sym_super] = ACTIONS(1475), + [sym_nil] = ACTIONS(1475), + [sym_id] = ACTIONS(1475), + [sym_instancetype] = ACTIONS(1475), + [sym_Class] = ACTIONS(1475), + [sym_SEL] = ACTIONS(1475), + [sym_IMP] = ACTIONS(1475), + [sym_BOOL] = ACTIONS(1475), + [sym_auto] = ACTIONS(1475), + [anon_sym_ATautoreleasepool] = ACTIONS(1473), + [anon_sym_ATsynchronized] = ACTIONS(1473), + [anon_sym_ATtry] = ACTIONS(1473), + [anon_sym_ATcatch] = ACTIONS(1473), + [anon_sym_ATfinally] = ACTIONS(1473), + [anon_sym_ATthrow] = ACTIONS(1473), + [anon_sym_ATselector] = ACTIONS(1473), + [anon_sym_ATencode] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(1475), + [sym_YES] = ACTIONS(1475), + [sym_NO] = ACTIONS(1475), + [anon_sym___builtin_available] = ACTIONS(1475), + [anon_sym_ATavailable] = ACTIONS(1473), + [anon_sym_va_arg] = ACTIONS(1475), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [324] = { + [sym_identifier] = ACTIONS(1397), + [aux_sym_preproc_include_token1] = ACTIONS(1395), + [aux_sym_preproc_def_token1] = ACTIONS(1395), + [aux_sym_preproc_if_token1] = ACTIONS(1397), + [aux_sym_preproc_if_token2] = ACTIONS(1397), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1397), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1397), + [aux_sym_preproc_else_token1] = ACTIONS(1397), + [aux_sym_preproc_elif_token1] = ACTIONS(1397), + [anon_sym_LPAREN2] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_CARET] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_typedef] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1397), + [anon_sym___attribute] = ACTIONS(1397), + [anon_sym___attribute__] = ACTIONS(1397), + [anon_sym___declspec] = ACTIONS(1397), + [anon_sym___cdecl] = ACTIONS(1397), + [anon_sym___clrcall] = ACTIONS(1397), + [anon_sym___stdcall] = ACTIONS(1397), + [anon_sym___fastcall] = ACTIONS(1397), + [anon_sym___thiscall] = ACTIONS(1397), + [anon_sym___vectorcall] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_auto] = ACTIONS(1397), + [anon_sym_register] = ACTIONS(1397), + [anon_sym_inline] = ACTIONS(1397), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_volatile] = ACTIONS(1397), + [anon_sym_restrict] = ACTIONS(1397), + [anon_sym__Atomic] = ACTIONS(1397), + [anon_sym_in] = ACTIONS(1397), + [anon_sym_out] = ACTIONS(1397), + [anon_sym_inout] = ACTIONS(1397), + [anon_sym_bycopy] = ACTIONS(1397), + [anon_sym_byref] = ACTIONS(1397), + [anon_sym_oneway] = ACTIONS(1397), + [anon_sym__Nullable] = ACTIONS(1397), + [anon_sym__Nonnull] = ACTIONS(1397), + [anon_sym__Nullable_result] = ACTIONS(1397), + [anon_sym__Null_unspecified] = ACTIONS(1397), + [anon_sym___autoreleasing] = ACTIONS(1397), + [anon_sym___nullable] = ACTIONS(1397), + [anon_sym___nonnull] = ACTIONS(1397), + [anon_sym___strong] = ACTIONS(1397), + [anon_sym___weak] = ACTIONS(1397), + [anon_sym___bridge] = ACTIONS(1397), + [anon_sym___bridge_transfer] = ACTIONS(1397), + [anon_sym___bridge_retained] = ACTIONS(1397), + [anon_sym___unsafe_unretained] = ACTIONS(1397), + [anon_sym___block] = ACTIONS(1397), + [anon_sym___kindof] = ACTIONS(1397), + [anon_sym___unused] = ACTIONS(1397), + [anon_sym__Complex] = ACTIONS(1397), + [anon_sym___complex] = ACTIONS(1397), + [anon_sym_IBOutlet] = ACTIONS(1397), + [anon_sym_IBInspectable] = ACTIONS(1397), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1397), + [anon_sym_signed] = ACTIONS(1397), + [anon_sym_unsigned] = ACTIONS(1397), + [anon_sym_long] = ACTIONS(1397), + [anon_sym_short] = ACTIONS(1397), + [sym_primitive_type] = ACTIONS(1397), + [anon_sym_enum] = ACTIONS(1397), + [anon_sym_struct] = ACTIONS(1397), + [anon_sym_union] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1397), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_case] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_goto] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_sizeof] = ACTIONS(1397), + [sym_number_literal] = ACTIONS(1395), + [anon_sym_L_SQUOTE] = ACTIONS(1395), + [anon_sym_u_SQUOTE] = ACTIONS(1395), + [anon_sym_U_SQUOTE] = ACTIONS(1395), + [anon_sym_u8_SQUOTE] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_L_DQUOTE] = ACTIONS(1395), + [anon_sym_u_DQUOTE] = ACTIONS(1395), + [anon_sym_U_DQUOTE] = ACTIONS(1395), + [anon_sym_u8_DQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1395), + [sym_true] = ACTIONS(1397), + [sym_false] = ACTIONS(1397), + [sym_null] = ACTIONS(1397), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1395), + [anon_sym_ATimport] = ACTIONS(1395), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1397), + [anon_sym_ATcompatibility_alias] = ACTIONS(1395), + [anon_sym_ATprotocol] = ACTIONS(1395), + [anon_sym_ATclass] = ACTIONS(1395), + [anon_sym_ATinterface] = ACTIONS(1395), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1397), + [sym_method_attribute_specifier] = ACTIONS(1397), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1397), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1397), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1397), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1397), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1397), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1397), + [anon_sym_NS_AVAILABLE] = ACTIONS(1397), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1397), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1397), + [anon_sym_API_AVAILABLE] = ACTIONS(1397), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1397), + [anon_sym_API_DEPRECATED] = ACTIONS(1397), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1397), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1397), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1397), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1397), + [anon_sym___deprecated_msg] = ACTIONS(1397), + [anon_sym___deprecated_enum_msg] = ACTIONS(1397), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1397), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1397), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1397), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1397), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1397), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1397), + [anon_sym_ATimplementation] = ACTIONS(1395), + [anon_sym_NS_ENUM] = ACTIONS(1397), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1397), + [anon_sym_NS_OPTIONS] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1397), + [anon_sym___typeof] = ACTIONS(1397), + [anon_sym___typeof__] = ACTIONS(1397), + [sym_self] = ACTIONS(1397), + [sym_super] = ACTIONS(1397), + [sym_nil] = ACTIONS(1397), + [sym_id] = ACTIONS(1397), + [sym_instancetype] = ACTIONS(1397), + [sym_Class] = ACTIONS(1397), + [sym_SEL] = ACTIONS(1397), + [sym_IMP] = ACTIONS(1397), + [sym_BOOL] = ACTIONS(1397), + [sym_auto] = ACTIONS(1397), + [anon_sym_ATautoreleasepool] = ACTIONS(1395), + [anon_sym_ATsynchronized] = ACTIONS(1395), + [anon_sym_ATtry] = ACTIONS(1395), + [anon_sym_ATcatch] = ACTIONS(1395), + [anon_sym_ATfinally] = ACTIONS(1395), + [anon_sym_ATthrow] = ACTIONS(1395), + [anon_sym_ATselector] = ACTIONS(1395), + [anon_sym_ATencode] = ACTIONS(1395), + [anon_sym_AT] = ACTIONS(1397), + [sym_YES] = ACTIONS(1397), + [sym_NO] = ACTIONS(1397), + [anon_sym___builtin_available] = ACTIONS(1397), + [anon_sym_ATavailable] = ACTIONS(1395), + [anon_sym_va_arg] = ACTIONS(1397), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [325] = { [sym_identifier] = ACTIONS(1369), - [aux_sym_preproc_include_token1] = ACTIONS(1371), - [aux_sym_preproc_def_token1] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1371), + [aux_sym_preproc_include_token1] = ACTIONS(1367), + [aux_sym_preproc_def_token1] = ACTIONS(1367), [aux_sym_preproc_if_token1] = ACTIONS(1369), + [aux_sym_preproc_if_token2] = ACTIONS(1369), [aux_sym_preproc_ifdef_token1] = ACTIONS(1369), [aux_sym_preproc_ifdef_token2] = ACTIONS(1369), - [anon_sym_LPAREN2] = ACTIONS(1371), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_TILDE] = ACTIONS(1371), + [aux_sym_preproc_else_token1] = ACTIONS(1369), + [aux_sym_preproc_elif_token1] = ACTIONS(1369), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_DASH] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1371), - [anon_sym_CARET] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1367), [anon_sym_typedef] = ACTIONS(1369), [anon_sym_extern] = ACTIONS(1369), [anon_sym___attribute] = ACTIONS(1369), @@ -88112,9 +83009,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1369), [anon_sym___thiscall] = ACTIONS(1369), [anon_sym___vectorcall] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1367), [anon_sym_static] = ACTIONS(1369), [anon_sym_auto] = ACTIONS(1369), [anon_sym_register] = ACTIONS(1369), @@ -88157,9 +83053,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1369), [sym_primitive_type] = ACTIONS(1369), [anon_sym_enum] = ACTIONS(1369), - [anon_sym_NS_ENUM] = ACTIONS(1369), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1369), - [anon_sym_NS_OPTIONS] = ACTIONS(1369), [anon_sym_struct] = ACTIONS(1369), [anon_sym_union] = ACTIONS(1369), [anon_sym_if] = ACTIONS(1369), @@ -88174,31 +83067,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1369), [anon_sym_continue] = ACTIONS(1369), [anon_sym_goto] = ACTIONS(1369), - [anon_sym_DASH_DASH] = ACTIONS(1371), - [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), [anon_sym_sizeof] = ACTIONS(1369), - [sym_number_literal] = ACTIONS(1371), - [anon_sym_L_SQUOTE] = ACTIONS(1371), - [anon_sym_u_SQUOTE] = ACTIONS(1371), - [anon_sym_U_SQUOTE] = ACTIONS(1371), - [anon_sym_u8_SQUOTE] = ACTIONS(1371), - [anon_sym_SQUOTE] = ACTIONS(1371), - [anon_sym_L_DQUOTE] = ACTIONS(1371), - [anon_sym_u_DQUOTE] = ACTIONS(1371), - [anon_sym_U_DQUOTE] = ACTIONS(1371), - [anon_sym_u8_DQUOTE] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1371), + [sym_number_literal] = ACTIONS(1367), + [anon_sym_L_SQUOTE] = ACTIONS(1367), + [anon_sym_u_SQUOTE] = ACTIONS(1367), + [anon_sym_U_SQUOTE] = ACTIONS(1367), + [anon_sym_u8_SQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_L_DQUOTE] = ACTIONS(1367), + [anon_sym_u_DQUOTE] = ACTIONS(1367), + [anon_sym_U_DQUOTE] = ACTIONS(1367), + [anon_sym_u8_DQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), [sym_true] = ACTIONS(1369), [sym_false] = ACTIONS(1369), [sym_null] = ACTIONS(1369), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1371), - [anon_sym_ATimport] = ACTIONS(1371), + [anon_sym_POUNDimport] = ACTIONS(1367), + [anon_sym_ATimport] = ACTIONS(1367), [sym__ns_assume_nonnull_declaration] = ACTIONS(1369), - [anon_sym_ATcompatibility_alias] = ACTIONS(1371), - [anon_sym_ATprotocol] = ACTIONS(1371), - [anon_sym_ATclass] = ACTIONS(1371), - [anon_sym_ATinterface] = ACTIONS(1371), + [anon_sym_ATcompatibility_alias] = ACTIONS(1367), + [anon_sym_ATprotocol] = ACTIONS(1367), + [anon_sym_ATclass] = ACTIONS(1367), + [anon_sym_ATinterface] = ACTIONS(1367), [sym_class_interface_attribute_sepcifier] = ACTIONS(1369), [sym_method_attribute_specifier] = ACTIONS(1369), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1369), @@ -88225,7 +83118,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1369), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1369), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1369), - [anon_sym_ATimplementation] = ACTIONS(1371), + [anon_sym_ATimplementation] = ACTIONS(1367), + [anon_sym_NS_ENUM] = ACTIONS(1369), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1369), + [anon_sym_NS_OPTIONS] = ACTIONS(1369), [anon_sym_typeof] = ACTIONS(1369), [anon_sym___typeof] = ACTIONS(1369), [anon_sym___typeof__] = ACTIONS(1369), @@ -88239,559 +83135,1267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1369), [sym_BOOL] = ACTIONS(1369), [sym_auto] = ACTIONS(1369), - [anon_sym_ATautoreleasepool] = ACTIONS(1371), - [anon_sym_ATsynchronized] = ACTIONS(1371), - [anon_sym_ATtry] = ACTIONS(1371), - [anon_sym_ATcatch] = ACTIONS(1371), - [anon_sym_ATfinally] = ACTIONS(1371), - [anon_sym_ATthrow] = ACTIONS(1371), - [anon_sym_ATselector] = ACTIONS(1371), - [anon_sym_ATencode] = ACTIONS(1371), + [anon_sym_ATautoreleasepool] = ACTIONS(1367), + [anon_sym_ATsynchronized] = ACTIONS(1367), + [anon_sym_ATtry] = ACTIONS(1367), + [anon_sym_ATcatch] = ACTIONS(1367), + [anon_sym_ATfinally] = ACTIONS(1367), + [anon_sym_ATthrow] = ACTIONS(1367), + [anon_sym_ATselector] = ACTIONS(1367), + [anon_sym_ATencode] = ACTIONS(1367), [anon_sym_AT] = ACTIONS(1369), [sym_YES] = ACTIONS(1369), [sym_NO] = ACTIONS(1369), [anon_sym___builtin_available] = ACTIONS(1369), - [anon_sym_ATavailable] = ACTIONS(1371), + [anon_sym_ATavailable] = ACTIONS(1367), [anon_sym_va_arg] = ACTIONS(1369), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [355] = { - [ts_builtin_sym_end] = ACTIONS(1639), - [sym_identifier] = ACTIONS(1637), - [aux_sym_preproc_include_token1] = ACTIONS(1639), - [aux_sym_preproc_def_token1] = ACTIONS(1639), - [anon_sym_RPAREN] = ACTIONS(1639), - [aux_sym_preproc_if_token1] = ACTIONS(1637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1637), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_typedef] = ACTIONS(1637), - [anon_sym_extern] = ACTIONS(1637), - [anon_sym___attribute] = ACTIONS(1637), - [anon_sym___attribute__] = ACTIONS(1637), - [anon_sym___declspec] = ACTIONS(1637), - [anon_sym___cdecl] = ACTIONS(1637), - [anon_sym___clrcall] = ACTIONS(1637), - [anon_sym___stdcall] = ACTIONS(1637), - [anon_sym___fastcall] = ACTIONS(1637), - [anon_sym___thiscall] = ACTIONS(1637), - [anon_sym___vectorcall] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1639), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_auto] = ACTIONS(1637), - [anon_sym_register] = ACTIONS(1637), - [anon_sym_inline] = ACTIONS(1637), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [anon_sym_volatile] = ACTIONS(1637), - [anon_sym_restrict] = ACTIONS(1637), - [anon_sym__Atomic] = ACTIONS(1637), - [anon_sym_in] = ACTIONS(1637), - [anon_sym_out] = ACTIONS(1637), - [anon_sym_inout] = ACTIONS(1637), - [anon_sym_bycopy] = ACTIONS(1637), - [anon_sym_byref] = ACTIONS(1637), - [anon_sym_oneway] = ACTIONS(1637), - [anon_sym__Nullable] = ACTIONS(1637), - [anon_sym__Nonnull] = ACTIONS(1637), - [anon_sym__Nullable_result] = ACTIONS(1637), - [anon_sym__Null_unspecified] = ACTIONS(1637), - [anon_sym___autoreleasing] = ACTIONS(1637), - [anon_sym___nullable] = ACTIONS(1637), - [anon_sym___nonnull] = ACTIONS(1637), - [anon_sym___strong] = ACTIONS(1637), - [anon_sym___weak] = ACTIONS(1637), - [anon_sym___bridge] = ACTIONS(1637), - [anon_sym___bridge_transfer] = ACTIONS(1637), - [anon_sym___bridge_retained] = ACTIONS(1637), - [anon_sym___unsafe_unretained] = ACTIONS(1637), - [anon_sym___block] = ACTIONS(1637), - [anon_sym___kindof] = ACTIONS(1637), - [anon_sym___unused] = ACTIONS(1637), - [anon_sym__Complex] = ACTIONS(1637), - [anon_sym___complex] = ACTIONS(1637), - [anon_sym_IBOutlet] = ACTIONS(1637), - [anon_sym_IBInspectable] = ACTIONS(1637), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1637), - [anon_sym_signed] = ACTIONS(1637), - [anon_sym_unsigned] = ACTIONS(1637), - [anon_sym_long] = ACTIONS(1637), - [anon_sym_short] = ACTIONS(1637), - [sym_primitive_type] = ACTIONS(1637), - [anon_sym_enum] = ACTIONS(1637), - [anon_sym_NS_ENUM] = ACTIONS(1637), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1637), - [anon_sym_NS_OPTIONS] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(1637), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_else] = ACTIONS(1637), - [anon_sym_switch] = ACTIONS(1637), - [anon_sym_case] = ACTIONS(1637), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_goto] = ACTIONS(1637), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_sizeof] = ACTIONS(1637), - [sym_number_literal] = ACTIONS(1639), - [anon_sym_L_SQUOTE] = ACTIONS(1639), - [anon_sym_u_SQUOTE] = ACTIONS(1639), - [anon_sym_U_SQUOTE] = ACTIONS(1639), - [anon_sym_u8_SQUOTE] = ACTIONS(1639), - [anon_sym_SQUOTE] = ACTIONS(1639), - [anon_sym_L_DQUOTE] = ACTIONS(1639), - [anon_sym_u_DQUOTE] = ACTIONS(1639), - [anon_sym_U_DQUOTE] = ACTIONS(1639), - [anon_sym_u8_DQUOTE] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym_true] = ACTIONS(1637), - [sym_false] = ACTIONS(1637), - [sym_null] = ACTIONS(1637), + [326] = { + [sym_identifier] = ACTIONS(1365), + [aux_sym_preproc_include_token1] = ACTIONS(1363), + [aux_sym_preproc_def_token1] = ACTIONS(1363), + [aux_sym_preproc_if_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token2] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), + [aux_sym_preproc_else_token1] = ACTIONS(1365), + [aux_sym_preproc_elif_token1] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_typedef] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym___attribute] = ACTIONS(1365), + [anon_sym___attribute__] = ACTIONS(1365), + [anon_sym___declspec] = ACTIONS(1365), + [anon_sym___cdecl] = ACTIONS(1365), + [anon_sym___clrcall] = ACTIONS(1365), + [anon_sym___stdcall] = ACTIONS(1365), + [anon_sym___fastcall] = ACTIONS(1365), + [anon_sym___thiscall] = ACTIONS(1365), + [anon_sym___vectorcall] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1363), + [anon_sym_static] = ACTIONS(1365), + [anon_sym_auto] = ACTIONS(1365), + [anon_sym_register] = ACTIONS(1365), + [anon_sym_inline] = ACTIONS(1365), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_volatile] = ACTIONS(1365), + [anon_sym_restrict] = ACTIONS(1365), + [anon_sym__Atomic] = ACTIONS(1365), + [anon_sym_in] = ACTIONS(1365), + [anon_sym_out] = ACTIONS(1365), + [anon_sym_inout] = ACTIONS(1365), + [anon_sym_bycopy] = ACTIONS(1365), + [anon_sym_byref] = ACTIONS(1365), + [anon_sym_oneway] = ACTIONS(1365), + [anon_sym__Nullable] = ACTIONS(1365), + [anon_sym__Nonnull] = ACTIONS(1365), + [anon_sym__Nullable_result] = ACTIONS(1365), + [anon_sym__Null_unspecified] = ACTIONS(1365), + [anon_sym___autoreleasing] = ACTIONS(1365), + [anon_sym___nullable] = ACTIONS(1365), + [anon_sym___nonnull] = ACTIONS(1365), + [anon_sym___strong] = ACTIONS(1365), + [anon_sym___weak] = ACTIONS(1365), + [anon_sym___bridge] = ACTIONS(1365), + [anon_sym___bridge_transfer] = ACTIONS(1365), + [anon_sym___bridge_retained] = ACTIONS(1365), + [anon_sym___unsafe_unretained] = ACTIONS(1365), + [anon_sym___block] = ACTIONS(1365), + [anon_sym___kindof] = ACTIONS(1365), + [anon_sym___unused] = ACTIONS(1365), + [anon_sym__Complex] = ACTIONS(1365), + [anon_sym___complex] = ACTIONS(1365), + [anon_sym_IBOutlet] = ACTIONS(1365), + [anon_sym_IBInspectable] = ACTIONS(1365), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1365), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), + [sym_primitive_type] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_else] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_case] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_do] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_goto] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1363), + [anon_sym_PLUS_PLUS] = ACTIONS(1363), + [anon_sym_sizeof] = ACTIONS(1365), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_L_SQUOTE] = ACTIONS(1363), + [anon_sym_u_SQUOTE] = ACTIONS(1363), + [anon_sym_U_SQUOTE] = ACTIONS(1363), + [anon_sym_u8_SQUOTE] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_L_DQUOTE] = ACTIONS(1363), + [anon_sym_u_DQUOTE] = ACTIONS(1363), + [anon_sym_U_DQUOTE] = ACTIONS(1363), + [anon_sym_u8_DQUOTE] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(1363), + [sym_true] = ACTIONS(1365), + [sym_false] = ACTIONS(1365), + [sym_null] = ACTIONS(1365), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1639), - [anon_sym_ATimport] = ACTIONS(1639), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1637), - [anon_sym_ATcompatibility_alias] = ACTIONS(1639), - [anon_sym_ATprotocol] = ACTIONS(1639), - [anon_sym_ATclass] = ACTIONS(1639), - [anon_sym_ATinterface] = ACTIONS(1639), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1637), - [sym_method_attribute_specifier] = ACTIONS(1637), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1637), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1637), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1637), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1637), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1637), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1637), - [anon_sym_NS_AVAILABLE] = ACTIONS(1637), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1637), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1637), - [anon_sym_API_AVAILABLE] = ACTIONS(1637), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1637), - [anon_sym_API_DEPRECATED] = ACTIONS(1637), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1637), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1637), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1637), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1637), - [anon_sym___deprecated_msg] = ACTIONS(1637), - [anon_sym___deprecated_enum_msg] = ACTIONS(1637), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1637), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1637), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1637), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1637), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1637), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1637), - [anon_sym_ATimplementation] = ACTIONS(1639), - [anon_sym_typeof] = ACTIONS(1637), - [anon_sym___typeof] = ACTIONS(1637), - [anon_sym___typeof__] = ACTIONS(1637), - [sym_self] = ACTIONS(1637), - [sym_super] = ACTIONS(1637), - [sym_nil] = ACTIONS(1637), - [sym_id] = ACTIONS(1637), - [sym_instancetype] = ACTIONS(1637), - [sym_Class] = ACTIONS(1637), - [sym_SEL] = ACTIONS(1637), - [sym_IMP] = ACTIONS(1637), - [sym_BOOL] = ACTIONS(1637), - [sym_auto] = ACTIONS(1637), - [anon_sym_ATautoreleasepool] = ACTIONS(1639), - [anon_sym_ATsynchronized] = ACTIONS(1639), - [anon_sym_ATtry] = ACTIONS(1639), - [anon_sym_ATcatch] = ACTIONS(1639), - [anon_sym_ATfinally] = ACTIONS(1639), - [anon_sym_ATthrow] = ACTIONS(1639), - [anon_sym_ATselector] = ACTIONS(1639), - [anon_sym_ATencode] = ACTIONS(1639), - [anon_sym_AT] = ACTIONS(1637), - [sym_YES] = ACTIONS(1637), - [sym_NO] = ACTIONS(1637), - [anon_sym___builtin_available] = ACTIONS(1637), - [anon_sym_ATavailable] = ACTIONS(1639), - [anon_sym_va_arg] = ACTIONS(1637), + [anon_sym_POUNDimport] = ACTIONS(1363), + [anon_sym_ATimport] = ACTIONS(1363), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1365), + [anon_sym_ATcompatibility_alias] = ACTIONS(1363), + [anon_sym_ATprotocol] = ACTIONS(1363), + [anon_sym_ATclass] = ACTIONS(1363), + [anon_sym_ATinterface] = ACTIONS(1363), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1365), + [sym_method_attribute_specifier] = ACTIONS(1365), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1365), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1365), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1365), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1365), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1365), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1365), + [anon_sym_NS_AVAILABLE] = ACTIONS(1365), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1365), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1365), + [anon_sym_API_AVAILABLE] = ACTIONS(1365), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1365), + [anon_sym_API_DEPRECATED] = ACTIONS(1365), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1365), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1365), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1365), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1365), + [anon_sym___deprecated_msg] = ACTIONS(1365), + [anon_sym___deprecated_enum_msg] = ACTIONS(1365), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1365), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1365), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1365), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1365), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1365), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1365), + [anon_sym_ATimplementation] = ACTIONS(1363), + [anon_sym_NS_ENUM] = ACTIONS(1365), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1365), + [anon_sym_NS_OPTIONS] = ACTIONS(1365), + [anon_sym_typeof] = ACTIONS(1365), + [anon_sym___typeof] = ACTIONS(1365), + [anon_sym___typeof__] = ACTIONS(1365), + [sym_self] = ACTIONS(1365), + [sym_super] = ACTIONS(1365), + [sym_nil] = ACTIONS(1365), + [sym_id] = ACTIONS(1365), + [sym_instancetype] = ACTIONS(1365), + [sym_Class] = ACTIONS(1365), + [sym_SEL] = ACTIONS(1365), + [sym_IMP] = ACTIONS(1365), + [sym_BOOL] = ACTIONS(1365), + [sym_auto] = ACTIONS(1365), + [anon_sym_ATautoreleasepool] = ACTIONS(1363), + [anon_sym_ATsynchronized] = ACTIONS(1363), + [anon_sym_ATtry] = ACTIONS(1363), + [anon_sym_ATcatch] = ACTIONS(1363), + [anon_sym_ATfinally] = ACTIONS(1363), + [anon_sym_ATthrow] = ACTIONS(1363), + [anon_sym_ATselector] = ACTIONS(1363), + [anon_sym_ATencode] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), + [sym_YES] = ACTIONS(1365), + [sym_NO] = ACTIONS(1365), + [anon_sym___builtin_available] = ACTIONS(1365), + [anon_sym_ATavailable] = ACTIONS(1363), + [anon_sym_va_arg] = ACTIONS(1365), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [356] = { - [ts_builtin_sym_end] = ACTIONS(1279), - [sym_identifier] = ACTIONS(1277), - [aux_sym_preproc_include_token1] = ACTIONS(1279), - [aux_sym_preproc_def_token1] = ACTIONS(1279), - [anon_sym_RPAREN] = ACTIONS(1279), - [aux_sym_preproc_if_token1] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1277), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1277), - [anon_sym_STAR] = ACTIONS(1279), - [anon_sym_CARET] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_typedef] = ACTIONS(1277), - [anon_sym_extern] = ACTIONS(1277), - [anon_sym___attribute] = ACTIONS(1277), - [anon_sym___attribute__] = ACTIONS(1277), - [anon_sym___declspec] = ACTIONS(1277), - [anon_sym___cdecl] = ACTIONS(1277), - [anon_sym___clrcall] = ACTIONS(1277), - [anon_sym___stdcall] = ACTIONS(1277), - [anon_sym___fastcall] = ACTIONS(1277), - [anon_sym___thiscall] = ACTIONS(1277), - [anon_sym___vectorcall] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_RBRACE] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(1279), - [anon_sym_static] = ACTIONS(1277), - [anon_sym_auto] = ACTIONS(1277), - [anon_sym_register] = ACTIONS(1277), - [anon_sym_inline] = ACTIONS(1277), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1277), - [anon_sym_const] = ACTIONS(1277), - [anon_sym_volatile] = ACTIONS(1277), - [anon_sym_restrict] = ACTIONS(1277), - [anon_sym__Atomic] = ACTIONS(1277), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), - [anon_sym_inout] = ACTIONS(1277), - [anon_sym_bycopy] = ACTIONS(1277), - [anon_sym_byref] = ACTIONS(1277), - [anon_sym_oneway] = ACTIONS(1277), - [anon_sym__Nullable] = ACTIONS(1277), - [anon_sym__Nonnull] = ACTIONS(1277), - [anon_sym__Nullable_result] = ACTIONS(1277), - [anon_sym__Null_unspecified] = ACTIONS(1277), - [anon_sym___autoreleasing] = ACTIONS(1277), - [anon_sym___nullable] = ACTIONS(1277), - [anon_sym___nonnull] = ACTIONS(1277), - [anon_sym___strong] = ACTIONS(1277), - [anon_sym___weak] = ACTIONS(1277), - [anon_sym___bridge] = ACTIONS(1277), - [anon_sym___bridge_transfer] = ACTIONS(1277), - [anon_sym___bridge_retained] = ACTIONS(1277), - [anon_sym___unsafe_unretained] = ACTIONS(1277), - [anon_sym___block] = ACTIONS(1277), - [anon_sym___kindof] = ACTIONS(1277), - [anon_sym___unused] = ACTIONS(1277), - [anon_sym__Complex] = ACTIONS(1277), - [anon_sym___complex] = ACTIONS(1277), - [anon_sym_IBOutlet] = ACTIONS(1277), - [anon_sym_IBInspectable] = ACTIONS(1277), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1277), - [anon_sym_signed] = ACTIONS(1277), - [anon_sym_unsigned] = ACTIONS(1277), - [anon_sym_long] = ACTIONS(1277), - [anon_sym_short] = ACTIONS(1277), - [sym_primitive_type] = ACTIONS(1277), - [anon_sym_enum] = ACTIONS(1277), - [anon_sym_NS_ENUM] = ACTIONS(1277), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1277), - [anon_sym_NS_OPTIONS] = ACTIONS(1277), - [anon_sym_struct] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1277), - [anon_sym_else] = ACTIONS(1277), - [anon_sym_switch] = ACTIONS(1277), - [anon_sym_case] = ACTIONS(1277), - [anon_sym_default] = ACTIONS(1277), - [anon_sym_while] = ACTIONS(1277), - [anon_sym_do] = ACTIONS(1277), - [anon_sym_for] = ACTIONS(1277), - [anon_sym_return] = ACTIONS(1277), - [anon_sym_break] = ACTIONS(1277), - [anon_sym_continue] = ACTIONS(1277), - [anon_sym_goto] = ACTIONS(1277), - [anon_sym_DASH_DASH] = ACTIONS(1279), - [anon_sym_PLUS_PLUS] = ACTIONS(1279), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_number_literal] = ACTIONS(1279), - [anon_sym_L_SQUOTE] = ACTIONS(1279), - [anon_sym_u_SQUOTE] = ACTIONS(1279), - [anon_sym_U_SQUOTE] = ACTIONS(1279), - [anon_sym_u8_SQUOTE] = ACTIONS(1279), - [anon_sym_SQUOTE] = ACTIONS(1279), - [anon_sym_L_DQUOTE] = ACTIONS(1279), - [anon_sym_u_DQUOTE] = ACTIONS(1279), - [anon_sym_U_DQUOTE] = ACTIONS(1279), - [anon_sym_u8_DQUOTE] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [sym_true] = ACTIONS(1277), - [sym_false] = ACTIONS(1277), - [sym_null] = ACTIONS(1277), + [327] = { + [sym_identifier] = ACTIONS(1357), + [aux_sym_preproc_include_token1] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1355), + [aux_sym_preproc_if_token1] = ACTIONS(1357), + [aux_sym_preproc_if_token2] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), + [aux_sym_preproc_else_token1] = ACTIONS(1357), + [aux_sym_preproc_elif_token1] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_CARET] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_typedef] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym___attribute] = ACTIONS(1357), + [anon_sym___attribute__] = ACTIONS(1357), + [anon_sym___declspec] = ACTIONS(1357), + [anon_sym___cdecl] = ACTIONS(1357), + [anon_sym___clrcall] = ACTIONS(1357), + [anon_sym___stdcall] = ACTIONS(1357), + [anon_sym___fastcall] = ACTIONS(1357), + [anon_sym___thiscall] = ACTIONS(1357), + [anon_sym___vectorcall] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_auto] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_inline] = ACTIONS(1357), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_volatile] = ACTIONS(1357), + [anon_sym_restrict] = ACTIONS(1357), + [anon_sym__Atomic] = ACTIONS(1357), + [anon_sym_in] = ACTIONS(1357), + [anon_sym_out] = ACTIONS(1357), + [anon_sym_inout] = ACTIONS(1357), + [anon_sym_bycopy] = ACTIONS(1357), + [anon_sym_byref] = ACTIONS(1357), + [anon_sym_oneway] = ACTIONS(1357), + [anon_sym__Nullable] = ACTIONS(1357), + [anon_sym__Nonnull] = ACTIONS(1357), + [anon_sym__Nullable_result] = ACTIONS(1357), + [anon_sym__Null_unspecified] = ACTIONS(1357), + [anon_sym___autoreleasing] = ACTIONS(1357), + [anon_sym___nullable] = ACTIONS(1357), + [anon_sym___nonnull] = ACTIONS(1357), + [anon_sym___strong] = ACTIONS(1357), + [anon_sym___weak] = ACTIONS(1357), + [anon_sym___bridge] = ACTIONS(1357), + [anon_sym___bridge_transfer] = ACTIONS(1357), + [anon_sym___bridge_retained] = ACTIONS(1357), + [anon_sym___unsafe_unretained] = ACTIONS(1357), + [anon_sym___block] = ACTIONS(1357), + [anon_sym___kindof] = ACTIONS(1357), + [anon_sym___unused] = ACTIONS(1357), + [anon_sym__Complex] = ACTIONS(1357), + [anon_sym___complex] = ACTIONS(1357), + [anon_sym_IBOutlet] = ACTIONS(1357), + [anon_sym_IBInspectable] = ACTIONS(1357), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1357), + [anon_sym_signed] = ACTIONS(1357), + [anon_sym_unsigned] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [sym_primitive_type] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_case] = ACTIONS(1357), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_goto] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_sizeof] = ACTIONS(1357), + [sym_number_literal] = ACTIONS(1355), + [anon_sym_L_SQUOTE] = ACTIONS(1355), + [anon_sym_u_SQUOTE] = ACTIONS(1355), + [anon_sym_U_SQUOTE] = ACTIONS(1355), + [anon_sym_u8_SQUOTE] = ACTIONS(1355), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_L_DQUOTE] = ACTIONS(1355), + [anon_sym_u_DQUOTE] = ACTIONS(1355), + [anon_sym_U_DQUOTE] = ACTIONS(1355), + [anon_sym_u8_DQUOTE] = ACTIONS(1355), + [anon_sym_DQUOTE] = ACTIONS(1355), + [sym_true] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [sym_null] = ACTIONS(1357), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1279), - [anon_sym_ATimport] = ACTIONS(1279), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1277), - [anon_sym_ATcompatibility_alias] = ACTIONS(1279), - [anon_sym_ATprotocol] = ACTIONS(1279), - [anon_sym_ATclass] = ACTIONS(1279), - [anon_sym_ATinterface] = ACTIONS(1279), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1277), - [sym_method_attribute_specifier] = ACTIONS(1277), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1277), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1277), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1277), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1277), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1277), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1277), - [anon_sym_NS_AVAILABLE] = ACTIONS(1277), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1277), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1277), - [anon_sym_API_AVAILABLE] = ACTIONS(1277), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1277), - [anon_sym_API_DEPRECATED] = ACTIONS(1277), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1277), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1277), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1277), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1277), - [anon_sym___deprecated_msg] = ACTIONS(1277), - [anon_sym___deprecated_enum_msg] = ACTIONS(1277), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1277), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1277), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1277), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1277), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1277), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1277), - [anon_sym_ATimplementation] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___typeof] = ACTIONS(1277), - [anon_sym___typeof__] = ACTIONS(1277), - [sym_self] = ACTIONS(1277), - [sym_super] = ACTIONS(1277), - [sym_nil] = ACTIONS(1277), - [sym_id] = ACTIONS(1277), - [sym_instancetype] = ACTIONS(1277), - [sym_Class] = ACTIONS(1277), - [sym_SEL] = ACTIONS(1277), - [sym_IMP] = ACTIONS(1277), - [sym_BOOL] = ACTIONS(1277), - [sym_auto] = ACTIONS(1277), - [anon_sym_ATautoreleasepool] = ACTIONS(1279), - [anon_sym_ATsynchronized] = ACTIONS(1279), - [anon_sym_ATtry] = ACTIONS(1279), - [anon_sym_ATcatch] = ACTIONS(1279), - [anon_sym_ATfinally] = ACTIONS(1279), - [anon_sym_ATthrow] = ACTIONS(1279), - [anon_sym_ATselector] = ACTIONS(1279), - [anon_sym_ATencode] = ACTIONS(1279), - [anon_sym_AT] = ACTIONS(1277), - [sym_YES] = ACTIONS(1277), - [sym_NO] = ACTIONS(1277), - [anon_sym___builtin_available] = ACTIONS(1277), - [anon_sym_ATavailable] = ACTIONS(1279), - [anon_sym_va_arg] = ACTIONS(1277), + [anon_sym_POUNDimport] = ACTIONS(1355), + [anon_sym_ATimport] = ACTIONS(1355), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1357), + [anon_sym_ATcompatibility_alias] = ACTIONS(1355), + [anon_sym_ATprotocol] = ACTIONS(1355), + [anon_sym_ATclass] = ACTIONS(1355), + [anon_sym_ATinterface] = ACTIONS(1355), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1357), + [sym_method_attribute_specifier] = ACTIONS(1357), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1357), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1357), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1357), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1357), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1357), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1357), + [anon_sym_NS_AVAILABLE] = ACTIONS(1357), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1357), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1357), + [anon_sym_API_AVAILABLE] = ACTIONS(1357), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1357), + [anon_sym_API_DEPRECATED] = ACTIONS(1357), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1357), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1357), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1357), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1357), + [anon_sym___deprecated_msg] = ACTIONS(1357), + [anon_sym___deprecated_enum_msg] = ACTIONS(1357), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1357), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1357), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1357), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1357), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1357), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1357), + [anon_sym_ATimplementation] = ACTIONS(1355), + [anon_sym_NS_ENUM] = ACTIONS(1357), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1357), + [anon_sym_NS_OPTIONS] = ACTIONS(1357), + [anon_sym_typeof] = ACTIONS(1357), + [anon_sym___typeof] = ACTIONS(1357), + [anon_sym___typeof__] = ACTIONS(1357), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1357), + [sym_nil] = ACTIONS(1357), + [sym_id] = ACTIONS(1357), + [sym_instancetype] = ACTIONS(1357), + [sym_Class] = ACTIONS(1357), + [sym_SEL] = ACTIONS(1357), + [sym_IMP] = ACTIONS(1357), + [sym_BOOL] = ACTIONS(1357), + [sym_auto] = ACTIONS(1357), + [anon_sym_ATautoreleasepool] = ACTIONS(1355), + [anon_sym_ATsynchronized] = ACTIONS(1355), + [anon_sym_ATtry] = ACTIONS(1355), + [anon_sym_ATcatch] = ACTIONS(1355), + [anon_sym_ATfinally] = ACTIONS(1355), + [anon_sym_ATthrow] = ACTIONS(1355), + [anon_sym_ATselector] = ACTIONS(1355), + [anon_sym_ATencode] = ACTIONS(1355), + [anon_sym_AT] = ACTIONS(1357), + [sym_YES] = ACTIONS(1357), + [sym_NO] = ACTIONS(1357), + [anon_sym___builtin_available] = ACTIONS(1357), + [anon_sym_ATavailable] = ACTIONS(1355), + [anon_sym_va_arg] = ACTIONS(1357), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [357] = { - [ts_builtin_sym_end] = ACTIONS(1283), - [sym_identifier] = ACTIONS(1281), - [aux_sym_preproc_include_token1] = ACTIONS(1283), - [aux_sym_preproc_def_token1] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1283), - [aux_sym_preproc_if_token1] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1281), - [anon_sym_LPAREN2] = ACTIONS(1283), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_typedef] = ACTIONS(1281), - [anon_sym_extern] = ACTIONS(1281), - [anon_sym___attribute] = ACTIONS(1281), - [anon_sym___attribute__] = ACTIONS(1281), - [anon_sym___declspec] = ACTIONS(1281), - [anon_sym___cdecl] = ACTIONS(1281), - [anon_sym___clrcall] = ACTIONS(1281), - [anon_sym___stdcall] = ACTIONS(1281), - [anon_sym___fastcall] = ACTIONS(1281), - [anon_sym___thiscall] = ACTIONS(1281), - [anon_sym___vectorcall] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_RBRACE] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_static] = ACTIONS(1281), - [anon_sym_auto] = ACTIONS(1281), - [anon_sym_register] = ACTIONS(1281), - [anon_sym_inline] = ACTIONS(1281), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1281), - [anon_sym_const] = ACTIONS(1281), - [anon_sym_volatile] = ACTIONS(1281), - [anon_sym_restrict] = ACTIONS(1281), - [anon_sym__Atomic] = ACTIONS(1281), - [anon_sym_in] = ACTIONS(1281), - [anon_sym_out] = ACTIONS(1281), - [anon_sym_inout] = ACTIONS(1281), - [anon_sym_bycopy] = ACTIONS(1281), - [anon_sym_byref] = ACTIONS(1281), - [anon_sym_oneway] = ACTIONS(1281), - [anon_sym__Nullable] = ACTIONS(1281), - [anon_sym__Nonnull] = ACTIONS(1281), - [anon_sym__Nullable_result] = ACTIONS(1281), - [anon_sym__Null_unspecified] = ACTIONS(1281), - [anon_sym___autoreleasing] = ACTIONS(1281), - [anon_sym___nullable] = ACTIONS(1281), - [anon_sym___nonnull] = ACTIONS(1281), - [anon_sym___strong] = ACTIONS(1281), - [anon_sym___weak] = ACTIONS(1281), - [anon_sym___bridge] = ACTIONS(1281), - [anon_sym___bridge_transfer] = ACTIONS(1281), - [anon_sym___bridge_retained] = ACTIONS(1281), - [anon_sym___unsafe_unretained] = ACTIONS(1281), - [anon_sym___block] = ACTIONS(1281), - [anon_sym___kindof] = ACTIONS(1281), - [anon_sym___unused] = ACTIONS(1281), - [anon_sym__Complex] = ACTIONS(1281), - [anon_sym___complex] = ACTIONS(1281), - [anon_sym_IBOutlet] = ACTIONS(1281), - [anon_sym_IBInspectable] = ACTIONS(1281), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1281), - [anon_sym_signed] = ACTIONS(1281), - [anon_sym_unsigned] = ACTIONS(1281), - [anon_sym_long] = ACTIONS(1281), - [anon_sym_short] = ACTIONS(1281), - [sym_primitive_type] = ACTIONS(1281), - [anon_sym_enum] = ACTIONS(1281), - [anon_sym_NS_ENUM] = ACTIONS(1281), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1281), - [anon_sym_NS_OPTIONS] = ACTIONS(1281), - [anon_sym_struct] = ACTIONS(1281), - [anon_sym_union] = ACTIONS(1281), - [anon_sym_if] = ACTIONS(1281), - [anon_sym_else] = ACTIONS(1281), - [anon_sym_switch] = ACTIONS(1281), - [anon_sym_case] = ACTIONS(1281), - [anon_sym_default] = ACTIONS(1281), - [anon_sym_while] = ACTIONS(1281), - [anon_sym_do] = ACTIONS(1281), - [anon_sym_for] = ACTIONS(1281), - [anon_sym_return] = ACTIONS(1281), - [anon_sym_break] = ACTIONS(1281), - [anon_sym_continue] = ACTIONS(1281), - [anon_sym_goto] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_sizeof] = ACTIONS(1281), - [sym_number_literal] = ACTIONS(1283), - [anon_sym_L_SQUOTE] = ACTIONS(1283), - [anon_sym_u_SQUOTE] = ACTIONS(1283), - [anon_sym_U_SQUOTE] = ACTIONS(1283), - [anon_sym_u8_SQUOTE] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1283), - [anon_sym_L_DQUOTE] = ACTIONS(1283), - [anon_sym_u_DQUOTE] = ACTIONS(1283), - [anon_sym_U_DQUOTE] = ACTIONS(1283), - [anon_sym_u8_DQUOTE] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1283), - [sym_true] = ACTIONS(1281), - [sym_false] = ACTIONS(1281), - [sym_null] = ACTIONS(1281), + [328] = { + [sym_identifier] = ACTIONS(1353), + [aux_sym_preproc_include_token1] = ACTIONS(1351), + [aux_sym_preproc_def_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token1] = ACTIONS(1353), + [aux_sym_preproc_if_token2] = ACTIONS(1353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1353), + [aux_sym_preproc_else_token1] = ACTIONS(1353), + [aux_sym_preproc_elif_token1] = ACTIONS(1353), + [anon_sym_LPAREN2] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_typedef] = ACTIONS(1353), + [anon_sym_extern] = ACTIONS(1353), + [anon_sym___attribute] = ACTIONS(1353), + [anon_sym___attribute__] = ACTIONS(1353), + [anon_sym___declspec] = ACTIONS(1353), + [anon_sym___cdecl] = ACTIONS(1353), + [anon_sym___clrcall] = ACTIONS(1353), + [anon_sym___stdcall] = ACTIONS(1353), + [anon_sym___fastcall] = ACTIONS(1353), + [anon_sym___thiscall] = ACTIONS(1353), + [anon_sym___vectorcall] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_auto] = ACTIONS(1353), + [anon_sym_register] = ACTIONS(1353), + [anon_sym_inline] = ACTIONS(1353), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1353), + [anon_sym_volatile] = ACTIONS(1353), + [anon_sym_restrict] = ACTIONS(1353), + [anon_sym__Atomic] = ACTIONS(1353), + [anon_sym_in] = ACTIONS(1353), + [anon_sym_out] = ACTIONS(1353), + [anon_sym_inout] = ACTIONS(1353), + [anon_sym_bycopy] = ACTIONS(1353), + [anon_sym_byref] = ACTIONS(1353), + [anon_sym_oneway] = ACTIONS(1353), + [anon_sym__Nullable] = ACTIONS(1353), + [anon_sym__Nonnull] = ACTIONS(1353), + [anon_sym__Nullable_result] = ACTIONS(1353), + [anon_sym__Null_unspecified] = ACTIONS(1353), + [anon_sym___autoreleasing] = ACTIONS(1353), + [anon_sym___nullable] = ACTIONS(1353), + [anon_sym___nonnull] = ACTIONS(1353), + [anon_sym___strong] = ACTIONS(1353), + [anon_sym___weak] = ACTIONS(1353), + [anon_sym___bridge] = ACTIONS(1353), + [anon_sym___bridge_transfer] = ACTIONS(1353), + [anon_sym___bridge_retained] = ACTIONS(1353), + [anon_sym___unsafe_unretained] = ACTIONS(1353), + [anon_sym___block] = ACTIONS(1353), + [anon_sym___kindof] = ACTIONS(1353), + [anon_sym___unused] = ACTIONS(1353), + [anon_sym__Complex] = ACTIONS(1353), + [anon_sym___complex] = ACTIONS(1353), + [anon_sym_IBOutlet] = ACTIONS(1353), + [anon_sym_IBInspectable] = ACTIONS(1353), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1353), + [anon_sym_signed] = ACTIONS(1353), + [anon_sym_unsigned] = ACTIONS(1353), + [anon_sym_long] = ACTIONS(1353), + [anon_sym_short] = ACTIONS(1353), + [sym_primitive_type] = ACTIONS(1353), + [anon_sym_enum] = ACTIONS(1353), + [anon_sym_struct] = ACTIONS(1353), + [anon_sym_union] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_else] = ACTIONS(1353), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_case] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_do] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1353), + [anon_sym_continue] = ACTIONS(1353), + [anon_sym_goto] = ACTIONS(1353), + [anon_sym_DASH_DASH] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(1351), + [anon_sym_sizeof] = ACTIONS(1353), + [sym_number_literal] = ACTIONS(1351), + [anon_sym_L_SQUOTE] = ACTIONS(1351), + [anon_sym_u_SQUOTE] = ACTIONS(1351), + [anon_sym_U_SQUOTE] = ACTIONS(1351), + [anon_sym_u8_SQUOTE] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_L_DQUOTE] = ACTIONS(1351), + [anon_sym_u_DQUOTE] = ACTIONS(1351), + [anon_sym_U_DQUOTE] = ACTIONS(1351), + [anon_sym_u8_DQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1351), + [sym_true] = ACTIONS(1353), + [sym_false] = ACTIONS(1353), + [sym_null] = ACTIONS(1353), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1283), - [anon_sym_ATimport] = ACTIONS(1283), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1281), - [anon_sym_ATcompatibility_alias] = ACTIONS(1283), - [anon_sym_ATprotocol] = ACTIONS(1283), - [anon_sym_ATclass] = ACTIONS(1283), - [anon_sym_ATinterface] = ACTIONS(1283), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1281), - [sym_method_attribute_specifier] = ACTIONS(1281), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1281), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1281), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1281), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1281), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1281), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1281), - [anon_sym_NS_AVAILABLE] = ACTIONS(1281), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1281), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1281), - [anon_sym_API_AVAILABLE] = ACTIONS(1281), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1281), - [anon_sym_API_DEPRECATED] = ACTIONS(1281), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1281), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1281), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1281), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1281), - [anon_sym___deprecated_msg] = ACTIONS(1281), - [anon_sym___deprecated_enum_msg] = ACTIONS(1281), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1281), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1281), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1281), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1281), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1281), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1281), - [anon_sym_ATimplementation] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___typeof] = ACTIONS(1281), - [anon_sym___typeof__] = ACTIONS(1281), - [sym_self] = ACTIONS(1281), - [sym_super] = ACTIONS(1281), - [sym_nil] = ACTIONS(1281), - [sym_id] = ACTIONS(1281), - [sym_instancetype] = ACTIONS(1281), - [sym_Class] = ACTIONS(1281), - [sym_SEL] = ACTIONS(1281), - [sym_IMP] = ACTIONS(1281), - [sym_BOOL] = ACTIONS(1281), - [sym_auto] = ACTIONS(1281), - [anon_sym_ATautoreleasepool] = ACTIONS(1283), - [anon_sym_ATsynchronized] = ACTIONS(1283), - [anon_sym_ATtry] = ACTIONS(1283), - [anon_sym_ATcatch] = ACTIONS(1283), - [anon_sym_ATfinally] = ACTIONS(1283), - [anon_sym_ATthrow] = ACTIONS(1283), - [anon_sym_ATselector] = ACTIONS(1283), - [anon_sym_ATencode] = ACTIONS(1283), - [anon_sym_AT] = ACTIONS(1281), - [sym_YES] = ACTIONS(1281), - [sym_NO] = ACTIONS(1281), - [anon_sym___builtin_available] = ACTIONS(1281), - [anon_sym_ATavailable] = ACTIONS(1283), - [anon_sym_va_arg] = ACTIONS(1281), + [anon_sym_POUNDimport] = ACTIONS(1351), + [anon_sym_ATimport] = ACTIONS(1351), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1353), + [anon_sym_ATcompatibility_alias] = ACTIONS(1351), + [anon_sym_ATprotocol] = ACTIONS(1351), + [anon_sym_ATclass] = ACTIONS(1351), + [anon_sym_ATinterface] = ACTIONS(1351), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1353), + [sym_method_attribute_specifier] = ACTIONS(1353), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1353), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1353), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1353), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1353), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1353), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1353), + [anon_sym_NS_AVAILABLE] = ACTIONS(1353), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1353), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1353), + [anon_sym_API_AVAILABLE] = ACTIONS(1353), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1353), + [anon_sym_API_DEPRECATED] = ACTIONS(1353), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1353), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1353), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1353), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1353), + [anon_sym___deprecated_msg] = ACTIONS(1353), + [anon_sym___deprecated_enum_msg] = ACTIONS(1353), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1353), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1353), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1353), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1353), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1353), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1353), + [anon_sym_ATimplementation] = ACTIONS(1351), + [anon_sym_NS_ENUM] = ACTIONS(1353), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1353), + [anon_sym_NS_OPTIONS] = ACTIONS(1353), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym___typeof] = ACTIONS(1353), + [anon_sym___typeof__] = ACTIONS(1353), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1353), + [sym_nil] = ACTIONS(1353), + [sym_id] = ACTIONS(1353), + [sym_instancetype] = ACTIONS(1353), + [sym_Class] = ACTIONS(1353), + [sym_SEL] = ACTIONS(1353), + [sym_IMP] = ACTIONS(1353), + [sym_BOOL] = ACTIONS(1353), + [sym_auto] = ACTIONS(1353), + [anon_sym_ATautoreleasepool] = ACTIONS(1351), + [anon_sym_ATsynchronized] = ACTIONS(1351), + [anon_sym_ATtry] = ACTIONS(1351), + [anon_sym_ATcatch] = ACTIONS(1351), + [anon_sym_ATfinally] = ACTIONS(1351), + [anon_sym_ATthrow] = ACTIONS(1351), + [anon_sym_ATselector] = ACTIONS(1351), + [anon_sym_ATencode] = ACTIONS(1351), + [anon_sym_AT] = ACTIONS(1353), + [sym_YES] = ACTIONS(1353), + [sym_NO] = ACTIONS(1353), + [anon_sym___builtin_available] = ACTIONS(1353), + [anon_sym_ATavailable] = ACTIONS(1351), + [anon_sym_va_arg] = ACTIONS(1353), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [358] = { + [329] = { + [sym_identifier] = ACTIONS(1349), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token1] = ACTIONS(1349), + [aux_sym_preproc_if_token2] = ACTIONS(1349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1349), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1349), + [aux_sym_preproc_else_token1] = ACTIONS(1349), + [aux_sym_preproc_elif_token1] = ACTIONS(1349), + [anon_sym_LPAREN2] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_typedef] = ACTIONS(1349), + [anon_sym_extern] = ACTIONS(1349), + [anon_sym___attribute] = ACTIONS(1349), + [anon_sym___attribute__] = ACTIONS(1349), + [anon_sym___declspec] = ACTIONS(1349), + [anon_sym___cdecl] = ACTIONS(1349), + [anon_sym___clrcall] = ACTIONS(1349), + [anon_sym___stdcall] = ACTIONS(1349), + [anon_sym___fastcall] = ACTIONS(1349), + [anon_sym___thiscall] = ACTIONS(1349), + [anon_sym___vectorcall] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1349), + [anon_sym_auto] = ACTIONS(1349), + [anon_sym_register] = ACTIONS(1349), + [anon_sym_inline] = ACTIONS(1349), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [anon_sym_volatile] = ACTIONS(1349), + [anon_sym_restrict] = ACTIONS(1349), + [anon_sym__Atomic] = ACTIONS(1349), + [anon_sym_in] = ACTIONS(1349), + [anon_sym_out] = ACTIONS(1349), + [anon_sym_inout] = ACTIONS(1349), + [anon_sym_bycopy] = ACTIONS(1349), + [anon_sym_byref] = ACTIONS(1349), + [anon_sym_oneway] = ACTIONS(1349), + [anon_sym__Nullable] = ACTIONS(1349), + [anon_sym__Nonnull] = ACTIONS(1349), + [anon_sym__Nullable_result] = ACTIONS(1349), + [anon_sym__Null_unspecified] = ACTIONS(1349), + [anon_sym___autoreleasing] = ACTIONS(1349), + [anon_sym___nullable] = ACTIONS(1349), + [anon_sym___nonnull] = ACTIONS(1349), + [anon_sym___strong] = ACTIONS(1349), + [anon_sym___weak] = ACTIONS(1349), + [anon_sym___bridge] = ACTIONS(1349), + [anon_sym___bridge_transfer] = ACTIONS(1349), + [anon_sym___bridge_retained] = ACTIONS(1349), + [anon_sym___unsafe_unretained] = ACTIONS(1349), + [anon_sym___block] = ACTIONS(1349), + [anon_sym___kindof] = ACTIONS(1349), + [anon_sym___unused] = ACTIONS(1349), + [anon_sym__Complex] = ACTIONS(1349), + [anon_sym___complex] = ACTIONS(1349), + [anon_sym_IBOutlet] = ACTIONS(1349), + [anon_sym_IBInspectable] = ACTIONS(1349), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1349), + [anon_sym_signed] = ACTIONS(1349), + [anon_sym_unsigned] = ACTIONS(1349), + [anon_sym_long] = ACTIONS(1349), + [anon_sym_short] = ACTIONS(1349), + [sym_primitive_type] = ACTIONS(1349), + [anon_sym_enum] = ACTIONS(1349), + [anon_sym_struct] = ACTIONS(1349), + [anon_sym_union] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_else] = ACTIONS(1349), + [anon_sym_switch] = ACTIONS(1349), + [anon_sym_case] = ACTIONS(1349), + [anon_sym_default] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_do] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_goto] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_sizeof] = ACTIONS(1349), + [sym_number_literal] = ACTIONS(1347), + [anon_sym_L_SQUOTE] = ACTIONS(1347), + [anon_sym_u_SQUOTE] = ACTIONS(1347), + [anon_sym_U_SQUOTE] = ACTIONS(1347), + [anon_sym_u8_SQUOTE] = ACTIONS(1347), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_L_DQUOTE] = ACTIONS(1347), + [anon_sym_u_DQUOTE] = ACTIONS(1347), + [anon_sym_U_DQUOTE] = ACTIONS(1347), + [anon_sym_u8_DQUOTE] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(1347), + [sym_true] = ACTIONS(1349), + [sym_false] = ACTIONS(1349), + [sym_null] = ACTIONS(1349), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1347), + [anon_sym_ATimport] = ACTIONS(1347), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1349), + [anon_sym_ATcompatibility_alias] = ACTIONS(1347), + [anon_sym_ATprotocol] = ACTIONS(1347), + [anon_sym_ATclass] = ACTIONS(1347), + [anon_sym_ATinterface] = ACTIONS(1347), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1349), + [sym_method_attribute_specifier] = ACTIONS(1349), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1349), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1349), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1349), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1349), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1349), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1349), + [anon_sym_NS_AVAILABLE] = ACTIONS(1349), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1349), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1349), + [anon_sym_API_AVAILABLE] = ACTIONS(1349), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1349), + [anon_sym_API_DEPRECATED] = ACTIONS(1349), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1349), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1349), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1349), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1349), + [anon_sym___deprecated_msg] = ACTIONS(1349), + [anon_sym___deprecated_enum_msg] = ACTIONS(1349), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1349), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1349), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1349), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1349), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1349), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1349), + [anon_sym_ATimplementation] = ACTIONS(1347), + [anon_sym_NS_ENUM] = ACTIONS(1349), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1349), + [anon_sym_NS_OPTIONS] = ACTIONS(1349), + [anon_sym_typeof] = ACTIONS(1349), + [anon_sym___typeof] = ACTIONS(1349), + [anon_sym___typeof__] = ACTIONS(1349), + [sym_self] = ACTIONS(1349), + [sym_super] = ACTIONS(1349), + [sym_nil] = ACTIONS(1349), + [sym_id] = ACTIONS(1349), + [sym_instancetype] = ACTIONS(1349), + [sym_Class] = ACTIONS(1349), + [sym_SEL] = ACTIONS(1349), + [sym_IMP] = ACTIONS(1349), + [sym_BOOL] = ACTIONS(1349), + [sym_auto] = ACTIONS(1349), + [anon_sym_ATautoreleasepool] = ACTIONS(1347), + [anon_sym_ATsynchronized] = ACTIONS(1347), + [anon_sym_ATtry] = ACTIONS(1347), + [anon_sym_ATcatch] = ACTIONS(1347), + [anon_sym_ATfinally] = ACTIONS(1347), + [anon_sym_ATthrow] = ACTIONS(1347), + [anon_sym_ATselector] = ACTIONS(1347), + [anon_sym_ATencode] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [sym_YES] = ACTIONS(1349), + [sym_NO] = ACTIONS(1349), + [anon_sym___builtin_available] = ACTIONS(1349), + [anon_sym_ATavailable] = ACTIONS(1347), + [anon_sym_va_arg] = ACTIONS(1349), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [330] = { + [sym_identifier] = ACTIONS(1345), + [aux_sym_preproc_include_token1] = ACTIONS(1343), + [aux_sym_preproc_def_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token2] = ACTIONS(1345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1345), + [aux_sym_preproc_else_token1] = ACTIONS(1345), + [aux_sym_preproc_elif_token1] = ACTIONS(1345), + [anon_sym_LPAREN2] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_typedef] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym___attribute] = ACTIONS(1345), + [anon_sym___attribute__] = ACTIONS(1345), + [anon_sym___declspec] = ACTIONS(1345), + [anon_sym___cdecl] = ACTIONS(1345), + [anon_sym___clrcall] = ACTIONS(1345), + [anon_sym___stdcall] = ACTIONS(1345), + [anon_sym___fastcall] = ACTIONS(1345), + [anon_sym___thiscall] = ACTIONS(1345), + [anon_sym___vectorcall] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1345), + [anon_sym_auto] = ACTIONS(1345), + [anon_sym_register] = ACTIONS(1345), + [anon_sym_inline] = ACTIONS(1345), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [anon_sym_volatile] = ACTIONS(1345), + [anon_sym_restrict] = ACTIONS(1345), + [anon_sym__Atomic] = ACTIONS(1345), + [anon_sym_in] = ACTIONS(1345), + [anon_sym_out] = ACTIONS(1345), + [anon_sym_inout] = ACTIONS(1345), + [anon_sym_bycopy] = ACTIONS(1345), + [anon_sym_byref] = ACTIONS(1345), + [anon_sym_oneway] = ACTIONS(1345), + [anon_sym__Nullable] = ACTIONS(1345), + [anon_sym__Nonnull] = ACTIONS(1345), + [anon_sym__Nullable_result] = ACTIONS(1345), + [anon_sym__Null_unspecified] = ACTIONS(1345), + [anon_sym___autoreleasing] = ACTIONS(1345), + [anon_sym___nullable] = ACTIONS(1345), + [anon_sym___nonnull] = ACTIONS(1345), + [anon_sym___strong] = ACTIONS(1345), + [anon_sym___weak] = ACTIONS(1345), + [anon_sym___bridge] = ACTIONS(1345), + [anon_sym___bridge_transfer] = ACTIONS(1345), + [anon_sym___bridge_retained] = ACTIONS(1345), + [anon_sym___unsafe_unretained] = ACTIONS(1345), + [anon_sym___block] = ACTIONS(1345), + [anon_sym___kindof] = ACTIONS(1345), + [anon_sym___unused] = ACTIONS(1345), + [anon_sym__Complex] = ACTIONS(1345), + [anon_sym___complex] = ACTIONS(1345), + [anon_sym_IBOutlet] = ACTIONS(1345), + [anon_sym_IBInspectable] = ACTIONS(1345), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1345), + [anon_sym_signed] = ACTIONS(1345), + [anon_sym_unsigned] = ACTIONS(1345), + [anon_sym_long] = ACTIONS(1345), + [anon_sym_short] = ACTIONS(1345), + [sym_primitive_type] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1345), + [anon_sym_struct] = ACTIONS(1345), + [anon_sym_union] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_switch] = ACTIONS(1345), + [anon_sym_case] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_goto] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_sizeof] = ACTIONS(1345), + [sym_number_literal] = ACTIONS(1343), + [anon_sym_L_SQUOTE] = ACTIONS(1343), + [anon_sym_u_SQUOTE] = ACTIONS(1343), + [anon_sym_U_SQUOTE] = ACTIONS(1343), + [anon_sym_u8_SQUOTE] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1343), + [anon_sym_L_DQUOTE] = ACTIONS(1343), + [anon_sym_u_DQUOTE] = ACTIONS(1343), + [anon_sym_U_DQUOTE] = ACTIONS(1343), + [anon_sym_u8_DQUOTE] = ACTIONS(1343), + [anon_sym_DQUOTE] = ACTIONS(1343), + [sym_true] = ACTIONS(1345), + [sym_false] = ACTIONS(1345), + [sym_null] = ACTIONS(1345), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1343), + [anon_sym_ATimport] = ACTIONS(1343), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1345), + [anon_sym_ATcompatibility_alias] = ACTIONS(1343), + [anon_sym_ATprotocol] = ACTIONS(1343), + [anon_sym_ATclass] = ACTIONS(1343), + [anon_sym_ATinterface] = ACTIONS(1343), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1345), + [sym_method_attribute_specifier] = ACTIONS(1345), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1345), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1345), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1345), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1345), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1345), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1345), + [anon_sym_NS_AVAILABLE] = ACTIONS(1345), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1345), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1345), + [anon_sym_API_AVAILABLE] = ACTIONS(1345), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1345), + [anon_sym_API_DEPRECATED] = ACTIONS(1345), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1345), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1345), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1345), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1345), + [anon_sym___deprecated_msg] = ACTIONS(1345), + [anon_sym___deprecated_enum_msg] = ACTIONS(1345), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1345), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1345), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1345), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1345), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1345), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1345), + [anon_sym_ATimplementation] = ACTIONS(1343), + [anon_sym_NS_ENUM] = ACTIONS(1345), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1345), + [anon_sym_NS_OPTIONS] = ACTIONS(1345), + [anon_sym_typeof] = ACTIONS(1345), + [anon_sym___typeof] = ACTIONS(1345), + [anon_sym___typeof__] = ACTIONS(1345), + [sym_self] = ACTIONS(1345), + [sym_super] = ACTIONS(1345), + [sym_nil] = ACTIONS(1345), + [sym_id] = ACTIONS(1345), + [sym_instancetype] = ACTIONS(1345), + [sym_Class] = ACTIONS(1345), + [sym_SEL] = ACTIONS(1345), + [sym_IMP] = ACTIONS(1345), + [sym_BOOL] = ACTIONS(1345), + [sym_auto] = ACTIONS(1345), + [anon_sym_ATautoreleasepool] = ACTIONS(1343), + [anon_sym_ATsynchronized] = ACTIONS(1343), + [anon_sym_ATtry] = ACTIONS(1343), + [anon_sym_ATcatch] = ACTIONS(1343), + [anon_sym_ATfinally] = ACTIONS(1343), + [anon_sym_ATthrow] = ACTIONS(1343), + [anon_sym_ATselector] = ACTIONS(1343), + [anon_sym_ATencode] = ACTIONS(1343), + [anon_sym_AT] = ACTIONS(1345), + [sym_YES] = ACTIONS(1345), + [sym_NO] = ACTIONS(1345), + [anon_sym___builtin_available] = ACTIONS(1345), + [anon_sym_ATavailable] = ACTIONS(1343), + [anon_sym_va_arg] = ACTIONS(1345), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [331] = { + [sym_identifier] = ACTIONS(1337), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token1] = ACTIONS(1337), + [aux_sym_preproc_if_token2] = ACTIONS(1337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1337), + [aux_sym_preproc_else_token1] = ACTIONS(1337), + [aux_sym_preproc_elif_token1] = ACTIONS(1337), + [anon_sym_LPAREN2] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym___attribute] = ACTIONS(1337), + [anon_sym___attribute__] = ACTIONS(1337), + [anon_sym___declspec] = ACTIONS(1337), + [anon_sym___cdecl] = ACTIONS(1337), + [anon_sym___clrcall] = ACTIONS(1337), + [anon_sym___stdcall] = ACTIONS(1337), + [anon_sym___fastcall] = ACTIONS(1337), + [anon_sym___thiscall] = ACTIONS(1337), + [anon_sym___vectorcall] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1337), + [anon_sym_auto] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_inline] = ACTIONS(1337), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_volatile] = ACTIONS(1337), + [anon_sym_restrict] = ACTIONS(1337), + [anon_sym__Atomic] = ACTIONS(1337), + [anon_sym_in] = ACTIONS(1337), + [anon_sym_out] = ACTIONS(1337), + [anon_sym_inout] = ACTIONS(1337), + [anon_sym_bycopy] = ACTIONS(1337), + [anon_sym_byref] = ACTIONS(1337), + [anon_sym_oneway] = ACTIONS(1337), + [anon_sym__Nullable] = ACTIONS(1337), + [anon_sym__Nonnull] = ACTIONS(1337), + [anon_sym__Nullable_result] = ACTIONS(1337), + [anon_sym__Null_unspecified] = ACTIONS(1337), + [anon_sym___autoreleasing] = ACTIONS(1337), + [anon_sym___nullable] = ACTIONS(1337), + [anon_sym___nonnull] = ACTIONS(1337), + [anon_sym___strong] = ACTIONS(1337), + [anon_sym___weak] = ACTIONS(1337), + [anon_sym___bridge] = ACTIONS(1337), + [anon_sym___bridge_transfer] = ACTIONS(1337), + [anon_sym___bridge_retained] = ACTIONS(1337), + [anon_sym___unsafe_unretained] = ACTIONS(1337), + [anon_sym___block] = ACTIONS(1337), + [anon_sym___kindof] = ACTIONS(1337), + [anon_sym___unused] = ACTIONS(1337), + [anon_sym__Complex] = ACTIONS(1337), + [anon_sym___complex] = ACTIONS(1337), + [anon_sym_IBOutlet] = ACTIONS(1337), + [anon_sym_IBInspectable] = ACTIONS(1337), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1337), + [anon_sym_signed] = ACTIONS(1337), + [anon_sym_unsigned] = ACTIONS(1337), + [anon_sym_long] = ACTIONS(1337), + [anon_sym_short] = ACTIONS(1337), + [sym_primitive_type] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1337), + [anon_sym_struct] = ACTIONS(1337), + [anon_sym_union] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_else] = ACTIONS(1337), + [anon_sym_switch] = ACTIONS(1337), + [anon_sym_case] = ACTIONS(1337), + [anon_sym_default] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_goto] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1335), + [anon_sym_PLUS_PLUS] = ACTIONS(1335), + [anon_sym_sizeof] = ACTIONS(1337), + [sym_number_literal] = ACTIONS(1335), + [anon_sym_L_SQUOTE] = ACTIONS(1335), + [anon_sym_u_SQUOTE] = ACTIONS(1335), + [anon_sym_U_SQUOTE] = ACTIONS(1335), + [anon_sym_u8_SQUOTE] = ACTIONS(1335), + [anon_sym_SQUOTE] = ACTIONS(1335), + [anon_sym_L_DQUOTE] = ACTIONS(1335), + [anon_sym_u_DQUOTE] = ACTIONS(1335), + [anon_sym_U_DQUOTE] = ACTIONS(1335), + [anon_sym_u8_DQUOTE] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1335), + [sym_true] = ACTIONS(1337), + [sym_false] = ACTIONS(1337), + [sym_null] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1335), + [anon_sym_ATimport] = ACTIONS(1335), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1337), + [anon_sym_ATcompatibility_alias] = ACTIONS(1335), + [anon_sym_ATprotocol] = ACTIONS(1335), + [anon_sym_ATclass] = ACTIONS(1335), + [anon_sym_ATinterface] = ACTIONS(1335), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1337), + [sym_method_attribute_specifier] = ACTIONS(1337), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1337), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1337), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1337), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1337), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1337), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1337), + [anon_sym_NS_AVAILABLE] = ACTIONS(1337), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1337), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1337), + [anon_sym_API_AVAILABLE] = ACTIONS(1337), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1337), + [anon_sym_API_DEPRECATED] = ACTIONS(1337), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1337), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1337), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1337), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1337), + [anon_sym___deprecated_msg] = ACTIONS(1337), + [anon_sym___deprecated_enum_msg] = ACTIONS(1337), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1337), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1337), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1337), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1337), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1337), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1337), + [anon_sym_ATimplementation] = ACTIONS(1335), + [anon_sym_NS_ENUM] = ACTIONS(1337), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1337), + [anon_sym_NS_OPTIONS] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1337), + [anon_sym___typeof] = ACTIONS(1337), + [anon_sym___typeof__] = ACTIONS(1337), + [sym_self] = ACTIONS(1337), + [sym_super] = ACTIONS(1337), + [sym_nil] = ACTIONS(1337), + [sym_id] = ACTIONS(1337), + [sym_instancetype] = ACTIONS(1337), + [sym_Class] = ACTIONS(1337), + [sym_SEL] = ACTIONS(1337), + [sym_IMP] = ACTIONS(1337), + [sym_BOOL] = ACTIONS(1337), + [sym_auto] = ACTIONS(1337), + [anon_sym_ATautoreleasepool] = ACTIONS(1335), + [anon_sym_ATsynchronized] = ACTIONS(1335), + [anon_sym_ATtry] = ACTIONS(1335), + [anon_sym_ATcatch] = ACTIONS(1335), + [anon_sym_ATfinally] = ACTIONS(1335), + [anon_sym_ATthrow] = ACTIONS(1335), + [anon_sym_ATselector] = ACTIONS(1335), + [anon_sym_ATencode] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), + [sym_YES] = ACTIONS(1337), + [sym_NO] = ACTIONS(1337), + [anon_sym___builtin_available] = ACTIONS(1337), + [anon_sym_ATavailable] = ACTIONS(1335), + [anon_sym_va_arg] = ACTIONS(1337), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [332] = { + [sym_identifier] = ACTIONS(1329), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1329), + [aux_sym_preproc_if_token2] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), + [aux_sym_preproc_else_token1] = ACTIONS(1329), + [aux_sym_preproc_elif_token1] = ACTIONS(1329), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_CARET] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1329), + [anon_sym___attribute] = ACTIONS(1329), + [anon_sym___attribute__] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1329), + [anon_sym___cdecl] = ACTIONS(1329), + [anon_sym___clrcall] = ACTIONS(1329), + [anon_sym___stdcall] = ACTIONS(1329), + [anon_sym___fastcall] = ACTIONS(1329), + [anon_sym___thiscall] = ACTIONS(1329), + [anon_sym___vectorcall] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1329), + [anon_sym_auto] = ACTIONS(1329), + [anon_sym_register] = ACTIONS(1329), + [anon_sym_inline] = ACTIONS(1329), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_volatile] = ACTIONS(1329), + [anon_sym_restrict] = ACTIONS(1329), + [anon_sym__Atomic] = ACTIONS(1329), + [anon_sym_in] = ACTIONS(1329), + [anon_sym_out] = ACTIONS(1329), + [anon_sym_inout] = ACTIONS(1329), + [anon_sym_bycopy] = ACTIONS(1329), + [anon_sym_byref] = ACTIONS(1329), + [anon_sym_oneway] = ACTIONS(1329), + [anon_sym__Nullable] = ACTIONS(1329), + [anon_sym__Nonnull] = ACTIONS(1329), + [anon_sym__Nullable_result] = ACTIONS(1329), + [anon_sym__Null_unspecified] = ACTIONS(1329), + [anon_sym___autoreleasing] = ACTIONS(1329), + [anon_sym___nullable] = ACTIONS(1329), + [anon_sym___nonnull] = ACTIONS(1329), + [anon_sym___strong] = ACTIONS(1329), + [anon_sym___weak] = ACTIONS(1329), + [anon_sym___bridge] = ACTIONS(1329), + [anon_sym___bridge_transfer] = ACTIONS(1329), + [anon_sym___bridge_retained] = ACTIONS(1329), + [anon_sym___unsafe_unretained] = ACTIONS(1329), + [anon_sym___block] = ACTIONS(1329), + [anon_sym___kindof] = ACTIONS(1329), + [anon_sym___unused] = ACTIONS(1329), + [anon_sym__Complex] = ACTIONS(1329), + [anon_sym___complex] = ACTIONS(1329), + [anon_sym_IBOutlet] = ACTIONS(1329), + [anon_sym_IBInspectable] = ACTIONS(1329), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1329), + [anon_sym_unsigned] = ACTIONS(1329), + [anon_sym_long] = ACTIONS(1329), + [anon_sym_short] = ACTIONS(1329), + [sym_primitive_type] = ACTIONS(1329), + [anon_sym_enum] = ACTIONS(1329), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_union] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_switch] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_do] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_goto] = ACTIONS(1329), + [anon_sym_DASH_DASH] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1327), + [anon_sym_sizeof] = ACTIONS(1329), + [sym_number_literal] = ACTIONS(1327), + [anon_sym_L_SQUOTE] = ACTIONS(1327), + [anon_sym_u_SQUOTE] = ACTIONS(1327), + [anon_sym_U_SQUOTE] = ACTIONS(1327), + [anon_sym_u8_SQUOTE] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_L_DQUOTE] = ACTIONS(1327), + [anon_sym_u_DQUOTE] = ACTIONS(1327), + [anon_sym_U_DQUOTE] = ACTIONS(1327), + [anon_sym_u8_DQUOTE] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1327), + [sym_true] = ACTIONS(1329), + [sym_false] = ACTIONS(1329), + [sym_null] = ACTIONS(1329), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1327), + [anon_sym_ATimport] = ACTIONS(1327), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1329), + [anon_sym_ATcompatibility_alias] = ACTIONS(1327), + [anon_sym_ATprotocol] = ACTIONS(1327), + [anon_sym_ATclass] = ACTIONS(1327), + [anon_sym_ATinterface] = ACTIONS(1327), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1329), + [sym_method_attribute_specifier] = ACTIONS(1329), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1329), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1329), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1329), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1329), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1329), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1329), + [anon_sym_NS_AVAILABLE] = ACTIONS(1329), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1329), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1329), + [anon_sym_API_AVAILABLE] = ACTIONS(1329), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1329), + [anon_sym_API_DEPRECATED] = ACTIONS(1329), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1329), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1329), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1329), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1329), + [anon_sym___deprecated_msg] = ACTIONS(1329), + [anon_sym___deprecated_enum_msg] = ACTIONS(1329), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1329), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1329), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1329), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1329), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1329), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1329), + [anon_sym_ATimplementation] = ACTIONS(1327), + [anon_sym_NS_ENUM] = ACTIONS(1329), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1329), + [anon_sym_NS_OPTIONS] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1329), + [anon_sym___typeof] = ACTIONS(1329), + [anon_sym___typeof__] = ACTIONS(1329), + [sym_self] = ACTIONS(1329), + [sym_super] = ACTIONS(1329), + [sym_nil] = ACTIONS(1329), + [sym_id] = ACTIONS(1329), + [sym_instancetype] = ACTIONS(1329), + [sym_Class] = ACTIONS(1329), + [sym_SEL] = ACTIONS(1329), + [sym_IMP] = ACTIONS(1329), + [sym_BOOL] = ACTIONS(1329), + [sym_auto] = ACTIONS(1329), + [anon_sym_ATautoreleasepool] = ACTIONS(1327), + [anon_sym_ATsynchronized] = ACTIONS(1327), + [anon_sym_ATtry] = ACTIONS(1327), + [anon_sym_ATcatch] = ACTIONS(1327), + [anon_sym_ATfinally] = ACTIONS(1327), + [anon_sym_ATthrow] = ACTIONS(1327), + [anon_sym_ATselector] = ACTIONS(1327), + [anon_sym_ATencode] = ACTIONS(1327), + [anon_sym_AT] = ACTIONS(1329), + [sym_YES] = ACTIONS(1329), + [sym_NO] = ACTIONS(1329), + [anon_sym___builtin_available] = ACTIONS(1329), + [anon_sym_ATavailable] = ACTIONS(1327), + [anon_sym_va_arg] = ACTIONS(1329), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [333] = { [ts_builtin_sym_end] = ACTIONS(1635), [sym_identifier] = ACTIONS(1633), [aux_sym_preproc_include_token1] = ACTIONS(1635), @@ -88865,9 +84469,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1633), [sym_primitive_type] = ACTIONS(1633), [anon_sym_enum] = ACTIONS(1633), - [anon_sym_NS_ENUM] = ACTIONS(1633), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1633), - [anon_sym_NS_OPTIONS] = ACTIONS(1633), [anon_sym_struct] = ACTIONS(1633), [anon_sym_union] = ACTIONS(1633), [anon_sym_if] = ACTIONS(1633), @@ -88934,6 +84535,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1633), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1633), [anon_sym_ATimplementation] = ACTIONS(1635), + [anon_sym_NS_ENUM] = ACTIONS(1633), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1633), + [anon_sym_NS_OPTIONS] = ACTIONS(1633), [anon_sym_typeof] = ACTIONS(1633), [anon_sym___typeof] = ACTIONS(1633), [anon_sym___typeof__] = ACTIONS(1633), @@ -88968,7 +84572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [359] = { + [334] = { [ts_builtin_sym_end] = ACTIONS(1631), [sym_identifier] = ACTIONS(1629), [aux_sym_preproc_include_token1] = ACTIONS(1631), @@ -89042,9 +84646,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1629), [sym_primitive_type] = ACTIONS(1629), [anon_sym_enum] = ACTIONS(1629), - [anon_sym_NS_ENUM] = ACTIONS(1629), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1629), - [anon_sym_NS_OPTIONS] = ACTIONS(1629), [anon_sym_struct] = ACTIONS(1629), [anon_sym_union] = ACTIONS(1629), [anon_sym_if] = ACTIONS(1629), @@ -89111,6 +84712,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1629), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1629), [anon_sym_ATimplementation] = ACTIONS(1631), + [anon_sym_NS_ENUM] = ACTIONS(1629), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1629), + [anon_sym_NS_OPTIONS] = ACTIONS(1629), [anon_sym_typeof] = ACTIONS(1629), [anon_sym___typeof] = ACTIONS(1629), [anon_sym___typeof__] = ACTIONS(1629), @@ -89145,1069 +84749,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [360] = { - [ts_builtin_sym_end] = ACTIONS(1225), - [sym_identifier] = ACTIONS(1223), - [aux_sym_preproc_include_token1] = ACTIONS(1225), - [aux_sym_preproc_def_token1] = ACTIONS(1225), - [anon_sym_RPAREN] = ACTIONS(1225), - [aux_sym_preproc_if_token1] = ACTIONS(1223), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), - [anon_sym_LPAREN2] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1225), - [anon_sym_TILDE] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(1225), - [anon_sym_CARET] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_typedef] = ACTIONS(1223), - [anon_sym_extern] = ACTIONS(1223), - [anon_sym___attribute] = ACTIONS(1223), - [anon_sym___attribute__] = ACTIONS(1223), - [anon_sym___declspec] = ACTIONS(1223), - [anon_sym___cdecl] = ACTIONS(1223), - [anon_sym___clrcall] = ACTIONS(1223), - [anon_sym___stdcall] = ACTIONS(1223), - [anon_sym___fastcall] = ACTIONS(1223), - [anon_sym___thiscall] = ACTIONS(1223), - [anon_sym___vectorcall] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_RBRACE] = ACTIONS(1225), - [anon_sym_LBRACK] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_auto] = ACTIONS(1223), - [anon_sym_register] = ACTIONS(1223), - [anon_sym_inline] = ACTIONS(1223), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1223), - [anon_sym_const] = ACTIONS(1223), - [anon_sym_volatile] = ACTIONS(1223), - [anon_sym_restrict] = ACTIONS(1223), - [anon_sym__Atomic] = ACTIONS(1223), - [anon_sym_in] = ACTIONS(1223), - [anon_sym_out] = ACTIONS(1223), - [anon_sym_inout] = ACTIONS(1223), - [anon_sym_bycopy] = ACTIONS(1223), - [anon_sym_byref] = ACTIONS(1223), - [anon_sym_oneway] = ACTIONS(1223), - [anon_sym__Nullable] = ACTIONS(1223), - [anon_sym__Nonnull] = ACTIONS(1223), - [anon_sym__Nullable_result] = ACTIONS(1223), - [anon_sym__Null_unspecified] = ACTIONS(1223), - [anon_sym___autoreleasing] = ACTIONS(1223), - [anon_sym___nullable] = ACTIONS(1223), - [anon_sym___nonnull] = ACTIONS(1223), - [anon_sym___strong] = ACTIONS(1223), - [anon_sym___weak] = ACTIONS(1223), - [anon_sym___bridge] = ACTIONS(1223), - [anon_sym___bridge_transfer] = ACTIONS(1223), - [anon_sym___bridge_retained] = ACTIONS(1223), - [anon_sym___unsafe_unretained] = ACTIONS(1223), - [anon_sym___block] = ACTIONS(1223), - [anon_sym___kindof] = ACTIONS(1223), - [anon_sym___unused] = ACTIONS(1223), - [anon_sym__Complex] = ACTIONS(1223), - [anon_sym___complex] = ACTIONS(1223), - [anon_sym_IBOutlet] = ACTIONS(1223), - [anon_sym_IBInspectable] = ACTIONS(1223), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1223), - [anon_sym_signed] = ACTIONS(1223), - [anon_sym_unsigned] = ACTIONS(1223), - [anon_sym_long] = ACTIONS(1223), - [anon_sym_short] = ACTIONS(1223), - [sym_primitive_type] = ACTIONS(1223), - [anon_sym_enum] = ACTIONS(1223), - [anon_sym_NS_ENUM] = ACTIONS(1223), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1223), - [anon_sym_NS_OPTIONS] = ACTIONS(1223), - [anon_sym_struct] = ACTIONS(1223), - [anon_sym_union] = ACTIONS(1223), - [anon_sym_if] = ACTIONS(1223), - [anon_sym_else] = ACTIONS(1223), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_case] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1223), - [anon_sym_while] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1223), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_return] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1223), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_goto] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1225), - [anon_sym_PLUS_PLUS] = ACTIONS(1225), - [anon_sym_sizeof] = ACTIONS(1223), - [sym_number_literal] = ACTIONS(1225), - [anon_sym_L_SQUOTE] = ACTIONS(1225), - [anon_sym_u_SQUOTE] = ACTIONS(1225), - [anon_sym_U_SQUOTE] = ACTIONS(1225), - [anon_sym_u8_SQUOTE] = ACTIONS(1225), - [anon_sym_SQUOTE] = ACTIONS(1225), - [anon_sym_L_DQUOTE] = ACTIONS(1225), - [anon_sym_u_DQUOTE] = ACTIONS(1225), - [anon_sym_U_DQUOTE] = ACTIONS(1225), - [anon_sym_u8_DQUOTE] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_true] = ACTIONS(1223), - [sym_false] = ACTIONS(1223), - [sym_null] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1225), - [anon_sym_ATimport] = ACTIONS(1225), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1223), - [anon_sym_ATcompatibility_alias] = ACTIONS(1225), - [anon_sym_ATprotocol] = ACTIONS(1225), - [anon_sym_ATclass] = ACTIONS(1225), - [anon_sym_ATinterface] = ACTIONS(1225), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1223), - [sym_method_attribute_specifier] = ACTIONS(1223), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1223), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1223), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1223), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1223), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1223), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1223), - [anon_sym_NS_AVAILABLE] = ACTIONS(1223), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1223), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1223), - [anon_sym_API_AVAILABLE] = ACTIONS(1223), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1223), - [anon_sym_API_DEPRECATED] = ACTIONS(1223), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1223), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1223), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1223), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1223), - [anon_sym___deprecated_msg] = ACTIONS(1223), - [anon_sym___deprecated_enum_msg] = ACTIONS(1223), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1223), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1223), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1223), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1223), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1223), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1223), - [anon_sym_ATimplementation] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1223), - [anon_sym___typeof] = ACTIONS(1223), - [anon_sym___typeof__] = ACTIONS(1223), - [sym_self] = ACTIONS(1223), - [sym_super] = ACTIONS(1223), - [sym_nil] = ACTIONS(1223), - [sym_id] = ACTIONS(1223), - [sym_instancetype] = ACTIONS(1223), - [sym_Class] = ACTIONS(1223), - [sym_SEL] = ACTIONS(1223), - [sym_IMP] = ACTIONS(1223), - [sym_BOOL] = ACTIONS(1223), - [sym_auto] = ACTIONS(1223), - [anon_sym_ATautoreleasepool] = ACTIONS(1225), - [anon_sym_ATsynchronized] = ACTIONS(1225), - [anon_sym_ATtry] = ACTIONS(1225), - [anon_sym_ATcatch] = ACTIONS(1225), - [anon_sym_ATfinally] = ACTIONS(1225), - [anon_sym_ATthrow] = ACTIONS(1225), - [anon_sym_ATselector] = ACTIONS(1225), - [anon_sym_ATencode] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1223), - [sym_YES] = ACTIONS(1223), - [sym_NO] = ACTIONS(1223), - [anon_sym___builtin_available] = ACTIONS(1223), - [anon_sym_ATavailable] = ACTIONS(1225), - [anon_sym_va_arg] = ACTIONS(1223), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [361] = { - [ts_builtin_sym_end] = ACTIONS(1375), - [sym_identifier] = ACTIONS(1373), - [aux_sym_preproc_include_token1] = ACTIONS(1375), - [aux_sym_preproc_def_token1] = ACTIONS(1375), - [anon_sym_RPAREN] = ACTIONS(1375), - [aux_sym_preproc_if_token1] = ACTIONS(1373), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1373), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1373), - [anon_sym_LPAREN2] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_TILDE] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_typedef] = ACTIONS(1373), - [anon_sym_extern] = ACTIONS(1373), - [anon_sym___attribute] = ACTIONS(1373), - [anon_sym___attribute__] = ACTIONS(1373), - [anon_sym___declspec] = ACTIONS(1373), - [anon_sym___cdecl] = ACTIONS(1373), - [anon_sym___clrcall] = ACTIONS(1373), - [anon_sym___stdcall] = ACTIONS(1373), - [anon_sym___fastcall] = ACTIONS(1373), - [anon_sym___thiscall] = ACTIONS(1373), - [anon_sym___vectorcall] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_RBRACE] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1375), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_auto] = ACTIONS(1373), - [anon_sym_register] = ACTIONS(1373), - [anon_sym_inline] = ACTIONS(1373), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1373), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_volatile] = ACTIONS(1373), - [anon_sym_restrict] = ACTIONS(1373), - [anon_sym__Atomic] = ACTIONS(1373), - [anon_sym_in] = ACTIONS(1373), - [anon_sym_out] = ACTIONS(1373), - [anon_sym_inout] = ACTIONS(1373), - [anon_sym_bycopy] = ACTIONS(1373), - [anon_sym_byref] = ACTIONS(1373), - [anon_sym_oneway] = ACTIONS(1373), - [anon_sym__Nullable] = ACTIONS(1373), - [anon_sym__Nonnull] = ACTIONS(1373), - [anon_sym__Nullable_result] = ACTIONS(1373), - [anon_sym__Null_unspecified] = ACTIONS(1373), - [anon_sym___autoreleasing] = ACTIONS(1373), - [anon_sym___nullable] = ACTIONS(1373), - [anon_sym___nonnull] = ACTIONS(1373), - [anon_sym___strong] = ACTIONS(1373), - [anon_sym___weak] = ACTIONS(1373), - [anon_sym___bridge] = ACTIONS(1373), - [anon_sym___bridge_transfer] = ACTIONS(1373), - [anon_sym___bridge_retained] = ACTIONS(1373), - [anon_sym___unsafe_unretained] = ACTIONS(1373), - [anon_sym___block] = ACTIONS(1373), - [anon_sym___kindof] = ACTIONS(1373), - [anon_sym___unused] = ACTIONS(1373), - [anon_sym__Complex] = ACTIONS(1373), - [anon_sym___complex] = ACTIONS(1373), - [anon_sym_IBOutlet] = ACTIONS(1373), - [anon_sym_IBInspectable] = ACTIONS(1373), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1373), - [anon_sym_signed] = ACTIONS(1373), - [anon_sym_unsigned] = ACTIONS(1373), - [anon_sym_long] = ACTIONS(1373), - [anon_sym_short] = ACTIONS(1373), - [sym_primitive_type] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1373), - [anon_sym_NS_ENUM] = ACTIONS(1373), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1373), - [anon_sym_NS_OPTIONS] = ACTIONS(1373), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_union] = ACTIONS(1373), - [anon_sym_if] = ACTIONS(1373), - [anon_sym_else] = ACTIONS(1373), - [anon_sym_switch] = ACTIONS(1373), - [anon_sym_case] = ACTIONS(1373), - [anon_sym_default] = ACTIONS(1373), - [anon_sym_while] = ACTIONS(1373), - [anon_sym_do] = ACTIONS(1373), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1373), - [anon_sym_break] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(1373), - [anon_sym_goto] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1375), - [anon_sym_sizeof] = ACTIONS(1373), - [sym_number_literal] = ACTIONS(1375), - [anon_sym_L_SQUOTE] = ACTIONS(1375), - [anon_sym_u_SQUOTE] = ACTIONS(1375), - [anon_sym_U_SQUOTE] = ACTIONS(1375), - [anon_sym_u8_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_L_DQUOTE] = ACTIONS(1375), - [anon_sym_u_DQUOTE] = ACTIONS(1375), - [anon_sym_U_DQUOTE] = ACTIONS(1375), - [anon_sym_u8_DQUOTE] = ACTIONS(1375), - [anon_sym_DQUOTE] = ACTIONS(1375), - [sym_true] = ACTIONS(1373), - [sym_false] = ACTIONS(1373), - [sym_null] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1375), - [anon_sym_ATimport] = ACTIONS(1375), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1373), - [anon_sym_ATcompatibility_alias] = ACTIONS(1375), - [anon_sym_ATprotocol] = ACTIONS(1375), - [anon_sym_ATclass] = ACTIONS(1375), - [anon_sym_ATinterface] = ACTIONS(1375), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1373), - [sym_method_attribute_specifier] = ACTIONS(1373), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1373), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1373), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1373), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1373), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1373), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1373), - [anon_sym_NS_AVAILABLE] = ACTIONS(1373), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1373), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1373), - [anon_sym_API_AVAILABLE] = ACTIONS(1373), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1373), - [anon_sym_API_DEPRECATED] = ACTIONS(1373), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1373), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1373), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1373), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1373), - [anon_sym___deprecated_msg] = ACTIONS(1373), - [anon_sym___deprecated_enum_msg] = ACTIONS(1373), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1373), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1373), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1373), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1373), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1373), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1373), - [anon_sym_ATimplementation] = ACTIONS(1375), - [anon_sym_typeof] = ACTIONS(1373), - [anon_sym___typeof] = ACTIONS(1373), - [anon_sym___typeof__] = ACTIONS(1373), - [sym_self] = ACTIONS(1373), - [sym_super] = ACTIONS(1373), - [sym_nil] = ACTIONS(1373), - [sym_id] = ACTIONS(1373), - [sym_instancetype] = ACTIONS(1373), - [sym_Class] = ACTIONS(1373), - [sym_SEL] = ACTIONS(1373), - [sym_IMP] = ACTIONS(1373), - [sym_BOOL] = ACTIONS(1373), - [sym_auto] = ACTIONS(1373), - [anon_sym_ATautoreleasepool] = ACTIONS(1375), - [anon_sym_ATsynchronized] = ACTIONS(1375), - [anon_sym_ATtry] = ACTIONS(1375), - [anon_sym_ATcatch] = ACTIONS(1375), - [anon_sym_ATfinally] = ACTIONS(1375), - [anon_sym_ATthrow] = ACTIONS(1375), - [anon_sym_ATselector] = ACTIONS(1375), - [anon_sym_ATencode] = ACTIONS(1375), - [anon_sym_AT] = ACTIONS(1373), - [sym_YES] = ACTIONS(1373), - [sym_NO] = ACTIONS(1373), - [anon_sym___builtin_available] = ACTIONS(1373), - [anon_sym_ATavailable] = ACTIONS(1375), - [anon_sym_va_arg] = ACTIONS(1373), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [362] = { - [ts_builtin_sym_end] = ACTIONS(1379), - [sym_identifier] = ACTIONS(1377), - [aux_sym_preproc_include_token1] = ACTIONS(1379), - [aux_sym_preproc_def_token1] = ACTIONS(1379), - [anon_sym_RPAREN] = ACTIONS(1379), - [aux_sym_preproc_if_token1] = ACTIONS(1377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1377), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1377), - [anon_sym_LPAREN2] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_typedef] = ACTIONS(1377), - [anon_sym_extern] = ACTIONS(1377), - [anon_sym___attribute] = ACTIONS(1377), - [anon_sym___attribute__] = ACTIONS(1377), - [anon_sym___declspec] = ACTIONS(1377), - [anon_sym___cdecl] = ACTIONS(1377), - [anon_sym___clrcall] = ACTIONS(1377), - [anon_sym___stdcall] = ACTIONS(1377), - [anon_sym___fastcall] = ACTIONS(1377), - [anon_sym___thiscall] = ACTIONS(1377), - [anon_sym___vectorcall] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_RBRACE] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1379), - [anon_sym_static] = ACTIONS(1377), - [anon_sym_auto] = ACTIONS(1377), - [anon_sym_register] = ACTIONS(1377), - [anon_sym_inline] = ACTIONS(1377), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1377), - [anon_sym_const] = ACTIONS(1377), - [anon_sym_volatile] = ACTIONS(1377), - [anon_sym_restrict] = ACTIONS(1377), - [anon_sym__Atomic] = ACTIONS(1377), - [anon_sym_in] = ACTIONS(1377), - [anon_sym_out] = ACTIONS(1377), - [anon_sym_inout] = ACTIONS(1377), - [anon_sym_bycopy] = ACTIONS(1377), - [anon_sym_byref] = ACTIONS(1377), - [anon_sym_oneway] = ACTIONS(1377), - [anon_sym__Nullable] = ACTIONS(1377), - [anon_sym__Nonnull] = ACTIONS(1377), - [anon_sym__Nullable_result] = ACTIONS(1377), - [anon_sym__Null_unspecified] = ACTIONS(1377), - [anon_sym___autoreleasing] = ACTIONS(1377), - [anon_sym___nullable] = ACTIONS(1377), - [anon_sym___nonnull] = ACTIONS(1377), - [anon_sym___strong] = ACTIONS(1377), - [anon_sym___weak] = ACTIONS(1377), - [anon_sym___bridge] = ACTIONS(1377), - [anon_sym___bridge_transfer] = ACTIONS(1377), - [anon_sym___bridge_retained] = ACTIONS(1377), - [anon_sym___unsafe_unretained] = ACTIONS(1377), - [anon_sym___block] = ACTIONS(1377), - [anon_sym___kindof] = ACTIONS(1377), - [anon_sym___unused] = ACTIONS(1377), - [anon_sym__Complex] = ACTIONS(1377), - [anon_sym___complex] = ACTIONS(1377), - [anon_sym_IBOutlet] = ACTIONS(1377), - [anon_sym_IBInspectable] = ACTIONS(1377), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1377), - [anon_sym_signed] = ACTIONS(1377), - [anon_sym_unsigned] = ACTIONS(1377), - [anon_sym_long] = ACTIONS(1377), - [anon_sym_short] = ACTIONS(1377), - [sym_primitive_type] = ACTIONS(1377), - [anon_sym_enum] = ACTIONS(1377), - [anon_sym_NS_ENUM] = ACTIONS(1377), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1377), - [anon_sym_NS_OPTIONS] = ACTIONS(1377), - [anon_sym_struct] = ACTIONS(1377), - [anon_sym_union] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1377), - [anon_sym_else] = ACTIONS(1377), - [anon_sym_switch] = ACTIONS(1377), - [anon_sym_case] = ACTIONS(1377), - [anon_sym_default] = ACTIONS(1377), - [anon_sym_while] = ACTIONS(1377), - [anon_sym_do] = ACTIONS(1377), - [anon_sym_for] = ACTIONS(1377), - [anon_sym_return] = ACTIONS(1377), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1377), - [anon_sym_goto] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1377), - [sym_number_literal] = ACTIONS(1379), - [anon_sym_L_SQUOTE] = ACTIONS(1379), - [anon_sym_u_SQUOTE] = ACTIONS(1379), - [anon_sym_U_SQUOTE] = ACTIONS(1379), - [anon_sym_u8_SQUOTE] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_L_DQUOTE] = ACTIONS(1379), - [anon_sym_u_DQUOTE] = ACTIONS(1379), - [anon_sym_U_DQUOTE] = ACTIONS(1379), - [anon_sym_u8_DQUOTE] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [sym_true] = ACTIONS(1377), - [sym_false] = ACTIONS(1377), - [sym_null] = ACTIONS(1377), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1379), - [anon_sym_ATimport] = ACTIONS(1379), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1377), - [anon_sym_ATcompatibility_alias] = ACTIONS(1379), - [anon_sym_ATprotocol] = ACTIONS(1379), - [anon_sym_ATclass] = ACTIONS(1379), - [anon_sym_ATinterface] = ACTIONS(1379), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1377), - [sym_method_attribute_specifier] = ACTIONS(1377), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1377), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1377), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1377), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1377), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1377), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1377), - [anon_sym_NS_AVAILABLE] = ACTIONS(1377), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1377), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1377), - [anon_sym_API_AVAILABLE] = ACTIONS(1377), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1377), - [anon_sym_API_DEPRECATED] = ACTIONS(1377), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1377), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1377), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1377), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1377), - [anon_sym___deprecated_msg] = ACTIONS(1377), - [anon_sym___deprecated_enum_msg] = ACTIONS(1377), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1377), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1377), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1377), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1377), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1377), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1377), - [anon_sym_ATimplementation] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym___typeof] = ACTIONS(1377), - [anon_sym___typeof__] = ACTIONS(1377), - [sym_self] = ACTIONS(1377), - [sym_super] = ACTIONS(1377), - [sym_nil] = ACTIONS(1377), - [sym_id] = ACTIONS(1377), - [sym_instancetype] = ACTIONS(1377), - [sym_Class] = ACTIONS(1377), - [sym_SEL] = ACTIONS(1377), - [sym_IMP] = ACTIONS(1377), - [sym_BOOL] = ACTIONS(1377), - [sym_auto] = ACTIONS(1377), - [anon_sym_ATautoreleasepool] = ACTIONS(1379), - [anon_sym_ATsynchronized] = ACTIONS(1379), - [anon_sym_ATtry] = ACTIONS(1379), - [anon_sym_ATcatch] = ACTIONS(1379), - [anon_sym_ATfinally] = ACTIONS(1379), - [anon_sym_ATthrow] = ACTIONS(1379), - [anon_sym_ATselector] = ACTIONS(1379), - [anon_sym_ATencode] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1377), - [sym_YES] = ACTIONS(1377), - [sym_NO] = ACTIONS(1377), - [anon_sym___builtin_available] = ACTIONS(1377), - [anon_sym_ATavailable] = ACTIONS(1379), - [anon_sym_va_arg] = ACTIONS(1377), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [363] = { - [sym_identifier] = ACTIONS(1707), - [aux_sym_preproc_include_token1] = ACTIONS(1705), - [aux_sym_preproc_def_token1] = ACTIONS(1705), - [aux_sym_preproc_if_token1] = ACTIONS(1707), - [aux_sym_preproc_if_token2] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1707), - [aux_sym_preproc_else_token1] = ACTIONS(1707), - [aux_sym_preproc_elif_token1] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_typedef] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym___attribute] = ACTIONS(1707), - [anon_sym___attribute__] = ACTIONS(1707), - [anon_sym___declspec] = ACTIONS(1707), - [anon_sym___cdecl] = ACTIONS(1707), - [anon_sym___clrcall] = ACTIONS(1707), - [anon_sym___stdcall] = ACTIONS(1707), - [anon_sym___fastcall] = ACTIONS(1707), - [anon_sym___thiscall] = ACTIONS(1707), - [anon_sym___vectorcall] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_auto] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_inline] = ACTIONS(1707), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym_restrict] = ACTIONS(1707), - [anon_sym__Atomic] = ACTIONS(1707), - [anon_sym_in] = ACTIONS(1707), - [anon_sym_out] = ACTIONS(1707), - [anon_sym_inout] = ACTIONS(1707), - [anon_sym_bycopy] = ACTIONS(1707), - [anon_sym_byref] = ACTIONS(1707), - [anon_sym_oneway] = ACTIONS(1707), - [anon_sym__Nullable] = ACTIONS(1707), - [anon_sym__Nonnull] = ACTIONS(1707), - [anon_sym__Nullable_result] = ACTIONS(1707), - [anon_sym__Null_unspecified] = ACTIONS(1707), - [anon_sym___autoreleasing] = ACTIONS(1707), - [anon_sym___nullable] = ACTIONS(1707), - [anon_sym___nonnull] = ACTIONS(1707), - [anon_sym___strong] = ACTIONS(1707), - [anon_sym___weak] = ACTIONS(1707), - [anon_sym___bridge] = ACTIONS(1707), - [anon_sym___bridge_transfer] = ACTIONS(1707), - [anon_sym___bridge_retained] = ACTIONS(1707), - [anon_sym___unsafe_unretained] = ACTIONS(1707), - [anon_sym___block] = ACTIONS(1707), - [anon_sym___kindof] = ACTIONS(1707), - [anon_sym___unused] = ACTIONS(1707), - [anon_sym__Complex] = ACTIONS(1707), - [anon_sym___complex] = ACTIONS(1707), - [anon_sym_IBOutlet] = ACTIONS(1707), - [anon_sym_IBInspectable] = ACTIONS(1707), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1707), - [anon_sym_signed] = ACTIONS(1707), - [anon_sym_unsigned] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [sym_primitive_type] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_NS_ENUM] = ACTIONS(1707), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1707), - [anon_sym_NS_OPTIONS] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_else] = ACTIONS(1707), - [anon_sym_switch] = ACTIONS(1707), - [anon_sym_case] = ACTIONS(1707), - [anon_sym_default] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_goto] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_PLUS_PLUS] = ACTIONS(1705), - [anon_sym_sizeof] = ACTIONS(1707), - [sym_number_literal] = ACTIONS(1705), - [anon_sym_L_SQUOTE] = ACTIONS(1705), - [anon_sym_u_SQUOTE] = ACTIONS(1705), - [anon_sym_U_SQUOTE] = ACTIONS(1705), - [anon_sym_u8_SQUOTE] = ACTIONS(1705), - [anon_sym_SQUOTE] = ACTIONS(1705), - [anon_sym_L_DQUOTE] = ACTIONS(1705), - [anon_sym_u_DQUOTE] = ACTIONS(1705), - [anon_sym_U_DQUOTE] = ACTIONS(1705), - [anon_sym_u8_DQUOTE] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_null] = ACTIONS(1707), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1705), - [anon_sym_ATimport] = ACTIONS(1705), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1707), - [anon_sym_ATcompatibility_alias] = ACTIONS(1705), - [anon_sym_ATprotocol] = ACTIONS(1705), - [anon_sym_ATclass] = ACTIONS(1705), - [anon_sym_ATinterface] = ACTIONS(1705), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1707), - [sym_method_attribute_specifier] = ACTIONS(1707), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1707), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1707), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1707), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1707), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1707), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1707), - [anon_sym_NS_AVAILABLE] = ACTIONS(1707), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1707), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_API_AVAILABLE] = ACTIONS(1707), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1707), - [anon_sym_API_DEPRECATED] = ACTIONS(1707), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1707), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1707), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1707), - [anon_sym___deprecated_msg] = ACTIONS(1707), - [anon_sym___deprecated_enum_msg] = ACTIONS(1707), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1707), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1707), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1707), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1707), - [anon_sym_ATimplementation] = ACTIONS(1705), - [anon_sym_typeof] = ACTIONS(1707), - [anon_sym___typeof] = ACTIONS(1707), - [anon_sym___typeof__] = ACTIONS(1707), - [sym_self] = ACTIONS(1707), - [sym_super] = ACTIONS(1707), - [sym_nil] = ACTIONS(1707), - [sym_id] = ACTIONS(1707), - [sym_instancetype] = ACTIONS(1707), - [sym_Class] = ACTIONS(1707), - [sym_SEL] = ACTIONS(1707), - [sym_IMP] = ACTIONS(1707), - [sym_BOOL] = ACTIONS(1707), - [sym_auto] = ACTIONS(1707), - [anon_sym_ATautoreleasepool] = ACTIONS(1705), - [anon_sym_ATsynchronized] = ACTIONS(1705), - [anon_sym_ATtry] = ACTIONS(1705), - [anon_sym_ATcatch] = ACTIONS(1705), - [anon_sym_ATfinally] = ACTIONS(1705), - [anon_sym_ATthrow] = ACTIONS(1705), - [anon_sym_ATselector] = ACTIONS(1705), - [anon_sym_ATencode] = ACTIONS(1705), - [anon_sym_AT] = ACTIONS(1707), - [sym_YES] = ACTIONS(1707), - [sym_NO] = ACTIONS(1707), - [anon_sym___builtin_available] = ACTIONS(1707), - [anon_sym_ATavailable] = ACTIONS(1705), - [anon_sym_va_arg] = ACTIONS(1707), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [364] = { - [ts_builtin_sym_end] = ACTIONS(1287), - [sym_identifier] = ACTIONS(1285), - [aux_sym_preproc_include_token1] = ACTIONS(1287), - [aux_sym_preproc_def_token1] = ACTIONS(1287), - [anon_sym_RPAREN] = ACTIONS(1287), - [aux_sym_preproc_if_token1] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1285), - [anon_sym_LPAREN2] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_TILDE] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1287), - [anon_sym_CARET] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1287), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_typedef] = ACTIONS(1285), - [anon_sym_extern] = ACTIONS(1285), - [anon_sym___attribute] = ACTIONS(1285), - [anon_sym___attribute__] = ACTIONS(1285), - [anon_sym___declspec] = ACTIONS(1285), - [anon_sym___cdecl] = ACTIONS(1285), - [anon_sym___clrcall] = ACTIONS(1285), - [anon_sym___stdcall] = ACTIONS(1285), - [anon_sym___fastcall] = ACTIONS(1285), - [anon_sym___thiscall] = ACTIONS(1285), - [anon_sym___vectorcall] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1287), - [anon_sym_RBRACE] = ACTIONS(1287), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_static] = ACTIONS(1285), - [anon_sym_auto] = ACTIONS(1285), - [anon_sym_register] = ACTIONS(1285), - [anon_sym_inline] = ACTIONS(1285), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1285), - [anon_sym_const] = ACTIONS(1285), - [anon_sym_volatile] = ACTIONS(1285), - [anon_sym_restrict] = ACTIONS(1285), - [anon_sym__Atomic] = ACTIONS(1285), - [anon_sym_in] = ACTIONS(1285), - [anon_sym_out] = ACTIONS(1285), - [anon_sym_inout] = ACTIONS(1285), - [anon_sym_bycopy] = ACTIONS(1285), - [anon_sym_byref] = ACTIONS(1285), - [anon_sym_oneway] = ACTIONS(1285), - [anon_sym__Nullable] = ACTIONS(1285), - [anon_sym__Nonnull] = ACTIONS(1285), - [anon_sym__Nullable_result] = ACTIONS(1285), - [anon_sym__Null_unspecified] = ACTIONS(1285), - [anon_sym___autoreleasing] = ACTIONS(1285), - [anon_sym___nullable] = ACTIONS(1285), - [anon_sym___nonnull] = ACTIONS(1285), - [anon_sym___strong] = ACTIONS(1285), - [anon_sym___weak] = ACTIONS(1285), - [anon_sym___bridge] = ACTIONS(1285), - [anon_sym___bridge_transfer] = ACTIONS(1285), - [anon_sym___bridge_retained] = ACTIONS(1285), - [anon_sym___unsafe_unretained] = ACTIONS(1285), - [anon_sym___block] = ACTIONS(1285), - [anon_sym___kindof] = ACTIONS(1285), - [anon_sym___unused] = ACTIONS(1285), - [anon_sym__Complex] = ACTIONS(1285), - [anon_sym___complex] = ACTIONS(1285), - [anon_sym_IBOutlet] = ACTIONS(1285), - [anon_sym_IBInspectable] = ACTIONS(1285), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1285), - [anon_sym_signed] = ACTIONS(1285), - [anon_sym_unsigned] = ACTIONS(1285), - [anon_sym_long] = ACTIONS(1285), - [anon_sym_short] = ACTIONS(1285), - [sym_primitive_type] = ACTIONS(1285), - [anon_sym_enum] = ACTIONS(1285), - [anon_sym_NS_ENUM] = ACTIONS(1285), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1285), - [anon_sym_NS_OPTIONS] = ACTIONS(1285), - [anon_sym_struct] = ACTIONS(1285), - [anon_sym_union] = ACTIONS(1285), - [anon_sym_if] = ACTIONS(1285), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_switch] = ACTIONS(1285), - [anon_sym_case] = ACTIONS(1285), - [anon_sym_default] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1285), - [anon_sym_do] = ACTIONS(1285), - [anon_sym_for] = ACTIONS(1285), - [anon_sym_return] = ACTIONS(1285), - [anon_sym_break] = ACTIONS(1285), - [anon_sym_continue] = ACTIONS(1285), - [anon_sym_goto] = ACTIONS(1285), - [anon_sym_DASH_DASH] = ACTIONS(1287), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_sizeof] = ACTIONS(1285), - [sym_number_literal] = ACTIONS(1287), - [anon_sym_L_SQUOTE] = ACTIONS(1287), - [anon_sym_u_SQUOTE] = ACTIONS(1287), - [anon_sym_U_SQUOTE] = ACTIONS(1287), - [anon_sym_u8_SQUOTE] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1287), - [anon_sym_L_DQUOTE] = ACTIONS(1287), - [anon_sym_u_DQUOTE] = ACTIONS(1287), - [anon_sym_U_DQUOTE] = ACTIONS(1287), - [anon_sym_u8_DQUOTE] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1287), - [sym_true] = ACTIONS(1285), - [sym_false] = ACTIONS(1285), - [sym_null] = ACTIONS(1285), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1287), - [anon_sym_ATimport] = ACTIONS(1287), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1285), - [anon_sym_ATcompatibility_alias] = ACTIONS(1287), - [anon_sym_ATprotocol] = ACTIONS(1287), - [anon_sym_ATclass] = ACTIONS(1287), - [anon_sym_ATinterface] = ACTIONS(1287), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1285), - [sym_method_attribute_specifier] = ACTIONS(1285), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1285), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1285), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1285), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1285), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1285), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1285), - [anon_sym_NS_AVAILABLE] = ACTIONS(1285), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1285), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1285), - [anon_sym_API_AVAILABLE] = ACTIONS(1285), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1285), - [anon_sym_API_DEPRECATED] = ACTIONS(1285), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1285), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1285), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1285), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1285), - [anon_sym___deprecated_msg] = ACTIONS(1285), - [anon_sym___deprecated_enum_msg] = ACTIONS(1285), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1285), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1285), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1285), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1285), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1285), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1285), - [anon_sym_ATimplementation] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___typeof] = ACTIONS(1285), - [anon_sym___typeof__] = ACTIONS(1285), - [sym_self] = ACTIONS(1285), - [sym_super] = ACTIONS(1285), - [sym_nil] = ACTIONS(1285), - [sym_id] = ACTIONS(1285), - [sym_instancetype] = ACTIONS(1285), - [sym_Class] = ACTIONS(1285), - [sym_SEL] = ACTIONS(1285), - [sym_IMP] = ACTIONS(1285), - [sym_BOOL] = ACTIONS(1285), - [sym_auto] = ACTIONS(1285), - [anon_sym_ATautoreleasepool] = ACTIONS(1287), - [anon_sym_ATsynchronized] = ACTIONS(1287), - [anon_sym_ATtry] = ACTIONS(1287), - [anon_sym_ATcatch] = ACTIONS(1287), - [anon_sym_ATfinally] = ACTIONS(1287), - [anon_sym_ATthrow] = ACTIONS(1287), - [anon_sym_ATselector] = ACTIONS(1287), - [anon_sym_ATencode] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1285), - [sym_YES] = ACTIONS(1285), - [sym_NO] = ACTIONS(1285), - [anon_sym___builtin_available] = ACTIONS(1285), - [anon_sym_ATavailable] = ACTIONS(1287), - [anon_sym_va_arg] = ACTIONS(1285), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [365] = { - [aux_sym_try_catch_statement_repeat1] = STATE(367), - [sym_identifier] = ACTIONS(1165), - [aux_sym_preproc_include_token1] = ACTIONS(1167), - [aux_sym_preproc_def_token1] = ACTIONS(1167), - [aux_sym_preproc_if_token1] = ACTIONS(1165), - [aux_sym_preproc_if_token2] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), - [anon_sym_LPAREN2] = ACTIONS(1167), - [anon_sym_BANG] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_PLUS] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1167), - [anon_sym_CARET] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym_typedef] = ACTIONS(1165), - [anon_sym_extern] = ACTIONS(1165), - [anon_sym___attribute] = ACTIONS(1165), - [anon_sym___attribute__] = ACTIONS(1165), - [anon_sym___declspec] = ACTIONS(1165), - [anon_sym___cdecl] = ACTIONS(1165), - [anon_sym___clrcall] = ACTIONS(1165), - [anon_sym___stdcall] = ACTIONS(1165), - [anon_sym___fastcall] = ACTIONS(1165), - [anon_sym___thiscall] = ACTIONS(1165), - [anon_sym___vectorcall] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(1167), - [anon_sym_static] = ACTIONS(1165), - [anon_sym_auto] = ACTIONS(1165), - [anon_sym_register] = ACTIONS(1165), - [anon_sym_inline] = ACTIONS(1165), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1165), - [anon_sym_const] = ACTIONS(1165), - [anon_sym_volatile] = ACTIONS(1165), - [anon_sym_restrict] = ACTIONS(1165), - [anon_sym__Atomic] = ACTIONS(1165), - [anon_sym_in] = ACTIONS(1165), - [anon_sym_out] = ACTIONS(1165), - [anon_sym_inout] = ACTIONS(1165), - [anon_sym_bycopy] = ACTIONS(1165), - [anon_sym_byref] = ACTIONS(1165), - [anon_sym_oneway] = ACTIONS(1165), - [anon_sym__Nullable] = ACTIONS(1165), - [anon_sym__Nonnull] = ACTIONS(1165), - [anon_sym__Nullable_result] = ACTIONS(1165), - [anon_sym__Null_unspecified] = ACTIONS(1165), - [anon_sym___autoreleasing] = ACTIONS(1165), - [anon_sym___nullable] = ACTIONS(1165), - [anon_sym___nonnull] = ACTIONS(1165), - [anon_sym___strong] = ACTIONS(1165), - [anon_sym___weak] = ACTIONS(1165), - [anon_sym___bridge] = ACTIONS(1165), - [anon_sym___bridge_transfer] = ACTIONS(1165), - [anon_sym___bridge_retained] = ACTIONS(1165), - [anon_sym___unsafe_unretained] = ACTIONS(1165), - [anon_sym___block] = ACTIONS(1165), - [anon_sym___kindof] = ACTIONS(1165), - [anon_sym___unused] = ACTIONS(1165), - [anon_sym__Complex] = ACTIONS(1165), - [anon_sym___complex] = ACTIONS(1165), - [anon_sym_IBOutlet] = ACTIONS(1165), - [anon_sym_IBInspectable] = ACTIONS(1165), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1165), - [anon_sym_signed] = ACTIONS(1165), - [anon_sym_unsigned] = ACTIONS(1165), - [anon_sym_long] = ACTIONS(1165), - [anon_sym_short] = ACTIONS(1165), - [sym_primitive_type] = ACTIONS(1165), - [anon_sym_enum] = ACTIONS(1165), - [anon_sym_NS_ENUM] = ACTIONS(1165), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1165), - [anon_sym_NS_OPTIONS] = ACTIONS(1165), - [anon_sym_struct] = ACTIONS(1165), - [anon_sym_union] = ACTIONS(1165), - [anon_sym_if] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1165), - [anon_sym_switch] = ACTIONS(1165), - [anon_sym_case] = ACTIONS(1165), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1165), - [anon_sym_do] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1165), - [anon_sym_return] = ACTIONS(1165), - [anon_sym_break] = ACTIONS(1165), - [anon_sym_continue] = ACTIONS(1165), - [anon_sym_goto] = ACTIONS(1165), - [anon_sym_DASH_DASH] = ACTIONS(1167), - [anon_sym_PLUS_PLUS] = ACTIONS(1167), - [anon_sym_sizeof] = ACTIONS(1165), - [sym_number_literal] = ACTIONS(1167), - [anon_sym_L_SQUOTE] = ACTIONS(1167), - [anon_sym_u_SQUOTE] = ACTIONS(1167), - [anon_sym_U_SQUOTE] = ACTIONS(1167), - [anon_sym_u8_SQUOTE] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_L_DQUOTE] = ACTIONS(1167), - [anon_sym_u_DQUOTE] = ACTIONS(1167), - [anon_sym_U_DQUOTE] = ACTIONS(1167), - [anon_sym_u8_DQUOTE] = ACTIONS(1167), - [anon_sym_DQUOTE] = ACTIONS(1167), - [sym_true] = ACTIONS(1165), - [sym_false] = ACTIONS(1165), - [sym_null] = ACTIONS(1165), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1167), - [anon_sym_ATimport] = ACTIONS(1167), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1165), - [anon_sym_ATcompatibility_alias] = ACTIONS(1167), - [anon_sym_ATprotocol] = ACTIONS(1167), - [anon_sym_ATclass] = ACTIONS(1167), - [anon_sym_ATinterface] = ACTIONS(1167), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1165), - [sym_method_attribute_specifier] = ACTIONS(1165), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1165), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1165), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1165), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1165), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1165), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1165), - [anon_sym_NS_AVAILABLE] = ACTIONS(1165), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1165), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1165), - [anon_sym_API_AVAILABLE] = ACTIONS(1165), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1165), - [anon_sym_API_DEPRECATED] = ACTIONS(1165), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1165), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1165), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1165), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1165), - [anon_sym___deprecated_msg] = ACTIONS(1165), - [anon_sym___deprecated_enum_msg] = ACTIONS(1165), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1165), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1165), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1165), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1165), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1165), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1165), - [anon_sym_ATimplementation] = ACTIONS(1167), - [anon_sym_typeof] = ACTIONS(1165), - [anon_sym___typeof] = ACTIONS(1165), - [anon_sym___typeof__] = ACTIONS(1165), - [sym_self] = ACTIONS(1165), - [sym_super] = ACTIONS(1165), - [sym_nil] = ACTIONS(1165), - [sym_id] = ACTIONS(1165), - [sym_instancetype] = ACTIONS(1165), - [sym_Class] = ACTIONS(1165), - [sym_SEL] = ACTIONS(1165), - [sym_IMP] = ACTIONS(1165), - [sym_BOOL] = ACTIONS(1165), - [sym_auto] = ACTIONS(1165), - [anon_sym_ATautoreleasepool] = ACTIONS(1167), - [anon_sym_ATsynchronized] = ACTIONS(1167), - [anon_sym_ATtry] = ACTIONS(1167), - [anon_sym_ATcatch] = ACTIONS(1711), - [anon_sym_ATfinally] = ACTIONS(1713), - [anon_sym_ATthrow] = ACTIONS(1167), - [anon_sym_ATselector] = ACTIONS(1167), - [anon_sym_ATencode] = ACTIONS(1167), - [anon_sym_AT] = ACTIONS(1165), - [sym_YES] = ACTIONS(1165), - [sym_NO] = ACTIONS(1165), - [anon_sym___builtin_available] = ACTIONS(1165), - [anon_sym_ATavailable] = ACTIONS(1167), - [anon_sym_va_arg] = ACTIONS(1165), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [366] = { - [aux_sym_try_catch_statement_repeat1] = STATE(365), + [335] = { + [aux_sym_try_catch_statement_repeat1] = STATE(337), [sym_identifier] = ACTIONS(1186), [aux_sym_preproc_include_token1] = ACTIONS(1184), [aux_sym_preproc_def_token1] = ACTIONS(1184), @@ -90279,9 +84822,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1186), [sym_primitive_type] = ACTIONS(1186), [anon_sym_enum] = ACTIONS(1186), - [anon_sym_NS_ENUM] = ACTIONS(1186), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1186), - [anon_sym_NS_OPTIONS] = ACTIONS(1186), [anon_sym_struct] = ACTIONS(1186), [anon_sym_union] = ACTIONS(1186), [anon_sym_if] = ACTIONS(1186), @@ -90348,6 +84888,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1186), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1186), [anon_sym_ATimplementation] = ACTIONS(1184), + [anon_sym_NS_ENUM] = ACTIONS(1186), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1186), + [anon_sym_NS_OPTIONS] = ACTIONS(1186), [anon_sym_typeof] = ACTIONS(1186), [anon_sym___typeof] = ACTIONS(1186), [anon_sym___typeof__] = ACTIONS(1186), @@ -90364,8 +84907,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATautoreleasepool] = ACTIONS(1184), [anon_sym_ATsynchronized] = ACTIONS(1184), [anon_sym_ATtry] = ACTIONS(1184), - [anon_sym_ATcatch] = ACTIONS(1711), - [anon_sym_ATfinally] = ACTIONS(1715), + [anon_sym_ATcatch] = ACTIONS(1661), + [anon_sym_ATfinally] = ACTIONS(1663), [anon_sym_ATthrow] = ACTIONS(1184), [anon_sym_ATselector] = ACTIONS(1184), [anon_sym_ATencode] = ACTIONS(1184), @@ -90382,175 +84925,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [367] = { - [aux_sym_try_catch_statement_repeat1] = STATE(367), - [sym_identifier] = ACTIONS(1179), - [aux_sym_preproc_include_token1] = ACTIONS(1177), - [aux_sym_preproc_def_token1] = ACTIONS(1177), - [aux_sym_preproc_if_token1] = ACTIONS(1179), - [aux_sym_preproc_if_token2] = ACTIONS(1179), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1179), - [anon_sym_LPAREN2] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1177), - [anon_sym_TILDE] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1179), - [anon_sym_STAR] = ACTIONS(1177), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_AMP] = ACTIONS(1177), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_typedef] = ACTIONS(1179), - [anon_sym_extern] = ACTIONS(1179), - [anon_sym___attribute] = ACTIONS(1179), - [anon_sym___attribute__] = ACTIONS(1179), - [anon_sym___declspec] = ACTIONS(1179), - [anon_sym___cdecl] = ACTIONS(1179), - [anon_sym___clrcall] = ACTIONS(1179), - [anon_sym___stdcall] = ACTIONS(1179), - [anon_sym___fastcall] = ACTIONS(1179), - [anon_sym___thiscall] = ACTIONS(1179), - [anon_sym___vectorcall] = ACTIONS(1179), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_static] = ACTIONS(1179), - [anon_sym_auto] = ACTIONS(1179), - [anon_sym_register] = ACTIONS(1179), - [anon_sym_inline] = ACTIONS(1179), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1179), - [anon_sym_const] = ACTIONS(1179), - [anon_sym_volatile] = ACTIONS(1179), - [anon_sym_restrict] = ACTIONS(1179), - [anon_sym__Atomic] = ACTIONS(1179), - [anon_sym_in] = ACTIONS(1179), - [anon_sym_out] = ACTIONS(1179), - [anon_sym_inout] = ACTIONS(1179), - [anon_sym_bycopy] = ACTIONS(1179), - [anon_sym_byref] = ACTIONS(1179), - [anon_sym_oneway] = ACTIONS(1179), - [anon_sym__Nullable] = ACTIONS(1179), - [anon_sym__Nonnull] = ACTIONS(1179), - [anon_sym__Nullable_result] = ACTIONS(1179), - [anon_sym__Null_unspecified] = ACTIONS(1179), - [anon_sym___autoreleasing] = ACTIONS(1179), - [anon_sym___nullable] = ACTIONS(1179), - [anon_sym___nonnull] = ACTIONS(1179), - [anon_sym___strong] = ACTIONS(1179), - [anon_sym___weak] = ACTIONS(1179), - [anon_sym___bridge] = ACTIONS(1179), - [anon_sym___bridge_transfer] = ACTIONS(1179), - [anon_sym___bridge_retained] = ACTIONS(1179), - [anon_sym___unsafe_unretained] = ACTIONS(1179), - [anon_sym___block] = ACTIONS(1179), - [anon_sym___kindof] = ACTIONS(1179), - [anon_sym___unused] = ACTIONS(1179), - [anon_sym__Complex] = ACTIONS(1179), - [anon_sym___complex] = ACTIONS(1179), - [anon_sym_IBOutlet] = ACTIONS(1179), - [anon_sym_IBInspectable] = ACTIONS(1179), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1179), - [anon_sym_signed] = ACTIONS(1179), - [anon_sym_unsigned] = ACTIONS(1179), - [anon_sym_long] = ACTIONS(1179), - [anon_sym_short] = ACTIONS(1179), - [sym_primitive_type] = ACTIONS(1179), - [anon_sym_enum] = ACTIONS(1179), - [anon_sym_NS_ENUM] = ACTIONS(1179), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1179), - [anon_sym_NS_OPTIONS] = ACTIONS(1179), - [anon_sym_struct] = ACTIONS(1179), - [anon_sym_union] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_switch] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(1179), - [anon_sym_default] = ACTIONS(1179), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_for] = ACTIONS(1179), - [anon_sym_return] = ACTIONS(1179), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1179), - [anon_sym_goto] = ACTIONS(1179), - [anon_sym_DASH_DASH] = ACTIONS(1177), - [anon_sym_PLUS_PLUS] = ACTIONS(1177), - [anon_sym_sizeof] = ACTIONS(1179), - [sym_number_literal] = ACTIONS(1177), - [anon_sym_L_SQUOTE] = ACTIONS(1177), - [anon_sym_u_SQUOTE] = ACTIONS(1177), - [anon_sym_U_SQUOTE] = ACTIONS(1177), - [anon_sym_u8_SQUOTE] = ACTIONS(1177), - [anon_sym_SQUOTE] = ACTIONS(1177), - [anon_sym_L_DQUOTE] = ACTIONS(1177), - [anon_sym_u_DQUOTE] = ACTIONS(1177), - [anon_sym_U_DQUOTE] = ACTIONS(1177), - [anon_sym_u8_DQUOTE] = ACTIONS(1177), - [anon_sym_DQUOTE] = ACTIONS(1177), - [sym_true] = ACTIONS(1179), - [sym_false] = ACTIONS(1179), - [sym_null] = ACTIONS(1179), + [336] = { + [aux_sym_try_catch_statement_repeat1] = STATE(336), + [sym_identifier] = ACTIONS(1177), + [aux_sym_preproc_include_token1] = ACTIONS(1179), + [aux_sym_preproc_def_token1] = ACTIONS(1179), + [aux_sym_preproc_if_token1] = ACTIONS(1177), + [aux_sym_preproc_if_token2] = ACTIONS(1177), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1177), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1177), + [anon_sym_LPAREN2] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1179), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1179), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_SEMI] = ACTIONS(1179), + [anon_sym_typedef] = ACTIONS(1177), + [anon_sym_extern] = ACTIONS(1177), + [anon_sym___attribute] = ACTIONS(1177), + [anon_sym___attribute__] = ACTIONS(1177), + [anon_sym___declspec] = ACTIONS(1177), + [anon_sym___cdecl] = ACTIONS(1177), + [anon_sym___clrcall] = ACTIONS(1177), + [anon_sym___stdcall] = ACTIONS(1177), + [anon_sym___fastcall] = ACTIONS(1177), + [anon_sym___thiscall] = ACTIONS(1177), + [anon_sym___vectorcall] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1179), + [anon_sym_static] = ACTIONS(1177), + [anon_sym_auto] = ACTIONS(1177), + [anon_sym_register] = ACTIONS(1177), + [anon_sym_inline] = ACTIONS(1177), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1177), + [anon_sym_const] = ACTIONS(1177), + [anon_sym_volatile] = ACTIONS(1177), + [anon_sym_restrict] = ACTIONS(1177), + [anon_sym__Atomic] = ACTIONS(1177), + [anon_sym_in] = ACTIONS(1177), + [anon_sym_out] = ACTIONS(1177), + [anon_sym_inout] = ACTIONS(1177), + [anon_sym_bycopy] = ACTIONS(1177), + [anon_sym_byref] = ACTIONS(1177), + [anon_sym_oneway] = ACTIONS(1177), + [anon_sym__Nullable] = ACTIONS(1177), + [anon_sym__Nonnull] = ACTIONS(1177), + [anon_sym__Nullable_result] = ACTIONS(1177), + [anon_sym__Null_unspecified] = ACTIONS(1177), + [anon_sym___autoreleasing] = ACTIONS(1177), + [anon_sym___nullable] = ACTIONS(1177), + [anon_sym___nonnull] = ACTIONS(1177), + [anon_sym___strong] = ACTIONS(1177), + [anon_sym___weak] = ACTIONS(1177), + [anon_sym___bridge] = ACTIONS(1177), + [anon_sym___bridge_transfer] = ACTIONS(1177), + [anon_sym___bridge_retained] = ACTIONS(1177), + [anon_sym___unsafe_unretained] = ACTIONS(1177), + [anon_sym___block] = ACTIONS(1177), + [anon_sym___kindof] = ACTIONS(1177), + [anon_sym___unused] = ACTIONS(1177), + [anon_sym__Complex] = ACTIONS(1177), + [anon_sym___complex] = ACTIONS(1177), + [anon_sym_IBOutlet] = ACTIONS(1177), + [anon_sym_IBInspectable] = ACTIONS(1177), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1177), + [anon_sym_signed] = ACTIONS(1177), + [anon_sym_unsigned] = ACTIONS(1177), + [anon_sym_long] = ACTIONS(1177), + [anon_sym_short] = ACTIONS(1177), + [sym_primitive_type] = ACTIONS(1177), + [anon_sym_enum] = ACTIONS(1177), + [anon_sym_struct] = ACTIONS(1177), + [anon_sym_union] = ACTIONS(1177), + [anon_sym_if] = ACTIONS(1177), + [anon_sym_else] = ACTIONS(1177), + [anon_sym_switch] = ACTIONS(1177), + [anon_sym_case] = ACTIONS(1177), + [anon_sym_default] = ACTIONS(1177), + [anon_sym_while] = ACTIONS(1177), + [anon_sym_do] = ACTIONS(1177), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1177), + [anon_sym_continue] = ACTIONS(1177), + [anon_sym_goto] = ACTIONS(1177), + [anon_sym_DASH_DASH] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(1179), + [anon_sym_sizeof] = ACTIONS(1177), + [sym_number_literal] = ACTIONS(1179), + [anon_sym_L_SQUOTE] = ACTIONS(1179), + [anon_sym_u_SQUOTE] = ACTIONS(1179), + [anon_sym_U_SQUOTE] = ACTIONS(1179), + [anon_sym_u8_SQUOTE] = ACTIONS(1179), + [anon_sym_SQUOTE] = ACTIONS(1179), + [anon_sym_L_DQUOTE] = ACTIONS(1179), + [anon_sym_u_DQUOTE] = ACTIONS(1179), + [anon_sym_U_DQUOTE] = ACTIONS(1179), + [anon_sym_u8_DQUOTE] = ACTIONS(1179), + [anon_sym_DQUOTE] = ACTIONS(1179), + [sym_true] = ACTIONS(1177), + [sym_false] = ACTIONS(1177), + [sym_null] = ACTIONS(1177), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1177), - [anon_sym_ATimport] = ACTIONS(1177), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1179), - [anon_sym_ATcompatibility_alias] = ACTIONS(1177), - [anon_sym_ATprotocol] = ACTIONS(1177), - [anon_sym_ATclass] = ACTIONS(1177), - [anon_sym_ATinterface] = ACTIONS(1177), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1179), - [sym_method_attribute_specifier] = ACTIONS(1179), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1179), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1179), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1179), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1179), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1179), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1179), - [anon_sym_NS_AVAILABLE] = ACTIONS(1179), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1179), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1179), - [anon_sym_API_AVAILABLE] = ACTIONS(1179), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1179), - [anon_sym_API_DEPRECATED] = ACTIONS(1179), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1179), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1179), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1179), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1179), - [anon_sym___deprecated_msg] = ACTIONS(1179), - [anon_sym___deprecated_enum_msg] = ACTIONS(1179), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1179), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1179), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1179), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1179), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1179), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1179), - [anon_sym_ATimplementation] = ACTIONS(1177), - [anon_sym_typeof] = ACTIONS(1179), - [anon_sym___typeof] = ACTIONS(1179), - [anon_sym___typeof__] = ACTIONS(1179), - [sym_self] = ACTIONS(1179), - [sym_super] = ACTIONS(1179), - [sym_nil] = ACTIONS(1179), - [sym_id] = ACTIONS(1179), - [sym_instancetype] = ACTIONS(1179), - [sym_Class] = ACTIONS(1179), - [sym_SEL] = ACTIONS(1179), - [sym_IMP] = ACTIONS(1179), - [sym_BOOL] = ACTIONS(1179), - [sym_auto] = ACTIONS(1179), - [anon_sym_ATautoreleasepool] = ACTIONS(1177), - [anon_sym_ATsynchronized] = ACTIONS(1177), - [anon_sym_ATtry] = ACTIONS(1177), - [anon_sym_ATcatch] = ACTIONS(1717), - [anon_sym_ATfinally] = ACTIONS(1177), - [anon_sym_ATthrow] = ACTIONS(1177), - [anon_sym_ATselector] = ACTIONS(1177), - [anon_sym_ATencode] = ACTIONS(1177), - [anon_sym_AT] = ACTIONS(1179), - [sym_YES] = ACTIONS(1179), - [sym_NO] = ACTIONS(1179), - [anon_sym___builtin_available] = ACTIONS(1179), - [anon_sym_ATavailable] = ACTIONS(1177), - [anon_sym_va_arg] = ACTIONS(1179), + [anon_sym_POUNDimport] = ACTIONS(1179), + [anon_sym_ATimport] = ACTIONS(1179), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1177), + [anon_sym_ATcompatibility_alias] = ACTIONS(1179), + [anon_sym_ATprotocol] = ACTIONS(1179), + [anon_sym_ATclass] = ACTIONS(1179), + [anon_sym_ATinterface] = ACTIONS(1179), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1177), + [sym_method_attribute_specifier] = ACTIONS(1177), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1177), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1177), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1177), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1177), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1177), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1177), + [anon_sym_NS_AVAILABLE] = ACTIONS(1177), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1177), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1177), + [anon_sym_API_AVAILABLE] = ACTIONS(1177), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1177), + [anon_sym_API_DEPRECATED] = ACTIONS(1177), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1177), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1177), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1177), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1177), + [anon_sym___deprecated_msg] = ACTIONS(1177), + [anon_sym___deprecated_enum_msg] = ACTIONS(1177), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1177), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1177), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1177), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1177), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1177), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1177), + [anon_sym_ATimplementation] = ACTIONS(1179), + [anon_sym_NS_ENUM] = ACTIONS(1177), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1177), + [anon_sym_NS_OPTIONS] = ACTIONS(1177), + [anon_sym_typeof] = ACTIONS(1177), + [anon_sym___typeof] = ACTIONS(1177), + [anon_sym___typeof__] = ACTIONS(1177), + [sym_self] = ACTIONS(1177), + [sym_super] = ACTIONS(1177), + [sym_nil] = ACTIONS(1177), + [sym_id] = ACTIONS(1177), + [sym_instancetype] = ACTIONS(1177), + [sym_Class] = ACTIONS(1177), + [sym_SEL] = ACTIONS(1177), + [sym_IMP] = ACTIONS(1177), + [sym_BOOL] = ACTIONS(1177), + [sym_auto] = ACTIONS(1177), + [anon_sym_ATautoreleasepool] = ACTIONS(1179), + [anon_sym_ATsynchronized] = ACTIONS(1179), + [anon_sym_ATtry] = ACTIONS(1179), + [anon_sym_ATcatch] = ACTIONS(1665), + [anon_sym_ATfinally] = ACTIONS(1179), + [anon_sym_ATthrow] = ACTIONS(1179), + [anon_sym_ATselector] = ACTIONS(1179), + [anon_sym_ATencode] = ACTIONS(1179), + [anon_sym_AT] = ACTIONS(1177), + [sym_YES] = ACTIONS(1177), + [sym_NO] = ACTIONS(1177), + [anon_sym___builtin_available] = ACTIONS(1177), + [anon_sym_ATavailable] = ACTIONS(1179), + [anon_sym_va_arg] = ACTIONS(1177), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -90558,174 +85101,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [368] = { - [sym_identifier] = ACTIONS(1413), - [aux_sym_preproc_include_token1] = ACTIONS(1415), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [aux_sym_preproc_if_token1] = ACTIONS(1413), - [aux_sym_preproc_if_token2] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym___attribute] = ACTIONS(1413), - [anon_sym___attribute__] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1413), - [anon_sym___cdecl] = ACTIONS(1413), - [anon_sym___clrcall] = ACTIONS(1413), - [anon_sym___stdcall] = ACTIONS(1413), - [anon_sym___fastcall] = ACTIONS(1413), - [anon_sym___thiscall] = ACTIONS(1413), - [anon_sym___vectorcall] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_auto] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_inline] = ACTIONS(1413), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_volatile] = ACTIONS(1413), - [anon_sym_restrict] = ACTIONS(1413), - [anon_sym__Atomic] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_out] = ACTIONS(1413), - [anon_sym_inout] = ACTIONS(1413), - [anon_sym_bycopy] = ACTIONS(1413), - [anon_sym_byref] = ACTIONS(1413), - [anon_sym_oneway] = ACTIONS(1413), - [anon_sym__Nullable] = ACTIONS(1413), - [anon_sym__Nonnull] = ACTIONS(1413), - [anon_sym__Nullable_result] = ACTIONS(1413), - [anon_sym__Null_unspecified] = ACTIONS(1413), - [anon_sym___autoreleasing] = ACTIONS(1413), - [anon_sym___nullable] = ACTIONS(1413), - [anon_sym___nonnull] = ACTIONS(1413), - [anon_sym___strong] = ACTIONS(1413), - [anon_sym___weak] = ACTIONS(1413), - [anon_sym___bridge] = ACTIONS(1413), - [anon_sym___bridge_transfer] = ACTIONS(1413), - [anon_sym___bridge_retained] = ACTIONS(1413), - [anon_sym___unsafe_unretained] = ACTIONS(1413), - [anon_sym___block] = ACTIONS(1413), - [anon_sym___kindof] = ACTIONS(1413), - [anon_sym___unused] = ACTIONS(1413), - [anon_sym__Complex] = ACTIONS(1413), - [anon_sym___complex] = ACTIONS(1413), - [anon_sym_IBOutlet] = ACTIONS(1413), - [anon_sym_IBInspectable] = ACTIONS(1413), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1413), - [anon_sym_unsigned] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [sym_primitive_type] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_NS_ENUM] = ACTIONS(1413), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1413), - [anon_sym_NS_OPTIONS] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_case] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_goto] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_sizeof] = ACTIONS(1413), - [sym_number_literal] = ACTIONS(1415), - [anon_sym_L_SQUOTE] = ACTIONS(1415), - [anon_sym_u_SQUOTE] = ACTIONS(1415), - [anon_sym_U_SQUOTE] = ACTIONS(1415), - [anon_sym_u8_SQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_L_DQUOTE] = ACTIONS(1415), - [anon_sym_u_DQUOTE] = ACTIONS(1415), - [anon_sym_U_DQUOTE] = ACTIONS(1415), - [anon_sym_u8_DQUOTE] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [sym_true] = ACTIONS(1413), - [sym_false] = ACTIONS(1413), - [sym_null] = ACTIONS(1413), + [337] = { + [aux_sym_try_catch_statement_repeat1] = STATE(336), + [sym_identifier] = ACTIONS(1165), + [aux_sym_preproc_include_token1] = ACTIONS(1167), + [aux_sym_preproc_def_token1] = ACTIONS(1167), + [aux_sym_preproc_if_token1] = ACTIONS(1165), + [aux_sym_preproc_if_token2] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1165), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1165), + [anon_sym_LPAREN2] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1167), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_CARET] = ACTIONS(1167), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_SEMI] = ACTIONS(1167), + [anon_sym_typedef] = ACTIONS(1165), + [anon_sym_extern] = ACTIONS(1165), + [anon_sym___attribute] = ACTIONS(1165), + [anon_sym___attribute__] = ACTIONS(1165), + [anon_sym___declspec] = ACTIONS(1165), + [anon_sym___cdecl] = ACTIONS(1165), + [anon_sym___clrcall] = ACTIONS(1165), + [anon_sym___stdcall] = ACTIONS(1165), + [anon_sym___fastcall] = ACTIONS(1165), + [anon_sym___thiscall] = ACTIONS(1165), + [anon_sym___vectorcall] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(1167), + [anon_sym_static] = ACTIONS(1165), + [anon_sym_auto] = ACTIONS(1165), + [anon_sym_register] = ACTIONS(1165), + [anon_sym_inline] = ACTIONS(1165), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_volatile] = ACTIONS(1165), + [anon_sym_restrict] = ACTIONS(1165), + [anon_sym__Atomic] = ACTIONS(1165), + [anon_sym_in] = ACTIONS(1165), + [anon_sym_out] = ACTIONS(1165), + [anon_sym_inout] = ACTIONS(1165), + [anon_sym_bycopy] = ACTIONS(1165), + [anon_sym_byref] = ACTIONS(1165), + [anon_sym_oneway] = ACTIONS(1165), + [anon_sym__Nullable] = ACTIONS(1165), + [anon_sym__Nonnull] = ACTIONS(1165), + [anon_sym__Nullable_result] = ACTIONS(1165), + [anon_sym__Null_unspecified] = ACTIONS(1165), + [anon_sym___autoreleasing] = ACTIONS(1165), + [anon_sym___nullable] = ACTIONS(1165), + [anon_sym___nonnull] = ACTIONS(1165), + [anon_sym___strong] = ACTIONS(1165), + [anon_sym___weak] = ACTIONS(1165), + [anon_sym___bridge] = ACTIONS(1165), + [anon_sym___bridge_transfer] = ACTIONS(1165), + [anon_sym___bridge_retained] = ACTIONS(1165), + [anon_sym___unsafe_unretained] = ACTIONS(1165), + [anon_sym___block] = ACTIONS(1165), + [anon_sym___kindof] = ACTIONS(1165), + [anon_sym___unused] = ACTIONS(1165), + [anon_sym__Complex] = ACTIONS(1165), + [anon_sym___complex] = ACTIONS(1165), + [anon_sym_IBOutlet] = ACTIONS(1165), + [anon_sym_IBInspectable] = ACTIONS(1165), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1165), + [anon_sym_signed] = ACTIONS(1165), + [anon_sym_unsigned] = ACTIONS(1165), + [anon_sym_long] = ACTIONS(1165), + [anon_sym_short] = ACTIONS(1165), + [sym_primitive_type] = ACTIONS(1165), + [anon_sym_enum] = ACTIONS(1165), + [anon_sym_struct] = ACTIONS(1165), + [anon_sym_union] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_else] = ACTIONS(1165), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_case] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [anon_sym_do] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_goto] = ACTIONS(1165), + [anon_sym_DASH_DASH] = ACTIONS(1167), + [anon_sym_PLUS_PLUS] = ACTIONS(1167), + [anon_sym_sizeof] = ACTIONS(1165), + [sym_number_literal] = ACTIONS(1167), + [anon_sym_L_SQUOTE] = ACTIONS(1167), + [anon_sym_u_SQUOTE] = ACTIONS(1167), + [anon_sym_U_SQUOTE] = ACTIONS(1167), + [anon_sym_u8_SQUOTE] = ACTIONS(1167), + [anon_sym_SQUOTE] = ACTIONS(1167), + [anon_sym_L_DQUOTE] = ACTIONS(1167), + [anon_sym_u_DQUOTE] = ACTIONS(1167), + [anon_sym_U_DQUOTE] = ACTIONS(1167), + [anon_sym_u8_DQUOTE] = ACTIONS(1167), + [anon_sym_DQUOTE] = ACTIONS(1167), + [sym_true] = ACTIONS(1165), + [sym_false] = ACTIONS(1165), + [sym_null] = ACTIONS(1165), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1415), - [anon_sym_ATimport] = ACTIONS(1415), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1413), - [anon_sym_ATcompatibility_alias] = ACTIONS(1415), - [anon_sym_ATprotocol] = ACTIONS(1415), - [anon_sym_ATclass] = ACTIONS(1415), - [anon_sym_ATinterface] = ACTIONS(1415), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1413), - [sym_method_attribute_specifier] = ACTIONS(1413), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1413), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE] = ACTIONS(1413), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_API_AVAILABLE] = ACTIONS(1413), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_API_DEPRECATED] = ACTIONS(1413), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1413), - [anon_sym___deprecated_msg] = ACTIONS(1413), - [anon_sym___deprecated_enum_msg] = ACTIONS(1413), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1413), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1413), - [anon_sym_ATimplementation] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym___typeof] = ACTIONS(1413), - [anon_sym___typeof__] = ACTIONS(1413), - [sym_self] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_nil] = ACTIONS(1413), - [sym_id] = ACTIONS(1413), - [sym_instancetype] = ACTIONS(1413), - [sym_Class] = ACTIONS(1413), - [sym_SEL] = ACTIONS(1413), - [sym_IMP] = ACTIONS(1413), - [sym_BOOL] = ACTIONS(1413), - [sym_auto] = ACTIONS(1413), - [anon_sym_ATautoreleasepool] = ACTIONS(1415), - [anon_sym_ATsynchronized] = ACTIONS(1415), - [anon_sym_ATtry] = ACTIONS(1415), - [anon_sym_ATcatch] = ACTIONS(1415), - [anon_sym_ATfinally] = ACTIONS(1415), - [anon_sym_ATthrow] = ACTIONS(1415), - [anon_sym_ATselector] = ACTIONS(1415), - [anon_sym_ATencode] = ACTIONS(1415), - [anon_sym_AT] = ACTIONS(1413), - [sym_YES] = ACTIONS(1413), - [sym_NO] = ACTIONS(1413), - [anon_sym___builtin_available] = ACTIONS(1413), - [anon_sym_ATavailable] = ACTIONS(1415), - [anon_sym_va_arg] = ACTIONS(1413), + [anon_sym_POUNDimport] = ACTIONS(1167), + [anon_sym_ATimport] = ACTIONS(1167), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1165), + [anon_sym_ATcompatibility_alias] = ACTIONS(1167), + [anon_sym_ATprotocol] = ACTIONS(1167), + [anon_sym_ATclass] = ACTIONS(1167), + [anon_sym_ATinterface] = ACTIONS(1167), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1165), + [sym_method_attribute_specifier] = ACTIONS(1165), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1165), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1165), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1165), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1165), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1165), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1165), + [anon_sym_NS_AVAILABLE] = ACTIONS(1165), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1165), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1165), + [anon_sym_API_AVAILABLE] = ACTIONS(1165), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1165), + [anon_sym_API_DEPRECATED] = ACTIONS(1165), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1165), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1165), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1165), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1165), + [anon_sym___deprecated_msg] = ACTIONS(1165), + [anon_sym___deprecated_enum_msg] = ACTIONS(1165), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1165), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1165), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1165), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1165), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1165), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1165), + [anon_sym_ATimplementation] = ACTIONS(1167), + [anon_sym_NS_ENUM] = ACTIONS(1165), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1165), + [anon_sym_NS_OPTIONS] = ACTIONS(1165), + [anon_sym_typeof] = ACTIONS(1165), + [anon_sym___typeof] = ACTIONS(1165), + [anon_sym___typeof__] = ACTIONS(1165), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1165), + [sym_nil] = ACTIONS(1165), + [sym_id] = ACTIONS(1165), + [sym_instancetype] = ACTIONS(1165), + [sym_Class] = ACTIONS(1165), + [sym_SEL] = ACTIONS(1165), + [sym_IMP] = ACTIONS(1165), + [sym_BOOL] = ACTIONS(1165), + [sym_auto] = ACTIONS(1165), + [anon_sym_ATautoreleasepool] = ACTIONS(1167), + [anon_sym_ATsynchronized] = ACTIONS(1167), + [anon_sym_ATtry] = ACTIONS(1167), + [anon_sym_ATcatch] = ACTIONS(1661), + [anon_sym_ATfinally] = ACTIONS(1668), + [anon_sym_ATthrow] = ACTIONS(1167), + [anon_sym_ATselector] = ACTIONS(1167), + [anon_sym_ATencode] = ACTIONS(1167), + [anon_sym_AT] = ACTIONS(1165), + [sym_YES] = ACTIONS(1165), + [sym_NO] = ACTIONS(1165), + [anon_sym___builtin_available] = ACTIONS(1165), + [anon_sym_ATavailable] = ACTIONS(1167), + [anon_sym_va_arg] = ACTIONS(1165), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -90733,3682 +85277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [369] = { - [sym_identifier] = ACTIONS(1479), - [aux_sym_preproc_include_token1] = ACTIONS(1477), - [aux_sym_preproc_def_token1] = ACTIONS(1477), - [aux_sym_preproc_if_token1] = ACTIONS(1479), - [aux_sym_preproc_if_token2] = ACTIONS(1479), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1479), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1479), - [anon_sym_LPAREN2] = ACTIONS(1477), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_typedef] = ACTIONS(1479), - [anon_sym_extern] = ACTIONS(1479), - [anon_sym___attribute] = ACTIONS(1479), - [anon_sym___attribute__] = ACTIONS(1479), - [anon_sym___declspec] = ACTIONS(1479), - [anon_sym___cdecl] = ACTIONS(1479), - [anon_sym___clrcall] = ACTIONS(1479), - [anon_sym___stdcall] = ACTIONS(1479), - [anon_sym___fastcall] = ACTIONS(1479), - [anon_sym___thiscall] = ACTIONS(1479), - [anon_sym___vectorcall] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_auto] = ACTIONS(1479), - [anon_sym_register] = ACTIONS(1479), - [anon_sym_inline] = ACTIONS(1479), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_volatile] = ACTIONS(1479), - [anon_sym_restrict] = ACTIONS(1479), - [anon_sym__Atomic] = ACTIONS(1479), - [anon_sym_in] = ACTIONS(1479), - [anon_sym_out] = ACTIONS(1479), - [anon_sym_inout] = ACTIONS(1479), - [anon_sym_bycopy] = ACTIONS(1479), - [anon_sym_byref] = ACTIONS(1479), - [anon_sym_oneway] = ACTIONS(1479), - [anon_sym__Nullable] = ACTIONS(1479), - [anon_sym__Nonnull] = ACTIONS(1479), - [anon_sym__Nullable_result] = ACTIONS(1479), - [anon_sym__Null_unspecified] = ACTIONS(1479), - [anon_sym___autoreleasing] = ACTIONS(1479), - [anon_sym___nullable] = ACTIONS(1479), - [anon_sym___nonnull] = ACTIONS(1479), - [anon_sym___strong] = ACTIONS(1479), - [anon_sym___weak] = ACTIONS(1479), - [anon_sym___bridge] = ACTIONS(1479), - [anon_sym___bridge_transfer] = ACTIONS(1479), - [anon_sym___bridge_retained] = ACTIONS(1479), - [anon_sym___unsafe_unretained] = ACTIONS(1479), - [anon_sym___block] = ACTIONS(1479), - [anon_sym___kindof] = ACTIONS(1479), - [anon_sym___unused] = ACTIONS(1479), - [anon_sym__Complex] = ACTIONS(1479), - [anon_sym___complex] = ACTIONS(1479), - [anon_sym_IBOutlet] = ACTIONS(1479), - [anon_sym_IBInspectable] = ACTIONS(1479), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1479), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1479), - [anon_sym_enum] = ACTIONS(1479), - [anon_sym_NS_ENUM] = ACTIONS(1479), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1479), - [anon_sym_NS_OPTIONS] = ACTIONS(1479), - [anon_sym_struct] = ACTIONS(1479), - [anon_sym_union] = ACTIONS(1479), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_else] = ACTIONS(1479), - [anon_sym_switch] = ACTIONS(1479), - [anon_sym_case] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_do] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_goto] = ACTIONS(1479), - [anon_sym_DASH_DASH] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1477), - [anon_sym_sizeof] = ACTIONS(1479), - [sym_number_literal] = ACTIONS(1477), - [anon_sym_L_SQUOTE] = ACTIONS(1477), - [anon_sym_u_SQUOTE] = ACTIONS(1477), - [anon_sym_U_SQUOTE] = ACTIONS(1477), - [anon_sym_u8_SQUOTE] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_L_DQUOTE] = ACTIONS(1477), - [anon_sym_u_DQUOTE] = ACTIONS(1477), - [anon_sym_U_DQUOTE] = ACTIONS(1477), - [anon_sym_u8_DQUOTE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1477), - [sym_true] = ACTIONS(1479), - [sym_false] = ACTIONS(1479), - [sym_null] = ACTIONS(1479), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1477), - [anon_sym_ATimport] = ACTIONS(1477), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1479), - [anon_sym_ATcompatibility_alias] = ACTIONS(1477), - [anon_sym_ATprotocol] = ACTIONS(1477), - [anon_sym_ATclass] = ACTIONS(1477), - [anon_sym_ATinterface] = ACTIONS(1477), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1479), - [sym_method_attribute_specifier] = ACTIONS(1479), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1479), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1479), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1479), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1479), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1479), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1479), - [anon_sym_NS_AVAILABLE] = ACTIONS(1479), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1479), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1479), - [anon_sym_API_AVAILABLE] = ACTIONS(1479), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1479), - [anon_sym_API_DEPRECATED] = ACTIONS(1479), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1479), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1479), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1479), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1479), - [anon_sym___deprecated_msg] = ACTIONS(1479), - [anon_sym___deprecated_enum_msg] = ACTIONS(1479), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1479), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1479), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1479), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1479), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1479), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1479), - [anon_sym_ATimplementation] = ACTIONS(1477), - [anon_sym_typeof] = ACTIONS(1479), - [anon_sym___typeof] = ACTIONS(1479), - [anon_sym___typeof__] = ACTIONS(1479), - [sym_self] = ACTIONS(1479), - [sym_super] = ACTIONS(1479), - [sym_nil] = ACTIONS(1479), - [sym_id] = ACTIONS(1479), - [sym_instancetype] = ACTIONS(1479), - [sym_Class] = ACTIONS(1479), - [sym_SEL] = ACTIONS(1479), - [sym_IMP] = ACTIONS(1479), - [sym_BOOL] = ACTIONS(1479), - [sym_auto] = ACTIONS(1479), - [anon_sym_ATautoreleasepool] = ACTIONS(1477), - [anon_sym_ATsynchronized] = ACTIONS(1477), - [anon_sym_ATtry] = ACTIONS(1477), - [anon_sym_ATcatch] = ACTIONS(1477), - [anon_sym_ATfinally] = ACTIONS(1477), - [anon_sym_ATthrow] = ACTIONS(1477), - [anon_sym_ATselector] = ACTIONS(1477), - [anon_sym_ATencode] = ACTIONS(1477), - [anon_sym_AT] = ACTIONS(1479), - [sym_YES] = ACTIONS(1479), - [sym_NO] = ACTIONS(1479), - [anon_sym___builtin_available] = ACTIONS(1479), - [anon_sym_ATavailable] = ACTIONS(1477), - [anon_sym_va_arg] = ACTIONS(1479), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [370] = { - [sym_identifier] = ACTIONS(1413), - [aux_sym_preproc_include_token1] = ACTIONS(1415), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [aux_sym_preproc_if_token1] = ACTIONS(1413), - [aux_sym_preproc_if_token2] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym___attribute] = ACTIONS(1413), - [anon_sym___attribute__] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1413), - [anon_sym___cdecl] = ACTIONS(1413), - [anon_sym___clrcall] = ACTIONS(1413), - [anon_sym___stdcall] = ACTIONS(1413), - [anon_sym___fastcall] = ACTIONS(1413), - [anon_sym___thiscall] = ACTIONS(1413), - [anon_sym___vectorcall] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_auto] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_inline] = ACTIONS(1413), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_volatile] = ACTIONS(1413), - [anon_sym_restrict] = ACTIONS(1413), - [anon_sym__Atomic] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_out] = ACTIONS(1413), - [anon_sym_inout] = ACTIONS(1413), - [anon_sym_bycopy] = ACTIONS(1413), - [anon_sym_byref] = ACTIONS(1413), - [anon_sym_oneway] = ACTIONS(1413), - [anon_sym__Nullable] = ACTIONS(1413), - [anon_sym__Nonnull] = ACTIONS(1413), - [anon_sym__Nullable_result] = ACTIONS(1413), - [anon_sym__Null_unspecified] = ACTIONS(1413), - [anon_sym___autoreleasing] = ACTIONS(1413), - [anon_sym___nullable] = ACTIONS(1413), - [anon_sym___nonnull] = ACTIONS(1413), - [anon_sym___strong] = ACTIONS(1413), - [anon_sym___weak] = ACTIONS(1413), - [anon_sym___bridge] = ACTIONS(1413), - [anon_sym___bridge_transfer] = ACTIONS(1413), - [anon_sym___bridge_retained] = ACTIONS(1413), - [anon_sym___unsafe_unretained] = ACTIONS(1413), - [anon_sym___block] = ACTIONS(1413), - [anon_sym___kindof] = ACTIONS(1413), - [anon_sym___unused] = ACTIONS(1413), - [anon_sym__Complex] = ACTIONS(1413), - [anon_sym___complex] = ACTIONS(1413), - [anon_sym_IBOutlet] = ACTIONS(1413), - [anon_sym_IBInspectable] = ACTIONS(1413), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1413), - [anon_sym_unsigned] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [sym_primitive_type] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_NS_ENUM] = ACTIONS(1413), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1413), - [anon_sym_NS_OPTIONS] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_case] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_goto] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_sizeof] = ACTIONS(1413), - [sym_number_literal] = ACTIONS(1415), - [anon_sym_L_SQUOTE] = ACTIONS(1415), - [anon_sym_u_SQUOTE] = ACTIONS(1415), - [anon_sym_U_SQUOTE] = ACTIONS(1415), - [anon_sym_u8_SQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_L_DQUOTE] = ACTIONS(1415), - [anon_sym_u_DQUOTE] = ACTIONS(1415), - [anon_sym_U_DQUOTE] = ACTIONS(1415), - [anon_sym_u8_DQUOTE] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [sym_true] = ACTIONS(1413), - [sym_false] = ACTIONS(1413), - [sym_null] = ACTIONS(1413), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1415), - [anon_sym_ATimport] = ACTIONS(1415), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1413), - [anon_sym_ATcompatibility_alias] = ACTIONS(1415), - [anon_sym_ATprotocol] = ACTIONS(1415), - [anon_sym_ATclass] = ACTIONS(1415), - [anon_sym_ATinterface] = ACTIONS(1415), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1413), - [sym_method_attribute_specifier] = ACTIONS(1413), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1413), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE] = ACTIONS(1413), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_API_AVAILABLE] = ACTIONS(1413), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_API_DEPRECATED] = ACTIONS(1413), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1413), - [anon_sym___deprecated_msg] = ACTIONS(1413), - [anon_sym___deprecated_enum_msg] = ACTIONS(1413), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1413), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1413), - [anon_sym_ATimplementation] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym___typeof] = ACTIONS(1413), - [anon_sym___typeof__] = ACTIONS(1413), - [sym_self] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_nil] = ACTIONS(1413), - [sym_id] = ACTIONS(1413), - [sym_instancetype] = ACTIONS(1413), - [sym_Class] = ACTIONS(1413), - [sym_SEL] = ACTIONS(1413), - [sym_IMP] = ACTIONS(1413), - [sym_BOOL] = ACTIONS(1413), - [sym_auto] = ACTIONS(1413), - [anon_sym_ATautoreleasepool] = ACTIONS(1415), - [anon_sym_ATsynchronized] = ACTIONS(1415), - [anon_sym_ATtry] = ACTIONS(1415), - [anon_sym_ATcatch] = ACTIONS(1415), - [anon_sym_ATfinally] = ACTIONS(1415), - [anon_sym_ATthrow] = ACTIONS(1415), - [anon_sym_ATselector] = ACTIONS(1415), - [anon_sym_ATencode] = ACTIONS(1415), - [anon_sym_AT] = ACTIONS(1413), - [sym_YES] = ACTIONS(1413), - [sym_NO] = ACTIONS(1413), - [anon_sym___builtin_available] = ACTIONS(1413), - [anon_sym_ATavailable] = ACTIONS(1415), - [anon_sym_va_arg] = ACTIONS(1413), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [371] = { - [sym_identifier] = ACTIONS(1463), - [aux_sym_preproc_include_token1] = ACTIONS(1461), - [aux_sym_preproc_def_token1] = ACTIONS(1461), - [aux_sym_preproc_if_token1] = ACTIONS(1463), - [aux_sym_preproc_if_token2] = ACTIONS(1463), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1463), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1463), - [anon_sym_LPAREN2] = ACTIONS(1461), - [anon_sym_BANG] = ACTIONS(1461), - [anon_sym_TILDE] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1461), - [anon_sym_CARET] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1461), - [anon_sym_SEMI] = ACTIONS(1461), - [anon_sym_typedef] = ACTIONS(1463), - [anon_sym_extern] = ACTIONS(1463), - [anon_sym___attribute] = ACTIONS(1463), - [anon_sym___attribute__] = ACTIONS(1463), - [anon_sym___declspec] = ACTIONS(1463), - [anon_sym___cdecl] = ACTIONS(1463), - [anon_sym___clrcall] = ACTIONS(1463), - [anon_sym___stdcall] = ACTIONS(1463), - [anon_sym___fastcall] = ACTIONS(1463), - [anon_sym___thiscall] = ACTIONS(1463), - [anon_sym___vectorcall] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1461), - [anon_sym_static] = ACTIONS(1463), - [anon_sym_auto] = ACTIONS(1463), - [anon_sym_register] = ACTIONS(1463), - [anon_sym_inline] = ACTIONS(1463), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_volatile] = ACTIONS(1463), - [anon_sym_restrict] = ACTIONS(1463), - [anon_sym__Atomic] = ACTIONS(1463), - [anon_sym_in] = ACTIONS(1463), - [anon_sym_out] = ACTIONS(1463), - [anon_sym_inout] = ACTIONS(1463), - [anon_sym_bycopy] = ACTIONS(1463), - [anon_sym_byref] = ACTIONS(1463), - [anon_sym_oneway] = ACTIONS(1463), - [anon_sym__Nullable] = ACTIONS(1463), - [anon_sym__Nonnull] = ACTIONS(1463), - [anon_sym__Nullable_result] = ACTIONS(1463), - [anon_sym__Null_unspecified] = ACTIONS(1463), - [anon_sym___autoreleasing] = ACTIONS(1463), - [anon_sym___nullable] = ACTIONS(1463), - [anon_sym___nonnull] = ACTIONS(1463), - [anon_sym___strong] = ACTIONS(1463), - [anon_sym___weak] = ACTIONS(1463), - [anon_sym___bridge] = ACTIONS(1463), - [anon_sym___bridge_transfer] = ACTIONS(1463), - [anon_sym___bridge_retained] = ACTIONS(1463), - [anon_sym___unsafe_unretained] = ACTIONS(1463), - [anon_sym___block] = ACTIONS(1463), - [anon_sym___kindof] = ACTIONS(1463), - [anon_sym___unused] = ACTIONS(1463), - [anon_sym__Complex] = ACTIONS(1463), - [anon_sym___complex] = ACTIONS(1463), - [anon_sym_IBOutlet] = ACTIONS(1463), - [anon_sym_IBInspectable] = ACTIONS(1463), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1463), - [anon_sym_signed] = ACTIONS(1463), - [anon_sym_unsigned] = ACTIONS(1463), - [anon_sym_long] = ACTIONS(1463), - [anon_sym_short] = ACTIONS(1463), - [sym_primitive_type] = ACTIONS(1463), - [anon_sym_enum] = ACTIONS(1463), - [anon_sym_NS_ENUM] = ACTIONS(1463), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1463), - [anon_sym_NS_OPTIONS] = ACTIONS(1463), - [anon_sym_struct] = ACTIONS(1463), - [anon_sym_union] = ACTIONS(1463), - [anon_sym_if] = ACTIONS(1463), - [anon_sym_else] = ACTIONS(1463), - [anon_sym_switch] = ACTIONS(1463), - [anon_sym_case] = ACTIONS(1463), - [anon_sym_default] = ACTIONS(1463), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_do] = ACTIONS(1463), - [anon_sym_for] = ACTIONS(1463), - [anon_sym_return] = ACTIONS(1463), - [anon_sym_break] = ACTIONS(1463), - [anon_sym_continue] = ACTIONS(1463), - [anon_sym_goto] = ACTIONS(1463), - [anon_sym_DASH_DASH] = ACTIONS(1461), - [anon_sym_PLUS_PLUS] = ACTIONS(1461), - [anon_sym_sizeof] = ACTIONS(1463), - [sym_number_literal] = ACTIONS(1461), - [anon_sym_L_SQUOTE] = ACTIONS(1461), - [anon_sym_u_SQUOTE] = ACTIONS(1461), - [anon_sym_U_SQUOTE] = ACTIONS(1461), - [anon_sym_u8_SQUOTE] = ACTIONS(1461), - [anon_sym_SQUOTE] = ACTIONS(1461), - [anon_sym_L_DQUOTE] = ACTIONS(1461), - [anon_sym_u_DQUOTE] = ACTIONS(1461), - [anon_sym_U_DQUOTE] = ACTIONS(1461), - [anon_sym_u8_DQUOTE] = ACTIONS(1461), - [anon_sym_DQUOTE] = ACTIONS(1461), - [sym_true] = ACTIONS(1463), - [sym_false] = ACTIONS(1463), - [sym_null] = ACTIONS(1463), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1461), - [anon_sym_ATimport] = ACTIONS(1461), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1463), - [anon_sym_ATcompatibility_alias] = ACTIONS(1461), - [anon_sym_ATprotocol] = ACTIONS(1461), - [anon_sym_ATclass] = ACTIONS(1461), - [anon_sym_ATinterface] = ACTIONS(1461), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1463), - [sym_method_attribute_specifier] = ACTIONS(1463), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1463), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1463), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1463), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1463), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1463), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1463), - [anon_sym_NS_AVAILABLE] = ACTIONS(1463), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1463), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1463), - [anon_sym_API_AVAILABLE] = ACTIONS(1463), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1463), - [anon_sym_API_DEPRECATED] = ACTIONS(1463), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1463), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1463), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1463), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1463), - [anon_sym___deprecated_msg] = ACTIONS(1463), - [anon_sym___deprecated_enum_msg] = ACTIONS(1463), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1463), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1463), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1463), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1463), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1463), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1463), - [anon_sym_ATimplementation] = ACTIONS(1461), - [anon_sym_typeof] = ACTIONS(1463), - [anon_sym___typeof] = ACTIONS(1463), - [anon_sym___typeof__] = ACTIONS(1463), - [sym_self] = ACTIONS(1463), - [sym_super] = ACTIONS(1463), - [sym_nil] = ACTIONS(1463), - [sym_id] = ACTIONS(1463), - [sym_instancetype] = ACTIONS(1463), - [sym_Class] = ACTIONS(1463), - [sym_SEL] = ACTIONS(1463), - [sym_IMP] = ACTIONS(1463), - [sym_BOOL] = ACTIONS(1463), - [sym_auto] = ACTIONS(1463), - [anon_sym_ATautoreleasepool] = ACTIONS(1461), - [anon_sym_ATsynchronized] = ACTIONS(1461), - [anon_sym_ATtry] = ACTIONS(1461), - [anon_sym_ATcatch] = ACTIONS(1461), - [anon_sym_ATfinally] = ACTIONS(1461), - [anon_sym_ATthrow] = ACTIONS(1461), - [anon_sym_ATselector] = ACTIONS(1461), - [anon_sym_ATencode] = ACTIONS(1461), - [anon_sym_AT] = ACTIONS(1463), - [sym_YES] = ACTIONS(1463), - [sym_NO] = ACTIONS(1463), - [anon_sym___builtin_available] = ACTIONS(1463), - [anon_sym_ATavailable] = ACTIONS(1461), - [anon_sym_va_arg] = ACTIONS(1463), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [372] = { - [sym_identifier] = ACTIONS(1459), - [aux_sym_preproc_include_token1] = ACTIONS(1457), - [aux_sym_preproc_def_token1] = ACTIONS(1457), - [aux_sym_preproc_if_token1] = ACTIONS(1459), - [aux_sym_preproc_if_token2] = ACTIONS(1459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1459), - [anon_sym_LPAREN2] = ACTIONS(1457), - [anon_sym_BANG] = ACTIONS(1457), - [anon_sym_TILDE] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1457), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_AMP] = ACTIONS(1457), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_typedef] = ACTIONS(1459), - [anon_sym_extern] = ACTIONS(1459), - [anon_sym___attribute] = ACTIONS(1459), - [anon_sym___attribute__] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(1459), - [anon_sym___cdecl] = ACTIONS(1459), - [anon_sym___clrcall] = ACTIONS(1459), - [anon_sym___stdcall] = ACTIONS(1459), - [anon_sym___fastcall] = ACTIONS(1459), - [anon_sym___thiscall] = ACTIONS(1459), - [anon_sym___vectorcall] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_static] = ACTIONS(1459), - [anon_sym_auto] = ACTIONS(1459), - [anon_sym_register] = ACTIONS(1459), - [anon_sym_inline] = ACTIONS(1459), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1459), - [anon_sym_volatile] = ACTIONS(1459), - [anon_sym_restrict] = ACTIONS(1459), - [anon_sym__Atomic] = ACTIONS(1459), - [anon_sym_in] = ACTIONS(1459), - [anon_sym_out] = ACTIONS(1459), - [anon_sym_inout] = ACTIONS(1459), - [anon_sym_bycopy] = ACTIONS(1459), - [anon_sym_byref] = ACTIONS(1459), - [anon_sym_oneway] = ACTIONS(1459), - [anon_sym__Nullable] = ACTIONS(1459), - [anon_sym__Nonnull] = ACTIONS(1459), - [anon_sym__Nullable_result] = ACTIONS(1459), - [anon_sym__Null_unspecified] = ACTIONS(1459), - [anon_sym___autoreleasing] = ACTIONS(1459), - [anon_sym___nullable] = ACTIONS(1459), - [anon_sym___nonnull] = ACTIONS(1459), - [anon_sym___strong] = ACTIONS(1459), - [anon_sym___weak] = ACTIONS(1459), - [anon_sym___bridge] = ACTIONS(1459), - [anon_sym___bridge_transfer] = ACTIONS(1459), - [anon_sym___bridge_retained] = ACTIONS(1459), - [anon_sym___unsafe_unretained] = ACTIONS(1459), - [anon_sym___block] = ACTIONS(1459), - [anon_sym___kindof] = ACTIONS(1459), - [anon_sym___unused] = ACTIONS(1459), - [anon_sym__Complex] = ACTIONS(1459), - [anon_sym___complex] = ACTIONS(1459), - [anon_sym_IBOutlet] = ACTIONS(1459), - [anon_sym_IBInspectable] = ACTIONS(1459), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1459), - [anon_sym_signed] = ACTIONS(1459), - [anon_sym_unsigned] = ACTIONS(1459), - [anon_sym_long] = ACTIONS(1459), - [anon_sym_short] = ACTIONS(1459), - [sym_primitive_type] = ACTIONS(1459), - [anon_sym_enum] = ACTIONS(1459), - [anon_sym_NS_ENUM] = ACTIONS(1459), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1459), - [anon_sym_NS_OPTIONS] = ACTIONS(1459), - [anon_sym_struct] = ACTIONS(1459), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_if] = ACTIONS(1459), - [anon_sym_else] = ACTIONS(1459), - [anon_sym_switch] = ACTIONS(1459), - [anon_sym_case] = ACTIONS(1459), - [anon_sym_default] = ACTIONS(1459), - [anon_sym_while] = ACTIONS(1459), - [anon_sym_do] = ACTIONS(1459), - [anon_sym_for] = ACTIONS(1459), - [anon_sym_return] = ACTIONS(1459), - [anon_sym_break] = ACTIONS(1459), - [anon_sym_continue] = ACTIONS(1459), - [anon_sym_goto] = ACTIONS(1459), - [anon_sym_DASH_DASH] = ACTIONS(1457), - [anon_sym_PLUS_PLUS] = ACTIONS(1457), - [anon_sym_sizeof] = ACTIONS(1459), - [sym_number_literal] = ACTIONS(1457), - [anon_sym_L_SQUOTE] = ACTIONS(1457), - [anon_sym_u_SQUOTE] = ACTIONS(1457), - [anon_sym_U_SQUOTE] = ACTIONS(1457), - [anon_sym_u8_SQUOTE] = ACTIONS(1457), - [anon_sym_SQUOTE] = ACTIONS(1457), - [anon_sym_L_DQUOTE] = ACTIONS(1457), - [anon_sym_u_DQUOTE] = ACTIONS(1457), - [anon_sym_U_DQUOTE] = ACTIONS(1457), - [anon_sym_u8_DQUOTE] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(1457), - [sym_true] = ACTIONS(1459), - [sym_false] = ACTIONS(1459), - [sym_null] = ACTIONS(1459), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1457), - [anon_sym_ATimport] = ACTIONS(1457), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1459), - [anon_sym_ATcompatibility_alias] = ACTIONS(1457), - [anon_sym_ATprotocol] = ACTIONS(1457), - [anon_sym_ATclass] = ACTIONS(1457), - [anon_sym_ATinterface] = ACTIONS(1457), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1459), - [sym_method_attribute_specifier] = ACTIONS(1459), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1459), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1459), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1459), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1459), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1459), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1459), - [anon_sym_NS_AVAILABLE] = ACTIONS(1459), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1459), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1459), - [anon_sym_API_AVAILABLE] = ACTIONS(1459), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1459), - [anon_sym_API_DEPRECATED] = ACTIONS(1459), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1459), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1459), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1459), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1459), - [anon_sym___deprecated_msg] = ACTIONS(1459), - [anon_sym___deprecated_enum_msg] = ACTIONS(1459), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1459), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1459), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1459), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1459), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1459), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1459), - [anon_sym_ATimplementation] = ACTIONS(1457), - [anon_sym_typeof] = ACTIONS(1459), - [anon_sym___typeof] = ACTIONS(1459), - [anon_sym___typeof__] = ACTIONS(1459), - [sym_self] = ACTIONS(1459), - [sym_super] = ACTIONS(1459), - [sym_nil] = ACTIONS(1459), - [sym_id] = ACTIONS(1459), - [sym_instancetype] = ACTIONS(1459), - [sym_Class] = ACTIONS(1459), - [sym_SEL] = ACTIONS(1459), - [sym_IMP] = ACTIONS(1459), - [sym_BOOL] = ACTIONS(1459), - [sym_auto] = ACTIONS(1459), - [anon_sym_ATautoreleasepool] = ACTIONS(1457), - [anon_sym_ATsynchronized] = ACTIONS(1457), - [anon_sym_ATtry] = ACTIONS(1457), - [anon_sym_ATcatch] = ACTIONS(1457), - [anon_sym_ATfinally] = ACTIONS(1457), - [anon_sym_ATthrow] = ACTIONS(1457), - [anon_sym_ATselector] = ACTIONS(1457), - [anon_sym_ATencode] = ACTIONS(1457), - [anon_sym_AT] = ACTIONS(1459), - [sym_YES] = ACTIONS(1459), - [sym_NO] = ACTIONS(1459), - [anon_sym___builtin_available] = ACTIONS(1459), - [anon_sym_ATavailable] = ACTIONS(1457), - [anon_sym_va_arg] = ACTIONS(1459), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [373] = { - [sym_identifier] = ACTIONS(1447), - [aux_sym_preproc_include_token1] = ACTIONS(1445), - [aux_sym_preproc_def_token1] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1447), - [aux_sym_preproc_if_token2] = ACTIONS(1447), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1447), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1447), - [anon_sym_LPAREN2] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1445), - [anon_sym_TILDE] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_CARET] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_typedef] = ACTIONS(1447), - [anon_sym_extern] = ACTIONS(1447), - [anon_sym___attribute] = ACTIONS(1447), - [anon_sym___attribute__] = ACTIONS(1447), - [anon_sym___declspec] = ACTIONS(1447), - [anon_sym___cdecl] = ACTIONS(1447), - [anon_sym___clrcall] = ACTIONS(1447), - [anon_sym___stdcall] = ACTIONS(1447), - [anon_sym___fastcall] = ACTIONS(1447), - [anon_sym___thiscall] = ACTIONS(1447), - [anon_sym___vectorcall] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_auto] = ACTIONS(1447), - [anon_sym_register] = ACTIONS(1447), - [anon_sym_inline] = ACTIONS(1447), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_volatile] = ACTIONS(1447), - [anon_sym_restrict] = ACTIONS(1447), - [anon_sym__Atomic] = ACTIONS(1447), - [anon_sym_in] = ACTIONS(1447), - [anon_sym_out] = ACTIONS(1447), - [anon_sym_inout] = ACTIONS(1447), - [anon_sym_bycopy] = ACTIONS(1447), - [anon_sym_byref] = ACTIONS(1447), - [anon_sym_oneway] = ACTIONS(1447), - [anon_sym__Nullable] = ACTIONS(1447), - [anon_sym__Nonnull] = ACTIONS(1447), - [anon_sym__Nullable_result] = ACTIONS(1447), - [anon_sym__Null_unspecified] = ACTIONS(1447), - [anon_sym___autoreleasing] = ACTIONS(1447), - [anon_sym___nullable] = ACTIONS(1447), - [anon_sym___nonnull] = ACTIONS(1447), - [anon_sym___strong] = ACTIONS(1447), - [anon_sym___weak] = ACTIONS(1447), - [anon_sym___bridge] = ACTIONS(1447), - [anon_sym___bridge_transfer] = ACTIONS(1447), - [anon_sym___bridge_retained] = ACTIONS(1447), - [anon_sym___unsafe_unretained] = ACTIONS(1447), - [anon_sym___block] = ACTIONS(1447), - [anon_sym___kindof] = ACTIONS(1447), - [anon_sym___unused] = ACTIONS(1447), - [anon_sym__Complex] = ACTIONS(1447), - [anon_sym___complex] = ACTIONS(1447), - [anon_sym_IBOutlet] = ACTIONS(1447), - [anon_sym_IBInspectable] = ACTIONS(1447), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1447), - [anon_sym_signed] = ACTIONS(1447), - [anon_sym_unsigned] = ACTIONS(1447), - [anon_sym_long] = ACTIONS(1447), - [anon_sym_short] = ACTIONS(1447), - [sym_primitive_type] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1447), - [anon_sym_NS_ENUM] = ACTIONS(1447), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1447), - [anon_sym_NS_OPTIONS] = ACTIONS(1447), - [anon_sym_struct] = ACTIONS(1447), - [anon_sym_union] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_else] = ACTIONS(1447), - [anon_sym_switch] = ACTIONS(1447), - [anon_sym_case] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_do] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_goto] = ACTIONS(1447), - [anon_sym_DASH_DASH] = ACTIONS(1445), - [anon_sym_PLUS_PLUS] = ACTIONS(1445), - [anon_sym_sizeof] = ACTIONS(1447), - [sym_number_literal] = ACTIONS(1445), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1445), - [anon_sym_u_DQUOTE] = ACTIONS(1445), - [anon_sym_U_DQUOTE] = ACTIONS(1445), - [anon_sym_u8_DQUOTE] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1445), - [sym_true] = ACTIONS(1447), - [sym_false] = ACTIONS(1447), - [sym_null] = ACTIONS(1447), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1445), - [anon_sym_ATimport] = ACTIONS(1445), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1447), - [anon_sym_ATcompatibility_alias] = ACTIONS(1445), - [anon_sym_ATprotocol] = ACTIONS(1445), - [anon_sym_ATclass] = ACTIONS(1445), - [anon_sym_ATinterface] = ACTIONS(1445), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1447), - [sym_method_attribute_specifier] = ACTIONS(1447), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1447), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1447), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1447), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1447), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1447), - [anon_sym_NS_AVAILABLE] = ACTIONS(1447), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1447), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_API_AVAILABLE] = ACTIONS(1447), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_API_DEPRECATED] = ACTIONS(1447), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1447), - [anon_sym___deprecated_msg] = ACTIONS(1447), - [anon_sym___deprecated_enum_msg] = ACTIONS(1447), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1447), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1447), - [anon_sym_ATimplementation] = ACTIONS(1445), - [anon_sym_typeof] = ACTIONS(1447), - [anon_sym___typeof] = ACTIONS(1447), - [anon_sym___typeof__] = ACTIONS(1447), - [sym_self] = ACTIONS(1447), - [sym_super] = ACTIONS(1447), - [sym_nil] = ACTIONS(1447), - [sym_id] = ACTIONS(1447), - [sym_instancetype] = ACTIONS(1447), - [sym_Class] = ACTIONS(1447), - [sym_SEL] = ACTIONS(1447), - [sym_IMP] = ACTIONS(1447), - [sym_BOOL] = ACTIONS(1447), - [sym_auto] = ACTIONS(1447), - [anon_sym_ATautoreleasepool] = ACTIONS(1445), - [anon_sym_ATsynchronized] = ACTIONS(1445), - [anon_sym_ATtry] = ACTIONS(1445), - [anon_sym_ATcatch] = ACTIONS(1445), - [anon_sym_ATfinally] = ACTIONS(1445), - [anon_sym_ATthrow] = ACTIONS(1445), - [anon_sym_ATselector] = ACTIONS(1445), - [anon_sym_ATencode] = ACTIONS(1445), - [anon_sym_AT] = ACTIONS(1447), - [sym_YES] = ACTIONS(1447), - [sym_NO] = ACTIONS(1447), - [anon_sym___builtin_available] = ACTIONS(1447), - [anon_sym_ATavailable] = ACTIONS(1445), - [anon_sym_va_arg] = ACTIONS(1447), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [374] = { - [sym_identifier] = ACTIONS(1447), - [aux_sym_preproc_include_token1] = ACTIONS(1445), - [aux_sym_preproc_def_token1] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1447), - [aux_sym_preproc_if_token2] = ACTIONS(1447), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1447), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1447), - [anon_sym_LPAREN2] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1445), - [anon_sym_TILDE] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_CARET] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_typedef] = ACTIONS(1447), - [anon_sym_extern] = ACTIONS(1447), - [anon_sym___attribute] = ACTIONS(1447), - [anon_sym___attribute__] = ACTIONS(1447), - [anon_sym___declspec] = ACTIONS(1447), - [anon_sym___cdecl] = ACTIONS(1447), - [anon_sym___clrcall] = ACTIONS(1447), - [anon_sym___stdcall] = ACTIONS(1447), - [anon_sym___fastcall] = ACTIONS(1447), - [anon_sym___thiscall] = ACTIONS(1447), - [anon_sym___vectorcall] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_auto] = ACTIONS(1447), - [anon_sym_register] = ACTIONS(1447), - [anon_sym_inline] = ACTIONS(1447), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_volatile] = ACTIONS(1447), - [anon_sym_restrict] = ACTIONS(1447), - [anon_sym__Atomic] = ACTIONS(1447), - [anon_sym_in] = ACTIONS(1447), - [anon_sym_out] = ACTIONS(1447), - [anon_sym_inout] = ACTIONS(1447), - [anon_sym_bycopy] = ACTIONS(1447), - [anon_sym_byref] = ACTIONS(1447), - [anon_sym_oneway] = ACTIONS(1447), - [anon_sym__Nullable] = ACTIONS(1447), - [anon_sym__Nonnull] = ACTIONS(1447), - [anon_sym__Nullable_result] = ACTIONS(1447), - [anon_sym__Null_unspecified] = ACTIONS(1447), - [anon_sym___autoreleasing] = ACTIONS(1447), - [anon_sym___nullable] = ACTIONS(1447), - [anon_sym___nonnull] = ACTIONS(1447), - [anon_sym___strong] = ACTIONS(1447), - [anon_sym___weak] = ACTIONS(1447), - [anon_sym___bridge] = ACTIONS(1447), - [anon_sym___bridge_transfer] = ACTIONS(1447), - [anon_sym___bridge_retained] = ACTIONS(1447), - [anon_sym___unsafe_unretained] = ACTIONS(1447), - [anon_sym___block] = ACTIONS(1447), - [anon_sym___kindof] = ACTIONS(1447), - [anon_sym___unused] = ACTIONS(1447), - [anon_sym__Complex] = ACTIONS(1447), - [anon_sym___complex] = ACTIONS(1447), - [anon_sym_IBOutlet] = ACTIONS(1447), - [anon_sym_IBInspectable] = ACTIONS(1447), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1447), - [anon_sym_signed] = ACTIONS(1447), - [anon_sym_unsigned] = ACTIONS(1447), - [anon_sym_long] = ACTIONS(1447), - [anon_sym_short] = ACTIONS(1447), - [sym_primitive_type] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1447), - [anon_sym_NS_ENUM] = ACTIONS(1447), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1447), - [anon_sym_NS_OPTIONS] = ACTIONS(1447), - [anon_sym_struct] = ACTIONS(1447), - [anon_sym_union] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_else] = ACTIONS(1447), - [anon_sym_switch] = ACTIONS(1447), - [anon_sym_case] = ACTIONS(1447), - [anon_sym_default] = ACTIONS(1447), - [anon_sym_while] = ACTIONS(1447), - [anon_sym_do] = ACTIONS(1447), - [anon_sym_for] = ACTIONS(1447), - [anon_sym_return] = ACTIONS(1447), - [anon_sym_break] = ACTIONS(1447), - [anon_sym_continue] = ACTIONS(1447), - [anon_sym_goto] = ACTIONS(1447), - [anon_sym_DASH_DASH] = ACTIONS(1445), - [anon_sym_PLUS_PLUS] = ACTIONS(1445), - [anon_sym_sizeof] = ACTIONS(1447), - [sym_number_literal] = ACTIONS(1445), - [anon_sym_L_SQUOTE] = ACTIONS(1445), - [anon_sym_u_SQUOTE] = ACTIONS(1445), - [anon_sym_U_SQUOTE] = ACTIONS(1445), - [anon_sym_u8_SQUOTE] = ACTIONS(1445), - [anon_sym_SQUOTE] = ACTIONS(1445), - [anon_sym_L_DQUOTE] = ACTIONS(1445), - [anon_sym_u_DQUOTE] = ACTIONS(1445), - [anon_sym_U_DQUOTE] = ACTIONS(1445), - [anon_sym_u8_DQUOTE] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1445), - [sym_true] = ACTIONS(1447), - [sym_false] = ACTIONS(1447), - [sym_null] = ACTIONS(1447), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1445), - [anon_sym_ATimport] = ACTIONS(1445), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1447), - [anon_sym_ATcompatibility_alias] = ACTIONS(1445), - [anon_sym_ATprotocol] = ACTIONS(1445), - [anon_sym_ATclass] = ACTIONS(1445), - [anon_sym_ATinterface] = ACTIONS(1445), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1447), - [sym_method_attribute_specifier] = ACTIONS(1447), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1447), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1447), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1447), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1447), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1447), - [anon_sym_NS_AVAILABLE] = ACTIONS(1447), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1447), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_API_AVAILABLE] = ACTIONS(1447), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_API_DEPRECATED] = ACTIONS(1447), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1447), - [anon_sym___deprecated_msg] = ACTIONS(1447), - [anon_sym___deprecated_enum_msg] = ACTIONS(1447), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1447), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1447), - [anon_sym_ATimplementation] = ACTIONS(1445), - [anon_sym_typeof] = ACTIONS(1447), - [anon_sym___typeof] = ACTIONS(1447), - [anon_sym___typeof__] = ACTIONS(1447), - [sym_self] = ACTIONS(1447), - [sym_super] = ACTIONS(1447), - [sym_nil] = ACTIONS(1447), - [sym_id] = ACTIONS(1447), - [sym_instancetype] = ACTIONS(1447), - [sym_Class] = ACTIONS(1447), - [sym_SEL] = ACTIONS(1447), - [sym_IMP] = ACTIONS(1447), - [sym_BOOL] = ACTIONS(1447), - [sym_auto] = ACTIONS(1447), - [anon_sym_ATautoreleasepool] = ACTIONS(1445), - [anon_sym_ATsynchronized] = ACTIONS(1445), - [anon_sym_ATtry] = ACTIONS(1445), - [anon_sym_ATcatch] = ACTIONS(1445), - [anon_sym_ATfinally] = ACTIONS(1445), - [anon_sym_ATthrow] = ACTIONS(1445), - [anon_sym_ATselector] = ACTIONS(1445), - [anon_sym_ATencode] = ACTIONS(1445), - [anon_sym_AT] = ACTIONS(1447), - [sym_YES] = ACTIONS(1447), - [sym_NO] = ACTIONS(1447), - [anon_sym___builtin_available] = ACTIONS(1447), - [anon_sym_ATavailable] = ACTIONS(1445), - [anon_sym_va_arg] = ACTIONS(1447), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [375] = { - [sym_identifier] = ACTIONS(1585), - [aux_sym_preproc_include_token1] = ACTIONS(1587), - [aux_sym_preproc_def_token1] = ACTIONS(1587), - [aux_sym_preproc_if_token1] = ACTIONS(1585), - [aux_sym_preproc_if_token2] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1585), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1585), - [anon_sym_LPAREN2] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_typedef] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym___attribute] = ACTIONS(1585), - [anon_sym___attribute__] = ACTIONS(1585), - [anon_sym___declspec] = ACTIONS(1585), - [anon_sym___cdecl] = ACTIONS(1585), - [anon_sym___clrcall] = ACTIONS(1585), - [anon_sym___stdcall] = ACTIONS(1585), - [anon_sym___fastcall] = ACTIONS(1585), - [anon_sym___thiscall] = ACTIONS(1585), - [anon_sym___vectorcall] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_auto] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_inline] = ACTIONS(1585), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_volatile] = ACTIONS(1585), - [anon_sym_restrict] = ACTIONS(1585), - [anon_sym__Atomic] = ACTIONS(1585), - [anon_sym_in] = ACTIONS(1585), - [anon_sym_out] = ACTIONS(1585), - [anon_sym_inout] = ACTIONS(1585), - [anon_sym_bycopy] = ACTIONS(1585), - [anon_sym_byref] = ACTIONS(1585), - [anon_sym_oneway] = ACTIONS(1585), - [anon_sym__Nullable] = ACTIONS(1585), - [anon_sym__Nonnull] = ACTIONS(1585), - [anon_sym__Nullable_result] = ACTIONS(1585), - [anon_sym__Null_unspecified] = ACTIONS(1585), - [anon_sym___autoreleasing] = ACTIONS(1585), - [anon_sym___nullable] = ACTIONS(1585), - [anon_sym___nonnull] = ACTIONS(1585), - [anon_sym___strong] = ACTIONS(1585), - [anon_sym___weak] = ACTIONS(1585), - [anon_sym___bridge] = ACTIONS(1585), - [anon_sym___bridge_transfer] = ACTIONS(1585), - [anon_sym___bridge_retained] = ACTIONS(1585), - [anon_sym___unsafe_unretained] = ACTIONS(1585), - [anon_sym___block] = ACTIONS(1585), - [anon_sym___kindof] = ACTIONS(1585), - [anon_sym___unused] = ACTIONS(1585), - [anon_sym__Complex] = ACTIONS(1585), - [anon_sym___complex] = ACTIONS(1585), - [anon_sym_IBOutlet] = ACTIONS(1585), - [anon_sym_IBInspectable] = ACTIONS(1585), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1585), - [anon_sym_signed] = ACTIONS(1585), - [anon_sym_unsigned] = ACTIONS(1585), - [anon_sym_long] = ACTIONS(1585), - [anon_sym_short] = ACTIONS(1585), - [sym_primitive_type] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [anon_sym_NS_ENUM] = ACTIONS(1585), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1585), - [anon_sym_NS_OPTIONS] = ACTIONS(1585), - [anon_sym_struct] = ACTIONS(1585), - [anon_sym_union] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1585), - [anon_sym_else] = ACTIONS(1585), - [anon_sym_switch] = ACTIONS(1585), - [anon_sym_case] = ACTIONS(1585), - [anon_sym_default] = ACTIONS(1585), - [anon_sym_while] = ACTIONS(1585), - [anon_sym_do] = ACTIONS(1585), - [anon_sym_for] = ACTIONS(1585), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1585), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_goto] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1587), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1587), - [anon_sym_u_SQUOTE] = ACTIONS(1587), - [anon_sym_U_SQUOTE] = ACTIONS(1587), - [anon_sym_u8_SQUOTE] = ACTIONS(1587), - [anon_sym_SQUOTE] = ACTIONS(1587), - [anon_sym_L_DQUOTE] = ACTIONS(1587), - [anon_sym_u_DQUOTE] = ACTIONS(1587), - [anon_sym_U_DQUOTE] = ACTIONS(1587), - [anon_sym_u8_DQUOTE] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym_true] = ACTIONS(1585), - [sym_false] = ACTIONS(1585), - [sym_null] = ACTIONS(1585), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1587), - [anon_sym_ATimport] = ACTIONS(1587), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1585), - [anon_sym_ATcompatibility_alias] = ACTIONS(1587), - [anon_sym_ATprotocol] = ACTIONS(1587), - [anon_sym_ATclass] = ACTIONS(1587), - [anon_sym_ATinterface] = ACTIONS(1587), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1585), - [sym_method_attribute_specifier] = ACTIONS(1585), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1585), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1585), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1585), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1585), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1585), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1585), - [anon_sym_NS_AVAILABLE] = ACTIONS(1585), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1585), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1585), - [anon_sym_API_AVAILABLE] = ACTIONS(1585), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1585), - [anon_sym_API_DEPRECATED] = ACTIONS(1585), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1585), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1585), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1585), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1585), - [anon_sym___deprecated_msg] = ACTIONS(1585), - [anon_sym___deprecated_enum_msg] = ACTIONS(1585), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1585), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1585), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1585), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1585), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1585), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1585), - [anon_sym_ATimplementation] = ACTIONS(1587), - [anon_sym_typeof] = ACTIONS(1585), - [anon_sym___typeof] = ACTIONS(1585), - [anon_sym___typeof__] = ACTIONS(1585), - [sym_self] = ACTIONS(1585), - [sym_super] = ACTIONS(1585), - [sym_nil] = ACTIONS(1585), - [sym_id] = ACTIONS(1585), - [sym_instancetype] = ACTIONS(1585), - [sym_Class] = ACTIONS(1585), - [sym_SEL] = ACTIONS(1585), - [sym_IMP] = ACTIONS(1585), - [sym_BOOL] = ACTIONS(1585), - [sym_auto] = ACTIONS(1585), - [anon_sym_ATautoreleasepool] = ACTIONS(1587), - [anon_sym_ATsynchronized] = ACTIONS(1587), - [anon_sym_ATtry] = ACTIONS(1587), - [anon_sym_ATcatch] = ACTIONS(1587), - [anon_sym_ATfinally] = ACTIONS(1587), - [anon_sym_ATthrow] = ACTIONS(1587), - [anon_sym_ATselector] = ACTIONS(1587), - [anon_sym_ATencode] = ACTIONS(1587), - [anon_sym_AT] = ACTIONS(1585), - [sym_YES] = ACTIONS(1585), - [sym_NO] = ACTIONS(1585), - [anon_sym___builtin_available] = ACTIONS(1585), - [anon_sym_ATavailable] = ACTIONS(1587), - [anon_sym_va_arg] = ACTIONS(1585), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [376] = { - [sym_identifier] = ACTIONS(1629), - [aux_sym_preproc_include_token1] = ACTIONS(1631), - [aux_sym_preproc_def_token1] = ACTIONS(1631), - [aux_sym_preproc_if_token1] = ACTIONS(1629), - [aux_sym_preproc_if_token2] = ACTIONS(1629), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1629), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1629), - [anon_sym_LPAREN2] = ACTIONS(1631), - [anon_sym_BANG] = ACTIONS(1631), - [anon_sym_TILDE] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_CARET] = ACTIONS(1631), - [anon_sym_AMP] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_typedef] = ACTIONS(1629), - [anon_sym_extern] = ACTIONS(1629), - [anon_sym___attribute] = ACTIONS(1629), - [anon_sym___attribute__] = ACTIONS(1629), - [anon_sym___declspec] = ACTIONS(1629), - [anon_sym___cdecl] = ACTIONS(1629), - [anon_sym___clrcall] = ACTIONS(1629), - [anon_sym___stdcall] = ACTIONS(1629), - [anon_sym___fastcall] = ACTIONS(1629), - [anon_sym___thiscall] = ACTIONS(1629), - [anon_sym___vectorcall] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1631), - [anon_sym_static] = ACTIONS(1629), - [anon_sym_auto] = ACTIONS(1629), - [anon_sym_register] = ACTIONS(1629), - [anon_sym_inline] = ACTIONS(1629), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1629), - [anon_sym_const] = ACTIONS(1629), - [anon_sym_volatile] = ACTIONS(1629), - [anon_sym_restrict] = ACTIONS(1629), - [anon_sym__Atomic] = ACTIONS(1629), - [anon_sym_in] = ACTIONS(1629), - [anon_sym_out] = ACTIONS(1629), - [anon_sym_inout] = ACTIONS(1629), - [anon_sym_bycopy] = ACTIONS(1629), - [anon_sym_byref] = ACTIONS(1629), - [anon_sym_oneway] = ACTIONS(1629), - [anon_sym__Nullable] = ACTIONS(1629), - [anon_sym__Nonnull] = ACTIONS(1629), - [anon_sym__Nullable_result] = ACTIONS(1629), - [anon_sym__Null_unspecified] = ACTIONS(1629), - [anon_sym___autoreleasing] = ACTIONS(1629), - [anon_sym___nullable] = ACTIONS(1629), - [anon_sym___nonnull] = ACTIONS(1629), - [anon_sym___strong] = ACTIONS(1629), - [anon_sym___weak] = ACTIONS(1629), - [anon_sym___bridge] = ACTIONS(1629), - [anon_sym___bridge_transfer] = ACTIONS(1629), - [anon_sym___bridge_retained] = ACTIONS(1629), - [anon_sym___unsafe_unretained] = ACTIONS(1629), - [anon_sym___block] = ACTIONS(1629), - [anon_sym___kindof] = ACTIONS(1629), - [anon_sym___unused] = ACTIONS(1629), - [anon_sym__Complex] = ACTIONS(1629), - [anon_sym___complex] = ACTIONS(1629), - [anon_sym_IBOutlet] = ACTIONS(1629), - [anon_sym_IBInspectable] = ACTIONS(1629), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1629), - [anon_sym_signed] = ACTIONS(1629), - [anon_sym_unsigned] = ACTIONS(1629), - [anon_sym_long] = ACTIONS(1629), - [anon_sym_short] = ACTIONS(1629), - [sym_primitive_type] = ACTIONS(1629), - [anon_sym_enum] = ACTIONS(1629), - [anon_sym_NS_ENUM] = ACTIONS(1629), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1629), - [anon_sym_NS_OPTIONS] = ACTIONS(1629), - [anon_sym_struct] = ACTIONS(1629), - [anon_sym_union] = ACTIONS(1629), - [anon_sym_if] = ACTIONS(1629), - [anon_sym_else] = ACTIONS(1629), - [anon_sym_switch] = ACTIONS(1629), - [anon_sym_case] = ACTIONS(1629), - [anon_sym_default] = ACTIONS(1629), - [anon_sym_while] = ACTIONS(1629), - [anon_sym_do] = ACTIONS(1629), - [anon_sym_for] = ACTIONS(1629), - [anon_sym_return] = ACTIONS(1629), - [anon_sym_break] = ACTIONS(1629), - [anon_sym_continue] = ACTIONS(1629), - [anon_sym_goto] = ACTIONS(1629), - [anon_sym_DASH_DASH] = ACTIONS(1631), - [anon_sym_PLUS_PLUS] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1629), - [sym_number_literal] = ACTIONS(1631), - [anon_sym_L_SQUOTE] = ACTIONS(1631), - [anon_sym_u_SQUOTE] = ACTIONS(1631), - [anon_sym_U_SQUOTE] = ACTIONS(1631), - [anon_sym_u8_SQUOTE] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_L_DQUOTE] = ACTIONS(1631), - [anon_sym_u_DQUOTE] = ACTIONS(1631), - [anon_sym_U_DQUOTE] = ACTIONS(1631), - [anon_sym_u8_DQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1631), - [sym_true] = ACTIONS(1629), - [sym_false] = ACTIONS(1629), - [sym_null] = ACTIONS(1629), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1631), - [anon_sym_ATimport] = ACTIONS(1631), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1629), - [anon_sym_ATcompatibility_alias] = ACTIONS(1631), - [anon_sym_ATprotocol] = ACTIONS(1631), - [anon_sym_ATclass] = ACTIONS(1631), - [anon_sym_ATinterface] = ACTIONS(1631), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1629), - [sym_method_attribute_specifier] = ACTIONS(1629), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1629), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1629), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1629), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1629), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1629), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1629), - [anon_sym_NS_AVAILABLE] = ACTIONS(1629), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1629), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1629), - [anon_sym_API_AVAILABLE] = ACTIONS(1629), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1629), - [anon_sym_API_DEPRECATED] = ACTIONS(1629), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1629), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1629), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1629), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1629), - [anon_sym___deprecated_msg] = ACTIONS(1629), - [anon_sym___deprecated_enum_msg] = ACTIONS(1629), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1629), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1629), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1629), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1629), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1629), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1629), - [anon_sym_ATimplementation] = ACTIONS(1631), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym___typeof] = ACTIONS(1629), - [anon_sym___typeof__] = ACTIONS(1629), - [sym_self] = ACTIONS(1629), - [sym_super] = ACTIONS(1629), - [sym_nil] = ACTIONS(1629), - [sym_id] = ACTIONS(1629), - [sym_instancetype] = ACTIONS(1629), - [sym_Class] = ACTIONS(1629), - [sym_SEL] = ACTIONS(1629), - [sym_IMP] = ACTIONS(1629), - [sym_BOOL] = ACTIONS(1629), - [sym_auto] = ACTIONS(1629), - [anon_sym_ATautoreleasepool] = ACTIONS(1631), - [anon_sym_ATsynchronized] = ACTIONS(1631), - [anon_sym_ATtry] = ACTIONS(1631), - [anon_sym_ATcatch] = ACTIONS(1631), - [anon_sym_ATfinally] = ACTIONS(1631), - [anon_sym_ATthrow] = ACTIONS(1631), - [anon_sym_ATselector] = ACTIONS(1631), - [anon_sym_ATencode] = ACTIONS(1631), - [anon_sym_AT] = ACTIONS(1629), - [sym_YES] = ACTIONS(1629), - [sym_NO] = ACTIONS(1629), - [anon_sym___builtin_available] = ACTIONS(1629), - [anon_sym_ATavailable] = ACTIONS(1631), - [anon_sym_va_arg] = ACTIONS(1629), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [377] = { - [sym_identifier] = ACTIONS(1633), - [aux_sym_preproc_include_token1] = ACTIONS(1635), - [aux_sym_preproc_def_token1] = ACTIONS(1635), - [aux_sym_preproc_if_token1] = ACTIONS(1633), - [aux_sym_preproc_if_token2] = ACTIONS(1633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(1635), - [anon_sym_BANG] = ACTIONS(1635), - [anon_sym_TILDE] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1633), - [anon_sym_PLUS] = ACTIONS(1633), - [anon_sym_STAR] = ACTIONS(1635), - [anon_sym_CARET] = ACTIONS(1635), - [anon_sym_AMP] = ACTIONS(1635), - [anon_sym_SEMI] = ACTIONS(1635), - [anon_sym_typedef] = ACTIONS(1633), - [anon_sym_extern] = ACTIONS(1633), - [anon_sym___attribute] = ACTIONS(1633), - [anon_sym___attribute__] = ACTIONS(1633), - [anon_sym___declspec] = ACTIONS(1633), - [anon_sym___cdecl] = ACTIONS(1633), - [anon_sym___clrcall] = ACTIONS(1633), - [anon_sym___stdcall] = ACTIONS(1633), - [anon_sym___fastcall] = ACTIONS(1633), - [anon_sym___thiscall] = ACTIONS(1633), - [anon_sym___vectorcall] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1635), - [anon_sym_static] = ACTIONS(1633), - [anon_sym_auto] = ACTIONS(1633), - [anon_sym_register] = ACTIONS(1633), - [anon_sym_inline] = ACTIONS(1633), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [anon_sym_volatile] = ACTIONS(1633), - [anon_sym_restrict] = ACTIONS(1633), - [anon_sym__Atomic] = ACTIONS(1633), - [anon_sym_in] = ACTIONS(1633), - [anon_sym_out] = ACTIONS(1633), - [anon_sym_inout] = ACTIONS(1633), - [anon_sym_bycopy] = ACTIONS(1633), - [anon_sym_byref] = ACTIONS(1633), - [anon_sym_oneway] = ACTIONS(1633), - [anon_sym__Nullable] = ACTIONS(1633), - [anon_sym__Nonnull] = ACTIONS(1633), - [anon_sym__Nullable_result] = ACTIONS(1633), - [anon_sym__Null_unspecified] = ACTIONS(1633), - [anon_sym___autoreleasing] = ACTIONS(1633), - [anon_sym___nullable] = ACTIONS(1633), - [anon_sym___nonnull] = ACTIONS(1633), - [anon_sym___strong] = ACTIONS(1633), - [anon_sym___weak] = ACTIONS(1633), - [anon_sym___bridge] = ACTIONS(1633), - [anon_sym___bridge_transfer] = ACTIONS(1633), - [anon_sym___bridge_retained] = ACTIONS(1633), - [anon_sym___unsafe_unretained] = ACTIONS(1633), - [anon_sym___block] = ACTIONS(1633), - [anon_sym___kindof] = ACTIONS(1633), - [anon_sym___unused] = ACTIONS(1633), - [anon_sym__Complex] = ACTIONS(1633), - [anon_sym___complex] = ACTIONS(1633), - [anon_sym_IBOutlet] = ACTIONS(1633), - [anon_sym_IBInspectable] = ACTIONS(1633), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1633), - [anon_sym_signed] = ACTIONS(1633), - [anon_sym_unsigned] = ACTIONS(1633), - [anon_sym_long] = ACTIONS(1633), - [anon_sym_short] = ACTIONS(1633), - [sym_primitive_type] = ACTIONS(1633), - [anon_sym_enum] = ACTIONS(1633), - [anon_sym_NS_ENUM] = ACTIONS(1633), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1633), - [anon_sym_NS_OPTIONS] = ACTIONS(1633), - [anon_sym_struct] = ACTIONS(1633), - [anon_sym_union] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_else] = ACTIONS(1633), - [anon_sym_switch] = ACTIONS(1633), - [anon_sym_case] = ACTIONS(1633), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_do] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_goto] = ACTIONS(1633), - [anon_sym_DASH_DASH] = ACTIONS(1635), - [anon_sym_PLUS_PLUS] = ACTIONS(1635), - [anon_sym_sizeof] = ACTIONS(1633), - [sym_number_literal] = ACTIONS(1635), - [anon_sym_L_SQUOTE] = ACTIONS(1635), - [anon_sym_u_SQUOTE] = ACTIONS(1635), - [anon_sym_U_SQUOTE] = ACTIONS(1635), - [anon_sym_u8_SQUOTE] = ACTIONS(1635), - [anon_sym_SQUOTE] = ACTIONS(1635), - [anon_sym_L_DQUOTE] = ACTIONS(1635), - [anon_sym_u_DQUOTE] = ACTIONS(1635), - [anon_sym_U_DQUOTE] = ACTIONS(1635), - [anon_sym_u8_DQUOTE] = ACTIONS(1635), - [anon_sym_DQUOTE] = ACTIONS(1635), - [sym_true] = ACTIONS(1633), - [sym_false] = ACTIONS(1633), - [sym_null] = ACTIONS(1633), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1635), - [anon_sym_ATimport] = ACTIONS(1635), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1633), - [anon_sym_ATcompatibility_alias] = ACTIONS(1635), - [anon_sym_ATprotocol] = ACTIONS(1635), - [anon_sym_ATclass] = ACTIONS(1635), - [anon_sym_ATinterface] = ACTIONS(1635), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1633), - [sym_method_attribute_specifier] = ACTIONS(1633), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1633), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1633), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1633), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1633), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1633), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1633), - [anon_sym_NS_AVAILABLE] = ACTIONS(1633), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1633), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1633), - [anon_sym_API_AVAILABLE] = ACTIONS(1633), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1633), - [anon_sym_API_DEPRECATED] = ACTIONS(1633), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1633), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1633), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1633), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1633), - [anon_sym___deprecated_msg] = ACTIONS(1633), - [anon_sym___deprecated_enum_msg] = ACTIONS(1633), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1633), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1633), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1633), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1633), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1633), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1633), - [anon_sym_ATimplementation] = ACTIONS(1635), - [anon_sym_typeof] = ACTIONS(1633), - [anon_sym___typeof] = ACTIONS(1633), - [anon_sym___typeof__] = ACTIONS(1633), - [sym_self] = ACTIONS(1633), - [sym_super] = ACTIONS(1633), - [sym_nil] = ACTIONS(1633), - [sym_id] = ACTIONS(1633), - [sym_instancetype] = ACTIONS(1633), - [sym_Class] = ACTIONS(1633), - [sym_SEL] = ACTIONS(1633), - [sym_IMP] = ACTIONS(1633), - [sym_BOOL] = ACTIONS(1633), - [sym_auto] = ACTIONS(1633), - [anon_sym_ATautoreleasepool] = ACTIONS(1635), - [anon_sym_ATsynchronized] = ACTIONS(1635), - [anon_sym_ATtry] = ACTIONS(1635), - [anon_sym_ATcatch] = ACTIONS(1635), - [anon_sym_ATfinally] = ACTIONS(1635), - [anon_sym_ATthrow] = ACTIONS(1635), - [anon_sym_ATselector] = ACTIONS(1635), - [anon_sym_ATencode] = ACTIONS(1635), - [anon_sym_AT] = ACTIONS(1633), - [sym_YES] = ACTIONS(1633), - [sym_NO] = ACTIONS(1633), - [anon_sym___builtin_available] = ACTIONS(1633), - [anon_sym_ATavailable] = ACTIONS(1635), - [anon_sym_va_arg] = ACTIONS(1633), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [378] = { - [sym_identifier] = ACTIONS(1205), - [aux_sym_preproc_include_token1] = ACTIONS(1203), - [aux_sym_preproc_def_token1] = ACTIONS(1203), - [aux_sym_preproc_if_token1] = ACTIONS(1205), - [aux_sym_preproc_if_token2] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1205), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1205), - [anon_sym_LPAREN2] = ACTIONS(1203), - [anon_sym_BANG] = ACTIONS(1203), - [anon_sym_TILDE] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_PLUS] = ACTIONS(1205), - [anon_sym_STAR] = ACTIONS(1203), - [anon_sym_CARET] = ACTIONS(1203), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_SEMI] = ACTIONS(1203), - [anon_sym_typedef] = ACTIONS(1205), - [anon_sym_extern] = ACTIONS(1205), - [anon_sym___attribute] = ACTIONS(1205), - [anon_sym___attribute__] = ACTIONS(1205), - [anon_sym___declspec] = ACTIONS(1205), - [anon_sym___cdecl] = ACTIONS(1205), - [anon_sym___clrcall] = ACTIONS(1205), - [anon_sym___stdcall] = ACTIONS(1205), - [anon_sym___fastcall] = ACTIONS(1205), - [anon_sym___thiscall] = ACTIONS(1205), - [anon_sym___vectorcall] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(1203), - [anon_sym_LBRACK] = ACTIONS(1203), - [anon_sym_static] = ACTIONS(1205), - [anon_sym_auto] = ACTIONS(1205), - [anon_sym_register] = ACTIONS(1205), - [anon_sym_inline] = ACTIONS(1205), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1205), - [anon_sym_const] = ACTIONS(1205), - [anon_sym_volatile] = ACTIONS(1205), - [anon_sym_restrict] = ACTIONS(1205), - [anon_sym__Atomic] = ACTIONS(1205), - [anon_sym_in] = ACTIONS(1205), - [anon_sym_out] = ACTIONS(1205), - [anon_sym_inout] = ACTIONS(1205), - [anon_sym_bycopy] = ACTIONS(1205), - [anon_sym_byref] = ACTIONS(1205), - [anon_sym_oneway] = ACTIONS(1205), - [anon_sym__Nullable] = ACTIONS(1205), - [anon_sym__Nonnull] = ACTIONS(1205), - [anon_sym__Nullable_result] = ACTIONS(1205), - [anon_sym__Null_unspecified] = ACTIONS(1205), - [anon_sym___autoreleasing] = ACTIONS(1205), - [anon_sym___nullable] = ACTIONS(1205), - [anon_sym___nonnull] = ACTIONS(1205), - [anon_sym___strong] = ACTIONS(1205), - [anon_sym___weak] = ACTIONS(1205), - [anon_sym___bridge] = ACTIONS(1205), - [anon_sym___bridge_transfer] = ACTIONS(1205), - [anon_sym___bridge_retained] = ACTIONS(1205), - [anon_sym___unsafe_unretained] = ACTIONS(1205), - [anon_sym___block] = ACTIONS(1205), - [anon_sym___kindof] = ACTIONS(1205), - [anon_sym___unused] = ACTIONS(1205), - [anon_sym__Complex] = ACTIONS(1205), - [anon_sym___complex] = ACTIONS(1205), - [anon_sym_IBOutlet] = ACTIONS(1205), - [anon_sym_IBInspectable] = ACTIONS(1205), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1205), - [anon_sym_signed] = ACTIONS(1205), - [anon_sym_unsigned] = ACTIONS(1205), - [anon_sym_long] = ACTIONS(1205), - [anon_sym_short] = ACTIONS(1205), - [sym_primitive_type] = ACTIONS(1205), - [anon_sym_enum] = ACTIONS(1205), - [anon_sym_NS_ENUM] = ACTIONS(1205), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1205), - [anon_sym_NS_OPTIONS] = ACTIONS(1205), - [anon_sym_struct] = ACTIONS(1205), - [anon_sym_union] = ACTIONS(1205), - [anon_sym_if] = ACTIONS(1205), - [anon_sym_else] = ACTIONS(1205), - [anon_sym_switch] = ACTIONS(1205), - [anon_sym_case] = ACTIONS(1205), - [anon_sym_default] = ACTIONS(1205), - [anon_sym_while] = ACTIONS(1205), - [anon_sym_do] = ACTIONS(1205), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1205), - [anon_sym_break] = ACTIONS(1205), - [anon_sym_continue] = ACTIONS(1205), - [anon_sym_goto] = ACTIONS(1205), - [anon_sym_DASH_DASH] = ACTIONS(1203), - [anon_sym_PLUS_PLUS] = ACTIONS(1203), - [anon_sym_sizeof] = ACTIONS(1205), - [sym_number_literal] = ACTIONS(1203), - [anon_sym_L_SQUOTE] = ACTIONS(1203), - [anon_sym_u_SQUOTE] = ACTIONS(1203), - [anon_sym_U_SQUOTE] = ACTIONS(1203), - [anon_sym_u8_SQUOTE] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1203), - [anon_sym_L_DQUOTE] = ACTIONS(1203), - [anon_sym_u_DQUOTE] = ACTIONS(1203), - [anon_sym_U_DQUOTE] = ACTIONS(1203), - [anon_sym_u8_DQUOTE] = ACTIONS(1203), - [anon_sym_DQUOTE] = ACTIONS(1203), - [sym_true] = ACTIONS(1205), - [sym_false] = ACTIONS(1205), - [sym_null] = ACTIONS(1205), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1203), - [anon_sym_ATimport] = ACTIONS(1203), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1205), - [anon_sym_ATcompatibility_alias] = ACTIONS(1203), - [anon_sym_ATprotocol] = ACTIONS(1203), - [anon_sym_ATclass] = ACTIONS(1203), - [anon_sym_ATinterface] = ACTIONS(1203), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1205), - [sym_method_attribute_specifier] = ACTIONS(1205), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1205), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1205), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1205), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1205), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1205), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1205), - [anon_sym_NS_AVAILABLE] = ACTIONS(1205), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1205), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1205), - [anon_sym_API_AVAILABLE] = ACTIONS(1205), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1205), - [anon_sym_API_DEPRECATED] = ACTIONS(1205), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1205), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1205), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1205), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1205), - [anon_sym___deprecated_msg] = ACTIONS(1205), - [anon_sym___deprecated_enum_msg] = ACTIONS(1205), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1205), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1205), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1205), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1205), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1205), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1205), - [anon_sym_ATimplementation] = ACTIONS(1203), - [anon_sym_typeof] = ACTIONS(1205), - [anon_sym___typeof] = ACTIONS(1205), - [anon_sym___typeof__] = ACTIONS(1205), - [sym_self] = ACTIONS(1205), - [sym_super] = ACTIONS(1205), - [sym_nil] = ACTIONS(1205), - [sym_id] = ACTIONS(1205), - [sym_instancetype] = ACTIONS(1205), - [sym_Class] = ACTIONS(1205), - [sym_SEL] = ACTIONS(1205), - [sym_IMP] = ACTIONS(1205), - [sym_BOOL] = ACTIONS(1205), - [sym_auto] = ACTIONS(1205), - [anon_sym_ATautoreleasepool] = ACTIONS(1203), - [anon_sym_ATsynchronized] = ACTIONS(1203), - [anon_sym_ATtry] = ACTIONS(1203), - [anon_sym_ATcatch] = ACTIONS(1203), - [anon_sym_ATfinally] = ACTIONS(1203), - [anon_sym_ATthrow] = ACTIONS(1203), - [anon_sym_ATselector] = ACTIONS(1203), - [anon_sym_ATencode] = ACTIONS(1203), - [anon_sym_AT] = ACTIONS(1205), - [sym_YES] = ACTIONS(1205), - [sym_NO] = ACTIONS(1205), - [anon_sym___builtin_available] = ACTIONS(1205), - [anon_sym_ATavailable] = ACTIONS(1203), - [anon_sym_va_arg] = ACTIONS(1205), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [379] = { - [sym_identifier] = ACTIONS(1217), - [aux_sym_preproc_include_token1] = ACTIONS(1215), - [aux_sym_preproc_def_token1] = ACTIONS(1215), - [aux_sym_preproc_if_token1] = ACTIONS(1217), - [aux_sym_preproc_if_token2] = ACTIONS(1217), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), - [anon_sym_LPAREN2] = ACTIONS(1215), - [anon_sym_BANG] = ACTIONS(1215), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1215), - [anon_sym_CARET] = ACTIONS(1215), - [anon_sym_AMP] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1215), - [anon_sym_typedef] = ACTIONS(1217), - [anon_sym_extern] = ACTIONS(1217), - [anon_sym___attribute] = ACTIONS(1217), - [anon_sym___attribute__] = ACTIONS(1217), - [anon_sym___declspec] = ACTIONS(1217), - [anon_sym___cdecl] = ACTIONS(1217), - [anon_sym___clrcall] = ACTIONS(1217), - [anon_sym___stdcall] = ACTIONS(1217), - [anon_sym___fastcall] = ACTIONS(1217), - [anon_sym___thiscall] = ACTIONS(1217), - [anon_sym___vectorcall] = ACTIONS(1217), - [anon_sym_LBRACE] = ACTIONS(1215), - [anon_sym_LBRACK] = ACTIONS(1215), - [anon_sym_static] = ACTIONS(1217), - [anon_sym_auto] = ACTIONS(1217), - [anon_sym_register] = ACTIONS(1217), - [anon_sym_inline] = ACTIONS(1217), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1217), - [anon_sym_const] = ACTIONS(1217), - [anon_sym_volatile] = ACTIONS(1217), - [anon_sym_restrict] = ACTIONS(1217), - [anon_sym__Atomic] = ACTIONS(1217), - [anon_sym_in] = ACTIONS(1217), - [anon_sym_out] = ACTIONS(1217), - [anon_sym_inout] = ACTIONS(1217), - [anon_sym_bycopy] = ACTIONS(1217), - [anon_sym_byref] = ACTIONS(1217), - [anon_sym_oneway] = ACTIONS(1217), - [anon_sym__Nullable] = ACTIONS(1217), - [anon_sym__Nonnull] = ACTIONS(1217), - [anon_sym__Nullable_result] = ACTIONS(1217), - [anon_sym__Null_unspecified] = ACTIONS(1217), - [anon_sym___autoreleasing] = ACTIONS(1217), - [anon_sym___nullable] = ACTIONS(1217), - [anon_sym___nonnull] = ACTIONS(1217), - [anon_sym___strong] = ACTIONS(1217), - [anon_sym___weak] = ACTIONS(1217), - [anon_sym___bridge] = ACTIONS(1217), - [anon_sym___bridge_transfer] = ACTIONS(1217), - [anon_sym___bridge_retained] = ACTIONS(1217), - [anon_sym___unsafe_unretained] = ACTIONS(1217), - [anon_sym___block] = ACTIONS(1217), - [anon_sym___kindof] = ACTIONS(1217), - [anon_sym___unused] = ACTIONS(1217), - [anon_sym__Complex] = ACTIONS(1217), - [anon_sym___complex] = ACTIONS(1217), - [anon_sym_IBOutlet] = ACTIONS(1217), - [anon_sym_IBInspectable] = ACTIONS(1217), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1217), - [anon_sym_signed] = ACTIONS(1217), - [anon_sym_unsigned] = ACTIONS(1217), - [anon_sym_long] = ACTIONS(1217), - [anon_sym_short] = ACTIONS(1217), - [sym_primitive_type] = ACTIONS(1217), - [anon_sym_enum] = ACTIONS(1217), - [anon_sym_NS_ENUM] = ACTIONS(1217), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1217), - [anon_sym_NS_OPTIONS] = ACTIONS(1217), - [anon_sym_struct] = ACTIONS(1217), - [anon_sym_union] = ACTIONS(1217), - [anon_sym_if] = ACTIONS(1217), - [anon_sym_else] = ACTIONS(1217), - [anon_sym_switch] = ACTIONS(1217), - [anon_sym_case] = ACTIONS(1217), - [anon_sym_default] = ACTIONS(1217), - [anon_sym_while] = ACTIONS(1217), - [anon_sym_do] = ACTIONS(1217), - [anon_sym_for] = ACTIONS(1217), - [anon_sym_return] = ACTIONS(1217), - [anon_sym_break] = ACTIONS(1217), - [anon_sym_continue] = ACTIONS(1217), - [anon_sym_goto] = ACTIONS(1217), - [anon_sym_DASH_DASH] = ACTIONS(1215), - [anon_sym_PLUS_PLUS] = ACTIONS(1215), - [anon_sym_sizeof] = ACTIONS(1217), - [sym_number_literal] = ACTIONS(1215), - [anon_sym_L_SQUOTE] = ACTIONS(1215), - [anon_sym_u_SQUOTE] = ACTIONS(1215), - [anon_sym_U_SQUOTE] = ACTIONS(1215), - [anon_sym_u8_SQUOTE] = ACTIONS(1215), - [anon_sym_SQUOTE] = ACTIONS(1215), - [anon_sym_L_DQUOTE] = ACTIONS(1215), - [anon_sym_u_DQUOTE] = ACTIONS(1215), - [anon_sym_U_DQUOTE] = ACTIONS(1215), - [anon_sym_u8_DQUOTE] = ACTIONS(1215), - [anon_sym_DQUOTE] = ACTIONS(1215), - [sym_true] = ACTIONS(1217), - [sym_false] = ACTIONS(1217), - [sym_null] = ACTIONS(1217), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1215), - [anon_sym_ATimport] = ACTIONS(1215), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1217), - [anon_sym_ATcompatibility_alias] = ACTIONS(1215), - [anon_sym_ATprotocol] = ACTIONS(1215), - [anon_sym_ATclass] = ACTIONS(1215), - [anon_sym_ATinterface] = ACTIONS(1215), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1217), - [sym_method_attribute_specifier] = ACTIONS(1217), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1217), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1217), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1217), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1217), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1217), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1217), - [anon_sym_NS_AVAILABLE] = ACTIONS(1217), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1217), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1217), - [anon_sym_API_AVAILABLE] = ACTIONS(1217), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1217), - [anon_sym_API_DEPRECATED] = ACTIONS(1217), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1217), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1217), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1217), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1217), - [anon_sym___deprecated_msg] = ACTIONS(1217), - [anon_sym___deprecated_enum_msg] = ACTIONS(1217), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1217), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1217), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1217), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1217), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1217), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1217), - [anon_sym_ATimplementation] = ACTIONS(1215), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym___typeof] = ACTIONS(1217), - [anon_sym___typeof__] = ACTIONS(1217), - [sym_self] = ACTIONS(1217), - [sym_super] = ACTIONS(1217), - [sym_nil] = ACTIONS(1217), - [sym_id] = ACTIONS(1217), - [sym_instancetype] = ACTIONS(1217), - [sym_Class] = ACTIONS(1217), - [sym_SEL] = ACTIONS(1217), - [sym_IMP] = ACTIONS(1217), - [sym_BOOL] = ACTIONS(1217), - [sym_auto] = ACTIONS(1217), - [anon_sym_ATautoreleasepool] = ACTIONS(1215), - [anon_sym_ATsynchronized] = ACTIONS(1215), - [anon_sym_ATtry] = ACTIONS(1215), - [anon_sym_ATcatch] = ACTIONS(1215), - [anon_sym_ATfinally] = ACTIONS(1215), - [anon_sym_ATthrow] = ACTIONS(1215), - [anon_sym_ATselector] = ACTIONS(1215), - [anon_sym_ATencode] = ACTIONS(1215), - [anon_sym_AT] = ACTIONS(1217), - [sym_YES] = ACTIONS(1217), - [sym_NO] = ACTIONS(1217), - [anon_sym___builtin_available] = ACTIONS(1217), - [anon_sym_ATavailable] = ACTIONS(1215), - [anon_sym_va_arg] = ACTIONS(1217), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [380] = { - [sym_identifier] = ACTIONS(1221), - [aux_sym_preproc_include_token1] = ACTIONS(1219), - [aux_sym_preproc_def_token1] = ACTIONS(1219), - [aux_sym_preproc_if_token1] = ACTIONS(1221), - [aux_sym_preproc_if_token2] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1221), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1221), - [anon_sym_LPAREN2] = ACTIONS(1219), - [anon_sym_BANG] = ACTIONS(1219), - [anon_sym_TILDE] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_PLUS] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_CARET] = ACTIONS(1219), - [anon_sym_AMP] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1219), - [anon_sym_typedef] = ACTIONS(1221), - [anon_sym_extern] = ACTIONS(1221), - [anon_sym___attribute] = ACTIONS(1221), - [anon_sym___attribute__] = ACTIONS(1221), - [anon_sym___declspec] = ACTIONS(1221), - [anon_sym___cdecl] = ACTIONS(1221), - [anon_sym___clrcall] = ACTIONS(1221), - [anon_sym___stdcall] = ACTIONS(1221), - [anon_sym___fastcall] = ACTIONS(1221), - [anon_sym___thiscall] = ACTIONS(1221), - [anon_sym___vectorcall] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_LBRACK] = ACTIONS(1219), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_auto] = ACTIONS(1221), - [anon_sym_register] = ACTIONS(1221), - [anon_sym_inline] = ACTIONS(1221), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1221), - [anon_sym_const] = ACTIONS(1221), - [anon_sym_volatile] = ACTIONS(1221), - [anon_sym_restrict] = ACTIONS(1221), - [anon_sym__Atomic] = ACTIONS(1221), - [anon_sym_in] = ACTIONS(1221), - [anon_sym_out] = ACTIONS(1221), - [anon_sym_inout] = ACTIONS(1221), - [anon_sym_bycopy] = ACTIONS(1221), - [anon_sym_byref] = ACTIONS(1221), - [anon_sym_oneway] = ACTIONS(1221), - [anon_sym__Nullable] = ACTIONS(1221), - [anon_sym__Nonnull] = ACTIONS(1221), - [anon_sym__Nullable_result] = ACTIONS(1221), - [anon_sym__Null_unspecified] = ACTIONS(1221), - [anon_sym___autoreleasing] = ACTIONS(1221), - [anon_sym___nullable] = ACTIONS(1221), - [anon_sym___nonnull] = ACTIONS(1221), - [anon_sym___strong] = ACTIONS(1221), - [anon_sym___weak] = ACTIONS(1221), - [anon_sym___bridge] = ACTIONS(1221), - [anon_sym___bridge_transfer] = ACTIONS(1221), - [anon_sym___bridge_retained] = ACTIONS(1221), - [anon_sym___unsafe_unretained] = ACTIONS(1221), - [anon_sym___block] = ACTIONS(1221), - [anon_sym___kindof] = ACTIONS(1221), - [anon_sym___unused] = ACTIONS(1221), - [anon_sym__Complex] = ACTIONS(1221), - [anon_sym___complex] = ACTIONS(1221), - [anon_sym_IBOutlet] = ACTIONS(1221), - [anon_sym_IBInspectable] = ACTIONS(1221), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1221), - [anon_sym_signed] = ACTIONS(1221), - [anon_sym_unsigned] = ACTIONS(1221), - [anon_sym_long] = ACTIONS(1221), - [anon_sym_short] = ACTIONS(1221), - [sym_primitive_type] = ACTIONS(1221), - [anon_sym_enum] = ACTIONS(1221), - [anon_sym_NS_ENUM] = ACTIONS(1221), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1221), - [anon_sym_NS_OPTIONS] = ACTIONS(1221), - [anon_sym_struct] = ACTIONS(1221), - [anon_sym_union] = ACTIONS(1221), - [anon_sym_if] = ACTIONS(1221), - [anon_sym_else] = ACTIONS(1221), - [anon_sym_switch] = ACTIONS(1221), - [anon_sym_case] = ACTIONS(1221), - [anon_sym_default] = ACTIONS(1221), - [anon_sym_while] = ACTIONS(1221), - [anon_sym_do] = ACTIONS(1221), - [anon_sym_for] = ACTIONS(1221), - [anon_sym_return] = ACTIONS(1221), - [anon_sym_break] = ACTIONS(1221), - [anon_sym_continue] = ACTIONS(1221), - [anon_sym_goto] = ACTIONS(1221), - [anon_sym_DASH_DASH] = ACTIONS(1219), - [anon_sym_PLUS_PLUS] = ACTIONS(1219), - [anon_sym_sizeof] = ACTIONS(1221), - [sym_number_literal] = ACTIONS(1219), - [anon_sym_L_SQUOTE] = ACTIONS(1219), - [anon_sym_u_SQUOTE] = ACTIONS(1219), - [anon_sym_U_SQUOTE] = ACTIONS(1219), - [anon_sym_u8_SQUOTE] = ACTIONS(1219), - [anon_sym_SQUOTE] = ACTIONS(1219), - [anon_sym_L_DQUOTE] = ACTIONS(1219), - [anon_sym_u_DQUOTE] = ACTIONS(1219), - [anon_sym_U_DQUOTE] = ACTIONS(1219), - [anon_sym_u8_DQUOTE] = ACTIONS(1219), - [anon_sym_DQUOTE] = ACTIONS(1219), - [sym_true] = ACTIONS(1221), - [sym_false] = ACTIONS(1221), - [sym_null] = ACTIONS(1221), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1219), - [anon_sym_ATimport] = ACTIONS(1219), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1221), - [anon_sym_ATcompatibility_alias] = ACTIONS(1219), - [anon_sym_ATprotocol] = ACTIONS(1219), - [anon_sym_ATclass] = ACTIONS(1219), - [anon_sym_ATinterface] = ACTIONS(1219), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1221), - [sym_method_attribute_specifier] = ACTIONS(1221), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1221), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1221), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1221), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1221), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1221), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1221), - [anon_sym_NS_AVAILABLE] = ACTIONS(1221), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1221), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1221), - [anon_sym_API_AVAILABLE] = ACTIONS(1221), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1221), - [anon_sym_API_DEPRECATED] = ACTIONS(1221), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1221), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1221), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1221), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1221), - [anon_sym___deprecated_msg] = ACTIONS(1221), - [anon_sym___deprecated_enum_msg] = ACTIONS(1221), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1221), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1221), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1221), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1221), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1221), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1221), - [anon_sym_ATimplementation] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(1221), - [anon_sym___typeof] = ACTIONS(1221), - [anon_sym___typeof__] = ACTIONS(1221), - [sym_self] = ACTIONS(1221), - [sym_super] = ACTIONS(1221), - [sym_nil] = ACTIONS(1221), - [sym_id] = ACTIONS(1221), - [sym_instancetype] = ACTIONS(1221), - [sym_Class] = ACTIONS(1221), - [sym_SEL] = ACTIONS(1221), - [sym_IMP] = ACTIONS(1221), - [sym_BOOL] = ACTIONS(1221), - [sym_auto] = ACTIONS(1221), - [anon_sym_ATautoreleasepool] = ACTIONS(1219), - [anon_sym_ATsynchronized] = ACTIONS(1219), - [anon_sym_ATtry] = ACTIONS(1219), - [anon_sym_ATcatch] = ACTIONS(1219), - [anon_sym_ATfinally] = ACTIONS(1219), - [anon_sym_ATthrow] = ACTIONS(1219), - [anon_sym_ATselector] = ACTIONS(1219), - [anon_sym_ATencode] = ACTIONS(1219), - [anon_sym_AT] = ACTIONS(1221), - [sym_YES] = ACTIONS(1221), - [sym_NO] = ACTIONS(1221), - [anon_sym___builtin_available] = ACTIONS(1221), - [anon_sym_ATavailable] = ACTIONS(1219), - [anon_sym_va_arg] = ACTIONS(1221), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [381] = { - [sym_identifier] = ACTIONS(1419), - [aux_sym_preproc_include_token1] = ACTIONS(1417), - [aux_sym_preproc_def_token1] = ACTIONS(1417), - [aux_sym_preproc_if_token1] = ACTIONS(1419), - [aux_sym_preproc_if_token2] = ACTIONS(1419), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1419), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1419), - [anon_sym_LPAREN2] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1417), - [anon_sym_CARET] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_typedef] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(1419), - [anon_sym___attribute] = ACTIONS(1419), - [anon_sym___attribute__] = ACTIONS(1419), - [anon_sym___declspec] = ACTIONS(1419), - [anon_sym___cdecl] = ACTIONS(1419), - [anon_sym___clrcall] = ACTIONS(1419), - [anon_sym___stdcall] = ACTIONS(1419), - [anon_sym___fastcall] = ACTIONS(1419), - [anon_sym___thiscall] = ACTIONS(1419), - [anon_sym___vectorcall] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_static] = ACTIONS(1419), - [anon_sym_auto] = ACTIONS(1419), - [anon_sym_register] = ACTIONS(1419), - [anon_sym_inline] = ACTIONS(1419), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1419), - [anon_sym_const] = ACTIONS(1419), - [anon_sym_volatile] = ACTIONS(1419), - [anon_sym_restrict] = ACTIONS(1419), - [anon_sym__Atomic] = ACTIONS(1419), - [anon_sym_in] = ACTIONS(1419), - [anon_sym_out] = ACTIONS(1419), - [anon_sym_inout] = ACTIONS(1419), - [anon_sym_bycopy] = ACTIONS(1419), - [anon_sym_byref] = ACTIONS(1419), - [anon_sym_oneway] = ACTIONS(1419), - [anon_sym__Nullable] = ACTIONS(1419), - [anon_sym__Nonnull] = ACTIONS(1419), - [anon_sym__Nullable_result] = ACTIONS(1419), - [anon_sym__Null_unspecified] = ACTIONS(1419), - [anon_sym___autoreleasing] = ACTIONS(1419), - [anon_sym___nullable] = ACTIONS(1419), - [anon_sym___nonnull] = ACTIONS(1419), - [anon_sym___strong] = ACTIONS(1419), - [anon_sym___weak] = ACTIONS(1419), - [anon_sym___bridge] = ACTIONS(1419), - [anon_sym___bridge_transfer] = ACTIONS(1419), - [anon_sym___bridge_retained] = ACTIONS(1419), - [anon_sym___unsafe_unretained] = ACTIONS(1419), - [anon_sym___block] = ACTIONS(1419), - [anon_sym___kindof] = ACTIONS(1419), - [anon_sym___unused] = ACTIONS(1419), - [anon_sym__Complex] = ACTIONS(1419), - [anon_sym___complex] = ACTIONS(1419), - [anon_sym_IBOutlet] = ACTIONS(1419), - [anon_sym_IBInspectable] = ACTIONS(1419), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1419), - [anon_sym_signed] = ACTIONS(1419), - [anon_sym_unsigned] = ACTIONS(1419), - [anon_sym_long] = ACTIONS(1419), - [anon_sym_short] = ACTIONS(1419), - [sym_primitive_type] = ACTIONS(1419), - [anon_sym_enum] = ACTIONS(1419), - [anon_sym_NS_ENUM] = ACTIONS(1419), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1419), - [anon_sym_NS_OPTIONS] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(1419), - [anon_sym_union] = ACTIONS(1419), - [anon_sym_if] = ACTIONS(1419), - [anon_sym_else] = ACTIONS(1419), - [anon_sym_switch] = ACTIONS(1419), - [anon_sym_case] = ACTIONS(1419), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_while] = ACTIONS(1419), - [anon_sym_do] = ACTIONS(1419), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_return] = ACTIONS(1419), - [anon_sym_break] = ACTIONS(1419), - [anon_sym_continue] = ACTIONS(1419), - [anon_sym_goto] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1417), - [anon_sym_PLUS_PLUS] = ACTIONS(1417), - [anon_sym_sizeof] = ACTIONS(1419), - [sym_number_literal] = ACTIONS(1417), - [anon_sym_L_SQUOTE] = ACTIONS(1417), - [anon_sym_u_SQUOTE] = ACTIONS(1417), - [anon_sym_U_SQUOTE] = ACTIONS(1417), - [anon_sym_u8_SQUOTE] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_L_DQUOTE] = ACTIONS(1417), - [anon_sym_u_DQUOTE] = ACTIONS(1417), - [anon_sym_U_DQUOTE] = ACTIONS(1417), - [anon_sym_u8_DQUOTE] = ACTIONS(1417), - [anon_sym_DQUOTE] = ACTIONS(1417), - [sym_true] = ACTIONS(1419), - [sym_false] = ACTIONS(1419), - [sym_null] = ACTIONS(1419), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1417), - [anon_sym_ATimport] = ACTIONS(1417), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1419), - [anon_sym_ATcompatibility_alias] = ACTIONS(1417), - [anon_sym_ATprotocol] = ACTIONS(1417), - [anon_sym_ATclass] = ACTIONS(1417), - [anon_sym_ATinterface] = ACTIONS(1417), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1419), - [sym_method_attribute_specifier] = ACTIONS(1419), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1419), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1419), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1419), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1419), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1419), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1419), - [anon_sym_NS_AVAILABLE] = ACTIONS(1419), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1419), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1419), - [anon_sym_API_AVAILABLE] = ACTIONS(1419), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1419), - [anon_sym_API_DEPRECATED] = ACTIONS(1419), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1419), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1419), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1419), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1419), - [anon_sym___deprecated_msg] = ACTIONS(1419), - [anon_sym___deprecated_enum_msg] = ACTIONS(1419), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1419), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1419), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1419), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1419), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1419), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1419), - [anon_sym_ATimplementation] = ACTIONS(1417), - [anon_sym_typeof] = ACTIONS(1419), - [anon_sym___typeof] = ACTIONS(1419), - [anon_sym___typeof__] = ACTIONS(1419), - [sym_self] = ACTIONS(1419), - [sym_super] = ACTIONS(1419), - [sym_nil] = ACTIONS(1419), - [sym_id] = ACTIONS(1419), - [sym_instancetype] = ACTIONS(1419), - [sym_Class] = ACTIONS(1419), - [sym_SEL] = ACTIONS(1419), - [sym_IMP] = ACTIONS(1419), - [sym_BOOL] = ACTIONS(1419), - [sym_auto] = ACTIONS(1419), - [anon_sym_ATautoreleasepool] = ACTIONS(1417), - [anon_sym_ATsynchronized] = ACTIONS(1417), - [anon_sym_ATtry] = ACTIONS(1417), - [anon_sym_ATcatch] = ACTIONS(1417), - [anon_sym_ATfinally] = ACTIONS(1417), - [anon_sym_ATthrow] = ACTIONS(1417), - [anon_sym_ATselector] = ACTIONS(1417), - [anon_sym_ATencode] = ACTIONS(1417), - [anon_sym_AT] = ACTIONS(1419), - [sym_YES] = ACTIONS(1419), - [sym_NO] = ACTIONS(1419), - [anon_sym___builtin_available] = ACTIONS(1419), - [anon_sym_ATavailable] = ACTIONS(1417), - [anon_sym_va_arg] = ACTIONS(1419), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [382] = { - [sym_identifier] = ACTIONS(1423), - [aux_sym_preproc_include_token1] = ACTIONS(1421), - [aux_sym_preproc_def_token1] = ACTIONS(1421), - [aux_sym_preproc_if_token1] = ACTIONS(1423), - [aux_sym_preproc_if_token2] = ACTIONS(1423), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1423), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1423), - [anon_sym_LPAREN2] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1421), - [anon_sym_TILDE] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_CARET] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym_typedef] = ACTIONS(1423), - [anon_sym_extern] = ACTIONS(1423), - [anon_sym___attribute] = ACTIONS(1423), - [anon_sym___attribute__] = ACTIONS(1423), - [anon_sym___declspec] = ACTIONS(1423), - [anon_sym___cdecl] = ACTIONS(1423), - [anon_sym___clrcall] = ACTIONS(1423), - [anon_sym___stdcall] = ACTIONS(1423), - [anon_sym___fastcall] = ACTIONS(1423), - [anon_sym___thiscall] = ACTIONS(1423), - [anon_sym___vectorcall] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_auto] = ACTIONS(1423), - [anon_sym_register] = ACTIONS(1423), - [anon_sym_inline] = ACTIONS(1423), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1423), - [anon_sym_volatile] = ACTIONS(1423), - [anon_sym_restrict] = ACTIONS(1423), - [anon_sym__Atomic] = ACTIONS(1423), - [anon_sym_in] = ACTIONS(1423), - [anon_sym_out] = ACTIONS(1423), - [anon_sym_inout] = ACTIONS(1423), - [anon_sym_bycopy] = ACTIONS(1423), - [anon_sym_byref] = ACTIONS(1423), - [anon_sym_oneway] = ACTIONS(1423), - [anon_sym__Nullable] = ACTIONS(1423), - [anon_sym__Nonnull] = ACTIONS(1423), - [anon_sym__Nullable_result] = ACTIONS(1423), - [anon_sym__Null_unspecified] = ACTIONS(1423), - [anon_sym___autoreleasing] = ACTIONS(1423), - [anon_sym___nullable] = ACTIONS(1423), - [anon_sym___nonnull] = ACTIONS(1423), - [anon_sym___strong] = ACTIONS(1423), - [anon_sym___weak] = ACTIONS(1423), - [anon_sym___bridge] = ACTIONS(1423), - [anon_sym___bridge_transfer] = ACTIONS(1423), - [anon_sym___bridge_retained] = ACTIONS(1423), - [anon_sym___unsafe_unretained] = ACTIONS(1423), - [anon_sym___block] = ACTIONS(1423), - [anon_sym___kindof] = ACTIONS(1423), - [anon_sym___unused] = ACTIONS(1423), - [anon_sym__Complex] = ACTIONS(1423), - [anon_sym___complex] = ACTIONS(1423), - [anon_sym_IBOutlet] = ACTIONS(1423), - [anon_sym_IBInspectable] = ACTIONS(1423), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1423), - [anon_sym_signed] = ACTIONS(1423), - [anon_sym_unsigned] = ACTIONS(1423), - [anon_sym_long] = ACTIONS(1423), - [anon_sym_short] = ACTIONS(1423), - [sym_primitive_type] = ACTIONS(1423), - [anon_sym_enum] = ACTIONS(1423), - [anon_sym_NS_ENUM] = ACTIONS(1423), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1423), - [anon_sym_NS_OPTIONS] = ACTIONS(1423), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1423), - [anon_sym_if] = ACTIONS(1423), - [anon_sym_else] = ACTIONS(1423), - [anon_sym_switch] = ACTIONS(1423), - [anon_sym_case] = ACTIONS(1423), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_do] = ACTIONS(1423), - [anon_sym_for] = ACTIONS(1423), - [anon_sym_return] = ACTIONS(1423), - [anon_sym_break] = ACTIONS(1423), - [anon_sym_continue] = ACTIONS(1423), - [anon_sym_goto] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1421), - [anon_sym_PLUS_PLUS] = ACTIONS(1421), - [anon_sym_sizeof] = ACTIONS(1423), - [sym_number_literal] = ACTIONS(1421), - [anon_sym_L_SQUOTE] = ACTIONS(1421), - [anon_sym_u_SQUOTE] = ACTIONS(1421), - [anon_sym_U_SQUOTE] = ACTIONS(1421), - [anon_sym_u8_SQUOTE] = ACTIONS(1421), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_L_DQUOTE] = ACTIONS(1421), - [anon_sym_u_DQUOTE] = ACTIONS(1421), - [anon_sym_U_DQUOTE] = ACTIONS(1421), - [anon_sym_u8_DQUOTE] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(1421), - [sym_true] = ACTIONS(1423), - [sym_false] = ACTIONS(1423), - [sym_null] = ACTIONS(1423), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1421), - [anon_sym_ATimport] = ACTIONS(1421), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1423), - [anon_sym_ATcompatibility_alias] = ACTIONS(1421), - [anon_sym_ATprotocol] = ACTIONS(1421), - [anon_sym_ATclass] = ACTIONS(1421), - [anon_sym_ATinterface] = ACTIONS(1421), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1423), - [sym_method_attribute_specifier] = ACTIONS(1423), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1423), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1423), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1423), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1423), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1423), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1423), - [anon_sym_NS_AVAILABLE] = ACTIONS(1423), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1423), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1423), - [anon_sym_API_AVAILABLE] = ACTIONS(1423), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1423), - [anon_sym_API_DEPRECATED] = ACTIONS(1423), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1423), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1423), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1423), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1423), - [anon_sym___deprecated_msg] = ACTIONS(1423), - [anon_sym___deprecated_enum_msg] = ACTIONS(1423), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1423), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1423), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1423), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1423), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1423), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1423), - [anon_sym_ATimplementation] = ACTIONS(1421), - [anon_sym_typeof] = ACTIONS(1423), - [anon_sym___typeof] = ACTIONS(1423), - [anon_sym___typeof__] = ACTIONS(1423), - [sym_self] = ACTIONS(1423), - [sym_super] = ACTIONS(1423), - [sym_nil] = ACTIONS(1423), - [sym_id] = ACTIONS(1423), - [sym_instancetype] = ACTIONS(1423), - [sym_Class] = ACTIONS(1423), - [sym_SEL] = ACTIONS(1423), - [sym_IMP] = ACTIONS(1423), - [sym_BOOL] = ACTIONS(1423), - [sym_auto] = ACTIONS(1423), - [anon_sym_ATautoreleasepool] = ACTIONS(1421), - [anon_sym_ATsynchronized] = ACTIONS(1421), - [anon_sym_ATtry] = ACTIONS(1421), - [anon_sym_ATcatch] = ACTIONS(1421), - [anon_sym_ATfinally] = ACTIONS(1421), - [anon_sym_ATthrow] = ACTIONS(1421), - [anon_sym_ATselector] = ACTIONS(1421), - [anon_sym_ATencode] = ACTIONS(1421), - [anon_sym_AT] = ACTIONS(1423), - [sym_YES] = ACTIONS(1423), - [sym_NO] = ACTIONS(1423), - [anon_sym___builtin_available] = ACTIONS(1423), - [anon_sym_ATavailable] = ACTIONS(1421), - [anon_sym_va_arg] = ACTIONS(1423), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [383] = { - [sym_identifier] = ACTIONS(1427), - [aux_sym_preproc_include_token1] = ACTIONS(1425), - [aux_sym_preproc_def_token1] = ACTIONS(1425), - [aux_sym_preproc_if_token1] = ACTIONS(1427), - [aux_sym_preproc_if_token2] = ACTIONS(1427), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1427), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1427), - [anon_sym_LPAREN2] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1425), - [anon_sym_TILDE] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_CARET] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_typedef] = ACTIONS(1427), - [anon_sym_extern] = ACTIONS(1427), - [anon_sym___attribute] = ACTIONS(1427), - [anon_sym___attribute__] = ACTIONS(1427), - [anon_sym___declspec] = ACTIONS(1427), - [anon_sym___cdecl] = ACTIONS(1427), - [anon_sym___clrcall] = ACTIONS(1427), - [anon_sym___stdcall] = ACTIONS(1427), - [anon_sym___fastcall] = ACTIONS(1427), - [anon_sym___thiscall] = ACTIONS(1427), - [anon_sym___vectorcall] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_auto] = ACTIONS(1427), - [anon_sym_register] = ACTIONS(1427), - [anon_sym_inline] = ACTIONS(1427), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(1427), - [anon_sym_volatile] = ACTIONS(1427), - [anon_sym_restrict] = ACTIONS(1427), - [anon_sym__Atomic] = ACTIONS(1427), - [anon_sym_in] = ACTIONS(1427), - [anon_sym_out] = ACTIONS(1427), - [anon_sym_inout] = ACTIONS(1427), - [anon_sym_bycopy] = ACTIONS(1427), - [anon_sym_byref] = ACTIONS(1427), - [anon_sym_oneway] = ACTIONS(1427), - [anon_sym__Nullable] = ACTIONS(1427), - [anon_sym__Nonnull] = ACTIONS(1427), - [anon_sym__Nullable_result] = ACTIONS(1427), - [anon_sym__Null_unspecified] = ACTIONS(1427), - [anon_sym___autoreleasing] = ACTIONS(1427), - [anon_sym___nullable] = ACTIONS(1427), - [anon_sym___nonnull] = ACTIONS(1427), - [anon_sym___strong] = ACTIONS(1427), - [anon_sym___weak] = ACTIONS(1427), - [anon_sym___bridge] = ACTIONS(1427), - [anon_sym___bridge_transfer] = ACTIONS(1427), - [anon_sym___bridge_retained] = ACTIONS(1427), - [anon_sym___unsafe_unretained] = ACTIONS(1427), - [anon_sym___block] = ACTIONS(1427), - [anon_sym___kindof] = ACTIONS(1427), - [anon_sym___unused] = ACTIONS(1427), - [anon_sym__Complex] = ACTIONS(1427), - [anon_sym___complex] = ACTIONS(1427), - [anon_sym_IBOutlet] = ACTIONS(1427), - [anon_sym_IBInspectable] = ACTIONS(1427), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1427), - [anon_sym_signed] = ACTIONS(1427), - [anon_sym_unsigned] = ACTIONS(1427), - [anon_sym_long] = ACTIONS(1427), - [anon_sym_short] = ACTIONS(1427), - [sym_primitive_type] = ACTIONS(1427), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_NS_ENUM] = ACTIONS(1427), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1427), - [anon_sym_NS_OPTIONS] = ACTIONS(1427), - [anon_sym_struct] = ACTIONS(1427), - [anon_sym_union] = ACTIONS(1427), - [anon_sym_if] = ACTIONS(1427), - [anon_sym_else] = ACTIONS(1427), - [anon_sym_switch] = ACTIONS(1427), - [anon_sym_case] = ACTIONS(1427), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_while] = ACTIONS(1427), - [anon_sym_do] = ACTIONS(1427), - [anon_sym_for] = ACTIONS(1427), - [anon_sym_return] = ACTIONS(1427), - [anon_sym_break] = ACTIONS(1427), - [anon_sym_continue] = ACTIONS(1427), - [anon_sym_goto] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1425), - [anon_sym_PLUS_PLUS] = ACTIONS(1425), - [anon_sym_sizeof] = ACTIONS(1427), - [sym_number_literal] = ACTIONS(1425), - [anon_sym_L_SQUOTE] = ACTIONS(1425), - [anon_sym_u_SQUOTE] = ACTIONS(1425), - [anon_sym_U_SQUOTE] = ACTIONS(1425), - [anon_sym_u8_SQUOTE] = ACTIONS(1425), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_L_DQUOTE] = ACTIONS(1425), - [anon_sym_u_DQUOTE] = ACTIONS(1425), - [anon_sym_U_DQUOTE] = ACTIONS(1425), - [anon_sym_u8_DQUOTE] = ACTIONS(1425), - [anon_sym_DQUOTE] = ACTIONS(1425), - [sym_true] = ACTIONS(1427), - [sym_false] = ACTIONS(1427), - [sym_null] = ACTIONS(1427), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1425), - [anon_sym_ATimport] = ACTIONS(1425), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1427), - [anon_sym_ATcompatibility_alias] = ACTIONS(1425), - [anon_sym_ATprotocol] = ACTIONS(1425), - [anon_sym_ATclass] = ACTIONS(1425), - [anon_sym_ATinterface] = ACTIONS(1425), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1427), - [sym_method_attribute_specifier] = ACTIONS(1427), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1427), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1427), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1427), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1427), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1427), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1427), - [anon_sym_NS_AVAILABLE] = ACTIONS(1427), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1427), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1427), - [anon_sym_API_AVAILABLE] = ACTIONS(1427), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1427), - [anon_sym_API_DEPRECATED] = ACTIONS(1427), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1427), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1427), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1427), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1427), - [anon_sym___deprecated_msg] = ACTIONS(1427), - [anon_sym___deprecated_enum_msg] = ACTIONS(1427), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1427), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1427), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1427), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1427), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1427), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1427), - [anon_sym_ATimplementation] = ACTIONS(1425), - [anon_sym_typeof] = ACTIONS(1427), - [anon_sym___typeof] = ACTIONS(1427), - [anon_sym___typeof__] = ACTIONS(1427), - [sym_self] = ACTIONS(1427), - [sym_super] = ACTIONS(1427), - [sym_nil] = ACTIONS(1427), - [sym_id] = ACTIONS(1427), - [sym_instancetype] = ACTIONS(1427), - [sym_Class] = ACTIONS(1427), - [sym_SEL] = ACTIONS(1427), - [sym_IMP] = ACTIONS(1427), - [sym_BOOL] = ACTIONS(1427), - [sym_auto] = ACTIONS(1427), - [anon_sym_ATautoreleasepool] = ACTIONS(1425), - [anon_sym_ATsynchronized] = ACTIONS(1425), - [anon_sym_ATtry] = ACTIONS(1425), - [anon_sym_ATcatch] = ACTIONS(1425), - [anon_sym_ATfinally] = ACTIONS(1425), - [anon_sym_ATthrow] = ACTIONS(1425), - [anon_sym_ATselector] = ACTIONS(1425), - [anon_sym_ATencode] = ACTIONS(1425), - [anon_sym_AT] = ACTIONS(1427), - [sym_YES] = ACTIONS(1427), - [sym_NO] = ACTIONS(1427), - [anon_sym___builtin_available] = ACTIONS(1427), - [anon_sym_ATavailable] = ACTIONS(1425), - [anon_sym_va_arg] = ACTIONS(1427), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [384] = { - [sym_identifier] = ACTIONS(1431), - [aux_sym_preproc_include_token1] = ACTIONS(1429), - [aux_sym_preproc_def_token1] = ACTIONS(1429), - [aux_sym_preproc_if_token1] = ACTIONS(1431), - [aux_sym_preproc_if_token2] = ACTIONS(1431), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1431), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1431), - [anon_sym_LPAREN2] = ACTIONS(1429), - [anon_sym_BANG] = ACTIONS(1429), - [anon_sym_TILDE] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_CARET] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1429), - [anon_sym_typedef] = ACTIONS(1431), - [anon_sym_extern] = ACTIONS(1431), - [anon_sym___attribute] = ACTIONS(1431), - [anon_sym___attribute__] = ACTIONS(1431), - [anon_sym___declspec] = ACTIONS(1431), - [anon_sym___cdecl] = ACTIONS(1431), - [anon_sym___clrcall] = ACTIONS(1431), - [anon_sym___stdcall] = ACTIONS(1431), - [anon_sym___fastcall] = ACTIONS(1431), - [anon_sym___thiscall] = ACTIONS(1431), - [anon_sym___vectorcall] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1429), - [anon_sym_LBRACK] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_auto] = ACTIONS(1431), - [anon_sym_register] = ACTIONS(1431), - [anon_sym_inline] = ACTIONS(1431), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [anon_sym_volatile] = ACTIONS(1431), - [anon_sym_restrict] = ACTIONS(1431), - [anon_sym__Atomic] = ACTIONS(1431), - [anon_sym_in] = ACTIONS(1431), - [anon_sym_out] = ACTIONS(1431), - [anon_sym_inout] = ACTIONS(1431), - [anon_sym_bycopy] = ACTIONS(1431), - [anon_sym_byref] = ACTIONS(1431), - [anon_sym_oneway] = ACTIONS(1431), - [anon_sym__Nullable] = ACTIONS(1431), - [anon_sym__Nonnull] = ACTIONS(1431), - [anon_sym__Nullable_result] = ACTIONS(1431), - [anon_sym__Null_unspecified] = ACTIONS(1431), - [anon_sym___autoreleasing] = ACTIONS(1431), - [anon_sym___nullable] = ACTIONS(1431), - [anon_sym___nonnull] = ACTIONS(1431), - [anon_sym___strong] = ACTIONS(1431), - [anon_sym___weak] = ACTIONS(1431), - [anon_sym___bridge] = ACTIONS(1431), - [anon_sym___bridge_transfer] = ACTIONS(1431), - [anon_sym___bridge_retained] = ACTIONS(1431), - [anon_sym___unsafe_unretained] = ACTIONS(1431), - [anon_sym___block] = ACTIONS(1431), - [anon_sym___kindof] = ACTIONS(1431), - [anon_sym___unused] = ACTIONS(1431), - [anon_sym__Complex] = ACTIONS(1431), - [anon_sym___complex] = ACTIONS(1431), - [anon_sym_IBOutlet] = ACTIONS(1431), - [anon_sym_IBInspectable] = ACTIONS(1431), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1431), - [anon_sym_signed] = ACTIONS(1431), - [anon_sym_unsigned] = ACTIONS(1431), - [anon_sym_long] = ACTIONS(1431), - [anon_sym_short] = ACTIONS(1431), - [sym_primitive_type] = ACTIONS(1431), - [anon_sym_enum] = ACTIONS(1431), - [anon_sym_NS_ENUM] = ACTIONS(1431), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1431), - [anon_sym_NS_OPTIONS] = ACTIONS(1431), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_else] = ACTIONS(1431), - [anon_sym_switch] = ACTIONS(1431), - [anon_sym_case] = ACTIONS(1431), - [anon_sym_default] = ACTIONS(1431), - [anon_sym_while] = ACTIONS(1431), - [anon_sym_do] = ACTIONS(1431), - [anon_sym_for] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1431), - [anon_sym_break] = ACTIONS(1431), - [anon_sym_continue] = ACTIONS(1431), - [anon_sym_goto] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1429), - [anon_sym_PLUS_PLUS] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [sym_number_literal] = ACTIONS(1429), - [anon_sym_L_SQUOTE] = ACTIONS(1429), - [anon_sym_u_SQUOTE] = ACTIONS(1429), - [anon_sym_U_SQUOTE] = ACTIONS(1429), - [anon_sym_u8_SQUOTE] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_L_DQUOTE] = ACTIONS(1429), - [anon_sym_u_DQUOTE] = ACTIONS(1429), - [anon_sym_U_DQUOTE] = ACTIONS(1429), - [anon_sym_u8_DQUOTE] = ACTIONS(1429), - [anon_sym_DQUOTE] = ACTIONS(1429), - [sym_true] = ACTIONS(1431), - [sym_false] = ACTIONS(1431), - [sym_null] = ACTIONS(1431), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1429), - [anon_sym_ATimport] = ACTIONS(1429), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1431), - [anon_sym_ATcompatibility_alias] = ACTIONS(1429), - [anon_sym_ATprotocol] = ACTIONS(1429), - [anon_sym_ATclass] = ACTIONS(1429), - [anon_sym_ATinterface] = ACTIONS(1429), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1431), - [sym_method_attribute_specifier] = ACTIONS(1431), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1431), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1431), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1431), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1431), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1431), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1431), - [anon_sym_NS_AVAILABLE] = ACTIONS(1431), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1431), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1431), - [anon_sym_API_AVAILABLE] = ACTIONS(1431), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1431), - [anon_sym_API_DEPRECATED] = ACTIONS(1431), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1431), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1431), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1431), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1431), - [anon_sym___deprecated_msg] = ACTIONS(1431), - [anon_sym___deprecated_enum_msg] = ACTIONS(1431), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1431), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1431), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1431), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1431), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1431), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1431), - [anon_sym_ATimplementation] = ACTIONS(1429), - [anon_sym_typeof] = ACTIONS(1431), - [anon_sym___typeof] = ACTIONS(1431), - [anon_sym___typeof__] = ACTIONS(1431), - [sym_self] = ACTIONS(1431), - [sym_super] = ACTIONS(1431), - [sym_nil] = ACTIONS(1431), - [sym_id] = ACTIONS(1431), - [sym_instancetype] = ACTIONS(1431), - [sym_Class] = ACTIONS(1431), - [sym_SEL] = ACTIONS(1431), - [sym_IMP] = ACTIONS(1431), - [sym_BOOL] = ACTIONS(1431), - [sym_auto] = ACTIONS(1431), - [anon_sym_ATautoreleasepool] = ACTIONS(1429), - [anon_sym_ATsynchronized] = ACTIONS(1429), - [anon_sym_ATtry] = ACTIONS(1429), - [anon_sym_ATcatch] = ACTIONS(1429), - [anon_sym_ATfinally] = ACTIONS(1429), - [anon_sym_ATthrow] = ACTIONS(1429), - [anon_sym_ATselector] = ACTIONS(1429), - [anon_sym_ATencode] = ACTIONS(1429), - [anon_sym_AT] = ACTIONS(1431), - [sym_YES] = ACTIONS(1431), - [sym_NO] = ACTIONS(1431), - [anon_sym___builtin_available] = ACTIONS(1431), - [anon_sym_ATavailable] = ACTIONS(1429), - [anon_sym_va_arg] = ACTIONS(1431), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [385] = { - [sym_identifier] = ACTIONS(1637), - [aux_sym_preproc_include_token1] = ACTIONS(1639), - [aux_sym_preproc_def_token1] = ACTIONS(1639), - [aux_sym_preproc_if_token1] = ACTIONS(1637), - [aux_sym_preproc_if_token2] = ACTIONS(1637), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1637), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1637), - [anon_sym_LPAREN2] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_CARET] = ACTIONS(1639), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_typedef] = ACTIONS(1637), - [anon_sym_extern] = ACTIONS(1637), - [anon_sym___attribute] = ACTIONS(1637), - [anon_sym___attribute__] = ACTIONS(1637), - [anon_sym___declspec] = ACTIONS(1637), - [anon_sym___cdecl] = ACTIONS(1637), - [anon_sym___clrcall] = ACTIONS(1637), - [anon_sym___stdcall] = ACTIONS(1637), - [anon_sym___fastcall] = ACTIONS(1637), - [anon_sym___thiscall] = ACTIONS(1637), - [anon_sym___vectorcall] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1639), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_auto] = ACTIONS(1637), - [anon_sym_register] = ACTIONS(1637), - [anon_sym_inline] = ACTIONS(1637), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [anon_sym_volatile] = ACTIONS(1637), - [anon_sym_restrict] = ACTIONS(1637), - [anon_sym__Atomic] = ACTIONS(1637), - [anon_sym_in] = ACTIONS(1637), - [anon_sym_out] = ACTIONS(1637), - [anon_sym_inout] = ACTIONS(1637), - [anon_sym_bycopy] = ACTIONS(1637), - [anon_sym_byref] = ACTIONS(1637), - [anon_sym_oneway] = ACTIONS(1637), - [anon_sym__Nullable] = ACTIONS(1637), - [anon_sym__Nonnull] = ACTIONS(1637), - [anon_sym__Nullable_result] = ACTIONS(1637), - [anon_sym__Null_unspecified] = ACTIONS(1637), - [anon_sym___autoreleasing] = ACTIONS(1637), - [anon_sym___nullable] = ACTIONS(1637), - [anon_sym___nonnull] = ACTIONS(1637), - [anon_sym___strong] = ACTIONS(1637), - [anon_sym___weak] = ACTIONS(1637), - [anon_sym___bridge] = ACTIONS(1637), - [anon_sym___bridge_transfer] = ACTIONS(1637), - [anon_sym___bridge_retained] = ACTIONS(1637), - [anon_sym___unsafe_unretained] = ACTIONS(1637), - [anon_sym___block] = ACTIONS(1637), - [anon_sym___kindof] = ACTIONS(1637), - [anon_sym___unused] = ACTIONS(1637), - [anon_sym__Complex] = ACTIONS(1637), - [anon_sym___complex] = ACTIONS(1637), - [anon_sym_IBOutlet] = ACTIONS(1637), - [anon_sym_IBInspectable] = ACTIONS(1637), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1637), - [anon_sym_signed] = ACTIONS(1637), - [anon_sym_unsigned] = ACTIONS(1637), - [anon_sym_long] = ACTIONS(1637), - [anon_sym_short] = ACTIONS(1637), - [sym_primitive_type] = ACTIONS(1637), - [anon_sym_enum] = ACTIONS(1637), - [anon_sym_NS_ENUM] = ACTIONS(1637), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1637), - [anon_sym_NS_OPTIONS] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(1637), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_else] = ACTIONS(1637), - [anon_sym_switch] = ACTIONS(1637), - [anon_sym_case] = ACTIONS(1637), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_goto] = ACTIONS(1637), - [anon_sym_DASH_DASH] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1639), - [anon_sym_sizeof] = ACTIONS(1637), - [sym_number_literal] = ACTIONS(1639), - [anon_sym_L_SQUOTE] = ACTIONS(1639), - [anon_sym_u_SQUOTE] = ACTIONS(1639), - [anon_sym_U_SQUOTE] = ACTIONS(1639), - [anon_sym_u8_SQUOTE] = ACTIONS(1639), - [anon_sym_SQUOTE] = ACTIONS(1639), - [anon_sym_L_DQUOTE] = ACTIONS(1639), - [anon_sym_u_DQUOTE] = ACTIONS(1639), - [anon_sym_U_DQUOTE] = ACTIONS(1639), - [anon_sym_u8_DQUOTE] = ACTIONS(1639), - [anon_sym_DQUOTE] = ACTIONS(1639), - [sym_true] = ACTIONS(1637), - [sym_false] = ACTIONS(1637), - [sym_null] = ACTIONS(1637), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1639), - [anon_sym_ATimport] = ACTIONS(1639), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1637), - [anon_sym_ATcompatibility_alias] = ACTIONS(1639), - [anon_sym_ATprotocol] = ACTIONS(1639), - [anon_sym_ATclass] = ACTIONS(1639), - [anon_sym_ATinterface] = ACTIONS(1639), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1637), - [sym_method_attribute_specifier] = ACTIONS(1637), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1637), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1637), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1637), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1637), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1637), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1637), - [anon_sym_NS_AVAILABLE] = ACTIONS(1637), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1637), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1637), - [anon_sym_API_AVAILABLE] = ACTIONS(1637), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1637), - [anon_sym_API_DEPRECATED] = ACTIONS(1637), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1637), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1637), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1637), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1637), - [anon_sym___deprecated_msg] = ACTIONS(1637), - [anon_sym___deprecated_enum_msg] = ACTIONS(1637), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1637), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1637), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1637), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1637), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1637), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1637), - [anon_sym_ATimplementation] = ACTIONS(1639), - [anon_sym_typeof] = ACTIONS(1637), - [anon_sym___typeof] = ACTIONS(1637), - [anon_sym___typeof__] = ACTIONS(1637), - [sym_self] = ACTIONS(1637), - [sym_super] = ACTIONS(1637), - [sym_nil] = ACTIONS(1637), - [sym_id] = ACTIONS(1637), - [sym_instancetype] = ACTIONS(1637), - [sym_Class] = ACTIONS(1637), - [sym_SEL] = ACTIONS(1637), - [sym_IMP] = ACTIONS(1637), - [sym_BOOL] = ACTIONS(1637), - [sym_auto] = ACTIONS(1637), - [anon_sym_ATautoreleasepool] = ACTIONS(1639), - [anon_sym_ATsynchronized] = ACTIONS(1639), - [anon_sym_ATtry] = ACTIONS(1639), - [anon_sym_ATcatch] = ACTIONS(1639), - [anon_sym_ATfinally] = ACTIONS(1639), - [anon_sym_ATthrow] = ACTIONS(1639), - [anon_sym_ATselector] = ACTIONS(1639), - [anon_sym_ATencode] = ACTIONS(1639), - [anon_sym_AT] = ACTIONS(1637), - [sym_YES] = ACTIONS(1637), - [sym_NO] = ACTIONS(1637), - [anon_sym___builtin_available] = ACTIONS(1637), - [anon_sym_ATavailable] = ACTIONS(1639), - [anon_sym_va_arg] = ACTIONS(1637), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [386] = { - [sym_identifier] = ACTIONS(1439), - [aux_sym_preproc_include_token1] = ACTIONS(1437), - [aux_sym_preproc_def_token1] = ACTIONS(1437), - [aux_sym_preproc_if_token1] = ACTIONS(1439), - [aux_sym_preproc_if_token2] = ACTIONS(1439), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1439), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1439), - [anon_sym_LPAREN2] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_TILDE] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1437), - [anon_sym_CARET] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_typedef] = ACTIONS(1439), - [anon_sym_extern] = ACTIONS(1439), - [anon_sym___attribute] = ACTIONS(1439), - [anon_sym___attribute__] = ACTIONS(1439), - [anon_sym___declspec] = ACTIONS(1439), - [anon_sym___cdecl] = ACTIONS(1439), - [anon_sym___clrcall] = ACTIONS(1439), - [anon_sym___stdcall] = ACTIONS(1439), - [anon_sym___fastcall] = ACTIONS(1439), - [anon_sym___thiscall] = ACTIONS(1439), - [anon_sym___vectorcall] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1439), - [anon_sym_auto] = ACTIONS(1439), - [anon_sym_register] = ACTIONS(1439), - [anon_sym_inline] = ACTIONS(1439), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_volatile] = ACTIONS(1439), - [anon_sym_restrict] = ACTIONS(1439), - [anon_sym__Atomic] = ACTIONS(1439), - [anon_sym_in] = ACTIONS(1439), - [anon_sym_out] = ACTIONS(1439), - [anon_sym_inout] = ACTIONS(1439), - [anon_sym_bycopy] = ACTIONS(1439), - [anon_sym_byref] = ACTIONS(1439), - [anon_sym_oneway] = ACTIONS(1439), - [anon_sym__Nullable] = ACTIONS(1439), - [anon_sym__Nonnull] = ACTIONS(1439), - [anon_sym__Nullable_result] = ACTIONS(1439), - [anon_sym__Null_unspecified] = ACTIONS(1439), - [anon_sym___autoreleasing] = ACTIONS(1439), - [anon_sym___nullable] = ACTIONS(1439), - [anon_sym___nonnull] = ACTIONS(1439), - [anon_sym___strong] = ACTIONS(1439), - [anon_sym___weak] = ACTIONS(1439), - [anon_sym___bridge] = ACTIONS(1439), - [anon_sym___bridge_transfer] = ACTIONS(1439), - [anon_sym___bridge_retained] = ACTIONS(1439), - [anon_sym___unsafe_unretained] = ACTIONS(1439), - [anon_sym___block] = ACTIONS(1439), - [anon_sym___kindof] = ACTIONS(1439), - [anon_sym___unused] = ACTIONS(1439), - [anon_sym__Complex] = ACTIONS(1439), - [anon_sym___complex] = ACTIONS(1439), - [anon_sym_IBOutlet] = ACTIONS(1439), - [anon_sym_IBInspectable] = ACTIONS(1439), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1439), - [anon_sym_signed] = ACTIONS(1439), - [anon_sym_unsigned] = ACTIONS(1439), - [anon_sym_long] = ACTIONS(1439), - [anon_sym_short] = ACTIONS(1439), - [sym_primitive_type] = ACTIONS(1439), - [anon_sym_enum] = ACTIONS(1439), - [anon_sym_NS_ENUM] = ACTIONS(1439), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1439), - [anon_sym_NS_OPTIONS] = ACTIONS(1439), - [anon_sym_struct] = ACTIONS(1439), - [anon_sym_union] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1439), - [anon_sym_else] = ACTIONS(1439), - [anon_sym_switch] = ACTIONS(1439), - [anon_sym_case] = ACTIONS(1439), - [anon_sym_default] = ACTIONS(1439), - [anon_sym_while] = ACTIONS(1439), - [anon_sym_do] = ACTIONS(1439), - [anon_sym_for] = ACTIONS(1439), - [anon_sym_return] = ACTIONS(1439), - [anon_sym_break] = ACTIONS(1439), - [anon_sym_continue] = ACTIONS(1439), - [anon_sym_goto] = ACTIONS(1439), - [anon_sym_DASH_DASH] = ACTIONS(1437), - [anon_sym_PLUS_PLUS] = ACTIONS(1437), - [anon_sym_sizeof] = ACTIONS(1439), - [sym_number_literal] = ACTIONS(1437), - [anon_sym_L_SQUOTE] = ACTIONS(1437), - [anon_sym_u_SQUOTE] = ACTIONS(1437), - [anon_sym_U_SQUOTE] = ACTIONS(1437), - [anon_sym_u8_SQUOTE] = ACTIONS(1437), - [anon_sym_SQUOTE] = ACTIONS(1437), - [anon_sym_L_DQUOTE] = ACTIONS(1437), - [anon_sym_u_DQUOTE] = ACTIONS(1437), - [anon_sym_U_DQUOTE] = ACTIONS(1437), - [anon_sym_u8_DQUOTE] = ACTIONS(1437), - [anon_sym_DQUOTE] = ACTIONS(1437), - [sym_true] = ACTIONS(1439), - [sym_false] = ACTIONS(1439), - [sym_null] = ACTIONS(1439), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1437), - [anon_sym_ATimport] = ACTIONS(1437), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1439), - [anon_sym_ATcompatibility_alias] = ACTIONS(1437), - [anon_sym_ATprotocol] = ACTIONS(1437), - [anon_sym_ATclass] = ACTIONS(1437), - [anon_sym_ATinterface] = ACTIONS(1437), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1439), - [sym_method_attribute_specifier] = ACTIONS(1439), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1439), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1439), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1439), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1439), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1439), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1439), - [anon_sym_NS_AVAILABLE] = ACTIONS(1439), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1439), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1439), - [anon_sym_API_AVAILABLE] = ACTIONS(1439), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1439), - [anon_sym_API_DEPRECATED] = ACTIONS(1439), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1439), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1439), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1439), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1439), - [anon_sym___deprecated_msg] = ACTIONS(1439), - [anon_sym___deprecated_enum_msg] = ACTIONS(1439), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1439), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1439), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1439), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1439), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1439), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1439), - [anon_sym_ATimplementation] = ACTIONS(1437), - [anon_sym_typeof] = ACTIONS(1439), - [anon_sym___typeof] = ACTIONS(1439), - [anon_sym___typeof__] = ACTIONS(1439), - [sym_self] = ACTIONS(1439), - [sym_super] = ACTIONS(1439), - [sym_nil] = ACTIONS(1439), - [sym_id] = ACTIONS(1439), - [sym_instancetype] = ACTIONS(1439), - [sym_Class] = ACTIONS(1439), - [sym_SEL] = ACTIONS(1439), - [sym_IMP] = ACTIONS(1439), - [sym_BOOL] = ACTIONS(1439), - [sym_auto] = ACTIONS(1439), - [anon_sym_ATautoreleasepool] = ACTIONS(1437), - [anon_sym_ATsynchronized] = ACTIONS(1437), - [anon_sym_ATtry] = ACTIONS(1437), - [anon_sym_ATcatch] = ACTIONS(1437), - [anon_sym_ATfinally] = ACTIONS(1437), - [anon_sym_ATthrow] = ACTIONS(1437), - [anon_sym_ATselector] = ACTIONS(1437), - [anon_sym_ATencode] = ACTIONS(1437), - [anon_sym_AT] = ACTIONS(1439), - [sym_YES] = ACTIONS(1439), - [sym_NO] = ACTIONS(1439), - [anon_sym___builtin_available] = ACTIONS(1439), - [anon_sym_ATavailable] = ACTIONS(1437), - [anon_sym_va_arg] = ACTIONS(1439), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [387] = { - [sym_identifier] = ACTIONS(1443), - [aux_sym_preproc_include_token1] = ACTIONS(1441), - [aux_sym_preproc_def_token1] = ACTIONS(1441), - [aux_sym_preproc_if_token1] = ACTIONS(1443), - [aux_sym_preproc_if_token2] = ACTIONS(1443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1443), - [anon_sym_LPAREN2] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1441), - [anon_sym_CARET] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_typedef] = ACTIONS(1443), - [anon_sym_extern] = ACTIONS(1443), - [anon_sym___attribute] = ACTIONS(1443), - [anon_sym___attribute__] = ACTIONS(1443), - [anon_sym___declspec] = ACTIONS(1443), - [anon_sym___cdecl] = ACTIONS(1443), - [anon_sym___clrcall] = ACTIONS(1443), - [anon_sym___stdcall] = ACTIONS(1443), - [anon_sym___fastcall] = ACTIONS(1443), - [anon_sym___thiscall] = ACTIONS(1443), - [anon_sym___vectorcall] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_auto] = ACTIONS(1443), - [anon_sym_register] = ACTIONS(1443), - [anon_sym_inline] = ACTIONS(1443), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_volatile] = ACTIONS(1443), - [anon_sym_restrict] = ACTIONS(1443), - [anon_sym__Atomic] = ACTIONS(1443), - [anon_sym_in] = ACTIONS(1443), - [anon_sym_out] = ACTIONS(1443), - [anon_sym_inout] = ACTIONS(1443), - [anon_sym_bycopy] = ACTIONS(1443), - [anon_sym_byref] = ACTIONS(1443), - [anon_sym_oneway] = ACTIONS(1443), - [anon_sym__Nullable] = ACTIONS(1443), - [anon_sym__Nonnull] = ACTIONS(1443), - [anon_sym__Nullable_result] = ACTIONS(1443), - [anon_sym__Null_unspecified] = ACTIONS(1443), - [anon_sym___autoreleasing] = ACTIONS(1443), - [anon_sym___nullable] = ACTIONS(1443), - [anon_sym___nonnull] = ACTIONS(1443), - [anon_sym___strong] = ACTIONS(1443), - [anon_sym___weak] = ACTIONS(1443), - [anon_sym___bridge] = ACTIONS(1443), - [anon_sym___bridge_transfer] = ACTIONS(1443), - [anon_sym___bridge_retained] = ACTIONS(1443), - [anon_sym___unsafe_unretained] = ACTIONS(1443), - [anon_sym___block] = ACTIONS(1443), - [anon_sym___kindof] = ACTIONS(1443), - [anon_sym___unused] = ACTIONS(1443), - [anon_sym__Complex] = ACTIONS(1443), - [anon_sym___complex] = ACTIONS(1443), - [anon_sym_IBOutlet] = ACTIONS(1443), - [anon_sym_IBInspectable] = ACTIONS(1443), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1443), - [anon_sym_signed] = ACTIONS(1443), - [anon_sym_unsigned] = ACTIONS(1443), - [anon_sym_long] = ACTIONS(1443), - [anon_sym_short] = ACTIONS(1443), - [sym_primitive_type] = ACTIONS(1443), - [anon_sym_enum] = ACTIONS(1443), - [anon_sym_NS_ENUM] = ACTIONS(1443), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1443), - [anon_sym_NS_OPTIONS] = ACTIONS(1443), - [anon_sym_struct] = ACTIONS(1443), - [anon_sym_union] = ACTIONS(1443), - [anon_sym_if] = ACTIONS(1443), - [anon_sym_else] = ACTIONS(1443), - [anon_sym_switch] = ACTIONS(1443), - [anon_sym_case] = ACTIONS(1443), - [anon_sym_default] = ACTIONS(1443), - [anon_sym_while] = ACTIONS(1443), - [anon_sym_do] = ACTIONS(1443), - [anon_sym_for] = ACTIONS(1443), - [anon_sym_return] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1443), - [anon_sym_continue] = ACTIONS(1443), - [anon_sym_goto] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_sizeof] = ACTIONS(1443), - [sym_number_literal] = ACTIONS(1441), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1441), - [anon_sym_u_DQUOTE] = ACTIONS(1441), - [anon_sym_U_DQUOTE] = ACTIONS(1441), - [anon_sym_u8_DQUOTE] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [sym_true] = ACTIONS(1443), - [sym_false] = ACTIONS(1443), - [sym_null] = ACTIONS(1443), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1441), - [anon_sym_ATimport] = ACTIONS(1441), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1443), - [anon_sym_ATcompatibility_alias] = ACTIONS(1441), - [anon_sym_ATprotocol] = ACTIONS(1441), - [anon_sym_ATclass] = ACTIONS(1441), - [anon_sym_ATinterface] = ACTIONS(1441), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1443), - [sym_method_attribute_specifier] = ACTIONS(1443), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1443), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1443), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1443), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1443), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1443), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1443), - [anon_sym_NS_AVAILABLE] = ACTIONS(1443), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1443), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1443), - [anon_sym_API_AVAILABLE] = ACTIONS(1443), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1443), - [anon_sym_API_DEPRECATED] = ACTIONS(1443), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1443), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1443), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1443), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1443), - [anon_sym___deprecated_msg] = ACTIONS(1443), - [anon_sym___deprecated_enum_msg] = ACTIONS(1443), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1443), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1443), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1443), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1443), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1443), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1443), - [anon_sym_ATimplementation] = ACTIONS(1441), - [anon_sym_typeof] = ACTIONS(1443), - [anon_sym___typeof] = ACTIONS(1443), - [anon_sym___typeof__] = ACTIONS(1443), - [sym_self] = ACTIONS(1443), - [sym_super] = ACTIONS(1443), - [sym_nil] = ACTIONS(1443), - [sym_id] = ACTIONS(1443), - [sym_instancetype] = ACTIONS(1443), - [sym_Class] = ACTIONS(1443), - [sym_SEL] = ACTIONS(1443), - [sym_IMP] = ACTIONS(1443), - [sym_BOOL] = ACTIONS(1443), - [sym_auto] = ACTIONS(1443), - [anon_sym_ATautoreleasepool] = ACTIONS(1441), - [anon_sym_ATsynchronized] = ACTIONS(1441), - [anon_sym_ATtry] = ACTIONS(1441), - [anon_sym_ATcatch] = ACTIONS(1441), - [anon_sym_ATfinally] = ACTIONS(1441), - [anon_sym_ATthrow] = ACTIONS(1441), - [anon_sym_ATselector] = ACTIONS(1441), - [anon_sym_ATencode] = ACTIONS(1441), - [anon_sym_AT] = ACTIONS(1443), - [sym_YES] = ACTIONS(1443), - [sym_NO] = ACTIONS(1443), - [anon_sym___builtin_available] = ACTIONS(1443), - [anon_sym_ATavailable] = ACTIONS(1441), - [anon_sym_va_arg] = ACTIONS(1443), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [388] = { - [sym_identifier] = ACTIONS(1451), - [aux_sym_preproc_include_token1] = ACTIONS(1449), - [aux_sym_preproc_def_token1] = ACTIONS(1449), - [aux_sym_preproc_if_token1] = ACTIONS(1451), - [aux_sym_preproc_if_token2] = ACTIONS(1451), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1451), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1451), - [anon_sym_LPAREN2] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_TILDE] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_typedef] = ACTIONS(1451), - [anon_sym_extern] = ACTIONS(1451), - [anon_sym___attribute] = ACTIONS(1451), - [anon_sym___attribute__] = ACTIONS(1451), - [anon_sym___declspec] = ACTIONS(1451), - [anon_sym___cdecl] = ACTIONS(1451), - [anon_sym___clrcall] = ACTIONS(1451), - [anon_sym___stdcall] = ACTIONS(1451), - [anon_sym___fastcall] = ACTIONS(1451), - [anon_sym___thiscall] = ACTIONS(1451), - [anon_sym___vectorcall] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_auto] = ACTIONS(1451), - [anon_sym_register] = ACTIONS(1451), - [anon_sym_inline] = ACTIONS(1451), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_volatile] = ACTIONS(1451), - [anon_sym_restrict] = ACTIONS(1451), - [anon_sym__Atomic] = ACTIONS(1451), - [anon_sym_in] = ACTIONS(1451), - [anon_sym_out] = ACTIONS(1451), - [anon_sym_inout] = ACTIONS(1451), - [anon_sym_bycopy] = ACTIONS(1451), - [anon_sym_byref] = ACTIONS(1451), - [anon_sym_oneway] = ACTIONS(1451), - [anon_sym__Nullable] = ACTIONS(1451), - [anon_sym__Nonnull] = ACTIONS(1451), - [anon_sym__Nullable_result] = ACTIONS(1451), - [anon_sym__Null_unspecified] = ACTIONS(1451), - [anon_sym___autoreleasing] = ACTIONS(1451), - [anon_sym___nullable] = ACTIONS(1451), - [anon_sym___nonnull] = ACTIONS(1451), - [anon_sym___strong] = ACTIONS(1451), - [anon_sym___weak] = ACTIONS(1451), - [anon_sym___bridge] = ACTIONS(1451), - [anon_sym___bridge_transfer] = ACTIONS(1451), - [anon_sym___bridge_retained] = ACTIONS(1451), - [anon_sym___unsafe_unretained] = ACTIONS(1451), - [anon_sym___block] = ACTIONS(1451), - [anon_sym___kindof] = ACTIONS(1451), - [anon_sym___unused] = ACTIONS(1451), - [anon_sym__Complex] = ACTIONS(1451), - [anon_sym___complex] = ACTIONS(1451), - [anon_sym_IBOutlet] = ACTIONS(1451), - [anon_sym_IBInspectable] = ACTIONS(1451), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1451), - [anon_sym_signed] = ACTIONS(1451), - [anon_sym_unsigned] = ACTIONS(1451), - [anon_sym_long] = ACTIONS(1451), - [anon_sym_short] = ACTIONS(1451), - [sym_primitive_type] = ACTIONS(1451), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_NS_ENUM] = ACTIONS(1451), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1451), - [anon_sym_NS_OPTIONS] = ACTIONS(1451), - [anon_sym_struct] = ACTIONS(1451), - [anon_sym_union] = ACTIONS(1451), - [anon_sym_if] = ACTIONS(1451), - [anon_sym_else] = ACTIONS(1451), - [anon_sym_switch] = ACTIONS(1451), - [anon_sym_case] = ACTIONS(1451), - [anon_sym_default] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1451), - [anon_sym_do] = ACTIONS(1451), - [anon_sym_for] = ACTIONS(1451), - [anon_sym_return] = ACTIONS(1451), - [anon_sym_break] = ACTIONS(1451), - [anon_sym_continue] = ACTIONS(1451), - [anon_sym_goto] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_sizeof] = ACTIONS(1451), - [sym_number_literal] = ACTIONS(1449), - [anon_sym_L_SQUOTE] = ACTIONS(1449), - [anon_sym_u_SQUOTE] = ACTIONS(1449), - [anon_sym_U_SQUOTE] = ACTIONS(1449), - [anon_sym_u8_SQUOTE] = ACTIONS(1449), - [anon_sym_SQUOTE] = ACTIONS(1449), - [anon_sym_L_DQUOTE] = ACTIONS(1449), - [anon_sym_u_DQUOTE] = ACTIONS(1449), - [anon_sym_U_DQUOTE] = ACTIONS(1449), - [anon_sym_u8_DQUOTE] = ACTIONS(1449), - [anon_sym_DQUOTE] = ACTIONS(1449), - [sym_true] = ACTIONS(1451), - [sym_false] = ACTIONS(1451), - [sym_null] = ACTIONS(1451), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1449), - [anon_sym_ATimport] = ACTIONS(1449), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1451), - [anon_sym_ATcompatibility_alias] = ACTIONS(1449), - [anon_sym_ATprotocol] = ACTIONS(1449), - [anon_sym_ATclass] = ACTIONS(1449), - [anon_sym_ATinterface] = ACTIONS(1449), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1451), - [sym_method_attribute_specifier] = ACTIONS(1451), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1451), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1451), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1451), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1451), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1451), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1451), - [anon_sym_NS_AVAILABLE] = ACTIONS(1451), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1451), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1451), - [anon_sym_API_AVAILABLE] = ACTIONS(1451), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1451), - [anon_sym_API_DEPRECATED] = ACTIONS(1451), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1451), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1451), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1451), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1451), - [anon_sym___deprecated_msg] = ACTIONS(1451), - [anon_sym___deprecated_enum_msg] = ACTIONS(1451), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1451), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1451), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1451), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1451), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1451), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1451), - [anon_sym_ATimplementation] = ACTIONS(1449), - [anon_sym_typeof] = ACTIONS(1451), - [anon_sym___typeof] = ACTIONS(1451), - [anon_sym___typeof__] = ACTIONS(1451), - [sym_self] = ACTIONS(1451), - [sym_super] = ACTIONS(1451), - [sym_nil] = ACTIONS(1451), - [sym_id] = ACTIONS(1451), - [sym_instancetype] = ACTIONS(1451), - [sym_Class] = ACTIONS(1451), - [sym_SEL] = ACTIONS(1451), - [sym_IMP] = ACTIONS(1451), - [sym_BOOL] = ACTIONS(1451), - [sym_auto] = ACTIONS(1451), - [anon_sym_ATautoreleasepool] = ACTIONS(1449), - [anon_sym_ATsynchronized] = ACTIONS(1449), - [anon_sym_ATtry] = ACTIONS(1449), - [anon_sym_ATcatch] = ACTIONS(1449), - [anon_sym_ATfinally] = ACTIONS(1449), - [anon_sym_ATthrow] = ACTIONS(1449), - [anon_sym_ATselector] = ACTIONS(1449), - [anon_sym_ATencode] = ACTIONS(1449), - [anon_sym_AT] = ACTIONS(1451), - [sym_YES] = ACTIONS(1451), - [sym_NO] = ACTIONS(1451), - [anon_sym___builtin_available] = ACTIONS(1451), - [anon_sym_ATavailable] = ACTIONS(1449), - [anon_sym_va_arg] = ACTIONS(1451), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [389] = { - [sym_identifier] = ACTIONS(1471), - [aux_sym_preproc_include_token1] = ACTIONS(1469), - [aux_sym_preproc_def_token1] = ACTIONS(1469), - [aux_sym_preproc_if_token1] = ACTIONS(1471), - [aux_sym_preproc_if_token2] = ACTIONS(1471), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1471), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1471), - [anon_sym_LPAREN2] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_typedef] = ACTIONS(1471), - [anon_sym_extern] = ACTIONS(1471), - [anon_sym___attribute] = ACTIONS(1471), - [anon_sym___attribute__] = ACTIONS(1471), - [anon_sym___declspec] = ACTIONS(1471), - [anon_sym___cdecl] = ACTIONS(1471), - [anon_sym___clrcall] = ACTIONS(1471), - [anon_sym___stdcall] = ACTIONS(1471), - [anon_sym___fastcall] = ACTIONS(1471), - [anon_sym___thiscall] = ACTIONS(1471), - [anon_sym___vectorcall] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_auto] = ACTIONS(1471), - [anon_sym_register] = ACTIONS(1471), - [anon_sym_inline] = ACTIONS(1471), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1471), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_volatile] = ACTIONS(1471), - [anon_sym_restrict] = ACTIONS(1471), - [anon_sym__Atomic] = ACTIONS(1471), - [anon_sym_in] = ACTIONS(1471), - [anon_sym_out] = ACTIONS(1471), - [anon_sym_inout] = ACTIONS(1471), - [anon_sym_bycopy] = ACTIONS(1471), - [anon_sym_byref] = ACTIONS(1471), - [anon_sym_oneway] = ACTIONS(1471), - [anon_sym__Nullable] = ACTIONS(1471), - [anon_sym__Nonnull] = ACTIONS(1471), - [anon_sym__Nullable_result] = ACTIONS(1471), - [anon_sym__Null_unspecified] = ACTIONS(1471), - [anon_sym___autoreleasing] = ACTIONS(1471), - [anon_sym___nullable] = ACTIONS(1471), - [anon_sym___nonnull] = ACTIONS(1471), - [anon_sym___strong] = ACTIONS(1471), - [anon_sym___weak] = ACTIONS(1471), - [anon_sym___bridge] = ACTIONS(1471), - [anon_sym___bridge_transfer] = ACTIONS(1471), - [anon_sym___bridge_retained] = ACTIONS(1471), - [anon_sym___unsafe_unretained] = ACTIONS(1471), - [anon_sym___block] = ACTIONS(1471), - [anon_sym___kindof] = ACTIONS(1471), - [anon_sym___unused] = ACTIONS(1471), - [anon_sym__Complex] = ACTIONS(1471), - [anon_sym___complex] = ACTIONS(1471), - [anon_sym_IBOutlet] = ACTIONS(1471), - [anon_sym_IBInspectable] = ACTIONS(1471), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1471), - [anon_sym_signed] = ACTIONS(1471), - [anon_sym_unsigned] = ACTIONS(1471), - [anon_sym_long] = ACTIONS(1471), - [anon_sym_short] = ACTIONS(1471), - [sym_primitive_type] = ACTIONS(1471), - [anon_sym_enum] = ACTIONS(1471), - [anon_sym_NS_ENUM] = ACTIONS(1471), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1471), - [anon_sym_NS_OPTIONS] = ACTIONS(1471), - [anon_sym_struct] = ACTIONS(1471), - [anon_sym_union] = ACTIONS(1471), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_else] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(1471), - [anon_sym_case] = ACTIONS(1471), - [anon_sym_default] = ACTIONS(1471), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_do] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_goto] = ACTIONS(1471), - [anon_sym_DASH_DASH] = ACTIONS(1469), - [anon_sym_PLUS_PLUS] = ACTIONS(1469), - [anon_sym_sizeof] = ACTIONS(1471), - [sym_number_literal] = ACTIONS(1469), - [anon_sym_L_SQUOTE] = ACTIONS(1469), - [anon_sym_u_SQUOTE] = ACTIONS(1469), - [anon_sym_U_SQUOTE] = ACTIONS(1469), - [anon_sym_u8_SQUOTE] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_L_DQUOTE] = ACTIONS(1469), - [anon_sym_u_DQUOTE] = ACTIONS(1469), - [anon_sym_U_DQUOTE] = ACTIONS(1469), - [anon_sym_u8_DQUOTE] = ACTIONS(1469), - [anon_sym_DQUOTE] = ACTIONS(1469), - [sym_true] = ACTIONS(1471), - [sym_false] = ACTIONS(1471), - [sym_null] = ACTIONS(1471), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1469), - [anon_sym_ATimport] = ACTIONS(1469), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1471), - [anon_sym_ATcompatibility_alias] = ACTIONS(1469), - [anon_sym_ATprotocol] = ACTIONS(1469), - [anon_sym_ATclass] = ACTIONS(1469), - [anon_sym_ATinterface] = ACTIONS(1469), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1471), - [sym_method_attribute_specifier] = ACTIONS(1471), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1471), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1471), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1471), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1471), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1471), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1471), - [anon_sym_NS_AVAILABLE] = ACTIONS(1471), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1471), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1471), - [anon_sym_API_AVAILABLE] = ACTIONS(1471), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1471), - [anon_sym_API_DEPRECATED] = ACTIONS(1471), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1471), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1471), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1471), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1471), - [anon_sym___deprecated_msg] = ACTIONS(1471), - [anon_sym___deprecated_enum_msg] = ACTIONS(1471), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1471), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1471), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1471), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1471), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1471), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1471), - [anon_sym_ATimplementation] = ACTIONS(1469), - [anon_sym_typeof] = ACTIONS(1471), - [anon_sym___typeof] = ACTIONS(1471), - [anon_sym___typeof__] = ACTIONS(1471), - [sym_self] = ACTIONS(1471), - [sym_super] = ACTIONS(1471), - [sym_nil] = ACTIONS(1471), - [sym_id] = ACTIONS(1471), - [sym_instancetype] = ACTIONS(1471), - [sym_Class] = ACTIONS(1471), - [sym_SEL] = ACTIONS(1471), - [sym_IMP] = ACTIONS(1471), - [sym_BOOL] = ACTIONS(1471), - [sym_auto] = ACTIONS(1471), - [anon_sym_ATautoreleasepool] = ACTIONS(1469), - [anon_sym_ATsynchronized] = ACTIONS(1469), - [anon_sym_ATtry] = ACTIONS(1469), - [anon_sym_ATcatch] = ACTIONS(1469), - [anon_sym_ATfinally] = ACTIONS(1469), - [anon_sym_ATthrow] = ACTIONS(1469), - [anon_sym_ATselector] = ACTIONS(1469), - [anon_sym_ATencode] = ACTIONS(1469), - [anon_sym_AT] = ACTIONS(1471), - [sym_YES] = ACTIONS(1471), - [sym_NO] = ACTIONS(1471), - [anon_sym___builtin_available] = ACTIONS(1471), - [anon_sym_ATavailable] = ACTIONS(1469), - [anon_sym_va_arg] = ACTIONS(1471), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [390] = { + [338] = { [sym_identifier] = ACTIONS(1475), [aux_sym_preproc_include_token1] = ACTIONS(1473), [aux_sym_preproc_def_token1] = ACTIONS(1473), @@ -94480,9 +85349,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1475), [sym_primitive_type] = ACTIONS(1475), [anon_sym_enum] = ACTIONS(1475), - [anon_sym_NS_ENUM] = ACTIONS(1475), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1475), - [anon_sym_NS_OPTIONS] = ACTIONS(1475), [anon_sym_struct] = ACTIONS(1475), [anon_sym_union] = ACTIONS(1475), [anon_sym_if] = ACTIONS(1475), @@ -94549,6 +85415,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1475), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1475), [anon_sym_ATimplementation] = ACTIONS(1473), + [anon_sym_NS_ENUM] = ACTIONS(1475), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1475), + [anon_sym_NS_OPTIONS] = ACTIONS(1475), [anon_sym_typeof] = ACTIONS(1475), [anon_sym___typeof] = ACTIONS(1475), [anon_sym___typeof__] = ACTIONS(1475), @@ -94583,174 +85452,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [391] = { - [sym_identifier] = ACTIONS(1491), - [aux_sym_preproc_include_token1] = ACTIONS(1489), - [aux_sym_preproc_def_token1] = ACTIONS(1489), - [aux_sym_preproc_if_token1] = ACTIONS(1491), - [aux_sym_preproc_if_token2] = ACTIONS(1491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1491), - [anon_sym_LPAREN2] = ACTIONS(1489), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_CARET] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1489), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_typedef] = ACTIONS(1491), - [anon_sym_extern] = ACTIONS(1491), - [anon_sym___attribute] = ACTIONS(1491), - [anon_sym___attribute__] = ACTIONS(1491), - [anon_sym___declspec] = ACTIONS(1491), - [anon_sym___cdecl] = ACTIONS(1491), - [anon_sym___clrcall] = ACTIONS(1491), - [anon_sym___stdcall] = ACTIONS(1491), - [anon_sym___fastcall] = ACTIONS(1491), - [anon_sym___thiscall] = ACTIONS(1491), - [anon_sym___vectorcall] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_auto] = ACTIONS(1491), - [anon_sym_register] = ACTIONS(1491), - [anon_sym_inline] = ACTIONS(1491), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_volatile] = ACTIONS(1491), - [anon_sym_restrict] = ACTIONS(1491), - [anon_sym__Atomic] = ACTIONS(1491), - [anon_sym_in] = ACTIONS(1491), - [anon_sym_out] = ACTIONS(1491), - [anon_sym_inout] = ACTIONS(1491), - [anon_sym_bycopy] = ACTIONS(1491), - [anon_sym_byref] = ACTIONS(1491), - [anon_sym_oneway] = ACTIONS(1491), - [anon_sym__Nullable] = ACTIONS(1491), - [anon_sym__Nonnull] = ACTIONS(1491), - [anon_sym__Nullable_result] = ACTIONS(1491), - [anon_sym__Null_unspecified] = ACTIONS(1491), - [anon_sym___autoreleasing] = ACTIONS(1491), - [anon_sym___nullable] = ACTIONS(1491), - [anon_sym___nonnull] = ACTIONS(1491), - [anon_sym___strong] = ACTIONS(1491), - [anon_sym___weak] = ACTIONS(1491), - [anon_sym___bridge] = ACTIONS(1491), - [anon_sym___bridge_transfer] = ACTIONS(1491), - [anon_sym___bridge_retained] = ACTIONS(1491), - [anon_sym___unsafe_unretained] = ACTIONS(1491), - [anon_sym___block] = ACTIONS(1491), - [anon_sym___kindof] = ACTIONS(1491), - [anon_sym___unused] = ACTIONS(1491), - [anon_sym__Complex] = ACTIONS(1491), - [anon_sym___complex] = ACTIONS(1491), - [anon_sym_IBOutlet] = ACTIONS(1491), - [anon_sym_IBInspectable] = ACTIONS(1491), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1491), - [anon_sym_signed] = ACTIONS(1491), - [anon_sym_unsigned] = ACTIONS(1491), - [anon_sym_long] = ACTIONS(1491), - [anon_sym_short] = ACTIONS(1491), - [sym_primitive_type] = ACTIONS(1491), - [anon_sym_enum] = ACTIONS(1491), - [anon_sym_NS_ENUM] = ACTIONS(1491), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1491), - [anon_sym_NS_OPTIONS] = ACTIONS(1491), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1491), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_else] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_case] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_goto] = ACTIONS(1491), - [anon_sym_DASH_DASH] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_sizeof] = ACTIONS(1491), - [sym_number_literal] = ACTIONS(1489), - [anon_sym_L_SQUOTE] = ACTIONS(1489), - [anon_sym_u_SQUOTE] = ACTIONS(1489), - [anon_sym_U_SQUOTE] = ACTIONS(1489), - [anon_sym_u8_SQUOTE] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_L_DQUOTE] = ACTIONS(1489), - [anon_sym_u_DQUOTE] = ACTIONS(1489), - [anon_sym_U_DQUOTE] = ACTIONS(1489), - [anon_sym_u8_DQUOTE] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(1489), - [sym_true] = ACTIONS(1491), - [sym_false] = ACTIONS(1491), - [sym_null] = ACTIONS(1491), + [339] = { + [sym_identifier] = ACTIONS(1271), + [aux_sym_preproc_include_token1] = ACTIONS(1269), + [aux_sym_preproc_def_token1] = ACTIONS(1269), + [aux_sym_preproc_if_token1] = ACTIONS(1271), + [aux_sym_preproc_if_token2] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_TILDE] = ACTIONS(1269), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_CARET] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_typedef] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym___attribute] = ACTIONS(1271), + [anon_sym___attribute__] = ACTIONS(1271), + [anon_sym___declspec] = ACTIONS(1271), + [anon_sym___cdecl] = ACTIONS(1271), + [anon_sym___clrcall] = ACTIONS(1271), + [anon_sym___stdcall] = ACTIONS(1271), + [anon_sym___fastcall] = ACTIONS(1271), + [anon_sym___thiscall] = ACTIONS(1271), + [anon_sym___vectorcall] = ACTIONS(1271), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_auto] = ACTIONS(1271), + [anon_sym_register] = ACTIONS(1271), + [anon_sym_inline] = ACTIONS(1271), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_volatile] = ACTIONS(1271), + [anon_sym_restrict] = ACTIONS(1271), + [anon_sym__Atomic] = ACTIONS(1271), + [anon_sym_in] = ACTIONS(1271), + [anon_sym_out] = ACTIONS(1271), + [anon_sym_inout] = ACTIONS(1271), + [anon_sym_bycopy] = ACTIONS(1271), + [anon_sym_byref] = ACTIONS(1271), + [anon_sym_oneway] = ACTIONS(1271), + [anon_sym__Nullable] = ACTIONS(1271), + [anon_sym__Nonnull] = ACTIONS(1271), + [anon_sym__Nullable_result] = ACTIONS(1271), + [anon_sym__Null_unspecified] = ACTIONS(1271), + [anon_sym___autoreleasing] = ACTIONS(1271), + [anon_sym___nullable] = ACTIONS(1271), + [anon_sym___nonnull] = ACTIONS(1271), + [anon_sym___strong] = ACTIONS(1271), + [anon_sym___weak] = ACTIONS(1271), + [anon_sym___bridge] = ACTIONS(1271), + [anon_sym___bridge_transfer] = ACTIONS(1271), + [anon_sym___bridge_retained] = ACTIONS(1271), + [anon_sym___unsafe_unretained] = ACTIONS(1271), + [anon_sym___block] = ACTIONS(1271), + [anon_sym___kindof] = ACTIONS(1271), + [anon_sym___unused] = ACTIONS(1271), + [anon_sym__Complex] = ACTIONS(1271), + [anon_sym___complex] = ACTIONS(1271), + [anon_sym_IBOutlet] = ACTIONS(1271), + [anon_sym_IBInspectable] = ACTIONS(1271), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1271), + [anon_sym_signed] = ACTIONS(1271), + [anon_sym_unsigned] = ACTIONS(1271), + [anon_sym_long] = ACTIONS(1271), + [anon_sym_short] = ACTIONS(1271), + [sym_primitive_type] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_else] = ACTIONS(1271), + [anon_sym_switch] = ACTIONS(1271), + [anon_sym_case] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_goto] = ACTIONS(1271), + [anon_sym_DASH_DASH] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_sizeof] = ACTIONS(1271), + [sym_number_literal] = ACTIONS(1269), + [anon_sym_L_SQUOTE] = ACTIONS(1269), + [anon_sym_u_SQUOTE] = ACTIONS(1269), + [anon_sym_U_SQUOTE] = ACTIONS(1269), + [anon_sym_u8_SQUOTE] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1269), + [anon_sym_L_DQUOTE] = ACTIONS(1269), + [anon_sym_u_DQUOTE] = ACTIONS(1269), + [anon_sym_U_DQUOTE] = ACTIONS(1269), + [anon_sym_u8_DQUOTE] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_true] = ACTIONS(1271), + [sym_false] = ACTIONS(1271), + [sym_null] = ACTIONS(1271), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1489), - [anon_sym_ATimport] = ACTIONS(1489), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1491), - [anon_sym_ATcompatibility_alias] = ACTIONS(1489), - [anon_sym_ATprotocol] = ACTIONS(1489), - [anon_sym_ATclass] = ACTIONS(1489), - [anon_sym_ATinterface] = ACTIONS(1489), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1491), - [sym_method_attribute_specifier] = ACTIONS(1491), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1491), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1491), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1491), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1491), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1491), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1491), - [anon_sym_NS_AVAILABLE] = ACTIONS(1491), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1491), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1491), - [anon_sym_API_AVAILABLE] = ACTIONS(1491), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1491), - [anon_sym_API_DEPRECATED] = ACTIONS(1491), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1491), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1491), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1491), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1491), - [anon_sym___deprecated_msg] = ACTIONS(1491), - [anon_sym___deprecated_enum_msg] = ACTIONS(1491), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1491), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1491), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1491), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1491), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1491), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1491), - [anon_sym_ATimplementation] = ACTIONS(1489), - [anon_sym_typeof] = ACTIONS(1491), - [anon_sym___typeof] = ACTIONS(1491), - [anon_sym___typeof__] = ACTIONS(1491), - [sym_self] = ACTIONS(1491), - [sym_super] = ACTIONS(1491), - [sym_nil] = ACTIONS(1491), - [sym_id] = ACTIONS(1491), - [sym_instancetype] = ACTIONS(1491), - [sym_Class] = ACTIONS(1491), - [sym_SEL] = ACTIONS(1491), - [sym_IMP] = ACTIONS(1491), - [sym_BOOL] = ACTIONS(1491), - [sym_auto] = ACTIONS(1491), - [anon_sym_ATautoreleasepool] = ACTIONS(1489), - [anon_sym_ATsynchronized] = ACTIONS(1489), - [anon_sym_ATtry] = ACTIONS(1489), - [anon_sym_ATcatch] = ACTIONS(1489), - [anon_sym_ATfinally] = ACTIONS(1489), - [anon_sym_ATthrow] = ACTIONS(1489), - [anon_sym_ATselector] = ACTIONS(1489), - [anon_sym_ATencode] = ACTIONS(1489), - [anon_sym_AT] = ACTIONS(1491), - [sym_YES] = ACTIONS(1491), - [sym_NO] = ACTIONS(1491), - [anon_sym___builtin_available] = ACTIONS(1491), - [anon_sym_ATavailable] = ACTIONS(1489), - [anon_sym_va_arg] = ACTIONS(1491), + [anon_sym_POUNDimport] = ACTIONS(1269), + [anon_sym_ATimport] = ACTIONS(1269), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1271), + [anon_sym_ATcompatibility_alias] = ACTIONS(1269), + [anon_sym_ATprotocol] = ACTIONS(1269), + [anon_sym_ATclass] = ACTIONS(1269), + [anon_sym_ATinterface] = ACTIONS(1269), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1271), + [sym_method_attribute_specifier] = ACTIONS(1271), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1271), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1271), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1271), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1271), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1271), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1271), + [anon_sym_NS_AVAILABLE] = ACTIONS(1271), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1271), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1271), + [anon_sym_API_AVAILABLE] = ACTIONS(1271), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1271), + [anon_sym_API_DEPRECATED] = ACTIONS(1271), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1271), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1271), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1271), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1271), + [anon_sym___deprecated_msg] = ACTIONS(1271), + [anon_sym___deprecated_enum_msg] = ACTIONS(1271), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1271), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1271), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1271), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1271), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1271), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1271), + [anon_sym_ATimplementation] = ACTIONS(1269), + [anon_sym_NS_ENUM] = ACTIONS(1271), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1271), + [anon_sym_NS_OPTIONS] = ACTIONS(1271), + [anon_sym_typeof] = ACTIONS(1271), + [anon_sym___typeof] = ACTIONS(1271), + [anon_sym___typeof__] = ACTIONS(1271), + [sym_self] = ACTIONS(1271), + [sym_super] = ACTIONS(1271), + [sym_nil] = ACTIONS(1271), + [sym_id] = ACTIONS(1271), + [sym_instancetype] = ACTIONS(1271), + [sym_Class] = ACTIONS(1271), + [sym_SEL] = ACTIONS(1271), + [sym_IMP] = ACTIONS(1271), + [sym_BOOL] = ACTIONS(1271), + [sym_auto] = ACTIONS(1271), + [anon_sym_ATautoreleasepool] = ACTIONS(1269), + [anon_sym_ATsynchronized] = ACTIONS(1269), + [anon_sym_ATtry] = ACTIONS(1269), + [anon_sym_ATcatch] = ACTIONS(1269), + [anon_sym_ATfinally] = ACTIONS(1269), + [anon_sym_ATthrow] = ACTIONS(1269), + [anon_sym_ATselector] = ACTIONS(1269), + [anon_sym_ATencode] = ACTIONS(1269), + [anon_sym_AT] = ACTIONS(1271), + [sym_YES] = ACTIONS(1271), + [sym_NO] = ACTIONS(1271), + [anon_sym___builtin_available] = ACTIONS(1271), + [anon_sym_ATavailable] = ACTIONS(1269), + [anon_sym_va_arg] = ACTIONS(1271), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -94758,174 +85627,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [392] = { - [sym_identifier] = ACTIONS(1263), - [aux_sym_preproc_include_token1] = ACTIONS(1265), - [aux_sym_preproc_def_token1] = ACTIONS(1265), - [aux_sym_preproc_if_token1] = ACTIONS(1263), - [aux_sym_preproc_if_token2] = ACTIONS(1263), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), - [anon_sym_LPAREN2] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_CARET] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym_typedef] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym___attribute] = ACTIONS(1263), - [anon_sym___attribute__] = ACTIONS(1263), - [anon_sym___declspec] = ACTIONS(1263), - [anon_sym___cdecl] = ACTIONS(1263), - [anon_sym___clrcall] = ACTIONS(1263), - [anon_sym___stdcall] = ACTIONS(1263), - [anon_sym___fastcall] = ACTIONS(1263), - [anon_sym___thiscall] = ACTIONS(1263), - [anon_sym___vectorcall] = ACTIONS(1263), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1265), - [anon_sym_static] = ACTIONS(1263), - [anon_sym_auto] = ACTIONS(1263), - [anon_sym_register] = ACTIONS(1263), - [anon_sym_inline] = ACTIONS(1263), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_volatile] = ACTIONS(1263), - [anon_sym_restrict] = ACTIONS(1263), - [anon_sym__Atomic] = ACTIONS(1263), - [anon_sym_in] = ACTIONS(1263), - [anon_sym_out] = ACTIONS(1263), - [anon_sym_inout] = ACTIONS(1263), - [anon_sym_bycopy] = ACTIONS(1263), - [anon_sym_byref] = ACTIONS(1263), - [anon_sym_oneway] = ACTIONS(1263), - [anon_sym__Nullable] = ACTIONS(1263), - [anon_sym__Nonnull] = ACTIONS(1263), - [anon_sym__Nullable_result] = ACTIONS(1263), - [anon_sym__Null_unspecified] = ACTIONS(1263), - [anon_sym___autoreleasing] = ACTIONS(1263), - [anon_sym___nullable] = ACTIONS(1263), - [anon_sym___nonnull] = ACTIONS(1263), - [anon_sym___strong] = ACTIONS(1263), - [anon_sym___weak] = ACTIONS(1263), - [anon_sym___bridge] = ACTIONS(1263), - [anon_sym___bridge_transfer] = ACTIONS(1263), - [anon_sym___bridge_retained] = ACTIONS(1263), - [anon_sym___unsafe_unretained] = ACTIONS(1263), - [anon_sym___block] = ACTIONS(1263), - [anon_sym___kindof] = ACTIONS(1263), - [anon_sym___unused] = ACTIONS(1263), - [anon_sym__Complex] = ACTIONS(1263), - [anon_sym___complex] = ACTIONS(1263), - [anon_sym_IBOutlet] = ACTIONS(1263), - [anon_sym_IBInspectable] = ACTIONS(1263), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1263), - [anon_sym_signed] = ACTIONS(1263), - [anon_sym_unsigned] = ACTIONS(1263), - [anon_sym_long] = ACTIONS(1263), - [anon_sym_short] = ACTIONS(1263), - [sym_primitive_type] = ACTIONS(1263), - [anon_sym_enum] = ACTIONS(1263), - [anon_sym_NS_ENUM] = ACTIONS(1263), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1263), - [anon_sym_NS_OPTIONS] = ACTIONS(1263), - [anon_sym_struct] = ACTIONS(1263), - [anon_sym_union] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(1720), - [anon_sym_switch] = ACTIONS(1263), - [anon_sym_case] = ACTIONS(1263), - [anon_sym_default] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_do] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_goto] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1265), - [anon_sym_PLUS_PLUS] = ACTIONS(1265), - [anon_sym_sizeof] = ACTIONS(1263), - [sym_number_literal] = ACTIONS(1265), - [anon_sym_L_SQUOTE] = ACTIONS(1265), - [anon_sym_u_SQUOTE] = ACTIONS(1265), - [anon_sym_U_SQUOTE] = ACTIONS(1265), - [anon_sym_u8_SQUOTE] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1265), - [anon_sym_L_DQUOTE] = ACTIONS(1265), - [anon_sym_u_DQUOTE] = ACTIONS(1265), - [anon_sym_U_DQUOTE] = ACTIONS(1265), - [anon_sym_u8_DQUOTE] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [sym_null] = ACTIONS(1263), + [340] = { + [sym_identifier] = ACTIONS(1275), + [aux_sym_preproc_include_token1] = ACTIONS(1273), + [aux_sym_preproc_def_token1] = ACTIONS(1273), + [aux_sym_preproc_if_token1] = ACTIONS(1275), + [aux_sym_preproc_if_token2] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1275), + [anon_sym_LPAREN2] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_TILDE] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1275), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_CARET] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_typedef] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym___attribute] = ACTIONS(1275), + [anon_sym___attribute__] = ACTIONS(1275), + [anon_sym___declspec] = ACTIONS(1275), + [anon_sym___cdecl] = ACTIONS(1275), + [anon_sym___clrcall] = ACTIONS(1275), + [anon_sym___stdcall] = ACTIONS(1275), + [anon_sym___fastcall] = ACTIONS(1275), + [anon_sym___thiscall] = ACTIONS(1275), + [anon_sym___vectorcall] = ACTIONS(1275), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_auto] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_inline] = ACTIONS(1275), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1275), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1275), + [anon_sym_in] = ACTIONS(1275), + [anon_sym_out] = ACTIONS(1275), + [anon_sym_inout] = ACTIONS(1275), + [anon_sym_bycopy] = ACTIONS(1275), + [anon_sym_byref] = ACTIONS(1275), + [anon_sym_oneway] = ACTIONS(1275), + [anon_sym__Nullable] = ACTIONS(1275), + [anon_sym__Nonnull] = ACTIONS(1275), + [anon_sym__Nullable_result] = ACTIONS(1275), + [anon_sym__Null_unspecified] = ACTIONS(1275), + [anon_sym___autoreleasing] = ACTIONS(1275), + [anon_sym___nullable] = ACTIONS(1275), + [anon_sym___nonnull] = ACTIONS(1275), + [anon_sym___strong] = ACTIONS(1275), + [anon_sym___weak] = ACTIONS(1275), + [anon_sym___bridge] = ACTIONS(1275), + [anon_sym___bridge_transfer] = ACTIONS(1275), + [anon_sym___bridge_retained] = ACTIONS(1275), + [anon_sym___unsafe_unretained] = ACTIONS(1275), + [anon_sym___block] = ACTIONS(1275), + [anon_sym___kindof] = ACTIONS(1275), + [anon_sym___unused] = ACTIONS(1275), + [anon_sym__Complex] = ACTIONS(1275), + [anon_sym___complex] = ACTIONS(1275), + [anon_sym_IBOutlet] = ACTIONS(1275), + [anon_sym_IBInspectable] = ACTIONS(1275), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1275), + [anon_sym_signed] = ACTIONS(1275), + [anon_sym_unsigned] = ACTIONS(1275), + [anon_sym_long] = ACTIONS(1275), + [anon_sym_short] = ACTIONS(1275), + [sym_primitive_type] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_else] = ACTIONS(1275), + [anon_sym_switch] = ACTIONS(1275), + [anon_sym_case] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_do] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_goto] = ACTIONS(1275), + [anon_sym_DASH_DASH] = ACTIONS(1273), + [anon_sym_PLUS_PLUS] = ACTIONS(1273), + [anon_sym_sizeof] = ACTIONS(1275), + [sym_number_literal] = ACTIONS(1273), + [anon_sym_L_SQUOTE] = ACTIONS(1273), + [anon_sym_u_SQUOTE] = ACTIONS(1273), + [anon_sym_U_SQUOTE] = ACTIONS(1273), + [anon_sym_u8_SQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1273), + [anon_sym_L_DQUOTE] = ACTIONS(1273), + [anon_sym_u_DQUOTE] = ACTIONS(1273), + [anon_sym_U_DQUOTE] = ACTIONS(1273), + [anon_sym_u8_DQUOTE] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1273), + [sym_true] = ACTIONS(1275), + [sym_false] = ACTIONS(1275), + [sym_null] = ACTIONS(1275), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1265), - [anon_sym_ATimport] = ACTIONS(1265), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1263), - [anon_sym_ATcompatibility_alias] = ACTIONS(1265), - [anon_sym_ATprotocol] = ACTIONS(1265), - [anon_sym_ATclass] = ACTIONS(1265), - [anon_sym_ATinterface] = ACTIONS(1265), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1263), - [sym_method_attribute_specifier] = ACTIONS(1263), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1263), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1263), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1263), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1263), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1263), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1263), - [anon_sym_NS_AVAILABLE] = ACTIONS(1263), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1263), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1263), - [anon_sym_API_AVAILABLE] = ACTIONS(1263), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1263), - [anon_sym_API_DEPRECATED] = ACTIONS(1263), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1263), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1263), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1263), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1263), - [anon_sym___deprecated_msg] = ACTIONS(1263), - [anon_sym___deprecated_enum_msg] = ACTIONS(1263), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1263), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1263), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1263), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1263), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1263), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1263), - [anon_sym_ATimplementation] = ACTIONS(1265), - [anon_sym_typeof] = ACTIONS(1263), - [anon_sym___typeof] = ACTIONS(1263), - [anon_sym___typeof__] = ACTIONS(1263), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1263), - [sym_nil] = ACTIONS(1263), - [sym_id] = ACTIONS(1263), - [sym_instancetype] = ACTIONS(1263), - [sym_Class] = ACTIONS(1263), - [sym_SEL] = ACTIONS(1263), - [sym_IMP] = ACTIONS(1263), - [sym_BOOL] = ACTIONS(1263), - [sym_auto] = ACTIONS(1263), - [anon_sym_ATautoreleasepool] = ACTIONS(1265), - [anon_sym_ATsynchronized] = ACTIONS(1265), - [anon_sym_ATtry] = ACTIONS(1265), - [anon_sym_ATcatch] = ACTIONS(1265), - [anon_sym_ATfinally] = ACTIONS(1265), - [anon_sym_ATthrow] = ACTIONS(1265), - [anon_sym_ATselector] = ACTIONS(1265), - [anon_sym_ATencode] = ACTIONS(1265), - [anon_sym_AT] = ACTIONS(1263), - [sym_YES] = ACTIONS(1263), - [sym_NO] = ACTIONS(1263), - [anon_sym___builtin_available] = ACTIONS(1263), - [anon_sym_ATavailable] = ACTIONS(1265), - [anon_sym_va_arg] = ACTIONS(1263), + [anon_sym_POUNDimport] = ACTIONS(1273), + [anon_sym_ATimport] = ACTIONS(1273), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1275), + [anon_sym_ATcompatibility_alias] = ACTIONS(1273), + [anon_sym_ATprotocol] = ACTIONS(1273), + [anon_sym_ATclass] = ACTIONS(1273), + [anon_sym_ATinterface] = ACTIONS(1273), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1275), + [sym_method_attribute_specifier] = ACTIONS(1275), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1275), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1275), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1275), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1275), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1275), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1275), + [anon_sym_NS_AVAILABLE] = ACTIONS(1275), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1275), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1275), + [anon_sym_API_AVAILABLE] = ACTIONS(1275), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1275), + [anon_sym_API_DEPRECATED] = ACTIONS(1275), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1275), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1275), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1275), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1275), + [anon_sym___deprecated_msg] = ACTIONS(1275), + [anon_sym___deprecated_enum_msg] = ACTIONS(1275), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1275), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1275), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1275), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1275), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1275), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1275), + [anon_sym_ATimplementation] = ACTIONS(1273), + [anon_sym_NS_ENUM] = ACTIONS(1275), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1275), + [anon_sym_NS_OPTIONS] = ACTIONS(1275), + [anon_sym_typeof] = ACTIONS(1275), + [anon_sym___typeof] = ACTIONS(1275), + [anon_sym___typeof__] = ACTIONS(1275), + [sym_self] = ACTIONS(1275), + [sym_super] = ACTIONS(1275), + [sym_nil] = ACTIONS(1275), + [sym_id] = ACTIONS(1275), + [sym_instancetype] = ACTIONS(1275), + [sym_Class] = ACTIONS(1275), + [sym_SEL] = ACTIONS(1275), + [sym_IMP] = ACTIONS(1275), + [sym_BOOL] = ACTIONS(1275), + [sym_auto] = ACTIONS(1275), + [anon_sym_ATautoreleasepool] = ACTIONS(1273), + [anon_sym_ATsynchronized] = ACTIONS(1273), + [anon_sym_ATtry] = ACTIONS(1273), + [anon_sym_ATcatch] = ACTIONS(1273), + [anon_sym_ATfinally] = ACTIONS(1273), + [anon_sym_ATthrow] = ACTIONS(1273), + [anon_sym_ATselector] = ACTIONS(1273), + [anon_sym_ATencode] = ACTIONS(1273), + [anon_sym_AT] = ACTIONS(1275), + [sym_YES] = ACTIONS(1275), + [sym_NO] = ACTIONS(1275), + [anon_sym___builtin_available] = ACTIONS(1275), + [anon_sym_ATavailable] = ACTIONS(1273), + [anon_sym_va_arg] = ACTIONS(1275), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -94933,174 +85802,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [393] = { - [sym_identifier] = ACTIONS(1269), - [aux_sym_preproc_include_token1] = ACTIONS(1271), - [aux_sym_preproc_def_token1] = ACTIONS(1271), - [aux_sym_preproc_if_token1] = ACTIONS(1269), - [aux_sym_preproc_if_token2] = ACTIONS(1269), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1269), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1269), - [anon_sym_LPAREN2] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1271), - [anon_sym_TILDE] = ACTIONS(1271), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_CARET] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_typedef] = ACTIONS(1269), - [anon_sym_extern] = ACTIONS(1269), - [anon_sym___attribute] = ACTIONS(1269), - [anon_sym___attribute__] = ACTIONS(1269), - [anon_sym___declspec] = ACTIONS(1269), - [anon_sym___cdecl] = ACTIONS(1269), - [anon_sym___clrcall] = ACTIONS(1269), - [anon_sym___stdcall] = ACTIONS(1269), - [anon_sym___fastcall] = ACTIONS(1269), - [anon_sym___thiscall] = ACTIONS(1269), - [anon_sym___vectorcall] = ACTIONS(1269), - [anon_sym_LBRACE] = ACTIONS(1271), - [anon_sym_LBRACK] = ACTIONS(1271), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_auto] = ACTIONS(1269), - [anon_sym_register] = ACTIONS(1269), - [anon_sym_inline] = ACTIONS(1269), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1269), - [anon_sym_const] = ACTIONS(1269), - [anon_sym_volatile] = ACTIONS(1269), - [anon_sym_restrict] = ACTIONS(1269), - [anon_sym__Atomic] = ACTIONS(1269), - [anon_sym_in] = ACTIONS(1269), - [anon_sym_out] = ACTIONS(1269), - [anon_sym_inout] = ACTIONS(1269), - [anon_sym_bycopy] = ACTIONS(1269), - [anon_sym_byref] = ACTIONS(1269), - [anon_sym_oneway] = ACTIONS(1269), - [anon_sym__Nullable] = ACTIONS(1269), - [anon_sym__Nonnull] = ACTIONS(1269), - [anon_sym__Nullable_result] = ACTIONS(1269), - [anon_sym__Null_unspecified] = ACTIONS(1269), - [anon_sym___autoreleasing] = ACTIONS(1269), - [anon_sym___nullable] = ACTIONS(1269), - [anon_sym___nonnull] = ACTIONS(1269), - [anon_sym___strong] = ACTIONS(1269), - [anon_sym___weak] = ACTIONS(1269), - [anon_sym___bridge] = ACTIONS(1269), - [anon_sym___bridge_transfer] = ACTIONS(1269), - [anon_sym___bridge_retained] = ACTIONS(1269), - [anon_sym___unsafe_unretained] = ACTIONS(1269), - [anon_sym___block] = ACTIONS(1269), - [anon_sym___kindof] = ACTIONS(1269), - [anon_sym___unused] = ACTIONS(1269), - [anon_sym__Complex] = ACTIONS(1269), - [anon_sym___complex] = ACTIONS(1269), - [anon_sym_IBOutlet] = ACTIONS(1269), - [anon_sym_IBInspectable] = ACTIONS(1269), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1269), - [anon_sym_signed] = ACTIONS(1269), - [anon_sym_unsigned] = ACTIONS(1269), - [anon_sym_long] = ACTIONS(1269), - [anon_sym_short] = ACTIONS(1269), - [sym_primitive_type] = ACTIONS(1269), - [anon_sym_enum] = ACTIONS(1269), - [anon_sym_NS_ENUM] = ACTIONS(1269), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1269), - [anon_sym_NS_OPTIONS] = ACTIONS(1269), - [anon_sym_struct] = ACTIONS(1269), - [anon_sym_union] = ACTIONS(1269), - [anon_sym_if] = ACTIONS(1269), - [anon_sym_else] = ACTIONS(1269), - [anon_sym_switch] = ACTIONS(1269), - [anon_sym_case] = ACTIONS(1269), - [anon_sym_default] = ACTIONS(1269), - [anon_sym_while] = ACTIONS(1269), - [anon_sym_do] = ACTIONS(1269), - [anon_sym_for] = ACTIONS(1269), - [anon_sym_return] = ACTIONS(1269), - [anon_sym_break] = ACTIONS(1269), - [anon_sym_continue] = ACTIONS(1269), - [anon_sym_goto] = ACTIONS(1269), - [anon_sym_DASH_DASH] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_sizeof] = ACTIONS(1269), - [sym_number_literal] = ACTIONS(1271), - [anon_sym_L_SQUOTE] = ACTIONS(1271), - [anon_sym_u_SQUOTE] = ACTIONS(1271), - [anon_sym_U_SQUOTE] = ACTIONS(1271), - [anon_sym_u8_SQUOTE] = ACTIONS(1271), - [anon_sym_SQUOTE] = ACTIONS(1271), - [anon_sym_L_DQUOTE] = ACTIONS(1271), - [anon_sym_u_DQUOTE] = ACTIONS(1271), - [anon_sym_U_DQUOTE] = ACTIONS(1271), - [anon_sym_u8_DQUOTE] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1271), - [sym_true] = ACTIONS(1269), - [sym_false] = ACTIONS(1269), - [sym_null] = ACTIONS(1269), + [341] = { + [sym_identifier] = ACTIONS(1279), + [aux_sym_preproc_include_token1] = ACTIONS(1277), + [aux_sym_preproc_def_token1] = ACTIONS(1277), + [aux_sym_preproc_if_token1] = ACTIONS(1279), + [aux_sym_preproc_if_token2] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1279), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1277), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1277), + [anon_sym_CARET] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_typedef] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym___attribute] = ACTIONS(1279), + [anon_sym___attribute__] = ACTIONS(1279), + [anon_sym___declspec] = ACTIONS(1279), + [anon_sym___cdecl] = ACTIONS(1279), + [anon_sym___clrcall] = ACTIONS(1279), + [anon_sym___stdcall] = ACTIONS(1279), + [anon_sym___fastcall] = ACTIONS(1279), + [anon_sym___thiscall] = ACTIONS(1279), + [anon_sym___vectorcall] = ACTIONS(1279), + [anon_sym_LBRACE] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_auto] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_inline] = ACTIONS(1279), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_volatile] = ACTIONS(1279), + [anon_sym_restrict] = ACTIONS(1279), + [anon_sym__Atomic] = ACTIONS(1279), + [anon_sym_in] = ACTIONS(1279), + [anon_sym_out] = ACTIONS(1279), + [anon_sym_inout] = ACTIONS(1279), + [anon_sym_bycopy] = ACTIONS(1279), + [anon_sym_byref] = ACTIONS(1279), + [anon_sym_oneway] = ACTIONS(1279), + [anon_sym__Nullable] = ACTIONS(1279), + [anon_sym__Nonnull] = ACTIONS(1279), + [anon_sym__Nullable_result] = ACTIONS(1279), + [anon_sym__Null_unspecified] = ACTIONS(1279), + [anon_sym___autoreleasing] = ACTIONS(1279), + [anon_sym___nullable] = ACTIONS(1279), + [anon_sym___nonnull] = ACTIONS(1279), + [anon_sym___strong] = ACTIONS(1279), + [anon_sym___weak] = ACTIONS(1279), + [anon_sym___bridge] = ACTIONS(1279), + [anon_sym___bridge_transfer] = ACTIONS(1279), + [anon_sym___bridge_retained] = ACTIONS(1279), + [anon_sym___unsafe_unretained] = ACTIONS(1279), + [anon_sym___block] = ACTIONS(1279), + [anon_sym___kindof] = ACTIONS(1279), + [anon_sym___unused] = ACTIONS(1279), + [anon_sym__Complex] = ACTIONS(1279), + [anon_sym___complex] = ACTIONS(1279), + [anon_sym_IBOutlet] = ACTIONS(1279), + [anon_sym_IBInspectable] = ACTIONS(1279), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1279), + [anon_sym_signed] = ACTIONS(1279), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [sym_primitive_type] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_if] = ACTIONS(1279), + [anon_sym_else] = ACTIONS(1279), + [anon_sym_switch] = ACTIONS(1279), + [anon_sym_case] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1279), + [anon_sym_do] = ACTIONS(1279), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1279), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_goto] = ACTIONS(1279), + [anon_sym_DASH_DASH] = ACTIONS(1277), + [anon_sym_PLUS_PLUS] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1279), + [sym_number_literal] = ACTIONS(1277), + [anon_sym_L_SQUOTE] = ACTIONS(1277), + [anon_sym_u_SQUOTE] = ACTIONS(1277), + [anon_sym_U_SQUOTE] = ACTIONS(1277), + [anon_sym_u8_SQUOTE] = ACTIONS(1277), + [anon_sym_SQUOTE] = ACTIONS(1277), + [anon_sym_L_DQUOTE] = ACTIONS(1277), + [anon_sym_u_DQUOTE] = ACTIONS(1277), + [anon_sym_U_DQUOTE] = ACTIONS(1277), + [anon_sym_u8_DQUOTE] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1277), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [sym_null] = ACTIONS(1279), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1271), - [anon_sym_ATimport] = ACTIONS(1271), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1269), - [anon_sym_ATcompatibility_alias] = ACTIONS(1271), - [anon_sym_ATprotocol] = ACTIONS(1271), - [anon_sym_ATclass] = ACTIONS(1271), - [anon_sym_ATinterface] = ACTIONS(1271), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1269), - [sym_method_attribute_specifier] = ACTIONS(1269), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1269), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1269), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1269), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1269), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1269), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1269), - [anon_sym_NS_AVAILABLE] = ACTIONS(1269), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1269), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1269), - [anon_sym_API_AVAILABLE] = ACTIONS(1269), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1269), - [anon_sym_API_DEPRECATED] = ACTIONS(1269), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1269), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1269), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1269), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1269), - [anon_sym___deprecated_msg] = ACTIONS(1269), - [anon_sym___deprecated_enum_msg] = ACTIONS(1269), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1269), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1269), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1269), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1269), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1269), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1269), - [anon_sym_ATimplementation] = ACTIONS(1271), - [anon_sym_typeof] = ACTIONS(1269), - [anon_sym___typeof] = ACTIONS(1269), - [anon_sym___typeof__] = ACTIONS(1269), - [sym_self] = ACTIONS(1269), - [sym_super] = ACTIONS(1269), - [sym_nil] = ACTIONS(1269), - [sym_id] = ACTIONS(1269), - [sym_instancetype] = ACTIONS(1269), - [sym_Class] = ACTIONS(1269), - [sym_SEL] = ACTIONS(1269), - [sym_IMP] = ACTIONS(1269), - [sym_BOOL] = ACTIONS(1269), - [sym_auto] = ACTIONS(1269), - [anon_sym_ATautoreleasepool] = ACTIONS(1271), - [anon_sym_ATsynchronized] = ACTIONS(1271), - [anon_sym_ATtry] = ACTIONS(1271), - [anon_sym_ATcatch] = ACTIONS(1271), - [anon_sym_ATfinally] = ACTIONS(1271), - [anon_sym_ATthrow] = ACTIONS(1271), - [anon_sym_ATselector] = ACTIONS(1271), - [anon_sym_ATencode] = ACTIONS(1271), - [anon_sym_AT] = ACTIONS(1269), - [sym_YES] = ACTIONS(1269), - [sym_NO] = ACTIONS(1269), - [anon_sym___builtin_available] = ACTIONS(1269), - [anon_sym_ATavailable] = ACTIONS(1271), - [anon_sym_va_arg] = ACTIONS(1269), + [anon_sym_POUNDimport] = ACTIONS(1277), + [anon_sym_ATimport] = ACTIONS(1277), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1279), + [anon_sym_ATcompatibility_alias] = ACTIONS(1277), + [anon_sym_ATprotocol] = ACTIONS(1277), + [anon_sym_ATclass] = ACTIONS(1277), + [anon_sym_ATinterface] = ACTIONS(1277), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1279), + [sym_method_attribute_specifier] = ACTIONS(1279), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1279), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1279), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1279), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1279), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1279), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1279), + [anon_sym_NS_AVAILABLE] = ACTIONS(1279), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1279), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1279), + [anon_sym_API_AVAILABLE] = ACTIONS(1279), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1279), + [anon_sym_API_DEPRECATED] = ACTIONS(1279), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1279), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1279), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1279), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1279), + [anon_sym___deprecated_msg] = ACTIONS(1279), + [anon_sym___deprecated_enum_msg] = ACTIONS(1279), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1279), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1279), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1279), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1279), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1279), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1279), + [anon_sym_ATimplementation] = ACTIONS(1277), + [anon_sym_NS_ENUM] = ACTIONS(1279), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1279), + [anon_sym_NS_OPTIONS] = ACTIONS(1279), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___typeof] = ACTIONS(1279), + [anon_sym___typeof__] = ACTIONS(1279), + [sym_self] = ACTIONS(1279), + [sym_super] = ACTIONS(1279), + [sym_nil] = ACTIONS(1279), + [sym_id] = ACTIONS(1279), + [sym_instancetype] = ACTIONS(1279), + [sym_Class] = ACTIONS(1279), + [sym_SEL] = ACTIONS(1279), + [sym_IMP] = ACTIONS(1279), + [sym_BOOL] = ACTIONS(1279), + [sym_auto] = ACTIONS(1279), + [anon_sym_ATautoreleasepool] = ACTIONS(1277), + [anon_sym_ATsynchronized] = ACTIONS(1277), + [anon_sym_ATtry] = ACTIONS(1277), + [anon_sym_ATcatch] = ACTIONS(1277), + [anon_sym_ATfinally] = ACTIONS(1277), + [anon_sym_ATthrow] = ACTIONS(1277), + [anon_sym_ATselector] = ACTIONS(1277), + [anon_sym_ATencode] = ACTIONS(1277), + [anon_sym_AT] = ACTIONS(1279), + [sym_YES] = ACTIONS(1279), + [sym_NO] = ACTIONS(1279), + [anon_sym___builtin_available] = ACTIONS(1279), + [anon_sym_ATavailable] = ACTIONS(1277), + [anon_sym_va_arg] = ACTIONS(1279), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -95108,174 +85977,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [394] = { - [sym_identifier] = ACTIONS(1641), - [aux_sym_preproc_include_token1] = ACTIONS(1643), - [aux_sym_preproc_def_token1] = ACTIONS(1643), - [aux_sym_preproc_if_token1] = ACTIONS(1641), - [aux_sym_preproc_if_token2] = ACTIONS(1641), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1641), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1641), - [anon_sym_LPAREN2] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_typedef] = ACTIONS(1641), - [anon_sym_extern] = ACTIONS(1641), - [anon_sym___attribute] = ACTIONS(1641), - [anon_sym___attribute__] = ACTIONS(1641), - [anon_sym___declspec] = ACTIONS(1641), - [anon_sym___cdecl] = ACTIONS(1641), - [anon_sym___clrcall] = ACTIONS(1641), - [anon_sym___stdcall] = ACTIONS(1641), - [anon_sym___fastcall] = ACTIONS(1641), - [anon_sym___thiscall] = ACTIONS(1641), - [anon_sym___vectorcall] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_auto] = ACTIONS(1641), - [anon_sym_register] = ACTIONS(1641), - [anon_sym_inline] = ACTIONS(1641), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(1641), - [anon_sym_volatile] = ACTIONS(1641), - [anon_sym_restrict] = ACTIONS(1641), - [anon_sym__Atomic] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [anon_sym_out] = ACTIONS(1641), - [anon_sym_inout] = ACTIONS(1641), - [anon_sym_bycopy] = ACTIONS(1641), - [anon_sym_byref] = ACTIONS(1641), - [anon_sym_oneway] = ACTIONS(1641), - [anon_sym__Nullable] = ACTIONS(1641), - [anon_sym__Nonnull] = ACTIONS(1641), - [anon_sym__Nullable_result] = ACTIONS(1641), - [anon_sym__Null_unspecified] = ACTIONS(1641), - [anon_sym___autoreleasing] = ACTIONS(1641), - [anon_sym___nullable] = ACTIONS(1641), - [anon_sym___nonnull] = ACTIONS(1641), - [anon_sym___strong] = ACTIONS(1641), - [anon_sym___weak] = ACTIONS(1641), - [anon_sym___bridge] = ACTIONS(1641), - [anon_sym___bridge_transfer] = ACTIONS(1641), - [anon_sym___bridge_retained] = ACTIONS(1641), - [anon_sym___unsafe_unretained] = ACTIONS(1641), - [anon_sym___block] = ACTIONS(1641), - [anon_sym___kindof] = ACTIONS(1641), - [anon_sym___unused] = ACTIONS(1641), - [anon_sym__Complex] = ACTIONS(1641), - [anon_sym___complex] = ACTIONS(1641), - [anon_sym_IBOutlet] = ACTIONS(1641), - [anon_sym_IBInspectable] = ACTIONS(1641), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1641), - [anon_sym_signed] = ACTIONS(1641), - [anon_sym_unsigned] = ACTIONS(1641), - [anon_sym_long] = ACTIONS(1641), - [anon_sym_short] = ACTIONS(1641), - [sym_primitive_type] = ACTIONS(1641), - [anon_sym_enum] = ACTIONS(1641), - [anon_sym_NS_ENUM] = ACTIONS(1641), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1641), - [anon_sym_NS_OPTIONS] = ACTIONS(1641), - [anon_sym_struct] = ACTIONS(1641), - [anon_sym_union] = ACTIONS(1641), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_else] = ACTIONS(1641), - [anon_sym_switch] = ACTIONS(1641), - [anon_sym_case] = ACTIONS(1641), - [anon_sym_default] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_do] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_goto] = ACTIONS(1641), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_sizeof] = ACTIONS(1641), - [sym_number_literal] = ACTIONS(1643), - [anon_sym_L_SQUOTE] = ACTIONS(1643), - [anon_sym_u_SQUOTE] = ACTIONS(1643), - [anon_sym_U_SQUOTE] = ACTIONS(1643), - [anon_sym_u8_SQUOTE] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1643), - [anon_sym_L_DQUOTE] = ACTIONS(1643), - [anon_sym_u_DQUOTE] = ACTIONS(1643), - [anon_sym_U_DQUOTE] = ACTIONS(1643), - [anon_sym_u8_DQUOTE] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym_true] = ACTIONS(1641), - [sym_false] = ACTIONS(1641), - [sym_null] = ACTIONS(1641), + [342] = { + [sym_identifier] = ACTIONS(1283), + [aux_sym_preproc_include_token1] = ACTIONS(1281), + [aux_sym_preproc_def_token1] = ACTIONS(1281), + [aux_sym_preproc_if_token1] = ACTIONS(1283), + [aux_sym_preproc_if_token2] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1283), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1283), + [anon_sym_LPAREN2] = ACTIONS(1281), + [anon_sym_BANG] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym___attribute] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym___declspec] = ACTIONS(1283), + [anon_sym___cdecl] = ACTIONS(1283), + [anon_sym___clrcall] = ACTIONS(1283), + [anon_sym___stdcall] = ACTIONS(1283), + [anon_sym___fastcall] = ACTIONS(1283), + [anon_sym___thiscall] = ACTIONS(1283), + [anon_sym___vectorcall] = ACTIONS(1283), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1281), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [anon_sym__Atomic] = ACTIONS(1283), + [anon_sym_in] = ACTIONS(1283), + [anon_sym_out] = ACTIONS(1283), + [anon_sym_inout] = ACTIONS(1283), + [anon_sym_bycopy] = ACTIONS(1283), + [anon_sym_byref] = ACTIONS(1283), + [anon_sym_oneway] = ACTIONS(1283), + [anon_sym__Nullable] = ACTIONS(1283), + [anon_sym__Nonnull] = ACTIONS(1283), + [anon_sym__Nullable_result] = ACTIONS(1283), + [anon_sym__Null_unspecified] = ACTIONS(1283), + [anon_sym___autoreleasing] = ACTIONS(1283), + [anon_sym___nullable] = ACTIONS(1283), + [anon_sym___nonnull] = ACTIONS(1283), + [anon_sym___strong] = ACTIONS(1283), + [anon_sym___weak] = ACTIONS(1283), + [anon_sym___bridge] = ACTIONS(1283), + [anon_sym___bridge_transfer] = ACTIONS(1283), + [anon_sym___bridge_retained] = ACTIONS(1283), + [anon_sym___unsafe_unretained] = ACTIONS(1283), + [anon_sym___block] = ACTIONS(1283), + [anon_sym___kindof] = ACTIONS(1283), + [anon_sym___unused] = ACTIONS(1283), + [anon_sym__Complex] = ACTIONS(1283), + [anon_sym___complex] = ACTIONS(1283), + [anon_sym_IBOutlet] = ACTIONS(1283), + [anon_sym_IBInspectable] = ACTIONS(1283), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1283), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [sym_primitive_type] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_else] = ACTIONS(1283), + [anon_sym_switch] = ACTIONS(1283), + [anon_sym_case] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_do] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_goto] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_sizeof] = ACTIONS(1283), + [sym_number_literal] = ACTIONS(1281), + [anon_sym_L_SQUOTE] = ACTIONS(1281), + [anon_sym_u_SQUOTE] = ACTIONS(1281), + [anon_sym_U_SQUOTE] = ACTIONS(1281), + [anon_sym_u8_SQUOTE] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1281), + [anon_sym_L_DQUOTE] = ACTIONS(1281), + [anon_sym_u_DQUOTE] = ACTIONS(1281), + [anon_sym_U_DQUOTE] = ACTIONS(1281), + [anon_sym_u8_DQUOTE] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_true] = ACTIONS(1283), + [sym_false] = ACTIONS(1283), + [sym_null] = ACTIONS(1283), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1643), - [anon_sym_ATimport] = ACTIONS(1643), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1641), - [anon_sym_ATcompatibility_alias] = ACTIONS(1643), - [anon_sym_ATprotocol] = ACTIONS(1643), - [anon_sym_ATclass] = ACTIONS(1643), - [anon_sym_ATinterface] = ACTIONS(1643), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1641), - [sym_method_attribute_specifier] = ACTIONS(1641), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1641), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1641), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1641), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1641), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1641), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1641), - [anon_sym_NS_AVAILABLE] = ACTIONS(1641), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1641), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1641), - [anon_sym_API_AVAILABLE] = ACTIONS(1641), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1641), - [anon_sym_API_DEPRECATED] = ACTIONS(1641), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1641), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1641), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1641), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1641), - [anon_sym___deprecated_msg] = ACTIONS(1641), - [anon_sym___deprecated_enum_msg] = ACTIONS(1641), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1641), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1641), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1641), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1641), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1641), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1641), - [anon_sym_ATimplementation] = ACTIONS(1643), - [anon_sym_typeof] = ACTIONS(1641), - [anon_sym___typeof] = ACTIONS(1641), - [anon_sym___typeof__] = ACTIONS(1641), - [sym_self] = ACTIONS(1641), - [sym_super] = ACTIONS(1641), - [sym_nil] = ACTIONS(1641), - [sym_id] = ACTIONS(1641), - [sym_instancetype] = ACTIONS(1641), - [sym_Class] = ACTIONS(1641), - [sym_SEL] = ACTIONS(1641), - [sym_IMP] = ACTIONS(1641), - [sym_BOOL] = ACTIONS(1641), - [sym_auto] = ACTIONS(1641), - [anon_sym_ATautoreleasepool] = ACTIONS(1643), - [anon_sym_ATsynchronized] = ACTIONS(1643), - [anon_sym_ATtry] = ACTIONS(1643), - [anon_sym_ATcatch] = ACTIONS(1643), - [anon_sym_ATfinally] = ACTIONS(1643), - [anon_sym_ATthrow] = ACTIONS(1643), - [anon_sym_ATselector] = ACTIONS(1643), - [anon_sym_ATencode] = ACTIONS(1643), - [anon_sym_AT] = ACTIONS(1641), - [sym_YES] = ACTIONS(1641), - [sym_NO] = ACTIONS(1641), - [anon_sym___builtin_available] = ACTIONS(1641), - [anon_sym_ATavailable] = ACTIONS(1643), - [anon_sym_va_arg] = ACTIONS(1641), + [anon_sym_POUNDimport] = ACTIONS(1281), + [anon_sym_ATimport] = ACTIONS(1281), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1283), + [anon_sym_ATcompatibility_alias] = ACTIONS(1281), + [anon_sym_ATprotocol] = ACTIONS(1281), + [anon_sym_ATclass] = ACTIONS(1281), + [anon_sym_ATinterface] = ACTIONS(1281), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1283), + [sym_method_attribute_specifier] = ACTIONS(1283), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1283), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1283), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1283), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1283), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1283), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1283), + [anon_sym_NS_AVAILABLE] = ACTIONS(1283), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1283), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1283), + [anon_sym_API_AVAILABLE] = ACTIONS(1283), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1283), + [anon_sym_API_DEPRECATED] = ACTIONS(1283), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1283), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1283), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1283), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1283), + [anon_sym___deprecated_msg] = ACTIONS(1283), + [anon_sym___deprecated_enum_msg] = ACTIONS(1283), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1283), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1283), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1283), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1283), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1283), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1283), + [anon_sym_ATimplementation] = ACTIONS(1281), + [anon_sym_NS_ENUM] = ACTIONS(1283), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1283), + [anon_sym_NS_OPTIONS] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1283), + [anon_sym___typeof] = ACTIONS(1283), + [anon_sym___typeof__] = ACTIONS(1283), + [sym_self] = ACTIONS(1283), + [sym_super] = ACTIONS(1283), + [sym_nil] = ACTIONS(1283), + [sym_id] = ACTIONS(1283), + [sym_instancetype] = ACTIONS(1283), + [sym_Class] = ACTIONS(1283), + [sym_SEL] = ACTIONS(1283), + [sym_IMP] = ACTIONS(1283), + [sym_BOOL] = ACTIONS(1283), + [sym_auto] = ACTIONS(1283), + [anon_sym_ATautoreleasepool] = ACTIONS(1281), + [anon_sym_ATsynchronized] = ACTIONS(1281), + [anon_sym_ATtry] = ACTIONS(1281), + [anon_sym_ATcatch] = ACTIONS(1281), + [anon_sym_ATfinally] = ACTIONS(1281), + [anon_sym_ATthrow] = ACTIONS(1281), + [anon_sym_ATselector] = ACTIONS(1281), + [anon_sym_ATencode] = ACTIONS(1281), + [anon_sym_AT] = ACTIONS(1283), + [sym_YES] = ACTIONS(1283), + [sym_NO] = ACTIONS(1283), + [anon_sym___builtin_available] = ACTIONS(1283), + [anon_sym_ATavailable] = ACTIONS(1281), + [anon_sym_va_arg] = ACTIONS(1283), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -95283,174 +86152,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [395] = { - [sym_identifier] = ACTIONS(1645), - [aux_sym_preproc_include_token1] = ACTIONS(1647), - [aux_sym_preproc_def_token1] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1645), - [aux_sym_preproc_if_token2] = ACTIONS(1645), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1645), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1645), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_typedef] = ACTIONS(1645), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym___attribute] = ACTIONS(1645), - [anon_sym___attribute__] = ACTIONS(1645), - [anon_sym___declspec] = ACTIONS(1645), - [anon_sym___cdecl] = ACTIONS(1645), - [anon_sym___clrcall] = ACTIONS(1645), - [anon_sym___stdcall] = ACTIONS(1645), - [anon_sym___fastcall] = ACTIONS(1645), - [anon_sym___thiscall] = ACTIONS(1645), - [anon_sym___vectorcall] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_auto] = ACTIONS(1645), - [anon_sym_register] = ACTIONS(1645), - [anon_sym_inline] = ACTIONS(1645), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_volatile] = ACTIONS(1645), - [anon_sym_restrict] = ACTIONS(1645), - [anon_sym__Atomic] = ACTIONS(1645), - [anon_sym_in] = ACTIONS(1645), - [anon_sym_out] = ACTIONS(1645), - [anon_sym_inout] = ACTIONS(1645), - [anon_sym_bycopy] = ACTIONS(1645), - [anon_sym_byref] = ACTIONS(1645), - [anon_sym_oneway] = ACTIONS(1645), - [anon_sym__Nullable] = ACTIONS(1645), - [anon_sym__Nonnull] = ACTIONS(1645), - [anon_sym__Nullable_result] = ACTIONS(1645), - [anon_sym__Null_unspecified] = ACTIONS(1645), - [anon_sym___autoreleasing] = ACTIONS(1645), - [anon_sym___nullable] = ACTIONS(1645), - [anon_sym___nonnull] = ACTIONS(1645), - [anon_sym___strong] = ACTIONS(1645), - [anon_sym___weak] = ACTIONS(1645), - [anon_sym___bridge] = ACTIONS(1645), - [anon_sym___bridge_transfer] = ACTIONS(1645), - [anon_sym___bridge_retained] = ACTIONS(1645), - [anon_sym___unsafe_unretained] = ACTIONS(1645), - [anon_sym___block] = ACTIONS(1645), - [anon_sym___kindof] = ACTIONS(1645), - [anon_sym___unused] = ACTIONS(1645), - [anon_sym__Complex] = ACTIONS(1645), - [anon_sym___complex] = ACTIONS(1645), - [anon_sym_IBOutlet] = ACTIONS(1645), - [anon_sym_IBInspectable] = ACTIONS(1645), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1645), - [anon_sym_signed] = ACTIONS(1645), - [anon_sym_unsigned] = ACTIONS(1645), - [anon_sym_long] = ACTIONS(1645), - [anon_sym_short] = ACTIONS(1645), - [sym_primitive_type] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1645), - [anon_sym_NS_ENUM] = ACTIONS(1645), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1645), - [anon_sym_NS_OPTIONS] = ACTIONS(1645), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_union] = ACTIONS(1645), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_else] = ACTIONS(1645), - [anon_sym_switch] = ACTIONS(1645), - [anon_sym_case] = ACTIONS(1645), - [anon_sym_default] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_goto] = ACTIONS(1645), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_sizeof] = ACTIONS(1645), - [sym_number_literal] = ACTIONS(1647), - [anon_sym_L_SQUOTE] = ACTIONS(1647), - [anon_sym_u_SQUOTE] = ACTIONS(1647), - [anon_sym_U_SQUOTE] = ACTIONS(1647), - [anon_sym_u8_SQUOTE] = ACTIONS(1647), - [anon_sym_SQUOTE] = ACTIONS(1647), - [anon_sym_L_DQUOTE] = ACTIONS(1647), - [anon_sym_u_DQUOTE] = ACTIONS(1647), - [anon_sym_U_DQUOTE] = ACTIONS(1647), - [anon_sym_u8_DQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [sym_true] = ACTIONS(1645), - [sym_false] = ACTIONS(1645), - [sym_null] = ACTIONS(1645), + [343] = { + [sym_identifier] = ACTIONS(1288), + [aux_sym_preproc_include_token1] = ACTIONS(1285), + [aux_sym_preproc_def_token1] = ACTIONS(1285), + [aux_sym_preproc_if_token1] = ACTIONS(1288), + [aux_sym_preproc_if_token2] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), + [anon_sym_LPAREN2] = ACTIONS(1285), + [anon_sym_BANG] = ACTIONS(1285), + [anon_sym_TILDE] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_CARET] = ACTIONS(1285), + [anon_sym_AMP] = ACTIONS(1285), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_typedef] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym___attribute] = ACTIONS(1288), + [anon_sym___attribute__] = ACTIONS(1288), + [anon_sym___declspec] = ACTIONS(1288), + [anon_sym___cdecl] = ACTIONS(1288), + [anon_sym___clrcall] = ACTIONS(1288), + [anon_sym___stdcall] = ACTIONS(1288), + [anon_sym___fastcall] = ACTIONS(1288), + [anon_sym___thiscall] = ACTIONS(1288), + [anon_sym___vectorcall] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_auto] = ACTIONS(1288), + [anon_sym_register] = ACTIONS(1288), + [anon_sym_inline] = ACTIONS(1288), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_volatile] = ACTIONS(1288), + [anon_sym_restrict] = ACTIONS(1288), + [anon_sym__Atomic] = ACTIONS(1288), + [anon_sym_in] = ACTIONS(1288), + [anon_sym_out] = ACTIONS(1288), + [anon_sym_inout] = ACTIONS(1288), + [anon_sym_bycopy] = ACTIONS(1288), + [anon_sym_byref] = ACTIONS(1288), + [anon_sym_oneway] = ACTIONS(1288), + [anon_sym__Nullable] = ACTIONS(1288), + [anon_sym__Nonnull] = ACTIONS(1288), + [anon_sym__Nullable_result] = ACTIONS(1288), + [anon_sym__Null_unspecified] = ACTIONS(1288), + [anon_sym___autoreleasing] = ACTIONS(1288), + [anon_sym___nullable] = ACTIONS(1288), + [anon_sym___nonnull] = ACTIONS(1288), + [anon_sym___strong] = ACTIONS(1288), + [anon_sym___weak] = ACTIONS(1288), + [anon_sym___bridge] = ACTIONS(1288), + [anon_sym___bridge_transfer] = ACTIONS(1288), + [anon_sym___bridge_retained] = ACTIONS(1288), + [anon_sym___unsafe_unretained] = ACTIONS(1288), + [anon_sym___block] = ACTIONS(1288), + [anon_sym___kindof] = ACTIONS(1288), + [anon_sym___unused] = ACTIONS(1288), + [anon_sym__Complex] = ACTIONS(1288), + [anon_sym___complex] = ACTIONS(1288), + [anon_sym_IBOutlet] = ACTIONS(1288), + [anon_sym_IBInspectable] = ACTIONS(1288), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1288), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [sym_primitive_type] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_switch] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_do] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_goto] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1288), + [sym_number_literal] = ACTIONS(1285), + [anon_sym_L_SQUOTE] = ACTIONS(1285), + [anon_sym_u_SQUOTE] = ACTIONS(1285), + [anon_sym_U_SQUOTE] = ACTIONS(1285), + [anon_sym_u8_SQUOTE] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1285), + [anon_sym_L_DQUOTE] = ACTIONS(1285), + [anon_sym_u_DQUOTE] = ACTIONS(1285), + [anon_sym_U_DQUOTE] = ACTIONS(1285), + [anon_sym_u8_DQUOTE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_true] = ACTIONS(1288), + [sym_false] = ACTIONS(1288), + [sym_null] = ACTIONS(1288), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1647), - [anon_sym_ATimport] = ACTIONS(1647), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1645), - [anon_sym_ATcompatibility_alias] = ACTIONS(1647), - [anon_sym_ATprotocol] = ACTIONS(1647), - [anon_sym_ATclass] = ACTIONS(1647), - [anon_sym_ATinterface] = ACTIONS(1647), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1645), - [sym_method_attribute_specifier] = ACTIONS(1645), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1645), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1645), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1645), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1645), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1645), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1645), - [anon_sym_NS_AVAILABLE] = ACTIONS(1645), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1645), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1645), - [anon_sym_API_AVAILABLE] = ACTIONS(1645), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1645), - [anon_sym_API_DEPRECATED] = ACTIONS(1645), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1645), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1645), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1645), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1645), - [anon_sym___deprecated_msg] = ACTIONS(1645), - [anon_sym___deprecated_enum_msg] = ACTIONS(1645), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1645), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1645), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1645), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1645), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1645), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1645), - [anon_sym_ATimplementation] = ACTIONS(1647), - [anon_sym_typeof] = ACTIONS(1645), - [anon_sym___typeof] = ACTIONS(1645), - [anon_sym___typeof__] = ACTIONS(1645), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_nil] = ACTIONS(1645), - [sym_id] = ACTIONS(1645), - [sym_instancetype] = ACTIONS(1645), - [sym_Class] = ACTIONS(1645), - [sym_SEL] = ACTIONS(1645), - [sym_IMP] = ACTIONS(1645), - [sym_BOOL] = ACTIONS(1645), - [sym_auto] = ACTIONS(1645), - [anon_sym_ATautoreleasepool] = ACTIONS(1647), - [anon_sym_ATsynchronized] = ACTIONS(1647), - [anon_sym_ATtry] = ACTIONS(1647), - [anon_sym_ATcatch] = ACTIONS(1647), - [anon_sym_ATfinally] = ACTIONS(1647), - [anon_sym_ATthrow] = ACTIONS(1647), - [anon_sym_ATselector] = ACTIONS(1647), - [anon_sym_ATencode] = ACTIONS(1647), - [anon_sym_AT] = ACTIONS(1645), - [sym_YES] = ACTIONS(1645), - [sym_NO] = ACTIONS(1645), - [anon_sym___builtin_available] = ACTIONS(1645), - [anon_sym_ATavailable] = ACTIONS(1647), - [anon_sym_va_arg] = ACTIONS(1645), + [anon_sym_POUNDimport] = ACTIONS(1285), + [anon_sym_ATimport] = ACTIONS(1285), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1288), + [anon_sym_ATcompatibility_alias] = ACTIONS(1285), + [anon_sym_ATprotocol] = ACTIONS(1285), + [anon_sym_ATclass] = ACTIONS(1285), + [anon_sym_ATinterface] = ACTIONS(1285), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1288), + [sym_method_attribute_specifier] = ACTIONS(1288), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1288), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1288), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1288), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1288), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1288), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1288), + [anon_sym_NS_AVAILABLE] = ACTIONS(1288), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1288), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1288), + [anon_sym_API_AVAILABLE] = ACTIONS(1288), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1288), + [anon_sym_API_DEPRECATED] = ACTIONS(1288), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1288), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1288), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1288), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1288), + [anon_sym___deprecated_msg] = ACTIONS(1288), + [anon_sym___deprecated_enum_msg] = ACTIONS(1288), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1288), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1288), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1288), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1288), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1288), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1288), + [anon_sym_ATimplementation] = ACTIONS(1285), + [anon_sym_NS_ENUM] = ACTIONS(1288), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1288), + [anon_sym_NS_OPTIONS] = ACTIONS(1288), + [anon_sym_typeof] = ACTIONS(1288), + [anon_sym___typeof] = ACTIONS(1288), + [anon_sym___typeof__] = ACTIONS(1288), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_nil] = ACTIONS(1288), + [sym_id] = ACTIONS(1288), + [sym_instancetype] = ACTIONS(1288), + [sym_Class] = ACTIONS(1288), + [sym_SEL] = ACTIONS(1288), + [sym_IMP] = ACTIONS(1288), + [sym_BOOL] = ACTIONS(1288), + [sym_auto] = ACTIONS(1288), + [anon_sym_ATautoreleasepool] = ACTIONS(1285), + [anon_sym_ATsynchronized] = ACTIONS(1285), + [anon_sym_ATtry] = ACTIONS(1285), + [anon_sym_ATcatch] = ACTIONS(1285), + [anon_sym_ATfinally] = ACTIONS(1285), + [anon_sym_ATthrow] = ACTIONS(1285), + [anon_sym_ATselector] = ACTIONS(1285), + [anon_sym_ATencode] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1288), + [sym_YES] = ACTIONS(1288), + [sym_NO] = ACTIONS(1288), + [anon_sym___builtin_available] = ACTIONS(1288), + [anon_sym_ATavailable] = ACTIONS(1285), + [anon_sym_va_arg] = ACTIONS(1288), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -95458,3698 +86327,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [396] = { - [sym_identifier] = ACTIONS(1495), - [aux_sym_preproc_include_token1] = ACTIONS(1493), - [aux_sym_preproc_def_token1] = ACTIONS(1493), - [aux_sym_preproc_if_token1] = ACTIONS(1495), - [aux_sym_preproc_if_token2] = ACTIONS(1495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1495), - [anon_sym_LPAREN2] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_typedef] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym___attribute] = ACTIONS(1495), - [anon_sym___attribute__] = ACTIONS(1495), - [anon_sym___declspec] = ACTIONS(1495), - [anon_sym___cdecl] = ACTIONS(1495), - [anon_sym___clrcall] = ACTIONS(1495), - [anon_sym___stdcall] = ACTIONS(1495), - [anon_sym___fastcall] = ACTIONS(1495), - [anon_sym___thiscall] = ACTIONS(1495), - [anon_sym___vectorcall] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_auto] = ACTIONS(1495), - [anon_sym_register] = ACTIONS(1495), - [anon_sym_inline] = ACTIONS(1495), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_volatile] = ACTIONS(1495), - [anon_sym_restrict] = ACTIONS(1495), - [anon_sym__Atomic] = ACTIONS(1495), - [anon_sym_in] = ACTIONS(1495), - [anon_sym_out] = ACTIONS(1495), - [anon_sym_inout] = ACTIONS(1495), - [anon_sym_bycopy] = ACTIONS(1495), - [anon_sym_byref] = ACTIONS(1495), - [anon_sym_oneway] = ACTIONS(1495), - [anon_sym__Nullable] = ACTIONS(1495), - [anon_sym__Nonnull] = ACTIONS(1495), - [anon_sym__Nullable_result] = ACTIONS(1495), - [anon_sym__Null_unspecified] = ACTIONS(1495), - [anon_sym___autoreleasing] = ACTIONS(1495), - [anon_sym___nullable] = ACTIONS(1495), - [anon_sym___nonnull] = ACTIONS(1495), - [anon_sym___strong] = ACTIONS(1495), - [anon_sym___weak] = ACTIONS(1495), - [anon_sym___bridge] = ACTIONS(1495), - [anon_sym___bridge_transfer] = ACTIONS(1495), - [anon_sym___bridge_retained] = ACTIONS(1495), - [anon_sym___unsafe_unretained] = ACTIONS(1495), - [anon_sym___block] = ACTIONS(1495), - [anon_sym___kindof] = ACTIONS(1495), - [anon_sym___unused] = ACTIONS(1495), - [anon_sym__Complex] = ACTIONS(1495), - [anon_sym___complex] = ACTIONS(1495), - [anon_sym_IBOutlet] = ACTIONS(1495), - [anon_sym_IBInspectable] = ACTIONS(1495), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1495), - [anon_sym_signed] = ACTIONS(1495), - [anon_sym_unsigned] = ACTIONS(1495), - [anon_sym_long] = ACTIONS(1495), - [anon_sym_short] = ACTIONS(1495), - [sym_primitive_type] = ACTIONS(1495), - [anon_sym_enum] = ACTIONS(1495), - [anon_sym_NS_ENUM] = ACTIONS(1495), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1495), - [anon_sym_NS_OPTIONS] = ACTIONS(1495), - [anon_sym_struct] = ACTIONS(1495), - [anon_sym_union] = ACTIONS(1495), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_else] = ACTIONS(1495), - [anon_sym_switch] = ACTIONS(1495), - [anon_sym_case] = ACTIONS(1495), - [anon_sym_default] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_goto] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_sizeof] = ACTIONS(1495), - [sym_number_literal] = ACTIONS(1493), - [anon_sym_L_SQUOTE] = ACTIONS(1493), - [anon_sym_u_SQUOTE] = ACTIONS(1493), - [anon_sym_U_SQUOTE] = ACTIONS(1493), - [anon_sym_u8_SQUOTE] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_L_DQUOTE] = ACTIONS(1493), - [anon_sym_u_DQUOTE] = ACTIONS(1493), - [anon_sym_U_DQUOTE] = ACTIONS(1493), - [anon_sym_u8_DQUOTE] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [sym_true] = ACTIONS(1495), - [sym_false] = ACTIONS(1495), - [sym_null] = ACTIONS(1495), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1493), - [anon_sym_ATimport] = ACTIONS(1493), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1495), - [anon_sym_ATcompatibility_alias] = ACTIONS(1493), - [anon_sym_ATprotocol] = ACTIONS(1493), - [anon_sym_ATclass] = ACTIONS(1493), - [anon_sym_ATinterface] = ACTIONS(1493), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1495), - [sym_method_attribute_specifier] = ACTIONS(1495), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1495), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1495), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1495), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1495), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1495), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1495), - [anon_sym_NS_AVAILABLE] = ACTIONS(1495), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1495), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1495), - [anon_sym_API_AVAILABLE] = ACTIONS(1495), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1495), - [anon_sym_API_DEPRECATED] = ACTIONS(1495), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1495), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1495), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1495), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1495), - [anon_sym___deprecated_msg] = ACTIONS(1495), - [anon_sym___deprecated_enum_msg] = ACTIONS(1495), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1495), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1495), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1495), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1495), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1495), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1495), - [anon_sym_ATimplementation] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___typeof] = ACTIONS(1495), - [anon_sym___typeof__] = ACTIONS(1495), - [sym_self] = ACTIONS(1495), - [sym_super] = ACTIONS(1495), - [sym_nil] = ACTIONS(1495), - [sym_id] = ACTIONS(1495), - [sym_instancetype] = ACTIONS(1495), - [sym_Class] = ACTIONS(1495), - [sym_SEL] = ACTIONS(1495), - [sym_IMP] = ACTIONS(1495), - [sym_BOOL] = ACTIONS(1495), - [sym_auto] = ACTIONS(1495), - [anon_sym_ATautoreleasepool] = ACTIONS(1493), - [anon_sym_ATsynchronized] = ACTIONS(1493), - [anon_sym_ATtry] = ACTIONS(1493), - [anon_sym_ATcatch] = ACTIONS(1493), - [anon_sym_ATfinally] = ACTIONS(1493), - [anon_sym_ATthrow] = ACTIONS(1493), - [anon_sym_ATselector] = ACTIONS(1493), - [anon_sym_ATencode] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1495), - [sym_YES] = ACTIONS(1495), - [sym_NO] = ACTIONS(1495), - [anon_sym___builtin_available] = ACTIONS(1495), - [anon_sym_ATavailable] = ACTIONS(1493), - [anon_sym_va_arg] = ACTIONS(1495), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [397] = { - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_include_token1] = ACTIONS(1497), - [aux_sym_preproc_def_token1] = ACTIONS(1497), - [aux_sym_preproc_if_token1] = ACTIONS(1499), - [aux_sym_preproc_if_token2] = ACTIONS(1499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1499), - [anon_sym_LPAREN2] = ACTIONS(1497), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_CARET] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_typedef] = ACTIONS(1499), - [anon_sym_extern] = ACTIONS(1499), - [anon_sym___attribute] = ACTIONS(1499), - [anon_sym___attribute__] = ACTIONS(1499), - [anon_sym___declspec] = ACTIONS(1499), - [anon_sym___cdecl] = ACTIONS(1499), - [anon_sym___clrcall] = ACTIONS(1499), - [anon_sym___stdcall] = ACTIONS(1499), - [anon_sym___fastcall] = ACTIONS(1499), - [anon_sym___thiscall] = ACTIONS(1499), - [anon_sym___vectorcall] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1497), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_auto] = ACTIONS(1499), - [anon_sym_register] = ACTIONS(1499), - [anon_sym_inline] = ACTIONS(1499), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_volatile] = ACTIONS(1499), - [anon_sym_restrict] = ACTIONS(1499), - [anon_sym__Atomic] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_out] = ACTIONS(1499), - [anon_sym_inout] = ACTIONS(1499), - [anon_sym_bycopy] = ACTIONS(1499), - [anon_sym_byref] = ACTIONS(1499), - [anon_sym_oneway] = ACTIONS(1499), - [anon_sym__Nullable] = ACTIONS(1499), - [anon_sym__Nonnull] = ACTIONS(1499), - [anon_sym__Nullable_result] = ACTIONS(1499), - [anon_sym__Null_unspecified] = ACTIONS(1499), - [anon_sym___autoreleasing] = ACTIONS(1499), - [anon_sym___nullable] = ACTIONS(1499), - [anon_sym___nonnull] = ACTIONS(1499), - [anon_sym___strong] = ACTIONS(1499), - [anon_sym___weak] = ACTIONS(1499), - [anon_sym___bridge] = ACTIONS(1499), - [anon_sym___bridge_transfer] = ACTIONS(1499), - [anon_sym___bridge_retained] = ACTIONS(1499), - [anon_sym___unsafe_unretained] = ACTIONS(1499), - [anon_sym___block] = ACTIONS(1499), - [anon_sym___kindof] = ACTIONS(1499), - [anon_sym___unused] = ACTIONS(1499), - [anon_sym__Complex] = ACTIONS(1499), - [anon_sym___complex] = ACTIONS(1499), - [anon_sym_IBOutlet] = ACTIONS(1499), - [anon_sym_IBInspectable] = ACTIONS(1499), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1499), - [anon_sym_signed] = ACTIONS(1499), - [anon_sym_unsigned] = ACTIONS(1499), - [anon_sym_long] = ACTIONS(1499), - [anon_sym_short] = ACTIONS(1499), - [sym_primitive_type] = ACTIONS(1499), - [anon_sym_enum] = ACTIONS(1499), - [anon_sym_NS_ENUM] = ACTIONS(1499), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1499), - [anon_sym_NS_OPTIONS] = ACTIONS(1499), - [anon_sym_struct] = ACTIONS(1499), - [anon_sym_union] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_else] = ACTIONS(1499), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1499), - [anon_sym_default] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_do] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_goto] = ACTIONS(1499), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_sizeof] = ACTIONS(1499), - [sym_number_literal] = ACTIONS(1497), - [anon_sym_L_SQUOTE] = ACTIONS(1497), - [anon_sym_u_SQUOTE] = ACTIONS(1497), - [anon_sym_U_SQUOTE] = ACTIONS(1497), - [anon_sym_u8_SQUOTE] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_L_DQUOTE] = ACTIONS(1497), - [anon_sym_u_DQUOTE] = ACTIONS(1497), - [anon_sym_U_DQUOTE] = ACTIONS(1497), - [anon_sym_u8_DQUOTE] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [sym_true] = ACTIONS(1499), - [sym_false] = ACTIONS(1499), - [sym_null] = ACTIONS(1499), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1497), - [anon_sym_ATimport] = ACTIONS(1497), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1499), - [anon_sym_ATcompatibility_alias] = ACTIONS(1497), - [anon_sym_ATprotocol] = ACTIONS(1497), - [anon_sym_ATclass] = ACTIONS(1497), - [anon_sym_ATinterface] = ACTIONS(1497), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1499), - [sym_method_attribute_specifier] = ACTIONS(1499), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1499), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1499), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1499), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1499), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1499), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1499), - [anon_sym_NS_AVAILABLE] = ACTIONS(1499), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1499), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1499), - [anon_sym_API_AVAILABLE] = ACTIONS(1499), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1499), - [anon_sym_API_DEPRECATED] = ACTIONS(1499), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1499), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1499), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1499), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1499), - [anon_sym___deprecated_msg] = ACTIONS(1499), - [anon_sym___deprecated_enum_msg] = ACTIONS(1499), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1499), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1499), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1499), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1499), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1499), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1499), - [anon_sym_ATimplementation] = ACTIONS(1497), - [anon_sym_typeof] = ACTIONS(1499), - [anon_sym___typeof] = ACTIONS(1499), - [anon_sym___typeof__] = ACTIONS(1499), - [sym_self] = ACTIONS(1499), - [sym_super] = ACTIONS(1499), - [sym_nil] = ACTIONS(1499), - [sym_id] = ACTIONS(1499), - [sym_instancetype] = ACTIONS(1499), - [sym_Class] = ACTIONS(1499), - [sym_SEL] = ACTIONS(1499), - [sym_IMP] = ACTIONS(1499), - [sym_BOOL] = ACTIONS(1499), - [sym_auto] = ACTIONS(1499), - [anon_sym_ATautoreleasepool] = ACTIONS(1497), - [anon_sym_ATsynchronized] = ACTIONS(1497), - [anon_sym_ATtry] = ACTIONS(1497), - [anon_sym_ATcatch] = ACTIONS(1497), - [anon_sym_ATfinally] = ACTIONS(1497), - [anon_sym_ATthrow] = ACTIONS(1497), - [anon_sym_ATselector] = ACTIONS(1497), - [anon_sym_ATencode] = ACTIONS(1497), - [anon_sym_AT] = ACTIONS(1499), - [sym_YES] = ACTIONS(1499), - [sym_NO] = ACTIONS(1499), - [anon_sym___builtin_available] = ACTIONS(1499), - [anon_sym_ATavailable] = ACTIONS(1497), - [anon_sym_va_arg] = ACTIONS(1499), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [398] = { - [sym_identifier] = ACTIONS(1539), - [aux_sym_preproc_include_token1] = ACTIONS(1537), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [aux_sym_preproc_if_token1] = ACTIONS(1539), - [aux_sym_preproc_if_token2] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_typedef] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym___attribute] = ACTIONS(1539), - [anon_sym___attribute__] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1539), - [anon_sym___cdecl] = ACTIONS(1539), - [anon_sym___clrcall] = ACTIONS(1539), - [anon_sym___stdcall] = ACTIONS(1539), - [anon_sym___fastcall] = ACTIONS(1539), - [anon_sym___thiscall] = ACTIONS(1539), - [anon_sym___vectorcall] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_auto] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_inline] = ACTIONS(1539), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_volatile] = ACTIONS(1539), - [anon_sym_restrict] = ACTIONS(1539), - [anon_sym__Atomic] = ACTIONS(1539), - [anon_sym_in] = ACTIONS(1539), - [anon_sym_out] = ACTIONS(1539), - [anon_sym_inout] = ACTIONS(1539), - [anon_sym_bycopy] = ACTIONS(1539), - [anon_sym_byref] = ACTIONS(1539), - [anon_sym_oneway] = ACTIONS(1539), - [anon_sym__Nullable] = ACTIONS(1539), - [anon_sym__Nonnull] = ACTIONS(1539), - [anon_sym__Nullable_result] = ACTIONS(1539), - [anon_sym__Null_unspecified] = ACTIONS(1539), - [anon_sym___autoreleasing] = ACTIONS(1539), - [anon_sym___nullable] = ACTIONS(1539), - [anon_sym___nonnull] = ACTIONS(1539), - [anon_sym___strong] = ACTIONS(1539), - [anon_sym___weak] = ACTIONS(1539), - [anon_sym___bridge] = ACTIONS(1539), - [anon_sym___bridge_transfer] = ACTIONS(1539), - [anon_sym___bridge_retained] = ACTIONS(1539), - [anon_sym___unsafe_unretained] = ACTIONS(1539), - [anon_sym___block] = ACTIONS(1539), - [anon_sym___kindof] = ACTIONS(1539), - [anon_sym___unused] = ACTIONS(1539), - [anon_sym__Complex] = ACTIONS(1539), - [anon_sym___complex] = ACTIONS(1539), - [anon_sym_IBOutlet] = ACTIONS(1539), - [anon_sym_IBInspectable] = ACTIONS(1539), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1539), - [anon_sym_signed] = ACTIONS(1539), - [anon_sym_unsigned] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_NS_ENUM] = ACTIONS(1539), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1539), - [anon_sym_NS_OPTIONS] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1539), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1539), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_goto] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1537), - [anon_sym_sizeof] = ACTIONS(1539), - [sym_number_literal] = ACTIONS(1537), - [anon_sym_L_SQUOTE] = ACTIONS(1537), - [anon_sym_u_SQUOTE] = ACTIONS(1537), - [anon_sym_U_SQUOTE] = ACTIONS(1537), - [anon_sym_u8_SQUOTE] = ACTIONS(1537), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_L_DQUOTE] = ACTIONS(1537), - [anon_sym_u_DQUOTE] = ACTIONS(1537), - [anon_sym_U_DQUOTE] = ACTIONS(1537), - [anon_sym_u8_DQUOTE] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym_true] = ACTIONS(1539), - [sym_false] = ACTIONS(1539), - [sym_null] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1537), - [anon_sym_ATimport] = ACTIONS(1537), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1539), - [anon_sym_ATcompatibility_alias] = ACTIONS(1537), - [anon_sym_ATprotocol] = ACTIONS(1537), - [anon_sym_ATclass] = ACTIONS(1537), - [anon_sym_ATinterface] = ACTIONS(1537), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1539), - [sym_method_attribute_specifier] = ACTIONS(1539), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1539), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE] = ACTIONS(1539), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_API_AVAILABLE] = ACTIONS(1539), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_API_DEPRECATED] = ACTIONS(1539), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1539), - [anon_sym___deprecated_msg] = ACTIONS(1539), - [anon_sym___deprecated_enum_msg] = ACTIONS(1539), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1539), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1539), - [anon_sym_ATimplementation] = ACTIONS(1537), - [anon_sym_typeof] = ACTIONS(1539), - [anon_sym___typeof] = ACTIONS(1539), - [anon_sym___typeof__] = ACTIONS(1539), - [sym_self] = ACTIONS(1539), - [sym_super] = ACTIONS(1539), - [sym_nil] = ACTIONS(1539), - [sym_id] = ACTIONS(1539), - [sym_instancetype] = ACTIONS(1539), - [sym_Class] = ACTIONS(1539), - [sym_SEL] = ACTIONS(1539), - [sym_IMP] = ACTIONS(1539), - [sym_BOOL] = ACTIONS(1539), - [sym_auto] = ACTIONS(1539), - [anon_sym_ATautoreleasepool] = ACTIONS(1537), - [anon_sym_ATsynchronized] = ACTIONS(1537), - [anon_sym_ATtry] = ACTIONS(1537), - [anon_sym_ATcatch] = ACTIONS(1537), - [anon_sym_ATfinally] = ACTIONS(1537), - [anon_sym_ATthrow] = ACTIONS(1537), - [anon_sym_ATselector] = ACTIONS(1537), - [anon_sym_ATencode] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1539), - [sym_YES] = ACTIONS(1539), - [sym_NO] = ACTIONS(1539), - [anon_sym___builtin_available] = ACTIONS(1539), - [anon_sym_ATavailable] = ACTIONS(1537), - [anon_sym_va_arg] = ACTIONS(1539), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [399] = { - [sym_identifier] = ACTIONS(1273), - [aux_sym_preproc_include_token1] = ACTIONS(1275), - [aux_sym_preproc_def_token1] = ACTIONS(1275), - [aux_sym_preproc_if_token1] = ACTIONS(1273), - [aux_sym_preproc_if_token2] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1273), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1273), - [anon_sym_LPAREN2] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1275), - [anon_sym_TILDE] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_PLUS] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_CARET] = ACTIONS(1275), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_typedef] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1273), - [anon_sym___attribute] = ACTIONS(1273), - [anon_sym___attribute__] = ACTIONS(1273), - [anon_sym___declspec] = ACTIONS(1273), - [anon_sym___cdecl] = ACTIONS(1273), - [anon_sym___clrcall] = ACTIONS(1273), - [anon_sym___stdcall] = ACTIONS(1273), - [anon_sym___fastcall] = ACTIONS(1273), - [anon_sym___thiscall] = ACTIONS(1273), - [anon_sym___vectorcall] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1275), - [anon_sym_static] = ACTIONS(1273), - [anon_sym_auto] = ACTIONS(1273), - [anon_sym_register] = ACTIONS(1273), - [anon_sym_inline] = ACTIONS(1273), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1273), - [anon_sym_const] = ACTIONS(1273), - [anon_sym_volatile] = ACTIONS(1273), - [anon_sym_restrict] = ACTIONS(1273), - [anon_sym__Atomic] = ACTIONS(1273), - [anon_sym_in] = ACTIONS(1273), - [anon_sym_out] = ACTIONS(1273), - [anon_sym_inout] = ACTIONS(1273), - [anon_sym_bycopy] = ACTIONS(1273), - [anon_sym_byref] = ACTIONS(1273), - [anon_sym_oneway] = ACTIONS(1273), - [anon_sym__Nullable] = ACTIONS(1273), - [anon_sym__Nonnull] = ACTIONS(1273), - [anon_sym__Nullable_result] = ACTIONS(1273), - [anon_sym__Null_unspecified] = ACTIONS(1273), - [anon_sym___autoreleasing] = ACTIONS(1273), - [anon_sym___nullable] = ACTIONS(1273), - [anon_sym___nonnull] = ACTIONS(1273), - [anon_sym___strong] = ACTIONS(1273), - [anon_sym___weak] = ACTIONS(1273), - [anon_sym___bridge] = ACTIONS(1273), - [anon_sym___bridge_transfer] = ACTIONS(1273), - [anon_sym___bridge_retained] = ACTIONS(1273), - [anon_sym___unsafe_unretained] = ACTIONS(1273), - [anon_sym___block] = ACTIONS(1273), - [anon_sym___kindof] = ACTIONS(1273), - [anon_sym___unused] = ACTIONS(1273), - [anon_sym__Complex] = ACTIONS(1273), - [anon_sym___complex] = ACTIONS(1273), - [anon_sym_IBOutlet] = ACTIONS(1273), - [anon_sym_IBInspectable] = ACTIONS(1273), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1273), - [anon_sym_signed] = ACTIONS(1273), - [anon_sym_unsigned] = ACTIONS(1273), - [anon_sym_long] = ACTIONS(1273), - [anon_sym_short] = ACTIONS(1273), - [sym_primitive_type] = ACTIONS(1273), - [anon_sym_enum] = ACTIONS(1273), - [anon_sym_NS_ENUM] = ACTIONS(1273), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1273), - [anon_sym_NS_OPTIONS] = ACTIONS(1273), - [anon_sym_struct] = ACTIONS(1273), - [anon_sym_union] = ACTIONS(1273), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_else] = ACTIONS(1273), - [anon_sym_switch] = ACTIONS(1273), - [anon_sym_case] = ACTIONS(1273), - [anon_sym_default] = ACTIONS(1273), - [anon_sym_while] = ACTIONS(1273), - [anon_sym_do] = ACTIONS(1273), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_return] = ACTIONS(1273), - [anon_sym_break] = ACTIONS(1273), - [anon_sym_continue] = ACTIONS(1273), - [anon_sym_goto] = ACTIONS(1273), - [anon_sym_DASH_DASH] = ACTIONS(1275), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [anon_sym_sizeof] = ACTIONS(1273), - [sym_number_literal] = ACTIONS(1275), - [anon_sym_L_SQUOTE] = ACTIONS(1275), - [anon_sym_u_SQUOTE] = ACTIONS(1275), - [anon_sym_U_SQUOTE] = ACTIONS(1275), - [anon_sym_u8_SQUOTE] = ACTIONS(1275), - [anon_sym_SQUOTE] = ACTIONS(1275), - [anon_sym_L_DQUOTE] = ACTIONS(1275), - [anon_sym_u_DQUOTE] = ACTIONS(1275), - [anon_sym_U_DQUOTE] = ACTIONS(1275), - [anon_sym_u8_DQUOTE] = ACTIONS(1275), - [anon_sym_DQUOTE] = ACTIONS(1275), - [sym_true] = ACTIONS(1273), - [sym_false] = ACTIONS(1273), - [sym_null] = ACTIONS(1273), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1275), - [anon_sym_ATimport] = ACTIONS(1275), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1273), - [anon_sym_ATcompatibility_alias] = ACTIONS(1275), - [anon_sym_ATprotocol] = ACTIONS(1275), - [anon_sym_ATclass] = ACTIONS(1275), - [anon_sym_ATinterface] = ACTIONS(1275), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1273), - [sym_method_attribute_specifier] = ACTIONS(1273), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1273), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1273), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1273), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1273), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1273), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1273), - [anon_sym_NS_AVAILABLE] = ACTIONS(1273), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1273), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1273), - [anon_sym_API_AVAILABLE] = ACTIONS(1273), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1273), - [anon_sym_API_DEPRECATED] = ACTIONS(1273), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1273), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1273), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1273), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1273), - [anon_sym___deprecated_msg] = ACTIONS(1273), - [anon_sym___deprecated_enum_msg] = ACTIONS(1273), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1273), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1273), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1273), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1273), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1273), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1273), - [anon_sym_ATimplementation] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1273), - [anon_sym___typeof] = ACTIONS(1273), - [anon_sym___typeof__] = ACTIONS(1273), - [sym_self] = ACTIONS(1273), - [sym_super] = ACTIONS(1273), - [sym_nil] = ACTIONS(1273), - [sym_id] = ACTIONS(1273), - [sym_instancetype] = ACTIONS(1273), - [sym_Class] = ACTIONS(1273), - [sym_SEL] = ACTIONS(1273), - [sym_IMP] = ACTIONS(1273), - [sym_BOOL] = ACTIONS(1273), - [sym_auto] = ACTIONS(1273), - [anon_sym_ATautoreleasepool] = ACTIONS(1275), - [anon_sym_ATsynchronized] = ACTIONS(1275), - [anon_sym_ATtry] = ACTIONS(1275), - [anon_sym_ATcatch] = ACTIONS(1275), - [anon_sym_ATfinally] = ACTIONS(1275), - [anon_sym_ATthrow] = ACTIONS(1275), - [anon_sym_ATselector] = ACTIONS(1275), - [anon_sym_ATencode] = ACTIONS(1275), - [anon_sym_AT] = ACTIONS(1273), - [sym_YES] = ACTIONS(1273), - [sym_NO] = ACTIONS(1273), - [anon_sym___builtin_available] = ACTIONS(1273), - [anon_sym_ATavailable] = ACTIONS(1275), - [anon_sym_va_arg] = ACTIONS(1273), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [400] = { - [sym_identifier] = ACTIONS(1277), - [aux_sym_preproc_include_token1] = ACTIONS(1279), - [aux_sym_preproc_def_token1] = ACTIONS(1279), - [aux_sym_preproc_if_token1] = ACTIONS(1277), - [aux_sym_preproc_if_token2] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1277), - [anon_sym_LPAREN2] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1277), - [anon_sym_STAR] = ACTIONS(1279), - [anon_sym_CARET] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_typedef] = ACTIONS(1277), - [anon_sym_extern] = ACTIONS(1277), - [anon_sym___attribute] = ACTIONS(1277), - [anon_sym___attribute__] = ACTIONS(1277), - [anon_sym___declspec] = ACTIONS(1277), - [anon_sym___cdecl] = ACTIONS(1277), - [anon_sym___clrcall] = ACTIONS(1277), - [anon_sym___stdcall] = ACTIONS(1277), - [anon_sym___fastcall] = ACTIONS(1277), - [anon_sym___thiscall] = ACTIONS(1277), - [anon_sym___vectorcall] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(1279), - [anon_sym_static] = ACTIONS(1277), - [anon_sym_auto] = ACTIONS(1277), - [anon_sym_register] = ACTIONS(1277), - [anon_sym_inline] = ACTIONS(1277), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1277), - [anon_sym_const] = ACTIONS(1277), - [anon_sym_volatile] = ACTIONS(1277), - [anon_sym_restrict] = ACTIONS(1277), - [anon_sym__Atomic] = ACTIONS(1277), - [anon_sym_in] = ACTIONS(1277), - [anon_sym_out] = ACTIONS(1277), - [anon_sym_inout] = ACTIONS(1277), - [anon_sym_bycopy] = ACTIONS(1277), - [anon_sym_byref] = ACTIONS(1277), - [anon_sym_oneway] = ACTIONS(1277), - [anon_sym__Nullable] = ACTIONS(1277), - [anon_sym__Nonnull] = ACTIONS(1277), - [anon_sym__Nullable_result] = ACTIONS(1277), - [anon_sym__Null_unspecified] = ACTIONS(1277), - [anon_sym___autoreleasing] = ACTIONS(1277), - [anon_sym___nullable] = ACTIONS(1277), - [anon_sym___nonnull] = ACTIONS(1277), - [anon_sym___strong] = ACTIONS(1277), - [anon_sym___weak] = ACTIONS(1277), - [anon_sym___bridge] = ACTIONS(1277), - [anon_sym___bridge_transfer] = ACTIONS(1277), - [anon_sym___bridge_retained] = ACTIONS(1277), - [anon_sym___unsafe_unretained] = ACTIONS(1277), - [anon_sym___block] = ACTIONS(1277), - [anon_sym___kindof] = ACTIONS(1277), - [anon_sym___unused] = ACTIONS(1277), - [anon_sym__Complex] = ACTIONS(1277), - [anon_sym___complex] = ACTIONS(1277), - [anon_sym_IBOutlet] = ACTIONS(1277), - [anon_sym_IBInspectable] = ACTIONS(1277), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1277), - [anon_sym_signed] = ACTIONS(1277), - [anon_sym_unsigned] = ACTIONS(1277), - [anon_sym_long] = ACTIONS(1277), - [anon_sym_short] = ACTIONS(1277), - [sym_primitive_type] = ACTIONS(1277), - [anon_sym_enum] = ACTIONS(1277), - [anon_sym_NS_ENUM] = ACTIONS(1277), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1277), - [anon_sym_NS_OPTIONS] = ACTIONS(1277), - [anon_sym_struct] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1277), - [anon_sym_if] = ACTIONS(1277), - [anon_sym_else] = ACTIONS(1277), - [anon_sym_switch] = ACTIONS(1277), - [anon_sym_case] = ACTIONS(1277), - [anon_sym_default] = ACTIONS(1277), - [anon_sym_while] = ACTIONS(1277), - [anon_sym_do] = ACTIONS(1277), - [anon_sym_for] = ACTIONS(1277), - [anon_sym_return] = ACTIONS(1277), - [anon_sym_break] = ACTIONS(1277), - [anon_sym_continue] = ACTIONS(1277), - [anon_sym_goto] = ACTIONS(1277), - [anon_sym_DASH_DASH] = ACTIONS(1279), - [anon_sym_PLUS_PLUS] = ACTIONS(1279), - [anon_sym_sizeof] = ACTIONS(1277), - [sym_number_literal] = ACTIONS(1279), - [anon_sym_L_SQUOTE] = ACTIONS(1279), - [anon_sym_u_SQUOTE] = ACTIONS(1279), - [anon_sym_U_SQUOTE] = ACTIONS(1279), - [anon_sym_u8_SQUOTE] = ACTIONS(1279), - [anon_sym_SQUOTE] = ACTIONS(1279), - [anon_sym_L_DQUOTE] = ACTIONS(1279), - [anon_sym_u_DQUOTE] = ACTIONS(1279), - [anon_sym_U_DQUOTE] = ACTIONS(1279), - [anon_sym_u8_DQUOTE] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [sym_true] = ACTIONS(1277), - [sym_false] = ACTIONS(1277), - [sym_null] = ACTIONS(1277), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1279), - [anon_sym_ATimport] = ACTIONS(1279), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1277), - [anon_sym_ATcompatibility_alias] = ACTIONS(1279), - [anon_sym_ATprotocol] = ACTIONS(1279), - [anon_sym_ATclass] = ACTIONS(1279), - [anon_sym_ATinterface] = ACTIONS(1279), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1277), - [sym_method_attribute_specifier] = ACTIONS(1277), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1277), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1277), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1277), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1277), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1277), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1277), - [anon_sym_NS_AVAILABLE] = ACTIONS(1277), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1277), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1277), - [anon_sym_API_AVAILABLE] = ACTIONS(1277), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1277), - [anon_sym_API_DEPRECATED] = ACTIONS(1277), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1277), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1277), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1277), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1277), - [anon_sym___deprecated_msg] = ACTIONS(1277), - [anon_sym___deprecated_enum_msg] = ACTIONS(1277), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1277), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1277), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1277), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1277), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1277), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1277), - [anon_sym_ATimplementation] = ACTIONS(1279), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___typeof] = ACTIONS(1277), - [anon_sym___typeof__] = ACTIONS(1277), - [sym_self] = ACTIONS(1277), - [sym_super] = ACTIONS(1277), - [sym_nil] = ACTIONS(1277), - [sym_id] = ACTIONS(1277), - [sym_instancetype] = ACTIONS(1277), - [sym_Class] = ACTIONS(1277), - [sym_SEL] = ACTIONS(1277), - [sym_IMP] = ACTIONS(1277), - [sym_BOOL] = ACTIONS(1277), - [sym_auto] = ACTIONS(1277), - [anon_sym_ATautoreleasepool] = ACTIONS(1279), - [anon_sym_ATsynchronized] = ACTIONS(1279), - [anon_sym_ATtry] = ACTIONS(1279), - [anon_sym_ATcatch] = ACTIONS(1279), - [anon_sym_ATfinally] = ACTIONS(1279), - [anon_sym_ATthrow] = ACTIONS(1279), - [anon_sym_ATselector] = ACTIONS(1279), - [anon_sym_ATencode] = ACTIONS(1279), - [anon_sym_AT] = ACTIONS(1277), - [sym_YES] = ACTIONS(1277), - [sym_NO] = ACTIONS(1277), - [anon_sym___builtin_available] = ACTIONS(1277), - [anon_sym_ATavailable] = ACTIONS(1279), - [anon_sym_va_arg] = ACTIONS(1277), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [401] = { - [sym_identifier] = ACTIONS(1281), - [aux_sym_preproc_include_token1] = ACTIONS(1283), - [aux_sym_preproc_def_token1] = ACTIONS(1283), - [aux_sym_preproc_if_token1] = ACTIONS(1281), - [aux_sym_preproc_if_token2] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1281), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1281), - [anon_sym_LPAREN2] = ACTIONS(1283), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_typedef] = ACTIONS(1281), - [anon_sym_extern] = ACTIONS(1281), - [anon_sym___attribute] = ACTIONS(1281), - [anon_sym___attribute__] = ACTIONS(1281), - [anon_sym___declspec] = ACTIONS(1281), - [anon_sym___cdecl] = ACTIONS(1281), - [anon_sym___clrcall] = ACTIONS(1281), - [anon_sym___stdcall] = ACTIONS(1281), - [anon_sym___fastcall] = ACTIONS(1281), - [anon_sym___thiscall] = ACTIONS(1281), - [anon_sym___vectorcall] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1283), - [anon_sym_static] = ACTIONS(1281), - [anon_sym_auto] = ACTIONS(1281), - [anon_sym_register] = ACTIONS(1281), - [anon_sym_inline] = ACTIONS(1281), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1281), - [anon_sym_const] = ACTIONS(1281), - [anon_sym_volatile] = ACTIONS(1281), - [anon_sym_restrict] = ACTIONS(1281), - [anon_sym__Atomic] = ACTIONS(1281), - [anon_sym_in] = ACTIONS(1281), - [anon_sym_out] = ACTIONS(1281), - [anon_sym_inout] = ACTIONS(1281), - [anon_sym_bycopy] = ACTIONS(1281), - [anon_sym_byref] = ACTIONS(1281), - [anon_sym_oneway] = ACTIONS(1281), - [anon_sym__Nullable] = ACTIONS(1281), - [anon_sym__Nonnull] = ACTIONS(1281), - [anon_sym__Nullable_result] = ACTIONS(1281), - [anon_sym__Null_unspecified] = ACTIONS(1281), - [anon_sym___autoreleasing] = ACTIONS(1281), - [anon_sym___nullable] = ACTIONS(1281), - [anon_sym___nonnull] = ACTIONS(1281), - [anon_sym___strong] = ACTIONS(1281), - [anon_sym___weak] = ACTIONS(1281), - [anon_sym___bridge] = ACTIONS(1281), - [anon_sym___bridge_transfer] = ACTIONS(1281), - [anon_sym___bridge_retained] = ACTIONS(1281), - [anon_sym___unsafe_unretained] = ACTIONS(1281), - [anon_sym___block] = ACTIONS(1281), - [anon_sym___kindof] = ACTIONS(1281), - [anon_sym___unused] = ACTIONS(1281), - [anon_sym__Complex] = ACTIONS(1281), - [anon_sym___complex] = ACTIONS(1281), - [anon_sym_IBOutlet] = ACTIONS(1281), - [anon_sym_IBInspectable] = ACTIONS(1281), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1281), - [anon_sym_signed] = ACTIONS(1281), - [anon_sym_unsigned] = ACTIONS(1281), - [anon_sym_long] = ACTIONS(1281), - [anon_sym_short] = ACTIONS(1281), - [sym_primitive_type] = ACTIONS(1281), - [anon_sym_enum] = ACTIONS(1281), - [anon_sym_NS_ENUM] = ACTIONS(1281), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1281), - [anon_sym_NS_OPTIONS] = ACTIONS(1281), - [anon_sym_struct] = ACTIONS(1281), - [anon_sym_union] = ACTIONS(1281), - [anon_sym_if] = ACTIONS(1281), - [anon_sym_else] = ACTIONS(1281), - [anon_sym_switch] = ACTIONS(1281), - [anon_sym_case] = ACTIONS(1281), - [anon_sym_default] = ACTIONS(1281), - [anon_sym_while] = ACTIONS(1281), - [anon_sym_do] = ACTIONS(1281), - [anon_sym_for] = ACTIONS(1281), - [anon_sym_return] = ACTIONS(1281), - [anon_sym_break] = ACTIONS(1281), - [anon_sym_continue] = ACTIONS(1281), - [anon_sym_goto] = ACTIONS(1281), - [anon_sym_DASH_DASH] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1283), - [anon_sym_sizeof] = ACTIONS(1281), - [sym_number_literal] = ACTIONS(1283), - [anon_sym_L_SQUOTE] = ACTIONS(1283), - [anon_sym_u_SQUOTE] = ACTIONS(1283), - [anon_sym_U_SQUOTE] = ACTIONS(1283), - [anon_sym_u8_SQUOTE] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1283), - [anon_sym_L_DQUOTE] = ACTIONS(1283), - [anon_sym_u_DQUOTE] = ACTIONS(1283), - [anon_sym_U_DQUOTE] = ACTIONS(1283), - [anon_sym_u8_DQUOTE] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1283), - [sym_true] = ACTIONS(1281), - [sym_false] = ACTIONS(1281), - [sym_null] = ACTIONS(1281), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1283), - [anon_sym_ATimport] = ACTIONS(1283), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1281), - [anon_sym_ATcompatibility_alias] = ACTIONS(1283), - [anon_sym_ATprotocol] = ACTIONS(1283), - [anon_sym_ATclass] = ACTIONS(1283), - [anon_sym_ATinterface] = ACTIONS(1283), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1281), - [sym_method_attribute_specifier] = ACTIONS(1281), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1281), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1281), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1281), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1281), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1281), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1281), - [anon_sym_NS_AVAILABLE] = ACTIONS(1281), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1281), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1281), - [anon_sym_API_AVAILABLE] = ACTIONS(1281), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1281), - [anon_sym_API_DEPRECATED] = ACTIONS(1281), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1281), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1281), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1281), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1281), - [anon_sym___deprecated_msg] = ACTIONS(1281), - [anon_sym___deprecated_enum_msg] = ACTIONS(1281), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1281), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1281), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1281), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1281), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1281), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1281), - [anon_sym_ATimplementation] = ACTIONS(1283), - [anon_sym_typeof] = ACTIONS(1281), - [anon_sym___typeof] = ACTIONS(1281), - [anon_sym___typeof__] = ACTIONS(1281), - [sym_self] = ACTIONS(1281), - [sym_super] = ACTIONS(1281), - [sym_nil] = ACTIONS(1281), - [sym_id] = ACTIONS(1281), - [sym_instancetype] = ACTIONS(1281), - [sym_Class] = ACTIONS(1281), - [sym_SEL] = ACTIONS(1281), - [sym_IMP] = ACTIONS(1281), - [sym_BOOL] = ACTIONS(1281), - [sym_auto] = ACTIONS(1281), - [anon_sym_ATautoreleasepool] = ACTIONS(1283), - [anon_sym_ATsynchronized] = ACTIONS(1283), - [anon_sym_ATtry] = ACTIONS(1283), - [anon_sym_ATcatch] = ACTIONS(1283), - [anon_sym_ATfinally] = ACTIONS(1283), - [anon_sym_ATthrow] = ACTIONS(1283), - [anon_sym_ATselector] = ACTIONS(1283), - [anon_sym_ATencode] = ACTIONS(1283), - [anon_sym_AT] = ACTIONS(1281), - [sym_YES] = ACTIONS(1281), - [sym_NO] = ACTIONS(1281), - [anon_sym___builtin_available] = ACTIONS(1281), - [anon_sym_ATavailable] = ACTIONS(1283), - [anon_sym_va_arg] = ACTIONS(1281), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [402] = { - [sym_identifier] = ACTIONS(1539), - [aux_sym_preproc_include_token1] = ACTIONS(1537), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [aux_sym_preproc_if_token1] = ACTIONS(1539), - [aux_sym_preproc_if_token2] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_typedef] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym___attribute] = ACTIONS(1539), - [anon_sym___attribute__] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1539), - [anon_sym___cdecl] = ACTIONS(1539), - [anon_sym___clrcall] = ACTIONS(1539), - [anon_sym___stdcall] = ACTIONS(1539), - [anon_sym___fastcall] = ACTIONS(1539), - [anon_sym___thiscall] = ACTIONS(1539), - [anon_sym___vectorcall] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_auto] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_inline] = ACTIONS(1539), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_volatile] = ACTIONS(1539), - [anon_sym_restrict] = ACTIONS(1539), - [anon_sym__Atomic] = ACTIONS(1539), - [anon_sym_in] = ACTIONS(1539), - [anon_sym_out] = ACTIONS(1539), - [anon_sym_inout] = ACTIONS(1539), - [anon_sym_bycopy] = ACTIONS(1539), - [anon_sym_byref] = ACTIONS(1539), - [anon_sym_oneway] = ACTIONS(1539), - [anon_sym__Nullable] = ACTIONS(1539), - [anon_sym__Nonnull] = ACTIONS(1539), - [anon_sym__Nullable_result] = ACTIONS(1539), - [anon_sym__Null_unspecified] = ACTIONS(1539), - [anon_sym___autoreleasing] = ACTIONS(1539), - [anon_sym___nullable] = ACTIONS(1539), - [anon_sym___nonnull] = ACTIONS(1539), - [anon_sym___strong] = ACTIONS(1539), - [anon_sym___weak] = ACTIONS(1539), - [anon_sym___bridge] = ACTIONS(1539), - [anon_sym___bridge_transfer] = ACTIONS(1539), - [anon_sym___bridge_retained] = ACTIONS(1539), - [anon_sym___unsafe_unretained] = ACTIONS(1539), - [anon_sym___block] = ACTIONS(1539), - [anon_sym___kindof] = ACTIONS(1539), - [anon_sym___unused] = ACTIONS(1539), - [anon_sym__Complex] = ACTIONS(1539), - [anon_sym___complex] = ACTIONS(1539), - [anon_sym_IBOutlet] = ACTIONS(1539), - [anon_sym_IBInspectable] = ACTIONS(1539), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1539), - [anon_sym_signed] = ACTIONS(1539), - [anon_sym_unsigned] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_NS_ENUM] = ACTIONS(1539), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1539), - [anon_sym_NS_OPTIONS] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1539), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1539), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_goto] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1537), - [anon_sym_sizeof] = ACTIONS(1539), - [sym_number_literal] = ACTIONS(1537), - [anon_sym_L_SQUOTE] = ACTIONS(1537), - [anon_sym_u_SQUOTE] = ACTIONS(1537), - [anon_sym_U_SQUOTE] = ACTIONS(1537), - [anon_sym_u8_SQUOTE] = ACTIONS(1537), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_L_DQUOTE] = ACTIONS(1537), - [anon_sym_u_DQUOTE] = ACTIONS(1537), - [anon_sym_U_DQUOTE] = ACTIONS(1537), - [anon_sym_u8_DQUOTE] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym_true] = ACTIONS(1539), - [sym_false] = ACTIONS(1539), - [sym_null] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1537), - [anon_sym_ATimport] = ACTIONS(1537), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1539), - [anon_sym_ATcompatibility_alias] = ACTIONS(1537), - [anon_sym_ATprotocol] = ACTIONS(1537), - [anon_sym_ATclass] = ACTIONS(1537), - [anon_sym_ATinterface] = ACTIONS(1537), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1539), - [sym_method_attribute_specifier] = ACTIONS(1539), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1539), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE] = ACTIONS(1539), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_API_AVAILABLE] = ACTIONS(1539), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_API_DEPRECATED] = ACTIONS(1539), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1539), - [anon_sym___deprecated_msg] = ACTIONS(1539), - [anon_sym___deprecated_enum_msg] = ACTIONS(1539), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1539), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1539), - [anon_sym_ATimplementation] = ACTIONS(1537), - [anon_sym_typeof] = ACTIONS(1539), - [anon_sym___typeof] = ACTIONS(1539), - [anon_sym___typeof__] = ACTIONS(1539), - [sym_self] = ACTIONS(1539), - [sym_super] = ACTIONS(1539), - [sym_nil] = ACTIONS(1539), - [sym_id] = ACTIONS(1539), - [sym_instancetype] = ACTIONS(1539), - [sym_Class] = ACTIONS(1539), - [sym_SEL] = ACTIONS(1539), - [sym_IMP] = ACTIONS(1539), - [sym_BOOL] = ACTIONS(1539), - [sym_auto] = ACTIONS(1539), - [anon_sym_ATautoreleasepool] = ACTIONS(1537), - [anon_sym_ATsynchronized] = ACTIONS(1537), - [anon_sym_ATtry] = ACTIONS(1537), - [anon_sym_ATcatch] = ACTIONS(1537), - [anon_sym_ATfinally] = ACTIONS(1537), - [anon_sym_ATthrow] = ACTIONS(1537), - [anon_sym_ATselector] = ACTIONS(1537), - [anon_sym_ATencode] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1539), - [sym_YES] = ACTIONS(1539), - [sym_NO] = ACTIONS(1539), - [anon_sym___builtin_available] = ACTIONS(1539), - [anon_sym_ATavailable] = ACTIONS(1537), - [anon_sym_va_arg] = ACTIONS(1539), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [403] = { - [sym_identifier] = ACTIONS(1547), - [aux_sym_preproc_include_token1] = ACTIONS(1545), - [aux_sym_preproc_def_token1] = ACTIONS(1545), - [aux_sym_preproc_if_token1] = ACTIONS(1547), - [aux_sym_preproc_if_token2] = ACTIONS(1547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1547), - [anon_sym_LPAREN2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1545), - [anon_sym_TILDE] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_typedef] = ACTIONS(1547), - [anon_sym_extern] = ACTIONS(1547), - [anon_sym___attribute] = ACTIONS(1547), - [anon_sym___attribute__] = ACTIONS(1547), - [anon_sym___declspec] = ACTIONS(1547), - [anon_sym___cdecl] = ACTIONS(1547), - [anon_sym___clrcall] = ACTIONS(1547), - [anon_sym___stdcall] = ACTIONS(1547), - [anon_sym___fastcall] = ACTIONS(1547), - [anon_sym___thiscall] = ACTIONS(1547), - [anon_sym___vectorcall] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_auto] = ACTIONS(1547), - [anon_sym_register] = ACTIONS(1547), - [anon_sym_inline] = ACTIONS(1547), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1547), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_volatile] = ACTIONS(1547), - [anon_sym_restrict] = ACTIONS(1547), - [anon_sym__Atomic] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(1547), - [anon_sym_out] = ACTIONS(1547), - [anon_sym_inout] = ACTIONS(1547), - [anon_sym_bycopy] = ACTIONS(1547), - [anon_sym_byref] = ACTIONS(1547), - [anon_sym_oneway] = ACTIONS(1547), - [anon_sym__Nullable] = ACTIONS(1547), - [anon_sym__Nonnull] = ACTIONS(1547), - [anon_sym__Nullable_result] = ACTIONS(1547), - [anon_sym__Null_unspecified] = ACTIONS(1547), - [anon_sym___autoreleasing] = ACTIONS(1547), - [anon_sym___nullable] = ACTIONS(1547), - [anon_sym___nonnull] = ACTIONS(1547), - [anon_sym___strong] = ACTIONS(1547), - [anon_sym___weak] = ACTIONS(1547), - [anon_sym___bridge] = ACTIONS(1547), - [anon_sym___bridge_transfer] = ACTIONS(1547), - [anon_sym___bridge_retained] = ACTIONS(1547), - [anon_sym___unsafe_unretained] = ACTIONS(1547), - [anon_sym___block] = ACTIONS(1547), - [anon_sym___kindof] = ACTIONS(1547), - [anon_sym___unused] = ACTIONS(1547), - [anon_sym__Complex] = ACTIONS(1547), - [anon_sym___complex] = ACTIONS(1547), - [anon_sym_IBOutlet] = ACTIONS(1547), - [anon_sym_IBInspectable] = ACTIONS(1547), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1547), - [anon_sym_signed] = ACTIONS(1547), - [anon_sym_unsigned] = ACTIONS(1547), - [anon_sym_long] = ACTIONS(1547), - [anon_sym_short] = ACTIONS(1547), - [sym_primitive_type] = ACTIONS(1547), - [anon_sym_enum] = ACTIONS(1547), - [anon_sym_NS_ENUM] = ACTIONS(1547), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1547), - [anon_sym_NS_OPTIONS] = ACTIONS(1547), - [anon_sym_struct] = ACTIONS(1547), - [anon_sym_union] = ACTIONS(1547), - [anon_sym_if] = ACTIONS(1547), - [anon_sym_else] = ACTIONS(1547), - [anon_sym_switch] = ACTIONS(1547), - [anon_sym_case] = ACTIONS(1547), - [anon_sym_default] = ACTIONS(1547), - [anon_sym_while] = ACTIONS(1547), - [anon_sym_do] = ACTIONS(1547), - [anon_sym_for] = ACTIONS(1547), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1547), - [anon_sym_continue] = ACTIONS(1547), - [anon_sym_goto] = ACTIONS(1547), - [anon_sym_DASH_DASH] = ACTIONS(1545), - [anon_sym_PLUS_PLUS] = ACTIONS(1545), - [anon_sym_sizeof] = ACTIONS(1547), - [sym_number_literal] = ACTIONS(1545), - [anon_sym_L_SQUOTE] = ACTIONS(1545), - [anon_sym_u_SQUOTE] = ACTIONS(1545), - [anon_sym_U_SQUOTE] = ACTIONS(1545), - [anon_sym_u8_SQUOTE] = ACTIONS(1545), - [anon_sym_SQUOTE] = ACTIONS(1545), - [anon_sym_L_DQUOTE] = ACTIONS(1545), - [anon_sym_u_DQUOTE] = ACTIONS(1545), - [anon_sym_U_DQUOTE] = ACTIONS(1545), - [anon_sym_u8_DQUOTE] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [sym_true] = ACTIONS(1547), - [sym_false] = ACTIONS(1547), - [sym_null] = ACTIONS(1547), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1545), - [anon_sym_ATimport] = ACTIONS(1545), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1547), - [anon_sym_ATcompatibility_alias] = ACTIONS(1545), - [anon_sym_ATprotocol] = ACTIONS(1545), - [anon_sym_ATclass] = ACTIONS(1545), - [anon_sym_ATinterface] = ACTIONS(1545), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1547), - [sym_method_attribute_specifier] = ACTIONS(1547), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1547), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1547), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1547), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1547), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1547), - [anon_sym_NS_AVAILABLE] = ACTIONS(1547), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1547), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_API_AVAILABLE] = ACTIONS(1547), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_API_DEPRECATED] = ACTIONS(1547), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1547), - [anon_sym___deprecated_msg] = ACTIONS(1547), - [anon_sym___deprecated_enum_msg] = ACTIONS(1547), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1547), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1547), - [anon_sym_ATimplementation] = ACTIONS(1545), - [anon_sym_typeof] = ACTIONS(1547), - [anon_sym___typeof] = ACTIONS(1547), - [anon_sym___typeof__] = ACTIONS(1547), - [sym_self] = ACTIONS(1547), - [sym_super] = ACTIONS(1547), - [sym_nil] = ACTIONS(1547), - [sym_id] = ACTIONS(1547), - [sym_instancetype] = ACTIONS(1547), - [sym_Class] = ACTIONS(1547), - [sym_SEL] = ACTIONS(1547), - [sym_IMP] = ACTIONS(1547), - [sym_BOOL] = ACTIONS(1547), - [sym_auto] = ACTIONS(1547), - [anon_sym_ATautoreleasepool] = ACTIONS(1545), - [anon_sym_ATsynchronized] = ACTIONS(1545), - [anon_sym_ATtry] = ACTIONS(1545), - [anon_sym_ATcatch] = ACTIONS(1545), - [anon_sym_ATfinally] = ACTIONS(1545), - [anon_sym_ATthrow] = ACTIONS(1545), - [anon_sym_ATselector] = ACTIONS(1545), - [anon_sym_ATencode] = ACTIONS(1545), - [anon_sym_AT] = ACTIONS(1547), - [sym_YES] = ACTIONS(1547), - [sym_NO] = ACTIONS(1547), - [anon_sym___builtin_available] = ACTIONS(1547), - [anon_sym_ATavailable] = ACTIONS(1545), - [anon_sym_va_arg] = ACTIONS(1547), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [404] = { - [sym_identifier] = ACTIONS(1539), - [aux_sym_preproc_include_token1] = ACTIONS(1537), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [aux_sym_preproc_if_token1] = ACTIONS(1539), - [aux_sym_preproc_if_token2] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_typedef] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym___attribute] = ACTIONS(1539), - [anon_sym___attribute__] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1539), - [anon_sym___cdecl] = ACTIONS(1539), - [anon_sym___clrcall] = ACTIONS(1539), - [anon_sym___stdcall] = ACTIONS(1539), - [anon_sym___fastcall] = ACTIONS(1539), - [anon_sym___thiscall] = ACTIONS(1539), - [anon_sym___vectorcall] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_auto] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_inline] = ACTIONS(1539), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_volatile] = ACTIONS(1539), - [anon_sym_restrict] = ACTIONS(1539), - [anon_sym__Atomic] = ACTIONS(1539), - [anon_sym_in] = ACTIONS(1539), - [anon_sym_out] = ACTIONS(1539), - [anon_sym_inout] = ACTIONS(1539), - [anon_sym_bycopy] = ACTIONS(1539), - [anon_sym_byref] = ACTIONS(1539), - [anon_sym_oneway] = ACTIONS(1539), - [anon_sym__Nullable] = ACTIONS(1539), - [anon_sym__Nonnull] = ACTIONS(1539), - [anon_sym__Nullable_result] = ACTIONS(1539), - [anon_sym__Null_unspecified] = ACTIONS(1539), - [anon_sym___autoreleasing] = ACTIONS(1539), - [anon_sym___nullable] = ACTIONS(1539), - [anon_sym___nonnull] = ACTIONS(1539), - [anon_sym___strong] = ACTIONS(1539), - [anon_sym___weak] = ACTIONS(1539), - [anon_sym___bridge] = ACTIONS(1539), - [anon_sym___bridge_transfer] = ACTIONS(1539), - [anon_sym___bridge_retained] = ACTIONS(1539), - [anon_sym___unsafe_unretained] = ACTIONS(1539), - [anon_sym___block] = ACTIONS(1539), - [anon_sym___kindof] = ACTIONS(1539), - [anon_sym___unused] = ACTIONS(1539), - [anon_sym__Complex] = ACTIONS(1539), - [anon_sym___complex] = ACTIONS(1539), - [anon_sym_IBOutlet] = ACTIONS(1539), - [anon_sym_IBInspectable] = ACTIONS(1539), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1539), - [anon_sym_signed] = ACTIONS(1539), - [anon_sym_unsigned] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_NS_ENUM] = ACTIONS(1539), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1539), - [anon_sym_NS_OPTIONS] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1539), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1539), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_goto] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1537), - [anon_sym_sizeof] = ACTIONS(1539), - [sym_number_literal] = ACTIONS(1537), - [anon_sym_L_SQUOTE] = ACTIONS(1537), - [anon_sym_u_SQUOTE] = ACTIONS(1537), - [anon_sym_U_SQUOTE] = ACTIONS(1537), - [anon_sym_u8_SQUOTE] = ACTIONS(1537), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_L_DQUOTE] = ACTIONS(1537), - [anon_sym_u_DQUOTE] = ACTIONS(1537), - [anon_sym_U_DQUOTE] = ACTIONS(1537), - [anon_sym_u8_DQUOTE] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym_true] = ACTIONS(1539), - [sym_false] = ACTIONS(1539), - [sym_null] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1537), - [anon_sym_ATimport] = ACTIONS(1537), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1539), - [anon_sym_ATcompatibility_alias] = ACTIONS(1537), - [anon_sym_ATprotocol] = ACTIONS(1537), - [anon_sym_ATclass] = ACTIONS(1537), - [anon_sym_ATinterface] = ACTIONS(1537), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1539), - [sym_method_attribute_specifier] = ACTIONS(1539), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1539), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE] = ACTIONS(1539), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_API_AVAILABLE] = ACTIONS(1539), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_API_DEPRECATED] = ACTIONS(1539), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1539), - [anon_sym___deprecated_msg] = ACTIONS(1539), - [anon_sym___deprecated_enum_msg] = ACTIONS(1539), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1539), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1539), - [anon_sym_ATimplementation] = ACTIONS(1537), - [anon_sym_typeof] = ACTIONS(1539), - [anon_sym___typeof] = ACTIONS(1539), - [anon_sym___typeof__] = ACTIONS(1539), - [sym_self] = ACTIONS(1539), - [sym_super] = ACTIONS(1539), - [sym_nil] = ACTIONS(1539), - [sym_id] = ACTIONS(1539), - [sym_instancetype] = ACTIONS(1539), - [sym_Class] = ACTIONS(1539), - [sym_SEL] = ACTIONS(1539), - [sym_IMP] = ACTIONS(1539), - [sym_BOOL] = ACTIONS(1539), - [sym_auto] = ACTIONS(1539), - [anon_sym_ATautoreleasepool] = ACTIONS(1537), - [anon_sym_ATsynchronized] = ACTIONS(1537), - [anon_sym_ATtry] = ACTIONS(1537), - [anon_sym_ATcatch] = ACTIONS(1537), - [anon_sym_ATfinally] = ACTIONS(1537), - [anon_sym_ATthrow] = ACTIONS(1537), - [anon_sym_ATselector] = ACTIONS(1537), - [anon_sym_ATencode] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1539), - [sym_YES] = ACTIONS(1539), - [sym_NO] = ACTIONS(1539), - [anon_sym___builtin_available] = ACTIONS(1539), - [anon_sym_ATavailable] = ACTIONS(1537), - [anon_sym_va_arg] = ACTIONS(1539), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [405] = { - [sym_identifier] = ACTIONS(1285), - [aux_sym_preproc_include_token1] = ACTIONS(1287), - [aux_sym_preproc_def_token1] = ACTIONS(1287), - [aux_sym_preproc_if_token1] = ACTIONS(1285), - [aux_sym_preproc_if_token2] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1285), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1285), - [anon_sym_LPAREN2] = ACTIONS(1287), - [anon_sym_BANG] = ACTIONS(1287), - [anon_sym_TILDE] = ACTIONS(1287), - [anon_sym_DASH] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1287), - [anon_sym_CARET] = ACTIONS(1287), - [anon_sym_AMP] = ACTIONS(1287), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_typedef] = ACTIONS(1285), - [anon_sym_extern] = ACTIONS(1285), - [anon_sym___attribute] = ACTIONS(1285), - [anon_sym___attribute__] = ACTIONS(1285), - [anon_sym___declspec] = ACTIONS(1285), - [anon_sym___cdecl] = ACTIONS(1285), - [anon_sym___clrcall] = ACTIONS(1285), - [anon_sym___stdcall] = ACTIONS(1285), - [anon_sym___fastcall] = ACTIONS(1285), - [anon_sym___thiscall] = ACTIONS(1285), - [anon_sym___vectorcall] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1287), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_static] = ACTIONS(1285), - [anon_sym_auto] = ACTIONS(1285), - [anon_sym_register] = ACTIONS(1285), - [anon_sym_inline] = ACTIONS(1285), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1285), - [anon_sym_const] = ACTIONS(1285), - [anon_sym_volatile] = ACTIONS(1285), - [anon_sym_restrict] = ACTIONS(1285), - [anon_sym__Atomic] = ACTIONS(1285), - [anon_sym_in] = ACTIONS(1285), - [anon_sym_out] = ACTIONS(1285), - [anon_sym_inout] = ACTIONS(1285), - [anon_sym_bycopy] = ACTIONS(1285), - [anon_sym_byref] = ACTIONS(1285), - [anon_sym_oneway] = ACTIONS(1285), - [anon_sym__Nullable] = ACTIONS(1285), - [anon_sym__Nonnull] = ACTIONS(1285), - [anon_sym__Nullable_result] = ACTIONS(1285), - [anon_sym__Null_unspecified] = ACTIONS(1285), - [anon_sym___autoreleasing] = ACTIONS(1285), - [anon_sym___nullable] = ACTIONS(1285), - [anon_sym___nonnull] = ACTIONS(1285), - [anon_sym___strong] = ACTIONS(1285), - [anon_sym___weak] = ACTIONS(1285), - [anon_sym___bridge] = ACTIONS(1285), - [anon_sym___bridge_transfer] = ACTIONS(1285), - [anon_sym___bridge_retained] = ACTIONS(1285), - [anon_sym___unsafe_unretained] = ACTIONS(1285), - [anon_sym___block] = ACTIONS(1285), - [anon_sym___kindof] = ACTIONS(1285), - [anon_sym___unused] = ACTIONS(1285), - [anon_sym__Complex] = ACTIONS(1285), - [anon_sym___complex] = ACTIONS(1285), - [anon_sym_IBOutlet] = ACTIONS(1285), - [anon_sym_IBInspectable] = ACTIONS(1285), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1285), - [anon_sym_signed] = ACTIONS(1285), - [anon_sym_unsigned] = ACTIONS(1285), - [anon_sym_long] = ACTIONS(1285), - [anon_sym_short] = ACTIONS(1285), - [sym_primitive_type] = ACTIONS(1285), - [anon_sym_enum] = ACTIONS(1285), - [anon_sym_NS_ENUM] = ACTIONS(1285), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1285), - [anon_sym_NS_OPTIONS] = ACTIONS(1285), - [anon_sym_struct] = ACTIONS(1285), - [anon_sym_union] = ACTIONS(1285), - [anon_sym_if] = ACTIONS(1285), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_switch] = ACTIONS(1285), - [anon_sym_case] = ACTIONS(1285), - [anon_sym_default] = ACTIONS(1285), - [anon_sym_while] = ACTIONS(1285), - [anon_sym_do] = ACTIONS(1285), - [anon_sym_for] = ACTIONS(1285), - [anon_sym_return] = ACTIONS(1285), - [anon_sym_break] = ACTIONS(1285), - [anon_sym_continue] = ACTIONS(1285), - [anon_sym_goto] = ACTIONS(1285), - [anon_sym_DASH_DASH] = ACTIONS(1287), - [anon_sym_PLUS_PLUS] = ACTIONS(1287), - [anon_sym_sizeof] = ACTIONS(1285), - [sym_number_literal] = ACTIONS(1287), - [anon_sym_L_SQUOTE] = ACTIONS(1287), - [anon_sym_u_SQUOTE] = ACTIONS(1287), - [anon_sym_U_SQUOTE] = ACTIONS(1287), - [anon_sym_u8_SQUOTE] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1287), - [anon_sym_L_DQUOTE] = ACTIONS(1287), - [anon_sym_u_DQUOTE] = ACTIONS(1287), - [anon_sym_U_DQUOTE] = ACTIONS(1287), - [anon_sym_u8_DQUOTE] = ACTIONS(1287), - [anon_sym_DQUOTE] = ACTIONS(1287), - [sym_true] = ACTIONS(1285), - [sym_false] = ACTIONS(1285), - [sym_null] = ACTIONS(1285), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1287), - [anon_sym_ATimport] = ACTIONS(1287), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1285), - [anon_sym_ATcompatibility_alias] = ACTIONS(1287), - [anon_sym_ATprotocol] = ACTIONS(1287), - [anon_sym_ATclass] = ACTIONS(1287), - [anon_sym_ATinterface] = ACTIONS(1287), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1285), - [sym_method_attribute_specifier] = ACTIONS(1285), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1285), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1285), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1285), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1285), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1285), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1285), - [anon_sym_NS_AVAILABLE] = ACTIONS(1285), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1285), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1285), - [anon_sym_API_AVAILABLE] = ACTIONS(1285), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1285), - [anon_sym_API_DEPRECATED] = ACTIONS(1285), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1285), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1285), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1285), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1285), - [anon_sym___deprecated_msg] = ACTIONS(1285), - [anon_sym___deprecated_enum_msg] = ACTIONS(1285), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1285), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1285), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1285), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1285), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1285), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1285), - [anon_sym_ATimplementation] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1285), - [anon_sym___typeof] = ACTIONS(1285), - [anon_sym___typeof__] = ACTIONS(1285), - [sym_self] = ACTIONS(1285), - [sym_super] = ACTIONS(1285), - [sym_nil] = ACTIONS(1285), - [sym_id] = ACTIONS(1285), - [sym_instancetype] = ACTIONS(1285), - [sym_Class] = ACTIONS(1285), - [sym_SEL] = ACTIONS(1285), - [sym_IMP] = ACTIONS(1285), - [sym_BOOL] = ACTIONS(1285), - [sym_auto] = ACTIONS(1285), - [anon_sym_ATautoreleasepool] = ACTIONS(1287), - [anon_sym_ATsynchronized] = ACTIONS(1287), - [anon_sym_ATtry] = ACTIONS(1287), - [anon_sym_ATcatch] = ACTIONS(1287), - [anon_sym_ATfinally] = ACTIONS(1287), - [anon_sym_ATthrow] = ACTIONS(1287), - [anon_sym_ATselector] = ACTIONS(1287), - [anon_sym_ATencode] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1285), - [sym_YES] = ACTIONS(1285), - [sym_NO] = ACTIONS(1285), - [anon_sym___builtin_available] = ACTIONS(1285), - [anon_sym_ATavailable] = ACTIONS(1287), - [anon_sym_va_arg] = ACTIONS(1285), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [406] = { - [sym_identifier] = ACTIONS(1289), + [344] = { + [sym_identifier] = ACTIONS(1293), [aux_sym_preproc_include_token1] = ACTIONS(1291), [aux_sym_preproc_def_token1] = ACTIONS(1291), - [aux_sym_preproc_if_token1] = ACTIONS(1289), - [aux_sym_preproc_if_token2] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1289), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1289), - [anon_sym_LPAREN2] = ACTIONS(1291), - [anon_sym_BANG] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1291), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1291), - [anon_sym_CARET] = ACTIONS(1291), - [anon_sym_AMP] = ACTIONS(1291), - [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym_typedef] = ACTIONS(1289), - [anon_sym_extern] = ACTIONS(1289), - [anon_sym___attribute] = ACTIONS(1289), - [anon_sym___attribute__] = ACTIONS(1289), - [anon_sym___declspec] = ACTIONS(1289), - [anon_sym___cdecl] = ACTIONS(1289), - [anon_sym___clrcall] = ACTIONS(1289), - [anon_sym___stdcall] = ACTIONS(1289), - [anon_sym___fastcall] = ACTIONS(1289), - [anon_sym___thiscall] = ACTIONS(1289), - [anon_sym___vectorcall] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1291), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_auto] = ACTIONS(1289), - [anon_sym_register] = ACTIONS(1289), - [anon_sym_inline] = ACTIONS(1289), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1289), - [anon_sym_const] = ACTIONS(1289), - [anon_sym_volatile] = ACTIONS(1289), - [anon_sym_restrict] = ACTIONS(1289), - [anon_sym__Atomic] = ACTIONS(1289), - [anon_sym_in] = ACTIONS(1289), - [anon_sym_out] = ACTIONS(1289), - [anon_sym_inout] = ACTIONS(1289), - [anon_sym_bycopy] = ACTIONS(1289), - [anon_sym_byref] = ACTIONS(1289), - [anon_sym_oneway] = ACTIONS(1289), - [anon_sym__Nullable] = ACTIONS(1289), - [anon_sym__Nonnull] = ACTIONS(1289), - [anon_sym__Nullable_result] = ACTIONS(1289), - [anon_sym__Null_unspecified] = ACTIONS(1289), - [anon_sym___autoreleasing] = ACTIONS(1289), - [anon_sym___nullable] = ACTIONS(1289), - [anon_sym___nonnull] = ACTIONS(1289), - [anon_sym___strong] = ACTIONS(1289), - [anon_sym___weak] = ACTIONS(1289), - [anon_sym___bridge] = ACTIONS(1289), - [anon_sym___bridge_transfer] = ACTIONS(1289), - [anon_sym___bridge_retained] = ACTIONS(1289), - [anon_sym___unsafe_unretained] = ACTIONS(1289), - [anon_sym___block] = ACTIONS(1289), - [anon_sym___kindof] = ACTIONS(1289), - [anon_sym___unused] = ACTIONS(1289), - [anon_sym__Complex] = ACTIONS(1289), - [anon_sym___complex] = ACTIONS(1289), - [anon_sym_IBOutlet] = ACTIONS(1289), - [anon_sym_IBInspectable] = ACTIONS(1289), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1289), - [anon_sym_signed] = ACTIONS(1289), - [anon_sym_unsigned] = ACTIONS(1289), - [anon_sym_long] = ACTIONS(1289), - [anon_sym_short] = ACTIONS(1289), - [sym_primitive_type] = ACTIONS(1289), - [anon_sym_enum] = ACTIONS(1289), - [anon_sym_NS_ENUM] = ACTIONS(1289), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1289), - [anon_sym_NS_OPTIONS] = ACTIONS(1289), - [anon_sym_struct] = ACTIONS(1289), - [anon_sym_union] = ACTIONS(1289), - [anon_sym_if] = ACTIONS(1289), - [anon_sym_else] = ACTIONS(1289), - [anon_sym_switch] = ACTIONS(1289), - [anon_sym_case] = ACTIONS(1289), - [anon_sym_default] = ACTIONS(1289), - [anon_sym_while] = ACTIONS(1289), - [anon_sym_do] = ACTIONS(1289), - [anon_sym_for] = ACTIONS(1289), - [anon_sym_return] = ACTIONS(1289), - [anon_sym_break] = ACTIONS(1289), - [anon_sym_continue] = ACTIONS(1289), - [anon_sym_goto] = ACTIONS(1289), - [anon_sym_DASH_DASH] = ACTIONS(1291), - [anon_sym_PLUS_PLUS] = ACTIONS(1291), - [anon_sym_sizeof] = ACTIONS(1289), - [sym_number_literal] = ACTIONS(1291), - [anon_sym_L_SQUOTE] = ACTIONS(1291), - [anon_sym_u_SQUOTE] = ACTIONS(1291), - [anon_sym_U_SQUOTE] = ACTIONS(1291), - [anon_sym_u8_SQUOTE] = ACTIONS(1291), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_L_DQUOTE] = ACTIONS(1291), - [anon_sym_u_DQUOTE] = ACTIONS(1291), - [anon_sym_U_DQUOTE] = ACTIONS(1291), - [anon_sym_u8_DQUOTE] = ACTIONS(1291), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_true] = ACTIONS(1289), - [sym_false] = ACTIONS(1289), - [sym_null] = ACTIONS(1289), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1291), - [anon_sym_ATimport] = ACTIONS(1291), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1289), - [anon_sym_ATcompatibility_alias] = ACTIONS(1291), - [anon_sym_ATprotocol] = ACTIONS(1291), - [anon_sym_ATclass] = ACTIONS(1291), - [anon_sym_ATinterface] = ACTIONS(1291), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1289), - [sym_method_attribute_specifier] = ACTIONS(1289), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1289), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1289), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1289), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1289), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1289), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1289), - [anon_sym_NS_AVAILABLE] = ACTIONS(1289), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1289), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1289), - [anon_sym_API_AVAILABLE] = ACTIONS(1289), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1289), - [anon_sym_API_DEPRECATED] = ACTIONS(1289), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1289), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1289), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1289), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1289), - [anon_sym___deprecated_msg] = ACTIONS(1289), - [anon_sym___deprecated_enum_msg] = ACTIONS(1289), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1289), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1289), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1289), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1289), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1289), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1289), - [anon_sym_ATimplementation] = ACTIONS(1291), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym___typeof] = ACTIONS(1289), - [anon_sym___typeof__] = ACTIONS(1289), - [sym_self] = ACTIONS(1289), - [sym_super] = ACTIONS(1289), - [sym_nil] = ACTIONS(1289), - [sym_id] = ACTIONS(1289), - [sym_instancetype] = ACTIONS(1289), - [sym_Class] = ACTIONS(1289), - [sym_SEL] = ACTIONS(1289), - [sym_IMP] = ACTIONS(1289), - [sym_BOOL] = ACTIONS(1289), - [sym_auto] = ACTIONS(1289), - [anon_sym_ATautoreleasepool] = ACTIONS(1291), - [anon_sym_ATsynchronized] = ACTIONS(1291), - [anon_sym_ATtry] = ACTIONS(1291), - [anon_sym_ATcatch] = ACTIONS(1291), - [anon_sym_ATfinally] = ACTIONS(1291), - [anon_sym_ATthrow] = ACTIONS(1291), - [anon_sym_ATselector] = ACTIONS(1291), - [anon_sym_ATencode] = ACTIONS(1291), - [anon_sym_AT] = ACTIONS(1289), - [sym_YES] = ACTIONS(1289), - [sym_NO] = ACTIONS(1289), - [anon_sym___builtin_available] = ACTIONS(1289), - [anon_sym_ATavailable] = ACTIONS(1291), - [anon_sym_va_arg] = ACTIONS(1289), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [407] = { - [sym_identifier] = ACTIONS(1539), - [aux_sym_preproc_include_token1] = ACTIONS(1537), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [aux_sym_preproc_if_token1] = ACTIONS(1539), - [aux_sym_preproc_if_token2] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1539), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_typedef] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym___attribute] = ACTIONS(1539), - [anon_sym___attribute__] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1539), - [anon_sym___cdecl] = ACTIONS(1539), - [anon_sym___clrcall] = ACTIONS(1539), - [anon_sym___stdcall] = ACTIONS(1539), - [anon_sym___fastcall] = ACTIONS(1539), - [anon_sym___thiscall] = ACTIONS(1539), - [anon_sym___vectorcall] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1537), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_auto] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_inline] = ACTIONS(1539), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_volatile] = ACTIONS(1539), - [anon_sym_restrict] = ACTIONS(1539), - [anon_sym__Atomic] = ACTIONS(1539), - [anon_sym_in] = ACTIONS(1539), - [anon_sym_out] = ACTIONS(1539), - [anon_sym_inout] = ACTIONS(1539), - [anon_sym_bycopy] = ACTIONS(1539), - [anon_sym_byref] = ACTIONS(1539), - [anon_sym_oneway] = ACTIONS(1539), - [anon_sym__Nullable] = ACTIONS(1539), - [anon_sym__Nonnull] = ACTIONS(1539), - [anon_sym__Nullable_result] = ACTIONS(1539), - [anon_sym__Null_unspecified] = ACTIONS(1539), - [anon_sym___autoreleasing] = ACTIONS(1539), - [anon_sym___nullable] = ACTIONS(1539), - [anon_sym___nonnull] = ACTIONS(1539), - [anon_sym___strong] = ACTIONS(1539), - [anon_sym___weak] = ACTIONS(1539), - [anon_sym___bridge] = ACTIONS(1539), - [anon_sym___bridge_transfer] = ACTIONS(1539), - [anon_sym___bridge_retained] = ACTIONS(1539), - [anon_sym___unsafe_unretained] = ACTIONS(1539), - [anon_sym___block] = ACTIONS(1539), - [anon_sym___kindof] = ACTIONS(1539), - [anon_sym___unused] = ACTIONS(1539), - [anon_sym__Complex] = ACTIONS(1539), - [anon_sym___complex] = ACTIONS(1539), - [anon_sym_IBOutlet] = ACTIONS(1539), - [anon_sym_IBInspectable] = ACTIONS(1539), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1539), - [anon_sym_signed] = ACTIONS(1539), - [anon_sym_unsigned] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_NS_ENUM] = ACTIONS(1539), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1539), - [anon_sym_NS_OPTIONS] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1539), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1539), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_goto] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1537), - [anon_sym_sizeof] = ACTIONS(1539), - [sym_number_literal] = ACTIONS(1537), - [anon_sym_L_SQUOTE] = ACTIONS(1537), - [anon_sym_u_SQUOTE] = ACTIONS(1537), - [anon_sym_U_SQUOTE] = ACTIONS(1537), - [anon_sym_u8_SQUOTE] = ACTIONS(1537), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_L_DQUOTE] = ACTIONS(1537), - [anon_sym_u_DQUOTE] = ACTIONS(1537), - [anon_sym_U_DQUOTE] = ACTIONS(1537), - [anon_sym_u8_DQUOTE] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [sym_true] = ACTIONS(1539), - [sym_false] = ACTIONS(1539), - [sym_null] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1537), - [anon_sym_ATimport] = ACTIONS(1537), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1539), - [anon_sym_ATcompatibility_alias] = ACTIONS(1537), - [anon_sym_ATprotocol] = ACTIONS(1537), - [anon_sym_ATclass] = ACTIONS(1537), - [anon_sym_ATinterface] = ACTIONS(1537), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1539), - [sym_method_attribute_specifier] = ACTIONS(1539), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1539), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE] = ACTIONS(1539), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_API_AVAILABLE] = ACTIONS(1539), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_API_DEPRECATED] = ACTIONS(1539), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1539), - [anon_sym___deprecated_msg] = ACTIONS(1539), - [anon_sym___deprecated_enum_msg] = ACTIONS(1539), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1539), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1539), - [anon_sym_ATimplementation] = ACTIONS(1537), - [anon_sym_typeof] = ACTIONS(1539), - [anon_sym___typeof] = ACTIONS(1539), - [anon_sym___typeof__] = ACTIONS(1539), - [sym_self] = ACTIONS(1539), - [sym_super] = ACTIONS(1539), - [sym_nil] = ACTIONS(1539), - [sym_id] = ACTIONS(1539), - [sym_instancetype] = ACTIONS(1539), - [sym_Class] = ACTIONS(1539), - [sym_SEL] = ACTIONS(1539), - [sym_IMP] = ACTIONS(1539), - [sym_BOOL] = ACTIONS(1539), - [sym_auto] = ACTIONS(1539), - [anon_sym_ATautoreleasepool] = ACTIONS(1537), - [anon_sym_ATsynchronized] = ACTIONS(1537), - [anon_sym_ATtry] = ACTIONS(1537), - [anon_sym_ATcatch] = ACTIONS(1537), - [anon_sym_ATfinally] = ACTIONS(1537), - [anon_sym_ATthrow] = ACTIONS(1537), - [anon_sym_ATselector] = ACTIONS(1537), - [anon_sym_ATencode] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1539), - [sym_YES] = ACTIONS(1539), - [sym_NO] = ACTIONS(1539), - [anon_sym___builtin_available] = ACTIONS(1539), - [anon_sym_ATavailable] = ACTIONS(1537), - [anon_sym_va_arg] = ACTIONS(1539), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [408] = { - [sym_identifier] = ACTIONS(1547), - [aux_sym_preproc_include_token1] = ACTIONS(1545), - [aux_sym_preproc_def_token1] = ACTIONS(1545), - [aux_sym_preproc_if_token1] = ACTIONS(1547), - [aux_sym_preproc_if_token2] = ACTIONS(1547), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1547), - [anon_sym_LPAREN2] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1545), - [anon_sym_TILDE] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_typedef] = ACTIONS(1547), - [anon_sym_extern] = ACTIONS(1547), - [anon_sym___attribute] = ACTIONS(1547), - [anon_sym___attribute__] = ACTIONS(1547), - [anon_sym___declspec] = ACTIONS(1547), - [anon_sym___cdecl] = ACTIONS(1547), - [anon_sym___clrcall] = ACTIONS(1547), - [anon_sym___stdcall] = ACTIONS(1547), - [anon_sym___fastcall] = ACTIONS(1547), - [anon_sym___thiscall] = ACTIONS(1547), - [anon_sym___vectorcall] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_auto] = ACTIONS(1547), - [anon_sym_register] = ACTIONS(1547), - [anon_sym_inline] = ACTIONS(1547), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1547), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_volatile] = ACTIONS(1547), - [anon_sym_restrict] = ACTIONS(1547), - [anon_sym__Atomic] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(1547), - [anon_sym_out] = ACTIONS(1547), - [anon_sym_inout] = ACTIONS(1547), - [anon_sym_bycopy] = ACTIONS(1547), - [anon_sym_byref] = ACTIONS(1547), - [anon_sym_oneway] = ACTIONS(1547), - [anon_sym__Nullable] = ACTIONS(1547), - [anon_sym__Nonnull] = ACTIONS(1547), - [anon_sym__Nullable_result] = ACTIONS(1547), - [anon_sym__Null_unspecified] = ACTIONS(1547), - [anon_sym___autoreleasing] = ACTIONS(1547), - [anon_sym___nullable] = ACTIONS(1547), - [anon_sym___nonnull] = ACTIONS(1547), - [anon_sym___strong] = ACTIONS(1547), - [anon_sym___weak] = ACTIONS(1547), - [anon_sym___bridge] = ACTIONS(1547), - [anon_sym___bridge_transfer] = ACTIONS(1547), - [anon_sym___bridge_retained] = ACTIONS(1547), - [anon_sym___unsafe_unretained] = ACTIONS(1547), - [anon_sym___block] = ACTIONS(1547), - [anon_sym___kindof] = ACTIONS(1547), - [anon_sym___unused] = ACTIONS(1547), - [anon_sym__Complex] = ACTIONS(1547), - [anon_sym___complex] = ACTIONS(1547), - [anon_sym_IBOutlet] = ACTIONS(1547), - [anon_sym_IBInspectable] = ACTIONS(1547), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1547), - [anon_sym_signed] = ACTIONS(1547), - [anon_sym_unsigned] = ACTIONS(1547), - [anon_sym_long] = ACTIONS(1547), - [anon_sym_short] = ACTIONS(1547), - [sym_primitive_type] = ACTIONS(1547), - [anon_sym_enum] = ACTIONS(1547), - [anon_sym_NS_ENUM] = ACTIONS(1547), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1547), - [anon_sym_NS_OPTIONS] = ACTIONS(1547), - [anon_sym_struct] = ACTIONS(1547), - [anon_sym_union] = ACTIONS(1547), - [anon_sym_if] = ACTIONS(1547), - [anon_sym_else] = ACTIONS(1547), - [anon_sym_switch] = ACTIONS(1547), - [anon_sym_case] = ACTIONS(1547), - [anon_sym_default] = ACTIONS(1547), - [anon_sym_while] = ACTIONS(1547), - [anon_sym_do] = ACTIONS(1547), - [anon_sym_for] = ACTIONS(1547), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1547), - [anon_sym_continue] = ACTIONS(1547), - [anon_sym_goto] = ACTIONS(1547), - [anon_sym_DASH_DASH] = ACTIONS(1545), - [anon_sym_PLUS_PLUS] = ACTIONS(1545), - [anon_sym_sizeof] = ACTIONS(1547), - [sym_number_literal] = ACTIONS(1545), - [anon_sym_L_SQUOTE] = ACTIONS(1545), - [anon_sym_u_SQUOTE] = ACTIONS(1545), - [anon_sym_U_SQUOTE] = ACTIONS(1545), - [anon_sym_u8_SQUOTE] = ACTIONS(1545), - [anon_sym_SQUOTE] = ACTIONS(1545), - [anon_sym_L_DQUOTE] = ACTIONS(1545), - [anon_sym_u_DQUOTE] = ACTIONS(1545), - [anon_sym_U_DQUOTE] = ACTIONS(1545), - [anon_sym_u8_DQUOTE] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [sym_true] = ACTIONS(1547), - [sym_false] = ACTIONS(1547), - [sym_null] = ACTIONS(1547), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1545), - [anon_sym_ATimport] = ACTIONS(1545), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1547), - [anon_sym_ATcompatibility_alias] = ACTIONS(1545), - [anon_sym_ATprotocol] = ACTIONS(1545), - [anon_sym_ATclass] = ACTIONS(1545), - [anon_sym_ATinterface] = ACTIONS(1545), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1547), - [sym_method_attribute_specifier] = ACTIONS(1547), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1547), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1547), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1547), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1547), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1547), - [anon_sym_NS_AVAILABLE] = ACTIONS(1547), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1547), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_API_AVAILABLE] = ACTIONS(1547), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_API_DEPRECATED] = ACTIONS(1547), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1547), - [anon_sym___deprecated_msg] = ACTIONS(1547), - [anon_sym___deprecated_enum_msg] = ACTIONS(1547), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1547), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1547), - [anon_sym_ATimplementation] = ACTIONS(1545), - [anon_sym_typeof] = ACTIONS(1547), - [anon_sym___typeof] = ACTIONS(1547), - [anon_sym___typeof__] = ACTIONS(1547), - [sym_self] = ACTIONS(1547), - [sym_super] = ACTIONS(1547), - [sym_nil] = ACTIONS(1547), - [sym_id] = ACTIONS(1547), - [sym_instancetype] = ACTIONS(1547), - [sym_Class] = ACTIONS(1547), - [sym_SEL] = ACTIONS(1547), - [sym_IMP] = ACTIONS(1547), - [sym_BOOL] = ACTIONS(1547), - [sym_auto] = ACTIONS(1547), - [anon_sym_ATautoreleasepool] = ACTIONS(1545), - [anon_sym_ATsynchronized] = ACTIONS(1545), - [anon_sym_ATtry] = ACTIONS(1545), - [anon_sym_ATcatch] = ACTIONS(1545), - [anon_sym_ATfinally] = ACTIONS(1545), - [anon_sym_ATthrow] = ACTIONS(1545), - [anon_sym_ATselector] = ACTIONS(1545), - [anon_sym_ATencode] = ACTIONS(1545), - [anon_sym_AT] = ACTIONS(1547), - [sym_YES] = ACTIONS(1547), - [sym_NO] = ACTIONS(1547), - [anon_sym___builtin_available] = ACTIONS(1547), - [anon_sym_ATavailable] = ACTIONS(1545), - [anon_sym_va_arg] = ACTIONS(1547), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [409] = { - [sym_identifier] = ACTIONS(1575), - [aux_sym_preproc_include_token1] = ACTIONS(1573), - [aux_sym_preproc_def_token1] = ACTIONS(1573), - [aux_sym_preproc_if_token1] = ACTIONS(1575), - [aux_sym_preproc_if_token2] = ACTIONS(1575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1575), - [anon_sym_LPAREN2] = ACTIONS(1573), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1573), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_typedef] = ACTIONS(1575), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym___attribute] = ACTIONS(1575), - [anon_sym___attribute__] = ACTIONS(1575), - [anon_sym___declspec] = ACTIONS(1575), - [anon_sym___cdecl] = ACTIONS(1575), - [anon_sym___clrcall] = ACTIONS(1575), - [anon_sym___stdcall] = ACTIONS(1575), - [anon_sym___fastcall] = ACTIONS(1575), - [anon_sym___thiscall] = ACTIONS(1575), - [anon_sym___vectorcall] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1573), - [anon_sym_LBRACK] = ACTIONS(1573), - [anon_sym_static] = ACTIONS(1575), - [anon_sym_auto] = ACTIONS(1575), - [anon_sym_register] = ACTIONS(1575), - [anon_sym_inline] = ACTIONS(1575), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [anon_sym_volatile] = ACTIONS(1575), - [anon_sym_restrict] = ACTIONS(1575), - [anon_sym__Atomic] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_out] = ACTIONS(1575), - [anon_sym_inout] = ACTIONS(1575), - [anon_sym_bycopy] = ACTIONS(1575), - [anon_sym_byref] = ACTIONS(1575), - [anon_sym_oneway] = ACTIONS(1575), - [anon_sym__Nullable] = ACTIONS(1575), - [anon_sym__Nonnull] = ACTIONS(1575), - [anon_sym__Nullable_result] = ACTIONS(1575), - [anon_sym__Null_unspecified] = ACTIONS(1575), - [anon_sym___autoreleasing] = ACTIONS(1575), - [anon_sym___nullable] = ACTIONS(1575), - [anon_sym___nonnull] = ACTIONS(1575), - [anon_sym___strong] = ACTIONS(1575), - [anon_sym___weak] = ACTIONS(1575), - [anon_sym___bridge] = ACTIONS(1575), - [anon_sym___bridge_transfer] = ACTIONS(1575), - [anon_sym___bridge_retained] = ACTIONS(1575), - [anon_sym___unsafe_unretained] = ACTIONS(1575), - [anon_sym___block] = ACTIONS(1575), - [anon_sym___kindof] = ACTIONS(1575), - [anon_sym___unused] = ACTIONS(1575), - [anon_sym__Complex] = ACTIONS(1575), - [anon_sym___complex] = ACTIONS(1575), - [anon_sym_IBOutlet] = ACTIONS(1575), - [anon_sym_IBInspectable] = ACTIONS(1575), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1575), - [anon_sym_signed] = ACTIONS(1575), - [anon_sym_unsigned] = ACTIONS(1575), - [anon_sym_long] = ACTIONS(1575), - [anon_sym_short] = ACTIONS(1575), - [sym_primitive_type] = ACTIONS(1575), - [anon_sym_enum] = ACTIONS(1575), - [anon_sym_NS_ENUM] = ACTIONS(1575), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1575), - [anon_sym_NS_OPTIONS] = ACTIONS(1575), - [anon_sym_struct] = ACTIONS(1575), - [anon_sym_union] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_else] = ACTIONS(1575), - [anon_sym_switch] = ACTIONS(1575), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_goto] = ACTIONS(1575), - [anon_sym_DASH_DASH] = ACTIONS(1573), - [anon_sym_PLUS_PLUS] = ACTIONS(1573), - [anon_sym_sizeof] = ACTIONS(1575), - [sym_number_literal] = ACTIONS(1573), - [anon_sym_L_SQUOTE] = ACTIONS(1573), - [anon_sym_u_SQUOTE] = ACTIONS(1573), - [anon_sym_U_SQUOTE] = ACTIONS(1573), - [anon_sym_u8_SQUOTE] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1573), - [anon_sym_L_DQUOTE] = ACTIONS(1573), - [anon_sym_u_DQUOTE] = ACTIONS(1573), - [anon_sym_U_DQUOTE] = ACTIONS(1573), - [anon_sym_u8_DQUOTE] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(1573), - [sym_true] = ACTIONS(1575), - [sym_false] = ACTIONS(1575), - [sym_null] = ACTIONS(1575), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1573), - [anon_sym_ATimport] = ACTIONS(1573), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1575), - [anon_sym_ATcompatibility_alias] = ACTIONS(1573), - [anon_sym_ATprotocol] = ACTIONS(1573), - [anon_sym_ATclass] = ACTIONS(1573), - [anon_sym_ATinterface] = ACTIONS(1573), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1575), - [sym_method_attribute_specifier] = ACTIONS(1575), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1575), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1575), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1575), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1575), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1575), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1575), - [anon_sym_NS_AVAILABLE] = ACTIONS(1575), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1575), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1575), - [anon_sym_API_AVAILABLE] = ACTIONS(1575), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1575), - [anon_sym_API_DEPRECATED] = ACTIONS(1575), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1575), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1575), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1575), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1575), - [anon_sym___deprecated_msg] = ACTIONS(1575), - [anon_sym___deprecated_enum_msg] = ACTIONS(1575), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1575), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1575), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1575), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1575), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1575), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1575), - [anon_sym_ATimplementation] = ACTIONS(1573), - [anon_sym_typeof] = ACTIONS(1575), - [anon_sym___typeof] = ACTIONS(1575), - [anon_sym___typeof__] = ACTIONS(1575), - [sym_self] = ACTIONS(1575), - [sym_super] = ACTIONS(1575), - [sym_nil] = ACTIONS(1575), - [sym_id] = ACTIONS(1575), - [sym_instancetype] = ACTIONS(1575), - [sym_Class] = ACTIONS(1575), - [sym_SEL] = ACTIONS(1575), - [sym_IMP] = ACTIONS(1575), - [sym_BOOL] = ACTIONS(1575), - [sym_auto] = ACTIONS(1575), - [anon_sym_ATautoreleasepool] = ACTIONS(1573), - [anon_sym_ATsynchronized] = ACTIONS(1573), - [anon_sym_ATtry] = ACTIONS(1573), - [anon_sym_ATcatch] = ACTIONS(1573), - [anon_sym_ATfinally] = ACTIONS(1573), - [anon_sym_ATthrow] = ACTIONS(1573), - [anon_sym_ATselector] = ACTIONS(1573), - [anon_sym_ATencode] = ACTIONS(1573), - [anon_sym_AT] = ACTIONS(1575), - [sym_YES] = ACTIONS(1575), - [sym_NO] = ACTIONS(1575), - [anon_sym___builtin_available] = ACTIONS(1575), - [anon_sym_ATavailable] = ACTIONS(1573), - [anon_sym_va_arg] = ACTIONS(1575), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [410] = { - [sym_identifier] = ACTIONS(1579), - [aux_sym_preproc_include_token1] = ACTIONS(1577), - [aux_sym_preproc_def_token1] = ACTIONS(1577), - [aux_sym_preproc_if_token1] = ACTIONS(1579), - [aux_sym_preproc_if_token2] = ACTIONS(1579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1579), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_TILDE] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_typedef] = ACTIONS(1579), - [anon_sym_extern] = ACTIONS(1579), - [anon_sym___attribute] = ACTIONS(1579), - [anon_sym___attribute__] = ACTIONS(1579), - [anon_sym___declspec] = ACTIONS(1579), - [anon_sym___cdecl] = ACTIONS(1579), - [anon_sym___clrcall] = ACTIONS(1579), - [anon_sym___stdcall] = ACTIONS(1579), - [anon_sym___fastcall] = ACTIONS(1579), - [anon_sym___thiscall] = ACTIONS(1579), - [anon_sym___vectorcall] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_auto] = ACTIONS(1579), - [anon_sym_register] = ACTIONS(1579), - [anon_sym_inline] = ACTIONS(1579), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_volatile] = ACTIONS(1579), - [anon_sym_restrict] = ACTIONS(1579), - [anon_sym__Atomic] = ACTIONS(1579), - [anon_sym_in] = ACTIONS(1579), - [anon_sym_out] = ACTIONS(1579), - [anon_sym_inout] = ACTIONS(1579), - [anon_sym_bycopy] = ACTIONS(1579), - [anon_sym_byref] = ACTIONS(1579), - [anon_sym_oneway] = ACTIONS(1579), - [anon_sym__Nullable] = ACTIONS(1579), - [anon_sym__Nonnull] = ACTIONS(1579), - [anon_sym__Nullable_result] = ACTIONS(1579), - [anon_sym__Null_unspecified] = ACTIONS(1579), - [anon_sym___autoreleasing] = ACTIONS(1579), - [anon_sym___nullable] = ACTIONS(1579), - [anon_sym___nonnull] = ACTIONS(1579), - [anon_sym___strong] = ACTIONS(1579), - [anon_sym___weak] = ACTIONS(1579), - [anon_sym___bridge] = ACTIONS(1579), - [anon_sym___bridge_transfer] = ACTIONS(1579), - [anon_sym___bridge_retained] = ACTIONS(1579), - [anon_sym___unsafe_unretained] = ACTIONS(1579), - [anon_sym___block] = ACTIONS(1579), - [anon_sym___kindof] = ACTIONS(1579), - [anon_sym___unused] = ACTIONS(1579), - [anon_sym__Complex] = ACTIONS(1579), - [anon_sym___complex] = ACTIONS(1579), - [anon_sym_IBOutlet] = ACTIONS(1579), - [anon_sym_IBInspectable] = ACTIONS(1579), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1579), - [anon_sym_signed] = ACTIONS(1579), - [anon_sym_unsigned] = ACTIONS(1579), - [anon_sym_long] = ACTIONS(1579), - [anon_sym_short] = ACTIONS(1579), - [sym_primitive_type] = ACTIONS(1579), - [anon_sym_enum] = ACTIONS(1579), - [anon_sym_NS_ENUM] = ACTIONS(1579), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1579), - [anon_sym_NS_OPTIONS] = ACTIONS(1579), - [anon_sym_struct] = ACTIONS(1579), - [anon_sym_union] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_else] = ACTIONS(1579), - [anon_sym_switch] = ACTIONS(1579), - [anon_sym_case] = ACTIONS(1579), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_goto] = ACTIONS(1579), - [anon_sym_DASH_DASH] = ACTIONS(1577), - [anon_sym_PLUS_PLUS] = ACTIONS(1577), - [anon_sym_sizeof] = ACTIONS(1579), - [sym_number_literal] = ACTIONS(1577), - [anon_sym_L_SQUOTE] = ACTIONS(1577), - [anon_sym_u_SQUOTE] = ACTIONS(1577), - [anon_sym_U_SQUOTE] = ACTIONS(1577), - [anon_sym_u8_SQUOTE] = ACTIONS(1577), - [anon_sym_SQUOTE] = ACTIONS(1577), - [anon_sym_L_DQUOTE] = ACTIONS(1577), - [anon_sym_u_DQUOTE] = ACTIONS(1577), - [anon_sym_U_DQUOTE] = ACTIONS(1577), - [anon_sym_u8_DQUOTE] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1577), - [sym_true] = ACTIONS(1579), - [sym_false] = ACTIONS(1579), - [sym_null] = ACTIONS(1579), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1577), - [anon_sym_ATimport] = ACTIONS(1577), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1579), - [anon_sym_ATcompatibility_alias] = ACTIONS(1577), - [anon_sym_ATprotocol] = ACTIONS(1577), - [anon_sym_ATclass] = ACTIONS(1577), - [anon_sym_ATinterface] = ACTIONS(1577), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1579), - [sym_method_attribute_specifier] = ACTIONS(1579), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1579), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1579), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1579), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1579), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1579), - [anon_sym_NS_AVAILABLE] = ACTIONS(1579), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1579), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_API_AVAILABLE] = ACTIONS(1579), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_API_DEPRECATED] = ACTIONS(1579), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1579), - [anon_sym___deprecated_msg] = ACTIONS(1579), - [anon_sym___deprecated_enum_msg] = ACTIONS(1579), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1579), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1579), - [anon_sym_ATimplementation] = ACTIONS(1577), - [anon_sym_typeof] = ACTIONS(1579), - [anon_sym___typeof] = ACTIONS(1579), - [anon_sym___typeof__] = ACTIONS(1579), - [sym_self] = ACTIONS(1579), - [sym_super] = ACTIONS(1579), - [sym_nil] = ACTIONS(1579), - [sym_id] = ACTIONS(1579), - [sym_instancetype] = ACTIONS(1579), - [sym_Class] = ACTIONS(1579), - [sym_SEL] = ACTIONS(1579), - [sym_IMP] = ACTIONS(1579), - [sym_BOOL] = ACTIONS(1579), - [sym_auto] = ACTIONS(1579), - [anon_sym_ATautoreleasepool] = ACTIONS(1577), - [anon_sym_ATsynchronized] = ACTIONS(1577), - [anon_sym_ATtry] = ACTIONS(1577), - [anon_sym_ATcatch] = ACTIONS(1577), - [anon_sym_ATfinally] = ACTIONS(1577), - [anon_sym_ATthrow] = ACTIONS(1577), - [anon_sym_ATselector] = ACTIONS(1577), - [anon_sym_ATencode] = ACTIONS(1577), - [anon_sym_AT] = ACTIONS(1579), - [sym_YES] = ACTIONS(1579), - [sym_NO] = ACTIONS(1579), - [anon_sym___builtin_available] = ACTIONS(1579), - [anon_sym_ATavailable] = ACTIONS(1577), - [anon_sym_va_arg] = ACTIONS(1579), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [411] = { - [sym_identifier] = ACTIONS(1579), - [aux_sym_preproc_include_token1] = ACTIONS(1577), - [aux_sym_preproc_def_token1] = ACTIONS(1577), - [aux_sym_preproc_if_token1] = ACTIONS(1579), - [aux_sym_preproc_if_token2] = ACTIONS(1579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1579), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1579), - [anon_sym_LPAREN2] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_TILDE] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_CARET] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_typedef] = ACTIONS(1579), - [anon_sym_extern] = ACTIONS(1579), - [anon_sym___attribute] = ACTIONS(1579), - [anon_sym___attribute__] = ACTIONS(1579), - [anon_sym___declspec] = ACTIONS(1579), - [anon_sym___cdecl] = ACTIONS(1579), - [anon_sym___clrcall] = ACTIONS(1579), - [anon_sym___stdcall] = ACTIONS(1579), - [anon_sym___fastcall] = ACTIONS(1579), - [anon_sym___thiscall] = ACTIONS(1579), - [anon_sym___vectorcall] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_auto] = ACTIONS(1579), - [anon_sym_register] = ACTIONS(1579), - [anon_sym_inline] = ACTIONS(1579), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_volatile] = ACTIONS(1579), - [anon_sym_restrict] = ACTIONS(1579), - [anon_sym__Atomic] = ACTIONS(1579), - [anon_sym_in] = ACTIONS(1579), - [anon_sym_out] = ACTIONS(1579), - [anon_sym_inout] = ACTIONS(1579), - [anon_sym_bycopy] = ACTIONS(1579), - [anon_sym_byref] = ACTIONS(1579), - [anon_sym_oneway] = ACTIONS(1579), - [anon_sym__Nullable] = ACTIONS(1579), - [anon_sym__Nonnull] = ACTIONS(1579), - [anon_sym__Nullable_result] = ACTIONS(1579), - [anon_sym__Null_unspecified] = ACTIONS(1579), - [anon_sym___autoreleasing] = ACTIONS(1579), - [anon_sym___nullable] = ACTIONS(1579), - [anon_sym___nonnull] = ACTIONS(1579), - [anon_sym___strong] = ACTIONS(1579), - [anon_sym___weak] = ACTIONS(1579), - [anon_sym___bridge] = ACTIONS(1579), - [anon_sym___bridge_transfer] = ACTIONS(1579), - [anon_sym___bridge_retained] = ACTIONS(1579), - [anon_sym___unsafe_unretained] = ACTIONS(1579), - [anon_sym___block] = ACTIONS(1579), - [anon_sym___kindof] = ACTIONS(1579), - [anon_sym___unused] = ACTIONS(1579), - [anon_sym__Complex] = ACTIONS(1579), - [anon_sym___complex] = ACTIONS(1579), - [anon_sym_IBOutlet] = ACTIONS(1579), - [anon_sym_IBInspectable] = ACTIONS(1579), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1579), - [anon_sym_signed] = ACTIONS(1579), - [anon_sym_unsigned] = ACTIONS(1579), - [anon_sym_long] = ACTIONS(1579), - [anon_sym_short] = ACTIONS(1579), - [sym_primitive_type] = ACTIONS(1579), - [anon_sym_enum] = ACTIONS(1579), - [anon_sym_NS_ENUM] = ACTIONS(1579), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1579), - [anon_sym_NS_OPTIONS] = ACTIONS(1579), - [anon_sym_struct] = ACTIONS(1579), - [anon_sym_union] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_else] = ACTIONS(1579), - [anon_sym_switch] = ACTIONS(1579), - [anon_sym_case] = ACTIONS(1579), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_goto] = ACTIONS(1579), - [anon_sym_DASH_DASH] = ACTIONS(1577), - [anon_sym_PLUS_PLUS] = ACTIONS(1577), - [anon_sym_sizeof] = ACTIONS(1579), - [sym_number_literal] = ACTIONS(1577), - [anon_sym_L_SQUOTE] = ACTIONS(1577), - [anon_sym_u_SQUOTE] = ACTIONS(1577), - [anon_sym_U_SQUOTE] = ACTIONS(1577), - [anon_sym_u8_SQUOTE] = ACTIONS(1577), - [anon_sym_SQUOTE] = ACTIONS(1577), - [anon_sym_L_DQUOTE] = ACTIONS(1577), - [anon_sym_u_DQUOTE] = ACTIONS(1577), - [anon_sym_U_DQUOTE] = ACTIONS(1577), - [anon_sym_u8_DQUOTE] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1577), - [sym_true] = ACTIONS(1579), - [sym_false] = ACTIONS(1579), - [sym_null] = ACTIONS(1579), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1577), - [anon_sym_ATimport] = ACTIONS(1577), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1579), - [anon_sym_ATcompatibility_alias] = ACTIONS(1577), - [anon_sym_ATprotocol] = ACTIONS(1577), - [anon_sym_ATclass] = ACTIONS(1577), - [anon_sym_ATinterface] = ACTIONS(1577), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1579), - [sym_method_attribute_specifier] = ACTIONS(1579), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1579), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1579), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1579), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1579), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1579), - [anon_sym_NS_AVAILABLE] = ACTIONS(1579), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1579), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_API_AVAILABLE] = ACTIONS(1579), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_API_DEPRECATED] = ACTIONS(1579), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1579), - [anon_sym___deprecated_msg] = ACTIONS(1579), - [anon_sym___deprecated_enum_msg] = ACTIONS(1579), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1579), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1579), - [anon_sym_ATimplementation] = ACTIONS(1577), - [anon_sym_typeof] = ACTIONS(1579), - [anon_sym___typeof] = ACTIONS(1579), - [anon_sym___typeof__] = ACTIONS(1579), - [sym_self] = ACTIONS(1579), - [sym_super] = ACTIONS(1579), - [sym_nil] = ACTIONS(1579), - [sym_id] = ACTIONS(1579), - [sym_instancetype] = ACTIONS(1579), - [sym_Class] = ACTIONS(1579), - [sym_SEL] = ACTIONS(1579), - [sym_IMP] = ACTIONS(1579), - [sym_BOOL] = ACTIONS(1579), - [sym_auto] = ACTIONS(1579), - [anon_sym_ATautoreleasepool] = ACTIONS(1577), - [anon_sym_ATsynchronized] = ACTIONS(1577), - [anon_sym_ATtry] = ACTIONS(1577), - [anon_sym_ATcatch] = ACTIONS(1577), - [anon_sym_ATfinally] = ACTIONS(1577), - [anon_sym_ATthrow] = ACTIONS(1577), - [anon_sym_ATselector] = ACTIONS(1577), - [anon_sym_ATencode] = ACTIONS(1577), - [anon_sym_AT] = ACTIONS(1579), - [sym_YES] = ACTIONS(1579), - [sym_NO] = ACTIONS(1579), - [anon_sym___builtin_available] = ACTIONS(1579), - [anon_sym_ATavailable] = ACTIONS(1577), - [anon_sym_va_arg] = ACTIONS(1579), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [412] = { - [sym_identifier] = ACTIONS(1561), - [aux_sym_preproc_include_token1] = ACTIONS(1563), - [aux_sym_preproc_def_token1] = ACTIONS(1563), - [aux_sym_preproc_if_token1] = ACTIONS(1561), - [aux_sym_preproc_if_token2] = ACTIONS(1561), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1561), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1561), - [anon_sym_LPAREN2] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_TILDE] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_PLUS] = ACTIONS(1561), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_typedef] = ACTIONS(1561), - [anon_sym_extern] = ACTIONS(1561), - [anon_sym___attribute] = ACTIONS(1561), - [anon_sym___attribute__] = ACTIONS(1561), - [anon_sym___declspec] = ACTIONS(1561), - [anon_sym___cdecl] = ACTIONS(1561), - [anon_sym___clrcall] = ACTIONS(1561), - [anon_sym___stdcall] = ACTIONS(1561), - [anon_sym___fastcall] = ACTIONS(1561), - [anon_sym___thiscall] = ACTIONS(1561), - [anon_sym___vectorcall] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_LBRACK] = ACTIONS(1563), - [anon_sym_static] = ACTIONS(1561), - [anon_sym_auto] = ACTIONS(1561), - [anon_sym_register] = ACTIONS(1561), - [anon_sym_inline] = ACTIONS(1561), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1561), - [anon_sym_const] = ACTIONS(1561), - [anon_sym_volatile] = ACTIONS(1561), - [anon_sym_restrict] = ACTIONS(1561), - [anon_sym__Atomic] = ACTIONS(1561), - [anon_sym_in] = ACTIONS(1561), - [anon_sym_out] = ACTIONS(1561), - [anon_sym_inout] = ACTIONS(1561), - [anon_sym_bycopy] = ACTIONS(1561), - [anon_sym_byref] = ACTIONS(1561), - [anon_sym_oneway] = ACTIONS(1561), - [anon_sym__Nullable] = ACTIONS(1561), - [anon_sym__Nonnull] = ACTIONS(1561), - [anon_sym__Nullable_result] = ACTIONS(1561), - [anon_sym__Null_unspecified] = ACTIONS(1561), - [anon_sym___autoreleasing] = ACTIONS(1561), - [anon_sym___nullable] = ACTIONS(1561), - [anon_sym___nonnull] = ACTIONS(1561), - [anon_sym___strong] = ACTIONS(1561), - [anon_sym___weak] = ACTIONS(1561), - [anon_sym___bridge] = ACTIONS(1561), - [anon_sym___bridge_transfer] = ACTIONS(1561), - [anon_sym___bridge_retained] = ACTIONS(1561), - [anon_sym___unsafe_unretained] = ACTIONS(1561), - [anon_sym___block] = ACTIONS(1561), - [anon_sym___kindof] = ACTIONS(1561), - [anon_sym___unused] = ACTIONS(1561), - [anon_sym__Complex] = ACTIONS(1561), - [anon_sym___complex] = ACTIONS(1561), - [anon_sym_IBOutlet] = ACTIONS(1561), - [anon_sym_IBInspectable] = ACTIONS(1561), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1561), - [anon_sym_signed] = ACTIONS(1561), - [anon_sym_unsigned] = ACTIONS(1561), - [anon_sym_long] = ACTIONS(1561), - [anon_sym_short] = ACTIONS(1561), - [sym_primitive_type] = ACTIONS(1561), - [anon_sym_enum] = ACTIONS(1561), - [anon_sym_NS_ENUM] = ACTIONS(1561), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1561), - [anon_sym_NS_OPTIONS] = ACTIONS(1561), - [anon_sym_struct] = ACTIONS(1561), - [anon_sym_union] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1561), - [anon_sym_else] = ACTIONS(1561), - [anon_sym_switch] = ACTIONS(1561), - [anon_sym_case] = ACTIONS(1561), - [anon_sym_default] = ACTIONS(1561), - [anon_sym_while] = ACTIONS(1561), - [anon_sym_do] = ACTIONS(1561), - [anon_sym_for] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1561), - [anon_sym_break] = ACTIONS(1561), - [anon_sym_continue] = ACTIONS(1561), - [anon_sym_goto] = ACTIONS(1561), - [anon_sym_DASH_DASH] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1563), - [anon_sym_sizeof] = ACTIONS(1561), - [sym_number_literal] = ACTIONS(1563), - [anon_sym_L_SQUOTE] = ACTIONS(1563), - [anon_sym_u_SQUOTE] = ACTIONS(1563), - [anon_sym_U_SQUOTE] = ACTIONS(1563), - [anon_sym_u8_SQUOTE] = ACTIONS(1563), - [anon_sym_SQUOTE] = ACTIONS(1563), - [anon_sym_L_DQUOTE] = ACTIONS(1563), - [anon_sym_u_DQUOTE] = ACTIONS(1563), - [anon_sym_U_DQUOTE] = ACTIONS(1563), - [anon_sym_u8_DQUOTE] = ACTIONS(1563), - [anon_sym_DQUOTE] = ACTIONS(1563), - [sym_true] = ACTIONS(1561), - [sym_false] = ACTIONS(1561), - [sym_null] = ACTIONS(1561), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1563), - [anon_sym_ATimport] = ACTIONS(1563), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1561), - [anon_sym_ATcompatibility_alias] = ACTIONS(1563), - [anon_sym_ATprotocol] = ACTIONS(1563), - [anon_sym_ATclass] = ACTIONS(1563), - [anon_sym_ATinterface] = ACTIONS(1563), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1561), - [sym_method_attribute_specifier] = ACTIONS(1561), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1561), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1561), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1561), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1561), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1561), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1561), - [anon_sym_NS_AVAILABLE] = ACTIONS(1561), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1561), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1561), - [anon_sym_API_AVAILABLE] = ACTIONS(1561), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1561), - [anon_sym_API_DEPRECATED] = ACTIONS(1561), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1561), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1561), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1561), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1561), - [anon_sym___deprecated_msg] = ACTIONS(1561), - [anon_sym___deprecated_enum_msg] = ACTIONS(1561), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1561), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1561), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1561), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1561), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1561), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1561), - [anon_sym_ATimplementation] = ACTIONS(1563), - [anon_sym_typeof] = ACTIONS(1561), - [anon_sym___typeof] = ACTIONS(1561), - [anon_sym___typeof__] = ACTIONS(1561), - [sym_self] = ACTIONS(1561), - [sym_super] = ACTIONS(1561), - [sym_nil] = ACTIONS(1561), - [sym_id] = ACTIONS(1561), - [sym_instancetype] = ACTIONS(1561), - [sym_Class] = ACTIONS(1561), - [sym_SEL] = ACTIONS(1561), - [sym_IMP] = ACTIONS(1561), - [sym_BOOL] = ACTIONS(1561), - [sym_auto] = ACTIONS(1561), - [anon_sym_ATautoreleasepool] = ACTIONS(1563), - [anon_sym_ATsynchronized] = ACTIONS(1563), - [anon_sym_ATtry] = ACTIONS(1563), - [anon_sym_ATcatch] = ACTIONS(1563), - [anon_sym_ATfinally] = ACTIONS(1563), - [anon_sym_ATthrow] = ACTIONS(1563), - [anon_sym_ATselector] = ACTIONS(1563), - [anon_sym_ATencode] = ACTIONS(1563), - [anon_sym_AT] = ACTIONS(1561), - [sym_YES] = ACTIONS(1561), - [sym_NO] = ACTIONS(1561), - [anon_sym___builtin_available] = ACTIONS(1561), - [anon_sym_ATavailable] = ACTIONS(1563), - [anon_sym_va_arg] = ACTIONS(1561), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [413] = { - [sym_identifier] = ACTIONS(1557), - [aux_sym_preproc_include_token1] = ACTIONS(1559), - [aux_sym_preproc_def_token1] = ACTIONS(1559), - [aux_sym_preproc_if_token1] = ACTIONS(1557), - [aux_sym_preproc_if_token2] = ACTIONS(1557), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1557), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1557), - [anon_sym_LPAREN2] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_TILDE] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1557), - [anon_sym_PLUS] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_typedef] = ACTIONS(1557), - [anon_sym_extern] = ACTIONS(1557), - [anon_sym___attribute] = ACTIONS(1557), - [anon_sym___attribute__] = ACTIONS(1557), - [anon_sym___declspec] = ACTIONS(1557), - [anon_sym___cdecl] = ACTIONS(1557), - [anon_sym___clrcall] = ACTIONS(1557), - [anon_sym___stdcall] = ACTIONS(1557), - [anon_sym___fastcall] = ACTIONS(1557), - [anon_sym___thiscall] = ACTIONS(1557), - [anon_sym___vectorcall] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_auto] = ACTIONS(1557), - [anon_sym_register] = ACTIONS(1557), - [anon_sym_inline] = ACTIONS(1557), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1557), - [anon_sym_const] = ACTIONS(1557), - [anon_sym_volatile] = ACTIONS(1557), - [anon_sym_restrict] = ACTIONS(1557), - [anon_sym__Atomic] = ACTIONS(1557), - [anon_sym_in] = ACTIONS(1557), - [anon_sym_out] = ACTIONS(1557), - [anon_sym_inout] = ACTIONS(1557), - [anon_sym_bycopy] = ACTIONS(1557), - [anon_sym_byref] = ACTIONS(1557), - [anon_sym_oneway] = ACTIONS(1557), - [anon_sym__Nullable] = ACTIONS(1557), - [anon_sym__Nonnull] = ACTIONS(1557), - [anon_sym__Nullable_result] = ACTIONS(1557), - [anon_sym__Null_unspecified] = ACTIONS(1557), - [anon_sym___autoreleasing] = ACTIONS(1557), - [anon_sym___nullable] = ACTIONS(1557), - [anon_sym___nonnull] = ACTIONS(1557), - [anon_sym___strong] = ACTIONS(1557), - [anon_sym___weak] = ACTIONS(1557), - [anon_sym___bridge] = ACTIONS(1557), - [anon_sym___bridge_transfer] = ACTIONS(1557), - [anon_sym___bridge_retained] = ACTIONS(1557), - [anon_sym___unsafe_unretained] = ACTIONS(1557), - [anon_sym___block] = ACTIONS(1557), - [anon_sym___kindof] = ACTIONS(1557), - [anon_sym___unused] = ACTIONS(1557), - [anon_sym__Complex] = ACTIONS(1557), - [anon_sym___complex] = ACTIONS(1557), - [anon_sym_IBOutlet] = ACTIONS(1557), - [anon_sym_IBInspectable] = ACTIONS(1557), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1557), - [anon_sym_signed] = ACTIONS(1557), - [anon_sym_unsigned] = ACTIONS(1557), - [anon_sym_long] = ACTIONS(1557), - [anon_sym_short] = ACTIONS(1557), - [sym_primitive_type] = ACTIONS(1557), - [anon_sym_enum] = ACTIONS(1557), - [anon_sym_NS_ENUM] = ACTIONS(1557), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1557), - [anon_sym_NS_OPTIONS] = ACTIONS(1557), - [anon_sym_struct] = ACTIONS(1557), - [anon_sym_union] = ACTIONS(1557), - [anon_sym_if] = ACTIONS(1557), - [anon_sym_else] = ACTIONS(1557), - [anon_sym_switch] = ACTIONS(1557), - [anon_sym_case] = ACTIONS(1557), - [anon_sym_default] = ACTIONS(1557), - [anon_sym_while] = ACTIONS(1557), - [anon_sym_do] = ACTIONS(1557), - [anon_sym_for] = ACTIONS(1557), - [anon_sym_return] = ACTIONS(1557), - [anon_sym_break] = ACTIONS(1557), - [anon_sym_continue] = ACTIONS(1557), - [anon_sym_goto] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_sizeof] = ACTIONS(1557), - [sym_number_literal] = ACTIONS(1559), - [anon_sym_L_SQUOTE] = ACTIONS(1559), - [anon_sym_u_SQUOTE] = ACTIONS(1559), - [anon_sym_U_SQUOTE] = ACTIONS(1559), - [anon_sym_u8_SQUOTE] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1559), - [anon_sym_L_DQUOTE] = ACTIONS(1559), - [anon_sym_u_DQUOTE] = ACTIONS(1559), - [anon_sym_U_DQUOTE] = ACTIONS(1559), - [anon_sym_u8_DQUOTE] = ACTIONS(1559), - [anon_sym_DQUOTE] = ACTIONS(1559), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1559), - [anon_sym_ATimport] = ACTIONS(1559), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1557), - [anon_sym_ATcompatibility_alias] = ACTIONS(1559), - [anon_sym_ATprotocol] = ACTIONS(1559), - [anon_sym_ATclass] = ACTIONS(1559), - [anon_sym_ATinterface] = ACTIONS(1559), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1557), - [sym_method_attribute_specifier] = ACTIONS(1557), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1557), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1557), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1557), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1557), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1557), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1557), - [anon_sym_NS_AVAILABLE] = ACTIONS(1557), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1557), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1557), - [anon_sym_API_AVAILABLE] = ACTIONS(1557), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1557), - [anon_sym_API_DEPRECATED] = ACTIONS(1557), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1557), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1557), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1557), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1557), - [anon_sym___deprecated_msg] = ACTIONS(1557), - [anon_sym___deprecated_enum_msg] = ACTIONS(1557), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1557), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1557), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1557), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1557), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1557), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1557), - [anon_sym_ATimplementation] = ACTIONS(1559), - [anon_sym_typeof] = ACTIONS(1557), - [anon_sym___typeof] = ACTIONS(1557), - [anon_sym___typeof__] = ACTIONS(1557), - [sym_self] = ACTIONS(1557), - [sym_super] = ACTIONS(1557), - [sym_nil] = ACTIONS(1557), - [sym_id] = ACTIONS(1557), - [sym_instancetype] = ACTIONS(1557), - [sym_Class] = ACTIONS(1557), - [sym_SEL] = ACTIONS(1557), - [sym_IMP] = ACTIONS(1557), - [sym_BOOL] = ACTIONS(1557), - [sym_auto] = ACTIONS(1557), - [anon_sym_ATautoreleasepool] = ACTIONS(1559), - [anon_sym_ATsynchronized] = ACTIONS(1559), - [anon_sym_ATtry] = ACTIONS(1559), - [anon_sym_ATcatch] = ACTIONS(1559), - [anon_sym_ATfinally] = ACTIONS(1559), - [anon_sym_ATthrow] = ACTIONS(1559), - [anon_sym_ATselector] = ACTIONS(1559), - [anon_sym_ATencode] = ACTIONS(1559), - [anon_sym_AT] = ACTIONS(1557), - [sym_YES] = ACTIONS(1557), - [sym_NO] = ACTIONS(1557), - [anon_sym___builtin_available] = ACTIONS(1557), - [anon_sym_ATavailable] = ACTIONS(1559), - [anon_sym_va_arg] = ACTIONS(1557), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [414] = { - [sym_identifier] = ACTIONS(1549), - [aux_sym_preproc_include_token1] = ACTIONS(1551), - [aux_sym_preproc_def_token1] = ACTIONS(1551), - [aux_sym_preproc_if_token1] = ACTIONS(1549), - [aux_sym_preproc_if_token2] = ACTIONS(1549), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1549), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1549), - [anon_sym_LPAREN2] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_TILDE] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1549), - [anon_sym_PLUS] = ACTIONS(1549), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_typedef] = ACTIONS(1549), - [anon_sym_extern] = ACTIONS(1549), - [anon_sym___attribute] = ACTIONS(1549), - [anon_sym___attribute__] = ACTIONS(1549), - [anon_sym___declspec] = ACTIONS(1549), - [anon_sym___cdecl] = ACTIONS(1549), - [anon_sym___clrcall] = ACTIONS(1549), - [anon_sym___stdcall] = ACTIONS(1549), - [anon_sym___fastcall] = ACTIONS(1549), - [anon_sym___thiscall] = ACTIONS(1549), - [anon_sym___vectorcall] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1549), - [anon_sym_auto] = ACTIONS(1549), - [anon_sym_register] = ACTIONS(1549), - [anon_sym_inline] = ACTIONS(1549), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_volatile] = ACTIONS(1549), - [anon_sym_restrict] = ACTIONS(1549), - [anon_sym__Atomic] = ACTIONS(1549), - [anon_sym_in] = ACTIONS(1549), - [anon_sym_out] = ACTIONS(1549), - [anon_sym_inout] = ACTIONS(1549), - [anon_sym_bycopy] = ACTIONS(1549), - [anon_sym_byref] = ACTIONS(1549), - [anon_sym_oneway] = ACTIONS(1549), - [anon_sym__Nullable] = ACTIONS(1549), - [anon_sym__Nonnull] = ACTIONS(1549), - [anon_sym__Nullable_result] = ACTIONS(1549), - [anon_sym__Null_unspecified] = ACTIONS(1549), - [anon_sym___autoreleasing] = ACTIONS(1549), - [anon_sym___nullable] = ACTIONS(1549), - [anon_sym___nonnull] = ACTIONS(1549), - [anon_sym___strong] = ACTIONS(1549), - [anon_sym___weak] = ACTIONS(1549), - [anon_sym___bridge] = ACTIONS(1549), - [anon_sym___bridge_transfer] = ACTIONS(1549), - [anon_sym___bridge_retained] = ACTIONS(1549), - [anon_sym___unsafe_unretained] = ACTIONS(1549), - [anon_sym___block] = ACTIONS(1549), - [anon_sym___kindof] = ACTIONS(1549), - [anon_sym___unused] = ACTIONS(1549), - [anon_sym__Complex] = ACTIONS(1549), - [anon_sym___complex] = ACTIONS(1549), - [anon_sym_IBOutlet] = ACTIONS(1549), - [anon_sym_IBInspectable] = ACTIONS(1549), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1549), - [anon_sym_signed] = ACTIONS(1549), - [anon_sym_unsigned] = ACTIONS(1549), - [anon_sym_long] = ACTIONS(1549), - [anon_sym_short] = ACTIONS(1549), - [sym_primitive_type] = ACTIONS(1549), - [anon_sym_enum] = ACTIONS(1549), - [anon_sym_NS_ENUM] = ACTIONS(1549), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1549), - [anon_sym_NS_OPTIONS] = ACTIONS(1549), - [anon_sym_struct] = ACTIONS(1549), - [anon_sym_union] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1549), - [anon_sym_else] = ACTIONS(1549), - [anon_sym_switch] = ACTIONS(1549), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1549), - [anon_sym_while] = ACTIONS(1549), - [anon_sym_do] = ACTIONS(1549), - [anon_sym_for] = ACTIONS(1549), - [anon_sym_return] = ACTIONS(1549), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1549), - [anon_sym_goto] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1551), - [anon_sym_PLUS_PLUS] = ACTIONS(1551), - [anon_sym_sizeof] = ACTIONS(1549), - [sym_number_literal] = ACTIONS(1551), - [anon_sym_L_SQUOTE] = ACTIONS(1551), - [anon_sym_u_SQUOTE] = ACTIONS(1551), - [anon_sym_U_SQUOTE] = ACTIONS(1551), - [anon_sym_u8_SQUOTE] = ACTIONS(1551), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1549), - [sym_false] = ACTIONS(1549), - [sym_null] = ACTIONS(1549), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1551), - [anon_sym_ATimport] = ACTIONS(1551), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1549), - [anon_sym_ATcompatibility_alias] = ACTIONS(1551), - [anon_sym_ATprotocol] = ACTIONS(1551), - [anon_sym_ATclass] = ACTIONS(1551), - [anon_sym_ATinterface] = ACTIONS(1551), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1549), - [sym_method_attribute_specifier] = ACTIONS(1549), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1549), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1549), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1549), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1549), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1549), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1549), - [anon_sym_NS_AVAILABLE] = ACTIONS(1549), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1549), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1549), - [anon_sym_API_AVAILABLE] = ACTIONS(1549), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1549), - [anon_sym_API_DEPRECATED] = ACTIONS(1549), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1549), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1549), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1549), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1549), - [anon_sym___deprecated_msg] = ACTIONS(1549), - [anon_sym___deprecated_enum_msg] = ACTIONS(1549), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1549), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1549), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1549), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1549), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1549), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1549), - [anon_sym_ATimplementation] = ACTIONS(1551), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym___typeof] = ACTIONS(1549), - [anon_sym___typeof__] = ACTIONS(1549), - [sym_self] = ACTIONS(1549), - [sym_super] = ACTIONS(1549), - [sym_nil] = ACTIONS(1549), - [sym_id] = ACTIONS(1549), - [sym_instancetype] = ACTIONS(1549), - [sym_Class] = ACTIONS(1549), - [sym_SEL] = ACTIONS(1549), - [sym_IMP] = ACTIONS(1549), - [sym_BOOL] = ACTIONS(1549), - [sym_auto] = ACTIONS(1549), - [anon_sym_ATautoreleasepool] = ACTIONS(1551), - [anon_sym_ATsynchronized] = ACTIONS(1551), - [anon_sym_ATtry] = ACTIONS(1551), - [anon_sym_ATcatch] = ACTIONS(1551), - [anon_sym_ATfinally] = ACTIONS(1551), - [anon_sym_ATthrow] = ACTIONS(1551), - [anon_sym_ATselector] = ACTIONS(1551), - [anon_sym_ATencode] = ACTIONS(1551), - [anon_sym_AT] = ACTIONS(1549), - [sym_YES] = ACTIONS(1549), - [sym_NO] = ACTIONS(1549), - [anon_sym___builtin_available] = ACTIONS(1549), - [anon_sym_ATavailable] = ACTIONS(1551), - [anon_sym_va_arg] = ACTIONS(1549), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [415] = { - [sym_identifier] = ACTIONS(1541), - [aux_sym_preproc_include_token1] = ACTIONS(1543), - [aux_sym_preproc_def_token1] = ACTIONS(1543), - [aux_sym_preproc_if_token1] = ACTIONS(1541), - [aux_sym_preproc_if_token2] = ACTIONS(1541), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1541), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1541), - [anon_sym_LPAREN2] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1543), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_typedef] = ACTIONS(1541), - [anon_sym_extern] = ACTIONS(1541), - [anon_sym___attribute] = ACTIONS(1541), - [anon_sym___attribute__] = ACTIONS(1541), - [anon_sym___declspec] = ACTIONS(1541), - [anon_sym___cdecl] = ACTIONS(1541), - [anon_sym___clrcall] = ACTIONS(1541), - [anon_sym___stdcall] = ACTIONS(1541), - [anon_sym___fastcall] = ACTIONS(1541), - [anon_sym___thiscall] = ACTIONS(1541), - [anon_sym___vectorcall] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_static] = ACTIONS(1541), - [anon_sym_auto] = ACTIONS(1541), - [anon_sym_register] = ACTIONS(1541), - [anon_sym_inline] = ACTIONS(1541), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1541), - [anon_sym_volatile] = ACTIONS(1541), - [anon_sym_restrict] = ACTIONS(1541), - [anon_sym__Atomic] = ACTIONS(1541), - [anon_sym_in] = ACTIONS(1541), - [anon_sym_out] = ACTIONS(1541), - [anon_sym_inout] = ACTIONS(1541), - [anon_sym_bycopy] = ACTIONS(1541), - [anon_sym_byref] = ACTIONS(1541), - [anon_sym_oneway] = ACTIONS(1541), - [anon_sym__Nullable] = ACTIONS(1541), - [anon_sym__Nonnull] = ACTIONS(1541), - [anon_sym__Nullable_result] = ACTIONS(1541), - [anon_sym__Null_unspecified] = ACTIONS(1541), - [anon_sym___autoreleasing] = ACTIONS(1541), - [anon_sym___nullable] = ACTIONS(1541), - [anon_sym___nonnull] = ACTIONS(1541), - [anon_sym___strong] = ACTIONS(1541), - [anon_sym___weak] = ACTIONS(1541), - [anon_sym___bridge] = ACTIONS(1541), - [anon_sym___bridge_transfer] = ACTIONS(1541), - [anon_sym___bridge_retained] = ACTIONS(1541), - [anon_sym___unsafe_unretained] = ACTIONS(1541), - [anon_sym___block] = ACTIONS(1541), - [anon_sym___kindof] = ACTIONS(1541), - [anon_sym___unused] = ACTIONS(1541), - [anon_sym__Complex] = ACTIONS(1541), - [anon_sym___complex] = ACTIONS(1541), - [anon_sym_IBOutlet] = ACTIONS(1541), - [anon_sym_IBInspectable] = ACTIONS(1541), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1541), - [anon_sym_signed] = ACTIONS(1541), - [anon_sym_unsigned] = ACTIONS(1541), - [anon_sym_long] = ACTIONS(1541), - [anon_sym_short] = ACTIONS(1541), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_enum] = ACTIONS(1541), - [anon_sym_NS_ENUM] = ACTIONS(1541), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1541), - [anon_sym_NS_OPTIONS] = ACTIONS(1541), - [anon_sym_struct] = ACTIONS(1541), - [anon_sym_union] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1541), - [anon_sym_else] = ACTIONS(1541), - [anon_sym_switch] = ACTIONS(1541), - [anon_sym_case] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(1541), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1541), - [anon_sym_for] = ACTIONS(1541), - [anon_sym_return] = ACTIONS(1541), - [anon_sym_break] = ACTIONS(1541), - [anon_sym_continue] = ACTIONS(1541), - [anon_sym_goto] = ACTIONS(1541), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1541), - [sym_number_literal] = ACTIONS(1543), - [anon_sym_L_SQUOTE] = ACTIONS(1543), - [anon_sym_u_SQUOTE] = ACTIONS(1543), - [anon_sym_U_SQUOTE] = ACTIONS(1543), - [anon_sym_u8_SQUOTE] = ACTIONS(1543), - [anon_sym_SQUOTE] = ACTIONS(1543), - [anon_sym_L_DQUOTE] = ACTIONS(1543), - [anon_sym_u_DQUOTE] = ACTIONS(1543), - [anon_sym_U_DQUOTE] = ACTIONS(1543), - [anon_sym_u8_DQUOTE] = ACTIONS(1543), - [anon_sym_DQUOTE] = ACTIONS(1543), - [sym_true] = ACTIONS(1541), - [sym_false] = ACTIONS(1541), - [sym_null] = ACTIONS(1541), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1543), - [anon_sym_ATimport] = ACTIONS(1543), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1541), - [anon_sym_ATcompatibility_alias] = ACTIONS(1543), - [anon_sym_ATprotocol] = ACTIONS(1543), - [anon_sym_ATclass] = ACTIONS(1543), - [anon_sym_ATinterface] = ACTIONS(1543), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1541), - [sym_method_attribute_specifier] = ACTIONS(1541), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1541), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1541), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1541), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1541), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1541), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1541), - [anon_sym_NS_AVAILABLE] = ACTIONS(1541), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1541), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1541), - [anon_sym_API_AVAILABLE] = ACTIONS(1541), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1541), - [anon_sym_API_DEPRECATED] = ACTIONS(1541), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1541), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1541), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1541), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1541), - [anon_sym___deprecated_msg] = ACTIONS(1541), - [anon_sym___deprecated_enum_msg] = ACTIONS(1541), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1541), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1541), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1541), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1541), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1541), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1541), - [anon_sym_ATimplementation] = ACTIONS(1543), - [anon_sym_typeof] = ACTIONS(1541), - [anon_sym___typeof] = ACTIONS(1541), - [anon_sym___typeof__] = ACTIONS(1541), - [sym_self] = ACTIONS(1541), - [sym_super] = ACTIONS(1541), - [sym_nil] = ACTIONS(1541), - [sym_id] = ACTIONS(1541), - [sym_instancetype] = ACTIONS(1541), - [sym_Class] = ACTIONS(1541), - [sym_SEL] = ACTIONS(1541), - [sym_IMP] = ACTIONS(1541), - [sym_BOOL] = ACTIONS(1541), - [sym_auto] = ACTIONS(1541), - [anon_sym_ATautoreleasepool] = ACTIONS(1543), - [anon_sym_ATsynchronized] = ACTIONS(1543), - [anon_sym_ATtry] = ACTIONS(1543), - [anon_sym_ATcatch] = ACTIONS(1543), - [anon_sym_ATfinally] = ACTIONS(1543), - [anon_sym_ATthrow] = ACTIONS(1543), - [anon_sym_ATselector] = ACTIONS(1543), - [anon_sym_ATencode] = ACTIONS(1543), - [anon_sym_AT] = ACTIONS(1541), - [sym_YES] = ACTIONS(1541), - [sym_NO] = ACTIONS(1541), - [anon_sym___builtin_available] = ACTIONS(1541), - [anon_sym_ATavailable] = ACTIONS(1543), - [anon_sym_va_arg] = ACTIONS(1541), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [416] = { - [sym_identifier] = ACTIONS(1533), - [aux_sym_preproc_include_token1] = ACTIONS(1535), - [aux_sym_preproc_def_token1] = ACTIONS(1535), - [aux_sym_preproc_if_token1] = ACTIONS(1533), - [aux_sym_preproc_if_token2] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), - [anon_sym_LPAREN2] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_auto] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_in] = ACTIONS(1533), - [anon_sym_out] = ACTIONS(1533), - [anon_sym_inout] = ACTIONS(1533), - [anon_sym_bycopy] = ACTIONS(1533), - [anon_sym_byref] = ACTIONS(1533), - [anon_sym_oneway] = ACTIONS(1533), - [anon_sym__Nullable] = ACTIONS(1533), - [anon_sym__Nonnull] = ACTIONS(1533), - [anon_sym__Nullable_result] = ACTIONS(1533), - [anon_sym__Null_unspecified] = ACTIONS(1533), - [anon_sym___autoreleasing] = ACTIONS(1533), - [anon_sym___nullable] = ACTIONS(1533), - [anon_sym___nonnull] = ACTIONS(1533), - [anon_sym___strong] = ACTIONS(1533), - [anon_sym___weak] = ACTIONS(1533), - [anon_sym___bridge] = ACTIONS(1533), - [anon_sym___bridge_transfer] = ACTIONS(1533), - [anon_sym___bridge_retained] = ACTIONS(1533), - [anon_sym___unsafe_unretained] = ACTIONS(1533), - [anon_sym___block] = ACTIONS(1533), - [anon_sym___kindof] = ACTIONS(1533), - [anon_sym___unused] = ACTIONS(1533), - [anon_sym__Complex] = ACTIONS(1533), - [anon_sym___complex] = ACTIONS(1533), - [anon_sym_IBOutlet] = ACTIONS(1533), - [anon_sym_IBInspectable] = ACTIONS(1533), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_NS_ENUM] = ACTIONS(1533), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1533), - [anon_sym_NS_OPTIONS] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_goto] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_sizeof] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1535), - [anon_sym_L_SQUOTE] = ACTIONS(1535), - [anon_sym_u_SQUOTE] = ACTIONS(1535), - [anon_sym_U_SQUOTE] = ACTIONS(1535), - [anon_sym_u8_SQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [anon_sym_L_DQUOTE] = ACTIONS(1535), - [anon_sym_u_DQUOTE] = ACTIONS(1535), - [anon_sym_U_DQUOTE] = ACTIONS(1535), - [anon_sym_u8_DQUOTE] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1535), - [anon_sym_ATimport] = ACTIONS(1535), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1533), - [anon_sym_ATcompatibility_alias] = ACTIONS(1535), - [anon_sym_ATprotocol] = ACTIONS(1535), - [anon_sym_ATclass] = ACTIONS(1535), - [anon_sym_ATinterface] = ACTIONS(1535), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1533), - [sym_method_attribute_specifier] = ACTIONS(1533), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1533), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1533), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1533), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1533), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_NS_AVAILABLE] = ACTIONS(1533), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1533), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1533), - [anon_sym_API_AVAILABLE] = ACTIONS(1533), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1533), - [anon_sym_API_DEPRECATED] = ACTIONS(1533), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1533), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1533), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1533), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1533), - [anon_sym___deprecated_msg] = ACTIONS(1533), - [anon_sym___deprecated_enum_msg] = ACTIONS(1533), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1533), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1533), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1533), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1533), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1533), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1533), - [anon_sym_ATimplementation] = ACTIONS(1535), - [anon_sym_typeof] = ACTIONS(1533), - [anon_sym___typeof] = ACTIONS(1533), - [anon_sym___typeof__] = ACTIONS(1533), - [sym_self] = ACTIONS(1533), - [sym_super] = ACTIONS(1533), - [sym_nil] = ACTIONS(1533), - [sym_id] = ACTIONS(1533), - [sym_instancetype] = ACTIONS(1533), - [sym_Class] = ACTIONS(1533), - [sym_SEL] = ACTIONS(1533), - [sym_IMP] = ACTIONS(1533), - [sym_BOOL] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), - [anon_sym_ATautoreleasepool] = ACTIONS(1535), - [anon_sym_ATsynchronized] = ACTIONS(1535), - [anon_sym_ATtry] = ACTIONS(1535), - [anon_sym_ATcatch] = ACTIONS(1535), - [anon_sym_ATfinally] = ACTIONS(1535), - [anon_sym_ATthrow] = ACTIONS(1535), - [anon_sym_ATselector] = ACTIONS(1535), - [anon_sym_ATencode] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(1533), - [sym_YES] = ACTIONS(1533), - [sym_NO] = ACTIONS(1533), - [anon_sym___builtin_available] = ACTIONS(1533), - [anon_sym_ATavailable] = ACTIONS(1535), - [anon_sym_va_arg] = ACTIONS(1533), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [417] = { - [sym_identifier] = ACTIONS(1293), - [aux_sym_preproc_include_token1] = ACTIONS(1295), - [aux_sym_preproc_def_token1] = ACTIONS(1295), [aux_sym_preproc_if_token1] = ACTIONS(1293), [aux_sym_preproc_if_token2] = ACTIONS(1293), [aux_sym_preproc_ifdef_token1] = ACTIONS(1293), [aux_sym_preproc_ifdef_token2] = ACTIONS(1293), - [anon_sym_LPAREN2] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_TILDE] = ACTIONS(1295), + [anon_sym_LPAREN2] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_TILDE] = ACTIONS(1291), [anon_sym_DASH] = ACTIONS(1293), [anon_sym_PLUS] = ACTIONS(1293), - [anon_sym_STAR] = ACTIONS(1295), - [anon_sym_CARET] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(1295), - [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_CARET] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_SEMI] = ACTIONS(1291), [anon_sym_typedef] = ACTIONS(1293), [anon_sym_extern] = ACTIONS(1293), [anon_sym___attribute] = ACTIONS(1293), @@ -99161,8 +86355,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1293), [anon_sym___thiscall] = ACTIONS(1293), [anon_sym___vectorcall] = ACTIONS(1293), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_LBRACK] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1291), [anon_sym_static] = ACTIONS(1293), [anon_sym_auto] = ACTIONS(1293), [anon_sym_register] = ACTIONS(1293), @@ -99205,9 +86399,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1293), [sym_primitive_type] = ACTIONS(1293), [anon_sym_enum] = ACTIONS(1293), - [anon_sym_NS_ENUM] = ACTIONS(1293), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1293), - [anon_sym_NS_OPTIONS] = ACTIONS(1293), [anon_sym_struct] = ACTIONS(1293), [anon_sym_union] = ACTIONS(1293), [anon_sym_if] = ACTIONS(1293), @@ -99222,31 +86413,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1293), [anon_sym_continue] = ACTIONS(1293), [anon_sym_goto] = ACTIONS(1293), - [anon_sym_DASH_DASH] = ACTIONS(1295), - [anon_sym_PLUS_PLUS] = ACTIONS(1295), + [anon_sym_DASH_DASH] = ACTIONS(1291), + [anon_sym_PLUS_PLUS] = ACTIONS(1291), [anon_sym_sizeof] = ACTIONS(1293), - [sym_number_literal] = ACTIONS(1295), - [anon_sym_L_SQUOTE] = ACTIONS(1295), - [anon_sym_u_SQUOTE] = ACTIONS(1295), - [anon_sym_U_SQUOTE] = ACTIONS(1295), - [anon_sym_u8_SQUOTE] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1295), - [anon_sym_L_DQUOTE] = ACTIONS(1295), - [anon_sym_u_DQUOTE] = ACTIONS(1295), - [anon_sym_U_DQUOTE] = ACTIONS(1295), - [anon_sym_u8_DQUOTE] = ACTIONS(1295), - [anon_sym_DQUOTE] = ACTIONS(1295), + [sym_number_literal] = ACTIONS(1291), + [anon_sym_L_SQUOTE] = ACTIONS(1291), + [anon_sym_u_SQUOTE] = ACTIONS(1291), + [anon_sym_U_SQUOTE] = ACTIONS(1291), + [anon_sym_u8_SQUOTE] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_L_DQUOTE] = ACTIONS(1291), + [anon_sym_u_DQUOTE] = ACTIONS(1291), + [anon_sym_U_DQUOTE] = ACTIONS(1291), + [anon_sym_u8_DQUOTE] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1291), [sym_true] = ACTIONS(1293), [sym_false] = ACTIONS(1293), [sym_null] = ACTIONS(1293), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1295), - [anon_sym_ATimport] = ACTIONS(1295), + [anon_sym_POUNDimport] = ACTIONS(1291), + [anon_sym_ATimport] = ACTIONS(1291), [sym__ns_assume_nonnull_declaration] = ACTIONS(1293), - [anon_sym_ATcompatibility_alias] = ACTIONS(1295), - [anon_sym_ATprotocol] = ACTIONS(1295), - [anon_sym_ATclass] = ACTIONS(1295), - [anon_sym_ATinterface] = ACTIONS(1295), + [anon_sym_ATcompatibility_alias] = ACTIONS(1291), + [anon_sym_ATprotocol] = ACTIONS(1291), + [anon_sym_ATclass] = ACTIONS(1291), + [anon_sym_ATinterface] = ACTIONS(1291), [sym_class_interface_attribute_sepcifier] = ACTIONS(1293), [sym_method_attribute_specifier] = ACTIONS(1293), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1293), @@ -99273,7 +86464,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1293), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1293), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1293), - [anon_sym_ATimplementation] = ACTIONS(1295), + [anon_sym_ATimplementation] = ACTIONS(1291), + [anon_sym_NS_ENUM] = ACTIONS(1293), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1293), + [anon_sym_NS_OPTIONS] = ACTIONS(1293), [anon_sym_typeof] = ACTIONS(1293), [anon_sym___typeof] = ACTIONS(1293), [anon_sym___typeof__] = ACTIONS(1293), @@ -99287,19 +86481,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1293), [sym_BOOL] = ACTIONS(1293), [sym_auto] = ACTIONS(1293), - [anon_sym_ATautoreleasepool] = ACTIONS(1295), - [anon_sym_ATsynchronized] = ACTIONS(1295), - [anon_sym_ATtry] = ACTIONS(1295), - [anon_sym_ATcatch] = ACTIONS(1295), - [anon_sym_ATfinally] = ACTIONS(1295), - [anon_sym_ATthrow] = ACTIONS(1295), - [anon_sym_ATselector] = ACTIONS(1295), - [anon_sym_ATencode] = ACTIONS(1295), + [anon_sym_ATautoreleasepool] = ACTIONS(1291), + [anon_sym_ATsynchronized] = ACTIONS(1291), + [anon_sym_ATtry] = ACTIONS(1291), + [anon_sym_ATcatch] = ACTIONS(1291), + [anon_sym_ATfinally] = ACTIONS(1291), + [anon_sym_ATthrow] = ACTIONS(1291), + [anon_sym_ATselector] = ACTIONS(1291), + [anon_sym_ATencode] = ACTIONS(1291), [anon_sym_AT] = ACTIONS(1293), [sym_YES] = ACTIONS(1293), [sym_NO] = ACTIONS(1293), [anon_sym___builtin_available] = ACTIONS(1293), - [anon_sym_ATavailable] = ACTIONS(1295), + [anon_sym_ATavailable] = ACTIONS(1291), [anon_sym_va_arg] = ACTIONS(1293), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), @@ -99308,174 +86502,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [418] = { - [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_include_token1] = ACTIONS(1531), - [aux_sym_preproc_def_token1] = ACTIONS(1531), - [aux_sym_preproc_if_token1] = ACTIONS(1529), - [aux_sym_preproc_if_token2] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), - [anon_sym_LPAREN2] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_CARET] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_typedef] = ACTIONS(1529), - [anon_sym_extern] = ACTIONS(1529), - [anon_sym___attribute] = ACTIONS(1529), - [anon_sym___attribute__] = ACTIONS(1529), - [anon_sym___declspec] = ACTIONS(1529), - [anon_sym___cdecl] = ACTIONS(1529), - [anon_sym___clrcall] = ACTIONS(1529), - [anon_sym___stdcall] = ACTIONS(1529), - [anon_sym___fastcall] = ACTIONS(1529), - [anon_sym___thiscall] = ACTIONS(1529), - [anon_sym___vectorcall] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_auto] = ACTIONS(1529), - [anon_sym_register] = ACTIONS(1529), - [anon_sym_inline] = ACTIONS(1529), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_volatile] = ACTIONS(1529), - [anon_sym_restrict] = ACTIONS(1529), - [anon_sym__Atomic] = ACTIONS(1529), - [anon_sym_in] = ACTIONS(1529), - [anon_sym_out] = ACTIONS(1529), - [anon_sym_inout] = ACTIONS(1529), - [anon_sym_bycopy] = ACTIONS(1529), - [anon_sym_byref] = ACTIONS(1529), - [anon_sym_oneway] = ACTIONS(1529), - [anon_sym__Nullable] = ACTIONS(1529), - [anon_sym__Nonnull] = ACTIONS(1529), - [anon_sym__Nullable_result] = ACTIONS(1529), - [anon_sym__Null_unspecified] = ACTIONS(1529), - [anon_sym___autoreleasing] = ACTIONS(1529), - [anon_sym___nullable] = ACTIONS(1529), - [anon_sym___nonnull] = ACTIONS(1529), - [anon_sym___strong] = ACTIONS(1529), - [anon_sym___weak] = ACTIONS(1529), - [anon_sym___bridge] = ACTIONS(1529), - [anon_sym___bridge_transfer] = ACTIONS(1529), - [anon_sym___bridge_retained] = ACTIONS(1529), - [anon_sym___unsafe_unretained] = ACTIONS(1529), - [anon_sym___block] = ACTIONS(1529), - [anon_sym___kindof] = ACTIONS(1529), - [anon_sym___unused] = ACTIONS(1529), - [anon_sym__Complex] = ACTIONS(1529), - [anon_sym___complex] = ACTIONS(1529), - [anon_sym_IBOutlet] = ACTIONS(1529), - [anon_sym_IBInspectable] = ACTIONS(1529), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1529), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_NS_ENUM] = ACTIONS(1529), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1529), - [anon_sym_NS_OPTIONS] = ACTIONS(1529), - [anon_sym_struct] = ACTIONS(1529), - [anon_sym_union] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_else] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_case] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_goto] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_sizeof] = ACTIONS(1529), - [sym_number_literal] = ACTIONS(1531), - [anon_sym_L_SQUOTE] = ACTIONS(1531), - [anon_sym_u_SQUOTE] = ACTIONS(1531), - [anon_sym_U_SQUOTE] = ACTIONS(1531), - [anon_sym_u8_SQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_L_DQUOTE] = ACTIONS(1531), - [anon_sym_u_DQUOTE] = ACTIONS(1531), - [anon_sym_U_DQUOTE] = ACTIONS(1531), - [anon_sym_u8_DQUOTE] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [sym_true] = ACTIONS(1529), - [sym_false] = ACTIONS(1529), - [sym_null] = ACTIONS(1529), + [345] = { + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token2] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym_in] = ACTIONS(1195), + [anon_sym_out] = ACTIONS(1195), + [anon_sym_inout] = ACTIONS(1195), + [anon_sym_bycopy] = ACTIONS(1195), + [anon_sym_byref] = ACTIONS(1195), + [anon_sym_oneway] = ACTIONS(1195), + [anon_sym__Nullable] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym__Nullable_result] = ACTIONS(1195), + [anon_sym__Null_unspecified] = ACTIONS(1195), + [anon_sym___autoreleasing] = ACTIONS(1195), + [anon_sym___nullable] = ACTIONS(1195), + [anon_sym___nonnull] = ACTIONS(1195), + [anon_sym___strong] = ACTIONS(1195), + [anon_sym___weak] = ACTIONS(1195), + [anon_sym___bridge] = ACTIONS(1195), + [anon_sym___bridge_transfer] = ACTIONS(1195), + [anon_sym___bridge_retained] = ACTIONS(1195), + [anon_sym___unsafe_unretained] = ACTIONS(1195), + [anon_sym___block] = ACTIONS(1195), + [anon_sym___kindof] = ACTIONS(1195), + [anon_sym___unused] = ACTIONS(1195), + [anon_sym__Complex] = ACTIONS(1195), + [anon_sym___complex] = ACTIONS(1195), + [anon_sym_IBOutlet] = ACTIONS(1195), + [anon_sym_IBInspectable] = ACTIONS(1195), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [sym_null] = ACTIONS(1195), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1531), - [anon_sym_ATimport] = ACTIONS(1531), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1529), - [anon_sym_ATcompatibility_alias] = ACTIONS(1531), - [anon_sym_ATprotocol] = ACTIONS(1531), - [anon_sym_ATclass] = ACTIONS(1531), - [anon_sym_ATinterface] = ACTIONS(1531), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1529), - [sym_method_attribute_specifier] = ACTIONS(1529), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1529), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1529), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1529), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1529), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1529), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1529), - [anon_sym_NS_AVAILABLE] = ACTIONS(1529), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1529), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1529), - [anon_sym_API_AVAILABLE] = ACTIONS(1529), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1529), - [anon_sym_API_DEPRECATED] = ACTIONS(1529), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1529), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1529), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1529), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1529), - [anon_sym___deprecated_msg] = ACTIONS(1529), - [anon_sym___deprecated_enum_msg] = ACTIONS(1529), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1529), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1529), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1529), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1529), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1529), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1529), - [anon_sym_ATimplementation] = ACTIONS(1531), - [anon_sym_typeof] = ACTIONS(1529), - [anon_sym___typeof] = ACTIONS(1529), - [anon_sym___typeof__] = ACTIONS(1529), - [sym_self] = ACTIONS(1529), - [sym_super] = ACTIONS(1529), - [sym_nil] = ACTIONS(1529), - [sym_id] = ACTIONS(1529), - [sym_instancetype] = ACTIONS(1529), - [sym_Class] = ACTIONS(1529), - [sym_SEL] = ACTIONS(1529), - [sym_IMP] = ACTIONS(1529), - [sym_BOOL] = ACTIONS(1529), - [sym_auto] = ACTIONS(1529), - [anon_sym_ATautoreleasepool] = ACTIONS(1531), - [anon_sym_ATsynchronized] = ACTIONS(1531), - [anon_sym_ATtry] = ACTIONS(1531), - [anon_sym_ATcatch] = ACTIONS(1531), - [anon_sym_ATfinally] = ACTIONS(1531), - [anon_sym_ATthrow] = ACTIONS(1531), - [anon_sym_ATselector] = ACTIONS(1531), - [anon_sym_ATencode] = ACTIONS(1531), - [anon_sym_AT] = ACTIONS(1529), - [sym_YES] = ACTIONS(1529), - [sym_NO] = ACTIONS(1529), - [anon_sym___builtin_available] = ACTIONS(1529), - [anon_sym_ATavailable] = ACTIONS(1531), - [anon_sym_va_arg] = ACTIONS(1529), + [anon_sym_POUNDimport] = ACTIONS(1197), + [anon_sym_ATimport] = ACTIONS(1197), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1195), + [anon_sym_ATcompatibility_alias] = ACTIONS(1197), + [anon_sym_ATprotocol] = ACTIONS(1197), + [anon_sym_ATclass] = ACTIONS(1197), + [anon_sym_ATinterface] = ACTIONS(1197), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1195), + [sym_method_attribute_specifier] = ACTIONS(1195), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1195), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE] = ACTIONS(1195), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_API_AVAILABLE] = ACTIONS(1195), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_API_DEPRECATED] = ACTIONS(1195), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1195), + [anon_sym___deprecated_msg] = ACTIONS(1195), + [anon_sym___deprecated_enum_msg] = ACTIONS(1195), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1195), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1195), + [anon_sym_ATimplementation] = ACTIONS(1197), + [anon_sym_NS_ENUM] = ACTIONS(1195), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1195), + [anon_sym_NS_OPTIONS] = ACTIONS(1195), + [anon_sym_typeof] = ACTIONS(1195), + [anon_sym___typeof] = ACTIONS(1195), + [anon_sym___typeof__] = ACTIONS(1195), + [sym_self] = ACTIONS(1195), + [sym_super] = ACTIONS(1195), + [sym_nil] = ACTIONS(1195), + [sym_id] = ACTIONS(1195), + [sym_instancetype] = ACTIONS(1195), + [sym_Class] = ACTIONS(1195), + [sym_SEL] = ACTIONS(1195), + [sym_IMP] = ACTIONS(1195), + [sym_BOOL] = ACTIONS(1195), + [sym_auto] = ACTIONS(1195), + [anon_sym_ATautoreleasepool] = ACTIONS(1197), + [anon_sym_ATsynchronized] = ACTIONS(1197), + [anon_sym_ATtry] = ACTIONS(1197), + [anon_sym_ATcatch] = ACTIONS(1197), + [anon_sym_ATfinally] = ACTIONS(1197), + [anon_sym_ATthrow] = ACTIONS(1197), + [anon_sym_ATselector] = ACTIONS(1197), + [anon_sym_ATencode] = ACTIONS(1197), + [anon_sym_AT] = ACTIONS(1195), + [sym_YES] = ACTIONS(1195), + [sym_NO] = ACTIONS(1195), + [anon_sym___builtin_available] = ACTIONS(1195), + [anon_sym_ATavailable] = ACTIONS(1197), + [anon_sym_va_arg] = ACTIONS(1195), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -99483,174 +86677,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [419] = { - [sym_identifier] = ACTIONS(1525), - [aux_sym_preproc_include_token1] = ACTIONS(1527), - [aux_sym_preproc_def_token1] = ACTIONS(1527), - [aux_sym_preproc_if_token1] = ACTIONS(1525), - [aux_sym_preproc_if_token2] = ACTIONS(1525), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1525), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1525), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1525), - [anon_sym_PLUS] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_CARET] = ACTIONS(1527), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_typedef] = ACTIONS(1525), - [anon_sym_extern] = ACTIONS(1525), - [anon_sym___attribute] = ACTIONS(1525), - [anon_sym___attribute__] = ACTIONS(1525), - [anon_sym___declspec] = ACTIONS(1525), - [anon_sym___cdecl] = ACTIONS(1525), - [anon_sym___clrcall] = ACTIONS(1525), - [anon_sym___stdcall] = ACTIONS(1525), - [anon_sym___fastcall] = ACTIONS(1525), - [anon_sym___thiscall] = ACTIONS(1525), - [anon_sym___vectorcall] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(1525), - [anon_sym_auto] = ACTIONS(1525), - [anon_sym_register] = ACTIONS(1525), - [anon_sym_inline] = ACTIONS(1525), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1525), - [anon_sym_const] = ACTIONS(1525), - [anon_sym_volatile] = ACTIONS(1525), - [anon_sym_restrict] = ACTIONS(1525), - [anon_sym__Atomic] = ACTIONS(1525), - [anon_sym_in] = ACTIONS(1525), - [anon_sym_out] = ACTIONS(1525), - [anon_sym_inout] = ACTIONS(1525), - [anon_sym_bycopy] = ACTIONS(1525), - [anon_sym_byref] = ACTIONS(1525), - [anon_sym_oneway] = ACTIONS(1525), - [anon_sym__Nullable] = ACTIONS(1525), - [anon_sym__Nonnull] = ACTIONS(1525), - [anon_sym__Nullable_result] = ACTIONS(1525), - [anon_sym__Null_unspecified] = ACTIONS(1525), - [anon_sym___autoreleasing] = ACTIONS(1525), - [anon_sym___nullable] = ACTIONS(1525), - [anon_sym___nonnull] = ACTIONS(1525), - [anon_sym___strong] = ACTIONS(1525), - [anon_sym___weak] = ACTIONS(1525), - [anon_sym___bridge] = ACTIONS(1525), - [anon_sym___bridge_transfer] = ACTIONS(1525), - [anon_sym___bridge_retained] = ACTIONS(1525), - [anon_sym___unsafe_unretained] = ACTIONS(1525), - [anon_sym___block] = ACTIONS(1525), - [anon_sym___kindof] = ACTIONS(1525), - [anon_sym___unused] = ACTIONS(1525), - [anon_sym__Complex] = ACTIONS(1525), - [anon_sym___complex] = ACTIONS(1525), - [anon_sym_IBOutlet] = ACTIONS(1525), - [anon_sym_IBInspectable] = ACTIONS(1525), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1525), - [anon_sym_signed] = ACTIONS(1525), - [anon_sym_unsigned] = ACTIONS(1525), - [anon_sym_long] = ACTIONS(1525), - [anon_sym_short] = ACTIONS(1525), - [sym_primitive_type] = ACTIONS(1525), - [anon_sym_enum] = ACTIONS(1525), - [anon_sym_NS_ENUM] = ACTIONS(1525), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1525), - [anon_sym_NS_OPTIONS] = ACTIONS(1525), - [anon_sym_struct] = ACTIONS(1525), - [anon_sym_union] = ACTIONS(1525), - [anon_sym_if] = ACTIONS(1525), - [anon_sym_else] = ACTIONS(1525), - [anon_sym_switch] = ACTIONS(1525), - [anon_sym_case] = ACTIONS(1525), - [anon_sym_default] = ACTIONS(1525), - [anon_sym_while] = ACTIONS(1525), - [anon_sym_do] = ACTIONS(1525), - [anon_sym_for] = ACTIONS(1525), - [anon_sym_return] = ACTIONS(1525), - [anon_sym_break] = ACTIONS(1525), - [anon_sym_continue] = ACTIONS(1525), - [anon_sym_goto] = ACTIONS(1525), - [anon_sym_DASH_DASH] = ACTIONS(1527), - [anon_sym_PLUS_PLUS] = ACTIONS(1527), - [anon_sym_sizeof] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1527), - [anon_sym_L_SQUOTE] = ACTIONS(1527), - [anon_sym_u_SQUOTE] = ACTIONS(1527), - [anon_sym_U_SQUOTE] = ACTIONS(1527), - [anon_sym_u8_SQUOTE] = ACTIONS(1527), - [anon_sym_SQUOTE] = ACTIONS(1527), - [anon_sym_L_DQUOTE] = ACTIONS(1527), - [anon_sym_u_DQUOTE] = ACTIONS(1527), - [anon_sym_U_DQUOTE] = ACTIONS(1527), - [anon_sym_u8_DQUOTE] = ACTIONS(1527), - [anon_sym_DQUOTE] = ACTIONS(1527), - [sym_true] = ACTIONS(1525), - [sym_false] = ACTIONS(1525), - [sym_null] = ACTIONS(1525), + [346] = { + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token2] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym_in] = ACTIONS(1195), + [anon_sym_out] = ACTIONS(1195), + [anon_sym_inout] = ACTIONS(1195), + [anon_sym_bycopy] = ACTIONS(1195), + [anon_sym_byref] = ACTIONS(1195), + [anon_sym_oneway] = ACTIONS(1195), + [anon_sym__Nullable] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym__Nullable_result] = ACTIONS(1195), + [anon_sym__Null_unspecified] = ACTIONS(1195), + [anon_sym___autoreleasing] = ACTIONS(1195), + [anon_sym___nullable] = ACTIONS(1195), + [anon_sym___nonnull] = ACTIONS(1195), + [anon_sym___strong] = ACTIONS(1195), + [anon_sym___weak] = ACTIONS(1195), + [anon_sym___bridge] = ACTIONS(1195), + [anon_sym___bridge_transfer] = ACTIONS(1195), + [anon_sym___bridge_retained] = ACTIONS(1195), + [anon_sym___unsafe_unretained] = ACTIONS(1195), + [anon_sym___block] = ACTIONS(1195), + [anon_sym___kindof] = ACTIONS(1195), + [anon_sym___unused] = ACTIONS(1195), + [anon_sym__Complex] = ACTIONS(1195), + [anon_sym___complex] = ACTIONS(1195), + [anon_sym_IBOutlet] = ACTIONS(1195), + [anon_sym_IBInspectable] = ACTIONS(1195), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [sym_null] = ACTIONS(1195), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1527), - [anon_sym_ATimport] = ACTIONS(1527), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1525), - [anon_sym_ATcompatibility_alias] = ACTIONS(1527), - [anon_sym_ATprotocol] = ACTIONS(1527), - [anon_sym_ATclass] = ACTIONS(1527), - [anon_sym_ATinterface] = ACTIONS(1527), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1525), - [sym_method_attribute_specifier] = ACTIONS(1525), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1525), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1525), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1525), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1525), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1525), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1525), - [anon_sym_NS_AVAILABLE] = ACTIONS(1525), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1525), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1525), - [anon_sym_API_AVAILABLE] = ACTIONS(1525), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1525), - [anon_sym_API_DEPRECATED] = ACTIONS(1525), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1525), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1525), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1525), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1525), - [anon_sym___deprecated_msg] = ACTIONS(1525), - [anon_sym___deprecated_enum_msg] = ACTIONS(1525), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1525), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1525), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1525), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1525), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1525), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1525), - [anon_sym_ATimplementation] = ACTIONS(1527), - [anon_sym_typeof] = ACTIONS(1525), - [anon_sym___typeof] = ACTIONS(1525), - [anon_sym___typeof__] = ACTIONS(1525), - [sym_self] = ACTIONS(1525), - [sym_super] = ACTIONS(1525), - [sym_nil] = ACTIONS(1525), - [sym_id] = ACTIONS(1525), - [sym_instancetype] = ACTIONS(1525), - [sym_Class] = ACTIONS(1525), - [sym_SEL] = ACTIONS(1525), - [sym_IMP] = ACTIONS(1525), - [sym_BOOL] = ACTIONS(1525), - [sym_auto] = ACTIONS(1525), - [anon_sym_ATautoreleasepool] = ACTIONS(1527), - [anon_sym_ATsynchronized] = ACTIONS(1527), - [anon_sym_ATtry] = ACTIONS(1527), - [anon_sym_ATcatch] = ACTIONS(1527), - [anon_sym_ATfinally] = ACTIONS(1527), - [anon_sym_ATthrow] = ACTIONS(1527), - [anon_sym_ATselector] = ACTIONS(1527), - [anon_sym_ATencode] = ACTIONS(1527), - [anon_sym_AT] = ACTIONS(1525), - [sym_YES] = ACTIONS(1525), - [sym_NO] = ACTIONS(1525), - [anon_sym___builtin_available] = ACTIONS(1525), - [anon_sym_ATavailable] = ACTIONS(1527), - [anon_sym_va_arg] = ACTIONS(1525), + [anon_sym_POUNDimport] = ACTIONS(1197), + [anon_sym_ATimport] = ACTIONS(1197), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1195), + [anon_sym_ATcompatibility_alias] = ACTIONS(1197), + [anon_sym_ATprotocol] = ACTIONS(1197), + [anon_sym_ATclass] = ACTIONS(1197), + [anon_sym_ATinterface] = ACTIONS(1197), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1195), + [sym_method_attribute_specifier] = ACTIONS(1195), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1195), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE] = ACTIONS(1195), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_API_AVAILABLE] = ACTIONS(1195), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_API_DEPRECATED] = ACTIONS(1195), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1195), + [anon_sym___deprecated_msg] = ACTIONS(1195), + [anon_sym___deprecated_enum_msg] = ACTIONS(1195), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1195), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1195), + [anon_sym_ATimplementation] = ACTIONS(1197), + [anon_sym_NS_ENUM] = ACTIONS(1195), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1195), + [anon_sym_NS_OPTIONS] = ACTIONS(1195), + [anon_sym_typeof] = ACTIONS(1195), + [anon_sym___typeof] = ACTIONS(1195), + [anon_sym___typeof__] = ACTIONS(1195), + [sym_self] = ACTIONS(1195), + [sym_super] = ACTIONS(1195), + [sym_nil] = ACTIONS(1195), + [sym_id] = ACTIONS(1195), + [sym_instancetype] = ACTIONS(1195), + [sym_Class] = ACTIONS(1195), + [sym_SEL] = ACTIONS(1195), + [sym_IMP] = ACTIONS(1195), + [sym_BOOL] = ACTIONS(1195), + [sym_auto] = ACTIONS(1195), + [anon_sym_ATautoreleasepool] = ACTIONS(1197), + [anon_sym_ATsynchronized] = ACTIONS(1197), + [anon_sym_ATtry] = ACTIONS(1197), + [anon_sym_ATcatch] = ACTIONS(1197), + [anon_sym_ATfinally] = ACTIONS(1197), + [anon_sym_ATthrow] = ACTIONS(1197), + [anon_sym_ATselector] = ACTIONS(1197), + [anon_sym_ATencode] = ACTIONS(1197), + [anon_sym_AT] = ACTIONS(1195), + [sym_YES] = ACTIONS(1195), + [sym_NO] = ACTIONS(1195), + [anon_sym___builtin_available] = ACTIONS(1195), + [anon_sym_ATavailable] = ACTIONS(1197), + [anon_sym_va_arg] = ACTIONS(1195), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -99658,174 +86852,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [420] = { - [sym_identifier] = ACTIONS(1623), - [aux_sym_preproc_include_token1] = ACTIONS(1621), - [aux_sym_preproc_def_token1] = ACTIONS(1621), - [aux_sym_preproc_if_token1] = ACTIONS(1623), - [aux_sym_preproc_if_token2] = ACTIONS(1623), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1623), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1623), - [anon_sym_LPAREN2] = ACTIONS(1621), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_CARET] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_typedef] = ACTIONS(1623), - [anon_sym_extern] = ACTIONS(1623), - [anon_sym___attribute] = ACTIONS(1623), - [anon_sym___attribute__] = ACTIONS(1623), - [anon_sym___declspec] = ACTIONS(1623), - [anon_sym___cdecl] = ACTIONS(1623), - [anon_sym___clrcall] = ACTIONS(1623), - [anon_sym___stdcall] = ACTIONS(1623), - [anon_sym___fastcall] = ACTIONS(1623), - [anon_sym___thiscall] = ACTIONS(1623), - [anon_sym___vectorcall] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_LBRACK] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1623), - [anon_sym_auto] = ACTIONS(1623), - [anon_sym_register] = ACTIONS(1623), - [anon_sym_inline] = ACTIONS(1623), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1623), - [anon_sym_const] = ACTIONS(1623), - [anon_sym_volatile] = ACTIONS(1623), - [anon_sym_restrict] = ACTIONS(1623), - [anon_sym__Atomic] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_out] = ACTIONS(1623), - [anon_sym_inout] = ACTIONS(1623), - [anon_sym_bycopy] = ACTIONS(1623), - [anon_sym_byref] = ACTIONS(1623), - [anon_sym_oneway] = ACTIONS(1623), - [anon_sym__Nullable] = ACTIONS(1623), - [anon_sym__Nonnull] = ACTIONS(1623), - [anon_sym__Nullable_result] = ACTIONS(1623), - [anon_sym__Null_unspecified] = ACTIONS(1623), - [anon_sym___autoreleasing] = ACTIONS(1623), - [anon_sym___nullable] = ACTIONS(1623), - [anon_sym___nonnull] = ACTIONS(1623), - [anon_sym___strong] = ACTIONS(1623), - [anon_sym___weak] = ACTIONS(1623), - [anon_sym___bridge] = ACTIONS(1623), - [anon_sym___bridge_transfer] = ACTIONS(1623), - [anon_sym___bridge_retained] = ACTIONS(1623), - [anon_sym___unsafe_unretained] = ACTIONS(1623), - [anon_sym___block] = ACTIONS(1623), - [anon_sym___kindof] = ACTIONS(1623), - [anon_sym___unused] = ACTIONS(1623), - [anon_sym__Complex] = ACTIONS(1623), - [anon_sym___complex] = ACTIONS(1623), - [anon_sym_IBOutlet] = ACTIONS(1623), - [anon_sym_IBInspectable] = ACTIONS(1623), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1623), - [anon_sym_signed] = ACTIONS(1623), - [anon_sym_unsigned] = ACTIONS(1623), - [anon_sym_long] = ACTIONS(1623), - [anon_sym_short] = ACTIONS(1623), - [sym_primitive_type] = ACTIONS(1623), - [anon_sym_enum] = ACTIONS(1623), - [anon_sym_NS_ENUM] = ACTIONS(1623), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1623), - [anon_sym_NS_OPTIONS] = ACTIONS(1623), - [anon_sym_struct] = ACTIONS(1623), - [anon_sym_union] = ACTIONS(1623), - [anon_sym_if] = ACTIONS(1623), - [anon_sym_else] = ACTIONS(1623), - [anon_sym_switch] = ACTIONS(1623), - [anon_sym_case] = ACTIONS(1623), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_while] = ACTIONS(1623), - [anon_sym_do] = ACTIONS(1623), - [anon_sym_for] = ACTIONS(1623), - [anon_sym_return] = ACTIONS(1623), - [anon_sym_break] = ACTIONS(1623), - [anon_sym_continue] = ACTIONS(1623), - [anon_sym_goto] = ACTIONS(1623), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1621), - [anon_sym_L_SQUOTE] = ACTIONS(1621), - [anon_sym_u_SQUOTE] = ACTIONS(1621), - [anon_sym_U_SQUOTE] = ACTIONS(1621), - [anon_sym_u8_SQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1621), - [anon_sym_L_DQUOTE] = ACTIONS(1621), - [anon_sym_u_DQUOTE] = ACTIONS(1621), - [anon_sym_U_DQUOTE] = ACTIONS(1621), - [anon_sym_u8_DQUOTE] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [sym_true] = ACTIONS(1623), - [sym_false] = ACTIONS(1623), - [sym_null] = ACTIONS(1623), + [347] = { + [sym_identifier] = ACTIONS(1401), + [aux_sym_preproc_include_token1] = ACTIONS(1399), + [aux_sym_preproc_def_token1] = ACTIONS(1399), + [aux_sym_preproc_if_token1] = ACTIONS(1401), + [aux_sym_preproc_if_token2] = ACTIONS(1401), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1401), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1401), + [anon_sym_LPAREN2] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_typedef] = ACTIONS(1401), + [anon_sym_extern] = ACTIONS(1401), + [anon_sym___attribute] = ACTIONS(1401), + [anon_sym___attribute__] = ACTIONS(1401), + [anon_sym___declspec] = ACTIONS(1401), + [anon_sym___cdecl] = ACTIONS(1401), + [anon_sym___clrcall] = ACTIONS(1401), + [anon_sym___stdcall] = ACTIONS(1401), + [anon_sym___fastcall] = ACTIONS(1401), + [anon_sym___thiscall] = ACTIONS(1401), + [anon_sym___vectorcall] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1399), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_auto] = ACTIONS(1401), + [anon_sym_register] = ACTIONS(1401), + [anon_sym_inline] = ACTIONS(1401), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_volatile] = ACTIONS(1401), + [anon_sym_restrict] = ACTIONS(1401), + [anon_sym__Atomic] = ACTIONS(1401), + [anon_sym_in] = ACTIONS(1401), + [anon_sym_out] = ACTIONS(1401), + [anon_sym_inout] = ACTIONS(1401), + [anon_sym_bycopy] = ACTIONS(1401), + [anon_sym_byref] = ACTIONS(1401), + [anon_sym_oneway] = ACTIONS(1401), + [anon_sym__Nullable] = ACTIONS(1401), + [anon_sym__Nonnull] = ACTIONS(1401), + [anon_sym__Nullable_result] = ACTIONS(1401), + [anon_sym__Null_unspecified] = ACTIONS(1401), + [anon_sym___autoreleasing] = ACTIONS(1401), + [anon_sym___nullable] = ACTIONS(1401), + [anon_sym___nonnull] = ACTIONS(1401), + [anon_sym___strong] = ACTIONS(1401), + [anon_sym___weak] = ACTIONS(1401), + [anon_sym___bridge] = ACTIONS(1401), + [anon_sym___bridge_transfer] = ACTIONS(1401), + [anon_sym___bridge_retained] = ACTIONS(1401), + [anon_sym___unsafe_unretained] = ACTIONS(1401), + [anon_sym___block] = ACTIONS(1401), + [anon_sym___kindof] = ACTIONS(1401), + [anon_sym___unused] = ACTIONS(1401), + [anon_sym__Complex] = ACTIONS(1401), + [anon_sym___complex] = ACTIONS(1401), + [anon_sym_IBOutlet] = ACTIONS(1401), + [anon_sym_IBInspectable] = ACTIONS(1401), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1401), + [anon_sym_signed] = ACTIONS(1401), + [anon_sym_unsigned] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [sym_primitive_type] = ACTIONS(1401), + [anon_sym_enum] = ACTIONS(1401), + [anon_sym_struct] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_else] = ACTIONS(1401), + [anon_sym_switch] = ACTIONS(1401), + [anon_sym_case] = ACTIONS(1401), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_do] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_goto] = ACTIONS(1401), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_sizeof] = ACTIONS(1401), + [sym_number_literal] = ACTIONS(1399), + [anon_sym_L_SQUOTE] = ACTIONS(1399), + [anon_sym_u_SQUOTE] = ACTIONS(1399), + [anon_sym_U_SQUOTE] = ACTIONS(1399), + [anon_sym_u8_SQUOTE] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_L_DQUOTE] = ACTIONS(1399), + [anon_sym_u_DQUOTE] = ACTIONS(1399), + [anon_sym_U_DQUOTE] = ACTIONS(1399), + [anon_sym_u8_DQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [sym_true] = ACTIONS(1401), + [sym_false] = ACTIONS(1401), + [sym_null] = ACTIONS(1401), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1621), - [anon_sym_ATimport] = ACTIONS(1621), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1623), - [anon_sym_ATcompatibility_alias] = ACTIONS(1621), - [anon_sym_ATprotocol] = ACTIONS(1621), - [anon_sym_ATclass] = ACTIONS(1621), - [anon_sym_ATinterface] = ACTIONS(1621), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1623), - [sym_method_attribute_specifier] = ACTIONS(1623), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1623), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1623), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1623), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1623), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1623), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1623), - [anon_sym_NS_AVAILABLE] = ACTIONS(1623), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1623), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1623), - [anon_sym_API_AVAILABLE] = ACTIONS(1623), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1623), - [anon_sym_API_DEPRECATED] = ACTIONS(1623), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1623), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1623), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1623), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1623), - [anon_sym___deprecated_msg] = ACTIONS(1623), - [anon_sym___deprecated_enum_msg] = ACTIONS(1623), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1623), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1623), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1623), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1623), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1623), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1623), - [anon_sym_ATimplementation] = ACTIONS(1621), - [anon_sym_typeof] = ACTIONS(1623), - [anon_sym___typeof] = ACTIONS(1623), - [anon_sym___typeof__] = ACTIONS(1623), - [sym_self] = ACTIONS(1623), - [sym_super] = ACTIONS(1623), - [sym_nil] = ACTIONS(1623), - [sym_id] = ACTIONS(1623), - [sym_instancetype] = ACTIONS(1623), - [sym_Class] = ACTIONS(1623), - [sym_SEL] = ACTIONS(1623), - [sym_IMP] = ACTIONS(1623), - [sym_BOOL] = ACTIONS(1623), - [sym_auto] = ACTIONS(1623), - [anon_sym_ATautoreleasepool] = ACTIONS(1621), - [anon_sym_ATsynchronized] = ACTIONS(1621), - [anon_sym_ATtry] = ACTIONS(1621), - [anon_sym_ATcatch] = ACTIONS(1621), - [anon_sym_ATfinally] = ACTIONS(1621), - [anon_sym_ATthrow] = ACTIONS(1621), - [anon_sym_ATselector] = ACTIONS(1621), - [anon_sym_ATencode] = ACTIONS(1621), - [anon_sym_AT] = ACTIONS(1623), - [sym_YES] = ACTIONS(1623), - [sym_NO] = ACTIONS(1623), - [anon_sym___builtin_available] = ACTIONS(1623), - [anon_sym_ATavailable] = ACTIONS(1621), - [anon_sym_va_arg] = ACTIONS(1623), + [anon_sym_POUNDimport] = ACTIONS(1399), + [anon_sym_ATimport] = ACTIONS(1399), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1401), + [anon_sym_ATcompatibility_alias] = ACTIONS(1399), + [anon_sym_ATprotocol] = ACTIONS(1399), + [anon_sym_ATclass] = ACTIONS(1399), + [anon_sym_ATinterface] = ACTIONS(1399), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1401), + [sym_method_attribute_specifier] = ACTIONS(1401), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1401), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1401), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1401), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1401), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1401), + [anon_sym_NS_AVAILABLE] = ACTIONS(1401), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1401), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_API_AVAILABLE] = ACTIONS(1401), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_API_DEPRECATED] = ACTIONS(1401), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1401), + [anon_sym___deprecated_msg] = ACTIONS(1401), + [anon_sym___deprecated_enum_msg] = ACTIONS(1401), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1401), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1401), + [anon_sym_ATimplementation] = ACTIONS(1399), + [anon_sym_NS_ENUM] = ACTIONS(1401), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1401), + [anon_sym_NS_OPTIONS] = ACTIONS(1401), + [anon_sym_typeof] = ACTIONS(1401), + [anon_sym___typeof] = ACTIONS(1401), + [anon_sym___typeof__] = ACTIONS(1401), + [sym_self] = ACTIONS(1401), + [sym_super] = ACTIONS(1401), + [sym_nil] = ACTIONS(1401), + [sym_id] = ACTIONS(1401), + [sym_instancetype] = ACTIONS(1401), + [sym_Class] = ACTIONS(1401), + [sym_SEL] = ACTIONS(1401), + [sym_IMP] = ACTIONS(1401), + [sym_BOOL] = ACTIONS(1401), + [sym_auto] = ACTIONS(1401), + [anon_sym_ATautoreleasepool] = ACTIONS(1399), + [anon_sym_ATsynchronized] = ACTIONS(1399), + [anon_sym_ATtry] = ACTIONS(1399), + [anon_sym_ATcatch] = ACTIONS(1399), + [anon_sym_ATfinally] = ACTIONS(1399), + [anon_sym_ATthrow] = ACTIONS(1399), + [anon_sym_ATselector] = ACTIONS(1399), + [anon_sym_ATencode] = ACTIONS(1399), + [anon_sym_AT] = ACTIONS(1401), + [sym_YES] = ACTIONS(1401), + [sym_NO] = ACTIONS(1401), + [anon_sym___builtin_available] = ACTIONS(1401), + [anon_sym_ATavailable] = ACTIONS(1399), + [anon_sym_va_arg] = ACTIONS(1401), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -99833,174 +87027,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [421] = { - [sym_identifier] = ACTIONS(1649), - [aux_sym_preproc_include_token1] = ACTIONS(1651), - [aux_sym_preproc_def_token1] = ACTIONS(1651), - [aux_sym_preproc_if_token1] = ACTIONS(1649), - [aux_sym_preproc_if_token2] = ACTIONS(1649), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1649), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1649), - [anon_sym_LPAREN2] = ACTIONS(1651), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_CARET] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_typedef] = ACTIONS(1649), - [anon_sym_extern] = ACTIONS(1649), - [anon_sym___attribute] = ACTIONS(1649), - [anon_sym___attribute__] = ACTIONS(1649), - [anon_sym___declspec] = ACTIONS(1649), - [anon_sym___cdecl] = ACTIONS(1649), - [anon_sym___clrcall] = ACTIONS(1649), - [anon_sym___stdcall] = ACTIONS(1649), - [anon_sym___fastcall] = ACTIONS(1649), - [anon_sym___thiscall] = ACTIONS(1649), - [anon_sym___vectorcall] = ACTIONS(1649), - [anon_sym_LBRACE] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1651), - [anon_sym_static] = ACTIONS(1649), - [anon_sym_auto] = ACTIONS(1649), - [anon_sym_register] = ACTIONS(1649), - [anon_sym_inline] = ACTIONS(1649), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_volatile] = ACTIONS(1649), - [anon_sym_restrict] = ACTIONS(1649), - [anon_sym__Atomic] = ACTIONS(1649), - [anon_sym_in] = ACTIONS(1649), - [anon_sym_out] = ACTIONS(1649), - [anon_sym_inout] = ACTIONS(1649), - [anon_sym_bycopy] = ACTIONS(1649), - [anon_sym_byref] = ACTIONS(1649), - [anon_sym_oneway] = ACTIONS(1649), - [anon_sym__Nullable] = ACTIONS(1649), - [anon_sym__Nonnull] = ACTIONS(1649), - [anon_sym__Nullable_result] = ACTIONS(1649), - [anon_sym__Null_unspecified] = ACTIONS(1649), - [anon_sym___autoreleasing] = ACTIONS(1649), - [anon_sym___nullable] = ACTIONS(1649), - [anon_sym___nonnull] = ACTIONS(1649), - [anon_sym___strong] = ACTIONS(1649), - [anon_sym___weak] = ACTIONS(1649), - [anon_sym___bridge] = ACTIONS(1649), - [anon_sym___bridge_transfer] = ACTIONS(1649), - [anon_sym___bridge_retained] = ACTIONS(1649), - [anon_sym___unsafe_unretained] = ACTIONS(1649), - [anon_sym___block] = ACTIONS(1649), - [anon_sym___kindof] = ACTIONS(1649), - [anon_sym___unused] = ACTIONS(1649), - [anon_sym__Complex] = ACTIONS(1649), - [anon_sym___complex] = ACTIONS(1649), - [anon_sym_IBOutlet] = ACTIONS(1649), - [anon_sym_IBInspectable] = ACTIONS(1649), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1649), - [anon_sym_signed] = ACTIONS(1649), - [anon_sym_unsigned] = ACTIONS(1649), - [anon_sym_long] = ACTIONS(1649), - [anon_sym_short] = ACTIONS(1649), - [sym_primitive_type] = ACTIONS(1649), - [anon_sym_enum] = ACTIONS(1649), - [anon_sym_NS_ENUM] = ACTIONS(1649), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1649), - [anon_sym_NS_OPTIONS] = ACTIONS(1649), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_union] = ACTIONS(1649), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_else] = ACTIONS(1649), - [anon_sym_switch] = ACTIONS(1649), - [anon_sym_case] = ACTIONS(1649), - [anon_sym_default] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_do] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_goto] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_sizeof] = ACTIONS(1649), - [sym_number_literal] = ACTIONS(1651), - [anon_sym_L_SQUOTE] = ACTIONS(1651), - [anon_sym_u_SQUOTE] = ACTIONS(1651), - [anon_sym_U_SQUOTE] = ACTIONS(1651), - [anon_sym_u8_SQUOTE] = ACTIONS(1651), - [anon_sym_SQUOTE] = ACTIONS(1651), - [anon_sym_L_DQUOTE] = ACTIONS(1651), - [anon_sym_u_DQUOTE] = ACTIONS(1651), - [anon_sym_U_DQUOTE] = ACTIONS(1651), - [anon_sym_u8_DQUOTE] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(1651), - [sym_true] = ACTIONS(1649), - [sym_false] = ACTIONS(1649), - [sym_null] = ACTIONS(1649), + [348] = { + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token2] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym_in] = ACTIONS(1195), + [anon_sym_out] = ACTIONS(1195), + [anon_sym_inout] = ACTIONS(1195), + [anon_sym_bycopy] = ACTIONS(1195), + [anon_sym_byref] = ACTIONS(1195), + [anon_sym_oneway] = ACTIONS(1195), + [anon_sym__Nullable] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym__Nullable_result] = ACTIONS(1195), + [anon_sym__Null_unspecified] = ACTIONS(1195), + [anon_sym___autoreleasing] = ACTIONS(1195), + [anon_sym___nullable] = ACTIONS(1195), + [anon_sym___nonnull] = ACTIONS(1195), + [anon_sym___strong] = ACTIONS(1195), + [anon_sym___weak] = ACTIONS(1195), + [anon_sym___bridge] = ACTIONS(1195), + [anon_sym___bridge_transfer] = ACTIONS(1195), + [anon_sym___bridge_retained] = ACTIONS(1195), + [anon_sym___unsafe_unretained] = ACTIONS(1195), + [anon_sym___block] = ACTIONS(1195), + [anon_sym___kindof] = ACTIONS(1195), + [anon_sym___unused] = ACTIONS(1195), + [anon_sym__Complex] = ACTIONS(1195), + [anon_sym___complex] = ACTIONS(1195), + [anon_sym_IBOutlet] = ACTIONS(1195), + [anon_sym_IBInspectable] = ACTIONS(1195), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [sym_null] = ACTIONS(1195), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1651), - [anon_sym_ATimport] = ACTIONS(1651), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1649), - [anon_sym_ATcompatibility_alias] = ACTIONS(1651), - [anon_sym_ATprotocol] = ACTIONS(1651), - [anon_sym_ATclass] = ACTIONS(1651), - [anon_sym_ATinterface] = ACTIONS(1651), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1649), - [sym_method_attribute_specifier] = ACTIONS(1649), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1649), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1649), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1649), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1649), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1649), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1649), - [anon_sym_NS_AVAILABLE] = ACTIONS(1649), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1649), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1649), - [anon_sym_API_AVAILABLE] = ACTIONS(1649), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1649), - [anon_sym_API_DEPRECATED] = ACTIONS(1649), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1649), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1649), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1649), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1649), - [anon_sym___deprecated_msg] = ACTIONS(1649), - [anon_sym___deprecated_enum_msg] = ACTIONS(1649), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1649), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1649), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1649), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1649), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1649), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1649), - [anon_sym_ATimplementation] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1649), - [anon_sym___typeof] = ACTIONS(1649), - [anon_sym___typeof__] = ACTIONS(1649), - [sym_self] = ACTIONS(1649), - [sym_super] = ACTIONS(1649), - [sym_nil] = ACTIONS(1649), - [sym_id] = ACTIONS(1649), - [sym_instancetype] = ACTIONS(1649), - [sym_Class] = ACTIONS(1649), - [sym_SEL] = ACTIONS(1649), - [sym_IMP] = ACTIONS(1649), - [sym_BOOL] = ACTIONS(1649), - [sym_auto] = ACTIONS(1649), - [anon_sym_ATautoreleasepool] = ACTIONS(1651), - [anon_sym_ATsynchronized] = ACTIONS(1651), - [anon_sym_ATtry] = ACTIONS(1651), - [anon_sym_ATcatch] = ACTIONS(1651), - [anon_sym_ATfinally] = ACTIONS(1651), - [anon_sym_ATthrow] = ACTIONS(1651), - [anon_sym_ATselector] = ACTIONS(1651), - [anon_sym_ATencode] = ACTIONS(1651), - [anon_sym_AT] = ACTIONS(1649), - [sym_YES] = ACTIONS(1649), - [sym_NO] = ACTIONS(1649), - [anon_sym___builtin_available] = ACTIONS(1649), - [anon_sym_ATavailable] = ACTIONS(1651), - [anon_sym_va_arg] = ACTIONS(1649), + [anon_sym_POUNDimport] = ACTIONS(1197), + [anon_sym_ATimport] = ACTIONS(1197), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1195), + [anon_sym_ATcompatibility_alias] = ACTIONS(1197), + [anon_sym_ATprotocol] = ACTIONS(1197), + [anon_sym_ATclass] = ACTIONS(1197), + [anon_sym_ATinterface] = ACTIONS(1197), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1195), + [sym_method_attribute_specifier] = ACTIONS(1195), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1195), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE] = ACTIONS(1195), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_API_AVAILABLE] = ACTIONS(1195), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_API_DEPRECATED] = ACTIONS(1195), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1195), + [anon_sym___deprecated_msg] = ACTIONS(1195), + [anon_sym___deprecated_enum_msg] = ACTIONS(1195), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1195), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1195), + [anon_sym_ATimplementation] = ACTIONS(1197), + [anon_sym_NS_ENUM] = ACTIONS(1195), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1195), + [anon_sym_NS_OPTIONS] = ACTIONS(1195), + [anon_sym_typeof] = ACTIONS(1195), + [anon_sym___typeof] = ACTIONS(1195), + [anon_sym___typeof__] = ACTIONS(1195), + [sym_self] = ACTIONS(1195), + [sym_super] = ACTIONS(1195), + [sym_nil] = ACTIONS(1195), + [sym_id] = ACTIONS(1195), + [sym_instancetype] = ACTIONS(1195), + [sym_Class] = ACTIONS(1195), + [sym_SEL] = ACTIONS(1195), + [sym_IMP] = ACTIONS(1195), + [sym_BOOL] = ACTIONS(1195), + [sym_auto] = ACTIONS(1195), + [anon_sym_ATautoreleasepool] = ACTIONS(1197), + [anon_sym_ATsynchronized] = ACTIONS(1197), + [anon_sym_ATtry] = ACTIONS(1197), + [anon_sym_ATcatch] = ACTIONS(1197), + [anon_sym_ATfinally] = ACTIONS(1197), + [anon_sym_ATthrow] = ACTIONS(1197), + [anon_sym_ATselector] = ACTIONS(1197), + [anon_sym_ATencode] = ACTIONS(1197), + [anon_sym_AT] = ACTIONS(1195), + [sym_YES] = ACTIONS(1195), + [sym_NO] = ACTIONS(1195), + [anon_sym___builtin_available] = ACTIONS(1195), + [anon_sym_ATavailable] = ACTIONS(1197), + [anon_sym_va_arg] = ACTIONS(1195), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -100008,174 +87202,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [422] = { - [sym_identifier] = ACTIONS(1409), - [aux_sym_preproc_include_token1] = ACTIONS(1411), - [aux_sym_preproc_def_token1] = ACTIONS(1411), - [aux_sym_preproc_if_token1] = ACTIONS(1409), - [aux_sym_preproc_if_token2] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1409), - [anon_sym_LPAREN2] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_typedef] = ACTIONS(1409), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym___attribute] = ACTIONS(1409), - [anon_sym___attribute__] = ACTIONS(1409), - [anon_sym___declspec] = ACTIONS(1409), - [anon_sym___cdecl] = ACTIONS(1409), - [anon_sym___clrcall] = ACTIONS(1409), - [anon_sym___stdcall] = ACTIONS(1409), - [anon_sym___fastcall] = ACTIONS(1409), - [anon_sym___thiscall] = ACTIONS(1409), - [anon_sym___vectorcall] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_auto] = ACTIONS(1409), - [anon_sym_register] = ACTIONS(1409), - [anon_sym_inline] = ACTIONS(1409), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_volatile] = ACTIONS(1409), - [anon_sym_restrict] = ACTIONS(1409), - [anon_sym__Atomic] = ACTIONS(1409), - [anon_sym_in] = ACTIONS(1409), - [anon_sym_out] = ACTIONS(1409), - [anon_sym_inout] = ACTIONS(1409), - [anon_sym_bycopy] = ACTIONS(1409), - [anon_sym_byref] = ACTIONS(1409), - [anon_sym_oneway] = ACTIONS(1409), - [anon_sym__Nullable] = ACTIONS(1409), - [anon_sym__Nonnull] = ACTIONS(1409), - [anon_sym__Nullable_result] = ACTIONS(1409), - [anon_sym__Null_unspecified] = ACTIONS(1409), - [anon_sym___autoreleasing] = ACTIONS(1409), - [anon_sym___nullable] = ACTIONS(1409), - [anon_sym___nonnull] = ACTIONS(1409), - [anon_sym___strong] = ACTIONS(1409), - [anon_sym___weak] = ACTIONS(1409), - [anon_sym___bridge] = ACTIONS(1409), - [anon_sym___bridge_transfer] = ACTIONS(1409), - [anon_sym___bridge_retained] = ACTIONS(1409), - [anon_sym___unsafe_unretained] = ACTIONS(1409), - [anon_sym___block] = ACTIONS(1409), - [anon_sym___kindof] = ACTIONS(1409), - [anon_sym___unused] = ACTIONS(1409), - [anon_sym__Complex] = ACTIONS(1409), - [anon_sym___complex] = ACTIONS(1409), - [anon_sym_IBOutlet] = ACTIONS(1409), - [anon_sym_IBInspectable] = ACTIONS(1409), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1409), - [anon_sym_signed] = ACTIONS(1409), - [anon_sym_unsigned] = ACTIONS(1409), - [anon_sym_long] = ACTIONS(1409), - [anon_sym_short] = ACTIONS(1409), - [sym_primitive_type] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_NS_ENUM] = ACTIONS(1409), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1409), - [anon_sym_NS_OPTIONS] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_switch] = ACTIONS(1409), - [anon_sym_case] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_do] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_goto] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_sizeof] = ACTIONS(1409), - [sym_number_literal] = ACTIONS(1411), - [anon_sym_L_SQUOTE] = ACTIONS(1411), - [anon_sym_u_SQUOTE] = ACTIONS(1411), - [anon_sym_U_SQUOTE] = ACTIONS(1411), - [anon_sym_u8_SQUOTE] = ACTIONS(1411), - [anon_sym_SQUOTE] = ACTIONS(1411), - [anon_sym_L_DQUOTE] = ACTIONS(1411), - [anon_sym_u_DQUOTE] = ACTIONS(1411), - [anon_sym_U_DQUOTE] = ACTIONS(1411), - [anon_sym_u8_DQUOTE] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym_true] = ACTIONS(1409), - [sym_false] = ACTIONS(1409), - [sym_null] = ACTIONS(1409), + [349] = { + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_include_token1] = ACTIONS(1197), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [aux_sym_preproc_if_token1] = ACTIONS(1195), + [aux_sym_preproc_if_token2] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1195), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1197), + [anon_sym_BANG] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym_in] = ACTIONS(1195), + [anon_sym_out] = ACTIONS(1195), + [anon_sym_inout] = ACTIONS(1195), + [anon_sym_bycopy] = ACTIONS(1195), + [anon_sym_byref] = ACTIONS(1195), + [anon_sym_oneway] = ACTIONS(1195), + [anon_sym__Nullable] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym__Nullable_result] = ACTIONS(1195), + [anon_sym__Null_unspecified] = ACTIONS(1195), + [anon_sym___autoreleasing] = ACTIONS(1195), + [anon_sym___nullable] = ACTIONS(1195), + [anon_sym___nonnull] = ACTIONS(1195), + [anon_sym___strong] = ACTIONS(1195), + [anon_sym___weak] = ACTIONS(1195), + [anon_sym___bridge] = ACTIONS(1195), + [anon_sym___bridge_transfer] = ACTIONS(1195), + [anon_sym___bridge_retained] = ACTIONS(1195), + [anon_sym___unsafe_unretained] = ACTIONS(1195), + [anon_sym___block] = ACTIONS(1195), + [anon_sym___kindof] = ACTIONS(1195), + [anon_sym___unused] = ACTIONS(1195), + [anon_sym__Complex] = ACTIONS(1195), + [anon_sym___complex] = ACTIONS(1195), + [anon_sym_IBOutlet] = ACTIONS(1195), + [anon_sym_IBInspectable] = ACTIONS(1195), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_switch] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(1195), + [anon_sym_default] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_goto] = ACTIONS(1195), + [anon_sym_DASH_DASH] = ACTIONS(1197), + [anon_sym_PLUS_PLUS] = ACTIONS(1197), + [anon_sym_sizeof] = ACTIONS(1195), + [sym_number_literal] = ACTIONS(1197), + [anon_sym_L_SQUOTE] = ACTIONS(1197), + [anon_sym_u_SQUOTE] = ACTIONS(1197), + [anon_sym_U_SQUOTE] = ACTIONS(1197), + [anon_sym_u8_SQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1197), + [anon_sym_L_DQUOTE] = ACTIONS(1197), + [anon_sym_u_DQUOTE] = ACTIONS(1197), + [anon_sym_U_DQUOTE] = ACTIONS(1197), + [anon_sym_u8_DQUOTE] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_true] = ACTIONS(1195), + [sym_false] = ACTIONS(1195), + [sym_null] = ACTIONS(1195), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1411), - [anon_sym_ATimport] = ACTIONS(1411), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1409), - [anon_sym_ATcompatibility_alias] = ACTIONS(1411), - [anon_sym_ATprotocol] = ACTIONS(1411), - [anon_sym_ATclass] = ACTIONS(1411), - [anon_sym_ATinterface] = ACTIONS(1411), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1409), - [sym_method_attribute_specifier] = ACTIONS(1409), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1409), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1409), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1409), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1409), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1409), - [anon_sym_NS_AVAILABLE] = ACTIONS(1409), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1409), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_API_AVAILABLE] = ACTIONS(1409), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_API_DEPRECATED] = ACTIONS(1409), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1409), - [anon_sym___deprecated_msg] = ACTIONS(1409), - [anon_sym___deprecated_enum_msg] = ACTIONS(1409), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1409), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1409), - [anon_sym_ATimplementation] = ACTIONS(1411), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___typeof] = ACTIONS(1409), - [anon_sym___typeof__] = ACTIONS(1409), - [sym_self] = ACTIONS(1409), - [sym_super] = ACTIONS(1409), - [sym_nil] = ACTIONS(1409), - [sym_id] = ACTIONS(1409), - [sym_instancetype] = ACTIONS(1409), - [sym_Class] = ACTIONS(1409), - [sym_SEL] = ACTIONS(1409), - [sym_IMP] = ACTIONS(1409), - [sym_BOOL] = ACTIONS(1409), - [sym_auto] = ACTIONS(1409), - [anon_sym_ATautoreleasepool] = ACTIONS(1411), - [anon_sym_ATsynchronized] = ACTIONS(1411), - [anon_sym_ATtry] = ACTIONS(1411), - [anon_sym_ATcatch] = ACTIONS(1411), - [anon_sym_ATfinally] = ACTIONS(1411), - [anon_sym_ATthrow] = ACTIONS(1411), - [anon_sym_ATselector] = ACTIONS(1411), - [anon_sym_ATencode] = ACTIONS(1411), - [anon_sym_AT] = ACTIONS(1409), - [sym_YES] = ACTIONS(1409), - [sym_NO] = ACTIONS(1409), - [anon_sym___builtin_available] = ACTIONS(1409), - [anon_sym_ATavailable] = ACTIONS(1411), - [anon_sym_va_arg] = ACTIONS(1409), + [anon_sym_POUNDimport] = ACTIONS(1197), + [anon_sym_ATimport] = ACTIONS(1197), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1195), + [anon_sym_ATcompatibility_alias] = ACTIONS(1197), + [anon_sym_ATprotocol] = ACTIONS(1197), + [anon_sym_ATclass] = ACTIONS(1197), + [anon_sym_ATinterface] = ACTIONS(1197), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1195), + [sym_method_attribute_specifier] = ACTIONS(1195), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1195), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE] = ACTIONS(1195), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_API_AVAILABLE] = ACTIONS(1195), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_API_DEPRECATED] = ACTIONS(1195), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1195), + [anon_sym___deprecated_msg] = ACTIONS(1195), + [anon_sym___deprecated_enum_msg] = ACTIONS(1195), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1195), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1195), + [anon_sym_ATimplementation] = ACTIONS(1197), + [anon_sym_NS_ENUM] = ACTIONS(1195), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1195), + [anon_sym_NS_OPTIONS] = ACTIONS(1195), + [anon_sym_typeof] = ACTIONS(1195), + [anon_sym___typeof] = ACTIONS(1195), + [anon_sym___typeof__] = ACTIONS(1195), + [sym_self] = ACTIONS(1195), + [sym_super] = ACTIONS(1195), + [sym_nil] = ACTIONS(1195), + [sym_id] = ACTIONS(1195), + [sym_instancetype] = ACTIONS(1195), + [sym_Class] = ACTIONS(1195), + [sym_SEL] = ACTIONS(1195), + [sym_IMP] = ACTIONS(1195), + [sym_BOOL] = ACTIONS(1195), + [sym_auto] = ACTIONS(1195), + [anon_sym_ATautoreleasepool] = ACTIONS(1197), + [anon_sym_ATsynchronized] = ACTIONS(1197), + [anon_sym_ATtry] = ACTIONS(1197), + [anon_sym_ATcatch] = ACTIONS(1197), + [anon_sym_ATfinally] = ACTIONS(1197), + [anon_sym_ATthrow] = ACTIONS(1197), + [anon_sym_ATselector] = ACTIONS(1197), + [anon_sym_ATencode] = ACTIONS(1197), + [anon_sym_AT] = ACTIONS(1195), + [sym_YES] = ACTIONS(1195), + [sym_NO] = ACTIONS(1195), + [anon_sym___builtin_available] = ACTIONS(1195), + [anon_sym_ATavailable] = ACTIONS(1197), + [anon_sym_va_arg] = ACTIONS(1195), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -100183,174 +87377,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [423] = { - [sym_identifier] = ACTIONS(1653), - [aux_sym_preproc_include_token1] = ACTIONS(1655), - [aux_sym_preproc_def_token1] = ACTIONS(1655), - [aux_sym_preproc_if_token1] = ACTIONS(1653), - [aux_sym_preproc_if_token2] = ACTIONS(1653), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1653), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1653), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_CARET] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_typedef] = ACTIONS(1653), - [anon_sym_extern] = ACTIONS(1653), - [anon_sym___attribute] = ACTIONS(1653), - [anon_sym___attribute__] = ACTIONS(1653), - [anon_sym___declspec] = ACTIONS(1653), - [anon_sym___cdecl] = ACTIONS(1653), - [anon_sym___clrcall] = ACTIONS(1653), - [anon_sym___stdcall] = ACTIONS(1653), - [anon_sym___fastcall] = ACTIONS(1653), - [anon_sym___thiscall] = ACTIONS(1653), - [anon_sym___vectorcall] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_auto] = ACTIONS(1653), - [anon_sym_register] = ACTIONS(1653), - [anon_sym_inline] = ACTIONS(1653), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_volatile] = ACTIONS(1653), - [anon_sym_restrict] = ACTIONS(1653), - [anon_sym__Atomic] = ACTIONS(1653), - [anon_sym_in] = ACTIONS(1653), - [anon_sym_out] = ACTIONS(1653), - [anon_sym_inout] = ACTIONS(1653), - [anon_sym_bycopy] = ACTIONS(1653), - [anon_sym_byref] = ACTIONS(1653), - [anon_sym_oneway] = ACTIONS(1653), - [anon_sym__Nullable] = ACTIONS(1653), - [anon_sym__Nonnull] = ACTIONS(1653), - [anon_sym__Nullable_result] = ACTIONS(1653), - [anon_sym__Null_unspecified] = ACTIONS(1653), - [anon_sym___autoreleasing] = ACTIONS(1653), - [anon_sym___nullable] = ACTIONS(1653), - [anon_sym___nonnull] = ACTIONS(1653), - [anon_sym___strong] = ACTIONS(1653), - [anon_sym___weak] = ACTIONS(1653), - [anon_sym___bridge] = ACTIONS(1653), - [anon_sym___bridge_transfer] = ACTIONS(1653), - [anon_sym___bridge_retained] = ACTIONS(1653), - [anon_sym___unsafe_unretained] = ACTIONS(1653), - [anon_sym___block] = ACTIONS(1653), - [anon_sym___kindof] = ACTIONS(1653), - [anon_sym___unused] = ACTIONS(1653), - [anon_sym__Complex] = ACTIONS(1653), - [anon_sym___complex] = ACTIONS(1653), - [anon_sym_IBOutlet] = ACTIONS(1653), - [anon_sym_IBInspectable] = ACTIONS(1653), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1653), - [anon_sym_signed] = ACTIONS(1653), - [anon_sym_unsigned] = ACTIONS(1653), - [anon_sym_long] = ACTIONS(1653), - [anon_sym_short] = ACTIONS(1653), - [sym_primitive_type] = ACTIONS(1653), - [anon_sym_enum] = ACTIONS(1653), - [anon_sym_NS_ENUM] = ACTIONS(1653), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), - [anon_sym_NS_OPTIONS] = ACTIONS(1653), - [anon_sym_struct] = ACTIONS(1653), - [anon_sym_union] = ACTIONS(1653), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(1653), - [anon_sym_switch] = ACTIONS(1653), - [anon_sym_case] = ACTIONS(1653), - [anon_sym_default] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_do] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_goto] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_sizeof] = ACTIONS(1653), - [sym_number_literal] = ACTIONS(1655), - [anon_sym_L_SQUOTE] = ACTIONS(1655), - [anon_sym_u_SQUOTE] = ACTIONS(1655), - [anon_sym_U_SQUOTE] = ACTIONS(1655), - [anon_sym_u8_SQUOTE] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [anon_sym_L_DQUOTE] = ACTIONS(1655), - [anon_sym_u_DQUOTE] = ACTIONS(1655), - [anon_sym_U_DQUOTE] = ACTIONS(1655), - [anon_sym_u8_DQUOTE] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [sym_true] = ACTIONS(1653), - [sym_false] = ACTIONS(1653), - [sym_null] = ACTIONS(1653), + [350] = { + [sym_identifier] = ACTIONS(1401), + [aux_sym_preproc_include_token1] = ACTIONS(1399), + [aux_sym_preproc_def_token1] = ACTIONS(1399), + [aux_sym_preproc_if_token1] = ACTIONS(1401), + [aux_sym_preproc_if_token2] = ACTIONS(1401), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1401), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1401), + [anon_sym_LPAREN2] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_CARET] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_typedef] = ACTIONS(1401), + [anon_sym_extern] = ACTIONS(1401), + [anon_sym___attribute] = ACTIONS(1401), + [anon_sym___attribute__] = ACTIONS(1401), + [anon_sym___declspec] = ACTIONS(1401), + [anon_sym___cdecl] = ACTIONS(1401), + [anon_sym___clrcall] = ACTIONS(1401), + [anon_sym___stdcall] = ACTIONS(1401), + [anon_sym___fastcall] = ACTIONS(1401), + [anon_sym___thiscall] = ACTIONS(1401), + [anon_sym___vectorcall] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1399), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_auto] = ACTIONS(1401), + [anon_sym_register] = ACTIONS(1401), + [anon_sym_inline] = ACTIONS(1401), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_volatile] = ACTIONS(1401), + [anon_sym_restrict] = ACTIONS(1401), + [anon_sym__Atomic] = ACTIONS(1401), + [anon_sym_in] = ACTIONS(1401), + [anon_sym_out] = ACTIONS(1401), + [anon_sym_inout] = ACTIONS(1401), + [anon_sym_bycopy] = ACTIONS(1401), + [anon_sym_byref] = ACTIONS(1401), + [anon_sym_oneway] = ACTIONS(1401), + [anon_sym__Nullable] = ACTIONS(1401), + [anon_sym__Nonnull] = ACTIONS(1401), + [anon_sym__Nullable_result] = ACTIONS(1401), + [anon_sym__Null_unspecified] = ACTIONS(1401), + [anon_sym___autoreleasing] = ACTIONS(1401), + [anon_sym___nullable] = ACTIONS(1401), + [anon_sym___nonnull] = ACTIONS(1401), + [anon_sym___strong] = ACTIONS(1401), + [anon_sym___weak] = ACTIONS(1401), + [anon_sym___bridge] = ACTIONS(1401), + [anon_sym___bridge_transfer] = ACTIONS(1401), + [anon_sym___bridge_retained] = ACTIONS(1401), + [anon_sym___unsafe_unretained] = ACTIONS(1401), + [anon_sym___block] = ACTIONS(1401), + [anon_sym___kindof] = ACTIONS(1401), + [anon_sym___unused] = ACTIONS(1401), + [anon_sym__Complex] = ACTIONS(1401), + [anon_sym___complex] = ACTIONS(1401), + [anon_sym_IBOutlet] = ACTIONS(1401), + [anon_sym_IBInspectable] = ACTIONS(1401), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1401), + [anon_sym_signed] = ACTIONS(1401), + [anon_sym_unsigned] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [sym_primitive_type] = ACTIONS(1401), + [anon_sym_enum] = ACTIONS(1401), + [anon_sym_struct] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_else] = ACTIONS(1401), + [anon_sym_switch] = ACTIONS(1401), + [anon_sym_case] = ACTIONS(1401), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_do] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_goto] = ACTIONS(1401), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_sizeof] = ACTIONS(1401), + [sym_number_literal] = ACTIONS(1399), + [anon_sym_L_SQUOTE] = ACTIONS(1399), + [anon_sym_u_SQUOTE] = ACTIONS(1399), + [anon_sym_U_SQUOTE] = ACTIONS(1399), + [anon_sym_u8_SQUOTE] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_L_DQUOTE] = ACTIONS(1399), + [anon_sym_u_DQUOTE] = ACTIONS(1399), + [anon_sym_U_DQUOTE] = ACTIONS(1399), + [anon_sym_u8_DQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [sym_true] = ACTIONS(1401), + [sym_false] = ACTIONS(1401), + [sym_null] = ACTIONS(1401), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1655), - [anon_sym_ATimport] = ACTIONS(1655), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1653), - [anon_sym_ATcompatibility_alias] = ACTIONS(1655), - [anon_sym_ATprotocol] = ACTIONS(1655), - [anon_sym_ATclass] = ACTIONS(1655), - [anon_sym_ATinterface] = ACTIONS(1655), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1653), - [sym_method_attribute_specifier] = ACTIONS(1653), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1653), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1653), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1653), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1653), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1653), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1653), - [anon_sym_NS_AVAILABLE] = ACTIONS(1653), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1653), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1653), - [anon_sym_API_AVAILABLE] = ACTIONS(1653), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1653), - [anon_sym_API_DEPRECATED] = ACTIONS(1653), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1653), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1653), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1653), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1653), - [anon_sym___deprecated_msg] = ACTIONS(1653), - [anon_sym___deprecated_enum_msg] = ACTIONS(1653), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1653), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1653), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1653), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1653), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1653), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1653), - [anon_sym_ATimplementation] = ACTIONS(1655), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym___typeof] = ACTIONS(1653), - [anon_sym___typeof__] = ACTIONS(1653), - [sym_self] = ACTIONS(1653), - [sym_super] = ACTIONS(1653), - [sym_nil] = ACTIONS(1653), - [sym_id] = ACTIONS(1653), - [sym_instancetype] = ACTIONS(1653), - [sym_Class] = ACTIONS(1653), - [sym_SEL] = ACTIONS(1653), - [sym_IMP] = ACTIONS(1653), - [sym_BOOL] = ACTIONS(1653), - [sym_auto] = ACTIONS(1653), - [anon_sym_ATautoreleasepool] = ACTIONS(1655), - [anon_sym_ATsynchronized] = ACTIONS(1655), - [anon_sym_ATtry] = ACTIONS(1655), - [anon_sym_ATcatch] = ACTIONS(1655), - [anon_sym_ATfinally] = ACTIONS(1655), - [anon_sym_ATthrow] = ACTIONS(1655), - [anon_sym_ATselector] = ACTIONS(1655), - [anon_sym_ATencode] = ACTIONS(1655), - [anon_sym_AT] = ACTIONS(1653), - [sym_YES] = ACTIONS(1653), - [sym_NO] = ACTIONS(1653), - [anon_sym___builtin_available] = ACTIONS(1653), - [anon_sym_ATavailable] = ACTIONS(1655), - [anon_sym_va_arg] = ACTIONS(1653), + [anon_sym_POUNDimport] = ACTIONS(1399), + [anon_sym_ATimport] = ACTIONS(1399), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1401), + [anon_sym_ATcompatibility_alias] = ACTIONS(1399), + [anon_sym_ATprotocol] = ACTIONS(1399), + [anon_sym_ATclass] = ACTIONS(1399), + [anon_sym_ATinterface] = ACTIONS(1399), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1401), + [sym_method_attribute_specifier] = ACTIONS(1401), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1401), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1401), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1401), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1401), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1401), + [anon_sym_NS_AVAILABLE] = ACTIONS(1401), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1401), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_API_AVAILABLE] = ACTIONS(1401), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_API_DEPRECATED] = ACTIONS(1401), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1401), + [anon_sym___deprecated_msg] = ACTIONS(1401), + [anon_sym___deprecated_enum_msg] = ACTIONS(1401), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1401), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1401), + [anon_sym_ATimplementation] = ACTIONS(1399), + [anon_sym_NS_ENUM] = ACTIONS(1401), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1401), + [anon_sym_NS_OPTIONS] = ACTIONS(1401), + [anon_sym_typeof] = ACTIONS(1401), + [anon_sym___typeof] = ACTIONS(1401), + [anon_sym___typeof__] = ACTIONS(1401), + [sym_self] = ACTIONS(1401), + [sym_super] = ACTIONS(1401), + [sym_nil] = ACTIONS(1401), + [sym_id] = ACTIONS(1401), + [sym_instancetype] = ACTIONS(1401), + [sym_Class] = ACTIONS(1401), + [sym_SEL] = ACTIONS(1401), + [sym_IMP] = ACTIONS(1401), + [sym_BOOL] = ACTIONS(1401), + [sym_auto] = ACTIONS(1401), + [anon_sym_ATautoreleasepool] = ACTIONS(1399), + [anon_sym_ATsynchronized] = ACTIONS(1399), + [anon_sym_ATtry] = ACTIONS(1399), + [anon_sym_ATcatch] = ACTIONS(1399), + [anon_sym_ATfinally] = ACTIONS(1399), + [anon_sym_ATthrow] = ACTIONS(1399), + [anon_sym_ATselector] = ACTIONS(1399), + [anon_sym_ATencode] = ACTIONS(1399), + [anon_sym_AT] = ACTIONS(1401), + [sym_YES] = ACTIONS(1401), + [sym_NO] = ACTIONS(1401), + [anon_sym___builtin_available] = ACTIONS(1401), + [anon_sym_ATavailable] = ACTIONS(1399), + [anon_sym_va_arg] = ACTIONS(1401), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -100358,174 +87552,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [424] = { - [sym_identifier] = ACTIONS(1517), - [aux_sym_preproc_include_token1] = ACTIONS(1519), - [aux_sym_preproc_def_token1] = ACTIONS(1519), - [aux_sym_preproc_if_token1] = ACTIONS(1517), - [aux_sym_preproc_if_token2] = ACTIONS(1517), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1517), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1517), - [anon_sym_LPAREN2] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_TILDE] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_CARET] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_typedef] = ACTIONS(1517), - [anon_sym_extern] = ACTIONS(1517), - [anon_sym___attribute] = ACTIONS(1517), - [anon_sym___attribute__] = ACTIONS(1517), - [anon_sym___declspec] = ACTIONS(1517), - [anon_sym___cdecl] = ACTIONS(1517), - [anon_sym___clrcall] = ACTIONS(1517), - [anon_sym___stdcall] = ACTIONS(1517), - [anon_sym___fastcall] = ACTIONS(1517), - [anon_sym___thiscall] = ACTIONS(1517), - [anon_sym___vectorcall] = ACTIONS(1517), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_static] = ACTIONS(1517), - [anon_sym_auto] = ACTIONS(1517), - [anon_sym_register] = ACTIONS(1517), - [anon_sym_inline] = ACTIONS(1517), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [anon_sym_volatile] = ACTIONS(1517), - [anon_sym_restrict] = ACTIONS(1517), - [anon_sym__Atomic] = ACTIONS(1517), - [anon_sym_in] = ACTIONS(1517), - [anon_sym_out] = ACTIONS(1517), - [anon_sym_inout] = ACTIONS(1517), - [anon_sym_bycopy] = ACTIONS(1517), - [anon_sym_byref] = ACTIONS(1517), - [anon_sym_oneway] = ACTIONS(1517), - [anon_sym__Nullable] = ACTIONS(1517), - [anon_sym__Nonnull] = ACTIONS(1517), - [anon_sym__Nullable_result] = ACTIONS(1517), - [anon_sym__Null_unspecified] = ACTIONS(1517), - [anon_sym___autoreleasing] = ACTIONS(1517), - [anon_sym___nullable] = ACTIONS(1517), - [anon_sym___nonnull] = ACTIONS(1517), - [anon_sym___strong] = ACTIONS(1517), - [anon_sym___weak] = ACTIONS(1517), - [anon_sym___bridge] = ACTIONS(1517), - [anon_sym___bridge_transfer] = ACTIONS(1517), - [anon_sym___bridge_retained] = ACTIONS(1517), - [anon_sym___unsafe_unretained] = ACTIONS(1517), - [anon_sym___block] = ACTIONS(1517), - [anon_sym___kindof] = ACTIONS(1517), - [anon_sym___unused] = ACTIONS(1517), - [anon_sym__Complex] = ACTIONS(1517), - [anon_sym___complex] = ACTIONS(1517), - [anon_sym_IBOutlet] = ACTIONS(1517), - [anon_sym_IBInspectable] = ACTIONS(1517), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1517), - [anon_sym_signed] = ACTIONS(1517), - [anon_sym_unsigned] = ACTIONS(1517), - [anon_sym_long] = ACTIONS(1517), - [anon_sym_short] = ACTIONS(1517), - [sym_primitive_type] = ACTIONS(1517), - [anon_sym_enum] = ACTIONS(1517), - [anon_sym_NS_ENUM] = ACTIONS(1517), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1517), - [anon_sym_NS_OPTIONS] = ACTIONS(1517), - [anon_sym_struct] = ACTIONS(1517), - [anon_sym_union] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_else] = ACTIONS(1517), - [anon_sym_switch] = ACTIONS(1517), - [anon_sym_case] = ACTIONS(1517), - [anon_sym_default] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_do] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_break] = ACTIONS(1517), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_goto] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_sizeof] = ACTIONS(1517), - [sym_number_literal] = ACTIONS(1519), - [anon_sym_L_SQUOTE] = ACTIONS(1519), - [anon_sym_u_SQUOTE] = ACTIONS(1519), - [anon_sym_U_SQUOTE] = ACTIONS(1519), - [anon_sym_u8_SQUOTE] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1519), - [anon_sym_L_DQUOTE] = ACTIONS(1519), - [anon_sym_u_DQUOTE] = ACTIONS(1519), - [anon_sym_U_DQUOTE] = ACTIONS(1519), - [anon_sym_u8_DQUOTE] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [sym_true] = ACTIONS(1517), - [sym_false] = ACTIONS(1517), - [sym_null] = ACTIONS(1517), + [351] = { + [sym_identifier] = ACTIONS(1471), + [aux_sym_preproc_include_token1] = ACTIONS(1469), + [aux_sym_preproc_def_token1] = ACTIONS(1469), + [aux_sym_preproc_if_token1] = ACTIONS(1471), + [aux_sym_preproc_if_token2] = ACTIONS(1471), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1471), + [anon_sym_LPAREN2] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_typedef] = ACTIONS(1471), + [anon_sym_extern] = ACTIONS(1471), + [anon_sym___attribute] = ACTIONS(1471), + [anon_sym___attribute__] = ACTIONS(1471), + [anon_sym___declspec] = ACTIONS(1471), + [anon_sym___cdecl] = ACTIONS(1471), + [anon_sym___clrcall] = ACTIONS(1471), + [anon_sym___stdcall] = ACTIONS(1471), + [anon_sym___fastcall] = ACTIONS(1471), + [anon_sym___thiscall] = ACTIONS(1471), + [anon_sym___vectorcall] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_auto] = ACTIONS(1471), + [anon_sym_register] = ACTIONS(1471), + [anon_sym_inline] = ACTIONS(1471), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_volatile] = ACTIONS(1471), + [anon_sym_restrict] = ACTIONS(1471), + [anon_sym__Atomic] = ACTIONS(1471), + [anon_sym_in] = ACTIONS(1471), + [anon_sym_out] = ACTIONS(1471), + [anon_sym_inout] = ACTIONS(1471), + [anon_sym_bycopy] = ACTIONS(1471), + [anon_sym_byref] = ACTIONS(1471), + [anon_sym_oneway] = ACTIONS(1471), + [anon_sym__Nullable] = ACTIONS(1471), + [anon_sym__Nonnull] = ACTIONS(1471), + [anon_sym__Nullable_result] = ACTIONS(1471), + [anon_sym__Null_unspecified] = ACTIONS(1471), + [anon_sym___autoreleasing] = ACTIONS(1471), + [anon_sym___nullable] = ACTIONS(1471), + [anon_sym___nonnull] = ACTIONS(1471), + [anon_sym___strong] = ACTIONS(1471), + [anon_sym___weak] = ACTIONS(1471), + [anon_sym___bridge] = ACTIONS(1471), + [anon_sym___bridge_transfer] = ACTIONS(1471), + [anon_sym___bridge_retained] = ACTIONS(1471), + [anon_sym___unsafe_unretained] = ACTIONS(1471), + [anon_sym___block] = ACTIONS(1471), + [anon_sym___kindof] = ACTIONS(1471), + [anon_sym___unused] = ACTIONS(1471), + [anon_sym__Complex] = ACTIONS(1471), + [anon_sym___complex] = ACTIONS(1471), + [anon_sym_IBOutlet] = ACTIONS(1471), + [anon_sym_IBInspectable] = ACTIONS(1471), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1471), + [anon_sym_signed] = ACTIONS(1471), + [anon_sym_unsigned] = ACTIONS(1471), + [anon_sym_long] = ACTIONS(1471), + [anon_sym_short] = ACTIONS(1471), + [sym_primitive_type] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_struct] = ACTIONS(1471), + [anon_sym_union] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_else] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1471), + [anon_sym_case] = ACTIONS(1471), + [anon_sym_default] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_goto] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_sizeof] = ACTIONS(1471), + [sym_number_literal] = ACTIONS(1469), + [anon_sym_L_SQUOTE] = ACTIONS(1469), + [anon_sym_u_SQUOTE] = ACTIONS(1469), + [anon_sym_U_SQUOTE] = ACTIONS(1469), + [anon_sym_u8_SQUOTE] = ACTIONS(1469), + [anon_sym_SQUOTE] = ACTIONS(1469), + [anon_sym_L_DQUOTE] = ACTIONS(1469), + [anon_sym_u_DQUOTE] = ACTIONS(1469), + [anon_sym_U_DQUOTE] = ACTIONS(1469), + [anon_sym_u8_DQUOTE] = ACTIONS(1469), + [anon_sym_DQUOTE] = ACTIONS(1469), + [sym_true] = ACTIONS(1471), + [sym_false] = ACTIONS(1471), + [sym_null] = ACTIONS(1471), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1519), - [anon_sym_ATimport] = ACTIONS(1519), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1517), - [anon_sym_ATcompatibility_alias] = ACTIONS(1519), - [anon_sym_ATprotocol] = ACTIONS(1519), - [anon_sym_ATclass] = ACTIONS(1519), - [anon_sym_ATinterface] = ACTIONS(1519), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1517), - [sym_method_attribute_specifier] = ACTIONS(1517), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1517), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1517), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1517), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1517), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1517), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1517), - [anon_sym_NS_AVAILABLE] = ACTIONS(1517), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1517), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1517), - [anon_sym_API_AVAILABLE] = ACTIONS(1517), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1517), - [anon_sym_API_DEPRECATED] = ACTIONS(1517), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1517), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1517), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1517), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1517), - [anon_sym___deprecated_msg] = ACTIONS(1517), - [anon_sym___deprecated_enum_msg] = ACTIONS(1517), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1517), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1517), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1517), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1517), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1517), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1517), - [anon_sym_ATimplementation] = ACTIONS(1519), - [anon_sym_typeof] = ACTIONS(1517), - [anon_sym___typeof] = ACTIONS(1517), - [anon_sym___typeof__] = ACTIONS(1517), - [sym_self] = ACTIONS(1517), - [sym_super] = ACTIONS(1517), - [sym_nil] = ACTIONS(1517), - [sym_id] = ACTIONS(1517), - [sym_instancetype] = ACTIONS(1517), - [sym_Class] = ACTIONS(1517), - [sym_SEL] = ACTIONS(1517), - [sym_IMP] = ACTIONS(1517), - [sym_BOOL] = ACTIONS(1517), - [sym_auto] = ACTIONS(1517), - [anon_sym_ATautoreleasepool] = ACTIONS(1519), - [anon_sym_ATsynchronized] = ACTIONS(1519), - [anon_sym_ATtry] = ACTIONS(1519), - [anon_sym_ATcatch] = ACTIONS(1519), - [anon_sym_ATfinally] = ACTIONS(1519), - [anon_sym_ATthrow] = ACTIONS(1519), - [anon_sym_ATselector] = ACTIONS(1519), - [anon_sym_ATencode] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(1517), - [sym_YES] = ACTIONS(1517), - [sym_NO] = ACTIONS(1517), - [anon_sym___builtin_available] = ACTIONS(1517), - [anon_sym_ATavailable] = ACTIONS(1519), - [anon_sym_va_arg] = ACTIONS(1517), + [anon_sym_POUNDimport] = ACTIONS(1469), + [anon_sym_ATimport] = ACTIONS(1469), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1471), + [anon_sym_ATcompatibility_alias] = ACTIONS(1469), + [anon_sym_ATprotocol] = ACTIONS(1469), + [anon_sym_ATclass] = ACTIONS(1469), + [anon_sym_ATinterface] = ACTIONS(1469), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1471), + [sym_method_attribute_specifier] = ACTIONS(1471), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1471), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1471), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1471), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1471), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1471), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1471), + [anon_sym_NS_AVAILABLE] = ACTIONS(1471), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1471), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_API_AVAILABLE] = ACTIONS(1471), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1471), + [anon_sym_API_DEPRECATED] = ACTIONS(1471), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1471), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1471), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1471), + [anon_sym___deprecated_msg] = ACTIONS(1471), + [anon_sym___deprecated_enum_msg] = ACTIONS(1471), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1471), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1471), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1471), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1471), + [anon_sym_ATimplementation] = ACTIONS(1469), + [anon_sym_NS_ENUM] = ACTIONS(1471), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1471), + [anon_sym_NS_OPTIONS] = ACTIONS(1471), + [anon_sym_typeof] = ACTIONS(1471), + [anon_sym___typeof] = ACTIONS(1471), + [anon_sym___typeof__] = ACTIONS(1471), + [sym_self] = ACTIONS(1471), + [sym_super] = ACTIONS(1471), + [sym_nil] = ACTIONS(1471), + [sym_id] = ACTIONS(1471), + [sym_instancetype] = ACTIONS(1471), + [sym_Class] = ACTIONS(1471), + [sym_SEL] = ACTIONS(1471), + [sym_IMP] = ACTIONS(1471), + [sym_BOOL] = ACTIONS(1471), + [sym_auto] = ACTIONS(1471), + [anon_sym_ATautoreleasepool] = ACTIONS(1469), + [anon_sym_ATsynchronized] = ACTIONS(1469), + [anon_sym_ATtry] = ACTIONS(1469), + [anon_sym_ATcatch] = ACTIONS(1469), + [anon_sym_ATfinally] = ACTIONS(1469), + [anon_sym_ATthrow] = ACTIONS(1469), + [anon_sym_ATselector] = ACTIONS(1469), + [anon_sym_ATencode] = ACTIONS(1469), + [anon_sym_AT] = ACTIONS(1471), + [sym_YES] = ACTIONS(1471), + [sym_NO] = ACTIONS(1471), + [anon_sym___builtin_available] = ACTIONS(1471), + [anon_sym_ATavailable] = ACTIONS(1469), + [anon_sym_va_arg] = ACTIONS(1471), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -100533,174 +87727,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [425] = { - [sym_identifier] = ACTIONS(1657), - [aux_sym_preproc_include_token1] = ACTIONS(1659), - [aux_sym_preproc_def_token1] = ACTIONS(1659), - [aux_sym_preproc_if_token1] = ACTIONS(1657), - [aux_sym_preproc_if_token2] = ACTIONS(1657), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1657), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1659), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_CARET] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_typedef] = ACTIONS(1657), - [anon_sym_extern] = ACTIONS(1657), - [anon_sym___attribute] = ACTIONS(1657), - [anon_sym___attribute__] = ACTIONS(1657), - [anon_sym___declspec] = ACTIONS(1657), - [anon_sym___cdecl] = ACTIONS(1657), - [anon_sym___clrcall] = ACTIONS(1657), - [anon_sym___stdcall] = ACTIONS(1657), - [anon_sym___fastcall] = ACTIONS(1657), - [anon_sym___thiscall] = ACTIONS(1657), - [anon_sym___vectorcall] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1659), - [anon_sym_LBRACK] = ACTIONS(1659), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_auto] = ACTIONS(1657), - [anon_sym_register] = ACTIONS(1657), - [anon_sym_inline] = ACTIONS(1657), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_volatile] = ACTIONS(1657), - [anon_sym_restrict] = ACTIONS(1657), - [anon_sym__Atomic] = ACTIONS(1657), - [anon_sym_in] = ACTIONS(1657), - [anon_sym_out] = ACTIONS(1657), - [anon_sym_inout] = ACTIONS(1657), - [anon_sym_bycopy] = ACTIONS(1657), - [anon_sym_byref] = ACTIONS(1657), - [anon_sym_oneway] = ACTIONS(1657), - [anon_sym__Nullable] = ACTIONS(1657), - [anon_sym__Nonnull] = ACTIONS(1657), - [anon_sym__Nullable_result] = ACTIONS(1657), - [anon_sym__Null_unspecified] = ACTIONS(1657), - [anon_sym___autoreleasing] = ACTIONS(1657), - [anon_sym___nullable] = ACTIONS(1657), - [anon_sym___nonnull] = ACTIONS(1657), - [anon_sym___strong] = ACTIONS(1657), - [anon_sym___weak] = ACTIONS(1657), - [anon_sym___bridge] = ACTIONS(1657), - [anon_sym___bridge_transfer] = ACTIONS(1657), - [anon_sym___bridge_retained] = ACTIONS(1657), - [anon_sym___unsafe_unretained] = ACTIONS(1657), - [anon_sym___block] = ACTIONS(1657), - [anon_sym___kindof] = ACTIONS(1657), - [anon_sym___unused] = ACTIONS(1657), - [anon_sym__Complex] = ACTIONS(1657), - [anon_sym___complex] = ACTIONS(1657), - [anon_sym_IBOutlet] = ACTIONS(1657), - [anon_sym_IBInspectable] = ACTIONS(1657), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1657), - [anon_sym_signed] = ACTIONS(1657), - [anon_sym_unsigned] = ACTIONS(1657), - [anon_sym_long] = ACTIONS(1657), - [anon_sym_short] = ACTIONS(1657), - [sym_primitive_type] = ACTIONS(1657), - [anon_sym_enum] = ACTIONS(1657), - [anon_sym_NS_ENUM] = ACTIONS(1657), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1657), - [anon_sym_NS_OPTIONS] = ACTIONS(1657), - [anon_sym_struct] = ACTIONS(1657), - [anon_sym_union] = ACTIONS(1657), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_else] = ACTIONS(1657), - [anon_sym_switch] = ACTIONS(1657), - [anon_sym_case] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_do] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_goto] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_sizeof] = ACTIONS(1657), - [sym_number_literal] = ACTIONS(1659), - [anon_sym_L_SQUOTE] = ACTIONS(1659), - [anon_sym_u_SQUOTE] = ACTIONS(1659), - [anon_sym_U_SQUOTE] = ACTIONS(1659), - [anon_sym_u8_SQUOTE] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_L_DQUOTE] = ACTIONS(1659), - [anon_sym_u_DQUOTE] = ACTIONS(1659), - [anon_sym_U_DQUOTE] = ACTIONS(1659), - [anon_sym_u8_DQUOTE] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [sym_true] = ACTIONS(1657), - [sym_false] = ACTIONS(1657), - [sym_null] = ACTIONS(1657), + [352] = { + [sym_identifier] = ACTIONS(1471), + [aux_sym_preproc_include_token1] = ACTIONS(1469), + [aux_sym_preproc_def_token1] = ACTIONS(1469), + [aux_sym_preproc_if_token1] = ACTIONS(1471), + [aux_sym_preproc_if_token2] = ACTIONS(1471), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1471), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1471), + [anon_sym_LPAREN2] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_typedef] = ACTIONS(1471), + [anon_sym_extern] = ACTIONS(1471), + [anon_sym___attribute] = ACTIONS(1471), + [anon_sym___attribute__] = ACTIONS(1471), + [anon_sym___declspec] = ACTIONS(1471), + [anon_sym___cdecl] = ACTIONS(1471), + [anon_sym___clrcall] = ACTIONS(1471), + [anon_sym___stdcall] = ACTIONS(1471), + [anon_sym___fastcall] = ACTIONS(1471), + [anon_sym___thiscall] = ACTIONS(1471), + [anon_sym___vectorcall] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_auto] = ACTIONS(1471), + [anon_sym_register] = ACTIONS(1471), + [anon_sym_inline] = ACTIONS(1471), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_volatile] = ACTIONS(1471), + [anon_sym_restrict] = ACTIONS(1471), + [anon_sym__Atomic] = ACTIONS(1471), + [anon_sym_in] = ACTIONS(1471), + [anon_sym_out] = ACTIONS(1471), + [anon_sym_inout] = ACTIONS(1471), + [anon_sym_bycopy] = ACTIONS(1471), + [anon_sym_byref] = ACTIONS(1471), + [anon_sym_oneway] = ACTIONS(1471), + [anon_sym__Nullable] = ACTIONS(1471), + [anon_sym__Nonnull] = ACTIONS(1471), + [anon_sym__Nullable_result] = ACTIONS(1471), + [anon_sym__Null_unspecified] = ACTIONS(1471), + [anon_sym___autoreleasing] = ACTIONS(1471), + [anon_sym___nullable] = ACTIONS(1471), + [anon_sym___nonnull] = ACTIONS(1471), + [anon_sym___strong] = ACTIONS(1471), + [anon_sym___weak] = ACTIONS(1471), + [anon_sym___bridge] = ACTIONS(1471), + [anon_sym___bridge_transfer] = ACTIONS(1471), + [anon_sym___bridge_retained] = ACTIONS(1471), + [anon_sym___unsafe_unretained] = ACTIONS(1471), + [anon_sym___block] = ACTIONS(1471), + [anon_sym___kindof] = ACTIONS(1471), + [anon_sym___unused] = ACTIONS(1471), + [anon_sym__Complex] = ACTIONS(1471), + [anon_sym___complex] = ACTIONS(1471), + [anon_sym_IBOutlet] = ACTIONS(1471), + [anon_sym_IBInspectable] = ACTIONS(1471), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1471), + [anon_sym_signed] = ACTIONS(1471), + [anon_sym_unsigned] = ACTIONS(1471), + [anon_sym_long] = ACTIONS(1471), + [anon_sym_short] = ACTIONS(1471), + [sym_primitive_type] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_struct] = ACTIONS(1471), + [anon_sym_union] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_else] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1471), + [anon_sym_case] = ACTIONS(1471), + [anon_sym_default] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_do] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_goto] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1469), + [anon_sym_sizeof] = ACTIONS(1471), + [sym_number_literal] = ACTIONS(1469), + [anon_sym_L_SQUOTE] = ACTIONS(1469), + [anon_sym_u_SQUOTE] = ACTIONS(1469), + [anon_sym_U_SQUOTE] = ACTIONS(1469), + [anon_sym_u8_SQUOTE] = ACTIONS(1469), + [anon_sym_SQUOTE] = ACTIONS(1469), + [anon_sym_L_DQUOTE] = ACTIONS(1469), + [anon_sym_u_DQUOTE] = ACTIONS(1469), + [anon_sym_U_DQUOTE] = ACTIONS(1469), + [anon_sym_u8_DQUOTE] = ACTIONS(1469), + [anon_sym_DQUOTE] = ACTIONS(1469), + [sym_true] = ACTIONS(1471), + [sym_false] = ACTIONS(1471), + [sym_null] = ACTIONS(1471), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1659), - [anon_sym_ATimport] = ACTIONS(1659), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1657), - [anon_sym_ATcompatibility_alias] = ACTIONS(1659), - [anon_sym_ATprotocol] = ACTIONS(1659), - [anon_sym_ATclass] = ACTIONS(1659), - [anon_sym_ATinterface] = ACTIONS(1659), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1657), - [sym_method_attribute_specifier] = ACTIONS(1657), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1657), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1657), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1657), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1657), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1657), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1657), - [anon_sym_NS_AVAILABLE] = ACTIONS(1657), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1657), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1657), - [anon_sym_API_AVAILABLE] = ACTIONS(1657), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1657), - [anon_sym_API_DEPRECATED] = ACTIONS(1657), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1657), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1657), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1657), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1657), - [anon_sym___deprecated_msg] = ACTIONS(1657), - [anon_sym___deprecated_enum_msg] = ACTIONS(1657), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1657), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1657), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1657), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1657), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1657), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1657), - [anon_sym_ATimplementation] = ACTIONS(1659), - [anon_sym_typeof] = ACTIONS(1657), - [anon_sym___typeof] = ACTIONS(1657), - [anon_sym___typeof__] = ACTIONS(1657), - [sym_self] = ACTIONS(1657), - [sym_super] = ACTIONS(1657), - [sym_nil] = ACTIONS(1657), - [sym_id] = ACTIONS(1657), - [sym_instancetype] = ACTIONS(1657), - [sym_Class] = ACTIONS(1657), - [sym_SEL] = ACTIONS(1657), - [sym_IMP] = ACTIONS(1657), - [sym_BOOL] = ACTIONS(1657), - [sym_auto] = ACTIONS(1657), - [anon_sym_ATautoreleasepool] = ACTIONS(1659), - [anon_sym_ATsynchronized] = ACTIONS(1659), - [anon_sym_ATtry] = ACTIONS(1659), - [anon_sym_ATcatch] = ACTIONS(1659), - [anon_sym_ATfinally] = ACTIONS(1659), - [anon_sym_ATthrow] = ACTIONS(1659), - [anon_sym_ATselector] = ACTIONS(1659), - [anon_sym_ATencode] = ACTIONS(1659), - [anon_sym_AT] = ACTIONS(1657), - [sym_YES] = ACTIONS(1657), - [sym_NO] = ACTIONS(1657), - [anon_sym___builtin_available] = ACTIONS(1657), - [anon_sym_ATavailable] = ACTIONS(1659), - [anon_sym_va_arg] = ACTIONS(1657), + [anon_sym_POUNDimport] = ACTIONS(1469), + [anon_sym_ATimport] = ACTIONS(1469), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1471), + [anon_sym_ATcompatibility_alias] = ACTIONS(1469), + [anon_sym_ATprotocol] = ACTIONS(1469), + [anon_sym_ATclass] = ACTIONS(1469), + [anon_sym_ATinterface] = ACTIONS(1469), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1471), + [sym_method_attribute_specifier] = ACTIONS(1471), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1471), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1471), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1471), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1471), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1471), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1471), + [anon_sym_NS_AVAILABLE] = ACTIONS(1471), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1471), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_API_AVAILABLE] = ACTIONS(1471), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1471), + [anon_sym_API_DEPRECATED] = ACTIONS(1471), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1471), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1471), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1471), + [anon_sym___deprecated_msg] = ACTIONS(1471), + [anon_sym___deprecated_enum_msg] = ACTIONS(1471), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1471), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1471), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1471), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1471), + [anon_sym_ATimplementation] = ACTIONS(1469), + [anon_sym_NS_ENUM] = ACTIONS(1471), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1471), + [anon_sym_NS_OPTIONS] = ACTIONS(1471), + [anon_sym_typeof] = ACTIONS(1471), + [anon_sym___typeof] = ACTIONS(1471), + [anon_sym___typeof__] = ACTIONS(1471), + [sym_self] = ACTIONS(1471), + [sym_super] = ACTIONS(1471), + [sym_nil] = ACTIONS(1471), + [sym_id] = ACTIONS(1471), + [sym_instancetype] = ACTIONS(1471), + [sym_Class] = ACTIONS(1471), + [sym_SEL] = ACTIONS(1471), + [sym_IMP] = ACTIONS(1471), + [sym_BOOL] = ACTIONS(1471), + [sym_auto] = ACTIONS(1471), + [anon_sym_ATautoreleasepool] = ACTIONS(1469), + [anon_sym_ATsynchronized] = ACTIONS(1469), + [anon_sym_ATtry] = ACTIONS(1469), + [anon_sym_ATcatch] = ACTIONS(1469), + [anon_sym_ATfinally] = ACTIONS(1469), + [anon_sym_ATthrow] = ACTIONS(1469), + [anon_sym_ATselector] = ACTIONS(1469), + [anon_sym_ATencode] = ACTIONS(1469), + [anon_sym_AT] = ACTIONS(1471), + [sym_YES] = ACTIONS(1471), + [sym_NO] = ACTIONS(1471), + [anon_sym___builtin_available] = ACTIONS(1471), + [anon_sym_ATavailable] = ACTIONS(1469), + [anon_sym_va_arg] = ACTIONS(1471), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -100708,174 +87902,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [426] = { - [sym_identifier] = ACTIONS(1513), - [aux_sym_preproc_include_token1] = ACTIONS(1515), - [aux_sym_preproc_def_token1] = ACTIONS(1515), - [aux_sym_preproc_if_token1] = ACTIONS(1513), - [aux_sym_preproc_if_token2] = ACTIONS(1513), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1513), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1513), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_STAR] = ACTIONS(1515), - [anon_sym_CARET] = ACTIONS(1515), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_typedef] = ACTIONS(1513), - [anon_sym_extern] = ACTIONS(1513), - [anon_sym___attribute] = ACTIONS(1513), - [anon_sym___attribute__] = ACTIONS(1513), - [anon_sym___declspec] = ACTIONS(1513), - [anon_sym___cdecl] = ACTIONS(1513), - [anon_sym___clrcall] = ACTIONS(1513), - [anon_sym___stdcall] = ACTIONS(1513), - [anon_sym___fastcall] = ACTIONS(1513), - [anon_sym___thiscall] = ACTIONS(1513), - [anon_sym___vectorcall] = ACTIONS(1513), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_static] = ACTIONS(1513), - [anon_sym_auto] = ACTIONS(1513), - [anon_sym_register] = ACTIONS(1513), - [anon_sym_inline] = ACTIONS(1513), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_volatile] = ACTIONS(1513), - [anon_sym_restrict] = ACTIONS(1513), - [anon_sym__Atomic] = ACTIONS(1513), - [anon_sym_in] = ACTIONS(1513), - [anon_sym_out] = ACTIONS(1513), - [anon_sym_inout] = ACTIONS(1513), - [anon_sym_bycopy] = ACTIONS(1513), - [anon_sym_byref] = ACTIONS(1513), - [anon_sym_oneway] = ACTIONS(1513), - [anon_sym__Nullable] = ACTIONS(1513), - [anon_sym__Nonnull] = ACTIONS(1513), - [anon_sym__Nullable_result] = ACTIONS(1513), - [anon_sym__Null_unspecified] = ACTIONS(1513), - [anon_sym___autoreleasing] = ACTIONS(1513), - [anon_sym___nullable] = ACTIONS(1513), - [anon_sym___nonnull] = ACTIONS(1513), - [anon_sym___strong] = ACTIONS(1513), - [anon_sym___weak] = ACTIONS(1513), - [anon_sym___bridge] = ACTIONS(1513), - [anon_sym___bridge_transfer] = ACTIONS(1513), - [anon_sym___bridge_retained] = ACTIONS(1513), - [anon_sym___unsafe_unretained] = ACTIONS(1513), - [anon_sym___block] = ACTIONS(1513), - [anon_sym___kindof] = ACTIONS(1513), - [anon_sym___unused] = ACTIONS(1513), - [anon_sym__Complex] = ACTIONS(1513), - [anon_sym___complex] = ACTIONS(1513), - [anon_sym_IBOutlet] = ACTIONS(1513), - [anon_sym_IBInspectable] = ACTIONS(1513), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1513), - [anon_sym_signed] = ACTIONS(1513), - [anon_sym_unsigned] = ACTIONS(1513), - [anon_sym_long] = ACTIONS(1513), - [anon_sym_short] = ACTIONS(1513), - [sym_primitive_type] = ACTIONS(1513), - [anon_sym_enum] = ACTIONS(1513), - [anon_sym_NS_ENUM] = ACTIONS(1513), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1513), - [anon_sym_NS_OPTIONS] = ACTIONS(1513), - [anon_sym_struct] = ACTIONS(1513), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_if] = ACTIONS(1513), - [anon_sym_else] = ACTIONS(1513), - [anon_sym_switch] = ACTIONS(1513), - [anon_sym_case] = ACTIONS(1513), - [anon_sym_default] = ACTIONS(1513), - [anon_sym_while] = ACTIONS(1513), - [anon_sym_do] = ACTIONS(1513), - [anon_sym_for] = ACTIONS(1513), - [anon_sym_return] = ACTIONS(1513), - [anon_sym_break] = ACTIONS(1513), - [anon_sym_continue] = ACTIONS(1513), - [anon_sym_goto] = ACTIONS(1513), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_sizeof] = ACTIONS(1513), - [sym_number_literal] = ACTIONS(1515), - [anon_sym_L_SQUOTE] = ACTIONS(1515), - [anon_sym_u_SQUOTE] = ACTIONS(1515), - [anon_sym_U_SQUOTE] = ACTIONS(1515), - [anon_sym_u8_SQUOTE] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1515), - [anon_sym_L_DQUOTE] = ACTIONS(1515), - [anon_sym_u_DQUOTE] = ACTIONS(1515), - [anon_sym_U_DQUOTE] = ACTIONS(1515), - [anon_sym_u8_DQUOTE] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [sym_true] = ACTIONS(1513), - [sym_false] = ACTIONS(1513), - [sym_null] = ACTIONS(1513), + [353] = { + [sym_identifier] = ACTIONS(1479), + [aux_sym_preproc_include_token1] = ACTIONS(1477), + [aux_sym_preproc_def_token1] = ACTIONS(1477), + [aux_sym_preproc_if_token1] = ACTIONS(1479), + [aux_sym_preproc_if_token2] = ACTIONS(1479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1479), + [anon_sym_LPAREN2] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1477), + [anon_sym_TILDE] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1477), + [anon_sym_typedef] = ACTIONS(1479), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym___attribute] = ACTIONS(1479), + [anon_sym___attribute__] = ACTIONS(1479), + [anon_sym___declspec] = ACTIONS(1479), + [anon_sym___cdecl] = ACTIONS(1479), + [anon_sym___clrcall] = ACTIONS(1479), + [anon_sym___stdcall] = ACTIONS(1479), + [anon_sym___fastcall] = ACTIONS(1479), + [anon_sym___thiscall] = ACTIONS(1479), + [anon_sym___vectorcall] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_auto] = ACTIONS(1479), + [anon_sym_register] = ACTIONS(1479), + [anon_sym_inline] = ACTIONS(1479), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [anon_sym_volatile] = ACTIONS(1479), + [anon_sym_restrict] = ACTIONS(1479), + [anon_sym__Atomic] = ACTIONS(1479), + [anon_sym_in] = ACTIONS(1479), + [anon_sym_out] = ACTIONS(1479), + [anon_sym_inout] = ACTIONS(1479), + [anon_sym_bycopy] = ACTIONS(1479), + [anon_sym_byref] = ACTIONS(1479), + [anon_sym_oneway] = ACTIONS(1479), + [anon_sym__Nullable] = ACTIONS(1479), + [anon_sym__Nonnull] = ACTIONS(1479), + [anon_sym__Nullable_result] = ACTIONS(1479), + [anon_sym__Null_unspecified] = ACTIONS(1479), + [anon_sym___autoreleasing] = ACTIONS(1479), + [anon_sym___nullable] = ACTIONS(1479), + [anon_sym___nonnull] = ACTIONS(1479), + [anon_sym___strong] = ACTIONS(1479), + [anon_sym___weak] = ACTIONS(1479), + [anon_sym___bridge] = ACTIONS(1479), + [anon_sym___bridge_transfer] = ACTIONS(1479), + [anon_sym___bridge_retained] = ACTIONS(1479), + [anon_sym___unsafe_unretained] = ACTIONS(1479), + [anon_sym___block] = ACTIONS(1479), + [anon_sym___kindof] = ACTIONS(1479), + [anon_sym___unused] = ACTIONS(1479), + [anon_sym__Complex] = ACTIONS(1479), + [anon_sym___complex] = ACTIONS(1479), + [anon_sym_IBOutlet] = ACTIONS(1479), + [anon_sym_IBInspectable] = ACTIONS(1479), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1479), + [anon_sym_signed] = ACTIONS(1479), + [anon_sym_unsigned] = ACTIONS(1479), + [anon_sym_long] = ACTIONS(1479), + [anon_sym_short] = ACTIONS(1479), + [sym_primitive_type] = ACTIONS(1479), + [anon_sym_enum] = ACTIONS(1479), + [anon_sym_struct] = ACTIONS(1479), + [anon_sym_union] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_switch] = ACTIONS(1479), + [anon_sym_case] = ACTIONS(1479), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_do] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_goto] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1477), + [anon_sym_PLUS_PLUS] = ACTIONS(1477), + [anon_sym_sizeof] = ACTIONS(1479), + [sym_number_literal] = ACTIONS(1477), + [anon_sym_L_SQUOTE] = ACTIONS(1477), + [anon_sym_u_SQUOTE] = ACTIONS(1477), + [anon_sym_U_SQUOTE] = ACTIONS(1477), + [anon_sym_u8_SQUOTE] = ACTIONS(1477), + [anon_sym_SQUOTE] = ACTIONS(1477), + [anon_sym_L_DQUOTE] = ACTIONS(1477), + [anon_sym_u_DQUOTE] = ACTIONS(1477), + [anon_sym_U_DQUOTE] = ACTIONS(1477), + [anon_sym_u8_DQUOTE] = ACTIONS(1477), + [anon_sym_DQUOTE] = ACTIONS(1477), + [sym_true] = ACTIONS(1479), + [sym_false] = ACTIONS(1479), + [sym_null] = ACTIONS(1479), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1515), - [anon_sym_ATimport] = ACTIONS(1515), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1513), - [anon_sym_ATcompatibility_alias] = ACTIONS(1515), - [anon_sym_ATprotocol] = ACTIONS(1515), - [anon_sym_ATclass] = ACTIONS(1515), - [anon_sym_ATinterface] = ACTIONS(1515), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1513), - [sym_method_attribute_specifier] = ACTIONS(1513), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1513), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1513), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1513), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1513), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1513), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1513), - [anon_sym_NS_AVAILABLE] = ACTIONS(1513), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1513), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1513), - [anon_sym_API_AVAILABLE] = ACTIONS(1513), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1513), - [anon_sym_API_DEPRECATED] = ACTIONS(1513), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1513), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1513), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1513), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1513), - [anon_sym___deprecated_msg] = ACTIONS(1513), - [anon_sym___deprecated_enum_msg] = ACTIONS(1513), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1513), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1513), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1513), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1513), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1513), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1513), - [anon_sym_ATimplementation] = ACTIONS(1515), - [anon_sym_typeof] = ACTIONS(1513), - [anon_sym___typeof] = ACTIONS(1513), - [anon_sym___typeof__] = ACTIONS(1513), - [sym_self] = ACTIONS(1513), - [sym_super] = ACTIONS(1513), - [sym_nil] = ACTIONS(1513), - [sym_id] = ACTIONS(1513), - [sym_instancetype] = ACTIONS(1513), - [sym_Class] = ACTIONS(1513), - [sym_SEL] = ACTIONS(1513), - [sym_IMP] = ACTIONS(1513), - [sym_BOOL] = ACTIONS(1513), - [sym_auto] = ACTIONS(1513), - [anon_sym_ATautoreleasepool] = ACTIONS(1515), - [anon_sym_ATsynchronized] = ACTIONS(1515), - [anon_sym_ATtry] = ACTIONS(1515), - [anon_sym_ATcatch] = ACTIONS(1515), - [anon_sym_ATfinally] = ACTIONS(1515), - [anon_sym_ATthrow] = ACTIONS(1515), - [anon_sym_ATselector] = ACTIONS(1515), - [anon_sym_ATencode] = ACTIONS(1515), - [anon_sym_AT] = ACTIONS(1513), - [sym_YES] = ACTIONS(1513), - [sym_NO] = ACTIONS(1513), - [anon_sym___builtin_available] = ACTIONS(1513), - [anon_sym_ATavailable] = ACTIONS(1515), - [anon_sym_va_arg] = ACTIONS(1513), + [anon_sym_POUNDimport] = ACTIONS(1477), + [anon_sym_ATimport] = ACTIONS(1477), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1479), + [anon_sym_ATcompatibility_alias] = ACTIONS(1477), + [anon_sym_ATprotocol] = ACTIONS(1477), + [anon_sym_ATclass] = ACTIONS(1477), + [anon_sym_ATinterface] = ACTIONS(1477), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1479), + [sym_method_attribute_specifier] = ACTIONS(1479), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1479), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1479), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1479), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1479), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1479), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1479), + [anon_sym_NS_AVAILABLE] = ACTIONS(1479), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1479), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1479), + [anon_sym_API_AVAILABLE] = ACTIONS(1479), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1479), + [anon_sym_API_DEPRECATED] = ACTIONS(1479), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1479), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1479), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1479), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1479), + [anon_sym___deprecated_msg] = ACTIONS(1479), + [anon_sym___deprecated_enum_msg] = ACTIONS(1479), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1479), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1479), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1479), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1479), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1479), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1479), + [anon_sym_ATimplementation] = ACTIONS(1477), + [anon_sym_NS_ENUM] = ACTIONS(1479), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1479), + [anon_sym_NS_OPTIONS] = ACTIONS(1479), + [anon_sym_typeof] = ACTIONS(1479), + [anon_sym___typeof] = ACTIONS(1479), + [anon_sym___typeof__] = ACTIONS(1479), + [sym_self] = ACTIONS(1479), + [sym_super] = ACTIONS(1479), + [sym_nil] = ACTIONS(1479), + [sym_id] = ACTIONS(1479), + [sym_instancetype] = ACTIONS(1479), + [sym_Class] = ACTIONS(1479), + [sym_SEL] = ACTIONS(1479), + [sym_IMP] = ACTIONS(1479), + [sym_BOOL] = ACTIONS(1479), + [sym_auto] = ACTIONS(1479), + [anon_sym_ATautoreleasepool] = ACTIONS(1477), + [anon_sym_ATsynchronized] = ACTIONS(1477), + [anon_sym_ATtry] = ACTIONS(1477), + [anon_sym_ATcatch] = ACTIONS(1477), + [anon_sym_ATfinally] = ACTIONS(1477), + [anon_sym_ATthrow] = ACTIONS(1477), + [anon_sym_ATselector] = ACTIONS(1477), + [anon_sym_ATencode] = ACTIONS(1477), + [anon_sym_AT] = ACTIONS(1479), + [sym_YES] = ACTIONS(1479), + [sym_NO] = ACTIONS(1479), + [anon_sym___builtin_available] = ACTIONS(1479), + [anon_sym_ATavailable] = ACTIONS(1477), + [anon_sym_va_arg] = ACTIONS(1479), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -100883,2457 +88077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [427] = { - [sym_identifier] = ACTIONS(1509), - [aux_sym_preproc_include_token1] = ACTIONS(1511), - [aux_sym_preproc_def_token1] = ACTIONS(1511), - [aux_sym_preproc_if_token1] = ACTIONS(1509), - [aux_sym_preproc_if_token2] = ACTIONS(1509), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1509), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1509), - [anon_sym_LPAREN2] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1511), - [anon_sym_typedef] = ACTIONS(1509), - [anon_sym_extern] = ACTIONS(1509), - [anon_sym___attribute] = ACTIONS(1509), - [anon_sym___attribute__] = ACTIONS(1509), - [anon_sym___declspec] = ACTIONS(1509), - [anon_sym___cdecl] = ACTIONS(1509), - [anon_sym___clrcall] = ACTIONS(1509), - [anon_sym___stdcall] = ACTIONS(1509), - [anon_sym___fastcall] = ACTIONS(1509), - [anon_sym___thiscall] = ACTIONS(1509), - [anon_sym___vectorcall] = ACTIONS(1509), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_auto] = ACTIONS(1509), - [anon_sym_register] = ACTIONS(1509), - [anon_sym_inline] = ACTIONS(1509), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_volatile] = ACTIONS(1509), - [anon_sym_restrict] = ACTIONS(1509), - [anon_sym__Atomic] = ACTIONS(1509), - [anon_sym_in] = ACTIONS(1509), - [anon_sym_out] = ACTIONS(1509), - [anon_sym_inout] = ACTIONS(1509), - [anon_sym_bycopy] = ACTIONS(1509), - [anon_sym_byref] = ACTIONS(1509), - [anon_sym_oneway] = ACTIONS(1509), - [anon_sym__Nullable] = ACTIONS(1509), - [anon_sym__Nonnull] = ACTIONS(1509), - [anon_sym__Nullable_result] = ACTIONS(1509), - [anon_sym__Null_unspecified] = ACTIONS(1509), - [anon_sym___autoreleasing] = ACTIONS(1509), - [anon_sym___nullable] = ACTIONS(1509), - [anon_sym___nonnull] = ACTIONS(1509), - [anon_sym___strong] = ACTIONS(1509), - [anon_sym___weak] = ACTIONS(1509), - [anon_sym___bridge] = ACTIONS(1509), - [anon_sym___bridge_transfer] = ACTIONS(1509), - [anon_sym___bridge_retained] = ACTIONS(1509), - [anon_sym___unsafe_unretained] = ACTIONS(1509), - [anon_sym___block] = ACTIONS(1509), - [anon_sym___kindof] = ACTIONS(1509), - [anon_sym___unused] = ACTIONS(1509), - [anon_sym__Complex] = ACTIONS(1509), - [anon_sym___complex] = ACTIONS(1509), - [anon_sym_IBOutlet] = ACTIONS(1509), - [anon_sym_IBInspectable] = ACTIONS(1509), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1509), - [anon_sym_signed] = ACTIONS(1509), - [anon_sym_unsigned] = ACTIONS(1509), - [anon_sym_long] = ACTIONS(1509), - [anon_sym_short] = ACTIONS(1509), - [sym_primitive_type] = ACTIONS(1509), - [anon_sym_enum] = ACTIONS(1509), - [anon_sym_NS_ENUM] = ACTIONS(1509), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1509), - [anon_sym_NS_OPTIONS] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1509), - [anon_sym_else] = ACTIONS(1509), - [anon_sym_switch] = ACTIONS(1509), - [anon_sym_case] = ACTIONS(1509), - [anon_sym_default] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1509), - [anon_sym_do] = ACTIONS(1509), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_return] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1509), - [anon_sym_continue] = ACTIONS(1509), - [anon_sym_goto] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_sizeof] = ACTIONS(1509), - [sym_number_literal] = ACTIONS(1511), - [anon_sym_L_SQUOTE] = ACTIONS(1511), - [anon_sym_u_SQUOTE] = ACTIONS(1511), - [anon_sym_U_SQUOTE] = ACTIONS(1511), - [anon_sym_u8_SQUOTE] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1511), - [anon_sym_L_DQUOTE] = ACTIONS(1511), - [anon_sym_u_DQUOTE] = ACTIONS(1511), - [anon_sym_U_DQUOTE] = ACTIONS(1511), - [anon_sym_u8_DQUOTE] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(1511), - [sym_true] = ACTIONS(1509), - [sym_false] = ACTIONS(1509), - [sym_null] = ACTIONS(1509), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1511), - [anon_sym_ATimport] = ACTIONS(1511), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1509), - [anon_sym_ATcompatibility_alias] = ACTIONS(1511), - [anon_sym_ATprotocol] = ACTIONS(1511), - [anon_sym_ATclass] = ACTIONS(1511), - [anon_sym_ATinterface] = ACTIONS(1511), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1509), - [sym_method_attribute_specifier] = ACTIONS(1509), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1509), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1509), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1509), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1509), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1509), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1509), - [anon_sym_NS_AVAILABLE] = ACTIONS(1509), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1509), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1509), - [anon_sym_API_AVAILABLE] = ACTIONS(1509), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1509), - [anon_sym_API_DEPRECATED] = ACTIONS(1509), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1509), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1509), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1509), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1509), - [anon_sym___deprecated_msg] = ACTIONS(1509), - [anon_sym___deprecated_enum_msg] = ACTIONS(1509), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1509), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1509), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1509), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1509), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1509), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1509), - [anon_sym_ATimplementation] = ACTIONS(1511), - [anon_sym_typeof] = ACTIONS(1509), - [anon_sym___typeof] = ACTIONS(1509), - [anon_sym___typeof__] = ACTIONS(1509), - [sym_self] = ACTIONS(1509), - [sym_super] = ACTIONS(1509), - [sym_nil] = ACTIONS(1509), - [sym_id] = ACTIONS(1509), - [sym_instancetype] = ACTIONS(1509), - [sym_Class] = ACTIONS(1509), - [sym_SEL] = ACTIONS(1509), - [sym_IMP] = ACTIONS(1509), - [sym_BOOL] = ACTIONS(1509), - [sym_auto] = ACTIONS(1509), - [anon_sym_ATautoreleasepool] = ACTIONS(1511), - [anon_sym_ATsynchronized] = ACTIONS(1511), - [anon_sym_ATtry] = ACTIONS(1511), - [anon_sym_ATcatch] = ACTIONS(1511), - [anon_sym_ATfinally] = ACTIONS(1511), - [anon_sym_ATthrow] = ACTIONS(1511), - [anon_sym_ATselector] = ACTIONS(1511), - [anon_sym_ATencode] = ACTIONS(1511), - [anon_sym_AT] = ACTIONS(1509), - [sym_YES] = ACTIONS(1509), - [sym_NO] = ACTIONS(1509), - [anon_sym___builtin_available] = ACTIONS(1509), - [anon_sym_ATavailable] = ACTIONS(1511), - [anon_sym_va_arg] = ACTIONS(1509), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [428] = { - [sym_identifier] = ACTIONS(1661), - [aux_sym_preproc_include_token1] = ACTIONS(1663), - [aux_sym_preproc_def_token1] = ACTIONS(1663), - [aux_sym_preproc_if_token1] = ACTIONS(1661), - [aux_sym_preproc_if_token2] = ACTIONS(1661), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1661), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1661), - [anon_sym_LPAREN2] = ACTIONS(1663), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(1663), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_typedef] = ACTIONS(1661), - [anon_sym_extern] = ACTIONS(1661), - [anon_sym___attribute] = ACTIONS(1661), - [anon_sym___attribute__] = ACTIONS(1661), - [anon_sym___declspec] = ACTIONS(1661), - [anon_sym___cdecl] = ACTIONS(1661), - [anon_sym___clrcall] = ACTIONS(1661), - [anon_sym___stdcall] = ACTIONS(1661), - [anon_sym___fastcall] = ACTIONS(1661), - [anon_sym___thiscall] = ACTIONS(1661), - [anon_sym___vectorcall] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_auto] = ACTIONS(1661), - [anon_sym_register] = ACTIONS(1661), - [anon_sym_inline] = ACTIONS(1661), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_volatile] = ACTIONS(1661), - [anon_sym_restrict] = ACTIONS(1661), - [anon_sym__Atomic] = ACTIONS(1661), - [anon_sym_in] = ACTIONS(1661), - [anon_sym_out] = ACTIONS(1661), - [anon_sym_inout] = ACTIONS(1661), - [anon_sym_bycopy] = ACTIONS(1661), - [anon_sym_byref] = ACTIONS(1661), - [anon_sym_oneway] = ACTIONS(1661), - [anon_sym__Nullable] = ACTIONS(1661), - [anon_sym__Nonnull] = ACTIONS(1661), - [anon_sym__Nullable_result] = ACTIONS(1661), - [anon_sym__Null_unspecified] = ACTIONS(1661), - [anon_sym___autoreleasing] = ACTIONS(1661), - [anon_sym___nullable] = ACTIONS(1661), - [anon_sym___nonnull] = ACTIONS(1661), - [anon_sym___strong] = ACTIONS(1661), - [anon_sym___weak] = ACTIONS(1661), - [anon_sym___bridge] = ACTIONS(1661), - [anon_sym___bridge_transfer] = ACTIONS(1661), - [anon_sym___bridge_retained] = ACTIONS(1661), - [anon_sym___unsafe_unretained] = ACTIONS(1661), - [anon_sym___block] = ACTIONS(1661), - [anon_sym___kindof] = ACTIONS(1661), - [anon_sym___unused] = ACTIONS(1661), - [anon_sym__Complex] = ACTIONS(1661), - [anon_sym___complex] = ACTIONS(1661), - [anon_sym_IBOutlet] = ACTIONS(1661), - [anon_sym_IBInspectable] = ACTIONS(1661), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1661), - [anon_sym_signed] = ACTIONS(1661), - [anon_sym_unsigned] = ACTIONS(1661), - [anon_sym_long] = ACTIONS(1661), - [anon_sym_short] = ACTIONS(1661), - [sym_primitive_type] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [anon_sym_NS_ENUM] = ACTIONS(1661), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1661), - [anon_sym_NS_OPTIONS] = ACTIONS(1661), - [anon_sym_struct] = ACTIONS(1661), - [anon_sym_union] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_case] = ACTIONS(1661), - [anon_sym_default] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_goto] = ACTIONS(1661), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_sizeof] = ACTIONS(1661), - [sym_number_literal] = ACTIONS(1663), - [anon_sym_L_SQUOTE] = ACTIONS(1663), - [anon_sym_u_SQUOTE] = ACTIONS(1663), - [anon_sym_U_SQUOTE] = ACTIONS(1663), - [anon_sym_u8_SQUOTE] = ACTIONS(1663), - [anon_sym_SQUOTE] = ACTIONS(1663), - [anon_sym_L_DQUOTE] = ACTIONS(1663), - [anon_sym_u_DQUOTE] = ACTIONS(1663), - [anon_sym_U_DQUOTE] = ACTIONS(1663), - [anon_sym_u8_DQUOTE] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [sym_true] = ACTIONS(1661), - [sym_false] = ACTIONS(1661), - [sym_null] = ACTIONS(1661), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1663), - [anon_sym_ATimport] = ACTIONS(1663), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1661), - [anon_sym_ATcompatibility_alias] = ACTIONS(1663), - [anon_sym_ATprotocol] = ACTIONS(1663), - [anon_sym_ATclass] = ACTIONS(1663), - [anon_sym_ATinterface] = ACTIONS(1663), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1661), - [sym_method_attribute_specifier] = ACTIONS(1661), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1661), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1661), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1661), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1661), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1661), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1661), - [anon_sym_NS_AVAILABLE] = ACTIONS(1661), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1661), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1661), - [anon_sym_API_AVAILABLE] = ACTIONS(1661), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1661), - [anon_sym_API_DEPRECATED] = ACTIONS(1661), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1661), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1661), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1661), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1661), - [anon_sym___deprecated_msg] = ACTIONS(1661), - [anon_sym___deprecated_enum_msg] = ACTIONS(1661), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1661), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1661), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1661), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1661), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1661), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1661), - [anon_sym_ATimplementation] = ACTIONS(1663), - [anon_sym_typeof] = ACTIONS(1661), - [anon_sym___typeof] = ACTIONS(1661), - [anon_sym___typeof__] = ACTIONS(1661), - [sym_self] = ACTIONS(1661), - [sym_super] = ACTIONS(1661), - [sym_nil] = ACTIONS(1661), - [sym_id] = ACTIONS(1661), - [sym_instancetype] = ACTIONS(1661), - [sym_Class] = ACTIONS(1661), - [sym_SEL] = ACTIONS(1661), - [sym_IMP] = ACTIONS(1661), - [sym_BOOL] = ACTIONS(1661), - [sym_auto] = ACTIONS(1661), - [anon_sym_ATautoreleasepool] = ACTIONS(1663), - [anon_sym_ATsynchronized] = ACTIONS(1663), - [anon_sym_ATtry] = ACTIONS(1663), - [anon_sym_ATcatch] = ACTIONS(1663), - [anon_sym_ATfinally] = ACTIONS(1663), - [anon_sym_ATthrow] = ACTIONS(1663), - [anon_sym_ATselector] = ACTIONS(1663), - [anon_sym_ATencode] = ACTIONS(1663), - [anon_sym_AT] = ACTIONS(1661), - [sym_YES] = ACTIONS(1661), - [sym_NO] = ACTIONS(1661), - [anon_sym___builtin_available] = ACTIONS(1661), - [anon_sym_ATavailable] = ACTIONS(1663), - [anon_sym_va_arg] = ACTIONS(1661), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [429] = { - [sym_identifier] = ACTIONS(1669), - [aux_sym_preproc_include_token1] = ACTIONS(1671), - [aux_sym_preproc_def_token1] = ACTIONS(1671), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_if_token2] = ACTIONS(1669), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1669), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1669), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1671), - [anon_sym_TILDE] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1671), - [anon_sym_CARET] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_typedef] = ACTIONS(1669), - [anon_sym_extern] = ACTIONS(1669), - [anon_sym___attribute] = ACTIONS(1669), - [anon_sym___attribute__] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1669), - [anon_sym___cdecl] = ACTIONS(1669), - [anon_sym___clrcall] = ACTIONS(1669), - [anon_sym___stdcall] = ACTIONS(1669), - [anon_sym___fastcall] = ACTIONS(1669), - [anon_sym___thiscall] = ACTIONS(1669), - [anon_sym___vectorcall] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1671), - [anon_sym_static] = ACTIONS(1669), - [anon_sym_auto] = ACTIONS(1669), - [anon_sym_register] = ACTIONS(1669), - [anon_sym_inline] = ACTIONS(1669), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_volatile] = ACTIONS(1669), - [anon_sym_restrict] = ACTIONS(1669), - [anon_sym__Atomic] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_out] = ACTIONS(1669), - [anon_sym_inout] = ACTIONS(1669), - [anon_sym_bycopy] = ACTIONS(1669), - [anon_sym_byref] = ACTIONS(1669), - [anon_sym_oneway] = ACTIONS(1669), - [anon_sym__Nullable] = ACTIONS(1669), - [anon_sym__Nonnull] = ACTIONS(1669), - [anon_sym__Nullable_result] = ACTIONS(1669), - [anon_sym__Null_unspecified] = ACTIONS(1669), - [anon_sym___autoreleasing] = ACTIONS(1669), - [anon_sym___nullable] = ACTIONS(1669), - [anon_sym___nonnull] = ACTIONS(1669), - [anon_sym___strong] = ACTIONS(1669), - [anon_sym___weak] = ACTIONS(1669), - [anon_sym___bridge] = ACTIONS(1669), - [anon_sym___bridge_transfer] = ACTIONS(1669), - [anon_sym___bridge_retained] = ACTIONS(1669), - [anon_sym___unsafe_unretained] = ACTIONS(1669), - [anon_sym___block] = ACTIONS(1669), - [anon_sym___kindof] = ACTIONS(1669), - [anon_sym___unused] = ACTIONS(1669), - [anon_sym__Complex] = ACTIONS(1669), - [anon_sym___complex] = ACTIONS(1669), - [anon_sym_IBOutlet] = ACTIONS(1669), - [anon_sym_IBInspectable] = ACTIONS(1669), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1669), - [anon_sym_signed] = ACTIONS(1669), - [anon_sym_unsigned] = ACTIONS(1669), - [anon_sym_long] = ACTIONS(1669), - [anon_sym_short] = ACTIONS(1669), - [sym_primitive_type] = ACTIONS(1669), - [anon_sym_enum] = ACTIONS(1669), - [anon_sym_NS_ENUM] = ACTIONS(1669), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1669), - [anon_sym_NS_OPTIONS] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1669), - [anon_sym_union] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_else] = ACTIONS(1669), - [anon_sym_switch] = ACTIONS(1669), - [anon_sym_case] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_do] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_goto] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_sizeof] = ACTIONS(1669), - [sym_number_literal] = ACTIONS(1671), - [anon_sym_L_SQUOTE] = ACTIONS(1671), - [anon_sym_u_SQUOTE] = ACTIONS(1671), - [anon_sym_U_SQUOTE] = ACTIONS(1671), - [anon_sym_u8_SQUOTE] = ACTIONS(1671), - [anon_sym_SQUOTE] = ACTIONS(1671), - [anon_sym_L_DQUOTE] = ACTIONS(1671), - [anon_sym_u_DQUOTE] = ACTIONS(1671), - [anon_sym_U_DQUOTE] = ACTIONS(1671), - [anon_sym_u8_DQUOTE] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [sym_true] = ACTIONS(1669), - [sym_false] = ACTIONS(1669), - [sym_null] = ACTIONS(1669), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1671), - [anon_sym_ATimport] = ACTIONS(1671), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1669), - [anon_sym_ATcompatibility_alias] = ACTIONS(1671), - [anon_sym_ATprotocol] = ACTIONS(1671), - [anon_sym_ATclass] = ACTIONS(1671), - [anon_sym_ATinterface] = ACTIONS(1671), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1669), - [sym_method_attribute_specifier] = ACTIONS(1669), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1669), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1669), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1669), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1669), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1669), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1669), - [anon_sym_NS_AVAILABLE] = ACTIONS(1669), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1669), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1669), - [anon_sym_API_AVAILABLE] = ACTIONS(1669), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1669), - [anon_sym_API_DEPRECATED] = ACTIONS(1669), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1669), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1669), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1669), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1669), - [anon_sym___deprecated_msg] = ACTIONS(1669), - [anon_sym___deprecated_enum_msg] = ACTIONS(1669), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1669), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1669), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1669), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1669), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1669), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1669), - [anon_sym_ATimplementation] = ACTIONS(1671), - [anon_sym_typeof] = ACTIONS(1669), - [anon_sym___typeof] = ACTIONS(1669), - [anon_sym___typeof__] = ACTIONS(1669), - [sym_self] = ACTIONS(1669), - [sym_super] = ACTIONS(1669), - [sym_nil] = ACTIONS(1669), - [sym_id] = ACTIONS(1669), - [sym_instancetype] = ACTIONS(1669), - [sym_Class] = ACTIONS(1669), - [sym_SEL] = ACTIONS(1669), - [sym_IMP] = ACTIONS(1669), - [sym_BOOL] = ACTIONS(1669), - [sym_auto] = ACTIONS(1669), - [anon_sym_ATautoreleasepool] = ACTIONS(1671), - [anon_sym_ATsynchronized] = ACTIONS(1671), - [anon_sym_ATtry] = ACTIONS(1671), - [anon_sym_ATcatch] = ACTIONS(1671), - [anon_sym_ATfinally] = ACTIONS(1671), - [anon_sym_ATthrow] = ACTIONS(1671), - [anon_sym_ATselector] = ACTIONS(1671), - [anon_sym_ATencode] = ACTIONS(1671), - [anon_sym_AT] = ACTIONS(1669), - [sym_YES] = ACTIONS(1669), - [sym_NO] = ACTIONS(1669), - [anon_sym___builtin_available] = ACTIONS(1669), - [anon_sym_ATavailable] = ACTIONS(1671), - [anon_sym_va_arg] = ACTIONS(1669), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [430] = { - [sym_identifier] = ACTIONS(1505), - [aux_sym_preproc_include_token1] = ACTIONS(1507), - [aux_sym_preproc_def_token1] = ACTIONS(1507), - [aux_sym_preproc_if_token1] = ACTIONS(1505), - [aux_sym_preproc_if_token2] = ACTIONS(1505), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1505), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1505), - [anon_sym_LPAREN2] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_PLUS] = ACTIONS(1505), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_typedef] = ACTIONS(1505), - [anon_sym_extern] = ACTIONS(1505), - [anon_sym___attribute] = ACTIONS(1505), - [anon_sym___attribute__] = ACTIONS(1505), - [anon_sym___declspec] = ACTIONS(1505), - [anon_sym___cdecl] = ACTIONS(1505), - [anon_sym___clrcall] = ACTIONS(1505), - [anon_sym___stdcall] = ACTIONS(1505), - [anon_sym___fastcall] = ACTIONS(1505), - [anon_sym___thiscall] = ACTIONS(1505), - [anon_sym___vectorcall] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_static] = ACTIONS(1505), - [anon_sym_auto] = ACTIONS(1505), - [anon_sym_register] = ACTIONS(1505), - [anon_sym_inline] = ACTIONS(1505), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_volatile] = ACTIONS(1505), - [anon_sym_restrict] = ACTIONS(1505), - [anon_sym__Atomic] = ACTIONS(1505), - [anon_sym_in] = ACTIONS(1505), - [anon_sym_out] = ACTIONS(1505), - [anon_sym_inout] = ACTIONS(1505), - [anon_sym_bycopy] = ACTIONS(1505), - [anon_sym_byref] = ACTIONS(1505), - [anon_sym_oneway] = ACTIONS(1505), - [anon_sym__Nullable] = ACTIONS(1505), - [anon_sym__Nonnull] = ACTIONS(1505), - [anon_sym__Nullable_result] = ACTIONS(1505), - [anon_sym__Null_unspecified] = ACTIONS(1505), - [anon_sym___autoreleasing] = ACTIONS(1505), - [anon_sym___nullable] = ACTIONS(1505), - [anon_sym___nonnull] = ACTIONS(1505), - [anon_sym___strong] = ACTIONS(1505), - [anon_sym___weak] = ACTIONS(1505), - [anon_sym___bridge] = ACTIONS(1505), - [anon_sym___bridge_transfer] = ACTIONS(1505), - [anon_sym___bridge_retained] = ACTIONS(1505), - [anon_sym___unsafe_unretained] = ACTIONS(1505), - [anon_sym___block] = ACTIONS(1505), - [anon_sym___kindof] = ACTIONS(1505), - [anon_sym___unused] = ACTIONS(1505), - [anon_sym__Complex] = ACTIONS(1505), - [anon_sym___complex] = ACTIONS(1505), - [anon_sym_IBOutlet] = ACTIONS(1505), - [anon_sym_IBInspectable] = ACTIONS(1505), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1505), - [anon_sym_signed] = ACTIONS(1505), - [anon_sym_unsigned] = ACTIONS(1505), - [anon_sym_long] = ACTIONS(1505), - [anon_sym_short] = ACTIONS(1505), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1505), - [anon_sym_NS_ENUM] = ACTIONS(1505), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1505), - [anon_sym_NS_OPTIONS] = ACTIONS(1505), - [anon_sym_struct] = ACTIONS(1505), - [anon_sym_union] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_else] = ACTIONS(1505), - [anon_sym_switch] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1505), - [anon_sym_default] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_goto] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_sizeof] = ACTIONS(1505), - [sym_number_literal] = ACTIONS(1507), - [anon_sym_L_SQUOTE] = ACTIONS(1507), - [anon_sym_u_SQUOTE] = ACTIONS(1507), - [anon_sym_U_SQUOTE] = ACTIONS(1507), - [anon_sym_u8_SQUOTE] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1507), - [anon_sym_L_DQUOTE] = ACTIONS(1507), - [anon_sym_u_DQUOTE] = ACTIONS(1507), - [anon_sym_U_DQUOTE] = ACTIONS(1507), - [anon_sym_u8_DQUOTE] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1507), - [sym_true] = ACTIONS(1505), - [sym_false] = ACTIONS(1505), - [sym_null] = ACTIONS(1505), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1507), - [anon_sym_ATimport] = ACTIONS(1507), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1505), - [anon_sym_ATcompatibility_alias] = ACTIONS(1507), - [anon_sym_ATprotocol] = ACTIONS(1507), - [anon_sym_ATclass] = ACTIONS(1507), - [anon_sym_ATinterface] = ACTIONS(1507), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1505), - [sym_method_attribute_specifier] = ACTIONS(1505), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1505), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1505), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1505), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1505), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1505), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1505), - [anon_sym_NS_AVAILABLE] = ACTIONS(1505), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1505), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1505), - [anon_sym_API_AVAILABLE] = ACTIONS(1505), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1505), - [anon_sym_API_DEPRECATED] = ACTIONS(1505), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1505), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1505), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1505), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1505), - [anon_sym___deprecated_msg] = ACTIONS(1505), - [anon_sym___deprecated_enum_msg] = ACTIONS(1505), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1505), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1505), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1505), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1505), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1505), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1505), - [anon_sym_ATimplementation] = ACTIONS(1507), - [anon_sym_typeof] = ACTIONS(1505), - [anon_sym___typeof] = ACTIONS(1505), - [anon_sym___typeof__] = ACTIONS(1505), - [sym_self] = ACTIONS(1505), - [sym_super] = ACTIONS(1505), - [sym_nil] = ACTIONS(1505), - [sym_id] = ACTIONS(1505), - [sym_instancetype] = ACTIONS(1505), - [sym_Class] = ACTIONS(1505), - [sym_SEL] = ACTIONS(1505), - [sym_IMP] = ACTIONS(1505), - [sym_BOOL] = ACTIONS(1505), - [sym_auto] = ACTIONS(1505), - [anon_sym_ATautoreleasepool] = ACTIONS(1507), - [anon_sym_ATsynchronized] = ACTIONS(1507), - [anon_sym_ATtry] = ACTIONS(1507), - [anon_sym_ATcatch] = ACTIONS(1507), - [anon_sym_ATfinally] = ACTIONS(1507), - [anon_sym_ATthrow] = ACTIONS(1507), - [anon_sym_ATselector] = ACTIONS(1507), - [anon_sym_ATencode] = ACTIONS(1507), - [anon_sym_AT] = ACTIONS(1505), - [sym_YES] = ACTIONS(1505), - [sym_NO] = ACTIONS(1505), - [anon_sym___builtin_available] = ACTIONS(1505), - [anon_sym_ATavailable] = ACTIONS(1507), - [anon_sym_va_arg] = ACTIONS(1505), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [431] = { - [sym_identifier] = ACTIONS(1501), - [aux_sym_preproc_include_token1] = ACTIONS(1503), - [aux_sym_preproc_def_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token1] = ACTIONS(1501), - [aux_sym_preproc_if_token2] = ACTIONS(1501), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1501), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1501), - [anon_sym_LPAREN2] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1503), - [anon_sym_typedef] = ACTIONS(1501), - [anon_sym_extern] = ACTIONS(1501), - [anon_sym___attribute] = ACTIONS(1501), - [anon_sym___attribute__] = ACTIONS(1501), - [anon_sym___declspec] = ACTIONS(1501), - [anon_sym___cdecl] = ACTIONS(1501), - [anon_sym___clrcall] = ACTIONS(1501), - [anon_sym___stdcall] = ACTIONS(1501), - [anon_sym___fastcall] = ACTIONS(1501), - [anon_sym___thiscall] = ACTIONS(1501), - [anon_sym___vectorcall] = ACTIONS(1501), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1501), - [anon_sym_auto] = ACTIONS(1501), - [anon_sym_register] = ACTIONS(1501), - [anon_sym_inline] = ACTIONS(1501), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_volatile] = ACTIONS(1501), - [anon_sym_restrict] = ACTIONS(1501), - [anon_sym__Atomic] = ACTIONS(1501), - [anon_sym_in] = ACTIONS(1501), - [anon_sym_out] = ACTIONS(1501), - [anon_sym_inout] = ACTIONS(1501), - [anon_sym_bycopy] = ACTIONS(1501), - [anon_sym_byref] = ACTIONS(1501), - [anon_sym_oneway] = ACTIONS(1501), - [anon_sym__Nullable] = ACTIONS(1501), - [anon_sym__Nonnull] = ACTIONS(1501), - [anon_sym__Nullable_result] = ACTIONS(1501), - [anon_sym__Null_unspecified] = ACTIONS(1501), - [anon_sym___autoreleasing] = ACTIONS(1501), - [anon_sym___nullable] = ACTIONS(1501), - [anon_sym___nonnull] = ACTIONS(1501), - [anon_sym___strong] = ACTIONS(1501), - [anon_sym___weak] = ACTIONS(1501), - [anon_sym___bridge] = ACTIONS(1501), - [anon_sym___bridge_transfer] = ACTIONS(1501), - [anon_sym___bridge_retained] = ACTIONS(1501), - [anon_sym___unsafe_unretained] = ACTIONS(1501), - [anon_sym___block] = ACTIONS(1501), - [anon_sym___kindof] = ACTIONS(1501), - [anon_sym___unused] = ACTIONS(1501), - [anon_sym__Complex] = ACTIONS(1501), - [anon_sym___complex] = ACTIONS(1501), - [anon_sym_IBOutlet] = ACTIONS(1501), - [anon_sym_IBInspectable] = ACTIONS(1501), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1501), - [anon_sym_signed] = ACTIONS(1501), - [anon_sym_unsigned] = ACTIONS(1501), - [anon_sym_long] = ACTIONS(1501), - [anon_sym_short] = ACTIONS(1501), - [sym_primitive_type] = ACTIONS(1501), - [anon_sym_enum] = ACTIONS(1501), - [anon_sym_NS_ENUM] = ACTIONS(1501), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1501), - [anon_sym_NS_OPTIONS] = ACTIONS(1501), - [anon_sym_struct] = ACTIONS(1501), - [anon_sym_union] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_else] = ACTIONS(1501), - [anon_sym_switch] = ACTIONS(1501), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_do] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_goto] = ACTIONS(1501), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_sizeof] = ACTIONS(1501), - [sym_number_literal] = ACTIONS(1503), - [anon_sym_L_SQUOTE] = ACTIONS(1503), - [anon_sym_u_SQUOTE] = ACTIONS(1503), - [anon_sym_U_SQUOTE] = ACTIONS(1503), - [anon_sym_u8_SQUOTE] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1503), - [anon_sym_L_DQUOTE] = ACTIONS(1503), - [anon_sym_u_DQUOTE] = ACTIONS(1503), - [anon_sym_U_DQUOTE] = ACTIONS(1503), - [anon_sym_u8_DQUOTE] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1503), - [sym_true] = ACTIONS(1501), - [sym_false] = ACTIONS(1501), - [sym_null] = ACTIONS(1501), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1503), - [anon_sym_ATimport] = ACTIONS(1503), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1501), - [anon_sym_ATcompatibility_alias] = ACTIONS(1503), - [anon_sym_ATprotocol] = ACTIONS(1503), - [anon_sym_ATclass] = ACTIONS(1503), - [anon_sym_ATinterface] = ACTIONS(1503), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1501), - [sym_method_attribute_specifier] = ACTIONS(1501), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1501), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1501), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1501), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1501), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1501), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1501), - [anon_sym_NS_AVAILABLE] = ACTIONS(1501), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1501), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1501), - [anon_sym_API_AVAILABLE] = ACTIONS(1501), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1501), - [anon_sym_API_DEPRECATED] = ACTIONS(1501), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1501), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1501), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1501), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1501), - [anon_sym___deprecated_msg] = ACTIONS(1501), - [anon_sym___deprecated_enum_msg] = ACTIONS(1501), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1501), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1501), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1501), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1501), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1501), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1501), - [anon_sym_ATimplementation] = ACTIONS(1503), - [anon_sym_typeof] = ACTIONS(1501), - [anon_sym___typeof] = ACTIONS(1501), - [anon_sym___typeof__] = ACTIONS(1501), - [sym_self] = ACTIONS(1501), - [sym_super] = ACTIONS(1501), - [sym_nil] = ACTIONS(1501), - [sym_id] = ACTIONS(1501), - [sym_instancetype] = ACTIONS(1501), - [sym_Class] = ACTIONS(1501), - [sym_SEL] = ACTIONS(1501), - [sym_IMP] = ACTIONS(1501), - [sym_BOOL] = ACTIONS(1501), - [sym_auto] = ACTIONS(1501), - [anon_sym_ATautoreleasepool] = ACTIONS(1503), - [anon_sym_ATsynchronized] = ACTIONS(1503), - [anon_sym_ATtry] = ACTIONS(1503), - [anon_sym_ATcatch] = ACTIONS(1503), - [anon_sym_ATfinally] = ACTIONS(1503), - [anon_sym_ATthrow] = ACTIONS(1503), - [anon_sym_ATselector] = ACTIONS(1503), - [anon_sym_ATencode] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(1501), - [sym_YES] = ACTIONS(1501), - [sym_NO] = ACTIONS(1501), - [anon_sym___builtin_available] = ACTIONS(1501), - [anon_sym_ATavailable] = ACTIONS(1503), - [anon_sym_va_arg] = ACTIONS(1501), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [432] = { - [sym_identifier] = ACTIONS(1465), - [aux_sym_preproc_include_token1] = ACTIONS(1467), - [aux_sym_preproc_def_token1] = ACTIONS(1467), - [aux_sym_preproc_if_token1] = ACTIONS(1465), - [aux_sym_preproc_if_token2] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1465), - [anon_sym_LPAREN2] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_typedef] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym___attribute] = ACTIONS(1465), - [anon_sym___attribute__] = ACTIONS(1465), - [anon_sym___declspec] = ACTIONS(1465), - [anon_sym___cdecl] = ACTIONS(1465), - [anon_sym___clrcall] = ACTIONS(1465), - [anon_sym___stdcall] = ACTIONS(1465), - [anon_sym___fastcall] = ACTIONS(1465), - [anon_sym___thiscall] = ACTIONS(1465), - [anon_sym___vectorcall] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_auto] = ACTIONS(1465), - [anon_sym_register] = ACTIONS(1465), - [anon_sym_inline] = ACTIONS(1465), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_volatile] = ACTIONS(1465), - [anon_sym_restrict] = ACTIONS(1465), - [anon_sym__Atomic] = ACTIONS(1465), - [anon_sym_in] = ACTIONS(1465), - [anon_sym_out] = ACTIONS(1465), - [anon_sym_inout] = ACTIONS(1465), - [anon_sym_bycopy] = ACTIONS(1465), - [anon_sym_byref] = ACTIONS(1465), - [anon_sym_oneway] = ACTIONS(1465), - [anon_sym__Nullable] = ACTIONS(1465), - [anon_sym__Nonnull] = ACTIONS(1465), - [anon_sym__Nullable_result] = ACTIONS(1465), - [anon_sym__Null_unspecified] = ACTIONS(1465), - [anon_sym___autoreleasing] = ACTIONS(1465), - [anon_sym___nullable] = ACTIONS(1465), - [anon_sym___nonnull] = ACTIONS(1465), - [anon_sym___strong] = ACTIONS(1465), - [anon_sym___weak] = ACTIONS(1465), - [anon_sym___bridge] = ACTIONS(1465), - [anon_sym___bridge_transfer] = ACTIONS(1465), - [anon_sym___bridge_retained] = ACTIONS(1465), - [anon_sym___unsafe_unretained] = ACTIONS(1465), - [anon_sym___block] = ACTIONS(1465), - [anon_sym___kindof] = ACTIONS(1465), - [anon_sym___unused] = ACTIONS(1465), - [anon_sym__Complex] = ACTIONS(1465), - [anon_sym___complex] = ACTIONS(1465), - [anon_sym_IBOutlet] = ACTIONS(1465), - [anon_sym_IBInspectable] = ACTIONS(1465), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1465), - [anon_sym_signed] = ACTIONS(1465), - [anon_sym_unsigned] = ACTIONS(1465), - [anon_sym_long] = ACTIONS(1465), - [anon_sym_short] = ACTIONS(1465), - [sym_primitive_type] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_NS_ENUM] = ACTIONS(1465), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1465), - [anon_sym_NS_OPTIONS] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_else] = ACTIONS(1465), - [anon_sym_switch] = ACTIONS(1465), - [anon_sym_case] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_do] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_goto] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_sizeof] = ACTIONS(1465), - [sym_number_literal] = ACTIONS(1467), - [anon_sym_L_SQUOTE] = ACTIONS(1467), - [anon_sym_u_SQUOTE] = ACTIONS(1467), - [anon_sym_U_SQUOTE] = ACTIONS(1467), - [anon_sym_u8_SQUOTE] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1467), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1465), - [sym_false] = ACTIONS(1465), - [sym_null] = ACTIONS(1465), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1467), - [anon_sym_ATimport] = ACTIONS(1467), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1465), - [anon_sym_ATcompatibility_alias] = ACTIONS(1467), - [anon_sym_ATprotocol] = ACTIONS(1467), - [anon_sym_ATclass] = ACTIONS(1467), - [anon_sym_ATinterface] = ACTIONS(1467), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1465), - [sym_method_attribute_specifier] = ACTIONS(1465), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1465), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1465), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1465), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1465), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1465), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1465), - [anon_sym_NS_AVAILABLE] = ACTIONS(1465), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1465), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_API_AVAILABLE] = ACTIONS(1465), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1465), - [anon_sym_API_DEPRECATED] = ACTIONS(1465), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1465), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1465), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1465), - [anon_sym___deprecated_msg] = ACTIONS(1465), - [anon_sym___deprecated_enum_msg] = ACTIONS(1465), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1465), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1465), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1465), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1465), - [anon_sym_ATimplementation] = ACTIONS(1467), - [anon_sym_typeof] = ACTIONS(1465), - [anon_sym___typeof] = ACTIONS(1465), - [anon_sym___typeof__] = ACTIONS(1465), - [sym_self] = ACTIONS(1465), - [sym_super] = ACTIONS(1465), - [sym_nil] = ACTIONS(1465), - [sym_id] = ACTIONS(1465), - [sym_instancetype] = ACTIONS(1465), - [sym_Class] = ACTIONS(1465), - [sym_SEL] = ACTIONS(1465), - [sym_IMP] = ACTIONS(1465), - [sym_BOOL] = ACTIONS(1465), - [sym_auto] = ACTIONS(1465), - [anon_sym_ATautoreleasepool] = ACTIONS(1467), - [anon_sym_ATsynchronized] = ACTIONS(1467), - [anon_sym_ATtry] = ACTIONS(1467), - [anon_sym_ATcatch] = ACTIONS(1467), - [anon_sym_ATfinally] = ACTIONS(1467), - [anon_sym_ATthrow] = ACTIONS(1467), - [anon_sym_ATselector] = ACTIONS(1467), - [anon_sym_ATencode] = ACTIONS(1467), - [anon_sym_AT] = ACTIONS(1465), - [sym_YES] = ACTIONS(1465), - [sym_NO] = ACTIONS(1465), - [anon_sym___builtin_available] = ACTIONS(1465), - [anon_sym_ATavailable] = ACTIONS(1467), - [anon_sym_va_arg] = ACTIONS(1465), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [433] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1195), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token2] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_out] = ACTIONS(1197), - [anon_sym_inout] = ACTIONS(1197), - [anon_sym_bycopy] = ACTIONS(1197), - [anon_sym_byref] = ACTIONS(1197), - [anon_sym_oneway] = ACTIONS(1197), - [anon_sym__Nullable] = ACTIONS(1197), - [anon_sym__Nonnull] = ACTIONS(1197), - [anon_sym__Nullable_result] = ACTIONS(1197), - [anon_sym__Null_unspecified] = ACTIONS(1197), - [anon_sym___autoreleasing] = ACTIONS(1197), - [anon_sym___nullable] = ACTIONS(1197), - [anon_sym___nonnull] = ACTIONS(1197), - [anon_sym___strong] = ACTIONS(1197), - [anon_sym___weak] = ACTIONS(1197), - [anon_sym___bridge] = ACTIONS(1197), - [anon_sym___bridge_transfer] = ACTIONS(1197), - [anon_sym___bridge_retained] = ACTIONS(1197), - [anon_sym___unsafe_unretained] = ACTIONS(1197), - [anon_sym___block] = ACTIONS(1197), - [anon_sym___kindof] = ACTIONS(1197), - [anon_sym___unused] = ACTIONS(1197), - [anon_sym__Complex] = ACTIONS(1197), - [anon_sym___complex] = ACTIONS(1197), - [anon_sym_IBOutlet] = ACTIONS(1197), - [anon_sym_IBInspectable] = ACTIONS(1197), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_NS_ENUM] = ACTIONS(1197), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1197), - [anon_sym_NS_OPTIONS] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [sym_null] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1195), - [anon_sym_ATimport] = ACTIONS(1195), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1197), - [anon_sym_ATcompatibility_alias] = ACTIONS(1195), - [anon_sym_ATprotocol] = ACTIONS(1195), - [anon_sym_ATclass] = ACTIONS(1195), - [anon_sym_ATinterface] = ACTIONS(1195), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1197), - [sym_method_attribute_specifier] = ACTIONS(1197), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1197), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE] = ACTIONS(1197), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_API_AVAILABLE] = ACTIONS(1197), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_API_DEPRECATED] = ACTIONS(1197), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1197), - [anon_sym___deprecated_msg] = ACTIONS(1197), - [anon_sym___deprecated_enum_msg] = ACTIONS(1197), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1197), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1197), - [anon_sym_ATimplementation] = ACTIONS(1195), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym___typeof] = ACTIONS(1197), - [anon_sym___typeof__] = ACTIONS(1197), - [sym_self] = ACTIONS(1197), - [sym_super] = ACTIONS(1197), - [sym_nil] = ACTIONS(1197), - [sym_id] = ACTIONS(1197), - [sym_instancetype] = ACTIONS(1197), - [sym_Class] = ACTIONS(1197), - [sym_SEL] = ACTIONS(1197), - [sym_IMP] = ACTIONS(1197), - [sym_BOOL] = ACTIONS(1197), - [sym_auto] = ACTIONS(1197), - [anon_sym_ATautoreleasepool] = ACTIONS(1195), - [anon_sym_ATsynchronized] = ACTIONS(1195), - [anon_sym_ATtry] = ACTIONS(1195), - [anon_sym_ATcatch] = ACTIONS(1195), - [anon_sym_ATfinally] = ACTIONS(1195), - [anon_sym_ATthrow] = ACTIONS(1195), - [anon_sym_ATselector] = ACTIONS(1195), - [anon_sym_ATencode] = ACTIONS(1195), - [anon_sym_AT] = ACTIONS(1197), - [sym_YES] = ACTIONS(1197), - [sym_NO] = ACTIONS(1197), - [anon_sym___builtin_available] = ACTIONS(1197), - [anon_sym_ATavailable] = ACTIONS(1195), - [anon_sym_va_arg] = ACTIONS(1197), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [434] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1195), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token2] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_out] = ACTIONS(1197), - [anon_sym_inout] = ACTIONS(1197), - [anon_sym_bycopy] = ACTIONS(1197), - [anon_sym_byref] = ACTIONS(1197), - [anon_sym_oneway] = ACTIONS(1197), - [anon_sym__Nullable] = ACTIONS(1197), - [anon_sym__Nonnull] = ACTIONS(1197), - [anon_sym__Nullable_result] = ACTIONS(1197), - [anon_sym__Null_unspecified] = ACTIONS(1197), - [anon_sym___autoreleasing] = ACTIONS(1197), - [anon_sym___nullable] = ACTIONS(1197), - [anon_sym___nonnull] = ACTIONS(1197), - [anon_sym___strong] = ACTIONS(1197), - [anon_sym___weak] = ACTIONS(1197), - [anon_sym___bridge] = ACTIONS(1197), - [anon_sym___bridge_transfer] = ACTIONS(1197), - [anon_sym___bridge_retained] = ACTIONS(1197), - [anon_sym___unsafe_unretained] = ACTIONS(1197), - [anon_sym___block] = ACTIONS(1197), - [anon_sym___kindof] = ACTIONS(1197), - [anon_sym___unused] = ACTIONS(1197), - [anon_sym__Complex] = ACTIONS(1197), - [anon_sym___complex] = ACTIONS(1197), - [anon_sym_IBOutlet] = ACTIONS(1197), - [anon_sym_IBInspectable] = ACTIONS(1197), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_NS_ENUM] = ACTIONS(1197), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1197), - [anon_sym_NS_OPTIONS] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [sym_null] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1195), - [anon_sym_ATimport] = ACTIONS(1195), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1197), - [anon_sym_ATcompatibility_alias] = ACTIONS(1195), - [anon_sym_ATprotocol] = ACTIONS(1195), - [anon_sym_ATclass] = ACTIONS(1195), - [anon_sym_ATinterface] = ACTIONS(1195), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1197), - [sym_method_attribute_specifier] = ACTIONS(1197), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1197), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE] = ACTIONS(1197), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_API_AVAILABLE] = ACTIONS(1197), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_API_DEPRECATED] = ACTIONS(1197), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1197), - [anon_sym___deprecated_msg] = ACTIONS(1197), - [anon_sym___deprecated_enum_msg] = ACTIONS(1197), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1197), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1197), - [anon_sym_ATimplementation] = ACTIONS(1195), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym___typeof] = ACTIONS(1197), - [anon_sym___typeof__] = ACTIONS(1197), - [sym_self] = ACTIONS(1197), - [sym_super] = ACTIONS(1197), - [sym_nil] = ACTIONS(1197), - [sym_id] = ACTIONS(1197), - [sym_instancetype] = ACTIONS(1197), - [sym_Class] = ACTIONS(1197), - [sym_SEL] = ACTIONS(1197), - [sym_IMP] = ACTIONS(1197), - [sym_BOOL] = ACTIONS(1197), - [sym_auto] = ACTIONS(1197), - [anon_sym_ATautoreleasepool] = ACTIONS(1195), - [anon_sym_ATsynchronized] = ACTIONS(1195), - [anon_sym_ATtry] = ACTIONS(1195), - [anon_sym_ATcatch] = ACTIONS(1195), - [anon_sym_ATfinally] = ACTIONS(1195), - [anon_sym_ATthrow] = ACTIONS(1195), - [anon_sym_ATselector] = ACTIONS(1195), - [anon_sym_ATencode] = ACTIONS(1195), - [anon_sym_AT] = ACTIONS(1197), - [sym_YES] = ACTIONS(1197), - [sym_NO] = ACTIONS(1197), - [anon_sym___builtin_available] = ACTIONS(1197), - [anon_sym_ATavailable] = ACTIONS(1195), - [anon_sym_va_arg] = ACTIONS(1197), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [435] = { - [sym_identifier] = ACTIONS(1465), - [aux_sym_preproc_include_token1] = ACTIONS(1467), - [aux_sym_preproc_def_token1] = ACTIONS(1467), - [aux_sym_preproc_if_token1] = ACTIONS(1465), - [aux_sym_preproc_if_token2] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1465), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1465), - [anon_sym_LPAREN2] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_typedef] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym___attribute] = ACTIONS(1465), - [anon_sym___attribute__] = ACTIONS(1465), - [anon_sym___declspec] = ACTIONS(1465), - [anon_sym___cdecl] = ACTIONS(1465), - [anon_sym___clrcall] = ACTIONS(1465), - [anon_sym___stdcall] = ACTIONS(1465), - [anon_sym___fastcall] = ACTIONS(1465), - [anon_sym___thiscall] = ACTIONS(1465), - [anon_sym___vectorcall] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_auto] = ACTIONS(1465), - [anon_sym_register] = ACTIONS(1465), - [anon_sym_inline] = ACTIONS(1465), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_volatile] = ACTIONS(1465), - [anon_sym_restrict] = ACTIONS(1465), - [anon_sym__Atomic] = ACTIONS(1465), - [anon_sym_in] = ACTIONS(1465), - [anon_sym_out] = ACTIONS(1465), - [anon_sym_inout] = ACTIONS(1465), - [anon_sym_bycopy] = ACTIONS(1465), - [anon_sym_byref] = ACTIONS(1465), - [anon_sym_oneway] = ACTIONS(1465), - [anon_sym__Nullable] = ACTIONS(1465), - [anon_sym__Nonnull] = ACTIONS(1465), - [anon_sym__Nullable_result] = ACTIONS(1465), - [anon_sym__Null_unspecified] = ACTIONS(1465), - [anon_sym___autoreleasing] = ACTIONS(1465), - [anon_sym___nullable] = ACTIONS(1465), - [anon_sym___nonnull] = ACTIONS(1465), - [anon_sym___strong] = ACTIONS(1465), - [anon_sym___weak] = ACTIONS(1465), - [anon_sym___bridge] = ACTIONS(1465), - [anon_sym___bridge_transfer] = ACTIONS(1465), - [anon_sym___bridge_retained] = ACTIONS(1465), - [anon_sym___unsafe_unretained] = ACTIONS(1465), - [anon_sym___block] = ACTIONS(1465), - [anon_sym___kindof] = ACTIONS(1465), - [anon_sym___unused] = ACTIONS(1465), - [anon_sym__Complex] = ACTIONS(1465), - [anon_sym___complex] = ACTIONS(1465), - [anon_sym_IBOutlet] = ACTIONS(1465), - [anon_sym_IBInspectable] = ACTIONS(1465), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1465), - [anon_sym_signed] = ACTIONS(1465), - [anon_sym_unsigned] = ACTIONS(1465), - [anon_sym_long] = ACTIONS(1465), - [anon_sym_short] = ACTIONS(1465), - [sym_primitive_type] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_NS_ENUM] = ACTIONS(1465), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1465), - [anon_sym_NS_OPTIONS] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_else] = ACTIONS(1465), - [anon_sym_switch] = ACTIONS(1465), - [anon_sym_case] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_do] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_goto] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_sizeof] = ACTIONS(1465), - [sym_number_literal] = ACTIONS(1467), - [anon_sym_L_SQUOTE] = ACTIONS(1467), - [anon_sym_u_SQUOTE] = ACTIONS(1467), - [anon_sym_U_SQUOTE] = ACTIONS(1467), - [anon_sym_u8_SQUOTE] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1467), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1465), - [sym_false] = ACTIONS(1465), - [sym_null] = ACTIONS(1465), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1467), - [anon_sym_ATimport] = ACTIONS(1467), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1465), - [anon_sym_ATcompatibility_alias] = ACTIONS(1467), - [anon_sym_ATprotocol] = ACTIONS(1467), - [anon_sym_ATclass] = ACTIONS(1467), - [anon_sym_ATinterface] = ACTIONS(1467), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1465), - [sym_method_attribute_specifier] = ACTIONS(1465), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1465), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1465), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1465), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1465), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1465), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1465), - [anon_sym_NS_AVAILABLE] = ACTIONS(1465), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1465), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_API_AVAILABLE] = ACTIONS(1465), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1465), - [anon_sym_API_DEPRECATED] = ACTIONS(1465), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1465), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1465), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1465), - [anon_sym___deprecated_msg] = ACTIONS(1465), - [anon_sym___deprecated_enum_msg] = ACTIONS(1465), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1465), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1465), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1465), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1465), - [anon_sym_ATimplementation] = ACTIONS(1467), - [anon_sym_typeof] = ACTIONS(1465), - [anon_sym___typeof] = ACTIONS(1465), - [anon_sym___typeof__] = ACTIONS(1465), - [sym_self] = ACTIONS(1465), - [sym_super] = ACTIONS(1465), - [sym_nil] = ACTIONS(1465), - [sym_id] = ACTIONS(1465), - [sym_instancetype] = ACTIONS(1465), - [sym_Class] = ACTIONS(1465), - [sym_SEL] = ACTIONS(1465), - [sym_IMP] = ACTIONS(1465), - [sym_BOOL] = ACTIONS(1465), - [sym_auto] = ACTIONS(1465), - [anon_sym_ATautoreleasepool] = ACTIONS(1467), - [anon_sym_ATsynchronized] = ACTIONS(1467), - [anon_sym_ATtry] = ACTIONS(1467), - [anon_sym_ATcatch] = ACTIONS(1467), - [anon_sym_ATfinally] = ACTIONS(1467), - [anon_sym_ATthrow] = ACTIONS(1467), - [anon_sym_ATselector] = ACTIONS(1467), - [anon_sym_ATencode] = ACTIONS(1467), - [anon_sym_AT] = ACTIONS(1465), - [sym_YES] = ACTIONS(1465), - [sym_NO] = ACTIONS(1465), - [anon_sym___builtin_available] = ACTIONS(1465), - [anon_sym_ATavailable] = ACTIONS(1467), - [anon_sym_va_arg] = ACTIONS(1465), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [436] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1195), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token2] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_out] = ACTIONS(1197), - [anon_sym_inout] = ACTIONS(1197), - [anon_sym_bycopy] = ACTIONS(1197), - [anon_sym_byref] = ACTIONS(1197), - [anon_sym_oneway] = ACTIONS(1197), - [anon_sym__Nullable] = ACTIONS(1197), - [anon_sym__Nonnull] = ACTIONS(1197), - [anon_sym__Nullable_result] = ACTIONS(1197), - [anon_sym__Null_unspecified] = ACTIONS(1197), - [anon_sym___autoreleasing] = ACTIONS(1197), - [anon_sym___nullable] = ACTIONS(1197), - [anon_sym___nonnull] = ACTIONS(1197), - [anon_sym___strong] = ACTIONS(1197), - [anon_sym___weak] = ACTIONS(1197), - [anon_sym___bridge] = ACTIONS(1197), - [anon_sym___bridge_transfer] = ACTIONS(1197), - [anon_sym___bridge_retained] = ACTIONS(1197), - [anon_sym___unsafe_unretained] = ACTIONS(1197), - [anon_sym___block] = ACTIONS(1197), - [anon_sym___kindof] = ACTIONS(1197), - [anon_sym___unused] = ACTIONS(1197), - [anon_sym__Complex] = ACTIONS(1197), - [anon_sym___complex] = ACTIONS(1197), - [anon_sym_IBOutlet] = ACTIONS(1197), - [anon_sym_IBInspectable] = ACTIONS(1197), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_NS_ENUM] = ACTIONS(1197), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1197), - [anon_sym_NS_OPTIONS] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [sym_null] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1195), - [anon_sym_ATimport] = ACTIONS(1195), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1197), - [anon_sym_ATcompatibility_alias] = ACTIONS(1195), - [anon_sym_ATprotocol] = ACTIONS(1195), - [anon_sym_ATclass] = ACTIONS(1195), - [anon_sym_ATinterface] = ACTIONS(1195), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1197), - [sym_method_attribute_specifier] = ACTIONS(1197), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1197), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE] = ACTIONS(1197), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_API_AVAILABLE] = ACTIONS(1197), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_API_DEPRECATED] = ACTIONS(1197), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1197), - [anon_sym___deprecated_msg] = ACTIONS(1197), - [anon_sym___deprecated_enum_msg] = ACTIONS(1197), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1197), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1197), - [anon_sym_ATimplementation] = ACTIONS(1195), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym___typeof] = ACTIONS(1197), - [anon_sym___typeof__] = ACTIONS(1197), - [sym_self] = ACTIONS(1197), - [sym_super] = ACTIONS(1197), - [sym_nil] = ACTIONS(1197), - [sym_id] = ACTIONS(1197), - [sym_instancetype] = ACTIONS(1197), - [sym_Class] = ACTIONS(1197), - [sym_SEL] = ACTIONS(1197), - [sym_IMP] = ACTIONS(1197), - [sym_BOOL] = ACTIONS(1197), - [sym_auto] = ACTIONS(1197), - [anon_sym_ATautoreleasepool] = ACTIONS(1195), - [anon_sym_ATsynchronized] = ACTIONS(1195), - [anon_sym_ATtry] = ACTIONS(1195), - [anon_sym_ATcatch] = ACTIONS(1195), - [anon_sym_ATfinally] = ACTIONS(1195), - [anon_sym_ATthrow] = ACTIONS(1195), - [anon_sym_ATselector] = ACTIONS(1195), - [anon_sym_ATencode] = ACTIONS(1195), - [anon_sym_AT] = ACTIONS(1197), - [sym_YES] = ACTIONS(1197), - [sym_NO] = ACTIONS(1197), - [anon_sym___builtin_available] = ACTIONS(1197), - [anon_sym_ATavailable] = ACTIONS(1195), - [anon_sym_va_arg] = ACTIONS(1197), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [437] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_include_token1] = ACTIONS(1195), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token2] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1197), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1197), - [anon_sym_LPAREN2] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1195), - [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PLUS] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1195), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1195), - [anon_sym_LBRACK] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_out] = ACTIONS(1197), - [anon_sym_inout] = ACTIONS(1197), - [anon_sym_bycopy] = ACTIONS(1197), - [anon_sym_byref] = ACTIONS(1197), - [anon_sym_oneway] = ACTIONS(1197), - [anon_sym__Nullable] = ACTIONS(1197), - [anon_sym__Nonnull] = ACTIONS(1197), - [anon_sym__Nullable_result] = ACTIONS(1197), - [anon_sym__Null_unspecified] = ACTIONS(1197), - [anon_sym___autoreleasing] = ACTIONS(1197), - [anon_sym___nullable] = ACTIONS(1197), - [anon_sym___nonnull] = ACTIONS(1197), - [anon_sym___strong] = ACTIONS(1197), - [anon_sym___weak] = ACTIONS(1197), - [anon_sym___bridge] = ACTIONS(1197), - [anon_sym___bridge_transfer] = ACTIONS(1197), - [anon_sym___bridge_retained] = ACTIONS(1197), - [anon_sym___unsafe_unretained] = ACTIONS(1197), - [anon_sym___block] = ACTIONS(1197), - [anon_sym___kindof] = ACTIONS(1197), - [anon_sym___unused] = ACTIONS(1197), - [anon_sym__Complex] = ACTIONS(1197), - [anon_sym___complex] = ACTIONS(1197), - [anon_sym_IBOutlet] = ACTIONS(1197), - [anon_sym_IBInspectable] = ACTIONS(1197), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_NS_ENUM] = ACTIONS(1197), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1197), - [anon_sym_NS_OPTIONS] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), - [anon_sym_if] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_switch] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1197), - [anon_sym_default] = ACTIONS(1197), - [anon_sym_while] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_for] = ACTIONS(1197), - [anon_sym_return] = ACTIONS(1197), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1197), - [anon_sym_DASH_DASH] = ACTIONS(1195), - [anon_sym_PLUS_PLUS] = ACTIONS(1195), - [anon_sym_sizeof] = ACTIONS(1197), - [sym_number_literal] = ACTIONS(1195), - [anon_sym_L_SQUOTE] = ACTIONS(1195), - [anon_sym_u_SQUOTE] = ACTIONS(1195), - [anon_sym_U_SQUOTE] = ACTIONS(1195), - [anon_sym_u8_SQUOTE] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_L_DQUOTE] = ACTIONS(1195), - [anon_sym_u_DQUOTE] = ACTIONS(1195), - [anon_sym_U_DQUOTE] = ACTIONS(1195), - [anon_sym_u8_DQUOTE] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1195), - [sym_true] = ACTIONS(1197), - [sym_false] = ACTIONS(1197), - [sym_null] = ACTIONS(1197), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1195), - [anon_sym_ATimport] = ACTIONS(1195), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1197), - [anon_sym_ATcompatibility_alias] = ACTIONS(1195), - [anon_sym_ATprotocol] = ACTIONS(1195), - [anon_sym_ATclass] = ACTIONS(1195), - [anon_sym_ATinterface] = ACTIONS(1195), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1197), - [sym_method_attribute_specifier] = ACTIONS(1197), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1197), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE] = ACTIONS(1197), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_API_AVAILABLE] = ACTIONS(1197), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_API_DEPRECATED] = ACTIONS(1197), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1197), - [anon_sym___deprecated_msg] = ACTIONS(1197), - [anon_sym___deprecated_enum_msg] = ACTIONS(1197), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1197), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1197), - [anon_sym_ATimplementation] = ACTIONS(1195), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym___typeof] = ACTIONS(1197), - [anon_sym___typeof__] = ACTIONS(1197), - [sym_self] = ACTIONS(1197), - [sym_super] = ACTIONS(1197), - [sym_nil] = ACTIONS(1197), - [sym_id] = ACTIONS(1197), - [sym_instancetype] = ACTIONS(1197), - [sym_Class] = ACTIONS(1197), - [sym_SEL] = ACTIONS(1197), - [sym_IMP] = ACTIONS(1197), - [sym_BOOL] = ACTIONS(1197), - [sym_auto] = ACTIONS(1197), - [anon_sym_ATautoreleasepool] = ACTIONS(1195), - [anon_sym_ATsynchronized] = ACTIONS(1195), - [anon_sym_ATtry] = ACTIONS(1195), - [anon_sym_ATcatch] = ACTIONS(1195), - [anon_sym_ATfinally] = ACTIONS(1195), - [anon_sym_ATthrow] = ACTIONS(1195), - [anon_sym_ATselector] = ACTIONS(1195), - [anon_sym_ATencode] = ACTIONS(1195), - [anon_sym_AT] = ACTIONS(1197), - [sym_YES] = ACTIONS(1197), - [sym_NO] = ACTIONS(1197), - [anon_sym___builtin_available] = ACTIONS(1197), - [anon_sym_ATavailable] = ACTIONS(1195), - [anon_sym_va_arg] = ACTIONS(1197), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [438] = { - [sym_identifier] = ACTIONS(1413), - [aux_sym_preproc_include_token1] = ACTIONS(1415), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [aux_sym_preproc_if_token1] = ACTIONS(1413), - [aux_sym_preproc_if_token2] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym___attribute] = ACTIONS(1413), - [anon_sym___attribute__] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1413), - [anon_sym___cdecl] = ACTIONS(1413), - [anon_sym___clrcall] = ACTIONS(1413), - [anon_sym___stdcall] = ACTIONS(1413), - [anon_sym___fastcall] = ACTIONS(1413), - [anon_sym___thiscall] = ACTIONS(1413), - [anon_sym___vectorcall] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_auto] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_inline] = ACTIONS(1413), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_volatile] = ACTIONS(1413), - [anon_sym_restrict] = ACTIONS(1413), - [anon_sym__Atomic] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_out] = ACTIONS(1413), - [anon_sym_inout] = ACTIONS(1413), - [anon_sym_bycopy] = ACTIONS(1413), - [anon_sym_byref] = ACTIONS(1413), - [anon_sym_oneway] = ACTIONS(1413), - [anon_sym__Nullable] = ACTIONS(1413), - [anon_sym__Nonnull] = ACTIONS(1413), - [anon_sym__Nullable_result] = ACTIONS(1413), - [anon_sym__Null_unspecified] = ACTIONS(1413), - [anon_sym___autoreleasing] = ACTIONS(1413), - [anon_sym___nullable] = ACTIONS(1413), - [anon_sym___nonnull] = ACTIONS(1413), - [anon_sym___strong] = ACTIONS(1413), - [anon_sym___weak] = ACTIONS(1413), - [anon_sym___bridge] = ACTIONS(1413), - [anon_sym___bridge_transfer] = ACTIONS(1413), - [anon_sym___bridge_retained] = ACTIONS(1413), - [anon_sym___unsafe_unretained] = ACTIONS(1413), - [anon_sym___block] = ACTIONS(1413), - [anon_sym___kindof] = ACTIONS(1413), - [anon_sym___unused] = ACTIONS(1413), - [anon_sym__Complex] = ACTIONS(1413), - [anon_sym___complex] = ACTIONS(1413), - [anon_sym_IBOutlet] = ACTIONS(1413), - [anon_sym_IBInspectable] = ACTIONS(1413), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1413), - [anon_sym_unsigned] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [sym_primitive_type] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_NS_ENUM] = ACTIONS(1413), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1413), - [anon_sym_NS_OPTIONS] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_case] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_goto] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_sizeof] = ACTIONS(1413), - [sym_number_literal] = ACTIONS(1415), - [anon_sym_L_SQUOTE] = ACTIONS(1415), - [anon_sym_u_SQUOTE] = ACTIONS(1415), - [anon_sym_U_SQUOTE] = ACTIONS(1415), - [anon_sym_u8_SQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_L_DQUOTE] = ACTIONS(1415), - [anon_sym_u_DQUOTE] = ACTIONS(1415), - [anon_sym_U_DQUOTE] = ACTIONS(1415), - [anon_sym_u8_DQUOTE] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [sym_true] = ACTIONS(1413), - [sym_false] = ACTIONS(1413), - [sym_null] = ACTIONS(1413), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1415), - [anon_sym_ATimport] = ACTIONS(1415), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1413), - [anon_sym_ATcompatibility_alias] = ACTIONS(1415), - [anon_sym_ATprotocol] = ACTIONS(1415), - [anon_sym_ATclass] = ACTIONS(1415), - [anon_sym_ATinterface] = ACTIONS(1415), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1413), - [sym_method_attribute_specifier] = ACTIONS(1413), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1413), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE] = ACTIONS(1413), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_API_AVAILABLE] = ACTIONS(1413), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_API_DEPRECATED] = ACTIONS(1413), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1413), - [anon_sym___deprecated_msg] = ACTIONS(1413), - [anon_sym___deprecated_enum_msg] = ACTIONS(1413), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1413), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1413), - [anon_sym_ATimplementation] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym___typeof] = ACTIONS(1413), - [anon_sym___typeof__] = ACTIONS(1413), - [sym_self] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_nil] = ACTIONS(1413), - [sym_id] = ACTIONS(1413), - [sym_instancetype] = ACTIONS(1413), - [sym_Class] = ACTIONS(1413), - [sym_SEL] = ACTIONS(1413), - [sym_IMP] = ACTIONS(1413), - [sym_BOOL] = ACTIONS(1413), - [sym_auto] = ACTIONS(1413), - [anon_sym_ATautoreleasepool] = ACTIONS(1415), - [anon_sym_ATsynchronized] = ACTIONS(1415), - [anon_sym_ATtry] = ACTIONS(1415), - [anon_sym_ATcatch] = ACTIONS(1415), - [anon_sym_ATfinally] = ACTIONS(1415), - [anon_sym_ATthrow] = ACTIONS(1415), - [anon_sym_ATselector] = ACTIONS(1415), - [anon_sym_ATencode] = ACTIONS(1415), - [anon_sym_AT] = ACTIONS(1413), - [sym_YES] = ACTIONS(1413), - [sym_NO] = ACTIONS(1413), - [anon_sym___builtin_available] = ACTIONS(1413), - [anon_sym_ATavailable] = ACTIONS(1415), - [anon_sym_va_arg] = ACTIONS(1413), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [439] = { - [sym_identifier] = ACTIONS(1555), - [aux_sym_preproc_include_token1] = ACTIONS(1553), - [aux_sym_preproc_def_token1] = ACTIONS(1553), - [aux_sym_preproc_if_token1] = ACTIONS(1555), - [aux_sym_preproc_if_token2] = ACTIONS(1555), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1555), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1555), - [anon_sym_LPAREN2] = ACTIONS(1553), - [anon_sym_BANG] = ACTIONS(1553), - [anon_sym_TILDE] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_PLUS] = ACTIONS(1555), - [anon_sym_STAR] = ACTIONS(1553), - [anon_sym_CARET] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_typedef] = ACTIONS(1555), - [anon_sym_extern] = ACTIONS(1555), - [anon_sym___attribute] = ACTIONS(1555), - [anon_sym___attribute__] = ACTIONS(1555), - [anon_sym___declspec] = ACTIONS(1555), - [anon_sym___cdecl] = ACTIONS(1555), - [anon_sym___clrcall] = ACTIONS(1555), - [anon_sym___stdcall] = ACTIONS(1555), - [anon_sym___fastcall] = ACTIONS(1555), - [anon_sym___thiscall] = ACTIONS(1555), - [anon_sym___vectorcall] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_static] = ACTIONS(1555), - [anon_sym_auto] = ACTIONS(1555), - [anon_sym_register] = ACTIONS(1555), - [anon_sym_inline] = ACTIONS(1555), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1555), - [anon_sym_const] = ACTIONS(1555), - [anon_sym_volatile] = ACTIONS(1555), - [anon_sym_restrict] = ACTIONS(1555), - [anon_sym__Atomic] = ACTIONS(1555), - [anon_sym_in] = ACTIONS(1555), - [anon_sym_out] = ACTIONS(1555), - [anon_sym_inout] = ACTIONS(1555), - [anon_sym_bycopy] = ACTIONS(1555), - [anon_sym_byref] = ACTIONS(1555), - [anon_sym_oneway] = ACTIONS(1555), - [anon_sym__Nullable] = ACTIONS(1555), - [anon_sym__Nonnull] = ACTIONS(1555), - [anon_sym__Nullable_result] = ACTIONS(1555), - [anon_sym__Null_unspecified] = ACTIONS(1555), - [anon_sym___autoreleasing] = ACTIONS(1555), - [anon_sym___nullable] = ACTIONS(1555), - [anon_sym___nonnull] = ACTIONS(1555), - [anon_sym___strong] = ACTIONS(1555), - [anon_sym___weak] = ACTIONS(1555), - [anon_sym___bridge] = ACTIONS(1555), - [anon_sym___bridge_transfer] = ACTIONS(1555), - [anon_sym___bridge_retained] = ACTIONS(1555), - [anon_sym___unsafe_unretained] = ACTIONS(1555), - [anon_sym___block] = ACTIONS(1555), - [anon_sym___kindof] = ACTIONS(1555), - [anon_sym___unused] = ACTIONS(1555), - [anon_sym__Complex] = ACTIONS(1555), - [anon_sym___complex] = ACTIONS(1555), - [anon_sym_IBOutlet] = ACTIONS(1555), - [anon_sym_IBInspectable] = ACTIONS(1555), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1555), - [anon_sym_signed] = ACTIONS(1555), - [anon_sym_unsigned] = ACTIONS(1555), - [anon_sym_long] = ACTIONS(1555), - [anon_sym_short] = ACTIONS(1555), - [sym_primitive_type] = ACTIONS(1555), - [anon_sym_enum] = ACTIONS(1555), - [anon_sym_NS_ENUM] = ACTIONS(1555), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1555), - [anon_sym_NS_OPTIONS] = ACTIONS(1555), - [anon_sym_struct] = ACTIONS(1555), - [anon_sym_union] = ACTIONS(1555), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_else] = ACTIONS(1555), - [anon_sym_switch] = ACTIONS(1555), - [anon_sym_case] = ACTIONS(1555), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_do] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_goto] = ACTIONS(1555), - [anon_sym_DASH_DASH] = ACTIONS(1553), - [anon_sym_PLUS_PLUS] = ACTIONS(1553), - [anon_sym_sizeof] = ACTIONS(1555), - [sym_number_literal] = ACTIONS(1553), - [anon_sym_L_SQUOTE] = ACTIONS(1553), - [anon_sym_u_SQUOTE] = ACTIONS(1553), - [anon_sym_U_SQUOTE] = ACTIONS(1553), - [anon_sym_u8_SQUOTE] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_L_DQUOTE] = ACTIONS(1553), - [anon_sym_u_DQUOTE] = ACTIONS(1553), - [anon_sym_U_DQUOTE] = ACTIONS(1553), - [anon_sym_u8_DQUOTE] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1553), - [sym_true] = ACTIONS(1555), - [sym_false] = ACTIONS(1555), - [sym_null] = ACTIONS(1555), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1553), - [anon_sym_ATimport] = ACTIONS(1553), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1555), - [anon_sym_ATcompatibility_alias] = ACTIONS(1553), - [anon_sym_ATprotocol] = ACTIONS(1553), - [anon_sym_ATclass] = ACTIONS(1553), - [anon_sym_ATinterface] = ACTIONS(1553), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1555), - [sym_method_attribute_specifier] = ACTIONS(1555), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1555), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1555), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1555), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1555), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1555), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1555), - [anon_sym_NS_AVAILABLE] = ACTIONS(1555), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1555), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1555), - [anon_sym_API_AVAILABLE] = ACTIONS(1555), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1555), - [anon_sym_API_DEPRECATED] = ACTIONS(1555), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1555), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1555), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1555), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1555), - [anon_sym___deprecated_msg] = ACTIONS(1555), - [anon_sym___deprecated_enum_msg] = ACTIONS(1555), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1555), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1555), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1555), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1555), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1555), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1555), - [anon_sym_ATimplementation] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), - [anon_sym___typeof] = ACTIONS(1555), - [anon_sym___typeof__] = ACTIONS(1555), - [sym_self] = ACTIONS(1555), - [sym_super] = ACTIONS(1555), - [sym_nil] = ACTIONS(1555), - [sym_id] = ACTIONS(1555), - [sym_instancetype] = ACTIONS(1555), - [sym_Class] = ACTIONS(1555), - [sym_SEL] = ACTIONS(1555), - [sym_IMP] = ACTIONS(1555), - [sym_BOOL] = ACTIONS(1555), - [sym_auto] = ACTIONS(1555), - [anon_sym_ATautoreleasepool] = ACTIONS(1553), - [anon_sym_ATsynchronized] = ACTIONS(1553), - [anon_sym_ATtry] = ACTIONS(1553), - [anon_sym_ATcatch] = ACTIONS(1553), - [anon_sym_ATfinally] = ACTIONS(1553), - [anon_sym_ATthrow] = ACTIONS(1553), - [anon_sym_ATselector] = ACTIONS(1553), - [anon_sym_ATencode] = ACTIONS(1553), - [anon_sym_AT] = ACTIONS(1555), - [sym_YES] = ACTIONS(1555), - [sym_NO] = ACTIONS(1555), - [anon_sym___builtin_available] = ACTIONS(1555), - [anon_sym_ATavailable] = ACTIONS(1553), - [anon_sym_va_arg] = ACTIONS(1555), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [440] = { - [sym_identifier] = ACTIONS(1521), - [aux_sym_preproc_include_token1] = ACTIONS(1523), - [aux_sym_preproc_def_token1] = ACTIONS(1523), - [aux_sym_preproc_if_token1] = ACTIONS(1521), - [aux_sym_preproc_if_token2] = ACTIONS(1521), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1521), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1521), - [anon_sym_LPAREN2] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_TILDE] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_CARET] = ACTIONS(1523), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1523), - [anon_sym_typedef] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(1521), - [anon_sym___attribute] = ACTIONS(1521), - [anon_sym___attribute__] = ACTIONS(1521), - [anon_sym___declspec] = ACTIONS(1521), - [anon_sym___cdecl] = ACTIONS(1521), - [anon_sym___clrcall] = ACTIONS(1521), - [anon_sym___stdcall] = ACTIONS(1521), - [anon_sym___fastcall] = ACTIONS(1521), - [anon_sym___thiscall] = ACTIONS(1521), - [anon_sym___vectorcall] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_LBRACK] = ACTIONS(1523), - [anon_sym_static] = ACTIONS(1521), - [anon_sym_auto] = ACTIONS(1521), - [anon_sym_register] = ACTIONS(1521), - [anon_sym_inline] = ACTIONS(1521), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1521), - [anon_sym_volatile] = ACTIONS(1521), - [anon_sym_restrict] = ACTIONS(1521), - [anon_sym__Atomic] = ACTIONS(1521), - [anon_sym_in] = ACTIONS(1521), - [anon_sym_out] = ACTIONS(1521), - [anon_sym_inout] = ACTIONS(1521), - [anon_sym_bycopy] = ACTIONS(1521), - [anon_sym_byref] = ACTIONS(1521), - [anon_sym_oneway] = ACTIONS(1521), - [anon_sym__Nullable] = ACTIONS(1521), - [anon_sym__Nonnull] = ACTIONS(1521), - [anon_sym__Nullable_result] = ACTIONS(1521), - [anon_sym__Null_unspecified] = ACTIONS(1521), - [anon_sym___autoreleasing] = ACTIONS(1521), - [anon_sym___nullable] = ACTIONS(1521), - [anon_sym___nonnull] = ACTIONS(1521), - [anon_sym___strong] = ACTIONS(1521), - [anon_sym___weak] = ACTIONS(1521), - [anon_sym___bridge] = ACTIONS(1521), - [anon_sym___bridge_transfer] = ACTIONS(1521), - [anon_sym___bridge_retained] = ACTIONS(1521), - [anon_sym___unsafe_unretained] = ACTIONS(1521), - [anon_sym___block] = ACTIONS(1521), - [anon_sym___kindof] = ACTIONS(1521), - [anon_sym___unused] = ACTIONS(1521), - [anon_sym__Complex] = ACTIONS(1521), - [anon_sym___complex] = ACTIONS(1521), - [anon_sym_IBOutlet] = ACTIONS(1521), - [anon_sym_IBInspectable] = ACTIONS(1521), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1521), - [anon_sym_signed] = ACTIONS(1521), - [anon_sym_unsigned] = ACTIONS(1521), - [anon_sym_long] = ACTIONS(1521), - [anon_sym_short] = ACTIONS(1521), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_enum] = ACTIONS(1521), - [anon_sym_NS_ENUM] = ACTIONS(1521), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1521), - [anon_sym_NS_OPTIONS] = ACTIONS(1521), - [anon_sym_struct] = ACTIONS(1521), - [anon_sym_union] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1521), - [anon_sym_else] = ACTIONS(1521), - [anon_sym_switch] = ACTIONS(1521), - [anon_sym_case] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(1521), - [anon_sym_while] = ACTIONS(1521), - [anon_sym_do] = ACTIONS(1521), - [anon_sym_for] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1521), - [anon_sym_continue] = ACTIONS(1521), - [anon_sym_goto] = ACTIONS(1521), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1521), - [sym_number_literal] = ACTIONS(1523), - [anon_sym_L_SQUOTE] = ACTIONS(1523), - [anon_sym_u_SQUOTE] = ACTIONS(1523), - [anon_sym_U_SQUOTE] = ACTIONS(1523), - [anon_sym_u8_SQUOTE] = ACTIONS(1523), - [anon_sym_SQUOTE] = ACTIONS(1523), - [anon_sym_L_DQUOTE] = ACTIONS(1523), - [anon_sym_u_DQUOTE] = ACTIONS(1523), - [anon_sym_U_DQUOTE] = ACTIONS(1523), - [anon_sym_u8_DQUOTE] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1523), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1523), - [anon_sym_ATimport] = ACTIONS(1523), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1521), - [anon_sym_ATcompatibility_alias] = ACTIONS(1523), - [anon_sym_ATprotocol] = ACTIONS(1523), - [anon_sym_ATclass] = ACTIONS(1523), - [anon_sym_ATinterface] = ACTIONS(1523), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1521), - [sym_method_attribute_specifier] = ACTIONS(1521), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1521), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1521), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1521), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1521), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1521), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1521), - [anon_sym_NS_AVAILABLE] = ACTIONS(1521), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1521), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1521), - [anon_sym_API_AVAILABLE] = ACTIONS(1521), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1521), - [anon_sym_API_DEPRECATED] = ACTIONS(1521), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1521), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1521), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1521), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1521), - [anon_sym___deprecated_msg] = ACTIONS(1521), - [anon_sym___deprecated_enum_msg] = ACTIONS(1521), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1521), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1521), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1521), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1521), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1521), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1521), - [anon_sym_ATimplementation] = ACTIONS(1523), - [anon_sym_typeof] = ACTIONS(1521), - [anon_sym___typeof] = ACTIONS(1521), - [anon_sym___typeof__] = ACTIONS(1521), - [sym_self] = ACTIONS(1521), - [sym_super] = ACTIONS(1521), - [sym_nil] = ACTIONS(1521), - [sym_id] = ACTIONS(1521), - [sym_instancetype] = ACTIONS(1521), - [sym_Class] = ACTIONS(1521), - [sym_SEL] = ACTIONS(1521), - [sym_IMP] = ACTIONS(1521), - [sym_BOOL] = ACTIONS(1521), - [sym_auto] = ACTIONS(1521), - [anon_sym_ATautoreleasepool] = ACTIONS(1523), - [anon_sym_ATsynchronized] = ACTIONS(1523), - [anon_sym_ATtry] = ACTIONS(1523), - [anon_sym_ATcatch] = ACTIONS(1523), - [anon_sym_ATfinally] = ACTIONS(1523), - [anon_sym_ATthrow] = ACTIONS(1523), - [anon_sym_ATselector] = ACTIONS(1523), - [anon_sym_ATencode] = ACTIONS(1523), - [anon_sym_AT] = ACTIONS(1521), - [sym_YES] = ACTIONS(1521), - [sym_NO] = ACTIONS(1521), - [anon_sym___builtin_available] = ACTIONS(1521), - [anon_sym_ATavailable] = ACTIONS(1523), - [anon_sym_va_arg] = ACTIONS(1521), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [441] = { + [354] = { [sym_identifier] = ACTIONS(1483), [aux_sym_preproc_include_token1] = ACTIONS(1481), [aux_sym_preproc_def_token1] = ACTIONS(1481), @@ -103405,9 +88149,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1483), [sym_primitive_type] = ACTIONS(1483), [anon_sym_enum] = ACTIONS(1483), - [anon_sym_NS_ENUM] = ACTIONS(1483), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1483), - [anon_sym_NS_OPTIONS] = ACTIONS(1483), [anon_sym_struct] = ACTIONS(1483), [anon_sym_union] = ACTIONS(1483), [anon_sym_if] = ACTIONS(1483), @@ -103474,6 +88215,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1483), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1483), [anon_sym_ATimplementation] = ACTIONS(1481), + [anon_sym_NS_ENUM] = ACTIONS(1483), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1483), + [anon_sym_NS_OPTIONS] = ACTIONS(1483), [anon_sym_typeof] = ACTIONS(1483), [anon_sym___typeof] = ACTIONS(1483), [anon_sym___typeof__] = ACTIONS(1483), @@ -103508,174 +88252,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [442] = { - [sym_identifier] = ACTIONS(1673), - [aux_sym_preproc_include_token1] = ACTIONS(1675), - [aux_sym_preproc_def_token1] = ACTIONS(1675), - [aux_sym_preproc_if_token1] = ACTIONS(1673), - [aux_sym_preproc_if_token2] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1673), - [anon_sym_LPAREN2] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_CARET] = ACTIONS(1675), - [anon_sym_AMP] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_typedef] = ACTIONS(1673), - [anon_sym_extern] = ACTIONS(1673), - [anon_sym___attribute] = ACTIONS(1673), - [anon_sym___attribute__] = ACTIONS(1673), - [anon_sym___declspec] = ACTIONS(1673), - [anon_sym___cdecl] = ACTIONS(1673), - [anon_sym___clrcall] = ACTIONS(1673), - [anon_sym___stdcall] = ACTIONS(1673), - [anon_sym___fastcall] = ACTIONS(1673), - [anon_sym___thiscall] = ACTIONS(1673), - [anon_sym___vectorcall] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_LBRACK] = ACTIONS(1675), - [anon_sym_static] = ACTIONS(1673), - [anon_sym_auto] = ACTIONS(1673), - [anon_sym_register] = ACTIONS(1673), - [anon_sym_inline] = ACTIONS(1673), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1673), - [anon_sym_const] = ACTIONS(1673), - [anon_sym_volatile] = ACTIONS(1673), - [anon_sym_restrict] = ACTIONS(1673), - [anon_sym__Atomic] = ACTIONS(1673), - [anon_sym_in] = ACTIONS(1673), - [anon_sym_out] = ACTIONS(1673), - [anon_sym_inout] = ACTIONS(1673), - [anon_sym_bycopy] = ACTIONS(1673), - [anon_sym_byref] = ACTIONS(1673), - [anon_sym_oneway] = ACTIONS(1673), - [anon_sym__Nullable] = ACTIONS(1673), - [anon_sym__Nonnull] = ACTIONS(1673), - [anon_sym__Nullable_result] = ACTIONS(1673), - [anon_sym__Null_unspecified] = ACTIONS(1673), - [anon_sym___autoreleasing] = ACTIONS(1673), - [anon_sym___nullable] = ACTIONS(1673), - [anon_sym___nonnull] = ACTIONS(1673), - [anon_sym___strong] = ACTIONS(1673), - [anon_sym___weak] = ACTIONS(1673), - [anon_sym___bridge] = ACTIONS(1673), - [anon_sym___bridge_transfer] = ACTIONS(1673), - [anon_sym___bridge_retained] = ACTIONS(1673), - [anon_sym___unsafe_unretained] = ACTIONS(1673), - [anon_sym___block] = ACTIONS(1673), - [anon_sym___kindof] = ACTIONS(1673), - [anon_sym___unused] = ACTIONS(1673), - [anon_sym__Complex] = ACTIONS(1673), - [anon_sym___complex] = ACTIONS(1673), - [anon_sym_IBOutlet] = ACTIONS(1673), - [anon_sym_IBInspectable] = ACTIONS(1673), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1673), - [anon_sym_signed] = ACTIONS(1673), - [anon_sym_unsigned] = ACTIONS(1673), - [anon_sym_long] = ACTIONS(1673), - [anon_sym_short] = ACTIONS(1673), - [sym_primitive_type] = ACTIONS(1673), - [anon_sym_enum] = ACTIONS(1673), - [anon_sym_NS_ENUM] = ACTIONS(1673), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1673), - [anon_sym_NS_OPTIONS] = ACTIONS(1673), - [anon_sym_struct] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_switch] = ACTIONS(1673), - [anon_sym_case] = ACTIONS(1673), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_do] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1673), - [anon_sym_goto] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_sizeof] = ACTIONS(1673), - [sym_number_literal] = ACTIONS(1675), - [anon_sym_L_SQUOTE] = ACTIONS(1675), - [anon_sym_u_SQUOTE] = ACTIONS(1675), - [anon_sym_U_SQUOTE] = ACTIONS(1675), - [anon_sym_u8_SQUOTE] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1675), - [anon_sym_L_DQUOTE] = ACTIONS(1675), - [anon_sym_u_DQUOTE] = ACTIONS(1675), - [anon_sym_U_DQUOTE] = ACTIONS(1675), - [anon_sym_u8_DQUOTE] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym_true] = ACTIONS(1673), - [sym_false] = ACTIONS(1673), - [sym_null] = ACTIONS(1673), + [355] = { + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_include_token1] = ACTIONS(1485), + [aux_sym_preproc_def_token1] = ACTIONS(1485), + [aux_sym_preproc_if_token1] = ACTIONS(1488), + [aux_sym_preproc_if_token2] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), + [anon_sym_LPAREN2] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_TILDE] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1485), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1485), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_out] = ACTIONS(1488), + [anon_sym_inout] = ACTIONS(1488), + [anon_sym_bycopy] = ACTIONS(1488), + [anon_sym_byref] = ACTIONS(1488), + [anon_sym_oneway] = ACTIONS(1488), + [anon_sym__Nullable] = ACTIONS(1488), + [anon_sym__Nonnull] = ACTIONS(1488), + [anon_sym__Nullable_result] = ACTIONS(1488), + [anon_sym__Null_unspecified] = ACTIONS(1488), + [anon_sym___autoreleasing] = ACTIONS(1488), + [anon_sym___nullable] = ACTIONS(1488), + [anon_sym___nonnull] = ACTIONS(1488), + [anon_sym___strong] = ACTIONS(1488), + [anon_sym___weak] = ACTIONS(1488), + [anon_sym___bridge] = ACTIONS(1488), + [anon_sym___bridge_transfer] = ACTIONS(1488), + [anon_sym___bridge_retained] = ACTIONS(1488), + [anon_sym___unsafe_unretained] = ACTIONS(1488), + [anon_sym___block] = ACTIONS(1488), + [anon_sym___kindof] = ACTIONS(1488), + [anon_sym___unused] = ACTIONS(1488), + [anon_sym__Complex] = ACTIONS(1488), + [anon_sym___complex] = ACTIONS(1488), + [anon_sym_IBOutlet] = ACTIONS(1488), + [anon_sym_IBInspectable] = ACTIONS(1488), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1488), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_else] = ACTIONS(1488), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_case] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_do] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_goto] = ACTIONS(1488), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_sizeof] = ACTIONS(1488), + [sym_number_literal] = ACTIONS(1485), + [anon_sym_L_SQUOTE] = ACTIONS(1485), + [anon_sym_u_SQUOTE] = ACTIONS(1485), + [anon_sym_U_SQUOTE] = ACTIONS(1485), + [anon_sym_u8_SQUOTE] = ACTIONS(1485), + [anon_sym_SQUOTE] = ACTIONS(1485), + [anon_sym_L_DQUOTE] = ACTIONS(1485), + [anon_sym_u_DQUOTE] = ACTIONS(1485), + [anon_sym_U_DQUOTE] = ACTIONS(1485), + [anon_sym_u8_DQUOTE] = ACTIONS(1485), + [anon_sym_DQUOTE] = ACTIONS(1485), + [sym_true] = ACTIONS(1488), + [sym_false] = ACTIONS(1488), + [sym_null] = ACTIONS(1488), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1675), - [anon_sym_ATimport] = ACTIONS(1675), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1673), - [anon_sym_ATcompatibility_alias] = ACTIONS(1675), - [anon_sym_ATprotocol] = ACTIONS(1675), - [anon_sym_ATclass] = ACTIONS(1675), - [anon_sym_ATinterface] = ACTIONS(1675), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1673), - [sym_method_attribute_specifier] = ACTIONS(1673), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1673), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1673), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1673), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1673), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1673), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1673), - [anon_sym_NS_AVAILABLE] = ACTIONS(1673), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1673), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1673), - [anon_sym_API_AVAILABLE] = ACTIONS(1673), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1673), - [anon_sym_API_DEPRECATED] = ACTIONS(1673), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1673), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1673), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1673), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1673), - [anon_sym___deprecated_msg] = ACTIONS(1673), - [anon_sym___deprecated_enum_msg] = ACTIONS(1673), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1673), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1673), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1673), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1673), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1673), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1673), - [anon_sym_ATimplementation] = ACTIONS(1675), - [anon_sym_typeof] = ACTIONS(1673), - [anon_sym___typeof] = ACTIONS(1673), - [anon_sym___typeof__] = ACTIONS(1673), - [sym_self] = ACTIONS(1673), - [sym_super] = ACTIONS(1673), - [sym_nil] = ACTIONS(1673), - [sym_id] = ACTIONS(1673), - [sym_instancetype] = ACTIONS(1673), - [sym_Class] = ACTIONS(1673), - [sym_SEL] = ACTIONS(1673), - [sym_IMP] = ACTIONS(1673), - [sym_BOOL] = ACTIONS(1673), - [sym_auto] = ACTIONS(1673), - [anon_sym_ATautoreleasepool] = ACTIONS(1675), - [anon_sym_ATsynchronized] = ACTIONS(1675), - [anon_sym_ATtry] = ACTIONS(1675), - [anon_sym_ATcatch] = ACTIONS(1675), - [anon_sym_ATfinally] = ACTIONS(1675), - [anon_sym_ATthrow] = ACTIONS(1675), - [anon_sym_ATselector] = ACTIONS(1675), - [anon_sym_ATencode] = ACTIONS(1675), - [anon_sym_AT] = ACTIONS(1673), - [sym_YES] = ACTIONS(1673), - [sym_NO] = ACTIONS(1673), - [anon_sym___builtin_available] = ACTIONS(1673), - [anon_sym_ATavailable] = ACTIONS(1675), - [anon_sym_va_arg] = ACTIONS(1673), + [anon_sym_POUNDimport] = ACTIONS(1485), + [anon_sym_ATimport] = ACTIONS(1485), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1488), + [anon_sym_ATcompatibility_alias] = ACTIONS(1485), + [anon_sym_ATprotocol] = ACTIONS(1485), + [anon_sym_ATclass] = ACTIONS(1485), + [anon_sym_ATinterface] = ACTIONS(1485), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1488), + [sym_method_attribute_specifier] = ACTIONS(1488), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1488), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1488), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1488), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1488), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1488), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1488), + [anon_sym_NS_AVAILABLE] = ACTIONS(1488), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1488), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1488), + [anon_sym_API_AVAILABLE] = ACTIONS(1488), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1488), + [anon_sym_API_DEPRECATED] = ACTIONS(1488), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1488), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1488), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1488), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1488), + [anon_sym___deprecated_msg] = ACTIONS(1488), + [anon_sym___deprecated_enum_msg] = ACTIONS(1488), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1488), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1488), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1488), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1488), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1488), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1488), + [anon_sym_ATimplementation] = ACTIONS(1485), + [anon_sym_NS_ENUM] = ACTIONS(1488), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1488), + [anon_sym_NS_OPTIONS] = ACTIONS(1488), + [anon_sym_typeof] = ACTIONS(1488), + [anon_sym___typeof] = ACTIONS(1488), + [anon_sym___typeof__] = ACTIONS(1488), + [sym_self] = ACTIONS(1488), + [sym_super] = ACTIONS(1488), + [sym_nil] = ACTIONS(1488), + [sym_id] = ACTIONS(1488), + [sym_instancetype] = ACTIONS(1488), + [sym_Class] = ACTIONS(1488), + [sym_SEL] = ACTIONS(1488), + [sym_IMP] = ACTIONS(1488), + [sym_BOOL] = ACTIONS(1488), + [sym_auto] = ACTIONS(1488), + [anon_sym_ATautoreleasepool] = ACTIONS(1485), + [anon_sym_ATsynchronized] = ACTIONS(1485), + [anon_sym_ATtry] = ACTIONS(1485), + [anon_sym_ATcatch] = ACTIONS(1485), + [anon_sym_ATfinally] = ACTIONS(1485), + [anon_sym_ATthrow] = ACTIONS(1485), + [anon_sym_ATselector] = ACTIONS(1485), + [anon_sym_ATencode] = ACTIONS(1485), + [anon_sym_AT] = ACTIONS(1488), + [sym_YES] = ACTIONS(1488), + [sym_NO] = ACTIONS(1488), + [anon_sym___builtin_available] = ACTIONS(1488), + [anon_sym_ATavailable] = ACTIONS(1485), + [anon_sym_va_arg] = ACTIONS(1488), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -103683,174 +88427,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [443] = { - [sym_identifier] = ACTIONS(1409), - [aux_sym_preproc_include_token1] = ACTIONS(1411), - [aux_sym_preproc_def_token1] = ACTIONS(1411), - [aux_sym_preproc_if_token1] = ACTIONS(1409), - [aux_sym_preproc_if_token2] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1409), - [anon_sym_LPAREN2] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_typedef] = ACTIONS(1409), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym___attribute] = ACTIONS(1409), - [anon_sym___attribute__] = ACTIONS(1409), - [anon_sym___declspec] = ACTIONS(1409), - [anon_sym___cdecl] = ACTIONS(1409), - [anon_sym___clrcall] = ACTIONS(1409), - [anon_sym___stdcall] = ACTIONS(1409), - [anon_sym___fastcall] = ACTIONS(1409), - [anon_sym___thiscall] = ACTIONS(1409), - [anon_sym___vectorcall] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_auto] = ACTIONS(1409), - [anon_sym_register] = ACTIONS(1409), - [anon_sym_inline] = ACTIONS(1409), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_volatile] = ACTIONS(1409), - [anon_sym_restrict] = ACTIONS(1409), - [anon_sym__Atomic] = ACTIONS(1409), - [anon_sym_in] = ACTIONS(1409), - [anon_sym_out] = ACTIONS(1409), - [anon_sym_inout] = ACTIONS(1409), - [anon_sym_bycopy] = ACTIONS(1409), - [anon_sym_byref] = ACTIONS(1409), - [anon_sym_oneway] = ACTIONS(1409), - [anon_sym__Nullable] = ACTIONS(1409), - [anon_sym__Nonnull] = ACTIONS(1409), - [anon_sym__Nullable_result] = ACTIONS(1409), - [anon_sym__Null_unspecified] = ACTIONS(1409), - [anon_sym___autoreleasing] = ACTIONS(1409), - [anon_sym___nullable] = ACTIONS(1409), - [anon_sym___nonnull] = ACTIONS(1409), - [anon_sym___strong] = ACTIONS(1409), - [anon_sym___weak] = ACTIONS(1409), - [anon_sym___bridge] = ACTIONS(1409), - [anon_sym___bridge_transfer] = ACTIONS(1409), - [anon_sym___bridge_retained] = ACTIONS(1409), - [anon_sym___unsafe_unretained] = ACTIONS(1409), - [anon_sym___block] = ACTIONS(1409), - [anon_sym___kindof] = ACTIONS(1409), - [anon_sym___unused] = ACTIONS(1409), - [anon_sym__Complex] = ACTIONS(1409), - [anon_sym___complex] = ACTIONS(1409), - [anon_sym_IBOutlet] = ACTIONS(1409), - [anon_sym_IBInspectable] = ACTIONS(1409), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1409), - [anon_sym_signed] = ACTIONS(1409), - [anon_sym_unsigned] = ACTIONS(1409), - [anon_sym_long] = ACTIONS(1409), - [anon_sym_short] = ACTIONS(1409), - [sym_primitive_type] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_NS_ENUM] = ACTIONS(1409), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1409), - [anon_sym_NS_OPTIONS] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_switch] = ACTIONS(1409), - [anon_sym_case] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_do] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_goto] = ACTIONS(1409), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_sizeof] = ACTIONS(1409), - [sym_number_literal] = ACTIONS(1411), - [anon_sym_L_SQUOTE] = ACTIONS(1411), - [anon_sym_u_SQUOTE] = ACTIONS(1411), - [anon_sym_U_SQUOTE] = ACTIONS(1411), - [anon_sym_u8_SQUOTE] = ACTIONS(1411), - [anon_sym_SQUOTE] = ACTIONS(1411), - [anon_sym_L_DQUOTE] = ACTIONS(1411), - [anon_sym_u_DQUOTE] = ACTIONS(1411), - [anon_sym_U_DQUOTE] = ACTIONS(1411), - [anon_sym_u8_DQUOTE] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym_true] = ACTIONS(1409), - [sym_false] = ACTIONS(1409), - [sym_null] = ACTIONS(1409), + [356] = { + [sym_identifier] = ACTIONS(1493), + [aux_sym_preproc_include_token1] = ACTIONS(1491), + [aux_sym_preproc_def_token1] = ACTIONS(1491), + [aux_sym_preproc_if_token1] = ACTIONS(1493), + [aux_sym_preproc_if_token2] = ACTIONS(1493), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1493), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1493), + [anon_sym_LPAREN2] = ACTIONS(1491), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_typedef] = ACTIONS(1493), + [anon_sym_extern] = ACTIONS(1493), + [anon_sym___attribute] = ACTIONS(1493), + [anon_sym___attribute__] = ACTIONS(1493), + [anon_sym___declspec] = ACTIONS(1493), + [anon_sym___cdecl] = ACTIONS(1493), + [anon_sym___clrcall] = ACTIONS(1493), + [anon_sym___stdcall] = ACTIONS(1493), + [anon_sym___fastcall] = ACTIONS(1493), + [anon_sym___thiscall] = ACTIONS(1493), + [anon_sym___vectorcall] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_auto] = ACTIONS(1493), + [anon_sym_register] = ACTIONS(1493), + [anon_sym_inline] = ACTIONS(1493), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_volatile] = ACTIONS(1493), + [anon_sym_restrict] = ACTIONS(1493), + [anon_sym__Atomic] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_out] = ACTIONS(1493), + [anon_sym_inout] = ACTIONS(1493), + [anon_sym_bycopy] = ACTIONS(1493), + [anon_sym_byref] = ACTIONS(1493), + [anon_sym_oneway] = ACTIONS(1493), + [anon_sym__Nullable] = ACTIONS(1493), + [anon_sym__Nonnull] = ACTIONS(1493), + [anon_sym__Nullable_result] = ACTIONS(1493), + [anon_sym__Null_unspecified] = ACTIONS(1493), + [anon_sym___autoreleasing] = ACTIONS(1493), + [anon_sym___nullable] = ACTIONS(1493), + [anon_sym___nonnull] = ACTIONS(1493), + [anon_sym___strong] = ACTIONS(1493), + [anon_sym___weak] = ACTIONS(1493), + [anon_sym___bridge] = ACTIONS(1493), + [anon_sym___bridge_transfer] = ACTIONS(1493), + [anon_sym___bridge_retained] = ACTIONS(1493), + [anon_sym___unsafe_unretained] = ACTIONS(1493), + [anon_sym___block] = ACTIONS(1493), + [anon_sym___kindof] = ACTIONS(1493), + [anon_sym___unused] = ACTIONS(1493), + [anon_sym__Complex] = ACTIONS(1493), + [anon_sym___complex] = ACTIONS(1493), + [anon_sym_IBOutlet] = ACTIONS(1493), + [anon_sym_IBInspectable] = ACTIONS(1493), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1493), + [anon_sym_signed] = ACTIONS(1493), + [anon_sym_unsigned] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [sym_primitive_type] = ACTIONS(1493), + [anon_sym_enum] = ACTIONS(1493), + [anon_sym_struct] = ACTIONS(1493), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_else] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_case] = ACTIONS(1493), + [anon_sym_default] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_goto] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [sym_number_literal] = ACTIONS(1491), + [anon_sym_L_SQUOTE] = ACTIONS(1491), + [anon_sym_u_SQUOTE] = ACTIONS(1491), + [anon_sym_U_SQUOTE] = ACTIONS(1491), + [anon_sym_u8_SQUOTE] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_L_DQUOTE] = ACTIONS(1491), + [anon_sym_u_DQUOTE] = ACTIONS(1491), + [anon_sym_U_DQUOTE] = ACTIONS(1491), + [anon_sym_u8_DQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [sym_true] = ACTIONS(1493), + [sym_false] = ACTIONS(1493), + [sym_null] = ACTIONS(1493), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1411), - [anon_sym_ATimport] = ACTIONS(1411), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1409), - [anon_sym_ATcompatibility_alias] = ACTIONS(1411), - [anon_sym_ATprotocol] = ACTIONS(1411), - [anon_sym_ATclass] = ACTIONS(1411), - [anon_sym_ATinterface] = ACTIONS(1411), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1409), - [sym_method_attribute_specifier] = ACTIONS(1409), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1409), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1409), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1409), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1409), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1409), - [anon_sym_NS_AVAILABLE] = ACTIONS(1409), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1409), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_API_AVAILABLE] = ACTIONS(1409), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_API_DEPRECATED] = ACTIONS(1409), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1409), - [anon_sym___deprecated_msg] = ACTIONS(1409), - [anon_sym___deprecated_enum_msg] = ACTIONS(1409), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1409), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1409), - [anon_sym_ATimplementation] = ACTIONS(1411), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___typeof] = ACTIONS(1409), - [anon_sym___typeof__] = ACTIONS(1409), - [sym_self] = ACTIONS(1409), - [sym_super] = ACTIONS(1409), - [sym_nil] = ACTIONS(1409), - [sym_id] = ACTIONS(1409), - [sym_instancetype] = ACTIONS(1409), - [sym_Class] = ACTIONS(1409), - [sym_SEL] = ACTIONS(1409), - [sym_IMP] = ACTIONS(1409), - [sym_BOOL] = ACTIONS(1409), - [sym_auto] = ACTIONS(1409), - [anon_sym_ATautoreleasepool] = ACTIONS(1411), - [anon_sym_ATsynchronized] = ACTIONS(1411), - [anon_sym_ATtry] = ACTIONS(1411), - [anon_sym_ATcatch] = ACTIONS(1411), - [anon_sym_ATfinally] = ACTIONS(1411), - [anon_sym_ATthrow] = ACTIONS(1411), - [anon_sym_ATselector] = ACTIONS(1411), - [anon_sym_ATencode] = ACTIONS(1411), - [anon_sym_AT] = ACTIONS(1409), - [sym_YES] = ACTIONS(1409), - [sym_NO] = ACTIONS(1409), - [anon_sym___builtin_available] = ACTIONS(1409), - [anon_sym_ATavailable] = ACTIONS(1411), - [anon_sym_va_arg] = ACTIONS(1409), + [anon_sym_POUNDimport] = ACTIONS(1491), + [anon_sym_ATimport] = ACTIONS(1491), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1493), + [anon_sym_ATcompatibility_alias] = ACTIONS(1491), + [anon_sym_ATprotocol] = ACTIONS(1491), + [anon_sym_ATclass] = ACTIONS(1491), + [anon_sym_ATinterface] = ACTIONS(1491), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1493), + [sym_method_attribute_specifier] = ACTIONS(1493), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1493), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1493), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1493), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1493), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1493), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1493), + [anon_sym_NS_AVAILABLE] = ACTIONS(1493), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1493), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1493), + [anon_sym_API_AVAILABLE] = ACTIONS(1493), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1493), + [anon_sym_API_DEPRECATED] = ACTIONS(1493), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1493), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1493), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1493), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1493), + [anon_sym___deprecated_msg] = ACTIONS(1493), + [anon_sym___deprecated_enum_msg] = ACTIONS(1493), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1493), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1493), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1493), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1493), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1493), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1493), + [anon_sym_ATimplementation] = ACTIONS(1491), + [anon_sym_NS_ENUM] = ACTIONS(1493), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1493), + [anon_sym_NS_OPTIONS] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1493), + [anon_sym___typeof] = ACTIONS(1493), + [anon_sym___typeof__] = ACTIONS(1493), + [sym_self] = ACTIONS(1493), + [sym_super] = ACTIONS(1493), + [sym_nil] = ACTIONS(1493), + [sym_id] = ACTIONS(1493), + [sym_instancetype] = ACTIONS(1493), + [sym_Class] = ACTIONS(1493), + [sym_SEL] = ACTIONS(1493), + [sym_IMP] = ACTIONS(1493), + [sym_BOOL] = ACTIONS(1493), + [sym_auto] = ACTIONS(1493), + [anon_sym_ATautoreleasepool] = ACTIONS(1491), + [anon_sym_ATsynchronized] = ACTIONS(1491), + [anon_sym_ATtry] = ACTIONS(1491), + [anon_sym_ATcatch] = ACTIONS(1491), + [anon_sym_ATfinally] = ACTIONS(1491), + [anon_sym_ATthrow] = ACTIONS(1491), + [anon_sym_ATselector] = ACTIONS(1491), + [anon_sym_ATencode] = ACTIONS(1491), + [anon_sym_AT] = ACTIONS(1493), + [sym_YES] = ACTIONS(1493), + [sym_NO] = ACTIONS(1493), + [anon_sym___builtin_available] = ACTIONS(1493), + [anon_sym_ATavailable] = ACTIONS(1491), + [anon_sym_va_arg] = ACTIONS(1493), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -103858,23 +88602,1423 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [444] = { + [357] = { + [sym_identifier] = ACTIONS(1497), + [aux_sym_preproc_include_token1] = ACTIONS(1495), + [aux_sym_preproc_def_token1] = ACTIONS(1495), + [aux_sym_preproc_if_token1] = ACTIONS(1497), + [aux_sym_preproc_if_token2] = ACTIONS(1497), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1497), + [anon_sym_LPAREN2] = ACTIONS(1495), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_CARET] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_typedef] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(1497), + [anon_sym___attribute] = ACTIONS(1497), + [anon_sym___attribute__] = ACTIONS(1497), + [anon_sym___declspec] = ACTIONS(1497), + [anon_sym___cdecl] = ACTIONS(1497), + [anon_sym___clrcall] = ACTIONS(1497), + [anon_sym___stdcall] = ACTIONS(1497), + [anon_sym___fastcall] = ACTIONS(1497), + [anon_sym___thiscall] = ACTIONS(1497), + [anon_sym___vectorcall] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1495), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_auto] = ACTIONS(1497), + [anon_sym_register] = ACTIONS(1497), + [anon_sym_inline] = ACTIONS(1497), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_volatile] = ACTIONS(1497), + [anon_sym_restrict] = ACTIONS(1497), + [anon_sym__Atomic] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_out] = ACTIONS(1497), + [anon_sym_inout] = ACTIONS(1497), + [anon_sym_bycopy] = ACTIONS(1497), + [anon_sym_byref] = ACTIONS(1497), + [anon_sym_oneway] = ACTIONS(1497), + [anon_sym__Nullable] = ACTIONS(1497), + [anon_sym__Nonnull] = ACTIONS(1497), + [anon_sym__Nullable_result] = ACTIONS(1497), + [anon_sym__Null_unspecified] = ACTIONS(1497), + [anon_sym___autoreleasing] = ACTIONS(1497), + [anon_sym___nullable] = ACTIONS(1497), + [anon_sym___nonnull] = ACTIONS(1497), + [anon_sym___strong] = ACTIONS(1497), + [anon_sym___weak] = ACTIONS(1497), + [anon_sym___bridge] = ACTIONS(1497), + [anon_sym___bridge_transfer] = ACTIONS(1497), + [anon_sym___bridge_retained] = ACTIONS(1497), + [anon_sym___unsafe_unretained] = ACTIONS(1497), + [anon_sym___block] = ACTIONS(1497), + [anon_sym___kindof] = ACTIONS(1497), + [anon_sym___unused] = ACTIONS(1497), + [anon_sym__Complex] = ACTIONS(1497), + [anon_sym___complex] = ACTIONS(1497), + [anon_sym_IBOutlet] = ACTIONS(1497), + [anon_sym_IBInspectable] = ACTIONS(1497), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1497), + [anon_sym_signed] = ACTIONS(1497), + [anon_sym_unsigned] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [sym_primitive_type] = ACTIONS(1497), + [anon_sym_enum] = ACTIONS(1497), + [anon_sym_struct] = ACTIONS(1497), + [anon_sym_union] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_else] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_case] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_goto] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_sizeof] = ACTIONS(1497), + [sym_number_literal] = ACTIONS(1495), + [anon_sym_L_SQUOTE] = ACTIONS(1495), + [anon_sym_u_SQUOTE] = ACTIONS(1495), + [anon_sym_U_SQUOTE] = ACTIONS(1495), + [anon_sym_u8_SQUOTE] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_L_DQUOTE] = ACTIONS(1495), + [anon_sym_u_DQUOTE] = ACTIONS(1495), + [anon_sym_U_DQUOTE] = ACTIONS(1495), + [anon_sym_u8_DQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [sym_true] = ACTIONS(1497), + [sym_false] = ACTIONS(1497), + [sym_null] = ACTIONS(1497), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1495), + [anon_sym_ATimport] = ACTIONS(1495), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1497), + [anon_sym_ATcompatibility_alias] = ACTIONS(1495), + [anon_sym_ATprotocol] = ACTIONS(1495), + [anon_sym_ATclass] = ACTIONS(1495), + [anon_sym_ATinterface] = ACTIONS(1495), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1497), + [sym_method_attribute_specifier] = ACTIONS(1497), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1497), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1497), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1497), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1497), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1497), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1497), + [anon_sym_NS_AVAILABLE] = ACTIONS(1497), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1497), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1497), + [anon_sym_API_AVAILABLE] = ACTIONS(1497), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1497), + [anon_sym_API_DEPRECATED] = ACTIONS(1497), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1497), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1497), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1497), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1497), + [anon_sym___deprecated_msg] = ACTIONS(1497), + [anon_sym___deprecated_enum_msg] = ACTIONS(1497), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1497), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1497), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1497), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1497), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1497), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1497), + [anon_sym_ATimplementation] = ACTIONS(1495), + [anon_sym_NS_ENUM] = ACTIONS(1497), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1497), + [anon_sym_NS_OPTIONS] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym___typeof] = ACTIONS(1497), + [anon_sym___typeof__] = ACTIONS(1497), + [sym_self] = ACTIONS(1497), + [sym_super] = ACTIONS(1497), + [sym_nil] = ACTIONS(1497), + [sym_id] = ACTIONS(1497), + [sym_instancetype] = ACTIONS(1497), + [sym_Class] = ACTIONS(1497), + [sym_SEL] = ACTIONS(1497), + [sym_IMP] = ACTIONS(1497), + [sym_BOOL] = ACTIONS(1497), + [sym_auto] = ACTIONS(1497), + [anon_sym_ATautoreleasepool] = ACTIONS(1495), + [anon_sym_ATsynchronized] = ACTIONS(1495), + [anon_sym_ATtry] = ACTIONS(1495), + [anon_sym_ATcatch] = ACTIONS(1495), + [anon_sym_ATfinally] = ACTIONS(1495), + [anon_sym_ATthrow] = ACTIONS(1495), + [anon_sym_ATselector] = ACTIONS(1495), + [anon_sym_ATencode] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1497), + [sym_YES] = ACTIONS(1497), + [sym_NO] = ACTIONS(1497), + [anon_sym___builtin_available] = ACTIONS(1497), + [anon_sym_ATavailable] = ACTIONS(1495), + [anon_sym_va_arg] = ACTIONS(1497), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [358] = { + [sym_identifier] = ACTIONS(1509), + [aux_sym_preproc_include_token1] = ACTIONS(1507), + [aux_sym_preproc_def_token1] = ACTIONS(1507), + [aux_sym_preproc_if_token1] = ACTIONS(1509), + [aux_sym_preproc_if_token2] = ACTIONS(1509), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1509), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1509), + [anon_sym_LPAREN2] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_CARET] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_typedef] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1509), + [anon_sym___attribute] = ACTIONS(1509), + [anon_sym___attribute__] = ACTIONS(1509), + [anon_sym___declspec] = ACTIONS(1509), + [anon_sym___cdecl] = ACTIONS(1509), + [anon_sym___clrcall] = ACTIONS(1509), + [anon_sym___stdcall] = ACTIONS(1509), + [anon_sym___fastcall] = ACTIONS(1509), + [anon_sym___thiscall] = ACTIONS(1509), + [anon_sym___vectorcall] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_auto] = ACTIONS(1509), + [anon_sym_register] = ACTIONS(1509), + [anon_sym_inline] = ACTIONS(1509), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_volatile] = ACTIONS(1509), + [anon_sym_restrict] = ACTIONS(1509), + [anon_sym__Atomic] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1509), + [anon_sym_out] = ACTIONS(1509), + [anon_sym_inout] = ACTIONS(1509), + [anon_sym_bycopy] = ACTIONS(1509), + [anon_sym_byref] = ACTIONS(1509), + [anon_sym_oneway] = ACTIONS(1509), + [anon_sym__Nullable] = ACTIONS(1509), + [anon_sym__Nonnull] = ACTIONS(1509), + [anon_sym__Nullable_result] = ACTIONS(1509), + [anon_sym__Null_unspecified] = ACTIONS(1509), + [anon_sym___autoreleasing] = ACTIONS(1509), + [anon_sym___nullable] = ACTIONS(1509), + [anon_sym___nonnull] = ACTIONS(1509), + [anon_sym___strong] = ACTIONS(1509), + [anon_sym___weak] = ACTIONS(1509), + [anon_sym___bridge] = ACTIONS(1509), + [anon_sym___bridge_transfer] = ACTIONS(1509), + [anon_sym___bridge_retained] = ACTIONS(1509), + [anon_sym___unsafe_unretained] = ACTIONS(1509), + [anon_sym___block] = ACTIONS(1509), + [anon_sym___kindof] = ACTIONS(1509), + [anon_sym___unused] = ACTIONS(1509), + [anon_sym__Complex] = ACTIONS(1509), + [anon_sym___complex] = ACTIONS(1509), + [anon_sym_IBOutlet] = ACTIONS(1509), + [anon_sym_IBInspectable] = ACTIONS(1509), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1509), + [anon_sym_signed] = ACTIONS(1509), + [anon_sym_unsigned] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [sym_primitive_type] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_else] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_goto] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_sizeof] = ACTIONS(1509), + [sym_number_literal] = ACTIONS(1507), + [anon_sym_L_SQUOTE] = ACTIONS(1507), + [anon_sym_u_SQUOTE] = ACTIONS(1507), + [anon_sym_U_SQUOTE] = ACTIONS(1507), + [anon_sym_u8_SQUOTE] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_L_DQUOTE] = ACTIONS(1507), + [anon_sym_u_DQUOTE] = ACTIONS(1507), + [anon_sym_U_DQUOTE] = ACTIONS(1507), + [anon_sym_u8_DQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [sym_true] = ACTIONS(1509), + [sym_false] = ACTIONS(1509), + [sym_null] = ACTIONS(1509), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1507), + [anon_sym_ATimport] = ACTIONS(1507), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1509), + [anon_sym_ATcompatibility_alias] = ACTIONS(1507), + [anon_sym_ATprotocol] = ACTIONS(1507), + [anon_sym_ATclass] = ACTIONS(1507), + [anon_sym_ATinterface] = ACTIONS(1507), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1509), + [sym_method_attribute_specifier] = ACTIONS(1509), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1509), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1509), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1509), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1509), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1509), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1509), + [anon_sym_NS_AVAILABLE] = ACTIONS(1509), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1509), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1509), + [anon_sym_API_AVAILABLE] = ACTIONS(1509), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1509), + [anon_sym_API_DEPRECATED] = ACTIONS(1509), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1509), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1509), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1509), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1509), + [anon_sym___deprecated_msg] = ACTIONS(1509), + [anon_sym___deprecated_enum_msg] = ACTIONS(1509), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1509), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1509), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1509), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1509), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1509), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1509), + [anon_sym_ATimplementation] = ACTIONS(1507), + [anon_sym_NS_ENUM] = ACTIONS(1509), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1509), + [anon_sym_NS_OPTIONS] = ACTIONS(1509), + [anon_sym_typeof] = ACTIONS(1509), + [anon_sym___typeof] = ACTIONS(1509), + [anon_sym___typeof__] = ACTIONS(1509), + [sym_self] = ACTIONS(1509), + [sym_super] = ACTIONS(1509), + [sym_nil] = ACTIONS(1509), + [sym_id] = ACTIONS(1509), + [sym_instancetype] = ACTIONS(1509), + [sym_Class] = ACTIONS(1509), + [sym_SEL] = ACTIONS(1509), + [sym_IMP] = ACTIONS(1509), + [sym_BOOL] = ACTIONS(1509), + [sym_auto] = ACTIONS(1509), + [anon_sym_ATautoreleasepool] = ACTIONS(1507), + [anon_sym_ATsynchronized] = ACTIONS(1507), + [anon_sym_ATtry] = ACTIONS(1507), + [anon_sym_ATcatch] = ACTIONS(1507), + [anon_sym_ATfinally] = ACTIONS(1507), + [anon_sym_ATthrow] = ACTIONS(1507), + [anon_sym_ATselector] = ACTIONS(1507), + [anon_sym_ATencode] = ACTIONS(1507), + [anon_sym_AT] = ACTIONS(1509), + [sym_YES] = ACTIONS(1509), + [sym_NO] = ACTIONS(1509), + [anon_sym___builtin_available] = ACTIONS(1509), + [anon_sym_ATavailable] = ACTIONS(1507), + [anon_sym_va_arg] = ACTIONS(1509), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [359] = { + [sym_identifier] = ACTIONS(1513), + [aux_sym_preproc_include_token1] = ACTIONS(1511), + [aux_sym_preproc_def_token1] = ACTIONS(1511), + [aux_sym_preproc_if_token1] = ACTIONS(1513), + [aux_sym_preproc_if_token2] = ACTIONS(1513), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1513), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1513), + [anon_sym_LPAREN2] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_CARET] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_typedef] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [anon_sym___attribute] = ACTIONS(1513), + [anon_sym___attribute__] = ACTIONS(1513), + [anon_sym___declspec] = ACTIONS(1513), + [anon_sym___cdecl] = ACTIONS(1513), + [anon_sym___clrcall] = ACTIONS(1513), + [anon_sym___stdcall] = ACTIONS(1513), + [anon_sym___fastcall] = ACTIONS(1513), + [anon_sym___thiscall] = ACTIONS(1513), + [anon_sym___vectorcall] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_auto] = ACTIONS(1513), + [anon_sym_register] = ACTIONS(1513), + [anon_sym_inline] = ACTIONS(1513), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_volatile] = ACTIONS(1513), + [anon_sym_restrict] = ACTIONS(1513), + [anon_sym__Atomic] = ACTIONS(1513), + [anon_sym_in] = ACTIONS(1513), + [anon_sym_out] = ACTIONS(1513), + [anon_sym_inout] = ACTIONS(1513), + [anon_sym_bycopy] = ACTIONS(1513), + [anon_sym_byref] = ACTIONS(1513), + [anon_sym_oneway] = ACTIONS(1513), + [anon_sym__Nullable] = ACTIONS(1513), + [anon_sym__Nonnull] = ACTIONS(1513), + [anon_sym__Nullable_result] = ACTIONS(1513), + [anon_sym__Null_unspecified] = ACTIONS(1513), + [anon_sym___autoreleasing] = ACTIONS(1513), + [anon_sym___nullable] = ACTIONS(1513), + [anon_sym___nonnull] = ACTIONS(1513), + [anon_sym___strong] = ACTIONS(1513), + [anon_sym___weak] = ACTIONS(1513), + [anon_sym___bridge] = ACTIONS(1513), + [anon_sym___bridge_transfer] = ACTIONS(1513), + [anon_sym___bridge_retained] = ACTIONS(1513), + [anon_sym___unsafe_unretained] = ACTIONS(1513), + [anon_sym___block] = ACTIONS(1513), + [anon_sym___kindof] = ACTIONS(1513), + [anon_sym___unused] = ACTIONS(1513), + [anon_sym__Complex] = ACTIONS(1513), + [anon_sym___complex] = ACTIONS(1513), + [anon_sym_IBOutlet] = ACTIONS(1513), + [anon_sym_IBInspectable] = ACTIONS(1513), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1513), + [anon_sym_signed] = ACTIONS(1513), + [anon_sym_unsigned] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [sym_primitive_type] = ACTIONS(1513), + [anon_sym_enum] = ACTIONS(1513), + [anon_sym_struct] = ACTIONS(1513), + [anon_sym_union] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_else] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_case] = ACTIONS(1513), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_goto] = ACTIONS(1513), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_sizeof] = ACTIONS(1513), + [sym_number_literal] = ACTIONS(1511), + [anon_sym_L_SQUOTE] = ACTIONS(1511), + [anon_sym_u_SQUOTE] = ACTIONS(1511), + [anon_sym_U_SQUOTE] = ACTIONS(1511), + [anon_sym_u8_SQUOTE] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_L_DQUOTE] = ACTIONS(1511), + [anon_sym_u_DQUOTE] = ACTIONS(1511), + [anon_sym_U_DQUOTE] = ACTIONS(1511), + [anon_sym_u8_DQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1511), + [sym_true] = ACTIONS(1513), + [sym_false] = ACTIONS(1513), + [sym_null] = ACTIONS(1513), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1511), + [anon_sym_ATimport] = ACTIONS(1511), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1513), + [anon_sym_ATcompatibility_alias] = ACTIONS(1511), + [anon_sym_ATprotocol] = ACTIONS(1511), + [anon_sym_ATclass] = ACTIONS(1511), + [anon_sym_ATinterface] = ACTIONS(1511), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1513), + [sym_method_attribute_specifier] = ACTIONS(1513), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1513), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1513), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1513), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1513), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1513), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1513), + [anon_sym_NS_AVAILABLE] = ACTIONS(1513), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1513), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1513), + [anon_sym_API_AVAILABLE] = ACTIONS(1513), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1513), + [anon_sym_API_DEPRECATED] = ACTIONS(1513), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1513), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1513), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1513), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1513), + [anon_sym___deprecated_msg] = ACTIONS(1513), + [anon_sym___deprecated_enum_msg] = ACTIONS(1513), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1513), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1513), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1513), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1513), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1513), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1513), + [anon_sym_ATimplementation] = ACTIONS(1511), + [anon_sym_NS_ENUM] = ACTIONS(1513), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1513), + [anon_sym_NS_OPTIONS] = ACTIONS(1513), + [anon_sym_typeof] = ACTIONS(1513), + [anon_sym___typeof] = ACTIONS(1513), + [anon_sym___typeof__] = ACTIONS(1513), + [sym_self] = ACTIONS(1513), + [sym_super] = ACTIONS(1513), + [sym_nil] = ACTIONS(1513), + [sym_id] = ACTIONS(1513), + [sym_instancetype] = ACTIONS(1513), + [sym_Class] = ACTIONS(1513), + [sym_SEL] = ACTIONS(1513), + [sym_IMP] = ACTIONS(1513), + [sym_BOOL] = ACTIONS(1513), + [sym_auto] = ACTIONS(1513), + [anon_sym_ATautoreleasepool] = ACTIONS(1511), + [anon_sym_ATsynchronized] = ACTIONS(1511), + [anon_sym_ATtry] = ACTIONS(1511), + [anon_sym_ATcatch] = ACTIONS(1511), + [anon_sym_ATfinally] = ACTIONS(1511), + [anon_sym_ATthrow] = ACTIONS(1511), + [anon_sym_ATselector] = ACTIONS(1511), + [anon_sym_ATencode] = ACTIONS(1511), + [anon_sym_AT] = ACTIONS(1513), + [sym_YES] = ACTIONS(1513), + [sym_NO] = ACTIONS(1513), + [anon_sym___builtin_available] = ACTIONS(1513), + [anon_sym_ATavailable] = ACTIONS(1511), + [anon_sym_va_arg] = ACTIONS(1513), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [360] = { + [sym_identifier] = ACTIONS(1517), + [aux_sym_preproc_include_token1] = ACTIONS(1515), + [aux_sym_preproc_def_token1] = ACTIONS(1515), + [aux_sym_preproc_if_token1] = ACTIONS(1517), + [aux_sym_preproc_if_token2] = ACTIONS(1517), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1517), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_typedef] = ACTIONS(1517), + [anon_sym_extern] = ACTIONS(1517), + [anon_sym___attribute] = ACTIONS(1517), + [anon_sym___attribute__] = ACTIONS(1517), + [anon_sym___declspec] = ACTIONS(1517), + [anon_sym___cdecl] = ACTIONS(1517), + [anon_sym___clrcall] = ACTIONS(1517), + [anon_sym___stdcall] = ACTIONS(1517), + [anon_sym___fastcall] = ACTIONS(1517), + [anon_sym___thiscall] = ACTIONS(1517), + [anon_sym___vectorcall] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_auto] = ACTIONS(1517), + [anon_sym_register] = ACTIONS(1517), + [anon_sym_inline] = ACTIONS(1517), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_volatile] = ACTIONS(1517), + [anon_sym_restrict] = ACTIONS(1517), + [anon_sym__Atomic] = ACTIONS(1517), + [anon_sym_in] = ACTIONS(1517), + [anon_sym_out] = ACTIONS(1517), + [anon_sym_inout] = ACTIONS(1517), + [anon_sym_bycopy] = ACTIONS(1517), + [anon_sym_byref] = ACTIONS(1517), + [anon_sym_oneway] = ACTIONS(1517), + [anon_sym__Nullable] = ACTIONS(1517), + [anon_sym__Nonnull] = ACTIONS(1517), + [anon_sym__Nullable_result] = ACTIONS(1517), + [anon_sym__Null_unspecified] = ACTIONS(1517), + [anon_sym___autoreleasing] = ACTIONS(1517), + [anon_sym___nullable] = ACTIONS(1517), + [anon_sym___nonnull] = ACTIONS(1517), + [anon_sym___strong] = ACTIONS(1517), + [anon_sym___weak] = ACTIONS(1517), + [anon_sym___bridge] = ACTIONS(1517), + [anon_sym___bridge_transfer] = ACTIONS(1517), + [anon_sym___bridge_retained] = ACTIONS(1517), + [anon_sym___unsafe_unretained] = ACTIONS(1517), + [anon_sym___block] = ACTIONS(1517), + [anon_sym___kindof] = ACTIONS(1517), + [anon_sym___unused] = ACTIONS(1517), + [anon_sym__Complex] = ACTIONS(1517), + [anon_sym___complex] = ACTIONS(1517), + [anon_sym_IBOutlet] = ACTIONS(1517), + [anon_sym_IBInspectable] = ACTIONS(1517), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1517), + [anon_sym_signed] = ACTIONS(1517), + [anon_sym_unsigned] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [sym_primitive_type] = ACTIONS(1517), + [anon_sym_enum] = ACTIONS(1517), + [anon_sym_struct] = ACTIONS(1517), + [anon_sym_union] = ACTIONS(1517), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_else] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1517), + [anon_sym_default] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_goto] = ACTIONS(1517), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_sizeof] = ACTIONS(1517), + [sym_number_literal] = ACTIONS(1515), + [anon_sym_L_SQUOTE] = ACTIONS(1515), + [anon_sym_u_SQUOTE] = ACTIONS(1515), + [anon_sym_U_SQUOTE] = ACTIONS(1515), + [anon_sym_u8_SQUOTE] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_L_DQUOTE] = ACTIONS(1515), + [anon_sym_u_DQUOTE] = ACTIONS(1515), + [anon_sym_U_DQUOTE] = ACTIONS(1515), + [anon_sym_u8_DQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [sym_true] = ACTIONS(1517), + [sym_false] = ACTIONS(1517), + [sym_null] = ACTIONS(1517), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1515), + [anon_sym_ATimport] = ACTIONS(1515), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1517), + [anon_sym_ATcompatibility_alias] = ACTIONS(1515), + [anon_sym_ATprotocol] = ACTIONS(1515), + [anon_sym_ATclass] = ACTIONS(1515), + [anon_sym_ATinterface] = ACTIONS(1515), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1517), + [sym_method_attribute_specifier] = ACTIONS(1517), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1517), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1517), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1517), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1517), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1517), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1517), + [anon_sym_NS_AVAILABLE] = ACTIONS(1517), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1517), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1517), + [anon_sym_API_AVAILABLE] = ACTIONS(1517), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1517), + [anon_sym_API_DEPRECATED] = ACTIONS(1517), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1517), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1517), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1517), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1517), + [anon_sym___deprecated_msg] = ACTIONS(1517), + [anon_sym___deprecated_enum_msg] = ACTIONS(1517), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1517), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1517), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1517), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1517), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1517), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1517), + [anon_sym_ATimplementation] = ACTIONS(1515), + [anon_sym_NS_ENUM] = ACTIONS(1517), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1517), + [anon_sym_NS_OPTIONS] = ACTIONS(1517), + [anon_sym_typeof] = ACTIONS(1517), + [anon_sym___typeof] = ACTIONS(1517), + [anon_sym___typeof__] = ACTIONS(1517), + [sym_self] = ACTIONS(1517), + [sym_super] = ACTIONS(1517), + [sym_nil] = ACTIONS(1517), + [sym_id] = ACTIONS(1517), + [sym_instancetype] = ACTIONS(1517), + [sym_Class] = ACTIONS(1517), + [sym_SEL] = ACTIONS(1517), + [sym_IMP] = ACTIONS(1517), + [sym_BOOL] = ACTIONS(1517), + [sym_auto] = ACTIONS(1517), + [anon_sym_ATautoreleasepool] = ACTIONS(1515), + [anon_sym_ATsynchronized] = ACTIONS(1515), + [anon_sym_ATtry] = ACTIONS(1515), + [anon_sym_ATcatch] = ACTIONS(1515), + [anon_sym_ATfinally] = ACTIONS(1515), + [anon_sym_ATthrow] = ACTIONS(1515), + [anon_sym_ATselector] = ACTIONS(1515), + [anon_sym_ATencode] = ACTIONS(1515), + [anon_sym_AT] = ACTIONS(1517), + [sym_YES] = ACTIONS(1517), + [sym_NO] = ACTIONS(1517), + [anon_sym___builtin_available] = ACTIONS(1517), + [anon_sym_ATavailable] = ACTIONS(1515), + [anon_sym_va_arg] = ACTIONS(1517), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [361] = { + [sym_identifier] = ACTIONS(1521), + [aux_sym_preproc_include_token1] = ACTIONS(1519), + [aux_sym_preproc_def_token1] = ACTIONS(1519), + [aux_sym_preproc_if_token1] = ACTIONS(1521), + [aux_sym_preproc_if_token2] = ACTIONS(1521), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1521), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1521), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_typedef] = ACTIONS(1521), + [anon_sym_extern] = ACTIONS(1521), + [anon_sym___attribute] = ACTIONS(1521), + [anon_sym___attribute__] = ACTIONS(1521), + [anon_sym___declspec] = ACTIONS(1521), + [anon_sym___cdecl] = ACTIONS(1521), + [anon_sym___clrcall] = ACTIONS(1521), + [anon_sym___stdcall] = ACTIONS(1521), + [anon_sym___fastcall] = ACTIONS(1521), + [anon_sym___thiscall] = ACTIONS(1521), + [anon_sym___vectorcall] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_auto] = ACTIONS(1521), + [anon_sym_register] = ACTIONS(1521), + [anon_sym_inline] = ACTIONS(1521), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_volatile] = ACTIONS(1521), + [anon_sym_restrict] = ACTIONS(1521), + [anon_sym__Atomic] = ACTIONS(1521), + [anon_sym_in] = ACTIONS(1521), + [anon_sym_out] = ACTIONS(1521), + [anon_sym_inout] = ACTIONS(1521), + [anon_sym_bycopy] = ACTIONS(1521), + [anon_sym_byref] = ACTIONS(1521), + [anon_sym_oneway] = ACTIONS(1521), + [anon_sym__Nullable] = ACTIONS(1521), + [anon_sym__Nonnull] = ACTIONS(1521), + [anon_sym__Nullable_result] = ACTIONS(1521), + [anon_sym__Null_unspecified] = ACTIONS(1521), + [anon_sym___autoreleasing] = ACTIONS(1521), + [anon_sym___nullable] = ACTIONS(1521), + [anon_sym___nonnull] = ACTIONS(1521), + [anon_sym___strong] = ACTIONS(1521), + [anon_sym___weak] = ACTIONS(1521), + [anon_sym___bridge] = ACTIONS(1521), + [anon_sym___bridge_transfer] = ACTIONS(1521), + [anon_sym___bridge_retained] = ACTIONS(1521), + [anon_sym___unsafe_unretained] = ACTIONS(1521), + [anon_sym___block] = ACTIONS(1521), + [anon_sym___kindof] = ACTIONS(1521), + [anon_sym___unused] = ACTIONS(1521), + [anon_sym__Complex] = ACTIONS(1521), + [anon_sym___complex] = ACTIONS(1521), + [anon_sym_IBOutlet] = ACTIONS(1521), + [anon_sym_IBInspectable] = ACTIONS(1521), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1521), + [anon_sym_signed] = ACTIONS(1521), + [anon_sym_unsigned] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_enum] = ACTIONS(1521), + [anon_sym_struct] = ACTIONS(1521), + [anon_sym_union] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_else] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_case] = ACTIONS(1521), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_goto] = ACTIONS(1521), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_sizeof] = ACTIONS(1521), + [sym_number_literal] = ACTIONS(1519), + [anon_sym_L_SQUOTE] = ACTIONS(1519), + [anon_sym_u_SQUOTE] = ACTIONS(1519), + [anon_sym_U_SQUOTE] = ACTIONS(1519), + [anon_sym_u8_SQUOTE] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_L_DQUOTE] = ACTIONS(1519), + [anon_sym_u_DQUOTE] = ACTIONS(1519), + [anon_sym_U_DQUOTE] = ACTIONS(1519), + [anon_sym_u8_DQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [sym_true] = ACTIONS(1521), + [sym_false] = ACTIONS(1521), + [sym_null] = ACTIONS(1521), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1519), + [anon_sym_ATimport] = ACTIONS(1519), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1521), + [anon_sym_ATcompatibility_alias] = ACTIONS(1519), + [anon_sym_ATprotocol] = ACTIONS(1519), + [anon_sym_ATclass] = ACTIONS(1519), + [anon_sym_ATinterface] = ACTIONS(1519), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1521), + [sym_method_attribute_specifier] = ACTIONS(1521), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1521), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1521), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1521), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1521), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1521), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1521), + [anon_sym_NS_AVAILABLE] = ACTIONS(1521), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1521), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1521), + [anon_sym_API_AVAILABLE] = ACTIONS(1521), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1521), + [anon_sym_API_DEPRECATED] = ACTIONS(1521), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1521), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1521), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1521), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1521), + [anon_sym___deprecated_msg] = ACTIONS(1521), + [anon_sym___deprecated_enum_msg] = ACTIONS(1521), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1521), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1521), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1521), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1521), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1521), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1521), + [anon_sym_ATimplementation] = ACTIONS(1519), + [anon_sym_NS_ENUM] = ACTIONS(1521), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1521), + [anon_sym_NS_OPTIONS] = ACTIONS(1521), + [anon_sym_typeof] = ACTIONS(1521), + [anon_sym___typeof] = ACTIONS(1521), + [anon_sym___typeof__] = ACTIONS(1521), + [sym_self] = ACTIONS(1521), + [sym_super] = ACTIONS(1521), + [sym_nil] = ACTIONS(1521), + [sym_id] = ACTIONS(1521), + [sym_instancetype] = ACTIONS(1521), + [sym_Class] = ACTIONS(1521), + [sym_SEL] = ACTIONS(1521), + [sym_IMP] = ACTIONS(1521), + [sym_BOOL] = ACTIONS(1521), + [sym_auto] = ACTIONS(1521), + [anon_sym_ATautoreleasepool] = ACTIONS(1519), + [anon_sym_ATsynchronized] = ACTIONS(1519), + [anon_sym_ATtry] = ACTIONS(1519), + [anon_sym_ATcatch] = ACTIONS(1519), + [anon_sym_ATfinally] = ACTIONS(1519), + [anon_sym_ATthrow] = ACTIONS(1519), + [anon_sym_ATselector] = ACTIONS(1519), + [anon_sym_ATencode] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [sym_YES] = ACTIONS(1521), + [sym_NO] = ACTIONS(1521), + [anon_sym___builtin_available] = ACTIONS(1521), + [anon_sym_ATavailable] = ACTIONS(1519), + [anon_sym_va_arg] = ACTIONS(1521), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [362] = { + [sym_identifier] = ACTIONS(1649), + [aux_sym_preproc_include_token1] = ACTIONS(1651), + [aux_sym_preproc_def_token1] = ACTIONS(1651), + [aux_sym_preproc_if_token1] = ACTIONS(1649), + [aux_sym_preproc_if_token2] = ACTIONS(1649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1649), + [anon_sym_LPAREN2] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1651), + [anon_sym_TILDE] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1651), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_typedef] = ACTIONS(1649), + [anon_sym_extern] = ACTIONS(1649), + [anon_sym___attribute] = ACTIONS(1649), + [anon_sym___attribute__] = ACTIONS(1649), + [anon_sym___declspec] = ACTIONS(1649), + [anon_sym___cdecl] = ACTIONS(1649), + [anon_sym___clrcall] = ACTIONS(1649), + [anon_sym___stdcall] = ACTIONS(1649), + [anon_sym___fastcall] = ACTIONS(1649), + [anon_sym___thiscall] = ACTIONS(1649), + [anon_sym___vectorcall] = ACTIONS(1649), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1649), + [anon_sym_auto] = ACTIONS(1649), + [anon_sym_register] = ACTIONS(1649), + [anon_sym_inline] = ACTIONS(1649), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1649), + [anon_sym_const] = ACTIONS(1649), + [anon_sym_volatile] = ACTIONS(1649), + [anon_sym_restrict] = ACTIONS(1649), + [anon_sym__Atomic] = ACTIONS(1649), + [anon_sym_in] = ACTIONS(1649), + [anon_sym_out] = ACTIONS(1649), + [anon_sym_inout] = ACTIONS(1649), + [anon_sym_bycopy] = ACTIONS(1649), + [anon_sym_byref] = ACTIONS(1649), + [anon_sym_oneway] = ACTIONS(1649), + [anon_sym__Nullable] = ACTIONS(1649), + [anon_sym__Nonnull] = ACTIONS(1649), + [anon_sym__Nullable_result] = ACTIONS(1649), + [anon_sym__Null_unspecified] = ACTIONS(1649), + [anon_sym___autoreleasing] = ACTIONS(1649), + [anon_sym___nullable] = ACTIONS(1649), + [anon_sym___nonnull] = ACTIONS(1649), + [anon_sym___strong] = ACTIONS(1649), + [anon_sym___weak] = ACTIONS(1649), + [anon_sym___bridge] = ACTIONS(1649), + [anon_sym___bridge_transfer] = ACTIONS(1649), + [anon_sym___bridge_retained] = ACTIONS(1649), + [anon_sym___unsafe_unretained] = ACTIONS(1649), + [anon_sym___block] = ACTIONS(1649), + [anon_sym___kindof] = ACTIONS(1649), + [anon_sym___unused] = ACTIONS(1649), + [anon_sym__Complex] = ACTIONS(1649), + [anon_sym___complex] = ACTIONS(1649), + [anon_sym_IBOutlet] = ACTIONS(1649), + [anon_sym_IBInspectable] = ACTIONS(1649), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1649), + [anon_sym_signed] = ACTIONS(1649), + [anon_sym_unsigned] = ACTIONS(1649), + [anon_sym_long] = ACTIONS(1649), + [anon_sym_short] = ACTIONS(1649), + [sym_primitive_type] = ACTIONS(1649), + [anon_sym_enum] = ACTIONS(1649), + [anon_sym_struct] = ACTIONS(1649), + [anon_sym_union] = ACTIONS(1649), + [anon_sym_if] = ACTIONS(1649), + [anon_sym_else] = ACTIONS(1649), + [anon_sym_switch] = ACTIONS(1649), + [anon_sym_case] = ACTIONS(1649), + [anon_sym_default] = ACTIONS(1649), + [anon_sym_while] = ACTIONS(1649), + [anon_sym_do] = ACTIONS(1649), + [anon_sym_for] = ACTIONS(1649), + [anon_sym_return] = ACTIONS(1649), + [anon_sym_break] = ACTIONS(1649), + [anon_sym_continue] = ACTIONS(1649), + [anon_sym_goto] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1651), + [anon_sym_PLUS_PLUS] = ACTIONS(1651), + [anon_sym_sizeof] = ACTIONS(1649), + [sym_number_literal] = ACTIONS(1651), + [anon_sym_L_SQUOTE] = ACTIONS(1651), + [anon_sym_u_SQUOTE] = ACTIONS(1651), + [anon_sym_U_SQUOTE] = ACTIONS(1651), + [anon_sym_u8_SQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1651), + [anon_sym_L_DQUOTE] = ACTIONS(1651), + [anon_sym_u_DQUOTE] = ACTIONS(1651), + [anon_sym_U_DQUOTE] = ACTIONS(1651), + [anon_sym_u8_DQUOTE] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(1651), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1651), + [anon_sym_ATimport] = ACTIONS(1651), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1649), + [anon_sym_ATcompatibility_alias] = ACTIONS(1651), + [anon_sym_ATprotocol] = ACTIONS(1651), + [anon_sym_ATclass] = ACTIONS(1651), + [anon_sym_ATinterface] = ACTIONS(1651), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1649), + [sym_method_attribute_specifier] = ACTIONS(1649), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1649), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1649), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1649), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1649), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1649), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1649), + [anon_sym_NS_AVAILABLE] = ACTIONS(1649), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1649), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_API_AVAILABLE] = ACTIONS(1649), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1649), + [anon_sym_API_DEPRECATED] = ACTIONS(1649), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1649), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1649), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1649), + [anon_sym___deprecated_msg] = ACTIONS(1649), + [anon_sym___deprecated_enum_msg] = ACTIONS(1649), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1649), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1649), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1649), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1649), + [anon_sym_ATimplementation] = ACTIONS(1651), + [anon_sym_NS_ENUM] = ACTIONS(1649), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1649), + [anon_sym_NS_OPTIONS] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1649), + [anon_sym___typeof] = ACTIONS(1649), + [anon_sym___typeof__] = ACTIONS(1649), + [sym_self] = ACTIONS(1649), + [sym_super] = ACTIONS(1649), + [sym_nil] = ACTIONS(1649), + [sym_id] = ACTIONS(1649), + [sym_instancetype] = ACTIONS(1649), + [sym_Class] = ACTIONS(1649), + [sym_SEL] = ACTIONS(1649), + [sym_IMP] = ACTIONS(1649), + [sym_BOOL] = ACTIONS(1649), + [sym_auto] = ACTIONS(1649), + [anon_sym_ATautoreleasepool] = ACTIONS(1651), + [anon_sym_ATsynchronized] = ACTIONS(1651), + [anon_sym_ATtry] = ACTIONS(1651), + [anon_sym_ATcatch] = ACTIONS(1651), + [anon_sym_ATfinally] = ACTIONS(1651), + [anon_sym_ATthrow] = ACTIONS(1651), + [anon_sym_ATselector] = ACTIONS(1651), + [anon_sym_ATencode] = ACTIONS(1651), + [anon_sym_AT] = ACTIONS(1649), + [sym_YES] = ACTIONS(1649), + [sym_NO] = ACTIONS(1649), + [anon_sym___builtin_available] = ACTIONS(1649), + [anon_sym_ATavailable] = ACTIONS(1651), + [anon_sym_va_arg] = ACTIONS(1649), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [363] = { + [sym_identifier] = ACTIONS(1397), + [aux_sym_preproc_include_token1] = ACTIONS(1395), + [aux_sym_preproc_def_token1] = ACTIONS(1395), + [aux_sym_preproc_if_token1] = ACTIONS(1397), + [aux_sym_preproc_if_token2] = ACTIONS(1397), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1397), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1397), + [anon_sym_LPAREN2] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_CARET] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_typedef] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1397), + [anon_sym___attribute] = ACTIONS(1397), + [anon_sym___attribute__] = ACTIONS(1397), + [anon_sym___declspec] = ACTIONS(1397), + [anon_sym___cdecl] = ACTIONS(1397), + [anon_sym___clrcall] = ACTIONS(1397), + [anon_sym___stdcall] = ACTIONS(1397), + [anon_sym___fastcall] = ACTIONS(1397), + [anon_sym___thiscall] = ACTIONS(1397), + [anon_sym___vectorcall] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_auto] = ACTIONS(1397), + [anon_sym_register] = ACTIONS(1397), + [anon_sym_inline] = ACTIONS(1397), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_volatile] = ACTIONS(1397), + [anon_sym_restrict] = ACTIONS(1397), + [anon_sym__Atomic] = ACTIONS(1397), + [anon_sym_in] = ACTIONS(1397), + [anon_sym_out] = ACTIONS(1397), + [anon_sym_inout] = ACTIONS(1397), + [anon_sym_bycopy] = ACTIONS(1397), + [anon_sym_byref] = ACTIONS(1397), + [anon_sym_oneway] = ACTIONS(1397), + [anon_sym__Nullable] = ACTIONS(1397), + [anon_sym__Nonnull] = ACTIONS(1397), + [anon_sym__Nullable_result] = ACTIONS(1397), + [anon_sym__Null_unspecified] = ACTIONS(1397), + [anon_sym___autoreleasing] = ACTIONS(1397), + [anon_sym___nullable] = ACTIONS(1397), + [anon_sym___nonnull] = ACTIONS(1397), + [anon_sym___strong] = ACTIONS(1397), + [anon_sym___weak] = ACTIONS(1397), + [anon_sym___bridge] = ACTIONS(1397), + [anon_sym___bridge_transfer] = ACTIONS(1397), + [anon_sym___bridge_retained] = ACTIONS(1397), + [anon_sym___unsafe_unretained] = ACTIONS(1397), + [anon_sym___block] = ACTIONS(1397), + [anon_sym___kindof] = ACTIONS(1397), + [anon_sym___unused] = ACTIONS(1397), + [anon_sym__Complex] = ACTIONS(1397), + [anon_sym___complex] = ACTIONS(1397), + [anon_sym_IBOutlet] = ACTIONS(1397), + [anon_sym_IBInspectable] = ACTIONS(1397), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1397), + [anon_sym_signed] = ACTIONS(1397), + [anon_sym_unsigned] = ACTIONS(1397), + [anon_sym_long] = ACTIONS(1397), + [anon_sym_short] = ACTIONS(1397), + [sym_primitive_type] = ACTIONS(1397), + [anon_sym_enum] = ACTIONS(1397), + [anon_sym_struct] = ACTIONS(1397), + [anon_sym_union] = ACTIONS(1397), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1397), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_case] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_goto] = ACTIONS(1397), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_sizeof] = ACTIONS(1397), + [sym_number_literal] = ACTIONS(1395), + [anon_sym_L_SQUOTE] = ACTIONS(1395), + [anon_sym_u_SQUOTE] = ACTIONS(1395), + [anon_sym_U_SQUOTE] = ACTIONS(1395), + [anon_sym_u8_SQUOTE] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_L_DQUOTE] = ACTIONS(1395), + [anon_sym_u_DQUOTE] = ACTIONS(1395), + [anon_sym_U_DQUOTE] = ACTIONS(1395), + [anon_sym_u8_DQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1395), + [sym_true] = ACTIONS(1397), + [sym_false] = ACTIONS(1397), + [sym_null] = ACTIONS(1397), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1395), + [anon_sym_ATimport] = ACTIONS(1395), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1397), + [anon_sym_ATcompatibility_alias] = ACTIONS(1395), + [anon_sym_ATprotocol] = ACTIONS(1395), + [anon_sym_ATclass] = ACTIONS(1395), + [anon_sym_ATinterface] = ACTIONS(1395), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1397), + [sym_method_attribute_specifier] = ACTIONS(1397), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1397), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1397), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1397), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1397), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1397), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1397), + [anon_sym_NS_AVAILABLE] = ACTIONS(1397), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1397), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1397), + [anon_sym_API_AVAILABLE] = ACTIONS(1397), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1397), + [anon_sym_API_DEPRECATED] = ACTIONS(1397), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1397), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1397), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1397), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1397), + [anon_sym___deprecated_msg] = ACTIONS(1397), + [anon_sym___deprecated_enum_msg] = ACTIONS(1397), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1397), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1397), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1397), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1397), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1397), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1397), + [anon_sym_ATimplementation] = ACTIONS(1395), + [anon_sym_NS_ENUM] = ACTIONS(1397), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1397), + [anon_sym_NS_OPTIONS] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1397), + [anon_sym___typeof] = ACTIONS(1397), + [anon_sym___typeof__] = ACTIONS(1397), + [sym_self] = ACTIONS(1397), + [sym_super] = ACTIONS(1397), + [sym_nil] = ACTIONS(1397), + [sym_id] = ACTIONS(1397), + [sym_instancetype] = ACTIONS(1397), + [sym_Class] = ACTIONS(1397), + [sym_SEL] = ACTIONS(1397), + [sym_IMP] = ACTIONS(1397), + [sym_BOOL] = ACTIONS(1397), + [sym_auto] = ACTIONS(1397), + [anon_sym_ATautoreleasepool] = ACTIONS(1395), + [anon_sym_ATsynchronized] = ACTIONS(1395), + [anon_sym_ATtry] = ACTIONS(1395), + [anon_sym_ATcatch] = ACTIONS(1395), + [anon_sym_ATfinally] = ACTIONS(1395), + [anon_sym_ATthrow] = ACTIONS(1395), + [anon_sym_ATselector] = ACTIONS(1395), + [anon_sym_ATencode] = ACTIONS(1395), + [anon_sym_AT] = ACTIONS(1397), + [sym_YES] = ACTIONS(1397), + [sym_NO] = ACTIONS(1397), + [anon_sym___builtin_available] = ACTIONS(1397), + [anon_sym_ATavailable] = ACTIONS(1395), + [anon_sym_va_arg] = ACTIONS(1397), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [364] = { + [sym_identifier] = ACTIONS(1653), + [aux_sym_preproc_include_token1] = ACTIONS(1655), + [aux_sym_preproc_def_token1] = ACTIONS(1655), + [aux_sym_preproc_if_token1] = ACTIONS(1653), + [aux_sym_preproc_if_token2] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_TILDE] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_typedef] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym___attribute] = ACTIONS(1653), + [anon_sym___attribute__] = ACTIONS(1653), + [anon_sym___declspec] = ACTIONS(1653), + [anon_sym___cdecl] = ACTIONS(1653), + [anon_sym___clrcall] = ACTIONS(1653), + [anon_sym___stdcall] = ACTIONS(1653), + [anon_sym___fastcall] = ACTIONS(1653), + [anon_sym___thiscall] = ACTIONS(1653), + [anon_sym___vectorcall] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_static] = ACTIONS(1653), + [anon_sym_auto] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_inline] = ACTIONS(1653), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_volatile] = ACTIONS(1653), + [anon_sym_restrict] = ACTIONS(1653), + [anon_sym__Atomic] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [anon_sym_out] = ACTIONS(1653), + [anon_sym_inout] = ACTIONS(1653), + [anon_sym_bycopy] = ACTIONS(1653), + [anon_sym_byref] = ACTIONS(1653), + [anon_sym_oneway] = ACTIONS(1653), + [anon_sym__Nullable] = ACTIONS(1653), + [anon_sym__Nonnull] = ACTIONS(1653), + [anon_sym__Nullable_result] = ACTIONS(1653), + [anon_sym__Null_unspecified] = ACTIONS(1653), + [anon_sym___autoreleasing] = ACTIONS(1653), + [anon_sym___nullable] = ACTIONS(1653), + [anon_sym___nonnull] = ACTIONS(1653), + [anon_sym___strong] = ACTIONS(1653), + [anon_sym___weak] = ACTIONS(1653), + [anon_sym___bridge] = ACTIONS(1653), + [anon_sym___bridge_transfer] = ACTIONS(1653), + [anon_sym___bridge_retained] = ACTIONS(1653), + [anon_sym___unsafe_unretained] = ACTIONS(1653), + [anon_sym___block] = ACTIONS(1653), + [anon_sym___kindof] = ACTIONS(1653), + [anon_sym___unused] = ACTIONS(1653), + [anon_sym__Complex] = ACTIONS(1653), + [anon_sym___complex] = ACTIONS(1653), + [anon_sym_IBOutlet] = ACTIONS(1653), + [anon_sym_IBInspectable] = ACTIONS(1653), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1653), + [anon_sym_signed] = ACTIONS(1653), + [anon_sym_unsigned] = ACTIONS(1653), + [anon_sym_long] = ACTIONS(1653), + [anon_sym_short] = ACTIONS(1653), + [sym_primitive_type] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_switch] = ACTIONS(1653), + [anon_sym_case] = ACTIONS(1653), + [anon_sym_default] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_goto] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_sizeof] = ACTIONS(1653), + [sym_number_literal] = ACTIONS(1655), + [anon_sym_L_SQUOTE] = ACTIONS(1655), + [anon_sym_u_SQUOTE] = ACTIONS(1655), + [anon_sym_U_SQUOTE] = ACTIONS(1655), + [anon_sym_u8_SQUOTE] = ACTIONS(1655), + [anon_sym_SQUOTE] = ACTIONS(1655), + [anon_sym_L_DQUOTE] = ACTIONS(1655), + [anon_sym_u_DQUOTE] = ACTIONS(1655), + [anon_sym_U_DQUOTE] = ACTIONS(1655), + [anon_sym_u8_DQUOTE] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym_true] = ACTIONS(1653), + [sym_false] = ACTIONS(1653), + [sym_null] = ACTIONS(1653), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1655), + [anon_sym_ATimport] = ACTIONS(1655), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1653), + [anon_sym_ATcompatibility_alias] = ACTIONS(1655), + [anon_sym_ATprotocol] = ACTIONS(1655), + [anon_sym_ATclass] = ACTIONS(1655), + [anon_sym_ATinterface] = ACTIONS(1655), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1653), + [sym_method_attribute_specifier] = ACTIONS(1653), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1653), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE] = ACTIONS(1653), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_API_AVAILABLE] = ACTIONS(1653), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_API_DEPRECATED] = ACTIONS(1653), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1653), + [anon_sym___deprecated_msg] = ACTIONS(1653), + [anon_sym___deprecated_enum_msg] = ACTIONS(1653), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1653), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1653), + [anon_sym_ATimplementation] = ACTIONS(1655), + [anon_sym_NS_ENUM] = ACTIONS(1653), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), + [anon_sym_NS_OPTIONS] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1653), + [anon_sym___typeof] = ACTIONS(1653), + [anon_sym___typeof__] = ACTIONS(1653), + [sym_self] = ACTIONS(1653), + [sym_super] = ACTIONS(1653), + [sym_nil] = ACTIONS(1653), + [sym_id] = ACTIONS(1653), + [sym_instancetype] = ACTIONS(1653), + [sym_Class] = ACTIONS(1653), + [sym_SEL] = ACTIONS(1653), + [sym_IMP] = ACTIONS(1653), + [sym_BOOL] = ACTIONS(1653), + [sym_auto] = ACTIONS(1653), + [anon_sym_ATautoreleasepool] = ACTIONS(1655), + [anon_sym_ATsynchronized] = ACTIONS(1655), + [anon_sym_ATtry] = ACTIONS(1655), + [anon_sym_ATcatch] = ACTIONS(1655), + [anon_sym_ATfinally] = ACTIONS(1655), + [anon_sym_ATthrow] = ACTIONS(1655), + [anon_sym_ATselector] = ACTIONS(1655), + [anon_sym_ATencode] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [sym_YES] = ACTIONS(1653), + [sym_NO] = ACTIONS(1653), + [anon_sym___builtin_available] = ACTIONS(1653), + [anon_sym_ATavailable] = ACTIONS(1655), + [anon_sym_va_arg] = ACTIONS(1653), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [365] = { [sym_identifier] = ACTIONS(1369), - [aux_sym_preproc_include_token1] = ACTIONS(1371), - [aux_sym_preproc_def_token1] = ACTIONS(1371), + [aux_sym_preproc_include_token1] = ACTIONS(1367), + [aux_sym_preproc_def_token1] = ACTIONS(1367), [aux_sym_preproc_if_token1] = ACTIONS(1369), [aux_sym_preproc_if_token2] = ACTIONS(1369), [aux_sym_preproc_ifdef_token1] = ACTIONS(1369), [aux_sym_preproc_ifdef_token2] = ACTIONS(1369), - [anon_sym_LPAREN2] = ACTIONS(1371), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_LPAREN2] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_TILDE] = ACTIONS(1367), [anon_sym_DASH] = ACTIONS(1369), [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1371), - [anon_sym_CARET] = ACTIONS(1371), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1367), [anon_sym_typedef] = ACTIONS(1369), [anon_sym_extern] = ACTIONS(1369), [anon_sym___attribute] = ACTIONS(1369), @@ -103886,8 +90030,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1369), [anon_sym___thiscall] = ACTIONS(1369), [anon_sym___vectorcall] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1367), [anon_sym_static] = ACTIONS(1369), [anon_sym_auto] = ACTIONS(1369), [anon_sym_register] = ACTIONS(1369), @@ -103930,9 +90074,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1369), [sym_primitive_type] = ACTIONS(1369), [anon_sym_enum] = ACTIONS(1369), - [anon_sym_NS_ENUM] = ACTIONS(1369), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1369), - [anon_sym_NS_OPTIONS] = ACTIONS(1369), [anon_sym_struct] = ACTIONS(1369), [anon_sym_union] = ACTIONS(1369), [anon_sym_if] = ACTIONS(1369), @@ -103947,31 +90088,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1369), [anon_sym_continue] = ACTIONS(1369), [anon_sym_goto] = ACTIONS(1369), - [anon_sym_DASH_DASH] = ACTIONS(1371), - [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_DASH_DASH] = ACTIONS(1367), + [anon_sym_PLUS_PLUS] = ACTIONS(1367), [anon_sym_sizeof] = ACTIONS(1369), - [sym_number_literal] = ACTIONS(1371), - [anon_sym_L_SQUOTE] = ACTIONS(1371), - [anon_sym_u_SQUOTE] = ACTIONS(1371), - [anon_sym_U_SQUOTE] = ACTIONS(1371), - [anon_sym_u8_SQUOTE] = ACTIONS(1371), - [anon_sym_SQUOTE] = ACTIONS(1371), - [anon_sym_L_DQUOTE] = ACTIONS(1371), - [anon_sym_u_DQUOTE] = ACTIONS(1371), - [anon_sym_U_DQUOTE] = ACTIONS(1371), - [anon_sym_u8_DQUOTE] = ACTIONS(1371), - [anon_sym_DQUOTE] = ACTIONS(1371), + [sym_number_literal] = ACTIONS(1367), + [anon_sym_L_SQUOTE] = ACTIONS(1367), + [anon_sym_u_SQUOTE] = ACTIONS(1367), + [anon_sym_U_SQUOTE] = ACTIONS(1367), + [anon_sym_u8_SQUOTE] = ACTIONS(1367), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_L_DQUOTE] = ACTIONS(1367), + [anon_sym_u_DQUOTE] = ACTIONS(1367), + [anon_sym_U_DQUOTE] = ACTIONS(1367), + [anon_sym_u8_DQUOTE] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(1367), [sym_true] = ACTIONS(1369), [sym_false] = ACTIONS(1369), [sym_null] = ACTIONS(1369), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1371), - [anon_sym_ATimport] = ACTIONS(1371), + [anon_sym_POUNDimport] = ACTIONS(1367), + [anon_sym_ATimport] = ACTIONS(1367), [sym__ns_assume_nonnull_declaration] = ACTIONS(1369), - [anon_sym_ATcompatibility_alias] = ACTIONS(1371), - [anon_sym_ATprotocol] = ACTIONS(1371), - [anon_sym_ATclass] = ACTIONS(1371), - [anon_sym_ATinterface] = ACTIONS(1371), + [anon_sym_ATcompatibility_alias] = ACTIONS(1367), + [anon_sym_ATprotocol] = ACTIONS(1367), + [anon_sym_ATclass] = ACTIONS(1367), + [anon_sym_ATinterface] = ACTIONS(1367), [sym_class_interface_attribute_sepcifier] = ACTIONS(1369), [sym_method_attribute_specifier] = ACTIONS(1369), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1369), @@ -103998,7 +90139,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1369), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1369), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1369), - [anon_sym_ATimplementation] = ACTIONS(1371), + [anon_sym_ATimplementation] = ACTIONS(1367), + [anon_sym_NS_ENUM] = ACTIONS(1369), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1369), + [anon_sym_NS_OPTIONS] = ACTIONS(1369), [anon_sym_typeof] = ACTIONS(1369), [anon_sym___typeof] = ACTIONS(1369), [anon_sym___typeof__] = ACTIONS(1369), @@ -104012,19 +90156,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1369), [sym_BOOL] = ACTIONS(1369), [sym_auto] = ACTIONS(1369), - [anon_sym_ATautoreleasepool] = ACTIONS(1371), - [anon_sym_ATsynchronized] = ACTIONS(1371), - [anon_sym_ATtry] = ACTIONS(1371), - [anon_sym_ATcatch] = ACTIONS(1371), - [anon_sym_ATfinally] = ACTIONS(1371), - [anon_sym_ATthrow] = ACTIONS(1371), - [anon_sym_ATselector] = ACTIONS(1371), - [anon_sym_ATencode] = ACTIONS(1371), + [anon_sym_ATautoreleasepool] = ACTIONS(1367), + [anon_sym_ATsynchronized] = ACTIONS(1367), + [anon_sym_ATtry] = ACTIONS(1367), + [anon_sym_ATcatch] = ACTIONS(1367), + [anon_sym_ATfinally] = ACTIONS(1367), + [anon_sym_ATthrow] = ACTIONS(1367), + [anon_sym_ATselector] = ACTIONS(1367), + [anon_sym_ATencode] = ACTIONS(1367), [anon_sym_AT] = ACTIONS(1369), [sym_YES] = ACTIONS(1369), [sym_NO] = ACTIONS(1369), [anon_sym___builtin_available] = ACTIONS(1369), - [anon_sym_ATavailable] = ACTIONS(1371), + [anon_sym_ATavailable] = ACTIONS(1367), [anon_sym_va_arg] = ACTIONS(1369), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), @@ -104033,174 +90177,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [445] = { - [sym_identifier] = ACTIONS(1361), - [aux_sym_preproc_include_token1] = ACTIONS(1363), - [aux_sym_preproc_def_token1] = ACTIONS(1363), - [aux_sym_preproc_if_token1] = ACTIONS(1361), - [aux_sym_preproc_if_token2] = ACTIONS(1361), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1361), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1361), - [anon_sym_LPAREN2] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1363), - [anon_sym_TILDE] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1361), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1363), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_typedef] = ACTIONS(1361), - [anon_sym_extern] = ACTIONS(1361), - [anon_sym___attribute] = ACTIONS(1361), - [anon_sym___attribute__] = ACTIONS(1361), - [anon_sym___declspec] = ACTIONS(1361), - [anon_sym___cdecl] = ACTIONS(1361), - [anon_sym___clrcall] = ACTIONS(1361), - [anon_sym___stdcall] = ACTIONS(1361), - [anon_sym___fastcall] = ACTIONS(1361), - [anon_sym___thiscall] = ACTIONS(1361), - [anon_sym___vectorcall] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1363), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_auto] = ACTIONS(1361), - [anon_sym_register] = ACTIONS(1361), - [anon_sym_inline] = ACTIONS(1361), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1361), - [anon_sym_const] = ACTIONS(1361), - [anon_sym_volatile] = ACTIONS(1361), - [anon_sym_restrict] = ACTIONS(1361), - [anon_sym__Atomic] = ACTIONS(1361), - [anon_sym_in] = ACTIONS(1361), - [anon_sym_out] = ACTIONS(1361), - [anon_sym_inout] = ACTIONS(1361), - [anon_sym_bycopy] = ACTIONS(1361), - [anon_sym_byref] = ACTIONS(1361), - [anon_sym_oneway] = ACTIONS(1361), - [anon_sym__Nullable] = ACTIONS(1361), - [anon_sym__Nonnull] = ACTIONS(1361), - [anon_sym__Nullable_result] = ACTIONS(1361), - [anon_sym__Null_unspecified] = ACTIONS(1361), - [anon_sym___autoreleasing] = ACTIONS(1361), - [anon_sym___nullable] = ACTIONS(1361), - [anon_sym___nonnull] = ACTIONS(1361), - [anon_sym___strong] = ACTIONS(1361), - [anon_sym___weak] = ACTIONS(1361), - [anon_sym___bridge] = ACTIONS(1361), - [anon_sym___bridge_transfer] = ACTIONS(1361), - [anon_sym___bridge_retained] = ACTIONS(1361), - [anon_sym___unsafe_unretained] = ACTIONS(1361), - [anon_sym___block] = ACTIONS(1361), - [anon_sym___kindof] = ACTIONS(1361), - [anon_sym___unused] = ACTIONS(1361), - [anon_sym__Complex] = ACTIONS(1361), - [anon_sym___complex] = ACTIONS(1361), - [anon_sym_IBOutlet] = ACTIONS(1361), - [anon_sym_IBInspectable] = ACTIONS(1361), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1361), - [anon_sym_signed] = ACTIONS(1361), - [anon_sym_unsigned] = ACTIONS(1361), - [anon_sym_long] = ACTIONS(1361), - [anon_sym_short] = ACTIONS(1361), - [sym_primitive_type] = ACTIONS(1361), - [anon_sym_enum] = ACTIONS(1361), - [anon_sym_NS_ENUM] = ACTIONS(1361), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1361), - [anon_sym_NS_OPTIONS] = ACTIONS(1361), - [anon_sym_struct] = ACTIONS(1361), - [anon_sym_union] = ACTIONS(1361), - [anon_sym_if] = ACTIONS(1361), - [anon_sym_else] = ACTIONS(1361), - [anon_sym_switch] = ACTIONS(1361), - [anon_sym_case] = ACTIONS(1361), - [anon_sym_default] = ACTIONS(1361), - [anon_sym_while] = ACTIONS(1361), - [anon_sym_do] = ACTIONS(1361), - [anon_sym_for] = ACTIONS(1361), - [anon_sym_return] = ACTIONS(1361), - [anon_sym_break] = ACTIONS(1361), - [anon_sym_continue] = ACTIONS(1361), - [anon_sym_goto] = ACTIONS(1361), - [anon_sym_DASH_DASH] = ACTIONS(1363), - [anon_sym_PLUS_PLUS] = ACTIONS(1363), - [anon_sym_sizeof] = ACTIONS(1361), - [sym_number_literal] = ACTIONS(1363), - [anon_sym_L_SQUOTE] = ACTIONS(1363), - [anon_sym_u_SQUOTE] = ACTIONS(1363), - [anon_sym_U_SQUOTE] = ACTIONS(1363), - [anon_sym_u8_SQUOTE] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1363), - [anon_sym_L_DQUOTE] = ACTIONS(1363), - [anon_sym_u_DQUOTE] = ACTIONS(1363), - [anon_sym_U_DQUOTE] = ACTIONS(1363), - [anon_sym_u8_DQUOTE] = ACTIONS(1363), - [anon_sym_DQUOTE] = ACTIONS(1363), - [sym_true] = ACTIONS(1361), - [sym_false] = ACTIONS(1361), - [sym_null] = ACTIONS(1361), + [366] = { + [sym_identifier] = ACTIONS(1653), + [aux_sym_preproc_include_token1] = ACTIONS(1655), + [aux_sym_preproc_def_token1] = ACTIONS(1655), + [aux_sym_preproc_if_token1] = ACTIONS(1653), + [aux_sym_preproc_if_token2] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_TILDE] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_typedef] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym___attribute] = ACTIONS(1653), + [anon_sym___attribute__] = ACTIONS(1653), + [anon_sym___declspec] = ACTIONS(1653), + [anon_sym___cdecl] = ACTIONS(1653), + [anon_sym___clrcall] = ACTIONS(1653), + [anon_sym___stdcall] = ACTIONS(1653), + [anon_sym___fastcall] = ACTIONS(1653), + [anon_sym___thiscall] = ACTIONS(1653), + [anon_sym___vectorcall] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_static] = ACTIONS(1653), + [anon_sym_auto] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_inline] = ACTIONS(1653), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_volatile] = ACTIONS(1653), + [anon_sym_restrict] = ACTIONS(1653), + [anon_sym__Atomic] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [anon_sym_out] = ACTIONS(1653), + [anon_sym_inout] = ACTIONS(1653), + [anon_sym_bycopy] = ACTIONS(1653), + [anon_sym_byref] = ACTIONS(1653), + [anon_sym_oneway] = ACTIONS(1653), + [anon_sym__Nullable] = ACTIONS(1653), + [anon_sym__Nonnull] = ACTIONS(1653), + [anon_sym__Nullable_result] = ACTIONS(1653), + [anon_sym__Null_unspecified] = ACTIONS(1653), + [anon_sym___autoreleasing] = ACTIONS(1653), + [anon_sym___nullable] = ACTIONS(1653), + [anon_sym___nonnull] = ACTIONS(1653), + [anon_sym___strong] = ACTIONS(1653), + [anon_sym___weak] = ACTIONS(1653), + [anon_sym___bridge] = ACTIONS(1653), + [anon_sym___bridge_transfer] = ACTIONS(1653), + [anon_sym___bridge_retained] = ACTIONS(1653), + [anon_sym___unsafe_unretained] = ACTIONS(1653), + [anon_sym___block] = ACTIONS(1653), + [anon_sym___kindof] = ACTIONS(1653), + [anon_sym___unused] = ACTIONS(1653), + [anon_sym__Complex] = ACTIONS(1653), + [anon_sym___complex] = ACTIONS(1653), + [anon_sym_IBOutlet] = ACTIONS(1653), + [anon_sym_IBInspectable] = ACTIONS(1653), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1653), + [anon_sym_signed] = ACTIONS(1653), + [anon_sym_unsigned] = ACTIONS(1653), + [anon_sym_long] = ACTIONS(1653), + [anon_sym_short] = ACTIONS(1653), + [sym_primitive_type] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_switch] = ACTIONS(1653), + [anon_sym_case] = ACTIONS(1653), + [anon_sym_default] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_goto] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_sizeof] = ACTIONS(1653), + [sym_number_literal] = ACTIONS(1655), + [anon_sym_L_SQUOTE] = ACTIONS(1655), + [anon_sym_u_SQUOTE] = ACTIONS(1655), + [anon_sym_U_SQUOTE] = ACTIONS(1655), + [anon_sym_u8_SQUOTE] = ACTIONS(1655), + [anon_sym_SQUOTE] = ACTIONS(1655), + [anon_sym_L_DQUOTE] = ACTIONS(1655), + [anon_sym_u_DQUOTE] = ACTIONS(1655), + [anon_sym_U_DQUOTE] = ACTIONS(1655), + [anon_sym_u8_DQUOTE] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym_true] = ACTIONS(1653), + [sym_false] = ACTIONS(1653), + [sym_null] = ACTIONS(1653), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1363), - [anon_sym_ATimport] = ACTIONS(1363), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1361), - [anon_sym_ATcompatibility_alias] = ACTIONS(1363), - [anon_sym_ATprotocol] = ACTIONS(1363), - [anon_sym_ATclass] = ACTIONS(1363), - [anon_sym_ATinterface] = ACTIONS(1363), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1361), - [sym_method_attribute_specifier] = ACTIONS(1361), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1361), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1361), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1361), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1361), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1361), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1361), - [anon_sym_NS_AVAILABLE] = ACTIONS(1361), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1361), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1361), - [anon_sym_API_AVAILABLE] = ACTIONS(1361), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1361), - [anon_sym_API_DEPRECATED] = ACTIONS(1361), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1361), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1361), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1361), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1361), - [anon_sym___deprecated_msg] = ACTIONS(1361), - [anon_sym___deprecated_enum_msg] = ACTIONS(1361), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1361), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1361), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1361), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1361), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1361), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1361), - [anon_sym_ATimplementation] = ACTIONS(1363), - [anon_sym_typeof] = ACTIONS(1361), - [anon_sym___typeof] = ACTIONS(1361), - [anon_sym___typeof__] = ACTIONS(1361), - [sym_self] = ACTIONS(1361), - [sym_super] = ACTIONS(1361), - [sym_nil] = ACTIONS(1361), - [sym_id] = ACTIONS(1361), - [sym_instancetype] = ACTIONS(1361), - [sym_Class] = ACTIONS(1361), - [sym_SEL] = ACTIONS(1361), - [sym_IMP] = ACTIONS(1361), - [sym_BOOL] = ACTIONS(1361), - [sym_auto] = ACTIONS(1361), - [anon_sym_ATautoreleasepool] = ACTIONS(1363), - [anon_sym_ATsynchronized] = ACTIONS(1363), - [anon_sym_ATtry] = ACTIONS(1363), - [anon_sym_ATcatch] = ACTIONS(1363), - [anon_sym_ATfinally] = ACTIONS(1363), - [anon_sym_ATthrow] = ACTIONS(1363), - [anon_sym_ATselector] = ACTIONS(1363), - [anon_sym_ATencode] = ACTIONS(1363), - [anon_sym_AT] = ACTIONS(1361), - [sym_YES] = ACTIONS(1361), - [sym_NO] = ACTIONS(1361), - [anon_sym___builtin_available] = ACTIONS(1361), - [anon_sym_ATavailable] = ACTIONS(1363), - [anon_sym_va_arg] = ACTIONS(1361), + [anon_sym_POUNDimport] = ACTIONS(1655), + [anon_sym_ATimport] = ACTIONS(1655), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1653), + [anon_sym_ATcompatibility_alias] = ACTIONS(1655), + [anon_sym_ATprotocol] = ACTIONS(1655), + [anon_sym_ATclass] = ACTIONS(1655), + [anon_sym_ATinterface] = ACTIONS(1655), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1653), + [sym_method_attribute_specifier] = ACTIONS(1653), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1653), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE] = ACTIONS(1653), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_API_AVAILABLE] = ACTIONS(1653), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_API_DEPRECATED] = ACTIONS(1653), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1653), + [anon_sym___deprecated_msg] = ACTIONS(1653), + [anon_sym___deprecated_enum_msg] = ACTIONS(1653), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1653), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1653), + [anon_sym_ATimplementation] = ACTIONS(1655), + [anon_sym_NS_ENUM] = ACTIONS(1653), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), + [anon_sym_NS_OPTIONS] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1653), + [anon_sym___typeof] = ACTIONS(1653), + [anon_sym___typeof__] = ACTIONS(1653), + [sym_self] = ACTIONS(1653), + [sym_super] = ACTIONS(1653), + [sym_nil] = ACTIONS(1653), + [sym_id] = ACTIONS(1653), + [sym_instancetype] = ACTIONS(1653), + [sym_Class] = ACTIONS(1653), + [sym_SEL] = ACTIONS(1653), + [sym_IMP] = ACTIONS(1653), + [sym_BOOL] = ACTIONS(1653), + [sym_auto] = ACTIONS(1653), + [anon_sym_ATautoreleasepool] = ACTIONS(1655), + [anon_sym_ATsynchronized] = ACTIONS(1655), + [anon_sym_ATtry] = ACTIONS(1655), + [anon_sym_ATcatch] = ACTIONS(1655), + [anon_sym_ATfinally] = ACTIONS(1655), + [anon_sym_ATthrow] = ACTIONS(1655), + [anon_sym_ATselector] = ACTIONS(1655), + [anon_sym_ATencode] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [sym_YES] = ACTIONS(1653), + [sym_NO] = ACTIONS(1653), + [anon_sym___builtin_available] = ACTIONS(1653), + [anon_sym_ATavailable] = ACTIONS(1655), + [anon_sym_va_arg] = ACTIONS(1653), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -104208,174 +90352,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [446] = { - [sym_identifier] = ACTIONS(1357), - [aux_sym_preproc_include_token1] = ACTIONS(1359), - [aux_sym_preproc_def_token1] = ACTIONS(1359), - [aux_sym_preproc_if_token1] = ACTIONS(1357), - [aux_sym_preproc_if_token2] = ACTIONS(1357), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), - [anon_sym_LPAREN2] = ACTIONS(1359), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_typedef] = ACTIONS(1357), - [anon_sym_extern] = ACTIONS(1357), - [anon_sym___attribute] = ACTIONS(1357), - [anon_sym___attribute__] = ACTIONS(1357), - [anon_sym___declspec] = ACTIONS(1357), - [anon_sym___cdecl] = ACTIONS(1357), - [anon_sym___clrcall] = ACTIONS(1357), - [anon_sym___stdcall] = ACTIONS(1357), - [anon_sym___fastcall] = ACTIONS(1357), - [anon_sym___thiscall] = ACTIONS(1357), - [anon_sym___vectorcall] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_static] = ACTIONS(1357), - [anon_sym_auto] = ACTIONS(1357), - [anon_sym_register] = ACTIONS(1357), - [anon_sym_inline] = ACTIONS(1357), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_volatile] = ACTIONS(1357), - [anon_sym_restrict] = ACTIONS(1357), - [anon_sym__Atomic] = ACTIONS(1357), - [anon_sym_in] = ACTIONS(1357), - [anon_sym_out] = ACTIONS(1357), - [anon_sym_inout] = ACTIONS(1357), - [anon_sym_bycopy] = ACTIONS(1357), - [anon_sym_byref] = ACTIONS(1357), - [anon_sym_oneway] = ACTIONS(1357), - [anon_sym__Nullable] = ACTIONS(1357), - [anon_sym__Nonnull] = ACTIONS(1357), - [anon_sym__Nullable_result] = ACTIONS(1357), - [anon_sym__Null_unspecified] = ACTIONS(1357), - [anon_sym___autoreleasing] = ACTIONS(1357), - [anon_sym___nullable] = ACTIONS(1357), - [anon_sym___nonnull] = ACTIONS(1357), - [anon_sym___strong] = ACTIONS(1357), - [anon_sym___weak] = ACTIONS(1357), - [anon_sym___bridge] = ACTIONS(1357), - [anon_sym___bridge_transfer] = ACTIONS(1357), - [anon_sym___bridge_retained] = ACTIONS(1357), - [anon_sym___unsafe_unretained] = ACTIONS(1357), - [anon_sym___block] = ACTIONS(1357), - [anon_sym___kindof] = ACTIONS(1357), - [anon_sym___unused] = ACTIONS(1357), - [anon_sym__Complex] = ACTIONS(1357), - [anon_sym___complex] = ACTIONS(1357), - [anon_sym_IBOutlet] = ACTIONS(1357), - [anon_sym_IBInspectable] = ACTIONS(1357), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1357), - [anon_sym_signed] = ACTIONS(1357), - [anon_sym_unsigned] = ACTIONS(1357), - [anon_sym_long] = ACTIONS(1357), - [anon_sym_short] = ACTIONS(1357), - [sym_primitive_type] = ACTIONS(1357), - [anon_sym_enum] = ACTIONS(1357), - [anon_sym_NS_ENUM] = ACTIONS(1357), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1357), - [anon_sym_NS_OPTIONS] = ACTIONS(1357), - [anon_sym_struct] = ACTIONS(1357), - [anon_sym_union] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1357), - [anon_sym_else] = ACTIONS(1357), - [anon_sym_switch] = ACTIONS(1357), - [anon_sym_case] = ACTIONS(1357), - [anon_sym_default] = ACTIONS(1357), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_do] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_return] = ACTIONS(1357), - [anon_sym_break] = ACTIONS(1357), - [anon_sym_continue] = ACTIONS(1357), - [anon_sym_goto] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [anon_sym_sizeof] = ACTIONS(1357), - [sym_number_literal] = ACTIONS(1359), - [anon_sym_L_SQUOTE] = ACTIONS(1359), - [anon_sym_u_SQUOTE] = ACTIONS(1359), - [anon_sym_U_SQUOTE] = ACTIONS(1359), - [anon_sym_u8_SQUOTE] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_L_DQUOTE] = ACTIONS(1359), - [anon_sym_u_DQUOTE] = ACTIONS(1359), - [anon_sym_U_DQUOTE] = ACTIONS(1359), - [anon_sym_u8_DQUOTE] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [sym_true] = ACTIONS(1357), - [sym_false] = ACTIONS(1357), - [sym_null] = ACTIONS(1357), + [367] = { + [sym_identifier] = ACTIONS(1653), + [aux_sym_preproc_include_token1] = ACTIONS(1655), + [aux_sym_preproc_def_token1] = ACTIONS(1655), + [aux_sym_preproc_if_token1] = ACTIONS(1653), + [aux_sym_preproc_if_token2] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_TILDE] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_typedef] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym___attribute] = ACTIONS(1653), + [anon_sym___attribute__] = ACTIONS(1653), + [anon_sym___declspec] = ACTIONS(1653), + [anon_sym___cdecl] = ACTIONS(1653), + [anon_sym___clrcall] = ACTIONS(1653), + [anon_sym___stdcall] = ACTIONS(1653), + [anon_sym___fastcall] = ACTIONS(1653), + [anon_sym___thiscall] = ACTIONS(1653), + [anon_sym___vectorcall] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_static] = ACTIONS(1653), + [anon_sym_auto] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_inline] = ACTIONS(1653), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_volatile] = ACTIONS(1653), + [anon_sym_restrict] = ACTIONS(1653), + [anon_sym__Atomic] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [anon_sym_out] = ACTIONS(1653), + [anon_sym_inout] = ACTIONS(1653), + [anon_sym_bycopy] = ACTIONS(1653), + [anon_sym_byref] = ACTIONS(1653), + [anon_sym_oneway] = ACTIONS(1653), + [anon_sym__Nullable] = ACTIONS(1653), + [anon_sym__Nonnull] = ACTIONS(1653), + [anon_sym__Nullable_result] = ACTIONS(1653), + [anon_sym__Null_unspecified] = ACTIONS(1653), + [anon_sym___autoreleasing] = ACTIONS(1653), + [anon_sym___nullable] = ACTIONS(1653), + [anon_sym___nonnull] = ACTIONS(1653), + [anon_sym___strong] = ACTIONS(1653), + [anon_sym___weak] = ACTIONS(1653), + [anon_sym___bridge] = ACTIONS(1653), + [anon_sym___bridge_transfer] = ACTIONS(1653), + [anon_sym___bridge_retained] = ACTIONS(1653), + [anon_sym___unsafe_unretained] = ACTIONS(1653), + [anon_sym___block] = ACTIONS(1653), + [anon_sym___kindof] = ACTIONS(1653), + [anon_sym___unused] = ACTIONS(1653), + [anon_sym__Complex] = ACTIONS(1653), + [anon_sym___complex] = ACTIONS(1653), + [anon_sym_IBOutlet] = ACTIONS(1653), + [anon_sym_IBInspectable] = ACTIONS(1653), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1653), + [anon_sym_signed] = ACTIONS(1653), + [anon_sym_unsigned] = ACTIONS(1653), + [anon_sym_long] = ACTIONS(1653), + [anon_sym_short] = ACTIONS(1653), + [sym_primitive_type] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_switch] = ACTIONS(1653), + [anon_sym_case] = ACTIONS(1653), + [anon_sym_default] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_goto] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_sizeof] = ACTIONS(1653), + [sym_number_literal] = ACTIONS(1655), + [anon_sym_L_SQUOTE] = ACTIONS(1655), + [anon_sym_u_SQUOTE] = ACTIONS(1655), + [anon_sym_U_SQUOTE] = ACTIONS(1655), + [anon_sym_u8_SQUOTE] = ACTIONS(1655), + [anon_sym_SQUOTE] = ACTIONS(1655), + [anon_sym_L_DQUOTE] = ACTIONS(1655), + [anon_sym_u_DQUOTE] = ACTIONS(1655), + [anon_sym_U_DQUOTE] = ACTIONS(1655), + [anon_sym_u8_DQUOTE] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym_true] = ACTIONS(1653), + [sym_false] = ACTIONS(1653), + [sym_null] = ACTIONS(1653), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1359), - [anon_sym_ATimport] = ACTIONS(1359), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1357), - [anon_sym_ATcompatibility_alias] = ACTIONS(1359), - [anon_sym_ATprotocol] = ACTIONS(1359), - [anon_sym_ATclass] = ACTIONS(1359), - [anon_sym_ATinterface] = ACTIONS(1359), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1357), - [sym_method_attribute_specifier] = ACTIONS(1357), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1357), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1357), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1357), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1357), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1357), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1357), - [anon_sym_NS_AVAILABLE] = ACTIONS(1357), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1357), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1357), - [anon_sym_API_AVAILABLE] = ACTIONS(1357), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1357), - [anon_sym_API_DEPRECATED] = ACTIONS(1357), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1357), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1357), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1357), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1357), - [anon_sym___deprecated_msg] = ACTIONS(1357), - [anon_sym___deprecated_enum_msg] = ACTIONS(1357), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1357), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1357), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1357), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1357), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1357), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1357), - [anon_sym_ATimplementation] = ACTIONS(1359), - [anon_sym_typeof] = ACTIONS(1357), - [anon_sym___typeof] = ACTIONS(1357), - [anon_sym___typeof__] = ACTIONS(1357), - [sym_self] = ACTIONS(1357), - [sym_super] = ACTIONS(1357), - [sym_nil] = ACTIONS(1357), - [sym_id] = ACTIONS(1357), - [sym_instancetype] = ACTIONS(1357), - [sym_Class] = ACTIONS(1357), - [sym_SEL] = ACTIONS(1357), - [sym_IMP] = ACTIONS(1357), - [sym_BOOL] = ACTIONS(1357), - [sym_auto] = ACTIONS(1357), - [anon_sym_ATautoreleasepool] = ACTIONS(1359), - [anon_sym_ATsynchronized] = ACTIONS(1359), - [anon_sym_ATtry] = ACTIONS(1359), - [anon_sym_ATcatch] = ACTIONS(1359), - [anon_sym_ATfinally] = ACTIONS(1359), - [anon_sym_ATthrow] = ACTIONS(1359), - [anon_sym_ATselector] = ACTIONS(1359), - [anon_sym_ATencode] = ACTIONS(1359), - [anon_sym_AT] = ACTIONS(1357), - [sym_YES] = ACTIONS(1357), - [sym_NO] = ACTIONS(1357), - [anon_sym___builtin_available] = ACTIONS(1357), - [anon_sym_ATavailable] = ACTIONS(1359), - [anon_sym_va_arg] = ACTIONS(1357), + [anon_sym_POUNDimport] = ACTIONS(1655), + [anon_sym_ATimport] = ACTIONS(1655), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1653), + [anon_sym_ATcompatibility_alias] = ACTIONS(1655), + [anon_sym_ATprotocol] = ACTIONS(1655), + [anon_sym_ATclass] = ACTIONS(1655), + [anon_sym_ATinterface] = ACTIONS(1655), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1653), + [sym_method_attribute_specifier] = ACTIONS(1653), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1653), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE] = ACTIONS(1653), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_API_AVAILABLE] = ACTIONS(1653), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_API_DEPRECATED] = ACTIONS(1653), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1653), + [anon_sym___deprecated_msg] = ACTIONS(1653), + [anon_sym___deprecated_enum_msg] = ACTIONS(1653), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1653), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1653), + [anon_sym_ATimplementation] = ACTIONS(1655), + [anon_sym_NS_ENUM] = ACTIONS(1653), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), + [anon_sym_NS_OPTIONS] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1653), + [anon_sym___typeof] = ACTIONS(1653), + [anon_sym___typeof__] = ACTIONS(1653), + [sym_self] = ACTIONS(1653), + [sym_super] = ACTIONS(1653), + [sym_nil] = ACTIONS(1653), + [sym_id] = ACTIONS(1653), + [sym_instancetype] = ACTIONS(1653), + [sym_Class] = ACTIONS(1653), + [sym_SEL] = ACTIONS(1653), + [sym_IMP] = ACTIONS(1653), + [sym_BOOL] = ACTIONS(1653), + [sym_auto] = ACTIONS(1653), + [anon_sym_ATautoreleasepool] = ACTIONS(1655), + [anon_sym_ATsynchronized] = ACTIONS(1655), + [anon_sym_ATtry] = ACTIONS(1655), + [anon_sym_ATcatch] = ACTIONS(1655), + [anon_sym_ATfinally] = ACTIONS(1655), + [anon_sym_ATthrow] = ACTIONS(1655), + [anon_sym_ATselector] = ACTIONS(1655), + [anon_sym_ATencode] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [sym_YES] = ACTIONS(1653), + [sym_NO] = ACTIONS(1653), + [anon_sym___builtin_available] = ACTIONS(1653), + [anon_sym_ATavailable] = ACTIONS(1655), + [anon_sym_va_arg] = ACTIONS(1653), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -104383,174 +90527,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [447] = { - [sym_identifier] = ACTIONS(1353), - [aux_sym_preproc_include_token1] = ACTIONS(1355), - [aux_sym_preproc_def_token1] = ACTIONS(1355), - [aux_sym_preproc_if_token1] = ACTIONS(1353), - [aux_sym_preproc_if_token2] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1353), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1353), - [anon_sym_LPAREN2] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1353), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_CARET] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(1355), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_typedef] = ACTIONS(1353), - [anon_sym_extern] = ACTIONS(1353), - [anon_sym___attribute] = ACTIONS(1353), - [anon_sym___attribute__] = ACTIONS(1353), - [anon_sym___declspec] = ACTIONS(1353), - [anon_sym___cdecl] = ACTIONS(1353), - [anon_sym___clrcall] = ACTIONS(1353), - [anon_sym___stdcall] = ACTIONS(1353), - [anon_sym___fastcall] = ACTIONS(1353), - [anon_sym___thiscall] = ACTIONS(1353), - [anon_sym___vectorcall] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_LBRACK] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_auto] = ACTIONS(1353), - [anon_sym_register] = ACTIONS(1353), - [anon_sym_inline] = ACTIONS(1353), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), - [anon_sym_volatile] = ACTIONS(1353), - [anon_sym_restrict] = ACTIONS(1353), - [anon_sym__Atomic] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(1353), - [anon_sym_out] = ACTIONS(1353), - [anon_sym_inout] = ACTIONS(1353), - [anon_sym_bycopy] = ACTIONS(1353), - [anon_sym_byref] = ACTIONS(1353), - [anon_sym_oneway] = ACTIONS(1353), - [anon_sym__Nullable] = ACTIONS(1353), - [anon_sym__Nonnull] = ACTIONS(1353), - [anon_sym__Nullable_result] = ACTIONS(1353), - [anon_sym__Null_unspecified] = ACTIONS(1353), - [anon_sym___autoreleasing] = ACTIONS(1353), - [anon_sym___nullable] = ACTIONS(1353), - [anon_sym___nonnull] = ACTIONS(1353), - [anon_sym___strong] = ACTIONS(1353), - [anon_sym___weak] = ACTIONS(1353), - [anon_sym___bridge] = ACTIONS(1353), - [anon_sym___bridge_transfer] = ACTIONS(1353), - [anon_sym___bridge_retained] = ACTIONS(1353), - [anon_sym___unsafe_unretained] = ACTIONS(1353), - [anon_sym___block] = ACTIONS(1353), - [anon_sym___kindof] = ACTIONS(1353), - [anon_sym___unused] = ACTIONS(1353), - [anon_sym__Complex] = ACTIONS(1353), - [anon_sym___complex] = ACTIONS(1353), - [anon_sym_IBOutlet] = ACTIONS(1353), - [anon_sym_IBInspectable] = ACTIONS(1353), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1353), - [anon_sym_signed] = ACTIONS(1353), - [anon_sym_unsigned] = ACTIONS(1353), - [anon_sym_long] = ACTIONS(1353), - [anon_sym_short] = ACTIONS(1353), - [sym_primitive_type] = ACTIONS(1353), - [anon_sym_enum] = ACTIONS(1353), - [anon_sym_NS_ENUM] = ACTIONS(1353), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1353), - [anon_sym_NS_OPTIONS] = ACTIONS(1353), - [anon_sym_struct] = ACTIONS(1353), - [anon_sym_union] = ACTIONS(1353), - [anon_sym_if] = ACTIONS(1353), - [anon_sym_else] = ACTIONS(1353), - [anon_sym_switch] = ACTIONS(1353), - [anon_sym_case] = ACTIONS(1353), - [anon_sym_default] = ACTIONS(1353), - [anon_sym_while] = ACTIONS(1353), - [anon_sym_do] = ACTIONS(1353), - [anon_sym_for] = ACTIONS(1353), - [anon_sym_return] = ACTIONS(1353), - [anon_sym_break] = ACTIONS(1353), - [anon_sym_continue] = ACTIONS(1353), - [anon_sym_goto] = ACTIONS(1353), - [anon_sym_DASH_DASH] = ACTIONS(1355), - [anon_sym_PLUS_PLUS] = ACTIONS(1355), - [anon_sym_sizeof] = ACTIONS(1353), - [sym_number_literal] = ACTIONS(1355), - [anon_sym_L_SQUOTE] = ACTIONS(1355), - [anon_sym_u_SQUOTE] = ACTIONS(1355), - [anon_sym_U_SQUOTE] = ACTIONS(1355), - [anon_sym_u8_SQUOTE] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_L_DQUOTE] = ACTIONS(1355), - [anon_sym_u_DQUOTE] = ACTIONS(1355), - [anon_sym_U_DQUOTE] = ACTIONS(1355), - [anon_sym_u8_DQUOTE] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1355), - [sym_true] = ACTIONS(1353), - [sym_false] = ACTIONS(1353), - [sym_null] = ACTIONS(1353), + [368] = { + [sym_identifier] = ACTIONS(1639), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [aux_sym_preproc_if_token1] = ACTIONS(1639), + [aux_sym_preproc_if_token2] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_CARET] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1639), + [anon_sym___cdecl] = ACTIONS(1639), + [anon_sym___clrcall] = ACTIONS(1639), + [anon_sym___stdcall] = ACTIONS(1639), + [anon_sym___fastcall] = ACTIONS(1639), + [anon_sym___thiscall] = ACTIONS(1639), + [anon_sym___vectorcall] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_auto] = ACTIONS(1639), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_inline] = ACTIONS(1639), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1639), + [anon_sym_restrict] = ACTIONS(1639), + [anon_sym__Atomic] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [anon_sym_out] = ACTIONS(1639), + [anon_sym_inout] = ACTIONS(1639), + [anon_sym_bycopy] = ACTIONS(1639), + [anon_sym_byref] = ACTIONS(1639), + [anon_sym_oneway] = ACTIONS(1639), + [anon_sym__Nullable] = ACTIONS(1639), + [anon_sym__Nonnull] = ACTIONS(1639), + [anon_sym__Nullable_result] = ACTIONS(1639), + [anon_sym__Null_unspecified] = ACTIONS(1639), + [anon_sym___autoreleasing] = ACTIONS(1639), + [anon_sym___nullable] = ACTIONS(1639), + [anon_sym___nonnull] = ACTIONS(1639), + [anon_sym___strong] = ACTIONS(1639), + [anon_sym___weak] = ACTIONS(1639), + [anon_sym___bridge] = ACTIONS(1639), + [anon_sym___bridge_transfer] = ACTIONS(1639), + [anon_sym___bridge_retained] = ACTIONS(1639), + [anon_sym___unsafe_unretained] = ACTIONS(1639), + [anon_sym___block] = ACTIONS(1639), + [anon_sym___kindof] = ACTIONS(1639), + [anon_sym___unused] = ACTIONS(1639), + [anon_sym__Complex] = ACTIONS(1639), + [anon_sym___complex] = ACTIONS(1639), + [anon_sym_IBOutlet] = ACTIONS(1639), + [anon_sym_IBInspectable] = ACTIONS(1639), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1639), + [anon_sym_unsigned] = ACTIONS(1639), + [anon_sym_long] = ACTIONS(1639), + [anon_sym_short] = ACTIONS(1639), + [sym_primitive_type] = ACTIONS(1639), + [anon_sym_enum] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_switch] = ACTIONS(1639), + [anon_sym_case] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_goto] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1637), + [anon_sym_sizeof] = ACTIONS(1639), + [sym_number_literal] = ACTIONS(1637), + [anon_sym_L_SQUOTE] = ACTIONS(1637), + [anon_sym_u_SQUOTE] = ACTIONS(1637), + [anon_sym_U_SQUOTE] = ACTIONS(1637), + [anon_sym_u8_SQUOTE] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1637), + [anon_sym_L_DQUOTE] = ACTIONS(1637), + [anon_sym_u_DQUOTE] = ACTIONS(1637), + [anon_sym_U_DQUOTE] = ACTIONS(1637), + [anon_sym_u8_DQUOTE] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1355), - [anon_sym_ATimport] = ACTIONS(1355), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1353), - [anon_sym_ATcompatibility_alias] = ACTIONS(1355), - [anon_sym_ATprotocol] = ACTIONS(1355), - [anon_sym_ATclass] = ACTIONS(1355), - [anon_sym_ATinterface] = ACTIONS(1355), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1353), - [sym_method_attribute_specifier] = ACTIONS(1353), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1353), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1353), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1353), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1353), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1353), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1353), - [anon_sym_NS_AVAILABLE] = ACTIONS(1353), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1353), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1353), - [anon_sym_API_AVAILABLE] = ACTIONS(1353), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1353), - [anon_sym_API_DEPRECATED] = ACTIONS(1353), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1353), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1353), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1353), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1353), - [anon_sym___deprecated_msg] = ACTIONS(1353), - [anon_sym___deprecated_enum_msg] = ACTIONS(1353), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1353), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1353), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1353), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1353), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1353), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1353), - [anon_sym_ATimplementation] = ACTIONS(1355), - [anon_sym_typeof] = ACTIONS(1353), - [anon_sym___typeof] = ACTIONS(1353), - [anon_sym___typeof__] = ACTIONS(1353), - [sym_self] = ACTIONS(1353), - [sym_super] = ACTIONS(1353), - [sym_nil] = ACTIONS(1353), - [sym_id] = ACTIONS(1353), - [sym_instancetype] = ACTIONS(1353), - [sym_Class] = ACTIONS(1353), - [sym_SEL] = ACTIONS(1353), - [sym_IMP] = ACTIONS(1353), - [sym_BOOL] = ACTIONS(1353), - [sym_auto] = ACTIONS(1353), - [anon_sym_ATautoreleasepool] = ACTIONS(1355), - [anon_sym_ATsynchronized] = ACTIONS(1355), - [anon_sym_ATtry] = ACTIONS(1355), - [anon_sym_ATcatch] = ACTIONS(1355), - [anon_sym_ATfinally] = ACTIONS(1355), - [anon_sym_ATthrow] = ACTIONS(1355), - [anon_sym_ATselector] = ACTIONS(1355), - [anon_sym_ATencode] = ACTIONS(1355), - [anon_sym_AT] = ACTIONS(1353), - [sym_YES] = ACTIONS(1353), - [sym_NO] = ACTIONS(1353), - [anon_sym___builtin_available] = ACTIONS(1353), - [anon_sym_ATavailable] = ACTIONS(1355), - [anon_sym_va_arg] = ACTIONS(1353), + [anon_sym_POUNDimport] = ACTIONS(1637), + [anon_sym_ATimport] = ACTIONS(1637), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1639), + [anon_sym_ATcompatibility_alias] = ACTIONS(1637), + [anon_sym_ATprotocol] = ACTIONS(1637), + [anon_sym_ATclass] = ACTIONS(1637), + [anon_sym_ATinterface] = ACTIONS(1637), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1639), + [sym_method_attribute_specifier] = ACTIONS(1639), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1639), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE] = ACTIONS(1639), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_API_AVAILABLE] = ACTIONS(1639), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_API_DEPRECATED] = ACTIONS(1639), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1639), + [anon_sym___deprecated_msg] = ACTIONS(1639), + [anon_sym___deprecated_enum_msg] = ACTIONS(1639), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1639), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1639), + [anon_sym_ATimplementation] = ACTIONS(1637), + [anon_sym_NS_ENUM] = ACTIONS(1639), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1639), + [anon_sym_NS_OPTIONS] = ACTIONS(1639), + [anon_sym_typeof] = ACTIONS(1639), + [anon_sym___typeof] = ACTIONS(1639), + [anon_sym___typeof__] = ACTIONS(1639), + [sym_self] = ACTIONS(1639), + [sym_super] = ACTIONS(1639), + [sym_nil] = ACTIONS(1639), + [sym_id] = ACTIONS(1639), + [sym_instancetype] = ACTIONS(1639), + [sym_Class] = ACTIONS(1639), + [sym_SEL] = ACTIONS(1639), + [sym_IMP] = ACTIONS(1639), + [sym_BOOL] = ACTIONS(1639), + [sym_auto] = ACTIONS(1639), + [anon_sym_ATautoreleasepool] = ACTIONS(1637), + [anon_sym_ATsynchronized] = ACTIONS(1637), + [anon_sym_ATtry] = ACTIONS(1637), + [anon_sym_ATcatch] = ACTIONS(1637), + [anon_sym_ATfinally] = ACTIONS(1637), + [anon_sym_ATthrow] = ACTIONS(1637), + [anon_sym_ATselector] = ACTIONS(1637), + [anon_sym_ATencode] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1639), + [sym_YES] = ACTIONS(1639), + [sym_NO] = ACTIONS(1639), + [anon_sym___builtin_available] = ACTIONS(1639), + [anon_sym_ATavailable] = ACTIONS(1637), + [anon_sym_va_arg] = ACTIONS(1639), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -104558,174 +90702,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [448] = { - [sym_identifier] = ACTIONS(1349), - [aux_sym_preproc_include_token1] = ACTIONS(1351), - [aux_sym_preproc_def_token1] = ACTIONS(1351), - [aux_sym_preproc_if_token1] = ACTIONS(1349), - [aux_sym_preproc_if_token2] = ACTIONS(1349), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1349), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1349), - [anon_sym_LPAREN2] = ACTIONS(1351), - [anon_sym_BANG] = ACTIONS(1351), - [anon_sym_TILDE] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1351), - [anon_sym_AMP] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_typedef] = ACTIONS(1349), - [anon_sym_extern] = ACTIONS(1349), - [anon_sym___attribute] = ACTIONS(1349), - [anon_sym___attribute__] = ACTIONS(1349), - [anon_sym___declspec] = ACTIONS(1349), - [anon_sym___cdecl] = ACTIONS(1349), - [anon_sym___clrcall] = ACTIONS(1349), - [anon_sym___stdcall] = ACTIONS(1349), - [anon_sym___fastcall] = ACTIONS(1349), - [anon_sym___thiscall] = ACTIONS(1349), - [anon_sym___vectorcall] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1351), - [anon_sym_LBRACK] = ACTIONS(1351), - [anon_sym_static] = ACTIONS(1349), - [anon_sym_auto] = ACTIONS(1349), - [anon_sym_register] = ACTIONS(1349), - [anon_sym_inline] = ACTIONS(1349), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1349), - [anon_sym_volatile] = ACTIONS(1349), - [anon_sym_restrict] = ACTIONS(1349), - [anon_sym__Atomic] = ACTIONS(1349), - [anon_sym_in] = ACTIONS(1349), - [anon_sym_out] = ACTIONS(1349), - [anon_sym_inout] = ACTIONS(1349), - [anon_sym_bycopy] = ACTIONS(1349), - [anon_sym_byref] = ACTIONS(1349), - [anon_sym_oneway] = ACTIONS(1349), - [anon_sym__Nullable] = ACTIONS(1349), - [anon_sym__Nonnull] = ACTIONS(1349), - [anon_sym__Nullable_result] = ACTIONS(1349), - [anon_sym__Null_unspecified] = ACTIONS(1349), - [anon_sym___autoreleasing] = ACTIONS(1349), - [anon_sym___nullable] = ACTIONS(1349), - [anon_sym___nonnull] = ACTIONS(1349), - [anon_sym___strong] = ACTIONS(1349), - [anon_sym___weak] = ACTIONS(1349), - [anon_sym___bridge] = ACTIONS(1349), - [anon_sym___bridge_transfer] = ACTIONS(1349), - [anon_sym___bridge_retained] = ACTIONS(1349), - [anon_sym___unsafe_unretained] = ACTIONS(1349), - [anon_sym___block] = ACTIONS(1349), - [anon_sym___kindof] = ACTIONS(1349), - [anon_sym___unused] = ACTIONS(1349), - [anon_sym__Complex] = ACTIONS(1349), - [anon_sym___complex] = ACTIONS(1349), - [anon_sym_IBOutlet] = ACTIONS(1349), - [anon_sym_IBInspectable] = ACTIONS(1349), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1349), - [anon_sym_signed] = ACTIONS(1349), - [anon_sym_unsigned] = ACTIONS(1349), - [anon_sym_long] = ACTIONS(1349), - [anon_sym_short] = ACTIONS(1349), - [sym_primitive_type] = ACTIONS(1349), - [anon_sym_enum] = ACTIONS(1349), - [anon_sym_NS_ENUM] = ACTIONS(1349), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1349), - [anon_sym_NS_OPTIONS] = ACTIONS(1349), - [anon_sym_struct] = ACTIONS(1349), - [anon_sym_union] = ACTIONS(1349), - [anon_sym_if] = ACTIONS(1349), - [anon_sym_else] = ACTIONS(1349), - [anon_sym_switch] = ACTIONS(1349), - [anon_sym_case] = ACTIONS(1349), - [anon_sym_default] = ACTIONS(1349), - [anon_sym_while] = ACTIONS(1349), - [anon_sym_do] = ACTIONS(1349), - [anon_sym_for] = ACTIONS(1349), - [anon_sym_return] = ACTIONS(1349), - [anon_sym_break] = ACTIONS(1349), - [anon_sym_continue] = ACTIONS(1349), - [anon_sym_goto] = ACTIONS(1349), - [anon_sym_DASH_DASH] = ACTIONS(1351), - [anon_sym_PLUS_PLUS] = ACTIONS(1351), - [anon_sym_sizeof] = ACTIONS(1349), - [sym_number_literal] = ACTIONS(1351), - [anon_sym_L_SQUOTE] = ACTIONS(1351), - [anon_sym_u_SQUOTE] = ACTIONS(1351), - [anon_sym_U_SQUOTE] = ACTIONS(1351), - [anon_sym_u8_SQUOTE] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_L_DQUOTE] = ACTIONS(1351), - [anon_sym_u_DQUOTE] = ACTIONS(1351), - [anon_sym_U_DQUOTE] = ACTIONS(1351), - [anon_sym_u8_DQUOTE] = ACTIONS(1351), - [anon_sym_DQUOTE] = ACTIONS(1351), - [sym_true] = ACTIONS(1349), - [sym_false] = ACTIONS(1349), - [sym_null] = ACTIONS(1349), + [369] = { + [sym_identifier] = ACTIONS(1639), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [aux_sym_preproc_if_token1] = ACTIONS(1639), + [aux_sym_preproc_if_token2] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_CARET] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1639), + [anon_sym___cdecl] = ACTIONS(1639), + [anon_sym___clrcall] = ACTIONS(1639), + [anon_sym___stdcall] = ACTIONS(1639), + [anon_sym___fastcall] = ACTIONS(1639), + [anon_sym___thiscall] = ACTIONS(1639), + [anon_sym___vectorcall] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_auto] = ACTIONS(1639), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_inline] = ACTIONS(1639), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1639), + [anon_sym_restrict] = ACTIONS(1639), + [anon_sym__Atomic] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [anon_sym_out] = ACTIONS(1639), + [anon_sym_inout] = ACTIONS(1639), + [anon_sym_bycopy] = ACTIONS(1639), + [anon_sym_byref] = ACTIONS(1639), + [anon_sym_oneway] = ACTIONS(1639), + [anon_sym__Nullable] = ACTIONS(1639), + [anon_sym__Nonnull] = ACTIONS(1639), + [anon_sym__Nullable_result] = ACTIONS(1639), + [anon_sym__Null_unspecified] = ACTIONS(1639), + [anon_sym___autoreleasing] = ACTIONS(1639), + [anon_sym___nullable] = ACTIONS(1639), + [anon_sym___nonnull] = ACTIONS(1639), + [anon_sym___strong] = ACTIONS(1639), + [anon_sym___weak] = ACTIONS(1639), + [anon_sym___bridge] = ACTIONS(1639), + [anon_sym___bridge_transfer] = ACTIONS(1639), + [anon_sym___bridge_retained] = ACTIONS(1639), + [anon_sym___unsafe_unretained] = ACTIONS(1639), + [anon_sym___block] = ACTIONS(1639), + [anon_sym___kindof] = ACTIONS(1639), + [anon_sym___unused] = ACTIONS(1639), + [anon_sym__Complex] = ACTIONS(1639), + [anon_sym___complex] = ACTIONS(1639), + [anon_sym_IBOutlet] = ACTIONS(1639), + [anon_sym_IBInspectable] = ACTIONS(1639), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1639), + [anon_sym_unsigned] = ACTIONS(1639), + [anon_sym_long] = ACTIONS(1639), + [anon_sym_short] = ACTIONS(1639), + [sym_primitive_type] = ACTIONS(1639), + [anon_sym_enum] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_switch] = ACTIONS(1639), + [anon_sym_case] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_goto] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1637), + [anon_sym_sizeof] = ACTIONS(1639), + [sym_number_literal] = ACTIONS(1637), + [anon_sym_L_SQUOTE] = ACTIONS(1637), + [anon_sym_u_SQUOTE] = ACTIONS(1637), + [anon_sym_U_SQUOTE] = ACTIONS(1637), + [anon_sym_u8_SQUOTE] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1637), + [anon_sym_L_DQUOTE] = ACTIONS(1637), + [anon_sym_u_DQUOTE] = ACTIONS(1637), + [anon_sym_U_DQUOTE] = ACTIONS(1637), + [anon_sym_u8_DQUOTE] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1351), - [anon_sym_ATimport] = ACTIONS(1351), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1349), - [anon_sym_ATcompatibility_alias] = ACTIONS(1351), - [anon_sym_ATprotocol] = ACTIONS(1351), - [anon_sym_ATclass] = ACTIONS(1351), - [anon_sym_ATinterface] = ACTIONS(1351), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1349), - [sym_method_attribute_specifier] = ACTIONS(1349), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1349), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1349), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1349), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1349), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1349), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1349), - [anon_sym_NS_AVAILABLE] = ACTIONS(1349), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1349), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1349), - [anon_sym_API_AVAILABLE] = ACTIONS(1349), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1349), - [anon_sym_API_DEPRECATED] = ACTIONS(1349), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1349), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1349), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1349), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1349), - [anon_sym___deprecated_msg] = ACTIONS(1349), - [anon_sym___deprecated_enum_msg] = ACTIONS(1349), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1349), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1349), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1349), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1349), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1349), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1349), - [anon_sym_ATimplementation] = ACTIONS(1351), - [anon_sym_typeof] = ACTIONS(1349), - [anon_sym___typeof] = ACTIONS(1349), - [anon_sym___typeof__] = ACTIONS(1349), - [sym_self] = ACTIONS(1349), - [sym_super] = ACTIONS(1349), - [sym_nil] = ACTIONS(1349), - [sym_id] = ACTIONS(1349), - [sym_instancetype] = ACTIONS(1349), - [sym_Class] = ACTIONS(1349), - [sym_SEL] = ACTIONS(1349), - [sym_IMP] = ACTIONS(1349), - [sym_BOOL] = ACTIONS(1349), - [sym_auto] = ACTIONS(1349), - [anon_sym_ATautoreleasepool] = ACTIONS(1351), - [anon_sym_ATsynchronized] = ACTIONS(1351), - [anon_sym_ATtry] = ACTIONS(1351), - [anon_sym_ATcatch] = ACTIONS(1351), - [anon_sym_ATfinally] = ACTIONS(1351), - [anon_sym_ATthrow] = ACTIONS(1351), - [anon_sym_ATselector] = ACTIONS(1351), - [anon_sym_ATencode] = ACTIONS(1351), - [anon_sym_AT] = ACTIONS(1349), - [sym_YES] = ACTIONS(1349), - [sym_NO] = ACTIONS(1349), - [anon_sym___builtin_available] = ACTIONS(1349), - [anon_sym_ATavailable] = ACTIONS(1351), - [anon_sym_va_arg] = ACTIONS(1349), + [anon_sym_POUNDimport] = ACTIONS(1637), + [anon_sym_ATimport] = ACTIONS(1637), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1639), + [anon_sym_ATcompatibility_alias] = ACTIONS(1637), + [anon_sym_ATprotocol] = ACTIONS(1637), + [anon_sym_ATclass] = ACTIONS(1637), + [anon_sym_ATinterface] = ACTIONS(1637), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1639), + [sym_method_attribute_specifier] = ACTIONS(1639), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1639), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE] = ACTIONS(1639), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_API_AVAILABLE] = ACTIONS(1639), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_API_DEPRECATED] = ACTIONS(1639), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1639), + [anon_sym___deprecated_msg] = ACTIONS(1639), + [anon_sym___deprecated_enum_msg] = ACTIONS(1639), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1639), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1639), + [anon_sym_ATimplementation] = ACTIONS(1637), + [anon_sym_NS_ENUM] = ACTIONS(1639), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1639), + [anon_sym_NS_OPTIONS] = ACTIONS(1639), + [anon_sym_typeof] = ACTIONS(1639), + [anon_sym___typeof] = ACTIONS(1639), + [anon_sym___typeof__] = ACTIONS(1639), + [sym_self] = ACTIONS(1639), + [sym_super] = ACTIONS(1639), + [sym_nil] = ACTIONS(1639), + [sym_id] = ACTIONS(1639), + [sym_instancetype] = ACTIONS(1639), + [sym_Class] = ACTIONS(1639), + [sym_SEL] = ACTIONS(1639), + [sym_IMP] = ACTIONS(1639), + [sym_BOOL] = ACTIONS(1639), + [sym_auto] = ACTIONS(1639), + [anon_sym_ATautoreleasepool] = ACTIONS(1637), + [anon_sym_ATsynchronized] = ACTIONS(1637), + [anon_sym_ATtry] = ACTIONS(1637), + [anon_sym_ATcatch] = ACTIONS(1637), + [anon_sym_ATfinally] = ACTIONS(1637), + [anon_sym_ATthrow] = ACTIONS(1637), + [anon_sym_ATselector] = ACTIONS(1637), + [anon_sym_ATencode] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1639), + [sym_YES] = ACTIONS(1639), + [sym_NO] = ACTIONS(1639), + [anon_sym___builtin_available] = ACTIONS(1639), + [anon_sym_ATavailable] = ACTIONS(1637), + [anon_sym_va_arg] = ACTIONS(1639), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -104733,174 +90877,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [449] = { - [sym_identifier] = ACTIONS(1345), - [aux_sym_preproc_include_token1] = ACTIONS(1347), - [aux_sym_preproc_def_token1] = ACTIONS(1347), - [aux_sym_preproc_if_token1] = ACTIONS(1345), - [aux_sym_preproc_if_token2] = ACTIONS(1345), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1345), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1345), - [anon_sym_LPAREN2] = ACTIONS(1347), - [anon_sym_BANG] = ACTIONS(1347), - [anon_sym_TILDE] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1347), - [anon_sym_CARET] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_typedef] = ACTIONS(1345), - [anon_sym_extern] = ACTIONS(1345), - [anon_sym___attribute] = ACTIONS(1345), - [anon_sym___attribute__] = ACTIONS(1345), - [anon_sym___declspec] = ACTIONS(1345), - [anon_sym___cdecl] = ACTIONS(1345), - [anon_sym___clrcall] = ACTIONS(1345), - [anon_sym___stdcall] = ACTIONS(1345), - [anon_sym___fastcall] = ACTIONS(1345), - [anon_sym___thiscall] = ACTIONS(1345), - [anon_sym___vectorcall] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1347), - [anon_sym_LBRACK] = ACTIONS(1347), - [anon_sym_static] = ACTIONS(1345), - [anon_sym_auto] = ACTIONS(1345), - [anon_sym_register] = ACTIONS(1345), - [anon_sym_inline] = ACTIONS(1345), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1345), - [anon_sym_const] = ACTIONS(1345), - [anon_sym_volatile] = ACTIONS(1345), - [anon_sym_restrict] = ACTIONS(1345), - [anon_sym__Atomic] = ACTIONS(1345), - [anon_sym_in] = ACTIONS(1345), - [anon_sym_out] = ACTIONS(1345), - [anon_sym_inout] = ACTIONS(1345), - [anon_sym_bycopy] = ACTIONS(1345), - [anon_sym_byref] = ACTIONS(1345), - [anon_sym_oneway] = ACTIONS(1345), - [anon_sym__Nullable] = ACTIONS(1345), - [anon_sym__Nonnull] = ACTIONS(1345), - [anon_sym__Nullable_result] = ACTIONS(1345), - [anon_sym__Null_unspecified] = ACTIONS(1345), - [anon_sym___autoreleasing] = ACTIONS(1345), - [anon_sym___nullable] = ACTIONS(1345), - [anon_sym___nonnull] = ACTIONS(1345), - [anon_sym___strong] = ACTIONS(1345), - [anon_sym___weak] = ACTIONS(1345), - [anon_sym___bridge] = ACTIONS(1345), - [anon_sym___bridge_transfer] = ACTIONS(1345), - [anon_sym___bridge_retained] = ACTIONS(1345), - [anon_sym___unsafe_unretained] = ACTIONS(1345), - [anon_sym___block] = ACTIONS(1345), - [anon_sym___kindof] = ACTIONS(1345), - [anon_sym___unused] = ACTIONS(1345), - [anon_sym__Complex] = ACTIONS(1345), - [anon_sym___complex] = ACTIONS(1345), - [anon_sym_IBOutlet] = ACTIONS(1345), - [anon_sym_IBInspectable] = ACTIONS(1345), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1345), - [anon_sym_signed] = ACTIONS(1345), - [anon_sym_unsigned] = ACTIONS(1345), - [anon_sym_long] = ACTIONS(1345), - [anon_sym_short] = ACTIONS(1345), - [sym_primitive_type] = ACTIONS(1345), - [anon_sym_enum] = ACTIONS(1345), - [anon_sym_NS_ENUM] = ACTIONS(1345), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1345), - [anon_sym_NS_OPTIONS] = ACTIONS(1345), - [anon_sym_struct] = ACTIONS(1345), - [anon_sym_union] = ACTIONS(1345), - [anon_sym_if] = ACTIONS(1345), - [anon_sym_else] = ACTIONS(1345), - [anon_sym_switch] = ACTIONS(1345), - [anon_sym_case] = ACTIONS(1345), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_while] = ACTIONS(1345), - [anon_sym_do] = ACTIONS(1345), - [anon_sym_for] = ACTIONS(1345), - [anon_sym_return] = ACTIONS(1345), - [anon_sym_break] = ACTIONS(1345), - [anon_sym_continue] = ACTIONS(1345), - [anon_sym_goto] = ACTIONS(1345), - [anon_sym_DASH_DASH] = ACTIONS(1347), - [anon_sym_PLUS_PLUS] = ACTIONS(1347), - [anon_sym_sizeof] = ACTIONS(1345), - [sym_number_literal] = ACTIONS(1347), - [anon_sym_L_SQUOTE] = ACTIONS(1347), - [anon_sym_u_SQUOTE] = ACTIONS(1347), - [anon_sym_U_SQUOTE] = ACTIONS(1347), - [anon_sym_u8_SQUOTE] = ACTIONS(1347), - [anon_sym_SQUOTE] = ACTIONS(1347), - [anon_sym_L_DQUOTE] = ACTIONS(1347), - [anon_sym_u_DQUOTE] = ACTIONS(1347), - [anon_sym_U_DQUOTE] = ACTIONS(1347), - [anon_sym_u8_DQUOTE] = ACTIONS(1347), - [anon_sym_DQUOTE] = ACTIONS(1347), - [sym_true] = ACTIONS(1345), - [sym_false] = ACTIONS(1345), - [sym_null] = ACTIONS(1345), + [370] = { + [sym_identifier] = ACTIONS(1201), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1201), + [aux_sym_preproc_if_token2] = ACTIONS(1201), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1201), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1201), + [anon_sym_LPAREN2] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_CARET] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1201), + [anon_sym_extern] = ACTIONS(1201), + [anon_sym___attribute] = ACTIONS(1201), + [anon_sym___attribute__] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1201), + [anon_sym___cdecl] = ACTIONS(1201), + [anon_sym___clrcall] = ACTIONS(1201), + [anon_sym___stdcall] = ACTIONS(1201), + [anon_sym___fastcall] = ACTIONS(1201), + [anon_sym___thiscall] = ACTIONS(1201), + [anon_sym___vectorcall] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_auto] = ACTIONS(1201), + [anon_sym_register] = ACTIONS(1201), + [anon_sym_inline] = ACTIONS(1201), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_volatile] = ACTIONS(1201), + [anon_sym_restrict] = ACTIONS(1201), + [anon_sym__Atomic] = ACTIONS(1201), + [anon_sym_in] = ACTIONS(1201), + [anon_sym_out] = ACTIONS(1201), + [anon_sym_inout] = ACTIONS(1201), + [anon_sym_bycopy] = ACTIONS(1201), + [anon_sym_byref] = ACTIONS(1201), + [anon_sym_oneway] = ACTIONS(1201), + [anon_sym__Nullable] = ACTIONS(1201), + [anon_sym__Nonnull] = ACTIONS(1201), + [anon_sym__Nullable_result] = ACTIONS(1201), + [anon_sym__Null_unspecified] = ACTIONS(1201), + [anon_sym___autoreleasing] = ACTIONS(1201), + [anon_sym___nullable] = ACTIONS(1201), + [anon_sym___nonnull] = ACTIONS(1201), + [anon_sym___strong] = ACTIONS(1201), + [anon_sym___weak] = ACTIONS(1201), + [anon_sym___bridge] = ACTIONS(1201), + [anon_sym___bridge_transfer] = ACTIONS(1201), + [anon_sym___bridge_retained] = ACTIONS(1201), + [anon_sym___unsafe_unretained] = ACTIONS(1201), + [anon_sym___block] = ACTIONS(1201), + [anon_sym___kindof] = ACTIONS(1201), + [anon_sym___unused] = ACTIONS(1201), + [anon_sym__Complex] = ACTIONS(1201), + [anon_sym___complex] = ACTIONS(1201), + [anon_sym_IBOutlet] = ACTIONS(1201), + [anon_sym_IBInspectable] = ACTIONS(1201), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1201), + [anon_sym_unsigned] = ACTIONS(1201), + [anon_sym_long] = ACTIONS(1201), + [anon_sym_short] = ACTIONS(1201), + [sym_primitive_type] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_else] = ACTIONS(1201), + [anon_sym_switch] = ACTIONS(1201), + [anon_sym_case] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [sym_number_literal] = ACTIONS(1199), + [anon_sym_L_SQUOTE] = ACTIONS(1199), + [anon_sym_u_SQUOTE] = ACTIONS(1199), + [anon_sym_U_SQUOTE] = ACTIONS(1199), + [anon_sym_u8_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_L_DQUOTE] = ACTIONS(1199), + [anon_sym_u_DQUOTE] = ACTIONS(1199), + [anon_sym_U_DQUOTE] = ACTIONS(1199), + [anon_sym_u8_DQUOTE] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1199), + [sym_true] = ACTIONS(1201), + [sym_false] = ACTIONS(1201), + [sym_null] = ACTIONS(1201), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1347), - [anon_sym_ATimport] = ACTIONS(1347), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1345), - [anon_sym_ATcompatibility_alias] = ACTIONS(1347), - [anon_sym_ATprotocol] = ACTIONS(1347), - [anon_sym_ATclass] = ACTIONS(1347), - [anon_sym_ATinterface] = ACTIONS(1347), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1345), - [sym_method_attribute_specifier] = ACTIONS(1345), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1345), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1345), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1345), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1345), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1345), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1345), - [anon_sym_NS_AVAILABLE] = ACTIONS(1345), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1345), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1345), - [anon_sym_API_AVAILABLE] = ACTIONS(1345), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1345), - [anon_sym_API_DEPRECATED] = ACTIONS(1345), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1345), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1345), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1345), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1345), - [anon_sym___deprecated_msg] = ACTIONS(1345), - [anon_sym___deprecated_enum_msg] = ACTIONS(1345), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1345), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1345), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1345), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1345), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1345), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1345), - [anon_sym_ATimplementation] = ACTIONS(1347), - [anon_sym_typeof] = ACTIONS(1345), - [anon_sym___typeof] = ACTIONS(1345), - [anon_sym___typeof__] = ACTIONS(1345), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1345), - [sym_nil] = ACTIONS(1345), - [sym_id] = ACTIONS(1345), - [sym_instancetype] = ACTIONS(1345), - [sym_Class] = ACTIONS(1345), - [sym_SEL] = ACTIONS(1345), - [sym_IMP] = ACTIONS(1345), - [sym_BOOL] = ACTIONS(1345), - [sym_auto] = ACTIONS(1345), - [anon_sym_ATautoreleasepool] = ACTIONS(1347), - [anon_sym_ATsynchronized] = ACTIONS(1347), - [anon_sym_ATtry] = ACTIONS(1347), - [anon_sym_ATcatch] = ACTIONS(1347), - [anon_sym_ATfinally] = ACTIONS(1347), - [anon_sym_ATthrow] = ACTIONS(1347), - [anon_sym_ATselector] = ACTIONS(1347), - [anon_sym_ATencode] = ACTIONS(1347), - [anon_sym_AT] = ACTIONS(1345), - [sym_YES] = ACTIONS(1345), - [sym_NO] = ACTIONS(1345), - [anon_sym___builtin_available] = ACTIONS(1345), - [anon_sym_ATavailable] = ACTIONS(1347), - [anon_sym_va_arg] = ACTIONS(1345), + [anon_sym_POUNDimport] = ACTIONS(1199), + [anon_sym_ATimport] = ACTIONS(1199), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1201), + [anon_sym_ATcompatibility_alias] = ACTIONS(1199), + [anon_sym_ATprotocol] = ACTIONS(1199), + [anon_sym_ATclass] = ACTIONS(1199), + [anon_sym_ATinterface] = ACTIONS(1199), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1201), + [sym_method_attribute_specifier] = ACTIONS(1201), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1201), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1201), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1201), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1201), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1201), + [anon_sym_NS_AVAILABLE] = ACTIONS(1201), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1201), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_API_AVAILABLE] = ACTIONS(1201), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_API_DEPRECATED] = ACTIONS(1201), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1201), + [anon_sym___deprecated_msg] = ACTIONS(1201), + [anon_sym___deprecated_enum_msg] = ACTIONS(1201), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1201), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1201), + [anon_sym_ATimplementation] = ACTIONS(1199), + [anon_sym_NS_ENUM] = ACTIONS(1201), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1201), + [anon_sym_NS_OPTIONS] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1201), + [anon_sym___typeof] = ACTIONS(1201), + [anon_sym___typeof__] = ACTIONS(1201), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_nil] = ACTIONS(1201), + [sym_id] = ACTIONS(1201), + [sym_instancetype] = ACTIONS(1201), + [sym_Class] = ACTIONS(1201), + [sym_SEL] = ACTIONS(1201), + [sym_IMP] = ACTIONS(1201), + [sym_BOOL] = ACTIONS(1201), + [sym_auto] = ACTIONS(1201), + [anon_sym_ATautoreleasepool] = ACTIONS(1199), + [anon_sym_ATsynchronized] = ACTIONS(1199), + [anon_sym_ATtry] = ACTIONS(1199), + [anon_sym_ATcatch] = ACTIONS(1199), + [anon_sym_ATfinally] = ACTIONS(1199), + [anon_sym_ATthrow] = ACTIONS(1199), + [anon_sym_ATselector] = ACTIONS(1199), + [anon_sym_ATencode] = ACTIONS(1199), + [anon_sym_AT] = ACTIONS(1201), + [sym_YES] = ACTIONS(1201), + [sym_NO] = ACTIONS(1201), + [anon_sym___builtin_available] = ACTIONS(1201), + [anon_sym_ATavailable] = ACTIONS(1199), + [anon_sym_va_arg] = ACTIONS(1201), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -104908,174 +91052,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [450] = { - [sym_identifier] = ACTIONS(1341), - [aux_sym_preproc_include_token1] = ACTIONS(1343), - [aux_sym_preproc_def_token1] = ACTIONS(1343), - [aux_sym_preproc_if_token1] = ACTIONS(1341), - [aux_sym_preproc_if_token2] = ACTIONS(1341), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1341), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1341), - [anon_sym_LPAREN2] = ACTIONS(1343), - [anon_sym_BANG] = ACTIONS(1343), - [anon_sym_TILDE] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1341), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1343), - [anon_sym_AMP] = ACTIONS(1343), - [anon_sym_SEMI] = ACTIONS(1343), - [anon_sym_typedef] = ACTIONS(1341), - [anon_sym_extern] = ACTIONS(1341), - [anon_sym___attribute] = ACTIONS(1341), - [anon_sym___attribute__] = ACTIONS(1341), - [anon_sym___declspec] = ACTIONS(1341), - [anon_sym___cdecl] = ACTIONS(1341), - [anon_sym___clrcall] = ACTIONS(1341), - [anon_sym___stdcall] = ACTIONS(1341), - [anon_sym___fastcall] = ACTIONS(1341), - [anon_sym___thiscall] = ACTIONS(1341), - [anon_sym___vectorcall] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1343), - [anon_sym_LBRACK] = ACTIONS(1343), - [anon_sym_static] = ACTIONS(1341), - [anon_sym_auto] = ACTIONS(1341), - [anon_sym_register] = ACTIONS(1341), - [anon_sym_inline] = ACTIONS(1341), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1341), - [anon_sym_const] = ACTIONS(1341), - [anon_sym_volatile] = ACTIONS(1341), - [anon_sym_restrict] = ACTIONS(1341), - [anon_sym__Atomic] = ACTIONS(1341), - [anon_sym_in] = ACTIONS(1341), - [anon_sym_out] = ACTIONS(1341), - [anon_sym_inout] = ACTIONS(1341), - [anon_sym_bycopy] = ACTIONS(1341), - [anon_sym_byref] = ACTIONS(1341), - [anon_sym_oneway] = ACTIONS(1341), - [anon_sym__Nullable] = ACTIONS(1341), - [anon_sym__Nonnull] = ACTIONS(1341), - [anon_sym__Nullable_result] = ACTIONS(1341), - [anon_sym__Null_unspecified] = ACTIONS(1341), - [anon_sym___autoreleasing] = ACTIONS(1341), - [anon_sym___nullable] = ACTIONS(1341), - [anon_sym___nonnull] = ACTIONS(1341), - [anon_sym___strong] = ACTIONS(1341), - [anon_sym___weak] = ACTIONS(1341), - [anon_sym___bridge] = ACTIONS(1341), - [anon_sym___bridge_transfer] = ACTIONS(1341), - [anon_sym___bridge_retained] = ACTIONS(1341), - [anon_sym___unsafe_unretained] = ACTIONS(1341), - [anon_sym___block] = ACTIONS(1341), - [anon_sym___kindof] = ACTIONS(1341), - [anon_sym___unused] = ACTIONS(1341), - [anon_sym__Complex] = ACTIONS(1341), - [anon_sym___complex] = ACTIONS(1341), - [anon_sym_IBOutlet] = ACTIONS(1341), - [anon_sym_IBInspectable] = ACTIONS(1341), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1341), - [anon_sym_signed] = ACTIONS(1341), - [anon_sym_unsigned] = ACTIONS(1341), - [anon_sym_long] = ACTIONS(1341), - [anon_sym_short] = ACTIONS(1341), - [sym_primitive_type] = ACTIONS(1341), - [anon_sym_enum] = ACTIONS(1341), - [anon_sym_NS_ENUM] = ACTIONS(1341), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1341), - [anon_sym_NS_OPTIONS] = ACTIONS(1341), - [anon_sym_struct] = ACTIONS(1341), - [anon_sym_union] = ACTIONS(1341), - [anon_sym_if] = ACTIONS(1341), - [anon_sym_else] = ACTIONS(1341), - [anon_sym_switch] = ACTIONS(1341), - [anon_sym_case] = ACTIONS(1341), - [anon_sym_default] = ACTIONS(1341), - [anon_sym_while] = ACTIONS(1341), - [anon_sym_do] = ACTIONS(1341), - [anon_sym_for] = ACTIONS(1341), - [anon_sym_return] = ACTIONS(1341), - [anon_sym_break] = ACTIONS(1341), - [anon_sym_continue] = ACTIONS(1341), - [anon_sym_goto] = ACTIONS(1341), - [anon_sym_DASH_DASH] = ACTIONS(1343), - [anon_sym_PLUS_PLUS] = ACTIONS(1343), - [anon_sym_sizeof] = ACTIONS(1341), - [sym_number_literal] = ACTIONS(1343), - [anon_sym_L_SQUOTE] = ACTIONS(1343), - [anon_sym_u_SQUOTE] = ACTIONS(1343), - [anon_sym_U_SQUOTE] = ACTIONS(1343), - [anon_sym_u8_SQUOTE] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1343), - [anon_sym_L_DQUOTE] = ACTIONS(1343), - [anon_sym_u_DQUOTE] = ACTIONS(1343), - [anon_sym_U_DQUOTE] = ACTIONS(1343), - [anon_sym_u8_DQUOTE] = ACTIONS(1343), - [anon_sym_DQUOTE] = ACTIONS(1343), - [sym_true] = ACTIONS(1341), - [sym_false] = ACTIONS(1341), - [sym_null] = ACTIONS(1341), + [371] = { + [sym_identifier] = ACTIONS(1639), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [aux_sym_preproc_if_token1] = ACTIONS(1639), + [aux_sym_preproc_if_token2] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_CARET] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1639), + [anon_sym___cdecl] = ACTIONS(1639), + [anon_sym___clrcall] = ACTIONS(1639), + [anon_sym___stdcall] = ACTIONS(1639), + [anon_sym___fastcall] = ACTIONS(1639), + [anon_sym___thiscall] = ACTIONS(1639), + [anon_sym___vectorcall] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_auto] = ACTIONS(1639), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_inline] = ACTIONS(1639), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1639), + [anon_sym_restrict] = ACTIONS(1639), + [anon_sym__Atomic] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [anon_sym_out] = ACTIONS(1639), + [anon_sym_inout] = ACTIONS(1639), + [anon_sym_bycopy] = ACTIONS(1639), + [anon_sym_byref] = ACTIONS(1639), + [anon_sym_oneway] = ACTIONS(1639), + [anon_sym__Nullable] = ACTIONS(1639), + [anon_sym__Nonnull] = ACTIONS(1639), + [anon_sym__Nullable_result] = ACTIONS(1639), + [anon_sym__Null_unspecified] = ACTIONS(1639), + [anon_sym___autoreleasing] = ACTIONS(1639), + [anon_sym___nullable] = ACTIONS(1639), + [anon_sym___nonnull] = ACTIONS(1639), + [anon_sym___strong] = ACTIONS(1639), + [anon_sym___weak] = ACTIONS(1639), + [anon_sym___bridge] = ACTIONS(1639), + [anon_sym___bridge_transfer] = ACTIONS(1639), + [anon_sym___bridge_retained] = ACTIONS(1639), + [anon_sym___unsafe_unretained] = ACTIONS(1639), + [anon_sym___block] = ACTIONS(1639), + [anon_sym___kindof] = ACTIONS(1639), + [anon_sym___unused] = ACTIONS(1639), + [anon_sym__Complex] = ACTIONS(1639), + [anon_sym___complex] = ACTIONS(1639), + [anon_sym_IBOutlet] = ACTIONS(1639), + [anon_sym_IBInspectable] = ACTIONS(1639), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1639), + [anon_sym_unsigned] = ACTIONS(1639), + [anon_sym_long] = ACTIONS(1639), + [anon_sym_short] = ACTIONS(1639), + [sym_primitive_type] = ACTIONS(1639), + [anon_sym_enum] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_switch] = ACTIONS(1639), + [anon_sym_case] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_goto] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1637), + [anon_sym_sizeof] = ACTIONS(1639), + [sym_number_literal] = ACTIONS(1637), + [anon_sym_L_SQUOTE] = ACTIONS(1637), + [anon_sym_u_SQUOTE] = ACTIONS(1637), + [anon_sym_U_SQUOTE] = ACTIONS(1637), + [anon_sym_u8_SQUOTE] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1637), + [anon_sym_L_DQUOTE] = ACTIONS(1637), + [anon_sym_u_DQUOTE] = ACTIONS(1637), + [anon_sym_U_DQUOTE] = ACTIONS(1637), + [anon_sym_u8_DQUOTE] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1343), - [anon_sym_ATimport] = ACTIONS(1343), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1341), - [anon_sym_ATcompatibility_alias] = ACTIONS(1343), - [anon_sym_ATprotocol] = ACTIONS(1343), - [anon_sym_ATclass] = ACTIONS(1343), - [anon_sym_ATinterface] = ACTIONS(1343), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1341), - [sym_method_attribute_specifier] = ACTIONS(1341), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1341), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1341), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1341), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1341), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1341), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1341), - [anon_sym_NS_AVAILABLE] = ACTIONS(1341), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1341), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1341), - [anon_sym_API_AVAILABLE] = ACTIONS(1341), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1341), - [anon_sym_API_DEPRECATED] = ACTIONS(1341), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1341), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1341), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1341), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1341), - [anon_sym___deprecated_msg] = ACTIONS(1341), - [anon_sym___deprecated_enum_msg] = ACTIONS(1341), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1341), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1341), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1341), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1341), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1341), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1341), - [anon_sym_ATimplementation] = ACTIONS(1343), - [anon_sym_typeof] = ACTIONS(1341), - [anon_sym___typeof] = ACTIONS(1341), - [anon_sym___typeof__] = ACTIONS(1341), - [sym_self] = ACTIONS(1341), - [sym_super] = ACTIONS(1341), - [sym_nil] = ACTIONS(1341), - [sym_id] = ACTIONS(1341), - [sym_instancetype] = ACTIONS(1341), - [sym_Class] = ACTIONS(1341), - [sym_SEL] = ACTIONS(1341), - [sym_IMP] = ACTIONS(1341), - [sym_BOOL] = ACTIONS(1341), - [sym_auto] = ACTIONS(1341), - [anon_sym_ATautoreleasepool] = ACTIONS(1343), - [anon_sym_ATsynchronized] = ACTIONS(1343), - [anon_sym_ATtry] = ACTIONS(1343), - [anon_sym_ATcatch] = ACTIONS(1343), - [anon_sym_ATfinally] = ACTIONS(1343), - [anon_sym_ATthrow] = ACTIONS(1343), - [anon_sym_ATselector] = ACTIONS(1343), - [anon_sym_ATencode] = ACTIONS(1343), - [anon_sym_AT] = ACTIONS(1341), - [sym_YES] = ACTIONS(1341), - [sym_NO] = ACTIONS(1341), - [anon_sym___builtin_available] = ACTIONS(1341), - [anon_sym_ATavailable] = ACTIONS(1343), - [anon_sym_va_arg] = ACTIONS(1341), + [anon_sym_POUNDimport] = ACTIONS(1637), + [anon_sym_ATimport] = ACTIONS(1637), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1639), + [anon_sym_ATcompatibility_alias] = ACTIONS(1637), + [anon_sym_ATprotocol] = ACTIONS(1637), + [anon_sym_ATclass] = ACTIONS(1637), + [anon_sym_ATinterface] = ACTIONS(1637), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1639), + [sym_method_attribute_specifier] = ACTIONS(1639), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1639), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE] = ACTIONS(1639), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_API_AVAILABLE] = ACTIONS(1639), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_API_DEPRECATED] = ACTIONS(1639), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1639), + [anon_sym___deprecated_msg] = ACTIONS(1639), + [anon_sym___deprecated_enum_msg] = ACTIONS(1639), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1639), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1639), + [anon_sym_ATimplementation] = ACTIONS(1637), + [anon_sym_NS_ENUM] = ACTIONS(1639), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1639), + [anon_sym_NS_OPTIONS] = ACTIONS(1639), + [anon_sym_typeof] = ACTIONS(1639), + [anon_sym___typeof] = ACTIONS(1639), + [anon_sym___typeof__] = ACTIONS(1639), + [sym_self] = ACTIONS(1639), + [sym_super] = ACTIONS(1639), + [sym_nil] = ACTIONS(1639), + [sym_id] = ACTIONS(1639), + [sym_instancetype] = ACTIONS(1639), + [sym_Class] = ACTIONS(1639), + [sym_SEL] = ACTIONS(1639), + [sym_IMP] = ACTIONS(1639), + [sym_BOOL] = ACTIONS(1639), + [sym_auto] = ACTIONS(1639), + [anon_sym_ATautoreleasepool] = ACTIONS(1637), + [anon_sym_ATsynchronized] = ACTIONS(1637), + [anon_sym_ATtry] = ACTIONS(1637), + [anon_sym_ATcatch] = ACTIONS(1637), + [anon_sym_ATfinally] = ACTIONS(1637), + [anon_sym_ATthrow] = ACTIONS(1637), + [anon_sym_ATselector] = ACTIONS(1637), + [anon_sym_ATencode] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1639), + [sym_YES] = ACTIONS(1639), + [sym_NO] = ACTIONS(1639), + [anon_sym___builtin_available] = ACTIONS(1639), + [anon_sym_ATavailable] = ACTIONS(1637), + [anon_sym_va_arg] = ACTIONS(1639), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -105083,174 +91227,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [451] = { - [sym_identifier] = ACTIONS(1337), - [aux_sym_preproc_include_token1] = ACTIONS(1339), - [aux_sym_preproc_def_token1] = ACTIONS(1339), - [aux_sym_preproc_if_token1] = ACTIONS(1337), - [aux_sym_preproc_if_token2] = ACTIONS(1337), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1337), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1337), - [anon_sym_LPAREN2] = ACTIONS(1339), - [anon_sym_BANG] = ACTIONS(1339), - [anon_sym_TILDE] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1339), - [anon_sym_CARET] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1339), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_typedef] = ACTIONS(1337), - [anon_sym_extern] = ACTIONS(1337), - [anon_sym___attribute] = ACTIONS(1337), - [anon_sym___attribute__] = ACTIONS(1337), - [anon_sym___declspec] = ACTIONS(1337), - [anon_sym___cdecl] = ACTIONS(1337), - [anon_sym___clrcall] = ACTIONS(1337), - [anon_sym___stdcall] = ACTIONS(1337), - [anon_sym___fastcall] = ACTIONS(1337), - [anon_sym___thiscall] = ACTIONS(1337), - [anon_sym___vectorcall] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_LBRACK] = ACTIONS(1339), - [anon_sym_static] = ACTIONS(1337), - [anon_sym_auto] = ACTIONS(1337), - [anon_sym_register] = ACTIONS(1337), - [anon_sym_inline] = ACTIONS(1337), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_volatile] = ACTIONS(1337), - [anon_sym_restrict] = ACTIONS(1337), - [anon_sym__Atomic] = ACTIONS(1337), - [anon_sym_in] = ACTIONS(1337), - [anon_sym_out] = ACTIONS(1337), - [anon_sym_inout] = ACTIONS(1337), - [anon_sym_bycopy] = ACTIONS(1337), - [anon_sym_byref] = ACTIONS(1337), - [anon_sym_oneway] = ACTIONS(1337), - [anon_sym__Nullable] = ACTIONS(1337), - [anon_sym__Nonnull] = ACTIONS(1337), - [anon_sym__Nullable_result] = ACTIONS(1337), - [anon_sym__Null_unspecified] = ACTIONS(1337), - [anon_sym___autoreleasing] = ACTIONS(1337), - [anon_sym___nullable] = ACTIONS(1337), - [anon_sym___nonnull] = ACTIONS(1337), - [anon_sym___strong] = ACTIONS(1337), - [anon_sym___weak] = ACTIONS(1337), - [anon_sym___bridge] = ACTIONS(1337), - [anon_sym___bridge_transfer] = ACTIONS(1337), - [anon_sym___bridge_retained] = ACTIONS(1337), - [anon_sym___unsafe_unretained] = ACTIONS(1337), - [anon_sym___block] = ACTIONS(1337), - [anon_sym___kindof] = ACTIONS(1337), - [anon_sym___unused] = ACTIONS(1337), - [anon_sym__Complex] = ACTIONS(1337), - [anon_sym___complex] = ACTIONS(1337), - [anon_sym_IBOutlet] = ACTIONS(1337), - [anon_sym_IBInspectable] = ACTIONS(1337), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1337), - [anon_sym_signed] = ACTIONS(1337), - [anon_sym_unsigned] = ACTIONS(1337), - [anon_sym_long] = ACTIONS(1337), - [anon_sym_short] = ACTIONS(1337), - [sym_primitive_type] = ACTIONS(1337), - [anon_sym_enum] = ACTIONS(1337), - [anon_sym_NS_ENUM] = ACTIONS(1337), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1337), - [anon_sym_NS_OPTIONS] = ACTIONS(1337), - [anon_sym_struct] = ACTIONS(1337), - [anon_sym_union] = ACTIONS(1337), - [anon_sym_if] = ACTIONS(1337), - [anon_sym_else] = ACTIONS(1337), - [anon_sym_switch] = ACTIONS(1337), - [anon_sym_case] = ACTIONS(1337), - [anon_sym_default] = ACTIONS(1337), - [anon_sym_while] = ACTIONS(1337), - [anon_sym_do] = ACTIONS(1337), - [anon_sym_for] = ACTIONS(1337), - [anon_sym_return] = ACTIONS(1337), - [anon_sym_break] = ACTIONS(1337), - [anon_sym_continue] = ACTIONS(1337), - [anon_sym_goto] = ACTIONS(1337), - [anon_sym_DASH_DASH] = ACTIONS(1339), - [anon_sym_PLUS_PLUS] = ACTIONS(1339), - [anon_sym_sizeof] = ACTIONS(1337), - [sym_number_literal] = ACTIONS(1339), - [anon_sym_L_SQUOTE] = ACTIONS(1339), - [anon_sym_u_SQUOTE] = ACTIONS(1339), - [anon_sym_U_SQUOTE] = ACTIONS(1339), - [anon_sym_u8_SQUOTE] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(1339), - [anon_sym_L_DQUOTE] = ACTIONS(1339), - [anon_sym_u_DQUOTE] = ACTIONS(1339), - [anon_sym_U_DQUOTE] = ACTIONS(1339), - [anon_sym_u8_DQUOTE] = ACTIONS(1339), - [anon_sym_DQUOTE] = ACTIONS(1339), - [sym_true] = ACTIONS(1337), - [sym_false] = ACTIONS(1337), - [sym_null] = ACTIONS(1337), + [372] = { + [sym_identifier] = ACTIONS(1639), + [aux_sym_preproc_include_token1] = ACTIONS(1637), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [aux_sym_preproc_if_token1] = ACTIONS(1639), + [aux_sym_preproc_if_token2] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1637), + [anon_sym_TILDE] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_CARET] = ACTIONS(1637), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1639), + [anon_sym___cdecl] = ACTIONS(1639), + [anon_sym___clrcall] = ACTIONS(1639), + [anon_sym___stdcall] = ACTIONS(1639), + [anon_sym___fastcall] = ACTIONS(1639), + [anon_sym___thiscall] = ACTIONS(1639), + [anon_sym___vectorcall] = ACTIONS(1639), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_auto] = ACTIONS(1639), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_inline] = ACTIONS(1639), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1639), + [anon_sym_restrict] = ACTIONS(1639), + [anon_sym__Atomic] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [anon_sym_out] = ACTIONS(1639), + [anon_sym_inout] = ACTIONS(1639), + [anon_sym_bycopy] = ACTIONS(1639), + [anon_sym_byref] = ACTIONS(1639), + [anon_sym_oneway] = ACTIONS(1639), + [anon_sym__Nullable] = ACTIONS(1639), + [anon_sym__Nonnull] = ACTIONS(1639), + [anon_sym__Nullable_result] = ACTIONS(1639), + [anon_sym__Null_unspecified] = ACTIONS(1639), + [anon_sym___autoreleasing] = ACTIONS(1639), + [anon_sym___nullable] = ACTIONS(1639), + [anon_sym___nonnull] = ACTIONS(1639), + [anon_sym___strong] = ACTIONS(1639), + [anon_sym___weak] = ACTIONS(1639), + [anon_sym___bridge] = ACTIONS(1639), + [anon_sym___bridge_transfer] = ACTIONS(1639), + [anon_sym___bridge_retained] = ACTIONS(1639), + [anon_sym___unsafe_unretained] = ACTIONS(1639), + [anon_sym___block] = ACTIONS(1639), + [anon_sym___kindof] = ACTIONS(1639), + [anon_sym___unused] = ACTIONS(1639), + [anon_sym__Complex] = ACTIONS(1639), + [anon_sym___complex] = ACTIONS(1639), + [anon_sym_IBOutlet] = ACTIONS(1639), + [anon_sym_IBInspectable] = ACTIONS(1639), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1639), + [anon_sym_unsigned] = ACTIONS(1639), + [anon_sym_long] = ACTIONS(1639), + [anon_sym_short] = ACTIONS(1639), + [sym_primitive_type] = ACTIONS(1639), + [anon_sym_enum] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1639), + [anon_sym_else] = ACTIONS(1639), + [anon_sym_switch] = ACTIONS(1639), + [anon_sym_case] = ACTIONS(1639), + [anon_sym_default] = ACTIONS(1639), + [anon_sym_while] = ACTIONS(1639), + [anon_sym_do] = ACTIONS(1639), + [anon_sym_for] = ACTIONS(1639), + [anon_sym_return] = ACTIONS(1639), + [anon_sym_break] = ACTIONS(1639), + [anon_sym_continue] = ACTIONS(1639), + [anon_sym_goto] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1637), + [anon_sym_PLUS_PLUS] = ACTIONS(1637), + [anon_sym_sizeof] = ACTIONS(1639), + [sym_number_literal] = ACTIONS(1637), + [anon_sym_L_SQUOTE] = ACTIONS(1637), + [anon_sym_u_SQUOTE] = ACTIONS(1637), + [anon_sym_U_SQUOTE] = ACTIONS(1637), + [anon_sym_u8_SQUOTE] = ACTIONS(1637), + [anon_sym_SQUOTE] = ACTIONS(1637), + [anon_sym_L_DQUOTE] = ACTIONS(1637), + [anon_sym_u_DQUOTE] = ACTIONS(1637), + [anon_sym_U_DQUOTE] = ACTIONS(1637), + [anon_sym_u8_DQUOTE] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1637), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [sym_null] = ACTIONS(1639), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1339), - [anon_sym_ATimport] = ACTIONS(1339), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1337), - [anon_sym_ATcompatibility_alias] = ACTIONS(1339), - [anon_sym_ATprotocol] = ACTIONS(1339), - [anon_sym_ATclass] = ACTIONS(1339), - [anon_sym_ATinterface] = ACTIONS(1339), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1337), - [sym_method_attribute_specifier] = ACTIONS(1337), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1337), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1337), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1337), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1337), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1337), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1337), - [anon_sym_NS_AVAILABLE] = ACTIONS(1337), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1337), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1337), - [anon_sym_API_AVAILABLE] = ACTIONS(1337), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1337), - [anon_sym_API_DEPRECATED] = ACTIONS(1337), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1337), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1337), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1337), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1337), - [anon_sym___deprecated_msg] = ACTIONS(1337), - [anon_sym___deprecated_enum_msg] = ACTIONS(1337), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1337), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1337), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1337), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1337), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1337), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1337), - [anon_sym_ATimplementation] = ACTIONS(1339), - [anon_sym_typeof] = ACTIONS(1337), - [anon_sym___typeof] = ACTIONS(1337), - [anon_sym___typeof__] = ACTIONS(1337), - [sym_self] = ACTIONS(1337), - [sym_super] = ACTIONS(1337), - [sym_nil] = ACTIONS(1337), - [sym_id] = ACTIONS(1337), - [sym_instancetype] = ACTIONS(1337), - [sym_Class] = ACTIONS(1337), - [sym_SEL] = ACTIONS(1337), - [sym_IMP] = ACTIONS(1337), - [sym_BOOL] = ACTIONS(1337), - [sym_auto] = ACTIONS(1337), - [anon_sym_ATautoreleasepool] = ACTIONS(1339), - [anon_sym_ATsynchronized] = ACTIONS(1339), - [anon_sym_ATtry] = ACTIONS(1339), - [anon_sym_ATcatch] = ACTIONS(1339), - [anon_sym_ATfinally] = ACTIONS(1339), - [anon_sym_ATthrow] = ACTIONS(1339), - [anon_sym_ATselector] = ACTIONS(1339), - [anon_sym_ATencode] = ACTIONS(1339), - [anon_sym_AT] = ACTIONS(1337), - [sym_YES] = ACTIONS(1337), - [sym_NO] = ACTIONS(1337), - [anon_sym___builtin_available] = ACTIONS(1337), - [anon_sym_ATavailable] = ACTIONS(1339), - [anon_sym_va_arg] = ACTIONS(1337), + [anon_sym_POUNDimport] = ACTIONS(1637), + [anon_sym_ATimport] = ACTIONS(1637), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1639), + [anon_sym_ATcompatibility_alias] = ACTIONS(1637), + [anon_sym_ATprotocol] = ACTIONS(1637), + [anon_sym_ATclass] = ACTIONS(1637), + [anon_sym_ATinterface] = ACTIONS(1637), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1639), + [sym_method_attribute_specifier] = ACTIONS(1639), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1639), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE] = ACTIONS(1639), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_API_AVAILABLE] = ACTIONS(1639), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_API_DEPRECATED] = ACTIONS(1639), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1639), + [anon_sym___deprecated_msg] = ACTIONS(1639), + [anon_sym___deprecated_enum_msg] = ACTIONS(1639), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1639), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1639), + [anon_sym_ATimplementation] = ACTIONS(1637), + [anon_sym_NS_ENUM] = ACTIONS(1639), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1639), + [anon_sym_NS_OPTIONS] = ACTIONS(1639), + [anon_sym_typeof] = ACTIONS(1639), + [anon_sym___typeof] = ACTIONS(1639), + [anon_sym___typeof__] = ACTIONS(1639), + [sym_self] = ACTIONS(1639), + [sym_super] = ACTIONS(1639), + [sym_nil] = ACTIONS(1639), + [sym_id] = ACTIONS(1639), + [sym_instancetype] = ACTIONS(1639), + [sym_Class] = ACTIONS(1639), + [sym_SEL] = ACTIONS(1639), + [sym_IMP] = ACTIONS(1639), + [sym_BOOL] = ACTIONS(1639), + [sym_auto] = ACTIONS(1639), + [anon_sym_ATautoreleasepool] = ACTIONS(1637), + [anon_sym_ATsynchronized] = ACTIONS(1637), + [anon_sym_ATtry] = ACTIONS(1637), + [anon_sym_ATcatch] = ACTIONS(1637), + [anon_sym_ATfinally] = ACTIONS(1637), + [anon_sym_ATthrow] = ACTIONS(1637), + [anon_sym_ATselector] = ACTIONS(1637), + [anon_sym_ATencode] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1639), + [sym_YES] = ACTIONS(1639), + [sym_NO] = ACTIONS(1639), + [anon_sym___builtin_available] = ACTIONS(1639), + [anon_sym_ATavailable] = ACTIONS(1637), + [anon_sym_va_arg] = ACTIONS(1639), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -105258,174 +91402,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [452] = { - [sym_identifier] = ACTIONS(1333), - [aux_sym_preproc_include_token1] = ACTIONS(1335), - [aux_sym_preproc_def_token1] = ACTIONS(1335), - [aux_sym_preproc_if_token1] = ACTIONS(1333), - [aux_sym_preproc_if_token2] = ACTIONS(1333), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1333), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1333), - [anon_sym_LPAREN2] = ACTIONS(1335), - [anon_sym_BANG] = ACTIONS(1335), - [anon_sym_TILDE] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1333), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_typedef] = ACTIONS(1333), - [anon_sym_extern] = ACTIONS(1333), - [anon_sym___attribute] = ACTIONS(1333), - [anon_sym___attribute__] = ACTIONS(1333), - [anon_sym___declspec] = ACTIONS(1333), - [anon_sym___cdecl] = ACTIONS(1333), - [anon_sym___clrcall] = ACTIONS(1333), - [anon_sym___stdcall] = ACTIONS(1333), - [anon_sym___fastcall] = ACTIONS(1333), - [anon_sym___thiscall] = ACTIONS(1333), - [anon_sym___vectorcall] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(1335), - [anon_sym_static] = ACTIONS(1333), - [anon_sym_auto] = ACTIONS(1333), - [anon_sym_register] = ACTIONS(1333), - [anon_sym_inline] = ACTIONS(1333), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1333), - [anon_sym_const] = ACTIONS(1333), - [anon_sym_volatile] = ACTIONS(1333), - [anon_sym_restrict] = ACTIONS(1333), - [anon_sym__Atomic] = ACTIONS(1333), - [anon_sym_in] = ACTIONS(1333), - [anon_sym_out] = ACTIONS(1333), - [anon_sym_inout] = ACTIONS(1333), - [anon_sym_bycopy] = ACTIONS(1333), - [anon_sym_byref] = ACTIONS(1333), - [anon_sym_oneway] = ACTIONS(1333), - [anon_sym__Nullable] = ACTIONS(1333), - [anon_sym__Nonnull] = ACTIONS(1333), - [anon_sym__Nullable_result] = ACTIONS(1333), - [anon_sym__Null_unspecified] = ACTIONS(1333), - [anon_sym___autoreleasing] = ACTIONS(1333), - [anon_sym___nullable] = ACTIONS(1333), - [anon_sym___nonnull] = ACTIONS(1333), - [anon_sym___strong] = ACTIONS(1333), - [anon_sym___weak] = ACTIONS(1333), - [anon_sym___bridge] = ACTIONS(1333), - [anon_sym___bridge_transfer] = ACTIONS(1333), - [anon_sym___bridge_retained] = ACTIONS(1333), - [anon_sym___unsafe_unretained] = ACTIONS(1333), - [anon_sym___block] = ACTIONS(1333), - [anon_sym___kindof] = ACTIONS(1333), - [anon_sym___unused] = ACTIONS(1333), - [anon_sym__Complex] = ACTIONS(1333), - [anon_sym___complex] = ACTIONS(1333), - [anon_sym_IBOutlet] = ACTIONS(1333), - [anon_sym_IBInspectable] = ACTIONS(1333), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1333), - [anon_sym_signed] = ACTIONS(1333), - [anon_sym_unsigned] = ACTIONS(1333), - [anon_sym_long] = ACTIONS(1333), - [anon_sym_short] = ACTIONS(1333), - [sym_primitive_type] = ACTIONS(1333), - [anon_sym_enum] = ACTIONS(1333), - [anon_sym_NS_ENUM] = ACTIONS(1333), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1333), - [anon_sym_NS_OPTIONS] = ACTIONS(1333), - [anon_sym_struct] = ACTIONS(1333), - [anon_sym_union] = ACTIONS(1333), - [anon_sym_if] = ACTIONS(1333), - [anon_sym_else] = ACTIONS(1333), - [anon_sym_switch] = ACTIONS(1333), - [anon_sym_case] = ACTIONS(1333), - [anon_sym_default] = ACTIONS(1333), - [anon_sym_while] = ACTIONS(1333), - [anon_sym_do] = ACTIONS(1333), - [anon_sym_for] = ACTIONS(1333), - [anon_sym_return] = ACTIONS(1333), - [anon_sym_break] = ACTIONS(1333), - [anon_sym_continue] = ACTIONS(1333), - [anon_sym_goto] = ACTIONS(1333), - [anon_sym_DASH_DASH] = ACTIONS(1335), - [anon_sym_PLUS_PLUS] = ACTIONS(1335), - [anon_sym_sizeof] = ACTIONS(1333), - [sym_number_literal] = ACTIONS(1335), - [anon_sym_L_SQUOTE] = ACTIONS(1335), - [anon_sym_u_SQUOTE] = ACTIONS(1335), - [anon_sym_U_SQUOTE] = ACTIONS(1335), - [anon_sym_u8_SQUOTE] = ACTIONS(1335), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_L_DQUOTE] = ACTIONS(1335), - [anon_sym_u_DQUOTE] = ACTIONS(1335), - [anon_sym_U_DQUOTE] = ACTIONS(1335), - [anon_sym_u8_DQUOTE] = ACTIONS(1335), - [anon_sym_DQUOTE] = ACTIONS(1335), - [sym_true] = ACTIONS(1333), - [sym_false] = ACTIONS(1333), - [sym_null] = ACTIONS(1333), + [373] = { + [sym_identifier] = ACTIONS(1201), + [aux_sym_preproc_include_token1] = ACTIONS(1199), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [aux_sym_preproc_if_token1] = ACTIONS(1201), + [aux_sym_preproc_if_token2] = ACTIONS(1201), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1201), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1201), + [anon_sym_LPAREN2] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_CARET] = ACTIONS(1199), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1201), + [anon_sym_extern] = ACTIONS(1201), + [anon_sym___attribute] = ACTIONS(1201), + [anon_sym___attribute__] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1201), + [anon_sym___cdecl] = ACTIONS(1201), + [anon_sym___clrcall] = ACTIONS(1201), + [anon_sym___stdcall] = ACTIONS(1201), + [anon_sym___fastcall] = ACTIONS(1201), + [anon_sym___thiscall] = ACTIONS(1201), + [anon_sym___vectorcall] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_auto] = ACTIONS(1201), + [anon_sym_register] = ACTIONS(1201), + [anon_sym_inline] = ACTIONS(1201), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_volatile] = ACTIONS(1201), + [anon_sym_restrict] = ACTIONS(1201), + [anon_sym__Atomic] = ACTIONS(1201), + [anon_sym_in] = ACTIONS(1201), + [anon_sym_out] = ACTIONS(1201), + [anon_sym_inout] = ACTIONS(1201), + [anon_sym_bycopy] = ACTIONS(1201), + [anon_sym_byref] = ACTIONS(1201), + [anon_sym_oneway] = ACTIONS(1201), + [anon_sym__Nullable] = ACTIONS(1201), + [anon_sym__Nonnull] = ACTIONS(1201), + [anon_sym__Nullable_result] = ACTIONS(1201), + [anon_sym__Null_unspecified] = ACTIONS(1201), + [anon_sym___autoreleasing] = ACTIONS(1201), + [anon_sym___nullable] = ACTIONS(1201), + [anon_sym___nonnull] = ACTIONS(1201), + [anon_sym___strong] = ACTIONS(1201), + [anon_sym___weak] = ACTIONS(1201), + [anon_sym___bridge] = ACTIONS(1201), + [anon_sym___bridge_transfer] = ACTIONS(1201), + [anon_sym___bridge_retained] = ACTIONS(1201), + [anon_sym___unsafe_unretained] = ACTIONS(1201), + [anon_sym___block] = ACTIONS(1201), + [anon_sym___kindof] = ACTIONS(1201), + [anon_sym___unused] = ACTIONS(1201), + [anon_sym__Complex] = ACTIONS(1201), + [anon_sym___complex] = ACTIONS(1201), + [anon_sym_IBOutlet] = ACTIONS(1201), + [anon_sym_IBInspectable] = ACTIONS(1201), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1201), + [anon_sym_unsigned] = ACTIONS(1201), + [anon_sym_long] = ACTIONS(1201), + [anon_sym_short] = ACTIONS(1201), + [sym_primitive_type] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [anon_sym_if] = ACTIONS(1201), + [anon_sym_else] = ACTIONS(1201), + [anon_sym_switch] = ACTIONS(1201), + [anon_sym_case] = ACTIONS(1201), + [anon_sym_default] = ACTIONS(1201), + [anon_sym_while] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1201), + [anon_sym_for] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_break] = ACTIONS(1201), + [anon_sym_continue] = ACTIONS(1201), + [anon_sym_goto] = ACTIONS(1201), + [anon_sym_DASH_DASH] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(1199), + [anon_sym_sizeof] = ACTIONS(1201), + [sym_number_literal] = ACTIONS(1199), + [anon_sym_L_SQUOTE] = ACTIONS(1199), + [anon_sym_u_SQUOTE] = ACTIONS(1199), + [anon_sym_U_SQUOTE] = ACTIONS(1199), + [anon_sym_u8_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_L_DQUOTE] = ACTIONS(1199), + [anon_sym_u_DQUOTE] = ACTIONS(1199), + [anon_sym_U_DQUOTE] = ACTIONS(1199), + [anon_sym_u8_DQUOTE] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1199), + [sym_true] = ACTIONS(1201), + [sym_false] = ACTIONS(1201), + [sym_null] = ACTIONS(1201), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1335), - [anon_sym_ATimport] = ACTIONS(1335), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1333), - [anon_sym_ATcompatibility_alias] = ACTIONS(1335), - [anon_sym_ATprotocol] = ACTIONS(1335), - [anon_sym_ATclass] = ACTIONS(1335), - [anon_sym_ATinterface] = ACTIONS(1335), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1333), - [sym_method_attribute_specifier] = ACTIONS(1333), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1333), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1333), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1333), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1333), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1333), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1333), - [anon_sym_NS_AVAILABLE] = ACTIONS(1333), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1333), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1333), - [anon_sym_API_AVAILABLE] = ACTIONS(1333), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1333), - [anon_sym_API_DEPRECATED] = ACTIONS(1333), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1333), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1333), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1333), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1333), - [anon_sym___deprecated_msg] = ACTIONS(1333), - [anon_sym___deprecated_enum_msg] = ACTIONS(1333), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1333), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1333), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1333), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1333), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1333), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1333), - [anon_sym_ATimplementation] = ACTIONS(1335), - [anon_sym_typeof] = ACTIONS(1333), - [anon_sym___typeof] = ACTIONS(1333), - [anon_sym___typeof__] = ACTIONS(1333), - [sym_self] = ACTIONS(1333), - [sym_super] = ACTIONS(1333), - [sym_nil] = ACTIONS(1333), - [sym_id] = ACTIONS(1333), - [sym_instancetype] = ACTIONS(1333), - [sym_Class] = ACTIONS(1333), - [sym_SEL] = ACTIONS(1333), - [sym_IMP] = ACTIONS(1333), - [sym_BOOL] = ACTIONS(1333), - [sym_auto] = ACTIONS(1333), - [anon_sym_ATautoreleasepool] = ACTIONS(1335), - [anon_sym_ATsynchronized] = ACTIONS(1335), - [anon_sym_ATtry] = ACTIONS(1335), - [anon_sym_ATcatch] = ACTIONS(1335), - [anon_sym_ATfinally] = ACTIONS(1335), - [anon_sym_ATthrow] = ACTIONS(1335), - [anon_sym_ATselector] = ACTIONS(1335), - [anon_sym_ATencode] = ACTIONS(1335), - [anon_sym_AT] = ACTIONS(1333), - [sym_YES] = ACTIONS(1333), - [sym_NO] = ACTIONS(1333), - [anon_sym___builtin_available] = ACTIONS(1333), - [anon_sym_ATavailable] = ACTIONS(1335), - [anon_sym_va_arg] = ACTIONS(1333), + [anon_sym_POUNDimport] = ACTIONS(1199), + [anon_sym_ATimport] = ACTIONS(1199), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1201), + [anon_sym_ATcompatibility_alias] = ACTIONS(1199), + [anon_sym_ATprotocol] = ACTIONS(1199), + [anon_sym_ATclass] = ACTIONS(1199), + [anon_sym_ATinterface] = ACTIONS(1199), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1201), + [sym_method_attribute_specifier] = ACTIONS(1201), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1201), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1201), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1201), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1201), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1201), + [anon_sym_NS_AVAILABLE] = ACTIONS(1201), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1201), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_API_AVAILABLE] = ACTIONS(1201), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_API_DEPRECATED] = ACTIONS(1201), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1201), + [anon_sym___deprecated_msg] = ACTIONS(1201), + [anon_sym___deprecated_enum_msg] = ACTIONS(1201), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1201), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1201), + [anon_sym_ATimplementation] = ACTIONS(1199), + [anon_sym_NS_ENUM] = ACTIONS(1201), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1201), + [anon_sym_NS_OPTIONS] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1201), + [anon_sym___typeof] = ACTIONS(1201), + [anon_sym___typeof__] = ACTIONS(1201), + [sym_self] = ACTIONS(1201), + [sym_super] = ACTIONS(1201), + [sym_nil] = ACTIONS(1201), + [sym_id] = ACTIONS(1201), + [sym_instancetype] = ACTIONS(1201), + [sym_Class] = ACTIONS(1201), + [sym_SEL] = ACTIONS(1201), + [sym_IMP] = ACTIONS(1201), + [sym_BOOL] = ACTIONS(1201), + [sym_auto] = ACTIONS(1201), + [anon_sym_ATautoreleasepool] = ACTIONS(1199), + [anon_sym_ATsynchronized] = ACTIONS(1199), + [anon_sym_ATtry] = ACTIONS(1199), + [anon_sym_ATcatch] = ACTIONS(1199), + [anon_sym_ATfinally] = ACTIONS(1199), + [anon_sym_ATthrow] = ACTIONS(1199), + [anon_sym_ATselector] = ACTIONS(1199), + [anon_sym_ATencode] = ACTIONS(1199), + [anon_sym_AT] = ACTIONS(1201), + [sym_YES] = ACTIONS(1201), + [sym_NO] = ACTIONS(1201), + [anon_sym___builtin_available] = ACTIONS(1201), + [anon_sym_ATavailable] = ACTIONS(1199), + [anon_sym_va_arg] = ACTIONS(1201), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -105433,4907 +91577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [453] = { - [sym_identifier] = ACTIONS(1329), - [aux_sym_preproc_include_token1] = ACTIONS(1331), - [aux_sym_preproc_def_token1] = ACTIONS(1331), - [aux_sym_preproc_if_token1] = ACTIONS(1329), - [aux_sym_preproc_if_token2] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), - [anon_sym_LPAREN2] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_typedef] = ACTIONS(1329), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym___attribute] = ACTIONS(1329), - [anon_sym___attribute__] = ACTIONS(1329), - [anon_sym___declspec] = ACTIONS(1329), - [anon_sym___cdecl] = ACTIONS(1329), - [anon_sym___clrcall] = ACTIONS(1329), - [anon_sym___stdcall] = ACTIONS(1329), - [anon_sym___fastcall] = ACTIONS(1329), - [anon_sym___thiscall] = ACTIONS(1329), - [anon_sym___vectorcall] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_static] = ACTIONS(1329), - [anon_sym_auto] = ACTIONS(1329), - [anon_sym_register] = ACTIONS(1329), - [anon_sym_inline] = ACTIONS(1329), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1329), - [anon_sym_const] = ACTIONS(1329), - [anon_sym_volatile] = ACTIONS(1329), - [anon_sym_restrict] = ACTIONS(1329), - [anon_sym__Atomic] = ACTIONS(1329), - [anon_sym_in] = ACTIONS(1329), - [anon_sym_out] = ACTIONS(1329), - [anon_sym_inout] = ACTIONS(1329), - [anon_sym_bycopy] = ACTIONS(1329), - [anon_sym_byref] = ACTIONS(1329), - [anon_sym_oneway] = ACTIONS(1329), - [anon_sym__Nullable] = ACTIONS(1329), - [anon_sym__Nonnull] = ACTIONS(1329), - [anon_sym__Nullable_result] = ACTIONS(1329), - [anon_sym__Null_unspecified] = ACTIONS(1329), - [anon_sym___autoreleasing] = ACTIONS(1329), - [anon_sym___nullable] = ACTIONS(1329), - [anon_sym___nonnull] = ACTIONS(1329), - [anon_sym___strong] = ACTIONS(1329), - [anon_sym___weak] = ACTIONS(1329), - [anon_sym___bridge] = ACTIONS(1329), - [anon_sym___bridge_transfer] = ACTIONS(1329), - [anon_sym___bridge_retained] = ACTIONS(1329), - [anon_sym___unsafe_unretained] = ACTIONS(1329), - [anon_sym___block] = ACTIONS(1329), - [anon_sym___kindof] = ACTIONS(1329), - [anon_sym___unused] = ACTIONS(1329), - [anon_sym__Complex] = ACTIONS(1329), - [anon_sym___complex] = ACTIONS(1329), - [anon_sym_IBOutlet] = ACTIONS(1329), - [anon_sym_IBInspectable] = ACTIONS(1329), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1329), - [anon_sym_signed] = ACTIONS(1329), - [anon_sym_unsigned] = ACTIONS(1329), - [anon_sym_long] = ACTIONS(1329), - [anon_sym_short] = ACTIONS(1329), - [sym_primitive_type] = ACTIONS(1329), - [anon_sym_enum] = ACTIONS(1329), - [anon_sym_NS_ENUM] = ACTIONS(1329), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1329), - [anon_sym_NS_OPTIONS] = ACTIONS(1329), - [anon_sym_struct] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1329), - [anon_sym_if] = ACTIONS(1329), - [anon_sym_else] = ACTIONS(1329), - [anon_sym_switch] = ACTIONS(1329), - [anon_sym_case] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1329), - [anon_sym_while] = ACTIONS(1329), - [anon_sym_do] = ACTIONS(1329), - [anon_sym_for] = ACTIONS(1329), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_break] = ACTIONS(1329), - [anon_sym_continue] = ACTIONS(1329), - [anon_sym_goto] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1331), - [anon_sym_PLUS_PLUS] = ACTIONS(1331), - [anon_sym_sizeof] = ACTIONS(1329), - [sym_number_literal] = ACTIONS(1331), - [anon_sym_L_SQUOTE] = ACTIONS(1331), - [anon_sym_u_SQUOTE] = ACTIONS(1331), - [anon_sym_U_SQUOTE] = ACTIONS(1331), - [anon_sym_u8_SQUOTE] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_L_DQUOTE] = ACTIONS(1331), - [anon_sym_u_DQUOTE] = ACTIONS(1331), - [anon_sym_U_DQUOTE] = ACTIONS(1331), - [anon_sym_u8_DQUOTE] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [sym_true] = ACTIONS(1329), - [sym_false] = ACTIONS(1329), - [sym_null] = ACTIONS(1329), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1331), - [anon_sym_ATimport] = ACTIONS(1331), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1329), - [anon_sym_ATcompatibility_alias] = ACTIONS(1331), - [anon_sym_ATprotocol] = ACTIONS(1331), - [anon_sym_ATclass] = ACTIONS(1331), - [anon_sym_ATinterface] = ACTIONS(1331), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1329), - [sym_method_attribute_specifier] = ACTIONS(1329), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1329), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1329), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1329), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1329), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1329), - [anon_sym_NS_AVAILABLE] = ACTIONS(1329), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1329), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_API_AVAILABLE] = ACTIONS(1329), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_API_DEPRECATED] = ACTIONS(1329), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1329), - [anon_sym___deprecated_msg] = ACTIONS(1329), - [anon_sym___deprecated_enum_msg] = ACTIONS(1329), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1329), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1329), - [anon_sym_ATimplementation] = ACTIONS(1331), - [anon_sym_typeof] = ACTIONS(1329), - [anon_sym___typeof] = ACTIONS(1329), - [anon_sym___typeof__] = ACTIONS(1329), - [sym_self] = ACTIONS(1329), - [sym_super] = ACTIONS(1329), - [sym_nil] = ACTIONS(1329), - [sym_id] = ACTIONS(1329), - [sym_instancetype] = ACTIONS(1329), - [sym_Class] = ACTIONS(1329), - [sym_SEL] = ACTIONS(1329), - [sym_IMP] = ACTIONS(1329), - [sym_BOOL] = ACTIONS(1329), - [sym_auto] = ACTIONS(1329), - [anon_sym_ATautoreleasepool] = ACTIONS(1331), - [anon_sym_ATsynchronized] = ACTIONS(1331), - [anon_sym_ATtry] = ACTIONS(1331), - [anon_sym_ATcatch] = ACTIONS(1331), - [anon_sym_ATfinally] = ACTIONS(1331), - [anon_sym_ATthrow] = ACTIONS(1331), - [anon_sym_ATselector] = ACTIONS(1331), - [anon_sym_ATencode] = ACTIONS(1331), - [anon_sym_AT] = ACTIONS(1329), - [sym_YES] = ACTIONS(1329), - [sym_NO] = ACTIONS(1329), - [anon_sym___builtin_available] = ACTIONS(1329), - [anon_sym_ATavailable] = ACTIONS(1331), - [anon_sym_va_arg] = ACTIONS(1329), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [454] = { - [sym_identifier] = ACTIONS(1329), - [aux_sym_preproc_include_token1] = ACTIONS(1331), - [aux_sym_preproc_def_token1] = ACTIONS(1331), - [aux_sym_preproc_if_token1] = ACTIONS(1329), - [aux_sym_preproc_if_token2] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), - [anon_sym_LPAREN2] = ACTIONS(1331), - [anon_sym_BANG] = ACTIONS(1331), - [anon_sym_TILDE] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1331), - [anon_sym_typedef] = ACTIONS(1329), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym___attribute] = ACTIONS(1329), - [anon_sym___attribute__] = ACTIONS(1329), - [anon_sym___declspec] = ACTIONS(1329), - [anon_sym___cdecl] = ACTIONS(1329), - [anon_sym___clrcall] = ACTIONS(1329), - [anon_sym___stdcall] = ACTIONS(1329), - [anon_sym___fastcall] = ACTIONS(1329), - [anon_sym___thiscall] = ACTIONS(1329), - [anon_sym___vectorcall] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1331), - [anon_sym_static] = ACTIONS(1329), - [anon_sym_auto] = ACTIONS(1329), - [anon_sym_register] = ACTIONS(1329), - [anon_sym_inline] = ACTIONS(1329), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1329), - [anon_sym_const] = ACTIONS(1329), - [anon_sym_volatile] = ACTIONS(1329), - [anon_sym_restrict] = ACTIONS(1329), - [anon_sym__Atomic] = ACTIONS(1329), - [anon_sym_in] = ACTIONS(1329), - [anon_sym_out] = ACTIONS(1329), - [anon_sym_inout] = ACTIONS(1329), - [anon_sym_bycopy] = ACTIONS(1329), - [anon_sym_byref] = ACTIONS(1329), - [anon_sym_oneway] = ACTIONS(1329), - [anon_sym__Nullable] = ACTIONS(1329), - [anon_sym__Nonnull] = ACTIONS(1329), - [anon_sym__Nullable_result] = ACTIONS(1329), - [anon_sym__Null_unspecified] = ACTIONS(1329), - [anon_sym___autoreleasing] = ACTIONS(1329), - [anon_sym___nullable] = ACTIONS(1329), - [anon_sym___nonnull] = ACTIONS(1329), - [anon_sym___strong] = ACTIONS(1329), - [anon_sym___weak] = ACTIONS(1329), - [anon_sym___bridge] = ACTIONS(1329), - [anon_sym___bridge_transfer] = ACTIONS(1329), - [anon_sym___bridge_retained] = ACTIONS(1329), - [anon_sym___unsafe_unretained] = ACTIONS(1329), - [anon_sym___block] = ACTIONS(1329), - [anon_sym___kindof] = ACTIONS(1329), - [anon_sym___unused] = ACTIONS(1329), - [anon_sym__Complex] = ACTIONS(1329), - [anon_sym___complex] = ACTIONS(1329), - [anon_sym_IBOutlet] = ACTIONS(1329), - [anon_sym_IBInspectable] = ACTIONS(1329), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1329), - [anon_sym_signed] = ACTIONS(1329), - [anon_sym_unsigned] = ACTIONS(1329), - [anon_sym_long] = ACTIONS(1329), - [anon_sym_short] = ACTIONS(1329), - [sym_primitive_type] = ACTIONS(1329), - [anon_sym_enum] = ACTIONS(1329), - [anon_sym_NS_ENUM] = ACTIONS(1329), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1329), - [anon_sym_NS_OPTIONS] = ACTIONS(1329), - [anon_sym_struct] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1329), - [anon_sym_if] = ACTIONS(1329), - [anon_sym_else] = ACTIONS(1329), - [anon_sym_switch] = ACTIONS(1329), - [anon_sym_case] = ACTIONS(1329), - [anon_sym_default] = ACTIONS(1329), - [anon_sym_while] = ACTIONS(1329), - [anon_sym_do] = ACTIONS(1329), - [anon_sym_for] = ACTIONS(1329), - [anon_sym_return] = ACTIONS(1329), - [anon_sym_break] = ACTIONS(1329), - [anon_sym_continue] = ACTIONS(1329), - [anon_sym_goto] = ACTIONS(1329), - [anon_sym_DASH_DASH] = ACTIONS(1331), - [anon_sym_PLUS_PLUS] = ACTIONS(1331), - [anon_sym_sizeof] = ACTIONS(1329), - [sym_number_literal] = ACTIONS(1331), - [anon_sym_L_SQUOTE] = ACTIONS(1331), - [anon_sym_u_SQUOTE] = ACTIONS(1331), - [anon_sym_U_SQUOTE] = ACTIONS(1331), - [anon_sym_u8_SQUOTE] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_L_DQUOTE] = ACTIONS(1331), - [anon_sym_u_DQUOTE] = ACTIONS(1331), - [anon_sym_U_DQUOTE] = ACTIONS(1331), - [anon_sym_u8_DQUOTE] = ACTIONS(1331), - [anon_sym_DQUOTE] = ACTIONS(1331), - [sym_true] = ACTIONS(1329), - [sym_false] = ACTIONS(1329), - [sym_null] = ACTIONS(1329), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1331), - [anon_sym_ATimport] = ACTIONS(1331), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1329), - [anon_sym_ATcompatibility_alias] = ACTIONS(1331), - [anon_sym_ATprotocol] = ACTIONS(1331), - [anon_sym_ATclass] = ACTIONS(1331), - [anon_sym_ATinterface] = ACTIONS(1331), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1329), - [sym_method_attribute_specifier] = ACTIONS(1329), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1329), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1329), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1329), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1329), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1329), - [anon_sym_NS_AVAILABLE] = ACTIONS(1329), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1329), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_API_AVAILABLE] = ACTIONS(1329), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_API_DEPRECATED] = ACTIONS(1329), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1329), - [anon_sym___deprecated_msg] = ACTIONS(1329), - [anon_sym___deprecated_enum_msg] = ACTIONS(1329), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1329), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1329), - [anon_sym_ATimplementation] = ACTIONS(1331), - [anon_sym_typeof] = ACTIONS(1329), - [anon_sym___typeof] = ACTIONS(1329), - [anon_sym___typeof__] = ACTIONS(1329), - [sym_self] = ACTIONS(1329), - [sym_super] = ACTIONS(1329), - [sym_nil] = ACTIONS(1329), - [sym_id] = ACTIONS(1329), - [sym_instancetype] = ACTIONS(1329), - [sym_Class] = ACTIONS(1329), - [sym_SEL] = ACTIONS(1329), - [sym_IMP] = ACTIONS(1329), - [sym_BOOL] = ACTIONS(1329), - [sym_auto] = ACTIONS(1329), - [anon_sym_ATautoreleasepool] = ACTIONS(1331), - [anon_sym_ATsynchronized] = ACTIONS(1331), - [anon_sym_ATtry] = ACTIONS(1331), - [anon_sym_ATcatch] = ACTIONS(1331), - [anon_sym_ATfinally] = ACTIONS(1331), - [anon_sym_ATthrow] = ACTIONS(1331), - [anon_sym_ATselector] = ACTIONS(1331), - [anon_sym_ATencode] = ACTIONS(1331), - [anon_sym_AT] = ACTIONS(1329), - [sym_YES] = ACTIONS(1329), - [sym_NO] = ACTIONS(1329), - [anon_sym___builtin_available] = ACTIONS(1329), - [anon_sym_ATavailable] = ACTIONS(1331), - [anon_sym_va_arg] = ACTIONS(1329), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [455] = { - [sym_identifier] = ACTIONS(1413), - [aux_sym_preproc_include_token1] = ACTIONS(1415), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [aux_sym_preproc_if_token1] = ACTIONS(1413), - [aux_sym_preproc_if_token2] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym___attribute] = ACTIONS(1413), - [anon_sym___attribute__] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1413), - [anon_sym___cdecl] = ACTIONS(1413), - [anon_sym___clrcall] = ACTIONS(1413), - [anon_sym___stdcall] = ACTIONS(1413), - [anon_sym___fastcall] = ACTIONS(1413), - [anon_sym___thiscall] = ACTIONS(1413), - [anon_sym___vectorcall] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_auto] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_inline] = ACTIONS(1413), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_volatile] = ACTIONS(1413), - [anon_sym_restrict] = ACTIONS(1413), - [anon_sym__Atomic] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_out] = ACTIONS(1413), - [anon_sym_inout] = ACTIONS(1413), - [anon_sym_bycopy] = ACTIONS(1413), - [anon_sym_byref] = ACTIONS(1413), - [anon_sym_oneway] = ACTIONS(1413), - [anon_sym__Nullable] = ACTIONS(1413), - [anon_sym__Nonnull] = ACTIONS(1413), - [anon_sym__Nullable_result] = ACTIONS(1413), - [anon_sym__Null_unspecified] = ACTIONS(1413), - [anon_sym___autoreleasing] = ACTIONS(1413), - [anon_sym___nullable] = ACTIONS(1413), - [anon_sym___nonnull] = ACTIONS(1413), - [anon_sym___strong] = ACTIONS(1413), - [anon_sym___weak] = ACTIONS(1413), - [anon_sym___bridge] = ACTIONS(1413), - [anon_sym___bridge_transfer] = ACTIONS(1413), - [anon_sym___bridge_retained] = ACTIONS(1413), - [anon_sym___unsafe_unretained] = ACTIONS(1413), - [anon_sym___block] = ACTIONS(1413), - [anon_sym___kindof] = ACTIONS(1413), - [anon_sym___unused] = ACTIONS(1413), - [anon_sym__Complex] = ACTIONS(1413), - [anon_sym___complex] = ACTIONS(1413), - [anon_sym_IBOutlet] = ACTIONS(1413), - [anon_sym_IBInspectable] = ACTIONS(1413), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1413), - [anon_sym_unsigned] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [sym_primitive_type] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_NS_ENUM] = ACTIONS(1413), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1413), - [anon_sym_NS_OPTIONS] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_case] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_goto] = ACTIONS(1413), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_sizeof] = ACTIONS(1413), - [sym_number_literal] = ACTIONS(1415), - [anon_sym_L_SQUOTE] = ACTIONS(1415), - [anon_sym_u_SQUOTE] = ACTIONS(1415), - [anon_sym_U_SQUOTE] = ACTIONS(1415), - [anon_sym_u8_SQUOTE] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_L_DQUOTE] = ACTIONS(1415), - [anon_sym_u_DQUOTE] = ACTIONS(1415), - [anon_sym_U_DQUOTE] = ACTIONS(1415), - [anon_sym_u8_DQUOTE] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [sym_true] = ACTIONS(1413), - [sym_false] = ACTIONS(1413), - [sym_null] = ACTIONS(1413), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1415), - [anon_sym_ATimport] = ACTIONS(1415), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1413), - [anon_sym_ATcompatibility_alias] = ACTIONS(1415), - [anon_sym_ATprotocol] = ACTIONS(1415), - [anon_sym_ATclass] = ACTIONS(1415), - [anon_sym_ATinterface] = ACTIONS(1415), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1413), - [sym_method_attribute_specifier] = ACTIONS(1413), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1413), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE] = ACTIONS(1413), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_API_AVAILABLE] = ACTIONS(1413), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_API_DEPRECATED] = ACTIONS(1413), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1413), - [anon_sym___deprecated_msg] = ACTIONS(1413), - [anon_sym___deprecated_enum_msg] = ACTIONS(1413), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1413), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1413), - [anon_sym_ATimplementation] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym___typeof] = ACTIONS(1413), - [anon_sym___typeof__] = ACTIONS(1413), - [sym_self] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_nil] = ACTIONS(1413), - [sym_id] = ACTIONS(1413), - [sym_instancetype] = ACTIONS(1413), - [sym_Class] = ACTIONS(1413), - [sym_SEL] = ACTIONS(1413), - [sym_IMP] = ACTIONS(1413), - [sym_BOOL] = ACTIONS(1413), - [sym_auto] = ACTIONS(1413), - [anon_sym_ATautoreleasepool] = ACTIONS(1415), - [anon_sym_ATsynchronized] = ACTIONS(1415), - [anon_sym_ATtry] = ACTIONS(1415), - [anon_sym_ATcatch] = ACTIONS(1415), - [anon_sym_ATfinally] = ACTIONS(1415), - [anon_sym_ATthrow] = ACTIONS(1415), - [anon_sym_ATselector] = ACTIONS(1415), - [anon_sym_ATencode] = ACTIONS(1415), - [anon_sym_AT] = ACTIONS(1413), - [sym_YES] = ACTIONS(1413), - [sym_NO] = ACTIONS(1413), - [anon_sym___builtin_available] = ACTIONS(1413), - [anon_sym_ATavailable] = ACTIONS(1415), - [anon_sym_va_arg] = ACTIONS(1413), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [456] = { - [sym_identifier] = ACTIONS(1325), - [aux_sym_preproc_include_token1] = ACTIONS(1327), - [aux_sym_preproc_def_token1] = ACTIONS(1327), - [aux_sym_preproc_if_token1] = ACTIONS(1325), - [aux_sym_preproc_if_token2] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), - [anon_sym_LPAREN2] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_typedef] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym___attribute] = ACTIONS(1325), - [anon_sym___attribute__] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1325), - [anon_sym___cdecl] = ACTIONS(1325), - [anon_sym___clrcall] = ACTIONS(1325), - [anon_sym___stdcall] = ACTIONS(1325), - [anon_sym___fastcall] = ACTIONS(1325), - [anon_sym___thiscall] = ACTIONS(1325), - [anon_sym___vectorcall] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_auto] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_inline] = ACTIONS(1325), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_volatile] = ACTIONS(1325), - [anon_sym_restrict] = ACTIONS(1325), - [anon_sym__Atomic] = ACTIONS(1325), - [anon_sym_in] = ACTIONS(1325), - [anon_sym_out] = ACTIONS(1325), - [anon_sym_inout] = ACTIONS(1325), - [anon_sym_bycopy] = ACTIONS(1325), - [anon_sym_byref] = ACTIONS(1325), - [anon_sym_oneway] = ACTIONS(1325), - [anon_sym__Nullable] = ACTIONS(1325), - [anon_sym__Nonnull] = ACTIONS(1325), - [anon_sym__Nullable_result] = ACTIONS(1325), - [anon_sym__Null_unspecified] = ACTIONS(1325), - [anon_sym___autoreleasing] = ACTIONS(1325), - [anon_sym___nullable] = ACTIONS(1325), - [anon_sym___nonnull] = ACTIONS(1325), - [anon_sym___strong] = ACTIONS(1325), - [anon_sym___weak] = ACTIONS(1325), - [anon_sym___bridge] = ACTIONS(1325), - [anon_sym___bridge_transfer] = ACTIONS(1325), - [anon_sym___bridge_retained] = ACTIONS(1325), - [anon_sym___unsafe_unretained] = ACTIONS(1325), - [anon_sym___block] = ACTIONS(1325), - [anon_sym___kindof] = ACTIONS(1325), - [anon_sym___unused] = ACTIONS(1325), - [anon_sym__Complex] = ACTIONS(1325), - [anon_sym___complex] = ACTIONS(1325), - [anon_sym_IBOutlet] = ACTIONS(1325), - [anon_sym_IBInspectable] = ACTIONS(1325), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1325), - [anon_sym_signed] = ACTIONS(1325), - [anon_sym_unsigned] = ACTIONS(1325), - [anon_sym_long] = ACTIONS(1325), - [anon_sym_short] = ACTIONS(1325), - [sym_primitive_type] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_NS_ENUM] = ACTIONS(1325), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1325), - [anon_sym_NS_OPTIONS] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_else] = ACTIONS(1325), - [anon_sym_switch] = ACTIONS(1325), - [anon_sym_case] = ACTIONS(1325), - [anon_sym_default] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_goto] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1327), - [anon_sym_sizeof] = ACTIONS(1325), - [sym_number_literal] = ACTIONS(1327), - [anon_sym_L_SQUOTE] = ACTIONS(1327), - [anon_sym_u_SQUOTE] = ACTIONS(1327), - [anon_sym_U_SQUOTE] = ACTIONS(1327), - [anon_sym_u8_SQUOTE] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_L_DQUOTE] = ACTIONS(1327), - [anon_sym_u_DQUOTE] = ACTIONS(1327), - [anon_sym_U_DQUOTE] = ACTIONS(1327), - [anon_sym_u8_DQUOTE] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [sym_true] = ACTIONS(1325), - [sym_false] = ACTIONS(1325), - [sym_null] = ACTIONS(1325), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1327), - [anon_sym_ATimport] = ACTIONS(1327), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1325), - [anon_sym_ATcompatibility_alias] = ACTIONS(1327), - [anon_sym_ATprotocol] = ACTIONS(1327), - [anon_sym_ATclass] = ACTIONS(1327), - [anon_sym_ATinterface] = ACTIONS(1327), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1325), - [sym_method_attribute_specifier] = ACTIONS(1325), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1325), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1325), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1325), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1325), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1325), - [anon_sym_NS_AVAILABLE] = ACTIONS(1325), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1325), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_API_AVAILABLE] = ACTIONS(1325), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_API_DEPRECATED] = ACTIONS(1325), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1325), - [anon_sym___deprecated_msg] = ACTIONS(1325), - [anon_sym___deprecated_enum_msg] = ACTIONS(1325), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1325), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1325), - [anon_sym_ATimplementation] = ACTIONS(1327), - [anon_sym_typeof] = ACTIONS(1325), - [anon_sym___typeof] = ACTIONS(1325), - [anon_sym___typeof__] = ACTIONS(1325), - [sym_self] = ACTIONS(1325), - [sym_super] = ACTIONS(1325), - [sym_nil] = ACTIONS(1325), - [sym_id] = ACTIONS(1325), - [sym_instancetype] = ACTIONS(1325), - [sym_Class] = ACTIONS(1325), - [sym_SEL] = ACTIONS(1325), - [sym_IMP] = ACTIONS(1325), - [sym_BOOL] = ACTIONS(1325), - [sym_auto] = ACTIONS(1325), - [anon_sym_ATautoreleasepool] = ACTIONS(1327), - [anon_sym_ATsynchronized] = ACTIONS(1327), - [anon_sym_ATtry] = ACTIONS(1327), - [anon_sym_ATcatch] = ACTIONS(1327), - [anon_sym_ATfinally] = ACTIONS(1327), - [anon_sym_ATthrow] = ACTIONS(1327), - [anon_sym_ATselector] = ACTIONS(1327), - [anon_sym_ATencode] = ACTIONS(1327), - [anon_sym_AT] = ACTIONS(1325), - [sym_YES] = ACTIONS(1325), - [sym_NO] = ACTIONS(1325), - [anon_sym___builtin_available] = ACTIONS(1325), - [anon_sym_ATavailable] = ACTIONS(1327), - [anon_sym_va_arg] = ACTIONS(1325), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [457] = { - [sym_identifier] = ACTIONS(1321), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1321), - [aux_sym_preproc_if_token2] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), - [anon_sym_LPAREN2] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), - [anon_sym_inout] = ACTIONS(1321), - [anon_sym_bycopy] = ACTIONS(1321), - [anon_sym_byref] = ACTIONS(1321), - [anon_sym_oneway] = ACTIONS(1321), - [anon_sym__Nullable] = ACTIONS(1321), - [anon_sym__Nonnull] = ACTIONS(1321), - [anon_sym__Nullable_result] = ACTIONS(1321), - [anon_sym__Null_unspecified] = ACTIONS(1321), - [anon_sym___autoreleasing] = ACTIONS(1321), - [anon_sym___nullable] = ACTIONS(1321), - [anon_sym___nonnull] = ACTIONS(1321), - [anon_sym___strong] = ACTIONS(1321), - [anon_sym___weak] = ACTIONS(1321), - [anon_sym___bridge] = ACTIONS(1321), - [anon_sym___bridge_transfer] = ACTIONS(1321), - [anon_sym___bridge_retained] = ACTIONS(1321), - [anon_sym___unsafe_unretained] = ACTIONS(1321), - [anon_sym___block] = ACTIONS(1321), - [anon_sym___kindof] = ACTIONS(1321), - [anon_sym___unused] = ACTIONS(1321), - [anon_sym__Complex] = ACTIONS(1321), - [anon_sym___complex] = ACTIONS(1321), - [anon_sym_IBOutlet] = ACTIONS(1321), - [anon_sym_IBInspectable] = ACTIONS(1321), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_NS_ENUM] = ACTIONS(1321), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1321), - [anon_sym_NS_OPTIONS] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_else] = ACTIONS(1321), - [anon_sym_switch] = ACTIONS(1321), - [anon_sym_case] = ACTIONS(1321), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_goto] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_sizeof] = ACTIONS(1321), - [sym_number_literal] = ACTIONS(1323), - [anon_sym_L_SQUOTE] = ACTIONS(1323), - [anon_sym_u_SQUOTE] = ACTIONS(1323), - [anon_sym_U_SQUOTE] = ACTIONS(1323), - [anon_sym_u8_SQUOTE] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_L_DQUOTE] = ACTIONS(1323), - [anon_sym_u_DQUOTE] = ACTIONS(1323), - [anon_sym_U_DQUOTE] = ACTIONS(1323), - [anon_sym_u8_DQUOTE] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [sym_true] = ACTIONS(1321), - [sym_false] = ACTIONS(1321), - [sym_null] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1323), - [anon_sym_ATimport] = ACTIONS(1323), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1321), - [anon_sym_ATcompatibility_alias] = ACTIONS(1323), - [anon_sym_ATprotocol] = ACTIONS(1323), - [anon_sym_ATclass] = ACTIONS(1323), - [anon_sym_ATinterface] = ACTIONS(1323), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1321), - [sym_method_attribute_specifier] = ACTIONS(1321), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1321), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE] = ACTIONS(1321), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_API_AVAILABLE] = ACTIONS(1321), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_API_DEPRECATED] = ACTIONS(1321), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1321), - [anon_sym___deprecated_msg] = ACTIONS(1321), - [anon_sym___deprecated_enum_msg] = ACTIONS(1321), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1321), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1321), - [anon_sym_ATimplementation] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1321), - [anon_sym___typeof] = ACTIONS(1321), - [anon_sym___typeof__] = ACTIONS(1321), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1321), - [sym_nil] = ACTIONS(1321), - [sym_id] = ACTIONS(1321), - [sym_instancetype] = ACTIONS(1321), - [sym_Class] = ACTIONS(1321), - [sym_SEL] = ACTIONS(1321), - [sym_IMP] = ACTIONS(1321), - [sym_BOOL] = ACTIONS(1321), - [sym_auto] = ACTIONS(1321), - [anon_sym_ATautoreleasepool] = ACTIONS(1323), - [anon_sym_ATsynchronized] = ACTIONS(1323), - [anon_sym_ATtry] = ACTIONS(1323), - [anon_sym_ATcatch] = ACTIONS(1323), - [anon_sym_ATfinally] = ACTIONS(1323), - [anon_sym_ATthrow] = ACTIONS(1323), - [anon_sym_ATselector] = ACTIONS(1323), - [anon_sym_ATencode] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(1321), - [sym_YES] = ACTIONS(1321), - [sym_NO] = ACTIONS(1321), - [anon_sym___builtin_available] = ACTIONS(1321), - [anon_sym_ATavailable] = ACTIONS(1323), - [anon_sym_va_arg] = ACTIONS(1321), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [458] = { - [sym_identifier] = ACTIONS(1321), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1321), - [aux_sym_preproc_if_token2] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), - [anon_sym_LPAREN2] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), - [anon_sym_inout] = ACTIONS(1321), - [anon_sym_bycopy] = ACTIONS(1321), - [anon_sym_byref] = ACTIONS(1321), - [anon_sym_oneway] = ACTIONS(1321), - [anon_sym__Nullable] = ACTIONS(1321), - [anon_sym__Nonnull] = ACTIONS(1321), - [anon_sym__Nullable_result] = ACTIONS(1321), - [anon_sym__Null_unspecified] = ACTIONS(1321), - [anon_sym___autoreleasing] = ACTIONS(1321), - [anon_sym___nullable] = ACTIONS(1321), - [anon_sym___nonnull] = ACTIONS(1321), - [anon_sym___strong] = ACTIONS(1321), - [anon_sym___weak] = ACTIONS(1321), - [anon_sym___bridge] = ACTIONS(1321), - [anon_sym___bridge_transfer] = ACTIONS(1321), - [anon_sym___bridge_retained] = ACTIONS(1321), - [anon_sym___unsafe_unretained] = ACTIONS(1321), - [anon_sym___block] = ACTIONS(1321), - [anon_sym___kindof] = ACTIONS(1321), - [anon_sym___unused] = ACTIONS(1321), - [anon_sym__Complex] = ACTIONS(1321), - [anon_sym___complex] = ACTIONS(1321), - [anon_sym_IBOutlet] = ACTIONS(1321), - [anon_sym_IBInspectable] = ACTIONS(1321), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_NS_ENUM] = ACTIONS(1321), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1321), - [anon_sym_NS_OPTIONS] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_else] = ACTIONS(1321), - [anon_sym_switch] = ACTIONS(1321), - [anon_sym_case] = ACTIONS(1321), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_goto] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_sizeof] = ACTIONS(1321), - [sym_number_literal] = ACTIONS(1323), - [anon_sym_L_SQUOTE] = ACTIONS(1323), - [anon_sym_u_SQUOTE] = ACTIONS(1323), - [anon_sym_U_SQUOTE] = ACTIONS(1323), - [anon_sym_u8_SQUOTE] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_L_DQUOTE] = ACTIONS(1323), - [anon_sym_u_DQUOTE] = ACTIONS(1323), - [anon_sym_U_DQUOTE] = ACTIONS(1323), - [anon_sym_u8_DQUOTE] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [sym_true] = ACTIONS(1321), - [sym_false] = ACTIONS(1321), - [sym_null] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1323), - [anon_sym_ATimport] = ACTIONS(1323), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1321), - [anon_sym_ATcompatibility_alias] = ACTIONS(1323), - [anon_sym_ATprotocol] = ACTIONS(1323), - [anon_sym_ATclass] = ACTIONS(1323), - [anon_sym_ATinterface] = ACTIONS(1323), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1321), - [sym_method_attribute_specifier] = ACTIONS(1321), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1321), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE] = ACTIONS(1321), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_API_AVAILABLE] = ACTIONS(1321), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_API_DEPRECATED] = ACTIONS(1321), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1321), - [anon_sym___deprecated_msg] = ACTIONS(1321), - [anon_sym___deprecated_enum_msg] = ACTIONS(1321), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1321), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1321), - [anon_sym_ATimplementation] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1321), - [anon_sym___typeof] = ACTIONS(1321), - [anon_sym___typeof__] = ACTIONS(1321), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1321), - [sym_nil] = ACTIONS(1321), - [sym_id] = ACTIONS(1321), - [sym_instancetype] = ACTIONS(1321), - [sym_Class] = ACTIONS(1321), - [sym_SEL] = ACTIONS(1321), - [sym_IMP] = ACTIONS(1321), - [sym_BOOL] = ACTIONS(1321), - [sym_auto] = ACTIONS(1321), - [anon_sym_ATautoreleasepool] = ACTIONS(1323), - [anon_sym_ATsynchronized] = ACTIONS(1323), - [anon_sym_ATtry] = ACTIONS(1323), - [anon_sym_ATcatch] = ACTIONS(1323), - [anon_sym_ATfinally] = ACTIONS(1323), - [anon_sym_ATthrow] = ACTIONS(1323), - [anon_sym_ATselector] = ACTIONS(1323), - [anon_sym_ATencode] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(1321), - [sym_YES] = ACTIONS(1321), - [sym_NO] = ACTIONS(1321), - [anon_sym___builtin_available] = ACTIONS(1321), - [anon_sym_ATavailable] = ACTIONS(1323), - [anon_sym_va_arg] = ACTIONS(1321), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [459] = { - [sym_identifier] = ACTIONS(1325), - [aux_sym_preproc_include_token1] = ACTIONS(1327), - [aux_sym_preproc_def_token1] = ACTIONS(1327), - [aux_sym_preproc_if_token1] = ACTIONS(1325), - [aux_sym_preproc_if_token2] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), - [anon_sym_LPAREN2] = ACTIONS(1327), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1327), - [anon_sym_typedef] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym___attribute] = ACTIONS(1325), - [anon_sym___attribute__] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1325), - [anon_sym___cdecl] = ACTIONS(1325), - [anon_sym___clrcall] = ACTIONS(1325), - [anon_sym___stdcall] = ACTIONS(1325), - [anon_sym___fastcall] = ACTIONS(1325), - [anon_sym___thiscall] = ACTIONS(1325), - [anon_sym___vectorcall] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1327), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_auto] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_inline] = ACTIONS(1325), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_volatile] = ACTIONS(1325), - [anon_sym_restrict] = ACTIONS(1325), - [anon_sym__Atomic] = ACTIONS(1325), - [anon_sym_in] = ACTIONS(1325), - [anon_sym_out] = ACTIONS(1325), - [anon_sym_inout] = ACTIONS(1325), - [anon_sym_bycopy] = ACTIONS(1325), - [anon_sym_byref] = ACTIONS(1325), - [anon_sym_oneway] = ACTIONS(1325), - [anon_sym__Nullable] = ACTIONS(1325), - [anon_sym__Nonnull] = ACTIONS(1325), - [anon_sym__Nullable_result] = ACTIONS(1325), - [anon_sym__Null_unspecified] = ACTIONS(1325), - [anon_sym___autoreleasing] = ACTIONS(1325), - [anon_sym___nullable] = ACTIONS(1325), - [anon_sym___nonnull] = ACTIONS(1325), - [anon_sym___strong] = ACTIONS(1325), - [anon_sym___weak] = ACTIONS(1325), - [anon_sym___bridge] = ACTIONS(1325), - [anon_sym___bridge_transfer] = ACTIONS(1325), - [anon_sym___bridge_retained] = ACTIONS(1325), - [anon_sym___unsafe_unretained] = ACTIONS(1325), - [anon_sym___block] = ACTIONS(1325), - [anon_sym___kindof] = ACTIONS(1325), - [anon_sym___unused] = ACTIONS(1325), - [anon_sym__Complex] = ACTIONS(1325), - [anon_sym___complex] = ACTIONS(1325), - [anon_sym_IBOutlet] = ACTIONS(1325), - [anon_sym_IBInspectable] = ACTIONS(1325), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1325), - [anon_sym_signed] = ACTIONS(1325), - [anon_sym_unsigned] = ACTIONS(1325), - [anon_sym_long] = ACTIONS(1325), - [anon_sym_short] = ACTIONS(1325), - [sym_primitive_type] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_NS_ENUM] = ACTIONS(1325), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1325), - [anon_sym_NS_OPTIONS] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_else] = ACTIONS(1325), - [anon_sym_switch] = ACTIONS(1325), - [anon_sym_case] = ACTIONS(1325), - [anon_sym_default] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_goto] = ACTIONS(1325), - [anon_sym_DASH_DASH] = ACTIONS(1327), - [anon_sym_PLUS_PLUS] = ACTIONS(1327), - [anon_sym_sizeof] = ACTIONS(1325), - [sym_number_literal] = ACTIONS(1327), - [anon_sym_L_SQUOTE] = ACTIONS(1327), - [anon_sym_u_SQUOTE] = ACTIONS(1327), - [anon_sym_U_SQUOTE] = ACTIONS(1327), - [anon_sym_u8_SQUOTE] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_L_DQUOTE] = ACTIONS(1327), - [anon_sym_u_DQUOTE] = ACTIONS(1327), - [anon_sym_U_DQUOTE] = ACTIONS(1327), - [anon_sym_u8_DQUOTE] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1327), - [sym_true] = ACTIONS(1325), - [sym_false] = ACTIONS(1325), - [sym_null] = ACTIONS(1325), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1327), - [anon_sym_ATimport] = ACTIONS(1327), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1325), - [anon_sym_ATcompatibility_alias] = ACTIONS(1327), - [anon_sym_ATprotocol] = ACTIONS(1327), - [anon_sym_ATclass] = ACTIONS(1327), - [anon_sym_ATinterface] = ACTIONS(1327), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1325), - [sym_method_attribute_specifier] = ACTIONS(1325), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1325), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1325), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1325), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1325), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1325), - [anon_sym_NS_AVAILABLE] = ACTIONS(1325), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1325), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_API_AVAILABLE] = ACTIONS(1325), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_API_DEPRECATED] = ACTIONS(1325), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1325), - [anon_sym___deprecated_msg] = ACTIONS(1325), - [anon_sym___deprecated_enum_msg] = ACTIONS(1325), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1325), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1325), - [anon_sym_ATimplementation] = ACTIONS(1327), - [anon_sym_typeof] = ACTIONS(1325), - [anon_sym___typeof] = ACTIONS(1325), - [anon_sym___typeof__] = ACTIONS(1325), - [sym_self] = ACTIONS(1325), - [sym_super] = ACTIONS(1325), - [sym_nil] = ACTIONS(1325), - [sym_id] = ACTIONS(1325), - [sym_instancetype] = ACTIONS(1325), - [sym_Class] = ACTIONS(1325), - [sym_SEL] = ACTIONS(1325), - [sym_IMP] = ACTIONS(1325), - [sym_BOOL] = ACTIONS(1325), - [sym_auto] = ACTIONS(1325), - [anon_sym_ATautoreleasepool] = ACTIONS(1327), - [anon_sym_ATsynchronized] = ACTIONS(1327), - [anon_sym_ATtry] = ACTIONS(1327), - [anon_sym_ATcatch] = ACTIONS(1327), - [anon_sym_ATfinally] = ACTIONS(1327), - [anon_sym_ATthrow] = ACTIONS(1327), - [anon_sym_ATselector] = ACTIONS(1327), - [anon_sym_ATencode] = ACTIONS(1327), - [anon_sym_AT] = ACTIONS(1325), - [sym_YES] = ACTIONS(1325), - [sym_NO] = ACTIONS(1325), - [anon_sym___builtin_available] = ACTIONS(1325), - [anon_sym_ATavailable] = ACTIONS(1327), - [anon_sym_va_arg] = ACTIONS(1325), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [460] = { - [sym_identifier] = ACTIONS(1321), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1321), - [aux_sym_preproc_if_token2] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), - [anon_sym_LPAREN2] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), - [anon_sym_inout] = ACTIONS(1321), - [anon_sym_bycopy] = ACTIONS(1321), - [anon_sym_byref] = ACTIONS(1321), - [anon_sym_oneway] = ACTIONS(1321), - [anon_sym__Nullable] = ACTIONS(1321), - [anon_sym__Nonnull] = ACTIONS(1321), - [anon_sym__Nullable_result] = ACTIONS(1321), - [anon_sym__Null_unspecified] = ACTIONS(1321), - [anon_sym___autoreleasing] = ACTIONS(1321), - [anon_sym___nullable] = ACTIONS(1321), - [anon_sym___nonnull] = ACTIONS(1321), - [anon_sym___strong] = ACTIONS(1321), - [anon_sym___weak] = ACTIONS(1321), - [anon_sym___bridge] = ACTIONS(1321), - [anon_sym___bridge_transfer] = ACTIONS(1321), - [anon_sym___bridge_retained] = ACTIONS(1321), - [anon_sym___unsafe_unretained] = ACTIONS(1321), - [anon_sym___block] = ACTIONS(1321), - [anon_sym___kindof] = ACTIONS(1321), - [anon_sym___unused] = ACTIONS(1321), - [anon_sym__Complex] = ACTIONS(1321), - [anon_sym___complex] = ACTIONS(1321), - [anon_sym_IBOutlet] = ACTIONS(1321), - [anon_sym_IBInspectable] = ACTIONS(1321), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_NS_ENUM] = ACTIONS(1321), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1321), - [anon_sym_NS_OPTIONS] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_else] = ACTIONS(1321), - [anon_sym_switch] = ACTIONS(1321), - [anon_sym_case] = ACTIONS(1321), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_goto] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_sizeof] = ACTIONS(1321), - [sym_number_literal] = ACTIONS(1323), - [anon_sym_L_SQUOTE] = ACTIONS(1323), - [anon_sym_u_SQUOTE] = ACTIONS(1323), - [anon_sym_U_SQUOTE] = ACTIONS(1323), - [anon_sym_u8_SQUOTE] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_L_DQUOTE] = ACTIONS(1323), - [anon_sym_u_DQUOTE] = ACTIONS(1323), - [anon_sym_U_DQUOTE] = ACTIONS(1323), - [anon_sym_u8_DQUOTE] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [sym_true] = ACTIONS(1321), - [sym_false] = ACTIONS(1321), - [sym_null] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1323), - [anon_sym_ATimport] = ACTIONS(1323), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1321), - [anon_sym_ATcompatibility_alias] = ACTIONS(1323), - [anon_sym_ATprotocol] = ACTIONS(1323), - [anon_sym_ATclass] = ACTIONS(1323), - [anon_sym_ATinterface] = ACTIONS(1323), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1321), - [sym_method_attribute_specifier] = ACTIONS(1321), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1321), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE] = ACTIONS(1321), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_API_AVAILABLE] = ACTIONS(1321), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_API_DEPRECATED] = ACTIONS(1321), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1321), - [anon_sym___deprecated_msg] = ACTIONS(1321), - [anon_sym___deprecated_enum_msg] = ACTIONS(1321), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1321), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1321), - [anon_sym_ATimplementation] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1321), - [anon_sym___typeof] = ACTIONS(1321), - [anon_sym___typeof__] = ACTIONS(1321), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1321), - [sym_nil] = ACTIONS(1321), - [sym_id] = ACTIONS(1321), - [sym_instancetype] = ACTIONS(1321), - [sym_Class] = ACTIONS(1321), - [sym_SEL] = ACTIONS(1321), - [sym_IMP] = ACTIONS(1321), - [sym_BOOL] = ACTIONS(1321), - [sym_auto] = ACTIONS(1321), - [anon_sym_ATautoreleasepool] = ACTIONS(1323), - [anon_sym_ATsynchronized] = ACTIONS(1323), - [anon_sym_ATtry] = ACTIONS(1323), - [anon_sym_ATcatch] = ACTIONS(1323), - [anon_sym_ATfinally] = ACTIONS(1323), - [anon_sym_ATthrow] = ACTIONS(1323), - [anon_sym_ATselector] = ACTIONS(1323), - [anon_sym_ATencode] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(1321), - [sym_YES] = ACTIONS(1321), - [sym_NO] = ACTIONS(1321), - [anon_sym___builtin_available] = ACTIONS(1321), - [anon_sym_ATavailable] = ACTIONS(1323), - [anon_sym_va_arg] = ACTIONS(1321), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [461] = { - [sym_identifier] = ACTIONS(1321), - [aux_sym_preproc_include_token1] = ACTIONS(1323), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [aux_sym_preproc_if_token1] = ACTIONS(1321), - [aux_sym_preproc_if_token2] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), - [anon_sym_LPAREN2] = ACTIONS(1323), - [anon_sym_BANG] = ACTIONS(1323), - [anon_sym_TILDE] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1323), - [anon_sym_LBRACK] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), - [anon_sym_inout] = ACTIONS(1321), - [anon_sym_bycopy] = ACTIONS(1321), - [anon_sym_byref] = ACTIONS(1321), - [anon_sym_oneway] = ACTIONS(1321), - [anon_sym__Nullable] = ACTIONS(1321), - [anon_sym__Nonnull] = ACTIONS(1321), - [anon_sym__Nullable_result] = ACTIONS(1321), - [anon_sym__Null_unspecified] = ACTIONS(1321), - [anon_sym___autoreleasing] = ACTIONS(1321), - [anon_sym___nullable] = ACTIONS(1321), - [anon_sym___nonnull] = ACTIONS(1321), - [anon_sym___strong] = ACTIONS(1321), - [anon_sym___weak] = ACTIONS(1321), - [anon_sym___bridge] = ACTIONS(1321), - [anon_sym___bridge_transfer] = ACTIONS(1321), - [anon_sym___bridge_retained] = ACTIONS(1321), - [anon_sym___unsafe_unretained] = ACTIONS(1321), - [anon_sym___block] = ACTIONS(1321), - [anon_sym___kindof] = ACTIONS(1321), - [anon_sym___unused] = ACTIONS(1321), - [anon_sym__Complex] = ACTIONS(1321), - [anon_sym___complex] = ACTIONS(1321), - [anon_sym_IBOutlet] = ACTIONS(1321), - [anon_sym_IBInspectable] = ACTIONS(1321), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_NS_ENUM] = ACTIONS(1321), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1321), - [anon_sym_NS_OPTIONS] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [anon_sym_if] = ACTIONS(1321), - [anon_sym_else] = ACTIONS(1321), - [anon_sym_switch] = ACTIONS(1321), - [anon_sym_case] = ACTIONS(1321), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_while] = ACTIONS(1321), - [anon_sym_do] = ACTIONS(1321), - [anon_sym_for] = ACTIONS(1321), - [anon_sym_return] = ACTIONS(1321), - [anon_sym_break] = ACTIONS(1321), - [anon_sym_continue] = ACTIONS(1321), - [anon_sym_goto] = ACTIONS(1321), - [anon_sym_DASH_DASH] = ACTIONS(1323), - [anon_sym_PLUS_PLUS] = ACTIONS(1323), - [anon_sym_sizeof] = ACTIONS(1321), - [sym_number_literal] = ACTIONS(1323), - [anon_sym_L_SQUOTE] = ACTIONS(1323), - [anon_sym_u_SQUOTE] = ACTIONS(1323), - [anon_sym_U_SQUOTE] = ACTIONS(1323), - [anon_sym_u8_SQUOTE] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_L_DQUOTE] = ACTIONS(1323), - [anon_sym_u_DQUOTE] = ACTIONS(1323), - [anon_sym_U_DQUOTE] = ACTIONS(1323), - [anon_sym_u8_DQUOTE] = ACTIONS(1323), - [anon_sym_DQUOTE] = ACTIONS(1323), - [sym_true] = ACTIONS(1321), - [sym_false] = ACTIONS(1321), - [sym_null] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1323), - [anon_sym_ATimport] = ACTIONS(1323), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1321), - [anon_sym_ATcompatibility_alias] = ACTIONS(1323), - [anon_sym_ATprotocol] = ACTIONS(1323), - [anon_sym_ATclass] = ACTIONS(1323), - [anon_sym_ATinterface] = ACTIONS(1323), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1321), - [sym_method_attribute_specifier] = ACTIONS(1321), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1321), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE] = ACTIONS(1321), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_API_AVAILABLE] = ACTIONS(1321), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_API_DEPRECATED] = ACTIONS(1321), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1321), - [anon_sym___deprecated_msg] = ACTIONS(1321), - [anon_sym___deprecated_enum_msg] = ACTIONS(1321), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1321), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1321), - [anon_sym_ATimplementation] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1321), - [anon_sym___typeof] = ACTIONS(1321), - [anon_sym___typeof__] = ACTIONS(1321), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1321), - [sym_nil] = ACTIONS(1321), - [sym_id] = ACTIONS(1321), - [sym_instancetype] = ACTIONS(1321), - [sym_Class] = ACTIONS(1321), - [sym_SEL] = ACTIONS(1321), - [sym_IMP] = ACTIONS(1321), - [sym_BOOL] = ACTIONS(1321), - [sym_auto] = ACTIONS(1321), - [anon_sym_ATautoreleasepool] = ACTIONS(1323), - [anon_sym_ATsynchronized] = ACTIONS(1323), - [anon_sym_ATtry] = ACTIONS(1323), - [anon_sym_ATcatch] = ACTIONS(1323), - [anon_sym_ATfinally] = ACTIONS(1323), - [anon_sym_ATthrow] = ACTIONS(1323), - [anon_sym_ATselector] = ACTIONS(1323), - [anon_sym_ATencode] = ACTIONS(1323), - [anon_sym_AT] = ACTIONS(1321), - [sym_YES] = ACTIONS(1321), - [sym_NO] = ACTIONS(1321), - [anon_sym___builtin_available] = ACTIONS(1321), - [anon_sym_ATavailable] = ACTIONS(1323), - [anon_sym_va_arg] = ACTIONS(1321), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [462] = { - [sym_identifier] = ACTIONS(1677), - [aux_sym_preproc_include_token1] = ACTIONS(1679), - [aux_sym_preproc_def_token1] = ACTIONS(1679), - [aux_sym_preproc_if_token1] = ACTIONS(1677), - [aux_sym_preproc_if_token2] = ACTIONS(1677), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1677), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1677), - [anon_sym_LPAREN2] = ACTIONS(1679), - [anon_sym_BANG] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1677), - [anon_sym_PLUS] = ACTIONS(1677), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_CARET] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1679), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_typedef] = ACTIONS(1677), - [anon_sym_extern] = ACTIONS(1677), - [anon_sym___attribute] = ACTIONS(1677), - [anon_sym___attribute__] = ACTIONS(1677), - [anon_sym___declspec] = ACTIONS(1677), - [anon_sym___cdecl] = ACTIONS(1677), - [anon_sym___clrcall] = ACTIONS(1677), - [anon_sym___stdcall] = ACTIONS(1677), - [anon_sym___fastcall] = ACTIONS(1677), - [anon_sym___thiscall] = ACTIONS(1677), - [anon_sym___vectorcall] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_static] = ACTIONS(1677), - [anon_sym_auto] = ACTIONS(1677), - [anon_sym_register] = ACTIONS(1677), - [anon_sym_inline] = ACTIONS(1677), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1677), - [anon_sym_const] = ACTIONS(1677), - [anon_sym_volatile] = ACTIONS(1677), - [anon_sym_restrict] = ACTIONS(1677), - [anon_sym__Atomic] = ACTIONS(1677), - [anon_sym_in] = ACTIONS(1677), - [anon_sym_out] = ACTIONS(1677), - [anon_sym_inout] = ACTIONS(1677), - [anon_sym_bycopy] = ACTIONS(1677), - [anon_sym_byref] = ACTIONS(1677), - [anon_sym_oneway] = ACTIONS(1677), - [anon_sym__Nullable] = ACTIONS(1677), - [anon_sym__Nonnull] = ACTIONS(1677), - [anon_sym__Nullable_result] = ACTIONS(1677), - [anon_sym__Null_unspecified] = ACTIONS(1677), - [anon_sym___autoreleasing] = ACTIONS(1677), - [anon_sym___nullable] = ACTIONS(1677), - [anon_sym___nonnull] = ACTIONS(1677), - [anon_sym___strong] = ACTIONS(1677), - [anon_sym___weak] = ACTIONS(1677), - [anon_sym___bridge] = ACTIONS(1677), - [anon_sym___bridge_transfer] = ACTIONS(1677), - [anon_sym___bridge_retained] = ACTIONS(1677), - [anon_sym___unsafe_unretained] = ACTIONS(1677), - [anon_sym___block] = ACTIONS(1677), - [anon_sym___kindof] = ACTIONS(1677), - [anon_sym___unused] = ACTIONS(1677), - [anon_sym__Complex] = ACTIONS(1677), - [anon_sym___complex] = ACTIONS(1677), - [anon_sym_IBOutlet] = ACTIONS(1677), - [anon_sym_IBInspectable] = ACTIONS(1677), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1677), - [anon_sym_signed] = ACTIONS(1677), - [anon_sym_unsigned] = ACTIONS(1677), - [anon_sym_long] = ACTIONS(1677), - [anon_sym_short] = ACTIONS(1677), - [sym_primitive_type] = ACTIONS(1677), - [anon_sym_enum] = ACTIONS(1677), - [anon_sym_NS_ENUM] = ACTIONS(1677), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1677), - [anon_sym_NS_OPTIONS] = ACTIONS(1677), - [anon_sym_struct] = ACTIONS(1677), - [anon_sym_union] = ACTIONS(1677), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(1677), - [anon_sym_switch] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1677), - [anon_sym_default] = ACTIONS(1677), - [anon_sym_while] = ACTIONS(1677), - [anon_sym_do] = ACTIONS(1677), - [anon_sym_for] = ACTIONS(1677), - [anon_sym_return] = ACTIONS(1677), - [anon_sym_break] = ACTIONS(1677), - [anon_sym_continue] = ACTIONS(1677), - [anon_sym_goto] = ACTIONS(1677), - [anon_sym_DASH_DASH] = ACTIONS(1679), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_sizeof] = ACTIONS(1677), - [sym_number_literal] = ACTIONS(1679), - [anon_sym_L_SQUOTE] = ACTIONS(1679), - [anon_sym_u_SQUOTE] = ACTIONS(1679), - [anon_sym_U_SQUOTE] = ACTIONS(1679), - [anon_sym_u8_SQUOTE] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_L_DQUOTE] = ACTIONS(1679), - [anon_sym_u_DQUOTE] = ACTIONS(1679), - [anon_sym_U_DQUOTE] = ACTIONS(1679), - [anon_sym_u8_DQUOTE] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1679), - [sym_true] = ACTIONS(1677), - [sym_false] = ACTIONS(1677), - [sym_null] = ACTIONS(1677), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1679), - [anon_sym_ATimport] = ACTIONS(1679), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1677), - [anon_sym_ATcompatibility_alias] = ACTIONS(1679), - [anon_sym_ATprotocol] = ACTIONS(1679), - [anon_sym_ATclass] = ACTIONS(1679), - [anon_sym_ATinterface] = ACTIONS(1679), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1677), - [sym_method_attribute_specifier] = ACTIONS(1677), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1677), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1677), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1677), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1677), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1677), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1677), - [anon_sym_NS_AVAILABLE] = ACTIONS(1677), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1677), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1677), - [anon_sym_API_AVAILABLE] = ACTIONS(1677), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1677), - [anon_sym_API_DEPRECATED] = ACTIONS(1677), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1677), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1677), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1677), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1677), - [anon_sym___deprecated_msg] = ACTIONS(1677), - [anon_sym___deprecated_enum_msg] = ACTIONS(1677), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1677), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1677), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1677), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1677), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1677), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1677), - [anon_sym_ATimplementation] = ACTIONS(1679), - [anon_sym_typeof] = ACTIONS(1677), - [anon_sym___typeof] = ACTIONS(1677), - [anon_sym___typeof__] = ACTIONS(1677), - [sym_self] = ACTIONS(1677), - [sym_super] = ACTIONS(1677), - [sym_nil] = ACTIONS(1677), - [sym_id] = ACTIONS(1677), - [sym_instancetype] = ACTIONS(1677), - [sym_Class] = ACTIONS(1677), - [sym_SEL] = ACTIONS(1677), - [sym_IMP] = ACTIONS(1677), - [sym_BOOL] = ACTIONS(1677), - [sym_auto] = ACTIONS(1677), - [anon_sym_ATautoreleasepool] = ACTIONS(1679), - [anon_sym_ATsynchronized] = ACTIONS(1679), - [anon_sym_ATtry] = ACTIONS(1679), - [anon_sym_ATcatch] = ACTIONS(1679), - [anon_sym_ATfinally] = ACTIONS(1679), - [anon_sym_ATthrow] = ACTIONS(1679), - [anon_sym_ATselector] = ACTIONS(1679), - [anon_sym_ATencode] = ACTIONS(1679), - [anon_sym_AT] = ACTIONS(1677), - [sym_YES] = ACTIONS(1677), - [sym_NO] = ACTIONS(1677), - [anon_sym___builtin_available] = ACTIONS(1677), - [anon_sym_ATavailable] = ACTIONS(1679), - [anon_sym_va_arg] = ACTIONS(1677), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [463] = { - [sym_identifier] = ACTIONS(1313), - [aux_sym_preproc_include_token1] = ACTIONS(1315), - [aux_sym_preproc_def_token1] = ACTIONS(1315), - [aux_sym_preproc_if_token1] = ACTIONS(1313), - [aux_sym_preproc_if_token2] = ACTIONS(1313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1313), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1313), - [anon_sym_LPAREN2] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1315), - [anon_sym_TILDE] = ACTIONS(1315), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_CARET] = ACTIONS(1315), - [anon_sym_AMP] = ACTIONS(1315), - [anon_sym_SEMI] = ACTIONS(1315), - [anon_sym_typedef] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym___attribute] = ACTIONS(1313), - [anon_sym___attribute__] = ACTIONS(1313), - [anon_sym___declspec] = ACTIONS(1313), - [anon_sym___cdecl] = ACTIONS(1313), - [anon_sym___clrcall] = ACTIONS(1313), - [anon_sym___stdcall] = ACTIONS(1313), - [anon_sym___fastcall] = ACTIONS(1313), - [anon_sym___thiscall] = ACTIONS(1313), - [anon_sym___vectorcall] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1315), - [anon_sym_LBRACK] = ACTIONS(1315), - [anon_sym_static] = ACTIONS(1313), - [anon_sym_auto] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_inline] = ACTIONS(1313), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [anon_sym_volatile] = ACTIONS(1313), - [anon_sym_restrict] = ACTIONS(1313), - [anon_sym__Atomic] = ACTIONS(1313), - [anon_sym_in] = ACTIONS(1313), - [anon_sym_out] = ACTIONS(1313), - [anon_sym_inout] = ACTIONS(1313), - [anon_sym_bycopy] = ACTIONS(1313), - [anon_sym_byref] = ACTIONS(1313), - [anon_sym_oneway] = ACTIONS(1313), - [anon_sym__Nullable] = ACTIONS(1313), - [anon_sym__Nonnull] = ACTIONS(1313), - [anon_sym__Nullable_result] = ACTIONS(1313), - [anon_sym__Null_unspecified] = ACTIONS(1313), - [anon_sym___autoreleasing] = ACTIONS(1313), - [anon_sym___nullable] = ACTIONS(1313), - [anon_sym___nonnull] = ACTIONS(1313), - [anon_sym___strong] = ACTIONS(1313), - [anon_sym___weak] = ACTIONS(1313), - [anon_sym___bridge] = ACTIONS(1313), - [anon_sym___bridge_transfer] = ACTIONS(1313), - [anon_sym___bridge_retained] = ACTIONS(1313), - [anon_sym___unsafe_unretained] = ACTIONS(1313), - [anon_sym___block] = ACTIONS(1313), - [anon_sym___kindof] = ACTIONS(1313), - [anon_sym___unused] = ACTIONS(1313), - [anon_sym__Complex] = ACTIONS(1313), - [anon_sym___complex] = ACTIONS(1313), - [anon_sym_IBOutlet] = ACTIONS(1313), - [anon_sym_IBInspectable] = ACTIONS(1313), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1313), - [anon_sym_signed] = ACTIONS(1313), - [anon_sym_unsigned] = ACTIONS(1313), - [anon_sym_long] = ACTIONS(1313), - [anon_sym_short] = ACTIONS(1313), - [sym_primitive_type] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1313), - [anon_sym_NS_ENUM] = ACTIONS(1313), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1313), - [anon_sym_NS_OPTIONS] = ACTIONS(1313), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_union] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1313), - [anon_sym_switch] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1313), - [anon_sym_default] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_do] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_goto] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_PLUS_PLUS] = ACTIONS(1315), - [anon_sym_sizeof] = ACTIONS(1313), - [sym_number_literal] = ACTIONS(1315), - [anon_sym_L_SQUOTE] = ACTIONS(1315), - [anon_sym_u_SQUOTE] = ACTIONS(1315), - [anon_sym_U_SQUOTE] = ACTIONS(1315), - [anon_sym_u8_SQUOTE] = ACTIONS(1315), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_L_DQUOTE] = ACTIONS(1315), - [anon_sym_u_DQUOTE] = ACTIONS(1315), - [anon_sym_U_DQUOTE] = ACTIONS(1315), - [anon_sym_u8_DQUOTE] = ACTIONS(1315), - [anon_sym_DQUOTE] = ACTIONS(1315), - [sym_true] = ACTIONS(1313), - [sym_false] = ACTIONS(1313), - [sym_null] = ACTIONS(1313), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1315), - [anon_sym_ATimport] = ACTIONS(1315), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1313), - [anon_sym_ATcompatibility_alias] = ACTIONS(1315), - [anon_sym_ATprotocol] = ACTIONS(1315), - [anon_sym_ATclass] = ACTIONS(1315), - [anon_sym_ATinterface] = ACTIONS(1315), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1313), - [sym_method_attribute_specifier] = ACTIONS(1313), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1313), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1313), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1313), - [anon_sym_NS_AVAILABLE] = ACTIONS(1313), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1313), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1313), - [anon_sym_API_AVAILABLE] = ACTIONS(1313), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1313), - [anon_sym_API_DEPRECATED] = ACTIONS(1313), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1313), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1313), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1313), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1313), - [anon_sym___deprecated_msg] = ACTIONS(1313), - [anon_sym___deprecated_enum_msg] = ACTIONS(1313), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1313), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1313), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1313), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1313), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1313), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1313), - [anon_sym_ATimplementation] = ACTIONS(1315), - [anon_sym_typeof] = ACTIONS(1313), - [anon_sym___typeof] = ACTIONS(1313), - [anon_sym___typeof__] = ACTIONS(1313), - [sym_self] = ACTIONS(1313), - [sym_super] = ACTIONS(1313), - [sym_nil] = ACTIONS(1313), - [sym_id] = ACTIONS(1313), - [sym_instancetype] = ACTIONS(1313), - [sym_Class] = ACTIONS(1313), - [sym_SEL] = ACTIONS(1313), - [sym_IMP] = ACTIONS(1313), - [sym_BOOL] = ACTIONS(1313), - [sym_auto] = ACTIONS(1313), - [anon_sym_ATautoreleasepool] = ACTIONS(1315), - [anon_sym_ATsynchronized] = ACTIONS(1315), - [anon_sym_ATtry] = ACTIONS(1315), - [anon_sym_ATcatch] = ACTIONS(1315), - [anon_sym_ATfinally] = ACTIONS(1315), - [anon_sym_ATthrow] = ACTIONS(1315), - [anon_sym_ATselector] = ACTIONS(1315), - [anon_sym_ATencode] = ACTIONS(1315), - [anon_sym_AT] = ACTIONS(1313), - [sym_YES] = ACTIONS(1313), - [sym_NO] = ACTIONS(1313), - [anon_sym___builtin_available] = ACTIONS(1313), - [anon_sym_ATavailable] = ACTIONS(1315), - [anon_sym_va_arg] = ACTIONS(1313), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [464] = { - [sym_identifier] = ACTIONS(1309), - [aux_sym_preproc_include_token1] = ACTIONS(1311), - [aux_sym_preproc_def_token1] = ACTIONS(1311), - [aux_sym_preproc_if_token1] = ACTIONS(1309), - [aux_sym_preproc_if_token2] = ACTIONS(1309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1309), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1309), - [anon_sym_LPAREN2] = ACTIONS(1311), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_TILDE] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_CARET] = ACTIONS(1311), - [anon_sym_AMP] = ACTIONS(1311), - [anon_sym_SEMI] = ACTIONS(1311), - [anon_sym_typedef] = ACTIONS(1309), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym___attribute] = ACTIONS(1309), - [anon_sym___attribute__] = ACTIONS(1309), - [anon_sym___declspec] = ACTIONS(1309), - [anon_sym___cdecl] = ACTIONS(1309), - [anon_sym___clrcall] = ACTIONS(1309), - [anon_sym___stdcall] = ACTIONS(1309), - [anon_sym___fastcall] = ACTIONS(1309), - [anon_sym___thiscall] = ACTIONS(1309), - [anon_sym___vectorcall] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_LBRACK] = ACTIONS(1311), - [anon_sym_static] = ACTIONS(1309), - [anon_sym_auto] = ACTIONS(1309), - [anon_sym_register] = ACTIONS(1309), - [anon_sym_inline] = ACTIONS(1309), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1309), - [anon_sym_const] = ACTIONS(1309), - [anon_sym_volatile] = ACTIONS(1309), - [anon_sym_restrict] = ACTIONS(1309), - [anon_sym__Atomic] = ACTIONS(1309), - [anon_sym_in] = ACTIONS(1309), - [anon_sym_out] = ACTIONS(1309), - [anon_sym_inout] = ACTIONS(1309), - [anon_sym_bycopy] = ACTIONS(1309), - [anon_sym_byref] = ACTIONS(1309), - [anon_sym_oneway] = ACTIONS(1309), - [anon_sym__Nullable] = ACTIONS(1309), - [anon_sym__Nonnull] = ACTIONS(1309), - [anon_sym__Nullable_result] = ACTIONS(1309), - [anon_sym__Null_unspecified] = ACTIONS(1309), - [anon_sym___autoreleasing] = ACTIONS(1309), - [anon_sym___nullable] = ACTIONS(1309), - [anon_sym___nonnull] = ACTIONS(1309), - [anon_sym___strong] = ACTIONS(1309), - [anon_sym___weak] = ACTIONS(1309), - [anon_sym___bridge] = ACTIONS(1309), - [anon_sym___bridge_transfer] = ACTIONS(1309), - [anon_sym___bridge_retained] = ACTIONS(1309), - [anon_sym___unsafe_unretained] = ACTIONS(1309), - [anon_sym___block] = ACTIONS(1309), - [anon_sym___kindof] = ACTIONS(1309), - [anon_sym___unused] = ACTIONS(1309), - [anon_sym__Complex] = ACTIONS(1309), - [anon_sym___complex] = ACTIONS(1309), - [anon_sym_IBOutlet] = ACTIONS(1309), - [anon_sym_IBInspectable] = ACTIONS(1309), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1309), - [anon_sym_signed] = ACTIONS(1309), - [anon_sym_unsigned] = ACTIONS(1309), - [anon_sym_long] = ACTIONS(1309), - [anon_sym_short] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(1309), - [anon_sym_enum] = ACTIONS(1309), - [anon_sym_NS_ENUM] = ACTIONS(1309), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1309), - [anon_sym_NS_OPTIONS] = ACTIONS(1309), - [anon_sym_struct] = ACTIONS(1309), - [anon_sym_union] = ACTIONS(1309), - [anon_sym_if] = ACTIONS(1309), - [anon_sym_else] = ACTIONS(1309), - [anon_sym_switch] = ACTIONS(1309), - [anon_sym_case] = ACTIONS(1309), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1309), - [anon_sym_do] = ACTIONS(1309), - [anon_sym_for] = ACTIONS(1309), - [anon_sym_return] = ACTIONS(1309), - [anon_sym_break] = ACTIONS(1309), - [anon_sym_continue] = ACTIONS(1309), - [anon_sym_goto] = ACTIONS(1309), - [anon_sym_DASH_DASH] = ACTIONS(1311), - [anon_sym_PLUS_PLUS] = ACTIONS(1311), - [anon_sym_sizeof] = ACTIONS(1309), - [sym_number_literal] = ACTIONS(1311), - [anon_sym_L_SQUOTE] = ACTIONS(1311), - [anon_sym_u_SQUOTE] = ACTIONS(1311), - [anon_sym_U_SQUOTE] = ACTIONS(1311), - [anon_sym_u8_SQUOTE] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1311), - [anon_sym_L_DQUOTE] = ACTIONS(1311), - [anon_sym_u_DQUOTE] = ACTIONS(1311), - [anon_sym_U_DQUOTE] = ACTIONS(1311), - [anon_sym_u8_DQUOTE] = ACTIONS(1311), - [anon_sym_DQUOTE] = ACTIONS(1311), - [sym_true] = ACTIONS(1309), - [sym_false] = ACTIONS(1309), - [sym_null] = ACTIONS(1309), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1311), - [anon_sym_ATimport] = ACTIONS(1311), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1309), - [anon_sym_ATcompatibility_alias] = ACTIONS(1311), - [anon_sym_ATprotocol] = ACTIONS(1311), - [anon_sym_ATclass] = ACTIONS(1311), - [anon_sym_ATinterface] = ACTIONS(1311), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1309), - [sym_method_attribute_specifier] = ACTIONS(1309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1309), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1309), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1309), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1309), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1309), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1309), - [anon_sym_NS_AVAILABLE] = ACTIONS(1309), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1309), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1309), - [anon_sym_API_AVAILABLE] = ACTIONS(1309), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1309), - [anon_sym_API_DEPRECATED] = ACTIONS(1309), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1309), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1309), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1309), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1309), - [anon_sym___deprecated_msg] = ACTIONS(1309), - [anon_sym___deprecated_enum_msg] = ACTIONS(1309), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1309), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1309), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1309), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1309), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1309), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1309), - [anon_sym_ATimplementation] = ACTIONS(1311), - [anon_sym_typeof] = ACTIONS(1309), - [anon_sym___typeof] = ACTIONS(1309), - [anon_sym___typeof__] = ACTIONS(1309), - [sym_self] = ACTIONS(1309), - [sym_super] = ACTIONS(1309), - [sym_nil] = ACTIONS(1309), - [sym_id] = ACTIONS(1309), - [sym_instancetype] = ACTIONS(1309), - [sym_Class] = ACTIONS(1309), - [sym_SEL] = ACTIONS(1309), - [sym_IMP] = ACTIONS(1309), - [sym_BOOL] = ACTIONS(1309), - [sym_auto] = ACTIONS(1309), - [anon_sym_ATautoreleasepool] = ACTIONS(1311), - [anon_sym_ATsynchronized] = ACTIONS(1311), - [anon_sym_ATtry] = ACTIONS(1311), - [anon_sym_ATcatch] = ACTIONS(1311), - [anon_sym_ATfinally] = ACTIONS(1311), - [anon_sym_ATthrow] = ACTIONS(1311), - [anon_sym_ATselector] = ACTIONS(1311), - [anon_sym_ATencode] = ACTIONS(1311), - [anon_sym_AT] = ACTIONS(1309), - [sym_YES] = ACTIONS(1309), - [sym_NO] = ACTIONS(1309), - [anon_sym___builtin_available] = ACTIONS(1309), - [anon_sym_ATavailable] = ACTIONS(1311), - [anon_sym_va_arg] = ACTIONS(1309), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [465] = { - [sym_identifier] = ACTIONS(1305), - [aux_sym_preproc_include_token1] = ACTIONS(1307), - [aux_sym_preproc_def_token1] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1305), - [aux_sym_preproc_if_token2] = ACTIONS(1305), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1305), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1305), - [anon_sym_LPAREN2] = ACTIONS(1307), - [anon_sym_BANG] = ACTIONS(1307), - [anon_sym_TILDE] = ACTIONS(1307), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_PLUS] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1307), - [anon_sym_CARET] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym_typedef] = ACTIONS(1305), - [anon_sym_extern] = ACTIONS(1305), - [anon_sym___attribute] = ACTIONS(1305), - [anon_sym___attribute__] = ACTIONS(1305), - [anon_sym___declspec] = ACTIONS(1305), - [anon_sym___cdecl] = ACTIONS(1305), - [anon_sym___clrcall] = ACTIONS(1305), - [anon_sym___stdcall] = ACTIONS(1305), - [anon_sym___fastcall] = ACTIONS(1305), - [anon_sym___thiscall] = ACTIONS(1305), - [anon_sym___vectorcall] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1307), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_static] = ACTIONS(1305), - [anon_sym_auto] = ACTIONS(1305), - [anon_sym_register] = ACTIONS(1305), - [anon_sym_inline] = ACTIONS(1305), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1305), - [anon_sym_const] = ACTIONS(1305), - [anon_sym_volatile] = ACTIONS(1305), - [anon_sym_restrict] = ACTIONS(1305), - [anon_sym__Atomic] = ACTIONS(1305), - [anon_sym_in] = ACTIONS(1305), - [anon_sym_out] = ACTIONS(1305), - [anon_sym_inout] = ACTIONS(1305), - [anon_sym_bycopy] = ACTIONS(1305), - [anon_sym_byref] = ACTIONS(1305), - [anon_sym_oneway] = ACTIONS(1305), - [anon_sym__Nullable] = ACTIONS(1305), - [anon_sym__Nonnull] = ACTIONS(1305), - [anon_sym__Nullable_result] = ACTIONS(1305), - [anon_sym__Null_unspecified] = ACTIONS(1305), - [anon_sym___autoreleasing] = ACTIONS(1305), - [anon_sym___nullable] = ACTIONS(1305), - [anon_sym___nonnull] = ACTIONS(1305), - [anon_sym___strong] = ACTIONS(1305), - [anon_sym___weak] = ACTIONS(1305), - [anon_sym___bridge] = ACTIONS(1305), - [anon_sym___bridge_transfer] = ACTIONS(1305), - [anon_sym___bridge_retained] = ACTIONS(1305), - [anon_sym___unsafe_unretained] = ACTIONS(1305), - [anon_sym___block] = ACTIONS(1305), - [anon_sym___kindof] = ACTIONS(1305), - [anon_sym___unused] = ACTIONS(1305), - [anon_sym__Complex] = ACTIONS(1305), - [anon_sym___complex] = ACTIONS(1305), - [anon_sym_IBOutlet] = ACTIONS(1305), - [anon_sym_IBInspectable] = ACTIONS(1305), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1305), - [anon_sym_signed] = ACTIONS(1305), - [anon_sym_unsigned] = ACTIONS(1305), - [anon_sym_long] = ACTIONS(1305), - [anon_sym_short] = ACTIONS(1305), - [sym_primitive_type] = ACTIONS(1305), - [anon_sym_enum] = ACTIONS(1305), - [anon_sym_NS_ENUM] = ACTIONS(1305), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1305), - [anon_sym_NS_OPTIONS] = ACTIONS(1305), - [anon_sym_struct] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1305), - [anon_sym_if] = ACTIONS(1305), - [anon_sym_else] = ACTIONS(1305), - [anon_sym_switch] = ACTIONS(1305), - [anon_sym_case] = ACTIONS(1305), - [anon_sym_default] = ACTIONS(1305), - [anon_sym_while] = ACTIONS(1305), - [anon_sym_do] = ACTIONS(1305), - [anon_sym_for] = ACTIONS(1305), - [anon_sym_return] = ACTIONS(1305), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1305), - [anon_sym_goto] = ACTIONS(1305), - [anon_sym_DASH_DASH] = ACTIONS(1307), - [anon_sym_PLUS_PLUS] = ACTIONS(1307), - [anon_sym_sizeof] = ACTIONS(1305), - [sym_number_literal] = ACTIONS(1307), - [anon_sym_L_SQUOTE] = ACTIONS(1307), - [anon_sym_u_SQUOTE] = ACTIONS(1307), - [anon_sym_U_SQUOTE] = ACTIONS(1307), - [anon_sym_u8_SQUOTE] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1307), - [anon_sym_L_DQUOTE] = ACTIONS(1307), - [anon_sym_u_DQUOTE] = ACTIONS(1307), - [anon_sym_U_DQUOTE] = ACTIONS(1307), - [anon_sym_u8_DQUOTE] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [sym_true] = ACTIONS(1305), - [sym_false] = ACTIONS(1305), - [sym_null] = ACTIONS(1305), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1307), - [anon_sym_ATimport] = ACTIONS(1307), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1305), - [anon_sym_ATcompatibility_alias] = ACTIONS(1307), - [anon_sym_ATprotocol] = ACTIONS(1307), - [anon_sym_ATclass] = ACTIONS(1307), - [anon_sym_ATinterface] = ACTIONS(1307), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1305), - [sym_method_attribute_specifier] = ACTIONS(1305), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1305), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1305), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1305), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1305), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1305), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1305), - [anon_sym_NS_AVAILABLE] = ACTIONS(1305), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1305), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1305), - [anon_sym_API_AVAILABLE] = ACTIONS(1305), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1305), - [anon_sym_API_DEPRECATED] = ACTIONS(1305), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1305), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1305), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1305), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1305), - [anon_sym___deprecated_msg] = ACTIONS(1305), - [anon_sym___deprecated_enum_msg] = ACTIONS(1305), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1305), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1305), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1305), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1305), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1305), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1305), - [anon_sym_ATimplementation] = ACTIONS(1307), - [anon_sym_typeof] = ACTIONS(1305), - [anon_sym___typeof] = ACTIONS(1305), - [anon_sym___typeof__] = ACTIONS(1305), - [sym_self] = ACTIONS(1305), - [sym_super] = ACTIONS(1305), - [sym_nil] = ACTIONS(1305), - [sym_id] = ACTIONS(1305), - [sym_instancetype] = ACTIONS(1305), - [sym_Class] = ACTIONS(1305), - [sym_SEL] = ACTIONS(1305), - [sym_IMP] = ACTIONS(1305), - [sym_BOOL] = ACTIONS(1305), - [sym_auto] = ACTIONS(1305), - [anon_sym_ATautoreleasepool] = ACTIONS(1307), - [anon_sym_ATsynchronized] = ACTIONS(1307), - [anon_sym_ATtry] = ACTIONS(1307), - [anon_sym_ATcatch] = ACTIONS(1307), - [anon_sym_ATfinally] = ACTIONS(1307), - [anon_sym_ATthrow] = ACTIONS(1307), - [anon_sym_ATselector] = ACTIONS(1307), - [anon_sym_ATencode] = ACTIONS(1307), - [anon_sym_AT] = ACTIONS(1305), - [sym_YES] = ACTIONS(1305), - [sym_NO] = ACTIONS(1305), - [anon_sym___builtin_available] = ACTIONS(1305), - [anon_sym_ATavailable] = ACTIONS(1307), - [anon_sym_va_arg] = ACTIONS(1305), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [466] = { - [sym_identifier] = ACTIONS(1317), - [aux_sym_preproc_include_token1] = ACTIONS(1319), - [aux_sym_preproc_def_token1] = ACTIONS(1319), - [aux_sym_preproc_if_token1] = ACTIONS(1317), - [aux_sym_preproc_if_token2] = ACTIONS(1317), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1317), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1317), - [anon_sym_LPAREN2] = ACTIONS(1319), - [anon_sym_BANG] = ACTIONS(1319), - [anon_sym_TILDE] = ACTIONS(1319), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_PLUS] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_CARET] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1319), - [anon_sym_typedef] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1317), - [anon_sym___attribute] = ACTIONS(1317), - [anon_sym___attribute__] = ACTIONS(1317), - [anon_sym___declspec] = ACTIONS(1317), - [anon_sym___cdecl] = ACTIONS(1317), - [anon_sym___clrcall] = ACTIONS(1317), - [anon_sym___stdcall] = ACTIONS(1317), - [anon_sym___fastcall] = ACTIONS(1317), - [anon_sym___thiscall] = ACTIONS(1317), - [anon_sym___vectorcall] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1319), - [anon_sym_LBRACK] = ACTIONS(1319), - [anon_sym_static] = ACTIONS(1317), - [anon_sym_auto] = ACTIONS(1317), - [anon_sym_register] = ACTIONS(1317), - [anon_sym_inline] = ACTIONS(1317), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_volatile] = ACTIONS(1317), - [anon_sym_restrict] = ACTIONS(1317), - [anon_sym__Atomic] = ACTIONS(1317), - [anon_sym_in] = ACTIONS(1317), - [anon_sym_out] = ACTIONS(1317), - [anon_sym_inout] = ACTIONS(1317), - [anon_sym_bycopy] = ACTIONS(1317), - [anon_sym_byref] = ACTIONS(1317), - [anon_sym_oneway] = ACTIONS(1317), - [anon_sym__Nullable] = ACTIONS(1317), - [anon_sym__Nonnull] = ACTIONS(1317), - [anon_sym__Nullable_result] = ACTIONS(1317), - [anon_sym__Null_unspecified] = ACTIONS(1317), - [anon_sym___autoreleasing] = ACTIONS(1317), - [anon_sym___nullable] = ACTIONS(1317), - [anon_sym___nonnull] = ACTIONS(1317), - [anon_sym___strong] = ACTIONS(1317), - [anon_sym___weak] = ACTIONS(1317), - [anon_sym___bridge] = ACTIONS(1317), - [anon_sym___bridge_transfer] = ACTIONS(1317), - [anon_sym___bridge_retained] = ACTIONS(1317), - [anon_sym___unsafe_unretained] = ACTIONS(1317), - [anon_sym___block] = ACTIONS(1317), - [anon_sym___kindof] = ACTIONS(1317), - [anon_sym___unused] = ACTIONS(1317), - [anon_sym__Complex] = ACTIONS(1317), - [anon_sym___complex] = ACTIONS(1317), - [anon_sym_IBOutlet] = ACTIONS(1317), - [anon_sym_IBInspectable] = ACTIONS(1317), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1317), - [anon_sym_signed] = ACTIONS(1317), - [anon_sym_unsigned] = ACTIONS(1317), - [anon_sym_long] = ACTIONS(1317), - [anon_sym_short] = ACTIONS(1317), - [sym_primitive_type] = ACTIONS(1317), - [anon_sym_enum] = ACTIONS(1317), - [anon_sym_NS_ENUM] = ACTIONS(1317), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1317), - [anon_sym_NS_OPTIONS] = ACTIONS(1317), - [anon_sym_struct] = ACTIONS(1317), - [anon_sym_union] = ACTIONS(1317), - [anon_sym_if] = ACTIONS(1317), - [anon_sym_else] = ACTIONS(1317), - [anon_sym_switch] = ACTIONS(1317), - [anon_sym_case] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1317), - [anon_sym_do] = ACTIONS(1317), - [anon_sym_for] = ACTIONS(1317), - [anon_sym_return] = ACTIONS(1317), - [anon_sym_break] = ACTIONS(1317), - [anon_sym_continue] = ACTIONS(1317), - [anon_sym_goto] = ACTIONS(1317), - [anon_sym_DASH_DASH] = ACTIONS(1319), - [anon_sym_PLUS_PLUS] = ACTIONS(1319), - [anon_sym_sizeof] = ACTIONS(1317), - [sym_number_literal] = ACTIONS(1319), - [anon_sym_L_SQUOTE] = ACTIONS(1319), - [anon_sym_u_SQUOTE] = ACTIONS(1319), - [anon_sym_U_SQUOTE] = ACTIONS(1319), - [anon_sym_u8_SQUOTE] = ACTIONS(1319), - [anon_sym_SQUOTE] = ACTIONS(1319), - [anon_sym_L_DQUOTE] = ACTIONS(1319), - [anon_sym_u_DQUOTE] = ACTIONS(1319), - [anon_sym_U_DQUOTE] = ACTIONS(1319), - [anon_sym_u8_DQUOTE] = ACTIONS(1319), - [anon_sym_DQUOTE] = ACTIONS(1319), - [sym_true] = ACTIONS(1317), - [sym_false] = ACTIONS(1317), - [sym_null] = ACTIONS(1317), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1319), - [anon_sym_ATimport] = ACTIONS(1319), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1317), - [anon_sym_ATcompatibility_alias] = ACTIONS(1319), - [anon_sym_ATprotocol] = ACTIONS(1319), - [anon_sym_ATclass] = ACTIONS(1319), - [anon_sym_ATinterface] = ACTIONS(1319), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1317), - [sym_method_attribute_specifier] = ACTIONS(1317), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1317), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1317), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1317), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1317), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1317), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1317), - [anon_sym_NS_AVAILABLE] = ACTIONS(1317), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1317), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1317), - [anon_sym_API_AVAILABLE] = ACTIONS(1317), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1317), - [anon_sym_API_DEPRECATED] = ACTIONS(1317), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1317), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1317), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1317), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1317), - [anon_sym___deprecated_msg] = ACTIONS(1317), - [anon_sym___deprecated_enum_msg] = ACTIONS(1317), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1317), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1317), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1317), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1317), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1317), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1317), - [anon_sym_ATimplementation] = ACTIONS(1319), - [anon_sym_typeof] = ACTIONS(1317), - [anon_sym___typeof] = ACTIONS(1317), - [anon_sym___typeof__] = ACTIONS(1317), - [sym_self] = ACTIONS(1317), - [sym_super] = ACTIONS(1317), - [sym_nil] = ACTIONS(1317), - [sym_id] = ACTIONS(1317), - [sym_instancetype] = ACTIONS(1317), - [sym_Class] = ACTIONS(1317), - [sym_SEL] = ACTIONS(1317), - [sym_IMP] = ACTIONS(1317), - [sym_BOOL] = ACTIONS(1317), - [sym_auto] = ACTIONS(1317), - [anon_sym_ATautoreleasepool] = ACTIONS(1319), - [anon_sym_ATsynchronized] = ACTIONS(1319), - [anon_sym_ATtry] = ACTIONS(1319), - [anon_sym_ATcatch] = ACTIONS(1319), - [anon_sym_ATfinally] = ACTIONS(1319), - [anon_sym_ATthrow] = ACTIONS(1319), - [anon_sym_ATselector] = ACTIONS(1319), - [anon_sym_ATencode] = ACTIONS(1319), - [anon_sym_AT] = ACTIONS(1317), - [sym_YES] = ACTIONS(1317), - [sym_NO] = ACTIONS(1317), - [anon_sym___builtin_available] = ACTIONS(1317), - [anon_sym_ATavailable] = ACTIONS(1319), - [anon_sym_va_arg] = ACTIONS(1317), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [467] = { - [sym_identifier] = ACTIONS(1301), - [aux_sym_preproc_include_token1] = ACTIONS(1303), - [aux_sym_preproc_def_token1] = ACTIONS(1303), - [aux_sym_preproc_if_token1] = ACTIONS(1301), - [aux_sym_preproc_if_token2] = ACTIONS(1301), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1301), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1301), - [anon_sym_LPAREN2] = ACTIONS(1303), - [anon_sym_BANG] = ACTIONS(1303), - [anon_sym_TILDE] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_PLUS] = ACTIONS(1301), - [anon_sym_STAR] = ACTIONS(1303), - [anon_sym_CARET] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1303), - [anon_sym_typedef] = ACTIONS(1301), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym___attribute] = ACTIONS(1301), - [anon_sym___attribute__] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(1301), - [anon_sym___cdecl] = ACTIONS(1301), - [anon_sym___clrcall] = ACTIONS(1301), - [anon_sym___stdcall] = ACTIONS(1301), - [anon_sym___fastcall] = ACTIONS(1301), - [anon_sym___thiscall] = ACTIONS(1301), - [anon_sym___vectorcall] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1303), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_auto] = ACTIONS(1301), - [anon_sym_register] = ACTIONS(1301), - [anon_sym_inline] = ACTIONS(1301), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1301), - [anon_sym_const] = ACTIONS(1301), - [anon_sym_volatile] = ACTIONS(1301), - [anon_sym_restrict] = ACTIONS(1301), - [anon_sym__Atomic] = ACTIONS(1301), - [anon_sym_in] = ACTIONS(1301), - [anon_sym_out] = ACTIONS(1301), - [anon_sym_inout] = ACTIONS(1301), - [anon_sym_bycopy] = ACTIONS(1301), - [anon_sym_byref] = ACTIONS(1301), - [anon_sym_oneway] = ACTIONS(1301), - [anon_sym__Nullable] = ACTIONS(1301), - [anon_sym__Nonnull] = ACTIONS(1301), - [anon_sym__Nullable_result] = ACTIONS(1301), - [anon_sym__Null_unspecified] = ACTIONS(1301), - [anon_sym___autoreleasing] = ACTIONS(1301), - [anon_sym___nullable] = ACTIONS(1301), - [anon_sym___nonnull] = ACTIONS(1301), - [anon_sym___strong] = ACTIONS(1301), - [anon_sym___weak] = ACTIONS(1301), - [anon_sym___bridge] = ACTIONS(1301), - [anon_sym___bridge_transfer] = ACTIONS(1301), - [anon_sym___bridge_retained] = ACTIONS(1301), - [anon_sym___unsafe_unretained] = ACTIONS(1301), - [anon_sym___block] = ACTIONS(1301), - [anon_sym___kindof] = ACTIONS(1301), - [anon_sym___unused] = ACTIONS(1301), - [anon_sym__Complex] = ACTIONS(1301), - [anon_sym___complex] = ACTIONS(1301), - [anon_sym_IBOutlet] = ACTIONS(1301), - [anon_sym_IBInspectable] = ACTIONS(1301), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1301), - [anon_sym_signed] = ACTIONS(1301), - [anon_sym_unsigned] = ACTIONS(1301), - [anon_sym_long] = ACTIONS(1301), - [anon_sym_short] = ACTIONS(1301), - [sym_primitive_type] = ACTIONS(1301), - [anon_sym_enum] = ACTIONS(1301), - [anon_sym_NS_ENUM] = ACTIONS(1301), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1301), - [anon_sym_NS_OPTIONS] = ACTIONS(1301), - [anon_sym_struct] = ACTIONS(1301), - [anon_sym_union] = ACTIONS(1301), - [anon_sym_if] = ACTIONS(1301), - [anon_sym_else] = ACTIONS(1301), - [anon_sym_switch] = ACTIONS(1301), - [anon_sym_case] = ACTIONS(1301), - [anon_sym_default] = ACTIONS(1301), - [anon_sym_while] = ACTIONS(1301), - [anon_sym_do] = ACTIONS(1301), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_return] = ACTIONS(1301), - [anon_sym_break] = ACTIONS(1301), - [anon_sym_continue] = ACTIONS(1301), - [anon_sym_goto] = ACTIONS(1301), - [anon_sym_DASH_DASH] = ACTIONS(1303), - [anon_sym_PLUS_PLUS] = ACTIONS(1303), - [anon_sym_sizeof] = ACTIONS(1301), - [sym_number_literal] = ACTIONS(1303), - [anon_sym_L_SQUOTE] = ACTIONS(1303), - [anon_sym_u_SQUOTE] = ACTIONS(1303), - [anon_sym_U_SQUOTE] = ACTIONS(1303), - [anon_sym_u8_SQUOTE] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1303), - [anon_sym_L_DQUOTE] = ACTIONS(1303), - [anon_sym_u_DQUOTE] = ACTIONS(1303), - [anon_sym_U_DQUOTE] = ACTIONS(1303), - [anon_sym_u8_DQUOTE] = ACTIONS(1303), - [anon_sym_DQUOTE] = ACTIONS(1303), - [sym_true] = ACTIONS(1301), - [sym_false] = ACTIONS(1301), - [sym_null] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1303), - [anon_sym_ATimport] = ACTIONS(1303), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1301), - [anon_sym_ATcompatibility_alias] = ACTIONS(1303), - [anon_sym_ATprotocol] = ACTIONS(1303), - [anon_sym_ATclass] = ACTIONS(1303), - [anon_sym_ATinterface] = ACTIONS(1303), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1301), - [sym_method_attribute_specifier] = ACTIONS(1301), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1301), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1301), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1301), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1301), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1301), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1301), - [anon_sym_NS_AVAILABLE] = ACTIONS(1301), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1301), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1301), - [anon_sym_API_AVAILABLE] = ACTIONS(1301), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1301), - [anon_sym_API_DEPRECATED] = ACTIONS(1301), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1301), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1301), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1301), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1301), - [anon_sym___deprecated_msg] = ACTIONS(1301), - [anon_sym___deprecated_enum_msg] = ACTIONS(1301), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1301), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1301), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1301), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1301), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1301), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1301), - [anon_sym_ATimplementation] = ACTIONS(1303), - [anon_sym_typeof] = ACTIONS(1301), - [anon_sym___typeof] = ACTIONS(1301), - [anon_sym___typeof__] = ACTIONS(1301), - [sym_self] = ACTIONS(1301), - [sym_super] = ACTIONS(1301), - [sym_nil] = ACTIONS(1301), - [sym_id] = ACTIONS(1301), - [sym_instancetype] = ACTIONS(1301), - [sym_Class] = ACTIONS(1301), - [sym_SEL] = ACTIONS(1301), - [sym_IMP] = ACTIONS(1301), - [sym_BOOL] = ACTIONS(1301), - [sym_auto] = ACTIONS(1301), - [anon_sym_ATautoreleasepool] = ACTIONS(1303), - [anon_sym_ATsynchronized] = ACTIONS(1303), - [anon_sym_ATtry] = ACTIONS(1303), - [anon_sym_ATcatch] = ACTIONS(1303), - [anon_sym_ATfinally] = ACTIONS(1303), - [anon_sym_ATthrow] = ACTIONS(1303), - [anon_sym_ATselector] = ACTIONS(1303), - [anon_sym_ATencode] = ACTIONS(1303), - [anon_sym_AT] = ACTIONS(1301), - [sym_YES] = ACTIONS(1301), - [sym_NO] = ACTIONS(1301), - [anon_sym___builtin_available] = ACTIONS(1301), - [anon_sym_ATavailable] = ACTIONS(1303), - [anon_sym_va_arg] = ACTIONS(1301), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [468] = { - [sym_identifier] = ACTIONS(1297), - [aux_sym_preproc_include_token1] = ACTIONS(1299), - [aux_sym_preproc_def_token1] = ACTIONS(1299), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_if_token2] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1297), - [anon_sym_LPAREN2] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_STAR] = ACTIONS(1299), - [anon_sym_CARET] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1299), - [anon_sym_typedef] = ACTIONS(1297), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym___attribute] = ACTIONS(1297), - [anon_sym___attribute__] = ACTIONS(1297), - [anon_sym___declspec] = ACTIONS(1297), - [anon_sym___cdecl] = ACTIONS(1297), - [anon_sym___clrcall] = ACTIONS(1297), - [anon_sym___stdcall] = ACTIONS(1297), - [anon_sym___fastcall] = ACTIONS(1297), - [anon_sym___thiscall] = ACTIONS(1297), - [anon_sym___vectorcall] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_auto] = ACTIONS(1297), - [anon_sym_register] = ACTIONS(1297), - [anon_sym_inline] = ACTIONS(1297), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_volatile] = ACTIONS(1297), - [anon_sym_restrict] = ACTIONS(1297), - [anon_sym__Atomic] = ACTIONS(1297), - [anon_sym_in] = ACTIONS(1297), - [anon_sym_out] = ACTIONS(1297), - [anon_sym_inout] = ACTIONS(1297), - [anon_sym_bycopy] = ACTIONS(1297), - [anon_sym_byref] = ACTIONS(1297), - [anon_sym_oneway] = ACTIONS(1297), - [anon_sym__Nullable] = ACTIONS(1297), - [anon_sym__Nonnull] = ACTIONS(1297), - [anon_sym__Nullable_result] = ACTIONS(1297), - [anon_sym__Null_unspecified] = ACTIONS(1297), - [anon_sym___autoreleasing] = ACTIONS(1297), - [anon_sym___nullable] = ACTIONS(1297), - [anon_sym___nonnull] = ACTIONS(1297), - [anon_sym___strong] = ACTIONS(1297), - [anon_sym___weak] = ACTIONS(1297), - [anon_sym___bridge] = ACTIONS(1297), - [anon_sym___bridge_transfer] = ACTIONS(1297), - [anon_sym___bridge_retained] = ACTIONS(1297), - [anon_sym___unsafe_unretained] = ACTIONS(1297), - [anon_sym___block] = ACTIONS(1297), - [anon_sym___kindof] = ACTIONS(1297), - [anon_sym___unused] = ACTIONS(1297), - [anon_sym__Complex] = ACTIONS(1297), - [anon_sym___complex] = ACTIONS(1297), - [anon_sym_IBOutlet] = ACTIONS(1297), - [anon_sym_IBInspectable] = ACTIONS(1297), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1297), - [anon_sym_unsigned] = ACTIONS(1297), - [anon_sym_long] = ACTIONS(1297), - [anon_sym_short] = ACTIONS(1297), - [sym_primitive_type] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_NS_ENUM] = ACTIONS(1297), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1297), - [anon_sym_NS_OPTIONS] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_else] = ACTIONS(1297), - [anon_sym_switch] = ACTIONS(1297), - [anon_sym_case] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_do] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_goto] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_sizeof] = ACTIONS(1297), - [sym_number_literal] = ACTIONS(1299), - [anon_sym_L_SQUOTE] = ACTIONS(1299), - [anon_sym_u_SQUOTE] = ACTIONS(1299), - [anon_sym_U_SQUOTE] = ACTIONS(1299), - [anon_sym_u8_SQUOTE] = ACTIONS(1299), - [anon_sym_SQUOTE] = ACTIONS(1299), - [anon_sym_L_DQUOTE] = ACTIONS(1299), - [anon_sym_u_DQUOTE] = ACTIONS(1299), - [anon_sym_U_DQUOTE] = ACTIONS(1299), - [anon_sym_u8_DQUOTE] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [sym_null] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1299), - [anon_sym_ATimport] = ACTIONS(1299), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1297), - [anon_sym_ATcompatibility_alias] = ACTIONS(1299), - [anon_sym_ATprotocol] = ACTIONS(1299), - [anon_sym_ATclass] = ACTIONS(1299), - [anon_sym_ATinterface] = ACTIONS(1299), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1297), - [sym_method_attribute_specifier] = ACTIONS(1297), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1297), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1297), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1297), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1297), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1297), - [anon_sym_NS_AVAILABLE] = ACTIONS(1297), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1297), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_API_AVAILABLE] = ACTIONS(1297), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_API_DEPRECATED] = ACTIONS(1297), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1297), - [anon_sym___deprecated_msg] = ACTIONS(1297), - [anon_sym___deprecated_enum_msg] = ACTIONS(1297), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1297), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1297), - [anon_sym_ATimplementation] = ACTIONS(1299), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym___typeof] = ACTIONS(1297), - [anon_sym___typeof__] = ACTIONS(1297), - [sym_self] = ACTIONS(1297), - [sym_super] = ACTIONS(1297), - [sym_nil] = ACTIONS(1297), - [sym_id] = ACTIONS(1297), - [sym_instancetype] = ACTIONS(1297), - [sym_Class] = ACTIONS(1297), - [sym_SEL] = ACTIONS(1297), - [sym_IMP] = ACTIONS(1297), - [sym_BOOL] = ACTIONS(1297), - [sym_auto] = ACTIONS(1297), - [anon_sym_ATautoreleasepool] = ACTIONS(1299), - [anon_sym_ATsynchronized] = ACTIONS(1299), - [anon_sym_ATtry] = ACTIONS(1299), - [anon_sym_ATcatch] = ACTIONS(1299), - [anon_sym_ATfinally] = ACTIONS(1299), - [anon_sym_ATthrow] = ACTIONS(1299), - [anon_sym_ATselector] = ACTIONS(1299), - [anon_sym_ATencode] = ACTIONS(1299), - [anon_sym_AT] = ACTIONS(1297), - [sym_YES] = ACTIONS(1297), - [sym_NO] = ACTIONS(1297), - [anon_sym___builtin_available] = ACTIONS(1297), - [anon_sym_ATavailable] = ACTIONS(1299), - [anon_sym_va_arg] = ACTIONS(1297), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [469] = { - [sym_identifier] = ACTIONS(1487), - [aux_sym_preproc_include_token1] = ACTIONS(1485), - [aux_sym_preproc_def_token1] = ACTIONS(1485), - [aux_sym_preproc_if_token1] = ACTIONS(1487), - [aux_sym_preproc_if_token2] = ACTIONS(1487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1487), - [anon_sym_LPAREN2] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_typedef] = ACTIONS(1487), - [anon_sym_extern] = ACTIONS(1487), - [anon_sym___attribute] = ACTIONS(1487), - [anon_sym___attribute__] = ACTIONS(1487), - [anon_sym___declspec] = ACTIONS(1487), - [anon_sym___cdecl] = ACTIONS(1487), - [anon_sym___clrcall] = ACTIONS(1487), - [anon_sym___stdcall] = ACTIONS(1487), - [anon_sym___fastcall] = ACTIONS(1487), - [anon_sym___thiscall] = ACTIONS(1487), - [anon_sym___vectorcall] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_auto] = ACTIONS(1487), - [anon_sym_register] = ACTIONS(1487), - [anon_sym_inline] = ACTIONS(1487), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_volatile] = ACTIONS(1487), - [anon_sym_restrict] = ACTIONS(1487), - [anon_sym__Atomic] = ACTIONS(1487), - [anon_sym_in] = ACTIONS(1487), - [anon_sym_out] = ACTIONS(1487), - [anon_sym_inout] = ACTIONS(1487), - [anon_sym_bycopy] = ACTIONS(1487), - [anon_sym_byref] = ACTIONS(1487), - [anon_sym_oneway] = ACTIONS(1487), - [anon_sym__Nullable] = ACTIONS(1487), - [anon_sym__Nonnull] = ACTIONS(1487), - [anon_sym__Nullable_result] = ACTIONS(1487), - [anon_sym__Null_unspecified] = ACTIONS(1487), - [anon_sym___autoreleasing] = ACTIONS(1487), - [anon_sym___nullable] = ACTIONS(1487), - [anon_sym___nonnull] = ACTIONS(1487), - [anon_sym___strong] = ACTIONS(1487), - [anon_sym___weak] = ACTIONS(1487), - [anon_sym___bridge] = ACTIONS(1487), - [anon_sym___bridge_transfer] = ACTIONS(1487), - [anon_sym___bridge_retained] = ACTIONS(1487), - [anon_sym___unsafe_unretained] = ACTIONS(1487), - [anon_sym___block] = ACTIONS(1487), - [anon_sym___kindof] = ACTIONS(1487), - [anon_sym___unused] = ACTIONS(1487), - [anon_sym__Complex] = ACTIONS(1487), - [anon_sym___complex] = ACTIONS(1487), - [anon_sym_IBOutlet] = ACTIONS(1487), - [anon_sym_IBInspectable] = ACTIONS(1487), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1487), - [anon_sym_signed] = ACTIONS(1487), - [anon_sym_unsigned] = ACTIONS(1487), - [anon_sym_long] = ACTIONS(1487), - [anon_sym_short] = ACTIONS(1487), - [sym_primitive_type] = ACTIONS(1487), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_NS_ENUM] = ACTIONS(1487), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1487), - [anon_sym_NS_OPTIONS] = ACTIONS(1487), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1487), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_else] = ACTIONS(1487), - [anon_sym_switch] = ACTIONS(1487), - [anon_sym_case] = ACTIONS(1487), - [anon_sym_default] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_do] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_goto] = ACTIONS(1487), - [anon_sym_DASH_DASH] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_sizeof] = ACTIONS(1487), - [sym_number_literal] = ACTIONS(1485), - [anon_sym_L_SQUOTE] = ACTIONS(1485), - [anon_sym_u_SQUOTE] = ACTIONS(1485), - [anon_sym_U_SQUOTE] = ACTIONS(1485), - [anon_sym_u8_SQUOTE] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_L_DQUOTE] = ACTIONS(1485), - [anon_sym_u_DQUOTE] = ACTIONS(1485), - [anon_sym_U_DQUOTE] = ACTIONS(1485), - [anon_sym_u8_DQUOTE] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [sym_true] = ACTIONS(1487), - [sym_false] = ACTIONS(1487), - [sym_null] = ACTIONS(1487), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1485), - [anon_sym_ATimport] = ACTIONS(1485), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1487), - [anon_sym_ATcompatibility_alias] = ACTIONS(1485), - [anon_sym_ATprotocol] = ACTIONS(1485), - [anon_sym_ATclass] = ACTIONS(1485), - [anon_sym_ATinterface] = ACTIONS(1485), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1487), - [sym_method_attribute_specifier] = ACTIONS(1487), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1487), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1487), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1487), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1487), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1487), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1487), - [anon_sym_NS_AVAILABLE] = ACTIONS(1487), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1487), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1487), - [anon_sym_API_AVAILABLE] = ACTIONS(1487), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1487), - [anon_sym_API_DEPRECATED] = ACTIONS(1487), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1487), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1487), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1487), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1487), - [anon_sym___deprecated_msg] = ACTIONS(1487), - [anon_sym___deprecated_enum_msg] = ACTIONS(1487), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1487), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1487), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1487), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1487), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1487), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1487), - [anon_sym_ATimplementation] = ACTIONS(1485), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym___typeof] = ACTIONS(1487), - [anon_sym___typeof__] = ACTIONS(1487), - [sym_self] = ACTIONS(1487), - [sym_super] = ACTIONS(1487), - [sym_nil] = ACTIONS(1487), - [sym_id] = ACTIONS(1487), - [sym_instancetype] = ACTIONS(1487), - [sym_Class] = ACTIONS(1487), - [sym_SEL] = ACTIONS(1487), - [sym_IMP] = ACTIONS(1487), - [sym_BOOL] = ACTIONS(1487), - [sym_auto] = ACTIONS(1487), - [anon_sym_ATautoreleasepool] = ACTIONS(1485), - [anon_sym_ATsynchronized] = ACTIONS(1485), - [anon_sym_ATtry] = ACTIONS(1485), - [anon_sym_ATcatch] = ACTIONS(1485), - [anon_sym_ATfinally] = ACTIONS(1485), - [anon_sym_ATthrow] = ACTIONS(1485), - [anon_sym_ATselector] = ACTIONS(1485), - [anon_sym_ATencode] = ACTIONS(1485), - [anon_sym_AT] = ACTIONS(1487), - [sym_YES] = ACTIONS(1487), - [sym_NO] = ACTIONS(1487), - [anon_sym___builtin_available] = ACTIONS(1487), - [anon_sym_ATavailable] = ACTIONS(1485), - [anon_sym_va_arg] = ACTIONS(1487), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [470] = { - [sym_identifier] = ACTIONS(1681), - [aux_sym_preproc_include_token1] = ACTIONS(1683), - [aux_sym_preproc_def_token1] = ACTIONS(1683), - [aux_sym_preproc_if_token1] = ACTIONS(1681), - [aux_sym_preproc_if_token2] = ACTIONS(1681), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1681), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1683), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_typedef] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym___attribute] = ACTIONS(1681), - [anon_sym___attribute__] = ACTIONS(1681), - [anon_sym___declspec] = ACTIONS(1681), - [anon_sym___cdecl] = ACTIONS(1681), - [anon_sym___clrcall] = ACTIONS(1681), - [anon_sym___stdcall] = ACTIONS(1681), - [anon_sym___fastcall] = ACTIONS(1681), - [anon_sym___thiscall] = ACTIONS(1681), - [anon_sym___vectorcall] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1683), - [anon_sym_LBRACK] = ACTIONS(1683), - [anon_sym_static] = ACTIONS(1681), - [anon_sym_auto] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1681), - [anon_sym_inline] = ACTIONS(1681), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [anon_sym_volatile] = ACTIONS(1681), - [anon_sym_restrict] = ACTIONS(1681), - [anon_sym__Atomic] = ACTIONS(1681), - [anon_sym_in] = ACTIONS(1681), - [anon_sym_out] = ACTIONS(1681), - [anon_sym_inout] = ACTIONS(1681), - [anon_sym_bycopy] = ACTIONS(1681), - [anon_sym_byref] = ACTIONS(1681), - [anon_sym_oneway] = ACTIONS(1681), - [anon_sym__Nullable] = ACTIONS(1681), - [anon_sym__Nonnull] = ACTIONS(1681), - [anon_sym__Nullable_result] = ACTIONS(1681), - [anon_sym__Null_unspecified] = ACTIONS(1681), - [anon_sym___autoreleasing] = ACTIONS(1681), - [anon_sym___nullable] = ACTIONS(1681), - [anon_sym___nonnull] = ACTIONS(1681), - [anon_sym___strong] = ACTIONS(1681), - [anon_sym___weak] = ACTIONS(1681), - [anon_sym___bridge] = ACTIONS(1681), - [anon_sym___bridge_transfer] = ACTIONS(1681), - [anon_sym___bridge_retained] = ACTIONS(1681), - [anon_sym___unsafe_unretained] = ACTIONS(1681), - [anon_sym___block] = ACTIONS(1681), - [anon_sym___kindof] = ACTIONS(1681), - [anon_sym___unused] = ACTIONS(1681), - [anon_sym__Complex] = ACTIONS(1681), - [anon_sym___complex] = ACTIONS(1681), - [anon_sym_IBOutlet] = ACTIONS(1681), - [anon_sym_IBInspectable] = ACTIONS(1681), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1681), - [anon_sym_signed] = ACTIONS(1681), - [anon_sym_unsigned] = ACTIONS(1681), - [anon_sym_long] = ACTIONS(1681), - [anon_sym_short] = ACTIONS(1681), - [sym_primitive_type] = ACTIONS(1681), - [anon_sym_enum] = ACTIONS(1681), - [anon_sym_NS_ENUM] = ACTIONS(1681), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1681), - [anon_sym_NS_OPTIONS] = ACTIONS(1681), - [anon_sym_struct] = ACTIONS(1681), - [anon_sym_union] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_else] = ACTIONS(1681), - [anon_sym_switch] = ACTIONS(1681), - [anon_sym_case] = ACTIONS(1681), - [anon_sym_default] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_goto] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_sizeof] = ACTIONS(1681), - [sym_number_literal] = ACTIONS(1683), - [anon_sym_L_SQUOTE] = ACTIONS(1683), - [anon_sym_u_SQUOTE] = ACTIONS(1683), - [anon_sym_U_SQUOTE] = ACTIONS(1683), - [anon_sym_u8_SQUOTE] = ACTIONS(1683), - [anon_sym_SQUOTE] = ACTIONS(1683), - [anon_sym_L_DQUOTE] = ACTIONS(1683), - [anon_sym_u_DQUOTE] = ACTIONS(1683), - [anon_sym_U_DQUOTE] = ACTIONS(1683), - [anon_sym_u8_DQUOTE] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_null] = ACTIONS(1681), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1683), - [anon_sym_ATimport] = ACTIONS(1683), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1681), - [anon_sym_ATcompatibility_alias] = ACTIONS(1683), - [anon_sym_ATprotocol] = ACTIONS(1683), - [anon_sym_ATclass] = ACTIONS(1683), - [anon_sym_ATinterface] = ACTIONS(1683), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1681), - [sym_method_attribute_specifier] = ACTIONS(1681), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1681), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1681), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1681), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1681), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1681), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1681), - [anon_sym_NS_AVAILABLE] = ACTIONS(1681), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1681), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1681), - [anon_sym_API_AVAILABLE] = ACTIONS(1681), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1681), - [anon_sym_API_DEPRECATED] = ACTIONS(1681), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1681), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1681), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1681), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1681), - [anon_sym___deprecated_msg] = ACTIONS(1681), - [anon_sym___deprecated_enum_msg] = ACTIONS(1681), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1681), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1681), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1681), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1681), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1681), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1681), - [anon_sym_ATimplementation] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(1681), - [anon_sym___typeof] = ACTIONS(1681), - [anon_sym___typeof__] = ACTIONS(1681), - [sym_self] = ACTIONS(1681), - [sym_super] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [sym_id] = ACTIONS(1681), - [sym_instancetype] = ACTIONS(1681), - [sym_Class] = ACTIONS(1681), - [sym_SEL] = ACTIONS(1681), - [sym_IMP] = ACTIONS(1681), - [sym_BOOL] = ACTIONS(1681), - [sym_auto] = ACTIONS(1681), - [anon_sym_ATautoreleasepool] = ACTIONS(1683), - [anon_sym_ATsynchronized] = ACTIONS(1683), - [anon_sym_ATtry] = ACTIONS(1683), - [anon_sym_ATcatch] = ACTIONS(1683), - [anon_sym_ATfinally] = ACTIONS(1683), - [anon_sym_ATthrow] = ACTIONS(1683), - [anon_sym_ATselector] = ACTIONS(1683), - [anon_sym_ATencode] = ACTIONS(1683), - [anon_sym_AT] = ACTIONS(1681), - [sym_YES] = ACTIONS(1681), - [sym_NO] = ACTIONS(1681), - [anon_sym___builtin_available] = ACTIONS(1681), - [anon_sym_ATavailable] = ACTIONS(1683), - [anon_sym_va_arg] = ACTIONS(1681), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [471] = { - [sym_identifier] = ACTIONS(1297), - [aux_sym_preproc_include_token1] = ACTIONS(1299), - [aux_sym_preproc_def_token1] = ACTIONS(1299), - [aux_sym_preproc_if_token1] = ACTIONS(1297), - [aux_sym_preproc_if_token2] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1297), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1297), - [anon_sym_LPAREN2] = ACTIONS(1299), - [anon_sym_BANG] = ACTIONS(1299), - [anon_sym_TILDE] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_STAR] = ACTIONS(1299), - [anon_sym_CARET] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1299), - [anon_sym_typedef] = ACTIONS(1297), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym___attribute] = ACTIONS(1297), - [anon_sym___attribute__] = ACTIONS(1297), - [anon_sym___declspec] = ACTIONS(1297), - [anon_sym___cdecl] = ACTIONS(1297), - [anon_sym___clrcall] = ACTIONS(1297), - [anon_sym___stdcall] = ACTIONS(1297), - [anon_sym___fastcall] = ACTIONS(1297), - [anon_sym___thiscall] = ACTIONS(1297), - [anon_sym___vectorcall] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_auto] = ACTIONS(1297), - [anon_sym_register] = ACTIONS(1297), - [anon_sym_inline] = ACTIONS(1297), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_volatile] = ACTIONS(1297), - [anon_sym_restrict] = ACTIONS(1297), - [anon_sym__Atomic] = ACTIONS(1297), - [anon_sym_in] = ACTIONS(1297), - [anon_sym_out] = ACTIONS(1297), - [anon_sym_inout] = ACTIONS(1297), - [anon_sym_bycopy] = ACTIONS(1297), - [anon_sym_byref] = ACTIONS(1297), - [anon_sym_oneway] = ACTIONS(1297), - [anon_sym__Nullable] = ACTIONS(1297), - [anon_sym__Nonnull] = ACTIONS(1297), - [anon_sym__Nullable_result] = ACTIONS(1297), - [anon_sym__Null_unspecified] = ACTIONS(1297), - [anon_sym___autoreleasing] = ACTIONS(1297), - [anon_sym___nullable] = ACTIONS(1297), - [anon_sym___nonnull] = ACTIONS(1297), - [anon_sym___strong] = ACTIONS(1297), - [anon_sym___weak] = ACTIONS(1297), - [anon_sym___bridge] = ACTIONS(1297), - [anon_sym___bridge_transfer] = ACTIONS(1297), - [anon_sym___bridge_retained] = ACTIONS(1297), - [anon_sym___unsafe_unretained] = ACTIONS(1297), - [anon_sym___block] = ACTIONS(1297), - [anon_sym___kindof] = ACTIONS(1297), - [anon_sym___unused] = ACTIONS(1297), - [anon_sym__Complex] = ACTIONS(1297), - [anon_sym___complex] = ACTIONS(1297), - [anon_sym_IBOutlet] = ACTIONS(1297), - [anon_sym_IBInspectable] = ACTIONS(1297), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1297), - [anon_sym_unsigned] = ACTIONS(1297), - [anon_sym_long] = ACTIONS(1297), - [anon_sym_short] = ACTIONS(1297), - [sym_primitive_type] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_NS_ENUM] = ACTIONS(1297), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1297), - [anon_sym_NS_OPTIONS] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_else] = ACTIONS(1297), - [anon_sym_switch] = ACTIONS(1297), - [anon_sym_case] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_do] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_goto] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [anon_sym_PLUS_PLUS] = ACTIONS(1299), - [anon_sym_sizeof] = ACTIONS(1297), - [sym_number_literal] = ACTIONS(1299), - [anon_sym_L_SQUOTE] = ACTIONS(1299), - [anon_sym_u_SQUOTE] = ACTIONS(1299), - [anon_sym_U_SQUOTE] = ACTIONS(1299), - [anon_sym_u8_SQUOTE] = ACTIONS(1299), - [anon_sym_SQUOTE] = ACTIONS(1299), - [anon_sym_L_DQUOTE] = ACTIONS(1299), - [anon_sym_u_DQUOTE] = ACTIONS(1299), - [anon_sym_U_DQUOTE] = ACTIONS(1299), - [anon_sym_u8_DQUOTE] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [sym_null] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1299), - [anon_sym_ATimport] = ACTIONS(1299), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1297), - [anon_sym_ATcompatibility_alias] = ACTIONS(1299), - [anon_sym_ATprotocol] = ACTIONS(1299), - [anon_sym_ATclass] = ACTIONS(1299), - [anon_sym_ATinterface] = ACTIONS(1299), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1297), - [sym_method_attribute_specifier] = ACTIONS(1297), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1297), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1297), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1297), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1297), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1297), - [anon_sym_NS_AVAILABLE] = ACTIONS(1297), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1297), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_API_AVAILABLE] = ACTIONS(1297), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_API_DEPRECATED] = ACTIONS(1297), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1297), - [anon_sym___deprecated_msg] = ACTIONS(1297), - [anon_sym___deprecated_enum_msg] = ACTIONS(1297), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1297), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1297), - [anon_sym_ATimplementation] = ACTIONS(1299), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym___typeof] = ACTIONS(1297), - [anon_sym___typeof__] = ACTIONS(1297), - [sym_self] = ACTIONS(1297), - [sym_super] = ACTIONS(1297), - [sym_nil] = ACTIONS(1297), - [sym_id] = ACTIONS(1297), - [sym_instancetype] = ACTIONS(1297), - [sym_Class] = ACTIONS(1297), - [sym_SEL] = ACTIONS(1297), - [sym_IMP] = ACTIONS(1297), - [sym_BOOL] = ACTIONS(1297), - [sym_auto] = ACTIONS(1297), - [anon_sym_ATautoreleasepool] = ACTIONS(1299), - [anon_sym_ATsynchronized] = ACTIONS(1299), - [anon_sym_ATtry] = ACTIONS(1299), - [anon_sym_ATcatch] = ACTIONS(1299), - [anon_sym_ATfinally] = ACTIONS(1299), - [anon_sym_ATthrow] = ACTIONS(1299), - [anon_sym_ATselector] = ACTIONS(1299), - [anon_sym_ATencode] = ACTIONS(1299), - [anon_sym_AT] = ACTIONS(1297), - [sym_YES] = ACTIONS(1297), - [sym_NO] = ACTIONS(1297), - [anon_sym___builtin_available] = ACTIONS(1297), - [anon_sym_ATavailable] = ACTIONS(1299), - [anon_sym_va_arg] = ACTIONS(1297), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [472] = { - [sym_identifier] = ACTIONS(1259), - [aux_sym_preproc_include_token1] = ACTIONS(1261), - [aux_sym_preproc_def_token1] = ACTIONS(1261), - [aux_sym_preproc_if_token1] = ACTIONS(1259), - [aux_sym_preproc_if_token2] = ACTIONS(1259), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), - [anon_sym_LPAREN2] = ACTIONS(1261), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_TILDE] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_CARET] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_SEMI] = ACTIONS(1261), - [anon_sym_typedef] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym___attribute] = ACTIONS(1259), - [anon_sym___attribute__] = ACTIONS(1259), - [anon_sym___declspec] = ACTIONS(1259), - [anon_sym___cdecl] = ACTIONS(1259), - [anon_sym___clrcall] = ACTIONS(1259), - [anon_sym___stdcall] = ACTIONS(1259), - [anon_sym___fastcall] = ACTIONS(1259), - [anon_sym___thiscall] = ACTIONS(1259), - [anon_sym___vectorcall] = ACTIONS(1259), - [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_auto] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_inline] = ACTIONS(1259), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_volatile] = ACTIONS(1259), - [anon_sym_restrict] = ACTIONS(1259), - [anon_sym__Atomic] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_out] = ACTIONS(1259), - [anon_sym_inout] = ACTIONS(1259), - [anon_sym_bycopy] = ACTIONS(1259), - [anon_sym_byref] = ACTIONS(1259), - [anon_sym_oneway] = ACTIONS(1259), - [anon_sym__Nullable] = ACTIONS(1259), - [anon_sym__Nonnull] = ACTIONS(1259), - [anon_sym__Nullable_result] = ACTIONS(1259), - [anon_sym__Null_unspecified] = ACTIONS(1259), - [anon_sym___autoreleasing] = ACTIONS(1259), - [anon_sym___nullable] = ACTIONS(1259), - [anon_sym___nonnull] = ACTIONS(1259), - [anon_sym___strong] = ACTIONS(1259), - [anon_sym___weak] = ACTIONS(1259), - [anon_sym___bridge] = ACTIONS(1259), - [anon_sym___bridge_transfer] = ACTIONS(1259), - [anon_sym___bridge_retained] = ACTIONS(1259), - [anon_sym___unsafe_unretained] = ACTIONS(1259), - [anon_sym___block] = ACTIONS(1259), - [anon_sym___kindof] = ACTIONS(1259), - [anon_sym___unused] = ACTIONS(1259), - [anon_sym__Complex] = ACTIONS(1259), - [anon_sym___complex] = ACTIONS(1259), - [anon_sym_IBOutlet] = ACTIONS(1259), - [anon_sym_IBInspectable] = ACTIONS(1259), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1259), - [anon_sym_signed] = ACTIONS(1259), - [anon_sym_unsigned] = ACTIONS(1259), - [anon_sym_long] = ACTIONS(1259), - [anon_sym_short] = ACTIONS(1259), - [sym_primitive_type] = ACTIONS(1259), - [anon_sym_enum] = ACTIONS(1259), - [anon_sym_NS_ENUM] = ACTIONS(1259), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1259), - [anon_sym_NS_OPTIONS] = ACTIONS(1259), - [anon_sym_struct] = ACTIONS(1259), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_else] = ACTIONS(1259), - [anon_sym_switch] = ACTIONS(1259), - [anon_sym_case] = ACTIONS(1259), - [anon_sym_default] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_do] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_goto] = ACTIONS(1259), - [anon_sym_DASH_DASH] = ACTIONS(1261), - [anon_sym_PLUS_PLUS] = ACTIONS(1261), - [anon_sym_sizeof] = ACTIONS(1259), - [sym_number_literal] = ACTIONS(1261), - [anon_sym_L_SQUOTE] = ACTIONS(1261), - [anon_sym_u_SQUOTE] = ACTIONS(1261), - [anon_sym_U_SQUOTE] = ACTIONS(1261), - [anon_sym_u8_SQUOTE] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1261), - [anon_sym_L_DQUOTE] = ACTIONS(1261), - [anon_sym_u_DQUOTE] = ACTIONS(1261), - [anon_sym_U_DQUOTE] = ACTIONS(1261), - [anon_sym_u8_DQUOTE] = ACTIONS(1261), - [anon_sym_DQUOTE] = ACTIONS(1261), - [sym_true] = ACTIONS(1259), - [sym_false] = ACTIONS(1259), - [sym_null] = ACTIONS(1259), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1261), - [anon_sym_ATimport] = ACTIONS(1261), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1259), - [anon_sym_ATcompatibility_alias] = ACTIONS(1261), - [anon_sym_ATprotocol] = ACTIONS(1261), - [anon_sym_ATclass] = ACTIONS(1261), - [anon_sym_ATinterface] = ACTIONS(1261), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1259), - [sym_method_attribute_specifier] = ACTIONS(1259), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1259), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1259), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1259), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1259), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1259), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1259), - [anon_sym_NS_AVAILABLE] = ACTIONS(1259), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1259), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1259), - [anon_sym_API_AVAILABLE] = ACTIONS(1259), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1259), - [anon_sym_API_DEPRECATED] = ACTIONS(1259), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1259), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1259), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1259), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1259), - [anon_sym___deprecated_msg] = ACTIONS(1259), - [anon_sym___deprecated_enum_msg] = ACTIONS(1259), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1259), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1259), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1259), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1259), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1259), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1259), - [anon_sym_ATimplementation] = ACTIONS(1261), - [anon_sym_typeof] = ACTIONS(1259), - [anon_sym___typeof] = ACTIONS(1259), - [anon_sym___typeof__] = ACTIONS(1259), - [sym_self] = ACTIONS(1259), - [sym_super] = ACTIONS(1259), - [sym_nil] = ACTIONS(1259), - [sym_id] = ACTIONS(1259), - [sym_instancetype] = ACTIONS(1259), - [sym_Class] = ACTIONS(1259), - [sym_SEL] = ACTIONS(1259), - [sym_IMP] = ACTIONS(1259), - [sym_BOOL] = ACTIONS(1259), - [sym_auto] = ACTIONS(1259), - [anon_sym_ATautoreleasepool] = ACTIONS(1261), - [anon_sym_ATsynchronized] = ACTIONS(1261), - [anon_sym_ATtry] = ACTIONS(1261), - [anon_sym_ATcatch] = ACTIONS(1261), - [anon_sym_ATfinally] = ACTIONS(1261), - [anon_sym_ATthrow] = ACTIONS(1261), - [anon_sym_ATselector] = ACTIONS(1261), - [anon_sym_ATencode] = ACTIONS(1261), - [anon_sym_AT] = ACTIONS(1259), - [sym_YES] = ACTIONS(1259), - [sym_NO] = ACTIONS(1259), - [anon_sym___builtin_available] = ACTIONS(1259), - [anon_sym_ATavailable] = ACTIONS(1261), - [anon_sym_va_arg] = ACTIONS(1259), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [473] = { - [sym_identifier] = ACTIONS(1685), - [aux_sym_preproc_include_token1] = ACTIONS(1687), - [aux_sym_preproc_def_token1] = ACTIONS(1687), - [aux_sym_preproc_if_token1] = ACTIONS(1685), - [aux_sym_preproc_if_token2] = ACTIONS(1685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1685), - [anon_sym_LPAREN2] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_CARET] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(1685), - [anon_sym_extern] = ACTIONS(1685), - [anon_sym___attribute] = ACTIONS(1685), - [anon_sym___attribute__] = ACTIONS(1685), - [anon_sym___declspec] = ACTIONS(1685), - [anon_sym___cdecl] = ACTIONS(1685), - [anon_sym___clrcall] = ACTIONS(1685), - [anon_sym___stdcall] = ACTIONS(1685), - [anon_sym___fastcall] = ACTIONS(1685), - [anon_sym___thiscall] = ACTIONS(1685), - [anon_sym___vectorcall] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1687), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_auto] = ACTIONS(1685), - [anon_sym_register] = ACTIONS(1685), - [anon_sym_inline] = ACTIONS(1685), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1685), - [anon_sym_volatile] = ACTIONS(1685), - [anon_sym_restrict] = ACTIONS(1685), - [anon_sym__Atomic] = ACTIONS(1685), - [anon_sym_in] = ACTIONS(1685), - [anon_sym_out] = ACTIONS(1685), - [anon_sym_inout] = ACTIONS(1685), - [anon_sym_bycopy] = ACTIONS(1685), - [anon_sym_byref] = ACTIONS(1685), - [anon_sym_oneway] = ACTIONS(1685), - [anon_sym__Nullable] = ACTIONS(1685), - [anon_sym__Nonnull] = ACTIONS(1685), - [anon_sym__Nullable_result] = ACTIONS(1685), - [anon_sym__Null_unspecified] = ACTIONS(1685), - [anon_sym___autoreleasing] = ACTIONS(1685), - [anon_sym___nullable] = ACTIONS(1685), - [anon_sym___nonnull] = ACTIONS(1685), - [anon_sym___strong] = ACTIONS(1685), - [anon_sym___weak] = ACTIONS(1685), - [anon_sym___bridge] = ACTIONS(1685), - [anon_sym___bridge_transfer] = ACTIONS(1685), - [anon_sym___bridge_retained] = ACTIONS(1685), - [anon_sym___unsafe_unretained] = ACTIONS(1685), - [anon_sym___block] = ACTIONS(1685), - [anon_sym___kindof] = ACTIONS(1685), - [anon_sym___unused] = ACTIONS(1685), - [anon_sym__Complex] = ACTIONS(1685), - [anon_sym___complex] = ACTIONS(1685), - [anon_sym_IBOutlet] = ACTIONS(1685), - [anon_sym_IBInspectable] = ACTIONS(1685), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1685), - [anon_sym_signed] = ACTIONS(1685), - [anon_sym_unsigned] = ACTIONS(1685), - [anon_sym_long] = ACTIONS(1685), - [anon_sym_short] = ACTIONS(1685), - [sym_primitive_type] = ACTIONS(1685), - [anon_sym_enum] = ACTIONS(1685), - [anon_sym_NS_ENUM] = ACTIONS(1685), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1685), - [anon_sym_NS_OPTIONS] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_else] = ACTIONS(1685), - [anon_sym_switch] = ACTIONS(1685), - [anon_sym_case] = ACTIONS(1685), - [anon_sym_default] = ACTIONS(1685), - [anon_sym_while] = ACTIONS(1685), - [anon_sym_do] = ACTIONS(1685), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1685), - [anon_sym_continue] = ACTIONS(1685), - [anon_sym_goto] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_sizeof] = ACTIONS(1685), - [sym_number_literal] = ACTIONS(1687), - [anon_sym_L_SQUOTE] = ACTIONS(1687), - [anon_sym_u_SQUOTE] = ACTIONS(1687), - [anon_sym_U_SQUOTE] = ACTIONS(1687), - [anon_sym_u8_SQUOTE] = ACTIONS(1687), - [anon_sym_SQUOTE] = ACTIONS(1687), - [anon_sym_L_DQUOTE] = ACTIONS(1687), - [anon_sym_u_DQUOTE] = ACTIONS(1687), - [anon_sym_U_DQUOTE] = ACTIONS(1687), - [anon_sym_u8_DQUOTE] = ACTIONS(1687), - [anon_sym_DQUOTE] = ACTIONS(1687), - [sym_true] = ACTIONS(1685), - [sym_false] = ACTIONS(1685), - [sym_null] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1687), - [anon_sym_ATimport] = ACTIONS(1687), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1685), - [anon_sym_ATcompatibility_alias] = ACTIONS(1687), - [anon_sym_ATprotocol] = ACTIONS(1687), - [anon_sym_ATclass] = ACTIONS(1687), - [anon_sym_ATinterface] = ACTIONS(1687), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1685), - [sym_method_attribute_specifier] = ACTIONS(1685), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1685), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1685), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1685), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1685), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1685), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1685), - [anon_sym_NS_AVAILABLE] = ACTIONS(1685), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1685), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1685), - [anon_sym_API_AVAILABLE] = ACTIONS(1685), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1685), - [anon_sym_API_DEPRECATED] = ACTIONS(1685), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1685), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1685), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1685), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1685), - [anon_sym___deprecated_msg] = ACTIONS(1685), - [anon_sym___deprecated_enum_msg] = ACTIONS(1685), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1685), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1685), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1685), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1685), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1685), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1685), - [anon_sym_ATimplementation] = ACTIONS(1687), - [anon_sym_typeof] = ACTIONS(1685), - [anon_sym___typeof] = ACTIONS(1685), - [anon_sym___typeof__] = ACTIONS(1685), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_nil] = ACTIONS(1685), - [sym_id] = ACTIONS(1685), - [sym_instancetype] = ACTIONS(1685), - [sym_Class] = ACTIONS(1685), - [sym_SEL] = ACTIONS(1685), - [sym_IMP] = ACTIONS(1685), - [sym_BOOL] = ACTIONS(1685), - [sym_auto] = ACTIONS(1685), - [anon_sym_ATautoreleasepool] = ACTIONS(1687), - [anon_sym_ATsynchronized] = ACTIONS(1687), - [anon_sym_ATtry] = ACTIONS(1687), - [anon_sym_ATcatch] = ACTIONS(1687), - [anon_sym_ATfinally] = ACTIONS(1687), - [anon_sym_ATthrow] = ACTIONS(1687), - [anon_sym_ATselector] = ACTIONS(1687), - [anon_sym_ATencode] = ACTIONS(1687), - [anon_sym_AT] = ACTIONS(1685), - [sym_YES] = ACTIONS(1685), - [sym_NO] = ACTIONS(1685), - [anon_sym___builtin_available] = ACTIONS(1685), - [anon_sym_ATavailable] = ACTIONS(1687), - [anon_sym_va_arg] = ACTIONS(1685), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [474] = { - [sym_identifier] = ACTIONS(1689), - [aux_sym_preproc_include_token1] = ACTIONS(1691), - [aux_sym_preproc_def_token1] = ACTIONS(1691), - [aux_sym_preproc_if_token1] = ACTIONS(1689), - [aux_sym_preproc_if_token2] = ACTIONS(1689), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1689), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1689), - [anon_sym_LPAREN2] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1691), - [anon_sym_TILDE] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_SEMI] = ACTIONS(1691), - [anon_sym_typedef] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(1689), - [anon_sym___attribute] = ACTIONS(1689), - [anon_sym___attribute__] = ACTIONS(1689), - [anon_sym___declspec] = ACTIONS(1689), - [anon_sym___cdecl] = ACTIONS(1689), - [anon_sym___clrcall] = ACTIONS(1689), - [anon_sym___stdcall] = ACTIONS(1689), - [anon_sym___fastcall] = ACTIONS(1689), - [anon_sym___thiscall] = ACTIONS(1689), - [anon_sym___vectorcall] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1691), - [anon_sym_LBRACK] = ACTIONS(1691), - [anon_sym_static] = ACTIONS(1689), - [anon_sym_auto] = ACTIONS(1689), - [anon_sym_register] = ACTIONS(1689), - [anon_sym_inline] = ACTIONS(1689), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1689), - [anon_sym_const] = ACTIONS(1689), - [anon_sym_volatile] = ACTIONS(1689), - [anon_sym_restrict] = ACTIONS(1689), - [anon_sym__Atomic] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(1689), - [anon_sym_out] = ACTIONS(1689), - [anon_sym_inout] = ACTIONS(1689), - [anon_sym_bycopy] = ACTIONS(1689), - [anon_sym_byref] = ACTIONS(1689), - [anon_sym_oneway] = ACTIONS(1689), - [anon_sym__Nullable] = ACTIONS(1689), - [anon_sym__Nonnull] = ACTIONS(1689), - [anon_sym__Nullable_result] = ACTIONS(1689), - [anon_sym__Null_unspecified] = ACTIONS(1689), - [anon_sym___autoreleasing] = ACTIONS(1689), - [anon_sym___nullable] = ACTIONS(1689), - [anon_sym___nonnull] = ACTIONS(1689), - [anon_sym___strong] = ACTIONS(1689), - [anon_sym___weak] = ACTIONS(1689), - [anon_sym___bridge] = ACTIONS(1689), - [anon_sym___bridge_transfer] = ACTIONS(1689), - [anon_sym___bridge_retained] = ACTIONS(1689), - [anon_sym___unsafe_unretained] = ACTIONS(1689), - [anon_sym___block] = ACTIONS(1689), - [anon_sym___kindof] = ACTIONS(1689), - [anon_sym___unused] = ACTIONS(1689), - [anon_sym__Complex] = ACTIONS(1689), - [anon_sym___complex] = ACTIONS(1689), - [anon_sym_IBOutlet] = ACTIONS(1689), - [anon_sym_IBInspectable] = ACTIONS(1689), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1689), - [anon_sym_signed] = ACTIONS(1689), - [anon_sym_unsigned] = ACTIONS(1689), - [anon_sym_long] = ACTIONS(1689), - [anon_sym_short] = ACTIONS(1689), - [sym_primitive_type] = ACTIONS(1689), - [anon_sym_enum] = ACTIONS(1689), - [anon_sym_NS_ENUM] = ACTIONS(1689), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1689), - [anon_sym_NS_OPTIONS] = ACTIONS(1689), - [anon_sym_struct] = ACTIONS(1689), - [anon_sym_union] = ACTIONS(1689), - [anon_sym_if] = ACTIONS(1689), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_switch] = ACTIONS(1689), - [anon_sym_case] = ACTIONS(1689), - [anon_sym_default] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1689), - [anon_sym_do] = ACTIONS(1689), - [anon_sym_for] = ACTIONS(1689), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1689), - [anon_sym_continue] = ACTIONS(1689), - [anon_sym_goto] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1691), - [anon_sym_PLUS_PLUS] = ACTIONS(1691), - [anon_sym_sizeof] = ACTIONS(1689), - [sym_number_literal] = ACTIONS(1691), - [anon_sym_L_SQUOTE] = ACTIONS(1691), - [anon_sym_u_SQUOTE] = ACTIONS(1691), - [anon_sym_U_SQUOTE] = ACTIONS(1691), - [anon_sym_u8_SQUOTE] = ACTIONS(1691), - [anon_sym_SQUOTE] = ACTIONS(1691), - [anon_sym_L_DQUOTE] = ACTIONS(1691), - [anon_sym_u_DQUOTE] = ACTIONS(1691), - [anon_sym_U_DQUOTE] = ACTIONS(1691), - [anon_sym_u8_DQUOTE] = ACTIONS(1691), - [anon_sym_DQUOTE] = ACTIONS(1691), - [sym_true] = ACTIONS(1689), - [sym_false] = ACTIONS(1689), - [sym_null] = ACTIONS(1689), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1691), - [anon_sym_ATimport] = ACTIONS(1691), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1689), - [anon_sym_ATcompatibility_alias] = ACTIONS(1691), - [anon_sym_ATprotocol] = ACTIONS(1691), - [anon_sym_ATclass] = ACTIONS(1691), - [anon_sym_ATinterface] = ACTIONS(1691), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1689), - [sym_method_attribute_specifier] = ACTIONS(1689), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1689), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1689), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1689), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1689), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1689), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1689), - [anon_sym_NS_AVAILABLE] = ACTIONS(1689), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1689), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1689), - [anon_sym_API_AVAILABLE] = ACTIONS(1689), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1689), - [anon_sym_API_DEPRECATED] = ACTIONS(1689), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1689), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1689), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1689), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1689), - [anon_sym___deprecated_msg] = ACTIONS(1689), - [anon_sym___deprecated_enum_msg] = ACTIONS(1689), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1689), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1689), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1689), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1689), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1689), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1689), - [anon_sym_ATimplementation] = ACTIONS(1691), - [anon_sym_typeof] = ACTIONS(1689), - [anon_sym___typeof] = ACTIONS(1689), - [anon_sym___typeof__] = ACTIONS(1689), - [sym_self] = ACTIONS(1689), - [sym_super] = ACTIONS(1689), - [sym_nil] = ACTIONS(1689), - [sym_id] = ACTIONS(1689), - [sym_instancetype] = ACTIONS(1689), - [sym_Class] = ACTIONS(1689), - [sym_SEL] = ACTIONS(1689), - [sym_IMP] = ACTIONS(1689), - [sym_BOOL] = ACTIONS(1689), - [sym_auto] = ACTIONS(1689), - [anon_sym_ATautoreleasepool] = ACTIONS(1691), - [anon_sym_ATsynchronized] = ACTIONS(1691), - [anon_sym_ATtry] = ACTIONS(1691), - [anon_sym_ATcatch] = ACTIONS(1691), - [anon_sym_ATfinally] = ACTIONS(1691), - [anon_sym_ATthrow] = ACTIONS(1691), - [anon_sym_ATselector] = ACTIONS(1691), - [anon_sym_ATencode] = ACTIONS(1691), - [anon_sym_AT] = ACTIONS(1689), - [sym_YES] = ACTIONS(1689), - [sym_NO] = ACTIONS(1689), - [anon_sym___builtin_available] = ACTIONS(1689), - [anon_sym_ATavailable] = ACTIONS(1691), - [anon_sym_va_arg] = ACTIONS(1689), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [475] = { - [sym_identifier] = ACTIONS(1693), - [aux_sym_preproc_include_token1] = ACTIONS(1695), - [aux_sym_preproc_def_token1] = ACTIONS(1695), - [aux_sym_preproc_if_token1] = ACTIONS(1693), - [aux_sym_preproc_if_token2] = ACTIONS(1693), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1693), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1693), - [anon_sym_LPAREN2] = ACTIONS(1695), - [anon_sym_BANG] = ACTIONS(1695), - [anon_sym_TILDE] = ACTIONS(1695), - [anon_sym_DASH] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1693), - [anon_sym_STAR] = ACTIONS(1695), - [anon_sym_CARET] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_typedef] = ACTIONS(1693), - [anon_sym_extern] = ACTIONS(1693), - [anon_sym___attribute] = ACTIONS(1693), - [anon_sym___attribute__] = ACTIONS(1693), - [anon_sym___declspec] = ACTIONS(1693), - [anon_sym___cdecl] = ACTIONS(1693), - [anon_sym___clrcall] = ACTIONS(1693), - [anon_sym___stdcall] = ACTIONS(1693), - [anon_sym___fastcall] = ACTIONS(1693), - [anon_sym___thiscall] = ACTIONS(1693), - [anon_sym___vectorcall] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1695), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_static] = ACTIONS(1693), - [anon_sym_auto] = ACTIONS(1693), - [anon_sym_register] = ACTIONS(1693), - [anon_sym_inline] = ACTIONS(1693), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1693), - [anon_sym_volatile] = ACTIONS(1693), - [anon_sym_restrict] = ACTIONS(1693), - [anon_sym__Atomic] = ACTIONS(1693), - [anon_sym_in] = ACTIONS(1693), - [anon_sym_out] = ACTIONS(1693), - [anon_sym_inout] = ACTIONS(1693), - [anon_sym_bycopy] = ACTIONS(1693), - [anon_sym_byref] = ACTIONS(1693), - [anon_sym_oneway] = ACTIONS(1693), - [anon_sym__Nullable] = ACTIONS(1693), - [anon_sym__Nonnull] = ACTIONS(1693), - [anon_sym__Nullable_result] = ACTIONS(1693), - [anon_sym__Null_unspecified] = ACTIONS(1693), - [anon_sym___autoreleasing] = ACTIONS(1693), - [anon_sym___nullable] = ACTIONS(1693), - [anon_sym___nonnull] = ACTIONS(1693), - [anon_sym___strong] = ACTIONS(1693), - [anon_sym___weak] = ACTIONS(1693), - [anon_sym___bridge] = ACTIONS(1693), - [anon_sym___bridge_transfer] = ACTIONS(1693), - [anon_sym___bridge_retained] = ACTIONS(1693), - [anon_sym___unsafe_unretained] = ACTIONS(1693), - [anon_sym___block] = ACTIONS(1693), - [anon_sym___kindof] = ACTIONS(1693), - [anon_sym___unused] = ACTIONS(1693), - [anon_sym__Complex] = ACTIONS(1693), - [anon_sym___complex] = ACTIONS(1693), - [anon_sym_IBOutlet] = ACTIONS(1693), - [anon_sym_IBInspectable] = ACTIONS(1693), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1693), - [anon_sym_signed] = ACTIONS(1693), - [anon_sym_unsigned] = ACTIONS(1693), - [anon_sym_long] = ACTIONS(1693), - [anon_sym_short] = ACTIONS(1693), - [sym_primitive_type] = ACTIONS(1693), - [anon_sym_enum] = ACTIONS(1693), - [anon_sym_NS_ENUM] = ACTIONS(1693), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1693), - [anon_sym_NS_OPTIONS] = ACTIONS(1693), - [anon_sym_struct] = ACTIONS(1693), - [anon_sym_union] = ACTIONS(1693), - [anon_sym_if] = ACTIONS(1693), - [anon_sym_else] = ACTIONS(1693), - [anon_sym_switch] = ACTIONS(1693), - [anon_sym_case] = ACTIONS(1693), - [anon_sym_default] = ACTIONS(1693), - [anon_sym_while] = ACTIONS(1693), - [anon_sym_do] = ACTIONS(1693), - [anon_sym_for] = ACTIONS(1693), - [anon_sym_return] = ACTIONS(1693), - [anon_sym_break] = ACTIONS(1693), - [anon_sym_continue] = ACTIONS(1693), - [anon_sym_goto] = ACTIONS(1693), - [anon_sym_DASH_DASH] = ACTIONS(1695), - [anon_sym_PLUS_PLUS] = ACTIONS(1695), - [anon_sym_sizeof] = ACTIONS(1693), - [sym_number_literal] = ACTIONS(1695), - [anon_sym_L_SQUOTE] = ACTIONS(1695), - [anon_sym_u_SQUOTE] = ACTIONS(1695), - [anon_sym_U_SQUOTE] = ACTIONS(1695), - [anon_sym_u8_SQUOTE] = ACTIONS(1695), - [anon_sym_SQUOTE] = ACTIONS(1695), - [anon_sym_L_DQUOTE] = ACTIONS(1695), - [anon_sym_u_DQUOTE] = ACTIONS(1695), - [anon_sym_U_DQUOTE] = ACTIONS(1695), - [anon_sym_u8_DQUOTE] = ACTIONS(1695), - [anon_sym_DQUOTE] = ACTIONS(1695), - [sym_true] = ACTIONS(1693), - [sym_false] = ACTIONS(1693), - [sym_null] = ACTIONS(1693), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1695), - [anon_sym_ATimport] = ACTIONS(1695), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1693), - [anon_sym_ATcompatibility_alias] = ACTIONS(1695), - [anon_sym_ATprotocol] = ACTIONS(1695), - [anon_sym_ATclass] = ACTIONS(1695), - [anon_sym_ATinterface] = ACTIONS(1695), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1693), - [sym_method_attribute_specifier] = ACTIONS(1693), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1693), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1693), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1693), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1693), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1693), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1693), - [anon_sym_NS_AVAILABLE] = ACTIONS(1693), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1693), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1693), - [anon_sym_API_AVAILABLE] = ACTIONS(1693), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1693), - [anon_sym_API_DEPRECATED] = ACTIONS(1693), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1693), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1693), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1693), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1693), - [anon_sym___deprecated_msg] = ACTIONS(1693), - [anon_sym___deprecated_enum_msg] = ACTIONS(1693), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1693), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1693), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1693), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1693), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1693), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1693), - [anon_sym_ATimplementation] = ACTIONS(1695), - [anon_sym_typeof] = ACTIONS(1693), - [anon_sym___typeof] = ACTIONS(1693), - [anon_sym___typeof__] = ACTIONS(1693), - [sym_self] = ACTIONS(1693), - [sym_super] = ACTIONS(1693), - [sym_nil] = ACTIONS(1693), - [sym_id] = ACTIONS(1693), - [sym_instancetype] = ACTIONS(1693), - [sym_Class] = ACTIONS(1693), - [sym_SEL] = ACTIONS(1693), - [sym_IMP] = ACTIONS(1693), - [sym_BOOL] = ACTIONS(1693), - [sym_auto] = ACTIONS(1693), - [anon_sym_ATautoreleasepool] = ACTIONS(1695), - [anon_sym_ATsynchronized] = ACTIONS(1695), - [anon_sym_ATtry] = ACTIONS(1695), - [anon_sym_ATcatch] = ACTIONS(1695), - [anon_sym_ATfinally] = ACTIONS(1695), - [anon_sym_ATthrow] = ACTIONS(1695), - [anon_sym_ATselector] = ACTIONS(1695), - [anon_sym_ATencode] = ACTIONS(1695), - [anon_sym_AT] = ACTIONS(1693), - [sym_YES] = ACTIONS(1693), - [sym_NO] = ACTIONS(1693), - [anon_sym___builtin_available] = ACTIONS(1693), - [anon_sym_ATavailable] = ACTIONS(1695), - [anon_sym_va_arg] = ACTIONS(1693), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [476] = { - [sym_identifier] = ACTIONS(1373), - [aux_sym_preproc_include_token1] = ACTIONS(1375), - [aux_sym_preproc_def_token1] = ACTIONS(1375), - [aux_sym_preproc_if_token1] = ACTIONS(1373), - [aux_sym_preproc_if_token2] = ACTIONS(1373), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1373), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1373), - [anon_sym_LPAREN2] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1375), - [anon_sym_TILDE] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_PLUS] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(1375), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_typedef] = ACTIONS(1373), - [anon_sym_extern] = ACTIONS(1373), - [anon_sym___attribute] = ACTIONS(1373), - [anon_sym___attribute__] = ACTIONS(1373), - [anon_sym___declspec] = ACTIONS(1373), - [anon_sym___cdecl] = ACTIONS(1373), - [anon_sym___clrcall] = ACTIONS(1373), - [anon_sym___stdcall] = ACTIONS(1373), - [anon_sym___fastcall] = ACTIONS(1373), - [anon_sym___thiscall] = ACTIONS(1373), - [anon_sym___vectorcall] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1375), - [anon_sym_LBRACK] = ACTIONS(1375), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_auto] = ACTIONS(1373), - [anon_sym_register] = ACTIONS(1373), - [anon_sym_inline] = ACTIONS(1373), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1373), - [anon_sym_const] = ACTIONS(1373), - [anon_sym_volatile] = ACTIONS(1373), - [anon_sym_restrict] = ACTIONS(1373), - [anon_sym__Atomic] = ACTIONS(1373), - [anon_sym_in] = ACTIONS(1373), - [anon_sym_out] = ACTIONS(1373), - [anon_sym_inout] = ACTIONS(1373), - [anon_sym_bycopy] = ACTIONS(1373), - [anon_sym_byref] = ACTIONS(1373), - [anon_sym_oneway] = ACTIONS(1373), - [anon_sym__Nullable] = ACTIONS(1373), - [anon_sym__Nonnull] = ACTIONS(1373), - [anon_sym__Nullable_result] = ACTIONS(1373), - [anon_sym__Null_unspecified] = ACTIONS(1373), - [anon_sym___autoreleasing] = ACTIONS(1373), - [anon_sym___nullable] = ACTIONS(1373), - [anon_sym___nonnull] = ACTIONS(1373), - [anon_sym___strong] = ACTIONS(1373), - [anon_sym___weak] = ACTIONS(1373), - [anon_sym___bridge] = ACTIONS(1373), - [anon_sym___bridge_transfer] = ACTIONS(1373), - [anon_sym___bridge_retained] = ACTIONS(1373), - [anon_sym___unsafe_unretained] = ACTIONS(1373), - [anon_sym___block] = ACTIONS(1373), - [anon_sym___kindof] = ACTIONS(1373), - [anon_sym___unused] = ACTIONS(1373), - [anon_sym__Complex] = ACTIONS(1373), - [anon_sym___complex] = ACTIONS(1373), - [anon_sym_IBOutlet] = ACTIONS(1373), - [anon_sym_IBInspectable] = ACTIONS(1373), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1373), - [anon_sym_signed] = ACTIONS(1373), - [anon_sym_unsigned] = ACTIONS(1373), - [anon_sym_long] = ACTIONS(1373), - [anon_sym_short] = ACTIONS(1373), - [sym_primitive_type] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1373), - [anon_sym_NS_ENUM] = ACTIONS(1373), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1373), - [anon_sym_NS_OPTIONS] = ACTIONS(1373), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_union] = ACTIONS(1373), - [anon_sym_if] = ACTIONS(1373), - [anon_sym_else] = ACTIONS(1373), - [anon_sym_switch] = ACTIONS(1373), - [anon_sym_case] = ACTIONS(1373), - [anon_sym_default] = ACTIONS(1373), - [anon_sym_while] = ACTIONS(1373), - [anon_sym_do] = ACTIONS(1373), - [anon_sym_for] = ACTIONS(1373), - [anon_sym_return] = ACTIONS(1373), - [anon_sym_break] = ACTIONS(1373), - [anon_sym_continue] = ACTIONS(1373), - [anon_sym_goto] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1375), - [anon_sym_PLUS_PLUS] = ACTIONS(1375), - [anon_sym_sizeof] = ACTIONS(1373), - [sym_number_literal] = ACTIONS(1375), - [anon_sym_L_SQUOTE] = ACTIONS(1375), - [anon_sym_u_SQUOTE] = ACTIONS(1375), - [anon_sym_U_SQUOTE] = ACTIONS(1375), - [anon_sym_u8_SQUOTE] = ACTIONS(1375), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_L_DQUOTE] = ACTIONS(1375), - [anon_sym_u_DQUOTE] = ACTIONS(1375), - [anon_sym_U_DQUOTE] = ACTIONS(1375), - [anon_sym_u8_DQUOTE] = ACTIONS(1375), - [anon_sym_DQUOTE] = ACTIONS(1375), - [sym_true] = ACTIONS(1373), - [sym_false] = ACTIONS(1373), - [sym_null] = ACTIONS(1373), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1375), - [anon_sym_ATimport] = ACTIONS(1375), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1373), - [anon_sym_ATcompatibility_alias] = ACTIONS(1375), - [anon_sym_ATprotocol] = ACTIONS(1375), - [anon_sym_ATclass] = ACTIONS(1375), - [anon_sym_ATinterface] = ACTIONS(1375), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1373), - [sym_method_attribute_specifier] = ACTIONS(1373), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1373), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1373), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1373), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1373), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1373), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1373), - [anon_sym_NS_AVAILABLE] = ACTIONS(1373), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1373), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1373), - [anon_sym_API_AVAILABLE] = ACTIONS(1373), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1373), - [anon_sym_API_DEPRECATED] = ACTIONS(1373), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1373), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1373), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1373), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1373), - [anon_sym___deprecated_msg] = ACTIONS(1373), - [anon_sym___deprecated_enum_msg] = ACTIONS(1373), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1373), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1373), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1373), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1373), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1373), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1373), - [anon_sym_ATimplementation] = ACTIONS(1375), - [anon_sym_typeof] = ACTIONS(1373), - [anon_sym___typeof] = ACTIONS(1373), - [anon_sym___typeof__] = ACTIONS(1373), - [sym_self] = ACTIONS(1373), - [sym_super] = ACTIONS(1373), - [sym_nil] = ACTIONS(1373), - [sym_id] = ACTIONS(1373), - [sym_instancetype] = ACTIONS(1373), - [sym_Class] = ACTIONS(1373), - [sym_SEL] = ACTIONS(1373), - [sym_IMP] = ACTIONS(1373), - [sym_BOOL] = ACTIONS(1373), - [sym_auto] = ACTIONS(1373), - [anon_sym_ATautoreleasepool] = ACTIONS(1375), - [anon_sym_ATsynchronized] = ACTIONS(1375), - [anon_sym_ATtry] = ACTIONS(1375), - [anon_sym_ATcatch] = ACTIONS(1375), - [anon_sym_ATfinally] = ACTIONS(1375), - [anon_sym_ATthrow] = ACTIONS(1375), - [anon_sym_ATselector] = ACTIONS(1375), - [anon_sym_ATencode] = ACTIONS(1375), - [anon_sym_AT] = ACTIONS(1373), - [sym_YES] = ACTIONS(1373), - [sym_NO] = ACTIONS(1373), - [anon_sym___builtin_available] = ACTIONS(1373), - [anon_sym_ATavailable] = ACTIONS(1375), - [anon_sym_va_arg] = ACTIONS(1373), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [477] = { - [sym_identifier] = ACTIONS(1377), - [aux_sym_preproc_include_token1] = ACTIONS(1379), - [aux_sym_preproc_def_token1] = ACTIONS(1379), - [aux_sym_preproc_if_token1] = ACTIONS(1377), - [aux_sym_preproc_if_token2] = ACTIONS(1377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1377), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1377), - [anon_sym_LPAREN2] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_CARET] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_typedef] = ACTIONS(1377), - [anon_sym_extern] = ACTIONS(1377), - [anon_sym___attribute] = ACTIONS(1377), - [anon_sym___attribute__] = ACTIONS(1377), - [anon_sym___declspec] = ACTIONS(1377), - [anon_sym___cdecl] = ACTIONS(1377), - [anon_sym___clrcall] = ACTIONS(1377), - [anon_sym___stdcall] = ACTIONS(1377), - [anon_sym___fastcall] = ACTIONS(1377), - [anon_sym___thiscall] = ACTIONS(1377), - [anon_sym___vectorcall] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1379), - [anon_sym_LBRACK] = ACTIONS(1379), - [anon_sym_static] = ACTIONS(1377), - [anon_sym_auto] = ACTIONS(1377), - [anon_sym_register] = ACTIONS(1377), - [anon_sym_inline] = ACTIONS(1377), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1377), - [anon_sym_const] = ACTIONS(1377), - [anon_sym_volatile] = ACTIONS(1377), - [anon_sym_restrict] = ACTIONS(1377), - [anon_sym__Atomic] = ACTIONS(1377), - [anon_sym_in] = ACTIONS(1377), - [anon_sym_out] = ACTIONS(1377), - [anon_sym_inout] = ACTIONS(1377), - [anon_sym_bycopy] = ACTIONS(1377), - [anon_sym_byref] = ACTIONS(1377), - [anon_sym_oneway] = ACTIONS(1377), - [anon_sym__Nullable] = ACTIONS(1377), - [anon_sym__Nonnull] = ACTIONS(1377), - [anon_sym__Nullable_result] = ACTIONS(1377), - [anon_sym__Null_unspecified] = ACTIONS(1377), - [anon_sym___autoreleasing] = ACTIONS(1377), - [anon_sym___nullable] = ACTIONS(1377), - [anon_sym___nonnull] = ACTIONS(1377), - [anon_sym___strong] = ACTIONS(1377), - [anon_sym___weak] = ACTIONS(1377), - [anon_sym___bridge] = ACTIONS(1377), - [anon_sym___bridge_transfer] = ACTIONS(1377), - [anon_sym___bridge_retained] = ACTIONS(1377), - [anon_sym___unsafe_unretained] = ACTIONS(1377), - [anon_sym___block] = ACTIONS(1377), - [anon_sym___kindof] = ACTIONS(1377), - [anon_sym___unused] = ACTIONS(1377), - [anon_sym__Complex] = ACTIONS(1377), - [anon_sym___complex] = ACTIONS(1377), - [anon_sym_IBOutlet] = ACTIONS(1377), - [anon_sym_IBInspectable] = ACTIONS(1377), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1377), - [anon_sym_signed] = ACTIONS(1377), - [anon_sym_unsigned] = ACTIONS(1377), - [anon_sym_long] = ACTIONS(1377), - [anon_sym_short] = ACTIONS(1377), - [sym_primitive_type] = ACTIONS(1377), - [anon_sym_enum] = ACTIONS(1377), - [anon_sym_NS_ENUM] = ACTIONS(1377), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1377), - [anon_sym_NS_OPTIONS] = ACTIONS(1377), - [anon_sym_struct] = ACTIONS(1377), - [anon_sym_union] = ACTIONS(1377), - [anon_sym_if] = ACTIONS(1377), - [anon_sym_else] = ACTIONS(1377), - [anon_sym_switch] = ACTIONS(1377), - [anon_sym_case] = ACTIONS(1377), - [anon_sym_default] = ACTIONS(1377), - [anon_sym_while] = ACTIONS(1377), - [anon_sym_do] = ACTIONS(1377), - [anon_sym_for] = ACTIONS(1377), - [anon_sym_return] = ACTIONS(1377), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1377), - [anon_sym_goto] = ACTIONS(1377), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_sizeof] = ACTIONS(1377), - [sym_number_literal] = ACTIONS(1379), - [anon_sym_L_SQUOTE] = ACTIONS(1379), - [anon_sym_u_SQUOTE] = ACTIONS(1379), - [anon_sym_U_SQUOTE] = ACTIONS(1379), - [anon_sym_u8_SQUOTE] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_L_DQUOTE] = ACTIONS(1379), - [anon_sym_u_DQUOTE] = ACTIONS(1379), - [anon_sym_U_DQUOTE] = ACTIONS(1379), - [anon_sym_u8_DQUOTE] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [sym_true] = ACTIONS(1377), - [sym_false] = ACTIONS(1377), - [sym_null] = ACTIONS(1377), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1379), - [anon_sym_ATimport] = ACTIONS(1379), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1377), - [anon_sym_ATcompatibility_alias] = ACTIONS(1379), - [anon_sym_ATprotocol] = ACTIONS(1379), - [anon_sym_ATclass] = ACTIONS(1379), - [anon_sym_ATinterface] = ACTIONS(1379), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1377), - [sym_method_attribute_specifier] = ACTIONS(1377), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1377), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1377), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1377), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1377), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1377), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1377), - [anon_sym_NS_AVAILABLE] = ACTIONS(1377), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1377), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1377), - [anon_sym_API_AVAILABLE] = ACTIONS(1377), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1377), - [anon_sym_API_DEPRECATED] = ACTIONS(1377), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1377), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1377), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1377), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1377), - [anon_sym___deprecated_msg] = ACTIONS(1377), - [anon_sym___deprecated_enum_msg] = ACTIONS(1377), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1377), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1377), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1377), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1377), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1377), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1377), - [anon_sym_ATimplementation] = ACTIONS(1379), - [anon_sym_typeof] = ACTIONS(1377), - [anon_sym___typeof] = ACTIONS(1377), - [anon_sym___typeof__] = ACTIONS(1377), - [sym_self] = ACTIONS(1377), - [sym_super] = ACTIONS(1377), - [sym_nil] = ACTIONS(1377), - [sym_id] = ACTIONS(1377), - [sym_instancetype] = ACTIONS(1377), - [sym_Class] = ACTIONS(1377), - [sym_SEL] = ACTIONS(1377), - [sym_IMP] = ACTIONS(1377), - [sym_BOOL] = ACTIONS(1377), - [sym_auto] = ACTIONS(1377), - [anon_sym_ATautoreleasepool] = ACTIONS(1379), - [anon_sym_ATsynchronized] = ACTIONS(1379), - [anon_sym_ATtry] = ACTIONS(1379), - [anon_sym_ATcatch] = ACTIONS(1379), - [anon_sym_ATfinally] = ACTIONS(1379), - [anon_sym_ATthrow] = ACTIONS(1379), - [anon_sym_ATselector] = ACTIONS(1379), - [anon_sym_ATencode] = ACTIONS(1379), - [anon_sym_AT] = ACTIONS(1377), - [sym_YES] = ACTIONS(1377), - [sym_NO] = ACTIONS(1377), - [anon_sym___builtin_available] = ACTIONS(1377), - [anon_sym_ATavailable] = ACTIONS(1379), - [anon_sym_va_arg] = ACTIONS(1377), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [478] = { - [sym_identifier] = ACTIONS(1199), - [aux_sym_preproc_include_token1] = ACTIONS(1201), - [aux_sym_preproc_def_token1] = ACTIONS(1201), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_if_token2] = ACTIONS(1199), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1199), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1199), - [anon_sym_LPAREN2] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1199), - [anon_sym_PLUS] = ACTIONS(1199), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_typedef] = ACTIONS(1199), - [anon_sym_extern] = ACTIONS(1199), - [anon_sym___attribute] = ACTIONS(1199), - [anon_sym___attribute__] = ACTIONS(1199), - [anon_sym___declspec] = ACTIONS(1199), - [anon_sym___cdecl] = ACTIONS(1199), - [anon_sym___clrcall] = ACTIONS(1199), - [anon_sym___stdcall] = ACTIONS(1199), - [anon_sym___fastcall] = ACTIONS(1199), - [anon_sym___thiscall] = ACTIONS(1199), - [anon_sym___vectorcall] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_auto] = ACTIONS(1199), - [anon_sym_register] = ACTIONS(1199), - [anon_sym_inline] = ACTIONS(1199), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1199), - [anon_sym_const] = ACTIONS(1199), - [anon_sym_volatile] = ACTIONS(1199), - [anon_sym_restrict] = ACTIONS(1199), - [anon_sym__Atomic] = ACTIONS(1199), - [anon_sym_in] = ACTIONS(1199), - [anon_sym_out] = ACTIONS(1199), - [anon_sym_inout] = ACTIONS(1199), - [anon_sym_bycopy] = ACTIONS(1199), - [anon_sym_byref] = ACTIONS(1199), - [anon_sym_oneway] = ACTIONS(1199), - [anon_sym__Nullable] = ACTIONS(1199), - [anon_sym__Nonnull] = ACTIONS(1199), - [anon_sym__Nullable_result] = ACTIONS(1199), - [anon_sym__Null_unspecified] = ACTIONS(1199), - [anon_sym___autoreleasing] = ACTIONS(1199), - [anon_sym___nullable] = ACTIONS(1199), - [anon_sym___nonnull] = ACTIONS(1199), - [anon_sym___strong] = ACTIONS(1199), - [anon_sym___weak] = ACTIONS(1199), - [anon_sym___bridge] = ACTIONS(1199), - [anon_sym___bridge_transfer] = ACTIONS(1199), - [anon_sym___bridge_retained] = ACTIONS(1199), - [anon_sym___unsafe_unretained] = ACTIONS(1199), - [anon_sym___block] = ACTIONS(1199), - [anon_sym___kindof] = ACTIONS(1199), - [anon_sym___unused] = ACTIONS(1199), - [anon_sym__Complex] = ACTIONS(1199), - [anon_sym___complex] = ACTIONS(1199), - [anon_sym_IBOutlet] = ACTIONS(1199), - [anon_sym_IBInspectable] = ACTIONS(1199), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1199), - [anon_sym_signed] = ACTIONS(1199), - [anon_sym_unsigned] = ACTIONS(1199), - [anon_sym_long] = ACTIONS(1199), - [anon_sym_short] = ACTIONS(1199), - [sym_primitive_type] = ACTIONS(1199), - [anon_sym_enum] = ACTIONS(1199), - [anon_sym_NS_ENUM] = ACTIONS(1199), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1199), - [anon_sym_NS_OPTIONS] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_else] = ACTIONS(1199), - [anon_sym_switch] = ACTIONS(1199), - [anon_sym_case] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [anon_sym_do] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_goto] = ACTIONS(1199), - [anon_sym_DASH_DASH] = ACTIONS(1201), - [anon_sym_PLUS_PLUS] = ACTIONS(1201), - [anon_sym_sizeof] = ACTIONS(1199), - [sym_number_literal] = ACTIONS(1201), - [anon_sym_L_SQUOTE] = ACTIONS(1201), - [anon_sym_u_SQUOTE] = ACTIONS(1201), - [anon_sym_U_SQUOTE] = ACTIONS(1201), - [anon_sym_u8_SQUOTE] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(1201), - [anon_sym_L_DQUOTE] = ACTIONS(1201), - [anon_sym_u_DQUOTE] = ACTIONS(1201), - [anon_sym_U_DQUOTE] = ACTIONS(1201), - [anon_sym_u8_DQUOTE] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1201), - [sym_true] = ACTIONS(1199), - [sym_false] = ACTIONS(1199), - [sym_null] = ACTIONS(1199), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1201), - [anon_sym_ATimport] = ACTIONS(1201), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1199), - [anon_sym_ATcompatibility_alias] = ACTIONS(1201), - [anon_sym_ATprotocol] = ACTIONS(1201), - [anon_sym_ATclass] = ACTIONS(1201), - [anon_sym_ATinterface] = ACTIONS(1201), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1199), - [sym_method_attribute_specifier] = ACTIONS(1199), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1199), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1199), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1199), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1199), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1199), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1199), - [anon_sym_NS_AVAILABLE] = ACTIONS(1199), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1199), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1199), - [anon_sym_API_AVAILABLE] = ACTIONS(1199), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1199), - [anon_sym_API_DEPRECATED] = ACTIONS(1199), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1199), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1199), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1199), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1199), - [anon_sym___deprecated_msg] = ACTIONS(1199), - [anon_sym___deprecated_enum_msg] = ACTIONS(1199), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1199), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1199), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1199), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1199), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1199), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1199), - [anon_sym_ATimplementation] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1199), - [anon_sym___typeof] = ACTIONS(1199), - [anon_sym___typeof__] = ACTIONS(1199), - [sym_self] = ACTIONS(1199), - [sym_super] = ACTIONS(1199), - [sym_nil] = ACTIONS(1199), - [sym_id] = ACTIONS(1199), - [sym_instancetype] = ACTIONS(1199), - [sym_Class] = ACTIONS(1199), - [sym_SEL] = ACTIONS(1199), - [sym_IMP] = ACTIONS(1199), - [sym_BOOL] = ACTIONS(1199), - [sym_auto] = ACTIONS(1199), - [anon_sym_ATautoreleasepool] = ACTIONS(1201), - [anon_sym_ATsynchronized] = ACTIONS(1201), - [anon_sym_ATtry] = ACTIONS(1201), - [anon_sym_ATcatch] = ACTIONS(1201), - [anon_sym_ATfinally] = ACTIONS(1201), - [anon_sym_ATthrow] = ACTIONS(1201), - [anon_sym_ATselector] = ACTIONS(1201), - [anon_sym_ATencode] = ACTIONS(1201), - [anon_sym_AT] = ACTIONS(1199), - [sym_YES] = ACTIONS(1199), - [sym_NO] = ACTIONS(1199), - [anon_sym___builtin_available] = ACTIONS(1199), - [anon_sym_ATavailable] = ACTIONS(1201), - [anon_sym_va_arg] = ACTIONS(1199), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [479] = { - [sym_identifier] = ACTIONS(1697), - [aux_sym_preproc_include_token1] = ACTIONS(1699), - [aux_sym_preproc_def_token1] = ACTIONS(1699), - [aux_sym_preproc_if_token1] = ACTIONS(1697), - [aux_sym_preproc_if_token2] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [anon_sym_LPAREN2] = ACTIONS(1699), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1699), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_typedef] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym___attribute] = ACTIONS(1697), - [anon_sym___attribute__] = ACTIONS(1697), - [anon_sym___declspec] = ACTIONS(1697), - [anon_sym___cdecl] = ACTIONS(1697), - [anon_sym___clrcall] = ACTIONS(1697), - [anon_sym___stdcall] = ACTIONS(1697), - [anon_sym___fastcall] = ACTIONS(1697), - [anon_sym___thiscall] = ACTIONS(1697), - [anon_sym___vectorcall] = ACTIONS(1697), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_auto] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym_inline] = ACTIONS(1697), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_restrict] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [anon_sym_in] = ACTIONS(1697), - [anon_sym_out] = ACTIONS(1697), - [anon_sym_inout] = ACTIONS(1697), - [anon_sym_bycopy] = ACTIONS(1697), - [anon_sym_byref] = ACTIONS(1697), - [anon_sym_oneway] = ACTIONS(1697), - [anon_sym__Nullable] = ACTIONS(1697), - [anon_sym__Nonnull] = ACTIONS(1697), - [anon_sym__Nullable_result] = ACTIONS(1697), - [anon_sym__Null_unspecified] = ACTIONS(1697), - [anon_sym___autoreleasing] = ACTIONS(1697), - [anon_sym___nullable] = ACTIONS(1697), - [anon_sym___nonnull] = ACTIONS(1697), - [anon_sym___strong] = ACTIONS(1697), - [anon_sym___weak] = ACTIONS(1697), - [anon_sym___bridge] = ACTIONS(1697), - [anon_sym___bridge_transfer] = ACTIONS(1697), - [anon_sym___bridge_retained] = ACTIONS(1697), - [anon_sym___unsafe_unretained] = ACTIONS(1697), - [anon_sym___block] = ACTIONS(1697), - [anon_sym___kindof] = ACTIONS(1697), - [anon_sym___unused] = ACTIONS(1697), - [anon_sym__Complex] = ACTIONS(1697), - [anon_sym___complex] = ACTIONS(1697), - [anon_sym_IBOutlet] = ACTIONS(1697), - [anon_sym_IBInspectable] = ACTIONS(1697), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1697), - [anon_sym_unsigned] = ACTIONS(1697), - [anon_sym_long] = ACTIONS(1697), - [anon_sym_short] = ACTIONS(1697), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1697), - [anon_sym_NS_ENUM] = ACTIONS(1697), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1697), - [anon_sym_NS_OPTIONS] = ACTIONS(1697), - [anon_sym_struct] = ACTIONS(1697), - [anon_sym_union] = ACTIONS(1697), - [anon_sym_if] = ACTIONS(1697), - [anon_sym_else] = ACTIONS(1697), - [anon_sym_switch] = ACTIONS(1697), - [anon_sym_case] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1697), - [anon_sym_while] = ACTIONS(1697), - [anon_sym_do] = ACTIONS(1697), - [anon_sym_for] = ACTIONS(1697), - [anon_sym_return] = ACTIONS(1697), - [anon_sym_break] = ACTIONS(1697), - [anon_sym_continue] = ACTIONS(1697), - [anon_sym_goto] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_sizeof] = ACTIONS(1697), - [sym_number_literal] = ACTIONS(1699), - [anon_sym_L_SQUOTE] = ACTIONS(1699), - [anon_sym_u_SQUOTE] = ACTIONS(1699), - [anon_sym_U_SQUOTE] = ACTIONS(1699), - [anon_sym_u8_SQUOTE] = ACTIONS(1699), - [anon_sym_SQUOTE] = ACTIONS(1699), - [anon_sym_L_DQUOTE] = ACTIONS(1699), - [anon_sym_u_DQUOTE] = ACTIONS(1699), - [anon_sym_U_DQUOTE] = ACTIONS(1699), - [anon_sym_u8_DQUOTE] = ACTIONS(1699), - [anon_sym_DQUOTE] = ACTIONS(1699), - [sym_true] = ACTIONS(1697), - [sym_false] = ACTIONS(1697), - [sym_null] = ACTIONS(1697), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1699), - [anon_sym_ATimport] = ACTIONS(1699), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1697), - [anon_sym_ATcompatibility_alias] = ACTIONS(1699), - [anon_sym_ATprotocol] = ACTIONS(1699), - [anon_sym_ATclass] = ACTIONS(1699), - [anon_sym_ATinterface] = ACTIONS(1699), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1697), - [sym_method_attribute_specifier] = ACTIONS(1697), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1697), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1697), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1697), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1697), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1697), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1697), - [anon_sym_NS_AVAILABLE] = ACTIONS(1697), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1697), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1697), - [anon_sym_API_AVAILABLE] = ACTIONS(1697), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1697), - [anon_sym_API_DEPRECATED] = ACTIONS(1697), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1697), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1697), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1697), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1697), - [anon_sym___deprecated_msg] = ACTIONS(1697), - [anon_sym___deprecated_enum_msg] = ACTIONS(1697), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1697), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1697), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1697), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1697), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1697), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1697), - [anon_sym_ATimplementation] = ACTIONS(1699), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym___typeof] = ACTIONS(1697), - [anon_sym___typeof__] = ACTIONS(1697), - [sym_self] = ACTIONS(1697), - [sym_super] = ACTIONS(1697), - [sym_nil] = ACTIONS(1697), - [sym_id] = ACTIONS(1697), - [sym_instancetype] = ACTIONS(1697), - [sym_Class] = ACTIONS(1697), - [sym_SEL] = ACTIONS(1697), - [sym_IMP] = ACTIONS(1697), - [sym_BOOL] = ACTIONS(1697), - [sym_auto] = ACTIONS(1697), - [anon_sym_ATautoreleasepool] = ACTIONS(1699), - [anon_sym_ATsynchronized] = ACTIONS(1699), - [anon_sym_ATtry] = ACTIONS(1699), - [anon_sym_ATcatch] = ACTIONS(1699), - [anon_sym_ATfinally] = ACTIONS(1699), - [anon_sym_ATthrow] = ACTIONS(1699), - [anon_sym_ATselector] = ACTIONS(1699), - [anon_sym_ATencode] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(1697), - [sym_YES] = ACTIONS(1697), - [sym_NO] = ACTIONS(1697), - [anon_sym___builtin_available] = ACTIONS(1697), - [anon_sym_ATavailable] = ACTIONS(1699), - [anon_sym_va_arg] = ACTIONS(1697), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [480] = { - [sym_identifier] = ACTIONS(1701), - [aux_sym_preproc_include_token1] = ACTIONS(1703), - [aux_sym_preproc_def_token1] = ACTIONS(1703), - [aux_sym_preproc_if_token1] = ACTIONS(1701), - [aux_sym_preproc_if_token2] = ACTIONS(1701), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1701), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1701), - [anon_sym_LPAREN2] = ACTIONS(1703), - [anon_sym_BANG] = ACTIONS(1703), - [anon_sym_TILDE] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_PLUS] = ACTIONS(1701), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_CARET] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_typedef] = ACTIONS(1701), - [anon_sym_extern] = ACTIONS(1701), - [anon_sym___attribute] = ACTIONS(1701), - [anon_sym___attribute__] = ACTIONS(1701), - [anon_sym___declspec] = ACTIONS(1701), - [anon_sym___cdecl] = ACTIONS(1701), - [anon_sym___clrcall] = ACTIONS(1701), - [anon_sym___stdcall] = ACTIONS(1701), - [anon_sym___fastcall] = ACTIONS(1701), - [anon_sym___thiscall] = ACTIONS(1701), - [anon_sym___vectorcall] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1701), - [anon_sym_auto] = ACTIONS(1701), - [anon_sym_register] = ACTIONS(1701), - [anon_sym_inline] = ACTIONS(1701), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1701), - [anon_sym_const] = ACTIONS(1701), - [anon_sym_volatile] = ACTIONS(1701), - [anon_sym_restrict] = ACTIONS(1701), - [anon_sym__Atomic] = ACTIONS(1701), - [anon_sym_in] = ACTIONS(1701), - [anon_sym_out] = ACTIONS(1701), - [anon_sym_inout] = ACTIONS(1701), - [anon_sym_bycopy] = ACTIONS(1701), - [anon_sym_byref] = ACTIONS(1701), - [anon_sym_oneway] = ACTIONS(1701), - [anon_sym__Nullable] = ACTIONS(1701), - [anon_sym__Nonnull] = ACTIONS(1701), - [anon_sym__Nullable_result] = ACTIONS(1701), - [anon_sym__Null_unspecified] = ACTIONS(1701), - [anon_sym___autoreleasing] = ACTIONS(1701), - [anon_sym___nullable] = ACTIONS(1701), - [anon_sym___nonnull] = ACTIONS(1701), - [anon_sym___strong] = ACTIONS(1701), - [anon_sym___weak] = ACTIONS(1701), - [anon_sym___bridge] = ACTIONS(1701), - [anon_sym___bridge_transfer] = ACTIONS(1701), - [anon_sym___bridge_retained] = ACTIONS(1701), - [anon_sym___unsafe_unretained] = ACTIONS(1701), - [anon_sym___block] = ACTIONS(1701), - [anon_sym___kindof] = ACTIONS(1701), - [anon_sym___unused] = ACTIONS(1701), - [anon_sym__Complex] = ACTIONS(1701), - [anon_sym___complex] = ACTIONS(1701), - [anon_sym_IBOutlet] = ACTIONS(1701), - [anon_sym_IBInspectable] = ACTIONS(1701), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1701), - [anon_sym_signed] = ACTIONS(1701), - [anon_sym_unsigned] = ACTIONS(1701), - [anon_sym_long] = ACTIONS(1701), - [anon_sym_short] = ACTIONS(1701), - [sym_primitive_type] = ACTIONS(1701), - [anon_sym_enum] = ACTIONS(1701), - [anon_sym_NS_ENUM] = ACTIONS(1701), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1701), - [anon_sym_NS_OPTIONS] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1701), - [anon_sym_union] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_else] = ACTIONS(1701), - [anon_sym_switch] = ACTIONS(1701), - [anon_sym_case] = ACTIONS(1701), - [anon_sym_default] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_do] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_break] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_goto] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1703), - [anon_sym_PLUS_PLUS] = ACTIONS(1703), - [anon_sym_sizeof] = ACTIONS(1701), - [sym_number_literal] = ACTIONS(1703), - [anon_sym_L_SQUOTE] = ACTIONS(1703), - [anon_sym_u_SQUOTE] = ACTIONS(1703), - [anon_sym_U_SQUOTE] = ACTIONS(1703), - [anon_sym_u8_SQUOTE] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1703), - [anon_sym_L_DQUOTE] = ACTIONS(1703), - [anon_sym_u_DQUOTE] = ACTIONS(1703), - [anon_sym_U_DQUOTE] = ACTIONS(1703), - [anon_sym_u8_DQUOTE] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [sym_true] = ACTIONS(1701), - [sym_false] = ACTIONS(1701), - [sym_null] = ACTIONS(1701), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1703), - [anon_sym_ATimport] = ACTIONS(1703), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1701), - [anon_sym_ATcompatibility_alias] = ACTIONS(1703), - [anon_sym_ATprotocol] = ACTIONS(1703), - [anon_sym_ATclass] = ACTIONS(1703), - [anon_sym_ATinterface] = ACTIONS(1703), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1701), - [sym_method_attribute_specifier] = ACTIONS(1701), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1701), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1701), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1701), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1701), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1701), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1701), - [anon_sym_NS_AVAILABLE] = ACTIONS(1701), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1701), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1701), - [anon_sym_API_AVAILABLE] = ACTIONS(1701), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1701), - [anon_sym_API_DEPRECATED] = ACTIONS(1701), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1701), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1701), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1701), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1701), - [anon_sym___deprecated_msg] = ACTIONS(1701), - [anon_sym___deprecated_enum_msg] = ACTIONS(1701), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1701), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1701), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1701), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1701), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1701), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1701), - [anon_sym_ATimplementation] = ACTIONS(1703), - [anon_sym_typeof] = ACTIONS(1701), - [anon_sym___typeof] = ACTIONS(1701), - [anon_sym___typeof__] = ACTIONS(1701), - [sym_self] = ACTIONS(1701), - [sym_super] = ACTIONS(1701), - [sym_nil] = ACTIONS(1701), - [sym_id] = ACTIONS(1701), - [sym_instancetype] = ACTIONS(1701), - [sym_Class] = ACTIONS(1701), - [sym_SEL] = ACTIONS(1701), - [sym_IMP] = ACTIONS(1701), - [sym_BOOL] = ACTIONS(1701), - [sym_auto] = ACTIONS(1701), - [anon_sym_ATautoreleasepool] = ACTIONS(1703), - [anon_sym_ATsynchronized] = ACTIONS(1703), - [anon_sym_ATtry] = ACTIONS(1703), - [anon_sym_ATcatch] = ACTIONS(1703), - [anon_sym_ATfinally] = ACTIONS(1703), - [anon_sym_ATthrow] = ACTIONS(1703), - [anon_sym_ATselector] = ACTIONS(1703), - [anon_sym_ATencode] = ACTIONS(1703), - [anon_sym_AT] = ACTIONS(1701), - [sym_YES] = ACTIONS(1701), - [sym_NO] = ACTIONS(1701), - [anon_sym___builtin_available] = ACTIONS(1701), - [anon_sym_ATavailable] = ACTIONS(1703), - [anon_sym_va_arg] = ACTIONS(1701), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [481] = { + [374] = { [sym_identifier] = ACTIONS(1627), [aux_sym_preproc_include_token1] = ACTIONS(1625), [aux_sym_preproc_def_token1] = ACTIONS(1625), @@ -110405,9 +91649,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1627), [sym_primitive_type] = ACTIONS(1627), [anon_sym_enum] = ACTIONS(1627), - [anon_sym_NS_ENUM] = ACTIONS(1627), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1627), - [anon_sym_NS_OPTIONS] = ACTIONS(1627), [anon_sym_struct] = ACTIONS(1627), [anon_sym_union] = ACTIONS(1627), [anon_sym_if] = ACTIONS(1627), @@ -110474,6 +91715,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1627), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1627), [anon_sym_ATimplementation] = ACTIONS(1625), + [anon_sym_NS_ENUM] = ACTIONS(1627), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1627), + [anon_sym_NS_OPTIONS] = ACTIONS(1627), [anon_sym_typeof] = ACTIONS(1627), [anon_sym___typeof] = ACTIONS(1627), [anon_sym___typeof__] = ACTIONS(1627), @@ -110508,174 +91752,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [482] = { - [sym_identifier] = ACTIONS(1405), - [aux_sym_preproc_include_token1] = ACTIONS(1407), - [aux_sym_preproc_def_token1] = ACTIONS(1407), - [aux_sym_preproc_if_token1] = ACTIONS(1405), - [aux_sym_preproc_if_token2] = ACTIONS(1405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1405), - [anon_sym_LPAREN2] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_typedef] = ACTIONS(1405), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym___attribute] = ACTIONS(1405), - [anon_sym___attribute__] = ACTIONS(1405), - [anon_sym___declspec] = ACTIONS(1405), - [anon_sym___cdecl] = ACTIONS(1405), - [anon_sym___clrcall] = ACTIONS(1405), - [anon_sym___stdcall] = ACTIONS(1405), - [anon_sym___fastcall] = ACTIONS(1405), - [anon_sym___thiscall] = ACTIONS(1405), - [anon_sym___vectorcall] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_auto] = ACTIONS(1405), - [anon_sym_register] = ACTIONS(1405), - [anon_sym_inline] = ACTIONS(1405), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_volatile] = ACTIONS(1405), - [anon_sym_restrict] = ACTIONS(1405), - [anon_sym__Atomic] = ACTIONS(1405), - [anon_sym_in] = ACTIONS(1405), - [anon_sym_out] = ACTIONS(1405), - [anon_sym_inout] = ACTIONS(1405), - [anon_sym_bycopy] = ACTIONS(1405), - [anon_sym_byref] = ACTIONS(1405), - [anon_sym_oneway] = ACTIONS(1405), - [anon_sym__Nullable] = ACTIONS(1405), - [anon_sym__Nonnull] = ACTIONS(1405), - [anon_sym__Nullable_result] = ACTIONS(1405), - [anon_sym__Null_unspecified] = ACTIONS(1405), - [anon_sym___autoreleasing] = ACTIONS(1405), - [anon_sym___nullable] = ACTIONS(1405), - [anon_sym___nonnull] = ACTIONS(1405), - [anon_sym___strong] = ACTIONS(1405), - [anon_sym___weak] = ACTIONS(1405), - [anon_sym___bridge] = ACTIONS(1405), - [anon_sym___bridge_transfer] = ACTIONS(1405), - [anon_sym___bridge_retained] = ACTIONS(1405), - [anon_sym___unsafe_unretained] = ACTIONS(1405), - [anon_sym___block] = ACTIONS(1405), - [anon_sym___kindof] = ACTIONS(1405), - [anon_sym___unused] = ACTIONS(1405), - [anon_sym__Complex] = ACTIONS(1405), - [anon_sym___complex] = ACTIONS(1405), - [anon_sym_IBOutlet] = ACTIONS(1405), - [anon_sym_IBInspectable] = ACTIONS(1405), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1405), - [anon_sym_signed] = ACTIONS(1405), - [anon_sym_unsigned] = ACTIONS(1405), - [anon_sym_long] = ACTIONS(1405), - [anon_sym_short] = ACTIONS(1405), - [sym_primitive_type] = ACTIONS(1405), - [anon_sym_enum] = ACTIONS(1405), - [anon_sym_NS_ENUM] = ACTIONS(1405), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1405), - [anon_sym_NS_OPTIONS] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_union] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_switch] = ACTIONS(1405), - [anon_sym_case] = ACTIONS(1405), - [anon_sym_default] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_goto] = ACTIONS(1405), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_sizeof] = ACTIONS(1405), - [sym_number_literal] = ACTIONS(1407), - [anon_sym_L_SQUOTE] = ACTIONS(1407), - [anon_sym_u_SQUOTE] = ACTIONS(1407), - [anon_sym_U_SQUOTE] = ACTIONS(1407), - [anon_sym_u8_SQUOTE] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1407), - [anon_sym_L_DQUOTE] = ACTIONS(1407), - [anon_sym_u_DQUOTE] = ACTIONS(1407), - [anon_sym_U_DQUOTE] = ACTIONS(1407), - [anon_sym_u8_DQUOTE] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [sym_true] = ACTIONS(1405), - [sym_false] = ACTIONS(1405), - [sym_null] = ACTIONS(1405), + [375] = { + [sym_identifier] = ACTIONS(1623), + [aux_sym_preproc_include_token1] = ACTIONS(1621), + [aux_sym_preproc_def_token1] = ACTIONS(1621), + [aux_sym_preproc_if_token1] = ACTIONS(1623), + [aux_sym_preproc_if_token2] = ACTIONS(1623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1623), + [anon_sym_LPAREN2] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1621), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1621), + [anon_sym_typedef] = ACTIONS(1623), + [anon_sym_extern] = ACTIONS(1623), + [anon_sym___attribute] = ACTIONS(1623), + [anon_sym___attribute__] = ACTIONS(1623), + [anon_sym___declspec] = ACTIONS(1623), + [anon_sym___cdecl] = ACTIONS(1623), + [anon_sym___clrcall] = ACTIONS(1623), + [anon_sym___stdcall] = ACTIONS(1623), + [anon_sym___fastcall] = ACTIONS(1623), + [anon_sym___thiscall] = ACTIONS(1623), + [anon_sym___vectorcall] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1623), + [anon_sym_auto] = ACTIONS(1623), + [anon_sym_register] = ACTIONS(1623), + [anon_sym_inline] = ACTIONS(1623), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1623), + [anon_sym_const] = ACTIONS(1623), + [anon_sym_volatile] = ACTIONS(1623), + [anon_sym_restrict] = ACTIONS(1623), + [anon_sym__Atomic] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_out] = ACTIONS(1623), + [anon_sym_inout] = ACTIONS(1623), + [anon_sym_bycopy] = ACTIONS(1623), + [anon_sym_byref] = ACTIONS(1623), + [anon_sym_oneway] = ACTIONS(1623), + [anon_sym__Nullable] = ACTIONS(1623), + [anon_sym__Nonnull] = ACTIONS(1623), + [anon_sym__Nullable_result] = ACTIONS(1623), + [anon_sym__Null_unspecified] = ACTIONS(1623), + [anon_sym___autoreleasing] = ACTIONS(1623), + [anon_sym___nullable] = ACTIONS(1623), + [anon_sym___nonnull] = ACTIONS(1623), + [anon_sym___strong] = ACTIONS(1623), + [anon_sym___weak] = ACTIONS(1623), + [anon_sym___bridge] = ACTIONS(1623), + [anon_sym___bridge_transfer] = ACTIONS(1623), + [anon_sym___bridge_retained] = ACTIONS(1623), + [anon_sym___unsafe_unretained] = ACTIONS(1623), + [anon_sym___block] = ACTIONS(1623), + [anon_sym___kindof] = ACTIONS(1623), + [anon_sym___unused] = ACTIONS(1623), + [anon_sym__Complex] = ACTIONS(1623), + [anon_sym___complex] = ACTIONS(1623), + [anon_sym_IBOutlet] = ACTIONS(1623), + [anon_sym_IBInspectable] = ACTIONS(1623), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1623), + [anon_sym_signed] = ACTIONS(1623), + [anon_sym_unsigned] = ACTIONS(1623), + [anon_sym_long] = ACTIONS(1623), + [anon_sym_short] = ACTIONS(1623), + [sym_primitive_type] = ACTIONS(1623), + [anon_sym_enum] = ACTIONS(1623), + [anon_sym_struct] = ACTIONS(1623), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1623), + [anon_sym_else] = ACTIONS(1623), + [anon_sym_switch] = ACTIONS(1623), + [anon_sym_case] = ACTIONS(1623), + [anon_sym_default] = ACTIONS(1623), + [anon_sym_while] = ACTIONS(1623), + [anon_sym_do] = ACTIONS(1623), + [anon_sym_for] = ACTIONS(1623), + [anon_sym_return] = ACTIONS(1623), + [anon_sym_break] = ACTIONS(1623), + [anon_sym_continue] = ACTIONS(1623), + [anon_sym_goto] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_sizeof] = ACTIONS(1623), + [sym_number_literal] = ACTIONS(1621), + [anon_sym_L_SQUOTE] = ACTIONS(1621), + [anon_sym_u_SQUOTE] = ACTIONS(1621), + [anon_sym_U_SQUOTE] = ACTIONS(1621), + [anon_sym_u8_SQUOTE] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_L_DQUOTE] = ACTIONS(1621), + [anon_sym_u_DQUOTE] = ACTIONS(1621), + [anon_sym_U_DQUOTE] = ACTIONS(1621), + [anon_sym_u8_DQUOTE] = ACTIONS(1621), + [anon_sym_DQUOTE] = ACTIONS(1621), + [sym_true] = ACTIONS(1623), + [sym_false] = ACTIONS(1623), + [sym_null] = ACTIONS(1623), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1407), - [anon_sym_ATimport] = ACTIONS(1407), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1405), - [anon_sym_ATcompatibility_alias] = ACTIONS(1407), - [anon_sym_ATprotocol] = ACTIONS(1407), - [anon_sym_ATclass] = ACTIONS(1407), - [anon_sym_ATinterface] = ACTIONS(1407), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1405), - [sym_method_attribute_specifier] = ACTIONS(1405), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1405), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1405), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1405), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1405), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1405), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1405), - [anon_sym_NS_AVAILABLE] = ACTIONS(1405), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1405), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1405), - [anon_sym_API_AVAILABLE] = ACTIONS(1405), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1405), - [anon_sym_API_DEPRECATED] = ACTIONS(1405), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1405), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1405), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1405), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1405), - [anon_sym___deprecated_msg] = ACTIONS(1405), - [anon_sym___deprecated_enum_msg] = ACTIONS(1405), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1405), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1405), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1405), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1405), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1405), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1405), - [anon_sym_ATimplementation] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1405), - [anon_sym___typeof] = ACTIONS(1405), - [anon_sym___typeof__] = ACTIONS(1405), - [sym_self] = ACTIONS(1405), - [sym_super] = ACTIONS(1405), - [sym_nil] = ACTIONS(1405), - [sym_id] = ACTIONS(1405), - [sym_instancetype] = ACTIONS(1405), - [sym_Class] = ACTIONS(1405), - [sym_SEL] = ACTIONS(1405), - [sym_IMP] = ACTIONS(1405), - [sym_BOOL] = ACTIONS(1405), - [sym_auto] = ACTIONS(1405), - [anon_sym_ATautoreleasepool] = ACTIONS(1407), - [anon_sym_ATsynchronized] = ACTIONS(1407), - [anon_sym_ATtry] = ACTIONS(1407), - [anon_sym_ATcatch] = ACTIONS(1407), - [anon_sym_ATfinally] = ACTIONS(1407), - [anon_sym_ATthrow] = ACTIONS(1407), - [anon_sym_ATselector] = ACTIONS(1407), - [anon_sym_ATencode] = ACTIONS(1407), - [anon_sym_AT] = ACTIONS(1405), - [sym_YES] = ACTIONS(1405), - [sym_NO] = ACTIONS(1405), - [anon_sym___builtin_available] = ACTIONS(1405), - [anon_sym_ATavailable] = ACTIONS(1407), - [anon_sym_va_arg] = ACTIONS(1405), + [anon_sym_POUNDimport] = ACTIONS(1621), + [anon_sym_ATimport] = ACTIONS(1621), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1623), + [anon_sym_ATcompatibility_alias] = ACTIONS(1621), + [anon_sym_ATprotocol] = ACTIONS(1621), + [anon_sym_ATclass] = ACTIONS(1621), + [anon_sym_ATinterface] = ACTIONS(1621), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1623), + [sym_method_attribute_specifier] = ACTIONS(1623), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1623), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1623), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1623), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1623), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1623), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1623), + [anon_sym_NS_AVAILABLE] = ACTIONS(1623), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1623), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1623), + [anon_sym_API_AVAILABLE] = ACTIONS(1623), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1623), + [anon_sym_API_DEPRECATED] = ACTIONS(1623), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1623), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1623), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1623), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1623), + [anon_sym___deprecated_msg] = ACTIONS(1623), + [anon_sym___deprecated_enum_msg] = ACTIONS(1623), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1623), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1623), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1623), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1623), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1623), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1623), + [anon_sym_ATimplementation] = ACTIONS(1621), + [anon_sym_NS_ENUM] = ACTIONS(1623), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1623), + [anon_sym_NS_OPTIONS] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1623), + [anon_sym___typeof] = ACTIONS(1623), + [anon_sym___typeof__] = ACTIONS(1623), + [sym_self] = ACTIONS(1623), + [sym_super] = ACTIONS(1623), + [sym_nil] = ACTIONS(1623), + [sym_id] = ACTIONS(1623), + [sym_instancetype] = ACTIONS(1623), + [sym_Class] = ACTIONS(1623), + [sym_SEL] = ACTIONS(1623), + [sym_IMP] = ACTIONS(1623), + [sym_BOOL] = ACTIONS(1623), + [sym_auto] = ACTIONS(1623), + [anon_sym_ATautoreleasepool] = ACTIONS(1621), + [anon_sym_ATsynchronized] = ACTIONS(1621), + [anon_sym_ATtry] = ACTIONS(1621), + [anon_sym_ATcatch] = ACTIONS(1621), + [anon_sym_ATfinally] = ACTIONS(1621), + [anon_sym_ATthrow] = ACTIONS(1621), + [anon_sym_ATselector] = ACTIONS(1621), + [anon_sym_ATencode] = ACTIONS(1621), + [anon_sym_AT] = ACTIONS(1623), + [sym_YES] = ACTIONS(1623), + [sym_NO] = ACTIONS(1623), + [anon_sym___builtin_available] = ACTIONS(1623), + [anon_sym_ATavailable] = ACTIONS(1621), + [anon_sym_va_arg] = ACTIONS(1623), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -110683,532 +91927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [483] = { - [sym_identifier] = ACTIONS(1565), - [aux_sym_preproc_include_token1] = ACTIONS(1567), - [aux_sym_preproc_def_token1] = ACTIONS(1567), - [aux_sym_preproc_if_token1] = ACTIONS(1565), - [aux_sym_preproc_if_token2] = ACTIONS(1565), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1565), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1565), - [anon_sym_LPAREN2] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1567), - [anon_sym_TILDE] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1565), - [anon_sym_PLUS] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1567), - [anon_sym_AMP] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_typedef] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym___attribute] = ACTIONS(1565), - [anon_sym___attribute__] = ACTIONS(1565), - [anon_sym___declspec] = ACTIONS(1565), - [anon_sym___cdecl] = ACTIONS(1565), - [anon_sym___clrcall] = ACTIONS(1565), - [anon_sym___stdcall] = ACTIONS(1565), - [anon_sym___fastcall] = ACTIONS(1565), - [anon_sym___thiscall] = ACTIONS(1565), - [anon_sym___vectorcall] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_static] = ACTIONS(1565), - [anon_sym_auto] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_inline] = ACTIONS(1565), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [anon_sym_volatile] = ACTIONS(1565), - [anon_sym_restrict] = ACTIONS(1565), - [anon_sym__Atomic] = ACTIONS(1565), - [anon_sym_in] = ACTIONS(1565), - [anon_sym_out] = ACTIONS(1565), - [anon_sym_inout] = ACTIONS(1565), - [anon_sym_bycopy] = ACTIONS(1565), - [anon_sym_byref] = ACTIONS(1565), - [anon_sym_oneway] = ACTIONS(1565), - [anon_sym__Nullable] = ACTIONS(1565), - [anon_sym__Nonnull] = ACTIONS(1565), - [anon_sym__Nullable_result] = ACTIONS(1565), - [anon_sym__Null_unspecified] = ACTIONS(1565), - [anon_sym___autoreleasing] = ACTIONS(1565), - [anon_sym___nullable] = ACTIONS(1565), - [anon_sym___nonnull] = ACTIONS(1565), - [anon_sym___strong] = ACTIONS(1565), - [anon_sym___weak] = ACTIONS(1565), - [anon_sym___bridge] = ACTIONS(1565), - [anon_sym___bridge_transfer] = ACTIONS(1565), - [anon_sym___bridge_retained] = ACTIONS(1565), - [anon_sym___unsafe_unretained] = ACTIONS(1565), - [anon_sym___block] = ACTIONS(1565), - [anon_sym___kindof] = ACTIONS(1565), - [anon_sym___unused] = ACTIONS(1565), - [anon_sym__Complex] = ACTIONS(1565), - [anon_sym___complex] = ACTIONS(1565), - [anon_sym_IBOutlet] = ACTIONS(1565), - [anon_sym_IBInspectable] = ACTIONS(1565), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1565), - [anon_sym_signed] = ACTIONS(1565), - [anon_sym_unsigned] = ACTIONS(1565), - [anon_sym_long] = ACTIONS(1565), - [anon_sym_short] = ACTIONS(1565), - [sym_primitive_type] = ACTIONS(1565), - [anon_sym_enum] = ACTIONS(1565), - [anon_sym_NS_ENUM] = ACTIONS(1565), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1565), - [anon_sym_NS_OPTIONS] = ACTIONS(1565), - [anon_sym_struct] = ACTIONS(1565), - [anon_sym_union] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_switch] = ACTIONS(1565), - [anon_sym_case] = ACTIONS(1565), - [anon_sym_default] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_goto] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1567), - [anon_sym_PLUS_PLUS] = ACTIONS(1567), - [anon_sym_sizeof] = ACTIONS(1565), - [sym_number_literal] = ACTIONS(1567), - [anon_sym_L_SQUOTE] = ACTIONS(1567), - [anon_sym_u_SQUOTE] = ACTIONS(1567), - [anon_sym_U_SQUOTE] = ACTIONS(1567), - [anon_sym_u8_SQUOTE] = ACTIONS(1567), - [anon_sym_SQUOTE] = ACTIONS(1567), - [anon_sym_L_DQUOTE] = ACTIONS(1567), - [anon_sym_u_DQUOTE] = ACTIONS(1567), - [anon_sym_U_DQUOTE] = ACTIONS(1567), - [anon_sym_u8_DQUOTE] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym_true] = ACTIONS(1565), - [sym_false] = ACTIONS(1565), - [sym_null] = ACTIONS(1565), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1567), - [anon_sym_ATimport] = ACTIONS(1567), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1565), - [anon_sym_ATcompatibility_alias] = ACTIONS(1567), - [anon_sym_ATprotocol] = ACTIONS(1567), - [anon_sym_ATclass] = ACTIONS(1567), - [anon_sym_ATinterface] = ACTIONS(1567), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1565), - [sym_method_attribute_specifier] = ACTIONS(1565), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1565), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1565), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1565), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1565), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1565), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1565), - [anon_sym_NS_AVAILABLE] = ACTIONS(1565), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1565), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1565), - [anon_sym_API_AVAILABLE] = ACTIONS(1565), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1565), - [anon_sym_API_DEPRECATED] = ACTIONS(1565), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1565), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1565), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1565), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1565), - [anon_sym___deprecated_msg] = ACTIONS(1565), - [anon_sym___deprecated_enum_msg] = ACTIONS(1565), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1565), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1565), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1565), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1565), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1565), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1565), - [anon_sym_ATimplementation] = ACTIONS(1567), - [anon_sym_typeof] = ACTIONS(1565), - [anon_sym___typeof] = ACTIONS(1565), - [anon_sym___typeof__] = ACTIONS(1565), - [sym_self] = ACTIONS(1565), - [sym_super] = ACTIONS(1565), - [sym_nil] = ACTIONS(1565), - [sym_id] = ACTIONS(1565), - [sym_instancetype] = ACTIONS(1565), - [sym_Class] = ACTIONS(1565), - [sym_SEL] = ACTIONS(1565), - [sym_IMP] = ACTIONS(1565), - [sym_BOOL] = ACTIONS(1565), - [sym_auto] = ACTIONS(1565), - [anon_sym_ATautoreleasepool] = ACTIONS(1567), - [anon_sym_ATsynchronized] = ACTIONS(1567), - [anon_sym_ATtry] = ACTIONS(1567), - [anon_sym_ATcatch] = ACTIONS(1567), - [anon_sym_ATfinally] = ACTIONS(1567), - [anon_sym_ATthrow] = ACTIONS(1567), - [anon_sym_ATselector] = ACTIONS(1567), - [anon_sym_ATencode] = ACTIONS(1567), - [anon_sym_AT] = ACTIONS(1565), - [sym_YES] = ACTIONS(1565), - [sym_NO] = ACTIONS(1565), - [anon_sym___builtin_available] = ACTIONS(1565), - [anon_sym_ATavailable] = ACTIONS(1567), - [anon_sym_va_arg] = ACTIONS(1565), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [484] = { - [sym_identifier] = ACTIONS(1569), - [aux_sym_preproc_include_token1] = ACTIONS(1571), - [aux_sym_preproc_def_token1] = ACTIONS(1571), - [aux_sym_preproc_if_token1] = ACTIONS(1569), - [aux_sym_preproc_if_token2] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_typedef] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym___attribute] = ACTIONS(1569), - [anon_sym___attribute__] = ACTIONS(1569), - [anon_sym___declspec] = ACTIONS(1569), - [anon_sym___cdecl] = ACTIONS(1569), - [anon_sym___clrcall] = ACTIONS(1569), - [anon_sym___stdcall] = ACTIONS(1569), - [anon_sym___fastcall] = ACTIONS(1569), - [anon_sym___thiscall] = ACTIONS(1569), - [anon_sym___vectorcall] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_auto] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_inline] = ACTIONS(1569), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [anon_sym_volatile] = ACTIONS(1569), - [anon_sym_restrict] = ACTIONS(1569), - [anon_sym__Atomic] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_out] = ACTIONS(1569), - [anon_sym_inout] = ACTIONS(1569), - [anon_sym_bycopy] = ACTIONS(1569), - [anon_sym_byref] = ACTIONS(1569), - [anon_sym_oneway] = ACTIONS(1569), - [anon_sym__Nullable] = ACTIONS(1569), - [anon_sym__Nonnull] = ACTIONS(1569), - [anon_sym__Nullable_result] = ACTIONS(1569), - [anon_sym__Null_unspecified] = ACTIONS(1569), - [anon_sym___autoreleasing] = ACTIONS(1569), - [anon_sym___nullable] = ACTIONS(1569), - [anon_sym___nonnull] = ACTIONS(1569), - [anon_sym___strong] = ACTIONS(1569), - [anon_sym___weak] = ACTIONS(1569), - [anon_sym___bridge] = ACTIONS(1569), - [anon_sym___bridge_transfer] = ACTIONS(1569), - [anon_sym___bridge_retained] = ACTIONS(1569), - [anon_sym___unsafe_unretained] = ACTIONS(1569), - [anon_sym___block] = ACTIONS(1569), - [anon_sym___kindof] = ACTIONS(1569), - [anon_sym___unused] = ACTIONS(1569), - [anon_sym__Complex] = ACTIONS(1569), - [anon_sym___complex] = ACTIONS(1569), - [anon_sym_IBOutlet] = ACTIONS(1569), - [anon_sym_IBInspectable] = ACTIONS(1569), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1569), - [anon_sym_signed] = ACTIONS(1569), - [anon_sym_unsigned] = ACTIONS(1569), - [anon_sym_long] = ACTIONS(1569), - [anon_sym_short] = ACTIONS(1569), - [sym_primitive_type] = ACTIONS(1569), - [anon_sym_enum] = ACTIONS(1569), - [anon_sym_NS_ENUM] = ACTIONS(1569), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1569), - [anon_sym_NS_OPTIONS] = ACTIONS(1569), - [anon_sym_struct] = ACTIONS(1569), - [anon_sym_union] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_switch] = ACTIONS(1569), - [anon_sym_case] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_goto] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_sizeof] = ACTIONS(1569), - [sym_number_literal] = ACTIONS(1571), - [anon_sym_L_SQUOTE] = ACTIONS(1571), - [anon_sym_u_SQUOTE] = ACTIONS(1571), - [anon_sym_U_SQUOTE] = ACTIONS(1571), - [anon_sym_u8_SQUOTE] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [anon_sym_L_DQUOTE] = ACTIONS(1571), - [anon_sym_u_DQUOTE] = ACTIONS(1571), - [anon_sym_U_DQUOTE] = ACTIONS(1571), - [anon_sym_u8_DQUOTE] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym_true] = ACTIONS(1569), - [sym_false] = ACTIONS(1569), - [sym_null] = ACTIONS(1569), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1571), - [anon_sym_ATimport] = ACTIONS(1571), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1569), - [anon_sym_ATcompatibility_alias] = ACTIONS(1571), - [anon_sym_ATprotocol] = ACTIONS(1571), - [anon_sym_ATclass] = ACTIONS(1571), - [anon_sym_ATinterface] = ACTIONS(1571), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1569), - [sym_method_attribute_specifier] = ACTIONS(1569), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1569), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1569), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1569), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1569), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1569), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1569), - [anon_sym_NS_AVAILABLE] = ACTIONS(1569), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1569), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1569), - [anon_sym_API_AVAILABLE] = ACTIONS(1569), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1569), - [anon_sym_API_DEPRECATED] = ACTIONS(1569), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1569), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1569), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1569), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1569), - [anon_sym___deprecated_msg] = ACTIONS(1569), - [anon_sym___deprecated_enum_msg] = ACTIONS(1569), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1569), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1569), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1569), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1569), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1569), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1569), - [anon_sym_ATimplementation] = ACTIONS(1571), - [anon_sym_typeof] = ACTIONS(1569), - [anon_sym___typeof] = ACTIONS(1569), - [anon_sym___typeof__] = ACTIONS(1569), - [sym_self] = ACTIONS(1569), - [sym_super] = ACTIONS(1569), - [sym_nil] = ACTIONS(1569), - [sym_id] = ACTIONS(1569), - [sym_instancetype] = ACTIONS(1569), - [sym_Class] = ACTIONS(1569), - [sym_SEL] = ACTIONS(1569), - [sym_IMP] = ACTIONS(1569), - [sym_BOOL] = ACTIONS(1569), - [sym_auto] = ACTIONS(1569), - [anon_sym_ATautoreleasepool] = ACTIONS(1571), - [anon_sym_ATsynchronized] = ACTIONS(1571), - [anon_sym_ATtry] = ACTIONS(1571), - [anon_sym_ATcatch] = ACTIONS(1571), - [anon_sym_ATfinally] = ACTIONS(1571), - [anon_sym_ATthrow] = ACTIONS(1571), - [anon_sym_ATselector] = ACTIONS(1571), - [anon_sym_ATencode] = ACTIONS(1571), - [anon_sym_AT] = ACTIONS(1569), - [sym_YES] = ACTIONS(1569), - [sym_NO] = ACTIONS(1569), - [anon_sym___builtin_available] = ACTIONS(1569), - [anon_sym_ATavailable] = ACTIONS(1571), - [anon_sym_va_arg] = ACTIONS(1569), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [485] = { - [sym_identifier] = ACTIONS(1435), - [aux_sym_preproc_include_token1] = ACTIONS(1433), - [aux_sym_preproc_def_token1] = ACTIONS(1433), - [aux_sym_preproc_if_token1] = ACTIONS(1435), - [aux_sym_preproc_if_token2] = ACTIONS(1435), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1435), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1433), - [anon_sym_BANG] = ACTIONS(1433), - [anon_sym_TILDE] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1433), - [anon_sym_CARET] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1433), - [anon_sym_typedef] = ACTIONS(1435), - [anon_sym_extern] = ACTIONS(1435), - [anon_sym___attribute] = ACTIONS(1435), - [anon_sym___attribute__] = ACTIONS(1435), - [anon_sym___declspec] = ACTIONS(1435), - [anon_sym___cdecl] = ACTIONS(1435), - [anon_sym___clrcall] = ACTIONS(1435), - [anon_sym___stdcall] = ACTIONS(1435), - [anon_sym___fastcall] = ACTIONS(1435), - [anon_sym___thiscall] = ACTIONS(1435), - [anon_sym___vectorcall] = ACTIONS(1435), - [anon_sym_LBRACE] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1435), - [anon_sym_auto] = ACTIONS(1435), - [anon_sym_register] = ACTIONS(1435), - [anon_sym_inline] = ACTIONS(1435), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1435), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_volatile] = ACTIONS(1435), - [anon_sym_restrict] = ACTIONS(1435), - [anon_sym__Atomic] = ACTIONS(1435), - [anon_sym_in] = ACTIONS(1435), - [anon_sym_out] = ACTIONS(1435), - [anon_sym_inout] = ACTIONS(1435), - [anon_sym_bycopy] = ACTIONS(1435), - [anon_sym_byref] = ACTIONS(1435), - [anon_sym_oneway] = ACTIONS(1435), - [anon_sym__Nullable] = ACTIONS(1435), - [anon_sym__Nonnull] = ACTIONS(1435), - [anon_sym__Nullable_result] = ACTIONS(1435), - [anon_sym__Null_unspecified] = ACTIONS(1435), - [anon_sym___autoreleasing] = ACTIONS(1435), - [anon_sym___nullable] = ACTIONS(1435), - [anon_sym___nonnull] = ACTIONS(1435), - [anon_sym___strong] = ACTIONS(1435), - [anon_sym___weak] = ACTIONS(1435), - [anon_sym___bridge] = ACTIONS(1435), - [anon_sym___bridge_transfer] = ACTIONS(1435), - [anon_sym___bridge_retained] = ACTIONS(1435), - [anon_sym___unsafe_unretained] = ACTIONS(1435), - [anon_sym___block] = ACTIONS(1435), - [anon_sym___kindof] = ACTIONS(1435), - [anon_sym___unused] = ACTIONS(1435), - [anon_sym__Complex] = ACTIONS(1435), - [anon_sym___complex] = ACTIONS(1435), - [anon_sym_IBOutlet] = ACTIONS(1435), - [anon_sym_IBInspectable] = ACTIONS(1435), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1435), - [anon_sym_signed] = ACTIONS(1435), - [anon_sym_unsigned] = ACTIONS(1435), - [anon_sym_long] = ACTIONS(1435), - [anon_sym_short] = ACTIONS(1435), - [sym_primitive_type] = ACTIONS(1435), - [anon_sym_enum] = ACTIONS(1435), - [anon_sym_NS_ENUM] = ACTIONS(1435), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1435), - [anon_sym_NS_OPTIONS] = ACTIONS(1435), - [anon_sym_struct] = ACTIONS(1435), - [anon_sym_union] = ACTIONS(1435), - [anon_sym_if] = ACTIONS(1435), - [anon_sym_else] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_case] = ACTIONS(1435), - [anon_sym_default] = ACTIONS(1435), - [anon_sym_while] = ACTIONS(1435), - [anon_sym_do] = ACTIONS(1435), - [anon_sym_for] = ACTIONS(1435), - [anon_sym_return] = ACTIONS(1435), - [anon_sym_break] = ACTIONS(1435), - [anon_sym_continue] = ACTIONS(1435), - [anon_sym_goto] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1433), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_sizeof] = ACTIONS(1435), - [sym_number_literal] = ACTIONS(1433), - [anon_sym_L_SQUOTE] = ACTIONS(1433), - [anon_sym_u_SQUOTE] = ACTIONS(1433), - [anon_sym_U_SQUOTE] = ACTIONS(1433), - [anon_sym_u8_SQUOTE] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_L_DQUOTE] = ACTIONS(1433), - [anon_sym_u_DQUOTE] = ACTIONS(1433), - [anon_sym_U_DQUOTE] = ACTIONS(1433), - [anon_sym_u8_DQUOTE] = ACTIONS(1433), - [anon_sym_DQUOTE] = ACTIONS(1433), - [sym_true] = ACTIONS(1435), - [sym_false] = ACTIONS(1435), - [sym_null] = ACTIONS(1435), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1433), - [anon_sym_ATimport] = ACTIONS(1433), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1435), - [anon_sym_ATcompatibility_alias] = ACTIONS(1433), - [anon_sym_ATprotocol] = ACTIONS(1433), - [anon_sym_ATclass] = ACTIONS(1433), - [anon_sym_ATinterface] = ACTIONS(1433), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1435), - [sym_method_attribute_specifier] = ACTIONS(1435), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1435), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1435), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1435), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1435), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1435), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1435), - [anon_sym_NS_AVAILABLE] = ACTIONS(1435), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1435), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1435), - [anon_sym_API_AVAILABLE] = ACTIONS(1435), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1435), - [anon_sym_API_DEPRECATED] = ACTIONS(1435), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1435), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1435), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1435), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1435), - [anon_sym___deprecated_msg] = ACTIONS(1435), - [anon_sym___deprecated_enum_msg] = ACTIONS(1435), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1435), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1435), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1435), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1435), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1435), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1435), - [anon_sym_ATimplementation] = ACTIONS(1433), - [anon_sym_typeof] = ACTIONS(1435), - [anon_sym___typeof] = ACTIONS(1435), - [anon_sym___typeof__] = ACTIONS(1435), - [sym_self] = ACTIONS(1435), - [sym_super] = ACTIONS(1435), - [sym_nil] = ACTIONS(1435), - [sym_id] = ACTIONS(1435), - [sym_instancetype] = ACTIONS(1435), - [sym_Class] = ACTIONS(1435), - [sym_SEL] = ACTIONS(1435), - [sym_IMP] = ACTIONS(1435), - [sym_BOOL] = ACTIONS(1435), - [sym_auto] = ACTIONS(1435), - [anon_sym_ATautoreleasepool] = ACTIONS(1433), - [anon_sym_ATsynchronized] = ACTIONS(1433), - [anon_sym_ATtry] = ACTIONS(1433), - [anon_sym_ATcatch] = ACTIONS(1433), - [anon_sym_ATfinally] = ACTIONS(1433), - [anon_sym_ATthrow] = ACTIONS(1433), - [anon_sym_ATselector] = ACTIONS(1433), - [anon_sym_ATencode] = ACTIONS(1433), - [anon_sym_AT] = ACTIONS(1435), - [sym_YES] = ACTIONS(1435), - [sym_NO] = ACTIONS(1435), - [anon_sym___builtin_available] = ACTIONS(1435), - [anon_sym_ATavailable] = ACTIONS(1433), - [anon_sym_va_arg] = ACTIONS(1435), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [486] = { + [376] = { [sym_identifier] = ACTIONS(1619), [aux_sym_preproc_include_token1] = ACTIONS(1617), [aux_sym_preproc_def_token1] = ACTIONS(1617), @@ -111280,9 +91999,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1619), [sym_primitive_type] = ACTIONS(1619), [anon_sym_enum] = ACTIONS(1619), - [anon_sym_NS_ENUM] = ACTIONS(1619), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1619), - [anon_sym_NS_OPTIONS] = ACTIONS(1619), [anon_sym_struct] = ACTIONS(1619), [anon_sym_union] = ACTIONS(1619), [anon_sym_if] = ACTIONS(1619), @@ -111349,6 +92065,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1619), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1619), [anon_sym_ATimplementation] = ACTIONS(1617), + [anon_sym_NS_ENUM] = ACTIONS(1619), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1619), + [anon_sym_NS_OPTIONS] = ACTIONS(1619), [anon_sym_typeof] = ACTIONS(1619), [anon_sym___typeof] = ACTIONS(1619), [anon_sym___typeof__] = ACTIONS(1619), @@ -111383,7 +92102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [487] = { + [377] = { [sym_identifier] = ACTIONS(1615), [aux_sym_preproc_include_token1] = ACTIONS(1613), [aux_sym_preproc_def_token1] = ACTIONS(1613), @@ -111455,9 +92174,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1615), [sym_primitive_type] = ACTIONS(1615), [anon_sym_enum] = ACTIONS(1615), - [anon_sym_NS_ENUM] = ACTIONS(1615), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1615), - [anon_sym_NS_OPTIONS] = ACTIONS(1615), [anon_sym_struct] = ACTIONS(1615), [anon_sym_union] = ACTIONS(1615), [anon_sym_if] = ACTIONS(1615), @@ -111524,6 +92240,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1615), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1615), [anon_sym_ATimplementation] = ACTIONS(1613), + [anon_sym_NS_ENUM] = ACTIONS(1615), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1615), + [anon_sym_NS_OPTIONS] = ACTIONS(1615), [anon_sym_typeof] = ACTIONS(1615), [anon_sym___typeof] = ACTIONS(1615), [anon_sym___typeof__] = ACTIONS(1615), @@ -111558,7 +92277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [488] = { + [378] = { [sym_identifier] = ACTIONS(1611), [aux_sym_preproc_include_token1] = ACTIONS(1609), [aux_sym_preproc_def_token1] = ACTIONS(1609), @@ -111630,9 +92349,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1611), [sym_primitive_type] = ACTIONS(1611), [anon_sym_enum] = ACTIONS(1611), - [anon_sym_NS_ENUM] = ACTIONS(1611), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1611), - [anon_sym_NS_OPTIONS] = ACTIONS(1611), [anon_sym_struct] = ACTIONS(1611), [anon_sym_union] = ACTIONS(1611), [anon_sym_if] = ACTIONS(1611), @@ -111699,6 +92415,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1611), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1611), [anon_sym_ATimplementation] = ACTIONS(1609), + [anon_sym_NS_ENUM] = ACTIONS(1611), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1611), + [anon_sym_NS_OPTIONS] = ACTIONS(1611), [anon_sym_typeof] = ACTIONS(1611), [anon_sym___typeof] = ACTIONS(1611), [anon_sym___typeof__] = ACTIONS(1611), @@ -111733,174 +92452,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [489] = { - [sym_identifier] = ACTIONS(1591), - [aux_sym_preproc_include_token1] = ACTIONS(1589), - [aux_sym_preproc_def_token1] = ACTIONS(1589), - [aux_sym_preproc_if_token1] = ACTIONS(1591), - [aux_sym_preproc_if_token2] = ACTIONS(1591), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1591), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1591), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_CARET] = ACTIONS(1589), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_typedef] = ACTIONS(1591), - [anon_sym_extern] = ACTIONS(1591), - [anon_sym___attribute] = ACTIONS(1591), - [anon_sym___attribute__] = ACTIONS(1591), - [anon_sym___declspec] = ACTIONS(1591), - [anon_sym___cdecl] = ACTIONS(1591), - [anon_sym___clrcall] = ACTIONS(1591), - [anon_sym___stdcall] = ACTIONS(1591), - [anon_sym___fastcall] = ACTIONS(1591), - [anon_sym___thiscall] = ACTIONS(1591), - [anon_sym___vectorcall] = ACTIONS(1591), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_static] = ACTIONS(1591), - [anon_sym_auto] = ACTIONS(1591), - [anon_sym_register] = ACTIONS(1591), - [anon_sym_inline] = ACTIONS(1591), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1591), - [anon_sym_const] = ACTIONS(1591), - [anon_sym_volatile] = ACTIONS(1591), - [anon_sym_restrict] = ACTIONS(1591), - [anon_sym__Atomic] = ACTIONS(1591), - [anon_sym_in] = ACTIONS(1591), - [anon_sym_out] = ACTIONS(1591), - [anon_sym_inout] = ACTIONS(1591), - [anon_sym_bycopy] = ACTIONS(1591), - [anon_sym_byref] = ACTIONS(1591), - [anon_sym_oneway] = ACTIONS(1591), - [anon_sym__Nullable] = ACTIONS(1591), - [anon_sym__Nonnull] = ACTIONS(1591), - [anon_sym__Nullable_result] = ACTIONS(1591), - [anon_sym__Null_unspecified] = ACTIONS(1591), - [anon_sym___autoreleasing] = ACTIONS(1591), - [anon_sym___nullable] = ACTIONS(1591), - [anon_sym___nonnull] = ACTIONS(1591), - [anon_sym___strong] = ACTIONS(1591), - [anon_sym___weak] = ACTIONS(1591), - [anon_sym___bridge] = ACTIONS(1591), - [anon_sym___bridge_transfer] = ACTIONS(1591), - [anon_sym___bridge_retained] = ACTIONS(1591), - [anon_sym___unsafe_unretained] = ACTIONS(1591), - [anon_sym___block] = ACTIONS(1591), - [anon_sym___kindof] = ACTIONS(1591), - [anon_sym___unused] = ACTIONS(1591), - [anon_sym__Complex] = ACTIONS(1591), - [anon_sym___complex] = ACTIONS(1591), - [anon_sym_IBOutlet] = ACTIONS(1591), - [anon_sym_IBInspectable] = ACTIONS(1591), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1591), - [anon_sym_signed] = ACTIONS(1591), - [anon_sym_unsigned] = ACTIONS(1591), - [anon_sym_long] = ACTIONS(1591), - [anon_sym_short] = ACTIONS(1591), - [sym_primitive_type] = ACTIONS(1591), - [anon_sym_enum] = ACTIONS(1591), - [anon_sym_NS_ENUM] = ACTIONS(1591), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1591), - [anon_sym_NS_OPTIONS] = ACTIONS(1591), - [anon_sym_struct] = ACTIONS(1591), - [anon_sym_union] = ACTIONS(1591), - [anon_sym_if] = ACTIONS(1591), - [anon_sym_else] = ACTIONS(1591), - [anon_sym_switch] = ACTIONS(1591), - [anon_sym_case] = ACTIONS(1591), - [anon_sym_default] = ACTIONS(1591), - [anon_sym_while] = ACTIONS(1591), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1591), - [anon_sym_return] = ACTIONS(1591), - [anon_sym_break] = ACTIONS(1591), - [anon_sym_continue] = ACTIONS(1591), - [anon_sym_goto] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_sizeof] = ACTIONS(1591), - [sym_number_literal] = ACTIONS(1589), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1589), - [anon_sym_u_DQUOTE] = ACTIONS(1589), - [anon_sym_U_DQUOTE] = ACTIONS(1589), - [anon_sym_u8_DQUOTE] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym_true] = ACTIONS(1591), - [sym_false] = ACTIONS(1591), - [sym_null] = ACTIONS(1591), + [379] = { + [sym_identifier] = ACTIONS(1607), + [aux_sym_preproc_include_token1] = ACTIONS(1605), + [aux_sym_preproc_def_token1] = ACTIONS(1605), + [aux_sym_preproc_if_token1] = ACTIONS(1607), + [aux_sym_preproc_if_token2] = ACTIONS(1607), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1607), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_CARET] = ACTIONS(1605), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym___attribute] = ACTIONS(1607), + [anon_sym___attribute__] = ACTIONS(1607), + [anon_sym___declspec] = ACTIONS(1607), + [anon_sym___cdecl] = ACTIONS(1607), + [anon_sym___clrcall] = ACTIONS(1607), + [anon_sym___stdcall] = ACTIONS(1607), + [anon_sym___fastcall] = ACTIONS(1607), + [anon_sym___thiscall] = ACTIONS(1607), + [anon_sym___vectorcall] = ACTIONS(1607), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1607), + [anon_sym_auto] = ACTIONS(1607), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_inline] = ACTIONS(1607), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [anon_sym_volatile] = ACTIONS(1607), + [anon_sym_restrict] = ACTIONS(1607), + [anon_sym__Atomic] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_out] = ACTIONS(1607), + [anon_sym_inout] = ACTIONS(1607), + [anon_sym_bycopy] = ACTIONS(1607), + [anon_sym_byref] = ACTIONS(1607), + [anon_sym_oneway] = ACTIONS(1607), + [anon_sym__Nullable] = ACTIONS(1607), + [anon_sym__Nonnull] = ACTIONS(1607), + [anon_sym__Nullable_result] = ACTIONS(1607), + [anon_sym__Null_unspecified] = ACTIONS(1607), + [anon_sym___autoreleasing] = ACTIONS(1607), + [anon_sym___nullable] = ACTIONS(1607), + [anon_sym___nonnull] = ACTIONS(1607), + [anon_sym___strong] = ACTIONS(1607), + [anon_sym___weak] = ACTIONS(1607), + [anon_sym___bridge] = ACTIONS(1607), + [anon_sym___bridge_transfer] = ACTIONS(1607), + [anon_sym___bridge_retained] = ACTIONS(1607), + [anon_sym___unsafe_unretained] = ACTIONS(1607), + [anon_sym___block] = ACTIONS(1607), + [anon_sym___kindof] = ACTIONS(1607), + [anon_sym___unused] = ACTIONS(1607), + [anon_sym__Complex] = ACTIONS(1607), + [anon_sym___complex] = ACTIONS(1607), + [anon_sym_IBOutlet] = ACTIONS(1607), + [anon_sym_IBInspectable] = ACTIONS(1607), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1607), + [anon_sym_signed] = ACTIONS(1607), + [anon_sym_unsigned] = ACTIONS(1607), + [anon_sym_long] = ACTIONS(1607), + [anon_sym_short] = ACTIONS(1607), + [sym_primitive_type] = ACTIONS(1607), + [anon_sym_enum] = ACTIONS(1607), + [anon_sym_struct] = ACTIONS(1607), + [anon_sym_union] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1607), + [anon_sym_else] = ACTIONS(1607), + [anon_sym_switch] = ACTIONS(1607), + [anon_sym_case] = ACTIONS(1607), + [anon_sym_default] = ACTIONS(1607), + [anon_sym_while] = ACTIONS(1607), + [anon_sym_do] = ACTIONS(1607), + [anon_sym_for] = ACTIONS(1607), + [anon_sym_return] = ACTIONS(1607), + [anon_sym_break] = ACTIONS(1607), + [anon_sym_continue] = ACTIONS(1607), + [anon_sym_goto] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1605), + [anon_sym_sizeof] = ACTIONS(1607), + [sym_number_literal] = ACTIONS(1605), + [anon_sym_L_SQUOTE] = ACTIONS(1605), + [anon_sym_u_SQUOTE] = ACTIONS(1605), + [anon_sym_U_SQUOTE] = ACTIONS(1605), + [anon_sym_u8_SQUOTE] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1605), + [anon_sym_L_DQUOTE] = ACTIONS(1605), + [anon_sym_u_DQUOTE] = ACTIONS(1605), + [anon_sym_U_DQUOTE] = ACTIONS(1605), + [anon_sym_u8_DQUOTE] = ACTIONS(1605), + [anon_sym_DQUOTE] = ACTIONS(1605), + [sym_true] = ACTIONS(1607), + [sym_false] = ACTIONS(1607), + [sym_null] = ACTIONS(1607), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1589), - [anon_sym_ATimport] = ACTIONS(1589), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1591), - [anon_sym_ATcompatibility_alias] = ACTIONS(1589), - [anon_sym_ATprotocol] = ACTIONS(1589), - [anon_sym_ATclass] = ACTIONS(1589), - [anon_sym_ATinterface] = ACTIONS(1589), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1591), - [sym_method_attribute_specifier] = ACTIONS(1591), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1591), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1591), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1591), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1591), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1591), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1591), - [anon_sym_NS_AVAILABLE] = ACTIONS(1591), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1591), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1591), - [anon_sym_API_AVAILABLE] = ACTIONS(1591), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1591), - [anon_sym_API_DEPRECATED] = ACTIONS(1591), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1591), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1591), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1591), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1591), - [anon_sym___deprecated_msg] = ACTIONS(1591), - [anon_sym___deprecated_enum_msg] = ACTIONS(1591), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1591), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1591), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1591), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1591), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1591), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1591), - [anon_sym_ATimplementation] = ACTIONS(1589), - [anon_sym_typeof] = ACTIONS(1591), - [anon_sym___typeof] = ACTIONS(1591), - [anon_sym___typeof__] = ACTIONS(1591), - [sym_self] = ACTIONS(1591), - [sym_super] = ACTIONS(1591), - [sym_nil] = ACTIONS(1591), - [sym_id] = ACTIONS(1591), - [sym_instancetype] = ACTIONS(1591), - [sym_Class] = ACTIONS(1591), - [sym_SEL] = ACTIONS(1591), - [sym_IMP] = ACTIONS(1591), - [sym_BOOL] = ACTIONS(1591), - [sym_auto] = ACTIONS(1591), - [anon_sym_ATautoreleasepool] = ACTIONS(1589), - [anon_sym_ATsynchronized] = ACTIONS(1589), - [anon_sym_ATtry] = ACTIONS(1589), - [anon_sym_ATcatch] = ACTIONS(1589), - [anon_sym_ATfinally] = ACTIONS(1589), - [anon_sym_ATthrow] = ACTIONS(1589), - [anon_sym_ATselector] = ACTIONS(1589), - [anon_sym_ATencode] = ACTIONS(1589), - [anon_sym_AT] = ACTIONS(1591), - [sym_YES] = ACTIONS(1591), - [sym_NO] = ACTIONS(1591), - [anon_sym___builtin_available] = ACTIONS(1591), - [anon_sym_ATavailable] = ACTIONS(1589), - [anon_sym_va_arg] = ACTIONS(1591), + [anon_sym_POUNDimport] = ACTIONS(1605), + [anon_sym_ATimport] = ACTIONS(1605), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1607), + [anon_sym_ATcompatibility_alias] = ACTIONS(1605), + [anon_sym_ATprotocol] = ACTIONS(1605), + [anon_sym_ATclass] = ACTIONS(1605), + [anon_sym_ATinterface] = ACTIONS(1605), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1607), + [sym_method_attribute_specifier] = ACTIONS(1607), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1607), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1607), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1607), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1607), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1607), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1607), + [anon_sym_NS_AVAILABLE] = ACTIONS(1607), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1607), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1607), + [anon_sym_API_AVAILABLE] = ACTIONS(1607), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1607), + [anon_sym_API_DEPRECATED] = ACTIONS(1607), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1607), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1607), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1607), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1607), + [anon_sym___deprecated_msg] = ACTIONS(1607), + [anon_sym___deprecated_enum_msg] = ACTIONS(1607), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1607), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1607), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1607), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1607), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1607), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1607), + [anon_sym_ATimplementation] = ACTIONS(1605), + [anon_sym_NS_ENUM] = ACTIONS(1607), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1607), + [anon_sym_NS_OPTIONS] = ACTIONS(1607), + [anon_sym_typeof] = ACTIONS(1607), + [anon_sym___typeof] = ACTIONS(1607), + [anon_sym___typeof__] = ACTIONS(1607), + [sym_self] = ACTIONS(1607), + [sym_super] = ACTIONS(1607), + [sym_nil] = ACTIONS(1607), + [sym_id] = ACTIONS(1607), + [sym_instancetype] = ACTIONS(1607), + [sym_Class] = ACTIONS(1607), + [sym_SEL] = ACTIONS(1607), + [sym_IMP] = ACTIONS(1607), + [sym_BOOL] = ACTIONS(1607), + [sym_auto] = ACTIONS(1607), + [anon_sym_ATautoreleasepool] = ACTIONS(1605), + [anon_sym_ATsynchronized] = ACTIONS(1605), + [anon_sym_ATtry] = ACTIONS(1605), + [anon_sym_ATcatch] = ACTIONS(1605), + [anon_sym_ATfinally] = ACTIONS(1605), + [anon_sym_ATthrow] = ACTIONS(1605), + [anon_sym_ATselector] = ACTIONS(1605), + [anon_sym_ATencode] = ACTIONS(1605), + [anon_sym_AT] = ACTIONS(1607), + [sym_YES] = ACTIONS(1607), + [sym_NO] = ACTIONS(1607), + [anon_sym___builtin_available] = ACTIONS(1607), + [anon_sym_ATavailable] = ACTIONS(1605), + [anon_sym_va_arg] = ACTIONS(1607), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -111908,174 +92627,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [490] = { - [sym_identifier] = ACTIONS(1455), - [aux_sym_preproc_include_token1] = ACTIONS(1453), - [aux_sym_preproc_def_token1] = ACTIONS(1453), - [aux_sym_preproc_if_token1] = ACTIONS(1455), - [aux_sym_preproc_if_token2] = ACTIONS(1455), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1455), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1455), - [anon_sym_LPAREN2] = ACTIONS(1453), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_PLUS] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_typedef] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1455), - [anon_sym___attribute] = ACTIONS(1455), - [anon_sym___attribute__] = ACTIONS(1455), - [anon_sym___declspec] = ACTIONS(1455), - [anon_sym___cdecl] = ACTIONS(1455), - [anon_sym___clrcall] = ACTIONS(1455), - [anon_sym___stdcall] = ACTIONS(1455), - [anon_sym___fastcall] = ACTIONS(1455), - [anon_sym___thiscall] = ACTIONS(1455), - [anon_sym___vectorcall] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_auto] = ACTIONS(1455), - [anon_sym_register] = ACTIONS(1455), - [anon_sym_inline] = ACTIONS(1455), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_volatile] = ACTIONS(1455), - [anon_sym_restrict] = ACTIONS(1455), - [anon_sym__Atomic] = ACTIONS(1455), - [anon_sym_in] = ACTIONS(1455), - [anon_sym_out] = ACTIONS(1455), - [anon_sym_inout] = ACTIONS(1455), - [anon_sym_bycopy] = ACTIONS(1455), - [anon_sym_byref] = ACTIONS(1455), - [anon_sym_oneway] = ACTIONS(1455), - [anon_sym__Nullable] = ACTIONS(1455), - [anon_sym__Nonnull] = ACTIONS(1455), - [anon_sym__Nullable_result] = ACTIONS(1455), - [anon_sym__Null_unspecified] = ACTIONS(1455), - [anon_sym___autoreleasing] = ACTIONS(1455), - [anon_sym___nullable] = ACTIONS(1455), - [anon_sym___nonnull] = ACTIONS(1455), - [anon_sym___strong] = ACTIONS(1455), - [anon_sym___weak] = ACTIONS(1455), - [anon_sym___bridge] = ACTIONS(1455), - [anon_sym___bridge_transfer] = ACTIONS(1455), - [anon_sym___bridge_retained] = ACTIONS(1455), - [anon_sym___unsafe_unretained] = ACTIONS(1455), - [anon_sym___block] = ACTIONS(1455), - [anon_sym___kindof] = ACTIONS(1455), - [anon_sym___unused] = ACTIONS(1455), - [anon_sym__Complex] = ACTIONS(1455), - [anon_sym___complex] = ACTIONS(1455), - [anon_sym_IBOutlet] = ACTIONS(1455), - [anon_sym_IBInspectable] = ACTIONS(1455), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1455), - [anon_sym_signed] = ACTIONS(1455), - [anon_sym_unsigned] = ACTIONS(1455), - [anon_sym_long] = ACTIONS(1455), - [anon_sym_short] = ACTIONS(1455), - [sym_primitive_type] = ACTIONS(1455), - [anon_sym_enum] = ACTIONS(1455), - [anon_sym_NS_ENUM] = ACTIONS(1455), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1455), - [anon_sym_NS_OPTIONS] = ACTIONS(1455), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1455), - [anon_sym_else] = ACTIONS(1455), - [anon_sym_switch] = ACTIONS(1455), - [anon_sym_case] = ACTIONS(1455), - [anon_sym_default] = ACTIONS(1455), - [anon_sym_while] = ACTIONS(1455), - [anon_sym_do] = ACTIONS(1455), - [anon_sym_for] = ACTIONS(1455), - [anon_sym_return] = ACTIONS(1455), - [anon_sym_break] = ACTIONS(1455), - [anon_sym_continue] = ACTIONS(1455), - [anon_sym_goto] = ACTIONS(1455), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_sizeof] = ACTIONS(1455), - [sym_number_literal] = ACTIONS(1453), - [anon_sym_L_SQUOTE] = ACTIONS(1453), - [anon_sym_u_SQUOTE] = ACTIONS(1453), - [anon_sym_U_SQUOTE] = ACTIONS(1453), - [anon_sym_u8_SQUOTE] = ACTIONS(1453), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_L_DQUOTE] = ACTIONS(1453), - [anon_sym_u_DQUOTE] = ACTIONS(1453), - [anon_sym_U_DQUOTE] = ACTIONS(1453), - [anon_sym_u8_DQUOTE] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(1453), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [sym_null] = ACTIONS(1455), + [380] = { + [sym_identifier] = ACTIONS(1602), + [aux_sym_preproc_include_token1] = ACTIONS(1599), + [aux_sym_preproc_def_token1] = ACTIONS(1599), + [aux_sym_preproc_if_token1] = ACTIONS(1602), + [aux_sym_preproc_if_token2] = ACTIONS(1602), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1602), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1602), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_typedef] = ACTIONS(1602), + [anon_sym_extern] = ACTIONS(1602), + [anon_sym___attribute] = ACTIONS(1602), + [anon_sym___attribute__] = ACTIONS(1602), + [anon_sym___declspec] = ACTIONS(1602), + [anon_sym___cdecl] = ACTIONS(1602), + [anon_sym___clrcall] = ACTIONS(1602), + [anon_sym___stdcall] = ACTIONS(1602), + [anon_sym___fastcall] = ACTIONS(1602), + [anon_sym___thiscall] = ACTIONS(1602), + [anon_sym___vectorcall] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_auto] = ACTIONS(1602), + [anon_sym_register] = ACTIONS(1602), + [anon_sym_inline] = ACTIONS(1602), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1602), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_volatile] = ACTIONS(1602), + [anon_sym_restrict] = ACTIONS(1602), + [anon_sym__Atomic] = ACTIONS(1602), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_out] = ACTIONS(1602), + [anon_sym_inout] = ACTIONS(1602), + [anon_sym_bycopy] = ACTIONS(1602), + [anon_sym_byref] = ACTIONS(1602), + [anon_sym_oneway] = ACTIONS(1602), + [anon_sym__Nullable] = ACTIONS(1602), + [anon_sym__Nonnull] = ACTIONS(1602), + [anon_sym__Nullable_result] = ACTIONS(1602), + [anon_sym__Null_unspecified] = ACTIONS(1602), + [anon_sym___autoreleasing] = ACTIONS(1602), + [anon_sym___nullable] = ACTIONS(1602), + [anon_sym___nonnull] = ACTIONS(1602), + [anon_sym___strong] = ACTIONS(1602), + [anon_sym___weak] = ACTIONS(1602), + [anon_sym___bridge] = ACTIONS(1602), + [anon_sym___bridge_transfer] = ACTIONS(1602), + [anon_sym___bridge_retained] = ACTIONS(1602), + [anon_sym___unsafe_unretained] = ACTIONS(1602), + [anon_sym___block] = ACTIONS(1602), + [anon_sym___kindof] = ACTIONS(1602), + [anon_sym___unused] = ACTIONS(1602), + [anon_sym__Complex] = ACTIONS(1602), + [anon_sym___complex] = ACTIONS(1602), + [anon_sym_IBOutlet] = ACTIONS(1602), + [anon_sym_IBInspectable] = ACTIONS(1602), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1602), + [anon_sym_signed] = ACTIONS(1602), + [anon_sym_unsigned] = ACTIONS(1602), + [anon_sym_long] = ACTIONS(1602), + [anon_sym_short] = ACTIONS(1602), + [sym_primitive_type] = ACTIONS(1602), + [anon_sym_enum] = ACTIONS(1602), + [anon_sym_struct] = ACTIONS(1602), + [anon_sym_union] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_else] = ACTIONS(1602), + [anon_sym_switch] = ACTIONS(1602), + [anon_sym_case] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1602), + [anon_sym_while] = ACTIONS(1602), + [anon_sym_do] = ACTIONS(1602), + [anon_sym_for] = ACTIONS(1602), + [anon_sym_return] = ACTIONS(1602), + [anon_sym_break] = ACTIONS(1602), + [anon_sym_continue] = ACTIONS(1602), + [anon_sym_goto] = ACTIONS(1602), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_sizeof] = ACTIONS(1602), + [sym_number_literal] = ACTIONS(1599), + [anon_sym_L_SQUOTE] = ACTIONS(1599), + [anon_sym_u_SQUOTE] = ACTIONS(1599), + [anon_sym_U_SQUOTE] = ACTIONS(1599), + [anon_sym_u8_SQUOTE] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_L_DQUOTE] = ACTIONS(1599), + [anon_sym_u_DQUOTE] = ACTIONS(1599), + [anon_sym_U_DQUOTE] = ACTIONS(1599), + [anon_sym_u8_DQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [sym_true] = ACTIONS(1602), + [sym_false] = ACTIONS(1602), + [sym_null] = ACTIONS(1602), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1453), - [anon_sym_ATimport] = ACTIONS(1453), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1455), - [anon_sym_ATcompatibility_alias] = ACTIONS(1453), - [anon_sym_ATprotocol] = ACTIONS(1453), - [anon_sym_ATclass] = ACTIONS(1453), - [anon_sym_ATinterface] = ACTIONS(1453), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1455), - [sym_method_attribute_specifier] = ACTIONS(1455), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1455), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1455), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1455), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1455), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1455), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1455), - [anon_sym_NS_AVAILABLE] = ACTIONS(1455), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1455), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1455), - [anon_sym_API_AVAILABLE] = ACTIONS(1455), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1455), - [anon_sym_API_DEPRECATED] = ACTIONS(1455), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1455), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1455), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1455), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1455), - [anon_sym___deprecated_msg] = ACTIONS(1455), - [anon_sym___deprecated_enum_msg] = ACTIONS(1455), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1455), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1455), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1455), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1455), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1455), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1455), - [anon_sym_ATimplementation] = ACTIONS(1453), - [anon_sym_typeof] = ACTIONS(1455), - [anon_sym___typeof] = ACTIONS(1455), - [anon_sym___typeof__] = ACTIONS(1455), - [sym_self] = ACTIONS(1455), - [sym_super] = ACTIONS(1455), - [sym_nil] = ACTIONS(1455), - [sym_id] = ACTIONS(1455), - [sym_instancetype] = ACTIONS(1455), - [sym_Class] = ACTIONS(1455), - [sym_SEL] = ACTIONS(1455), - [sym_IMP] = ACTIONS(1455), - [sym_BOOL] = ACTIONS(1455), - [sym_auto] = ACTIONS(1455), - [anon_sym_ATautoreleasepool] = ACTIONS(1453), - [anon_sym_ATsynchronized] = ACTIONS(1453), - [anon_sym_ATtry] = ACTIONS(1453), - [anon_sym_ATcatch] = ACTIONS(1453), - [anon_sym_ATfinally] = ACTIONS(1453), - [anon_sym_ATthrow] = ACTIONS(1453), - [anon_sym_ATselector] = ACTIONS(1453), - [anon_sym_ATencode] = ACTIONS(1453), - [anon_sym_AT] = ACTIONS(1455), - [sym_YES] = ACTIONS(1455), - [sym_NO] = ACTIONS(1455), - [anon_sym___builtin_available] = ACTIONS(1455), - [anon_sym_ATavailable] = ACTIONS(1453), - [anon_sym_va_arg] = ACTIONS(1455), + [anon_sym_POUNDimport] = ACTIONS(1599), + [anon_sym_ATimport] = ACTIONS(1599), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1602), + [anon_sym_ATcompatibility_alias] = ACTIONS(1599), + [anon_sym_ATprotocol] = ACTIONS(1599), + [anon_sym_ATclass] = ACTIONS(1599), + [anon_sym_ATinterface] = ACTIONS(1599), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1602), + [sym_method_attribute_specifier] = ACTIONS(1602), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1602), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1602), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1602), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1602), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1602), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1602), + [anon_sym_NS_AVAILABLE] = ACTIONS(1602), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1602), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1602), + [anon_sym_API_AVAILABLE] = ACTIONS(1602), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1602), + [anon_sym_API_DEPRECATED] = ACTIONS(1602), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1602), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1602), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1602), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1602), + [anon_sym___deprecated_msg] = ACTIONS(1602), + [anon_sym___deprecated_enum_msg] = ACTIONS(1602), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1602), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1602), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1602), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1602), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1602), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1602), + [anon_sym_ATimplementation] = ACTIONS(1599), + [anon_sym_NS_ENUM] = ACTIONS(1602), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1602), + [anon_sym_NS_OPTIONS] = ACTIONS(1602), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym___typeof] = ACTIONS(1602), + [anon_sym___typeof__] = ACTIONS(1602), + [sym_self] = ACTIONS(1602), + [sym_super] = ACTIONS(1602), + [sym_nil] = ACTIONS(1602), + [sym_id] = ACTIONS(1602), + [sym_instancetype] = ACTIONS(1602), + [sym_Class] = ACTIONS(1602), + [sym_SEL] = ACTIONS(1602), + [sym_IMP] = ACTIONS(1602), + [sym_BOOL] = ACTIONS(1602), + [sym_auto] = ACTIONS(1602), + [anon_sym_ATautoreleasepool] = ACTIONS(1599), + [anon_sym_ATsynchronized] = ACTIONS(1599), + [anon_sym_ATtry] = ACTIONS(1599), + [anon_sym_ATcatch] = ACTIONS(1599), + [anon_sym_ATfinally] = ACTIONS(1599), + [anon_sym_ATthrow] = ACTIONS(1599), + [anon_sym_ATselector] = ACTIONS(1599), + [anon_sym_ATencode] = ACTIONS(1599), + [anon_sym_AT] = ACTIONS(1602), + [sym_YES] = ACTIONS(1602), + [sym_NO] = ACTIONS(1602), + [anon_sym___builtin_available] = ACTIONS(1602), + [anon_sym_ATavailable] = ACTIONS(1599), + [anon_sym_va_arg] = ACTIONS(1602), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -112083,174 +92802,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [491] = { - [sym_identifier] = ACTIONS(1209), - [aux_sym_preproc_include_token1] = ACTIONS(1207), - [aux_sym_preproc_def_token1] = ACTIONS(1207), - [aux_sym_preproc_if_token1] = ACTIONS(1209), - [aux_sym_preproc_if_token2] = ACTIONS(1209), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1209), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1209), - [anon_sym_LPAREN2] = ACTIONS(1207), - [anon_sym_BANG] = ACTIONS(1207), - [anon_sym_TILDE] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1209), - [anon_sym_PLUS] = ACTIONS(1209), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_CARET] = ACTIONS(1207), - [anon_sym_AMP] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_typedef] = ACTIONS(1209), - [anon_sym_extern] = ACTIONS(1209), - [anon_sym___attribute] = ACTIONS(1209), - [anon_sym___attribute__] = ACTIONS(1209), - [anon_sym___declspec] = ACTIONS(1209), - [anon_sym___cdecl] = ACTIONS(1209), - [anon_sym___clrcall] = ACTIONS(1209), - [anon_sym___stdcall] = ACTIONS(1209), - [anon_sym___fastcall] = ACTIONS(1209), - [anon_sym___thiscall] = ACTIONS(1209), - [anon_sym___vectorcall] = ACTIONS(1209), - [anon_sym_LBRACE] = ACTIONS(1207), - [anon_sym_LBRACK] = ACTIONS(1207), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_auto] = ACTIONS(1209), - [anon_sym_register] = ACTIONS(1209), - [anon_sym_inline] = ACTIONS(1209), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1209), - [anon_sym_const] = ACTIONS(1209), - [anon_sym_volatile] = ACTIONS(1209), - [anon_sym_restrict] = ACTIONS(1209), - [anon_sym__Atomic] = ACTIONS(1209), - [anon_sym_in] = ACTIONS(1209), - [anon_sym_out] = ACTIONS(1209), - [anon_sym_inout] = ACTIONS(1209), - [anon_sym_bycopy] = ACTIONS(1209), - [anon_sym_byref] = ACTIONS(1209), - [anon_sym_oneway] = ACTIONS(1209), - [anon_sym__Nullable] = ACTIONS(1209), - [anon_sym__Nonnull] = ACTIONS(1209), - [anon_sym__Nullable_result] = ACTIONS(1209), - [anon_sym__Null_unspecified] = ACTIONS(1209), - [anon_sym___autoreleasing] = ACTIONS(1209), - [anon_sym___nullable] = ACTIONS(1209), - [anon_sym___nonnull] = ACTIONS(1209), - [anon_sym___strong] = ACTIONS(1209), - [anon_sym___weak] = ACTIONS(1209), - [anon_sym___bridge] = ACTIONS(1209), - [anon_sym___bridge_transfer] = ACTIONS(1209), - [anon_sym___bridge_retained] = ACTIONS(1209), - [anon_sym___unsafe_unretained] = ACTIONS(1209), - [anon_sym___block] = ACTIONS(1209), - [anon_sym___kindof] = ACTIONS(1209), - [anon_sym___unused] = ACTIONS(1209), - [anon_sym__Complex] = ACTIONS(1209), - [anon_sym___complex] = ACTIONS(1209), - [anon_sym_IBOutlet] = ACTIONS(1209), - [anon_sym_IBInspectable] = ACTIONS(1209), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1209), - [anon_sym_signed] = ACTIONS(1209), - [anon_sym_unsigned] = ACTIONS(1209), - [anon_sym_long] = ACTIONS(1209), - [anon_sym_short] = ACTIONS(1209), - [sym_primitive_type] = ACTIONS(1209), - [anon_sym_enum] = ACTIONS(1209), - [anon_sym_NS_ENUM] = ACTIONS(1209), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1209), - [anon_sym_NS_OPTIONS] = ACTIONS(1209), - [anon_sym_struct] = ACTIONS(1209), - [anon_sym_union] = ACTIONS(1209), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_else] = ACTIONS(1209), - [anon_sym_switch] = ACTIONS(1209), - [anon_sym_case] = ACTIONS(1209), - [anon_sym_default] = ACTIONS(1209), - [anon_sym_while] = ACTIONS(1209), - [anon_sym_do] = ACTIONS(1209), - [anon_sym_for] = ACTIONS(1209), - [anon_sym_return] = ACTIONS(1209), - [anon_sym_break] = ACTIONS(1209), - [anon_sym_continue] = ACTIONS(1209), - [anon_sym_goto] = ACTIONS(1209), - [anon_sym_DASH_DASH] = ACTIONS(1207), - [anon_sym_PLUS_PLUS] = ACTIONS(1207), - [anon_sym_sizeof] = ACTIONS(1209), - [sym_number_literal] = ACTIONS(1207), - [anon_sym_L_SQUOTE] = ACTIONS(1207), - [anon_sym_u_SQUOTE] = ACTIONS(1207), - [anon_sym_U_SQUOTE] = ACTIONS(1207), - [anon_sym_u8_SQUOTE] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_L_DQUOTE] = ACTIONS(1207), - [anon_sym_u_DQUOTE] = ACTIONS(1207), - [anon_sym_U_DQUOTE] = ACTIONS(1207), - [anon_sym_u8_DQUOTE] = ACTIONS(1207), - [anon_sym_DQUOTE] = ACTIONS(1207), - [sym_true] = ACTIONS(1209), - [sym_false] = ACTIONS(1209), - [sym_null] = ACTIONS(1209), + [381] = { + [sym_identifier] = ACTIONS(1325), + [aux_sym_preproc_include_token1] = ACTIONS(1323), + [aux_sym_preproc_def_token1] = ACTIONS(1323), + [aux_sym_preproc_if_token1] = ACTIONS(1325), + [aux_sym_preproc_if_token2] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1325), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym_BANG] = ACTIONS(1323), + [anon_sym_TILDE] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_CARET] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym_typedef] = ACTIONS(1325), + [anon_sym_extern] = ACTIONS(1325), + [anon_sym___attribute] = ACTIONS(1325), + [anon_sym___attribute__] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(1325), + [anon_sym___cdecl] = ACTIONS(1325), + [anon_sym___clrcall] = ACTIONS(1325), + [anon_sym___stdcall] = ACTIONS(1325), + [anon_sym___fastcall] = ACTIONS(1325), + [anon_sym___thiscall] = ACTIONS(1325), + [anon_sym___vectorcall] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_LBRACK] = ACTIONS(1323), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_auto] = ACTIONS(1325), + [anon_sym_register] = ACTIONS(1325), + [anon_sym_inline] = ACTIONS(1325), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_volatile] = ACTIONS(1325), + [anon_sym_restrict] = ACTIONS(1325), + [anon_sym__Atomic] = ACTIONS(1325), + [anon_sym_in] = ACTIONS(1325), + [anon_sym_out] = ACTIONS(1325), + [anon_sym_inout] = ACTIONS(1325), + [anon_sym_bycopy] = ACTIONS(1325), + [anon_sym_byref] = ACTIONS(1325), + [anon_sym_oneway] = ACTIONS(1325), + [anon_sym__Nullable] = ACTIONS(1325), + [anon_sym__Nonnull] = ACTIONS(1325), + [anon_sym__Nullable_result] = ACTIONS(1325), + [anon_sym__Null_unspecified] = ACTIONS(1325), + [anon_sym___autoreleasing] = ACTIONS(1325), + [anon_sym___nullable] = ACTIONS(1325), + [anon_sym___nonnull] = ACTIONS(1325), + [anon_sym___strong] = ACTIONS(1325), + [anon_sym___weak] = ACTIONS(1325), + [anon_sym___bridge] = ACTIONS(1325), + [anon_sym___bridge_transfer] = ACTIONS(1325), + [anon_sym___bridge_retained] = ACTIONS(1325), + [anon_sym___unsafe_unretained] = ACTIONS(1325), + [anon_sym___block] = ACTIONS(1325), + [anon_sym___kindof] = ACTIONS(1325), + [anon_sym___unused] = ACTIONS(1325), + [anon_sym__Complex] = ACTIONS(1325), + [anon_sym___complex] = ACTIONS(1325), + [anon_sym_IBOutlet] = ACTIONS(1325), + [anon_sym_IBInspectable] = ACTIONS(1325), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1325), + [anon_sym_signed] = ACTIONS(1325), + [anon_sym_unsigned] = ACTIONS(1325), + [anon_sym_long] = ACTIONS(1325), + [anon_sym_short] = ACTIONS(1325), + [sym_primitive_type] = ACTIONS(1325), + [anon_sym_enum] = ACTIONS(1325), + [anon_sym_struct] = ACTIONS(1325), + [anon_sym_union] = ACTIONS(1325), + [anon_sym_if] = ACTIONS(1325), + [anon_sym_else] = ACTIONS(1325), + [anon_sym_switch] = ACTIONS(1325), + [anon_sym_case] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1325), + [anon_sym_do] = ACTIONS(1325), + [anon_sym_for] = ACTIONS(1325), + [anon_sym_return] = ACTIONS(1325), + [anon_sym_break] = ACTIONS(1325), + [anon_sym_continue] = ACTIONS(1325), + [anon_sym_goto] = ACTIONS(1325), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_PLUS_PLUS] = ACTIONS(1323), + [anon_sym_sizeof] = ACTIONS(1325), + [sym_number_literal] = ACTIONS(1323), + [anon_sym_L_SQUOTE] = ACTIONS(1323), + [anon_sym_u_SQUOTE] = ACTIONS(1323), + [anon_sym_U_SQUOTE] = ACTIONS(1323), + [anon_sym_u8_SQUOTE] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1323), + [anon_sym_L_DQUOTE] = ACTIONS(1323), + [anon_sym_u_DQUOTE] = ACTIONS(1323), + [anon_sym_U_DQUOTE] = ACTIONS(1323), + [anon_sym_u8_DQUOTE] = ACTIONS(1323), + [anon_sym_DQUOTE] = ACTIONS(1323), + [sym_true] = ACTIONS(1325), + [sym_false] = ACTIONS(1325), + [sym_null] = ACTIONS(1325), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1207), - [anon_sym_ATimport] = ACTIONS(1207), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1209), - [anon_sym_ATcompatibility_alias] = ACTIONS(1207), - [anon_sym_ATprotocol] = ACTIONS(1207), - [anon_sym_ATclass] = ACTIONS(1207), - [anon_sym_ATinterface] = ACTIONS(1207), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1209), - [sym_method_attribute_specifier] = ACTIONS(1209), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1209), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1209), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1209), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1209), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1209), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1209), - [anon_sym_NS_AVAILABLE] = ACTIONS(1209), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1209), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1209), - [anon_sym_API_AVAILABLE] = ACTIONS(1209), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1209), - [anon_sym_API_DEPRECATED] = ACTIONS(1209), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1209), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1209), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1209), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1209), - [anon_sym___deprecated_msg] = ACTIONS(1209), - [anon_sym___deprecated_enum_msg] = ACTIONS(1209), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1209), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1209), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1209), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1209), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1209), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1209), - [anon_sym_ATimplementation] = ACTIONS(1207), - [anon_sym_typeof] = ACTIONS(1209), - [anon_sym___typeof] = ACTIONS(1209), - [anon_sym___typeof__] = ACTIONS(1209), - [sym_self] = ACTIONS(1209), - [sym_super] = ACTIONS(1209), - [sym_nil] = ACTIONS(1209), - [sym_id] = ACTIONS(1209), - [sym_instancetype] = ACTIONS(1209), - [sym_Class] = ACTIONS(1209), - [sym_SEL] = ACTIONS(1209), - [sym_IMP] = ACTIONS(1209), - [sym_BOOL] = ACTIONS(1209), - [sym_auto] = ACTIONS(1209), - [anon_sym_ATautoreleasepool] = ACTIONS(1207), - [anon_sym_ATsynchronized] = ACTIONS(1207), - [anon_sym_ATtry] = ACTIONS(1207), - [anon_sym_ATcatch] = ACTIONS(1207), - [anon_sym_ATfinally] = ACTIONS(1207), - [anon_sym_ATthrow] = ACTIONS(1207), - [anon_sym_ATselector] = ACTIONS(1207), - [anon_sym_ATencode] = ACTIONS(1207), - [anon_sym_AT] = ACTIONS(1209), - [sym_YES] = ACTIONS(1209), - [sym_NO] = ACTIONS(1209), - [anon_sym___builtin_available] = ACTIONS(1209), - [anon_sym_ATavailable] = ACTIONS(1207), - [anon_sym_va_arg] = ACTIONS(1209), + [anon_sym_POUNDimport] = ACTIONS(1323), + [anon_sym_ATimport] = ACTIONS(1323), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1325), + [anon_sym_ATcompatibility_alias] = ACTIONS(1323), + [anon_sym_ATprotocol] = ACTIONS(1323), + [anon_sym_ATclass] = ACTIONS(1323), + [anon_sym_ATinterface] = ACTIONS(1323), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1325), + [sym_method_attribute_specifier] = ACTIONS(1325), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1325), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1325), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1325), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1325), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1325), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1325), + [anon_sym_NS_AVAILABLE] = ACTIONS(1325), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1325), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1325), + [anon_sym_API_AVAILABLE] = ACTIONS(1325), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1325), + [anon_sym_API_DEPRECATED] = ACTIONS(1325), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1325), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1325), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1325), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1325), + [anon_sym___deprecated_msg] = ACTIONS(1325), + [anon_sym___deprecated_enum_msg] = ACTIONS(1325), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1325), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1325), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1325), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1325), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1325), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1325), + [anon_sym_ATimplementation] = ACTIONS(1323), + [anon_sym_NS_ENUM] = ACTIONS(1325), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1325), + [anon_sym_NS_OPTIONS] = ACTIONS(1325), + [anon_sym_typeof] = ACTIONS(1325), + [anon_sym___typeof] = ACTIONS(1325), + [anon_sym___typeof__] = ACTIONS(1325), + [sym_self] = ACTIONS(1325), + [sym_super] = ACTIONS(1325), + [sym_nil] = ACTIONS(1325), + [sym_id] = ACTIONS(1325), + [sym_instancetype] = ACTIONS(1325), + [sym_Class] = ACTIONS(1325), + [sym_SEL] = ACTIONS(1325), + [sym_IMP] = ACTIONS(1325), + [sym_BOOL] = ACTIONS(1325), + [sym_auto] = ACTIONS(1325), + [anon_sym_ATautoreleasepool] = ACTIONS(1323), + [anon_sym_ATsynchronized] = ACTIONS(1323), + [anon_sym_ATtry] = ACTIONS(1323), + [anon_sym_ATcatch] = ACTIONS(1323), + [anon_sym_ATfinally] = ACTIONS(1323), + [anon_sym_ATthrow] = ACTIONS(1323), + [anon_sym_ATselector] = ACTIONS(1323), + [anon_sym_ATencode] = ACTIONS(1323), + [anon_sym_AT] = ACTIONS(1325), + [sym_YES] = ACTIONS(1325), + [sym_NO] = ACTIONS(1325), + [anon_sym___builtin_available] = ACTIONS(1325), + [anon_sym_ATavailable] = ACTIONS(1323), + [anon_sym_va_arg] = ACTIONS(1325), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -112258,174 +92977,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [492] = { - [sym_identifier] = ACTIONS(1213), - [aux_sym_preproc_include_token1] = ACTIONS(1211), - [aux_sym_preproc_def_token1] = ACTIONS(1211), - [aux_sym_preproc_if_token1] = ACTIONS(1213), - [aux_sym_preproc_if_token2] = ACTIONS(1213), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1213), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1213), - [anon_sym_LPAREN2] = ACTIONS(1211), - [anon_sym_BANG] = ACTIONS(1211), - [anon_sym_TILDE] = ACTIONS(1211), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(1211), - [anon_sym_CARET] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1211), - [anon_sym_SEMI] = ACTIONS(1211), - [anon_sym_typedef] = ACTIONS(1213), - [anon_sym_extern] = ACTIONS(1213), - [anon_sym___attribute] = ACTIONS(1213), - [anon_sym___attribute__] = ACTIONS(1213), - [anon_sym___declspec] = ACTIONS(1213), - [anon_sym___cdecl] = ACTIONS(1213), - [anon_sym___clrcall] = ACTIONS(1213), - [anon_sym___stdcall] = ACTIONS(1213), - [anon_sym___fastcall] = ACTIONS(1213), - [anon_sym___thiscall] = ACTIONS(1213), - [anon_sym___vectorcall] = ACTIONS(1213), - [anon_sym_LBRACE] = ACTIONS(1211), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_static] = ACTIONS(1213), - [anon_sym_auto] = ACTIONS(1213), - [anon_sym_register] = ACTIONS(1213), - [anon_sym_inline] = ACTIONS(1213), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1213), - [anon_sym_const] = ACTIONS(1213), - [anon_sym_volatile] = ACTIONS(1213), - [anon_sym_restrict] = ACTIONS(1213), - [anon_sym__Atomic] = ACTIONS(1213), - [anon_sym_in] = ACTIONS(1213), - [anon_sym_out] = ACTIONS(1213), - [anon_sym_inout] = ACTIONS(1213), - [anon_sym_bycopy] = ACTIONS(1213), - [anon_sym_byref] = ACTIONS(1213), - [anon_sym_oneway] = ACTIONS(1213), - [anon_sym__Nullable] = ACTIONS(1213), - [anon_sym__Nonnull] = ACTIONS(1213), - [anon_sym__Nullable_result] = ACTIONS(1213), - [anon_sym__Null_unspecified] = ACTIONS(1213), - [anon_sym___autoreleasing] = ACTIONS(1213), - [anon_sym___nullable] = ACTIONS(1213), - [anon_sym___nonnull] = ACTIONS(1213), - [anon_sym___strong] = ACTIONS(1213), - [anon_sym___weak] = ACTIONS(1213), - [anon_sym___bridge] = ACTIONS(1213), - [anon_sym___bridge_transfer] = ACTIONS(1213), - [anon_sym___bridge_retained] = ACTIONS(1213), - [anon_sym___unsafe_unretained] = ACTIONS(1213), - [anon_sym___block] = ACTIONS(1213), - [anon_sym___kindof] = ACTIONS(1213), - [anon_sym___unused] = ACTIONS(1213), - [anon_sym__Complex] = ACTIONS(1213), - [anon_sym___complex] = ACTIONS(1213), - [anon_sym_IBOutlet] = ACTIONS(1213), - [anon_sym_IBInspectable] = ACTIONS(1213), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1213), - [anon_sym_signed] = ACTIONS(1213), - [anon_sym_unsigned] = ACTIONS(1213), - [anon_sym_long] = ACTIONS(1213), - [anon_sym_short] = ACTIONS(1213), - [sym_primitive_type] = ACTIONS(1213), - [anon_sym_enum] = ACTIONS(1213), - [anon_sym_NS_ENUM] = ACTIONS(1213), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1213), - [anon_sym_NS_OPTIONS] = ACTIONS(1213), - [anon_sym_struct] = ACTIONS(1213), - [anon_sym_union] = ACTIONS(1213), - [anon_sym_if] = ACTIONS(1213), - [anon_sym_else] = ACTIONS(1213), - [anon_sym_switch] = ACTIONS(1213), - [anon_sym_case] = ACTIONS(1213), - [anon_sym_default] = ACTIONS(1213), - [anon_sym_while] = ACTIONS(1213), - [anon_sym_do] = ACTIONS(1213), - [anon_sym_for] = ACTIONS(1213), - [anon_sym_return] = ACTIONS(1213), - [anon_sym_break] = ACTIONS(1213), - [anon_sym_continue] = ACTIONS(1213), - [anon_sym_goto] = ACTIONS(1213), - [anon_sym_DASH_DASH] = ACTIONS(1211), - [anon_sym_PLUS_PLUS] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1213), - [sym_number_literal] = ACTIONS(1211), - [anon_sym_L_SQUOTE] = ACTIONS(1211), - [anon_sym_u_SQUOTE] = ACTIONS(1211), - [anon_sym_U_SQUOTE] = ACTIONS(1211), - [anon_sym_u8_SQUOTE] = ACTIONS(1211), - [anon_sym_SQUOTE] = ACTIONS(1211), - [anon_sym_L_DQUOTE] = ACTIONS(1211), - [anon_sym_u_DQUOTE] = ACTIONS(1211), - [anon_sym_U_DQUOTE] = ACTIONS(1211), - [anon_sym_u8_DQUOTE] = ACTIONS(1211), - [anon_sym_DQUOTE] = ACTIONS(1211), - [sym_true] = ACTIONS(1213), - [sym_false] = ACTIONS(1213), - [sym_null] = ACTIONS(1213), + [382] = { + [sym_identifier] = ACTIONS(1321), + [aux_sym_preproc_include_token1] = ACTIONS(1319), + [aux_sym_preproc_def_token1] = ACTIONS(1319), + [aux_sym_preproc_if_token1] = ACTIONS(1321), + [aux_sym_preproc_if_token2] = ACTIONS(1321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1321), + [anon_sym_LPAREN2] = ACTIONS(1319), + [anon_sym_BANG] = ACTIONS(1319), + [anon_sym_TILDE] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1321), + [anon_sym_PLUS] = ACTIONS(1321), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_typedef] = ACTIONS(1321), + [anon_sym_extern] = ACTIONS(1321), + [anon_sym___attribute] = ACTIONS(1321), + [anon_sym___attribute__] = ACTIONS(1321), + [anon_sym___declspec] = ACTIONS(1321), + [anon_sym___cdecl] = ACTIONS(1321), + [anon_sym___clrcall] = ACTIONS(1321), + [anon_sym___stdcall] = ACTIONS(1321), + [anon_sym___fastcall] = ACTIONS(1321), + [anon_sym___thiscall] = ACTIONS(1321), + [anon_sym___vectorcall] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1319), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_static] = ACTIONS(1321), + [anon_sym_auto] = ACTIONS(1321), + [anon_sym_register] = ACTIONS(1321), + [anon_sym_inline] = ACTIONS(1321), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1321), + [anon_sym_const] = ACTIONS(1321), + [anon_sym_volatile] = ACTIONS(1321), + [anon_sym_restrict] = ACTIONS(1321), + [anon_sym__Atomic] = ACTIONS(1321), + [anon_sym_in] = ACTIONS(1321), + [anon_sym_out] = ACTIONS(1321), + [anon_sym_inout] = ACTIONS(1321), + [anon_sym_bycopy] = ACTIONS(1321), + [anon_sym_byref] = ACTIONS(1321), + [anon_sym_oneway] = ACTIONS(1321), + [anon_sym__Nullable] = ACTIONS(1321), + [anon_sym__Nonnull] = ACTIONS(1321), + [anon_sym__Nullable_result] = ACTIONS(1321), + [anon_sym__Null_unspecified] = ACTIONS(1321), + [anon_sym___autoreleasing] = ACTIONS(1321), + [anon_sym___nullable] = ACTIONS(1321), + [anon_sym___nonnull] = ACTIONS(1321), + [anon_sym___strong] = ACTIONS(1321), + [anon_sym___weak] = ACTIONS(1321), + [anon_sym___bridge] = ACTIONS(1321), + [anon_sym___bridge_transfer] = ACTIONS(1321), + [anon_sym___bridge_retained] = ACTIONS(1321), + [anon_sym___unsafe_unretained] = ACTIONS(1321), + [anon_sym___block] = ACTIONS(1321), + [anon_sym___kindof] = ACTIONS(1321), + [anon_sym___unused] = ACTIONS(1321), + [anon_sym__Complex] = ACTIONS(1321), + [anon_sym___complex] = ACTIONS(1321), + [anon_sym_IBOutlet] = ACTIONS(1321), + [anon_sym_IBInspectable] = ACTIONS(1321), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1321), + [anon_sym_signed] = ACTIONS(1321), + [anon_sym_unsigned] = ACTIONS(1321), + [anon_sym_long] = ACTIONS(1321), + [anon_sym_short] = ACTIONS(1321), + [sym_primitive_type] = ACTIONS(1321), + [anon_sym_enum] = ACTIONS(1321), + [anon_sym_struct] = ACTIONS(1321), + [anon_sym_union] = ACTIONS(1321), + [anon_sym_if] = ACTIONS(1321), + [anon_sym_else] = ACTIONS(1321), + [anon_sym_switch] = ACTIONS(1321), + [anon_sym_case] = ACTIONS(1321), + [anon_sym_default] = ACTIONS(1321), + [anon_sym_while] = ACTIONS(1321), + [anon_sym_do] = ACTIONS(1321), + [anon_sym_for] = ACTIONS(1321), + [anon_sym_return] = ACTIONS(1321), + [anon_sym_break] = ACTIONS(1321), + [anon_sym_continue] = ACTIONS(1321), + [anon_sym_goto] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1319), + [anon_sym_PLUS_PLUS] = ACTIONS(1319), + [anon_sym_sizeof] = ACTIONS(1321), + [sym_number_literal] = ACTIONS(1319), + [anon_sym_L_SQUOTE] = ACTIONS(1319), + [anon_sym_u_SQUOTE] = ACTIONS(1319), + [anon_sym_U_SQUOTE] = ACTIONS(1319), + [anon_sym_u8_SQUOTE] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1319), + [anon_sym_L_DQUOTE] = ACTIONS(1319), + [anon_sym_u_DQUOTE] = ACTIONS(1319), + [anon_sym_U_DQUOTE] = ACTIONS(1319), + [anon_sym_u8_DQUOTE] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(1319), + [sym_true] = ACTIONS(1321), + [sym_false] = ACTIONS(1321), + [sym_null] = ACTIONS(1321), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1211), - [anon_sym_ATimport] = ACTIONS(1211), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1213), - [anon_sym_ATcompatibility_alias] = ACTIONS(1211), - [anon_sym_ATprotocol] = ACTIONS(1211), - [anon_sym_ATclass] = ACTIONS(1211), - [anon_sym_ATinterface] = ACTIONS(1211), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1213), - [sym_method_attribute_specifier] = ACTIONS(1213), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1213), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1213), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1213), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1213), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1213), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1213), - [anon_sym_NS_AVAILABLE] = ACTIONS(1213), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1213), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1213), - [anon_sym_API_AVAILABLE] = ACTIONS(1213), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1213), - [anon_sym_API_DEPRECATED] = ACTIONS(1213), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1213), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1213), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1213), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1213), - [anon_sym___deprecated_msg] = ACTIONS(1213), - [anon_sym___deprecated_enum_msg] = ACTIONS(1213), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1213), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1213), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1213), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1213), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1213), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1213), - [anon_sym_ATimplementation] = ACTIONS(1211), - [anon_sym_typeof] = ACTIONS(1213), - [anon_sym___typeof] = ACTIONS(1213), - [anon_sym___typeof__] = ACTIONS(1213), - [sym_self] = ACTIONS(1213), - [sym_super] = ACTIONS(1213), - [sym_nil] = ACTIONS(1213), - [sym_id] = ACTIONS(1213), - [sym_instancetype] = ACTIONS(1213), - [sym_Class] = ACTIONS(1213), - [sym_SEL] = ACTIONS(1213), - [sym_IMP] = ACTIONS(1213), - [sym_BOOL] = ACTIONS(1213), - [sym_auto] = ACTIONS(1213), - [anon_sym_ATautoreleasepool] = ACTIONS(1211), - [anon_sym_ATsynchronized] = ACTIONS(1211), - [anon_sym_ATtry] = ACTIONS(1211), - [anon_sym_ATcatch] = ACTIONS(1211), - [anon_sym_ATfinally] = ACTIONS(1211), - [anon_sym_ATthrow] = ACTIONS(1211), - [anon_sym_ATselector] = ACTIONS(1211), - [anon_sym_ATencode] = ACTIONS(1211), - [anon_sym_AT] = ACTIONS(1213), - [sym_YES] = ACTIONS(1213), - [sym_NO] = ACTIONS(1213), - [anon_sym___builtin_available] = ACTIONS(1213), - [anon_sym_ATavailable] = ACTIONS(1211), - [anon_sym_va_arg] = ACTIONS(1213), + [anon_sym_POUNDimport] = ACTIONS(1319), + [anon_sym_ATimport] = ACTIONS(1319), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1321), + [anon_sym_ATcompatibility_alias] = ACTIONS(1319), + [anon_sym_ATprotocol] = ACTIONS(1319), + [anon_sym_ATclass] = ACTIONS(1319), + [anon_sym_ATinterface] = ACTIONS(1319), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1321), + [sym_method_attribute_specifier] = ACTIONS(1321), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1321), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1321), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1321), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1321), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1321), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1321), + [anon_sym_NS_AVAILABLE] = ACTIONS(1321), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1321), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1321), + [anon_sym_API_AVAILABLE] = ACTIONS(1321), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1321), + [anon_sym_API_DEPRECATED] = ACTIONS(1321), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1321), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1321), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1321), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1321), + [anon_sym___deprecated_msg] = ACTIONS(1321), + [anon_sym___deprecated_enum_msg] = ACTIONS(1321), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1321), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1321), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1321), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1321), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1321), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1321), + [anon_sym_ATimplementation] = ACTIONS(1319), + [anon_sym_NS_ENUM] = ACTIONS(1321), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1321), + [anon_sym_NS_OPTIONS] = ACTIONS(1321), + [anon_sym_typeof] = ACTIONS(1321), + [anon_sym___typeof] = ACTIONS(1321), + [anon_sym___typeof__] = ACTIONS(1321), + [sym_self] = ACTIONS(1321), + [sym_super] = ACTIONS(1321), + [sym_nil] = ACTIONS(1321), + [sym_id] = ACTIONS(1321), + [sym_instancetype] = ACTIONS(1321), + [sym_Class] = ACTIONS(1321), + [sym_SEL] = ACTIONS(1321), + [sym_IMP] = ACTIONS(1321), + [sym_BOOL] = ACTIONS(1321), + [sym_auto] = ACTIONS(1321), + [anon_sym_ATautoreleasepool] = ACTIONS(1319), + [anon_sym_ATsynchronized] = ACTIONS(1319), + [anon_sym_ATtry] = ACTIONS(1319), + [anon_sym_ATcatch] = ACTIONS(1319), + [anon_sym_ATfinally] = ACTIONS(1319), + [anon_sym_ATthrow] = ACTIONS(1319), + [anon_sym_ATselector] = ACTIONS(1319), + [anon_sym_ATencode] = ACTIONS(1319), + [anon_sym_AT] = ACTIONS(1321), + [sym_YES] = ACTIONS(1321), + [sym_NO] = ACTIONS(1321), + [anon_sym___builtin_available] = ACTIONS(1321), + [anon_sym_ATavailable] = ACTIONS(1319), + [anon_sym_va_arg] = ACTIONS(1321), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -112433,174 +93152,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [493] = { - [sym_identifier] = ACTIONS(1367), - [aux_sym_preproc_include_token1] = ACTIONS(1365), - [aux_sym_preproc_def_token1] = ACTIONS(1365), - [aux_sym_preproc_if_token1] = ACTIONS(1367), - [aux_sym_preproc_if_token2] = ACTIONS(1367), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1367), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1367), - [anon_sym_LPAREN2] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_typedef] = ACTIONS(1367), - [anon_sym_extern] = ACTIONS(1367), - [anon_sym___attribute] = ACTIONS(1367), - [anon_sym___attribute__] = ACTIONS(1367), - [anon_sym___declspec] = ACTIONS(1367), - [anon_sym___cdecl] = ACTIONS(1367), - [anon_sym___clrcall] = ACTIONS(1367), - [anon_sym___stdcall] = ACTIONS(1367), - [anon_sym___fastcall] = ACTIONS(1367), - [anon_sym___thiscall] = ACTIONS(1367), - [anon_sym___vectorcall] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1367), - [anon_sym_auto] = ACTIONS(1367), - [anon_sym_register] = ACTIONS(1367), - [anon_sym_inline] = ACTIONS(1367), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1367), - [anon_sym_const] = ACTIONS(1367), - [anon_sym_volatile] = ACTIONS(1367), - [anon_sym_restrict] = ACTIONS(1367), - [anon_sym__Atomic] = ACTIONS(1367), - [anon_sym_in] = ACTIONS(1367), - [anon_sym_out] = ACTIONS(1367), - [anon_sym_inout] = ACTIONS(1367), - [anon_sym_bycopy] = ACTIONS(1367), - [anon_sym_byref] = ACTIONS(1367), - [anon_sym_oneway] = ACTIONS(1367), - [anon_sym__Nullable] = ACTIONS(1367), - [anon_sym__Nonnull] = ACTIONS(1367), - [anon_sym__Nullable_result] = ACTIONS(1367), - [anon_sym__Null_unspecified] = ACTIONS(1367), - [anon_sym___autoreleasing] = ACTIONS(1367), - [anon_sym___nullable] = ACTIONS(1367), - [anon_sym___nonnull] = ACTIONS(1367), - [anon_sym___strong] = ACTIONS(1367), - [anon_sym___weak] = ACTIONS(1367), - [anon_sym___bridge] = ACTIONS(1367), - [anon_sym___bridge_transfer] = ACTIONS(1367), - [anon_sym___bridge_retained] = ACTIONS(1367), - [anon_sym___unsafe_unretained] = ACTIONS(1367), - [anon_sym___block] = ACTIONS(1367), - [anon_sym___kindof] = ACTIONS(1367), - [anon_sym___unused] = ACTIONS(1367), - [anon_sym__Complex] = ACTIONS(1367), - [anon_sym___complex] = ACTIONS(1367), - [anon_sym_IBOutlet] = ACTIONS(1367), - [anon_sym_IBInspectable] = ACTIONS(1367), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1367), - [anon_sym_signed] = ACTIONS(1367), - [anon_sym_unsigned] = ACTIONS(1367), - [anon_sym_long] = ACTIONS(1367), - [anon_sym_short] = ACTIONS(1367), - [sym_primitive_type] = ACTIONS(1367), - [anon_sym_enum] = ACTIONS(1367), - [anon_sym_NS_ENUM] = ACTIONS(1367), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1367), - [anon_sym_NS_OPTIONS] = ACTIONS(1367), - [anon_sym_struct] = ACTIONS(1367), - [anon_sym_union] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1367), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_switch] = ACTIONS(1367), - [anon_sym_case] = ACTIONS(1367), - [anon_sym_default] = ACTIONS(1367), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_do] = ACTIONS(1367), - [anon_sym_for] = ACTIONS(1367), - [anon_sym_return] = ACTIONS(1367), - [anon_sym_break] = ACTIONS(1367), - [anon_sym_continue] = ACTIONS(1367), - [anon_sym_goto] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_sizeof] = ACTIONS(1367), - [sym_number_literal] = ACTIONS(1365), - [anon_sym_L_SQUOTE] = ACTIONS(1365), - [anon_sym_u_SQUOTE] = ACTIONS(1365), - [anon_sym_U_SQUOTE] = ACTIONS(1365), - [anon_sym_u8_SQUOTE] = ACTIONS(1365), - [anon_sym_SQUOTE] = ACTIONS(1365), - [anon_sym_L_DQUOTE] = ACTIONS(1365), - [anon_sym_u_DQUOTE] = ACTIONS(1365), - [anon_sym_U_DQUOTE] = ACTIONS(1365), - [anon_sym_u8_DQUOTE] = ACTIONS(1365), - [anon_sym_DQUOTE] = ACTIONS(1365), - [sym_true] = ACTIONS(1367), - [sym_false] = ACTIONS(1367), - [sym_null] = ACTIONS(1367), + [383] = { + [sym_identifier] = ACTIONS(1317), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1317), + [aux_sym_preproc_if_token2] = ACTIONS(1317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1317), + [anon_sym_LPAREN2] = ACTIONS(1315), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_TILDE] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_CARET] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1317), + [anon_sym_extern] = ACTIONS(1317), + [anon_sym___attribute] = ACTIONS(1317), + [anon_sym___attribute__] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1317), + [anon_sym___cdecl] = ACTIONS(1317), + [anon_sym___clrcall] = ACTIONS(1317), + [anon_sym___stdcall] = ACTIONS(1317), + [anon_sym___fastcall] = ACTIONS(1317), + [anon_sym___thiscall] = ACTIONS(1317), + [anon_sym___vectorcall] = ACTIONS(1317), + [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1317), + [anon_sym_auto] = ACTIONS(1317), + [anon_sym_register] = ACTIONS(1317), + [anon_sym_inline] = ACTIONS(1317), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1317), + [anon_sym_const] = ACTIONS(1317), + [anon_sym_volatile] = ACTIONS(1317), + [anon_sym_restrict] = ACTIONS(1317), + [anon_sym__Atomic] = ACTIONS(1317), + [anon_sym_in] = ACTIONS(1317), + [anon_sym_out] = ACTIONS(1317), + [anon_sym_inout] = ACTIONS(1317), + [anon_sym_bycopy] = ACTIONS(1317), + [anon_sym_byref] = ACTIONS(1317), + [anon_sym_oneway] = ACTIONS(1317), + [anon_sym__Nullable] = ACTIONS(1317), + [anon_sym__Nonnull] = ACTIONS(1317), + [anon_sym__Nullable_result] = ACTIONS(1317), + [anon_sym__Null_unspecified] = ACTIONS(1317), + [anon_sym___autoreleasing] = ACTIONS(1317), + [anon_sym___nullable] = ACTIONS(1317), + [anon_sym___nonnull] = ACTIONS(1317), + [anon_sym___strong] = ACTIONS(1317), + [anon_sym___weak] = ACTIONS(1317), + [anon_sym___bridge] = ACTIONS(1317), + [anon_sym___bridge_transfer] = ACTIONS(1317), + [anon_sym___bridge_retained] = ACTIONS(1317), + [anon_sym___unsafe_unretained] = ACTIONS(1317), + [anon_sym___block] = ACTIONS(1317), + [anon_sym___kindof] = ACTIONS(1317), + [anon_sym___unused] = ACTIONS(1317), + [anon_sym__Complex] = ACTIONS(1317), + [anon_sym___complex] = ACTIONS(1317), + [anon_sym_IBOutlet] = ACTIONS(1317), + [anon_sym_IBInspectable] = ACTIONS(1317), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1317), + [anon_sym_signed] = ACTIONS(1317), + [anon_sym_unsigned] = ACTIONS(1317), + [anon_sym_long] = ACTIONS(1317), + [anon_sym_short] = ACTIONS(1317), + [sym_primitive_type] = ACTIONS(1317), + [anon_sym_enum] = ACTIONS(1317), + [anon_sym_struct] = ACTIONS(1317), + [anon_sym_union] = ACTIONS(1317), + [anon_sym_if] = ACTIONS(1317), + [anon_sym_else] = ACTIONS(1317), + [anon_sym_switch] = ACTIONS(1317), + [anon_sym_case] = ACTIONS(1317), + [anon_sym_default] = ACTIONS(1317), + [anon_sym_while] = ACTIONS(1317), + [anon_sym_do] = ACTIONS(1317), + [anon_sym_for] = ACTIONS(1317), + [anon_sym_return] = ACTIONS(1317), + [anon_sym_break] = ACTIONS(1317), + [anon_sym_continue] = ACTIONS(1317), + [anon_sym_goto] = ACTIONS(1317), + [anon_sym_DASH_DASH] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1315), + [anon_sym_sizeof] = ACTIONS(1317), + [sym_number_literal] = ACTIONS(1315), + [anon_sym_L_SQUOTE] = ACTIONS(1315), + [anon_sym_u_SQUOTE] = ACTIONS(1315), + [anon_sym_U_SQUOTE] = ACTIONS(1315), + [anon_sym_u8_SQUOTE] = ACTIONS(1315), + [anon_sym_SQUOTE] = ACTIONS(1315), + [anon_sym_L_DQUOTE] = ACTIONS(1315), + [anon_sym_u_DQUOTE] = ACTIONS(1315), + [anon_sym_U_DQUOTE] = ACTIONS(1315), + [anon_sym_u8_DQUOTE] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(1315), + [sym_true] = ACTIONS(1317), + [sym_false] = ACTIONS(1317), + [sym_null] = ACTIONS(1317), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1365), - [anon_sym_ATimport] = ACTIONS(1365), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1367), - [anon_sym_ATcompatibility_alias] = ACTIONS(1365), - [anon_sym_ATprotocol] = ACTIONS(1365), - [anon_sym_ATclass] = ACTIONS(1365), - [anon_sym_ATinterface] = ACTIONS(1365), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1367), - [sym_method_attribute_specifier] = ACTIONS(1367), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1367), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1367), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1367), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1367), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1367), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1367), - [anon_sym_NS_AVAILABLE] = ACTIONS(1367), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1367), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_API_AVAILABLE] = ACTIONS(1367), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1367), - [anon_sym_API_DEPRECATED] = ACTIONS(1367), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1367), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1367), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1367), - [anon_sym___deprecated_msg] = ACTIONS(1367), - [anon_sym___deprecated_enum_msg] = ACTIONS(1367), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1367), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1367), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1367), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1367), - [anon_sym_ATimplementation] = ACTIONS(1365), - [anon_sym_typeof] = ACTIONS(1367), - [anon_sym___typeof] = ACTIONS(1367), - [anon_sym___typeof__] = ACTIONS(1367), - [sym_self] = ACTIONS(1367), - [sym_super] = ACTIONS(1367), - [sym_nil] = ACTIONS(1367), - [sym_id] = ACTIONS(1367), - [sym_instancetype] = ACTIONS(1367), - [sym_Class] = ACTIONS(1367), - [sym_SEL] = ACTIONS(1367), - [sym_IMP] = ACTIONS(1367), - [sym_BOOL] = ACTIONS(1367), - [sym_auto] = ACTIONS(1367), - [anon_sym_ATautoreleasepool] = ACTIONS(1365), - [anon_sym_ATsynchronized] = ACTIONS(1365), - [anon_sym_ATtry] = ACTIONS(1365), - [anon_sym_ATcatch] = ACTIONS(1365), - [anon_sym_ATfinally] = ACTIONS(1365), - [anon_sym_ATthrow] = ACTIONS(1365), - [anon_sym_ATselector] = ACTIONS(1365), - [anon_sym_ATencode] = ACTIONS(1365), - [anon_sym_AT] = ACTIONS(1367), - [sym_YES] = ACTIONS(1367), - [sym_NO] = ACTIONS(1367), - [anon_sym___builtin_available] = ACTIONS(1367), - [anon_sym_ATavailable] = ACTIONS(1365), - [anon_sym_va_arg] = ACTIONS(1367), + [anon_sym_POUNDimport] = ACTIONS(1315), + [anon_sym_ATimport] = ACTIONS(1315), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1317), + [anon_sym_ATcompatibility_alias] = ACTIONS(1315), + [anon_sym_ATprotocol] = ACTIONS(1315), + [anon_sym_ATclass] = ACTIONS(1315), + [anon_sym_ATinterface] = ACTIONS(1315), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1317), + [sym_method_attribute_specifier] = ACTIONS(1317), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1317), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1317), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1317), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1317), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1317), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1317), + [anon_sym_NS_AVAILABLE] = ACTIONS(1317), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1317), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1317), + [anon_sym_API_AVAILABLE] = ACTIONS(1317), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1317), + [anon_sym_API_DEPRECATED] = ACTIONS(1317), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1317), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1317), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1317), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1317), + [anon_sym___deprecated_msg] = ACTIONS(1317), + [anon_sym___deprecated_enum_msg] = ACTIONS(1317), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1317), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1317), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1317), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1317), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1317), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1317), + [anon_sym_ATimplementation] = ACTIONS(1315), + [anon_sym_NS_ENUM] = ACTIONS(1317), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1317), + [anon_sym_NS_OPTIONS] = ACTIONS(1317), + [anon_sym_typeof] = ACTIONS(1317), + [anon_sym___typeof] = ACTIONS(1317), + [anon_sym___typeof__] = ACTIONS(1317), + [sym_self] = ACTIONS(1317), + [sym_super] = ACTIONS(1317), + [sym_nil] = ACTIONS(1317), + [sym_id] = ACTIONS(1317), + [sym_instancetype] = ACTIONS(1317), + [sym_Class] = ACTIONS(1317), + [sym_SEL] = ACTIONS(1317), + [sym_IMP] = ACTIONS(1317), + [sym_BOOL] = ACTIONS(1317), + [sym_auto] = ACTIONS(1317), + [anon_sym_ATautoreleasepool] = ACTIONS(1315), + [anon_sym_ATsynchronized] = ACTIONS(1315), + [anon_sym_ATtry] = ACTIONS(1315), + [anon_sym_ATcatch] = ACTIONS(1315), + [anon_sym_ATfinally] = ACTIONS(1315), + [anon_sym_ATthrow] = ACTIONS(1315), + [anon_sym_ATselector] = ACTIONS(1315), + [anon_sym_ATencode] = ACTIONS(1315), + [anon_sym_AT] = ACTIONS(1317), + [sym_YES] = ACTIONS(1317), + [sym_NO] = ACTIONS(1317), + [anon_sym___builtin_available] = ACTIONS(1317), + [anon_sym_ATavailable] = ACTIONS(1315), + [anon_sym_va_arg] = ACTIONS(1317), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -112608,23 +93327,3348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [494] = { + [384] = { + [sym_identifier] = ACTIONS(1313), + [aux_sym_preproc_include_token1] = ACTIONS(1311), + [aux_sym_preproc_def_token1] = ACTIONS(1311), + [aux_sym_preproc_if_token1] = ACTIONS(1313), + [aux_sym_preproc_if_token2] = ACTIONS(1313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1313), + [anon_sym_LPAREN2] = ACTIONS(1311), + [anon_sym_BANG] = ACTIONS(1311), + [anon_sym_TILDE] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_typedef] = ACTIONS(1313), + [anon_sym_extern] = ACTIONS(1313), + [anon_sym___attribute] = ACTIONS(1313), + [anon_sym___attribute__] = ACTIONS(1313), + [anon_sym___declspec] = ACTIONS(1313), + [anon_sym___cdecl] = ACTIONS(1313), + [anon_sym___clrcall] = ACTIONS(1313), + [anon_sym___stdcall] = ACTIONS(1313), + [anon_sym___fastcall] = ACTIONS(1313), + [anon_sym___thiscall] = ACTIONS(1313), + [anon_sym___vectorcall] = ACTIONS(1313), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_static] = ACTIONS(1313), + [anon_sym_auto] = ACTIONS(1313), + [anon_sym_register] = ACTIONS(1313), + [anon_sym_inline] = ACTIONS(1313), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1313), + [anon_sym_const] = ACTIONS(1313), + [anon_sym_volatile] = ACTIONS(1313), + [anon_sym_restrict] = ACTIONS(1313), + [anon_sym__Atomic] = ACTIONS(1313), + [anon_sym_in] = ACTIONS(1313), + [anon_sym_out] = ACTIONS(1313), + [anon_sym_inout] = ACTIONS(1313), + [anon_sym_bycopy] = ACTIONS(1313), + [anon_sym_byref] = ACTIONS(1313), + [anon_sym_oneway] = ACTIONS(1313), + [anon_sym__Nullable] = ACTIONS(1313), + [anon_sym__Nonnull] = ACTIONS(1313), + [anon_sym__Nullable_result] = ACTIONS(1313), + [anon_sym__Null_unspecified] = ACTIONS(1313), + [anon_sym___autoreleasing] = ACTIONS(1313), + [anon_sym___nullable] = ACTIONS(1313), + [anon_sym___nonnull] = ACTIONS(1313), + [anon_sym___strong] = ACTIONS(1313), + [anon_sym___weak] = ACTIONS(1313), + [anon_sym___bridge] = ACTIONS(1313), + [anon_sym___bridge_transfer] = ACTIONS(1313), + [anon_sym___bridge_retained] = ACTIONS(1313), + [anon_sym___unsafe_unretained] = ACTIONS(1313), + [anon_sym___block] = ACTIONS(1313), + [anon_sym___kindof] = ACTIONS(1313), + [anon_sym___unused] = ACTIONS(1313), + [anon_sym__Complex] = ACTIONS(1313), + [anon_sym___complex] = ACTIONS(1313), + [anon_sym_IBOutlet] = ACTIONS(1313), + [anon_sym_IBInspectable] = ACTIONS(1313), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1313), + [anon_sym_signed] = ACTIONS(1313), + [anon_sym_unsigned] = ACTIONS(1313), + [anon_sym_long] = ACTIONS(1313), + [anon_sym_short] = ACTIONS(1313), + [sym_primitive_type] = ACTIONS(1313), + [anon_sym_enum] = ACTIONS(1313), + [anon_sym_struct] = ACTIONS(1313), + [anon_sym_union] = ACTIONS(1313), + [anon_sym_if] = ACTIONS(1313), + [anon_sym_else] = ACTIONS(1313), + [anon_sym_switch] = ACTIONS(1313), + [anon_sym_case] = ACTIONS(1313), + [anon_sym_default] = ACTIONS(1313), + [anon_sym_while] = ACTIONS(1313), + [anon_sym_do] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_return] = ACTIONS(1313), + [anon_sym_break] = ACTIONS(1313), + [anon_sym_continue] = ACTIONS(1313), + [anon_sym_goto] = ACTIONS(1313), + [anon_sym_DASH_DASH] = ACTIONS(1311), + [anon_sym_PLUS_PLUS] = ACTIONS(1311), + [anon_sym_sizeof] = ACTIONS(1313), + [sym_number_literal] = ACTIONS(1311), + [anon_sym_L_SQUOTE] = ACTIONS(1311), + [anon_sym_u_SQUOTE] = ACTIONS(1311), + [anon_sym_U_SQUOTE] = ACTIONS(1311), + [anon_sym_u8_SQUOTE] = ACTIONS(1311), + [anon_sym_SQUOTE] = ACTIONS(1311), + [anon_sym_L_DQUOTE] = ACTIONS(1311), + [anon_sym_u_DQUOTE] = ACTIONS(1311), + [anon_sym_U_DQUOTE] = ACTIONS(1311), + [anon_sym_u8_DQUOTE] = ACTIONS(1311), + [anon_sym_DQUOTE] = ACTIONS(1311), + [sym_true] = ACTIONS(1313), + [sym_false] = ACTIONS(1313), + [sym_null] = ACTIONS(1313), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1311), + [anon_sym_ATimport] = ACTIONS(1311), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1313), + [anon_sym_ATcompatibility_alias] = ACTIONS(1311), + [anon_sym_ATprotocol] = ACTIONS(1311), + [anon_sym_ATclass] = ACTIONS(1311), + [anon_sym_ATinterface] = ACTIONS(1311), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1313), + [sym_method_attribute_specifier] = ACTIONS(1313), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1313), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1313), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1313), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1313), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1313), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1313), + [anon_sym_NS_AVAILABLE] = ACTIONS(1313), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1313), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1313), + [anon_sym_API_AVAILABLE] = ACTIONS(1313), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1313), + [anon_sym_API_DEPRECATED] = ACTIONS(1313), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1313), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1313), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1313), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1313), + [anon_sym___deprecated_msg] = ACTIONS(1313), + [anon_sym___deprecated_enum_msg] = ACTIONS(1313), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1313), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1313), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1313), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1313), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1313), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1313), + [anon_sym_ATimplementation] = ACTIONS(1311), + [anon_sym_NS_ENUM] = ACTIONS(1313), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1313), + [anon_sym_NS_OPTIONS] = ACTIONS(1313), + [anon_sym_typeof] = ACTIONS(1313), + [anon_sym___typeof] = ACTIONS(1313), + [anon_sym___typeof__] = ACTIONS(1313), + [sym_self] = ACTIONS(1313), + [sym_super] = ACTIONS(1313), + [sym_nil] = ACTIONS(1313), + [sym_id] = ACTIONS(1313), + [sym_instancetype] = ACTIONS(1313), + [sym_Class] = ACTIONS(1313), + [sym_SEL] = ACTIONS(1313), + [sym_IMP] = ACTIONS(1313), + [sym_BOOL] = ACTIONS(1313), + [sym_auto] = ACTIONS(1313), + [anon_sym_ATautoreleasepool] = ACTIONS(1311), + [anon_sym_ATsynchronized] = ACTIONS(1311), + [anon_sym_ATtry] = ACTIONS(1311), + [anon_sym_ATcatch] = ACTIONS(1311), + [anon_sym_ATfinally] = ACTIONS(1311), + [anon_sym_ATthrow] = ACTIONS(1311), + [anon_sym_ATselector] = ACTIONS(1311), + [anon_sym_ATencode] = ACTIONS(1311), + [anon_sym_AT] = ACTIONS(1313), + [sym_YES] = ACTIONS(1313), + [sym_NO] = ACTIONS(1313), + [anon_sym___builtin_available] = ACTIONS(1313), + [anon_sym_ATavailable] = ACTIONS(1311), + [anon_sym_va_arg] = ACTIONS(1313), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [385] = { + [sym_identifier] = ACTIONS(1597), + [aux_sym_preproc_include_token1] = ACTIONS(1595), + [aux_sym_preproc_def_token1] = ACTIONS(1595), + [aux_sym_preproc_if_token1] = ACTIONS(1597), + [aux_sym_preproc_if_token2] = ACTIONS(1597), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1597), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_CARET] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_typedef] = ACTIONS(1597), + [anon_sym_extern] = ACTIONS(1597), + [anon_sym___attribute] = ACTIONS(1597), + [anon_sym___attribute__] = ACTIONS(1597), + [anon_sym___declspec] = ACTIONS(1597), + [anon_sym___cdecl] = ACTIONS(1597), + [anon_sym___clrcall] = ACTIONS(1597), + [anon_sym___stdcall] = ACTIONS(1597), + [anon_sym___fastcall] = ACTIONS(1597), + [anon_sym___thiscall] = ACTIONS(1597), + [anon_sym___vectorcall] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1595), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_auto] = ACTIONS(1597), + [anon_sym_register] = ACTIONS(1597), + [anon_sym_inline] = ACTIONS(1597), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_volatile] = ACTIONS(1597), + [anon_sym_restrict] = ACTIONS(1597), + [anon_sym__Atomic] = ACTIONS(1597), + [anon_sym_in] = ACTIONS(1597), + [anon_sym_out] = ACTIONS(1597), + [anon_sym_inout] = ACTIONS(1597), + [anon_sym_bycopy] = ACTIONS(1597), + [anon_sym_byref] = ACTIONS(1597), + [anon_sym_oneway] = ACTIONS(1597), + [anon_sym__Nullable] = ACTIONS(1597), + [anon_sym__Nonnull] = ACTIONS(1597), + [anon_sym__Nullable_result] = ACTIONS(1597), + [anon_sym__Null_unspecified] = ACTIONS(1597), + [anon_sym___autoreleasing] = ACTIONS(1597), + [anon_sym___nullable] = ACTIONS(1597), + [anon_sym___nonnull] = ACTIONS(1597), + [anon_sym___strong] = ACTIONS(1597), + [anon_sym___weak] = ACTIONS(1597), + [anon_sym___bridge] = ACTIONS(1597), + [anon_sym___bridge_transfer] = ACTIONS(1597), + [anon_sym___bridge_retained] = ACTIONS(1597), + [anon_sym___unsafe_unretained] = ACTIONS(1597), + [anon_sym___block] = ACTIONS(1597), + [anon_sym___kindof] = ACTIONS(1597), + [anon_sym___unused] = ACTIONS(1597), + [anon_sym__Complex] = ACTIONS(1597), + [anon_sym___complex] = ACTIONS(1597), + [anon_sym_IBOutlet] = ACTIONS(1597), + [anon_sym_IBInspectable] = ACTIONS(1597), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1597), + [anon_sym_signed] = ACTIONS(1597), + [anon_sym_unsigned] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [sym_primitive_type] = ACTIONS(1597), + [anon_sym_enum] = ACTIONS(1597), + [anon_sym_struct] = ACTIONS(1597), + [anon_sym_union] = ACTIONS(1597), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_else] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_case] = ACTIONS(1597), + [anon_sym_default] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_goto] = ACTIONS(1597), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_sizeof] = ACTIONS(1597), + [sym_number_literal] = ACTIONS(1595), + [anon_sym_L_SQUOTE] = ACTIONS(1595), + [anon_sym_u_SQUOTE] = ACTIONS(1595), + [anon_sym_U_SQUOTE] = ACTIONS(1595), + [anon_sym_u8_SQUOTE] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_L_DQUOTE] = ACTIONS(1595), + [anon_sym_u_DQUOTE] = ACTIONS(1595), + [anon_sym_U_DQUOTE] = ACTIONS(1595), + [anon_sym_u8_DQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [sym_true] = ACTIONS(1597), + [sym_false] = ACTIONS(1597), + [sym_null] = ACTIONS(1597), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1595), + [anon_sym_ATimport] = ACTIONS(1595), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1597), + [anon_sym_ATcompatibility_alias] = ACTIONS(1595), + [anon_sym_ATprotocol] = ACTIONS(1595), + [anon_sym_ATclass] = ACTIONS(1595), + [anon_sym_ATinterface] = ACTIONS(1595), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1597), + [sym_method_attribute_specifier] = ACTIONS(1597), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1597), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1597), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1597), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1597), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1597), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1597), + [anon_sym_NS_AVAILABLE] = ACTIONS(1597), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1597), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1597), + [anon_sym_API_AVAILABLE] = ACTIONS(1597), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1597), + [anon_sym_API_DEPRECATED] = ACTIONS(1597), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1597), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1597), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1597), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1597), + [anon_sym___deprecated_msg] = ACTIONS(1597), + [anon_sym___deprecated_enum_msg] = ACTIONS(1597), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1597), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1597), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1597), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1597), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1597), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1597), + [anon_sym_ATimplementation] = ACTIONS(1595), + [anon_sym_NS_ENUM] = ACTIONS(1597), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1597), + [anon_sym_NS_OPTIONS] = ACTIONS(1597), + [anon_sym_typeof] = ACTIONS(1597), + [anon_sym___typeof] = ACTIONS(1597), + [anon_sym___typeof__] = ACTIONS(1597), + [sym_self] = ACTIONS(1597), + [sym_super] = ACTIONS(1597), + [sym_nil] = ACTIONS(1597), + [sym_id] = ACTIONS(1597), + [sym_instancetype] = ACTIONS(1597), + [sym_Class] = ACTIONS(1597), + [sym_SEL] = ACTIONS(1597), + [sym_IMP] = ACTIONS(1597), + [sym_BOOL] = ACTIONS(1597), + [sym_auto] = ACTIONS(1597), + [anon_sym_ATautoreleasepool] = ACTIONS(1595), + [anon_sym_ATsynchronized] = ACTIONS(1595), + [anon_sym_ATtry] = ACTIONS(1595), + [anon_sym_ATcatch] = ACTIONS(1595), + [anon_sym_ATfinally] = ACTIONS(1595), + [anon_sym_ATthrow] = ACTIONS(1595), + [anon_sym_ATselector] = ACTIONS(1595), + [anon_sym_ATencode] = ACTIONS(1595), + [anon_sym_AT] = ACTIONS(1597), + [sym_YES] = ACTIONS(1597), + [sym_NO] = ACTIONS(1597), + [anon_sym___builtin_available] = ACTIONS(1597), + [anon_sym_ATavailable] = ACTIONS(1595), + [anon_sym_va_arg] = ACTIONS(1597), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [386] = { + [sym_identifier] = ACTIONS(1593), + [aux_sym_preproc_include_token1] = ACTIONS(1591), + [aux_sym_preproc_def_token1] = ACTIONS(1591), + [aux_sym_preproc_if_token1] = ACTIONS(1593), + [aux_sym_preproc_if_token2] = ACTIONS(1593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), + [anon_sym_LPAREN2] = ACTIONS(1591), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_CARET] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1591), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_typedef] = ACTIONS(1593), + [anon_sym_extern] = ACTIONS(1593), + [anon_sym___attribute] = ACTIONS(1593), + [anon_sym___attribute__] = ACTIONS(1593), + [anon_sym___declspec] = ACTIONS(1593), + [anon_sym___cdecl] = ACTIONS(1593), + [anon_sym___clrcall] = ACTIONS(1593), + [anon_sym___stdcall] = ACTIONS(1593), + [anon_sym___fastcall] = ACTIONS(1593), + [anon_sym___thiscall] = ACTIONS(1593), + [anon_sym___vectorcall] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_auto] = ACTIONS(1593), + [anon_sym_register] = ACTIONS(1593), + [anon_sym_inline] = ACTIONS(1593), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_volatile] = ACTIONS(1593), + [anon_sym_restrict] = ACTIONS(1593), + [anon_sym__Atomic] = ACTIONS(1593), + [anon_sym_in] = ACTIONS(1593), + [anon_sym_out] = ACTIONS(1593), + [anon_sym_inout] = ACTIONS(1593), + [anon_sym_bycopy] = ACTIONS(1593), + [anon_sym_byref] = ACTIONS(1593), + [anon_sym_oneway] = ACTIONS(1593), + [anon_sym__Nullable] = ACTIONS(1593), + [anon_sym__Nonnull] = ACTIONS(1593), + [anon_sym__Nullable_result] = ACTIONS(1593), + [anon_sym__Null_unspecified] = ACTIONS(1593), + [anon_sym___autoreleasing] = ACTIONS(1593), + [anon_sym___nullable] = ACTIONS(1593), + [anon_sym___nonnull] = ACTIONS(1593), + [anon_sym___strong] = ACTIONS(1593), + [anon_sym___weak] = ACTIONS(1593), + [anon_sym___bridge] = ACTIONS(1593), + [anon_sym___bridge_transfer] = ACTIONS(1593), + [anon_sym___bridge_retained] = ACTIONS(1593), + [anon_sym___unsafe_unretained] = ACTIONS(1593), + [anon_sym___block] = ACTIONS(1593), + [anon_sym___kindof] = ACTIONS(1593), + [anon_sym___unused] = ACTIONS(1593), + [anon_sym__Complex] = ACTIONS(1593), + [anon_sym___complex] = ACTIONS(1593), + [anon_sym_IBOutlet] = ACTIONS(1593), + [anon_sym_IBInspectable] = ACTIONS(1593), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1593), + [anon_sym_signed] = ACTIONS(1593), + [anon_sym_unsigned] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [sym_primitive_type] = ACTIONS(1593), + [anon_sym_enum] = ACTIONS(1593), + [anon_sym_struct] = ACTIONS(1593), + [anon_sym_union] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_else] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_goto] = ACTIONS(1593), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_sizeof] = ACTIONS(1593), + [sym_number_literal] = ACTIONS(1591), + [anon_sym_L_SQUOTE] = ACTIONS(1591), + [anon_sym_u_SQUOTE] = ACTIONS(1591), + [anon_sym_U_SQUOTE] = ACTIONS(1591), + [anon_sym_u8_SQUOTE] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_L_DQUOTE] = ACTIONS(1591), + [anon_sym_u_DQUOTE] = ACTIONS(1591), + [anon_sym_U_DQUOTE] = ACTIONS(1591), + [anon_sym_u8_DQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [sym_true] = ACTIONS(1593), + [sym_false] = ACTIONS(1593), + [sym_null] = ACTIONS(1593), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1591), + [anon_sym_ATimport] = ACTIONS(1591), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1593), + [anon_sym_ATcompatibility_alias] = ACTIONS(1591), + [anon_sym_ATprotocol] = ACTIONS(1591), + [anon_sym_ATclass] = ACTIONS(1591), + [anon_sym_ATinterface] = ACTIONS(1591), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1593), + [sym_method_attribute_specifier] = ACTIONS(1593), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1593), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1593), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1593), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1593), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1593), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1593), + [anon_sym_NS_AVAILABLE] = ACTIONS(1593), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1593), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1593), + [anon_sym_API_AVAILABLE] = ACTIONS(1593), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1593), + [anon_sym_API_DEPRECATED] = ACTIONS(1593), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1593), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1593), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1593), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1593), + [anon_sym___deprecated_msg] = ACTIONS(1593), + [anon_sym___deprecated_enum_msg] = ACTIONS(1593), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1593), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1593), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1593), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1593), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1593), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1593), + [anon_sym_ATimplementation] = ACTIONS(1591), + [anon_sym_NS_ENUM] = ACTIONS(1593), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1593), + [anon_sym_NS_OPTIONS] = ACTIONS(1593), + [anon_sym_typeof] = ACTIONS(1593), + [anon_sym___typeof] = ACTIONS(1593), + [anon_sym___typeof__] = ACTIONS(1593), + [sym_self] = ACTIONS(1593), + [sym_super] = ACTIONS(1593), + [sym_nil] = ACTIONS(1593), + [sym_id] = ACTIONS(1593), + [sym_instancetype] = ACTIONS(1593), + [sym_Class] = ACTIONS(1593), + [sym_SEL] = ACTIONS(1593), + [sym_IMP] = ACTIONS(1593), + [sym_BOOL] = ACTIONS(1593), + [sym_auto] = ACTIONS(1593), + [anon_sym_ATautoreleasepool] = ACTIONS(1591), + [anon_sym_ATsynchronized] = ACTIONS(1591), + [anon_sym_ATtry] = ACTIONS(1591), + [anon_sym_ATcatch] = ACTIONS(1591), + [anon_sym_ATfinally] = ACTIONS(1591), + [anon_sym_ATthrow] = ACTIONS(1591), + [anon_sym_ATselector] = ACTIONS(1591), + [anon_sym_ATencode] = ACTIONS(1591), + [anon_sym_AT] = ACTIONS(1593), + [sym_YES] = ACTIONS(1593), + [sym_NO] = ACTIONS(1593), + [anon_sym___builtin_available] = ACTIONS(1593), + [anon_sym_ATavailable] = ACTIONS(1591), + [anon_sym_va_arg] = ACTIONS(1593), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [387] = { + [sym_identifier] = ACTIONS(1589), + [aux_sym_preproc_include_token1] = ACTIONS(1587), + [aux_sym_preproc_def_token1] = ACTIONS(1587), + [aux_sym_preproc_if_token1] = ACTIONS(1589), + [aux_sym_preproc_if_token2] = ACTIONS(1589), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1589), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_typedef] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym___attribute] = ACTIONS(1589), + [anon_sym___attribute__] = ACTIONS(1589), + [anon_sym___declspec] = ACTIONS(1589), + [anon_sym___cdecl] = ACTIONS(1589), + [anon_sym___clrcall] = ACTIONS(1589), + [anon_sym___stdcall] = ACTIONS(1589), + [anon_sym___fastcall] = ACTIONS(1589), + [anon_sym___thiscall] = ACTIONS(1589), + [anon_sym___vectorcall] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_auto] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_inline] = ACTIONS(1589), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_volatile] = ACTIONS(1589), + [anon_sym_restrict] = ACTIONS(1589), + [anon_sym__Atomic] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_out] = ACTIONS(1589), + [anon_sym_inout] = ACTIONS(1589), + [anon_sym_bycopy] = ACTIONS(1589), + [anon_sym_byref] = ACTIONS(1589), + [anon_sym_oneway] = ACTIONS(1589), + [anon_sym__Nullable] = ACTIONS(1589), + [anon_sym__Nonnull] = ACTIONS(1589), + [anon_sym__Nullable_result] = ACTIONS(1589), + [anon_sym__Null_unspecified] = ACTIONS(1589), + [anon_sym___autoreleasing] = ACTIONS(1589), + [anon_sym___nullable] = ACTIONS(1589), + [anon_sym___nonnull] = ACTIONS(1589), + [anon_sym___strong] = ACTIONS(1589), + [anon_sym___weak] = ACTIONS(1589), + [anon_sym___bridge] = ACTIONS(1589), + [anon_sym___bridge_transfer] = ACTIONS(1589), + [anon_sym___bridge_retained] = ACTIONS(1589), + [anon_sym___unsafe_unretained] = ACTIONS(1589), + [anon_sym___block] = ACTIONS(1589), + [anon_sym___kindof] = ACTIONS(1589), + [anon_sym___unused] = ACTIONS(1589), + [anon_sym__Complex] = ACTIONS(1589), + [anon_sym___complex] = ACTIONS(1589), + [anon_sym_IBOutlet] = ACTIONS(1589), + [anon_sym_IBInspectable] = ACTIONS(1589), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1589), + [anon_sym_signed] = ACTIONS(1589), + [anon_sym_unsigned] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [sym_primitive_type] = ACTIONS(1589), + [anon_sym_enum] = ACTIONS(1589), + [anon_sym_struct] = ACTIONS(1589), + [anon_sym_union] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_else] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_case] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_goto] = ACTIONS(1589), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_sizeof] = ACTIONS(1589), + [sym_number_literal] = ACTIONS(1587), + [anon_sym_L_SQUOTE] = ACTIONS(1587), + [anon_sym_u_SQUOTE] = ACTIONS(1587), + [anon_sym_U_SQUOTE] = ACTIONS(1587), + [anon_sym_u8_SQUOTE] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_L_DQUOTE] = ACTIONS(1587), + [anon_sym_u_DQUOTE] = ACTIONS(1587), + [anon_sym_U_DQUOTE] = ACTIONS(1587), + [anon_sym_u8_DQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [sym_true] = ACTIONS(1589), + [sym_false] = ACTIONS(1589), + [sym_null] = ACTIONS(1589), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1587), + [anon_sym_ATimport] = ACTIONS(1587), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1589), + [anon_sym_ATcompatibility_alias] = ACTIONS(1587), + [anon_sym_ATprotocol] = ACTIONS(1587), + [anon_sym_ATclass] = ACTIONS(1587), + [anon_sym_ATinterface] = ACTIONS(1587), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1589), + [sym_method_attribute_specifier] = ACTIONS(1589), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1589), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1589), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1589), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1589), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1589), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1589), + [anon_sym_NS_AVAILABLE] = ACTIONS(1589), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1589), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1589), + [anon_sym_API_AVAILABLE] = ACTIONS(1589), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1589), + [anon_sym_API_DEPRECATED] = ACTIONS(1589), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1589), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1589), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1589), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1589), + [anon_sym___deprecated_msg] = ACTIONS(1589), + [anon_sym___deprecated_enum_msg] = ACTIONS(1589), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1589), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1589), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1589), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1589), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1589), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1589), + [anon_sym_ATimplementation] = ACTIONS(1587), + [anon_sym_NS_ENUM] = ACTIONS(1589), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1589), + [anon_sym_NS_OPTIONS] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(1589), + [anon_sym___typeof] = ACTIONS(1589), + [anon_sym___typeof__] = ACTIONS(1589), + [sym_self] = ACTIONS(1589), + [sym_super] = ACTIONS(1589), + [sym_nil] = ACTIONS(1589), + [sym_id] = ACTIONS(1589), + [sym_instancetype] = ACTIONS(1589), + [sym_Class] = ACTIONS(1589), + [sym_SEL] = ACTIONS(1589), + [sym_IMP] = ACTIONS(1589), + [sym_BOOL] = ACTIONS(1589), + [sym_auto] = ACTIONS(1589), + [anon_sym_ATautoreleasepool] = ACTIONS(1587), + [anon_sym_ATsynchronized] = ACTIONS(1587), + [anon_sym_ATtry] = ACTIONS(1587), + [anon_sym_ATcatch] = ACTIONS(1587), + [anon_sym_ATfinally] = ACTIONS(1587), + [anon_sym_ATthrow] = ACTIONS(1587), + [anon_sym_ATselector] = ACTIONS(1587), + [anon_sym_ATencode] = ACTIONS(1587), + [anon_sym_AT] = ACTIONS(1589), + [sym_YES] = ACTIONS(1589), + [sym_NO] = ACTIONS(1589), + [anon_sym___builtin_available] = ACTIONS(1589), + [anon_sym_ATavailable] = ACTIONS(1587), + [anon_sym_va_arg] = ACTIONS(1589), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [388] = { + [sym_identifier] = ACTIONS(1585), + [aux_sym_preproc_include_token1] = ACTIONS(1583), + [aux_sym_preproc_def_token1] = ACTIONS(1583), + [aux_sym_preproc_if_token1] = ACTIONS(1585), + [aux_sym_preproc_if_token2] = ACTIONS(1585), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1585), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1585), + [anon_sym_LPAREN2] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_CARET] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1583), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_typedef] = ACTIONS(1585), + [anon_sym_extern] = ACTIONS(1585), + [anon_sym___attribute] = ACTIONS(1585), + [anon_sym___attribute__] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(1585), + [anon_sym___cdecl] = ACTIONS(1585), + [anon_sym___clrcall] = ACTIONS(1585), + [anon_sym___stdcall] = ACTIONS(1585), + [anon_sym___fastcall] = ACTIONS(1585), + [anon_sym___thiscall] = ACTIONS(1585), + [anon_sym___vectorcall] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_LBRACK] = ACTIONS(1583), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_auto] = ACTIONS(1585), + [anon_sym_register] = ACTIONS(1585), + [anon_sym_inline] = ACTIONS(1585), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_volatile] = ACTIONS(1585), + [anon_sym_restrict] = ACTIONS(1585), + [anon_sym__Atomic] = ACTIONS(1585), + [anon_sym_in] = ACTIONS(1585), + [anon_sym_out] = ACTIONS(1585), + [anon_sym_inout] = ACTIONS(1585), + [anon_sym_bycopy] = ACTIONS(1585), + [anon_sym_byref] = ACTIONS(1585), + [anon_sym_oneway] = ACTIONS(1585), + [anon_sym__Nullable] = ACTIONS(1585), + [anon_sym__Nonnull] = ACTIONS(1585), + [anon_sym__Nullable_result] = ACTIONS(1585), + [anon_sym__Null_unspecified] = ACTIONS(1585), + [anon_sym___autoreleasing] = ACTIONS(1585), + [anon_sym___nullable] = ACTIONS(1585), + [anon_sym___nonnull] = ACTIONS(1585), + [anon_sym___strong] = ACTIONS(1585), + [anon_sym___weak] = ACTIONS(1585), + [anon_sym___bridge] = ACTIONS(1585), + [anon_sym___bridge_transfer] = ACTIONS(1585), + [anon_sym___bridge_retained] = ACTIONS(1585), + [anon_sym___unsafe_unretained] = ACTIONS(1585), + [anon_sym___block] = ACTIONS(1585), + [anon_sym___kindof] = ACTIONS(1585), + [anon_sym___unused] = ACTIONS(1585), + [anon_sym__Complex] = ACTIONS(1585), + [anon_sym___complex] = ACTIONS(1585), + [anon_sym_IBOutlet] = ACTIONS(1585), + [anon_sym_IBInspectable] = ACTIONS(1585), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1585), + [anon_sym_signed] = ACTIONS(1585), + [anon_sym_unsigned] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [sym_primitive_type] = ACTIONS(1585), + [anon_sym_enum] = ACTIONS(1585), + [anon_sym_struct] = ACTIONS(1585), + [anon_sym_union] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_else] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_case] = ACTIONS(1585), + [anon_sym_default] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_goto] = ACTIONS(1585), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_sizeof] = ACTIONS(1585), + [sym_number_literal] = ACTIONS(1583), + [anon_sym_L_SQUOTE] = ACTIONS(1583), + [anon_sym_u_SQUOTE] = ACTIONS(1583), + [anon_sym_U_SQUOTE] = ACTIONS(1583), + [anon_sym_u8_SQUOTE] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_L_DQUOTE] = ACTIONS(1583), + [anon_sym_u_DQUOTE] = ACTIONS(1583), + [anon_sym_U_DQUOTE] = ACTIONS(1583), + [anon_sym_u8_DQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [sym_true] = ACTIONS(1585), + [sym_false] = ACTIONS(1585), + [sym_null] = ACTIONS(1585), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1583), + [anon_sym_ATimport] = ACTIONS(1583), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1585), + [anon_sym_ATcompatibility_alias] = ACTIONS(1583), + [anon_sym_ATprotocol] = ACTIONS(1583), + [anon_sym_ATclass] = ACTIONS(1583), + [anon_sym_ATinterface] = ACTIONS(1583), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1585), + [sym_method_attribute_specifier] = ACTIONS(1585), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1585), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1585), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1585), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1585), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1585), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1585), + [anon_sym_NS_AVAILABLE] = ACTIONS(1585), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1585), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1585), + [anon_sym_API_AVAILABLE] = ACTIONS(1585), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1585), + [anon_sym_API_DEPRECATED] = ACTIONS(1585), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1585), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1585), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1585), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1585), + [anon_sym___deprecated_msg] = ACTIONS(1585), + [anon_sym___deprecated_enum_msg] = ACTIONS(1585), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1585), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1585), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1585), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1585), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1585), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1585), + [anon_sym_ATimplementation] = ACTIONS(1583), + [anon_sym_NS_ENUM] = ACTIONS(1585), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1585), + [anon_sym_NS_OPTIONS] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1585), + [anon_sym___typeof] = ACTIONS(1585), + [anon_sym___typeof__] = ACTIONS(1585), + [sym_self] = ACTIONS(1585), + [sym_super] = ACTIONS(1585), + [sym_nil] = ACTIONS(1585), + [sym_id] = ACTIONS(1585), + [sym_instancetype] = ACTIONS(1585), + [sym_Class] = ACTIONS(1585), + [sym_SEL] = ACTIONS(1585), + [sym_IMP] = ACTIONS(1585), + [sym_BOOL] = ACTIONS(1585), + [sym_auto] = ACTIONS(1585), + [anon_sym_ATautoreleasepool] = ACTIONS(1583), + [anon_sym_ATsynchronized] = ACTIONS(1583), + [anon_sym_ATtry] = ACTIONS(1583), + [anon_sym_ATcatch] = ACTIONS(1583), + [anon_sym_ATfinally] = ACTIONS(1583), + [anon_sym_ATthrow] = ACTIONS(1583), + [anon_sym_ATselector] = ACTIONS(1583), + [anon_sym_ATencode] = ACTIONS(1583), + [anon_sym_AT] = ACTIONS(1585), + [sym_YES] = ACTIONS(1585), + [sym_NO] = ACTIONS(1585), + [anon_sym___builtin_available] = ACTIONS(1585), + [anon_sym_ATavailable] = ACTIONS(1583), + [anon_sym_va_arg] = ACTIONS(1585), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [389] = { + [sym_identifier] = ACTIONS(1435), + [aux_sym_preproc_include_token1] = ACTIONS(1433), + [aux_sym_preproc_def_token1] = ACTIONS(1433), + [aux_sym_preproc_if_token1] = ACTIONS(1435), + [aux_sym_preproc_if_token2] = ACTIONS(1435), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1435), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1435), + [anon_sym_LPAREN2] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_typedef] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym___attribute] = ACTIONS(1435), + [anon_sym___attribute__] = ACTIONS(1435), + [anon_sym___declspec] = ACTIONS(1435), + [anon_sym___cdecl] = ACTIONS(1435), + [anon_sym___clrcall] = ACTIONS(1435), + [anon_sym___stdcall] = ACTIONS(1435), + [anon_sym___fastcall] = ACTIONS(1435), + [anon_sym___thiscall] = ACTIONS(1435), + [anon_sym___vectorcall] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1435), + [anon_sym_auto] = ACTIONS(1435), + [anon_sym_register] = ACTIONS(1435), + [anon_sym_inline] = ACTIONS(1435), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_volatile] = ACTIONS(1435), + [anon_sym_restrict] = ACTIONS(1435), + [anon_sym__Atomic] = ACTIONS(1435), + [anon_sym_in] = ACTIONS(1435), + [anon_sym_out] = ACTIONS(1435), + [anon_sym_inout] = ACTIONS(1435), + [anon_sym_bycopy] = ACTIONS(1435), + [anon_sym_byref] = ACTIONS(1435), + [anon_sym_oneway] = ACTIONS(1435), + [anon_sym__Nullable] = ACTIONS(1435), + [anon_sym__Nonnull] = ACTIONS(1435), + [anon_sym__Nullable_result] = ACTIONS(1435), + [anon_sym__Null_unspecified] = ACTIONS(1435), + [anon_sym___autoreleasing] = ACTIONS(1435), + [anon_sym___nullable] = ACTIONS(1435), + [anon_sym___nonnull] = ACTIONS(1435), + [anon_sym___strong] = ACTIONS(1435), + [anon_sym___weak] = ACTIONS(1435), + [anon_sym___bridge] = ACTIONS(1435), + [anon_sym___bridge_transfer] = ACTIONS(1435), + [anon_sym___bridge_retained] = ACTIONS(1435), + [anon_sym___unsafe_unretained] = ACTIONS(1435), + [anon_sym___block] = ACTIONS(1435), + [anon_sym___kindof] = ACTIONS(1435), + [anon_sym___unused] = ACTIONS(1435), + [anon_sym__Complex] = ACTIONS(1435), + [anon_sym___complex] = ACTIONS(1435), + [anon_sym_IBOutlet] = ACTIONS(1435), + [anon_sym_IBInspectable] = ACTIONS(1435), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1435), + [anon_sym_signed] = ACTIONS(1435), + [anon_sym_unsigned] = ACTIONS(1435), + [anon_sym_long] = ACTIONS(1435), + [anon_sym_short] = ACTIONS(1435), + [sym_primitive_type] = ACTIONS(1435), + [anon_sym_enum] = ACTIONS(1435), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_else] = ACTIONS(1435), + [anon_sym_switch] = ACTIONS(1435), + [anon_sym_case] = ACTIONS(1435), + [anon_sym_default] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_do] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_goto] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1433), + [anon_sym_sizeof] = ACTIONS(1435), + [sym_number_literal] = ACTIONS(1433), + [anon_sym_L_SQUOTE] = ACTIONS(1433), + [anon_sym_u_SQUOTE] = ACTIONS(1433), + [anon_sym_U_SQUOTE] = ACTIONS(1433), + [anon_sym_u8_SQUOTE] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_L_DQUOTE] = ACTIONS(1433), + [anon_sym_u_DQUOTE] = ACTIONS(1433), + [anon_sym_U_DQUOTE] = ACTIONS(1433), + [anon_sym_u8_DQUOTE] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [sym_true] = ACTIONS(1435), + [sym_false] = ACTIONS(1435), + [sym_null] = ACTIONS(1435), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1433), + [anon_sym_ATimport] = ACTIONS(1433), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1435), + [anon_sym_ATcompatibility_alias] = ACTIONS(1433), + [anon_sym_ATprotocol] = ACTIONS(1433), + [anon_sym_ATclass] = ACTIONS(1433), + [anon_sym_ATinterface] = ACTIONS(1433), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1435), + [sym_method_attribute_specifier] = ACTIONS(1435), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1435), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1435), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1435), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1435), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1435), + [anon_sym_NS_AVAILABLE] = ACTIONS(1435), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1435), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_API_AVAILABLE] = ACTIONS(1435), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_API_DEPRECATED] = ACTIONS(1435), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1435), + [anon_sym___deprecated_msg] = ACTIONS(1435), + [anon_sym___deprecated_enum_msg] = ACTIONS(1435), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1435), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1435), + [anon_sym_ATimplementation] = ACTIONS(1433), + [anon_sym_NS_ENUM] = ACTIONS(1435), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1435), + [anon_sym_NS_OPTIONS] = ACTIONS(1435), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___typeof] = ACTIONS(1435), + [anon_sym___typeof__] = ACTIONS(1435), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_nil] = ACTIONS(1435), + [sym_id] = ACTIONS(1435), + [sym_instancetype] = ACTIONS(1435), + [sym_Class] = ACTIONS(1435), + [sym_SEL] = ACTIONS(1435), + [sym_IMP] = ACTIONS(1435), + [sym_BOOL] = ACTIONS(1435), + [sym_auto] = ACTIONS(1435), + [anon_sym_ATautoreleasepool] = ACTIONS(1433), + [anon_sym_ATsynchronized] = ACTIONS(1433), + [anon_sym_ATtry] = ACTIONS(1433), + [anon_sym_ATcatch] = ACTIONS(1433), + [anon_sym_ATfinally] = ACTIONS(1433), + [anon_sym_ATthrow] = ACTIONS(1433), + [anon_sym_ATselector] = ACTIONS(1433), + [anon_sym_ATencode] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(1435), + [sym_YES] = ACTIONS(1435), + [sym_NO] = ACTIONS(1435), + [anon_sym___builtin_available] = ACTIONS(1435), + [anon_sym_ATavailable] = ACTIONS(1433), + [anon_sym_va_arg] = ACTIONS(1435), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [390] = { + [sym_identifier] = ACTIONS(1435), + [aux_sym_preproc_include_token1] = ACTIONS(1433), + [aux_sym_preproc_def_token1] = ACTIONS(1433), + [aux_sym_preproc_if_token1] = ACTIONS(1435), + [aux_sym_preproc_if_token2] = ACTIONS(1435), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1435), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1435), + [anon_sym_LPAREN2] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_TILDE] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_typedef] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym___attribute] = ACTIONS(1435), + [anon_sym___attribute__] = ACTIONS(1435), + [anon_sym___declspec] = ACTIONS(1435), + [anon_sym___cdecl] = ACTIONS(1435), + [anon_sym___clrcall] = ACTIONS(1435), + [anon_sym___stdcall] = ACTIONS(1435), + [anon_sym___fastcall] = ACTIONS(1435), + [anon_sym___thiscall] = ACTIONS(1435), + [anon_sym___vectorcall] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1435), + [anon_sym_auto] = ACTIONS(1435), + [anon_sym_register] = ACTIONS(1435), + [anon_sym_inline] = ACTIONS(1435), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_volatile] = ACTIONS(1435), + [anon_sym_restrict] = ACTIONS(1435), + [anon_sym__Atomic] = ACTIONS(1435), + [anon_sym_in] = ACTIONS(1435), + [anon_sym_out] = ACTIONS(1435), + [anon_sym_inout] = ACTIONS(1435), + [anon_sym_bycopy] = ACTIONS(1435), + [anon_sym_byref] = ACTIONS(1435), + [anon_sym_oneway] = ACTIONS(1435), + [anon_sym__Nullable] = ACTIONS(1435), + [anon_sym__Nonnull] = ACTIONS(1435), + [anon_sym__Nullable_result] = ACTIONS(1435), + [anon_sym__Null_unspecified] = ACTIONS(1435), + [anon_sym___autoreleasing] = ACTIONS(1435), + [anon_sym___nullable] = ACTIONS(1435), + [anon_sym___nonnull] = ACTIONS(1435), + [anon_sym___strong] = ACTIONS(1435), + [anon_sym___weak] = ACTIONS(1435), + [anon_sym___bridge] = ACTIONS(1435), + [anon_sym___bridge_transfer] = ACTIONS(1435), + [anon_sym___bridge_retained] = ACTIONS(1435), + [anon_sym___unsafe_unretained] = ACTIONS(1435), + [anon_sym___block] = ACTIONS(1435), + [anon_sym___kindof] = ACTIONS(1435), + [anon_sym___unused] = ACTIONS(1435), + [anon_sym__Complex] = ACTIONS(1435), + [anon_sym___complex] = ACTIONS(1435), + [anon_sym_IBOutlet] = ACTIONS(1435), + [anon_sym_IBInspectable] = ACTIONS(1435), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1435), + [anon_sym_signed] = ACTIONS(1435), + [anon_sym_unsigned] = ACTIONS(1435), + [anon_sym_long] = ACTIONS(1435), + [anon_sym_short] = ACTIONS(1435), + [sym_primitive_type] = ACTIONS(1435), + [anon_sym_enum] = ACTIONS(1435), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_else] = ACTIONS(1435), + [anon_sym_switch] = ACTIONS(1435), + [anon_sym_case] = ACTIONS(1435), + [anon_sym_default] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_do] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_goto] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1433), + [anon_sym_sizeof] = ACTIONS(1435), + [sym_number_literal] = ACTIONS(1433), + [anon_sym_L_SQUOTE] = ACTIONS(1433), + [anon_sym_u_SQUOTE] = ACTIONS(1433), + [anon_sym_U_SQUOTE] = ACTIONS(1433), + [anon_sym_u8_SQUOTE] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_L_DQUOTE] = ACTIONS(1433), + [anon_sym_u_DQUOTE] = ACTIONS(1433), + [anon_sym_U_DQUOTE] = ACTIONS(1433), + [anon_sym_u8_DQUOTE] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(1433), + [sym_true] = ACTIONS(1435), + [sym_false] = ACTIONS(1435), + [sym_null] = ACTIONS(1435), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1433), + [anon_sym_ATimport] = ACTIONS(1433), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1435), + [anon_sym_ATcompatibility_alias] = ACTIONS(1433), + [anon_sym_ATprotocol] = ACTIONS(1433), + [anon_sym_ATclass] = ACTIONS(1433), + [anon_sym_ATinterface] = ACTIONS(1433), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1435), + [sym_method_attribute_specifier] = ACTIONS(1435), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1435), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1435), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1435), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1435), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1435), + [anon_sym_NS_AVAILABLE] = ACTIONS(1435), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1435), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_API_AVAILABLE] = ACTIONS(1435), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_API_DEPRECATED] = ACTIONS(1435), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1435), + [anon_sym___deprecated_msg] = ACTIONS(1435), + [anon_sym___deprecated_enum_msg] = ACTIONS(1435), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1435), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1435), + [anon_sym_ATimplementation] = ACTIONS(1433), + [anon_sym_NS_ENUM] = ACTIONS(1435), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1435), + [anon_sym_NS_OPTIONS] = ACTIONS(1435), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___typeof] = ACTIONS(1435), + [anon_sym___typeof__] = ACTIONS(1435), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_nil] = ACTIONS(1435), + [sym_id] = ACTIONS(1435), + [sym_instancetype] = ACTIONS(1435), + [sym_Class] = ACTIONS(1435), + [sym_SEL] = ACTIONS(1435), + [sym_IMP] = ACTIONS(1435), + [sym_BOOL] = ACTIONS(1435), + [sym_auto] = ACTIONS(1435), + [anon_sym_ATautoreleasepool] = ACTIONS(1433), + [anon_sym_ATsynchronized] = ACTIONS(1433), + [anon_sym_ATtry] = ACTIONS(1433), + [anon_sym_ATcatch] = ACTIONS(1433), + [anon_sym_ATfinally] = ACTIONS(1433), + [anon_sym_ATthrow] = ACTIONS(1433), + [anon_sym_ATselector] = ACTIONS(1433), + [anon_sym_ATencode] = ACTIONS(1433), + [anon_sym_AT] = ACTIONS(1435), + [sym_YES] = ACTIONS(1435), + [sym_NO] = ACTIONS(1435), + [anon_sym___builtin_available] = ACTIONS(1435), + [anon_sym_ATavailable] = ACTIONS(1433), + [anon_sym_va_arg] = ACTIONS(1435), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [391] = { + [sym_identifier] = ACTIONS(1525), + [aux_sym_preproc_include_token1] = ACTIONS(1523), + [aux_sym_preproc_def_token1] = ACTIONS(1523), + [aux_sym_preproc_if_token1] = ACTIONS(1525), + [aux_sym_preproc_if_token2] = ACTIONS(1525), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1525), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1525), + [anon_sym_LPAREN2] = ACTIONS(1523), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_CARET] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1523), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_typedef] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(1525), + [anon_sym___attribute] = ACTIONS(1525), + [anon_sym___attribute__] = ACTIONS(1525), + [anon_sym___declspec] = ACTIONS(1525), + [anon_sym___cdecl] = ACTIONS(1525), + [anon_sym___clrcall] = ACTIONS(1525), + [anon_sym___stdcall] = ACTIONS(1525), + [anon_sym___fastcall] = ACTIONS(1525), + [anon_sym___thiscall] = ACTIONS(1525), + [anon_sym___vectorcall] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_LBRACK] = ACTIONS(1523), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_auto] = ACTIONS(1525), + [anon_sym_register] = ACTIONS(1525), + [anon_sym_inline] = ACTIONS(1525), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_volatile] = ACTIONS(1525), + [anon_sym_restrict] = ACTIONS(1525), + [anon_sym__Atomic] = ACTIONS(1525), + [anon_sym_in] = ACTIONS(1525), + [anon_sym_out] = ACTIONS(1525), + [anon_sym_inout] = ACTIONS(1525), + [anon_sym_bycopy] = ACTIONS(1525), + [anon_sym_byref] = ACTIONS(1525), + [anon_sym_oneway] = ACTIONS(1525), + [anon_sym__Nullable] = ACTIONS(1525), + [anon_sym__Nonnull] = ACTIONS(1525), + [anon_sym__Nullable_result] = ACTIONS(1525), + [anon_sym__Null_unspecified] = ACTIONS(1525), + [anon_sym___autoreleasing] = ACTIONS(1525), + [anon_sym___nullable] = ACTIONS(1525), + [anon_sym___nonnull] = ACTIONS(1525), + [anon_sym___strong] = ACTIONS(1525), + [anon_sym___weak] = ACTIONS(1525), + [anon_sym___bridge] = ACTIONS(1525), + [anon_sym___bridge_transfer] = ACTIONS(1525), + [anon_sym___bridge_retained] = ACTIONS(1525), + [anon_sym___unsafe_unretained] = ACTIONS(1525), + [anon_sym___block] = ACTIONS(1525), + [anon_sym___kindof] = ACTIONS(1525), + [anon_sym___unused] = ACTIONS(1525), + [anon_sym__Complex] = ACTIONS(1525), + [anon_sym___complex] = ACTIONS(1525), + [anon_sym_IBOutlet] = ACTIONS(1525), + [anon_sym_IBInspectable] = ACTIONS(1525), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1525), + [anon_sym_signed] = ACTIONS(1525), + [anon_sym_unsigned] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [sym_primitive_type] = ACTIONS(1525), + [anon_sym_enum] = ACTIONS(1525), + [anon_sym_struct] = ACTIONS(1525), + [anon_sym_union] = ACTIONS(1525), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_else] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_case] = ACTIONS(1525), + [anon_sym_default] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_goto] = ACTIONS(1525), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_sizeof] = ACTIONS(1525), + [sym_number_literal] = ACTIONS(1523), + [anon_sym_L_SQUOTE] = ACTIONS(1523), + [anon_sym_u_SQUOTE] = ACTIONS(1523), + [anon_sym_U_SQUOTE] = ACTIONS(1523), + [anon_sym_u8_SQUOTE] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_L_DQUOTE] = ACTIONS(1523), + [anon_sym_u_DQUOTE] = ACTIONS(1523), + [anon_sym_U_DQUOTE] = ACTIONS(1523), + [anon_sym_u8_DQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1523), + [sym_true] = ACTIONS(1525), + [sym_false] = ACTIONS(1525), + [sym_null] = ACTIONS(1525), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1523), + [anon_sym_ATimport] = ACTIONS(1523), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1525), + [anon_sym_ATcompatibility_alias] = ACTIONS(1523), + [anon_sym_ATprotocol] = ACTIONS(1523), + [anon_sym_ATclass] = ACTIONS(1523), + [anon_sym_ATinterface] = ACTIONS(1523), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1525), + [sym_method_attribute_specifier] = ACTIONS(1525), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1525), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1525), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1525), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1525), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1525), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1525), + [anon_sym_NS_AVAILABLE] = ACTIONS(1525), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1525), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1525), + [anon_sym_API_AVAILABLE] = ACTIONS(1525), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1525), + [anon_sym_API_DEPRECATED] = ACTIONS(1525), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1525), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1525), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1525), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1525), + [anon_sym___deprecated_msg] = ACTIONS(1525), + [anon_sym___deprecated_enum_msg] = ACTIONS(1525), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1525), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1525), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1525), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1525), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1525), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1525), + [anon_sym_ATimplementation] = ACTIONS(1523), + [anon_sym_NS_ENUM] = ACTIONS(1525), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1525), + [anon_sym_NS_OPTIONS] = ACTIONS(1525), + [anon_sym_typeof] = ACTIONS(1525), + [anon_sym___typeof] = ACTIONS(1525), + [anon_sym___typeof__] = ACTIONS(1525), + [sym_self] = ACTIONS(1525), + [sym_super] = ACTIONS(1525), + [sym_nil] = ACTIONS(1525), + [sym_id] = ACTIONS(1525), + [sym_instancetype] = ACTIONS(1525), + [sym_Class] = ACTIONS(1525), + [sym_SEL] = ACTIONS(1525), + [sym_IMP] = ACTIONS(1525), + [sym_BOOL] = ACTIONS(1525), + [sym_auto] = ACTIONS(1525), + [anon_sym_ATautoreleasepool] = ACTIONS(1523), + [anon_sym_ATsynchronized] = ACTIONS(1523), + [anon_sym_ATtry] = ACTIONS(1523), + [anon_sym_ATcatch] = ACTIONS(1523), + [anon_sym_ATfinally] = ACTIONS(1523), + [anon_sym_ATthrow] = ACTIONS(1523), + [anon_sym_ATselector] = ACTIONS(1523), + [anon_sym_ATencode] = ACTIONS(1523), + [anon_sym_AT] = ACTIONS(1525), + [sym_YES] = ACTIONS(1525), + [sym_NO] = ACTIONS(1525), + [anon_sym___builtin_available] = ACTIONS(1525), + [anon_sym_ATavailable] = ACTIONS(1523), + [anon_sym_va_arg] = ACTIONS(1525), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [392] = { + [sym_identifier] = ACTIONS(1545), + [aux_sym_preproc_include_token1] = ACTIONS(1543), + [aux_sym_preproc_def_token1] = ACTIONS(1543), + [aux_sym_preproc_if_token1] = ACTIONS(1545), + [aux_sym_preproc_if_token2] = ACTIONS(1545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1545), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1545), + [anon_sym_LPAREN2] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_CARET] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_typedef] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1545), + [anon_sym___attribute] = ACTIONS(1545), + [anon_sym___attribute__] = ACTIONS(1545), + [anon_sym___declspec] = ACTIONS(1545), + [anon_sym___cdecl] = ACTIONS(1545), + [anon_sym___clrcall] = ACTIONS(1545), + [anon_sym___stdcall] = ACTIONS(1545), + [anon_sym___fastcall] = ACTIONS(1545), + [anon_sym___thiscall] = ACTIONS(1545), + [anon_sym___vectorcall] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_auto] = ACTIONS(1545), + [anon_sym_register] = ACTIONS(1545), + [anon_sym_inline] = ACTIONS(1545), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_volatile] = ACTIONS(1545), + [anon_sym_restrict] = ACTIONS(1545), + [anon_sym__Atomic] = ACTIONS(1545), + [anon_sym_in] = ACTIONS(1545), + [anon_sym_out] = ACTIONS(1545), + [anon_sym_inout] = ACTIONS(1545), + [anon_sym_bycopy] = ACTIONS(1545), + [anon_sym_byref] = ACTIONS(1545), + [anon_sym_oneway] = ACTIONS(1545), + [anon_sym__Nullable] = ACTIONS(1545), + [anon_sym__Nonnull] = ACTIONS(1545), + [anon_sym__Nullable_result] = ACTIONS(1545), + [anon_sym__Null_unspecified] = ACTIONS(1545), + [anon_sym___autoreleasing] = ACTIONS(1545), + [anon_sym___nullable] = ACTIONS(1545), + [anon_sym___nonnull] = ACTIONS(1545), + [anon_sym___strong] = ACTIONS(1545), + [anon_sym___weak] = ACTIONS(1545), + [anon_sym___bridge] = ACTIONS(1545), + [anon_sym___bridge_transfer] = ACTIONS(1545), + [anon_sym___bridge_retained] = ACTIONS(1545), + [anon_sym___unsafe_unretained] = ACTIONS(1545), + [anon_sym___block] = ACTIONS(1545), + [anon_sym___kindof] = ACTIONS(1545), + [anon_sym___unused] = ACTIONS(1545), + [anon_sym__Complex] = ACTIONS(1545), + [anon_sym___complex] = ACTIONS(1545), + [anon_sym_IBOutlet] = ACTIONS(1545), + [anon_sym_IBInspectable] = ACTIONS(1545), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1545), + [anon_sym_signed] = ACTIONS(1545), + [anon_sym_unsigned] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [sym_primitive_type] = ACTIONS(1545), + [anon_sym_enum] = ACTIONS(1545), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_else] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_case] = ACTIONS(1545), + [anon_sym_default] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_goto] = ACTIONS(1545), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_sizeof] = ACTIONS(1545), + [sym_number_literal] = ACTIONS(1543), + [anon_sym_L_SQUOTE] = ACTIONS(1543), + [anon_sym_u_SQUOTE] = ACTIONS(1543), + [anon_sym_U_SQUOTE] = ACTIONS(1543), + [anon_sym_u8_SQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_L_DQUOTE] = ACTIONS(1543), + [anon_sym_u_DQUOTE] = ACTIONS(1543), + [anon_sym_U_DQUOTE] = ACTIONS(1543), + [anon_sym_u8_DQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [sym_true] = ACTIONS(1545), + [sym_false] = ACTIONS(1545), + [sym_null] = ACTIONS(1545), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1543), + [anon_sym_ATimport] = ACTIONS(1543), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1545), + [anon_sym_ATcompatibility_alias] = ACTIONS(1543), + [anon_sym_ATprotocol] = ACTIONS(1543), + [anon_sym_ATclass] = ACTIONS(1543), + [anon_sym_ATinterface] = ACTIONS(1543), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1545), + [sym_method_attribute_specifier] = ACTIONS(1545), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1545), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1545), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1545), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1545), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1545), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1545), + [anon_sym_NS_AVAILABLE] = ACTIONS(1545), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1545), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1545), + [anon_sym_API_AVAILABLE] = ACTIONS(1545), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1545), + [anon_sym_API_DEPRECATED] = ACTIONS(1545), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1545), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1545), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1545), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1545), + [anon_sym___deprecated_msg] = ACTIONS(1545), + [anon_sym___deprecated_enum_msg] = ACTIONS(1545), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1545), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1545), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1545), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1545), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1545), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1545), + [anon_sym_ATimplementation] = ACTIONS(1543), + [anon_sym_NS_ENUM] = ACTIONS(1545), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1545), + [anon_sym_NS_OPTIONS] = ACTIONS(1545), + [anon_sym_typeof] = ACTIONS(1545), + [anon_sym___typeof] = ACTIONS(1545), + [anon_sym___typeof__] = ACTIONS(1545), + [sym_self] = ACTIONS(1545), + [sym_super] = ACTIONS(1545), + [sym_nil] = ACTIONS(1545), + [sym_id] = ACTIONS(1545), + [sym_instancetype] = ACTIONS(1545), + [sym_Class] = ACTIONS(1545), + [sym_SEL] = ACTIONS(1545), + [sym_IMP] = ACTIONS(1545), + [sym_BOOL] = ACTIONS(1545), + [sym_auto] = ACTIONS(1545), + [anon_sym_ATautoreleasepool] = ACTIONS(1543), + [anon_sym_ATsynchronized] = ACTIONS(1543), + [anon_sym_ATtry] = ACTIONS(1543), + [anon_sym_ATcatch] = ACTIONS(1543), + [anon_sym_ATfinally] = ACTIONS(1543), + [anon_sym_ATthrow] = ACTIONS(1543), + [anon_sym_ATselector] = ACTIONS(1543), + [anon_sym_ATencode] = ACTIONS(1543), + [anon_sym_AT] = ACTIONS(1545), + [sym_YES] = ACTIONS(1545), + [sym_NO] = ACTIONS(1545), + [anon_sym___builtin_available] = ACTIONS(1545), + [anon_sym_ATavailable] = ACTIONS(1543), + [anon_sym_va_arg] = ACTIONS(1545), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [393] = { + [sym_identifier] = ACTIONS(1417), + [aux_sym_preproc_include_token1] = ACTIONS(1415), + [aux_sym_preproc_def_token1] = ACTIONS(1415), + [aux_sym_preproc_if_token1] = ACTIONS(1417), + [aux_sym_preproc_if_token2] = ACTIONS(1417), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1417), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1417), + [anon_sym_LPAREN2] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_typedef] = ACTIONS(1417), + [anon_sym_extern] = ACTIONS(1417), + [anon_sym___attribute] = ACTIONS(1417), + [anon_sym___attribute__] = ACTIONS(1417), + [anon_sym___declspec] = ACTIONS(1417), + [anon_sym___cdecl] = ACTIONS(1417), + [anon_sym___clrcall] = ACTIONS(1417), + [anon_sym___stdcall] = ACTIONS(1417), + [anon_sym___fastcall] = ACTIONS(1417), + [anon_sym___thiscall] = ACTIONS(1417), + [anon_sym___vectorcall] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_auto] = ACTIONS(1417), + [anon_sym_register] = ACTIONS(1417), + [anon_sym_inline] = ACTIONS(1417), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_volatile] = ACTIONS(1417), + [anon_sym_restrict] = ACTIONS(1417), + [anon_sym__Atomic] = ACTIONS(1417), + [anon_sym_in] = ACTIONS(1417), + [anon_sym_out] = ACTIONS(1417), + [anon_sym_inout] = ACTIONS(1417), + [anon_sym_bycopy] = ACTIONS(1417), + [anon_sym_byref] = ACTIONS(1417), + [anon_sym_oneway] = ACTIONS(1417), + [anon_sym__Nullable] = ACTIONS(1417), + [anon_sym__Nonnull] = ACTIONS(1417), + [anon_sym__Nullable_result] = ACTIONS(1417), + [anon_sym__Null_unspecified] = ACTIONS(1417), + [anon_sym___autoreleasing] = ACTIONS(1417), + [anon_sym___nullable] = ACTIONS(1417), + [anon_sym___nonnull] = ACTIONS(1417), + [anon_sym___strong] = ACTIONS(1417), + [anon_sym___weak] = ACTIONS(1417), + [anon_sym___bridge] = ACTIONS(1417), + [anon_sym___bridge_transfer] = ACTIONS(1417), + [anon_sym___bridge_retained] = ACTIONS(1417), + [anon_sym___unsafe_unretained] = ACTIONS(1417), + [anon_sym___block] = ACTIONS(1417), + [anon_sym___kindof] = ACTIONS(1417), + [anon_sym___unused] = ACTIONS(1417), + [anon_sym__Complex] = ACTIONS(1417), + [anon_sym___complex] = ACTIONS(1417), + [anon_sym_IBOutlet] = ACTIONS(1417), + [anon_sym_IBInspectable] = ACTIONS(1417), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1417), + [anon_sym_signed] = ACTIONS(1417), + [anon_sym_unsigned] = ACTIONS(1417), + [anon_sym_long] = ACTIONS(1417), + [anon_sym_short] = ACTIONS(1417), + [sym_primitive_type] = ACTIONS(1417), + [anon_sym_enum] = ACTIONS(1417), + [anon_sym_struct] = ACTIONS(1417), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_else] = ACTIONS(1417), + [anon_sym_switch] = ACTIONS(1417), + [anon_sym_case] = ACTIONS(1417), + [anon_sym_default] = ACTIONS(1417), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_do] = ACTIONS(1417), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_goto] = ACTIONS(1417), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_sizeof] = ACTIONS(1417), + [sym_number_literal] = ACTIONS(1415), + [anon_sym_L_SQUOTE] = ACTIONS(1415), + [anon_sym_u_SQUOTE] = ACTIONS(1415), + [anon_sym_U_SQUOTE] = ACTIONS(1415), + [anon_sym_u8_SQUOTE] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_L_DQUOTE] = ACTIONS(1415), + [anon_sym_u_DQUOTE] = ACTIONS(1415), + [anon_sym_U_DQUOTE] = ACTIONS(1415), + [anon_sym_u8_DQUOTE] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1415), + [sym_true] = ACTIONS(1417), + [sym_false] = ACTIONS(1417), + [sym_null] = ACTIONS(1417), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1415), + [anon_sym_ATimport] = ACTIONS(1415), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1417), + [anon_sym_ATcompatibility_alias] = ACTIONS(1415), + [anon_sym_ATprotocol] = ACTIONS(1415), + [anon_sym_ATclass] = ACTIONS(1415), + [anon_sym_ATinterface] = ACTIONS(1415), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1417), + [sym_method_attribute_specifier] = ACTIONS(1417), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1417), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1417), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1417), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1417), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1417), + [anon_sym_NS_AVAILABLE] = ACTIONS(1417), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1417), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_API_AVAILABLE] = ACTIONS(1417), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_API_DEPRECATED] = ACTIONS(1417), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1417), + [anon_sym___deprecated_msg] = ACTIONS(1417), + [anon_sym___deprecated_enum_msg] = ACTIONS(1417), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1417), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1417), + [anon_sym_ATimplementation] = ACTIONS(1415), + [anon_sym_NS_ENUM] = ACTIONS(1417), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1417), + [anon_sym_NS_OPTIONS] = ACTIONS(1417), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym___typeof] = ACTIONS(1417), + [anon_sym___typeof__] = ACTIONS(1417), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1417), + [sym_nil] = ACTIONS(1417), + [sym_id] = ACTIONS(1417), + [sym_instancetype] = ACTIONS(1417), + [sym_Class] = ACTIONS(1417), + [sym_SEL] = ACTIONS(1417), + [sym_IMP] = ACTIONS(1417), + [sym_BOOL] = ACTIONS(1417), + [sym_auto] = ACTIONS(1417), + [anon_sym_ATautoreleasepool] = ACTIONS(1415), + [anon_sym_ATsynchronized] = ACTIONS(1415), + [anon_sym_ATtry] = ACTIONS(1415), + [anon_sym_ATcatch] = ACTIONS(1415), + [anon_sym_ATfinally] = ACTIONS(1415), + [anon_sym_ATthrow] = ACTIONS(1415), + [anon_sym_ATselector] = ACTIONS(1415), + [anon_sym_ATencode] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [sym_YES] = ACTIONS(1417), + [sym_NO] = ACTIONS(1417), + [anon_sym___builtin_available] = ACTIONS(1417), + [anon_sym_ATavailable] = ACTIONS(1415), + [anon_sym_va_arg] = ACTIONS(1417), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [394] = { + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_include_token1] = ACTIONS(1561), + [aux_sym_preproc_def_token1] = ACTIONS(1561), + [aux_sym_preproc_if_token1] = ACTIONS(1563), + [aux_sym_preproc_if_token2] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1563), + [anon_sym_LPAREN2] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_typedef] = ACTIONS(1563), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym___attribute] = ACTIONS(1563), + [anon_sym___attribute__] = ACTIONS(1563), + [anon_sym___declspec] = ACTIONS(1563), + [anon_sym___cdecl] = ACTIONS(1563), + [anon_sym___clrcall] = ACTIONS(1563), + [anon_sym___stdcall] = ACTIONS(1563), + [anon_sym___fastcall] = ACTIONS(1563), + [anon_sym___thiscall] = ACTIONS(1563), + [anon_sym___vectorcall] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_auto] = ACTIONS(1563), + [anon_sym_register] = ACTIONS(1563), + [anon_sym_inline] = ACTIONS(1563), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_volatile] = ACTIONS(1563), + [anon_sym_restrict] = ACTIONS(1563), + [anon_sym__Atomic] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [anon_sym_out] = ACTIONS(1563), + [anon_sym_inout] = ACTIONS(1563), + [anon_sym_bycopy] = ACTIONS(1563), + [anon_sym_byref] = ACTIONS(1563), + [anon_sym_oneway] = ACTIONS(1563), + [anon_sym__Nullable] = ACTIONS(1563), + [anon_sym__Nonnull] = ACTIONS(1563), + [anon_sym__Nullable_result] = ACTIONS(1563), + [anon_sym__Null_unspecified] = ACTIONS(1563), + [anon_sym___autoreleasing] = ACTIONS(1563), + [anon_sym___nullable] = ACTIONS(1563), + [anon_sym___nonnull] = ACTIONS(1563), + [anon_sym___strong] = ACTIONS(1563), + [anon_sym___weak] = ACTIONS(1563), + [anon_sym___bridge] = ACTIONS(1563), + [anon_sym___bridge_transfer] = ACTIONS(1563), + [anon_sym___bridge_retained] = ACTIONS(1563), + [anon_sym___unsafe_unretained] = ACTIONS(1563), + [anon_sym___block] = ACTIONS(1563), + [anon_sym___kindof] = ACTIONS(1563), + [anon_sym___unused] = ACTIONS(1563), + [anon_sym__Complex] = ACTIONS(1563), + [anon_sym___complex] = ACTIONS(1563), + [anon_sym_IBOutlet] = ACTIONS(1563), + [anon_sym_IBInspectable] = ACTIONS(1563), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1563), + [anon_sym_signed] = ACTIONS(1563), + [anon_sym_unsigned] = ACTIONS(1563), + [anon_sym_long] = ACTIONS(1563), + [anon_sym_short] = ACTIONS(1563), + [sym_primitive_type] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_else] = ACTIONS(1563), + [anon_sym_switch] = ACTIONS(1563), + [anon_sym_case] = ACTIONS(1563), + [anon_sym_default] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_goto] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1561), + [anon_sym_L_SQUOTE] = ACTIONS(1561), + [anon_sym_u_SQUOTE] = ACTIONS(1561), + [anon_sym_U_SQUOTE] = ACTIONS(1561), + [anon_sym_u8_SQUOTE] = ACTIONS(1561), + [anon_sym_SQUOTE] = ACTIONS(1561), + [anon_sym_L_DQUOTE] = ACTIONS(1561), + [anon_sym_u_DQUOTE] = ACTIONS(1561), + [anon_sym_U_DQUOTE] = ACTIONS(1561), + [anon_sym_u8_DQUOTE] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1561), + [sym_true] = ACTIONS(1563), + [sym_false] = ACTIONS(1563), + [sym_null] = ACTIONS(1563), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1561), + [anon_sym_ATimport] = ACTIONS(1561), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1563), + [anon_sym_ATcompatibility_alias] = ACTIONS(1561), + [anon_sym_ATprotocol] = ACTIONS(1561), + [anon_sym_ATclass] = ACTIONS(1561), + [anon_sym_ATinterface] = ACTIONS(1561), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1563), + [sym_method_attribute_specifier] = ACTIONS(1563), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1563), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE] = ACTIONS(1563), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_API_AVAILABLE] = ACTIONS(1563), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_API_DEPRECATED] = ACTIONS(1563), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1563), + [anon_sym___deprecated_msg] = ACTIONS(1563), + [anon_sym___deprecated_enum_msg] = ACTIONS(1563), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1563), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1563), + [anon_sym_ATimplementation] = ACTIONS(1561), + [anon_sym_NS_ENUM] = ACTIONS(1563), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1563), + [anon_sym_NS_OPTIONS] = ACTIONS(1563), + [anon_sym_typeof] = ACTIONS(1563), + [anon_sym___typeof] = ACTIONS(1563), + [anon_sym___typeof__] = ACTIONS(1563), + [sym_self] = ACTIONS(1563), + [sym_super] = ACTIONS(1563), + [sym_nil] = ACTIONS(1563), + [sym_id] = ACTIONS(1563), + [sym_instancetype] = ACTIONS(1563), + [sym_Class] = ACTIONS(1563), + [sym_SEL] = ACTIONS(1563), + [sym_IMP] = ACTIONS(1563), + [sym_BOOL] = ACTIONS(1563), + [sym_auto] = ACTIONS(1563), + [anon_sym_ATautoreleasepool] = ACTIONS(1561), + [anon_sym_ATsynchronized] = ACTIONS(1561), + [anon_sym_ATtry] = ACTIONS(1561), + [anon_sym_ATcatch] = ACTIONS(1561), + [anon_sym_ATfinally] = ACTIONS(1561), + [anon_sym_ATthrow] = ACTIONS(1561), + [anon_sym_ATselector] = ACTIONS(1561), + [anon_sym_ATencode] = ACTIONS(1561), + [anon_sym_AT] = ACTIONS(1563), + [sym_YES] = ACTIONS(1563), + [sym_NO] = ACTIONS(1563), + [anon_sym___builtin_available] = ACTIONS(1563), + [anon_sym_ATavailable] = ACTIONS(1561), + [anon_sym_va_arg] = ACTIONS(1563), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [395] = { + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_include_token1] = ACTIONS(1561), + [aux_sym_preproc_def_token1] = ACTIONS(1561), + [aux_sym_preproc_if_token1] = ACTIONS(1563), + [aux_sym_preproc_if_token2] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1563), + [anon_sym_LPAREN2] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_typedef] = ACTIONS(1563), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym___attribute] = ACTIONS(1563), + [anon_sym___attribute__] = ACTIONS(1563), + [anon_sym___declspec] = ACTIONS(1563), + [anon_sym___cdecl] = ACTIONS(1563), + [anon_sym___clrcall] = ACTIONS(1563), + [anon_sym___stdcall] = ACTIONS(1563), + [anon_sym___fastcall] = ACTIONS(1563), + [anon_sym___thiscall] = ACTIONS(1563), + [anon_sym___vectorcall] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_auto] = ACTIONS(1563), + [anon_sym_register] = ACTIONS(1563), + [anon_sym_inline] = ACTIONS(1563), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_volatile] = ACTIONS(1563), + [anon_sym_restrict] = ACTIONS(1563), + [anon_sym__Atomic] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [anon_sym_out] = ACTIONS(1563), + [anon_sym_inout] = ACTIONS(1563), + [anon_sym_bycopy] = ACTIONS(1563), + [anon_sym_byref] = ACTIONS(1563), + [anon_sym_oneway] = ACTIONS(1563), + [anon_sym__Nullable] = ACTIONS(1563), + [anon_sym__Nonnull] = ACTIONS(1563), + [anon_sym__Nullable_result] = ACTIONS(1563), + [anon_sym__Null_unspecified] = ACTIONS(1563), + [anon_sym___autoreleasing] = ACTIONS(1563), + [anon_sym___nullable] = ACTIONS(1563), + [anon_sym___nonnull] = ACTIONS(1563), + [anon_sym___strong] = ACTIONS(1563), + [anon_sym___weak] = ACTIONS(1563), + [anon_sym___bridge] = ACTIONS(1563), + [anon_sym___bridge_transfer] = ACTIONS(1563), + [anon_sym___bridge_retained] = ACTIONS(1563), + [anon_sym___unsafe_unretained] = ACTIONS(1563), + [anon_sym___block] = ACTIONS(1563), + [anon_sym___kindof] = ACTIONS(1563), + [anon_sym___unused] = ACTIONS(1563), + [anon_sym__Complex] = ACTIONS(1563), + [anon_sym___complex] = ACTIONS(1563), + [anon_sym_IBOutlet] = ACTIONS(1563), + [anon_sym_IBInspectable] = ACTIONS(1563), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1563), + [anon_sym_signed] = ACTIONS(1563), + [anon_sym_unsigned] = ACTIONS(1563), + [anon_sym_long] = ACTIONS(1563), + [anon_sym_short] = ACTIONS(1563), + [sym_primitive_type] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_else] = ACTIONS(1563), + [anon_sym_switch] = ACTIONS(1563), + [anon_sym_case] = ACTIONS(1563), + [anon_sym_default] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_goto] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1561), + [anon_sym_L_SQUOTE] = ACTIONS(1561), + [anon_sym_u_SQUOTE] = ACTIONS(1561), + [anon_sym_U_SQUOTE] = ACTIONS(1561), + [anon_sym_u8_SQUOTE] = ACTIONS(1561), + [anon_sym_SQUOTE] = ACTIONS(1561), + [anon_sym_L_DQUOTE] = ACTIONS(1561), + [anon_sym_u_DQUOTE] = ACTIONS(1561), + [anon_sym_U_DQUOTE] = ACTIONS(1561), + [anon_sym_u8_DQUOTE] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1561), + [sym_true] = ACTIONS(1563), + [sym_false] = ACTIONS(1563), + [sym_null] = ACTIONS(1563), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1561), + [anon_sym_ATimport] = ACTIONS(1561), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1563), + [anon_sym_ATcompatibility_alias] = ACTIONS(1561), + [anon_sym_ATprotocol] = ACTIONS(1561), + [anon_sym_ATclass] = ACTIONS(1561), + [anon_sym_ATinterface] = ACTIONS(1561), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1563), + [sym_method_attribute_specifier] = ACTIONS(1563), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1563), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE] = ACTIONS(1563), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_API_AVAILABLE] = ACTIONS(1563), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_API_DEPRECATED] = ACTIONS(1563), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1563), + [anon_sym___deprecated_msg] = ACTIONS(1563), + [anon_sym___deprecated_enum_msg] = ACTIONS(1563), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1563), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1563), + [anon_sym_ATimplementation] = ACTIONS(1561), + [anon_sym_NS_ENUM] = ACTIONS(1563), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1563), + [anon_sym_NS_OPTIONS] = ACTIONS(1563), + [anon_sym_typeof] = ACTIONS(1563), + [anon_sym___typeof] = ACTIONS(1563), + [anon_sym___typeof__] = ACTIONS(1563), + [sym_self] = ACTIONS(1563), + [sym_super] = ACTIONS(1563), + [sym_nil] = ACTIONS(1563), + [sym_id] = ACTIONS(1563), + [sym_instancetype] = ACTIONS(1563), + [sym_Class] = ACTIONS(1563), + [sym_SEL] = ACTIONS(1563), + [sym_IMP] = ACTIONS(1563), + [sym_BOOL] = ACTIONS(1563), + [sym_auto] = ACTIONS(1563), + [anon_sym_ATautoreleasepool] = ACTIONS(1561), + [anon_sym_ATsynchronized] = ACTIONS(1561), + [anon_sym_ATtry] = ACTIONS(1561), + [anon_sym_ATcatch] = ACTIONS(1561), + [anon_sym_ATfinally] = ACTIONS(1561), + [anon_sym_ATthrow] = ACTIONS(1561), + [anon_sym_ATselector] = ACTIONS(1561), + [anon_sym_ATencode] = ACTIONS(1561), + [anon_sym_AT] = ACTIONS(1563), + [sym_YES] = ACTIONS(1563), + [sym_NO] = ACTIONS(1563), + [anon_sym___builtin_available] = ACTIONS(1563), + [anon_sym_ATavailable] = ACTIONS(1561), + [anon_sym_va_arg] = ACTIONS(1563), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [396] = { + [sym_identifier] = ACTIONS(1417), + [aux_sym_preproc_include_token1] = ACTIONS(1415), + [aux_sym_preproc_def_token1] = ACTIONS(1415), + [aux_sym_preproc_if_token1] = ACTIONS(1417), + [aux_sym_preproc_if_token2] = ACTIONS(1417), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1417), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1417), + [anon_sym_LPAREN2] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1415), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_typedef] = ACTIONS(1417), + [anon_sym_extern] = ACTIONS(1417), + [anon_sym___attribute] = ACTIONS(1417), + [anon_sym___attribute__] = ACTIONS(1417), + [anon_sym___declspec] = ACTIONS(1417), + [anon_sym___cdecl] = ACTIONS(1417), + [anon_sym___clrcall] = ACTIONS(1417), + [anon_sym___stdcall] = ACTIONS(1417), + [anon_sym___fastcall] = ACTIONS(1417), + [anon_sym___thiscall] = ACTIONS(1417), + [anon_sym___vectorcall] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_auto] = ACTIONS(1417), + [anon_sym_register] = ACTIONS(1417), + [anon_sym_inline] = ACTIONS(1417), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_volatile] = ACTIONS(1417), + [anon_sym_restrict] = ACTIONS(1417), + [anon_sym__Atomic] = ACTIONS(1417), + [anon_sym_in] = ACTIONS(1417), + [anon_sym_out] = ACTIONS(1417), + [anon_sym_inout] = ACTIONS(1417), + [anon_sym_bycopy] = ACTIONS(1417), + [anon_sym_byref] = ACTIONS(1417), + [anon_sym_oneway] = ACTIONS(1417), + [anon_sym__Nullable] = ACTIONS(1417), + [anon_sym__Nonnull] = ACTIONS(1417), + [anon_sym__Nullable_result] = ACTIONS(1417), + [anon_sym__Null_unspecified] = ACTIONS(1417), + [anon_sym___autoreleasing] = ACTIONS(1417), + [anon_sym___nullable] = ACTIONS(1417), + [anon_sym___nonnull] = ACTIONS(1417), + [anon_sym___strong] = ACTIONS(1417), + [anon_sym___weak] = ACTIONS(1417), + [anon_sym___bridge] = ACTIONS(1417), + [anon_sym___bridge_transfer] = ACTIONS(1417), + [anon_sym___bridge_retained] = ACTIONS(1417), + [anon_sym___unsafe_unretained] = ACTIONS(1417), + [anon_sym___block] = ACTIONS(1417), + [anon_sym___kindof] = ACTIONS(1417), + [anon_sym___unused] = ACTIONS(1417), + [anon_sym__Complex] = ACTIONS(1417), + [anon_sym___complex] = ACTIONS(1417), + [anon_sym_IBOutlet] = ACTIONS(1417), + [anon_sym_IBInspectable] = ACTIONS(1417), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1417), + [anon_sym_signed] = ACTIONS(1417), + [anon_sym_unsigned] = ACTIONS(1417), + [anon_sym_long] = ACTIONS(1417), + [anon_sym_short] = ACTIONS(1417), + [sym_primitive_type] = ACTIONS(1417), + [anon_sym_enum] = ACTIONS(1417), + [anon_sym_struct] = ACTIONS(1417), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_else] = ACTIONS(1417), + [anon_sym_switch] = ACTIONS(1417), + [anon_sym_case] = ACTIONS(1417), + [anon_sym_default] = ACTIONS(1417), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_do] = ACTIONS(1417), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_goto] = ACTIONS(1417), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_sizeof] = ACTIONS(1417), + [sym_number_literal] = ACTIONS(1415), + [anon_sym_L_SQUOTE] = ACTIONS(1415), + [anon_sym_u_SQUOTE] = ACTIONS(1415), + [anon_sym_U_SQUOTE] = ACTIONS(1415), + [anon_sym_u8_SQUOTE] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_L_DQUOTE] = ACTIONS(1415), + [anon_sym_u_DQUOTE] = ACTIONS(1415), + [anon_sym_U_DQUOTE] = ACTIONS(1415), + [anon_sym_u8_DQUOTE] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1415), + [sym_true] = ACTIONS(1417), + [sym_false] = ACTIONS(1417), + [sym_null] = ACTIONS(1417), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1415), + [anon_sym_ATimport] = ACTIONS(1415), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1417), + [anon_sym_ATcompatibility_alias] = ACTIONS(1415), + [anon_sym_ATprotocol] = ACTIONS(1415), + [anon_sym_ATclass] = ACTIONS(1415), + [anon_sym_ATinterface] = ACTIONS(1415), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1417), + [sym_method_attribute_specifier] = ACTIONS(1417), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1417), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1417), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1417), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1417), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1417), + [anon_sym_NS_AVAILABLE] = ACTIONS(1417), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1417), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_API_AVAILABLE] = ACTIONS(1417), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_API_DEPRECATED] = ACTIONS(1417), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1417), + [anon_sym___deprecated_msg] = ACTIONS(1417), + [anon_sym___deprecated_enum_msg] = ACTIONS(1417), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1417), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1417), + [anon_sym_ATimplementation] = ACTIONS(1415), + [anon_sym_NS_ENUM] = ACTIONS(1417), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1417), + [anon_sym_NS_OPTIONS] = ACTIONS(1417), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym___typeof] = ACTIONS(1417), + [anon_sym___typeof__] = ACTIONS(1417), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1417), + [sym_nil] = ACTIONS(1417), + [sym_id] = ACTIONS(1417), + [sym_instancetype] = ACTIONS(1417), + [sym_Class] = ACTIONS(1417), + [sym_SEL] = ACTIONS(1417), + [sym_IMP] = ACTIONS(1417), + [sym_BOOL] = ACTIONS(1417), + [sym_auto] = ACTIONS(1417), + [anon_sym_ATautoreleasepool] = ACTIONS(1415), + [anon_sym_ATsynchronized] = ACTIONS(1415), + [anon_sym_ATtry] = ACTIONS(1415), + [anon_sym_ATcatch] = ACTIONS(1415), + [anon_sym_ATfinally] = ACTIONS(1415), + [anon_sym_ATthrow] = ACTIONS(1415), + [anon_sym_ATselector] = ACTIONS(1415), + [anon_sym_ATencode] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [sym_YES] = ACTIONS(1417), + [sym_NO] = ACTIONS(1417), + [anon_sym___builtin_available] = ACTIONS(1417), + [anon_sym_ATavailable] = ACTIONS(1415), + [anon_sym_va_arg] = ACTIONS(1417), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [397] = { + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_include_token1] = ACTIONS(1561), + [aux_sym_preproc_def_token1] = ACTIONS(1561), + [aux_sym_preproc_if_token1] = ACTIONS(1563), + [aux_sym_preproc_if_token2] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1563), + [anon_sym_LPAREN2] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_typedef] = ACTIONS(1563), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym___attribute] = ACTIONS(1563), + [anon_sym___attribute__] = ACTIONS(1563), + [anon_sym___declspec] = ACTIONS(1563), + [anon_sym___cdecl] = ACTIONS(1563), + [anon_sym___clrcall] = ACTIONS(1563), + [anon_sym___stdcall] = ACTIONS(1563), + [anon_sym___fastcall] = ACTIONS(1563), + [anon_sym___thiscall] = ACTIONS(1563), + [anon_sym___vectorcall] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_auto] = ACTIONS(1563), + [anon_sym_register] = ACTIONS(1563), + [anon_sym_inline] = ACTIONS(1563), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_volatile] = ACTIONS(1563), + [anon_sym_restrict] = ACTIONS(1563), + [anon_sym__Atomic] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [anon_sym_out] = ACTIONS(1563), + [anon_sym_inout] = ACTIONS(1563), + [anon_sym_bycopy] = ACTIONS(1563), + [anon_sym_byref] = ACTIONS(1563), + [anon_sym_oneway] = ACTIONS(1563), + [anon_sym__Nullable] = ACTIONS(1563), + [anon_sym__Nonnull] = ACTIONS(1563), + [anon_sym__Nullable_result] = ACTIONS(1563), + [anon_sym__Null_unspecified] = ACTIONS(1563), + [anon_sym___autoreleasing] = ACTIONS(1563), + [anon_sym___nullable] = ACTIONS(1563), + [anon_sym___nonnull] = ACTIONS(1563), + [anon_sym___strong] = ACTIONS(1563), + [anon_sym___weak] = ACTIONS(1563), + [anon_sym___bridge] = ACTIONS(1563), + [anon_sym___bridge_transfer] = ACTIONS(1563), + [anon_sym___bridge_retained] = ACTIONS(1563), + [anon_sym___unsafe_unretained] = ACTIONS(1563), + [anon_sym___block] = ACTIONS(1563), + [anon_sym___kindof] = ACTIONS(1563), + [anon_sym___unused] = ACTIONS(1563), + [anon_sym__Complex] = ACTIONS(1563), + [anon_sym___complex] = ACTIONS(1563), + [anon_sym_IBOutlet] = ACTIONS(1563), + [anon_sym_IBInspectable] = ACTIONS(1563), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1563), + [anon_sym_signed] = ACTIONS(1563), + [anon_sym_unsigned] = ACTIONS(1563), + [anon_sym_long] = ACTIONS(1563), + [anon_sym_short] = ACTIONS(1563), + [sym_primitive_type] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_else] = ACTIONS(1563), + [anon_sym_switch] = ACTIONS(1563), + [anon_sym_case] = ACTIONS(1563), + [anon_sym_default] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_goto] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1561), + [anon_sym_L_SQUOTE] = ACTIONS(1561), + [anon_sym_u_SQUOTE] = ACTIONS(1561), + [anon_sym_U_SQUOTE] = ACTIONS(1561), + [anon_sym_u8_SQUOTE] = ACTIONS(1561), + [anon_sym_SQUOTE] = ACTIONS(1561), + [anon_sym_L_DQUOTE] = ACTIONS(1561), + [anon_sym_u_DQUOTE] = ACTIONS(1561), + [anon_sym_U_DQUOTE] = ACTIONS(1561), + [anon_sym_u8_DQUOTE] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1561), + [sym_true] = ACTIONS(1563), + [sym_false] = ACTIONS(1563), + [sym_null] = ACTIONS(1563), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1561), + [anon_sym_ATimport] = ACTIONS(1561), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1563), + [anon_sym_ATcompatibility_alias] = ACTIONS(1561), + [anon_sym_ATprotocol] = ACTIONS(1561), + [anon_sym_ATclass] = ACTIONS(1561), + [anon_sym_ATinterface] = ACTIONS(1561), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1563), + [sym_method_attribute_specifier] = ACTIONS(1563), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1563), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE] = ACTIONS(1563), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_API_AVAILABLE] = ACTIONS(1563), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_API_DEPRECATED] = ACTIONS(1563), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1563), + [anon_sym___deprecated_msg] = ACTIONS(1563), + [anon_sym___deprecated_enum_msg] = ACTIONS(1563), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1563), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1563), + [anon_sym_ATimplementation] = ACTIONS(1561), + [anon_sym_NS_ENUM] = ACTIONS(1563), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1563), + [anon_sym_NS_OPTIONS] = ACTIONS(1563), + [anon_sym_typeof] = ACTIONS(1563), + [anon_sym___typeof] = ACTIONS(1563), + [anon_sym___typeof__] = ACTIONS(1563), + [sym_self] = ACTIONS(1563), + [sym_super] = ACTIONS(1563), + [sym_nil] = ACTIONS(1563), + [sym_id] = ACTIONS(1563), + [sym_instancetype] = ACTIONS(1563), + [sym_Class] = ACTIONS(1563), + [sym_SEL] = ACTIONS(1563), + [sym_IMP] = ACTIONS(1563), + [sym_BOOL] = ACTIONS(1563), + [sym_auto] = ACTIONS(1563), + [anon_sym_ATautoreleasepool] = ACTIONS(1561), + [anon_sym_ATsynchronized] = ACTIONS(1561), + [anon_sym_ATtry] = ACTIONS(1561), + [anon_sym_ATcatch] = ACTIONS(1561), + [anon_sym_ATfinally] = ACTIONS(1561), + [anon_sym_ATthrow] = ACTIONS(1561), + [anon_sym_ATselector] = ACTIONS(1561), + [anon_sym_ATencode] = ACTIONS(1561), + [anon_sym_AT] = ACTIONS(1563), + [sym_YES] = ACTIONS(1563), + [sym_NO] = ACTIONS(1563), + [anon_sym___builtin_available] = ACTIONS(1563), + [anon_sym_ATavailable] = ACTIONS(1561), + [anon_sym_va_arg] = ACTIONS(1563), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [398] = { + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_include_token1] = ACTIONS(1561), + [aux_sym_preproc_def_token1] = ACTIONS(1561), + [aux_sym_preproc_if_token1] = ACTIONS(1563), + [aux_sym_preproc_if_token2] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1563), + [anon_sym_LPAREN2] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1563), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1561), + [anon_sym_typedef] = ACTIONS(1563), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym___attribute] = ACTIONS(1563), + [anon_sym___attribute__] = ACTIONS(1563), + [anon_sym___declspec] = ACTIONS(1563), + [anon_sym___cdecl] = ACTIONS(1563), + [anon_sym___clrcall] = ACTIONS(1563), + [anon_sym___stdcall] = ACTIONS(1563), + [anon_sym___fastcall] = ACTIONS(1563), + [anon_sym___thiscall] = ACTIONS(1563), + [anon_sym___vectorcall] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_auto] = ACTIONS(1563), + [anon_sym_register] = ACTIONS(1563), + [anon_sym_inline] = ACTIONS(1563), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_volatile] = ACTIONS(1563), + [anon_sym_restrict] = ACTIONS(1563), + [anon_sym__Atomic] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [anon_sym_out] = ACTIONS(1563), + [anon_sym_inout] = ACTIONS(1563), + [anon_sym_bycopy] = ACTIONS(1563), + [anon_sym_byref] = ACTIONS(1563), + [anon_sym_oneway] = ACTIONS(1563), + [anon_sym__Nullable] = ACTIONS(1563), + [anon_sym__Nonnull] = ACTIONS(1563), + [anon_sym__Nullable_result] = ACTIONS(1563), + [anon_sym__Null_unspecified] = ACTIONS(1563), + [anon_sym___autoreleasing] = ACTIONS(1563), + [anon_sym___nullable] = ACTIONS(1563), + [anon_sym___nonnull] = ACTIONS(1563), + [anon_sym___strong] = ACTIONS(1563), + [anon_sym___weak] = ACTIONS(1563), + [anon_sym___bridge] = ACTIONS(1563), + [anon_sym___bridge_transfer] = ACTIONS(1563), + [anon_sym___bridge_retained] = ACTIONS(1563), + [anon_sym___unsafe_unretained] = ACTIONS(1563), + [anon_sym___block] = ACTIONS(1563), + [anon_sym___kindof] = ACTIONS(1563), + [anon_sym___unused] = ACTIONS(1563), + [anon_sym__Complex] = ACTIONS(1563), + [anon_sym___complex] = ACTIONS(1563), + [anon_sym_IBOutlet] = ACTIONS(1563), + [anon_sym_IBInspectable] = ACTIONS(1563), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1563), + [anon_sym_signed] = ACTIONS(1563), + [anon_sym_unsigned] = ACTIONS(1563), + [anon_sym_long] = ACTIONS(1563), + [anon_sym_short] = ACTIONS(1563), + [sym_primitive_type] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1563), + [anon_sym_else] = ACTIONS(1563), + [anon_sym_switch] = ACTIONS(1563), + [anon_sym_case] = ACTIONS(1563), + [anon_sym_default] = ACTIONS(1563), + [anon_sym_while] = ACTIONS(1563), + [anon_sym_do] = ACTIONS(1563), + [anon_sym_for] = ACTIONS(1563), + [anon_sym_return] = ACTIONS(1563), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1563), + [anon_sym_goto] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1561), + [anon_sym_sizeof] = ACTIONS(1563), + [sym_number_literal] = ACTIONS(1561), + [anon_sym_L_SQUOTE] = ACTIONS(1561), + [anon_sym_u_SQUOTE] = ACTIONS(1561), + [anon_sym_U_SQUOTE] = ACTIONS(1561), + [anon_sym_u8_SQUOTE] = ACTIONS(1561), + [anon_sym_SQUOTE] = ACTIONS(1561), + [anon_sym_L_DQUOTE] = ACTIONS(1561), + [anon_sym_u_DQUOTE] = ACTIONS(1561), + [anon_sym_U_DQUOTE] = ACTIONS(1561), + [anon_sym_u8_DQUOTE] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1561), + [sym_true] = ACTIONS(1563), + [sym_false] = ACTIONS(1563), + [sym_null] = ACTIONS(1563), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1561), + [anon_sym_ATimport] = ACTIONS(1561), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1563), + [anon_sym_ATcompatibility_alias] = ACTIONS(1561), + [anon_sym_ATprotocol] = ACTIONS(1561), + [anon_sym_ATclass] = ACTIONS(1561), + [anon_sym_ATinterface] = ACTIONS(1561), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1563), + [sym_method_attribute_specifier] = ACTIONS(1563), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1563), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE] = ACTIONS(1563), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_API_AVAILABLE] = ACTIONS(1563), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_API_DEPRECATED] = ACTIONS(1563), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1563), + [anon_sym___deprecated_msg] = ACTIONS(1563), + [anon_sym___deprecated_enum_msg] = ACTIONS(1563), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1563), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1563), + [anon_sym_ATimplementation] = ACTIONS(1561), + [anon_sym_NS_ENUM] = ACTIONS(1563), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1563), + [anon_sym_NS_OPTIONS] = ACTIONS(1563), + [anon_sym_typeof] = ACTIONS(1563), + [anon_sym___typeof] = ACTIONS(1563), + [anon_sym___typeof__] = ACTIONS(1563), + [sym_self] = ACTIONS(1563), + [sym_super] = ACTIONS(1563), + [sym_nil] = ACTIONS(1563), + [sym_id] = ACTIONS(1563), + [sym_instancetype] = ACTIONS(1563), + [sym_Class] = ACTIONS(1563), + [sym_SEL] = ACTIONS(1563), + [sym_IMP] = ACTIONS(1563), + [sym_BOOL] = ACTIONS(1563), + [sym_auto] = ACTIONS(1563), + [anon_sym_ATautoreleasepool] = ACTIONS(1561), + [anon_sym_ATsynchronized] = ACTIONS(1561), + [anon_sym_ATtry] = ACTIONS(1561), + [anon_sym_ATcatch] = ACTIONS(1561), + [anon_sym_ATfinally] = ACTIONS(1561), + [anon_sym_ATthrow] = ACTIONS(1561), + [anon_sym_ATselector] = ACTIONS(1561), + [anon_sym_ATencode] = ACTIONS(1561), + [anon_sym_AT] = ACTIONS(1563), + [sym_YES] = ACTIONS(1563), + [sym_NO] = ACTIONS(1563), + [anon_sym___builtin_available] = ACTIONS(1563), + [anon_sym_ATavailable] = ACTIONS(1561), + [anon_sym_va_arg] = ACTIONS(1563), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [399] = { + [sym_identifier] = ACTIONS(1643), + [aux_sym_preproc_include_token1] = ACTIONS(1641), + [aux_sym_preproc_def_token1] = ACTIONS(1641), + [aux_sym_preproc_if_token1] = ACTIONS(1643), + [aux_sym_preproc_if_token2] = ACTIONS(1643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1643), + [anon_sym_LPAREN2] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1641), + [anon_sym_TILDE] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_CARET] = ACTIONS(1641), + [anon_sym_AMP] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1641), + [anon_sym_typedef] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym___attribute] = ACTIONS(1643), + [anon_sym___attribute__] = ACTIONS(1643), + [anon_sym___declspec] = ACTIONS(1643), + [anon_sym___cdecl] = ACTIONS(1643), + [anon_sym___clrcall] = ACTIONS(1643), + [anon_sym___stdcall] = ACTIONS(1643), + [anon_sym___fastcall] = ACTIONS(1643), + [anon_sym___thiscall] = ACTIONS(1643), + [anon_sym___vectorcall] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_LBRACK] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1643), + [anon_sym_auto] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_inline] = ACTIONS(1643), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [anon_sym_volatile] = ACTIONS(1643), + [anon_sym_restrict] = ACTIONS(1643), + [anon_sym__Atomic] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_out] = ACTIONS(1643), + [anon_sym_inout] = ACTIONS(1643), + [anon_sym_bycopy] = ACTIONS(1643), + [anon_sym_byref] = ACTIONS(1643), + [anon_sym_oneway] = ACTIONS(1643), + [anon_sym__Nullable] = ACTIONS(1643), + [anon_sym__Nonnull] = ACTIONS(1643), + [anon_sym__Nullable_result] = ACTIONS(1643), + [anon_sym__Null_unspecified] = ACTIONS(1643), + [anon_sym___autoreleasing] = ACTIONS(1643), + [anon_sym___nullable] = ACTIONS(1643), + [anon_sym___nonnull] = ACTIONS(1643), + [anon_sym___strong] = ACTIONS(1643), + [anon_sym___weak] = ACTIONS(1643), + [anon_sym___bridge] = ACTIONS(1643), + [anon_sym___bridge_transfer] = ACTIONS(1643), + [anon_sym___bridge_retained] = ACTIONS(1643), + [anon_sym___unsafe_unretained] = ACTIONS(1643), + [anon_sym___block] = ACTIONS(1643), + [anon_sym___kindof] = ACTIONS(1643), + [anon_sym___unused] = ACTIONS(1643), + [anon_sym__Complex] = ACTIONS(1643), + [anon_sym___complex] = ACTIONS(1643), + [anon_sym_IBOutlet] = ACTIONS(1643), + [anon_sym_IBInspectable] = ACTIONS(1643), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1643), + [anon_sym_signed] = ACTIONS(1643), + [anon_sym_unsigned] = ACTIONS(1643), + [anon_sym_long] = ACTIONS(1643), + [anon_sym_short] = ACTIONS(1643), + [sym_primitive_type] = ACTIONS(1643), + [anon_sym_enum] = ACTIONS(1643), + [anon_sym_struct] = ACTIONS(1643), + [anon_sym_union] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_else] = ACTIONS(1643), + [anon_sym_switch] = ACTIONS(1643), + [anon_sym_case] = ACTIONS(1643), + [anon_sym_default] = ACTIONS(1643), + [anon_sym_while] = ACTIONS(1643), + [anon_sym_do] = ACTIONS(1643), + [anon_sym_for] = ACTIONS(1643), + [anon_sym_return] = ACTIONS(1643), + [anon_sym_break] = ACTIONS(1643), + [anon_sym_continue] = ACTIONS(1643), + [anon_sym_goto] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1641), + [anon_sym_PLUS_PLUS] = ACTIONS(1641), + [anon_sym_sizeof] = ACTIONS(1643), + [sym_number_literal] = ACTIONS(1641), + [anon_sym_L_SQUOTE] = ACTIONS(1641), + [anon_sym_u_SQUOTE] = ACTIONS(1641), + [anon_sym_U_SQUOTE] = ACTIONS(1641), + [anon_sym_u8_SQUOTE] = ACTIONS(1641), + [anon_sym_SQUOTE] = ACTIONS(1641), + [anon_sym_L_DQUOTE] = ACTIONS(1641), + [anon_sym_u_DQUOTE] = ACTIONS(1641), + [anon_sym_U_DQUOTE] = ACTIONS(1641), + [anon_sym_u8_DQUOTE] = ACTIONS(1641), + [anon_sym_DQUOTE] = ACTIONS(1641), + [sym_true] = ACTIONS(1643), + [sym_false] = ACTIONS(1643), + [sym_null] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1641), + [anon_sym_ATimport] = ACTIONS(1641), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1643), + [anon_sym_ATcompatibility_alias] = ACTIONS(1641), + [anon_sym_ATprotocol] = ACTIONS(1641), + [anon_sym_ATclass] = ACTIONS(1641), + [anon_sym_ATinterface] = ACTIONS(1641), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1643), + [sym_method_attribute_specifier] = ACTIONS(1643), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1643), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1643), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1643), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1643), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1643), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1643), + [anon_sym_NS_AVAILABLE] = ACTIONS(1643), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1643), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1643), + [anon_sym_API_AVAILABLE] = ACTIONS(1643), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1643), + [anon_sym_API_DEPRECATED] = ACTIONS(1643), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1643), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1643), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1643), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1643), + [anon_sym___deprecated_msg] = ACTIONS(1643), + [anon_sym___deprecated_enum_msg] = ACTIONS(1643), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1643), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1643), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1643), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1643), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1643), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1643), + [anon_sym_ATimplementation] = ACTIONS(1641), + [anon_sym_NS_ENUM] = ACTIONS(1643), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1643), + [anon_sym_NS_OPTIONS] = ACTIONS(1643), + [anon_sym_typeof] = ACTIONS(1643), + [anon_sym___typeof] = ACTIONS(1643), + [anon_sym___typeof__] = ACTIONS(1643), + [sym_self] = ACTIONS(1643), + [sym_super] = ACTIONS(1643), + [sym_nil] = ACTIONS(1643), + [sym_id] = ACTIONS(1643), + [sym_instancetype] = ACTIONS(1643), + [sym_Class] = ACTIONS(1643), + [sym_SEL] = ACTIONS(1643), + [sym_IMP] = ACTIONS(1643), + [sym_BOOL] = ACTIONS(1643), + [sym_auto] = ACTIONS(1643), + [anon_sym_ATautoreleasepool] = ACTIONS(1641), + [anon_sym_ATsynchronized] = ACTIONS(1641), + [anon_sym_ATtry] = ACTIONS(1641), + [anon_sym_ATcatch] = ACTIONS(1641), + [anon_sym_ATfinally] = ACTIONS(1641), + [anon_sym_ATthrow] = ACTIONS(1641), + [anon_sym_ATselector] = ACTIONS(1641), + [anon_sym_ATencode] = ACTIONS(1641), + [anon_sym_AT] = ACTIONS(1643), + [sym_YES] = ACTIONS(1643), + [sym_NO] = ACTIONS(1643), + [anon_sym___builtin_available] = ACTIONS(1643), + [anon_sym_ATavailable] = ACTIONS(1641), + [anon_sym_va_arg] = ACTIONS(1643), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [400] = { + [sym_identifier] = ACTIONS(1659), + [aux_sym_preproc_include_token1] = ACTIONS(1657), + [aux_sym_preproc_def_token1] = ACTIONS(1657), + [aux_sym_preproc_if_token1] = ACTIONS(1659), + [aux_sym_preproc_if_token2] = ACTIONS(1659), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1659), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_TILDE] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_STAR] = ACTIONS(1657), + [anon_sym_CARET] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1657), + [anon_sym_SEMI] = ACTIONS(1657), + [anon_sym_typedef] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym___attribute] = ACTIONS(1659), + [anon_sym___attribute__] = ACTIONS(1659), + [anon_sym___declspec] = ACTIONS(1659), + [anon_sym___cdecl] = ACTIONS(1659), + [anon_sym___clrcall] = ACTIONS(1659), + [anon_sym___stdcall] = ACTIONS(1659), + [anon_sym___fastcall] = ACTIONS(1659), + [anon_sym___thiscall] = ACTIONS(1659), + [anon_sym___vectorcall] = ACTIONS(1659), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1659), + [anon_sym_auto] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_inline] = ACTIONS(1659), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [anon_sym_volatile] = ACTIONS(1659), + [anon_sym_restrict] = ACTIONS(1659), + [anon_sym__Atomic] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_out] = ACTIONS(1659), + [anon_sym_inout] = ACTIONS(1659), + [anon_sym_bycopy] = ACTIONS(1659), + [anon_sym_byref] = ACTIONS(1659), + [anon_sym_oneway] = ACTIONS(1659), + [anon_sym__Nullable] = ACTIONS(1659), + [anon_sym__Nonnull] = ACTIONS(1659), + [anon_sym__Nullable_result] = ACTIONS(1659), + [anon_sym__Null_unspecified] = ACTIONS(1659), + [anon_sym___autoreleasing] = ACTIONS(1659), + [anon_sym___nullable] = ACTIONS(1659), + [anon_sym___nonnull] = ACTIONS(1659), + [anon_sym___strong] = ACTIONS(1659), + [anon_sym___weak] = ACTIONS(1659), + [anon_sym___bridge] = ACTIONS(1659), + [anon_sym___bridge_transfer] = ACTIONS(1659), + [anon_sym___bridge_retained] = ACTIONS(1659), + [anon_sym___unsafe_unretained] = ACTIONS(1659), + [anon_sym___block] = ACTIONS(1659), + [anon_sym___kindof] = ACTIONS(1659), + [anon_sym___unused] = ACTIONS(1659), + [anon_sym__Complex] = ACTIONS(1659), + [anon_sym___complex] = ACTIONS(1659), + [anon_sym_IBOutlet] = ACTIONS(1659), + [anon_sym_IBInspectable] = ACTIONS(1659), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1659), + [anon_sym_signed] = ACTIONS(1659), + [anon_sym_unsigned] = ACTIONS(1659), + [anon_sym_long] = ACTIONS(1659), + [anon_sym_short] = ACTIONS(1659), + [sym_primitive_type] = ACTIONS(1659), + [anon_sym_enum] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_if] = ACTIONS(1659), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_switch] = ACTIONS(1659), + [anon_sym_case] = ACTIONS(1659), + [anon_sym_default] = ACTIONS(1659), + [anon_sym_while] = ACTIONS(1659), + [anon_sym_do] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1659), + [anon_sym_return] = ACTIONS(1659), + [anon_sym_break] = ACTIONS(1659), + [anon_sym_continue] = ACTIONS(1659), + [anon_sym_goto] = ACTIONS(1659), + [anon_sym_DASH_DASH] = ACTIONS(1657), + [anon_sym_PLUS_PLUS] = ACTIONS(1657), + [anon_sym_sizeof] = ACTIONS(1659), + [sym_number_literal] = ACTIONS(1657), + [anon_sym_L_SQUOTE] = ACTIONS(1657), + [anon_sym_u_SQUOTE] = ACTIONS(1657), + [anon_sym_U_SQUOTE] = ACTIONS(1657), + [anon_sym_u8_SQUOTE] = ACTIONS(1657), + [anon_sym_SQUOTE] = ACTIONS(1657), + [anon_sym_L_DQUOTE] = ACTIONS(1657), + [anon_sym_u_DQUOTE] = ACTIONS(1657), + [anon_sym_U_DQUOTE] = ACTIONS(1657), + [anon_sym_u8_DQUOTE] = ACTIONS(1657), + [anon_sym_DQUOTE] = ACTIONS(1657), + [sym_true] = ACTIONS(1659), + [sym_false] = ACTIONS(1659), + [sym_null] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1657), + [anon_sym_ATimport] = ACTIONS(1657), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1659), + [anon_sym_ATcompatibility_alias] = ACTIONS(1657), + [anon_sym_ATprotocol] = ACTIONS(1657), + [anon_sym_ATclass] = ACTIONS(1657), + [anon_sym_ATinterface] = ACTIONS(1657), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1659), + [sym_method_attribute_specifier] = ACTIONS(1659), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1659), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1659), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1659), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1659), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1659), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1659), + [anon_sym_NS_AVAILABLE] = ACTIONS(1659), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1659), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1659), + [anon_sym_API_AVAILABLE] = ACTIONS(1659), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1659), + [anon_sym_API_DEPRECATED] = ACTIONS(1659), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1659), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1659), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1659), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1659), + [anon_sym___deprecated_msg] = ACTIONS(1659), + [anon_sym___deprecated_enum_msg] = ACTIONS(1659), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1659), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1659), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1659), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1659), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1659), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1659), + [anon_sym_ATimplementation] = ACTIONS(1657), + [anon_sym_NS_ENUM] = ACTIONS(1659), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1659), + [anon_sym_NS_OPTIONS] = ACTIONS(1659), + [anon_sym_typeof] = ACTIONS(1659), + [anon_sym___typeof] = ACTIONS(1659), + [anon_sym___typeof__] = ACTIONS(1659), + [sym_self] = ACTIONS(1659), + [sym_super] = ACTIONS(1659), + [sym_nil] = ACTIONS(1659), + [sym_id] = ACTIONS(1659), + [sym_instancetype] = ACTIONS(1659), + [sym_Class] = ACTIONS(1659), + [sym_SEL] = ACTIONS(1659), + [sym_IMP] = ACTIONS(1659), + [sym_BOOL] = ACTIONS(1659), + [sym_auto] = ACTIONS(1659), + [anon_sym_ATautoreleasepool] = ACTIONS(1657), + [anon_sym_ATsynchronized] = ACTIONS(1657), + [anon_sym_ATtry] = ACTIONS(1657), + [anon_sym_ATcatch] = ACTIONS(1657), + [anon_sym_ATfinally] = ACTIONS(1657), + [anon_sym_ATthrow] = ACTIONS(1657), + [anon_sym_ATselector] = ACTIONS(1657), + [anon_sym_ATencode] = ACTIONS(1657), + [anon_sym_AT] = ACTIONS(1659), + [sym_YES] = ACTIONS(1659), + [sym_NO] = ACTIONS(1659), + [anon_sym___builtin_available] = ACTIONS(1659), + [anon_sym_ATavailable] = ACTIONS(1657), + [anon_sym_va_arg] = ACTIONS(1659), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [401] = { + [sym_identifier] = ACTIONS(1573), + [aux_sym_preproc_include_token1] = ACTIONS(1571), + [aux_sym_preproc_def_token1] = ACTIONS(1571), + [aux_sym_preproc_if_token1] = ACTIONS(1573), + [aux_sym_preproc_if_token2] = ACTIONS(1573), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1573), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1573), + [anon_sym_LPAREN2] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_CARET] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_typedef] = ACTIONS(1573), + [anon_sym_extern] = ACTIONS(1573), + [anon_sym___attribute] = ACTIONS(1573), + [anon_sym___attribute__] = ACTIONS(1573), + [anon_sym___declspec] = ACTIONS(1573), + [anon_sym___cdecl] = ACTIONS(1573), + [anon_sym___clrcall] = ACTIONS(1573), + [anon_sym___stdcall] = ACTIONS(1573), + [anon_sym___fastcall] = ACTIONS(1573), + [anon_sym___thiscall] = ACTIONS(1573), + [anon_sym___vectorcall] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_auto] = ACTIONS(1573), + [anon_sym_register] = ACTIONS(1573), + [anon_sym_inline] = ACTIONS(1573), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_volatile] = ACTIONS(1573), + [anon_sym_restrict] = ACTIONS(1573), + [anon_sym__Atomic] = ACTIONS(1573), + [anon_sym_in] = ACTIONS(1573), + [anon_sym_out] = ACTIONS(1573), + [anon_sym_inout] = ACTIONS(1573), + [anon_sym_bycopy] = ACTIONS(1573), + [anon_sym_byref] = ACTIONS(1573), + [anon_sym_oneway] = ACTIONS(1573), + [anon_sym__Nullable] = ACTIONS(1573), + [anon_sym__Nonnull] = ACTIONS(1573), + [anon_sym__Nullable_result] = ACTIONS(1573), + [anon_sym__Null_unspecified] = ACTIONS(1573), + [anon_sym___autoreleasing] = ACTIONS(1573), + [anon_sym___nullable] = ACTIONS(1573), + [anon_sym___nonnull] = ACTIONS(1573), + [anon_sym___strong] = ACTIONS(1573), + [anon_sym___weak] = ACTIONS(1573), + [anon_sym___bridge] = ACTIONS(1573), + [anon_sym___bridge_transfer] = ACTIONS(1573), + [anon_sym___bridge_retained] = ACTIONS(1573), + [anon_sym___unsafe_unretained] = ACTIONS(1573), + [anon_sym___block] = ACTIONS(1573), + [anon_sym___kindof] = ACTIONS(1573), + [anon_sym___unused] = ACTIONS(1573), + [anon_sym__Complex] = ACTIONS(1573), + [anon_sym___complex] = ACTIONS(1573), + [anon_sym_IBOutlet] = ACTIONS(1573), + [anon_sym_IBInspectable] = ACTIONS(1573), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1573), + [anon_sym_signed] = ACTIONS(1573), + [anon_sym_unsigned] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [sym_primitive_type] = ACTIONS(1573), + [anon_sym_enum] = ACTIONS(1573), + [anon_sym_struct] = ACTIONS(1573), + [anon_sym_union] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_else] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_case] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_goto] = ACTIONS(1573), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_sizeof] = ACTIONS(1573), + [sym_number_literal] = ACTIONS(1571), + [anon_sym_L_SQUOTE] = ACTIONS(1571), + [anon_sym_u_SQUOTE] = ACTIONS(1571), + [anon_sym_U_SQUOTE] = ACTIONS(1571), + [anon_sym_u8_SQUOTE] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_L_DQUOTE] = ACTIONS(1571), + [anon_sym_u_DQUOTE] = ACTIONS(1571), + [anon_sym_U_DQUOTE] = ACTIONS(1571), + [anon_sym_u8_DQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [sym_true] = ACTIONS(1573), + [sym_false] = ACTIONS(1573), + [sym_null] = ACTIONS(1573), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1571), + [anon_sym_ATimport] = ACTIONS(1571), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1573), + [anon_sym_ATcompatibility_alias] = ACTIONS(1571), + [anon_sym_ATprotocol] = ACTIONS(1571), + [anon_sym_ATclass] = ACTIONS(1571), + [anon_sym_ATinterface] = ACTIONS(1571), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1573), + [sym_method_attribute_specifier] = ACTIONS(1573), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1573), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1573), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1573), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1573), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1573), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1573), + [anon_sym_NS_AVAILABLE] = ACTIONS(1573), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1573), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1573), + [anon_sym_API_AVAILABLE] = ACTIONS(1573), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1573), + [anon_sym_API_DEPRECATED] = ACTIONS(1573), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1573), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1573), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1573), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1573), + [anon_sym___deprecated_msg] = ACTIONS(1573), + [anon_sym___deprecated_enum_msg] = ACTIONS(1573), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1573), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1573), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1573), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1573), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1573), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1573), + [anon_sym_ATimplementation] = ACTIONS(1571), + [anon_sym_NS_ENUM] = ACTIONS(1573), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1573), + [anon_sym_NS_OPTIONS] = ACTIONS(1573), + [anon_sym_typeof] = ACTIONS(1573), + [anon_sym___typeof] = ACTIONS(1573), + [anon_sym___typeof__] = ACTIONS(1573), + [sym_self] = ACTIONS(1573), + [sym_super] = ACTIONS(1573), + [sym_nil] = ACTIONS(1573), + [sym_id] = ACTIONS(1573), + [sym_instancetype] = ACTIONS(1573), + [sym_Class] = ACTIONS(1573), + [sym_SEL] = ACTIONS(1573), + [sym_IMP] = ACTIONS(1573), + [sym_BOOL] = ACTIONS(1573), + [sym_auto] = ACTIONS(1573), + [anon_sym_ATautoreleasepool] = ACTIONS(1571), + [anon_sym_ATsynchronized] = ACTIONS(1571), + [anon_sym_ATtry] = ACTIONS(1571), + [anon_sym_ATcatch] = ACTIONS(1571), + [anon_sym_ATfinally] = ACTIONS(1571), + [anon_sym_ATthrow] = ACTIONS(1571), + [anon_sym_ATselector] = ACTIONS(1571), + [anon_sym_ATencode] = ACTIONS(1571), + [anon_sym_AT] = ACTIONS(1573), + [sym_YES] = ACTIONS(1573), + [sym_NO] = ACTIONS(1573), + [anon_sym___builtin_available] = ACTIONS(1573), + [anon_sym_ATavailable] = ACTIONS(1571), + [anon_sym_va_arg] = ACTIONS(1573), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [402] = { + [sym_identifier] = ACTIONS(1533), + [aux_sym_preproc_include_token1] = ACTIONS(1531), + [aux_sym_preproc_def_token1] = ACTIONS(1531), + [aux_sym_preproc_if_token1] = ACTIONS(1533), + [aux_sym_preproc_if_token2] = ACTIONS(1533), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1533), + [anon_sym_LPAREN2] = ACTIONS(1531), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_CARET] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_typedef] = ACTIONS(1533), + [anon_sym_extern] = ACTIONS(1533), + [anon_sym___attribute] = ACTIONS(1533), + [anon_sym___attribute__] = ACTIONS(1533), + [anon_sym___declspec] = ACTIONS(1533), + [anon_sym___cdecl] = ACTIONS(1533), + [anon_sym___clrcall] = ACTIONS(1533), + [anon_sym___stdcall] = ACTIONS(1533), + [anon_sym___fastcall] = ACTIONS(1533), + [anon_sym___thiscall] = ACTIONS(1533), + [anon_sym___vectorcall] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1531), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_auto] = ACTIONS(1533), + [anon_sym_register] = ACTIONS(1533), + [anon_sym_inline] = ACTIONS(1533), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_volatile] = ACTIONS(1533), + [anon_sym_restrict] = ACTIONS(1533), + [anon_sym__Atomic] = ACTIONS(1533), + [anon_sym_in] = ACTIONS(1533), + [anon_sym_out] = ACTIONS(1533), + [anon_sym_inout] = ACTIONS(1533), + [anon_sym_bycopy] = ACTIONS(1533), + [anon_sym_byref] = ACTIONS(1533), + [anon_sym_oneway] = ACTIONS(1533), + [anon_sym__Nullable] = ACTIONS(1533), + [anon_sym__Nonnull] = ACTIONS(1533), + [anon_sym__Nullable_result] = ACTIONS(1533), + [anon_sym__Null_unspecified] = ACTIONS(1533), + [anon_sym___autoreleasing] = ACTIONS(1533), + [anon_sym___nullable] = ACTIONS(1533), + [anon_sym___nonnull] = ACTIONS(1533), + [anon_sym___strong] = ACTIONS(1533), + [anon_sym___weak] = ACTIONS(1533), + [anon_sym___bridge] = ACTIONS(1533), + [anon_sym___bridge_transfer] = ACTIONS(1533), + [anon_sym___bridge_retained] = ACTIONS(1533), + [anon_sym___unsafe_unretained] = ACTIONS(1533), + [anon_sym___block] = ACTIONS(1533), + [anon_sym___kindof] = ACTIONS(1533), + [anon_sym___unused] = ACTIONS(1533), + [anon_sym__Complex] = ACTIONS(1533), + [anon_sym___complex] = ACTIONS(1533), + [anon_sym_IBOutlet] = ACTIONS(1533), + [anon_sym_IBInspectable] = ACTIONS(1533), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1533), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1533), + [anon_sym_enum] = ACTIONS(1533), + [anon_sym_struct] = ACTIONS(1533), + [anon_sym_union] = ACTIONS(1533), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_else] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_case] = ACTIONS(1533), + [anon_sym_default] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_goto] = ACTIONS(1533), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_sizeof] = ACTIONS(1533), + [sym_number_literal] = ACTIONS(1531), + [anon_sym_L_SQUOTE] = ACTIONS(1531), + [anon_sym_u_SQUOTE] = ACTIONS(1531), + [anon_sym_U_SQUOTE] = ACTIONS(1531), + [anon_sym_u8_SQUOTE] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_L_DQUOTE] = ACTIONS(1531), + [anon_sym_u_DQUOTE] = ACTIONS(1531), + [anon_sym_U_DQUOTE] = ACTIONS(1531), + [anon_sym_u8_DQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym_true] = ACTIONS(1533), + [sym_false] = ACTIONS(1533), + [sym_null] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1531), + [anon_sym_ATimport] = ACTIONS(1531), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1533), + [anon_sym_ATcompatibility_alias] = ACTIONS(1531), + [anon_sym_ATprotocol] = ACTIONS(1531), + [anon_sym_ATclass] = ACTIONS(1531), + [anon_sym_ATinterface] = ACTIONS(1531), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1533), + [sym_method_attribute_specifier] = ACTIONS(1533), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1533), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1533), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1533), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1533), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1533), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1533), + [anon_sym_NS_AVAILABLE] = ACTIONS(1533), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1533), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1533), + [anon_sym_API_AVAILABLE] = ACTIONS(1533), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1533), + [anon_sym_API_DEPRECATED] = ACTIONS(1533), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1533), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1533), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1533), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1533), + [anon_sym___deprecated_msg] = ACTIONS(1533), + [anon_sym___deprecated_enum_msg] = ACTIONS(1533), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1533), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1533), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1533), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1533), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1533), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1533), + [anon_sym_ATimplementation] = ACTIONS(1531), + [anon_sym_NS_ENUM] = ACTIONS(1533), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1533), + [anon_sym_NS_OPTIONS] = ACTIONS(1533), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym___typeof] = ACTIONS(1533), + [anon_sym___typeof__] = ACTIONS(1533), + [sym_self] = ACTIONS(1533), + [sym_super] = ACTIONS(1533), + [sym_nil] = ACTIONS(1533), + [sym_id] = ACTIONS(1533), + [sym_instancetype] = ACTIONS(1533), + [sym_Class] = ACTIONS(1533), + [sym_SEL] = ACTIONS(1533), + [sym_IMP] = ACTIONS(1533), + [sym_BOOL] = ACTIONS(1533), + [sym_auto] = ACTIONS(1533), + [anon_sym_ATautoreleasepool] = ACTIONS(1531), + [anon_sym_ATsynchronized] = ACTIONS(1531), + [anon_sym_ATtry] = ACTIONS(1531), + [anon_sym_ATcatch] = ACTIONS(1531), + [anon_sym_ATfinally] = ACTIONS(1531), + [anon_sym_ATthrow] = ACTIONS(1531), + [anon_sym_ATselector] = ACTIONS(1531), + [anon_sym_ATencode] = ACTIONS(1531), + [anon_sym_AT] = ACTIONS(1533), + [sym_YES] = ACTIONS(1533), + [sym_NO] = ACTIONS(1533), + [anon_sym___builtin_available] = ACTIONS(1533), + [anon_sym_ATavailable] = ACTIONS(1531), + [anon_sym_va_arg] = ACTIONS(1533), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [403] = { [sym_identifier] = ACTIONS(1403), - [aux_sym_preproc_include_token1] = ACTIONS(1401), - [aux_sym_preproc_def_token1] = ACTIONS(1401), + [aux_sym_preproc_include_token1] = ACTIONS(1405), + [aux_sym_preproc_def_token1] = ACTIONS(1405), [aux_sym_preproc_if_token1] = ACTIONS(1403), [aux_sym_preproc_if_token2] = ACTIONS(1403), [aux_sym_preproc_ifdef_token1] = ACTIONS(1403), [aux_sym_preproc_ifdef_token2] = ACTIONS(1403), - [anon_sym_LPAREN2] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_TILDE] = ACTIONS(1401), + [anon_sym_LPAREN2] = ACTIONS(1405), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_TILDE] = ACTIONS(1405), [anon_sym_DASH] = ACTIONS(1403), [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_CARET] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1405), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1405), [anon_sym_typedef] = ACTIONS(1403), [anon_sym_extern] = ACTIONS(1403), [anon_sym___attribute] = ACTIONS(1403), @@ -112636,8 +96680,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1403), [anon_sym___thiscall] = ACTIONS(1403), [anon_sym___vectorcall] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_LBRACK] = ACTIONS(1405), [anon_sym_static] = ACTIONS(1403), [anon_sym_auto] = ACTIONS(1403), [anon_sym_register] = ACTIONS(1403), @@ -112680,9 +96724,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1403), [sym_primitive_type] = ACTIONS(1403), [anon_sym_enum] = ACTIONS(1403), - [anon_sym_NS_ENUM] = ACTIONS(1403), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1403), - [anon_sym_NS_OPTIONS] = ACTIONS(1403), [anon_sym_struct] = ACTIONS(1403), [anon_sym_union] = ACTIONS(1403), [anon_sym_if] = ACTIONS(1403), @@ -112697,31 +96738,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1403), [anon_sym_continue] = ACTIONS(1403), [anon_sym_goto] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1401), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), + [anon_sym_DASH_DASH] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1405), [anon_sym_sizeof] = ACTIONS(1403), - [sym_number_literal] = ACTIONS(1401), - [anon_sym_L_SQUOTE] = ACTIONS(1401), - [anon_sym_u_SQUOTE] = ACTIONS(1401), - [anon_sym_U_SQUOTE] = ACTIONS(1401), - [anon_sym_u8_SQUOTE] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1401), - [anon_sym_L_DQUOTE] = ACTIONS(1401), - [anon_sym_u_DQUOTE] = ACTIONS(1401), - [anon_sym_U_DQUOTE] = ACTIONS(1401), - [anon_sym_u8_DQUOTE] = ACTIONS(1401), - [anon_sym_DQUOTE] = ACTIONS(1401), + [sym_number_literal] = ACTIONS(1405), + [anon_sym_L_SQUOTE] = ACTIONS(1405), + [anon_sym_u_SQUOTE] = ACTIONS(1405), + [anon_sym_U_SQUOTE] = ACTIONS(1405), + [anon_sym_u8_SQUOTE] = ACTIONS(1405), + [anon_sym_SQUOTE] = ACTIONS(1405), + [anon_sym_L_DQUOTE] = ACTIONS(1405), + [anon_sym_u_DQUOTE] = ACTIONS(1405), + [anon_sym_U_DQUOTE] = ACTIONS(1405), + [anon_sym_u8_DQUOTE] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1405), [sym_true] = ACTIONS(1403), [sym_false] = ACTIONS(1403), [sym_null] = ACTIONS(1403), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1401), - [anon_sym_ATimport] = ACTIONS(1401), + [anon_sym_POUNDimport] = ACTIONS(1405), + [anon_sym_ATimport] = ACTIONS(1405), [sym__ns_assume_nonnull_declaration] = ACTIONS(1403), - [anon_sym_ATcompatibility_alias] = ACTIONS(1401), - [anon_sym_ATprotocol] = ACTIONS(1401), - [anon_sym_ATclass] = ACTIONS(1401), - [anon_sym_ATinterface] = ACTIONS(1401), + [anon_sym_ATcompatibility_alias] = ACTIONS(1405), + [anon_sym_ATprotocol] = ACTIONS(1405), + [anon_sym_ATclass] = ACTIONS(1405), + [anon_sym_ATinterface] = ACTIONS(1405), [sym_class_interface_attribute_sepcifier] = ACTIONS(1403), [sym_method_attribute_specifier] = ACTIONS(1403), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1403), @@ -112748,7 +96789,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1403), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1403), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1403), - [anon_sym_ATimplementation] = ACTIONS(1401), + [anon_sym_ATimplementation] = ACTIONS(1405), + [anon_sym_NS_ENUM] = ACTIONS(1403), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1403), + [anon_sym_NS_OPTIONS] = ACTIONS(1403), [anon_sym_typeof] = ACTIONS(1403), [anon_sym___typeof] = ACTIONS(1403), [anon_sym___typeof__] = ACTIONS(1403), @@ -112762,19 +96806,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1403), [sym_BOOL] = ACTIONS(1403), [sym_auto] = ACTIONS(1403), - [anon_sym_ATautoreleasepool] = ACTIONS(1401), - [anon_sym_ATsynchronized] = ACTIONS(1401), - [anon_sym_ATtry] = ACTIONS(1401), - [anon_sym_ATcatch] = ACTIONS(1401), - [anon_sym_ATfinally] = ACTIONS(1401), - [anon_sym_ATthrow] = ACTIONS(1401), - [anon_sym_ATselector] = ACTIONS(1401), - [anon_sym_ATencode] = ACTIONS(1401), + [anon_sym_ATautoreleasepool] = ACTIONS(1405), + [anon_sym_ATsynchronized] = ACTIONS(1405), + [anon_sym_ATtry] = ACTIONS(1405), + [anon_sym_ATcatch] = ACTIONS(1405), + [anon_sym_ATfinally] = ACTIONS(1405), + [anon_sym_ATthrow] = ACTIONS(1405), + [anon_sym_ATselector] = ACTIONS(1405), + [anon_sym_ATencode] = ACTIONS(1405), [anon_sym_AT] = ACTIONS(1403), [sym_YES] = ACTIONS(1403), [sym_NO] = ACTIONS(1403), [anon_sym___builtin_available] = ACTIONS(1403), - [anon_sym_ATavailable] = ACTIONS(1401), + [anon_sym_ATavailable] = ACTIONS(1405), [anon_sym_va_arg] = ACTIONS(1403), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), @@ -112783,174 +96827,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [495] = { - [sym_identifier] = ACTIONS(1399), - [aux_sym_preproc_include_token1] = ACTIONS(1397), - [aux_sym_preproc_def_token1] = ACTIONS(1397), - [aux_sym_preproc_if_token1] = ACTIONS(1399), - [aux_sym_preproc_if_token2] = ACTIONS(1399), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1399), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1399), - [anon_sym_LPAREN2] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_TILDE] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_typedef] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1399), - [anon_sym___attribute] = ACTIONS(1399), - [anon_sym___attribute__] = ACTIONS(1399), - [anon_sym___declspec] = ACTIONS(1399), - [anon_sym___cdecl] = ACTIONS(1399), - [anon_sym___clrcall] = ACTIONS(1399), - [anon_sym___stdcall] = ACTIONS(1399), - [anon_sym___fastcall] = ACTIONS(1399), - [anon_sym___thiscall] = ACTIONS(1399), - [anon_sym___vectorcall] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1399), - [anon_sym_auto] = ACTIONS(1399), - [anon_sym_register] = ACTIONS(1399), - [anon_sym_inline] = ACTIONS(1399), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_volatile] = ACTIONS(1399), - [anon_sym_restrict] = ACTIONS(1399), - [anon_sym__Atomic] = ACTIONS(1399), - [anon_sym_in] = ACTIONS(1399), - [anon_sym_out] = ACTIONS(1399), - [anon_sym_inout] = ACTIONS(1399), - [anon_sym_bycopy] = ACTIONS(1399), - [anon_sym_byref] = ACTIONS(1399), - [anon_sym_oneway] = ACTIONS(1399), - [anon_sym__Nullable] = ACTIONS(1399), - [anon_sym__Nonnull] = ACTIONS(1399), - [anon_sym__Nullable_result] = ACTIONS(1399), - [anon_sym__Null_unspecified] = ACTIONS(1399), - [anon_sym___autoreleasing] = ACTIONS(1399), - [anon_sym___nullable] = ACTIONS(1399), - [anon_sym___nonnull] = ACTIONS(1399), - [anon_sym___strong] = ACTIONS(1399), - [anon_sym___weak] = ACTIONS(1399), - [anon_sym___bridge] = ACTIONS(1399), - [anon_sym___bridge_transfer] = ACTIONS(1399), - [anon_sym___bridge_retained] = ACTIONS(1399), - [anon_sym___unsafe_unretained] = ACTIONS(1399), - [anon_sym___block] = ACTIONS(1399), - [anon_sym___kindof] = ACTIONS(1399), - [anon_sym___unused] = ACTIONS(1399), - [anon_sym__Complex] = ACTIONS(1399), - [anon_sym___complex] = ACTIONS(1399), - [anon_sym_IBOutlet] = ACTIONS(1399), - [anon_sym_IBInspectable] = ACTIONS(1399), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1399), - [anon_sym_signed] = ACTIONS(1399), - [anon_sym_unsigned] = ACTIONS(1399), - [anon_sym_long] = ACTIONS(1399), - [anon_sym_short] = ACTIONS(1399), - [sym_primitive_type] = ACTIONS(1399), - [anon_sym_enum] = ACTIONS(1399), - [anon_sym_NS_ENUM] = ACTIONS(1399), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1399), - [anon_sym_NS_OPTIONS] = ACTIONS(1399), - [anon_sym_struct] = ACTIONS(1399), - [anon_sym_union] = ACTIONS(1399), - [anon_sym_if] = ACTIONS(1399), - [anon_sym_else] = ACTIONS(1399), - [anon_sym_switch] = ACTIONS(1399), - [anon_sym_case] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1399), - [anon_sym_while] = ACTIONS(1399), - [anon_sym_do] = ACTIONS(1399), - [anon_sym_for] = ACTIONS(1399), - [anon_sym_return] = ACTIONS(1399), - [anon_sym_break] = ACTIONS(1399), - [anon_sym_continue] = ACTIONS(1399), - [anon_sym_goto] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(1397), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_sizeof] = ACTIONS(1399), - [sym_number_literal] = ACTIONS(1397), - [anon_sym_L_SQUOTE] = ACTIONS(1397), - [anon_sym_u_SQUOTE] = ACTIONS(1397), - [anon_sym_U_SQUOTE] = ACTIONS(1397), - [anon_sym_u8_SQUOTE] = ACTIONS(1397), - [anon_sym_SQUOTE] = ACTIONS(1397), - [anon_sym_L_DQUOTE] = ACTIONS(1397), - [anon_sym_u_DQUOTE] = ACTIONS(1397), - [anon_sym_U_DQUOTE] = ACTIONS(1397), - [anon_sym_u8_DQUOTE] = ACTIONS(1397), - [anon_sym_DQUOTE] = ACTIONS(1397), - [sym_true] = ACTIONS(1399), - [sym_false] = ACTIONS(1399), - [sym_null] = ACTIONS(1399), + [404] = { + [sym_identifier] = ACTIONS(1653), + [aux_sym_preproc_include_token1] = ACTIONS(1655), + [aux_sym_preproc_def_token1] = ACTIONS(1655), + [aux_sym_preproc_if_token1] = ACTIONS(1653), + [aux_sym_preproc_if_token2] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1653), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1653), + [anon_sym_LPAREN2] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_TILDE] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1653), + [anon_sym_PLUS] = ACTIONS(1653), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_typedef] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym___attribute] = ACTIONS(1653), + [anon_sym___attribute__] = ACTIONS(1653), + [anon_sym___declspec] = ACTIONS(1653), + [anon_sym___cdecl] = ACTIONS(1653), + [anon_sym___clrcall] = ACTIONS(1653), + [anon_sym___stdcall] = ACTIONS(1653), + [anon_sym___fastcall] = ACTIONS(1653), + [anon_sym___thiscall] = ACTIONS(1653), + [anon_sym___vectorcall] = ACTIONS(1653), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1655), + [anon_sym_static] = ACTIONS(1653), + [anon_sym_auto] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_inline] = ACTIONS(1653), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_volatile] = ACTIONS(1653), + [anon_sym_restrict] = ACTIONS(1653), + [anon_sym__Atomic] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [anon_sym_out] = ACTIONS(1653), + [anon_sym_inout] = ACTIONS(1653), + [anon_sym_bycopy] = ACTIONS(1653), + [anon_sym_byref] = ACTIONS(1653), + [anon_sym_oneway] = ACTIONS(1653), + [anon_sym__Nullable] = ACTIONS(1653), + [anon_sym__Nonnull] = ACTIONS(1653), + [anon_sym__Nullable_result] = ACTIONS(1653), + [anon_sym__Null_unspecified] = ACTIONS(1653), + [anon_sym___autoreleasing] = ACTIONS(1653), + [anon_sym___nullable] = ACTIONS(1653), + [anon_sym___nonnull] = ACTIONS(1653), + [anon_sym___strong] = ACTIONS(1653), + [anon_sym___weak] = ACTIONS(1653), + [anon_sym___bridge] = ACTIONS(1653), + [anon_sym___bridge_transfer] = ACTIONS(1653), + [anon_sym___bridge_retained] = ACTIONS(1653), + [anon_sym___unsafe_unretained] = ACTIONS(1653), + [anon_sym___block] = ACTIONS(1653), + [anon_sym___kindof] = ACTIONS(1653), + [anon_sym___unused] = ACTIONS(1653), + [anon_sym__Complex] = ACTIONS(1653), + [anon_sym___complex] = ACTIONS(1653), + [anon_sym_IBOutlet] = ACTIONS(1653), + [anon_sym_IBInspectable] = ACTIONS(1653), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1653), + [anon_sym_signed] = ACTIONS(1653), + [anon_sym_unsigned] = ACTIONS(1653), + [anon_sym_long] = ACTIONS(1653), + [anon_sym_short] = ACTIONS(1653), + [sym_primitive_type] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1653), + [anon_sym_else] = ACTIONS(1653), + [anon_sym_switch] = ACTIONS(1653), + [anon_sym_case] = ACTIONS(1653), + [anon_sym_default] = ACTIONS(1653), + [anon_sym_while] = ACTIONS(1653), + [anon_sym_do] = ACTIONS(1653), + [anon_sym_for] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(1653), + [anon_sym_break] = ACTIONS(1653), + [anon_sym_continue] = ACTIONS(1653), + [anon_sym_goto] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1655), + [anon_sym_sizeof] = ACTIONS(1653), + [sym_number_literal] = ACTIONS(1655), + [anon_sym_L_SQUOTE] = ACTIONS(1655), + [anon_sym_u_SQUOTE] = ACTIONS(1655), + [anon_sym_U_SQUOTE] = ACTIONS(1655), + [anon_sym_u8_SQUOTE] = ACTIONS(1655), + [anon_sym_SQUOTE] = ACTIONS(1655), + [anon_sym_L_DQUOTE] = ACTIONS(1655), + [anon_sym_u_DQUOTE] = ACTIONS(1655), + [anon_sym_U_DQUOTE] = ACTIONS(1655), + [anon_sym_u8_DQUOTE] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1655), + [sym_true] = ACTIONS(1653), + [sym_false] = ACTIONS(1653), + [sym_null] = ACTIONS(1653), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1397), - [anon_sym_ATimport] = ACTIONS(1397), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1399), - [anon_sym_ATcompatibility_alias] = ACTIONS(1397), - [anon_sym_ATprotocol] = ACTIONS(1397), - [anon_sym_ATclass] = ACTIONS(1397), - [anon_sym_ATinterface] = ACTIONS(1397), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1399), - [sym_method_attribute_specifier] = ACTIONS(1399), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1399), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1399), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1399), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1399), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1399), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1399), - [anon_sym_NS_AVAILABLE] = ACTIONS(1399), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1399), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1399), - [anon_sym_API_AVAILABLE] = ACTIONS(1399), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1399), - [anon_sym_API_DEPRECATED] = ACTIONS(1399), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1399), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1399), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1399), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1399), - [anon_sym___deprecated_msg] = ACTIONS(1399), - [anon_sym___deprecated_enum_msg] = ACTIONS(1399), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1399), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1399), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1399), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1399), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1399), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1399), - [anon_sym_ATimplementation] = ACTIONS(1397), - [anon_sym_typeof] = ACTIONS(1399), - [anon_sym___typeof] = ACTIONS(1399), - [anon_sym___typeof__] = ACTIONS(1399), - [sym_self] = ACTIONS(1399), - [sym_super] = ACTIONS(1399), - [sym_nil] = ACTIONS(1399), - [sym_id] = ACTIONS(1399), - [sym_instancetype] = ACTIONS(1399), - [sym_Class] = ACTIONS(1399), - [sym_SEL] = ACTIONS(1399), - [sym_IMP] = ACTIONS(1399), - [sym_BOOL] = ACTIONS(1399), - [sym_auto] = ACTIONS(1399), - [anon_sym_ATautoreleasepool] = ACTIONS(1397), - [anon_sym_ATsynchronized] = ACTIONS(1397), - [anon_sym_ATtry] = ACTIONS(1397), - [anon_sym_ATcatch] = ACTIONS(1397), - [anon_sym_ATfinally] = ACTIONS(1397), - [anon_sym_ATthrow] = ACTIONS(1397), - [anon_sym_ATselector] = ACTIONS(1397), - [anon_sym_ATencode] = ACTIONS(1397), - [anon_sym_AT] = ACTIONS(1399), - [sym_YES] = ACTIONS(1399), - [sym_NO] = ACTIONS(1399), - [anon_sym___builtin_available] = ACTIONS(1399), - [anon_sym_ATavailable] = ACTIONS(1397), - [anon_sym_va_arg] = ACTIONS(1399), + [anon_sym_POUNDimport] = ACTIONS(1655), + [anon_sym_ATimport] = ACTIONS(1655), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1653), + [anon_sym_ATcompatibility_alias] = ACTIONS(1655), + [anon_sym_ATprotocol] = ACTIONS(1655), + [anon_sym_ATclass] = ACTIONS(1655), + [anon_sym_ATinterface] = ACTIONS(1655), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1653), + [sym_method_attribute_specifier] = ACTIONS(1653), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1653), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE] = ACTIONS(1653), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_API_AVAILABLE] = ACTIONS(1653), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_API_DEPRECATED] = ACTIONS(1653), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1653), + [anon_sym___deprecated_msg] = ACTIONS(1653), + [anon_sym___deprecated_enum_msg] = ACTIONS(1653), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1653), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1653), + [anon_sym_ATimplementation] = ACTIONS(1655), + [anon_sym_NS_ENUM] = ACTIONS(1653), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), + [anon_sym_NS_OPTIONS] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1653), + [anon_sym___typeof] = ACTIONS(1653), + [anon_sym___typeof__] = ACTIONS(1653), + [sym_self] = ACTIONS(1653), + [sym_super] = ACTIONS(1653), + [sym_nil] = ACTIONS(1653), + [sym_id] = ACTIONS(1653), + [sym_instancetype] = ACTIONS(1653), + [sym_Class] = ACTIONS(1653), + [sym_SEL] = ACTIONS(1653), + [sym_IMP] = ACTIONS(1653), + [sym_BOOL] = ACTIONS(1653), + [sym_auto] = ACTIONS(1653), + [anon_sym_ATautoreleasepool] = ACTIONS(1655), + [anon_sym_ATsynchronized] = ACTIONS(1655), + [anon_sym_ATtry] = ACTIONS(1655), + [anon_sym_ATcatch] = ACTIONS(1655), + [anon_sym_ATfinally] = ACTIONS(1655), + [anon_sym_ATthrow] = ACTIONS(1655), + [anon_sym_ATselector] = ACTIONS(1655), + [anon_sym_ATencode] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1653), + [sym_YES] = ACTIONS(1653), + [sym_NO] = ACTIONS(1653), + [anon_sym___builtin_available] = ACTIONS(1653), + [anon_sym_ATavailable] = ACTIONS(1655), + [anon_sym_va_arg] = ACTIONS(1653), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -112958,174 +97002,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [496] = { - [sym_identifier] = ACTIONS(1395), - [aux_sym_preproc_include_token1] = ACTIONS(1393), - [aux_sym_preproc_def_token1] = ACTIONS(1393), - [aux_sym_preproc_if_token1] = ACTIONS(1395), - [aux_sym_preproc_if_token2] = ACTIONS(1395), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1395), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1395), - [anon_sym_LPAREN2] = ACTIONS(1393), - [anon_sym_BANG] = ACTIONS(1393), - [anon_sym_TILDE] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1393), - [anon_sym_CARET] = ACTIONS(1393), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_typedef] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1395), - [anon_sym___attribute] = ACTIONS(1395), - [anon_sym___attribute__] = ACTIONS(1395), - [anon_sym___declspec] = ACTIONS(1395), - [anon_sym___cdecl] = ACTIONS(1395), - [anon_sym___clrcall] = ACTIONS(1395), - [anon_sym___stdcall] = ACTIONS(1395), - [anon_sym___fastcall] = ACTIONS(1395), - [anon_sym___thiscall] = ACTIONS(1395), - [anon_sym___vectorcall] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1395), - [anon_sym_auto] = ACTIONS(1395), - [anon_sym_register] = ACTIONS(1395), - [anon_sym_inline] = ACTIONS(1395), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1395), - [anon_sym_volatile] = ACTIONS(1395), - [anon_sym_restrict] = ACTIONS(1395), - [anon_sym__Atomic] = ACTIONS(1395), - [anon_sym_in] = ACTIONS(1395), - [anon_sym_out] = ACTIONS(1395), - [anon_sym_inout] = ACTIONS(1395), - [anon_sym_bycopy] = ACTIONS(1395), - [anon_sym_byref] = ACTIONS(1395), - [anon_sym_oneway] = ACTIONS(1395), - [anon_sym__Nullable] = ACTIONS(1395), - [anon_sym__Nonnull] = ACTIONS(1395), - [anon_sym__Nullable_result] = ACTIONS(1395), - [anon_sym__Null_unspecified] = ACTIONS(1395), - [anon_sym___autoreleasing] = ACTIONS(1395), - [anon_sym___nullable] = ACTIONS(1395), - [anon_sym___nonnull] = ACTIONS(1395), - [anon_sym___strong] = ACTIONS(1395), - [anon_sym___weak] = ACTIONS(1395), - [anon_sym___bridge] = ACTIONS(1395), - [anon_sym___bridge_transfer] = ACTIONS(1395), - [anon_sym___bridge_retained] = ACTIONS(1395), - [anon_sym___unsafe_unretained] = ACTIONS(1395), - [anon_sym___block] = ACTIONS(1395), - [anon_sym___kindof] = ACTIONS(1395), - [anon_sym___unused] = ACTIONS(1395), - [anon_sym__Complex] = ACTIONS(1395), - [anon_sym___complex] = ACTIONS(1395), - [anon_sym_IBOutlet] = ACTIONS(1395), - [anon_sym_IBInspectable] = ACTIONS(1395), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1395), - [anon_sym_signed] = ACTIONS(1395), - [anon_sym_unsigned] = ACTIONS(1395), - [anon_sym_long] = ACTIONS(1395), - [anon_sym_short] = ACTIONS(1395), - [sym_primitive_type] = ACTIONS(1395), - [anon_sym_enum] = ACTIONS(1395), - [anon_sym_NS_ENUM] = ACTIONS(1395), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1395), - [anon_sym_NS_OPTIONS] = ACTIONS(1395), - [anon_sym_struct] = ACTIONS(1395), - [anon_sym_union] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1395), - [anon_sym_switch] = ACTIONS(1395), - [anon_sym_case] = ACTIONS(1395), - [anon_sym_default] = ACTIONS(1395), - [anon_sym_while] = ACTIONS(1395), - [anon_sym_do] = ACTIONS(1395), - [anon_sym_for] = ACTIONS(1395), - [anon_sym_return] = ACTIONS(1395), - [anon_sym_break] = ACTIONS(1395), - [anon_sym_continue] = ACTIONS(1395), - [anon_sym_goto] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1393), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_sizeof] = ACTIONS(1395), - [sym_number_literal] = ACTIONS(1393), - [anon_sym_L_SQUOTE] = ACTIONS(1393), - [anon_sym_u_SQUOTE] = ACTIONS(1393), - [anon_sym_U_SQUOTE] = ACTIONS(1393), - [anon_sym_u8_SQUOTE] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1393), - [anon_sym_L_DQUOTE] = ACTIONS(1393), - [anon_sym_u_DQUOTE] = ACTIONS(1393), - [anon_sym_U_DQUOTE] = ACTIONS(1393), - [anon_sym_u8_DQUOTE] = ACTIONS(1393), - [anon_sym_DQUOTE] = ACTIONS(1393), - [sym_true] = ACTIONS(1395), - [sym_false] = ACTIONS(1395), - [sym_null] = ACTIONS(1395), + [405] = { + [sym_identifier] = ACTIONS(1233), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1233), + [aux_sym_preproc_if_token2] = ACTIONS(1233), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1233), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1233), + [anon_sym_LPAREN2] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1231), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1233), + [anon_sym_extern] = ACTIONS(1233), + [anon_sym___attribute] = ACTIONS(1233), + [anon_sym___attribute__] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1233), + [anon_sym___cdecl] = ACTIONS(1233), + [anon_sym___clrcall] = ACTIONS(1233), + [anon_sym___stdcall] = ACTIONS(1233), + [anon_sym___fastcall] = ACTIONS(1233), + [anon_sym___thiscall] = ACTIONS(1233), + [anon_sym___vectorcall] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1233), + [anon_sym_auto] = ACTIONS(1233), + [anon_sym_register] = ACTIONS(1233), + [anon_sym_inline] = ACTIONS(1233), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_volatile] = ACTIONS(1233), + [anon_sym_restrict] = ACTIONS(1233), + [anon_sym__Atomic] = ACTIONS(1233), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_out] = ACTIONS(1233), + [anon_sym_inout] = ACTIONS(1233), + [anon_sym_bycopy] = ACTIONS(1233), + [anon_sym_byref] = ACTIONS(1233), + [anon_sym_oneway] = ACTIONS(1233), + [anon_sym__Nullable] = ACTIONS(1233), + [anon_sym__Nonnull] = ACTIONS(1233), + [anon_sym__Nullable_result] = ACTIONS(1233), + [anon_sym__Null_unspecified] = ACTIONS(1233), + [anon_sym___autoreleasing] = ACTIONS(1233), + [anon_sym___nullable] = ACTIONS(1233), + [anon_sym___nonnull] = ACTIONS(1233), + [anon_sym___strong] = ACTIONS(1233), + [anon_sym___weak] = ACTIONS(1233), + [anon_sym___bridge] = ACTIONS(1233), + [anon_sym___bridge_transfer] = ACTIONS(1233), + [anon_sym___bridge_retained] = ACTIONS(1233), + [anon_sym___unsafe_unretained] = ACTIONS(1233), + [anon_sym___block] = ACTIONS(1233), + [anon_sym___kindof] = ACTIONS(1233), + [anon_sym___unused] = ACTIONS(1233), + [anon_sym__Complex] = ACTIONS(1233), + [anon_sym___complex] = ACTIONS(1233), + [anon_sym_IBOutlet] = ACTIONS(1233), + [anon_sym_IBInspectable] = ACTIONS(1233), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1233), + [anon_sym_unsigned] = ACTIONS(1233), + [anon_sym_long] = ACTIONS(1233), + [anon_sym_short] = ACTIONS(1233), + [sym_primitive_type] = ACTIONS(1233), + [anon_sym_enum] = ACTIONS(1233), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_union] = ACTIONS(1233), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_else] = ACTIONS(1233), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_break] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(1233), + [anon_sym_goto] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(1233), + [sym_number_literal] = ACTIONS(1231), + [anon_sym_L_SQUOTE] = ACTIONS(1231), + [anon_sym_u_SQUOTE] = ACTIONS(1231), + [anon_sym_U_SQUOTE] = ACTIONS(1231), + [anon_sym_u8_SQUOTE] = ACTIONS(1231), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_L_DQUOTE] = ACTIONS(1231), + [anon_sym_u_DQUOTE] = ACTIONS(1231), + [anon_sym_U_DQUOTE] = ACTIONS(1231), + [anon_sym_u8_DQUOTE] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym_true] = ACTIONS(1233), + [sym_false] = ACTIONS(1233), + [sym_null] = ACTIONS(1233), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1393), - [anon_sym_ATimport] = ACTIONS(1393), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1395), - [anon_sym_ATcompatibility_alias] = ACTIONS(1393), - [anon_sym_ATprotocol] = ACTIONS(1393), - [anon_sym_ATclass] = ACTIONS(1393), - [anon_sym_ATinterface] = ACTIONS(1393), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1395), - [sym_method_attribute_specifier] = ACTIONS(1395), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1395), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1395), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1395), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1395), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1395), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1395), - [anon_sym_NS_AVAILABLE] = ACTIONS(1395), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1395), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1395), - [anon_sym_API_AVAILABLE] = ACTIONS(1395), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1395), - [anon_sym_API_DEPRECATED] = ACTIONS(1395), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1395), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1395), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1395), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1395), - [anon_sym___deprecated_msg] = ACTIONS(1395), - [anon_sym___deprecated_enum_msg] = ACTIONS(1395), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1395), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1395), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1395), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1395), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1395), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1395), - [anon_sym_ATimplementation] = ACTIONS(1393), - [anon_sym_typeof] = ACTIONS(1395), - [anon_sym___typeof] = ACTIONS(1395), - [anon_sym___typeof__] = ACTIONS(1395), - [sym_self] = ACTIONS(1395), - [sym_super] = ACTIONS(1395), - [sym_nil] = ACTIONS(1395), - [sym_id] = ACTIONS(1395), - [sym_instancetype] = ACTIONS(1395), - [sym_Class] = ACTIONS(1395), - [sym_SEL] = ACTIONS(1395), - [sym_IMP] = ACTIONS(1395), - [sym_BOOL] = ACTIONS(1395), - [sym_auto] = ACTIONS(1395), - [anon_sym_ATautoreleasepool] = ACTIONS(1393), - [anon_sym_ATsynchronized] = ACTIONS(1393), - [anon_sym_ATtry] = ACTIONS(1393), - [anon_sym_ATcatch] = ACTIONS(1393), - [anon_sym_ATfinally] = ACTIONS(1393), - [anon_sym_ATthrow] = ACTIONS(1393), - [anon_sym_ATselector] = ACTIONS(1393), - [anon_sym_ATencode] = ACTIONS(1393), - [anon_sym_AT] = ACTIONS(1395), - [sym_YES] = ACTIONS(1395), - [sym_NO] = ACTIONS(1395), - [anon_sym___builtin_available] = ACTIONS(1395), - [anon_sym_ATavailable] = ACTIONS(1393), - [anon_sym_va_arg] = ACTIONS(1395), + [anon_sym_POUNDimport] = ACTIONS(1231), + [anon_sym_ATimport] = ACTIONS(1231), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1233), + [anon_sym_ATcompatibility_alias] = ACTIONS(1231), + [anon_sym_ATprotocol] = ACTIONS(1231), + [anon_sym_ATclass] = ACTIONS(1231), + [anon_sym_ATinterface] = ACTIONS(1231), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1233), + [sym_method_attribute_specifier] = ACTIONS(1233), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1233), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1233), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1233), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1233), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1233), + [anon_sym_NS_AVAILABLE] = ACTIONS(1233), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1233), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_API_AVAILABLE] = ACTIONS(1233), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_API_DEPRECATED] = ACTIONS(1233), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1233), + [anon_sym___deprecated_msg] = ACTIONS(1233), + [anon_sym___deprecated_enum_msg] = ACTIONS(1233), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1233), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1233), + [anon_sym_ATimplementation] = ACTIONS(1231), + [anon_sym_NS_ENUM] = ACTIONS(1233), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1233), + [anon_sym_NS_OPTIONS] = ACTIONS(1233), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym___typeof] = ACTIONS(1233), + [anon_sym___typeof__] = ACTIONS(1233), + [sym_self] = ACTIONS(1233), + [sym_super] = ACTIONS(1233), + [sym_nil] = ACTIONS(1233), + [sym_id] = ACTIONS(1233), + [sym_instancetype] = ACTIONS(1233), + [sym_Class] = ACTIONS(1233), + [sym_SEL] = ACTIONS(1233), + [sym_IMP] = ACTIONS(1233), + [sym_BOOL] = ACTIONS(1233), + [sym_auto] = ACTIONS(1233), + [anon_sym_ATautoreleasepool] = ACTIONS(1231), + [anon_sym_ATsynchronized] = ACTIONS(1231), + [anon_sym_ATtry] = ACTIONS(1231), + [anon_sym_ATcatch] = ACTIONS(1231), + [anon_sym_ATfinally] = ACTIONS(1231), + [anon_sym_ATthrow] = ACTIONS(1231), + [anon_sym_ATselector] = ACTIONS(1231), + [anon_sym_ATencode] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1233), + [sym_YES] = ACTIONS(1233), + [sym_NO] = ACTIONS(1233), + [anon_sym___builtin_available] = ACTIONS(1233), + [anon_sym_ATavailable] = ACTIONS(1231), + [anon_sym_va_arg] = ACTIONS(1233), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -113133,174 +97177,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [497] = { - [sym_identifier] = ACTIONS(1391), - [aux_sym_preproc_include_token1] = ACTIONS(1389), - [aux_sym_preproc_def_token1] = ACTIONS(1389), - [aux_sym_preproc_if_token1] = ACTIONS(1391), - [aux_sym_preproc_if_token2] = ACTIONS(1391), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1391), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1391), - [anon_sym_LPAREN2] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_typedef] = ACTIONS(1391), - [anon_sym_extern] = ACTIONS(1391), - [anon_sym___attribute] = ACTIONS(1391), - [anon_sym___attribute__] = ACTIONS(1391), - [anon_sym___declspec] = ACTIONS(1391), - [anon_sym___cdecl] = ACTIONS(1391), - [anon_sym___clrcall] = ACTIONS(1391), - [anon_sym___stdcall] = ACTIONS(1391), - [anon_sym___fastcall] = ACTIONS(1391), - [anon_sym___thiscall] = ACTIONS(1391), - [anon_sym___vectorcall] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_auto] = ACTIONS(1391), - [anon_sym_register] = ACTIONS(1391), - [anon_sym_inline] = ACTIONS(1391), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1391), - [anon_sym_const] = ACTIONS(1391), - [anon_sym_volatile] = ACTIONS(1391), - [anon_sym_restrict] = ACTIONS(1391), - [anon_sym__Atomic] = ACTIONS(1391), - [anon_sym_in] = ACTIONS(1391), - [anon_sym_out] = ACTIONS(1391), - [anon_sym_inout] = ACTIONS(1391), - [anon_sym_bycopy] = ACTIONS(1391), - [anon_sym_byref] = ACTIONS(1391), - [anon_sym_oneway] = ACTIONS(1391), - [anon_sym__Nullable] = ACTIONS(1391), - [anon_sym__Nonnull] = ACTIONS(1391), - [anon_sym__Nullable_result] = ACTIONS(1391), - [anon_sym__Null_unspecified] = ACTIONS(1391), - [anon_sym___autoreleasing] = ACTIONS(1391), - [anon_sym___nullable] = ACTIONS(1391), - [anon_sym___nonnull] = ACTIONS(1391), - [anon_sym___strong] = ACTIONS(1391), - [anon_sym___weak] = ACTIONS(1391), - [anon_sym___bridge] = ACTIONS(1391), - [anon_sym___bridge_transfer] = ACTIONS(1391), - [anon_sym___bridge_retained] = ACTIONS(1391), - [anon_sym___unsafe_unretained] = ACTIONS(1391), - [anon_sym___block] = ACTIONS(1391), - [anon_sym___kindof] = ACTIONS(1391), - [anon_sym___unused] = ACTIONS(1391), - [anon_sym__Complex] = ACTIONS(1391), - [anon_sym___complex] = ACTIONS(1391), - [anon_sym_IBOutlet] = ACTIONS(1391), - [anon_sym_IBInspectable] = ACTIONS(1391), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1391), - [anon_sym_signed] = ACTIONS(1391), - [anon_sym_unsigned] = ACTIONS(1391), - [anon_sym_long] = ACTIONS(1391), - [anon_sym_short] = ACTIONS(1391), - [sym_primitive_type] = ACTIONS(1391), - [anon_sym_enum] = ACTIONS(1391), - [anon_sym_NS_ENUM] = ACTIONS(1391), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1391), - [anon_sym_NS_OPTIONS] = ACTIONS(1391), - [anon_sym_struct] = ACTIONS(1391), - [anon_sym_union] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1391), - [anon_sym_else] = ACTIONS(1391), - [anon_sym_switch] = ACTIONS(1391), - [anon_sym_case] = ACTIONS(1391), - [anon_sym_default] = ACTIONS(1391), - [anon_sym_while] = ACTIONS(1391), - [anon_sym_do] = ACTIONS(1391), - [anon_sym_for] = ACTIONS(1391), - [anon_sym_return] = ACTIONS(1391), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_continue] = ACTIONS(1391), - [anon_sym_goto] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1389), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_sizeof] = ACTIONS(1391), - [sym_number_literal] = ACTIONS(1389), - [anon_sym_L_SQUOTE] = ACTIONS(1389), - [anon_sym_u_SQUOTE] = ACTIONS(1389), - [anon_sym_U_SQUOTE] = ACTIONS(1389), - [anon_sym_u8_SQUOTE] = ACTIONS(1389), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_L_DQUOTE] = ACTIONS(1389), - [anon_sym_u_DQUOTE] = ACTIONS(1389), - [anon_sym_U_DQUOTE] = ACTIONS(1389), - [anon_sym_u8_DQUOTE] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym_true] = ACTIONS(1391), - [sym_false] = ACTIONS(1391), - [sym_null] = ACTIONS(1391), + [406] = { + [sym_identifier] = ACTIONS(1649), + [aux_sym_preproc_include_token1] = ACTIONS(1651), + [aux_sym_preproc_def_token1] = ACTIONS(1651), + [aux_sym_preproc_if_token1] = ACTIONS(1649), + [aux_sym_preproc_if_token2] = ACTIONS(1649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1649), + [anon_sym_LPAREN2] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1651), + [anon_sym_TILDE] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_CARET] = ACTIONS(1651), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1651), + [anon_sym_typedef] = ACTIONS(1649), + [anon_sym_extern] = ACTIONS(1649), + [anon_sym___attribute] = ACTIONS(1649), + [anon_sym___attribute__] = ACTIONS(1649), + [anon_sym___declspec] = ACTIONS(1649), + [anon_sym___cdecl] = ACTIONS(1649), + [anon_sym___clrcall] = ACTIONS(1649), + [anon_sym___stdcall] = ACTIONS(1649), + [anon_sym___fastcall] = ACTIONS(1649), + [anon_sym___thiscall] = ACTIONS(1649), + [anon_sym___vectorcall] = ACTIONS(1649), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1649), + [anon_sym_auto] = ACTIONS(1649), + [anon_sym_register] = ACTIONS(1649), + [anon_sym_inline] = ACTIONS(1649), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1649), + [anon_sym_const] = ACTIONS(1649), + [anon_sym_volatile] = ACTIONS(1649), + [anon_sym_restrict] = ACTIONS(1649), + [anon_sym__Atomic] = ACTIONS(1649), + [anon_sym_in] = ACTIONS(1649), + [anon_sym_out] = ACTIONS(1649), + [anon_sym_inout] = ACTIONS(1649), + [anon_sym_bycopy] = ACTIONS(1649), + [anon_sym_byref] = ACTIONS(1649), + [anon_sym_oneway] = ACTIONS(1649), + [anon_sym__Nullable] = ACTIONS(1649), + [anon_sym__Nonnull] = ACTIONS(1649), + [anon_sym__Nullable_result] = ACTIONS(1649), + [anon_sym__Null_unspecified] = ACTIONS(1649), + [anon_sym___autoreleasing] = ACTIONS(1649), + [anon_sym___nullable] = ACTIONS(1649), + [anon_sym___nonnull] = ACTIONS(1649), + [anon_sym___strong] = ACTIONS(1649), + [anon_sym___weak] = ACTIONS(1649), + [anon_sym___bridge] = ACTIONS(1649), + [anon_sym___bridge_transfer] = ACTIONS(1649), + [anon_sym___bridge_retained] = ACTIONS(1649), + [anon_sym___unsafe_unretained] = ACTIONS(1649), + [anon_sym___block] = ACTIONS(1649), + [anon_sym___kindof] = ACTIONS(1649), + [anon_sym___unused] = ACTIONS(1649), + [anon_sym__Complex] = ACTIONS(1649), + [anon_sym___complex] = ACTIONS(1649), + [anon_sym_IBOutlet] = ACTIONS(1649), + [anon_sym_IBInspectable] = ACTIONS(1649), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1649), + [anon_sym_signed] = ACTIONS(1649), + [anon_sym_unsigned] = ACTIONS(1649), + [anon_sym_long] = ACTIONS(1649), + [anon_sym_short] = ACTIONS(1649), + [sym_primitive_type] = ACTIONS(1649), + [anon_sym_enum] = ACTIONS(1649), + [anon_sym_struct] = ACTIONS(1649), + [anon_sym_union] = ACTIONS(1649), + [anon_sym_if] = ACTIONS(1649), + [anon_sym_else] = ACTIONS(1649), + [anon_sym_switch] = ACTIONS(1649), + [anon_sym_case] = ACTIONS(1649), + [anon_sym_default] = ACTIONS(1649), + [anon_sym_while] = ACTIONS(1649), + [anon_sym_do] = ACTIONS(1649), + [anon_sym_for] = ACTIONS(1649), + [anon_sym_return] = ACTIONS(1649), + [anon_sym_break] = ACTIONS(1649), + [anon_sym_continue] = ACTIONS(1649), + [anon_sym_goto] = ACTIONS(1649), + [anon_sym_DASH_DASH] = ACTIONS(1651), + [anon_sym_PLUS_PLUS] = ACTIONS(1651), + [anon_sym_sizeof] = ACTIONS(1649), + [sym_number_literal] = ACTIONS(1651), + [anon_sym_L_SQUOTE] = ACTIONS(1651), + [anon_sym_u_SQUOTE] = ACTIONS(1651), + [anon_sym_U_SQUOTE] = ACTIONS(1651), + [anon_sym_u8_SQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1651), + [anon_sym_L_DQUOTE] = ACTIONS(1651), + [anon_sym_u_DQUOTE] = ACTIONS(1651), + [anon_sym_U_DQUOTE] = ACTIONS(1651), + [anon_sym_u8_DQUOTE] = ACTIONS(1651), + [anon_sym_DQUOTE] = ACTIONS(1651), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1389), - [anon_sym_ATimport] = ACTIONS(1389), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1391), - [anon_sym_ATcompatibility_alias] = ACTIONS(1389), - [anon_sym_ATprotocol] = ACTIONS(1389), - [anon_sym_ATclass] = ACTIONS(1389), - [anon_sym_ATinterface] = ACTIONS(1389), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1391), - [sym_method_attribute_specifier] = ACTIONS(1391), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1391), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1391), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1391), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1391), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1391), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1391), - [anon_sym_NS_AVAILABLE] = ACTIONS(1391), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1391), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1391), - [anon_sym_API_AVAILABLE] = ACTIONS(1391), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1391), - [anon_sym_API_DEPRECATED] = ACTIONS(1391), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1391), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1391), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1391), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1391), - [anon_sym___deprecated_msg] = ACTIONS(1391), - [anon_sym___deprecated_enum_msg] = ACTIONS(1391), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1391), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1391), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1391), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1391), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1391), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1391), - [anon_sym_ATimplementation] = ACTIONS(1389), - [anon_sym_typeof] = ACTIONS(1391), - [anon_sym___typeof] = ACTIONS(1391), - [anon_sym___typeof__] = ACTIONS(1391), - [sym_self] = ACTIONS(1391), - [sym_super] = ACTIONS(1391), - [sym_nil] = ACTIONS(1391), - [sym_id] = ACTIONS(1391), - [sym_instancetype] = ACTIONS(1391), - [sym_Class] = ACTIONS(1391), - [sym_SEL] = ACTIONS(1391), - [sym_IMP] = ACTIONS(1391), - [sym_BOOL] = ACTIONS(1391), - [sym_auto] = ACTIONS(1391), - [anon_sym_ATautoreleasepool] = ACTIONS(1389), - [anon_sym_ATsynchronized] = ACTIONS(1389), - [anon_sym_ATtry] = ACTIONS(1389), - [anon_sym_ATcatch] = ACTIONS(1389), - [anon_sym_ATfinally] = ACTIONS(1389), - [anon_sym_ATthrow] = ACTIONS(1389), - [anon_sym_ATselector] = ACTIONS(1389), - [anon_sym_ATencode] = ACTIONS(1389), - [anon_sym_AT] = ACTIONS(1391), - [sym_YES] = ACTIONS(1391), - [sym_NO] = ACTIONS(1391), - [anon_sym___builtin_available] = ACTIONS(1391), - [anon_sym_ATavailable] = ACTIONS(1389), - [anon_sym_va_arg] = ACTIONS(1391), + [anon_sym_POUNDimport] = ACTIONS(1651), + [anon_sym_ATimport] = ACTIONS(1651), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1649), + [anon_sym_ATcompatibility_alias] = ACTIONS(1651), + [anon_sym_ATprotocol] = ACTIONS(1651), + [anon_sym_ATclass] = ACTIONS(1651), + [anon_sym_ATinterface] = ACTIONS(1651), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1649), + [sym_method_attribute_specifier] = ACTIONS(1649), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1649), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1649), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1649), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1649), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1649), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1649), + [anon_sym_NS_AVAILABLE] = ACTIONS(1649), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1649), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_API_AVAILABLE] = ACTIONS(1649), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1649), + [anon_sym_API_DEPRECATED] = ACTIONS(1649), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1649), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1649), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1649), + [anon_sym___deprecated_msg] = ACTIONS(1649), + [anon_sym___deprecated_enum_msg] = ACTIONS(1649), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1649), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1649), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1649), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1649), + [anon_sym_ATimplementation] = ACTIONS(1651), + [anon_sym_NS_ENUM] = ACTIONS(1649), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1649), + [anon_sym_NS_OPTIONS] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1649), + [anon_sym___typeof] = ACTIONS(1649), + [anon_sym___typeof__] = ACTIONS(1649), + [sym_self] = ACTIONS(1649), + [sym_super] = ACTIONS(1649), + [sym_nil] = ACTIONS(1649), + [sym_id] = ACTIONS(1649), + [sym_instancetype] = ACTIONS(1649), + [sym_Class] = ACTIONS(1649), + [sym_SEL] = ACTIONS(1649), + [sym_IMP] = ACTIONS(1649), + [sym_BOOL] = ACTIONS(1649), + [sym_auto] = ACTIONS(1649), + [anon_sym_ATautoreleasepool] = ACTIONS(1651), + [anon_sym_ATsynchronized] = ACTIONS(1651), + [anon_sym_ATtry] = ACTIONS(1651), + [anon_sym_ATcatch] = ACTIONS(1651), + [anon_sym_ATfinally] = ACTIONS(1651), + [anon_sym_ATthrow] = ACTIONS(1651), + [anon_sym_ATselector] = ACTIONS(1651), + [anon_sym_ATencode] = ACTIONS(1651), + [anon_sym_AT] = ACTIONS(1649), + [sym_YES] = ACTIONS(1649), + [sym_NO] = ACTIONS(1649), + [anon_sym___builtin_available] = ACTIONS(1649), + [anon_sym_ATavailable] = ACTIONS(1651), + [anon_sym_va_arg] = ACTIONS(1649), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -113308,174 +97352,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [498] = { - [sym_identifier] = ACTIONS(1387), - [aux_sym_preproc_include_token1] = ACTIONS(1385), - [aux_sym_preproc_def_token1] = ACTIONS(1385), - [aux_sym_preproc_if_token1] = ACTIONS(1387), - [aux_sym_preproc_if_token2] = ACTIONS(1387), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1387), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1387), - [anon_sym_LPAREN2] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_TILDE] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1387), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_typedef] = ACTIONS(1387), - [anon_sym_extern] = ACTIONS(1387), - [anon_sym___attribute] = ACTIONS(1387), - [anon_sym___attribute__] = ACTIONS(1387), - [anon_sym___declspec] = ACTIONS(1387), - [anon_sym___cdecl] = ACTIONS(1387), - [anon_sym___clrcall] = ACTIONS(1387), - [anon_sym___stdcall] = ACTIONS(1387), - [anon_sym___fastcall] = ACTIONS(1387), - [anon_sym___thiscall] = ACTIONS(1387), - [anon_sym___vectorcall] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1387), - [anon_sym_auto] = ACTIONS(1387), - [anon_sym_register] = ACTIONS(1387), - [anon_sym_inline] = ACTIONS(1387), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1387), - [anon_sym_const] = ACTIONS(1387), - [anon_sym_volatile] = ACTIONS(1387), - [anon_sym_restrict] = ACTIONS(1387), - [anon_sym__Atomic] = ACTIONS(1387), - [anon_sym_in] = ACTIONS(1387), - [anon_sym_out] = ACTIONS(1387), - [anon_sym_inout] = ACTIONS(1387), - [anon_sym_bycopy] = ACTIONS(1387), - [anon_sym_byref] = ACTIONS(1387), - [anon_sym_oneway] = ACTIONS(1387), - [anon_sym__Nullable] = ACTIONS(1387), - [anon_sym__Nonnull] = ACTIONS(1387), - [anon_sym__Nullable_result] = ACTIONS(1387), - [anon_sym__Null_unspecified] = ACTIONS(1387), - [anon_sym___autoreleasing] = ACTIONS(1387), - [anon_sym___nullable] = ACTIONS(1387), - [anon_sym___nonnull] = ACTIONS(1387), - [anon_sym___strong] = ACTIONS(1387), - [anon_sym___weak] = ACTIONS(1387), - [anon_sym___bridge] = ACTIONS(1387), - [anon_sym___bridge_transfer] = ACTIONS(1387), - [anon_sym___bridge_retained] = ACTIONS(1387), - [anon_sym___unsafe_unretained] = ACTIONS(1387), - [anon_sym___block] = ACTIONS(1387), - [anon_sym___kindof] = ACTIONS(1387), - [anon_sym___unused] = ACTIONS(1387), - [anon_sym__Complex] = ACTIONS(1387), - [anon_sym___complex] = ACTIONS(1387), - [anon_sym_IBOutlet] = ACTIONS(1387), - [anon_sym_IBInspectable] = ACTIONS(1387), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1387), - [anon_sym_signed] = ACTIONS(1387), - [anon_sym_unsigned] = ACTIONS(1387), - [anon_sym_long] = ACTIONS(1387), - [anon_sym_short] = ACTIONS(1387), - [sym_primitive_type] = ACTIONS(1387), - [anon_sym_enum] = ACTIONS(1387), - [anon_sym_NS_ENUM] = ACTIONS(1387), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1387), - [anon_sym_NS_OPTIONS] = ACTIONS(1387), - [anon_sym_struct] = ACTIONS(1387), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_else] = ACTIONS(1387), - [anon_sym_switch] = ACTIONS(1387), - [anon_sym_case] = ACTIONS(1387), - [anon_sym_default] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_do] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_goto] = ACTIONS(1387), - [anon_sym_DASH_DASH] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1385), - [anon_sym_sizeof] = ACTIONS(1387), - [sym_number_literal] = ACTIONS(1385), - [anon_sym_L_SQUOTE] = ACTIONS(1385), - [anon_sym_u_SQUOTE] = ACTIONS(1385), - [anon_sym_U_SQUOTE] = ACTIONS(1385), - [anon_sym_u8_SQUOTE] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_L_DQUOTE] = ACTIONS(1385), - [anon_sym_u_DQUOTE] = ACTIONS(1385), - [anon_sym_U_DQUOTE] = ACTIONS(1385), - [anon_sym_u8_DQUOTE] = ACTIONS(1385), - [anon_sym_DQUOTE] = ACTIONS(1385), - [sym_true] = ACTIONS(1387), - [sym_false] = ACTIONS(1387), - [sym_null] = ACTIONS(1387), + [407] = { + [sym_identifier] = ACTIONS(1225), + [aux_sym_preproc_include_token1] = ACTIONS(1223), + [aux_sym_preproc_def_token1] = ACTIONS(1223), + [aux_sym_preproc_if_token1] = ACTIONS(1225), + [aux_sym_preproc_if_token2] = ACTIONS(1225), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1225), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1225), + [anon_sym_LPAREN2] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1223), + [anon_sym_TILDE] = ACTIONS(1223), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1223), + [anon_sym_CARET] = ACTIONS(1223), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym_typedef] = ACTIONS(1225), + [anon_sym_extern] = ACTIONS(1225), + [anon_sym___attribute] = ACTIONS(1225), + [anon_sym___attribute__] = ACTIONS(1225), + [anon_sym___declspec] = ACTIONS(1225), + [anon_sym___cdecl] = ACTIONS(1225), + [anon_sym___clrcall] = ACTIONS(1225), + [anon_sym___stdcall] = ACTIONS(1225), + [anon_sym___fastcall] = ACTIONS(1225), + [anon_sym___thiscall] = ACTIONS(1225), + [anon_sym___vectorcall] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1223), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_auto] = ACTIONS(1225), + [anon_sym_register] = ACTIONS(1225), + [anon_sym_inline] = ACTIONS(1225), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_volatile] = ACTIONS(1225), + [anon_sym_restrict] = ACTIONS(1225), + [anon_sym__Atomic] = ACTIONS(1225), + [anon_sym_in] = ACTIONS(1225), + [anon_sym_out] = ACTIONS(1225), + [anon_sym_inout] = ACTIONS(1225), + [anon_sym_bycopy] = ACTIONS(1225), + [anon_sym_byref] = ACTIONS(1225), + [anon_sym_oneway] = ACTIONS(1225), + [anon_sym__Nullable] = ACTIONS(1225), + [anon_sym__Nonnull] = ACTIONS(1225), + [anon_sym__Nullable_result] = ACTIONS(1225), + [anon_sym__Null_unspecified] = ACTIONS(1225), + [anon_sym___autoreleasing] = ACTIONS(1225), + [anon_sym___nullable] = ACTIONS(1225), + [anon_sym___nonnull] = ACTIONS(1225), + [anon_sym___strong] = ACTIONS(1225), + [anon_sym___weak] = ACTIONS(1225), + [anon_sym___bridge] = ACTIONS(1225), + [anon_sym___bridge_transfer] = ACTIONS(1225), + [anon_sym___bridge_retained] = ACTIONS(1225), + [anon_sym___unsafe_unretained] = ACTIONS(1225), + [anon_sym___block] = ACTIONS(1225), + [anon_sym___kindof] = ACTIONS(1225), + [anon_sym___unused] = ACTIONS(1225), + [anon_sym__Complex] = ACTIONS(1225), + [anon_sym___complex] = ACTIONS(1225), + [anon_sym_IBOutlet] = ACTIONS(1225), + [anon_sym_IBInspectable] = ACTIONS(1225), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1225), + [anon_sym_signed] = ACTIONS(1225), + [anon_sym_unsigned] = ACTIONS(1225), + [anon_sym_long] = ACTIONS(1225), + [anon_sym_short] = ACTIONS(1225), + [sym_primitive_type] = ACTIONS(1225), + [anon_sym_enum] = ACTIONS(1225), + [anon_sym_struct] = ACTIONS(1225), + [anon_sym_union] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_else] = ACTIONS(1225), + [anon_sym_switch] = ACTIONS(1225), + [anon_sym_case] = ACTIONS(1225), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_goto] = ACTIONS(1225), + [anon_sym_DASH_DASH] = ACTIONS(1223), + [anon_sym_PLUS_PLUS] = ACTIONS(1223), + [anon_sym_sizeof] = ACTIONS(1225), + [sym_number_literal] = ACTIONS(1223), + [anon_sym_L_SQUOTE] = ACTIONS(1223), + [anon_sym_u_SQUOTE] = ACTIONS(1223), + [anon_sym_U_SQUOTE] = ACTIONS(1223), + [anon_sym_u8_SQUOTE] = ACTIONS(1223), + [anon_sym_SQUOTE] = ACTIONS(1223), + [anon_sym_L_DQUOTE] = ACTIONS(1223), + [anon_sym_u_DQUOTE] = ACTIONS(1223), + [anon_sym_U_DQUOTE] = ACTIONS(1223), + [anon_sym_u8_DQUOTE] = ACTIONS(1223), + [anon_sym_DQUOTE] = ACTIONS(1223), + [sym_true] = ACTIONS(1225), + [sym_false] = ACTIONS(1225), + [sym_null] = ACTIONS(1225), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1385), - [anon_sym_ATimport] = ACTIONS(1385), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1387), - [anon_sym_ATcompatibility_alias] = ACTIONS(1385), - [anon_sym_ATprotocol] = ACTIONS(1385), - [anon_sym_ATclass] = ACTIONS(1385), - [anon_sym_ATinterface] = ACTIONS(1385), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1387), - [sym_method_attribute_specifier] = ACTIONS(1387), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1387), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1387), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1387), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1387), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1387), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1387), - [anon_sym_NS_AVAILABLE] = ACTIONS(1387), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1387), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1387), - [anon_sym_API_AVAILABLE] = ACTIONS(1387), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1387), - [anon_sym_API_DEPRECATED] = ACTIONS(1387), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1387), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1387), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1387), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1387), - [anon_sym___deprecated_msg] = ACTIONS(1387), - [anon_sym___deprecated_enum_msg] = ACTIONS(1387), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1387), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1387), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1387), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1387), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1387), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1387), - [anon_sym_ATimplementation] = ACTIONS(1385), - [anon_sym_typeof] = ACTIONS(1387), - [anon_sym___typeof] = ACTIONS(1387), - [anon_sym___typeof__] = ACTIONS(1387), - [sym_self] = ACTIONS(1387), - [sym_super] = ACTIONS(1387), - [sym_nil] = ACTIONS(1387), - [sym_id] = ACTIONS(1387), - [sym_instancetype] = ACTIONS(1387), - [sym_Class] = ACTIONS(1387), - [sym_SEL] = ACTIONS(1387), - [sym_IMP] = ACTIONS(1387), - [sym_BOOL] = ACTIONS(1387), - [sym_auto] = ACTIONS(1387), - [anon_sym_ATautoreleasepool] = ACTIONS(1385), - [anon_sym_ATsynchronized] = ACTIONS(1385), - [anon_sym_ATtry] = ACTIONS(1385), - [anon_sym_ATcatch] = ACTIONS(1385), - [anon_sym_ATfinally] = ACTIONS(1385), - [anon_sym_ATthrow] = ACTIONS(1385), - [anon_sym_ATselector] = ACTIONS(1385), - [anon_sym_ATencode] = ACTIONS(1385), - [anon_sym_AT] = ACTIONS(1387), - [sym_YES] = ACTIONS(1387), - [sym_NO] = ACTIONS(1387), - [anon_sym___builtin_available] = ACTIONS(1387), - [anon_sym_ATavailable] = ACTIONS(1385), - [anon_sym_va_arg] = ACTIONS(1387), + [anon_sym_POUNDimport] = ACTIONS(1223), + [anon_sym_ATimport] = ACTIONS(1223), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1225), + [anon_sym_ATcompatibility_alias] = ACTIONS(1223), + [anon_sym_ATprotocol] = ACTIONS(1223), + [anon_sym_ATclass] = ACTIONS(1223), + [anon_sym_ATinterface] = ACTIONS(1223), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1225), + [sym_method_attribute_specifier] = ACTIONS(1225), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1225), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1225), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1225), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1225), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1225), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1225), + [anon_sym_NS_AVAILABLE] = ACTIONS(1225), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1225), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1225), + [anon_sym_API_AVAILABLE] = ACTIONS(1225), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1225), + [anon_sym_API_DEPRECATED] = ACTIONS(1225), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1225), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1225), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1225), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1225), + [anon_sym___deprecated_msg] = ACTIONS(1225), + [anon_sym___deprecated_enum_msg] = ACTIONS(1225), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1225), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1225), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1225), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1225), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1225), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1225), + [anon_sym_ATimplementation] = ACTIONS(1223), + [anon_sym_NS_ENUM] = ACTIONS(1225), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1225), + [anon_sym_NS_OPTIONS] = ACTIONS(1225), + [anon_sym_typeof] = ACTIONS(1225), + [anon_sym___typeof] = ACTIONS(1225), + [anon_sym___typeof__] = ACTIONS(1225), + [sym_self] = ACTIONS(1225), + [sym_super] = ACTIONS(1225), + [sym_nil] = ACTIONS(1225), + [sym_id] = ACTIONS(1225), + [sym_instancetype] = ACTIONS(1225), + [sym_Class] = ACTIONS(1225), + [sym_SEL] = ACTIONS(1225), + [sym_IMP] = ACTIONS(1225), + [sym_BOOL] = ACTIONS(1225), + [sym_auto] = ACTIONS(1225), + [anon_sym_ATautoreleasepool] = ACTIONS(1223), + [anon_sym_ATsynchronized] = ACTIONS(1223), + [anon_sym_ATtry] = ACTIONS(1223), + [anon_sym_ATcatch] = ACTIONS(1223), + [anon_sym_ATfinally] = ACTIONS(1223), + [anon_sym_ATthrow] = ACTIONS(1223), + [anon_sym_ATselector] = ACTIONS(1223), + [anon_sym_ATencode] = ACTIONS(1223), + [anon_sym_AT] = ACTIONS(1225), + [sym_YES] = ACTIONS(1225), + [sym_NO] = ACTIONS(1225), + [anon_sym___builtin_available] = ACTIONS(1225), + [anon_sym_ATavailable] = ACTIONS(1223), + [anon_sym_va_arg] = ACTIONS(1225), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -113483,174 +97527,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [499] = { - [sym_identifier] = ACTIONS(1383), - [aux_sym_preproc_include_token1] = ACTIONS(1381), - [aux_sym_preproc_def_token1] = ACTIONS(1381), - [aux_sym_preproc_if_token1] = ACTIONS(1383), - [aux_sym_preproc_if_token2] = ACTIONS(1383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1383), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1383), - [anon_sym_LPAREN2] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_TILDE] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_CARET] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_typedef] = ACTIONS(1383), - [anon_sym_extern] = ACTIONS(1383), - [anon_sym___attribute] = ACTIONS(1383), - [anon_sym___attribute__] = ACTIONS(1383), - [anon_sym___declspec] = ACTIONS(1383), - [anon_sym___cdecl] = ACTIONS(1383), - [anon_sym___clrcall] = ACTIONS(1383), - [anon_sym___stdcall] = ACTIONS(1383), - [anon_sym___fastcall] = ACTIONS(1383), - [anon_sym___thiscall] = ACTIONS(1383), - [anon_sym___vectorcall] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1383), - [anon_sym_auto] = ACTIONS(1383), - [anon_sym_register] = ACTIONS(1383), - [anon_sym_inline] = ACTIONS(1383), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1383), - [anon_sym_const] = ACTIONS(1383), - [anon_sym_volatile] = ACTIONS(1383), - [anon_sym_restrict] = ACTIONS(1383), - [anon_sym__Atomic] = ACTIONS(1383), - [anon_sym_in] = ACTIONS(1383), - [anon_sym_out] = ACTIONS(1383), - [anon_sym_inout] = ACTIONS(1383), - [anon_sym_bycopy] = ACTIONS(1383), - [anon_sym_byref] = ACTIONS(1383), - [anon_sym_oneway] = ACTIONS(1383), - [anon_sym__Nullable] = ACTIONS(1383), - [anon_sym__Nonnull] = ACTIONS(1383), - [anon_sym__Nullable_result] = ACTIONS(1383), - [anon_sym__Null_unspecified] = ACTIONS(1383), - [anon_sym___autoreleasing] = ACTIONS(1383), - [anon_sym___nullable] = ACTIONS(1383), - [anon_sym___nonnull] = ACTIONS(1383), - [anon_sym___strong] = ACTIONS(1383), - [anon_sym___weak] = ACTIONS(1383), - [anon_sym___bridge] = ACTIONS(1383), - [anon_sym___bridge_transfer] = ACTIONS(1383), - [anon_sym___bridge_retained] = ACTIONS(1383), - [anon_sym___unsafe_unretained] = ACTIONS(1383), - [anon_sym___block] = ACTIONS(1383), - [anon_sym___kindof] = ACTIONS(1383), - [anon_sym___unused] = ACTIONS(1383), - [anon_sym__Complex] = ACTIONS(1383), - [anon_sym___complex] = ACTIONS(1383), - [anon_sym_IBOutlet] = ACTIONS(1383), - [anon_sym_IBInspectable] = ACTIONS(1383), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1383), - [anon_sym_signed] = ACTIONS(1383), - [anon_sym_unsigned] = ACTIONS(1383), - [anon_sym_long] = ACTIONS(1383), - [anon_sym_short] = ACTIONS(1383), - [sym_primitive_type] = ACTIONS(1383), - [anon_sym_enum] = ACTIONS(1383), - [anon_sym_NS_ENUM] = ACTIONS(1383), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1383), - [anon_sym_NS_OPTIONS] = ACTIONS(1383), - [anon_sym_struct] = ACTIONS(1383), - [anon_sym_union] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_else] = ACTIONS(1383), - [anon_sym_switch] = ACTIONS(1383), - [anon_sym_case] = ACTIONS(1383), - [anon_sym_default] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_do] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_goto] = ACTIONS(1383), - [anon_sym_DASH_DASH] = ACTIONS(1381), - [anon_sym_PLUS_PLUS] = ACTIONS(1381), - [anon_sym_sizeof] = ACTIONS(1383), - [sym_number_literal] = ACTIONS(1381), - [anon_sym_L_SQUOTE] = ACTIONS(1381), - [anon_sym_u_SQUOTE] = ACTIONS(1381), - [anon_sym_U_SQUOTE] = ACTIONS(1381), - [anon_sym_u8_SQUOTE] = ACTIONS(1381), - [anon_sym_SQUOTE] = ACTIONS(1381), - [anon_sym_L_DQUOTE] = ACTIONS(1381), - [anon_sym_u_DQUOTE] = ACTIONS(1381), - [anon_sym_U_DQUOTE] = ACTIONS(1381), - [anon_sym_u8_DQUOTE] = ACTIONS(1381), - [anon_sym_DQUOTE] = ACTIONS(1381), - [sym_true] = ACTIONS(1383), - [sym_false] = ACTIONS(1383), - [sym_null] = ACTIONS(1383), + [408] = { + [sym_identifier] = ACTIONS(1365), + [aux_sym_preproc_include_token1] = ACTIONS(1363), + [aux_sym_preproc_def_token1] = ACTIONS(1363), + [aux_sym_preproc_if_token1] = ACTIONS(1365), + [aux_sym_preproc_if_token2] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1365), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1365), + [anon_sym_LPAREN2] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_TILDE] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1365), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_typedef] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym___attribute] = ACTIONS(1365), + [anon_sym___attribute__] = ACTIONS(1365), + [anon_sym___declspec] = ACTIONS(1365), + [anon_sym___cdecl] = ACTIONS(1365), + [anon_sym___clrcall] = ACTIONS(1365), + [anon_sym___stdcall] = ACTIONS(1365), + [anon_sym___fastcall] = ACTIONS(1365), + [anon_sym___thiscall] = ACTIONS(1365), + [anon_sym___vectorcall] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1363), + [anon_sym_static] = ACTIONS(1365), + [anon_sym_auto] = ACTIONS(1365), + [anon_sym_register] = ACTIONS(1365), + [anon_sym_inline] = ACTIONS(1365), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_volatile] = ACTIONS(1365), + [anon_sym_restrict] = ACTIONS(1365), + [anon_sym__Atomic] = ACTIONS(1365), + [anon_sym_in] = ACTIONS(1365), + [anon_sym_out] = ACTIONS(1365), + [anon_sym_inout] = ACTIONS(1365), + [anon_sym_bycopy] = ACTIONS(1365), + [anon_sym_byref] = ACTIONS(1365), + [anon_sym_oneway] = ACTIONS(1365), + [anon_sym__Nullable] = ACTIONS(1365), + [anon_sym__Nonnull] = ACTIONS(1365), + [anon_sym__Nullable_result] = ACTIONS(1365), + [anon_sym__Null_unspecified] = ACTIONS(1365), + [anon_sym___autoreleasing] = ACTIONS(1365), + [anon_sym___nullable] = ACTIONS(1365), + [anon_sym___nonnull] = ACTIONS(1365), + [anon_sym___strong] = ACTIONS(1365), + [anon_sym___weak] = ACTIONS(1365), + [anon_sym___bridge] = ACTIONS(1365), + [anon_sym___bridge_transfer] = ACTIONS(1365), + [anon_sym___bridge_retained] = ACTIONS(1365), + [anon_sym___unsafe_unretained] = ACTIONS(1365), + [anon_sym___block] = ACTIONS(1365), + [anon_sym___kindof] = ACTIONS(1365), + [anon_sym___unused] = ACTIONS(1365), + [anon_sym__Complex] = ACTIONS(1365), + [anon_sym___complex] = ACTIONS(1365), + [anon_sym_IBOutlet] = ACTIONS(1365), + [anon_sym_IBInspectable] = ACTIONS(1365), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1365), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), + [sym_primitive_type] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_else] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1365), + [anon_sym_case] = ACTIONS(1365), + [anon_sym_default] = ACTIONS(1365), + [anon_sym_while] = ACTIONS(1365), + [anon_sym_do] = ACTIONS(1365), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1365), + [anon_sym_break] = ACTIONS(1365), + [anon_sym_continue] = ACTIONS(1365), + [anon_sym_goto] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1363), + [anon_sym_PLUS_PLUS] = ACTIONS(1363), + [anon_sym_sizeof] = ACTIONS(1365), + [sym_number_literal] = ACTIONS(1363), + [anon_sym_L_SQUOTE] = ACTIONS(1363), + [anon_sym_u_SQUOTE] = ACTIONS(1363), + [anon_sym_U_SQUOTE] = ACTIONS(1363), + [anon_sym_u8_SQUOTE] = ACTIONS(1363), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_L_DQUOTE] = ACTIONS(1363), + [anon_sym_u_DQUOTE] = ACTIONS(1363), + [anon_sym_U_DQUOTE] = ACTIONS(1363), + [anon_sym_u8_DQUOTE] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(1363), + [sym_true] = ACTIONS(1365), + [sym_false] = ACTIONS(1365), + [sym_null] = ACTIONS(1365), [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1381), - [anon_sym_ATimport] = ACTIONS(1381), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1383), - [anon_sym_ATcompatibility_alias] = ACTIONS(1381), - [anon_sym_ATprotocol] = ACTIONS(1381), - [anon_sym_ATclass] = ACTIONS(1381), - [anon_sym_ATinterface] = ACTIONS(1381), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1383), - [sym_method_attribute_specifier] = ACTIONS(1383), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1383), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1383), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1383), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1383), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1383), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1383), - [anon_sym_NS_AVAILABLE] = ACTIONS(1383), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1383), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1383), - [anon_sym_API_AVAILABLE] = ACTIONS(1383), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1383), - [anon_sym_API_DEPRECATED] = ACTIONS(1383), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1383), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1383), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1383), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1383), - [anon_sym___deprecated_msg] = ACTIONS(1383), - [anon_sym___deprecated_enum_msg] = ACTIONS(1383), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1383), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1383), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1383), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1383), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1383), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1383), - [anon_sym_ATimplementation] = ACTIONS(1381), - [anon_sym_typeof] = ACTIONS(1383), - [anon_sym___typeof] = ACTIONS(1383), - [anon_sym___typeof__] = ACTIONS(1383), - [sym_self] = ACTIONS(1383), - [sym_super] = ACTIONS(1383), - [sym_nil] = ACTIONS(1383), - [sym_id] = ACTIONS(1383), - [sym_instancetype] = ACTIONS(1383), - [sym_Class] = ACTIONS(1383), - [sym_SEL] = ACTIONS(1383), - [sym_IMP] = ACTIONS(1383), - [sym_BOOL] = ACTIONS(1383), - [sym_auto] = ACTIONS(1383), - [anon_sym_ATautoreleasepool] = ACTIONS(1381), - [anon_sym_ATsynchronized] = ACTIONS(1381), - [anon_sym_ATtry] = ACTIONS(1381), - [anon_sym_ATcatch] = ACTIONS(1381), - [anon_sym_ATfinally] = ACTIONS(1381), - [anon_sym_ATthrow] = ACTIONS(1381), - [anon_sym_ATselector] = ACTIONS(1381), - [anon_sym_ATencode] = ACTIONS(1381), - [anon_sym_AT] = ACTIONS(1383), - [sym_YES] = ACTIONS(1383), - [sym_NO] = ACTIONS(1383), - [anon_sym___builtin_available] = ACTIONS(1383), - [anon_sym_ATavailable] = ACTIONS(1381), - [anon_sym_va_arg] = ACTIONS(1383), + [anon_sym_POUNDimport] = ACTIONS(1363), + [anon_sym_ATimport] = ACTIONS(1363), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1365), + [anon_sym_ATcompatibility_alias] = ACTIONS(1363), + [anon_sym_ATprotocol] = ACTIONS(1363), + [anon_sym_ATclass] = ACTIONS(1363), + [anon_sym_ATinterface] = ACTIONS(1363), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1365), + [sym_method_attribute_specifier] = ACTIONS(1365), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1365), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1365), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1365), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1365), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1365), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1365), + [anon_sym_NS_AVAILABLE] = ACTIONS(1365), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1365), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1365), + [anon_sym_API_AVAILABLE] = ACTIONS(1365), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1365), + [anon_sym_API_DEPRECATED] = ACTIONS(1365), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1365), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1365), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1365), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1365), + [anon_sym___deprecated_msg] = ACTIONS(1365), + [anon_sym___deprecated_enum_msg] = ACTIONS(1365), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1365), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1365), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1365), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1365), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1365), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1365), + [anon_sym_ATimplementation] = ACTIONS(1363), + [anon_sym_NS_ENUM] = ACTIONS(1365), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1365), + [anon_sym_NS_OPTIONS] = ACTIONS(1365), + [anon_sym_typeof] = ACTIONS(1365), + [anon_sym___typeof] = ACTIONS(1365), + [anon_sym___typeof__] = ACTIONS(1365), + [sym_self] = ACTIONS(1365), + [sym_super] = ACTIONS(1365), + [sym_nil] = ACTIONS(1365), + [sym_id] = ACTIONS(1365), + [sym_instancetype] = ACTIONS(1365), + [sym_Class] = ACTIONS(1365), + [sym_SEL] = ACTIONS(1365), + [sym_IMP] = ACTIONS(1365), + [sym_BOOL] = ACTIONS(1365), + [sym_auto] = ACTIONS(1365), + [anon_sym_ATautoreleasepool] = ACTIONS(1363), + [anon_sym_ATsynchronized] = ACTIONS(1363), + [anon_sym_ATtry] = ACTIONS(1363), + [anon_sym_ATcatch] = ACTIONS(1363), + [anon_sym_ATfinally] = ACTIONS(1363), + [anon_sym_ATthrow] = ACTIONS(1363), + [anon_sym_ATselector] = ACTIONS(1363), + [anon_sym_ATencode] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1365), + [sym_YES] = ACTIONS(1365), + [sym_NO] = ACTIONS(1365), + [anon_sym___builtin_available] = ACTIONS(1365), + [anon_sym_ATavailable] = ACTIONS(1363), + [anon_sym_va_arg] = ACTIONS(1365), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -113658,357 +97702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [500] = { - [sym_identifier] = ACTIONS(1255), - [aux_sym_preproc_include_token1] = ACTIONS(1257), - [aux_sym_preproc_def_token1] = ACTIONS(1257), - [aux_sym_preproc_if_token1] = ACTIONS(1255), - [aux_sym_preproc_if_token2] = ACTIONS(1255), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1255), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1255), - [anon_sym_LPAREN2] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_TILDE] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1255), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_typedef] = ACTIONS(1255), - [anon_sym_extern] = ACTIONS(1255), - [anon_sym___attribute] = ACTIONS(1255), - [anon_sym___attribute__] = ACTIONS(1255), - [anon_sym___declspec] = ACTIONS(1255), - [anon_sym___cdecl] = ACTIONS(1255), - [anon_sym___clrcall] = ACTIONS(1255), - [anon_sym___stdcall] = ACTIONS(1255), - [anon_sym___fastcall] = ACTIONS(1255), - [anon_sym___thiscall] = ACTIONS(1255), - [anon_sym___vectorcall] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_static] = ACTIONS(1255), - [anon_sym_auto] = ACTIONS(1255), - [anon_sym_register] = ACTIONS(1255), - [anon_sym_inline] = ACTIONS(1255), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1255), - [anon_sym_const] = ACTIONS(1255), - [anon_sym_volatile] = ACTIONS(1255), - [anon_sym_restrict] = ACTIONS(1255), - [anon_sym__Atomic] = ACTIONS(1255), - [anon_sym_in] = ACTIONS(1255), - [anon_sym_out] = ACTIONS(1255), - [anon_sym_inout] = ACTIONS(1255), - [anon_sym_bycopy] = ACTIONS(1255), - [anon_sym_byref] = ACTIONS(1255), - [anon_sym_oneway] = ACTIONS(1255), - [anon_sym__Nullable] = ACTIONS(1255), - [anon_sym__Nonnull] = ACTIONS(1255), - [anon_sym__Nullable_result] = ACTIONS(1255), - [anon_sym__Null_unspecified] = ACTIONS(1255), - [anon_sym___autoreleasing] = ACTIONS(1255), - [anon_sym___nullable] = ACTIONS(1255), - [anon_sym___nonnull] = ACTIONS(1255), - [anon_sym___strong] = ACTIONS(1255), - [anon_sym___weak] = ACTIONS(1255), - [anon_sym___bridge] = ACTIONS(1255), - [anon_sym___bridge_transfer] = ACTIONS(1255), - [anon_sym___bridge_retained] = ACTIONS(1255), - [anon_sym___unsafe_unretained] = ACTIONS(1255), - [anon_sym___block] = ACTIONS(1255), - [anon_sym___kindof] = ACTIONS(1255), - [anon_sym___unused] = ACTIONS(1255), - [anon_sym__Complex] = ACTIONS(1255), - [anon_sym___complex] = ACTIONS(1255), - [anon_sym_IBOutlet] = ACTIONS(1255), - [anon_sym_IBInspectable] = ACTIONS(1255), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1255), - [anon_sym_signed] = ACTIONS(1255), - [anon_sym_unsigned] = ACTIONS(1255), - [anon_sym_long] = ACTIONS(1255), - [anon_sym_short] = ACTIONS(1255), - [sym_primitive_type] = ACTIONS(1255), - [anon_sym_enum] = ACTIONS(1255), - [anon_sym_NS_ENUM] = ACTIONS(1255), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1255), - [anon_sym_NS_OPTIONS] = ACTIONS(1255), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_union] = ACTIONS(1255), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_switch] = ACTIONS(1255), - [anon_sym_case] = ACTIONS(1255), - [anon_sym_default] = ACTIONS(1255), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_do] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_return] = ACTIONS(1255), - [anon_sym_break] = ACTIONS(1255), - [anon_sym_continue] = ACTIONS(1255), - [anon_sym_goto] = ACTIONS(1255), - [anon_sym_DASH_DASH] = ACTIONS(1257), - [anon_sym_PLUS_PLUS] = ACTIONS(1257), - [anon_sym_sizeof] = ACTIONS(1255), - [sym_number_literal] = ACTIONS(1257), - [anon_sym_L_SQUOTE] = ACTIONS(1257), - [anon_sym_u_SQUOTE] = ACTIONS(1257), - [anon_sym_U_SQUOTE] = ACTIONS(1257), - [anon_sym_u8_SQUOTE] = ACTIONS(1257), - [anon_sym_SQUOTE] = ACTIONS(1257), - [anon_sym_L_DQUOTE] = ACTIONS(1257), - [anon_sym_u_DQUOTE] = ACTIONS(1257), - [anon_sym_U_DQUOTE] = ACTIONS(1257), - [anon_sym_u8_DQUOTE] = ACTIONS(1257), - [anon_sym_DQUOTE] = ACTIONS(1257), - [sym_true] = ACTIONS(1255), - [sym_false] = ACTIONS(1255), - [sym_null] = ACTIONS(1255), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1257), - [anon_sym_ATimport] = ACTIONS(1257), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1255), - [anon_sym_ATcompatibility_alias] = ACTIONS(1257), - [anon_sym_ATprotocol] = ACTIONS(1257), - [anon_sym_ATclass] = ACTIONS(1257), - [anon_sym_ATinterface] = ACTIONS(1257), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1255), - [sym_method_attribute_specifier] = ACTIONS(1255), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1255), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1255), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1255), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1255), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1255), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1255), - [anon_sym_NS_AVAILABLE] = ACTIONS(1255), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1255), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1255), - [anon_sym_API_AVAILABLE] = ACTIONS(1255), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1255), - [anon_sym_API_DEPRECATED] = ACTIONS(1255), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1255), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1255), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1255), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1255), - [anon_sym___deprecated_msg] = ACTIONS(1255), - [anon_sym___deprecated_enum_msg] = ACTIONS(1255), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1255), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1255), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1255), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1255), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1255), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1255), - [anon_sym_ATimplementation] = ACTIONS(1257), - [anon_sym_typeof] = ACTIONS(1255), - [anon_sym___typeof] = ACTIONS(1255), - [anon_sym___typeof__] = ACTIONS(1255), - [sym_self] = ACTIONS(1255), - [sym_super] = ACTIONS(1255), - [sym_nil] = ACTIONS(1255), - [sym_id] = ACTIONS(1255), - [sym_instancetype] = ACTIONS(1255), - [sym_Class] = ACTIONS(1255), - [sym_SEL] = ACTIONS(1255), - [sym_IMP] = ACTIONS(1255), - [sym_BOOL] = ACTIONS(1255), - [sym_auto] = ACTIONS(1255), - [anon_sym_ATautoreleasepool] = ACTIONS(1257), - [anon_sym_ATsynchronized] = ACTIONS(1257), - [anon_sym_ATtry] = ACTIONS(1257), - [anon_sym_ATcatch] = ACTIONS(1257), - [anon_sym_ATfinally] = ACTIONS(1257), - [anon_sym_ATthrow] = ACTIONS(1257), - [anon_sym_ATselector] = ACTIONS(1257), - [anon_sym_ATencode] = ACTIONS(1257), - [anon_sym_AT] = ACTIONS(1255), - [sym_YES] = ACTIONS(1255), - [sym_NO] = ACTIONS(1255), - [anon_sym___builtin_available] = ACTIONS(1255), - [anon_sym_ATavailable] = ACTIONS(1257), - [anon_sym_va_arg] = ACTIONS(1255), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [501] = { - [sym_identifier] = ACTIONS(1707), - [aux_sym_preproc_include_token1] = ACTIONS(1705), - [aux_sym_preproc_def_token1] = ACTIONS(1705), - [aux_sym_preproc_if_token1] = ACTIONS(1707), - [aux_sym_preproc_if_token2] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1707), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_CARET] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_typedef] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym___attribute] = ACTIONS(1707), - [anon_sym___attribute__] = ACTIONS(1707), - [anon_sym___declspec] = ACTIONS(1707), - [anon_sym___cdecl] = ACTIONS(1707), - [anon_sym___clrcall] = ACTIONS(1707), - [anon_sym___stdcall] = ACTIONS(1707), - [anon_sym___fastcall] = ACTIONS(1707), - [anon_sym___thiscall] = ACTIONS(1707), - [anon_sym___vectorcall] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_auto] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_inline] = ACTIONS(1707), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym_restrict] = ACTIONS(1707), - [anon_sym__Atomic] = ACTIONS(1707), - [anon_sym_in] = ACTIONS(1707), - [anon_sym_out] = ACTIONS(1707), - [anon_sym_inout] = ACTIONS(1707), - [anon_sym_bycopy] = ACTIONS(1707), - [anon_sym_byref] = ACTIONS(1707), - [anon_sym_oneway] = ACTIONS(1707), - [anon_sym__Nullable] = ACTIONS(1707), - [anon_sym__Nonnull] = ACTIONS(1707), - [anon_sym__Nullable_result] = ACTIONS(1707), - [anon_sym__Null_unspecified] = ACTIONS(1707), - [anon_sym___autoreleasing] = ACTIONS(1707), - [anon_sym___nullable] = ACTIONS(1707), - [anon_sym___nonnull] = ACTIONS(1707), - [anon_sym___strong] = ACTIONS(1707), - [anon_sym___weak] = ACTIONS(1707), - [anon_sym___bridge] = ACTIONS(1707), - [anon_sym___bridge_transfer] = ACTIONS(1707), - [anon_sym___bridge_retained] = ACTIONS(1707), - [anon_sym___unsafe_unretained] = ACTIONS(1707), - [anon_sym___block] = ACTIONS(1707), - [anon_sym___kindof] = ACTIONS(1707), - [anon_sym___unused] = ACTIONS(1707), - [anon_sym__Complex] = ACTIONS(1707), - [anon_sym___complex] = ACTIONS(1707), - [anon_sym_IBOutlet] = ACTIONS(1707), - [anon_sym_IBInspectable] = ACTIONS(1707), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1707), - [anon_sym_signed] = ACTIONS(1707), - [anon_sym_unsigned] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [sym_primitive_type] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_NS_ENUM] = ACTIONS(1707), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1707), - [anon_sym_NS_OPTIONS] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_else] = ACTIONS(1707), - [anon_sym_switch] = ACTIONS(1707), - [anon_sym_case] = ACTIONS(1707), - [anon_sym_default] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_goto] = ACTIONS(1707), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_PLUS_PLUS] = ACTIONS(1705), - [anon_sym_sizeof] = ACTIONS(1707), - [sym_number_literal] = ACTIONS(1705), - [anon_sym_L_SQUOTE] = ACTIONS(1705), - [anon_sym_u_SQUOTE] = ACTIONS(1705), - [anon_sym_U_SQUOTE] = ACTIONS(1705), - [anon_sym_u8_SQUOTE] = ACTIONS(1705), - [anon_sym_SQUOTE] = ACTIONS(1705), - [anon_sym_L_DQUOTE] = ACTIONS(1705), - [anon_sym_u_DQUOTE] = ACTIONS(1705), - [anon_sym_U_DQUOTE] = ACTIONS(1705), - [anon_sym_u8_DQUOTE] = ACTIONS(1705), - [anon_sym_DQUOTE] = ACTIONS(1705), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_null] = ACTIONS(1707), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1705), - [anon_sym_ATimport] = ACTIONS(1705), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1707), - [anon_sym_ATcompatibility_alias] = ACTIONS(1705), - [anon_sym_ATprotocol] = ACTIONS(1705), - [anon_sym_ATclass] = ACTIONS(1705), - [anon_sym_ATinterface] = ACTIONS(1705), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1707), - [sym_method_attribute_specifier] = ACTIONS(1707), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1707), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1707), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1707), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1707), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1707), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1707), - [anon_sym_NS_AVAILABLE] = ACTIONS(1707), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1707), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_API_AVAILABLE] = ACTIONS(1707), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1707), - [anon_sym_API_DEPRECATED] = ACTIONS(1707), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1707), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1707), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1707), - [anon_sym___deprecated_msg] = ACTIONS(1707), - [anon_sym___deprecated_enum_msg] = ACTIONS(1707), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1707), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1707), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1707), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1707), - [anon_sym_ATimplementation] = ACTIONS(1705), - [anon_sym_typeof] = ACTIONS(1707), - [anon_sym___typeof] = ACTIONS(1707), - [anon_sym___typeof__] = ACTIONS(1707), - [sym_self] = ACTIONS(1707), - [sym_super] = ACTIONS(1707), - [sym_nil] = ACTIONS(1707), - [sym_id] = ACTIONS(1707), - [sym_instancetype] = ACTIONS(1707), - [sym_Class] = ACTIONS(1707), - [sym_SEL] = ACTIONS(1707), - [sym_IMP] = ACTIONS(1707), - [sym_BOOL] = ACTIONS(1707), - [sym_auto] = ACTIONS(1707), - [anon_sym_ATautoreleasepool] = ACTIONS(1705), - [anon_sym_ATsynchronized] = ACTIONS(1705), - [anon_sym_ATtry] = ACTIONS(1705), - [anon_sym_ATcatch] = ACTIONS(1705), - [anon_sym_ATfinally] = ACTIONS(1705), - [anon_sym_ATthrow] = ACTIONS(1705), - [anon_sym_ATselector] = ACTIONS(1705), - [anon_sym_ATencode] = ACTIONS(1705), - [anon_sym_AT] = ACTIONS(1707), - [sym_YES] = ACTIONS(1707), - [sym_NO] = ACTIONS(1707), - [anon_sym___builtin_available] = ACTIONS(1707), - [anon_sym_ATavailable] = ACTIONS(1705), - [anon_sym_va_arg] = ACTIONS(1707), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [502] = { + [409] = { [sym_identifier] = ACTIONS(1245), [aux_sym_preproc_include_token1] = ACTIONS(1243), [aux_sym_preproc_def_token1] = ACTIONS(1243), @@ -114080,9 +97774,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1245), [sym_primitive_type] = ACTIONS(1245), [anon_sym_enum] = ACTIONS(1245), - [anon_sym_NS_ENUM] = ACTIONS(1245), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1245), - [anon_sym_NS_OPTIONS] = ACTIONS(1245), [anon_sym_struct] = ACTIONS(1245), [anon_sym_union] = ACTIONS(1245), [anon_sym_if] = ACTIONS(1245), @@ -114149,6 +97840,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1245), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1245), [anon_sym_ATimplementation] = ACTIONS(1243), + [anon_sym_NS_ENUM] = ACTIONS(1245), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1245), + [anon_sym_NS_OPTIONS] = ACTIONS(1245), [anon_sym_typeof] = ACTIONS(1245), [anon_sym___typeof] = ACTIONS(1245), [anon_sym___typeof__] = ACTIONS(1245), @@ -114183,362197 +97877,898 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [503] = { - [sym_identifier] = ACTIONS(1593), - [aux_sym_preproc_include_token1] = ACTIONS(1595), - [aux_sym_preproc_def_token1] = ACTIONS(1595), - [aux_sym_preproc_if_token1] = ACTIONS(1593), - [aux_sym_preproc_if_token2] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1593), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1593), - [anon_sym_LPAREN2] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1595), - [anon_sym_TILDE] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1593), - [anon_sym_PLUS] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_CARET] = ACTIONS(1595), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_typedef] = ACTIONS(1593), - [anon_sym_extern] = ACTIONS(1593), - [anon_sym___attribute] = ACTIONS(1593), - [anon_sym___attribute__] = ACTIONS(1593), - [anon_sym___declspec] = ACTIONS(1593), - [anon_sym___cdecl] = ACTIONS(1593), - [anon_sym___clrcall] = ACTIONS(1593), - [anon_sym___stdcall] = ACTIONS(1593), - [anon_sym___fastcall] = ACTIONS(1593), - [anon_sym___thiscall] = ACTIONS(1593), - [anon_sym___vectorcall] = ACTIONS(1593), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_static] = ACTIONS(1593), - [anon_sym_auto] = ACTIONS(1593), - [anon_sym_register] = ACTIONS(1593), - [anon_sym_inline] = ACTIONS(1593), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1593), - [anon_sym_volatile] = ACTIONS(1593), - [anon_sym_restrict] = ACTIONS(1593), - [anon_sym__Atomic] = ACTIONS(1593), - [anon_sym_in] = ACTIONS(1593), - [anon_sym_out] = ACTIONS(1593), - [anon_sym_inout] = ACTIONS(1593), - [anon_sym_bycopy] = ACTIONS(1593), - [anon_sym_byref] = ACTIONS(1593), - [anon_sym_oneway] = ACTIONS(1593), - [anon_sym__Nullable] = ACTIONS(1593), - [anon_sym__Nonnull] = ACTIONS(1593), - [anon_sym__Nullable_result] = ACTIONS(1593), - [anon_sym__Null_unspecified] = ACTIONS(1593), - [anon_sym___autoreleasing] = ACTIONS(1593), - [anon_sym___nullable] = ACTIONS(1593), - [anon_sym___nonnull] = ACTIONS(1593), - [anon_sym___strong] = ACTIONS(1593), - [anon_sym___weak] = ACTIONS(1593), - [anon_sym___bridge] = ACTIONS(1593), - [anon_sym___bridge_transfer] = ACTIONS(1593), - [anon_sym___bridge_retained] = ACTIONS(1593), - [anon_sym___unsafe_unretained] = ACTIONS(1593), - [anon_sym___block] = ACTIONS(1593), - [anon_sym___kindof] = ACTIONS(1593), - [anon_sym___unused] = ACTIONS(1593), - [anon_sym__Complex] = ACTIONS(1593), - [anon_sym___complex] = ACTIONS(1593), - [anon_sym_IBOutlet] = ACTIONS(1593), - [anon_sym_IBInspectable] = ACTIONS(1593), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1593), - [anon_sym_signed] = ACTIONS(1593), - [anon_sym_unsigned] = ACTIONS(1593), - [anon_sym_long] = ACTIONS(1593), - [anon_sym_short] = ACTIONS(1593), - [sym_primitive_type] = ACTIONS(1593), - [anon_sym_enum] = ACTIONS(1593), - [anon_sym_NS_ENUM] = ACTIONS(1593), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1593), - [anon_sym_NS_OPTIONS] = ACTIONS(1593), - [anon_sym_struct] = ACTIONS(1593), - [anon_sym_union] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1593), - [anon_sym_else] = ACTIONS(1593), - [anon_sym_switch] = ACTIONS(1593), - [anon_sym_case] = ACTIONS(1593), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1593), - [anon_sym_do] = ACTIONS(1593), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1593), - [anon_sym_break] = ACTIONS(1593), - [anon_sym_continue] = ACTIONS(1593), - [anon_sym_goto] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1595), - [anon_sym_PLUS_PLUS] = ACTIONS(1595), - [anon_sym_sizeof] = ACTIONS(1593), - [sym_number_literal] = ACTIONS(1595), - [anon_sym_L_SQUOTE] = ACTIONS(1595), - [anon_sym_u_SQUOTE] = ACTIONS(1595), - [anon_sym_U_SQUOTE] = ACTIONS(1595), - [anon_sym_u8_SQUOTE] = ACTIONS(1595), - [anon_sym_SQUOTE] = ACTIONS(1595), - [anon_sym_L_DQUOTE] = ACTIONS(1595), - [anon_sym_u_DQUOTE] = ACTIONS(1595), - [anon_sym_U_DQUOTE] = ACTIONS(1595), - [anon_sym_u8_DQUOTE] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1595), - [anon_sym_ATimport] = ACTIONS(1595), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1593), - [anon_sym_ATcompatibility_alias] = ACTIONS(1595), - [anon_sym_ATprotocol] = ACTIONS(1595), - [anon_sym_ATclass] = ACTIONS(1595), - [anon_sym_ATinterface] = ACTIONS(1595), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1593), - [sym_method_attribute_specifier] = ACTIONS(1593), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1593), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1593), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1593), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1593), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1593), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1593), - [anon_sym_NS_AVAILABLE] = ACTIONS(1593), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1593), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1593), - [anon_sym_API_AVAILABLE] = ACTIONS(1593), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1593), - [anon_sym_API_DEPRECATED] = ACTIONS(1593), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1593), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1593), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1593), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1593), - [anon_sym___deprecated_msg] = ACTIONS(1593), - [anon_sym___deprecated_enum_msg] = ACTIONS(1593), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1593), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1593), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1593), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1593), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1593), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1593), - [anon_sym_ATimplementation] = ACTIONS(1595), - [anon_sym_typeof] = ACTIONS(1593), - [anon_sym___typeof] = ACTIONS(1593), - [anon_sym___typeof__] = ACTIONS(1593), - [sym_self] = ACTIONS(1593), - [sym_super] = ACTIONS(1593), - [sym_nil] = ACTIONS(1593), - [sym_id] = ACTIONS(1593), - [sym_instancetype] = ACTIONS(1593), - [sym_Class] = ACTIONS(1593), - [sym_SEL] = ACTIONS(1593), - [sym_IMP] = ACTIONS(1593), - [sym_BOOL] = ACTIONS(1593), - [sym_auto] = ACTIONS(1593), - [anon_sym_ATautoreleasepool] = ACTIONS(1595), - [anon_sym_ATsynchronized] = ACTIONS(1595), - [anon_sym_ATtry] = ACTIONS(1595), - [anon_sym_ATcatch] = ACTIONS(1595), - [anon_sym_ATfinally] = ACTIONS(1595), - [anon_sym_ATthrow] = ACTIONS(1595), - [anon_sym_ATselector] = ACTIONS(1595), - [anon_sym_ATencode] = ACTIONS(1595), - [anon_sym_AT] = ACTIONS(1593), - [sym_YES] = ACTIONS(1593), - [sym_NO] = ACTIONS(1593), - [anon_sym___builtin_available] = ACTIONS(1593), - [anon_sym_ATavailable] = ACTIONS(1595), - [anon_sym_va_arg] = ACTIONS(1593), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [504] = { - [sym_identifier] = ACTIONS(1597), - [aux_sym_preproc_include_token1] = ACTIONS(1599), - [aux_sym_preproc_def_token1] = ACTIONS(1599), - [aux_sym_preproc_if_token1] = ACTIONS(1597), - [aux_sym_preproc_if_token2] = ACTIONS(1597), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1597), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1597), - [anon_sym_LPAREN2] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_typedef] = ACTIONS(1597), - [anon_sym_extern] = ACTIONS(1597), - [anon_sym___attribute] = ACTIONS(1597), - [anon_sym___attribute__] = ACTIONS(1597), - [anon_sym___declspec] = ACTIONS(1597), - [anon_sym___cdecl] = ACTIONS(1597), - [anon_sym___clrcall] = ACTIONS(1597), - [anon_sym___stdcall] = ACTIONS(1597), - [anon_sym___fastcall] = ACTIONS(1597), - [anon_sym___thiscall] = ACTIONS(1597), - [anon_sym___vectorcall] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_auto] = ACTIONS(1597), - [anon_sym_register] = ACTIONS(1597), - [anon_sym_inline] = ACTIONS(1597), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1597), - [anon_sym_volatile] = ACTIONS(1597), - [anon_sym_restrict] = ACTIONS(1597), - [anon_sym__Atomic] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_out] = ACTIONS(1597), - [anon_sym_inout] = ACTIONS(1597), - [anon_sym_bycopy] = ACTIONS(1597), - [anon_sym_byref] = ACTIONS(1597), - [anon_sym_oneway] = ACTIONS(1597), - [anon_sym__Nullable] = ACTIONS(1597), - [anon_sym__Nonnull] = ACTIONS(1597), - [anon_sym__Nullable_result] = ACTIONS(1597), - [anon_sym__Null_unspecified] = ACTIONS(1597), - [anon_sym___autoreleasing] = ACTIONS(1597), - [anon_sym___nullable] = ACTIONS(1597), - [anon_sym___nonnull] = ACTIONS(1597), - [anon_sym___strong] = ACTIONS(1597), - [anon_sym___weak] = ACTIONS(1597), - [anon_sym___bridge] = ACTIONS(1597), - [anon_sym___bridge_transfer] = ACTIONS(1597), - [anon_sym___bridge_retained] = ACTIONS(1597), - [anon_sym___unsafe_unretained] = ACTIONS(1597), - [anon_sym___block] = ACTIONS(1597), - [anon_sym___kindof] = ACTIONS(1597), - [anon_sym___unused] = ACTIONS(1597), - [anon_sym__Complex] = ACTIONS(1597), - [anon_sym___complex] = ACTIONS(1597), - [anon_sym_IBOutlet] = ACTIONS(1597), - [anon_sym_IBInspectable] = ACTIONS(1597), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1597), - [anon_sym_signed] = ACTIONS(1597), - [anon_sym_unsigned] = ACTIONS(1597), - [anon_sym_long] = ACTIONS(1597), - [anon_sym_short] = ACTIONS(1597), - [sym_primitive_type] = ACTIONS(1597), - [anon_sym_enum] = ACTIONS(1597), - [anon_sym_NS_ENUM] = ACTIONS(1597), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1597), - [anon_sym_NS_OPTIONS] = ACTIONS(1597), - [anon_sym_struct] = ACTIONS(1597), - [anon_sym_union] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_else] = ACTIONS(1597), - [anon_sym_switch] = ACTIONS(1597), - [anon_sym_case] = ACTIONS(1597), - [anon_sym_default] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_do] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_goto] = ACTIONS(1597), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_sizeof] = ACTIONS(1597), - [sym_number_literal] = ACTIONS(1599), - [anon_sym_L_SQUOTE] = ACTIONS(1599), - [anon_sym_u_SQUOTE] = ACTIONS(1599), - [anon_sym_U_SQUOTE] = ACTIONS(1599), - [anon_sym_u8_SQUOTE] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_L_DQUOTE] = ACTIONS(1599), - [anon_sym_u_DQUOTE] = ACTIONS(1599), - [anon_sym_U_DQUOTE] = ACTIONS(1599), - [anon_sym_u8_DQUOTE] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym_true] = ACTIONS(1597), - [sym_false] = ACTIONS(1597), - [sym_null] = ACTIONS(1597), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1599), - [anon_sym_ATimport] = ACTIONS(1599), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1597), - [anon_sym_ATcompatibility_alias] = ACTIONS(1599), - [anon_sym_ATprotocol] = ACTIONS(1599), - [anon_sym_ATclass] = ACTIONS(1599), - [anon_sym_ATinterface] = ACTIONS(1599), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1597), - [sym_method_attribute_specifier] = ACTIONS(1597), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1597), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1597), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1597), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1597), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1597), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1597), - [anon_sym_NS_AVAILABLE] = ACTIONS(1597), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1597), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1597), - [anon_sym_API_AVAILABLE] = ACTIONS(1597), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1597), - [anon_sym_API_DEPRECATED] = ACTIONS(1597), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1597), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1597), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1597), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1597), - [anon_sym___deprecated_msg] = ACTIONS(1597), - [anon_sym___deprecated_enum_msg] = ACTIONS(1597), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1597), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1597), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1597), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1597), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1597), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1597), - [anon_sym_ATimplementation] = ACTIONS(1599), - [anon_sym_typeof] = ACTIONS(1597), - [anon_sym___typeof] = ACTIONS(1597), - [anon_sym___typeof__] = ACTIONS(1597), - [sym_self] = ACTIONS(1597), - [sym_super] = ACTIONS(1597), - [sym_nil] = ACTIONS(1597), - [sym_id] = ACTIONS(1597), - [sym_instancetype] = ACTIONS(1597), - [sym_Class] = ACTIONS(1597), - [sym_SEL] = ACTIONS(1597), - [sym_IMP] = ACTIONS(1597), - [sym_BOOL] = ACTIONS(1597), - [sym_auto] = ACTIONS(1597), - [anon_sym_ATautoreleasepool] = ACTIONS(1599), - [anon_sym_ATsynchronized] = ACTIONS(1599), - [anon_sym_ATtry] = ACTIONS(1599), - [anon_sym_ATcatch] = ACTIONS(1599), - [anon_sym_ATfinally] = ACTIONS(1599), - [anon_sym_ATthrow] = ACTIONS(1599), - [anon_sym_ATselector] = ACTIONS(1599), - [anon_sym_ATencode] = ACTIONS(1599), - [anon_sym_AT] = ACTIONS(1597), - [sym_YES] = ACTIONS(1597), - [sym_NO] = ACTIONS(1597), - [anon_sym___builtin_available] = ACTIONS(1597), - [anon_sym_ATavailable] = ACTIONS(1599), - [anon_sym_va_arg] = ACTIONS(1597), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [505] = { - [sym_identifier] = ACTIONS(1601), - [aux_sym_preproc_include_token1] = ACTIONS(1603), - [aux_sym_preproc_def_token1] = ACTIONS(1603), - [aux_sym_preproc_if_token1] = ACTIONS(1601), - [aux_sym_preproc_if_token2] = ACTIONS(1601), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1601), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1601), - [anon_sym_LPAREN2] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1601), - [anon_sym_PLUS] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_CARET] = ACTIONS(1603), - [anon_sym_AMP] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_typedef] = ACTIONS(1601), - [anon_sym_extern] = ACTIONS(1601), - [anon_sym___attribute] = ACTIONS(1601), - [anon_sym___attribute__] = ACTIONS(1601), - [anon_sym___declspec] = ACTIONS(1601), - [anon_sym___cdecl] = ACTIONS(1601), - [anon_sym___clrcall] = ACTIONS(1601), - [anon_sym___stdcall] = ACTIONS(1601), - [anon_sym___fastcall] = ACTIONS(1601), - [anon_sym___thiscall] = ACTIONS(1601), - [anon_sym___vectorcall] = ACTIONS(1601), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1601), - [anon_sym_auto] = ACTIONS(1601), - [anon_sym_register] = ACTIONS(1601), - [anon_sym_inline] = ACTIONS(1601), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1601), - [anon_sym_const] = ACTIONS(1601), - [anon_sym_volatile] = ACTIONS(1601), - [anon_sym_restrict] = ACTIONS(1601), - [anon_sym__Atomic] = ACTIONS(1601), - [anon_sym_in] = ACTIONS(1601), - [anon_sym_out] = ACTIONS(1601), - [anon_sym_inout] = ACTIONS(1601), - [anon_sym_bycopy] = ACTIONS(1601), - [anon_sym_byref] = ACTIONS(1601), - [anon_sym_oneway] = ACTIONS(1601), - [anon_sym__Nullable] = ACTIONS(1601), - [anon_sym__Nonnull] = ACTIONS(1601), - [anon_sym__Nullable_result] = ACTIONS(1601), - [anon_sym__Null_unspecified] = ACTIONS(1601), - [anon_sym___autoreleasing] = ACTIONS(1601), - [anon_sym___nullable] = ACTIONS(1601), - [anon_sym___nonnull] = ACTIONS(1601), - [anon_sym___strong] = ACTIONS(1601), - [anon_sym___weak] = ACTIONS(1601), - [anon_sym___bridge] = ACTIONS(1601), - [anon_sym___bridge_transfer] = ACTIONS(1601), - [anon_sym___bridge_retained] = ACTIONS(1601), - [anon_sym___unsafe_unretained] = ACTIONS(1601), - [anon_sym___block] = ACTIONS(1601), - [anon_sym___kindof] = ACTIONS(1601), - [anon_sym___unused] = ACTIONS(1601), - [anon_sym__Complex] = ACTIONS(1601), - [anon_sym___complex] = ACTIONS(1601), - [anon_sym_IBOutlet] = ACTIONS(1601), - [anon_sym_IBInspectable] = ACTIONS(1601), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1601), - [anon_sym_signed] = ACTIONS(1601), - [anon_sym_unsigned] = ACTIONS(1601), - [anon_sym_long] = ACTIONS(1601), - [anon_sym_short] = ACTIONS(1601), - [sym_primitive_type] = ACTIONS(1601), - [anon_sym_enum] = ACTIONS(1601), - [anon_sym_NS_ENUM] = ACTIONS(1601), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1601), - [anon_sym_NS_OPTIONS] = ACTIONS(1601), - [anon_sym_struct] = ACTIONS(1601), - [anon_sym_union] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_else] = ACTIONS(1601), - [anon_sym_switch] = ACTIONS(1601), - [anon_sym_case] = ACTIONS(1601), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_do] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_goto] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1603), - [anon_sym_sizeof] = ACTIONS(1601), - [sym_number_literal] = ACTIONS(1603), - [anon_sym_L_SQUOTE] = ACTIONS(1603), - [anon_sym_u_SQUOTE] = ACTIONS(1603), - [anon_sym_U_SQUOTE] = ACTIONS(1603), - [anon_sym_u8_SQUOTE] = ACTIONS(1603), - [anon_sym_SQUOTE] = ACTIONS(1603), - [anon_sym_L_DQUOTE] = ACTIONS(1603), - [anon_sym_u_DQUOTE] = ACTIONS(1603), - [anon_sym_U_DQUOTE] = ACTIONS(1603), - [anon_sym_u8_DQUOTE] = ACTIONS(1603), - [anon_sym_DQUOTE] = ACTIONS(1603), - [sym_true] = ACTIONS(1601), - [sym_false] = ACTIONS(1601), - [sym_null] = ACTIONS(1601), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1603), - [anon_sym_ATimport] = ACTIONS(1603), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1601), - [anon_sym_ATcompatibility_alias] = ACTIONS(1603), - [anon_sym_ATprotocol] = ACTIONS(1603), - [anon_sym_ATclass] = ACTIONS(1603), - [anon_sym_ATinterface] = ACTIONS(1603), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1601), - [sym_method_attribute_specifier] = ACTIONS(1601), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1601), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1601), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1601), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1601), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1601), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1601), - [anon_sym_NS_AVAILABLE] = ACTIONS(1601), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1601), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1601), - [anon_sym_API_AVAILABLE] = ACTIONS(1601), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1601), - [anon_sym_API_DEPRECATED] = ACTIONS(1601), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1601), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1601), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1601), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1601), - [anon_sym___deprecated_msg] = ACTIONS(1601), - [anon_sym___deprecated_enum_msg] = ACTIONS(1601), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1601), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1601), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1601), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1601), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1601), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1601), - [anon_sym_ATimplementation] = ACTIONS(1603), - [anon_sym_typeof] = ACTIONS(1601), - [anon_sym___typeof] = ACTIONS(1601), - [anon_sym___typeof__] = ACTIONS(1601), - [sym_self] = ACTIONS(1601), - [sym_super] = ACTIONS(1601), - [sym_nil] = ACTIONS(1601), - [sym_id] = ACTIONS(1601), - [sym_instancetype] = ACTIONS(1601), - [sym_Class] = ACTIONS(1601), - [sym_SEL] = ACTIONS(1601), - [sym_IMP] = ACTIONS(1601), - [sym_BOOL] = ACTIONS(1601), - [sym_auto] = ACTIONS(1601), - [anon_sym_ATautoreleasepool] = ACTIONS(1603), - [anon_sym_ATsynchronized] = ACTIONS(1603), - [anon_sym_ATtry] = ACTIONS(1603), - [anon_sym_ATcatch] = ACTIONS(1603), - [anon_sym_ATfinally] = ACTIONS(1603), - [anon_sym_ATthrow] = ACTIONS(1603), - [anon_sym_ATselector] = ACTIONS(1603), - [anon_sym_ATencode] = ACTIONS(1603), - [anon_sym_AT] = ACTIONS(1601), - [sym_YES] = ACTIONS(1601), - [sym_NO] = ACTIONS(1601), - [anon_sym___builtin_available] = ACTIONS(1601), - [anon_sym_ATavailable] = ACTIONS(1603), - [anon_sym_va_arg] = ACTIONS(1601), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [506] = { - [sym_identifier] = ACTIONS(1605), - [aux_sym_preproc_include_token1] = ACTIONS(1607), - [aux_sym_preproc_def_token1] = ACTIONS(1607), - [aux_sym_preproc_if_token1] = ACTIONS(1605), - [aux_sym_preproc_if_token2] = ACTIONS(1605), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1605), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1607), - [anon_sym_TILDE] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_CARET] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_typedef] = ACTIONS(1605), - [anon_sym_extern] = ACTIONS(1605), - [anon_sym___attribute] = ACTIONS(1605), - [anon_sym___attribute__] = ACTIONS(1605), - [anon_sym___declspec] = ACTIONS(1605), - [anon_sym___cdecl] = ACTIONS(1605), - [anon_sym___clrcall] = ACTIONS(1605), - [anon_sym___stdcall] = ACTIONS(1605), - [anon_sym___fastcall] = ACTIONS(1605), - [anon_sym___thiscall] = ACTIONS(1605), - [anon_sym___vectorcall] = ACTIONS(1605), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1605), - [anon_sym_auto] = ACTIONS(1605), - [anon_sym_register] = ACTIONS(1605), - [anon_sym_inline] = ACTIONS(1605), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_volatile] = ACTIONS(1605), - [anon_sym_restrict] = ACTIONS(1605), - [anon_sym__Atomic] = ACTIONS(1605), - [anon_sym_in] = ACTIONS(1605), - [anon_sym_out] = ACTIONS(1605), - [anon_sym_inout] = ACTIONS(1605), - [anon_sym_bycopy] = ACTIONS(1605), - [anon_sym_byref] = ACTIONS(1605), - [anon_sym_oneway] = ACTIONS(1605), - [anon_sym__Nullable] = ACTIONS(1605), - [anon_sym__Nonnull] = ACTIONS(1605), - [anon_sym__Nullable_result] = ACTIONS(1605), - [anon_sym__Null_unspecified] = ACTIONS(1605), - [anon_sym___autoreleasing] = ACTIONS(1605), - [anon_sym___nullable] = ACTIONS(1605), - [anon_sym___nonnull] = ACTIONS(1605), - [anon_sym___strong] = ACTIONS(1605), - [anon_sym___weak] = ACTIONS(1605), - [anon_sym___bridge] = ACTIONS(1605), - [anon_sym___bridge_transfer] = ACTIONS(1605), - [anon_sym___bridge_retained] = ACTIONS(1605), - [anon_sym___unsafe_unretained] = ACTIONS(1605), - [anon_sym___block] = ACTIONS(1605), - [anon_sym___kindof] = ACTIONS(1605), - [anon_sym___unused] = ACTIONS(1605), - [anon_sym__Complex] = ACTIONS(1605), - [anon_sym___complex] = ACTIONS(1605), - [anon_sym_IBOutlet] = ACTIONS(1605), - [anon_sym_IBInspectable] = ACTIONS(1605), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1605), - [anon_sym_signed] = ACTIONS(1605), - [anon_sym_unsigned] = ACTIONS(1605), - [anon_sym_long] = ACTIONS(1605), - [anon_sym_short] = ACTIONS(1605), - [sym_primitive_type] = ACTIONS(1605), - [anon_sym_enum] = ACTIONS(1605), - [anon_sym_NS_ENUM] = ACTIONS(1605), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1605), - [anon_sym_NS_OPTIONS] = ACTIONS(1605), - [anon_sym_struct] = ACTIONS(1605), - [anon_sym_union] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_else] = ACTIONS(1605), - [anon_sym_switch] = ACTIONS(1605), - [anon_sym_case] = ACTIONS(1605), - [anon_sym_default] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_do] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_goto] = ACTIONS(1605), - [anon_sym_DASH_DASH] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1607), - [anon_sym_sizeof] = ACTIONS(1605), - [sym_number_literal] = ACTIONS(1607), - [anon_sym_L_SQUOTE] = ACTIONS(1607), - [anon_sym_u_SQUOTE] = ACTIONS(1607), - [anon_sym_U_SQUOTE] = ACTIONS(1607), - [anon_sym_u8_SQUOTE] = ACTIONS(1607), - [anon_sym_SQUOTE] = ACTIONS(1607), - [anon_sym_L_DQUOTE] = ACTIONS(1607), - [anon_sym_u_DQUOTE] = ACTIONS(1607), - [anon_sym_U_DQUOTE] = ACTIONS(1607), - [anon_sym_u8_DQUOTE] = ACTIONS(1607), - [anon_sym_DQUOTE] = ACTIONS(1607), - [sym_true] = ACTIONS(1605), - [sym_false] = ACTIONS(1605), - [sym_null] = ACTIONS(1605), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1607), - [anon_sym_ATimport] = ACTIONS(1607), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1605), - [anon_sym_ATcompatibility_alias] = ACTIONS(1607), - [anon_sym_ATprotocol] = ACTIONS(1607), - [anon_sym_ATclass] = ACTIONS(1607), - [anon_sym_ATinterface] = ACTIONS(1607), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1605), - [sym_method_attribute_specifier] = ACTIONS(1605), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1605), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1605), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1605), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1605), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1605), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1605), - [anon_sym_NS_AVAILABLE] = ACTIONS(1605), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1605), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1605), - [anon_sym_API_AVAILABLE] = ACTIONS(1605), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1605), - [anon_sym_API_DEPRECATED] = ACTIONS(1605), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1605), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1605), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1605), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1605), - [anon_sym___deprecated_msg] = ACTIONS(1605), - [anon_sym___deprecated_enum_msg] = ACTIONS(1605), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1605), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1605), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1605), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1605), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1605), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1605), - [anon_sym_ATimplementation] = ACTIONS(1607), - [anon_sym_typeof] = ACTIONS(1605), - [anon_sym___typeof] = ACTIONS(1605), - [anon_sym___typeof__] = ACTIONS(1605), - [sym_self] = ACTIONS(1605), - [sym_super] = ACTIONS(1605), - [sym_nil] = ACTIONS(1605), - [sym_id] = ACTIONS(1605), - [sym_instancetype] = ACTIONS(1605), - [sym_Class] = ACTIONS(1605), - [sym_SEL] = ACTIONS(1605), - [sym_IMP] = ACTIONS(1605), - [sym_BOOL] = ACTIONS(1605), - [sym_auto] = ACTIONS(1605), - [anon_sym_ATautoreleasepool] = ACTIONS(1607), - [anon_sym_ATsynchronized] = ACTIONS(1607), - [anon_sym_ATtry] = ACTIONS(1607), - [anon_sym_ATcatch] = ACTIONS(1607), - [anon_sym_ATfinally] = ACTIONS(1607), - [anon_sym_ATthrow] = ACTIONS(1607), - [anon_sym_ATselector] = ACTIONS(1607), - [anon_sym_ATencode] = ACTIONS(1607), - [anon_sym_AT] = ACTIONS(1605), - [sym_YES] = ACTIONS(1605), - [sym_NO] = ACTIONS(1605), - [anon_sym___builtin_available] = ACTIONS(1605), - [anon_sym_ATavailable] = ACTIONS(1607), - [anon_sym_va_arg] = ACTIONS(1605), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [507] = { - [sym_identifier] = ACTIONS(1251), - [aux_sym_preproc_include_token1] = ACTIONS(1253), - [aux_sym_preproc_def_token1] = ACTIONS(1253), - [aux_sym_preproc_if_token1] = ACTIONS(1251), - [aux_sym_preproc_if_token2] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1251), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1251), - [anon_sym_LPAREN2] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_typedef] = ACTIONS(1251), - [anon_sym_extern] = ACTIONS(1251), - [anon_sym___attribute] = ACTIONS(1251), - [anon_sym___attribute__] = ACTIONS(1251), - [anon_sym___declspec] = ACTIONS(1251), - [anon_sym___cdecl] = ACTIONS(1251), - [anon_sym___clrcall] = ACTIONS(1251), - [anon_sym___stdcall] = ACTIONS(1251), - [anon_sym___fastcall] = ACTIONS(1251), - [anon_sym___thiscall] = ACTIONS(1251), - [anon_sym___vectorcall] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1253), - [anon_sym_static] = ACTIONS(1251), - [anon_sym_auto] = ACTIONS(1251), - [anon_sym_register] = ACTIONS(1251), - [anon_sym_inline] = ACTIONS(1251), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_volatile] = ACTIONS(1251), - [anon_sym_restrict] = ACTIONS(1251), - [anon_sym__Atomic] = ACTIONS(1251), - [anon_sym_in] = ACTIONS(1251), - [anon_sym_out] = ACTIONS(1251), - [anon_sym_inout] = ACTIONS(1251), - [anon_sym_bycopy] = ACTIONS(1251), - [anon_sym_byref] = ACTIONS(1251), - [anon_sym_oneway] = ACTIONS(1251), - [anon_sym__Nullable] = ACTIONS(1251), - [anon_sym__Nonnull] = ACTIONS(1251), - [anon_sym__Nullable_result] = ACTIONS(1251), - [anon_sym__Null_unspecified] = ACTIONS(1251), - [anon_sym___autoreleasing] = ACTIONS(1251), - [anon_sym___nullable] = ACTIONS(1251), - [anon_sym___nonnull] = ACTIONS(1251), - [anon_sym___strong] = ACTIONS(1251), - [anon_sym___weak] = ACTIONS(1251), - [anon_sym___bridge] = ACTIONS(1251), - [anon_sym___bridge_transfer] = ACTIONS(1251), - [anon_sym___bridge_retained] = ACTIONS(1251), - [anon_sym___unsafe_unretained] = ACTIONS(1251), - [anon_sym___block] = ACTIONS(1251), - [anon_sym___kindof] = ACTIONS(1251), - [anon_sym___unused] = ACTIONS(1251), - [anon_sym__Complex] = ACTIONS(1251), - [anon_sym___complex] = ACTIONS(1251), - [anon_sym_IBOutlet] = ACTIONS(1251), - [anon_sym_IBInspectable] = ACTIONS(1251), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1251), - [anon_sym_signed] = ACTIONS(1251), - [anon_sym_unsigned] = ACTIONS(1251), - [anon_sym_long] = ACTIONS(1251), - [anon_sym_short] = ACTIONS(1251), - [sym_primitive_type] = ACTIONS(1251), - [anon_sym_enum] = ACTIONS(1251), - [anon_sym_NS_ENUM] = ACTIONS(1251), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1251), - [anon_sym_NS_OPTIONS] = ACTIONS(1251), - [anon_sym_struct] = ACTIONS(1251), - [anon_sym_union] = ACTIONS(1251), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_switch] = ACTIONS(1251), - [anon_sym_case] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1251), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_do] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_return] = ACTIONS(1251), - [anon_sym_break] = ACTIONS(1251), - [anon_sym_continue] = ACTIONS(1251), - [anon_sym_goto] = ACTIONS(1251), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_sizeof] = ACTIONS(1251), - [sym_number_literal] = ACTIONS(1253), - [anon_sym_L_SQUOTE] = ACTIONS(1253), - [anon_sym_u_SQUOTE] = ACTIONS(1253), - [anon_sym_U_SQUOTE] = ACTIONS(1253), - [anon_sym_u8_SQUOTE] = ACTIONS(1253), - [anon_sym_SQUOTE] = ACTIONS(1253), - [anon_sym_L_DQUOTE] = ACTIONS(1253), - [anon_sym_u_DQUOTE] = ACTIONS(1253), - [anon_sym_U_DQUOTE] = ACTIONS(1253), - [anon_sym_u8_DQUOTE] = ACTIONS(1253), - [anon_sym_DQUOTE] = ACTIONS(1253), - [sym_true] = ACTIONS(1251), - [sym_false] = ACTIONS(1251), - [sym_null] = ACTIONS(1251), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1253), - [anon_sym_ATimport] = ACTIONS(1253), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1251), - [anon_sym_ATcompatibility_alias] = ACTIONS(1253), - [anon_sym_ATprotocol] = ACTIONS(1253), - [anon_sym_ATclass] = ACTIONS(1253), - [anon_sym_ATinterface] = ACTIONS(1253), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1251), - [sym_method_attribute_specifier] = ACTIONS(1251), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1251), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1251), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1251), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1251), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1251), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1251), - [anon_sym_NS_AVAILABLE] = ACTIONS(1251), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1251), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1251), - [anon_sym_API_AVAILABLE] = ACTIONS(1251), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1251), - [anon_sym_API_DEPRECATED] = ACTIONS(1251), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1251), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1251), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1251), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1251), - [anon_sym___deprecated_msg] = ACTIONS(1251), - [anon_sym___deprecated_enum_msg] = ACTIONS(1251), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1251), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1251), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1251), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1251), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1251), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1251), - [anon_sym_ATimplementation] = ACTIONS(1253), - [anon_sym_typeof] = ACTIONS(1251), - [anon_sym___typeof] = ACTIONS(1251), - [anon_sym___typeof__] = ACTIONS(1251), - [sym_self] = ACTIONS(1251), - [sym_super] = ACTIONS(1251), - [sym_nil] = ACTIONS(1251), - [sym_id] = ACTIONS(1251), - [sym_instancetype] = ACTIONS(1251), - [sym_Class] = ACTIONS(1251), - [sym_SEL] = ACTIONS(1251), - [sym_IMP] = ACTIONS(1251), - [sym_BOOL] = ACTIONS(1251), - [sym_auto] = ACTIONS(1251), - [anon_sym_ATautoreleasepool] = ACTIONS(1253), - [anon_sym_ATsynchronized] = ACTIONS(1253), - [anon_sym_ATtry] = ACTIONS(1253), - [anon_sym_ATcatch] = ACTIONS(1253), - [anon_sym_ATfinally] = ACTIONS(1253), - [anon_sym_ATthrow] = ACTIONS(1253), - [anon_sym_ATselector] = ACTIONS(1253), - [anon_sym_ATencode] = ACTIONS(1253), - [anon_sym_AT] = ACTIONS(1251), - [sym_YES] = ACTIONS(1251), - [sym_NO] = ACTIONS(1251), - [anon_sym___builtin_available] = ACTIONS(1251), - [anon_sym_ATavailable] = ACTIONS(1253), - [anon_sym_va_arg] = ACTIONS(1251), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [508] = { - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_include_token1] = ACTIONS(1581), - [aux_sym_preproc_def_token1] = ACTIONS(1581), - [aux_sym_preproc_if_token1] = ACTIONS(1583), - [aux_sym_preproc_if_token2] = ACTIONS(1583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1583), - [anon_sym_LPAREN2] = ACTIONS(1581), - [anon_sym_BANG] = ACTIONS(1581), - [anon_sym_TILDE] = ACTIONS(1581), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_PLUS] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1581), - [anon_sym_CARET] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_SEMI] = ACTIONS(1581), - [anon_sym_typedef] = ACTIONS(1583), - [anon_sym_extern] = ACTIONS(1583), - [anon_sym___attribute] = ACTIONS(1583), - [anon_sym___attribute__] = ACTIONS(1583), - [anon_sym___declspec] = ACTIONS(1583), - [anon_sym___cdecl] = ACTIONS(1583), - [anon_sym___clrcall] = ACTIONS(1583), - [anon_sym___stdcall] = ACTIONS(1583), - [anon_sym___fastcall] = ACTIONS(1583), - [anon_sym___thiscall] = ACTIONS(1583), - [anon_sym___vectorcall] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_auto] = ACTIONS(1583), - [anon_sym_register] = ACTIONS(1583), - [anon_sym_inline] = ACTIONS(1583), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1583), - [anon_sym_const] = ACTIONS(1583), - [anon_sym_volatile] = ACTIONS(1583), - [anon_sym_restrict] = ACTIONS(1583), - [anon_sym__Atomic] = ACTIONS(1583), - [anon_sym_in] = ACTIONS(1583), - [anon_sym_out] = ACTIONS(1583), - [anon_sym_inout] = ACTIONS(1583), - [anon_sym_bycopy] = ACTIONS(1583), - [anon_sym_byref] = ACTIONS(1583), - [anon_sym_oneway] = ACTIONS(1583), - [anon_sym__Nullable] = ACTIONS(1583), - [anon_sym__Nonnull] = ACTIONS(1583), - [anon_sym__Nullable_result] = ACTIONS(1583), - [anon_sym__Null_unspecified] = ACTIONS(1583), - [anon_sym___autoreleasing] = ACTIONS(1583), - [anon_sym___nullable] = ACTIONS(1583), - [anon_sym___nonnull] = ACTIONS(1583), - [anon_sym___strong] = ACTIONS(1583), - [anon_sym___weak] = ACTIONS(1583), - [anon_sym___bridge] = ACTIONS(1583), - [anon_sym___bridge_transfer] = ACTIONS(1583), - [anon_sym___bridge_retained] = ACTIONS(1583), - [anon_sym___unsafe_unretained] = ACTIONS(1583), - [anon_sym___block] = ACTIONS(1583), - [anon_sym___kindof] = ACTIONS(1583), - [anon_sym___unused] = ACTIONS(1583), - [anon_sym__Complex] = ACTIONS(1583), - [anon_sym___complex] = ACTIONS(1583), - [anon_sym_IBOutlet] = ACTIONS(1583), - [anon_sym_IBInspectable] = ACTIONS(1583), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1583), - [anon_sym_signed] = ACTIONS(1583), - [anon_sym_unsigned] = ACTIONS(1583), - [anon_sym_long] = ACTIONS(1583), - [anon_sym_short] = ACTIONS(1583), - [sym_primitive_type] = ACTIONS(1583), - [anon_sym_enum] = ACTIONS(1583), - [anon_sym_NS_ENUM] = ACTIONS(1583), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1583), - [anon_sym_NS_OPTIONS] = ACTIONS(1583), - [anon_sym_struct] = ACTIONS(1583), - [anon_sym_union] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1583), - [anon_sym_else] = ACTIONS(1583), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1583), - [anon_sym_default] = ACTIONS(1583), - [anon_sym_while] = ACTIONS(1583), - [anon_sym_do] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_break] = ACTIONS(1583), - [anon_sym_continue] = ACTIONS(1583), - [anon_sym_goto] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_sizeof] = ACTIONS(1583), - [sym_number_literal] = ACTIONS(1581), - [anon_sym_L_SQUOTE] = ACTIONS(1581), - [anon_sym_u_SQUOTE] = ACTIONS(1581), - [anon_sym_U_SQUOTE] = ACTIONS(1581), - [anon_sym_u8_SQUOTE] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1581), - [anon_sym_L_DQUOTE] = ACTIONS(1581), - [anon_sym_u_DQUOTE] = ACTIONS(1581), - [anon_sym_U_DQUOTE] = ACTIONS(1581), - [anon_sym_u8_DQUOTE] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1581), - [sym_true] = ACTIONS(1583), - [sym_false] = ACTIONS(1583), - [sym_null] = ACTIONS(1583), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1581), - [anon_sym_ATimport] = ACTIONS(1581), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1583), - [anon_sym_ATcompatibility_alias] = ACTIONS(1581), - [anon_sym_ATprotocol] = ACTIONS(1581), - [anon_sym_ATclass] = ACTIONS(1581), - [anon_sym_ATinterface] = ACTIONS(1581), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1583), - [sym_method_attribute_specifier] = ACTIONS(1583), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1583), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1583), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1583), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1583), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1583), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1583), - [anon_sym_NS_AVAILABLE] = ACTIONS(1583), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1583), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1583), - [anon_sym_API_AVAILABLE] = ACTIONS(1583), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1583), - [anon_sym_API_DEPRECATED] = ACTIONS(1583), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1583), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1583), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1583), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1583), - [anon_sym___deprecated_msg] = ACTIONS(1583), - [anon_sym___deprecated_enum_msg] = ACTIONS(1583), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1583), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1583), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1583), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1583), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1583), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1583), - [anon_sym_ATimplementation] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___typeof] = ACTIONS(1583), - [anon_sym___typeof__] = ACTIONS(1583), - [sym_self] = ACTIONS(1583), - [sym_super] = ACTIONS(1583), - [sym_nil] = ACTIONS(1583), - [sym_id] = ACTIONS(1583), - [sym_instancetype] = ACTIONS(1583), - [sym_Class] = ACTIONS(1583), - [sym_SEL] = ACTIONS(1583), - [sym_IMP] = ACTIONS(1583), - [sym_BOOL] = ACTIONS(1583), - [sym_auto] = ACTIONS(1583), - [anon_sym_ATautoreleasepool] = ACTIONS(1581), - [anon_sym_ATsynchronized] = ACTIONS(1581), - [anon_sym_ATtry] = ACTIONS(1581), - [anon_sym_ATcatch] = ACTIONS(1581), - [anon_sym_ATfinally] = ACTIONS(1581), - [anon_sym_ATthrow] = ACTIONS(1581), - [anon_sym_ATselector] = ACTIONS(1581), - [anon_sym_ATencode] = ACTIONS(1581), - [anon_sym_AT] = ACTIONS(1583), - [sym_YES] = ACTIONS(1583), - [sym_NO] = ACTIONS(1583), - [anon_sym___builtin_available] = ACTIONS(1583), - [anon_sym_ATavailable] = ACTIONS(1581), - [anon_sym_va_arg] = ACTIONS(1583), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [509] = { - [sym_identifier] = ACTIONS(1247), - [aux_sym_preproc_include_token1] = ACTIONS(1249), - [aux_sym_preproc_def_token1] = ACTIONS(1249), - [aux_sym_preproc_if_token1] = ACTIONS(1247), - [aux_sym_preproc_if_token2] = ACTIONS(1247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1247), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1247), - [anon_sym_LPAREN2] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1249), - [anon_sym_TILDE] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1249), - [anon_sym_CARET] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1249), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym_typedef] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym___attribute] = ACTIONS(1247), - [anon_sym___attribute__] = ACTIONS(1247), - [anon_sym___declspec] = ACTIONS(1247), - [anon_sym___cdecl] = ACTIONS(1247), - [anon_sym___clrcall] = ACTIONS(1247), - [anon_sym___stdcall] = ACTIONS(1247), - [anon_sym___fastcall] = ACTIONS(1247), - [anon_sym___thiscall] = ACTIONS(1247), - [anon_sym___vectorcall] = ACTIONS(1247), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1249), - [anon_sym_static] = ACTIONS(1247), - [anon_sym_auto] = ACTIONS(1247), - [anon_sym_register] = ACTIONS(1247), - [anon_sym_inline] = ACTIONS(1247), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_volatile] = ACTIONS(1247), - [anon_sym_restrict] = ACTIONS(1247), - [anon_sym__Atomic] = ACTIONS(1247), - [anon_sym_in] = ACTIONS(1247), - [anon_sym_out] = ACTIONS(1247), - [anon_sym_inout] = ACTIONS(1247), - [anon_sym_bycopy] = ACTIONS(1247), - [anon_sym_byref] = ACTIONS(1247), - [anon_sym_oneway] = ACTIONS(1247), - [anon_sym__Nullable] = ACTIONS(1247), - [anon_sym__Nonnull] = ACTIONS(1247), - [anon_sym__Nullable_result] = ACTIONS(1247), - [anon_sym__Null_unspecified] = ACTIONS(1247), - [anon_sym___autoreleasing] = ACTIONS(1247), - [anon_sym___nullable] = ACTIONS(1247), - [anon_sym___nonnull] = ACTIONS(1247), - [anon_sym___strong] = ACTIONS(1247), - [anon_sym___weak] = ACTIONS(1247), - [anon_sym___bridge] = ACTIONS(1247), - [anon_sym___bridge_transfer] = ACTIONS(1247), - [anon_sym___bridge_retained] = ACTIONS(1247), - [anon_sym___unsafe_unretained] = ACTIONS(1247), - [anon_sym___block] = ACTIONS(1247), - [anon_sym___kindof] = ACTIONS(1247), - [anon_sym___unused] = ACTIONS(1247), - [anon_sym__Complex] = ACTIONS(1247), - [anon_sym___complex] = ACTIONS(1247), - [anon_sym_IBOutlet] = ACTIONS(1247), - [anon_sym_IBInspectable] = ACTIONS(1247), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1247), - [anon_sym_signed] = ACTIONS(1247), - [anon_sym_unsigned] = ACTIONS(1247), - [anon_sym_long] = ACTIONS(1247), - [anon_sym_short] = ACTIONS(1247), - [sym_primitive_type] = ACTIONS(1247), - [anon_sym_enum] = ACTIONS(1247), - [anon_sym_NS_ENUM] = ACTIONS(1247), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1247), - [anon_sym_NS_OPTIONS] = ACTIONS(1247), - [anon_sym_struct] = ACTIONS(1247), - [anon_sym_union] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_else] = ACTIONS(1247), - [anon_sym_switch] = ACTIONS(1247), - [anon_sym_case] = ACTIONS(1247), - [anon_sym_default] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_goto] = ACTIONS(1247), - [anon_sym_DASH_DASH] = ACTIONS(1249), - [anon_sym_PLUS_PLUS] = ACTIONS(1249), - [anon_sym_sizeof] = ACTIONS(1247), - [sym_number_literal] = ACTIONS(1249), - [anon_sym_L_SQUOTE] = ACTIONS(1249), - [anon_sym_u_SQUOTE] = ACTIONS(1249), - [anon_sym_U_SQUOTE] = ACTIONS(1249), - [anon_sym_u8_SQUOTE] = ACTIONS(1249), - [anon_sym_SQUOTE] = ACTIONS(1249), - [anon_sym_L_DQUOTE] = ACTIONS(1249), - [anon_sym_u_DQUOTE] = ACTIONS(1249), - [anon_sym_U_DQUOTE] = ACTIONS(1249), - [anon_sym_u8_DQUOTE] = ACTIONS(1249), - [anon_sym_DQUOTE] = ACTIONS(1249), - [sym_true] = ACTIONS(1247), - [sym_false] = ACTIONS(1247), - [sym_null] = ACTIONS(1247), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1249), - [anon_sym_ATimport] = ACTIONS(1249), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1247), - [anon_sym_ATcompatibility_alias] = ACTIONS(1249), - [anon_sym_ATprotocol] = ACTIONS(1249), - [anon_sym_ATclass] = ACTIONS(1249), - [anon_sym_ATinterface] = ACTIONS(1249), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1247), - [sym_method_attribute_specifier] = ACTIONS(1247), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1247), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1247), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1247), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1247), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1247), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1247), - [anon_sym_NS_AVAILABLE] = ACTIONS(1247), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1247), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1247), - [anon_sym_API_AVAILABLE] = ACTIONS(1247), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1247), - [anon_sym_API_DEPRECATED] = ACTIONS(1247), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1247), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1247), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1247), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1247), - [anon_sym___deprecated_msg] = ACTIONS(1247), - [anon_sym___deprecated_enum_msg] = ACTIONS(1247), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1247), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1247), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1247), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1247), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1247), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1247), - [anon_sym_ATimplementation] = ACTIONS(1249), - [anon_sym_typeof] = ACTIONS(1247), - [anon_sym___typeof] = ACTIONS(1247), - [anon_sym___typeof__] = ACTIONS(1247), - [sym_self] = ACTIONS(1247), - [sym_super] = ACTIONS(1247), - [sym_nil] = ACTIONS(1247), - [sym_id] = ACTIONS(1247), - [sym_instancetype] = ACTIONS(1247), - [sym_Class] = ACTIONS(1247), - [sym_SEL] = ACTIONS(1247), - [sym_IMP] = ACTIONS(1247), - [sym_BOOL] = ACTIONS(1247), - [sym_auto] = ACTIONS(1247), - [anon_sym_ATautoreleasepool] = ACTIONS(1249), - [anon_sym_ATsynchronized] = ACTIONS(1249), - [anon_sym_ATtry] = ACTIONS(1249), - [anon_sym_ATcatch] = ACTIONS(1249), - [anon_sym_ATfinally] = ACTIONS(1249), - [anon_sym_ATthrow] = ACTIONS(1249), - [anon_sym_ATselector] = ACTIONS(1249), - [anon_sym_ATencode] = ACTIONS(1249), - [anon_sym_AT] = ACTIONS(1247), - [sym_YES] = ACTIONS(1247), - [sym_NO] = ACTIONS(1247), - [anon_sym___builtin_available] = ACTIONS(1247), - [anon_sym_ATavailable] = ACTIONS(1249), - [anon_sym_va_arg] = ACTIONS(1247), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [510] = { - [sym_identifier] = ACTIONS(1239), - [aux_sym_preproc_include_token1] = ACTIONS(1241), - [aux_sym_preproc_def_token1] = ACTIONS(1241), - [aux_sym_preproc_if_token1] = ACTIONS(1239), - [aux_sym_preproc_if_token2] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1239), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1239), - [anon_sym_LPAREN2] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_TILDE] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_typedef] = ACTIONS(1239), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym___attribute] = ACTIONS(1239), - [anon_sym___attribute__] = ACTIONS(1239), - [anon_sym___declspec] = ACTIONS(1239), - [anon_sym___cdecl] = ACTIONS(1239), - [anon_sym___clrcall] = ACTIONS(1239), - [anon_sym___stdcall] = ACTIONS(1239), - [anon_sym___fastcall] = ACTIONS(1239), - [anon_sym___thiscall] = ACTIONS(1239), - [anon_sym___vectorcall] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_static] = ACTIONS(1239), - [anon_sym_auto] = ACTIONS(1239), - [anon_sym_register] = ACTIONS(1239), - [anon_sym_inline] = ACTIONS(1239), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_volatile] = ACTIONS(1239), - [anon_sym_restrict] = ACTIONS(1239), - [anon_sym__Atomic] = ACTIONS(1239), - [anon_sym_in] = ACTIONS(1239), - [anon_sym_out] = ACTIONS(1239), - [anon_sym_inout] = ACTIONS(1239), - [anon_sym_bycopy] = ACTIONS(1239), - [anon_sym_byref] = ACTIONS(1239), - [anon_sym_oneway] = ACTIONS(1239), - [anon_sym__Nullable] = ACTIONS(1239), - [anon_sym__Nonnull] = ACTIONS(1239), - [anon_sym__Nullable_result] = ACTIONS(1239), - [anon_sym__Null_unspecified] = ACTIONS(1239), - [anon_sym___autoreleasing] = ACTIONS(1239), - [anon_sym___nullable] = ACTIONS(1239), - [anon_sym___nonnull] = ACTIONS(1239), - [anon_sym___strong] = ACTIONS(1239), - [anon_sym___weak] = ACTIONS(1239), - [anon_sym___bridge] = ACTIONS(1239), - [anon_sym___bridge_transfer] = ACTIONS(1239), - [anon_sym___bridge_retained] = ACTIONS(1239), - [anon_sym___unsafe_unretained] = ACTIONS(1239), - [anon_sym___block] = ACTIONS(1239), - [anon_sym___kindof] = ACTIONS(1239), - [anon_sym___unused] = ACTIONS(1239), - [anon_sym__Complex] = ACTIONS(1239), - [anon_sym___complex] = ACTIONS(1239), - [anon_sym_IBOutlet] = ACTIONS(1239), - [anon_sym_IBInspectable] = ACTIONS(1239), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1239), - [anon_sym_signed] = ACTIONS(1239), - [anon_sym_unsigned] = ACTIONS(1239), - [anon_sym_long] = ACTIONS(1239), - [anon_sym_short] = ACTIONS(1239), - [sym_primitive_type] = ACTIONS(1239), - [anon_sym_enum] = ACTIONS(1239), - [anon_sym_NS_ENUM] = ACTIONS(1239), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1239), - [anon_sym_NS_OPTIONS] = ACTIONS(1239), - [anon_sym_struct] = ACTIONS(1239), - [anon_sym_union] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_else] = ACTIONS(1239), - [anon_sym_switch] = ACTIONS(1239), - [anon_sym_case] = ACTIONS(1239), - [anon_sym_default] = ACTIONS(1239), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_do] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_return] = ACTIONS(1239), - [anon_sym_break] = ACTIONS(1239), - [anon_sym_continue] = ACTIONS(1239), - [anon_sym_goto] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1241), - [anon_sym_PLUS_PLUS] = ACTIONS(1241), - [anon_sym_sizeof] = ACTIONS(1239), - [sym_number_literal] = ACTIONS(1241), - [anon_sym_L_SQUOTE] = ACTIONS(1241), - [anon_sym_u_SQUOTE] = ACTIONS(1241), - [anon_sym_U_SQUOTE] = ACTIONS(1241), - [anon_sym_u8_SQUOTE] = ACTIONS(1241), - [anon_sym_SQUOTE] = ACTIONS(1241), - [anon_sym_L_DQUOTE] = ACTIONS(1241), - [anon_sym_u_DQUOTE] = ACTIONS(1241), - [anon_sym_U_DQUOTE] = ACTIONS(1241), - [anon_sym_u8_DQUOTE] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1241), - [sym_true] = ACTIONS(1239), - [sym_false] = ACTIONS(1239), - [sym_null] = ACTIONS(1239), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1241), - [anon_sym_ATimport] = ACTIONS(1241), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1239), - [anon_sym_ATcompatibility_alias] = ACTIONS(1241), - [anon_sym_ATprotocol] = ACTIONS(1241), - [anon_sym_ATclass] = ACTIONS(1241), - [anon_sym_ATinterface] = ACTIONS(1241), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1239), - [sym_method_attribute_specifier] = ACTIONS(1239), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1239), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1239), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1239), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1239), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1239), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1239), - [anon_sym_NS_AVAILABLE] = ACTIONS(1239), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1239), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1239), - [anon_sym_API_AVAILABLE] = ACTIONS(1239), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1239), - [anon_sym_API_DEPRECATED] = ACTIONS(1239), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1239), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1239), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1239), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1239), - [anon_sym___deprecated_msg] = ACTIONS(1239), - [anon_sym___deprecated_enum_msg] = ACTIONS(1239), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1239), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1239), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1239), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1239), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1239), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1239), - [anon_sym_ATimplementation] = ACTIONS(1241), - [anon_sym_typeof] = ACTIONS(1239), - [anon_sym___typeof] = ACTIONS(1239), - [anon_sym___typeof__] = ACTIONS(1239), - [sym_self] = ACTIONS(1239), - [sym_super] = ACTIONS(1239), - [sym_nil] = ACTIONS(1239), - [sym_id] = ACTIONS(1239), - [sym_instancetype] = ACTIONS(1239), - [sym_Class] = ACTIONS(1239), - [sym_SEL] = ACTIONS(1239), - [sym_IMP] = ACTIONS(1239), - [sym_BOOL] = ACTIONS(1239), - [sym_auto] = ACTIONS(1239), - [anon_sym_ATautoreleasepool] = ACTIONS(1241), - [anon_sym_ATsynchronized] = ACTIONS(1241), - [anon_sym_ATtry] = ACTIONS(1241), - [anon_sym_ATcatch] = ACTIONS(1241), - [anon_sym_ATfinally] = ACTIONS(1241), - [anon_sym_ATthrow] = ACTIONS(1241), - [anon_sym_ATselector] = ACTIONS(1241), - [anon_sym_ATencode] = ACTIONS(1241), - [anon_sym_AT] = ACTIONS(1239), - [sym_YES] = ACTIONS(1239), - [sym_NO] = ACTIONS(1239), - [anon_sym___builtin_available] = ACTIONS(1239), - [anon_sym_ATavailable] = ACTIONS(1241), - [anon_sym_va_arg] = ACTIONS(1239), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [511] = { - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_include_token1] = ACTIONS(1667), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1665), - [aux_sym_preproc_if_token2] = ACTIONS(1665), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1665), - [anon_sym_LPAREN2] = ACTIONS(1667), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_typedef] = ACTIONS(1665), - [anon_sym_extern] = ACTIONS(1665), - [anon_sym___attribute] = ACTIONS(1665), - [anon_sym___attribute__] = ACTIONS(1665), - [anon_sym___declspec] = ACTIONS(1665), - [anon_sym___cdecl] = ACTIONS(1665), - [anon_sym___clrcall] = ACTIONS(1665), - [anon_sym___stdcall] = ACTIONS(1665), - [anon_sym___fastcall] = ACTIONS(1665), - [anon_sym___thiscall] = ACTIONS(1665), - [anon_sym___vectorcall] = ACTIONS(1665), - [anon_sym_LBRACE] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1667), - [anon_sym_static] = ACTIONS(1665), - [anon_sym_auto] = ACTIONS(1665), - [anon_sym_register] = ACTIONS(1665), - [anon_sym_inline] = ACTIONS(1665), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1665), - [anon_sym_volatile] = ACTIONS(1665), - [anon_sym_restrict] = ACTIONS(1665), - [anon_sym__Atomic] = ACTIONS(1665), - [anon_sym_in] = ACTIONS(1665), - [anon_sym_out] = ACTIONS(1665), - [anon_sym_inout] = ACTIONS(1665), - [anon_sym_bycopy] = ACTIONS(1665), - [anon_sym_byref] = ACTIONS(1665), - [anon_sym_oneway] = ACTIONS(1665), - [anon_sym__Nullable] = ACTIONS(1665), - [anon_sym__Nonnull] = ACTIONS(1665), - [anon_sym__Nullable_result] = ACTIONS(1665), - [anon_sym__Null_unspecified] = ACTIONS(1665), - [anon_sym___autoreleasing] = ACTIONS(1665), - [anon_sym___nullable] = ACTIONS(1665), - [anon_sym___nonnull] = ACTIONS(1665), - [anon_sym___strong] = ACTIONS(1665), - [anon_sym___weak] = ACTIONS(1665), - [anon_sym___bridge] = ACTIONS(1665), - [anon_sym___bridge_transfer] = ACTIONS(1665), - [anon_sym___bridge_retained] = ACTIONS(1665), - [anon_sym___unsafe_unretained] = ACTIONS(1665), - [anon_sym___block] = ACTIONS(1665), - [anon_sym___kindof] = ACTIONS(1665), - [anon_sym___unused] = ACTIONS(1665), - [anon_sym__Complex] = ACTIONS(1665), - [anon_sym___complex] = ACTIONS(1665), - [anon_sym_IBOutlet] = ACTIONS(1665), - [anon_sym_IBInspectable] = ACTIONS(1665), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1665), - [anon_sym_signed] = ACTIONS(1665), - [anon_sym_unsigned] = ACTIONS(1665), - [anon_sym_long] = ACTIONS(1665), - [anon_sym_short] = ACTIONS(1665), - [sym_primitive_type] = ACTIONS(1665), - [anon_sym_enum] = ACTIONS(1665), - [anon_sym_NS_ENUM] = ACTIONS(1665), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1665), - [anon_sym_NS_OPTIONS] = ACTIONS(1665), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_union] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1665), - [anon_sym_else] = ACTIONS(1665), - [anon_sym_switch] = ACTIONS(1665), - [anon_sym_case] = ACTIONS(1665), - [anon_sym_default] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1665), - [anon_sym_do] = ACTIONS(1665), - [anon_sym_for] = ACTIONS(1665), - [anon_sym_return] = ACTIONS(1665), - [anon_sym_break] = ACTIONS(1665), - [anon_sym_continue] = ACTIONS(1665), - [anon_sym_goto] = ACTIONS(1665), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_sizeof] = ACTIONS(1665), - [sym_number_literal] = ACTIONS(1667), - [anon_sym_L_SQUOTE] = ACTIONS(1667), - [anon_sym_u_SQUOTE] = ACTIONS(1667), - [anon_sym_U_SQUOTE] = ACTIONS(1667), - [anon_sym_u8_SQUOTE] = ACTIONS(1667), - [anon_sym_SQUOTE] = ACTIONS(1667), - [anon_sym_L_DQUOTE] = ACTIONS(1667), - [anon_sym_u_DQUOTE] = ACTIONS(1667), - [anon_sym_U_DQUOTE] = ACTIONS(1667), - [anon_sym_u8_DQUOTE] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [sym_true] = ACTIONS(1665), - [sym_false] = ACTIONS(1665), - [sym_null] = ACTIONS(1665), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1667), - [anon_sym_ATimport] = ACTIONS(1667), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1665), - [anon_sym_ATcompatibility_alias] = ACTIONS(1667), - [anon_sym_ATprotocol] = ACTIONS(1667), - [anon_sym_ATclass] = ACTIONS(1667), - [anon_sym_ATinterface] = ACTIONS(1667), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1665), - [sym_method_attribute_specifier] = ACTIONS(1665), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1665), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1665), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1665), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1665), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1665), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1665), - [anon_sym_NS_AVAILABLE] = ACTIONS(1665), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1665), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1665), - [anon_sym_API_AVAILABLE] = ACTIONS(1665), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1665), - [anon_sym_API_DEPRECATED] = ACTIONS(1665), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1665), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1665), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1665), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1665), - [anon_sym___deprecated_msg] = ACTIONS(1665), - [anon_sym___deprecated_enum_msg] = ACTIONS(1665), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1665), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1665), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1665), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1665), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1665), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1665), - [anon_sym_ATimplementation] = ACTIONS(1667), - [anon_sym_typeof] = ACTIONS(1665), - [anon_sym___typeof] = ACTIONS(1665), - [anon_sym___typeof__] = ACTIONS(1665), - [sym_self] = ACTIONS(1665), - [sym_super] = ACTIONS(1665), - [sym_nil] = ACTIONS(1665), - [sym_id] = ACTIONS(1665), - [sym_instancetype] = ACTIONS(1665), - [sym_Class] = ACTIONS(1665), - [sym_SEL] = ACTIONS(1665), - [sym_IMP] = ACTIONS(1665), - [sym_BOOL] = ACTIONS(1665), - [sym_auto] = ACTIONS(1665), - [anon_sym_ATautoreleasepool] = ACTIONS(1667), - [anon_sym_ATsynchronized] = ACTIONS(1667), - [anon_sym_ATtry] = ACTIONS(1667), - [anon_sym_ATcatch] = ACTIONS(1667), - [anon_sym_ATfinally] = ACTIONS(1667), - [anon_sym_ATthrow] = ACTIONS(1667), - [anon_sym_ATselector] = ACTIONS(1667), - [anon_sym_ATencode] = ACTIONS(1667), - [anon_sym_AT] = ACTIONS(1665), - [sym_YES] = ACTIONS(1665), - [sym_NO] = ACTIONS(1665), - [anon_sym___builtin_available] = ACTIONS(1665), - [anon_sym_ATavailable] = ACTIONS(1667), - [anon_sym_va_arg] = ACTIONS(1665), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [512] = { - [sym_identifier] = ACTIONS(1235), - [aux_sym_preproc_include_token1] = ACTIONS(1237), - [aux_sym_preproc_def_token1] = ACTIONS(1237), - [aux_sym_preproc_if_token1] = ACTIONS(1235), - [aux_sym_preproc_if_token2] = ACTIONS(1235), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1235), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1235), - [anon_sym_LPAREN2] = ACTIONS(1237), - [anon_sym_BANG] = ACTIONS(1237), - [anon_sym_TILDE] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1235), - [anon_sym_PLUS] = ACTIONS(1235), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_CARET] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_typedef] = ACTIONS(1235), - [anon_sym_extern] = ACTIONS(1235), - [anon_sym___attribute] = ACTIONS(1235), - [anon_sym___attribute__] = ACTIONS(1235), - [anon_sym___declspec] = ACTIONS(1235), - [anon_sym___cdecl] = ACTIONS(1235), - [anon_sym___clrcall] = ACTIONS(1235), - [anon_sym___stdcall] = ACTIONS(1235), - [anon_sym___fastcall] = ACTIONS(1235), - [anon_sym___thiscall] = ACTIONS(1235), - [anon_sym___vectorcall] = ACTIONS(1235), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_static] = ACTIONS(1235), - [anon_sym_auto] = ACTIONS(1235), - [anon_sym_register] = ACTIONS(1235), - [anon_sym_inline] = ACTIONS(1235), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1235), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_volatile] = ACTIONS(1235), - [anon_sym_restrict] = ACTIONS(1235), - [anon_sym__Atomic] = ACTIONS(1235), - [anon_sym_in] = ACTIONS(1235), - [anon_sym_out] = ACTIONS(1235), - [anon_sym_inout] = ACTIONS(1235), - [anon_sym_bycopy] = ACTIONS(1235), - [anon_sym_byref] = ACTIONS(1235), - [anon_sym_oneway] = ACTIONS(1235), - [anon_sym__Nullable] = ACTIONS(1235), - [anon_sym__Nonnull] = ACTIONS(1235), - [anon_sym__Nullable_result] = ACTIONS(1235), - [anon_sym__Null_unspecified] = ACTIONS(1235), - [anon_sym___autoreleasing] = ACTIONS(1235), - [anon_sym___nullable] = ACTIONS(1235), - [anon_sym___nonnull] = ACTIONS(1235), - [anon_sym___strong] = ACTIONS(1235), - [anon_sym___weak] = ACTIONS(1235), - [anon_sym___bridge] = ACTIONS(1235), - [anon_sym___bridge_transfer] = ACTIONS(1235), - [anon_sym___bridge_retained] = ACTIONS(1235), - [anon_sym___unsafe_unretained] = ACTIONS(1235), - [anon_sym___block] = ACTIONS(1235), - [anon_sym___kindof] = ACTIONS(1235), - [anon_sym___unused] = ACTIONS(1235), - [anon_sym__Complex] = ACTIONS(1235), - [anon_sym___complex] = ACTIONS(1235), - [anon_sym_IBOutlet] = ACTIONS(1235), - [anon_sym_IBInspectable] = ACTIONS(1235), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1235), - [anon_sym_signed] = ACTIONS(1235), - [anon_sym_unsigned] = ACTIONS(1235), - [anon_sym_long] = ACTIONS(1235), - [anon_sym_short] = ACTIONS(1235), - [sym_primitive_type] = ACTIONS(1235), - [anon_sym_enum] = ACTIONS(1235), - [anon_sym_NS_ENUM] = ACTIONS(1235), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1235), - [anon_sym_NS_OPTIONS] = ACTIONS(1235), - [anon_sym_struct] = ACTIONS(1235), - [anon_sym_union] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1235), - [anon_sym_else] = ACTIONS(1235), - [anon_sym_switch] = ACTIONS(1235), - [anon_sym_case] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1235), - [anon_sym_while] = ACTIONS(1235), - [anon_sym_do] = ACTIONS(1235), - [anon_sym_for] = ACTIONS(1235), - [anon_sym_return] = ACTIONS(1235), - [anon_sym_break] = ACTIONS(1235), - [anon_sym_continue] = ACTIONS(1235), - [anon_sym_goto] = ACTIONS(1235), - [anon_sym_DASH_DASH] = ACTIONS(1237), - [anon_sym_PLUS_PLUS] = ACTIONS(1237), - [anon_sym_sizeof] = ACTIONS(1235), - [sym_number_literal] = ACTIONS(1237), - [anon_sym_L_SQUOTE] = ACTIONS(1237), - [anon_sym_u_SQUOTE] = ACTIONS(1237), - [anon_sym_U_SQUOTE] = ACTIONS(1237), - [anon_sym_u8_SQUOTE] = ACTIONS(1237), - [anon_sym_SQUOTE] = ACTIONS(1237), - [anon_sym_L_DQUOTE] = ACTIONS(1237), - [anon_sym_u_DQUOTE] = ACTIONS(1237), - [anon_sym_U_DQUOTE] = ACTIONS(1237), - [anon_sym_u8_DQUOTE] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [sym_true] = ACTIONS(1235), - [sym_false] = ACTIONS(1235), - [sym_null] = ACTIONS(1235), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1237), - [anon_sym_ATimport] = ACTIONS(1237), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1235), - [anon_sym_ATcompatibility_alias] = ACTIONS(1237), - [anon_sym_ATprotocol] = ACTIONS(1237), - [anon_sym_ATclass] = ACTIONS(1237), - [anon_sym_ATinterface] = ACTIONS(1237), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1235), - [sym_method_attribute_specifier] = ACTIONS(1235), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1235), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1235), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1235), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1235), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1235), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1235), - [anon_sym_NS_AVAILABLE] = ACTIONS(1235), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1235), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1235), - [anon_sym_API_AVAILABLE] = ACTIONS(1235), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1235), - [anon_sym_API_DEPRECATED] = ACTIONS(1235), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1235), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1235), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1235), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1235), - [anon_sym___deprecated_msg] = ACTIONS(1235), - [anon_sym___deprecated_enum_msg] = ACTIONS(1235), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1235), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1235), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1235), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1235), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1235), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1235), - [anon_sym_ATimplementation] = ACTIONS(1237), - [anon_sym_typeof] = ACTIONS(1235), - [anon_sym___typeof] = ACTIONS(1235), - [anon_sym___typeof__] = ACTIONS(1235), - [sym_self] = ACTIONS(1235), - [sym_super] = ACTIONS(1235), - [sym_nil] = ACTIONS(1235), - [sym_id] = ACTIONS(1235), - [sym_instancetype] = ACTIONS(1235), - [sym_Class] = ACTIONS(1235), - [sym_SEL] = ACTIONS(1235), - [sym_IMP] = ACTIONS(1235), - [sym_BOOL] = ACTIONS(1235), - [sym_auto] = ACTIONS(1235), - [anon_sym_ATautoreleasepool] = ACTIONS(1237), - [anon_sym_ATsynchronized] = ACTIONS(1237), - [anon_sym_ATtry] = ACTIONS(1237), - [anon_sym_ATcatch] = ACTIONS(1237), - [anon_sym_ATfinally] = ACTIONS(1237), - [anon_sym_ATthrow] = ACTIONS(1237), - [anon_sym_ATselector] = ACTIONS(1237), - [anon_sym_ATencode] = ACTIONS(1237), - [anon_sym_AT] = ACTIONS(1235), - [sym_YES] = ACTIONS(1235), - [sym_NO] = ACTIONS(1235), - [anon_sym___builtin_available] = ACTIONS(1235), - [anon_sym_ATavailable] = ACTIONS(1237), - [anon_sym_va_arg] = ACTIONS(1235), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [513] = { - [sym_identifier] = ACTIONS(1231), - [aux_sym_preproc_include_token1] = ACTIONS(1233), - [aux_sym_preproc_def_token1] = ACTIONS(1233), - [aux_sym_preproc_if_token1] = ACTIONS(1231), - [aux_sym_preproc_if_token2] = ACTIONS(1231), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1231), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1231), - [anon_sym_LPAREN2] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(1233), - [anon_sym_TILDE] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1231), - [anon_sym_PLUS] = ACTIONS(1231), - [anon_sym_STAR] = ACTIONS(1233), - [anon_sym_CARET] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym_typedef] = ACTIONS(1231), - [anon_sym_extern] = ACTIONS(1231), - [anon_sym___attribute] = ACTIONS(1231), - [anon_sym___attribute__] = ACTIONS(1231), - [anon_sym___declspec] = ACTIONS(1231), - [anon_sym___cdecl] = ACTIONS(1231), - [anon_sym___clrcall] = ACTIONS(1231), - [anon_sym___stdcall] = ACTIONS(1231), - [anon_sym___fastcall] = ACTIONS(1231), - [anon_sym___thiscall] = ACTIONS(1231), - [anon_sym___vectorcall] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_auto] = ACTIONS(1231), - [anon_sym_register] = ACTIONS(1231), - [anon_sym_inline] = ACTIONS(1231), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1231), - [anon_sym_const] = ACTIONS(1231), - [anon_sym_volatile] = ACTIONS(1231), - [anon_sym_restrict] = ACTIONS(1231), - [anon_sym__Atomic] = ACTIONS(1231), - [anon_sym_in] = ACTIONS(1231), - [anon_sym_out] = ACTIONS(1231), - [anon_sym_inout] = ACTIONS(1231), - [anon_sym_bycopy] = ACTIONS(1231), - [anon_sym_byref] = ACTIONS(1231), - [anon_sym_oneway] = ACTIONS(1231), - [anon_sym__Nullable] = ACTIONS(1231), - [anon_sym__Nonnull] = ACTIONS(1231), - [anon_sym__Nullable_result] = ACTIONS(1231), - [anon_sym__Null_unspecified] = ACTIONS(1231), - [anon_sym___autoreleasing] = ACTIONS(1231), - [anon_sym___nullable] = ACTIONS(1231), - [anon_sym___nonnull] = ACTIONS(1231), - [anon_sym___strong] = ACTIONS(1231), - [anon_sym___weak] = ACTIONS(1231), - [anon_sym___bridge] = ACTIONS(1231), - [anon_sym___bridge_transfer] = ACTIONS(1231), - [anon_sym___bridge_retained] = ACTIONS(1231), - [anon_sym___unsafe_unretained] = ACTIONS(1231), - [anon_sym___block] = ACTIONS(1231), - [anon_sym___kindof] = ACTIONS(1231), - [anon_sym___unused] = ACTIONS(1231), - [anon_sym__Complex] = ACTIONS(1231), - [anon_sym___complex] = ACTIONS(1231), - [anon_sym_IBOutlet] = ACTIONS(1231), - [anon_sym_IBInspectable] = ACTIONS(1231), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1231), - [anon_sym_signed] = ACTIONS(1231), - [anon_sym_unsigned] = ACTIONS(1231), - [anon_sym_long] = ACTIONS(1231), - [anon_sym_short] = ACTIONS(1231), - [sym_primitive_type] = ACTIONS(1231), - [anon_sym_enum] = ACTIONS(1231), - [anon_sym_NS_ENUM] = ACTIONS(1231), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1231), - [anon_sym_NS_OPTIONS] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1231), - [anon_sym_union] = ACTIONS(1231), - [anon_sym_if] = ACTIONS(1231), - [anon_sym_else] = ACTIONS(1231), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_case] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1231), - [anon_sym_while] = ACTIONS(1231), - [anon_sym_do] = ACTIONS(1231), - [anon_sym_for] = ACTIONS(1231), - [anon_sym_return] = ACTIONS(1231), - [anon_sym_break] = ACTIONS(1231), - [anon_sym_continue] = ACTIONS(1231), - [anon_sym_goto] = ACTIONS(1231), - [anon_sym_DASH_DASH] = ACTIONS(1233), - [anon_sym_PLUS_PLUS] = ACTIONS(1233), - [anon_sym_sizeof] = ACTIONS(1231), - [sym_number_literal] = ACTIONS(1233), - [anon_sym_L_SQUOTE] = ACTIONS(1233), - [anon_sym_u_SQUOTE] = ACTIONS(1233), - [anon_sym_U_SQUOTE] = ACTIONS(1233), - [anon_sym_u8_SQUOTE] = ACTIONS(1233), - [anon_sym_SQUOTE] = ACTIONS(1233), - [anon_sym_L_DQUOTE] = ACTIONS(1233), - [anon_sym_u_DQUOTE] = ACTIONS(1233), - [anon_sym_U_DQUOTE] = ACTIONS(1233), - [anon_sym_u8_DQUOTE] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [sym_true] = ACTIONS(1231), - [sym_false] = ACTIONS(1231), - [sym_null] = ACTIONS(1231), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1233), - [anon_sym_ATimport] = ACTIONS(1233), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1231), - [anon_sym_ATcompatibility_alias] = ACTIONS(1233), - [anon_sym_ATprotocol] = ACTIONS(1233), - [anon_sym_ATclass] = ACTIONS(1233), - [anon_sym_ATinterface] = ACTIONS(1233), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1231), - [sym_method_attribute_specifier] = ACTIONS(1231), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1231), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1231), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1231), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1231), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1231), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1231), - [anon_sym_NS_AVAILABLE] = ACTIONS(1231), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1231), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1231), - [anon_sym_API_AVAILABLE] = ACTIONS(1231), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1231), - [anon_sym_API_DEPRECATED] = ACTIONS(1231), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1231), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1231), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1231), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1231), - [anon_sym___deprecated_msg] = ACTIONS(1231), - [anon_sym___deprecated_enum_msg] = ACTIONS(1231), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1231), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1231), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1231), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1231), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1231), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1231), - [anon_sym_ATimplementation] = ACTIONS(1233), - [anon_sym_typeof] = ACTIONS(1231), - [anon_sym___typeof] = ACTIONS(1231), - [anon_sym___typeof__] = ACTIONS(1231), - [sym_self] = ACTIONS(1231), - [sym_super] = ACTIONS(1231), - [sym_nil] = ACTIONS(1231), - [sym_id] = ACTIONS(1231), - [sym_instancetype] = ACTIONS(1231), - [sym_Class] = ACTIONS(1231), - [sym_SEL] = ACTIONS(1231), - [sym_IMP] = ACTIONS(1231), - [sym_BOOL] = ACTIONS(1231), - [sym_auto] = ACTIONS(1231), - [anon_sym_ATautoreleasepool] = ACTIONS(1233), - [anon_sym_ATsynchronized] = ACTIONS(1233), - [anon_sym_ATtry] = ACTIONS(1233), - [anon_sym_ATcatch] = ACTIONS(1233), - [anon_sym_ATfinally] = ACTIONS(1233), - [anon_sym_ATthrow] = ACTIONS(1233), - [anon_sym_ATselector] = ACTIONS(1233), - [anon_sym_ATencode] = ACTIONS(1233), - [anon_sym_AT] = ACTIONS(1231), - [sym_YES] = ACTIONS(1231), - [sym_NO] = ACTIONS(1231), - [anon_sym___builtin_available] = ACTIONS(1231), - [anon_sym_ATavailable] = ACTIONS(1233), - [anon_sym_va_arg] = ACTIONS(1231), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [514] = { - [sym_identifier] = ACTIONS(1227), - [aux_sym_preproc_include_token1] = ACTIONS(1229), - [aux_sym_preproc_def_token1] = ACTIONS(1229), - [aux_sym_preproc_if_token1] = ACTIONS(1227), - [aux_sym_preproc_if_token2] = ACTIONS(1227), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1227), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1227), - [anon_sym_LPAREN2] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_TILDE] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_CARET] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_SEMI] = ACTIONS(1229), - [anon_sym_typedef] = ACTIONS(1227), - [anon_sym_extern] = ACTIONS(1227), - [anon_sym___attribute] = ACTIONS(1227), - [anon_sym___attribute__] = ACTIONS(1227), - [anon_sym___declspec] = ACTIONS(1227), - [anon_sym___cdecl] = ACTIONS(1227), - [anon_sym___clrcall] = ACTIONS(1227), - [anon_sym___stdcall] = ACTIONS(1227), - [anon_sym___fastcall] = ACTIONS(1227), - [anon_sym___thiscall] = ACTIONS(1227), - [anon_sym___vectorcall] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1229), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_auto] = ACTIONS(1227), - [anon_sym_register] = ACTIONS(1227), - [anon_sym_inline] = ACTIONS(1227), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_volatile] = ACTIONS(1227), - [anon_sym_restrict] = ACTIONS(1227), - [anon_sym__Atomic] = ACTIONS(1227), - [anon_sym_in] = ACTIONS(1227), - [anon_sym_out] = ACTIONS(1227), - [anon_sym_inout] = ACTIONS(1227), - [anon_sym_bycopy] = ACTIONS(1227), - [anon_sym_byref] = ACTIONS(1227), - [anon_sym_oneway] = ACTIONS(1227), - [anon_sym__Nullable] = ACTIONS(1227), - [anon_sym__Nonnull] = ACTIONS(1227), - [anon_sym__Nullable_result] = ACTIONS(1227), - [anon_sym__Null_unspecified] = ACTIONS(1227), - [anon_sym___autoreleasing] = ACTIONS(1227), - [anon_sym___nullable] = ACTIONS(1227), - [anon_sym___nonnull] = ACTIONS(1227), - [anon_sym___strong] = ACTIONS(1227), - [anon_sym___weak] = ACTIONS(1227), - [anon_sym___bridge] = ACTIONS(1227), - [anon_sym___bridge_transfer] = ACTIONS(1227), - [anon_sym___bridge_retained] = ACTIONS(1227), - [anon_sym___unsafe_unretained] = ACTIONS(1227), - [anon_sym___block] = ACTIONS(1227), - [anon_sym___kindof] = ACTIONS(1227), - [anon_sym___unused] = ACTIONS(1227), - [anon_sym__Complex] = ACTIONS(1227), - [anon_sym___complex] = ACTIONS(1227), - [anon_sym_IBOutlet] = ACTIONS(1227), - [anon_sym_IBInspectable] = ACTIONS(1227), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1227), - [anon_sym_signed] = ACTIONS(1227), - [anon_sym_unsigned] = ACTIONS(1227), - [anon_sym_long] = ACTIONS(1227), - [anon_sym_short] = ACTIONS(1227), - [sym_primitive_type] = ACTIONS(1227), - [anon_sym_enum] = ACTIONS(1227), - [anon_sym_NS_ENUM] = ACTIONS(1227), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1227), - [anon_sym_NS_OPTIONS] = ACTIONS(1227), - [anon_sym_struct] = ACTIONS(1227), - [anon_sym_union] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_else] = ACTIONS(1227), - [anon_sym_switch] = ACTIONS(1227), - [anon_sym_case] = ACTIONS(1227), - [anon_sym_default] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_do] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_goto] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1229), - [anon_sym_PLUS_PLUS] = ACTIONS(1229), - [anon_sym_sizeof] = ACTIONS(1227), - [sym_number_literal] = ACTIONS(1229), - [anon_sym_L_SQUOTE] = ACTIONS(1229), - [anon_sym_u_SQUOTE] = ACTIONS(1229), - [anon_sym_U_SQUOTE] = ACTIONS(1229), - [anon_sym_u8_SQUOTE] = ACTIONS(1229), - [anon_sym_SQUOTE] = ACTIONS(1229), - [anon_sym_L_DQUOTE] = ACTIONS(1229), - [anon_sym_u_DQUOTE] = ACTIONS(1229), - [anon_sym_U_DQUOTE] = ACTIONS(1229), - [anon_sym_u8_DQUOTE] = ACTIONS(1229), - [anon_sym_DQUOTE] = ACTIONS(1229), - [sym_true] = ACTIONS(1227), - [sym_false] = ACTIONS(1227), - [sym_null] = ACTIONS(1227), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1229), - [anon_sym_ATimport] = ACTIONS(1229), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1227), - [anon_sym_ATcompatibility_alias] = ACTIONS(1229), - [anon_sym_ATprotocol] = ACTIONS(1229), - [anon_sym_ATclass] = ACTIONS(1229), - [anon_sym_ATinterface] = ACTIONS(1229), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1227), - [sym_method_attribute_specifier] = ACTIONS(1227), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1227), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1227), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1227), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1227), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1227), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1227), - [anon_sym_NS_AVAILABLE] = ACTIONS(1227), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1227), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1227), - [anon_sym_API_AVAILABLE] = ACTIONS(1227), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1227), - [anon_sym_API_DEPRECATED] = ACTIONS(1227), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1227), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1227), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1227), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1227), - [anon_sym___deprecated_msg] = ACTIONS(1227), - [anon_sym___deprecated_enum_msg] = ACTIONS(1227), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1227), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1227), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1227), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1227), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1227), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1227), - [anon_sym_ATimplementation] = ACTIONS(1229), - [anon_sym_typeof] = ACTIONS(1227), - [anon_sym___typeof] = ACTIONS(1227), - [anon_sym___typeof__] = ACTIONS(1227), - [sym_self] = ACTIONS(1227), - [sym_super] = ACTIONS(1227), - [sym_nil] = ACTIONS(1227), - [sym_id] = ACTIONS(1227), - [sym_instancetype] = ACTIONS(1227), - [sym_Class] = ACTIONS(1227), - [sym_SEL] = ACTIONS(1227), - [sym_IMP] = ACTIONS(1227), - [sym_BOOL] = ACTIONS(1227), - [sym_auto] = ACTIONS(1227), - [anon_sym_ATautoreleasepool] = ACTIONS(1229), - [anon_sym_ATsynchronized] = ACTIONS(1229), - [anon_sym_ATtry] = ACTIONS(1229), - [anon_sym_ATcatch] = ACTIONS(1229), - [anon_sym_ATfinally] = ACTIONS(1229), - [anon_sym_ATthrow] = ACTIONS(1229), - [anon_sym_ATselector] = ACTIONS(1229), - [anon_sym_ATencode] = ACTIONS(1229), - [anon_sym_AT] = ACTIONS(1227), - [sym_YES] = ACTIONS(1227), - [sym_NO] = ACTIONS(1227), - [anon_sym___builtin_available] = ACTIONS(1227), - [anon_sym_ATavailable] = ACTIONS(1229), - [anon_sym_va_arg] = ACTIONS(1227), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [515] = { - [sym_identifier] = ACTIONS(1223), - [aux_sym_preproc_include_token1] = ACTIONS(1225), - [aux_sym_preproc_def_token1] = ACTIONS(1225), - [aux_sym_preproc_if_token1] = ACTIONS(1223), - [aux_sym_preproc_if_token2] = ACTIONS(1223), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1223), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1223), - [anon_sym_LPAREN2] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1225), - [anon_sym_TILDE] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1223), - [anon_sym_PLUS] = ACTIONS(1223), - [anon_sym_STAR] = ACTIONS(1225), - [anon_sym_CARET] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1225), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_typedef] = ACTIONS(1223), - [anon_sym_extern] = ACTIONS(1223), - [anon_sym___attribute] = ACTIONS(1223), - [anon_sym___attribute__] = ACTIONS(1223), - [anon_sym___declspec] = ACTIONS(1223), - [anon_sym___cdecl] = ACTIONS(1223), - [anon_sym___clrcall] = ACTIONS(1223), - [anon_sym___stdcall] = ACTIONS(1223), - [anon_sym___fastcall] = ACTIONS(1223), - [anon_sym___thiscall] = ACTIONS(1223), - [anon_sym___vectorcall] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_LBRACK] = ACTIONS(1225), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_auto] = ACTIONS(1223), - [anon_sym_register] = ACTIONS(1223), - [anon_sym_inline] = ACTIONS(1223), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1223), - [anon_sym_const] = ACTIONS(1223), - [anon_sym_volatile] = ACTIONS(1223), - [anon_sym_restrict] = ACTIONS(1223), - [anon_sym__Atomic] = ACTIONS(1223), - [anon_sym_in] = ACTIONS(1223), - [anon_sym_out] = ACTIONS(1223), - [anon_sym_inout] = ACTIONS(1223), - [anon_sym_bycopy] = ACTIONS(1223), - [anon_sym_byref] = ACTIONS(1223), - [anon_sym_oneway] = ACTIONS(1223), - [anon_sym__Nullable] = ACTIONS(1223), - [anon_sym__Nonnull] = ACTIONS(1223), - [anon_sym__Nullable_result] = ACTIONS(1223), - [anon_sym__Null_unspecified] = ACTIONS(1223), - [anon_sym___autoreleasing] = ACTIONS(1223), - [anon_sym___nullable] = ACTIONS(1223), - [anon_sym___nonnull] = ACTIONS(1223), - [anon_sym___strong] = ACTIONS(1223), - [anon_sym___weak] = ACTIONS(1223), - [anon_sym___bridge] = ACTIONS(1223), - [anon_sym___bridge_transfer] = ACTIONS(1223), - [anon_sym___bridge_retained] = ACTIONS(1223), - [anon_sym___unsafe_unretained] = ACTIONS(1223), - [anon_sym___block] = ACTIONS(1223), - [anon_sym___kindof] = ACTIONS(1223), - [anon_sym___unused] = ACTIONS(1223), - [anon_sym__Complex] = ACTIONS(1223), - [anon_sym___complex] = ACTIONS(1223), - [anon_sym_IBOutlet] = ACTIONS(1223), - [anon_sym_IBInspectable] = ACTIONS(1223), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1223), - [anon_sym_signed] = ACTIONS(1223), - [anon_sym_unsigned] = ACTIONS(1223), - [anon_sym_long] = ACTIONS(1223), - [anon_sym_short] = ACTIONS(1223), - [sym_primitive_type] = ACTIONS(1223), - [anon_sym_enum] = ACTIONS(1223), - [anon_sym_NS_ENUM] = ACTIONS(1223), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1223), - [anon_sym_NS_OPTIONS] = ACTIONS(1223), - [anon_sym_struct] = ACTIONS(1223), - [anon_sym_union] = ACTIONS(1223), - [anon_sym_if] = ACTIONS(1223), - [anon_sym_else] = ACTIONS(1223), - [anon_sym_switch] = ACTIONS(1223), - [anon_sym_case] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1223), - [anon_sym_while] = ACTIONS(1223), - [anon_sym_do] = ACTIONS(1223), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_return] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1223), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_goto] = ACTIONS(1223), - [anon_sym_DASH_DASH] = ACTIONS(1225), - [anon_sym_PLUS_PLUS] = ACTIONS(1225), - [anon_sym_sizeof] = ACTIONS(1223), - [sym_number_literal] = ACTIONS(1225), - [anon_sym_L_SQUOTE] = ACTIONS(1225), - [anon_sym_u_SQUOTE] = ACTIONS(1225), - [anon_sym_U_SQUOTE] = ACTIONS(1225), - [anon_sym_u8_SQUOTE] = ACTIONS(1225), - [anon_sym_SQUOTE] = ACTIONS(1225), - [anon_sym_L_DQUOTE] = ACTIONS(1225), - [anon_sym_u_DQUOTE] = ACTIONS(1225), - [anon_sym_U_DQUOTE] = ACTIONS(1225), - [anon_sym_u8_DQUOTE] = ACTIONS(1225), - [anon_sym_DQUOTE] = ACTIONS(1225), - [sym_true] = ACTIONS(1223), - [sym_false] = ACTIONS(1223), - [sym_null] = ACTIONS(1223), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1225), - [anon_sym_ATimport] = ACTIONS(1225), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1223), - [anon_sym_ATcompatibility_alias] = ACTIONS(1225), - [anon_sym_ATprotocol] = ACTIONS(1225), - [anon_sym_ATclass] = ACTIONS(1225), - [anon_sym_ATinterface] = ACTIONS(1225), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1223), - [sym_method_attribute_specifier] = ACTIONS(1223), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1223), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1223), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1223), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1223), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1223), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1223), - [anon_sym_NS_AVAILABLE] = ACTIONS(1223), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1223), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1223), - [anon_sym_API_AVAILABLE] = ACTIONS(1223), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1223), - [anon_sym_API_DEPRECATED] = ACTIONS(1223), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1223), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1223), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1223), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1223), - [anon_sym___deprecated_msg] = ACTIONS(1223), - [anon_sym___deprecated_enum_msg] = ACTIONS(1223), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1223), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1223), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1223), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1223), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1223), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1223), - [anon_sym_ATimplementation] = ACTIONS(1225), - [anon_sym_typeof] = ACTIONS(1223), - [anon_sym___typeof] = ACTIONS(1223), - [anon_sym___typeof__] = ACTIONS(1223), - [sym_self] = ACTIONS(1223), - [sym_super] = ACTIONS(1223), - [sym_nil] = ACTIONS(1223), - [sym_id] = ACTIONS(1223), - [sym_instancetype] = ACTIONS(1223), - [sym_Class] = ACTIONS(1223), - [sym_SEL] = ACTIONS(1223), - [sym_IMP] = ACTIONS(1223), - [sym_BOOL] = ACTIONS(1223), - [sym_auto] = ACTIONS(1223), - [anon_sym_ATautoreleasepool] = ACTIONS(1225), - [anon_sym_ATsynchronized] = ACTIONS(1225), - [anon_sym_ATtry] = ACTIONS(1225), - [anon_sym_ATcatch] = ACTIONS(1225), - [anon_sym_ATfinally] = ACTIONS(1225), - [anon_sym_ATthrow] = ACTIONS(1225), - [anon_sym_ATselector] = ACTIONS(1225), - [anon_sym_ATencode] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1223), - [sym_YES] = ACTIONS(1223), - [sym_NO] = ACTIONS(1223), - [anon_sym___builtin_available] = ACTIONS(1223), - [anon_sym_ATavailable] = ACTIONS(1225), - [anon_sym_va_arg] = ACTIONS(1223), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [516] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [aux_sym_preproc_else_token1] = ACTIONS(1722), - [aux_sym_preproc_elif_token1] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [517] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [aux_sym_preproc_else_token1] = ACTIONS(1726), - [aux_sym_preproc_elif_token1] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [518] = { - [sym_identifier] = ACTIONS(1730), - [aux_sym_preproc_include_token1] = ACTIONS(1732), - [aux_sym_preproc_def_token1] = ACTIONS(1732), - [aux_sym_preproc_if_token1] = ACTIONS(1730), - [aux_sym_preproc_if_token2] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1730), - [aux_sym_preproc_else_token1] = ACTIONS(1730), - [aux_sym_preproc_elif_token1] = ACTIONS(1730), - [anon_sym_LPAREN2] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_CARET] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_typedef] = ACTIONS(1730), - [anon_sym_extern] = ACTIONS(1730), - [anon_sym___attribute] = ACTIONS(1730), - [anon_sym___attribute__] = ACTIONS(1730), - [anon_sym___declspec] = ACTIONS(1730), - [anon_sym___cdecl] = ACTIONS(1730), - [anon_sym___clrcall] = ACTIONS(1730), - [anon_sym___stdcall] = ACTIONS(1730), - [anon_sym___fastcall] = ACTIONS(1730), - [anon_sym___thiscall] = ACTIONS(1730), - [anon_sym___vectorcall] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_static] = ACTIONS(1730), - [anon_sym_auto] = ACTIONS(1730), - [anon_sym_register] = ACTIONS(1730), - [anon_sym_inline] = ACTIONS(1730), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1730), - [anon_sym_const] = ACTIONS(1730), - [anon_sym_volatile] = ACTIONS(1730), - [anon_sym_restrict] = ACTIONS(1730), - [anon_sym__Atomic] = ACTIONS(1730), - [anon_sym_in] = ACTIONS(1730), - [anon_sym_out] = ACTIONS(1730), - [anon_sym_inout] = ACTIONS(1730), - [anon_sym_bycopy] = ACTIONS(1730), - [anon_sym_byref] = ACTIONS(1730), - [anon_sym_oneway] = ACTIONS(1730), - [anon_sym__Nullable] = ACTIONS(1730), - [anon_sym__Nonnull] = ACTIONS(1730), - [anon_sym__Nullable_result] = ACTIONS(1730), - [anon_sym__Null_unspecified] = ACTIONS(1730), - [anon_sym___autoreleasing] = ACTIONS(1730), - [anon_sym___nullable] = ACTIONS(1730), - [anon_sym___nonnull] = ACTIONS(1730), - [anon_sym___strong] = ACTIONS(1730), - [anon_sym___weak] = ACTIONS(1730), - [anon_sym___bridge] = ACTIONS(1730), - [anon_sym___bridge_transfer] = ACTIONS(1730), - [anon_sym___bridge_retained] = ACTIONS(1730), - [anon_sym___unsafe_unretained] = ACTIONS(1730), - [anon_sym___block] = ACTIONS(1730), - [anon_sym___kindof] = ACTIONS(1730), - [anon_sym___unused] = ACTIONS(1730), - [anon_sym__Complex] = ACTIONS(1730), - [anon_sym___complex] = ACTIONS(1730), - [anon_sym_IBOutlet] = ACTIONS(1730), - [anon_sym_IBInspectable] = ACTIONS(1730), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1730), - [anon_sym_signed] = ACTIONS(1730), - [anon_sym_unsigned] = ACTIONS(1730), - [anon_sym_long] = ACTIONS(1730), - [anon_sym_short] = ACTIONS(1730), - [sym_primitive_type] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_NS_ENUM] = ACTIONS(1730), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1730), - [anon_sym_NS_OPTIONS] = ACTIONS(1730), - [anon_sym_struct] = ACTIONS(1730), - [anon_sym_union] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_switch] = ACTIONS(1730), - [anon_sym_case] = ACTIONS(1730), - [anon_sym_default] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_do] = ACTIONS(1730), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_goto] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1732), - [anon_sym_sizeof] = ACTIONS(1730), - [sym_number_literal] = ACTIONS(1732), - [anon_sym_L_SQUOTE] = ACTIONS(1732), - [anon_sym_u_SQUOTE] = ACTIONS(1732), - [anon_sym_U_SQUOTE] = ACTIONS(1732), - [anon_sym_u8_SQUOTE] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1732), - [anon_sym_L_DQUOTE] = ACTIONS(1732), - [anon_sym_u_DQUOTE] = ACTIONS(1732), - [anon_sym_U_DQUOTE] = ACTIONS(1732), - [anon_sym_u8_DQUOTE] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1732), - [sym_true] = ACTIONS(1730), - [sym_false] = ACTIONS(1730), - [sym_null] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1732), - [anon_sym_ATimport] = ACTIONS(1732), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1730), - [anon_sym_ATcompatibility_alias] = ACTIONS(1732), - [anon_sym_ATprotocol] = ACTIONS(1732), - [anon_sym_ATclass] = ACTIONS(1732), - [anon_sym_ATinterface] = ACTIONS(1732), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1730), - [sym_method_attribute_specifier] = ACTIONS(1730), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1730), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE] = ACTIONS(1730), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_API_AVAILABLE] = ACTIONS(1730), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_API_DEPRECATED] = ACTIONS(1730), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1730), - [anon_sym___deprecated_msg] = ACTIONS(1730), - [anon_sym___deprecated_enum_msg] = ACTIONS(1730), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1730), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1730), - [anon_sym_ATimplementation] = ACTIONS(1732), - [anon_sym_typeof] = ACTIONS(1730), - [anon_sym___typeof] = ACTIONS(1730), - [anon_sym___typeof__] = ACTIONS(1730), - [sym_self] = ACTIONS(1730), - [sym_super] = ACTIONS(1730), - [sym_nil] = ACTIONS(1730), - [sym_id] = ACTIONS(1730), - [sym_instancetype] = ACTIONS(1730), - [sym_Class] = ACTIONS(1730), - [sym_SEL] = ACTIONS(1730), - [sym_IMP] = ACTIONS(1730), - [sym_BOOL] = ACTIONS(1730), - [sym_auto] = ACTIONS(1730), - [anon_sym_ATautoreleasepool] = ACTIONS(1732), - [anon_sym_ATsynchronized] = ACTIONS(1732), - [anon_sym_ATtry] = ACTIONS(1732), - [anon_sym_ATthrow] = ACTIONS(1732), - [anon_sym_ATselector] = ACTIONS(1732), - [anon_sym_ATencode] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1730), - [sym_YES] = ACTIONS(1730), - [sym_NO] = ACTIONS(1730), - [anon_sym___builtin_available] = ACTIONS(1730), - [anon_sym_ATavailable] = ACTIONS(1732), - [anon_sym_va_arg] = ACTIONS(1730), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [519] = { - [sym_identifier] = ACTIONS(1734), - [aux_sym_preproc_include_token1] = ACTIONS(1736), - [aux_sym_preproc_def_token1] = ACTIONS(1736), - [aux_sym_preproc_if_token1] = ACTIONS(1734), - [aux_sym_preproc_if_token2] = ACTIONS(1734), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1734), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1734), - [aux_sym_preproc_else_token1] = ACTIONS(1734), - [aux_sym_preproc_elif_token1] = ACTIONS(1734), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_CARET] = ACTIONS(1736), - [anon_sym_AMP] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_typedef] = ACTIONS(1734), - [anon_sym_extern] = ACTIONS(1734), - [anon_sym___attribute] = ACTIONS(1734), - [anon_sym___attribute__] = ACTIONS(1734), - [anon_sym___declspec] = ACTIONS(1734), - [anon_sym___cdecl] = ACTIONS(1734), - [anon_sym___clrcall] = ACTIONS(1734), - [anon_sym___stdcall] = ACTIONS(1734), - [anon_sym___fastcall] = ACTIONS(1734), - [anon_sym___thiscall] = ACTIONS(1734), - [anon_sym___vectorcall] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_static] = ACTIONS(1734), - [anon_sym_auto] = ACTIONS(1734), - [anon_sym_register] = ACTIONS(1734), - [anon_sym_inline] = ACTIONS(1734), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1734), - [anon_sym_const] = ACTIONS(1734), - [anon_sym_volatile] = ACTIONS(1734), - [anon_sym_restrict] = ACTIONS(1734), - [anon_sym__Atomic] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_out] = ACTIONS(1734), - [anon_sym_inout] = ACTIONS(1734), - [anon_sym_bycopy] = ACTIONS(1734), - [anon_sym_byref] = ACTIONS(1734), - [anon_sym_oneway] = ACTIONS(1734), - [anon_sym__Nullable] = ACTIONS(1734), - [anon_sym__Nonnull] = ACTIONS(1734), - [anon_sym__Nullable_result] = ACTIONS(1734), - [anon_sym__Null_unspecified] = ACTIONS(1734), - [anon_sym___autoreleasing] = ACTIONS(1734), - [anon_sym___nullable] = ACTIONS(1734), - [anon_sym___nonnull] = ACTIONS(1734), - [anon_sym___strong] = ACTIONS(1734), - [anon_sym___weak] = ACTIONS(1734), - [anon_sym___bridge] = ACTIONS(1734), - [anon_sym___bridge_transfer] = ACTIONS(1734), - [anon_sym___bridge_retained] = ACTIONS(1734), - [anon_sym___unsafe_unretained] = ACTIONS(1734), - [anon_sym___block] = ACTIONS(1734), - [anon_sym___kindof] = ACTIONS(1734), - [anon_sym___unused] = ACTIONS(1734), - [anon_sym__Complex] = ACTIONS(1734), - [anon_sym___complex] = ACTIONS(1734), - [anon_sym_IBOutlet] = ACTIONS(1734), - [anon_sym_IBInspectable] = ACTIONS(1734), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1734), - [anon_sym_signed] = ACTIONS(1734), - [anon_sym_unsigned] = ACTIONS(1734), - [anon_sym_long] = ACTIONS(1734), - [anon_sym_short] = ACTIONS(1734), - [sym_primitive_type] = ACTIONS(1734), - [anon_sym_enum] = ACTIONS(1734), - [anon_sym_NS_ENUM] = ACTIONS(1734), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1734), - [anon_sym_NS_OPTIONS] = ACTIONS(1734), - [anon_sym_struct] = ACTIONS(1734), - [anon_sym_union] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_switch] = ACTIONS(1734), - [anon_sym_case] = ACTIONS(1734), - [anon_sym_default] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_do] = ACTIONS(1734), - [anon_sym_for] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_goto] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_sizeof] = ACTIONS(1734), - [sym_number_literal] = ACTIONS(1736), - [anon_sym_L_SQUOTE] = ACTIONS(1736), - [anon_sym_u_SQUOTE] = ACTIONS(1736), - [anon_sym_U_SQUOTE] = ACTIONS(1736), - [anon_sym_u8_SQUOTE] = ACTIONS(1736), - [anon_sym_SQUOTE] = ACTIONS(1736), - [anon_sym_L_DQUOTE] = ACTIONS(1736), - [anon_sym_u_DQUOTE] = ACTIONS(1736), - [anon_sym_U_DQUOTE] = ACTIONS(1736), - [anon_sym_u8_DQUOTE] = ACTIONS(1736), - [anon_sym_DQUOTE] = ACTIONS(1736), - [sym_true] = ACTIONS(1734), - [sym_false] = ACTIONS(1734), - [sym_null] = ACTIONS(1734), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1736), - [anon_sym_ATimport] = ACTIONS(1736), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1734), - [anon_sym_ATcompatibility_alias] = ACTIONS(1736), - [anon_sym_ATprotocol] = ACTIONS(1736), - [anon_sym_ATclass] = ACTIONS(1736), - [anon_sym_ATinterface] = ACTIONS(1736), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1734), - [sym_method_attribute_specifier] = ACTIONS(1734), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1734), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1734), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1734), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1734), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1734), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1734), - [anon_sym_NS_AVAILABLE] = ACTIONS(1734), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1734), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1734), - [anon_sym_API_AVAILABLE] = ACTIONS(1734), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1734), - [anon_sym_API_DEPRECATED] = ACTIONS(1734), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1734), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1734), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1734), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1734), - [anon_sym___deprecated_msg] = ACTIONS(1734), - [anon_sym___deprecated_enum_msg] = ACTIONS(1734), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1734), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1734), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1734), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1734), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1734), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1734), - [anon_sym_ATimplementation] = ACTIONS(1736), - [anon_sym_typeof] = ACTIONS(1734), - [anon_sym___typeof] = ACTIONS(1734), - [anon_sym___typeof__] = ACTIONS(1734), - [sym_self] = ACTIONS(1734), - [sym_super] = ACTIONS(1734), - [sym_nil] = ACTIONS(1734), - [sym_id] = ACTIONS(1734), - [sym_instancetype] = ACTIONS(1734), - [sym_Class] = ACTIONS(1734), - [sym_SEL] = ACTIONS(1734), - [sym_IMP] = ACTIONS(1734), - [sym_BOOL] = ACTIONS(1734), - [sym_auto] = ACTIONS(1734), - [anon_sym_ATautoreleasepool] = ACTIONS(1736), - [anon_sym_ATsynchronized] = ACTIONS(1736), - [anon_sym_ATtry] = ACTIONS(1736), - [anon_sym_ATthrow] = ACTIONS(1736), - [anon_sym_ATselector] = ACTIONS(1736), - [anon_sym_ATencode] = ACTIONS(1736), - [anon_sym_AT] = ACTIONS(1734), - [sym_YES] = ACTIONS(1734), - [sym_NO] = ACTIONS(1734), - [anon_sym___builtin_available] = ACTIONS(1734), - [anon_sym_ATavailable] = ACTIONS(1736), - [anon_sym_va_arg] = ACTIONS(1734), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [520] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [aux_sym_preproc_else_token1] = ACTIONS(1738), - [aux_sym_preproc_elif_token1] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [521] = { - [sym_identifier] = ACTIONS(1742), - [aux_sym_preproc_include_token1] = ACTIONS(1744), - [aux_sym_preproc_def_token1] = ACTIONS(1744), - [aux_sym_preproc_if_token1] = ACTIONS(1742), - [aux_sym_preproc_if_token2] = ACTIONS(1742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1742), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1742), - [aux_sym_preproc_else_token1] = ACTIONS(1742), - [aux_sym_preproc_elif_token1] = ACTIONS(1742), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_TILDE] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_CARET] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_typedef] = ACTIONS(1742), - [anon_sym_extern] = ACTIONS(1742), - [anon_sym___attribute] = ACTIONS(1742), - [anon_sym___attribute__] = ACTIONS(1742), - [anon_sym___declspec] = ACTIONS(1742), - [anon_sym___cdecl] = ACTIONS(1742), - [anon_sym___clrcall] = ACTIONS(1742), - [anon_sym___stdcall] = ACTIONS(1742), - [anon_sym___fastcall] = ACTIONS(1742), - [anon_sym___thiscall] = ACTIONS(1742), - [anon_sym___vectorcall] = ACTIONS(1742), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1744), - [anon_sym_static] = ACTIONS(1742), - [anon_sym_auto] = ACTIONS(1742), - [anon_sym_register] = ACTIONS(1742), - [anon_sym_inline] = ACTIONS(1742), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1742), - [anon_sym_const] = ACTIONS(1742), - [anon_sym_volatile] = ACTIONS(1742), - [anon_sym_restrict] = ACTIONS(1742), - [anon_sym__Atomic] = ACTIONS(1742), - [anon_sym_in] = ACTIONS(1742), - [anon_sym_out] = ACTIONS(1742), - [anon_sym_inout] = ACTIONS(1742), - [anon_sym_bycopy] = ACTIONS(1742), - [anon_sym_byref] = ACTIONS(1742), - [anon_sym_oneway] = ACTIONS(1742), - [anon_sym__Nullable] = ACTIONS(1742), - [anon_sym__Nonnull] = ACTIONS(1742), - [anon_sym__Nullable_result] = ACTIONS(1742), - [anon_sym__Null_unspecified] = ACTIONS(1742), - [anon_sym___autoreleasing] = ACTIONS(1742), - [anon_sym___nullable] = ACTIONS(1742), - [anon_sym___nonnull] = ACTIONS(1742), - [anon_sym___strong] = ACTIONS(1742), - [anon_sym___weak] = ACTIONS(1742), - [anon_sym___bridge] = ACTIONS(1742), - [anon_sym___bridge_transfer] = ACTIONS(1742), - [anon_sym___bridge_retained] = ACTIONS(1742), - [anon_sym___unsafe_unretained] = ACTIONS(1742), - [anon_sym___block] = ACTIONS(1742), - [anon_sym___kindof] = ACTIONS(1742), - [anon_sym___unused] = ACTIONS(1742), - [anon_sym__Complex] = ACTIONS(1742), - [anon_sym___complex] = ACTIONS(1742), - [anon_sym_IBOutlet] = ACTIONS(1742), - [anon_sym_IBInspectable] = ACTIONS(1742), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1742), - [anon_sym_signed] = ACTIONS(1742), - [anon_sym_unsigned] = ACTIONS(1742), - [anon_sym_long] = ACTIONS(1742), - [anon_sym_short] = ACTIONS(1742), - [sym_primitive_type] = ACTIONS(1742), - [anon_sym_enum] = ACTIONS(1742), - [anon_sym_NS_ENUM] = ACTIONS(1742), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1742), - [anon_sym_NS_OPTIONS] = ACTIONS(1742), - [anon_sym_struct] = ACTIONS(1742), - [anon_sym_union] = ACTIONS(1742), - [anon_sym_if] = ACTIONS(1742), - [anon_sym_switch] = ACTIONS(1742), - [anon_sym_case] = ACTIONS(1742), - [anon_sym_default] = ACTIONS(1742), - [anon_sym_while] = ACTIONS(1742), - [anon_sym_do] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(1742), - [anon_sym_return] = ACTIONS(1742), - [anon_sym_break] = ACTIONS(1742), - [anon_sym_continue] = ACTIONS(1742), - [anon_sym_goto] = ACTIONS(1742), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_sizeof] = ACTIONS(1742), - [sym_number_literal] = ACTIONS(1744), - [anon_sym_L_SQUOTE] = ACTIONS(1744), - [anon_sym_u_SQUOTE] = ACTIONS(1744), - [anon_sym_U_SQUOTE] = ACTIONS(1744), - [anon_sym_u8_SQUOTE] = ACTIONS(1744), - [anon_sym_SQUOTE] = ACTIONS(1744), - [anon_sym_L_DQUOTE] = ACTIONS(1744), - [anon_sym_u_DQUOTE] = ACTIONS(1744), - [anon_sym_U_DQUOTE] = ACTIONS(1744), - [anon_sym_u8_DQUOTE] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [sym_true] = ACTIONS(1742), - [sym_false] = ACTIONS(1742), - [sym_null] = ACTIONS(1742), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1744), - [anon_sym_ATimport] = ACTIONS(1744), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1742), - [anon_sym_ATcompatibility_alias] = ACTIONS(1744), - [anon_sym_ATprotocol] = ACTIONS(1744), - [anon_sym_ATclass] = ACTIONS(1744), - [anon_sym_ATinterface] = ACTIONS(1744), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1742), - [sym_method_attribute_specifier] = ACTIONS(1742), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1742), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1742), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1742), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1742), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1742), - [anon_sym_NS_AVAILABLE] = ACTIONS(1742), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1742), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_API_AVAILABLE] = ACTIONS(1742), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_API_DEPRECATED] = ACTIONS(1742), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1742), - [anon_sym___deprecated_msg] = ACTIONS(1742), - [anon_sym___deprecated_enum_msg] = ACTIONS(1742), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1742), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1742), - [anon_sym_ATimplementation] = ACTIONS(1744), - [anon_sym_typeof] = ACTIONS(1742), - [anon_sym___typeof] = ACTIONS(1742), - [anon_sym___typeof__] = ACTIONS(1742), - [sym_self] = ACTIONS(1742), - [sym_super] = ACTIONS(1742), - [sym_nil] = ACTIONS(1742), - [sym_id] = ACTIONS(1742), - [sym_instancetype] = ACTIONS(1742), - [sym_Class] = ACTIONS(1742), - [sym_SEL] = ACTIONS(1742), - [sym_IMP] = ACTIONS(1742), - [sym_BOOL] = ACTIONS(1742), - [sym_auto] = ACTIONS(1742), - [anon_sym_ATautoreleasepool] = ACTIONS(1744), - [anon_sym_ATsynchronized] = ACTIONS(1744), - [anon_sym_ATtry] = ACTIONS(1744), - [anon_sym_ATthrow] = ACTIONS(1744), - [anon_sym_ATselector] = ACTIONS(1744), - [anon_sym_ATencode] = ACTIONS(1744), - [anon_sym_AT] = ACTIONS(1742), - [sym_YES] = ACTIONS(1742), - [sym_NO] = ACTIONS(1742), - [anon_sym___builtin_available] = ACTIONS(1742), - [anon_sym_ATavailable] = ACTIONS(1744), - [anon_sym_va_arg] = ACTIONS(1742), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [522] = { - [sym_identifier] = ACTIONS(1742), - [aux_sym_preproc_include_token1] = ACTIONS(1744), - [aux_sym_preproc_def_token1] = ACTIONS(1744), - [aux_sym_preproc_if_token1] = ACTIONS(1742), - [aux_sym_preproc_if_token2] = ACTIONS(1742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1742), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1742), - [aux_sym_preproc_else_token1] = ACTIONS(1742), - [aux_sym_preproc_elif_token1] = ACTIONS(1742), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_TILDE] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_CARET] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_typedef] = ACTIONS(1742), - [anon_sym_extern] = ACTIONS(1742), - [anon_sym___attribute] = ACTIONS(1742), - [anon_sym___attribute__] = ACTIONS(1742), - [anon_sym___declspec] = ACTIONS(1742), - [anon_sym___cdecl] = ACTIONS(1742), - [anon_sym___clrcall] = ACTIONS(1742), - [anon_sym___stdcall] = ACTIONS(1742), - [anon_sym___fastcall] = ACTIONS(1742), - [anon_sym___thiscall] = ACTIONS(1742), - [anon_sym___vectorcall] = ACTIONS(1742), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1744), - [anon_sym_static] = ACTIONS(1742), - [anon_sym_auto] = ACTIONS(1742), - [anon_sym_register] = ACTIONS(1742), - [anon_sym_inline] = ACTIONS(1742), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1742), - [anon_sym_const] = ACTIONS(1742), - [anon_sym_volatile] = ACTIONS(1742), - [anon_sym_restrict] = ACTIONS(1742), - [anon_sym__Atomic] = ACTIONS(1742), - [anon_sym_in] = ACTIONS(1742), - [anon_sym_out] = ACTIONS(1742), - [anon_sym_inout] = ACTIONS(1742), - [anon_sym_bycopy] = ACTIONS(1742), - [anon_sym_byref] = ACTIONS(1742), - [anon_sym_oneway] = ACTIONS(1742), - [anon_sym__Nullable] = ACTIONS(1742), - [anon_sym__Nonnull] = ACTIONS(1742), - [anon_sym__Nullable_result] = ACTIONS(1742), - [anon_sym__Null_unspecified] = ACTIONS(1742), - [anon_sym___autoreleasing] = ACTIONS(1742), - [anon_sym___nullable] = ACTIONS(1742), - [anon_sym___nonnull] = ACTIONS(1742), - [anon_sym___strong] = ACTIONS(1742), - [anon_sym___weak] = ACTIONS(1742), - [anon_sym___bridge] = ACTIONS(1742), - [anon_sym___bridge_transfer] = ACTIONS(1742), - [anon_sym___bridge_retained] = ACTIONS(1742), - [anon_sym___unsafe_unretained] = ACTIONS(1742), - [anon_sym___block] = ACTIONS(1742), - [anon_sym___kindof] = ACTIONS(1742), - [anon_sym___unused] = ACTIONS(1742), - [anon_sym__Complex] = ACTIONS(1742), - [anon_sym___complex] = ACTIONS(1742), - [anon_sym_IBOutlet] = ACTIONS(1742), - [anon_sym_IBInspectable] = ACTIONS(1742), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1742), - [anon_sym_signed] = ACTIONS(1742), - [anon_sym_unsigned] = ACTIONS(1742), - [anon_sym_long] = ACTIONS(1742), - [anon_sym_short] = ACTIONS(1742), - [sym_primitive_type] = ACTIONS(1742), - [anon_sym_enum] = ACTIONS(1742), - [anon_sym_NS_ENUM] = ACTIONS(1742), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1742), - [anon_sym_NS_OPTIONS] = ACTIONS(1742), - [anon_sym_struct] = ACTIONS(1742), - [anon_sym_union] = ACTIONS(1742), - [anon_sym_if] = ACTIONS(1742), - [anon_sym_switch] = ACTIONS(1742), - [anon_sym_case] = ACTIONS(1742), - [anon_sym_default] = ACTIONS(1742), - [anon_sym_while] = ACTIONS(1742), - [anon_sym_do] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(1742), - [anon_sym_return] = ACTIONS(1742), - [anon_sym_break] = ACTIONS(1742), - [anon_sym_continue] = ACTIONS(1742), - [anon_sym_goto] = ACTIONS(1742), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_sizeof] = ACTIONS(1742), - [sym_number_literal] = ACTIONS(1744), - [anon_sym_L_SQUOTE] = ACTIONS(1744), - [anon_sym_u_SQUOTE] = ACTIONS(1744), - [anon_sym_U_SQUOTE] = ACTIONS(1744), - [anon_sym_u8_SQUOTE] = ACTIONS(1744), - [anon_sym_SQUOTE] = ACTIONS(1744), - [anon_sym_L_DQUOTE] = ACTIONS(1744), - [anon_sym_u_DQUOTE] = ACTIONS(1744), - [anon_sym_U_DQUOTE] = ACTIONS(1744), - [anon_sym_u8_DQUOTE] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [sym_true] = ACTIONS(1742), - [sym_false] = ACTIONS(1742), - [sym_null] = ACTIONS(1742), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1744), - [anon_sym_ATimport] = ACTIONS(1744), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1742), - [anon_sym_ATcompatibility_alias] = ACTIONS(1744), - [anon_sym_ATprotocol] = ACTIONS(1744), - [anon_sym_ATclass] = ACTIONS(1744), - [anon_sym_ATinterface] = ACTIONS(1744), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1742), - [sym_method_attribute_specifier] = ACTIONS(1742), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1742), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1742), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1742), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1742), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1742), - [anon_sym_NS_AVAILABLE] = ACTIONS(1742), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1742), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_API_AVAILABLE] = ACTIONS(1742), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_API_DEPRECATED] = ACTIONS(1742), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1742), - [anon_sym___deprecated_msg] = ACTIONS(1742), - [anon_sym___deprecated_enum_msg] = ACTIONS(1742), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1742), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1742), - [anon_sym_ATimplementation] = ACTIONS(1744), - [anon_sym_typeof] = ACTIONS(1742), - [anon_sym___typeof] = ACTIONS(1742), - [anon_sym___typeof__] = ACTIONS(1742), - [sym_self] = ACTIONS(1742), - [sym_super] = ACTIONS(1742), - [sym_nil] = ACTIONS(1742), - [sym_id] = ACTIONS(1742), - [sym_instancetype] = ACTIONS(1742), - [sym_Class] = ACTIONS(1742), - [sym_SEL] = ACTIONS(1742), - [sym_IMP] = ACTIONS(1742), - [sym_BOOL] = ACTIONS(1742), - [sym_auto] = ACTIONS(1742), - [anon_sym_ATautoreleasepool] = ACTIONS(1744), - [anon_sym_ATsynchronized] = ACTIONS(1744), - [anon_sym_ATtry] = ACTIONS(1744), - [anon_sym_ATthrow] = ACTIONS(1744), - [anon_sym_ATselector] = ACTIONS(1744), - [anon_sym_ATencode] = ACTIONS(1744), - [anon_sym_AT] = ACTIONS(1742), - [sym_YES] = ACTIONS(1742), - [sym_NO] = ACTIONS(1742), - [anon_sym___builtin_available] = ACTIONS(1742), - [anon_sym_ATavailable] = ACTIONS(1744), - [anon_sym_va_arg] = ACTIONS(1742), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [523] = { - [sym_identifier] = ACTIONS(1742), - [aux_sym_preproc_include_token1] = ACTIONS(1744), - [aux_sym_preproc_def_token1] = ACTIONS(1744), - [aux_sym_preproc_if_token1] = ACTIONS(1742), - [aux_sym_preproc_if_token2] = ACTIONS(1742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1742), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1742), - [aux_sym_preproc_else_token1] = ACTIONS(1742), - [aux_sym_preproc_elif_token1] = ACTIONS(1742), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_TILDE] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_CARET] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_typedef] = ACTIONS(1742), - [anon_sym_extern] = ACTIONS(1742), - [anon_sym___attribute] = ACTIONS(1742), - [anon_sym___attribute__] = ACTIONS(1742), - [anon_sym___declspec] = ACTIONS(1742), - [anon_sym___cdecl] = ACTIONS(1742), - [anon_sym___clrcall] = ACTIONS(1742), - [anon_sym___stdcall] = ACTIONS(1742), - [anon_sym___fastcall] = ACTIONS(1742), - [anon_sym___thiscall] = ACTIONS(1742), - [anon_sym___vectorcall] = ACTIONS(1742), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1744), - [anon_sym_static] = ACTIONS(1742), - [anon_sym_auto] = ACTIONS(1742), - [anon_sym_register] = ACTIONS(1742), - [anon_sym_inline] = ACTIONS(1742), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1742), - [anon_sym_const] = ACTIONS(1742), - [anon_sym_volatile] = ACTIONS(1742), - [anon_sym_restrict] = ACTIONS(1742), - [anon_sym__Atomic] = ACTIONS(1742), - [anon_sym_in] = ACTIONS(1742), - [anon_sym_out] = ACTIONS(1742), - [anon_sym_inout] = ACTIONS(1742), - [anon_sym_bycopy] = ACTIONS(1742), - [anon_sym_byref] = ACTIONS(1742), - [anon_sym_oneway] = ACTIONS(1742), - [anon_sym__Nullable] = ACTIONS(1742), - [anon_sym__Nonnull] = ACTIONS(1742), - [anon_sym__Nullable_result] = ACTIONS(1742), - [anon_sym__Null_unspecified] = ACTIONS(1742), - [anon_sym___autoreleasing] = ACTIONS(1742), - [anon_sym___nullable] = ACTIONS(1742), - [anon_sym___nonnull] = ACTIONS(1742), - [anon_sym___strong] = ACTIONS(1742), - [anon_sym___weak] = ACTIONS(1742), - [anon_sym___bridge] = ACTIONS(1742), - [anon_sym___bridge_transfer] = ACTIONS(1742), - [anon_sym___bridge_retained] = ACTIONS(1742), - [anon_sym___unsafe_unretained] = ACTIONS(1742), - [anon_sym___block] = ACTIONS(1742), - [anon_sym___kindof] = ACTIONS(1742), - [anon_sym___unused] = ACTIONS(1742), - [anon_sym__Complex] = ACTIONS(1742), - [anon_sym___complex] = ACTIONS(1742), - [anon_sym_IBOutlet] = ACTIONS(1742), - [anon_sym_IBInspectable] = ACTIONS(1742), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1742), - [anon_sym_signed] = ACTIONS(1742), - [anon_sym_unsigned] = ACTIONS(1742), - [anon_sym_long] = ACTIONS(1742), - [anon_sym_short] = ACTIONS(1742), - [sym_primitive_type] = ACTIONS(1742), - [anon_sym_enum] = ACTIONS(1742), - [anon_sym_NS_ENUM] = ACTIONS(1742), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1742), - [anon_sym_NS_OPTIONS] = ACTIONS(1742), - [anon_sym_struct] = ACTIONS(1742), - [anon_sym_union] = ACTIONS(1742), - [anon_sym_if] = ACTIONS(1742), - [anon_sym_switch] = ACTIONS(1742), - [anon_sym_case] = ACTIONS(1742), - [anon_sym_default] = ACTIONS(1742), - [anon_sym_while] = ACTIONS(1742), - [anon_sym_do] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(1742), - [anon_sym_return] = ACTIONS(1742), - [anon_sym_break] = ACTIONS(1742), - [anon_sym_continue] = ACTIONS(1742), - [anon_sym_goto] = ACTIONS(1742), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_sizeof] = ACTIONS(1742), - [sym_number_literal] = ACTIONS(1744), - [anon_sym_L_SQUOTE] = ACTIONS(1744), - [anon_sym_u_SQUOTE] = ACTIONS(1744), - [anon_sym_U_SQUOTE] = ACTIONS(1744), - [anon_sym_u8_SQUOTE] = ACTIONS(1744), - [anon_sym_SQUOTE] = ACTIONS(1744), - [anon_sym_L_DQUOTE] = ACTIONS(1744), - [anon_sym_u_DQUOTE] = ACTIONS(1744), - [anon_sym_U_DQUOTE] = ACTIONS(1744), - [anon_sym_u8_DQUOTE] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [sym_true] = ACTIONS(1742), - [sym_false] = ACTIONS(1742), - [sym_null] = ACTIONS(1742), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1744), - [anon_sym_ATimport] = ACTIONS(1744), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1742), - [anon_sym_ATcompatibility_alias] = ACTIONS(1744), - [anon_sym_ATprotocol] = ACTIONS(1744), - [anon_sym_ATclass] = ACTIONS(1744), - [anon_sym_ATinterface] = ACTIONS(1744), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1742), - [sym_method_attribute_specifier] = ACTIONS(1742), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1742), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1742), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1742), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1742), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1742), - [anon_sym_NS_AVAILABLE] = ACTIONS(1742), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1742), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_API_AVAILABLE] = ACTIONS(1742), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_API_DEPRECATED] = ACTIONS(1742), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1742), - [anon_sym___deprecated_msg] = ACTIONS(1742), - [anon_sym___deprecated_enum_msg] = ACTIONS(1742), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1742), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1742), - [anon_sym_ATimplementation] = ACTIONS(1744), - [anon_sym_typeof] = ACTIONS(1742), - [anon_sym___typeof] = ACTIONS(1742), - [anon_sym___typeof__] = ACTIONS(1742), - [sym_self] = ACTIONS(1742), - [sym_super] = ACTIONS(1742), - [sym_nil] = ACTIONS(1742), - [sym_id] = ACTIONS(1742), - [sym_instancetype] = ACTIONS(1742), - [sym_Class] = ACTIONS(1742), - [sym_SEL] = ACTIONS(1742), - [sym_IMP] = ACTIONS(1742), - [sym_BOOL] = ACTIONS(1742), - [sym_auto] = ACTIONS(1742), - [anon_sym_ATautoreleasepool] = ACTIONS(1744), - [anon_sym_ATsynchronized] = ACTIONS(1744), - [anon_sym_ATtry] = ACTIONS(1744), - [anon_sym_ATthrow] = ACTIONS(1744), - [anon_sym_ATselector] = ACTIONS(1744), - [anon_sym_ATencode] = ACTIONS(1744), - [anon_sym_AT] = ACTIONS(1742), - [sym_YES] = ACTIONS(1742), - [sym_NO] = ACTIONS(1742), - [anon_sym___builtin_available] = ACTIONS(1742), - [anon_sym_ATavailable] = ACTIONS(1744), - [anon_sym_va_arg] = ACTIONS(1742), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [524] = { - [sym_identifier] = ACTIONS(1746), - [aux_sym_preproc_include_token1] = ACTIONS(1748), - [aux_sym_preproc_def_token1] = ACTIONS(1748), - [aux_sym_preproc_if_token1] = ACTIONS(1746), - [aux_sym_preproc_if_token2] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1746), - [aux_sym_preproc_else_token1] = ACTIONS(1746), - [aux_sym_preproc_elif_token1] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym___attribute] = ACTIONS(1746), - [anon_sym___attribute__] = ACTIONS(1746), - [anon_sym___declspec] = ACTIONS(1746), - [anon_sym___cdecl] = ACTIONS(1746), - [anon_sym___clrcall] = ACTIONS(1746), - [anon_sym___stdcall] = ACTIONS(1746), - [anon_sym___fastcall] = ACTIONS(1746), - [anon_sym___thiscall] = ACTIONS(1746), - [anon_sym___vectorcall] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1746), - [anon_sym_register] = ACTIONS(1746), - [anon_sym_inline] = ACTIONS(1746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_restrict] = ACTIONS(1746), - [anon_sym__Atomic] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_out] = ACTIONS(1746), - [anon_sym_inout] = ACTIONS(1746), - [anon_sym_bycopy] = ACTIONS(1746), - [anon_sym_byref] = ACTIONS(1746), - [anon_sym_oneway] = ACTIONS(1746), - [anon_sym__Nullable] = ACTIONS(1746), - [anon_sym__Nonnull] = ACTIONS(1746), - [anon_sym__Nullable_result] = ACTIONS(1746), - [anon_sym__Null_unspecified] = ACTIONS(1746), - [anon_sym___autoreleasing] = ACTIONS(1746), - [anon_sym___nullable] = ACTIONS(1746), - [anon_sym___nonnull] = ACTIONS(1746), - [anon_sym___strong] = ACTIONS(1746), - [anon_sym___weak] = ACTIONS(1746), - [anon_sym___bridge] = ACTIONS(1746), - [anon_sym___bridge_transfer] = ACTIONS(1746), - [anon_sym___bridge_retained] = ACTIONS(1746), - [anon_sym___unsafe_unretained] = ACTIONS(1746), - [anon_sym___block] = ACTIONS(1746), - [anon_sym___kindof] = ACTIONS(1746), - [anon_sym___unused] = ACTIONS(1746), - [anon_sym__Complex] = ACTIONS(1746), - [anon_sym___complex] = ACTIONS(1746), - [anon_sym_IBOutlet] = ACTIONS(1746), - [anon_sym_IBInspectable] = ACTIONS(1746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1746), - [anon_sym_unsigned] = ACTIONS(1746), - [anon_sym_long] = ACTIONS(1746), - [anon_sym_short] = ACTIONS(1746), - [sym_primitive_type] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_NS_ENUM] = ACTIONS(1746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1746), - [anon_sym_NS_OPTIONS] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_goto] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_sizeof] = ACTIONS(1746), - [sym_number_literal] = ACTIONS(1748), - [anon_sym_L_SQUOTE] = ACTIONS(1748), - [anon_sym_u_SQUOTE] = ACTIONS(1748), - [anon_sym_U_SQUOTE] = ACTIONS(1748), - [anon_sym_u8_SQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_L_DQUOTE] = ACTIONS(1748), - [anon_sym_u_DQUOTE] = ACTIONS(1748), - [anon_sym_U_DQUOTE] = ACTIONS(1748), - [anon_sym_u8_DQUOTE] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1748), - [anon_sym_ATimport] = ACTIONS(1748), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1746), - [anon_sym_ATcompatibility_alias] = ACTIONS(1748), - [anon_sym_ATprotocol] = ACTIONS(1748), - [anon_sym_ATclass] = ACTIONS(1748), - [anon_sym_ATinterface] = ACTIONS(1748), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1746), - [sym_method_attribute_specifier] = ACTIONS(1746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE] = ACTIONS(1746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_API_AVAILABLE] = ACTIONS(1746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_API_DEPRECATED] = ACTIONS(1746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1746), - [anon_sym___deprecated_msg] = ACTIONS(1746), - [anon_sym___deprecated_enum_msg] = ACTIONS(1746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1746), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1746), - [anon_sym_ATimplementation] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym___typeof] = ACTIONS(1746), - [anon_sym___typeof__] = ACTIONS(1746), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_nil] = ACTIONS(1746), - [sym_id] = ACTIONS(1746), - [sym_instancetype] = ACTIONS(1746), - [sym_Class] = ACTIONS(1746), - [sym_SEL] = ACTIONS(1746), - [sym_IMP] = ACTIONS(1746), - [sym_BOOL] = ACTIONS(1746), - [sym_auto] = ACTIONS(1746), - [anon_sym_ATautoreleasepool] = ACTIONS(1748), - [anon_sym_ATsynchronized] = ACTIONS(1748), - [anon_sym_ATtry] = ACTIONS(1748), - [anon_sym_ATthrow] = ACTIONS(1748), - [anon_sym_ATselector] = ACTIONS(1748), - [anon_sym_ATencode] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1746), - [sym_YES] = ACTIONS(1746), - [sym_NO] = ACTIONS(1746), - [anon_sym___builtin_available] = ACTIONS(1746), - [anon_sym_ATavailable] = ACTIONS(1748), - [anon_sym_va_arg] = ACTIONS(1746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [525] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [aux_sym_preproc_else_token1] = ACTIONS(1738), - [aux_sym_preproc_elif_token1] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [526] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [aux_sym_preproc_else_token1] = ACTIONS(1738), - [aux_sym_preproc_elif_token1] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [527] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [aux_sym_preproc_else_token1] = ACTIONS(1738), - [aux_sym_preproc_elif_token1] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [528] = { - [sym_identifier] = ACTIONS(1750), - [aux_sym_preproc_include_token1] = ACTIONS(1752), - [aux_sym_preproc_def_token1] = ACTIONS(1752), - [aux_sym_preproc_if_token1] = ACTIONS(1750), - [aux_sym_preproc_if_token2] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1750), - [aux_sym_preproc_else_token1] = ACTIONS(1750), - [aux_sym_preproc_elif_token1] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym___attribute] = ACTIONS(1750), - [anon_sym___attribute__] = ACTIONS(1750), - [anon_sym___declspec] = ACTIONS(1750), - [anon_sym___cdecl] = ACTIONS(1750), - [anon_sym___clrcall] = ACTIONS(1750), - [anon_sym___stdcall] = ACTIONS(1750), - [anon_sym___fastcall] = ACTIONS(1750), - [anon_sym___thiscall] = ACTIONS(1750), - [anon_sym___vectorcall] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_auto] = ACTIONS(1750), - [anon_sym_register] = ACTIONS(1750), - [anon_sym_inline] = ACTIONS(1750), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_volatile] = ACTIONS(1750), - [anon_sym_restrict] = ACTIONS(1750), - [anon_sym__Atomic] = ACTIONS(1750), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_out] = ACTIONS(1750), - [anon_sym_inout] = ACTIONS(1750), - [anon_sym_bycopy] = ACTIONS(1750), - [anon_sym_byref] = ACTIONS(1750), - [anon_sym_oneway] = ACTIONS(1750), - [anon_sym__Nullable] = ACTIONS(1750), - [anon_sym__Nonnull] = ACTIONS(1750), - [anon_sym__Nullable_result] = ACTIONS(1750), - [anon_sym__Null_unspecified] = ACTIONS(1750), - [anon_sym___autoreleasing] = ACTIONS(1750), - [anon_sym___nullable] = ACTIONS(1750), - [anon_sym___nonnull] = ACTIONS(1750), - [anon_sym___strong] = ACTIONS(1750), - [anon_sym___weak] = ACTIONS(1750), - [anon_sym___bridge] = ACTIONS(1750), - [anon_sym___bridge_transfer] = ACTIONS(1750), - [anon_sym___bridge_retained] = ACTIONS(1750), - [anon_sym___unsafe_unretained] = ACTIONS(1750), - [anon_sym___block] = ACTIONS(1750), - [anon_sym___kindof] = ACTIONS(1750), - [anon_sym___unused] = ACTIONS(1750), - [anon_sym__Complex] = ACTIONS(1750), - [anon_sym___complex] = ACTIONS(1750), - [anon_sym_IBOutlet] = ACTIONS(1750), - [anon_sym_IBInspectable] = ACTIONS(1750), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1750), - [anon_sym_signed] = ACTIONS(1750), - [anon_sym_unsigned] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_NS_ENUM] = ACTIONS(1750), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1750), - [anon_sym_NS_OPTIONS] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_goto] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1750), - [sym_number_literal] = ACTIONS(1752), - [anon_sym_L_SQUOTE] = ACTIONS(1752), - [anon_sym_u_SQUOTE] = ACTIONS(1752), - [anon_sym_U_SQUOTE] = ACTIONS(1752), - [anon_sym_u8_SQUOTE] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_L_DQUOTE] = ACTIONS(1752), - [anon_sym_u_DQUOTE] = ACTIONS(1752), - [anon_sym_U_DQUOTE] = ACTIONS(1752), - [anon_sym_u8_DQUOTE] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1752), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1752), - [anon_sym_ATimport] = ACTIONS(1752), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1750), - [anon_sym_ATcompatibility_alias] = ACTIONS(1752), - [anon_sym_ATprotocol] = ACTIONS(1752), - [anon_sym_ATclass] = ACTIONS(1752), - [anon_sym_ATinterface] = ACTIONS(1752), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1750), - [sym_method_attribute_specifier] = ACTIONS(1750), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1750), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE] = ACTIONS(1750), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_API_AVAILABLE] = ACTIONS(1750), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_API_DEPRECATED] = ACTIONS(1750), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1750), - [anon_sym___deprecated_msg] = ACTIONS(1750), - [anon_sym___deprecated_enum_msg] = ACTIONS(1750), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1750), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1750), - [anon_sym_ATimplementation] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym___typeof] = ACTIONS(1750), - [anon_sym___typeof__] = ACTIONS(1750), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_nil] = ACTIONS(1750), - [sym_id] = ACTIONS(1750), - [sym_instancetype] = ACTIONS(1750), - [sym_Class] = ACTIONS(1750), - [sym_SEL] = ACTIONS(1750), - [sym_IMP] = ACTIONS(1750), - [sym_BOOL] = ACTIONS(1750), - [sym_auto] = ACTIONS(1750), - [anon_sym_ATautoreleasepool] = ACTIONS(1752), - [anon_sym_ATsynchronized] = ACTIONS(1752), - [anon_sym_ATtry] = ACTIONS(1752), - [anon_sym_ATthrow] = ACTIONS(1752), - [anon_sym_ATselector] = ACTIONS(1752), - [anon_sym_ATencode] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [sym_YES] = ACTIONS(1750), - [sym_NO] = ACTIONS(1750), - [anon_sym___builtin_available] = ACTIONS(1750), - [anon_sym_ATavailable] = ACTIONS(1752), - [anon_sym_va_arg] = ACTIONS(1750), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [529] = { - [sym_identifier] = ACTIONS(1750), - [aux_sym_preproc_include_token1] = ACTIONS(1752), - [aux_sym_preproc_def_token1] = ACTIONS(1752), - [aux_sym_preproc_if_token1] = ACTIONS(1750), - [aux_sym_preproc_if_token2] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1750), - [aux_sym_preproc_else_token1] = ACTIONS(1750), - [aux_sym_preproc_elif_token1] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym___attribute] = ACTIONS(1750), - [anon_sym___attribute__] = ACTIONS(1750), - [anon_sym___declspec] = ACTIONS(1750), - [anon_sym___cdecl] = ACTIONS(1750), - [anon_sym___clrcall] = ACTIONS(1750), - [anon_sym___stdcall] = ACTIONS(1750), - [anon_sym___fastcall] = ACTIONS(1750), - [anon_sym___thiscall] = ACTIONS(1750), - [anon_sym___vectorcall] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_auto] = ACTIONS(1750), - [anon_sym_register] = ACTIONS(1750), - [anon_sym_inline] = ACTIONS(1750), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_volatile] = ACTIONS(1750), - [anon_sym_restrict] = ACTIONS(1750), - [anon_sym__Atomic] = ACTIONS(1750), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_out] = ACTIONS(1750), - [anon_sym_inout] = ACTIONS(1750), - [anon_sym_bycopy] = ACTIONS(1750), - [anon_sym_byref] = ACTIONS(1750), - [anon_sym_oneway] = ACTIONS(1750), - [anon_sym__Nullable] = ACTIONS(1750), - [anon_sym__Nonnull] = ACTIONS(1750), - [anon_sym__Nullable_result] = ACTIONS(1750), - [anon_sym__Null_unspecified] = ACTIONS(1750), - [anon_sym___autoreleasing] = ACTIONS(1750), - [anon_sym___nullable] = ACTIONS(1750), - [anon_sym___nonnull] = ACTIONS(1750), - [anon_sym___strong] = ACTIONS(1750), - [anon_sym___weak] = ACTIONS(1750), - [anon_sym___bridge] = ACTIONS(1750), - [anon_sym___bridge_transfer] = ACTIONS(1750), - [anon_sym___bridge_retained] = ACTIONS(1750), - [anon_sym___unsafe_unretained] = ACTIONS(1750), - [anon_sym___block] = ACTIONS(1750), - [anon_sym___kindof] = ACTIONS(1750), - [anon_sym___unused] = ACTIONS(1750), - [anon_sym__Complex] = ACTIONS(1750), - [anon_sym___complex] = ACTIONS(1750), - [anon_sym_IBOutlet] = ACTIONS(1750), - [anon_sym_IBInspectable] = ACTIONS(1750), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1750), - [anon_sym_signed] = ACTIONS(1750), - [anon_sym_unsigned] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_NS_ENUM] = ACTIONS(1750), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1750), - [anon_sym_NS_OPTIONS] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_goto] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1750), - [sym_number_literal] = ACTIONS(1752), - [anon_sym_L_SQUOTE] = ACTIONS(1752), - [anon_sym_u_SQUOTE] = ACTIONS(1752), - [anon_sym_U_SQUOTE] = ACTIONS(1752), - [anon_sym_u8_SQUOTE] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_L_DQUOTE] = ACTIONS(1752), - [anon_sym_u_DQUOTE] = ACTIONS(1752), - [anon_sym_U_DQUOTE] = ACTIONS(1752), - [anon_sym_u8_DQUOTE] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1752), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1752), - [anon_sym_ATimport] = ACTIONS(1752), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1750), - [anon_sym_ATcompatibility_alias] = ACTIONS(1752), - [anon_sym_ATprotocol] = ACTIONS(1752), - [anon_sym_ATclass] = ACTIONS(1752), - [anon_sym_ATinterface] = ACTIONS(1752), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1750), - [sym_method_attribute_specifier] = ACTIONS(1750), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1750), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE] = ACTIONS(1750), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_API_AVAILABLE] = ACTIONS(1750), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_API_DEPRECATED] = ACTIONS(1750), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1750), - [anon_sym___deprecated_msg] = ACTIONS(1750), - [anon_sym___deprecated_enum_msg] = ACTIONS(1750), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1750), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1750), - [anon_sym_ATimplementation] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym___typeof] = ACTIONS(1750), - [anon_sym___typeof__] = ACTIONS(1750), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_nil] = ACTIONS(1750), - [sym_id] = ACTIONS(1750), - [sym_instancetype] = ACTIONS(1750), - [sym_Class] = ACTIONS(1750), - [sym_SEL] = ACTIONS(1750), - [sym_IMP] = ACTIONS(1750), - [sym_BOOL] = ACTIONS(1750), - [sym_auto] = ACTIONS(1750), - [anon_sym_ATautoreleasepool] = ACTIONS(1752), - [anon_sym_ATsynchronized] = ACTIONS(1752), - [anon_sym_ATtry] = ACTIONS(1752), - [anon_sym_ATthrow] = ACTIONS(1752), - [anon_sym_ATselector] = ACTIONS(1752), - [anon_sym_ATencode] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [sym_YES] = ACTIONS(1750), - [sym_NO] = ACTIONS(1750), - [anon_sym___builtin_available] = ACTIONS(1750), - [anon_sym_ATavailable] = ACTIONS(1752), - [anon_sym_va_arg] = ACTIONS(1750), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [530] = { - [sym_identifier] = ACTIONS(1750), - [aux_sym_preproc_include_token1] = ACTIONS(1752), - [aux_sym_preproc_def_token1] = ACTIONS(1752), - [aux_sym_preproc_if_token1] = ACTIONS(1750), - [aux_sym_preproc_if_token2] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1750), - [aux_sym_preproc_else_token1] = ACTIONS(1750), - [aux_sym_preproc_elif_token1] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym___attribute] = ACTIONS(1750), - [anon_sym___attribute__] = ACTIONS(1750), - [anon_sym___declspec] = ACTIONS(1750), - [anon_sym___cdecl] = ACTIONS(1750), - [anon_sym___clrcall] = ACTIONS(1750), - [anon_sym___stdcall] = ACTIONS(1750), - [anon_sym___fastcall] = ACTIONS(1750), - [anon_sym___thiscall] = ACTIONS(1750), - [anon_sym___vectorcall] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_auto] = ACTIONS(1750), - [anon_sym_register] = ACTIONS(1750), - [anon_sym_inline] = ACTIONS(1750), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_volatile] = ACTIONS(1750), - [anon_sym_restrict] = ACTIONS(1750), - [anon_sym__Atomic] = ACTIONS(1750), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_out] = ACTIONS(1750), - [anon_sym_inout] = ACTIONS(1750), - [anon_sym_bycopy] = ACTIONS(1750), - [anon_sym_byref] = ACTIONS(1750), - [anon_sym_oneway] = ACTIONS(1750), - [anon_sym__Nullable] = ACTIONS(1750), - [anon_sym__Nonnull] = ACTIONS(1750), - [anon_sym__Nullable_result] = ACTIONS(1750), - [anon_sym__Null_unspecified] = ACTIONS(1750), - [anon_sym___autoreleasing] = ACTIONS(1750), - [anon_sym___nullable] = ACTIONS(1750), - [anon_sym___nonnull] = ACTIONS(1750), - [anon_sym___strong] = ACTIONS(1750), - [anon_sym___weak] = ACTIONS(1750), - [anon_sym___bridge] = ACTIONS(1750), - [anon_sym___bridge_transfer] = ACTIONS(1750), - [anon_sym___bridge_retained] = ACTIONS(1750), - [anon_sym___unsafe_unretained] = ACTIONS(1750), - [anon_sym___block] = ACTIONS(1750), - [anon_sym___kindof] = ACTIONS(1750), - [anon_sym___unused] = ACTIONS(1750), - [anon_sym__Complex] = ACTIONS(1750), - [anon_sym___complex] = ACTIONS(1750), - [anon_sym_IBOutlet] = ACTIONS(1750), - [anon_sym_IBInspectable] = ACTIONS(1750), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1750), - [anon_sym_signed] = ACTIONS(1750), - [anon_sym_unsigned] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_NS_ENUM] = ACTIONS(1750), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1750), - [anon_sym_NS_OPTIONS] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_goto] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1750), - [sym_number_literal] = ACTIONS(1752), - [anon_sym_L_SQUOTE] = ACTIONS(1752), - [anon_sym_u_SQUOTE] = ACTIONS(1752), - [anon_sym_U_SQUOTE] = ACTIONS(1752), - [anon_sym_u8_SQUOTE] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_L_DQUOTE] = ACTIONS(1752), - [anon_sym_u_DQUOTE] = ACTIONS(1752), - [anon_sym_U_DQUOTE] = ACTIONS(1752), - [anon_sym_u8_DQUOTE] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1752), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1752), - [anon_sym_ATimport] = ACTIONS(1752), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1750), - [anon_sym_ATcompatibility_alias] = ACTIONS(1752), - [anon_sym_ATprotocol] = ACTIONS(1752), - [anon_sym_ATclass] = ACTIONS(1752), - [anon_sym_ATinterface] = ACTIONS(1752), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1750), - [sym_method_attribute_specifier] = ACTIONS(1750), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1750), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE] = ACTIONS(1750), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_API_AVAILABLE] = ACTIONS(1750), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_API_DEPRECATED] = ACTIONS(1750), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1750), - [anon_sym___deprecated_msg] = ACTIONS(1750), - [anon_sym___deprecated_enum_msg] = ACTIONS(1750), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1750), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1750), - [anon_sym_ATimplementation] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym___typeof] = ACTIONS(1750), - [anon_sym___typeof__] = ACTIONS(1750), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_nil] = ACTIONS(1750), - [sym_id] = ACTIONS(1750), - [sym_instancetype] = ACTIONS(1750), - [sym_Class] = ACTIONS(1750), - [sym_SEL] = ACTIONS(1750), - [sym_IMP] = ACTIONS(1750), - [sym_BOOL] = ACTIONS(1750), - [sym_auto] = ACTIONS(1750), - [anon_sym_ATautoreleasepool] = ACTIONS(1752), - [anon_sym_ATsynchronized] = ACTIONS(1752), - [anon_sym_ATtry] = ACTIONS(1752), - [anon_sym_ATthrow] = ACTIONS(1752), - [anon_sym_ATselector] = ACTIONS(1752), - [anon_sym_ATencode] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [sym_YES] = ACTIONS(1750), - [sym_NO] = ACTIONS(1750), - [anon_sym___builtin_available] = ACTIONS(1750), - [anon_sym_ATavailable] = ACTIONS(1752), - [anon_sym_va_arg] = ACTIONS(1750), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [531] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [aux_sym_preproc_else_token1] = ACTIONS(1738), - [aux_sym_preproc_elif_token1] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [532] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [aux_sym_preproc_else_token1] = ACTIONS(1738), - [aux_sym_preproc_elif_token1] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [533] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [aux_sym_preproc_else_token1] = ACTIONS(1738), - [aux_sym_preproc_elif_token1] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [534] = { - [sym_identifier] = ACTIONS(1750), - [aux_sym_preproc_include_token1] = ACTIONS(1752), - [aux_sym_preproc_def_token1] = ACTIONS(1752), - [aux_sym_preproc_if_token1] = ACTIONS(1750), - [aux_sym_preproc_if_token2] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1750), - [aux_sym_preproc_else_token1] = ACTIONS(1750), - [aux_sym_preproc_elif_token1] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym___attribute] = ACTIONS(1750), - [anon_sym___attribute__] = ACTIONS(1750), - [anon_sym___declspec] = ACTIONS(1750), - [anon_sym___cdecl] = ACTIONS(1750), - [anon_sym___clrcall] = ACTIONS(1750), - [anon_sym___stdcall] = ACTIONS(1750), - [anon_sym___fastcall] = ACTIONS(1750), - [anon_sym___thiscall] = ACTIONS(1750), - [anon_sym___vectorcall] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_auto] = ACTIONS(1750), - [anon_sym_register] = ACTIONS(1750), - [anon_sym_inline] = ACTIONS(1750), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_volatile] = ACTIONS(1750), - [anon_sym_restrict] = ACTIONS(1750), - [anon_sym__Atomic] = ACTIONS(1750), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_out] = ACTIONS(1750), - [anon_sym_inout] = ACTIONS(1750), - [anon_sym_bycopy] = ACTIONS(1750), - [anon_sym_byref] = ACTIONS(1750), - [anon_sym_oneway] = ACTIONS(1750), - [anon_sym__Nullable] = ACTIONS(1750), - [anon_sym__Nonnull] = ACTIONS(1750), - [anon_sym__Nullable_result] = ACTIONS(1750), - [anon_sym__Null_unspecified] = ACTIONS(1750), - [anon_sym___autoreleasing] = ACTIONS(1750), - [anon_sym___nullable] = ACTIONS(1750), - [anon_sym___nonnull] = ACTIONS(1750), - [anon_sym___strong] = ACTIONS(1750), - [anon_sym___weak] = ACTIONS(1750), - [anon_sym___bridge] = ACTIONS(1750), - [anon_sym___bridge_transfer] = ACTIONS(1750), - [anon_sym___bridge_retained] = ACTIONS(1750), - [anon_sym___unsafe_unretained] = ACTIONS(1750), - [anon_sym___block] = ACTIONS(1750), - [anon_sym___kindof] = ACTIONS(1750), - [anon_sym___unused] = ACTIONS(1750), - [anon_sym__Complex] = ACTIONS(1750), - [anon_sym___complex] = ACTIONS(1750), - [anon_sym_IBOutlet] = ACTIONS(1750), - [anon_sym_IBInspectable] = ACTIONS(1750), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1750), - [anon_sym_signed] = ACTIONS(1750), - [anon_sym_unsigned] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_NS_ENUM] = ACTIONS(1750), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1750), - [anon_sym_NS_OPTIONS] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_goto] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1750), - [sym_number_literal] = ACTIONS(1752), - [anon_sym_L_SQUOTE] = ACTIONS(1752), - [anon_sym_u_SQUOTE] = ACTIONS(1752), - [anon_sym_U_SQUOTE] = ACTIONS(1752), - [anon_sym_u8_SQUOTE] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_L_DQUOTE] = ACTIONS(1752), - [anon_sym_u_DQUOTE] = ACTIONS(1752), - [anon_sym_U_DQUOTE] = ACTIONS(1752), - [anon_sym_u8_DQUOTE] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1752), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1752), - [anon_sym_ATimport] = ACTIONS(1752), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1750), - [anon_sym_ATcompatibility_alias] = ACTIONS(1752), - [anon_sym_ATprotocol] = ACTIONS(1752), - [anon_sym_ATclass] = ACTIONS(1752), - [anon_sym_ATinterface] = ACTIONS(1752), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1750), - [sym_method_attribute_specifier] = ACTIONS(1750), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1750), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE] = ACTIONS(1750), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_API_AVAILABLE] = ACTIONS(1750), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_API_DEPRECATED] = ACTIONS(1750), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1750), - [anon_sym___deprecated_msg] = ACTIONS(1750), - [anon_sym___deprecated_enum_msg] = ACTIONS(1750), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1750), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1750), - [anon_sym_ATimplementation] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym___typeof] = ACTIONS(1750), - [anon_sym___typeof__] = ACTIONS(1750), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_nil] = ACTIONS(1750), - [sym_id] = ACTIONS(1750), - [sym_instancetype] = ACTIONS(1750), - [sym_Class] = ACTIONS(1750), - [sym_SEL] = ACTIONS(1750), - [sym_IMP] = ACTIONS(1750), - [sym_BOOL] = ACTIONS(1750), - [sym_auto] = ACTIONS(1750), - [anon_sym_ATautoreleasepool] = ACTIONS(1752), - [anon_sym_ATsynchronized] = ACTIONS(1752), - [anon_sym_ATtry] = ACTIONS(1752), - [anon_sym_ATthrow] = ACTIONS(1752), - [anon_sym_ATselector] = ACTIONS(1752), - [anon_sym_ATencode] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [sym_YES] = ACTIONS(1750), - [sym_NO] = ACTIONS(1750), - [anon_sym___builtin_available] = ACTIONS(1750), - [anon_sym_ATavailable] = ACTIONS(1752), - [anon_sym_va_arg] = ACTIONS(1750), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [535] = { - [sym_identifier] = ACTIONS(1750), - [aux_sym_preproc_include_token1] = ACTIONS(1752), - [aux_sym_preproc_def_token1] = ACTIONS(1752), - [aux_sym_preproc_if_token1] = ACTIONS(1750), - [aux_sym_preproc_if_token2] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1750), - [aux_sym_preproc_else_token1] = ACTIONS(1750), - [aux_sym_preproc_elif_token1] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym___attribute] = ACTIONS(1750), - [anon_sym___attribute__] = ACTIONS(1750), - [anon_sym___declspec] = ACTIONS(1750), - [anon_sym___cdecl] = ACTIONS(1750), - [anon_sym___clrcall] = ACTIONS(1750), - [anon_sym___stdcall] = ACTIONS(1750), - [anon_sym___fastcall] = ACTIONS(1750), - [anon_sym___thiscall] = ACTIONS(1750), - [anon_sym___vectorcall] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_auto] = ACTIONS(1750), - [anon_sym_register] = ACTIONS(1750), - [anon_sym_inline] = ACTIONS(1750), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_volatile] = ACTIONS(1750), - [anon_sym_restrict] = ACTIONS(1750), - [anon_sym__Atomic] = ACTIONS(1750), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_out] = ACTIONS(1750), - [anon_sym_inout] = ACTIONS(1750), - [anon_sym_bycopy] = ACTIONS(1750), - [anon_sym_byref] = ACTIONS(1750), - [anon_sym_oneway] = ACTIONS(1750), - [anon_sym__Nullable] = ACTIONS(1750), - [anon_sym__Nonnull] = ACTIONS(1750), - [anon_sym__Nullable_result] = ACTIONS(1750), - [anon_sym__Null_unspecified] = ACTIONS(1750), - [anon_sym___autoreleasing] = ACTIONS(1750), - [anon_sym___nullable] = ACTIONS(1750), - [anon_sym___nonnull] = ACTIONS(1750), - [anon_sym___strong] = ACTIONS(1750), - [anon_sym___weak] = ACTIONS(1750), - [anon_sym___bridge] = ACTIONS(1750), - [anon_sym___bridge_transfer] = ACTIONS(1750), - [anon_sym___bridge_retained] = ACTIONS(1750), - [anon_sym___unsafe_unretained] = ACTIONS(1750), - [anon_sym___block] = ACTIONS(1750), - [anon_sym___kindof] = ACTIONS(1750), - [anon_sym___unused] = ACTIONS(1750), - [anon_sym__Complex] = ACTIONS(1750), - [anon_sym___complex] = ACTIONS(1750), - [anon_sym_IBOutlet] = ACTIONS(1750), - [anon_sym_IBInspectable] = ACTIONS(1750), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1750), - [anon_sym_signed] = ACTIONS(1750), - [anon_sym_unsigned] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_NS_ENUM] = ACTIONS(1750), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1750), - [anon_sym_NS_OPTIONS] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_goto] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1750), - [sym_number_literal] = ACTIONS(1752), - [anon_sym_L_SQUOTE] = ACTIONS(1752), - [anon_sym_u_SQUOTE] = ACTIONS(1752), - [anon_sym_U_SQUOTE] = ACTIONS(1752), - [anon_sym_u8_SQUOTE] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_L_DQUOTE] = ACTIONS(1752), - [anon_sym_u_DQUOTE] = ACTIONS(1752), - [anon_sym_U_DQUOTE] = ACTIONS(1752), - [anon_sym_u8_DQUOTE] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1752), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1752), - [anon_sym_ATimport] = ACTIONS(1752), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1750), - [anon_sym_ATcompatibility_alias] = ACTIONS(1752), - [anon_sym_ATprotocol] = ACTIONS(1752), - [anon_sym_ATclass] = ACTIONS(1752), - [anon_sym_ATinterface] = ACTIONS(1752), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1750), - [sym_method_attribute_specifier] = ACTIONS(1750), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1750), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE] = ACTIONS(1750), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_API_AVAILABLE] = ACTIONS(1750), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_API_DEPRECATED] = ACTIONS(1750), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1750), - [anon_sym___deprecated_msg] = ACTIONS(1750), - [anon_sym___deprecated_enum_msg] = ACTIONS(1750), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1750), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1750), - [anon_sym_ATimplementation] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym___typeof] = ACTIONS(1750), - [anon_sym___typeof__] = ACTIONS(1750), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_nil] = ACTIONS(1750), - [sym_id] = ACTIONS(1750), - [sym_instancetype] = ACTIONS(1750), - [sym_Class] = ACTIONS(1750), - [sym_SEL] = ACTIONS(1750), - [sym_IMP] = ACTIONS(1750), - [sym_BOOL] = ACTIONS(1750), - [sym_auto] = ACTIONS(1750), - [anon_sym_ATautoreleasepool] = ACTIONS(1752), - [anon_sym_ATsynchronized] = ACTIONS(1752), - [anon_sym_ATtry] = ACTIONS(1752), - [anon_sym_ATthrow] = ACTIONS(1752), - [anon_sym_ATselector] = ACTIONS(1752), - [anon_sym_ATencode] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [sym_YES] = ACTIONS(1750), - [sym_NO] = ACTIONS(1750), - [anon_sym___builtin_available] = ACTIONS(1750), - [anon_sym_ATavailable] = ACTIONS(1752), - [anon_sym_va_arg] = ACTIONS(1750), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [536] = { - [sym_identifier] = ACTIONS(1750), - [aux_sym_preproc_include_token1] = ACTIONS(1752), - [aux_sym_preproc_def_token1] = ACTIONS(1752), - [aux_sym_preproc_if_token1] = ACTIONS(1750), - [aux_sym_preproc_if_token2] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1750), - [aux_sym_preproc_else_token1] = ACTIONS(1750), - [aux_sym_preproc_elif_token1] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym___attribute] = ACTIONS(1750), - [anon_sym___attribute__] = ACTIONS(1750), - [anon_sym___declspec] = ACTIONS(1750), - [anon_sym___cdecl] = ACTIONS(1750), - [anon_sym___clrcall] = ACTIONS(1750), - [anon_sym___stdcall] = ACTIONS(1750), - [anon_sym___fastcall] = ACTIONS(1750), - [anon_sym___thiscall] = ACTIONS(1750), - [anon_sym___vectorcall] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_auto] = ACTIONS(1750), - [anon_sym_register] = ACTIONS(1750), - [anon_sym_inline] = ACTIONS(1750), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_volatile] = ACTIONS(1750), - [anon_sym_restrict] = ACTIONS(1750), - [anon_sym__Atomic] = ACTIONS(1750), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_out] = ACTIONS(1750), - [anon_sym_inout] = ACTIONS(1750), - [anon_sym_bycopy] = ACTIONS(1750), - [anon_sym_byref] = ACTIONS(1750), - [anon_sym_oneway] = ACTIONS(1750), - [anon_sym__Nullable] = ACTIONS(1750), - [anon_sym__Nonnull] = ACTIONS(1750), - [anon_sym__Nullable_result] = ACTIONS(1750), - [anon_sym__Null_unspecified] = ACTIONS(1750), - [anon_sym___autoreleasing] = ACTIONS(1750), - [anon_sym___nullable] = ACTIONS(1750), - [anon_sym___nonnull] = ACTIONS(1750), - [anon_sym___strong] = ACTIONS(1750), - [anon_sym___weak] = ACTIONS(1750), - [anon_sym___bridge] = ACTIONS(1750), - [anon_sym___bridge_transfer] = ACTIONS(1750), - [anon_sym___bridge_retained] = ACTIONS(1750), - [anon_sym___unsafe_unretained] = ACTIONS(1750), - [anon_sym___block] = ACTIONS(1750), - [anon_sym___kindof] = ACTIONS(1750), - [anon_sym___unused] = ACTIONS(1750), - [anon_sym__Complex] = ACTIONS(1750), - [anon_sym___complex] = ACTIONS(1750), - [anon_sym_IBOutlet] = ACTIONS(1750), - [anon_sym_IBInspectable] = ACTIONS(1750), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1750), - [anon_sym_signed] = ACTIONS(1750), - [anon_sym_unsigned] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_NS_ENUM] = ACTIONS(1750), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1750), - [anon_sym_NS_OPTIONS] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_goto] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1750), - [sym_number_literal] = ACTIONS(1752), - [anon_sym_L_SQUOTE] = ACTIONS(1752), - [anon_sym_u_SQUOTE] = ACTIONS(1752), - [anon_sym_U_SQUOTE] = ACTIONS(1752), - [anon_sym_u8_SQUOTE] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_L_DQUOTE] = ACTIONS(1752), - [anon_sym_u_DQUOTE] = ACTIONS(1752), - [anon_sym_U_DQUOTE] = ACTIONS(1752), - [anon_sym_u8_DQUOTE] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1752), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1752), - [anon_sym_ATimport] = ACTIONS(1752), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1750), - [anon_sym_ATcompatibility_alias] = ACTIONS(1752), - [anon_sym_ATprotocol] = ACTIONS(1752), - [anon_sym_ATclass] = ACTIONS(1752), - [anon_sym_ATinterface] = ACTIONS(1752), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1750), - [sym_method_attribute_specifier] = ACTIONS(1750), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1750), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE] = ACTIONS(1750), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_API_AVAILABLE] = ACTIONS(1750), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_API_DEPRECATED] = ACTIONS(1750), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1750), - [anon_sym___deprecated_msg] = ACTIONS(1750), - [anon_sym___deprecated_enum_msg] = ACTIONS(1750), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1750), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1750), - [anon_sym_ATimplementation] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym___typeof] = ACTIONS(1750), - [anon_sym___typeof__] = ACTIONS(1750), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_nil] = ACTIONS(1750), - [sym_id] = ACTIONS(1750), - [sym_instancetype] = ACTIONS(1750), - [sym_Class] = ACTIONS(1750), - [sym_SEL] = ACTIONS(1750), - [sym_IMP] = ACTIONS(1750), - [sym_BOOL] = ACTIONS(1750), - [sym_auto] = ACTIONS(1750), - [anon_sym_ATautoreleasepool] = ACTIONS(1752), - [anon_sym_ATsynchronized] = ACTIONS(1752), - [anon_sym_ATtry] = ACTIONS(1752), - [anon_sym_ATthrow] = ACTIONS(1752), - [anon_sym_ATselector] = ACTIONS(1752), - [anon_sym_ATencode] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [sym_YES] = ACTIONS(1750), - [sym_NO] = ACTIONS(1750), - [anon_sym___builtin_available] = ACTIONS(1750), - [anon_sym_ATavailable] = ACTIONS(1752), - [anon_sym_va_arg] = ACTIONS(1750), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [537] = { - [sym_identifier] = ACTIONS(1746), - [aux_sym_preproc_include_token1] = ACTIONS(1748), - [aux_sym_preproc_def_token1] = ACTIONS(1748), - [aux_sym_preproc_if_token1] = ACTIONS(1746), - [aux_sym_preproc_if_token2] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1746), - [aux_sym_preproc_else_token1] = ACTIONS(1746), - [aux_sym_preproc_elif_token1] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym___attribute] = ACTIONS(1746), - [anon_sym___attribute__] = ACTIONS(1746), - [anon_sym___declspec] = ACTIONS(1746), - [anon_sym___cdecl] = ACTIONS(1746), - [anon_sym___clrcall] = ACTIONS(1746), - [anon_sym___stdcall] = ACTIONS(1746), - [anon_sym___fastcall] = ACTIONS(1746), - [anon_sym___thiscall] = ACTIONS(1746), - [anon_sym___vectorcall] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1746), - [anon_sym_register] = ACTIONS(1746), - [anon_sym_inline] = ACTIONS(1746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_restrict] = ACTIONS(1746), - [anon_sym__Atomic] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_out] = ACTIONS(1746), - [anon_sym_inout] = ACTIONS(1746), - [anon_sym_bycopy] = ACTIONS(1746), - [anon_sym_byref] = ACTIONS(1746), - [anon_sym_oneway] = ACTIONS(1746), - [anon_sym__Nullable] = ACTIONS(1746), - [anon_sym__Nonnull] = ACTIONS(1746), - [anon_sym__Nullable_result] = ACTIONS(1746), - [anon_sym__Null_unspecified] = ACTIONS(1746), - [anon_sym___autoreleasing] = ACTIONS(1746), - [anon_sym___nullable] = ACTIONS(1746), - [anon_sym___nonnull] = ACTIONS(1746), - [anon_sym___strong] = ACTIONS(1746), - [anon_sym___weak] = ACTIONS(1746), - [anon_sym___bridge] = ACTIONS(1746), - [anon_sym___bridge_transfer] = ACTIONS(1746), - [anon_sym___bridge_retained] = ACTIONS(1746), - [anon_sym___unsafe_unretained] = ACTIONS(1746), - [anon_sym___block] = ACTIONS(1746), - [anon_sym___kindof] = ACTIONS(1746), - [anon_sym___unused] = ACTIONS(1746), - [anon_sym__Complex] = ACTIONS(1746), - [anon_sym___complex] = ACTIONS(1746), - [anon_sym_IBOutlet] = ACTIONS(1746), - [anon_sym_IBInspectable] = ACTIONS(1746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1746), - [anon_sym_unsigned] = ACTIONS(1746), - [anon_sym_long] = ACTIONS(1746), - [anon_sym_short] = ACTIONS(1746), - [sym_primitive_type] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_NS_ENUM] = ACTIONS(1746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1746), - [anon_sym_NS_OPTIONS] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_goto] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_sizeof] = ACTIONS(1746), - [sym_number_literal] = ACTIONS(1748), - [anon_sym_L_SQUOTE] = ACTIONS(1748), - [anon_sym_u_SQUOTE] = ACTIONS(1748), - [anon_sym_U_SQUOTE] = ACTIONS(1748), - [anon_sym_u8_SQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_L_DQUOTE] = ACTIONS(1748), - [anon_sym_u_DQUOTE] = ACTIONS(1748), - [anon_sym_U_DQUOTE] = ACTIONS(1748), - [anon_sym_u8_DQUOTE] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1748), - [anon_sym_ATimport] = ACTIONS(1748), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1746), - [anon_sym_ATcompatibility_alias] = ACTIONS(1748), - [anon_sym_ATprotocol] = ACTIONS(1748), - [anon_sym_ATclass] = ACTIONS(1748), - [anon_sym_ATinterface] = ACTIONS(1748), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1746), - [sym_method_attribute_specifier] = ACTIONS(1746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE] = ACTIONS(1746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_API_AVAILABLE] = ACTIONS(1746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_API_DEPRECATED] = ACTIONS(1746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1746), - [anon_sym___deprecated_msg] = ACTIONS(1746), - [anon_sym___deprecated_enum_msg] = ACTIONS(1746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1746), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1746), - [anon_sym_ATimplementation] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym___typeof] = ACTIONS(1746), - [anon_sym___typeof__] = ACTIONS(1746), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_nil] = ACTIONS(1746), - [sym_id] = ACTIONS(1746), - [sym_instancetype] = ACTIONS(1746), - [sym_Class] = ACTIONS(1746), - [sym_SEL] = ACTIONS(1746), - [sym_IMP] = ACTIONS(1746), - [sym_BOOL] = ACTIONS(1746), - [sym_auto] = ACTIONS(1746), - [anon_sym_ATautoreleasepool] = ACTIONS(1748), - [anon_sym_ATsynchronized] = ACTIONS(1748), - [anon_sym_ATtry] = ACTIONS(1748), - [anon_sym_ATthrow] = ACTIONS(1748), - [anon_sym_ATselector] = ACTIONS(1748), - [anon_sym_ATencode] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1746), - [sym_YES] = ACTIONS(1746), - [sym_NO] = ACTIONS(1746), - [anon_sym___builtin_available] = ACTIONS(1746), - [anon_sym_ATavailable] = ACTIONS(1748), - [anon_sym_va_arg] = ACTIONS(1746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [538] = { - [sym_identifier] = ACTIONS(1730), - [aux_sym_preproc_include_token1] = ACTIONS(1732), - [aux_sym_preproc_def_token1] = ACTIONS(1732), - [aux_sym_preproc_if_token1] = ACTIONS(1730), - [aux_sym_preproc_if_token2] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1730), - [aux_sym_preproc_else_token1] = ACTIONS(1730), - [aux_sym_preproc_elif_token1] = ACTIONS(1730), - [anon_sym_LPAREN2] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_CARET] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_typedef] = ACTIONS(1730), - [anon_sym_extern] = ACTIONS(1730), - [anon_sym___attribute] = ACTIONS(1730), - [anon_sym___attribute__] = ACTIONS(1730), - [anon_sym___declspec] = ACTIONS(1730), - [anon_sym___cdecl] = ACTIONS(1730), - [anon_sym___clrcall] = ACTIONS(1730), - [anon_sym___stdcall] = ACTIONS(1730), - [anon_sym___fastcall] = ACTIONS(1730), - [anon_sym___thiscall] = ACTIONS(1730), - [anon_sym___vectorcall] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_static] = ACTIONS(1730), - [anon_sym_auto] = ACTIONS(1730), - [anon_sym_register] = ACTIONS(1730), - [anon_sym_inline] = ACTIONS(1730), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1730), - [anon_sym_const] = ACTIONS(1730), - [anon_sym_volatile] = ACTIONS(1730), - [anon_sym_restrict] = ACTIONS(1730), - [anon_sym__Atomic] = ACTIONS(1730), - [anon_sym_in] = ACTIONS(1730), - [anon_sym_out] = ACTIONS(1730), - [anon_sym_inout] = ACTIONS(1730), - [anon_sym_bycopy] = ACTIONS(1730), - [anon_sym_byref] = ACTIONS(1730), - [anon_sym_oneway] = ACTIONS(1730), - [anon_sym__Nullable] = ACTIONS(1730), - [anon_sym__Nonnull] = ACTIONS(1730), - [anon_sym__Nullable_result] = ACTIONS(1730), - [anon_sym__Null_unspecified] = ACTIONS(1730), - [anon_sym___autoreleasing] = ACTIONS(1730), - [anon_sym___nullable] = ACTIONS(1730), - [anon_sym___nonnull] = ACTIONS(1730), - [anon_sym___strong] = ACTIONS(1730), - [anon_sym___weak] = ACTIONS(1730), - [anon_sym___bridge] = ACTIONS(1730), - [anon_sym___bridge_transfer] = ACTIONS(1730), - [anon_sym___bridge_retained] = ACTIONS(1730), - [anon_sym___unsafe_unretained] = ACTIONS(1730), - [anon_sym___block] = ACTIONS(1730), - [anon_sym___kindof] = ACTIONS(1730), - [anon_sym___unused] = ACTIONS(1730), - [anon_sym__Complex] = ACTIONS(1730), - [anon_sym___complex] = ACTIONS(1730), - [anon_sym_IBOutlet] = ACTIONS(1730), - [anon_sym_IBInspectable] = ACTIONS(1730), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1730), - [anon_sym_signed] = ACTIONS(1730), - [anon_sym_unsigned] = ACTIONS(1730), - [anon_sym_long] = ACTIONS(1730), - [anon_sym_short] = ACTIONS(1730), - [sym_primitive_type] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_NS_ENUM] = ACTIONS(1730), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1730), - [anon_sym_NS_OPTIONS] = ACTIONS(1730), - [anon_sym_struct] = ACTIONS(1730), - [anon_sym_union] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_switch] = ACTIONS(1730), - [anon_sym_case] = ACTIONS(1730), - [anon_sym_default] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_do] = ACTIONS(1730), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_goto] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1732), - [anon_sym_sizeof] = ACTIONS(1730), - [sym_number_literal] = ACTIONS(1732), - [anon_sym_L_SQUOTE] = ACTIONS(1732), - [anon_sym_u_SQUOTE] = ACTIONS(1732), - [anon_sym_U_SQUOTE] = ACTIONS(1732), - [anon_sym_u8_SQUOTE] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1732), - [anon_sym_L_DQUOTE] = ACTIONS(1732), - [anon_sym_u_DQUOTE] = ACTIONS(1732), - [anon_sym_U_DQUOTE] = ACTIONS(1732), - [anon_sym_u8_DQUOTE] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1732), - [sym_true] = ACTIONS(1730), - [sym_false] = ACTIONS(1730), - [sym_null] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1732), - [anon_sym_ATimport] = ACTIONS(1732), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1730), - [anon_sym_ATcompatibility_alias] = ACTIONS(1732), - [anon_sym_ATprotocol] = ACTIONS(1732), - [anon_sym_ATclass] = ACTIONS(1732), - [anon_sym_ATinterface] = ACTIONS(1732), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1730), - [sym_method_attribute_specifier] = ACTIONS(1730), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1730), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE] = ACTIONS(1730), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_API_AVAILABLE] = ACTIONS(1730), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_API_DEPRECATED] = ACTIONS(1730), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1730), - [anon_sym___deprecated_msg] = ACTIONS(1730), - [anon_sym___deprecated_enum_msg] = ACTIONS(1730), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1730), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1730), - [anon_sym_ATimplementation] = ACTIONS(1732), - [anon_sym_typeof] = ACTIONS(1730), - [anon_sym___typeof] = ACTIONS(1730), - [anon_sym___typeof__] = ACTIONS(1730), - [sym_self] = ACTIONS(1730), - [sym_super] = ACTIONS(1730), - [sym_nil] = ACTIONS(1730), - [sym_id] = ACTIONS(1730), - [sym_instancetype] = ACTIONS(1730), - [sym_Class] = ACTIONS(1730), - [sym_SEL] = ACTIONS(1730), - [sym_IMP] = ACTIONS(1730), - [sym_BOOL] = ACTIONS(1730), - [sym_auto] = ACTIONS(1730), - [anon_sym_ATautoreleasepool] = ACTIONS(1732), - [anon_sym_ATsynchronized] = ACTIONS(1732), - [anon_sym_ATtry] = ACTIONS(1732), - [anon_sym_ATthrow] = ACTIONS(1732), - [anon_sym_ATselector] = ACTIONS(1732), - [anon_sym_ATencode] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1730), - [sym_YES] = ACTIONS(1730), - [sym_NO] = ACTIONS(1730), - [anon_sym___builtin_available] = ACTIONS(1730), - [anon_sym_ATavailable] = ACTIONS(1732), - [anon_sym_va_arg] = ACTIONS(1730), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [539] = { - [sym_identifier] = ACTIONS(1746), - [aux_sym_preproc_include_token1] = ACTIONS(1748), - [aux_sym_preproc_def_token1] = ACTIONS(1748), - [aux_sym_preproc_if_token1] = ACTIONS(1746), - [aux_sym_preproc_if_token2] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1746), - [aux_sym_preproc_else_token1] = ACTIONS(1746), - [aux_sym_preproc_elif_token1] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym___attribute] = ACTIONS(1746), - [anon_sym___attribute__] = ACTIONS(1746), - [anon_sym___declspec] = ACTIONS(1746), - [anon_sym___cdecl] = ACTIONS(1746), - [anon_sym___clrcall] = ACTIONS(1746), - [anon_sym___stdcall] = ACTIONS(1746), - [anon_sym___fastcall] = ACTIONS(1746), - [anon_sym___thiscall] = ACTIONS(1746), - [anon_sym___vectorcall] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1746), - [anon_sym_register] = ACTIONS(1746), - [anon_sym_inline] = ACTIONS(1746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_restrict] = ACTIONS(1746), - [anon_sym__Atomic] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_out] = ACTIONS(1746), - [anon_sym_inout] = ACTIONS(1746), - [anon_sym_bycopy] = ACTIONS(1746), - [anon_sym_byref] = ACTIONS(1746), - [anon_sym_oneway] = ACTIONS(1746), - [anon_sym__Nullable] = ACTIONS(1746), - [anon_sym__Nonnull] = ACTIONS(1746), - [anon_sym__Nullable_result] = ACTIONS(1746), - [anon_sym__Null_unspecified] = ACTIONS(1746), - [anon_sym___autoreleasing] = ACTIONS(1746), - [anon_sym___nullable] = ACTIONS(1746), - [anon_sym___nonnull] = ACTIONS(1746), - [anon_sym___strong] = ACTIONS(1746), - [anon_sym___weak] = ACTIONS(1746), - [anon_sym___bridge] = ACTIONS(1746), - [anon_sym___bridge_transfer] = ACTIONS(1746), - [anon_sym___bridge_retained] = ACTIONS(1746), - [anon_sym___unsafe_unretained] = ACTIONS(1746), - [anon_sym___block] = ACTIONS(1746), - [anon_sym___kindof] = ACTIONS(1746), - [anon_sym___unused] = ACTIONS(1746), - [anon_sym__Complex] = ACTIONS(1746), - [anon_sym___complex] = ACTIONS(1746), - [anon_sym_IBOutlet] = ACTIONS(1746), - [anon_sym_IBInspectable] = ACTIONS(1746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1746), - [anon_sym_unsigned] = ACTIONS(1746), - [anon_sym_long] = ACTIONS(1746), - [anon_sym_short] = ACTIONS(1746), - [sym_primitive_type] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_NS_ENUM] = ACTIONS(1746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1746), - [anon_sym_NS_OPTIONS] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_goto] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_sizeof] = ACTIONS(1746), - [sym_number_literal] = ACTIONS(1748), - [anon_sym_L_SQUOTE] = ACTIONS(1748), - [anon_sym_u_SQUOTE] = ACTIONS(1748), - [anon_sym_U_SQUOTE] = ACTIONS(1748), - [anon_sym_u8_SQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_L_DQUOTE] = ACTIONS(1748), - [anon_sym_u_DQUOTE] = ACTIONS(1748), - [anon_sym_U_DQUOTE] = ACTIONS(1748), - [anon_sym_u8_DQUOTE] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1748), - [anon_sym_ATimport] = ACTIONS(1748), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1746), - [anon_sym_ATcompatibility_alias] = ACTIONS(1748), - [anon_sym_ATprotocol] = ACTIONS(1748), - [anon_sym_ATclass] = ACTIONS(1748), - [anon_sym_ATinterface] = ACTIONS(1748), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1746), - [sym_method_attribute_specifier] = ACTIONS(1746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE] = ACTIONS(1746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_API_AVAILABLE] = ACTIONS(1746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_API_DEPRECATED] = ACTIONS(1746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1746), - [anon_sym___deprecated_msg] = ACTIONS(1746), - [anon_sym___deprecated_enum_msg] = ACTIONS(1746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1746), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1746), - [anon_sym_ATimplementation] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym___typeof] = ACTIONS(1746), - [anon_sym___typeof__] = ACTIONS(1746), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_nil] = ACTIONS(1746), - [sym_id] = ACTIONS(1746), - [sym_instancetype] = ACTIONS(1746), - [sym_Class] = ACTIONS(1746), - [sym_SEL] = ACTIONS(1746), - [sym_IMP] = ACTIONS(1746), - [sym_BOOL] = ACTIONS(1746), - [sym_auto] = ACTIONS(1746), - [anon_sym_ATautoreleasepool] = ACTIONS(1748), - [anon_sym_ATsynchronized] = ACTIONS(1748), - [anon_sym_ATtry] = ACTIONS(1748), - [anon_sym_ATthrow] = ACTIONS(1748), - [anon_sym_ATselector] = ACTIONS(1748), - [anon_sym_ATencode] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1746), - [sym_YES] = ACTIONS(1746), - [sym_NO] = ACTIONS(1746), - [anon_sym___builtin_available] = ACTIONS(1746), - [anon_sym_ATavailable] = ACTIONS(1748), - [anon_sym_va_arg] = ACTIONS(1746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [540] = { - [sym_identifier] = ACTIONS(1746), - [aux_sym_preproc_include_token1] = ACTIONS(1748), - [aux_sym_preproc_def_token1] = ACTIONS(1748), - [aux_sym_preproc_if_token1] = ACTIONS(1746), - [aux_sym_preproc_if_token2] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1746), - [aux_sym_preproc_else_token1] = ACTIONS(1746), - [aux_sym_preproc_elif_token1] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym___attribute] = ACTIONS(1746), - [anon_sym___attribute__] = ACTIONS(1746), - [anon_sym___declspec] = ACTIONS(1746), - [anon_sym___cdecl] = ACTIONS(1746), - [anon_sym___clrcall] = ACTIONS(1746), - [anon_sym___stdcall] = ACTIONS(1746), - [anon_sym___fastcall] = ACTIONS(1746), - [anon_sym___thiscall] = ACTIONS(1746), - [anon_sym___vectorcall] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1746), - [anon_sym_register] = ACTIONS(1746), - [anon_sym_inline] = ACTIONS(1746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_restrict] = ACTIONS(1746), - [anon_sym__Atomic] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_out] = ACTIONS(1746), - [anon_sym_inout] = ACTIONS(1746), - [anon_sym_bycopy] = ACTIONS(1746), - [anon_sym_byref] = ACTIONS(1746), - [anon_sym_oneway] = ACTIONS(1746), - [anon_sym__Nullable] = ACTIONS(1746), - [anon_sym__Nonnull] = ACTIONS(1746), - [anon_sym__Nullable_result] = ACTIONS(1746), - [anon_sym__Null_unspecified] = ACTIONS(1746), - [anon_sym___autoreleasing] = ACTIONS(1746), - [anon_sym___nullable] = ACTIONS(1746), - [anon_sym___nonnull] = ACTIONS(1746), - [anon_sym___strong] = ACTIONS(1746), - [anon_sym___weak] = ACTIONS(1746), - [anon_sym___bridge] = ACTIONS(1746), - [anon_sym___bridge_transfer] = ACTIONS(1746), - [anon_sym___bridge_retained] = ACTIONS(1746), - [anon_sym___unsafe_unretained] = ACTIONS(1746), - [anon_sym___block] = ACTIONS(1746), - [anon_sym___kindof] = ACTIONS(1746), - [anon_sym___unused] = ACTIONS(1746), - [anon_sym__Complex] = ACTIONS(1746), - [anon_sym___complex] = ACTIONS(1746), - [anon_sym_IBOutlet] = ACTIONS(1746), - [anon_sym_IBInspectable] = ACTIONS(1746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1746), - [anon_sym_unsigned] = ACTIONS(1746), - [anon_sym_long] = ACTIONS(1746), - [anon_sym_short] = ACTIONS(1746), - [sym_primitive_type] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_NS_ENUM] = ACTIONS(1746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1746), - [anon_sym_NS_OPTIONS] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_goto] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_sizeof] = ACTIONS(1746), - [sym_number_literal] = ACTIONS(1748), - [anon_sym_L_SQUOTE] = ACTIONS(1748), - [anon_sym_u_SQUOTE] = ACTIONS(1748), - [anon_sym_U_SQUOTE] = ACTIONS(1748), - [anon_sym_u8_SQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_L_DQUOTE] = ACTIONS(1748), - [anon_sym_u_DQUOTE] = ACTIONS(1748), - [anon_sym_U_DQUOTE] = ACTIONS(1748), - [anon_sym_u8_DQUOTE] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1748), - [anon_sym_ATimport] = ACTIONS(1748), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1746), - [anon_sym_ATcompatibility_alias] = ACTIONS(1748), - [anon_sym_ATprotocol] = ACTIONS(1748), - [anon_sym_ATclass] = ACTIONS(1748), - [anon_sym_ATinterface] = ACTIONS(1748), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1746), - [sym_method_attribute_specifier] = ACTIONS(1746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE] = ACTIONS(1746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_API_AVAILABLE] = ACTIONS(1746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_API_DEPRECATED] = ACTIONS(1746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1746), - [anon_sym___deprecated_msg] = ACTIONS(1746), - [anon_sym___deprecated_enum_msg] = ACTIONS(1746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1746), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1746), - [anon_sym_ATimplementation] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym___typeof] = ACTIONS(1746), - [anon_sym___typeof__] = ACTIONS(1746), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_nil] = ACTIONS(1746), - [sym_id] = ACTIONS(1746), - [sym_instancetype] = ACTIONS(1746), - [sym_Class] = ACTIONS(1746), - [sym_SEL] = ACTIONS(1746), - [sym_IMP] = ACTIONS(1746), - [sym_BOOL] = ACTIONS(1746), - [sym_auto] = ACTIONS(1746), - [anon_sym_ATautoreleasepool] = ACTIONS(1748), - [anon_sym_ATsynchronized] = ACTIONS(1748), - [anon_sym_ATtry] = ACTIONS(1748), - [anon_sym_ATthrow] = ACTIONS(1748), - [anon_sym_ATselector] = ACTIONS(1748), - [anon_sym_ATencode] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1746), - [sym_YES] = ACTIONS(1746), - [sym_NO] = ACTIONS(1746), - [anon_sym___builtin_available] = ACTIONS(1746), - [anon_sym_ATavailable] = ACTIONS(1748), - [anon_sym_va_arg] = ACTIONS(1746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [541] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [aux_sym_preproc_else_token1] = ACTIONS(1738), - [aux_sym_preproc_elif_token1] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [542] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [aux_sym_preproc_else_token1] = ACTIONS(1738), - [aux_sym_preproc_elif_token1] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [543] = { - [sym_identifier] = ACTIONS(1730), - [aux_sym_preproc_include_token1] = ACTIONS(1732), - [aux_sym_preproc_def_token1] = ACTIONS(1732), - [aux_sym_preproc_if_token1] = ACTIONS(1730), - [aux_sym_preproc_if_token2] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1730), - [aux_sym_preproc_else_token1] = ACTIONS(1730), - [aux_sym_preproc_elif_token1] = ACTIONS(1730), - [anon_sym_LPAREN2] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_CARET] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_typedef] = ACTIONS(1730), - [anon_sym_extern] = ACTIONS(1730), - [anon_sym___attribute] = ACTIONS(1730), - [anon_sym___attribute__] = ACTIONS(1730), - [anon_sym___declspec] = ACTIONS(1730), - [anon_sym___cdecl] = ACTIONS(1730), - [anon_sym___clrcall] = ACTIONS(1730), - [anon_sym___stdcall] = ACTIONS(1730), - [anon_sym___fastcall] = ACTIONS(1730), - [anon_sym___thiscall] = ACTIONS(1730), - [anon_sym___vectorcall] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_static] = ACTIONS(1730), - [anon_sym_auto] = ACTIONS(1730), - [anon_sym_register] = ACTIONS(1730), - [anon_sym_inline] = ACTIONS(1730), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1730), - [anon_sym_const] = ACTIONS(1730), - [anon_sym_volatile] = ACTIONS(1730), - [anon_sym_restrict] = ACTIONS(1730), - [anon_sym__Atomic] = ACTIONS(1730), - [anon_sym_in] = ACTIONS(1730), - [anon_sym_out] = ACTIONS(1730), - [anon_sym_inout] = ACTIONS(1730), - [anon_sym_bycopy] = ACTIONS(1730), - [anon_sym_byref] = ACTIONS(1730), - [anon_sym_oneway] = ACTIONS(1730), - [anon_sym__Nullable] = ACTIONS(1730), - [anon_sym__Nonnull] = ACTIONS(1730), - [anon_sym__Nullable_result] = ACTIONS(1730), - [anon_sym__Null_unspecified] = ACTIONS(1730), - [anon_sym___autoreleasing] = ACTIONS(1730), - [anon_sym___nullable] = ACTIONS(1730), - [anon_sym___nonnull] = ACTIONS(1730), - [anon_sym___strong] = ACTIONS(1730), - [anon_sym___weak] = ACTIONS(1730), - [anon_sym___bridge] = ACTIONS(1730), - [anon_sym___bridge_transfer] = ACTIONS(1730), - [anon_sym___bridge_retained] = ACTIONS(1730), - [anon_sym___unsafe_unretained] = ACTIONS(1730), - [anon_sym___block] = ACTIONS(1730), - [anon_sym___kindof] = ACTIONS(1730), - [anon_sym___unused] = ACTIONS(1730), - [anon_sym__Complex] = ACTIONS(1730), - [anon_sym___complex] = ACTIONS(1730), - [anon_sym_IBOutlet] = ACTIONS(1730), - [anon_sym_IBInspectable] = ACTIONS(1730), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1730), - [anon_sym_signed] = ACTIONS(1730), - [anon_sym_unsigned] = ACTIONS(1730), - [anon_sym_long] = ACTIONS(1730), - [anon_sym_short] = ACTIONS(1730), - [sym_primitive_type] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_NS_ENUM] = ACTIONS(1730), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1730), - [anon_sym_NS_OPTIONS] = ACTIONS(1730), - [anon_sym_struct] = ACTIONS(1730), - [anon_sym_union] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_switch] = ACTIONS(1730), - [anon_sym_case] = ACTIONS(1730), - [anon_sym_default] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_do] = ACTIONS(1730), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_goto] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1732), - [anon_sym_sizeof] = ACTIONS(1730), - [sym_number_literal] = ACTIONS(1732), - [anon_sym_L_SQUOTE] = ACTIONS(1732), - [anon_sym_u_SQUOTE] = ACTIONS(1732), - [anon_sym_U_SQUOTE] = ACTIONS(1732), - [anon_sym_u8_SQUOTE] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1732), - [anon_sym_L_DQUOTE] = ACTIONS(1732), - [anon_sym_u_DQUOTE] = ACTIONS(1732), - [anon_sym_U_DQUOTE] = ACTIONS(1732), - [anon_sym_u8_DQUOTE] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1732), - [sym_true] = ACTIONS(1730), - [sym_false] = ACTIONS(1730), - [sym_null] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1732), - [anon_sym_ATimport] = ACTIONS(1732), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1730), - [anon_sym_ATcompatibility_alias] = ACTIONS(1732), - [anon_sym_ATprotocol] = ACTIONS(1732), - [anon_sym_ATclass] = ACTIONS(1732), - [anon_sym_ATinterface] = ACTIONS(1732), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1730), - [sym_method_attribute_specifier] = ACTIONS(1730), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1730), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE] = ACTIONS(1730), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_API_AVAILABLE] = ACTIONS(1730), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_API_DEPRECATED] = ACTIONS(1730), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1730), - [anon_sym___deprecated_msg] = ACTIONS(1730), - [anon_sym___deprecated_enum_msg] = ACTIONS(1730), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1730), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1730), - [anon_sym_ATimplementation] = ACTIONS(1732), - [anon_sym_typeof] = ACTIONS(1730), - [anon_sym___typeof] = ACTIONS(1730), - [anon_sym___typeof__] = ACTIONS(1730), - [sym_self] = ACTIONS(1730), - [sym_super] = ACTIONS(1730), - [sym_nil] = ACTIONS(1730), - [sym_id] = ACTIONS(1730), - [sym_instancetype] = ACTIONS(1730), - [sym_Class] = ACTIONS(1730), - [sym_SEL] = ACTIONS(1730), - [sym_IMP] = ACTIONS(1730), - [sym_BOOL] = ACTIONS(1730), - [sym_auto] = ACTIONS(1730), - [anon_sym_ATautoreleasepool] = ACTIONS(1732), - [anon_sym_ATsynchronized] = ACTIONS(1732), - [anon_sym_ATtry] = ACTIONS(1732), - [anon_sym_ATthrow] = ACTIONS(1732), - [anon_sym_ATselector] = ACTIONS(1732), - [anon_sym_ATencode] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1730), - [sym_YES] = ACTIONS(1730), - [sym_NO] = ACTIONS(1730), - [anon_sym___builtin_available] = ACTIONS(1730), - [anon_sym_ATavailable] = ACTIONS(1732), - [anon_sym_va_arg] = ACTIONS(1730), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [544] = { - [sym_identifier] = ACTIONS(1754), - [aux_sym_preproc_include_token1] = ACTIONS(1756), - [aux_sym_preproc_def_token1] = ACTIONS(1756), - [aux_sym_preproc_if_token1] = ACTIONS(1754), - [aux_sym_preproc_if_token2] = ACTIONS(1754), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1754), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1754), - [aux_sym_preproc_else_token1] = ACTIONS(1754), - [aux_sym_preproc_elif_token1] = ACTIONS(1754), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_BANG] = ACTIONS(1756), - [anon_sym_TILDE] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_typedef] = ACTIONS(1754), - [anon_sym_extern] = ACTIONS(1754), - [anon_sym___attribute] = ACTIONS(1754), - [anon_sym___attribute__] = ACTIONS(1754), - [anon_sym___declspec] = ACTIONS(1754), - [anon_sym___cdecl] = ACTIONS(1754), - [anon_sym___clrcall] = ACTIONS(1754), - [anon_sym___stdcall] = ACTIONS(1754), - [anon_sym___fastcall] = ACTIONS(1754), - [anon_sym___thiscall] = ACTIONS(1754), - [anon_sym___vectorcall] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1754), - [anon_sym_auto] = ACTIONS(1754), - [anon_sym_register] = ACTIONS(1754), - [anon_sym_inline] = ACTIONS(1754), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1754), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_volatile] = ACTIONS(1754), - [anon_sym_restrict] = ACTIONS(1754), - [anon_sym__Atomic] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_out] = ACTIONS(1754), - [anon_sym_inout] = ACTIONS(1754), - [anon_sym_bycopy] = ACTIONS(1754), - [anon_sym_byref] = ACTIONS(1754), - [anon_sym_oneway] = ACTIONS(1754), - [anon_sym__Nullable] = ACTIONS(1754), - [anon_sym__Nonnull] = ACTIONS(1754), - [anon_sym__Nullable_result] = ACTIONS(1754), - [anon_sym__Null_unspecified] = ACTIONS(1754), - [anon_sym___autoreleasing] = ACTIONS(1754), - [anon_sym___nullable] = ACTIONS(1754), - [anon_sym___nonnull] = ACTIONS(1754), - [anon_sym___strong] = ACTIONS(1754), - [anon_sym___weak] = ACTIONS(1754), - [anon_sym___bridge] = ACTIONS(1754), - [anon_sym___bridge_transfer] = ACTIONS(1754), - [anon_sym___bridge_retained] = ACTIONS(1754), - [anon_sym___unsafe_unretained] = ACTIONS(1754), - [anon_sym___block] = ACTIONS(1754), - [anon_sym___kindof] = ACTIONS(1754), - [anon_sym___unused] = ACTIONS(1754), - [anon_sym__Complex] = ACTIONS(1754), - [anon_sym___complex] = ACTIONS(1754), - [anon_sym_IBOutlet] = ACTIONS(1754), - [anon_sym_IBInspectable] = ACTIONS(1754), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1754), - [anon_sym_signed] = ACTIONS(1754), - [anon_sym_unsigned] = ACTIONS(1754), - [anon_sym_long] = ACTIONS(1754), - [anon_sym_short] = ACTIONS(1754), - [sym_primitive_type] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_NS_ENUM] = ACTIONS(1754), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1754), - [anon_sym_NS_OPTIONS] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(1754), - [anon_sym_union] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_switch] = ACTIONS(1754), - [anon_sym_case] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_do] = ACTIONS(1754), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_goto] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1756), - [anon_sym_PLUS_PLUS] = ACTIONS(1756), - [anon_sym_sizeof] = ACTIONS(1754), - [sym_number_literal] = ACTIONS(1756), - [anon_sym_L_SQUOTE] = ACTIONS(1756), - [anon_sym_u_SQUOTE] = ACTIONS(1756), - [anon_sym_U_SQUOTE] = ACTIONS(1756), - [anon_sym_u8_SQUOTE] = ACTIONS(1756), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_L_DQUOTE] = ACTIONS(1756), - [anon_sym_u_DQUOTE] = ACTIONS(1756), - [anon_sym_U_DQUOTE] = ACTIONS(1756), - [anon_sym_u8_DQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [sym_true] = ACTIONS(1754), - [sym_false] = ACTIONS(1754), - [sym_null] = ACTIONS(1754), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1756), - [anon_sym_ATimport] = ACTIONS(1756), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1754), - [anon_sym_ATcompatibility_alias] = ACTIONS(1756), - [anon_sym_ATprotocol] = ACTIONS(1756), - [anon_sym_ATclass] = ACTIONS(1756), - [anon_sym_ATinterface] = ACTIONS(1756), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1754), - [sym_method_attribute_specifier] = ACTIONS(1754), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1754), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1754), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1754), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1754), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1754), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1754), - [anon_sym_NS_AVAILABLE] = ACTIONS(1754), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1754), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1754), - [anon_sym_API_AVAILABLE] = ACTIONS(1754), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1754), - [anon_sym_API_DEPRECATED] = ACTIONS(1754), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1754), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1754), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1754), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1754), - [anon_sym___deprecated_msg] = ACTIONS(1754), - [anon_sym___deprecated_enum_msg] = ACTIONS(1754), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1754), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1754), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1754), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1754), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1754), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1754), - [anon_sym_ATimplementation] = ACTIONS(1756), - [anon_sym_typeof] = ACTIONS(1754), - [anon_sym___typeof] = ACTIONS(1754), - [anon_sym___typeof__] = ACTIONS(1754), - [sym_self] = ACTIONS(1754), - [sym_super] = ACTIONS(1754), - [sym_nil] = ACTIONS(1754), - [sym_id] = ACTIONS(1754), - [sym_instancetype] = ACTIONS(1754), - [sym_Class] = ACTIONS(1754), - [sym_SEL] = ACTIONS(1754), - [sym_IMP] = ACTIONS(1754), - [sym_BOOL] = ACTIONS(1754), - [sym_auto] = ACTIONS(1754), - [anon_sym_ATautoreleasepool] = ACTIONS(1756), - [anon_sym_ATsynchronized] = ACTIONS(1756), - [anon_sym_ATtry] = ACTIONS(1756), - [anon_sym_ATthrow] = ACTIONS(1756), - [anon_sym_ATselector] = ACTIONS(1756), - [anon_sym_ATencode] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(1754), - [sym_YES] = ACTIONS(1754), - [sym_NO] = ACTIONS(1754), - [anon_sym___builtin_available] = ACTIONS(1754), - [anon_sym_ATavailable] = ACTIONS(1756), - [anon_sym_va_arg] = ACTIONS(1754), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [545] = { - [sym_identifier] = ACTIONS(1758), - [aux_sym_preproc_include_token1] = ACTIONS(1760), - [aux_sym_preproc_def_token1] = ACTIONS(1760), - [aux_sym_preproc_if_token1] = ACTIONS(1758), - [aux_sym_preproc_if_token2] = ACTIONS(1758), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1758), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1758), - [aux_sym_preproc_else_token1] = ACTIONS(1758), - [aux_sym_preproc_elif_token1] = ACTIONS(1758), - [anon_sym_LPAREN2] = ACTIONS(1760), - [anon_sym_BANG] = ACTIONS(1760), - [anon_sym_TILDE] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_CARET] = ACTIONS(1760), - [anon_sym_AMP] = ACTIONS(1760), - [anon_sym_SEMI] = ACTIONS(1760), - [anon_sym_typedef] = ACTIONS(1758), - [anon_sym_extern] = ACTIONS(1758), - [anon_sym___attribute] = ACTIONS(1758), - [anon_sym___attribute__] = ACTIONS(1758), - [anon_sym___declspec] = ACTIONS(1758), - [anon_sym___cdecl] = ACTIONS(1758), - [anon_sym___clrcall] = ACTIONS(1758), - [anon_sym___stdcall] = ACTIONS(1758), - [anon_sym___fastcall] = ACTIONS(1758), - [anon_sym___thiscall] = ACTIONS(1758), - [anon_sym___vectorcall] = ACTIONS(1758), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_LBRACK] = ACTIONS(1760), - [anon_sym_static] = ACTIONS(1758), - [anon_sym_auto] = ACTIONS(1758), - [anon_sym_register] = ACTIONS(1758), - [anon_sym_inline] = ACTIONS(1758), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1758), - [anon_sym_const] = ACTIONS(1758), - [anon_sym_volatile] = ACTIONS(1758), - [anon_sym_restrict] = ACTIONS(1758), - [anon_sym__Atomic] = ACTIONS(1758), - [anon_sym_in] = ACTIONS(1758), - [anon_sym_out] = ACTIONS(1758), - [anon_sym_inout] = ACTIONS(1758), - [anon_sym_bycopy] = ACTIONS(1758), - [anon_sym_byref] = ACTIONS(1758), - [anon_sym_oneway] = ACTIONS(1758), - [anon_sym__Nullable] = ACTIONS(1758), - [anon_sym__Nonnull] = ACTIONS(1758), - [anon_sym__Nullable_result] = ACTIONS(1758), - [anon_sym__Null_unspecified] = ACTIONS(1758), - [anon_sym___autoreleasing] = ACTIONS(1758), - [anon_sym___nullable] = ACTIONS(1758), - [anon_sym___nonnull] = ACTIONS(1758), - [anon_sym___strong] = ACTIONS(1758), - [anon_sym___weak] = ACTIONS(1758), - [anon_sym___bridge] = ACTIONS(1758), - [anon_sym___bridge_transfer] = ACTIONS(1758), - [anon_sym___bridge_retained] = ACTIONS(1758), - [anon_sym___unsafe_unretained] = ACTIONS(1758), - [anon_sym___block] = ACTIONS(1758), - [anon_sym___kindof] = ACTIONS(1758), - [anon_sym___unused] = ACTIONS(1758), - [anon_sym__Complex] = ACTIONS(1758), - [anon_sym___complex] = ACTIONS(1758), - [anon_sym_IBOutlet] = ACTIONS(1758), - [anon_sym_IBInspectable] = ACTIONS(1758), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1758), - [anon_sym_signed] = ACTIONS(1758), - [anon_sym_unsigned] = ACTIONS(1758), - [anon_sym_long] = ACTIONS(1758), - [anon_sym_short] = ACTIONS(1758), - [sym_primitive_type] = ACTIONS(1758), - [anon_sym_enum] = ACTIONS(1758), - [anon_sym_NS_ENUM] = ACTIONS(1758), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1758), - [anon_sym_NS_OPTIONS] = ACTIONS(1758), - [anon_sym_struct] = ACTIONS(1758), - [anon_sym_union] = ACTIONS(1758), - [anon_sym_if] = ACTIONS(1758), - [anon_sym_switch] = ACTIONS(1758), - [anon_sym_case] = ACTIONS(1758), - [anon_sym_default] = ACTIONS(1758), - [anon_sym_while] = ACTIONS(1758), - [anon_sym_do] = ACTIONS(1758), - [anon_sym_for] = ACTIONS(1758), - [anon_sym_return] = ACTIONS(1758), - [anon_sym_break] = ACTIONS(1758), - [anon_sym_continue] = ACTIONS(1758), - [anon_sym_goto] = ACTIONS(1758), - [anon_sym_DASH_DASH] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1760), - [anon_sym_sizeof] = ACTIONS(1758), - [sym_number_literal] = ACTIONS(1760), - [anon_sym_L_SQUOTE] = ACTIONS(1760), - [anon_sym_u_SQUOTE] = ACTIONS(1760), - [anon_sym_U_SQUOTE] = ACTIONS(1760), - [anon_sym_u8_SQUOTE] = ACTIONS(1760), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_L_DQUOTE] = ACTIONS(1760), - [anon_sym_u_DQUOTE] = ACTIONS(1760), - [anon_sym_U_DQUOTE] = ACTIONS(1760), - [anon_sym_u8_DQUOTE] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1760), - [sym_true] = ACTIONS(1758), - [sym_false] = ACTIONS(1758), - [sym_null] = ACTIONS(1758), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1760), - [anon_sym_ATimport] = ACTIONS(1760), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1758), - [anon_sym_ATcompatibility_alias] = ACTIONS(1760), - [anon_sym_ATprotocol] = ACTIONS(1760), - [anon_sym_ATclass] = ACTIONS(1760), - [anon_sym_ATinterface] = ACTIONS(1760), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1758), - [sym_method_attribute_specifier] = ACTIONS(1758), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1758), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1758), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1758), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1758), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1758), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1758), - [anon_sym_NS_AVAILABLE] = ACTIONS(1758), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1758), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1758), - [anon_sym_API_AVAILABLE] = ACTIONS(1758), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1758), - [anon_sym_API_DEPRECATED] = ACTIONS(1758), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1758), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1758), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1758), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1758), - [anon_sym___deprecated_msg] = ACTIONS(1758), - [anon_sym___deprecated_enum_msg] = ACTIONS(1758), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1758), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1758), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1758), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1758), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1758), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1758), - [anon_sym_ATimplementation] = ACTIONS(1760), - [anon_sym_typeof] = ACTIONS(1758), - [anon_sym___typeof] = ACTIONS(1758), - [anon_sym___typeof__] = ACTIONS(1758), - [sym_self] = ACTIONS(1758), - [sym_super] = ACTIONS(1758), - [sym_nil] = ACTIONS(1758), - [sym_id] = ACTIONS(1758), - [sym_instancetype] = ACTIONS(1758), - [sym_Class] = ACTIONS(1758), - [sym_SEL] = ACTIONS(1758), - [sym_IMP] = ACTIONS(1758), - [sym_BOOL] = ACTIONS(1758), - [sym_auto] = ACTIONS(1758), - [anon_sym_ATautoreleasepool] = ACTIONS(1760), - [anon_sym_ATsynchronized] = ACTIONS(1760), - [anon_sym_ATtry] = ACTIONS(1760), - [anon_sym_ATthrow] = ACTIONS(1760), - [anon_sym_ATselector] = ACTIONS(1760), - [anon_sym_ATencode] = ACTIONS(1760), - [anon_sym_AT] = ACTIONS(1758), - [sym_YES] = ACTIONS(1758), - [sym_NO] = ACTIONS(1758), - [anon_sym___builtin_available] = ACTIONS(1758), - [anon_sym_ATavailable] = ACTIONS(1760), - [anon_sym_va_arg] = ACTIONS(1758), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [546] = { - [sym_identifier] = ACTIONS(1762), - [aux_sym_preproc_include_token1] = ACTIONS(1764), - [aux_sym_preproc_def_token1] = ACTIONS(1764), - [aux_sym_preproc_if_token1] = ACTIONS(1762), - [aux_sym_preproc_if_token2] = ACTIONS(1762), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1762), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1762), - [aux_sym_preproc_else_token1] = ACTIONS(1762), - [aux_sym_preproc_elif_token1] = ACTIONS(1762), - [anon_sym_LPAREN2] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(1762), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_CARET] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1764), - [anon_sym_typedef] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym___attribute] = ACTIONS(1762), - [anon_sym___attribute__] = ACTIONS(1762), - [anon_sym___declspec] = ACTIONS(1762), - [anon_sym___cdecl] = ACTIONS(1762), - [anon_sym___clrcall] = ACTIONS(1762), - [anon_sym___stdcall] = ACTIONS(1762), - [anon_sym___fastcall] = ACTIONS(1762), - [anon_sym___thiscall] = ACTIONS(1762), - [anon_sym___vectorcall] = ACTIONS(1762), - [anon_sym_LBRACE] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(1764), - [anon_sym_static] = ACTIONS(1762), - [anon_sym_auto] = ACTIONS(1762), - [anon_sym_register] = ACTIONS(1762), - [anon_sym_inline] = ACTIONS(1762), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [anon_sym_volatile] = ACTIONS(1762), - [anon_sym_restrict] = ACTIONS(1762), - [anon_sym__Atomic] = ACTIONS(1762), - [anon_sym_in] = ACTIONS(1762), - [anon_sym_out] = ACTIONS(1762), - [anon_sym_inout] = ACTIONS(1762), - [anon_sym_bycopy] = ACTIONS(1762), - [anon_sym_byref] = ACTIONS(1762), - [anon_sym_oneway] = ACTIONS(1762), - [anon_sym__Nullable] = ACTIONS(1762), - [anon_sym__Nonnull] = ACTIONS(1762), - [anon_sym__Nullable_result] = ACTIONS(1762), - [anon_sym__Null_unspecified] = ACTIONS(1762), - [anon_sym___autoreleasing] = ACTIONS(1762), - [anon_sym___nullable] = ACTIONS(1762), - [anon_sym___nonnull] = ACTIONS(1762), - [anon_sym___strong] = ACTIONS(1762), - [anon_sym___weak] = ACTIONS(1762), - [anon_sym___bridge] = ACTIONS(1762), - [anon_sym___bridge_transfer] = ACTIONS(1762), - [anon_sym___bridge_retained] = ACTIONS(1762), - [anon_sym___unsafe_unretained] = ACTIONS(1762), - [anon_sym___block] = ACTIONS(1762), - [anon_sym___kindof] = ACTIONS(1762), - [anon_sym___unused] = ACTIONS(1762), - [anon_sym__Complex] = ACTIONS(1762), - [anon_sym___complex] = ACTIONS(1762), - [anon_sym_IBOutlet] = ACTIONS(1762), - [anon_sym_IBInspectable] = ACTIONS(1762), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1762), - [anon_sym_signed] = ACTIONS(1762), - [anon_sym_unsigned] = ACTIONS(1762), - [anon_sym_long] = ACTIONS(1762), - [anon_sym_short] = ACTIONS(1762), - [sym_primitive_type] = ACTIONS(1762), - [anon_sym_enum] = ACTIONS(1762), - [anon_sym_NS_ENUM] = ACTIONS(1762), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1762), - [anon_sym_NS_OPTIONS] = ACTIONS(1762), - [anon_sym_struct] = ACTIONS(1762), - [anon_sym_union] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(1762), - [anon_sym_switch] = ACTIONS(1762), - [anon_sym_case] = ACTIONS(1762), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1762), - [anon_sym_do] = ACTIONS(1762), - [anon_sym_for] = ACTIONS(1762), - [anon_sym_return] = ACTIONS(1762), - [anon_sym_break] = ACTIONS(1762), - [anon_sym_continue] = ACTIONS(1762), - [anon_sym_goto] = ACTIONS(1762), - [anon_sym_DASH_DASH] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1764), - [anon_sym_sizeof] = ACTIONS(1762), - [sym_number_literal] = ACTIONS(1764), - [anon_sym_L_SQUOTE] = ACTIONS(1764), - [anon_sym_u_SQUOTE] = ACTIONS(1764), - [anon_sym_U_SQUOTE] = ACTIONS(1764), - [anon_sym_u8_SQUOTE] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1764), - [anon_sym_L_DQUOTE] = ACTIONS(1764), - [anon_sym_u_DQUOTE] = ACTIONS(1764), - [anon_sym_U_DQUOTE] = ACTIONS(1764), - [anon_sym_u8_DQUOTE] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1764), - [sym_true] = ACTIONS(1762), - [sym_false] = ACTIONS(1762), - [sym_null] = ACTIONS(1762), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1764), - [anon_sym_ATimport] = ACTIONS(1764), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1762), - [anon_sym_ATcompatibility_alias] = ACTIONS(1764), - [anon_sym_ATprotocol] = ACTIONS(1764), - [anon_sym_ATclass] = ACTIONS(1764), - [anon_sym_ATinterface] = ACTIONS(1764), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1762), - [sym_method_attribute_specifier] = ACTIONS(1762), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1762), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1762), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1762), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1762), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1762), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1762), - [anon_sym_NS_AVAILABLE] = ACTIONS(1762), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1762), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1762), - [anon_sym_API_AVAILABLE] = ACTIONS(1762), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1762), - [anon_sym_API_DEPRECATED] = ACTIONS(1762), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1762), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1762), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1762), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1762), - [anon_sym___deprecated_msg] = ACTIONS(1762), - [anon_sym___deprecated_enum_msg] = ACTIONS(1762), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1762), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1762), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1762), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1762), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1762), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1762), - [anon_sym_ATimplementation] = ACTIONS(1764), - [anon_sym_typeof] = ACTIONS(1762), - [anon_sym___typeof] = ACTIONS(1762), - [anon_sym___typeof__] = ACTIONS(1762), - [sym_self] = ACTIONS(1762), - [sym_super] = ACTIONS(1762), - [sym_nil] = ACTIONS(1762), - [sym_id] = ACTIONS(1762), - [sym_instancetype] = ACTIONS(1762), - [sym_Class] = ACTIONS(1762), - [sym_SEL] = ACTIONS(1762), - [sym_IMP] = ACTIONS(1762), - [sym_BOOL] = ACTIONS(1762), - [sym_auto] = ACTIONS(1762), - [anon_sym_ATautoreleasepool] = ACTIONS(1764), - [anon_sym_ATsynchronized] = ACTIONS(1764), - [anon_sym_ATtry] = ACTIONS(1764), - [anon_sym_ATthrow] = ACTIONS(1764), - [anon_sym_ATselector] = ACTIONS(1764), - [anon_sym_ATencode] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1762), - [sym_YES] = ACTIONS(1762), - [sym_NO] = ACTIONS(1762), - [anon_sym___builtin_available] = ACTIONS(1762), - [anon_sym_ATavailable] = ACTIONS(1764), - [anon_sym_va_arg] = ACTIONS(1762), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [547] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [aux_sym_preproc_else_token1] = ACTIONS(1738), - [aux_sym_preproc_elif_token1] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [548] = { - [sym_identifier] = ACTIONS(1766), - [aux_sym_preproc_include_token1] = ACTIONS(1768), - [aux_sym_preproc_def_token1] = ACTIONS(1768), - [aux_sym_preproc_if_token1] = ACTIONS(1766), - [aux_sym_preproc_if_token2] = ACTIONS(1766), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1766), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1766), - [aux_sym_preproc_else_token1] = ACTIONS(1766), - [aux_sym_preproc_elif_token1] = ACTIONS(1766), - [anon_sym_LPAREN2] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1768), - [anon_sym_TILDE] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1766), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_CARET] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(1768), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_typedef] = ACTIONS(1766), - [anon_sym_extern] = ACTIONS(1766), - [anon_sym___attribute] = ACTIONS(1766), - [anon_sym___attribute__] = ACTIONS(1766), - [anon_sym___declspec] = ACTIONS(1766), - [anon_sym___cdecl] = ACTIONS(1766), - [anon_sym___clrcall] = ACTIONS(1766), - [anon_sym___stdcall] = ACTIONS(1766), - [anon_sym___fastcall] = ACTIONS(1766), - [anon_sym___thiscall] = ACTIONS(1766), - [anon_sym___vectorcall] = ACTIONS(1766), - [anon_sym_LBRACE] = ACTIONS(1768), - [anon_sym_LBRACK] = ACTIONS(1768), - [anon_sym_static] = ACTIONS(1766), - [anon_sym_auto] = ACTIONS(1766), - [anon_sym_register] = ACTIONS(1766), - [anon_sym_inline] = ACTIONS(1766), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1766), - [anon_sym_const] = ACTIONS(1766), - [anon_sym_volatile] = ACTIONS(1766), - [anon_sym_restrict] = ACTIONS(1766), - [anon_sym__Atomic] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1766), - [anon_sym_out] = ACTIONS(1766), - [anon_sym_inout] = ACTIONS(1766), - [anon_sym_bycopy] = ACTIONS(1766), - [anon_sym_byref] = ACTIONS(1766), - [anon_sym_oneway] = ACTIONS(1766), - [anon_sym__Nullable] = ACTIONS(1766), - [anon_sym__Nonnull] = ACTIONS(1766), - [anon_sym__Nullable_result] = ACTIONS(1766), - [anon_sym__Null_unspecified] = ACTIONS(1766), - [anon_sym___autoreleasing] = ACTIONS(1766), - [anon_sym___nullable] = ACTIONS(1766), - [anon_sym___nonnull] = ACTIONS(1766), - [anon_sym___strong] = ACTIONS(1766), - [anon_sym___weak] = ACTIONS(1766), - [anon_sym___bridge] = ACTIONS(1766), - [anon_sym___bridge_transfer] = ACTIONS(1766), - [anon_sym___bridge_retained] = ACTIONS(1766), - [anon_sym___unsafe_unretained] = ACTIONS(1766), - [anon_sym___block] = ACTIONS(1766), - [anon_sym___kindof] = ACTIONS(1766), - [anon_sym___unused] = ACTIONS(1766), - [anon_sym__Complex] = ACTIONS(1766), - [anon_sym___complex] = ACTIONS(1766), - [anon_sym_IBOutlet] = ACTIONS(1766), - [anon_sym_IBInspectable] = ACTIONS(1766), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1766), - [anon_sym_signed] = ACTIONS(1766), - [anon_sym_unsigned] = ACTIONS(1766), - [anon_sym_long] = ACTIONS(1766), - [anon_sym_short] = ACTIONS(1766), - [sym_primitive_type] = ACTIONS(1766), - [anon_sym_enum] = ACTIONS(1766), - [anon_sym_NS_ENUM] = ACTIONS(1766), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1766), - [anon_sym_NS_OPTIONS] = ACTIONS(1766), - [anon_sym_struct] = ACTIONS(1766), - [anon_sym_union] = ACTIONS(1766), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(1766), - [anon_sym_case] = ACTIONS(1766), - [anon_sym_default] = ACTIONS(1766), - [anon_sym_while] = ACTIONS(1766), - [anon_sym_do] = ACTIONS(1766), - [anon_sym_for] = ACTIONS(1766), - [anon_sym_return] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1766), - [anon_sym_continue] = ACTIONS(1766), - [anon_sym_goto] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1768), - [anon_sym_PLUS_PLUS] = ACTIONS(1768), - [anon_sym_sizeof] = ACTIONS(1766), - [sym_number_literal] = ACTIONS(1768), - [anon_sym_L_SQUOTE] = ACTIONS(1768), - [anon_sym_u_SQUOTE] = ACTIONS(1768), - [anon_sym_U_SQUOTE] = ACTIONS(1768), - [anon_sym_u8_SQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_L_DQUOTE] = ACTIONS(1768), - [anon_sym_u_DQUOTE] = ACTIONS(1768), - [anon_sym_U_DQUOTE] = ACTIONS(1768), - [anon_sym_u8_DQUOTE] = ACTIONS(1768), - [anon_sym_DQUOTE] = ACTIONS(1768), - [sym_true] = ACTIONS(1766), - [sym_false] = ACTIONS(1766), - [sym_null] = ACTIONS(1766), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1768), - [anon_sym_ATimport] = ACTIONS(1768), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1766), - [anon_sym_ATcompatibility_alias] = ACTIONS(1768), - [anon_sym_ATprotocol] = ACTIONS(1768), - [anon_sym_ATclass] = ACTIONS(1768), - [anon_sym_ATinterface] = ACTIONS(1768), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1766), - [sym_method_attribute_specifier] = ACTIONS(1766), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1766), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1766), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1766), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1766), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1766), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1766), - [anon_sym_NS_AVAILABLE] = ACTIONS(1766), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1766), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1766), - [anon_sym_API_AVAILABLE] = ACTIONS(1766), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1766), - [anon_sym_API_DEPRECATED] = ACTIONS(1766), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1766), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1766), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1766), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1766), - [anon_sym___deprecated_msg] = ACTIONS(1766), - [anon_sym___deprecated_enum_msg] = ACTIONS(1766), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1766), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1766), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1766), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1766), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1766), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1766), - [anon_sym_ATimplementation] = ACTIONS(1768), - [anon_sym_typeof] = ACTIONS(1766), - [anon_sym___typeof] = ACTIONS(1766), - [anon_sym___typeof__] = ACTIONS(1766), - [sym_self] = ACTIONS(1766), - [sym_super] = ACTIONS(1766), - [sym_nil] = ACTIONS(1766), - [sym_id] = ACTIONS(1766), - [sym_instancetype] = ACTIONS(1766), - [sym_Class] = ACTIONS(1766), - [sym_SEL] = ACTIONS(1766), - [sym_IMP] = ACTIONS(1766), - [sym_BOOL] = ACTIONS(1766), - [sym_auto] = ACTIONS(1766), - [anon_sym_ATautoreleasepool] = ACTIONS(1768), - [anon_sym_ATsynchronized] = ACTIONS(1768), - [anon_sym_ATtry] = ACTIONS(1768), - [anon_sym_ATthrow] = ACTIONS(1768), - [anon_sym_ATselector] = ACTIONS(1768), - [anon_sym_ATencode] = ACTIONS(1768), - [anon_sym_AT] = ACTIONS(1766), - [sym_YES] = ACTIONS(1766), - [sym_NO] = ACTIONS(1766), - [anon_sym___builtin_available] = ACTIONS(1766), - [anon_sym_ATavailable] = ACTIONS(1768), - [anon_sym_va_arg] = ACTIONS(1766), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [549] = { - [sym_identifier] = ACTIONS(1746), - [aux_sym_preproc_include_token1] = ACTIONS(1748), - [aux_sym_preproc_def_token1] = ACTIONS(1748), - [aux_sym_preproc_if_token1] = ACTIONS(1746), - [aux_sym_preproc_if_token2] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1746), - [aux_sym_preproc_else_token1] = ACTIONS(1746), - [aux_sym_preproc_elif_token1] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym___attribute] = ACTIONS(1746), - [anon_sym___attribute__] = ACTIONS(1746), - [anon_sym___declspec] = ACTIONS(1746), - [anon_sym___cdecl] = ACTIONS(1746), - [anon_sym___clrcall] = ACTIONS(1746), - [anon_sym___stdcall] = ACTIONS(1746), - [anon_sym___fastcall] = ACTIONS(1746), - [anon_sym___thiscall] = ACTIONS(1746), - [anon_sym___vectorcall] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1746), - [anon_sym_register] = ACTIONS(1746), - [anon_sym_inline] = ACTIONS(1746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_restrict] = ACTIONS(1746), - [anon_sym__Atomic] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_out] = ACTIONS(1746), - [anon_sym_inout] = ACTIONS(1746), - [anon_sym_bycopy] = ACTIONS(1746), - [anon_sym_byref] = ACTIONS(1746), - [anon_sym_oneway] = ACTIONS(1746), - [anon_sym__Nullable] = ACTIONS(1746), - [anon_sym__Nonnull] = ACTIONS(1746), - [anon_sym__Nullable_result] = ACTIONS(1746), - [anon_sym__Null_unspecified] = ACTIONS(1746), - [anon_sym___autoreleasing] = ACTIONS(1746), - [anon_sym___nullable] = ACTIONS(1746), - [anon_sym___nonnull] = ACTIONS(1746), - [anon_sym___strong] = ACTIONS(1746), - [anon_sym___weak] = ACTIONS(1746), - [anon_sym___bridge] = ACTIONS(1746), - [anon_sym___bridge_transfer] = ACTIONS(1746), - [anon_sym___bridge_retained] = ACTIONS(1746), - [anon_sym___unsafe_unretained] = ACTIONS(1746), - [anon_sym___block] = ACTIONS(1746), - [anon_sym___kindof] = ACTIONS(1746), - [anon_sym___unused] = ACTIONS(1746), - [anon_sym__Complex] = ACTIONS(1746), - [anon_sym___complex] = ACTIONS(1746), - [anon_sym_IBOutlet] = ACTIONS(1746), - [anon_sym_IBInspectable] = ACTIONS(1746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1746), - [anon_sym_unsigned] = ACTIONS(1746), - [anon_sym_long] = ACTIONS(1746), - [anon_sym_short] = ACTIONS(1746), - [sym_primitive_type] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_NS_ENUM] = ACTIONS(1746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1746), - [anon_sym_NS_OPTIONS] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_goto] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_sizeof] = ACTIONS(1746), - [sym_number_literal] = ACTIONS(1748), - [anon_sym_L_SQUOTE] = ACTIONS(1748), - [anon_sym_u_SQUOTE] = ACTIONS(1748), - [anon_sym_U_SQUOTE] = ACTIONS(1748), - [anon_sym_u8_SQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_L_DQUOTE] = ACTIONS(1748), - [anon_sym_u_DQUOTE] = ACTIONS(1748), - [anon_sym_U_DQUOTE] = ACTIONS(1748), - [anon_sym_u8_DQUOTE] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1748), - [anon_sym_ATimport] = ACTIONS(1748), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1746), - [anon_sym_ATcompatibility_alias] = ACTIONS(1748), - [anon_sym_ATprotocol] = ACTIONS(1748), - [anon_sym_ATclass] = ACTIONS(1748), - [anon_sym_ATinterface] = ACTIONS(1748), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1746), - [sym_method_attribute_specifier] = ACTIONS(1746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE] = ACTIONS(1746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_API_AVAILABLE] = ACTIONS(1746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_API_DEPRECATED] = ACTIONS(1746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1746), - [anon_sym___deprecated_msg] = ACTIONS(1746), - [anon_sym___deprecated_enum_msg] = ACTIONS(1746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1746), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1746), - [anon_sym_ATimplementation] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym___typeof] = ACTIONS(1746), - [anon_sym___typeof__] = ACTIONS(1746), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_nil] = ACTIONS(1746), - [sym_id] = ACTIONS(1746), - [sym_instancetype] = ACTIONS(1746), - [sym_Class] = ACTIONS(1746), - [sym_SEL] = ACTIONS(1746), - [sym_IMP] = ACTIONS(1746), - [sym_BOOL] = ACTIONS(1746), - [sym_auto] = ACTIONS(1746), - [anon_sym_ATautoreleasepool] = ACTIONS(1748), - [anon_sym_ATsynchronized] = ACTIONS(1748), - [anon_sym_ATtry] = ACTIONS(1748), - [anon_sym_ATthrow] = ACTIONS(1748), - [anon_sym_ATselector] = ACTIONS(1748), - [anon_sym_ATencode] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1746), - [sym_YES] = ACTIONS(1746), - [sym_NO] = ACTIONS(1746), - [anon_sym___builtin_available] = ACTIONS(1746), - [anon_sym_ATavailable] = ACTIONS(1748), - [anon_sym_va_arg] = ACTIONS(1746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [550] = { - [sym_identifier] = ACTIONS(1746), - [aux_sym_preproc_include_token1] = ACTIONS(1748), - [aux_sym_preproc_def_token1] = ACTIONS(1748), - [aux_sym_preproc_if_token1] = ACTIONS(1746), - [aux_sym_preproc_if_token2] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1746), - [aux_sym_preproc_else_token1] = ACTIONS(1746), - [aux_sym_preproc_elif_token1] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym___attribute] = ACTIONS(1746), - [anon_sym___attribute__] = ACTIONS(1746), - [anon_sym___declspec] = ACTIONS(1746), - [anon_sym___cdecl] = ACTIONS(1746), - [anon_sym___clrcall] = ACTIONS(1746), - [anon_sym___stdcall] = ACTIONS(1746), - [anon_sym___fastcall] = ACTIONS(1746), - [anon_sym___thiscall] = ACTIONS(1746), - [anon_sym___vectorcall] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1746), - [anon_sym_register] = ACTIONS(1746), - [anon_sym_inline] = ACTIONS(1746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_restrict] = ACTIONS(1746), - [anon_sym__Atomic] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_out] = ACTIONS(1746), - [anon_sym_inout] = ACTIONS(1746), - [anon_sym_bycopy] = ACTIONS(1746), - [anon_sym_byref] = ACTIONS(1746), - [anon_sym_oneway] = ACTIONS(1746), - [anon_sym__Nullable] = ACTIONS(1746), - [anon_sym__Nonnull] = ACTIONS(1746), - [anon_sym__Nullable_result] = ACTIONS(1746), - [anon_sym__Null_unspecified] = ACTIONS(1746), - [anon_sym___autoreleasing] = ACTIONS(1746), - [anon_sym___nullable] = ACTIONS(1746), - [anon_sym___nonnull] = ACTIONS(1746), - [anon_sym___strong] = ACTIONS(1746), - [anon_sym___weak] = ACTIONS(1746), - [anon_sym___bridge] = ACTIONS(1746), - [anon_sym___bridge_transfer] = ACTIONS(1746), - [anon_sym___bridge_retained] = ACTIONS(1746), - [anon_sym___unsafe_unretained] = ACTIONS(1746), - [anon_sym___block] = ACTIONS(1746), - [anon_sym___kindof] = ACTIONS(1746), - [anon_sym___unused] = ACTIONS(1746), - [anon_sym__Complex] = ACTIONS(1746), - [anon_sym___complex] = ACTIONS(1746), - [anon_sym_IBOutlet] = ACTIONS(1746), - [anon_sym_IBInspectable] = ACTIONS(1746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1746), - [anon_sym_unsigned] = ACTIONS(1746), - [anon_sym_long] = ACTIONS(1746), - [anon_sym_short] = ACTIONS(1746), - [sym_primitive_type] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_NS_ENUM] = ACTIONS(1746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1746), - [anon_sym_NS_OPTIONS] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_goto] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_sizeof] = ACTIONS(1746), - [sym_number_literal] = ACTIONS(1748), - [anon_sym_L_SQUOTE] = ACTIONS(1748), - [anon_sym_u_SQUOTE] = ACTIONS(1748), - [anon_sym_U_SQUOTE] = ACTIONS(1748), - [anon_sym_u8_SQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_L_DQUOTE] = ACTIONS(1748), - [anon_sym_u_DQUOTE] = ACTIONS(1748), - [anon_sym_U_DQUOTE] = ACTIONS(1748), - [anon_sym_u8_DQUOTE] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1748), - [anon_sym_ATimport] = ACTIONS(1748), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1746), - [anon_sym_ATcompatibility_alias] = ACTIONS(1748), - [anon_sym_ATprotocol] = ACTIONS(1748), - [anon_sym_ATclass] = ACTIONS(1748), - [anon_sym_ATinterface] = ACTIONS(1748), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1746), - [sym_method_attribute_specifier] = ACTIONS(1746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE] = ACTIONS(1746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_API_AVAILABLE] = ACTIONS(1746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_API_DEPRECATED] = ACTIONS(1746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1746), - [anon_sym___deprecated_msg] = ACTIONS(1746), - [anon_sym___deprecated_enum_msg] = ACTIONS(1746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1746), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1746), - [anon_sym_ATimplementation] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym___typeof] = ACTIONS(1746), - [anon_sym___typeof__] = ACTIONS(1746), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_nil] = ACTIONS(1746), - [sym_id] = ACTIONS(1746), - [sym_instancetype] = ACTIONS(1746), - [sym_Class] = ACTIONS(1746), - [sym_SEL] = ACTIONS(1746), - [sym_IMP] = ACTIONS(1746), - [sym_BOOL] = ACTIONS(1746), - [sym_auto] = ACTIONS(1746), - [anon_sym_ATautoreleasepool] = ACTIONS(1748), - [anon_sym_ATsynchronized] = ACTIONS(1748), - [anon_sym_ATtry] = ACTIONS(1748), - [anon_sym_ATthrow] = ACTIONS(1748), - [anon_sym_ATselector] = ACTIONS(1748), - [anon_sym_ATencode] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1746), - [sym_YES] = ACTIONS(1746), - [sym_NO] = ACTIONS(1746), - [anon_sym___builtin_available] = ACTIONS(1746), - [anon_sym_ATavailable] = ACTIONS(1748), - [anon_sym_va_arg] = ACTIONS(1746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [551] = { - [sym_identifier] = ACTIONS(1770), - [aux_sym_preproc_include_token1] = ACTIONS(1772), - [aux_sym_preproc_def_token1] = ACTIONS(1772), - [aux_sym_preproc_if_token1] = ACTIONS(1770), - [aux_sym_preproc_if_token2] = ACTIONS(1770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1770), - [aux_sym_preproc_else_token1] = ACTIONS(1770), - [aux_sym_preproc_elif_token1] = ACTIONS(1770), - [anon_sym_LPAREN2] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1772), - [anon_sym_TILDE] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_CARET] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_typedef] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_out] = ACTIONS(1770), - [anon_sym_inout] = ACTIONS(1770), - [anon_sym_bycopy] = ACTIONS(1770), - [anon_sym_byref] = ACTIONS(1770), - [anon_sym_oneway] = ACTIONS(1770), - [anon_sym__Nullable] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym__Nullable_result] = ACTIONS(1770), - [anon_sym__Null_unspecified] = ACTIONS(1770), - [anon_sym___autoreleasing] = ACTIONS(1770), - [anon_sym___nullable] = ACTIONS(1770), - [anon_sym___nonnull] = ACTIONS(1770), - [anon_sym___strong] = ACTIONS(1770), - [anon_sym___weak] = ACTIONS(1770), - [anon_sym___bridge] = ACTIONS(1770), - [anon_sym___bridge_transfer] = ACTIONS(1770), - [anon_sym___bridge_retained] = ACTIONS(1770), - [anon_sym___unsafe_unretained] = ACTIONS(1770), - [anon_sym___block] = ACTIONS(1770), - [anon_sym___kindof] = ACTIONS(1770), - [anon_sym___unused] = ACTIONS(1770), - [anon_sym__Complex] = ACTIONS(1770), - [anon_sym___complex] = ACTIONS(1770), - [anon_sym_IBOutlet] = ACTIONS(1770), - [anon_sym_IBInspectable] = ACTIONS(1770), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1770), - [anon_sym_unsigned] = ACTIONS(1770), - [anon_sym_long] = ACTIONS(1770), - [anon_sym_short] = ACTIONS(1770), - [sym_primitive_type] = ACTIONS(1770), - [anon_sym_enum] = ACTIONS(1770), - [anon_sym_NS_ENUM] = ACTIONS(1770), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1770), - [anon_sym_NS_OPTIONS] = ACTIONS(1770), - [anon_sym_struct] = ACTIONS(1770), - [anon_sym_union] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_switch] = ACTIONS(1770), - [anon_sym_case] = ACTIONS(1770), - [anon_sym_default] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_do] = ACTIONS(1770), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_goto] = ACTIONS(1770), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_sizeof] = ACTIONS(1770), - [sym_number_literal] = ACTIONS(1772), - [anon_sym_L_SQUOTE] = ACTIONS(1772), - [anon_sym_u_SQUOTE] = ACTIONS(1772), - [anon_sym_U_SQUOTE] = ACTIONS(1772), - [anon_sym_u8_SQUOTE] = ACTIONS(1772), - [anon_sym_SQUOTE] = ACTIONS(1772), - [anon_sym_L_DQUOTE] = ACTIONS(1772), - [anon_sym_u_DQUOTE] = ACTIONS(1772), - [anon_sym_U_DQUOTE] = ACTIONS(1772), - [anon_sym_u8_DQUOTE] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1772), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [sym_null] = ACTIONS(1770), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1772), - [anon_sym_ATimport] = ACTIONS(1772), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1770), - [anon_sym_ATcompatibility_alias] = ACTIONS(1772), - [anon_sym_ATprotocol] = ACTIONS(1772), - [anon_sym_ATclass] = ACTIONS(1772), - [anon_sym_ATinterface] = ACTIONS(1772), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1770), - [sym_method_attribute_specifier] = ACTIONS(1770), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1770), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1770), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1770), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1770), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1770), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1770), - [anon_sym_NS_AVAILABLE] = ACTIONS(1770), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1770), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1770), - [anon_sym_API_AVAILABLE] = ACTIONS(1770), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1770), - [anon_sym_API_DEPRECATED] = ACTIONS(1770), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1770), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1770), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1770), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1770), - [anon_sym___deprecated_msg] = ACTIONS(1770), - [anon_sym___deprecated_enum_msg] = ACTIONS(1770), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1770), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1770), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1770), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1770), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1770), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1770), - [anon_sym_ATimplementation] = ACTIONS(1772), - [anon_sym_typeof] = ACTIONS(1770), - [anon_sym___typeof] = ACTIONS(1770), - [anon_sym___typeof__] = ACTIONS(1770), - [sym_self] = ACTIONS(1770), - [sym_super] = ACTIONS(1770), - [sym_nil] = ACTIONS(1770), - [sym_id] = ACTIONS(1770), - [sym_instancetype] = ACTIONS(1770), - [sym_Class] = ACTIONS(1770), - [sym_SEL] = ACTIONS(1770), - [sym_IMP] = ACTIONS(1770), - [sym_BOOL] = ACTIONS(1770), - [sym_auto] = ACTIONS(1770), - [anon_sym_ATautoreleasepool] = ACTIONS(1772), - [anon_sym_ATsynchronized] = ACTIONS(1772), - [anon_sym_ATtry] = ACTIONS(1772), - [anon_sym_ATthrow] = ACTIONS(1772), - [anon_sym_ATselector] = ACTIONS(1772), - [anon_sym_ATencode] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(1770), - [sym_YES] = ACTIONS(1770), - [sym_NO] = ACTIONS(1770), - [anon_sym___builtin_available] = ACTIONS(1770), - [anon_sym_ATavailable] = ACTIONS(1772), - [anon_sym_va_arg] = ACTIONS(1770), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [552] = { - [sym_identifier] = ACTIONS(1774), - [aux_sym_preproc_include_token1] = ACTIONS(1776), - [aux_sym_preproc_def_token1] = ACTIONS(1776), - [aux_sym_preproc_if_token1] = ACTIONS(1774), - [aux_sym_preproc_if_token2] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1774), - [aux_sym_preproc_else_token1] = ACTIONS(1774), - [aux_sym_preproc_elif_token1] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_typedef] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym___attribute] = ACTIONS(1774), - [anon_sym___attribute__] = ACTIONS(1774), - [anon_sym___declspec] = ACTIONS(1774), - [anon_sym___cdecl] = ACTIONS(1774), - [anon_sym___clrcall] = ACTIONS(1774), - [anon_sym___stdcall] = ACTIONS(1774), - [anon_sym___fastcall] = ACTIONS(1774), - [anon_sym___thiscall] = ACTIONS(1774), - [anon_sym___vectorcall] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_auto] = ACTIONS(1774), - [anon_sym_register] = ACTIONS(1774), - [anon_sym_inline] = ACTIONS(1774), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_out] = ACTIONS(1774), - [anon_sym_inout] = ACTIONS(1774), - [anon_sym_bycopy] = ACTIONS(1774), - [anon_sym_byref] = ACTIONS(1774), - [anon_sym_oneway] = ACTIONS(1774), - [anon_sym__Nullable] = ACTIONS(1774), - [anon_sym__Nonnull] = ACTIONS(1774), - [anon_sym__Nullable_result] = ACTIONS(1774), - [anon_sym__Null_unspecified] = ACTIONS(1774), - [anon_sym___autoreleasing] = ACTIONS(1774), - [anon_sym___nullable] = ACTIONS(1774), - [anon_sym___nonnull] = ACTIONS(1774), - [anon_sym___strong] = ACTIONS(1774), - [anon_sym___weak] = ACTIONS(1774), - [anon_sym___bridge] = ACTIONS(1774), - [anon_sym___bridge_transfer] = ACTIONS(1774), - [anon_sym___bridge_retained] = ACTIONS(1774), - [anon_sym___unsafe_unretained] = ACTIONS(1774), - [anon_sym___block] = ACTIONS(1774), - [anon_sym___kindof] = ACTIONS(1774), - [anon_sym___unused] = ACTIONS(1774), - [anon_sym__Complex] = ACTIONS(1774), - [anon_sym___complex] = ACTIONS(1774), - [anon_sym_IBOutlet] = ACTIONS(1774), - [anon_sym_IBInspectable] = ACTIONS(1774), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1774), - [anon_sym_signed] = ACTIONS(1774), - [anon_sym_unsigned] = ACTIONS(1774), - [anon_sym_long] = ACTIONS(1774), - [anon_sym_short] = ACTIONS(1774), - [sym_primitive_type] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_NS_ENUM] = ACTIONS(1774), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1774), - [anon_sym_NS_OPTIONS] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1774), - [anon_sym_case] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_goto] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1776), - [anon_sym_sizeof] = ACTIONS(1774), - [sym_number_literal] = ACTIONS(1776), - [anon_sym_L_SQUOTE] = ACTIONS(1776), - [anon_sym_u_SQUOTE] = ACTIONS(1776), - [anon_sym_U_SQUOTE] = ACTIONS(1776), - [anon_sym_u8_SQUOTE] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_L_DQUOTE] = ACTIONS(1776), - [anon_sym_u_DQUOTE] = ACTIONS(1776), - [anon_sym_U_DQUOTE] = ACTIONS(1776), - [anon_sym_u8_DQUOTE] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym_true] = ACTIONS(1774), - [sym_false] = ACTIONS(1774), - [sym_null] = ACTIONS(1774), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1776), - [anon_sym_ATimport] = ACTIONS(1776), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1774), - [anon_sym_ATcompatibility_alias] = ACTIONS(1776), - [anon_sym_ATprotocol] = ACTIONS(1776), - [anon_sym_ATclass] = ACTIONS(1776), - [anon_sym_ATinterface] = ACTIONS(1776), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1774), - [sym_method_attribute_specifier] = ACTIONS(1774), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1774), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE] = ACTIONS(1774), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_API_AVAILABLE] = ACTIONS(1774), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_API_DEPRECATED] = ACTIONS(1774), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1774), - [anon_sym___deprecated_msg] = ACTIONS(1774), - [anon_sym___deprecated_enum_msg] = ACTIONS(1774), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1774), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1774), - [anon_sym_ATimplementation] = ACTIONS(1776), - [anon_sym_typeof] = ACTIONS(1774), - [anon_sym___typeof] = ACTIONS(1774), - [anon_sym___typeof__] = ACTIONS(1774), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_nil] = ACTIONS(1774), - [sym_id] = ACTIONS(1774), - [sym_instancetype] = ACTIONS(1774), - [sym_Class] = ACTIONS(1774), - [sym_SEL] = ACTIONS(1774), - [sym_IMP] = ACTIONS(1774), - [sym_BOOL] = ACTIONS(1774), - [sym_auto] = ACTIONS(1774), - [anon_sym_ATautoreleasepool] = ACTIONS(1776), - [anon_sym_ATsynchronized] = ACTIONS(1776), - [anon_sym_ATtry] = ACTIONS(1776), - [anon_sym_ATthrow] = ACTIONS(1776), - [anon_sym_ATselector] = ACTIONS(1776), - [anon_sym_ATencode] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1774), - [sym_YES] = ACTIONS(1774), - [sym_NO] = ACTIONS(1774), - [anon_sym___builtin_available] = ACTIONS(1774), - [anon_sym_ATavailable] = ACTIONS(1776), - [anon_sym_va_arg] = ACTIONS(1774), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [553] = { - [sym_identifier] = ACTIONS(1774), - [aux_sym_preproc_include_token1] = ACTIONS(1776), - [aux_sym_preproc_def_token1] = ACTIONS(1776), - [aux_sym_preproc_if_token1] = ACTIONS(1774), - [aux_sym_preproc_if_token2] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1774), - [aux_sym_preproc_else_token1] = ACTIONS(1774), - [aux_sym_preproc_elif_token1] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_typedef] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym___attribute] = ACTIONS(1774), - [anon_sym___attribute__] = ACTIONS(1774), - [anon_sym___declspec] = ACTIONS(1774), - [anon_sym___cdecl] = ACTIONS(1774), - [anon_sym___clrcall] = ACTIONS(1774), - [anon_sym___stdcall] = ACTIONS(1774), - [anon_sym___fastcall] = ACTIONS(1774), - [anon_sym___thiscall] = ACTIONS(1774), - [anon_sym___vectorcall] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_auto] = ACTIONS(1774), - [anon_sym_register] = ACTIONS(1774), - [anon_sym_inline] = ACTIONS(1774), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_out] = ACTIONS(1774), - [anon_sym_inout] = ACTIONS(1774), - [anon_sym_bycopy] = ACTIONS(1774), - [anon_sym_byref] = ACTIONS(1774), - [anon_sym_oneway] = ACTIONS(1774), - [anon_sym__Nullable] = ACTIONS(1774), - [anon_sym__Nonnull] = ACTIONS(1774), - [anon_sym__Nullable_result] = ACTIONS(1774), - [anon_sym__Null_unspecified] = ACTIONS(1774), - [anon_sym___autoreleasing] = ACTIONS(1774), - [anon_sym___nullable] = ACTIONS(1774), - [anon_sym___nonnull] = ACTIONS(1774), - [anon_sym___strong] = ACTIONS(1774), - [anon_sym___weak] = ACTIONS(1774), - [anon_sym___bridge] = ACTIONS(1774), - [anon_sym___bridge_transfer] = ACTIONS(1774), - [anon_sym___bridge_retained] = ACTIONS(1774), - [anon_sym___unsafe_unretained] = ACTIONS(1774), - [anon_sym___block] = ACTIONS(1774), - [anon_sym___kindof] = ACTIONS(1774), - [anon_sym___unused] = ACTIONS(1774), - [anon_sym__Complex] = ACTIONS(1774), - [anon_sym___complex] = ACTIONS(1774), - [anon_sym_IBOutlet] = ACTIONS(1774), - [anon_sym_IBInspectable] = ACTIONS(1774), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1774), - [anon_sym_signed] = ACTIONS(1774), - [anon_sym_unsigned] = ACTIONS(1774), - [anon_sym_long] = ACTIONS(1774), - [anon_sym_short] = ACTIONS(1774), - [sym_primitive_type] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_NS_ENUM] = ACTIONS(1774), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1774), - [anon_sym_NS_OPTIONS] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1774), - [anon_sym_case] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_goto] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1776), - [anon_sym_sizeof] = ACTIONS(1774), - [sym_number_literal] = ACTIONS(1776), - [anon_sym_L_SQUOTE] = ACTIONS(1776), - [anon_sym_u_SQUOTE] = ACTIONS(1776), - [anon_sym_U_SQUOTE] = ACTIONS(1776), - [anon_sym_u8_SQUOTE] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_L_DQUOTE] = ACTIONS(1776), - [anon_sym_u_DQUOTE] = ACTIONS(1776), - [anon_sym_U_DQUOTE] = ACTIONS(1776), - [anon_sym_u8_DQUOTE] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym_true] = ACTIONS(1774), - [sym_false] = ACTIONS(1774), - [sym_null] = ACTIONS(1774), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1776), - [anon_sym_ATimport] = ACTIONS(1776), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1774), - [anon_sym_ATcompatibility_alias] = ACTIONS(1776), - [anon_sym_ATprotocol] = ACTIONS(1776), - [anon_sym_ATclass] = ACTIONS(1776), - [anon_sym_ATinterface] = ACTIONS(1776), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1774), - [sym_method_attribute_specifier] = ACTIONS(1774), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1774), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE] = ACTIONS(1774), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_API_AVAILABLE] = ACTIONS(1774), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_API_DEPRECATED] = ACTIONS(1774), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1774), - [anon_sym___deprecated_msg] = ACTIONS(1774), - [anon_sym___deprecated_enum_msg] = ACTIONS(1774), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1774), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1774), - [anon_sym_ATimplementation] = ACTIONS(1776), - [anon_sym_typeof] = ACTIONS(1774), - [anon_sym___typeof] = ACTIONS(1774), - [anon_sym___typeof__] = ACTIONS(1774), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_nil] = ACTIONS(1774), - [sym_id] = ACTIONS(1774), - [sym_instancetype] = ACTIONS(1774), - [sym_Class] = ACTIONS(1774), - [sym_SEL] = ACTIONS(1774), - [sym_IMP] = ACTIONS(1774), - [sym_BOOL] = ACTIONS(1774), - [sym_auto] = ACTIONS(1774), - [anon_sym_ATautoreleasepool] = ACTIONS(1776), - [anon_sym_ATsynchronized] = ACTIONS(1776), - [anon_sym_ATtry] = ACTIONS(1776), - [anon_sym_ATthrow] = ACTIONS(1776), - [anon_sym_ATselector] = ACTIONS(1776), - [anon_sym_ATencode] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1774), - [sym_YES] = ACTIONS(1774), - [sym_NO] = ACTIONS(1774), - [anon_sym___builtin_available] = ACTIONS(1774), - [anon_sym_ATavailable] = ACTIONS(1776), - [anon_sym_va_arg] = ACTIONS(1774), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [554] = { - [sym_identifier] = ACTIONS(1774), - [aux_sym_preproc_include_token1] = ACTIONS(1776), - [aux_sym_preproc_def_token1] = ACTIONS(1776), - [aux_sym_preproc_if_token1] = ACTIONS(1774), - [aux_sym_preproc_if_token2] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1774), - [aux_sym_preproc_else_token1] = ACTIONS(1774), - [aux_sym_preproc_elif_token1] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_typedef] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym___attribute] = ACTIONS(1774), - [anon_sym___attribute__] = ACTIONS(1774), - [anon_sym___declspec] = ACTIONS(1774), - [anon_sym___cdecl] = ACTIONS(1774), - [anon_sym___clrcall] = ACTIONS(1774), - [anon_sym___stdcall] = ACTIONS(1774), - [anon_sym___fastcall] = ACTIONS(1774), - [anon_sym___thiscall] = ACTIONS(1774), - [anon_sym___vectorcall] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_auto] = ACTIONS(1774), - [anon_sym_register] = ACTIONS(1774), - [anon_sym_inline] = ACTIONS(1774), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_out] = ACTIONS(1774), - [anon_sym_inout] = ACTIONS(1774), - [anon_sym_bycopy] = ACTIONS(1774), - [anon_sym_byref] = ACTIONS(1774), - [anon_sym_oneway] = ACTIONS(1774), - [anon_sym__Nullable] = ACTIONS(1774), - [anon_sym__Nonnull] = ACTIONS(1774), - [anon_sym__Nullable_result] = ACTIONS(1774), - [anon_sym__Null_unspecified] = ACTIONS(1774), - [anon_sym___autoreleasing] = ACTIONS(1774), - [anon_sym___nullable] = ACTIONS(1774), - [anon_sym___nonnull] = ACTIONS(1774), - [anon_sym___strong] = ACTIONS(1774), - [anon_sym___weak] = ACTIONS(1774), - [anon_sym___bridge] = ACTIONS(1774), - [anon_sym___bridge_transfer] = ACTIONS(1774), - [anon_sym___bridge_retained] = ACTIONS(1774), - [anon_sym___unsafe_unretained] = ACTIONS(1774), - [anon_sym___block] = ACTIONS(1774), - [anon_sym___kindof] = ACTIONS(1774), - [anon_sym___unused] = ACTIONS(1774), - [anon_sym__Complex] = ACTIONS(1774), - [anon_sym___complex] = ACTIONS(1774), - [anon_sym_IBOutlet] = ACTIONS(1774), - [anon_sym_IBInspectable] = ACTIONS(1774), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1774), - [anon_sym_signed] = ACTIONS(1774), - [anon_sym_unsigned] = ACTIONS(1774), - [anon_sym_long] = ACTIONS(1774), - [anon_sym_short] = ACTIONS(1774), - [sym_primitive_type] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_NS_ENUM] = ACTIONS(1774), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1774), - [anon_sym_NS_OPTIONS] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1774), - [anon_sym_case] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_goto] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1776), - [anon_sym_sizeof] = ACTIONS(1774), - [sym_number_literal] = ACTIONS(1776), - [anon_sym_L_SQUOTE] = ACTIONS(1776), - [anon_sym_u_SQUOTE] = ACTIONS(1776), - [anon_sym_U_SQUOTE] = ACTIONS(1776), - [anon_sym_u8_SQUOTE] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_L_DQUOTE] = ACTIONS(1776), - [anon_sym_u_DQUOTE] = ACTIONS(1776), - [anon_sym_U_DQUOTE] = ACTIONS(1776), - [anon_sym_u8_DQUOTE] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym_true] = ACTIONS(1774), - [sym_false] = ACTIONS(1774), - [sym_null] = ACTIONS(1774), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1776), - [anon_sym_ATimport] = ACTIONS(1776), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1774), - [anon_sym_ATcompatibility_alias] = ACTIONS(1776), - [anon_sym_ATprotocol] = ACTIONS(1776), - [anon_sym_ATclass] = ACTIONS(1776), - [anon_sym_ATinterface] = ACTIONS(1776), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1774), - [sym_method_attribute_specifier] = ACTIONS(1774), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1774), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE] = ACTIONS(1774), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_API_AVAILABLE] = ACTIONS(1774), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_API_DEPRECATED] = ACTIONS(1774), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1774), - [anon_sym___deprecated_msg] = ACTIONS(1774), - [anon_sym___deprecated_enum_msg] = ACTIONS(1774), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1774), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1774), - [anon_sym_ATimplementation] = ACTIONS(1776), - [anon_sym_typeof] = ACTIONS(1774), - [anon_sym___typeof] = ACTIONS(1774), - [anon_sym___typeof__] = ACTIONS(1774), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_nil] = ACTIONS(1774), - [sym_id] = ACTIONS(1774), - [sym_instancetype] = ACTIONS(1774), - [sym_Class] = ACTIONS(1774), - [sym_SEL] = ACTIONS(1774), - [sym_IMP] = ACTIONS(1774), - [sym_BOOL] = ACTIONS(1774), - [sym_auto] = ACTIONS(1774), - [anon_sym_ATautoreleasepool] = ACTIONS(1776), - [anon_sym_ATsynchronized] = ACTIONS(1776), - [anon_sym_ATtry] = ACTIONS(1776), - [anon_sym_ATthrow] = ACTIONS(1776), - [anon_sym_ATselector] = ACTIONS(1776), - [anon_sym_ATencode] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1774), - [sym_YES] = ACTIONS(1774), - [sym_NO] = ACTIONS(1774), - [anon_sym___builtin_available] = ACTIONS(1774), - [anon_sym_ATavailable] = ACTIONS(1776), - [anon_sym_va_arg] = ACTIONS(1774), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [555] = { - [sym_identifier] = ACTIONS(1778), - [aux_sym_preproc_include_token1] = ACTIONS(1780), - [aux_sym_preproc_def_token1] = ACTIONS(1780), - [aux_sym_preproc_if_token1] = ACTIONS(1778), - [aux_sym_preproc_if_token2] = ACTIONS(1778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1778), - [aux_sym_preproc_else_token1] = ACTIONS(1778), - [aux_sym_preproc_elif_token1] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_typedef] = ACTIONS(1778), - [anon_sym_extern] = ACTIONS(1778), - [anon_sym___attribute] = ACTIONS(1778), - [anon_sym___attribute__] = ACTIONS(1778), - [anon_sym___declspec] = ACTIONS(1778), - [anon_sym___cdecl] = ACTIONS(1778), - [anon_sym___clrcall] = ACTIONS(1778), - [anon_sym___stdcall] = ACTIONS(1778), - [anon_sym___fastcall] = ACTIONS(1778), - [anon_sym___thiscall] = ACTIONS(1778), - [anon_sym___vectorcall] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_static] = ACTIONS(1778), - [anon_sym_auto] = ACTIONS(1778), - [anon_sym_register] = ACTIONS(1778), - [anon_sym_inline] = ACTIONS(1778), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1778), - [anon_sym_volatile] = ACTIONS(1778), - [anon_sym_restrict] = ACTIONS(1778), - [anon_sym__Atomic] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_out] = ACTIONS(1778), - [anon_sym_inout] = ACTIONS(1778), - [anon_sym_bycopy] = ACTIONS(1778), - [anon_sym_byref] = ACTIONS(1778), - [anon_sym_oneway] = ACTIONS(1778), - [anon_sym__Nullable] = ACTIONS(1778), - [anon_sym__Nonnull] = ACTIONS(1778), - [anon_sym__Nullable_result] = ACTIONS(1778), - [anon_sym__Null_unspecified] = ACTIONS(1778), - [anon_sym___autoreleasing] = ACTIONS(1778), - [anon_sym___nullable] = ACTIONS(1778), - [anon_sym___nonnull] = ACTIONS(1778), - [anon_sym___strong] = ACTIONS(1778), - [anon_sym___weak] = ACTIONS(1778), - [anon_sym___bridge] = ACTIONS(1778), - [anon_sym___bridge_transfer] = ACTIONS(1778), - [anon_sym___bridge_retained] = ACTIONS(1778), - [anon_sym___unsafe_unretained] = ACTIONS(1778), - [anon_sym___block] = ACTIONS(1778), - [anon_sym___kindof] = ACTIONS(1778), - [anon_sym___unused] = ACTIONS(1778), - [anon_sym__Complex] = ACTIONS(1778), - [anon_sym___complex] = ACTIONS(1778), - [anon_sym_IBOutlet] = ACTIONS(1778), - [anon_sym_IBInspectable] = ACTIONS(1778), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1778), - [anon_sym_signed] = ACTIONS(1778), - [anon_sym_unsigned] = ACTIONS(1778), - [anon_sym_long] = ACTIONS(1778), - [anon_sym_short] = ACTIONS(1778), - [sym_primitive_type] = ACTIONS(1778), - [anon_sym_enum] = ACTIONS(1778), - [anon_sym_NS_ENUM] = ACTIONS(1778), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1778), - [anon_sym_NS_OPTIONS] = ACTIONS(1778), - [anon_sym_struct] = ACTIONS(1778), - [anon_sym_union] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1778), - [anon_sym_case] = ACTIONS(1778), - [anon_sym_default] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_do] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_goto] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_sizeof] = ACTIONS(1778), - [sym_number_literal] = ACTIONS(1780), - [anon_sym_L_SQUOTE] = ACTIONS(1780), - [anon_sym_u_SQUOTE] = ACTIONS(1780), - [anon_sym_U_SQUOTE] = ACTIONS(1780), - [anon_sym_u8_SQUOTE] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1780), - [anon_sym_L_DQUOTE] = ACTIONS(1780), - [anon_sym_u_DQUOTE] = ACTIONS(1780), - [anon_sym_U_DQUOTE] = ACTIONS(1780), - [anon_sym_u8_DQUOTE] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [sym_true] = ACTIONS(1778), - [sym_false] = ACTIONS(1778), - [sym_null] = ACTIONS(1778), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1780), - [anon_sym_ATimport] = ACTIONS(1780), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1778), - [anon_sym_ATcompatibility_alias] = ACTIONS(1780), - [anon_sym_ATprotocol] = ACTIONS(1780), - [anon_sym_ATclass] = ACTIONS(1780), - [anon_sym_ATinterface] = ACTIONS(1780), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1778), - [sym_method_attribute_specifier] = ACTIONS(1778), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1778), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1778), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1778), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1778), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1778), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1778), - [anon_sym_NS_AVAILABLE] = ACTIONS(1778), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1778), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1778), - [anon_sym_API_AVAILABLE] = ACTIONS(1778), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1778), - [anon_sym_API_DEPRECATED] = ACTIONS(1778), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1778), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1778), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1778), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1778), - [anon_sym___deprecated_msg] = ACTIONS(1778), - [anon_sym___deprecated_enum_msg] = ACTIONS(1778), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1778), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1778), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1778), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1778), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1778), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1778), - [anon_sym_ATimplementation] = ACTIONS(1780), - [anon_sym_typeof] = ACTIONS(1778), - [anon_sym___typeof] = ACTIONS(1778), - [anon_sym___typeof__] = ACTIONS(1778), - [sym_self] = ACTIONS(1778), - [sym_super] = ACTIONS(1778), - [sym_nil] = ACTIONS(1778), - [sym_id] = ACTIONS(1778), - [sym_instancetype] = ACTIONS(1778), - [sym_Class] = ACTIONS(1778), - [sym_SEL] = ACTIONS(1778), - [sym_IMP] = ACTIONS(1778), - [sym_BOOL] = ACTIONS(1778), - [sym_auto] = ACTIONS(1778), - [anon_sym_ATautoreleasepool] = ACTIONS(1780), - [anon_sym_ATsynchronized] = ACTIONS(1780), - [anon_sym_ATtry] = ACTIONS(1780), - [anon_sym_ATthrow] = ACTIONS(1780), - [anon_sym_ATselector] = ACTIONS(1780), - [anon_sym_ATencode] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1778), - [sym_YES] = ACTIONS(1778), - [sym_NO] = ACTIONS(1778), - [anon_sym___builtin_available] = ACTIONS(1778), - [anon_sym_ATavailable] = ACTIONS(1780), - [anon_sym_va_arg] = ACTIONS(1778), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [556] = { - [sym_identifier] = ACTIONS(1782), - [aux_sym_preproc_include_token1] = ACTIONS(1784), - [aux_sym_preproc_def_token1] = ACTIONS(1784), - [aux_sym_preproc_if_token1] = ACTIONS(1782), - [aux_sym_preproc_if_token2] = ACTIONS(1782), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1782), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1782), - [aux_sym_preproc_else_token1] = ACTIONS(1782), - [aux_sym_preproc_elif_token1] = ACTIONS(1782), - [anon_sym_LPAREN2] = ACTIONS(1784), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_TILDE] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_CARET] = ACTIONS(1784), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_typedef] = ACTIONS(1782), - [anon_sym_extern] = ACTIONS(1782), - [anon_sym___attribute] = ACTIONS(1782), - [anon_sym___attribute__] = ACTIONS(1782), - [anon_sym___declspec] = ACTIONS(1782), - [anon_sym___cdecl] = ACTIONS(1782), - [anon_sym___clrcall] = ACTIONS(1782), - [anon_sym___stdcall] = ACTIONS(1782), - [anon_sym___fastcall] = ACTIONS(1782), - [anon_sym___thiscall] = ACTIONS(1782), - [anon_sym___vectorcall] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1784), - [anon_sym_LBRACK] = ACTIONS(1784), - [anon_sym_static] = ACTIONS(1782), - [anon_sym_auto] = ACTIONS(1782), - [anon_sym_register] = ACTIONS(1782), - [anon_sym_inline] = ACTIONS(1782), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1782), - [anon_sym_const] = ACTIONS(1782), - [anon_sym_volatile] = ACTIONS(1782), - [anon_sym_restrict] = ACTIONS(1782), - [anon_sym__Atomic] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1782), - [anon_sym_out] = ACTIONS(1782), - [anon_sym_inout] = ACTIONS(1782), - [anon_sym_bycopy] = ACTIONS(1782), - [anon_sym_byref] = ACTIONS(1782), - [anon_sym_oneway] = ACTIONS(1782), - [anon_sym__Nullable] = ACTIONS(1782), - [anon_sym__Nonnull] = ACTIONS(1782), - [anon_sym__Nullable_result] = ACTIONS(1782), - [anon_sym__Null_unspecified] = ACTIONS(1782), - [anon_sym___autoreleasing] = ACTIONS(1782), - [anon_sym___nullable] = ACTIONS(1782), - [anon_sym___nonnull] = ACTIONS(1782), - [anon_sym___strong] = ACTIONS(1782), - [anon_sym___weak] = ACTIONS(1782), - [anon_sym___bridge] = ACTIONS(1782), - [anon_sym___bridge_transfer] = ACTIONS(1782), - [anon_sym___bridge_retained] = ACTIONS(1782), - [anon_sym___unsafe_unretained] = ACTIONS(1782), - [anon_sym___block] = ACTIONS(1782), - [anon_sym___kindof] = ACTIONS(1782), - [anon_sym___unused] = ACTIONS(1782), - [anon_sym__Complex] = ACTIONS(1782), - [anon_sym___complex] = ACTIONS(1782), - [anon_sym_IBOutlet] = ACTIONS(1782), - [anon_sym_IBInspectable] = ACTIONS(1782), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1782), - [anon_sym_signed] = ACTIONS(1782), - [anon_sym_unsigned] = ACTIONS(1782), - [anon_sym_long] = ACTIONS(1782), - [anon_sym_short] = ACTIONS(1782), - [sym_primitive_type] = ACTIONS(1782), - [anon_sym_enum] = ACTIONS(1782), - [anon_sym_NS_ENUM] = ACTIONS(1782), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1782), - [anon_sym_NS_OPTIONS] = ACTIONS(1782), - [anon_sym_struct] = ACTIONS(1782), - [anon_sym_union] = ACTIONS(1782), - [anon_sym_if] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1782), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1782), - [anon_sym_while] = ACTIONS(1782), - [anon_sym_do] = ACTIONS(1782), - [anon_sym_for] = ACTIONS(1782), - [anon_sym_return] = ACTIONS(1782), - [anon_sym_break] = ACTIONS(1782), - [anon_sym_continue] = ACTIONS(1782), - [anon_sym_goto] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1784), - [anon_sym_PLUS_PLUS] = ACTIONS(1784), - [anon_sym_sizeof] = ACTIONS(1782), - [sym_number_literal] = ACTIONS(1784), - [anon_sym_L_SQUOTE] = ACTIONS(1784), - [anon_sym_u_SQUOTE] = ACTIONS(1784), - [anon_sym_U_SQUOTE] = ACTIONS(1784), - [anon_sym_u8_SQUOTE] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1784), - [anon_sym_L_DQUOTE] = ACTIONS(1784), - [anon_sym_u_DQUOTE] = ACTIONS(1784), - [anon_sym_U_DQUOTE] = ACTIONS(1784), - [anon_sym_u8_DQUOTE] = ACTIONS(1784), - [anon_sym_DQUOTE] = ACTIONS(1784), - [sym_true] = ACTIONS(1782), - [sym_false] = ACTIONS(1782), - [sym_null] = ACTIONS(1782), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1784), - [anon_sym_ATimport] = ACTIONS(1784), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1782), - [anon_sym_ATcompatibility_alias] = ACTIONS(1784), - [anon_sym_ATprotocol] = ACTIONS(1784), - [anon_sym_ATclass] = ACTIONS(1784), - [anon_sym_ATinterface] = ACTIONS(1784), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1782), - [sym_method_attribute_specifier] = ACTIONS(1782), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1782), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1782), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1782), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1782), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1782), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1782), - [anon_sym_NS_AVAILABLE] = ACTIONS(1782), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1782), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1782), - [anon_sym_API_AVAILABLE] = ACTIONS(1782), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1782), - [anon_sym_API_DEPRECATED] = ACTIONS(1782), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1782), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1782), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1782), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1782), - [anon_sym___deprecated_msg] = ACTIONS(1782), - [anon_sym___deprecated_enum_msg] = ACTIONS(1782), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1782), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1782), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1782), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1782), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1782), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1782), - [anon_sym_ATimplementation] = ACTIONS(1784), - [anon_sym_typeof] = ACTIONS(1782), - [anon_sym___typeof] = ACTIONS(1782), - [anon_sym___typeof__] = ACTIONS(1782), - [sym_self] = ACTIONS(1782), - [sym_super] = ACTIONS(1782), - [sym_nil] = ACTIONS(1782), - [sym_id] = ACTIONS(1782), - [sym_instancetype] = ACTIONS(1782), - [sym_Class] = ACTIONS(1782), - [sym_SEL] = ACTIONS(1782), - [sym_IMP] = ACTIONS(1782), - [sym_BOOL] = ACTIONS(1782), - [sym_auto] = ACTIONS(1782), - [anon_sym_ATautoreleasepool] = ACTIONS(1784), - [anon_sym_ATsynchronized] = ACTIONS(1784), - [anon_sym_ATtry] = ACTIONS(1784), - [anon_sym_ATthrow] = ACTIONS(1784), - [anon_sym_ATselector] = ACTIONS(1784), - [anon_sym_ATencode] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(1782), - [sym_YES] = ACTIONS(1782), - [sym_NO] = ACTIONS(1782), - [anon_sym___builtin_available] = ACTIONS(1782), - [anon_sym_ATavailable] = ACTIONS(1784), - [anon_sym_va_arg] = ACTIONS(1782), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [557] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [aux_sym_preproc_else_token1] = ACTIONS(1786), - [aux_sym_preproc_elif_token1] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [558] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [aux_sym_preproc_else_token1] = ACTIONS(1786), - [aux_sym_preproc_elif_token1] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [559] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [aux_sym_preproc_else_token1] = ACTIONS(1786), - [aux_sym_preproc_elif_token1] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [560] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [aux_sym_preproc_else_token1] = ACTIONS(1786), - [aux_sym_preproc_elif_token1] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [561] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [aux_sym_preproc_else_token1] = ACTIONS(1786), - [aux_sym_preproc_elif_token1] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [562] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [aux_sym_preproc_else_token1] = ACTIONS(1786), - [aux_sym_preproc_elif_token1] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [563] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [aux_sym_preproc_else_token1] = ACTIONS(1786), - [aux_sym_preproc_elif_token1] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [564] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [aux_sym_preproc_else_token1] = ACTIONS(1786), - [aux_sym_preproc_elif_token1] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [565] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [aux_sym_preproc_else_token1] = ACTIONS(1786), - [aux_sym_preproc_elif_token1] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [566] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [aux_sym_preproc_else_token1] = ACTIONS(1786), - [aux_sym_preproc_elif_token1] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [567] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [aux_sym_preproc_else_token1] = ACTIONS(1786), - [aux_sym_preproc_elif_token1] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [568] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [aux_sym_preproc_else_token1] = ACTIONS(1786), - [aux_sym_preproc_elif_token1] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [569] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [aux_sym_preproc_else_token1] = ACTIONS(1786), - [aux_sym_preproc_elif_token1] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [570] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [aux_sym_preproc_else_token1] = ACTIONS(1790), - [aux_sym_preproc_elif_token1] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [571] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [aux_sym_preproc_else_token1] = ACTIONS(1790), - [aux_sym_preproc_elif_token1] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [572] = { - [sym_identifier] = ACTIONS(1774), - [aux_sym_preproc_include_token1] = ACTIONS(1776), - [aux_sym_preproc_def_token1] = ACTIONS(1776), - [aux_sym_preproc_if_token1] = ACTIONS(1774), - [aux_sym_preproc_if_token2] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1774), - [aux_sym_preproc_else_token1] = ACTIONS(1774), - [aux_sym_preproc_elif_token1] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_typedef] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym___attribute] = ACTIONS(1774), - [anon_sym___attribute__] = ACTIONS(1774), - [anon_sym___declspec] = ACTIONS(1774), - [anon_sym___cdecl] = ACTIONS(1774), - [anon_sym___clrcall] = ACTIONS(1774), - [anon_sym___stdcall] = ACTIONS(1774), - [anon_sym___fastcall] = ACTIONS(1774), - [anon_sym___thiscall] = ACTIONS(1774), - [anon_sym___vectorcall] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_auto] = ACTIONS(1774), - [anon_sym_register] = ACTIONS(1774), - [anon_sym_inline] = ACTIONS(1774), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_out] = ACTIONS(1774), - [anon_sym_inout] = ACTIONS(1774), - [anon_sym_bycopy] = ACTIONS(1774), - [anon_sym_byref] = ACTIONS(1774), - [anon_sym_oneway] = ACTIONS(1774), - [anon_sym__Nullable] = ACTIONS(1774), - [anon_sym__Nonnull] = ACTIONS(1774), - [anon_sym__Nullable_result] = ACTIONS(1774), - [anon_sym__Null_unspecified] = ACTIONS(1774), - [anon_sym___autoreleasing] = ACTIONS(1774), - [anon_sym___nullable] = ACTIONS(1774), - [anon_sym___nonnull] = ACTIONS(1774), - [anon_sym___strong] = ACTIONS(1774), - [anon_sym___weak] = ACTIONS(1774), - [anon_sym___bridge] = ACTIONS(1774), - [anon_sym___bridge_transfer] = ACTIONS(1774), - [anon_sym___bridge_retained] = ACTIONS(1774), - [anon_sym___unsafe_unretained] = ACTIONS(1774), - [anon_sym___block] = ACTIONS(1774), - [anon_sym___kindof] = ACTIONS(1774), - [anon_sym___unused] = ACTIONS(1774), - [anon_sym__Complex] = ACTIONS(1774), - [anon_sym___complex] = ACTIONS(1774), - [anon_sym_IBOutlet] = ACTIONS(1774), - [anon_sym_IBInspectable] = ACTIONS(1774), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1774), - [anon_sym_signed] = ACTIONS(1774), - [anon_sym_unsigned] = ACTIONS(1774), - [anon_sym_long] = ACTIONS(1774), - [anon_sym_short] = ACTIONS(1774), - [sym_primitive_type] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_NS_ENUM] = ACTIONS(1774), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1774), - [anon_sym_NS_OPTIONS] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1774), - [anon_sym_case] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_goto] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1776), - [anon_sym_sizeof] = ACTIONS(1774), - [sym_number_literal] = ACTIONS(1776), - [anon_sym_L_SQUOTE] = ACTIONS(1776), - [anon_sym_u_SQUOTE] = ACTIONS(1776), - [anon_sym_U_SQUOTE] = ACTIONS(1776), - [anon_sym_u8_SQUOTE] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_L_DQUOTE] = ACTIONS(1776), - [anon_sym_u_DQUOTE] = ACTIONS(1776), - [anon_sym_U_DQUOTE] = ACTIONS(1776), - [anon_sym_u8_DQUOTE] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym_true] = ACTIONS(1774), - [sym_false] = ACTIONS(1774), - [sym_null] = ACTIONS(1774), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1776), - [anon_sym_ATimport] = ACTIONS(1776), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1774), - [anon_sym_ATcompatibility_alias] = ACTIONS(1776), - [anon_sym_ATprotocol] = ACTIONS(1776), - [anon_sym_ATclass] = ACTIONS(1776), - [anon_sym_ATinterface] = ACTIONS(1776), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1774), - [sym_method_attribute_specifier] = ACTIONS(1774), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1774), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE] = ACTIONS(1774), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_API_AVAILABLE] = ACTIONS(1774), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_API_DEPRECATED] = ACTIONS(1774), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1774), - [anon_sym___deprecated_msg] = ACTIONS(1774), - [anon_sym___deprecated_enum_msg] = ACTIONS(1774), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1774), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1774), - [anon_sym_ATimplementation] = ACTIONS(1776), - [anon_sym_typeof] = ACTIONS(1774), - [anon_sym___typeof] = ACTIONS(1774), - [anon_sym___typeof__] = ACTIONS(1774), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_nil] = ACTIONS(1774), - [sym_id] = ACTIONS(1774), - [sym_instancetype] = ACTIONS(1774), - [sym_Class] = ACTIONS(1774), - [sym_SEL] = ACTIONS(1774), - [sym_IMP] = ACTIONS(1774), - [sym_BOOL] = ACTIONS(1774), - [sym_auto] = ACTIONS(1774), - [anon_sym_ATautoreleasepool] = ACTIONS(1776), - [anon_sym_ATsynchronized] = ACTIONS(1776), - [anon_sym_ATtry] = ACTIONS(1776), - [anon_sym_ATthrow] = ACTIONS(1776), - [anon_sym_ATselector] = ACTIONS(1776), - [anon_sym_ATencode] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1774), - [sym_YES] = ACTIONS(1774), - [sym_NO] = ACTIONS(1774), - [anon_sym___builtin_available] = ACTIONS(1774), - [anon_sym_ATavailable] = ACTIONS(1776), - [anon_sym_va_arg] = ACTIONS(1774), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [573] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [aux_sym_preproc_else_token1] = ACTIONS(1790), - [aux_sym_preproc_elif_token1] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [574] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [aux_sym_preproc_else_token1] = ACTIONS(1790), - [aux_sym_preproc_elif_token1] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [575] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [aux_sym_preproc_else_token1] = ACTIONS(1790), - [aux_sym_preproc_elif_token1] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [576] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [aux_sym_preproc_else_token1] = ACTIONS(1790), - [aux_sym_preproc_elif_token1] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [577] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [aux_sym_preproc_else_token1] = ACTIONS(1790), - [aux_sym_preproc_elif_token1] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [578] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [aux_sym_preproc_else_token1] = ACTIONS(1790), - [aux_sym_preproc_elif_token1] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [579] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [aux_sym_preproc_else_token1] = ACTIONS(1790), - [aux_sym_preproc_elif_token1] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [580] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [aux_sym_preproc_else_token1] = ACTIONS(1790), - [aux_sym_preproc_elif_token1] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [581] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [aux_sym_preproc_else_token1] = ACTIONS(1790), - [aux_sym_preproc_elif_token1] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [582] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [aux_sym_preproc_else_token1] = ACTIONS(1790), - [aux_sym_preproc_elif_token1] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [583] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [aux_sym_preproc_else_token1] = ACTIONS(1790), - [aux_sym_preproc_elif_token1] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [584] = { - [sym_identifier] = ACTIONS(1774), - [aux_sym_preproc_include_token1] = ACTIONS(1776), - [aux_sym_preproc_def_token1] = ACTIONS(1776), - [aux_sym_preproc_if_token1] = ACTIONS(1774), - [aux_sym_preproc_if_token2] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1774), - [aux_sym_preproc_else_token1] = ACTIONS(1774), - [aux_sym_preproc_elif_token1] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_typedef] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym___attribute] = ACTIONS(1774), - [anon_sym___attribute__] = ACTIONS(1774), - [anon_sym___declspec] = ACTIONS(1774), - [anon_sym___cdecl] = ACTIONS(1774), - [anon_sym___clrcall] = ACTIONS(1774), - [anon_sym___stdcall] = ACTIONS(1774), - [anon_sym___fastcall] = ACTIONS(1774), - [anon_sym___thiscall] = ACTIONS(1774), - [anon_sym___vectorcall] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_auto] = ACTIONS(1774), - [anon_sym_register] = ACTIONS(1774), - [anon_sym_inline] = ACTIONS(1774), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_out] = ACTIONS(1774), - [anon_sym_inout] = ACTIONS(1774), - [anon_sym_bycopy] = ACTIONS(1774), - [anon_sym_byref] = ACTIONS(1774), - [anon_sym_oneway] = ACTIONS(1774), - [anon_sym__Nullable] = ACTIONS(1774), - [anon_sym__Nonnull] = ACTIONS(1774), - [anon_sym__Nullable_result] = ACTIONS(1774), - [anon_sym__Null_unspecified] = ACTIONS(1774), - [anon_sym___autoreleasing] = ACTIONS(1774), - [anon_sym___nullable] = ACTIONS(1774), - [anon_sym___nonnull] = ACTIONS(1774), - [anon_sym___strong] = ACTIONS(1774), - [anon_sym___weak] = ACTIONS(1774), - [anon_sym___bridge] = ACTIONS(1774), - [anon_sym___bridge_transfer] = ACTIONS(1774), - [anon_sym___bridge_retained] = ACTIONS(1774), - [anon_sym___unsafe_unretained] = ACTIONS(1774), - [anon_sym___block] = ACTIONS(1774), - [anon_sym___kindof] = ACTIONS(1774), - [anon_sym___unused] = ACTIONS(1774), - [anon_sym__Complex] = ACTIONS(1774), - [anon_sym___complex] = ACTIONS(1774), - [anon_sym_IBOutlet] = ACTIONS(1774), - [anon_sym_IBInspectable] = ACTIONS(1774), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1774), - [anon_sym_signed] = ACTIONS(1774), - [anon_sym_unsigned] = ACTIONS(1774), - [anon_sym_long] = ACTIONS(1774), - [anon_sym_short] = ACTIONS(1774), - [sym_primitive_type] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_NS_ENUM] = ACTIONS(1774), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1774), - [anon_sym_NS_OPTIONS] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1774), - [anon_sym_case] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_goto] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1776), - [anon_sym_sizeof] = ACTIONS(1774), - [sym_number_literal] = ACTIONS(1776), - [anon_sym_L_SQUOTE] = ACTIONS(1776), - [anon_sym_u_SQUOTE] = ACTIONS(1776), - [anon_sym_U_SQUOTE] = ACTIONS(1776), - [anon_sym_u8_SQUOTE] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_L_DQUOTE] = ACTIONS(1776), - [anon_sym_u_DQUOTE] = ACTIONS(1776), - [anon_sym_U_DQUOTE] = ACTIONS(1776), - [anon_sym_u8_DQUOTE] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym_true] = ACTIONS(1774), - [sym_false] = ACTIONS(1774), - [sym_null] = ACTIONS(1774), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1776), - [anon_sym_ATimport] = ACTIONS(1776), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1774), - [anon_sym_ATcompatibility_alias] = ACTIONS(1776), - [anon_sym_ATprotocol] = ACTIONS(1776), - [anon_sym_ATclass] = ACTIONS(1776), - [anon_sym_ATinterface] = ACTIONS(1776), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1774), - [sym_method_attribute_specifier] = ACTIONS(1774), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1774), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE] = ACTIONS(1774), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_API_AVAILABLE] = ACTIONS(1774), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_API_DEPRECATED] = ACTIONS(1774), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1774), - [anon_sym___deprecated_msg] = ACTIONS(1774), - [anon_sym___deprecated_enum_msg] = ACTIONS(1774), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1774), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1774), - [anon_sym_ATimplementation] = ACTIONS(1776), - [anon_sym_typeof] = ACTIONS(1774), - [anon_sym___typeof] = ACTIONS(1774), - [anon_sym___typeof__] = ACTIONS(1774), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_nil] = ACTIONS(1774), - [sym_id] = ACTIONS(1774), - [sym_instancetype] = ACTIONS(1774), - [sym_Class] = ACTIONS(1774), - [sym_SEL] = ACTIONS(1774), - [sym_IMP] = ACTIONS(1774), - [sym_BOOL] = ACTIONS(1774), - [sym_auto] = ACTIONS(1774), - [anon_sym_ATautoreleasepool] = ACTIONS(1776), - [anon_sym_ATsynchronized] = ACTIONS(1776), - [anon_sym_ATtry] = ACTIONS(1776), - [anon_sym_ATthrow] = ACTIONS(1776), - [anon_sym_ATselector] = ACTIONS(1776), - [anon_sym_ATencode] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1774), - [sym_YES] = ACTIONS(1774), - [sym_NO] = ACTIONS(1774), - [anon_sym___builtin_available] = ACTIONS(1774), - [anon_sym_ATavailable] = ACTIONS(1776), - [anon_sym_va_arg] = ACTIONS(1774), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [585] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [aux_sym_preproc_else_token1] = ACTIONS(1794), - [aux_sym_preproc_elif_token1] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [586] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [aux_sym_preproc_else_token1] = ACTIONS(1790), - [aux_sym_preproc_elif_token1] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [587] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [aux_sym_preproc_else_token1] = ACTIONS(1794), - [aux_sym_preproc_elif_token1] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [588] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [aux_sym_preproc_else_token1] = ACTIONS(1790), - [aux_sym_preproc_elif_token1] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [589] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [aux_sym_preproc_else_token1] = ACTIONS(1798), - [aux_sym_preproc_elif_token1] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [590] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [aux_sym_preproc_else_token1] = ACTIONS(1794), - [aux_sym_preproc_elif_token1] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [591] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [aux_sym_preproc_else_token1] = ACTIONS(1794), - [aux_sym_preproc_elif_token1] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [592] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [aux_sym_preproc_else_token1] = ACTIONS(1798), - [aux_sym_preproc_elif_token1] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [593] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [aux_sym_preproc_else_token1] = ACTIONS(1798), - [aux_sym_preproc_elif_token1] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [594] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [aux_sym_preproc_else_token1] = ACTIONS(1798), - [aux_sym_preproc_elif_token1] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [595] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [aux_sym_preproc_else_token1] = ACTIONS(1798), - [aux_sym_preproc_elif_token1] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [596] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [aux_sym_preproc_else_token1] = ACTIONS(1794), - [aux_sym_preproc_elif_token1] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [597] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [aux_sym_preproc_else_token1] = ACTIONS(1794), - [aux_sym_preproc_elif_token1] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [598] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [aux_sym_preproc_else_token1] = ACTIONS(1794), - [aux_sym_preproc_elif_token1] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [599] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [aux_sym_preproc_else_token1] = ACTIONS(1794), - [aux_sym_preproc_elif_token1] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [600] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [aux_sym_preproc_else_token1] = ACTIONS(1794), - [aux_sym_preproc_elif_token1] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [601] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [aux_sym_preproc_else_token1] = ACTIONS(1794), - [aux_sym_preproc_elif_token1] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [602] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [aux_sym_preproc_else_token1] = ACTIONS(1798), - [aux_sym_preproc_elif_token1] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [603] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [aux_sym_preproc_else_token1] = ACTIONS(1798), - [aux_sym_preproc_elif_token1] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [604] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [aux_sym_preproc_else_token1] = ACTIONS(1798), - [aux_sym_preproc_elif_token1] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [605] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [aux_sym_preproc_else_token1] = ACTIONS(1794), - [aux_sym_preproc_elif_token1] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [606] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [aux_sym_preproc_else_token1] = ACTIONS(1798), - [aux_sym_preproc_elif_token1] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [607] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [aux_sym_preproc_else_token1] = ACTIONS(1802), - [aux_sym_preproc_elif_token1] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [608] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [aux_sym_preproc_else_token1] = ACTIONS(1802), - [aux_sym_preproc_elif_token1] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [609] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [aux_sym_preproc_else_token1] = ACTIONS(1802), - [aux_sym_preproc_elif_token1] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [610] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [aux_sym_preproc_else_token1] = ACTIONS(1798), - [aux_sym_preproc_elif_token1] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [611] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [aux_sym_preproc_else_token1] = ACTIONS(1802), - [aux_sym_preproc_elif_token1] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [612] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [aux_sym_preproc_else_token1] = ACTIONS(1802), - [aux_sym_preproc_elif_token1] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [613] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [aux_sym_preproc_else_token1] = ACTIONS(1798), - [aux_sym_preproc_elif_token1] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [614] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [aux_sym_preproc_else_token1] = ACTIONS(1802), - [aux_sym_preproc_elif_token1] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [615] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [aux_sym_preproc_else_token1] = ACTIONS(1802), - [aux_sym_preproc_elif_token1] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [616] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [aux_sym_preproc_else_token1] = ACTIONS(1802), - [aux_sym_preproc_elif_token1] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [617] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [aux_sym_preproc_else_token1] = ACTIONS(1802), - [aux_sym_preproc_elif_token1] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [618] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [aux_sym_preproc_else_token1] = ACTIONS(1802), - [aux_sym_preproc_elif_token1] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [619] = { - [sym_identifier] = ACTIONS(1806), - [aux_sym_preproc_include_token1] = ACTIONS(1808), - [aux_sym_preproc_def_token1] = ACTIONS(1808), - [aux_sym_preproc_if_token1] = ACTIONS(1806), - [aux_sym_preproc_if_token2] = ACTIONS(1806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1806), - [aux_sym_preproc_else_token1] = ACTIONS(1806), - [aux_sym_preproc_elif_token1] = ACTIONS(1806), - [anon_sym_LPAREN2] = ACTIONS(1808), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_CARET] = ACTIONS(1808), - [anon_sym_AMP] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1808), - [anon_sym_typedef] = ACTIONS(1806), - [anon_sym_extern] = ACTIONS(1806), - [anon_sym___attribute] = ACTIONS(1806), - [anon_sym___attribute__] = ACTIONS(1806), - [anon_sym___declspec] = ACTIONS(1806), - [anon_sym___cdecl] = ACTIONS(1806), - [anon_sym___clrcall] = ACTIONS(1806), - [anon_sym___stdcall] = ACTIONS(1806), - [anon_sym___fastcall] = ACTIONS(1806), - [anon_sym___thiscall] = ACTIONS(1806), - [anon_sym___vectorcall] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_LBRACK] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_auto] = ACTIONS(1806), - [anon_sym_register] = ACTIONS(1806), - [anon_sym_inline] = ACTIONS(1806), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1806), - [anon_sym_const] = ACTIONS(1806), - [anon_sym_volatile] = ACTIONS(1806), - [anon_sym_restrict] = ACTIONS(1806), - [anon_sym__Atomic] = ACTIONS(1806), - [anon_sym_in] = ACTIONS(1806), - [anon_sym_out] = ACTIONS(1806), - [anon_sym_inout] = ACTIONS(1806), - [anon_sym_bycopy] = ACTIONS(1806), - [anon_sym_byref] = ACTIONS(1806), - [anon_sym_oneway] = ACTIONS(1806), - [anon_sym__Nullable] = ACTIONS(1806), - [anon_sym__Nonnull] = ACTIONS(1806), - [anon_sym__Nullable_result] = ACTIONS(1806), - [anon_sym__Null_unspecified] = ACTIONS(1806), - [anon_sym___autoreleasing] = ACTIONS(1806), - [anon_sym___nullable] = ACTIONS(1806), - [anon_sym___nonnull] = ACTIONS(1806), - [anon_sym___strong] = ACTIONS(1806), - [anon_sym___weak] = ACTIONS(1806), - [anon_sym___bridge] = ACTIONS(1806), - [anon_sym___bridge_transfer] = ACTIONS(1806), - [anon_sym___bridge_retained] = ACTIONS(1806), - [anon_sym___unsafe_unretained] = ACTIONS(1806), - [anon_sym___block] = ACTIONS(1806), - [anon_sym___kindof] = ACTIONS(1806), - [anon_sym___unused] = ACTIONS(1806), - [anon_sym__Complex] = ACTIONS(1806), - [anon_sym___complex] = ACTIONS(1806), - [anon_sym_IBOutlet] = ACTIONS(1806), - [anon_sym_IBInspectable] = ACTIONS(1806), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1806), - [anon_sym_signed] = ACTIONS(1806), - [anon_sym_unsigned] = ACTIONS(1806), - [anon_sym_long] = ACTIONS(1806), - [anon_sym_short] = ACTIONS(1806), - [sym_primitive_type] = ACTIONS(1806), - [anon_sym_enum] = ACTIONS(1806), - [anon_sym_NS_ENUM] = ACTIONS(1806), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1806), - [anon_sym_NS_OPTIONS] = ACTIONS(1806), - [anon_sym_struct] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_if] = ACTIONS(1806), - [anon_sym_switch] = ACTIONS(1806), - [anon_sym_case] = ACTIONS(1806), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_while] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1806), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1806), - [anon_sym_break] = ACTIONS(1806), - [anon_sym_continue] = ACTIONS(1806), - [anon_sym_goto] = ACTIONS(1806), - [anon_sym_DASH_DASH] = ACTIONS(1808), - [anon_sym_PLUS_PLUS] = ACTIONS(1808), - [anon_sym_sizeof] = ACTIONS(1806), - [sym_number_literal] = ACTIONS(1808), - [anon_sym_L_SQUOTE] = ACTIONS(1808), - [anon_sym_u_SQUOTE] = ACTIONS(1808), - [anon_sym_U_SQUOTE] = ACTIONS(1808), - [anon_sym_u8_SQUOTE] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [anon_sym_L_DQUOTE] = ACTIONS(1808), - [anon_sym_u_DQUOTE] = ACTIONS(1808), - [anon_sym_U_DQUOTE] = ACTIONS(1808), - [anon_sym_u8_DQUOTE] = ACTIONS(1808), - [anon_sym_DQUOTE] = ACTIONS(1808), - [sym_true] = ACTIONS(1806), - [sym_false] = ACTIONS(1806), - [sym_null] = ACTIONS(1806), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1808), - [anon_sym_ATimport] = ACTIONS(1808), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1806), - [anon_sym_ATcompatibility_alias] = ACTIONS(1808), - [anon_sym_ATprotocol] = ACTIONS(1808), - [anon_sym_ATclass] = ACTIONS(1808), - [anon_sym_ATinterface] = ACTIONS(1808), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1806), - [sym_method_attribute_specifier] = ACTIONS(1806), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1806), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1806), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1806), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1806), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1806), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1806), - [anon_sym_NS_AVAILABLE] = ACTIONS(1806), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1806), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1806), - [anon_sym_API_AVAILABLE] = ACTIONS(1806), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1806), - [anon_sym_API_DEPRECATED] = ACTIONS(1806), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1806), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1806), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1806), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1806), - [anon_sym___deprecated_msg] = ACTIONS(1806), - [anon_sym___deprecated_enum_msg] = ACTIONS(1806), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1806), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1806), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1806), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1806), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1806), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1806), - [anon_sym_ATimplementation] = ACTIONS(1808), - [anon_sym_typeof] = ACTIONS(1806), - [anon_sym___typeof] = ACTIONS(1806), - [anon_sym___typeof__] = ACTIONS(1806), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_nil] = ACTIONS(1806), - [sym_id] = ACTIONS(1806), - [sym_instancetype] = ACTIONS(1806), - [sym_Class] = ACTIONS(1806), - [sym_SEL] = ACTIONS(1806), - [sym_IMP] = ACTIONS(1806), - [sym_BOOL] = ACTIONS(1806), - [sym_auto] = ACTIONS(1806), - [anon_sym_ATautoreleasepool] = ACTIONS(1808), - [anon_sym_ATsynchronized] = ACTIONS(1808), - [anon_sym_ATtry] = ACTIONS(1808), - [anon_sym_ATthrow] = ACTIONS(1808), - [anon_sym_ATselector] = ACTIONS(1808), - [anon_sym_ATencode] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(1806), - [sym_YES] = ACTIONS(1806), - [sym_NO] = ACTIONS(1806), - [anon_sym___builtin_available] = ACTIONS(1806), - [anon_sym_ATavailable] = ACTIONS(1808), - [anon_sym_va_arg] = ACTIONS(1806), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [620] = { - [sym_identifier] = ACTIONS(1810), - [aux_sym_preproc_include_token1] = ACTIONS(1812), - [aux_sym_preproc_def_token1] = ACTIONS(1812), - [aux_sym_preproc_if_token1] = ACTIONS(1810), - [aux_sym_preproc_if_token2] = ACTIONS(1810), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1810), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1810), - [aux_sym_preproc_else_token1] = ACTIONS(1810), - [aux_sym_preproc_elif_token1] = ACTIONS(1810), - [anon_sym_LPAREN2] = ACTIONS(1812), - [anon_sym_BANG] = ACTIONS(1812), - [anon_sym_TILDE] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1810), - [anon_sym_STAR] = ACTIONS(1812), - [anon_sym_CARET] = ACTIONS(1812), - [anon_sym_AMP] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_typedef] = ACTIONS(1810), - [anon_sym_extern] = ACTIONS(1810), - [anon_sym___attribute] = ACTIONS(1810), - [anon_sym___attribute__] = ACTIONS(1810), - [anon_sym___declspec] = ACTIONS(1810), - [anon_sym___cdecl] = ACTIONS(1810), - [anon_sym___clrcall] = ACTIONS(1810), - [anon_sym___stdcall] = ACTIONS(1810), - [anon_sym___fastcall] = ACTIONS(1810), - [anon_sym___thiscall] = ACTIONS(1810), - [anon_sym___vectorcall] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_static] = ACTIONS(1810), - [anon_sym_auto] = ACTIONS(1810), - [anon_sym_register] = ACTIONS(1810), - [anon_sym_inline] = ACTIONS(1810), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1810), - [anon_sym_const] = ACTIONS(1810), - [anon_sym_volatile] = ACTIONS(1810), - [anon_sym_restrict] = ACTIONS(1810), - [anon_sym__Atomic] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_out] = ACTIONS(1810), - [anon_sym_inout] = ACTIONS(1810), - [anon_sym_bycopy] = ACTIONS(1810), - [anon_sym_byref] = ACTIONS(1810), - [anon_sym_oneway] = ACTIONS(1810), - [anon_sym__Nullable] = ACTIONS(1810), - [anon_sym__Nonnull] = ACTIONS(1810), - [anon_sym__Nullable_result] = ACTIONS(1810), - [anon_sym__Null_unspecified] = ACTIONS(1810), - [anon_sym___autoreleasing] = ACTIONS(1810), - [anon_sym___nullable] = ACTIONS(1810), - [anon_sym___nonnull] = ACTIONS(1810), - [anon_sym___strong] = ACTIONS(1810), - [anon_sym___weak] = ACTIONS(1810), - [anon_sym___bridge] = ACTIONS(1810), - [anon_sym___bridge_transfer] = ACTIONS(1810), - [anon_sym___bridge_retained] = ACTIONS(1810), - [anon_sym___unsafe_unretained] = ACTIONS(1810), - [anon_sym___block] = ACTIONS(1810), - [anon_sym___kindof] = ACTIONS(1810), - [anon_sym___unused] = ACTIONS(1810), - [anon_sym__Complex] = ACTIONS(1810), - [anon_sym___complex] = ACTIONS(1810), - [anon_sym_IBOutlet] = ACTIONS(1810), - [anon_sym_IBInspectable] = ACTIONS(1810), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1810), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [sym_primitive_type] = ACTIONS(1810), - [anon_sym_enum] = ACTIONS(1810), - [anon_sym_NS_ENUM] = ACTIONS(1810), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1810), - [anon_sym_NS_OPTIONS] = ACTIONS(1810), - [anon_sym_struct] = ACTIONS(1810), - [anon_sym_union] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1810), - [anon_sym_switch] = ACTIONS(1810), - [anon_sym_case] = ACTIONS(1810), - [anon_sym_default] = ACTIONS(1810), - [anon_sym_while] = ACTIONS(1810), - [anon_sym_do] = ACTIONS(1810), - [anon_sym_for] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1810), - [anon_sym_break] = ACTIONS(1810), - [anon_sym_continue] = ACTIONS(1810), - [anon_sym_goto] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1812), - [anon_sym_PLUS_PLUS] = ACTIONS(1812), - [anon_sym_sizeof] = ACTIONS(1810), - [sym_number_literal] = ACTIONS(1812), - [anon_sym_L_SQUOTE] = ACTIONS(1812), - [anon_sym_u_SQUOTE] = ACTIONS(1812), - [anon_sym_U_SQUOTE] = ACTIONS(1812), - [anon_sym_u8_SQUOTE] = ACTIONS(1812), - [anon_sym_SQUOTE] = ACTIONS(1812), - [anon_sym_L_DQUOTE] = ACTIONS(1812), - [anon_sym_u_DQUOTE] = ACTIONS(1812), - [anon_sym_U_DQUOTE] = ACTIONS(1812), - [anon_sym_u8_DQUOTE] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [sym_true] = ACTIONS(1810), - [sym_false] = ACTIONS(1810), - [sym_null] = ACTIONS(1810), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1812), - [anon_sym_ATimport] = ACTIONS(1812), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1810), - [anon_sym_ATcompatibility_alias] = ACTIONS(1812), - [anon_sym_ATprotocol] = ACTIONS(1812), - [anon_sym_ATclass] = ACTIONS(1812), - [anon_sym_ATinterface] = ACTIONS(1812), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1810), - [sym_method_attribute_specifier] = ACTIONS(1810), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1810), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1810), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1810), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1810), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1810), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1810), - [anon_sym_NS_AVAILABLE] = ACTIONS(1810), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1810), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1810), - [anon_sym_API_AVAILABLE] = ACTIONS(1810), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1810), - [anon_sym_API_DEPRECATED] = ACTIONS(1810), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1810), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1810), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1810), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1810), - [anon_sym___deprecated_msg] = ACTIONS(1810), - [anon_sym___deprecated_enum_msg] = ACTIONS(1810), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1810), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1810), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1810), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1810), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1810), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1810), - [anon_sym_ATimplementation] = ACTIONS(1812), - [anon_sym_typeof] = ACTIONS(1810), - [anon_sym___typeof] = ACTIONS(1810), - [anon_sym___typeof__] = ACTIONS(1810), - [sym_self] = ACTIONS(1810), - [sym_super] = ACTIONS(1810), - [sym_nil] = ACTIONS(1810), - [sym_id] = ACTIONS(1810), - [sym_instancetype] = ACTIONS(1810), - [sym_Class] = ACTIONS(1810), - [sym_SEL] = ACTIONS(1810), - [sym_IMP] = ACTIONS(1810), - [sym_BOOL] = ACTIONS(1810), - [sym_auto] = ACTIONS(1810), - [anon_sym_ATautoreleasepool] = ACTIONS(1812), - [anon_sym_ATsynchronized] = ACTIONS(1812), - [anon_sym_ATtry] = ACTIONS(1812), - [anon_sym_ATthrow] = ACTIONS(1812), - [anon_sym_ATselector] = ACTIONS(1812), - [anon_sym_ATencode] = ACTIONS(1812), - [anon_sym_AT] = ACTIONS(1810), - [sym_YES] = ACTIONS(1810), - [sym_NO] = ACTIONS(1810), - [anon_sym___builtin_available] = ACTIONS(1810), - [anon_sym_ATavailable] = ACTIONS(1812), - [anon_sym_va_arg] = ACTIONS(1810), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [621] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [aux_sym_preproc_else_token1] = ACTIONS(1802), - [aux_sym_preproc_elif_token1] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [622] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [aux_sym_preproc_else_token1] = ACTIONS(1802), - [aux_sym_preproc_elif_token1] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [623] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [aux_sym_preproc_else_token1] = ACTIONS(1802), - [aux_sym_preproc_elif_token1] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [624] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [aux_sym_preproc_else_token1] = ACTIONS(1802), - [aux_sym_preproc_elif_token1] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [625] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [aux_sym_preproc_else_token1] = ACTIONS(1802), - [aux_sym_preproc_elif_token1] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [626] = { - [sym_identifier] = ACTIONS(1814), - [aux_sym_preproc_include_token1] = ACTIONS(1816), - [aux_sym_preproc_def_token1] = ACTIONS(1816), - [aux_sym_preproc_if_token1] = ACTIONS(1814), - [aux_sym_preproc_if_token2] = ACTIONS(1814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1814), - [aux_sym_preproc_else_token1] = ACTIONS(1814), - [aux_sym_preproc_elif_token1] = ACTIONS(1814), - [anon_sym_LPAREN2] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_TILDE] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym_AMP] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1816), - [anon_sym_typedef] = ACTIONS(1814), - [anon_sym_extern] = ACTIONS(1814), - [anon_sym___attribute] = ACTIONS(1814), - [anon_sym___attribute__] = ACTIONS(1814), - [anon_sym___declspec] = ACTIONS(1814), - [anon_sym___cdecl] = ACTIONS(1814), - [anon_sym___clrcall] = ACTIONS(1814), - [anon_sym___stdcall] = ACTIONS(1814), - [anon_sym___fastcall] = ACTIONS(1814), - [anon_sym___thiscall] = ACTIONS(1814), - [anon_sym___vectorcall] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_LBRACK] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1814), - [anon_sym_auto] = ACTIONS(1814), - [anon_sym_register] = ACTIONS(1814), - [anon_sym_inline] = ACTIONS(1814), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1814), - [anon_sym_const] = ACTIONS(1814), - [anon_sym_volatile] = ACTIONS(1814), - [anon_sym_restrict] = ACTIONS(1814), - [anon_sym__Atomic] = ACTIONS(1814), - [anon_sym_in] = ACTIONS(1814), - [anon_sym_out] = ACTIONS(1814), - [anon_sym_inout] = ACTIONS(1814), - [anon_sym_bycopy] = ACTIONS(1814), - [anon_sym_byref] = ACTIONS(1814), - [anon_sym_oneway] = ACTIONS(1814), - [anon_sym__Nullable] = ACTIONS(1814), - [anon_sym__Nonnull] = ACTIONS(1814), - [anon_sym__Nullable_result] = ACTIONS(1814), - [anon_sym__Null_unspecified] = ACTIONS(1814), - [anon_sym___autoreleasing] = ACTIONS(1814), - [anon_sym___nullable] = ACTIONS(1814), - [anon_sym___nonnull] = ACTIONS(1814), - [anon_sym___strong] = ACTIONS(1814), - [anon_sym___weak] = ACTIONS(1814), - [anon_sym___bridge] = ACTIONS(1814), - [anon_sym___bridge_transfer] = ACTIONS(1814), - [anon_sym___bridge_retained] = ACTIONS(1814), - [anon_sym___unsafe_unretained] = ACTIONS(1814), - [anon_sym___block] = ACTIONS(1814), - [anon_sym___kindof] = ACTIONS(1814), - [anon_sym___unused] = ACTIONS(1814), - [anon_sym__Complex] = ACTIONS(1814), - [anon_sym___complex] = ACTIONS(1814), - [anon_sym_IBOutlet] = ACTIONS(1814), - [anon_sym_IBInspectable] = ACTIONS(1814), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1814), - [anon_sym_signed] = ACTIONS(1814), - [anon_sym_unsigned] = ACTIONS(1814), - [anon_sym_long] = ACTIONS(1814), - [anon_sym_short] = ACTIONS(1814), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1814), - [anon_sym_NS_ENUM] = ACTIONS(1814), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1814), - [anon_sym_NS_OPTIONS] = ACTIONS(1814), - [anon_sym_struct] = ACTIONS(1814), - [anon_sym_union] = ACTIONS(1814), - [anon_sym_if] = ACTIONS(1814), - [anon_sym_switch] = ACTIONS(1814), - [anon_sym_case] = ACTIONS(1814), - [anon_sym_default] = ACTIONS(1814), - [anon_sym_while] = ACTIONS(1814), - [anon_sym_do] = ACTIONS(1814), - [anon_sym_for] = ACTIONS(1814), - [anon_sym_return] = ACTIONS(1814), - [anon_sym_break] = ACTIONS(1814), - [anon_sym_continue] = ACTIONS(1814), - [anon_sym_goto] = ACTIONS(1814), - [anon_sym_DASH_DASH] = ACTIONS(1816), - [anon_sym_PLUS_PLUS] = ACTIONS(1816), - [anon_sym_sizeof] = ACTIONS(1814), - [sym_number_literal] = ACTIONS(1816), - [anon_sym_L_SQUOTE] = ACTIONS(1816), - [anon_sym_u_SQUOTE] = ACTIONS(1816), - [anon_sym_U_SQUOTE] = ACTIONS(1816), - [anon_sym_u8_SQUOTE] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_L_DQUOTE] = ACTIONS(1816), - [anon_sym_u_DQUOTE] = ACTIONS(1816), - [anon_sym_U_DQUOTE] = ACTIONS(1816), - [anon_sym_u8_DQUOTE] = ACTIONS(1816), - [anon_sym_DQUOTE] = ACTIONS(1816), - [sym_true] = ACTIONS(1814), - [sym_false] = ACTIONS(1814), - [sym_null] = ACTIONS(1814), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1816), - [anon_sym_ATimport] = ACTIONS(1816), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1814), - [anon_sym_ATcompatibility_alias] = ACTIONS(1816), - [anon_sym_ATprotocol] = ACTIONS(1816), - [anon_sym_ATclass] = ACTIONS(1816), - [anon_sym_ATinterface] = ACTIONS(1816), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1814), - [sym_method_attribute_specifier] = ACTIONS(1814), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1814), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1814), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1814), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1814), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1814), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1814), - [anon_sym_NS_AVAILABLE] = ACTIONS(1814), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1814), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1814), - [anon_sym_API_AVAILABLE] = ACTIONS(1814), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1814), - [anon_sym_API_DEPRECATED] = ACTIONS(1814), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1814), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1814), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1814), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1814), - [anon_sym___deprecated_msg] = ACTIONS(1814), - [anon_sym___deprecated_enum_msg] = ACTIONS(1814), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1814), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1814), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1814), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1814), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1814), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1814), - [anon_sym_ATimplementation] = ACTIONS(1816), - [anon_sym_typeof] = ACTIONS(1814), - [anon_sym___typeof] = ACTIONS(1814), - [anon_sym___typeof__] = ACTIONS(1814), - [sym_self] = ACTIONS(1814), - [sym_super] = ACTIONS(1814), - [sym_nil] = ACTIONS(1814), - [sym_id] = ACTIONS(1814), - [sym_instancetype] = ACTIONS(1814), - [sym_Class] = ACTIONS(1814), - [sym_SEL] = ACTIONS(1814), - [sym_IMP] = ACTIONS(1814), - [sym_BOOL] = ACTIONS(1814), - [sym_auto] = ACTIONS(1814), - [anon_sym_ATautoreleasepool] = ACTIONS(1816), - [anon_sym_ATsynchronized] = ACTIONS(1816), - [anon_sym_ATtry] = ACTIONS(1816), - [anon_sym_ATthrow] = ACTIONS(1816), - [anon_sym_ATselector] = ACTIONS(1816), - [anon_sym_ATencode] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(1814), - [sym_YES] = ACTIONS(1814), - [sym_NO] = ACTIONS(1814), - [anon_sym___builtin_available] = ACTIONS(1814), - [anon_sym_ATavailable] = ACTIONS(1816), - [anon_sym_va_arg] = ACTIONS(1814), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [627] = { - [sym_identifier] = ACTIONS(1818), - [aux_sym_preproc_include_token1] = ACTIONS(1820), - [aux_sym_preproc_def_token1] = ACTIONS(1820), - [aux_sym_preproc_if_token1] = ACTIONS(1818), - [aux_sym_preproc_if_token2] = ACTIONS(1818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1818), - [aux_sym_preproc_else_token1] = ACTIONS(1818), - [aux_sym_preproc_elif_token1] = ACTIONS(1818), - [anon_sym_LPAREN2] = ACTIONS(1820), - [anon_sym_BANG] = ACTIONS(1820), - [anon_sym_TILDE] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1820), - [anon_sym_AMP] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_typedef] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(1818), - [anon_sym___attribute] = ACTIONS(1818), - [anon_sym___attribute__] = ACTIONS(1818), - [anon_sym___declspec] = ACTIONS(1818), - [anon_sym___cdecl] = ACTIONS(1818), - [anon_sym___clrcall] = ACTIONS(1818), - [anon_sym___stdcall] = ACTIONS(1818), - [anon_sym___fastcall] = ACTIONS(1818), - [anon_sym___thiscall] = ACTIONS(1818), - [anon_sym___vectorcall] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1818), - [anon_sym_auto] = ACTIONS(1818), - [anon_sym_register] = ACTIONS(1818), - [anon_sym_inline] = ACTIONS(1818), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1818), - [anon_sym_const] = ACTIONS(1818), - [anon_sym_volatile] = ACTIONS(1818), - [anon_sym_restrict] = ACTIONS(1818), - [anon_sym__Atomic] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1818), - [anon_sym_out] = ACTIONS(1818), - [anon_sym_inout] = ACTIONS(1818), - [anon_sym_bycopy] = ACTIONS(1818), - [anon_sym_byref] = ACTIONS(1818), - [anon_sym_oneway] = ACTIONS(1818), - [anon_sym__Nullable] = ACTIONS(1818), - [anon_sym__Nonnull] = ACTIONS(1818), - [anon_sym__Nullable_result] = ACTIONS(1818), - [anon_sym__Null_unspecified] = ACTIONS(1818), - [anon_sym___autoreleasing] = ACTIONS(1818), - [anon_sym___nullable] = ACTIONS(1818), - [anon_sym___nonnull] = ACTIONS(1818), - [anon_sym___strong] = ACTIONS(1818), - [anon_sym___weak] = ACTIONS(1818), - [anon_sym___bridge] = ACTIONS(1818), - [anon_sym___bridge_transfer] = ACTIONS(1818), - [anon_sym___bridge_retained] = ACTIONS(1818), - [anon_sym___unsafe_unretained] = ACTIONS(1818), - [anon_sym___block] = ACTIONS(1818), - [anon_sym___kindof] = ACTIONS(1818), - [anon_sym___unused] = ACTIONS(1818), - [anon_sym__Complex] = ACTIONS(1818), - [anon_sym___complex] = ACTIONS(1818), - [anon_sym_IBOutlet] = ACTIONS(1818), - [anon_sym_IBInspectable] = ACTIONS(1818), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1818), - [anon_sym_signed] = ACTIONS(1818), - [anon_sym_unsigned] = ACTIONS(1818), - [anon_sym_long] = ACTIONS(1818), - [anon_sym_short] = ACTIONS(1818), - [sym_primitive_type] = ACTIONS(1818), - [anon_sym_enum] = ACTIONS(1818), - [anon_sym_NS_ENUM] = ACTIONS(1818), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1818), - [anon_sym_NS_OPTIONS] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1818), - [anon_sym_union] = ACTIONS(1818), - [anon_sym_if] = ACTIONS(1818), - [anon_sym_switch] = ACTIONS(1818), - [anon_sym_case] = ACTIONS(1818), - [anon_sym_default] = ACTIONS(1818), - [anon_sym_while] = ACTIONS(1818), - [anon_sym_do] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(1818), - [anon_sym_return] = ACTIONS(1818), - [anon_sym_break] = ACTIONS(1818), - [anon_sym_continue] = ACTIONS(1818), - [anon_sym_goto] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1820), - [anon_sym_PLUS_PLUS] = ACTIONS(1820), - [anon_sym_sizeof] = ACTIONS(1818), - [sym_number_literal] = ACTIONS(1820), - [anon_sym_L_SQUOTE] = ACTIONS(1820), - [anon_sym_u_SQUOTE] = ACTIONS(1820), - [anon_sym_U_SQUOTE] = ACTIONS(1820), - [anon_sym_u8_SQUOTE] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_L_DQUOTE] = ACTIONS(1820), - [anon_sym_u_DQUOTE] = ACTIONS(1820), - [anon_sym_U_DQUOTE] = ACTIONS(1820), - [anon_sym_u8_DQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym_true] = ACTIONS(1818), - [sym_false] = ACTIONS(1818), - [sym_null] = ACTIONS(1818), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1820), - [anon_sym_ATimport] = ACTIONS(1820), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1818), - [anon_sym_ATcompatibility_alias] = ACTIONS(1820), - [anon_sym_ATprotocol] = ACTIONS(1820), - [anon_sym_ATclass] = ACTIONS(1820), - [anon_sym_ATinterface] = ACTIONS(1820), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1818), - [sym_method_attribute_specifier] = ACTIONS(1818), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1818), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1818), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1818), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1818), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1818), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1818), - [anon_sym_NS_AVAILABLE] = ACTIONS(1818), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1818), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1818), - [anon_sym_API_AVAILABLE] = ACTIONS(1818), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1818), - [anon_sym_API_DEPRECATED] = ACTIONS(1818), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1818), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1818), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1818), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1818), - [anon_sym___deprecated_msg] = ACTIONS(1818), - [anon_sym___deprecated_enum_msg] = ACTIONS(1818), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1818), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1818), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1818), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1818), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1818), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1818), - [anon_sym_ATimplementation] = ACTIONS(1820), - [anon_sym_typeof] = ACTIONS(1818), - [anon_sym___typeof] = ACTIONS(1818), - [anon_sym___typeof__] = ACTIONS(1818), - [sym_self] = ACTIONS(1818), - [sym_super] = ACTIONS(1818), - [sym_nil] = ACTIONS(1818), - [sym_id] = ACTIONS(1818), - [sym_instancetype] = ACTIONS(1818), - [sym_Class] = ACTIONS(1818), - [sym_SEL] = ACTIONS(1818), - [sym_IMP] = ACTIONS(1818), - [sym_BOOL] = ACTIONS(1818), - [sym_auto] = ACTIONS(1818), - [anon_sym_ATautoreleasepool] = ACTIONS(1820), - [anon_sym_ATsynchronized] = ACTIONS(1820), - [anon_sym_ATtry] = ACTIONS(1820), - [anon_sym_ATthrow] = ACTIONS(1820), - [anon_sym_ATselector] = ACTIONS(1820), - [anon_sym_ATencode] = ACTIONS(1820), - [anon_sym_AT] = ACTIONS(1818), - [sym_YES] = ACTIONS(1818), - [sym_NO] = ACTIONS(1818), - [anon_sym___builtin_available] = ACTIONS(1818), - [anon_sym_ATavailable] = ACTIONS(1820), - [anon_sym_va_arg] = ACTIONS(1818), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [628] = { - [sym_identifier] = ACTIONS(1822), - [aux_sym_preproc_include_token1] = ACTIONS(1824), - [aux_sym_preproc_def_token1] = ACTIONS(1824), - [aux_sym_preproc_if_token1] = ACTIONS(1822), - [aux_sym_preproc_if_token2] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1822), - [aux_sym_preproc_else_token1] = ACTIONS(1822), - [aux_sym_preproc_elif_token1] = ACTIONS(1822), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym___attribute] = ACTIONS(1822), - [anon_sym___attribute__] = ACTIONS(1822), - [anon_sym___declspec] = ACTIONS(1822), - [anon_sym___cdecl] = ACTIONS(1822), - [anon_sym___clrcall] = ACTIONS(1822), - [anon_sym___stdcall] = ACTIONS(1822), - [anon_sym___fastcall] = ACTIONS(1822), - [anon_sym___thiscall] = ACTIONS(1822), - [anon_sym___vectorcall] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [anon_sym__Atomic] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_out] = ACTIONS(1822), - [anon_sym_inout] = ACTIONS(1822), - [anon_sym_bycopy] = ACTIONS(1822), - [anon_sym_byref] = ACTIONS(1822), - [anon_sym_oneway] = ACTIONS(1822), - [anon_sym__Nullable] = ACTIONS(1822), - [anon_sym__Nonnull] = ACTIONS(1822), - [anon_sym__Nullable_result] = ACTIONS(1822), - [anon_sym__Null_unspecified] = ACTIONS(1822), - [anon_sym___autoreleasing] = ACTIONS(1822), - [anon_sym___nullable] = ACTIONS(1822), - [anon_sym___nonnull] = ACTIONS(1822), - [anon_sym___strong] = ACTIONS(1822), - [anon_sym___weak] = ACTIONS(1822), - [anon_sym___bridge] = ACTIONS(1822), - [anon_sym___bridge_transfer] = ACTIONS(1822), - [anon_sym___bridge_retained] = ACTIONS(1822), - [anon_sym___unsafe_unretained] = ACTIONS(1822), - [anon_sym___block] = ACTIONS(1822), - [anon_sym___kindof] = ACTIONS(1822), - [anon_sym___unused] = ACTIONS(1822), - [anon_sym__Complex] = ACTIONS(1822), - [anon_sym___complex] = ACTIONS(1822), - [anon_sym_IBOutlet] = ACTIONS(1822), - [anon_sym_IBInspectable] = ACTIONS(1822), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_NS_ENUM] = ACTIONS(1822), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1822), - [anon_sym_NS_OPTIONS] = ACTIONS(1822), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_case] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_goto] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1822), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_L_SQUOTE] = ACTIONS(1824), - [anon_sym_u_SQUOTE] = ACTIONS(1824), - [anon_sym_U_SQUOTE] = ACTIONS(1824), - [anon_sym_u8_SQUOTE] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_L_DQUOTE] = ACTIONS(1824), - [anon_sym_u_DQUOTE] = ACTIONS(1824), - [anon_sym_U_DQUOTE] = ACTIONS(1824), - [anon_sym_u8_DQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym_true] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1824), - [anon_sym_ATimport] = ACTIONS(1824), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1822), - [anon_sym_ATcompatibility_alias] = ACTIONS(1824), - [anon_sym_ATprotocol] = ACTIONS(1824), - [anon_sym_ATclass] = ACTIONS(1824), - [anon_sym_ATinterface] = ACTIONS(1824), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1822), - [sym_method_attribute_specifier] = ACTIONS(1822), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1822), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE] = ACTIONS(1822), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_API_AVAILABLE] = ACTIONS(1822), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_API_DEPRECATED] = ACTIONS(1822), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1822), - [anon_sym___deprecated_msg] = ACTIONS(1822), - [anon_sym___deprecated_enum_msg] = ACTIONS(1822), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1822), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1822), - [anon_sym_ATimplementation] = ACTIONS(1824), - [anon_sym_typeof] = ACTIONS(1822), - [anon_sym___typeof] = ACTIONS(1822), - [anon_sym___typeof__] = ACTIONS(1822), - [sym_self] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_nil] = ACTIONS(1822), - [sym_id] = ACTIONS(1822), - [sym_instancetype] = ACTIONS(1822), - [sym_Class] = ACTIONS(1822), - [sym_SEL] = ACTIONS(1822), - [sym_IMP] = ACTIONS(1822), - [sym_BOOL] = ACTIONS(1822), - [sym_auto] = ACTIONS(1822), - [anon_sym_ATautoreleasepool] = ACTIONS(1824), - [anon_sym_ATsynchronized] = ACTIONS(1824), - [anon_sym_ATtry] = ACTIONS(1824), - [anon_sym_ATthrow] = ACTIONS(1824), - [anon_sym_ATselector] = ACTIONS(1824), - [anon_sym_ATencode] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1822), - [sym_YES] = ACTIONS(1822), - [sym_NO] = ACTIONS(1822), - [anon_sym___builtin_available] = ACTIONS(1822), - [anon_sym_ATavailable] = ACTIONS(1824), - [anon_sym_va_arg] = ACTIONS(1822), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [629] = { - [sym_identifier] = ACTIONS(1826), - [aux_sym_preproc_include_token1] = ACTIONS(1828), - [aux_sym_preproc_def_token1] = ACTIONS(1828), - [aux_sym_preproc_if_token1] = ACTIONS(1826), - [aux_sym_preproc_if_token2] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1826), - [aux_sym_preproc_else_token1] = ACTIONS(1826), - [aux_sym_preproc_elif_token1] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym___attribute] = ACTIONS(1826), - [anon_sym___attribute__] = ACTIONS(1826), - [anon_sym___declspec] = ACTIONS(1826), - [anon_sym___cdecl] = ACTIONS(1826), - [anon_sym___clrcall] = ACTIONS(1826), - [anon_sym___stdcall] = ACTIONS(1826), - [anon_sym___fastcall] = ACTIONS(1826), - [anon_sym___thiscall] = ACTIONS(1826), - [anon_sym___vectorcall] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_auto] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_volatile] = ACTIONS(1826), - [anon_sym_restrict] = ACTIONS(1826), - [anon_sym__Atomic] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_out] = ACTIONS(1826), - [anon_sym_inout] = ACTIONS(1826), - [anon_sym_bycopy] = ACTIONS(1826), - [anon_sym_byref] = ACTIONS(1826), - [anon_sym_oneway] = ACTIONS(1826), - [anon_sym__Nullable] = ACTIONS(1826), - [anon_sym__Nonnull] = ACTIONS(1826), - [anon_sym__Nullable_result] = ACTIONS(1826), - [anon_sym__Null_unspecified] = ACTIONS(1826), - [anon_sym___autoreleasing] = ACTIONS(1826), - [anon_sym___nullable] = ACTIONS(1826), - [anon_sym___nonnull] = ACTIONS(1826), - [anon_sym___strong] = ACTIONS(1826), - [anon_sym___weak] = ACTIONS(1826), - [anon_sym___bridge] = ACTIONS(1826), - [anon_sym___bridge_transfer] = ACTIONS(1826), - [anon_sym___bridge_retained] = ACTIONS(1826), - [anon_sym___unsafe_unretained] = ACTIONS(1826), - [anon_sym___block] = ACTIONS(1826), - [anon_sym___kindof] = ACTIONS(1826), - [anon_sym___unused] = ACTIONS(1826), - [anon_sym__Complex] = ACTIONS(1826), - [anon_sym___complex] = ACTIONS(1826), - [anon_sym_IBOutlet] = ACTIONS(1826), - [anon_sym_IBInspectable] = ACTIONS(1826), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1826), - [anon_sym_signed] = ACTIONS(1826), - [anon_sym_unsigned] = ACTIONS(1826), - [anon_sym_long] = ACTIONS(1826), - [anon_sym_short] = ACTIONS(1826), - [sym_primitive_type] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_NS_ENUM] = ACTIONS(1826), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1826), - [anon_sym_NS_OPTIONS] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_case] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_goto] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_sizeof] = ACTIONS(1826), - [sym_number_literal] = ACTIONS(1828), - [anon_sym_L_SQUOTE] = ACTIONS(1828), - [anon_sym_u_SQUOTE] = ACTIONS(1828), - [anon_sym_U_SQUOTE] = ACTIONS(1828), - [anon_sym_u8_SQUOTE] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_L_DQUOTE] = ACTIONS(1828), - [anon_sym_u_DQUOTE] = ACTIONS(1828), - [anon_sym_U_DQUOTE] = ACTIONS(1828), - [anon_sym_u8_DQUOTE] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym_true] = ACTIONS(1826), - [sym_false] = ACTIONS(1826), - [sym_null] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1828), - [anon_sym_ATimport] = ACTIONS(1828), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1826), - [anon_sym_ATcompatibility_alias] = ACTIONS(1828), - [anon_sym_ATprotocol] = ACTIONS(1828), - [anon_sym_ATclass] = ACTIONS(1828), - [anon_sym_ATinterface] = ACTIONS(1828), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1826), - [sym_method_attribute_specifier] = ACTIONS(1826), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1826), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE] = ACTIONS(1826), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_API_AVAILABLE] = ACTIONS(1826), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_API_DEPRECATED] = ACTIONS(1826), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1826), - [anon_sym___deprecated_msg] = ACTIONS(1826), - [anon_sym___deprecated_enum_msg] = ACTIONS(1826), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1826), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1826), - [anon_sym_ATimplementation] = ACTIONS(1828), - [anon_sym_typeof] = ACTIONS(1826), - [anon_sym___typeof] = ACTIONS(1826), - [anon_sym___typeof__] = ACTIONS(1826), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_nil] = ACTIONS(1826), - [sym_id] = ACTIONS(1826), - [sym_instancetype] = ACTIONS(1826), - [sym_Class] = ACTIONS(1826), - [sym_SEL] = ACTIONS(1826), - [sym_IMP] = ACTIONS(1826), - [sym_BOOL] = ACTIONS(1826), - [sym_auto] = ACTIONS(1826), - [anon_sym_ATautoreleasepool] = ACTIONS(1828), - [anon_sym_ATsynchronized] = ACTIONS(1828), - [anon_sym_ATtry] = ACTIONS(1828), - [anon_sym_ATthrow] = ACTIONS(1828), - [anon_sym_ATselector] = ACTIONS(1828), - [anon_sym_ATencode] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1826), - [sym_YES] = ACTIONS(1826), - [sym_NO] = ACTIONS(1826), - [anon_sym___builtin_available] = ACTIONS(1826), - [anon_sym_ATavailable] = ACTIONS(1828), - [anon_sym_va_arg] = ACTIONS(1826), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [630] = { - [sym_identifier] = ACTIONS(1826), - [aux_sym_preproc_include_token1] = ACTIONS(1828), - [aux_sym_preproc_def_token1] = ACTIONS(1828), - [aux_sym_preproc_if_token1] = ACTIONS(1826), - [aux_sym_preproc_if_token2] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1826), - [aux_sym_preproc_else_token1] = ACTIONS(1826), - [aux_sym_preproc_elif_token1] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym___attribute] = ACTIONS(1826), - [anon_sym___attribute__] = ACTIONS(1826), - [anon_sym___declspec] = ACTIONS(1826), - [anon_sym___cdecl] = ACTIONS(1826), - [anon_sym___clrcall] = ACTIONS(1826), - [anon_sym___stdcall] = ACTIONS(1826), - [anon_sym___fastcall] = ACTIONS(1826), - [anon_sym___thiscall] = ACTIONS(1826), - [anon_sym___vectorcall] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_auto] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_volatile] = ACTIONS(1826), - [anon_sym_restrict] = ACTIONS(1826), - [anon_sym__Atomic] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_out] = ACTIONS(1826), - [anon_sym_inout] = ACTIONS(1826), - [anon_sym_bycopy] = ACTIONS(1826), - [anon_sym_byref] = ACTIONS(1826), - [anon_sym_oneway] = ACTIONS(1826), - [anon_sym__Nullable] = ACTIONS(1826), - [anon_sym__Nonnull] = ACTIONS(1826), - [anon_sym__Nullable_result] = ACTIONS(1826), - [anon_sym__Null_unspecified] = ACTIONS(1826), - [anon_sym___autoreleasing] = ACTIONS(1826), - [anon_sym___nullable] = ACTIONS(1826), - [anon_sym___nonnull] = ACTIONS(1826), - [anon_sym___strong] = ACTIONS(1826), - [anon_sym___weak] = ACTIONS(1826), - [anon_sym___bridge] = ACTIONS(1826), - [anon_sym___bridge_transfer] = ACTIONS(1826), - [anon_sym___bridge_retained] = ACTIONS(1826), - [anon_sym___unsafe_unretained] = ACTIONS(1826), - [anon_sym___block] = ACTIONS(1826), - [anon_sym___kindof] = ACTIONS(1826), - [anon_sym___unused] = ACTIONS(1826), - [anon_sym__Complex] = ACTIONS(1826), - [anon_sym___complex] = ACTIONS(1826), - [anon_sym_IBOutlet] = ACTIONS(1826), - [anon_sym_IBInspectable] = ACTIONS(1826), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1826), - [anon_sym_signed] = ACTIONS(1826), - [anon_sym_unsigned] = ACTIONS(1826), - [anon_sym_long] = ACTIONS(1826), - [anon_sym_short] = ACTIONS(1826), - [sym_primitive_type] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_NS_ENUM] = ACTIONS(1826), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1826), - [anon_sym_NS_OPTIONS] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_case] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_goto] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_sizeof] = ACTIONS(1826), - [sym_number_literal] = ACTIONS(1828), - [anon_sym_L_SQUOTE] = ACTIONS(1828), - [anon_sym_u_SQUOTE] = ACTIONS(1828), - [anon_sym_U_SQUOTE] = ACTIONS(1828), - [anon_sym_u8_SQUOTE] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_L_DQUOTE] = ACTIONS(1828), - [anon_sym_u_DQUOTE] = ACTIONS(1828), - [anon_sym_U_DQUOTE] = ACTIONS(1828), - [anon_sym_u8_DQUOTE] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym_true] = ACTIONS(1826), - [sym_false] = ACTIONS(1826), - [sym_null] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1828), - [anon_sym_ATimport] = ACTIONS(1828), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1826), - [anon_sym_ATcompatibility_alias] = ACTIONS(1828), - [anon_sym_ATprotocol] = ACTIONS(1828), - [anon_sym_ATclass] = ACTIONS(1828), - [anon_sym_ATinterface] = ACTIONS(1828), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1826), - [sym_method_attribute_specifier] = ACTIONS(1826), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1826), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE] = ACTIONS(1826), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_API_AVAILABLE] = ACTIONS(1826), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_API_DEPRECATED] = ACTIONS(1826), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1826), - [anon_sym___deprecated_msg] = ACTIONS(1826), - [anon_sym___deprecated_enum_msg] = ACTIONS(1826), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1826), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1826), - [anon_sym_ATimplementation] = ACTIONS(1828), - [anon_sym_typeof] = ACTIONS(1826), - [anon_sym___typeof] = ACTIONS(1826), - [anon_sym___typeof__] = ACTIONS(1826), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_nil] = ACTIONS(1826), - [sym_id] = ACTIONS(1826), - [sym_instancetype] = ACTIONS(1826), - [sym_Class] = ACTIONS(1826), - [sym_SEL] = ACTIONS(1826), - [sym_IMP] = ACTIONS(1826), - [sym_BOOL] = ACTIONS(1826), - [sym_auto] = ACTIONS(1826), - [anon_sym_ATautoreleasepool] = ACTIONS(1828), - [anon_sym_ATsynchronized] = ACTIONS(1828), - [anon_sym_ATtry] = ACTIONS(1828), - [anon_sym_ATthrow] = ACTIONS(1828), - [anon_sym_ATselector] = ACTIONS(1828), - [anon_sym_ATencode] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1826), - [sym_YES] = ACTIONS(1826), - [sym_NO] = ACTIONS(1826), - [anon_sym___builtin_available] = ACTIONS(1826), - [anon_sym_ATavailable] = ACTIONS(1828), - [anon_sym_va_arg] = ACTIONS(1826), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [631] = { - [sym_identifier] = ACTIONS(1826), - [aux_sym_preproc_include_token1] = ACTIONS(1828), - [aux_sym_preproc_def_token1] = ACTIONS(1828), - [aux_sym_preproc_if_token1] = ACTIONS(1826), - [aux_sym_preproc_if_token2] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1826), - [aux_sym_preproc_else_token1] = ACTIONS(1826), - [aux_sym_preproc_elif_token1] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym___attribute] = ACTIONS(1826), - [anon_sym___attribute__] = ACTIONS(1826), - [anon_sym___declspec] = ACTIONS(1826), - [anon_sym___cdecl] = ACTIONS(1826), - [anon_sym___clrcall] = ACTIONS(1826), - [anon_sym___stdcall] = ACTIONS(1826), - [anon_sym___fastcall] = ACTIONS(1826), - [anon_sym___thiscall] = ACTIONS(1826), - [anon_sym___vectorcall] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_auto] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_volatile] = ACTIONS(1826), - [anon_sym_restrict] = ACTIONS(1826), - [anon_sym__Atomic] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_out] = ACTIONS(1826), - [anon_sym_inout] = ACTIONS(1826), - [anon_sym_bycopy] = ACTIONS(1826), - [anon_sym_byref] = ACTIONS(1826), - [anon_sym_oneway] = ACTIONS(1826), - [anon_sym__Nullable] = ACTIONS(1826), - [anon_sym__Nonnull] = ACTIONS(1826), - [anon_sym__Nullable_result] = ACTIONS(1826), - [anon_sym__Null_unspecified] = ACTIONS(1826), - [anon_sym___autoreleasing] = ACTIONS(1826), - [anon_sym___nullable] = ACTIONS(1826), - [anon_sym___nonnull] = ACTIONS(1826), - [anon_sym___strong] = ACTIONS(1826), - [anon_sym___weak] = ACTIONS(1826), - [anon_sym___bridge] = ACTIONS(1826), - [anon_sym___bridge_transfer] = ACTIONS(1826), - [anon_sym___bridge_retained] = ACTIONS(1826), - [anon_sym___unsafe_unretained] = ACTIONS(1826), - [anon_sym___block] = ACTIONS(1826), - [anon_sym___kindof] = ACTIONS(1826), - [anon_sym___unused] = ACTIONS(1826), - [anon_sym__Complex] = ACTIONS(1826), - [anon_sym___complex] = ACTIONS(1826), - [anon_sym_IBOutlet] = ACTIONS(1826), - [anon_sym_IBInspectable] = ACTIONS(1826), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1826), - [anon_sym_signed] = ACTIONS(1826), - [anon_sym_unsigned] = ACTIONS(1826), - [anon_sym_long] = ACTIONS(1826), - [anon_sym_short] = ACTIONS(1826), - [sym_primitive_type] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_NS_ENUM] = ACTIONS(1826), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1826), - [anon_sym_NS_OPTIONS] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_case] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_goto] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_sizeof] = ACTIONS(1826), - [sym_number_literal] = ACTIONS(1828), - [anon_sym_L_SQUOTE] = ACTIONS(1828), - [anon_sym_u_SQUOTE] = ACTIONS(1828), - [anon_sym_U_SQUOTE] = ACTIONS(1828), - [anon_sym_u8_SQUOTE] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_L_DQUOTE] = ACTIONS(1828), - [anon_sym_u_DQUOTE] = ACTIONS(1828), - [anon_sym_U_DQUOTE] = ACTIONS(1828), - [anon_sym_u8_DQUOTE] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym_true] = ACTIONS(1826), - [sym_false] = ACTIONS(1826), - [sym_null] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1828), - [anon_sym_ATimport] = ACTIONS(1828), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1826), - [anon_sym_ATcompatibility_alias] = ACTIONS(1828), - [anon_sym_ATprotocol] = ACTIONS(1828), - [anon_sym_ATclass] = ACTIONS(1828), - [anon_sym_ATinterface] = ACTIONS(1828), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1826), - [sym_method_attribute_specifier] = ACTIONS(1826), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1826), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE] = ACTIONS(1826), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_API_AVAILABLE] = ACTIONS(1826), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_API_DEPRECATED] = ACTIONS(1826), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1826), - [anon_sym___deprecated_msg] = ACTIONS(1826), - [anon_sym___deprecated_enum_msg] = ACTIONS(1826), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1826), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1826), - [anon_sym_ATimplementation] = ACTIONS(1828), - [anon_sym_typeof] = ACTIONS(1826), - [anon_sym___typeof] = ACTIONS(1826), - [anon_sym___typeof__] = ACTIONS(1826), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_nil] = ACTIONS(1826), - [sym_id] = ACTIONS(1826), - [sym_instancetype] = ACTIONS(1826), - [sym_Class] = ACTIONS(1826), - [sym_SEL] = ACTIONS(1826), - [sym_IMP] = ACTIONS(1826), - [sym_BOOL] = ACTIONS(1826), - [sym_auto] = ACTIONS(1826), - [anon_sym_ATautoreleasepool] = ACTIONS(1828), - [anon_sym_ATsynchronized] = ACTIONS(1828), - [anon_sym_ATtry] = ACTIONS(1828), - [anon_sym_ATthrow] = ACTIONS(1828), - [anon_sym_ATselector] = ACTIONS(1828), - [anon_sym_ATencode] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1826), - [sym_YES] = ACTIONS(1826), - [sym_NO] = ACTIONS(1826), - [anon_sym___builtin_available] = ACTIONS(1826), - [anon_sym_ATavailable] = ACTIONS(1828), - [anon_sym_va_arg] = ACTIONS(1826), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [632] = { - [sym_identifier] = ACTIONS(1822), - [aux_sym_preproc_include_token1] = ACTIONS(1824), - [aux_sym_preproc_def_token1] = ACTIONS(1824), - [aux_sym_preproc_if_token1] = ACTIONS(1822), - [aux_sym_preproc_if_token2] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1822), - [aux_sym_preproc_else_token1] = ACTIONS(1822), - [aux_sym_preproc_elif_token1] = ACTIONS(1822), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym___attribute] = ACTIONS(1822), - [anon_sym___attribute__] = ACTIONS(1822), - [anon_sym___declspec] = ACTIONS(1822), - [anon_sym___cdecl] = ACTIONS(1822), - [anon_sym___clrcall] = ACTIONS(1822), - [anon_sym___stdcall] = ACTIONS(1822), - [anon_sym___fastcall] = ACTIONS(1822), - [anon_sym___thiscall] = ACTIONS(1822), - [anon_sym___vectorcall] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [anon_sym__Atomic] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_out] = ACTIONS(1822), - [anon_sym_inout] = ACTIONS(1822), - [anon_sym_bycopy] = ACTIONS(1822), - [anon_sym_byref] = ACTIONS(1822), - [anon_sym_oneway] = ACTIONS(1822), - [anon_sym__Nullable] = ACTIONS(1822), - [anon_sym__Nonnull] = ACTIONS(1822), - [anon_sym__Nullable_result] = ACTIONS(1822), - [anon_sym__Null_unspecified] = ACTIONS(1822), - [anon_sym___autoreleasing] = ACTIONS(1822), - [anon_sym___nullable] = ACTIONS(1822), - [anon_sym___nonnull] = ACTIONS(1822), - [anon_sym___strong] = ACTIONS(1822), - [anon_sym___weak] = ACTIONS(1822), - [anon_sym___bridge] = ACTIONS(1822), - [anon_sym___bridge_transfer] = ACTIONS(1822), - [anon_sym___bridge_retained] = ACTIONS(1822), - [anon_sym___unsafe_unretained] = ACTIONS(1822), - [anon_sym___block] = ACTIONS(1822), - [anon_sym___kindof] = ACTIONS(1822), - [anon_sym___unused] = ACTIONS(1822), - [anon_sym__Complex] = ACTIONS(1822), - [anon_sym___complex] = ACTIONS(1822), - [anon_sym_IBOutlet] = ACTIONS(1822), - [anon_sym_IBInspectable] = ACTIONS(1822), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_NS_ENUM] = ACTIONS(1822), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1822), - [anon_sym_NS_OPTIONS] = ACTIONS(1822), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_case] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_goto] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1822), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_L_SQUOTE] = ACTIONS(1824), - [anon_sym_u_SQUOTE] = ACTIONS(1824), - [anon_sym_U_SQUOTE] = ACTIONS(1824), - [anon_sym_u8_SQUOTE] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_L_DQUOTE] = ACTIONS(1824), - [anon_sym_u_DQUOTE] = ACTIONS(1824), - [anon_sym_U_DQUOTE] = ACTIONS(1824), - [anon_sym_u8_DQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym_true] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1824), - [anon_sym_ATimport] = ACTIONS(1824), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1822), - [anon_sym_ATcompatibility_alias] = ACTIONS(1824), - [anon_sym_ATprotocol] = ACTIONS(1824), - [anon_sym_ATclass] = ACTIONS(1824), - [anon_sym_ATinterface] = ACTIONS(1824), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1822), - [sym_method_attribute_specifier] = ACTIONS(1822), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1822), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE] = ACTIONS(1822), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_API_AVAILABLE] = ACTIONS(1822), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_API_DEPRECATED] = ACTIONS(1822), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1822), - [anon_sym___deprecated_msg] = ACTIONS(1822), - [anon_sym___deprecated_enum_msg] = ACTIONS(1822), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1822), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1822), - [anon_sym_ATimplementation] = ACTIONS(1824), - [anon_sym_typeof] = ACTIONS(1822), - [anon_sym___typeof] = ACTIONS(1822), - [anon_sym___typeof__] = ACTIONS(1822), - [sym_self] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_nil] = ACTIONS(1822), - [sym_id] = ACTIONS(1822), - [sym_instancetype] = ACTIONS(1822), - [sym_Class] = ACTIONS(1822), - [sym_SEL] = ACTIONS(1822), - [sym_IMP] = ACTIONS(1822), - [sym_BOOL] = ACTIONS(1822), - [sym_auto] = ACTIONS(1822), - [anon_sym_ATautoreleasepool] = ACTIONS(1824), - [anon_sym_ATsynchronized] = ACTIONS(1824), - [anon_sym_ATtry] = ACTIONS(1824), - [anon_sym_ATthrow] = ACTIONS(1824), - [anon_sym_ATselector] = ACTIONS(1824), - [anon_sym_ATencode] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1822), - [sym_YES] = ACTIONS(1822), - [sym_NO] = ACTIONS(1822), - [anon_sym___builtin_available] = ACTIONS(1822), - [anon_sym_ATavailable] = ACTIONS(1824), - [anon_sym_va_arg] = ACTIONS(1822), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [633] = { - [sym_identifier] = ACTIONS(1826), - [aux_sym_preproc_include_token1] = ACTIONS(1828), - [aux_sym_preproc_def_token1] = ACTIONS(1828), - [aux_sym_preproc_if_token1] = ACTIONS(1826), - [aux_sym_preproc_if_token2] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1826), - [aux_sym_preproc_else_token1] = ACTIONS(1826), - [aux_sym_preproc_elif_token1] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym___attribute] = ACTIONS(1826), - [anon_sym___attribute__] = ACTIONS(1826), - [anon_sym___declspec] = ACTIONS(1826), - [anon_sym___cdecl] = ACTIONS(1826), - [anon_sym___clrcall] = ACTIONS(1826), - [anon_sym___stdcall] = ACTIONS(1826), - [anon_sym___fastcall] = ACTIONS(1826), - [anon_sym___thiscall] = ACTIONS(1826), - [anon_sym___vectorcall] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_auto] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_volatile] = ACTIONS(1826), - [anon_sym_restrict] = ACTIONS(1826), - [anon_sym__Atomic] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_out] = ACTIONS(1826), - [anon_sym_inout] = ACTIONS(1826), - [anon_sym_bycopy] = ACTIONS(1826), - [anon_sym_byref] = ACTIONS(1826), - [anon_sym_oneway] = ACTIONS(1826), - [anon_sym__Nullable] = ACTIONS(1826), - [anon_sym__Nonnull] = ACTIONS(1826), - [anon_sym__Nullable_result] = ACTIONS(1826), - [anon_sym__Null_unspecified] = ACTIONS(1826), - [anon_sym___autoreleasing] = ACTIONS(1826), - [anon_sym___nullable] = ACTIONS(1826), - [anon_sym___nonnull] = ACTIONS(1826), - [anon_sym___strong] = ACTIONS(1826), - [anon_sym___weak] = ACTIONS(1826), - [anon_sym___bridge] = ACTIONS(1826), - [anon_sym___bridge_transfer] = ACTIONS(1826), - [anon_sym___bridge_retained] = ACTIONS(1826), - [anon_sym___unsafe_unretained] = ACTIONS(1826), - [anon_sym___block] = ACTIONS(1826), - [anon_sym___kindof] = ACTIONS(1826), - [anon_sym___unused] = ACTIONS(1826), - [anon_sym__Complex] = ACTIONS(1826), - [anon_sym___complex] = ACTIONS(1826), - [anon_sym_IBOutlet] = ACTIONS(1826), - [anon_sym_IBInspectable] = ACTIONS(1826), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1826), - [anon_sym_signed] = ACTIONS(1826), - [anon_sym_unsigned] = ACTIONS(1826), - [anon_sym_long] = ACTIONS(1826), - [anon_sym_short] = ACTIONS(1826), - [sym_primitive_type] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_NS_ENUM] = ACTIONS(1826), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1826), - [anon_sym_NS_OPTIONS] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_case] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_goto] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_sizeof] = ACTIONS(1826), - [sym_number_literal] = ACTIONS(1828), - [anon_sym_L_SQUOTE] = ACTIONS(1828), - [anon_sym_u_SQUOTE] = ACTIONS(1828), - [anon_sym_U_SQUOTE] = ACTIONS(1828), - [anon_sym_u8_SQUOTE] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_L_DQUOTE] = ACTIONS(1828), - [anon_sym_u_DQUOTE] = ACTIONS(1828), - [anon_sym_U_DQUOTE] = ACTIONS(1828), - [anon_sym_u8_DQUOTE] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym_true] = ACTIONS(1826), - [sym_false] = ACTIONS(1826), - [sym_null] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1828), - [anon_sym_ATimport] = ACTIONS(1828), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1826), - [anon_sym_ATcompatibility_alias] = ACTIONS(1828), - [anon_sym_ATprotocol] = ACTIONS(1828), - [anon_sym_ATclass] = ACTIONS(1828), - [anon_sym_ATinterface] = ACTIONS(1828), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1826), - [sym_method_attribute_specifier] = ACTIONS(1826), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1826), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE] = ACTIONS(1826), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_API_AVAILABLE] = ACTIONS(1826), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_API_DEPRECATED] = ACTIONS(1826), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1826), - [anon_sym___deprecated_msg] = ACTIONS(1826), - [anon_sym___deprecated_enum_msg] = ACTIONS(1826), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1826), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1826), - [anon_sym_ATimplementation] = ACTIONS(1828), - [anon_sym_typeof] = ACTIONS(1826), - [anon_sym___typeof] = ACTIONS(1826), - [anon_sym___typeof__] = ACTIONS(1826), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_nil] = ACTIONS(1826), - [sym_id] = ACTIONS(1826), - [sym_instancetype] = ACTIONS(1826), - [sym_Class] = ACTIONS(1826), - [sym_SEL] = ACTIONS(1826), - [sym_IMP] = ACTIONS(1826), - [sym_BOOL] = ACTIONS(1826), - [sym_auto] = ACTIONS(1826), - [anon_sym_ATautoreleasepool] = ACTIONS(1828), - [anon_sym_ATsynchronized] = ACTIONS(1828), - [anon_sym_ATtry] = ACTIONS(1828), - [anon_sym_ATthrow] = ACTIONS(1828), - [anon_sym_ATselector] = ACTIONS(1828), - [anon_sym_ATencode] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1826), - [sym_YES] = ACTIONS(1826), - [sym_NO] = ACTIONS(1826), - [anon_sym___builtin_available] = ACTIONS(1826), - [anon_sym_ATavailable] = ACTIONS(1828), - [anon_sym_va_arg] = ACTIONS(1826), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [634] = { - [sym_identifier] = ACTIONS(1826), - [aux_sym_preproc_include_token1] = ACTIONS(1828), - [aux_sym_preproc_def_token1] = ACTIONS(1828), - [aux_sym_preproc_if_token1] = ACTIONS(1826), - [aux_sym_preproc_if_token2] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1826), - [aux_sym_preproc_else_token1] = ACTIONS(1826), - [aux_sym_preproc_elif_token1] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym___attribute] = ACTIONS(1826), - [anon_sym___attribute__] = ACTIONS(1826), - [anon_sym___declspec] = ACTIONS(1826), - [anon_sym___cdecl] = ACTIONS(1826), - [anon_sym___clrcall] = ACTIONS(1826), - [anon_sym___stdcall] = ACTIONS(1826), - [anon_sym___fastcall] = ACTIONS(1826), - [anon_sym___thiscall] = ACTIONS(1826), - [anon_sym___vectorcall] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_auto] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_volatile] = ACTIONS(1826), - [anon_sym_restrict] = ACTIONS(1826), - [anon_sym__Atomic] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_out] = ACTIONS(1826), - [anon_sym_inout] = ACTIONS(1826), - [anon_sym_bycopy] = ACTIONS(1826), - [anon_sym_byref] = ACTIONS(1826), - [anon_sym_oneway] = ACTIONS(1826), - [anon_sym__Nullable] = ACTIONS(1826), - [anon_sym__Nonnull] = ACTIONS(1826), - [anon_sym__Nullable_result] = ACTIONS(1826), - [anon_sym__Null_unspecified] = ACTIONS(1826), - [anon_sym___autoreleasing] = ACTIONS(1826), - [anon_sym___nullable] = ACTIONS(1826), - [anon_sym___nonnull] = ACTIONS(1826), - [anon_sym___strong] = ACTIONS(1826), - [anon_sym___weak] = ACTIONS(1826), - [anon_sym___bridge] = ACTIONS(1826), - [anon_sym___bridge_transfer] = ACTIONS(1826), - [anon_sym___bridge_retained] = ACTIONS(1826), - [anon_sym___unsafe_unretained] = ACTIONS(1826), - [anon_sym___block] = ACTIONS(1826), - [anon_sym___kindof] = ACTIONS(1826), - [anon_sym___unused] = ACTIONS(1826), - [anon_sym__Complex] = ACTIONS(1826), - [anon_sym___complex] = ACTIONS(1826), - [anon_sym_IBOutlet] = ACTIONS(1826), - [anon_sym_IBInspectable] = ACTIONS(1826), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1826), - [anon_sym_signed] = ACTIONS(1826), - [anon_sym_unsigned] = ACTIONS(1826), - [anon_sym_long] = ACTIONS(1826), - [anon_sym_short] = ACTIONS(1826), - [sym_primitive_type] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_NS_ENUM] = ACTIONS(1826), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1826), - [anon_sym_NS_OPTIONS] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_case] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_goto] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_sizeof] = ACTIONS(1826), - [sym_number_literal] = ACTIONS(1828), - [anon_sym_L_SQUOTE] = ACTIONS(1828), - [anon_sym_u_SQUOTE] = ACTIONS(1828), - [anon_sym_U_SQUOTE] = ACTIONS(1828), - [anon_sym_u8_SQUOTE] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_L_DQUOTE] = ACTIONS(1828), - [anon_sym_u_DQUOTE] = ACTIONS(1828), - [anon_sym_U_DQUOTE] = ACTIONS(1828), - [anon_sym_u8_DQUOTE] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym_true] = ACTIONS(1826), - [sym_false] = ACTIONS(1826), - [sym_null] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1828), - [anon_sym_ATimport] = ACTIONS(1828), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1826), - [anon_sym_ATcompatibility_alias] = ACTIONS(1828), - [anon_sym_ATprotocol] = ACTIONS(1828), - [anon_sym_ATclass] = ACTIONS(1828), - [anon_sym_ATinterface] = ACTIONS(1828), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1826), - [sym_method_attribute_specifier] = ACTIONS(1826), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1826), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE] = ACTIONS(1826), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_API_AVAILABLE] = ACTIONS(1826), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_API_DEPRECATED] = ACTIONS(1826), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1826), - [anon_sym___deprecated_msg] = ACTIONS(1826), - [anon_sym___deprecated_enum_msg] = ACTIONS(1826), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1826), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1826), - [anon_sym_ATimplementation] = ACTIONS(1828), - [anon_sym_typeof] = ACTIONS(1826), - [anon_sym___typeof] = ACTIONS(1826), - [anon_sym___typeof__] = ACTIONS(1826), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_nil] = ACTIONS(1826), - [sym_id] = ACTIONS(1826), - [sym_instancetype] = ACTIONS(1826), - [sym_Class] = ACTIONS(1826), - [sym_SEL] = ACTIONS(1826), - [sym_IMP] = ACTIONS(1826), - [sym_BOOL] = ACTIONS(1826), - [sym_auto] = ACTIONS(1826), - [anon_sym_ATautoreleasepool] = ACTIONS(1828), - [anon_sym_ATsynchronized] = ACTIONS(1828), - [anon_sym_ATtry] = ACTIONS(1828), - [anon_sym_ATthrow] = ACTIONS(1828), - [anon_sym_ATselector] = ACTIONS(1828), - [anon_sym_ATencode] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1826), - [sym_YES] = ACTIONS(1826), - [sym_NO] = ACTIONS(1826), - [anon_sym___builtin_available] = ACTIONS(1826), - [anon_sym_ATavailable] = ACTIONS(1828), - [anon_sym_va_arg] = ACTIONS(1826), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [635] = { - [sym_identifier] = ACTIONS(1826), - [aux_sym_preproc_include_token1] = ACTIONS(1828), - [aux_sym_preproc_def_token1] = ACTIONS(1828), - [aux_sym_preproc_if_token1] = ACTIONS(1826), - [aux_sym_preproc_if_token2] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1826), - [aux_sym_preproc_else_token1] = ACTIONS(1826), - [aux_sym_preproc_elif_token1] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym___attribute] = ACTIONS(1826), - [anon_sym___attribute__] = ACTIONS(1826), - [anon_sym___declspec] = ACTIONS(1826), - [anon_sym___cdecl] = ACTIONS(1826), - [anon_sym___clrcall] = ACTIONS(1826), - [anon_sym___stdcall] = ACTIONS(1826), - [anon_sym___fastcall] = ACTIONS(1826), - [anon_sym___thiscall] = ACTIONS(1826), - [anon_sym___vectorcall] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_auto] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_volatile] = ACTIONS(1826), - [anon_sym_restrict] = ACTIONS(1826), - [anon_sym__Atomic] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_out] = ACTIONS(1826), - [anon_sym_inout] = ACTIONS(1826), - [anon_sym_bycopy] = ACTIONS(1826), - [anon_sym_byref] = ACTIONS(1826), - [anon_sym_oneway] = ACTIONS(1826), - [anon_sym__Nullable] = ACTIONS(1826), - [anon_sym__Nonnull] = ACTIONS(1826), - [anon_sym__Nullable_result] = ACTIONS(1826), - [anon_sym__Null_unspecified] = ACTIONS(1826), - [anon_sym___autoreleasing] = ACTIONS(1826), - [anon_sym___nullable] = ACTIONS(1826), - [anon_sym___nonnull] = ACTIONS(1826), - [anon_sym___strong] = ACTIONS(1826), - [anon_sym___weak] = ACTIONS(1826), - [anon_sym___bridge] = ACTIONS(1826), - [anon_sym___bridge_transfer] = ACTIONS(1826), - [anon_sym___bridge_retained] = ACTIONS(1826), - [anon_sym___unsafe_unretained] = ACTIONS(1826), - [anon_sym___block] = ACTIONS(1826), - [anon_sym___kindof] = ACTIONS(1826), - [anon_sym___unused] = ACTIONS(1826), - [anon_sym__Complex] = ACTIONS(1826), - [anon_sym___complex] = ACTIONS(1826), - [anon_sym_IBOutlet] = ACTIONS(1826), - [anon_sym_IBInspectable] = ACTIONS(1826), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1826), - [anon_sym_signed] = ACTIONS(1826), - [anon_sym_unsigned] = ACTIONS(1826), - [anon_sym_long] = ACTIONS(1826), - [anon_sym_short] = ACTIONS(1826), - [sym_primitive_type] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_NS_ENUM] = ACTIONS(1826), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1826), - [anon_sym_NS_OPTIONS] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_case] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_goto] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_sizeof] = ACTIONS(1826), - [sym_number_literal] = ACTIONS(1828), - [anon_sym_L_SQUOTE] = ACTIONS(1828), - [anon_sym_u_SQUOTE] = ACTIONS(1828), - [anon_sym_U_SQUOTE] = ACTIONS(1828), - [anon_sym_u8_SQUOTE] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_L_DQUOTE] = ACTIONS(1828), - [anon_sym_u_DQUOTE] = ACTIONS(1828), - [anon_sym_U_DQUOTE] = ACTIONS(1828), - [anon_sym_u8_DQUOTE] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym_true] = ACTIONS(1826), - [sym_false] = ACTIONS(1826), - [sym_null] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1828), - [anon_sym_ATimport] = ACTIONS(1828), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1826), - [anon_sym_ATcompatibility_alias] = ACTIONS(1828), - [anon_sym_ATprotocol] = ACTIONS(1828), - [anon_sym_ATclass] = ACTIONS(1828), - [anon_sym_ATinterface] = ACTIONS(1828), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1826), - [sym_method_attribute_specifier] = ACTIONS(1826), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1826), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE] = ACTIONS(1826), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_API_AVAILABLE] = ACTIONS(1826), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_API_DEPRECATED] = ACTIONS(1826), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1826), - [anon_sym___deprecated_msg] = ACTIONS(1826), - [anon_sym___deprecated_enum_msg] = ACTIONS(1826), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1826), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1826), - [anon_sym_ATimplementation] = ACTIONS(1828), - [anon_sym_typeof] = ACTIONS(1826), - [anon_sym___typeof] = ACTIONS(1826), - [anon_sym___typeof__] = ACTIONS(1826), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_nil] = ACTIONS(1826), - [sym_id] = ACTIONS(1826), - [sym_instancetype] = ACTIONS(1826), - [sym_Class] = ACTIONS(1826), - [sym_SEL] = ACTIONS(1826), - [sym_IMP] = ACTIONS(1826), - [sym_BOOL] = ACTIONS(1826), - [sym_auto] = ACTIONS(1826), - [anon_sym_ATautoreleasepool] = ACTIONS(1828), - [anon_sym_ATsynchronized] = ACTIONS(1828), - [anon_sym_ATtry] = ACTIONS(1828), - [anon_sym_ATthrow] = ACTIONS(1828), - [anon_sym_ATselector] = ACTIONS(1828), - [anon_sym_ATencode] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1826), - [sym_YES] = ACTIONS(1826), - [sym_NO] = ACTIONS(1826), - [anon_sym___builtin_available] = ACTIONS(1826), - [anon_sym_ATavailable] = ACTIONS(1828), - [anon_sym_va_arg] = ACTIONS(1826), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [636] = { - [sym_identifier] = ACTIONS(1830), - [aux_sym_preproc_include_token1] = ACTIONS(1832), - [aux_sym_preproc_def_token1] = ACTIONS(1832), - [aux_sym_preproc_if_token1] = ACTIONS(1830), - [aux_sym_preproc_if_token2] = ACTIONS(1830), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1830), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1830), - [aux_sym_preproc_else_token1] = ACTIONS(1830), - [aux_sym_preproc_elif_token1] = ACTIONS(1830), - [anon_sym_LPAREN2] = ACTIONS(1832), - [anon_sym_BANG] = ACTIONS(1832), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1832), - [anon_sym_CARET] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_typedef] = ACTIONS(1830), - [anon_sym_extern] = ACTIONS(1830), - [anon_sym___attribute] = ACTIONS(1830), - [anon_sym___attribute__] = ACTIONS(1830), - [anon_sym___declspec] = ACTIONS(1830), - [anon_sym___cdecl] = ACTIONS(1830), - [anon_sym___clrcall] = ACTIONS(1830), - [anon_sym___stdcall] = ACTIONS(1830), - [anon_sym___fastcall] = ACTIONS(1830), - [anon_sym___thiscall] = ACTIONS(1830), - [anon_sym___vectorcall] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1832), - [anon_sym_static] = ACTIONS(1830), - [anon_sym_auto] = ACTIONS(1830), - [anon_sym_register] = ACTIONS(1830), - [anon_sym_inline] = ACTIONS(1830), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1830), - [anon_sym_const] = ACTIONS(1830), - [anon_sym_volatile] = ACTIONS(1830), - [anon_sym_restrict] = ACTIONS(1830), - [anon_sym__Atomic] = ACTIONS(1830), - [anon_sym_in] = ACTIONS(1830), - [anon_sym_out] = ACTIONS(1830), - [anon_sym_inout] = ACTIONS(1830), - [anon_sym_bycopy] = ACTIONS(1830), - [anon_sym_byref] = ACTIONS(1830), - [anon_sym_oneway] = ACTIONS(1830), - [anon_sym__Nullable] = ACTIONS(1830), - [anon_sym__Nonnull] = ACTIONS(1830), - [anon_sym__Nullable_result] = ACTIONS(1830), - [anon_sym__Null_unspecified] = ACTIONS(1830), - [anon_sym___autoreleasing] = ACTIONS(1830), - [anon_sym___nullable] = ACTIONS(1830), - [anon_sym___nonnull] = ACTIONS(1830), - [anon_sym___strong] = ACTIONS(1830), - [anon_sym___weak] = ACTIONS(1830), - [anon_sym___bridge] = ACTIONS(1830), - [anon_sym___bridge_transfer] = ACTIONS(1830), - [anon_sym___bridge_retained] = ACTIONS(1830), - [anon_sym___unsafe_unretained] = ACTIONS(1830), - [anon_sym___block] = ACTIONS(1830), - [anon_sym___kindof] = ACTIONS(1830), - [anon_sym___unused] = ACTIONS(1830), - [anon_sym__Complex] = ACTIONS(1830), - [anon_sym___complex] = ACTIONS(1830), - [anon_sym_IBOutlet] = ACTIONS(1830), - [anon_sym_IBInspectable] = ACTIONS(1830), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1830), - [anon_sym_signed] = ACTIONS(1830), - [anon_sym_unsigned] = ACTIONS(1830), - [anon_sym_long] = ACTIONS(1830), - [anon_sym_short] = ACTIONS(1830), - [sym_primitive_type] = ACTIONS(1830), - [anon_sym_enum] = ACTIONS(1830), - [anon_sym_NS_ENUM] = ACTIONS(1830), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1830), - [anon_sym_NS_OPTIONS] = ACTIONS(1830), - [anon_sym_struct] = ACTIONS(1830), - [anon_sym_union] = ACTIONS(1830), - [anon_sym_if] = ACTIONS(1830), - [anon_sym_switch] = ACTIONS(1830), - [anon_sym_case] = ACTIONS(1830), - [anon_sym_default] = ACTIONS(1830), - [anon_sym_while] = ACTIONS(1830), - [anon_sym_do] = ACTIONS(1830), - [anon_sym_for] = ACTIONS(1830), - [anon_sym_return] = ACTIONS(1830), - [anon_sym_break] = ACTIONS(1830), - [anon_sym_continue] = ACTIONS(1830), - [anon_sym_goto] = ACTIONS(1830), - [anon_sym_DASH_DASH] = ACTIONS(1832), - [anon_sym_PLUS_PLUS] = ACTIONS(1832), - [anon_sym_sizeof] = ACTIONS(1830), - [sym_number_literal] = ACTIONS(1832), - [anon_sym_L_SQUOTE] = ACTIONS(1832), - [anon_sym_u_SQUOTE] = ACTIONS(1832), - [anon_sym_U_SQUOTE] = ACTIONS(1832), - [anon_sym_u8_SQUOTE] = ACTIONS(1832), - [anon_sym_SQUOTE] = ACTIONS(1832), - [anon_sym_L_DQUOTE] = ACTIONS(1832), - [anon_sym_u_DQUOTE] = ACTIONS(1832), - [anon_sym_U_DQUOTE] = ACTIONS(1832), - [anon_sym_u8_DQUOTE] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [sym_true] = ACTIONS(1830), - [sym_false] = ACTIONS(1830), - [sym_null] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1832), - [anon_sym_ATimport] = ACTIONS(1832), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1830), - [anon_sym_ATcompatibility_alias] = ACTIONS(1832), - [anon_sym_ATprotocol] = ACTIONS(1832), - [anon_sym_ATclass] = ACTIONS(1832), - [anon_sym_ATinterface] = ACTIONS(1832), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1830), - [sym_method_attribute_specifier] = ACTIONS(1830), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1830), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1830), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1830), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1830), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1830), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1830), - [anon_sym_NS_AVAILABLE] = ACTIONS(1830), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1830), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1830), - [anon_sym_API_AVAILABLE] = ACTIONS(1830), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1830), - [anon_sym_API_DEPRECATED] = ACTIONS(1830), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1830), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1830), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1830), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1830), - [anon_sym___deprecated_msg] = ACTIONS(1830), - [anon_sym___deprecated_enum_msg] = ACTIONS(1830), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1830), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1830), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1830), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1830), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1830), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1830), - [anon_sym_ATimplementation] = ACTIONS(1832), - [anon_sym_typeof] = ACTIONS(1830), - [anon_sym___typeof] = ACTIONS(1830), - [anon_sym___typeof__] = ACTIONS(1830), - [sym_self] = ACTIONS(1830), - [sym_super] = ACTIONS(1830), - [sym_nil] = ACTIONS(1830), - [sym_id] = ACTIONS(1830), - [sym_instancetype] = ACTIONS(1830), - [sym_Class] = ACTIONS(1830), - [sym_SEL] = ACTIONS(1830), - [sym_IMP] = ACTIONS(1830), - [sym_BOOL] = ACTIONS(1830), - [sym_auto] = ACTIONS(1830), - [anon_sym_ATautoreleasepool] = ACTIONS(1832), - [anon_sym_ATsynchronized] = ACTIONS(1832), - [anon_sym_ATtry] = ACTIONS(1832), - [anon_sym_ATthrow] = ACTIONS(1832), - [anon_sym_ATselector] = ACTIONS(1832), - [anon_sym_ATencode] = ACTIONS(1832), - [anon_sym_AT] = ACTIONS(1830), - [sym_YES] = ACTIONS(1830), - [sym_NO] = ACTIONS(1830), - [anon_sym___builtin_available] = ACTIONS(1830), - [anon_sym_ATavailable] = ACTIONS(1832), - [anon_sym_va_arg] = ACTIONS(1830), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [637] = { - [sym_identifier] = ACTIONS(1834), - [aux_sym_preproc_include_token1] = ACTIONS(1836), - [aux_sym_preproc_def_token1] = ACTIONS(1836), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1834), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1834), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1834), - [aux_sym_preproc_else_token1] = ACTIONS(1834), - [aux_sym_preproc_elif_token1] = ACTIONS(1834), - [anon_sym_LPAREN2] = ACTIONS(1836), - [anon_sym_BANG] = ACTIONS(1836), - [anon_sym_TILDE] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1836), - [anon_sym_CARET] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1836), - [anon_sym_typedef] = ACTIONS(1834), - [anon_sym_extern] = ACTIONS(1834), - [anon_sym___attribute] = ACTIONS(1834), - [anon_sym___attribute__] = ACTIONS(1834), - [anon_sym___declspec] = ACTIONS(1834), - [anon_sym___cdecl] = ACTIONS(1834), - [anon_sym___clrcall] = ACTIONS(1834), - [anon_sym___stdcall] = ACTIONS(1834), - [anon_sym___fastcall] = ACTIONS(1834), - [anon_sym___thiscall] = ACTIONS(1834), - [anon_sym___vectorcall] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LBRACK] = ACTIONS(1836), - [anon_sym_static] = ACTIONS(1834), - [anon_sym_auto] = ACTIONS(1834), - [anon_sym_register] = ACTIONS(1834), - [anon_sym_inline] = ACTIONS(1834), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1834), - [anon_sym_const] = ACTIONS(1834), - [anon_sym_volatile] = ACTIONS(1834), - [anon_sym_restrict] = ACTIONS(1834), - [anon_sym__Atomic] = ACTIONS(1834), - [anon_sym_in] = ACTIONS(1834), - [anon_sym_out] = ACTIONS(1834), - [anon_sym_inout] = ACTIONS(1834), - [anon_sym_bycopy] = ACTIONS(1834), - [anon_sym_byref] = ACTIONS(1834), - [anon_sym_oneway] = ACTIONS(1834), - [anon_sym__Nullable] = ACTIONS(1834), - [anon_sym__Nonnull] = ACTIONS(1834), - [anon_sym__Nullable_result] = ACTIONS(1834), - [anon_sym__Null_unspecified] = ACTIONS(1834), - [anon_sym___autoreleasing] = ACTIONS(1834), - [anon_sym___nullable] = ACTIONS(1834), - [anon_sym___nonnull] = ACTIONS(1834), - [anon_sym___strong] = ACTIONS(1834), - [anon_sym___weak] = ACTIONS(1834), - [anon_sym___bridge] = ACTIONS(1834), - [anon_sym___bridge_transfer] = ACTIONS(1834), - [anon_sym___bridge_retained] = ACTIONS(1834), - [anon_sym___unsafe_unretained] = ACTIONS(1834), - [anon_sym___block] = ACTIONS(1834), - [anon_sym___kindof] = ACTIONS(1834), - [anon_sym___unused] = ACTIONS(1834), - [anon_sym__Complex] = ACTIONS(1834), - [anon_sym___complex] = ACTIONS(1834), - [anon_sym_IBOutlet] = ACTIONS(1834), - [anon_sym_IBInspectable] = ACTIONS(1834), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1834), - [anon_sym_signed] = ACTIONS(1834), - [anon_sym_unsigned] = ACTIONS(1834), - [anon_sym_long] = ACTIONS(1834), - [anon_sym_short] = ACTIONS(1834), - [sym_primitive_type] = ACTIONS(1834), - [anon_sym_enum] = ACTIONS(1834), - [anon_sym_NS_ENUM] = ACTIONS(1834), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1834), - [anon_sym_NS_OPTIONS] = ACTIONS(1834), - [anon_sym_struct] = ACTIONS(1834), - [anon_sym_union] = ACTIONS(1834), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_switch] = ACTIONS(1834), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1834), - [anon_sym_while] = ACTIONS(1834), - [anon_sym_do] = ACTIONS(1834), - [anon_sym_for] = ACTIONS(1834), - [anon_sym_return] = ACTIONS(1834), - [anon_sym_break] = ACTIONS(1834), - [anon_sym_continue] = ACTIONS(1834), - [anon_sym_goto] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1836), - [anon_sym_u_SQUOTE] = ACTIONS(1836), - [anon_sym_U_SQUOTE] = ACTIONS(1836), - [anon_sym_u8_SQUOTE] = ACTIONS(1836), - [anon_sym_SQUOTE] = ACTIONS(1836), - [anon_sym_L_DQUOTE] = ACTIONS(1836), - [anon_sym_u_DQUOTE] = ACTIONS(1836), - [anon_sym_U_DQUOTE] = ACTIONS(1836), - [anon_sym_u8_DQUOTE] = ACTIONS(1836), - [anon_sym_DQUOTE] = ACTIONS(1836), - [sym_true] = ACTIONS(1834), - [sym_false] = ACTIONS(1834), - [sym_null] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1836), - [anon_sym_ATimport] = ACTIONS(1836), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1834), - [anon_sym_ATcompatibility_alias] = ACTIONS(1836), - [anon_sym_ATprotocol] = ACTIONS(1836), - [anon_sym_ATclass] = ACTIONS(1836), - [anon_sym_ATinterface] = ACTIONS(1836), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1834), - [sym_method_attribute_specifier] = ACTIONS(1834), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1834), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1834), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1834), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1834), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1834), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1834), - [anon_sym_NS_AVAILABLE] = ACTIONS(1834), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1834), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1834), - [anon_sym_API_AVAILABLE] = ACTIONS(1834), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1834), - [anon_sym_API_DEPRECATED] = ACTIONS(1834), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1834), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1834), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1834), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1834), - [anon_sym___deprecated_msg] = ACTIONS(1834), - [anon_sym___deprecated_enum_msg] = ACTIONS(1834), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1834), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1834), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1834), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1834), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1834), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1834), - [anon_sym_ATimplementation] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1834), - [anon_sym___typeof] = ACTIONS(1834), - [anon_sym___typeof__] = ACTIONS(1834), - [sym_self] = ACTIONS(1834), - [sym_super] = ACTIONS(1834), - [sym_nil] = ACTIONS(1834), - [sym_id] = ACTIONS(1834), - [sym_instancetype] = ACTIONS(1834), - [sym_Class] = ACTIONS(1834), - [sym_SEL] = ACTIONS(1834), - [sym_IMP] = ACTIONS(1834), - [sym_BOOL] = ACTIONS(1834), - [sym_auto] = ACTIONS(1834), - [anon_sym_ATautoreleasepool] = ACTIONS(1836), - [anon_sym_ATsynchronized] = ACTIONS(1836), - [anon_sym_ATtry] = ACTIONS(1836), - [anon_sym_ATthrow] = ACTIONS(1836), - [anon_sym_ATselector] = ACTIONS(1836), - [anon_sym_ATencode] = ACTIONS(1836), - [anon_sym_AT] = ACTIONS(1834), - [sym_YES] = ACTIONS(1834), - [sym_NO] = ACTIONS(1834), - [anon_sym___builtin_available] = ACTIONS(1834), - [anon_sym_ATavailable] = ACTIONS(1836), - [anon_sym_va_arg] = ACTIONS(1834), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [638] = { - [sym_identifier] = ACTIONS(1822), - [aux_sym_preproc_include_token1] = ACTIONS(1824), - [aux_sym_preproc_def_token1] = ACTIONS(1824), - [aux_sym_preproc_if_token1] = ACTIONS(1822), - [aux_sym_preproc_if_token2] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1822), - [aux_sym_preproc_else_token1] = ACTIONS(1822), - [aux_sym_preproc_elif_token1] = ACTIONS(1822), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym___attribute] = ACTIONS(1822), - [anon_sym___attribute__] = ACTIONS(1822), - [anon_sym___declspec] = ACTIONS(1822), - [anon_sym___cdecl] = ACTIONS(1822), - [anon_sym___clrcall] = ACTIONS(1822), - [anon_sym___stdcall] = ACTIONS(1822), - [anon_sym___fastcall] = ACTIONS(1822), - [anon_sym___thiscall] = ACTIONS(1822), - [anon_sym___vectorcall] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [anon_sym__Atomic] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_out] = ACTIONS(1822), - [anon_sym_inout] = ACTIONS(1822), - [anon_sym_bycopy] = ACTIONS(1822), - [anon_sym_byref] = ACTIONS(1822), - [anon_sym_oneway] = ACTIONS(1822), - [anon_sym__Nullable] = ACTIONS(1822), - [anon_sym__Nonnull] = ACTIONS(1822), - [anon_sym__Nullable_result] = ACTIONS(1822), - [anon_sym__Null_unspecified] = ACTIONS(1822), - [anon_sym___autoreleasing] = ACTIONS(1822), - [anon_sym___nullable] = ACTIONS(1822), - [anon_sym___nonnull] = ACTIONS(1822), - [anon_sym___strong] = ACTIONS(1822), - [anon_sym___weak] = ACTIONS(1822), - [anon_sym___bridge] = ACTIONS(1822), - [anon_sym___bridge_transfer] = ACTIONS(1822), - [anon_sym___bridge_retained] = ACTIONS(1822), - [anon_sym___unsafe_unretained] = ACTIONS(1822), - [anon_sym___block] = ACTIONS(1822), - [anon_sym___kindof] = ACTIONS(1822), - [anon_sym___unused] = ACTIONS(1822), - [anon_sym__Complex] = ACTIONS(1822), - [anon_sym___complex] = ACTIONS(1822), - [anon_sym_IBOutlet] = ACTIONS(1822), - [anon_sym_IBInspectable] = ACTIONS(1822), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_NS_ENUM] = ACTIONS(1822), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1822), - [anon_sym_NS_OPTIONS] = ACTIONS(1822), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_case] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_goto] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1822), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_L_SQUOTE] = ACTIONS(1824), - [anon_sym_u_SQUOTE] = ACTIONS(1824), - [anon_sym_U_SQUOTE] = ACTIONS(1824), - [anon_sym_u8_SQUOTE] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_L_DQUOTE] = ACTIONS(1824), - [anon_sym_u_DQUOTE] = ACTIONS(1824), - [anon_sym_U_DQUOTE] = ACTIONS(1824), - [anon_sym_u8_DQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym_true] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1824), - [anon_sym_ATimport] = ACTIONS(1824), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1822), - [anon_sym_ATcompatibility_alias] = ACTIONS(1824), - [anon_sym_ATprotocol] = ACTIONS(1824), - [anon_sym_ATclass] = ACTIONS(1824), - [anon_sym_ATinterface] = ACTIONS(1824), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1822), - [sym_method_attribute_specifier] = ACTIONS(1822), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1822), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE] = ACTIONS(1822), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_API_AVAILABLE] = ACTIONS(1822), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_API_DEPRECATED] = ACTIONS(1822), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1822), - [anon_sym___deprecated_msg] = ACTIONS(1822), - [anon_sym___deprecated_enum_msg] = ACTIONS(1822), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1822), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1822), - [anon_sym_ATimplementation] = ACTIONS(1824), - [anon_sym_typeof] = ACTIONS(1822), - [anon_sym___typeof] = ACTIONS(1822), - [anon_sym___typeof__] = ACTIONS(1822), - [sym_self] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_nil] = ACTIONS(1822), - [sym_id] = ACTIONS(1822), - [sym_instancetype] = ACTIONS(1822), - [sym_Class] = ACTIONS(1822), - [sym_SEL] = ACTIONS(1822), - [sym_IMP] = ACTIONS(1822), - [sym_BOOL] = ACTIONS(1822), - [sym_auto] = ACTIONS(1822), - [anon_sym_ATautoreleasepool] = ACTIONS(1824), - [anon_sym_ATsynchronized] = ACTIONS(1824), - [anon_sym_ATtry] = ACTIONS(1824), - [anon_sym_ATthrow] = ACTIONS(1824), - [anon_sym_ATselector] = ACTIONS(1824), - [anon_sym_ATencode] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1822), - [sym_YES] = ACTIONS(1822), - [sym_NO] = ACTIONS(1822), - [anon_sym___builtin_available] = ACTIONS(1822), - [anon_sym_ATavailable] = ACTIONS(1824), - [anon_sym_va_arg] = ACTIONS(1822), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [639] = { - [sym_identifier] = ACTIONS(1822), - [aux_sym_preproc_include_token1] = ACTIONS(1824), - [aux_sym_preproc_def_token1] = ACTIONS(1824), - [aux_sym_preproc_if_token1] = ACTIONS(1822), - [aux_sym_preproc_if_token2] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1822), - [aux_sym_preproc_else_token1] = ACTIONS(1822), - [aux_sym_preproc_elif_token1] = ACTIONS(1822), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym___attribute] = ACTIONS(1822), - [anon_sym___attribute__] = ACTIONS(1822), - [anon_sym___declspec] = ACTIONS(1822), - [anon_sym___cdecl] = ACTIONS(1822), - [anon_sym___clrcall] = ACTIONS(1822), - [anon_sym___stdcall] = ACTIONS(1822), - [anon_sym___fastcall] = ACTIONS(1822), - [anon_sym___thiscall] = ACTIONS(1822), - [anon_sym___vectorcall] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [anon_sym__Atomic] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_out] = ACTIONS(1822), - [anon_sym_inout] = ACTIONS(1822), - [anon_sym_bycopy] = ACTIONS(1822), - [anon_sym_byref] = ACTIONS(1822), - [anon_sym_oneway] = ACTIONS(1822), - [anon_sym__Nullable] = ACTIONS(1822), - [anon_sym__Nonnull] = ACTIONS(1822), - [anon_sym__Nullable_result] = ACTIONS(1822), - [anon_sym__Null_unspecified] = ACTIONS(1822), - [anon_sym___autoreleasing] = ACTIONS(1822), - [anon_sym___nullable] = ACTIONS(1822), - [anon_sym___nonnull] = ACTIONS(1822), - [anon_sym___strong] = ACTIONS(1822), - [anon_sym___weak] = ACTIONS(1822), - [anon_sym___bridge] = ACTIONS(1822), - [anon_sym___bridge_transfer] = ACTIONS(1822), - [anon_sym___bridge_retained] = ACTIONS(1822), - [anon_sym___unsafe_unretained] = ACTIONS(1822), - [anon_sym___block] = ACTIONS(1822), - [anon_sym___kindof] = ACTIONS(1822), - [anon_sym___unused] = ACTIONS(1822), - [anon_sym__Complex] = ACTIONS(1822), - [anon_sym___complex] = ACTIONS(1822), - [anon_sym_IBOutlet] = ACTIONS(1822), - [anon_sym_IBInspectable] = ACTIONS(1822), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_NS_ENUM] = ACTIONS(1822), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1822), - [anon_sym_NS_OPTIONS] = ACTIONS(1822), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_case] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_goto] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1822), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_L_SQUOTE] = ACTIONS(1824), - [anon_sym_u_SQUOTE] = ACTIONS(1824), - [anon_sym_U_SQUOTE] = ACTIONS(1824), - [anon_sym_u8_SQUOTE] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_L_DQUOTE] = ACTIONS(1824), - [anon_sym_u_DQUOTE] = ACTIONS(1824), - [anon_sym_U_DQUOTE] = ACTIONS(1824), - [anon_sym_u8_DQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym_true] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1824), - [anon_sym_ATimport] = ACTIONS(1824), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1822), - [anon_sym_ATcompatibility_alias] = ACTIONS(1824), - [anon_sym_ATprotocol] = ACTIONS(1824), - [anon_sym_ATclass] = ACTIONS(1824), - [anon_sym_ATinterface] = ACTIONS(1824), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1822), - [sym_method_attribute_specifier] = ACTIONS(1822), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1822), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE] = ACTIONS(1822), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_API_AVAILABLE] = ACTIONS(1822), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_API_DEPRECATED] = ACTIONS(1822), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1822), - [anon_sym___deprecated_msg] = ACTIONS(1822), - [anon_sym___deprecated_enum_msg] = ACTIONS(1822), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1822), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1822), - [anon_sym_ATimplementation] = ACTIONS(1824), - [anon_sym_typeof] = ACTIONS(1822), - [anon_sym___typeof] = ACTIONS(1822), - [anon_sym___typeof__] = ACTIONS(1822), - [sym_self] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_nil] = ACTIONS(1822), - [sym_id] = ACTIONS(1822), - [sym_instancetype] = ACTIONS(1822), - [sym_Class] = ACTIONS(1822), - [sym_SEL] = ACTIONS(1822), - [sym_IMP] = ACTIONS(1822), - [sym_BOOL] = ACTIONS(1822), - [sym_auto] = ACTIONS(1822), - [anon_sym_ATautoreleasepool] = ACTIONS(1824), - [anon_sym_ATsynchronized] = ACTIONS(1824), - [anon_sym_ATtry] = ACTIONS(1824), - [anon_sym_ATthrow] = ACTIONS(1824), - [anon_sym_ATselector] = ACTIONS(1824), - [anon_sym_ATencode] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1822), - [sym_YES] = ACTIONS(1822), - [sym_NO] = ACTIONS(1822), - [anon_sym___builtin_available] = ACTIONS(1822), - [anon_sym_ATavailable] = ACTIONS(1824), - [anon_sym_va_arg] = ACTIONS(1822), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [640] = { - [sym_identifier] = ACTIONS(1822), - [aux_sym_preproc_include_token1] = ACTIONS(1824), - [aux_sym_preproc_def_token1] = ACTIONS(1824), - [aux_sym_preproc_if_token1] = ACTIONS(1822), - [aux_sym_preproc_if_token2] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1822), - [aux_sym_preproc_else_token1] = ACTIONS(1822), - [aux_sym_preproc_elif_token1] = ACTIONS(1822), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym___attribute] = ACTIONS(1822), - [anon_sym___attribute__] = ACTIONS(1822), - [anon_sym___declspec] = ACTIONS(1822), - [anon_sym___cdecl] = ACTIONS(1822), - [anon_sym___clrcall] = ACTIONS(1822), - [anon_sym___stdcall] = ACTIONS(1822), - [anon_sym___fastcall] = ACTIONS(1822), - [anon_sym___thiscall] = ACTIONS(1822), - [anon_sym___vectorcall] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [anon_sym__Atomic] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_out] = ACTIONS(1822), - [anon_sym_inout] = ACTIONS(1822), - [anon_sym_bycopy] = ACTIONS(1822), - [anon_sym_byref] = ACTIONS(1822), - [anon_sym_oneway] = ACTIONS(1822), - [anon_sym__Nullable] = ACTIONS(1822), - [anon_sym__Nonnull] = ACTIONS(1822), - [anon_sym__Nullable_result] = ACTIONS(1822), - [anon_sym__Null_unspecified] = ACTIONS(1822), - [anon_sym___autoreleasing] = ACTIONS(1822), - [anon_sym___nullable] = ACTIONS(1822), - [anon_sym___nonnull] = ACTIONS(1822), - [anon_sym___strong] = ACTIONS(1822), - [anon_sym___weak] = ACTIONS(1822), - [anon_sym___bridge] = ACTIONS(1822), - [anon_sym___bridge_transfer] = ACTIONS(1822), - [anon_sym___bridge_retained] = ACTIONS(1822), - [anon_sym___unsafe_unretained] = ACTIONS(1822), - [anon_sym___block] = ACTIONS(1822), - [anon_sym___kindof] = ACTIONS(1822), - [anon_sym___unused] = ACTIONS(1822), - [anon_sym__Complex] = ACTIONS(1822), - [anon_sym___complex] = ACTIONS(1822), - [anon_sym_IBOutlet] = ACTIONS(1822), - [anon_sym_IBInspectable] = ACTIONS(1822), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_NS_ENUM] = ACTIONS(1822), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1822), - [anon_sym_NS_OPTIONS] = ACTIONS(1822), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_case] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_goto] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1822), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_L_SQUOTE] = ACTIONS(1824), - [anon_sym_u_SQUOTE] = ACTIONS(1824), - [anon_sym_U_SQUOTE] = ACTIONS(1824), - [anon_sym_u8_SQUOTE] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_L_DQUOTE] = ACTIONS(1824), - [anon_sym_u_DQUOTE] = ACTIONS(1824), - [anon_sym_U_DQUOTE] = ACTIONS(1824), - [anon_sym_u8_DQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym_true] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1824), - [anon_sym_ATimport] = ACTIONS(1824), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1822), - [anon_sym_ATcompatibility_alias] = ACTIONS(1824), - [anon_sym_ATprotocol] = ACTIONS(1824), - [anon_sym_ATclass] = ACTIONS(1824), - [anon_sym_ATinterface] = ACTIONS(1824), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1822), - [sym_method_attribute_specifier] = ACTIONS(1822), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1822), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE] = ACTIONS(1822), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_API_AVAILABLE] = ACTIONS(1822), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_API_DEPRECATED] = ACTIONS(1822), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1822), - [anon_sym___deprecated_msg] = ACTIONS(1822), - [anon_sym___deprecated_enum_msg] = ACTIONS(1822), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1822), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1822), - [anon_sym_ATimplementation] = ACTIONS(1824), - [anon_sym_typeof] = ACTIONS(1822), - [anon_sym___typeof] = ACTIONS(1822), - [anon_sym___typeof__] = ACTIONS(1822), - [sym_self] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_nil] = ACTIONS(1822), - [sym_id] = ACTIONS(1822), - [sym_instancetype] = ACTIONS(1822), - [sym_Class] = ACTIONS(1822), - [sym_SEL] = ACTIONS(1822), - [sym_IMP] = ACTIONS(1822), - [sym_BOOL] = ACTIONS(1822), - [sym_auto] = ACTIONS(1822), - [anon_sym_ATautoreleasepool] = ACTIONS(1824), - [anon_sym_ATsynchronized] = ACTIONS(1824), - [anon_sym_ATtry] = ACTIONS(1824), - [anon_sym_ATthrow] = ACTIONS(1824), - [anon_sym_ATselector] = ACTIONS(1824), - [anon_sym_ATencode] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1822), - [sym_YES] = ACTIONS(1822), - [sym_NO] = ACTIONS(1822), - [anon_sym___builtin_available] = ACTIONS(1822), - [anon_sym_ATavailable] = ACTIONS(1824), - [anon_sym_va_arg] = ACTIONS(1822), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [641] = { - [sym_identifier] = ACTIONS(1838), - [aux_sym_preproc_include_token1] = ACTIONS(1840), - [aux_sym_preproc_def_token1] = ACTIONS(1840), - [aux_sym_preproc_if_token1] = ACTIONS(1838), - [aux_sym_preproc_if_token2] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [aux_sym_preproc_else_token1] = ACTIONS(1838), - [aux_sym_preproc_elif_token1] = ACTIONS(1838), - [anon_sym_LPAREN2] = ACTIONS(1840), - [anon_sym_BANG] = ACTIONS(1840), - [anon_sym_TILDE] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1840), - [anon_sym_CARET] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_typedef] = ACTIONS(1838), - [anon_sym_extern] = ACTIONS(1838), - [anon_sym___attribute] = ACTIONS(1838), - [anon_sym___attribute__] = ACTIONS(1838), - [anon_sym___declspec] = ACTIONS(1838), - [anon_sym___cdecl] = ACTIONS(1838), - [anon_sym___clrcall] = ACTIONS(1838), - [anon_sym___stdcall] = ACTIONS(1838), - [anon_sym___fastcall] = ACTIONS(1838), - [anon_sym___thiscall] = ACTIONS(1838), - [anon_sym___vectorcall] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1838), - [anon_sym_auto] = ACTIONS(1838), - [anon_sym_register] = ACTIONS(1838), - [anon_sym_inline] = ACTIONS(1838), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1838), - [anon_sym_const] = ACTIONS(1838), - [anon_sym_volatile] = ACTIONS(1838), - [anon_sym_restrict] = ACTIONS(1838), - [anon_sym__Atomic] = ACTIONS(1838), - [anon_sym_in] = ACTIONS(1838), - [anon_sym_out] = ACTIONS(1838), - [anon_sym_inout] = ACTIONS(1838), - [anon_sym_bycopy] = ACTIONS(1838), - [anon_sym_byref] = ACTIONS(1838), - [anon_sym_oneway] = ACTIONS(1838), - [anon_sym__Nullable] = ACTIONS(1838), - [anon_sym__Nonnull] = ACTIONS(1838), - [anon_sym__Nullable_result] = ACTIONS(1838), - [anon_sym__Null_unspecified] = ACTIONS(1838), - [anon_sym___autoreleasing] = ACTIONS(1838), - [anon_sym___nullable] = ACTIONS(1838), - [anon_sym___nonnull] = ACTIONS(1838), - [anon_sym___strong] = ACTIONS(1838), - [anon_sym___weak] = ACTIONS(1838), - [anon_sym___bridge] = ACTIONS(1838), - [anon_sym___bridge_transfer] = ACTIONS(1838), - [anon_sym___bridge_retained] = ACTIONS(1838), - [anon_sym___unsafe_unretained] = ACTIONS(1838), - [anon_sym___block] = ACTIONS(1838), - [anon_sym___kindof] = ACTIONS(1838), - [anon_sym___unused] = ACTIONS(1838), - [anon_sym__Complex] = ACTIONS(1838), - [anon_sym___complex] = ACTIONS(1838), - [anon_sym_IBOutlet] = ACTIONS(1838), - [anon_sym_IBInspectable] = ACTIONS(1838), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1838), - [anon_sym_signed] = ACTIONS(1838), - [anon_sym_unsigned] = ACTIONS(1838), - [anon_sym_long] = ACTIONS(1838), - [anon_sym_short] = ACTIONS(1838), - [sym_primitive_type] = ACTIONS(1838), - [anon_sym_enum] = ACTIONS(1838), - [anon_sym_NS_ENUM] = ACTIONS(1838), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1838), - [anon_sym_NS_OPTIONS] = ACTIONS(1838), - [anon_sym_struct] = ACTIONS(1838), - [anon_sym_union] = ACTIONS(1838), - [anon_sym_if] = ACTIONS(1838), - [anon_sym_switch] = ACTIONS(1838), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1838), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(1838), - [anon_sym_for] = ACTIONS(1838), - [anon_sym_return] = ACTIONS(1838), - [anon_sym_break] = ACTIONS(1838), - [anon_sym_continue] = ACTIONS(1838), - [anon_sym_goto] = ACTIONS(1838), - [anon_sym_DASH_DASH] = ACTIONS(1840), - [anon_sym_PLUS_PLUS] = ACTIONS(1840), - [anon_sym_sizeof] = ACTIONS(1838), - [sym_number_literal] = ACTIONS(1840), - [anon_sym_L_SQUOTE] = ACTIONS(1840), - [anon_sym_u_SQUOTE] = ACTIONS(1840), - [anon_sym_U_SQUOTE] = ACTIONS(1840), - [anon_sym_u8_SQUOTE] = ACTIONS(1840), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1838), - [sym_false] = ACTIONS(1838), - [sym_null] = ACTIONS(1838), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1840), - [anon_sym_ATimport] = ACTIONS(1840), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1838), - [anon_sym_ATcompatibility_alias] = ACTIONS(1840), - [anon_sym_ATprotocol] = ACTIONS(1840), - [anon_sym_ATclass] = ACTIONS(1840), - [anon_sym_ATinterface] = ACTIONS(1840), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1838), - [sym_method_attribute_specifier] = ACTIONS(1838), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1838), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1838), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1838), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1838), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1838), - [anon_sym_NS_AVAILABLE] = ACTIONS(1838), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1838), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_API_AVAILABLE] = ACTIONS(1838), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_API_DEPRECATED] = ACTIONS(1838), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1838), - [anon_sym___deprecated_msg] = ACTIONS(1838), - [anon_sym___deprecated_enum_msg] = ACTIONS(1838), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1838), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1838), - [anon_sym_ATimplementation] = ACTIONS(1840), - [anon_sym_typeof] = ACTIONS(1838), - [anon_sym___typeof] = ACTIONS(1838), - [anon_sym___typeof__] = ACTIONS(1838), - [sym_self] = ACTIONS(1838), - [sym_super] = ACTIONS(1838), - [sym_nil] = ACTIONS(1838), - [sym_id] = ACTIONS(1838), - [sym_instancetype] = ACTIONS(1838), - [sym_Class] = ACTIONS(1838), - [sym_SEL] = ACTIONS(1838), - [sym_IMP] = ACTIONS(1838), - [sym_BOOL] = ACTIONS(1838), - [sym_auto] = ACTIONS(1838), - [anon_sym_ATautoreleasepool] = ACTIONS(1840), - [anon_sym_ATsynchronized] = ACTIONS(1840), - [anon_sym_ATtry] = ACTIONS(1840), - [anon_sym_ATthrow] = ACTIONS(1840), - [anon_sym_ATselector] = ACTIONS(1840), - [anon_sym_ATencode] = ACTIONS(1840), - [anon_sym_AT] = ACTIONS(1838), - [sym_YES] = ACTIONS(1838), - [sym_NO] = ACTIONS(1838), - [anon_sym___builtin_available] = ACTIONS(1838), - [anon_sym_ATavailable] = ACTIONS(1840), - [anon_sym_va_arg] = ACTIONS(1838), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [642] = { - [sym_identifier] = ACTIONS(1842), - [aux_sym_preproc_include_token1] = ACTIONS(1844), - [aux_sym_preproc_def_token1] = ACTIONS(1844), - [aux_sym_preproc_if_token1] = ACTIONS(1842), - [aux_sym_preproc_if_token2] = ACTIONS(1842), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1842), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1842), - [aux_sym_preproc_else_token1] = ACTIONS(1842), - [aux_sym_preproc_elif_token1] = ACTIONS(1842), - [anon_sym_LPAREN2] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_TILDE] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym_AMP] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1844), - [anon_sym_typedef] = ACTIONS(1842), - [anon_sym_extern] = ACTIONS(1842), - [anon_sym___attribute] = ACTIONS(1842), - [anon_sym___attribute__] = ACTIONS(1842), - [anon_sym___declspec] = ACTIONS(1842), - [anon_sym___cdecl] = ACTIONS(1842), - [anon_sym___clrcall] = ACTIONS(1842), - [anon_sym___stdcall] = ACTIONS(1842), - [anon_sym___fastcall] = ACTIONS(1842), - [anon_sym___thiscall] = ACTIONS(1842), - [anon_sym___vectorcall] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1844), - [anon_sym_LBRACK] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1842), - [anon_sym_auto] = ACTIONS(1842), - [anon_sym_register] = ACTIONS(1842), - [anon_sym_inline] = ACTIONS(1842), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1842), - [anon_sym_const] = ACTIONS(1842), - [anon_sym_volatile] = ACTIONS(1842), - [anon_sym_restrict] = ACTIONS(1842), - [anon_sym__Atomic] = ACTIONS(1842), - [anon_sym_in] = ACTIONS(1842), - [anon_sym_out] = ACTIONS(1842), - [anon_sym_inout] = ACTIONS(1842), - [anon_sym_bycopy] = ACTIONS(1842), - [anon_sym_byref] = ACTIONS(1842), - [anon_sym_oneway] = ACTIONS(1842), - [anon_sym__Nullable] = ACTIONS(1842), - [anon_sym__Nonnull] = ACTIONS(1842), - [anon_sym__Nullable_result] = ACTIONS(1842), - [anon_sym__Null_unspecified] = ACTIONS(1842), - [anon_sym___autoreleasing] = ACTIONS(1842), - [anon_sym___nullable] = ACTIONS(1842), - [anon_sym___nonnull] = ACTIONS(1842), - [anon_sym___strong] = ACTIONS(1842), - [anon_sym___weak] = ACTIONS(1842), - [anon_sym___bridge] = ACTIONS(1842), - [anon_sym___bridge_transfer] = ACTIONS(1842), - [anon_sym___bridge_retained] = ACTIONS(1842), - [anon_sym___unsafe_unretained] = ACTIONS(1842), - [anon_sym___block] = ACTIONS(1842), - [anon_sym___kindof] = ACTIONS(1842), - [anon_sym___unused] = ACTIONS(1842), - [anon_sym__Complex] = ACTIONS(1842), - [anon_sym___complex] = ACTIONS(1842), - [anon_sym_IBOutlet] = ACTIONS(1842), - [anon_sym_IBInspectable] = ACTIONS(1842), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1842), - [anon_sym_signed] = ACTIONS(1842), - [anon_sym_unsigned] = ACTIONS(1842), - [anon_sym_long] = ACTIONS(1842), - [anon_sym_short] = ACTIONS(1842), - [sym_primitive_type] = ACTIONS(1842), - [anon_sym_enum] = ACTIONS(1842), - [anon_sym_NS_ENUM] = ACTIONS(1842), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1842), - [anon_sym_NS_OPTIONS] = ACTIONS(1842), - [anon_sym_struct] = ACTIONS(1842), - [anon_sym_union] = ACTIONS(1842), - [anon_sym_if] = ACTIONS(1842), - [anon_sym_switch] = ACTIONS(1842), - [anon_sym_case] = ACTIONS(1842), - [anon_sym_default] = ACTIONS(1842), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(1842), - [anon_sym_for] = ACTIONS(1842), - [anon_sym_return] = ACTIONS(1842), - [anon_sym_break] = ACTIONS(1842), - [anon_sym_continue] = ACTIONS(1842), - [anon_sym_goto] = ACTIONS(1842), - [anon_sym_DASH_DASH] = ACTIONS(1844), - [anon_sym_PLUS_PLUS] = ACTIONS(1844), - [anon_sym_sizeof] = ACTIONS(1842), - [sym_number_literal] = ACTIONS(1844), - [anon_sym_L_SQUOTE] = ACTIONS(1844), - [anon_sym_u_SQUOTE] = ACTIONS(1844), - [anon_sym_U_SQUOTE] = ACTIONS(1844), - [anon_sym_u8_SQUOTE] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_L_DQUOTE] = ACTIONS(1844), - [anon_sym_u_DQUOTE] = ACTIONS(1844), - [anon_sym_U_DQUOTE] = ACTIONS(1844), - [anon_sym_u8_DQUOTE] = ACTIONS(1844), - [anon_sym_DQUOTE] = ACTIONS(1844), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [sym_null] = ACTIONS(1842), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1844), - [anon_sym_ATimport] = ACTIONS(1844), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1842), - [anon_sym_ATcompatibility_alias] = ACTIONS(1844), - [anon_sym_ATprotocol] = ACTIONS(1844), - [anon_sym_ATclass] = ACTIONS(1844), - [anon_sym_ATinterface] = ACTIONS(1844), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1842), - [sym_method_attribute_specifier] = ACTIONS(1842), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1842), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1842), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1842), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1842), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1842), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1842), - [anon_sym_NS_AVAILABLE] = ACTIONS(1842), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1842), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1842), - [anon_sym_API_AVAILABLE] = ACTIONS(1842), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1842), - [anon_sym_API_DEPRECATED] = ACTIONS(1842), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1842), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1842), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1842), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1842), - [anon_sym___deprecated_msg] = ACTIONS(1842), - [anon_sym___deprecated_enum_msg] = ACTIONS(1842), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1842), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1842), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1842), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1842), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1842), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1842), - [anon_sym_ATimplementation] = ACTIONS(1844), - [anon_sym_typeof] = ACTIONS(1842), - [anon_sym___typeof] = ACTIONS(1842), - [anon_sym___typeof__] = ACTIONS(1842), - [sym_self] = ACTIONS(1842), - [sym_super] = ACTIONS(1842), - [sym_nil] = ACTIONS(1842), - [sym_id] = ACTIONS(1842), - [sym_instancetype] = ACTIONS(1842), - [sym_Class] = ACTIONS(1842), - [sym_SEL] = ACTIONS(1842), - [sym_IMP] = ACTIONS(1842), - [sym_BOOL] = ACTIONS(1842), - [sym_auto] = ACTIONS(1842), - [anon_sym_ATautoreleasepool] = ACTIONS(1844), - [anon_sym_ATsynchronized] = ACTIONS(1844), - [anon_sym_ATtry] = ACTIONS(1844), - [anon_sym_ATthrow] = ACTIONS(1844), - [anon_sym_ATselector] = ACTIONS(1844), - [anon_sym_ATencode] = ACTIONS(1844), - [anon_sym_AT] = ACTIONS(1842), - [sym_YES] = ACTIONS(1842), - [sym_NO] = ACTIONS(1842), - [anon_sym___builtin_available] = ACTIONS(1842), - [anon_sym_ATavailable] = ACTIONS(1844), - [anon_sym_va_arg] = ACTIONS(1842), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [643] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [aux_sym_preproc_else_token1] = ACTIONS(1846), - [aux_sym_preproc_elif_token1] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [644] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [aux_sym_preproc_else_token1] = ACTIONS(1846), - [aux_sym_preproc_elif_token1] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [645] = { - [sym_identifier] = ACTIONS(1838), - [aux_sym_preproc_include_token1] = ACTIONS(1840), - [aux_sym_preproc_def_token1] = ACTIONS(1840), - [aux_sym_preproc_if_token1] = ACTIONS(1838), - [aux_sym_preproc_if_token2] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [aux_sym_preproc_else_token1] = ACTIONS(1838), - [aux_sym_preproc_elif_token1] = ACTIONS(1838), - [anon_sym_LPAREN2] = ACTIONS(1840), - [anon_sym_BANG] = ACTIONS(1840), - [anon_sym_TILDE] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1840), - [anon_sym_CARET] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_typedef] = ACTIONS(1838), - [anon_sym_extern] = ACTIONS(1838), - [anon_sym___attribute] = ACTIONS(1838), - [anon_sym___attribute__] = ACTIONS(1838), - [anon_sym___declspec] = ACTIONS(1838), - [anon_sym___cdecl] = ACTIONS(1838), - [anon_sym___clrcall] = ACTIONS(1838), - [anon_sym___stdcall] = ACTIONS(1838), - [anon_sym___fastcall] = ACTIONS(1838), - [anon_sym___thiscall] = ACTIONS(1838), - [anon_sym___vectorcall] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1838), - [anon_sym_auto] = ACTIONS(1838), - [anon_sym_register] = ACTIONS(1838), - [anon_sym_inline] = ACTIONS(1838), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1838), - [anon_sym_const] = ACTIONS(1838), - [anon_sym_volatile] = ACTIONS(1838), - [anon_sym_restrict] = ACTIONS(1838), - [anon_sym__Atomic] = ACTIONS(1838), - [anon_sym_in] = ACTIONS(1838), - [anon_sym_out] = ACTIONS(1838), - [anon_sym_inout] = ACTIONS(1838), - [anon_sym_bycopy] = ACTIONS(1838), - [anon_sym_byref] = ACTIONS(1838), - [anon_sym_oneway] = ACTIONS(1838), - [anon_sym__Nullable] = ACTIONS(1838), - [anon_sym__Nonnull] = ACTIONS(1838), - [anon_sym__Nullable_result] = ACTIONS(1838), - [anon_sym__Null_unspecified] = ACTIONS(1838), - [anon_sym___autoreleasing] = ACTIONS(1838), - [anon_sym___nullable] = ACTIONS(1838), - [anon_sym___nonnull] = ACTIONS(1838), - [anon_sym___strong] = ACTIONS(1838), - [anon_sym___weak] = ACTIONS(1838), - [anon_sym___bridge] = ACTIONS(1838), - [anon_sym___bridge_transfer] = ACTIONS(1838), - [anon_sym___bridge_retained] = ACTIONS(1838), - [anon_sym___unsafe_unretained] = ACTIONS(1838), - [anon_sym___block] = ACTIONS(1838), - [anon_sym___kindof] = ACTIONS(1838), - [anon_sym___unused] = ACTIONS(1838), - [anon_sym__Complex] = ACTIONS(1838), - [anon_sym___complex] = ACTIONS(1838), - [anon_sym_IBOutlet] = ACTIONS(1838), - [anon_sym_IBInspectable] = ACTIONS(1838), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1838), - [anon_sym_signed] = ACTIONS(1838), - [anon_sym_unsigned] = ACTIONS(1838), - [anon_sym_long] = ACTIONS(1838), - [anon_sym_short] = ACTIONS(1838), - [sym_primitive_type] = ACTIONS(1838), - [anon_sym_enum] = ACTIONS(1838), - [anon_sym_NS_ENUM] = ACTIONS(1838), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1838), - [anon_sym_NS_OPTIONS] = ACTIONS(1838), - [anon_sym_struct] = ACTIONS(1838), - [anon_sym_union] = ACTIONS(1838), - [anon_sym_if] = ACTIONS(1838), - [anon_sym_switch] = ACTIONS(1838), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1838), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(1838), - [anon_sym_for] = ACTIONS(1838), - [anon_sym_return] = ACTIONS(1838), - [anon_sym_break] = ACTIONS(1838), - [anon_sym_continue] = ACTIONS(1838), - [anon_sym_goto] = ACTIONS(1838), - [anon_sym_DASH_DASH] = ACTIONS(1840), - [anon_sym_PLUS_PLUS] = ACTIONS(1840), - [anon_sym_sizeof] = ACTIONS(1838), - [sym_number_literal] = ACTIONS(1840), - [anon_sym_L_SQUOTE] = ACTIONS(1840), - [anon_sym_u_SQUOTE] = ACTIONS(1840), - [anon_sym_U_SQUOTE] = ACTIONS(1840), - [anon_sym_u8_SQUOTE] = ACTIONS(1840), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1838), - [sym_false] = ACTIONS(1838), - [sym_null] = ACTIONS(1838), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1840), - [anon_sym_ATimport] = ACTIONS(1840), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1838), - [anon_sym_ATcompatibility_alias] = ACTIONS(1840), - [anon_sym_ATprotocol] = ACTIONS(1840), - [anon_sym_ATclass] = ACTIONS(1840), - [anon_sym_ATinterface] = ACTIONS(1840), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1838), - [sym_method_attribute_specifier] = ACTIONS(1838), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1838), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1838), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1838), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1838), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1838), - [anon_sym_NS_AVAILABLE] = ACTIONS(1838), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1838), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_API_AVAILABLE] = ACTIONS(1838), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_API_DEPRECATED] = ACTIONS(1838), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1838), - [anon_sym___deprecated_msg] = ACTIONS(1838), - [anon_sym___deprecated_enum_msg] = ACTIONS(1838), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1838), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1838), - [anon_sym_ATimplementation] = ACTIONS(1840), - [anon_sym_typeof] = ACTIONS(1838), - [anon_sym___typeof] = ACTIONS(1838), - [anon_sym___typeof__] = ACTIONS(1838), - [sym_self] = ACTIONS(1838), - [sym_super] = ACTIONS(1838), - [sym_nil] = ACTIONS(1838), - [sym_id] = ACTIONS(1838), - [sym_instancetype] = ACTIONS(1838), - [sym_Class] = ACTIONS(1838), - [sym_SEL] = ACTIONS(1838), - [sym_IMP] = ACTIONS(1838), - [sym_BOOL] = ACTIONS(1838), - [sym_auto] = ACTIONS(1838), - [anon_sym_ATautoreleasepool] = ACTIONS(1840), - [anon_sym_ATsynchronized] = ACTIONS(1840), - [anon_sym_ATtry] = ACTIONS(1840), - [anon_sym_ATthrow] = ACTIONS(1840), - [anon_sym_ATselector] = ACTIONS(1840), - [anon_sym_ATencode] = ACTIONS(1840), - [anon_sym_AT] = ACTIONS(1838), - [sym_YES] = ACTIONS(1838), - [sym_NO] = ACTIONS(1838), - [anon_sym___builtin_available] = ACTIONS(1838), - [anon_sym_ATavailable] = ACTIONS(1840), - [anon_sym_va_arg] = ACTIONS(1838), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [646] = { - [sym_identifier] = ACTIONS(1838), - [aux_sym_preproc_include_token1] = ACTIONS(1840), - [aux_sym_preproc_def_token1] = ACTIONS(1840), - [aux_sym_preproc_if_token1] = ACTIONS(1838), - [aux_sym_preproc_if_token2] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [aux_sym_preproc_else_token1] = ACTIONS(1838), - [aux_sym_preproc_elif_token1] = ACTIONS(1838), - [anon_sym_LPAREN2] = ACTIONS(1840), - [anon_sym_BANG] = ACTIONS(1840), - [anon_sym_TILDE] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1840), - [anon_sym_CARET] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_typedef] = ACTIONS(1838), - [anon_sym_extern] = ACTIONS(1838), - [anon_sym___attribute] = ACTIONS(1838), - [anon_sym___attribute__] = ACTIONS(1838), - [anon_sym___declspec] = ACTIONS(1838), - [anon_sym___cdecl] = ACTIONS(1838), - [anon_sym___clrcall] = ACTIONS(1838), - [anon_sym___stdcall] = ACTIONS(1838), - [anon_sym___fastcall] = ACTIONS(1838), - [anon_sym___thiscall] = ACTIONS(1838), - [anon_sym___vectorcall] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1838), - [anon_sym_auto] = ACTIONS(1838), - [anon_sym_register] = ACTIONS(1838), - [anon_sym_inline] = ACTIONS(1838), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1838), - [anon_sym_const] = ACTIONS(1838), - [anon_sym_volatile] = ACTIONS(1838), - [anon_sym_restrict] = ACTIONS(1838), - [anon_sym__Atomic] = ACTIONS(1838), - [anon_sym_in] = ACTIONS(1838), - [anon_sym_out] = ACTIONS(1838), - [anon_sym_inout] = ACTIONS(1838), - [anon_sym_bycopy] = ACTIONS(1838), - [anon_sym_byref] = ACTIONS(1838), - [anon_sym_oneway] = ACTIONS(1838), - [anon_sym__Nullable] = ACTIONS(1838), - [anon_sym__Nonnull] = ACTIONS(1838), - [anon_sym__Nullable_result] = ACTIONS(1838), - [anon_sym__Null_unspecified] = ACTIONS(1838), - [anon_sym___autoreleasing] = ACTIONS(1838), - [anon_sym___nullable] = ACTIONS(1838), - [anon_sym___nonnull] = ACTIONS(1838), - [anon_sym___strong] = ACTIONS(1838), - [anon_sym___weak] = ACTIONS(1838), - [anon_sym___bridge] = ACTIONS(1838), - [anon_sym___bridge_transfer] = ACTIONS(1838), - [anon_sym___bridge_retained] = ACTIONS(1838), - [anon_sym___unsafe_unretained] = ACTIONS(1838), - [anon_sym___block] = ACTIONS(1838), - [anon_sym___kindof] = ACTIONS(1838), - [anon_sym___unused] = ACTIONS(1838), - [anon_sym__Complex] = ACTIONS(1838), - [anon_sym___complex] = ACTIONS(1838), - [anon_sym_IBOutlet] = ACTIONS(1838), - [anon_sym_IBInspectable] = ACTIONS(1838), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1838), - [anon_sym_signed] = ACTIONS(1838), - [anon_sym_unsigned] = ACTIONS(1838), - [anon_sym_long] = ACTIONS(1838), - [anon_sym_short] = ACTIONS(1838), - [sym_primitive_type] = ACTIONS(1838), - [anon_sym_enum] = ACTIONS(1838), - [anon_sym_NS_ENUM] = ACTIONS(1838), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1838), - [anon_sym_NS_OPTIONS] = ACTIONS(1838), - [anon_sym_struct] = ACTIONS(1838), - [anon_sym_union] = ACTIONS(1838), - [anon_sym_if] = ACTIONS(1838), - [anon_sym_switch] = ACTIONS(1838), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1838), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(1838), - [anon_sym_for] = ACTIONS(1838), - [anon_sym_return] = ACTIONS(1838), - [anon_sym_break] = ACTIONS(1838), - [anon_sym_continue] = ACTIONS(1838), - [anon_sym_goto] = ACTIONS(1838), - [anon_sym_DASH_DASH] = ACTIONS(1840), - [anon_sym_PLUS_PLUS] = ACTIONS(1840), - [anon_sym_sizeof] = ACTIONS(1838), - [sym_number_literal] = ACTIONS(1840), - [anon_sym_L_SQUOTE] = ACTIONS(1840), - [anon_sym_u_SQUOTE] = ACTIONS(1840), - [anon_sym_U_SQUOTE] = ACTIONS(1840), - [anon_sym_u8_SQUOTE] = ACTIONS(1840), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1838), - [sym_false] = ACTIONS(1838), - [sym_null] = ACTIONS(1838), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1840), - [anon_sym_ATimport] = ACTIONS(1840), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1838), - [anon_sym_ATcompatibility_alias] = ACTIONS(1840), - [anon_sym_ATprotocol] = ACTIONS(1840), - [anon_sym_ATclass] = ACTIONS(1840), - [anon_sym_ATinterface] = ACTIONS(1840), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1838), - [sym_method_attribute_specifier] = ACTIONS(1838), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1838), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1838), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1838), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1838), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1838), - [anon_sym_NS_AVAILABLE] = ACTIONS(1838), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1838), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_API_AVAILABLE] = ACTIONS(1838), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_API_DEPRECATED] = ACTIONS(1838), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1838), - [anon_sym___deprecated_msg] = ACTIONS(1838), - [anon_sym___deprecated_enum_msg] = ACTIONS(1838), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1838), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1838), - [anon_sym_ATimplementation] = ACTIONS(1840), - [anon_sym_typeof] = ACTIONS(1838), - [anon_sym___typeof] = ACTIONS(1838), - [anon_sym___typeof__] = ACTIONS(1838), - [sym_self] = ACTIONS(1838), - [sym_super] = ACTIONS(1838), - [sym_nil] = ACTIONS(1838), - [sym_id] = ACTIONS(1838), - [sym_instancetype] = ACTIONS(1838), - [sym_Class] = ACTIONS(1838), - [sym_SEL] = ACTIONS(1838), - [sym_IMP] = ACTIONS(1838), - [sym_BOOL] = ACTIONS(1838), - [sym_auto] = ACTIONS(1838), - [anon_sym_ATautoreleasepool] = ACTIONS(1840), - [anon_sym_ATsynchronized] = ACTIONS(1840), - [anon_sym_ATtry] = ACTIONS(1840), - [anon_sym_ATthrow] = ACTIONS(1840), - [anon_sym_ATselector] = ACTIONS(1840), - [anon_sym_ATencode] = ACTIONS(1840), - [anon_sym_AT] = ACTIONS(1838), - [sym_YES] = ACTIONS(1838), - [sym_NO] = ACTIONS(1838), - [anon_sym___builtin_available] = ACTIONS(1838), - [anon_sym_ATavailable] = ACTIONS(1840), - [anon_sym_va_arg] = ACTIONS(1838), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [647] = { - [sym_identifier] = ACTIONS(1850), - [aux_sym_preproc_include_token1] = ACTIONS(1852), - [aux_sym_preproc_def_token1] = ACTIONS(1852), - [aux_sym_preproc_if_token1] = ACTIONS(1850), - [aux_sym_preproc_if_token2] = ACTIONS(1850), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1850), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1850), - [aux_sym_preproc_else_token1] = ACTIONS(1850), - [aux_sym_preproc_elif_token1] = ACTIONS(1850), - [anon_sym_LPAREN2] = ACTIONS(1852), - [anon_sym_BANG] = ACTIONS(1852), - [anon_sym_TILDE] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1852), - [anon_sym_CARET] = ACTIONS(1852), - [anon_sym_AMP] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_typedef] = ACTIONS(1850), - [anon_sym_extern] = ACTIONS(1850), - [anon_sym___attribute] = ACTIONS(1850), - [anon_sym___attribute__] = ACTIONS(1850), - [anon_sym___declspec] = ACTIONS(1850), - [anon_sym___cdecl] = ACTIONS(1850), - [anon_sym___clrcall] = ACTIONS(1850), - [anon_sym___stdcall] = ACTIONS(1850), - [anon_sym___fastcall] = ACTIONS(1850), - [anon_sym___thiscall] = ACTIONS(1850), - [anon_sym___vectorcall] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1852), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1850), - [anon_sym_auto] = ACTIONS(1850), - [anon_sym_register] = ACTIONS(1850), - [anon_sym_inline] = ACTIONS(1850), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1850), - [anon_sym_const] = ACTIONS(1850), - [anon_sym_volatile] = ACTIONS(1850), - [anon_sym_restrict] = ACTIONS(1850), - [anon_sym__Atomic] = ACTIONS(1850), - [anon_sym_in] = ACTIONS(1850), - [anon_sym_out] = ACTIONS(1850), - [anon_sym_inout] = ACTIONS(1850), - [anon_sym_bycopy] = ACTIONS(1850), - [anon_sym_byref] = ACTIONS(1850), - [anon_sym_oneway] = ACTIONS(1850), - [anon_sym__Nullable] = ACTIONS(1850), - [anon_sym__Nonnull] = ACTIONS(1850), - [anon_sym__Nullable_result] = ACTIONS(1850), - [anon_sym__Null_unspecified] = ACTIONS(1850), - [anon_sym___autoreleasing] = ACTIONS(1850), - [anon_sym___nullable] = ACTIONS(1850), - [anon_sym___nonnull] = ACTIONS(1850), - [anon_sym___strong] = ACTIONS(1850), - [anon_sym___weak] = ACTIONS(1850), - [anon_sym___bridge] = ACTIONS(1850), - [anon_sym___bridge_transfer] = ACTIONS(1850), - [anon_sym___bridge_retained] = ACTIONS(1850), - [anon_sym___unsafe_unretained] = ACTIONS(1850), - [anon_sym___block] = ACTIONS(1850), - [anon_sym___kindof] = ACTIONS(1850), - [anon_sym___unused] = ACTIONS(1850), - [anon_sym__Complex] = ACTIONS(1850), - [anon_sym___complex] = ACTIONS(1850), - [anon_sym_IBOutlet] = ACTIONS(1850), - [anon_sym_IBInspectable] = ACTIONS(1850), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1850), - [anon_sym_signed] = ACTIONS(1850), - [anon_sym_unsigned] = ACTIONS(1850), - [anon_sym_long] = ACTIONS(1850), - [anon_sym_short] = ACTIONS(1850), - [sym_primitive_type] = ACTIONS(1850), - [anon_sym_enum] = ACTIONS(1850), - [anon_sym_NS_ENUM] = ACTIONS(1850), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1850), - [anon_sym_NS_OPTIONS] = ACTIONS(1850), - [anon_sym_struct] = ACTIONS(1850), - [anon_sym_union] = ACTIONS(1850), - [anon_sym_if] = ACTIONS(1850), - [anon_sym_switch] = ACTIONS(1850), - [anon_sym_case] = ACTIONS(1850), - [anon_sym_default] = ACTIONS(1850), - [anon_sym_while] = ACTIONS(1850), - [anon_sym_do] = ACTIONS(1850), - [anon_sym_for] = ACTIONS(1850), - [anon_sym_return] = ACTIONS(1850), - [anon_sym_break] = ACTIONS(1850), - [anon_sym_continue] = ACTIONS(1850), - [anon_sym_goto] = ACTIONS(1850), - [anon_sym_DASH_DASH] = ACTIONS(1852), - [anon_sym_PLUS_PLUS] = ACTIONS(1852), - [anon_sym_sizeof] = ACTIONS(1850), - [sym_number_literal] = ACTIONS(1852), - [anon_sym_L_SQUOTE] = ACTIONS(1852), - [anon_sym_u_SQUOTE] = ACTIONS(1852), - [anon_sym_U_SQUOTE] = ACTIONS(1852), - [anon_sym_u8_SQUOTE] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_L_DQUOTE] = ACTIONS(1852), - [anon_sym_u_DQUOTE] = ACTIONS(1852), - [anon_sym_U_DQUOTE] = ACTIONS(1852), - [anon_sym_u8_DQUOTE] = ACTIONS(1852), - [anon_sym_DQUOTE] = ACTIONS(1852), - [sym_true] = ACTIONS(1850), - [sym_false] = ACTIONS(1850), - [sym_null] = ACTIONS(1850), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1852), - [anon_sym_ATimport] = ACTIONS(1852), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1850), - [anon_sym_ATcompatibility_alias] = ACTIONS(1852), - [anon_sym_ATprotocol] = ACTIONS(1852), - [anon_sym_ATclass] = ACTIONS(1852), - [anon_sym_ATinterface] = ACTIONS(1852), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1850), - [sym_method_attribute_specifier] = ACTIONS(1850), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1850), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1850), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1850), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1850), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1850), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1850), - [anon_sym_NS_AVAILABLE] = ACTIONS(1850), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1850), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1850), - [anon_sym_API_AVAILABLE] = ACTIONS(1850), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1850), - [anon_sym_API_DEPRECATED] = ACTIONS(1850), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1850), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1850), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1850), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1850), - [anon_sym___deprecated_msg] = ACTIONS(1850), - [anon_sym___deprecated_enum_msg] = ACTIONS(1850), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1850), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1850), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1850), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1850), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1850), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1850), - [anon_sym_ATimplementation] = ACTIONS(1852), - [anon_sym_typeof] = ACTIONS(1850), - [anon_sym___typeof] = ACTIONS(1850), - [anon_sym___typeof__] = ACTIONS(1850), - [sym_self] = ACTIONS(1850), - [sym_super] = ACTIONS(1850), - [sym_nil] = ACTIONS(1850), - [sym_id] = ACTIONS(1850), - [sym_instancetype] = ACTIONS(1850), - [sym_Class] = ACTIONS(1850), - [sym_SEL] = ACTIONS(1850), - [sym_IMP] = ACTIONS(1850), - [sym_BOOL] = ACTIONS(1850), - [sym_auto] = ACTIONS(1850), - [anon_sym_ATautoreleasepool] = ACTIONS(1852), - [anon_sym_ATsynchronized] = ACTIONS(1852), - [anon_sym_ATtry] = ACTIONS(1852), - [anon_sym_ATthrow] = ACTIONS(1852), - [anon_sym_ATselector] = ACTIONS(1852), - [anon_sym_ATencode] = ACTIONS(1852), - [anon_sym_AT] = ACTIONS(1850), - [sym_YES] = ACTIONS(1850), - [sym_NO] = ACTIONS(1850), - [anon_sym___builtin_available] = ACTIONS(1850), - [anon_sym_ATavailable] = ACTIONS(1852), - [anon_sym_va_arg] = ACTIONS(1850), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [648] = { - [sym_identifier] = ACTIONS(1854), - [aux_sym_preproc_include_token1] = ACTIONS(1856), - [aux_sym_preproc_def_token1] = ACTIONS(1856), - [aux_sym_preproc_if_token1] = ACTIONS(1854), - [aux_sym_preproc_if_token2] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1854), - [aux_sym_preproc_else_token1] = ACTIONS(1854), - [aux_sym_preproc_elif_token1] = ACTIONS(1854), - [anon_sym_LPAREN2] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym___attribute] = ACTIONS(1854), - [anon_sym___attribute__] = ACTIONS(1854), - [anon_sym___declspec] = ACTIONS(1854), - [anon_sym___cdecl] = ACTIONS(1854), - [anon_sym___clrcall] = ACTIONS(1854), - [anon_sym___stdcall] = ACTIONS(1854), - [anon_sym___fastcall] = ACTIONS(1854), - [anon_sym___thiscall] = ACTIONS(1854), - [anon_sym___vectorcall] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_auto] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_volatile] = ACTIONS(1854), - [anon_sym_restrict] = ACTIONS(1854), - [anon_sym__Atomic] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_out] = ACTIONS(1854), - [anon_sym_inout] = ACTIONS(1854), - [anon_sym_bycopy] = ACTIONS(1854), - [anon_sym_byref] = ACTIONS(1854), - [anon_sym_oneway] = ACTIONS(1854), - [anon_sym__Nullable] = ACTIONS(1854), - [anon_sym__Nonnull] = ACTIONS(1854), - [anon_sym__Nullable_result] = ACTIONS(1854), - [anon_sym__Null_unspecified] = ACTIONS(1854), - [anon_sym___autoreleasing] = ACTIONS(1854), - [anon_sym___nullable] = ACTIONS(1854), - [anon_sym___nonnull] = ACTIONS(1854), - [anon_sym___strong] = ACTIONS(1854), - [anon_sym___weak] = ACTIONS(1854), - [anon_sym___bridge] = ACTIONS(1854), - [anon_sym___bridge_transfer] = ACTIONS(1854), - [anon_sym___bridge_retained] = ACTIONS(1854), - [anon_sym___unsafe_unretained] = ACTIONS(1854), - [anon_sym___block] = ACTIONS(1854), - [anon_sym___kindof] = ACTIONS(1854), - [anon_sym___unused] = ACTIONS(1854), - [anon_sym__Complex] = ACTIONS(1854), - [anon_sym___complex] = ACTIONS(1854), - [anon_sym_IBOutlet] = ACTIONS(1854), - [anon_sym_IBInspectable] = ACTIONS(1854), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1854), - [anon_sym_signed] = ACTIONS(1854), - [anon_sym_unsigned] = ACTIONS(1854), - [anon_sym_long] = ACTIONS(1854), - [anon_sym_short] = ACTIONS(1854), - [sym_primitive_type] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_NS_ENUM] = ACTIONS(1854), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1854), - [anon_sym_NS_OPTIONS] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_goto] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_sizeof] = ACTIONS(1854), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_L_SQUOTE] = ACTIONS(1856), - [anon_sym_u_SQUOTE] = ACTIONS(1856), - [anon_sym_U_SQUOTE] = ACTIONS(1856), - [anon_sym_u8_SQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_L_DQUOTE] = ACTIONS(1856), - [anon_sym_u_DQUOTE] = ACTIONS(1856), - [anon_sym_U_DQUOTE] = ACTIONS(1856), - [anon_sym_u8_DQUOTE] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1856), - [anon_sym_ATimport] = ACTIONS(1856), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1854), - [anon_sym_ATcompatibility_alias] = ACTIONS(1856), - [anon_sym_ATprotocol] = ACTIONS(1856), - [anon_sym_ATclass] = ACTIONS(1856), - [anon_sym_ATinterface] = ACTIONS(1856), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1854), - [sym_method_attribute_specifier] = ACTIONS(1854), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1854), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE] = ACTIONS(1854), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_API_AVAILABLE] = ACTIONS(1854), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_API_DEPRECATED] = ACTIONS(1854), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1854), - [anon_sym___deprecated_msg] = ACTIONS(1854), - [anon_sym___deprecated_enum_msg] = ACTIONS(1854), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1854), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1854), - [anon_sym_ATimplementation] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym___typeof] = ACTIONS(1854), - [anon_sym___typeof__] = ACTIONS(1854), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_nil] = ACTIONS(1854), - [sym_id] = ACTIONS(1854), - [sym_instancetype] = ACTIONS(1854), - [sym_Class] = ACTIONS(1854), - [sym_SEL] = ACTIONS(1854), - [sym_IMP] = ACTIONS(1854), - [sym_BOOL] = ACTIONS(1854), - [sym_auto] = ACTIONS(1854), - [anon_sym_ATautoreleasepool] = ACTIONS(1856), - [anon_sym_ATsynchronized] = ACTIONS(1856), - [anon_sym_ATtry] = ACTIONS(1856), - [anon_sym_ATthrow] = ACTIONS(1856), - [anon_sym_ATselector] = ACTIONS(1856), - [anon_sym_ATencode] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1854), - [sym_YES] = ACTIONS(1854), - [sym_NO] = ACTIONS(1854), - [anon_sym___builtin_available] = ACTIONS(1854), - [anon_sym_ATavailable] = ACTIONS(1856), - [anon_sym_va_arg] = ACTIONS(1854), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [649] = { - [sym_identifier] = ACTIONS(1854), - [aux_sym_preproc_include_token1] = ACTIONS(1856), - [aux_sym_preproc_def_token1] = ACTIONS(1856), - [aux_sym_preproc_if_token1] = ACTIONS(1854), - [aux_sym_preproc_if_token2] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1854), - [aux_sym_preproc_else_token1] = ACTIONS(1854), - [aux_sym_preproc_elif_token1] = ACTIONS(1854), - [anon_sym_LPAREN2] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym___attribute] = ACTIONS(1854), - [anon_sym___attribute__] = ACTIONS(1854), - [anon_sym___declspec] = ACTIONS(1854), - [anon_sym___cdecl] = ACTIONS(1854), - [anon_sym___clrcall] = ACTIONS(1854), - [anon_sym___stdcall] = ACTIONS(1854), - [anon_sym___fastcall] = ACTIONS(1854), - [anon_sym___thiscall] = ACTIONS(1854), - [anon_sym___vectorcall] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_auto] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_volatile] = ACTIONS(1854), - [anon_sym_restrict] = ACTIONS(1854), - [anon_sym__Atomic] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_out] = ACTIONS(1854), - [anon_sym_inout] = ACTIONS(1854), - [anon_sym_bycopy] = ACTIONS(1854), - [anon_sym_byref] = ACTIONS(1854), - [anon_sym_oneway] = ACTIONS(1854), - [anon_sym__Nullable] = ACTIONS(1854), - [anon_sym__Nonnull] = ACTIONS(1854), - [anon_sym__Nullable_result] = ACTIONS(1854), - [anon_sym__Null_unspecified] = ACTIONS(1854), - [anon_sym___autoreleasing] = ACTIONS(1854), - [anon_sym___nullable] = ACTIONS(1854), - [anon_sym___nonnull] = ACTIONS(1854), - [anon_sym___strong] = ACTIONS(1854), - [anon_sym___weak] = ACTIONS(1854), - [anon_sym___bridge] = ACTIONS(1854), - [anon_sym___bridge_transfer] = ACTIONS(1854), - [anon_sym___bridge_retained] = ACTIONS(1854), - [anon_sym___unsafe_unretained] = ACTIONS(1854), - [anon_sym___block] = ACTIONS(1854), - [anon_sym___kindof] = ACTIONS(1854), - [anon_sym___unused] = ACTIONS(1854), - [anon_sym__Complex] = ACTIONS(1854), - [anon_sym___complex] = ACTIONS(1854), - [anon_sym_IBOutlet] = ACTIONS(1854), - [anon_sym_IBInspectable] = ACTIONS(1854), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1854), - [anon_sym_signed] = ACTIONS(1854), - [anon_sym_unsigned] = ACTIONS(1854), - [anon_sym_long] = ACTIONS(1854), - [anon_sym_short] = ACTIONS(1854), - [sym_primitive_type] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_NS_ENUM] = ACTIONS(1854), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1854), - [anon_sym_NS_OPTIONS] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_goto] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_sizeof] = ACTIONS(1854), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_L_SQUOTE] = ACTIONS(1856), - [anon_sym_u_SQUOTE] = ACTIONS(1856), - [anon_sym_U_SQUOTE] = ACTIONS(1856), - [anon_sym_u8_SQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_L_DQUOTE] = ACTIONS(1856), - [anon_sym_u_DQUOTE] = ACTIONS(1856), - [anon_sym_U_DQUOTE] = ACTIONS(1856), - [anon_sym_u8_DQUOTE] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1856), - [anon_sym_ATimport] = ACTIONS(1856), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1854), - [anon_sym_ATcompatibility_alias] = ACTIONS(1856), - [anon_sym_ATprotocol] = ACTIONS(1856), - [anon_sym_ATclass] = ACTIONS(1856), - [anon_sym_ATinterface] = ACTIONS(1856), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1854), - [sym_method_attribute_specifier] = ACTIONS(1854), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1854), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE] = ACTIONS(1854), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_API_AVAILABLE] = ACTIONS(1854), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_API_DEPRECATED] = ACTIONS(1854), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1854), - [anon_sym___deprecated_msg] = ACTIONS(1854), - [anon_sym___deprecated_enum_msg] = ACTIONS(1854), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1854), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1854), - [anon_sym_ATimplementation] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym___typeof] = ACTIONS(1854), - [anon_sym___typeof__] = ACTIONS(1854), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_nil] = ACTIONS(1854), - [sym_id] = ACTIONS(1854), - [sym_instancetype] = ACTIONS(1854), - [sym_Class] = ACTIONS(1854), - [sym_SEL] = ACTIONS(1854), - [sym_IMP] = ACTIONS(1854), - [sym_BOOL] = ACTIONS(1854), - [sym_auto] = ACTIONS(1854), - [anon_sym_ATautoreleasepool] = ACTIONS(1856), - [anon_sym_ATsynchronized] = ACTIONS(1856), - [anon_sym_ATtry] = ACTIONS(1856), - [anon_sym_ATthrow] = ACTIONS(1856), - [anon_sym_ATselector] = ACTIONS(1856), - [anon_sym_ATencode] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1854), - [sym_YES] = ACTIONS(1854), - [sym_NO] = ACTIONS(1854), - [anon_sym___builtin_available] = ACTIONS(1854), - [anon_sym_ATavailable] = ACTIONS(1856), - [anon_sym_va_arg] = ACTIONS(1854), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [650] = { - [sym_identifier] = ACTIONS(1854), - [aux_sym_preproc_include_token1] = ACTIONS(1856), - [aux_sym_preproc_def_token1] = ACTIONS(1856), - [aux_sym_preproc_if_token1] = ACTIONS(1854), - [aux_sym_preproc_if_token2] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1854), - [aux_sym_preproc_else_token1] = ACTIONS(1854), - [aux_sym_preproc_elif_token1] = ACTIONS(1854), - [anon_sym_LPAREN2] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym___attribute] = ACTIONS(1854), - [anon_sym___attribute__] = ACTIONS(1854), - [anon_sym___declspec] = ACTIONS(1854), - [anon_sym___cdecl] = ACTIONS(1854), - [anon_sym___clrcall] = ACTIONS(1854), - [anon_sym___stdcall] = ACTIONS(1854), - [anon_sym___fastcall] = ACTIONS(1854), - [anon_sym___thiscall] = ACTIONS(1854), - [anon_sym___vectorcall] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_auto] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_volatile] = ACTIONS(1854), - [anon_sym_restrict] = ACTIONS(1854), - [anon_sym__Atomic] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_out] = ACTIONS(1854), - [anon_sym_inout] = ACTIONS(1854), - [anon_sym_bycopy] = ACTIONS(1854), - [anon_sym_byref] = ACTIONS(1854), - [anon_sym_oneway] = ACTIONS(1854), - [anon_sym__Nullable] = ACTIONS(1854), - [anon_sym__Nonnull] = ACTIONS(1854), - [anon_sym__Nullable_result] = ACTIONS(1854), - [anon_sym__Null_unspecified] = ACTIONS(1854), - [anon_sym___autoreleasing] = ACTIONS(1854), - [anon_sym___nullable] = ACTIONS(1854), - [anon_sym___nonnull] = ACTIONS(1854), - [anon_sym___strong] = ACTIONS(1854), - [anon_sym___weak] = ACTIONS(1854), - [anon_sym___bridge] = ACTIONS(1854), - [anon_sym___bridge_transfer] = ACTIONS(1854), - [anon_sym___bridge_retained] = ACTIONS(1854), - [anon_sym___unsafe_unretained] = ACTIONS(1854), - [anon_sym___block] = ACTIONS(1854), - [anon_sym___kindof] = ACTIONS(1854), - [anon_sym___unused] = ACTIONS(1854), - [anon_sym__Complex] = ACTIONS(1854), - [anon_sym___complex] = ACTIONS(1854), - [anon_sym_IBOutlet] = ACTIONS(1854), - [anon_sym_IBInspectable] = ACTIONS(1854), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1854), - [anon_sym_signed] = ACTIONS(1854), - [anon_sym_unsigned] = ACTIONS(1854), - [anon_sym_long] = ACTIONS(1854), - [anon_sym_short] = ACTIONS(1854), - [sym_primitive_type] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_NS_ENUM] = ACTIONS(1854), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1854), - [anon_sym_NS_OPTIONS] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_goto] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_sizeof] = ACTIONS(1854), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_L_SQUOTE] = ACTIONS(1856), - [anon_sym_u_SQUOTE] = ACTIONS(1856), - [anon_sym_U_SQUOTE] = ACTIONS(1856), - [anon_sym_u8_SQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_L_DQUOTE] = ACTIONS(1856), - [anon_sym_u_DQUOTE] = ACTIONS(1856), - [anon_sym_U_DQUOTE] = ACTIONS(1856), - [anon_sym_u8_DQUOTE] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1856), - [anon_sym_ATimport] = ACTIONS(1856), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1854), - [anon_sym_ATcompatibility_alias] = ACTIONS(1856), - [anon_sym_ATprotocol] = ACTIONS(1856), - [anon_sym_ATclass] = ACTIONS(1856), - [anon_sym_ATinterface] = ACTIONS(1856), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1854), - [sym_method_attribute_specifier] = ACTIONS(1854), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1854), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE] = ACTIONS(1854), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_API_AVAILABLE] = ACTIONS(1854), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_API_DEPRECATED] = ACTIONS(1854), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1854), - [anon_sym___deprecated_msg] = ACTIONS(1854), - [anon_sym___deprecated_enum_msg] = ACTIONS(1854), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1854), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1854), - [anon_sym_ATimplementation] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym___typeof] = ACTIONS(1854), - [anon_sym___typeof__] = ACTIONS(1854), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_nil] = ACTIONS(1854), - [sym_id] = ACTIONS(1854), - [sym_instancetype] = ACTIONS(1854), - [sym_Class] = ACTIONS(1854), - [sym_SEL] = ACTIONS(1854), - [sym_IMP] = ACTIONS(1854), - [sym_BOOL] = ACTIONS(1854), - [sym_auto] = ACTIONS(1854), - [anon_sym_ATautoreleasepool] = ACTIONS(1856), - [anon_sym_ATsynchronized] = ACTIONS(1856), - [anon_sym_ATtry] = ACTIONS(1856), - [anon_sym_ATthrow] = ACTIONS(1856), - [anon_sym_ATselector] = ACTIONS(1856), - [anon_sym_ATencode] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1854), - [sym_YES] = ACTIONS(1854), - [sym_NO] = ACTIONS(1854), - [anon_sym___builtin_available] = ACTIONS(1854), - [anon_sym_ATavailable] = ACTIONS(1856), - [anon_sym_va_arg] = ACTIONS(1854), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [651] = { - [sym_identifier] = ACTIONS(1854), - [aux_sym_preproc_include_token1] = ACTIONS(1856), - [aux_sym_preproc_def_token1] = ACTIONS(1856), - [aux_sym_preproc_if_token1] = ACTIONS(1854), - [aux_sym_preproc_if_token2] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1854), - [aux_sym_preproc_else_token1] = ACTIONS(1854), - [aux_sym_preproc_elif_token1] = ACTIONS(1854), - [anon_sym_LPAREN2] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym___attribute] = ACTIONS(1854), - [anon_sym___attribute__] = ACTIONS(1854), - [anon_sym___declspec] = ACTIONS(1854), - [anon_sym___cdecl] = ACTIONS(1854), - [anon_sym___clrcall] = ACTIONS(1854), - [anon_sym___stdcall] = ACTIONS(1854), - [anon_sym___fastcall] = ACTIONS(1854), - [anon_sym___thiscall] = ACTIONS(1854), - [anon_sym___vectorcall] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_auto] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_volatile] = ACTIONS(1854), - [anon_sym_restrict] = ACTIONS(1854), - [anon_sym__Atomic] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_out] = ACTIONS(1854), - [anon_sym_inout] = ACTIONS(1854), - [anon_sym_bycopy] = ACTIONS(1854), - [anon_sym_byref] = ACTIONS(1854), - [anon_sym_oneway] = ACTIONS(1854), - [anon_sym__Nullable] = ACTIONS(1854), - [anon_sym__Nonnull] = ACTIONS(1854), - [anon_sym__Nullable_result] = ACTIONS(1854), - [anon_sym__Null_unspecified] = ACTIONS(1854), - [anon_sym___autoreleasing] = ACTIONS(1854), - [anon_sym___nullable] = ACTIONS(1854), - [anon_sym___nonnull] = ACTIONS(1854), - [anon_sym___strong] = ACTIONS(1854), - [anon_sym___weak] = ACTIONS(1854), - [anon_sym___bridge] = ACTIONS(1854), - [anon_sym___bridge_transfer] = ACTIONS(1854), - [anon_sym___bridge_retained] = ACTIONS(1854), - [anon_sym___unsafe_unretained] = ACTIONS(1854), - [anon_sym___block] = ACTIONS(1854), - [anon_sym___kindof] = ACTIONS(1854), - [anon_sym___unused] = ACTIONS(1854), - [anon_sym__Complex] = ACTIONS(1854), - [anon_sym___complex] = ACTIONS(1854), - [anon_sym_IBOutlet] = ACTIONS(1854), - [anon_sym_IBInspectable] = ACTIONS(1854), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1854), - [anon_sym_signed] = ACTIONS(1854), - [anon_sym_unsigned] = ACTIONS(1854), - [anon_sym_long] = ACTIONS(1854), - [anon_sym_short] = ACTIONS(1854), - [sym_primitive_type] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_NS_ENUM] = ACTIONS(1854), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1854), - [anon_sym_NS_OPTIONS] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_goto] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_sizeof] = ACTIONS(1854), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_L_SQUOTE] = ACTIONS(1856), - [anon_sym_u_SQUOTE] = ACTIONS(1856), - [anon_sym_U_SQUOTE] = ACTIONS(1856), - [anon_sym_u8_SQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_L_DQUOTE] = ACTIONS(1856), - [anon_sym_u_DQUOTE] = ACTIONS(1856), - [anon_sym_U_DQUOTE] = ACTIONS(1856), - [anon_sym_u8_DQUOTE] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1856), - [anon_sym_ATimport] = ACTIONS(1856), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1854), - [anon_sym_ATcompatibility_alias] = ACTIONS(1856), - [anon_sym_ATprotocol] = ACTIONS(1856), - [anon_sym_ATclass] = ACTIONS(1856), - [anon_sym_ATinterface] = ACTIONS(1856), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1854), - [sym_method_attribute_specifier] = ACTIONS(1854), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1854), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE] = ACTIONS(1854), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_API_AVAILABLE] = ACTIONS(1854), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_API_DEPRECATED] = ACTIONS(1854), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1854), - [anon_sym___deprecated_msg] = ACTIONS(1854), - [anon_sym___deprecated_enum_msg] = ACTIONS(1854), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1854), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1854), - [anon_sym_ATimplementation] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym___typeof] = ACTIONS(1854), - [anon_sym___typeof__] = ACTIONS(1854), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_nil] = ACTIONS(1854), - [sym_id] = ACTIONS(1854), - [sym_instancetype] = ACTIONS(1854), - [sym_Class] = ACTIONS(1854), - [sym_SEL] = ACTIONS(1854), - [sym_IMP] = ACTIONS(1854), - [sym_BOOL] = ACTIONS(1854), - [sym_auto] = ACTIONS(1854), - [anon_sym_ATautoreleasepool] = ACTIONS(1856), - [anon_sym_ATsynchronized] = ACTIONS(1856), - [anon_sym_ATtry] = ACTIONS(1856), - [anon_sym_ATthrow] = ACTIONS(1856), - [anon_sym_ATselector] = ACTIONS(1856), - [anon_sym_ATencode] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1854), - [sym_YES] = ACTIONS(1854), - [sym_NO] = ACTIONS(1854), - [anon_sym___builtin_available] = ACTIONS(1854), - [anon_sym_ATavailable] = ACTIONS(1856), - [anon_sym_va_arg] = ACTIONS(1854), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [652] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [aux_sym_preproc_else_token1] = ACTIONS(1846), - [aux_sym_preproc_elif_token1] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [653] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [aux_sym_preproc_else_token1] = ACTIONS(1846), - [aux_sym_preproc_elif_token1] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [654] = { - [sym_identifier] = ACTIONS(1854), - [aux_sym_preproc_include_token1] = ACTIONS(1856), - [aux_sym_preproc_def_token1] = ACTIONS(1856), - [aux_sym_preproc_if_token1] = ACTIONS(1854), - [aux_sym_preproc_if_token2] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1854), - [aux_sym_preproc_else_token1] = ACTIONS(1854), - [aux_sym_preproc_elif_token1] = ACTIONS(1854), - [anon_sym_LPAREN2] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym___attribute] = ACTIONS(1854), - [anon_sym___attribute__] = ACTIONS(1854), - [anon_sym___declspec] = ACTIONS(1854), - [anon_sym___cdecl] = ACTIONS(1854), - [anon_sym___clrcall] = ACTIONS(1854), - [anon_sym___stdcall] = ACTIONS(1854), - [anon_sym___fastcall] = ACTIONS(1854), - [anon_sym___thiscall] = ACTIONS(1854), - [anon_sym___vectorcall] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_auto] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_volatile] = ACTIONS(1854), - [anon_sym_restrict] = ACTIONS(1854), - [anon_sym__Atomic] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_out] = ACTIONS(1854), - [anon_sym_inout] = ACTIONS(1854), - [anon_sym_bycopy] = ACTIONS(1854), - [anon_sym_byref] = ACTIONS(1854), - [anon_sym_oneway] = ACTIONS(1854), - [anon_sym__Nullable] = ACTIONS(1854), - [anon_sym__Nonnull] = ACTIONS(1854), - [anon_sym__Nullable_result] = ACTIONS(1854), - [anon_sym__Null_unspecified] = ACTIONS(1854), - [anon_sym___autoreleasing] = ACTIONS(1854), - [anon_sym___nullable] = ACTIONS(1854), - [anon_sym___nonnull] = ACTIONS(1854), - [anon_sym___strong] = ACTIONS(1854), - [anon_sym___weak] = ACTIONS(1854), - [anon_sym___bridge] = ACTIONS(1854), - [anon_sym___bridge_transfer] = ACTIONS(1854), - [anon_sym___bridge_retained] = ACTIONS(1854), - [anon_sym___unsafe_unretained] = ACTIONS(1854), - [anon_sym___block] = ACTIONS(1854), - [anon_sym___kindof] = ACTIONS(1854), - [anon_sym___unused] = ACTIONS(1854), - [anon_sym__Complex] = ACTIONS(1854), - [anon_sym___complex] = ACTIONS(1854), - [anon_sym_IBOutlet] = ACTIONS(1854), - [anon_sym_IBInspectable] = ACTIONS(1854), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1854), - [anon_sym_signed] = ACTIONS(1854), - [anon_sym_unsigned] = ACTIONS(1854), - [anon_sym_long] = ACTIONS(1854), - [anon_sym_short] = ACTIONS(1854), - [sym_primitive_type] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_NS_ENUM] = ACTIONS(1854), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1854), - [anon_sym_NS_OPTIONS] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_goto] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_sizeof] = ACTIONS(1854), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_L_SQUOTE] = ACTIONS(1856), - [anon_sym_u_SQUOTE] = ACTIONS(1856), - [anon_sym_U_SQUOTE] = ACTIONS(1856), - [anon_sym_u8_SQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_L_DQUOTE] = ACTIONS(1856), - [anon_sym_u_DQUOTE] = ACTIONS(1856), - [anon_sym_U_DQUOTE] = ACTIONS(1856), - [anon_sym_u8_DQUOTE] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1856), - [anon_sym_ATimport] = ACTIONS(1856), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1854), - [anon_sym_ATcompatibility_alias] = ACTIONS(1856), - [anon_sym_ATprotocol] = ACTIONS(1856), - [anon_sym_ATclass] = ACTIONS(1856), - [anon_sym_ATinterface] = ACTIONS(1856), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1854), - [sym_method_attribute_specifier] = ACTIONS(1854), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1854), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE] = ACTIONS(1854), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_API_AVAILABLE] = ACTIONS(1854), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_API_DEPRECATED] = ACTIONS(1854), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1854), - [anon_sym___deprecated_msg] = ACTIONS(1854), - [anon_sym___deprecated_enum_msg] = ACTIONS(1854), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1854), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1854), - [anon_sym_ATimplementation] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym___typeof] = ACTIONS(1854), - [anon_sym___typeof__] = ACTIONS(1854), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_nil] = ACTIONS(1854), - [sym_id] = ACTIONS(1854), - [sym_instancetype] = ACTIONS(1854), - [sym_Class] = ACTIONS(1854), - [sym_SEL] = ACTIONS(1854), - [sym_IMP] = ACTIONS(1854), - [sym_BOOL] = ACTIONS(1854), - [sym_auto] = ACTIONS(1854), - [anon_sym_ATautoreleasepool] = ACTIONS(1856), - [anon_sym_ATsynchronized] = ACTIONS(1856), - [anon_sym_ATtry] = ACTIONS(1856), - [anon_sym_ATthrow] = ACTIONS(1856), - [anon_sym_ATselector] = ACTIONS(1856), - [anon_sym_ATencode] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1854), - [sym_YES] = ACTIONS(1854), - [sym_NO] = ACTIONS(1854), - [anon_sym___builtin_available] = ACTIONS(1854), - [anon_sym_ATavailable] = ACTIONS(1856), - [anon_sym_va_arg] = ACTIONS(1854), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [655] = { - [sym_identifier] = ACTIONS(1854), - [aux_sym_preproc_include_token1] = ACTIONS(1856), - [aux_sym_preproc_def_token1] = ACTIONS(1856), - [aux_sym_preproc_if_token1] = ACTIONS(1854), - [aux_sym_preproc_if_token2] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1854), - [aux_sym_preproc_else_token1] = ACTIONS(1854), - [aux_sym_preproc_elif_token1] = ACTIONS(1854), - [anon_sym_LPAREN2] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym___attribute] = ACTIONS(1854), - [anon_sym___attribute__] = ACTIONS(1854), - [anon_sym___declspec] = ACTIONS(1854), - [anon_sym___cdecl] = ACTIONS(1854), - [anon_sym___clrcall] = ACTIONS(1854), - [anon_sym___stdcall] = ACTIONS(1854), - [anon_sym___fastcall] = ACTIONS(1854), - [anon_sym___thiscall] = ACTIONS(1854), - [anon_sym___vectorcall] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_auto] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_volatile] = ACTIONS(1854), - [anon_sym_restrict] = ACTIONS(1854), - [anon_sym__Atomic] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_out] = ACTIONS(1854), - [anon_sym_inout] = ACTIONS(1854), - [anon_sym_bycopy] = ACTIONS(1854), - [anon_sym_byref] = ACTIONS(1854), - [anon_sym_oneway] = ACTIONS(1854), - [anon_sym__Nullable] = ACTIONS(1854), - [anon_sym__Nonnull] = ACTIONS(1854), - [anon_sym__Nullable_result] = ACTIONS(1854), - [anon_sym__Null_unspecified] = ACTIONS(1854), - [anon_sym___autoreleasing] = ACTIONS(1854), - [anon_sym___nullable] = ACTIONS(1854), - [anon_sym___nonnull] = ACTIONS(1854), - [anon_sym___strong] = ACTIONS(1854), - [anon_sym___weak] = ACTIONS(1854), - [anon_sym___bridge] = ACTIONS(1854), - [anon_sym___bridge_transfer] = ACTIONS(1854), - [anon_sym___bridge_retained] = ACTIONS(1854), - [anon_sym___unsafe_unretained] = ACTIONS(1854), - [anon_sym___block] = ACTIONS(1854), - [anon_sym___kindof] = ACTIONS(1854), - [anon_sym___unused] = ACTIONS(1854), - [anon_sym__Complex] = ACTIONS(1854), - [anon_sym___complex] = ACTIONS(1854), - [anon_sym_IBOutlet] = ACTIONS(1854), - [anon_sym_IBInspectable] = ACTIONS(1854), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1854), - [anon_sym_signed] = ACTIONS(1854), - [anon_sym_unsigned] = ACTIONS(1854), - [anon_sym_long] = ACTIONS(1854), - [anon_sym_short] = ACTIONS(1854), - [sym_primitive_type] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_NS_ENUM] = ACTIONS(1854), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1854), - [anon_sym_NS_OPTIONS] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_goto] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_sizeof] = ACTIONS(1854), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_L_SQUOTE] = ACTIONS(1856), - [anon_sym_u_SQUOTE] = ACTIONS(1856), - [anon_sym_U_SQUOTE] = ACTIONS(1856), - [anon_sym_u8_SQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_L_DQUOTE] = ACTIONS(1856), - [anon_sym_u_DQUOTE] = ACTIONS(1856), - [anon_sym_U_DQUOTE] = ACTIONS(1856), - [anon_sym_u8_DQUOTE] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1856), - [anon_sym_ATimport] = ACTIONS(1856), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1854), - [anon_sym_ATcompatibility_alias] = ACTIONS(1856), - [anon_sym_ATprotocol] = ACTIONS(1856), - [anon_sym_ATclass] = ACTIONS(1856), - [anon_sym_ATinterface] = ACTIONS(1856), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1854), - [sym_method_attribute_specifier] = ACTIONS(1854), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1854), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE] = ACTIONS(1854), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_API_AVAILABLE] = ACTIONS(1854), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_API_DEPRECATED] = ACTIONS(1854), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1854), - [anon_sym___deprecated_msg] = ACTIONS(1854), - [anon_sym___deprecated_enum_msg] = ACTIONS(1854), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1854), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1854), - [anon_sym_ATimplementation] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym___typeof] = ACTIONS(1854), - [anon_sym___typeof__] = ACTIONS(1854), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_nil] = ACTIONS(1854), - [sym_id] = ACTIONS(1854), - [sym_instancetype] = ACTIONS(1854), - [sym_Class] = ACTIONS(1854), - [sym_SEL] = ACTIONS(1854), - [sym_IMP] = ACTIONS(1854), - [sym_BOOL] = ACTIONS(1854), - [sym_auto] = ACTIONS(1854), - [anon_sym_ATautoreleasepool] = ACTIONS(1856), - [anon_sym_ATsynchronized] = ACTIONS(1856), - [anon_sym_ATtry] = ACTIONS(1856), - [anon_sym_ATthrow] = ACTIONS(1856), - [anon_sym_ATselector] = ACTIONS(1856), - [anon_sym_ATencode] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1854), - [sym_YES] = ACTIONS(1854), - [sym_NO] = ACTIONS(1854), - [anon_sym___builtin_available] = ACTIONS(1854), - [anon_sym_ATavailable] = ACTIONS(1856), - [anon_sym_va_arg] = ACTIONS(1854), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [656] = { - [sym_identifier] = ACTIONS(1858), - [aux_sym_preproc_include_token1] = ACTIONS(1860), - [aux_sym_preproc_def_token1] = ACTIONS(1860), - [aux_sym_preproc_if_token1] = ACTIONS(1858), - [aux_sym_preproc_if_token2] = ACTIONS(1858), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1858), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1858), - [aux_sym_preproc_else_token1] = ACTIONS(1858), - [aux_sym_preproc_elif_token1] = ACTIONS(1858), - [anon_sym_LPAREN2] = ACTIONS(1860), - [anon_sym_BANG] = ACTIONS(1860), - [anon_sym_TILDE] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1860), - [anon_sym_CARET] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_typedef] = ACTIONS(1858), - [anon_sym_extern] = ACTIONS(1858), - [anon_sym___attribute] = ACTIONS(1858), - [anon_sym___attribute__] = ACTIONS(1858), - [anon_sym___declspec] = ACTIONS(1858), - [anon_sym___cdecl] = ACTIONS(1858), - [anon_sym___clrcall] = ACTIONS(1858), - [anon_sym___stdcall] = ACTIONS(1858), - [anon_sym___fastcall] = ACTIONS(1858), - [anon_sym___thiscall] = ACTIONS(1858), - [anon_sym___vectorcall] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1860), - [anon_sym_LBRACK] = ACTIONS(1860), - [anon_sym_static] = ACTIONS(1858), - [anon_sym_auto] = ACTIONS(1858), - [anon_sym_register] = ACTIONS(1858), - [anon_sym_inline] = ACTIONS(1858), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1858), - [anon_sym_const] = ACTIONS(1858), - [anon_sym_volatile] = ACTIONS(1858), - [anon_sym_restrict] = ACTIONS(1858), - [anon_sym__Atomic] = ACTIONS(1858), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_out] = ACTIONS(1858), - [anon_sym_inout] = ACTIONS(1858), - [anon_sym_bycopy] = ACTIONS(1858), - [anon_sym_byref] = ACTIONS(1858), - [anon_sym_oneway] = ACTIONS(1858), - [anon_sym__Nullable] = ACTIONS(1858), - [anon_sym__Nonnull] = ACTIONS(1858), - [anon_sym__Nullable_result] = ACTIONS(1858), - [anon_sym__Null_unspecified] = ACTIONS(1858), - [anon_sym___autoreleasing] = ACTIONS(1858), - [anon_sym___nullable] = ACTIONS(1858), - [anon_sym___nonnull] = ACTIONS(1858), - [anon_sym___strong] = ACTIONS(1858), - [anon_sym___weak] = ACTIONS(1858), - [anon_sym___bridge] = ACTIONS(1858), - [anon_sym___bridge_transfer] = ACTIONS(1858), - [anon_sym___bridge_retained] = ACTIONS(1858), - [anon_sym___unsafe_unretained] = ACTIONS(1858), - [anon_sym___block] = ACTIONS(1858), - [anon_sym___kindof] = ACTIONS(1858), - [anon_sym___unused] = ACTIONS(1858), - [anon_sym__Complex] = ACTIONS(1858), - [anon_sym___complex] = ACTIONS(1858), - [anon_sym_IBOutlet] = ACTIONS(1858), - [anon_sym_IBInspectable] = ACTIONS(1858), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1858), - [anon_sym_signed] = ACTIONS(1858), - [anon_sym_unsigned] = ACTIONS(1858), - [anon_sym_long] = ACTIONS(1858), - [anon_sym_short] = ACTIONS(1858), - [sym_primitive_type] = ACTIONS(1858), - [anon_sym_enum] = ACTIONS(1858), - [anon_sym_NS_ENUM] = ACTIONS(1858), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1858), - [anon_sym_NS_OPTIONS] = ACTIONS(1858), - [anon_sym_struct] = ACTIONS(1858), - [anon_sym_union] = ACTIONS(1858), - [anon_sym_if] = ACTIONS(1858), - [anon_sym_switch] = ACTIONS(1858), - [anon_sym_case] = ACTIONS(1858), - [anon_sym_default] = ACTIONS(1858), - [anon_sym_while] = ACTIONS(1858), - [anon_sym_do] = ACTIONS(1858), - [anon_sym_for] = ACTIONS(1858), - [anon_sym_return] = ACTIONS(1858), - [anon_sym_break] = ACTIONS(1858), - [anon_sym_continue] = ACTIONS(1858), - [anon_sym_goto] = ACTIONS(1858), - [anon_sym_DASH_DASH] = ACTIONS(1860), - [anon_sym_PLUS_PLUS] = ACTIONS(1860), - [anon_sym_sizeof] = ACTIONS(1858), - [sym_number_literal] = ACTIONS(1860), - [anon_sym_L_SQUOTE] = ACTIONS(1860), - [anon_sym_u_SQUOTE] = ACTIONS(1860), - [anon_sym_U_SQUOTE] = ACTIONS(1860), - [anon_sym_u8_SQUOTE] = ACTIONS(1860), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_L_DQUOTE] = ACTIONS(1860), - [anon_sym_u_DQUOTE] = ACTIONS(1860), - [anon_sym_U_DQUOTE] = ACTIONS(1860), - [anon_sym_u8_DQUOTE] = ACTIONS(1860), - [anon_sym_DQUOTE] = ACTIONS(1860), - [sym_true] = ACTIONS(1858), - [sym_false] = ACTIONS(1858), - [sym_null] = ACTIONS(1858), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1860), - [anon_sym_ATimport] = ACTIONS(1860), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1858), - [anon_sym_ATcompatibility_alias] = ACTIONS(1860), - [anon_sym_ATprotocol] = ACTIONS(1860), - [anon_sym_ATclass] = ACTIONS(1860), - [anon_sym_ATinterface] = ACTIONS(1860), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1858), - [sym_method_attribute_specifier] = ACTIONS(1858), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1858), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1858), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1858), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1858), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1858), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1858), - [anon_sym_NS_AVAILABLE] = ACTIONS(1858), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1858), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1858), - [anon_sym_API_AVAILABLE] = ACTIONS(1858), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1858), - [anon_sym_API_DEPRECATED] = ACTIONS(1858), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1858), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1858), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1858), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1858), - [anon_sym___deprecated_msg] = ACTIONS(1858), - [anon_sym___deprecated_enum_msg] = ACTIONS(1858), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1858), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1858), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1858), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1858), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1858), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1858), - [anon_sym_ATimplementation] = ACTIONS(1860), - [anon_sym_typeof] = ACTIONS(1858), - [anon_sym___typeof] = ACTIONS(1858), - [anon_sym___typeof__] = ACTIONS(1858), - [sym_self] = ACTIONS(1858), - [sym_super] = ACTIONS(1858), - [sym_nil] = ACTIONS(1858), - [sym_id] = ACTIONS(1858), - [sym_instancetype] = ACTIONS(1858), - [sym_Class] = ACTIONS(1858), - [sym_SEL] = ACTIONS(1858), - [sym_IMP] = ACTIONS(1858), - [sym_BOOL] = ACTIONS(1858), - [sym_auto] = ACTIONS(1858), - [anon_sym_ATautoreleasepool] = ACTIONS(1860), - [anon_sym_ATsynchronized] = ACTIONS(1860), - [anon_sym_ATtry] = ACTIONS(1860), - [anon_sym_ATthrow] = ACTIONS(1860), - [anon_sym_ATselector] = ACTIONS(1860), - [anon_sym_ATencode] = ACTIONS(1860), - [anon_sym_AT] = ACTIONS(1858), - [sym_YES] = ACTIONS(1858), - [sym_NO] = ACTIONS(1858), - [anon_sym___builtin_available] = ACTIONS(1858), - [anon_sym_ATavailable] = ACTIONS(1860), - [anon_sym_va_arg] = ACTIONS(1858), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [657] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [aux_sym_preproc_else_token1] = ACTIONS(1862), - [aux_sym_preproc_elif_token1] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [658] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [aux_sym_preproc_else_token1] = ACTIONS(1862), - [aux_sym_preproc_elif_token1] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [659] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [aux_sym_preproc_else_token1] = ACTIONS(1862), - [aux_sym_preproc_elif_token1] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [660] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [aux_sym_preproc_else_token1] = ACTIONS(1862), - [aux_sym_preproc_elif_token1] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [661] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [aux_sym_preproc_else_token1] = ACTIONS(1862), - [aux_sym_preproc_elif_token1] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [662] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [aux_sym_preproc_else_token1] = ACTIONS(1862), - [aux_sym_preproc_elif_token1] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [663] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [aux_sym_preproc_else_token1] = ACTIONS(1862), - [aux_sym_preproc_elif_token1] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [664] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [aux_sym_preproc_else_token1] = ACTIONS(1862), - [aux_sym_preproc_elif_token1] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [665] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [aux_sym_preproc_else_token1] = ACTIONS(1862), - [aux_sym_preproc_elif_token1] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [666] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [aux_sym_preproc_else_token1] = ACTIONS(1846), - [aux_sym_preproc_elif_token1] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [667] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [aux_sym_preproc_else_token1] = ACTIONS(1866), - [aux_sym_preproc_elif_token1] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [668] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [aux_sym_preproc_else_token1] = ACTIONS(1846), - [aux_sym_preproc_elif_token1] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [669] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [aux_sym_preproc_else_token1] = ACTIONS(1862), - [aux_sym_preproc_elif_token1] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [670] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [aux_sym_preproc_else_token1] = ACTIONS(1862), - [aux_sym_preproc_elif_token1] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [671] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [aux_sym_preproc_else_token1] = ACTIONS(1846), - [aux_sym_preproc_elif_token1] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [672] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [aux_sym_preproc_else_token1] = ACTIONS(1846), - [aux_sym_preproc_elif_token1] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [673] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [aux_sym_preproc_else_token1] = ACTIONS(1846), - [aux_sym_preproc_elif_token1] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [674] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [aux_sym_preproc_else_token1] = ACTIONS(1862), - [aux_sym_preproc_elif_token1] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [675] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [aux_sym_preproc_else_token1] = ACTIONS(1862), - [aux_sym_preproc_elif_token1] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [676] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [aux_sym_preproc_else_token1] = ACTIONS(1726), - [aux_sym_preproc_elif_token1] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [677] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [aux_sym_preproc_else_token1] = ACTIONS(1726), - [aux_sym_preproc_elif_token1] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [678] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [aux_sym_preproc_else_token1] = ACTIONS(1726), - [aux_sym_preproc_elif_token1] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [679] = { - [sym_identifier] = ACTIONS(1870), - [aux_sym_preproc_include_token1] = ACTIONS(1872), - [aux_sym_preproc_def_token1] = ACTIONS(1872), - [aux_sym_preproc_if_token1] = ACTIONS(1870), - [aux_sym_preproc_if_token2] = ACTIONS(1870), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1870), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1870), - [aux_sym_preproc_else_token1] = ACTIONS(1870), - [aux_sym_preproc_elif_token1] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1872), - [anon_sym_BANG] = ACTIONS(1872), - [anon_sym_TILDE] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1872), - [anon_sym_CARET] = ACTIONS(1872), - [anon_sym_AMP] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1872), - [anon_sym_typedef] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(1870), - [anon_sym___attribute] = ACTIONS(1870), - [anon_sym___attribute__] = ACTIONS(1870), - [anon_sym___declspec] = ACTIONS(1870), - [anon_sym___cdecl] = ACTIONS(1870), - [anon_sym___clrcall] = ACTIONS(1870), - [anon_sym___stdcall] = ACTIONS(1870), - [anon_sym___fastcall] = ACTIONS(1870), - [anon_sym___thiscall] = ACTIONS(1870), - [anon_sym___vectorcall] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1870), - [anon_sym_auto] = ACTIONS(1870), - [anon_sym_register] = ACTIONS(1870), - [anon_sym_inline] = ACTIONS(1870), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1870), - [anon_sym_const] = ACTIONS(1870), - [anon_sym_volatile] = ACTIONS(1870), - [anon_sym_restrict] = ACTIONS(1870), - [anon_sym__Atomic] = ACTIONS(1870), - [anon_sym_in] = ACTIONS(1870), - [anon_sym_out] = ACTIONS(1870), - [anon_sym_inout] = ACTIONS(1870), - [anon_sym_bycopy] = ACTIONS(1870), - [anon_sym_byref] = ACTIONS(1870), - [anon_sym_oneway] = ACTIONS(1870), - [anon_sym__Nullable] = ACTIONS(1870), - [anon_sym__Nonnull] = ACTIONS(1870), - [anon_sym__Nullable_result] = ACTIONS(1870), - [anon_sym__Null_unspecified] = ACTIONS(1870), - [anon_sym___autoreleasing] = ACTIONS(1870), - [anon_sym___nullable] = ACTIONS(1870), - [anon_sym___nonnull] = ACTIONS(1870), - [anon_sym___strong] = ACTIONS(1870), - [anon_sym___weak] = ACTIONS(1870), - [anon_sym___bridge] = ACTIONS(1870), - [anon_sym___bridge_transfer] = ACTIONS(1870), - [anon_sym___bridge_retained] = ACTIONS(1870), - [anon_sym___unsafe_unretained] = ACTIONS(1870), - [anon_sym___block] = ACTIONS(1870), - [anon_sym___kindof] = ACTIONS(1870), - [anon_sym___unused] = ACTIONS(1870), - [anon_sym__Complex] = ACTIONS(1870), - [anon_sym___complex] = ACTIONS(1870), - [anon_sym_IBOutlet] = ACTIONS(1870), - [anon_sym_IBInspectable] = ACTIONS(1870), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1870), - [anon_sym_signed] = ACTIONS(1870), - [anon_sym_unsigned] = ACTIONS(1870), - [anon_sym_long] = ACTIONS(1870), - [anon_sym_short] = ACTIONS(1870), - [sym_primitive_type] = ACTIONS(1870), - [anon_sym_enum] = ACTIONS(1870), - [anon_sym_NS_ENUM] = ACTIONS(1870), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1870), - [anon_sym_NS_OPTIONS] = ACTIONS(1870), - [anon_sym_struct] = ACTIONS(1870), - [anon_sym_union] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(1870), - [anon_sym_switch] = ACTIONS(1870), - [anon_sym_case] = ACTIONS(1870), - [anon_sym_default] = ACTIONS(1870), - [anon_sym_while] = ACTIONS(1870), - [anon_sym_do] = ACTIONS(1870), - [anon_sym_for] = ACTIONS(1870), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1870), - [anon_sym_continue] = ACTIONS(1870), - [anon_sym_goto] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1872), - [anon_sym_PLUS_PLUS] = ACTIONS(1872), - [anon_sym_sizeof] = ACTIONS(1870), - [sym_number_literal] = ACTIONS(1872), - [anon_sym_L_SQUOTE] = ACTIONS(1872), - [anon_sym_u_SQUOTE] = ACTIONS(1872), - [anon_sym_U_SQUOTE] = ACTIONS(1872), - [anon_sym_u8_SQUOTE] = ACTIONS(1872), - [anon_sym_SQUOTE] = ACTIONS(1872), - [anon_sym_L_DQUOTE] = ACTIONS(1872), - [anon_sym_u_DQUOTE] = ACTIONS(1872), - [anon_sym_U_DQUOTE] = ACTIONS(1872), - [anon_sym_u8_DQUOTE] = ACTIONS(1872), - [anon_sym_DQUOTE] = ACTIONS(1872), - [sym_true] = ACTIONS(1870), - [sym_false] = ACTIONS(1870), - [sym_null] = ACTIONS(1870), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1872), - [anon_sym_ATimport] = ACTIONS(1872), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1870), - [anon_sym_ATcompatibility_alias] = ACTIONS(1872), - [anon_sym_ATprotocol] = ACTIONS(1872), - [anon_sym_ATclass] = ACTIONS(1872), - [anon_sym_ATinterface] = ACTIONS(1872), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1870), - [sym_method_attribute_specifier] = ACTIONS(1870), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1870), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1870), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1870), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1870), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1870), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1870), - [anon_sym_NS_AVAILABLE] = ACTIONS(1870), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1870), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_API_AVAILABLE] = ACTIONS(1870), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1870), - [anon_sym_API_DEPRECATED] = ACTIONS(1870), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1870), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1870), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1870), - [anon_sym___deprecated_msg] = ACTIONS(1870), - [anon_sym___deprecated_enum_msg] = ACTIONS(1870), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1870), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1870), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1870), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1870), - [anon_sym_ATimplementation] = ACTIONS(1872), - [anon_sym_typeof] = ACTIONS(1870), - [anon_sym___typeof] = ACTIONS(1870), - [anon_sym___typeof__] = ACTIONS(1870), - [sym_self] = ACTIONS(1870), - [sym_super] = ACTIONS(1870), - [sym_nil] = ACTIONS(1870), - [sym_id] = ACTIONS(1870), - [sym_instancetype] = ACTIONS(1870), - [sym_Class] = ACTIONS(1870), - [sym_SEL] = ACTIONS(1870), - [sym_IMP] = ACTIONS(1870), - [sym_BOOL] = ACTIONS(1870), - [sym_auto] = ACTIONS(1870), - [anon_sym_ATautoreleasepool] = ACTIONS(1872), - [anon_sym_ATsynchronized] = ACTIONS(1872), - [anon_sym_ATtry] = ACTIONS(1872), - [anon_sym_ATthrow] = ACTIONS(1872), - [anon_sym_ATselector] = ACTIONS(1872), - [anon_sym_ATencode] = ACTIONS(1872), - [anon_sym_AT] = ACTIONS(1870), - [sym_YES] = ACTIONS(1870), - [sym_NO] = ACTIONS(1870), - [anon_sym___builtin_available] = ACTIONS(1870), - [anon_sym_ATavailable] = ACTIONS(1872), - [anon_sym_va_arg] = ACTIONS(1870), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [680] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [aux_sym_preproc_else_token1] = ACTIONS(1866), - [aux_sym_preproc_elif_token1] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [681] = { - [sym_identifier] = ACTIONS(1730), - [aux_sym_preproc_include_token1] = ACTIONS(1732), - [aux_sym_preproc_def_token1] = ACTIONS(1732), - [aux_sym_preproc_if_token1] = ACTIONS(1730), - [aux_sym_preproc_if_token2] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1730), - [aux_sym_preproc_else_token1] = ACTIONS(1730), - [aux_sym_preproc_elif_token1] = ACTIONS(1730), - [anon_sym_LPAREN2] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_CARET] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_typedef] = ACTIONS(1730), - [anon_sym_extern] = ACTIONS(1730), - [anon_sym___attribute] = ACTIONS(1730), - [anon_sym___attribute__] = ACTIONS(1730), - [anon_sym___declspec] = ACTIONS(1730), - [anon_sym___cdecl] = ACTIONS(1730), - [anon_sym___clrcall] = ACTIONS(1730), - [anon_sym___stdcall] = ACTIONS(1730), - [anon_sym___fastcall] = ACTIONS(1730), - [anon_sym___thiscall] = ACTIONS(1730), - [anon_sym___vectorcall] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_static] = ACTIONS(1730), - [anon_sym_auto] = ACTIONS(1730), - [anon_sym_register] = ACTIONS(1730), - [anon_sym_inline] = ACTIONS(1730), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1730), - [anon_sym_const] = ACTIONS(1730), - [anon_sym_volatile] = ACTIONS(1730), - [anon_sym_restrict] = ACTIONS(1730), - [anon_sym__Atomic] = ACTIONS(1730), - [anon_sym_in] = ACTIONS(1730), - [anon_sym_out] = ACTIONS(1730), - [anon_sym_inout] = ACTIONS(1730), - [anon_sym_bycopy] = ACTIONS(1730), - [anon_sym_byref] = ACTIONS(1730), - [anon_sym_oneway] = ACTIONS(1730), - [anon_sym__Nullable] = ACTIONS(1730), - [anon_sym__Nonnull] = ACTIONS(1730), - [anon_sym__Nullable_result] = ACTIONS(1730), - [anon_sym__Null_unspecified] = ACTIONS(1730), - [anon_sym___autoreleasing] = ACTIONS(1730), - [anon_sym___nullable] = ACTIONS(1730), - [anon_sym___nonnull] = ACTIONS(1730), - [anon_sym___strong] = ACTIONS(1730), - [anon_sym___weak] = ACTIONS(1730), - [anon_sym___bridge] = ACTIONS(1730), - [anon_sym___bridge_transfer] = ACTIONS(1730), - [anon_sym___bridge_retained] = ACTIONS(1730), - [anon_sym___unsafe_unretained] = ACTIONS(1730), - [anon_sym___block] = ACTIONS(1730), - [anon_sym___kindof] = ACTIONS(1730), - [anon_sym___unused] = ACTIONS(1730), - [anon_sym__Complex] = ACTIONS(1730), - [anon_sym___complex] = ACTIONS(1730), - [anon_sym_IBOutlet] = ACTIONS(1730), - [anon_sym_IBInspectable] = ACTIONS(1730), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1730), - [anon_sym_signed] = ACTIONS(1730), - [anon_sym_unsigned] = ACTIONS(1730), - [anon_sym_long] = ACTIONS(1730), - [anon_sym_short] = ACTIONS(1730), - [sym_primitive_type] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_NS_ENUM] = ACTIONS(1730), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1730), - [anon_sym_NS_OPTIONS] = ACTIONS(1730), - [anon_sym_struct] = ACTIONS(1730), - [anon_sym_union] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_switch] = ACTIONS(1730), - [anon_sym_case] = ACTIONS(1730), - [anon_sym_default] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_do] = ACTIONS(1730), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_goto] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1732), - [anon_sym_sizeof] = ACTIONS(1730), - [sym_number_literal] = ACTIONS(1732), - [anon_sym_L_SQUOTE] = ACTIONS(1732), - [anon_sym_u_SQUOTE] = ACTIONS(1732), - [anon_sym_U_SQUOTE] = ACTIONS(1732), - [anon_sym_u8_SQUOTE] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1732), - [anon_sym_L_DQUOTE] = ACTIONS(1732), - [anon_sym_u_DQUOTE] = ACTIONS(1732), - [anon_sym_U_DQUOTE] = ACTIONS(1732), - [anon_sym_u8_DQUOTE] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1732), - [sym_true] = ACTIONS(1730), - [sym_false] = ACTIONS(1730), - [sym_null] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1732), - [anon_sym_ATimport] = ACTIONS(1732), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1730), - [anon_sym_ATcompatibility_alias] = ACTIONS(1732), - [anon_sym_ATprotocol] = ACTIONS(1732), - [anon_sym_ATclass] = ACTIONS(1732), - [anon_sym_ATinterface] = ACTIONS(1732), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1730), - [sym_method_attribute_specifier] = ACTIONS(1730), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1730), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE] = ACTIONS(1730), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_API_AVAILABLE] = ACTIONS(1730), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_API_DEPRECATED] = ACTIONS(1730), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1730), - [anon_sym___deprecated_msg] = ACTIONS(1730), - [anon_sym___deprecated_enum_msg] = ACTIONS(1730), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1730), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1730), - [anon_sym_ATimplementation] = ACTIONS(1732), - [anon_sym_typeof] = ACTIONS(1730), - [anon_sym___typeof] = ACTIONS(1730), - [anon_sym___typeof__] = ACTIONS(1730), - [sym_self] = ACTIONS(1730), - [sym_super] = ACTIONS(1730), - [sym_nil] = ACTIONS(1730), - [sym_id] = ACTIONS(1730), - [sym_instancetype] = ACTIONS(1730), - [sym_Class] = ACTIONS(1730), - [sym_SEL] = ACTIONS(1730), - [sym_IMP] = ACTIONS(1730), - [sym_BOOL] = ACTIONS(1730), - [sym_auto] = ACTIONS(1730), - [anon_sym_ATautoreleasepool] = ACTIONS(1732), - [anon_sym_ATsynchronized] = ACTIONS(1732), - [anon_sym_ATtry] = ACTIONS(1732), - [anon_sym_ATthrow] = ACTIONS(1732), - [anon_sym_ATselector] = ACTIONS(1732), - [anon_sym_ATencode] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1730), - [sym_YES] = ACTIONS(1730), - [sym_NO] = ACTIONS(1730), - [anon_sym___builtin_available] = ACTIONS(1730), - [anon_sym_ATavailable] = ACTIONS(1732), - [anon_sym_va_arg] = ACTIONS(1730), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [682] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [aux_sym_preproc_else_token1] = ACTIONS(1726), - [aux_sym_preproc_elif_token1] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [683] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [aux_sym_preproc_else_token1] = ACTIONS(1866), - [aux_sym_preproc_elif_token1] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [684] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [aux_sym_preproc_else_token1] = ACTIONS(1726), - [aux_sym_preproc_elif_token1] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [685] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [aux_sym_preproc_else_token1] = ACTIONS(1726), - [aux_sym_preproc_elif_token1] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [686] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [aux_sym_preproc_else_token1] = ACTIONS(1726), - [aux_sym_preproc_elif_token1] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [687] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [aux_sym_preproc_else_token1] = ACTIONS(1866), - [aux_sym_preproc_elif_token1] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [688] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [aux_sym_preproc_else_token1] = ACTIONS(1846), - [aux_sym_preproc_elif_token1] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [689] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [aux_sym_preproc_else_token1] = ACTIONS(1726), - [aux_sym_preproc_elif_token1] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [690] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [aux_sym_preproc_else_token1] = ACTIONS(1726), - [aux_sym_preproc_elif_token1] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [691] = { - [sym_identifier] = ACTIONS(1870), - [aux_sym_preproc_include_token1] = ACTIONS(1872), - [aux_sym_preproc_def_token1] = ACTIONS(1872), - [aux_sym_preproc_if_token1] = ACTIONS(1870), - [aux_sym_preproc_if_token2] = ACTIONS(1870), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1870), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1870), - [aux_sym_preproc_else_token1] = ACTIONS(1870), - [aux_sym_preproc_elif_token1] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1872), - [anon_sym_BANG] = ACTIONS(1872), - [anon_sym_TILDE] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1872), - [anon_sym_CARET] = ACTIONS(1872), - [anon_sym_AMP] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1872), - [anon_sym_typedef] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(1870), - [anon_sym___attribute] = ACTIONS(1870), - [anon_sym___attribute__] = ACTIONS(1870), - [anon_sym___declspec] = ACTIONS(1870), - [anon_sym___cdecl] = ACTIONS(1870), - [anon_sym___clrcall] = ACTIONS(1870), - [anon_sym___stdcall] = ACTIONS(1870), - [anon_sym___fastcall] = ACTIONS(1870), - [anon_sym___thiscall] = ACTIONS(1870), - [anon_sym___vectorcall] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1870), - [anon_sym_auto] = ACTIONS(1870), - [anon_sym_register] = ACTIONS(1870), - [anon_sym_inline] = ACTIONS(1870), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1870), - [anon_sym_const] = ACTIONS(1870), - [anon_sym_volatile] = ACTIONS(1870), - [anon_sym_restrict] = ACTIONS(1870), - [anon_sym__Atomic] = ACTIONS(1870), - [anon_sym_in] = ACTIONS(1870), - [anon_sym_out] = ACTIONS(1870), - [anon_sym_inout] = ACTIONS(1870), - [anon_sym_bycopy] = ACTIONS(1870), - [anon_sym_byref] = ACTIONS(1870), - [anon_sym_oneway] = ACTIONS(1870), - [anon_sym__Nullable] = ACTIONS(1870), - [anon_sym__Nonnull] = ACTIONS(1870), - [anon_sym__Nullable_result] = ACTIONS(1870), - [anon_sym__Null_unspecified] = ACTIONS(1870), - [anon_sym___autoreleasing] = ACTIONS(1870), - [anon_sym___nullable] = ACTIONS(1870), - [anon_sym___nonnull] = ACTIONS(1870), - [anon_sym___strong] = ACTIONS(1870), - [anon_sym___weak] = ACTIONS(1870), - [anon_sym___bridge] = ACTIONS(1870), - [anon_sym___bridge_transfer] = ACTIONS(1870), - [anon_sym___bridge_retained] = ACTIONS(1870), - [anon_sym___unsafe_unretained] = ACTIONS(1870), - [anon_sym___block] = ACTIONS(1870), - [anon_sym___kindof] = ACTIONS(1870), - [anon_sym___unused] = ACTIONS(1870), - [anon_sym__Complex] = ACTIONS(1870), - [anon_sym___complex] = ACTIONS(1870), - [anon_sym_IBOutlet] = ACTIONS(1870), - [anon_sym_IBInspectable] = ACTIONS(1870), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1870), - [anon_sym_signed] = ACTIONS(1870), - [anon_sym_unsigned] = ACTIONS(1870), - [anon_sym_long] = ACTIONS(1870), - [anon_sym_short] = ACTIONS(1870), - [sym_primitive_type] = ACTIONS(1870), - [anon_sym_enum] = ACTIONS(1870), - [anon_sym_NS_ENUM] = ACTIONS(1870), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1870), - [anon_sym_NS_OPTIONS] = ACTIONS(1870), - [anon_sym_struct] = ACTIONS(1870), - [anon_sym_union] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(1870), - [anon_sym_switch] = ACTIONS(1870), - [anon_sym_case] = ACTIONS(1870), - [anon_sym_default] = ACTIONS(1870), - [anon_sym_while] = ACTIONS(1870), - [anon_sym_do] = ACTIONS(1870), - [anon_sym_for] = ACTIONS(1870), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1870), - [anon_sym_continue] = ACTIONS(1870), - [anon_sym_goto] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1872), - [anon_sym_PLUS_PLUS] = ACTIONS(1872), - [anon_sym_sizeof] = ACTIONS(1870), - [sym_number_literal] = ACTIONS(1872), - [anon_sym_L_SQUOTE] = ACTIONS(1872), - [anon_sym_u_SQUOTE] = ACTIONS(1872), - [anon_sym_U_SQUOTE] = ACTIONS(1872), - [anon_sym_u8_SQUOTE] = ACTIONS(1872), - [anon_sym_SQUOTE] = ACTIONS(1872), - [anon_sym_L_DQUOTE] = ACTIONS(1872), - [anon_sym_u_DQUOTE] = ACTIONS(1872), - [anon_sym_U_DQUOTE] = ACTIONS(1872), - [anon_sym_u8_DQUOTE] = ACTIONS(1872), - [anon_sym_DQUOTE] = ACTIONS(1872), - [sym_true] = ACTIONS(1870), - [sym_false] = ACTIONS(1870), - [sym_null] = ACTIONS(1870), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1872), - [anon_sym_ATimport] = ACTIONS(1872), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1870), - [anon_sym_ATcompatibility_alias] = ACTIONS(1872), - [anon_sym_ATprotocol] = ACTIONS(1872), - [anon_sym_ATclass] = ACTIONS(1872), - [anon_sym_ATinterface] = ACTIONS(1872), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1870), - [sym_method_attribute_specifier] = ACTIONS(1870), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1870), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1870), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1870), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1870), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1870), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1870), - [anon_sym_NS_AVAILABLE] = ACTIONS(1870), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1870), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_API_AVAILABLE] = ACTIONS(1870), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1870), - [anon_sym_API_DEPRECATED] = ACTIONS(1870), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1870), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1870), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1870), - [anon_sym___deprecated_msg] = ACTIONS(1870), - [anon_sym___deprecated_enum_msg] = ACTIONS(1870), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1870), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1870), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1870), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1870), - [anon_sym_ATimplementation] = ACTIONS(1872), - [anon_sym_typeof] = ACTIONS(1870), - [anon_sym___typeof] = ACTIONS(1870), - [anon_sym___typeof__] = ACTIONS(1870), - [sym_self] = ACTIONS(1870), - [sym_super] = ACTIONS(1870), - [sym_nil] = ACTIONS(1870), - [sym_id] = ACTIONS(1870), - [sym_instancetype] = ACTIONS(1870), - [sym_Class] = ACTIONS(1870), - [sym_SEL] = ACTIONS(1870), - [sym_IMP] = ACTIONS(1870), - [sym_BOOL] = ACTIONS(1870), - [sym_auto] = ACTIONS(1870), - [anon_sym_ATautoreleasepool] = ACTIONS(1872), - [anon_sym_ATsynchronized] = ACTIONS(1872), - [anon_sym_ATtry] = ACTIONS(1872), - [anon_sym_ATthrow] = ACTIONS(1872), - [anon_sym_ATselector] = ACTIONS(1872), - [anon_sym_ATencode] = ACTIONS(1872), - [anon_sym_AT] = ACTIONS(1870), - [sym_YES] = ACTIONS(1870), - [sym_NO] = ACTIONS(1870), - [anon_sym___builtin_available] = ACTIONS(1870), - [anon_sym_ATavailable] = ACTIONS(1872), - [anon_sym_va_arg] = ACTIONS(1870), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [692] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [aux_sym_preproc_else_token1] = ACTIONS(1726), - [aux_sym_preproc_elif_token1] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [693] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [aux_sym_preproc_else_token1] = ACTIONS(1726), - [aux_sym_preproc_elif_token1] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [694] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [aux_sym_preproc_else_token1] = ACTIONS(1726), - [aux_sym_preproc_elif_token1] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [695] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [aux_sym_preproc_else_token1] = ACTIONS(1866), - [aux_sym_preproc_elif_token1] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [696] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [aux_sym_preproc_else_token1] = ACTIONS(1726), - [aux_sym_preproc_elif_token1] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [697] = { - [sym_identifier] = ACTIONS(1874), - [aux_sym_preproc_include_token1] = ACTIONS(1876), - [aux_sym_preproc_def_token1] = ACTIONS(1876), - [aux_sym_preproc_if_token1] = ACTIONS(1874), - [aux_sym_preproc_if_token2] = ACTIONS(1874), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1874), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1874), - [aux_sym_preproc_else_token1] = ACTIONS(1874), - [aux_sym_preproc_elif_token1] = ACTIONS(1874), - [anon_sym_LPAREN2] = ACTIONS(1876), - [anon_sym_BANG] = ACTIONS(1876), - [anon_sym_TILDE] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_PLUS] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1876), - [anon_sym_typedef] = ACTIONS(1874), - [anon_sym_extern] = ACTIONS(1874), - [anon_sym___attribute] = ACTIONS(1874), - [anon_sym___attribute__] = ACTIONS(1874), - [anon_sym___declspec] = ACTIONS(1874), - [anon_sym___cdecl] = ACTIONS(1874), - [anon_sym___clrcall] = ACTIONS(1874), - [anon_sym___stdcall] = ACTIONS(1874), - [anon_sym___fastcall] = ACTIONS(1874), - [anon_sym___thiscall] = ACTIONS(1874), - [anon_sym___vectorcall] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1876), - [anon_sym_LBRACK] = ACTIONS(1876), - [anon_sym_static] = ACTIONS(1874), - [anon_sym_auto] = ACTIONS(1874), - [anon_sym_register] = ACTIONS(1874), - [anon_sym_inline] = ACTIONS(1874), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1874), - [anon_sym_const] = ACTIONS(1874), - [anon_sym_volatile] = ACTIONS(1874), - [anon_sym_restrict] = ACTIONS(1874), - [anon_sym__Atomic] = ACTIONS(1874), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_out] = ACTIONS(1874), - [anon_sym_inout] = ACTIONS(1874), - [anon_sym_bycopy] = ACTIONS(1874), - [anon_sym_byref] = ACTIONS(1874), - [anon_sym_oneway] = ACTIONS(1874), - [anon_sym__Nullable] = ACTIONS(1874), - [anon_sym__Nonnull] = ACTIONS(1874), - [anon_sym__Nullable_result] = ACTIONS(1874), - [anon_sym__Null_unspecified] = ACTIONS(1874), - [anon_sym___autoreleasing] = ACTIONS(1874), - [anon_sym___nullable] = ACTIONS(1874), - [anon_sym___nonnull] = ACTIONS(1874), - [anon_sym___strong] = ACTIONS(1874), - [anon_sym___weak] = ACTIONS(1874), - [anon_sym___bridge] = ACTIONS(1874), - [anon_sym___bridge_transfer] = ACTIONS(1874), - [anon_sym___bridge_retained] = ACTIONS(1874), - [anon_sym___unsafe_unretained] = ACTIONS(1874), - [anon_sym___block] = ACTIONS(1874), - [anon_sym___kindof] = ACTIONS(1874), - [anon_sym___unused] = ACTIONS(1874), - [anon_sym__Complex] = ACTIONS(1874), - [anon_sym___complex] = ACTIONS(1874), - [anon_sym_IBOutlet] = ACTIONS(1874), - [anon_sym_IBInspectable] = ACTIONS(1874), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1874), - [anon_sym_signed] = ACTIONS(1874), - [anon_sym_unsigned] = ACTIONS(1874), - [anon_sym_long] = ACTIONS(1874), - [anon_sym_short] = ACTIONS(1874), - [sym_primitive_type] = ACTIONS(1874), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_NS_ENUM] = ACTIONS(1874), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1874), - [anon_sym_NS_OPTIONS] = ACTIONS(1874), - [anon_sym_struct] = ACTIONS(1874), - [anon_sym_union] = ACTIONS(1874), - [anon_sym_if] = ACTIONS(1874), - [anon_sym_switch] = ACTIONS(1874), - [anon_sym_case] = ACTIONS(1874), - [anon_sym_default] = ACTIONS(1874), - [anon_sym_while] = ACTIONS(1874), - [anon_sym_do] = ACTIONS(1874), - [anon_sym_for] = ACTIONS(1874), - [anon_sym_return] = ACTIONS(1874), - [anon_sym_break] = ACTIONS(1874), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1874), - [anon_sym_DASH_DASH] = ACTIONS(1876), - [anon_sym_PLUS_PLUS] = ACTIONS(1876), - [anon_sym_sizeof] = ACTIONS(1874), - [sym_number_literal] = ACTIONS(1876), - [anon_sym_L_SQUOTE] = ACTIONS(1876), - [anon_sym_u_SQUOTE] = ACTIONS(1876), - [anon_sym_U_SQUOTE] = ACTIONS(1876), - [anon_sym_u8_SQUOTE] = ACTIONS(1876), - [anon_sym_SQUOTE] = ACTIONS(1876), - [anon_sym_L_DQUOTE] = ACTIONS(1876), - [anon_sym_u_DQUOTE] = ACTIONS(1876), - [anon_sym_U_DQUOTE] = ACTIONS(1876), - [anon_sym_u8_DQUOTE] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1876), - [sym_true] = ACTIONS(1874), - [sym_false] = ACTIONS(1874), - [sym_null] = ACTIONS(1874), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1876), - [anon_sym_ATimport] = ACTIONS(1876), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1874), - [anon_sym_ATcompatibility_alias] = ACTIONS(1876), - [anon_sym_ATprotocol] = ACTIONS(1876), - [anon_sym_ATclass] = ACTIONS(1876), - [anon_sym_ATinterface] = ACTIONS(1876), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1874), - [sym_method_attribute_specifier] = ACTIONS(1874), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1874), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1874), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1874), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1874), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1874), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1874), - [anon_sym_NS_AVAILABLE] = ACTIONS(1874), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1874), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1874), - [anon_sym_API_AVAILABLE] = ACTIONS(1874), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1874), - [anon_sym_API_DEPRECATED] = ACTIONS(1874), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1874), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1874), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1874), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1874), - [anon_sym___deprecated_msg] = ACTIONS(1874), - [anon_sym___deprecated_enum_msg] = ACTIONS(1874), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1874), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1874), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1874), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1874), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1874), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1874), - [anon_sym_ATimplementation] = ACTIONS(1876), - [anon_sym_typeof] = ACTIONS(1874), - [anon_sym___typeof] = ACTIONS(1874), - [anon_sym___typeof__] = ACTIONS(1874), - [sym_self] = ACTIONS(1874), - [sym_super] = ACTIONS(1874), - [sym_nil] = ACTIONS(1874), - [sym_id] = ACTIONS(1874), - [sym_instancetype] = ACTIONS(1874), - [sym_Class] = ACTIONS(1874), - [sym_SEL] = ACTIONS(1874), - [sym_IMP] = ACTIONS(1874), - [sym_BOOL] = ACTIONS(1874), - [sym_auto] = ACTIONS(1874), - [anon_sym_ATautoreleasepool] = ACTIONS(1876), - [anon_sym_ATsynchronized] = ACTIONS(1876), - [anon_sym_ATtry] = ACTIONS(1876), - [anon_sym_ATthrow] = ACTIONS(1876), - [anon_sym_ATselector] = ACTIONS(1876), - [anon_sym_ATencode] = ACTIONS(1876), - [anon_sym_AT] = ACTIONS(1874), - [sym_YES] = ACTIONS(1874), - [sym_NO] = ACTIONS(1874), - [anon_sym___builtin_available] = ACTIONS(1874), - [anon_sym_ATavailable] = ACTIONS(1876), - [anon_sym_va_arg] = ACTIONS(1874), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [698] = { - [sym_identifier] = ACTIONS(1878), - [aux_sym_preproc_include_token1] = ACTIONS(1880), - [aux_sym_preproc_def_token1] = ACTIONS(1880), - [aux_sym_preproc_if_token1] = ACTIONS(1878), - [aux_sym_preproc_if_token2] = ACTIONS(1878), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1878), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1878), - [aux_sym_preproc_else_token1] = ACTIONS(1878), - [aux_sym_preproc_elif_token1] = ACTIONS(1878), - [anon_sym_LPAREN2] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1880), - [anon_sym_TILDE] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_PLUS] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_AMP] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_typedef] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(1878), - [anon_sym___attribute] = ACTIONS(1878), - [anon_sym___attribute__] = ACTIONS(1878), - [anon_sym___declspec] = ACTIONS(1878), - [anon_sym___cdecl] = ACTIONS(1878), - [anon_sym___clrcall] = ACTIONS(1878), - [anon_sym___stdcall] = ACTIONS(1878), - [anon_sym___fastcall] = ACTIONS(1878), - [anon_sym___thiscall] = ACTIONS(1878), - [anon_sym___vectorcall] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(1880), - [anon_sym_static] = ACTIONS(1878), - [anon_sym_auto] = ACTIONS(1878), - [anon_sym_register] = ACTIONS(1878), - [anon_sym_inline] = ACTIONS(1878), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1878), - [anon_sym_const] = ACTIONS(1878), - [anon_sym_volatile] = ACTIONS(1878), - [anon_sym_restrict] = ACTIONS(1878), - [anon_sym__Atomic] = ACTIONS(1878), - [anon_sym_in] = ACTIONS(1878), - [anon_sym_out] = ACTIONS(1878), - [anon_sym_inout] = ACTIONS(1878), - [anon_sym_bycopy] = ACTIONS(1878), - [anon_sym_byref] = ACTIONS(1878), - [anon_sym_oneway] = ACTIONS(1878), - [anon_sym__Nullable] = ACTIONS(1878), - [anon_sym__Nonnull] = ACTIONS(1878), - [anon_sym__Nullable_result] = ACTIONS(1878), - [anon_sym__Null_unspecified] = ACTIONS(1878), - [anon_sym___autoreleasing] = ACTIONS(1878), - [anon_sym___nullable] = ACTIONS(1878), - [anon_sym___nonnull] = ACTIONS(1878), - [anon_sym___strong] = ACTIONS(1878), - [anon_sym___weak] = ACTIONS(1878), - [anon_sym___bridge] = ACTIONS(1878), - [anon_sym___bridge_transfer] = ACTIONS(1878), - [anon_sym___bridge_retained] = ACTIONS(1878), - [anon_sym___unsafe_unretained] = ACTIONS(1878), - [anon_sym___block] = ACTIONS(1878), - [anon_sym___kindof] = ACTIONS(1878), - [anon_sym___unused] = ACTIONS(1878), - [anon_sym__Complex] = ACTIONS(1878), - [anon_sym___complex] = ACTIONS(1878), - [anon_sym_IBOutlet] = ACTIONS(1878), - [anon_sym_IBInspectable] = ACTIONS(1878), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1878), - [anon_sym_signed] = ACTIONS(1878), - [anon_sym_unsigned] = ACTIONS(1878), - [anon_sym_long] = ACTIONS(1878), - [anon_sym_short] = ACTIONS(1878), - [sym_primitive_type] = ACTIONS(1878), - [anon_sym_enum] = ACTIONS(1878), - [anon_sym_NS_ENUM] = ACTIONS(1878), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1878), - [anon_sym_NS_OPTIONS] = ACTIONS(1878), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1878), - [anon_sym_if] = ACTIONS(1878), - [anon_sym_switch] = ACTIONS(1878), - [anon_sym_case] = ACTIONS(1878), - [anon_sym_default] = ACTIONS(1878), - [anon_sym_while] = ACTIONS(1878), - [anon_sym_do] = ACTIONS(1878), - [anon_sym_for] = ACTIONS(1878), - [anon_sym_return] = ACTIONS(1878), - [anon_sym_break] = ACTIONS(1878), - [anon_sym_continue] = ACTIONS(1878), - [anon_sym_goto] = ACTIONS(1878), - [anon_sym_DASH_DASH] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(1880), - [anon_sym_sizeof] = ACTIONS(1878), - [sym_number_literal] = ACTIONS(1880), - [anon_sym_L_SQUOTE] = ACTIONS(1880), - [anon_sym_u_SQUOTE] = ACTIONS(1880), - [anon_sym_U_SQUOTE] = ACTIONS(1880), - [anon_sym_u8_SQUOTE] = ACTIONS(1880), - [anon_sym_SQUOTE] = ACTIONS(1880), - [anon_sym_L_DQUOTE] = ACTIONS(1880), - [anon_sym_u_DQUOTE] = ACTIONS(1880), - [anon_sym_U_DQUOTE] = ACTIONS(1880), - [anon_sym_u8_DQUOTE] = ACTIONS(1880), - [anon_sym_DQUOTE] = ACTIONS(1880), - [sym_true] = ACTIONS(1878), - [sym_false] = ACTIONS(1878), - [sym_null] = ACTIONS(1878), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1880), - [anon_sym_ATimport] = ACTIONS(1880), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1878), - [anon_sym_ATcompatibility_alias] = ACTIONS(1880), - [anon_sym_ATprotocol] = ACTIONS(1880), - [anon_sym_ATclass] = ACTIONS(1880), - [anon_sym_ATinterface] = ACTIONS(1880), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1878), - [sym_method_attribute_specifier] = ACTIONS(1878), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1878), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1878), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1878), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1878), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1878), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1878), - [anon_sym_NS_AVAILABLE] = ACTIONS(1878), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1878), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1878), - [anon_sym_API_AVAILABLE] = ACTIONS(1878), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1878), - [anon_sym_API_DEPRECATED] = ACTIONS(1878), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1878), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1878), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1878), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1878), - [anon_sym___deprecated_msg] = ACTIONS(1878), - [anon_sym___deprecated_enum_msg] = ACTIONS(1878), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1878), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1878), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1878), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1878), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1878), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1878), - [anon_sym_ATimplementation] = ACTIONS(1880), - [anon_sym_typeof] = ACTIONS(1878), - [anon_sym___typeof] = ACTIONS(1878), - [anon_sym___typeof__] = ACTIONS(1878), - [sym_self] = ACTIONS(1878), - [sym_super] = ACTIONS(1878), - [sym_nil] = ACTIONS(1878), - [sym_id] = ACTIONS(1878), - [sym_instancetype] = ACTIONS(1878), - [sym_Class] = ACTIONS(1878), - [sym_SEL] = ACTIONS(1878), - [sym_IMP] = ACTIONS(1878), - [sym_BOOL] = ACTIONS(1878), - [sym_auto] = ACTIONS(1878), - [anon_sym_ATautoreleasepool] = ACTIONS(1880), - [anon_sym_ATsynchronized] = ACTIONS(1880), - [anon_sym_ATtry] = ACTIONS(1880), - [anon_sym_ATthrow] = ACTIONS(1880), - [anon_sym_ATselector] = ACTIONS(1880), - [anon_sym_ATencode] = ACTIONS(1880), - [anon_sym_AT] = ACTIONS(1878), - [sym_YES] = ACTIONS(1878), - [sym_NO] = ACTIONS(1878), - [anon_sym___builtin_available] = ACTIONS(1878), - [anon_sym_ATavailable] = ACTIONS(1880), - [anon_sym_va_arg] = ACTIONS(1878), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [699] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [aux_sym_preproc_else_token1] = ACTIONS(1726), - [aux_sym_preproc_elif_token1] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [700] = { - [sym_identifier] = ACTIONS(1882), - [aux_sym_preproc_include_token1] = ACTIONS(1884), - [aux_sym_preproc_def_token1] = ACTIONS(1884), - [aux_sym_preproc_if_token1] = ACTIONS(1882), - [aux_sym_preproc_if_token2] = ACTIONS(1882), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1882), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1882), - [aux_sym_preproc_else_token1] = ACTIONS(1882), - [aux_sym_preproc_elif_token1] = ACTIONS(1882), - [anon_sym_LPAREN2] = ACTIONS(1884), - [anon_sym_BANG] = ACTIONS(1884), - [anon_sym_TILDE] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_PLUS] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1884), - [anon_sym_CARET] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_typedef] = ACTIONS(1882), - [anon_sym_extern] = ACTIONS(1882), - [anon_sym___attribute] = ACTIONS(1882), - [anon_sym___attribute__] = ACTIONS(1882), - [anon_sym___declspec] = ACTIONS(1882), - [anon_sym___cdecl] = ACTIONS(1882), - [anon_sym___clrcall] = ACTIONS(1882), - [anon_sym___stdcall] = ACTIONS(1882), - [anon_sym___fastcall] = ACTIONS(1882), - [anon_sym___thiscall] = ACTIONS(1882), - [anon_sym___vectorcall] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1882), - [anon_sym_auto] = ACTIONS(1882), - [anon_sym_register] = ACTIONS(1882), - [anon_sym_inline] = ACTIONS(1882), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1882), - [anon_sym_const] = ACTIONS(1882), - [anon_sym_volatile] = ACTIONS(1882), - [anon_sym_restrict] = ACTIONS(1882), - [anon_sym__Atomic] = ACTIONS(1882), - [anon_sym_in] = ACTIONS(1882), - [anon_sym_out] = ACTIONS(1882), - [anon_sym_inout] = ACTIONS(1882), - [anon_sym_bycopy] = ACTIONS(1882), - [anon_sym_byref] = ACTIONS(1882), - [anon_sym_oneway] = ACTIONS(1882), - [anon_sym__Nullable] = ACTIONS(1882), - [anon_sym__Nonnull] = ACTIONS(1882), - [anon_sym__Nullable_result] = ACTIONS(1882), - [anon_sym__Null_unspecified] = ACTIONS(1882), - [anon_sym___autoreleasing] = ACTIONS(1882), - [anon_sym___nullable] = ACTIONS(1882), - [anon_sym___nonnull] = ACTIONS(1882), - [anon_sym___strong] = ACTIONS(1882), - [anon_sym___weak] = ACTIONS(1882), - [anon_sym___bridge] = ACTIONS(1882), - [anon_sym___bridge_transfer] = ACTIONS(1882), - [anon_sym___bridge_retained] = ACTIONS(1882), - [anon_sym___unsafe_unretained] = ACTIONS(1882), - [anon_sym___block] = ACTIONS(1882), - [anon_sym___kindof] = ACTIONS(1882), - [anon_sym___unused] = ACTIONS(1882), - [anon_sym__Complex] = ACTIONS(1882), - [anon_sym___complex] = ACTIONS(1882), - [anon_sym_IBOutlet] = ACTIONS(1882), - [anon_sym_IBInspectable] = ACTIONS(1882), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1882), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [sym_primitive_type] = ACTIONS(1882), - [anon_sym_enum] = ACTIONS(1882), - [anon_sym_NS_ENUM] = ACTIONS(1882), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1882), - [anon_sym_NS_OPTIONS] = ACTIONS(1882), - [anon_sym_struct] = ACTIONS(1882), - [anon_sym_union] = ACTIONS(1882), - [anon_sym_if] = ACTIONS(1882), - [anon_sym_switch] = ACTIONS(1882), - [anon_sym_case] = ACTIONS(1882), - [anon_sym_default] = ACTIONS(1882), - [anon_sym_while] = ACTIONS(1882), - [anon_sym_do] = ACTIONS(1882), - [anon_sym_for] = ACTIONS(1882), - [anon_sym_return] = ACTIONS(1882), - [anon_sym_break] = ACTIONS(1882), - [anon_sym_continue] = ACTIONS(1882), - [anon_sym_goto] = ACTIONS(1882), - [anon_sym_DASH_DASH] = ACTIONS(1884), - [anon_sym_PLUS_PLUS] = ACTIONS(1884), - [anon_sym_sizeof] = ACTIONS(1882), - [sym_number_literal] = ACTIONS(1884), - [anon_sym_L_SQUOTE] = ACTIONS(1884), - [anon_sym_u_SQUOTE] = ACTIONS(1884), - [anon_sym_U_SQUOTE] = ACTIONS(1884), - [anon_sym_u8_SQUOTE] = ACTIONS(1884), - [anon_sym_SQUOTE] = ACTIONS(1884), - [anon_sym_L_DQUOTE] = ACTIONS(1884), - [anon_sym_u_DQUOTE] = ACTIONS(1884), - [anon_sym_U_DQUOTE] = ACTIONS(1884), - [anon_sym_u8_DQUOTE] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [sym_true] = ACTIONS(1882), - [sym_false] = ACTIONS(1882), - [sym_null] = ACTIONS(1882), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1884), - [anon_sym_ATimport] = ACTIONS(1884), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1882), - [anon_sym_ATcompatibility_alias] = ACTIONS(1884), - [anon_sym_ATprotocol] = ACTIONS(1884), - [anon_sym_ATclass] = ACTIONS(1884), - [anon_sym_ATinterface] = ACTIONS(1884), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1882), - [sym_method_attribute_specifier] = ACTIONS(1882), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1882), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1882), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1882), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1882), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1882), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1882), - [anon_sym_NS_AVAILABLE] = ACTIONS(1882), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1882), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1882), - [anon_sym_API_AVAILABLE] = ACTIONS(1882), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1882), - [anon_sym_API_DEPRECATED] = ACTIONS(1882), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1882), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1882), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1882), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1882), - [anon_sym___deprecated_msg] = ACTIONS(1882), - [anon_sym___deprecated_enum_msg] = ACTIONS(1882), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1882), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1882), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1882), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1882), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1882), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1882), - [anon_sym_ATimplementation] = ACTIONS(1884), - [anon_sym_typeof] = ACTIONS(1882), - [anon_sym___typeof] = ACTIONS(1882), - [anon_sym___typeof__] = ACTIONS(1882), - [sym_self] = ACTIONS(1882), - [sym_super] = ACTIONS(1882), - [sym_nil] = ACTIONS(1882), - [sym_id] = ACTIONS(1882), - [sym_instancetype] = ACTIONS(1882), - [sym_Class] = ACTIONS(1882), - [sym_SEL] = ACTIONS(1882), - [sym_IMP] = ACTIONS(1882), - [sym_BOOL] = ACTIONS(1882), - [sym_auto] = ACTIONS(1882), - [anon_sym_ATautoreleasepool] = ACTIONS(1884), - [anon_sym_ATsynchronized] = ACTIONS(1884), - [anon_sym_ATtry] = ACTIONS(1884), - [anon_sym_ATthrow] = ACTIONS(1884), - [anon_sym_ATselector] = ACTIONS(1884), - [anon_sym_ATencode] = ACTIONS(1884), - [anon_sym_AT] = ACTIONS(1882), - [sym_YES] = ACTIONS(1882), - [sym_NO] = ACTIONS(1882), - [anon_sym___builtin_available] = ACTIONS(1882), - [anon_sym_ATavailable] = ACTIONS(1884), - [anon_sym_va_arg] = ACTIONS(1882), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [701] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [aux_sym_preproc_else_token1] = ACTIONS(1866), - [aux_sym_preproc_elif_token1] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [702] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [aux_sym_preproc_else_token1] = ACTIONS(1866), - [aux_sym_preproc_elif_token1] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [703] = { - [sym_identifier] = ACTIONS(1886), - [aux_sym_preproc_include_token1] = ACTIONS(1888), - [aux_sym_preproc_def_token1] = ACTIONS(1888), - [aux_sym_preproc_if_token1] = ACTIONS(1886), - [aux_sym_preproc_if_token2] = ACTIONS(1886), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1886), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1886), - [aux_sym_preproc_else_token1] = ACTIONS(1886), - [aux_sym_preproc_elif_token1] = ACTIONS(1886), - [anon_sym_LPAREN2] = ACTIONS(1888), - [anon_sym_BANG] = ACTIONS(1888), - [anon_sym_TILDE] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1888), - [anon_sym_CARET] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_typedef] = ACTIONS(1886), - [anon_sym_extern] = ACTIONS(1886), - [anon_sym___attribute] = ACTIONS(1886), - [anon_sym___attribute__] = ACTIONS(1886), - [anon_sym___declspec] = ACTIONS(1886), - [anon_sym___cdecl] = ACTIONS(1886), - [anon_sym___clrcall] = ACTIONS(1886), - [anon_sym___stdcall] = ACTIONS(1886), - [anon_sym___fastcall] = ACTIONS(1886), - [anon_sym___thiscall] = ACTIONS(1886), - [anon_sym___vectorcall] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_static] = ACTIONS(1886), - [anon_sym_auto] = ACTIONS(1886), - [anon_sym_register] = ACTIONS(1886), - [anon_sym_inline] = ACTIONS(1886), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1886), - [anon_sym_const] = ACTIONS(1886), - [anon_sym_volatile] = ACTIONS(1886), - [anon_sym_restrict] = ACTIONS(1886), - [anon_sym__Atomic] = ACTIONS(1886), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_out] = ACTIONS(1886), - [anon_sym_inout] = ACTIONS(1886), - [anon_sym_bycopy] = ACTIONS(1886), - [anon_sym_byref] = ACTIONS(1886), - [anon_sym_oneway] = ACTIONS(1886), - [anon_sym__Nullable] = ACTIONS(1886), - [anon_sym__Nonnull] = ACTIONS(1886), - [anon_sym__Nullable_result] = ACTIONS(1886), - [anon_sym__Null_unspecified] = ACTIONS(1886), - [anon_sym___autoreleasing] = ACTIONS(1886), - [anon_sym___nullable] = ACTIONS(1886), - [anon_sym___nonnull] = ACTIONS(1886), - [anon_sym___strong] = ACTIONS(1886), - [anon_sym___weak] = ACTIONS(1886), - [anon_sym___bridge] = ACTIONS(1886), - [anon_sym___bridge_transfer] = ACTIONS(1886), - [anon_sym___bridge_retained] = ACTIONS(1886), - [anon_sym___unsafe_unretained] = ACTIONS(1886), - [anon_sym___block] = ACTIONS(1886), - [anon_sym___kindof] = ACTIONS(1886), - [anon_sym___unused] = ACTIONS(1886), - [anon_sym__Complex] = ACTIONS(1886), - [anon_sym___complex] = ACTIONS(1886), - [anon_sym_IBOutlet] = ACTIONS(1886), - [anon_sym_IBInspectable] = ACTIONS(1886), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1886), - [anon_sym_signed] = ACTIONS(1886), - [anon_sym_unsigned] = ACTIONS(1886), - [anon_sym_long] = ACTIONS(1886), - [anon_sym_short] = ACTIONS(1886), - [sym_primitive_type] = ACTIONS(1886), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_NS_ENUM] = ACTIONS(1886), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1886), - [anon_sym_NS_OPTIONS] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1886), - [anon_sym_union] = ACTIONS(1886), - [anon_sym_if] = ACTIONS(1886), - [anon_sym_switch] = ACTIONS(1886), - [anon_sym_case] = ACTIONS(1886), - [anon_sym_default] = ACTIONS(1886), - [anon_sym_while] = ACTIONS(1886), - [anon_sym_do] = ACTIONS(1886), - [anon_sym_for] = ACTIONS(1886), - [anon_sym_return] = ACTIONS(1886), - [anon_sym_break] = ACTIONS(1886), - [anon_sym_continue] = ACTIONS(1886), - [anon_sym_goto] = ACTIONS(1886), - [anon_sym_DASH_DASH] = ACTIONS(1888), - [anon_sym_PLUS_PLUS] = ACTIONS(1888), - [anon_sym_sizeof] = ACTIONS(1886), - [sym_number_literal] = ACTIONS(1888), - [anon_sym_L_SQUOTE] = ACTIONS(1888), - [anon_sym_u_SQUOTE] = ACTIONS(1888), - [anon_sym_U_SQUOTE] = ACTIONS(1888), - [anon_sym_u8_SQUOTE] = ACTIONS(1888), - [anon_sym_SQUOTE] = ACTIONS(1888), - [anon_sym_L_DQUOTE] = ACTIONS(1888), - [anon_sym_u_DQUOTE] = ACTIONS(1888), - [anon_sym_U_DQUOTE] = ACTIONS(1888), - [anon_sym_u8_DQUOTE] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [sym_true] = ACTIONS(1886), - [sym_false] = ACTIONS(1886), - [sym_null] = ACTIONS(1886), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1888), - [anon_sym_ATimport] = ACTIONS(1888), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1886), - [anon_sym_ATcompatibility_alias] = ACTIONS(1888), - [anon_sym_ATprotocol] = ACTIONS(1888), - [anon_sym_ATclass] = ACTIONS(1888), - [anon_sym_ATinterface] = ACTIONS(1888), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1886), - [sym_method_attribute_specifier] = ACTIONS(1886), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1886), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1886), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1886), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1886), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1886), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1886), - [anon_sym_NS_AVAILABLE] = ACTIONS(1886), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1886), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1886), - [anon_sym_API_AVAILABLE] = ACTIONS(1886), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1886), - [anon_sym_API_DEPRECATED] = ACTIONS(1886), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1886), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1886), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1886), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1886), - [anon_sym___deprecated_msg] = ACTIONS(1886), - [anon_sym___deprecated_enum_msg] = ACTIONS(1886), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1886), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1886), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1886), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1886), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1886), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1886), - [anon_sym_ATimplementation] = ACTIONS(1888), - [anon_sym_typeof] = ACTIONS(1886), - [anon_sym___typeof] = ACTIONS(1886), - [anon_sym___typeof__] = ACTIONS(1886), - [sym_self] = ACTIONS(1886), - [sym_super] = ACTIONS(1886), - [sym_nil] = ACTIONS(1886), - [sym_id] = ACTIONS(1886), - [sym_instancetype] = ACTIONS(1886), - [sym_Class] = ACTIONS(1886), - [sym_SEL] = ACTIONS(1886), - [sym_IMP] = ACTIONS(1886), - [sym_BOOL] = ACTIONS(1886), - [sym_auto] = ACTIONS(1886), - [anon_sym_ATautoreleasepool] = ACTIONS(1888), - [anon_sym_ATsynchronized] = ACTIONS(1888), - [anon_sym_ATtry] = ACTIONS(1888), - [anon_sym_ATthrow] = ACTIONS(1888), - [anon_sym_ATselector] = ACTIONS(1888), - [anon_sym_ATencode] = ACTIONS(1888), - [anon_sym_AT] = ACTIONS(1886), - [sym_YES] = ACTIONS(1886), - [sym_NO] = ACTIONS(1886), - [anon_sym___builtin_available] = ACTIONS(1886), - [anon_sym_ATavailable] = ACTIONS(1888), - [anon_sym_va_arg] = ACTIONS(1886), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [704] = { - [sym_identifier] = ACTIONS(1890), - [aux_sym_preproc_include_token1] = ACTIONS(1892), - [aux_sym_preproc_def_token1] = ACTIONS(1892), - [aux_sym_preproc_if_token1] = ACTIONS(1890), - [aux_sym_preproc_if_token2] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1890), - [aux_sym_preproc_else_token1] = ACTIONS(1890), - [aux_sym_preproc_elif_token1] = ACTIONS(1890), - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_PLUS] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1892), - [anon_sym_CARET] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_typedef] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym___attribute] = ACTIONS(1890), - [anon_sym___attribute__] = ACTIONS(1890), - [anon_sym___declspec] = ACTIONS(1890), - [anon_sym___cdecl] = ACTIONS(1890), - [anon_sym___clrcall] = ACTIONS(1890), - [anon_sym___stdcall] = ACTIONS(1890), - [anon_sym___fastcall] = ACTIONS(1890), - [anon_sym___thiscall] = ACTIONS(1890), - [anon_sym___vectorcall] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1890), - [anon_sym_auto] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_inline] = ACTIONS(1890), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [anon_sym_volatile] = ACTIONS(1890), - [anon_sym_restrict] = ACTIONS(1890), - [anon_sym__Atomic] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(1890), - [anon_sym_out] = ACTIONS(1890), - [anon_sym_inout] = ACTIONS(1890), - [anon_sym_bycopy] = ACTIONS(1890), - [anon_sym_byref] = ACTIONS(1890), - [anon_sym_oneway] = ACTIONS(1890), - [anon_sym__Nullable] = ACTIONS(1890), - [anon_sym__Nonnull] = ACTIONS(1890), - [anon_sym__Nullable_result] = ACTIONS(1890), - [anon_sym__Null_unspecified] = ACTIONS(1890), - [anon_sym___autoreleasing] = ACTIONS(1890), - [anon_sym___nullable] = ACTIONS(1890), - [anon_sym___nonnull] = ACTIONS(1890), - [anon_sym___strong] = ACTIONS(1890), - [anon_sym___weak] = ACTIONS(1890), - [anon_sym___bridge] = ACTIONS(1890), - [anon_sym___bridge_transfer] = ACTIONS(1890), - [anon_sym___bridge_retained] = ACTIONS(1890), - [anon_sym___unsafe_unretained] = ACTIONS(1890), - [anon_sym___block] = ACTIONS(1890), - [anon_sym___kindof] = ACTIONS(1890), - [anon_sym___unused] = ACTIONS(1890), - [anon_sym__Complex] = ACTIONS(1890), - [anon_sym___complex] = ACTIONS(1890), - [anon_sym_IBOutlet] = ACTIONS(1890), - [anon_sym_IBInspectable] = ACTIONS(1890), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1890), - [anon_sym_signed] = ACTIONS(1890), - [anon_sym_unsigned] = ACTIONS(1890), - [anon_sym_long] = ACTIONS(1890), - [anon_sym_short] = ACTIONS(1890), - [sym_primitive_type] = ACTIONS(1890), - [anon_sym_enum] = ACTIONS(1890), - [anon_sym_NS_ENUM] = ACTIONS(1890), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1890), - [anon_sym_NS_OPTIONS] = ACTIONS(1890), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_switch] = ACTIONS(1890), - [anon_sym_case] = ACTIONS(1890), - [anon_sym_default] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_goto] = ACTIONS(1890), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1890), - [sym_number_literal] = ACTIONS(1892), - [anon_sym_L_SQUOTE] = ACTIONS(1892), - [anon_sym_u_SQUOTE] = ACTIONS(1892), - [anon_sym_U_SQUOTE] = ACTIONS(1892), - [anon_sym_u8_SQUOTE] = ACTIONS(1892), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_L_DQUOTE] = ACTIONS(1892), - [anon_sym_u_DQUOTE] = ACTIONS(1892), - [anon_sym_U_DQUOTE] = ACTIONS(1892), - [anon_sym_u8_DQUOTE] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym_true] = ACTIONS(1890), - [sym_false] = ACTIONS(1890), - [sym_null] = ACTIONS(1890), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1892), - [anon_sym_ATimport] = ACTIONS(1892), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1890), - [anon_sym_ATcompatibility_alias] = ACTIONS(1892), - [anon_sym_ATprotocol] = ACTIONS(1892), - [anon_sym_ATclass] = ACTIONS(1892), - [anon_sym_ATinterface] = ACTIONS(1892), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1890), - [sym_method_attribute_specifier] = ACTIONS(1890), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1890), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1890), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1890), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1890), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1890), - [anon_sym_NS_AVAILABLE] = ACTIONS(1890), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1890), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_API_AVAILABLE] = ACTIONS(1890), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_API_DEPRECATED] = ACTIONS(1890), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1890), - [anon_sym___deprecated_msg] = ACTIONS(1890), - [anon_sym___deprecated_enum_msg] = ACTIONS(1890), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1890), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1890), - [anon_sym_ATimplementation] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(1890), - [anon_sym___typeof] = ACTIONS(1890), - [anon_sym___typeof__] = ACTIONS(1890), - [sym_self] = ACTIONS(1890), - [sym_super] = ACTIONS(1890), - [sym_nil] = ACTIONS(1890), - [sym_id] = ACTIONS(1890), - [sym_instancetype] = ACTIONS(1890), - [sym_Class] = ACTIONS(1890), - [sym_SEL] = ACTIONS(1890), - [sym_IMP] = ACTIONS(1890), - [sym_BOOL] = ACTIONS(1890), - [sym_auto] = ACTIONS(1890), - [anon_sym_ATautoreleasepool] = ACTIONS(1892), - [anon_sym_ATsynchronized] = ACTIONS(1892), - [anon_sym_ATtry] = ACTIONS(1892), - [anon_sym_ATthrow] = ACTIONS(1892), - [anon_sym_ATselector] = ACTIONS(1892), - [anon_sym_ATencode] = ACTIONS(1892), - [anon_sym_AT] = ACTIONS(1890), - [sym_YES] = ACTIONS(1890), - [sym_NO] = ACTIONS(1890), - [anon_sym___builtin_available] = ACTIONS(1890), - [anon_sym_ATavailable] = ACTIONS(1892), - [anon_sym_va_arg] = ACTIONS(1890), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [705] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [aux_sym_preproc_else_token1] = ACTIONS(1846), - [aux_sym_preproc_elif_token1] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [706] = { - [sym_identifier] = ACTIONS(1894), - [aux_sym_preproc_include_token1] = ACTIONS(1896), - [aux_sym_preproc_def_token1] = ACTIONS(1896), - [aux_sym_preproc_if_token1] = ACTIONS(1894), - [aux_sym_preproc_if_token2] = ACTIONS(1894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1894), - [aux_sym_preproc_else_token1] = ACTIONS(1894), - [aux_sym_preproc_elif_token1] = ACTIONS(1894), - [anon_sym_LPAREN2] = ACTIONS(1896), - [anon_sym_BANG] = ACTIONS(1896), - [anon_sym_TILDE] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_CARET] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_typedef] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1894), - [anon_sym___attribute] = ACTIONS(1894), - [anon_sym___attribute__] = ACTIONS(1894), - [anon_sym___declspec] = ACTIONS(1894), - [anon_sym___cdecl] = ACTIONS(1894), - [anon_sym___clrcall] = ACTIONS(1894), - [anon_sym___stdcall] = ACTIONS(1894), - [anon_sym___fastcall] = ACTIONS(1894), - [anon_sym___thiscall] = ACTIONS(1894), - [anon_sym___vectorcall] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_static] = ACTIONS(1894), - [anon_sym_auto] = ACTIONS(1894), - [anon_sym_register] = ACTIONS(1894), - [anon_sym_inline] = ACTIONS(1894), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1894), - [anon_sym_volatile] = ACTIONS(1894), - [anon_sym_restrict] = ACTIONS(1894), - [anon_sym__Atomic] = ACTIONS(1894), - [anon_sym_in] = ACTIONS(1894), - [anon_sym_out] = ACTIONS(1894), - [anon_sym_inout] = ACTIONS(1894), - [anon_sym_bycopy] = ACTIONS(1894), - [anon_sym_byref] = ACTIONS(1894), - [anon_sym_oneway] = ACTIONS(1894), - [anon_sym__Nullable] = ACTIONS(1894), - [anon_sym__Nonnull] = ACTIONS(1894), - [anon_sym__Nullable_result] = ACTIONS(1894), - [anon_sym__Null_unspecified] = ACTIONS(1894), - [anon_sym___autoreleasing] = ACTIONS(1894), - [anon_sym___nullable] = ACTIONS(1894), - [anon_sym___nonnull] = ACTIONS(1894), - [anon_sym___strong] = ACTIONS(1894), - [anon_sym___weak] = ACTIONS(1894), - [anon_sym___bridge] = ACTIONS(1894), - [anon_sym___bridge_transfer] = ACTIONS(1894), - [anon_sym___bridge_retained] = ACTIONS(1894), - [anon_sym___unsafe_unretained] = ACTIONS(1894), - [anon_sym___block] = ACTIONS(1894), - [anon_sym___kindof] = ACTIONS(1894), - [anon_sym___unused] = ACTIONS(1894), - [anon_sym__Complex] = ACTIONS(1894), - [anon_sym___complex] = ACTIONS(1894), - [anon_sym_IBOutlet] = ACTIONS(1894), - [anon_sym_IBInspectable] = ACTIONS(1894), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1894), - [anon_sym_signed] = ACTIONS(1894), - [anon_sym_unsigned] = ACTIONS(1894), - [anon_sym_long] = ACTIONS(1894), - [anon_sym_short] = ACTIONS(1894), - [sym_primitive_type] = ACTIONS(1894), - [anon_sym_enum] = ACTIONS(1894), - [anon_sym_NS_ENUM] = ACTIONS(1894), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1894), - [anon_sym_NS_OPTIONS] = ACTIONS(1894), - [anon_sym_struct] = ACTIONS(1894), - [anon_sym_union] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_switch] = ACTIONS(1894), - [anon_sym_case] = ACTIONS(1894), - [anon_sym_default] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1894), - [anon_sym_continue] = ACTIONS(1894), - [anon_sym_goto] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1896), - [anon_sym_PLUS_PLUS] = ACTIONS(1896), - [anon_sym_sizeof] = ACTIONS(1894), - [sym_number_literal] = ACTIONS(1896), - [anon_sym_L_SQUOTE] = ACTIONS(1896), - [anon_sym_u_SQUOTE] = ACTIONS(1896), - [anon_sym_U_SQUOTE] = ACTIONS(1896), - [anon_sym_u8_SQUOTE] = ACTIONS(1896), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_L_DQUOTE] = ACTIONS(1896), - [anon_sym_u_DQUOTE] = ACTIONS(1896), - [anon_sym_U_DQUOTE] = ACTIONS(1896), - [anon_sym_u8_DQUOTE] = ACTIONS(1896), - [anon_sym_DQUOTE] = ACTIONS(1896), - [sym_true] = ACTIONS(1894), - [sym_false] = ACTIONS(1894), - [sym_null] = ACTIONS(1894), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1896), - [anon_sym_ATimport] = ACTIONS(1896), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1894), - [anon_sym_ATcompatibility_alias] = ACTIONS(1896), - [anon_sym_ATprotocol] = ACTIONS(1896), - [anon_sym_ATclass] = ACTIONS(1896), - [anon_sym_ATinterface] = ACTIONS(1896), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1894), - [sym_method_attribute_specifier] = ACTIONS(1894), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1894), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1894), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1894), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1894), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1894), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1894), - [anon_sym_NS_AVAILABLE] = ACTIONS(1894), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1894), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1894), - [anon_sym_API_AVAILABLE] = ACTIONS(1894), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1894), - [anon_sym_API_DEPRECATED] = ACTIONS(1894), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1894), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1894), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1894), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1894), - [anon_sym___deprecated_msg] = ACTIONS(1894), - [anon_sym___deprecated_enum_msg] = ACTIONS(1894), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1894), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1894), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1894), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1894), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1894), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1894), - [anon_sym_ATimplementation] = ACTIONS(1896), - [anon_sym_typeof] = ACTIONS(1894), - [anon_sym___typeof] = ACTIONS(1894), - [anon_sym___typeof__] = ACTIONS(1894), - [sym_self] = ACTIONS(1894), - [sym_super] = ACTIONS(1894), - [sym_nil] = ACTIONS(1894), - [sym_id] = ACTIONS(1894), - [sym_instancetype] = ACTIONS(1894), - [sym_Class] = ACTIONS(1894), - [sym_SEL] = ACTIONS(1894), - [sym_IMP] = ACTIONS(1894), - [sym_BOOL] = ACTIONS(1894), - [sym_auto] = ACTIONS(1894), - [anon_sym_ATautoreleasepool] = ACTIONS(1896), - [anon_sym_ATsynchronized] = ACTIONS(1896), - [anon_sym_ATtry] = ACTIONS(1896), - [anon_sym_ATthrow] = ACTIONS(1896), - [anon_sym_ATselector] = ACTIONS(1896), - [anon_sym_ATencode] = ACTIONS(1896), - [anon_sym_AT] = ACTIONS(1894), - [sym_YES] = ACTIONS(1894), - [sym_NO] = ACTIONS(1894), - [anon_sym___builtin_available] = ACTIONS(1894), - [anon_sym_ATavailable] = ACTIONS(1896), - [anon_sym_va_arg] = ACTIONS(1894), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [707] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [aux_sym_preproc_else_token1] = ACTIONS(1846), - [aux_sym_preproc_elif_token1] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [708] = { - [sym_identifier] = ACTIONS(1898), - [aux_sym_preproc_include_token1] = ACTIONS(1900), - [aux_sym_preproc_def_token1] = ACTIONS(1900), - [aux_sym_preproc_if_token1] = ACTIONS(1898), - [aux_sym_preproc_if_token2] = ACTIONS(1898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1898), - [aux_sym_preproc_else_token1] = ACTIONS(1898), - [aux_sym_preproc_elif_token1] = ACTIONS(1898), - [anon_sym_LPAREN2] = ACTIONS(1900), - [anon_sym_BANG] = ACTIONS(1900), - [anon_sym_TILDE] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1900), - [anon_sym_CARET] = ACTIONS(1900), - [anon_sym_AMP] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1900), - [anon_sym_typedef] = ACTIONS(1898), - [anon_sym_extern] = ACTIONS(1898), - [anon_sym___attribute] = ACTIONS(1898), - [anon_sym___attribute__] = ACTIONS(1898), - [anon_sym___declspec] = ACTIONS(1898), - [anon_sym___cdecl] = ACTIONS(1898), - [anon_sym___clrcall] = ACTIONS(1898), - [anon_sym___stdcall] = ACTIONS(1898), - [anon_sym___fastcall] = ACTIONS(1898), - [anon_sym___thiscall] = ACTIONS(1898), - [anon_sym___vectorcall] = ACTIONS(1898), - [anon_sym_LBRACE] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1900), - [anon_sym_static] = ACTIONS(1898), - [anon_sym_auto] = ACTIONS(1898), - [anon_sym_register] = ACTIONS(1898), - [anon_sym_inline] = ACTIONS(1898), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1898), - [anon_sym_const] = ACTIONS(1898), - [anon_sym_volatile] = ACTIONS(1898), - [anon_sym_restrict] = ACTIONS(1898), - [anon_sym__Atomic] = ACTIONS(1898), - [anon_sym_in] = ACTIONS(1898), - [anon_sym_out] = ACTIONS(1898), - [anon_sym_inout] = ACTIONS(1898), - [anon_sym_bycopy] = ACTIONS(1898), - [anon_sym_byref] = ACTIONS(1898), - [anon_sym_oneway] = ACTIONS(1898), - [anon_sym__Nullable] = ACTIONS(1898), - [anon_sym__Nonnull] = ACTIONS(1898), - [anon_sym__Nullable_result] = ACTIONS(1898), - [anon_sym__Null_unspecified] = ACTIONS(1898), - [anon_sym___autoreleasing] = ACTIONS(1898), - [anon_sym___nullable] = ACTIONS(1898), - [anon_sym___nonnull] = ACTIONS(1898), - [anon_sym___strong] = ACTIONS(1898), - [anon_sym___weak] = ACTIONS(1898), - [anon_sym___bridge] = ACTIONS(1898), - [anon_sym___bridge_transfer] = ACTIONS(1898), - [anon_sym___bridge_retained] = ACTIONS(1898), - [anon_sym___unsafe_unretained] = ACTIONS(1898), - [anon_sym___block] = ACTIONS(1898), - [anon_sym___kindof] = ACTIONS(1898), - [anon_sym___unused] = ACTIONS(1898), - [anon_sym__Complex] = ACTIONS(1898), - [anon_sym___complex] = ACTIONS(1898), - [anon_sym_IBOutlet] = ACTIONS(1898), - [anon_sym_IBInspectable] = ACTIONS(1898), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1898), - [anon_sym_signed] = ACTIONS(1898), - [anon_sym_unsigned] = ACTIONS(1898), - [anon_sym_long] = ACTIONS(1898), - [anon_sym_short] = ACTIONS(1898), - [sym_primitive_type] = ACTIONS(1898), - [anon_sym_enum] = ACTIONS(1898), - [anon_sym_NS_ENUM] = ACTIONS(1898), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1898), - [anon_sym_NS_OPTIONS] = ACTIONS(1898), - [anon_sym_struct] = ACTIONS(1898), - [anon_sym_union] = ACTIONS(1898), - [anon_sym_if] = ACTIONS(1898), - [anon_sym_switch] = ACTIONS(1898), - [anon_sym_case] = ACTIONS(1898), - [anon_sym_default] = ACTIONS(1898), - [anon_sym_while] = ACTIONS(1898), - [anon_sym_do] = ACTIONS(1898), - [anon_sym_for] = ACTIONS(1898), - [anon_sym_return] = ACTIONS(1898), - [anon_sym_break] = ACTIONS(1898), - [anon_sym_continue] = ACTIONS(1898), - [anon_sym_goto] = ACTIONS(1898), - [anon_sym_DASH_DASH] = ACTIONS(1900), - [anon_sym_PLUS_PLUS] = ACTIONS(1900), - [anon_sym_sizeof] = ACTIONS(1898), - [sym_number_literal] = ACTIONS(1900), - [anon_sym_L_SQUOTE] = ACTIONS(1900), - [anon_sym_u_SQUOTE] = ACTIONS(1900), - [anon_sym_U_SQUOTE] = ACTIONS(1900), - [anon_sym_u8_SQUOTE] = ACTIONS(1900), - [anon_sym_SQUOTE] = ACTIONS(1900), - [anon_sym_L_DQUOTE] = ACTIONS(1900), - [anon_sym_u_DQUOTE] = ACTIONS(1900), - [anon_sym_U_DQUOTE] = ACTIONS(1900), - [anon_sym_u8_DQUOTE] = ACTIONS(1900), - [anon_sym_DQUOTE] = ACTIONS(1900), - [sym_true] = ACTIONS(1898), - [sym_false] = ACTIONS(1898), - [sym_null] = ACTIONS(1898), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1900), - [anon_sym_ATimport] = ACTIONS(1900), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1898), - [anon_sym_ATcompatibility_alias] = ACTIONS(1900), - [anon_sym_ATprotocol] = ACTIONS(1900), - [anon_sym_ATclass] = ACTIONS(1900), - [anon_sym_ATinterface] = ACTIONS(1900), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1898), - [sym_method_attribute_specifier] = ACTIONS(1898), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1898), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1898), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1898), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1898), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1898), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1898), - [anon_sym_NS_AVAILABLE] = ACTIONS(1898), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1898), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1898), - [anon_sym_API_AVAILABLE] = ACTIONS(1898), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1898), - [anon_sym_API_DEPRECATED] = ACTIONS(1898), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1898), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1898), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1898), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1898), - [anon_sym___deprecated_msg] = ACTIONS(1898), - [anon_sym___deprecated_enum_msg] = ACTIONS(1898), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1898), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1898), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1898), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1898), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1898), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1898), - [anon_sym_ATimplementation] = ACTIONS(1900), - [anon_sym_typeof] = ACTIONS(1898), - [anon_sym___typeof] = ACTIONS(1898), - [anon_sym___typeof__] = ACTIONS(1898), - [sym_self] = ACTIONS(1898), - [sym_super] = ACTIONS(1898), - [sym_nil] = ACTIONS(1898), - [sym_id] = ACTIONS(1898), - [sym_instancetype] = ACTIONS(1898), - [sym_Class] = ACTIONS(1898), - [sym_SEL] = ACTIONS(1898), - [sym_IMP] = ACTIONS(1898), - [sym_BOOL] = ACTIONS(1898), - [sym_auto] = ACTIONS(1898), - [anon_sym_ATautoreleasepool] = ACTIONS(1900), - [anon_sym_ATsynchronized] = ACTIONS(1900), - [anon_sym_ATtry] = ACTIONS(1900), - [anon_sym_ATthrow] = ACTIONS(1900), - [anon_sym_ATselector] = ACTIONS(1900), - [anon_sym_ATencode] = ACTIONS(1900), - [anon_sym_AT] = ACTIONS(1898), - [sym_YES] = ACTIONS(1898), - [sym_NO] = ACTIONS(1898), - [anon_sym___builtin_available] = ACTIONS(1898), - [anon_sym_ATavailable] = ACTIONS(1900), - [anon_sym_va_arg] = ACTIONS(1898), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [709] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [aux_sym_preproc_else_token1] = ACTIONS(1846), - [aux_sym_preproc_elif_token1] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [710] = { - [sym_identifier] = ACTIONS(1902), - [aux_sym_preproc_include_token1] = ACTIONS(1904), - [aux_sym_preproc_def_token1] = ACTIONS(1904), - [aux_sym_preproc_if_token1] = ACTIONS(1902), - [aux_sym_preproc_if_token2] = ACTIONS(1902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1902), - [aux_sym_preproc_else_token1] = ACTIONS(1902), - [aux_sym_preproc_elif_token1] = ACTIONS(1902), - [anon_sym_LPAREN2] = ACTIONS(1904), - [anon_sym_BANG] = ACTIONS(1904), - [anon_sym_TILDE] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_PLUS] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1904), - [anon_sym_CARET] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1904), - [anon_sym_typedef] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1902), - [anon_sym___attribute] = ACTIONS(1902), - [anon_sym___attribute__] = ACTIONS(1902), - [anon_sym___declspec] = ACTIONS(1902), - [anon_sym___cdecl] = ACTIONS(1902), - [anon_sym___clrcall] = ACTIONS(1902), - [anon_sym___stdcall] = ACTIONS(1902), - [anon_sym___fastcall] = ACTIONS(1902), - [anon_sym___thiscall] = ACTIONS(1902), - [anon_sym___vectorcall] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1902), - [anon_sym_auto] = ACTIONS(1902), - [anon_sym_register] = ACTIONS(1902), - [anon_sym_inline] = ACTIONS(1902), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1902), - [anon_sym_const] = ACTIONS(1902), - [anon_sym_volatile] = ACTIONS(1902), - [anon_sym_restrict] = ACTIONS(1902), - [anon_sym__Atomic] = ACTIONS(1902), - [anon_sym_in] = ACTIONS(1902), - [anon_sym_out] = ACTIONS(1902), - [anon_sym_inout] = ACTIONS(1902), - [anon_sym_bycopy] = ACTIONS(1902), - [anon_sym_byref] = ACTIONS(1902), - [anon_sym_oneway] = ACTIONS(1902), - [anon_sym__Nullable] = ACTIONS(1902), - [anon_sym__Nonnull] = ACTIONS(1902), - [anon_sym__Nullable_result] = ACTIONS(1902), - [anon_sym__Null_unspecified] = ACTIONS(1902), - [anon_sym___autoreleasing] = ACTIONS(1902), - [anon_sym___nullable] = ACTIONS(1902), - [anon_sym___nonnull] = ACTIONS(1902), - [anon_sym___strong] = ACTIONS(1902), - [anon_sym___weak] = ACTIONS(1902), - [anon_sym___bridge] = ACTIONS(1902), - [anon_sym___bridge_transfer] = ACTIONS(1902), - [anon_sym___bridge_retained] = ACTIONS(1902), - [anon_sym___unsafe_unretained] = ACTIONS(1902), - [anon_sym___block] = ACTIONS(1902), - [anon_sym___kindof] = ACTIONS(1902), - [anon_sym___unused] = ACTIONS(1902), - [anon_sym__Complex] = ACTIONS(1902), - [anon_sym___complex] = ACTIONS(1902), - [anon_sym_IBOutlet] = ACTIONS(1902), - [anon_sym_IBInspectable] = ACTIONS(1902), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1902), - [anon_sym_signed] = ACTIONS(1902), - [anon_sym_unsigned] = ACTIONS(1902), - [anon_sym_long] = ACTIONS(1902), - [anon_sym_short] = ACTIONS(1902), - [sym_primitive_type] = ACTIONS(1902), - [anon_sym_enum] = ACTIONS(1902), - [anon_sym_NS_ENUM] = ACTIONS(1902), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1902), - [anon_sym_NS_OPTIONS] = ACTIONS(1902), - [anon_sym_struct] = ACTIONS(1902), - [anon_sym_union] = ACTIONS(1902), - [anon_sym_if] = ACTIONS(1902), - [anon_sym_switch] = ACTIONS(1902), - [anon_sym_case] = ACTIONS(1902), - [anon_sym_default] = ACTIONS(1902), - [anon_sym_while] = ACTIONS(1902), - [anon_sym_do] = ACTIONS(1902), - [anon_sym_for] = ACTIONS(1902), - [anon_sym_return] = ACTIONS(1902), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1902), - [anon_sym_goto] = ACTIONS(1902), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1904), - [anon_sym_u_SQUOTE] = ACTIONS(1904), - [anon_sym_U_SQUOTE] = ACTIONS(1904), - [anon_sym_u8_SQUOTE] = ACTIONS(1904), - [anon_sym_SQUOTE] = ACTIONS(1904), - [anon_sym_L_DQUOTE] = ACTIONS(1904), - [anon_sym_u_DQUOTE] = ACTIONS(1904), - [anon_sym_U_DQUOTE] = ACTIONS(1904), - [anon_sym_u8_DQUOTE] = ACTIONS(1904), - [anon_sym_DQUOTE] = ACTIONS(1904), - [sym_true] = ACTIONS(1902), - [sym_false] = ACTIONS(1902), - [sym_null] = ACTIONS(1902), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1904), - [anon_sym_ATimport] = ACTIONS(1904), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1902), - [anon_sym_ATcompatibility_alias] = ACTIONS(1904), - [anon_sym_ATprotocol] = ACTIONS(1904), - [anon_sym_ATclass] = ACTIONS(1904), - [anon_sym_ATinterface] = ACTIONS(1904), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1902), - [sym_method_attribute_specifier] = ACTIONS(1902), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1902), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1902), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1902), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1902), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1902), - [anon_sym_NS_AVAILABLE] = ACTIONS(1902), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1902), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_API_AVAILABLE] = ACTIONS(1902), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_API_DEPRECATED] = ACTIONS(1902), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1902), - [anon_sym___deprecated_msg] = ACTIONS(1902), - [anon_sym___deprecated_enum_msg] = ACTIONS(1902), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1902), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1902), - [anon_sym_ATimplementation] = ACTIONS(1904), - [anon_sym_typeof] = ACTIONS(1902), - [anon_sym___typeof] = ACTIONS(1902), - [anon_sym___typeof__] = ACTIONS(1902), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_nil] = ACTIONS(1902), - [sym_id] = ACTIONS(1902), - [sym_instancetype] = ACTIONS(1902), - [sym_Class] = ACTIONS(1902), - [sym_SEL] = ACTIONS(1902), - [sym_IMP] = ACTIONS(1902), - [sym_BOOL] = ACTIONS(1902), - [sym_auto] = ACTIONS(1902), - [anon_sym_ATautoreleasepool] = ACTIONS(1904), - [anon_sym_ATsynchronized] = ACTIONS(1904), - [anon_sym_ATtry] = ACTIONS(1904), - [anon_sym_ATthrow] = ACTIONS(1904), - [anon_sym_ATselector] = ACTIONS(1904), - [anon_sym_ATencode] = ACTIONS(1904), - [anon_sym_AT] = ACTIONS(1902), - [sym_YES] = ACTIONS(1902), - [sym_NO] = ACTIONS(1902), - [anon_sym___builtin_available] = ACTIONS(1902), - [anon_sym_ATavailable] = ACTIONS(1904), - [anon_sym_va_arg] = ACTIONS(1902), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [711] = { - [sym_identifier] = ACTIONS(1902), - [aux_sym_preproc_include_token1] = ACTIONS(1904), - [aux_sym_preproc_def_token1] = ACTIONS(1904), - [aux_sym_preproc_if_token1] = ACTIONS(1902), - [aux_sym_preproc_if_token2] = ACTIONS(1902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1902), - [aux_sym_preproc_else_token1] = ACTIONS(1902), - [aux_sym_preproc_elif_token1] = ACTIONS(1902), - [anon_sym_LPAREN2] = ACTIONS(1904), - [anon_sym_BANG] = ACTIONS(1904), - [anon_sym_TILDE] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_PLUS] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1904), - [anon_sym_CARET] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1904), - [anon_sym_typedef] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1902), - [anon_sym___attribute] = ACTIONS(1902), - [anon_sym___attribute__] = ACTIONS(1902), - [anon_sym___declspec] = ACTIONS(1902), - [anon_sym___cdecl] = ACTIONS(1902), - [anon_sym___clrcall] = ACTIONS(1902), - [anon_sym___stdcall] = ACTIONS(1902), - [anon_sym___fastcall] = ACTIONS(1902), - [anon_sym___thiscall] = ACTIONS(1902), - [anon_sym___vectorcall] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1902), - [anon_sym_auto] = ACTIONS(1902), - [anon_sym_register] = ACTIONS(1902), - [anon_sym_inline] = ACTIONS(1902), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1902), - [anon_sym_const] = ACTIONS(1902), - [anon_sym_volatile] = ACTIONS(1902), - [anon_sym_restrict] = ACTIONS(1902), - [anon_sym__Atomic] = ACTIONS(1902), - [anon_sym_in] = ACTIONS(1902), - [anon_sym_out] = ACTIONS(1902), - [anon_sym_inout] = ACTIONS(1902), - [anon_sym_bycopy] = ACTIONS(1902), - [anon_sym_byref] = ACTIONS(1902), - [anon_sym_oneway] = ACTIONS(1902), - [anon_sym__Nullable] = ACTIONS(1902), - [anon_sym__Nonnull] = ACTIONS(1902), - [anon_sym__Nullable_result] = ACTIONS(1902), - [anon_sym__Null_unspecified] = ACTIONS(1902), - [anon_sym___autoreleasing] = ACTIONS(1902), - [anon_sym___nullable] = ACTIONS(1902), - [anon_sym___nonnull] = ACTIONS(1902), - [anon_sym___strong] = ACTIONS(1902), - [anon_sym___weak] = ACTIONS(1902), - [anon_sym___bridge] = ACTIONS(1902), - [anon_sym___bridge_transfer] = ACTIONS(1902), - [anon_sym___bridge_retained] = ACTIONS(1902), - [anon_sym___unsafe_unretained] = ACTIONS(1902), - [anon_sym___block] = ACTIONS(1902), - [anon_sym___kindof] = ACTIONS(1902), - [anon_sym___unused] = ACTIONS(1902), - [anon_sym__Complex] = ACTIONS(1902), - [anon_sym___complex] = ACTIONS(1902), - [anon_sym_IBOutlet] = ACTIONS(1902), - [anon_sym_IBInspectable] = ACTIONS(1902), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1902), - [anon_sym_signed] = ACTIONS(1902), - [anon_sym_unsigned] = ACTIONS(1902), - [anon_sym_long] = ACTIONS(1902), - [anon_sym_short] = ACTIONS(1902), - [sym_primitive_type] = ACTIONS(1902), - [anon_sym_enum] = ACTIONS(1902), - [anon_sym_NS_ENUM] = ACTIONS(1902), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1902), - [anon_sym_NS_OPTIONS] = ACTIONS(1902), - [anon_sym_struct] = ACTIONS(1902), - [anon_sym_union] = ACTIONS(1902), - [anon_sym_if] = ACTIONS(1902), - [anon_sym_switch] = ACTIONS(1902), - [anon_sym_case] = ACTIONS(1902), - [anon_sym_default] = ACTIONS(1902), - [anon_sym_while] = ACTIONS(1902), - [anon_sym_do] = ACTIONS(1902), - [anon_sym_for] = ACTIONS(1902), - [anon_sym_return] = ACTIONS(1902), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1902), - [anon_sym_goto] = ACTIONS(1902), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1904), - [anon_sym_u_SQUOTE] = ACTIONS(1904), - [anon_sym_U_SQUOTE] = ACTIONS(1904), - [anon_sym_u8_SQUOTE] = ACTIONS(1904), - [anon_sym_SQUOTE] = ACTIONS(1904), - [anon_sym_L_DQUOTE] = ACTIONS(1904), - [anon_sym_u_DQUOTE] = ACTIONS(1904), - [anon_sym_U_DQUOTE] = ACTIONS(1904), - [anon_sym_u8_DQUOTE] = ACTIONS(1904), - [anon_sym_DQUOTE] = ACTIONS(1904), - [sym_true] = ACTIONS(1902), - [sym_false] = ACTIONS(1902), - [sym_null] = ACTIONS(1902), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1904), - [anon_sym_ATimport] = ACTIONS(1904), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1902), - [anon_sym_ATcompatibility_alias] = ACTIONS(1904), - [anon_sym_ATprotocol] = ACTIONS(1904), - [anon_sym_ATclass] = ACTIONS(1904), - [anon_sym_ATinterface] = ACTIONS(1904), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1902), - [sym_method_attribute_specifier] = ACTIONS(1902), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1902), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1902), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1902), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1902), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1902), - [anon_sym_NS_AVAILABLE] = ACTIONS(1902), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1902), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_API_AVAILABLE] = ACTIONS(1902), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_API_DEPRECATED] = ACTIONS(1902), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1902), - [anon_sym___deprecated_msg] = ACTIONS(1902), - [anon_sym___deprecated_enum_msg] = ACTIONS(1902), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1902), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1902), - [anon_sym_ATimplementation] = ACTIONS(1904), - [anon_sym_typeof] = ACTIONS(1902), - [anon_sym___typeof] = ACTIONS(1902), - [anon_sym___typeof__] = ACTIONS(1902), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_nil] = ACTIONS(1902), - [sym_id] = ACTIONS(1902), - [sym_instancetype] = ACTIONS(1902), - [sym_Class] = ACTIONS(1902), - [sym_SEL] = ACTIONS(1902), - [sym_IMP] = ACTIONS(1902), - [sym_BOOL] = ACTIONS(1902), - [sym_auto] = ACTIONS(1902), - [anon_sym_ATautoreleasepool] = ACTIONS(1904), - [anon_sym_ATsynchronized] = ACTIONS(1904), - [anon_sym_ATtry] = ACTIONS(1904), - [anon_sym_ATthrow] = ACTIONS(1904), - [anon_sym_ATselector] = ACTIONS(1904), - [anon_sym_ATencode] = ACTIONS(1904), - [anon_sym_AT] = ACTIONS(1902), - [sym_YES] = ACTIONS(1902), - [sym_NO] = ACTIONS(1902), - [anon_sym___builtin_available] = ACTIONS(1902), - [anon_sym_ATavailable] = ACTIONS(1904), - [anon_sym_va_arg] = ACTIONS(1902), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [712] = { - [sym_identifier] = ACTIONS(1906), - [aux_sym_preproc_include_token1] = ACTIONS(1908), - [aux_sym_preproc_def_token1] = ACTIONS(1908), - [aux_sym_preproc_if_token1] = ACTIONS(1906), - [aux_sym_preproc_if_token2] = ACTIONS(1906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1906), - [aux_sym_preproc_else_token1] = ACTIONS(1906), - [aux_sym_preproc_elif_token1] = ACTIONS(1906), - [anon_sym_LPAREN2] = ACTIONS(1908), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_TILDE] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_PLUS] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1908), - [anon_sym_CARET] = ACTIONS(1908), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1908), - [anon_sym_typedef] = ACTIONS(1906), - [anon_sym_extern] = ACTIONS(1906), - [anon_sym___attribute] = ACTIONS(1906), - [anon_sym___attribute__] = ACTIONS(1906), - [anon_sym___declspec] = ACTIONS(1906), - [anon_sym___cdecl] = ACTIONS(1906), - [anon_sym___clrcall] = ACTIONS(1906), - [anon_sym___stdcall] = ACTIONS(1906), - [anon_sym___fastcall] = ACTIONS(1906), - [anon_sym___thiscall] = ACTIONS(1906), - [anon_sym___vectorcall] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1908), - [anon_sym_static] = ACTIONS(1906), - [anon_sym_auto] = ACTIONS(1906), - [anon_sym_register] = ACTIONS(1906), - [anon_sym_inline] = ACTIONS(1906), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1906), - [anon_sym_const] = ACTIONS(1906), - [anon_sym_volatile] = ACTIONS(1906), - [anon_sym_restrict] = ACTIONS(1906), - [anon_sym__Atomic] = ACTIONS(1906), - [anon_sym_in] = ACTIONS(1906), - [anon_sym_out] = ACTIONS(1906), - [anon_sym_inout] = ACTIONS(1906), - [anon_sym_bycopy] = ACTIONS(1906), - [anon_sym_byref] = ACTIONS(1906), - [anon_sym_oneway] = ACTIONS(1906), - [anon_sym__Nullable] = ACTIONS(1906), - [anon_sym__Nonnull] = ACTIONS(1906), - [anon_sym__Nullable_result] = ACTIONS(1906), - [anon_sym__Null_unspecified] = ACTIONS(1906), - [anon_sym___autoreleasing] = ACTIONS(1906), - [anon_sym___nullable] = ACTIONS(1906), - [anon_sym___nonnull] = ACTIONS(1906), - [anon_sym___strong] = ACTIONS(1906), - [anon_sym___weak] = ACTIONS(1906), - [anon_sym___bridge] = ACTIONS(1906), - [anon_sym___bridge_transfer] = ACTIONS(1906), - [anon_sym___bridge_retained] = ACTIONS(1906), - [anon_sym___unsafe_unretained] = ACTIONS(1906), - [anon_sym___block] = ACTIONS(1906), - [anon_sym___kindof] = ACTIONS(1906), - [anon_sym___unused] = ACTIONS(1906), - [anon_sym__Complex] = ACTIONS(1906), - [anon_sym___complex] = ACTIONS(1906), - [anon_sym_IBOutlet] = ACTIONS(1906), - [anon_sym_IBInspectable] = ACTIONS(1906), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1906), - [anon_sym_signed] = ACTIONS(1906), - [anon_sym_unsigned] = ACTIONS(1906), - [anon_sym_long] = ACTIONS(1906), - [anon_sym_short] = ACTIONS(1906), - [sym_primitive_type] = ACTIONS(1906), - [anon_sym_enum] = ACTIONS(1906), - [anon_sym_NS_ENUM] = ACTIONS(1906), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1906), - [anon_sym_NS_OPTIONS] = ACTIONS(1906), - [anon_sym_struct] = ACTIONS(1906), - [anon_sym_union] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(1906), - [anon_sym_switch] = ACTIONS(1906), - [anon_sym_case] = ACTIONS(1906), - [anon_sym_default] = ACTIONS(1906), - [anon_sym_while] = ACTIONS(1906), - [anon_sym_do] = ACTIONS(1906), - [anon_sym_for] = ACTIONS(1906), - [anon_sym_return] = ACTIONS(1906), - [anon_sym_break] = ACTIONS(1906), - [anon_sym_continue] = ACTIONS(1906), - [anon_sym_goto] = ACTIONS(1906), - [anon_sym_DASH_DASH] = ACTIONS(1908), - [anon_sym_PLUS_PLUS] = ACTIONS(1908), - [anon_sym_sizeof] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1908), - [anon_sym_u_SQUOTE] = ACTIONS(1908), - [anon_sym_U_SQUOTE] = ACTIONS(1908), - [anon_sym_u8_SQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1908), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1908), - [anon_sym_ATimport] = ACTIONS(1908), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1906), - [anon_sym_ATcompatibility_alias] = ACTIONS(1908), - [anon_sym_ATprotocol] = ACTIONS(1908), - [anon_sym_ATclass] = ACTIONS(1908), - [anon_sym_ATinterface] = ACTIONS(1908), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1906), - [sym_method_attribute_specifier] = ACTIONS(1906), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1906), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1906), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1906), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1906), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1906), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1906), - [anon_sym_NS_AVAILABLE] = ACTIONS(1906), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1906), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_API_AVAILABLE] = ACTIONS(1906), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1906), - [anon_sym_API_DEPRECATED] = ACTIONS(1906), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1906), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1906), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1906), - [anon_sym___deprecated_msg] = ACTIONS(1906), - [anon_sym___deprecated_enum_msg] = ACTIONS(1906), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1906), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1906), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1906), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1906), - [anon_sym_ATimplementation] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(1906), - [anon_sym___typeof] = ACTIONS(1906), - [anon_sym___typeof__] = ACTIONS(1906), - [sym_self] = ACTIONS(1906), - [sym_super] = ACTIONS(1906), - [sym_nil] = ACTIONS(1906), - [sym_id] = ACTIONS(1906), - [sym_instancetype] = ACTIONS(1906), - [sym_Class] = ACTIONS(1906), - [sym_SEL] = ACTIONS(1906), - [sym_IMP] = ACTIONS(1906), - [sym_BOOL] = ACTIONS(1906), - [sym_auto] = ACTIONS(1906), - [anon_sym_ATautoreleasepool] = ACTIONS(1908), - [anon_sym_ATsynchronized] = ACTIONS(1908), - [anon_sym_ATtry] = ACTIONS(1908), - [anon_sym_ATthrow] = ACTIONS(1908), - [anon_sym_ATselector] = ACTIONS(1908), - [anon_sym_ATencode] = ACTIONS(1908), - [anon_sym_AT] = ACTIONS(1906), - [sym_YES] = ACTIONS(1906), - [sym_NO] = ACTIONS(1906), - [anon_sym___builtin_available] = ACTIONS(1906), - [anon_sym_ATavailable] = ACTIONS(1908), - [anon_sym_va_arg] = ACTIONS(1906), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [713] = { - [sym_identifier] = ACTIONS(1906), - [aux_sym_preproc_include_token1] = ACTIONS(1908), - [aux_sym_preproc_def_token1] = ACTIONS(1908), - [aux_sym_preproc_if_token1] = ACTIONS(1906), - [aux_sym_preproc_if_token2] = ACTIONS(1906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1906), - [aux_sym_preproc_else_token1] = ACTIONS(1906), - [aux_sym_preproc_elif_token1] = ACTIONS(1906), - [anon_sym_LPAREN2] = ACTIONS(1908), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_TILDE] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_PLUS] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1908), - [anon_sym_CARET] = ACTIONS(1908), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1908), - [anon_sym_typedef] = ACTIONS(1906), - [anon_sym_extern] = ACTIONS(1906), - [anon_sym___attribute] = ACTIONS(1906), - [anon_sym___attribute__] = ACTIONS(1906), - [anon_sym___declspec] = ACTIONS(1906), - [anon_sym___cdecl] = ACTIONS(1906), - [anon_sym___clrcall] = ACTIONS(1906), - [anon_sym___stdcall] = ACTIONS(1906), - [anon_sym___fastcall] = ACTIONS(1906), - [anon_sym___thiscall] = ACTIONS(1906), - [anon_sym___vectorcall] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1908), - [anon_sym_static] = ACTIONS(1906), - [anon_sym_auto] = ACTIONS(1906), - [anon_sym_register] = ACTIONS(1906), - [anon_sym_inline] = ACTIONS(1906), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1906), - [anon_sym_const] = ACTIONS(1906), - [anon_sym_volatile] = ACTIONS(1906), - [anon_sym_restrict] = ACTIONS(1906), - [anon_sym__Atomic] = ACTIONS(1906), - [anon_sym_in] = ACTIONS(1906), - [anon_sym_out] = ACTIONS(1906), - [anon_sym_inout] = ACTIONS(1906), - [anon_sym_bycopy] = ACTIONS(1906), - [anon_sym_byref] = ACTIONS(1906), - [anon_sym_oneway] = ACTIONS(1906), - [anon_sym__Nullable] = ACTIONS(1906), - [anon_sym__Nonnull] = ACTIONS(1906), - [anon_sym__Nullable_result] = ACTIONS(1906), - [anon_sym__Null_unspecified] = ACTIONS(1906), - [anon_sym___autoreleasing] = ACTIONS(1906), - [anon_sym___nullable] = ACTIONS(1906), - [anon_sym___nonnull] = ACTIONS(1906), - [anon_sym___strong] = ACTIONS(1906), - [anon_sym___weak] = ACTIONS(1906), - [anon_sym___bridge] = ACTIONS(1906), - [anon_sym___bridge_transfer] = ACTIONS(1906), - [anon_sym___bridge_retained] = ACTIONS(1906), - [anon_sym___unsafe_unretained] = ACTIONS(1906), - [anon_sym___block] = ACTIONS(1906), - [anon_sym___kindof] = ACTIONS(1906), - [anon_sym___unused] = ACTIONS(1906), - [anon_sym__Complex] = ACTIONS(1906), - [anon_sym___complex] = ACTIONS(1906), - [anon_sym_IBOutlet] = ACTIONS(1906), - [anon_sym_IBInspectable] = ACTIONS(1906), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1906), - [anon_sym_signed] = ACTIONS(1906), - [anon_sym_unsigned] = ACTIONS(1906), - [anon_sym_long] = ACTIONS(1906), - [anon_sym_short] = ACTIONS(1906), - [sym_primitive_type] = ACTIONS(1906), - [anon_sym_enum] = ACTIONS(1906), - [anon_sym_NS_ENUM] = ACTIONS(1906), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1906), - [anon_sym_NS_OPTIONS] = ACTIONS(1906), - [anon_sym_struct] = ACTIONS(1906), - [anon_sym_union] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(1906), - [anon_sym_switch] = ACTIONS(1906), - [anon_sym_case] = ACTIONS(1906), - [anon_sym_default] = ACTIONS(1906), - [anon_sym_while] = ACTIONS(1906), - [anon_sym_do] = ACTIONS(1906), - [anon_sym_for] = ACTIONS(1906), - [anon_sym_return] = ACTIONS(1906), - [anon_sym_break] = ACTIONS(1906), - [anon_sym_continue] = ACTIONS(1906), - [anon_sym_goto] = ACTIONS(1906), - [anon_sym_DASH_DASH] = ACTIONS(1908), - [anon_sym_PLUS_PLUS] = ACTIONS(1908), - [anon_sym_sizeof] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1908), - [anon_sym_u_SQUOTE] = ACTIONS(1908), - [anon_sym_U_SQUOTE] = ACTIONS(1908), - [anon_sym_u8_SQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1908), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1908), - [anon_sym_ATimport] = ACTIONS(1908), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1906), - [anon_sym_ATcompatibility_alias] = ACTIONS(1908), - [anon_sym_ATprotocol] = ACTIONS(1908), - [anon_sym_ATclass] = ACTIONS(1908), - [anon_sym_ATinterface] = ACTIONS(1908), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1906), - [sym_method_attribute_specifier] = ACTIONS(1906), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1906), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1906), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1906), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1906), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1906), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1906), - [anon_sym_NS_AVAILABLE] = ACTIONS(1906), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1906), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_API_AVAILABLE] = ACTIONS(1906), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1906), - [anon_sym_API_DEPRECATED] = ACTIONS(1906), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1906), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1906), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1906), - [anon_sym___deprecated_msg] = ACTIONS(1906), - [anon_sym___deprecated_enum_msg] = ACTIONS(1906), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1906), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1906), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1906), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1906), - [anon_sym_ATimplementation] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(1906), - [anon_sym___typeof] = ACTIONS(1906), - [anon_sym___typeof__] = ACTIONS(1906), - [sym_self] = ACTIONS(1906), - [sym_super] = ACTIONS(1906), - [sym_nil] = ACTIONS(1906), - [sym_id] = ACTIONS(1906), - [sym_instancetype] = ACTIONS(1906), - [sym_Class] = ACTIONS(1906), - [sym_SEL] = ACTIONS(1906), - [sym_IMP] = ACTIONS(1906), - [sym_BOOL] = ACTIONS(1906), - [sym_auto] = ACTIONS(1906), - [anon_sym_ATautoreleasepool] = ACTIONS(1908), - [anon_sym_ATsynchronized] = ACTIONS(1908), - [anon_sym_ATtry] = ACTIONS(1908), - [anon_sym_ATthrow] = ACTIONS(1908), - [anon_sym_ATselector] = ACTIONS(1908), - [anon_sym_ATencode] = ACTIONS(1908), - [anon_sym_AT] = ACTIONS(1906), - [sym_YES] = ACTIONS(1906), - [sym_NO] = ACTIONS(1906), - [anon_sym___builtin_available] = ACTIONS(1906), - [anon_sym_ATavailable] = ACTIONS(1908), - [anon_sym_va_arg] = ACTIONS(1906), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [714] = { - [sym_identifier] = ACTIONS(1910), - [aux_sym_preproc_include_token1] = ACTIONS(1912), - [aux_sym_preproc_def_token1] = ACTIONS(1912), - [aux_sym_preproc_if_token1] = ACTIONS(1910), - [aux_sym_preproc_if_token2] = ACTIONS(1910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1910), - [aux_sym_preproc_else_token1] = ACTIONS(1910), - [aux_sym_preproc_elif_token1] = ACTIONS(1910), - [anon_sym_LPAREN2] = ACTIONS(1912), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_TILDE] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1910), - [anon_sym_PLUS] = ACTIONS(1910), - [anon_sym_STAR] = ACTIONS(1912), - [anon_sym_CARET] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_typedef] = ACTIONS(1910), - [anon_sym_extern] = ACTIONS(1910), - [anon_sym___attribute] = ACTIONS(1910), - [anon_sym___attribute__] = ACTIONS(1910), - [anon_sym___declspec] = ACTIONS(1910), - [anon_sym___cdecl] = ACTIONS(1910), - [anon_sym___clrcall] = ACTIONS(1910), - [anon_sym___stdcall] = ACTIONS(1910), - [anon_sym___fastcall] = ACTIONS(1910), - [anon_sym___thiscall] = ACTIONS(1910), - [anon_sym___vectorcall] = ACTIONS(1910), - [anon_sym_LBRACE] = ACTIONS(1912), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_auto] = ACTIONS(1910), - [anon_sym_register] = ACTIONS(1910), - [anon_sym_inline] = ACTIONS(1910), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_volatile] = ACTIONS(1910), - [anon_sym_restrict] = ACTIONS(1910), - [anon_sym__Atomic] = ACTIONS(1910), - [anon_sym_in] = ACTIONS(1910), - [anon_sym_out] = ACTIONS(1910), - [anon_sym_inout] = ACTIONS(1910), - [anon_sym_bycopy] = ACTIONS(1910), - [anon_sym_byref] = ACTIONS(1910), - [anon_sym_oneway] = ACTIONS(1910), - [anon_sym__Nullable] = ACTIONS(1910), - [anon_sym__Nonnull] = ACTIONS(1910), - [anon_sym__Nullable_result] = ACTIONS(1910), - [anon_sym__Null_unspecified] = ACTIONS(1910), - [anon_sym___autoreleasing] = ACTIONS(1910), - [anon_sym___nullable] = ACTIONS(1910), - [anon_sym___nonnull] = ACTIONS(1910), - [anon_sym___strong] = ACTIONS(1910), - [anon_sym___weak] = ACTIONS(1910), - [anon_sym___bridge] = ACTIONS(1910), - [anon_sym___bridge_transfer] = ACTIONS(1910), - [anon_sym___bridge_retained] = ACTIONS(1910), - [anon_sym___unsafe_unretained] = ACTIONS(1910), - [anon_sym___block] = ACTIONS(1910), - [anon_sym___kindof] = ACTIONS(1910), - [anon_sym___unused] = ACTIONS(1910), - [anon_sym__Complex] = ACTIONS(1910), - [anon_sym___complex] = ACTIONS(1910), - [anon_sym_IBOutlet] = ACTIONS(1910), - [anon_sym_IBInspectable] = ACTIONS(1910), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1910), - [anon_sym_signed] = ACTIONS(1910), - [anon_sym_unsigned] = ACTIONS(1910), - [anon_sym_long] = ACTIONS(1910), - [anon_sym_short] = ACTIONS(1910), - [sym_primitive_type] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_NS_ENUM] = ACTIONS(1910), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1910), - [anon_sym_NS_OPTIONS] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_switch] = ACTIONS(1910), - [anon_sym_case] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [anon_sym_do] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_goto] = ACTIONS(1910), - [anon_sym_DASH_DASH] = ACTIONS(1912), - [anon_sym_PLUS_PLUS] = ACTIONS(1912), - [anon_sym_sizeof] = ACTIONS(1910), - [sym_number_literal] = ACTIONS(1912), - [anon_sym_L_SQUOTE] = ACTIONS(1912), - [anon_sym_u_SQUOTE] = ACTIONS(1912), - [anon_sym_U_SQUOTE] = ACTIONS(1912), - [anon_sym_u8_SQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE] = ACTIONS(1912), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [sym_null] = ACTIONS(1910), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1912), - [anon_sym_ATimport] = ACTIONS(1912), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1910), - [anon_sym_ATcompatibility_alias] = ACTIONS(1912), - [anon_sym_ATprotocol] = ACTIONS(1912), - [anon_sym_ATclass] = ACTIONS(1912), - [anon_sym_ATinterface] = ACTIONS(1912), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1910), - [sym_method_attribute_specifier] = ACTIONS(1910), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1910), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1910), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1910), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1910), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1910), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1910), - [anon_sym_NS_AVAILABLE] = ACTIONS(1910), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1910), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1910), - [anon_sym_API_AVAILABLE] = ACTIONS(1910), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1910), - [anon_sym_API_DEPRECATED] = ACTIONS(1910), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1910), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1910), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1910), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1910), - [anon_sym___deprecated_msg] = ACTIONS(1910), - [anon_sym___deprecated_enum_msg] = ACTIONS(1910), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1910), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1910), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1910), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1910), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1910), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1910), - [anon_sym_ATimplementation] = ACTIONS(1912), - [anon_sym_typeof] = ACTIONS(1910), - [anon_sym___typeof] = ACTIONS(1910), - [anon_sym___typeof__] = ACTIONS(1910), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_nil] = ACTIONS(1910), - [sym_id] = ACTIONS(1910), - [sym_instancetype] = ACTIONS(1910), - [sym_Class] = ACTIONS(1910), - [sym_SEL] = ACTIONS(1910), - [sym_IMP] = ACTIONS(1910), - [sym_BOOL] = ACTIONS(1910), - [sym_auto] = ACTIONS(1910), - [anon_sym_ATautoreleasepool] = ACTIONS(1912), - [anon_sym_ATsynchronized] = ACTIONS(1912), - [anon_sym_ATtry] = ACTIONS(1912), - [anon_sym_ATthrow] = ACTIONS(1912), - [anon_sym_ATselector] = ACTIONS(1912), - [anon_sym_ATencode] = ACTIONS(1912), - [anon_sym_AT] = ACTIONS(1910), - [sym_YES] = ACTIONS(1910), - [sym_NO] = ACTIONS(1910), - [anon_sym___builtin_available] = ACTIONS(1910), - [anon_sym_ATavailable] = ACTIONS(1912), - [anon_sym_va_arg] = ACTIONS(1910), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [715] = { - [sym_identifier] = ACTIONS(1914), - [aux_sym_preproc_include_token1] = ACTIONS(1916), - [aux_sym_preproc_def_token1] = ACTIONS(1916), - [aux_sym_preproc_if_token1] = ACTIONS(1914), - [aux_sym_preproc_if_token2] = ACTIONS(1914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1914), - [aux_sym_preproc_else_token1] = ACTIONS(1914), - [aux_sym_preproc_elif_token1] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1916), - [anon_sym_BANG] = ACTIONS(1916), - [anon_sym_TILDE] = ACTIONS(1916), - [anon_sym_DASH] = ACTIONS(1914), - [anon_sym_PLUS] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1916), - [anon_sym_CARET] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_typedef] = ACTIONS(1914), - [anon_sym_extern] = ACTIONS(1914), - [anon_sym___attribute] = ACTIONS(1914), - [anon_sym___attribute__] = ACTIONS(1914), - [anon_sym___declspec] = ACTIONS(1914), - [anon_sym___cdecl] = ACTIONS(1914), - [anon_sym___clrcall] = ACTIONS(1914), - [anon_sym___stdcall] = ACTIONS(1914), - [anon_sym___fastcall] = ACTIONS(1914), - [anon_sym___thiscall] = ACTIONS(1914), - [anon_sym___vectorcall] = ACTIONS(1914), - [anon_sym_LBRACE] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_static] = ACTIONS(1914), - [anon_sym_auto] = ACTIONS(1914), - [anon_sym_register] = ACTIONS(1914), - [anon_sym_inline] = ACTIONS(1914), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1914), - [anon_sym_volatile] = ACTIONS(1914), - [anon_sym_restrict] = ACTIONS(1914), - [anon_sym__Atomic] = ACTIONS(1914), - [anon_sym_in] = ACTIONS(1914), - [anon_sym_out] = ACTIONS(1914), - [anon_sym_inout] = ACTIONS(1914), - [anon_sym_bycopy] = ACTIONS(1914), - [anon_sym_byref] = ACTIONS(1914), - [anon_sym_oneway] = ACTIONS(1914), - [anon_sym__Nullable] = ACTIONS(1914), - [anon_sym__Nonnull] = ACTIONS(1914), - [anon_sym__Nullable_result] = ACTIONS(1914), - [anon_sym__Null_unspecified] = ACTIONS(1914), - [anon_sym___autoreleasing] = ACTIONS(1914), - [anon_sym___nullable] = ACTIONS(1914), - [anon_sym___nonnull] = ACTIONS(1914), - [anon_sym___strong] = ACTIONS(1914), - [anon_sym___weak] = ACTIONS(1914), - [anon_sym___bridge] = ACTIONS(1914), - [anon_sym___bridge_transfer] = ACTIONS(1914), - [anon_sym___bridge_retained] = ACTIONS(1914), - [anon_sym___unsafe_unretained] = ACTIONS(1914), - [anon_sym___block] = ACTIONS(1914), - [anon_sym___kindof] = ACTIONS(1914), - [anon_sym___unused] = ACTIONS(1914), - [anon_sym__Complex] = ACTIONS(1914), - [anon_sym___complex] = ACTIONS(1914), - [anon_sym_IBOutlet] = ACTIONS(1914), - [anon_sym_IBInspectable] = ACTIONS(1914), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1914), - [anon_sym_signed] = ACTIONS(1914), - [anon_sym_unsigned] = ACTIONS(1914), - [anon_sym_long] = ACTIONS(1914), - [anon_sym_short] = ACTIONS(1914), - [sym_primitive_type] = ACTIONS(1914), - [anon_sym_enum] = ACTIONS(1914), - [anon_sym_NS_ENUM] = ACTIONS(1914), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1914), - [anon_sym_NS_OPTIONS] = ACTIONS(1914), - [anon_sym_struct] = ACTIONS(1914), - [anon_sym_union] = ACTIONS(1914), - [anon_sym_if] = ACTIONS(1914), - [anon_sym_switch] = ACTIONS(1914), - [anon_sym_case] = ACTIONS(1914), - [anon_sym_default] = ACTIONS(1914), - [anon_sym_while] = ACTIONS(1914), - [anon_sym_do] = ACTIONS(1914), - [anon_sym_for] = ACTIONS(1914), - [anon_sym_return] = ACTIONS(1914), - [anon_sym_break] = ACTIONS(1914), - [anon_sym_continue] = ACTIONS(1914), - [anon_sym_goto] = ACTIONS(1914), - [anon_sym_DASH_DASH] = ACTIONS(1916), - [anon_sym_PLUS_PLUS] = ACTIONS(1916), - [anon_sym_sizeof] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1916), - [anon_sym_u_SQUOTE] = ACTIONS(1916), - [anon_sym_U_SQUOTE] = ACTIONS(1916), - [anon_sym_u8_SQUOTE] = ACTIONS(1916), - [anon_sym_SQUOTE] = ACTIONS(1916), - [anon_sym_L_DQUOTE] = ACTIONS(1916), - [anon_sym_u_DQUOTE] = ACTIONS(1916), - [anon_sym_U_DQUOTE] = ACTIONS(1916), - [anon_sym_u8_DQUOTE] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [sym_null] = ACTIONS(1914), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1916), - [anon_sym_ATimport] = ACTIONS(1916), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1914), - [anon_sym_ATcompatibility_alias] = ACTIONS(1916), - [anon_sym_ATprotocol] = ACTIONS(1916), - [anon_sym_ATclass] = ACTIONS(1916), - [anon_sym_ATinterface] = ACTIONS(1916), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1914), - [sym_method_attribute_specifier] = ACTIONS(1914), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1914), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1914), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1914), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1914), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1914), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1914), - [anon_sym_NS_AVAILABLE] = ACTIONS(1914), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1914), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1914), - [anon_sym_API_AVAILABLE] = ACTIONS(1914), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1914), - [anon_sym_API_DEPRECATED] = ACTIONS(1914), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1914), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1914), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1914), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1914), - [anon_sym___deprecated_msg] = ACTIONS(1914), - [anon_sym___deprecated_enum_msg] = ACTIONS(1914), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1914), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1914), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1914), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1914), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1914), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1914), - [anon_sym_ATimplementation] = ACTIONS(1916), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym___typeof] = ACTIONS(1914), - [anon_sym___typeof__] = ACTIONS(1914), - [sym_self] = ACTIONS(1914), - [sym_super] = ACTIONS(1914), - [sym_nil] = ACTIONS(1914), - [sym_id] = ACTIONS(1914), - [sym_instancetype] = ACTIONS(1914), - [sym_Class] = ACTIONS(1914), - [sym_SEL] = ACTIONS(1914), - [sym_IMP] = ACTIONS(1914), - [sym_BOOL] = ACTIONS(1914), - [sym_auto] = ACTIONS(1914), - [anon_sym_ATautoreleasepool] = ACTIONS(1916), - [anon_sym_ATsynchronized] = ACTIONS(1916), - [anon_sym_ATtry] = ACTIONS(1916), - [anon_sym_ATthrow] = ACTIONS(1916), - [anon_sym_ATselector] = ACTIONS(1916), - [anon_sym_ATencode] = ACTIONS(1916), - [anon_sym_AT] = ACTIONS(1914), - [sym_YES] = ACTIONS(1914), - [sym_NO] = ACTIONS(1914), - [anon_sym___builtin_available] = ACTIONS(1914), - [anon_sym_ATavailable] = ACTIONS(1916), - [anon_sym_va_arg] = ACTIONS(1914), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [716] = { - [sym_identifier] = ACTIONS(1918), - [aux_sym_preproc_include_token1] = ACTIONS(1920), - [aux_sym_preproc_def_token1] = ACTIONS(1920), - [aux_sym_preproc_if_token1] = ACTIONS(1918), - [aux_sym_preproc_if_token2] = ACTIONS(1918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1918), - [aux_sym_preproc_else_token1] = ACTIONS(1918), - [aux_sym_preproc_elif_token1] = ACTIONS(1918), - [anon_sym_LPAREN2] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_PLUS] = ACTIONS(1918), - [anon_sym_STAR] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1920), - [anon_sym_AMP] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1920), - [anon_sym_typedef] = ACTIONS(1918), - [anon_sym_extern] = ACTIONS(1918), - [anon_sym___attribute] = ACTIONS(1918), - [anon_sym___attribute__] = ACTIONS(1918), - [anon_sym___declspec] = ACTIONS(1918), - [anon_sym___cdecl] = ACTIONS(1918), - [anon_sym___clrcall] = ACTIONS(1918), - [anon_sym___stdcall] = ACTIONS(1918), - [anon_sym___fastcall] = ACTIONS(1918), - [anon_sym___thiscall] = ACTIONS(1918), - [anon_sym___vectorcall] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_static] = ACTIONS(1918), - [anon_sym_auto] = ACTIONS(1918), - [anon_sym_register] = ACTIONS(1918), - [anon_sym_inline] = ACTIONS(1918), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1918), - [anon_sym_const] = ACTIONS(1918), - [anon_sym_volatile] = ACTIONS(1918), - [anon_sym_restrict] = ACTIONS(1918), - [anon_sym__Atomic] = ACTIONS(1918), - [anon_sym_in] = ACTIONS(1918), - [anon_sym_out] = ACTIONS(1918), - [anon_sym_inout] = ACTIONS(1918), - [anon_sym_bycopy] = ACTIONS(1918), - [anon_sym_byref] = ACTIONS(1918), - [anon_sym_oneway] = ACTIONS(1918), - [anon_sym__Nullable] = ACTIONS(1918), - [anon_sym__Nonnull] = ACTIONS(1918), - [anon_sym__Nullable_result] = ACTIONS(1918), - [anon_sym__Null_unspecified] = ACTIONS(1918), - [anon_sym___autoreleasing] = ACTIONS(1918), - [anon_sym___nullable] = ACTIONS(1918), - [anon_sym___nonnull] = ACTIONS(1918), - [anon_sym___strong] = ACTIONS(1918), - [anon_sym___weak] = ACTIONS(1918), - [anon_sym___bridge] = ACTIONS(1918), - [anon_sym___bridge_transfer] = ACTIONS(1918), - [anon_sym___bridge_retained] = ACTIONS(1918), - [anon_sym___unsafe_unretained] = ACTIONS(1918), - [anon_sym___block] = ACTIONS(1918), - [anon_sym___kindof] = ACTIONS(1918), - [anon_sym___unused] = ACTIONS(1918), - [anon_sym__Complex] = ACTIONS(1918), - [anon_sym___complex] = ACTIONS(1918), - [anon_sym_IBOutlet] = ACTIONS(1918), - [anon_sym_IBInspectable] = ACTIONS(1918), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1918), - [anon_sym_signed] = ACTIONS(1918), - [anon_sym_unsigned] = ACTIONS(1918), - [anon_sym_long] = ACTIONS(1918), - [anon_sym_short] = ACTIONS(1918), - [sym_primitive_type] = ACTIONS(1918), - [anon_sym_enum] = ACTIONS(1918), - [anon_sym_NS_ENUM] = ACTIONS(1918), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1918), - [anon_sym_NS_OPTIONS] = ACTIONS(1918), - [anon_sym_struct] = ACTIONS(1918), - [anon_sym_union] = ACTIONS(1918), - [anon_sym_if] = ACTIONS(1918), - [anon_sym_switch] = ACTIONS(1918), - [anon_sym_case] = ACTIONS(1918), - [anon_sym_default] = ACTIONS(1918), - [anon_sym_while] = ACTIONS(1918), - [anon_sym_do] = ACTIONS(1918), - [anon_sym_for] = ACTIONS(1918), - [anon_sym_return] = ACTIONS(1918), - [anon_sym_break] = ACTIONS(1918), - [anon_sym_continue] = ACTIONS(1918), - [anon_sym_goto] = ACTIONS(1918), - [anon_sym_DASH_DASH] = ACTIONS(1920), - [anon_sym_PLUS_PLUS] = ACTIONS(1920), - [anon_sym_sizeof] = ACTIONS(1918), - [sym_number_literal] = ACTIONS(1920), - [anon_sym_L_SQUOTE] = ACTIONS(1920), - [anon_sym_u_SQUOTE] = ACTIONS(1920), - [anon_sym_U_SQUOTE] = ACTIONS(1920), - [anon_sym_u8_SQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1918), - [sym_false] = ACTIONS(1918), - [sym_null] = ACTIONS(1918), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1920), - [anon_sym_ATimport] = ACTIONS(1920), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1918), - [anon_sym_ATcompatibility_alias] = ACTIONS(1920), - [anon_sym_ATprotocol] = ACTIONS(1920), - [anon_sym_ATclass] = ACTIONS(1920), - [anon_sym_ATinterface] = ACTIONS(1920), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1918), - [sym_method_attribute_specifier] = ACTIONS(1918), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1918), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1918), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1918), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1918), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1918), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1918), - [anon_sym_NS_AVAILABLE] = ACTIONS(1918), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1918), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1918), - [anon_sym_API_AVAILABLE] = ACTIONS(1918), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1918), - [anon_sym_API_DEPRECATED] = ACTIONS(1918), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1918), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1918), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1918), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1918), - [anon_sym___deprecated_msg] = ACTIONS(1918), - [anon_sym___deprecated_enum_msg] = ACTIONS(1918), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1918), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1918), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1918), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1918), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1918), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1918), - [anon_sym_ATimplementation] = ACTIONS(1920), - [anon_sym_typeof] = ACTIONS(1918), - [anon_sym___typeof] = ACTIONS(1918), - [anon_sym___typeof__] = ACTIONS(1918), - [sym_self] = ACTIONS(1918), - [sym_super] = ACTIONS(1918), - [sym_nil] = ACTIONS(1918), - [sym_id] = ACTIONS(1918), - [sym_instancetype] = ACTIONS(1918), - [sym_Class] = ACTIONS(1918), - [sym_SEL] = ACTIONS(1918), - [sym_IMP] = ACTIONS(1918), - [sym_BOOL] = ACTIONS(1918), - [sym_auto] = ACTIONS(1918), - [anon_sym_ATautoreleasepool] = ACTIONS(1920), - [anon_sym_ATsynchronized] = ACTIONS(1920), - [anon_sym_ATtry] = ACTIONS(1920), - [anon_sym_ATthrow] = ACTIONS(1920), - [anon_sym_ATselector] = ACTIONS(1920), - [anon_sym_ATencode] = ACTIONS(1920), - [anon_sym_AT] = ACTIONS(1918), - [sym_YES] = ACTIONS(1918), - [sym_NO] = ACTIONS(1918), - [anon_sym___builtin_available] = ACTIONS(1918), - [anon_sym_ATavailable] = ACTIONS(1920), - [anon_sym_va_arg] = ACTIONS(1918), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [717] = { - [sym_identifier] = ACTIONS(1922), - [aux_sym_preproc_include_token1] = ACTIONS(1924), - [aux_sym_preproc_def_token1] = ACTIONS(1924), - [aux_sym_preproc_if_token1] = ACTIONS(1922), - [aux_sym_preproc_if_token2] = ACTIONS(1922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1922), - [aux_sym_preproc_else_token1] = ACTIONS(1922), - [aux_sym_preproc_elif_token1] = ACTIONS(1922), - [anon_sym_LPAREN2] = ACTIONS(1924), - [anon_sym_BANG] = ACTIONS(1924), - [anon_sym_TILDE] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_CARET] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_typedef] = ACTIONS(1922), - [anon_sym_extern] = ACTIONS(1922), - [anon_sym___attribute] = ACTIONS(1922), - [anon_sym___attribute__] = ACTIONS(1922), - [anon_sym___declspec] = ACTIONS(1922), - [anon_sym___cdecl] = ACTIONS(1922), - [anon_sym___clrcall] = ACTIONS(1922), - [anon_sym___stdcall] = ACTIONS(1922), - [anon_sym___fastcall] = ACTIONS(1922), - [anon_sym___thiscall] = ACTIONS(1922), - [anon_sym___vectorcall] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1922), - [anon_sym_auto] = ACTIONS(1922), - [anon_sym_register] = ACTIONS(1922), - [anon_sym_inline] = ACTIONS(1922), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(1922), - [anon_sym_volatile] = ACTIONS(1922), - [anon_sym_restrict] = ACTIONS(1922), - [anon_sym__Atomic] = ACTIONS(1922), - [anon_sym_in] = ACTIONS(1922), - [anon_sym_out] = ACTIONS(1922), - [anon_sym_inout] = ACTIONS(1922), - [anon_sym_bycopy] = ACTIONS(1922), - [anon_sym_byref] = ACTIONS(1922), - [anon_sym_oneway] = ACTIONS(1922), - [anon_sym__Nullable] = ACTIONS(1922), - [anon_sym__Nonnull] = ACTIONS(1922), - [anon_sym__Nullable_result] = ACTIONS(1922), - [anon_sym__Null_unspecified] = ACTIONS(1922), - [anon_sym___autoreleasing] = ACTIONS(1922), - [anon_sym___nullable] = ACTIONS(1922), - [anon_sym___nonnull] = ACTIONS(1922), - [anon_sym___strong] = ACTIONS(1922), - [anon_sym___weak] = ACTIONS(1922), - [anon_sym___bridge] = ACTIONS(1922), - [anon_sym___bridge_transfer] = ACTIONS(1922), - [anon_sym___bridge_retained] = ACTIONS(1922), - [anon_sym___unsafe_unretained] = ACTIONS(1922), - [anon_sym___block] = ACTIONS(1922), - [anon_sym___kindof] = ACTIONS(1922), - [anon_sym___unused] = ACTIONS(1922), - [anon_sym__Complex] = ACTIONS(1922), - [anon_sym___complex] = ACTIONS(1922), - [anon_sym_IBOutlet] = ACTIONS(1922), - [anon_sym_IBInspectable] = ACTIONS(1922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1922), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [sym_primitive_type] = ACTIONS(1922), - [anon_sym_enum] = ACTIONS(1922), - [anon_sym_NS_ENUM] = ACTIONS(1922), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1922), - [anon_sym_NS_OPTIONS] = ACTIONS(1922), - [anon_sym_struct] = ACTIONS(1922), - [anon_sym_union] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(1922), - [anon_sym_switch] = ACTIONS(1922), - [anon_sym_case] = ACTIONS(1922), - [anon_sym_default] = ACTIONS(1922), - [anon_sym_while] = ACTIONS(1922), - [anon_sym_do] = ACTIONS(1922), - [anon_sym_for] = ACTIONS(1922), - [anon_sym_return] = ACTIONS(1922), - [anon_sym_break] = ACTIONS(1922), - [anon_sym_continue] = ACTIONS(1922), - [anon_sym_goto] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1924), - [anon_sym_PLUS_PLUS] = ACTIONS(1924), - [anon_sym_sizeof] = ACTIONS(1922), - [sym_number_literal] = ACTIONS(1924), - [anon_sym_L_SQUOTE] = ACTIONS(1924), - [anon_sym_u_SQUOTE] = ACTIONS(1924), - [anon_sym_U_SQUOTE] = ACTIONS(1924), - [anon_sym_u8_SQUOTE] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_L_DQUOTE] = ACTIONS(1924), - [anon_sym_u_DQUOTE] = ACTIONS(1924), - [anon_sym_U_DQUOTE] = ACTIONS(1924), - [anon_sym_u8_DQUOTE] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [sym_null] = ACTIONS(1922), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1924), - [anon_sym_ATimport] = ACTIONS(1924), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1922), - [anon_sym_ATcompatibility_alias] = ACTIONS(1924), - [anon_sym_ATprotocol] = ACTIONS(1924), - [anon_sym_ATclass] = ACTIONS(1924), - [anon_sym_ATinterface] = ACTIONS(1924), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1922), - [sym_method_attribute_specifier] = ACTIONS(1922), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1922), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1922), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1922), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1922), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1922), - [anon_sym_NS_AVAILABLE] = ACTIONS(1922), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1922), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_API_AVAILABLE] = ACTIONS(1922), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_API_DEPRECATED] = ACTIONS(1922), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1922), - [anon_sym___deprecated_msg] = ACTIONS(1922), - [anon_sym___deprecated_enum_msg] = ACTIONS(1922), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1922), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1922), - [anon_sym_ATimplementation] = ACTIONS(1924), - [anon_sym_typeof] = ACTIONS(1922), - [anon_sym___typeof] = ACTIONS(1922), - [anon_sym___typeof__] = ACTIONS(1922), - [sym_self] = ACTIONS(1922), - [sym_super] = ACTIONS(1922), - [sym_nil] = ACTIONS(1922), - [sym_id] = ACTIONS(1922), - [sym_instancetype] = ACTIONS(1922), - [sym_Class] = ACTIONS(1922), - [sym_SEL] = ACTIONS(1922), - [sym_IMP] = ACTIONS(1922), - [sym_BOOL] = ACTIONS(1922), - [sym_auto] = ACTIONS(1922), - [anon_sym_ATautoreleasepool] = ACTIONS(1924), - [anon_sym_ATsynchronized] = ACTIONS(1924), - [anon_sym_ATtry] = ACTIONS(1924), - [anon_sym_ATthrow] = ACTIONS(1924), - [anon_sym_ATselector] = ACTIONS(1924), - [anon_sym_ATencode] = ACTIONS(1924), - [anon_sym_AT] = ACTIONS(1922), - [sym_YES] = ACTIONS(1922), - [sym_NO] = ACTIONS(1922), - [anon_sym___builtin_available] = ACTIONS(1922), - [anon_sym_ATavailable] = ACTIONS(1924), - [anon_sym_va_arg] = ACTIONS(1922), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [718] = { - [sym_identifier] = ACTIONS(1902), - [aux_sym_preproc_include_token1] = ACTIONS(1904), - [aux_sym_preproc_def_token1] = ACTIONS(1904), - [aux_sym_preproc_if_token1] = ACTIONS(1902), - [aux_sym_preproc_if_token2] = ACTIONS(1902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1902), - [aux_sym_preproc_else_token1] = ACTIONS(1902), - [aux_sym_preproc_elif_token1] = ACTIONS(1902), - [anon_sym_LPAREN2] = ACTIONS(1904), - [anon_sym_BANG] = ACTIONS(1904), - [anon_sym_TILDE] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_PLUS] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1904), - [anon_sym_CARET] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1904), - [anon_sym_typedef] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1902), - [anon_sym___attribute] = ACTIONS(1902), - [anon_sym___attribute__] = ACTIONS(1902), - [anon_sym___declspec] = ACTIONS(1902), - [anon_sym___cdecl] = ACTIONS(1902), - [anon_sym___clrcall] = ACTIONS(1902), - [anon_sym___stdcall] = ACTIONS(1902), - [anon_sym___fastcall] = ACTIONS(1902), - [anon_sym___thiscall] = ACTIONS(1902), - [anon_sym___vectorcall] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1902), - [anon_sym_auto] = ACTIONS(1902), - [anon_sym_register] = ACTIONS(1902), - [anon_sym_inline] = ACTIONS(1902), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1902), - [anon_sym_const] = ACTIONS(1902), - [anon_sym_volatile] = ACTIONS(1902), - [anon_sym_restrict] = ACTIONS(1902), - [anon_sym__Atomic] = ACTIONS(1902), - [anon_sym_in] = ACTIONS(1902), - [anon_sym_out] = ACTIONS(1902), - [anon_sym_inout] = ACTIONS(1902), - [anon_sym_bycopy] = ACTIONS(1902), - [anon_sym_byref] = ACTIONS(1902), - [anon_sym_oneway] = ACTIONS(1902), - [anon_sym__Nullable] = ACTIONS(1902), - [anon_sym__Nonnull] = ACTIONS(1902), - [anon_sym__Nullable_result] = ACTIONS(1902), - [anon_sym__Null_unspecified] = ACTIONS(1902), - [anon_sym___autoreleasing] = ACTIONS(1902), - [anon_sym___nullable] = ACTIONS(1902), - [anon_sym___nonnull] = ACTIONS(1902), - [anon_sym___strong] = ACTIONS(1902), - [anon_sym___weak] = ACTIONS(1902), - [anon_sym___bridge] = ACTIONS(1902), - [anon_sym___bridge_transfer] = ACTIONS(1902), - [anon_sym___bridge_retained] = ACTIONS(1902), - [anon_sym___unsafe_unretained] = ACTIONS(1902), - [anon_sym___block] = ACTIONS(1902), - [anon_sym___kindof] = ACTIONS(1902), - [anon_sym___unused] = ACTIONS(1902), - [anon_sym__Complex] = ACTIONS(1902), - [anon_sym___complex] = ACTIONS(1902), - [anon_sym_IBOutlet] = ACTIONS(1902), - [anon_sym_IBInspectable] = ACTIONS(1902), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1902), - [anon_sym_signed] = ACTIONS(1902), - [anon_sym_unsigned] = ACTIONS(1902), - [anon_sym_long] = ACTIONS(1902), - [anon_sym_short] = ACTIONS(1902), - [sym_primitive_type] = ACTIONS(1902), - [anon_sym_enum] = ACTIONS(1902), - [anon_sym_NS_ENUM] = ACTIONS(1902), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1902), - [anon_sym_NS_OPTIONS] = ACTIONS(1902), - [anon_sym_struct] = ACTIONS(1902), - [anon_sym_union] = ACTIONS(1902), - [anon_sym_if] = ACTIONS(1902), - [anon_sym_switch] = ACTIONS(1902), - [anon_sym_case] = ACTIONS(1902), - [anon_sym_default] = ACTIONS(1902), - [anon_sym_while] = ACTIONS(1902), - [anon_sym_do] = ACTIONS(1902), - [anon_sym_for] = ACTIONS(1902), - [anon_sym_return] = ACTIONS(1902), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1902), - [anon_sym_goto] = ACTIONS(1902), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1904), - [anon_sym_u_SQUOTE] = ACTIONS(1904), - [anon_sym_U_SQUOTE] = ACTIONS(1904), - [anon_sym_u8_SQUOTE] = ACTIONS(1904), - [anon_sym_SQUOTE] = ACTIONS(1904), - [anon_sym_L_DQUOTE] = ACTIONS(1904), - [anon_sym_u_DQUOTE] = ACTIONS(1904), - [anon_sym_U_DQUOTE] = ACTIONS(1904), - [anon_sym_u8_DQUOTE] = ACTIONS(1904), - [anon_sym_DQUOTE] = ACTIONS(1904), - [sym_true] = ACTIONS(1902), - [sym_false] = ACTIONS(1902), - [sym_null] = ACTIONS(1902), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1904), - [anon_sym_ATimport] = ACTIONS(1904), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1902), - [anon_sym_ATcompatibility_alias] = ACTIONS(1904), - [anon_sym_ATprotocol] = ACTIONS(1904), - [anon_sym_ATclass] = ACTIONS(1904), - [anon_sym_ATinterface] = ACTIONS(1904), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1902), - [sym_method_attribute_specifier] = ACTIONS(1902), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1902), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1902), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1902), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1902), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1902), - [anon_sym_NS_AVAILABLE] = ACTIONS(1902), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1902), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_API_AVAILABLE] = ACTIONS(1902), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_API_DEPRECATED] = ACTIONS(1902), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1902), - [anon_sym___deprecated_msg] = ACTIONS(1902), - [anon_sym___deprecated_enum_msg] = ACTIONS(1902), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1902), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1902), - [anon_sym_ATimplementation] = ACTIONS(1904), - [anon_sym_typeof] = ACTIONS(1902), - [anon_sym___typeof] = ACTIONS(1902), - [anon_sym___typeof__] = ACTIONS(1902), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_nil] = ACTIONS(1902), - [sym_id] = ACTIONS(1902), - [sym_instancetype] = ACTIONS(1902), - [sym_Class] = ACTIONS(1902), - [sym_SEL] = ACTIONS(1902), - [sym_IMP] = ACTIONS(1902), - [sym_BOOL] = ACTIONS(1902), - [sym_auto] = ACTIONS(1902), - [anon_sym_ATautoreleasepool] = ACTIONS(1904), - [anon_sym_ATsynchronized] = ACTIONS(1904), - [anon_sym_ATtry] = ACTIONS(1904), - [anon_sym_ATthrow] = ACTIONS(1904), - [anon_sym_ATselector] = ACTIONS(1904), - [anon_sym_ATencode] = ACTIONS(1904), - [anon_sym_AT] = ACTIONS(1902), - [sym_YES] = ACTIONS(1902), - [sym_NO] = ACTIONS(1902), - [anon_sym___builtin_available] = ACTIONS(1902), - [anon_sym_ATavailable] = ACTIONS(1904), - [anon_sym_va_arg] = ACTIONS(1902), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [719] = { - [sym_identifier] = ACTIONS(1922), - [aux_sym_preproc_include_token1] = ACTIONS(1924), - [aux_sym_preproc_def_token1] = ACTIONS(1924), - [aux_sym_preproc_if_token1] = ACTIONS(1922), - [aux_sym_preproc_if_token2] = ACTIONS(1922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1922), - [aux_sym_preproc_else_token1] = ACTIONS(1922), - [aux_sym_preproc_elif_token1] = ACTIONS(1922), - [anon_sym_LPAREN2] = ACTIONS(1924), - [anon_sym_BANG] = ACTIONS(1924), - [anon_sym_TILDE] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_CARET] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_typedef] = ACTIONS(1922), - [anon_sym_extern] = ACTIONS(1922), - [anon_sym___attribute] = ACTIONS(1922), - [anon_sym___attribute__] = ACTIONS(1922), - [anon_sym___declspec] = ACTIONS(1922), - [anon_sym___cdecl] = ACTIONS(1922), - [anon_sym___clrcall] = ACTIONS(1922), - [anon_sym___stdcall] = ACTIONS(1922), - [anon_sym___fastcall] = ACTIONS(1922), - [anon_sym___thiscall] = ACTIONS(1922), - [anon_sym___vectorcall] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1922), - [anon_sym_auto] = ACTIONS(1922), - [anon_sym_register] = ACTIONS(1922), - [anon_sym_inline] = ACTIONS(1922), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(1922), - [anon_sym_volatile] = ACTIONS(1922), - [anon_sym_restrict] = ACTIONS(1922), - [anon_sym__Atomic] = ACTIONS(1922), - [anon_sym_in] = ACTIONS(1922), - [anon_sym_out] = ACTIONS(1922), - [anon_sym_inout] = ACTIONS(1922), - [anon_sym_bycopy] = ACTIONS(1922), - [anon_sym_byref] = ACTIONS(1922), - [anon_sym_oneway] = ACTIONS(1922), - [anon_sym__Nullable] = ACTIONS(1922), - [anon_sym__Nonnull] = ACTIONS(1922), - [anon_sym__Nullable_result] = ACTIONS(1922), - [anon_sym__Null_unspecified] = ACTIONS(1922), - [anon_sym___autoreleasing] = ACTIONS(1922), - [anon_sym___nullable] = ACTIONS(1922), - [anon_sym___nonnull] = ACTIONS(1922), - [anon_sym___strong] = ACTIONS(1922), - [anon_sym___weak] = ACTIONS(1922), - [anon_sym___bridge] = ACTIONS(1922), - [anon_sym___bridge_transfer] = ACTIONS(1922), - [anon_sym___bridge_retained] = ACTIONS(1922), - [anon_sym___unsafe_unretained] = ACTIONS(1922), - [anon_sym___block] = ACTIONS(1922), - [anon_sym___kindof] = ACTIONS(1922), - [anon_sym___unused] = ACTIONS(1922), - [anon_sym__Complex] = ACTIONS(1922), - [anon_sym___complex] = ACTIONS(1922), - [anon_sym_IBOutlet] = ACTIONS(1922), - [anon_sym_IBInspectable] = ACTIONS(1922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1922), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [sym_primitive_type] = ACTIONS(1922), - [anon_sym_enum] = ACTIONS(1922), - [anon_sym_NS_ENUM] = ACTIONS(1922), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1922), - [anon_sym_NS_OPTIONS] = ACTIONS(1922), - [anon_sym_struct] = ACTIONS(1922), - [anon_sym_union] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(1922), - [anon_sym_switch] = ACTIONS(1922), - [anon_sym_case] = ACTIONS(1922), - [anon_sym_default] = ACTIONS(1922), - [anon_sym_while] = ACTIONS(1922), - [anon_sym_do] = ACTIONS(1922), - [anon_sym_for] = ACTIONS(1922), - [anon_sym_return] = ACTIONS(1922), - [anon_sym_break] = ACTIONS(1922), - [anon_sym_continue] = ACTIONS(1922), - [anon_sym_goto] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1924), - [anon_sym_PLUS_PLUS] = ACTIONS(1924), - [anon_sym_sizeof] = ACTIONS(1922), - [sym_number_literal] = ACTIONS(1924), - [anon_sym_L_SQUOTE] = ACTIONS(1924), - [anon_sym_u_SQUOTE] = ACTIONS(1924), - [anon_sym_U_SQUOTE] = ACTIONS(1924), - [anon_sym_u8_SQUOTE] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_L_DQUOTE] = ACTIONS(1924), - [anon_sym_u_DQUOTE] = ACTIONS(1924), - [anon_sym_U_DQUOTE] = ACTIONS(1924), - [anon_sym_u8_DQUOTE] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [sym_null] = ACTIONS(1922), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1924), - [anon_sym_ATimport] = ACTIONS(1924), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1922), - [anon_sym_ATcompatibility_alias] = ACTIONS(1924), - [anon_sym_ATprotocol] = ACTIONS(1924), - [anon_sym_ATclass] = ACTIONS(1924), - [anon_sym_ATinterface] = ACTIONS(1924), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1922), - [sym_method_attribute_specifier] = ACTIONS(1922), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1922), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1922), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1922), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1922), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1922), - [anon_sym_NS_AVAILABLE] = ACTIONS(1922), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1922), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_API_AVAILABLE] = ACTIONS(1922), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_API_DEPRECATED] = ACTIONS(1922), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1922), - [anon_sym___deprecated_msg] = ACTIONS(1922), - [anon_sym___deprecated_enum_msg] = ACTIONS(1922), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1922), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1922), - [anon_sym_ATimplementation] = ACTIONS(1924), - [anon_sym_typeof] = ACTIONS(1922), - [anon_sym___typeof] = ACTIONS(1922), - [anon_sym___typeof__] = ACTIONS(1922), - [sym_self] = ACTIONS(1922), - [sym_super] = ACTIONS(1922), - [sym_nil] = ACTIONS(1922), - [sym_id] = ACTIONS(1922), - [sym_instancetype] = ACTIONS(1922), - [sym_Class] = ACTIONS(1922), - [sym_SEL] = ACTIONS(1922), - [sym_IMP] = ACTIONS(1922), - [sym_BOOL] = ACTIONS(1922), - [sym_auto] = ACTIONS(1922), - [anon_sym_ATautoreleasepool] = ACTIONS(1924), - [anon_sym_ATsynchronized] = ACTIONS(1924), - [anon_sym_ATtry] = ACTIONS(1924), - [anon_sym_ATthrow] = ACTIONS(1924), - [anon_sym_ATselector] = ACTIONS(1924), - [anon_sym_ATencode] = ACTIONS(1924), - [anon_sym_AT] = ACTIONS(1922), - [sym_YES] = ACTIONS(1922), - [sym_NO] = ACTIONS(1922), - [anon_sym___builtin_available] = ACTIONS(1922), - [anon_sym_ATavailable] = ACTIONS(1924), - [anon_sym_va_arg] = ACTIONS(1922), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [720] = { - [sym_identifier] = ACTIONS(1926), - [aux_sym_preproc_include_token1] = ACTIONS(1928), - [aux_sym_preproc_def_token1] = ACTIONS(1928), - [aux_sym_preproc_if_token1] = ACTIONS(1926), - [aux_sym_preproc_if_token2] = ACTIONS(1926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1926), - [aux_sym_preproc_else_token1] = ACTIONS(1926), - [aux_sym_preproc_elif_token1] = ACTIONS(1926), - [anon_sym_LPAREN2] = ACTIONS(1928), - [anon_sym_BANG] = ACTIONS(1928), - [anon_sym_TILDE] = ACTIONS(1928), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_STAR] = ACTIONS(1928), - [anon_sym_CARET] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1928), - [anon_sym_typedef] = ACTIONS(1926), - [anon_sym_extern] = ACTIONS(1926), - [anon_sym___attribute] = ACTIONS(1926), - [anon_sym___attribute__] = ACTIONS(1926), - [anon_sym___declspec] = ACTIONS(1926), - [anon_sym___cdecl] = ACTIONS(1926), - [anon_sym___clrcall] = ACTIONS(1926), - [anon_sym___stdcall] = ACTIONS(1926), - [anon_sym___fastcall] = ACTIONS(1926), - [anon_sym___thiscall] = ACTIONS(1926), - [anon_sym___vectorcall] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_static] = ACTIONS(1926), - [anon_sym_auto] = ACTIONS(1926), - [anon_sym_register] = ACTIONS(1926), - [anon_sym_inline] = ACTIONS(1926), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1926), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_volatile] = ACTIONS(1926), - [anon_sym_restrict] = ACTIONS(1926), - [anon_sym__Atomic] = ACTIONS(1926), - [anon_sym_in] = ACTIONS(1926), - [anon_sym_out] = ACTIONS(1926), - [anon_sym_inout] = ACTIONS(1926), - [anon_sym_bycopy] = ACTIONS(1926), - [anon_sym_byref] = ACTIONS(1926), - [anon_sym_oneway] = ACTIONS(1926), - [anon_sym__Nullable] = ACTIONS(1926), - [anon_sym__Nonnull] = ACTIONS(1926), - [anon_sym__Nullable_result] = ACTIONS(1926), - [anon_sym__Null_unspecified] = ACTIONS(1926), - [anon_sym___autoreleasing] = ACTIONS(1926), - [anon_sym___nullable] = ACTIONS(1926), - [anon_sym___nonnull] = ACTIONS(1926), - [anon_sym___strong] = ACTIONS(1926), - [anon_sym___weak] = ACTIONS(1926), - [anon_sym___bridge] = ACTIONS(1926), - [anon_sym___bridge_transfer] = ACTIONS(1926), - [anon_sym___bridge_retained] = ACTIONS(1926), - [anon_sym___unsafe_unretained] = ACTIONS(1926), - [anon_sym___block] = ACTIONS(1926), - [anon_sym___kindof] = ACTIONS(1926), - [anon_sym___unused] = ACTIONS(1926), - [anon_sym__Complex] = ACTIONS(1926), - [anon_sym___complex] = ACTIONS(1926), - [anon_sym_IBOutlet] = ACTIONS(1926), - [anon_sym_IBInspectable] = ACTIONS(1926), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1926), - [anon_sym_unsigned] = ACTIONS(1926), - [anon_sym_long] = ACTIONS(1926), - [anon_sym_short] = ACTIONS(1926), - [sym_primitive_type] = ACTIONS(1926), - [anon_sym_enum] = ACTIONS(1926), - [anon_sym_NS_ENUM] = ACTIONS(1926), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1926), - [anon_sym_NS_OPTIONS] = ACTIONS(1926), - [anon_sym_struct] = ACTIONS(1926), - [anon_sym_union] = ACTIONS(1926), - [anon_sym_if] = ACTIONS(1926), - [anon_sym_switch] = ACTIONS(1926), - [anon_sym_case] = ACTIONS(1926), - [anon_sym_default] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1926), - [anon_sym_do] = ACTIONS(1926), - [anon_sym_for] = ACTIONS(1926), - [anon_sym_return] = ACTIONS(1926), - [anon_sym_break] = ACTIONS(1926), - [anon_sym_continue] = ACTIONS(1926), - [anon_sym_goto] = ACTIONS(1926), - [anon_sym_DASH_DASH] = ACTIONS(1928), - [anon_sym_PLUS_PLUS] = ACTIONS(1928), - [anon_sym_sizeof] = ACTIONS(1926), - [sym_number_literal] = ACTIONS(1928), - [anon_sym_L_SQUOTE] = ACTIONS(1928), - [anon_sym_u_SQUOTE] = ACTIONS(1928), - [anon_sym_U_SQUOTE] = ACTIONS(1928), - [anon_sym_u8_SQUOTE] = ACTIONS(1928), - [anon_sym_SQUOTE] = ACTIONS(1928), - [anon_sym_L_DQUOTE] = ACTIONS(1928), - [anon_sym_u_DQUOTE] = ACTIONS(1928), - [anon_sym_U_DQUOTE] = ACTIONS(1928), - [anon_sym_u8_DQUOTE] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1928), - [sym_true] = ACTIONS(1926), - [sym_false] = ACTIONS(1926), - [sym_null] = ACTIONS(1926), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1928), - [anon_sym_ATimport] = ACTIONS(1928), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1926), - [anon_sym_ATcompatibility_alias] = ACTIONS(1928), - [anon_sym_ATprotocol] = ACTIONS(1928), - [anon_sym_ATclass] = ACTIONS(1928), - [anon_sym_ATinterface] = ACTIONS(1928), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1926), - [sym_method_attribute_specifier] = ACTIONS(1926), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1926), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1926), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1926), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1926), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1926), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1926), - [anon_sym_NS_AVAILABLE] = ACTIONS(1926), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1926), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1926), - [anon_sym_API_AVAILABLE] = ACTIONS(1926), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1926), - [anon_sym_API_DEPRECATED] = ACTIONS(1926), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1926), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1926), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1926), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1926), - [anon_sym___deprecated_msg] = ACTIONS(1926), - [anon_sym___deprecated_enum_msg] = ACTIONS(1926), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1926), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1926), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1926), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1926), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1926), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1926), - [anon_sym_ATimplementation] = ACTIONS(1928), - [anon_sym_typeof] = ACTIONS(1926), - [anon_sym___typeof] = ACTIONS(1926), - [anon_sym___typeof__] = ACTIONS(1926), - [sym_self] = ACTIONS(1926), - [sym_super] = ACTIONS(1926), - [sym_nil] = ACTIONS(1926), - [sym_id] = ACTIONS(1926), - [sym_instancetype] = ACTIONS(1926), - [sym_Class] = ACTIONS(1926), - [sym_SEL] = ACTIONS(1926), - [sym_IMP] = ACTIONS(1926), - [sym_BOOL] = ACTIONS(1926), - [sym_auto] = ACTIONS(1926), - [anon_sym_ATautoreleasepool] = ACTIONS(1928), - [anon_sym_ATsynchronized] = ACTIONS(1928), - [anon_sym_ATtry] = ACTIONS(1928), - [anon_sym_ATthrow] = ACTIONS(1928), - [anon_sym_ATselector] = ACTIONS(1928), - [anon_sym_ATencode] = ACTIONS(1928), - [anon_sym_AT] = ACTIONS(1926), - [sym_YES] = ACTIONS(1926), - [sym_NO] = ACTIONS(1926), - [anon_sym___builtin_available] = ACTIONS(1926), - [anon_sym_ATavailable] = ACTIONS(1928), - [anon_sym_va_arg] = ACTIONS(1926), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [721] = { - [sym_identifier] = ACTIONS(1922), - [aux_sym_preproc_include_token1] = ACTIONS(1924), - [aux_sym_preproc_def_token1] = ACTIONS(1924), - [aux_sym_preproc_if_token1] = ACTIONS(1922), - [aux_sym_preproc_if_token2] = ACTIONS(1922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1922), - [aux_sym_preproc_else_token1] = ACTIONS(1922), - [aux_sym_preproc_elif_token1] = ACTIONS(1922), - [anon_sym_LPAREN2] = ACTIONS(1924), - [anon_sym_BANG] = ACTIONS(1924), - [anon_sym_TILDE] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_CARET] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_typedef] = ACTIONS(1922), - [anon_sym_extern] = ACTIONS(1922), - [anon_sym___attribute] = ACTIONS(1922), - [anon_sym___attribute__] = ACTIONS(1922), - [anon_sym___declspec] = ACTIONS(1922), - [anon_sym___cdecl] = ACTIONS(1922), - [anon_sym___clrcall] = ACTIONS(1922), - [anon_sym___stdcall] = ACTIONS(1922), - [anon_sym___fastcall] = ACTIONS(1922), - [anon_sym___thiscall] = ACTIONS(1922), - [anon_sym___vectorcall] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1922), - [anon_sym_auto] = ACTIONS(1922), - [anon_sym_register] = ACTIONS(1922), - [anon_sym_inline] = ACTIONS(1922), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(1922), - [anon_sym_volatile] = ACTIONS(1922), - [anon_sym_restrict] = ACTIONS(1922), - [anon_sym__Atomic] = ACTIONS(1922), - [anon_sym_in] = ACTIONS(1922), - [anon_sym_out] = ACTIONS(1922), - [anon_sym_inout] = ACTIONS(1922), - [anon_sym_bycopy] = ACTIONS(1922), - [anon_sym_byref] = ACTIONS(1922), - [anon_sym_oneway] = ACTIONS(1922), - [anon_sym__Nullable] = ACTIONS(1922), - [anon_sym__Nonnull] = ACTIONS(1922), - [anon_sym__Nullable_result] = ACTIONS(1922), - [anon_sym__Null_unspecified] = ACTIONS(1922), - [anon_sym___autoreleasing] = ACTIONS(1922), - [anon_sym___nullable] = ACTIONS(1922), - [anon_sym___nonnull] = ACTIONS(1922), - [anon_sym___strong] = ACTIONS(1922), - [anon_sym___weak] = ACTIONS(1922), - [anon_sym___bridge] = ACTIONS(1922), - [anon_sym___bridge_transfer] = ACTIONS(1922), - [anon_sym___bridge_retained] = ACTIONS(1922), - [anon_sym___unsafe_unretained] = ACTIONS(1922), - [anon_sym___block] = ACTIONS(1922), - [anon_sym___kindof] = ACTIONS(1922), - [anon_sym___unused] = ACTIONS(1922), - [anon_sym__Complex] = ACTIONS(1922), - [anon_sym___complex] = ACTIONS(1922), - [anon_sym_IBOutlet] = ACTIONS(1922), - [anon_sym_IBInspectable] = ACTIONS(1922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1922), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [sym_primitive_type] = ACTIONS(1922), - [anon_sym_enum] = ACTIONS(1922), - [anon_sym_NS_ENUM] = ACTIONS(1922), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1922), - [anon_sym_NS_OPTIONS] = ACTIONS(1922), - [anon_sym_struct] = ACTIONS(1922), - [anon_sym_union] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(1922), - [anon_sym_switch] = ACTIONS(1922), - [anon_sym_case] = ACTIONS(1922), - [anon_sym_default] = ACTIONS(1922), - [anon_sym_while] = ACTIONS(1922), - [anon_sym_do] = ACTIONS(1922), - [anon_sym_for] = ACTIONS(1922), - [anon_sym_return] = ACTIONS(1922), - [anon_sym_break] = ACTIONS(1922), - [anon_sym_continue] = ACTIONS(1922), - [anon_sym_goto] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1924), - [anon_sym_PLUS_PLUS] = ACTIONS(1924), - [anon_sym_sizeof] = ACTIONS(1922), - [sym_number_literal] = ACTIONS(1924), - [anon_sym_L_SQUOTE] = ACTIONS(1924), - [anon_sym_u_SQUOTE] = ACTIONS(1924), - [anon_sym_U_SQUOTE] = ACTIONS(1924), - [anon_sym_u8_SQUOTE] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_L_DQUOTE] = ACTIONS(1924), - [anon_sym_u_DQUOTE] = ACTIONS(1924), - [anon_sym_U_DQUOTE] = ACTIONS(1924), - [anon_sym_u8_DQUOTE] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [sym_null] = ACTIONS(1922), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1924), - [anon_sym_ATimport] = ACTIONS(1924), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1922), - [anon_sym_ATcompatibility_alias] = ACTIONS(1924), - [anon_sym_ATprotocol] = ACTIONS(1924), - [anon_sym_ATclass] = ACTIONS(1924), - [anon_sym_ATinterface] = ACTIONS(1924), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1922), - [sym_method_attribute_specifier] = ACTIONS(1922), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1922), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1922), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1922), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1922), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1922), - [anon_sym_NS_AVAILABLE] = ACTIONS(1922), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1922), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_API_AVAILABLE] = ACTIONS(1922), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_API_DEPRECATED] = ACTIONS(1922), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1922), - [anon_sym___deprecated_msg] = ACTIONS(1922), - [anon_sym___deprecated_enum_msg] = ACTIONS(1922), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1922), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1922), - [anon_sym_ATimplementation] = ACTIONS(1924), - [anon_sym_typeof] = ACTIONS(1922), - [anon_sym___typeof] = ACTIONS(1922), - [anon_sym___typeof__] = ACTIONS(1922), - [sym_self] = ACTIONS(1922), - [sym_super] = ACTIONS(1922), - [sym_nil] = ACTIONS(1922), - [sym_id] = ACTIONS(1922), - [sym_instancetype] = ACTIONS(1922), - [sym_Class] = ACTIONS(1922), - [sym_SEL] = ACTIONS(1922), - [sym_IMP] = ACTIONS(1922), - [sym_BOOL] = ACTIONS(1922), - [sym_auto] = ACTIONS(1922), - [anon_sym_ATautoreleasepool] = ACTIONS(1924), - [anon_sym_ATsynchronized] = ACTIONS(1924), - [anon_sym_ATtry] = ACTIONS(1924), - [anon_sym_ATthrow] = ACTIONS(1924), - [anon_sym_ATselector] = ACTIONS(1924), - [anon_sym_ATencode] = ACTIONS(1924), - [anon_sym_AT] = ACTIONS(1922), - [sym_YES] = ACTIONS(1922), - [sym_NO] = ACTIONS(1922), - [anon_sym___builtin_available] = ACTIONS(1922), - [anon_sym_ATavailable] = ACTIONS(1924), - [anon_sym_va_arg] = ACTIONS(1922), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [722] = { - [sym_identifier] = ACTIONS(1930), - [aux_sym_preproc_include_token1] = ACTIONS(1932), - [aux_sym_preproc_def_token1] = ACTIONS(1932), - [aux_sym_preproc_if_token1] = ACTIONS(1930), - [aux_sym_preproc_if_token2] = ACTIONS(1930), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1930), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1930), - [aux_sym_preproc_else_token1] = ACTIONS(1930), - [aux_sym_preproc_elif_token1] = ACTIONS(1930), - [anon_sym_LPAREN2] = ACTIONS(1932), - [anon_sym_BANG] = ACTIONS(1932), - [anon_sym_TILDE] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1932), - [anon_sym_CARET] = ACTIONS(1932), - [anon_sym_AMP] = ACTIONS(1932), - [anon_sym_SEMI] = ACTIONS(1932), - [anon_sym_typedef] = ACTIONS(1930), - [anon_sym_extern] = ACTIONS(1930), - [anon_sym___attribute] = ACTIONS(1930), - [anon_sym___attribute__] = ACTIONS(1930), - [anon_sym___declspec] = ACTIONS(1930), - [anon_sym___cdecl] = ACTIONS(1930), - [anon_sym___clrcall] = ACTIONS(1930), - [anon_sym___stdcall] = ACTIONS(1930), - [anon_sym___fastcall] = ACTIONS(1930), - [anon_sym___thiscall] = ACTIONS(1930), - [anon_sym___vectorcall] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1932), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_auto] = ACTIONS(1930), - [anon_sym_register] = ACTIONS(1930), - [anon_sym_inline] = ACTIONS(1930), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_volatile] = ACTIONS(1930), - [anon_sym_restrict] = ACTIONS(1930), - [anon_sym__Atomic] = ACTIONS(1930), - [anon_sym_in] = ACTIONS(1930), - [anon_sym_out] = ACTIONS(1930), - [anon_sym_inout] = ACTIONS(1930), - [anon_sym_bycopy] = ACTIONS(1930), - [anon_sym_byref] = ACTIONS(1930), - [anon_sym_oneway] = ACTIONS(1930), - [anon_sym__Nullable] = ACTIONS(1930), - [anon_sym__Nonnull] = ACTIONS(1930), - [anon_sym__Nullable_result] = ACTIONS(1930), - [anon_sym__Null_unspecified] = ACTIONS(1930), - [anon_sym___autoreleasing] = ACTIONS(1930), - [anon_sym___nullable] = ACTIONS(1930), - [anon_sym___nonnull] = ACTIONS(1930), - [anon_sym___strong] = ACTIONS(1930), - [anon_sym___weak] = ACTIONS(1930), - [anon_sym___bridge] = ACTIONS(1930), - [anon_sym___bridge_transfer] = ACTIONS(1930), - [anon_sym___bridge_retained] = ACTIONS(1930), - [anon_sym___unsafe_unretained] = ACTIONS(1930), - [anon_sym___block] = ACTIONS(1930), - [anon_sym___kindof] = ACTIONS(1930), - [anon_sym___unused] = ACTIONS(1930), - [anon_sym__Complex] = ACTIONS(1930), - [anon_sym___complex] = ACTIONS(1930), - [anon_sym_IBOutlet] = ACTIONS(1930), - [anon_sym_IBInspectable] = ACTIONS(1930), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1930), - [anon_sym_signed] = ACTIONS(1930), - [anon_sym_unsigned] = ACTIONS(1930), - [anon_sym_long] = ACTIONS(1930), - [anon_sym_short] = ACTIONS(1930), - [sym_primitive_type] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_NS_ENUM] = ACTIONS(1930), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1930), - [anon_sym_NS_OPTIONS] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_switch] = ACTIONS(1930), - [anon_sym_case] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [anon_sym_do] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_goto] = ACTIONS(1930), - [anon_sym_DASH_DASH] = ACTIONS(1932), - [anon_sym_PLUS_PLUS] = ACTIONS(1932), - [anon_sym_sizeof] = ACTIONS(1930), - [sym_number_literal] = ACTIONS(1932), - [anon_sym_L_SQUOTE] = ACTIONS(1932), - [anon_sym_u_SQUOTE] = ACTIONS(1932), - [anon_sym_U_SQUOTE] = ACTIONS(1932), - [anon_sym_u8_SQUOTE] = ACTIONS(1932), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_L_DQUOTE] = ACTIONS(1932), - [anon_sym_u_DQUOTE] = ACTIONS(1932), - [anon_sym_U_DQUOTE] = ACTIONS(1932), - [anon_sym_u8_DQUOTE] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1932), - [anon_sym_ATimport] = ACTIONS(1932), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1930), - [anon_sym_ATcompatibility_alias] = ACTIONS(1932), - [anon_sym_ATprotocol] = ACTIONS(1932), - [anon_sym_ATclass] = ACTIONS(1932), - [anon_sym_ATinterface] = ACTIONS(1932), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1930), - [sym_method_attribute_specifier] = ACTIONS(1930), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1930), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1930), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1930), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1930), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1930), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1930), - [anon_sym_NS_AVAILABLE] = ACTIONS(1930), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1930), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1930), - [anon_sym_API_AVAILABLE] = ACTIONS(1930), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1930), - [anon_sym_API_DEPRECATED] = ACTIONS(1930), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1930), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1930), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1930), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1930), - [anon_sym___deprecated_msg] = ACTIONS(1930), - [anon_sym___deprecated_enum_msg] = ACTIONS(1930), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1930), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1930), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1930), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1930), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1930), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1930), - [anon_sym_ATimplementation] = ACTIONS(1932), - [anon_sym_typeof] = ACTIONS(1930), - [anon_sym___typeof] = ACTIONS(1930), - [anon_sym___typeof__] = ACTIONS(1930), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_nil] = ACTIONS(1930), - [sym_id] = ACTIONS(1930), - [sym_instancetype] = ACTIONS(1930), - [sym_Class] = ACTIONS(1930), - [sym_SEL] = ACTIONS(1930), - [sym_IMP] = ACTIONS(1930), - [sym_BOOL] = ACTIONS(1930), - [sym_auto] = ACTIONS(1930), - [anon_sym_ATautoreleasepool] = ACTIONS(1932), - [anon_sym_ATsynchronized] = ACTIONS(1932), - [anon_sym_ATtry] = ACTIONS(1932), - [anon_sym_ATthrow] = ACTIONS(1932), - [anon_sym_ATselector] = ACTIONS(1932), - [anon_sym_ATencode] = ACTIONS(1932), - [anon_sym_AT] = ACTIONS(1930), - [sym_YES] = ACTIONS(1930), - [sym_NO] = ACTIONS(1930), - [anon_sym___builtin_available] = ACTIONS(1930), - [anon_sym_ATavailable] = ACTIONS(1932), - [anon_sym_va_arg] = ACTIONS(1930), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [723] = { - [sym_identifier] = ACTIONS(1934), - [aux_sym_preproc_include_token1] = ACTIONS(1936), - [aux_sym_preproc_def_token1] = ACTIONS(1936), - [aux_sym_preproc_if_token1] = ACTIONS(1934), - [aux_sym_preproc_if_token2] = ACTIONS(1934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1934), - [aux_sym_preproc_else_token1] = ACTIONS(1934), - [aux_sym_preproc_elif_token1] = ACTIONS(1934), - [anon_sym_LPAREN2] = ACTIONS(1936), - [anon_sym_BANG] = ACTIONS(1936), - [anon_sym_TILDE] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_CARET] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1936), - [anon_sym_typedef] = ACTIONS(1934), - [anon_sym_extern] = ACTIONS(1934), - [anon_sym___attribute] = ACTIONS(1934), - [anon_sym___attribute__] = ACTIONS(1934), - [anon_sym___declspec] = ACTIONS(1934), - [anon_sym___cdecl] = ACTIONS(1934), - [anon_sym___clrcall] = ACTIONS(1934), - [anon_sym___stdcall] = ACTIONS(1934), - [anon_sym___fastcall] = ACTIONS(1934), - [anon_sym___thiscall] = ACTIONS(1934), - [anon_sym___vectorcall] = ACTIONS(1934), - [anon_sym_LBRACE] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1934), - [anon_sym_auto] = ACTIONS(1934), - [anon_sym_register] = ACTIONS(1934), - [anon_sym_inline] = ACTIONS(1934), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1934), - [anon_sym_const] = ACTIONS(1934), - [anon_sym_volatile] = ACTIONS(1934), - [anon_sym_restrict] = ACTIONS(1934), - [anon_sym__Atomic] = ACTIONS(1934), - [anon_sym_in] = ACTIONS(1934), - [anon_sym_out] = ACTIONS(1934), - [anon_sym_inout] = ACTIONS(1934), - [anon_sym_bycopy] = ACTIONS(1934), - [anon_sym_byref] = ACTIONS(1934), - [anon_sym_oneway] = ACTIONS(1934), - [anon_sym__Nullable] = ACTIONS(1934), - [anon_sym__Nonnull] = ACTIONS(1934), - [anon_sym__Nullable_result] = ACTIONS(1934), - [anon_sym__Null_unspecified] = ACTIONS(1934), - [anon_sym___autoreleasing] = ACTIONS(1934), - [anon_sym___nullable] = ACTIONS(1934), - [anon_sym___nonnull] = ACTIONS(1934), - [anon_sym___strong] = ACTIONS(1934), - [anon_sym___weak] = ACTIONS(1934), - [anon_sym___bridge] = ACTIONS(1934), - [anon_sym___bridge_transfer] = ACTIONS(1934), - [anon_sym___bridge_retained] = ACTIONS(1934), - [anon_sym___unsafe_unretained] = ACTIONS(1934), - [anon_sym___block] = ACTIONS(1934), - [anon_sym___kindof] = ACTIONS(1934), - [anon_sym___unused] = ACTIONS(1934), - [anon_sym__Complex] = ACTIONS(1934), - [anon_sym___complex] = ACTIONS(1934), - [anon_sym_IBOutlet] = ACTIONS(1934), - [anon_sym_IBInspectable] = ACTIONS(1934), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1934), - [anon_sym_signed] = ACTIONS(1934), - [anon_sym_unsigned] = ACTIONS(1934), - [anon_sym_long] = ACTIONS(1934), - [anon_sym_short] = ACTIONS(1934), - [sym_primitive_type] = ACTIONS(1934), - [anon_sym_enum] = ACTIONS(1934), - [anon_sym_NS_ENUM] = ACTIONS(1934), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1934), - [anon_sym_NS_OPTIONS] = ACTIONS(1934), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1934), - [anon_sym_switch] = ACTIONS(1934), - [anon_sym_case] = ACTIONS(1934), - [anon_sym_default] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1934), - [anon_sym_do] = ACTIONS(1934), - [anon_sym_for] = ACTIONS(1934), - [anon_sym_return] = ACTIONS(1934), - [anon_sym_break] = ACTIONS(1934), - [anon_sym_continue] = ACTIONS(1934), - [anon_sym_goto] = ACTIONS(1934), - [anon_sym_DASH_DASH] = ACTIONS(1936), - [anon_sym_PLUS_PLUS] = ACTIONS(1936), - [anon_sym_sizeof] = ACTIONS(1934), - [sym_number_literal] = ACTIONS(1936), - [anon_sym_L_SQUOTE] = ACTIONS(1936), - [anon_sym_u_SQUOTE] = ACTIONS(1936), - [anon_sym_U_SQUOTE] = ACTIONS(1936), - [anon_sym_u8_SQUOTE] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_L_DQUOTE] = ACTIONS(1936), - [anon_sym_u_DQUOTE] = ACTIONS(1936), - [anon_sym_U_DQUOTE] = ACTIONS(1936), - [anon_sym_u8_DQUOTE] = ACTIONS(1936), - [anon_sym_DQUOTE] = ACTIONS(1936), - [sym_true] = ACTIONS(1934), - [sym_false] = ACTIONS(1934), - [sym_null] = ACTIONS(1934), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1936), - [anon_sym_ATimport] = ACTIONS(1936), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1934), - [anon_sym_ATcompatibility_alias] = ACTIONS(1936), - [anon_sym_ATprotocol] = ACTIONS(1936), - [anon_sym_ATclass] = ACTIONS(1936), - [anon_sym_ATinterface] = ACTIONS(1936), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1934), - [sym_method_attribute_specifier] = ACTIONS(1934), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1934), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1934), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1934), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1934), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1934), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1934), - [anon_sym_NS_AVAILABLE] = ACTIONS(1934), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1934), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1934), - [anon_sym_API_AVAILABLE] = ACTIONS(1934), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1934), - [anon_sym_API_DEPRECATED] = ACTIONS(1934), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1934), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1934), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1934), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1934), - [anon_sym___deprecated_msg] = ACTIONS(1934), - [anon_sym___deprecated_enum_msg] = ACTIONS(1934), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1934), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1934), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1934), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1934), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1934), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1934), - [anon_sym_ATimplementation] = ACTIONS(1936), - [anon_sym_typeof] = ACTIONS(1934), - [anon_sym___typeof] = ACTIONS(1934), - [anon_sym___typeof__] = ACTIONS(1934), - [sym_self] = ACTIONS(1934), - [sym_super] = ACTIONS(1934), - [sym_nil] = ACTIONS(1934), - [sym_id] = ACTIONS(1934), - [sym_instancetype] = ACTIONS(1934), - [sym_Class] = ACTIONS(1934), - [sym_SEL] = ACTIONS(1934), - [sym_IMP] = ACTIONS(1934), - [sym_BOOL] = ACTIONS(1934), - [sym_auto] = ACTIONS(1934), - [anon_sym_ATautoreleasepool] = ACTIONS(1936), - [anon_sym_ATsynchronized] = ACTIONS(1936), - [anon_sym_ATtry] = ACTIONS(1936), - [anon_sym_ATthrow] = ACTIONS(1936), - [anon_sym_ATselector] = ACTIONS(1936), - [anon_sym_ATencode] = ACTIONS(1936), - [anon_sym_AT] = ACTIONS(1934), - [sym_YES] = ACTIONS(1934), - [sym_NO] = ACTIONS(1934), - [anon_sym___builtin_available] = ACTIONS(1934), - [anon_sym_ATavailable] = ACTIONS(1936), - [anon_sym_va_arg] = ACTIONS(1934), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [724] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [aux_sym_preproc_else_token1] = ACTIONS(1866), - [aux_sym_preproc_elif_token1] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [725] = { - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_include_token1] = ACTIONS(1940), - [aux_sym_preproc_def_token1] = ACTIONS(1940), - [aux_sym_preproc_if_token1] = ACTIONS(1938), - [aux_sym_preproc_if_token2] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1938), - [aux_sym_preproc_else_token1] = ACTIONS(1938), - [aux_sym_preproc_elif_token1] = ACTIONS(1938), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_CARET] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym_typedef] = ACTIONS(1938), - [anon_sym_extern] = ACTIONS(1938), - [anon_sym___attribute] = ACTIONS(1938), - [anon_sym___attribute__] = ACTIONS(1938), - [anon_sym___declspec] = ACTIONS(1938), - [anon_sym___cdecl] = ACTIONS(1938), - [anon_sym___clrcall] = ACTIONS(1938), - [anon_sym___stdcall] = ACTIONS(1938), - [anon_sym___fastcall] = ACTIONS(1938), - [anon_sym___thiscall] = ACTIONS(1938), - [anon_sym___vectorcall] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1938), - [anon_sym_auto] = ACTIONS(1938), - [anon_sym_register] = ACTIONS(1938), - [anon_sym_inline] = ACTIONS(1938), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1938), - [anon_sym_const] = ACTIONS(1938), - [anon_sym_volatile] = ACTIONS(1938), - [anon_sym_restrict] = ACTIONS(1938), - [anon_sym__Atomic] = ACTIONS(1938), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_out] = ACTIONS(1938), - [anon_sym_inout] = ACTIONS(1938), - [anon_sym_bycopy] = ACTIONS(1938), - [anon_sym_byref] = ACTIONS(1938), - [anon_sym_oneway] = ACTIONS(1938), - [anon_sym__Nullable] = ACTIONS(1938), - [anon_sym__Nonnull] = ACTIONS(1938), - [anon_sym__Nullable_result] = ACTIONS(1938), - [anon_sym__Null_unspecified] = ACTIONS(1938), - [anon_sym___autoreleasing] = ACTIONS(1938), - [anon_sym___nullable] = ACTIONS(1938), - [anon_sym___nonnull] = ACTIONS(1938), - [anon_sym___strong] = ACTIONS(1938), - [anon_sym___weak] = ACTIONS(1938), - [anon_sym___bridge] = ACTIONS(1938), - [anon_sym___bridge_transfer] = ACTIONS(1938), - [anon_sym___bridge_retained] = ACTIONS(1938), - [anon_sym___unsafe_unretained] = ACTIONS(1938), - [anon_sym___block] = ACTIONS(1938), - [anon_sym___kindof] = ACTIONS(1938), - [anon_sym___unused] = ACTIONS(1938), - [anon_sym__Complex] = ACTIONS(1938), - [anon_sym___complex] = ACTIONS(1938), - [anon_sym_IBOutlet] = ACTIONS(1938), - [anon_sym_IBInspectable] = ACTIONS(1938), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1938), - [anon_sym_signed] = ACTIONS(1938), - [anon_sym_unsigned] = ACTIONS(1938), - [anon_sym_long] = ACTIONS(1938), - [anon_sym_short] = ACTIONS(1938), - [sym_primitive_type] = ACTIONS(1938), - [anon_sym_enum] = ACTIONS(1938), - [anon_sym_NS_ENUM] = ACTIONS(1938), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1938), - [anon_sym_NS_OPTIONS] = ACTIONS(1938), - [anon_sym_struct] = ACTIONS(1938), - [anon_sym_union] = ACTIONS(1938), - [anon_sym_if] = ACTIONS(1938), - [anon_sym_switch] = ACTIONS(1938), - [anon_sym_case] = ACTIONS(1938), - [anon_sym_default] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1938), - [anon_sym_do] = ACTIONS(1938), - [anon_sym_for] = ACTIONS(1938), - [anon_sym_return] = ACTIONS(1938), - [anon_sym_break] = ACTIONS(1938), - [anon_sym_continue] = ACTIONS(1938), - [anon_sym_goto] = ACTIONS(1938), - [anon_sym_DASH_DASH] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1940), - [anon_sym_sizeof] = ACTIONS(1938), - [sym_number_literal] = ACTIONS(1940), - [anon_sym_L_SQUOTE] = ACTIONS(1940), - [anon_sym_u_SQUOTE] = ACTIONS(1940), - [anon_sym_U_SQUOTE] = ACTIONS(1940), - [anon_sym_u8_SQUOTE] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_L_DQUOTE] = ACTIONS(1940), - [anon_sym_u_DQUOTE] = ACTIONS(1940), - [anon_sym_U_DQUOTE] = ACTIONS(1940), - [anon_sym_u8_DQUOTE] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1940), - [sym_true] = ACTIONS(1938), - [sym_false] = ACTIONS(1938), - [sym_null] = ACTIONS(1938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1940), - [anon_sym_ATimport] = ACTIONS(1940), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1938), - [anon_sym_ATcompatibility_alias] = ACTIONS(1940), - [anon_sym_ATprotocol] = ACTIONS(1940), - [anon_sym_ATclass] = ACTIONS(1940), - [anon_sym_ATinterface] = ACTIONS(1940), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1938), - [sym_method_attribute_specifier] = ACTIONS(1938), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1938), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1938), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1938), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1938), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1938), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1938), - [anon_sym_NS_AVAILABLE] = ACTIONS(1938), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1938), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1938), - [anon_sym_API_AVAILABLE] = ACTIONS(1938), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1938), - [anon_sym_API_DEPRECATED] = ACTIONS(1938), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1938), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1938), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1938), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1938), - [anon_sym___deprecated_msg] = ACTIONS(1938), - [anon_sym___deprecated_enum_msg] = ACTIONS(1938), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1938), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1938), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1938), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1938), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1938), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1938), - [anon_sym_ATimplementation] = ACTIONS(1940), - [anon_sym_typeof] = ACTIONS(1938), - [anon_sym___typeof] = ACTIONS(1938), - [anon_sym___typeof__] = ACTIONS(1938), - [sym_self] = ACTIONS(1938), - [sym_super] = ACTIONS(1938), - [sym_nil] = ACTIONS(1938), - [sym_id] = ACTIONS(1938), - [sym_instancetype] = ACTIONS(1938), - [sym_Class] = ACTIONS(1938), - [sym_SEL] = ACTIONS(1938), - [sym_IMP] = ACTIONS(1938), - [sym_BOOL] = ACTIONS(1938), - [sym_auto] = ACTIONS(1938), - [anon_sym_ATautoreleasepool] = ACTIONS(1940), - [anon_sym_ATsynchronized] = ACTIONS(1940), - [anon_sym_ATtry] = ACTIONS(1940), - [anon_sym_ATthrow] = ACTIONS(1940), - [anon_sym_ATselector] = ACTIONS(1940), - [anon_sym_ATencode] = ACTIONS(1940), - [anon_sym_AT] = ACTIONS(1938), - [sym_YES] = ACTIONS(1938), - [sym_NO] = ACTIONS(1938), - [anon_sym___builtin_available] = ACTIONS(1938), - [anon_sym_ATavailable] = ACTIONS(1940), - [anon_sym_va_arg] = ACTIONS(1938), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [726] = { - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_include_token1] = ACTIONS(1944), - [aux_sym_preproc_def_token1] = ACTIONS(1944), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_if_token2] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [aux_sym_preproc_else_token1] = ACTIONS(1942), - [aux_sym_preproc_elif_token1] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(1944), - [anon_sym_TILDE] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_PLUS] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___cdecl] = ACTIONS(1942), - [anon_sym___clrcall] = ACTIONS(1942), - [anon_sym___stdcall] = ACTIONS(1942), - [anon_sym___fastcall] = ACTIONS(1942), - [anon_sym___thiscall] = ACTIONS(1942), - [anon_sym___vectorcall] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1944), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_auto] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym_in] = ACTIONS(1942), - [anon_sym_out] = ACTIONS(1942), - [anon_sym_inout] = ACTIONS(1942), - [anon_sym_bycopy] = ACTIONS(1942), - [anon_sym_byref] = ACTIONS(1942), - [anon_sym_oneway] = ACTIONS(1942), - [anon_sym__Nullable] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym__Nullable_result] = ACTIONS(1942), - [anon_sym__Null_unspecified] = ACTIONS(1942), - [anon_sym___autoreleasing] = ACTIONS(1942), - [anon_sym___nullable] = ACTIONS(1942), - [anon_sym___nonnull] = ACTIONS(1942), - [anon_sym___strong] = ACTIONS(1942), - [anon_sym___weak] = ACTIONS(1942), - [anon_sym___bridge] = ACTIONS(1942), - [anon_sym___bridge_transfer] = ACTIONS(1942), - [anon_sym___bridge_retained] = ACTIONS(1942), - [anon_sym___unsafe_unretained] = ACTIONS(1942), - [anon_sym___block] = ACTIONS(1942), - [anon_sym___kindof] = ACTIONS(1942), - [anon_sym___unused] = ACTIONS(1942), - [anon_sym__Complex] = ACTIONS(1942), - [anon_sym___complex] = ACTIONS(1942), - [anon_sym_IBOutlet] = ACTIONS(1942), - [anon_sym_IBInspectable] = ACTIONS(1942), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1942), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_NS_ENUM] = ACTIONS(1942), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1942), - [anon_sym_NS_OPTIONS] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_switch] = ACTIONS(1942), - [anon_sym_case] = ACTIONS(1942), - [anon_sym_default] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_do] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_goto] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_PLUS_PLUS] = ACTIONS(1944), - [anon_sym_sizeof] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1944), - [anon_sym_L_SQUOTE] = ACTIONS(1944), - [anon_sym_u_SQUOTE] = ACTIONS(1944), - [anon_sym_U_SQUOTE] = ACTIONS(1944), - [anon_sym_u8_SQUOTE] = ACTIONS(1944), - [anon_sym_SQUOTE] = ACTIONS(1944), - [anon_sym_L_DQUOTE] = ACTIONS(1944), - [anon_sym_u_DQUOTE] = ACTIONS(1944), - [anon_sym_U_DQUOTE] = ACTIONS(1944), - [anon_sym_u8_DQUOTE] = ACTIONS(1944), - [anon_sym_DQUOTE] = ACTIONS(1944), - [sym_true] = ACTIONS(1942), - [sym_false] = ACTIONS(1942), - [sym_null] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1944), - [anon_sym_ATimport] = ACTIONS(1944), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1942), - [anon_sym_ATcompatibility_alias] = ACTIONS(1944), - [anon_sym_ATprotocol] = ACTIONS(1944), - [anon_sym_ATclass] = ACTIONS(1944), - [anon_sym_ATinterface] = ACTIONS(1944), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1942), - [sym_method_attribute_specifier] = ACTIONS(1942), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1942), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1942), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1942), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1942), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1942), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1942), - [anon_sym_NS_AVAILABLE] = ACTIONS(1942), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1942), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1942), - [anon_sym_API_AVAILABLE] = ACTIONS(1942), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1942), - [anon_sym_API_DEPRECATED] = ACTIONS(1942), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1942), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1942), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1942), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1942), - [anon_sym___deprecated_msg] = ACTIONS(1942), - [anon_sym___deprecated_enum_msg] = ACTIONS(1942), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1942), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1942), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1942), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1942), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1942), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1942), - [anon_sym_ATimplementation] = ACTIONS(1944), - [anon_sym_typeof] = ACTIONS(1942), - [anon_sym___typeof] = ACTIONS(1942), - [anon_sym___typeof__] = ACTIONS(1942), - [sym_self] = ACTIONS(1942), - [sym_super] = ACTIONS(1942), - [sym_nil] = ACTIONS(1942), - [sym_id] = ACTIONS(1942), - [sym_instancetype] = ACTIONS(1942), - [sym_Class] = ACTIONS(1942), - [sym_SEL] = ACTIONS(1942), - [sym_IMP] = ACTIONS(1942), - [sym_BOOL] = ACTIONS(1942), - [sym_auto] = ACTIONS(1942), - [anon_sym_ATautoreleasepool] = ACTIONS(1944), - [anon_sym_ATsynchronized] = ACTIONS(1944), - [anon_sym_ATtry] = ACTIONS(1944), - [anon_sym_ATthrow] = ACTIONS(1944), - [anon_sym_ATselector] = ACTIONS(1944), - [anon_sym_ATencode] = ACTIONS(1944), - [anon_sym_AT] = ACTIONS(1942), - [sym_YES] = ACTIONS(1942), - [sym_NO] = ACTIONS(1942), - [anon_sym___builtin_available] = ACTIONS(1942), - [anon_sym_ATavailable] = ACTIONS(1944), - [anon_sym_va_arg] = ACTIONS(1942), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [727] = { - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_include_token1] = ACTIONS(1948), - [aux_sym_preproc_def_token1] = ACTIONS(1948), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1946), - [aux_sym_preproc_else_token1] = ACTIONS(1946), - [aux_sym_preproc_elif_token1] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym___cdecl] = ACTIONS(1946), - [anon_sym___clrcall] = ACTIONS(1946), - [anon_sym___stdcall] = ACTIONS(1946), - [anon_sym___fastcall] = ACTIONS(1946), - [anon_sym___thiscall] = ACTIONS(1946), - [anon_sym___vectorcall] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_out] = ACTIONS(1946), - [anon_sym_inout] = ACTIONS(1946), - [anon_sym_bycopy] = ACTIONS(1946), - [anon_sym_byref] = ACTIONS(1946), - [anon_sym_oneway] = ACTIONS(1946), - [anon_sym__Nullable] = ACTIONS(1946), - [anon_sym__Nonnull] = ACTIONS(1946), - [anon_sym__Nullable_result] = ACTIONS(1946), - [anon_sym__Null_unspecified] = ACTIONS(1946), - [anon_sym___autoreleasing] = ACTIONS(1946), - [anon_sym___nullable] = ACTIONS(1946), - [anon_sym___nonnull] = ACTIONS(1946), - [anon_sym___strong] = ACTIONS(1946), - [anon_sym___weak] = ACTIONS(1946), - [anon_sym___bridge] = ACTIONS(1946), - [anon_sym___bridge_transfer] = ACTIONS(1946), - [anon_sym___bridge_retained] = ACTIONS(1946), - [anon_sym___unsafe_unretained] = ACTIONS(1946), - [anon_sym___block] = ACTIONS(1946), - [anon_sym___kindof] = ACTIONS(1946), - [anon_sym___unused] = ACTIONS(1946), - [anon_sym__Complex] = ACTIONS(1946), - [anon_sym___complex] = ACTIONS(1946), - [anon_sym_IBOutlet] = ACTIONS(1946), - [anon_sym_IBInspectable] = ACTIONS(1946), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1946), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_NS_ENUM] = ACTIONS(1946), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1946), - [anon_sym_NS_OPTIONS] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_goto] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1948), - [anon_sym_sizeof] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(1948), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1948), - [anon_sym_u_DQUOTE] = ACTIONS(1948), - [anon_sym_U_DQUOTE] = ACTIONS(1948), - [anon_sym_u8_DQUOTE] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym_true] = ACTIONS(1946), - [sym_false] = ACTIONS(1946), - [sym_null] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1948), - [anon_sym_ATimport] = ACTIONS(1948), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1946), - [anon_sym_ATcompatibility_alias] = ACTIONS(1948), - [anon_sym_ATprotocol] = ACTIONS(1948), - [anon_sym_ATclass] = ACTIONS(1948), - [anon_sym_ATinterface] = ACTIONS(1948), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1946), - [sym_method_attribute_specifier] = ACTIONS(1946), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1946), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE] = ACTIONS(1946), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_API_AVAILABLE] = ACTIONS(1946), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_API_DEPRECATED] = ACTIONS(1946), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1946), - [anon_sym___deprecated_msg] = ACTIONS(1946), - [anon_sym___deprecated_enum_msg] = ACTIONS(1946), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1946), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1946), - [anon_sym_ATimplementation] = ACTIONS(1948), - [anon_sym_typeof] = ACTIONS(1946), - [anon_sym___typeof] = ACTIONS(1946), - [anon_sym___typeof__] = ACTIONS(1946), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_nil] = ACTIONS(1946), - [sym_id] = ACTIONS(1946), - [sym_instancetype] = ACTIONS(1946), - [sym_Class] = ACTIONS(1946), - [sym_SEL] = ACTIONS(1946), - [sym_IMP] = ACTIONS(1946), - [sym_BOOL] = ACTIONS(1946), - [sym_auto] = ACTIONS(1946), - [anon_sym_ATautoreleasepool] = ACTIONS(1948), - [anon_sym_ATsynchronized] = ACTIONS(1948), - [anon_sym_ATtry] = ACTIONS(1948), - [anon_sym_ATthrow] = ACTIONS(1948), - [anon_sym_ATselector] = ACTIONS(1948), - [anon_sym_ATencode] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [sym_YES] = ACTIONS(1946), - [sym_NO] = ACTIONS(1946), - [anon_sym___builtin_available] = ACTIONS(1946), - [anon_sym_ATavailable] = ACTIONS(1948), - [anon_sym_va_arg] = ACTIONS(1946), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [728] = { - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_include_token1] = ACTIONS(1948), - [aux_sym_preproc_def_token1] = ACTIONS(1948), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1946), - [aux_sym_preproc_else_token1] = ACTIONS(1946), - [aux_sym_preproc_elif_token1] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym___cdecl] = ACTIONS(1946), - [anon_sym___clrcall] = ACTIONS(1946), - [anon_sym___stdcall] = ACTIONS(1946), - [anon_sym___fastcall] = ACTIONS(1946), - [anon_sym___thiscall] = ACTIONS(1946), - [anon_sym___vectorcall] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_out] = ACTIONS(1946), - [anon_sym_inout] = ACTIONS(1946), - [anon_sym_bycopy] = ACTIONS(1946), - [anon_sym_byref] = ACTIONS(1946), - [anon_sym_oneway] = ACTIONS(1946), - [anon_sym__Nullable] = ACTIONS(1946), - [anon_sym__Nonnull] = ACTIONS(1946), - [anon_sym__Nullable_result] = ACTIONS(1946), - [anon_sym__Null_unspecified] = ACTIONS(1946), - [anon_sym___autoreleasing] = ACTIONS(1946), - [anon_sym___nullable] = ACTIONS(1946), - [anon_sym___nonnull] = ACTIONS(1946), - [anon_sym___strong] = ACTIONS(1946), - [anon_sym___weak] = ACTIONS(1946), - [anon_sym___bridge] = ACTIONS(1946), - [anon_sym___bridge_transfer] = ACTIONS(1946), - [anon_sym___bridge_retained] = ACTIONS(1946), - [anon_sym___unsafe_unretained] = ACTIONS(1946), - [anon_sym___block] = ACTIONS(1946), - [anon_sym___kindof] = ACTIONS(1946), - [anon_sym___unused] = ACTIONS(1946), - [anon_sym__Complex] = ACTIONS(1946), - [anon_sym___complex] = ACTIONS(1946), - [anon_sym_IBOutlet] = ACTIONS(1946), - [anon_sym_IBInspectable] = ACTIONS(1946), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1946), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_NS_ENUM] = ACTIONS(1946), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1946), - [anon_sym_NS_OPTIONS] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_goto] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1948), - [anon_sym_sizeof] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(1948), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1948), - [anon_sym_u_DQUOTE] = ACTIONS(1948), - [anon_sym_U_DQUOTE] = ACTIONS(1948), - [anon_sym_u8_DQUOTE] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym_true] = ACTIONS(1946), - [sym_false] = ACTIONS(1946), - [sym_null] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1948), - [anon_sym_ATimport] = ACTIONS(1948), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1946), - [anon_sym_ATcompatibility_alias] = ACTIONS(1948), - [anon_sym_ATprotocol] = ACTIONS(1948), - [anon_sym_ATclass] = ACTIONS(1948), - [anon_sym_ATinterface] = ACTIONS(1948), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1946), - [sym_method_attribute_specifier] = ACTIONS(1946), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1946), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE] = ACTIONS(1946), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_API_AVAILABLE] = ACTIONS(1946), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_API_DEPRECATED] = ACTIONS(1946), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1946), - [anon_sym___deprecated_msg] = ACTIONS(1946), - [anon_sym___deprecated_enum_msg] = ACTIONS(1946), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1946), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1946), - [anon_sym_ATimplementation] = ACTIONS(1948), - [anon_sym_typeof] = ACTIONS(1946), - [anon_sym___typeof] = ACTIONS(1946), - [anon_sym___typeof__] = ACTIONS(1946), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_nil] = ACTIONS(1946), - [sym_id] = ACTIONS(1946), - [sym_instancetype] = ACTIONS(1946), - [sym_Class] = ACTIONS(1946), - [sym_SEL] = ACTIONS(1946), - [sym_IMP] = ACTIONS(1946), - [sym_BOOL] = ACTIONS(1946), - [sym_auto] = ACTIONS(1946), - [anon_sym_ATautoreleasepool] = ACTIONS(1948), - [anon_sym_ATsynchronized] = ACTIONS(1948), - [anon_sym_ATtry] = ACTIONS(1948), - [anon_sym_ATthrow] = ACTIONS(1948), - [anon_sym_ATselector] = ACTIONS(1948), - [anon_sym_ATencode] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [sym_YES] = ACTIONS(1946), - [sym_NO] = ACTIONS(1946), - [anon_sym___builtin_available] = ACTIONS(1946), - [anon_sym_ATavailable] = ACTIONS(1948), - [anon_sym_va_arg] = ACTIONS(1946), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [729] = { - [sym_identifier] = ACTIONS(1950), - [aux_sym_preproc_include_token1] = ACTIONS(1952), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1950), - [aux_sym_preproc_if_token2] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), - [aux_sym_preproc_else_token1] = ACTIONS(1950), - [aux_sym_preproc_elif_token1] = ACTIONS(1950), - [anon_sym_LPAREN2] = ACTIONS(1952), - [anon_sym_BANG] = ACTIONS(1952), - [anon_sym_TILDE] = ACTIONS(1952), - [anon_sym_DASH] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1950), - [anon_sym_STAR] = ACTIONS(1952), - [anon_sym_CARET] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1952), - [anon_sym_typedef] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(1950), - [anon_sym___attribute] = ACTIONS(1950), - [anon_sym___attribute__] = ACTIONS(1950), - [anon_sym___declspec] = ACTIONS(1950), - [anon_sym___cdecl] = ACTIONS(1950), - [anon_sym___clrcall] = ACTIONS(1950), - [anon_sym___stdcall] = ACTIONS(1950), - [anon_sym___fastcall] = ACTIONS(1950), - [anon_sym___thiscall] = ACTIONS(1950), - [anon_sym___vectorcall] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1952), - [anon_sym_static] = ACTIONS(1950), - [anon_sym_auto] = ACTIONS(1950), - [anon_sym_register] = ACTIONS(1950), - [anon_sym_inline] = ACTIONS(1950), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1950), - [anon_sym_const] = ACTIONS(1950), - [anon_sym_volatile] = ACTIONS(1950), - [anon_sym_restrict] = ACTIONS(1950), - [anon_sym__Atomic] = ACTIONS(1950), - [anon_sym_in] = ACTIONS(1950), - [anon_sym_out] = ACTIONS(1950), - [anon_sym_inout] = ACTIONS(1950), - [anon_sym_bycopy] = ACTIONS(1950), - [anon_sym_byref] = ACTIONS(1950), - [anon_sym_oneway] = ACTIONS(1950), - [anon_sym__Nullable] = ACTIONS(1950), - [anon_sym__Nonnull] = ACTIONS(1950), - [anon_sym__Nullable_result] = ACTIONS(1950), - [anon_sym__Null_unspecified] = ACTIONS(1950), - [anon_sym___autoreleasing] = ACTIONS(1950), - [anon_sym___nullable] = ACTIONS(1950), - [anon_sym___nonnull] = ACTIONS(1950), - [anon_sym___strong] = ACTIONS(1950), - [anon_sym___weak] = ACTIONS(1950), - [anon_sym___bridge] = ACTIONS(1950), - [anon_sym___bridge_transfer] = ACTIONS(1950), - [anon_sym___bridge_retained] = ACTIONS(1950), - [anon_sym___unsafe_unretained] = ACTIONS(1950), - [anon_sym___block] = ACTIONS(1950), - [anon_sym___kindof] = ACTIONS(1950), - [anon_sym___unused] = ACTIONS(1950), - [anon_sym__Complex] = ACTIONS(1950), - [anon_sym___complex] = ACTIONS(1950), - [anon_sym_IBOutlet] = ACTIONS(1950), - [anon_sym_IBInspectable] = ACTIONS(1950), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1950), - [anon_sym_signed] = ACTIONS(1950), - [anon_sym_unsigned] = ACTIONS(1950), - [anon_sym_long] = ACTIONS(1950), - [anon_sym_short] = ACTIONS(1950), - [sym_primitive_type] = ACTIONS(1950), - [anon_sym_enum] = ACTIONS(1950), - [anon_sym_NS_ENUM] = ACTIONS(1950), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1950), - [anon_sym_NS_OPTIONS] = ACTIONS(1950), - [anon_sym_struct] = ACTIONS(1950), - [anon_sym_union] = ACTIONS(1950), - [anon_sym_if] = ACTIONS(1950), - [anon_sym_switch] = ACTIONS(1950), - [anon_sym_case] = ACTIONS(1950), - [anon_sym_default] = ACTIONS(1950), - [anon_sym_while] = ACTIONS(1950), - [anon_sym_do] = ACTIONS(1950), - [anon_sym_for] = ACTIONS(1950), - [anon_sym_return] = ACTIONS(1950), - [anon_sym_break] = ACTIONS(1950), - [anon_sym_continue] = ACTIONS(1950), - [anon_sym_goto] = ACTIONS(1950), - [anon_sym_DASH_DASH] = ACTIONS(1952), - [anon_sym_PLUS_PLUS] = ACTIONS(1952), - [anon_sym_sizeof] = ACTIONS(1950), - [sym_number_literal] = ACTIONS(1952), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1952), - [anon_sym_u_DQUOTE] = ACTIONS(1952), - [anon_sym_U_DQUOTE] = ACTIONS(1952), - [anon_sym_u8_DQUOTE] = ACTIONS(1952), - [anon_sym_DQUOTE] = ACTIONS(1952), - [sym_true] = ACTIONS(1950), - [sym_false] = ACTIONS(1950), - [sym_null] = ACTIONS(1950), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1952), - [anon_sym_ATimport] = ACTIONS(1952), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1950), - [anon_sym_ATcompatibility_alias] = ACTIONS(1952), - [anon_sym_ATprotocol] = ACTIONS(1952), - [anon_sym_ATclass] = ACTIONS(1952), - [anon_sym_ATinterface] = ACTIONS(1952), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1950), - [sym_method_attribute_specifier] = ACTIONS(1950), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1950), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1950), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1950), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1950), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1950), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1950), - [anon_sym_NS_AVAILABLE] = ACTIONS(1950), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1950), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1950), - [anon_sym_API_AVAILABLE] = ACTIONS(1950), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1950), - [anon_sym_API_DEPRECATED] = ACTIONS(1950), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1950), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1950), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1950), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1950), - [anon_sym___deprecated_msg] = ACTIONS(1950), - [anon_sym___deprecated_enum_msg] = ACTIONS(1950), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1950), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1950), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1950), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1950), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1950), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1950), - [anon_sym_ATimplementation] = ACTIONS(1952), - [anon_sym_typeof] = ACTIONS(1950), - [anon_sym___typeof] = ACTIONS(1950), - [anon_sym___typeof__] = ACTIONS(1950), - [sym_self] = ACTIONS(1950), - [sym_super] = ACTIONS(1950), - [sym_nil] = ACTIONS(1950), - [sym_id] = ACTIONS(1950), - [sym_instancetype] = ACTIONS(1950), - [sym_Class] = ACTIONS(1950), - [sym_SEL] = ACTIONS(1950), - [sym_IMP] = ACTIONS(1950), - [sym_BOOL] = ACTIONS(1950), - [sym_auto] = ACTIONS(1950), - [anon_sym_ATautoreleasepool] = ACTIONS(1952), - [anon_sym_ATsynchronized] = ACTIONS(1952), - [anon_sym_ATtry] = ACTIONS(1952), - [anon_sym_ATthrow] = ACTIONS(1952), - [anon_sym_ATselector] = ACTIONS(1952), - [anon_sym_ATencode] = ACTIONS(1952), - [anon_sym_AT] = ACTIONS(1950), - [sym_YES] = ACTIONS(1950), - [sym_NO] = ACTIONS(1950), - [anon_sym___builtin_available] = ACTIONS(1950), - [anon_sym_ATavailable] = ACTIONS(1952), - [anon_sym_va_arg] = ACTIONS(1950), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [730] = { - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_include_token1] = ACTIONS(1948), - [aux_sym_preproc_def_token1] = ACTIONS(1948), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1946), - [aux_sym_preproc_else_token1] = ACTIONS(1946), - [aux_sym_preproc_elif_token1] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym___cdecl] = ACTIONS(1946), - [anon_sym___clrcall] = ACTIONS(1946), - [anon_sym___stdcall] = ACTIONS(1946), - [anon_sym___fastcall] = ACTIONS(1946), - [anon_sym___thiscall] = ACTIONS(1946), - [anon_sym___vectorcall] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_out] = ACTIONS(1946), - [anon_sym_inout] = ACTIONS(1946), - [anon_sym_bycopy] = ACTIONS(1946), - [anon_sym_byref] = ACTIONS(1946), - [anon_sym_oneway] = ACTIONS(1946), - [anon_sym__Nullable] = ACTIONS(1946), - [anon_sym__Nonnull] = ACTIONS(1946), - [anon_sym__Nullable_result] = ACTIONS(1946), - [anon_sym__Null_unspecified] = ACTIONS(1946), - [anon_sym___autoreleasing] = ACTIONS(1946), - [anon_sym___nullable] = ACTIONS(1946), - [anon_sym___nonnull] = ACTIONS(1946), - [anon_sym___strong] = ACTIONS(1946), - [anon_sym___weak] = ACTIONS(1946), - [anon_sym___bridge] = ACTIONS(1946), - [anon_sym___bridge_transfer] = ACTIONS(1946), - [anon_sym___bridge_retained] = ACTIONS(1946), - [anon_sym___unsafe_unretained] = ACTIONS(1946), - [anon_sym___block] = ACTIONS(1946), - [anon_sym___kindof] = ACTIONS(1946), - [anon_sym___unused] = ACTIONS(1946), - [anon_sym__Complex] = ACTIONS(1946), - [anon_sym___complex] = ACTIONS(1946), - [anon_sym_IBOutlet] = ACTIONS(1946), - [anon_sym_IBInspectable] = ACTIONS(1946), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1946), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_NS_ENUM] = ACTIONS(1946), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1946), - [anon_sym_NS_OPTIONS] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_goto] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1948), - [anon_sym_sizeof] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(1948), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1948), - [anon_sym_u_DQUOTE] = ACTIONS(1948), - [anon_sym_U_DQUOTE] = ACTIONS(1948), - [anon_sym_u8_DQUOTE] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym_true] = ACTIONS(1946), - [sym_false] = ACTIONS(1946), - [sym_null] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1948), - [anon_sym_ATimport] = ACTIONS(1948), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1946), - [anon_sym_ATcompatibility_alias] = ACTIONS(1948), - [anon_sym_ATprotocol] = ACTIONS(1948), - [anon_sym_ATclass] = ACTIONS(1948), - [anon_sym_ATinterface] = ACTIONS(1948), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1946), - [sym_method_attribute_specifier] = ACTIONS(1946), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1946), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE] = ACTIONS(1946), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_API_AVAILABLE] = ACTIONS(1946), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_API_DEPRECATED] = ACTIONS(1946), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1946), - [anon_sym___deprecated_msg] = ACTIONS(1946), - [anon_sym___deprecated_enum_msg] = ACTIONS(1946), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1946), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1946), - [anon_sym_ATimplementation] = ACTIONS(1948), - [anon_sym_typeof] = ACTIONS(1946), - [anon_sym___typeof] = ACTIONS(1946), - [anon_sym___typeof__] = ACTIONS(1946), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_nil] = ACTIONS(1946), - [sym_id] = ACTIONS(1946), - [sym_instancetype] = ACTIONS(1946), - [sym_Class] = ACTIONS(1946), - [sym_SEL] = ACTIONS(1946), - [sym_IMP] = ACTIONS(1946), - [sym_BOOL] = ACTIONS(1946), - [sym_auto] = ACTIONS(1946), - [anon_sym_ATautoreleasepool] = ACTIONS(1948), - [anon_sym_ATsynchronized] = ACTIONS(1948), - [anon_sym_ATtry] = ACTIONS(1948), - [anon_sym_ATthrow] = ACTIONS(1948), - [anon_sym_ATselector] = ACTIONS(1948), - [anon_sym_ATencode] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [sym_YES] = ACTIONS(1946), - [sym_NO] = ACTIONS(1946), - [anon_sym___builtin_available] = ACTIONS(1946), - [anon_sym_ATavailable] = ACTIONS(1948), - [anon_sym_va_arg] = ACTIONS(1946), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [731] = { - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_include_token1] = ACTIONS(1948), - [aux_sym_preproc_def_token1] = ACTIONS(1948), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1946), - [aux_sym_preproc_else_token1] = ACTIONS(1946), - [aux_sym_preproc_elif_token1] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym___cdecl] = ACTIONS(1946), - [anon_sym___clrcall] = ACTIONS(1946), - [anon_sym___stdcall] = ACTIONS(1946), - [anon_sym___fastcall] = ACTIONS(1946), - [anon_sym___thiscall] = ACTIONS(1946), - [anon_sym___vectorcall] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_out] = ACTIONS(1946), - [anon_sym_inout] = ACTIONS(1946), - [anon_sym_bycopy] = ACTIONS(1946), - [anon_sym_byref] = ACTIONS(1946), - [anon_sym_oneway] = ACTIONS(1946), - [anon_sym__Nullable] = ACTIONS(1946), - [anon_sym__Nonnull] = ACTIONS(1946), - [anon_sym__Nullable_result] = ACTIONS(1946), - [anon_sym__Null_unspecified] = ACTIONS(1946), - [anon_sym___autoreleasing] = ACTIONS(1946), - [anon_sym___nullable] = ACTIONS(1946), - [anon_sym___nonnull] = ACTIONS(1946), - [anon_sym___strong] = ACTIONS(1946), - [anon_sym___weak] = ACTIONS(1946), - [anon_sym___bridge] = ACTIONS(1946), - [anon_sym___bridge_transfer] = ACTIONS(1946), - [anon_sym___bridge_retained] = ACTIONS(1946), - [anon_sym___unsafe_unretained] = ACTIONS(1946), - [anon_sym___block] = ACTIONS(1946), - [anon_sym___kindof] = ACTIONS(1946), - [anon_sym___unused] = ACTIONS(1946), - [anon_sym__Complex] = ACTIONS(1946), - [anon_sym___complex] = ACTIONS(1946), - [anon_sym_IBOutlet] = ACTIONS(1946), - [anon_sym_IBInspectable] = ACTIONS(1946), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1946), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_NS_ENUM] = ACTIONS(1946), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1946), - [anon_sym_NS_OPTIONS] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_goto] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1948), - [anon_sym_sizeof] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(1948), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1948), - [anon_sym_u_DQUOTE] = ACTIONS(1948), - [anon_sym_U_DQUOTE] = ACTIONS(1948), - [anon_sym_u8_DQUOTE] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym_true] = ACTIONS(1946), - [sym_false] = ACTIONS(1946), - [sym_null] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1948), - [anon_sym_ATimport] = ACTIONS(1948), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1946), - [anon_sym_ATcompatibility_alias] = ACTIONS(1948), - [anon_sym_ATprotocol] = ACTIONS(1948), - [anon_sym_ATclass] = ACTIONS(1948), - [anon_sym_ATinterface] = ACTIONS(1948), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1946), - [sym_method_attribute_specifier] = ACTIONS(1946), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1946), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE] = ACTIONS(1946), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_API_AVAILABLE] = ACTIONS(1946), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_API_DEPRECATED] = ACTIONS(1946), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1946), - [anon_sym___deprecated_msg] = ACTIONS(1946), - [anon_sym___deprecated_enum_msg] = ACTIONS(1946), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1946), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1946), - [anon_sym_ATimplementation] = ACTIONS(1948), - [anon_sym_typeof] = ACTIONS(1946), - [anon_sym___typeof] = ACTIONS(1946), - [anon_sym___typeof__] = ACTIONS(1946), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_nil] = ACTIONS(1946), - [sym_id] = ACTIONS(1946), - [sym_instancetype] = ACTIONS(1946), - [sym_Class] = ACTIONS(1946), - [sym_SEL] = ACTIONS(1946), - [sym_IMP] = ACTIONS(1946), - [sym_BOOL] = ACTIONS(1946), - [sym_auto] = ACTIONS(1946), - [anon_sym_ATautoreleasepool] = ACTIONS(1948), - [anon_sym_ATsynchronized] = ACTIONS(1948), - [anon_sym_ATtry] = ACTIONS(1948), - [anon_sym_ATthrow] = ACTIONS(1948), - [anon_sym_ATselector] = ACTIONS(1948), - [anon_sym_ATencode] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [sym_YES] = ACTIONS(1946), - [sym_NO] = ACTIONS(1946), - [anon_sym___builtin_available] = ACTIONS(1946), - [anon_sym_ATavailable] = ACTIONS(1948), - [anon_sym_va_arg] = ACTIONS(1946), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [732] = { - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_include_token1] = ACTIONS(1948), - [aux_sym_preproc_def_token1] = ACTIONS(1948), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1946), - [aux_sym_preproc_else_token1] = ACTIONS(1946), - [aux_sym_preproc_elif_token1] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym___cdecl] = ACTIONS(1946), - [anon_sym___clrcall] = ACTIONS(1946), - [anon_sym___stdcall] = ACTIONS(1946), - [anon_sym___fastcall] = ACTIONS(1946), - [anon_sym___thiscall] = ACTIONS(1946), - [anon_sym___vectorcall] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_out] = ACTIONS(1946), - [anon_sym_inout] = ACTIONS(1946), - [anon_sym_bycopy] = ACTIONS(1946), - [anon_sym_byref] = ACTIONS(1946), - [anon_sym_oneway] = ACTIONS(1946), - [anon_sym__Nullable] = ACTIONS(1946), - [anon_sym__Nonnull] = ACTIONS(1946), - [anon_sym__Nullable_result] = ACTIONS(1946), - [anon_sym__Null_unspecified] = ACTIONS(1946), - [anon_sym___autoreleasing] = ACTIONS(1946), - [anon_sym___nullable] = ACTIONS(1946), - [anon_sym___nonnull] = ACTIONS(1946), - [anon_sym___strong] = ACTIONS(1946), - [anon_sym___weak] = ACTIONS(1946), - [anon_sym___bridge] = ACTIONS(1946), - [anon_sym___bridge_transfer] = ACTIONS(1946), - [anon_sym___bridge_retained] = ACTIONS(1946), - [anon_sym___unsafe_unretained] = ACTIONS(1946), - [anon_sym___block] = ACTIONS(1946), - [anon_sym___kindof] = ACTIONS(1946), - [anon_sym___unused] = ACTIONS(1946), - [anon_sym__Complex] = ACTIONS(1946), - [anon_sym___complex] = ACTIONS(1946), - [anon_sym_IBOutlet] = ACTIONS(1946), - [anon_sym_IBInspectable] = ACTIONS(1946), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1946), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_NS_ENUM] = ACTIONS(1946), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1946), - [anon_sym_NS_OPTIONS] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_goto] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1948), - [anon_sym_sizeof] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(1948), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1948), - [anon_sym_u_DQUOTE] = ACTIONS(1948), - [anon_sym_U_DQUOTE] = ACTIONS(1948), - [anon_sym_u8_DQUOTE] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym_true] = ACTIONS(1946), - [sym_false] = ACTIONS(1946), - [sym_null] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1948), - [anon_sym_ATimport] = ACTIONS(1948), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1946), - [anon_sym_ATcompatibility_alias] = ACTIONS(1948), - [anon_sym_ATprotocol] = ACTIONS(1948), - [anon_sym_ATclass] = ACTIONS(1948), - [anon_sym_ATinterface] = ACTIONS(1948), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1946), - [sym_method_attribute_specifier] = ACTIONS(1946), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1946), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE] = ACTIONS(1946), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_API_AVAILABLE] = ACTIONS(1946), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_API_DEPRECATED] = ACTIONS(1946), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1946), - [anon_sym___deprecated_msg] = ACTIONS(1946), - [anon_sym___deprecated_enum_msg] = ACTIONS(1946), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1946), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1946), - [anon_sym_ATimplementation] = ACTIONS(1948), - [anon_sym_typeof] = ACTIONS(1946), - [anon_sym___typeof] = ACTIONS(1946), - [anon_sym___typeof__] = ACTIONS(1946), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_nil] = ACTIONS(1946), - [sym_id] = ACTIONS(1946), - [sym_instancetype] = ACTIONS(1946), - [sym_Class] = ACTIONS(1946), - [sym_SEL] = ACTIONS(1946), - [sym_IMP] = ACTIONS(1946), - [sym_BOOL] = ACTIONS(1946), - [sym_auto] = ACTIONS(1946), - [anon_sym_ATautoreleasepool] = ACTIONS(1948), - [anon_sym_ATsynchronized] = ACTIONS(1948), - [anon_sym_ATtry] = ACTIONS(1948), - [anon_sym_ATthrow] = ACTIONS(1948), - [anon_sym_ATselector] = ACTIONS(1948), - [anon_sym_ATencode] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [sym_YES] = ACTIONS(1946), - [sym_NO] = ACTIONS(1946), - [anon_sym___builtin_available] = ACTIONS(1946), - [anon_sym_ATavailable] = ACTIONS(1948), - [anon_sym_va_arg] = ACTIONS(1946), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [733] = { - [sym_identifier] = ACTIONS(1954), - [aux_sym_preproc_include_token1] = ACTIONS(1956), - [aux_sym_preproc_def_token1] = ACTIONS(1956), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1954), - [aux_sym_preproc_else_token1] = ACTIONS(1954), - [aux_sym_preproc_elif_token1] = ACTIONS(1954), - [anon_sym_LPAREN2] = ACTIONS(1956), - [anon_sym_BANG] = ACTIONS(1956), - [anon_sym_TILDE] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1954), - [anon_sym_PLUS] = ACTIONS(1954), - [anon_sym_STAR] = ACTIONS(1956), - [anon_sym_CARET] = ACTIONS(1956), - [anon_sym_AMP] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_typedef] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym___attribute] = ACTIONS(1954), - [anon_sym___attribute__] = ACTIONS(1954), - [anon_sym___declspec] = ACTIONS(1954), - [anon_sym___cdecl] = ACTIONS(1954), - [anon_sym___clrcall] = ACTIONS(1954), - [anon_sym___stdcall] = ACTIONS(1954), - [anon_sym___fastcall] = ACTIONS(1954), - [anon_sym___thiscall] = ACTIONS(1954), - [anon_sym___vectorcall] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1956), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_auto] = ACTIONS(1954), - [anon_sym_register] = ACTIONS(1954), - [anon_sym_inline] = ACTIONS(1954), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_volatile] = ACTIONS(1954), - [anon_sym_restrict] = ACTIONS(1954), - [anon_sym__Atomic] = ACTIONS(1954), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_out] = ACTIONS(1954), - [anon_sym_inout] = ACTIONS(1954), - [anon_sym_bycopy] = ACTIONS(1954), - [anon_sym_byref] = ACTIONS(1954), - [anon_sym_oneway] = ACTIONS(1954), - [anon_sym__Nullable] = ACTIONS(1954), - [anon_sym__Nonnull] = ACTIONS(1954), - [anon_sym__Nullable_result] = ACTIONS(1954), - [anon_sym__Null_unspecified] = ACTIONS(1954), - [anon_sym___autoreleasing] = ACTIONS(1954), - [anon_sym___nullable] = ACTIONS(1954), - [anon_sym___nonnull] = ACTIONS(1954), - [anon_sym___strong] = ACTIONS(1954), - [anon_sym___weak] = ACTIONS(1954), - [anon_sym___bridge] = ACTIONS(1954), - [anon_sym___bridge_transfer] = ACTIONS(1954), - [anon_sym___bridge_retained] = ACTIONS(1954), - [anon_sym___unsafe_unretained] = ACTIONS(1954), - [anon_sym___block] = ACTIONS(1954), - [anon_sym___kindof] = ACTIONS(1954), - [anon_sym___unused] = ACTIONS(1954), - [anon_sym__Complex] = ACTIONS(1954), - [anon_sym___complex] = ACTIONS(1954), - [anon_sym_IBOutlet] = ACTIONS(1954), - [anon_sym_IBInspectable] = ACTIONS(1954), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1954), - [anon_sym_signed] = ACTIONS(1954), - [anon_sym_unsigned] = ACTIONS(1954), - [anon_sym_long] = ACTIONS(1954), - [anon_sym_short] = ACTIONS(1954), - [sym_primitive_type] = ACTIONS(1954), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_NS_ENUM] = ACTIONS(1954), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1954), - [anon_sym_NS_OPTIONS] = ACTIONS(1954), - [anon_sym_struct] = ACTIONS(1954), - [anon_sym_union] = ACTIONS(1954), - [anon_sym_if] = ACTIONS(1954), - [anon_sym_switch] = ACTIONS(1954), - [anon_sym_case] = ACTIONS(1954), - [anon_sym_default] = ACTIONS(1954), - [anon_sym_while] = ACTIONS(1954), - [anon_sym_do] = ACTIONS(1954), - [anon_sym_for] = ACTIONS(1954), - [anon_sym_return] = ACTIONS(1954), - [anon_sym_break] = ACTIONS(1954), - [anon_sym_continue] = ACTIONS(1954), - [anon_sym_goto] = ACTIONS(1954), - [anon_sym_DASH_DASH] = ACTIONS(1956), - [anon_sym_PLUS_PLUS] = ACTIONS(1956), - [anon_sym_sizeof] = ACTIONS(1954), - [sym_number_literal] = ACTIONS(1956), - [anon_sym_L_SQUOTE] = ACTIONS(1956), - [anon_sym_u_SQUOTE] = ACTIONS(1956), - [anon_sym_U_SQUOTE] = ACTIONS(1956), - [anon_sym_u8_SQUOTE] = ACTIONS(1956), - [anon_sym_SQUOTE] = ACTIONS(1956), - [anon_sym_L_DQUOTE] = ACTIONS(1956), - [anon_sym_u_DQUOTE] = ACTIONS(1956), - [anon_sym_U_DQUOTE] = ACTIONS(1956), - [anon_sym_u8_DQUOTE] = ACTIONS(1956), - [anon_sym_DQUOTE] = ACTIONS(1956), - [sym_true] = ACTIONS(1954), - [sym_false] = ACTIONS(1954), - [sym_null] = ACTIONS(1954), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1956), - [anon_sym_ATimport] = ACTIONS(1956), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1954), - [anon_sym_ATcompatibility_alias] = ACTIONS(1956), - [anon_sym_ATprotocol] = ACTIONS(1956), - [anon_sym_ATclass] = ACTIONS(1956), - [anon_sym_ATinterface] = ACTIONS(1956), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1954), - [sym_method_attribute_specifier] = ACTIONS(1954), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1954), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1954), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1954), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1954), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1954), - [anon_sym_NS_AVAILABLE] = ACTIONS(1954), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1954), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_API_AVAILABLE] = ACTIONS(1954), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_API_DEPRECATED] = ACTIONS(1954), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1954), - [anon_sym___deprecated_msg] = ACTIONS(1954), - [anon_sym___deprecated_enum_msg] = ACTIONS(1954), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1954), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1954), - [anon_sym_ATimplementation] = ACTIONS(1956), - [anon_sym_typeof] = ACTIONS(1954), - [anon_sym___typeof] = ACTIONS(1954), - [anon_sym___typeof__] = ACTIONS(1954), - [sym_self] = ACTIONS(1954), - [sym_super] = ACTIONS(1954), - [sym_nil] = ACTIONS(1954), - [sym_id] = ACTIONS(1954), - [sym_instancetype] = ACTIONS(1954), - [sym_Class] = ACTIONS(1954), - [sym_SEL] = ACTIONS(1954), - [sym_IMP] = ACTIONS(1954), - [sym_BOOL] = ACTIONS(1954), - [sym_auto] = ACTIONS(1954), - [anon_sym_ATautoreleasepool] = ACTIONS(1956), - [anon_sym_ATsynchronized] = ACTIONS(1956), - [anon_sym_ATtry] = ACTIONS(1956), - [anon_sym_ATthrow] = ACTIONS(1956), - [anon_sym_ATselector] = ACTIONS(1956), - [anon_sym_ATencode] = ACTIONS(1956), - [anon_sym_AT] = ACTIONS(1954), - [sym_YES] = ACTIONS(1954), - [sym_NO] = ACTIONS(1954), - [anon_sym___builtin_available] = ACTIONS(1954), - [anon_sym_ATavailable] = ACTIONS(1956), - [anon_sym_va_arg] = ACTIONS(1954), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [734] = { - [sym_identifier] = ACTIONS(1958), - [aux_sym_preproc_include_token1] = ACTIONS(1960), - [aux_sym_preproc_def_token1] = ACTIONS(1960), - [aux_sym_preproc_if_token1] = ACTIONS(1958), - [aux_sym_preproc_if_token2] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1958), - [aux_sym_preproc_elif_token1] = ACTIONS(1958), - [anon_sym_LPAREN2] = ACTIONS(1960), - [anon_sym_BANG] = ACTIONS(1960), - [anon_sym_TILDE] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_STAR] = ACTIONS(1960), - [anon_sym_CARET] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_SEMI] = ACTIONS(1960), - [anon_sym_typedef] = ACTIONS(1958), - [anon_sym_extern] = ACTIONS(1958), - [anon_sym___attribute] = ACTIONS(1958), - [anon_sym___attribute__] = ACTIONS(1958), - [anon_sym___declspec] = ACTIONS(1958), - [anon_sym___cdecl] = ACTIONS(1958), - [anon_sym___clrcall] = ACTIONS(1958), - [anon_sym___stdcall] = ACTIONS(1958), - [anon_sym___fastcall] = ACTIONS(1958), - [anon_sym___thiscall] = ACTIONS(1958), - [anon_sym___vectorcall] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1960), - [anon_sym_LBRACK] = ACTIONS(1960), - [anon_sym_static] = ACTIONS(1958), - [anon_sym_auto] = ACTIONS(1958), - [anon_sym_register] = ACTIONS(1958), - [anon_sym_inline] = ACTIONS(1958), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1958), - [anon_sym_const] = ACTIONS(1958), - [anon_sym_volatile] = ACTIONS(1958), - [anon_sym_restrict] = ACTIONS(1958), - [anon_sym__Atomic] = ACTIONS(1958), - [anon_sym_in] = ACTIONS(1958), - [anon_sym_out] = ACTIONS(1958), - [anon_sym_inout] = ACTIONS(1958), - [anon_sym_bycopy] = ACTIONS(1958), - [anon_sym_byref] = ACTIONS(1958), - [anon_sym_oneway] = ACTIONS(1958), - [anon_sym__Nullable] = ACTIONS(1958), - [anon_sym__Nonnull] = ACTIONS(1958), - [anon_sym__Nullable_result] = ACTIONS(1958), - [anon_sym__Null_unspecified] = ACTIONS(1958), - [anon_sym___autoreleasing] = ACTIONS(1958), - [anon_sym___nullable] = ACTIONS(1958), - [anon_sym___nonnull] = ACTIONS(1958), - [anon_sym___strong] = ACTIONS(1958), - [anon_sym___weak] = ACTIONS(1958), - [anon_sym___bridge] = ACTIONS(1958), - [anon_sym___bridge_transfer] = ACTIONS(1958), - [anon_sym___bridge_retained] = ACTIONS(1958), - [anon_sym___unsafe_unretained] = ACTIONS(1958), - [anon_sym___block] = ACTIONS(1958), - [anon_sym___kindof] = ACTIONS(1958), - [anon_sym___unused] = ACTIONS(1958), - [anon_sym__Complex] = ACTIONS(1958), - [anon_sym___complex] = ACTIONS(1958), - [anon_sym_IBOutlet] = ACTIONS(1958), - [anon_sym_IBInspectable] = ACTIONS(1958), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1958), - [anon_sym_signed] = ACTIONS(1958), - [anon_sym_unsigned] = ACTIONS(1958), - [anon_sym_long] = ACTIONS(1958), - [anon_sym_short] = ACTIONS(1958), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_enum] = ACTIONS(1958), - [anon_sym_NS_ENUM] = ACTIONS(1958), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1958), - [anon_sym_NS_OPTIONS] = ACTIONS(1958), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1958), - [anon_sym_if] = ACTIONS(1958), - [anon_sym_switch] = ACTIONS(1958), - [anon_sym_case] = ACTIONS(1958), - [anon_sym_default] = ACTIONS(1958), - [anon_sym_while] = ACTIONS(1958), - [anon_sym_do] = ACTIONS(1958), - [anon_sym_for] = ACTIONS(1958), - [anon_sym_return] = ACTIONS(1958), - [anon_sym_break] = ACTIONS(1958), - [anon_sym_continue] = ACTIONS(1958), - [anon_sym_goto] = ACTIONS(1958), - [anon_sym_DASH_DASH] = ACTIONS(1960), - [anon_sym_PLUS_PLUS] = ACTIONS(1960), - [anon_sym_sizeof] = ACTIONS(1958), - [sym_number_literal] = ACTIONS(1960), - [anon_sym_L_SQUOTE] = ACTIONS(1960), - [anon_sym_u_SQUOTE] = ACTIONS(1960), - [anon_sym_U_SQUOTE] = ACTIONS(1960), - [anon_sym_u8_SQUOTE] = ACTIONS(1960), - [anon_sym_SQUOTE] = ACTIONS(1960), - [anon_sym_L_DQUOTE] = ACTIONS(1960), - [anon_sym_u_DQUOTE] = ACTIONS(1960), - [anon_sym_U_DQUOTE] = ACTIONS(1960), - [anon_sym_u8_DQUOTE] = ACTIONS(1960), - [anon_sym_DQUOTE] = ACTIONS(1960), - [sym_true] = ACTIONS(1958), - [sym_false] = ACTIONS(1958), - [sym_null] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1960), - [anon_sym_ATimport] = ACTIONS(1960), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1958), - [anon_sym_ATcompatibility_alias] = ACTIONS(1960), - [anon_sym_ATprotocol] = ACTIONS(1960), - [anon_sym_ATclass] = ACTIONS(1960), - [anon_sym_ATinterface] = ACTIONS(1960), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1958), - [sym_method_attribute_specifier] = ACTIONS(1958), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1958), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1958), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1958), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1958), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1958), - [anon_sym_NS_AVAILABLE] = ACTIONS(1958), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1958), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_API_AVAILABLE] = ACTIONS(1958), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_API_DEPRECATED] = ACTIONS(1958), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1958), - [anon_sym___deprecated_msg] = ACTIONS(1958), - [anon_sym___deprecated_enum_msg] = ACTIONS(1958), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1958), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1958), - [anon_sym_ATimplementation] = ACTIONS(1960), - [anon_sym_typeof] = ACTIONS(1958), - [anon_sym___typeof] = ACTIONS(1958), - [anon_sym___typeof__] = ACTIONS(1958), - [sym_self] = ACTIONS(1958), - [sym_super] = ACTIONS(1958), - [sym_nil] = ACTIONS(1958), - [sym_id] = ACTIONS(1958), - [sym_instancetype] = ACTIONS(1958), - [sym_Class] = ACTIONS(1958), - [sym_SEL] = ACTIONS(1958), - [sym_IMP] = ACTIONS(1958), - [sym_BOOL] = ACTIONS(1958), - [sym_auto] = ACTIONS(1958), - [anon_sym_ATautoreleasepool] = ACTIONS(1960), - [anon_sym_ATsynchronized] = ACTIONS(1960), - [anon_sym_ATtry] = ACTIONS(1960), - [anon_sym_ATthrow] = ACTIONS(1960), - [anon_sym_ATselector] = ACTIONS(1960), - [anon_sym_ATencode] = ACTIONS(1960), - [anon_sym_AT] = ACTIONS(1958), - [sym_YES] = ACTIONS(1958), - [sym_NO] = ACTIONS(1958), - [anon_sym___builtin_available] = ACTIONS(1958), - [anon_sym_ATavailable] = ACTIONS(1960), - [anon_sym_va_arg] = ACTIONS(1958), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [735] = { - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_include_token1] = ACTIONS(1948), - [aux_sym_preproc_def_token1] = ACTIONS(1948), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1946), - [aux_sym_preproc_else_token1] = ACTIONS(1946), - [aux_sym_preproc_elif_token1] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym___cdecl] = ACTIONS(1946), - [anon_sym___clrcall] = ACTIONS(1946), - [anon_sym___stdcall] = ACTIONS(1946), - [anon_sym___fastcall] = ACTIONS(1946), - [anon_sym___thiscall] = ACTIONS(1946), - [anon_sym___vectorcall] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_out] = ACTIONS(1946), - [anon_sym_inout] = ACTIONS(1946), - [anon_sym_bycopy] = ACTIONS(1946), - [anon_sym_byref] = ACTIONS(1946), - [anon_sym_oneway] = ACTIONS(1946), - [anon_sym__Nullable] = ACTIONS(1946), - [anon_sym__Nonnull] = ACTIONS(1946), - [anon_sym__Nullable_result] = ACTIONS(1946), - [anon_sym__Null_unspecified] = ACTIONS(1946), - [anon_sym___autoreleasing] = ACTIONS(1946), - [anon_sym___nullable] = ACTIONS(1946), - [anon_sym___nonnull] = ACTIONS(1946), - [anon_sym___strong] = ACTIONS(1946), - [anon_sym___weak] = ACTIONS(1946), - [anon_sym___bridge] = ACTIONS(1946), - [anon_sym___bridge_transfer] = ACTIONS(1946), - [anon_sym___bridge_retained] = ACTIONS(1946), - [anon_sym___unsafe_unretained] = ACTIONS(1946), - [anon_sym___block] = ACTIONS(1946), - [anon_sym___kindof] = ACTIONS(1946), - [anon_sym___unused] = ACTIONS(1946), - [anon_sym__Complex] = ACTIONS(1946), - [anon_sym___complex] = ACTIONS(1946), - [anon_sym_IBOutlet] = ACTIONS(1946), - [anon_sym_IBInspectable] = ACTIONS(1946), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1946), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_NS_ENUM] = ACTIONS(1946), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1946), - [anon_sym_NS_OPTIONS] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_goto] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1948), - [anon_sym_sizeof] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(1948), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1948), - [anon_sym_u_DQUOTE] = ACTIONS(1948), - [anon_sym_U_DQUOTE] = ACTIONS(1948), - [anon_sym_u8_DQUOTE] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym_true] = ACTIONS(1946), - [sym_false] = ACTIONS(1946), - [sym_null] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1948), - [anon_sym_ATimport] = ACTIONS(1948), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1946), - [anon_sym_ATcompatibility_alias] = ACTIONS(1948), - [anon_sym_ATprotocol] = ACTIONS(1948), - [anon_sym_ATclass] = ACTIONS(1948), - [anon_sym_ATinterface] = ACTIONS(1948), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1946), - [sym_method_attribute_specifier] = ACTIONS(1946), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1946), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE] = ACTIONS(1946), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_API_AVAILABLE] = ACTIONS(1946), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_API_DEPRECATED] = ACTIONS(1946), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1946), - [anon_sym___deprecated_msg] = ACTIONS(1946), - [anon_sym___deprecated_enum_msg] = ACTIONS(1946), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1946), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1946), - [anon_sym_ATimplementation] = ACTIONS(1948), - [anon_sym_typeof] = ACTIONS(1946), - [anon_sym___typeof] = ACTIONS(1946), - [anon_sym___typeof__] = ACTIONS(1946), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_nil] = ACTIONS(1946), - [sym_id] = ACTIONS(1946), - [sym_instancetype] = ACTIONS(1946), - [sym_Class] = ACTIONS(1946), - [sym_SEL] = ACTIONS(1946), - [sym_IMP] = ACTIONS(1946), - [sym_BOOL] = ACTIONS(1946), - [sym_auto] = ACTIONS(1946), - [anon_sym_ATautoreleasepool] = ACTIONS(1948), - [anon_sym_ATsynchronized] = ACTIONS(1948), - [anon_sym_ATtry] = ACTIONS(1948), - [anon_sym_ATthrow] = ACTIONS(1948), - [anon_sym_ATselector] = ACTIONS(1948), - [anon_sym_ATencode] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [sym_YES] = ACTIONS(1946), - [sym_NO] = ACTIONS(1946), - [anon_sym___builtin_available] = ACTIONS(1946), - [anon_sym_ATavailable] = ACTIONS(1948), - [anon_sym_va_arg] = ACTIONS(1946), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [736] = { - [sym_identifier] = ACTIONS(1962), - [aux_sym_preproc_include_token1] = ACTIONS(1964), - [aux_sym_preproc_def_token1] = ACTIONS(1964), - [aux_sym_preproc_if_token1] = ACTIONS(1962), - [aux_sym_preproc_if_token2] = ACTIONS(1962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1962), - [aux_sym_preproc_else_token1] = ACTIONS(1962), - [aux_sym_preproc_elif_token1] = ACTIONS(1962), - [anon_sym_LPAREN2] = ACTIONS(1964), - [anon_sym_BANG] = ACTIONS(1964), - [anon_sym_TILDE] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_CARET] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_typedef] = ACTIONS(1962), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym___attribute] = ACTIONS(1962), - [anon_sym___attribute__] = ACTIONS(1962), - [anon_sym___declspec] = ACTIONS(1962), - [anon_sym___cdecl] = ACTIONS(1962), - [anon_sym___clrcall] = ACTIONS(1962), - [anon_sym___stdcall] = ACTIONS(1962), - [anon_sym___fastcall] = ACTIONS(1962), - [anon_sym___thiscall] = ACTIONS(1962), - [anon_sym___vectorcall] = ACTIONS(1962), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_auto] = ACTIONS(1962), - [anon_sym_register] = ACTIONS(1962), - [anon_sym_inline] = ACTIONS(1962), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_volatile] = ACTIONS(1962), - [anon_sym_restrict] = ACTIONS(1962), - [anon_sym__Atomic] = ACTIONS(1962), - [anon_sym_in] = ACTIONS(1962), - [anon_sym_out] = ACTIONS(1962), - [anon_sym_inout] = ACTIONS(1962), - [anon_sym_bycopy] = ACTIONS(1962), - [anon_sym_byref] = ACTIONS(1962), - [anon_sym_oneway] = ACTIONS(1962), - [anon_sym__Nullable] = ACTIONS(1962), - [anon_sym__Nonnull] = ACTIONS(1962), - [anon_sym__Nullable_result] = ACTIONS(1962), - [anon_sym__Null_unspecified] = ACTIONS(1962), - [anon_sym___autoreleasing] = ACTIONS(1962), - [anon_sym___nullable] = ACTIONS(1962), - [anon_sym___nonnull] = ACTIONS(1962), - [anon_sym___strong] = ACTIONS(1962), - [anon_sym___weak] = ACTIONS(1962), - [anon_sym___bridge] = ACTIONS(1962), - [anon_sym___bridge_transfer] = ACTIONS(1962), - [anon_sym___bridge_retained] = ACTIONS(1962), - [anon_sym___unsafe_unretained] = ACTIONS(1962), - [anon_sym___block] = ACTIONS(1962), - [anon_sym___kindof] = ACTIONS(1962), - [anon_sym___unused] = ACTIONS(1962), - [anon_sym__Complex] = ACTIONS(1962), - [anon_sym___complex] = ACTIONS(1962), - [anon_sym_IBOutlet] = ACTIONS(1962), - [anon_sym_IBInspectable] = ACTIONS(1962), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1962), - [anon_sym_signed] = ACTIONS(1962), - [anon_sym_unsigned] = ACTIONS(1962), - [anon_sym_long] = ACTIONS(1962), - [anon_sym_short] = ACTIONS(1962), - [sym_primitive_type] = ACTIONS(1962), - [anon_sym_enum] = ACTIONS(1962), - [anon_sym_NS_ENUM] = ACTIONS(1962), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1962), - [anon_sym_NS_OPTIONS] = ACTIONS(1962), - [anon_sym_struct] = ACTIONS(1962), - [anon_sym_union] = ACTIONS(1962), - [anon_sym_if] = ACTIONS(1962), - [anon_sym_switch] = ACTIONS(1962), - [anon_sym_case] = ACTIONS(1962), - [anon_sym_default] = ACTIONS(1962), - [anon_sym_while] = ACTIONS(1962), - [anon_sym_do] = ACTIONS(1962), - [anon_sym_for] = ACTIONS(1962), - [anon_sym_return] = ACTIONS(1962), - [anon_sym_break] = ACTIONS(1962), - [anon_sym_continue] = ACTIONS(1962), - [anon_sym_goto] = ACTIONS(1962), - [anon_sym_DASH_DASH] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1964), - [anon_sym_sizeof] = ACTIONS(1962), - [sym_number_literal] = ACTIONS(1964), - [anon_sym_L_SQUOTE] = ACTIONS(1964), - [anon_sym_u_SQUOTE] = ACTIONS(1964), - [anon_sym_U_SQUOTE] = ACTIONS(1964), - [anon_sym_u8_SQUOTE] = ACTIONS(1964), - [anon_sym_SQUOTE] = ACTIONS(1964), - [anon_sym_L_DQUOTE] = ACTIONS(1964), - [anon_sym_u_DQUOTE] = ACTIONS(1964), - [anon_sym_U_DQUOTE] = ACTIONS(1964), - [anon_sym_u8_DQUOTE] = ACTIONS(1964), - [anon_sym_DQUOTE] = ACTIONS(1964), - [sym_true] = ACTIONS(1962), - [sym_false] = ACTIONS(1962), - [sym_null] = ACTIONS(1962), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1964), - [anon_sym_ATimport] = ACTIONS(1964), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1962), - [anon_sym_ATcompatibility_alias] = ACTIONS(1964), - [anon_sym_ATprotocol] = ACTIONS(1964), - [anon_sym_ATclass] = ACTIONS(1964), - [anon_sym_ATinterface] = ACTIONS(1964), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1962), - [sym_method_attribute_specifier] = ACTIONS(1962), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1962), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1962), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1962), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1962), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1962), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1962), - [anon_sym_NS_AVAILABLE] = ACTIONS(1962), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1962), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1962), - [anon_sym_API_AVAILABLE] = ACTIONS(1962), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1962), - [anon_sym_API_DEPRECATED] = ACTIONS(1962), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1962), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1962), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1962), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1962), - [anon_sym___deprecated_msg] = ACTIONS(1962), - [anon_sym___deprecated_enum_msg] = ACTIONS(1962), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1962), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1962), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1962), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1962), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1962), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1962), - [anon_sym_ATimplementation] = ACTIONS(1964), - [anon_sym_typeof] = ACTIONS(1962), - [anon_sym___typeof] = ACTIONS(1962), - [anon_sym___typeof__] = ACTIONS(1962), - [sym_self] = ACTIONS(1962), - [sym_super] = ACTIONS(1962), - [sym_nil] = ACTIONS(1962), - [sym_id] = ACTIONS(1962), - [sym_instancetype] = ACTIONS(1962), - [sym_Class] = ACTIONS(1962), - [sym_SEL] = ACTIONS(1962), - [sym_IMP] = ACTIONS(1962), - [sym_BOOL] = ACTIONS(1962), - [sym_auto] = ACTIONS(1962), - [anon_sym_ATautoreleasepool] = ACTIONS(1964), - [anon_sym_ATsynchronized] = ACTIONS(1964), - [anon_sym_ATtry] = ACTIONS(1964), - [anon_sym_ATthrow] = ACTIONS(1964), - [anon_sym_ATselector] = ACTIONS(1964), - [anon_sym_ATencode] = ACTIONS(1964), - [anon_sym_AT] = ACTIONS(1962), - [sym_YES] = ACTIONS(1962), - [sym_NO] = ACTIONS(1962), - [anon_sym___builtin_available] = ACTIONS(1962), - [anon_sym_ATavailable] = ACTIONS(1964), - [anon_sym_va_arg] = ACTIONS(1962), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [737] = { - [sym_identifier] = ACTIONS(1966), - [aux_sym_preproc_include_token1] = ACTIONS(1968), - [aux_sym_preproc_def_token1] = ACTIONS(1968), - [aux_sym_preproc_if_token1] = ACTIONS(1966), - [aux_sym_preproc_if_token2] = ACTIONS(1966), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1966), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1966), - [aux_sym_preproc_else_token1] = ACTIONS(1966), - [aux_sym_preproc_elif_token1] = ACTIONS(1966), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_BANG] = ACTIONS(1968), - [anon_sym_TILDE] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_PLUS] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1968), - [anon_sym_CARET] = ACTIONS(1968), - [anon_sym_AMP] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_typedef] = ACTIONS(1966), - [anon_sym_extern] = ACTIONS(1966), - [anon_sym___attribute] = ACTIONS(1966), - [anon_sym___attribute__] = ACTIONS(1966), - [anon_sym___declspec] = ACTIONS(1966), - [anon_sym___cdecl] = ACTIONS(1966), - [anon_sym___clrcall] = ACTIONS(1966), - [anon_sym___stdcall] = ACTIONS(1966), - [anon_sym___fastcall] = ACTIONS(1966), - [anon_sym___thiscall] = ACTIONS(1966), - [anon_sym___vectorcall] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1966), - [anon_sym_auto] = ACTIONS(1966), - [anon_sym_register] = ACTIONS(1966), - [anon_sym_inline] = ACTIONS(1966), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1966), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_volatile] = ACTIONS(1966), - [anon_sym_restrict] = ACTIONS(1966), - [anon_sym__Atomic] = ACTIONS(1966), - [anon_sym_in] = ACTIONS(1966), - [anon_sym_out] = ACTIONS(1966), - [anon_sym_inout] = ACTIONS(1966), - [anon_sym_bycopy] = ACTIONS(1966), - [anon_sym_byref] = ACTIONS(1966), - [anon_sym_oneway] = ACTIONS(1966), - [anon_sym__Nullable] = ACTIONS(1966), - [anon_sym__Nonnull] = ACTIONS(1966), - [anon_sym__Nullable_result] = ACTIONS(1966), - [anon_sym__Null_unspecified] = ACTIONS(1966), - [anon_sym___autoreleasing] = ACTIONS(1966), - [anon_sym___nullable] = ACTIONS(1966), - [anon_sym___nonnull] = ACTIONS(1966), - [anon_sym___strong] = ACTIONS(1966), - [anon_sym___weak] = ACTIONS(1966), - [anon_sym___bridge] = ACTIONS(1966), - [anon_sym___bridge_transfer] = ACTIONS(1966), - [anon_sym___bridge_retained] = ACTIONS(1966), - [anon_sym___unsafe_unretained] = ACTIONS(1966), - [anon_sym___block] = ACTIONS(1966), - [anon_sym___kindof] = ACTIONS(1966), - [anon_sym___unused] = ACTIONS(1966), - [anon_sym__Complex] = ACTIONS(1966), - [anon_sym___complex] = ACTIONS(1966), - [anon_sym_IBOutlet] = ACTIONS(1966), - [anon_sym_IBInspectable] = ACTIONS(1966), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1966), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [sym_primitive_type] = ACTIONS(1966), - [anon_sym_enum] = ACTIONS(1966), - [anon_sym_NS_ENUM] = ACTIONS(1966), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1966), - [anon_sym_NS_OPTIONS] = ACTIONS(1966), - [anon_sym_struct] = ACTIONS(1966), - [anon_sym_union] = ACTIONS(1966), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_switch] = ACTIONS(1966), - [anon_sym_case] = ACTIONS(1966), - [anon_sym_default] = ACTIONS(1966), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_do] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_return] = ACTIONS(1966), - [anon_sym_break] = ACTIONS(1966), - [anon_sym_continue] = ACTIONS(1966), - [anon_sym_goto] = ACTIONS(1966), - [anon_sym_DASH_DASH] = ACTIONS(1968), - [anon_sym_PLUS_PLUS] = ACTIONS(1968), - [anon_sym_sizeof] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(1968), - [anon_sym_L_SQUOTE] = ACTIONS(1968), - [anon_sym_u_SQUOTE] = ACTIONS(1968), - [anon_sym_U_SQUOTE] = ACTIONS(1968), - [anon_sym_u8_SQUOTE] = ACTIONS(1968), - [anon_sym_SQUOTE] = ACTIONS(1968), - [anon_sym_L_DQUOTE] = ACTIONS(1968), - [anon_sym_u_DQUOTE] = ACTIONS(1968), - [anon_sym_U_DQUOTE] = ACTIONS(1968), - [anon_sym_u8_DQUOTE] = ACTIONS(1968), - [anon_sym_DQUOTE] = ACTIONS(1968), - [sym_true] = ACTIONS(1966), - [sym_false] = ACTIONS(1966), - [sym_null] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1968), - [anon_sym_ATimport] = ACTIONS(1968), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1966), - [anon_sym_ATcompatibility_alias] = ACTIONS(1968), - [anon_sym_ATprotocol] = ACTIONS(1968), - [anon_sym_ATclass] = ACTIONS(1968), - [anon_sym_ATinterface] = ACTIONS(1968), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1966), - [sym_method_attribute_specifier] = ACTIONS(1966), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1966), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1966), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1966), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1966), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1966), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1966), - [anon_sym_NS_AVAILABLE] = ACTIONS(1966), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1966), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1966), - [anon_sym_API_AVAILABLE] = ACTIONS(1966), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1966), - [anon_sym_API_DEPRECATED] = ACTIONS(1966), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1966), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1966), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1966), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1966), - [anon_sym___deprecated_msg] = ACTIONS(1966), - [anon_sym___deprecated_enum_msg] = ACTIONS(1966), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1966), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1966), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1966), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1966), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1966), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1966), - [anon_sym_ATimplementation] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(1966), - [anon_sym___typeof] = ACTIONS(1966), - [anon_sym___typeof__] = ACTIONS(1966), - [sym_self] = ACTIONS(1966), - [sym_super] = ACTIONS(1966), - [sym_nil] = ACTIONS(1966), - [sym_id] = ACTIONS(1966), - [sym_instancetype] = ACTIONS(1966), - [sym_Class] = ACTIONS(1966), - [sym_SEL] = ACTIONS(1966), - [sym_IMP] = ACTIONS(1966), - [sym_BOOL] = ACTIONS(1966), - [sym_auto] = ACTIONS(1966), - [anon_sym_ATautoreleasepool] = ACTIONS(1968), - [anon_sym_ATsynchronized] = ACTIONS(1968), - [anon_sym_ATtry] = ACTIONS(1968), - [anon_sym_ATthrow] = ACTIONS(1968), - [anon_sym_ATselector] = ACTIONS(1968), - [anon_sym_ATencode] = ACTIONS(1968), - [anon_sym_AT] = ACTIONS(1966), - [sym_YES] = ACTIONS(1966), - [sym_NO] = ACTIONS(1966), - [anon_sym___builtin_available] = ACTIONS(1966), - [anon_sym_ATavailable] = ACTIONS(1968), - [anon_sym_va_arg] = ACTIONS(1966), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [738] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [aux_sym_preproc_else_token1] = ACTIONS(1722), - [aux_sym_preproc_elif_token1] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [739] = { - [sym_identifier] = ACTIONS(1970), - [aux_sym_preproc_include_token1] = ACTIONS(1972), - [aux_sym_preproc_def_token1] = ACTIONS(1972), - [aux_sym_preproc_if_token1] = ACTIONS(1970), - [aux_sym_preproc_if_token2] = ACTIONS(1970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1970), - [aux_sym_preproc_else_token1] = ACTIONS(1970), - [aux_sym_preproc_elif_token1] = ACTIONS(1970), - [anon_sym_LPAREN2] = ACTIONS(1972), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_CARET] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_typedef] = ACTIONS(1970), - [anon_sym_extern] = ACTIONS(1970), - [anon_sym___attribute] = ACTIONS(1970), - [anon_sym___attribute__] = ACTIONS(1970), - [anon_sym___declspec] = ACTIONS(1970), - [anon_sym___cdecl] = ACTIONS(1970), - [anon_sym___clrcall] = ACTIONS(1970), - [anon_sym___stdcall] = ACTIONS(1970), - [anon_sym___fastcall] = ACTIONS(1970), - [anon_sym___thiscall] = ACTIONS(1970), - [anon_sym___vectorcall] = ACTIONS(1970), - [anon_sym_LBRACE] = ACTIONS(1972), - [anon_sym_LBRACK] = ACTIONS(1972), - [anon_sym_static] = ACTIONS(1970), - [anon_sym_auto] = ACTIONS(1970), - [anon_sym_register] = ACTIONS(1970), - [anon_sym_inline] = ACTIONS(1970), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1970), - [anon_sym_const] = ACTIONS(1970), - [anon_sym_volatile] = ACTIONS(1970), - [anon_sym_restrict] = ACTIONS(1970), - [anon_sym__Atomic] = ACTIONS(1970), - [anon_sym_in] = ACTIONS(1970), - [anon_sym_out] = ACTIONS(1970), - [anon_sym_inout] = ACTIONS(1970), - [anon_sym_bycopy] = ACTIONS(1970), - [anon_sym_byref] = ACTIONS(1970), - [anon_sym_oneway] = ACTIONS(1970), - [anon_sym__Nullable] = ACTIONS(1970), - [anon_sym__Nonnull] = ACTIONS(1970), - [anon_sym__Nullable_result] = ACTIONS(1970), - [anon_sym__Null_unspecified] = ACTIONS(1970), - [anon_sym___autoreleasing] = ACTIONS(1970), - [anon_sym___nullable] = ACTIONS(1970), - [anon_sym___nonnull] = ACTIONS(1970), - [anon_sym___strong] = ACTIONS(1970), - [anon_sym___weak] = ACTIONS(1970), - [anon_sym___bridge] = ACTIONS(1970), - [anon_sym___bridge_transfer] = ACTIONS(1970), - [anon_sym___bridge_retained] = ACTIONS(1970), - [anon_sym___unsafe_unretained] = ACTIONS(1970), - [anon_sym___block] = ACTIONS(1970), - [anon_sym___kindof] = ACTIONS(1970), - [anon_sym___unused] = ACTIONS(1970), - [anon_sym__Complex] = ACTIONS(1970), - [anon_sym___complex] = ACTIONS(1970), - [anon_sym_IBOutlet] = ACTIONS(1970), - [anon_sym_IBInspectable] = ACTIONS(1970), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1970), - [anon_sym_signed] = ACTIONS(1970), - [anon_sym_unsigned] = ACTIONS(1970), - [anon_sym_long] = ACTIONS(1970), - [anon_sym_short] = ACTIONS(1970), - [sym_primitive_type] = ACTIONS(1970), - [anon_sym_enum] = ACTIONS(1970), - [anon_sym_NS_ENUM] = ACTIONS(1970), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1970), - [anon_sym_NS_OPTIONS] = ACTIONS(1970), - [anon_sym_struct] = ACTIONS(1970), - [anon_sym_union] = ACTIONS(1970), - [anon_sym_if] = ACTIONS(1970), - [anon_sym_switch] = ACTIONS(1970), - [anon_sym_case] = ACTIONS(1970), - [anon_sym_default] = ACTIONS(1970), - [anon_sym_while] = ACTIONS(1970), - [anon_sym_do] = ACTIONS(1970), - [anon_sym_for] = ACTIONS(1970), - [anon_sym_return] = ACTIONS(1970), - [anon_sym_break] = ACTIONS(1970), - [anon_sym_continue] = ACTIONS(1970), - [anon_sym_goto] = ACTIONS(1970), - [anon_sym_DASH_DASH] = ACTIONS(1972), - [anon_sym_PLUS_PLUS] = ACTIONS(1972), - [anon_sym_sizeof] = ACTIONS(1970), - [sym_number_literal] = ACTIONS(1972), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1972), - [anon_sym_u_DQUOTE] = ACTIONS(1972), - [anon_sym_U_DQUOTE] = ACTIONS(1972), - [anon_sym_u8_DQUOTE] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), - [sym_true] = ACTIONS(1970), - [sym_false] = ACTIONS(1970), - [sym_null] = ACTIONS(1970), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1972), - [anon_sym_ATimport] = ACTIONS(1972), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1970), - [anon_sym_ATcompatibility_alias] = ACTIONS(1972), - [anon_sym_ATprotocol] = ACTIONS(1972), - [anon_sym_ATclass] = ACTIONS(1972), - [anon_sym_ATinterface] = ACTIONS(1972), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1970), - [sym_method_attribute_specifier] = ACTIONS(1970), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1970), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1970), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1970), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1970), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1970), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1970), - [anon_sym_NS_AVAILABLE] = ACTIONS(1970), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1970), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1970), - [anon_sym_API_AVAILABLE] = ACTIONS(1970), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1970), - [anon_sym_API_DEPRECATED] = ACTIONS(1970), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1970), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1970), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1970), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1970), - [anon_sym___deprecated_msg] = ACTIONS(1970), - [anon_sym___deprecated_enum_msg] = ACTIONS(1970), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1970), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1970), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1970), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1970), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1970), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1970), - [anon_sym_ATimplementation] = ACTIONS(1972), - [anon_sym_typeof] = ACTIONS(1970), - [anon_sym___typeof] = ACTIONS(1970), - [anon_sym___typeof__] = ACTIONS(1970), - [sym_self] = ACTIONS(1970), - [sym_super] = ACTIONS(1970), - [sym_nil] = ACTIONS(1970), - [sym_id] = ACTIONS(1970), - [sym_instancetype] = ACTIONS(1970), - [sym_Class] = ACTIONS(1970), - [sym_SEL] = ACTIONS(1970), - [sym_IMP] = ACTIONS(1970), - [sym_BOOL] = ACTIONS(1970), - [sym_auto] = ACTIONS(1970), - [anon_sym_ATautoreleasepool] = ACTIONS(1972), - [anon_sym_ATsynchronized] = ACTIONS(1972), - [anon_sym_ATtry] = ACTIONS(1972), - [anon_sym_ATthrow] = ACTIONS(1972), - [anon_sym_ATselector] = ACTIONS(1972), - [anon_sym_ATencode] = ACTIONS(1972), - [anon_sym_AT] = ACTIONS(1970), - [sym_YES] = ACTIONS(1970), - [sym_NO] = ACTIONS(1970), - [anon_sym___builtin_available] = ACTIONS(1970), - [anon_sym_ATavailable] = ACTIONS(1972), - [anon_sym_va_arg] = ACTIONS(1970), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [740] = { - [sym_identifier] = ACTIONS(1974), - [aux_sym_preproc_include_token1] = ACTIONS(1976), - [aux_sym_preproc_def_token1] = ACTIONS(1976), - [aux_sym_preproc_if_token1] = ACTIONS(1974), - [aux_sym_preproc_if_token2] = ACTIONS(1974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1974), - [aux_sym_preproc_else_token1] = ACTIONS(1974), - [aux_sym_preproc_elif_token1] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1976), - [anon_sym_BANG] = ACTIONS(1976), - [anon_sym_TILDE] = ACTIONS(1976), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_CARET] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym_typedef] = ACTIONS(1974), - [anon_sym_extern] = ACTIONS(1974), - [anon_sym___attribute] = ACTIONS(1974), - [anon_sym___attribute__] = ACTIONS(1974), - [anon_sym___declspec] = ACTIONS(1974), - [anon_sym___cdecl] = ACTIONS(1974), - [anon_sym___clrcall] = ACTIONS(1974), - [anon_sym___stdcall] = ACTIONS(1974), - [anon_sym___fastcall] = ACTIONS(1974), - [anon_sym___thiscall] = ACTIONS(1974), - [anon_sym___vectorcall] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1976), - [anon_sym_LBRACK] = ACTIONS(1976), - [anon_sym_static] = ACTIONS(1974), - [anon_sym_auto] = ACTIONS(1974), - [anon_sym_register] = ACTIONS(1974), - [anon_sym_inline] = ACTIONS(1974), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1974), - [anon_sym_const] = ACTIONS(1974), - [anon_sym_volatile] = ACTIONS(1974), - [anon_sym_restrict] = ACTIONS(1974), - [anon_sym__Atomic] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1974), - [anon_sym_out] = ACTIONS(1974), - [anon_sym_inout] = ACTIONS(1974), - [anon_sym_bycopy] = ACTIONS(1974), - [anon_sym_byref] = ACTIONS(1974), - [anon_sym_oneway] = ACTIONS(1974), - [anon_sym__Nullable] = ACTIONS(1974), - [anon_sym__Nonnull] = ACTIONS(1974), - [anon_sym__Nullable_result] = ACTIONS(1974), - [anon_sym__Null_unspecified] = ACTIONS(1974), - [anon_sym___autoreleasing] = ACTIONS(1974), - [anon_sym___nullable] = ACTIONS(1974), - [anon_sym___nonnull] = ACTIONS(1974), - [anon_sym___strong] = ACTIONS(1974), - [anon_sym___weak] = ACTIONS(1974), - [anon_sym___bridge] = ACTIONS(1974), - [anon_sym___bridge_transfer] = ACTIONS(1974), - [anon_sym___bridge_retained] = ACTIONS(1974), - [anon_sym___unsafe_unretained] = ACTIONS(1974), - [anon_sym___block] = ACTIONS(1974), - [anon_sym___kindof] = ACTIONS(1974), - [anon_sym___unused] = ACTIONS(1974), - [anon_sym__Complex] = ACTIONS(1974), - [anon_sym___complex] = ACTIONS(1974), - [anon_sym_IBOutlet] = ACTIONS(1974), - [anon_sym_IBInspectable] = ACTIONS(1974), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1974), - [anon_sym_signed] = ACTIONS(1974), - [anon_sym_unsigned] = ACTIONS(1974), - [anon_sym_long] = ACTIONS(1974), - [anon_sym_short] = ACTIONS(1974), - [sym_primitive_type] = ACTIONS(1974), - [anon_sym_enum] = ACTIONS(1974), - [anon_sym_NS_ENUM] = ACTIONS(1974), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1974), - [anon_sym_NS_OPTIONS] = ACTIONS(1974), - [anon_sym_struct] = ACTIONS(1974), - [anon_sym_union] = ACTIONS(1974), - [anon_sym_if] = ACTIONS(1974), - [anon_sym_switch] = ACTIONS(1974), - [anon_sym_case] = ACTIONS(1974), - [anon_sym_default] = ACTIONS(1974), - [anon_sym_while] = ACTIONS(1974), - [anon_sym_do] = ACTIONS(1974), - [anon_sym_for] = ACTIONS(1974), - [anon_sym_return] = ACTIONS(1974), - [anon_sym_break] = ACTIONS(1974), - [anon_sym_continue] = ACTIONS(1974), - [anon_sym_goto] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1976), - [anon_sym_PLUS_PLUS] = ACTIONS(1976), - [anon_sym_sizeof] = ACTIONS(1974), - [sym_number_literal] = ACTIONS(1976), - [anon_sym_L_SQUOTE] = ACTIONS(1976), - [anon_sym_u_SQUOTE] = ACTIONS(1976), - [anon_sym_U_SQUOTE] = ACTIONS(1976), - [anon_sym_u8_SQUOTE] = ACTIONS(1976), - [anon_sym_SQUOTE] = ACTIONS(1976), - [anon_sym_L_DQUOTE] = ACTIONS(1976), - [anon_sym_u_DQUOTE] = ACTIONS(1976), - [anon_sym_U_DQUOTE] = ACTIONS(1976), - [anon_sym_u8_DQUOTE] = ACTIONS(1976), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [sym_null] = ACTIONS(1974), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1976), - [anon_sym_ATimport] = ACTIONS(1976), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1974), - [anon_sym_ATcompatibility_alias] = ACTIONS(1976), - [anon_sym_ATprotocol] = ACTIONS(1976), - [anon_sym_ATclass] = ACTIONS(1976), - [anon_sym_ATinterface] = ACTIONS(1976), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1974), - [sym_method_attribute_specifier] = ACTIONS(1974), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1974), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1974), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1974), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1974), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1974), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1974), - [anon_sym_NS_AVAILABLE] = ACTIONS(1974), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1974), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1974), - [anon_sym_API_AVAILABLE] = ACTIONS(1974), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1974), - [anon_sym_API_DEPRECATED] = ACTIONS(1974), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1974), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1974), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1974), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1974), - [anon_sym___deprecated_msg] = ACTIONS(1974), - [anon_sym___deprecated_enum_msg] = ACTIONS(1974), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1974), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1974), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1974), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1974), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1974), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1974), - [anon_sym_ATimplementation] = ACTIONS(1976), - [anon_sym_typeof] = ACTIONS(1974), - [anon_sym___typeof] = ACTIONS(1974), - [anon_sym___typeof__] = ACTIONS(1974), - [sym_self] = ACTIONS(1974), - [sym_super] = ACTIONS(1974), - [sym_nil] = ACTIONS(1974), - [sym_id] = ACTIONS(1974), - [sym_instancetype] = ACTIONS(1974), - [sym_Class] = ACTIONS(1974), - [sym_SEL] = ACTIONS(1974), - [sym_IMP] = ACTIONS(1974), - [sym_BOOL] = ACTIONS(1974), - [sym_auto] = ACTIONS(1974), - [anon_sym_ATautoreleasepool] = ACTIONS(1976), - [anon_sym_ATsynchronized] = ACTIONS(1976), - [anon_sym_ATtry] = ACTIONS(1976), - [anon_sym_ATthrow] = ACTIONS(1976), - [anon_sym_ATselector] = ACTIONS(1976), - [anon_sym_ATencode] = ACTIONS(1976), - [anon_sym_AT] = ACTIONS(1974), - [sym_YES] = ACTIONS(1974), - [sym_NO] = ACTIONS(1974), - [anon_sym___builtin_available] = ACTIONS(1974), - [anon_sym_ATavailable] = ACTIONS(1976), - [anon_sym_va_arg] = ACTIONS(1974), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [741] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [aux_sym_preproc_else_token1] = ACTIONS(1722), - [aux_sym_preproc_elif_token1] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [742] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [aux_sym_preproc_else_token1] = ACTIONS(1722), - [aux_sym_preproc_elif_token1] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [743] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [aux_sym_preproc_else_token1] = ACTIONS(1722), - [aux_sym_preproc_elif_token1] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [744] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [aux_sym_preproc_else_token1] = ACTIONS(1722), - [aux_sym_preproc_elif_token1] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [745] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [aux_sym_preproc_else_token1] = ACTIONS(1722), - [aux_sym_preproc_elif_token1] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [746] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [aux_sym_preproc_else_token1] = ACTIONS(1722), - [aux_sym_preproc_elif_token1] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [747] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [aux_sym_preproc_else_token1] = ACTIONS(1722), - [aux_sym_preproc_elif_token1] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [748] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [aux_sym_preproc_else_token1] = ACTIONS(1722), - [aux_sym_preproc_elif_token1] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [749] = { - [sym_identifier] = ACTIONS(1978), - [aux_sym_preproc_include_token1] = ACTIONS(1980), - [aux_sym_preproc_def_token1] = ACTIONS(1980), - [aux_sym_preproc_if_token1] = ACTIONS(1978), - [aux_sym_preproc_if_token2] = ACTIONS(1978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1978), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1978), - [aux_sym_preproc_else_token1] = ACTIONS(1978), - [aux_sym_preproc_elif_token1] = ACTIONS(1978), - [anon_sym_LPAREN2] = ACTIONS(1980), - [anon_sym_BANG] = ACTIONS(1980), - [anon_sym_TILDE] = ACTIONS(1980), - [anon_sym_DASH] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(1978), - [anon_sym_STAR] = ACTIONS(1980), - [anon_sym_CARET] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_typedef] = ACTIONS(1978), - [anon_sym_extern] = ACTIONS(1978), - [anon_sym___attribute] = ACTIONS(1978), - [anon_sym___attribute__] = ACTIONS(1978), - [anon_sym___declspec] = ACTIONS(1978), - [anon_sym___cdecl] = ACTIONS(1978), - [anon_sym___clrcall] = ACTIONS(1978), - [anon_sym___stdcall] = ACTIONS(1978), - [anon_sym___fastcall] = ACTIONS(1978), - [anon_sym___thiscall] = ACTIONS(1978), - [anon_sym___vectorcall] = ACTIONS(1978), - [anon_sym_LBRACE] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1980), - [anon_sym_static] = ACTIONS(1978), - [anon_sym_auto] = ACTIONS(1978), - [anon_sym_register] = ACTIONS(1978), - [anon_sym_inline] = ACTIONS(1978), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1978), - [anon_sym_const] = ACTIONS(1978), - [anon_sym_volatile] = ACTIONS(1978), - [anon_sym_restrict] = ACTIONS(1978), - [anon_sym__Atomic] = ACTIONS(1978), - [anon_sym_in] = ACTIONS(1978), - [anon_sym_out] = ACTIONS(1978), - [anon_sym_inout] = ACTIONS(1978), - [anon_sym_bycopy] = ACTIONS(1978), - [anon_sym_byref] = ACTIONS(1978), - [anon_sym_oneway] = ACTIONS(1978), - [anon_sym__Nullable] = ACTIONS(1978), - [anon_sym__Nonnull] = ACTIONS(1978), - [anon_sym__Nullable_result] = ACTIONS(1978), - [anon_sym__Null_unspecified] = ACTIONS(1978), - [anon_sym___autoreleasing] = ACTIONS(1978), - [anon_sym___nullable] = ACTIONS(1978), - [anon_sym___nonnull] = ACTIONS(1978), - [anon_sym___strong] = ACTIONS(1978), - [anon_sym___weak] = ACTIONS(1978), - [anon_sym___bridge] = ACTIONS(1978), - [anon_sym___bridge_transfer] = ACTIONS(1978), - [anon_sym___bridge_retained] = ACTIONS(1978), - [anon_sym___unsafe_unretained] = ACTIONS(1978), - [anon_sym___block] = ACTIONS(1978), - [anon_sym___kindof] = ACTIONS(1978), - [anon_sym___unused] = ACTIONS(1978), - [anon_sym__Complex] = ACTIONS(1978), - [anon_sym___complex] = ACTIONS(1978), - [anon_sym_IBOutlet] = ACTIONS(1978), - [anon_sym_IBInspectable] = ACTIONS(1978), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1978), - [anon_sym_signed] = ACTIONS(1978), - [anon_sym_unsigned] = ACTIONS(1978), - [anon_sym_long] = ACTIONS(1978), - [anon_sym_short] = ACTIONS(1978), - [sym_primitive_type] = ACTIONS(1978), - [anon_sym_enum] = ACTIONS(1978), - [anon_sym_NS_ENUM] = ACTIONS(1978), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1978), - [anon_sym_NS_OPTIONS] = ACTIONS(1978), - [anon_sym_struct] = ACTIONS(1978), - [anon_sym_union] = ACTIONS(1978), - [anon_sym_if] = ACTIONS(1978), - [anon_sym_switch] = ACTIONS(1978), - [anon_sym_case] = ACTIONS(1978), - [anon_sym_default] = ACTIONS(1978), - [anon_sym_while] = ACTIONS(1978), - [anon_sym_do] = ACTIONS(1978), - [anon_sym_for] = ACTIONS(1978), - [anon_sym_return] = ACTIONS(1978), - [anon_sym_break] = ACTIONS(1978), - [anon_sym_continue] = ACTIONS(1978), - [anon_sym_goto] = ACTIONS(1978), - [anon_sym_DASH_DASH] = ACTIONS(1980), - [anon_sym_PLUS_PLUS] = ACTIONS(1980), - [anon_sym_sizeof] = ACTIONS(1978), - [sym_number_literal] = ACTIONS(1980), - [anon_sym_L_SQUOTE] = ACTIONS(1980), - [anon_sym_u_SQUOTE] = ACTIONS(1980), - [anon_sym_U_SQUOTE] = ACTIONS(1980), - [anon_sym_u8_SQUOTE] = ACTIONS(1980), - [anon_sym_SQUOTE] = ACTIONS(1980), - [anon_sym_L_DQUOTE] = ACTIONS(1980), - [anon_sym_u_DQUOTE] = ACTIONS(1980), - [anon_sym_U_DQUOTE] = ACTIONS(1980), - [anon_sym_u8_DQUOTE] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(1980), - [sym_true] = ACTIONS(1978), - [sym_false] = ACTIONS(1978), - [sym_null] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1980), - [anon_sym_ATimport] = ACTIONS(1980), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1978), - [anon_sym_ATcompatibility_alias] = ACTIONS(1980), - [anon_sym_ATprotocol] = ACTIONS(1980), - [anon_sym_ATclass] = ACTIONS(1980), - [anon_sym_ATinterface] = ACTIONS(1980), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1978), - [sym_method_attribute_specifier] = ACTIONS(1978), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1978), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1978), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1978), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1978), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1978), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1978), - [anon_sym_NS_AVAILABLE] = ACTIONS(1978), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1978), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1978), - [anon_sym_API_AVAILABLE] = ACTIONS(1978), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1978), - [anon_sym_API_DEPRECATED] = ACTIONS(1978), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1978), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1978), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1978), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1978), - [anon_sym___deprecated_msg] = ACTIONS(1978), - [anon_sym___deprecated_enum_msg] = ACTIONS(1978), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1978), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1978), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1978), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1978), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1978), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1978), - [anon_sym_ATimplementation] = ACTIONS(1980), - [anon_sym_typeof] = ACTIONS(1978), - [anon_sym___typeof] = ACTIONS(1978), - [anon_sym___typeof__] = ACTIONS(1978), - [sym_self] = ACTIONS(1978), - [sym_super] = ACTIONS(1978), - [sym_nil] = ACTIONS(1978), - [sym_id] = ACTIONS(1978), - [sym_instancetype] = ACTIONS(1978), - [sym_Class] = ACTIONS(1978), - [sym_SEL] = ACTIONS(1978), - [sym_IMP] = ACTIONS(1978), - [sym_BOOL] = ACTIONS(1978), - [sym_auto] = ACTIONS(1978), - [anon_sym_ATautoreleasepool] = ACTIONS(1980), - [anon_sym_ATsynchronized] = ACTIONS(1980), - [anon_sym_ATtry] = ACTIONS(1980), - [anon_sym_ATthrow] = ACTIONS(1980), - [anon_sym_ATselector] = ACTIONS(1980), - [anon_sym_ATencode] = ACTIONS(1980), - [anon_sym_AT] = ACTIONS(1978), - [sym_YES] = ACTIONS(1978), - [sym_NO] = ACTIONS(1978), - [anon_sym___builtin_available] = ACTIONS(1978), - [anon_sym_ATavailable] = ACTIONS(1980), - [anon_sym_va_arg] = ACTIONS(1978), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [750] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [aux_sym_preproc_else_token1] = ACTIONS(1722), - [aux_sym_preproc_elif_token1] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [751] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [aux_sym_preproc_else_token1] = ACTIONS(1722), - [aux_sym_preproc_elif_token1] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [752] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [aux_sym_preproc_else_token1] = ACTIONS(1722), - [aux_sym_preproc_elif_token1] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [753] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [aux_sym_preproc_else_token1] = ACTIONS(1866), - [aux_sym_preproc_elif_token1] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [754] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [aux_sym_preproc_else_token1] = ACTIONS(1866), - [aux_sym_preproc_elif_token1] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [755] = { - [sym_identifier] = ACTIONS(1982), - [aux_sym_preproc_include_token1] = ACTIONS(1984), - [aux_sym_preproc_def_token1] = ACTIONS(1984), - [aux_sym_preproc_if_token1] = ACTIONS(1982), - [aux_sym_preproc_if_token2] = ACTIONS(1982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1982), - [aux_sym_preproc_else_token1] = ACTIONS(1982), - [aux_sym_preproc_elif_token1] = ACTIONS(1982), - [anon_sym_LPAREN2] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_TILDE] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_PLUS] = ACTIONS(1982), - [anon_sym_STAR] = ACTIONS(1984), - [anon_sym_CARET] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_typedef] = ACTIONS(1982), - [anon_sym_extern] = ACTIONS(1982), - [anon_sym___attribute] = ACTIONS(1982), - [anon_sym___attribute__] = ACTIONS(1982), - [anon_sym___declspec] = ACTIONS(1982), - [anon_sym___cdecl] = ACTIONS(1982), - [anon_sym___clrcall] = ACTIONS(1982), - [anon_sym___stdcall] = ACTIONS(1982), - [anon_sym___fastcall] = ACTIONS(1982), - [anon_sym___thiscall] = ACTIONS(1982), - [anon_sym___vectorcall] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1982), - [anon_sym_auto] = ACTIONS(1982), - [anon_sym_register] = ACTIONS(1982), - [anon_sym_inline] = ACTIONS(1982), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1982), - [anon_sym_const] = ACTIONS(1982), - [anon_sym_volatile] = ACTIONS(1982), - [anon_sym_restrict] = ACTIONS(1982), - [anon_sym__Atomic] = ACTIONS(1982), - [anon_sym_in] = ACTIONS(1982), - [anon_sym_out] = ACTIONS(1982), - [anon_sym_inout] = ACTIONS(1982), - [anon_sym_bycopy] = ACTIONS(1982), - [anon_sym_byref] = ACTIONS(1982), - [anon_sym_oneway] = ACTIONS(1982), - [anon_sym__Nullable] = ACTIONS(1982), - [anon_sym__Nonnull] = ACTIONS(1982), - [anon_sym__Nullable_result] = ACTIONS(1982), - [anon_sym__Null_unspecified] = ACTIONS(1982), - [anon_sym___autoreleasing] = ACTIONS(1982), - [anon_sym___nullable] = ACTIONS(1982), - [anon_sym___nonnull] = ACTIONS(1982), - [anon_sym___strong] = ACTIONS(1982), - [anon_sym___weak] = ACTIONS(1982), - [anon_sym___bridge] = ACTIONS(1982), - [anon_sym___bridge_transfer] = ACTIONS(1982), - [anon_sym___bridge_retained] = ACTIONS(1982), - [anon_sym___unsafe_unretained] = ACTIONS(1982), - [anon_sym___block] = ACTIONS(1982), - [anon_sym___kindof] = ACTIONS(1982), - [anon_sym___unused] = ACTIONS(1982), - [anon_sym__Complex] = ACTIONS(1982), - [anon_sym___complex] = ACTIONS(1982), - [anon_sym_IBOutlet] = ACTIONS(1982), - [anon_sym_IBInspectable] = ACTIONS(1982), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1982), - [anon_sym_signed] = ACTIONS(1982), - [anon_sym_unsigned] = ACTIONS(1982), - [anon_sym_long] = ACTIONS(1982), - [anon_sym_short] = ACTIONS(1982), - [sym_primitive_type] = ACTIONS(1982), - [anon_sym_enum] = ACTIONS(1982), - [anon_sym_NS_ENUM] = ACTIONS(1982), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1982), - [anon_sym_NS_OPTIONS] = ACTIONS(1982), - [anon_sym_struct] = ACTIONS(1982), - [anon_sym_union] = ACTIONS(1982), - [anon_sym_if] = ACTIONS(1982), - [anon_sym_switch] = ACTIONS(1982), - [anon_sym_case] = ACTIONS(1982), - [anon_sym_default] = ACTIONS(1982), - [anon_sym_while] = ACTIONS(1982), - [anon_sym_do] = ACTIONS(1982), - [anon_sym_for] = ACTIONS(1982), - [anon_sym_return] = ACTIONS(1982), - [anon_sym_break] = ACTIONS(1982), - [anon_sym_continue] = ACTIONS(1982), - [anon_sym_goto] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1982), - [sym_number_literal] = ACTIONS(1984), - [anon_sym_L_SQUOTE] = ACTIONS(1984), - [anon_sym_u_SQUOTE] = ACTIONS(1984), - [anon_sym_U_SQUOTE] = ACTIONS(1984), - [anon_sym_u8_SQUOTE] = ACTIONS(1984), - [anon_sym_SQUOTE] = ACTIONS(1984), - [anon_sym_L_DQUOTE] = ACTIONS(1984), - [anon_sym_u_DQUOTE] = ACTIONS(1984), - [anon_sym_U_DQUOTE] = ACTIONS(1984), - [anon_sym_u8_DQUOTE] = ACTIONS(1984), - [anon_sym_DQUOTE] = ACTIONS(1984), - [sym_true] = ACTIONS(1982), - [sym_false] = ACTIONS(1982), - [sym_null] = ACTIONS(1982), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1984), - [anon_sym_ATimport] = ACTIONS(1984), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1982), - [anon_sym_ATcompatibility_alias] = ACTIONS(1984), - [anon_sym_ATprotocol] = ACTIONS(1984), - [anon_sym_ATclass] = ACTIONS(1984), - [anon_sym_ATinterface] = ACTIONS(1984), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1982), - [sym_method_attribute_specifier] = ACTIONS(1982), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1982), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1982), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1982), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1982), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1982), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1982), - [anon_sym_NS_AVAILABLE] = ACTIONS(1982), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1982), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1982), - [anon_sym_API_AVAILABLE] = ACTIONS(1982), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1982), - [anon_sym_API_DEPRECATED] = ACTIONS(1982), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1982), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1982), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1982), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1982), - [anon_sym___deprecated_msg] = ACTIONS(1982), - [anon_sym___deprecated_enum_msg] = ACTIONS(1982), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1982), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1982), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1982), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1982), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1982), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1982), - [anon_sym_ATimplementation] = ACTIONS(1984), - [anon_sym_typeof] = ACTIONS(1982), - [anon_sym___typeof] = ACTIONS(1982), - [anon_sym___typeof__] = ACTIONS(1982), - [sym_self] = ACTIONS(1982), - [sym_super] = ACTIONS(1982), - [sym_nil] = ACTIONS(1982), - [sym_id] = ACTIONS(1982), - [sym_instancetype] = ACTIONS(1982), - [sym_Class] = ACTIONS(1982), - [sym_SEL] = ACTIONS(1982), - [sym_IMP] = ACTIONS(1982), - [sym_BOOL] = ACTIONS(1982), - [sym_auto] = ACTIONS(1982), - [anon_sym_ATautoreleasepool] = ACTIONS(1984), - [anon_sym_ATsynchronized] = ACTIONS(1984), - [anon_sym_ATtry] = ACTIONS(1984), - [anon_sym_ATthrow] = ACTIONS(1984), - [anon_sym_ATselector] = ACTIONS(1984), - [anon_sym_ATencode] = ACTIONS(1984), - [anon_sym_AT] = ACTIONS(1982), - [sym_YES] = ACTIONS(1982), - [sym_NO] = ACTIONS(1982), - [anon_sym___builtin_available] = ACTIONS(1982), - [anon_sym_ATavailable] = ACTIONS(1984), - [anon_sym_va_arg] = ACTIONS(1982), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [756] = { - [sym_identifier] = ACTIONS(1986), - [aux_sym_preproc_include_token1] = ACTIONS(1988), - [aux_sym_preproc_def_token1] = ACTIONS(1988), - [aux_sym_preproc_if_token1] = ACTIONS(1986), - [aux_sym_preproc_if_token2] = ACTIONS(1986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1986), - [aux_sym_preproc_else_token1] = ACTIONS(1986), - [aux_sym_preproc_elif_token1] = ACTIONS(1986), - [anon_sym_LPAREN2] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1988), - [anon_sym_TILDE] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_CARET] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1988), - [anon_sym_typedef] = ACTIONS(1986), - [anon_sym_extern] = ACTIONS(1986), - [anon_sym___attribute] = ACTIONS(1986), - [anon_sym___attribute__] = ACTIONS(1986), - [anon_sym___declspec] = ACTIONS(1986), - [anon_sym___cdecl] = ACTIONS(1986), - [anon_sym___clrcall] = ACTIONS(1986), - [anon_sym___stdcall] = ACTIONS(1986), - [anon_sym___fastcall] = ACTIONS(1986), - [anon_sym___thiscall] = ACTIONS(1986), - [anon_sym___vectorcall] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_LBRACK] = ACTIONS(1988), - [anon_sym_static] = ACTIONS(1986), - [anon_sym_auto] = ACTIONS(1986), - [anon_sym_register] = ACTIONS(1986), - [anon_sym_inline] = ACTIONS(1986), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1986), - [anon_sym_const] = ACTIONS(1986), - [anon_sym_volatile] = ACTIONS(1986), - [anon_sym_restrict] = ACTIONS(1986), - [anon_sym__Atomic] = ACTIONS(1986), - [anon_sym_in] = ACTIONS(1986), - [anon_sym_out] = ACTIONS(1986), - [anon_sym_inout] = ACTIONS(1986), - [anon_sym_bycopy] = ACTIONS(1986), - [anon_sym_byref] = ACTIONS(1986), - [anon_sym_oneway] = ACTIONS(1986), - [anon_sym__Nullable] = ACTIONS(1986), - [anon_sym__Nonnull] = ACTIONS(1986), - [anon_sym__Nullable_result] = ACTIONS(1986), - [anon_sym__Null_unspecified] = ACTIONS(1986), - [anon_sym___autoreleasing] = ACTIONS(1986), - [anon_sym___nullable] = ACTIONS(1986), - [anon_sym___nonnull] = ACTIONS(1986), - [anon_sym___strong] = ACTIONS(1986), - [anon_sym___weak] = ACTIONS(1986), - [anon_sym___bridge] = ACTIONS(1986), - [anon_sym___bridge_transfer] = ACTIONS(1986), - [anon_sym___bridge_retained] = ACTIONS(1986), - [anon_sym___unsafe_unretained] = ACTIONS(1986), - [anon_sym___block] = ACTIONS(1986), - [anon_sym___kindof] = ACTIONS(1986), - [anon_sym___unused] = ACTIONS(1986), - [anon_sym__Complex] = ACTIONS(1986), - [anon_sym___complex] = ACTIONS(1986), - [anon_sym_IBOutlet] = ACTIONS(1986), - [anon_sym_IBInspectable] = ACTIONS(1986), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1986), - [anon_sym_signed] = ACTIONS(1986), - [anon_sym_unsigned] = ACTIONS(1986), - [anon_sym_long] = ACTIONS(1986), - [anon_sym_short] = ACTIONS(1986), - [sym_primitive_type] = ACTIONS(1986), - [anon_sym_enum] = ACTIONS(1986), - [anon_sym_NS_ENUM] = ACTIONS(1986), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1986), - [anon_sym_NS_OPTIONS] = ACTIONS(1986), - [anon_sym_struct] = ACTIONS(1986), - [anon_sym_union] = ACTIONS(1986), - [anon_sym_if] = ACTIONS(1986), - [anon_sym_switch] = ACTIONS(1986), - [anon_sym_case] = ACTIONS(1986), - [anon_sym_default] = ACTIONS(1986), - [anon_sym_while] = ACTIONS(1986), - [anon_sym_do] = ACTIONS(1986), - [anon_sym_for] = ACTIONS(1986), - [anon_sym_return] = ACTIONS(1986), - [anon_sym_break] = ACTIONS(1986), - [anon_sym_continue] = ACTIONS(1986), - [anon_sym_goto] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1988), - [anon_sym_PLUS_PLUS] = ACTIONS(1988), - [anon_sym_sizeof] = ACTIONS(1986), - [sym_number_literal] = ACTIONS(1988), - [anon_sym_L_SQUOTE] = ACTIONS(1988), - [anon_sym_u_SQUOTE] = ACTIONS(1988), - [anon_sym_U_SQUOTE] = ACTIONS(1988), - [anon_sym_u8_SQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1988), - [anon_sym_L_DQUOTE] = ACTIONS(1988), - [anon_sym_u_DQUOTE] = ACTIONS(1988), - [anon_sym_U_DQUOTE] = ACTIONS(1988), - [anon_sym_u8_DQUOTE] = ACTIONS(1988), - [anon_sym_DQUOTE] = ACTIONS(1988), - [sym_true] = ACTIONS(1986), - [sym_false] = ACTIONS(1986), - [sym_null] = ACTIONS(1986), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1988), - [anon_sym_ATimport] = ACTIONS(1988), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1986), - [anon_sym_ATcompatibility_alias] = ACTIONS(1988), - [anon_sym_ATprotocol] = ACTIONS(1988), - [anon_sym_ATclass] = ACTIONS(1988), - [anon_sym_ATinterface] = ACTIONS(1988), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1986), - [sym_method_attribute_specifier] = ACTIONS(1986), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1986), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1986), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1986), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1986), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1986), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1986), - [anon_sym_NS_AVAILABLE] = ACTIONS(1986), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1986), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1986), - [anon_sym_API_AVAILABLE] = ACTIONS(1986), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1986), - [anon_sym_API_DEPRECATED] = ACTIONS(1986), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1986), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1986), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1986), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1986), - [anon_sym___deprecated_msg] = ACTIONS(1986), - [anon_sym___deprecated_enum_msg] = ACTIONS(1986), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1986), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1986), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1986), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1986), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1986), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1986), - [anon_sym_ATimplementation] = ACTIONS(1988), - [anon_sym_typeof] = ACTIONS(1986), - [anon_sym___typeof] = ACTIONS(1986), - [anon_sym___typeof__] = ACTIONS(1986), - [sym_self] = ACTIONS(1986), - [sym_super] = ACTIONS(1986), - [sym_nil] = ACTIONS(1986), - [sym_id] = ACTIONS(1986), - [sym_instancetype] = ACTIONS(1986), - [sym_Class] = ACTIONS(1986), - [sym_SEL] = ACTIONS(1986), - [sym_IMP] = ACTIONS(1986), - [sym_BOOL] = ACTIONS(1986), - [sym_auto] = ACTIONS(1986), - [anon_sym_ATautoreleasepool] = ACTIONS(1988), - [anon_sym_ATsynchronized] = ACTIONS(1988), - [anon_sym_ATtry] = ACTIONS(1988), - [anon_sym_ATthrow] = ACTIONS(1988), - [anon_sym_ATselector] = ACTIONS(1988), - [anon_sym_ATencode] = ACTIONS(1988), - [anon_sym_AT] = ACTIONS(1986), - [sym_YES] = ACTIONS(1986), - [sym_NO] = ACTIONS(1986), - [anon_sym___builtin_available] = ACTIONS(1986), - [anon_sym_ATavailable] = ACTIONS(1988), - [anon_sym_va_arg] = ACTIONS(1986), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [757] = { - [sym_identifier] = ACTIONS(1990), - [aux_sym_preproc_include_token1] = ACTIONS(1992), - [aux_sym_preproc_def_token1] = ACTIONS(1992), - [aux_sym_preproc_if_token1] = ACTIONS(1990), - [aux_sym_preproc_if_token2] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1990), - [aux_sym_preproc_else_token1] = ACTIONS(1990), - [aux_sym_preproc_elif_token1] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(1992), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_TILDE] = ACTIONS(1992), - [anon_sym_DASH] = ACTIONS(1990), - [anon_sym_PLUS] = ACTIONS(1990), - [anon_sym_STAR] = ACTIONS(1992), - [anon_sym_CARET] = ACTIONS(1992), - [anon_sym_AMP] = ACTIONS(1992), - [anon_sym_SEMI] = ACTIONS(1992), - [anon_sym_typedef] = ACTIONS(1990), - [anon_sym_extern] = ACTIONS(1990), - [anon_sym___attribute] = ACTIONS(1990), - [anon_sym___attribute__] = ACTIONS(1990), - [anon_sym___declspec] = ACTIONS(1990), - [anon_sym___cdecl] = ACTIONS(1990), - [anon_sym___clrcall] = ACTIONS(1990), - [anon_sym___stdcall] = ACTIONS(1990), - [anon_sym___fastcall] = ACTIONS(1990), - [anon_sym___thiscall] = ACTIONS(1990), - [anon_sym___vectorcall] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_static] = ACTIONS(1990), - [anon_sym_auto] = ACTIONS(1990), - [anon_sym_register] = ACTIONS(1990), - [anon_sym_inline] = ACTIONS(1990), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1990), - [anon_sym_const] = ACTIONS(1990), - [anon_sym_volatile] = ACTIONS(1990), - [anon_sym_restrict] = ACTIONS(1990), - [anon_sym__Atomic] = ACTIONS(1990), - [anon_sym_in] = ACTIONS(1990), - [anon_sym_out] = ACTIONS(1990), - [anon_sym_inout] = ACTIONS(1990), - [anon_sym_bycopy] = ACTIONS(1990), - [anon_sym_byref] = ACTIONS(1990), - [anon_sym_oneway] = ACTIONS(1990), - [anon_sym__Nullable] = ACTIONS(1990), - [anon_sym__Nonnull] = ACTIONS(1990), - [anon_sym__Nullable_result] = ACTIONS(1990), - [anon_sym__Null_unspecified] = ACTIONS(1990), - [anon_sym___autoreleasing] = ACTIONS(1990), - [anon_sym___nullable] = ACTIONS(1990), - [anon_sym___nonnull] = ACTIONS(1990), - [anon_sym___strong] = ACTIONS(1990), - [anon_sym___weak] = ACTIONS(1990), - [anon_sym___bridge] = ACTIONS(1990), - [anon_sym___bridge_transfer] = ACTIONS(1990), - [anon_sym___bridge_retained] = ACTIONS(1990), - [anon_sym___unsafe_unretained] = ACTIONS(1990), - [anon_sym___block] = ACTIONS(1990), - [anon_sym___kindof] = ACTIONS(1990), - [anon_sym___unused] = ACTIONS(1990), - [anon_sym__Complex] = ACTIONS(1990), - [anon_sym___complex] = ACTIONS(1990), - [anon_sym_IBOutlet] = ACTIONS(1990), - [anon_sym_IBInspectable] = ACTIONS(1990), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1990), - [anon_sym_signed] = ACTIONS(1990), - [anon_sym_unsigned] = ACTIONS(1990), - [anon_sym_long] = ACTIONS(1990), - [anon_sym_short] = ACTIONS(1990), - [sym_primitive_type] = ACTIONS(1990), - [anon_sym_enum] = ACTIONS(1990), - [anon_sym_NS_ENUM] = ACTIONS(1990), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1990), - [anon_sym_NS_OPTIONS] = ACTIONS(1990), - [anon_sym_struct] = ACTIONS(1990), - [anon_sym_union] = ACTIONS(1990), - [anon_sym_if] = ACTIONS(1990), - [anon_sym_switch] = ACTIONS(1990), - [anon_sym_case] = ACTIONS(1990), - [anon_sym_default] = ACTIONS(1990), - [anon_sym_while] = ACTIONS(1990), - [anon_sym_do] = ACTIONS(1990), - [anon_sym_for] = ACTIONS(1990), - [anon_sym_return] = ACTIONS(1990), - [anon_sym_break] = ACTIONS(1990), - [anon_sym_continue] = ACTIONS(1990), - [anon_sym_goto] = ACTIONS(1990), - [anon_sym_DASH_DASH] = ACTIONS(1992), - [anon_sym_PLUS_PLUS] = ACTIONS(1992), - [anon_sym_sizeof] = ACTIONS(1990), - [sym_number_literal] = ACTIONS(1992), - [anon_sym_L_SQUOTE] = ACTIONS(1992), - [anon_sym_u_SQUOTE] = ACTIONS(1992), - [anon_sym_U_SQUOTE] = ACTIONS(1992), - [anon_sym_u8_SQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE] = ACTIONS(1992), - [anon_sym_L_DQUOTE] = ACTIONS(1992), - [anon_sym_u_DQUOTE] = ACTIONS(1992), - [anon_sym_U_DQUOTE] = ACTIONS(1992), - [anon_sym_u8_DQUOTE] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1992), - [sym_true] = ACTIONS(1990), - [sym_false] = ACTIONS(1990), - [sym_null] = ACTIONS(1990), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1992), - [anon_sym_ATimport] = ACTIONS(1992), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1990), - [anon_sym_ATcompatibility_alias] = ACTIONS(1992), - [anon_sym_ATprotocol] = ACTIONS(1992), - [anon_sym_ATclass] = ACTIONS(1992), - [anon_sym_ATinterface] = ACTIONS(1992), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1990), - [sym_method_attribute_specifier] = ACTIONS(1990), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1990), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1990), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1990), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1990), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1990), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1990), - [anon_sym_NS_AVAILABLE] = ACTIONS(1990), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1990), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1990), - [anon_sym_API_AVAILABLE] = ACTIONS(1990), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1990), - [anon_sym_API_DEPRECATED] = ACTIONS(1990), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1990), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1990), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1990), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1990), - [anon_sym___deprecated_msg] = ACTIONS(1990), - [anon_sym___deprecated_enum_msg] = ACTIONS(1990), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1990), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1990), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1990), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1990), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1990), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1990), - [anon_sym_ATimplementation] = ACTIONS(1992), - [anon_sym_typeof] = ACTIONS(1990), - [anon_sym___typeof] = ACTIONS(1990), - [anon_sym___typeof__] = ACTIONS(1990), - [sym_self] = ACTIONS(1990), - [sym_super] = ACTIONS(1990), - [sym_nil] = ACTIONS(1990), - [sym_id] = ACTIONS(1990), - [sym_instancetype] = ACTIONS(1990), - [sym_Class] = ACTIONS(1990), - [sym_SEL] = ACTIONS(1990), - [sym_IMP] = ACTIONS(1990), - [sym_BOOL] = ACTIONS(1990), - [sym_auto] = ACTIONS(1990), - [anon_sym_ATautoreleasepool] = ACTIONS(1992), - [anon_sym_ATsynchronized] = ACTIONS(1992), - [anon_sym_ATtry] = ACTIONS(1992), - [anon_sym_ATthrow] = ACTIONS(1992), - [anon_sym_ATselector] = ACTIONS(1992), - [anon_sym_ATencode] = ACTIONS(1992), - [anon_sym_AT] = ACTIONS(1990), - [sym_YES] = ACTIONS(1990), - [sym_NO] = ACTIONS(1990), - [anon_sym___builtin_available] = ACTIONS(1990), - [anon_sym_ATavailable] = ACTIONS(1992), - [anon_sym_va_arg] = ACTIONS(1990), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [758] = { - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_include_token1] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [aux_sym_preproc_if_token2] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [aux_sym_preproc_else_token1] = ACTIONS(1994), - [aux_sym_preproc_elif_token1] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym___attribute] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym___declspec] = ACTIONS(1994), - [anon_sym___cdecl] = ACTIONS(1994), - [anon_sym___clrcall] = ACTIONS(1994), - [anon_sym___stdcall] = ACTIONS(1994), - [anon_sym___fastcall] = ACTIONS(1994), - [anon_sym___thiscall] = ACTIONS(1994), - [anon_sym___vectorcall] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_in] = ACTIONS(1994), - [anon_sym_out] = ACTIONS(1994), - [anon_sym_inout] = ACTIONS(1994), - [anon_sym_bycopy] = ACTIONS(1994), - [anon_sym_byref] = ACTIONS(1994), - [anon_sym_oneway] = ACTIONS(1994), - [anon_sym__Nullable] = ACTIONS(1994), - [anon_sym__Nonnull] = ACTIONS(1994), - [anon_sym__Nullable_result] = ACTIONS(1994), - [anon_sym__Null_unspecified] = ACTIONS(1994), - [anon_sym___autoreleasing] = ACTIONS(1994), - [anon_sym___nullable] = ACTIONS(1994), - [anon_sym___nonnull] = ACTIONS(1994), - [anon_sym___strong] = ACTIONS(1994), - [anon_sym___weak] = ACTIONS(1994), - [anon_sym___bridge] = ACTIONS(1994), - [anon_sym___bridge_transfer] = ACTIONS(1994), - [anon_sym___bridge_retained] = ACTIONS(1994), - [anon_sym___unsafe_unretained] = ACTIONS(1994), - [anon_sym___block] = ACTIONS(1994), - [anon_sym___kindof] = ACTIONS(1994), - [anon_sym___unused] = ACTIONS(1994), - [anon_sym__Complex] = ACTIONS(1994), - [anon_sym___complex] = ACTIONS(1994), - [anon_sym_IBOutlet] = ACTIONS(1994), - [anon_sym_IBInspectable] = ACTIONS(1994), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_NS_ENUM] = ACTIONS(1994), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1994), - [anon_sym_NS_OPTIONS] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_case] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym_u_SQUOTE] = ACTIONS(1996), - [anon_sym_U_SQUOTE] = ACTIONS(1996), - [anon_sym_u8_SQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_u_DQUOTE] = ACTIONS(1996), - [anon_sym_U_DQUOTE] = ACTIONS(1996), - [anon_sym_u8_DQUOTE] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1996), - [anon_sym_ATimport] = ACTIONS(1996), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1994), - [anon_sym_ATcompatibility_alias] = ACTIONS(1996), - [anon_sym_ATprotocol] = ACTIONS(1996), - [anon_sym_ATclass] = ACTIONS(1996), - [anon_sym_ATinterface] = ACTIONS(1996), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1994), - [sym_method_attribute_specifier] = ACTIONS(1994), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1994), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE] = ACTIONS(1994), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_API_AVAILABLE] = ACTIONS(1994), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_API_DEPRECATED] = ACTIONS(1994), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1994), - [anon_sym___deprecated_msg] = ACTIONS(1994), - [anon_sym___deprecated_enum_msg] = ACTIONS(1994), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1994), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1994), - [anon_sym_ATimplementation] = ACTIONS(1996), - [anon_sym_typeof] = ACTIONS(1994), - [anon_sym___typeof] = ACTIONS(1994), - [anon_sym___typeof__] = ACTIONS(1994), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_nil] = ACTIONS(1994), - [sym_id] = ACTIONS(1994), - [sym_instancetype] = ACTIONS(1994), - [sym_Class] = ACTIONS(1994), - [sym_SEL] = ACTIONS(1994), - [sym_IMP] = ACTIONS(1994), - [sym_BOOL] = ACTIONS(1994), - [sym_auto] = ACTIONS(1994), - [anon_sym_ATautoreleasepool] = ACTIONS(1996), - [anon_sym_ATsynchronized] = ACTIONS(1996), - [anon_sym_ATtry] = ACTIONS(1996), - [anon_sym_ATthrow] = ACTIONS(1996), - [anon_sym_ATselector] = ACTIONS(1996), - [anon_sym_ATencode] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1994), - [sym_YES] = ACTIONS(1994), - [sym_NO] = ACTIONS(1994), - [anon_sym___builtin_available] = ACTIONS(1994), - [anon_sym_ATavailable] = ACTIONS(1996), - [anon_sym_va_arg] = ACTIONS(1994), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [759] = { - [sym_identifier] = ACTIONS(1998), - [aux_sym_preproc_include_token1] = ACTIONS(2000), - [aux_sym_preproc_def_token1] = ACTIONS(2000), - [aux_sym_preproc_if_token1] = ACTIONS(1998), - [aux_sym_preproc_if_token2] = ACTIONS(1998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1998), - [aux_sym_preproc_else_token1] = ACTIONS(1998), - [aux_sym_preproc_elif_token1] = ACTIONS(1998), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2000), - [anon_sym_TILDE] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(1998), - [anon_sym_PLUS] = ACTIONS(1998), - [anon_sym_STAR] = ACTIONS(2000), - [anon_sym_CARET] = ACTIONS(2000), - [anon_sym_AMP] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_typedef] = ACTIONS(1998), - [anon_sym_extern] = ACTIONS(1998), - [anon_sym___attribute] = ACTIONS(1998), - [anon_sym___attribute__] = ACTIONS(1998), - [anon_sym___declspec] = ACTIONS(1998), - [anon_sym___cdecl] = ACTIONS(1998), - [anon_sym___clrcall] = ACTIONS(1998), - [anon_sym___stdcall] = ACTIONS(1998), - [anon_sym___fastcall] = ACTIONS(1998), - [anon_sym___thiscall] = ACTIONS(1998), - [anon_sym___vectorcall] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(1998), - [anon_sym_auto] = ACTIONS(1998), - [anon_sym_register] = ACTIONS(1998), - [anon_sym_inline] = ACTIONS(1998), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1998), - [anon_sym_const] = ACTIONS(1998), - [anon_sym_volatile] = ACTIONS(1998), - [anon_sym_restrict] = ACTIONS(1998), - [anon_sym__Atomic] = ACTIONS(1998), - [anon_sym_in] = ACTIONS(1998), - [anon_sym_out] = ACTIONS(1998), - [anon_sym_inout] = ACTIONS(1998), - [anon_sym_bycopy] = ACTIONS(1998), - [anon_sym_byref] = ACTIONS(1998), - [anon_sym_oneway] = ACTIONS(1998), - [anon_sym__Nullable] = ACTIONS(1998), - [anon_sym__Nonnull] = ACTIONS(1998), - [anon_sym__Nullable_result] = ACTIONS(1998), - [anon_sym__Null_unspecified] = ACTIONS(1998), - [anon_sym___autoreleasing] = ACTIONS(1998), - [anon_sym___nullable] = ACTIONS(1998), - [anon_sym___nonnull] = ACTIONS(1998), - [anon_sym___strong] = ACTIONS(1998), - [anon_sym___weak] = ACTIONS(1998), - [anon_sym___bridge] = ACTIONS(1998), - [anon_sym___bridge_transfer] = ACTIONS(1998), - [anon_sym___bridge_retained] = ACTIONS(1998), - [anon_sym___unsafe_unretained] = ACTIONS(1998), - [anon_sym___block] = ACTIONS(1998), - [anon_sym___kindof] = ACTIONS(1998), - [anon_sym___unused] = ACTIONS(1998), - [anon_sym__Complex] = ACTIONS(1998), - [anon_sym___complex] = ACTIONS(1998), - [anon_sym_IBOutlet] = ACTIONS(1998), - [anon_sym_IBInspectable] = ACTIONS(1998), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1998), - [anon_sym_signed] = ACTIONS(1998), - [anon_sym_unsigned] = ACTIONS(1998), - [anon_sym_long] = ACTIONS(1998), - [anon_sym_short] = ACTIONS(1998), - [sym_primitive_type] = ACTIONS(1998), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_NS_ENUM] = ACTIONS(1998), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1998), - [anon_sym_NS_OPTIONS] = ACTIONS(1998), - [anon_sym_struct] = ACTIONS(1998), - [anon_sym_union] = ACTIONS(1998), - [anon_sym_if] = ACTIONS(1998), - [anon_sym_switch] = ACTIONS(1998), - [anon_sym_case] = ACTIONS(1998), - [anon_sym_default] = ACTIONS(1998), - [anon_sym_while] = ACTIONS(1998), - [anon_sym_do] = ACTIONS(1998), - [anon_sym_for] = ACTIONS(1998), - [anon_sym_return] = ACTIONS(1998), - [anon_sym_break] = ACTIONS(1998), - [anon_sym_continue] = ACTIONS(1998), - [anon_sym_goto] = ACTIONS(1998), - [anon_sym_DASH_DASH] = ACTIONS(2000), - [anon_sym_PLUS_PLUS] = ACTIONS(2000), - [anon_sym_sizeof] = ACTIONS(1998), - [sym_number_literal] = ACTIONS(2000), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2000), - [anon_sym_u_DQUOTE] = ACTIONS(2000), - [anon_sym_U_DQUOTE] = ACTIONS(2000), - [anon_sym_u8_DQUOTE] = ACTIONS(2000), - [anon_sym_DQUOTE] = ACTIONS(2000), - [sym_true] = ACTIONS(1998), - [sym_false] = ACTIONS(1998), - [sym_null] = ACTIONS(1998), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2000), - [anon_sym_ATimport] = ACTIONS(2000), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1998), - [anon_sym_ATcompatibility_alias] = ACTIONS(2000), - [anon_sym_ATprotocol] = ACTIONS(2000), - [anon_sym_ATclass] = ACTIONS(2000), - [anon_sym_ATinterface] = ACTIONS(2000), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1998), - [sym_method_attribute_specifier] = ACTIONS(1998), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1998), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1998), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1998), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1998), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1998), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1998), - [anon_sym_NS_AVAILABLE] = ACTIONS(1998), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1998), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_API_AVAILABLE] = ACTIONS(1998), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1998), - [anon_sym_API_DEPRECATED] = ACTIONS(1998), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1998), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1998), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1998), - [anon_sym___deprecated_msg] = ACTIONS(1998), - [anon_sym___deprecated_enum_msg] = ACTIONS(1998), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1998), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1998), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1998), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1998), - [anon_sym_ATimplementation] = ACTIONS(2000), - [anon_sym_typeof] = ACTIONS(1998), - [anon_sym___typeof] = ACTIONS(1998), - [anon_sym___typeof__] = ACTIONS(1998), - [sym_self] = ACTIONS(1998), - [sym_super] = ACTIONS(1998), - [sym_nil] = ACTIONS(1998), - [sym_id] = ACTIONS(1998), - [sym_instancetype] = ACTIONS(1998), - [sym_Class] = ACTIONS(1998), - [sym_SEL] = ACTIONS(1998), - [sym_IMP] = ACTIONS(1998), - [sym_BOOL] = ACTIONS(1998), - [sym_auto] = ACTIONS(1998), - [anon_sym_ATautoreleasepool] = ACTIONS(2000), - [anon_sym_ATsynchronized] = ACTIONS(2000), - [anon_sym_ATtry] = ACTIONS(2000), - [anon_sym_ATthrow] = ACTIONS(2000), - [anon_sym_ATselector] = ACTIONS(2000), - [anon_sym_ATencode] = ACTIONS(2000), - [anon_sym_AT] = ACTIONS(1998), - [sym_YES] = ACTIONS(1998), - [sym_NO] = ACTIONS(1998), - [anon_sym___builtin_available] = ACTIONS(1998), - [anon_sym_ATavailable] = ACTIONS(2000), - [anon_sym_va_arg] = ACTIONS(1998), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [760] = { - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_include_token1] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [aux_sym_preproc_if_token2] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [aux_sym_preproc_else_token1] = ACTIONS(1994), - [aux_sym_preproc_elif_token1] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym___attribute] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym___declspec] = ACTIONS(1994), - [anon_sym___cdecl] = ACTIONS(1994), - [anon_sym___clrcall] = ACTIONS(1994), - [anon_sym___stdcall] = ACTIONS(1994), - [anon_sym___fastcall] = ACTIONS(1994), - [anon_sym___thiscall] = ACTIONS(1994), - [anon_sym___vectorcall] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_in] = ACTIONS(1994), - [anon_sym_out] = ACTIONS(1994), - [anon_sym_inout] = ACTIONS(1994), - [anon_sym_bycopy] = ACTIONS(1994), - [anon_sym_byref] = ACTIONS(1994), - [anon_sym_oneway] = ACTIONS(1994), - [anon_sym__Nullable] = ACTIONS(1994), - [anon_sym__Nonnull] = ACTIONS(1994), - [anon_sym__Nullable_result] = ACTIONS(1994), - [anon_sym__Null_unspecified] = ACTIONS(1994), - [anon_sym___autoreleasing] = ACTIONS(1994), - [anon_sym___nullable] = ACTIONS(1994), - [anon_sym___nonnull] = ACTIONS(1994), - [anon_sym___strong] = ACTIONS(1994), - [anon_sym___weak] = ACTIONS(1994), - [anon_sym___bridge] = ACTIONS(1994), - [anon_sym___bridge_transfer] = ACTIONS(1994), - [anon_sym___bridge_retained] = ACTIONS(1994), - [anon_sym___unsafe_unretained] = ACTIONS(1994), - [anon_sym___block] = ACTIONS(1994), - [anon_sym___kindof] = ACTIONS(1994), - [anon_sym___unused] = ACTIONS(1994), - [anon_sym__Complex] = ACTIONS(1994), - [anon_sym___complex] = ACTIONS(1994), - [anon_sym_IBOutlet] = ACTIONS(1994), - [anon_sym_IBInspectable] = ACTIONS(1994), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_NS_ENUM] = ACTIONS(1994), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1994), - [anon_sym_NS_OPTIONS] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_case] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym_u_SQUOTE] = ACTIONS(1996), - [anon_sym_U_SQUOTE] = ACTIONS(1996), - [anon_sym_u8_SQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_u_DQUOTE] = ACTIONS(1996), - [anon_sym_U_DQUOTE] = ACTIONS(1996), - [anon_sym_u8_DQUOTE] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1996), - [anon_sym_ATimport] = ACTIONS(1996), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1994), - [anon_sym_ATcompatibility_alias] = ACTIONS(1996), - [anon_sym_ATprotocol] = ACTIONS(1996), - [anon_sym_ATclass] = ACTIONS(1996), - [anon_sym_ATinterface] = ACTIONS(1996), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1994), - [sym_method_attribute_specifier] = ACTIONS(1994), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1994), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE] = ACTIONS(1994), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_API_AVAILABLE] = ACTIONS(1994), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_API_DEPRECATED] = ACTIONS(1994), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1994), - [anon_sym___deprecated_msg] = ACTIONS(1994), - [anon_sym___deprecated_enum_msg] = ACTIONS(1994), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1994), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1994), - [anon_sym_ATimplementation] = ACTIONS(1996), - [anon_sym_typeof] = ACTIONS(1994), - [anon_sym___typeof] = ACTIONS(1994), - [anon_sym___typeof__] = ACTIONS(1994), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_nil] = ACTIONS(1994), - [sym_id] = ACTIONS(1994), - [sym_instancetype] = ACTIONS(1994), - [sym_Class] = ACTIONS(1994), - [sym_SEL] = ACTIONS(1994), - [sym_IMP] = ACTIONS(1994), - [sym_BOOL] = ACTIONS(1994), - [sym_auto] = ACTIONS(1994), - [anon_sym_ATautoreleasepool] = ACTIONS(1996), - [anon_sym_ATsynchronized] = ACTIONS(1996), - [anon_sym_ATtry] = ACTIONS(1996), - [anon_sym_ATthrow] = ACTIONS(1996), - [anon_sym_ATselector] = ACTIONS(1996), - [anon_sym_ATencode] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1994), - [sym_YES] = ACTIONS(1994), - [sym_NO] = ACTIONS(1994), - [anon_sym___builtin_available] = ACTIONS(1994), - [anon_sym_ATavailable] = ACTIONS(1996), - [anon_sym_va_arg] = ACTIONS(1994), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [761] = { - [sym_identifier] = ACTIONS(1998), - [aux_sym_preproc_include_token1] = ACTIONS(2000), - [aux_sym_preproc_def_token1] = ACTIONS(2000), - [aux_sym_preproc_if_token1] = ACTIONS(1998), - [aux_sym_preproc_if_token2] = ACTIONS(1998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1998), - [aux_sym_preproc_else_token1] = ACTIONS(1998), - [aux_sym_preproc_elif_token1] = ACTIONS(1998), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2000), - [anon_sym_TILDE] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(1998), - [anon_sym_PLUS] = ACTIONS(1998), - [anon_sym_STAR] = ACTIONS(2000), - [anon_sym_CARET] = ACTIONS(2000), - [anon_sym_AMP] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_typedef] = ACTIONS(1998), - [anon_sym_extern] = ACTIONS(1998), - [anon_sym___attribute] = ACTIONS(1998), - [anon_sym___attribute__] = ACTIONS(1998), - [anon_sym___declspec] = ACTIONS(1998), - [anon_sym___cdecl] = ACTIONS(1998), - [anon_sym___clrcall] = ACTIONS(1998), - [anon_sym___stdcall] = ACTIONS(1998), - [anon_sym___fastcall] = ACTIONS(1998), - [anon_sym___thiscall] = ACTIONS(1998), - [anon_sym___vectorcall] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(1998), - [anon_sym_auto] = ACTIONS(1998), - [anon_sym_register] = ACTIONS(1998), - [anon_sym_inline] = ACTIONS(1998), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1998), - [anon_sym_const] = ACTIONS(1998), - [anon_sym_volatile] = ACTIONS(1998), - [anon_sym_restrict] = ACTIONS(1998), - [anon_sym__Atomic] = ACTIONS(1998), - [anon_sym_in] = ACTIONS(1998), - [anon_sym_out] = ACTIONS(1998), - [anon_sym_inout] = ACTIONS(1998), - [anon_sym_bycopy] = ACTIONS(1998), - [anon_sym_byref] = ACTIONS(1998), - [anon_sym_oneway] = ACTIONS(1998), - [anon_sym__Nullable] = ACTIONS(1998), - [anon_sym__Nonnull] = ACTIONS(1998), - [anon_sym__Nullable_result] = ACTIONS(1998), - [anon_sym__Null_unspecified] = ACTIONS(1998), - [anon_sym___autoreleasing] = ACTIONS(1998), - [anon_sym___nullable] = ACTIONS(1998), - [anon_sym___nonnull] = ACTIONS(1998), - [anon_sym___strong] = ACTIONS(1998), - [anon_sym___weak] = ACTIONS(1998), - [anon_sym___bridge] = ACTIONS(1998), - [anon_sym___bridge_transfer] = ACTIONS(1998), - [anon_sym___bridge_retained] = ACTIONS(1998), - [anon_sym___unsafe_unretained] = ACTIONS(1998), - [anon_sym___block] = ACTIONS(1998), - [anon_sym___kindof] = ACTIONS(1998), - [anon_sym___unused] = ACTIONS(1998), - [anon_sym__Complex] = ACTIONS(1998), - [anon_sym___complex] = ACTIONS(1998), - [anon_sym_IBOutlet] = ACTIONS(1998), - [anon_sym_IBInspectable] = ACTIONS(1998), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1998), - [anon_sym_signed] = ACTIONS(1998), - [anon_sym_unsigned] = ACTIONS(1998), - [anon_sym_long] = ACTIONS(1998), - [anon_sym_short] = ACTIONS(1998), - [sym_primitive_type] = ACTIONS(1998), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_NS_ENUM] = ACTIONS(1998), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1998), - [anon_sym_NS_OPTIONS] = ACTIONS(1998), - [anon_sym_struct] = ACTIONS(1998), - [anon_sym_union] = ACTIONS(1998), - [anon_sym_if] = ACTIONS(1998), - [anon_sym_switch] = ACTIONS(1998), - [anon_sym_case] = ACTIONS(1998), - [anon_sym_default] = ACTIONS(1998), - [anon_sym_while] = ACTIONS(1998), - [anon_sym_do] = ACTIONS(1998), - [anon_sym_for] = ACTIONS(1998), - [anon_sym_return] = ACTIONS(1998), - [anon_sym_break] = ACTIONS(1998), - [anon_sym_continue] = ACTIONS(1998), - [anon_sym_goto] = ACTIONS(1998), - [anon_sym_DASH_DASH] = ACTIONS(2000), - [anon_sym_PLUS_PLUS] = ACTIONS(2000), - [anon_sym_sizeof] = ACTIONS(1998), - [sym_number_literal] = ACTIONS(2000), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2000), - [anon_sym_u_DQUOTE] = ACTIONS(2000), - [anon_sym_U_DQUOTE] = ACTIONS(2000), - [anon_sym_u8_DQUOTE] = ACTIONS(2000), - [anon_sym_DQUOTE] = ACTIONS(2000), - [sym_true] = ACTIONS(1998), - [sym_false] = ACTIONS(1998), - [sym_null] = ACTIONS(1998), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2000), - [anon_sym_ATimport] = ACTIONS(2000), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1998), - [anon_sym_ATcompatibility_alias] = ACTIONS(2000), - [anon_sym_ATprotocol] = ACTIONS(2000), - [anon_sym_ATclass] = ACTIONS(2000), - [anon_sym_ATinterface] = ACTIONS(2000), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1998), - [sym_method_attribute_specifier] = ACTIONS(1998), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1998), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1998), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1998), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1998), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1998), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1998), - [anon_sym_NS_AVAILABLE] = ACTIONS(1998), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1998), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_API_AVAILABLE] = ACTIONS(1998), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1998), - [anon_sym_API_DEPRECATED] = ACTIONS(1998), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1998), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1998), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1998), - [anon_sym___deprecated_msg] = ACTIONS(1998), - [anon_sym___deprecated_enum_msg] = ACTIONS(1998), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1998), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1998), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1998), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1998), - [anon_sym_ATimplementation] = ACTIONS(2000), - [anon_sym_typeof] = ACTIONS(1998), - [anon_sym___typeof] = ACTIONS(1998), - [anon_sym___typeof__] = ACTIONS(1998), - [sym_self] = ACTIONS(1998), - [sym_super] = ACTIONS(1998), - [sym_nil] = ACTIONS(1998), - [sym_id] = ACTIONS(1998), - [sym_instancetype] = ACTIONS(1998), - [sym_Class] = ACTIONS(1998), - [sym_SEL] = ACTIONS(1998), - [sym_IMP] = ACTIONS(1998), - [sym_BOOL] = ACTIONS(1998), - [sym_auto] = ACTIONS(1998), - [anon_sym_ATautoreleasepool] = ACTIONS(2000), - [anon_sym_ATsynchronized] = ACTIONS(2000), - [anon_sym_ATtry] = ACTIONS(2000), - [anon_sym_ATthrow] = ACTIONS(2000), - [anon_sym_ATselector] = ACTIONS(2000), - [anon_sym_ATencode] = ACTIONS(2000), - [anon_sym_AT] = ACTIONS(1998), - [sym_YES] = ACTIONS(1998), - [sym_NO] = ACTIONS(1998), - [anon_sym___builtin_available] = ACTIONS(1998), - [anon_sym_ATavailable] = ACTIONS(2000), - [anon_sym_va_arg] = ACTIONS(1998), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [762] = { - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_include_token1] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [aux_sym_preproc_if_token2] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [aux_sym_preproc_else_token1] = ACTIONS(1994), - [aux_sym_preproc_elif_token1] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym___attribute] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym___declspec] = ACTIONS(1994), - [anon_sym___cdecl] = ACTIONS(1994), - [anon_sym___clrcall] = ACTIONS(1994), - [anon_sym___stdcall] = ACTIONS(1994), - [anon_sym___fastcall] = ACTIONS(1994), - [anon_sym___thiscall] = ACTIONS(1994), - [anon_sym___vectorcall] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_in] = ACTIONS(1994), - [anon_sym_out] = ACTIONS(1994), - [anon_sym_inout] = ACTIONS(1994), - [anon_sym_bycopy] = ACTIONS(1994), - [anon_sym_byref] = ACTIONS(1994), - [anon_sym_oneway] = ACTIONS(1994), - [anon_sym__Nullable] = ACTIONS(1994), - [anon_sym__Nonnull] = ACTIONS(1994), - [anon_sym__Nullable_result] = ACTIONS(1994), - [anon_sym__Null_unspecified] = ACTIONS(1994), - [anon_sym___autoreleasing] = ACTIONS(1994), - [anon_sym___nullable] = ACTIONS(1994), - [anon_sym___nonnull] = ACTIONS(1994), - [anon_sym___strong] = ACTIONS(1994), - [anon_sym___weak] = ACTIONS(1994), - [anon_sym___bridge] = ACTIONS(1994), - [anon_sym___bridge_transfer] = ACTIONS(1994), - [anon_sym___bridge_retained] = ACTIONS(1994), - [anon_sym___unsafe_unretained] = ACTIONS(1994), - [anon_sym___block] = ACTIONS(1994), - [anon_sym___kindof] = ACTIONS(1994), - [anon_sym___unused] = ACTIONS(1994), - [anon_sym__Complex] = ACTIONS(1994), - [anon_sym___complex] = ACTIONS(1994), - [anon_sym_IBOutlet] = ACTIONS(1994), - [anon_sym_IBInspectable] = ACTIONS(1994), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_NS_ENUM] = ACTIONS(1994), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1994), - [anon_sym_NS_OPTIONS] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_case] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym_u_SQUOTE] = ACTIONS(1996), - [anon_sym_U_SQUOTE] = ACTIONS(1996), - [anon_sym_u8_SQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_u_DQUOTE] = ACTIONS(1996), - [anon_sym_U_DQUOTE] = ACTIONS(1996), - [anon_sym_u8_DQUOTE] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1996), - [anon_sym_ATimport] = ACTIONS(1996), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1994), - [anon_sym_ATcompatibility_alias] = ACTIONS(1996), - [anon_sym_ATprotocol] = ACTIONS(1996), - [anon_sym_ATclass] = ACTIONS(1996), - [anon_sym_ATinterface] = ACTIONS(1996), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1994), - [sym_method_attribute_specifier] = ACTIONS(1994), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1994), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE] = ACTIONS(1994), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_API_AVAILABLE] = ACTIONS(1994), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_API_DEPRECATED] = ACTIONS(1994), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1994), - [anon_sym___deprecated_msg] = ACTIONS(1994), - [anon_sym___deprecated_enum_msg] = ACTIONS(1994), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1994), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1994), - [anon_sym_ATimplementation] = ACTIONS(1996), - [anon_sym_typeof] = ACTIONS(1994), - [anon_sym___typeof] = ACTIONS(1994), - [anon_sym___typeof__] = ACTIONS(1994), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_nil] = ACTIONS(1994), - [sym_id] = ACTIONS(1994), - [sym_instancetype] = ACTIONS(1994), - [sym_Class] = ACTIONS(1994), - [sym_SEL] = ACTIONS(1994), - [sym_IMP] = ACTIONS(1994), - [sym_BOOL] = ACTIONS(1994), - [sym_auto] = ACTIONS(1994), - [anon_sym_ATautoreleasepool] = ACTIONS(1996), - [anon_sym_ATsynchronized] = ACTIONS(1996), - [anon_sym_ATtry] = ACTIONS(1996), - [anon_sym_ATthrow] = ACTIONS(1996), - [anon_sym_ATselector] = ACTIONS(1996), - [anon_sym_ATencode] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1994), - [sym_YES] = ACTIONS(1994), - [sym_NO] = ACTIONS(1994), - [anon_sym___builtin_available] = ACTIONS(1994), - [anon_sym_ATavailable] = ACTIONS(1996), - [anon_sym_va_arg] = ACTIONS(1994), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [763] = { - [sym_identifier] = ACTIONS(2002), - [aux_sym_preproc_include_token1] = ACTIONS(2004), - [aux_sym_preproc_def_token1] = ACTIONS(2004), - [aux_sym_preproc_if_token1] = ACTIONS(2002), - [aux_sym_preproc_if_token2] = ACTIONS(2002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2002), - [aux_sym_preproc_else_token1] = ACTIONS(2002), - [aux_sym_preproc_elif_token1] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(2004), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2004), - [anon_sym_CARET] = ACTIONS(2004), - [anon_sym_AMP] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2004), - [anon_sym_typedef] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2002), - [anon_sym___attribute] = ACTIONS(2002), - [anon_sym___attribute__] = ACTIONS(2002), - [anon_sym___declspec] = ACTIONS(2002), - [anon_sym___cdecl] = ACTIONS(2002), - [anon_sym___clrcall] = ACTIONS(2002), - [anon_sym___stdcall] = ACTIONS(2002), - [anon_sym___fastcall] = ACTIONS(2002), - [anon_sym___thiscall] = ACTIONS(2002), - [anon_sym___vectorcall] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2004), - [anon_sym_LBRACK] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2002), - [anon_sym_auto] = ACTIONS(2002), - [anon_sym_register] = ACTIONS(2002), - [anon_sym_inline] = ACTIONS(2002), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2002), - [anon_sym_const] = ACTIONS(2002), - [anon_sym_volatile] = ACTIONS(2002), - [anon_sym_restrict] = ACTIONS(2002), - [anon_sym__Atomic] = ACTIONS(2002), - [anon_sym_in] = ACTIONS(2002), - [anon_sym_out] = ACTIONS(2002), - [anon_sym_inout] = ACTIONS(2002), - [anon_sym_bycopy] = ACTIONS(2002), - [anon_sym_byref] = ACTIONS(2002), - [anon_sym_oneway] = ACTIONS(2002), - [anon_sym__Nullable] = ACTIONS(2002), - [anon_sym__Nonnull] = ACTIONS(2002), - [anon_sym__Nullable_result] = ACTIONS(2002), - [anon_sym__Null_unspecified] = ACTIONS(2002), - [anon_sym___autoreleasing] = ACTIONS(2002), - [anon_sym___nullable] = ACTIONS(2002), - [anon_sym___nonnull] = ACTIONS(2002), - [anon_sym___strong] = ACTIONS(2002), - [anon_sym___weak] = ACTIONS(2002), - [anon_sym___bridge] = ACTIONS(2002), - [anon_sym___bridge_transfer] = ACTIONS(2002), - [anon_sym___bridge_retained] = ACTIONS(2002), - [anon_sym___unsafe_unretained] = ACTIONS(2002), - [anon_sym___block] = ACTIONS(2002), - [anon_sym___kindof] = ACTIONS(2002), - [anon_sym___unused] = ACTIONS(2002), - [anon_sym__Complex] = ACTIONS(2002), - [anon_sym___complex] = ACTIONS(2002), - [anon_sym_IBOutlet] = ACTIONS(2002), - [anon_sym_IBInspectable] = ACTIONS(2002), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2002), - [anon_sym_signed] = ACTIONS(2002), - [anon_sym_unsigned] = ACTIONS(2002), - [anon_sym_long] = ACTIONS(2002), - [anon_sym_short] = ACTIONS(2002), - [sym_primitive_type] = ACTIONS(2002), - [anon_sym_enum] = ACTIONS(2002), - [anon_sym_NS_ENUM] = ACTIONS(2002), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2002), - [anon_sym_NS_OPTIONS] = ACTIONS(2002), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_switch] = ACTIONS(2002), - [anon_sym_case] = ACTIONS(2002), - [anon_sym_default] = ACTIONS(2002), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_do] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2002), - [anon_sym_break] = ACTIONS(2002), - [anon_sym_continue] = ACTIONS(2002), - [anon_sym_goto] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(2004), - [anon_sym_PLUS_PLUS] = ACTIONS(2004), - [anon_sym_sizeof] = ACTIONS(2002), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2004), - [anon_sym_u_DQUOTE] = ACTIONS(2004), - [anon_sym_U_DQUOTE] = ACTIONS(2004), - [anon_sym_u8_DQUOTE] = ACTIONS(2004), - [anon_sym_DQUOTE] = ACTIONS(2004), - [sym_true] = ACTIONS(2002), - [sym_false] = ACTIONS(2002), - [sym_null] = ACTIONS(2002), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2004), - [anon_sym_ATimport] = ACTIONS(2004), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2002), - [anon_sym_ATcompatibility_alias] = ACTIONS(2004), - [anon_sym_ATprotocol] = ACTIONS(2004), - [anon_sym_ATclass] = ACTIONS(2004), - [anon_sym_ATinterface] = ACTIONS(2004), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2002), - [sym_method_attribute_specifier] = ACTIONS(2002), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2002), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2002), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2002), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2002), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2002), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2002), - [anon_sym_NS_AVAILABLE] = ACTIONS(2002), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2002), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2002), - [anon_sym_API_AVAILABLE] = ACTIONS(2002), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2002), - [anon_sym_API_DEPRECATED] = ACTIONS(2002), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2002), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2002), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2002), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2002), - [anon_sym___deprecated_msg] = ACTIONS(2002), - [anon_sym___deprecated_enum_msg] = ACTIONS(2002), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2002), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2002), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2002), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2002), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2002), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2002), - [anon_sym_ATimplementation] = ACTIONS(2004), - [anon_sym_typeof] = ACTIONS(2002), - [anon_sym___typeof] = ACTIONS(2002), - [anon_sym___typeof__] = ACTIONS(2002), - [sym_self] = ACTIONS(2002), - [sym_super] = ACTIONS(2002), - [sym_nil] = ACTIONS(2002), - [sym_id] = ACTIONS(2002), - [sym_instancetype] = ACTIONS(2002), - [sym_Class] = ACTIONS(2002), - [sym_SEL] = ACTIONS(2002), - [sym_IMP] = ACTIONS(2002), - [sym_BOOL] = ACTIONS(2002), - [sym_auto] = ACTIONS(2002), - [anon_sym_ATautoreleasepool] = ACTIONS(2004), - [anon_sym_ATsynchronized] = ACTIONS(2004), - [anon_sym_ATtry] = ACTIONS(2004), - [anon_sym_ATthrow] = ACTIONS(2004), - [anon_sym_ATselector] = ACTIONS(2004), - [anon_sym_ATencode] = ACTIONS(2004), - [anon_sym_AT] = ACTIONS(2002), - [sym_YES] = ACTIONS(2002), - [sym_NO] = ACTIONS(2002), - [anon_sym___builtin_available] = ACTIONS(2002), - [anon_sym_ATavailable] = ACTIONS(2004), - [anon_sym_va_arg] = ACTIONS(2002), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [764] = { - [sym_identifier] = ACTIONS(2006), - [aux_sym_preproc_include_token1] = ACTIONS(2008), - [aux_sym_preproc_def_token1] = ACTIONS(2008), - [aux_sym_preproc_if_token1] = ACTIONS(2006), - [aux_sym_preproc_if_token2] = ACTIONS(2006), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2006), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2006), - [aux_sym_preproc_else_token1] = ACTIONS(2006), - [aux_sym_preproc_elif_token1] = ACTIONS(2006), - [anon_sym_LPAREN2] = ACTIONS(2008), - [anon_sym_BANG] = ACTIONS(2008), - [anon_sym_TILDE] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_PLUS] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2008), - [anon_sym_CARET] = ACTIONS(2008), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_typedef] = ACTIONS(2006), - [anon_sym_extern] = ACTIONS(2006), - [anon_sym___attribute] = ACTIONS(2006), - [anon_sym___attribute__] = ACTIONS(2006), - [anon_sym___declspec] = ACTIONS(2006), - [anon_sym___cdecl] = ACTIONS(2006), - [anon_sym___clrcall] = ACTIONS(2006), - [anon_sym___stdcall] = ACTIONS(2006), - [anon_sym___fastcall] = ACTIONS(2006), - [anon_sym___thiscall] = ACTIONS(2006), - [anon_sym___vectorcall] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2006), - [anon_sym_auto] = ACTIONS(2006), - [anon_sym_register] = ACTIONS(2006), - [anon_sym_inline] = ACTIONS(2006), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2006), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_volatile] = ACTIONS(2006), - [anon_sym_restrict] = ACTIONS(2006), - [anon_sym__Atomic] = ACTIONS(2006), - [anon_sym_in] = ACTIONS(2006), - [anon_sym_out] = ACTIONS(2006), - [anon_sym_inout] = ACTIONS(2006), - [anon_sym_bycopy] = ACTIONS(2006), - [anon_sym_byref] = ACTIONS(2006), - [anon_sym_oneway] = ACTIONS(2006), - [anon_sym__Nullable] = ACTIONS(2006), - [anon_sym__Nonnull] = ACTIONS(2006), - [anon_sym__Nullable_result] = ACTIONS(2006), - [anon_sym__Null_unspecified] = ACTIONS(2006), - [anon_sym___autoreleasing] = ACTIONS(2006), - [anon_sym___nullable] = ACTIONS(2006), - [anon_sym___nonnull] = ACTIONS(2006), - [anon_sym___strong] = ACTIONS(2006), - [anon_sym___weak] = ACTIONS(2006), - [anon_sym___bridge] = ACTIONS(2006), - [anon_sym___bridge_transfer] = ACTIONS(2006), - [anon_sym___bridge_retained] = ACTIONS(2006), - [anon_sym___unsafe_unretained] = ACTIONS(2006), - [anon_sym___block] = ACTIONS(2006), - [anon_sym___kindof] = ACTIONS(2006), - [anon_sym___unused] = ACTIONS(2006), - [anon_sym__Complex] = ACTIONS(2006), - [anon_sym___complex] = ACTIONS(2006), - [anon_sym_IBOutlet] = ACTIONS(2006), - [anon_sym_IBInspectable] = ACTIONS(2006), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2006), - [anon_sym_signed] = ACTIONS(2006), - [anon_sym_unsigned] = ACTIONS(2006), - [anon_sym_long] = ACTIONS(2006), - [anon_sym_short] = ACTIONS(2006), - [sym_primitive_type] = ACTIONS(2006), - [anon_sym_enum] = ACTIONS(2006), - [anon_sym_NS_ENUM] = ACTIONS(2006), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2006), - [anon_sym_NS_OPTIONS] = ACTIONS(2006), - [anon_sym_struct] = ACTIONS(2006), - [anon_sym_union] = ACTIONS(2006), - [anon_sym_if] = ACTIONS(2006), - [anon_sym_switch] = ACTIONS(2006), - [anon_sym_case] = ACTIONS(2006), - [anon_sym_default] = ACTIONS(2006), - [anon_sym_while] = ACTIONS(2006), - [anon_sym_do] = ACTIONS(2006), - [anon_sym_for] = ACTIONS(2006), - [anon_sym_return] = ACTIONS(2006), - [anon_sym_break] = ACTIONS(2006), - [anon_sym_continue] = ACTIONS(2006), - [anon_sym_goto] = ACTIONS(2006), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(2006), - [sym_number_literal] = ACTIONS(2008), - [anon_sym_L_SQUOTE] = ACTIONS(2008), - [anon_sym_u_SQUOTE] = ACTIONS(2008), - [anon_sym_U_SQUOTE] = ACTIONS(2008), - [anon_sym_u8_SQUOTE] = ACTIONS(2008), - [anon_sym_SQUOTE] = ACTIONS(2008), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(2006), - [sym_false] = ACTIONS(2006), - [sym_null] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2008), - [anon_sym_ATimport] = ACTIONS(2008), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2006), - [anon_sym_ATcompatibility_alias] = ACTIONS(2008), - [anon_sym_ATprotocol] = ACTIONS(2008), - [anon_sym_ATclass] = ACTIONS(2008), - [anon_sym_ATinterface] = ACTIONS(2008), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2006), - [sym_method_attribute_specifier] = ACTIONS(2006), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2006), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2006), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2006), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2006), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2006), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2006), - [anon_sym_NS_AVAILABLE] = ACTIONS(2006), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2006), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_API_AVAILABLE] = ACTIONS(2006), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2006), - [anon_sym_API_DEPRECATED] = ACTIONS(2006), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2006), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2006), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2006), - [anon_sym___deprecated_msg] = ACTIONS(2006), - [anon_sym___deprecated_enum_msg] = ACTIONS(2006), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2006), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2006), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2006), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2006), - [anon_sym_ATimplementation] = ACTIONS(2008), - [anon_sym_typeof] = ACTIONS(2006), - [anon_sym___typeof] = ACTIONS(2006), - [anon_sym___typeof__] = ACTIONS(2006), - [sym_self] = ACTIONS(2006), - [sym_super] = ACTIONS(2006), - [sym_nil] = ACTIONS(2006), - [sym_id] = ACTIONS(2006), - [sym_instancetype] = ACTIONS(2006), - [sym_Class] = ACTIONS(2006), - [sym_SEL] = ACTIONS(2006), - [sym_IMP] = ACTIONS(2006), - [sym_BOOL] = ACTIONS(2006), - [sym_auto] = ACTIONS(2006), - [anon_sym_ATautoreleasepool] = ACTIONS(2008), - [anon_sym_ATsynchronized] = ACTIONS(2008), - [anon_sym_ATtry] = ACTIONS(2008), - [anon_sym_ATthrow] = ACTIONS(2008), - [anon_sym_ATselector] = ACTIONS(2008), - [anon_sym_ATencode] = ACTIONS(2008), - [anon_sym_AT] = ACTIONS(2006), - [sym_YES] = ACTIONS(2006), - [sym_NO] = ACTIONS(2006), - [anon_sym___builtin_available] = ACTIONS(2006), - [anon_sym_ATavailable] = ACTIONS(2008), - [anon_sym_va_arg] = ACTIONS(2006), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [765] = { - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_include_token1] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [aux_sym_preproc_if_token2] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [aux_sym_preproc_else_token1] = ACTIONS(1994), - [aux_sym_preproc_elif_token1] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym___attribute] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym___declspec] = ACTIONS(1994), - [anon_sym___cdecl] = ACTIONS(1994), - [anon_sym___clrcall] = ACTIONS(1994), - [anon_sym___stdcall] = ACTIONS(1994), - [anon_sym___fastcall] = ACTIONS(1994), - [anon_sym___thiscall] = ACTIONS(1994), - [anon_sym___vectorcall] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_in] = ACTIONS(1994), - [anon_sym_out] = ACTIONS(1994), - [anon_sym_inout] = ACTIONS(1994), - [anon_sym_bycopy] = ACTIONS(1994), - [anon_sym_byref] = ACTIONS(1994), - [anon_sym_oneway] = ACTIONS(1994), - [anon_sym__Nullable] = ACTIONS(1994), - [anon_sym__Nonnull] = ACTIONS(1994), - [anon_sym__Nullable_result] = ACTIONS(1994), - [anon_sym__Null_unspecified] = ACTIONS(1994), - [anon_sym___autoreleasing] = ACTIONS(1994), - [anon_sym___nullable] = ACTIONS(1994), - [anon_sym___nonnull] = ACTIONS(1994), - [anon_sym___strong] = ACTIONS(1994), - [anon_sym___weak] = ACTIONS(1994), - [anon_sym___bridge] = ACTIONS(1994), - [anon_sym___bridge_transfer] = ACTIONS(1994), - [anon_sym___bridge_retained] = ACTIONS(1994), - [anon_sym___unsafe_unretained] = ACTIONS(1994), - [anon_sym___block] = ACTIONS(1994), - [anon_sym___kindof] = ACTIONS(1994), - [anon_sym___unused] = ACTIONS(1994), - [anon_sym__Complex] = ACTIONS(1994), - [anon_sym___complex] = ACTIONS(1994), - [anon_sym_IBOutlet] = ACTIONS(1994), - [anon_sym_IBInspectable] = ACTIONS(1994), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_NS_ENUM] = ACTIONS(1994), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1994), - [anon_sym_NS_OPTIONS] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_case] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym_u_SQUOTE] = ACTIONS(1996), - [anon_sym_U_SQUOTE] = ACTIONS(1996), - [anon_sym_u8_SQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_u_DQUOTE] = ACTIONS(1996), - [anon_sym_U_DQUOTE] = ACTIONS(1996), - [anon_sym_u8_DQUOTE] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1996), - [anon_sym_ATimport] = ACTIONS(1996), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1994), - [anon_sym_ATcompatibility_alias] = ACTIONS(1996), - [anon_sym_ATprotocol] = ACTIONS(1996), - [anon_sym_ATclass] = ACTIONS(1996), - [anon_sym_ATinterface] = ACTIONS(1996), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1994), - [sym_method_attribute_specifier] = ACTIONS(1994), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1994), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE] = ACTIONS(1994), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_API_AVAILABLE] = ACTIONS(1994), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_API_DEPRECATED] = ACTIONS(1994), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1994), - [anon_sym___deprecated_msg] = ACTIONS(1994), - [anon_sym___deprecated_enum_msg] = ACTIONS(1994), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1994), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1994), - [anon_sym_ATimplementation] = ACTIONS(1996), - [anon_sym_typeof] = ACTIONS(1994), - [anon_sym___typeof] = ACTIONS(1994), - [anon_sym___typeof__] = ACTIONS(1994), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_nil] = ACTIONS(1994), - [sym_id] = ACTIONS(1994), - [sym_instancetype] = ACTIONS(1994), - [sym_Class] = ACTIONS(1994), - [sym_SEL] = ACTIONS(1994), - [sym_IMP] = ACTIONS(1994), - [sym_BOOL] = ACTIONS(1994), - [sym_auto] = ACTIONS(1994), - [anon_sym_ATautoreleasepool] = ACTIONS(1996), - [anon_sym_ATsynchronized] = ACTIONS(1996), - [anon_sym_ATtry] = ACTIONS(1996), - [anon_sym_ATthrow] = ACTIONS(1996), - [anon_sym_ATselector] = ACTIONS(1996), - [anon_sym_ATencode] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1994), - [sym_YES] = ACTIONS(1994), - [sym_NO] = ACTIONS(1994), - [anon_sym___builtin_available] = ACTIONS(1994), - [anon_sym_ATavailable] = ACTIONS(1996), - [anon_sym_va_arg] = ACTIONS(1994), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [766] = { - [sym_identifier] = ACTIONS(2006), - [aux_sym_preproc_include_token1] = ACTIONS(2008), - [aux_sym_preproc_def_token1] = ACTIONS(2008), - [aux_sym_preproc_if_token1] = ACTIONS(2006), - [aux_sym_preproc_if_token2] = ACTIONS(2006), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2006), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2006), - [aux_sym_preproc_else_token1] = ACTIONS(2006), - [aux_sym_preproc_elif_token1] = ACTIONS(2006), - [anon_sym_LPAREN2] = ACTIONS(2008), - [anon_sym_BANG] = ACTIONS(2008), - [anon_sym_TILDE] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_PLUS] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2008), - [anon_sym_CARET] = ACTIONS(2008), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_typedef] = ACTIONS(2006), - [anon_sym_extern] = ACTIONS(2006), - [anon_sym___attribute] = ACTIONS(2006), - [anon_sym___attribute__] = ACTIONS(2006), - [anon_sym___declspec] = ACTIONS(2006), - [anon_sym___cdecl] = ACTIONS(2006), - [anon_sym___clrcall] = ACTIONS(2006), - [anon_sym___stdcall] = ACTIONS(2006), - [anon_sym___fastcall] = ACTIONS(2006), - [anon_sym___thiscall] = ACTIONS(2006), - [anon_sym___vectorcall] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2006), - [anon_sym_auto] = ACTIONS(2006), - [anon_sym_register] = ACTIONS(2006), - [anon_sym_inline] = ACTIONS(2006), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2006), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_volatile] = ACTIONS(2006), - [anon_sym_restrict] = ACTIONS(2006), - [anon_sym__Atomic] = ACTIONS(2006), - [anon_sym_in] = ACTIONS(2006), - [anon_sym_out] = ACTIONS(2006), - [anon_sym_inout] = ACTIONS(2006), - [anon_sym_bycopy] = ACTIONS(2006), - [anon_sym_byref] = ACTIONS(2006), - [anon_sym_oneway] = ACTIONS(2006), - [anon_sym__Nullable] = ACTIONS(2006), - [anon_sym__Nonnull] = ACTIONS(2006), - [anon_sym__Nullable_result] = ACTIONS(2006), - [anon_sym__Null_unspecified] = ACTIONS(2006), - [anon_sym___autoreleasing] = ACTIONS(2006), - [anon_sym___nullable] = ACTIONS(2006), - [anon_sym___nonnull] = ACTIONS(2006), - [anon_sym___strong] = ACTIONS(2006), - [anon_sym___weak] = ACTIONS(2006), - [anon_sym___bridge] = ACTIONS(2006), - [anon_sym___bridge_transfer] = ACTIONS(2006), - [anon_sym___bridge_retained] = ACTIONS(2006), - [anon_sym___unsafe_unretained] = ACTIONS(2006), - [anon_sym___block] = ACTIONS(2006), - [anon_sym___kindof] = ACTIONS(2006), - [anon_sym___unused] = ACTIONS(2006), - [anon_sym__Complex] = ACTIONS(2006), - [anon_sym___complex] = ACTIONS(2006), - [anon_sym_IBOutlet] = ACTIONS(2006), - [anon_sym_IBInspectable] = ACTIONS(2006), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2006), - [anon_sym_signed] = ACTIONS(2006), - [anon_sym_unsigned] = ACTIONS(2006), - [anon_sym_long] = ACTIONS(2006), - [anon_sym_short] = ACTIONS(2006), - [sym_primitive_type] = ACTIONS(2006), - [anon_sym_enum] = ACTIONS(2006), - [anon_sym_NS_ENUM] = ACTIONS(2006), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2006), - [anon_sym_NS_OPTIONS] = ACTIONS(2006), - [anon_sym_struct] = ACTIONS(2006), - [anon_sym_union] = ACTIONS(2006), - [anon_sym_if] = ACTIONS(2006), - [anon_sym_switch] = ACTIONS(2006), - [anon_sym_case] = ACTIONS(2006), - [anon_sym_default] = ACTIONS(2006), - [anon_sym_while] = ACTIONS(2006), - [anon_sym_do] = ACTIONS(2006), - [anon_sym_for] = ACTIONS(2006), - [anon_sym_return] = ACTIONS(2006), - [anon_sym_break] = ACTIONS(2006), - [anon_sym_continue] = ACTIONS(2006), - [anon_sym_goto] = ACTIONS(2006), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(2006), - [sym_number_literal] = ACTIONS(2008), - [anon_sym_L_SQUOTE] = ACTIONS(2008), - [anon_sym_u_SQUOTE] = ACTIONS(2008), - [anon_sym_U_SQUOTE] = ACTIONS(2008), - [anon_sym_u8_SQUOTE] = ACTIONS(2008), - [anon_sym_SQUOTE] = ACTIONS(2008), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(2006), - [sym_false] = ACTIONS(2006), - [sym_null] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2008), - [anon_sym_ATimport] = ACTIONS(2008), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2006), - [anon_sym_ATcompatibility_alias] = ACTIONS(2008), - [anon_sym_ATprotocol] = ACTIONS(2008), - [anon_sym_ATclass] = ACTIONS(2008), - [anon_sym_ATinterface] = ACTIONS(2008), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2006), - [sym_method_attribute_specifier] = ACTIONS(2006), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2006), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2006), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2006), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2006), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2006), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2006), - [anon_sym_NS_AVAILABLE] = ACTIONS(2006), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2006), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_API_AVAILABLE] = ACTIONS(2006), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2006), - [anon_sym_API_DEPRECATED] = ACTIONS(2006), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2006), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2006), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2006), - [anon_sym___deprecated_msg] = ACTIONS(2006), - [anon_sym___deprecated_enum_msg] = ACTIONS(2006), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2006), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2006), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2006), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2006), - [anon_sym_ATimplementation] = ACTIONS(2008), - [anon_sym_typeof] = ACTIONS(2006), - [anon_sym___typeof] = ACTIONS(2006), - [anon_sym___typeof__] = ACTIONS(2006), - [sym_self] = ACTIONS(2006), - [sym_super] = ACTIONS(2006), - [sym_nil] = ACTIONS(2006), - [sym_id] = ACTIONS(2006), - [sym_instancetype] = ACTIONS(2006), - [sym_Class] = ACTIONS(2006), - [sym_SEL] = ACTIONS(2006), - [sym_IMP] = ACTIONS(2006), - [sym_BOOL] = ACTIONS(2006), - [sym_auto] = ACTIONS(2006), - [anon_sym_ATautoreleasepool] = ACTIONS(2008), - [anon_sym_ATsynchronized] = ACTIONS(2008), - [anon_sym_ATtry] = ACTIONS(2008), - [anon_sym_ATthrow] = ACTIONS(2008), - [anon_sym_ATselector] = ACTIONS(2008), - [anon_sym_ATencode] = ACTIONS(2008), - [anon_sym_AT] = ACTIONS(2006), - [sym_YES] = ACTIONS(2006), - [sym_NO] = ACTIONS(2006), - [anon_sym___builtin_available] = ACTIONS(2006), - [anon_sym_ATavailable] = ACTIONS(2008), - [anon_sym_va_arg] = ACTIONS(2006), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [767] = { - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_include_token1] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [aux_sym_preproc_if_token2] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [aux_sym_preproc_else_token1] = ACTIONS(1994), - [aux_sym_preproc_elif_token1] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym___attribute] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym___declspec] = ACTIONS(1994), - [anon_sym___cdecl] = ACTIONS(1994), - [anon_sym___clrcall] = ACTIONS(1994), - [anon_sym___stdcall] = ACTIONS(1994), - [anon_sym___fastcall] = ACTIONS(1994), - [anon_sym___thiscall] = ACTIONS(1994), - [anon_sym___vectorcall] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_in] = ACTIONS(1994), - [anon_sym_out] = ACTIONS(1994), - [anon_sym_inout] = ACTIONS(1994), - [anon_sym_bycopy] = ACTIONS(1994), - [anon_sym_byref] = ACTIONS(1994), - [anon_sym_oneway] = ACTIONS(1994), - [anon_sym__Nullable] = ACTIONS(1994), - [anon_sym__Nonnull] = ACTIONS(1994), - [anon_sym__Nullable_result] = ACTIONS(1994), - [anon_sym__Null_unspecified] = ACTIONS(1994), - [anon_sym___autoreleasing] = ACTIONS(1994), - [anon_sym___nullable] = ACTIONS(1994), - [anon_sym___nonnull] = ACTIONS(1994), - [anon_sym___strong] = ACTIONS(1994), - [anon_sym___weak] = ACTIONS(1994), - [anon_sym___bridge] = ACTIONS(1994), - [anon_sym___bridge_transfer] = ACTIONS(1994), - [anon_sym___bridge_retained] = ACTIONS(1994), - [anon_sym___unsafe_unretained] = ACTIONS(1994), - [anon_sym___block] = ACTIONS(1994), - [anon_sym___kindof] = ACTIONS(1994), - [anon_sym___unused] = ACTIONS(1994), - [anon_sym__Complex] = ACTIONS(1994), - [anon_sym___complex] = ACTIONS(1994), - [anon_sym_IBOutlet] = ACTIONS(1994), - [anon_sym_IBInspectable] = ACTIONS(1994), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_NS_ENUM] = ACTIONS(1994), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1994), - [anon_sym_NS_OPTIONS] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_case] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym_u_SQUOTE] = ACTIONS(1996), - [anon_sym_U_SQUOTE] = ACTIONS(1996), - [anon_sym_u8_SQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_u_DQUOTE] = ACTIONS(1996), - [anon_sym_U_DQUOTE] = ACTIONS(1996), - [anon_sym_u8_DQUOTE] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1996), - [anon_sym_ATimport] = ACTIONS(1996), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1994), - [anon_sym_ATcompatibility_alias] = ACTIONS(1996), - [anon_sym_ATprotocol] = ACTIONS(1996), - [anon_sym_ATclass] = ACTIONS(1996), - [anon_sym_ATinterface] = ACTIONS(1996), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1994), - [sym_method_attribute_specifier] = ACTIONS(1994), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1994), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE] = ACTIONS(1994), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_API_AVAILABLE] = ACTIONS(1994), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_API_DEPRECATED] = ACTIONS(1994), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1994), - [anon_sym___deprecated_msg] = ACTIONS(1994), - [anon_sym___deprecated_enum_msg] = ACTIONS(1994), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1994), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1994), - [anon_sym_ATimplementation] = ACTIONS(1996), - [anon_sym_typeof] = ACTIONS(1994), - [anon_sym___typeof] = ACTIONS(1994), - [anon_sym___typeof__] = ACTIONS(1994), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_nil] = ACTIONS(1994), - [sym_id] = ACTIONS(1994), - [sym_instancetype] = ACTIONS(1994), - [sym_Class] = ACTIONS(1994), - [sym_SEL] = ACTIONS(1994), - [sym_IMP] = ACTIONS(1994), - [sym_BOOL] = ACTIONS(1994), - [sym_auto] = ACTIONS(1994), - [anon_sym_ATautoreleasepool] = ACTIONS(1996), - [anon_sym_ATsynchronized] = ACTIONS(1996), - [anon_sym_ATtry] = ACTIONS(1996), - [anon_sym_ATthrow] = ACTIONS(1996), - [anon_sym_ATselector] = ACTIONS(1996), - [anon_sym_ATencode] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1994), - [sym_YES] = ACTIONS(1994), - [sym_NO] = ACTIONS(1994), - [anon_sym___builtin_available] = ACTIONS(1994), - [anon_sym_ATavailable] = ACTIONS(1996), - [anon_sym_va_arg] = ACTIONS(1994), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [768] = { - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_include_token1] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [aux_sym_preproc_if_token2] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [aux_sym_preproc_else_token1] = ACTIONS(1994), - [aux_sym_preproc_elif_token1] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym___attribute] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym___declspec] = ACTIONS(1994), - [anon_sym___cdecl] = ACTIONS(1994), - [anon_sym___clrcall] = ACTIONS(1994), - [anon_sym___stdcall] = ACTIONS(1994), - [anon_sym___fastcall] = ACTIONS(1994), - [anon_sym___thiscall] = ACTIONS(1994), - [anon_sym___vectorcall] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_in] = ACTIONS(1994), - [anon_sym_out] = ACTIONS(1994), - [anon_sym_inout] = ACTIONS(1994), - [anon_sym_bycopy] = ACTIONS(1994), - [anon_sym_byref] = ACTIONS(1994), - [anon_sym_oneway] = ACTIONS(1994), - [anon_sym__Nullable] = ACTIONS(1994), - [anon_sym__Nonnull] = ACTIONS(1994), - [anon_sym__Nullable_result] = ACTIONS(1994), - [anon_sym__Null_unspecified] = ACTIONS(1994), - [anon_sym___autoreleasing] = ACTIONS(1994), - [anon_sym___nullable] = ACTIONS(1994), - [anon_sym___nonnull] = ACTIONS(1994), - [anon_sym___strong] = ACTIONS(1994), - [anon_sym___weak] = ACTIONS(1994), - [anon_sym___bridge] = ACTIONS(1994), - [anon_sym___bridge_transfer] = ACTIONS(1994), - [anon_sym___bridge_retained] = ACTIONS(1994), - [anon_sym___unsafe_unretained] = ACTIONS(1994), - [anon_sym___block] = ACTIONS(1994), - [anon_sym___kindof] = ACTIONS(1994), - [anon_sym___unused] = ACTIONS(1994), - [anon_sym__Complex] = ACTIONS(1994), - [anon_sym___complex] = ACTIONS(1994), - [anon_sym_IBOutlet] = ACTIONS(1994), - [anon_sym_IBInspectable] = ACTIONS(1994), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_NS_ENUM] = ACTIONS(1994), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1994), - [anon_sym_NS_OPTIONS] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_case] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym_u_SQUOTE] = ACTIONS(1996), - [anon_sym_U_SQUOTE] = ACTIONS(1996), - [anon_sym_u8_SQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_u_DQUOTE] = ACTIONS(1996), - [anon_sym_U_DQUOTE] = ACTIONS(1996), - [anon_sym_u8_DQUOTE] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1996), - [anon_sym_ATimport] = ACTIONS(1996), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1994), - [anon_sym_ATcompatibility_alias] = ACTIONS(1996), - [anon_sym_ATprotocol] = ACTIONS(1996), - [anon_sym_ATclass] = ACTIONS(1996), - [anon_sym_ATinterface] = ACTIONS(1996), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1994), - [sym_method_attribute_specifier] = ACTIONS(1994), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1994), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE] = ACTIONS(1994), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_API_AVAILABLE] = ACTIONS(1994), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_API_DEPRECATED] = ACTIONS(1994), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1994), - [anon_sym___deprecated_msg] = ACTIONS(1994), - [anon_sym___deprecated_enum_msg] = ACTIONS(1994), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1994), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1994), - [anon_sym_ATimplementation] = ACTIONS(1996), - [anon_sym_typeof] = ACTIONS(1994), - [anon_sym___typeof] = ACTIONS(1994), - [anon_sym___typeof__] = ACTIONS(1994), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_nil] = ACTIONS(1994), - [sym_id] = ACTIONS(1994), - [sym_instancetype] = ACTIONS(1994), - [sym_Class] = ACTIONS(1994), - [sym_SEL] = ACTIONS(1994), - [sym_IMP] = ACTIONS(1994), - [sym_BOOL] = ACTIONS(1994), - [sym_auto] = ACTIONS(1994), - [anon_sym_ATautoreleasepool] = ACTIONS(1996), - [anon_sym_ATsynchronized] = ACTIONS(1996), - [anon_sym_ATtry] = ACTIONS(1996), - [anon_sym_ATthrow] = ACTIONS(1996), - [anon_sym_ATselector] = ACTIONS(1996), - [anon_sym_ATencode] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1994), - [sym_YES] = ACTIONS(1994), - [sym_NO] = ACTIONS(1994), - [anon_sym___builtin_available] = ACTIONS(1994), - [anon_sym_ATavailable] = ACTIONS(1996), - [anon_sym_va_arg] = ACTIONS(1994), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [769] = { - [sym_identifier] = ACTIONS(2010), - [aux_sym_preproc_include_token1] = ACTIONS(2012), - [aux_sym_preproc_def_token1] = ACTIONS(2012), - [aux_sym_preproc_if_token1] = ACTIONS(2010), - [aux_sym_preproc_if_token2] = ACTIONS(2010), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2010), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2010), - [aux_sym_preproc_else_token1] = ACTIONS(2010), - [aux_sym_preproc_elif_token1] = ACTIONS(2010), - [anon_sym_LPAREN2] = ACTIONS(2012), - [anon_sym_BANG] = ACTIONS(2012), - [anon_sym_TILDE] = ACTIONS(2012), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_PLUS] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2012), - [anon_sym_CARET] = ACTIONS(2012), - [anon_sym_AMP] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2012), - [anon_sym_typedef] = ACTIONS(2010), - [anon_sym_extern] = ACTIONS(2010), - [anon_sym___attribute] = ACTIONS(2010), - [anon_sym___attribute__] = ACTIONS(2010), - [anon_sym___declspec] = ACTIONS(2010), - [anon_sym___cdecl] = ACTIONS(2010), - [anon_sym___clrcall] = ACTIONS(2010), - [anon_sym___stdcall] = ACTIONS(2010), - [anon_sym___fastcall] = ACTIONS(2010), - [anon_sym___thiscall] = ACTIONS(2010), - [anon_sym___vectorcall] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2012), - [anon_sym_LBRACK] = ACTIONS(2012), - [anon_sym_static] = ACTIONS(2010), - [anon_sym_auto] = ACTIONS(2010), - [anon_sym_register] = ACTIONS(2010), - [anon_sym_inline] = ACTIONS(2010), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2010), - [anon_sym_const] = ACTIONS(2010), - [anon_sym_volatile] = ACTIONS(2010), - [anon_sym_restrict] = ACTIONS(2010), - [anon_sym__Atomic] = ACTIONS(2010), - [anon_sym_in] = ACTIONS(2010), - [anon_sym_out] = ACTIONS(2010), - [anon_sym_inout] = ACTIONS(2010), - [anon_sym_bycopy] = ACTIONS(2010), - [anon_sym_byref] = ACTIONS(2010), - [anon_sym_oneway] = ACTIONS(2010), - [anon_sym__Nullable] = ACTIONS(2010), - [anon_sym__Nonnull] = ACTIONS(2010), - [anon_sym__Nullable_result] = ACTIONS(2010), - [anon_sym__Null_unspecified] = ACTIONS(2010), - [anon_sym___autoreleasing] = ACTIONS(2010), - [anon_sym___nullable] = ACTIONS(2010), - [anon_sym___nonnull] = ACTIONS(2010), - [anon_sym___strong] = ACTIONS(2010), - [anon_sym___weak] = ACTIONS(2010), - [anon_sym___bridge] = ACTIONS(2010), - [anon_sym___bridge_transfer] = ACTIONS(2010), - [anon_sym___bridge_retained] = ACTIONS(2010), - [anon_sym___unsafe_unretained] = ACTIONS(2010), - [anon_sym___block] = ACTIONS(2010), - [anon_sym___kindof] = ACTIONS(2010), - [anon_sym___unused] = ACTIONS(2010), - [anon_sym__Complex] = ACTIONS(2010), - [anon_sym___complex] = ACTIONS(2010), - [anon_sym_IBOutlet] = ACTIONS(2010), - [anon_sym_IBInspectable] = ACTIONS(2010), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2010), - [anon_sym_signed] = ACTIONS(2010), - [anon_sym_unsigned] = ACTIONS(2010), - [anon_sym_long] = ACTIONS(2010), - [anon_sym_short] = ACTIONS(2010), - [sym_primitive_type] = ACTIONS(2010), - [anon_sym_enum] = ACTIONS(2010), - [anon_sym_NS_ENUM] = ACTIONS(2010), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2010), - [anon_sym_NS_OPTIONS] = ACTIONS(2010), - [anon_sym_struct] = ACTIONS(2010), - [anon_sym_union] = ACTIONS(2010), - [anon_sym_if] = ACTIONS(2010), - [anon_sym_switch] = ACTIONS(2010), - [anon_sym_case] = ACTIONS(2010), - [anon_sym_default] = ACTIONS(2010), - [anon_sym_while] = ACTIONS(2010), - [anon_sym_do] = ACTIONS(2010), - [anon_sym_for] = ACTIONS(2010), - [anon_sym_return] = ACTIONS(2010), - [anon_sym_break] = ACTIONS(2010), - [anon_sym_continue] = ACTIONS(2010), - [anon_sym_goto] = ACTIONS(2010), - [anon_sym_DASH_DASH] = ACTIONS(2012), - [anon_sym_PLUS_PLUS] = ACTIONS(2012), - [anon_sym_sizeof] = ACTIONS(2010), - [sym_number_literal] = ACTIONS(2012), - [anon_sym_L_SQUOTE] = ACTIONS(2012), - [anon_sym_u_SQUOTE] = ACTIONS(2012), - [anon_sym_U_SQUOTE] = ACTIONS(2012), - [anon_sym_u8_SQUOTE] = ACTIONS(2012), - [anon_sym_SQUOTE] = ACTIONS(2012), - [anon_sym_L_DQUOTE] = ACTIONS(2012), - [anon_sym_u_DQUOTE] = ACTIONS(2012), - [anon_sym_U_DQUOTE] = ACTIONS(2012), - [anon_sym_u8_DQUOTE] = ACTIONS(2012), - [anon_sym_DQUOTE] = ACTIONS(2012), - [sym_true] = ACTIONS(2010), - [sym_false] = ACTIONS(2010), - [sym_null] = ACTIONS(2010), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2012), - [anon_sym_ATimport] = ACTIONS(2012), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2010), - [anon_sym_ATcompatibility_alias] = ACTIONS(2012), - [anon_sym_ATprotocol] = ACTIONS(2012), - [anon_sym_ATclass] = ACTIONS(2012), - [anon_sym_ATinterface] = ACTIONS(2012), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2010), - [sym_method_attribute_specifier] = ACTIONS(2010), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2010), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2010), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2010), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2010), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2010), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2010), - [anon_sym_NS_AVAILABLE] = ACTIONS(2010), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2010), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2010), - [anon_sym_API_AVAILABLE] = ACTIONS(2010), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2010), - [anon_sym_API_DEPRECATED] = ACTIONS(2010), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2010), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2010), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2010), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2010), - [anon_sym___deprecated_msg] = ACTIONS(2010), - [anon_sym___deprecated_enum_msg] = ACTIONS(2010), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2010), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2010), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2010), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2010), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2010), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2010), - [anon_sym_ATimplementation] = ACTIONS(2012), - [anon_sym_typeof] = ACTIONS(2010), - [anon_sym___typeof] = ACTIONS(2010), - [anon_sym___typeof__] = ACTIONS(2010), - [sym_self] = ACTIONS(2010), - [sym_super] = ACTIONS(2010), - [sym_nil] = ACTIONS(2010), - [sym_id] = ACTIONS(2010), - [sym_instancetype] = ACTIONS(2010), - [sym_Class] = ACTIONS(2010), - [sym_SEL] = ACTIONS(2010), - [sym_IMP] = ACTIONS(2010), - [sym_BOOL] = ACTIONS(2010), - [sym_auto] = ACTIONS(2010), - [anon_sym_ATautoreleasepool] = ACTIONS(2012), - [anon_sym_ATsynchronized] = ACTIONS(2012), - [anon_sym_ATtry] = ACTIONS(2012), - [anon_sym_ATthrow] = ACTIONS(2012), - [anon_sym_ATselector] = ACTIONS(2012), - [anon_sym_ATencode] = ACTIONS(2012), - [anon_sym_AT] = ACTIONS(2010), - [sym_YES] = ACTIONS(2010), - [sym_NO] = ACTIONS(2010), - [anon_sym___builtin_available] = ACTIONS(2010), - [anon_sym_ATavailable] = ACTIONS(2012), - [anon_sym_va_arg] = ACTIONS(2010), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [770] = { - [sym_identifier] = ACTIONS(2014), - [aux_sym_preproc_include_token1] = ACTIONS(2016), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2014), - [aux_sym_preproc_if_token2] = ACTIONS(2014), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2014), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2014), - [aux_sym_preproc_else_token1] = ACTIONS(2014), - [aux_sym_preproc_elif_token1] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2016), - [anon_sym_BANG] = ACTIONS(2016), - [anon_sym_TILDE] = ACTIONS(2016), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_PLUS] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2016), - [anon_sym_CARET] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2016), - [anon_sym_SEMI] = ACTIONS(2016), - [anon_sym_typedef] = ACTIONS(2014), - [anon_sym_extern] = ACTIONS(2014), - [anon_sym___attribute] = ACTIONS(2014), - [anon_sym___attribute__] = ACTIONS(2014), - [anon_sym___declspec] = ACTIONS(2014), - [anon_sym___cdecl] = ACTIONS(2014), - [anon_sym___clrcall] = ACTIONS(2014), - [anon_sym___stdcall] = ACTIONS(2014), - [anon_sym___fastcall] = ACTIONS(2014), - [anon_sym___thiscall] = ACTIONS(2014), - [anon_sym___vectorcall] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2016), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2014), - [anon_sym_auto] = ACTIONS(2014), - [anon_sym_register] = ACTIONS(2014), - [anon_sym_inline] = ACTIONS(2014), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2014), - [anon_sym_const] = ACTIONS(2014), - [anon_sym_volatile] = ACTIONS(2014), - [anon_sym_restrict] = ACTIONS(2014), - [anon_sym__Atomic] = ACTIONS(2014), - [anon_sym_in] = ACTIONS(2014), - [anon_sym_out] = ACTIONS(2014), - [anon_sym_inout] = ACTIONS(2014), - [anon_sym_bycopy] = ACTIONS(2014), - [anon_sym_byref] = ACTIONS(2014), - [anon_sym_oneway] = ACTIONS(2014), - [anon_sym__Nullable] = ACTIONS(2014), - [anon_sym__Nonnull] = ACTIONS(2014), - [anon_sym__Nullable_result] = ACTIONS(2014), - [anon_sym__Null_unspecified] = ACTIONS(2014), - [anon_sym___autoreleasing] = ACTIONS(2014), - [anon_sym___nullable] = ACTIONS(2014), - [anon_sym___nonnull] = ACTIONS(2014), - [anon_sym___strong] = ACTIONS(2014), - [anon_sym___weak] = ACTIONS(2014), - [anon_sym___bridge] = ACTIONS(2014), - [anon_sym___bridge_transfer] = ACTIONS(2014), - [anon_sym___bridge_retained] = ACTIONS(2014), - [anon_sym___unsafe_unretained] = ACTIONS(2014), - [anon_sym___block] = ACTIONS(2014), - [anon_sym___kindof] = ACTIONS(2014), - [anon_sym___unused] = ACTIONS(2014), - [anon_sym__Complex] = ACTIONS(2014), - [anon_sym___complex] = ACTIONS(2014), - [anon_sym_IBOutlet] = ACTIONS(2014), - [anon_sym_IBInspectable] = ACTIONS(2014), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2014), - [anon_sym_signed] = ACTIONS(2014), - [anon_sym_unsigned] = ACTIONS(2014), - [anon_sym_long] = ACTIONS(2014), - [anon_sym_short] = ACTIONS(2014), - [sym_primitive_type] = ACTIONS(2014), - [anon_sym_enum] = ACTIONS(2014), - [anon_sym_NS_ENUM] = ACTIONS(2014), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2014), - [anon_sym_NS_OPTIONS] = ACTIONS(2014), - [anon_sym_struct] = ACTIONS(2014), - [anon_sym_union] = ACTIONS(2014), - [anon_sym_if] = ACTIONS(2014), - [anon_sym_switch] = ACTIONS(2014), - [anon_sym_case] = ACTIONS(2014), - [anon_sym_default] = ACTIONS(2014), - [anon_sym_while] = ACTIONS(2014), - [anon_sym_do] = ACTIONS(2014), - [anon_sym_for] = ACTIONS(2014), - [anon_sym_return] = ACTIONS(2014), - [anon_sym_break] = ACTIONS(2014), - [anon_sym_continue] = ACTIONS(2014), - [anon_sym_goto] = ACTIONS(2014), - [anon_sym_DASH_DASH] = ACTIONS(2016), - [anon_sym_PLUS_PLUS] = ACTIONS(2016), - [anon_sym_sizeof] = ACTIONS(2014), - [sym_number_literal] = ACTIONS(2016), - [anon_sym_L_SQUOTE] = ACTIONS(2016), - [anon_sym_u_SQUOTE] = ACTIONS(2016), - [anon_sym_U_SQUOTE] = ACTIONS(2016), - [anon_sym_u8_SQUOTE] = ACTIONS(2016), - [anon_sym_SQUOTE] = ACTIONS(2016), - [anon_sym_L_DQUOTE] = ACTIONS(2016), - [anon_sym_u_DQUOTE] = ACTIONS(2016), - [anon_sym_U_DQUOTE] = ACTIONS(2016), - [anon_sym_u8_DQUOTE] = ACTIONS(2016), - [anon_sym_DQUOTE] = ACTIONS(2016), - [sym_true] = ACTIONS(2014), - [sym_false] = ACTIONS(2014), - [sym_null] = ACTIONS(2014), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2016), - [anon_sym_ATimport] = ACTIONS(2016), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2014), - [anon_sym_ATcompatibility_alias] = ACTIONS(2016), - [anon_sym_ATprotocol] = ACTIONS(2016), - [anon_sym_ATclass] = ACTIONS(2016), - [anon_sym_ATinterface] = ACTIONS(2016), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2014), - [sym_method_attribute_specifier] = ACTIONS(2014), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2014), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2014), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2014), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2014), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2014), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2014), - [anon_sym_NS_AVAILABLE] = ACTIONS(2014), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2014), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2014), - [anon_sym_API_AVAILABLE] = ACTIONS(2014), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2014), - [anon_sym_API_DEPRECATED] = ACTIONS(2014), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2014), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2014), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2014), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2014), - [anon_sym___deprecated_msg] = ACTIONS(2014), - [anon_sym___deprecated_enum_msg] = ACTIONS(2014), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2014), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2014), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2014), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2014), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2014), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2014), - [anon_sym_ATimplementation] = ACTIONS(2016), - [anon_sym_typeof] = ACTIONS(2014), - [anon_sym___typeof] = ACTIONS(2014), - [anon_sym___typeof__] = ACTIONS(2014), - [sym_self] = ACTIONS(2014), - [sym_super] = ACTIONS(2014), - [sym_nil] = ACTIONS(2014), - [sym_id] = ACTIONS(2014), - [sym_instancetype] = ACTIONS(2014), - [sym_Class] = ACTIONS(2014), - [sym_SEL] = ACTIONS(2014), - [sym_IMP] = ACTIONS(2014), - [sym_BOOL] = ACTIONS(2014), - [sym_auto] = ACTIONS(2014), - [anon_sym_ATautoreleasepool] = ACTIONS(2016), - [anon_sym_ATsynchronized] = ACTIONS(2016), - [anon_sym_ATtry] = ACTIONS(2016), - [anon_sym_ATthrow] = ACTIONS(2016), - [anon_sym_ATselector] = ACTIONS(2016), - [anon_sym_ATencode] = ACTIONS(2016), - [anon_sym_AT] = ACTIONS(2014), - [sym_YES] = ACTIONS(2014), - [sym_NO] = ACTIONS(2014), - [anon_sym___builtin_available] = ACTIONS(2014), - [anon_sym_ATavailable] = ACTIONS(2016), - [anon_sym_va_arg] = ACTIONS(2014), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [771] = { - [sym_identifier] = ACTIONS(2018), - [aux_sym_preproc_include_token1] = ACTIONS(2020), - [aux_sym_preproc_def_token1] = ACTIONS(2020), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_if_token2] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2018), - [aux_sym_preproc_else_token1] = ACTIONS(2018), - [aux_sym_preproc_elif_token1] = ACTIONS(2018), - [anon_sym_LPAREN2] = ACTIONS(2020), - [anon_sym_BANG] = ACTIONS(2020), - [anon_sym_TILDE] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2018), - [anon_sym_PLUS] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_CARET] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_typedef] = ACTIONS(2018), - [anon_sym_extern] = ACTIONS(2018), - [anon_sym___attribute] = ACTIONS(2018), - [anon_sym___attribute__] = ACTIONS(2018), - [anon_sym___declspec] = ACTIONS(2018), - [anon_sym___cdecl] = ACTIONS(2018), - [anon_sym___clrcall] = ACTIONS(2018), - [anon_sym___stdcall] = ACTIONS(2018), - [anon_sym___fastcall] = ACTIONS(2018), - [anon_sym___thiscall] = ACTIONS(2018), - [anon_sym___vectorcall] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2020), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2018), - [anon_sym_auto] = ACTIONS(2018), - [anon_sym_register] = ACTIONS(2018), - [anon_sym_inline] = ACTIONS(2018), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2018), - [anon_sym_const] = ACTIONS(2018), - [anon_sym_volatile] = ACTIONS(2018), - [anon_sym_restrict] = ACTIONS(2018), - [anon_sym__Atomic] = ACTIONS(2018), - [anon_sym_in] = ACTIONS(2018), - [anon_sym_out] = ACTIONS(2018), - [anon_sym_inout] = ACTIONS(2018), - [anon_sym_bycopy] = ACTIONS(2018), - [anon_sym_byref] = ACTIONS(2018), - [anon_sym_oneway] = ACTIONS(2018), - [anon_sym__Nullable] = ACTIONS(2018), - [anon_sym__Nonnull] = ACTIONS(2018), - [anon_sym__Nullable_result] = ACTIONS(2018), - [anon_sym__Null_unspecified] = ACTIONS(2018), - [anon_sym___autoreleasing] = ACTIONS(2018), - [anon_sym___nullable] = ACTIONS(2018), - [anon_sym___nonnull] = ACTIONS(2018), - [anon_sym___strong] = ACTIONS(2018), - [anon_sym___weak] = ACTIONS(2018), - [anon_sym___bridge] = ACTIONS(2018), - [anon_sym___bridge_transfer] = ACTIONS(2018), - [anon_sym___bridge_retained] = ACTIONS(2018), - [anon_sym___unsafe_unretained] = ACTIONS(2018), - [anon_sym___block] = ACTIONS(2018), - [anon_sym___kindof] = ACTIONS(2018), - [anon_sym___unused] = ACTIONS(2018), - [anon_sym__Complex] = ACTIONS(2018), - [anon_sym___complex] = ACTIONS(2018), - [anon_sym_IBOutlet] = ACTIONS(2018), - [anon_sym_IBInspectable] = ACTIONS(2018), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2018), - [anon_sym_signed] = ACTIONS(2018), - [anon_sym_unsigned] = ACTIONS(2018), - [anon_sym_long] = ACTIONS(2018), - [anon_sym_short] = ACTIONS(2018), - [sym_primitive_type] = ACTIONS(2018), - [anon_sym_enum] = ACTIONS(2018), - [anon_sym_NS_ENUM] = ACTIONS(2018), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2018), - [anon_sym_NS_OPTIONS] = ACTIONS(2018), - [anon_sym_struct] = ACTIONS(2018), - [anon_sym_union] = ACTIONS(2018), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_switch] = ACTIONS(2018), - [anon_sym_case] = ACTIONS(2018), - [anon_sym_default] = ACTIONS(2018), - [anon_sym_while] = ACTIONS(2018), - [anon_sym_do] = ACTIONS(2018), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_return] = ACTIONS(2018), - [anon_sym_break] = ACTIONS(2018), - [anon_sym_continue] = ACTIONS(2018), - [anon_sym_goto] = ACTIONS(2018), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2018), - [sym_number_literal] = ACTIONS(2020), - [anon_sym_L_SQUOTE] = ACTIONS(2020), - [anon_sym_u_SQUOTE] = ACTIONS(2020), - [anon_sym_U_SQUOTE] = ACTIONS(2020), - [anon_sym_u8_SQUOTE] = ACTIONS(2020), - [anon_sym_SQUOTE] = ACTIONS(2020), - [anon_sym_L_DQUOTE] = ACTIONS(2020), - [anon_sym_u_DQUOTE] = ACTIONS(2020), - [anon_sym_U_DQUOTE] = ACTIONS(2020), - [anon_sym_u8_DQUOTE] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [sym_true] = ACTIONS(2018), - [sym_false] = ACTIONS(2018), - [sym_null] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2020), - [anon_sym_ATimport] = ACTIONS(2020), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2018), - [anon_sym_ATcompatibility_alias] = ACTIONS(2020), - [anon_sym_ATprotocol] = ACTIONS(2020), - [anon_sym_ATclass] = ACTIONS(2020), - [anon_sym_ATinterface] = ACTIONS(2020), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2018), - [sym_method_attribute_specifier] = ACTIONS(2018), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2018), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2018), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2018), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2018), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2018), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2018), - [anon_sym_NS_AVAILABLE] = ACTIONS(2018), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2018), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2018), - [anon_sym_API_AVAILABLE] = ACTIONS(2018), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2018), - [anon_sym_API_DEPRECATED] = ACTIONS(2018), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2018), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2018), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2018), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2018), - [anon_sym___deprecated_msg] = ACTIONS(2018), - [anon_sym___deprecated_enum_msg] = ACTIONS(2018), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2018), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2018), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2018), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2018), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2018), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2018), - [anon_sym_ATimplementation] = ACTIONS(2020), - [anon_sym_typeof] = ACTIONS(2018), - [anon_sym___typeof] = ACTIONS(2018), - [anon_sym___typeof__] = ACTIONS(2018), - [sym_self] = ACTIONS(2018), - [sym_super] = ACTIONS(2018), - [sym_nil] = ACTIONS(2018), - [sym_id] = ACTIONS(2018), - [sym_instancetype] = ACTIONS(2018), - [sym_Class] = ACTIONS(2018), - [sym_SEL] = ACTIONS(2018), - [sym_IMP] = ACTIONS(2018), - [sym_BOOL] = ACTIONS(2018), - [sym_auto] = ACTIONS(2018), - [anon_sym_ATautoreleasepool] = ACTIONS(2020), - [anon_sym_ATsynchronized] = ACTIONS(2020), - [anon_sym_ATtry] = ACTIONS(2020), - [anon_sym_ATthrow] = ACTIONS(2020), - [anon_sym_ATselector] = ACTIONS(2020), - [anon_sym_ATencode] = ACTIONS(2020), - [anon_sym_AT] = ACTIONS(2018), - [sym_YES] = ACTIONS(2018), - [sym_NO] = ACTIONS(2018), - [anon_sym___builtin_available] = ACTIONS(2018), - [anon_sym_ATavailable] = ACTIONS(2020), - [anon_sym_va_arg] = ACTIONS(2018), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [772] = { - [sym_identifier] = ACTIONS(2022), - [aux_sym_preproc_include_token1] = ACTIONS(2024), - [aux_sym_preproc_def_token1] = ACTIONS(2024), - [aux_sym_preproc_if_token1] = ACTIONS(2022), - [aux_sym_preproc_if_token2] = ACTIONS(2022), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2022), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2022), - [aux_sym_preproc_else_token1] = ACTIONS(2022), - [aux_sym_preproc_elif_token1] = ACTIONS(2022), - [anon_sym_LPAREN2] = ACTIONS(2024), - [anon_sym_BANG] = ACTIONS(2024), - [anon_sym_TILDE] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2022), - [anon_sym_PLUS] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_typedef] = ACTIONS(2022), - [anon_sym_extern] = ACTIONS(2022), - [anon_sym___attribute] = ACTIONS(2022), - [anon_sym___attribute__] = ACTIONS(2022), - [anon_sym___declspec] = ACTIONS(2022), - [anon_sym___cdecl] = ACTIONS(2022), - [anon_sym___clrcall] = ACTIONS(2022), - [anon_sym___stdcall] = ACTIONS(2022), - [anon_sym___fastcall] = ACTIONS(2022), - [anon_sym___thiscall] = ACTIONS(2022), - [anon_sym___vectorcall] = ACTIONS(2022), - [anon_sym_LBRACE] = ACTIONS(2024), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_static] = ACTIONS(2022), - [anon_sym_auto] = ACTIONS(2022), - [anon_sym_register] = ACTIONS(2022), - [anon_sym_inline] = ACTIONS(2022), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2022), - [anon_sym_const] = ACTIONS(2022), - [anon_sym_volatile] = ACTIONS(2022), - [anon_sym_restrict] = ACTIONS(2022), - [anon_sym__Atomic] = ACTIONS(2022), - [anon_sym_in] = ACTIONS(2022), - [anon_sym_out] = ACTIONS(2022), - [anon_sym_inout] = ACTIONS(2022), - [anon_sym_bycopy] = ACTIONS(2022), - [anon_sym_byref] = ACTIONS(2022), - [anon_sym_oneway] = ACTIONS(2022), - [anon_sym__Nullable] = ACTIONS(2022), - [anon_sym__Nonnull] = ACTIONS(2022), - [anon_sym__Nullable_result] = ACTIONS(2022), - [anon_sym__Null_unspecified] = ACTIONS(2022), - [anon_sym___autoreleasing] = ACTIONS(2022), - [anon_sym___nullable] = ACTIONS(2022), - [anon_sym___nonnull] = ACTIONS(2022), - [anon_sym___strong] = ACTIONS(2022), - [anon_sym___weak] = ACTIONS(2022), - [anon_sym___bridge] = ACTIONS(2022), - [anon_sym___bridge_transfer] = ACTIONS(2022), - [anon_sym___bridge_retained] = ACTIONS(2022), - [anon_sym___unsafe_unretained] = ACTIONS(2022), - [anon_sym___block] = ACTIONS(2022), - [anon_sym___kindof] = ACTIONS(2022), - [anon_sym___unused] = ACTIONS(2022), - [anon_sym__Complex] = ACTIONS(2022), - [anon_sym___complex] = ACTIONS(2022), - [anon_sym_IBOutlet] = ACTIONS(2022), - [anon_sym_IBInspectable] = ACTIONS(2022), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2022), - [anon_sym_signed] = ACTIONS(2022), - [anon_sym_unsigned] = ACTIONS(2022), - [anon_sym_long] = ACTIONS(2022), - [anon_sym_short] = ACTIONS(2022), - [sym_primitive_type] = ACTIONS(2022), - [anon_sym_enum] = ACTIONS(2022), - [anon_sym_NS_ENUM] = ACTIONS(2022), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2022), - [anon_sym_NS_OPTIONS] = ACTIONS(2022), - [anon_sym_struct] = ACTIONS(2022), - [anon_sym_union] = ACTIONS(2022), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_switch] = ACTIONS(2022), - [anon_sym_case] = ACTIONS(2022), - [anon_sym_default] = ACTIONS(2022), - [anon_sym_while] = ACTIONS(2022), - [anon_sym_do] = ACTIONS(2022), - [anon_sym_for] = ACTIONS(2022), - [anon_sym_return] = ACTIONS(2022), - [anon_sym_break] = ACTIONS(2022), - [anon_sym_continue] = ACTIONS(2022), - [anon_sym_goto] = ACTIONS(2022), - [anon_sym_DASH_DASH] = ACTIONS(2024), - [anon_sym_PLUS_PLUS] = ACTIONS(2024), - [anon_sym_sizeof] = ACTIONS(2022), - [sym_number_literal] = ACTIONS(2024), - [anon_sym_L_SQUOTE] = ACTIONS(2024), - [anon_sym_u_SQUOTE] = ACTIONS(2024), - [anon_sym_U_SQUOTE] = ACTIONS(2024), - [anon_sym_u8_SQUOTE] = ACTIONS(2024), - [anon_sym_SQUOTE] = ACTIONS(2024), - [anon_sym_L_DQUOTE] = ACTIONS(2024), - [anon_sym_u_DQUOTE] = ACTIONS(2024), - [anon_sym_U_DQUOTE] = ACTIONS(2024), - [anon_sym_u8_DQUOTE] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2024), - [sym_true] = ACTIONS(2022), - [sym_false] = ACTIONS(2022), - [sym_null] = ACTIONS(2022), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2024), - [anon_sym_ATimport] = ACTIONS(2024), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2022), - [anon_sym_ATcompatibility_alias] = ACTIONS(2024), - [anon_sym_ATprotocol] = ACTIONS(2024), - [anon_sym_ATclass] = ACTIONS(2024), - [anon_sym_ATinterface] = ACTIONS(2024), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2022), - [sym_method_attribute_specifier] = ACTIONS(2022), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2022), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2022), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2022), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2022), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2022), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2022), - [anon_sym_NS_AVAILABLE] = ACTIONS(2022), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2022), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_API_AVAILABLE] = ACTIONS(2022), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2022), - [anon_sym_API_DEPRECATED] = ACTIONS(2022), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2022), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2022), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2022), - [anon_sym___deprecated_msg] = ACTIONS(2022), - [anon_sym___deprecated_enum_msg] = ACTIONS(2022), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2022), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2022), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2022), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2022), - [anon_sym_ATimplementation] = ACTIONS(2024), - [anon_sym_typeof] = ACTIONS(2022), - [anon_sym___typeof] = ACTIONS(2022), - [anon_sym___typeof__] = ACTIONS(2022), - [sym_self] = ACTIONS(2022), - [sym_super] = ACTIONS(2022), - [sym_nil] = ACTIONS(2022), - [sym_id] = ACTIONS(2022), - [sym_instancetype] = ACTIONS(2022), - [sym_Class] = ACTIONS(2022), - [sym_SEL] = ACTIONS(2022), - [sym_IMP] = ACTIONS(2022), - [sym_BOOL] = ACTIONS(2022), - [sym_auto] = ACTIONS(2022), - [anon_sym_ATautoreleasepool] = ACTIONS(2024), - [anon_sym_ATsynchronized] = ACTIONS(2024), - [anon_sym_ATtry] = ACTIONS(2024), - [anon_sym_ATthrow] = ACTIONS(2024), - [anon_sym_ATselector] = ACTIONS(2024), - [anon_sym_ATencode] = ACTIONS(2024), - [anon_sym_AT] = ACTIONS(2022), - [sym_YES] = ACTIONS(2022), - [sym_NO] = ACTIONS(2022), - [anon_sym___builtin_available] = ACTIONS(2022), - [anon_sym_ATavailable] = ACTIONS(2024), - [anon_sym_va_arg] = ACTIONS(2022), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [773] = { - [sym_identifier] = ACTIONS(2026), - [aux_sym_preproc_include_token1] = ACTIONS(2028), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2026), - [aux_sym_preproc_if_token2] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2026), - [aux_sym_preproc_else_token1] = ACTIONS(2026), - [aux_sym_preproc_elif_token1] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2028), - [anon_sym_BANG] = ACTIONS(2028), - [anon_sym_TILDE] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2028), - [anon_sym_CARET] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_typedef] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2026), - [anon_sym___attribute] = ACTIONS(2026), - [anon_sym___attribute__] = ACTIONS(2026), - [anon_sym___declspec] = ACTIONS(2026), - [anon_sym___cdecl] = ACTIONS(2026), - [anon_sym___clrcall] = ACTIONS(2026), - [anon_sym___stdcall] = ACTIONS(2026), - [anon_sym___fastcall] = ACTIONS(2026), - [anon_sym___thiscall] = ACTIONS(2026), - [anon_sym___vectorcall] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_auto] = ACTIONS(2026), - [anon_sym_register] = ACTIONS(2026), - [anon_sym_inline] = ACTIONS(2026), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_volatile] = ACTIONS(2026), - [anon_sym_restrict] = ACTIONS(2026), - [anon_sym__Atomic] = ACTIONS(2026), - [anon_sym_in] = ACTIONS(2026), - [anon_sym_out] = ACTIONS(2026), - [anon_sym_inout] = ACTIONS(2026), - [anon_sym_bycopy] = ACTIONS(2026), - [anon_sym_byref] = ACTIONS(2026), - [anon_sym_oneway] = ACTIONS(2026), - [anon_sym__Nullable] = ACTIONS(2026), - [anon_sym__Nonnull] = ACTIONS(2026), - [anon_sym__Nullable_result] = ACTIONS(2026), - [anon_sym__Null_unspecified] = ACTIONS(2026), - [anon_sym___autoreleasing] = ACTIONS(2026), - [anon_sym___nullable] = ACTIONS(2026), - [anon_sym___nonnull] = ACTIONS(2026), - [anon_sym___strong] = ACTIONS(2026), - [anon_sym___weak] = ACTIONS(2026), - [anon_sym___bridge] = ACTIONS(2026), - [anon_sym___bridge_transfer] = ACTIONS(2026), - [anon_sym___bridge_retained] = ACTIONS(2026), - [anon_sym___unsafe_unretained] = ACTIONS(2026), - [anon_sym___block] = ACTIONS(2026), - [anon_sym___kindof] = ACTIONS(2026), - [anon_sym___unused] = ACTIONS(2026), - [anon_sym__Complex] = ACTIONS(2026), - [anon_sym___complex] = ACTIONS(2026), - [anon_sym_IBOutlet] = ACTIONS(2026), - [anon_sym_IBInspectable] = ACTIONS(2026), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2026), - [anon_sym_signed] = ACTIONS(2026), - [anon_sym_unsigned] = ACTIONS(2026), - [anon_sym_long] = ACTIONS(2026), - [anon_sym_short] = ACTIONS(2026), - [sym_primitive_type] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_NS_ENUM] = ACTIONS(2026), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2026), - [anon_sym_NS_OPTIONS] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_switch] = ACTIONS(2026), - [anon_sym_case] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_goto] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2028), - [anon_sym_L_SQUOTE] = ACTIONS(2028), - [anon_sym_u_SQUOTE] = ACTIONS(2028), - [anon_sym_U_SQUOTE] = ACTIONS(2028), - [anon_sym_u8_SQUOTE] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_L_DQUOTE] = ACTIONS(2028), - [anon_sym_u_DQUOTE] = ACTIONS(2028), - [anon_sym_U_DQUOTE] = ACTIONS(2028), - [anon_sym_u8_DQUOTE] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [sym_true] = ACTIONS(2026), - [sym_false] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2028), - [anon_sym_ATimport] = ACTIONS(2028), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2026), - [anon_sym_ATcompatibility_alias] = ACTIONS(2028), - [anon_sym_ATprotocol] = ACTIONS(2028), - [anon_sym_ATclass] = ACTIONS(2028), - [anon_sym_ATinterface] = ACTIONS(2028), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2026), - [sym_method_attribute_specifier] = ACTIONS(2026), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2026), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE] = ACTIONS(2026), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_API_AVAILABLE] = ACTIONS(2026), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_API_DEPRECATED] = ACTIONS(2026), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2026), - [anon_sym___deprecated_msg] = ACTIONS(2026), - [anon_sym___deprecated_enum_msg] = ACTIONS(2026), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2026), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2026), - [anon_sym_ATimplementation] = ACTIONS(2028), - [anon_sym_typeof] = ACTIONS(2026), - [anon_sym___typeof] = ACTIONS(2026), - [anon_sym___typeof__] = ACTIONS(2026), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_nil] = ACTIONS(2026), - [sym_id] = ACTIONS(2026), - [sym_instancetype] = ACTIONS(2026), - [sym_Class] = ACTIONS(2026), - [sym_SEL] = ACTIONS(2026), - [sym_IMP] = ACTIONS(2026), - [sym_BOOL] = ACTIONS(2026), - [sym_auto] = ACTIONS(2026), - [anon_sym_ATautoreleasepool] = ACTIONS(2028), - [anon_sym_ATsynchronized] = ACTIONS(2028), - [anon_sym_ATtry] = ACTIONS(2028), - [anon_sym_ATthrow] = ACTIONS(2028), - [anon_sym_ATselector] = ACTIONS(2028), - [anon_sym_ATencode] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(2026), - [sym_YES] = ACTIONS(2026), - [sym_NO] = ACTIONS(2026), - [anon_sym___builtin_available] = ACTIONS(2026), - [anon_sym_ATavailable] = ACTIONS(2028), - [anon_sym_va_arg] = ACTIONS(2026), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [774] = { - [sym_identifier] = ACTIONS(2030), - [aux_sym_preproc_include_token1] = ACTIONS(2032), - [aux_sym_preproc_def_token1] = ACTIONS(2032), - [aux_sym_preproc_if_token1] = ACTIONS(2030), - [aux_sym_preproc_if_token2] = ACTIONS(2030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2030), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2030), - [aux_sym_preproc_else_token1] = ACTIONS(2030), - [aux_sym_preproc_elif_token1] = ACTIONS(2030), - [anon_sym_LPAREN2] = ACTIONS(2032), - [anon_sym_BANG] = ACTIONS(2032), - [anon_sym_TILDE] = ACTIONS(2032), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_PLUS] = ACTIONS(2030), - [anon_sym_STAR] = ACTIONS(2032), - [anon_sym_CARET] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_typedef] = ACTIONS(2030), - [anon_sym_extern] = ACTIONS(2030), - [anon_sym___attribute] = ACTIONS(2030), - [anon_sym___attribute__] = ACTIONS(2030), - [anon_sym___declspec] = ACTIONS(2030), - [anon_sym___cdecl] = ACTIONS(2030), - [anon_sym___clrcall] = ACTIONS(2030), - [anon_sym___stdcall] = ACTIONS(2030), - [anon_sym___fastcall] = ACTIONS(2030), - [anon_sym___thiscall] = ACTIONS(2030), - [anon_sym___vectorcall] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2032), - [anon_sym_LBRACK] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2030), - [anon_sym_auto] = ACTIONS(2030), - [anon_sym_register] = ACTIONS(2030), - [anon_sym_inline] = ACTIONS(2030), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(2030), - [anon_sym_volatile] = ACTIONS(2030), - [anon_sym_restrict] = ACTIONS(2030), - [anon_sym__Atomic] = ACTIONS(2030), - [anon_sym_in] = ACTIONS(2030), - [anon_sym_out] = ACTIONS(2030), - [anon_sym_inout] = ACTIONS(2030), - [anon_sym_bycopy] = ACTIONS(2030), - [anon_sym_byref] = ACTIONS(2030), - [anon_sym_oneway] = ACTIONS(2030), - [anon_sym__Nullable] = ACTIONS(2030), - [anon_sym__Nonnull] = ACTIONS(2030), - [anon_sym__Nullable_result] = ACTIONS(2030), - [anon_sym__Null_unspecified] = ACTIONS(2030), - [anon_sym___autoreleasing] = ACTIONS(2030), - [anon_sym___nullable] = ACTIONS(2030), - [anon_sym___nonnull] = ACTIONS(2030), - [anon_sym___strong] = ACTIONS(2030), - [anon_sym___weak] = ACTIONS(2030), - [anon_sym___bridge] = ACTIONS(2030), - [anon_sym___bridge_transfer] = ACTIONS(2030), - [anon_sym___bridge_retained] = ACTIONS(2030), - [anon_sym___unsafe_unretained] = ACTIONS(2030), - [anon_sym___block] = ACTIONS(2030), - [anon_sym___kindof] = ACTIONS(2030), - [anon_sym___unused] = ACTIONS(2030), - [anon_sym__Complex] = ACTIONS(2030), - [anon_sym___complex] = ACTIONS(2030), - [anon_sym_IBOutlet] = ACTIONS(2030), - [anon_sym_IBInspectable] = ACTIONS(2030), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2030), - [anon_sym_signed] = ACTIONS(2030), - [anon_sym_unsigned] = ACTIONS(2030), - [anon_sym_long] = ACTIONS(2030), - [anon_sym_short] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2030), - [anon_sym_enum] = ACTIONS(2030), - [anon_sym_NS_ENUM] = ACTIONS(2030), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2030), - [anon_sym_NS_OPTIONS] = ACTIONS(2030), - [anon_sym_struct] = ACTIONS(2030), - [anon_sym_union] = ACTIONS(2030), - [anon_sym_if] = ACTIONS(2030), - [anon_sym_switch] = ACTIONS(2030), - [anon_sym_case] = ACTIONS(2030), - [anon_sym_default] = ACTIONS(2030), - [anon_sym_while] = ACTIONS(2030), - [anon_sym_do] = ACTIONS(2030), - [anon_sym_for] = ACTIONS(2030), - [anon_sym_return] = ACTIONS(2030), - [anon_sym_break] = ACTIONS(2030), - [anon_sym_continue] = ACTIONS(2030), - [anon_sym_goto] = ACTIONS(2030), - [anon_sym_DASH_DASH] = ACTIONS(2032), - [anon_sym_PLUS_PLUS] = ACTIONS(2032), - [anon_sym_sizeof] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2032), - [anon_sym_u_SQUOTE] = ACTIONS(2032), - [anon_sym_U_SQUOTE] = ACTIONS(2032), - [anon_sym_u8_SQUOTE] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_L_DQUOTE] = ACTIONS(2032), - [anon_sym_u_DQUOTE] = ACTIONS(2032), - [anon_sym_U_DQUOTE] = ACTIONS(2032), - [anon_sym_u8_DQUOTE] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [sym_true] = ACTIONS(2030), - [sym_false] = ACTIONS(2030), - [sym_null] = ACTIONS(2030), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2032), - [anon_sym_ATimport] = ACTIONS(2032), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2030), - [anon_sym_ATcompatibility_alias] = ACTIONS(2032), - [anon_sym_ATprotocol] = ACTIONS(2032), - [anon_sym_ATclass] = ACTIONS(2032), - [anon_sym_ATinterface] = ACTIONS(2032), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2030), - [sym_method_attribute_specifier] = ACTIONS(2030), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2030), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2030), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2030), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2030), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2030), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2030), - [anon_sym_NS_AVAILABLE] = ACTIONS(2030), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2030), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_API_AVAILABLE] = ACTIONS(2030), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2030), - [anon_sym_API_DEPRECATED] = ACTIONS(2030), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2030), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2030), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2030), - [anon_sym___deprecated_msg] = ACTIONS(2030), - [anon_sym___deprecated_enum_msg] = ACTIONS(2030), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2030), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2030), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2030), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2030), - [anon_sym_ATimplementation] = ACTIONS(2032), - [anon_sym_typeof] = ACTIONS(2030), - [anon_sym___typeof] = ACTIONS(2030), - [anon_sym___typeof__] = ACTIONS(2030), - [sym_self] = ACTIONS(2030), - [sym_super] = ACTIONS(2030), - [sym_nil] = ACTIONS(2030), - [sym_id] = ACTIONS(2030), - [sym_instancetype] = ACTIONS(2030), - [sym_Class] = ACTIONS(2030), - [sym_SEL] = ACTIONS(2030), - [sym_IMP] = ACTIONS(2030), - [sym_BOOL] = ACTIONS(2030), - [sym_auto] = ACTIONS(2030), - [anon_sym_ATautoreleasepool] = ACTIONS(2032), - [anon_sym_ATsynchronized] = ACTIONS(2032), - [anon_sym_ATtry] = ACTIONS(2032), - [anon_sym_ATthrow] = ACTIONS(2032), - [anon_sym_ATselector] = ACTIONS(2032), - [anon_sym_ATencode] = ACTIONS(2032), - [anon_sym_AT] = ACTIONS(2030), - [sym_YES] = ACTIONS(2030), - [sym_NO] = ACTIONS(2030), - [anon_sym___builtin_available] = ACTIONS(2030), - [anon_sym_ATavailable] = ACTIONS(2032), - [anon_sym_va_arg] = ACTIONS(2030), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [775] = { - [sym_identifier] = ACTIONS(2026), - [aux_sym_preproc_include_token1] = ACTIONS(2028), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2026), - [aux_sym_preproc_if_token2] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2026), - [aux_sym_preproc_else_token1] = ACTIONS(2026), - [aux_sym_preproc_elif_token1] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2028), - [anon_sym_BANG] = ACTIONS(2028), - [anon_sym_TILDE] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2028), - [anon_sym_CARET] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_typedef] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2026), - [anon_sym___attribute] = ACTIONS(2026), - [anon_sym___attribute__] = ACTIONS(2026), - [anon_sym___declspec] = ACTIONS(2026), - [anon_sym___cdecl] = ACTIONS(2026), - [anon_sym___clrcall] = ACTIONS(2026), - [anon_sym___stdcall] = ACTIONS(2026), - [anon_sym___fastcall] = ACTIONS(2026), - [anon_sym___thiscall] = ACTIONS(2026), - [anon_sym___vectorcall] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_auto] = ACTIONS(2026), - [anon_sym_register] = ACTIONS(2026), - [anon_sym_inline] = ACTIONS(2026), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_volatile] = ACTIONS(2026), - [anon_sym_restrict] = ACTIONS(2026), - [anon_sym__Atomic] = ACTIONS(2026), - [anon_sym_in] = ACTIONS(2026), - [anon_sym_out] = ACTIONS(2026), - [anon_sym_inout] = ACTIONS(2026), - [anon_sym_bycopy] = ACTIONS(2026), - [anon_sym_byref] = ACTIONS(2026), - [anon_sym_oneway] = ACTIONS(2026), - [anon_sym__Nullable] = ACTIONS(2026), - [anon_sym__Nonnull] = ACTIONS(2026), - [anon_sym__Nullable_result] = ACTIONS(2026), - [anon_sym__Null_unspecified] = ACTIONS(2026), - [anon_sym___autoreleasing] = ACTIONS(2026), - [anon_sym___nullable] = ACTIONS(2026), - [anon_sym___nonnull] = ACTIONS(2026), - [anon_sym___strong] = ACTIONS(2026), - [anon_sym___weak] = ACTIONS(2026), - [anon_sym___bridge] = ACTIONS(2026), - [anon_sym___bridge_transfer] = ACTIONS(2026), - [anon_sym___bridge_retained] = ACTIONS(2026), - [anon_sym___unsafe_unretained] = ACTIONS(2026), - [anon_sym___block] = ACTIONS(2026), - [anon_sym___kindof] = ACTIONS(2026), - [anon_sym___unused] = ACTIONS(2026), - [anon_sym__Complex] = ACTIONS(2026), - [anon_sym___complex] = ACTIONS(2026), - [anon_sym_IBOutlet] = ACTIONS(2026), - [anon_sym_IBInspectable] = ACTIONS(2026), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2026), - [anon_sym_signed] = ACTIONS(2026), - [anon_sym_unsigned] = ACTIONS(2026), - [anon_sym_long] = ACTIONS(2026), - [anon_sym_short] = ACTIONS(2026), - [sym_primitive_type] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_NS_ENUM] = ACTIONS(2026), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2026), - [anon_sym_NS_OPTIONS] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_switch] = ACTIONS(2026), - [anon_sym_case] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_goto] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2028), - [anon_sym_L_SQUOTE] = ACTIONS(2028), - [anon_sym_u_SQUOTE] = ACTIONS(2028), - [anon_sym_U_SQUOTE] = ACTIONS(2028), - [anon_sym_u8_SQUOTE] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_L_DQUOTE] = ACTIONS(2028), - [anon_sym_u_DQUOTE] = ACTIONS(2028), - [anon_sym_U_DQUOTE] = ACTIONS(2028), - [anon_sym_u8_DQUOTE] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [sym_true] = ACTIONS(2026), - [sym_false] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2028), - [anon_sym_ATimport] = ACTIONS(2028), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2026), - [anon_sym_ATcompatibility_alias] = ACTIONS(2028), - [anon_sym_ATprotocol] = ACTIONS(2028), - [anon_sym_ATclass] = ACTIONS(2028), - [anon_sym_ATinterface] = ACTIONS(2028), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2026), - [sym_method_attribute_specifier] = ACTIONS(2026), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2026), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE] = ACTIONS(2026), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_API_AVAILABLE] = ACTIONS(2026), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_API_DEPRECATED] = ACTIONS(2026), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2026), - [anon_sym___deprecated_msg] = ACTIONS(2026), - [anon_sym___deprecated_enum_msg] = ACTIONS(2026), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2026), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2026), - [anon_sym_ATimplementation] = ACTIONS(2028), - [anon_sym_typeof] = ACTIONS(2026), - [anon_sym___typeof] = ACTIONS(2026), - [anon_sym___typeof__] = ACTIONS(2026), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_nil] = ACTIONS(2026), - [sym_id] = ACTIONS(2026), - [sym_instancetype] = ACTIONS(2026), - [sym_Class] = ACTIONS(2026), - [sym_SEL] = ACTIONS(2026), - [sym_IMP] = ACTIONS(2026), - [sym_BOOL] = ACTIONS(2026), - [sym_auto] = ACTIONS(2026), - [anon_sym_ATautoreleasepool] = ACTIONS(2028), - [anon_sym_ATsynchronized] = ACTIONS(2028), - [anon_sym_ATtry] = ACTIONS(2028), - [anon_sym_ATthrow] = ACTIONS(2028), - [anon_sym_ATselector] = ACTIONS(2028), - [anon_sym_ATencode] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(2026), - [sym_YES] = ACTIONS(2026), - [sym_NO] = ACTIONS(2026), - [anon_sym___builtin_available] = ACTIONS(2026), - [anon_sym_ATavailable] = ACTIONS(2028), - [anon_sym_va_arg] = ACTIONS(2026), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [776] = { - [sym_identifier] = ACTIONS(2026), - [aux_sym_preproc_include_token1] = ACTIONS(2028), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2026), - [aux_sym_preproc_if_token2] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2026), - [aux_sym_preproc_else_token1] = ACTIONS(2026), - [aux_sym_preproc_elif_token1] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2028), - [anon_sym_BANG] = ACTIONS(2028), - [anon_sym_TILDE] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2028), - [anon_sym_CARET] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_typedef] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2026), - [anon_sym___attribute] = ACTIONS(2026), - [anon_sym___attribute__] = ACTIONS(2026), - [anon_sym___declspec] = ACTIONS(2026), - [anon_sym___cdecl] = ACTIONS(2026), - [anon_sym___clrcall] = ACTIONS(2026), - [anon_sym___stdcall] = ACTIONS(2026), - [anon_sym___fastcall] = ACTIONS(2026), - [anon_sym___thiscall] = ACTIONS(2026), - [anon_sym___vectorcall] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_auto] = ACTIONS(2026), - [anon_sym_register] = ACTIONS(2026), - [anon_sym_inline] = ACTIONS(2026), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_volatile] = ACTIONS(2026), - [anon_sym_restrict] = ACTIONS(2026), - [anon_sym__Atomic] = ACTIONS(2026), - [anon_sym_in] = ACTIONS(2026), - [anon_sym_out] = ACTIONS(2026), - [anon_sym_inout] = ACTIONS(2026), - [anon_sym_bycopy] = ACTIONS(2026), - [anon_sym_byref] = ACTIONS(2026), - [anon_sym_oneway] = ACTIONS(2026), - [anon_sym__Nullable] = ACTIONS(2026), - [anon_sym__Nonnull] = ACTIONS(2026), - [anon_sym__Nullable_result] = ACTIONS(2026), - [anon_sym__Null_unspecified] = ACTIONS(2026), - [anon_sym___autoreleasing] = ACTIONS(2026), - [anon_sym___nullable] = ACTIONS(2026), - [anon_sym___nonnull] = ACTIONS(2026), - [anon_sym___strong] = ACTIONS(2026), - [anon_sym___weak] = ACTIONS(2026), - [anon_sym___bridge] = ACTIONS(2026), - [anon_sym___bridge_transfer] = ACTIONS(2026), - [anon_sym___bridge_retained] = ACTIONS(2026), - [anon_sym___unsafe_unretained] = ACTIONS(2026), - [anon_sym___block] = ACTIONS(2026), - [anon_sym___kindof] = ACTIONS(2026), - [anon_sym___unused] = ACTIONS(2026), - [anon_sym__Complex] = ACTIONS(2026), - [anon_sym___complex] = ACTIONS(2026), - [anon_sym_IBOutlet] = ACTIONS(2026), - [anon_sym_IBInspectable] = ACTIONS(2026), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2026), - [anon_sym_signed] = ACTIONS(2026), - [anon_sym_unsigned] = ACTIONS(2026), - [anon_sym_long] = ACTIONS(2026), - [anon_sym_short] = ACTIONS(2026), - [sym_primitive_type] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_NS_ENUM] = ACTIONS(2026), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2026), - [anon_sym_NS_OPTIONS] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_switch] = ACTIONS(2026), - [anon_sym_case] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_goto] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2028), - [anon_sym_L_SQUOTE] = ACTIONS(2028), - [anon_sym_u_SQUOTE] = ACTIONS(2028), - [anon_sym_U_SQUOTE] = ACTIONS(2028), - [anon_sym_u8_SQUOTE] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_L_DQUOTE] = ACTIONS(2028), - [anon_sym_u_DQUOTE] = ACTIONS(2028), - [anon_sym_U_DQUOTE] = ACTIONS(2028), - [anon_sym_u8_DQUOTE] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [sym_true] = ACTIONS(2026), - [sym_false] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2028), - [anon_sym_ATimport] = ACTIONS(2028), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2026), - [anon_sym_ATcompatibility_alias] = ACTIONS(2028), - [anon_sym_ATprotocol] = ACTIONS(2028), - [anon_sym_ATclass] = ACTIONS(2028), - [anon_sym_ATinterface] = ACTIONS(2028), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2026), - [sym_method_attribute_specifier] = ACTIONS(2026), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2026), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE] = ACTIONS(2026), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_API_AVAILABLE] = ACTIONS(2026), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_API_DEPRECATED] = ACTIONS(2026), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2026), - [anon_sym___deprecated_msg] = ACTIONS(2026), - [anon_sym___deprecated_enum_msg] = ACTIONS(2026), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2026), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2026), - [anon_sym_ATimplementation] = ACTIONS(2028), - [anon_sym_typeof] = ACTIONS(2026), - [anon_sym___typeof] = ACTIONS(2026), - [anon_sym___typeof__] = ACTIONS(2026), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_nil] = ACTIONS(2026), - [sym_id] = ACTIONS(2026), - [sym_instancetype] = ACTIONS(2026), - [sym_Class] = ACTIONS(2026), - [sym_SEL] = ACTIONS(2026), - [sym_IMP] = ACTIONS(2026), - [sym_BOOL] = ACTIONS(2026), - [sym_auto] = ACTIONS(2026), - [anon_sym_ATautoreleasepool] = ACTIONS(2028), - [anon_sym_ATsynchronized] = ACTIONS(2028), - [anon_sym_ATtry] = ACTIONS(2028), - [anon_sym_ATthrow] = ACTIONS(2028), - [anon_sym_ATselector] = ACTIONS(2028), - [anon_sym_ATencode] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(2026), - [sym_YES] = ACTIONS(2026), - [sym_NO] = ACTIONS(2026), - [anon_sym___builtin_available] = ACTIONS(2026), - [anon_sym_ATavailable] = ACTIONS(2028), - [anon_sym_va_arg] = ACTIONS(2026), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [777] = { - [sym_identifier] = ACTIONS(2034), - [aux_sym_preproc_include_token1] = ACTIONS(2036), - [aux_sym_preproc_def_token1] = ACTIONS(2036), - [aux_sym_preproc_if_token1] = ACTIONS(2034), - [aux_sym_preproc_if_token2] = ACTIONS(2034), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2034), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2034), - [aux_sym_preproc_else_token1] = ACTIONS(2034), - [aux_sym_preproc_elif_token1] = ACTIONS(2034), - [anon_sym_LPAREN2] = ACTIONS(2036), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_TILDE] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2034), - [anon_sym_PLUS] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_CARET] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_typedef] = ACTIONS(2034), - [anon_sym_extern] = ACTIONS(2034), - [anon_sym___attribute] = ACTIONS(2034), - [anon_sym___attribute__] = ACTIONS(2034), - [anon_sym___declspec] = ACTIONS(2034), - [anon_sym___cdecl] = ACTIONS(2034), - [anon_sym___clrcall] = ACTIONS(2034), - [anon_sym___stdcall] = ACTIONS(2034), - [anon_sym___fastcall] = ACTIONS(2034), - [anon_sym___thiscall] = ACTIONS(2034), - [anon_sym___vectorcall] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2034), - [anon_sym_auto] = ACTIONS(2034), - [anon_sym_register] = ACTIONS(2034), - [anon_sym_inline] = ACTIONS(2034), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2034), - [anon_sym_const] = ACTIONS(2034), - [anon_sym_volatile] = ACTIONS(2034), - [anon_sym_restrict] = ACTIONS(2034), - [anon_sym__Atomic] = ACTIONS(2034), - [anon_sym_in] = ACTIONS(2034), - [anon_sym_out] = ACTIONS(2034), - [anon_sym_inout] = ACTIONS(2034), - [anon_sym_bycopy] = ACTIONS(2034), - [anon_sym_byref] = ACTIONS(2034), - [anon_sym_oneway] = ACTIONS(2034), - [anon_sym__Nullable] = ACTIONS(2034), - [anon_sym__Nonnull] = ACTIONS(2034), - [anon_sym__Nullable_result] = ACTIONS(2034), - [anon_sym__Null_unspecified] = ACTIONS(2034), - [anon_sym___autoreleasing] = ACTIONS(2034), - [anon_sym___nullable] = ACTIONS(2034), - [anon_sym___nonnull] = ACTIONS(2034), - [anon_sym___strong] = ACTIONS(2034), - [anon_sym___weak] = ACTIONS(2034), - [anon_sym___bridge] = ACTIONS(2034), - [anon_sym___bridge_transfer] = ACTIONS(2034), - [anon_sym___bridge_retained] = ACTIONS(2034), - [anon_sym___unsafe_unretained] = ACTIONS(2034), - [anon_sym___block] = ACTIONS(2034), - [anon_sym___kindof] = ACTIONS(2034), - [anon_sym___unused] = ACTIONS(2034), - [anon_sym__Complex] = ACTIONS(2034), - [anon_sym___complex] = ACTIONS(2034), - [anon_sym_IBOutlet] = ACTIONS(2034), - [anon_sym_IBInspectable] = ACTIONS(2034), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2034), - [anon_sym_signed] = ACTIONS(2034), - [anon_sym_unsigned] = ACTIONS(2034), - [anon_sym_long] = ACTIONS(2034), - [anon_sym_short] = ACTIONS(2034), - [sym_primitive_type] = ACTIONS(2034), - [anon_sym_enum] = ACTIONS(2034), - [anon_sym_NS_ENUM] = ACTIONS(2034), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2034), - [anon_sym_NS_OPTIONS] = ACTIONS(2034), - [anon_sym_struct] = ACTIONS(2034), - [anon_sym_union] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2034), - [anon_sym_switch] = ACTIONS(2034), - [anon_sym_case] = ACTIONS(2034), - [anon_sym_default] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2034), - [anon_sym_for] = ACTIONS(2034), - [anon_sym_return] = ACTIONS(2034), - [anon_sym_break] = ACTIONS(2034), - [anon_sym_continue] = ACTIONS(2034), - [anon_sym_goto] = ACTIONS(2034), - [anon_sym_DASH_DASH] = ACTIONS(2036), - [anon_sym_PLUS_PLUS] = ACTIONS(2036), - [anon_sym_sizeof] = ACTIONS(2034), - [sym_number_literal] = ACTIONS(2036), - [anon_sym_L_SQUOTE] = ACTIONS(2036), - [anon_sym_u_SQUOTE] = ACTIONS(2036), - [anon_sym_U_SQUOTE] = ACTIONS(2036), - [anon_sym_u8_SQUOTE] = ACTIONS(2036), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2034), - [sym_false] = ACTIONS(2034), - [sym_null] = ACTIONS(2034), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2036), - [anon_sym_ATimport] = ACTIONS(2036), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2034), - [anon_sym_ATcompatibility_alias] = ACTIONS(2036), - [anon_sym_ATprotocol] = ACTIONS(2036), - [anon_sym_ATclass] = ACTIONS(2036), - [anon_sym_ATinterface] = ACTIONS(2036), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2034), - [sym_method_attribute_specifier] = ACTIONS(2034), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2034), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2034), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2034), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2034), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2034), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2034), - [anon_sym_NS_AVAILABLE] = ACTIONS(2034), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2034), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_API_AVAILABLE] = ACTIONS(2034), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2034), - [anon_sym_API_DEPRECATED] = ACTIONS(2034), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2034), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2034), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2034), - [anon_sym___deprecated_msg] = ACTIONS(2034), - [anon_sym___deprecated_enum_msg] = ACTIONS(2034), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2034), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2034), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2034), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2034), - [anon_sym_ATimplementation] = ACTIONS(2036), - [anon_sym_typeof] = ACTIONS(2034), - [anon_sym___typeof] = ACTIONS(2034), - [anon_sym___typeof__] = ACTIONS(2034), - [sym_self] = ACTIONS(2034), - [sym_super] = ACTIONS(2034), - [sym_nil] = ACTIONS(2034), - [sym_id] = ACTIONS(2034), - [sym_instancetype] = ACTIONS(2034), - [sym_Class] = ACTIONS(2034), - [sym_SEL] = ACTIONS(2034), - [sym_IMP] = ACTIONS(2034), - [sym_BOOL] = ACTIONS(2034), - [sym_auto] = ACTIONS(2034), - [anon_sym_ATautoreleasepool] = ACTIONS(2036), - [anon_sym_ATsynchronized] = ACTIONS(2036), - [anon_sym_ATtry] = ACTIONS(2036), - [anon_sym_ATthrow] = ACTIONS(2036), - [anon_sym_ATselector] = ACTIONS(2036), - [anon_sym_ATencode] = ACTIONS(2036), - [anon_sym_AT] = ACTIONS(2034), - [sym_YES] = ACTIONS(2034), - [sym_NO] = ACTIONS(2034), - [anon_sym___builtin_available] = ACTIONS(2034), - [anon_sym_ATavailable] = ACTIONS(2036), - [anon_sym_va_arg] = ACTIONS(2034), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [778] = { - [sym_identifier] = ACTIONS(2034), - [aux_sym_preproc_include_token1] = ACTIONS(2036), - [aux_sym_preproc_def_token1] = ACTIONS(2036), - [aux_sym_preproc_if_token1] = ACTIONS(2034), - [aux_sym_preproc_if_token2] = ACTIONS(2034), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2034), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2034), - [aux_sym_preproc_else_token1] = ACTIONS(2034), - [aux_sym_preproc_elif_token1] = ACTIONS(2034), - [anon_sym_LPAREN2] = ACTIONS(2036), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_TILDE] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2034), - [anon_sym_PLUS] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_CARET] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_typedef] = ACTIONS(2034), - [anon_sym_extern] = ACTIONS(2034), - [anon_sym___attribute] = ACTIONS(2034), - [anon_sym___attribute__] = ACTIONS(2034), - [anon_sym___declspec] = ACTIONS(2034), - [anon_sym___cdecl] = ACTIONS(2034), - [anon_sym___clrcall] = ACTIONS(2034), - [anon_sym___stdcall] = ACTIONS(2034), - [anon_sym___fastcall] = ACTIONS(2034), - [anon_sym___thiscall] = ACTIONS(2034), - [anon_sym___vectorcall] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2034), - [anon_sym_auto] = ACTIONS(2034), - [anon_sym_register] = ACTIONS(2034), - [anon_sym_inline] = ACTIONS(2034), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2034), - [anon_sym_const] = ACTIONS(2034), - [anon_sym_volatile] = ACTIONS(2034), - [anon_sym_restrict] = ACTIONS(2034), - [anon_sym__Atomic] = ACTIONS(2034), - [anon_sym_in] = ACTIONS(2034), - [anon_sym_out] = ACTIONS(2034), - [anon_sym_inout] = ACTIONS(2034), - [anon_sym_bycopy] = ACTIONS(2034), - [anon_sym_byref] = ACTIONS(2034), - [anon_sym_oneway] = ACTIONS(2034), - [anon_sym__Nullable] = ACTIONS(2034), - [anon_sym__Nonnull] = ACTIONS(2034), - [anon_sym__Nullable_result] = ACTIONS(2034), - [anon_sym__Null_unspecified] = ACTIONS(2034), - [anon_sym___autoreleasing] = ACTIONS(2034), - [anon_sym___nullable] = ACTIONS(2034), - [anon_sym___nonnull] = ACTIONS(2034), - [anon_sym___strong] = ACTIONS(2034), - [anon_sym___weak] = ACTIONS(2034), - [anon_sym___bridge] = ACTIONS(2034), - [anon_sym___bridge_transfer] = ACTIONS(2034), - [anon_sym___bridge_retained] = ACTIONS(2034), - [anon_sym___unsafe_unretained] = ACTIONS(2034), - [anon_sym___block] = ACTIONS(2034), - [anon_sym___kindof] = ACTIONS(2034), - [anon_sym___unused] = ACTIONS(2034), - [anon_sym__Complex] = ACTIONS(2034), - [anon_sym___complex] = ACTIONS(2034), - [anon_sym_IBOutlet] = ACTIONS(2034), - [anon_sym_IBInspectable] = ACTIONS(2034), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2034), - [anon_sym_signed] = ACTIONS(2034), - [anon_sym_unsigned] = ACTIONS(2034), - [anon_sym_long] = ACTIONS(2034), - [anon_sym_short] = ACTIONS(2034), - [sym_primitive_type] = ACTIONS(2034), - [anon_sym_enum] = ACTIONS(2034), - [anon_sym_NS_ENUM] = ACTIONS(2034), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2034), - [anon_sym_NS_OPTIONS] = ACTIONS(2034), - [anon_sym_struct] = ACTIONS(2034), - [anon_sym_union] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2034), - [anon_sym_switch] = ACTIONS(2034), - [anon_sym_case] = ACTIONS(2034), - [anon_sym_default] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2034), - [anon_sym_for] = ACTIONS(2034), - [anon_sym_return] = ACTIONS(2034), - [anon_sym_break] = ACTIONS(2034), - [anon_sym_continue] = ACTIONS(2034), - [anon_sym_goto] = ACTIONS(2034), - [anon_sym_DASH_DASH] = ACTIONS(2036), - [anon_sym_PLUS_PLUS] = ACTIONS(2036), - [anon_sym_sizeof] = ACTIONS(2034), - [sym_number_literal] = ACTIONS(2036), - [anon_sym_L_SQUOTE] = ACTIONS(2036), - [anon_sym_u_SQUOTE] = ACTIONS(2036), - [anon_sym_U_SQUOTE] = ACTIONS(2036), - [anon_sym_u8_SQUOTE] = ACTIONS(2036), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2034), - [sym_false] = ACTIONS(2034), - [sym_null] = ACTIONS(2034), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2036), - [anon_sym_ATimport] = ACTIONS(2036), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2034), - [anon_sym_ATcompatibility_alias] = ACTIONS(2036), - [anon_sym_ATprotocol] = ACTIONS(2036), - [anon_sym_ATclass] = ACTIONS(2036), - [anon_sym_ATinterface] = ACTIONS(2036), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2034), - [sym_method_attribute_specifier] = ACTIONS(2034), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2034), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2034), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2034), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2034), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2034), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2034), - [anon_sym_NS_AVAILABLE] = ACTIONS(2034), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2034), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_API_AVAILABLE] = ACTIONS(2034), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2034), - [anon_sym_API_DEPRECATED] = ACTIONS(2034), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2034), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2034), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2034), - [anon_sym___deprecated_msg] = ACTIONS(2034), - [anon_sym___deprecated_enum_msg] = ACTIONS(2034), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2034), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2034), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2034), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2034), - [anon_sym_ATimplementation] = ACTIONS(2036), - [anon_sym_typeof] = ACTIONS(2034), - [anon_sym___typeof] = ACTIONS(2034), - [anon_sym___typeof__] = ACTIONS(2034), - [sym_self] = ACTIONS(2034), - [sym_super] = ACTIONS(2034), - [sym_nil] = ACTIONS(2034), - [sym_id] = ACTIONS(2034), - [sym_instancetype] = ACTIONS(2034), - [sym_Class] = ACTIONS(2034), - [sym_SEL] = ACTIONS(2034), - [sym_IMP] = ACTIONS(2034), - [sym_BOOL] = ACTIONS(2034), - [sym_auto] = ACTIONS(2034), - [anon_sym_ATautoreleasepool] = ACTIONS(2036), - [anon_sym_ATsynchronized] = ACTIONS(2036), - [anon_sym_ATtry] = ACTIONS(2036), - [anon_sym_ATthrow] = ACTIONS(2036), - [anon_sym_ATselector] = ACTIONS(2036), - [anon_sym_ATencode] = ACTIONS(2036), - [anon_sym_AT] = ACTIONS(2034), - [sym_YES] = ACTIONS(2034), - [sym_NO] = ACTIONS(2034), - [anon_sym___builtin_available] = ACTIONS(2034), - [anon_sym_ATavailable] = ACTIONS(2036), - [anon_sym_va_arg] = ACTIONS(2034), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [779] = { - [sym_identifier] = ACTIONS(2026), - [aux_sym_preproc_include_token1] = ACTIONS(2028), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2026), - [aux_sym_preproc_if_token2] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2026), - [aux_sym_preproc_else_token1] = ACTIONS(2026), - [aux_sym_preproc_elif_token1] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2028), - [anon_sym_BANG] = ACTIONS(2028), - [anon_sym_TILDE] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2028), - [anon_sym_CARET] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_typedef] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2026), - [anon_sym___attribute] = ACTIONS(2026), - [anon_sym___attribute__] = ACTIONS(2026), - [anon_sym___declspec] = ACTIONS(2026), - [anon_sym___cdecl] = ACTIONS(2026), - [anon_sym___clrcall] = ACTIONS(2026), - [anon_sym___stdcall] = ACTIONS(2026), - [anon_sym___fastcall] = ACTIONS(2026), - [anon_sym___thiscall] = ACTIONS(2026), - [anon_sym___vectorcall] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_auto] = ACTIONS(2026), - [anon_sym_register] = ACTIONS(2026), - [anon_sym_inline] = ACTIONS(2026), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_volatile] = ACTIONS(2026), - [anon_sym_restrict] = ACTIONS(2026), - [anon_sym__Atomic] = ACTIONS(2026), - [anon_sym_in] = ACTIONS(2026), - [anon_sym_out] = ACTIONS(2026), - [anon_sym_inout] = ACTIONS(2026), - [anon_sym_bycopy] = ACTIONS(2026), - [anon_sym_byref] = ACTIONS(2026), - [anon_sym_oneway] = ACTIONS(2026), - [anon_sym__Nullable] = ACTIONS(2026), - [anon_sym__Nonnull] = ACTIONS(2026), - [anon_sym__Nullable_result] = ACTIONS(2026), - [anon_sym__Null_unspecified] = ACTIONS(2026), - [anon_sym___autoreleasing] = ACTIONS(2026), - [anon_sym___nullable] = ACTIONS(2026), - [anon_sym___nonnull] = ACTIONS(2026), - [anon_sym___strong] = ACTIONS(2026), - [anon_sym___weak] = ACTIONS(2026), - [anon_sym___bridge] = ACTIONS(2026), - [anon_sym___bridge_transfer] = ACTIONS(2026), - [anon_sym___bridge_retained] = ACTIONS(2026), - [anon_sym___unsafe_unretained] = ACTIONS(2026), - [anon_sym___block] = ACTIONS(2026), - [anon_sym___kindof] = ACTIONS(2026), - [anon_sym___unused] = ACTIONS(2026), - [anon_sym__Complex] = ACTIONS(2026), - [anon_sym___complex] = ACTIONS(2026), - [anon_sym_IBOutlet] = ACTIONS(2026), - [anon_sym_IBInspectable] = ACTIONS(2026), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2026), - [anon_sym_signed] = ACTIONS(2026), - [anon_sym_unsigned] = ACTIONS(2026), - [anon_sym_long] = ACTIONS(2026), - [anon_sym_short] = ACTIONS(2026), - [sym_primitive_type] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_NS_ENUM] = ACTIONS(2026), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2026), - [anon_sym_NS_OPTIONS] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_switch] = ACTIONS(2026), - [anon_sym_case] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_goto] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2028), - [anon_sym_L_SQUOTE] = ACTIONS(2028), - [anon_sym_u_SQUOTE] = ACTIONS(2028), - [anon_sym_U_SQUOTE] = ACTIONS(2028), - [anon_sym_u8_SQUOTE] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_L_DQUOTE] = ACTIONS(2028), - [anon_sym_u_DQUOTE] = ACTIONS(2028), - [anon_sym_U_DQUOTE] = ACTIONS(2028), - [anon_sym_u8_DQUOTE] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [sym_true] = ACTIONS(2026), - [sym_false] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2028), - [anon_sym_ATimport] = ACTIONS(2028), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2026), - [anon_sym_ATcompatibility_alias] = ACTIONS(2028), - [anon_sym_ATprotocol] = ACTIONS(2028), - [anon_sym_ATclass] = ACTIONS(2028), - [anon_sym_ATinterface] = ACTIONS(2028), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2026), - [sym_method_attribute_specifier] = ACTIONS(2026), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2026), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE] = ACTIONS(2026), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_API_AVAILABLE] = ACTIONS(2026), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_API_DEPRECATED] = ACTIONS(2026), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2026), - [anon_sym___deprecated_msg] = ACTIONS(2026), - [anon_sym___deprecated_enum_msg] = ACTIONS(2026), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2026), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2026), - [anon_sym_ATimplementation] = ACTIONS(2028), - [anon_sym_typeof] = ACTIONS(2026), - [anon_sym___typeof] = ACTIONS(2026), - [anon_sym___typeof__] = ACTIONS(2026), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_nil] = ACTIONS(2026), - [sym_id] = ACTIONS(2026), - [sym_instancetype] = ACTIONS(2026), - [sym_Class] = ACTIONS(2026), - [sym_SEL] = ACTIONS(2026), - [sym_IMP] = ACTIONS(2026), - [sym_BOOL] = ACTIONS(2026), - [sym_auto] = ACTIONS(2026), - [anon_sym_ATautoreleasepool] = ACTIONS(2028), - [anon_sym_ATsynchronized] = ACTIONS(2028), - [anon_sym_ATtry] = ACTIONS(2028), - [anon_sym_ATthrow] = ACTIONS(2028), - [anon_sym_ATselector] = ACTIONS(2028), - [anon_sym_ATencode] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(2026), - [sym_YES] = ACTIONS(2026), - [sym_NO] = ACTIONS(2026), - [anon_sym___builtin_available] = ACTIONS(2026), - [anon_sym_ATavailable] = ACTIONS(2028), - [anon_sym_va_arg] = ACTIONS(2026), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [780] = { - [sym_identifier] = ACTIONS(2026), - [aux_sym_preproc_include_token1] = ACTIONS(2028), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2026), - [aux_sym_preproc_if_token2] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2026), - [aux_sym_preproc_else_token1] = ACTIONS(2026), - [aux_sym_preproc_elif_token1] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2028), - [anon_sym_BANG] = ACTIONS(2028), - [anon_sym_TILDE] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2028), - [anon_sym_CARET] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_typedef] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2026), - [anon_sym___attribute] = ACTIONS(2026), - [anon_sym___attribute__] = ACTIONS(2026), - [anon_sym___declspec] = ACTIONS(2026), - [anon_sym___cdecl] = ACTIONS(2026), - [anon_sym___clrcall] = ACTIONS(2026), - [anon_sym___stdcall] = ACTIONS(2026), - [anon_sym___fastcall] = ACTIONS(2026), - [anon_sym___thiscall] = ACTIONS(2026), - [anon_sym___vectorcall] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_auto] = ACTIONS(2026), - [anon_sym_register] = ACTIONS(2026), - [anon_sym_inline] = ACTIONS(2026), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_volatile] = ACTIONS(2026), - [anon_sym_restrict] = ACTIONS(2026), - [anon_sym__Atomic] = ACTIONS(2026), - [anon_sym_in] = ACTIONS(2026), - [anon_sym_out] = ACTIONS(2026), - [anon_sym_inout] = ACTIONS(2026), - [anon_sym_bycopy] = ACTIONS(2026), - [anon_sym_byref] = ACTIONS(2026), - [anon_sym_oneway] = ACTIONS(2026), - [anon_sym__Nullable] = ACTIONS(2026), - [anon_sym__Nonnull] = ACTIONS(2026), - [anon_sym__Nullable_result] = ACTIONS(2026), - [anon_sym__Null_unspecified] = ACTIONS(2026), - [anon_sym___autoreleasing] = ACTIONS(2026), - [anon_sym___nullable] = ACTIONS(2026), - [anon_sym___nonnull] = ACTIONS(2026), - [anon_sym___strong] = ACTIONS(2026), - [anon_sym___weak] = ACTIONS(2026), - [anon_sym___bridge] = ACTIONS(2026), - [anon_sym___bridge_transfer] = ACTIONS(2026), - [anon_sym___bridge_retained] = ACTIONS(2026), - [anon_sym___unsafe_unretained] = ACTIONS(2026), - [anon_sym___block] = ACTIONS(2026), - [anon_sym___kindof] = ACTIONS(2026), - [anon_sym___unused] = ACTIONS(2026), - [anon_sym__Complex] = ACTIONS(2026), - [anon_sym___complex] = ACTIONS(2026), - [anon_sym_IBOutlet] = ACTIONS(2026), - [anon_sym_IBInspectable] = ACTIONS(2026), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2026), - [anon_sym_signed] = ACTIONS(2026), - [anon_sym_unsigned] = ACTIONS(2026), - [anon_sym_long] = ACTIONS(2026), - [anon_sym_short] = ACTIONS(2026), - [sym_primitive_type] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_NS_ENUM] = ACTIONS(2026), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2026), - [anon_sym_NS_OPTIONS] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_switch] = ACTIONS(2026), - [anon_sym_case] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_goto] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2028), - [anon_sym_L_SQUOTE] = ACTIONS(2028), - [anon_sym_u_SQUOTE] = ACTIONS(2028), - [anon_sym_U_SQUOTE] = ACTIONS(2028), - [anon_sym_u8_SQUOTE] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_L_DQUOTE] = ACTIONS(2028), - [anon_sym_u_DQUOTE] = ACTIONS(2028), - [anon_sym_U_DQUOTE] = ACTIONS(2028), - [anon_sym_u8_DQUOTE] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [sym_true] = ACTIONS(2026), - [sym_false] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2028), - [anon_sym_ATimport] = ACTIONS(2028), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2026), - [anon_sym_ATcompatibility_alias] = ACTIONS(2028), - [anon_sym_ATprotocol] = ACTIONS(2028), - [anon_sym_ATclass] = ACTIONS(2028), - [anon_sym_ATinterface] = ACTIONS(2028), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2026), - [sym_method_attribute_specifier] = ACTIONS(2026), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2026), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE] = ACTIONS(2026), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_API_AVAILABLE] = ACTIONS(2026), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_API_DEPRECATED] = ACTIONS(2026), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2026), - [anon_sym___deprecated_msg] = ACTIONS(2026), - [anon_sym___deprecated_enum_msg] = ACTIONS(2026), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2026), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2026), - [anon_sym_ATimplementation] = ACTIONS(2028), - [anon_sym_typeof] = ACTIONS(2026), - [anon_sym___typeof] = ACTIONS(2026), - [anon_sym___typeof__] = ACTIONS(2026), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_nil] = ACTIONS(2026), - [sym_id] = ACTIONS(2026), - [sym_instancetype] = ACTIONS(2026), - [sym_Class] = ACTIONS(2026), - [sym_SEL] = ACTIONS(2026), - [sym_IMP] = ACTIONS(2026), - [sym_BOOL] = ACTIONS(2026), - [sym_auto] = ACTIONS(2026), - [anon_sym_ATautoreleasepool] = ACTIONS(2028), - [anon_sym_ATsynchronized] = ACTIONS(2028), - [anon_sym_ATtry] = ACTIONS(2028), - [anon_sym_ATthrow] = ACTIONS(2028), - [anon_sym_ATselector] = ACTIONS(2028), - [anon_sym_ATencode] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(2026), - [sym_YES] = ACTIONS(2026), - [sym_NO] = ACTIONS(2026), - [anon_sym___builtin_available] = ACTIONS(2026), - [anon_sym_ATavailable] = ACTIONS(2028), - [anon_sym_va_arg] = ACTIONS(2026), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [781] = { - [sym_identifier] = ACTIONS(2038), - [aux_sym_preproc_include_token1] = ACTIONS(2040), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2038), - [aux_sym_preproc_if_token2] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2038), - [aux_sym_preproc_else_token1] = ACTIONS(2038), - [aux_sym_preproc_elif_token1] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2038), - [anon_sym___cdecl] = ACTIONS(2038), - [anon_sym___clrcall] = ACTIONS(2038), - [anon_sym___stdcall] = ACTIONS(2038), - [anon_sym___fastcall] = ACTIONS(2038), - [anon_sym___thiscall] = ACTIONS(2038), - [anon_sym___vectorcall] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_auto] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_in] = ACTIONS(2038), - [anon_sym_out] = ACTIONS(2038), - [anon_sym_inout] = ACTIONS(2038), - [anon_sym_bycopy] = ACTIONS(2038), - [anon_sym_byref] = ACTIONS(2038), - [anon_sym_oneway] = ACTIONS(2038), - [anon_sym__Nullable] = ACTIONS(2038), - [anon_sym__Nonnull] = ACTIONS(2038), - [anon_sym__Nullable_result] = ACTIONS(2038), - [anon_sym__Null_unspecified] = ACTIONS(2038), - [anon_sym___autoreleasing] = ACTIONS(2038), - [anon_sym___nullable] = ACTIONS(2038), - [anon_sym___nonnull] = ACTIONS(2038), - [anon_sym___strong] = ACTIONS(2038), - [anon_sym___weak] = ACTIONS(2038), - [anon_sym___bridge] = ACTIONS(2038), - [anon_sym___bridge_transfer] = ACTIONS(2038), - [anon_sym___bridge_retained] = ACTIONS(2038), - [anon_sym___unsafe_unretained] = ACTIONS(2038), - [anon_sym___block] = ACTIONS(2038), - [anon_sym___kindof] = ACTIONS(2038), - [anon_sym___unused] = ACTIONS(2038), - [anon_sym__Complex] = ACTIONS(2038), - [anon_sym___complex] = ACTIONS(2038), - [anon_sym_IBOutlet] = ACTIONS(2038), - [anon_sym_IBInspectable] = ACTIONS(2038), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2038), - [anon_sym_signed] = ACTIONS(2038), - [anon_sym_unsigned] = ACTIONS(2038), - [anon_sym_long] = ACTIONS(2038), - [anon_sym_short] = ACTIONS(2038), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_NS_ENUM] = ACTIONS(2038), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2038), - [anon_sym_NS_OPTIONS] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_goto] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_sizeof] = ACTIONS(2038), - [sym_number_literal] = ACTIONS(2040), - [anon_sym_L_SQUOTE] = ACTIONS(2040), - [anon_sym_u_SQUOTE] = ACTIONS(2040), - [anon_sym_U_SQUOTE] = ACTIONS(2040), - [anon_sym_u8_SQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_L_DQUOTE] = ACTIONS(2040), - [anon_sym_u_DQUOTE] = ACTIONS(2040), - [anon_sym_U_DQUOTE] = ACTIONS(2040), - [anon_sym_u8_DQUOTE] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [sym_null] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2040), - [anon_sym_ATimport] = ACTIONS(2040), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2038), - [anon_sym_ATcompatibility_alias] = ACTIONS(2040), - [anon_sym_ATprotocol] = ACTIONS(2040), - [anon_sym_ATclass] = ACTIONS(2040), - [anon_sym_ATinterface] = ACTIONS(2040), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2038), - [sym_method_attribute_specifier] = ACTIONS(2038), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2038), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE] = ACTIONS(2038), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_API_AVAILABLE] = ACTIONS(2038), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_API_DEPRECATED] = ACTIONS(2038), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2038), - [anon_sym___deprecated_msg] = ACTIONS(2038), - [anon_sym___deprecated_enum_msg] = ACTIONS(2038), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2038), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2038), - [anon_sym_ATimplementation] = ACTIONS(2040), - [anon_sym_typeof] = ACTIONS(2038), - [anon_sym___typeof] = ACTIONS(2038), - [anon_sym___typeof__] = ACTIONS(2038), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_nil] = ACTIONS(2038), - [sym_id] = ACTIONS(2038), - [sym_instancetype] = ACTIONS(2038), - [sym_Class] = ACTIONS(2038), - [sym_SEL] = ACTIONS(2038), - [sym_IMP] = ACTIONS(2038), - [sym_BOOL] = ACTIONS(2038), - [sym_auto] = ACTIONS(2038), - [anon_sym_ATautoreleasepool] = ACTIONS(2040), - [anon_sym_ATsynchronized] = ACTIONS(2040), - [anon_sym_ATtry] = ACTIONS(2040), - [anon_sym_ATthrow] = ACTIONS(2040), - [anon_sym_ATselector] = ACTIONS(2040), - [anon_sym_ATencode] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2038), - [sym_YES] = ACTIONS(2038), - [sym_NO] = ACTIONS(2038), - [anon_sym___builtin_available] = ACTIONS(2038), - [anon_sym_ATavailable] = ACTIONS(2040), - [anon_sym_va_arg] = ACTIONS(2038), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [782] = { - [sym_identifier] = ACTIONS(2038), - [aux_sym_preproc_include_token1] = ACTIONS(2040), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2038), - [aux_sym_preproc_if_token2] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2038), - [aux_sym_preproc_else_token1] = ACTIONS(2038), - [aux_sym_preproc_elif_token1] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2038), - [anon_sym___cdecl] = ACTIONS(2038), - [anon_sym___clrcall] = ACTIONS(2038), - [anon_sym___stdcall] = ACTIONS(2038), - [anon_sym___fastcall] = ACTIONS(2038), - [anon_sym___thiscall] = ACTIONS(2038), - [anon_sym___vectorcall] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_auto] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_in] = ACTIONS(2038), - [anon_sym_out] = ACTIONS(2038), - [anon_sym_inout] = ACTIONS(2038), - [anon_sym_bycopy] = ACTIONS(2038), - [anon_sym_byref] = ACTIONS(2038), - [anon_sym_oneway] = ACTIONS(2038), - [anon_sym__Nullable] = ACTIONS(2038), - [anon_sym__Nonnull] = ACTIONS(2038), - [anon_sym__Nullable_result] = ACTIONS(2038), - [anon_sym__Null_unspecified] = ACTIONS(2038), - [anon_sym___autoreleasing] = ACTIONS(2038), - [anon_sym___nullable] = ACTIONS(2038), - [anon_sym___nonnull] = ACTIONS(2038), - [anon_sym___strong] = ACTIONS(2038), - [anon_sym___weak] = ACTIONS(2038), - [anon_sym___bridge] = ACTIONS(2038), - [anon_sym___bridge_transfer] = ACTIONS(2038), - [anon_sym___bridge_retained] = ACTIONS(2038), - [anon_sym___unsafe_unretained] = ACTIONS(2038), - [anon_sym___block] = ACTIONS(2038), - [anon_sym___kindof] = ACTIONS(2038), - [anon_sym___unused] = ACTIONS(2038), - [anon_sym__Complex] = ACTIONS(2038), - [anon_sym___complex] = ACTIONS(2038), - [anon_sym_IBOutlet] = ACTIONS(2038), - [anon_sym_IBInspectable] = ACTIONS(2038), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2038), - [anon_sym_signed] = ACTIONS(2038), - [anon_sym_unsigned] = ACTIONS(2038), - [anon_sym_long] = ACTIONS(2038), - [anon_sym_short] = ACTIONS(2038), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_NS_ENUM] = ACTIONS(2038), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2038), - [anon_sym_NS_OPTIONS] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_goto] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_sizeof] = ACTIONS(2038), - [sym_number_literal] = ACTIONS(2040), - [anon_sym_L_SQUOTE] = ACTIONS(2040), - [anon_sym_u_SQUOTE] = ACTIONS(2040), - [anon_sym_U_SQUOTE] = ACTIONS(2040), - [anon_sym_u8_SQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_L_DQUOTE] = ACTIONS(2040), - [anon_sym_u_DQUOTE] = ACTIONS(2040), - [anon_sym_U_DQUOTE] = ACTIONS(2040), - [anon_sym_u8_DQUOTE] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [sym_null] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2040), - [anon_sym_ATimport] = ACTIONS(2040), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2038), - [anon_sym_ATcompatibility_alias] = ACTIONS(2040), - [anon_sym_ATprotocol] = ACTIONS(2040), - [anon_sym_ATclass] = ACTIONS(2040), - [anon_sym_ATinterface] = ACTIONS(2040), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2038), - [sym_method_attribute_specifier] = ACTIONS(2038), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2038), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE] = ACTIONS(2038), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_API_AVAILABLE] = ACTIONS(2038), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_API_DEPRECATED] = ACTIONS(2038), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2038), - [anon_sym___deprecated_msg] = ACTIONS(2038), - [anon_sym___deprecated_enum_msg] = ACTIONS(2038), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2038), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2038), - [anon_sym_ATimplementation] = ACTIONS(2040), - [anon_sym_typeof] = ACTIONS(2038), - [anon_sym___typeof] = ACTIONS(2038), - [anon_sym___typeof__] = ACTIONS(2038), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_nil] = ACTIONS(2038), - [sym_id] = ACTIONS(2038), - [sym_instancetype] = ACTIONS(2038), - [sym_Class] = ACTIONS(2038), - [sym_SEL] = ACTIONS(2038), - [sym_IMP] = ACTIONS(2038), - [sym_BOOL] = ACTIONS(2038), - [sym_auto] = ACTIONS(2038), - [anon_sym_ATautoreleasepool] = ACTIONS(2040), - [anon_sym_ATsynchronized] = ACTIONS(2040), - [anon_sym_ATtry] = ACTIONS(2040), - [anon_sym_ATthrow] = ACTIONS(2040), - [anon_sym_ATselector] = ACTIONS(2040), - [anon_sym_ATencode] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2038), - [sym_YES] = ACTIONS(2038), - [sym_NO] = ACTIONS(2038), - [anon_sym___builtin_available] = ACTIONS(2038), - [anon_sym_ATavailable] = ACTIONS(2040), - [anon_sym_va_arg] = ACTIONS(2038), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [783] = { - [sym_identifier] = ACTIONS(2042), - [aux_sym_preproc_include_token1] = ACTIONS(2044), - [aux_sym_preproc_def_token1] = ACTIONS(2044), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_if_token2] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2042), - [aux_sym_preproc_else_token1] = ACTIONS(2042), - [aux_sym_preproc_elif_token1] = ACTIONS(2042), - [anon_sym_LPAREN2] = ACTIONS(2044), - [anon_sym_BANG] = ACTIONS(2044), - [anon_sym_TILDE] = ACTIONS(2044), - [anon_sym_DASH] = ACTIONS(2042), - [anon_sym_PLUS] = ACTIONS(2042), - [anon_sym_STAR] = ACTIONS(2044), - [anon_sym_CARET] = ACTIONS(2044), - [anon_sym_AMP] = ACTIONS(2044), - [anon_sym_SEMI] = ACTIONS(2044), - [anon_sym_typedef] = ACTIONS(2042), - [anon_sym_extern] = ACTIONS(2042), - [anon_sym___attribute] = ACTIONS(2042), - [anon_sym___attribute__] = ACTIONS(2042), - [anon_sym___declspec] = ACTIONS(2042), - [anon_sym___cdecl] = ACTIONS(2042), - [anon_sym___clrcall] = ACTIONS(2042), - [anon_sym___stdcall] = ACTIONS(2042), - [anon_sym___fastcall] = ACTIONS(2042), - [anon_sym___thiscall] = ACTIONS(2042), - [anon_sym___vectorcall] = ACTIONS(2042), - [anon_sym_LBRACE] = ACTIONS(2044), - [anon_sym_LBRACK] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2042), - [anon_sym_auto] = ACTIONS(2042), - [anon_sym_register] = ACTIONS(2042), - [anon_sym_inline] = ACTIONS(2042), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2042), - [anon_sym_const] = ACTIONS(2042), - [anon_sym_volatile] = ACTIONS(2042), - [anon_sym_restrict] = ACTIONS(2042), - [anon_sym__Atomic] = ACTIONS(2042), - [anon_sym_in] = ACTIONS(2042), - [anon_sym_out] = ACTIONS(2042), - [anon_sym_inout] = ACTIONS(2042), - [anon_sym_bycopy] = ACTIONS(2042), - [anon_sym_byref] = ACTIONS(2042), - [anon_sym_oneway] = ACTIONS(2042), - [anon_sym__Nullable] = ACTIONS(2042), - [anon_sym__Nonnull] = ACTIONS(2042), - [anon_sym__Nullable_result] = ACTIONS(2042), - [anon_sym__Null_unspecified] = ACTIONS(2042), - [anon_sym___autoreleasing] = ACTIONS(2042), - [anon_sym___nullable] = ACTIONS(2042), - [anon_sym___nonnull] = ACTIONS(2042), - [anon_sym___strong] = ACTIONS(2042), - [anon_sym___weak] = ACTIONS(2042), - [anon_sym___bridge] = ACTIONS(2042), - [anon_sym___bridge_transfer] = ACTIONS(2042), - [anon_sym___bridge_retained] = ACTIONS(2042), - [anon_sym___unsafe_unretained] = ACTIONS(2042), - [anon_sym___block] = ACTIONS(2042), - [anon_sym___kindof] = ACTIONS(2042), - [anon_sym___unused] = ACTIONS(2042), - [anon_sym__Complex] = ACTIONS(2042), - [anon_sym___complex] = ACTIONS(2042), - [anon_sym_IBOutlet] = ACTIONS(2042), - [anon_sym_IBInspectable] = ACTIONS(2042), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2042), - [anon_sym_signed] = ACTIONS(2042), - [anon_sym_unsigned] = ACTIONS(2042), - [anon_sym_long] = ACTIONS(2042), - [anon_sym_short] = ACTIONS(2042), - [sym_primitive_type] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2042), - [anon_sym_NS_ENUM] = ACTIONS(2042), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2042), - [anon_sym_NS_OPTIONS] = ACTIONS(2042), - [anon_sym_struct] = ACTIONS(2042), - [anon_sym_union] = ACTIONS(2042), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_switch] = ACTIONS(2042), - [anon_sym_case] = ACTIONS(2042), - [anon_sym_default] = ACTIONS(2042), - [anon_sym_while] = ACTIONS(2042), - [anon_sym_do] = ACTIONS(2042), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_return] = ACTIONS(2042), - [anon_sym_break] = ACTIONS(2042), - [anon_sym_continue] = ACTIONS(2042), - [anon_sym_goto] = ACTIONS(2042), - [anon_sym_DASH_DASH] = ACTIONS(2044), - [anon_sym_PLUS_PLUS] = ACTIONS(2044), - [anon_sym_sizeof] = ACTIONS(2042), - [sym_number_literal] = ACTIONS(2044), - [anon_sym_L_SQUOTE] = ACTIONS(2044), - [anon_sym_u_SQUOTE] = ACTIONS(2044), - [anon_sym_U_SQUOTE] = ACTIONS(2044), - [anon_sym_u8_SQUOTE] = ACTIONS(2044), - [anon_sym_SQUOTE] = ACTIONS(2044), - [anon_sym_L_DQUOTE] = ACTIONS(2044), - [anon_sym_u_DQUOTE] = ACTIONS(2044), - [anon_sym_U_DQUOTE] = ACTIONS(2044), - [anon_sym_u8_DQUOTE] = ACTIONS(2044), - [anon_sym_DQUOTE] = ACTIONS(2044), - [sym_true] = ACTIONS(2042), - [sym_false] = ACTIONS(2042), - [sym_null] = ACTIONS(2042), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2044), - [anon_sym_ATimport] = ACTIONS(2044), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2042), - [anon_sym_ATcompatibility_alias] = ACTIONS(2044), - [anon_sym_ATprotocol] = ACTIONS(2044), - [anon_sym_ATclass] = ACTIONS(2044), - [anon_sym_ATinterface] = ACTIONS(2044), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2042), - [sym_method_attribute_specifier] = ACTIONS(2042), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2042), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2042), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2042), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2042), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2042), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2042), - [anon_sym_NS_AVAILABLE] = ACTIONS(2042), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2042), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2042), - [anon_sym_API_AVAILABLE] = ACTIONS(2042), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2042), - [anon_sym_API_DEPRECATED] = ACTIONS(2042), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2042), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2042), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2042), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2042), - [anon_sym___deprecated_msg] = ACTIONS(2042), - [anon_sym___deprecated_enum_msg] = ACTIONS(2042), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2042), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2042), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2042), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2042), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2042), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2042), - [anon_sym_ATimplementation] = ACTIONS(2044), - [anon_sym_typeof] = ACTIONS(2042), - [anon_sym___typeof] = ACTIONS(2042), - [anon_sym___typeof__] = ACTIONS(2042), - [sym_self] = ACTIONS(2042), - [sym_super] = ACTIONS(2042), - [sym_nil] = ACTIONS(2042), - [sym_id] = ACTIONS(2042), - [sym_instancetype] = ACTIONS(2042), - [sym_Class] = ACTIONS(2042), - [sym_SEL] = ACTIONS(2042), - [sym_IMP] = ACTIONS(2042), - [sym_BOOL] = ACTIONS(2042), - [sym_auto] = ACTIONS(2042), - [anon_sym_ATautoreleasepool] = ACTIONS(2044), - [anon_sym_ATsynchronized] = ACTIONS(2044), - [anon_sym_ATtry] = ACTIONS(2044), - [anon_sym_ATthrow] = ACTIONS(2044), - [anon_sym_ATselector] = ACTIONS(2044), - [anon_sym_ATencode] = ACTIONS(2044), - [anon_sym_AT] = ACTIONS(2042), - [sym_YES] = ACTIONS(2042), - [sym_NO] = ACTIONS(2042), - [anon_sym___builtin_available] = ACTIONS(2042), - [anon_sym_ATavailable] = ACTIONS(2044), - [anon_sym_va_arg] = ACTIONS(2042), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [784] = { - [sym_identifier] = ACTIONS(2038), - [aux_sym_preproc_include_token1] = ACTIONS(2040), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2038), - [aux_sym_preproc_if_token2] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2038), - [aux_sym_preproc_else_token1] = ACTIONS(2038), - [aux_sym_preproc_elif_token1] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2038), - [anon_sym___cdecl] = ACTIONS(2038), - [anon_sym___clrcall] = ACTIONS(2038), - [anon_sym___stdcall] = ACTIONS(2038), - [anon_sym___fastcall] = ACTIONS(2038), - [anon_sym___thiscall] = ACTIONS(2038), - [anon_sym___vectorcall] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_auto] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_in] = ACTIONS(2038), - [anon_sym_out] = ACTIONS(2038), - [anon_sym_inout] = ACTIONS(2038), - [anon_sym_bycopy] = ACTIONS(2038), - [anon_sym_byref] = ACTIONS(2038), - [anon_sym_oneway] = ACTIONS(2038), - [anon_sym__Nullable] = ACTIONS(2038), - [anon_sym__Nonnull] = ACTIONS(2038), - [anon_sym__Nullable_result] = ACTIONS(2038), - [anon_sym__Null_unspecified] = ACTIONS(2038), - [anon_sym___autoreleasing] = ACTIONS(2038), - [anon_sym___nullable] = ACTIONS(2038), - [anon_sym___nonnull] = ACTIONS(2038), - [anon_sym___strong] = ACTIONS(2038), - [anon_sym___weak] = ACTIONS(2038), - [anon_sym___bridge] = ACTIONS(2038), - [anon_sym___bridge_transfer] = ACTIONS(2038), - [anon_sym___bridge_retained] = ACTIONS(2038), - [anon_sym___unsafe_unretained] = ACTIONS(2038), - [anon_sym___block] = ACTIONS(2038), - [anon_sym___kindof] = ACTIONS(2038), - [anon_sym___unused] = ACTIONS(2038), - [anon_sym__Complex] = ACTIONS(2038), - [anon_sym___complex] = ACTIONS(2038), - [anon_sym_IBOutlet] = ACTIONS(2038), - [anon_sym_IBInspectable] = ACTIONS(2038), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2038), - [anon_sym_signed] = ACTIONS(2038), - [anon_sym_unsigned] = ACTIONS(2038), - [anon_sym_long] = ACTIONS(2038), - [anon_sym_short] = ACTIONS(2038), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_NS_ENUM] = ACTIONS(2038), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2038), - [anon_sym_NS_OPTIONS] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_goto] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_sizeof] = ACTIONS(2038), - [sym_number_literal] = ACTIONS(2040), - [anon_sym_L_SQUOTE] = ACTIONS(2040), - [anon_sym_u_SQUOTE] = ACTIONS(2040), - [anon_sym_U_SQUOTE] = ACTIONS(2040), - [anon_sym_u8_SQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_L_DQUOTE] = ACTIONS(2040), - [anon_sym_u_DQUOTE] = ACTIONS(2040), - [anon_sym_U_DQUOTE] = ACTIONS(2040), - [anon_sym_u8_DQUOTE] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [sym_null] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2040), - [anon_sym_ATimport] = ACTIONS(2040), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2038), - [anon_sym_ATcompatibility_alias] = ACTIONS(2040), - [anon_sym_ATprotocol] = ACTIONS(2040), - [anon_sym_ATclass] = ACTIONS(2040), - [anon_sym_ATinterface] = ACTIONS(2040), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2038), - [sym_method_attribute_specifier] = ACTIONS(2038), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2038), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE] = ACTIONS(2038), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_API_AVAILABLE] = ACTIONS(2038), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_API_DEPRECATED] = ACTIONS(2038), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2038), - [anon_sym___deprecated_msg] = ACTIONS(2038), - [anon_sym___deprecated_enum_msg] = ACTIONS(2038), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2038), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2038), - [anon_sym_ATimplementation] = ACTIONS(2040), - [anon_sym_typeof] = ACTIONS(2038), - [anon_sym___typeof] = ACTIONS(2038), - [anon_sym___typeof__] = ACTIONS(2038), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_nil] = ACTIONS(2038), - [sym_id] = ACTIONS(2038), - [sym_instancetype] = ACTIONS(2038), - [sym_Class] = ACTIONS(2038), - [sym_SEL] = ACTIONS(2038), - [sym_IMP] = ACTIONS(2038), - [sym_BOOL] = ACTIONS(2038), - [sym_auto] = ACTIONS(2038), - [anon_sym_ATautoreleasepool] = ACTIONS(2040), - [anon_sym_ATsynchronized] = ACTIONS(2040), - [anon_sym_ATtry] = ACTIONS(2040), - [anon_sym_ATthrow] = ACTIONS(2040), - [anon_sym_ATselector] = ACTIONS(2040), - [anon_sym_ATencode] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2038), - [sym_YES] = ACTIONS(2038), - [sym_NO] = ACTIONS(2038), - [anon_sym___builtin_available] = ACTIONS(2038), - [anon_sym_ATavailable] = ACTIONS(2040), - [anon_sym_va_arg] = ACTIONS(2038), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [785] = { - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_include_token1] = ACTIONS(2048), - [aux_sym_preproc_def_token1] = ACTIONS(2048), - [aux_sym_preproc_if_token1] = ACTIONS(2046), - [aux_sym_preproc_if_token2] = ACTIONS(2046), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2046), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2046), - [aux_sym_preproc_else_token1] = ACTIONS(2046), - [aux_sym_preproc_elif_token1] = ACTIONS(2046), - [anon_sym_LPAREN2] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(2048), - [anon_sym_TILDE] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_AMP] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_typedef] = ACTIONS(2046), - [anon_sym_extern] = ACTIONS(2046), - [anon_sym___attribute] = ACTIONS(2046), - [anon_sym___attribute__] = ACTIONS(2046), - [anon_sym___declspec] = ACTIONS(2046), - [anon_sym___cdecl] = ACTIONS(2046), - [anon_sym___clrcall] = ACTIONS(2046), - [anon_sym___stdcall] = ACTIONS(2046), - [anon_sym___fastcall] = ACTIONS(2046), - [anon_sym___thiscall] = ACTIONS(2046), - [anon_sym___vectorcall] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2048), - [anon_sym_static] = ACTIONS(2046), - [anon_sym_auto] = ACTIONS(2046), - [anon_sym_register] = ACTIONS(2046), - [anon_sym_inline] = ACTIONS(2046), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2046), - [anon_sym_const] = ACTIONS(2046), - [anon_sym_volatile] = ACTIONS(2046), - [anon_sym_restrict] = ACTIONS(2046), - [anon_sym__Atomic] = ACTIONS(2046), - [anon_sym_in] = ACTIONS(2046), - [anon_sym_out] = ACTIONS(2046), - [anon_sym_inout] = ACTIONS(2046), - [anon_sym_bycopy] = ACTIONS(2046), - [anon_sym_byref] = ACTIONS(2046), - [anon_sym_oneway] = ACTIONS(2046), - [anon_sym__Nullable] = ACTIONS(2046), - [anon_sym__Nonnull] = ACTIONS(2046), - [anon_sym__Nullable_result] = ACTIONS(2046), - [anon_sym__Null_unspecified] = ACTIONS(2046), - [anon_sym___autoreleasing] = ACTIONS(2046), - [anon_sym___nullable] = ACTIONS(2046), - [anon_sym___nonnull] = ACTIONS(2046), - [anon_sym___strong] = ACTIONS(2046), - [anon_sym___weak] = ACTIONS(2046), - [anon_sym___bridge] = ACTIONS(2046), - [anon_sym___bridge_transfer] = ACTIONS(2046), - [anon_sym___bridge_retained] = ACTIONS(2046), - [anon_sym___unsafe_unretained] = ACTIONS(2046), - [anon_sym___block] = ACTIONS(2046), - [anon_sym___kindof] = ACTIONS(2046), - [anon_sym___unused] = ACTIONS(2046), - [anon_sym__Complex] = ACTIONS(2046), - [anon_sym___complex] = ACTIONS(2046), - [anon_sym_IBOutlet] = ACTIONS(2046), - [anon_sym_IBInspectable] = ACTIONS(2046), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2046), - [anon_sym_signed] = ACTIONS(2046), - [anon_sym_unsigned] = ACTIONS(2046), - [anon_sym_long] = ACTIONS(2046), - [anon_sym_short] = ACTIONS(2046), - [sym_primitive_type] = ACTIONS(2046), - [anon_sym_enum] = ACTIONS(2046), - [anon_sym_NS_ENUM] = ACTIONS(2046), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2046), - [anon_sym_NS_OPTIONS] = ACTIONS(2046), - [anon_sym_struct] = ACTIONS(2046), - [anon_sym_union] = ACTIONS(2046), - [anon_sym_if] = ACTIONS(2046), - [anon_sym_switch] = ACTIONS(2046), - [anon_sym_case] = ACTIONS(2046), - [anon_sym_default] = ACTIONS(2046), - [anon_sym_while] = ACTIONS(2046), - [anon_sym_do] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2046), - [anon_sym_return] = ACTIONS(2046), - [anon_sym_break] = ACTIONS(2046), - [anon_sym_continue] = ACTIONS(2046), - [anon_sym_goto] = ACTIONS(2046), - [anon_sym_DASH_DASH] = ACTIONS(2048), - [anon_sym_PLUS_PLUS] = ACTIONS(2048), - [anon_sym_sizeof] = ACTIONS(2046), - [sym_number_literal] = ACTIONS(2048), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2048), - [anon_sym_u_DQUOTE] = ACTIONS(2048), - [anon_sym_U_DQUOTE] = ACTIONS(2048), - [anon_sym_u8_DQUOTE] = ACTIONS(2048), - [anon_sym_DQUOTE] = ACTIONS(2048), - [sym_true] = ACTIONS(2046), - [sym_false] = ACTIONS(2046), - [sym_null] = ACTIONS(2046), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2048), - [anon_sym_ATimport] = ACTIONS(2048), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2046), - [anon_sym_ATcompatibility_alias] = ACTIONS(2048), - [anon_sym_ATprotocol] = ACTIONS(2048), - [anon_sym_ATclass] = ACTIONS(2048), - [anon_sym_ATinterface] = ACTIONS(2048), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2046), - [sym_method_attribute_specifier] = ACTIONS(2046), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2046), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2046), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2046), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2046), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2046), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2046), - [anon_sym_NS_AVAILABLE] = ACTIONS(2046), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2046), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2046), - [anon_sym_API_AVAILABLE] = ACTIONS(2046), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2046), - [anon_sym_API_DEPRECATED] = ACTIONS(2046), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2046), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2046), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2046), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2046), - [anon_sym___deprecated_msg] = ACTIONS(2046), - [anon_sym___deprecated_enum_msg] = ACTIONS(2046), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2046), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2046), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2046), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2046), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2046), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2046), - [anon_sym_ATimplementation] = ACTIONS(2048), - [anon_sym_typeof] = ACTIONS(2046), - [anon_sym___typeof] = ACTIONS(2046), - [anon_sym___typeof__] = ACTIONS(2046), - [sym_self] = ACTIONS(2046), - [sym_super] = ACTIONS(2046), - [sym_nil] = ACTIONS(2046), - [sym_id] = ACTIONS(2046), - [sym_instancetype] = ACTIONS(2046), - [sym_Class] = ACTIONS(2046), - [sym_SEL] = ACTIONS(2046), - [sym_IMP] = ACTIONS(2046), - [sym_BOOL] = ACTIONS(2046), - [sym_auto] = ACTIONS(2046), - [anon_sym_ATautoreleasepool] = ACTIONS(2048), - [anon_sym_ATsynchronized] = ACTIONS(2048), - [anon_sym_ATtry] = ACTIONS(2048), - [anon_sym_ATthrow] = ACTIONS(2048), - [anon_sym_ATselector] = ACTIONS(2048), - [anon_sym_ATencode] = ACTIONS(2048), - [anon_sym_AT] = ACTIONS(2046), - [sym_YES] = ACTIONS(2046), - [sym_NO] = ACTIONS(2046), - [anon_sym___builtin_available] = ACTIONS(2046), - [anon_sym_ATavailable] = ACTIONS(2048), - [anon_sym_va_arg] = ACTIONS(2046), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [786] = { - [sym_identifier] = ACTIONS(2050), - [aux_sym_preproc_include_token1] = ACTIONS(2052), - [aux_sym_preproc_def_token1] = ACTIONS(2052), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_if_token2] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2050), - [aux_sym_preproc_else_token1] = ACTIONS(2050), - [aux_sym_preproc_elif_token1] = ACTIONS(2050), - [anon_sym_LPAREN2] = ACTIONS(2052), - [anon_sym_BANG] = ACTIONS(2052), - [anon_sym_TILDE] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_PLUS] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_typedef] = ACTIONS(2050), - [anon_sym_extern] = ACTIONS(2050), - [anon_sym___attribute] = ACTIONS(2050), - [anon_sym___attribute__] = ACTIONS(2050), - [anon_sym___declspec] = ACTIONS(2050), - [anon_sym___cdecl] = ACTIONS(2050), - [anon_sym___clrcall] = ACTIONS(2050), - [anon_sym___stdcall] = ACTIONS(2050), - [anon_sym___fastcall] = ACTIONS(2050), - [anon_sym___thiscall] = ACTIONS(2050), - [anon_sym___vectorcall] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2050), - [anon_sym_auto] = ACTIONS(2050), - [anon_sym_register] = ACTIONS(2050), - [anon_sym_inline] = ACTIONS(2050), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2050), - [anon_sym_const] = ACTIONS(2050), - [anon_sym_volatile] = ACTIONS(2050), - [anon_sym_restrict] = ACTIONS(2050), - [anon_sym__Atomic] = ACTIONS(2050), - [anon_sym_in] = ACTIONS(2050), - [anon_sym_out] = ACTIONS(2050), - [anon_sym_inout] = ACTIONS(2050), - [anon_sym_bycopy] = ACTIONS(2050), - [anon_sym_byref] = ACTIONS(2050), - [anon_sym_oneway] = ACTIONS(2050), - [anon_sym__Nullable] = ACTIONS(2050), - [anon_sym__Nonnull] = ACTIONS(2050), - [anon_sym__Nullable_result] = ACTIONS(2050), - [anon_sym__Null_unspecified] = ACTIONS(2050), - [anon_sym___autoreleasing] = ACTIONS(2050), - [anon_sym___nullable] = ACTIONS(2050), - [anon_sym___nonnull] = ACTIONS(2050), - [anon_sym___strong] = ACTIONS(2050), - [anon_sym___weak] = ACTIONS(2050), - [anon_sym___bridge] = ACTIONS(2050), - [anon_sym___bridge_transfer] = ACTIONS(2050), - [anon_sym___bridge_retained] = ACTIONS(2050), - [anon_sym___unsafe_unretained] = ACTIONS(2050), - [anon_sym___block] = ACTIONS(2050), - [anon_sym___kindof] = ACTIONS(2050), - [anon_sym___unused] = ACTIONS(2050), - [anon_sym__Complex] = ACTIONS(2050), - [anon_sym___complex] = ACTIONS(2050), - [anon_sym_IBOutlet] = ACTIONS(2050), - [anon_sym_IBInspectable] = ACTIONS(2050), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2050), - [anon_sym_signed] = ACTIONS(2050), - [anon_sym_unsigned] = ACTIONS(2050), - [anon_sym_long] = ACTIONS(2050), - [anon_sym_short] = ACTIONS(2050), - [sym_primitive_type] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2050), - [anon_sym_NS_ENUM] = ACTIONS(2050), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2050), - [anon_sym_NS_OPTIONS] = ACTIONS(2050), - [anon_sym_struct] = ACTIONS(2050), - [anon_sym_union] = ACTIONS(2050), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_switch] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(2050), - [anon_sym_default] = ACTIONS(2050), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2050), - [anon_sym_break] = ACTIONS(2050), - [anon_sym_continue] = ACTIONS(2050), - [anon_sym_goto] = ACTIONS(2050), - [anon_sym_DASH_DASH] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(2052), - [anon_sym_sizeof] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2052), - [anon_sym_u_SQUOTE] = ACTIONS(2052), - [anon_sym_U_SQUOTE] = ACTIONS(2052), - [anon_sym_u8_SQUOTE] = ACTIONS(2052), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_L_DQUOTE] = ACTIONS(2052), - [anon_sym_u_DQUOTE] = ACTIONS(2052), - [anon_sym_U_DQUOTE] = ACTIONS(2052), - [anon_sym_u8_DQUOTE] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(2052), - [sym_true] = ACTIONS(2050), - [sym_false] = ACTIONS(2050), - [sym_null] = ACTIONS(2050), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2052), - [anon_sym_ATimport] = ACTIONS(2052), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2050), - [anon_sym_ATcompatibility_alias] = ACTIONS(2052), - [anon_sym_ATprotocol] = ACTIONS(2052), - [anon_sym_ATclass] = ACTIONS(2052), - [anon_sym_ATinterface] = ACTIONS(2052), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2050), - [sym_method_attribute_specifier] = ACTIONS(2050), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2050), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE] = ACTIONS(2050), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_API_AVAILABLE] = ACTIONS(2050), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_API_DEPRECATED] = ACTIONS(2050), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2050), - [anon_sym___deprecated_msg] = ACTIONS(2050), - [anon_sym___deprecated_enum_msg] = ACTIONS(2050), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2050), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2050), - [anon_sym_ATimplementation] = ACTIONS(2052), - [anon_sym_typeof] = ACTIONS(2050), - [anon_sym___typeof] = ACTIONS(2050), - [anon_sym___typeof__] = ACTIONS(2050), - [sym_self] = ACTIONS(2050), - [sym_super] = ACTIONS(2050), - [sym_nil] = ACTIONS(2050), - [sym_id] = ACTIONS(2050), - [sym_instancetype] = ACTIONS(2050), - [sym_Class] = ACTIONS(2050), - [sym_SEL] = ACTIONS(2050), - [sym_IMP] = ACTIONS(2050), - [sym_BOOL] = ACTIONS(2050), - [sym_auto] = ACTIONS(2050), - [anon_sym_ATautoreleasepool] = ACTIONS(2052), - [anon_sym_ATsynchronized] = ACTIONS(2052), - [anon_sym_ATtry] = ACTIONS(2052), - [anon_sym_ATthrow] = ACTIONS(2052), - [anon_sym_ATselector] = ACTIONS(2052), - [anon_sym_ATencode] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2050), - [sym_YES] = ACTIONS(2050), - [sym_NO] = ACTIONS(2050), - [anon_sym___builtin_available] = ACTIONS(2050), - [anon_sym_ATavailable] = ACTIONS(2052), - [anon_sym_va_arg] = ACTIONS(2050), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [787] = { - [sym_identifier] = ACTIONS(2038), - [aux_sym_preproc_include_token1] = ACTIONS(2040), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2038), - [aux_sym_preproc_if_token2] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2038), - [aux_sym_preproc_else_token1] = ACTIONS(2038), - [aux_sym_preproc_elif_token1] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2038), - [anon_sym___cdecl] = ACTIONS(2038), - [anon_sym___clrcall] = ACTIONS(2038), - [anon_sym___stdcall] = ACTIONS(2038), - [anon_sym___fastcall] = ACTIONS(2038), - [anon_sym___thiscall] = ACTIONS(2038), - [anon_sym___vectorcall] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_auto] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_in] = ACTIONS(2038), - [anon_sym_out] = ACTIONS(2038), - [anon_sym_inout] = ACTIONS(2038), - [anon_sym_bycopy] = ACTIONS(2038), - [anon_sym_byref] = ACTIONS(2038), - [anon_sym_oneway] = ACTIONS(2038), - [anon_sym__Nullable] = ACTIONS(2038), - [anon_sym__Nonnull] = ACTIONS(2038), - [anon_sym__Nullable_result] = ACTIONS(2038), - [anon_sym__Null_unspecified] = ACTIONS(2038), - [anon_sym___autoreleasing] = ACTIONS(2038), - [anon_sym___nullable] = ACTIONS(2038), - [anon_sym___nonnull] = ACTIONS(2038), - [anon_sym___strong] = ACTIONS(2038), - [anon_sym___weak] = ACTIONS(2038), - [anon_sym___bridge] = ACTIONS(2038), - [anon_sym___bridge_transfer] = ACTIONS(2038), - [anon_sym___bridge_retained] = ACTIONS(2038), - [anon_sym___unsafe_unretained] = ACTIONS(2038), - [anon_sym___block] = ACTIONS(2038), - [anon_sym___kindof] = ACTIONS(2038), - [anon_sym___unused] = ACTIONS(2038), - [anon_sym__Complex] = ACTIONS(2038), - [anon_sym___complex] = ACTIONS(2038), - [anon_sym_IBOutlet] = ACTIONS(2038), - [anon_sym_IBInspectable] = ACTIONS(2038), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2038), - [anon_sym_signed] = ACTIONS(2038), - [anon_sym_unsigned] = ACTIONS(2038), - [anon_sym_long] = ACTIONS(2038), - [anon_sym_short] = ACTIONS(2038), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_NS_ENUM] = ACTIONS(2038), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2038), - [anon_sym_NS_OPTIONS] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_goto] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_sizeof] = ACTIONS(2038), - [sym_number_literal] = ACTIONS(2040), - [anon_sym_L_SQUOTE] = ACTIONS(2040), - [anon_sym_u_SQUOTE] = ACTIONS(2040), - [anon_sym_U_SQUOTE] = ACTIONS(2040), - [anon_sym_u8_SQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_L_DQUOTE] = ACTIONS(2040), - [anon_sym_u_DQUOTE] = ACTIONS(2040), - [anon_sym_U_DQUOTE] = ACTIONS(2040), - [anon_sym_u8_DQUOTE] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [sym_null] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2040), - [anon_sym_ATimport] = ACTIONS(2040), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2038), - [anon_sym_ATcompatibility_alias] = ACTIONS(2040), - [anon_sym_ATprotocol] = ACTIONS(2040), - [anon_sym_ATclass] = ACTIONS(2040), - [anon_sym_ATinterface] = ACTIONS(2040), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2038), - [sym_method_attribute_specifier] = ACTIONS(2038), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2038), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE] = ACTIONS(2038), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_API_AVAILABLE] = ACTIONS(2038), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_API_DEPRECATED] = ACTIONS(2038), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2038), - [anon_sym___deprecated_msg] = ACTIONS(2038), - [anon_sym___deprecated_enum_msg] = ACTIONS(2038), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2038), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2038), - [anon_sym_ATimplementation] = ACTIONS(2040), - [anon_sym_typeof] = ACTIONS(2038), - [anon_sym___typeof] = ACTIONS(2038), - [anon_sym___typeof__] = ACTIONS(2038), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_nil] = ACTIONS(2038), - [sym_id] = ACTIONS(2038), - [sym_instancetype] = ACTIONS(2038), - [sym_Class] = ACTIONS(2038), - [sym_SEL] = ACTIONS(2038), - [sym_IMP] = ACTIONS(2038), - [sym_BOOL] = ACTIONS(2038), - [sym_auto] = ACTIONS(2038), - [anon_sym_ATautoreleasepool] = ACTIONS(2040), - [anon_sym_ATsynchronized] = ACTIONS(2040), - [anon_sym_ATtry] = ACTIONS(2040), - [anon_sym_ATthrow] = ACTIONS(2040), - [anon_sym_ATselector] = ACTIONS(2040), - [anon_sym_ATencode] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2038), - [sym_YES] = ACTIONS(2038), - [sym_NO] = ACTIONS(2038), - [anon_sym___builtin_available] = ACTIONS(2038), - [anon_sym_ATavailable] = ACTIONS(2040), - [anon_sym_va_arg] = ACTIONS(2038), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [788] = { - [sym_identifier] = ACTIONS(2038), - [aux_sym_preproc_include_token1] = ACTIONS(2040), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2038), - [aux_sym_preproc_if_token2] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2038), - [aux_sym_preproc_else_token1] = ACTIONS(2038), - [aux_sym_preproc_elif_token1] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2038), - [anon_sym___cdecl] = ACTIONS(2038), - [anon_sym___clrcall] = ACTIONS(2038), - [anon_sym___stdcall] = ACTIONS(2038), - [anon_sym___fastcall] = ACTIONS(2038), - [anon_sym___thiscall] = ACTIONS(2038), - [anon_sym___vectorcall] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_auto] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_in] = ACTIONS(2038), - [anon_sym_out] = ACTIONS(2038), - [anon_sym_inout] = ACTIONS(2038), - [anon_sym_bycopy] = ACTIONS(2038), - [anon_sym_byref] = ACTIONS(2038), - [anon_sym_oneway] = ACTIONS(2038), - [anon_sym__Nullable] = ACTIONS(2038), - [anon_sym__Nonnull] = ACTIONS(2038), - [anon_sym__Nullable_result] = ACTIONS(2038), - [anon_sym__Null_unspecified] = ACTIONS(2038), - [anon_sym___autoreleasing] = ACTIONS(2038), - [anon_sym___nullable] = ACTIONS(2038), - [anon_sym___nonnull] = ACTIONS(2038), - [anon_sym___strong] = ACTIONS(2038), - [anon_sym___weak] = ACTIONS(2038), - [anon_sym___bridge] = ACTIONS(2038), - [anon_sym___bridge_transfer] = ACTIONS(2038), - [anon_sym___bridge_retained] = ACTIONS(2038), - [anon_sym___unsafe_unretained] = ACTIONS(2038), - [anon_sym___block] = ACTIONS(2038), - [anon_sym___kindof] = ACTIONS(2038), - [anon_sym___unused] = ACTIONS(2038), - [anon_sym__Complex] = ACTIONS(2038), - [anon_sym___complex] = ACTIONS(2038), - [anon_sym_IBOutlet] = ACTIONS(2038), - [anon_sym_IBInspectable] = ACTIONS(2038), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2038), - [anon_sym_signed] = ACTIONS(2038), - [anon_sym_unsigned] = ACTIONS(2038), - [anon_sym_long] = ACTIONS(2038), - [anon_sym_short] = ACTIONS(2038), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_NS_ENUM] = ACTIONS(2038), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2038), - [anon_sym_NS_OPTIONS] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_goto] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_sizeof] = ACTIONS(2038), - [sym_number_literal] = ACTIONS(2040), - [anon_sym_L_SQUOTE] = ACTIONS(2040), - [anon_sym_u_SQUOTE] = ACTIONS(2040), - [anon_sym_U_SQUOTE] = ACTIONS(2040), - [anon_sym_u8_SQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_L_DQUOTE] = ACTIONS(2040), - [anon_sym_u_DQUOTE] = ACTIONS(2040), - [anon_sym_U_DQUOTE] = ACTIONS(2040), - [anon_sym_u8_DQUOTE] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [sym_null] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2040), - [anon_sym_ATimport] = ACTIONS(2040), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2038), - [anon_sym_ATcompatibility_alias] = ACTIONS(2040), - [anon_sym_ATprotocol] = ACTIONS(2040), - [anon_sym_ATclass] = ACTIONS(2040), - [anon_sym_ATinterface] = ACTIONS(2040), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2038), - [sym_method_attribute_specifier] = ACTIONS(2038), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2038), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE] = ACTIONS(2038), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_API_AVAILABLE] = ACTIONS(2038), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_API_DEPRECATED] = ACTIONS(2038), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2038), - [anon_sym___deprecated_msg] = ACTIONS(2038), - [anon_sym___deprecated_enum_msg] = ACTIONS(2038), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2038), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2038), - [anon_sym_ATimplementation] = ACTIONS(2040), - [anon_sym_typeof] = ACTIONS(2038), - [anon_sym___typeof] = ACTIONS(2038), - [anon_sym___typeof__] = ACTIONS(2038), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_nil] = ACTIONS(2038), - [sym_id] = ACTIONS(2038), - [sym_instancetype] = ACTIONS(2038), - [sym_Class] = ACTIONS(2038), - [sym_SEL] = ACTIONS(2038), - [sym_IMP] = ACTIONS(2038), - [sym_BOOL] = ACTIONS(2038), - [sym_auto] = ACTIONS(2038), - [anon_sym_ATautoreleasepool] = ACTIONS(2040), - [anon_sym_ATsynchronized] = ACTIONS(2040), - [anon_sym_ATtry] = ACTIONS(2040), - [anon_sym_ATthrow] = ACTIONS(2040), - [anon_sym_ATselector] = ACTIONS(2040), - [anon_sym_ATencode] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2038), - [sym_YES] = ACTIONS(2038), - [sym_NO] = ACTIONS(2038), - [anon_sym___builtin_available] = ACTIONS(2038), - [anon_sym_ATavailable] = ACTIONS(2040), - [anon_sym_va_arg] = ACTIONS(2038), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [789] = { - [sym_identifier] = ACTIONS(2050), - [aux_sym_preproc_include_token1] = ACTIONS(2052), - [aux_sym_preproc_def_token1] = ACTIONS(2052), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_if_token2] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2050), - [aux_sym_preproc_else_token1] = ACTIONS(2050), - [aux_sym_preproc_elif_token1] = ACTIONS(2050), - [anon_sym_LPAREN2] = ACTIONS(2052), - [anon_sym_BANG] = ACTIONS(2052), - [anon_sym_TILDE] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_PLUS] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_typedef] = ACTIONS(2050), - [anon_sym_extern] = ACTIONS(2050), - [anon_sym___attribute] = ACTIONS(2050), - [anon_sym___attribute__] = ACTIONS(2050), - [anon_sym___declspec] = ACTIONS(2050), - [anon_sym___cdecl] = ACTIONS(2050), - [anon_sym___clrcall] = ACTIONS(2050), - [anon_sym___stdcall] = ACTIONS(2050), - [anon_sym___fastcall] = ACTIONS(2050), - [anon_sym___thiscall] = ACTIONS(2050), - [anon_sym___vectorcall] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2050), - [anon_sym_auto] = ACTIONS(2050), - [anon_sym_register] = ACTIONS(2050), - [anon_sym_inline] = ACTIONS(2050), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2050), - [anon_sym_const] = ACTIONS(2050), - [anon_sym_volatile] = ACTIONS(2050), - [anon_sym_restrict] = ACTIONS(2050), - [anon_sym__Atomic] = ACTIONS(2050), - [anon_sym_in] = ACTIONS(2050), - [anon_sym_out] = ACTIONS(2050), - [anon_sym_inout] = ACTIONS(2050), - [anon_sym_bycopy] = ACTIONS(2050), - [anon_sym_byref] = ACTIONS(2050), - [anon_sym_oneway] = ACTIONS(2050), - [anon_sym__Nullable] = ACTIONS(2050), - [anon_sym__Nonnull] = ACTIONS(2050), - [anon_sym__Nullable_result] = ACTIONS(2050), - [anon_sym__Null_unspecified] = ACTIONS(2050), - [anon_sym___autoreleasing] = ACTIONS(2050), - [anon_sym___nullable] = ACTIONS(2050), - [anon_sym___nonnull] = ACTIONS(2050), - [anon_sym___strong] = ACTIONS(2050), - [anon_sym___weak] = ACTIONS(2050), - [anon_sym___bridge] = ACTIONS(2050), - [anon_sym___bridge_transfer] = ACTIONS(2050), - [anon_sym___bridge_retained] = ACTIONS(2050), - [anon_sym___unsafe_unretained] = ACTIONS(2050), - [anon_sym___block] = ACTIONS(2050), - [anon_sym___kindof] = ACTIONS(2050), - [anon_sym___unused] = ACTIONS(2050), - [anon_sym__Complex] = ACTIONS(2050), - [anon_sym___complex] = ACTIONS(2050), - [anon_sym_IBOutlet] = ACTIONS(2050), - [anon_sym_IBInspectable] = ACTIONS(2050), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2050), - [anon_sym_signed] = ACTIONS(2050), - [anon_sym_unsigned] = ACTIONS(2050), - [anon_sym_long] = ACTIONS(2050), - [anon_sym_short] = ACTIONS(2050), - [sym_primitive_type] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2050), - [anon_sym_NS_ENUM] = ACTIONS(2050), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2050), - [anon_sym_NS_OPTIONS] = ACTIONS(2050), - [anon_sym_struct] = ACTIONS(2050), - [anon_sym_union] = ACTIONS(2050), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_switch] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(2050), - [anon_sym_default] = ACTIONS(2050), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2050), - [anon_sym_break] = ACTIONS(2050), - [anon_sym_continue] = ACTIONS(2050), - [anon_sym_goto] = ACTIONS(2050), - [anon_sym_DASH_DASH] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(2052), - [anon_sym_sizeof] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2052), - [anon_sym_u_SQUOTE] = ACTIONS(2052), - [anon_sym_U_SQUOTE] = ACTIONS(2052), - [anon_sym_u8_SQUOTE] = ACTIONS(2052), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_L_DQUOTE] = ACTIONS(2052), - [anon_sym_u_DQUOTE] = ACTIONS(2052), - [anon_sym_U_DQUOTE] = ACTIONS(2052), - [anon_sym_u8_DQUOTE] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(2052), - [sym_true] = ACTIONS(2050), - [sym_false] = ACTIONS(2050), - [sym_null] = ACTIONS(2050), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2052), - [anon_sym_ATimport] = ACTIONS(2052), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2050), - [anon_sym_ATcompatibility_alias] = ACTIONS(2052), - [anon_sym_ATprotocol] = ACTIONS(2052), - [anon_sym_ATclass] = ACTIONS(2052), - [anon_sym_ATinterface] = ACTIONS(2052), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2050), - [sym_method_attribute_specifier] = ACTIONS(2050), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2050), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE] = ACTIONS(2050), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_API_AVAILABLE] = ACTIONS(2050), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_API_DEPRECATED] = ACTIONS(2050), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2050), - [anon_sym___deprecated_msg] = ACTIONS(2050), - [anon_sym___deprecated_enum_msg] = ACTIONS(2050), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2050), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2050), - [anon_sym_ATimplementation] = ACTIONS(2052), - [anon_sym_typeof] = ACTIONS(2050), - [anon_sym___typeof] = ACTIONS(2050), - [anon_sym___typeof__] = ACTIONS(2050), - [sym_self] = ACTIONS(2050), - [sym_super] = ACTIONS(2050), - [sym_nil] = ACTIONS(2050), - [sym_id] = ACTIONS(2050), - [sym_instancetype] = ACTIONS(2050), - [sym_Class] = ACTIONS(2050), - [sym_SEL] = ACTIONS(2050), - [sym_IMP] = ACTIONS(2050), - [sym_BOOL] = ACTIONS(2050), - [sym_auto] = ACTIONS(2050), - [anon_sym_ATautoreleasepool] = ACTIONS(2052), - [anon_sym_ATsynchronized] = ACTIONS(2052), - [anon_sym_ATtry] = ACTIONS(2052), - [anon_sym_ATthrow] = ACTIONS(2052), - [anon_sym_ATselector] = ACTIONS(2052), - [anon_sym_ATencode] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2050), - [sym_YES] = ACTIONS(2050), - [sym_NO] = ACTIONS(2050), - [anon_sym___builtin_available] = ACTIONS(2050), - [anon_sym_ATavailable] = ACTIONS(2052), - [anon_sym_va_arg] = ACTIONS(2050), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [790] = { - [sym_identifier] = ACTIONS(2038), - [aux_sym_preproc_include_token1] = ACTIONS(2040), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2038), - [aux_sym_preproc_if_token2] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2038), - [aux_sym_preproc_else_token1] = ACTIONS(2038), - [aux_sym_preproc_elif_token1] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2038), - [anon_sym___cdecl] = ACTIONS(2038), - [anon_sym___clrcall] = ACTIONS(2038), - [anon_sym___stdcall] = ACTIONS(2038), - [anon_sym___fastcall] = ACTIONS(2038), - [anon_sym___thiscall] = ACTIONS(2038), - [anon_sym___vectorcall] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_auto] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_in] = ACTIONS(2038), - [anon_sym_out] = ACTIONS(2038), - [anon_sym_inout] = ACTIONS(2038), - [anon_sym_bycopy] = ACTIONS(2038), - [anon_sym_byref] = ACTIONS(2038), - [anon_sym_oneway] = ACTIONS(2038), - [anon_sym__Nullable] = ACTIONS(2038), - [anon_sym__Nonnull] = ACTIONS(2038), - [anon_sym__Nullable_result] = ACTIONS(2038), - [anon_sym__Null_unspecified] = ACTIONS(2038), - [anon_sym___autoreleasing] = ACTIONS(2038), - [anon_sym___nullable] = ACTIONS(2038), - [anon_sym___nonnull] = ACTIONS(2038), - [anon_sym___strong] = ACTIONS(2038), - [anon_sym___weak] = ACTIONS(2038), - [anon_sym___bridge] = ACTIONS(2038), - [anon_sym___bridge_transfer] = ACTIONS(2038), - [anon_sym___bridge_retained] = ACTIONS(2038), - [anon_sym___unsafe_unretained] = ACTIONS(2038), - [anon_sym___block] = ACTIONS(2038), - [anon_sym___kindof] = ACTIONS(2038), - [anon_sym___unused] = ACTIONS(2038), - [anon_sym__Complex] = ACTIONS(2038), - [anon_sym___complex] = ACTIONS(2038), - [anon_sym_IBOutlet] = ACTIONS(2038), - [anon_sym_IBInspectable] = ACTIONS(2038), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2038), - [anon_sym_signed] = ACTIONS(2038), - [anon_sym_unsigned] = ACTIONS(2038), - [anon_sym_long] = ACTIONS(2038), - [anon_sym_short] = ACTIONS(2038), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_NS_ENUM] = ACTIONS(2038), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2038), - [anon_sym_NS_OPTIONS] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_goto] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_sizeof] = ACTIONS(2038), - [sym_number_literal] = ACTIONS(2040), - [anon_sym_L_SQUOTE] = ACTIONS(2040), - [anon_sym_u_SQUOTE] = ACTIONS(2040), - [anon_sym_U_SQUOTE] = ACTIONS(2040), - [anon_sym_u8_SQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_L_DQUOTE] = ACTIONS(2040), - [anon_sym_u_DQUOTE] = ACTIONS(2040), - [anon_sym_U_DQUOTE] = ACTIONS(2040), - [anon_sym_u8_DQUOTE] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [sym_null] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2040), - [anon_sym_ATimport] = ACTIONS(2040), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2038), - [anon_sym_ATcompatibility_alias] = ACTIONS(2040), - [anon_sym_ATprotocol] = ACTIONS(2040), - [anon_sym_ATclass] = ACTIONS(2040), - [anon_sym_ATinterface] = ACTIONS(2040), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2038), - [sym_method_attribute_specifier] = ACTIONS(2038), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2038), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE] = ACTIONS(2038), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_API_AVAILABLE] = ACTIONS(2038), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_API_DEPRECATED] = ACTIONS(2038), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2038), - [anon_sym___deprecated_msg] = ACTIONS(2038), - [anon_sym___deprecated_enum_msg] = ACTIONS(2038), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2038), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2038), - [anon_sym_ATimplementation] = ACTIONS(2040), - [anon_sym_typeof] = ACTIONS(2038), - [anon_sym___typeof] = ACTIONS(2038), - [anon_sym___typeof__] = ACTIONS(2038), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_nil] = ACTIONS(2038), - [sym_id] = ACTIONS(2038), - [sym_instancetype] = ACTIONS(2038), - [sym_Class] = ACTIONS(2038), - [sym_SEL] = ACTIONS(2038), - [sym_IMP] = ACTIONS(2038), - [sym_BOOL] = ACTIONS(2038), - [sym_auto] = ACTIONS(2038), - [anon_sym_ATautoreleasepool] = ACTIONS(2040), - [anon_sym_ATsynchronized] = ACTIONS(2040), - [anon_sym_ATtry] = ACTIONS(2040), - [anon_sym_ATthrow] = ACTIONS(2040), - [anon_sym_ATselector] = ACTIONS(2040), - [anon_sym_ATencode] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2038), - [sym_YES] = ACTIONS(2038), - [sym_NO] = ACTIONS(2038), - [anon_sym___builtin_available] = ACTIONS(2038), - [anon_sym_ATavailable] = ACTIONS(2040), - [anon_sym_va_arg] = ACTIONS(2038), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [791] = { - [sym_identifier] = ACTIONS(2050), - [aux_sym_preproc_include_token1] = ACTIONS(2052), - [aux_sym_preproc_def_token1] = ACTIONS(2052), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_if_token2] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2050), - [aux_sym_preproc_else_token1] = ACTIONS(2050), - [aux_sym_preproc_elif_token1] = ACTIONS(2050), - [anon_sym_LPAREN2] = ACTIONS(2052), - [anon_sym_BANG] = ACTIONS(2052), - [anon_sym_TILDE] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_PLUS] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_typedef] = ACTIONS(2050), - [anon_sym_extern] = ACTIONS(2050), - [anon_sym___attribute] = ACTIONS(2050), - [anon_sym___attribute__] = ACTIONS(2050), - [anon_sym___declspec] = ACTIONS(2050), - [anon_sym___cdecl] = ACTIONS(2050), - [anon_sym___clrcall] = ACTIONS(2050), - [anon_sym___stdcall] = ACTIONS(2050), - [anon_sym___fastcall] = ACTIONS(2050), - [anon_sym___thiscall] = ACTIONS(2050), - [anon_sym___vectorcall] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2050), - [anon_sym_auto] = ACTIONS(2050), - [anon_sym_register] = ACTIONS(2050), - [anon_sym_inline] = ACTIONS(2050), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2050), - [anon_sym_const] = ACTIONS(2050), - [anon_sym_volatile] = ACTIONS(2050), - [anon_sym_restrict] = ACTIONS(2050), - [anon_sym__Atomic] = ACTIONS(2050), - [anon_sym_in] = ACTIONS(2050), - [anon_sym_out] = ACTIONS(2050), - [anon_sym_inout] = ACTIONS(2050), - [anon_sym_bycopy] = ACTIONS(2050), - [anon_sym_byref] = ACTIONS(2050), - [anon_sym_oneway] = ACTIONS(2050), - [anon_sym__Nullable] = ACTIONS(2050), - [anon_sym__Nonnull] = ACTIONS(2050), - [anon_sym__Nullable_result] = ACTIONS(2050), - [anon_sym__Null_unspecified] = ACTIONS(2050), - [anon_sym___autoreleasing] = ACTIONS(2050), - [anon_sym___nullable] = ACTIONS(2050), - [anon_sym___nonnull] = ACTIONS(2050), - [anon_sym___strong] = ACTIONS(2050), - [anon_sym___weak] = ACTIONS(2050), - [anon_sym___bridge] = ACTIONS(2050), - [anon_sym___bridge_transfer] = ACTIONS(2050), - [anon_sym___bridge_retained] = ACTIONS(2050), - [anon_sym___unsafe_unretained] = ACTIONS(2050), - [anon_sym___block] = ACTIONS(2050), - [anon_sym___kindof] = ACTIONS(2050), - [anon_sym___unused] = ACTIONS(2050), - [anon_sym__Complex] = ACTIONS(2050), - [anon_sym___complex] = ACTIONS(2050), - [anon_sym_IBOutlet] = ACTIONS(2050), - [anon_sym_IBInspectable] = ACTIONS(2050), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2050), - [anon_sym_signed] = ACTIONS(2050), - [anon_sym_unsigned] = ACTIONS(2050), - [anon_sym_long] = ACTIONS(2050), - [anon_sym_short] = ACTIONS(2050), - [sym_primitive_type] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2050), - [anon_sym_NS_ENUM] = ACTIONS(2050), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2050), - [anon_sym_NS_OPTIONS] = ACTIONS(2050), - [anon_sym_struct] = ACTIONS(2050), - [anon_sym_union] = ACTIONS(2050), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_switch] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(2050), - [anon_sym_default] = ACTIONS(2050), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2050), - [anon_sym_break] = ACTIONS(2050), - [anon_sym_continue] = ACTIONS(2050), - [anon_sym_goto] = ACTIONS(2050), - [anon_sym_DASH_DASH] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(2052), - [anon_sym_sizeof] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2052), - [anon_sym_u_SQUOTE] = ACTIONS(2052), - [anon_sym_U_SQUOTE] = ACTIONS(2052), - [anon_sym_u8_SQUOTE] = ACTIONS(2052), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_L_DQUOTE] = ACTIONS(2052), - [anon_sym_u_DQUOTE] = ACTIONS(2052), - [anon_sym_U_DQUOTE] = ACTIONS(2052), - [anon_sym_u8_DQUOTE] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(2052), - [sym_true] = ACTIONS(2050), - [sym_false] = ACTIONS(2050), - [sym_null] = ACTIONS(2050), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2052), - [anon_sym_ATimport] = ACTIONS(2052), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2050), - [anon_sym_ATcompatibility_alias] = ACTIONS(2052), - [anon_sym_ATprotocol] = ACTIONS(2052), - [anon_sym_ATclass] = ACTIONS(2052), - [anon_sym_ATinterface] = ACTIONS(2052), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2050), - [sym_method_attribute_specifier] = ACTIONS(2050), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2050), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE] = ACTIONS(2050), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_API_AVAILABLE] = ACTIONS(2050), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_API_DEPRECATED] = ACTIONS(2050), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2050), - [anon_sym___deprecated_msg] = ACTIONS(2050), - [anon_sym___deprecated_enum_msg] = ACTIONS(2050), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2050), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2050), - [anon_sym_ATimplementation] = ACTIONS(2052), - [anon_sym_typeof] = ACTIONS(2050), - [anon_sym___typeof] = ACTIONS(2050), - [anon_sym___typeof__] = ACTIONS(2050), - [sym_self] = ACTIONS(2050), - [sym_super] = ACTIONS(2050), - [sym_nil] = ACTIONS(2050), - [sym_id] = ACTIONS(2050), - [sym_instancetype] = ACTIONS(2050), - [sym_Class] = ACTIONS(2050), - [sym_SEL] = ACTIONS(2050), - [sym_IMP] = ACTIONS(2050), - [sym_BOOL] = ACTIONS(2050), - [sym_auto] = ACTIONS(2050), - [anon_sym_ATautoreleasepool] = ACTIONS(2052), - [anon_sym_ATsynchronized] = ACTIONS(2052), - [anon_sym_ATtry] = ACTIONS(2052), - [anon_sym_ATthrow] = ACTIONS(2052), - [anon_sym_ATselector] = ACTIONS(2052), - [anon_sym_ATencode] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2050), - [sym_YES] = ACTIONS(2050), - [sym_NO] = ACTIONS(2050), - [anon_sym___builtin_available] = ACTIONS(2050), - [anon_sym_ATavailable] = ACTIONS(2052), - [anon_sym_va_arg] = ACTIONS(2050), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [792] = { - [sym_identifier] = ACTIONS(2050), - [aux_sym_preproc_include_token1] = ACTIONS(2052), - [aux_sym_preproc_def_token1] = ACTIONS(2052), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_if_token2] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2050), - [aux_sym_preproc_else_token1] = ACTIONS(2050), - [aux_sym_preproc_elif_token1] = ACTIONS(2050), - [anon_sym_LPAREN2] = ACTIONS(2052), - [anon_sym_BANG] = ACTIONS(2052), - [anon_sym_TILDE] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_PLUS] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_typedef] = ACTIONS(2050), - [anon_sym_extern] = ACTIONS(2050), - [anon_sym___attribute] = ACTIONS(2050), - [anon_sym___attribute__] = ACTIONS(2050), - [anon_sym___declspec] = ACTIONS(2050), - [anon_sym___cdecl] = ACTIONS(2050), - [anon_sym___clrcall] = ACTIONS(2050), - [anon_sym___stdcall] = ACTIONS(2050), - [anon_sym___fastcall] = ACTIONS(2050), - [anon_sym___thiscall] = ACTIONS(2050), - [anon_sym___vectorcall] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2050), - [anon_sym_auto] = ACTIONS(2050), - [anon_sym_register] = ACTIONS(2050), - [anon_sym_inline] = ACTIONS(2050), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2050), - [anon_sym_const] = ACTIONS(2050), - [anon_sym_volatile] = ACTIONS(2050), - [anon_sym_restrict] = ACTIONS(2050), - [anon_sym__Atomic] = ACTIONS(2050), - [anon_sym_in] = ACTIONS(2050), - [anon_sym_out] = ACTIONS(2050), - [anon_sym_inout] = ACTIONS(2050), - [anon_sym_bycopy] = ACTIONS(2050), - [anon_sym_byref] = ACTIONS(2050), - [anon_sym_oneway] = ACTIONS(2050), - [anon_sym__Nullable] = ACTIONS(2050), - [anon_sym__Nonnull] = ACTIONS(2050), - [anon_sym__Nullable_result] = ACTIONS(2050), - [anon_sym__Null_unspecified] = ACTIONS(2050), - [anon_sym___autoreleasing] = ACTIONS(2050), - [anon_sym___nullable] = ACTIONS(2050), - [anon_sym___nonnull] = ACTIONS(2050), - [anon_sym___strong] = ACTIONS(2050), - [anon_sym___weak] = ACTIONS(2050), - [anon_sym___bridge] = ACTIONS(2050), - [anon_sym___bridge_transfer] = ACTIONS(2050), - [anon_sym___bridge_retained] = ACTIONS(2050), - [anon_sym___unsafe_unretained] = ACTIONS(2050), - [anon_sym___block] = ACTIONS(2050), - [anon_sym___kindof] = ACTIONS(2050), - [anon_sym___unused] = ACTIONS(2050), - [anon_sym__Complex] = ACTIONS(2050), - [anon_sym___complex] = ACTIONS(2050), - [anon_sym_IBOutlet] = ACTIONS(2050), - [anon_sym_IBInspectable] = ACTIONS(2050), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2050), - [anon_sym_signed] = ACTIONS(2050), - [anon_sym_unsigned] = ACTIONS(2050), - [anon_sym_long] = ACTIONS(2050), - [anon_sym_short] = ACTIONS(2050), - [sym_primitive_type] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2050), - [anon_sym_NS_ENUM] = ACTIONS(2050), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2050), - [anon_sym_NS_OPTIONS] = ACTIONS(2050), - [anon_sym_struct] = ACTIONS(2050), - [anon_sym_union] = ACTIONS(2050), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_switch] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(2050), - [anon_sym_default] = ACTIONS(2050), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2050), - [anon_sym_break] = ACTIONS(2050), - [anon_sym_continue] = ACTIONS(2050), - [anon_sym_goto] = ACTIONS(2050), - [anon_sym_DASH_DASH] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(2052), - [anon_sym_sizeof] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2052), - [anon_sym_u_SQUOTE] = ACTIONS(2052), - [anon_sym_U_SQUOTE] = ACTIONS(2052), - [anon_sym_u8_SQUOTE] = ACTIONS(2052), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_L_DQUOTE] = ACTIONS(2052), - [anon_sym_u_DQUOTE] = ACTIONS(2052), - [anon_sym_U_DQUOTE] = ACTIONS(2052), - [anon_sym_u8_DQUOTE] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(2052), - [sym_true] = ACTIONS(2050), - [sym_false] = ACTIONS(2050), - [sym_null] = ACTIONS(2050), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2052), - [anon_sym_ATimport] = ACTIONS(2052), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2050), - [anon_sym_ATcompatibility_alias] = ACTIONS(2052), - [anon_sym_ATprotocol] = ACTIONS(2052), - [anon_sym_ATclass] = ACTIONS(2052), - [anon_sym_ATinterface] = ACTIONS(2052), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2050), - [sym_method_attribute_specifier] = ACTIONS(2050), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2050), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE] = ACTIONS(2050), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_API_AVAILABLE] = ACTIONS(2050), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_API_DEPRECATED] = ACTIONS(2050), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2050), - [anon_sym___deprecated_msg] = ACTIONS(2050), - [anon_sym___deprecated_enum_msg] = ACTIONS(2050), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2050), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2050), - [anon_sym_ATimplementation] = ACTIONS(2052), - [anon_sym_typeof] = ACTIONS(2050), - [anon_sym___typeof] = ACTIONS(2050), - [anon_sym___typeof__] = ACTIONS(2050), - [sym_self] = ACTIONS(2050), - [sym_super] = ACTIONS(2050), - [sym_nil] = ACTIONS(2050), - [sym_id] = ACTIONS(2050), - [sym_instancetype] = ACTIONS(2050), - [sym_Class] = ACTIONS(2050), - [sym_SEL] = ACTIONS(2050), - [sym_IMP] = ACTIONS(2050), - [sym_BOOL] = ACTIONS(2050), - [sym_auto] = ACTIONS(2050), - [anon_sym_ATautoreleasepool] = ACTIONS(2052), - [anon_sym_ATsynchronized] = ACTIONS(2052), - [anon_sym_ATtry] = ACTIONS(2052), - [anon_sym_ATthrow] = ACTIONS(2052), - [anon_sym_ATselector] = ACTIONS(2052), - [anon_sym_ATencode] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2050), - [sym_YES] = ACTIONS(2050), - [sym_NO] = ACTIONS(2050), - [anon_sym___builtin_available] = ACTIONS(2050), - [anon_sym_ATavailable] = ACTIONS(2052), - [anon_sym_va_arg] = ACTIONS(2050), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [793] = { - [sym_identifier] = ACTIONS(2054), - [aux_sym_preproc_include_token1] = ACTIONS(2056), - [aux_sym_preproc_def_token1] = ACTIONS(2056), - [aux_sym_preproc_if_token1] = ACTIONS(2054), - [aux_sym_preproc_if_token2] = ACTIONS(2054), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2054), - [aux_sym_preproc_else_token1] = ACTIONS(2054), - [aux_sym_preproc_elif_token1] = ACTIONS(2054), - [anon_sym_LPAREN2] = ACTIONS(2056), - [anon_sym_BANG] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2056), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_PLUS] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2056), - [anon_sym_CARET] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2056), - [anon_sym_typedef] = ACTIONS(2054), - [anon_sym_extern] = ACTIONS(2054), - [anon_sym___attribute] = ACTIONS(2054), - [anon_sym___attribute__] = ACTIONS(2054), - [anon_sym___declspec] = ACTIONS(2054), - [anon_sym___cdecl] = ACTIONS(2054), - [anon_sym___clrcall] = ACTIONS(2054), - [anon_sym___stdcall] = ACTIONS(2054), - [anon_sym___fastcall] = ACTIONS(2054), - [anon_sym___thiscall] = ACTIONS(2054), - [anon_sym___vectorcall] = ACTIONS(2054), - [anon_sym_LBRACE] = ACTIONS(2056), - [anon_sym_LBRACK] = ACTIONS(2056), - [anon_sym_static] = ACTIONS(2054), - [anon_sym_auto] = ACTIONS(2054), - [anon_sym_register] = ACTIONS(2054), - [anon_sym_inline] = ACTIONS(2054), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2054), - [anon_sym_const] = ACTIONS(2054), - [anon_sym_volatile] = ACTIONS(2054), - [anon_sym_restrict] = ACTIONS(2054), - [anon_sym__Atomic] = ACTIONS(2054), - [anon_sym_in] = ACTIONS(2054), - [anon_sym_out] = ACTIONS(2054), - [anon_sym_inout] = ACTIONS(2054), - [anon_sym_bycopy] = ACTIONS(2054), - [anon_sym_byref] = ACTIONS(2054), - [anon_sym_oneway] = ACTIONS(2054), - [anon_sym__Nullable] = ACTIONS(2054), - [anon_sym__Nonnull] = ACTIONS(2054), - [anon_sym__Nullable_result] = ACTIONS(2054), - [anon_sym__Null_unspecified] = ACTIONS(2054), - [anon_sym___autoreleasing] = ACTIONS(2054), - [anon_sym___nullable] = ACTIONS(2054), - [anon_sym___nonnull] = ACTIONS(2054), - [anon_sym___strong] = ACTIONS(2054), - [anon_sym___weak] = ACTIONS(2054), - [anon_sym___bridge] = ACTIONS(2054), - [anon_sym___bridge_transfer] = ACTIONS(2054), - [anon_sym___bridge_retained] = ACTIONS(2054), - [anon_sym___unsafe_unretained] = ACTIONS(2054), - [anon_sym___block] = ACTIONS(2054), - [anon_sym___kindof] = ACTIONS(2054), - [anon_sym___unused] = ACTIONS(2054), - [anon_sym__Complex] = ACTIONS(2054), - [anon_sym___complex] = ACTIONS(2054), - [anon_sym_IBOutlet] = ACTIONS(2054), - [anon_sym_IBInspectable] = ACTIONS(2054), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2054), - [anon_sym_signed] = ACTIONS(2054), - [anon_sym_unsigned] = ACTIONS(2054), - [anon_sym_long] = ACTIONS(2054), - [anon_sym_short] = ACTIONS(2054), - [sym_primitive_type] = ACTIONS(2054), - [anon_sym_enum] = ACTIONS(2054), - [anon_sym_NS_ENUM] = ACTIONS(2054), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2054), - [anon_sym_NS_OPTIONS] = ACTIONS(2054), - [anon_sym_struct] = ACTIONS(2054), - [anon_sym_union] = ACTIONS(2054), - [anon_sym_if] = ACTIONS(2054), - [anon_sym_switch] = ACTIONS(2054), - [anon_sym_case] = ACTIONS(2054), - [anon_sym_default] = ACTIONS(2054), - [anon_sym_while] = ACTIONS(2054), - [anon_sym_do] = ACTIONS(2054), - [anon_sym_for] = ACTIONS(2054), - [anon_sym_return] = ACTIONS(2054), - [anon_sym_break] = ACTIONS(2054), - [anon_sym_continue] = ACTIONS(2054), - [anon_sym_goto] = ACTIONS(2054), - [anon_sym_DASH_DASH] = ACTIONS(2056), - [anon_sym_PLUS_PLUS] = ACTIONS(2056), - [anon_sym_sizeof] = ACTIONS(2054), - [sym_number_literal] = ACTIONS(2056), - [anon_sym_L_SQUOTE] = ACTIONS(2056), - [anon_sym_u_SQUOTE] = ACTIONS(2056), - [anon_sym_U_SQUOTE] = ACTIONS(2056), - [anon_sym_u8_SQUOTE] = ACTIONS(2056), - [anon_sym_SQUOTE] = ACTIONS(2056), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2054), - [sym_false] = ACTIONS(2054), - [sym_null] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2056), - [anon_sym_ATimport] = ACTIONS(2056), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2054), - [anon_sym_ATcompatibility_alias] = ACTIONS(2056), - [anon_sym_ATprotocol] = ACTIONS(2056), - [anon_sym_ATclass] = ACTIONS(2056), - [anon_sym_ATinterface] = ACTIONS(2056), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2054), - [sym_method_attribute_specifier] = ACTIONS(2054), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2054), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2054), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2054), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2054), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2054), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2054), - [anon_sym_NS_AVAILABLE] = ACTIONS(2054), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2054), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2054), - [anon_sym_API_AVAILABLE] = ACTIONS(2054), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2054), - [anon_sym_API_DEPRECATED] = ACTIONS(2054), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2054), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2054), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2054), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2054), - [anon_sym___deprecated_msg] = ACTIONS(2054), - [anon_sym___deprecated_enum_msg] = ACTIONS(2054), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2054), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2054), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2054), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2054), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2054), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2054), - [anon_sym_ATimplementation] = ACTIONS(2056), - [anon_sym_typeof] = ACTIONS(2054), - [anon_sym___typeof] = ACTIONS(2054), - [anon_sym___typeof__] = ACTIONS(2054), - [sym_self] = ACTIONS(2054), - [sym_super] = ACTIONS(2054), - [sym_nil] = ACTIONS(2054), - [sym_id] = ACTIONS(2054), - [sym_instancetype] = ACTIONS(2054), - [sym_Class] = ACTIONS(2054), - [sym_SEL] = ACTIONS(2054), - [sym_IMP] = ACTIONS(2054), - [sym_BOOL] = ACTIONS(2054), - [sym_auto] = ACTIONS(2054), - [anon_sym_ATautoreleasepool] = ACTIONS(2056), - [anon_sym_ATsynchronized] = ACTIONS(2056), - [anon_sym_ATtry] = ACTIONS(2056), - [anon_sym_ATthrow] = ACTIONS(2056), - [anon_sym_ATselector] = ACTIONS(2056), - [anon_sym_ATencode] = ACTIONS(2056), - [anon_sym_AT] = ACTIONS(2054), - [sym_YES] = ACTIONS(2054), - [sym_NO] = ACTIONS(2054), - [anon_sym___builtin_available] = ACTIONS(2054), - [anon_sym_ATavailable] = ACTIONS(2056), - [anon_sym_va_arg] = ACTIONS(2054), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [794] = { - [sym_identifier] = ACTIONS(2058), - [aux_sym_preproc_include_token1] = ACTIONS(2060), - [aux_sym_preproc_def_token1] = ACTIONS(2060), - [aux_sym_preproc_if_token1] = ACTIONS(2058), - [aux_sym_preproc_if_token2] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2058), - [aux_sym_preproc_else_token1] = ACTIONS(2058), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [anon_sym_LPAREN2] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_typedef] = ACTIONS(2058), - [anon_sym_extern] = ACTIONS(2058), - [anon_sym___attribute] = ACTIONS(2058), - [anon_sym___attribute__] = ACTIONS(2058), - [anon_sym___declspec] = ACTIONS(2058), - [anon_sym___cdecl] = ACTIONS(2058), - [anon_sym___clrcall] = ACTIONS(2058), - [anon_sym___stdcall] = ACTIONS(2058), - [anon_sym___fastcall] = ACTIONS(2058), - [anon_sym___thiscall] = ACTIONS(2058), - [anon_sym___vectorcall] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_auto] = ACTIONS(2058), - [anon_sym_register] = ACTIONS(2058), - [anon_sym_inline] = ACTIONS(2058), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2058), - [anon_sym_const] = ACTIONS(2058), - [anon_sym_volatile] = ACTIONS(2058), - [anon_sym_restrict] = ACTIONS(2058), - [anon_sym__Atomic] = ACTIONS(2058), - [anon_sym_in] = ACTIONS(2058), - [anon_sym_out] = ACTIONS(2058), - [anon_sym_inout] = ACTIONS(2058), - [anon_sym_bycopy] = ACTIONS(2058), - [anon_sym_byref] = ACTIONS(2058), - [anon_sym_oneway] = ACTIONS(2058), - [anon_sym__Nullable] = ACTIONS(2058), - [anon_sym__Nonnull] = ACTIONS(2058), - [anon_sym__Nullable_result] = ACTIONS(2058), - [anon_sym__Null_unspecified] = ACTIONS(2058), - [anon_sym___autoreleasing] = ACTIONS(2058), - [anon_sym___nullable] = ACTIONS(2058), - [anon_sym___nonnull] = ACTIONS(2058), - [anon_sym___strong] = ACTIONS(2058), - [anon_sym___weak] = ACTIONS(2058), - [anon_sym___bridge] = ACTIONS(2058), - [anon_sym___bridge_transfer] = ACTIONS(2058), - [anon_sym___bridge_retained] = ACTIONS(2058), - [anon_sym___unsafe_unretained] = ACTIONS(2058), - [anon_sym___block] = ACTIONS(2058), - [anon_sym___kindof] = ACTIONS(2058), - [anon_sym___unused] = ACTIONS(2058), - [anon_sym__Complex] = ACTIONS(2058), - [anon_sym___complex] = ACTIONS(2058), - [anon_sym_IBOutlet] = ACTIONS(2058), - [anon_sym_IBInspectable] = ACTIONS(2058), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2058), - [anon_sym_signed] = ACTIONS(2058), - [anon_sym_unsigned] = ACTIONS(2058), - [anon_sym_long] = ACTIONS(2058), - [anon_sym_short] = ACTIONS(2058), - [sym_primitive_type] = ACTIONS(2058), - [anon_sym_enum] = ACTIONS(2058), - [anon_sym_NS_ENUM] = ACTIONS(2058), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2058), - [anon_sym_NS_OPTIONS] = ACTIONS(2058), - [anon_sym_struct] = ACTIONS(2058), - [anon_sym_union] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_switch] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2058), - [anon_sym_default] = ACTIONS(2058), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2058), - [anon_sym_break] = ACTIONS(2058), - [anon_sym_continue] = ACTIONS(2058), - [anon_sym_goto] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2060), - [anon_sym_sizeof] = ACTIONS(2058), - [sym_number_literal] = ACTIONS(2060), - [anon_sym_L_SQUOTE] = ACTIONS(2060), - [anon_sym_u_SQUOTE] = ACTIONS(2060), - [anon_sym_U_SQUOTE] = ACTIONS(2060), - [anon_sym_u8_SQUOTE] = ACTIONS(2060), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_L_DQUOTE] = ACTIONS(2060), - [anon_sym_u_DQUOTE] = ACTIONS(2060), - [anon_sym_U_DQUOTE] = ACTIONS(2060), - [anon_sym_u8_DQUOTE] = ACTIONS(2060), - [anon_sym_DQUOTE] = ACTIONS(2060), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [sym_null] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2060), - [anon_sym_ATimport] = ACTIONS(2060), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2058), - [anon_sym_ATcompatibility_alias] = ACTIONS(2060), - [anon_sym_ATprotocol] = ACTIONS(2060), - [anon_sym_ATclass] = ACTIONS(2060), - [anon_sym_ATinterface] = ACTIONS(2060), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2058), - [sym_method_attribute_specifier] = ACTIONS(2058), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2058), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE] = ACTIONS(2058), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_API_AVAILABLE] = ACTIONS(2058), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_API_DEPRECATED] = ACTIONS(2058), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2058), - [anon_sym___deprecated_msg] = ACTIONS(2058), - [anon_sym___deprecated_enum_msg] = ACTIONS(2058), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2058), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2058), - [anon_sym_ATimplementation] = ACTIONS(2060), - [anon_sym_typeof] = ACTIONS(2058), - [anon_sym___typeof] = ACTIONS(2058), - [anon_sym___typeof__] = ACTIONS(2058), - [sym_self] = ACTIONS(2058), - [sym_super] = ACTIONS(2058), - [sym_nil] = ACTIONS(2058), - [sym_id] = ACTIONS(2058), - [sym_instancetype] = ACTIONS(2058), - [sym_Class] = ACTIONS(2058), - [sym_SEL] = ACTIONS(2058), - [sym_IMP] = ACTIONS(2058), - [sym_BOOL] = ACTIONS(2058), - [sym_auto] = ACTIONS(2058), - [anon_sym_ATautoreleasepool] = ACTIONS(2060), - [anon_sym_ATsynchronized] = ACTIONS(2060), - [anon_sym_ATtry] = ACTIONS(2060), - [anon_sym_ATthrow] = ACTIONS(2060), - [anon_sym_ATselector] = ACTIONS(2060), - [anon_sym_ATencode] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [sym_YES] = ACTIONS(2058), - [sym_NO] = ACTIONS(2058), - [anon_sym___builtin_available] = ACTIONS(2058), - [anon_sym_ATavailable] = ACTIONS(2060), - [anon_sym_va_arg] = ACTIONS(2058), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [795] = { - [sym_identifier] = ACTIONS(2058), - [aux_sym_preproc_include_token1] = ACTIONS(2060), - [aux_sym_preproc_def_token1] = ACTIONS(2060), - [aux_sym_preproc_if_token1] = ACTIONS(2058), - [aux_sym_preproc_if_token2] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2058), - [aux_sym_preproc_else_token1] = ACTIONS(2058), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [anon_sym_LPAREN2] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_typedef] = ACTIONS(2058), - [anon_sym_extern] = ACTIONS(2058), - [anon_sym___attribute] = ACTIONS(2058), - [anon_sym___attribute__] = ACTIONS(2058), - [anon_sym___declspec] = ACTIONS(2058), - [anon_sym___cdecl] = ACTIONS(2058), - [anon_sym___clrcall] = ACTIONS(2058), - [anon_sym___stdcall] = ACTIONS(2058), - [anon_sym___fastcall] = ACTIONS(2058), - [anon_sym___thiscall] = ACTIONS(2058), - [anon_sym___vectorcall] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_auto] = ACTIONS(2058), - [anon_sym_register] = ACTIONS(2058), - [anon_sym_inline] = ACTIONS(2058), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2058), - [anon_sym_const] = ACTIONS(2058), - [anon_sym_volatile] = ACTIONS(2058), - [anon_sym_restrict] = ACTIONS(2058), - [anon_sym__Atomic] = ACTIONS(2058), - [anon_sym_in] = ACTIONS(2058), - [anon_sym_out] = ACTIONS(2058), - [anon_sym_inout] = ACTIONS(2058), - [anon_sym_bycopy] = ACTIONS(2058), - [anon_sym_byref] = ACTIONS(2058), - [anon_sym_oneway] = ACTIONS(2058), - [anon_sym__Nullable] = ACTIONS(2058), - [anon_sym__Nonnull] = ACTIONS(2058), - [anon_sym__Nullable_result] = ACTIONS(2058), - [anon_sym__Null_unspecified] = ACTIONS(2058), - [anon_sym___autoreleasing] = ACTIONS(2058), - [anon_sym___nullable] = ACTIONS(2058), - [anon_sym___nonnull] = ACTIONS(2058), - [anon_sym___strong] = ACTIONS(2058), - [anon_sym___weak] = ACTIONS(2058), - [anon_sym___bridge] = ACTIONS(2058), - [anon_sym___bridge_transfer] = ACTIONS(2058), - [anon_sym___bridge_retained] = ACTIONS(2058), - [anon_sym___unsafe_unretained] = ACTIONS(2058), - [anon_sym___block] = ACTIONS(2058), - [anon_sym___kindof] = ACTIONS(2058), - [anon_sym___unused] = ACTIONS(2058), - [anon_sym__Complex] = ACTIONS(2058), - [anon_sym___complex] = ACTIONS(2058), - [anon_sym_IBOutlet] = ACTIONS(2058), - [anon_sym_IBInspectable] = ACTIONS(2058), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2058), - [anon_sym_signed] = ACTIONS(2058), - [anon_sym_unsigned] = ACTIONS(2058), - [anon_sym_long] = ACTIONS(2058), - [anon_sym_short] = ACTIONS(2058), - [sym_primitive_type] = ACTIONS(2058), - [anon_sym_enum] = ACTIONS(2058), - [anon_sym_NS_ENUM] = ACTIONS(2058), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2058), - [anon_sym_NS_OPTIONS] = ACTIONS(2058), - [anon_sym_struct] = ACTIONS(2058), - [anon_sym_union] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_switch] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2058), - [anon_sym_default] = ACTIONS(2058), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2058), - [anon_sym_break] = ACTIONS(2058), - [anon_sym_continue] = ACTIONS(2058), - [anon_sym_goto] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2060), - [anon_sym_sizeof] = ACTIONS(2058), - [sym_number_literal] = ACTIONS(2060), - [anon_sym_L_SQUOTE] = ACTIONS(2060), - [anon_sym_u_SQUOTE] = ACTIONS(2060), - [anon_sym_U_SQUOTE] = ACTIONS(2060), - [anon_sym_u8_SQUOTE] = ACTIONS(2060), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_L_DQUOTE] = ACTIONS(2060), - [anon_sym_u_DQUOTE] = ACTIONS(2060), - [anon_sym_U_DQUOTE] = ACTIONS(2060), - [anon_sym_u8_DQUOTE] = ACTIONS(2060), - [anon_sym_DQUOTE] = ACTIONS(2060), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [sym_null] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2060), - [anon_sym_ATimport] = ACTIONS(2060), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2058), - [anon_sym_ATcompatibility_alias] = ACTIONS(2060), - [anon_sym_ATprotocol] = ACTIONS(2060), - [anon_sym_ATclass] = ACTIONS(2060), - [anon_sym_ATinterface] = ACTIONS(2060), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2058), - [sym_method_attribute_specifier] = ACTIONS(2058), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2058), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE] = ACTIONS(2058), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_API_AVAILABLE] = ACTIONS(2058), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_API_DEPRECATED] = ACTIONS(2058), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2058), - [anon_sym___deprecated_msg] = ACTIONS(2058), - [anon_sym___deprecated_enum_msg] = ACTIONS(2058), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2058), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2058), - [anon_sym_ATimplementation] = ACTIONS(2060), - [anon_sym_typeof] = ACTIONS(2058), - [anon_sym___typeof] = ACTIONS(2058), - [anon_sym___typeof__] = ACTIONS(2058), - [sym_self] = ACTIONS(2058), - [sym_super] = ACTIONS(2058), - [sym_nil] = ACTIONS(2058), - [sym_id] = ACTIONS(2058), - [sym_instancetype] = ACTIONS(2058), - [sym_Class] = ACTIONS(2058), - [sym_SEL] = ACTIONS(2058), - [sym_IMP] = ACTIONS(2058), - [sym_BOOL] = ACTIONS(2058), - [sym_auto] = ACTIONS(2058), - [anon_sym_ATautoreleasepool] = ACTIONS(2060), - [anon_sym_ATsynchronized] = ACTIONS(2060), - [anon_sym_ATtry] = ACTIONS(2060), - [anon_sym_ATthrow] = ACTIONS(2060), - [anon_sym_ATselector] = ACTIONS(2060), - [anon_sym_ATencode] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [sym_YES] = ACTIONS(2058), - [sym_NO] = ACTIONS(2058), - [anon_sym___builtin_available] = ACTIONS(2058), - [anon_sym_ATavailable] = ACTIONS(2060), - [anon_sym_va_arg] = ACTIONS(2058), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [796] = { - [sym_identifier] = ACTIONS(2058), - [aux_sym_preproc_include_token1] = ACTIONS(2060), - [aux_sym_preproc_def_token1] = ACTIONS(2060), - [aux_sym_preproc_if_token1] = ACTIONS(2058), - [aux_sym_preproc_if_token2] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2058), - [aux_sym_preproc_else_token1] = ACTIONS(2058), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [anon_sym_LPAREN2] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_typedef] = ACTIONS(2058), - [anon_sym_extern] = ACTIONS(2058), - [anon_sym___attribute] = ACTIONS(2058), - [anon_sym___attribute__] = ACTIONS(2058), - [anon_sym___declspec] = ACTIONS(2058), - [anon_sym___cdecl] = ACTIONS(2058), - [anon_sym___clrcall] = ACTIONS(2058), - [anon_sym___stdcall] = ACTIONS(2058), - [anon_sym___fastcall] = ACTIONS(2058), - [anon_sym___thiscall] = ACTIONS(2058), - [anon_sym___vectorcall] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_auto] = ACTIONS(2058), - [anon_sym_register] = ACTIONS(2058), - [anon_sym_inline] = ACTIONS(2058), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2058), - [anon_sym_const] = ACTIONS(2058), - [anon_sym_volatile] = ACTIONS(2058), - [anon_sym_restrict] = ACTIONS(2058), - [anon_sym__Atomic] = ACTIONS(2058), - [anon_sym_in] = ACTIONS(2058), - [anon_sym_out] = ACTIONS(2058), - [anon_sym_inout] = ACTIONS(2058), - [anon_sym_bycopy] = ACTIONS(2058), - [anon_sym_byref] = ACTIONS(2058), - [anon_sym_oneway] = ACTIONS(2058), - [anon_sym__Nullable] = ACTIONS(2058), - [anon_sym__Nonnull] = ACTIONS(2058), - [anon_sym__Nullable_result] = ACTIONS(2058), - [anon_sym__Null_unspecified] = ACTIONS(2058), - [anon_sym___autoreleasing] = ACTIONS(2058), - [anon_sym___nullable] = ACTIONS(2058), - [anon_sym___nonnull] = ACTIONS(2058), - [anon_sym___strong] = ACTIONS(2058), - [anon_sym___weak] = ACTIONS(2058), - [anon_sym___bridge] = ACTIONS(2058), - [anon_sym___bridge_transfer] = ACTIONS(2058), - [anon_sym___bridge_retained] = ACTIONS(2058), - [anon_sym___unsafe_unretained] = ACTIONS(2058), - [anon_sym___block] = ACTIONS(2058), - [anon_sym___kindof] = ACTIONS(2058), - [anon_sym___unused] = ACTIONS(2058), - [anon_sym__Complex] = ACTIONS(2058), - [anon_sym___complex] = ACTIONS(2058), - [anon_sym_IBOutlet] = ACTIONS(2058), - [anon_sym_IBInspectable] = ACTIONS(2058), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2058), - [anon_sym_signed] = ACTIONS(2058), - [anon_sym_unsigned] = ACTIONS(2058), - [anon_sym_long] = ACTIONS(2058), - [anon_sym_short] = ACTIONS(2058), - [sym_primitive_type] = ACTIONS(2058), - [anon_sym_enum] = ACTIONS(2058), - [anon_sym_NS_ENUM] = ACTIONS(2058), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2058), - [anon_sym_NS_OPTIONS] = ACTIONS(2058), - [anon_sym_struct] = ACTIONS(2058), - [anon_sym_union] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_switch] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2058), - [anon_sym_default] = ACTIONS(2058), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2058), - [anon_sym_break] = ACTIONS(2058), - [anon_sym_continue] = ACTIONS(2058), - [anon_sym_goto] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2060), - [anon_sym_sizeof] = ACTIONS(2058), - [sym_number_literal] = ACTIONS(2060), - [anon_sym_L_SQUOTE] = ACTIONS(2060), - [anon_sym_u_SQUOTE] = ACTIONS(2060), - [anon_sym_U_SQUOTE] = ACTIONS(2060), - [anon_sym_u8_SQUOTE] = ACTIONS(2060), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_L_DQUOTE] = ACTIONS(2060), - [anon_sym_u_DQUOTE] = ACTIONS(2060), - [anon_sym_U_DQUOTE] = ACTIONS(2060), - [anon_sym_u8_DQUOTE] = ACTIONS(2060), - [anon_sym_DQUOTE] = ACTIONS(2060), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [sym_null] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2060), - [anon_sym_ATimport] = ACTIONS(2060), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2058), - [anon_sym_ATcompatibility_alias] = ACTIONS(2060), - [anon_sym_ATprotocol] = ACTIONS(2060), - [anon_sym_ATclass] = ACTIONS(2060), - [anon_sym_ATinterface] = ACTIONS(2060), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2058), - [sym_method_attribute_specifier] = ACTIONS(2058), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2058), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE] = ACTIONS(2058), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_API_AVAILABLE] = ACTIONS(2058), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_API_DEPRECATED] = ACTIONS(2058), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2058), - [anon_sym___deprecated_msg] = ACTIONS(2058), - [anon_sym___deprecated_enum_msg] = ACTIONS(2058), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2058), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2058), - [anon_sym_ATimplementation] = ACTIONS(2060), - [anon_sym_typeof] = ACTIONS(2058), - [anon_sym___typeof] = ACTIONS(2058), - [anon_sym___typeof__] = ACTIONS(2058), - [sym_self] = ACTIONS(2058), - [sym_super] = ACTIONS(2058), - [sym_nil] = ACTIONS(2058), - [sym_id] = ACTIONS(2058), - [sym_instancetype] = ACTIONS(2058), - [sym_Class] = ACTIONS(2058), - [sym_SEL] = ACTIONS(2058), - [sym_IMP] = ACTIONS(2058), - [sym_BOOL] = ACTIONS(2058), - [sym_auto] = ACTIONS(2058), - [anon_sym_ATautoreleasepool] = ACTIONS(2060), - [anon_sym_ATsynchronized] = ACTIONS(2060), - [anon_sym_ATtry] = ACTIONS(2060), - [anon_sym_ATthrow] = ACTIONS(2060), - [anon_sym_ATselector] = ACTIONS(2060), - [anon_sym_ATencode] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [sym_YES] = ACTIONS(2058), - [sym_NO] = ACTIONS(2058), - [anon_sym___builtin_available] = ACTIONS(2058), - [anon_sym_ATavailable] = ACTIONS(2060), - [anon_sym_va_arg] = ACTIONS(2058), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [797] = { - [sym_identifier] = ACTIONS(2058), - [aux_sym_preproc_include_token1] = ACTIONS(2060), - [aux_sym_preproc_def_token1] = ACTIONS(2060), - [aux_sym_preproc_if_token1] = ACTIONS(2058), - [aux_sym_preproc_if_token2] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2058), - [aux_sym_preproc_else_token1] = ACTIONS(2058), - [aux_sym_preproc_elif_token1] = ACTIONS(2058), - [anon_sym_LPAREN2] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_typedef] = ACTIONS(2058), - [anon_sym_extern] = ACTIONS(2058), - [anon_sym___attribute] = ACTIONS(2058), - [anon_sym___attribute__] = ACTIONS(2058), - [anon_sym___declspec] = ACTIONS(2058), - [anon_sym___cdecl] = ACTIONS(2058), - [anon_sym___clrcall] = ACTIONS(2058), - [anon_sym___stdcall] = ACTIONS(2058), - [anon_sym___fastcall] = ACTIONS(2058), - [anon_sym___thiscall] = ACTIONS(2058), - [anon_sym___vectorcall] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_auto] = ACTIONS(2058), - [anon_sym_register] = ACTIONS(2058), - [anon_sym_inline] = ACTIONS(2058), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2058), - [anon_sym_const] = ACTIONS(2058), - [anon_sym_volatile] = ACTIONS(2058), - [anon_sym_restrict] = ACTIONS(2058), - [anon_sym__Atomic] = ACTIONS(2058), - [anon_sym_in] = ACTIONS(2058), - [anon_sym_out] = ACTIONS(2058), - [anon_sym_inout] = ACTIONS(2058), - [anon_sym_bycopy] = ACTIONS(2058), - [anon_sym_byref] = ACTIONS(2058), - [anon_sym_oneway] = ACTIONS(2058), - [anon_sym__Nullable] = ACTIONS(2058), - [anon_sym__Nonnull] = ACTIONS(2058), - [anon_sym__Nullable_result] = ACTIONS(2058), - [anon_sym__Null_unspecified] = ACTIONS(2058), - [anon_sym___autoreleasing] = ACTIONS(2058), - [anon_sym___nullable] = ACTIONS(2058), - [anon_sym___nonnull] = ACTIONS(2058), - [anon_sym___strong] = ACTIONS(2058), - [anon_sym___weak] = ACTIONS(2058), - [anon_sym___bridge] = ACTIONS(2058), - [anon_sym___bridge_transfer] = ACTIONS(2058), - [anon_sym___bridge_retained] = ACTIONS(2058), - [anon_sym___unsafe_unretained] = ACTIONS(2058), - [anon_sym___block] = ACTIONS(2058), - [anon_sym___kindof] = ACTIONS(2058), - [anon_sym___unused] = ACTIONS(2058), - [anon_sym__Complex] = ACTIONS(2058), - [anon_sym___complex] = ACTIONS(2058), - [anon_sym_IBOutlet] = ACTIONS(2058), - [anon_sym_IBInspectable] = ACTIONS(2058), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2058), - [anon_sym_signed] = ACTIONS(2058), - [anon_sym_unsigned] = ACTIONS(2058), - [anon_sym_long] = ACTIONS(2058), - [anon_sym_short] = ACTIONS(2058), - [sym_primitive_type] = ACTIONS(2058), - [anon_sym_enum] = ACTIONS(2058), - [anon_sym_NS_ENUM] = ACTIONS(2058), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2058), - [anon_sym_NS_OPTIONS] = ACTIONS(2058), - [anon_sym_struct] = ACTIONS(2058), - [anon_sym_union] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_switch] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2058), - [anon_sym_default] = ACTIONS(2058), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2058), - [anon_sym_break] = ACTIONS(2058), - [anon_sym_continue] = ACTIONS(2058), - [anon_sym_goto] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2060), - [anon_sym_sizeof] = ACTIONS(2058), - [sym_number_literal] = ACTIONS(2060), - [anon_sym_L_SQUOTE] = ACTIONS(2060), - [anon_sym_u_SQUOTE] = ACTIONS(2060), - [anon_sym_U_SQUOTE] = ACTIONS(2060), - [anon_sym_u8_SQUOTE] = ACTIONS(2060), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_L_DQUOTE] = ACTIONS(2060), - [anon_sym_u_DQUOTE] = ACTIONS(2060), - [anon_sym_U_DQUOTE] = ACTIONS(2060), - [anon_sym_u8_DQUOTE] = ACTIONS(2060), - [anon_sym_DQUOTE] = ACTIONS(2060), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [sym_null] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2060), - [anon_sym_ATimport] = ACTIONS(2060), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2058), - [anon_sym_ATcompatibility_alias] = ACTIONS(2060), - [anon_sym_ATprotocol] = ACTIONS(2060), - [anon_sym_ATclass] = ACTIONS(2060), - [anon_sym_ATinterface] = ACTIONS(2060), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2058), - [sym_method_attribute_specifier] = ACTIONS(2058), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2058), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE] = ACTIONS(2058), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_API_AVAILABLE] = ACTIONS(2058), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_API_DEPRECATED] = ACTIONS(2058), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2058), - [anon_sym___deprecated_msg] = ACTIONS(2058), - [anon_sym___deprecated_enum_msg] = ACTIONS(2058), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2058), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2058), - [anon_sym_ATimplementation] = ACTIONS(2060), - [anon_sym_typeof] = ACTIONS(2058), - [anon_sym___typeof] = ACTIONS(2058), - [anon_sym___typeof__] = ACTIONS(2058), - [sym_self] = ACTIONS(2058), - [sym_super] = ACTIONS(2058), - [sym_nil] = ACTIONS(2058), - [sym_id] = ACTIONS(2058), - [sym_instancetype] = ACTIONS(2058), - [sym_Class] = ACTIONS(2058), - [sym_SEL] = ACTIONS(2058), - [sym_IMP] = ACTIONS(2058), - [sym_BOOL] = ACTIONS(2058), - [sym_auto] = ACTIONS(2058), - [anon_sym_ATautoreleasepool] = ACTIONS(2060), - [anon_sym_ATsynchronized] = ACTIONS(2060), - [anon_sym_ATtry] = ACTIONS(2060), - [anon_sym_ATthrow] = ACTIONS(2060), - [anon_sym_ATselector] = ACTIONS(2060), - [anon_sym_ATencode] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [sym_YES] = ACTIONS(2058), - [sym_NO] = ACTIONS(2058), - [anon_sym___builtin_available] = ACTIONS(2058), - [anon_sym_ATavailable] = ACTIONS(2060), - [anon_sym_va_arg] = ACTIONS(2058), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [798] = { - [sym_identifier] = ACTIONS(2062), - [aux_sym_preproc_include_token1] = ACTIONS(2064), - [aux_sym_preproc_def_token1] = ACTIONS(2064), - [aux_sym_preproc_if_token1] = ACTIONS(2062), - [aux_sym_preproc_if_token2] = ACTIONS(2062), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2062), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2062), - [aux_sym_preproc_else_token1] = ACTIONS(2062), - [aux_sym_preproc_elif_token1] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(2064), - [anon_sym_BANG] = ACTIONS(2064), - [anon_sym_TILDE] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_CARET] = ACTIONS(2064), - [anon_sym_AMP] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_typedef] = ACTIONS(2062), - [anon_sym_extern] = ACTIONS(2062), - [anon_sym___attribute] = ACTIONS(2062), - [anon_sym___attribute__] = ACTIONS(2062), - [anon_sym___declspec] = ACTIONS(2062), - [anon_sym___cdecl] = ACTIONS(2062), - [anon_sym___clrcall] = ACTIONS(2062), - [anon_sym___stdcall] = ACTIONS(2062), - [anon_sym___fastcall] = ACTIONS(2062), - [anon_sym___thiscall] = ACTIONS(2062), - [anon_sym___vectorcall] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACK] = ACTIONS(2064), - [anon_sym_static] = ACTIONS(2062), - [anon_sym_auto] = ACTIONS(2062), - [anon_sym_register] = ACTIONS(2062), - [anon_sym_inline] = ACTIONS(2062), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2062), - [anon_sym_const] = ACTIONS(2062), - [anon_sym_volatile] = ACTIONS(2062), - [anon_sym_restrict] = ACTIONS(2062), - [anon_sym__Atomic] = ACTIONS(2062), - [anon_sym_in] = ACTIONS(2062), - [anon_sym_out] = ACTIONS(2062), - [anon_sym_inout] = ACTIONS(2062), - [anon_sym_bycopy] = ACTIONS(2062), - [anon_sym_byref] = ACTIONS(2062), - [anon_sym_oneway] = ACTIONS(2062), - [anon_sym__Nullable] = ACTIONS(2062), - [anon_sym__Nonnull] = ACTIONS(2062), - [anon_sym__Nullable_result] = ACTIONS(2062), - [anon_sym__Null_unspecified] = ACTIONS(2062), - [anon_sym___autoreleasing] = ACTIONS(2062), - [anon_sym___nullable] = ACTIONS(2062), - [anon_sym___nonnull] = ACTIONS(2062), - [anon_sym___strong] = ACTIONS(2062), - [anon_sym___weak] = ACTIONS(2062), - [anon_sym___bridge] = ACTIONS(2062), - [anon_sym___bridge_transfer] = ACTIONS(2062), - [anon_sym___bridge_retained] = ACTIONS(2062), - [anon_sym___unsafe_unretained] = ACTIONS(2062), - [anon_sym___block] = ACTIONS(2062), - [anon_sym___kindof] = ACTIONS(2062), - [anon_sym___unused] = ACTIONS(2062), - [anon_sym__Complex] = ACTIONS(2062), - [anon_sym___complex] = ACTIONS(2062), - [anon_sym_IBOutlet] = ACTIONS(2062), - [anon_sym_IBInspectable] = ACTIONS(2062), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2062), - [anon_sym_signed] = ACTIONS(2062), - [anon_sym_unsigned] = ACTIONS(2062), - [anon_sym_long] = ACTIONS(2062), - [anon_sym_short] = ACTIONS(2062), - [sym_primitive_type] = ACTIONS(2062), - [anon_sym_enum] = ACTIONS(2062), - [anon_sym_NS_ENUM] = ACTIONS(2062), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2062), - [anon_sym_NS_OPTIONS] = ACTIONS(2062), - [anon_sym_struct] = ACTIONS(2062), - [anon_sym_union] = ACTIONS(2062), - [anon_sym_if] = ACTIONS(2062), - [anon_sym_switch] = ACTIONS(2062), - [anon_sym_case] = ACTIONS(2062), - [anon_sym_default] = ACTIONS(2062), - [anon_sym_while] = ACTIONS(2062), - [anon_sym_do] = ACTIONS(2062), - [anon_sym_for] = ACTIONS(2062), - [anon_sym_return] = ACTIONS(2062), - [anon_sym_break] = ACTIONS(2062), - [anon_sym_continue] = ACTIONS(2062), - [anon_sym_goto] = ACTIONS(2062), - [anon_sym_DASH_DASH] = ACTIONS(2064), - [anon_sym_PLUS_PLUS] = ACTIONS(2064), - [anon_sym_sizeof] = ACTIONS(2062), - [sym_number_literal] = ACTIONS(2064), - [anon_sym_L_SQUOTE] = ACTIONS(2064), - [anon_sym_u_SQUOTE] = ACTIONS(2064), - [anon_sym_U_SQUOTE] = ACTIONS(2064), - [anon_sym_u8_SQUOTE] = ACTIONS(2064), - [anon_sym_SQUOTE] = ACTIONS(2064), - [anon_sym_L_DQUOTE] = ACTIONS(2064), - [anon_sym_u_DQUOTE] = ACTIONS(2064), - [anon_sym_U_DQUOTE] = ACTIONS(2064), - [anon_sym_u8_DQUOTE] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2064), - [sym_true] = ACTIONS(2062), - [sym_false] = ACTIONS(2062), - [sym_null] = ACTIONS(2062), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2064), - [anon_sym_ATimport] = ACTIONS(2064), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2062), - [anon_sym_ATcompatibility_alias] = ACTIONS(2064), - [anon_sym_ATprotocol] = ACTIONS(2064), - [anon_sym_ATclass] = ACTIONS(2064), - [anon_sym_ATinterface] = ACTIONS(2064), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2062), - [sym_method_attribute_specifier] = ACTIONS(2062), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2062), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2062), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2062), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2062), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2062), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2062), - [anon_sym_NS_AVAILABLE] = ACTIONS(2062), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2062), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2062), - [anon_sym_API_AVAILABLE] = ACTIONS(2062), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2062), - [anon_sym_API_DEPRECATED] = ACTIONS(2062), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2062), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2062), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2062), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2062), - [anon_sym___deprecated_msg] = ACTIONS(2062), - [anon_sym___deprecated_enum_msg] = ACTIONS(2062), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2062), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2062), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2062), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2062), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2062), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2062), - [anon_sym_ATimplementation] = ACTIONS(2064), - [anon_sym_typeof] = ACTIONS(2062), - [anon_sym___typeof] = ACTIONS(2062), - [anon_sym___typeof__] = ACTIONS(2062), - [sym_self] = ACTIONS(2062), - [sym_super] = ACTIONS(2062), - [sym_nil] = ACTIONS(2062), - [sym_id] = ACTIONS(2062), - [sym_instancetype] = ACTIONS(2062), - [sym_Class] = ACTIONS(2062), - [sym_SEL] = ACTIONS(2062), - [sym_IMP] = ACTIONS(2062), - [sym_BOOL] = ACTIONS(2062), - [sym_auto] = ACTIONS(2062), - [anon_sym_ATautoreleasepool] = ACTIONS(2064), - [anon_sym_ATsynchronized] = ACTIONS(2064), - [anon_sym_ATtry] = ACTIONS(2064), - [anon_sym_ATthrow] = ACTIONS(2064), - [anon_sym_ATselector] = ACTIONS(2064), - [anon_sym_ATencode] = ACTIONS(2064), - [anon_sym_AT] = ACTIONS(2062), - [sym_YES] = ACTIONS(2062), - [sym_NO] = ACTIONS(2062), - [anon_sym___builtin_available] = ACTIONS(2062), - [anon_sym_ATavailable] = ACTIONS(2064), - [anon_sym_va_arg] = ACTIONS(2062), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [799] = { - [sym_identifier] = ACTIONS(2066), - [aux_sym_preproc_include_token1] = ACTIONS(2068), - [aux_sym_preproc_def_token1] = ACTIONS(2068), - [aux_sym_preproc_if_token1] = ACTIONS(2066), - [aux_sym_preproc_if_token2] = ACTIONS(2066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2066), - [aux_sym_preproc_else_token1] = ACTIONS(2066), - [aux_sym_preproc_elif_token1] = ACTIONS(2066), - [anon_sym_LPAREN2] = ACTIONS(2068), - [anon_sym_BANG] = ACTIONS(2068), - [anon_sym_TILDE] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_PLUS] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2068), - [anon_sym_CARET] = ACTIONS(2068), - [anon_sym_AMP] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_typedef] = ACTIONS(2066), - [anon_sym_extern] = ACTIONS(2066), - [anon_sym___attribute] = ACTIONS(2066), - [anon_sym___attribute__] = ACTIONS(2066), - [anon_sym___declspec] = ACTIONS(2066), - [anon_sym___cdecl] = ACTIONS(2066), - [anon_sym___clrcall] = ACTIONS(2066), - [anon_sym___stdcall] = ACTIONS(2066), - [anon_sym___fastcall] = ACTIONS(2066), - [anon_sym___thiscall] = ACTIONS(2066), - [anon_sym___vectorcall] = ACTIONS(2066), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_LBRACK] = ACTIONS(2068), - [anon_sym_static] = ACTIONS(2066), - [anon_sym_auto] = ACTIONS(2066), - [anon_sym_register] = ACTIONS(2066), - [anon_sym_inline] = ACTIONS(2066), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2066), - [anon_sym_const] = ACTIONS(2066), - [anon_sym_volatile] = ACTIONS(2066), - [anon_sym_restrict] = ACTIONS(2066), - [anon_sym__Atomic] = ACTIONS(2066), - [anon_sym_in] = ACTIONS(2066), - [anon_sym_out] = ACTIONS(2066), - [anon_sym_inout] = ACTIONS(2066), - [anon_sym_bycopy] = ACTIONS(2066), - [anon_sym_byref] = ACTIONS(2066), - [anon_sym_oneway] = ACTIONS(2066), - [anon_sym__Nullable] = ACTIONS(2066), - [anon_sym__Nonnull] = ACTIONS(2066), - [anon_sym__Nullable_result] = ACTIONS(2066), - [anon_sym__Null_unspecified] = ACTIONS(2066), - [anon_sym___autoreleasing] = ACTIONS(2066), - [anon_sym___nullable] = ACTIONS(2066), - [anon_sym___nonnull] = ACTIONS(2066), - [anon_sym___strong] = ACTIONS(2066), - [anon_sym___weak] = ACTIONS(2066), - [anon_sym___bridge] = ACTIONS(2066), - [anon_sym___bridge_transfer] = ACTIONS(2066), - [anon_sym___bridge_retained] = ACTIONS(2066), - [anon_sym___unsafe_unretained] = ACTIONS(2066), - [anon_sym___block] = ACTIONS(2066), - [anon_sym___kindof] = ACTIONS(2066), - [anon_sym___unused] = ACTIONS(2066), - [anon_sym__Complex] = ACTIONS(2066), - [anon_sym___complex] = ACTIONS(2066), - [anon_sym_IBOutlet] = ACTIONS(2066), - [anon_sym_IBInspectable] = ACTIONS(2066), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2066), - [anon_sym_signed] = ACTIONS(2066), - [anon_sym_unsigned] = ACTIONS(2066), - [anon_sym_long] = ACTIONS(2066), - [anon_sym_short] = ACTIONS(2066), - [sym_primitive_type] = ACTIONS(2066), - [anon_sym_enum] = ACTIONS(2066), - [anon_sym_NS_ENUM] = ACTIONS(2066), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2066), - [anon_sym_NS_OPTIONS] = ACTIONS(2066), - [anon_sym_struct] = ACTIONS(2066), - [anon_sym_union] = ACTIONS(2066), - [anon_sym_if] = ACTIONS(2066), - [anon_sym_switch] = ACTIONS(2066), - [anon_sym_case] = ACTIONS(2066), - [anon_sym_default] = ACTIONS(2066), - [anon_sym_while] = ACTIONS(2066), - [anon_sym_do] = ACTIONS(2066), - [anon_sym_for] = ACTIONS(2066), - [anon_sym_return] = ACTIONS(2066), - [anon_sym_break] = ACTIONS(2066), - [anon_sym_continue] = ACTIONS(2066), - [anon_sym_goto] = ACTIONS(2066), - [anon_sym_DASH_DASH] = ACTIONS(2068), - [anon_sym_PLUS_PLUS] = ACTIONS(2068), - [anon_sym_sizeof] = ACTIONS(2066), - [sym_number_literal] = ACTIONS(2068), - [anon_sym_L_SQUOTE] = ACTIONS(2068), - [anon_sym_u_SQUOTE] = ACTIONS(2068), - [anon_sym_U_SQUOTE] = ACTIONS(2068), - [anon_sym_u8_SQUOTE] = ACTIONS(2068), - [anon_sym_SQUOTE] = ACTIONS(2068), - [anon_sym_L_DQUOTE] = ACTIONS(2068), - [anon_sym_u_DQUOTE] = ACTIONS(2068), - [anon_sym_U_DQUOTE] = ACTIONS(2068), - [anon_sym_u8_DQUOTE] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2068), - [sym_true] = ACTIONS(2066), - [sym_false] = ACTIONS(2066), - [sym_null] = ACTIONS(2066), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2068), - [anon_sym_ATimport] = ACTIONS(2068), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2066), - [anon_sym_ATcompatibility_alias] = ACTIONS(2068), - [anon_sym_ATprotocol] = ACTIONS(2068), - [anon_sym_ATclass] = ACTIONS(2068), - [anon_sym_ATinterface] = ACTIONS(2068), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2066), - [sym_method_attribute_specifier] = ACTIONS(2066), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2066), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2066), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2066), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2066), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2066), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2066), - [anon_sym_NS_AVAILABLE] = ACTIONS(2066), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2066), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2066), - [anon_sym_API_AVAILABLE] = ACTIONS(2066), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2066), - [anon_sym_API_DEPRECATED] = ACTIONS(2066), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2066), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2066), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2066), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2066), - [anon_sym___deprecated_msg] = ACTIONS(2066), - [anon_sym___deprecated_enum_msg] = ACTIONS(2066), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2066), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2066), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2066), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2066), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2066), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2066), - [anon_sym_ATimplementation] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(2066), - [anon_sym___typeof] = ACTIONS(2066), - [anon_sym___typeof__] = ACTIONS(2066), - [sym_self] = ACTIONS(2066), - [sym_super] = ACTIONS(2066), - [sym_nil] = ACTIONS(2066), - [sym_id] = ACTIONS(2066), - [sym_instancetype] = ACTIONS(2066), - [sym_Class] = ACTIONS(2066), - [sym_SEL] = ACTIONS(2066), - [sym_IMP] = ACTIONS(2066), - [sym_BOOL] = ACTIONS(2066), - [sym_auto] = ACTIONS(2066), - [anon_sym_ATautoreleasepool] = ACTIONS(2068), - [anon_sym_ATsynchronized] = ACTIONS(2068), - [anon_sym_ATtry] = ACTIONS(2068), - [anon_sym_ATthrow] = ACTIONS(2068), - [anon_sym_ATselector] = ACTIONS(2068), - [anon_sym_ATencode] = ACTIONS(2068), - [anon_sym_AT] = ACTIONS(2066), - [sym_YES] = ACTIONS(2066), - [sym_NO] = ACTIONS(2066), - [anon_sym___builtin_available] = ACTIONS(2066), - [anon_sym_ATavailable] = ACTIONS(2068), - [anon_sym_va_arg] = ACTIONS(2066), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [800] = { - [sym_identifier] = ACTIONS(2070), - [aux_sym_preproc_include_token1] = ACTIONS(2072), - [aux_sym_preproc_def_token1] = ACTIONS(2072), - [aux_sym_preproc_if_token1] = ACTIONS(2070), - [aux_sym_preproc_if_token2] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2070), - [aux_sym_preproc_else_token1] = ACTIONS(2070), - [aux_sym_preproc_elif_token1] = ACTIONS(2070), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym___attribute] = ACTIONS(2070), - [anon_sym___attribute__] = ACTIONS(2070), - [anon_sym___declspec] = ACTIONS(2070), - [anon_sym___cdecl] = ACTIONS(2070), - [anon_sym___clrcall] = ACTIONS(2070), - [anon_sym___stdcall] = ACTIONS(2070), - [anon_sym___fastcall] = ACTIONS(2070), - [anon_sym___thiscall] = ACTIONS(2070), - [anon_sym___vectorcall] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_auto] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_volatile] = ACTIONS(2070), - [anon_sym_restrict] = ACTIONS(2070), - [anon_sym__Atomic] = ACTIONS(2070), - [anon_sym_in] = ACTIONS(2070), - [anon_sym_out] = ACTIONS(2070), - [anon_sym_inout] = ACTIONS(2070), - [anon_sym_bycopy] = ACTIONS(2070), - [anon_sym_byref] = ACTIONS(2070), - [anon_sym_oneway] = ACTIONS(2070), - [anon_sym__Nullable] = ACTIONS(2070), - [anon_sym__Nonnull] = ACTIONS(2070), - [anon_sym__Nullable_result] = ACTIONS(2070), - [anon_sym__Null_unspecified] = ACTIONS(2070), - [anon_sym___autoreleasing] = ACTIONS(2070), - [anon_sym___nullable] = ACTIONS(2070), - [anon_sym___nonnull] = ACTIONS(2070), - [anon_sym___strong] = ACTIONS(2070), - [anon_sym___weak] = ACTIONS(2070), - [anon_sym___bridge] = ACTIONS(2070), - [anon_sym___bridge_transfer] = ACTIONS(2070), - [anon_sym___bridge_retained] = ACTIONS(2070), - [anon_sym___unsafe_unretained] = ACTIONS(2070), - [anon_sym___block] = ACTIONS(2070), - [anon_sym___kindof] = ACTIONS(2070), - [anon_sym___unused] = ACTIONS(2070), - [anon_sym__Complex] = ACTIONS(2070), - [anon_sym___complex] = ACTIONS(2070), - [anon_sym_IBOutlet] = ACTIONS(2070), - [anon_sym_IBInspectable] = ACTIONS(2070), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2070), - [anon_sym_signed] = ACTIONS(2070), - [anon_sym_unsigned] = ACTIONS(2070), - [anon_sym_long] = ACTIONS(2070), - [anon_sym_short] = ACTIONS(2070), - [sym_primitive_type] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_NS_ENUM] = ACTIONS(2070), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2070), - [anon_sym_NS_OPTIONS] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_case] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_goto] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_sizeof] = ACTIONS(2070), - [sym_number_literal] = ACTIONS(2072), - [anon_sym_L_SQUOTE] = ACTIONS(2072), - [anon_sym_u_SQUOTE] = ACTIONS(2072), - [anon_sym_U_SQUOTE] = ACTIONS(2072), - [anon_sym_u8_SQUOTE] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_L_DQUOTE] = ACTIONS(2072), - [anon_sym_u_DQUOTE] = ACTIONS(2072), - [anon_sym_U_DQUOTE] = ACTIONS(2072), - [anon_sym_u8_DQUOTE] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym_true] = ACTIONS(2070), - [sym_false] = ACTIONS(2070), - [sym_null] = ACTIONS(2070), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2072), - [anon_sym_ATimport] = ACTIONS(2072), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2070), - [anon_sym_ATcompatibility_alias] = ACTIONS(2072), - [anon_sym_ATprotocol] = ACTIONS(2072), - [anon_sym_ATclass] = ACTIONS(2072), - [anon_sym_ATinterface] = ACTIONS(2072), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2070), - [sym_method_attribute_specifier] = ACTIONS(2070), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2070), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE] = ACTIONS(2070), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_API_AVAILABLE] = ACTIONS(2070), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_API_DEPRECATED] = ACTIONS(2070), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2070), - [anon_sym___deprecated_msg] = ACTIONS(2070), - [anon_sym___deprecated_enum_msg] = ACTIONS(2070), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2070), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2070), - [anon_sym_ATimplementation] = ACTIONS(2072), - [anon_sym_typeof] = ACTIONS(2070), - [anon_sym___typeof] = ACTIONS(2070), - [anon_sym___typeof__] = ACTIONS(2070), - [sym_self] = ACTIONS(2070), - [sym_super] = ACTIONS(2070), - [sym_nil] = ACTIONS(2070), - [sym_id] = ACTIONS(2070), - [sym_instancetype] = ACTIONS(2070), - [sym_Class] = ACTIONS(2070), - [sym_SEL] = ACTIONS(2070), - [sym_IMP] = ACTIONS(2070), - [sym_BOOL] = ACTIONS(2070), - [sym_auto] = ACTIONS(2070), - [anon_sym_ATautoreleasepool] = ACTIONS(2072), - [anon_sym_ATsynchronized] = ACTIONS(2072), - [anon_sym_ATtry] = ACTIONS(2072), - [anon_sym_ATthrow] = ACTIONS(2072), - [anon_sym_ATselector] = ACTIONS(2072), - [anon_sym_ATencode] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2070), - [sym_YES] = ACTIONS(2070), - [sym_NO] = ACTIONS(2070), - [anon_sym___builtin_available] = ACTIONS(2070), - [anon_sym_ATavailable] = ACTIONS(2072), - [anon_sym_va_arg] = ACTIONS(2070), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [801] = { - [sym_identifier] = ACTIONS(2070), - [aux_sym_preproc_include_token1] = ACTIONS(2072), - [aux_sym_preproc_def_token1] = ACTIONS(2072), - [aux_sym_preproc_if_token1] = ACTIONS(2070), - [aux_sym_preproc_if_token2] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2070), - [aux_sym_preproc_else_token1] = ACTIONS(2070), - [aux_sym_preproc_elif_token1] = ACTIONS(2070), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym___attribute] = ACTIONS(2070), - [anon_sym___attribute__] = ACTIONS(2070), - [anon_sym___declspec] = ACTIONS(2070), - [anon_sym___cdecl] = ACTIONS(2070), - [anon_sym___clrcall] = ACTIONS(2070), - [anon_sym___stdcall] = ACTIONS(2070), - [anon_sym___fastcall] = ACTIONS(2070), - [anon_sym___thiscall] = ACTIONS(2070), - [anon_sym___vectorcall] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_auto] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_volatile] = ACTIONS(2070), - [anon_sym_restrict] = ACTIONS(2070), - [anon_sym__Atomic] = ACTIONS(2070), - [anon_sym_in] = ACTIONS(2070), - [anon_sym_out] = ACTIONS(2070), - [anon_sym_inout] = ACTIONS(2070), - [anon_sym_bycopy] = ACTIONS(2070), - [anon_sym_byref] = ACTIONS(2070), - [anon_sym_oneway] = ACTIONS(2070), - [anon_sym__Nullable] = ACTIONS(2070), - [anon_sym__Nonnull] = ACTIONS(2070), - [anon_sym__Nullable_result] = ACTIONS(2070), - [anon_sym__Null_unspecified] = ACTIONS(2070), - [anon_sym___autoreleasing] = ACTIONS(2070), - [anon_sym___nullable] = ACTIONS(2070), - [anon_sym___nonnull] = ACTIONS(2070), - [anon_sym___strong] = ACTIONS(2070), - [anon_sym___weak] = ACTIONS(2070), - [anon_sym___bridge] = ACTIONS(2070), - [anon_sym___bridge_transfer] = ACTIONS(2070), - [anon_sym___bridge_retained] = ACTIONS(2070), - [anon_sym___unsafe_unretained] = ACTIONS(2070), - [anon_sym___block] = ACTIONS(2070), - [anon_sym___kindof] = ACTIONS(2070), - [anon_sym___unused] = ACTIONS(2070), - [anon_sym__Complex] = ACTIONS(2070), - [anon_sym___complex] = ACTIONS(2070), - [anon_sym_IBOutlet] = ACTIONS(2070), - [anon_sym_IBInspectable] = ACTIONS(2070), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2070), - [anon_sym_signed] = ACTIONS(2070), - [anon_sym_unsigned] = ACTIONS(2070), - [anon_sym_long] = ACTIONS(2070), - [anon_sym_short] = ACTIONS(2070), - [sym_primitive_type] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_NS_ENUM] = ACTIONS(2070), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2070), - [anon_sym_NS_OPTIONS] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_case] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_goto] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_sizeof] = ACTIONS(2070), - [sym_number_literal] = ACTIONS(2072), - [anon_sym_L_SQUOTE] = ACTIONS(2072), - [anon_sym_u_SQUOTE] = ACTIONS(2072), - [anon_sym_U_SQUOTE] = ACTIONS(2072), - [anon_sym_u8_SQUOTE] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_L_DQUOTE] = ACTIONS(2072), - [anon_sym_u_DQUOTE] = ACTIONS(2072), - [anon_sym_U_DQUOTE] = ACTIONS(2072), - [anon_sym_u8_DQUOTE] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym_true] = ACTIONS(2070), - [sym_false] = ACTIONS(2070), - [sym_null] = ACTIONS(2070), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2072), - [anon_sym_ATimport] = ACTIONS(2072), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2070), - [anon_sym_ATcompatibility_alias] = ACTIONS(2072), - [anon_sym_ATprotocol] = ACTIONS(2072), - [anon_sym_ATclass] = ACTIONS(2072), - [anon_sym_ATinterface] = ACTIONS(2072), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2070), - [sym_method_attribute_specifier] = ACTIONS(2070), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2070), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE] = ACTIONS(2070), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_API_AVAILABLE] = ACTIONS(2070), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_API_DEPRECATED] = ACTIONS(2070), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2070), - [anon_sym___deprecated_msg] = ACTIONS(2070), - [anon_sym___deprecated_enum_msg] = ACTIONS(2070), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2070), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2070), - [anon_sym_ATimplementation] = ACTIONS(2072), - [anon_sym_typeof] = ACTIONS(2070), - [anon_sym___typeof] = ACTIONS(2070), - [anon_sym___typeof__] = ACTIONS(2070), - [sym_self] = ACTIONS(2070), - [sym_super] = ACTIONS(2070), - [sym_nil] = ACTIONS(2070), - [sym_id] = ACTIONS(2070), - [sym_instancetype] = ACTIONS(2070), - [sym_Class] = ACTIONS(2070), - [sym_SEL] = ACTIONS(2070), - [sym_IMP] = ACTIONS(2070), - [sym_BOOL] = ACTIONS(2070), - [sym_auto] = ACTIONS(2070), - [anon_sym_ATautoreleasepool] = ACTIONS(2072), - [anon_sym_ATsynchronized] = ACTIONS(2072), - [anon_sym_ATtry] = ACTIONS(2072), - [anon_sym_ATthrow] = ACTIONS(2072), - [anon_sym_ATselector] = ACTIONS(2072), - [anon_sym_ATencode] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2070), - [sym_YES] = ACTIONS(2070), - [sym_NO] = ACTIONS(2070), - [anon_sym___builtin_available] = ACTIONS(2070), - [anon_sym_ATavailable] = ACTIONS(2072), - [anon_sym_va_arg] = ACTIONS(2070), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [802] = { - [sym_identifier] = ACTIONS(2070), - [aux_sym_preproc_include_token1] = ACTIONS(2072), - [aux_sym_preproc_def_token1] = ACTIONS(2072), - [aux_sym_preproc_if_token1] = ACTIONS(2070), - [aux_sym_preproc_if_token2] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2070), - [aux_sym_preproc_else_token1] = ACTIONS(2070), - [aux_sym_preproc_elif_token1] = ACTIONS(2070), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym___attribute] = ACTIONS(2070), - [anon_sym___attribute__] = ACTIONS(2070), - [anon_sym___declspec] = ACTIONS(2070), - [anon_sym___cdecl] = ACTIONS(2070), - [anon_sym___clrcall] = ACTIONS(2070), - [anon_sym___stdcall] = ACTIONS(2070), - [anon_sym___fastcall] = ACTIONS(2070), - [anon_sym___thiscall] = ACTIONS(2070), - [anon_sym___vectorcall] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_auto] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_volatile] = ACTIONS(2070), - [anon_sym_restrict] = ACTIONS(2070), - [anon_sym__Atomic] = ACTIONS(2070), - [anon_sym_in] = ACTIONS(2070), - [anon_sym_out] = ACTIONS(2070), - [anon_sym_inout] = ACTIONS(2070), - [anon_sym_bycopy] = ACTIONS(2070), - [anon_sym_byref] = ACTIONS(2070), - [anon_sym_oneway] = ACTIONS(2070), - [anon_sym__Nullable] = ACTIONS(2070), - [anon_sym__Nonnull] = ACTIONS(2070), - [anon_sym__Nullable_result] = ACTIONS(2070), - [anon_sym__Null_unspecified] = ACTIONS(2070), - [anon_sym___autoreleasing] = ACTIONS(2070), - [anon_sym___nullable] = ACTIONS(2070), - [anon_sym___nonnull] = ACTIONS(2070), - [anon_sym___strong] = ACTIONS(2070), - [anon_sym___weak] = ACTIONS(2070), - [anon_sym___bridge] = ACTIONS(2070), - [anon_sym___bridge_transfer] = ACTIONS(2070), - [anon_sym___bridge_retained] = ACTIONS(2070), - [anon_sym___unsafe_unretained] = ACTIONS(2070), - [anon_sym___block] = ACTIONS(2070), - [anon_sym___kindof] = ACTIONS(2070), - [anon_sym___unused] = ACTIONS(2070), - [anon_sym__Complex] = ACTIONS(2070), - [anon_sym___complex] = ACTIONS(2070), - [anon_sym_IBOutlet] = ACTIONS(2070), - [anon_sym_IBInspectable] = ACTIONS(2070), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2070), - [anon_sym_signed] = ACTIONS(2070), - [anon_sym_unsigned] = ACTIONS(2070), - [anon_sym_long] = ACTIONS(2070), - [anon_sym_short] = ACTIONS(2070), - [sym_primitive_type] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_NS_ENUM] = ACTIONS(2070), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2070), - [anon_sym_NS_OPTIONS] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_case] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_goto] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_sizeof] = ACTIONS(2070), - [sym_number_literal] = ACTIONS(2072), - [anon_sym_L_SQUOTE] = ACTIONS(2072), - [anon_sym_u_SQUOTE] = ACTIONS(2072), - [anon_sym_U_SQUOTE] = ACTIONS(2072), - [anon_sym_u8_SQUOTE] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_L_DQUOTE] = ACTIONS(2072), - [anon_sym_u_DQUOTE] = ACTIONS(2072), - [anon_sym_U_DQUOTE] = ACTIONS(2072), - [anon_sym_u8_DQUOTE] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym_true] = ACTIONS(2070), - [sym_false] = ACTIONS(2070), - [sym_null] = ACTIONS(2070), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2072), - [anon_sym_ATimport] = ACTIONS(2072), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2070), - [anon_sym_ATcompatibility_alias] = ACTIONS(2072), - [anon_sym_ATprotocol] = ACTIONS(2072), - [anon_sym_ATclass] = ACTIONS(2072), - [anon_sym_ATinterface] = ACTIONS(2072), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2070), - [sym_method_attribute_specifier] = ACTIONS(2070), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2070), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE] = ACTIONS(2070), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_API_AVAILABLE] = ACTIONS(2070), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_API_DEPRECATED] = ACTIONS(2070), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2070), - [anon_sym___deprecated_msg] = ACTIONS(2070), - [anon_sym___deprecated_enum_msg] = ACTIONS(2070), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2070), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2070), - [anon_sym_ATimplementation] = ACTIONS(2072), - [anon_sym_typeof] = ACTIONS(2070), - [anon_sym___typeof] = ACTIONS(2070), - [anon_sym___typeof__] = ACTIONS(2070), - [sym_self] = ACTIONS(2070), - [sym_super] = ACTIONS(2070), - [sym_nil] = ACTIONS(2070), - [sym_id] = ACTIONS(2070), - [sym_instancetype] = ACTIONS(2070), - [sym_Class] = ACTIONS(2070), - [sym_SEL] = ACTIONS(2070), - [sym_IMP] = ACTIONS(2070), - [sym_BOOL] = ACTIONS(2070), - [sym_auto] = ACTIONS(2070), - [anon_sym_ATautoreleasepool] = ACTIONS(2072), - [anon_sym_ATsynchronized] = ACTIONS(2072), - [anon_sym_ATtry] = ACTIONS(2072), - [anon_sym_ATthrow] = ACTIONS(2072), - [anon_sym_ATselector] = ACTIONS(2072), - [anon_sym_ATencode] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2070), - [sym_YES] = ACTIONS(2070), - [sym_NO] = ACTIONS(2070), - [anon_sym___builtin_available] = ACTIONS(2070), - [anon_sym_ATavailable] = ACTIONS(2072), - [anon_sym_va_arg] = ACTIONS(2070), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [803] = { - [sym_identifier] = ACTIONS(2070), - [aux_sym_preproc_include_token1] = ACTIONS(2072), - [aux_sym_preproc_def_token1] = ACTIONS(2072), - [aux_sym_preproc_if_token1] = ACTIONS(2070), - [aux_sym_preproc_if_token2] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2070), - [aux_sym_preproc_else_token1] = ACTIONS(2070), - [aux_sym_preproc_elif_token1] = ACTIONS(2070), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym___attribute] = ACTIONS(2070), - [anon_sym___attribute__] = ACTIONS(2070), - [anon_sym___declspec] = ACTIONS(2070), - [anon_sym___cdecl] = ACTIONS(2070), - [anon_sym___clrcall] = ACTIONS(2070), - [anon_sym___stdcall] = ACTIONS(2070), - [anon_sym___fastcall] = ACTIONS(2070), - [anon_sym___thiscall] = ACTIONS(2070), - [anon_sym___vectorcall] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_auto] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_volatile] = ACTIONS(2070), - [anon_sym_restrict] = ACTIONS(2070), - [anon_sym__Atomic] = ACTIONS(2070), - [anon_sym_in] = ACTIONS(2070), - [anon_sym_out] = ACTIONS(2070), - [anon_sym_inout] = ACTIONS(2070), - [anon_sym_bycopy] = ACTIONS(2070), - [anon_sym_byref] = ACTIONS(2070), - [anon_sym_oneway] = ACTIONS(2070), - [anon_sym__Nullable] = ACTIONS(2070), - [anon_sym__Nonnull] = ACTIONS(2070), - [anon_sym__Nullable_result] = ACTIONS(2070), - [anon_sym__Null_unspecified] = ACTIONS(2070), - [anon_sym___autoreleasing] = ACTIONS(2070), - [anon_sym___nullable] = ACTIONS(2070), - [anon_sym___nonnull] = ACTIONS(2070), - [anon_sym___strong] = ACTIONS(2070), - [anon_sym___weak] = ACTIONS(2070), - [anon_sym___bridge] = ACTIONS(2070), - [anon_sym___bridge_transfer] = ACTIONS(2070), - [anon_sym___bridge_retained] = ACTIONS(2070), - [anon_sym___unsafe_unretained] = ACTIONS(2070), - [anon_sym___block] = ACTIONS(2070), - [anon_sym___kindof] = ACTIONS(2070), - [anon_sym___unused] = ACTIONS(2070), - [anon_sym__Complex] = ACTIONS(2070), - [anon_sym___complex] = ACTIONS(2070), - [anon_sym_IBOutlet] = ACTIONS(2070), - [anon_sym_IBInspectable] = ACTIONS(2070), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2070), - [anon_sym_signed] = ACTIONS(2070), - [anon_sym_unsigned] = ACTIONS(2070), - [anon_sym_long] = ACTIONS(2070), - [anon_sym_short] = ACTIONS(2070), - [sym_primitive_type] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_NS_ENUM] = ACTIONS(2070), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2070), - [anon_sym_NS_OPTIONS] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_case] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_goto] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_sizeof] = ACTIONS(2070), - [sym_number_literal] = ACTIONS(2072), - [anon_sym_L_SQUOTE] = ACTIONS(2072), - [anon_sym_u_SQUOTE] = ACTIONS(2072), - [anon_sym_U_SQUOTE] = ACTIONS(2072), - [anon_sym_u8_SQUOTE] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_L_DQUOTE] = ACTIONS(2072), - [anon_sym_u_DQUOTE] = ACTIONS(2072), - [anon_sym_U_DQUOTE] = ACTIONS(2072), - [anon_sym_u8_DQUOTE] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym_true] = ACTIONS(2070), - [sym_false] = ACTIONS(2070), - [sym_null] = ACTIONS(2070), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2072), - [anon_sym_ATimport] = ACTIONS(2072), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2070), - [anon_sym_ATcompatibility_alias] = ACTIONS(2072), - [anon_sym_ATprotocol] = ACTIONS(2072), - [anon_sym_ATclass] = ACTIONS(2072), - [anon_sym_ATinterface] = ACTIONS(2072), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2070), - [sym_method_attribute_specifier] = ACTIONS(2070), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2070), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE] = ACTIONS(2070), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_API_AVAILABLE] = ACTIONS(2070), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_API_DEPRECATED] = ACTIONS(2070), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2070), - [anon_sym___deprecated_msg] = ACTIONS(2070), - [anon_sym___deprecated_enum_msg] = ACTIONS(2070), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2070), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2070), - [anon_sym_ATimplementation] = ACTIONS(2072), - [anon_sym_typeof] = ACTIONS(2070), - [anon_sym___typeof] = ACTIONS(2070), - [anon_sym___typeof__] = ACTIONS(2070), - [sym_self] = ACTIONS(2070), - [sym_super] = ACTIONS(2070), - [sym_nil] = ACTIONS(2070), - [sym_id] = ACTIONS(2070), - [sym_instancetype] = ACTIONS(2070), - [sym_Class] = ACTIONS(2070), - [sym_SEL] = ACTIONS(2070), - [sym_IMP] = ACTIONS(2070), - [sym_BOOL] = ACTIONS(2070), - [sym_auto] = ACTIONS(2070), - [anon_sym_ATautoreleasepool] = ACTIONS(2072), - [anon_sym_ATsynchronized] = ACTIONS(2072), - [anon_sym_ATtry] = ACTIONS(2072), - [anon_sym_ATthrow] = ACTIONS(2072), - [anon_sym_ATselector] = ACTIONS(2072), - [anon_sym_ATencode] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2070), - [sym_YES] = ACTIONS(2070), - [sym_NO] = ACTIONS(2070), - [anon_sym___builtin_available] = ACTIONS(2070), - [anon_sym_ATavailable] = ACTIONS(2072), - [anon_sym_va_arg] = ACTIONS(2070), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [804] = { - [sym_identifier] = ACTIONS(2074), - [aux_sym_preproc_include_token1] = ACTIONS(2076), - [aux_sym_preproc_def_token1] = ACTIONS(2076), - [aux_sym_preproc_if_token1] = ACTIONS(2074), - [aux_sym_preproc_if_token2] = ACTIONS(2074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), - [aux_sym_preproc_else_token1] = ACTIONS(2074), - [aux_sym_preproc_elif_token1] = ACTIONS(2074), - [anon_sym_LPAREN2] = ACTIONS(2076), - [anon_sym_BANG] = ACTIONS(2076), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2074), - [anon_sym_PLUS] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_typedef] = ACTIONS(2074), - [anon_sym_extern] = ACTIONS(2074), - [anon_sym___attribute] = ACTIONS(2074), - [anon_sym___attribute__] = ACTIONS(2074), - [anon_sym___declspec] = ACTIONS(2074), - [anon_sym___cdecl] = ACTIONS(2074), - [anon_sym___clrcall] = ACTIONS(2074), - [anon_sym___stdcall] = ACTIONS(2074), - [anon_sym___fastcall] = ACTIONS(2074), - [anon_sym___thiscall] = ACTIONS(2074), - [anon_sym___vectorcall] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_static] = ACTIONS(2074), - [anon_sym_auto] = ACTIONS(2074), - [anon_sym_register] = ACTIONS(2074), - [anon_sym_inline] = ACTIONS(2074), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2074), - [anon_sym_const] = ACTIONS(2074), - [anon_sym_volatile] = ACTIONS(2074), - [anon_sym_restrict] = ACTIONS(2074), - [anon_sym__Atomic] = ACTIONS(2074), - [anon_sym_in] = ACTIONS(2074), - [anon_sym_out] = ACTIONS(2074), - [anon_sym_inout] = ACTIONS(2074), - [anon_sym_bycopy] = ACTIONS(2074), - [anon_sym_byref] = ACTIONS(2074), - [anon_sym_oneway] = ACTIONS(2074), - [anon_sym__Nullable] = ACTIONS(2074), - [anon_sym__Nonnull] = ACTIONS(2074), - [anon_sym__Nullable_result] = ACTIONS(2074), - [anon_sym__Null_unspecified] = ACTIONS(2074), - [anon_sym___autoreleasing] = ACTIONS(2074), - [anon_sym___nullable] = ACTIONS(2074), - [anon_sym___nonnull] = ACTIONS(2074), - [anon_sym___strong] = ACTIONS(2074), - [anon_sym___weak] = ACTIONS(2074), - [anon_sym___bridge] = ACTIONS(2074), - [anon_sym___bridge_transfer] = ACTIONS(2074), - [anon_sym___bridge_retained] = ACTIONS(2074), - [anon_sym___unsafe_unretained] = ACTIONS(2074), - [anon_sym___block] = ACTIONS(2074), - [anon_sym___kindof] = ACTIONS(2074), - [anon_sym___unused] = ACTIONS(2074), - [anon_sym__Complex] = ACTIONS(2074), - [anon_sym___complex] = ACTIONS(2074), - [anon_sym_IBOutlet] = ACTIONS(2074), - [anon_sym_IBInspectable] = ACTIONS(2074), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2074), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [sym_primitive_type] = ACTIONS(2074), - [anon_sym_enum] = ACTIONS(2074), - [anon_sym_NS_ENUM] = ACTIONS(2074), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2074), - [anon_sym_NS_OPTIONS] = ACTIONS(2074), - [anon_sym_struct] = ACTIONS(2074), - [anon_sym_union] = ACTIONS(2074), - [anon_sym_if] = ACTIONS(2074), - [anon_sym_switch] = ACTIONS(2074), - [anon_sym_case] = ACTIONS(2074), - [anon_sym_default] = ACTIONS(2074), - [anon_sym_while] = ACTIONS(2074), - [anon_sym_do] = ACTIONS(2074), - [anon_sym_for] = ACTIONS(2074), - [anon_sym_return] = ACTIONS(2074), - [anon_sym_break] = ACTIONS(2074), - [anon_sym_continue] = ACTIONS(2074), - [anon_sym_goto] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_sizeof] = ACTIONS(2074), - [sym_number_literal] = ACTIONS(2076), - [anon_sym_L_SQUOTE] = ACTIONS(2076), - [anon_sym_u_SQUOTE] = ACTIONS(2076), - [anon_sym_U_SQUOTE] = ACTIONS(2076), - [anon_sym_u8_SQUOTE] = ACTIONS(2076), - [anon_sym_SQUOTE] = ACTIONS(2076), - [anon_sym_L_DQUOTE] = ACTIONS(2076), - [anon_sym_u_DQUOTE] = ACTIONS(2076), - [anon_sym_U_DQUOTE] = ACTIONS(2076), - [anon_sym_u8_DQUOTE] = ACTIONS(2076), - [anon_sym_DQUOTE] = ACTIONS(2076), - [sym_true] = ACTIONS(2074), - [sym_false] = ACTIONS(2074), - [sym_null] = ACTIONS(2074), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2076), - [anon_sym_ATimport] = ACTIONS(2076), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2074), - [anon_sym_ATcompatibility_alias] = ACTIONS(2076), - [anon_sym_ATprotocol] = ACTIONS(2076), - [anon_sym_ATclass] = ACTIONS(2076), - [anon_sym_ATinterface] = ACTIONS(2076), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2074), - [sym_method_attribute_specifier] = ACTIONS(2074), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2074), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2074), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2074), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2074), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2074), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2074), - [anon_sym_NS_AVAILABLE] = ACTIONS(2074), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2074), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2074), - [anon_sym_API_AVAILABLE] = ACTIONS(2074), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2074), - [anon_sym_API_DEPRECATED] = ACTIONS(2074), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2074), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2074), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2074), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2074), - [anon_sym___deprecated_msg] = ACTIONS(2074), - [anon_sym___deprecated_enum_msg] = ACTIONS(2074), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2074), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2074), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2074), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2074), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2074), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2074), - [anon_sym_ATimplementation] = ACTIONS(2076), - [anon_sym_typeof] = ACTIONS(2074), - [anon_sym___typeof] = ACTIONS(2074), - [anon_sym___typeof__] = ACTIONS(2074), - [sym_self] = ACTIONS(2074), - [sym_super] = ACTIONS(2074), - [sym_nil] = ACTIONS(2074), - [sym_id] = ACTIONS(2074), - [sym_instancetype] = ACTIONS(2074), - [sym_Class] = ACTIONS(2074), - [sym_SEL] = ACTIONS(2074), - [sym_IMP] = ACTIONS(2074), - [sym_BOOL] = ACTIONS(2074), - [sym_auto] = ACTIONS(2074), - [anon_sym_ATautoreleasepool] = ACTIONS(2076), - [anon_sym_ATsynchronized] = ACTIONS(2076), - [anon_sym_ATtry] = ACTIONS(2076), - [anon_sym_ATthrow] = ACTIONS(2076), - [anon_sym_ATselector] = ACTIONS(2076), - [anon_sym_ATencode] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2074), - [sym_YES] = ACTIONS(2074), - [sym_NO] = ACTIONS(2074), - [anon_sym___builtin_available] = ACTIONS(2074), - [anon_sym_ATavailable] = ACTIONS(2076), - [anon_sym_va_arg] = ACTIONS(2074), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [805] = { - [sym_identifier] = ACTIONS(2070), - [aux_sym_preproc_include_token1] = ACTIONS(2072), - [aux_sym_preproc_def_token1] = ACTIONS(2072), - [aux_sym_preproc_if_token1] = ACTIONS(2070), - [aux_sym_preproc_if_token2] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2070), - [aux_sym_preproc_else_token1] = ACTIONS(2070), - [aux_sym_preproc_elif_token1] = ACTIONS(2070), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym___attribute] = ACTIONS(2070), - [anon_sym___attribute__] = ACTIONS(2070), - [anon_sym___declspec] = ACTIONS(2070), - [anon_sym___cdecl] = ACTIONS(2070), - [anon_sym___clrcall] = ACTIONS(2070), - [anon_sym___stdcall] = ACTIONS(2070), - [anon_sym___fastcall] = ACTIONS(2070), - [anon_sym___thiscall] = ACTIONS(2070), - [anon_sym___vectorcall] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_auto] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_volatile] = ACTIONS(2070), - [anon_sym_restrict] = ACTIONS(2070), - [anon_sym__Atomic] = ACTIONS(2070), - [anon_sym_in] = ACTIONS(2070), - [anon_sym_out] = ACTIONS(2070), - [anon_sym_inout] = ACTIONS(2070), - [anon_sym_bycopy] = ACTIONS(2070), - [anon_sym_byref] = ACTIONS(2070), - [anon_sym_oneway] = ACTIONS(2070), - [anon_sym__Nullable] = ACTIONS(2070), - [anon_sym__Nonnull] = ACTIONS(2070), - [anon_sym__Nullable_result] = ACTIONS(2070), - [anon_sym__Null_unspecified] = ACTIONS(2070), - [anon_sym___autoreleasing] = ACTIONS(2070), - [anon_sym___nullable] = ACTIONS(2070), - [anon_sym___nonnull] = ACTIONS(2070), - [anon_sym___strong] = ACTIONS(2070), - [anon_sym___weak] = ACTIONS(2070), - [anon_sym___bridge] = ACTIONS(2070), - [anon_sym___bridge_transfer] = ACTIONS(2070), - [anon_sym___bridge_retained] = ACTIONS(2070), - [anon_sym___unsafe_unretained] = ACTIONS(2070), - [anon_sym___block] = ACTIONS(2070), - [anon_sym___kindof] = ACTIONS(2070), - [anon_sym___unused] = ACTIONS(2070), - [anon_sym__Complex] = ACTIONS(2070), - [anon_sym___complex] = ACTIONS(2070), - [anon_sym_IBOutlet] = ACTIONS(2070), - [anon_sym_IBInspectable] = ACTIONS(2070), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2070), - [anon_sym_signed] = ACTIONS(2070), - [anon_sym_unsigned] = ACTIONS(2070), - [anon_sym_long] = ACTIONS(2070), - [anon_sym_short] = ACTIONS(2070), - [sym_primitive_type] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_NS_ENUM] = ACTIONS(2070), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2070), - [anon_sym_NS_OPTIONS] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_case] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_goto] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_sizeof] = ACTIONS(2070), - [sym_number_literal] = ACTIONS(2072), - [anon_sym_L_SQUOTE] = ACTIONS(2072), - [anon_sym_u_SQUOTE] = ACTIONS(2072), - [anon_sym_U_SQUOTE] = ACTIONS(2072), - [anon_sym_u8_SQUOTE] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_L_DQUOTE] = ACTIONS(2072), - [anon_sym_u_DQUOTE] = ACTIONS(2072), - [anon_sym_U_DQUOTE] = ACTIONS(2072), - [anon_sym_u8_DQUOTE] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym_true] = ACTIONS(2070), - [sym_false] = ACTIONS(2070), - [sym_null] = ACTIONS(2070), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2072), - [anon_sym_ATimport] = ACTIONS(2072), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2070), - [anon_sym_ATcompatibility_alias] = ACTIONS(2072), - [anon_sym_ATprotocol] = ACTIONS(2072), - [anon_sym_ATclass] = ACTIONS(2072), - [anon_sym_ATinterface] = ACTIONS(2072), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2070), - [sym_method_attribute_specifier] = ACTIONS(2070), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2070), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE] = ACTIONS(2070), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_API_AVAILABLE] = ACTIONS(2070), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_API_DEPRECATED] = ACTIONS(2070), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2070), - [anon_sym___deprecated_msg] = ACTIONS(2070), - [anon_sym___deprecated_enum_msg] = ACTIONS(2070), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2070), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2070), - [anon_sym_ATimplementation] = ACTIONS(2072), - [anon_sym_typeof] = ACTIONS(2070), - [anon_sym___typeof] = ACTIONS(2070), - [anon_sym___typeof__] = ACTIONS(2070), - [sym_self] = ACTIONS(2070), - [sym_super] = ACTIONS(2070), - [sym_nil] = ACTIONS(2070), - [sym_id] = ACTIONS(2070), - [sym_instancetype] = ACTIONS(2070), - [sym_Class] = ACTIONS(2070), - [sym_SEL] = ACTIONS(2070), - [sym_IMP] = ACTIONS(2070), - [sym_BOOL] = ACTIONS(2070), - [sym_auto] = ACTIONS(2070), - [anon_sym_ATautoreleasepool] = ACTIONS(2072), - [anon_sym_ATsynchronized] = ACTIONS(2072), - [anon_sym_ATtry] = ACTIONS(2072), - [anon_sym_ATthrow] = ACTIONS(2072), - [anon_sym_ATselector] = ACTIONS(2072), - [anon_sym_ATencode] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2070), - [sym_YES] = ACTIONS(2070), - [sym_NO] = ACTIONS(2070), - [anon_sym___builtin_available] = ACTIONS(2070), - [anon_sym_ATavailable] = ACTIONS(2072), - [anon_sym_va_arg] = ACTIONS(2070), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [806] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [aux_sym_preproc_else_token1] = ACTIONS(2078), - [aux_sym_preproc_elif_token1] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [807] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [aux_sym_preproc_else_token1] = ACTIONS(2078), - [aux_sym_preproc_elif_token1] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [808] = { - [sym_identifier] = ACTIONS(2082), - [aux_sym_preproc_include_token1] = ACTIONS(2084), - [aux_sym_preproc_def_token1] = ACTIONS(2084), - [aux_sym_preproc_if_token1] = ACTIONS(2082), - [aux_sym_preproc_if_token2] = ACTIONS(2082), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2082), - [aux_sym_preproc_else_token1] = ACTIONS(2082), - [aux_sym_preproc_elif_token1] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(2084), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_TILDE] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2084), - [anon_sym_CARET] = ACTIONS(2084), - [anon_sym_AMP] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_typedef] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym___attribute] = ACTIONS(2082), - [anon_sym___attribute__] = ACTIONS(2082), - [anon_sym___declspec] = ACTIONS(2082), - [anon_sym___cdecl] = ACTIONS(2082), - [anon_sym___clrcall] = ACTIONS(2082), - [anon_sym___stdcall] = ACTIONS(2082), - [anon_sym___fastcall] = ACTIONS(2082), - [anon_sym___thiscall] = ACTIONS(2082), - [anon_sym___vectorcall] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_static] = ACTIONS(2082), - [anon_sym_auto] = ACTIONS(2082), - [anon_sym_register] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [anon_sym_restrict] = ACTIONS(2082), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_in] = ACTIONS(2082), - [anon_sym_out] = ACTIONS(2082), - [anon_sym_inout] = ACTIONS(2082), - [anon_sym_bycopy] = ACTIONS(2082), - [anon_sym_byref] = ACTIONS(2082), - [anon_sym_oneway] = ACTIONS(2082), - [anon_sym__Nullable] = ACTIONS(2082), - [anon_sym__Nonnull] = ACTIONS(2082), - [anon_sym__Nullable_result] = ACTIONS(2082), - [anon_sym__Null_unspecified] = ACTIONS(2082), - [anon_sym___autoreleasing] = ACTIONS(2082), - [anon_sym___nullable] = ACTIONS(2082), - [anon_sym___nonnull] = ACTIONS(2082), - [anon_sym___strong] = ACTIONS(2082), - [anon_sym___weak] = ACTIONS(2082), - [anon_sym___bridge] = ACTIONS(2082), - [anon_sym___bridge_transfer] = ACTIONS(2082), - [anon_sym___bridge_retained] = ACTIONS(2082), - [anon_sym___unsafe_unretained] = ACTIONS(2082), - [anon_sym___block] = ACTIONS(2082), - [anon_sym___kindof] = ACTIONS(2082), - [anon_sym___unused] = ACTIONS(2082), - [anon_sym__Complex] = ACTIONS(2082), - [anon_sym___complex] = ACTIONS(2082), - [anon_sym_IBOutlet] = ACTIONS(2082), - [anon_sym_IBInspectable] = ACTIONS(2082), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(2082), - [anon_sym_long] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_NS_ENUM] = ACTIONS(2082), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2082), - [anon_sym_NS_OPTIONS] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2082), - [anon_sym_union] = ACTIONS(2082), - [anon_sym_if] = ACTIONS(2082), - [anon_sym_switch] = ACTIONS(2082), - [anon_sym_case] = ACTIONS(2082), - [anon_sym_default] = ACTIONS(2082), - [anon_sym_while] = ACTIONS(2082), - [anon_sym_do] = ACTIONS(2082), - [anon_sym_for] = ACTIONS(2082), - [anon_sym_return] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_goto] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2082), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2084), - [anon_sym_u_SQUOTE] = ACTIONS(2084), - [anon_sym_U_SQUOTE] = ACTIONS(2084), - [anon_sym_u8_SQUOTE] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2084), - [anon_sym_L_DQUOTE] = ACTIONS(2084), - [anon_sym_u_DQUOTE] = ACTIONS(2084), - [anon_sym_U_DQUOTE] = ACTIONS(2084), - [anon_sym_u8_DQUOTE] = ACTIONS(2084), - [anon_sym_DQUOTE] = ACTIONS(2084), - [sym_true] = ACTIONS(2082), - [sym_false] = ACTIONS(2082), - [sym_null] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2084), - [anon_sym_ATimport] = ACTIONS(2084), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2082), - [anon_sym_ATcompatibility_alias] = ACTIONS(2084), - [anon_sym_ATprotocol] = ACTIONS(2084), - [anon_sym_ATclass] = ACTIONS(2084), - [anon_sym_ATinterface] = ACTIONS(2084), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2082), - [sym_method_attribute_specifier] = ACTIONS(2082), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2082), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2082), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2082), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2082), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2082), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2082), - [anon_sym_NS_AVAILABLE] = ACTIONS(2082), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2082), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2082), - [anon_sym_API_AVAILABLE] = ACTIONS(2082), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2082), - [anon_sym_API_DEPRECATED] = ACTIONS(2082), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2082), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2082), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2082), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2082), - [anon_sym___deprecated_msg] = ACTIONS(2082), - [anon_sym___deprecated_enum_msg] = ACTIONS(2082), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2082), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2082), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2082), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2082), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2082), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2082), - [anon_sym_ATimplementation] = ACTIONS(2084), - [anon_sym_typeof] = ACTIONS(2082), - [anon_sym___typeof] = ACTIONS(2082), - [anon_sym___typeof__] = ACTIONS(2082), - [sym_self] = ACTIONS(2082), - [sym_super] = ACTIONS(2082), - [sym_nil] = ACTIONS(2082), - [sym_id] = ACTIONS(2082), - [sym_instancetype] = ACTIONS(2082), - [sym_Class] = ACTIONS(2082), - [sym_SEL] = ACTIONS(2082), - [sym_IMP] = ACTIONS(2082), - [sym_BOOL] = ACTIONS(2082), - [sym_auto] = ACTIONS(2082), - [anon_sym_ATautoreleasepool] = ACTIONS(2084), - [anon_sym_ATsynchronized] = ACTIONS(2084), - [anon_sym_ATtry] = ACTIONS(2084), - [anon_sym_ATthrow] = ACTIONS(2084), - [anon_sym_ATselector] = ACTIONS(2084), - [anon_sym_ATencode] = ACTIONS(2084), - [anon_sym_AT] = ACTIONS(2082), - [sym_YES] = ACTIONS(2082), - [sym_NO] = ACTIONS(2082), - [anon_sym___builtin_available] = ACTIONS(2082), - [anon_sym_ATavailable] = ACTIONS(2084), - [anon_sym_va_arg] = ACTIONS(2082), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [809] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [aux_sym_preproc_else_token1] = ACTIONS(2078), - [aux_sym_preproc_elif_token1] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [810] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [aux_sym_preproc_else_token1] = ACTIONS(2078), - [aux_sym_preproc_elif_token1] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [811] = { - [sym_identifier] = ACTIONS(2086), - [aux_sym_preproc_include_token1] = ACTIONS(2088), - [aux_sym_preproc_def_token1] = ACTIONS(2088), - [aux_sym_preproc_if_token1] = ACTIONS(2086), - [aux_sym_preproc_if_token2] = ACTIONS(2086), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2086), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2086), - [aux_sym_preproc_else_token1] = ACTIONS(2086), - [aux_sym_preproc_elif_token1] = ACTIONS(2086), - [anon_sym_LPAREN2] = ACTIONS(2088), - [anon_sym_BANG] = ACTIONS(2088), - [anon_sym_TILDE] = ACTIONS(2088), - [anon_sym_DASH] = ACTIONS(2086), - [anon_sym_PLUS] = ACTIONS(2086), - [anon_sym_STAR] = ACTIONS(2088), - [anon_sym_CARET] = ACTIONS(2088), - [anon_sym_AMP] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_typedef] = ACTIONS(2086), - [anon_sym_extern] = ACTIONS(2086), - [anon_sym___attribute] = ACTIONS(2086), - [anon_sym___attribute__] = ACTIONS(2086), - [anon_sym___declspec] = ACTIONS(2086), - [anon_sym___cdecl] = ACTIONS(2086), - [anon_sym___clrcall] = ACTIONS(2086), - [anon_sym___stdcall] = ACTIONS(2086), - [anon_sym___fastcall] = ACTIONS(2086), - [anon_sym___thiscall] = ACTIONS(2086), - [anon_sym___vectorcall] = ACTIONS(2086), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(2088), - [anon_sym_static] = ACTIONS(2086), - [anon_sym_auto] = ACTIONS(2086), - [anon_sym_register] = ACTIONS(2086), - [anon_sym_inline] = ACTIONS(2086), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2086), - [anon_sym_const] = ACTIONS(2086), - [anon_sym_volatile] = ACTIONS(2086), - [anon_sym_restrict] = ACTIONS(2086), - [anon_sym__Atomic] = ACTIONS(2086), - [anon_sym_in] = ACTIONS(2086), - [anon_sym_out] = ACTIONS(2086), - [anon_sym_inout] = ACTIONS(2086), - [anon_sym_bycopy] = ACTIONS(2086), - [anon_sym_byref] = ACTIONS(2086), - [anon_sym_oneway] = ACTIONS(2086), - [anon_sym__Nullable] = ACTIONS(2086), - [anon_sym__Nonnull] = ACTIONS(2086), - [anon_sym__Nullable_result] = ACTIONS(2086), - [anon_sym__Null_unspecified] = ACTIONS(2086), - [anon_sym___autoreleasing] = ACTIONS(2086), - [anon_sym___nullable] = ACTIONS(2086), - [anon_sym___nonnull] = ACTIONS(2086), - [anon_sym___strong] = ACTIONS(2086), - [anon_sym___weak] = ACTIONS(2086), - [anon_sym___bridge] = ACTIONS(2086), - [anon_sym___bridge_transfer] = ACTIONS(2086), - [anon_sym___bridge_retained] = ACTIONS(2086), - [anon_sym___unsafe_unretained] = ACTIONS(2086), - [anon_sym___block] = ACTIONS(2086), - [anon_sym___kindof] = ACTIONS(2086), - [anon_sym___unused] = ACTIONS(2086), - [anon_sym__Complex] = ACTIONS(2086), - [anon_sym___complex] = ACTIONS(2086), - [anon_sym_IBOutlet] = ACTIONS(2086), - [anon_sym_IBInspectable] = ACTIONS(2086), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2086), - [anon_sym_signed] = ACTIONS(2086), - [anon_sym_unsigned] = ACTIONS(2086), - [anon_sym_long] = ACTIONS(2086), - [anon_sym_short] = ACTIONS(2086), - [sym_primitive_type] = ACTIONS(2086), - [anon_sym_enum] = ACTIONS(2086), - [anon_sym_NS_ENUM] = ACTIONS(2086), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2086), - [anon_sym_NS_OPTIONS] = ACTIONS(2086), - [anon_sym_struct] = ACTIONS(2086), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_switch] = ACTIONS(2086), - [anon_sym_case] = ACTIONS(2086), - [anon_sym_default] = ACTIONS(2086), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_do] = ACTIONS(2086), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2086), - [anon_sym_break] = ACTIONS(2086), - [anon_sym_continue] = ACTIONS(2086), - [anon_sym_goto] = ACTIONS(2086), - [anon_sym_DASH_DASH] = ACTIONS(2088), - [anon_sym_PLUS_PLUS] = ACTIONS(2088), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(2088), - [anon_sym_L_SQUOTE] = ACTIONS(2088), - [anon_sym_u_SQUOTE] = ACTIONS(2088), - [anon_sym_U_SQUOTE] = ACTIONS(2088), - [anon_sym_u8_SQUOTE] = ACTIONS(2088), - [anon_sym_SQUOTE] = ACTIONS(2088), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2086), - [sym_false] = ACTIONS(2086), - [sym_null] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2088), - [anon_sym_ATimport] = ACTIONS(2088), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2086), - [anon_sym_ATcompatibility_alias] = ACTIONS(2088), - [anon_sym_ATprotocol] = ACTIONS(2088), - [anon_sym_ATclass] = ACTIONS(2088), - [anon_sym_ATinterface] = ACTIONS(2088), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2086), - [sym_method_attribute_specifier] = ACTIONS(2086), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2086), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2086), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2086), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2086), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2086), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2086), - [anon_sym_NS_AVAILABLE] = ACTIONS(2086), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2086), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2086), - [anon_sym_API_AVAILABLE] = ACTIONS(2086), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2086), - [anon_sym_API_DEPRECATED] = ACTIONS(2086), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2086), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2086), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2086), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2086), - [anon_sym___deprecated_msg] = ACTIONS(2086), - [anon_sym___deprecated_enum_msg] = ACTIONS(2086), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2086), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2086), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2086), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2086), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2086), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2086), - [anon_sym_ATimplementation] = ACTIONS(2088), - [anon_sym_typeof] = ACTIONS(2086), - [anon_sym___typeof] = ACTIONS(2086), - [anon_sym___typeof__] = ACTIONS(2086), - [sym_self] = ACTIONS(2086), - [sym_super] = ACTIONS(2086), - [sym_nil] = ACTIONS(2086), - [sym_id] = ACTIONS(2086), - [sym_instancetype] = ACTIONS(2086), - [sym_Class] = ACTIONS(2086), - [sym_SEL] = ACTIONS(2086), - [sym_IMP] = ACTIONS(2086), - [sym_BOOL] = ACTIONS(2086), - [sym_auto] = ACTIONS(2086), - [anon_sym_ATautoreleasepool] = ACTIONS(2088), - [anon_sym_ATsynchronized] = ACTIONS(2088), - [anon_sym_ATtry] = ACTIONS(2088), - [anon_sym_ATthrow] = ACTIONS(2088), - [anon_sym_ATselector] = ACTIONS(2088), - [anon_sym_ATencode] = ACTIONS(2088), - [anon_sym_AT] = ACTIONS(2086), - [sym_YES] = ACTIONS(2086), - [sym_NO] = ACTIONS(2086), - [anon_sym___builtin_available] = ACTIONS(2086), - [anon_sym_ATavailable] = ACTIONS(2088), - [anon_sym_va_arg] = ACTIONS(2086), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [812] = { - [sym_identifier] = ACTIONS(2090), - [aux_sym_preproc_include_token1] = ACTIONS(2092), - [aux_sym_preproc_def_token1] = ACTIONS(2092), - [aux_sym_preproc_if_token1] = ACTIONS(2090), - [aux_sym_preproc_if_token2] = ACTIONS(2090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2090), - [aux_sym_preproc_else_token1] = ACTIONS(2090), - [aux_sym_preproc_elif_token1] = ACTIONS(2090), - [anon_sym_LPAREN2] = ACTIONS(2092), - [anon_sym_BANG] = ACTIONS(2092), - [anon_sym_TILDE] = ACTIONS(2092), - [anon_sym_DASH] = ACTIONS(2090), - [anon_sym_PLUS] = ACTIONS(2090), - [anon_sym_STAR] = ACTIONS(2092), - [anon_sym_CARET] = ACTIONS(2092), - [anon_sym_AMP] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_typedef] = ACTIONS(2090), - [anon_sym_extern] = ACTIONS(2090), - [anon_sym___attribute] = ACTIONS(2090), - [anon_sym___attribute__] = ACTIONS(2090), - [anon_sym___declspec] = ACTIONS(2090), - [anon_sym___cdecl] = ACTIONS(2090), - [anon_sym___clrcall] = ACTIONS(2090), - [anon_sym___stdcall] = ACTIONS(2090), - [anon_sym___fastcall] = ACTIONS(2090), - [anon_sym___thiscall] = ACTIONS(2090), - [anon_sym___vectorcall] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2092), - [anon_sym_static] = ACTIONS(2090), - [anon_sym_auto] = ACTIONS(2090), - [anon_sym_register] = ACTIONS(2090), - [anon_sym_inline] = ACTIONS(2090), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2090), - [anon_sym_volatile] = ACTIONS(2090), - [anon_sym_restrict] = ACTIONS(2090), - [anon_sym__Atomic] = ACTIONS(2090), - [anon_sym_in] = ACTIONS(2090), - [anon_sym_out] = ACTIONS(2090), - [anon_sym_inout] = ACTIONS(2090), - [anon_sym_bycopy] = ACTIONS(2090), - [anon_sym_byref] = ACTIONS(2090), - [anon_sym_oneway] = ACTIONS(2090), - [anon_sym__Nullable] = ACTIONS(2090), - [anon_sym__Nonnull] = ACTIONS(2090), - [anon_sym__Nullable_result] = ACTIONS(2090), - [anon_sym__Null_unspecified] = ACTIONS(2090), - [anon_sym___autoreleasing] = ACTIONS(2090), - [anon_sym___nullable] = ACTIONS(2090), - [anon_sym___nonnull] = ACTIONS(2090), - [anon_sym___strong] = ACTIONS(2090), - [anon_sym___weak] = ACTIONS(2090), - [anon_sym___bridge] = ACTIONS(2090), - [anon_sym___bridge_transfer] = ACTIONS(2090), - [anon_sym___bridge_retained] = ACTIONS(2090), - [anon_sym___unsafe_unretained] = ACTIONS(2090), - [anon_sym___block] = ACTIONS(2090), - [anon_sym___kindof] = ACTIONS(2090), - [anon_sym___unused] = ACTIONS(2090), - [anon_sym__Complex] = ACTIONS(2090), - [anon_sym___complex] = ACTIONS(2090), - [anon_sym_IBOutlet] = ACTIONS(2090), - [anon_sym_IBInspectable] = ACTIONS(2090), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2090), - [anon_sym_signed] = ACTIONS(2090), - [anon_sym_unsigned] = ACTIONS(2090), - [anon_sym_long] = ACTIONS(2090), - [anon_sym_short] = ACTIONS(2090), - [sym_primitive_type] = ACTIONS(2090), - [anon_sym_enum] = ACTIONS(2090), - [anon_sym_NS_ENUM] = ACTIONS(2090), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2090), - [anon_sym_NS_OPTIONS] = ACTIONS(2090), - [anon_sym_struct] = ACTIONS(2090), - [anon_sym_union] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2090), - [anon_sym_switch] = ACTIONS(2090), - [anon_sym_case] = ACTIONS(2090), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2090), - [anon_sym_do] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(2090), - [anon_sym_return] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_goto] = ACTIONS(2090), - [anon_sym_DASH_DASH] = ACTIONS(2092), - [anon_sym_PLUS_PLUS] = ACTIONS(2092), - [anon_sym_sizeof] = ACTIONS(2090), - [sym_number_literal] = ACTIONS(2092), - [anon_sym_L_SQUOTE] = ACTIONS(2092), - [anon_sym_u_SQUOTE] = ACTIONS(2092), - [anon_sym_U_SQUOTE] = ACTIONS(2092), - [anon_sym_u8_SQUOTE] = ACTIONS(2092), - [anon_sym_SQUOTE] = ACTIONS(2092), - [anon_sym_L_DQUOTE] = ACTIONS(2092), - [anon_sym_u_DQUOTE] = ACTIONS(2092), - [anon_sym_U_DQUOTE] = ACTIONS(2092), - [anon_sym_u8_DQUOTE] = ACTIONS(2092), - [anon_sym_DQUOTE] = ACTIONS(2092), - [sym_true] = ACTIONS(2090), - [sym_false] = ACTIONS(2090), - [sym_null] = ACTIONS(2090), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2092), - [anon_sym_ATimport] = ACTIONS(2092), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2090), - [anon_sym_ATcompatibility_alias] = ACTIONS(2092), - [anon_sym_ATprotocol] = ACTIONS(2092), - [anon_sym_ATclass] = ACTIONS(2092), - [anon_sym_ATinterface] = ACTIONS(2092), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2090), - [sym_method_attribute_specifier] = ACTIONS(2090), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2090), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2090), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2090), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2090), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2090), - [anon_sym_NS_AVAILABLE] = ACTIONS(2090), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2090), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_API_AVAILABLE] = ACTIONS(2090), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_API_DEPRECATED] = ACTIONS(2090), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2090), - [anon_sym___deprecated_msg] = ACTIONS(2090), - [anon_sym___deprecated_enum_msg] = ACTIONS(2090), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2090), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2090), - [anon_sym_ATimplementation] = ACTIONS(2092), - [anon_sym_typeof] = ACTIONS(2090), - [anon_sym___typeof] = ACTIONS(2090), - [anon_sym___typeof__] = ACTIONS(2090), - [sym_self] = ACTIONS(2090), - [sym_super] = ACTIONS(2090), - [sym_nil] = ACTIONS(2090), - [sym_id] = ACTIONS(2090), - [sym_instancetype] = ACTIONS(2090), - [sym_Class] = ACTIONS(2090), - [sym_SEL] = ACTIONS(2090), - [sym_IMP] = ACTIONS(2090), - [sym_BOOL] = ACTIONS(2090), - [sym_auto] = ACTIONS(2090), - [anon_sym_ATautoreleasepool] = ACTIONS(2092), - [anon_sym_ATsynchronized] = ACTIONS(2092), - [anon_sym_ATtry] = ACTIONS(2092), - [anon_sym_ATthrow] = ACTIONS(2092), - [anon_sym_ATselector] = ACTIONS(2092), - [anon_sym_ATencode] = ACTIONS(2092), - [anon_sym_AT] = ACTIONS(2090), - [sym_YES] = ACTIONS(2090), - [sym_NO] = ACTIONS(2090), - [anon_sym___builtin_available] = ACTIONS(2090), - [anon_sym_ATavailable] = ACTIONS(2092), - [anon_sym_va_arg] = ACTIONS(2090), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [813] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [aux_sym_preproc_else_token1] = ACTIONS(2078), - [aux_sym_preproc_elif_token1] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [814] = { - [sym_identifier] = ACTIONS(2094), - [aux_sym_preproc_include_token1] = ACTIONS(2096), - [aux_sym_preproc_def_token1] = ACTIONS(2096), - [aux_sym_preproc_if_token1] = ACTIONS(2094), - [aux_sym_preproc_if_token2] = ACTIONS(2094), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2094), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2094), - [aux_sym_preproc_else_token1] = ACTIONS(2094), - [aux_sym_preproc_elif_token1] = ACTIONS(2094), - [anon_sym_LPAREN2] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_TILDE] = ACTIONS(2096), - [anon_sym_DASH] = ACTIONS(2094), - [anon_sym_PLUS] = ACTIONS(2094), - [anon_sym_STAR] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_typedef] = ACTIONS(2094), - [anon_sym_extern] = ACTIONS(2094), - [anon_sym___attribute] = ACTIONS(2094), - [anon_sym___attribute__] = ACTIONS(2094), - [anon_sym___declspec] = ACTIONS(2094), - [anon_sym___cdecl] = ACTIONS(2094), - [anon_sym___clrcall] = ACTIONS(2094), - [anon_sym___stdcall] = ACTIONS(2094), - [anon_sym___fastcall] = ACTIONS(2094), - [anon_sym___thiscall] = ACTIONS(2094), - [anon_sym___vectorcall] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_static] = ACTIONS(2094), - [anon_sym_auto] = ACTIONS(2094), - [anon_sym_register] = ACTIONS(2094), - [anon_sym_inline] = ACTIONS(2094), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2094), - [anon_sym_const] = ACTIONS(2094), - [anon_sym_volatile] = ACTIONS(2094), - [anon_sym_restrict] = ACTIONS(2094), - [anon_sym__Atomic] = ACTIONS(2094), - [anon_sym_in] = ACTIONS(2094), - [anon_sym_out] = ACTIONS(2094), - [anon_sym_inout] = ACTIONS(2094), - [anon_sym_bycopy] = ACTIONS(2094), - [anon_sym_byref] = ACTIONS(2094), - [anon_sym_oneway] = ACTIONS(2094), - [anon_sym__Nullable] = ACTIONS(2094), - [anon_sym__Nonnull] = ACTIONS(2094), - [anon_sym__Nullable_result] = ACTIONS(2094), - [anon_sym__Null_unspecified] = ACTIONS(2094), - [anon_sym___autoreleasing] = ACTIONS(2094), - [anon_sym___nullable] = ACTIONS(2094), - [anon_sym___nonnull] = ACTIONS(2094), - [anon_sym___strong] = ACTIONS(2094), - [anon_sym___weak] = ACTIONS(2094), - [anon_sym___bridge] = ACTIONS(2094), - [anon_sym___bridge_transfer] = ACTIONS(2094), - [anon_sym___bridge_retained] = ACTIONS(2094), - [anon_sym___unsafe_unretained] = ACTIONS(2094), - [anon_sym___block] = ACTIONS(2094), - [anon_sym___kindof] = ACTIONS(2094), - [anon_sym___unused] = ACTIONS(2094), - [anon_sym__Complex] = ACTIONS(2094), - [anon_sym___complex] = ACTIONS(2094), - [anon_sym_IBOutlet] = ACTIONS(2094), - [anon_sym_IBInspectable] = ACTIONS(2094), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2094), - [anon_sym_signed] = ACTIONS(2094), - [anon_sym_unsigned] = ACTIONS(2094), - [anon_sym_long] = ACTIONS(2094), - [anon_sym_short] = ACTIONS(2094), - [sym_primitive_type] = ACTIONS(2094), - [anon_sym_enum] = ACTIONS(2094), - [anon_sym_NS_ENUM] = ACTIONS(2094), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2094), - [anon_sym_NS_OPTIONS] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(2094), - [anon_sym_union] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2094), - [anon_sym_switch] = ACTIONS(2094), - [anon_sym_case] = ACTIONS(2094), - [anon_sym_default] = ACTIONS(2094), - [anon_sym_while] = ACTIONS(2094), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2094), - [anon_sym_return] = ACTIONS(2094), - [anon_sym_break] = ACTIONS(2094), - [anon_sym_continue] = ACTIONS(2094), - [anon_sym_goto] = ACTIONS(2094), - [anon_sym_DASH_DASH] = ACTIONS(2096), - [anon_sym_PLUS_PLUS] = ACTIONS(2096), - [anon_sym_sizeof] = ACTIONS(2094), - [sym_number_literal] = ACTIONS(2096), - [anon_sym_L_SQUOTE] = ACTIONS(2096), - [anon_sym_u_SQUOTE] = ACTIONS(2096), - [anon_sym_U_SQUOTE] = ACTIONS(2096), - [anon_sym_u8_SQUOTE] = ACTIONS(2096), - [anon_sym_SQUOTE] = ACTIONS(2096), - [anon_sym_L_DQUOTE] = ACTIONS(2096), - [anon_sym_u_DQUOTE] = ACTIONS(2096), - [anon_sym_U_DQUOTE] = ACTIONS(2096), - [anon_sym_u8_DQUOTE] = ACTIONS(2096), - [anon_sym_DQUOTE] = ACTIONS(2096), - [sym_true] = ACTIONS(2094), - [sym_false] = ACTIONS(2094), - [sym_null] = ACTIONS(2094), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2096), - [anon_sym_ATimport] = ACTIONS(2096), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2094), - [anon_sym_ATcompatibility_alias] = ACTIONS(2096), - [anon_sym_ATprotocol] = ACTIONS(2096), - [anon_sym_ATclass] = ACTIONS(2096), - [anon_sym_ATinterface] = ACTIONS(2096), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2094), - [sym_method_attribute_specifier] = ACTIONS(2094), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2094), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2094), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2094), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2094), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2094), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2094), - [anon_sym_NS_AVAILABLE] = ACTIONS(2094), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2094), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2094), - [anon_sym_API_AVAILABLE] = ACTIONS(2094), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2094), - [anon_sym_API_DEPRECATED] = ACTIONS(2094), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2094), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2094), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2094), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2094), - [anon_sym___deprecated_msg] = ACTIONS(2094), - [anon_sym___deprecated_enum_msg] = ACTIONS(2094), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2094), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2094), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2094), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2094), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2094), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2094), - [anon_sym_ATimplementation] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(2094), - [anon_sym___typeof] = ACTIONS(2094), - [anon_sym___typeof__] = ACTIONS(2094), - [sym_self] = ACTIONS(2094), - [sym_super] = ACTIONS(2094), - [sym_nil] = ACTIONS(2094), - [sym_id] = ACTIONS(2094), - [sym_instancetype] = ACTIONS(2094), - [sym_Class] = ACTIONS(2094), - [sym_SEL] = ACTIONS(2094), - [sym_IMP] = ACTIONS(2094), - [sym_BOOL] = ACTIONS(2094), - [sym_auto] = ACTIONS(2094), - [anon_sym_ATautoreleasepool] = ACTIONS(2096), - [anon_sym_ATsynchronized] = ACTIONS(2096), - [anon_sym_ATtry] = ACTIONS(2096), - [anon_sym_ATthrow] = ACTIONS(2096), - [anon_sym_ATselector] = ACTIONS(2096), - [anon_sym_ATencode] = ACTIONS(2096), - [anon_sym_AT] = ACTIONS(2094), - [sym_YES] = ACTIONS(2094), - [sym_NO] = ACTIONS(2094), - [anon_sym___builtin_available] = ACTIONS(2094), - [anon_sym_ATavailable] = ACTIONS(2096), - [anon_sym_va_arg] = ACTIONS(2094), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [815] = { - [sym_identifier] = ACTIONS(2098), - [aux_sym_preproc_include_token1] = ACTIONS(2100), - [aux_sym_preproc_def_token1] = ACTIONS(2100), - [aux_sym_preproc_if_token1] = ACTIONS(2098), - [aux_sym_preproc_if_token2] = ACTIONS(2098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2098), - [aux_sym_preproc_else_token1] = ACTIONS(2098), - [aux_sym_preproc_elif_token1] = ACTIONS(2098), - [anon_sym_LPAREN2] = ACTIONS(2100), - [anon_sym_BANG] = ACTIONS(2100), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_DASH] = ACTIONS(2098), - [anon_sym_PLUS] = ACTIONS(2098), - [anon_sym_STAR] = ACTIONS(2100), - [anon_sym_CARET] = ACTIONS(2100), - [anon_sym_AMP] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_typedef] = ACTIONS(2098), - [anon_sym_extern] = ACTIONS(2098), - [anon_sym___attribute] = ACTIONS(2098), - [anon_sym___attribute__] = ACTIONS(2098), - [anon_sym___declspec] = ACTIONS(2098), - [anon_sym___cdecl] = ACTIONS(2098), - [anon_sym___clrcall] = ACTIONS(2098), - [anon_sym___stdcall] = ACTIONS(2098), - [anon_sym___fastcall] = ACTIONS(2098), - [anon_sym___thiscall] = ACTIONS(2098), - [anon_sym___vectorcall] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LBRACK] = ACTIONS(2100), - [anon_sym_static] = ACTIONS(2098), - [anon_sym_auto] = ACTIONS(2098), - [anon_sym_register] = ACTIONS(2098), - [anon_sym_inline] = ACTIONS(2098), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2098), - [anon_sym_const] = ACTIONS(2098), - [anon_sym_volatile] = ACTIONS(2098), - [anon_sym_restrict] = ACTIONS(2098), - [anon_sym__Atomic] = ACTIONS(2098), - [anon_sym_in] = ACTIONS(2098), - [anon_sym_out] = ACTIONS(2098), - [anon_sym_inout] = ACTIONS(2098), - [anon_sym_bycopy] = ACTIONS(2098), - [anon_sym_byref] = ACTIONS(2098), - [anon_sym_oneway] = ACTIONS(2098), - [anon_sym__Nullable] = ACTIONS(2098), - [anon_sym__Nonnull] = ACTIONS(2098), - [anon_sym__Nullable_result] = ACTIONS(2098), - [anon_sym__Null_unspecified] = ACTIONS(2098), - [anon_sym___autoreleasing] = ACTIONS(2098), - [anon_sym___nullable] = ACTIONS(2098), - [anon_sym___nonnull] = ACTIONS(2098), - [anon_sym___strong] = ACTIONS(2098), - [anon_sym___weak] = ACTIONS(2098), - [anon_sym___bridge] = ACTIONS(2098), - [anon_sym___bridge_transfer] = ACTIONS(2098), - [anon_sym___bridge_retained] = ACTIONS(2098), - [anon_sym___unsafe_unretained] = ACTIONS(2098), - [anon_sym___block] = ACTIONS(2098), - [anon_sym___kindof] = ACTIONS(2098), - [anon_sym___unused] = ACTIONS(2098), - [anon_sym__Complex] = ACTIONS(2098), - [anon_sym___complex] = ACTIONS(2098), - [anon_sym_IBOutlet] = ACTIONS(2098), - [anon_sym_IBInspectable] = ACTIONS(2098), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2098), - [anon_sym_signed] = ACTIONS(2098), - [anon_sym_unsigned] = ACTIONS(2098), - [anon_sym_long] = ACTIONS(2098), - [anon_sym_short] = ACTIONS(2098), - [sym_primitive_type] = ACTIONS(2098), - [anon_sym_enum] = ACTIONS(2098), - [anon_sym_NS_ENUM] = ACTIONS(2098), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2098), - [anon_sym_NS_OPTIONS] = ACTIONS(2098), - [anon_sym_struct] = ACTIONS(2098), - [anon_sym_union] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2098), - [anon_sym_switch] = ACTIONS(2098), - [anon_sym_case] = ACTIONS(2098), - [anon_sym_default] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2098), - [anon_sym_do] = ACTIONS(2098), - [anon_sym_for] = ACTIONS(2098), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2098), - [anon_sym_continue] = ACTIONS(2098), - [anon_sym_goto] = ACTIONS(2098), - [anon_sym_DASH_DASH] = ACTIONS(2100), - [anon_sym_PLUS_PLUS] = ACTIONS(2100), - [anon_sym_sizeof] = ACTIONS(2098), - [sym_number_literal] = ACTIONS(2100), - [anon_sym_L_SQUOTE] = ACTIONS(2100), - [anon_sym_u_SQUOTE] = ACTIONS(2100), - [anon_sym_U_SQUOTE] = ACTIONS(2100), - [anon_sym_u8_SQUOTE] = ACTIONS(2100), - [anon_sym_SQUOTE] = ACTIONS(2100), - [anon_sym_L_DQUOTE] = ACTIONS(2100), - [anon_sym_u_DQUOTE] = ACTIONS(2100), - [anon_sym_U_DQUOTE] = ACTIONS(2100), - [anon_sym_u8_DQUOTE] = ACTIONS(2100), - [anon_sym_DQUOTE] = ACTIONS(2100), - [sym_true] = ACTIONS(2098), - [sym_false] = ACTIONS(2098), - [sym_null] = ACTIONS(2098), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2100), - [anon_sym_ATimport] = ACTIONS(2100), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2098), - [anon_sym_ATcompatibility_alias] = ACTIONS(2100), - [anon_sym_ATprotocol] = ACTIONS(2100), - [anon_sym_ATclass] = ACTIONS(2100), - [anon_sym_ATinterface] = ACTIONS(2100), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2098), - [sym_method_attribute_specifier] = ACTIONS(2098), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2098), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2098), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2098), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2098), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2098), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2098), - [anon_sym_NS_AVAILABLE] = ACTIONS(2098), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2098), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2098), - [anon_sym_API_AVAILABLE] = ACTIONS(2098), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2098), - [anon_sym_API_DEPRECATED] = ACTIONS(2098), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2098), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2098), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2098), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2098), - [anon_sym___deprecated_msg] = ACTIONS(2098), - [anon_sym___deprecated_enum_msg] = ACTIONS(2098), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2098), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2098), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2098), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2098), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2098), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2098), - [anon_sym_ATimplementation] = ACTIONS(2100), - [anon_sym_typeof] = ACTIONS(2098), - [anon_sym___typeof] = ACTIONS(2098), - [anon_sym___typeof__] = ACTIONS(2098), - [sym_self] = ACTIONS(2098), - [sym_super] = ACTIONS(2098), - [sym_nil] = ACTIONS(2098), - [sym_id] = ACTIONS(2098), - [sym_instancetype] = ACTIONS(2098), - [sym_Class] = ACTIONS(2098), - [sym_SEL] = ACTIONS(2098), - [sym_IMP] = ACTIONS(2098), - [sym_BOOL] = ACTIONS(2098), - [sym_auto] = ACTIONS(2098), - [anon_sym_ATautoreleasepool] = ACTIONS(2100), - [anon_sym_ATsynchronized] = ACTIONS(2100), - [anon_sym_ATtry] = ACTIONS(2100), - [anon_sym_ATthrow] = ACTIONS(2100), - [anon_sym_ATselector] = ACTIONS(2100), - [anon_sym_ATencode] = ACTIONS(2100), - [anon_sym_AT] = ACTIONS(2098), - [sym_YES] = ACTIONS(2098), - [sym_NO] = ACTIONS(2098), - [anon_sym___builtin_available] = ACTIONS(2098), - [anon_sym_ATavailable] = ACTIONS(2100), - [anon_sym_va_arg] = ACTIONS(2098), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [816] = { - [sym_identifier] = ACTIONS(2102), - [aux_sym_preproc_include_token1] = ACTIONS(2104), - [aux_sym_preproc_def_token1] = ACTIONS(2104), - [aux_sym_preproc_if_token1] = ACTIONS(2102), - [aux_sym_preproc_if_token2] = ACTIONS(2102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2102), - [aux_sym_preproc_else_token1] = ACTIONS(2102), - [aux_sym_preproc_elif_token1] = ACTIONS(2102), - [anon_sym_LPAREN2] = ACTIONS(2104), - [anon_sym_BANG] = ACTIONS(2104), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2102), - [anon_sym_PLUS] = ACTIONS(2102), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_typedef] = ACTIONS(2102), - [anon_sym_extern] = ACTIONS(2102), - [anon_sym___attribute] = ACTIONS(2102), - [anon_sym___attribute__] = ACTIONS(2102), - [anon_sym___declspec] = ACTIONS(2102), - [anon_sym___cdecl] = ACTIONS(2102), - [anon_sym___clrcall] = ACTIONS(2102), - [anon_sym___stdcall] = ACTIONS(2102), - [anon_sym___fastcall] = ACTIONS(2102), - [anon_sym___thiscall] = ACTIONS(2102), - [anon_sym___vectorcall] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2104), - [anon_sym_static] = ACTIONS(2102), - [anon_sym_auto] = ACTIONS(2102), - [anon_sym_register] = ACTIONS(2102), - [anon_sym_inline] = ACTIONS(2102), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2102), - [anon_sym_const] = ACTIONS(2102), - [anon_sym_volatile] = ACTIONS(2102), - [anon_sym_restrict] = ACTIONS(2102), - [anon_sym__Atomic] = ACTIONS(2102), - [anon_sym_in] = ACTIONS(2102), - [anon_sym_out] = ACTIONS(2102), - [anon_sym_inout] = ACTIONS(2102), - [anon_sym_bycopy] = ACTIONS(2102), - [anon_sym_byref] = ACTIONS(2102), - [anon_sym_oneway] = ACTIONS(2102), - [anon_sym__Nullable] = ACTIONS(2102), - [anon_sym__Nonnull] = ACTIONS(2102), - [anon_sym__Nullable_result] = ACTIONS(2102), - [anon_sym__Null_unspecified] = ACTIONS(2102), - [anon_sym___autoreleasing] = ACTIONS(2102), - [anon_sym___nullable] = ACTIONS(2102), - [anon_sym___nonnull] = ACTIONS(2102), - [anon_sym___strong] = ACTIONS(2102), - [anon_sym___weak] = ACTIONS(2102), - [anon_sym___bridge] = ACTIONS(2102), - [anon_sym___bridge_transfer] = ACTIONS(2102), - [anon_sym___bridge_retained] = ACTIONS(2102), - [anon_sym___unsafe_unretained] = ACTIONS(2102), - [anon_sym___block] = ACTIONS(2102), - [anon_sym___kindof] = ACTIONS(2102), - [anon_sym___unused] = ACTIONS(2102), - [anon_sym__Complex] = ACTIONS(2102), - [anon_sym___complex] = ACTIONS(2102), - [anon_sym_IBOutlet] = ACTIONS(2102), - [anon_sym_IBInspectable] = ACTIONS(2102), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2102), - [anon_sym_signed] = ACTIONS(2102), - [anon_sym_unsigned] = ACTIONS(2102), - [anon_sym_long] = ACTIONS(2102), - [anon_sym_short] = ACTIONS(2102), - [sym_primitive_type] = ACTIONS(2102), - [anon_sym_enum] = ACTIONS(2102), - [anon_sym_NS_ENUM] = ACTIONS(2102), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2102), - [anon_sym_NS_OPTIONS] = ACTIONS(2102), - [anon_sym_struct] = ACTIONS(2102), - [anon_sym_union] = ACTIONS(2102), - [anon_sym_if] = ACTIONS(2102), - [anon_sym_switch] = ACTIONS(2102), - [anon_sym_case] = ACTIONS(2102), - [anon_sym_default] = ACTIONS(2102), - [anon_sym_while] = ACTIONS(2102), - [anon_sym_do] = ACTIONS(2102), - [anon_sym_for] = ACTIONS(2102), - [anon_sym_return] = ACTIONS(2102), - [anon_sym_break] = ACTIONS(2102), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2102), - [anon_sym_DASH_DASH] = ACTIONS(2104), - [anon_sym_PLUS_PLUS] = ACTIONS(2104), - [anon_sym_sizeof] = ACTIONS(2102), - [sym_number_literal] = ACTIONS(2104), - [anon_sym_L_SQUOTE] = ACTIONS(2104), - [anon_sym_u_SQUOTE] = ACTIONS(2104), - [anon_sym_U_SQUOTE] = ACTIONS(2104), - [anon_sym_u8_SQUOTE] = ACTIONS(2104), - [anon_sym_SQUOTE] = ACTIONS(2104), - [anon_sym_L_DQUOTE] = ACTIONS(2104), - [anon_sym_u_DQUOTE] = ACTIONS(2104), - [anon_sym_U_DQUOTE] = ACTIONS(2104), - [anon_sym_u8_DQUOTE] = ACTIONS(2104), - [anon_sym_DQUOTE] = ACTIONS(2104), - [sym_true] = ACTIONS(2102), - [sym_false] = ACTIONS(2102), - [sym_null] = ACTIONS(2102), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2104), - [anon_sym_ATimport] = ACTIONS(2104), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2102), - [anon_sym_ATcompatibility_alias] = ACTIONS(2104), - [anon_sym_ATprotocol] = ACTIONS(2104), - [anon_sym_ATclass] = ACTIONS(2104), - [anon_sym_ATinterface] = ACTIONS(2104), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2102), - [sym_method_attribute_specifier] = ACTIONS(2102), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2102), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2102), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2102), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2102), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2102), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2102), - [anon_sym_NS_AVAILABLE] = ACTIONS(2102), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2102), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2102), - [anon_sym_API_AVAILABLE] = ACTIONS(2102), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2102), - [anon_sym_API_DEPRECATED] = ACTIONS(2102), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2102), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2102), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2102), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2102), - [anon_sym___deprecated_msg] = ACTIONS(2102), - [anon_sym___deprecated_enum_msg] = ACTIONS(2102), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2102), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2102), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2102), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2102), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2102), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2102), - [anon_sym_ATimplementation] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2102), - [anon_sym___typeof] = ACTIONS(2102), - [anon_sym___typeof__] = ACTIONS(2102), - [sym_self] = ACTIONS(2102), - [sym_super] = ACTIONS(2102), - [sym_nil] = ACTIONS(2102), - [sym_id] = ACTIONS(2102), - [sym_instancetype] = ACTIONS(2102), - [sym_Class] = ACTIONS(2102), - [sym_SEL] = ACTIONS(2102), - [sym_IMP] = ACTIONS(2102), - [sym_BOOL] = ACTIONS(2102), - [sym_auto] = ACTIONS(2102), - [anon_sym_ATautoreleasepool] = ACTIONS(2104), - [anon_sym_ATsynchronized] = ACTIONS(2104), - [anon_sym_ATtry] = ACTIONS(2104), - [anon_sym_ATthrow] = ACTIONS(2104), - [anon_sym_ATselector] = ACTIONS(2104), - [anon_sym_ATencode] = ACTIONS(2104), - [anon_sym_AT] = ACTIONS(2102), - [sym_YES] = ACTIONS(2102), - [sym_NO] = ACTIONS(2102), - [anon_sym___builtin_available] = ACTIONS(2102), - [anon_sym_ATavailable] = ACTIONS(2104), - [anon_sym_va_arg] = ACTIONS(2102), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [817] = { - [sym_identifier] = ACTIONS(2106), - [aux_sym_preproc_include_token1] = ACTIONS(2108), - [aux_sym_preproc_def_token1] = ACTIONS(2108), - [aux_sym_preproc_if_token1] = ACTIONS(2106), - [aux_sym_preproc_if_token2] = ACTIONS(2106), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2106), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2106), - [aux_sym_preproc_else_token1] = ACTIONS(2106), - [aux_sym_preproc_elif_token1] = ACTIONS(2106), - [anon_sym_LPAREN2] = ACTIONS(2108), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_TILDE] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2108), - [anon_sym_CARET] = ACTIONS(2108), - [anon_sym_AMP] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2108), - [anon_sym_typedef] = ACTIONS(2106), - [anon_sym_extern] = ACTIONS(2106), - [anon_sym___attribute] = ACTIONS(2106), - [anon_sym___attribute__] = ACTIONS(2106), - [anon_sym___declspec] = ACTIONS(2106), - [anon_sym___cdecl] = ACTIONS(2106), - [anon_sym___clrcall] = ACTIONS(2106), - [anon_sym___stdcall] = ACTIONS(2106), - [anon_sym___fastcall] = ACTIONS(2106), - [anon_sym___thiscall] = ACTIONS(2106), - [anon_sym___vectorcall] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_static] = ACTIONS(2106), - [anon_sym_auto] = ACTIONS(2106), - [anon_sym_register] = ACTIONS(2106), - [anon_sym_inline] = ACTIONS(2106), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2106), - [anon_sym_const] = ACTIONS(2106), - [anon_sym_volatile] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(2106), - [anon_sym__Atomic] = ACTIONS(2106), - [anon_sym_in] = ACTIONS(2106), - [anon_sym_out] = ACTIONS(2106), - [anon_sym_inout] = ACTIONS(2106), - [anon_sym_bycopy] = ACTIONS(2106), - [anon_sym_byref] = ACTIONS(2106), - [anon_sym_oneway] = ACTIONS(2106), - [anon_sym__Nullable] = ACTIONS(2106), - [anon_sym__Nonnull] = ACTIONS(2106), - [anon_sym__Nullable_result] = ACTIONS(2106), - [anon_sym__Null_unspecified] = ACTIONS(2106), - [anon_sym___autoreleasing] = ACTIONS(2106), - [anon_sym___nullable] = ACTIONS(2106), - [anon_sym___nonnull] = ACTIONS(2106), - [anon_sym___strong] = ACTIONS(2106), - [anon_sym___weak] = ACTIONS(2106), - [anon_sym___bridge] = ACTIONS(2106), - [anon_sym___bridge_transfer] = ACTIONS(2106), - [anon_sym___bridge_retained] = ACTIONS(2106), - [anon_sym___unsafe_unretained] = ACTIONS(2106), - [anon_sym___block] = ACTIONS(2106), - [anon_sym___kindof] = ACTIONS(2106), - [anon_sym___unused] = ACTIONS(2106), - [anon_sym__Complex] = ACTIONS(2106), - [anon_sym___complex] = ACTIONS(2106), - [anon_sym_IBOutlet] = ACTIONS(2106), - [anon_sym_IBInspectable] = ACTIONS(2106), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2106), - [anon_sym_signed] = ACTIONS(2106), - [anon_sym_unsigned] = ACTIONS(2106), - [anon_sym_long] = ACTIONS(2106), - [anon_sym_short] = ACTIONS(2106), - [sym_primitive_type] = ACTIONS(2106), - [anon_sym_enum] = ACTIONS(2106), - [anon_sym_NS_ENUM] = ACTIONS(2106), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2106), - [anon_sym_NS_OPTIONS] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(2106), - [anon_sym_union] = ACTIONS(2106), - [anon_sym_if] = ACTIONS(2106), - [anon_sym_switch] = ACTIONS(2106), - [anon_sym_case] = ACTIONS(2106), - [anon_sym_default] = ACTIONS(2106), - [anon_sym_while] = ACTIONS(2106), - [anon_sym_do] = ACTIONS(2106), - [anon_sym_for] = ACTIONS(2106), - [anon_sym_return] = ACTIONS(2106), - [anon_sym_break] = ACTIONS(2106), - [anon_sym_continue] = ACTIONS(2106), - [anon_sym_goto] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2108), - [anon_sym_PLUS_PLUS] = ACTIONS(2108), - [anon_sym_sizeof] = ACTIONS(2106), - [sym_number_literal] = ACTIONS(2108), - [anon_sym_L_SQUOTE] = ACTIONS(2108), - [anon_sym_u_SQUOTE] = ACTIONS(2108), - [anon_sym_U_SQUOTE] = ACTIONS(2108), - [anon_sym_u8_SQUOTE] = ACTIONS(2108), - [anon_sym_SQUOTE] = ACTIONS(2108), - [anon_sym_L_DQUOTE] = ACTIONS(2108), - [anon_sym_u_DQUOTE] = ACTIONS(2108), - [anon_sym_U_DQUOTE] = ACTIONS(2108), - [anon_sym_u8_DQUOTE] = ACTIONS(2108), - [anon_sym_DQUOTE] = ACTIONS(2108), - [sym_true] = ACTIONS(2106), - [sym_false] = ACTIONS(2106), - [sym_null] = ACTIONS(2106), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2108), - [anon_sym_ATimport] = ACTIONS(2108), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2106), - [anon_sym_ATcompatibility_alias] = ACTIONS(2108), - [anon_sym_ATprotocol] = ACTIONS(2108), - [anon_sym_ATclass] = ACTIONS(2108), - [anon_sym_ATinterface] = ACTIONS(2108), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2106), - [sym_method_attribute_specifier] = ACTIONS(2106), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2106), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2106), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2106), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2106), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2106), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2106), - [anon_sym_NS_AVAILABLE] = ACTIONS(2106), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2106), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2106), - [anon_sym_API_AVAILABLE] = ACTIONS(2106), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2106), - [anon_sym_API_DEPRECATED] = ACTIONS(2106), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2106), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2106), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2106), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2106), - [anon_sym___deprecated_msg] = ACTIONS(2106), - [anon_sym___deprecated_enum_msg] = ACTIONS(2106), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2106), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2106), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2106), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2106), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2106), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2106), - [anon_sym_ATimplementation] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym___typeof] = ACTIONS(2106), - [anon_sym___typeof__] = ACTIONS(2106), - [sym_self] = ACTIONS(2106), - [sym_super] = ACTIONS(2106), - [sym_nil] = ACTIONS(2106), - [sym_id] = ACTIONS(2106), - [sym_instancetype] = ACTIONS(2106), - [sym_Class] = ACTIONS(2106), - [sym_SEL] = ACTIONS(2106), - [sym_IMP] = ACTIONS(2106), - [sym_BOOL] = ACTIONS(2106), - [sym_auto] = ACTIONS(2106), - [anon_sym_ATautoreleasepool] = ACTIONS(2108), - [anon_sym_ATsynchronized] = ACTIONS(2108), - [anon_sym_ATtry] = ACTIONS(2108), - [anon_sym_ATthrow] = ACTIONS(2108), - [anon_sym_ATselector] = ACTIONS(2108), - [anon_sym_ATencode] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(2106), - [sym_YES] = ACTIONS(2106), - [sym_NO] = ACTIONS(2106), - [anon_sym___builtin_available] = ACTIONS(2106), - [anon_sym_ATavailable] = ACTIONS(2108), - [anon_sym_va_arg] = ACTIONS(2106), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [818] = { - [sym_identifier] = ACTIONS(2110), - [aux_sym_preproc_include_token1] = ACTIONS(2112), - [aux_sym_preproc_def_token1] = ACTIONS(2112), - [aux_sym_preproc_if_token1] = ACTIONS(2110), - [aux_sym_preproc_if_token2] = ACTIONS(2110), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2110), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2110), - [aux_sym_preproc_else_token1] = ACTIONS(2110), - [aux_sym_preproc_elif_token1] = ACTIONS(2110), - [anon_sym_LPAREN2] = ACTIONS(2112), - [anon_sym_BANG] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2112), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_STAR] = ACTIONS(2112), - [anon_sym_CARET] = ACTIONS(2112), - [anon_sym_AMP] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_typedef] = ACTIONS(2110), - [anon_sym_extern] = ACTIONS(2110), - [anon_sym___attribute] = ACTIONS(2110), - [anon_sym___attribute__] = ACTIONS(2110), - [anon_sym___declspec] = ACTIONS(2110), - [anon_sym___cdecl] = ACTIONS(2110), - [anon_sym___clrcall] = ACTIONS(2110), - [anon_sym___stdcall] = ACTIONS(2110), - [anon_sym___fastcall] = ACTIONS(2110), - [anon_sym___thiscall] = ACTIONS(2110), - [anon_sym___vectorcall] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(2112), - [anon_sym_static] = ACTIONS(2110), - [anon_sym_auto] = ACTIONS(2110), - [anon_sym_register] = ACTIONS(2110), - [anon_sym_inline] = ACTIONS(2110), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2110), - [anon_sym_const] = ACTIONS(2110), - [anon_sym_volatile] = ACTIONS(2110), - [anon_sym_restrict] = ACTIONS(2110), - [anon_sym__Atomic] = ACTIONS(2110), - [anon_sym_in] = ACTIONS(2110), - [anon_sym_out] = ACTIONS(2110), - [anon_sym_inout] = ACTIONS(2110), - [anon_sym_bycopy] = ACTIONS(2110), - [anon_sym_byref] = ACTIONS(2110), - [anon_sym_oneway] = ACTIONS(2110), - [anon_sym__Nullable] = ACTIONS(2110), - [anon_sym__Nonnull] = ACTIONS(2110), - [anon_sym__Nullable_result] = ACTIONS(2110), - [anon_sym__Null_unspecified] = ACTIONS(2110), - [anon_sym___autoreleasing] = ACTIONS(2110), - [anon_sym___nullable] = ACTIONS(2110), - [anon_sym___nonnull] = ACTIONS(2110), - [anon_sym___strong] = ACTIONS(2110), - [anon_sym___weak] = ACTIONS(2110), - [anon_sym___bridge] = ACTIONS(2110), - [anon_sym___bridge_transfer] = ACTIONS(2110), - [anon_sym___bridge_retained] = ACTIONS(2110), - [anon_sym___unsafe_unretained] = ACTIONS(2110), - [anon_sym___block] = ACTIONS(2110), - [anon_sym___kindof] = ACTIONS(2110), - [anon_sym___unused] = ACTIONS(2110), - [anon_sym__Complex] = ACTIONS(2110), - [anon_sym___complex] = ACTIONS(2110), - [anon_sym_IBOutlet] = ACTIONS(2110), - [anon_sym_IBInspectable] = ACTIONS(2110), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2110), - [anon_sym_signed] = ACTIONS(2110), - [anon_sym_unsigned] = ACTIONS(2110), - [anon_sym_long] = ACTIONS(2110), - [anon_sym_short] = ACTIONS(2110), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_enum] = ACTIONS(2110), - [anon_sym_NS_ENUM] = ACTIONS(2110), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2110), - [anon_sym_NS_OPTIONS] = ACTIONS(2110), - [anon_sym_struct] = ACTIONS(2110), - [anon_sym_union] = ACTIONS(2110), - [anon_sym_if] = ACTIONS(2110), - [anon_sym_switch] = ACTIONS(2110), - [anon_sym_case] = ACTIONS(2110), - [anon_sym_default] = ACTIONS(2110), - [anon_sym_while] = ACTIONS(2110), - [anon_sym_do] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(2110), - [anon_sym_return] = ACTIONS(2110), - [anon_sym_break] = ACTIONS(2110), - [anon_sym_continue] = ACTIONS(2110), - [anon_sym_goto] = ACTIONS(2110), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2110), - [sym_number_literal] = ACTIONS(2112), - [anon_sym_L_SQUOTE] = ACTIONS(2112), - [anon_sym_u_SQUOTE] = ACTIONS(2112), - [anon_sym_U_SQUOTE] = ACTIONS(2112), - [anon_sym_u8_SQUOTE] = ACTIONS(2112), - [anon_sym_SQUOTE] = ACTIONS(2112), - [anon_sym_L_DQUOTE] = ACTIONS(2112), - [anon_sym_u_DQUOTE] = ACTIONS(2112), - [anon_sym_U_DQUOTE] = ACTIONS(2112), - [anon_sym_u8_DQUOTE] = ACTIONS(2112), - [anon_sym_DQUOTE] = ACTIONS(2112), - [sym_true] = ACTIONS(2110), - [sym_false] = ACTIONS(2110), - [sym_null] = ACTIONS(2110), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2112), - [anon_sym_ATimport] = ACTIONS(2112), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2110), - [anon_sym_ATcompatibility_alias] = ACTIONS(2112), - [anon_sym_ATprotocol] = ACTIONS(2112), - [anon_sym_ATclass] = ACTIONS(2112), - [anon_sym_ATinterface] = ACTIONS(2112), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2110), - [sym_method_attribute_specifier] = ACTIONS(2110), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2110), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2110), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2110), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2110), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2110), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2110), - [anon_sym_NS_AVAILABLE] = ACTIONS(2110), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2110), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2110), - [anon_sym_API_AVAILABLE] = ACTIONS(2110), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2110), - [anon_sym_API_DEPRECATED] = ACTIONS(2110), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2110), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2110), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2110), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2110), - [anon_sym___deprecated_msg] = ACTIONS(2110), - [anon_sym___deprecated_enum_msg] = ACTIONS(2110), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2110), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2110), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2110), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2110), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2110), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2110), - [anon_sym_ATimplementation] = ACTIONS(2112), - [anon_sym_typeof] = ACTIONS(2110), - [anon_sym___typeof] = ACTIONS(2110), - [anon_sym___typeof__] = ACTIONS(2110), - [sym_self] = ACTIONS(2110), - [sym_super] = ACTIONS(2110), - [sym_nil] = ACTIONS(2110), - [sym_id] = ACTIONS(2110), - [sym_instancetype] = ACTIONS(2110), - [sym_Class] = ACTIONS(2110), - [sym_SEL] = ACTIONS(2110), - [sym_IMP] = ACTIONS(2110), - [sym_BOOL] = ACTIONS(2110), - [sym_auto] = ACTIONS(2110), - [anon_sym_ATautoreleasepool] = ACTIONS(2112), - [anon_sym_ATsynchronized] = ACTIONS(2112), - [anon_sym_ATtry] = ACTIONS(2112), - [anon_sym_ATthrow] = ACTIONS(2112), - [anon_sym_ATselector] = ACTIONS(2112), - [anon_sym_ATencode] = ACTIONS(2112), - [anon_sym_AT] = ACTIONS(2110), - [sym_YES] = ACTIONS(2110), - [sym_NO] = ACTIONS(2110), - [anon_sym___builtin_available] = ACTIONS(2110), - [anon_sym_ATavailable] = ACTIONS(2112), - [anon_sym_va_arg] = ACTIONS(2110), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [819] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [aux_sym_preproc_else_token1] = ACTIONS(2078), - [aux_sym_preproc_elif_token1] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [820] = { - [sym_identifier] = ACTIONS(2114), - [aux_sym_preproc_include_token1] = ACTIONS(2116), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2114), - [aux_sym_preproc_if_token2] = ACTIONS(2114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2114), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2114), - [aux_sym_preproc_else_token1] = ACTIONS(2114), - [aux_sym_preproc_elif_token1] = ACTIONS(2114), - [anon_sym_LPAREN2] = ACTIONS(2116), - [anon_sym_BANG] = ACTIONS(2116), - [anon_sym_TILDE] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2114), - [anon_sym_PLUS] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2116), - [anon_sym_CARET] = ACTIONS(2116), - [anon_sym_AMP] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_typedef] = ACTIONS(2114), - [anon_sym_extern] = ACTIONS(2114), - [anon_sym___attribute] = ACTIONS(2114), - [anon_sym___attribute__] = ACTIONS(2114), - [anon_sym___declspec] = ACTIONS(2114), - [anon_sym___cdecl] = ACTIONS(2114), - [anon_sym___clrcall] = ACTIONS(2114), - [anon_sym___stdcall] = ACTIONS(2114), - [anon_sym___fastcall] = ACTIONS(2114), - [anon_sym___thiscall] = ACTIONS(2114), - [anon_sym___vectorcall] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2116), - [anon_sym_LBRACK] = ACTIONS(2116), - [anon_sym_static] = ACTIONS(2114), - [anon_sym_auto] = ACTIONS(2114), - [anon_sym_register] = ACTIONS(2114), - [anon_sym_inline] = ACTIONS(2114), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2114), - [anon_sym_const] = ACTIONS(2114), - [anon_sym_volatile] = ACTIONS(2114), - [anon_sym_restrict] = ACTIONS(2114), - [anon_sym__Atomic] = ACTIONS(2114), - [anon_sym_in] = ACTIONS(2114), - [anon_sym_out] = ACTIONS(2114), - [anon_sym_inout] = ACTIONS(2114), - [anon_sym_bycopy] = ACTIONS(2114), - [anon_sym_byref] = ACTIONS(2114), - [anon_sym_oneway] = ACTIONS(2114), - [anon_sym__Nullable] = ACTIONS(2114), - [anon_sym__Nonnull] = ACTIONS(2114), - [anon_sym__Nullable_result] = ACTIONS(2114), - [anon_sym__Null_unspecified] = ACTIONS(2114), - [anon_sym___autoreleasing] = ACTIONS(2114), - [anon_sym___nullable] = ACTIONS(2114), - [anon_sym___nonnull] = ACTIONS(2114), - [anon_sym___strong] = ACTIONS(2114), - [anon_sym___weak] = ACTIONS(2114), - [anon_sym___bridge] = ACTIONS(2114), - [anon_sym___bridge_transfer] = ACTIONS(2114), - [anon_sym___bridge_retained] = ACTIONS(2114), - [anon_sym___unsafe_unretained] = ACTIONS(2114), - [anon_sym___block] = ACTIONS(2114), - [anon_sym___kindof] = ACTIONS(2114), - [anon_sym___unused] = ACTIONS(2114), - [anon_sym__Complex] = ACTIONS(2114), - [anon_sym___complex] = ACTIONS(2114), - [anon_sym_IBOutlet] = ACTIONS(2114), - [anon_sym_IBInspectable] = ACTIONS(2114), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2114), - [anon_sym_signed] = ACTIONS(2114), - [anon_sym_unsigned] = ACTIONS(2114), - [anon_sym_long] = ACTIONS(2114), - [anon_sym_short] = ACTIONS(2114), - [sym_primitive_type] = ACTIONS(2114), - [anon_sym_enum] = ACTIONS(2114), - [anon_sym_NS_ENUM] = ACTIONS(2114), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2114), - [anon_sym_NS_OPTIONS] = ACTIONS(2114), - [anon_sym_struct] = ACTIONS(2114), - [anon_sym_union] = ACTIONS(2114), - [anon_sym_if] = ACTIONS(2114), - [anon_sym_switch] = ACTIONS(2114), - [anon_sym_case] = ACTIONS(2114), - [anon_sym_default] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_return] = ACTIONS(2114), - [anon_sym_break] = ACTIONS(2114), - [anon_sym_continue] = ACTIONS(2114), - [anon_sym_goto] = ACTIONS(2114), - [anon_sym_DASH_DASH] = ACTIONS(2116), - [anon_sym_PLUS_PLUS] = ACTIONS(2116), - [anon_sym_sizeof] = ACTIONS(2114), - [sym_number_literal] = ACTIONS(2116), - [anon_sym_L_SQUOTE] = ACTIONS(2116), - [anon_sym_u_SQUOTE] = ACTIONS(2116), - [anon_sym_U_SQUOTE] = ACTIONS(2116), - [anon_sym_u8_SQUOTE] = ACTIONS(2116), - [anon_sym_SQUOTE] = ACTIONS(2116), - [anon_sym_L_DQUOTE] = ACTIONS(2116), - [anon_sym_u_DQUOTE] = ACTIONS(2116), - [anon_sym_U_DQUOTE] = ACTIONS(2116), - [anon_sym_u8_DQUOTE] = ACTIONS(2116), - [anon_sym_DQUOTE] = ACTIONS(2116), - [sym_true] = ACTIONS(2114), - [sym_false] = ACTIONS(2114), - [sym_null] = ACTIONS(2114), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2116), - [anon_sym_ATimport] = ACTIONS(2116), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2114), - [anon_sym_ATcompatibility_alias] = ACTIONS(2116), - [anon_sym_ATprotocol] = ACTIONS(2116), - [anon_sym_ATclass] = ACTIONS(2116), - [anon_sym_ATinterface] = ACTIONS(2116), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2114), - [sym_method_attribute_specifier] = ACTIONS(2114), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2114), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2114), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2114), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2114), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2114), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2114), - [anon_sym_NS_AVAILABLE] = ACTIONS(2114), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2114), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_API_AVAILABLE] = ACTIONS(2114), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2114), - [anon_sym_API_DEPRECATED] = ACTIONS(2114), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2114), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2114), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2114), - [anon_sym___deprecated_msg] = ACTIONS(2114), - [anon_sym___deprecated_enum_msg] = ACTIONS(2114), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2114), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2114), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2114), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2114), - [anon_sym_ATimplementation] = ACTIONS(2116), - [anon_sym_typeof] = ACTIONS(2114), - [anon_sym___typeof] = ACTIONS(2114), - [anon_sym___typeof__] = ACTIONS(2114), - [sym_self] = ACTIONS(2114), - [sym_super] = ACTIONS(2114), - [sym_nil] = ACTIONS(2114), - [sym_id] = ACTIONS(2114), - [sym_instancetype] = ACTIONS(2114), - [sym_Class] = ACTIONS(2114), - [sym_SEL] = ACTIONS(2114), - [sym_IMP] = ACTIONS(2114), - [sym_BOOL] = ACTIONS(2114), - [sym_auto] = ACTIONS(2114), - [anon_sym_ATautoreleasepool] = ACTIONS(2116), - [anon_sym_ATsynchronized] = ACTIONS(2116), - [anon_sym_ATtry] = ACTIONS(2116), - [anon_sym_ATthrow] = ACTIONS(2116), - [anon_sym_ATselector] = ACTIONS(2116), - [anon_sym_ATencode] = ACTIONS(2116), - [anon_sym_AT] = ACTIONS(2114), - [sym_YES] = ACTIONS(2114), - [sym_NO] = ACTIONS(2114), - [anon_sym___builtin_available] = ACTIONS(2114), - [anon_sym_ATavailable] = ACTIONS(2116), - [anon_sym_va_arg] = ACTIONS(2114), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [821] = { - [sym_identifier] = ACTIONS(2114), - [aux_sym_preproc_include_token1] = ACTIONS(2116), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2114), - [aux_sym_preproc_if_token2] = ACTIONS(2114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2114), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2114), - [aux_sym_preproc_else_token1] = ACTIONS(2114), - [aux_sym_preproc_elif_token1] = ACTIONS(2114), - [anon_sym_LPAREN2] = ACTIONS(2116), - [anon_sym_BANG] = ACTIONS(2116), - [anon_sym_TILDE] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2114), - [anon_sym_PLUS] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2116), - [anon_sym_CARET] = ACTIONS(2116), - [anon_sym_AMP] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_typedef] = ACTIONS(2114), - [anon_sym_extern] = ACTIONS(2114), - [anon_sym___attribute] = ACTIONS(2114), - [anon_sym___attribute__] = ACTIONS(2114), - [anon_sym___declspec] = ACTIONS(2114), - [anon_sym___cdecl] = ACTIONS(2114), - [anon_sym___clrcall] = ACTIONS(2114), - [anon_sym___stdcall] = ACTIONS(2114), - [anon_sym___fastcall] = ACTIONS(2114), - [anon_sym___thiscall] = ACTIONS(2114), - [anon_sym___vectorcall] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2116), - [anon_sym_LBRACK] = ACTIONS(2116), - [anon_sym_static] = ACTIONS(2114), - [anon_sym_auto] = ACTIONS(2114), - [anon_sym_register] = ACTIONS(2114), - [anon_sym_inline] = ACTIONS(2114), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2114), - [anon_sym_const] = ACTIONS(2114), - [anon_sym_volatile] = ACTIONS(2114), - [anon_sym_restrict] = ACTIONS(2114), - [anon_sym__Atomic] = ACTIONS(2114), - [anon_sym_in] = ACTIONS(2114), - [anon_sym_out] = ACTIONS(2114), - [anon_sym_inout] = ACTIONS(2114), - [anon_sym_bycopy] = ACTIONS(2114), - [anon_sym_byref] = ACTIONS(2114), - [anon_sym_oneway] = ACTIONS(2114), - [anon_sym__Nullable] = ACTIONS(2114), - [anon_sym__Nonnull] = ACTIONS(2114), - [anon_sym__Nullable_result] = ACTIONS(2114), - [anon_sym__Null_unspecified] = ACTIONS(2114), - [anon_sym___autoreleasing] = ACTIONS(2114), - [anon_sym___nullable] = ACTIONS(2114), - [anon_sym___nonnull] = ACTIONS(2114), - [anon_sym___strong] = ACTIONS(2114), - [anon_sym___weak] = ACTIONS(2114), - [anon_sym___bridge] = ACTIONS(2114), - [anon_sym___bridge_transfer] = ACTIONS(2114), - [anon_sym___bridge_retained] = ACTIONS(2114), - [anon_sym___unsafe_unretained] = ACTIONS(2114), - [anon_sym___block] = ACTIONS(2114), - [anon_sym___kindof] = ACTIONS(2114), - [anon_sym___unused] = ACTIONS(2114), - [anon_sym__Complex] = ACTIONS(2114), - [anon_sym___complex] = ACTIONS(2114), - [anon_sym_IBOutlet] = ACTIONS(2114), - [anon_sym_IBInspectable] = ACTIONS(2114), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2114), - [anon_sym_signed] = ACTIONS(2114), - [anon_sym_unsigned] = ACTIONS(2114), - [anon_sym_long] = ACTIONS(2114), - [anon_sym_short] = ACTIONS(2114), - [sym_primitive_type] = ACTIONS(2114), - [anon_sym_enum] = ACTIONS(2114), - [anon_sym_NS_ENUM] = ACTIONS(2114), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2114), - [anon_sym_NS_OPTIONS] = ACTIONS(2114), - [anon_sym_struct] = ACTIONS(2114), - [anon_sym_union] = ACTIONS(2114), - [anon_sym_if] = ACTIONS(2114), - [anon_sym_switch] = ACTIONS(2114), - [anon_sym_case] = ACTIONS(2114), - [anon_sym_default] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_return] = ACTIONS(2114), - [anon_sym_break] = ACTIONS(2114), - [anon_sym_continue] = ACTIONS(2114), - [anon_sym_goto] = ACTIONS(2114), - [anon_sym_DASH_DASH] = ACTIONS(2116), - [anon_sym_PLUS_PLUS] = ACTIONS(2116), - [anon_sym_sizeof] = ACTIONS(2114), - [sym_number_literal] = ACTIONS(2116), - [anon_sym_L_SQUOTE] = ACTIONS(2116), - [anon_sym_u_SQUOTE] = ACTIONS(2116), - [anon_sym_U_SQUOTE] = ACTIONS(2116), - [anon_sym_u8_SQUOTE] = ACTIONS(2116), - [anon_sym_SQUOTE] = ACTIONS(2116), - [anon_sym_L_DQUOTE] = ACTIONS(2116), - [anon_sym_u_DQUOTE] = ACTIONS(2116), - [anon_sym_U_DQUOTE] = ACTIONS(2116), - [anon_sym_u8_DQUOTE] = ACTIONS(2116), - [anon_sym_DQUOTE] = ACTIONS(2116), - [sym_true] = ACTIONS(2114), - [sym_false] = ACTIONS(2114), - [sym_null] = ACTIONS(2114), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2116), - [anon_sym_ATimport] = ACTIONS(2116), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2114), - [anon_sym_ATcompatibility_alias] = ACTIONS(2116), - [anon_sym_ATprotocol] = ACTIONS(2116), - [anon_sym_ATclass] = ACTIONS(2116), - [anon_sym_ATinterface] = ACTIONS(2116), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2114), - [sym_method_attribute_specifier] = ACTIONS(2114), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2114), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2114), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2114), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2114), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2114), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2114), - [anon_sym_NS_AVAILABLE] = ACTIONS(2114), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2114), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_API_AVAILABLE] = ACTIONS(2114), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2114), - [anon_sym_API_DEPRECATED] = ACTIONS(2114), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2114), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2114), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2114), - [anon_sym___deprecated_msg] = ACTIONS(2114), - [anon_sym___deprecated_enum_msg] = ACTIONS(2114), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2114), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2114), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2114), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2114), - [anon_sym_ATimplementation] = ACTIONS(2116), - [anon_sym_typeof] = ACTIONS(2114), - [anon_sym___typeof] = ACTIONS(2114), - [anon_sym___typeof__] = ACTIONS(2114), - [sym_self] = ACTIONS(2114), - [sym_super] = ACTIONS(2114), - [sym_nil] = ACTIONS(2114), - [sym_id] = ACTIONS(2114), - [sym_instancetype] = ACTIONS(2114), - [sym_Class] = ACTIONS(2114), - [sym_SEL] = ACTIONS(2114), - [sym_IMP] = ACTIONS(2114), - [sym_BOOL] = ACTIONS(2114), - [sym_auto] = ACTIONS(2114), - [anon_sym_ATautoreleasepool] = ACTIONS(2116), - [anon_sym_ATsynchronized] = ACTIONS(2116), - [anon_sym_ATtry] = ACTIONS(2116), - [anon_sym_ATthrow] = ACTIONS(2116), - [anon_sym_ATselector] = ACTIONS(2116), - [anon_sym_ATencode] = ACTIONS(2116), - [anon_sym_AT] = ACTIONS(2114), - [sym_YES] = ACTIONS(2114), - [sym_NO] = ACTIONS(2114), - [anon_sym___builtin_available] = ACTIONS(2114), - [anon_sym_ATavailable] = ACTIONS(2116), - [anon_sym_va_arg] = ACTIONS(2114), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [822] = { - [sym_identifier] = ACTIONS(2118), - [aux_sym_preproc_include_token1] = ACTIONS(2120), - [aux_sym_preproc_def_token1] = ACTIONS(2120), - [aux_sym_preproc_if_token1] = ACTIONS(2118), - [aux_sym_preproc_if_token2] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2118), - [aux_sym_preproc_else_token1] = ACTIONS(2118), - [aux_sym_preproc_elif_token1] = ACTIONS(2118), - [anon_sym_LPAREN2] = ACTIONS(2120), - [anon_sym_BANG] = ACTIONS(2120), - [anon_sym_TILDE] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2118), - [anon_sym_PLUS] = ACTIONS(2118), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_CARET] = ACTIONS(2120), - [anon_sym_AMP] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_typedef] = ACTIONS(2118), - [anon_sym_extern] = ACTIONS(2118), - [anon_sym___attribute] = ACTIONS(2118), - [anon_sym___attribute__] = ACTIONS(2118), - [anon_sym___declspec] = ACTIONS(2118), - [anon_sym___cdecl] = ACTIONS(2118), - [anon_sym___clrcall] = ACTIONS(2118), - [anon_sym___stdcall] = ACTIONS(2118), - [anon_sym___fastcall] = ACTIONS(2118), - [anon_sym___thiscall] = ACTIONS(2118), - [anon_sym___vectorcall] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_LBRACK] = ACTIONS(2120), - [anon_sym_static] = ACTIONS(2118), - [anon_sym_auto] = ACTIONS(2118), - [anon_sym_register] = ACTIONS(2118), - [anon_sym_inline] = ACTIONS(2118), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2118), - [anon_sym_const] = ACTIONS(2118), - [anon_sym_volatile] = ACTIONS(2118), - [anon_sym_restrict] = ACTIONS(2118), - [anon_sym__Atomic] = ACTIONS(2118), - [anon_sym_in] = ACTIONS(2118), - [anon_sym_out] = ACTIONS(2118), - [anon_sym_inout] = ACTIONS(2118), - [anon_sym_bycopy] = ACTIONS(2118), - [anon_sym_byref] = ACTIONS(2118), - [anon_sym_oneway] = ACTIONS(2118), - [anon_sym__Nullable] = ACTIONS(2118), - [anon_sym__Nonnull] = ACTIONS(2118), - [anon_sym__Nullable_result] = ACTIONS(2118), - [anon_sym__Null_unspecified] = ACTIONS(2118), - [anon_sym___autoreleasing] = ACTIONS(2118), - [anon_sym___nullable] = ACTIONS(2118), - [anon_sym___nonnull] = ACTIONS(2118), - [anon_sym___strong] = ACTIONS(2118), - [anon_sym___weak] = ACTIONS(2118), - [anon_sym___bridge] = ACTIONS(2118), - [anon_sym___bridge_transfer] = ACTIONS(2118), - [anon_sym___bridge_retained] = ACTIONS(2118), - [anon_sym___unsafe_unretained] = ACTIONS(2118), - [anon_sym___block] = ACTIONS(2118), - [anon_sym___kindof] = ACTIONS(2118), - [anon_sym___unused] = ACTIONS(2118), - [anon_sym__Complex] = ACTIONS(2118), - [anon_sym___complex] = ACTIONS(2118), - [anon_sym_IBOutlet] = ACTIONS(2118), - [anon_sym_IBInspectable] = ACTIONS(2118), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2118), - [anon_sym_signed] = ACTIONS(2118), - [anon_sym_unsigned] = ACTIONS(2118), - [anon_sym_long] = ACTIONS(2118), - [anon_sym_short] = ACTIONS(2118), - [sym_primitive_type] = ACTIONS(2118), - [anon_sym_enum] = ACTIONS(2118), - [anon_sym_NS_ENUM] = ACTIONS(2118), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2118), - [anon_sym_NS_OPTIONS] = ACTIONS(2118), - [anon_sym_struct] = ACTIONS(2118), - [anon_sym_union] = ACTIONS(2118), - [anon_sym_if] = ACTIONS(2118), - [anon_sym_switch] = ACTIONS(2118), - [anon_sym_case] = ACTIONS(2118), - [anon_sym_default] = ACTIONS(2118), - [anon_sym_while] = ACTIONS(2118), - [anon_sym_do] = ACTIONS(2118), - [anon_sym_for] = ACTIONS(2118), - [anon_sym_return] = ACTIONS(2118), - [anon_sym_break] = ACTIONS(2118), - [anon_sym_continue] = ACTIONS(2118), - [anon_sym_goto] = ACTIONS(2118), - [anon_sym_DASH_DASH] = ACTIONS(2120), - [anon_sym_PLUS_PLUS] = ACTIONS(2120), - [anon_sym_sizeof] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2120), - [anon_sym_u_SQUOTE] = ACTIONS(2120), - [anon_sym_U_SQUOTE] = ACTIONS(2120), - [anon_sym_u8_SQUOTE] = ACTIONS(2120), - [anon_sym_SQUOTE] = ACTIONS(2120), - [anon_sym_L_DQUOTE] = ACTIONS(2120), - [anon_sym_u_DQUOTE] = ACTIONS(2120), - [anon_sym_U_DQUOTE] = ACTIONS(2120), - [anon_sym_u8_DQUOTE] = ACTIONS(2120), - [anon_sym_DQUOTE] = ACTIONS(2120), - [sym_true] = ACTIONS(2118), - [sym_false] = ACTIONS(2118), - [sym_null] = ACTIONS(2118), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2120), - [anon_sym_ATimport] = ACTIONS(2120), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2118), - [anon_sym_ATcompatibility_alias] = ACTIONS(2120), - [anon_sym_ATprotocol] = ACTIONS(2120), - [anon_sym_ATclass] = ACTIONS(2120), - [anon_sym_ATinterface] = ACTIONS(2120), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2118), - [sym_method_attribute_specifier] = ACTIONS(2118), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2118), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2118), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2118), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2118), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2118), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2118), - [anon_sym_NS_AVAILABLE] = ACTIONS(2118), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2118), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2118), - [anon_sym_API_AVAILABLE] = ACTIONS(2118), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2118), - [anon_sym_API_DEPRECATED] = ACTIONS(2118), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2118), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2118), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2118), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2118), - [anon_sym___deprecated_msg] = ACTIONS(2118), - [anon_sym___deprecated_enum_msg] = ACTIONS(2118), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2118), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2118), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2118), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2118), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2118), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2118), - [anon_sym_ATimplementation] = ACTIONS(2120), - [anon_sym_typeof] = ACTIONS(2118), - [anon_sym___typeof] = ACTIONS(2118), - [anon_sym___typeof__] = ACTIONS(2118), - [sym_self] = ACTIONS(2118), - [sym_super] = ACTIONS(2118), - [sym_nil] = ACTIONS(2118), - [sym_id] = ACTIONS(2118), - [sym_instancetype] = ACTIONS(2118), - [sym_Class] = ACTIONS(2118), - [sym_SEL] = ACTIONS(2118), - [sym_IMP] = ACTIONS(2118), - [sym_BOOL] = ACTIONS(2118), - [sym_auto] = ACTIONS(2118), - [anon_sym_ATautoreleasepool] = ACTIONS(2120), - [anon_sym_ATsynchronized] = ACTIONS(2120), - [anon_sym_ATtry] = ACTIONS(2120), - [anon_sym_ATthrow] = ACTIONS(2120), - [anon_sym_ATselector] = ACTIONS(2120), - [anon_sym_ATencode] = ACTIONS(2120), - [anon_sym_AT] = ACTIONS(2118), - [sym_YES] = ACTIONS(2118), - [sym_NO] = ACTIONS(2118), - [anon_sym___builtin_available] = ACTIONS(2118), - [anon_sym_ATavailable] = ACTIONS(2120), - [anon_sym_va_arg] = ACTIONS(2118), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [823] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [aux_sym_preproc_else_token1] = ACTIONS(2122), - [aux_sym_preproc_elif_token1] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [824] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [aux_sym_preproc_else_token1] = ACTIONS(2122), - [aux_sym_preproc_elif_token1] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [825] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [aux_sym_preproc_else_token1] = ACTIONS(2122), - [aux_sym_preproc_elif_token1] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [826] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [aux_sym_preproc_else_token1] = ACTIONS(2122), - [aux_sym_preproc_elif_token1] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [827] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [aux_sym_preproc_else_token1] = ACTIONS(2122), - [aux_sym_preproc_elif_token1] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [828] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [aux_sym_preproc_else_token1] = ACTIONS(2122), - [aux_sym_preproc_elif_token1] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [829] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [aux_sym_preproc_else_token1] = ACTIONS(2122), - [aux_sym_preproc_elif_token1] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [830] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [aux_sym_preproc_else_token1] = ACTIONS(2122), - [aux_sym_preproc_elif_token1] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [831] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [aux_sym_preproc_else_token1] = ACTIONS(2122), - [aux_sym_preproc_elif_token1] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [832] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [aux_sym_preproc_else_token1] = ACTIONS(2122), - [aux_sym_preproc_elif_token1] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [833] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [aux_sym_preproc_else_token1] = ACTIONS(2122), - [aux_sym_preproc_elif_token1] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [834] = { - [sym_identifier] = ACTIONS(2126), - [aux_sym_preproc_include_token1] = ACTIONS(2128), - [aux_sym_preproc_def_token1] = ACTIONS(2128), - [aux_sym_preproc_if_token1] = ACTIONS(2126), - [aux_sym_preproc_if_token2] = ACTIONS(2126), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2126), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2126), - [aux_sym_preproc_else_token1] = ACTIONS(2126), - [aux_sym_preproc_elif_token1] = ACTIONS(2126), - [anon_sym_LPAREN2] = ACTIONS(2128), - [anon_sym_BANG] = ACTIONS(2128), - [anon_sym_TILDE] = ACTIONS(2128), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2128), - [anon_sym_CARET] = ACTIONS(2128), - [anon_sym_AMP] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2128), - [anon_sym_typedef] = ACTIONS(2126), - [anon_sym_extern] = ACTIONS(2126), - [anon_sym___attribute] = ACTIONS(2126), - [anon_sym___attribute__] = ACTIONS(2126), - [anon_sym___declspec] = ACTIONS(2126), - [anon_sym___cdecl] = ACTIONS(2126), - [anon_sym___clrcall] = ACTIONS(2126), - [anon_sym___stdcall] = ACTIONS(2126), - [anon_sym___fastcall] = ACTIONS(2126), - [anon_sym___thiscall] = ACTIONS(2126), - [anon_sym___vectorcall] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_LBRACK] = ACTIONS(2128), - [anon_sym_static] = ACTIONS(2126), - [anon_sym_auto] = ACTIONS(2126), - [anon_sym_register] = ACTIONS(2126), - [anon_sym_inline] = ACTIONS(2126), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_volatile] = ACTIONS(2126), - [anon_sym_restrict] = ACTIONS(2126), - [anon_sym__Atomic] = ACTIONS(2126), - [anon_sym_in] = ACTIONS(2126), - [anon_sym_out] = ACTIONS(2126), - [anon_sym_inout] = ACTIONS(2126), - [anon_sym_bycopy] = ACTIONS(2126), - [anon_sym_byref] = ACTIONS(2126), - [anon_sym_oneway] = ACTIONS(2126), - [anon_sym__Nullable] = ACTIONS(2126), - [anon_sym__Nonnull] = ACTIONS(2126), - [anon_sym__Nullable_result] = ACTIONS(2126), - [anon_sym__Null_unspecified] = ACTIONS(2126), - [anon_sym___autoreleasing] = ACTIONS(2126), - [anon_sym___nullable] = ACTIONS(2126), - [anon_sym___nonnull] = ACTIONS(2126), - [anon_sym___strong] = ACTIONS(2126), - [anon_sym___weak] = ACTIONS(2126), - [anon_sym___bridge] = ACTIONS(2126), - [anon_sym___bridge_transfer] = ACTIONS(2126), - [anon_sym___bridge_retained] = ACTIONS(2126), - [anon_sym___unsafe_unretained] = ACTIONS(2126), - [anon_sym___block] = ACTIONS(2126), - [anon_sym___kindof] = ACTIONS(2126), - [anon_sym___unused] = ACTIONS(2126), - [anon_sym__Complex] = ACTIONS(2126), - [anon_sym___complex] = ACTIONS(2126), - [anon_sym_IBOutlet] = ACTIONS(2126), - [anon_sym_IBInspectable] = ACTIONS(2126), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2126), - [anon_sym_signed] = ACTIONS(2126), - [anon_sym_unsigned] = ACTIONS(2126), - [anon_sym_long] = ACTIONS(2126), - [anon_sym_short] = ACTIONS(2126), - [sym_primitive_type] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [anon_sym_NS_ENUM] = ACTIONS(2126), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2126), - [anon_sym_NS_OPTIONS] = ACTIONS(2126), - [anon_sym_struct] = ACTIONS(2126), - [anon_sym_union] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_case] = ACTIONS(2126), - [anon_sym_default] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_goto] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2128), - [anon_sym_PLUS_PLUS] = ACTIONS(2128), - [anon_sym_sizeof] = ACTIONS(2126), - [sym_number_literal] = ACTIONS(2128), - [anon_sym_L_SQUOTE] = ACTIONS(2128), - [anon_sym_u_SQUOTE] = ACTIONS(2128), - [anon_sym_U_SQUOTE] = ACTIONS(2128), - [anon_sym_u8_SQUOTE] = ACTIONS(2128), - [anon_sym_SQUOTE] = ACTIONS(2128), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2128), - [anon_sym_ATimport] = ACTIONS(2128), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2126), - [anon_sym_ATcompatibility_alias] = ACTIONS(2128), - [anon_sym_ATprotocol] = ACTIONS(2128), - [anon_sym_ATclass] = ACTIONS(2128), - [anon_sym_ATinterface] = ACTIONS(2128), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2126), - [sym_method_attribute_specifier] = ACTIONS(2126), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2126), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2126), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2126), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2126), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2126), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2126), - [anon_sym_NS_AVAILABLE] = ACTIONS(2126), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2126), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2126), - [anon_sym_API_AVAILABLE] = ACTIONS(2126), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2126), - [anon_sym_API_DEPRECATED] = ACTIONS(2126), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2126), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2126), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2126), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2126), - [anon_sym___deprecated_msg] = ACTIONS(2126), - [anon_sym___deprecated_enum_msg] = ACTIONS(2126), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2126), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2126), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2126), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2126), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2126), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2126), - [anon_sym_ATimplementation] = ACTIONS(2128), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym___typeof] = ACTIONS(2126), - [anon_sym___typeof__] = ACTIONS(2126), - [sym_self] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_nil] = ACTIONS(2126), - [sym_id] = ACTIONS(2126), - [sym_instancetype] = ACTIONS(2126), - [sym_Class] = ACTIONS(2126), - [sym_SEL] = ACTIONS(2126), - [sym_IMP] = ACTIONS(2126), - [sym_BOOL] = ACTIONS(2126), - [sym_auto] = ACTIONS(2126), - [anon_sym_ATautoreleasepool] = ACTIONS(2128), - [anon_sym_ATsynchronized] = ACTIONS(2128), - [anon_sym_ATtry] = ACTIONS(2128), - [anon_sym_ATthrow] = ACTIONS(2128), - [anon_sym_ATselector] = ACTIONS(2128), - [anon_sym_ATencode] = ACTIONS(2128), - [anon_sym_AT] = ACTIONS(2126), - [sym_YES] = ACTIONS(2126), - [sym_NO] = ACTIONS(2126), - [anon_sym___builtin_available] = ACTIONS(2126), - [anon_sym_ATavailable] = ACTIONS(2128), - [anon_sym_va_arg] = ACTIONS(2126), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [835] = { - [sym_identifier] = ACTIONS(2130), - [aux_sym_preproc_include_token1] = ACTIONS(2132), - [aux_sym_preproc_def_token1] = ACTIONS(2132), - [aux_sym_preproc_if_token1] = ACTIONS(2130), - [aux_sym_preproc_if_token2] = ACTIONS(2130), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2130), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2130), - [aux_sym_preproc_else_token1] = ACTIONS(2130), - [aux_sym_preproc_elif_token1] = ACTIONS(2130), - [anon_sym_LPAREN2] = ACTIONS(2132), - [anon_sym_BANG] = ACTIONS(2132), - [anon_sym_TILDE] = ACTIONS(2132), - [anon_sym_DASH] = ACTIONS(2130), - [anon_sym_PLUS] = ACTIONS(2130), - [anon_sym_STAR] = ACTIONS(2132), - [anon_sym_CARET] = ACTIONS(2132), - [anon_sym_AMP] = ACTIONS(2132), - [anon_sym_SEMI] = ACTIONS(2132), - [anon_sym_typedef] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2130), - [anon_sym___attribute] = ACTIONS(2130), - [anon_sym___attribute__] = ACTIONS(2130), - [anon_sym___declspec] = ACTIONS(2130), - [anon_sym___cdecl] = ACTIONS(2130), - [anon_sym___clrcall] = ACTIONS(2130), - [anon_sym___stdcall] = ACTIONS(2130), - [anon_sym___fastcall] = ACTIONS(2130), - [anon_sym___thiscall] = ACTIONS(2130), - [anon_sym___vectorcall] = ACTIONS(2130), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_LBRACK] = ACTIONS(2132), - [anon_sym_static] = ACTIONS(2130), - [anon_sym_auto] = ACTIONS(2130), - [anon_sym_register] = ACTIONS(2130), - [anon_sym_inline] = ACTIONS(2130), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2130), - [anon_sym_const] = ACTIONS(2130), - [anon_sym_volatile] = ACTIONS(2130), - [anon_sym_restrict] = ACTIONS(2130), - [anon_sym__Atomic] = ACTIONS(2130), - [anon_sym_in] = ACTIONS(2130), - [anon_sym_out] = ACTIONS(2130), - [anon_sym_inout] = ACTIONS(2130), - [anon_sym_bycopy] = ACTIONS(2130), - [anon_sym_byref] = ACTIONS(2130), - [anon_sym_oneway] = ACTIONS(2130), - [anon_sym__Nullable] = ACTIONS(2130), - [anon_sym__Nonnull] = ACTIONS(2130), - [anon_sym__Nullable_result] = ACTIONS(2130), - [anon_sym__Null_unspecified] = ACTIONS(2130), - [anon_sym___autoreleasing] = ACTIONS(2130), - [anon_sym___nullable] = ACTIONS(2130), - [anon_sym___nonnull] = ACTIONS(2130), - [anon_sym___strong] = ACTIONS(2130), - [anon_sym___weak] = ACTIONS(2130), - [anon_sym___bridge] = ACTIONS(2130), - [anon_sym___bridge_transfer] = ACTIONS(2130), - [anon_sym___bridge_retained] = ACTIONS(2130), - [anon_sym___unsafe_unretained] = ACTIONS(2130), - [anon_sym___block] = ACTIONS(2130), - [anon_sym___kindof] = ACTIONS(2130), - [anon_sym___unused] = ACTIONS(2130), - [anon_sym__Complex] = ACTIONS(2130), - [anon_sym___complex] = ACTIONS(2130), - [anon_sym_IBOutlet] = ACTIONS(2130), - [anon_sym_IBInspectable] = ACTIONS(2130), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2130), - [anon_sym_signed] = ACTIONS(2130), - [anon_sym_unsigned] = ACTIONS(2130), - [anon_sym_long] = ACTIONS(2130), - [anon_sym_short] = ACTIONS(2130), - [sym_primitive_type] = ACTIONS(2130), - [anon_sym_enum] = ACTIONS(2130), - [anon_sym_NS_ENUM] = ACTIONS(2130), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2130), - [anon_sym_NS_OPTIONS] = ACTIONS(2130), - [anon_sym_struct] = ACTIONS(2130), - [anon_sym_union] = ACTIONS(2130), - [anon_sym_if] = ACTIONS(2130), - [anon_sym_switch] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2130), - [anon_sym_default] = ACTIONS(2130), - [anon_sym_while] = ACTIONS(2130), - [anon_sym_do] = ACTIONS(2130), - [anon_sym_for] = ACTIONS(2130), - [anon_sym_return] = ACTIONS(2130), - [anon_sym_break] = ACTIONS(2130), - [anon_sym_continue] = ACTIONS(2130), - [anon_sym_goto] = ACTIONS(2130), - [anon_sym_DASH_DASH] = ACTIONS(2132), - [anon_sym_PLUS_PLUS] = ACTIONS(2132), - [anon_sym_sizeof] = ACTIONS(2130), - [sym_number_literal] = ACTIONS(2132), - [anon_sym_L_SQUOTE] = ACTIONS(2132), - [anon_sym_u_SQUOTE] = ACTIONS(2132), - [anon_sym_U_SQUOTE] = ACTIONS(2132), - [anon_sym_u8_SQUOTE] = ACTIONS(2132), - [anon_sym_SQUOTE] = ACTIONS(2132), - [anon_sym_L_DQUOTE] = ACTIONS(2132), - [anon_sym_u_DQUOTE] = ACTIONS(2132), - [anon_sym_U_DQUOTE] = ACTIONS(2132), - [anon_sym_u8_DQUOTE] = ACTIONS(2132), - [anon_sym_DQUOTE] = ACTIONS(2132), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [sym_null] = ACTIONS(2130), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2132), - [anon_sym_ATimport] = ACTIONS(2132), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2130), - [anon_sym_ATcompatibility_alias] = ACTIONS(2132), - [anon_sym_ATprotocol] = ACTIONS(2132), - [anon_sym_ATclass] = ACTIONS(2132), - [anon_sym_ATinterface] = ACTIONS(2132), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2130), - [sym_method_attribute_specifier] = ACTIONS(2130), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2130), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2130), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2130), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2130), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2130), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2130), - [anon_sym_NS_AVAILABLE] = ACTIONS(2130), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2130), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2130), - [anon_sym_API_AVAILABLE] = ACTIONS(2130), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2130), - [anon_sym_API_DEPRECATED] = ACTIONS(2130), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2130), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2130), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2130), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2130), - [anon_sym___deprecated_msg] = ACTIONS(2130), - [anon_sym___deprecated_enum_msg] = ACTIONS(2130), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2130), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2130), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2130), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2130), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2130), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2130), - [anon_sym_ATimplementation] = ACTIONS(2132), - [anon_sym_typeof] = ACTIONS(2130), - [anon_sym___typeof] = ACTIONS(2130), - [anon_sym___typeof__] = ACTIONS(2130), - [sym_self] = ACTIONS(2130), - [sym_super] = ACTIONS(2130), - [sym_nil] = ACTIONS(2130), - [sym_id] = ACTIONS(2130), - [sym_instancetype] = ACTIONS(2130), - [sym_Class] = ACTIONS(2130), - [sym_SEL] = ACTIONS(2130), - [sym_IMP] = ACTIONS(2130), - [sym_BOOL] = ACTIONS(2130), - [sym_auto] = ACTIONS(2130), - [anon_sym_ATautoreleasepool] = ACTIONS(2132), - [anon_sym_ATsynchronized] = ACTIONS(2132), - [anon_sym_ATtry] = ACTIONS(2132), - [anon_sym_ATthrow] = ACTIONS(2132), - [anon_sym_ATselector] = ACTIONS(2132), - [anon_sym_ATencode] = ACTIONS(2132), - [anon_sym_AT] = ACTIONS(2130), - [sym_YES] = ACTIONS(2130), - [sym_NO] = ACTIONS(2130), - [anon_sym___builtin_available] = ACTIONS(2130), - [anon_sym_ATavailable] = ACTIONS(2132), - [anon_sym_va_arg] = ACTIONS(2130), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [836] = { - [sym_identifier] = ACTIONS(2134), - [aux_sym_preproc_include_token1] = ACTIONS(2136), - [aux_sym_preproc_def_token1] = ACTIONS(2136), - [aux_sym_preproc_if_token1] = ACTIONS(2134), - [aux_sym_preproc_if_token2] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), - [aux_sym_preproc_else_token1] = ACTIONS(2134), - [aux_sym_preproc_elif_token1] = ACTIONS(2134), - [anon_sym_LPAREN2] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_typedef] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym___attribute] = ACTIONS(2134), - [anon_sym___attribute__] = ACTIONS(2134), - [anon_sym___declspec] = ACTIONS(2134), - [anon_sym___cdecl] = ACTIONS(2134), - [anon_sym___clrcall] = ACTIONS(2134), - [anon_sym___stdcall] = ACTIONS(2134), - [anon_sym___fastcall] = ACTIONS(2134), - [anon_sym___thiscall] = ACTIONS(2134), - [anon_sym___vectorcall] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_auto] = ACTIONS(2134), - [anon_sym_register] = ACTIONS(2134), - [anon_sym_inline] = ACTIONS(2134), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [anon_sym_volatile] = ACTIONS(2134), - [anon_sym_restrict] = ACTIONS(2134), - [anon_sym__Atomic] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [anon_sym_out] = ACTIONS(2134), - [anon_sym_inout] = ACTIONS(2134), - [anon_sym_bycopy] = ACTIONS(2134), - [anon_sym_byref] = ACTIONS(2134), - [anon_sym_oneway] = ACTIONS(2134), - [anon_sym__Nullable] = ACTIONS(2134), - [anon_sym__Nonnull] = ACTIONS(2134), - [anon_sym__Nullable_result] = ACTIONS(2134), - [anon_sym__Null_unspecified] = ACTIONS(2134), - [anon_sym___autoreleasing] = ACTIONS(2134), - [anon_sym___nullable] = ACTIONS(2134), - [anon_sym___nonnull] = ACTIONS(2134), - [anon_sym___strong] = ACTIONS(2134), - [anon_sym___weak] = ACTIONS(2134), - [anon_sym___bridge] = ACTIONS(2134), - [anon_sym___bridge_transfer] = ACTIONS(2134), - [anon_sym___bridge_retained] = ACTIONS(2134), - [anon_sym___unsafe_unretained] = ACTIONS(2134), - [anon_sym___block] = ACTIONS(2134), - [anon_sym___kindof] = ACTIONS(2134), - [anon_sym___unused] = ACTIONS(2134), - [anon_sym__Complex] = ACTIONS(2134), - [anon_sym___complex] = ACTIONS(2134), - [anon_sym_IBOutlet] = ACTIONS(2134), - [anon_sym_IBInspectable] = ACTIONS(2134), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2134), - [anon_sym_signed] = ACTIONS(2134), - [anon_sym_unsigned] = ACTIONS(2134), - [anon_sym_long] = ACTIONS(2134), - [anon_sym_short] = ACTIONS(2134), - [sym_primitive_type] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_NS_ENUM] = ACTIONS(2134), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2134), - [anon_sym_NS_OPTIONS] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(2134), - [anon_sym_union] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_switch] = ACTIONS(2134), - [anon_sym_case] = ACTIONS(2134), - [anon_sym_default] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_goto] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_PLUS_PLUS] = ACTIONS(2136), - [anon_sym_sizeof] = ACTIONS(2134), - [sym_number_literal] = ACTIONS(2136), - [anon_sym_L_SQUOTE] = ACTIONS(2136), - [anon_sym_u_SQUOTE] = ACTIONS(2136), - [anon_sym_U_SQUOTE] = ACTIONS(2136), - [anon_sym_u8_SQUOTE] = ACTIONS(2136), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_L_DQUOTE] = ACTIONS(2136), - [anon_sym_u_DQUOTE] = ACTIONS(2136), - [anon_sym_U_DQUOTE] = ACTIONS(2136), - [anon_sym_u8_DQUOTE] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [sym_null] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2136), - [anon_sym_ATimport] = ACTIONS(2136), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2134), - [anon_sym_ATcompatibility_alias] = ACTIONS(2136), - [anon_sym_ATprotocol] = ACTIONS(2136), - [anon_sym_ATclass] = ACTIONS(2136), - [anon_sym_ATinterface] = ACTIONS(2136), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2134), - [sym_method_attribute_specifier] = ACTIONS(2134), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2134), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE] = ACTIONS(2134), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_API_AVAILABLE] = ACTIONS(2134), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_API_DEPRECATED] = ACTIONS(2134), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2134), - [anon_sym___deprecated_msg] = ACTIONS(2134), - [anon_sym___deprecated_enum_msg] = ACTIONS(2134), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2134), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2134), - [anon_sym_ATimplementation] = ACTIONS(2136), - [anon_sym_typeof] = ACTIONS(2134), - [anon_sym___typeof] = ACTIONS(2134), - [anon_sym___typeof__] = ACTIONS(2134), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_nil] = ACTIONS(2134), - [sym_id] = ACTIONS(2134), - [sym_instancetype] = ACTIONS(2134), - [sym_Class] = ACTIONS(2134), - [sym_SEL] = ACTIONS(2134), - [sym_IMP] = ACTIONS(2134), - [sym_BOOL] = ACTIONS(2134), - [sym_auto] = ACTIONS(2134), - [anon_sym_ATautoreleasepool] = ACTIONS(2136), - [anon_sym_ATsynchronized] = ACTIONS(2136), - [anon_sym_ATtry] = ACTIONS(2136), - [anon_sym_ATthrow] = ACTIONS(2136), - [anon_sym_ATselector] = ACTIONS(2136), - [anon_sym_ATencode] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2134), - [sym_YES] = ACTIONS(2134), - [sym_NO] = ACTIONS(2134), - [anon_sym___builtin_available] = ACTIONS(2134), - [anon_sym_ATavailable] = ACTIONS(2136), - [anon_sym_va_arg] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [837] = { - [sym_identifier] = ACTIONS(2134), - [aux_sym_preproc_include_token1] = ACTIONS(2136), - [aux_sym_preproc_def_token1] = ACTIONS(2136), - [aux_sym_preproc_if_token1] = ACTIONS(2134), - [aux_sym_preproc_if_token2] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), - [aux_sym_preproc_else_token1] = ACTIONS(2134), - [aux_sym_preproc_elif_token1] = ACTIONS(2134), - [anon_sym_LPAREN2] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_typedef] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym___attribute] = ACTIONS(2134), - [anon_sym___attribute__] = ACTIONS(2134), - [anon_sym___declspec] = ACTIONS(2134), - [anon_sym___cdecl] = ACTIONS(2134), - [anon_sym___clrcall] = ACTIONS(2134), - [anon_sym___stdcall] = ACTIONS(2134), - [anon_sym___fastcall] = ACTIONS(2134), - [anon_sym___thiscall] = ACTIONS(2134), - [anon_sym___vectorcall] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_auto] = ACTIONS(2134), - [anon_sym_register] = ACTIONS(2134), - [anon_sym_inline] = ACTIONS(2134), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [anon_sym_volatile] = ACTIONS(2134), - [anon_sym_restrict] = ACTIONS(2134), - [anon_sym__Atomic] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [anon_sym_out] = ACTIONS(2134), - [anon_sym_inout] = ACTIONS(2134), - [anon_sym_bycopy] = ACTIONS(2134), - [anon_sym_byref] = ACTIONS(2134), - [anon_sym_oneway] = ACTIONS(2134), - [anon_sym__Nullable] = ACTIONS(2134), - [anon_sym__Nonnull] = ACTIONS(2134), - [anon_sym__Nullable_result] = ACTIONS(2134), - [anon_sym__Null_unspecified] = ACTIONS(2134), - [anon_sym___autoreleasing] = ACTIONS(2134), - [anon_sym___nullable] = ACTIONS(2134), - [anon_sym___nonnull] = ACTIONS(2134), - [anon_sym___strong] = ACTIONS(2134), - [anon_sym___weak] = ACTIONS(2134), - [anon_sym___bridge] = ACTIONS(2134), - [anon_sym___bridge_transfer] = ACTIONS(2134), - [anon_sym___bridge_retained] = ACTIONS(2134), - [anon_sym___unsafe_unretained] = ACTIONS(2134), - [anon_sym___block] = ACTIONS(2134), - [anon_sym___kindof] = ACTIONS(2134), - [anon_sym___unused] = ACTIONS(2134), - [anon_sym__Complex] = ACTIONS(2134), - [anon_sym___complex] = ACTIONS(2134), - [anon_sym_IBOutlet] = ACTIONS(2134), - [anon_sym_IBInspectable] = ACTIONS(2134), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2134), - [anon_sym_signed] = ACTIONS(2134), - [anon_sym_unsigned] = ACTIONS(2134), - [anon_sym_long] = ACTIONS(2134), - [anon_sym_short] = ACTIONS(2134), - [sym_primitive_type] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_NS_ENUM] = ACTIONS(2134), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2134), - [anon_sym_NS_OPTIONS] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(2134), - [anon_sym_union] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_switch] = ACTIONS(2134), - [anon_sym_case] = ACTIONS(2134), - [anon_sym_default] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_goto] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_PLUS_PLUS] = ACTIONS(2136), - [anon_sym_sizeof] = ACTIONS(2134), - [sym_number_literal] = ACTIONS(2136), - [anon_sym_L_SQUOTE] = ACTIONS(2136), - [anon_sym_u_SQUOTE] = ACTIONS(2136), - [anon_sym_U_SQUOTE] = ACTIONS(2136), - [anon_sym_u8_SQUOTE] = ACTIONS(2136), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_L_DQUOTE] = ACTIONS(2136), - [anon_sym_u_DQUOTE] = ACTIONS(2136), - [anon_sym_U_DQUOTE] = ACTIONS(2136), - [anon_sym_u8_DQUOTE] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [sym_null] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2136), - [anon_sym_ATimport] = ACTIONS(2136), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2134), - [anon_sym_ATcompatibility_alias] = ACTIONS(2136), - [anon_sym_ATprotocol] = ACTIONS(2136), - [anon_sym_ATclass] = ACTIONS(2136), - [anon_sym_ATinterface] = ACTIONS(2136), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2134), - [sym_method_attribute_specifier] = ACTIONS(2134), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2134), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE] = ACTIONS(2134), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_API_AVAILABLE] = ACTIONS(2134), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_API_DEPRECATED] = ACTIONS(2134), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2134), - [anon_sym___deprecated_msg] = ACTIONS(2134), - [anon_sym___deprecated_enum_msg] = ACTIONS(2134), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2134), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2134), - [anon_sym_ATimplementation] = ACTIONS(2136), - [anon_sym_typeof] = ACTIONS(2134), - [anon_sym___typeof] = ACTIONS(2134), - [anon_sym___typeof__] = ACTIONS(2134), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_nil] = ACTIONS(2134), - [sym_id] = ACTIONS(2134), - [sym_instancetype] = ACTIONS(2134), - [sym_Class] = ACTIONS(2134), - [sym_SEL] = ACTIONS(2134), - [sym_IMP] = ACTIONS(2134), - [sym_BOOL] = ACTIONS(2134), - [sym_auto] = ACTIONS(2134), - [anon_sym_ATautoreleasepool] = ACTIONS(2136), - [anon_sym_ATsynchronized] = ACTIONS(2136), - [anon_sym_ATtry] = ACTIONS(2136), - [anon_sym_ATthrow] = ACTIONS(2136), - [anon_sym_ATselector] = ACTIONS(2136), - [anon_sym_ATencode] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2134), - [sym_YES] = ACTIONS(2134), - [sym_NO] = ACTIONS(2134), - [anon_sym___builtin_available] = ACTIONS(2134), - [anon_sym_ATavailable] = ACTIONS(2136), - [anon_sym_va_arg] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [838] = { - [sym_identifier] = ACTIONS(2134), - [aux_sym_preproc_include_token1] = ACTIONS(2136), - [aux_sym_preproc_def_token1] = ACTIONS(2136), - [aux_sym_preproc_if_token1] = ACTIONS(2134), - [aux_sym_preproc_if_token2] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), - [aux_sym_preproc_else_token1] = ACTIONS(2134), - [aux_sym_preproc_elif_token1] = ACTIONS(2134), - [anon_sym_LPAREN2] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_typedef] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym___attribute] = ACTIONS(2134), - [anon_sym___attribute__] = ACTIONS(2134), - [anon_sym___declspec] = ACTIONS(2134), - [anon_sym___cdecl] = ACTIONS(2134), - [anon_sym___clrcall] = ACTIONS(2134), - [anon_sym___stdcall] = ACTIONS(2134), - [anon_sym___fastcall] = ACTIONS(2134), - [anon_sym___thiscall] = ACTIONS(2134), - [anon_sym___vectorcall] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_auto] = ACTIONS(2134), - [anon_sym_register] = ACTIONS(2134), - [anon_sym_inline] = ACTIONS(2134), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [anon_sym_volatile] = ACTIONS(2134), - [anon_sym_restrict] = ACTIONS(2134), - [anon_sym__Atomic] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [anon_sym_out] = ACTIONS(2134), - [anon_sym_inout] = ACTIONS(2134), - [anon_sym_bycopy] = ACTIONS(2134), - [anon_sym_byref] = ACTIONS(2134), - [anon_sym_oneway] = ACTIONS(2134), - [anon_sym__Nullable] = ACTIONS(2134), - [anon_sym__Nonnull] = ACTIONS(2134), - [anon_sym__Nullable_result] = ACTIONS(2134), - [anon_sym__Null_unspecified] = ACTIONS(2134), - [anon_sym___autoreleasing] = ACTIONS(2134), - [anon_sym___nullable] = ACTIONS(2134), - [anon_sym___nonnull] = ACTIONS(2134), - [anon_sym___strong] = ACTIONS(2134), - [anon_sym___weak] = ACTIONS(2134), - [anon_sym___bridge] = ACTIONS(2134), - [anon_sym___bridge_transfer] = ACTIONS(2134), - [anon_sym___bridge_retained] = ACTIONS(2134), - [anon_sym___unsafe_unretained] = ACTIONS(2134), - [anon_sym___block] = ACTIONS(2134), - [anon_sym___kindof] = ACTIONS(2134), - [anon_sym___unused] = ACTIONS(2134), - [anon_sym__Complex] = ACTIONS(2134), - [anon_sym___complex] = ACTIONS(2134), - [anon_sym_IBOutlet] = ACTIONS(2134), - [anon_sym_IBInspectable] = ACTIONS(2134), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2134), - [anon_sym_signed] = ACTIONS(2134), - [anon_sym_unsigned] = ACTIONS(2134), - [anon_sym_long] = ACTIONS(2134), - [anon_sym_short] = ACTIONS(2134), - [sym_primitive_type] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_NS_ENUM] = ACTIONS(2134), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2134), - [anon_sym_NS_OPTIONS] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(2134), - [anon_sym_union] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_switch] = ACTIONS(2134), - [anon_sym_case] = ACTIONS(2134), - [anon_sym_default] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_goto] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_PLUS_PLUS] = ACTIONS(2136), - [anon_sym_sizeof] = ACTIONS(2134), - [sym_number_literal] = ACTIONS(2136), - [anon_sym_L_SQUOTE] = ACTIONS(2136), - [anon_sym_u_SQUOTE] = ACTIONS(2136), - [anon_sym_U_SQUOTE] = ACTIONS(2136), - [anon_sym_u8_SQUOTE] = ACTIONS(2136), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_L_DQUOTE] = ACTIONS(2136), - [anon_sym_u_DQUOTE] = ACTIONS(2136), - [anon_sym_U_DQUOTE] = ACTIONS(2136), - [anon_sym_u8_DQUOTE] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [sym_null] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2136), - [anon_sym_ATimport] = ACTIONS(2136), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2134), - [anon_sym_ATcompatibility_alias] = ACTIONS(2136), - [anon_sym_ATprotocol] = ACTIONS(2136), - [anon_sym_ATclass] = ACTIONS(2136), - [anon_sym_ATinterface] = ACTIONS(2136), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2134), - [sym_method_attribute_specifier] = ACTIONS(2134), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2134), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE] = ACTIONS(2134), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_API_AVAILABLE] = ACTIONS(2134), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_API_DEPRECATED] = ACTIONS(2134), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2134), - [anon_sym___deprecated_msg] = ACTIONS(2134), - [anon_sym___deprecated_enum_msg] = ACTIONS(2134), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2134), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2134), - [anon_sym_ATimplementation] = ACTIONS(2136), - [anon_sym_typeof] = ACTIONS(2134), - [anon_sym___typeof] = ACTIONS(2134), - [anon_sym___typeof__] = ACTIONS(2134), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_nil] = ACTIONS(2134), - [sym_id] = ACTIONS(2134), - [sym_instancetype] = ACTIONS(2134), - [sym_Class] = ACTIONS(2134), - [sym_SEL] = ACTIONS(2134), - [sym_IMP] = ACTIONS(2134), - [sym_BOOL] = ACTIONS(2134), - [sym_auto] = ACTIONS(2134), - [anon_sym_ATautoreleasepool] = ACTIONS(2136), - [anon_sym_ATsynchronized] = ACTIONS(2136), - [anon_sym_ATtry] = ACTIONS(2136), - [anon_sym_ATthrow] = ACTIONS(2136), - [anon_sym_ATselector] = ACTIONS(2136), - [anon_sym_ATencode] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2134), - [sym_YES] = ACTIONS(2134), - [sym_NO] = ACTIONS(2134), - [anon_sym___builtin_available] = ACTIONS(2134), - [anon_sym_ATavailable] = ACTIONS(2136), - [anon_sym_va_arg] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [839] = { - [sym_identifier] = ACTIONS(2134), - [aux_sym_preproc_include_token1] = ACTIONS(2136), - [aux_sym_preproc_def_token1] = ACTIONS(2136), - [aux_sym_preproc_if_token1] = ACTIONS(2134), - [aux_sym_preproc_if_token2] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), - [aux_sym_preproc_else_token1] = ACTIONS(2134), - [aux_sym_preproc_elif_token1] = ACTIONS(2134), - [anon_sym_LPAREN2] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_typedef] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym___attribute] = ACTIONS(2134), - [anon_sym___attribute__] = ACTIONS(2134), - [anon_sym___declspec] = ACTIONS(2134), - [anon_sym___cdecl] = ACTIONS(2134), - [anon_sym___clrcall] = ACTIONS(2134), - [anon_sym___stdcall] = ACTIONS(2134), - [anon_sym___fastcall] = ACTIONS(2134), - [anon_sym___thiscall] = ACTIONS(2134), - [anon_sym___vectorcall] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_auto] = ACTIONS(2134), - [anon_sym_register] = ACTIONS(2134), - [anon_sym_inline] = ACTIONS(2134), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [anon_sym_volatile] = ACTIONS(2134), - [anon_sym_restrict] = ACTIONS(2134), - [anon_sym__Atomic] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [anon_sym_out] = ACTIONS(2134), - [anon_sym_inout] = ACTIONS(2134), - [anon_sym_bycopy] = ACTIONS(2134), - [anon_sym_byref] = ACTIONS(2134), - [anon_sym_oneway] = ACTIONS(2134), - [anon_sym__Nullable] = ACTIONS(2134), - [anon_sym__Nonnull] = ACTIONS(2134), - [anon_sym__Nullable_result] = ACTIONS(2134), - [anon_sym__Null_unspecified] = ACTIONS(2134), - [anon_sym___autoreleasing] = ACTIONS(2134), - [anon_sym___nullable] = ACTIONS(2134), - [anon_sym___nonnull] = ACTIONS(2134), - [anon_sym___strong] = ACTIONS(2134), - [anon_sym___weak] = ACTIONS(2134), - [anon_sym___bridge] = ACTIONS(2134), - [anon_sym___bridge_transfer] = ACTIONS(2134), - [anon_sym___bridge_retained] = ACTIONS(2134), - [anon_sym___unsafe_unretained] = ACTIONS(2134), - [anon_sym___block] = ACTIONS(2134), - [anon_sym___kindof] = ACTIONS(2134), - [anon_sym___unused] = ACTIONS(2134), - [anon_sym__Complex] = ACTIONS(2134), - [anon_sym___complex] = ACTIONS(2134), - [anon_sym_IBOutlet] = ACTIONS(2134), - [anon_sym_IBInspectable] = ACTIONS(2134), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2134), - [anon_sym_signed] = ACTIONS(2134), - [anon_sym_unsigned] = ACTIONS(2134), - [anon_sym_long] = ACTIONS(2134), - [anon_sym_short] = ACTIONS(2134), - [sym_primitive_type] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_NS_ENUM] = ACTIONS(2134), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2134), - [anon_sym_NS_OPTIONS] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(2134), - [anon_sym_union] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_switch] = ACTIONS(2134), - [anon_sym_case] = ACTIONS(2134), - [anon_sym_default] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_goto] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_PLUS_PLUS] = ACTIONS(2136), - [anon_sym_sizeof] = ACTIONS(2134), - [sym_number_literal] = ACTIONS(2136), - [anon_sym_L_SQUOTE] = ACTIONS(2136), - [anon_sym_u_SQUOTE] = ACTIONS(2136), - [anon_sym_U_SQUOTE] = ACTIONS(2136), - [anon_sym_u8_SQUOTE] = ACTIONS(2136), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_L_DQUOTE] = ACTIONS(2136), - [anon_sym_u_DQUOTE] = ACTIONS(2136), - [anon_sym_U_DQUOTE] = ACTIONS(2136), - [anon_sym_u8_DQUOTE] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [sym_null] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2136), - [anon_sym_ATimport] = ACTIONS(2136), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2134), - [anon_sym_ATcompatibility_alias] = ACTIONS(2136), - [anon_sym_ATprotocol] = ACTIONS(2136), - [anon_sym_ATclass] = ACTIONS(2136), - [anon_sym_ATinterface] = ACTIONS(2136), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2134), - [sym_method_attribute_specifier] = ACTIONS(2134), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2134), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE] = ACTIONS(2134), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_API_AVAILABLE] = ACTIONS(2134), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_API_DEPRECATED] = ACTIONS(2134), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2134), - [anon_sym___deprecated_msg] = ACTIONS(2134), - [anon_sym___deprecated_enum_msg] = ACTIONS(2134), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2134), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2134), - [anon_sym_ATimplementation] = ACTIONS(2136), - [anon_sym_typeof] = ACTIONS(2134), - [anon_sym___typeof] = ACTIONS(2134), - [anon_sym___typeof__] = ACTIONS(2134), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_nil] = ACTIONS(2134), - [sym_id] = ACTIONS(2134), - [sym_instancetype] = ACTIONS(2134), - [sym_Class] = ACTIONS(2134), - [sym_SEL] = ACTIONS(2134), - [sym_IMP] = ACTIONS(2134), - [sym_BOOL] = ACTIONS(2134), - [sym_auto] = ACTIONS(2134), - [anon_sym_ATautoreleasepool] = ACTIONS(2136), - [anon_sym_ATsynchronized] = ACTIONS(2136), - [anon_sym_ATtry] = ACTIONS(2136), - [anon_sym_ATthrow] = ACTIONS(2136), - [anon_sym_ATselector] = ACTIONS(2136), - [anon_sym_ATencode] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2134), - [sym_YES] = ACTIONS(2134), - [sym_NO] = ACTIONS(2134), - [anon_sym___builtin_available] = ACTIONS(2134), - [anon_sym_ATavailable] = ACTIONS(2136), - [anon_sym_va_arg] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [840] = { - [sym_identifier] = ACTIONS(2134), - [aux_sym_preproc_include_token1] = ACTIONS(2136), - [aux_sym_preproc_def_token1] = ACTIONS(2136), - [aux_sym_preproc_if_token1] = ACTIONS(2134), - [aux_sym_preproc_if_token2] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), - [aux_sym_preproc_else_token1] = ACTIONS(2134), - [aux_sym_preproc_elif_token1] = ACTIONS(2134), - [anon_sym_LPAREN2] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_typedef] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym___attribute] = ACTIONS(2134), - [anon_sym___attribute__] = ACTIONS(2134), - [anon_sym___declspec] = ACTIONS(2134), - [anon_sym___cdecl] = ACTIONS(2134), - [anon_sym___clrcall] = ACTIONS(2134), - [anon_sym___stdcall] = ACTIONS(2134), - [anon_sym___fastcall] = ACTIONS(2134), - [anon_sym___thiscall] = ACTIONS(2134), - [anon_sym___vectorcall] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_auto] = ACTIONS(2134), - [anon_sym_register] = ACTIONS(2134), - [anon_sym_inline] = ACTIONS(2134), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [anon_sym_volatile] = ACTIONS(2134), - [anon_sym_restrict] = ACTIONS(2134), - [anon_sym__Atomic] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [anon_sym_out] = ACTIONS(2134), - [anon_sym_inout] = ACTIONS(2134), - [anon_sym_bycopy] = ACTIONS(2134), - [anon_sym_byref] = ACTIONS(2134), - [anon_sym_oneway] = ACTIONS(2134), - [anon_sym__Nullable] = ACTIONS(2134), - [anon_sym__Nonnull] = ACTIONS(2134), - [anon_sym__Nullable_result] = ACTIONS(2134), - [anon_sym__Null_unspecified] = ACTIONS(2134), - [anon_sym___autoreleasing] = ACTIONS(2134), - [anon_sym___nullable] = ACTIONS(2134), - [anon_sym___nonnull] = ACTIONS(2134), - [anon_sym___strong] = ACTIONS(2134), - [anon_sym___weak] = ACTIONS(2134), - [anon_sym___bridge] = ACTIONS(2134), - [anon_sym___bridge_transfer] = ACTIONS(2134), - [anon_sym___bridge_retained] = ACTIONS(2134), - [anon_sym___unsafe_unretained] = ACTIONS(2134), - [anon_sym___block] = ACTIONS(2134), - [anon_sym___kindof] = ACTIONS(2134), - [anon_sym___unused] = ACTIONS(2134), - [anon_sym__Complex] = ACTIONS(2134), - [anon_sym___complex] = ACTIONS(2134), - [anon_sym_IBOutlet] = ACTIONS(2134), - [anon_sym_IBInspectable] = ACTIONS(2134), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2134), - [anon_sym_signed] = ACTIONS(2134), - [anon_sym_unsigned] = ACTIONS(2134), - [anon_sym_long] = ACTIONS(2134), - [anon_sym_short] = ACTIONS(2134), - [sym_primitive_type] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_NS_ENUM] = ACTIONS(2134), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2134), - [anon_sym_NS_OPTIONS] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(2134), - [anon_sym_union] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_switch] = ACTIONS(2134), - [anon_sym_case] = ACTIONS(2134), - [anon_sym_default] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_goto] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_PLUS_PLUS] = ACTIONS(2136), - [anon_sym_sizeof] = ACTIONS(2134), - [sym_number_literal] = ACTIONS(2136), - [anon_sym_L_SQUOTE] = ACTIONS(2136), - [anon_sym_u_SQUOTE] = ACTIONS(2136), - [anon_sym_U_SQUOTE] = ACTIONS(2136), - [anon_sym_u8_SQUOTE] = ACTIONS(2136), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_L_DQUOTE] = ACTIONS(2136), - [anon_sym_u_DQUOTE] = ACTIONS(2136), - [anon_sym_U_DQUOTE] = ACTIONS(2136), - [anon_sym_u8_DQUOTE] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [sym_null] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2136), - [anon_sym_ATimport] = ACTIONS(2136), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2134), - [anon_sym_ATcompatibility_alias] = ACTIONS(2136), - [anon_sym_ATprotocol] = ACTIONS(2136), - [anon_sym_ATclass] = ACTIONS(2136), - [anon_sym_ATinterface] = ACTIONS(2136), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2134), - [sym_method_attribute_specifier] = ACTIONS(2134), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2134), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE] = ACTIONS(2134), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_API_AVAILABLE] = ACTIONS(2134), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_API_DEPRECATED] = ACTIONS(2134), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2134), - [anon_sym___deprecated_msg] = ACTIONS(2134), - [anon_sym___deprecated_enum_msg] = ACTIONS(2134), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2134), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2134), - [anon_sym_ATimplementation] = ACTIONS(2136), - [anon_sym_typeof] = ACTIONS(2134), - [anon_sym___typeof] = ACTIONS(2134), - [anon_sym___typeof__] = ACTIONS(2134), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_nil] = ACTIONS(2134), - [sym_id] = ACTIONS(2134), - [sym_instancetype] = ACTIONS(2134), - [sym_Class] = ACTIONS(2134), - [sym_SEL] = ACTIONS(2134), - [sym_IMP] = ACTIONS(2134), - [sym_BOOL] = ACTIONS(2134), - [sym_auto] = ACTIONS(2134), - [anon_sym_ATautoreleasepool] = ACTIONS(2136), - [anon_sym_ATsynchronized] = ACTIONS(2136), - [anon_sym_ATtry] = ACTIONS(2136), - [anon_sym_ATthrow] = ACTIONS(2136), - [anon_sym_ATselector] = ACTIONS(2136), - [anon_sym_ATencode] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2134), - [sym_YES] = ACTIONS(2134), - [sym_NO] = ACTIONS(2134), - [anon_sym___builtin_available] = ACTIONS(2134), - [anon_sym_ATavailable] = ACTIONS(2136), - [anon_sym_va_arg] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [841] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [aux_sym_preproc_else_token1] = ACTIONS(2078), - [aux_sym_preproc_elif_token1] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [842] = { - [sym_identifier] = ACTIONS(2138), - [aux_sym_preproc_include_token1] = ACTIONS(2140), - [aux_sym_preproc_def_token1] = ACTIONS(2140), - [aux_sym_preproc_if_token1] = ACTIONS(2138), - [aux_sym_preproc_if_token2] = ACTIONS(2138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), - [aux_sym_preproc_else_token1] = ACTIONS(2138), - [aux_sym_preproc_elif_token1] = ACTIONS(2138), - [anon_sym_LPAREN2] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_typedef] = ACTIONS(2138), - [anon_sym_extern] = ACTIONS(2138), - [anon_sym___attribute] = ACTIONS(2138), - [anon_sym___attribute__] = ACTIONS(2138), - [anon_sym___declspec] = ACTIONS(2138), - [anon_sym___cdecl] = ACTIONS(2138), - [anon_sym___clrcall] = ACTIONS(2138), - [anon_sym___stdcall] = ACTIONS(2138), - [anon_sym___fastcall] = ACTIONS(2138), - [anon_sym___thiscall] = ACTIONS(2138), - [anon_sym___vectorcall] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_auto] = ACTIONS(2138), - [anon_sym_register] = ACTIONS(2138), - [anon_sym_inline] = ACTIONS(2138), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_volatile] = ACTIONS(2138), - [anon_sym_restrict] = ACTIONS(2138), - [anon_sym__Atomic] = ACTIONS(2138), - [anon_sym_in] = ACTIONS(2138), - [anon_sym_out] = ACTIONS(2138), - [anon_sym_inout] = ACTIONS(2138), - [anon_sym_bycopy] = ACTIONS(2138), - [anon_sym_byref] = ACTIONS(2138), - [anon_sym_oneway] = ACTIONS(2138), - [anon_sym__Nullable] = ACTIONS(2138), - [anon_sym__Nonnull] = ACTIONS(2138), - [anon_sym__Nullable_result] = ACTIONS(2138), - [anon_sym__Null_unspecified] = ACTIONS(2138), - [anon_sym___autoreleasing] = ACTIONS(2138), - [anon_sym___nullable] = ACTIONS(2138), - [anon_sym___nonnull] = ACTIONS(2138), - [anon_sym___strong] = ACTIONS(2138), - [anon_sym___weak] = ACTIONS(2138), - [anon_sym___bridge] = ACTIONS(2138), - [anon_sym___bridge_transfer] = ACTIONS(2138), - [anon_sym___bridge_retained] = ACTIONS(2138), - [anon_sym___unsafe_unretained] = ACTIONS(2138), - [anon_sym___block] = ACTIONS(2138), - [anon_sym___kindof] = ACTIONS(2138), - [anon_sym___unused] = ACTIONS(2138), - [anon_sym__Complex] = ACTIONS(2138), - [anon_sym___complex] = ACTIONS(2138), - [anon_sym_IBOutlet] = ACTIONS(2138), - [anon_sym_IBInspectable] = ACTIONS(2138), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2138), - [anon_sym_signed] = ACTIONS(2138), - [anon_sym_unsigned] = ACTIONS(2138), - [anon_sym_long] = ACTIONS(2138), - [anon_sym_short] = ACTIONS(2138), - [sym_primitive_type] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [anon_sym_NS_ENUM] = ACTIONS(2138), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2138), - [anon_sym_NS_OPTIONS] = ACTIONS(2138), - [anon_sym_struct] = ACTIONS(2138), - [anon_sym_union] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_case] = ACTIONS(2138), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_goto] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_sizeof] = ACTIONS(2138), - [sym_number_literal] = ACTIONS(2140), - [anon_sym_L_SQUOTE] = ACTIONS(2140), - [anon_sym_u_SQUOTE] = ACTIONS(2140), - [anon_sym_U_SQUOTE] = ACTIONS(2140), - [anon_sym_u8_SQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_L_DQUOTE] = ACTIONS(2140), - [anon_sym_u_DQUOTE] = ACTIONS(2140), - [anon_sym_U_DQUOTE] = ACTIONS(2140), - [anon_sym_u8_DQUOTE] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2140), - [anon_sym_ATimport] = ACTIONS(2140), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2138), - [anon_sym_ATcompatibility_alias] = ACTIONS(2140), - [anon_sym_ATprotocol] = ACTIONS(2140), - [anon_sym_ATclass] = ACTIONS(2140), - [anon_sym_ATinterface] = ACTIONS(2140), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2138), - [sym_method_attribute_specifier] = ACTIONS(2138), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2138), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2138), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2138), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2138), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2138), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2138), - [anon_sym_NS_AVAILABLE] = ACTIONS(2138), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2138), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2138), - [anon_sym_API_AVAILABLE] = ACTIONS(2138), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2138), - [anon_sym_API_DEPRECATED] = ACTIONS(2138), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2138), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2138), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2138), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2138), - [anon_sym___deprecated_msg] = ACTIONS(2138), - [anon_sym___deprecated_enum_msg] = ACTIONS(2138), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2138), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2138), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2138), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2138), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2138), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2138), - [anon_sym_ATimplementation] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym___typeof] = ACTIONS(2138), - [anon_sym___typeof__] = ACTIONS(2138), - [sym_self] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_nil] = ACTIONS(2138), - [sym_id] = ACTIONS(2138), - [sym_instancetype] = ACTIONS(2138), - [sym_Class] = ACTIONS(2138), - [sym_SEL] = ACTIONS(2138), - [sym_IMP] = ACTIONS(2138), - [sym_BOOL] = ACTIONS(2138), - [sym_auto] = ACTIONS(2138), - [anon_sym_ATautoreleasepool] = ACTIONS(2140), - [anon_sym_ATsynchronized] = ACTIONS(2140), - [anon_sym_ATtry] = ACTIONS(2140), - [anon_sym_ATthrow] = ACTIONS(2140), - [anon_sym_ATselector] = ACTIONS(2140), - [anon_sym_ATencode] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2138), - [sym_YES] = ACTIONS(2138), - [sym_NO] = ACTIONS(2138), - [anon_sym___builtin_available] = ACTIONS(2138), - [anon_sym_ATavailable] = ACTIONS(2140), - [anon_sym_va_arg] = ACTIONS(2138), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [843] = { - [sym_identifier] = ACTIONS(2142), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2142), - [aux_sym_preproc_if_token2] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2142), - [aux_sym_preproc_else_token1] = ACTIONS(2142), - [aux_sym_preproc_elif_token1] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym___attribute] = ACTIONS(2142), - [anon_sym___attribute__] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2142), - [anon_sym___cdecl] = ACTIONS(2142), - [anon_sym___clrcall] = ACTIONS(2142), - [anon_sym___stdcall] = ACTIONS(2142), - [anon_sym___fastcall] = ACTIONS(2142), - [anon_sym___thiscall] = ACTIONS(2142), - [anon_sym___vectorcall] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_auto] = ACTIONS(2142), - [anon_sym_register] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_volatile] = ACTIONS(2142), - [anon_sym_restrict] = ACTIONS(2142), - [anon_sym__Atomic] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_out] = ACTIONS(2142), - [anon_sym_inout] = ACTIONS(2142), - [anon_sym_bycopy] = ACTIONS(2142), - [anon_sym_byref] = ACTIONS(2142), - [anon_sym_oneway] = ACTIONS(2142), - [anon_sym__Nullable] = ACTIONS(2142), - [anon_sym__Nonnull] = ACTIONS(2142), - [anon_sym__Nullable_result] = ACTIONS(2142), - [anon_sym__Null_unspecified] = ACTIONS(2142), - [anon_sym___autoreleasing] = ACTIONS(2142), - [anon_sym___nullable] = ACTIONS(2142), - [anon_sym___nonnull] = ACTIONS(2142), - [anon_sym___strong] = ACTIONS(2142), - [anon_sym___weak] = ACTIONS(2142), - [anon_sym___bridge] = ACTIONS(2142), - [anon_sym___bridge_transfer] = ACTIONS(2142), - [anon_sym___bridge_retained] = ACTIONS(2142), - [anon_sym___unsafe_unretained] = ACTIONS(2142), - [anon_sym___block] = ACTIONS(2142), - [anon_sym___kindof] = ACTIONS(2142), - [anon_sym___unused] = ACTIONS(2142), - [anon_sym__Complex] = ACTIONS(2142), - [anon_sym___complex] = ACTIONS(2142), - [anon_sym_IBOutlet] = ACTIONS(2142), - [anon_sym_IBInspectable] = ACTIONS(2142), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2142), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_NS_ENUM] = ACTIONS(2142), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2142), - [anon_sym_NS_OPTIONS] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_goto] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_sizeof] = ACTIONS(2142), - [sym_number_literal] = ACTIONS(2144), - [anon_sym_L_SQUOTE] = ACTIONS(2144), - [anon_sym_u_SQUOTE] = ACTIONS(2144), - [anon_sym_U_SQUOTE] = ACTIONS(2144), - [anon_sym_u8_SQUOTE] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_L_DQUOTE] = ACTIONS(2144), - [anon_sym_u_DQUOTE] = ACTIONS(2144), - [anon_sym_U_DQUOTE] = ACTIONS(2144), - [anon_sym_u8_DQUOTE] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2144), - [anon_sym_ATimport] = ACTIONS(2144), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2142), - [anon_sym_ATcompatibility_alias] = ACTIONS(2144), - [anon_sym_ATprotocol] = ACTIONS(2144), - [anon_sym_ATclass] = ACTIONS(2144), - [anon_sym_ATinterface] = ACTIONS(2144), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2142), - [sym_method_attribute_specifier] = ACTIONS(2142), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2142), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE] = ACTIONS(2142), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_API_AVAILABLE] = ACTIONS(2142), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_API_DEPRECATED] = ACTIONS(2142), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2142), - [anon_sym___deprecated_msg] = ACTIONS(2142), - [anon_sym___deprecated_enum_msg] = ACTIONS(2142), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2142), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2142), - [anon_sym_ATimplementation] = ACTIONS(2144), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym___typeof] = ACTIONS(2142), - [anon_sym___typeof__] = ACTIONS(2142), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_nil] = ACTIONS(2142), - [sym_id] = ACTIONS(2142), - [sym_instancetype] = ACTIONS(2142), - [sym_Class] = ACTIONS(2142), - [sym_SEL] = ACTIONS(2142), - [sym_IMP] = ACTIONS(2142), - [sym_BOOL] = ACTIONS(2142), - [sym_auto] = ACTIONS(2142), - [anon_sym_ATautoreleasepool] = ACTIONS(2144), - [anon_sym_ATsynchronized] = ACTIONS(2144), - [anon_sym_ATtry] = ACTIONS(2144), - [anon_sym_ATthrow] = ACTIONS(2144), - [anon_sym_ATselector] = ACTIONS(2144), - [anon_sym_ATencode] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2142), - [sym_YES] = ACTIONS(2142), - [sym_NO] = ACTIONS(2142), - [anon_sym___builtin_available] = ACTIONS(2142), - [anon_sym_ATavailable] = ACTIONS(2144), - [anon_sym_va_arg] = ACTIONS(2142), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [844] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [aux_sym_preproc_else_token1] = ACTIONS(2078), - [aux_sym_preproc_elif_token1] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [845] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [aux_sym_preproc_else_token1] = ACTIONS(2078), - [aux_sym_preproc_elif_token1] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [846] = { - [sym_identifier] = ACTIONS(2142), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2142), - [aux_sym_preproc_if_token2] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2142), - [aux_sym_preproc_else_token1] = ACTIONS(2142), - [aux_sym_preproc_elif_token1] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym___attribute] = ACTIONS(2142), - [anon_sym___attribute__] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2142), - [anon_sym___cdecl] = ACTIONS(2142), - [anon_sym___clrcall] = ACTIONS(2142), - [anon_sym___stdcall] = ACTIONS(2142), - [anon_sym___fastcall] = ACTIONS(2142), - [anon_sym___thiscall] = ACTIONS(2142), - [anon_sym___vectorcall] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_auto] = ACTIONS(2142), - [anon_sym_register] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_volatile] = ACTIONS(2142), - [anon_sym_restrict] = ACTIONS(2142), - [anon_sym__Atomic] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_out] = ACTIONS(2142), - [anon_sym_inout] = ACTIONS(2142), - [anon_sym_bycopy] = ACTIONS(2142), - [anon_sym_byref] = ACTIONS(2142), - [anon_sym_oneway] = ACTIONS(2142), - [anon_sym__Nullable] = ACTIONS(2142), - [anon_sym__Nonnull] = ACTIONS(2142), - [anon_sym__Nullable_result] = ACTIONS(2142), - [anon_sym__Null_unspecified] = ACTIONS(2142), - [anon_sym___autoreleasing] = ACTIONS(2142), - [anon_sym___nullable] = ACTIONS(2142), - [anon_sym___nonnull] = ACTIONS(2142), - [anon_sym___strong] = ACTIONS(2142), - [anon_sym___weak] = ACTIONS(2142), - [anon_sym___bridge] = ACTIONS(2142), - [anon_sym___bridge_transfer] = ACTIONS(2142), - [anon_sym___bridge_retained] = ACTIONS(2142), - [anon_sym___unsafe_unretained] = ACTIONS(2142), - [anon_sym___block] = ACTIONS(2142), - [anon_sym___kindof] = ACTIONS(2142), - [anon_sym___unused] = ACTIONS(2142), - [anon_sym__Complex] = ACTIONS(2142), - [anon_sym___complex] = ACTIONS(2142), - [anon_sym_IBOutlet] = ACTIONS(2142), - [anon_sym_IBInspectable] = ACTIONS(2142), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2142), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_NS_ENUM] = ACTIONS(2142), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2142), - [anon_sym_NS_OPTIONS] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_goto] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_sizeof] = ACTIONS(2142), - [sym_number_literal] = ACTIONS(2144), - [anon_sym_L_SQUOTE] = ACTIONS(2144), - [anon_sym_u_SQUOTE] = ACTIONS(2144), - [anon_sym_U_SQUOTE] = ACTIONS(2144), - [anon_sym_u8_SQUOTE] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_L_DQUOTE] = ACTIONS(2144), - [anon_sym_u_DQUOTE] = ACTIONS(2144), - [anon_sym_U_DQUOTE] = ACTIONS(2144), - [anon_sym_u8_DQUOTE] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2144), - [anon_sym_ATimport] = ACTIONS(2144), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2142), - [anon_sym_ATcompatibility_alias] = ACTIONS(2144), - [anon_sym_ATprotocol] = ACTIONS(2144), - [anon_sym_ATclass] = ACTIONS(2144), - [anon_sym_ATinterface] = ACTIONS(2144), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2142), - [sym_method_attribute_specifier] = ACTIONS(2142), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2142), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE] = ACTIONS(2142), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_API_AVAILABLE] = ACTIONS(2142), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_API_DEPRECATED] = ACTIONS(2142), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2142), - [anon_sym___deprecated_msg] = ACTIONS(2142), - [anon_sym___deprecated_enum_msg] = ACTIONS(2142), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2142), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2142), - [anon_sym_ATimplementation] = ACTIONS(2144), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym___typeof] = ACTIONS(2142), - [anon_sym___typeof__] = ACTIONS(2142), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_nil] = ACTIONS(2142), - [sym_id] = ACTIONS(2142), - [sym_instancetype] = ACTIONS(2142), - [sym_Class] = ACTIONS(2142), - [sym_SEL] = ACTIONS(2142), - [sym_IMP] = ACTIONS(2142), - [sym_BOOL] = ACTIONS(2142), - [sym_auto] = ACTIONS(2142), - [anon_sym_ATautoreleasepool] = ACTIONS(2144), - [anon_sym_ATsynchronized] = ACTIONS(2144), - [anon_sym_ATtry] = ACTIONS(2144), - [anon_sym_ATthrow] = ACTIONS(2144), - [anon_sym_ATselector] = ACTIONS(2144), - [anon_sym_ATencode] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2142), - [sym_YES] = ACTIONS(2142), - [sym_NO] = ACTIONS(2142), - [anon_sym___builtin_available] = ACTIONS(2142), - [anon_sym_ATavailable] = ACTIONS(2144), - [anon_sym_va_arg] = ACTIONS(2142), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [847] = { - [sym_identifier] = ACTIONS(2142), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2142), - [aux_sym_preproc_if_token2] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2142), - [aux_sym_preproc_else_token1] = ACTIONS(2142), - [aux_sym_preproc_elif_token1] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym___attribute] = ACTIONS(2142), - [anon_sym___attribute__] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2142), - [anon_sym___cdecl] = ACTIONS(2142), - [anon_sym___clrcall] = ACTIONS(2142), - [anon_sym___stdcall] = ACTIONS(2142), - [anon_sym___fastcall] = ACTIONS(2142), - [anon_sym___thiscall] = ACTIONS(2142), - [anon_sym___vectorcall] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_auto] = ACTIONS(2142), - [anon_sym_register] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_volatile] = ACTIONS(2142), - [anon_sym_restrict] = ACTIONS(2142), - [anon_sym__Atomic] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_out] = ACTIONS(2142), - [anon_sym_inout] = ACTIONS(2142), - [anon_sym_bycopy] = ACTIONS(2142), - [anon_sym_byref] = ACTIONS(2142), - [anon_sym_oneway] = ACTIONS(2142), - [anon_sym__Nullable] = ACTIONS(2142), - [anon_sym__Nonnull] = ACTIONS(2142), - [anon_sym__Nullable_result] = ACTIONS(2142), - [anon_sym__Null_unspecified] = ACTIONS(2142), - [anon_sym___autoreleasing] = ACTIONS(2142), - [anon_sym___nullable] = ACTIONS(2142), - [anon_sym___nonnull] = ACTIONS(2142), - [anon_sym___strong] = ACTIONS(2142), - [anon_sym___weak] = ACTIONS(2142), - [anon_sym___bridge] = ACTIONS(2142), - [anon_sym___bridge_transfer] = ACTIONS(2142), - [anon_sym___bridge_retained] = ACTIONS(2142), - [anon_sym___unsafe_unretained] = ACTIONS(2142), - [anon_sym___block] = ACTIONS(2142), - [anon_sym___kindof] = ACTIONS(2142), - [anon_sym___unused] = ACTIONS(2142), - [anon_sym__Complex] = ACTIONS(2142), - [anon_sym___complex] = ACTIONS(2142), - [anon_sym_IBOutlet] = ACTIONS(2142), - [anon_sym_IBInspectable] = ACTIONS(2142), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2142), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_NS_ENUM] = ACTIONS(2142), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2142), - [anon_sym_NS_OPTIONS] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_goto] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_sizeof] = ACTIONS(2142), - [sym_number_literal] = ACTIONS(2144), - [anon_sym_L_SQUOTE] = ACTIONS(2144), - [anon_sym_u_SQUOTE] = ACTIONS(2144), - [anon_sym_U_SQUOTE] = ACTIONS(2144), - [anon_sym_u8_SQUOTE] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_L_DQUOTE] = ACTIONS(2144), - [anon_sym_u_DQUOTE] = ACTIONS(2144), - [anon_sym_U_DQUOTE] = ACTIONS(2144), - [anon_sym_u8_DQUOTE] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2144), - [anon_sym_ATimport] = ACTIONS(2144), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2142), - [anon_sym_ATcompatibility_alias] = ACTIONS(2144), - [anon_sym_ATprotocol] = ACTIONS(2144), - [anon_sym_ATclass] = ACTIONS(2144), - [anon_sym_ATinterface] = ACTIONS(2144), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2142), - [sym_method_attribute_specifier] = ACTIONS(2142), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2142), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE] = ACTIONS(2142), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_API_AVAILABLE] = ACTIONS(2142), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_API_DEPRECATED] = ACTIONS(2142), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2142), - [anon_sym___deprecated_msg] = ACTIONS(2142), - [anon_sym___deprecated_enum_msg] = ACTIONS(2142), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2142), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2142), - [anon_sym_ATimplementation] = ACTIONS(2144), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym___typeof] = ACTIONS(2142), - [anon_sym___typeof__] = ACTIONS(2142), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_nil] = ACTIONS(2142), - [sym_id] = ACTIONS(2142), - [sym_instancetype] = ACTIONS(2142), - [sym_Class] = ACTIONS(2142), - [sym_SEL] = ACTIONS(2142), - [sym_IMP] = ACTIONS(2142), - [sym_BOOL] = ACTIONS(2142), - [sym_auto] = ACTIONS(2142), - [anon_sym_ATautoreleasepool] = ACTIONS(2144), - [anon_sym_ATsynchronized] = ACTIONS(2144), - [anon_sym_ATtry] = ACTIONS(2144), - [anon_sym_ATthrow] = ACTIONS(2144), - [anon_sym_ATselector] = ACTIONS(2144), - [anon_sym_ATencode] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2142), - [sym_YES] = ACTIONS(2142), - [sym_NO] = ACTIONS(2142), - [anon_sym___builtin_available] = ACTIONS(2142), - [anon_sym_ATavailable] = ACTIONS(2144), - [anon_sym_va_arg] = ACTIONS(2142), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [848] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [aux_sym_preproc_else_token1] = ACTIONS(2078), - [aux_sym_preproc_elif_token1] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [849] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [aux_sym_preproc_else_token1] = ACTIONS(2078), - [aux_sym_preproc_elif_token1] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [850] = { - [sym_identifier] = ACTIONS(2142), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2142), - [aux_sym_preproc_if_token2] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2142), - [aux_sym_preproc_else_token1] = ACTIONS(2142), - [aux_sym_preproc_elif_token1] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym___attribute] = ACTIONS(2142), - [anon_sym___attribute__] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2142), - [anon_sym___cdecl] = ACTIONS(2142), - [anon_sym___clrcall] = ACTIONS(2142), - [anon_sym___stdcall] = ACTIONS(2142), - [anon_sym___fastcall] = ACTIONS(2142), - [anon_sym___thiscall] = ACTIONS(2142), - [anon_sym___vectorcall] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_auto] = ACTIONS(2142), - [anon_sym_register] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_volatile] = ACTIONS(2142), - [anon_sym_restrict] = ACTIONS(2142), - [anon_sym__Atomic] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_out] = ACTIONS(2142), - [anon_sym_inout] = ACTIONS(2142), - [anon_sym_bycopy] = ACTIONS(2142), - [anon_sym_byref] = ACTIONS(2142), - [anon_sym_oneway] = ACTIONS(2142), - [anon_sym__Nullable] = ACTIONS(2142), - [anon_sym__Nonnull] = ACTIONS(2142), - [anon_sym__Nullable_result] = ACTIONS(2142), - [anon_sym__Null_unspecified] = ACTIONS(2142), - [anon_sym___autoreleasing] = ACTIONS(2142), - [anon_sym___nullable] = ACTIONS(2142), - [anon_sym___nonnull] = ACTIONS(2142), - [anon_sym___strong] = ACTIONS(2142), - [anon_sym___weak] = ACTIONS(2142), - [anon_sym___bridge] = ACTIONS(2142), - [anon_sym___bridge_transfer] = ACTIONS(2142), - [anon_sym___bridge_retained] = ACTIONS(2142), - [anon_sym___unsafe_unretained] = ACTIONS(2142), - [anon_sym___block] = ACTIONS(2142), - [anon_sym___kindof] = ACTIONS(2142), - [anon_sym___unused] = ACTIONS(2142), - [anon_sym__Complex] = ACTIONS(2142), - [anon_sym___complex] = ACTIONS(2142), - [anon_sym_IBOutlet] = ACTIONS(2142), - [anon_sym_IBInspectable] = ACTIONS(2142), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2142), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_NS_ENUM] = ACTIONS(2142), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2142), - [anon_sym_NS_OPTIONS] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_goto] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_sizeof] = ACTIONS(2142), - [sym_number_literal] = ACTIONS(2144), - [anon_sym_L_SQUOTE] = ACTIONS(2144), - [anon_sym_u_SQUOTE] = ACTIONS(2144), - [anon_sym_U_SQUOTE] = ACTIONS(2144), - [anon_sym_u8_SQUOTE] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_L_DQUOTE] = ACTIONS(2144), - [anon_sym_u_DQUOTE] = ACTIONS(2144), - [anon_sym_U_DQUOTE] = ACTIONS(2144), - [anon_sym_u8_DQUOTE] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2144), - [anon_sym_ATimport] = ACTIONS(2144), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2142), - [anon_sym_ATcompatibility_alias] = ACTIONS(2144), - [anon_sym_ATprotocol] = ACTIONS(2144), - [anon_sym_ATclass] = ACTIONS(2144), - [anon_sym_ATinterface] = ACTIONS(2144), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2142), - [sym_method_attribute_specifier] = ACTIONS(2142), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2142), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE] = ACTIONS(2142), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_API_AVAILABLE] = ACTIONS(2142), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_API_DEPRECATED] = ACTIONS(2142), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2142), - [anon_sym___deprecated_msg] = ACTIONS(2142), - [anon_sym___deprecated_enum_msg] = ACTIONS(2142), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2142), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2142), - [anon_sym_ATimplementation] = ACTIONS(2144), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym___typeof] = ACTIONS(2142), - [anon_sym___typeof__] = ACTIONS(2142), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_nil] = ACTIONS(2142), - [sym_id] = ACTIONS(2142), - [sym_instancetype] = ACTIONS(2142), - [sym_Class] = ACTIONS(2142), - [sym_SEL] = ACTIONS(2142), - [sym_IMP] = ACTIONS(2142), - [sym_BOOL] = ACTIONS(2142), - [sym_auto] = ACTIONS(2142), - [anon_sym_ATautoreleasepool] = ACTIONS(2144), - [anon_sym_ATsynchronized] = ACTIONS(2144), - [anon_sym_ATtry] = ACTIONS(2144), - [anon_sym_ATthrow] = ACTIONS(2144), - [anon_sym_ATselector] = ACTIONS(2144), - [anon_sym_ATencode] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2142), - [sym_YES] = ACTIONS(2142), - [sym_NO] = ACTIONS(2142), - [anon_sym___builtin_available] = ACTIONS(2142), - [anon_sym_ATavailable] = ACTIONS(2144), - [anon_sym_va_arg] = ACTIONS(2142), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [851] = { - [sym_identifier] = ACTIONS(2142), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2142), - [aux_sym_preproc_if_token2] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2142), - [aux_sym_preproc_else_token1] = ACTIONS(2142), - [aux_sym_preproc_elif_token1] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym___attribute] = ACTIONS(2142), - [anon_sym___attribute__] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2142), - [anon_sym___cdecl] = ACTIONS(2142), - [anon_sym___clrcall] = ACTIONS(2142), - [anon_sym___stdcall] = ACTIONS(2142), - [anon_sym___fastcall] = ACTIONS(2142), - [anon_sym___thiscall] = ACTIONS(2142), - [anon_sym___vectorcall] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_auto] = ACTIONS(2142), - [anon_sym_register] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_volatile] = ACTIONS(2142), - [anon_sym_restrict] = ACTIONS(2142), - [anon_sym__Atomic] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_out] = ACTIONS(2142), - [anon_sym_inout] = ACTIONS(2142), - [anon_sym_bycopy] = ACTIONS(2142), - [anon_sym_byref] = ACTIONS(2142), - [anon_sym_oneway] = ACTIONS(2142), - [anon_sym__Nullable] = ACTIONS(2142), - [anon_sym__Nonnull] = ACTIONS(2142), - [anon_sym__Nullable_result] = ACTIONS(2142), - [anon_sym__Null_unspecified] = ACTIONS(2142), - [anon_sym___autoreleasing] = ACTIONS(2142), - [anon_sym___nullable] = ACTIONS(2142), - [anon_sym___nonnull] = ACTIONS(2142), - [anon_sym___strong] = ACTIONS(2142), - [anon_sym___weak] = ACTIONS(2142), - [anon_sym___bridge] = ACTIONS(2142), - [anon_sym___bridge_transfer] = ACTIONS(2142), - [anon_sym___bridge_retained] = ACTIONS(2142), - [anon_sym___unsafe_unretained] = ACTIONS(2142), - [anon_sym___block] = ACTIONS(2142), - [anon_sym___kindof] = ACTIONS(2142), - [anon_sym___unused] = ACTIONS(2142), - [anon_sym__Complex] = ACTIONS(2142), - [anon_sym___complex] = ACTIONS(2142), - [anon_sym_IBOutlet] = ACTIONS(2142), - [anon_sym_IBInspectable] = ACTIONS(2142), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2142), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_NS_ENUM] = ACTIONS(2142), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2142), - [anon_sym_NS_OPTIONS] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_goto] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_sizeof] = ACTIONS(2142), - [sym_number_literal] = ACTIONS(2144), - [anon_sym_L_SQUOTE] = ACTIONS(2144), - [anon_sym_u_SQUOTE] = ACTIONS(2144), - [anon_sym_U_SQUOTE] = ACTIONS(2144), - [anon_sym_u8_SQUOTE] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_L_DQUOTE] = ACTIONS(2144), - [anon_sym_u_DQUOTE] = ACTIONS(2144), - [anon_sym_U_DQUOTE] = ACTIONS(2144), - [anon_sym_u8_DQUOTE] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2144), - [anon_sym_ATimport] = ACTIONS(2144), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2142), - [anon_sym_ATcompatibility_alias] = ACTIONS(2144), - [anon_sym_ATprotocol] = ACTIONS(2144), - [anon_sym_ATclass] = ACTIONS(2144), - [anon_sym_ATinterface] = ACTIONS(2144), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2142), - [sym_method_attribute_specifier] = ACTIONS(2142), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2142), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE] = ACTIONS(2142), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_API_AVAILABLE] = ACTIONS(2142), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_API_DEPRECATED] = ACTIONS(2142), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2142), - [anon_sym___deprecated_msg] = ACTIONS(2142), - [anon_sym___deprecated_enum_msg] = ACTIONS(2142), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2142), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2142), - [anon_sym_ATimplementation] = ACTIONS(2144), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym___typeof] = ACTIONS(2142), - [anon_sym___typeof__] = ACTIONS(2142), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_nil] = ACTIONS(2142), - [sym_id] = ACTIONS(2142), - [sym_instancetype] = ACTIONS(2142), - [sym_Class] = ACTIONS(2142), - [sym_SEL] = ACTIONS(2142), - [sym_IMP] = ACTIONS(2142), - [sym_BOOL] = ACTIONS(2142), - [sym_auto] = ACTIONS(2142), - [anon_sym_ATautoreleasepool] = ACTIONS(2144), - [anon_sym_ATsynchronized] = ACTIONS(2144), - [anon_sym_ATtry] = ACTIONS(2144), - [anon_sym_ATthrow] = ACTIONS(2144), - [anon_sym_ATselector] = ACTIONS(2144), - [anon_sym_ATencode] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2142), - [sym_YES] = ACTIONS(2142), - [sym_NO] = ACTIONS(2142), - [anon_sym___builtin_available] = ACTIONS(2142), - [anon_sym_ATavailable] = ACTIONS(2144), - [anon_sym_va_arg] = ACTIONS(2142), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [852] = { - [sym_identifier] = ACTIONS(2142), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2142), - [aux_sym_preproc_if_token2] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2142), - [aux_sym_preproc_else_token1] = ACTIONS(2142), - [aux_sym_preproc_elif_token1] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym___attribute] = ACTIONS(2142), - [anon_sym___attribute__] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2142), - [anon_sym___cdecl] = ACTIONS(2142), - [anon_sym___clrcall] = ACTIONS(2142), - [anon_sym___stdcall] = ACTIONS(2142), - [anon_sym___fastcall] = ACTIONS(2142), - [anon_sym___thiscall] = ACTIONS(2142), - [anon_sym___vectorcall] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_auto] = ACTIONS(2142), - [anon_sym_register] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_volatile] = ACTIONS(2142), - [anon_sym_restrict] = ACTIONS(2142), - [anon_sym__Atomic] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_out] = ACTIONS(2142), - [anon_sym_inout] = ACTIONS(2142), - [anon_sym_bycopy] = ACTIONS(2142), - [anon_sym_byref] = ACTIONS(2142), - [anon_sym_oneway] = ACTIONS(2142), - [anon_sym__Nullable] = ACTIONS(2142), - [anon_sym__Nonnull] = ACTIONS(2142), - [anon_sym__Nullable_result] = ACTIONS(2142), - [anon_sym__Null_unspecified] = ACTIONS(2142), - [anon_sym___autoreleasing] = ACTIONS(2142), - [anon_sym___nullable] = ACTIONS(2142), - [anon_sym___nonnull] = ACTIONS(2142), - [anon_sym___strong] = ACTIONS(2142), - [anon_sym___weak] = ACTIONS(2142), - [anon_sym___bridge] = ACTIONS(2142), - [anon_sym___bridge_transfer] = ACTIONS(2142), - [anon_sym___bridge_retained] = ACTIONS(2142), - [anon_sym___unsafe_unretained] = ACTIONS(2142), - [anon_sym___block] = ACTIONS(2142), - [anon_sym___kindof] = ACTIONS(2142), - [anon_sym___unused] = ACTIONS(2142), - [anon_sym__Complex] = ACTIONS(2142), - [anon_sym___complex] = ACTIONS(2142), - [anon_sym_IBOutlet] = ACTIONS(2142), - [anon_sym_IBInspectable] = ACTIONS(2142), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2142), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_NS_ENUM] = ACTIONS(2142), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2142), - [anon_sym_NS_OPTIONS] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_goto] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_sizeof] = ACTIONS(2142), - [sym_number_literal] = ACTIONS(2144), - [anon_sym_L_SQUOTE] = ACTIONS(2144), - [anon_sym_u_SQUOTE] = ACTIONS(2144), - [anon_sym_U_SQUOTE] = ACTIONS(2144), - [anon_sym_u8_SQUOTE] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_L_DQUOTE] = ACTIONS(2144), - [anon_sym_u_DQUOTE] = ACTIONS(2144), - [anon_sym_U_DQUOTE] = ACTIONS(2144), - [anon_sym_u8_DQUOTE] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2144), - [anon_sym_ATimport] = ACTIONS(2144), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2142), - [anon_sym_ATcompatibility_alias] = ACTIONS(2144), - [anon_sym_ATprotocol] = ACTIONS(2144), - [anon_sym_ATclass] = ACTIONS(2144), - [anon_sym_ATinterface] = ACTIONS(2144), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2142), - [sym_method_attribute_specifier] = ACTIONS(2142), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2142), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE] = ACTIONS(2142), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_API_AVAILABLE] = ACTIONS(2142), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_API_DEPRECATED] = ACTIONS(2142), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2142), - [anon_sym___deprecated_msg] = ACTIONS(2142), - [anon_sym___deprecated_enum_msg] = ACTIONS(2142), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2142), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2142), - [anon_sym_ATimplementation] = ACTIONS(2144), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym___typeof] = ACTIONS(2142), - [anon_sym___typeof__] = ACTIONS(2142), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_nil] = ACTIONS(2142), - [sym_id] = ACTIONS(2142), - [sym_instancetype] = ACTIONS(2142), - [sym_Class] = ACTIONS(2142), - [sym_SEL] = ACTIONS(2142), - [sym_IMP] = ACTIONS(2142), - [sym_BOOL] = ACTIONS(2142), - [sym_auto] = ACTIONS(2142), - [anon_sym_ATautoreleasepool] = ACTIONS(2144), - [anon_sym_ATsynchronized] = ACTIONS(2144), - [anon_sym_ATtry] = ACTIONS(2144), - [anon_sym_ATthrow] = ACTIONS(2144), - [anon_sym_ATselector] = ACTIONS(2144), - [anon_sym_ATencode] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2142), - [sym_YES] = ACTIONS(2142), - [sym_NO] = ACTIONS(2142), - [anon_sym___builtin_available] = ACTIONS(2142), - [anon_sym_ATavailable] = ACTIONS(2144), - [anon_sym_va_arg] = ACTIONS(2142), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [853] = { - [sym_identifier] = ACTIONS(2146), - [aux_sym_preproc_include_token1] = ACTIONS(2148), - [aux_sym_preproc_def_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token1] = ACTIONS(2146), - [aux_sym_preproc_if_token2] = ACTIONS(2146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2146), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2146), - [aux_sym_preproc_else_token1] = ACTIONS(2146), - [aux_sym_preproc_elif_token1] = ACTIONS(2146), - [anon_sym_LPAREN2] = ACTIONS(2148), - [anon_sym_BANG] = ACTIONS(2148), - [anon_sym_TILDE] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2146), - [anon_sym_PLUS] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2148), - [anon_sym_CARET] = ACTIONS(2148), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_typedef] = ACTIONS(2146), - [anon_sym_extern] = ACTIONS(2146), - [anon_sym___attribute] = ACTIONS(2146), - [anon_sym___attribute__] = ACTIONS(2146), - [anon_sym___declspec] = ACTIONS(2146), - [anon_sym___cdecl] = ACTIONS(2146), - [anon_sym___clrcall] = ACTIONS(2146), - [anon_sym___stdcall] = ACTIONS(2146), - [anon_sym___fastcall] = ACTIONS(2146), - [anon_sym___thiscall] = ACTIONS(2146), - [anon_sym___vectorcall] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2146), - [anon_sym_auto] = ACTIONS(2146), - [anon_sym_register] = ACTIONS(2146), - [anon_sym_inline] = ACTIONS(2146), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2146), - [anon_sym_const] = ACTIONS(2146), - [anon_sym_volatile] = ACTIONS(2146), - [anon_sym_restrict] = ACTIONS(2146), - [anon_sym__Atomic] = ACTIONS(2146), - [anon_sym_in] = ACTIONS(2146), - [anon_sym_out] = ACTIONS(2146), - [anon_sym_inout] = ACTIONS(2146), - [anon_sym_bycopy] = ACTIONS(2146), - [anon_sym_byref] = ACTIONS(2146), - [anon_sym_oneway] = ACTIONS(2146), - [anon_sym__Nullable] = ACTIONS(2146), - [anon_sym__Nonnull] = ACTIONS(2146), - [anon_sym__Nullable_result] = ACTIONS(2146), - [anon_sym__Null_unspecified] = ACTIONS(2146), - [anon_sym___autoreleasing] = ACTIONS(2146), - [anon_sym___nullable] = ACTIONS(2146), - [anon_sym___nonnull] = ACTIONS(2146), - [anon_sym___strong] = ACTIONS(2146), - [anon_sym___weak] = ACTIONS(2146), - [anon_sym___bridge] = ACTIONS(2146), - [anon_sym___bridge_transfer] = ACTIONS(2146), - [anon_sym___bridge_retained] = ACTIONS(2146), - [anon_sym___unsafe_unretained] = ACTIONS(2146), - [anon_sym___block] = ACTIONS(2146), - [anon_sym___kindof] = ACTIONS(2146), - [anon_sym___unused] = ACTIONS(2146), - [anon_sym__Complex] = ACTIONS(2146), - [anon_sym___complex] = ACTIONS(2146), - [anon_sym_IBOutlet] = ACTIONS(2146), - [anon_sym_IBInspectable] = ACTIONS(2146), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2146), - [anon_sym_signed] = ACTIONS(2146), - [anon_sym_unsigned] = ACTIONS(2146), - [anon_sym_long] = ACTIONS(2146), - [anon_sym_short] = ACTIONS(2146), - [sym_primitive_type] = ACTIONS(2146), - [anon_sym_enum] = ACTIONS(2146), - [anon_sym_NS_ENUM] = ACTIONS(2146), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2146), - [anon_sym_NS_OPTIONS] = ACTIONS(2146), - [anon_sym_struct] = ACTIONS(2146), - [anon_sym_union] = ACTIONS(2146), - [anon_sym_if] = ACTIONS(2146), - [anon_sym_switch] = ACTIONS(2146), - [anon_sym_case] = ACTIONS(2146), - [anon_sym_default] = ACTIONS(2146), - [anon_sym_while] = ACTIONS(2146), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_for] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2146), - [anon_sym_break] = ACTIONS(2146), - [anon_sym_continue] = ACTIONS(2146), - [anon_sym_goto] = ACTIONS(2146), - [anon_sym_DASH_DASH] = ACTIONS(2148), - [anon_sym_PLUS_PLUS] = ACTIONS(2148), - [anon_sym_sizeof] = ACTIONS(2146), - [sym_number_literal] = ACTIONS(2148), - [anon_sym_L_SQUOTE] = ACTIONS(2148), - [anon_sym_u_SQUOTE] = ACTIONS(2148), - [anon_sym_U_SQUOTE] = ACTIONS(2148), - [anon_sym_u8_SQUOTE] = ACTIONS(2148), - [anon_sym_SQUOTE] = ACTIONS(2148), - [anon_sym_L_DQUOTE] = ACTIONS(2148), - [anon_sym_u_DQUOTE] = ACTIONS(2148), - [anon_sym_U_DQUOTE] = ACTIONS(2148), - [anon_sym_u8_DQUOTE] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2148), - [sym_true] = ACTIONS(2146), - [sym_false] = ACTIONS(2146), - [sym_null] = ACTIONS(2146), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2148), - [anon_sym_ATimport] = ACTIONS(2148), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2146), - [anon_sym_ATcompatibility_alias] = ACTIONS(2148), - [anon_sym_ATprotocol] = ACTIONS(2148), - [anon_sym_ATclass] = ACTIONS(2148), - [anon_sym_ATinterface] = ACTIONS(2148), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2146), - [sym_method_attribute_specifier] = ACTIONS(2146), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2146), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2146), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2146), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2146), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2146), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2146), - [anon_sym_NS_AVAILABLE] = ACTIONS(2146), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2146), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_API_AVAILABLE] = ACTIONS(2146), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2146), - [anon_sym_API_DEPRECATED] = ACTIONS(2146), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2146), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2146), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2146), - [anon_sym___deprecated_msg] = ACTIONS(2146), - [anon_sym___deprecated_enum_msg] = ACTIONS(2146), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2146), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2146), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2146), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2146), - [anon_sym_ATimplementation] = ACTIONS(2148), - [anon_sym_typeof] = ACTIONS(2146), - [anon_sym___typeof] = ACTIONS(2146), - [anon_sym___typeof__] = ACTIONS(2146), - [sym_self] = ACTIONS(2146), - [sym_super] = ACTIONS(2146), - [sym_nil] = ACTIONS(2146), - [sym_id] = ACTIONS(2146), - [sym_instancetype] = ACTIONS(2146), - [sym_Class] = ACTIONS(2146), - [sym_SEL] = ACTIONS(2146), - [sym_IMP] = ACTIONS(2146), - [sym_BOOL] = ACTIONS(2146), - [sym_auto] = ACTIONS(2146), - [anon_sym_ATautoreleasepool] = ACTIONS(2148), - [anon_sym_ATsynchronized] = ACTIONS(2148), - [anon_sym_ATtry] = ACTIONS(2148), - [anon_sym_ATthrow] = ACTIONS(2148), - [anon_sym_ATselector] = ACTIONS(2148), - [anon_sym_ATencode] = ACTIONS(2148), - [anon_sym_AT] = ACTIONS(2146), - [sym_YES] = ACTIONS(2146), - [sym_NO] = ACTIONS(2146), - [anon_sym___builtin_available] = ACTIONS(2146), - [anon_sym_ATavailable] = ACTIONS(2148), - [anon_sym_va_arg] = ACTIONS(2146), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [854] = { - [sym_identifier] = ACTIONS(2146), - [aux_sym_preproc_include_token1] = ACTIONS(2148), - [aux_sym_preproc_def_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token1] = ACTIONS(2146), - [aux_sym_preproc_if_token2] = ACTIONS(2146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2146), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2146), - [aux_sym_preproc_else_token1] = ACTIONS(2146), - [aux_sym_preproc_elif_token1] = ACTIONS(2146), - [anon_sym_LPAREN2] = ACTIONS(2148), - [anon_sym_BANG] = ACTIONS(2148), - [anon_sym_TILDE] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2146), - [anon_sym_PLUS] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2148), - [anon_sym_CARET] = ACTIONS(2148), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_typedef] = ACTIONS(2146), - [anon_sym_extern] = ACTIONS(2146), - [anon_sym___attribute] = ACTIONS(2146), - [anon_sym___attribute__] = ACTIONS(2146), - [anon_sym___declspec] = ACTIONS(2146), - [anon_sym___cdecl] = ACTIONS(2146), - [anon_sym___clrcall] = ACTIONS(2146), - [anon_sym___stdcall] = ACTIONS(2146), - [anon_sym___fastcall] = ACTIONS(2146), - [anon_sym___thiscall] = ACTIONS(2146), - [anon_sym___vectorcall] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2146), - [anon_sym_auto] = ACTIONS(2146), - [anon_sym_register] = ACTIONS(2146), - [anon_sym_inline] = ACTIONS(2146), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2146), - [anon_sym_const] = ACTIONS(2146), - [anon_sym_volatile] = ACTIONS(2146), - [anon_sym_restrict] = ACTIONS(2146), - [anon_sym__Atomic] = ACTIONS(2146), - [anon_sym_in] = ACTIONS(2146), - [anon_sym_out] = ACTIONS(2146), - [anon_sym_inout] = ACTIONS(2146), - [anon_sym_bycopy] = ACTIONS(2146), - [anon_sym_byref] = ACTIONS(2146), - [anon_sym_oneway] = ACTIONS(2146), - [anon_sym__Nullable] = ACTIONS(2146), - [anon_sym__Nonnull] = ACTIONS(2146), - [anon_sym__Nullable_result] = ACTIONS(2146), - [anon_sym__Null_unspecified] = ACTIONS(2146), - [anon_sym___autoreleasing] = ACTIONS(2146), - [anon_sym___nullable] = ACTIONS(2146), - [anon_sym___nonnull] = ACTIONS(2146), - [anon_sym___strong] = ACTIONS(2146), - [anon_sym___weak] = ACTIONS(2146), - [anon_sym___bridge] = ACTIONS(2146), - [anon_sym___bridge_transfer] = ACTIONS(2146), - [anon_sym___bridge_retained] = ACTIONS(2146), - [anon_sym___unsafe_unretained] = ACTIONS(2146), - [anon_sym___block] = ACTIONS(2146), - [anon_sym___kindof] = ACTIONS(2146), - [anon_sym___unused] = ACTIONS(2146), - [anon_sym__Complex] = ACTIONS(2146), - [anon_sym___complex] = ACTIONS(2146), - [anon_sym_IBOutlet] = ACTIONS(2146), - [anon_sym_IBInspectable] = ACTIONS(2146), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2146), - [anon_sym_signed] = ACTIONS(2146), - [anon_sym_unsigned] = ACTIONS(2146), - [anon_sym_long] = ACTIONS(2146), - [anon_sym_short] = ACTIONS(2146), - [sym_primitive_type] = ACTIONS(2146), - [anon_sym_enum] = ACTIONS(2146), - [anon_sym_NS_ENUM] = ACTIONS(2146), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2146), - [anon_sym_NS_OPTIONS] = ACTIONS(2146), - [anon_sym_struct] = ACTIONS(2146), - [anon_sym_union] = ACTIONS(2146), - [anon_sym_if] = ACTIONS(2146), - [anon_sym_switch] = ACTIONS(2146), - [anon_sym_case] = ACTIONS(2146), - [anon_sym_default] = ACTIONS(2146), - [anon_sym_while] = ACTIONS(2146), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_for] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2146), - [anon_sym_break] = ACTIONS(2146), - [anon_sym_continue] = ACTIONS(2146), - [anon_sym_goto] = ACTIONS(2146), - [anon_sym_DASH_DASH] = ACTIONS(2148), - [anon_sym_PLUS_PLUS] = ACTIONS(2148), - [anon_sym_sizeof] = ACTIONS(2146), - [sym_number_literal] = ACTIONS(2148), - [anon_sym_L_SQUOTE] = ACTIONS(2148), - [anon_sym_u_SQUOTE] = ACTIONS(2148), - [anon_sym_U_SQUOTE] = ACTIONS(2148), - [anon_sym_u8_SQUOTE] = ACTIONS(2148), - [anon_sym_SQUOTE] = ACTIONS(2148), - [anon_sym_L_DQUOTE] = ACTIONS(2148), - [anon_sym_u_DQUOTE] = ACTIONS(2148), - [anon_sym_U_DQUOTE] = ACTIONS(2148), - [anon_sym_u8_DQUOTE] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2148), - [sym_true] = ACTIONS(2146), - [sym_false] = ACTIONS(2146), - [sym_null] = ACTIONS(2146), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2148), - [anon_sym_ATimport] = ACTIONS(2148), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2146), - [anon_sym_ATcompatibility_alias] = ACTIONS(2148), - [anon_sym_ATprotocol] = ACTIONS(2148), - [anon_sym_ATclass] = ACTIONS(2148), - [anon_sym_ATinterface] = ACTIONS(2148), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2146), - [sym_method_attribute_specifier] = ACTIONS(2146), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2146), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2146), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2146), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2146), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2146), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2146), - [anon_sym_NS_AVAILABLE] = ACTIONS(2146), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2146), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_API_AVAILABLE] = ACTIONS(2146), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2146), - [anon_sym_API_DEPRECATED] = ACTIONS(2146), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2146), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2146), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2146), - [anon_sym___deprecated_msg] = ACTIONS(2146), - [anon_sym___deprecated_enum_msg] = ACTIONS(2146), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2146), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2146), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2146), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2146), - [anon_sym_ATimplementation] = ACTIONS(2148), - [anon_sym_typeof] = ACTIONS(2146), - [anon_sym___typeof] = ACTIONS(2146), - [anon_sym___typeof__] = ACTIONS(2146), - [sym_self] = ACTIONS(2146), - [sym_super] = ACTIONS(2146), - [sym_nil] = ACTIONS(2146), - [sym_id] = ACTIONS(2146), - [sym_instancetype] = ACTIONS(2146), - [sym_Class] = ACTIONS(2146), - [sym_SEL] = ACTIONS(2146), - [sym_IMP] = ACTIONS(2146), - [sym_BOOL] = ACTIONS(2146), - [sym_auto] = ACTIONS(2146), - [anon_sym_ATautoreleasepool] = ACTIONS(2148), - [anon_sym_ATsynchronized] = ACTIONS(2148), - [anon_sym_ATtry] = ACTIONS(2148), - [anon_sym_ATthrow] = ACTIONS(2148), - [anon_sym_ATselector] = ACTIONS(2148), - [anon_sym_ATencode] = ACTIONS(2148), - [anon_sym_AT] = ACTIONS(2146), - [sym_YES] = ACTIONS(2146), - [sym_NO] = ACTIONS(2146), - [anon_sym___builtin_available] = ACTIONS(2146), - [anon_sym_ATavailable] = ACTIONS(2148), - [anon_sym_va_arg] = ACTIONS(2146), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [855] = { - [sym_identifier] = ACTIONS(2150), - [aux_sym_preproc_include_token1] = ACTIONS(2152), - [aux_sym_preproc_def_token1] = ACTIONS(2152), - [aux_sym_preproc_if_token1] = ACTIONS(2150), - [aux_sym_preproc_if_token2] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2150), - [aux_sym_preproc_else_token1] = ACTIONS(2150), - [aux_sym_preproc_elif_token1] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_PLUS] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_typedef] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2150), - [anon_sym___attribute] = ACTIONS(2150), - [anon_sym___attribute__] = ACTIONS(2150), - [anon_sym___declspec] = ACTIONS(2150), - [anon_sym___cdecl] = ACTIONS(2150), - [anon_sym___clrcall] = ACTIONS(2150), - [anon_sym___stdcall] = ACTIONS(2150), - [anon_sym___fastcall] = ACTIONS(2150), - [anon_sym___thiscall] = ACTIONS(2150), - [anon_sym___vectorcall] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2150), - [anon_sym_auto] = ACTIONS(2150), - [anon_sym_register] = ACTIONS(2150), - [anon_sym_inline] = ACTIONS(2150), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2150), - [anon_sym_volatile] = ACTIONS(2150), - [anon_sym_restrict] = ACTIONS(2150), - [anon_sym__Atomic] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [anon_sym_out] = ACTIONS(2150), - [anon_sym_inout] = ACTIONS(2150), - [anon_sym_bycopy] = ACTIONS(2150), - [anon_sym_byref] = ACTIONS(2150), - [anon_sym_oneway] = ACTIONS(2150), - [anon_sym__Nullable] = ACTIONS(2150), - [anon_sym__Nonnull] = ACTIONS(2150), - [anon_sym__Nullable_result] = ACTIONS(2150), - [anon_sym__Null_unspecified] = ACTIONS(2150), - [anon_sym___autoreleasing] = ACTIONS(2150), - [anon_sym___nullable] = ACTIONS(2150), - [anon_sym___nonnull] = ACTIONS(2150), - [anon_sym___strong] = ACTIONS(2150), - [anon_sym___weak] = ACTIONS(2150), - [anon_sym___bridge] = ACTIONS(2150), - [anon_sym___bridge_transfer] = ACTIONS(2150), - [anon_sym___bridge_retained] = ACTIONS(2150), - [anon_sym___unsafe_unretained] = ACTIONS(2150), - [anon_sym___block] = ACTIONS(2150), - [anon_sym___kindof] = ACTIONS(2150), - [anon_sym___unused] = ACTIONS(2150), - [anon_sym__Complex] = ACTIONS(2150), - [anon_sym___complex] = ACTIONS(2150), - [anon_sym_IBOutlet] = ACTIONS(2150), - [anon_sym_IBInspectable] = ACTIONS(2150), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2150), - [anon_sym_signed] = ACTIONS(2150), - [anon_sym_unsigned] = ACTIONS(2150), - [anon_sym_long] = ACTIONS(2150), - [anon_sym_short] = ACTIONS(2150), - [sym_primitive_type] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_NS_ENUM] = ACTIONS(2150), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2150), - [anon_sym_NS_OPTIONS] = ACTIONS(2150), - [anon_sym_struct] = ACTIONS(2150), - [anon_sym_union] = ACTIONS(2150), - [anon_sym_if] = ACTIONS(2150), - [anon_sym_switch] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2150), - [anon_sym_default] = ACTIONS(2150), - [anon_sym_while] = ACTIONS(2150), - [anon_sym_do] = ACTIONS(2150), - [anon_sym_for] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(2150), - [anon_sym_break] = ACTIONS(2150), - [anon_sym_continue] = ACTIONS(2150), - [anon_sym_goto] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_sizeof] = ACTIONS(2150), - [sym_number_literal] = ACTIONS(2152), - [anon_sym_L_SQUOTE] = ACTIONS(2152), - [anon_sym_u_SQUOTE] = ACTIONS(2152), - [anon_sym_U_SQUOTE] = ACTIONS(2152), - [anon_sym_u8_SQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_L_DQUOTE] = ACTIONS(2152), - [anon_sym_u_DQUOTE] = ACTIONS(2152), - [anon_sym_U_DQUOTE] = ACTIONS(2152), - [anon_sym_u8_DQUOTE] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [sym_true] = ACTIONS(2150), - [sym_false] = ACTIONS(2150), - [sym_null] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2152), - [anon_sym_ATimport] = ACTIONS(2152), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2150), - [anon_sym_ATcompatibility_alias] = ACTIONS(2152), - [anon_sym_ATprotocol] = ACTIONS(2152), - [anon_sym_ATclass] = ACTIONS(2152), - [anon_sym_ATinterface] = ACTIONS(2152), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2150), - [sym_method_attribute_specifier] = ACTIONS(2150), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2150), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE] = ACTIONS(2150), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_API_AVAILABLE] = ACTIONS(2150), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_API_DEPRECATED] = ACTIONS(2150), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2150), - [anon_sym___deprecated_msg] = ACTIONS(2150), - [anon_sym___deprecated_enum_msg] = ACTIONS(2150), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2150), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2150), - [anon_sym_ATimplementation] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2150), - [anon_sym___typeof] = ACTIONS(2150), - [anon_sym___typeof__] = ACTIONS(2150), - [sym_self] = ACTIONS(2150), - [sym_super] = ACTIONS(2150), - [sym_nil] = ACTIONS(2150), - [sym_id] = ACTIONS(2150), - [sym_instancetype] = ACTIONS(2150), - [sym_Class] = ACTIONS(2150), - [sym_SEL] = ACTIONS(2150), - [sym_IMP] = ACTIONS(2150), - [sym_BOOL] = ACTIONS(2150), - [sym_auto] = ACTIONS(2150), - [anon_sym_ATautoreleasepool] = ACTIONS(2152), - [anon_sym_ATsynchronized] = ACTIONS(2152), - [anon_sym_ATtry] = ACTIONS(2152), - [anon_sym_ATthrow] = ACTIONS(2152), - [anon_sym_ATselector] = ACTIONS(2152), - [anon_sym_ATencode] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [sym_YES] = ACTIONS(2150), - [sym_NO] = ACTIONS(2150), - [anon_sym___builtin_available] = ACTIONS(2150), - [anon_sym_ATavailable] = ACTIONS(2152), - [anon_sym_va_arg] = ACTIONS(2150), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [856] = { - [sym_identifier] = ACTIONS(2150), - [aux_sym_preproc_include_token1] = ACTIONS(2152), - [aux_sym_preproc_def_token1] = ACTIONS(2152), - [aux_sym_preproc_if_token1] = ACTIONS(2150), - [aux_sym_preproc_if_token2] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2150), - [aux_sym_preproc_else_token1] = ACTIONS(2150), - [aux_sym_preproc_elif_token1] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_PLUS] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_typedef] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2150), - [anon_sym___attribute] = ACTIONS(2150), - [anon_sym___attribute__] = ACTIONS(2150), - [anon_sym___declspec] = ACTIONS(2150), - [anon_sym___cdecl] = ACTIONS(2150), - [anon_sym___clrcall] = ACTIONS(2150), - [anon_sym___stdcall] = ACTIONS(2150), - [anon_sym___fastcall] = ACTIONS(2150), - [anon_sym___thiscall] = ACTIONS(2150), - [anon_sym___vectorcall] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2150), - [anon_sym_auto] = ACTIONS(2150), - [anon_sym_register] = ACTIONS(2150), - [anon_sym_inline] = ACTIONS(2150), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2150), - [anon_sym_volatile] = ACTIONS(2150), - [anon_sym_restrict] = ACTIONS(2150), - [anon_sym__Atomic] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [anon_sym_out] = ACTIONS(2150), - [anon_sym_inout] = ACTIONS(2150), - [anon_sym_bycopy] = ACTIONS(2150), - [anon_sym_byref] = ACTIONS(2150), - [anon_sym_oneway] = ACTIONS(2150), - [anon_sym__Nullable] = ACTIONS(2150), - [anon_sym__Nonnull] = ACTIONS(2150), - [anon_sym__Nullable_result] = ACTIONS(2150), - [anon_sym__Null_unspecified] = ACTIONS(2150), - [anon_sym___autoreleasing] = ACTIONS(2150), - [anon_sym___nullable] = ACTIONS(2150), - [anon_sym___nonnull] = ACTIONS(2150), - [anon_sym___strong] = ACTIONS(2150), - [anon_sym___weak] = ACTIONS(2150), - [anon_sym___bridge] = ACTIONS(2150), - [anon_sym___bridge_transfer] = ACTIONS(2150), - [anon_sym___bridge_retained] = ACTIONS(2150), - [anon_sym___unsafe_unretained] = ACTIONS(2150), - [anon_sym___block] = ACTIONS(2150), - [anon_sym___kindof] = ACTIONS(2150), - [anon_sym___unused] = ACTIONS(2150), - [anon_sym__Complex] = ACTIONS(2150), - [anon_sym___complex] = ACTIONS(2150), - [anon_sym_IBOutlet] = ACTIONS(2150), - [anon_sym_IBInspectable] = ACTIONS(2150), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2150), - [anon_sym_signed] = ACTIONS(2150), - [anon_sym_unsigned] = ACTIONS(2150), - [anon_sym_long] = ACTIONS(2150), - [anon_sym_short] = ACTIONS(2150), - [sym_primitive_type] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_NS_ENUM] = ACTIONS(2150), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2150), - [anon_sym_NS_OPTIONS] = ACTIONS(2150), - [anon_sym_struct] = ACTIONS(2150), - [anon_sym_union] = ACTIONS(2150), - [anon_sym_if] = ACTIONS(2150), - [anon_sym_switch] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2150), - [anon_sym_default] = ACTIONS(2150), - [anon_sym_while] = ACTIONS(2150), - [anon_sym_do] = ACTIONS(2150), - [anon_sym_for] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(2150), - [anon_sym_break] = ACTIONS(2150), - [anon_sym_continue] = ACTIONS(2150), - [anon_sym_goto] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_sizeof] = ACTIONS(2150), - [sym_number_literal] = ACTIONS(2152), - [anon_sym_L_SQUOTE] = ACTIONS(2152), - [anon_sym_u_SQUOTE] = ACTIONS(2152), - [anon_sym_U_SQUOTE] = ACTIONS(2152), - [anon_sym_u8_SQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_L_DQUOTE] = ACTIONS(2152), - [anon_sym_u_DQUOTE] = ACTIONS(2152), - [anon_sym_U_DQUOTE] = ACTIONS(2152), - [anon_sym_u8_DQUOTE] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [sym_true] = ACTIONS(2150), - [sym_false] = ACTIONS(2150), - [sym_null] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2152), - [anon_sym_ATimport] = ACTIONS(2152), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2150), - [anon_sym_ATcompatibility_alias] = ACTIONS(2152), - [anon_sym_ATprotocol] = ACTIONS(2152), - [anon_sym_ATclass] = ACTIONS(2152), - [anon_sym_ATinterface] = ACTIONS(2152), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2150), - [sym_method_attribute_specifier] = ACTIONS(2150), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2150), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE] = ACTIONS(2150), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_API_AVAILABLE] = ACTIONS(2150), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_API_DEPRECATED] = ACTIONS(2150), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2150), - [anon_sym___deprecated_msg] = ACTIONS(2150), - [anon_sym___deprecated_enum_msg] = ACTIONS(2150), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2150), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2150), - [anon_sym_ATimplementation] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2150), - [anon_sym___typeof] = ACTIONS(2150), - [anon_sym___typeof__] = ACTIONS(2150), - [sym_self] = ACTIONS(2150), - [sym_super] = ACTIONS(2150), - [sym_nil] = ACTIONS(2150), - [sym_id] = ACTIONS(2150), - [sym_instancetype] = ACTIONS(2150), - [sym_Class] = ACTIONS(2150), - [sym_SEL] = ACTIONS(2150), - [sym_IMP] = ACTIONS(2150), - [sym_BOOL] = ACTIONS(2150), - [sym_auto] = ACTIONS(2150), - [anon_sym_ATautoreleasepool] = ACTIONS(2152), - [anon_sym_ATsynchronized] = ACTIONS(2152), - [anon_sym_ATtry] = ACTIONS(2152), - [anon_sym_ATthrow] = ACTIONS(2152), - [anon_sym_ATselector] = ACTIONS(2152), - [anon_sym_ATencode] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [sym_YES] = ACTIONS(2150), - [sym_NO] = ACTIONS(2150), - [anon_sym___builtin_available] = ACTIONS(2150), - [anon_sym_ATavailable] = ACTIONS(2152), - [anon_sym_va_arg] = ACTIONS(2150), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [857] = { - [sym_identifier] = ACTIONS(2150), - [aux_sym_preproc_include_token1] = ACTIONS(2152), - [aux_sym_preproc_def_token1] = ACTIONS(2152), - [aux_sym_preproc_if_token1] = ACTIONS(2150), - [aux_sym_preproc_if_token2] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2150), - [aux_sym_preproc_else_token1] = ACTIONS(2150), - [aux_sym_preproc_elif_token1] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_PLUS] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_typedef] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2150), - [anon_sym___attribute] = ACTIONS(2150), - [anon_sym___attribute__] = ACTIONS(2150), - [anon_sym___declspec] = ACTIONS(2150), - [anon_sym___cdecl] = ACTIONS(2150), - [anon_sym___clrcall] = ACTIONS(2150), - [anon_sym___stdcall] = ACTIONS(2150), - [anon_sym___fastcall] = ACTIONS(2150), - [anon_sym___thiscall] = ACTIONS(2150), - [anon_sym___vectorcall] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2150), - [anon_sym_auto] = ACTIONS(2150), - [anon_sym_register] = ACTIONS(2150), - [anon_sym_inline] = ACTIONS(2150), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2150), - [anon_sym_volatile] = ACTIONS(2150), - [anon_sym_restrict] = ACTIONS(2150), - [anon_sym__Atomic] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [anon_sym_out] = ACTIONS(2150), - [anon_sym_inout] = ACTIONS(2150), - [anon_sym_bycopy] = ACTIONS(2150), - [anon_sym_byref] = ACTIONS(2150), - [anon_sym_oneway] = ACTIONS(2150), - [anon_sym__Nullable] = ACTIONS(2150), - [anon_sym__Nonnull] = ACTIONS(2150), - [anon_sym__Nullable_result] = ACTIONS(2150), - [anon_sym__Null_unspecified] = ACTIONS(2150), - [anon_sym___autoreleasing] = ACTIONS(2150), - [anon_sym___nullable] = ACTIONS(2150), - [anon_sym___nonnull] = ACTIONS(2150), - [anon_sym___strong] = ACTIONS(2150), - [anon_sym___weak] = ACTIONS(2150), - [anon_sym___bridge] = ACTIONS(2150), - [anon_sym___bridge_transfer] = ACTIONS(2150), - [anon_sym___bridge_retained] = ACTIONS(2150), - [anon_sym___unsafe_unretained] = ACTIONS(2150), - [anon_sym___block] = ACTIONS(2150), - [anon_sym___kindof] = ACTIONS(2150), - [anon_sym___unused] = ACTIONS(2150), - [anon_sym__Complex] = ACTIONS(2150), - [anon_sym___complex] = ACTIONS(2150), - [anon_sym_IBOutlet] = ACTIONS(2150), - [anon_sym_IBInspectable] = ACTIONS(2150), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2150), - [anon_sym_signed] = ACTIONS(2150), - [anon_sym_unsigned] = ACTIONS(2150), - [anon_sym_long] = ACTIONS(2150), - [anon_sym_short] = ACTIONS(2150), - [sym_primitive_type] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_NS_ENUM] = ACTIONS(2150), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2150), - [anon_sym_NS_OPTIONS] = ACTIONS(2150), - [anon_sym_struct] = ACTIONS(2150), - [anon_sym_union] = ACTIONS(2150), - [anon_sym_if] = ACTIONS(2150), - [anon_sym_switch] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2150), - [anon_sym_default] = ACTIONS(2150), - [anon_sym_while] = ACTIONS(2150), - [anon_sym_do] = ACTIONS(2150), - [anon_sym_for] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(2150), - [anon_sym_break] = ACTIONS(2150), - [anon_sym_continue] = ACTIONS(2150), - [anon_sym_goto] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_sizeof] = ACTIONS(2150), - [sym_number_literal] = ACTIONS(2152), - [anon_sym_L_SQUOTE] = ACTIONS(2152), - [anon_sym_u_SQUOTE] = ACTIONS(2152), - [anon_sym_U_SQUOTE] = ACTIONS(2152), - [anon_sym_u8_SQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_L_DQUOTE] = ACTIONS(2152), - [anon_sym_u_DQUOTE] = ACTIONS(2152), - [anon_sym_U_DQUOTE] = ACTIONS(2152), - [anon_sym_u8_DQUOTE] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [sym_true] = ACTIONS(2150), - [sym_false] = ACTIONS(2150), - [sym_null] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2152), - [anon_sym_ATimport] = ACTIONS(2152), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2150), - [anon_sym_ATcompatibility_alias] = ACTIONS(2152), - [anon_sym_ATprotocol] = ACTIONS(2152), - [anon_sym_ATclass] = ACTIONS(2152), - [anon_sym_ATinterface] = ACTIONS(2152), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2150), - [sym_method_attribute_specifier] = ACTIONS(2150), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2150), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE] = ACTIONS(2150), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_API_AVAILABLE] = ACTIONS(2150), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_API_DEPRECATED] = ACTIONS(2150), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2150), - [anon_sym___deprecated_msg] = ACTIONS(2150), - [anon_sym___deprecated_enum_msg] = ACTIONS(2150), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2150), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2150), - [anon_sym_ATimplementation] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2150), - [anon_sym___typeof] = ACTIONS(2150), - [anon_sym___typeof__] = ACTIONS(2150), - [sym_self] = ACTIONS(2150), - [sym_super] = ACTIONS(2150), - [sym_nil] = ACTIONS(2150), - [sym_id] = ACTIONS(2150), - [sym_instancetype] = ACTIONS(2150), - [sym_Class] = ACTIONS(2150), - [sym_SEL] = ACTIONS(2150), - [sym_IMP] = ACTIONS(2150), - [sym_BOOL] = ACTIONS(2150), - [sym_auto] = ACTIONS(2150), - [anon_sym_ATautoreleasepool] = ACTIONS(2152), - [anon_sym_ATsynchronized] = ACTIONS(2152), - [anon_sym_ATtry] = ACTIONS(2152), - [anon_sym_ATthrow] = ACTIONS(2152), - [anon_sym_ATselector] = ACTIONS(2152), - [anon_sym_ATencode] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [sym_YES] = ACTIONS(2150), - [sym_NO] = ACTIONS(2150), - [anon_sym___builtin_available] = ACTIONS(2150), - [anon_sym_ATavailable] = ACTIONS(2152), - [anon_sym_va_arg] = ACTIONS(2150), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [858] = { - [sym_identifier] = ACTIONS(2150), - [aux_sym_preproc_include_token1] = ACTIONS(2152), - [aux_sym_preproc_def_token1] = ACTIONS(2152), - [aux_sym_preproc_if_token1] = ACTIONS(2150), - [aux_sym_preproc_if_token2] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2150), - [aux_sym_preproc_else_token1] = ACTIONS(2150), - [aux_sym_preproc_elif_token1] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_PLUS] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_typedef] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2150), - [anon_sym___attribute] = ACTIONS(2150), - [anon_sym___attribute__] = ACTIONS(2150), - [anon_sym___declspec] = ACTIONS(2150), - [anon_sym___cdecl] = ACTIONS(2150), - [anon_sym___clrcall] = ACTIONS(2150), - [anon_sym___stdcall] = ACTIONS(2150), - [anon_sym___fastcall] = ACTIONS(2150), - [anon_sym___thiscall] = ACTIONS(2150), - [anon_sym___vectorcall] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2150), - [anon_sym_auto] = ACTIONS(2150), - [anon_sym_register] = ACTIONS(2150), - [anon_sym_inline] = ACTIONS(2150), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2150), - [anon_sym_volatile] = ACTIONS(2150), - [anon_sym_restrict] = ACTIONS(2150), - [anon_sym__Atomic] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [anon_sym_out] = ACTIONS(2150), - [anon_sym_inout] = ACTIONS(2150), - [anon_sym_bycopy] = ACTIONS(2150), - [anon_sym_byref] = ACTIONS(2150), - [anon_sym_oneway] = ACTIONS(2150), - [anon_sym__Nullable] = ACTIONS(2150), - [anon_sym__Nonnull] = ACTIONS(2150), - [anon_sym__Nullable_result] = ACTIONS(2150), - [anon_sym__Null_unspecified] = ACTIONS(2150), - [anon_sym___autoreleasing] = ACTIONS(2150), - [anon_sym___nullable] = ACTIONS(2150), - [anon_sym___nonnull] = ACTIONS(2150), - [anon_sym___strong] = ACTIONS(2150), - [anon_sym___weak] = ACTIONS(2150), - [anon_sym___bridge] = ACTIONS(2150), - [anon_sym___bridge_transfer] = ACTIONS(2150), - [anon_sym___bridge_retained] = ACTIONS(2150), - [anon_sym___unsafe_unretained] = ACTIONS(2150), - [anon_sym___block] = ACTIONS(2150), - [anon_sym___kindof] = ACTIONS(2150), - [anon_sym___unused] = ACTIONS(2150), - [anon_sym__Complex] = ACTIONS(2150), - [anon_sym___complex] = ACTIONS(2150), - [anon_sym_IBOutlet] = ACTIONS(2150), - [anon_sym_IBInspectable] = ACTIONS(2150), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2150), - [anon_sym_signed] = ACTIONS(2150), - [anon_sym_unsigned] = ACTIONS(2150), - [anon_sym_long] = ACTIONS(2150), - [anon_sym_short] = ACTIONS(2150), - [sym_primitive_type] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_NS_ENUM] = ACTIONS(2150), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2150), - [anon_sym_NS_OPTIONS] = ACTIONS(2150), - [anon_sym_struct] = ACTIONS(2150), - [anon_sym_union] = ACTIONS(2150), - [anon_sym_if] = ACTIONS(2150), - [anon_sym_switch] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2150), - [anon_sym_default] = ACTIONS(2150), - [anon_sym_while] = ACTIONS(2150), - [anon_sym_do] = ACTIONS(2150), - [anon_sym_for] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(2150), - [anon_sym_break] = ACTIONS(2150), - [anon_sym_continue] = ACTIONS(2150), - [anon_sym_goto] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_sizeof] = ACTIONS(2150), - [sym_number_literal] = ACTIONS(2152), - [anon_sym_L_SQUOTE] = ACTIONS(2152), - [anon_sym_u_SQUOTE] = ACTIONS(2152), - [anon_sym_U_SQUOTE] = ACTIONS(2152), - [anon_sym_u8_SQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_L_DQUOTE] = ACTIONS(2152), - [anon_sym_u_DQUOTE] = ACTIONS(2152), - [anon_sym_U_DQUOTE] = ACTIONS(2152), - [anon_sym_u8_DQUOTE] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [sym_true] = ACTIONS(2150), - [sym_false] = ACTIONS(2150), - [sym_null] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2152), - [anon_sym_ATimport] = ACTIONS(2152), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2150), - [anon_sym_ATcompatibility_alias] = ACTIONS(2152), - [anon_sym_ATprotocol] = ACTIONS(2152), - [anon_sym_ATclass] = ACTIONS(2152), - [anon_sym_ATinterface] = ACTIONS(2152), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2150), - [sym_method_attribute_specifier] = ACTIONS(2150), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2150), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE] = ACTIONS(2150), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_API_AVAILABLE] = ACTIONS(2150), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_API_DEPRECATED] = ACTIONS(2150), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2150), - [anon_sym___deprecated_msg] = ACTIONS(2150), - [anon_sym___deprecated_enum_msg] = ACTIONS(2150), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2150), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2150), - [anon_sym_ATimplementation] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2150), - [anon_sym___typeof] = ACTIONS(2150), - [anon_sym___typeof__] = ACTIONS(2150), - [sym_self] = ACTIONS(2150), - [sym_super] = ACTIONS(2150), - [sym_nil] = ACTIONS(2150), - [sym_id] = ACTIONS(2150), - [sym_instancetype] = ACTIONS(2150), - [sym_Class] = ACTIONS(2150), - [sym_SEL] = ACTIONS(2150), - [sym_IMP] = ACTIONS(2150), - [sym_BOOL] = ACTIONS(2150), - [sym_auto] = ACTIONS(2150), - [anon_sym_ATautoreleasepool] = ACTIONS(2152), - [anon_sym_ATsynchronized] = ACTIONS(2152), - [anon_sym_ATtry] = ACTIONS(2152), - [anon_sym_ATthrow] = ACTIONS(2152), - [anon_sym_ATselector] = ACTIONS(2152), - [anon_sym_ATencode] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [sym_YES] = ACTIONS(2150), - [sym_NO] = ACTIONS(2150), - [anon_sym___builtin_available] = ACTIONS(2150), - [anon_sym_ATavailable] = ACTIONS(2152), - [anon_sym_va_arg] = ACTIONS(2150), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [859] = { - [sym_identifier] = ACTIONS(2154), - [aux_sym_preproc_include_token1] = ACTIONS(2156), - [aux_sym_preproc_def_token1] = ACTIONS(2156), - [aux_sym_preproc_if_token1] = ACTIONS(2154), - [aux_sym_preproc_if_token2] = ACTIONS(2154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2154), - [aux_sym_preproc_else_token1] = ACTIONS(2154), - [aux_sym_preproc_elif_token1] = ACTIONS(2154), - [anon_sym_LPAREN2] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2154), - [anon_sym_PLUS] = ACTIONS(2154), - [anon_sym_STAR] = ACTIONS(2156), - [anon_sym_CARET] = ACTIONS(2156), - [anon_sym_AMP] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2156), - [anon_sym_typedef] = ACTIONS(2154), - [anon_sym_extern] = ACTIONS(2154), - [anon_sym___attribute] = ACTIONS(2154), - [anon_sym___attribute__] = ACTIONS(2154), - [anon_sym___declspec] = ACTIONS(2154), - [anon_sym___cdecl] = ACTIONS(2154), - [anon_sym___clrcall] = ACTIONS(2154), - [anon_sym___stdcall] = ACTIONS(2154), - [anon_sym___fastcall] = ACTIONS(2154), - [anon_sym___thiscall] = ACTIONS(2154), - [anon_sym___vectorcall] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2154), - [anon_sym_auto] = ACTIONS(2154), - [anon_sym_register] = ACTIONS(2154), - [anon_sym_inline] = ACTIONS(2154), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2154), - [anon_sym_const] = ACTIONS(2154), - [anon_sym_volatile] = ACTIONS(2154), - [anon_sym_restrict] = ACTIONS(2154), - [anon_sym__Atomic] = ACTIONS(2154), - [anon_sym_in] = ACTIONS(2154), - [anon_sym_out] = ACTIONS(2154), - [anon_sym_inout] = ACTIONS(2154), - [anon_sym_bycopy] = ACTIONS(2154), - [anon_sym_byref] = ACTIONS(2154), - [anon_sym_oneway] = ACTIONS(2154), - [anon_sym__Nullable] = ACTIONS(2154), - [anon_sym__Nonnull] = ACTIONS(2154), - [anon_sym__Nullable_result] = ACTIONS(2154), - [anon_sym__Null_unspecified] = ACTIONS(2154), - [anon_sym___autoreleasing] = ACTIONS(2154), - [anon_sym___nullable] = ACTIONS(2154), - [anon_sym___nonnull] = ACTIONS(2154), - [anon_sym___strong] = ACTIONS(2154), - [anon_sym___weak] = ACTIONS(2154), - [anon_sym___bridge] = ACTIONS(2154), - [anon_sym___bridge_transfer] = ACTIONS(2154), - [anon_sym___bridge_retained] = ACTIONS(2154), - [anon_sym___unsafe_unretained] = ACTIONS(2154), - [anon_sym___block] = ACTIONS(2154), - [anon_sym___kindof] = ACTIONS(2154), - [anon_sym___unused] = ACTIONS(2154), - [anon_sym__Complex] = ACTIONS(2154), - [anon_sym___complex] = ACTIONS(2154), - [anon_sym_IBOutlet] = ACTIONS(2154), - [anon_sym_IBInspectable] = ACTIONS(2154), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2154), - [anon_sym_signed] = ACTIONS(2154), - [anon_sym_unsigned] = ACTIONS(2154), - [anon_sym_long] = ACTIONS(2154), - [anon_sym_short] = ACTIONS(2154), - [sym_primitive_type] = ACTIONS(2154), - [anon_sym_enum] = ACTIONS(2154), - [anon_sym_NS_ENUM] = ACTIONS(2154), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2154), - [anon_sym_NS_OPTIONS] = ACTIONS(2154), - [anon_sym_struct] = ACTIONS(2154), - [anon_sym_union] = ACTIONS(2154), - [anon_sym_if] = ACTIONS(2154), - [anon_sym_switch] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2154), - [anon_sym_default] = ACTIONS(2154), - [anon_sym_while] = ACTIONS(2154), - [anon_sym_do] = ACTIONS(2154), - [anon_sym_for] = ACTIONS(2154), - [anon_sym_return] = ACTIONS(2154), - [anon_sym_break] = ACTIONS(2154), - [anon_sym_continue] = ACTIONS(2154), - [anon_sym_goto] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2156), - [anon_sym_sizeof] = ACTIONS(2154), - [sym_number_literal] = ACTIONS(2156), - [anon_sym_L_SQUOTE] = ACTIONS(2156), - [anon_sym_u_SQUOTE] = ACTIONS(2156), - [anon_sym_U_SQUOTE] = ACTIONS(2156), - [anon_sym_u8_SQUOTE] = ACTIONS(2156), - [anon_sym_SQUOTE] = ACTIONS(2156), - [anon_sym_L_DQUOTE] = ACTIONS(2156), - [anon_sym_u_DQUOTE] = ACTIONS(2156), - [anon_sym_U_DQUOTE] = ACTIONS(2156), - [anon_sym_u8_DQUOTE] = ACTIONS(2156), - [anon_sym_DQUOTE] = ACTIONS(2156), - [sym_true] = ACTIONS(2154), - [sym_false] = ACTIONS(2154), - [sym_null] = ACTIONS(2154), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2156), - [anon_sym_ATimport] = ACTIONS(2156), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2154), - [anon_sym_ATcompatibility_alias] = ACTIONS(2156), - [anon_sym_ATprotocol] = ACTIONS(2156), - [anon_sym_ATclass] = ACTIONS(2156), - [anon_sym_ATinterface] = ACTIONS(2156), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2154), - [sym_method_attribute_specifier] = ACTIONS(2154), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2154), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2154), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2154), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2154), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2154), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2154), - [anon_sym_NS_AVAILABLE] = ACTIONS(2154), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2154), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2154), - [anon_sym_API_AVAILABLE] = ACTIONS(2154), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2154), - [anon_sym_API_DEPRECATED] = ACTIONS(2154), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2154), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2154), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2154), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2154), - [anon_sym___deprecated_msg] = ACTIONS(2154), - [anon_sym___deprecated_enum_msg] = ACTIONS(2154), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2154), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2154), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2154), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2154), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2154), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2154), - [anon_sym_ATimplementation] = ACTIONS(2156), - [anon_sym_typeof] = ACTIONS(2154), - [anon_sym___typeof] = ACTIONS(2154), - [anon_sym___typeof__] = ACTIONS(2154), - [sym_self] = ACTIONS(2154), - [sym_super] = ACTIONS(2154), - [sym_nil] = ACTIONS(2154), - [sym_id] = ACTIONS(2154), - [sym_instancetype] = ACTIONS(2154), - [sym_Class] = ACTIONS(2154), - [sym_SEL] = ACTIONS(2154), - [sym_IMP] = ACTIONS(2154), - [sym_BOOL] = ACTIONS(2154), - [sym_auto] = ACTIONS(2154), - [anon_sym_ATautoreleasepool] = ACTIONS(2156), - [anon_sym_ATsynchronized] = ACTIONS(2156), - [anon_sym_ATtry] = ACTIONS(2156), - [anon_sym_ATthrow] = ACTIONS(2156), - [anon_sym_ATselector] = ACTIONS(2156), - [anon_sym_ATencode] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [sym_YES] = ACTIONS(2154), - [sym_NO] = ACTIONS(2154), - [anon_sym___builtin_available] = ACTIONS(2154), - [anon_sym_ATavailable] = ACTIONS(2156), - [anon_sym_va_arg] = ACTIONS(2154), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [860] = { - [sym_identifier] = ACTIONS(2158), - [aux_sym_preproc_include_token1] = ACTIONS(2160), - [aux_sym_preproc_def_token1] = ACTIONS(2160), - [aux_sym_preproc_if_token1] = ACTIONS(2158), - [aux_sym_preproc_if_token2] = ACTIONS(2158), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2158), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2158), - [aux_sym_preproc_else_token1] = ACTIONS(2158), - [aux_sym_preproc_elif_token1] = ACTIONS(2158), - [anon_sym_LPAREN2] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_typedef] = ACTIONS(2158), - [anon_sym_extern] = ACTIONS(2158), - [anon_sym___attribute] = ACTIONS(2158), - [anon_sym___attribute__] = ACTIONS(2158), - [anon_sym___declspec] = ACTIONS(2158), - [anon_sym___cdecl] = ACTIONS(2158), - [anon_sym___clrcall] = ACTIONS(2158), - [anon_sym___stdcall] = ACTIONS(2158), - [anon_sym___fastcall] = ACTIONS(2158), - [anon_sym___thiscall] = ACTIONS(2158), - [anon_sym___vectorcall] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2158), - [anon_sym_auto] = ACTIONS(2158), - [anon_sym_register] = ACTIONS(2158), - [anon_sym_inline] = ACTIONS(2158), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2158), - [anon_sym_const] = ACTIONS(2158), - [anon_sym_volatile] = ACTIONS(2158), - [anon_sym_restrict] = ACTIONS(2158), - [anon_sym__Atomic] = ACTIONS(2158), - [anon_sym_in] = ACTIONS(2158), - [anon_sym_out] = ACTIONS(2158), - [anon_sym_inout] = ACTIONS(2158), - [anon_sym_bycopy] = ACTIONS(2158), - [anon_sym_byref] = ACTIONS(2158), - [anon_sym_oneway] = ACTIONS(2158), - [anon_sym__Nullable] = ACTIONS(2158), - [anon_sym__Nonnull] = ACTIONS(2158), - [anon_sym__Nullable_result] = ACTIONS(2158), - [anon_sym__Null_unspecified] = ACTIONS(2158), - [anon_sym___autoreleasing] = ACTIONS(2158), - [anon_sym___nullable] = ACTIONS(2158), - [anon_sym___nonnull] = ACTIONS(2158), - [anon_sym___strong] = ACTIONS(2158), - [anon_sym___weak] = ACTIONS(2158), - [anon_sym___bridge] = ACTIONS(2158), - [anon_sym___bridge_transfer] = ACTIONS(2158), - [anon_sym___bridge_retained] = ACTIONS(2158), - [anon_sym___unsafe_unretained] = ACTIONS(2158), - [anon_sym___block] = ACTIONS(2158), - [anon_sym___kindof] = ACTIONS(2158), - [anon_sym___unused] = ACTIONS(2158), - [anon_sym__Complex] = ACTIONS(2158), - [anon_sym___complex] = ACTIONS(2158), - [anon_sym_IBOutlet] = ACTIONS(2158), - [anon_sym_IBInspectable] = ACTIONS(2158), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2158), - [anon_sym_signed] = ACTIONS(2158), - [anon_sym_unsigned] = ACTIONS(2158), - [anon_sym_long] = ACTIONS(2158), - [anon_sym_short] = ACTIONS(2158), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_enum] = ACTIONS(2158), - [anon_sym_NS_ENUM] = ACTIONS(2158), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2158), - [anon_sym_NS_OPTIONS] = ACTIONS(2158), - [anon_sym_struct] = ACTIONS(2158), - [anon_sym_union] = ACTIONS(2158), - [anon_sym_if] = ACTIONS(2158), - [anon_sym_switch] = ACTIONS(2158), - [anon_sym_case] = ACTIONS(2158), - [anon_sym_default] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2158), - [anon_sym_do] = ACTIONS(2158), - [anon_sym_for] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2158), - [anon_sym_break] = ACTIONS(2158), - [anon_sym_continue] = ACTIONS(2158), - [anon_sym_goto] = ACTIONS(2158), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2158), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2160), - [anon_sym_u_SQUOTE] = ACTIONS(2160), - [anon_sym_U_SQUOTE] = ACTIONS(2160), - [anon_sym_u8_SQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_L_DQUOTE] = ACTIONS(2160), - [anon_sym_u_DQUOTE] = ACTIONS(2160), - [anon_sym_U_DQUOTE] = ACTIONS(2160), - [anon_sym_u8_DQUOTE] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [sym_true] = ACTIONS(2158), - [sym_false] = ACTIONS(2158), - [sym_null] = ACTIONS(2158), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2160), - [anon_sym_ATimport] = ACTIONS(2160), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2158), - [anon_sym_ATcompatibility_alias] = ACTIONS(2160), - [anon_sym_ATprotocol] = ACTIONS(2160), - [anon_sym_ATclass] = ACTIONS(2160), - [anon_sym_ATinterface] = ACTIONS(2160), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2158), - [sym_method_attribute_specifier] = ACTIONS(2158), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2158), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2158), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2158), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2158), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2158), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2158), - [anon_sym_NS_AVAILABLE] = ACTIONS(2158), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2158), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2158), - [anon_sym_API_AVAILABLE] = ACTIONS(2158), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2158), - [anon_sym_API_DEPRECATED] = ACTIONS(2158), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2158), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2158), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2158), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2158), - [anon_sym___deprecated_msg] = ACTIONS(2158), - [anon_sym___deprecated_enum_msg] = ACTIONS(2158), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2158), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2158), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2158), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2158), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2158), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2158), - [anon_sym_ATimplementation] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2158), - [anon_sym___typeof] = ACTIONS(2158), - [anon_sym___typeof__] = ACTIONS(2158), - [sym_self] = ACTIONS(2158), - [sym_super] = ACTIONS(2158), - [sym_nil] = ACTIONS(2158), - [sym_id] = ACTIONS(2158), - [sym_instancetype] = ACTIONS(2158), - [sym_Class] = ACTIONS(2158), - [sym_SEL] = ACTIONS(2158), - [sym_IMP] = ACTIONS(2158), - [sym_BOOL] = ACTIONS(2158), - [sym_auto] = ACTIONS(2158), - [anon_sym_ATautoreleasepool] = ACTIONS(2160), - [anon_sym_ATsynchronized] = ACTIONS(2160), - [anon_sym_ATtry] = ACTIONS(2160), - [anon_sym_ATthrow] = ACTIONS(2160), - [anon_sym_ATselector] = ACTIONS(2160), - [anon_sym_ATencode] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2158), - [sym_YES] = ACTIONS(2158), - [sym_NO] = ACTIONS(2158), - [anon_sym___builtin_available] = ACTIONS(2158), - [anon_sym_ATavailable] = ACTIONS(2160), - [anon_sym_va_arg] = ACTIONS(2158), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [861] = { - [sym_identifier] = ACTIONS(2162), - [aux_sym_preproc_include_token1] = ACTIONS(2164), - [aux_sym_preproc_def_token1] = ACTIONS(2164), - [aux_sym_preproc_if_token1] = ACTIONS(2162), - [aux_sym_preproc_if_token2] = ACTIONS(2162), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2162), - [aux_sym_preproc_else_token1] = ACTIONS(2162), - [aux_sym_preproc_elif_token1] = ACTIONS(2162), - [anon_sym_LPAREN2] = ACTIONS(2164), - [anon_sym_BANG] = ACTIONS(2164), - [anon_sym_TILDE] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_typedef] = ACTIONS(2162), - [anon_sym_extern] = ACTIONS(2162), - [anon_sym___attribute] = ACTIONS(2162), - [anon_sym___attribute__] = ACTIONS(2162), - [anon_sym___declspec] = ACTIONS(2162), - [anon_sym___cdecl] = ACTIONS(2162), - [anon_sym___clrcall] = ACTIONS(2162), - [anon_sym___stdcall] = ACTIONS(2162), - [anon_sym___fastcall] = ACTIONS(2162), - [anon_sym___thiscall] = ACTIONS(2162), - [anon_sym___vectorcall] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2162), - [anon_sym_auto] = ACTIONS(2162), - [anon_sym_register] = ACTIONS(2162), - [anon_sym_inline] = ACTIONS(2162), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_volatile] = ACTIONS(2162), - [anon_sym_restrict] = ACTIONS(2162), - [anon_sym__Atomic] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_out] = ACTIONS(2162), - [anon_sym_inout] = ACTIONS(2162), - [anon_sym_bycopy] = ACTIONS(2162), - [anon_sym_byref] = ACTIONS(2162), - [anon_sym_oneway] = ACTIONS(2162), - [anon_sym__Nullable] = ACTIONS(2162), - [anon_sym__Nonnull] = ACTIONS(2162), - [anon_sym__Nullable_result] = ACTIONS(2162), - [anon_sym__Null_unspecified] = ACTIONS(2162), - [anon_sym___autoreleasing] = ACTIONS(2162), - [anon_sym___nullable] = ACTIONS(2162), - [anon_sym___nonnull] = ACTIONS(2162), - [anon_sym___strong] = ACTIONS(2162), - [anon_sym___weak] = ACTIONS(2162), - [anon_sym___bridge] = ACTIONS(2162), - [anon_sym___bridge_transfer] = ACTIONS(2162), - [anon_sym___bridge_retained] = ACTIONS(2162), - [anon_sym___unsafe_unretained] = ACTIONS(2162), - [anon_sym___block] = ACTIONS(2162), - [anon_sym___kindof] = ACTIONS(2162), - [anon_sym___unused] = ACTIONS(2162), - [anon_sym__Complex] = ACTIONS(2162), - [anon_sym___complex] = ACTIONS(2162), - [anon_sym_IBOutlet] = ACTIONS(2162), - [anon_sym_IBInspectable] = ACTIONS(2162), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2162), - [anon_sym_signed] = ACTIONS(2162), - [anon_sym_unsigned] = ACTIONS(2162), - [anon_sym_long] = ACTIONS(2162), - [anon_sym_short] = ACTIONS(2162), - [sym_primitive_type] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_NS_ENUM] = ACTIONS(2162), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2162), - [anon_sym_NS_OPTIONS] = ACTIONS(2162), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_union] = ACTIONS(2162), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_switch] = ACTIONS(2162), - [anon_sym_case] = ACTIONS(2162), - [anon_sym_default] = ACTIONS(2162), - [anon_sym_while] = ACTIONS(2162), - [anon_sym_do] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_goto] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2164), - [anon_sym_sizeof] = ACTIONS(2162), - [sym_number_literal] = ACTIONS(2164), - [anon_sym_L_SQUOTE] = ACTIONS(2164), - [anon_sym_u_SQUOTE] = ACTIONS(2164), - [anon_sym_U_SQUOTE] = ACTIONS(2164), - [anon_sym_u8_SQUOTE] = ACTIONS(2164), - [anon_sym_SQUOTE] = ACTIONS(2164), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_null] = ACTIONS(2162), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2164), - [anon_sym_ATimport] = ACTIONS(2164), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2162), - [anon_sym_ATcompatibility_alias] = ACTIONS(2164), - [anon_sym_ATprotocol] = ACTIONS(2164), - [anon_sym_ATclass] = ACTIONS(2164), - [anon_sym_ATinterface] = ACTIONS(2164), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2162), - [sym_method_attribute_specifier] = ACTIONS(2162), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2162), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2162), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2162), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2162), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2162), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2162), - [anon_sym_NS_AVAILABLE] = ACTIONS(2162), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2162), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2162), - [anon_sym_API_AVAILABLE] = ACTIONS(2162), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2162), - [anon_sym_API_DEPRECATED] = ACTIONS(2162), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2162), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2162), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2162), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2162), - [anon_sym___deprecated_msg] = ACTIONS(2162), - [anon_sym___deprecated_enum_msg] = ACTIONS(2162), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2162), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2162), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2162), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2162), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2162), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2162), - [anon_sym_ATimplementation] = ACTIONS(2164), - [anon_sym_typeof] = ACTIONS(2162), - [anon_sym___typeof] = ACTIONS(2162), - [anon_sym___typeof__] = ACTIONS(2162), - [sym_self] = ACTIONS(2162), - [sym_super] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [sym_id] = ACTIONS(2162), - [sym_instancetype] = ACTIONS(2162), - [sym_Class] = ACTIONS(2162), - [sym_SEL] = ACTIONS(2162), - [sym_IMP] = ACTIONS(2162), - [sym_BOOL] = ACTIONS(2162), - [sym_auto] = ACTIONS(2162), - [anon_sym_ATautoreleasepool] = ACTIONS(2164), - [anon_sym_ATsynchronized] = ACTIONS(2164), - [anon_sym_ATtry] = ACTIONS(2164), - [anon_sym_ATthrow] = ACTIONS(2164), - [anon_sym_ATselector] = ACTIONS(2164), - [anon_sym_ATencode] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2162), - [sym_YES] = ACTIONS(2162), - [sym_NO] = ACTIONS(2162), - [anon_sym___builtin_available] = ACTIONS(2162), - [anon_sym_ATavailable] = ACTIONS(2164), - [anon_sym_va_arg] = ACTIONS(2162), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [862] = { - [sym_identifier] = ACTIONS(2166), - [aux_sym_preproc_include_token1] = ACTIONS(2168), - [aux_sym_preproc_def_token1] = ACTIONS(2168), - [aux_sym_preproc_if_token1] = ACTIONS(2166), - [aux_sym_preproc_if_token2] = ACTIONS(2166), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2166), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2166), - [aux_sym_preproc_else_token1] = ACTIONS(2166), - [aux_sym_preproc_elif_token1] = ACTIONS(2166), - [anon_sym_LPAREN2] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(2168), - [anon_sym_TILDE] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2168), - [anon_sym_CARET] = ACTIONS(2168), - [anon_sym_AMP] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2168), - [anon_sym_typedef] = ACTIONS(2166), - [anon_sym_extern] = ACTIONS(2166), - [anon_sym___attribute] = ACTIONS(2166), - [anon_sym___attribute__] = ACTIONS(2166), - [anon_sym___declspec] = ACTIONS(2166), - [anon_sym___cdecl] = ACTIONS(2166), - [anon_sym___clrcall] = ACTIONS(2166), - [anon_sym___stdcall] = ACTIONS(2166), - [anon_sym___fastcall] = ACTIONS(2166), - [anon_sym___thiscall] = ACTIONS(2166), - [anon_sym___vectorcall] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2166), - [anon_sym_auto] = ACTIONS(2166), - [anon_sym_register] = ACTIONS(2166), - [anon_sym_inline] = ACTIONS(2166), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2166), - [anon_sym_const] = ACTIONS(2166), - [anon_sym_volatile] = ACTIONS(2166), - [anon_sym_restrict] = ACTIONS(2166), - [anon_sym__Atomic] = ACTIONS(2166), - [anon_sym_in] = ACTIONS(2166), - [anon_sym_out] = ACTIONS(2166), - [anon_sym_inout] = ACTIONS(2166), - [anon_sym_bycopy] = ACTIONS(2166), - [anon_sym_byref] = ACTIONS(2166), - [anon_sym_oneway] = ACTIONS(2166), - [anon_sym__Nullable] = ACTIONS(2166), - [anon_sym__Nonnull] = ACTIONS(2166), - [anon_sym__Nullable_result] = ACTIONS(2166), - [anon_sym__Null_unspecified] = ACTIONS(2166), - [anon_sym___autoreleasing] = ACTIONS(2166), - [anon_sym___nullable] = ACTIONS(2166), - [anon_sym___nonnull] = ACTIONS(2166), - [anon_sym___strong] = ACTIONS(2166), - [anon_sym___weak] = ACTIONS(2166), - [anon_sym___bridge] = ACTIONS(2166), - [anon_sym___bridge_transfer] = ACTIONS(2166), - [anon_sym___bridge_retained] = ACTIONS(2166), - [anon_sym___unsafe_unretained] = ACTIONS(2166), - [anon_sym___block] = ACTIONS(2166), - [anon_sym___kindof] = ACTIONS(2166), - [anon_sym___unused] = ACTIONS(2166), - [anon_sym__Complex] = ACTIONS(2166), - [anon_sym___complex] = ACTIONS(2166), - [anon_sym_IBOutlet] = ACTIONS(2166), - [anon_sym_IBInspectable] = ACTIONS(2166), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2166), - [anon_sym_signed] = ACTIONS(2166), - [anon_sym_unsigned] = ACTIONS(2166), - [anon_sym_long] = ACTIONS(2166), - [anon_sym_short] = ACTIONS(2166), - [sym_primitive_type] = ACTIONS(2166), - [anon_sym_enum] = ACTIONS(2166), - [anon_sym_NS_ENUM] = ACTIONS(2166), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2166), - [anon_sym_NS_OPTIONS] = ACTIONS(2166), - [anon_sym_struct] = ACTIONS(2166), - [anon_sym_union] = ACTIONS(2166), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_switch] = ACTIONS(2166), - [anon_sym_case] = ACTIONS(2166), - [anon_sym_default] = ACTIONS(2166), - [anon_sym_while] = ACTIONS(2166), - [anon_sym_do] = ACTIONS(2166), - [anon_sym_for] = ACTIONS(2166), - [anon_sym_return] = ACTIONS(2166), - [anon_sym_break] = ACTIONS(2166), - [anon_sym_continue] = ACTIONS(2166), - [anon_sym_goto] = ACTIONS(2166), - [anon_sym_DASH_DASH] = ACTIONS(2168), - [anon_sym_PLUS_PLUS] = ACTIONS(2168), - [anon_sym_sizeof] = ACTIONS(2166), - [sym_number_literal] = ACTIONS(2168), - [anon_sym_L_SQUOTE] = ACTIONS(2168), - [anon_sym_u_SQUOTE] = ACTIONS(2168), - [anon_sym_U_SQUOTE] = ACTIONS(2168), - [anon_sym_u8_SQUOTE] = ACTIONS(2168), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_L_DQUOTE] = ACTIONS(2168), - [anon_sym_u_DQUOTE] = ACTIONS(2168), - [anon_sym_U_DQUOTE] = ACTIONS(2168), - [anon_sym_u8_DQUOTE] = ACTIONS(2168), - [anon_sym_DQUOTE] = ACTIONS(2168), - [sym_true] = ACTIONS(2166), - [sym_false] = ACTIONS(2166), - [sym_null] = ACTIONS(2166), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2168), - [anon_sym_ATimport] = ACTIONS(2168), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2166), - [anon_sym_ATcompatibility_alias] = ACTIONS(2168), - [anon_sym_ATprotocol] = ACTIONS(2168), - [anon_sym_ATclass] = ACTIONS(2168), - [anon_sym_ATinterface] = ACTIONS(2168), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2166), - [sym_method_attribute_specifier] = ACTIONS(2166), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2166), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2166), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2166), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2166), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2166), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2166), - [anon_sym_NS_AVAILABLE] = ACTIONS(2166), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2166), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2166), - [anon_sym_API_AVAILABLE] = ACTIONS(2166), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2166), - [anon_sym_API_DEPRECATED] = ACTIONS(2166), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2166), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2166), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2166), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2166), - [anon_sym___deprecated_msg] = ACTIONS(2166), - [anon_sym___deprecated_enum_msg] = ACTIONS(2166), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2166), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2166), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2166), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2166), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2166), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2166), - [anon_sym_ATimplementation] = ACTIONS(2168), - [anon_sym_typeof] = ACTIONS(2166), - [anon_sym___typeof] = ACTIONS(2166), - [anon_sym___typeof__] = ACTIONS(2166), - [sym_self] = ACTIONS(2166), - [sym_super] = ACTIONS(2166), - [sym_nil] = ACTIONS(2166), - [sym_id] = ACTIONS(2166), - [sym_instancetype] = ACTIONS(2166), - [sym_Class] = ACTIONS(2166), - [sym_SEL] = ACTIONS(2166), - [sym_IMP] = ACTIONS(2166), - [sym_BOOL] = ACTIONS(2166), - [sym_auto] = ACTIONS(2166), - [anon_sym_ATautoreleasepool] = ACTIONS(2168), - [anon_sym_ATsynchronized] = ACTIONS(2168), - [anon_sym_ATtry] = ACTIONS(2168), - [anon_sym_ATthrow] = ACTIONS(2168), - [anon_sym_ATselector] = ACTIONS(2168), - [anon_sym_ATencode] = ACTIONS(2168), - [anon_sym_AT] = ACTIONS(2166), - [sym_YES] = ACTIONS(2166), - [sym_NO] = ACTIONS(2166), - [anon_sym___builtin_available] = ACTIONS(2166), - [anon_sym_ATavailable] = ACTIONS(2168), - [anon_sym_va_arg] = ACTIONS(2166), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [863] = { - [sym_identifier] = ACTIONS(2170), - [aux_sym_preproc_include_token1] = ACTIONS(2172), - [aux_sym_preproc_def_token1] = ACTIONS(2172), - [aux_sym_preproc_if_token1] = ACTIONS(2170), - [aux_sym_preproc_if_token2] = ACTIONS(2170), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2170), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2170), - [aux_sym_preproc_else_token1] = ACTIONS(2170), - [aux_sym_preproc_elif_token1] = ACTIONS(2170), - [anon_sym_LPAREN2] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_TILDE] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2170), - [anon_sym_PLUS] = ACTIONS(2170), - [anon_sym_STAR] = ACTIONS(2172), - [anon_sym_CARET] = ACTIONS(2172), - [anon_sym_AMP] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_typedef] = ACTIONS(2170), - [anon_sym_extern] = ACTIONS(2170), - [anon_sym___attribute] = ACTIONS(2170), - [anon_sym___attribute__] = ACTIONS(2170), - [anon_sym___declspec] = ACTIONS(2170), - [anon_sym___cdecl] = ACTIONS(2170), - [anon_sym___clrcall] = ACTIONS(2170), - [anon_sym___stdcall] = ACTIONS(2170), - [anon_sym___fastcall] = ACTIONS(2170), - [anon_sym___thiscall] = ACTIONS(2170), - [anon_sym___vectorcall] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2170), - [anon_sym_auto] = ACTIONS(2170), - [anon_sym_register] = ACTIONS(2170), - [anon_sym_inline] = ACTIONS(2170), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2170), - [anon_sym_const] = ACTIONS(2170), - [anon_sym_volatile] = ACTIONS(2170), - [anon_sym_restrict] = ACTIONS(2170), - [anon_sym__Atomic] = ACTIONS(2170), - [anon_sym_in] = ACTIONS(2170), - [anon_sym_out] = ACTIONS(2170), - [anon_sym_inout] = ACTIONS(2170), - [anon_sym_bycopy] = ACTIONS(2170), - [anon_sym_byref] = ACTIONS(2170), - [anon_sym_oneway] = ACTIONS(2170), - [anon_sym__Nullable] = ACTIONS(2170), - [anon_sym__Nonnull] = ACTIONS(2170), - [anon_sym__Nullable_result] = ACTIONS(2170), - [anon_sym__Null_unspecified] = ACTIONS(2170), - [anon_sym___autoreleasing] = ACTIONS(2170), - [anon_sym___nullable] = ACTIONS(2170), - [anon_sym___nonnull] = ACTIONS(2170), - [anon_sym___strong] = ACTIONS(2170), - [anon_sym___weak] = ACTIONS(2170), - [anon_sym___bridge] = ACTIONS(2170), - [anon_sym___bridge_transfer] = ACTIONS(2170), - [anon_sym___bridge_retained] = ACTIONS(2170), - [anon_sym___unsafe_unretained] = ACTIONS(2170), - [anon_sym___block] = ACTIONS(2170), - [anon_sym___kindof] = ACTIONS(2170), - [anon_sym___unused] = ACTIONS(2170), - [anon_sym__Complex] = ACTIONS(2170), - [anon_sym___complex] = ACTIONS(2170), - [anon_sym_IBOutlet] = ACTIONS(2170), - [anon_sym_IBInspectable] = ACTIONS(2170), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2170), - [anon_sym_signed] = ACTIONS(2170), - [anon_sym_unsigned] = ACTIONS(2170), - [anon_sym_long] = ACTIONS(2170), - [anon_sym_short] = ACTIONS(2170), - [sym_primitive_type] = ACTIONS(2170), - [anon_sym_enum] = ACTIONS(2170), - [anon_sym_NS_ENUM] = ACTIONS(2170), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2170), - [anon_sym_NS_OPTIONS] = ACTIONS(2170), - [anon_sym_struct] = ACTIONS(2170), - [anon_sym_union] = ACTIONS(2170), - [anon_sym_if] = ACTIONS(2170), - [anon_sym_switch] = ACTIONS(2170), - [anon_sym_case] = ACTIONS(2170), - [anon_sym_default] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2170), - [anon_sym_do] = ACTIONS(2170), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_return] = ACTIONS(2170), - [anon_sym_break] = ACTIONS(2170), - [anon_sym_continue] = ACTIONS(2170), - [anon_sym_goto] = ACTIONS(2170), - [anon_sym_DASH_DASH] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(2172), - [anon_sym_sizeof] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2172), - [anon_sym_u_SQUOTE] = ACTIONS(2172), - [anon_sym_U_SQUOTE] = ACTIONS(2172), - [anon_sym_u8_SQUOTE] = ACTIONS(2172), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_L_DQUOTE] = ACTIONS(2172), - [anon_sym_u_DQUOTE] = ACTIONS(2172), - [anon_sym_U_DQUOTE] = ACTIONS(2172), - [anon_sym_u8_DQUOTE] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [sym_true] = ACTIONS(2170), - [sym_false] = ACTIONS(2170), - [sym_null] = ACTIONS(2170), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2172), - [anon_sym_ATimport] = ACTIONS(2172), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2170), - [anon_sym_ATcompatibility_alias] = ACTIONS(2172), - [anon_sym_ATprotocol] = ACTIONS(2172), - [anon_sym_ATclass] = ACTIONS(2172), - [anon_sym_ATinterface] = ACTIONS(2172), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2170), - [sym_method_attribute_specifier] = ACTIONS(2170), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2170), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2170), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2170), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2170), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2170), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2170), - [anon_sym_NS_AVAILABLE] = ACTIONS(2170), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2170), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2170), - [anon_sym_API_AVAILABLE] = ACTIONS(2170), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2170), - [anon_sym_API_DEPRECATED] = ACTIONS(2170), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2170), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2170), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2170), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2170), - [anon_sym___deprecated_msg] = ACTIONS(2170), - [anon_sym___deprecated_enum_msg] = ACTIONS(2170), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2170), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2170), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2170), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2170), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2170), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2170), - [anon_sym_ATimplementation] = ACTIONS(2172), - [anon_sym_typeof] = ACTIONS(2170), - [anon_sym___typeof] = ACTIONS(2170), - [anon_sym___typeof__] = ACTIONS(2170), - [sym_self] = ACTIONS(2170), - [sym_super] = ACTIONS(2170), - [sym_nil] = ACTIONS(2170), - [sym_id] = ACTIONS(2170), - [sym_instancetype] = ACTIONS(2170), - [sym_Class] = ACTIONS(2170), - [sym_SEL] = ACTIONS(2170), - [sym_IMP] = ACTIONS(2170), - [sym_BOOL] = ACTIONS(2170), - [sym_auto] = ACTIONS(2170), - [anon_sym_ATautoreleasepool] = ACTIONS(2172), - [anon_sym_ATsynchronized] = ACTIONS(2172), - [anon_sym_ATtry] = ACTIONS(2172), - [anon_sym_ATthrow] = ACTIONS(2172), - [anon_sym_ATselector] = ACTIONS(2172), - [anon_sym_ATencode] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2170), - [sym_YES] = ACTIONS(2170), - [sym_NO] = ACTIONS(2170), - [anon_sym___builtin_available] = ACTIONS(2170), - [anon_sym_ATavailable] = ACTIONS(2172), - [anon_sym_va_arg] = ACTIONS(2170), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [864] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [aux_sym_preproc_else_token1] = ACTIONS(2174), - [aux_sym_preproc_elif_token1] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [865] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [aux_sym_preproc_else_token1] = ACTIONS(2174), - [aux_sym_preproc_elif_token1] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [866] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [aux_sym_preproc_else_token1] = ACTIONS(2174), - [aux_sym_preproc_elif_token1] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [867] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [aux_sym_preproc_else_token1] = ACTIONS(2174), - [aux_sym_preproc_elif_token1] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [868] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [aux_sym_preproc_else_token1] = ACTIONS(2174), - [aux_sym_preproc_elif_token1] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [869] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [aux_sym_preproc_else_token1] = ACTIONS(2174), - [aux_sym_preproc_elif_token1] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [870] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [aux_sym_preproc_else_token1] = ACTIONS(2174), - [aux_sym_preproc_elif_token1] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [871] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [aux_sym_preproc_else_token1] = ACTIONS(2174), - [aux_sym_preproc_elif_token1] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [872] = { - [sym_identifier] = ACTIONS(2178), - [aux_sym_preproc_include_token1] = ACTIONS(2180), - [aux_sym_preproc_def_token1] = ACTIONS(2180), - [aux_sym_preproc_if_token1] = ACTIONS(2178), - [aux_sym_preproc_if_token2] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), - [aux_sym_preproc_else_token1] = ACTIONS(2178), - [aux_sym_preproc_elif_token1] = ACTIONS(2178), - [anon_sym_LPAREN2] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_typedef] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym___attribute] = ACTIONS(2178), - [anon_sym___attribute__] = ACTIONS(2178), - [anon_sym___declspec] = ACTIONS(2178), - [anon_sym___cdecl] = ACTIONS(2178), - [anon_sym___clrcall] = ACTIONS(2178), - [anon_sym___stdcall] = ACTIONS(2178), - [anon_sym___fastcall] = ACTIONS(2178), - [anon_sym___thiscall] = ACTIONS(2178), - [anon_sym___vectorcall] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_auto] = ACTIONS(2178), - [anon_sym_register] = ACTIONS(2178), - [anon_sym_inline] = ACTIONS(2178), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_volatile] = ACTIONS(2178), - [anon_sym_restrict] = ACTIONS(2178), - [anon_sym__Atomic] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_out] = ACTIONS(2178), - [anon_sym_inout] = ACTIONS(2178), - [anon_sym_bycopy] = ACTIONS(2178), - [anon_sym_byref] = ACTIONS(2178), - [anon_sym_oneway] = ACTIONS(2178), - [anon_sym__Nullable] = ACTIONS(2178), - [anon_sym__Nonnull] = ACTIONS(2178), - [anon_sym__Nullable_result] = ACTIONS(2178), - [anon_sym__Null_unspecified] = ACTIONS(2178), - [anon_sym___autoreleasing] = ACTIONS(2178), - [anon_sym___nullable] = ACTIONS(2178), - [anon_sym___nonnull] = ACTIONS(2178), - [anon_sym___strong] = ACTIONS(2178), - [anon_sym___weak] = ACTIONS(2178), - [anon_sym___bridge] = ACTIONS(2178), - [anon_sym___bridge_transfer] = ACTIONS(2178), - [anon_sym___bridge_retained] = ACTIONS(2178), - [anon_sym___unsafe_unretained] = ACTIONS(2178), - [anon_sym___block] = ACTIONS(2178), - [anon_sym___kindof] = ACTIONS(2178), - [anon_sym___unused] = ACTIONS(2178), - [anon_sym__Complex] = ACTIONS(2178), - [anon_sym___complex] = ACTIONS(2178), - [anon_sym_IBOutlet] = ACTIONS(2178), - [anon_sym_IBInspectable] = ACTIONS(2178), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2178), - [anon_sym_signed] = ACTIONS(2178), - [anon_sym_unsigned] = ACTIONS(2178), - [anon_sym_long] = ACTIONS(2178), - [anon_sym_short] = ACTIONS(2178), - [sym_primitive_type] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_NS_ENUM] = ACTIONS(2178), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2178), - [anon_sym_NS_OPTIONS] = ACTIONS(2178), - [anon_sym_struct] = ACTIONS(2178), - [anon_sym_union] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_goto] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(2180), - [anon_sym_sizeof] = ACTIONS(2178), - [sym_number_literal] = ACTIONS(2180), - [anon_sym_L_SQUOTE] = ACTIONS(2180), - [anon_sym_u_SQUOTE] = ACTIONS(2180), - [anon_sym_U_SQUOTE] = ACTIONS(2180), - [anon_sym_u8_SQUOTE] = ACTIONS(2180), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_L_DQUOTE] = ACTIONS(2180), - [anon_sym_u_DQUOTE] = ACTIONS(2180), - [anon_sym_U_DQUOTE] = ACTIONS(2180), - [anon_sym_u8_DQUOTE] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2180), - [anon_sym_ATimport] = ACTIONS(2180), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2178), - [anon_sym_ATcompatibility_alias] = ACTIONS(2180), - [anon_sym_ATprotocol] = ACTIONS(2180), - [anon_sym_ATclass] = ACTIONS(2180), - [anon_sym_ATinterface] = ACTIONS(2180), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2178), - [sym_method_attribute_specifier] = ACTIONS(2178), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2178), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE] = ACTIONS(2178), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_API_AVAILABLE] = ACTIONS(2178), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_API_DEPRECATED] = ACTIONS(2178), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2178), - [anon_sym___deprecated_msg] = ACTIONS(2178), - [anon_sym___deprecated_enum_msg] = ACTIONS(2178), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2178), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2178), - [anon_sym_ATimplementation] = ACTIONS(2180), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym___typeof] = ACTIONS(2178), - [anon_sym___typeof__] = ACTIONS(2178), - [sym_self] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_nil] = ACTIONS(2178), - [sym_id] = ACTIONS(2178), - [sym_instancetype] = ACTIONS(2178), - [sym_Class] = ACTIONS(2178), - [sym_SEL] = ACTIONS(2178), - [sym_IMP] = ACTIONS(2178), - [sym_BOOL] = ACTIONS(2178), - [sym_auto] = ACTIONS(2178), - [anon_sym_ATautoreleasepool] = ACTIONS(2180), - [anon_sym_ATsynchronized] = ACTIONS(2180), - [anon_sym_ATtry] = ACTIONS(2180), - [anon_sym_ATthrow] = ACTIONS(2180), - [anon_sym_ATselector] = ACTIONS(2180), - [anon_sym_ATencode] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2178), - [sym_YES] = ACTIONS(2178), - [sym_NO] = ACTIONS(2178), - [anon_sym___builtin_available] = ACTIONS(2178), - [anon_sym_ATavailable] = ACTIONS(2180), - [anon_sym_va_arg] = ACTIONS(2178), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [873] = { - [sym_identifier] = ACTIONS(2178), - [aux_sym_preproc_include_token1] = ACTIONS(2180), - [aux_sym_preproc_def_token1] = ACTIONS(2180), - [aux_sym_preproc_if_token1] = ACTIONS(2178), - [aux_sym_preproc_if_token2] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), - [aux_sym_preproc_else_token1] = ACTIONS(2178), - [aux_sym_preproc_elif_token1] = ACTIONS(2178), - [anon_sym_LPAREN2] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_typedef] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym___attribute] = ACTIONS(2178), - [anon_sym___attribute__] = ACTIONS(2178), - [anon_sym___declspec] = ACTIONS(2178), - [anon_sym___cdecl] = ACTIONS(2178), - [anon_sym___clrcall] = ACTIONS(2178), - [anon_sym___stdcall] = ACTIONS(2178), - [anon_sym___fastcall] = ACTIONS(2178), - [anon_sym___thiscall] = ACTIONS(2178), - [anon_sym___vectorcall] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_auto] = ACTIONS(2178), - [anon_sym_register] = ACTIONS(2178), - [anon_sym_inline] = ACTIONS(2178), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_volatile] = ACTIONS(2178), - [anon_sym_restrict] = ACTIONS(2178), - [anon_sym__Atomic] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_out] = ACTIONS(2178), - [anon_sym_inout] = ACTIONS(2178), - [anon_sym_bycopy] = ACTIONS(2178), - [anon_sym_byref] = ACTIONS(2178), - [anon_sym_oneway] = ACTIONS(2178), - [anon_sym__Nullable] = ACTIONS(2178), - [anon_sym__Nonnull] = ACTIONS(2178), - [anon_sym__Nullable_result] = ACTIONS(2178), - [anon_sym__Null_unspecified] = ACTIONS(2178), - [anon_sym___autoreleasing] = ACTIONS(2178), - [anon_sym___nullable] = ACTIONS(2178), - [anon_sym___nonnull] = ACTIONS(2178), - [anon_sym___strong] = ACTIONS(2178), - [anon_sym___weak] = ACTIONS(2178), - [anon_sym___bridge] = ACTIONS(2178), - [anon_sym___bridge_transfer] = ACTIONS(2178), - [anon_sym___bridge_retained] = ACTIONS(2178), - [anon_sym___unsafe_unretained] = ACTIONS(2178), - [anon_sym___block] = ACTIONS(2178), - [anon_sym___kindof] = ACTIONS(2178), - [anon_sym___unused] = ACTIONS(2178), - [anon_sym__Complex] = ACTIONS(2178), - [anon_sym___complex] = ACTIONS(2178), - [anon_sym_IBOutlet] = ACTIONS(2178), - [anon_sym_IBInspectable] = ACTIONS(2178), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2178), - [anon_sym_signed] = ACTIONS(2178), - [anon_sym_unsigned] = ACTIONS(2178), - [anon_sym_long] = ACTIONS(2178), - [anon_sym_short] = ACTIONS(2178), - [sym_primitive_type] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_NS_ENUM] = ACTIONS(2178), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2178), - [anon_sym_NS_OPTIONS] = ACTIONS(2178), - [anon_sym_struct] = ACTIONS(2178), - [anon_sym_union] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_goto] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(2180), - [anon_sym_sizeof] = ACTIONS(2178), - [sym_number_literal] = ACTIONS(2180), - [anon_sym_L_SQUOTE] = ACTIONS(2180), - [anon_sym_u_SQUOTE] = ACTIONS(2180), - [anon_sym_U_SQUOTE] = ACTIONS(2180), - [anon_sym_u8_SQUOTE] = ACTIONS(2180), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_L_DQUOTE] = ACTIONS(2180), - [anon_sym_u_DQUOTE] = ACTIONS(2180), - [anon_sym_U_DQUOTE] = ACTIONS(2180), - [anon_sym_u8_DQUOTE] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2180), - [anon_sym_ATimport] = ACTIONS(2180), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2178), - [anon_sym_ATcompatibility_alias] = ACTIONS(2180), - [anon_sym_ATprotocol] = ACTIONS(2180), - [anon_sym_ATclass] = ACTIONS(2180), - [anon_sym_ATinterface] = ACTIONS(2180), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2178), - [sym_method_attribute_specifier] = ACTIONS(2178), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2178), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE] = ACTIONS(2178), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_API_AVAILABLE] = ACTIONS(2178), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_API_DEPRECATED] = ACTIONS(2178), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2178), - [anon_sym___deprecated_msg] = ACTIONS(2178), - [anon_sym___deprecated_enum_msg] = ACTIONS(2178), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2178), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2178), - [anon_sym_ATimplementation] = ACTIONS(2180), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym___typeof] = ACTIONS(2178), - [anon_sym___typeof__] = ACTIONS(2178), - [sym_self] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_nil] = ACTIONS(2178), - [sym_id] = ACTIONS(2178), - [sym_instancetype] = ACTIONS(2178), - [sym_Class] = ACTIONS(2178), - [sym_SEL] = ACTIONS(2178), - [sym_IMP] = ACTIONS(2178), - [sym_BOOL] = ACTIONS(2178), - [sym_auto] = ACTIONS(2178), - [anon_sym_ATautoreleasepool] = ACTIONS(2180), - [anon_sym_ATsynchronized] = ACTIONS(2180), - [anon_sym_ATtry] = ACTIONS(2180), - [anon_sym_ATthrow] = ACTIONS(2180), - [anon_sym_ATselector] = ACTIONS(2180), - [anon_sym_ATencode] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2178), - [sym_YES] = ACTIONS(2178), - [sym_NO] = ACTIONS(2178), - [anon_sym___builtin_available] = ACTIONS(2178), - [anon_sym_ATavailable] = ACTIONS(2180), - [anon_sym_va_arg] = ACTIONS(2178), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [874] = { - [sym_identifier] = ACTIONS(2178), - [aux_sym_preproc_include_token1] = ACTIONS(2180), - [aux_sym_preproc_def_token1] = ACTIONS(2180), - [aux_sym_preproc_if_token1] = ACTIONS(2178), - [aux_sym_preproc_if_token2] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), - [aux_sym_preproc_else_token1] = ACTIONS(2178), - [aux_sym_preproc_elif_token1] = ACTIONS(2178), - [anon_sym_LPAREN2] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_typedef] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym___attribute] = ACTIONS(2178), - [anon_sym___attribute__] = ACTIONS(2178), - [anon_sym___declspec] = ACTIONS(2178), - [anon_sym___cdecl] = ACTIONS(2178), - [anon_sym___clrcall] = ACTIONS(2178), - [anon_sym___stdcall] = ACTIONS(2178), - [anon_sym___fastcall] = ACTIONS(2178), - [anon_sym___thiscall] = ACTIONS(2178), - [anon_sym___vectorcall] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_auto] = ACTIONS(2178), - [anon_sym_register] = ACTIONS(2178), - [anon_sym_inline] = ACTIONS(2178), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_volatile] = ACTIONS(2178), - [anon_sym_restrict] = ACTIONS(2178), - [anon_sym__Atomic] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_out] = ACTIONS(2178), - [anon_sym_inout] = ACTIONS(2178), - [anon_sym_bycopy] = ACTIONS(2178), - [anon_sym_byref] = ACTIONS(2178), - [anon_sym_oneway] = ACTIONS(2178), - [anon_sym__Nullable] = ACTIONS(2178), - [anon_sym__Nonnull] = ACTIONS(2178), - [anon_sym__Nullable_result] = ACTIONS(2178), - [anon_sym__Null_unspecified] = ACTIONS(2178), - [anon_sym___autoreleasing] = ACTIONS(2178), - [anon_sym___nullable] = ACTIONS(2178), - [anon_sym___nonnull] = ACTIONS(2178), - [anon_sym___strong] = ACTIONS(2178), - [anon_sym___weak] = ACTIONS(2178), - [anon_sym___bridge] = ACTIONS(2178), - [anon_sym___bridge_transfer] = ACTIONS(2178), - [anon_sym___bridge_retained] = ACTIONS(2178), - [anon_sym___unsafe_unretained] = ACTIONS(2178), - [anon_sym___block] = ACTIONS(2178), - [anon_sym___kindof] = ACTIONS(2178), - [anon_sym___unused] = ACTIONS(2178), - [anon_sym__Complex] = ACTIONS(2178), - [anon_sym___complex] = ACTIONS(2178), - [anon_sym_IBOutlet] = ACTIONS(2178), - [anon_sym_IBInspectable] = ACTIONS(2178), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2178), - [anon_sym_signed] = ACTIONS(2178), - [anon_sym_unsigned] = ACTIONS(2178), - [anon_sym_long] = ACTIONS(2178), - [anon_sym_short] = ACTIONS(2178), - [sym_primitive_type] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_NS_ENUM] = ACTIONS(2178), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2178), - [anon_sym_NS_OPTIONS] = ACTIONS(2178), - [anon_sym_struct] = ACTIONS(2178), - [anon_sym_union] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_goto] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(2180), - [anon_sym_sizeof] = ACTIONS(2178), - [sym_number_literal] = ACTIONS(2180), - [anon_sym_L_SQUOTE] = ACTIONS(2180), - [anon_sym_u_SQUOTE] = ACTIONS(2180), - [anon_sym_U_SQUOTE] = ACTIONS(2180), - [anon_sym_u8_SQUOTE] = ACTIONS(2180), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_L_DQUOTE] = ACTIONS(2180), - [anon_sym_u_DQUOTE] = ACTIONS(2180), - [anon_sym_U_DQUOTE] = ACTIONS(2180), - [anon_sym_u8_DQUOTE] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2180), - [anon_sym_ATimport] = ACTIONS(2180), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2178), - [anon_sym_ATcompatibility_alias] = ACTIONS(2180), - [anon_sym_ATprotocol] = ACTIONS(2180), - [anon_sym_ATclass] = ACTIONS(2180), - [anon_sym_ATinterface] = ACTIONS(2180), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2178), - [sym_method_attribute_specifier] = ACTIONS(2178), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2178), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE] = ACTIONS(2178), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_API_AVAILABLE] = ACTIONS(2178), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_API_DEPRECATED] = ACTIONS(2178), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2178), - [anon_sym___deprecated_msg] = ACTIONS(2178), - [anon_sym___deprecated_enum_msg] = ACTIONS(2178), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2178), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2178), - [anon_sym_ATimplementation] = ACTIONS(2180), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym___typeof] = ACTIONS(2178), - [anon_sym___typeof__] = ACTIONS(2178), - [sym_self] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_nil] = ACTIONS(2178), - [sym_id] = ACTIONS(2178), - [sym_instancetype] = ACTIONS(2178), - [sym_Class] = ACTIONS(2178), - [sym_SEL] = ACTIONS(2178), - [sym_IMP] = ACTIONS(2178), - [sym_BOOL] = ACTIONS(2178), - [sym_auto] = ACTIONS(2178), - [anon_sym_ATautoreleasepool] = ACTIONS(2180), - [anon_sym_ATsynchronized] = ACTIONS(2180), - [anon_sym_ATtry] = ACTIONS(2180), - [anon_sym_ATthrow] = ACTIONS(2180), - [anon_sym_ATselector] = ACTIONS(2180), - [anon_sym_ATencode] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2178), - [sym_YES] = ACTIONS(2178), - [sym_NO] = ACTIONS(2178), - [anon_sym___builtin_available] = ACTIONS(2178), - [anon_sym_ATavailable] = ACTIONS(2180), - [anon_sym_va_arg] = ACTIONS(2178), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [875] = { - [sym_identifier] = ACTIONS(2182), - [aux_sym_preproc_include_token1] = ACTIONS(2184), - [aux_sym_preproc_def_token1] = ACTIONS(2184), - [aux_sym_preproc_if_token1] = ACTIONS(2182), - [aux_sym_preproc_if_token2] = ACTIONS(2182), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2182), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2182), - [aux_sym_preproc_else_token1] = ACTIONS(2182), - [aux_sym_preproc_elif_token1] = ACTIONS(2182), - [anon_sym_LPAREN2] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_CARET] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_typedef] = ACTIONS(2182), - [anon_sym_extern] = ACTIONS(2182), - [anon_sym___attribute] = ACTIONS(2182), - [anon_sym___attribute__] = ACTIONS(2182), - [anon_sym___declspec] = ACTIONS(2182), - [anon_sym___cdecl] = ACTIONS(2182), - [anon_sym___clrcall] = ACTIONS(2182), - [anon_sym___stdcall] = ACTIONS(2182), - [anon_sym___fastcall] = ACTIONS(2182), - [anon_sym___thiscall] = ACTIONS(2182), - [anon_sym___vectorcall] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_auto] = ACTIONS(2182), - [anon_sym_register] = ACTIONS(2182), - [anon_sym_inline] = ACTIONS(2182), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_volatile] = ACTIONS(2182), - [anon_sym_restrict] = ACTIONS(2182), - [anon_sym__Atomic] = ACTIONS(2182), - [anon_sym_in] = ACTIONS(2182), - [anon_sym_out] = ACTIONS(2182), - [anon_sym_inout] = ACTIONS(2182), - [anon_sym_bycopy] = ACTIONS(2182), - [anon_sym_byref] = ACTIONS(2182), - [anon_sym_oneway] = ACTIONS(2182), - [anon_sym__Nullable] = ACTIONS(2182), - [anon_sym__Nonnull] = ACTIONS(2182), - [anon_sym__Nullable_result] = ACTIONS(2182), - [anon_sym__Null_unspecified] = ACTIONS(2182), - [anon_sym___autoreleasing] = ACTIONS(2182), - [anon_sym___nullable] = ACTIONS(2182), - [anon_sym___nonnull] = ACTIONS(2182), - [anon_sym___strong] = ACTIONS(2182), - [anon_sym___weak] = ACTIONS(2182), - [anon_sym___bridge] = ACTIONS(2182), - [anon_sym___bridge_transfer] = ACTIONS(2182), - [anon_sym___bridge_retained] = ACTIONS(2182), - [anon_sym___unsafe_unretained] = ACTIONS(2182), - [anon_sym___block] = ACTIONS(2182), - [anon_sym___kindof] = ACTIONS(2182), - [anon_sym___unused] = ACTIONS(2182), - [anon_sym__Complex] = ACTIONS(2182), - [anon_sym___complex] = ACTIONS(2182), - [anon_sym_IBOutlet] = ACTIONS(2182), - [anon_sym_IBInspectable] = ACTIONS(2182), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2182), - [anon_sym_signed] = ACTIONS(2182), - [anon_sym_unsigned] = ACTIONS(2182), - [anon_sym_long] = ACTIONS(2182), - [anon_sym_short] = ACTIONS(2182), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), - [anon_sym_NS_ENUM] = ACTIONS(2182), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2182), - [anon_sym_NS_OPTIONS] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(2182), - [anon_sym_union] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_case] = ACTIONS(2182), - [anon_sym_default] = ACTIONS(2182), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_goto] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_sizeof] = ACTIONS(2182), - [sym_number_literal] = ACTIONS(2184), - [anon_sym_L_SQUOTE] = ACTIONS(2184), - [anon_sym_u_SQUOTE] = ACTIONS(2184), - [anon_sym_U_SQUOTE] = ACTIONS(2184), - [anon_sym_u8_SQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_L_DQUOTE] = ACTIONS(2184), - [anon_sym_u_DQUOTE] = ACTIONS(2184), - [anon_sym_U_DQUOTE] = ACTIONS(2184), - [anon_sym_u8_DQUOTE] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2184), - [anon_sym_ATimport] = ACTIONS(2184), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2182), - [anon_sym_ATcompatibility_alias] = ACTIONS(2184), - [anon_sym_ATprotocol] = ACTIONS(2184), - [anon_sym_ATclass] = ACTIONS(2184), - [anon_sym_ATinterface] = ACTIONS(2184), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2182), - [sym_method_attribute_specifier] = ACTIONS(2182), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2182), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2182), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2182), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2182), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2182), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2182), - [anon_sym_NS_AVAILABLE] = ACTIONS(2182), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2182), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2182), - [anon_sym_API_AVAILABLE] = ACTIONS(2182), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2182), - [anon_sym_API_DEPRECATED] = ACTIONS(2182), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2182), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2182), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2182), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2182), - [anon_sym___deprecated_msg] = ACTIONS(2182), - [anon_sym___deprecated_enum_msg] = ACTIONS(2182), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2182), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2182), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2182), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2182), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2182), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2182), - [anon_sym_ATimplementation] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2182), - [anon_sym___typeof] = ACTIONS(2182), - [anon_sym___typeof__] = ACTIONS(2182), - [sym_self] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_nil] = ACTIONS(2182), - [sym_id] = ACTIONS(2182), - [sym_instancetype] = ACTIONS(2182), - [sym_Class] = ACTIONS(2182), - [sym_SEL] = ACTIONS(2182), - [sym_IMP] = ACTIONS(2182), - [sym_BOOL] = ACTIONS(2182), - [sym_auto] = ACTIONS(2182), - [anon_sym_ATautoreleasepool] = ACTIONS(2184), - [anon_sym_ATsynchronized] = ACTIONS(2184), - [anon_sym_ATtry] = ACTIONS(2184), - [anon_sym_ATthrow] = ACTIONS(2184), - [anon_sym_ATselector] = ACTIONS(2184), - [anon_sym_ATencode] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2182), - [sym_YES] = ACTIONS(2182), - [sym_NO] = ACTIONS(2182), - [anon_sym___builtin_available] = ACTIONS(2182), - [anon_sym_ATavailable] = ACTIONS(2184), - [anon_sym_va_arg] = ACTIONS(2182), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [876] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [aux_sym_preproc_else_token1] = ACTIONS(2174), - [aux_sym_preproc_elif_token1] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [877] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [aux_sym_preproc_else_token1] = ACTIONS(2174), - [aux_sym_preproc_elif_token1] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [878] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [aux_sym_preproc_else_token1] = ACTIONS(2174), - [aux_sym_preproc_elif_token1] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [879] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [aux_sym_preproc_else_token1] = ACTIONS(2174), - [aux_sym_preproc_elif_token1] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [880] = { - [sym_identifier] = ACTIONS(2178), - [aux_sym_preproc_include_token1] = ACTIONS(2180), - [aux_sym_preproc_def_token1] = ACTIONS(2180), - [aux_sym_preproc_if_token1] = ACTIONS(2178), - [aux_sym_preproc_if_token2] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), - [aux_sym_preproc_else_token1] = ACTIONS(2178), - [aux_sym_preproc_elif_token1] = ACTIONS(2178), - [anon_sym_LPAREN2] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_typedef] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym___attribute] = ACTIONS(2178), - [anon_sym___attribute__] = ACTIONS(2178), - [anon_sym___declspec] = ACTIONS(2178), - [anon_sym___cdecl] = ACTIONS(2178), - [anon_sym___clrcall] = ACTIONS(2178), - [anon_sym___stdcall] = ACTIONS(2178), - [anon_sym___fastcall] = ACTIONS(2178), - [anon_sym___thiscall] = ACTIONS(2178), - [anon_sym___vectorcall] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_auto] = ACTIONS(2178), - [anon_sym_register] = ACTIONS(2178), - [anon_sym_inline] = ACTIONS(2178), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_volatile] = ACTIONS(2178), - [anon_sym_restrict] = ACTIONS(2178), - [anon_sym__Atomic] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_out] = ACTIONS(2178), - [anon_sym_inout] = ACTIONS(2178), - [anon_sym_bycopy] = ACTIONS(2178), - [anon_sym_byref] = ACTIONS(2178), - [anon_sym_oneway] = ACTIONS(2178), - [anon_sym__Nullable] = ACTIONS(2178), - [anon_sym__Nonnull] = ACTIONS(2178), - [anon_sym__Nullable_result] = ACTIONS(2178), - [anon_sym__Null_unspecified] = ACTIONS(2178), - [anon_sym___autoreleasing] = ACTIONS(2178), - [anon_sym___nullable] = ACTIONS(2178), - [anon_sym___nonnull] = ACTIONS(2178), - [anon_sym___strong] = ACTIONS(2178), - [anon_sym___weak] = ACTIONS(2178), - [anon_sym___bridge] = ACTIONS(2178), - [anon_sym___bridge_transfer] = ACTIONS(2178), - [anon_sym___bridge_retained] = ACTIONS(2178), - [anon_sym___unsafe_unretained] = ACTIONS(2178), - [anon_sym___block] = ACTIONS(2178), - [anon_sym___kindof] = ACTIONS(2178), - [anon_sym___unused] = ACTIONS(2178), - [anon_sym__Complex] = ACTIONS(2178), - [anon_sym___complex] = ACTIONS(2178), - [anon_sym_IBOutlet] = ACTIONS(2178), - [anon_sym_IBInspectable] = ACTIONS(2178), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2178), - [anon_sym_signed] = ACTIONS(2178), - [anon_sym_unsigned] = ACTIONS(2178), - [anon_sym_long] = ACTIONS(2178), - [anon_sym_short] = ACTIONS(2178), - [sym_primitive_type] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_NS_ENUM] = ACTIONS(2178), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2178), - [anon_sym_NS_OPTIONS] = ACTIONS(2178), - [anon_sym_struct] = ACTIONS(2178), - [anon_sym_union] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_goto] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(2180), - [anon_sym_sizeof] = ACTIONS(2178), - [sym_number_literal] = ACTIONS(2180), - [anon_sym_L_SQUOTE] = ACTIONS(2180), - [anon_sym_u_SQUOTE] = ACTIONS(2180), - [anon_sym_U_SQUOTE] = ACTIONS(2180), - [anon_sym_u8_SQUOTE] = ACTIONS(2180), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_L_DQUOTE] = ACTIONS(2180), - [anon_sym_u_DQUOTE] = ACTIONS(2180), - [anon_sym_U_DQUOTE] = ACTIONS(2180), - [anon_sym_u8_DQUOTE] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2180), - [anon_sym_ATimport] = ACTIONS(2180), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2178), - [anon_sym_ATcompatibility_alias] = ACTIONS(2180), - [anon_sym_ATprotocol] = ACTIONS(2180), - [anon_sym_ATclass] = ACTIONS(2180), - [anon_sym_ATinterface] = ACTIONS(2180), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2178), - [sym_method_attribute_specifier] = ACTIONS(2178), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2178), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE] = ACTIONS(2178), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_API_AVAILABLE] = ACTIONS(2178), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_API_DEPRECATED] = ACTIONS(2178), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2178), - [anon_sym___deprecated_msg] = ACTIONS(2178), - [anon_sym___deprecated_enum_msg] = ACTIONS(2178), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2178), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2178), - [anon_sym_ATimplementation] = ACTIONS(2180), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym___typeof] = ACTIONS(2178), - [anon_sym___typeof__] = ACTIONS(2178), - [sym_self] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_nil] = ACTIONS(2178), - [sym_id] = ACTIONS(2178), - [sym_instancetype] = ACTIONS(2178), - [sym_Class] = ACTIONS(2178), - [sym_SEL] = ACTIONS(2178), - [sym_IMP] = ACTIONS(2178), - [sym_BOOL] = ACTIONS(2178), - [sym_auto] = ACTIONS(2178), - [anon_sym_ATautoreleasepool] = ACTIONS(2180), - [anon_sym_ATsynchronized] = ACTIONS(2180), - [anon_sym_ATtry] = ACTIONS(2180), - [anon_sym_ATthrow] = ACTIONS(2180), - [anon_sym_ATselector] = ACTIONS(2180), - [anon_sym_ATencode] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2178), - [sym_YES] = ACTIONS(2178), - [sym_NO] = ACTIONS(2178), - [anon_sym___builtin_available] = ACTIONS(2178), - [anon_sym_ATavailable] = ACTIONS(2180), - [anon_sym_va_arg] = ACTIONS(2178), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [881] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [aux_sym_preproc_else_token1] = ACTIONS(2174), - [aux_sym_preproc_elif_token1] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [882] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [aux_sym_preproc_else_token1] = ACTIONS(2174), - [aux_sym_preproc_elif_token1] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [883] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [aux_sym_preproc_else_token1] = ACTIONS(2174), - [aux_sym_preproc_elif_token1] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [884] = { - [sym_identifier] = ACTIONS(2178), - [aux_sym_preproc_include_token1] = ACTIONS(2180), - [aux_sym_preproc_def_token1] = ACTIONS(2180), - [aux_sym_preproc_if_token1] = ACTIONS(2178), - [aux_sym_preproc_if_token2] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), - [aux_sym_preproc_else_token1] = ACTIONS(2178), - [aux_sym_preproc_elif_token1] = ACTIONS(2178), - [anon_sym_LPAREN2] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_typedef] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym___attribute] = ACTIONS(2178), - [anon_sym___attribute__] = ACTIONS(2178), - [anon_sym___declspec] = ACTIONS(2178), - [anon_sym___cdecl] = ACTIONS(2178), - [anon_sym___clrcall] = ACTIONS(2178), - [anon_sym___stdcall] = ACTIONS(2178), - [anon_sym___fastcall] = ACTIONS(2178), - [anon_sym___thiscall] = ACTIONS(2178), - [anon_sym___vectorcall] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_auto] = ACTIONS(2178), - [anon_sym_register] = ACTIONS(2178), - [anon_sym_inline] = ACTIONS(2178), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_volatile] = ACTIONS(2178), - [anon_sym_restrict] = ACTIONS(2178), - [anon_sym__Atomic] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_out] = ACTIONS(2178), - [anon_sym_inout] = ACTIONS(2178), - [anon_sym_bycopy] = ACTIONS(2178), - [anon_sym_byref] = ACTIONS(2178), - [anon_sym_oneway] = ACTIONS(2178), - [anon_sym__Nullable] = ACTIONS(2178), - [anon_sym__Nonnull] = ACTIONS(2178), - [anon_sym__Nullable_result] = ACTIONS(2178), - [anon_sym__Null_unspecified] = ACTIONS(2178), - [anon_sym___autoreleasing] = ACTIONS(2178), - [anon_sym___nullable] = ACTIONS(2178), - [anon_sym___nonnull] = ACTIONS(2178), - [anon_sym___strong] = ACTIONS(2178), - [anon_sym___weak] = ACTIONS(2178), - [anon_sym___bridge] = ACTIONS(2178), - [anon_sym___bridge_transfer] = ACTIONS(2178), - [anon_sym___bridge_retained] = ACTIONS(2178), - [anon_sym___unsafe_unretained] = ACTIONS(2178), - [anon_sym___block] = ACTIONS(2178), - [anon_sym___kindof] = ACTIONS(2178), - [anon_sym___unused] = ACTIONS(2178), - [anon_sym__Complex] = ACTIONS(2178), - [anon_sym___complex] = ACTIONS(2178), - [anon_sym_IBOutlet] = ACTIONS(2178), - [anon_sym_IBInspectable] = ACTIONS(2178), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2178), - [anon_sym_signed] = ACTIONS(2178), - [anon_sym_unsigned] = ACTIONS(2178), - [anon_sym_long] = ACTIONS(2178), - [anon_sym_short] = ACTIONS(2178), - [sym_primitive_type] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_NS_ENUM] = ACTIONS(2178), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2178), - [anon_sym_NS_OPTIONS] = ACTIONS(2178), - [anon_sym_struct] = ACTIONS(2178), - [anon_sym_union] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_goto] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(2180), - [anon_sym_sizeof] = ACTIONS(2178), - [sym_number_literal] = ACTIONS(2180), - [anon_sym_L_SQUOTE] = ACTIONS(2180), - [anon_sym_u_SQUOTE] = ACTIONS(2180), - [anon_sym_U_SQUOTE] = ACTIONS(2180), - [anon_sym_u8_SQUOTE] = ACTIONS(2180), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_L_DQUOTE] = ACTIONS(2180), - [anon_sym_u_DQUOTE] = ACTIONS(2180), - [anon_sym_U_DQUOTE] = ACTIONS(2180), - [anon_sym_u8_DQUOTE] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2180), - [anon_sym_ATimport] = ACTIONS(2180), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2178), - [anon_sym_ATcompatibility_alias] = ACTIONS(2180), - [anon_sym_ATprotocol] = ACTIONS(2180), - [anon_sym_ATclass] = ACTIONS(2180), - [anon_sym_ATinterface] = ACTIONS(2180), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2178), - [sym_method_attribute_specifier] = ACTIONS(2178), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2178), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE] = ACTIONS(2178), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_API_AVAILABLE] = ACTIONS(2178), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_API_DEPRECATED] = ACTIONS(2178), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2178), - [anon_sym___deprecated_msg] = ACTIONS(2178), - [anon_sym___deprecated_enum_msg] = ACTIONS(2178), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2178), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2178), - [anon_sym_ATimplementation] = ACTIONS(2180), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym___typeof] = ACTIONS(2178), - [anon_sym___typeof__] = ACTIONS(2178), - [sym_self] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_nil] = ACTIONS(2178), - [sym_id] = ACTIONS(2178), - [sym_instancetype] = ACTIONS(2178), - [sym_Class] = ACTIONS(2178), - [sym_SEL] = ACTIONS(2178), - [sym_IMP] = ACTIONS(2178), - [sym_BOOL] = ACTIONS(2178), - [sym_auto] = ACTIONS(2178), - [anon_sym_ATautoreleasepool] = ACTIONS(2180), - [anon_sym_ATsynchronized] = ACTIONS(2180), - [anon_sym_ATtry] = ACTIONS(2180), - [anon_sym_ATthrow] = ACTIONS(2180), - [anon_sym_ATselector] = ACTIONS(2180), - [anon_sym_ATencode] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2178), - [sym_YES] = ACTIONS(2178), - [sym_NO] = ACTIONS(2178), - [anon_sym___builtin_available] = ACTIONS(2178), - [anon_sym_ATavailable] = ACTIONS(2180), - [anon_sym_va_arg] = ACTIONS(2178), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [885] = { - [ts_builtin_sym_end] = ACTIONS(2056), - [sym_identifier] = ACTIONS(2054), - [aux_sym_preproc_include_token1] = ACTIONS(2056), - [aux_sym_preproc_def_token1] = ACTIONS(2056), - [aux_sym_preproc_if_token1] = ACTIONS(2054), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2054), - [anon_sym_LPAREN2] = ACTIONS(2056), - [anon_sym_BANG] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2056), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_PLUS] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2056), - [anon_sym_CARET] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2056), - [anon_sym_typedef] = ACTIONS(2054), - [anon_sym_extern] = ACTIONS(2054), - [anon_sym___attribute] = ACTIONS(2054), - [anon_sym___attribute__] = ACTIONS(2054), - [anon_sym___declspec] = ACTIONS(2054), - [anon_sym___cdecl] = ACTIONS(2054), - [anon_sym___clrcall] = ACTIONS(2054), - [anon_sym___stdcall] = ACTIONS(2054), - [anon_sym___fastcall] = ACTIONS(2054), - [anon_sym___thiscall] = ACTIONS(2054), - [anon_sym___vectorcall] = ACTIONS(2054), - [anon_sym_LBRACE] = ACTIONS(2056), - [anon_sym_RBRACE] = ACTIONS(2056), - [anon_sym_LBRACK] = ACTIONS(2056), - [anon_sym_static] = ACTIONS(2054), - [anon_sym_auto] = ACTIONS(2054), - [anon_sym_register] = ACTIONS(2054), - [anon_sym_inline] = ACTIONS(2054), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2054), - [anon_sym_const] = ACTIONS(2054), - [anon_sym_volatile] = ACTIONS(2054), - [anon_sym_restrict] = ACTIONS(2054), - [anon_sym__Atomic] = ACTIONS(2054), - [anon_sym_in] = ACTIONS(2054), - [anon_sym_out] = ACTIONS(2054), - [anon_sym_inout] = ACTIONS(2054), - [anon_sym_bycopy] = ACTIONS(2054), - [anon_sym_byref] = ACTIONS(2054), - [anon_sym_oneway] = ACTIONS(2054), - [anon_sym__Nullable] = ACTIONS(2054), - [anon_sym__Nonnull] = ACTIONS(2054), - [anon_sym__Nullable_result] = ACTIONS(2054), - [anon_sym__Null_unspecified] = ACTIONS(2054), - [anon_sym___autoreleasing] = ACTIONS(2054), - [anon_sym___nullable] = ACTIONS(2054), - [anon_sym___nonnull] = ACTIONS(2054), - [anon_sym___strong] = ACTIONS(2054), - [anon_sym___weak] = ACTIONS(2054), - [anon_sym___bridge] = ACTIONS(2054), - [anon_sym___bridge_transfer] = ACTIONS(2054), - [anon_sym___bridge_retained] = ACTIONS(2054), - [anon_sym___unsafe_unretained] = ACTIONS(2054), - [anon_sym___block] = ACTIONS(2054), - [anon_sym___kindof] = ACTIONS(2054), - [anon_sym___unused] = ACTIONS(2054), - [anon_sym__Complex] = ACTIONS(2054), - [anon_sym___complex] = ACTIONS(2054), - [anon_sym_IBOutlet] = ACTIONS(2054), - [anon_sym_IBInspectable] = ACTIONS(2054), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2054), - [anon_sym_signed] = ACTIONS(2054), - [anon_sym_unsigned] = ACTIONS(2054), - [anon_sym_long] = ACTIONS(2054), - [anon_sym_short] = ACTIONS(2054), - [sym_primitive_type] = ACTIONS(2054), - [anon_sym_enum] = ACTIONS(2054), - [anon_sym_NS_ENUM] = ACTIONS(2054), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2054), - [anon_sym_NS_OPTIONS] = ACTIONS(2054), - [anon_sym_struct] = ACTIONS(2054), - [anon_sym_union] = ACTIONS(2054), - [anon_sym_if] = ACTIONS(2054), - [anon_sym_switch] = ACTIONS(2054), - [anon_sym_case] = ACTIONS(2054), - [anon_sym_default] = ACTIONS(2054), - [anon_sym_while] = ACTIONS(2054), - [anon_sym_do] = ACTIONS(2054), - [anon_sym_for] = ACTIONS(2054), - [anon_sym_return] = ACTIONS(2054), - [anon_sym_break] = ACTIONS(2054), - [anon_sym_continue] = ACTIONS(2054), - [anon_sym_goto] = ACTIONS(2054), - [anon_sym_DASH_DASH] = ACTIONS(2056), - [anon_sym_PLUS_PLUS] = ACTIONS(2056), - [anon_sym_sizeof] = ACTIONS(2054), - [sym_number_literal] = ACTIONS(2056), - [anon_sym_L_SQUOTE] = ACTIONS(2056), - [anon_sym_u_SQUOTE] = ACTIONS(2056), - [anon_sym_U_SQUOTE] = ACTIONS(2056), - [anon_sym_u8_SQUOTE] = ACTIONS(2056), - [anon_sym_SQUOTE] = ACTIONS(2056), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2054), - [sym_false] = ACTIONS(2054), - [sym_null] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2056), - [anon_sym_ATimport] = ACTIONS(2056), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2054), - [anon_sym_ATcompatibility_alias] = ACTIONS(2056), - [anon_sym_ATprotocol] = ACTIONS(2056), - [anon_sym_ATclass] = ACTIONS(2056), - [anon_sym_ATinterface] = ACTIONS(2056), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2054), - [sym_method_attribute_specifier] = ACTIONS(2054), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2054), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2054), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2054), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2054), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2054), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2054), - [anon_sym_NS_AVAILABLE] = ACTIONS(2054), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2054), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2054), - [anon_sym_API_AVAILABLE] = ACTIONS(2054), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2054), - [anon_sym_API_DEPRECATED] = ACTIONS(2054), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2054), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2054), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2054), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2054), - [anon_sym___deprecated_msg] = ACTIONS(2054), - [anon_sym___deprecated_enum_msg] = ACTIONS(2054), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2054), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2054), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2054), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2054), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2054), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2054), - [anon_sym_ATimplementation] = ACTIONS(2056), - [anon_sym_typeof] = ACTIONS(2054), - [anon_sym___typeof] = ACTIONS(2054), - [anon_sym___typeof__] = ACTIONS(2054), - [sym_self] = ACTIONS(2054), - [sym_super] = ACTIONS(2054), - [sym_nil] = ACTIONS(2054), - [sym_id] = ACTIONS(2054), - [sym_instancetype] = ACTIONS(2054), - [sym_Class] = ACTIONS(2054), - [sym_SEL] = ACTIONS(2054), - [sym_IMP] = ACTIONS(2054), - [sym_BOOL] = ACTIONS(2054), - [sym_auto] = ACTIONS(2054), - [anon_sym_ATautoreleasepool] = ACTIONS(2056), - [anon_sym_ATsynchronized] = ACTIONS(2056), - [anon_sym_ATtry] = ACTIONS(2056), - [anon_sym_ATthrow] = ACTIONS(2056), - [anon_sym_ATselector] = ACTIONS(2056), - [anon_sym_ATencode] = ACTIONS(2056), - [anon_sym_AT] = ACTIONS(2054), - [sym_YES] = ACTIONS(2054), - [sym_NO] = ACTIONS(2054), - [anon_sym___builtin_available] = ACTIONS(2054), - [anon_sym_ATavailable] = ACTIONS(2056), - [anon_sym_va_arg] = ACTIONS(2054), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [886] = { - [ts_builtin_sym_end] = ACTIONS(2040), - [sym_identifier] = ACTIONS(2038), - [aux_sym_preproc_include_token1] = ACTIONS(2040), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2038), - [anon_sym___cdecl] = ACTIONS(2038), - [anon_sym___clrcall] = ACTIONS(2038), - [anon_sym___stdcall] = ACTIONS(2038), - [anon_sym___fastcall] = ACTIONS(2038), - [anon_sym___thiscall] = ACTIONS(2038), - [anon_sym___vectorcall] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_RBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_auto] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_in] = ACTIONS(2038), - [anon_sym_out] = ACTIONS(2038), - [anon_sym_inout] = ACTIONS(2038), - [anon_sym_bycopy] = ACTIONS(2038), - [anon_sym_byref] = ACTIONS(2038), - [anon_sym_oneway] = ACTIONS(2038), - [anon_sym__Nullable] = ACTIONS(2038), - [anon_sym__Nonnull] = ACTIONS(2038), - [anon_sym__Nullable_result] = ACTIONS(2038), - [anon_sym__Null_unspecified] = ACTIONS(2038), - [anon_sym___autoreleasing] = ACTIONS(2038), - [anon_sym___nullable] = ACTIONS(2038), - [anon_sym___nonnull] = ACTIONS(2038), - [anon_sym___strong] = ACTIONS(2038), - [anon_sym___weak] = ACTIONS(2038), - [anon_sym___bridge] = ACTIONS(2038), - [anon_sym___bridge_transfer] = ACTIONS(2038), - [anon_sym___bridge_retained] = ACTIONS(2038), - [anon_sym___unsafe_unretained] = ACTIONS(2038), - [anon_sym___block] = ACTIONS(2038), - [anon_sym___kindof] = ACTIONS(2038), - [anon_sym___unused] = ACTIONS(2038), - [anon_sym__Complex] = ACTIONS(2038), - [anon_sym___complex] = ACTIONS(2038), - [anon_sym_IBOutlet] = ACTIONS(2038), - [anon_sym_IBInspectable] = ACTIONS(2038), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2038), - [anon_sym_signed] = ACTIONS(2038), - [anon_sym_unsigned] = ACTIONS(2038), - [anon_sym_long] = ACTIONS(2038), - [anon_sym_short] = ACTIONS(2038), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_NS_ENUM] = ACTIONS(2038), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2038), - [anon_sym_NS_OPTIONS] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_goto] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_sizeof] = ACTIONS(2038), - [sym_number_literal] = ACTIONS(2040), - [anon_sym_L_SQUOTE] = ACTIONS(2040), - [anon_sym_u_SQUOTE] = ACTIONS(2040), - [anon_sym_U_SQUOTE] = ACTIONS(2040), - [anon_sym_u8_SQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_L_DQUOTE] = ACTIONS(2040), - [anon_sym_u_DQUOTE] = ACTIONS(2040), - [anon_sym_U_DQUOTE] = ACTIONS(2040), - [anon_sym_u8_DQUOTE] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [sym_null] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2040), - [anon_sym_ATimport] = ACTIONS(2040), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2038), - [anon_sym_ATcompatibility_alias] = ACTIONS(2040), - [anon_sym_ATprotocol] = ACTIONS(2040), - [anon_sym_ATclass] = ACTIONS(2040), - [anon_sym_ATinterface] = ACTIONS(2040), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2038), - [sym_method_attribute_specifier] = ACTIONS(2038), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2038), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE] = ACTIONS(2038), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_API_AVAILABLE] = ACTIONS(2038), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_API_DEPRECATED] = ACTIONS(2038), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2038), - [anon_sym___deprecated_msg] = ACTIONS(2038), - [anon_sym___deprecated_enum_msg] = ACTIONS(2038), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2038), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2038), - [anon_sym_ATimplementation] = ACTIONS(2040), - [anon_sym_typeof] = ACTIONS(2038), - [anon_sym___typeof] = ACTIONS(2038), - [anon_sym___typeof__] = ACTIONS(2038), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_nil] = ACTIONS(2038), - [sym_id] = ACTIONS(2038), - [sym_instancetype] = ACTIONS(2038), - [sym_Class] = ACTIONS(2038), - [sym_SEL] = ACTIONS(2038), - [sym_IMP] = ACTIONS(2038), - [sym_BOOL] = ACTIONS(2038), - [sym_auto] = ACTIONS(2038), - [anon_sym_ATautoreleasepool] = ACTIONS(2040), - [anon_sym_ATsynchronized] = ACTIONS(2040), - [anon_sym_ATtry] = ACTIONS(2040), - [anon_sym_ATthrow] = ACTIONS(2040), - [anon_sym_ATselector] = ACTIONS(2040), - [anon_sym_ATencode] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2038), - [sym_YES] = ACTIONS(2038), - [sym_NO] = ACTIONS(2038), - [anon_sym___builtin_available] = ACTIONS(2038), - [anon_sym_ATavailable] = ACTIONS(2040), - [anon_sym_va_arg] = ACTIONS(2038), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [887] = { - [ts_builtin_sym_end] = ACTIONS(2040), - [sym_identifier] = ACTIONS(2038), - [aux_sym_preproc_include_token1] = ACTIONS(2040), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2038), - [anon_sym___cdecl] = ACTIONS(2038), - [anon_sym___clrcall] = ACTIONS(2038), - [anon_sym___stdcall] = ACTIONS(2038), - [anon_sym___fastcall] = ACTIONS(2038), - [anon_sym___thiscall] = ACTIONS(2038), - [anon_sym___vectorcall] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_RBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_auto] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_in] = ACTIONS(2038), - [anon_sym_out] = ACTIONS(2038), - [anon_sym_inout] = ACTIONS(2038), - [anon_sym_bycopy] = ACTIONS(2038), - [anon_sym_byref] = ACTIONS(2038), - [anon_sym_oneway] = ACTIONS(2038), - [anon_sym__Nullable] = ACTIONS(2038), - [anon_sym__Nonnull] = ACTIONS(2038), - [anon_sym__Nullable_result] = ACTIONS(2038), - [anon_sym__Null_unspecified] = ACTIONS(2038), - [anon_sym___autoreleasing] = ACTIONS(2038), - [anon_sym___nullable] = ACTIONS(2038), - [anon_sym___nonnull] = ACTIONS(2038), - [anon_sym___strong] = ACTIONS(2038), - [anon_sym___weak] = ACTIONS(2038), - [anon_sym___bridge] = ACTIONS(2038), - [anon_sym___bridge_transfer] = ACTIONS(2038), - [anon_sym___bridge_retained] = ACTIONS(2038), - [anon_sym___unsafe_unretained] = ACTIONS(2038), - [anon_sym___block] = ACTIONS(2038), - [anon_sym___kindof] = ACTIONS(2038), - [anon_sym___unused] = ACTIONS(2038), - [anon_sym__Complex] = ACTIONS(2038), - [anon_sym___complex] = ACTIONS(2038), - [anon_sym_IBOutlet] = ACTIONS(2038), - [anon_sym_IBInspectable] = ACTIONS(2038), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2038), - [anon_sym_signed] = ACTIONS(2038), - [anon_sym_unsigned] = ACTIONS(2038), - [anon_sym_long] = ACTIONS(2038), - [anon_sym_short] = ACTIONS(2038), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_NS_ENUM] = ACTIONS(2038), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2038), - [anon_sym_NS_OPTIONS] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_goto] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_sizeof] = ACTIONS(2038), - [sym_number_literal] = ACTIONS(2040), - [anon_sym_L_SQUOTE] = ACTIONS(2040), - [anon_sym_u_SQUOTE] = ACTIONS(2040), - [anon_sym_U_SQUOTE] = ACTIONS(2040), - [anon_sym_u8_SQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_L_DQUOTE] = ACTIONS(2040), - [anon_sym_u_DQUOTE] = ACTIONS(2040), - [anon_sym_U_DQUOTE] = ACTIONS(2040), - [anon_sym_u8_DQUOTE] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [sym_null] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2040), - [anon_sym_ATimport] = ACTIONS(2040), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2038), - [anon_sym_ATcompatibility_alias] = ACTIONS(2040), - [anon_sym_ATprotocol] = ACTIONS(2040), - [anon_sym_ATclass] = ACTIONS(2040), - [anon_sym_ATinterface] = ACTIONS(2040), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2038), - [sym_method_attribute_specifier] = ACTIONS(2038), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2038), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE] = ACTIONS(2038), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_API_AVAILABLE] = ACTIONS(2038), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_API_DEPRECATED] = ACTIONS(2038), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2038), - [anon_sym___deprecated_msg] = ACTIONS(2038), - [anon_sym___deprecated_enum_msg] = ACTIONS(2038), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2038), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2038), - [anon_sym_ATimplementation] = ACTIONS(2040), - [anon_sym_typeof] = ACTIONS(2038), - [anon_sym___typeof] = ACTIONS(2038), - [anon_sym___typeof__] = ACTIONS(2038), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_nil] = ACTIONS(2038), - [sym_id] = ACTIONS(2038), - [sym_instancetype] = ACTIONS(2038), - [sym_Class] = ACTIONS(2038), - [sym_SEL] = ACTIONS(2038), - [sym_IMP] = ACTIONS(2038), - [sym_BOOL] = ACTIONS(2038), - [sym_auto] = ACTIONS(2038), - [anon_sym_ATautoreleasepool] = ACTIONS(2040), - [anon_sym_ATsynchronized] = ACTIONS(2040), - [anon_sym_ATtry] = ACTIONS(2040), - [anon_sym_ATthrow] = ACTIONS(2040), - [anon_sym_ATselector] = ACTIONS(2040), - [anon_sym_ATencode] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2038), - [sym_YES] = ACTIONS(2038), - [sym_NO] = ACTIONS(2038), - [anon_sym___builtin_available] = ACTIONS(2038), - [anon_sym_ATavailable] = ACTIONS(2040), - [anon_sym_va_arg] = ACTIONS(2038), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [888] = { - [ts_builtin_sym_end] = ACTIONS(2040), - [sym_identifier] = ACTIONS(2038), - [aux_sym_preproc_include_token1] = ACTIONS(2040), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2038), - [anon_sym___cdecl] = ACTIONS(2038), - [anon_sym___clrcall] = ACTIONS(2038), - [anon_sym___stdcall] = ACTIONS(2038), - [anon_sym___fastcall] = ACTIONS(2038), - [anon_sym___thiscall] = ACTIONS(2038), - [anon_sym___vectorcall] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_RBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_auto] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_in] = ACTIONS(2038), - [anon_sym_out] = ACTIONS(2038), - [anon_sym_inout] = ACTIONS(2038), - [anon_sym_bycopy] = ACTIONS(2038), - [anon_sym_byref] = ACTIONS(2038), - [anon_sym_oneway] = ACTIONS(2038), - [anon_sym__Nullable] = ACTIONS(2038), - [anon_sym__Nonnull] = ACTIONS(2038), - [anon_sym__Nullable_result] = ACTIONS(2038), - [anon_sym__Null_unspecified] = ACTIONS(2038), - [anon_sym___autoreleasing] = ACTIONS(2038), - [anon_sym___nullable] = ACTIONS(2038), - [anon_sym___nonnull] = ACTIONS(2038), - [anon_sym___strong] = ACTIONS(2038), - [anon_sym___weak] = ACTIONS(2038), - [anon_sym___bridge] = ACTIONS(2038), - [anon_sym___bridge_transfer] = ACTIONS(2038), - [anon_sym___bridge_retained] = ACTIONS(2038), - [anon_sym___unsafe_unretained] = ACTIONS(2038), - [anon_sym___block] = ACTIONS(2038), - [anon_sym___kindof] = ACTIONS(2038), - [anon_sym___unused] = ACTIONS(2038), - [anon_sym__Complex] = ACTIONS(2038), - [anon_sym___complex] = ACTIONS(2038), - [anon_sym_IBOutlet] = ACTIONS(2038), - [anon_sym_IBInspectable] = ACTIONS(2038), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2038), - [anon_sym_signed] = ACTIONS(2038), - [anon_sym_unsigned] = ACTIONS(2038), - [anon_sym_long] = ACTIONS(2038), - [anon_sym_short] = ACTIONS(2038), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_NS_ENUM] = ACTIONS(2038), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2038), - [anon_sym_NS_OPTIONS] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_goto] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_sizeof] = ACTIONS(2038), - [sym_number_literal] = ACTIONS(2040), - [anon_sym_L_SQUOTE] = ACTIONS(2040), - [anon_sym_u_SQUOTE] = ACTIONS(2040), - [anon_sym_U_SQUOTE] = ACTIONS(2040), - [anon_sym_u8_SQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_L_DQUOTE] = ACTIONS(2040), - [anon_sym_u_DQUOTE] = ACTIONS(2040), - [anon_sym_U_DQUOTE] = ACTIONS(2040), - [anon_sym_u8_DQUOTE] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [sym_null] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2040), - [anon_sym_ATimport] = ACTIONS(2040), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2038), - [anon_sym_ATcompatibility_alias] = ACTIONS(2040), - [anon_sym_ATprotocol] = ACTIONS(2040), - [anon_sym_ATclass] = ACTIONS(2040), - [anon_sym_ATinterface] = ACTIONS(2040), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2038), - [sym_method_attribute_specifier] = ACTIONS(2038), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2038), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE] = ACTIONS(2038), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_API_AVAILABLE] = ACTIONS(2038), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_API_DEPRECATED] = ACTIONS(2038), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2038), - [anon_sym___deprecated_msg] = ACTIONS(2038), - [anon_sym___deprecated_enum_msg] = ACTIONS(2038), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2038), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2038), - [anon_sym_ATimplementation] = ACTIONS(2040), - [anon_sym_typeof] = ACTIONS(2038), - [anon_sym___typeof] = ACTIONS(2038), - [anon_sym___typeof__] = ACTIONS(2038), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_nil] = ACTIONS(2038), - [sym_id] = ACTIONS(2038), - [sym_instancetype] = ACTIONS(2038), - [sym_Class] = ACTIONS(2038), - [sym_SEL] = ACTIONS(2038), - [sym_IMP] = ACTIONS(2038), - [sym_BOOL] = ACTIONS(2038), - [sym_auto] = ACTIONS(2038), - [anon_sym_ATautoreleasepool] = ACTIONS(2040), - [anon_sym_ATsynchronized] = ACTIONS(2040), - [anon_sym_ATtry] = ACTIONS(2040), - [anon_sym_ATthrow] = ACTIONS(2040), - [anon_sym_ATselector] = ACTIONS(2040), - [anon_sym_ATencode] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2038), - [sym_YES] = ACTIONS(2038), - [sym_NO] = ACTIONS(2038), - [anon_sym___builtin_available] = ACTIONS(2038), - [anon_sym_ATavailable] = ACTIONS(2040), - [anon_sym_va_arg] = ACTIONS(2038), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [889] = { - [ts_builtin_sym_end] = ACTIONS(2040), - [sym_identifier] = ACTIONS(2038), - [aux_sym_preproc_include_token1] = ACTIONS(2040), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2038), - [anon_sym___cdecl] = ACTIONS(2038), - [anon_sym___clrcall] = ACTIONS(2038), - [anon_sym___stdcall] = ACTIONS(2038), - [anon_sym___fastcall] = ACTIONS(2038), - [anon_sym___thiscall] = ACTIONS(2038), - [anon_sym___vectorcall] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_RBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_auto] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_in] = ACTIONS(2038), - [anon_sym_out] = ACTIONS(2038), - [anon_sym_inout] = ACTIONS(2038), - [anon_sym_bycopy] = ACTIONS(2038), - [anon_sym_byref] = ACTIONS(2038), - [anon_sym_oneway] = ACTIONS(2038), - [anon_sym__Nullable] = ACTIONS(2038), - [anon_sym__Nonnull] = ACTIONS(2038), - [anon_sym__Nullable_result] = ACTIONS(2038), - [anon_sym__Null_unspecified] = ACTIONS(2038), - [anon_sym___autoreleasing] = ACTIONS(2038), - [anon_sym___nullable] = ACTIONS(2038), - [anon_sym___nonnull] = ACTIONS(2038), - [anon_sym___strong] = ACTIONS(2038), - [anon_sym___weak] = ACTIONS(2038), - [anon_sym___bridge] = ACTIONS(2038), - [anon_sym___bridge_transfer] = ACTIONS(2038), - [anon_sym___bridge_retained] = ACTIONS(2038), - [anon_sym___unsafe_unretained] = ACTIONS(2038), - [anon_sym___block] = ACTIONS(2038), - [anon_sym___kindof] = ACTIONS(2038), - [anon_sym___unused] = ACTIONS(2038), - [anon_sym__Complex] = ACTIONS(2038), - [anon_sym___complex] = ACTIONS(2038), - [anon_sym_IBOutlet] = ACTIONS(2038), - [anon_sym_IBInspectable] = ACTIONS(2038), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2038), - [anon_sym_signed] = ACTIONS(2038), - [anon_sym_unsigned] = ACTIONS(2038), - [anon_sym_long] = ACTIONS(2038), - [anon_sym_short] = ACTIONS(2038), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_NS_ENUM] = ACTIONS(2038), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2038), - [anon_sym_NS_OPTIONS] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_goto] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_sizeof] = ACTIONS(2038), - [sym_number_literal] = ACTIONS(2040), - [anon_sym_L_SQUOTE] = ACTIONS(2040), - [anon_sym_u_SQUOTE] = ACTIONS(2040), - [anon_sym_U_SQUOTE] = ACTIONS(2040), - [anon_sym_u8_SQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_L_DQUOTE] = ACTIONS(2040), - [anon_sym_u_DQUOTE] = ACTIONS(2040), - [anon_sym_U_DQUOTE] = ACTIONS(2040), - [anon_sym_u8_DQUOTE] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [sym_null] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2040), - [anon_sym_ATimport] = ACTIONS(2040), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2038), - [anon_sym_ATcompatibility_alias] = ACTIONS(2040), - [anon_sym_ATprotocol] = ACTIONS(2040), - [anon_sym_ATclass] = ACTIONS(2040), - [anon_sym_ATinterface] = ACTIONS(2040), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2038), - [sym_method_attribute_specifier] = ACTIONS(2038), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2038), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE] = ACTIONS(2038), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_API_AVAILABLE] = ACTIONS(2038), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_API_DEPRECATED] = ACTIONS(2038), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2038), - [anon_sym___deprecated_msg] = ACTIONS(2038), - [anon_sym___deprecated_enum_msg] = ACTIONS(2038), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2038), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2038), - [anon_sym_ATimplementation] = ACTIONS(2040), - [anon_sym_typeof] = ACTIONS(2038), - [anon_sym___typeof] = ACTIONS(2038), - [anon_sym___typeof__] = ACTIONS(2038), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_nil] = ACTIONS(2038), - [sym_id] = ACTIONS(2038), - [sym_instancetype] = ACTIONS(2038), - [sym_Class] = ACTIONS(2038), - [sym_SEL] = ACTIONS(2038), - [sym_IMP] = ACTIONS(2038), - [sym_BOOL] = ACTIONS(2038), - [sym_auto] = ACTIONS(2038), - [anon_sym_ATautoreleasepool] = ACTIONS(2040), - [anon_sym_ATsynchronized] = ACTIONS(2040), - [anon_sym_ATtry] = ACTIONS(2040), - [anon_sym_ATthrow] = ACTIONS(2040), - [anon_sym_ATselector] = ACTIONS(2040), - [anon_sym_ATencode] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2038), - [sym_YES] = ACTIONS(2038), - [sym_NO] = ACTIONS(2038), - [anon_sym___builtin_available] = ACTIONS(2038), - [anon_sym_ATavailable] = ACTIONS(2040), - [anon_sym_va_arg] = ACTIONS(2038), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [890] = { - [ts_builtin_sym_end] = ACTIONS(2040), - [sym_identifier] = ACTIONS(2038), - [aux_sym_preproc_include_token1] = ACTIONS(2040), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2038), - [anon_sym___cdecl] = ACTIONS(2038), - [anon_sym___clrcall] = ACTIONS(2038), - [anon_sym___stdcall] = ACTIONS(2038), - [anon_sym___fastcall] = ACTIONS(2038), - [anon_sym___thiscall] = ACTIONS(2038), - [anon_sym___vectorcall] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_RBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_auto] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_in] = ACTIONS(2038), - [anon_sym_out] = ACTIONS(2038), - [anon_sym_inout] = ACTIONS(2038), - [anon_sym_bycopy] = ACTIONS(2038), - [anon_sym_byref] = ACTIONS(2038), - [anon_sym_oneway] = ACTIONS(2038), - [anon_sym__Nullable] = ACTIONS(2038), - [anon_sym__Nonnull] = ACTIONS(2038), - [anon_sym__Nullable_result] = ACTIONS(2038), - [anon_sym__Null_unspecified] = ACTIONS(2038), - [anon_sym___autoreleasing] = ACTIONS(2038), - [anon_sym___nullable] = ACTIONS(2038), - [anon_sym___nonnull] = ACTIONS(2038), - [anon_sym___strong] = ACTIONS(2038), - [anon_sym___weak] = ACTIONS(2038), - [anon_sym___bridge] = ACTIONS(2038), - [anon_sym___bridge_transfer] = ACTIONS(2038), - [anon_sym___bridge_retained] = ACTIONS(2038), - [anon_sym___unsafe_unretained] = ACTIONS(2038), - [anon_sym___block] = ACTIONS(2038), - [anon_sym___kindof] = ACTIONS(2038), - [anon_sym___unused] = ACTIONS(2038), - [anon_sym__Complex] = ACTIONS(2038), - [anon_sym___complex] = ACTIONS(2038), - [anon_sym_IBOutlet] = ACTIONS(2038), - [anon_sym_IBInspectable] = ACTIONS(2038), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2038), - [anon_sym_signed] = ACTIONS(2038), - [anon_sym_unsigned] = ACTIONS(2038), - [anon_sym_long] = ACTIONS(2038), - [anon_sym_short] = ACTIONS(2038), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_NS_ENUM] = ACTIONS(2038), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2038), - [anon_sym_NS_OPTIONS] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_goto] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_sizeof] = ACTIONS(2038), - [sym_number_literal] = ACTIONS(2040), - [anon_sym_L_SQUOTE] = ACTIONS(2040), - [anon_sym_u_SQUOTE] = ACTIONS(2040), - [anon_sym_U_SQUOTE] = ACTIONS(2040), - [anon_sym_u8_SQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_L_DQUOTE] = ACTIONS(2040), - [anon_sym_u_DQUOTE] = ACTIONS(2040), - [anon_sym_U_DQUOTE] = ACTIONS(2040), - [anon_sym_u8_DQUOTE] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [sym_null] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2040), - [anon_sym_ATimport] = ACTIONS(2040), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2038), - [anon_sym_ATcompatibility_alias] = ACTIONS(2040), - [anon_sym_ATprotocol] = ACTIONS(2040), - [anon_sym_ATclass] = ACTIONS(2040), - [anon_sym_ATinterface] = ACTIONS(2040), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2038), - [sym_method_attribute_specifier] = ACTIONS(2038), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2038), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE] = ACTIONS(2038), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_API_AVAILABLE] = ACTIONS(2038), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_API_DEPRECATED] = ACTIONS(2038), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2038), - [anon_sym___deprecated_msg] = ACTIONS(2038), - [anon_sym___deprecated_enum_msg] = ACTIONS(2038), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2038), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2038), - [anon_sym_ATimplementation] = ACTIONS(2040), - [anon_sym_typeof] = ACTIONS(2038), - [anon_sym___typeof] = ACTIONS(2038), - [anon_sym___typeof__] = ACTIONS(2038), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_nil] = ACTIONS(2038), - [sym_id] = ACTIONS(2038), - [sym_instancetype] = ACTIONS(2038), - [sym_Class] = ACTIONS(2038), - [sym_SEL] = ACTIONS(2038), - [sym_IMP] = ACTIONS(2038), - [sym_BOOL] = ACTIONS(2038), - [sym_auto] = ACTIONS(2038), - [anon_sym_ATautoreleasepool] = ACTIONS(2040), - [anon_sym_ATsynchronized] = ACTIONS(2040), - [anon_sym_ATtry] = ACTIONS(2040), - [anon_sym_ATthrow] = ACTIONS(2040), - [anon_sym_ATselector] = ACTIONS(2040), - [anon_sym_ATencode] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2038), - [sym_YES] = ACTIONS(2038), - [sym_NO] = ACTIONS(2038), - [anon_sym___builtin_available] = ACTIONS(2038), - [anon_sym_ATavailable] = ACTIONS(2040), - [anon_sym_va_arg] = ACTIONS(2038), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [891] = { - [ts_builtin_sym_end] = ACTIONS(2040), - [sym_identifier] = ACTIONS(2038), - [aux_sym_preproc_include_token1] = ACTIONS(2040), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2038), - [anon_sym___cdecl] = ACTIONS(2038), - [anon_sym___clrcall] = ACTIONS(2038), - [anon_sym___stdcall] = ACTIONS(2038), - [anon_sym___fastcall] = ACTIONS(2038), - [anon_sym___thiscall] = ACTIONS(2038), - [anon_sym___vectorcall] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_RBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_auto] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_in] = ACTIONS(2038), - [anon_sym_out] = ACTIONS(2038), - [anon_sym_inout] = ACTIONS(2038), - [anon_sym_bycopy] = ACTIONS(2038), - [anon_sym_byref] = ACTIONS(2038), - [anon_sym_oneway] = ACTIONS(2038), - [anon_sym__Nullable] = ACTIONS(2038), - [anon_sym__Nonnull] = ACTIONS(2038), - [anon_sym__Nullable_result] = ACTIONS(2038), - [anon_sym__Null_unspecified] = ACTIONS(2038), - [anon_sym___autoreleasing] = ACTIONS(2038), - [anon_sym___nullable] = ACTIONS(2038), - [anon_sym___nonnull] = ACTIONS(2038), - [anon_sym___strong] = ACTIONS(2038), - [anon_sym___weak] = ACTIONS(2038), - [anon_sym___bridge] = ACTIONS(2038), - [anon_sym___bridge_transfer] = ACTIONS(2038), - [anon_sym___bridge_retained] = ACTIONS(2038), - [anon_sym___unsafe_unretained] = ACTIONS(2038), - [anon_sym___block] = ACTIONS(2038), - [anon_sym___kindof] = ACTIONS(2038), - [anon_sym___unused] = ACTIONS(2038), - [anon_sym__Complex] = ACTIONS(2038), - [anon_sym___complex] = ACTIONS(2038), - [anon_sym_IBOutlet] = ACTIONS(2038), - [anon_sym_IBInspectable] = ACTIONS(2038), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2038), - [anon_sym_signed] = ACTIONS(2038), - [anon_sym_unsigned] = ACTIONS(2038), - [anon_sym_long] = ACTIONS(2038), - [anon_sym_short] = ACTIONS(2038), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_NS_ENUM] = ACTIONS(2038), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2038), - [anon_sym_NS_OPTIONS] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_goto] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_sizeof] = ACTIONS(2038), - [sym_number_literal] = ACTIONS(2040), - [anon_sym_L_SQUOTE] = ACTIONS(2040), - [anon_sym_u_SQUOTE] = ACTIONS(2040), - [anon_sym_U_SQUOTE] = ACTIONS(2040), - [anon_sym_u8_SQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_L_DQUOTE] = ACTIONS(2040), - [anon_sym_u_DQUOTE] = ACTIONS(2040), - [anon_sym_U_DQUOTE] = ACTIONS(2040), - [anon_sym_u8_DQUOTE] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [sym_null] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2040), - [anon_sym_ATimport] = ACTIONS(2040), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2038), - [anon_sym_ATcompatibility_alias] = ACTIONS(2040), - [anon_sym_ATprotocol] = ACTIONS(2040), - [anon_sym_ATclass] = ACTIONS(2040), - [anon_sym_ATinterface] = ACTIONS(2040), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2038), - [sym_method_attribute_specifier] = ACTIONS(2038), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2038), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE] = ACTIONS(2038), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_API_AVAILABLE] = ACTIONS(2038), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_API_DEPRECATED] = ACTIONS(2038), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2038), - [anon_sym___deprecated_msg] = ACTIONS(2038), - [anon_sym___deprecated_enum_msg] = ACTIONS(2038), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2038), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2038), - [anon_sym_ATimplementation] = ACTIONS(2040), - [anon_sym_typeof] = ACTIONS(2038), - [anon_sym___typeof] = ACTIONS(2038), - [anon_sym___typeof__] = ACTIONS(2038), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_nil] = ACTIONS(2038), - [sym_id] = ACTIONS(2038), - [sym_instancetype] = ACTIONS(2038), - [sym_Class] = ACTIONS(2038), - [sym_SEL] = ACTIONS(2038), - [sym_IMP] = ACTIONS(2038), - [sym_BOOL] = ACTIONS(2038), - [sym_auto] = ACTIONS(2038), - [anon_sym_ATautoreleasepool] = ACTIONS(2040), - [anon_sym_ATsynchronized] = ACTIONS(2040), - [anon_sym_ATtry] = ACTIONS(2040), - [anon_sym_ATthrow] = ACTIONS(2040), - [anon_sym_ATselector] = ACTIONS(2040), - [anon_sym_ATencode] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2038), - [sym_YES] = ACTIONS(2038), - [sym_NO] = ACTIONS(2038), - [anon_sym___builtin_available] = ACTIONS(2038), - [anon_sym_ATavailable] = ACTIONS(2040), - [anon_sym_va_arg] = ACTIONS(2038), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [892] = { - [ts_builtin_sym_end] = ACTIONS(2036), - [sym_identifier] = ACTIONS(2034), - [aux_sym_preproc_include_token1] = ACTIONS(2036), - [aux_sym_preproc_def_token1] = ACTIONS(2036), - [aux_sym_preproc_if_token1] = ACTIONS(2034), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2034), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2034), - [anon_sym_LPAREN2] = ACTIONS(2036), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_TILDE] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2034), - [anon_sym_PLUS] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_CARET] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_typedef] = ACTIONS(2034), - [anon_sym_extern] = ACTIONS(2034), - [anon_sym___attribute] = ACTIONS(2034), - [anon_sym___attribute__] = ACTIONS(2034), - [anon_sym___declspec] = ACTIONS(2034), - [anon_sym___cdecl] = ACTIONS(2034), - [anon_sym___clrcall] = ACTIONS(2034), - [anon_sym___stdcall] = ACTIONS(2034), - [anon_sym___fastcall] = ACTIONS(2034), - [anon_sym___thiscall] = ACTIONS(2034), - [anon_sym___vectorcall] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2034), - [anon_sym_auto] = ACTIONS(2034), - [anon_sym_register] = ACTIONS(2034), - [anon_sym_inline] = ACTIONS(2034), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2034), - [anon_sym_const] = ACTIONS(2034), - [anon_sym_volatile] = ACTIONS(2034), - [anon_sym_restrict] = ACTIONS(2034), - [anon_sym__Atomic] = ACTIONS(2034), - [anon_sym_in] = ACTIONS(2034), - [anon_sym_out] = ACTIONS(2034), - [anon_sym_inout] = ACTIONS(2034), - [anon_sym_bycopy] = ACTIONS(2034), - [anon_sym_byref] = ACTIONS(2034), - [anon_sym_oneway] = ACTIONS(2034), - [anon_sym__Nullable] = ACTIONS(2034), - [anon_sym__Nonnull] = ACTIONS(2034), - [anon_sym__Nullable_result] = ACTIONS(2034), - [anon_sym__Null_unspecified] = ACTIONS(2034), - [anon_sym___autoreleasing] = ACTIONS(2034), - [anon_sym___nullable] = ACTIONS(2034), - [anon_sym___nonnull] = ACTIONS(2034), - [anon_sym___strong] = ACTIONS(2034), - [anon_sym___weak] = ACTIONS(2034), - [anon_sym___bridge] = ACTIONS(2034), - [anon_sym___bridge_transfer] = ACTIONS(2034), - [anon_sym___bridge_retained] = ACTIONS(2034), - [anon_sym___unsafe_unretained] = ACTIONS(2034), - [anon_sym___block] = ACTIONS(2034), - [anon_sym___kindof] = ACTIONS(2034), - [anon_sym___unused] = ACTIONS(2034), - [anon_sym__Complex] = ACTIONS(2034), - [anon_sym___complex] = ACTIONS(2034), - [anon_sym_IBOutlet] = ACTIONS(2034), - [anon_sym_IBInspectable] = ACTIONS(2034), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2034), - [anon_sym_signed] = ACTIONS(2034), - [anon_sym_unsigned] = ACTIONS(2034), - [anon_sym_long] = ACTIONS(2034), - [anon_sym_short] = ACTIONS(2034), - [sym_primitive_type] = ACTIONS(2034), - [anon_sym_enum] = ACTIONS(2034), - [anon_sym_NS_ENUM] = ACTIONS(2034), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2034), - [anon_sym_NS_OPTIONS] = ACTIONS(2034), - [anon_sym_struct] = ACTIONS(2034), - [anon_sym_union] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2034), - [anon_sym_switch] = ACTIONS(2034), - [anon_sym_case] = ACTIONS(2034), - [anon_sym_default] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2034), - [anon_sym_for] = ACTIONS(2034), - [anon_sym_return] = ACTIONS(2034), - [anon_sym_break] = ACTIONS(2034), - [anon_sym_continue] = ACTIONS(2034), - [anon_sym_goto] = ACTIONS(2034), - [anon_sym_DASH_DASH] = ACTIONS(2036), - [anon_sym_PLUS_PLUS] = ACTIONS(2036), - [anon_sym_sizeof] = ACTIONS(2034), - [sym_number_literal] = ACTIONS(2036), - [anon_sym_L_SQUOTE] = ACTIONS(2036), - [anon_sym_u_SQUOTE] = ACTIONS(2036), - [anon_sym_U_SQUOTE] = ACTIONS(2036), - [anon_sym_u8_SQUOTE] = ACTIONS(2036), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2034), - [sym_false] = ACTIONS(2034), - [sym_null] = ACTIONS(2034), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2036), - [anon_sym_ATimport] = ACTIONS(2036), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2034), - [anon_sym_ATcompatibility_alias] = ACTIONS(2036), - [anon_sym_ATprotocol] = ACTIONS(2036), - [anon_sym_ATclass] = ACTIONS(2036), - [anon_sym_ATinterface] = ACTIONS(2036), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2034), - [sym_method_attribute_specifier] = ACTIONS(2034), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2034), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2034), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2034), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2034), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2034), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2034), - [anon_sym_NS_AVAILABLE] = ACTIONS(2034), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2034), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_API_AVAILABLE] = ACTIONS(2034), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2034), - [anon_sym_API_DEPRECATED] = ACTIONS(2034), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2034), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2034), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2034), - [anon_sym___deprecated_msg] = ACTIONS(2034), - [anon_sym___deprecated_enum_msg] = ACTIONS(2034), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2034), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2034), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2034), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2034), - [anon_sym_ATimplementation] = ACTIONS(2036), - [anon_sym_typeof] = ACTIONS(2034), - [anon_sym___typeof] = ACTIONS(2034), - [anon_sym___typeof__] = ACTIONS(2034), - [sym_self] = ACTIONS(2034), - [sym_super] = ACTIONS(2034), - [sym_nil] = ACTIONS(2034), - [sym_id] = ACTIONS(2034), - [sym_instancetype] = ACTIONS(2034), - [sym_Class] = ACTIONS(2034), - [sym_SEL] = ACTIONS(2034), - [sym_IMP] = ACTIONS(2034), - [sym_BOOL] = ACTIONS(2034), - [sym_auto] = ACTIONS(2034), - [anon_sym_ATautoreleasepool] = ACTIONS(2036), - [anon_sym_ATsynchronized] = ACTIONS(2036), - [anon_sym_ATtry] = ACTIONS(2036), - [anon_sym_ATthrow] = ACTIONS(2036), - [anon_sym_ATselector] = ACTIONS(2036), - [anon_sym_ATencode] = ACTIONS(2036), - [anon_sym_AT] = ACTIONS(2034), - [sym_YES] = ACTIONS(2034), - [sym_NO] = ACTIONS(2034), - [anon_sym___builtin_available] = ACTIONS(2034), - [anon_sym_ATavailable] = ACTIONS(2036), - [anon_sym_va_arg] = ACTIONS(2034), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [893] = { - [ts_builtin_sym_end] = ACTIONS(2036), - [sym_identifier] = ACTIONS(2034), - [aux_sym_preproc_include_token1] = ACTIONS(2036), - [aux_sym_preproc_def_token1] = ACTIONS(2036), - [aux_sym_preproc_if_token1] = ACTIONS(2034), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2034), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2034), - [anon_sym_LPAREN2] = ACTIONS(2036), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_TILDE] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2034), - [anon_sym_PLUS] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_CARET] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_typedef] = ACTIONS(2034), - [anon_sym_extern] = ACTIONS(2034), - [anon_sym___attribute] = ACTIONS(2034), - [anon_sym___attribute__] = ACTIONS(2034), - [anon_sym___declspec] = ACTIONS(2034), - [anon_sym___cdecl] = ACTIONS(2034), - [anon_sym___clrcall] = ACTIONS(2034), - [anon_sym___stdcall] = ACTIONS(2034), - [anon_sym___fastcall] = ACTIONS(2034), - [anon_sym___thiscall] = ACTIONS(2034), - [anon_sym___vectorcall] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2034), - [anon_sym_auto] = ACTIONS(2034), - [anon_sym_register] = ACTIONS(2034), - [anon_sym_inline] = ACTIONS(2034), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2034), - [anon_sym_const] = ACTIONS(2034), - [anon_sym_volatile] = ACTIONS(2034), - [anon_sym_restrict] = ACTIONS(2034), - [anon_sym__Atomic] = ACTIONS(2034), - [anon_sym_in] = ACTIONS(2034), - [anon_sym_out] = ACTIONS(2034), - [anon_sym_inout] = ACTIONS(2034), - [anon_sym_bycopy] = ACTIONS(2034), - [anon_sym_byref] = ACTIONS(2034), - [anon_sym_oneway] = ACTIONS(2034), - [anon_sym__Nullable] = ACTIONS(2034), - [anon_sym__Nonnull] = ACTIONS(2034), - [anon_sym__Nullable_result] = ACTIONS(2034), - [anon_sym__Null_unspecified] = ACTIONS(2034), - [anon_sym___autoreleasing] = ACTIONS(2034), - [anon_sym___nullable] = ACTIONS(2034), - [anon_sym___nonnull] = ACTIONS(2034), - [anon_sym___strong] = ACTIONS(2034), - [anon_sym___weak] = ACTIONS(2034), - [anon_sym___bridge] = ACTIONS(2034), - [anon_sym___bridge_transfer] = ACTIONS(2034), - [anon_sym___bridge_retained] = ACTIONS(2034), - [anon_sym___unsafe_unretained] = ACTIONS(2034), - [anon_sym___block] = ACTIONS(2034), - [anon_sym___kindof] = ACTIONS(2034), - [anon_sym___unused] = ACTIONS(2034), - [anon_sym__Complex] = ACTIONS(2034), - [anon_sym___complex] = ACTIONS(2034), - [anon_sym_IBOutlet] = ACTIONS(2034), - [anon_sym_IBInspectable] = ACTIONS(2034), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2034), - [anon_sym_signed] = ACTIONS(2034), - [anon_sym_unsigned] = ACTIONS(2034), - [anon_sym_long] = ACTIONS(2034), - [anon_sym_short] = ACTIONS(2034), - [sym_primitive_type] = ACTIONS(2034), - [anon_sym_enum] = ACTIONS(2034), - [anon_sym_NS_ENUM] = ACTIONS(2034), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2034), - [anon_sym_NS_OPTIONS] = ACTIONS(2034), - [anon_sym_struct] = ACTIONS(2034), - [anon_sym_union] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2034), - [anon_sym_switch] = ACTIONS(2034), - [anon_sym_case] = ACTIONS(2034), - [anon_sym_default] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2034), - [anon_sym_for] = ACTIONS(2034), - [anon_sym_return] = ACTIONS(2034), - [anon_sym_break] = ACTIONS(2034), - [anon_sym_continue] = ACTIONS(2034), - [anon_sym_goto] = ACTIONS(2034), - [anon_sym_DASH_DASH] = ACTIONS(2036), - [anon_sym_PLUS_PLUS] = ACTIONS(2036), - [anon_sym_sizeof] = ACTIONS(2034), - [sym_number_literal] = ACTIONS(2036), - [anon_sym_L_SQUOTE] = ACTIONS(2036), - [anon_sym_u_SQUOTE] = ACTIONS(2036), - [anon_sym_U_SQUOTE] = ACTIONS(2036), - [anon_sym_u8_SQUOTE] = ACTIONS(2036), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2034), - [sym_false] = ACTIONS(2034), - [sym_null] = ACTIONS(2034), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2036), - [anon_sym_ATimport] = ACTIONS(2036), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2034), - [anon_sym_ATcompatibility_alias] = ACTIONS(2036), - [anon_sym_ATprotocol] = ACTIONS(2036), - [anon_sym_ATclass] = ACTIONS(2036), - [anon_sym_ATinterface] = ACTIONS(2036), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2034), - [sym_method_attribute_specifier] = ACTIONS(2034), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2034), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2034), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2034), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2034), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2034), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2034), - [anon_sym_NS_AVAILABLE] = ACTIONS(2034), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2034), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_API_AVAILABLE] = ACTIONS(2034), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2034), - [anon_sym_API_DEPRECATED] = ACTIONS(2034), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2034), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2034), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2034), - [anon_sym___deprecated_msg] = ACTIONS(2034), - [anon_sym___deprecated_enum_msg] = ACTIONS(2034), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2034), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2034), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2034), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2034), - [anon_sym_ATimplementation] = ACTIONS(2036), - [anon_sym_typeof] = ACTIONS(2034), - [anon_sym___typeof] = ACTIONS(2034), - [anon_sym___typeof__] = ACTIONS(2034), - [sym_self] = ACTIONS(2034), - [sym_super] = ACTIONS(2034), - [sym_nil] = ACTIONS(2034), - [sym_id] = ACTIONS(2034), - [sym_instancetype] = ACTIONS(2034), - [sym_Class] = ACTIONS(2034), - [sym_SEL] = ACTIONS(2034), - [sym_IMP] = ACTIONS(2034), - [sym_BOOL] = ACTIONS(2034), - [sym_auto] = ACTIONS(2034), - [anon_sym_ATautoreleasepool] = ACTIONS(2036), - [anon_sym_ATsynchronized] = ACTIONS(2036), - [anon_sym_ATtry] = ACTIONS(2036), - [anon_sym_ATthrow] = ACTIONS(2036), - [anon_sym_ATselector] = ACTIONS(2036), - [anon_sym_ATencode] = ACTIONS(2036), - [anon_sym_AT] = ACTIONS(2034), - [sym_YES] = ACTIONS(2034), - [sym_NO] = ACTIONS(2034), - [anon_sym___builtin_available] = ACTIONS(2034), - [anon_sym_ATavailable] = ACTIONS(2036), - [anon_sym_va_arg] = ACTIONS(2034), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [894] = { - [ts_builtin_sym_end] = ACTIONS(1880), - [sym_identifier] = ACTIONS(1878), - [aux_sym_preproc_include_token1] = ACTIONS(1880), - [aux_sym_preproc_def_token1] = ACTIONS(1880), - [aux_sym_preproc_if_token1] = ACTIONS(1878), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1878), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1878), - [anon_sym_LPAREN2] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1880), - [anon_sym_TILDE] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_PLUS] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_AMP] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_typedef] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(1878), - [anon_sym___attribute] = ACTIONS(1878), - [anon_sym___attribute__] = ACTIONS(1878), - [anon_sym___declspec] = ACTIONS(1878), - [anon_sym___cdecl] = ACTIONS(1878), - [anon_sym___clrcall] = ACTIONS(1878), - [anon_sym___stdcall] = ACTIONS(1878), - [anon_sym___fastcall] = ACTIONS(1878), - [anon_sym___thiscall] = ACTIONS(1878), - [anon_sym___vectorcall] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1880), - [anon_sym_RBRACE] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(1880), - [anon_sym_static] = ACTIONS(1878), - [anon_sym_auto] = ACTIONS(1878), - [anon_sym_register] = ACTIONS(1878), - [anon_sym_inline] = ACTIONS(1878), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1878), - [anon_sym_const] = ACTIONS(1878), - [anon_sym_volatile] = ACTIONS(1878), - [anon_sym_restrict] = ACTIONS(1878), - [anon_sym__Atomic] = ACTIONS(1878), - [anon_sym_in] = ACTIONS(1878), - [anon_sym_out] = ACTIONS(1878), - [anon_sym_inout] = ACTIONS(1878), - [anon_sym_bycopy] = ACTIONS(1878), - [anon_sym_byref] = ACTIONS(1878), - [anon_sym_oneway] = ACTIONS(1878), - [anon_sym__Nullable] = ACTIONS(1878), - [anon_sym__Nonnull] = ACTIONS(1878), - [anon_sym__Nullable_result] = ACTIONS(1878), - [anon_sym__Null_unspecified] = ACTIONS(1878), - [anon_sym___autoreleasing] = ACTIONS(1878), - [anon_sym___nullable] = ACTIONS(1878), - [anon_sym___nonnull] = ACTIONS(1878), - [anon_sym___strong] = ACTIONS(1878), - [anon_sym___weak] = ACTIONS(1878), - [anon_sym___bridge] = ACTIONS(1878), - [anon_sym___bridge_transfer] = ACTIONS(1878), - [anon_sym___bridge_retained] = ACTIONS(1878), - [anon_sym___unsafe_unretained] = ACTIONS(1878), - [anon_sym___block] = ACTIONS(1878), - [anon_sym___kindof] = ACTIONS(1878), - [anon_sym___unused] = ACTIONS(1878), - [anon_sym__Complex] = ACTIONS(1878), - [anon_sym___complex] = ACTIONS(1878), - [anon_sym_IBOutlet] = ACTIONS(1878), - [anon_sym_IBInspectable] = ACTIONS(1878), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1878), - [anon_sym_signed] = ACTIONS(1878), - [anon_sym_unsigned] = ACTIONS(1878), - [anon_sym_long] = ACTIONS(1878), - [anon_sym_short] = ACTIONS(1878), - [sym_primitive_type] = ACTIONS(1878), - [anon_sym_enum] = ACTIONS(1878), - [anon_sym_NS_ENUM] = ACTIONS(1878), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1878), - [anon_sym_NS_OPTIONS] = ACTIONS(1878), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1878), - [anon_sym_if] = ACTIONS(1878), - [anon_sym_switch] = ACTIONS(1878), - [anon_sym_case] = ACTIONS(1878), - [anon_sym_default] = ACTIONS(1878), - [anon_sym_while] = ACTIONS(1878), - [anon_sym_do] = ACTIONS(1878), - [anon_sym_for] = ACTIONS(1878), - [anon_sym_return] = ACTIONS(1878), - [anon_sym_break] = ACTIONS(1878), - [anon_sym_continue] = ACTIONS(1878), - [anon_sym_goto] = ACTIONS(1878), - [anon_sym_DASH_DASH] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(1880), - [anon_sym_sizeof] = ACTIONS(1878), - [sym_number_literal] = ACTIONS(1880), - [anon_sym_L_SQUOTE] = ACTIONS(1880), - [anon_sym_u_SQUOTE] = ACTIONS(1880), - [anon_sym_U_SQUOTE] = ACTIONS(1880), - [anon_sym_u8_SQUOTE] = ACTIONS(1880), - [anon_sym_SQUOTE] = ACTIONS(1880), - [anon_sym_L_DQUOTE] = ACTIONS(1880), - [anon_sym_u_DQUOTE] = ACTIONS(1880), - [anon_sym_U_DQUOTE] = ACTIONS(1880), - [anon_sym_u8_DQUOTE] = ACTIONS(1880), - [anon_sym_DQUOTE] = ACTIONS(1880), - [sym_true] = ACTIONS(1878), - [sym_false] = ACTIONS(1878), - [sym_null] = ACTIONS(1878), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1880), - [anon_sym_ATimport] = ACTIONS(1880), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1878), - [anon_sym_ATcompatibility_alias] = ACTIONS(1880), - [anon_sym_ATprotocol] = ACTIONS(1880), - [anon_sym_ATclass] = ACTIONS(1880), - [anon_sym_ATinterface] = ACTIONS(1880), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1878), - [sym_method_attribute_specifier] = ACTIONS(1878), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1878), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1878), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1878), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1878), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1878), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1878), - [anon_sym_NS_AVAILABLE] = ACTIONS(1878), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1878), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1878), - [anon_sym_API_AVAILABLE] = ACTIONS(1878), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1878), - [anon_sym_API_DEPRECATED] = ACTIONS(1878), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1878), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1878), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1878), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1878), - [anon_sym___deprecated_msg] = ACTIONS(1878), - [anon_sym___deprecated_enum_msg] = ACTIONS(1878), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1878), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1878), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1878), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1878), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1878), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1878), - [anon_sym_ATimplementation] = ACTIONS(1880), - [anon_sym_typeof] = ACTIONS(1878), - [anon_sym___typeof] = ACTIONS(1878), - [anon_sym___typeof__] = ACTIONS(1878), - [sym_self] = ACTIONS(1878), - [sym_super] = ACTIONS(1878), - [sym_nil] = ACTIONS(1878), - [sym_id] = ACTIONS(1878), - [sym_instancetype] = ACTIONS(1878), - [sym_Class] = ACTIONS(1878), - [sym_SEL] = ACTIONS(1878), - [sym_IMP] = ACTIONS(1878), - [sym_BOOL] = ACTIONS(1878), - [sym_auto] = ACTIONS(1878), - [anon_sym_ATautoreleasepool] = ACTIONS(1880), - [anon_sym_ATsynchronized] = ACTIONS(1880), - [anon_sym_ATtry] = ACTIONS(1880), - [anon_sym_ATthrow] = ACTIONS(1880), - [anon_sym_ATselector] = ACTIONS(1880), - [anon_sym_ATencode] = ACTIONS(1880), - [anon_sym_AT] = ACTIONS(1878), - [sym_YES] = ACTIONS(1878), - [sym_NO] = ACTIONS(1878), - [anon_sym___builtin_available] = ACTIONS(1878), - [anon_sym_ATavailable] = ACTIONS(1880), - [anon_sym_va_arg] = ACTIONS(1878), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [895] = { - [ts_builtin_sym_end] = ACTIONS(1876), - [sym_identifier] = ACTIONS(1874), - [aux_sym_preproc_include_token1] = ACTIONS(1876), - [aux_sym_preproc_def_token1] = ACTIONS(1876), - [aux_sym_preproc_if_token1] = ACTIONS(1874), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1874), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1874), - [anon_sym_LPAREN2] = ACTIONS(1876), - [anon_sym_BANG] = ACTIONS(1876), - [anon_sym_TILDE] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_PLUS] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1876), - [anon_sym_typedef] = ACTIONS(1874), - [anon_sym_extern] = ACTIONS(1874), - [anon_sym___attribute] = ACTIONS(1874), - [anon_sym___attribute__] = ACTIONS(1874), - [anon_sym___declspec] = ACTIONS(1874), - [anon_sym___cdecl] = ACTIONS(1874), - [anon_sym___clrcall] = ACTIONS(1874), - [anon_sym___stdcall] = ACTIONS(1874), - [anon_sym___fastcall] = ACTIONS(1874), - [anon_sym___thiscall] = ACTIONS(1874), - [anon_sym___vectorcall] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1876), - [anon_sym_RBRACE] = ACTIONS(1876), - [anon_sym_LBRACK] = ACTIONS(1876), - [anon_sym_static] = ACTIONS(1874), - [anon_sym_auto] = ACTIONS(1874), - [anon_sym_register] = ACTIONS(1874), - [anon_sym_inline] = ACTIONS(1874), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1874), - [anon_sym_const] = ACTIONS(1874), - [anon_sym_volatile] = ACTIONS(1874), - [anon_sym_restrict] = ACTIONS(1874), - [anon_sym__Atomic] = ACTIONS(1874), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_out] = ACTIONS(1874), - [anon_sym_inout] = ACTIONS(1874), - [anon_sym_bycopy] = ACTIONS(1874), - [anon_sym_byref] = ACTIONS(1874), - [anon_sym_oneway] = ACTIONS(1874), - [anon_sym__Nullable] = ACTIONS(1874), - [anon_sym__Nonnull] = ACTIONS(1874), - [anon_sym__Nullable_result] = ACTIONS(1874), - [anon_sym__Null_unspecified] = ACTIONS(1874), - [anon_sym___autoreleasing] = ACTIONS(1874), - [anon_sym___nullable] = ACTIONS(1874), - [anon_sym___nonnull] = ACTIONS(1874), - [anon_sym___strong] = ACTIONS(1874), - [anon_sym___weak] = ACTIONS(1874), - [anon_sym___bridge] = ACTIONS(1874), - [anon_sym___bridge_transfer] = ACTIONS(1874), - [anon_sym___bridge_retained] = ACTIONS(1874), - [anon_sym___unsafe_unretained] = ACTIONS(1874), - [anon_sym___block] = ACTIONS(1874), - [anon_sym___kindof] = ACTIONS(1874), - [anon_sym___unused] = ACTIONS(1874), - [anon_sym__Complex] = ACTIONS(1874), - [anon_sym___complex] = ACTIONS(1874), - [anon_sym_IBOutlet] = ACTIONS(1874), - [anon_sym_IBInspectable] = ACTIONS(1874), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1874), - [anon_sym_signed] = ACTIONS(1874), - [anon_sym_unsigned] = ACTIONS(1874), - [anon_sym_long] = ACTIONS(1874), - [anon_sym_short] = ACTIONS(1874), - [sym_primitive_type] = ACTIONS(1874), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_NS_ENUM] = ACTIONS(1874), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1874), - [anon_sym_NS_OPTIONS] = ACTIONS(1874), - [anon_sym_struct] = ACTIONS(1874), - [anon_sym_union] = ACTIONS(1874), - [anon_sym_if] = ACTIONS(1874), - [anon_sym_switch] = ACTIONS(1874), - [anon_sym_case] = ACTIONS(1874), - [anon_sym_default] = ACTIONS(1874), - [anon_sym_while] = ACTIONS(1874), - [anon_sym_do] = ACTIONS(1874), - [anon_sym_for] = ACTIONS(1874), - [anon_sym_return] = ACTIONS(1874), - [anon_sym_break] = ACTIONS(1874), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1874), - [anon_sym_DASH_DASH] = ACTIONS(1876), - [anon_sym_PLUS_PLUS] = ACTIONS(1876), - [anon_sym_sizeof] = ACTIONS(1874), - [sym_number_literal] = ACTIONS(1876), - [anon_sym_L_SQUOTE] = ACTIONS(1876), - [anon_sym_u_SQUOTE] = ACTIONS(1876), - [anon_sym_U_SQUOTE] = ACTIONS(1876), - [anon_sym_u8_SQUOTE] = ACTIONS(1876), - [anon_sym_SQUOTE] = ACTIONS(1876), - [anon_sym_L_DQUOTE] = ACTIONS(1876), - [anon_sym_u_DQUOTE] = ACTIONS(1876), - [anon_sym_U_DQUOTE] = ACTIONS(1876), - [anon_sym_u8_DQUOTE] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1876), - [sym_true] = ACTIONS(1874), - [sym_false] = ACTIONS(1874), - [sym_null] = ACTIONS(1874), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1876), - [anon_sym_ATimport] = ACTIONS(1876), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1874), - [anon_sym_ATcompatibility_alias] = ACTIONS(1876), - [anon_sym_ATprotocol] = ACTIONS(1876), - [anon_sym_ATclass] = ACTIONS(1876), - [anon_sym_ATinterface] = ACTIONS(1876), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1874), - [sym_method_attribute_specifier] = ACTIONS(1874), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1874), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1874), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1874), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1874), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1874), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1874), - [anon_sym_NS_AVAILABLE] = ACTIONS(1874), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1874), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1874), - [anon_sym_API_AVAILABLE] = ACTIONS(1874), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1874), - [anon_sym_API_DEPRECATED] = ACTIONS(1874), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1874), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1874), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1874), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1874), - [anon_sym___deprecated_msg] = ACTIONS(1874), - [anon_sym___deprecated_enum_msg] = ACTIONS(1874), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1874), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1874), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1874), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1874), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1874), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1874), - [anon_sym_ATimplementation] = ACTIONS(1876), - [anon_sym_typeof] = ACTIONS(1874), - [anon_sym___typeof] = ACTIONS(1874), - [anon_sym___typeof__] = ACTIONS(1874), - [sym_self] = ACTIONS(1874), - [sym_super] = ACTIONS(1874), - [sym_nil] = ACTIONS(1874), - [sym_id] = ACTIONS(1874), - [sym_instancetype] = ACTIONS(1874), - [sym_Class] = ACTIONS(1874), - [sym_SEL] = ACTIONS(1874), - [sym_IMP] = ACTIONS(1874), - [sym_BOOL] = ACTIONS(1874), - [sym_auto] = ACTIONS(1874), - [anon_sym_ATautoreleasepool] = ACTIONS(1876), - [anon_sym_ATsynchronized] = ACTIONS(1876), - [anon_sym_ATtry] = ACTIONS(1876), - [anon_sym_ATthrow] = ACTIONS(1876), - [anon_sym_ATselector] = ACTIONS(1876), - [anon_sym_ATencode] = ACTIONS(1876), - [anon_sym_AT] = ACTIONS(1874), - [sym_YES] = ACTIONS(1874), - [sym_NO] = ACTIONS(1874), - [anon_sym___builtin_available] = ACTIONS(1874), - [anon_sym_ATavailable] = ACTIONS(1876), - [anon_sym_va_arg] = ACTIONS(1874), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [896] = { - [ts_builtin_sym_end] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2058), - [aux_sym_preproc_include_token1] = ACTIONS(2060), - [aux_sym_preproc_def_token1] = ACTIONS(2060), - [aux_sym_preproc_if_token1] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2058), - [anon_sym_LPAREN2] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_typedef] = ACTIONS(2058), - [anon_sym_extern] = ACTIONS(2058), - [anon_sym___attribute] = ACTIONS(2058), - [anon_sym___attribute__] = ACTIONS(2058), - [anon_sym___declspec] = ACTIONS(2058), - [anon_sym___cdecl] = ACTIONS(2058), - [anon_sym___clrcall] = ACTIONS(2058), - [anon_sym___stdcall] = ACTIONS(2058), - [anon_sym___fastcall] = ACTIONS(2058), - [anon_sym___thiscall] = ACTIONS(2058), - [anon_sym___vectorcall] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_RBRACE] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_auto] = ACTIONS(2058), - [anon_sym_register] = ACTIONS(2058), - [anon_sym_inline] = ACTIONS(2058), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2058), - [anon_sym_const] = ACTIONS(2058), - [anon_sym_volatile] = ACTIONS(2058), - [anon_sym_restrict] = ACTIONS(2058), - [anon_sym__Atomic] = ACTIONS(2058), - [anon_sym_in] = ACTIONS(2058), - [anon_sym_out] = ACTIONS(2058), - [anon_sym_inout] = ACTIONS(2058), - [anon_sym_bycopy] = ACTIONS(2058), - [anon_sym_byref] = ACTIONS(2058), - [anon_sym_oneway] = ACTIONS(2058), - [anon_sym__Nullable] = ACTIONS(2058), - [anon_sym__Nonnull] = ACTIONS(2058), - [anon_sym__Nullable_result] = ACTIONS(2058), - [anon_sym__Null_unspecified] = ACTIONS(2058), - [anon_sym___autoreleasing] = ACTIONS(2058), - [anon_sym___nullable] = ACTIONS(2058), - [anon_sym___nonnull] = ACTIONS(2058), - [anon_sym___strong] = ACTIONS(2058), - [anon_sym___weak] = ACTIONS(2058), - [anon_sym___bridge] = ACTIONS(2058), - [anon_sym___bridge_transfer] = ACTIONS(2058), - [anon_sym___bridge_retained] = ACTIONS(2058), - [anon_sym___unsafe_unretained] = ACTIONS(2058), - [anon_sym___block] = ACTIONS(2058), - [anon_sym___kindof] = ACTIONS(2058), - [anon_sym___unused] = ACTIONS(2058), - [anon_sym__Complex] = ACTIONS(2058), - [anon_sym___complex] = ACTIONS(2058), - [anon_sym_IBOutlet] = ACTIONS(2058), - [anon_sym_IBInspectable] = ACTIONS(2058), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2058), - [anon_sym_signed] = ACTIONS(2058), - [anon_sym_unsigned] = ACTIONS(2058), - [anon_sym_long] = ACTIONS(2058), - [anon_sym_short] = ACTIONS(2058), - [sym_primitive_type] = ACTIONS(2058), - [anon_sym_enum] = ACTIONS(2058), - [anon_sym_NS_ENUM] = ACTIONS(2058), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2058), - [anon_sym_NS_OPTIONS] = ACTIONS(2058), - [anon_sym_struct] = ACTIONS(2058), - [anon_sym_union] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_switch] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2058), - [anon_sym_default] = ACTIONS(2058), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2058), - [anon_sym_break] = ACTIONS(2058), - [anon_sym_continue] = ACTIONS(2058), - [anon_sym_goto] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2060), - [anon_sym_sizeof] = ACTIONS(2058), - [sym_number_literal] = ACTIONS(2060), - [anon_sym_L_SQUOTE] = ACTIONS(2060), - [anon_sym_u_SQUOTE] = ACTIONS(2060), - [anon_sym_U_SQUOTE] = ACTIONS(2060), - [anon_sym_u8_SQUOTE] = ACTIONS(2060), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_L_DQUOTE] = ACTIONS(2060), - [anon_sym_u_DQUOTE] = ACTIONS(2060), - [anon_sym_U_DQUOTE] = ACTIONS(2060), - [anon_sym_u8_DQUOTE] = ACTIONS(2060), - [anon_sym_DQUOTE] = ACTIONS(2060), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [sym_null] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2060), - [anon_sym_ATimport] = ACTIONS(2060), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2058), - [anon_sym_ATcompatibility_alias] = ACTIONS(2060), - [anon_sym_ATprotocol] = ACTIONS(2060), - [anon_sym_ATclass] = ACTIONS(2060), - [anon_sym_ATinterface] = ACTIONS(2060), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2058), - [sym_method_attribute_specifier] = ACTIONS(2058), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2058), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE] = ACTIONS(2058), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_API_AVAILABLE] = ACTIONS(2058), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_API_DEPRECATED] = ACTIONS(2058), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2058), - [anon_sym___deprecated_msg] = ACTIONS(2058), - [anon_sym___deprecated_enum_msg] = ACTIONS(2058), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2058), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2058), - [anon_sym_ATimplementation] = ACTIONS(2060), - [anon_sym_typeof] = ACTIONS(2058), - [anon_sym___typeof] = ACTIONS(2058), - [anon_sym___typeof__] = ACTIONS(2058), - [sym_self] = ACTIONS(2058), - [sym_super] = ACTIONS(2058), - [sym_nil] = ACTIONS(2058), - [sym_id] = ACTIONS(2058), - [sym_instancetype] = ACTIONS(2058), - [sym_Class] = ACTIONS(2058), - [sym_SEL] = ACTIONS(2058), - [sym_IMP] = ACTIONS(2058), - [sym_BOOL] = ACTIONS(2058), - [sym_auto] = ACTIONS(2058), - [anon_sym_ATautoreleasepool] = ACTIONS(2060), - [anon_sym_ATsynchronized] = ACTIONS(2060), - [anon_sym_ATtry] = ACTIONS(2060), - [anon_sym_ATthrow] = ACTIONS(2060), - [anon_sym_ATselector] = ACTIONS(2060), - [anon_sym_ATencode] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [sym_YES] = ACTIONS(2058), - [sym_NO] = ACTIONS(2058), - [anon_sym___builtin_available] = ACTIONS(2058), - [anon_sym_ATavailable] = ACTIONS(2060), - [anon_sym_va_arg] = ACTIONS(2058), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [897] = { - [ts_builtin_sym_end] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2058), - [aux_sym_preproc_include_token1] = ACTIONS(2060), - [aux_sym_preproc_def_token1] = ACTIONS(2060), - [aux_sym_preproc_if_token1] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2058), - [anon_sym_LPAREN2] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_typedef] = ACTIONS(2058), - [anon_sym_extern] = ACTIONS(2058), - [anon_sym___attribute] = ACTIONS(2058), - [anon_sym___attribute__] = ACTIONS(2058), - [anon_sym___declspec] = ACTIONS(2058), - [anon_sym___cdecl] = ACTIONS(2058), - [anon_sym___clrcall] = ACTIONS(2058), - [anon_sym___stdcall] = ACTIONS(2058), - [anon_sym___fastcall] = ACTIONS(2058), - [anon_sym___thiscall] = ACTIONS(2058), - [anon_sym___vectorcall] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_RBRACE] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_auto] = ACTIONS(2058), - [anon_sym_register] = ACTIONS(2058), - [anon_sym_inline] = ACTIONS(2058), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2058), - [anon_sym_const] = ACTIONS(2058), - [anon_sym_volatile] = ACTIONS(2058), - [anon_sym_restrict] = ACTIONS(2058), - [anon_sym__Atomic] = ACTIONS(2058), - [anon_sym_in] = ACTIONS(2058), - [anon_sym_out] = ACTIONS(2058), - [anon_sym_inout] = ACTIONS(2058), - [anon_sym_bycopy] = ACTIONS(2058), - [anon_sym_byref] = ACTIONS(2058), - [anon_sym_oneway] = ACTIONS(2058), - [anon_sym__Nullable] = ACTIONS(2058), - [anon_sym__Nonnull] = ACTIONS(2058), - [anon_sym__Nullable_result] = ACTIONS(2058), - [anon_sym__Null_unspecified] = ACTIONS(2058), - [anon_sym___autoreleasing] = ACTIONS(2058), - [anon_sym___nullable] = ACTIONS(2058), - [anon_sym___nonnull] = ACTIONS(2058), - [anon_sym___strong] = ACTIONS(2058), - [anon_sym___weak] = ACTIONS(2058), - [anon_sym___bridge] = ACTIONS(2058), - [anon_sym___bridge_transfer] = ACTIONS(2058), - [anon_sym___bridge_retained] = ACTIONS(2058), - [anon_sym___unsafe_unretained] = ACTIONS(2058), - [anon_sym___block] = ACTIONS(2058), - [anon_sym___kindof] = ACTIONS(2058), - [anon_sym___unused] = ACTIONS(2058), - [anon_sym__Complex] = ACTIONS(2058), - [anon_sym___complex] = ACTIONS(2058), - [anon_sym_IBOutlet] = ACTIONS(2058), - [anon_sym_IBInspectable] = ACTIONS(2058), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2058), - [anon_sym_signed] = ACTIONS(2058), - [anon_sym_unsigned] = ACTIONS(2058), - [anon_sym_long] = ACTIONS(2058), - [anon_sym_short] = ACTIONS(2058), - [sym_primitive_type] = ACTIONS(2058), - [anon_sym_enum] = ACTIONS(2058), - [anon_sym_NS_ENUM] = ACTIONS(2058), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2058), - [anon_sym_NS_OPTIONS] = ACTIONS(2058), - [anon_sym_struct] = ACTIONS(2058), - [anon_sym_union] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_switch] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2058), - [anon_sym_default] = ACTIONS(2058), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2058), - [anon_sym_break] = ACTIONS(2058), - [anon_sym_continue] = ACTIONS(2058), - [anon_sym_goto] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2060), - [anon_sym_sizeof] = ACTIONS(2058), - [sym_number_literal] = ACTIONS(2060), - [anon_sym_L_SQUOTE] = ACTIONS(2060), - [anon_sym_u_SQUOTE] = ACTIONS(2060), - [anon_sym_U_SQUOTE] = ACTIONS(2060), - [anon_sym_u8_SQUOTE] = ACTIONS(2060), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_L_DQUOTE] = ACTIONS(2060), - [anon_sym_u_DQUOTE] = ACTIONS(2060), - [anon_sym_U_DQUOTE] = ACTIONS(2060), - [anon_sym_u8_DQUOTE] = ACTIONS(2060), - [anon_sym_DQUOTE] = ACTIONS(2060), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [sym_null] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2060), - [anon_sym_ATimport] = ACTIONS(2060), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2058), - [anon_sym_ATcompatibility_alias] = ACTIONS(2060), - [anon_sym_ATprotocol] = ACTIONS(2060), - [anon_sym_ATclass] = ACTIONS(2060), - [anon_sym_ATinterface] = ACTIONS(2060), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2058), - [sym_method_attribute_specifier] = ACTIONS(2058), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2058), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE] = ACTIONS(2058), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_API_AVAILABLE] = ACTIONS(2058), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_API_DEPRECATED] = ACTIONS(2058), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2058), - [anon_sym___deprecated_msg] = ACTIONS(2058), - [anon_sym___deprecated_enum_msg] = ACTIONS(2058), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2058), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2058), - [anon_sym_ATimplementation] = ACTIONS(2060), - [anon_sym_typeof] = ACTIONS(2058), - [anon_sym___typeof] = ACTIONS(2058), - [anon_sym___typeof__] = ACTIONS(2058), - [sym_self] = ACTIONS(2058), - [sym_super] = ACTIONS(2058), - [sym_nil] = ACTIONS(2058), - [sym_id] = ACTIONS(2058), - [sym_instancetype] = ACTIONS(2058), - [sym_Class] = ACTIONS(2058), - [sym_SEL] = ACTIONS(2058), - [sym_IMP] = ACTIONS(2058), - [sym_BOOL] = ACTIONS(2058), - [sym_auto] = ACTIONS(2058), - [anon_sym_ATautoreleasepool] = ACTIONS(2060), - [anon_sym_ATsynchronized] = ACTIONS(2060), - [anon_sym_ATtry] = ACTIONS(2060), - [anon_sym_ATthrow] = ACTIONS(2060), - [anon_sym_ATselector] = ACTIONS(2060), - [anon_sym_ATencode] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [sym_YES] = ACTIONS(2058), - [sym_NO] = ACTIONS(2058), - [anon_sym___builtin_available] = ACTIONS(2058), - [anon_sym_ATavailable] = ACTIONS(2060), - [anon_sym_va_arg] = ACTIONS(2058), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [898] = { - [ts_builtin_sym_end] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2058), - [aux_sym_preproc_include_token1] = ACTIONS(2060), - [aux_sym_preproc_def_token1] = ACTIONS(2060), - [aux_sym_preproc_if_token1] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2058), - [anon_sym_LPAREN2] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_typedef] = ACTIONS(2058), - [anon_sym_extern] = ACTIONS(2058), - [anon_sym___attribute] = ACTIONS(2058), - [anon_sym___attribute__] = ACTIONS(2058), - [anon_sym___declspec] = ACTIONS(2058), - [anon_sym___cdecl] = ACTIONS(2058), - [anon_sym___clrcall] = ACTIONS(2058), - [anon_sym___stdcall] = ACTIONS(2058), - [anon_sym___fastcall] = ACTIONS(2058), - [anon_sym___thiscall] = ACTIONS(2058), - [anon_sym___vectorcall] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_RBRACE] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_auto] = ACTIONS(2058), - [anon_sym_register] = ACTIONS(2058), - [anon_sym_inline] = ACTIONS(2058), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2058), - [anon_sym_const] = ACTIONS(2058), - [anon_sym_volatile] = ACTIONS(2058), - [anon_sym_restrict] = ACTIONS(2058), - [anon_sym__Atomic] = ACTIONS(2058), - [anon_sym_in] = ACTIONS(2058), - [anon_sym_out] = ACTIONS(2058), - [anon_sym_inout] = ACTIONS(2058), - [anon_sym_bycopy] = ACTIONS(2058), - [anon_sym_byref] = ACTIONS(2058), - [anon_sym_oneway] = ACTIONS(2058), - [anon_sym__Nullable] = ACTIONS(2058), - [anon_sym__Nonnull] = ACTIONS(2058), - [anon_sym__Nullable_result] = ACTIONS(2058), - [anon_sym__Null_unspecified] = ACTIONS(2058), - [anon_sym___autoreleasing] = ACTIONS(2058), - [anon_sym___nullable] = ACTIONS(2058), - [anon_sym___nonnull] = ACTIONS(2058), - [anon_sym___strong] = ACTIONS(2058), - [anon_sym___weak] = ACTIONS(2058), - [anon_sym___bridge] = ACTIONS(2058), - [anon_sym___bridge_transfer] = ACTIONS(2058), - [anon_sym___bridge_retained] = ACTIONS(2058), - [anon_sym___unsafe_unretained] = ACTIONS(2058), - [anon_sym___block] = ACTIONS(2058), - [anon_sym___kindof] = ACTIONS(2058), - [anon_sym___unused] = ACTIONS(2058), - [anon_sym__Complex] = ACTIONS(2058), - [anon_sym___complex] = ACTIONS(2058), - [anon_sym_IBOutlet] = ACTIONS(2058), - [anon_sym_IBInspectable] = ACTIONS(2058), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2058), - [anon_sym_signed] = ACTIONS(2058), - [anon_sym_unsigned] = ACTIONS(2058), - [anon_sym_long] = ACTIONS(2058), - [anon_sym_short] = ACTIONS(2058), - [sym_primitive_type] = ACTIONS(2058), - [anon_sym_enum] = ACTIONS(2058), - [anon_sym_NS_ENUM] = ACTIONS(2058), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2058), - [anon_sym_NS_OPTIONS] = ACTIONS(2058), - [anon_sym_struct] = ACTIONS(2058), - [anon_sym_union] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_switch] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2058), - [anon_sym_default] = ACTIONS(2058), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2058), - [anon_sym_break] = ACTIONS(2058), - [anon_sym_continue] = ACTIONS(2058), - [anon_sym_goto] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2060), - [anon_sym_sizeof] = ACTIONS(2058), - [sym_number_literal] = ACTIONS(2060), - [anon_sym_L_SQUOTE] = ACTIONS(2060), - [anon_sym_u_SQUOTE] = ACTIONS(2060), - [anon_sym_U_SQUOTE] = ACTIONS(2060), - [anon_sym_u8_SQUOTE] = ACTIONS(2060), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_L_DQUOTE] = ACTIONS(2060), - [anon_sym_u_DQUOTE] = ACTIONS(2060), - [anon_sym_U_DQUOTE] = ACTIONS(2060), - [anon_sym_u8_DQUOTE] = ACTIONS(2060), - [anon_sym_DQUOTE] = ACTIONS(2060), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [sym_null] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2060), - [anon_sym_ATimport] = ACTIONS(2060), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2058), - [anon_sym_ATcompatibility_alias] = ACTIONS(2060), - [anon_sym_ATprotocol] = ACTIONS(2060), - [anon_sym_ATclass] = ACTIONS(2060), - [anon_sym_ATinterface] = ACTIONS(2060), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2058), - [sym_method_attribute_specifier] = ACTIONS(2058), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2058), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE] = ACTIONS(2058), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_API_AVAILABLE] = ACTIONS(2058), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_API_DEPRECATED] = ACTIONS(2058), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2058), - [anon_sym___deprecated_msg] = ACTIONS(2058), - [anon_sym___deprecated_enum_msg] = ACTIONS(2058), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2058), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2058), - [anon_sym_ATimplementation] = ACTIONS(2060), - [anon_sym_typeof] = ACTIONS(2058), - [anon_sym___typeof] = ACTIONS(2058), - [anon_sym___typeof__] = ACTIONS(2058), - [sym_self] = ACTIONS(2058), - [sym_super] = ACTIONS(2058), - [sym_nil] = ACTIONS(2058), - [sym_id] = ACTIONS(2058), - [sym_instancetype] = ACTIONS(2058), - [sym_Class] = ACTIONS(2058), - [sym_SEL] = ACTIONS(2058), - [sym_IMP] = ACTIONS(2058), - [sym_BOOL] = ACTIONS(2058), - [sym_auto] = ACTIONS(2058), - [anon_sym_ATautoreleasepool] = ACTIONS(2060), - [anon_sym_ATsynchronized] = ACTIONS(2060), - [anon_sym_ATtry] = ACTIONS(2060), - [anon_sym_ATthrow] = ACTIONS(2060), - [anon_sym_ATselector] = ACTIONS(2060), - [anon_sym_ATencode] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [sym_YES] = ACTIONS(2058), - [sym_NO] = ACTIONS(2058), - [anon_sym___builtin_available] = ACTIONS(2058), - [anon_sym_ATavailable] = ACTIONS(2060), - [anon_sym_va_arg] = ACTIONS(2058), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [899] = { - [ts_builtin_sym_end] = ACTIONS(1936), - [sym_identifier] = ACTIONS(1934), - [aux_sym_preproc_include_token1] = ACTIONS(1936), - [aux_sym_preproc_def_token1] = ACTIONS(1936), - [aux_sym_preproc_if_token1] = ACTIONS(1934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1934), - [anon_sym_LPAREN2] = ACTIONS(1936), - [anon_sym_BANG] = ACTIONS(1936), - [anon_sym_TILDE] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_CARET] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1936), - [anon_sym_typedef] = ACTIONS(1934), - [anon_sym_extern] = ACTIONS(1934), - [anon_sym___attribute] = ACTIONS(1934), - [anon_sym___attribute__] = ACTIONS(1934), - [anon_sym___declspec] = ACTIONS(1934), - [anon_sym___cdecl] = ACTIONS(1934), - [anon_sym___clrcall] = ACTIONS(1934), - [anon_sym___stdcall] = ACTIONS(1934), - [anon_sym___fastcall] = ACTIONS(1934), - [anon_sym___thiscall] = ACTIONS(1934), - [anon_sym___vectorcall] = ACTIONS(1934), - [anon_sym_LBRACE] = ACTIONS(1936), - [anon_sym_RBRACE] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1934), - [anon_sym_auto] = ACTIONS(1934), - [anon_sym_register] = ACTIONS(1934), - [anon_sym_inline] = ACTIONS(1934), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1934), - [anon_sym_const] = ACTIONS(1934), - [anon_sym_volatile] = ACTIONS(1934), - [anon_sym_restrict] = ACTIONS(1934), - [anon_sym__Atomic] = ACTIONS(1934), - [anon_sym_in] = ACTIONS(1934), - [anon_sym_out] = ACTIONS(1934), - [anon_sym_inout] = ACTIONS(1934), - [anon_sym_bycopy] = ACTIONS(1934), - [anon_sym_byref] = ACTIONS(1934), - [anon_sym_oneway] = ACTIONS(1934), - [anon_sym__Nullable] = ACTIONS(1934), - [anon_sym__Nonnull] = ACTIONS(1934), - [anon_sym__Nullable_result] = ACTIONS(1934), - [anon_sym__Null_unspecified] = ACTIONS(1934), - [anon_sym___autoreleasing] = ACTIONS(1934), - [anon_sym___nullable] = ACTIONS(1934), - [anon_sym___nonnull] = ACTIONS(1934), - [anon_sym___strong] = ACTIONS(1934), - [anon_sym___weak] = ACTIONS(1934), - [anon_sym___bridge] = ACTIONS(1934), - [anon_sym___bridge_transfer] = ACTIONS(1934), - [anon_sym___bridge_retained] = ACTIONS(1934), - [anon_sym___unsafe_unretained] = ACTIONS(1934), - [anon_sym___block] = ACTIONS(1934), - [anon_sym___kindof] = ACTIONS(1934), - [anon_sym___unused] = ACTIONS(1934), - [anon_sym__Complex] = ACTIONS(1934), - [anon_sym___complex] = ACTIONS(1934), - [anon_sym_IBOutlet] = ACTIONS(1934), - [anon_sym_IBInspectable] = ACTIONS(1934), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1934), - [anon_sym_signed] = ACTIONS(1934), - [anon_sym_unsigned] = ACTIONS(1934), - [anon_sym_long] = ACTIONS(1934), - [anon_sym_short] = ACTIONS(1934), - [sym_primitive_type] = ACTIONS(1934), - [anon_sym_enum] = ACTIONS(1934), - [anon_sym_NS_ENUM] = ACTIONS(1934), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1934), - [anon_sym_NS_OPTIONS] = ACTIONS(1934), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1934), - [anon_sym_switch] = ACTIONS(1934), - [anon_sym_case] = ACTIONS(1934), - [anon_sym_default] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1934), - [anon_sym_do] = ACTIONS(1934), - [anon_sym_for] = ACTIONS(1934), - [anon_sym_return] = ACTIONS(1934), - [anon_sym_break] = ACTIONS(1934), - [anon_sym_continue] = ACTIONS(1934), - [anon_sym_goto] = ACTIONS(1934), - [anon_sym_DASH_DASH] = ACTIONS(1936), - [anon_sym_PLUS_PLUS] = ACTIONS(1936), - [anon_sym_sizeof] = ACTIONS(1934), - [sym_number_literal] = ACTIONS(1936), - [anon_sym_L_SQUOTE] = ACTIONS(1936), - [anon_sym_u_SQUOTE] = ACTIONS(1936), - [anon_sym_U_SQUOTE] = ACTIONS(1936), - [anon_sym_u8_SQUOTE] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_L_DQUOTE] = ACTIONS(1936), - [anon_sym_u_DQUOTE] = ACTIONS(1936), - [anon_sym_U_DQUOTE] = ACTIONS(1936), - [anon_sym_u8_DQUOTE] = ACTIONS(1936), - [anon_sym_DQUOTE] = ACTIONS(1936), - [sym_true] = ACTIONS(1934), - [sym_false] = ACTIONS(1934), - [sym_null] = ACTIONS(1934), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1936), - [anon_sym_ATimport] = ACTIONS(1936), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1934), - [anon_sym_ATcompatibility_alias] = ACTIONS(1936), - [anon_sym_ATprotocol] = ACTIONS(1936), - [anon_sym_ATclass] = ACTIONS(1936), - [anon_sym_ATinterface] = ACTIONS(1936), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1934), - [sym_method_attribute_specifier] = ACTIONS(1934), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1934), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1934), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1934), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1934), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1934), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1934), - [anon_sym_NS_AVAILABLE] = ACTIONS(1934), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1934), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1934), - [anon_sym_API_AVAILABLE] = ACTIONS(1934), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1934), - [anon_sym_API_DEPRECATED] = ACTIONS(1934), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1934), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1934), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1934), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1934), - [anon_sym___deprecated_msg] = ACTIONS(1934), - [anon_sym___deprecated_enum_msg] = ACTIONS(1934), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1934), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1934), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1934), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1934), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1934), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1934), - [anon_sym_ATimplementation] = ACTIONS(1936), - [anon_sym_typeof] = ACTIONS(1934), - [anon_sym___typeof] = ACTIONS(1934), - [anon_sym___typeof__] = ACTIONS(1934), - [sym_self] = ACTIONS(1934), - [sym_super] = ACTIONS(1934), - [sym_nil] = ACTIONS(1934), - [sym_id] = ACTIONS(1934), - [sym_instancetype] = ACTIONS(1934), - [sym_Class] = ACTIONS(1934), - [sym_SEL] = ACTIONS(1934), - [sym_IMP] = ACTIONS(1934), - [sym_BOOL] = ACTIONS(1934), - [sym_auto] = ACTIONS(1934), - [anon_sym_ATautoreleasepool] = ACTIONS(1936), - [anon_sym_ATsynchronized] = ACTIONS(1936), - [anon_sym_ATtry] = ACTIONS(1936), - [anon_sym_ATthrow] = ACTIONS(1936), - [anon_sym_ATselector] = ACTIONS(1936), - [anon_sym_ATencode] = ACTIONS(1936), - [anon_sym_AT] = ACTIONS(1934), - [sym_YES] = ACTIONS(1934), - [sym_NO] = ACTIONS(1934), - [anon_sym___builtin_available] = ACTIONS(1934), - [anon_sym_ATavailable] = ACTIONS(1936), - [anon_sym_va_arg] = ACTIONS(1934), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [900] = { - [ts_builtin_sym_end] = ACTIONS(2104), - [sym_identifier] = ACTIONS(2102), - [aux_sym_preproc_include_token1] = ACTIONS(2104), - [aux_sym_preproc_def_token1] = ACTIONS(2104), - [aux_sym_preproc_if_token1] = ACTIONS(2102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2102), - [anon_sym_LPAREN2] = ACTIONS(2104), - [anon_sym_BANG] = ACTIONS(2104), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2102), - [anon_sym_PLUS] = ACTIONS(2102), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_typedef] = ACTIONS(2102), - [anon_sym_extern] = ACTIONS(2102), - [anon_sym___attribute] = ACTIONS(2102), - [anon_sym___attribute__] = ACTIONS(2102), - [anon_sym___declspec] = ACTIONS(2102), - [anon_sym___cdecl] = ACTIONS(2102), - [anon_sym___clrcall] = ACTIONS(2102), - [anon_sym___stdcall] = ACTIONS(2102), - [anon_sym___fastcall] = ACTIONS(2102), - [anon_sym___thiscall] = ACTIONS(2102), - [anon_sym___vectorcall] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2104), - [anon_sym_static] = ACTIONS(2102), - [anon_sym_auto] = ACTIONS(2102), - [anon_sym_register] = ACTIONS(2102), - [anon_sym_inline] = ACTIONS(2102), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2102), - [anon_sym_const] = ACTIONS(2102), - [anon_sym_volatile] = ACTIONS(2102), - [anon_sym_restrict] = ACTIONS(2102), - [anon_sym__Atomic] = ACTIONS(2102), - [anon_sym_in] = ACTIONS(2102), - [anon_sym_out] = ACTIONS(2102), - [anon_sym_inout] = ACTIONS(2102), - [anon_sym_bycopy] = ACTIONS(2102), - [anon_sym_byref] = ACTIONS(2102), - [anon_sym_oneway] = ACTIONS(2102), - [anon_sym__Nullable] = ACTIONS(2102), - [anon_sym__Nonnull] = ACTIONS(2102), - [anon_sym__Nullable_result] = ACTIONS(2102), - [anon_sym__Null_unspecified] = ACTIONS(2102), - [anon_sym___autoreleasing] = ACTIONS(2102), - [anon_sym___nullable] = ACTIONS(2102), - [anon_sym___nonnull] = ACTIONS(2102), - [anon_sym___strong] = ACTIONS(2102), - [anon_sym___weak] = ACTIONS(2102), - [anon_sym___bridge] = ACTIONS(2102), - [anon_sym___bridge_transfer] = ACTIONS(2102), - [anon_sym___bridge_retained] = ACTIONS(2102), - [anon_sym___unsafe_unretained] = ACTIONS(2102), - [anon_sym___block] = ACTIONS(2102), - [anon_sym___kindof] = ACTIONS(2102), - [anon_sym___unused] = ACTIONS(2102), - [anon_sym__Complex] = ACTIONS(2102), - [anon_sym___complex] = ACTIONS(2102), - [anon_sym_IBOutlet] = ACTIONS(2102), - [anon_sym_IBInspectable] = ACTIONS(2102), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2102), - [anon_sym_signed] = ACTIONS(2102), - [anon_sym_unsigned] = ACTIONS(2102), - [anon_sym_long] = ACTIONS(2102), - [anon_sym_short] = ACTIONS(2102), - [sym_primitive_type] = ACTIONS(2102), - [anon_sym_enum] = ACTIONS(2102), - [anon_sym_NS_ENUM] = ACTIONS(2102), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2102), - [anon_sym_NS_OPTIONS] = ACTIONS(2102), - [anon_sym_struct] = ACTIONS(2102), - [anon_sym_union] = ACTIONS(2102), - [anon_sym_if] = ACTIONS(2102), - [anon_sym_switch] = ACTIONS(2102), - [anon_sym_case] = ACTIONS(2102), - [anon_sym_default] = ACTIONS(2102), - [anon_sym_while] = ACTIONS(2102), - [anon_sym_do] = ACTIONS(2102), - [anon_sym_for] = ACTIONS(2102), - [anon_sym_return] = ACTIONS(2102), - [anon_sym_break] = ACTIONS(2102), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2102), - [anon_sym_DASH_DASH] = ACTIONS(2104), - [anon_sym_PLUS_PLUS] = ACTIONS(2104), - [anon_sym_sizeof] = ACTIONS(2102), - [sym_number_literal] = ACTIONS(2104), - [anon_sym_L_SQUOTE] = ACTIONS(2104), - [anon_sym_u_SQUOTE] = ACTIONS(2104), - [anon_sym_U_SQUOTE] = ACTIONS(2104), - [anon_sym_u8_SQUOTE] = ACTIONS(2104), - [anon_sym_SQUOTE] = ACTIONS(2104), - [anon_sym_L_DQUOTE] = ACTIONS(2104), - [anon_sym_u_DQUOTE] = ACTIONS(2104), - [anon_sym_U_DQUOTE] = ACTIONS(2104), - [anon_sym_u8_DQUOTE] = ACTIONS(2104), - [anon_sym_DQUOTE] = ACTIONS(2104), - [sym_true] = ACTIONS(2102), - [sym_false] = ACTIONS(2102), - [sym_null] = ACTIONS(2102), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2104), - [anon_sym_ATimport] = ACTIONS(2104), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2102), - [anon_sym_ATcompatibility_alias] = ACTIONS(2104), - [anon_sym_ATprotocol] = ACTIONS(2104), - [anon_sym_ATclass] = ACTIONS(2104), - [anon_sym_ATinterface] = ACTIONS(2104), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2102), - [sym_method_attribute_specifier] = ACTIONS(2102), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2102), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2102), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2102), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2102), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2102), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2102), - [anon_sym_NS_AVAILABLE] = ACTIONS(2102), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2102), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2102), - [anon_sym_API_AVAILABLE] = ACTIONS(2102), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2102), - [anon_sym_API_DEPRECATED] = ACTIONS(2102), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2102), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2102), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2102), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2102), - [anon_sym___deprecated_msg] = ACTIONS(2102), - [anon_sym___deprecated_enum_msg] = ACTIONS(2102), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2102), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2102), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2102), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2102), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2102), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2102), - [anon_sym_ATimplementation] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2102), - [anon_sym___typeof] = ACTIONS(2102), - [anon_sym___typeof__] = ACTIONS(2102), - [sym_self] = ACTIONS(2102), - [sym_super] = ACTIONS(2102), - [sym_nil] = ACTIONS(2102), - [sym_id] = ACTIONS(2102), - [sym_instancetype] = ACTIONS(2102), - [sym_Class] = ACTIONS(2102), - [sym_SEL] = ACTIONS(2102), - [sym_IMP] = ACTIONS(2102), - [sym_BOOL] = ACTIONS(2102), - [sym_auto] = ACTIONS(2102), - [anon_sym_ATautoreleasepool] = ACTIONS(2104), - [anon_sym_ATsynchronized] = ACTIONS(2104), - [anon_sym_ATtry] = ACTIONS(2104), - [anon_sym_ATthrow] = ACTIONS(2104), - [anon_sym_ATselector] = ACTIONS(2104), - [anon_sym_ATencode] = ACTIONS(2104), - [anon_sym_AT] = ACTIONS(2102), - [sym_YES] = ACTIONS(2102), - [sym_NO] = ACTIONS(2102), - [anon_sym___builtin_available] = ACTIONS(2102), - [anon_sym_ATavailable] = ACTIONS(2104), - [anon_sym_va_arg] = ACTIONS(2102), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [901] = { - [ts_builtin_sym_end] = ACTIONS(2100), - [sym_identifier] = ACTIONS(2098), - [aux_sym_preproc_include_token1] = ACTIONS(2100), - [aux_sym_preproc_def_token1] = ACTIONS(2100), - [aux_sym_preproc_if_token1] = ACTIONS(2098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2098), - [anon_sym_LPAREN2] = ACTIONS(2100), - [anon_sym_BANG] = ACTIONS(2100), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_DASH] = ACTIONS(2098), - [anon_sym_PLUS] = ACTIONS(2098), - [anon_sym_STAR] = ACTIONS(2100), - [anon_sym_CARET] = ACTIONS(2100), - [anon_sym_AMP] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_typedef] = ACTIONS(2098), - [anon_sym_extern] = ACTIONS(2098), - [anon_sym___attribute] = ACTIONS(2098), - [anon_sym___attribute__] = ACTIONS(2098), - [anon_sym___declspec] = ACTIONS(2098), - [anon_sym___cdecl] = ACTIONS(2098), - [anon_sym___clrcall] = ACTIONS(2098), - [anon_sym___stdcall] = ACTIONS(2098), - [anon_sym___fastcall] = ACTIONS(2098), - [anon_sym___thiscall] = ACTIONS(2098), - [anon_sym___vectorcall] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_LBRACK] = ACTIONS(2100), - [anon_sym_static] = ACTIONS(2098), - [anon_sym_auto] = ACTIONS(2098), - [anon_sym_register] = ACTIONS(2098), - [anon_sym_inline] = ACTIONS(2098), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2098), - [anon_sym_const] = ACTIONS(2098), - [anon_sym_volatile] = ACTIONS(2098), - [anon_sym_restrict] = ACTIONS(2098), - [anon_sym__Atomic] = ACTIONS(2098), - [anon_sym_in] = ACTIONS(2098), - [anon_sym_out] = ACTIONS(2098), - [anon_sym_inout] = ACTIONS(2098), - [anon_sym_bycopy] = ACTIONS(2098), - [anon_sym_byref] = ACTIONS(2098), - [anon_sym_oneway] = ACTIONS(2098), - [anon_sym__Nullable] = ACTIONS(2098), - [anon_sym__Nonnull] = ACTIONS(2098), - [anon_sym__Nullable_result] = ACTIONS(2098), - [anon_sym__Null_unspecified] = ACTIONS(2098), - [anon_sym___autoreleasing] = ACTIONS(2098), - [anon_sym___nullable] = ACTIONS(2098), - [anon_sym___nonnull] = ACTIONS(2098), - [anon_sym___strong] = ACTIONS(2098), - [anon_sym___weak] = ACTIONS(2098), - [anon_sym___bridge] = ACTIONS(2098), - [anon_sym___bridge_transfer] = ACTIONS(2098), - [anon_sym___bridge_retained] = ACTIONS(2098), - [anon_sym___unsafe_unretained] = ACTIONS(2098), - [anon_sym___block] = ACTIONS(2098), - [anon_sym___kindof] = ACTIONS(2098), - [anon_sym___unused] = ACTIONS(2098), - [anon_sym__Complex] = ACTIONS(2098), - [anon_sym___complex] = ACTIONS(2098), - [anon_sym_IBOutlet] = ACTIONS(2098), - [anon_sym_IBInspectable] = ACTIONS(2098), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2098), - [anon_sym_signed] = ACTIONS(2098), - [anon_sym_unsigned] = ACTIONS(2098), - [anon_sym_long] = ACTIONS(2098), - [anon_sym_short] = ACTIONS(2098), - [sym_primitive_type] = ACTIONS(2098), - [anon_sym_enum] = ACTIONS(2098), - [anon_sym_NS_ENUM] = ACTIONS(2098), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2098), - [anon_sym_NS_OPTIONS] = ACTIONS(2098), - [anon_sym_struct] = ACTIONS(2098), - [anon_sym_union] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2098), - [anon_sym_switch] = ACTIONS(2098), - [anon_sym_case] = ACTIONS(2098), - [anon_sym_default] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2098), - [anon_sym_do] = ACTIONS(2098), - [anon_sym_for] = ACTIONS(2098), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2098), - [anon_sym_continue] = ACTIONS(2098), - [anon_sym_goto] = ACTIONS(2098), - [anon_sym_DASH_DASH] = ACTIONS(2100), - [anon_sym_PLUS_PLUS] = ACTIONS(2100), - [anon_sym_sizeof] = ACTIONS(2098), - [sym_number_literal] = ACTIONS(2100), - [anon_sym_L_SQUOTE] = ACTIONS(2100), - [anon_sym_u_SQUOTE] = ACTIONS(2100), - [anon_sym_U_SQUOTE] = ACTIONS(2100), - [anon_sym_u8_SQUOTE] = ACTIONS(2100), - [anon_sym_SQUOTE] = ACTIONS(2100), - [anon_sym_L_DQUOTE] = ACTIONS(2100), - [anon_sym_u_DQUOTE] = ACTIONS(2100), - [anon_sym_U_DQUOTE] = ACTIONS(2100), - [anon_sym_u8_DQUOTE] = ACTIONS(2100), - [anon_sym_DQUOTE] = ACTIONS(2100), - [sym_true] = ACTIONS(2098), - [sym_false] = ACTIONS(2098), - [sym_null] = ACTIONS(2098), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2100), - [anon_sym_ATimport] = ACTIONS(2100), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2098), - [anon_sym_ATcompatibility_alias] = ACTIONS(2100), - [anon_sym_ATprotocol] = ACTIONS(2100), - [anon_sym_ATclass] = ACTIONS(2100), - [anon_sym_ATinterface] = ACTIONS(2100), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2098), - [sym_method_attribute_specifier] = ACTIONS(2098), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2098), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2098), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2098), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2098), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2098), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2098), - [anon_sym_NS_AVAILABLE] = ACTIONS(2098), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2098), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2098), - [anon_sym_API_AVAILABLE] = ACTIONS(2098), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2098), - [anon_sym_API_DEPRECATED] = ACTIONS(2098), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2098), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2098), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2098), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2098), - [anon_sym___deprecated_msg] = ACTIONS(2098), - [anon_sym___deprecated_enum_msg] = ACTIONS(2098), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2098), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2098), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2098), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2098), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2098), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2098), - [anon_sym_ATimplementation] = ACTIONS(2100), - [anon_sym_typeof] = ACTIONS(2098), - [anon_sym___typeof] = ACTIONS(2098), - [anon_sym___typeof__] = ACTIONS(2098), - [sym_self] = ACTIONS(2098), - [sym_super] = ACTIONS(2098), - [sym_nil] = ACTIONS(2098), - [sym_id] = ACTIONS(2098), - [sym_instancetype] = ACTIONS(2098), - [sym_Class] = ACTIONS(2098), - [sym_SEL] = ACTIONS(2098), - [sym_IMP] = ACTIONS(2098), - [sym_BOOL] = ACTIONS(2098), - [sym_auto] = ACTIONS(2098), - [anon_sym_ATautoreleasepool] = ACTIONS(2100), - [anon_sym_ATsynchronized] = ACTIONS(2100), - [anon_sym_ATtry] = ACTIONS(2100), - [anon_sym_ATthrow] = ACTIONS(2100), - [anon_sym_ATselector] = ACTIONS(2100), - [anon_sym_ATencode] = ACTIONS(2100), - [anon_sym_AT] = ACTIONS(2098), - [sym_YES] = ACTIONS(2098), - [sym_NO] = ACTIONS(2098), - [anon_sym___builtin_available] = ACTIONS(2098), - [anon_sym_ATavailable] = ACTIONS(2100), - [anon_sym_va_arg] = ACTIONS(2098), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [902] = { - [ts_builtin_sym_end] = ACTIONS(2096), - [sym_identifier] = ACTIONS(2094), - [aux_sym_preproc_include_token1] = ACTIONS(2096), - [aux_sym_preproc_def_token1] = ACTIONS(2096), - [aux_sym_preproc_if_token1] = ACTIONS(2094), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2094), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2094), - [anon_sym_LPAREN2] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_TILDE] = ACTIONS(2096), - [anon_sym_DASH] = ACTIONS(2094), - [anon_sym_PLUS] = ACTIONS(2094), - [anon_sym_STAR] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_typedef] = ACTIONS(2094), - [anon_sym_extern] = ACTIONS(2094), - [anon_sym___attribute] = ACTIONS(2094), - [anon_sym___attribute__] = ACTIONS(2094), - [anon_sym___declspec] = ACTIONS(2094), - [anon_sym___cdecl] = ACTIONS(2094), - [anon_sym___clrcall] = ACTIONS(2094), - [anon_sym___stdcall] = ACTIONS(2094), - [anon_sym___fastcall] = ACTIONS(2094), - [anon_sym___thiscall] = ACTIONS(2094), - [anon_sym___vectorcall] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_RBRACE] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_static] = ACTIONS(2094), - [anon_sym_auto] = ACTIONS(2094), - [anon_sym_register] = ACTIONS(2094), - [anon_sym_inline] = ACTIONS(2094), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2094), - [anon_sym_const] = ACTIONS(2094), - [anon_sym_volatile] = ACTIONS(2094), - [anon_sym_restrict] = ACTIONS(2094), - [anon_sym__Atomic] = ACTIONS(2094), - [anon_sym_in] = ACTIONS(2094), - [anon_sym_out] = ACTIONS(2094), - [anon_sym_inout] = ACTIONS(2094), - [anon_sym_bycopy] = ACTIONS(2094), - [anon_sym_byref] = ACTIONS(2094), - [anon_sym_oneway] = ACTIONS(2094), - [anon_sym__Nullable] = ACTIONS(2094), - [anon_sym__Nonnull] = ACTIONS(2094), - [anon_sym__Nullable_result] = ACTIONS(2094), - [anon_sym__Null_unspecified] = ACTIONS(2094), - [anon_sym___autoreleasing] = ACTIONS(2094), - [anon_sym___nullable] = ACTIONS(2094), - [anon_sym___nonnull] = ACTIONS(2094), - [anon_sym___strong] = ACTIONS(2094), - [anon_sym___weak] = ACTIONS(2094), - [anon_sym___bridge] = ACTIONS(2094), - [anon_sym___bridge_transfer] = ACTIONS(2094), - [anon_sym___bridge_retained] = ACTIONS(2094), - [anon_sym___unsafe_unretained] = ACTIONS(2094), - [anon_sym___block] = ACTIONS(2094), - [anon_sym___kindof] = ACTIONS(2094), - [anon_sym___unused] = ACTIONS(2094), - [anon_sym__Complex] = ACTIONS(2094), - [anon_sym___complex] = ACTIONS(2094), - [anon_sym_IBOutlet] = ACTIONS(2094), - [anon_sym_IBInspectable] = ACTIONS(2094), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2094), - [anon_sym_signed] = ACTIONS(2094), - [anon_sym_unsigned] = ACTIONS(2094), - [anon_sym_long] = ACTIONS(2094), - [anon_sym_short] = ACTIONS(2094), - [sym_primitive_type] = ACTIONS(2094), - [anon_sym_enum] = ACTIONS(2094), - [anon_sym_NS_ENUM] = ACTIONS(2094), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2094), - [anon_sym_NS_OPTIONS] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(2094), - [anon_sym_union] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2094), - [anon_sym_switch] = ACTIONS(2094), - [anon_sym_case] = ACTIONS(2094), - [anon_sym_default] = ACTIONS(2094), - [anon_sym_while] = ACTIONS(2094), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2094), - [anon_sym_return] = ACTIONS(2094), - [anon_sym_break] = ACTIONS(2094), - [anon_sym_continue] = ACTIONS(2094), - [anon_sym_goto] = ACTIONS(2094), - [anon_sym_DASH_DASH] = ACTIONS(2096), - [anon_sym_PLUS_PLUS] = ACTIONS(2096), - [anon_sym_sizeof] = ACTIONS(2094), - [sym_number_literal] = ACTIONS(2096), - [anon_sym_L_SQUOTE] = ACTIONS(2096), - [anon_sym_u_SQUOTE] = ACTIONS(2096), - [anon_sym_U_SQUOTE] = ACTIONS(2096), - [anon_sym_u8_SQUOTE] = ACTIONS(2096), - [anon_sym_SQUOTE] = ACTIONS(2096), - [anon_sym_L_DQUOTE] = ACTIONS(2096), - [anon_sym_u_DQUOTE] = ACTIONS(2096), - [anon_sym_U_DQUOTE] = ACTIONS(2096), - [anon_sym_u8_DQUOTE] = ACTIONS(2096), - [anon_sym_DQUOTE] = ACTIONS(2096), - [sym_true] = ACTIONS(2094), - [sym_false] = ACTIONS(2094), - [sym_null] = ACTIONS(2094), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2096), - [anon_sym_ATimport] = ACTIONS(2096), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2094), - [anon_sym_ATcompatibility_alias] = ACTIONS(2096), - [anon_sym_ATprotocol] = ACTIONS(2096), - [anon_sym_ATclass] = ACTIONS(2096), - [anon_sym_ATinterface] = ACTIONS(2096), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2094), - [sym_method_attribute_specifier] = ACTIONS(2094), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2094), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2094), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2094), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2094), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2094), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2094), - [anon_sym_NS_AVAILABLE] = ACTIONS(2094), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2094), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2094), - [anon_sym_API_AVAILABLE] = ACTIONS(2094), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2094), - [anon_sym_API_DEPRECATED] = ACTIONS(2094), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2094), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2094), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2094), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2094), - [anon_sym___deprecated_msg] = ACTIONS(2094), - [anon_sym___deprecated_enum_msg] = ACTIONS(2094), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2094), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2094), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2094), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2094), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2094), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2094), - [anon_sym_ATimplementation] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(2094), - [anon_sym___typeof] = ACTIONS(2094), - [anon_sym___typeof__] = ACTIONS(2094), - [sym_self] = ACTIONS(2094), - [sym_super] = ACTIONS(2094), - [sym_nil] = ACTIONS(2094), - [sym_id] = ACTIONS(2094), - [sym_instancetype] = ACTIONS(2094), - [sym_Class] = ACTIONS(2094), - [sym_SEL] = ACTIONS(2094), - [sym_IMP] = ACTIONS(2094), - [sym_BOOL] = ACTIONS(2094), - [sym_auto] = ACTIONS(2094), - [anon_sym_ATautoreleasepool] = ACTIONS(2096), - [anon_sym_ATsynchronized] = ACTIONS(2096), - [anon_sym_ATtry] = ACTIONS(2096), - [anon_sym_ATthrow] = ACTIONS(2096), - [anon_sym_ATselector] = ACTIONS(2096), - [anon_sym_ATencode] = ACTIONS(2096), - [anon_sym_AT] = ACTIONS(2094), - [sym_YES] = ACTIONS(2094), - [sym_NO] = ACTIONS(2094), - [anon_sym___builtin_available] = ACTIONS(2094), - [anon_sym_ATavailable] = ACTIONS(2096), - [anon_sym_va_arg] = ACTIONS(2094), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [903] = { - [ts_builtin_sym_end] = ACTIONS(2092), - [sym_identifier] = ACTIONS(2090), - [aux_sym_preproc_include_token1] = ACTIONS(2092), - [aux_sym_preproc_def_token1] = ACTIONS(2092), - [aux_sym_preproc_if_token1] = ACTIONS(2090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2090), - [anon_sym_LPAREN2] = ACTIONS(2092), - [anon_sym_BANG] = ACTIONS(2092), - [anon_sym_TILDE] = ACTIONS(2092), - [anon_sym_DASH] = ACTIONS(2090), - [anon_sym_PLUS] = ACTIONS(2090), - [anon_sym_STAR] = ACTIONS(2092), - [anon_sym_CARET] = ACTIONS(2092), - [anon_sym_AMP] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_typedef] = ACTIONS(2090), - [anon_sym_extern] = ACTIONS(2090), - [anon_sym___attribute] = ACTIONS(2090), - [anon_sym___attribute__] = ACTIONS(2090), - [anon_sym___declspec] = ACTIONS(2090), - [anon_sym___cdecl] = ACTIONS(2090), - [anon_sym___clrcall] = ACTIONS(2090), - [anon_sym___stdcall] = ACTIONS(2090), - [anon_sym___fastcall] = ACTIONS(2090), - [anon_sym___thiscall] = ACTIONS(2090), - [anon_sym___vectorcall] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2092), - [anon_sym_static] = ACTIONS(2090), - [anon_sym_auto] = ACTIONS(2090), - [anon_sym_register] = ACTIONS(2090), - [anon_sym_inline] = ACTIONS(2090), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2090), - [anon_sym_volatile] = ACTIONS(2090), - [anon_sym_restrict] = ACTIONS(2090), - [anon_sym__Atomic] = ACTIONS(2090), - [anon_sym_in] = ACTIONS(2090), - [anon_sym_out] = ACTIONS(2090), - [anon_sym_inout] = ACTIONS(2090), - [anon_sym_bycopy] = ACTIONS(2090), - [anon_sym_byref] = ACTIONS(2090), - [anon_sym_oneway] = ACTIONS(2090), - [anon_sym__Nullable] = ACTIONS(2090), - [anon_sym__Nonnull] = ACTIONS(2090), - [anon_sym__Nullable_result] = ACTIONS(2090), - [anon_sym__Null_unspecified] = ACTIONS(2090), - [anon_sym___autoreleasing] = ACTIONS(2090), - [anon_sym___nullable] = ACTIONS(2090), - [anon_sym___nonnull] = ACTIONS(2090), - [anon_sym___strong] = ACTIONS(2090), - [anon_sym___weak] = ACTIONS(2090), - [anon_sym___bridge] = ACTIONS(2090), - [anon_sym___bridge_transfer] = ACTIONS(2090), - [anon_sym___bridge_retained] = ACTIONS(2090), - [anon_sym___unsafe_unretained] = ACTIONS(2090), - [anon_sym___block] = ACTIONS(2090), - [anon_sym___kindof] = ACTIONS(2090), - [anon_sym___unused] = ACTIONS(2090), - [anon_sym__Complex] = ACTIONS(2090), - [anon_sym___complex] = ACTIONS(2090), - [anon_sym_IBOutlet] = ACTIONS(2090), - [anon_sym_IBInspectable] = ACTIONS(2090), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2090), - [anon_sym_signed] = ACTIONS(2090), - [anon_sym_unsigned] = ACTIONS(2090), - [anon_sym_long] = ACTIONS(2090), - [anon_sym_short] = ACTIONS(2090), - [sym_primitive_type] = ACTIONS(2090), - [anon_sym_enum] = ACTIONS(2090), - [anon_sym_NS_ENUM] = ACTIONS(2090), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2090), - [anon_sym_NS_OPTIONS] = ACTIONS(2090), - [anon_sym_struct] = ACTIONS(2090), - [anon_sym_union] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2090), - [anon_sym_switch] = ACTIONS(2090), - [anon_sym_case] = ACTIONS(2090), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2090), - [anon_sym_do] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(2090), - [anon_sym_return] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_goto] = ACTIONS(2090), - [anon_sym_DASH_DASH] = ACTIONS(2092), - [anon_sym_PLUS_PLUS] = ACTIONS(2092), - [anon_sym_sizeof] = ACTIONS(2090), - [sym_number_literal] = ACTIONS(2092), - [anon_sym_L_SQUOTE] = ACTIONS(2092), - [anon_sym_u_SQUOTE] = ACTIONS(2092), - [anon_sym_U_SQUOTE] = ACTIONS(2092), - [anon_sym_u8_SQUOTE] = ACTIONS(2092), - [anon_sym_SQUOTE] = ACTIONS(2092), - [anon_sym_L_DQUOTE] = ACTIONS(2092), - [anon_sym_u_DQUOTE] = ACTIONS(2092), - [anon_sym_U_DQUOTE] = ACTIONS(2092), - [anon_sym_u8_DQUOTE] = ACTIONS(2092), - [anon_sym_DQUOTE] = ACTIONS(2092), - [sym_true] = ACTIONS(2090), - [sym_false] = ACTIONS(2090), - [sym_null] = ACTIONS(2090), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2092), - [anon_sym_ATimport] = ACTIONS(2092), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2090), - [anon_sym_ATcompatibility_alias] = ACTIONS(2092), - [anon_sym_ATprotocol] = ACTIONS(2092), - [anon_sym_ATclass] = ACTIONS(2092), - [anon_sym_ATinterface] = ACTIONS(2092), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2090), - [sym_method_attribute_specifier] = ACTIONS(2090), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2090), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2090), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2090), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2090), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2090), - [anon_sym_NS_AVAILABLE] = ACTIONS(2090), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2090), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_API_AVAILABLE] = ACTIONS(2090), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_API_DEPRECATED] = ACTIONS(2090), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2090), - [anon_sym___deprecated_msg] = ACTIONS(2090), - [anon_sym___deprecated_enum_msg] = ACTIONS(2090), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2090), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2090), - [anon_sym_ATimplementation] = ACTIONS(2092), - [anon_sym_typeof] = ACTIONS(2090), - [anon_sym___typeof] = ACTIONS(2090), - [anon_sym___typeof__] = ACTIONS(2090), - [sym_self] = ACTIONS(2090), - [sym_super] = ACTIONS(2090), - [sym_nil] = ACTIONS(2090), - [sym_id] = ACTIONS(2090), - [sym_instancetype] = ACTIONS(2090), - [sym_Class] = ACTIONS(2090), - [sym_SEL] = ACTIONS(2090), - [sym_IMP] = ACTIONS(2090), - [sym_BOOL] = ACTIONS(2090), - [sym_auto] = ACTIONS(2090), - [anon_sym_ATautoreleasepool] = ACTIONS(2092), - [anon_sym_ATsynchronized] = ACTIONS(2092), - [anon_sym_ATtry] = ACTIONS(2092), - [anon_sym_ATthrow] = ACTIONS(2092), - [anon_sym_ATselector] = ACTIONS(2092), - [anon_sym_ATencode] = ACTIONS(2092), - [anon_sym_AT] = ACTIONS(2090), - [sym_YES] = ACTIONS(2090), - [sym_NO] = ACTIONS(2090), - [anon_sym___builtin_available] = ACTIONS(2090), - [anon_sym_ATavailable] = ACTIONS(2092), - [anon_sym_va_arg] = ACTIONS(2090), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [904] = { - [ts_builtin_sym_end] = ACTIONS(2088), - [sym_identifier] = ACTIONS(2086), - [aux_sym_preproc_include_token1] = ACTIONS(2088), - [aux_sym_preproc_def_token1] = ACTIONS(2088), - [aux_sym_preproc_if_token1] = ACTIONS(2086), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2086), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2086), - [anon_sym_LPAREN2] = ACTIONS(2088), - [anon_sym_BANG] = ACTIONS(2088), - [anon_sym_TILDE] = ACTIONS(2088), - [anon_sym_DASH] = ACTIONS(2086), - [anon_sym_PLUS] = ACTIONS(2086), - [anon_sym_STAR] = ACTIONS(2088), - [anon_sym_CARET] = ACTIONS(2088), - [anon_sym_AMP] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_typedef] = ACTIONS(2086), - [anon_sym_extern] = ACTIONS(2086), - [anon_sym___attribute] = ACTIONS(2086), - [anon_sym___attribute__] = ACTIONS(2086), - [anon_sym___declspec] = ACTIONS(2086), - [anon_sym___cdecl] = ACTIONS(2086), - [anon_sym___clrcall] = ACTIONS(2086), - [anon_sym___stdcall] = ACTIONS(2086), - [anon_sym___fastcall] = ACTIONS(2086), - [anon_sym___thiscall] = ACTIONS(2086), - [anon_sym___vectorcall] = ACTIONS(2086), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(2088), - [anon_sym_static] = ACTIONS(2086), - [anon_sym_auto] = ACTIONS(2086), - [anon_sym_register] = ACTIONS(2086), - [anon_sym_inline] = ACTIONS(2086), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2086), - [anon_sym_const] = ACTIONS(2086), - [anon_sym_volatile] = ACTIONS(2086), - [anon_sym_restrict] = ACTIONS(2086), - [anon_sym__Atomic] = ACTIONS(2086), - [anon_sym_in] = ACTIONS(2086), - [anon_sym_out] = ACTIONS(2086), - [anon_sym_inout] = ACTIONS(2086), - [anon_sym_bycopy] = ACTIONS(2086), - [anon_sym_byref] = ACTIONS(2086), - [anon_sym_oneway] = ACTIONS(2086), - [anon_sym__Nullable] = ACTIONS(2086), - [anon_sym__Nonnull] = ACTIONS(2086), - [anon_sym__Nullable_result] = ACTIONS(2086), - [anon_sym__Null_unspecified] = ACTIONS(2086), - [anon_sym___autoreleasing] = ACTIONS(2086), - [anon_sym___nullable] = ACTIONS(2086), - [anon_sym___nonnull] = ACTIONS(2086), - [anon_sym___strong] = ACTIONS(2086), - [anon_sym___weak] = ACTIONS(2086), - [anon_sym___bridge] = ACTIONS(2086), - [anon_sym___bridge_transfer] = ACTIONS(2086), - [anon_sym___bridge_retained] = ACTIONS(2086), - [anon_sym___unsafe_unretained] = ACTIONS(2086), - [anon_sym___block] = ACTIONS(2086), - [anon_sym___kindof] = ACTIONS(2086), - [anon_sym___unused] = ACTIONS(2086), - [anon_sym__Complex] = ACTIONS(2086), - [anon_sym___complex] = ACTIONS(2086), - [anon_sym_IBOutlet] = ACTIONS(2086), - [anon_sym_IBInspectable] = ACTIONS(2086), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2086), - [anon_sym_signed] = ACTIONS(2086), - [anon_sym_unsigned] = ACTIONS(2086), - [anon_sym_long] = ACTIONS(2086), - [anon_sym_short] = ACTIONS(2086), - [sym_primitive_type] = ACTIONS(2086), - [anon_sym_enum] = ACTIONS(2086), - [anon_sym_NS_ENUM] = ACTIONS(2086), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2086), - [anon_sym_NS_OPTIONS] = ACTIONS(2086), - [anon_sym_struct] = ACTIONS(2086), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_switch] = ACTIONS(2086), - [anon_sym_case] = ACTIONS(2086), - [anon_sym_default] = ACTIONS(2086), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_do] = ACTIONS(2086), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2086), - [anon_sym_break] = ACTIONS(2086), - [anon_sym_continue] = ACTIONS(2086), - [anon_sym_goto] = ACTIONS(2086), - [anon_sym_DASH_DASH] = ACTIONS(2088), - [anon_sym_PLUS_PLUS] = ACTIONS(2088), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(2088), - [anon_sym_L_SQUOTE] = ACTIONS(2088), - [anon_sym_u_SQUOTE] = ACTIONS(2088), - [anon_sym_U_SQUOTE] = ACTIONS(2088), - [anon_sym_u8_SQUOTE] = ACTIONS(2088), - [anon_sym_SQUOTE] = ACTIONS(2088), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2086), - [sym_false] = ACTIONS(2086), - [sym_null] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2088), - [anon_sym_ATimport] = ACTIONS(2088), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2086), - [anon_sym_ATcompatibility_alias] = ACTIONS(2088), - [anon_sym_ATprotocol] = ACTIONS(2088), - [anon_sym_ATclass] = ACTIONS(2088), - [anon_sym_ATinterface] = ACTIONS(2088), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2086), - [sym_method_attribute_specifier] = ACTIONS(2086), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2086), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2086), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2086), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2086), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2086), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2086), - [anon_sym_NS_AVAILABLE] = ACTIONS(2086), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2086), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2086), - [anon_sym_API_AVAILABLE] = ACTIONS(2086), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2086), - [anon_sym_API_DEPRECATED] = ACTIONS(2086), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2086), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2086), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2086), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2086), - [anon_sym___deprecated_msg] = ACTIONS(2086), - [anon_sym___deprecated_enum_msg] = ACTIONS(2086), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2086), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2086), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2086), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2086), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2086), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2086), - [anon_sym_ATimplementation] = ACTIONS(2088), - [anon_sym_typeof] = ACTIONS(2086), - [anon_sym___typeof] = ACTIONS(2086), - [anon_sym___typeof__] = ACTIONS(2086), - [sym_self] = ACTIONS(2086), - [sym_super] = ACTIONS(2086), - [sym_nil] = ACTIONS(2086), - [sym_id] = ACTIONS(2086), - [sym_instancetype] = ACTIONS(2086), - [sym_Class] = ACTIONS(2086), - [sym_SEL] = ACTIONS(2086), - [sym_IMP] = ACTIONS(2086), - [sym_BOOL] = ACTIONS(2086), - [sym_auto] = ACTIONS(2086), - [anon_sym_ATautoreleasepool] = ACTIONS(2088), - [anon_sym_ATsynchronized] = ACTIONS(2088), - [anon_sym_ATtry] = ACTIONS(2088), - [anon_sym_ATthrow] = ACTIONS(2088), - [anon_sym_ATselector] = ACTIONS(2088), - [anon_sym_ATencode] = ACTIONS(2088), - [anon_sym_AT] = ACTIONS(2086), - [sym_YES] = ACTIONS(2086), - [sym_NO] = ACTIONS(2086), - [anon_sym___builtin_available] = ACTIONS(2086), - [anon_sym_ATavailable] = ACTIONS(2088), - [anon_sym_va_arg] = ACTIONS(2086), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [905] = { - [ts_builtin_sym_end] = ACTIONS(2084), - [sym_identifier] = ACTIONS(2082), - [aux_sym_preproc_include_token1] = ACTIONS(2084), - [aux_sym_preproc_def_token1] = ACTIONS(2084), - [aux_sym_preproc_if_token1] = ACTIONS(2082), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(2084), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_TILDE] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2084), - [anon_sym_CARET] = ACTIONS(2084), - [anon_sym_AMP] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_typedef] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym___attribute] = ACTIONS(2082), - [anon_sym___attribute__] = ACTIONS(2082), - [anon_sym___declspec] = ACTIONS(2082), - [anon_sym___cdecl] = ACTIONS(2082), - [anon_sym___clrcall] = ACTIONS(2082), - [anon_sym___stdcall] = ACTIONS(2082), - [anon_sym___fastcall] = ACTIONS(2082), - [anon_sym___thiscall] = ACTIONS(2082), - [anon_sym___vectorcall] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_RBRACE] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_static] = ACTIONS(2082), - [anon_sym_auto] = ACTIONS(2082), - [anon_sym_register] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [anon_sym_restrict] = ACTIONS(2082), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_in] = ACTIONS(2082), - [anon_sym_out] = ACTIONS(2082), - [anon_sym_inout] = ACTIONS(2082), - [anon_sym_bycopy] = ACTIONS(2082), - [anon_sym_byref] = ACTIONS(2082), - [anon_sym_oneway] = ACTIONS(2082), - [anon_sym__Nullable] = ACTIONS(2082), - [anon_sym__Nonnull] = ACTIONS(2082), - [anon_sym__Nullable_result] = ACTIONS(2082), - [anon_sym__Null_unspecified] = ACTIONS(2082), - [anon_sym___autoreleasing] = ACTIONS(2082), - [anon_sym___nullable] = ACTIONS(2082), - [anon_sym___nonnull] = ACTIONS(2082), - [anon_sym___strong] = ACTIONS(2082), - [anon_sym___weak] = ACTIONS(2082), - [anon_sym___bridge] = ACTIONS(2082), - [anon_sym___bridge_transfer] = ACTIONS(2082), - [anon_sym___bridge_retained] = ACTIONS(2082), - [anon_sym___unsafe_unretained] = ACTIONS(2082), - [anon_sym___block] = ACTIONS(2082), - [anon_sym___kindof] = ACTIONS(2082), - [anon_sym___unused] = ACTIONS(2082), - [anon_sym__Complex] = ACTIONS(2082), - [anon_sym___complex] = ACTIONS(2082), - [anon_sym_IBOutlet] = ACTIONS(2082), - [anon_sym_IBInspectable] = ACTIONS(2082), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(2082), - [anon_sym_long] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_NS_ENUM] = ACTIONS(2082), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2082), - [anon_sym_NS_OPTIONS] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2082), - [anon_sym_union] = ACTIONS(2082), - [anon_sym_if] = ACTIONS(2082), - [anon_sym_switch] = ACTIONS(2082), - [anon_sym_case] = ACTIONS(2082), - [anon_sym_default] = ACTIONS(2082), - [anon_sym_while] = ACTIONS(2082), - [anon_sym_do] = ACTIONS(2082), - [anon_sym_for] = ACTIONS(2082), - [anon_sym_return] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_goto] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2082), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2084), - [anon_sym_u_SQUOTE] = ACTIONS(2084), - [anon_sym_U_SQUOTE] = ACTIONS(2084), - [anon_sym_u8_SQUOTE] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2084), - [anon_sym_L_DQUOTE] = ACTIONS(2084), - [anon_sym_u_DQUOTE] = ACTIONS(2084), - [anon_sym_U_DQUOTE] = ACTIONS(2084), - [anon_sym_u8_DQUOTE] = ACTIONS(2084), - [anon_sym_DQUOTE] = ACTIONS(2084), - [sym_true] = ACTIONS(2082), - [sym_false] = ACTIONS(2082), - [sym_null] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2084), - [anon_sym_ATimport] = ACTIONS(2084), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2082), - [anon_sym_ATcompatibility_alias] = ACTIONS(2084), - [anon_sym_ATprotocol] = ACTIONS(2084), - [anon_sym_ATclass] = ACTIONS(2084), - [anon_sym_ATinterface] = ACTIONS(2084), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2082), - [sym_method_attribute_specifier] = ACTIONS(2082), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2082), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2082), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2082), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2082), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2082), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2082), - [anon_sym_NS_AVAILABLE] = ACTIONS(2082), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2082), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2082), - [anon_sym_API_AVAILABLE] = ACTIONS(2082), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2082), - [anon_sym_API_DEPRECATED] = ACTIONS(2082), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2082), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2082), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2082), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2082), - [anon_sym___deprecated_msg] = ACTIONS(2082), - [anon_sym___deprecated_enum_msg] = ACTIONS(2082), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2082), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2082), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2082), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2082), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2082), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2082), - [anon_sym_ATimplementation] = ACTIONS(2084), - [anon_sym_typeof] = ACTIONS(2082), - [anon_sym___typeof] = ACTIONS(2082), - [anon_sym___typeof__] = ACTIONS(2082), - [sym_self] = ACTIONS(2082), - [sym_super] = ACTIONS(2082), - [sym_nil] = ACTIONS(2082), - [sym_id] = ACTIONS(2082), - [sym_instancetype] = ACTIONS(2082), - [sym_Class] = ACTIONS(2082), - [sym_SEL] = ACTIONS(2082), - [sym_IMP] = ACTIONS(2082), - [sym_BOOL] = ACTIONS(2082), - [sym_auto] = ACTIONS(2082), - [anon_sym_ATautoreleasepool] = ACTIONS(2084), - [anon_sym_ATsynchronized] = ACTIONS(2084), - [anon_sym_ATtry] = ACTIONS(2084), - [anon_sym_ATthrow] = ACTIONS(2084), - [anon_sym_ATselector] = ACTIONS(2084), - [anon_sym_ATencode] = ACTIONS(2084), - [anon_sym_AT] = ACTIONS(2082), - [sym_YES] = ACTIONS(2082), - [sym_NO] = ACTIONS(2082), - [anon_sym___builtin_available] = ACTIONS(2082), - [anon_sym_ATavailable] = ACTIONS(2084), - [anon_sym_va_arg] = ACTIONS(2082), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [906] = { - [ts_builtin_sym_end] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2058), - [aux_sym_preproc_include_token1] = ACTIONS(2060), - [aux_sym_preproc_def_token1] = ACTIONS(2060), - [aux_sym_preproc_if_token1] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2058), - [anon_sym_LPAREN2] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_typedef] = ACTIONS(2058), - [anon_sym_extern] = ACTIONS(2058), - [anon_sym___attribute] = ACTIONS(2058), - [anon_sym___attribute__] = ACTIONS(2058), - [anon_sym___declspec] = ACTIONS(2058), - [anon_sym___cdecl] = ACTIONS(2058), - [anon_sym___clrcall] = ACTIONS(2058), - [anon_sym___stdcall] = ACTIONS(2058), - [anon_sym___fastcall] = ACTIONS(2058), - [anon_sym___thiscall] = ACTIONS(2058), - [anon_sym___vectorcall] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_RBRACE] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_auto] = ACTIONS(2058), - [anon_sym_register] = ACTIONS(2058), - [anon_sym_inline] = ACTIONS(2058), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2058), - [anon_sym_const] = ACTIONS(2058), - [anon_sym_volatile] = ACTIONS(2058), - [anon_sym_restrict] = ACTIONS(2058), - [anon_sym__Atomic] = ACTIONS(2058), - [anon_sym_in] = ACTIONS(2058), - [anon_sym_out] = ACTIONS(2058), - [anon_sym_inout] = ACTIONS(2058), - [anon_sym_bycopy] = ACTIONS(2058), - [anon_sym_byref] = ACTIONS(2058), - [anon_sym_oneway] = ACTIONS(2058), - [anon_sym__Nullable] = ACTIONS(2058), - [anon_sym__Nonnull] = ACTIONS(2058), - [anon_sym__Nullable_result] = ACTIONS(2058), - [anon_sym__Null_unspecified] = ACTIONS(2058), - [anon_sym___autoreleasing] = ACTIONS(2058), - [anon_sym___nullable] = ACTIONS(2058), - [anon_sym___nonnull] = ACTIONS(2058), - [anon_sym___strong] = ACTIONS(2058), - [anon_sym___weak] = ACTIONS(2058), - [anon_sym___bridge] = ACTIONS(2058), - [anon_sym___bridge_transfer] = ACTIONS(2058), - [anon_sym___bridge_retained] = ACTIONS(2058), - [anon_sym___unsafe_unretained] = ACTIONS(2058), - [anon_sym___block] = ACTIONS(2058), - [anon_sym___kindof] = ACTIONS(2058), - [anon_sym___unused] = ACTIONS(2058), - [anon_sym__Complex] = ACTIONS(2058), - [anon_sym___complex] = ACTIONS(2058), - [anon_sym_IBOutlet] = ACTIONS(2058), - [anon_sym_IBInspectable] = ACTIONS(2058), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2058), - [anon_sym_signed] = ACTIONS(2058), - [anon_sym_unsigned] = ACTIONS(2058), - [anon_sym_long] = ACTIONS(2058), - [anon_sym_short] = ACTIONS(2058), - [sym_primitive_type] = ACTIONS(2058), - [anon_sym_enum] = ACTIONS(2058), - [anon_sym_NS_ENUM] = ACTIONS(2058), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2058), - [anon_sym_NS_OPTIONS] = ACTIONS(2058), - [anon_sym_struct] = ACTIONS(2058), - [anon_sym_union] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_switch] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2058), - [anon_sym_default] = ACTIONS(2058), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2058), - [anon_sym_break] = ACTIONS(2058), - [anon_sym_continue] = ACTIONS(2058), - [anon_sym_goto] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2060), - [anon_sym_sizeof] = ACTIONS(2058), - [sym_number_literal] = ACTIONS(2060), - [anon_sym_L_SQUOTE] = ACTIONS(2060), - [anon_sym_u_SQUOTE] = ACTIONS(2060), - [anon_sym_U_SQUOTE] = ACTIONS(2060), - [anon_sym_u8_SQUOTE] = ACTIONS(2060), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_L_DQUOTE] = ACTIONS(2060), - [anon_sym_u_DQUOTE] = ACTIONS(2060), - [anon_sym_U_DQUOTE] = ACTIONS(2060), - [anon_sym_u8_DQUOTE] = ACTIONS(2060), - [anon_sym_DQUOTE] = ACTIONS(2060), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [sym_null] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2060), - [anon_sym_ATimport] = ACTIONS(2060), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2058), - [anon_sym_ATcompatibility_alias] = ACTIONS(2060), - [anon_sym_ATprotocol] = ACTIONS(2060), - [anon_sym_ATclass] = ACTIONS(2060), - [anon_sym_ATinterface] = ACTIONS(2060), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2058), - [sym_method_attribute_specifier] = ACTIONS(2058), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2058), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE] = ACTIONS(2058), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_API_AVAILABLE] = ACTIONS(2058), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_API_DEPRECATED] = ACTIONS(2058), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2058), - [anon_sym___deprecated_msg] = ACTIONS(2058), - [anon_sym___deprecated_enum_msg] = ACTIONS(2058), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2058), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2058), - [anon_sym_ATimplementation] = ACTIONS(2060), - [anon_sym_typeof] = ACTIONS(2058), - [anon_sym___typeof] = ACTIONS(2058), - [anon_sym___typeof__] = ACTIONS(2058), - [sym_self] = ACTIONS(2058), - [sym_super] = ACTIONS(2058), - [sym_nil] = ACTIONS(2058), - [sym_id] = ACTIONS(2058), - [sym_instancetype] = ACTIONS(2058), - [sym_Class] = ACTIONS(2058), - [sym_SEL] = ACTIONS(2058), - [sym_IMP] = ACTIONS(2058), - [sym_BOOL] = ACTIONS(2058), - [sym_auto] = ACTIONS(2058), - [anon_sym_ATautoreleasepool] = ACTIONS(2060), - [anon_sym_ATsynchronized] = ACTIONS(2060), - [anon_sym_ATtry] = ACTIONS(2060), - [anon_sym_ATthrow] = ACTIONS(2060), - [anon_sym_ATselector] = ACTIONS(2060), - [anon_sym_ATencode] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [sym_YES] = ACTIONS(2058), - [sym_NO] = ACTIONS(2058), - [anon_sym___builtin_available] = ACTIONS(2058), - [anon_sym_ATavailable] = ACTIONS(2060), - [anon_sym_va_arg] = ACTIONS(2058), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [907] = { - [ts_builtin_sym_end] = ACTIONS(2064), - [sym_identifier] = ACTIONS(2062), - [aux_sym_preproc_include_token1] = ACTIONS(2064), - [aux_sym_preproc_def_token1] = ACTIONS(2064), - [aux_sym_preproc_if_token1] = ACTIONS(2062), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2062), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(2064), - [anon_sym_BANG] = ACTIONS(2064), - [anon_sym_TILDE] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_CARET] = ACTIONS(2064), - [anon_sym_AMP] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_typedef] = ACTIONS(2062), - [anon_sym_extern] = ACTIONS(2062), - [anon_sym___attribute] = ACTIONS(2062), - [anon_sym___attribute__] = ACTIONS(2062), - [anon_sym___declspec] = ACTIONS(2062), - [anon_sym___cdecl] = ACTIONS(2062), - [anon_sym___clrcall] = ACTIONS(2062), - [anon_sym___stdcall] = ACTIONS(2062), - [anon_sym___fastcall] = ACTIONS(2062), - [anon_sym___thiscall] = ACTIONS(2062), - [anon_sym___vectorcall] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_LBRACK] = ACTIONS(2064), - [anon_sym_static] = ACTIONS(2062), - [anon_sym_auto] = ACTIONS(2062), - [anon_sym_register] = ACTIONS(2062), - [anon_sym_inline] = ACTIONS(2062), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2062), - [anon_sym_const] = ACTIONS(2062), - [anon_sym_volatile] = ACTIONS(2062), - [anon_sym_restrict] = ACTIONS(2062), - [anon_sym__Atomic] = ACTIONS(2062), - [anon_sym_in] = ACTIONS(2062), - [anon_sym_out] = ACTIONS(2062), - [anon_sym_inout] = ACTIONS(2062), - [anon_sym_bycopy] = ACTIONS(2062), - [anon_sym_byref] = ACTIONS(2062), - [anon_sym_oneway] = ACTIONS(2062), - [anon_sym__Nullable] = ACTIONS(2062), - [anon_sym__Nonnull] = ACTIONS(2062), - [anon_sym__Nullable_result] = ACTIONS(2062), - [anon_sym__Null_unspecified] = ACTIONS(2062), - [anon_sym___autoreleasing] = ACTIONS(2062), - [anon_sym___nullable] = ACTIONS(2062), - [anon_sym___nonnull] = ACTIONS(2062), - [anon_sym___strong] = ACTIONS(2062), - [anon_sym___weak] = ACTIONS(2062), - [anon_sym___bridge] = ACTIONS(2062), - [anon_sym___bridge_transfer] = ACTIONS(2062), - [anon_sym___bridge_retained] = ACTIONS(2062), - [anon_sym___unsafe_unretained] = ACTIONS(2062), - [anon_sym___block] = ACTIONS(2062), - [anon_sym___kindof] = ACTIONS(2062), - [anon_sym___unused] = ACTIONS(2062), - [anon_sym__Complex] = ACTIONS(2062), - [anon_sym___complex] = ACTIONS(2062), - [anon_sym_IBOutlet] = ACTIONS(2062), - [anon_sym_IBInspectable] = ACTIONS(2062), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2062), - [anon_sym_signed] = ACTIONS(2062), - [anon_sym_unsigned] = ACTIONS(2062), - [anon_sym_long] = ACTIONS(2062), - [anon_sym_short] = ACTIONS(2062), - [sym_primitive_type] = ACTIONS(2062), - [anon_sym_enum] = ACTIONS(2062), - [anon_sym_NS_ENUM] = ACTIONS(2062), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2062), - [anon_sym_NS_OPTIONS] = ACTIONS(2062), - [anon_sym_struct] = ACTIONS(2062), - [anon_sym_union] = ACTIONS(2062), - [anon_sym_if] = ACTIONS(2062), - [anon_sym_switch] = ACTIONS(2062), - [anon_sym_case] = ACTIONS(2062), - [anon_sym_default] = ACTIONS(2062), - [anon_sym_while] = ACTIONS(2062), - [anon_sym_do] = ACTIONS(2062), - [anon_sym_for] = ACTIONS(2062), - [anon_sym_return] = ACTIONS(2062), - [anon_sym_break] = ACTIONS(2062), - [anon_sym_continue] = ACTIONS(2062), - [anon_sym_goto] = ACTIONS(2062), - [anon_sym_DASH_DASH] = ACTIONS(2064), - [anon_sym_PLUS_PLUS] = ACTIONS(2064), - [anon_sym_sizeof] = ACTIONS(2062), - [sym_number_literal] = ACTIONS(2064), - [anon_sym_L_SQUOTE] = ACTIONS(2064), - [anon_sym_u_SQUOTE] = ACTIONS(2064), - [anon_sym_U_SQUOTE] = ACTIONS(2064), - [anon_sym_u8_SQUOTE] = ACTIONS(2064), - [anon_sym_SQUOTE] = ACTIONS(2064), - [anon_sym_L_DQUOTE] = ACTIONS(2064), - [anon_sym_u_DQUOTE] = ACTIONS(2064), - [anon_sym_U_DQUOTE] = ACTIONS(2064), - [anon_sym_u8_DQUOTE] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2064), - [sym_true] = ACTIONS(2062), - [sym_false] = ACTIONS(2062), - [sym_null] = ACTIONS(2062), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2064), - [anon_sym_ATimport] = ACTIONS(2064), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2062), - [anon_sym_ATcompatibility_alias] = ACTIONS(2064), - [anon_sym_ATprotocol] = ACTIONS(2064), - [anon_sym_ATclass] = ACTIONS(2064), - [anon_sym_ATinterface] = ACTIONS(2064), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2062), - [sym_method_attribute_specifier] = ACTIONS(2062), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2062), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2062), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2062), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2062), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2062), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2062), - [anon_sym_NS_AVAILABLE] = ACTIONS(2062), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2062), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2062), - [anon_sym_API_AVAILABLE] = ACTIONS(2062), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2062), - [anon_sym_API_DEPRECATED] = ACTIONS(2062), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2062), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2062), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2062), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2062), - [anon_sym___deprecated_msg] = ACTIONS(2062), - [anon_sym___deprecated_enum_msg] = ACTIONS(2062), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2062), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2062), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2062), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2062), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2062), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2062), - [anon_sym_ATimplementation] = ACTIONS(2064), - [anon_sym_typeof] = ACTIONS(2062), - [anon_sym___typeof] = ACTIONS(2062), - [anon_sym___typeof__] = ACTIONS(2062), - [sym_self] = ACTIONS(2062), - [sym_super] = ACTIONS(2062), - [sym_nil] = ACTIONS(2062), - [sym_id] = ACTIONS(2062), - [sym_instancetype] = ACTIONS(2062), - [sym_Class] = ACTIONS(2062), - [sym_SEL] = ACTIONS(2062), - [sym_IMP] = ACTIONS(2062), - [sym_BOOL] = ACTIONS(2062), - [sym_auto] = ACTIONS(2062), - [anon_sym_ATautoreleasepool] = ACTIONS(2064), - [anon_sym_ATsynchronized] = ACTIONS(2064), - [anon_sym_ATtry] = ACTIONS(2064), - [anon_sym_ATthrow] = ACTIONS(2064), - [anon_sym_ATselector] = ACTIONS(2064), - [anon_sym_ATencode] = ACTIONS(2064), - [anon_sym_AT] = ACTIONS(2062), - [sym_YES] = ACTIONS(2062), - [sym_NO] = ACTIONS(2062), - [anon_sym___builtin_available] = ACTIONS(2062), - [anon_sym_ATavailable] = ACTIONS(2064), - [anon_sym_va_arg] = ACTIONS(2062), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [908] = { - [ts_builtin_sym_end] = ACTIONS(1952), - [sym_identifier] = ACTIONS(1950), - [aux_sym_preproc_include_token1] = ACTIONS(1952), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), - [anon_sym_LPAREN2] = ACTIONS(1952), - [anon_sym_BANG] = ACTIONS(1952), - [anon_sym_TILDE] = ACTIONS(1952), - [anon_sym_DASH] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1950), - [anon_sym_STAR] = ACTIONS(1952), - [anon_sym_CARET] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1952), - [anon_sym_typedef] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(1950), - [anon_sym___attribute] = ACTIONS(1950), - [anon_sym___attribute__] = ACTIONS(1950), - [anon_sym___declspec] = ACTIONS(1950), - [anon_sym___cdecl] = ACTIONS(1950), - [anon_sym___clrcall] = ACTIONS(1950), - [anon_sym___stdcall] = ACTIONS(1950), - [anon_sym___fastcall] = ACTIONS(1950), - [anon_sym___thiscall] = ACTIONS(1950), - [anon_sym___vectorcall] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1952), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1952), - [anon_sym_static] = ACTIONS(1950), - [anon_sym_auto] = ACTIONS(1950), - [anon_sym_register] = ACTIONS(1950), - [anon_sym_inline] = ACTIONS(1950), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1950), - [anon_sym_const] = ACTIONS(1950), - [anon_sym_volatile] = ACTIONS(1950), - [anon_sym_restrict] = ACTIONS(1950), - [anon_sym__Atomic] = ACTIONS(1950), - [anon_sym_in] = ACTIONS(1950), - [anon_sym_out] = ACTIONS(1950), - [anon_sym_inout] = ACTIONS(1950), - [anon_sym_bycopy] = ACTIONS(1950), - [anon_sym_byref] = ACTIONS(1950), - [anon_sym_oneway] = ACTIONS(1950), - [anon_sym__Nullable] = ACTIONS(1950), - [anon_sym__Nonnull] = ACTIONS(1950), - [anon_sym__Nullable_result] = ACTIONS(1950), - [anon_sym__Null_unspecified] = ACTIONS(1950), - [anon_sym___autoreleasing] = ACTIONS(1950), - [anon_sym___nullable] = ACTIONS(1950), - [anon_sym___nonnull] = ACTIONS(1950), - [anon_sym___strong] = ACTIONS(1950), - [anon_sym___weak] = ACTIONS(1950), - [anon_sym___bridge] = ACTIONS(1950), - [anon_sym___bridge_transfer] = ACTIONS(1950), - [anon_sym___bridge_retained] = ACTIONS(1950), - [anon_sym___unsafe_unretained] = ACTIONS(1950), - [anon_sym___block] = ACTIONS(1950), - [anon_sym___kindof] = ACTIONS(1950), - [anon_sym___unused] = ACTIONS(1950), - [anon_sym__Complex] = ACTIONS(1950), - [anon_sym___complex] = ACTIONS(1950), - [anon_sym_IBOutlet] = ACTIONS(1950), - [anon_sym_IBInspectable] = ACTIONS(1950), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1950), - [anon_sym_signed] = ACTIONS(1950), - [anon_sym_unsigned] = ACTIONS(1950), - [anon_sym_long] = ACTIONS(1950), - [anon_sym_short] = ACTIONS(1950), - [sym_primitive_type] = ACTIONS(1950), - [anon_sym_enum] = ACTIONS(1950), - [anon_sym_NS_ENUM] = ACTIONS(1950), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1950), - [anon_sym_NS_OPTIONS] = ACTIONS(1950), - [anon_sym_struct] = ACTIONS(1950), - [anon_sym_union] = ACTIONS(1950), - [anon_sym_if] = ACTIONS(1950), - [anon_sym_switch] = ACTIONS(1950), - [anon_sym_case] = ACTIONS(1950), - [anon_sym_default] = ACTIONS(1950), - [anon_sym_while] = ACTIONS(1950), - [anon_sym_do] = ACTIONS(1950), - [anon_sym_for] = ACTIONS(1950), - [anon_sym_return] = ACTIONS(1950), - [anon_sym_break] = ACTIONS(1950), - [anon_sym_continue] = ACTIONS(1950), - [anon_sym_goto] = ACTIONS(1950), - [anon_sym_DASH_DASH] = ACTIONS(1952), - [anon_sym_PLUS_PLUS] = ACTIONS(1952), - [anon_sym_sizeof] = ACTIONS(1950), - [sym_number_literal] = ACTIONS(1952), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1952), - [anon_sym_u_DQUOTE] = ACTIONS(1952), - [anon_sym_U_DQUOTE] = ACTIONS(1952), - [anon_sym_u8_DQUOTE] = ACTIONS(1952), - [anon_sym_DQUOTE] = ACTIONS(1952), - [sym_true] = ACTIONS(1950), - [sym_false] = ACTIONS(1950), - [sym_null] = ACTIONS(1950), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1952), - [anon_sym_ATimport] = ACTIONS(1952), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1950), - [anon_sym_ATcompatibility_alias] = ACTIONS(1952), - [anon_sym_ATprotocol] = ACTIONS(1952), - [anon_sym_ATclass] = ACTIONS(1952), - [anon_sym_ATinterface] = ACTIONS(1952), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1950), - [sym_method_attribute_specifier] = ACTIONS(1950), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1950), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1950), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1950), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1950), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1950), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1950), - [anon_sym_NS_AVAILABLE] = ACTIONS(1950), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1950), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1950), - [anon_sym_API_AVAILABLE] = ACTIONS(1950), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1950), - [anon_sym_API_DEPRECATED] = ACTIONS(1950), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1950), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1950), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1950), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1950), - [anon_sym___deprecated_msg] = ACTIONS(1950), - [anon_sym___deprecated_enum_msg] = ACTIONS(1950), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1950), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1950), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1950), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1950), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1950), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1950), - [anon_sym_ATimplementation] = ACTIONS(1952), - [anon_sym_typeof] = ACTIONS(1950), - [anon_sym___typeof] = ACTIONS(1950), - [anon_sym___typeof__] = ACTIONS(1950), - [sym_self] = ACTIONS(1950), - [sym_super] = ACTIONS(1950), - [sym_nil] = ACTIONS(1950), - [sym_id] = ACTIONS(1950), - [sym_instancetype] = ACTIONS(1950), - [sym_Class] = ACTIONS(1950), - [sym_SEL] = ACTIONS(1950), - [sym_IMP] = ACTIONS(1950), - [sym_BOOL] = ACTIONS(1950), - [sym_auto] = ACTIONS(1950), - [anon_sym_ATautoreleasepool] = ACTIONS(1952), - [anon_sym_ATsynchronized] = ACTIONS(1952), - [anon_sym_ATtry] = ACTIONS(1952), - [anon_sym_ATthrow] = ACTIONS(1952), - [anon_sym_ATselector] = ACTIONS(1952), - [anon_sym_ATencode] = ACTIONS(1952), - [anon_sym_AT] = ACTIONS(1950), - [sym_YES] = ACTIONS(1950), - [sym_NO] = ACTIONS(1950), - [anon_sym___builtin_available] = ACTIONS(1950), - [anon_sym_ATavailable] = ACTIONS(1952), - [anon_sym_va_arg] = ACTIONS(1950), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [909] = { - [ts_builtin_sym_end] = ACTIONS(1868), - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_RBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [910] = { - [ts_builtin_sym_end] = ACTIONS(2108), - [sym_identifier] = ACTIONS(2106), - [aux_sym_preproc_include_token1] = ACTIONS(2108), - [aux_sym_preproc_def_token1] = ACTIONS(2108), - [aux_sym_preproc_if_token1] = ACTIONS(2106), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2106), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2106), - [anon_sym_LPAREN2] = ACTIONS(2108), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_TILDE] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2108), - [anon_sym_CARET] = ACTIONS(2108), - [anon_sym_AMP] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2108), - [anon_sym_typedef] = ACTIONS(2106), - [anon_sym_extern] = ACTIONS(2106), - [anon_sym___attribute] = ACTIONS(2106), - [anon_sym___attribute__] = ACTIONS(2106), - [anon_sym___declspec] = ACTIONS(2106), - [anon_sym___cdecl] = ACTIONS(2106), - [anon_sym___clrcall] = ACTIONS(2106), - [anon_sym___stdcall] = ACTIONS(2106), - [anon_sym___fastcall] = ACTIONS(2106), - [anon_sym___thiscall] = ACTIONS(2106), - [anon_sym___vectorcall] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_RBRACE] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_static] = ACTIONS(2106), - [anon_sym_auto] = ACTIONS(2106), - [anon_sym_register] = ACTIONS(2106), - [anon_sym_inline] = ACTIONS(2106), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2106), - [anon_sym_const] = ACTIONS(2106), - [anon_sym_volatile] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(2106), - [anon_sym__Atomic] = ACTIONS(2106), - [anon_sym_in] = ACTIONS(2106), - [anon_sym_out] = ACTIONS(2106), - [anon_sym_inout] = ACTIONS(2106), - [anon_sym_bycopy] = ACTIONS(2106), - [anon_sym_byref] = ACTIONS(2106), - [anon_sym_oneway] = ACTIONS(2106), - [anon_sym__Nullable] = ACTIONS(2106), - [anon_sym__Nonnull] = ACTIONS(2106), - [anon_sym__Nullable_result] = ACTIONS(2106), - [anon_sym__Null_unspecified] = ACTIONS(2106), - [anon_sym___autoreleasing] = ACTIONS(2106), - [anon_sym___nullable] = ACTIONS(2106), - [anon_sym___nonnull] = ACTIONS(2106), - [anon_sym___strong] = ACTIONS(2106), - [anon_sym___weak] = ACTIONS(2106), - [anon_sym___bridge] = ACTIONS(2106), - [anon_sym___bridge_transfer] = ACTIONS(2106), - [anon_sym___bridge_retained] = ACTIONS(2106), - [anon_sym___unsafe_unretained] = ACTIONS(2106), - [anon_sym___block] = ACTIONS(2106), - [anon_sym___kindof] = ACTIONS(2106), - [anon_sym___unused] = ACTIONS(2106), - [anon_sym__Complex] = ACTIONS(2106), - [anon_sym___complex] = ACTIONS(2106), - [anon_sym_IBOutlet] = ACTIONS(2106), - [anon_sym_IBInspectable] = ACTIONS(2106), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2106), - [anon_sym_signed] = ACTIONS(2106), - [anon_sym_unsigned] = ACTIONS(2106), - [anon_sym_long] = ACTIONS(2106), - [anon_sym_short] = ACTIONS(2106), - [sym_primitive_type] = ACTIONS(2106), - [anon_sym_enum] = ACTIONS(2106), - [anon_sym_NS_ENUM] = ACTIONS(2106), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2106), - [anon_sym_NS_OPTIONS] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(2106), - [anon_sym_union] = ACTIONS(2106), - [anon_sym_if] = ACTIONS(2106), - [anon_sym_switch] = ACTIONS(2106), - [anon_sym_case] = ACTIONS(2106), - [anon_sym_default] = ACTIONS(2106), - [anon_sym_while] = ACTIONS(2106), - [anon_sym_do] = ACTIONS(2106), - [anon_sym_for] = ACTIONS(2106), - [anon_sym_return] = ACTIONS(2106), - [anon_sym_break] = ACTIONS(2106), - [anon_sym_continue] = ACTIONS(2106), - [anon_sym_goto] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2108), - [anon_sym_PLUS_PLUS] = ACTIONS(2108), - [anon_sym_sizeof] = ACTIONS(2106), - [sym_number_literal] = ACTIONS(2108), - [anon_sym_L_SQUOTE] = ACTIONS(2108), - [anon_sym_u_SQUOTE] = ACTIONS(2108), - [anon_sym_U_SQUOTE] = ACTIONS(2108), - [anon_sym_u8_SQUOTE] = ACTIONS(2108), - [anon_sym_SQUOTE] = ACTIONS(2108), - [anon_sym_L_DQUOTE] = ACTIONS(2108), - [anon_sym_u_DQUOTE] = ACTIONS(2108), - [anon_sym_U_DQUOTE] = ACTIONS(2108), - [anon_sym_u8_DQUOTE] = ACTIONS(2108), - [anon_sym_DQUOTE] = ACTIONS(2108), - [sym_true] = ACTIONS(2106), - [sym_false] = ACTIONS(2106), - [sym_null] = ACTIONS(2106), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2108), - [anon_sym_ATimport] = ACTIONS(2108), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2106), - [anon_sym_ATcompatibility_alias] = ACTIONS(2108), - [anon_sym_ATprotocol] = ACTIONS(2108), - [anon_sym_ATclass] = ACTIONS(2108), - [anon_sym_ATinterface] = ACTIONS(2108), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2106), - [sym_method_attribute_specifier] = ACTIONS(2106), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2106), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2106), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2106), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2106), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2106), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2106), - [anon_sym_NS_AVAILABLE] = ACTIONS(2106), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2106), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2106), - [anon_sym_API_AVAILABLE] = ACTIONS(2106), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2106), - [anon_sym_API_DEPRECATED] = ACTIONS(2106), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2106), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2106), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2106), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2106), - [anon_sym___deprecated_msg] = ACTIONS(2106), - [anon_sym___deprecated_enum_msg] = ACTIONS(2106), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2106), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2106), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2106), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2106), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2106), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2106), - [anon_sym_ATimplementation] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym___typeof] = ACTIONS(2106), - [anon_sym___typeof__] = ACTIONS(2106), - [sym_self] = ACTIONS(2106), - [sym_super] = ACTIONS(2106), - [sym_nil] = ACTIONS(2106), - [sym_id] = ACTIONS(2106), - [sym_instancetype] = ACTIONS(2106), - [sym_Class] = ACTIONS(2106), - [sym_SEL] = ACTIONS(2106), - [sym_IMP] = ACTIONS(2106), - [sym_BOOL] = ACTIONS(2106), - [sym_auto] = ACTIONS(2106), - [anon_sym_ATautoreleasepool] = ACTIONS(2108), - [anon_sym_ATsynchronized] = ACTIONS(2108), - [anon_sym_ATtry] = ACTIONS(2108), - [anon_sym_ATthrow] = ACTIONS(2108), - [anon_sym_ATselector] = ACTIONS(2108), - [anon_sym_ATencode] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(2106), - [sym_YES] = ACTIONS(2106), - [sym_NO] = ACTIONS(2106), - [anon_sym___builtin_available] = ACTIONS(2106), - [anon_sym_ATavailable] = ACTIONS(2108), - [anon_sym_va_arg] = ACTIONS(2106), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [911] = { - [ts_builtin_sym_end] = ACTIONS(2076), - [sym_identifier] = ACTIONS(2074), - [aux_sym_preproc_include_token1] = ACTIONS(2076), - [aux_sym_preproc_def_token1] = ACTIONS(2076), - [aux_sym_preproc_if_token1] = ACTIONS(2074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), - [anon_sym_LPAREN2] = ACTIONS(2076), - [anon_sym_BANG] = ACTIONS(2076), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2074), - [anon_sym_PLUS] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_typedef] = ACTIONS(2074), - [anon_sym_extern] = ACTIONS(2074), - [anon_sym___attribute] = ACTIONS(2074), - [anon_sym___attribute__] = ACTIONS(2074), - [anon_sym___declspec] = ACTIONS(2074), - [anon_sym___cdecl] = ACTIONS(2074), - [anon_sym___clrcall] = ACTIONS(2074), - [anon_sym___stdcall] = ACTIONS(2074), - [anon_sym___fastcall] = ACTIONS(2074), - [anon_sym___thiscall] = ACTIONS(2074), - [anon_sym___vectorcall] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_static] = ACTIONS(2074), - [anon_sym_auto] = ACTIONS(2074), - [anon_sym_register] = ACTIONS(2074), - [anon_sym_inline] = ACTIONS(2074), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2074), - [anon_sym_const] = ACTIONS(2074), - [anon_sym_volatile] = ACTIONS(2074), - [anon_sym_restrict] = ACTIONS(2074), - [anon_sym__Atomic] = ACTIONS(2074), - [anon_sym_in] = ACTIONS(2074), - [anon_sym_out] = ACTIONS(2074), - [anon_sym_inout] = ACTIONS(2074), - [anon_sym_bycopy] = ACTIONS(2074), - [anon_sym_byref] = ACTIONS(2074), - [anon_sym_oneway] = ACTIONS(2074), - [anon_sym__Nullable] = ACTIONS(2074), - [anon_sym__Nonnull] = ACTIONS(2074), - [anon_sym__Nullable_result] = ACTIONS(2074), - [anon_sym__Null_unspecified] = ACTIONS(2074), - [anon_sym___autoreleasing] = ACTIONS(2074), - [anon_sym___nullable] = ACTIONS(2074), - [anon_sym___nonnull] = ACTIONS(2074), - [anon_sym___strong] = ACTIONS(2074), - [anon_sym___weak] = ACTIONS(2074), - [anon_sym___bridge] = ACTIONS(2074), - [anon_sym___bridge_transfer] = ACTIONS(2074), - [anon_sym___bridge_retained] = ACTIONS(2074), - [anon_sym___unsafe_unretained] = ACTIONS(2074), - [anon_sym___block] = ACTIONS(2074), - [anon_sym___kindof] = ACTIONS(2074), - [anon_sym___unused] = ACTIONS(2074), - [anon_sym__Complex] = ACTIONS(2074), - [anon_sym___complex] = ACTIONS(2074), - [anon_sym_IBOutlet] = ACTIONS(2074), - [anon_sym_IBInspectable] = ACTIONS(2074), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2074), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [sym_primitive_type] = ACTIONS(2074), - [anon_sym_enum] = ACTIONS(2074), - [anon_sym_NS_ENUM] = ACTIONS(2074), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2074), - [anon_sym_NS_OPTIONS] = ACTIONS(2074), - [anon_sym_struct] = ACTIONS(2074), - [anon_sym_union] = ACTIONS(2074), - [anon_sym_if] = ACTIONS(2074), - [anon_sym_switch] = ACTIONS(2074), - [anon_sym_case] = ACTIONS(2074), - [anon_sym_default] = ACTIONS(2074), - [anon_sym_while] = ACTIONS(2074), - [anon_sym_do] = ACTIONS(2074), - [anon_sym_for] = ACTIONS(2074), - [anon_sym_return] = ACTIONS(2074), - [anon_sym_break] = ACTIONS(2074), - [anon_sym_continue] = ACTIONS(2074), - [anon_sym_goto] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_sizeof] = ACTIONS(2074), - [sym_number_literal] = ACTIONS(2076), - [anon_sym_L_SQUOTE] = ACTIONS(2076), - [anon_sym_u_SQUOTE] = ACTIONS(2076), - [anon_sym_U_SQUOTE] = ACTIONS(2076), - [anon_sym_u8_SQUOTE] = ACTIONS(2076), - [anon_sym_SQUOTE] = ACTIONS(2076), - [anon_sym_L_DQUOTE] = ACTIONS(2076), - [anon_sym_u_DQUOTE] = ACTIONS(2076), - [anon_sym_U_DQUOTE] = ACTIONS(2076), - [anon_sym_u8_DQUOTE] = ACTIONS(2076), - [anon_sym_DQUOTE] = ACTIONS(2076), - [sym_true] = ACTIONS(2074), - [sym_false] = ACTIONS(2074), - [sym_null] = ACTIONS(2074), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2076), - [anon_sym_ATimport] = ACTIONS(2076), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2074), - [anon_sym_ATcompatibility_alias] = ACTIONS(2076), - [anon_sym_ATprotocol] = ACTIONS(2076), - [anon_sym_ATclass] = ACTIONS(2076), - [anon_sym_ATinterface] = ACTIONS(2076), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2074), - [sym_method_attribute_specifier] = ACTIONS(2074), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2074), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2074), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2074), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2074), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2074), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2074), - [anon_sym_NS_AVAILABLE] = ACTIONS(2074), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2074), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2074), - [anon_sym_API_AVAILABLE] = ACTIONS(2074), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2074), - [anon_sym_API_DEPRECATED] = ACTIONS(2074), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2074), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2074), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2074), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2074), - [anon_sym___deprecated_msg] = ACTIONS(2074), - [anon_sym___deprecated_enum_msg] = ACTIONS(2074), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2074), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2074), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2074), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2074), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2074), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2074), - [anon_sym_ATimplementation] = ACTIONS(2076), - [anon_sym_typeof] = ACTIONS(2074), - [anon_sym___typeof] = ACTIONS(2074), - [anon_sym___typeof__] = ACTIONS(2074), - [sym_self] = ACTIONS(2074), - [sym_super] = ACTIONS(2074), - [sym_nil] = ACTIONS(2074), - [sym_id] = ACTIONS(2074), - [sym_instancetype] = ACTIONS(2074), - [sym_Class] = ACTIONS(2074), - [sym_SEL] = ACTIONS(2074), - [sym_IMP] = ACTIONS(2074), - [sym_BOOL] = ACTIONS(2074), - [sym_auto] = ACTIONS(2074), - [anon_sym_ATautoreleasepool] = ACTIONS(2076), - [anon_sym_ATsynchronized] = ACTIONS(2076), - [anon_sym_ATtry] = ACTIONS(2076), - [anon_sym_ATthrow] = ACTIONS(2076), - [anon_sym_ATselector] = ACTIONS(2076), - [anon_sym_ATencode] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2074), - [sym_YES] = ACTIONS(2074), - [sym_NO] = ACTIONS(2074), - [anon_sym___builtin_available] = ACTIONS(2074), - [anon_sym_ATavailable] = ACTIONS(2076), - [anon_sym_va_arg] = ACTIONS(2074), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [912] = { - [ts_builtin_sym_end] = ACTIONS(1868), - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_RBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [913] = { - [ts_builtin_sym_end] = ACTIONS(1868), - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_RBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [914] = { - [ts_builtin_sym_end] = ACTIONS(1904), - [sym_identifier] = ACTIONS(1902), - [aux_sym_preproc_include_token1] = ACTIONS(1904), - [aux_sym_preproc_def_token1] = ACTIONS(1904), - [aux_sym_preproc_if_token1] = ACTIONS(1902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1902), - [anon_sym_LPAREN2] = ACTIONS(1904), - [anon_sym_BANG] = ACTIONS(1904), - [anon_sym_TILDE] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_PLUS] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1904), - [anon_sym_CARET] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1904), - [anon_sym_typedef] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1902), - [anon_sym___attribute] = ACTIONS(1902), - [anon_sym___attribute__] = ACTIONS(1902), - [anon_sym___declspec] = ACTIONS(1902), - [anon_sym___cdecl] = ACTIONS(1902), - [anon_sym___clrcall] = ACTIONS(1902), - [anon_sym___stdcall] = ACTIONS(1902), - [anon_sym___fastcall] = ACTIONS(1902), - [anon_sym___thiscall] = ACTIONS(1902), - [anon_sym___vectorcall] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1904), - [anon_sym_RBRACE] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1902), - [anon_sym_auto] = ACTIONS(1902), - [anon_sym_register] = ACTIONS(1902), - [anon_sym_inline] = ACTIONS(1902), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1902), - [anon_sym_const] = ACTIONS(1902), - [anon_sym_volatile] = ACTIONS(1902), - [anon_sym_restrict] = ACTIONS(1902), - [anon_sym__Atomic] = ACTIONS(1902), - [anon_sym_in] = ACTIONS(1902), - [anon_sym_out] = ACTIONS(1902), - [anon_sym_inout] = ACTIONS(1902), - [anon_sym_bycopy] = ACTIONS(1902), - [anon_sym_byref] = ACTIONS(1902), - [anon_sym_oneway] = ACTIONS(1902), - [anon_sym__Nullable] = ACTIONS(1902), - [anon_sym__Nonnull] = ACTIONS(1902), - [anon_sym__Nullable_result] = ACTIONS(1902), - [anon_sym__Null_unspecified] = ACTIONS(1902), - [anon_sym___autoreleasing] = ACTIONS(1902), - [anon_sym___nullable] = ACTIONS(1902), - [anon_sym___nonnull] = ACTIONS(1902), - [anon_sym___strong] = ACTIONS(1902), - [anon_sym___weak] = ACTIONS(1902), - [anon_sym___bridge] = ACTIONS(1902), - [anon_sym___bridge_transfer] = ACTIONS(1902), - [anon_sym___bridge_retained] = ACTIONS(1902), - [anon_sym___unsafe_unretained] = ACTIONS(1902), - [anon_sym___block] = ACTIONS(1902), - [anon_sym___kindof] = ACTIONS(1902), - [anon_sym___unused] = ACTIONS(1902), - [anon_sym__Complex] = ACTIONS(1902), - [anon_sym___complex] = ACTIONS(1902), - [anon_sym_IBOutlet] = ACTIONS(1902), - [anon_sym_IBInspectable] = ACTIONS(1902), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1902), - [anon_sym_signed] = ACTIONS(1902), - [anon_sym_unsigned] = ACTIONS(1902), - [anon_sym_long] = ACTIONS(1902), - [anon_sym_short] = ACTIONS(1902), - [sym_primitive_type] = ACTIONS(1902), - [anon_sym_enum] = ACTIONS(1902), - [anon_sym_NS_ENUM] = ACTIONS(1902), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1902), - [anon_sym_NS_OPTIONS] = ACTIONS(1902), - [anon_sym_struct] = ACTIONS(1902), - [anon_sym_union] = ACTIONS(1902), - [anon_sym_if] = ACTIONS(1902), - [anon_sym_switch] = ACTIONS(1902), - [anon_sym_case] = ACTIONS(1902), - [anon_sym_default] = ACTIONS(1902), - [anon_sym_while] = ACTIONS(1902), - [anon_sym_do] = ACTIONS(1902), - [anon_sym_for] = ACTIONS(1902), - [anon_sym_return] = ACTIONS(1902), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1902), - [anon_sym_goto] = ACTIONS(1902), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1904), - [anon_sym_u_SQUOTE] = ACTIONS(1904), - [anon_sym_U_SQUOTE] = ACTIONS(1904), - [anon_sym_u8_SQUOTE] = ACTIONS(1904), - [anon_sym_SQUOTE] = ACTIONS(1904), - [anon_sym_L_DQUOTE] = ACTIONS(1904), - [anon_sym_u_DQUOTE] = ACTIONS(1904), - [anon_sym_U_DQUOTE] = ACTIONS(1904), - [anon_sym_u8_DQUOTE] = ACTIONS(1904), - [anon_sym_DQUOTE] = ACTIONS(1904), - [sym_true] = ACTIONS(1902), - [sym_false] = ACTIONS(1902), - [sym_null] = ACTIONS(1902), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1904), - [anon_sym_ATimport] = ACTIONS(1904), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1902), - [anon_sym_ATcompatibility_alias] = ACTIONS(1904), - [anon_sym_ATprotocol] = ACTIONS(1904), - [anon_sym_ATclass] = ACTIONS(1904), - [anon_sym_ATinterface] = ACTIONS(1904), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1902), - [sym_method_attribute_specifier] = ACTIONS(1902), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1902), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1902), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1902), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1902), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1902), - [anon_sym_NS_AVAILABLE] = ACTIONS(1902), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1902), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_API_AVAILABLE] = ACTIONS(1902), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_API_DEPRECATED] = ACTIONS(1902), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1902), - [anon_sym___deprecated_msg] = ACTIONS(1902), - [anon_sym___deprecated_enum_msg] = ACTIONS(1902), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1902), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1902), - [anon_sym_ATimplementation] = ACTIONS(1904), - [anon_sym_typeof] = ACTIONS(1902), - [anon_sym___typeof] = ACTIONS(1902), - [anon_sym___typeof__] = ACTIONS(1902), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_nil] = ACTIONS(1902), - [sym_id] = ACTIONS(1902), - [sym_instancetype] = ACTIONS(1902), - [sym_Class] = ACTIONS(1902), - [sym_SEL] = ACTIONS(1902), - [sym_IMP] = ACTIONS(1902), - [sym_BOOL] = ACTIONS(1902), - [sym_auto] = ACTIONS(1902), - [anon_sym_ATautoreleasepool] = ACTIONS(1904), - [anon_sym_ATsynchronized] = ACTIONS(1904), - [anon_sym_ATtry] = ACTIONS(1904), - [anon_sym_ATthrow] = ACTIONS(1904), - [anon_sym_ATselector] = ACTIONS(1904), - [anon_sym_ATencode] = ACTIONS(1904), - [anon_sym_AT] = ACTIONS(1902), - [sym_YES] = ACTIONS(1902), - [sym_NO] = ACTIONS(1902), - [anon_sym___builtin_available] = ACTIONS(1902), - [anon_sym_ATavailable] = ACTIONS(1904), - [anon_sym_va_arg] = ACTIONS(1902), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [915] = { - [ts_builtin_sym_end] = ACTIONS(1904), - [sym_identifier] = ACTIONS(1902), - [aux_sym_preproc_include_token1] = ACTIONS(1904), - [aux_sym_preproc_def_token1] = ACTIONS(1904), - [aux_sym_preproc_if_token1] = ACTIONS(1902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1902), - [anon_sym_LPAREN2] = ACTIONS(1904), - [anon_sym_BANG] = ACTIONS(1904), - [anon_sym_TILDE] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_PLUS] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1904), - [anon_sym_CARET] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1904), - [anon_sym_typedef] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1902), - [anon_sym___attribute] = ACTIONS(1902), - [anon_sym___attribute__] = ACTIONS(1902), - [anon_sym___declspec] = ACTIONS(1902), - [anon_sym___cdecl] = ACTIONS(1902), - [anon_sym___clrcall] = ACTIONS(1902), - [anon_sym___stdcall] = ACTIONS(1902), - [anon_sym___fastcall] = ACTIONS(1902), - [anon_sym___thiscall] = ACTIONS(1902), - [anon_sym___vectorcall] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1904), - [anon_sym_RBRACE] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1902), - [anon_sym_auto] = ACTIONS(1902), - [anon_sym_register] = ACTIONS(1902), - [anon_sym_inline] = ACTIONS(1902), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1902), - [anon_sym_const] = ACTIONS(1902), - [anon_sym_volatile] = ACTIONS(1902), - [anon_sym_restrict] = ACTIONS(1902), - [anon_sym__Atomic] = ACTIONS(1902), - [anon_sym_in] = ACTIONS(1902), - [anon_sym_out] = ACTIONS(1902), - [anon_sym_inout] = ACTIONS(1902), - [anon_sym_bycopy] = ACTIONS(1902), - [anon_sym_byref] = ACTIONS(1902), - [anon_sym_oneway] = ACTIONS(1902), - [anon_sym__Nullable] = ACTIONS(1902), - [anon_sym__Nonnull] = ACTIONS(1902), - [anon_sym__Nullable_result] = ACTIONS(1902), - [anon_sym__Null_unspecified] = ACTIONS(1902), - [anon_sym___autoreleasing] = ACTIONS(1902), - [anon_sym___nullable] = ACTIONS(1902), - [anon_sym___nonnull] = ACTIONS(1902), - [anon_sym___strong] = ACTIONS(1902), - [anon_sym___weak] = ACTIONS(1902), - [anon_sym___bridge] = ACTIONS(1902), - [anon_sym___bridge_transfer] = ACTIONS(1902), - [anon_sym___bridge_retained] = ACTIONS(1902), - [anon_sym___unsafe_unretained] = ACTIONS(1902), - [anon_sym___block] = ACTIONS(1902), - [anon_sym___kindof] = ACTIONS(1902), - [anon_sym___unused] = ACTIONS(1902), - [anon_sym__Complex] = ACTIONS(1902), - [anon_sym___complex] = ACTIONS(1902), - [anon_sym_IBOutlet] = ACTIONS(1902), - [anon_sym_IBInspectable] = ACTIONS(1902), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1902), - [anon_sym_signed] = ACTIONS(1902), - [anon_sym_unsigned] = ACTIONS(1902), - [anon_sym_long] = ACTIONS(1902), - [anon_sym_short] = ACTIONS(1902), - [sym_primitive_type] = ACTIONS(1902), - [anon_sym_enum] = ACTIONS(1902), - [anon_sym_NS_ENUM] = ACTIONS(1902), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1902), - [anon_sym_NS_OPTIONS] = ACTIONS(1902), - [anon_sym_struct] = ACTIONS(1902), - [anon_sym_union] = ACTIONS(1902), - [anon_sym_if] = ACTIONS(1902), - [anon_sym_switch] = ACTIONS(1902), - [anon_sym_case] = ACTIONS(1902), - [anon_sym_default] = ACTIONS(1902), - [anon_sym_while] = ACTIONS(1902), - [anon_sym_do] = ACTIONS(1902), - [anon_sym_for] = ACTIONS(1902), - [anon_sym_return] = ACTIONS(1902), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1902), - [anon_sym_goto] = ACTIONS(1902), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1904), - [anon_sym_u_SQUOTE] = ACTIONS(1904), - [anon_sym_U_SQUOTE] = ACTIONS(1904), - [anon_sym_u8_SQUOTE] = ACTIONS(1904), - [anon_sym_SQUOTE] = ACTIONS(1904), - [anon_sym_L_DQUOTE] = ACTIONS(1904), - [anon_sym_u_DQUOTE] = ACTIONS(1904), - [anon_sym_U_DQUOTE] = ACTIONS(1904), - [anon_sym_u8_DQUOTE] = ACTIONS(1904), - [anon_sym_DQUOTE] = ACTIONS(1904), - [sym_true] = ACTIONS(1902), - [sym_false] = ACTIONS(1902), - [sym_null] = ACTIONS(1902), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1904), - [anon_sym_ATimport] = ACTIONS(1904), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1902), - [anon_sym_ATcompatibility_alias] = ACTIONS(1904), - [anon_sym_ATprotocol] = ACTIONS(1904), - [anon_sym_ATclass] = ACTIONS(1904), - [anon_sym_ATinterface] = ACTIONS(1904), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1902), - [sym_method_attribute_specifier] = ACTIONS(1902), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1902), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1902), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1902), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1902), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1902), - [anon_sym_NS_AVAILABLE] = ACTIONS(1902), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1902), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_API_AVAILABLE] = ACTIONS(1902), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_API_DEPRECATED] = ACTIONS(1902), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1902), - [anon_sym___deprecated_msg] = ACTIONS(1902), - [anon_sym___deprecated_enum_msg] = ACTIONS(1902), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1902), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1902), - [anon_sym_ATimplementation] = ACTIONS(1904), - [anon_sym_typeof] = ACTIONS(1902), - [anon_sym___typeof] = ACTIONS(1902), - [anon_sym___typeof__] = ACTIONS(1902), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_nil] = ACTIONS(1902), - [sym_id] = ACTIONS(1902), - [sym_instancetype] = ACTIONS(1902), - [sym_Class] = ACTIONS(1902), - [sym_SEL] = ACTIONS(1902), - [sym_IMP] = ACTIONS(1902), - [sym_BOOL] = ACTIONS(1902), - [sym_auto] = ACTIONS(1902), - [anon_sym_ATautoreleasepool] = ACTIONS(1904), - [anon_sym_ATsynchronized] = ACTIONS(1904), - [anon_sym_ATtry] = ACTIONS(1904), - [anon_sym_ATthrow] = ACTIONS(1904), - [anon_sym_ATselector] = ACTIONS(1904), - [anon_sym_ATencode] = ACTIONS(1904), - [anon_sym_AT] = ACTIONS(1902), - [sym_YES] = ACTIONS(1902), - [sym_NO] = ACTIONS(1902), - [anon_sym___builtin_available] = ACTIONS(1902), - [anon_sym_ATavailable] = ACTIONS(1904), - [anon_sym_va_arg] = ACTIONS(1902), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [916] = { - [ts_builtin_sym_end] = ACTIONS(1904), - [sym_identifier] = ACTIONS(1902), - [aux_sym_preproc_include_token1] = ACTIONS(1904), - [aux_sym_preproc_def_token1] = ACTIONS(1904), - [aux_sym_preproc_if_token1] = ACTIONS(1902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1902), - [anon_sym_LPAREN2] = ACTIONS(1904), - [anon_sym_BANG] = ACTIONS(1904), - [anon_sym_TILDE] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_PLUS] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1904), - [anon_sym_CARET] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1904), - [anon_sym_typedef] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1902), - [anon_sym___attribute] = ACTIONS(1902), - [anon_sym___attribute__] = ACTIONS(1902), - [anon_sym___declspec] = ACTIONS(1902), - [anon_sym___cdecl] = ACTIONS(1902), - [anon_sym___clrcall] = ACTIONS(1902), - [anon_sym___stdcall] = ACTIONS(1902), - [anon_sym___fastcall] = ACTIONS(1902), - [anon_sym___thiscall] = ACTIONS(1902), - [anon_sym___vectorcall] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1904), - [anon_sym_RBRACE] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1902), - [anon_sym_auto] = ACTIONS(1902), - [anon_sym_register] = ACTIONS(1902), - [anon_sym_inline] = ACTIONS(1902), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1902), - [anon_sym_const] = ACTIONS(1902), - [anon_sym_volatile] = ACTIONS(1902), - [anon_sym_restrict] = ACTIONS(1902), - [anon_sym__Atomic] = ACTIONS(1902), - [anon_sym_in] = ACTIONS(1902), - [anon_sym_out] = ACTIONS(1902), - [anon_sym_inout] = ACTIONS(1902), - [anon_sym_bycopy] = ACTIONS(1902), - [anon_sym_byref] = ACTIONS(1902), - [anon_sym_oneway] = ACTIONS(1902), - [anon_sym__Nullable] = ACTIONS(1902), - [anon_sym__Nonnull] = ACTIONS(1902), - [anon_sym__Nullable_result] = ACTIONS(1902), - [anon_sym__Null_unspecified] = ACTIONS(1902), - [anon_sym___autoreleasing] = ACTIONS(1902), - [anon_sym___nullable] = ACTIONS(1902), - [anon_sym___nonnull] = ACTIONS(1902), - [anon_sym___strong] = ACTIONS(1902), - [anon_sym___weak] = ACTIONS(1902), - [anon_sym___bridge] = ACTIONS(1902), - [anon_sym___bridge_transfer] = ACTIONS(1902), - [anon_sym___bridge_retained] = ACTIONS(1902), - [anon_sym___unsafe_unretained] = ACTIONS(1902), - [anon_sym___block] = ACTIONS(1902), - [anon_sym___kindof] = ACTIONS(1902), - [anon_sym___unused] = ACTIONS(1902), - [anon_sym__Complex] = ACTIONS(1902), - [anon_sym___complex] = ACTIONS(1902), - [anon_sym_IBOutlet] = ACTIONS(1902), - [anon_sym_IBInspectable] = ACTIONS(1902), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1902), - [anon_sym_signed] = ACTIONS(1902), - [anon_sym_unsigned] = ACTIONS(1902), - [anon_sym_long] = ACTIONS(1902), - [anon_sym_short] = ACTIONS(1902), - [sym_primitive_type] = ACTIONS(1902), - [anon_sym_enum] = ACTIONS(1902), - [anon_sym_NS_ENUM] = ACTIONS(1902), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1902), - [anon_sym_NS_OPTIONS] = ACTIONS(1902), - [anon_sym_struct] = ACTIONS(1902), - [anon_sym_union] = ACTIONS(1902), - [anon_sym_if] = ACTIONS(1902), - [anon_sym_switch] = ACTIONS(1902), - [anon_sym_case] = ACTIONS(1902), - [anon_sym_default] = ACTIONS(1902), - [anon_sym_while] = ACTIONS(1902), - [anon_sym_do] = ACTIONS(1902), - [anon_sym_for] = ACTIONS(1902), - [anon_sym_return] = ACTIONS(1902), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1902), - [anon_sym_goto] = ACTIONS(1902), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1904), - [anon_sym_u_SQUOTE] = ACTIONS(1904), - [anon_sym_U_SQUOTE] = ACTIONS(1904), - [anon_sym_u8_SQUOTE] = ACTIONS(1904), - [anon_sym_SQUOTE] = ACTIONS(1904), - [anon_sym_L_DQUOTE] = ACTIONS(1904), - [anon_sym_u_DQUOTE] = ACTIONS(1904), - [anon_sym_U_DQUOTE] = ACTIONS(1904), - [anon_sym_u8_DQUOTE] = ACTIONS(1904), - [anon_sym_DQUOTE] = ACTIONS(1904), - [sym_true] = ACTIONS(1902), - [sym_false] = ACTIONS(1902), - [sym_null] = ACTIONS(1902), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1904), - [anon_sym_ATimport] = ACTIONS(1904), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1902), - [anon_sym_ATcompatibility_alias] = ACTIONS(1904), - [anon_sym_ATprotocol] = ACTIONS(1904), - [anon_sym_ATclass] = ACTIONS(1904), - [anon_sym_ATinterface] = ACTIONS(1904), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1902), - [sym_method_attribute_specifier] = ACTIONS(1902), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1902), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1902), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1902), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1902), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1902), - [anon_sym_NS_AVAILABLE] = ACTIONS(1902), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1902), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_API_AVAILABLE] = ACTIONS(1902), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_API_DEPRECATED] = ACTIONS(1902), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1902), - [anon_sym___deprecated_msg] = ACTIONS(1902), - [anon_sym___deprecated_enum_msg] = ACTIONS(1902), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1902), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1902), - [anon_sym_ATimplementation] = ACTIONS(1904), - [anon_sym_typeof] = ACTIONS(1902), - [anon_sym___typeof] = ACTIONS(1902), - [anon_sym___typeof__] = ACTIONS(1902), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_nil] = ACTIONS(1902), - [sym_id] = ACTIONS(1902), - [sym_instancetype] = ACTIONS(1902), - [sym_Class] = ACTIONS(1902), - [sym_SEL] = ACTIONS(1902), - [sym_IMP] = ACTIONS(1902), - [sym_BOOL] = ACTIONS(1902), - [sym_auto] = ACTIONS(1902), - [anon_sym_ATautoreleasepool] = ACTIONS(1904), - [anon_sym_ATsynchronized] = ACTIONS(1904), - [anon_sym_ATtry] = ACTIONS(1904), - [anon_sym_ATthrow] = ACTIONS(1904), - [anon_sym_ATselector] = ACTIONS(1904), - [anon_sym_ATencode] = ACTIONS(1904), - [anon_sym_AT] = ACTIONS(1902), - [sym_YES] = ACTIONS(1902), - [sym_NO] = ACTIONS(1902), - [anon_sym___builtin_available] = ACTIONS(1902), - [anon_sym_ATavailable] = ACTIONS(1904), - [anon_sym_va_arg] = ACTIONS(1902), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [917] = { - [ts_builtin_sym_end] = ACTIONS(1848), - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [918] = { - [ts_builtin_sym_end] = ACTIONS(1848), - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [919] = { - [ts_builtin_sym_end] = ACTIONS(1848), - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [920] = { - [ts_builtin_sym_end] = ACTIONS(1868), - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_RBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [921] = { - [ts_builtin_sym_end] = ACTIONS(1868), - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_RBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [922] = { - [ts_builtin_sym_end] = ACTIONS(1868), - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_RBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [923] = { - [ts_builtin_sym_end] = ACTIONS(2068), - [sym_identifier] = ACTIONS(2066), - [aux_sym_preproc_include_token1] = ACTIONS(2068), - [aux_sym_preproc_def_token1] = ACTIONS(2068), - [aux_sym_preproc_if_token1] = ACTIONS(2066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2066), - [anon_sym_LPAREN2] = ACTIONS(2068), - [anon_sym_BANG] = ACTIONS(2068), - [anon_sym_TILDE] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_PLUS] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2068), - [anon_sym_CARET] = ACTIONS(2068), - [anon_sym_AMP] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_typedef] = ACTIONS(2066), - [anon_sym_extern] = ACTIONS(2066), - [anon_sym___attribute] = ACTIONS(2066), - [anon_sym___attribute__] = ACTIONS(2066), - [anon_sym___declspec] = ACTIONS(2066), - [anon_sym___cdecl] = ACTIONS(2066), - [anon_sym___clrcall] = ACTIONS(2066), - [anon_sym___stdcall] = ACTIONS(2066), - [anon_sym___fastcall] = ACTIONS(2066), - [anon_sym___thiscall] = ACTIONS(2066), - [anon_sym___vectorcall] = ACTIONS(2066), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_RBRACE] = ACTIONS(2068), - [anon_sym_LBRACK] = ACTIONS(2068), - [anon_sym_static] = ACTIONS(2066), - [anon_sym_auto] = ACTIONS(2066), - [anon_sym_register] = ACTIONS(2066), - [anon_sym_inline] = ACTIONS(2066), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2066), - [anon_sym_const] = ACTIONS(2066), - [anon_sym_volatile] = ACTIONS(2066), - [anon_sym_restrict] = ACTIONS(2066), - [anon_sym__Atomic] = ACTIONS(2066), - [anon_sym_in] = ACTIONS(2066), - [anon_sym_out] = ACTIONS(2066), - [anon_sym_inout] = ACTIONS(2066), - [anon_sym_bycopy] = ACTIONS(2066), - [anon_sym_byref] = ACTIONS(2066), - [anon_sym_oneway] = ACTIONS(2066), - [anon_sym__Nullable] = ACTIONS(2066), - [anon_sym__Nonnull] = ACTIONS(2066), - [anon_sym__Nullable_result] = ACTIONS(2066), - [anon_sym__Null_unspecified] = ACTIONS(2066), - [anon_sym___autoreleasing] = ACTIONS(2066), - [anon_sym___nullable] = ACTIONS(2066), - [anon_sym___nonnull] = ACTIONS(2066), - [anon_sym___strong] = ACTIONS(2066), - [anon_sym___weak] = ACTIONS(2066), - [anon_sym___bridge] = ACTIONS(2066), - [anon_sym___bridge_transfer] = ACTIONS(2066), - [anon_sym___bridge_retained] = ACTIONS(2066), - [anon_sym___unsafe_unretained] = ACTIONS(2066), - [anon_sym___block] = ACTIONS(2066), - [anon_sym___kindof] = ACTIONS(2066), - [anon_sym___unused] = ACTIONS(2066), - [anon_sym__Complex] = ACTIONS(2066), - [anon_sym___complex] = ACTIONS(2066), - [anon_sym_IBOutlet] = ACTIONS(2066), - [anon_sym_IBInspectable] = ACTIONS(2066), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2066), - [anon_sym_signed] = ACTIONS(2066), - [anon_sym_unsigned] = ACTIONS(2066), - [anon_sym_long] = ACTIONS(2066), - [anon_sym_short] = ACTIONS(2066), - [sym_primitive_type] = ACTIONS(2066), - [anon_sym_enum] = ACTIONS(2066), - [anon_sym_NS_ENUM] = ACTIONS(2066), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2066), - [anon_sym_NS_OPTIONS] = ACTIONS(2066), - [anon_sym_struct] = ACTIONS(2066), - [anon_sym_union] = ACTIONS(2066), - [anon_sym_if] = ACTIONS(2066), - [anon_sym_switch] = ACTIONS(2066), - [anon_sym_case] = ACTIONS(2066), - [anon_sym_default] = ACTIONS(2066), - [anon_sym_while] = ACTIONS(2066), - [anon_sym_do] = ACTIONS(2066), - [anon_sym_for] = ACTIONS(2066), - [anon_sym_return] = ACTIONS(2066), - [anon_sym_break] = ACTIONS(2066), - [anon_sym_continue] = ACTIONS(2066), - [anon_sym_goto] = ACTIONS(2066), - [anon_sym_DASH_DASH] = ACTIONS(2068), - [anon_sym_PLUS_PLUS] = ACTIONS(2068), - [anon_sym_sizeof] = ACTIONS(2066), - [sym_number_literal] = ACTIONS(2068), - [anon_sym_L_SQUOTE] = ACTIONS(2068), - [anon_sym_u_SQUOTE] = ACTIONS(2068), - [anon_sym_U_SQUOTE] = ACTIONS(2068), - [anon_sym_u8_SQUOTE] = ACTIONS(2068), - [anon_sym_SQUOTE] = ACTIONS(2068), - [anon_sym_L_DQUOTE] = ACTIONS(2068), - [anon_sym_u_DQUOTE] = ACTIONS(2068), - [anon_sym_U_DQUOTE] = ACTIONS(2068), - [anon_sym_u8_DQUOTE] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2068), - [sym_true] = ACTIONS(2066), - [sym_false] = ACTIONS(2066), - [sym_null] = ACTIONS(2066), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2068), - [anon_sym_ATimport] = ACTIONS(2068), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2066), - [anon_sym_ATcompatibility_alias] = ACTIONS(2068), - [anon_sym_ATprotocol] = ACTIONS(2068), - [anon_sym_ATclass] = ACTIONS(2068), - [anon_sym_ATinterface] = ACTIONS(2068), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2066), - [sym_method_attribute_specifier] = ACTIONS(2066), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2066), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2066), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2066), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2066), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2066), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2066), - [anon_sym_NS_AVAILABLE] = ACTIONS(2066), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2066), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2066), - [anon_sym_API_AVAILABLE] = ACTIONS(2066), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2066), - [anon_sym_API_DEPRECATED] = ACTIONS(2066), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2066), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2066), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2066), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2066), - [anon_sym___deprecated_msg] = ACTIONS(2066), - [anon_sym___deprecated_enum_msg] = ACTIONS(2066), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2066), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2066), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2066), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2066), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2066), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2066), - [anon_sym_ATimplementation] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(2066), - [anon_sym___typeof] = ACTIONS(2066), - [anon_sym___typeof__] = ACTIONS(2066), - [sym_self] = ACTIONS(2066), - [sym_super] = ACTIONS(2066), - [sym_nil] = ACTIONS(2066), - [sym_id] = ACTIONS(2066), - [sym_instancetype] = ACTIONS(2066), - [sym_Class] = ACTIONS(2066), - [sym_SEL] = ACTIONS(2066), - [sym_IMP] = ACTIONS(2066), - [sym_BOOL] = ACTIONS(2066), - [sym_auto] = ACTIONS(2066), - [anon_sym_ATautoreleasepool] = ACTIONS(2068), - [anon_sym_ATsynchronized] = ACTIONS(2068), - [anon_sym_ATtry] = ACTIONS(2068), - [anon_sym_ATthrow] = ACTIONS(2068), - [anon_sym_ATselector] = ACTIONS(2068), - [anon_sym_ATencode] = ACTIONS(2068), - [anon_sym_AT] = ACTIONS(2066), - [sym_YES] = ACTIONS(2066), - [sym_NO] = ACTIONS(2066), - [anon_sym___builtin_available] = ACTIONS(2066), - [anon_sym_ATavailable] = ACTIONS(2068), - [anon_sym_va_arg] = ACTIONS(2066), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [924] = { - [ts_builtin_sym_end] = ACTIONS(1872), - [sym_identifier] = ACTIONS(1870), - [aux_sym_preproc_include_token1] = ACTIONS(1872), - [aux_sym_preproc_def_token1] = ACTIONS(1872), - [aux_sym_preproc_if_token1] = ACTIONS(1870), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1870), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1872), - [anon_sym_BANG] = ACTIONS(1872), - [anon_sym_TILDE] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1872), - [anon_sym_CARET] = ACTIONS(1872), - [anon_sym_AMP] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1872), - [anon_sym_typedef] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(1870), - [anon_sym___attribute] = ACTIONS(1870), - [anon_sym___attribute__] = ACTIONS(1870), - [anon_sym___declspec] = ACTIONS(1870), - [anon_sym___cdecl] = ACTIONS(1870), - [anon_sym___clrcall] = ACTIONS(1870), - [anon_sym___stdcall] = ACTIONS(1870), - [anon_sym___fastcall] = ACTIONS(1870), - [anon_sym___thiscall] = ACTIONS(1870), - [anon_sym___vectorcall] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_RBRACE] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1870), - [anon_sym_auto] = ACTIONS(1870), - [anon_sym_register] = ACTIONS(1870), - [anon_sym_inline] = ACTIONS(1870), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1870), - [anon_sym_const] = ACTIONS(1870), - [anon_sym_volatile] = ACTIONS(1870), - [anon_sym_restrict] = ACTIONS(1870), - [anon_sym__Atomic] = ACTIONS(1870), - [anon_sym_in] = ACTIONS(1870), - [anon_sym_out] = ACTIONS(1870), - [anon_sym_inout] = ACTIONS(1870), - [anon_sym_bycopy] = ACTIONS(1870), - [anon_sym_byref] = ACTIONS(1870), - [anon_sym_oneway] = ACTIONS(1870), - [anon_sym__Nullable] = ACTIONS(1870), - [anon_sym__Nonnull] = ACTIONS(1870), - [anon_sym__Nullable_result] = ACTIONS(1870), - [anon_sym__Null_unspecified] = ACTIONS(1870), - [anon_sym___autoreleasing] = ACTIONS(1870), - [anon_sym___nullable] = ACTIONS(1870), - [anon_sym___nonnull] = ACTIONS(1870), - [anon_sym___strong] = ACTIONS(1870), - [anon_sym___weak] = ACTIONS(1870), - [anon_sym___bridge] = ACTIONS(1870), - [anon_sym___bridge_transfer] = ACTIONS(1870), - [anon_sym___bridge_retained] = ACTIONS(1870), - [anon_sym___unsafe_unretained] = ACTIONS(1870), - [anon_sym___block] = ACTIONS(1870), - [anon_sym___kindof] = ACTIONS(1870), - [anon_sym___unused] = ACTIONS(1870), - [anon_sym__Complex] = ACTIONS(1870), - [anon_sym___complex] = ACTIONS(1870), - [anon_sym_IBOutlet] = ACTIONS(1870), - [anon_sym_IBInspectable] = ACTIONS(1870), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1870), - [anon_sym_signed] = ACTIONS(1870), - [anon_sym_unsigned] = ACTIONS(1870), - [anon_sym_long] = ACTIONS(1870), - [anon_sym_short] = ACTIONS(1870), - [sym_primitive_type] = ACTIONS(1870), - [anon_sym_enum] = ACTIONS(1870), - [anon_sym_NS_ENUM] = ACTIONS(1870), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1870), - [anon_sym_NS_OPTIONS] = ACTIONS(1870), - [anon_sym_struct] = ACTIONS(1870), - [anon_sym_union] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(1870), - [anon_sym_switch] = ACTIONS(1870), - [anon_sym_case] = ACTIONS(1870), - [anon_sym_default] = ACTIONS(1870), - [anon_sym_while] = ACTIONS(1870), - [anon_sym_do] = ACTIONS(1870), - [anon_sym_for] = ACTIONS(1870), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1870), - [anon_sym_continue] = ACTIONS(1870), - [anon_sym_goto] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1872), - [anon_sym_PLUS_PLUS] = ACTIONS(1872), - [anon_sym_sizeof] = ACTIONS(1870), - [sym_number_literal] = ACTIONS(1872), - [anon_sym_L_SQUOTE] = ACTIONS(1872), - [anon_sym_u_SQUOTE] = ACTIONS(1872), - [anon_sym_U_SQUOTE] = ACTIONS(1872), - [anon_sym_u8_SQUOTE] = ACTIONS(1872), - [anon_sym_SQUOTE] = ACTIONS(1872), - [anon_sym_L_DQUOTE] = ACTIONS(1872), - [anon_sym_u_DQUOTE] = ACTIONS(1872), - [anon_sym_U_DQUOTE] = ACTIONS(1872), - [anon_sym_u8_DQUOTE] = ACTIONS(1872), - [anon_sym_DQUOTE] = ACTIONS(1872), - [sym_true] = ACTIONS(1870), - [sym_false] = ACTIONS(1870), - [sym_null] = ACTIONS(1870), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1872), - [anon_sym_ATimport] = ACTIONS(1872), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1870), - [anon_sym_ATcompatibility_alias] = ACTIONS(1872), - [anon_sym_ATprotocol] = ACTIONS(1872), - [anon_sym_ATclass] = ACTIONS(1872), - [anon_sym_ATinterface] = ACTIONS(1872), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1870), - [sym_method_attribute_specifier] = ACTIONS(1870), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1870), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1870), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1870), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1870), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1870), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1870), - [anon_sym_NS_AVAILABLE] = ACTIONS(1870), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1870), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_API_AVAILABLE] = ACTIONS(1870), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1870), - [anon_sym_API_DEPRECATED] = ACTIONS(1870), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1870), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1870), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1870), - [anon_sym___deprecated_msg] = ACTIONS(1870), - [anon_sym___deprecated_enum_msg] = ACTIONS(1870), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1870), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1870), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1870), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1870), - [anon_sym_ATimplementation] = ACTIONS(1872), - [anon_sym_typeof] = ACTIONS(1870), - [anon_sym___typeof] = ACTIONS(1870), - [anon_sym___typeof__] = ACTIONS(1870), - [sym_self] = ACTIONS(1870), - [sym_super] = ACTIONS(1870), - [sym_nil] = ACTIONS(1870), - [sym_id] = ACTIONS(1870), - [sym_instancetype] = ACTIONS(1870), - [sym_Class] = ACTIONS(1870), - [sym_SEL] = ACTIONS(1870), - [sym_IMP] = ACTIONS(1870), - [sym_BOOL] = ACTIONS(1870), - [sym_auto] = ACTIONS(1870), - [anon_sym_ATautoreleasepool] = ACTIONS(1872), - [anon_sym_ATsynchronized] = ACTIONS(1872), - [anon_sym_ATtry] = ACTIONS(1872), - [anon_sym_ATthrow] = ACTIONS(1872), - [anon_sym_ATselector] = ACTIONS(1872), - [anon_sym_ATencode] = ACTIONS(1872), - [anon_sym_AT] = ACTIONS(1870), - [sym_YES] = ACTIONS(1870), - [sym_NO] = ACTIONS(1870), - [anon_sym___builtin_available] = ACTIONS(1870), - [anon_sym_ATavailable] = ACTIONS(1872), - [anon_sym_va_arg] = ACTIONS(1870), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [925] = { - [ts_builtin_sym_end] = ACTIONS(2072), - [sym_identifier] = ACTIONS(2070), - [aux_sym_preproc_include_token1] = ACTIONS(2072), - [aux_sym_preproc_def_token1] = ACTIONS(2072), - [aux_sym_preproc_if_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2070), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym___attribute] = ACTIONS(2070), - [anon_sym___attribute__] = ACTIONS(2070), - [anon_sym___declspec] = ACTIONS(2070), - [anon_sym___cdecl] = ACTIONS(2070), - [anon_sym___clrcall] = ACTIONS(2070), - [anon_sym___stdcall] = ACTIONS(2070), - [anon_sym___fastcall] = ACTIONS(2070), - [anon_sym___thiscall] = ACTIONS(2070), - [anon_sym___vectorcall] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_auto] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_volatile] = ACTIONS(2070), - [anon_sym_restrict] = ACTIONS(2070), - [anon_sym__Atomic] = ACTIONS(2070), - [anon_sym_in] = ACTIONS(2070), - [anon_sym_out] = ACTIONS(2070), - [anon_sym_inout] = ACTIONS(2070), - [anon_sym_bycopy] = ACTIONS(2070), - [anon_sym_byref] = ACTIONS(2070), - [anon_sym_oneway] = ACTIONS(2070), - [anon_sym__Nullable] = ACTIONS(2070), - [anon_sym__Nonnull] = ACTIONS(2070), - [anon_sym__Nullable_result] = ACTIONS(2070), - [anon_sym__Null_unspecified] = ACTIONS(2070), - [anon_sym___autoreleasing] = ACTIONS(2070), - [anon_sym___nullable] = ACTIONS(2070), - [anon_sym___nonnull] = ACTIONS(2070), - [anon_sym___strong] = ACTIONS(2070), - [anon_sym___weak] = ACTIONS(2070), - [anon_sym___bridge] = ACTIONS(2070), - [anon_sym___bridge_transfer] = ACTIONS(2070), - [anon_sym___bridge_retained] = ACTIONS(2070), - [anon_sym___unsafe_unretained] = ACTIONS(2070), - [anon_sym___block] = ACTIONS(2070), - [anon_sym___kindof] = ACTIONS(2070), - [anon_sym___unused] = ACTIONS(2070), - [anon_sym__Complex] = ACTIONS(2070), - [anon_sym___complex] = ACTIONS(2070), - [anon_sym_IBOutlet] = ACTIONS(2070), - [anon_sym_IBInspectable] = ACTIONS(2070), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2070), - [anon_sym_signed] = ACTIONS(2070), - [anon_sym_unsigned] = ACTIONS(2070), - [anon_sym_long] = ACTIONS(2070), - [anon_sym_short] = ACTIONS(2070), - [sym_primitive_type] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_NS_ENUM] = ACTIONS(2070), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2070), - [anon_sym_NS_OPTIONS] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_case] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_goto] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_sizeof] = ACTIONS(2070), - [sym_number_literal] = ACTIONS(2072), - [anon_sym_L_SQUOTE] = ACTIONS(2072), - [anon_sym_u_SQUOTE] = ACTIONS(2072), - [anon_sym_U_SQUOTE] = ACTIONS(2072), - [anon_sym_u8_SQUOTE] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_L_DQUOTE] = ACTIONS(2072), - [anon_sym_u_DQUOTE] = ACTIONS(2072), - [anon_sym_U_DQUOTE] = ACTIONS(2072), - [anon_sym_u8_DQUOTE] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym_true] = ACTIONS(2070), - [sym_false] = ACTIONS(2070), - [sym_null] = ACTIONS(2070), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2072), - [anon_sym_ATimport] = ACTIONS(2072), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2070), - [anon_sym_ATcompatibility_alias] = ACTIONS(2072), - [anon_sym_ATprotocol] = ACTIONS(2072), - [anon_sym_ATclass] = ACTIONS(2072), - [anon_sym_ATinterface] = ACTIONS(2072), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2070), - [sym_method_attribute_specifier] = ACTIONS(2070), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2070), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE] = ACTIONS(2070), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_API_AVAILABLE] = ACTIONS(2070), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_API_DEPRECATED] = ACTIONS(2070), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2070), - [anon_sym___deprecated_msg] = ACTIONS(2070), - [anon_sym___deprecated_enum_msg] = ACTIONS(2070), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2070), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2070), - [anon_sym_ATimplementation] = ACTIONS(2072), - [anon_sym_typeof] = ACTIONS(2070), - [anon_sym___typeof] = ACTIONS(2070), - [anon_sym___typeof__] = ACTIONS(2070), - [sym_self] = ACTIONS(2070), - [sym_super] = ACTIONS(2070), - [sym_nil] = ACTIONS(2070), - [sym_id] = ACTIONS(2070), - [sym_instancetype] = ACTIONS(2070), - [sym_Class] = ACTIONS(2070), - [sym_SEL] = ACTIONS(2070), - [sym_IMP] = ACTIONS(2070), - [sym_BOOL] = ACTIONS(2070), - [sym_auto] = ACTIONS(2070), - [anon_sym_ATautoreleasepool] = ACTIONS(2072), - [anon_sym_ATsynchronized] = ACTIONS(2072), - [anon_sym_ATtry] = ACTIONS(2072), - [anon_sym_ATthrow] = ACTIONS(2072), - [anon_sym_ATselector] = ACTIONS(2072), - [anon_sym_ATencode] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2070), - [sym_YES] = ACTIONS(2070), - [sym_NO] = ACTIONS(2070), - [anon_sym___builtin_available] = ACTIONS(2070), - [anon_sym_ATavailable] = ACTIONS(2072), - [anon_sym_va_arg] = ACTIONS(2070), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [926] = { - [ts_builtin_sym_end] = ACTIONS(1848), - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [927] = { - [ts_builtin_sym_end] = ACTIONS(2072), - [sym_identifier] = ACTIONS(2070), - [aux_sym_preproc_include_token1] = ACTIONS(2072), - [aux_sym_preproc_def_token1] = ACTIONS(2072), - [aux_sym_preproc_if_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2070), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym___attribute] = ACTIONS(2070), - [anon_sym___attribute__] = ACTIONS(2070), - [anon_sym___declspec] = ACTIONS(2070), - [anon_sym___cdecl] = ACTIONS(2070), - [anon_sym___clrcall] = ACTIONS(2070), - [anon_sym___stdcall] = ACTIONS(2070), - [anon_sym___fastcall] = ACTIONS(2070), - [anon_sym___thiscall] = ACTIONS(2070), - [anon_sym___vectorcall] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_auto] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_volatile] = ACTIONS(2070), - [anon_sym_restrict] = ACTIONS(2070), - [anon_sym__Atomic] = ACTIONS(2070), - [anon_sym_in] = ACTIONS(2070), - [anon_sym_out] = ACTIONS(2070), - [anon_sym_inout] = ACTIONS(2070), - [anon_sym_bycopy] = ACTIONS(2070), - [anon_sym_byref] = ACTIONS(2070), - [anon_sym_oneway] = ACTIONS(2070), - [anon_sym__Nullable] = ACTIONS(2070), - [anon_sym__Nonnull] = ACTIONS(2070), - [anon_sym__Nullable_result] = ACTIONS(2070), - [anon_sym__Null_unspecified] = ACTIONS(2070), - [anon_sym___autoreleasing] = ACTIONS(2070), - [anon_sym___nullable] = ACTIONS(2070), - [anon_sym___nonnull] = ACTIONS(2070), - [anon_sym___strong] = ACTIONS(2070), - [anon_sym___weak] = ACTIONS(2070), - [anon_sym___bridge] = ACTIONS(2070), - [anon_sym___bridge_transfer] = ACTIONS(2070), - [anon_sym___bridge_retained] = ACTIONS(2070), - [anon_sym___unsafe_unretained] = ACTIONS(2070), - [anon_sym___block] = ACTIONS(2070), - [anon_sym___kindof] = ACTIONS(2070), - [anon_sym___unused] = ACTIONS(2070), - [anon_sym__Complex] = ACTIONS(2070), - [anon_sym___complex] = ACTIONS(2070), - [anon_sym_IBOutlet] = ACTIONS(2070), - [anon_sym_IBInspectable] = ACTIONS(2070), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2070), - [anon_sym_signed] = ACTIONS(2070), - [anon_sym_unsigned] = ACTIONS(2070), - [anon_sym_long] = ACTIONS(2070), - [anon_sym_short] = ACTIONS(2070), - [sym_primitive_type] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_NS_ENUM] = ACTIONS(2070), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2070), - [anon_sym_NS_OPTIONS] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_case] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_goto] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_sizeof] = ACTIONS(2070), - [sym_number_literal] = ACTIONS(2072), - [anon_sym_L_SQUOTE] = ACTIONS(2072), - [anon_sym_u_SQUOTE] = ACTIONS(2072), - [anon_sym_U_SQUOTE] = ACTIONS(2072), - [anon_sym_u8_SQUOTE] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_L_DQUOTE] = ACTIONS(2072), - [anon_sym_u_DQUOTE] = ACTIONS(2072), - [anon_sym_U_DQUOTE] = ACTIONS(2072), - [anon_sym_u8_DQUOTE] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym_true] = ACTIONS(2070), - [sym_false] = ACTIONS(2070), - [sym_null] = ACTIONS(2070), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2072), - [anon_sym_ATimport] = ACTIONS(2072), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2070), - [anon_sym_ATcompatibility_alias] = ACTIONS(2072), - [anon_sym_ATprotocol] = ACTIONS(2072), - [anon_sym_ATclass] = ACTIONS(2072), - [anon_sym_ATinterface] = ACTIONS(2072), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2070), - [sym_method_attribute_specifier] = ACTIONS(2070), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2070), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE] = ACTIONS(2070), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_API_AVAILABLE] = ACTIONS(2070), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_API_DEPRECATED] = ACTIONS(2070), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2070), - [anon_sym___deprecated_msg] = ACTIONS(2070), - [anon_sym___deprecated_enum_msg] = ACTIONS(2070), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2070), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2070), - [anon_sym_ATimplementation] = ACTIONS(2072), - [anon_sym_typeof] = ACTIONS(2070), - [anon_sym___typeof] = ACTIONS(2070), - [anon_sym___typeof__] = ACTIONS(2070), - [sym_self] = ACTIONS(2070), - [sym_super] = ACTIONS(2070), - [sym_nil] = ACTIONS(2070), - [sym_id] = ACTIONS(2070), - [sym_instancetype] = ACTIONS(2070), - [sym_Class] = ACTIONS(2070), - [sym_SEL] = ACTIONS(2070), - [sym_IMP] = ACTIONS(2070), - [sym_BOOL] = ACTIONS(2070), - [sym_auto] = ACTIONS(2070), - [anon_sym_ATautoreleasepool] = ACTIONS(2072), - [anon_sym_ATsynchronized] = ACTIONS(2072), - [anon_sym_ATtry] = ACTIONS(2072), - [anon_sym_ATthrow] = ACTIONS(2072), - [anon_sym_ATselector] = ACTIONS(2072), - [anon_sym_ATencode] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2070), - [sym_YES] = ACTIONS(2070), - [sym_NO] = ACTIONS(2070), - [anon_sym___builtin_available] = ACTIONS(2070), - [anon_sym_ATavailable] = ACTIONS(2072), - [anon_sym_va_arg] = ACTIONS(2070), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [928] = { - [ts_builtin_sym_end] = ACTIONS(2072), - [sym_identifier] = ACTIONS(2070), - [aux_sym_preproc_include_token1] = ACTIONS(2072), - [aux_sym_preproc_def_token1] = ACTIONS(2072), - [aux_sym_preproc_if_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2070), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym___attribute] = ACTIONS(2070), - [anon_sym___attribute__] = ACTIONS(2070), - [anon_sym___declspec] = ACTIONS(2070), - [anon_sym___cdecl] = ACTIONS(2070), - [anon_sym___clrcall] = ACTIONS(2070), - [anon_sym___stdcall] = ACTIONS(2070), - [anon_sym___fastcall] = ACTIONS(2070), - [anon_sym___thiscall] = ACTIONS(2070), - [anon_sym___vectorcall] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_auto] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_volatile] = ACTIONS(2070), - [anon_sym_restrict] = ACTIONS(2070), - [anon_sym__Atomic] = ACTIONS(2070), - [anon_sym_in] = ACTIONS(2070), - [anon_sym_out] = ACTIONS(2070), - [anon_sym_inout] = ACTIONS(2070), - [anon_sym_bycopy] = ACTIONS(2070), - [anon_sym_byref] = ACTIONS(2070), - [anon_sym_oneway] = ACTIONS(2070), - [anon_sym__Nullable] = ACTIONS(2070), - [anon_sym__Nonnull] = ACTIONS(2070), - [anon_sym__Nullable_result] = ACTIONS(2070), - [anon_sym__Null_unspecified] = ACTIONS(2070), - [anon_sym___autoreleasing] = ACTIONS(2070), - [anon_sym___nullable] = ACTIONS(2070), - [anon_sym___nonnull] = ACTIONS(2070), - [anon_sym___strong] = ACTIONS(2070), - [anon_sym___weak] = ACTIONS(2070), - [anon_sym___bridge] = ACTIONS(2070), - [anon_sym___bridge_transfer] = ACTIONS(2070), - [anon_sym___bridge_retained] = ACTIONS(2070), - [anon_sym___unsafe_unretained] = ACTIONS(2070), - [anon_sym___block] = ACTIONS(2070), - [anon_sym___kindof] = ACTIONS(2070), - [anon_sym___unused] = ACTIONS(2070), - [anon_sym__Complex] = ACTIONS(2070), - [anon_sym___complex] = ACTIONS(2070), - [anon_sym_IBOutlet] = ACTIONS(2070), - [anon_sym_IBInspectable] = ACTIONS(2070), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2070), - [anon_sym_signed] = ACTIONS(2070), - [anon_sym_unsigned] = ACTIONS(2070), - [anon_sym_long] = ACTIONS(2070), - [anon_sym_short] = ACTIONS(2070), - [sym_primitive_type] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_NS_ENUM] = ACTIONS(2070), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2070), - [anon_sym_NS_OPTIONS] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_case] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_goto] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_sizeof] = ACTIONS(2070), - [sym_number_literal] = ACTIONS(2072), - [anon_sym_L_SQUOTE] = ACTIONS(2072), - [anon_sym_u_SQUOTE] = ACTIONS(2072), - [anon_sym_U_SQUOTE] = ACTIONS(2072), - [anon_sym_u8_SQUOTE] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_L_DQUOTE] = ACTIONS(2072), - [anon_sym_u_DQUOTE] = ACTIONS(2072), - [anon_sym_U_DQUOTE] = ACTIONS(2072), - [anon_sym_u8_DQUOTE] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym_true] = ACTIONS(2070), - [sym_false] = ACTIONS(2070), - [sym_null] = ACTIONS(2070), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2072), - [anon_sym_ATimport] = ACTIONS(2072), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2070), - [anon_sym_ATcompatibility_alias] = ACTIONS(2072), - [anon_sym_ATprotocol] = ACTIONS(2072), - [anon_sym_ATclass] = ACTIONS(2072), - [anon_sym_ATinterface] = ACTIONS(2072), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2070), - [sym_method_attribute_specifier] = ACTIONS(2070), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2070), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE] = ACTIONS(2070), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_API_AVAILABLE] = ACTIONS(2070), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_API_DEPRECATED] = ACTIONS(2070), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2070), - [anon_sym___deprecated_msg] = ACTIONS(2070), - [anon_sym___deprecated_enum_msg] = ACTIONS(2070), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2070), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2070), - [anon_sym_ATimplementation] = ACTIONS(2072), - [anon_sym_typeof] = ACTIONS(2070), - [anon_sym___typeof] = ACTIONS(2070), - [anon_sym___typeof__] = ACTIONS(2070), - [sym_self] = ACTIONS(2070), - [sym_super] = ACTIONS(2070), - [sym_nil] = ACTIONS(2070), - [sym_id] = ACTIONS(2070), - [sym_instancetype] = ACTIONS(2070), - [sym_Class] = ACTIONS(2070), - [sym_SEL] = ACTIONS(2070), - [sym_IMP] = ACTIONS(2070), - [sym_BOOL] = ACTIONS(2070), - [sym_auto] = ACTIONS(2070), - [anon_sym_ATautoreleasepool] = ACTIONS(2072), - [anon_sym_ATsynchronized] = ACTIONS(2072), - [anon_sym_ATtry] = ACTIONS(2072), - [anon_sym_ATthrow] = ACTIONS(2072), - [anon_sym_ATselector] = ACTIONS(2072), - [anon_sym_ATencode] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2070), - [sym_YES] = ACTIONS(2070), - [sym_NO] = ACTIONS(2070), - [anon_sym___builtin_available] = ACTIONS(2070), - [anon_sym_ATavailable] = ACTIONS(2072), - [anon_sym_va_arg] = ACTIONS(2070), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [929] = { - [ts_builtin_sym_end] = ACTIONS(1868), - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_RBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [930] = { - [ts_builtin_sym_end] = ACTIONS(1868), - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_RBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [931] = { - [ts_builtin_sym_end] = ACTIONS(2072), - [sym_identifier] = ACTIONS(2070), - [aux_sym_preproc_include_token1] = ACTIONS(2072), - [aux_sym_preproc_def_token1] = ACTIONS(2072), - [aux_sym_preproc_if_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2070), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym___attribute] = ACTIONS(2070), - [anon_sym___attribute__] = ACTIONS(2070), - [anon_sym___declspec] = ACTIONS(2070), - [anon_sym___cdecl] = ACTIONS(2070), - [anon_sym___clrcall] = ACTIONS(2070), - [anon_sym___stdcall] = ACTIONS(2070), - [anon_sym___fastcall] = ACTIONS(2070), - [anon_sym___thiscall] = ACTIONS(2070), - [anon_sym___vectorcall] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_auto] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_volatile] = ACTIONS(2070), - [anon_sym_restrict] = ACTIONS(2070), - [anon_sym__Atomic] = ACTIONS(2070), - [anon_sym_in] = ACTIONS(2070), - [anon_sym_out] = ACTIONS(2070), - [anon_sym_inout] = ACTIONS(2070), - [anon_sym_bycopy] = ACTIONS(2070), - [anon_sym_byref] = ACTIONS(2070), - [anon_sym_oneway] = ACTIONS(2070), - [anon_sym__Nullable] = ACTIONS(2070), - [anon_sym__Nonnull] = ACTIONS(2070), - [anon_sym__Nullable_result] = ACTIONS(2070), - [anon_sym__Null_unspecified] = ACTIONS(2070), - [anon_sym___autoreleasing] = ACTIONS(2070), - [anon_sym___nullable] = ACTIONS(2070), - [anon_sym___nonnull] = ACTIONS(2070), - [anon_sym___strong] = ACTIONS(2070), - [anon_sym___weak] = ACTIONS(2070), - [anon_sym___bridge] = ACTIONS(2070), - [anon_sym___bridge_transfer] = ACTIONS(2070), - [anon_sym___bridge_retained] = ACTIONS(2070), - [anon_sym___unsafe_unretained] = ACTIONS(2070), - [anon_sym___block] = ACTIONS(2070), - [anon_sym___kindof] = ACTIONS(2070), - [anon_sym___unused] = ACTIONS(2070), - [anon_sym__Complex] = ACTIONS(2070), - [anon_sym___complex] = ACTIONS(2070), - [anon_sym_IBOutlet] = ACTIONS(2070), - [anon_sym_IBInspectable] = ACTIONS(2070), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2070), - [anon_sym_signed] = ACTIONS(2070), - [anon_sym_unsigned] = ACTIONS(2070), - [anon_sym_long] = ACTIONS(2070), - [anon_sym_short] = ACTIONS(2070), - [sym_primitive_type] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_NS_ENUM] = ACTIONS(2070), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2070), - [anon_sym_NS_OPTIONS] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_case] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_goto] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_sizeof] = ACTIONS(2070), - [sym_number_literal] = ACTIONS(2072), - [anon_sym_L_SQUOTE] = ACTIONS(2072), - [anon_sym_u_SQUOTE] = ACTIONS(2072), - [anon_sym_U_SQUOTE] = ACTIONS(2072), - [anon_sym_u8_SQUOTE] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_L_DQUOTE] = ACTIONS(2072), - [anon_sym_u_DQUOTE] = ACTIONS(2072), - [anon_sym_U_DQUOTE] = ACTIONS(2072), - [anon_sym_u8_DQUOTE] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym_true] = ACTIONS(2070), - [sym_false] = ACTIONS(2070), - [sym_null] = ACTIONS(2070), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2072), - [anon_sym_ATimport] = ACTIONS(2072), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2070), - [anon_sym_ATcompatibility_alias] = ACTIONS(2072), - [anon_sym_ATprotocol] = ACTIONS(2072), - [anon_sym_ATclass] = ACTIONS(2072), - [anon_sym_ATinterface] = ACTIONS(2072), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2070), - [sym_method_attribute_specifier] = ACTIONS(2070), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2070), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE] = ACTIONS(2070), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_API_AVAILABLE] = ACTIONS(2070), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_API_DEPRECATED] = ACTIONS(2070), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2070), - [anon_sym___deprecated_msg] = ACTIONS(2070), - [anon_sym___deprecated_enum_msg] = ACTIONS(2070), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2070), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2070), - [anon_sym_ATimplementation] = ACTIONS(2072), - [anon_sym_typeof] = ACTIONS(2070), - [anon_sym___typeof] = ACTIONS(2070), - [anon_sym___typeof__] = ACTIONS(2070), - [sym_self] = ACTIONS(2070), - [sym_super] = ACTIONS(2070), - [sym_nil] = ACTIONS(2070), - [sym_id] = ACTIONS(2070), - [sym_instancetype] = ACTIONS(2070), - [sym_Class] = ACTIONS(2070), - [sym_SEL] = ACTIONS(2070), - [sym_IMP] = ACTIONS(2070), - [sym_BOOL] = ACTIONS(2070), - [sym_auto] = ACTIONS(2070), - [anon_sym_ATautoreleasepool] = ACTIONS(2072), - [anon_sym_ATsynchronized] = ACTIONS(2072), - [anon_sym_ATtry] = ACTIONS(2072), - [anon_sym_ATthrow] = ACTIONS(2072), - [anon_sym_ATselector] = ACTIONS(2072), - [anon_sym_ATencode] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2070), - [sym_YES] = ACTIONS(2070), - [sym_NO] = ACTIONS(2070), - [anon_sym___builtin_available] = ACTIONS(2070), - [anon_sym_ATavailable] = ACTIONS(2072), - [anon_sym_va_arg] = ACTIONS(2070), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [932] = { - [ts_builtin_sym_end] = ACTIONS(1868), - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_RBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [933] = { - [ts_builtin_sym_end] = ACTIONS(1872), - [sym_identifier] = ACTIONS(1870), - [aux_sym_preproc_include_token1] = ACTIONS(1872), - [aux_sym_preproc_def_token1] = ACTIONS(1872), - [aux_sym_preproc_if_token1] = ACTIONS(1870), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1870), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1872), - [anon_sym_BANG] = ACTIONS(1872), - [anon_sym_TILDE] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1872), - [anon_sym_CARET] = ACTIONS(1872), - [anon_sym_AMP] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1872), - [anon_sym_typedef] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(1870), - [anon_sym___attribute] = ACTIONS(1870), - [anon_sym___attribute__] = ACTIONS(1870), - [anon_sym___declspec] = ACTIONS(1870), - [anon_sym___cdecl] = ACTIONS(1870), - [anon_sym___clrcall] = ACTIONS(1870), - [anon_sym___stdcall] = ACTIONS(1870), - [anon_sym___fastcall] = ACTIONS(1870), - [anon_sym___thiscall] = ACTIONS(1870), - [anon_sym___vectorcall] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_RBRACE] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1870), - [anon_sym_auto] = ACTIONS(1870), - [anon_sym_register] = ACTIONS(1870), - [anon_sym_inline] = ACTIONS(1870), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1870), - [anon_sym_const] = ACTIONS(1870), - [anon_sym_volatile] = ACTIONS(1870), - [anon_sym_restrict] = ACTIONS(1870), - [anon_sym__Atomic] = ACTIONS(1870), - [anon_sym_in] = ACTIONS(1870), - [anon_sym_out] = ACTIONS(1870), - [anon_sym_inout] = ACTIONS(1870), - [anon_sym_bycopy] = ACTIONS(1870), - [anon_sym_byref] = ACTIONS(1870), - [anon_sym_oneway] = ACTIONS(1870), - [anon_sym__Nullable] = ACTIONS(1870), - [anon_sym__Nonnull] = ACTIONS(1870), - [anon_sym__Nullable_result] = ACTIONS(1870), - [anon_sym__Null_unspecified] = ACTIONS(1870), - [anon_sym___autoreleasing] = ACTIONS(1870), - [anon_sym___nullable] = ACTIONS(1870), - [anon_sym___nonnull] = ACTIONS(1870), - [anon_sym___strong] = ACTIONS(1870), - [anon_sym___weak] = ACTIONS(1870), - [anon_sym___bridge] = ACTIONS(1870), - [anon_sym___bridge_transfer] = ACTIONS(1870), - [anon_sym___bridge_retained] = ACTIONS(1870), - [anon_sym___unsafe_unretained] = ACTIONS(1870), - [anon_sym___block] = ACTIONS(1870), - [anon_sym___kindof] = ACTIONS(1870), - [anon_sym___unused] = ACTIONS(1870), - [anon_sym__Complex] = ACTIONS(1870), - [anon_sym___complex] = ACTIONS(1870), - [anon_sym_IBOutlet] = ACTIONS(1870), - [anon_sym_IBInspectable] = ACTIONS(1870), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1870), - [anon_sym_signed] = ACTIONS(1870), - [anon_sym_unsigned] = ACTIONS(1870), - [anon_sym_long] = ACTIONS(1870), - [anon_sym_short] = ACTIONS(1870), - [sym_primitive_type] = ACTIONS(1870), - [anon_sym_enum] = ACTIONS(1870), - [anon_sym_NS_ENUM] = ACTIONS(1870), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1870), - [anon_sym_NS_OPTIONS] = ACTIONS(1870), - [anon_sym_struct] = ACTIONS(1870), - [anon_sym_union] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(1870), - [anon_sym_switch] = ACTIONS(1870), - [anon_sym_case] = ACTIONS(1870), - [anon_sym_default] = ACTIONS(1870), - [anon_sym_while] = ACTIONS(1870), - [anon_sym_do] = ACTIONS(1870), - [anon_sym_for] = ACTIONS(1870), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1870), - [anon_sym_continue] = ACTIONS(1870), - [anon_sym_goto] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1872), - [anon_sym_PLUS_PLUS] = ACTIONS(1872), - [anon_sym_sizeof] = ACTIONS(1870), - [sym_number_literal] = ACTIONS(1872), - [anon_sym_L_SQUOTE] = ACTIONS(1872), - [anon_sym_u_SQUOTE] = ACTIONS(1872), - [anon_sym_U_SQUOTE] = ACTIONS(1872), - [anon_sym_u8_SQUOTE] = ACTIONS(1872), - [anon_sym_SQUOTE] = ACTIONS(1872), - [anon_sym_L_DQUOTE] = ACTIONS(1872), - [anon_sym_u_DQUOTE] = ACTIONS(1872), - [anon_sym_U_DQUOTE] = ACTIONS(1872), - [anon_sym_u8_DQUOTE] = ACTIONS(1872), - [anon_sym_DQUOTE] = ACTIONS(1872), - [sym_true] = ACTIONS(1870), - [sym_false] = ACTIONS(1870), - [sym_null] = ACTIONS(1870), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1872), - [anon_sym_ATimport] = ACTIONS(1872), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1870), - [anon_sym_ATcompatibility_alias] = ACTIONS(1872), - [anon_sym_ATprotocol] = ACTIONS(1872), - [anon_sym_ATclass] = ACTIONS(1872), - [anon_sym_ATinterface] = ACTIONS(1872), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1870), - [sym_method_attribute_specifier] = ACTIONS(1870), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1870), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1870), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1870), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1870), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1870), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1870), - [anon_sym_NS_AVAILABLE] = ACTIONS(1870), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1870), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_API_AVAILABLE] = ACTIONS(1870), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1870), - [anon_sym_API_DEPRECATED] = ACTIONS(1870), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1870), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1870), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1870), - [anon_sym___deprecated_msg] = ACTIONS(1870), - [anon_sym___deprecated_enum_msg] = ACTIONS(1870), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1870), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1870), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1870), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1870), - [anon_sym_ATimplementation] = ACTIONS(1872), - [anon_sym_typeof] = ACTIONS(1870), - [anon_sym___typeof] = ACTIONS(1870), - [anon_sym___typeof__] = ACTIONS(1870), - [sym_self] = ACTIONS(1870), - [sym_super] = ACTIONS(1870), - [sym_nil] = ACTIONS(1870), - [sym_id] = ACTIONS(1870), - [sym_instancetype] = ACTIONS(1870), - [sym_Class] = ACTIONS(1870), - [sym_SEL] = ACTIONS(1870), - [sym_IMP] = ACTIONS(1870), - [sym_BOOL] = ACTIONS(1870), - [sym_auto] = ACTIONS(1870), - [anon_sym_ATautoreleasepool] = ACTIONS(1872), - [anon_sym_ATsynchronized] = ACTIONS(1872), - [anon_sym_ATtry] = ACTIONS(1872), - [anon_sym_ATthrow] = ACTIONS(1872), - [anon_sym_ATselector] = ACTIONS(1872), - [anon_sym_ATencode] = ACTIONS(1872), - [anon_sym_AT] = ACTIONS(1870), - [sym_YES] = ACTIONS(1870), - [sym_NO] = ACTIONS(1870), - [anon_sym___builtin_available] = ACTIONS(1870), - [anon_sym_ATavailable] = ACTIONS(1872), - [anon_sym_va_arg] = ACTIONS(1870), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [934] = { - [ts_builtin_sym_end] = ACTIONS(1848), - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [935] = { - [ts_builtin_sym_end] = ACTIONS(1940), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_include_token1] = ACTIONS(1940), - [aux_sym_preproc_def_token1] = ACTIONS(1940), - [aux_sym_preproc_if_token1] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1938), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_CARET] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym_typedef] = ACTIONS(1938), - [anon_sym_extern] = ACTIONS(1938), - [anon_sym___attribute] = ACTIONS(1938), - [anon_sym___attribute__] = ACTIONS(1938), - [anon_sym___declspec] = ACTIONS(1938), - [anon_sym___cdecl] = ACTIONS(1938), - [anon_sym___clrcall] = ACTIONS(1938), - [anon_sym___stdcall] = ACTIONS(1938), - [anon_sym___fastcall] = ACTIONS(1938), - [anon_sym___thiscall] = ACTIONS(1938), - [anon_sym___vectorcall] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1940), - [anon_sym_RBRACE] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1938), - [anon_sym_auto] = ACTIONS(1938), - [anon_sym_register] = ACTIONS(1938), - [anon_sym_inline] = ACTIONS(1938), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1938), - [anon_sym_const] = ACTIONS(1938), - [anon_sym_volatile] = ACTIONS(1938), - [anon_sym_restrict] = ACTIONS(1938), - [anon_sym__Atomic] = ACTIONS(1938), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_out] = ACTIONS(1938), - [anon_sym_inout] = ACTIONS(1938), - [anon_sym_bycopy] = ACTIONS(1938), - [anon_sym_byref] = ACTIONS(1938), - [anon_sym_oneway] = ACTIONS(1938), - [anon_sym__Nullable] = ACTIONS(1938), - [anon_sym__Nonnull] = ACTIONS(1938), - [anon_sym__Nullable_result] = ACTIONS(1938), - [anon_sym__Null_unspecified] = ACTIONS(1938), - [anon_sym___autoreleasing] = ACTIONS(1938), - [anon_sym___nullable] = ACTIONS(1938), - [anon_sym___nonnull] = ACTIONS(1938), - [anon_sym___strong] = ACTIONS(1938), - [anon_sym___weak] = ACTIONS(1938), - [anon_sym___bridge] = ACTIONS(1938), - [anon_sym___bridge_transfer] = ACTIONS(1938), - [anon_sym___bridge_retained] = ACTIONS(1938), - [anon_sym___unsafe_unretained] = ACTIONS(1938), - [anon_sym___block] = ACTIONS(1938), - [anon_sym___kindof] = ACTIONS(1938), - [anon_sym___unused] = ACTIONS(1938), - [anon_sym__Complex] = ACTIONS(1938), - [anon_sym___complex] = ACTIONS(1938), - [anon_sym_IBOutlet] = ACTIONS(1938), - [anon_sym_IBInspectable] = ACTIONS(1938), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1938), - [anon_sym_signed] = ACTIONS(1938), - [anon_sym_unsigned] = ACTIONS(1938), - [anon_sym_long] = ACTIONS(1938), - [anon_sym_short] = ACTIONS(1938), - [sym_primitive_type] = ACTIONS(1938), - [anon_sym_enum] = ACTIONS(1938), - [anon_sym_NS_ENUM] = ACTIONS(1938), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1938), - [anon_sym_NS_OPTIONS] = ACTIONS(1938), - [anon_sym_struct] = ACTIONS(1938), - [anon_sym_union] = ACTIONS(1938), - [anon_sym_if] = ACTIONS(1938), - [anon_sym_switch] = ACTIONS(1938), - [anon_sym_case] = ACTIONS(1938), - [anon_sym_default] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1938), - [anon_sym_do] = ACTIONS(1938), - [anon_sym_for] = ACTIONS(1938), - [anon_sym_return] = ACTIONS(1938), - [anon_sym_break] = ACTIONS(1938), - [anon_sym_continue] = ACTIONS(1938), - [anon_sym_goto] = ACTIONS(1938), - [anon_sym_DASH_DASH] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1940), - [anon_sym_sizeof] = ACTIONS(1938), - [sym_number_literal] = ACTIONS(1940), - [anon_sym_L_SQUOTE] = ACTIONS(1940), - [anon_sym_u_SQUOTE] = ACTIONS(1940), - [anon_sym_U_SQUOTE] = ACTIONS(1940), - [anon_sym_u8_SQUOTE] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_L_DQUOTE] = ACTIONS(1940), - [anon_sym_u_DQUOTE] = ACTIONS(1940), - [anon_sym_U_DQUOTE] = ACTIONS(1940), - [anon_sym_u8_DQUOTE] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1940), - [sym_true] = ACTIONS(1938), - [sym_false] = ACTIONS(1938), - [sym_null] = ACTIONS(1938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1940), - [anon_sym_ATimport] = ACTIONS(1940), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1938), - [anon_sym_ATcompatibility_alias] = ACTIONS(1940), - [anon_sym_ATprotocol] = ACTIONS(1940), - [anon_sym_ATclass] = ACTIONS(1940), - [anon_sym_ATinterface] = ACTIONS(1940), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1938), - [sym_method_attribute_specifier] = ACTIONS(1938), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1938), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1938), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1938), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1938), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1938), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1938), - [anon_sym_NS_AVAILABLE] = ACTIONS(1938), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1938), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1938), - [anon_sym_API_AVAILABLE] = ACTIONS(1938), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1938), - [anon_sym_API_DEPRECATED] = ACTIONS(1938), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1938), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1938), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1938), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1938), - [anon_sym___deprecated_msg] = ACTIONS(1938), - [anon_sym___deprecated_enum_msg] = ACTIONS(1938), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1938), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1938), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1938), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1938), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1938), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1938), - [anon_sym_ATimplementation] = ACTIONS(1940), - [anon_sym_typeof] = ACTIONS(1938), - [anon_sym___typeof] = ACTIONS(1938), - [anon_sym___typeof__] = ACTIONS(1938), - [sym_self] = ACTIONS(1938), - [sym_super] = ACTIONS(1938), - [sym_nil] = ACTIONS(1938), - [sym_id] = ACTIONS(1938), - [sym_instancetype] = ACTIONS(1938), - [sym_Class] = ACTIONS(1938), - [sym_SEL] = ACTIONS(1938), - [sym_IMP] = ACTIONS(1938), - [sym_BOOL] = ACTIONS(1938), - [sym_auto] = ACTIONS(1938), - [anon_sym_ATautoreleasepool] = ACTIONS(1940), - [anon_sym_ATsynchronized] = ACTIONS(1940), - [anon_sym_ATtry] = ACTIONS(1940), - [anon_sym_ATthrow] = ACTIONS(1940), - [anon_sym_ATselector] = ACTIONS(1940), - [anon_sym_ATencode] = ACTIONS(1940), - [anon_sym_AT] = ACTIONS(1938), - [sym_YES] = ACTIONS(1938), - [sym_NO] = ACTIONS(1938), - [anon_sym___builtin_available] = ACTIONS(1938), - [anon_sym_ATavailable] = ACTIONS(1940), - [anon_sym_va_arg] = ACTIONS(1938), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [936] = { - [ts_builtin_sym_end] = ACTIONS(2072), - [sym_identifier] = ACTIONS(2070), - [aux_sym_preproc_include_token1] = ACTIONS(2072), - [aux_sym_preproc_def_token1] = ACTIONS(2072), - [aux_sym_preproc_if_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2070), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym___attribute] = ACTIONS(2070), - [anon_sym___attribute__] = ACTIONS(2070), - [anon_sym___declspec] = ACTIONS(2070), - [anon_sym___cdecl] = ACTIONS(2070), - [anon_sym___clrcall] = ACTIONS(2070), - [anon_sym___stdcall] = ACTIONS(2070), - [anon_sym___fastcall] = ACTIONS(2070), - [anon_sym___thiscall] = ACTIONS(2070), - [anon_sym___vectorcall] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_RBRACE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_auto] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_volatile] = ACTIONS(2070), - [anon_sym_restrict] = ACTIONS(2070), - [anon_sym__Atomic] = ACTIONS(2070), - [anon_sym_in] = ACTIONS(2070), - [anon_sym_out] = ACTIONS(2070), - [anon_sym_inout] = ACTIONS(2070), - [anon_sym_bycopy] = ACTIONS(2070), - [anon_sym_byref] = ACTIONS(2070), - [anon_sym_oneway] = ACTIONS(2070), - [anon_sym__Nullable] = ACTIONS(2070), - [anon_sym__Nonnull] = ACTIONS(2070), - [anon_sym__Nullable_result] = ACTIONS(2070), - [anon_sym__Null_unspecified] = ACTIONS(2070), - [anon_sym___autoreleasing] = ACTIONS(2070), - [anon_sym___nullable] = ACTIONS(2070), - [anon_sym___nonnull] = ACTIONS(2070), - [anon_sym___strong] = ACTIONS(2070), - [anon_sym___weak] = ACTIONS(2070), - [anon_sym___bridge] = ACTIONS(2070), - [anon_sym___bridge_transfer] = ACTIONS(2070), - [anon_sym___bridge_retained] = ACTIONS(2070), - [anon_sym___unsafe_unretained] = ACTIONS(2070), - [anon_sym___block] = ACTIONS(2070), - [anon_sym___kindof] = ACTIONS(2070), - [anon_sym___unused] = ACTIONS(2070), - [anon_sym__Complex] = ACTIONS(2070), - [anon_sym___complex] = ACTIONS(2070), - [anon_sym_IBOutlet] = ACTIONS(2070), - [anon_sym_IBInspectable] = ACTIONS(2070), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2070), - [anon_sym_signed] = ACTIONS(2070), - [anon_sym_unsigned] = ACTIONS(2070), - [anon_sym_long] = ACTIONS(2070), - [anon_sym_short] = ACTIONS(2070), - [sym_primitive_type] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_NS_ENUM] = ACTIONS(2070), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2070), - [anon_sym_NS_OPTIONS] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_case] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_goto] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_sizeof] = ACTIONS(2070), - [sym_number_literal] = ACTIONS(2072), - [anon_sym_L_SQUOTE] = ACTIONS(2072), - [anon_sym_u_SQUOTE] = ACTIONS(2072), - [anon_sym_U_SQUOTE] = ACTIONS(2072), - [anon_sym_u8_SQUOTE] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_L_DQUOTE] = ACTIONS(2072), - [anon_sym_u_DQUOTE] = ACTIONS(2072), - [anon_sym_U_DQUOTE] = ACTIONS(2072), - [anon_sym_u8_DQUOTE] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym_true] = ACTIONS(2070), - [sym_false] = ACTIONS(2070), - [sym_null] = ACTIONS(2070), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2072), - [anon_sym_ATimport] = ACTIONS(2072), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2070), - [anon_sym_ATcompatibility_alias] = ACTIONS(2072), - [anon_sym_ATprotocol] = ACTIONS(2072), - [anon_sym_ATclass] = ACTIONS(2072), - [anon_sym_ATinterface] = ACTIONS(2072), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2070), - [sym_method_attribute_specifier] = ACTIONS(2070), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2070), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE] = ACTIONS(2070), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_API_AVAILABLE] = ACTIONS(2070), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_API_DEPRECATED] = ACTIONS(2070), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2070), - [anon_sym___deprecated_msg] = ACTIONS(2070), - [anon_sym___deprecated_enum_msg] = ACTIONS(2070), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2070), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2070), - [anon_sym_ATimplementation] = ACTIONS(2072), - [anon_sym_typeof] = ACTIONS(2070), - [anon_sym___typeof] = ACTIONS(2070), - [anon_sym___typeof__] = ACTIONS(2070), - [sym_self] = ACTIONS(2070), - [sym_super] = ACTIONS(2070), - [sym_nil] = ACTIONS(2070), - [sym_id] = ACTIONS(2070), - [sym_instancetype] = ACTIONS(2070), - [sym_Class] = ACTIONS(2070), - [sym_SEL] = ACTIONS(2070), - [sym_IMP] = ACTIONS(2070), - [sym_BOOL] = ACTIONS(2070), - [sym_auto] = ACTIONS(2070), - [anon_sym_ATautoreleasepool] = ACTIONS(2072), - [anon_sym_ATsynchronized] = ACTIONS(2072), - [anon_sym_ATtry] = ACTIONS(2072), - [anon_sym_ATthrow] = ACTIONS(2072), - [anon_sym_ATselector] = ACTIONS(2072), - [anon_sym_ATencode] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2070), - [sym_YES] = ACTIONS(2070), - [sym_NO] = ACTIONS(2070), - [anon_sym___builtin_available] = ACTIONS(2070), - [anon_sym_ATavailable] = ACTIONS(2072), - [anon_sym_va_arg] = ACTIONS(2070), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [937] = { - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [938] = { - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [939] = { - [ts_builtin_sym_end] = ACTIONS(1848), - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [940] = { - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [941] = { - [ts_builtin_sym_end] = ACTIONS(1848), - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [942] = { - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [943] = { - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [944] = { - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [945] = { - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [946] = { - [ts_builtin_sym_end] = ACTIONS(1848), - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [947] = { - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [948] = { - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [949] = { - [ts_builtin_sym_end] = ACTIONS(1868), - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_RBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [950] = { - [ts_builtin_sym_end] = ACTIONS(1932), - [sym_identifier] = ACTIONS(1930), - [aux_sym_preproc_include_token1] = ACTIONS(1932), - [aux_sym_preproc_def_token1] = ACTIONS(1932), - [aux_sym_preproc_if_token1] = ACTIONS(1930), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1930), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1930), - [anon_sym_LPAREN2] = ACTIONS(1932), - [anon_sym_BANG] = ACTIONS(1932), - [anon_sym_TILDE] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1932), - [anon_sym_CARET] = ACTIONS(1932), - [anon_sym_AMP] = ACTIONS(1932), - [anon_sym_SEMI] = ACTIONS(1932), - [anon_sym_typedef] = ACTIONS(1930), - [anon_sym_extern] = ACTIONS(1930), - [anon_sym___attribute] = ACTIONS(1930), - [anon_sym___attribute__] = ACTIONS(1930), - [anon_sym___declspec] = ACTIONS(1930), - [anon_sym___cdecl] = ACTIONS(1930), - [anon_sym___clrcall] = ACTIONS(1930), - [anon_sym___stdcall] = ACTIONS(1930), - [anon_sym___fastcall] = ACTIONS(1930), - [anon_sym___thiscall] = ACTIONS(1930), - [anon_sym___vectorcall] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1932), - [anon_sym_RBRACE] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1932), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_auto] = ACTIONS(1930), - [anon_sym_register] = ACTIONS(1930), - [anon_sym_inline] = ACTIONS(1930), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_volatile] = ACTIONS(1930), - [anon_sym_restrict] = ACTIONS(1930), - [anon_sym__Atomic] = ACTIONS(1930), - [anon_sym_in] = ACTIONS(1930), - [anon_sym_out] = ACTIONS(1930), - [anon_sym_inout] = ACTIONS(1930), - [anon_sym_bycopy] = ACTIONS(1930), - [anon_sym_byref] = ACTIONS(1930), - [anon_sym_oneway] = ACTIONS(1930), - [anon_sym__Nullable] = ACTIONS(1930), - [anon_sym__Nonnull] = ACTIONS(1930), - [anon_sym__Nullable_result] = ACTIONS(1930), - [anon_sym__Null_unspecified] = ACTIONS(1930), - [anon_sym___autoreleasing] = ACTIONS(1930), - [anon_sym___nullable] = ACTIONS(1930), - [anon_sym___nonnull] = ACTIONS(1930), - [anon_sym___strong] = ACTIONS(1930), - [anon_sym___weak] = ACTIONS(1930), - [anon_sym___bridge] = ACTIONS(1930), - [anon_sym___bridge_transfer] = ACTIONS(1930), - [anon_sym___bridge_retained] = ACTIONS(1930), - [anon_sym___unsafe_unretained] = ACTIONS(1930), - [anon_sym___block] = ACTIONS(1930), - [anon_sym___kindof] = ACTIONS(1930), - [anon_sym___unused] = ACTIONS(1930), - [anon_sym__Complex] = ACTIONS(1930), - [anon_sym___complex] = ACTIONS(1930), - [anon_sym_IBOutlet] = ACTIONS(1930), - [anon_sym_IBInspectable] = ACTIONS(1930), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1930), - [anon_sym_signed] = ACTIONS(1930), - [anon_sym_unsigned] = ACTIONS(1930), - [anon_sym_long] = ACTIONS(1930), - [anon_sym_short] = ACTIONS(1930), - [sym_primitive_type] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_NS_ENUM] = ACTIONS(1930), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1930), - [anon_sym_NS_OPTIONS] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_switch] = ACTIONS(1930), - [anon_sym_case] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [anon_sym_do] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_goto] = ACTIONS(1930), - [anon_sym_DASH_DASH] = ACTIONS(1932), - [anon_sym_PLUS_PLUS] = ACTIONS(1932), - [anon_sym_sizeof] = ACTIONS(1930), - [sym_number_literal] = ACTIONS(1932), - [anon_sym_L_SQUOTE] = ACTIONS(1932), - [anon_sym_u_SQUOTE] = ACTIONS(1932), - [anon_sym_U_SQUOTE] = ACTIONS(1932), - [anon_sym_u8_SQUOTE] = ACTIONS(1932), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_L_DQUOTE] = ACTIONS(1932), - [anon_sym_u_DQUOTE] = ACTIONS(1932), - [anon_sym_U_DQUOTE] = ACTIONS(1932), - [anon_sym_u8_DQUOTE] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1932), - [anon_sym_ATimport] = ACTIONS(1932), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1930), - [anon_sym_ATcompatibility_alias] = ACTIONS(1932), - [anon_sym_ATprotocol] = ACTIONS(1932), - [anon_sym_ATclass] = ACTIONS(1932), - [anon_sym_ATinterface] = ACTIONS(1932), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1930), - [sym_method_attribute_specifier] = ACTIONS(1930), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1930), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1930), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1930), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1930), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1930), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1930), - [anon_sym_NS_AVAILABLE] = ACTIONS(1930), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1930), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1930), - [anon_sym_API_AVAILABLE] = ACTIONS(1930), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1930), - [anon_sym_API_DEPRECATED] = ACTIONS(1930), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1930), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1930), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1930), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1930), - [anon_sym___deprecated_msg] = ACTIONS(1930), - [anon_sym___deprecated_enum_msg] = ACTIONS(1930), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1930), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1930), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1930), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1930), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1930), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1930), - [anon_sym_ATimplementation] = ACTIONS(1932), - [anon_sym_typeof] = ACTIONS(1930), - [anon_sym___typeof] = ACTIONS(1930), - [anon_sym___typeof__] = ACTIONS(1930), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_nil] = ACTIONS(1930), - [sym_id] = ACTIONS(1930), - [sym_instancetype] = ACTIONS(1930), - [sym_Class] = ACTIONS(1930), - [sym_SEL] = ACTIONS(1930), - [sym_IMP] = ACTIONS(1930), - [sym_BOOL] = ACTIONS(1930), - [sym_auto] = ACTIONS(1930), - [anon_sym_ATautoreleasepool] = ACTIONS(1932), - [anon_sym_ATsynchronized] = ACTIONS(1932), - [anon_sym_ATtry] = ACTIONS(1932), - [anon_sym_ATthrow] = ACTIONS(1932), - [anon_sym_ATselector] = ACTIONS(1932), - [anon_sym_ATencode] = ACTIONS(1932), - [anon_sym_AT] = ACTIONS(1930), - [sym_YES] = ACTIONS(1930), - [sym_NO] = ACTIONS(1930), - [anon_sym___builtin_available] = ACTIONS(1930), - [anon_sym_ATavailable] = ACTIONS(1932), - [anon_sym_va_arg] = ACTIONS(1930), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [951] = { - [ts_builtin_sym_end] = ACTIONS(1928), - [sym_identifier] = ACTIONS(1926), - [aux_sym_preproc_include_token1] = ACTIONS(1928), - [aux_sym_preproc_def_token1] = ACTIONS(1928), - [aux_sym_preproc_if_token1] = ACTIONS(1926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1926), - [anon_sym_LPAREN2] = ACTIONS(1928), - [anon_sym_BANG] = ACTIONS(1928), - [anon_sym_TILDE] = ACTIONS(1928), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_STAR] = ACTIONS(1928), - [anon_sym_CARET] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1928), - [anon_sym_typedef] = ACTIONS(1926), - [anon_sym_extern] = ACTIONS(1926), - [anon_sym___attribute] = ACTIONS(1926), - [anon_sym___attribute__] = ACTIONS(1926), - [anon_sym___declspec] = ACTIONS(1926), - [anon_sym___cdecl] = ACTIONS(1926), - [anon_sym___clrcall] = ACTIONS(1926), - [anon_sym___stdcall] = ACTIONS(1926), - [anon_sym___fastcall] = ACTIONS(1926), - [anon_sym___thiscall] = ACTIONS(1926), - [anon_sym___vectorcall] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1928), - [anon_sym_RBRACE] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_static] = ACTIONS(1926), - [anon_sym_auto] = ACTIONS(1926), - [anon_sym_register] = ACTIONS(1926), - [anon_sym_inline] = ACTIONS(1926), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1926), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_volatile] = ACTIONS(1926), - [anon_sym_restrict] = ACTIONS(1926), - [anon_sym__Atomic] = ACTIONS(1926), - [anon_sym_in] = ACTIONS(1926), - [anon_sym_out] = ACTIONS(1926), - [anon_sym_inout] = ACTIONS(1926), - [anon_sym_bycopy] = ACTIONS(1926), - [anon_sym_byref] = ACTIONS(1926), - [anon_sym_oneway] = ACTIONS(1926), - [anon_sym__Nullable] = ACTIONS(1926), - [anon_sym__Nonnull] = ACTIONS(1926), - [anon_sym__Nullable_result] = ACTIONS(1926), - [anon_sym__Null_unspecified] = ACTIONS(1926), - [anon_sym___autoreleasing] = ACTIONS(1926), - [anon_sym___nullable] = ACTIONS(1926), - [anon_sym___nonnull] = ACTIONS(1926), - [anon_sym___strong] = ACTIONS(1926), - [anon_sym___weak] = ACTIONS(1926), - [anon_sym___bridge] = ACTIONS(1926), - [anon_sym___bridge_transfer] = ACTIONS(1926), - [anon_sym___bridge_retained] = ACTIONS(1926), - [anon_sym___unsafe_unretained] = ACTIONS(1926), - [anon_sym___block] = ACTIONS(1926), - [anon_sym___kindof] = ACTIONS(1926), - [anon_sym___unused] = ACTIONS(1926), - [anon_sym__Complex] = ACTIONS(1926), - [anon_sym___complex] = ACTIONS(1926), - [anon_sym_IBOutlet] = ACTIONS(1926), - [anon_sym_IBInspectable] = ACTIONS(1926), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1926), - [anon_sym_unsigned] = ACTIONS(1926), - [anon_sym_long] = ACTIONS(1926), - [anon_sym_short] = ACTIONS(1926), - [sym_primitive_type] = ACTIONS(1926), - [anon_sym_enum] = ACTIONS(1926), - [anon_sym_NS_ENUM] = ACTIONS(1926), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1926), - [anon_sym_NS_OPTIONS] = ACTIONS(1926), - [anon_sym_struct] = ACTIONS(1926), - [anon_sym_union] = ACTIONS(1926), - [anon_sym_if] = ACTIONS(1926), - [anon_sym_switch] = ACTIONS(1926), - [anon_sym_case] = ACTIONS(1926), - [anon_sym_default] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1926), - [anon_sym_do] = ACTIONS(1926), - [anon_sym_for] = ACTIONS(1926), - [anon_sym_return] = ACTIONS(1926), - [anon_sym_break] = ACTIONS(1926), - [anon_sym_continue] = ACTIONS(1926), - [anon_sym_goto] = ACTIONS(1926), - [anon_sym_DASH_DASH] = ACTIONS(1928), - [anon_sym_PLUS_PLUS] = ACTIONS(1928), - [anon_sym_sizeof] = ACTIONS(1926), - [sym_number_literal] = ACTIONS(1928), - [anon_sym_L_SQUOTE] = ACTIONS(1928), - [anon_sym_u_SQUOTE] = ACTIONS(1928), - [anon_sym_U_SQUOTE] = ACTIONS(1928), - [anon_sym_u8_SQUOTE] = ACTIONS(1928), - [anon_sym_SQUOTE] = ACTIONS(1928), - [anon_sym_L_DQUOTE] = ACTIONS(1928), - [anon_sym_u_DQUOTE] = ACTIONS(1928), - [anon_sym_U_DQUOTE] = ACTIONS(1928), - [anon_sym_u8_DQUOTE] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1928), - [sym_true] = ACTIONS(1926), - [sym_false] = ACTIONS(1926), - [sym_null] = ACTIONS(1926), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1928), - [anon_sym_ATimport] = ACTIONS(1928), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1926), - [anon_sym_ATcompatibility_alias] = ACTIONS(1928), - [anon_sym_ATprotocol] = ACTIONS(1928), - [anon_sym_ATclass] = ACTIONS(1928), - [anon_sym_ATinterface] = ACTIONS(1928), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1926), - [sym_method_attribute_specifier] = ACTIONS(1926), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1926), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1926), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1926), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1926), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1926), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1926), - [anon_sym_NS_AVAILABLE] = ACTIONS(1926), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1926), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1926), - [anon_sym_API_AVAILABLE] = ACTIONS(1926), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1926), - [anon_sym_API_DEPRECATED] = ACTIONS(1926), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1926), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1926), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1926), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1926), - [anon_sym___deprecated_msg] = ACTIONS(1926), - [anon_sym___deprecated_enum_msg] = ACTIONS(1926), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1926), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1926), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1926), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1926), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1926), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1926), - [anon_sym_ATimplementation] = ACTIONS(1928), - [anon_sym_typeof] = ACTIONS(1926), - [anon_sym___typeof] = ACTIONS(1926), - [anon_sym___typeof__] = ACTIONS(1926), - [sym_self] = ACTIONS(1926), - [sym_super] = ACTIONS(1926), - [sym_nil] = ACTIONS(1926), - [sym_id] = ACTIONS(1926), - [sym_instancetype] = ACTIONS(1926), - [sym_Class] = ACTIONS(1926), - [sym_SEL] = ACTIONS(1926), - [sym_IMP] = ACTIONS(1926), - [sym_BOOL] = ACTIONS(1926), - [sym_auto] = ACTIONS(1926), - [anon_sym_ATautoreleasepool] = ACTIONS(1928), - [anon_sym_ATsynchronized] = ACTIONS(1928), - [anon_sym_ATtry] = ACTIONS(1928), - [anon_sym_ATthrow] = ACTIONS(1928), - [anon_sym_ATselector] = ACTIONS(1928), - [anon_sym_ATencode] = ACTIONS(1928), - [anon_sym_AT] = ACTIONS(1926), - [sym_YES] = ACTIONS(1926), - [sym_NO] = ACTIONS(1926), - [anon_sym___builtin_available] = ACTIONS(1926), - [anon_sym_ATavailable] = ACTIONS(1928), - [anon_sym_va_arg] = ACTIONS(1926), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [952] = { - [ts_builtin_sym_end] = ACTIONS(1920), - [sym_identifier] = ACTIONS(1918), - [aux_sym_preproc_include_token1] = ACTIONS(1920), - [aux_sym_preproc_def_token1] = ACTIONS(1920), - [aux_sym_preproc_if_token1] = ACTIONS(1918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1918), - [anon_sym_LPAREN2] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_PLUS] = ACTIONS(1918), - [anon_sym_STAR] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1920), - [anon_sym_AMP] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1920), - [anon_sym_typedef] = ACTIONS(1918), - [anon_sym_extern] = ACTIONS(1918), - [anon_sym___attribute] = ACTIONS(1918), - [anon_sym___attribute__] = ACTIONS(1918), - [anon_sym___declspec] = ACTIONS(1918), - [anon_sym___cdecl] = ACTIONS(1918), - [anon_sym___clrcall] = ACTIONS(1918), - [anon_sym___stdcall] = ACTIONS(1918), - [anon_sym___fastcall] = ACTIONS(1918), - [anon_sym___thiscall] = ACTIONS(1918), - [anon_sym___vectorcall] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_static] = ACTIONS(1918), - [anon_sym_auto] = ACTIONS(1918), - [anon_sym_register] = ACTIONS(1918), - [anon_sym_inline] = ACTIONS(1918), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1918), - [anon_sym_const] = ACTIONS(1918), - [anon_sym_volatile] = ACTIONS(1918), - [anon_sym_restrict] = ACTIONS(1918), - [anon_sym__Atomic] = ACTIONS(1918), - [anon_sym_in] = ACTIONS(1918), - [anon_sym_out] = ACTIONS(1918), - [anon_sym_inout] = ACTIONS(1918), - [anon_sym_bycopy] = ACTIONS(1918), - [anon_sym_byref] = ACTIONS(1918), - [anon_sym_oneway] = ACTIONS(1918), - [anon_sym__Nullable] = ACTIONS(1918), - [anon_sym__Nonnull] = ACTIONS(1918), - [anon_sym__Nullable_result] = ACTIONS(1918), - [anon_sym__Null_unspecified] = ACTIONS(1918), - [anon_sym___autoreleasing] = ACTIONS(1918), - [anon_sym___nullable] = ACTIONS(1918), - [anon_sym___nonnull] = ACTIONS(1918), - [anon_sym___strong] = ACTIONS(1918), - [anon_sym___weak] = ACTIONS(1918), - [anon_sym___bridge] = ACTIONS(1918), - [anon_sym___bridge_transfer] = ACTIONS(1918), - [anon_sym___bridge_retained] = ACTIONS(1918), - [anon_sym___unsafe_unretained] = ACTIONS(1918), - [anon_sym___block] = ACTIONS(1918), - [anon_sym___kindof] = ACTIONS(1918), - [anon_sym___unused] = ACTIONS(1918), - [anon_sym__Complex] = ACTIONS(1918), - [anon_sym___complex] = ACTIONS(1918), - [anon_sym_IBOutlet] = ACTIONS(1918), - [anon_sym_IBInspectable] = ACTIONS(1918), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1918), - [anon_sym_signed] = ACTIONS(1918), - [anon_sym_unsigned] = ACTIONS(1918), - [anon_sym_long] = ACTIONS(1918), - [anon_sym_short] = ACTIONS(1918), - [sym_primitive_type] = ACTIONS(1918), - [anon_sym_enum] = ACTIONS(1918), - [anon_sym_NS_ENUM] = ACTIONS(1918), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1918), - [anon_sym_NS_OPTIONS] = ACTIONS(1918), - [anon_sym_struct] = ACTIONS(1918), - [anon_sym_union] = ACTIONS(1918), - [anon_sym_if] = ACTIONS(1918), - [anon_sym_switch] = ACTIONS(1918), - [anon_sym_case] = ACTIONS(1918), - [anon_sym_default] = ACTIONS(1918), - [anon_sym_while] = ACTIONS(1918), - [anon_sym_do] = ACTIONS(1918), - [anon_sym_for] = ACTIONS(1918), - [anon_sym_return] = ACTIONS(1918), - [anon_sym_break] = ACTIONS(1918), - [anon_sym_continue] = ACTIONS(1918), - [anon_sym_goto] = ACTIONS(1918), - [anon_sym_DASH_DASH] = ACTIONS(1920), - [anon_sym_PLUS_PLUS] = ACTIONS(1920), - [anon_sym_sizeof] = ACTIONS(1918), - [sym_number_literal] = ACTIONS(1920), - [anon_sym_L_SQUOTE] = ACTIONS(1920), - [anon_sym_u_SQUOTE] = ACTIONS(1920), - [anon_sym_U_SQUOTE] = ACTIONS(1920), - [anon_sym_u8_SQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1918), - [sym_false] = ACTIONS(1918), - [sym_null] = ACTIONS(1918), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1920), - [anon_sym_ATimport] = ACTIONS(1920), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1918), - [anon_sym_ATcompatibility_alias] = ACTIONS(1920), - [anon_sym_ATprotocol] = ACTIONS(1920), - [anon_sym_ATclass] = ACTIONS(1920), - [anon_sym_ATinterface] = ACTIONS(1920), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1918), - [sym_method_attribute_specifier] = ACTIONS(1918), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1918), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1918), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1918), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1918), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1918), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1918), - [anon_sym_NS_AVAILABLE] = ACTIONS(1918), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1918), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1918), - [anon_sym_API_AVAILABLE] = ACTIONS(1918), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1918), - [anon_sym_API_DEPRECATED] = ACTIONS(1918), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1918), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1918), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1918), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1918), - [anon_sym___deprecated_msg] = ACTIONS(1918), - [anon_sym___deprecated_enum_msg] = ACTIONS(1918), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1918), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1918), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1918), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1918), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1918), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1918), - [anon_sym_ATimplementation] = ACTIONS(1920), - [anon_sym_typeof] = ACTIONS(1918), - [anon_sym___typeof] = ACTIONS(1918), - [anon_sym___typeof__] = ACTIONS(1918), - [sym_self] = ACTIONS(1918), - [sym_super] = ACTIONS(1918), - [sym_nil] = ACTIONS(1918), - [sym_id] = ACTIONS(1918), - [sym_instancetype] = ACTIONS(1918), - [sym_Class] = ACTIONS(1918), - [sym_SEL] = ACTIONS(1918), - [sym_IMP] = ACTIONS(1918), - [sym_BOOL] = ACTIONS(1918), - [sym_auto] = ACTIONS(1918), - [anon_sym_ATautoreleasepool] = ACTIONS(1920), - [anon_sym_ATsynchronized] = ACTIONS(1920), - [anon_sym_ATtry] = ACTIONS(1920), - [anon_sym_ATthrow] = ACTIONS(1920), - [anon_sym_ATselector] = ACTIONS(1920), - [anon_sym_ATencode] = ACTIONS(1920), - [anon_sym_AT] = ACTIONS(1918), - [sym_YES] = ACTIONS(1918), - [sym_NO] = ACTIONS(1918), - [anon_sym___builtin_available] = ACTIONS(1918), - [anon_sym_ATavailable] = ACTIONS(1920), - [anon_sym_va_arg] = ACTIONS(1918), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [953] = { - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [954] = { - [ts_builtin_sym_end] = ACTIONS(2080), - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_RBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [955] = { - [ts_builtin_sym_end] = ACTIONS(2156), - [sym_identifier] = ACTIONS(2154), - [aux_sym_preproc_include_token1] = ACTIONS(2156), - [aux_sym_preproc_def_token1] = ACTIONS(2156), - [aux_sym_preproc_if_token1] = ACTIONS(2154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2154), - [anon_sym_LPAREN2] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2154), - [anon_sym_PLUS] = ACTIONS(2154), - [anon_sym_STAR] = ACTIONS(2156), - [anon_sym_CARET] = ACTIONS(2156), - [anon_sym_AMP] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2156), - [anon_sym_typedef] = ACTIONS(2154), - [anon_sym_extern] = ACTIONS(2154), - [anon_sym___attribute] = ACTIONS(2154), - [anon_sym___attribute__] = ACTIONS(2154), - [anon_sym___declspec] = ACTIONS(2154), - [anon_sym___cdecl] = ACTIONS(2154), - [anon_sym___clrcall] = ACTIONS(2154), - [anon_sym___stdcall] = ACTIONS(2154), - [anon_sym___fastcall] = ACTIONS(2154), - [anon_sym___thiscall] = ACTIONS(2154), - [anon_sym___vectorcall] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2154), - [anon_sym_auto] = ACTIONS(2154), - [anon_sym_register] = ACTIONS(2154), - [anon_sym_inline] = ACTIONS(2154), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2154), - [anon_sym_const] = ACTIONS(2154), - [anon_sym_volatile] = ACTIONS(2154), - [anon_sym_restrict] = ACTIONS(2154), - [anon_sym__Atomic] = ACTIONS(2154), - [anon_sym_in] = ACTIONS(2154), - [anon_sym_out] = ACTIONS(2154), - [anon_sym_inout] = ACTIONS(2154), - [anon_sym_bycopy] = ACTIONS(2154), - [anon_sym_byref] = ACTIONS(2154), - [anon_sym_oneway] = ACTIONS(2154), - [anon_sym__Nullable] = ACTIONS(2154), - [anon_sym__Nonnull] = ACTIONS(2154), - [anon_sym__Nullable_result] = ACTIONS(2154), - [anon_sym__Null_unspecified] = ACTIONS(2154), - [anon_sym___autoreleasing] = ACTIONS(2154), - [anon_sym___nullable] = ACTIONS(2154), - [anon_sym___nonnull] = ACTIONS(2154), - [anon_sym___strong] = ACTIONS(2154), - [anon_sym___weak] = ACTIONS(2154), - [anon_sym___bridge] = ACTIONS(2154), - [anon_sym___bridge_transfer] = ACTIONS(2154), - [anon_sym___bridge_retained] = ACTIONS(2154), - [anon_sym___unsafe_unretained] = ACTIONS(2154), - [anon_sym___block] = ACTIONS(2154), - [anon_sym___kindof] = ACTIONS(2154), - [anon_sym___unused] = ACTIONS(2154), - [anon_sym__Complex] = ACTIONS(2154), - [anon_sym___complex] = ACTIONS(2154), - [anon_sym_IBOutlet] = ACTIONS(2154), - [anon_sym_IBInspectable] = ACTIONS(2154), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2154), - [anon_sym_signed] = ACTIONS(2154), - [anon_sym_unsigned] = ACTIONS(2154), - [anon_sym_long] = ACTIONS(2154), - [anon_sym_short] = ACTIONS(2154), - [sym_primitive_type] = ACTIONS(2154), - [anon_sym_enum] = ACTIONS(2154), - [anon_sym_NS_ENUM] = ACTIONS(2154), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2154), - [anon_sym_NS_OPTIONS] = ACTIONS(2154), - [anon_sym_struct] = ACTIONS(2154), - [anon_sym_union] = ACTIONS(2154), - [anon_sym_if] = ACTIONS(2154), - [anon_sym_switch] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2154), - [anon_sym_default] = ACTIONS(2154), - [anon_sym_while] = ACTIONS(2154), - [anon_sym_do] = ACTIONS(2154), - [anon_sym_for] = ACTIONS(2154), - [anon_sym_return] = ACTIONS(2154), - [anon_sym_break] = ACTIONS(2154), - [anon_sym_continue] = ACTIONS(2154), - [anon_sym_goto] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2156), - [anon_sym_sizeof] = ACTIONS(2154), - [sym_number_literal] = ACTIONS(2156), - [anon_sym_L_SQUOTE] = ACTIONS(2156), - [anon_sym_u_SQUOTE] = ACTIONS(2156), - [anon_sym_U_SQUOTE] = ACTIONS(2156), - [anon_sym_u8_SQUOTE] = ACTIONS(2156), - [anon_sym_SQUOTE] = ACTIONS(2156), - [anon_sym_L_DQUOTE] = ACTIONS(2156), - [anon_sym_u_DQUOTE] = ACTIONS(2156), - [anon_sym_U_DQUOTE] = ACTIONS(2156), - [anon_sym_u8_DQUOTE] = ACTIONS(2156), - [anon_sym_DQUOTE] = ACTIONS(2156), - [sym_true] = ACTIONS(2154), - [sym_false] = ACTIONS(2154), - [sym_null] = ACTIONS(2154), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2156), - [anon_sym_ATimport] = ACTIONS(2156), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2154), - [anon_sym_ATcompatibility_alias] = ACTIONS(2156), - [anon_sym_ATprotocol] = ACTIONS(2156), - [anon_sym_ATclass] = ACTIONS(2156), - [anon_sym_ATinterface] = ACTIONS(2156), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2154), - [sym_method_attribute_specifier] = ACTIONS(2154), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2154), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2154), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2154), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2154), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2154), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2154), - [anon_sym_NS_AVAILABLE] = ACTIONS(2154), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2154), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2154), - [anon_sym_API_AVAILABLE] = ACTIONS(2154), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2154), - [anon_sym_API_DEPRECATED] = ACTIONS(2154), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2154), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2154), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2154), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2154), - [anon_sym___deprecated_msg] = ACTIONS(2154), - [anon_sym___deprecated_enum_msg] = ACTIONS(2154), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2154), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2154), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2154), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2154), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2154), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2154), - [anon_sym_ATimplementation] = ACTIONS(2156), - [anon_sym_typeof] = ACTIONS(2154), - [anon_sym___typeof] = ACTIONS(2154), - [anon_sym___typeof__] = ACTIONS(2154), - [sym_self] = ACTIONS(2154), - [sym_super] = ACTIONS(2154), - [sym_nil] = ACTIONS(2154), - [sym_id] = ACTIONS(2154), - [sym_instancetype] = ACTIONS(2154), - [sym_Class] = ACTIONS(2154), - [sym_SEL] = ACTIONS(2154), - [sym_IMP] = ACTIONS(2154), - [sym_BOOL] = ACTIONS(2154), - [sym_auto] = ACTIONS(2154), - [anon_sym_ATautoreleasepool] = ACTIONS(2156), - [anon_sym_ATsynchronized] = ACTIONS(2156), - [anon_sym_ATtry] = ACTIONS(2156), - [anon_sym_ATthrow] = ACTIONS(2156), - [anon_sym_ATselector] = ACTIONS(2156), - [anon_sym_ATencode] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [sym_YES] = ACTIONS(2154), - [sym_NO] = ACTIONS(2154), - [anon_sym___builtin_available] = ACTIONS(2154), - [anon_sym_ATavailable] = ACTIONS(2156), - [anon_sym_va_arg] = ACTIONS(2154), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [956] = { - [ts_builtin_sym_end] = ACTIONS(1912), - [sym_identifier] = ACTIONS(1910), - [aux_sym_preproc_include_token1] = ACTIONS(1912), - [aux_sym_preproc_def_token1] = ACTIONS(1912), - [aux_sym_preproc_if_token1] = ACTIONS(1910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1910), - [anon_sym_LPAREN2] = ACTIONS(1912), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_TILDE] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1910), - [anon_sym_PLUS] = ACTIONS(1910), - [anon_sym_STAR] = ACTIONS(1912), - [anon_sym_CARET] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_typedef] = ACTIONS(1910), - [anon_sym_extern] = ACTIONS(1910), - [anon_sym___attribute] = ACTIONS(1910), - [anon_sym___attribute__] = ACTIONS(1910), - [anon_sym___declspec] = ACTIONS(1910), - [anon_sym___cdecl] = ACTIONS(1910), - [anon_sym___clrcall] = ACTIONS(1910), - [anon_sym___stdcall] = ACTIONS(1910), - [anon_sym___fastcall] = ACTIONS(1910), - [anon_sym___thiscall] = ACTIONS(1910), - [anon_sym___vectorcall] = ACTIONS(1910), - [anon_sym_LBRACE] = ACTIONS(1912), - [anon_sym_RBRACE] = ACTIONS(1912), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_auto] = ACTIONS(1910), - [anon_sym_register] = ACTIONS(1910), - [anon_sym_inline] = ACTIONS(1910), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_volatile] = ACTIONS(1910), - [anon_sym_restrict] = ACTIONS(1910), - [anon_sym__Atomic] = ACTIONS(1910), - [anon_sym_in] = ACTIONS(1910), - [anon_sym_out] = ACTIONS(1910), - [anon_sym_inout] = ACTIONS(1910), - [anon_sym_bycopy] = ACTIONS(1910), - [anon_sym_byref] = ACTIONS(1910), - [anon_sym_oneway] = ACTIONS(1910), - [anon_sym__Nullable] = ACTIONS(1910), - [anon_sym__Nonnull] = ACTIONS(1910), - [anon_sym__Nullable_result] = ACTIONS(1910), - [anon_sym__Null_unspecified] = ACTIONS(1910), - [anon_sym___autoreleasing] = ACTIONS(1910), - [anon_sym___nullable] = ACTIONS(1910), - [anon_sym___nonnull] = ACTIONS(1910), - [anon_sym___strong] = ACTIONS(1910), - [anon_sym___weak] = ACTIONS(1910), - [anon_sym___bridge] = ACTIONS(1910), - [anon_sym___bridge_transfer] = ACTIONS(1910), - [anon_sym___bridge_retained] = ACTIONS(1910), - [anon_sym___unsafe_unretained] = ACTIONS(1910), - [anon_sym___block] = ACTIONS(1910), - [anon_sym___kindof] = ACTIONS(1910), - [anon_sym___unused] = ACTIONS(1910), - [anon_sym__Complex] = ACTIONS(1910), - [anon_sym___complex] = ACTIONS(1910), - [anon_sym_IBOutlet] = ACTIONS(1910), - [anon_sym_IBInspectable] = ACTIONS(1910), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1910), - [anon_sym_signed] = ACTIONS(1910), - [anon_sym_unsigned] = ACTIONS(1910), - [anon_sym_long] = ACTIONS(1910), - [anon_sym_short] = ACTIONS(1910), - [sym_primitive_type] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_NS_ENUM] = ACTIONS(1910), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1910), - [anon_sym_NS_OPTIONS] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_switch] = ACTIONS(1910), - [anon_sym_case] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [anon_sym_do] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_goto] = ACTIONS(1910), - [anon_sym_DASH_DASH] = ACTIONS(1912), - [anon_sym_PLUS_PLUS] = ACTIONS(1912), - [anon_sym_sizeof] = ACTIONS(1910), - [sym_number_literal] = ACTIONS(1912), - [anon_sym_L_SQUOTE] = ACTIONS(1912), - [anon_sym_u_SQUOTE] = ACTIONS(1912), - [anon_sym_U_SQUOTE] = ACTIONS(1912), - [anon_sym_u8_SQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE] = ACTIONS(1912), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [sym_null] = ACTIONS(1910), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1912), - [anon_sym_ATimport] = ACTIONS(1912), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1910), - [anon_sym_ATcompatibility_alias] = ACTIONS(1912), - [anon_sym_ATprotocol] = ACTIONS(1912), - [anon_sym_ATclass] = ACTIONS(1912), - [anon_sym_ATinterface] = ACTIONS(1912), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1910), - [sym_method_attribute_specifier] = ACTIONS(1910), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1910), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1910), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1910), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1910), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1910), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1910), - [anon_sym_NS_AVAILABLE] = ACTIONS(1910), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1910), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1910), - [anon_sym_API_AVAILABLE] = ACTIONS(1910), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1910), - [anon_sym_API_DEPRECATED] = ACTIONS(1910), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1910), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1910), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1910), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1910), - [anon_sym___deprecated_msg] = ACTIONS(1910), - [anon_sym___deprecated_enum_msg] = ACTIONS(1910), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1910), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1910), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1910), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1910), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1910), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1910), - [anon_sym_ATimplementation] = ACTIONS(1912), - [anon_sym_typeof] = ACTIONS(1910), - [anon_sym___typeof] = ACTIONS(1910), - [anon_sym___typeof__] = ACTIONS(1910), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_nil] = ACTIONS(1910), - [sym_id] = ACTIONS(1910), - [sym_instancetype] = ACTIONS(1910), - [sym_Class] = ACTIONS(1910), - [sym_SEL] = ACTIONS(1910), - [sym_IMP] = ACTIONS(1910), - [sym_BOOL] = ACTIONS(1910), - [sym_auto] = ACTIONS(1910), - [anon_sym_ATautoreleasepool] = ACTIONS(1912), - [anon_sym_ATsynchronized] = ACTIONS(1912), - [anon_sym_ATtry] = ACTIONS(1912), - [anon_sym_ATthrow] = ACTIONS(1912), - [anon_sym_ATselector] = ACTIONS(1912), - [anon_sym_ATencode] = ACTIONS(1912), - [anon_sym_AT] = ACTIONS(1910), - [sym_YES] = ACTIONS(1910), - [sym_NO] = ACTIONS(1910), - [anon_sym___builtin_available] = ACTIONS(1910), - [anon_sym_ATavailable] = ACTIONS(1912), - [anon_sym_va_arg] = ACTIONS(1910), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [957] = { - [ts_builtin_sym_end] = ACTIONS(2032), - [sym_identifier] = ACTIONS(2030), - [aux_sym_preproc_include_token1] = ACTIONS(2032), - [aux_sym_preproc_def_token1] = ACTIONS(2032), - [aux_sym_preproc_if_token1] = ACTIONS(2030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2030), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2030), - [anon_sym_LPAREN2] = ACTIONS(2032), - [anon_sym_BANG] = ACTIONS(2032), - [anon_sym_TILDE] = ACTIONS(2032), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_PLUS] = ACTIONS(2030), - [anon_sym_STAR] = ACTIONS(2032), - [anon_sym_CARET] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_typedef] = ACTIONS(2030), - [anon_sym_extern] = ACTIONS(2030), - [anon_sym___attribute] = ACTIONS(2030), - [anon_sym___attribute__] = ACTIONS(2030), - [anon_sym___declspec] = ACTIONS(2030), - [anon_sym___cdecl] = ACTIONS(2030), - [anon_sym___clrcall] = ACTIONS(2030), - [anon_sym___stdcall] = ACTIONS(2030), - [anon_sym___fastcall] = ACTIONS(2030), - [anon_sym___thiscall] = ACTIONS(2030), - [anon_sym___vectorcall] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2032), - [anon_sym_RBRACE] = ACTIONS(2032), - [anon_sym_LBRACK] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2030), - [anon_sym_auto] = ACTIONS(2030), - [anon_sym_register] = ACTIONS(2030), - [anon_sym_inline] = ACTIONS(2030), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(2030), - [anon_sym_volatile] = ACTIONS(2030), - [anon_sym_restrict] = ACTIONS(2030), - [anon_sym__Atomic] = ACTIONS(2030), - [anon_sym_in] = ACTIONS(2030), - [anon_sym_out] = ACTIONS(2030), - [anon_sym_inout] = ACTIONS(2030), - [anon_sym_bycopy] = ACTIONS(2030), - [anon_sym_byref] = ACTIONS(2030), - [anon_sym_oneway] = ACTIONS(2030), - [anon_sym__Nullable] = ACTIONS(2030), - [anon_sym__Nonnull] = ACTIONS(2030), - [anon_sym__Nullable_result] = ACTIONS(2030), - [anon_sym__Null_unspecified] = ACTIONS(2030), - [anon_sym___autoreleasing] = ACTIONS(2030), - [anon_sym___nullable] = ACTIONS(2030), - [anon_sym___nonnull] = ACTIONS(2030), - [anon_sym___strong] = ACTIONS(2030), - [anon_sym___weak] = ACTIONS(2030), - [anon_sym___bridge] = ACTIONS(2030), - [anon_sym___bridge_transfer] = ACTIONS(2030), - [anon_sym___bridge_retained] = ACTIONS(2030), - [anon_sym___unsafe_unretained] = ACTIONS(2030), - [anon_sym___block] = ACTIONS(2030), - [anon_sym___kindof] = ACTIONS(2030), - [anon_sym___unused] = ACTIONS(2030), - [anon_sym__Complex] = ACTIONS(2030), - [anon_sym___complex] = ACTIONS(2030), - [anon_sym_IBOutlet] = ACTIONS(2030), - [anon_sym_IBInspectable] = ACTIONS(2030), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2030), - [anon_sym_signed] = ACTIONS(2030), - [anon_sym_unsigned] = ACTIONS(2030), - [anon_sym_long] = ACTIONS(2030), - [anon_sym_short] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2030), - [anon_sym_enum] = ACTIONS(2030), - [anon_sym_NS_ENUM] = ACTIONS(2030), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2030), - [anon_sym_NS_OPTIONS] = ACTIONS(2030), - [anon_sym_struct] = ACTIONS(2030), - [anon_sym_union] = ACTIONS(2030), - [anon_sym_if] = ACTIONS(2030), - [anon_sym_switch] = ACTIONS(2030), - [anon_sym_case] = ACTIONS(2030), - [anon_sym_default] = ACTIONS(2030), - [anon_sym_while] = ACTIONS(2030), - [anon_sym_do] = ACTIONS(2030), - [anon_sym_for] = ACTIONS(2030), - [anon_sym_return] = ACTIONS(2030), - [anon_sym_break] = ACTIONS(2030), - [anon_sym_continue] = ACTIONS(2030), - [anon_sym_goto] = ACTIONS(2030), - [anon_sym_DASH_DASH] = ACTIONS(2032), - [anon_sym_PLUS_PLUS] = ACTIONS(2032), - [anon_sym_sizeof] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2032), - [anon_sym_u_SQUOTE] = ACTIONS(2032), - [anon_sym_U_SQUOTE] = ACTIONS(2032), - [anon_sym_u8_SQUOTE] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_L_DQUOTE] = ACTIONS(2032), - [anon_sym_u_DQUOTE] = ACTIONS(2032), - [anon_sym_U_DQUOTE] = ACTIONS(2032), - [anon_sym_u8_DQUOTE] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [sym_true] = ACTIONS(2030), - [sym_false] = ACTIONS(2030), - [sym_null] = ACTIONS(2030), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2032), - [anon_sym_ATimport] = ACTIONS(2032), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2030), - [anon_sym_ATcompatibility_alias] = ACTIONS(2032), - [anon_sym_ATprotocol] = ACTIONS(2032), - [anon_sym_ATclass] = ACTIONS(2032), - [anon_sym_ATinterface] = ACTIONS(2032), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2030), - [sym_method_attribute_specifier] = ACTIONS(2030), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2030), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2030), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2030), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2030), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2030), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2030), - [anon_sym_NS_AVAILABLE] = ACTIONS(2030), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2030), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_API_AVAILABLE] = ACTIONS(2030), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2030), - [anon_sym_API_DEPRECATED] = ACTIONS(2030), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2030), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2030), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2030), - [anon_sym___deprecated_msg] = ACTIONS(2030), - [anon_sym___deprecated_enum_msg] = ACTIONS(2030), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2030), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2030), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2030), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2030), - [anon_sym_ATimplementation] = ACTIONS(2032), - [anon_sym_typeof] = ACTIONS(2030), - [anon_sym___typeof] = ACTIONS(2030), - [anon_sym___typeof__] = ACTIONS(2030), - [sym_self] = ACTIONS(2030), - [sym_super] = ACTIONS(2030), - [sym_nil] = ACTIONS(2030), - [sym_id] = ACTIONS(2030), - [sym_instancetype] = ACTIONS(2030), - [sym_Class] = ACTIONS(2030), - [sym_SEL] = ACTIONS(2030), - [sym_IMP] = ACTIONS(2030), - [sym_BOOL] = ACTIONS(2030), - [sym_auto] = ACTIONS(2030), - [anon_sym_ATautoreleasepool] = ACTIONS(2032), - [anon_sym_ATsynchronized] = ACTIONS(2032), - [anon_sym_ATtry] = ACTIONS(2032), - [anon_sym_ATthrow] = ACTIONS(2032), - [anon_sym_ATselector] = ACTIONS(2032), - [anon_sym_ATencode] = ACTIONS(2032), - [anon_sym_AT] = ACTIONS(2030), - [sym_YES] = ACTIONS(2030), - [sym_NO] = ACTIONS(2030), - [anon_sym___builtin_available] = ACTIONS(2030), - [anon_sym_ATavailable] = ACTIONS(2032), - [anon_sym_va_arg] = ACTIONS(2030), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [958] = { - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2158), - [aux_sym_preproc_include_token1] = ACTIONS(2160), - [aux_sym_preproc_def_token1] = ACTIONS(2160), - [aux_sym_preproc_if_token1] = ACTIONS(2158), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2158), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2158), - [anon_sym_LPAREN2] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_typedef] = ACTIONS(2158), - [anon_sym_extern] = ACTIONS(2158), - [anon_sym___attribute] = ACTIONS(2158), - [anon_sym___attribute__] = ACTIONS(2158), - [anon_sym___declspec] = ACTIONS(2158), - [anon_sym___cdecl] = ACTIONS(2158), - [anon_sym___clrcall] = ACTIONS(2158), - [anon_sym___stdcall] = ACTIONS(2158), - [anon_sym___fastcall] = ACTIONS(2158), - [anon_sym___thiscall] = ACTIONS(2158), - [anon_sym___vectorcall] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2158), - [anon_sym_auto] = ACTIONS(2158), - [anon_sym_register] = ACTIONS(2158), - [anon_sym_inline] = ACTIONS(2158), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2158), - [anon_sym_const] = ACTIONS(2158), - [anon_sym_volatile] = ACTIONS(2158), - [anon_sym_restrict] = ACTIONS(2158), - [anon_sym__Atomic] = ACTIONS(2158), - [anon_sym_in] = ACTIONS(2158), - [anon_sym_out] = ACTIONS(2158), - [anon_sym_inout] = ACTIONS(2158), - [anon_sym_bycopy] = ACTIONS(2158), - [anon_sym_byref] = ACTIONS(2158), - [anon_sym_oneway] = ACTIONS(2158), - [anon_sym__Nullable] = ACTIONS(2158), - [anon_sym__Nonnull] = ACTIONS(2158), - [anon_sym__Nullable_result] = ACTIONS(2158), - [anon_sym__Null_unspecified] = ACTIONS(2158), - [anon_sym___autoreleasing] = ACTIONS(2158), - [anon_sym___nullable] = ACTIONS(2158), - [anon_sym___nonnull] = ACTIONS(2158), - [anon_sym___strong] = ACTIONS(2158), - [anon_sym___weak] = ACTIONS(2158), - [anon_sym___bridge] = ACTIONS(2158), - [anon_sym___bridge_transfer] = ACTIONS(2158), - [anon_sym___bridge_retained] = ACTIONS(2158), - [anon_sym___unsafe_unretained] = ACTIONS(2158), - [anon_sym___block] = ACTIONS(2158), - [anon_sym___kindof] = ACTIONS(2158), - [anon_sym___unused] = ACTIONS(2158), - [anon_sym__Complex] = ACTIONS(2158), - [anon_sym___complex] = ACTIONS(2158), - [anon_sym_IBOutlet] = ACTIONS(2158), - [anon_sym_IBInspectable] = ACTIONS(2158), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2158), - [anon_sym_signed] = ACTIONS(2158), - [anon_sym_unsigned] = ACTIONS(2158), - [anon_sym_long] = ACTIONS(2158), - [anon_sym_short] = ACTIONS(2158), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_enum] = ACTIONS(2158), - [anon_sym_NS_ENUM] = ACTIONS(2158), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2158), - [anon_sym_NS_OPTIONS] = ACTIONS(2158), - [anon_sym_struct] = ACTIONS(2158), - [anon_sym_union] = ACTIONS(2158), - [anon_sym_if] = ACTIONS(2158), - [anon_sym_switch] = ACTIONS(2158), - [anon_sym_case] = ACTIONS(2158), - [anon_sym_default] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2158), - [anon_sym_do] = ACTIONS(2158), - [anon_sym_for] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2158), - [anon_sym_break] = ACTIONS(2158), - [anon_sym_continue] = ACTIONS(2158), - [anon_sym_goto] = ACTIONS(2158), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2158), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2160), - [anon_sym_u_SQUOTE] = ACTIONS(2160), - [anon_sym_U_SQUOTE] = ACTIONS(2160), - [anon_sym_u8_SQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_L_DQUOTE] = ACTIONS(2160), - [anon_sym_u_DQUOTE] = ACTIONS(2160), - [anon_sym_U_DQUOTE] = ACTIONS(2160), - [anon_sym_u8_DQUOTE] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [sym_true] = ACTIONS(2158), - [sym_false] = ACTIONS(2158), - [sym_null] = ACTIONS(2158), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2160), - [anon_sym_ATimport] = ACTIONS(2160), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2158), - [anon_sym_ATcompatibility_alias] = ACTIONS(2160), - [anon_sym_ATprotocol] = ACTIONS(2160), - [anon_sym_ATclass] = ACTIONS(2160), - [anon_sym_ATinterface] = ACTIONS(2160), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2158), - [sym_method_attribute_specifier] = ACTIONS(2158), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2158), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2158), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2158), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2158), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2158), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2158), - [anon_sym_NS_AVAILABLE] = ACTIONS(2158), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2158), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2158), - [anon_sym_API_AVAILABLE] = ACTIONS(2158), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2158), - [anon_sym_API_DEPRECATED] = ACTIONS(2158), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2158), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2158), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2158), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2158), - [anon_sym___deprecated_msg] = ACTIONS(2158), - [anon_sym___deprecated_enum_msg] = ACTIONS(2158), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2158), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2158), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2158), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2158), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2158), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2158), - [anon_sym_ATimplementation] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2158), - [anon_sym___typeof] = ACTIONS(2158), - [anon_sym___typeof__] = ACTIONS(2158), - [sym_self] = ACTIONS(2158), - [sym_super] = ACTIONS(2158), - [sym_nil] = ACTIONS(2158), - [sym_id] = ACTIONS(2158), - [sym_instancetype] = ACTIONS(2158), - [sym_Class] = ACTIONS(2158), - [sym_SEL] = ACTIONS(2158), - [sym_IMP] = ACTIONS(2158), - [sym_BOOL] = ACTIONS(2158), - [sym_auto] = ACTIONS(2158), - [anon_sym_ATautoreleasepool] = ACTIONS(2160), - [anon_sym_ATsynchronized] = ACTIONS(2160), - [anon_sym_ATtry] = ACTIONS(2160), - [anon_sym_ATthrow] = ACTIONS(2160), - [anon_sym_ATselector] = ACTIONS(2160), - [anon_sym_ATencode] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2158), - [sym_YES] = ACTIONS(2158), - [sym_NO] = ACTIONS(2158), - [anon_sym___builtin_available] = ACTIONS(2158), - [anon_sym_ATavailable] = ACTIONS(2160), - [anon_sym_va_arg] = ACTIONS(2158), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [959] = { - [ts_builtin_sym_end] = ACTIONS(2024), - [sym_identifier] = ACTIONS(2022), - [aux_sym_preproc_include_token1] = ACTIONS(2024), - [aux_sym_preproc_def_token1] = ACTIONS(2024), - [aux_sym_preproc_if_token1] = ACTIONS(2022), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2022), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2022), - [anon_sym_LPAREN2] = ACTIONS(2024), - [anon_sym_BANG] = ACTIONS(2024), - [anon_sym_TILDE] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2022), - [anon_sym_PLUS] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_typedef] = ACTIONS(2022), - [anon_sym_extern] = ACTIONS(2022), - [anon_sym___attribute] = ACTIONS(2022), - [anon_sym___attribute__] = ACTIONS(2022), - [anon_sym___declspec] = ACTIONS(2022), - [anon_sym___cdecl] = ACTIONS(2022), - [anon_sym___clrcall] = ACTIONS(2022), - [anon_sym___stdcall] = ACTIONS(2022), - [anon_sym___fastcall] = ACTIONS(2022), - [anon_sym___thiscall] = ACTIONS(2022), - [anon_sym___vectorcall] = ACTIONS(2022), - [anon_sym_LBRACE] = ACTIONS(2024), - [anon_sym_RBRACE] = ACTIONS(2024), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_static] = ACTIONS(2022), - [anon_sym_auto] = ACTIONS(2022), - [anon_sym_register] = ACTIONS(2022), - [anon_sym_inline] = ACTIONS(2022), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2022), - [anon_sym_const] = ACTIONS(2022), - [anon_sym_volatile] = ACTIONS(2022), - [anon_sym_restrict] = ACTIONS(2022), - [anon_sym__Atomic] = ACTIONS(2022), - [anon_sym_in] = ACTIONS(2022), - [anon_sym_out] = ACTIONS(2022), - [anon_sym_inout] = ACTIONS(2022), - [anon_sym_bycopy] = ACTIONS(2022), - [anon_sym_byref] = ACTIONS(2022), - [anon_sym_oneway] = ACTIONS(2022), - [anon_sym__Nullable] = ACTIONS(2022), - [anon_sym__Nonnull] = ACTIONS(2022), - [anon_sym__Nullable_result] = ACTIONS(2022), - [anon_sym__Null_unspecified] = ACTIONS(2022), - [anon_sym___autoreleasing] = ACTIONS(2022), - [anon_sym___nullable] = ACTIONS(2022), - [anon_sym___nonnull] = ACTIONS(2022), - [anon_sym___strong] = ACTIONS(2022), - [anon_sym___weak] = ACTIONS(2022), - [anon_sym___bridge] = ACTIONS(2022), - [anon_sym___bridge_transfer] = ACTIONS(2022), - [anon_sym___bridge_retained] = ACTIONS(2022), - [anon_sym___unsafe_unretained] = ACTIONS(2022), - [anon_sym___block] = ACTIONS(2022), - [anon_sym___kindof] = ACTIONS(2022), - [anon_sym___unused] = ACTIONS(2022), - [anon_sym__Complex] = ACTIONS(2022), - [anon_sym___complex] = ACTIONS(2022), - [anon_sym_IBOutlet] = ACTIONS(2022), - [anon_sym_IBInspectable] = ACTIONS(2022), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2022), - [anon_sym_signed] = ACTIONS(2022), - [anon_sym_unsigned] = ACTIONS(2022), - [anon_sym_long] = ACTIONS(2022), - [anon_sym_short] = ACTIONS(2022), - [sym_primitive_type] = ACTIONS(2022), - [anon_sym_enum] = ACTIONS(2022), - [anon_sym_NS_ENUM] = ACTIONS(2022), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2022), - [anon_sym_NS_OPTIONS] = ACTIONS(2022), - [anon_sym_struct] = ACTIONS(2022), - [anon_sym_union] = ACTIONS(2022), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_switch] = ACTIONS(2022), - [anon_sym_case] = ACTIONS(2022), - [anon_sym_default] = ACTIONS(2022), - [anon_sym_while] = ACTIONS(2022), - [anon_sym_do] = ACTIONS(2022), - [anon_sym_for] = ACTIONS(2022), - [anon_sym_return] = ACTIONS(2022), - [anon_sym_break] = ACTIONS(2022), - [anon_sym_continue] = ACTIONS(2022), - [anon_sym_goto] = ACTIONS(2022), - [anon_sym_DASH_DASH] = ACTIONS(2024), - [anon_sym_PLUS_PLUS] = ACTIONS(2024), - [anon_sym_sizeof] = ACTIONS(2022), - [sym_number_literal] = ACTIONS(2024), - [anon_sym_L_SQUOTE] = ACTIONS(2024), - [anon_sym_u_SQUOTE] = ACTIONS(2024), - [anon_sym_U_SQUOTE] = ACTIONS(2024), - [anon_sym_u8_SQUOTE] = ACTIONS(2024), - [anon_sym_SQUOTE] = ACTIONS(2024), - [anon_sym_L_DQUOTE] = ACTIONS(2024), - [anon_sym_u_DQUOTE] = ACTIONS(2024), - [anon_sym_U_DQUOTE] = ACTIONS(2024), - [anon_sym_u8_DQUOTE] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2024), - [sym_true] = ACTIONS(2022), - [sym_false] = ACTIONS(2022), - [sym_null] = ACTIONS(2022), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2024), - [anon_sym_ATimport] = ACTIONS(2024), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2022), - [anon_sym_ATcompatibility_alias] = ACTIONS(2024), - [anon_sym_ATprotocol] = ACTIONS(2024), - [anon_sym_ATclass] = ACTIONS(2024), - [anon_sym_ATinterface] = ACTIONS(2024), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2022), - [sym_method_attribute_specifier] = ACTIONS(2022), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2022), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2022), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2022), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2022), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2022), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2022), - [anon_sym_NS_AVAILABLE] = ACTIONS(2022), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2022), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_API_AVAILABLE] = ACTIONS(2022), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2022), - [anon_sym_API_DEPRECATED] = ACTIONS(2022), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2022), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2022), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2022), - [anon_sym___deprecated_msg] = ACTIONS(2022), - [anon_sym___deprecated_enum_msg] = ACTIONS(2022), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2022), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2022), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2022), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2022), - [anon_sym_ATimplementation] = ACTIONS(2024), - [anon_sym_typeof] = ACTIONS(2022), - [anon_sym___typeof] = ACTIONS(2022), - [anon_sym___typeof__] = ACTIONS(2022), - [sym_self] = ACTIONS(2022), - [sym_super] = ACTIONS(2022), - [sym_nil] = ACTIONS(2022), - [sym_id] = ACTIONS(2022), - [sym_instancetype] = ACTIONS(2022), - [sym_Class] = ACTIONS(2022), - [sym_SEL] = ACTIONS(2022), - [sym_IMP] = ACTIONS(2022), - [sym_BOOL] = ACTIONS(2022), - [sym_auto] = ACTIONS(2022), - [anon_sym_ATautoreleasepool] = ACTIONS(2024), - [anon_sym_ATsynchronized] = ACTIONS(2024), - [anon_sym_ATtry] = ACTIONS(2024), - [anon_sym_ATthrow] = ACTIONS(2024), - [anon_sym_ATselector] = ACTIONS(2024), - [anon_sym_ATencode] = ACTIONS(2024), - [anon_sym_AT] = ACTIONS(2022), - [sym_YES] = ACTIONS(2022), - [sym_NO] = ACTIONS(2022), - [anon_sym___builtin_available] = ACTIONS(2022), - [anon_sym_ATavailable] = ACTIONS(2024), - [anon_sym_va_arg] = ACTIONS(2022), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [960] = { - [ts_builtin_sym_end] = ACTIONS(2172), - [sym_identifier] = ACTIONS(2170), - [aux_sym_preproc_include_token1] = ACTIONS(2172), - [aux_sym_preproc_def_token1] = ACTIONS(2172), - [aux_sym_preproc_if_token1] = ACTIONS(2170), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2170), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2170), - [anon_sym_LPAREN2] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_TILDE] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2170), - [anon_sym_PLUS] = ACTIONS(2170), - [anon_sym_STAR] = ACTIONS(2172), - [anon_sym_CARET] = ACTIONS(2172), - [anon_sym_AMP] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_typedef] = ACTIONS(2170), - [anon_sym_extern] = ACTIONS(2170), - [anon_sym___attribute] = ACTIONS(2170), - [anon_sym___attribute__] = ACTIONS(2170), - [anon_sym___declspec] = ACTIONS(2170), - [anon_sym___cdecl] = ACTIONS(2170), - [anon_sym___clrcall] = ACTIONS(2170), - [anon_sym___stdcall] = ACTIONS(2170), - [anon_sym___fastcall] = ACTIONS(2170), - [anon_sym___thiscall] = ACTIONS(2170), - [anon_sym___vectorcall] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2170), - [anon_sym_auto] = ACTIONS(2170), - [anon_sym_register] = ACTIONS(2170), - [anon_sym_inline] = ACTIONS(2170), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2170), - [anon_sym_const] = ACTIONS(2170), - [anon_sym_volatile] = ACTIONS(2170), - [anon_sym_restrict] = ACTIONS(2170), - [anon_sym__Atomic] = ACTIONS(2170), - [anon_sym_in] = ACTIONS(2170), - [anon_sym_out] = ACTIONS(2170), - [anon_sym_inout] = ACTIONS(2170), - [anon_sym_bycopy] = ACTIONS(2170), - [anon_sym_byref] = ACTIONS(2170), - [anon_sym_oneway] = ACTIONS(2170), - [anon_sym__Nullable] = ACTIONS(2170), - [anon_sym__Nonnull] = ACTIONS(2170), - [anon_sym__Nullable_result] = ACTIONS(2170), - [anon_sym__Null_unspecified] = ACTIONS(2170), - [anon_sym___autoreleasing] = ACTIONS(2170), - [anon_sym___nullable] = ACTIONS(2170), - [anon_sym___nonnull] = ACTIONS(2170), - [anon_sym___strong] = ACTIONS(2170), - [anon_sym___weak] = ACTIONS(2170), - [anon_sym___bridge] = ACTIONS(2170), - [anon_sym___bridge_transfer] = ACTIONS(2170), - [anon_sym___bridge_retained] = ACTIONS(2170), - [anon_sym___unsafe_unretained] = ACTIONS(2170), - [anon_sym___block] = ACTIONS(2170), - [anon_sym___kindof] = ACTIONS(2170), - [anon_sym___unused] = ACTIONS(2170), - [anon_sym__Complex] = ACTIONS(2170), - [anon_sym___complex] = ACTIONS(2170), - [anon_sym_IBOutlet] = ACTIONS(2170), - [anon_sym_IBInspectable] = ACTIONS(2170), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2170), - [anon_sym_signed] = ACTIONS(2170), - [anon_sym_unsigned] = ACTIONS(2170), - [anon_sym_long] = ACTIONS(2170), - [anon_sym_short] = ACTIONS(2170), - [sym_primitive_type] = ACTIONS(2170), - [anon_sym_enum] = ACTIONS(2170), - [anon_sym_NS_ENUM] = ACTIONS(2170), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2170), - [anon_sym_NS_OPTIONS] = ACTIONS(2170), - [anon_sym_struct] = ACTIONS(2170), - [anon_sym_union] = ACTIONS(2170), - [anon_sym_if] = ACTIONS(2170), - [anon_sym_switch] = ACTIONS(2170), - [anon_sym_case] = ACTIONS(2170), - [anon_sym_default] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2170), - [anon_sym_do] = ACTIONS(2170), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_return] = ACTIONS(2170), - [anon_sym_break] = ACTIONS(2170), - [anon_sym_continue] = ACTIONS(2170), - [anon_sym_goto] = ACTIONS(2170), - [anon_sym_DASH_DASH] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(2172), - [anon_sym_sizeof] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2172), - [anon_sym_u_SQUOTE] = ACTIONS(2172), - [anon_sym_U_SQUOTE] = ACTIONS(2172), - [anon_sym_u8_SQUOTE] = ACTIONS(2172), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_L_DQUOTE] = ACTIONS(2172), - [anon_sym_u_DQUOTE] = ACTIONS(2172), - [anon_sym_U_DQUOTE] = ACTIONS(2172), - [anon_sym_u8_DQUOTE] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [sym_true] = ACTIONS(2170), - [sym_false] = ACTIONS(2170), - [sym_null] = ACTIONS(2170), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2172), - [anon_sym_ATimport] = ACTIONS(2172), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2170), - [anon_sym_ATcompatibility_alias] = ACTIONS(2172), - [anon_sym_ATprotocol] = ACTIONS(2172), - [anon_sym_ATclass] = ACTIONS(2172), - [anon_sym_ATinterface] = ACTIONS(2172), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2170), - [sym_method_attribute_specifier] = ACTIONS(2170), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2170), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2170), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2170), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2170), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2170), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2170), - [anon_sym_NS_AVAILABLE] = ACTIONS(2170), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2170), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2170), - [anon_sym_API_AVAILABLE] = ACTIONS(2170), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2170), - [anon_sym_API_DEPRECATED] = ACTIONS(2170), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2170), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2170), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2170), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2170), - [anon_sym___deprecated_msg] = ACTIONS(2170), - [anon_sym___deprecated_enum_msg] = ACTIONS(2170), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2170), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2170), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2170), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2170), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2170), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2170), - [anon_sym_ATimplementation] = ACTIONS(2172), - [anon_sym_typeof] = ACTIONS(2170), - [anon_sym___typeof] = ACTIONS(2170), - [anon_sym___typeof__] = ACTIONS(2170), - [sym_self] = ACTIONS(2170), - [sym_super] = ACTIONS(2170), - [sym_nil] = ACTIONS(2170), - [sym_id] = ACTIONS(2170), - [sym_instancetype] = ACTIONS(2170), - [sym_Class] = ACTIONS(2170), - [sym_SEL] = ACTIONS(2170), - [sym_IMP] = ACTIONS(2170), - [sym_BOOL] = ACTIONS(2170), - [sym_auto] = ACTIONS(2170), - [anon_sym_ATautoreleasepool] = ACTIONS(2172), - [anon_sym_ATsynchronized] = ACTIONS(2172), - [anon_sym_ATtry] = ACTIONS(2172), - [anon_sym_ATthrow] = ACTIONS(2172), - [anon_sym_ATselector] = ACTIONS(2172), - [anon_sym_ATencode] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2170), - [sym_YES] = ACTIONS(2170), - [sym_NO] = ACTIONS(2170), - [anon_sym___builtin_available] = ACTIONS(2170), - [anon_sym_ATavailable] = ACTIONS(2172), - [anon_sym_va_arg] = ACTIONS(2170), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [961] = { - [ts_builtin_sym_end] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [962] = { - [ts_builtin_sym_end] = ACTIONS(1884), - [sym_identifier] = ACTIONS(1882), - [aux_sym_preproc_include_token1] = ACTIONS(1884), - [aux_sym_preproc_def_token1] = ACTIONS(1884), - [aux_sym_preproc_if_token1] = ACTIONS(1882), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1882), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1882), - [anon_sym_LPAREN2] = ACTIONS(1884), - [anon_sym_BANG] = ACTIONS(1884), - [anon_sym_TILDE] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_PLUS] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1884), - [anon_sym_CARET] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_typedef] = ACTIONS(1882), - [anon_sym_extern] = ACTIONS(1882), - [anon_sym___attribute] = ACTIONS(1882), - [anon_sym___attribute__] = ACTIONS(1882), - [anon_sym___declspec] = ACTIONS(1882), - [anon_sym___cdecl] = ACTIONS(1882), - [anon_sym___clrcall] = ACTIONS(1882), - [anon_sym___stdcall] = ACTIONS(1882), - [anon_sym___fastcall] = ACTIONS(1882), - [anon_sym___thiscall] = ACTIONS(1882), - [anon_sym___vectorcall] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1884), - [anon_sym_RBRACE] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1882), - [anon_sym_auto] = ACTIONS(1882), - [anon_sym_register] = ACTIONS(1882), - [anon_sym_inline] = ACTIONS(1882), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1882), - [anon_sym_const] = ACTIONS(1882), - [anon_sym_volatile] = ACTIONS(1882), - [anon_sym_restrict] = ACTIONS(1882), - [anon_sym__Atomic] = ACTIONS(1882), - [anon_sym_in] = ACTIONS(1882), - [anon_sym_out] = ACTIONS(1882), - [anon_sym_inout] = ACTIONS(1882), - [anon_sym_bycopy] = ACTIONS(1882), - [anon_sym_byref] = ACTIONS(1882), - [anon_sym_oneway] = ACTIONS(1882), - [anon_sym__Nullable] = ACTIONS(1882), - [anon_sym__Nonnull] = ACTIONS(1882), - [anon_sym__Nullable_result] = ACTIONS(1882), - [anon_sym__Null_unspecified] = ACTIONS(1882), - [anon_sym___autoreleasing] = ACTIONS(1882), - [anon_sym___nullable] = ACTIONS(1882), - [anon_sym___nonnull] = ACTIONS(1882), - [anon_sym___strong] = ACTIONS(1882), - [anon_sym___weak] = ACTIONS(1882), - [anon_sym___bridge] = ACTIONS(1882), - [anon_sym___bridge_transfer] = ACTIONS(1882), - [anon_sym___bridge_retained] = ACTIONS(1882), - [anon_sym___unsafe_unretained] = ACTIONS(1882), - [anon_sym___block] = ACTIONS(1882), - [anon_sym___kindof] = ACTIONS(1882), - [anon_sym___unused] = ACTIONS(1882), - [anon_sym__Complex] = ACTIONS(1882), - [anon_sym___complex] = ACTIONS(1882), - [anon_sym_IBOutlet] = ACTIONS(1882), - [anon_sym_IBInspectable] = ACTIONS(1882), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1882), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [sym_primitive_type] = ACTIONS(1882), - [anon_sym_enum] = ACTIONS(1882), - [anon_sym_NS_ENUM] = ACTIONS(1882), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1882), - [anon_sym_NS_OPTIONS] = ACTIONS(1882), - [anon_sym_struct] = ACTIONS(1882), - [anon_sym_union] = ACTIONS(1882), - [anon_sym_if] = ACTIONS(1882), - [anon_sym_switch] = ACTIONS(1882), - [anon_sym_case] = ACTIONS(1882), - [anon_sym_default] = ACTIONS(1882), - [anon_sym_while] = ACTIONS(1882), - [anon_sym_do] = ACTIONS(1882), - [anon_sym_for] = ACTIONS(1882), - [anon_sym_return] = ACTIONS(1882), - [anon_sym_break] = ACTIONS(1882), - [anon_sym_continue] = ACTIONS(1882), - [anon_sym_goto] = ACTIONS(1882), - [anon_sym_DASH_DASH] = ACTIONS(1884), - [anon_sym_PLUS_PLUS] = ACTIONS(1884), - [anon_sym_sizeof] = ACTIONS(1882), - [sym_number_literal] = ACTIONS(1884), - [anon_sym_L_SQUOTE] = ACTIONS(1884), - [anon_sym_u_SQUOTE] = ACTIONS(1884), - [anon_sym_U_SQUOTE] = ACTIONS(1884), - [anon_sym_u8_SQUOTE] = ACTIONS(1884), - [anon_sym_SQUOTE] = ACTIONS(1884), - [anon_sym_L_DQUOTE] = ACTIONS(1884), - [anon_sym_u_DQUOTE] = ACTIONS(1884), - [anon_sym_U_DQUOTE] = ACTIONS(1884), - [anon_sym_u8_DQUOTE] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [sym_true] = ACTIONS(1882), - [sym_false] = ACTIONS(1882), - [sym_null] = ACTIONS(1882), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1884), - [anon_sym_ATimport] = ACTIONS(1884), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1882), - [anon_sym_ATcompatibility_alias] = ACTIONS(1884), - [anon_sym_ATprotocol] = ACTIONS(1884), - [anon_sym_ATclass] = ACTIONS(1884), - [anon_sym_ATinterface] = ACTIONS(1884), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1882), - [sym_method_attribute_specifier] = ACTIONS(1882), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1882), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1882), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1882), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1882), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1882), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1882), - [anon_sym_NS_AVAILABLE] = ACTIONS(1882), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1882), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1882), - [anon_sym_API_AVAILABLE] = ACTIONS(1882), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1882), - [anon_sym_API_DEPRECATED] = ACTIONS(1882), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1882), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1882), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1882), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1882), - [anon_sym___deprecated_msg] = ACTIONS(1882), - [anon_sym___deprecated_enum_msg] = ACTIONS(1882), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1882), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1882), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1882), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1882), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1882), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1882), - [anon_sym_ATimplementation] = ACTIONS(1884), - [anon_sym_typeof] = ACTIONS(1882), - [anon_sym___typeof] = ACTIONS(1882), - [anon_sym___typeof__] = ACTIONS(1882), - [sym_self] = ACTIONS(1882), - [sym_super] = ACTIONS(1882), - [sym_nil] = ACTIONS(1882), - [sym_id] = ACTIONS(1882), - [sym_instancetype] = ACTIONS(1882), - [sym_Class] = ACTIONS(1882), - [sym_SEL] = ACTIONS(1882), - [sym_IMP] = ACTIONS(1882), - [sym_BOOL] = ACTIONS(1882), - [sym_auto] = ACTIONS(1882), - [anon_sym_ATautoreleasepool] = ACTIONS(1884), - [anon_sym_ATsynchronized] = ACTIONS(1884), - [anon_sym_ATtry] = ACTIONS(1884), - [anon_sym_ATthrow] = ACTIONS(1884), - [anon_sym_ATselector] = ACTIONS(1884), - [anon_sym_ATencode] = ACTIONS(1884), - [anon_sym_AT] = ACTIONS(1882), - [sym_YES] = ACTIONS(1882), - [sym_NO] = ACTIONS(1882), - [anon_sym___builtin_available] = ACTIONS(1882), - [anon_sym_ATavailable] = ACTIONS(1884), - [anon_sym_va_arg] = ACTIONS(1882), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [963] = { - [ts_builtin_sym_end] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [964] = { - [ts_builtin_sym_end] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [965] = { - [ts_builtin_sym_end] = ACTIONS(1848), - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [966] = { - [ts_builtin_sym_end] = ACTIONS(1848), - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [967] = { - [ts_builtin_sym_end] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [968] = { - [ts_builtin_sym_end] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [969] = { - [ts_builtin_sym_end] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [970] = { - [ts_builtin_sym_end] = ACTIONS(1848), - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [971] = { - [ts_builtin_sym_end] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [972] = { - [ts_builtin_sym_end] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [973] = { - [ts_builtin_sym_end] = ACTIONS(1848), - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [974] = { - [ts_builtin_sym_end] = ACTIONS(1848), - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [975] = { - [ts_builtin_sym_end] = ACTIONS(1844), - [sym_identifier] = ACTIONS(1842), - [aux_sym_preproc_include_token1] = ACTIONS(1844), - [aux_sym_preproc_def_token1] = ACTIONS(1844), - [aux_sym_preproc_if_token1] = ACTIONS(1842), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1842), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1842), - [anon_sym_LPAREN2] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_TILDE] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym_AMP] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1844), - [anon_sym_typedef] = ACTIONS(1842), - [anon_sym_extern] = ACTIONS(1842), - [anon_sym___attribute] = ACTIONS(1842), - [anon_sym___attribute__] = ACTIONS(1842), - [anon_sym___declspec] = ACTIONS(1842), - [anon_sym___cdecl] = ACTIONS(1842), - [anon_sym___clrcall] = ACTIONS(1842), - [anon_sym___stdcall] = ACTIONS(1842), - [anon_sym___fastcall] = ACTIONS(1842), - [anon_sym___thiscall] = ACTIONS(1842), - [anon_sym___vectorcall] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1844), - [anon_sym_RBRACE] = ACTIONS(1844), - [anon_sym_LBRACK] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1842), - [anon_sym_auto] = ACTIONS(1842), - [anon_sym_register] = ACTIONS(1842), - [anon_sym_inline] = ACTIONS(1842), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1842), - [anon_sym_const] = ACTIONS(1842), - [anon_sym_volatile] = ACTIONS(1842), - [anon_sym_restrict] = ACTIONS(1842), - [anon_sym__Atomic] = ACTIONS(1842), - [anon_sym_in] = ACTIONS(1842), - [anon_sym_out] = ACTIONS(1842), - [anon_sym_inout] = ACTIONS(1842), - [anon_sym_bycopy] = ACTIONS(1842), - [anon_sym_byref] = ACTIONS(1842), - [anon_sym_oneway] = ACTIONS(1842), - [anon_sym__Nullable] = ACTIONS(1842), - [anon_sym__Nonnull] = ACTIONS(1842), - [anon_sym__Nullable_result] = ACTIONS(1842), - [anon_sym__Null_unspecified] = ACTIONS(1842), - [anon_sym___autoreleasing] = ACTIONS(1842), - [anon_sym___nullable] = ACTIONS(1842), - [anon_sym___nonnull] = ACTIONS(1842), - [anon_sym___strong] = ACTIONS(1842), - [anon_sym___weak] = ACTIONS(1842), - [anon_sym___bridge] = ACTIONS(1842), - [anon_sym___bridge_transfer] = ACTIONS(1842), - [anon_sym___bridge_retained] = ACTIONS(1842), - [anon_sym___unsafe_unretained] = ACTIONS(1842), - [anon_sym___block] = ACTIONS(1842), - [anon_sym___kindof] = ACTIONS(1842), - [anon_sym___unused] = ACTIONS(1842), - [anon_sym__Complex] = ACTIONS(1842), - [anon_sym___complex] = ACTIONS(1842), - [anon_sym_IBOutlet] = ACTIONS(1842), - [anon_sym_IBInspectable] = ACTIONS(1842), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1842), - [anon_sym_signed] = ACTIONS(1842), - [anon_sym_unsigned] = ACTIONS(1842), - [anon_sym_long] = ACTIONS(1842), - [anon_sym_short] = ACTIONS(1842), - [sym_primitive_type] = ACTIONS(1842), - [anon_sym_enum] = ACTIONS(1842), - [anon_sym_NS_ENUM] = ACTIONS(1842), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1842), - [anon_sym_NS_OPTIONS] = ACTIONS(1842), - [anon_sym_struct] = ACTIONS(1842), - [anon_sym_union] = ACTIONS(1842), - [anon_sym_if] = ACTIONS(1842), - [anon_sym_switch] = ACTIONS(1842), - [anon_sym_case] = ACTIONS(1842), - [anon_sym_default] = ACTIONS(1842), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(1842), - [anon_sym_for] = ACTIONS(1842), - [anon_sym_return] = ACTIONS(1842), - [anon_sym_break] = ACTIONS(1842), - [anon_sym_continue] = ACTIONS(1842), - [anon_sym_goto] = ACTIONS(1842), - [anon_sym_DASH_DASH] = ACTIONS(1844), - [anon_sym_PLUS_PLUS] = ACTIONS(1844), - [anon_sym_sizeof] = ACTIONS(1842), - [sym_number_literal] = ACTIONS(1844), - [anon_sym_L_SQUOTE] = ACTIONS(1844), - [anon_sym_u_SQUOTE] = ACTIONS(1844), - [anon_sym_U_SQUOTE] = ACTIONS(1844), - [anon_sym_u8_SQUOTE] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_L_DQUOTE] = ACTIONS(1844), - [anon_sym_u_DQUOTE] = ACTIONS(1844), - [anon_sym_U_DQUOTE] = ACTIONS(1844), - [anon_sym_u8_DQUOTE] = ACTIONS(1844), - [anon_sym_DQUOTE] = ACTIONS(1844), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [sym_null] = ACTIONS(1842), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1844), - [anon_sym_ATimport] = ACTIONS(1844), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1842), - [anon_sym_ATcompatibility_alias] = ACTIONS(1844), - [anon_sym_ATprotocol] = ACTIONS(1844), - [anon_sym_ATclass] = ACTIONS(1844), - [anon_sym_ATinterface] = ACTIONS(1844), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1842), - [sym_method_attribute_specifier] = ACTIONS(1842), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1842), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1842), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1842), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1842), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1842), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1842), - [anon_sym_NS_AVAILABLE] = ACTIONS(1842), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1842), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1842), - [anon_sym_API_AVAILABLE] = ACTIONS(1842), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1842), - [anon_sym_API_DEPRECATED] = ACTIONS(1842), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1842), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1842), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1842), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1842), - [anon_sym___deprecated_msg] = ACTIONS(1842), - [anon_sym___deprecated_enum_msg] = ACTIONS(1842), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1842), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1842), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1842), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1842), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1842), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1842), - [anon_sym_ATimplementation] = ACTIONS(1844), - [anon_sym_typeof] = ACTIONS(1842), - [anon_sym___typeof] = ACTIONS(1842), - [anon_sym___typeof__] = ACTIONS(1842), - [sym_self] = ACTIONS(1842), - [sym_super] = ACTIONS(1842), - [sym_nil] = ACTIONS(1842), - [sym_id] = ACTIONS(1842), - [sym_instancetype] = ACTIONS(1842), - [sym_Class] = ACTIONS(1842), - [sym_SEL] = ACTIONS(1842), - [sym_IMP] = ACTIONS(1842), - [sym_BOOL] = ACTIONS(1842), - [sym_auto] = ACTIONS(1842), - [anon_sym_ATautoreleasepool] = ACTIONS(1844), - [anon_sym_ATsynchronized] = ACTIONS(1844), - [anon_sym_ATtry] = ACTIONS(1844), - [anon_sym_ATthrow] = ACTIONS(1844), - [anon_sym_ATselector] = ACTIONS(1844), - [anon_sym_ATencode] = ACTIONS(1844), - [anon_sym_AT] = ACTIONS(1842), - [sym_YES] = ACTIONS(1842), - [sym_NO] = ACTIONS(1842), - [anon_sym___builtin_available] = ACTIONS(1842), - [anon_sym_ATavailable] = ACTIONS(1844), - [anon_sym_va_arg] = ACTIONS(1842), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [976] = { - [ts_builtin_sym_end] = ACTIONS(1832), - [sym_identifier] = ACTIONS(1830), - [aux_sym_preproc_include_token1] = ACTIONS(1832), - [aux_sym_preproc_def_token1] = ACTIONS(1832), - [aux_sym_preproc_if_token1] = ACTIONS(1830), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1830), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1830), - [anon_sym_LPAREN2] = ACTIONS(1832), - [anon_sym_BANG] = ACTIONS(1832), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1832), - [anon_sym_CARET] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_typedef] = ACTIONS(1830), - [anon_sym_extern] = ACTIONS(1830), - [anon_sym___attribute] = ACTIONS(1830), - [anon_sym___attribute__] = ACTIONS(1830), - [anon_sym___declspec] = ACTIONS(1830), - [anon_sym___cdecl] = ACTIONS(1830), - [anon_sym___clrcall] = ACTIONS(1830), - [anon_sym___stdcall] = ACTIONS(1830), - [anon_sym___fastcall] = ACTIONS(1830), - [anon_sym___thiscall] = ACTIONS(1830), - [anon_sym___vectorcall] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1832), - [anon_sym_RBRACE] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1832), - [anon_sym_static] = ACTIONS(1830), - [anon_sym_auto] = ACTIONS(1830), - [anon_sym_register] = ACTIONS(1830), - [anon_sym_inline] = ACTIONS(1830), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1830), - [anon_sym_const] = ACTIONS(1830), - [anon_sym_volatile] = ACTIONS(1830), - [anon_sym_restrict] = ACTIONS(1830), - [anon_sym__Atomic] = ACTIONS(1830), - [anon_sym_in] = ACTIONS(1830), - [anon_sym_out] = ACTIONS(1830), - [anon_sym_inout] = ACTIONS(1830), - [anon_sym_bycopy] = ACTIONS(1830), - [anon_sym_byref] = ACTIONS(1830), - [anon_sym_oneway] = ACTIONS(1830), - [anon_sym__Nullable] = ACTIONS(1830), - [anon_sym__Nonnull] = ACTIONS(1830), - [anon_sym__Nullable_result] = ACTIONS(1830), - [anon_sym__Null_unspecified] = ACTIONS(1830), - [anon_sym___autoreleasing] = ACTIONS(1830), - [anon_sym___nullable] = ACTIONS(1830), - [anon_sym___nonnull] = ACTIONS(1830), - [anon_sym___strong] = ACTIONS(1830), - [anon_sym___weak] = ACTIONS(1830), - [anon_sym___bridge] = ACTIONS(1830), - [anon_sym___bridge_transfer] = ACTIONS(1830), - [anon_sym___bridge_retained] = ACTIONS(1830), - [anon_sym___unsafe_unretained] = ACTIONS(1830), - [anon_sym___block] = ACTIONS(1830), - [anon_sym___kindof] = ACTIONS(1830), - [anon_sym___unused] = ACTIONS(1830), - [anon_sym__Complex] = ACTIONS(1830), - [anon_sym___complex] = ACTIONS(1830), - [anon_sym_IBOutlet] = ACTIONS(1830), - [anon_sym_IBInspectable] = ACTIONS(1830), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1830), - [anon_sym_signed] = ACTIONS(1830), - [anon_sym_unsigned] = ACTIONS(1830), - [anon_sym_long] = ACTIONS(1830), - [anon_sym_short] = ACTIONS(1830), - [sym_primitive_type] = ACTIONS(1830), - [anon_sym_enum] = ACTIONS(1830), - [anon_sym_NS_ENUM] = ACTIONS(1830), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1830), - [anon_sym_NS_OPTIONS] = ACTIONS(1830), - [anon_sym_struct] = ACTIONS(1830), - [anon_sym_union] = ACTIONS(1830), - [anon_sym_if] = ACTIONS(1830), - [anon_sym_switch] = ACTIONS(1830), - [anon_sym_case] = ACTIONS(1830), - [anon_sym_default] = ACTIONS(1830), - [anon_sym_while] = ACTIONS(1830), - [anon_sym_do] = ACTIONS(1830), - [anon_sym_for] = ACTIONS(1830), - [anon_sym_return] = ACTIONS(1830), - [anon_sym_break] = ACTIONS(1830), - [anon_sym_continue] = ACTIONS(1830), - [anon_sym_goto] = ACTIONS(1830), - [anon_sym_DASH_DASH] = ACTIONS(1832), - [anon_sym_PLUS_PLUS] = ACTIONS(1832), - [anon_sym_sizeof] = ACTIONS(1830), - [sym_number_literal] = ACTIONS(1832), - [anon_sym_L_SQUOTE] = ACTIONS(1832), - [anon_sym_u_SQUOTE] = ACTIONS(1832), - [anon_sym_U_SQUOTE] = ACTIONS(1832), - [anon_sym_u8_SQUOTE] = ACTIONS(1832), - [anon_sym_SQUOTE] = ACTIONS(1832), - [anon_sym_L_DQUOTE] = ACTIONS(1832), - [anon_sym_u_DQUOTE] = ACTIONS(1832), - [anon_sym_U_DQUOTE] = ACTIONS(1832), - [anon_sym_u8_DQUOTE] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [sym_true] = ACTIONS(1830), - [sym_false] = ACTIONS(1830), - [sym_null] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1832), - [anon_sym_ATimport] = ACTIONS(1832), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1830), - [anon_sym_ATcompatibility_alias] = ACTIONS(1832), - [anon_sym_ATprotocol] = ACTIONS(1832), - [anon_sym_ATclass] = ACTIONS(1832), - [anon_sym_ATinterface] = ACTIONS(1832), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1830), - [sym_method_attribute_specifier] = ACTIONS(1830), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1830), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1830), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1830), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1830), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1830), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1830), - [anon_sym_NS_AVAILABLE] = ACTIONS(1830), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1830), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1830), - [anon_sym_API_AVAILABLE] = ACTIONS(1830), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1830), - [anon_sym_API_DEPRECATED] = ACTIONS(1830), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1830), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1830), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1830), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1830), - [anon_sym___deprecated_msg] = ACTIONS(1830), - [anon_sym___deprecated_enum_msg] = ACTIONS(1830), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1830), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1830), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1830), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1830), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1830), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1830), - [anon_sym_ATimplementation] = ACTIONS(1832), - [anon_sym_typeof] = ACTIONS(1830), - [anon_sym___typeof] = ACTIONS(1830), - [anon_sym___typeof__] = ACTIONS(1830), - [sym_self] = ACTIONS(1830), - [sym_super] = ACTIONS(1830), - [sym_nil] = ACTIONS(1830), - [sym_id] = ACTIONS(1830), - [sym_instancetype] = ACTIONS(1830), - [sym_Class] = ACTIONS(1830), - [sym_SEL] = ACTIONS(1830), - [sym_IMP] = ACTIONS(1830), - [sym_BOOL] = ACTIONS(1830), - [sym_auto] = ACTIONS(1830), - [anon_sym_ATautoreleasepool] = ACTIONS(1832), - [anon_sym_ATsynchronized] = ACTIONS(1832), - [anon_sym_ATtry] = ACTIONS(1832), - [anon_sym_ATthrow] = ACTIONS(1832), - [anon_sym_ATselector] = ACTIONS(1832), - [anon_sym_ATencode] = ACTIONS(1832), - [anon_sym_AT] = ACTIONS(1830), - [sym_YES] = ACTIONS(1830), - [sym_NO] = ACTIONS(1830), - [anon_sym___builtin_available] = ACTIONS(1830), - [anon_sym_ATavailable] = ACTIONS(1832), - [anon_sym_va_arg] = ACTIONS(1830), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [977] = { - [ts_builtin_sym_end] = ACTIONS(1816), - [sym_identifier] = ACTIONS(1814), - [aux_sym_preproc_include_token1] = ACTIONS(1816), - [aux_sym_preproc_def_token1] = ACTIONS(1816), - [aux_sym_preproc_if_token1] = ACTIONS(1814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1814), - [anon_sym_LPAREN2] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_TILDE] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym_AMP] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1816), - [anon_sym_typedef] = ACTIONS(1814), - [anon_sym_extern] = ACTIONS(1814), - [anon_sym___attribute] = ACTIONS(1814), - [anon_sym___attribute__] = ACTIONS(1814), - [anon_sym___declspec] = ACTIONS(1814), - [anon_sym___cdecl] = ACTIONS(1814), - [anon_sym___clrcall] = ACTIONS(1814), - [anon_sym___stdcall] = ACTIONS(1814), - [anon_sym___fastcall] = ACTIONS(1814), - [anon_sym___thiscall] = ACTIONS(1814), - [anon_sym___vectorcall] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_LBRACK] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1814), - [anon_sym_auto] = ACTIONS(1814), - [anon_sym_register] = ACTIONS(1814), - [anon_sym_inline] = ACTIONS(1814), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1814), - [anon_sym_const] = ACTIONS(1814), - [anon_sym_volatile] = ACTIONS(1814), - [anon_sym_restrict] = ACTIONS(1814), - [anon_sym__Atomic] = ACTIONS(1814), - [anon_sym_in] = ACTIONS(1814), - [anon_sym_out] = ACTIONS(1814), - [anon_sym_inout] = ACTIONS(1814), - [anon_sym_bycopy] = ACTIONS(1814), - [anon_sym_byref] = ACTIONS(1814), - [anon_sym_oneway] = ACTIONS(1814), - [anon_sym__Nullable] = ACTIONS(1814), - [anon_sym__Nonnull] = ACTIONS(1814), - [anon_sym__Nullable_result] = ACTIONS(1814), - [anon_sym__Null_unspecified] = ACTIONS(1814), - [anon_sym___autoreleasing] = ACTIONS(1814), - [anon_sym___nullable] = ACTIONS(1814), - [anon_sym___nonnull] = ACTIONS(1814), - [anon_sym___strong] = ACTIONS(1814), - [anon_sym___weak] = ACTIONS(1814), - [anon_sym___bridge] = ACTIONS(1814), - [anon_sym___bridge_transfer] = ACTIONS(1814), - [anon_sym___bridge_retained] = ACTIONS(1814), - [anon_sym___unsafe_unretained] = ACTIONS(1814), - [anon_sym___block] = ACTIONS(1814), - [anon_sym___kindof] = ACTIONS(1814), - [anon_sym___unused] = ACTIONS(1814), - [anon_sym__Complex] = ACTIONS(1814), - [anon_sym___complex] = ACTIONS(1814), - [anon_sym_IBOutlet] = ACTIONS(1814), - [anon_sym_IBInspectable] = ACTIONS(1814), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1814), - [anon_sym_signed] = ACTIONS(1814), - [anon_sym_unsigned] = ACTIONS(1814), - [anon_sym_long] = ACTIONS(1814), - [anon_sym_short] = ACTIONS(1814), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1814), - [anon_sym_NS_ENUM] = ACTIONS(1814), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1814), - [anon_sym_NS_OPTIONS] = ACTIONS(1814), - [anon_sym_struct] = ACTIONS(1814), - [anon_sym_union] = ACTIONS(1814), - [anon_sym_if] = ACTIONS(1814), - [anon_sym_switch] = ACTIONS(1814), - [anon_sym_case] = ACTIONS(1814), - [anon_sym_default] = ACTIONS(1814), - [anon_sym_while] = ACTIONS(1814), - [anon_sym_do] = ACTIONS(1814), - [anon_sym_for] = ACTIONS(1814), - [anon_sym_return] = ACTIONS(1814), - [anon_sym_break] = ACTIONS(1814), - [anon_sym_continue] = ACTIONS(1814), - [anon_sym_goto] = ACTIONS(1814), - [anon_sym_DASH_DASH] = ACTIONS(1816), - [anon_sym_PLUS_PLUS] = ACTIONS(1816), - [anon_sym_sizeof] = ACTIONS(1814), - [sym_number_literal] = ACTIONS(1816), - [anon_sym_L_SQUOTE] = ACTIONS(1816), - [anon_sym_u_SQUOTE] = ACTIONS(1816), - [anon_sym_U_SQUOTE] = ACTIONS(1816), - [anon_sym_u8_SQUOTE] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_L_DQUOTE] = ACTIONS(1816), - [anon_sym_u_DQUOTE] = ACTIONS(1816), - [anon_sym_U_DQUOTE] = ACTIONS(1816), - [anon_sym_u8_DQUOTE] = ACTIONS(1816), - [anon_sym_DQUOTE] = ACTIONS(1816), - [sym_true] = ACTIONS(1814), - [sym_false] = ACTIONS(1814), - [sym_null] = ACTIONS(1814), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1816), - [anon_sym_ATimport] = ACTIONS(1816), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1814), - [anon_sym_ATcompatibility_alias] = ACTIONS(1816), - [anon_sym_ATprotocol] = ACTIONS(1816), - [anon_sym_ATclass] = ACTIONS(1816), - [anon_sym_ATinterface] = ACTIONS(1816), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1814), - [sym_method_attribute_specifier] = ACTIONS(1814), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1814), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1814), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1814), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1814), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1814), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1814), - [anon_sym_NS_AVAILABLE] = ACTIONS(1814), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1814), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1814), - [anon_sym_API_AVAILABLE] = ACTIONS(1814), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1814), - [anon_sym_API_DEPRECATED] = ACTIONS(1814), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1814), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1814), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1814), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1814), - [anon_sym___deprecated_msg] = ACTIONS(1814), - [anon_sym___deprecated_enum_msg] = ACTIONS(1814), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1814), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1814), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1814), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1814), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1814), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1814), - [anon_sym_ATimplementation] = ACTIONS(1816), - [anon_sym_typeof] = ACTIONS(1814), - [anon_sym___typeof] = ACTIONS(1814), - [anon_sym___typeof__] = ACTIONS(1814), - [sym_self] = ACTIONS(1814), - [sym_super] = ACTIONS(1814), - [sym_nil] = ACTIONS(1814), - [sym_id] = ACTIONS(1814), - [sym_instancetype] = ACTIONS(1814), - [sym_Class] = ACTIONS(1814), - [sym_SEL] = ACTIONS(1814), - [sym_IMP] = ACTIONS(1814), - [sym_BOOL] = ACTIONS(1814), - [sym_auto] = ACTIONS(1814), - [anon_sym_ATautoreleasepool] = ACTIONS(1816), - [anon_sym_ATsynchronized] = ACTIONS(1816), - [anon_sym_ATtry] = ACTIONS(1816), - [anon_sym_ATthrow] = ACTIONS(1816), - [anon_sym_ATselector] = ACTIONS(1816), - [anon_sym_ATencode] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(1814), - [sym_YES] = ACTIONS(1814), - [sym_NO] = ACTIONS(1814), - [anon_sym___builtin_available] = ACTIONS(1814), - [anon_sym_ATavailable] = ACTIONS(1816), - [anon_sym_va_arg] = ACTIONS(1814), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [978] = { - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [979] = { - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [980] = { - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [981] = { - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [982] = { - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [983] = { - [ts_builtin_sym_end] = ACTIONS(2180), - [sym_identifier] = ACTIONS(2178), - [aux_sym_preproc_include_token1] = ACTIONS(2180), - [aux_sym_preproc_def_token1] = ACTIONS(2180), - [aux_sym_preproc_if_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), - [anon_sym_LPAREN2] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_typedef] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym___attribute] = ACTIONS(2178), - [anon_sym___attribute__] = ACTIONS(2178), - [anon_sym___declspec] = ACTIONS(2178), - [anon_sym___cdecl] = ACTIONS(2178), - [anon_sym___clrcall] = ACTIONS(2178), - [anon_sym___stdcall] = ACTIONS(2178), - [anon_sym___fastcall] = ACTIONS(2178), - [anon_sym___thiscall] = ACTIONS(2178), - [anon_sym___vectorcall] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_RBRACE] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_auto] = ACTIONS(2178), - [anon_sym_register] = ACTIONS(2178), - [anon_sym_inline] = ACTIONS(2178), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_volatile] = ACTIONS(2178), - [anon_sym_restrict] = ACTIONS(2178), - [anon_sym__Atomic] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_out] = ACTIONS(2178), - [anon_sym_inout] = ACTIONS(2178), - [anon_sym_bycopy] = ACTIONS(2178), - [anon_sym_byref] = ACTIONS(2178), - [anon_sym_oneway] = ACTIONS(2178), - [anon_sym__Nullable] = ACTIONS(2178), - [anon_sym__Nonnull] = ACTIONS(2178), - [anon_sym__Nullable_result] = ACTIONS(2178), - [anon_sym__Null_unspecified] = ACTIONS(2178), - [anon_sym___autoreleasing] = ACTIONS(2178), - [anon_sym___nullable] = ACTIONS(2178), - [anon_sym___nonnull] = ACTIONS(2178), - [anon_sym___strong] = ACTIONS(2178), - [anon_sym___weak] = ACTIONS(2178), - [anon_sym___bridge] = ACTIONS(2178), - [anon_sym___bridge_transfer] = ACTIONS(2178), - [anon_sym___bridge_retained] = ACTIONS(2178), - [anon_sym___unsafe_unretained] = ACTIONS(2178), - [anon_sym___block] = ACTIONS(2178), - [anon_sym___kindof] = ACTIONS(2178), - [anon_sym___unused] = ACTIONS(2178), - [anon_sym__Complex] = ACTIONS(2178), - [anon_sym___complex] = ACTIONS(2178), - [anon_sym_IBOutlet] = ACTIONS(2178), - [anon_sym_IBInspectable] = ACTIONS(2178), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2178), - [anon_sym_signed] = ACTIONS(2178), - [anon_sym_unsigned] = ACTIONS(2178), - [anon_sym_long] = ACTIONS(2178), - [anon_sym_short] = ACTIONS(2178), - [sym_primitive_type] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_NS_ENUM] = ACTIONS(2178), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2178), - [anon_sym_NS_OPTIONS] = ACTIONS(2178), - [anon_sym_struct] = ACTIONS(2178), - [anon_sym_union] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_goto] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(2180), - [anon_sym_sizeof] = ACTIONS(2178), - [sym_number_literal] = ACTIONS(2180), - [anon_sym_L_SQUOTE] = ACTIONS(2180), - [anon_sym_u_SQUOTE] = ACTIONS(2180), - [anon_sym_U_SQUOTE] = ACTIONS(2180), - [anon_sym_u8_SQUOTE] = ACTIONS(2180), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_L_DQUOTE] = ACTIONS(2180), - [anon_sym_u_DQUOTE] = ACTIONS(2180), - [anon_sym_U_DQUOTE] = ACTIONS(2180), - [anon_sym_u8_DQUOTE] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2180), - [anon_sym_ATimport] = ACTIONS(2180), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2178), - [anon_sym_ATcompatibility_alias] = ACTIONS(2180), - [anon_sym_ATprotocol] = ACTIONS(2180), - [anon_sym_ATclass] = ACTIONS(2180), - [anon_sym_ATinterface] = ACTIONS(2180), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2178), - [sym_method_attribute_specifier] = ACTIONS(2178), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2178), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE] = ACTIONS(2178), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_API_AVAILABLE] = ACTIONS(2178), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_API_DEPRECATED] = ACTIONS(2178), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2178), - [anon_sym___deprecated_msg] = ACTIONS(2178), - [anon_sym___deprecated_enum_msg] = ACTIONS(2178), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2178), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2178), - [anon_sym_ATimplementation] = ACTIONS(2180), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym___typeof] = ACTIONS(2178), - [anon_sym___typeof__] = ACTIONS(2178), - [sym_self] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_nil] = ACTIONS(2178), - [sym_id] = ACTIONS(2178), - [sym_instancetype] = ACTIONS(2178), - [sym_Class] = ACTIONS(2178), - [sym_SEL] = ACTIONS(2178), - [sym_IMP] = ACTIONS(2178), - [sym_BOOL] = ACTIONS(2178), - [sym_auto] = ACTIONS(2178), - [anon_sym_ATautoreleasepool] = ACTIONS(2180), - [anon_sym_ATsynchronized] = ACTIONS(2180), - [anon_sym_ATtry] = ACTIONS(2180), - [anon_sym_ATthrow] = ACTIONS(2180), - [anon_sym_ATselector] = ACTIONS(2180), - [anon_sym_ATencode] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2178), - [sym_YES] = ACTIONS(2178), - [sym_NO] = ACTIONS(2178), - [anon_sym___builtin_available] = ACTIONS(2178), - [anon_sym_ATavailable] = ACTIONS(2180), - [anon_sym_va_arg] = ACTIONS(2178), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [984] = { - [ts_builtin_sym_end] = ACTIONS(1900), - [sym_identifier] = ACTIONS(1898), - [aux_sym_preproc_include_token1] = ACTIONS(1900), - [aux_sym_preproc_def_token1] = ACTIONS(1900), - [aux_sym_preproc_if_token1] = ACTIONS(1898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1898), - [anon_sym_LPAREN2] = ACTIONS(1900), - [anon_sym_BANG] = ACTIONS(1900), - [anon_sym_TILDE] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1900), - [anon_sym_CARET] = ACTIONS(1900), - [anon_sym_AMP] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1900), - [anon_sym_typedef] = ACTIONS(1898), - [anon_sym_extern] = ACTIONS(1898), - [anon_sym___attribute] = ACTIONS(1898), - [anon_sym___attribute__] = ACTIONS(1898), - [anon_sym___declspec] = ACTIONS(1898), - [anon_sym___cdecl] = ACTIONS(1898), - [anon_sym___clrcall] = ACTIONS(1898), - [anon_sym___stdcall] = ACTIONS(1898), - [anon_sym___fastcall] = ACTIONS(1898), - [anon_sym___thiscall] = ACTIONS(1898), - [anon_sym___vectorcall] = ACTIONS(1898), - [anon_sym_LBRACE] = ACTIONS(1900), - [anon_sym_RBRACE] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1900), - [anon_sym_static] = ACTIONS(1898), - [anon_sym_auto] = ACTIONS(1898), - [anon_sym_register] = ACTIONS(1898), - [anon_sym_inline] = ACTIONS(1898), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1898), - [anon_sym_const] = ACTIONS(1898), - [anon_sym_volatile] = ACTIONS(1898), - [anon_sym_restrict] = ACTIONS(1898), - [anon_sym__Atomic] = ACTIONS(1898), - [anon_sym_in] = ACTIONS(1898), - [anon_sym_out] = ACTIONS(1898), - [anon_sym_inout] = ACTIONS(1898), - [anon_sym_bycopy] = ACTIONS(1898), - [anon_sym_byref] = ACTIONS(1898), - [anon_sym_oneway] = ACTIONS(1898), - [anon_sym__Nullable] = ACTIONS(1898), - [anon_sym__Nonnull] = ACTIONS(1898), - [anon_sym__Nullable_result] = ACTIONS(1898), - [anon_sym__Null_unspecified] = ACTIONS(1898), - [anon_sym___autoreleasing] = ACTIONS(1898), - [anon_sym___nullable] = ACTIONS(1898), - [anon_sym___nonnull] = ACTIONS(1898), - [anon_sym___strong] = ACTIONS(1898), - [anon_sym___weak] = ACTIONS(1898), - [anon_sym___bridge] = ACTIONS(1898), - [anon_sym___bridge_transfer] = ACTIONS(1898), - [anon_sym___bridge_retained] = ACTIONS(1898), - [anon_sym___unsafe_unretained] = ACTIONS(1898), - [anon_sym___block] = ACTIONS(1898), - [anon_sym___kindof] = ACTIONS(1898), - [anon_sym___unused] = ACTIONS(1898), - [anon_sym__Complex] = ACTIONS(1898), - [anon_sym___complex] = ACTIONS(1898), - [anon_sym_IBOutlet] = ACTIONS(1898), - [anon_sym_IBInspectable] = ACTIONS(1898), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1898), - [anon_sym_signed] = ACTIONS(1898), - [anon_sym_unsigned] = ACTIONS(1898), - [anon_sym_long] = ACTIONS(1898), - [anon_sym_short] = ACTIONS(1898), - [sym_primitive_type] = ACTIONS(1898), - [anon_sym_enum] = ACTIONS(1898), - [anon_sym_NS_ENUM] = ACTIONS(1898), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1898), - [anon_sym_NS_OPTIONS] = ACTIONS(1898), - [anon_sym_struct] = ACTIONS(1898), - [anon_sym_union] = ACTIONS(1898), - [anon_sym_if] = ACTIONS(1898), - [anon_sym_switch] = ACTIONS(1898), - [anon_sym_case] = ACTIONS(1898), - [anon_sym_default] = ACTIONS(1898), - [anon_sym_while] = ACTIONS(1898), - [anon_sym_do] = ACTIONS(1898), - [anon_sym_for] = ACTIONS(1898), - [anon_sym_return] = ACTIONS(1898), - [anon_sym_break] = ACTIONS(1898), - [anon_sym_continue] = ACTIONS(1898), - [anon_sym_goto] = ACTIONS(1898), - [anon_sym_DASH_DASH] = ACTIONS(1900), - [anon_sym_PLUS_PLUS] = ACTIONS(1900), - [anon_sym_sizeof] = ACTIONS(1898), - [sym_number_literal] = ACTIONS(1900), - [anon_sym_L_SQUOTE] = ACTIONS(1900), - [anon_sym_u_SQUOTE] = ACTIONS(1900), - [anon_sym_U_SQUOTE] = ACTIONS(1900), - [anon_sym_u8_SQUOTE] = ACTIONS(1900), - [anon_sym_SQUOTE] = ACTIONS(1900), - [anon_sym_L_DQUOTE] = ACTIONS(1900), - [anon_sym_u_DQUOTE] = ACTIONS(1900), - [anon_sym_U_DQUOTE] = ACTIONS(1900), - [anon_sym_u8_DQUOTE] = ACTIONS(1900), - [anon_sym_DQUOTE] = ACTIONS(1900), - [sym_true] = ACTIONS(1898), - [sym_false] = ACTIONS(1898), - [sym_null] = ACTIONS(1898), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1900), - [anon_sym_ATimport] = ACTIONS(1900), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1898), - [anon_sym_ATcompatibility_alias] = ACTIONS(1900), - [anon_sym_ATprotocol] = ACTIONS(1900), - [anon_sym_ATclass] = ACTIONS(1900), - [anon_sym_ATinterface] = ACTIONS(1900), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1898), - [sym_method_attribute_specifier] = ACTIONS(1898), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1898), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1898), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1898), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1898), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1898), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1898), - [anon_sym_NS_AVAILABLE] = ACTIONS(1898), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1898), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1898), - [anon_sym_API_AVAILABLE] = ACTIONS(1898), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1898), - [anon_sym_API_DEPRECATED] = ACTIONS(1898), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1898), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1898), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1898), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1898), - [anon_sym___deprecated_msg] = ACTIONS(1898), - [anon_sym___deprecated_enum_msg] = ACTIONS(1898), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1898), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1898), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1898), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1898), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1898), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1898), - [anon_sym_ATimplementation] = ACTIONS(1900), - [anon_sym_typeof] = ACTIONS(1898), - [anon_sym___typeof] = ACTIONS(1898), - [anon_sym___typeof__] = ACTIONS(1898), - [sym_self] = ACTIONS(1898), - [sym_super] = ACTIONS(1898), - [sym_nil] = ACTIONS(1898), - [sym_id] = ACTIONS(1898), - [sym_instancetype] = ACTIONS(1898), - [sym_Class] = ACTIONS(1898), - [sym_SEL] = ACTIONS(1898), - [sym_IMP] = ACTIONS(1898), - [sym_BOOL] = ACTIONS(1898), - [sym_auto] = ACTIONS(1898), - [anon_sym_ATautoreleasepool] = ACTIONS(1900), - [anon_sym_ATsynchronized] = ACTIONS(1900), - [anon_sym_ATtry] = ACTIONS(1900), - [anon_sym_ATthrow] = ACTIONS(1900), - [anon_sym_ATselector] = ACTIONS(1900), - [anon_sym_ATencode] = ACTIONS(1900), - [anon_sym_AT] = ACTIONS(1898), - [sym_YES] = ACTIONS(1898), - [sym_NO] = ACTIONS(1898), - [anon_sym___builtin_available] = ACTIONS(1898), - [anon_sym_ATavailable] = ACTIONS(1900), - [anon_sym_va_arg] = ACTIONS(1898), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [985] = { - [ts_builtin_sym_end] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [986] = { - [ts_builtin_sym_end] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [987] = { - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [988] = { - [ts_builtin_sym_end] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [989] = { - [ts_builtin_sym_end] = ACTIONS(2112), - [sym_identifier] = ACTIONS(2110), - [aux_sym_preproc_include_token1] = ACTIONS(2112), - [aux_sym_preproc_def_token1] = ACTIONS(2112), - [aux_sym_preproc_if_token1] = ACTIONS(2110), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2110), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2110), - [anon_sym_LPAREN2] = ACTIONS(2112), - [anon_sym_BANG] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2112), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_STAR] = ACTIONS(2112), - [anon_sym_CARET] = ACTIONS(2112), - [anon_sym_AMP] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_typedef] = ACTIONS(2110), - [anon_sym_extern] = ACTIONS(2110), - [anon_sym___attribute] = ACTIONS(2110), - [anon_sym___attribute__] = ACTIONS(2110), - [anon_sym___declspec] = ACTIONS(2110), - [anon_sym___cdecl] = ACTIONS(2110), - [anon_sym___clrcall] = ACTIONS(2110), - [anon_sym___stdcall] = ACTIONS(2110), - [anon_sym___fastcall] = ACTIONS(2110), - [anon_sym___thiscall] = ACTIONS(2110), - [anon_sym___vectorcall] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(2112), - [anon_sym_static] = ACTIONS(2110), - [anon_sym_auto] = ACTIONS(2110), - [anon_sym_register] = ACTIONS(2110), - [anon_sym_inline] = ACTIONS(2110), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2110), - [anon_sym_const] = ACTIONS(2110), - [anon_sym_volatile] = ACTIONS(2110), - [anon_sym_restrict] = ACTIONS(2110), - [anon_sym__Atomic] = ACTIONS(2110), - [anon_sym_in] = ACTIONS(2110), - [anon_sym_out] = ACTIONS(2110), - [anon_sym_inout] = ACTIONS(2110), - [anon_sym_bycopy] = ACTIONS(2110), - [anon_sym_byref] = ACTIONS(2110), - [anon_sym_oneway] = ACTIONS(2110), - [anon_sym__Nullable] = ACTIONS(2110), - [anon_sym__Nonnull] = ACTIONS(2110), - [anon_sym__Nullable_result] = ACTIONS(2110), - [anon_sym__Null_unspecified] = ACTIONS(2110), - [anon_sym___autoreleasing] = ACTIONS(2110), - [anon_sym___nullable] = ACTIONS(2110), - [anon_sym___nonnull] = ACTIONS(2110), - [anon_sym___strong] = ACTIONS(2110), - [anon_sym___weak] = ACTIONS(2110), - [anon_sym___bridge] = ACTIONS(2110), - [anon_sym___bridge_transfer] = ACTIONS(2110), - [anon_sym___bridge_retained] = ACTIONS(2110), - [anon_sym___unsafe_unretained] = ACTIONS(2110), - [anon_sym___block] = ACTIONS(2110), - [anon_sym___kindof] = ACTIONS(2110), - [anon_sym___unused] = ACTIONS(2110), - [anon_sym__Complex] = ACTIONS(2110), - [anon_sym___complex] = ACTIONS(2110), - [anon_sym_IBOutlet] = ACTIONS(2110), - [anon_sym_IBInspectable] = ACTIONS(2110), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2110), - [anon_sym_signed] = ACTIONS(2110), - [anon_sym_unsigned] = ACTIONS(2110), - [anon_sym_long] = ACTIONS(2110), - [anon_sym_short] = ACTIONS(2110), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_enum] = ACTIONS(2110), - [anon_sym_NS_ENUM] = ACTIONS(2110), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2110), - [anon_sym_NS_OPTIONS] = ACTIONS(2110), - [anon_sym_struct] = ACTIONS(2110), - [anon_sym_union] = ACTIONS(2110), - [anon_sym_if] = ACTIONS(2110), - [anon_sym_switch] = ACTIONS(2110), - [anon_sym_case] = ACTIONS(2110), - [anon_sym_default] = ACTIONS(2110), - [anon_sym_while] = ACTIONS(2110), - [anon_sym_do] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(2110), - [anon_sym_return] = ACTIONS(2110), - [anon_sym_break] = ACTIONS(2110), - [anon_sym_continue] = ACTIONS(2110), - [anon_sym_goto] = ACTIONS(2110), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2110), - [sym_number_literal] = ACTIONS(2112), - [anon_sym_L_SQUOTE] = ACTIONS(2112), - [anon_sym_u_SQUOTE] = ACTIONS(2112), - [anon_sym_U_SQUOTE] = ACTIONS(2112), - [anon_sym_u8_SQUOTE] = ACTIONS(2112), - [anon_sym_SQUOTE] = ACTIONS(2112), - [anon_sym_L_DQUOTE] = ACTIONS(2112), - [anon_sym_u_DQUOTE] = ACTIONS(2112), - [anon_sym_U_DQUOTE] = ACTIONS(2112), - [anon_sym_u8_DQUOTE] = ACTIONS(2112), - [anon_sym_DQUOTE] = ACTIONS(2112), - [sym_true] = ACTIONS(2110), - [sym_false] = ACTIONS(2110), - [sym_null] = ACTIONS(2110), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2112), - [anon_sym_ATimport] = ACTIONS(2112), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2110), - [anon_sym_ATcompatibility_alias] = ACTIONS(2112), - [anon_sym_ATprotocol] = ACTIONS(2112), - [anon_sym_ATclass] = ACTIONS(2112), - [anon_sym_ATinterface] = ACTIONS(2112), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2110), - [sym_method_attribute_specifier] = ACTIONS(2110), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2110), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2110), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2110), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2110), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2110), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2110), - [anon_sym_NS_AVAILABLE] = ACTIONS(2110), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2110), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2110), - [anon_sym_API_AVAILABLE] = ACTIONS(2110), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2110), - [anon_sym_API_DEPRECATED] = ACTIONS(2110), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2110), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2110), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2110), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2110), - [anon_sym___deprecated_msg] = ACTIONS(2110), - [anon_sym___deprecated_enum_msg] = ACTIONS(2110), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2110), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2110), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2110), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2110), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2110), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2110), - [anon_sym_ATimplementation] = ACTIONS(2112), - [anon_sym_typeof] = ACTIONS(2110), - [anon_sym___typeof] = ACTIONS(2110), - [anon_sym___typeof__] = ACTIONS(2110), - [sym_self] = ACTIONS(2110), - [sym_super] = ACTIONS(2110), - [sym_nil] = ACTIONS(2110), - [sym_id] = ACTIONS(2110), - [sym_instancetype] = ACTIONS(2110), - [sym_Class] = ACTIONS(2110), - [sym_SEL] = ACTIONS(2110), - [sym_IMP] = ACTIONS(2110), - [sym_BOOL] = ACTIONS(2110), - [sym_auto] = ACTIONS(2110), - [anon_sym_ATautoreleasepool] = ACTIONS(2112), - [anon_sym_ATsynchronized] = ACTIONS(2112), - [anon_sym_ATtry] = ACTIONS(2112), - [anon_sym_ATthrow] = ACTIONS(2112), - [anon_sym_ATselector] = ACTIONS(2112), - [anon_sym_ATencode] = ACTIONS(2112), - [anon_sym_AT] = ACTIONS(2110), - [sym_YES] = ACTIONS(2110), - [sym_NO] = ACTIONS(2110), - [anon_sym___builtin_available] = ACTIONS(2110), - [anon_sym_ATavailable] = ACTIONS(2112), - [anon_sym_va_arg] = ACTIONS(2110), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [990] = { - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [991] = { - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [992] = { - [ts_builtin_sym_end] = ACTIONS(2052), - [sym_identifier] = ACTIONS(2050), - [aux_sym_preproc_include_token1] = ACTIONS(2052), - [aux_sym_preproc_def_token1] = ACTIONS(2052), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2050), - [anon_sym_LPAREN2] = ACTIONS(2052), - [anon_sym_BANG] = ACTIONS(2052), - [anon_sym_TILDE] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_PLUS] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_typedef] = ACTIONS(2050), - [anon_sym_extern] = ACTIONS(2050), - [anon_sym___attribute] = ACTIONS(2050), - [anon_sym___attribute__] = ACTIONS(2050), - [anon_sym___declspec] = ACTIONS(2050), - [anon_sym___cdecl] = ACTIONS(2050), - [anon_sym___clrcall] = ACTIONS(2050), - [anon_sym___stdcall] = ACTIONS(2050), - [anon_sym___fastcall] = ACTIONS(2050), - [anon_sym___thiscall] = ACTIONS(2050), - [anon_sym___vectorcall] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_RBRACE] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2050), - [anon_sym_auto] = ACTIONS(2050), - [anon_sym_register] = ACTIONS(2050), - [anon_sym_inline] = ACTIONS(2050), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2050), - [anon_sym_const] = ACTIONS(2050), - [anon_sym_volatile] = ACTIONS(2050), - [anon_sym_restrict] = ACTIONS(2050), - [anon_sym__Atomic] = ACTIONS(2050), - [anon_sym_in] = ACTIONS(2050), - [anon_sym_out] = ACTIONS(2050), - [anon_sym_inout] = ACTIONS(2050), - [anon_sym_bycopy] = ACTIONS(2050), - [anon_sym_byref] = ACTIONS(2050), - [anon_sym_oneway] = ACTIONS(2050), - [anon_sym__Nullable] = ACTIONS(2050), - [anon_sym__Nonnull] = ACTIONS(2050), - [anon_sym__Nullable_result] = ACTIONS(2050), - [anon_sym__Null_unspecified] = ACTIONS(2050), - [anon_sym___autoreleasing] = ACTIONS(2050), - [anon_sym___nullable] = ACTIONS(2050), - [anon_sym___nonnull] = ACTIONS(2050), - [anon_sym___strong] = ACTIONS(2050), - [anon_sym___weak] = ACTIONS(2050), - [anon_sym___bridge] = ACTIONS(2050), - [anon_sym___bridge_transfer] = ACTIONS(2050), - [anon_sym___bridge_retained] = ACTIONS(2050), - [anon_sym___unsafe_unretained] = ACTIONS(2050), - [anon_sym___block] = ACTIONS(2050), - [anon_sym___kindof] = ACTIONS(2050), - [anon_sym___unused] = ACTIONS(2050), - [anon_sym__Complex] = ACTIONS(2050), - [anon_sym___complex] = ACTIONS(2050), - [anon_sym_IBOutlet] = ACTIONS(2050), - [anon_sym_IBInspectable] = ACTIONS(2050), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2050), - [anon_sym_signed] = ACTIONS(2050), - [anon_sym_unsigned] = ACTIONS(2050), - [anon_sym_long] = ACTIONS(2050), - [anon_sym_short] = ACTIONS(2050), - [sym_primitive_type] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2050), - [anon_sym_NS_ENUM] = ACTIONS(2050), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2050), - [anon_sym_NS_OPTIONS] = ACTIONS(2050), - [anon_sym_struct] = ACTIONS(2050), - [anon_sym_union] = ACTIONS(2050), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_switch] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(2050), - [anon_sym_default] = ACTIONS(2050), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2050), - [anon_sym_break] = ACTIONS(2050), - [anon_sym_continue] = ACTIONS(2050), - [anon_sym_goto] = ACTIONS(2050), - [anon_sym_DASH_DASH] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(2052), - [anon_sym_sizeof] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2052), - [anon_sym_u_SQUOTE] = ACTIONS(2052), - [anon_sym_U_SQUOTE] = ACTIONS(2052), - [anon_sym_u8_SQUOTE] = ACTIONS(2052), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_L_DQUOTE] = ACTIONS(2052), - [anon_sym_u_DQUOTE] = ACTIONS(2052), - [anon_sym_U_DQUOTE] = ACTIONS(2052), - [anon_sym_u8_DQUOTE] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(2052), - [sym_true] = ACTIONS(2050), - [sym_false] = ACTIONS(2050), - [sym_null] = ACTIONS(2050), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2052), - [anon_sym_ATimport] = ACTIONS(2052), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2050), - [anon_sym_ATcompatibility_alias] = ACTIONS(2052), - [anon_sym_ATprotocol] = ACTIONS(2052), - [anon_sym_ATclass] = ACTIONS(2052), - [anon_sym_ATinterface] = ACTIONS(2052), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2050), - [sym_method_attribute_specifier] = ACTIONS(2050), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2050), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE] = ACTIONS(2050), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_API_AVAILABLE] = ACTIONS(2050), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_API_DEPRECATED] = ACTIONS(2050), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2050), - [anon_sym___deprecated_msg] = ACTIONS(2050), - [anon_sym___deprecated_enum_msg] = ACTIONS(2050), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2050), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2050), - [anon_sym_ATimplementation] = ACTIONS(2052), - [anon_sym_typeof] = ACTIONS(2050), - [anon_sym___typeof] = ACTIONS(2050), - [anon_sym___typeof__] = ACTIONS(2050), - [sym_self] = ACTIONS(2050), - [sym_super] = ACTIONS(2050), - [sym_nil] = ACTIONS(2050), - [sym_id] = ACTIONS(2050), - [sym_instancetype] = ACTIONS(2050), - [sym_Class] = ACTIONS(2050), - [sym_SEL] = ACTIONS(2050), - [sym_IMP] = ACTIONS(2050), - [sym_BOOL] = ACTIONS(2050), - [sym_auto] = ACTIONS(2050), - [anon_sym_ATautoreleasepool] = ACTIONS(2052), - [anon_sym_ATsynchronized] = ACTIONS(2052), - [anon_sym_ATtry] = ACTIONS(2052), - [anon_sym_ATthrow] = ACTIONS(2052), - [anon_sym_ATselector] = ACTIONS(2052), - [anon_sym_ATencode] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2050), - [sym_YES] = ACTIONS(2050), - [sym_NO] = ACTIONS(2050), - [anon_sym___builtin_available] = ACTIONS(2050), - [anon_sym_ATavailable] = ACTIONS(2052), - [anon_sym_va_arg] = ACTIONS(2050), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [993] = { - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [994] = { - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [995] = { - [ts_builtin_sym_end] = ACTIONS(2052), - [sym_identifier] = ACTIONS(2050), - [aux_sym_preproc_include_token1] = ACTIONS(2052), - [aux_sym_preproc_def_token1] = ACTIONS(2052), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2050), - [anon_sym_LPAREN2] = ACTIONS(2052), - [anon_sym_BANG] = ACTIONS(2052), - [anon_sym_TILDE] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_PLUS] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_typedef] = ACTIONS(2050), - [anon_sym_extern] = ACTIONS(2050), - [anon_sym___attribute] = ACTIONS(2050), - [anon_sym___attribute__] = ACTIONS(2050), - [anon_sym___declspec] = ACTIONS(2050), - [anon_sym___cdecl] = ACTIONS(2050), - [anon_sym___clrcall] = ACTIONS(2050), - [anon_sym___stdcall] = ACTIONS(2050), - [anon_sym___fastcall] = ACTIONS(2050), - [anon_sym___thiscall] = ACTIONS(2050), - [anon_sym___vectorcall] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_RBRACE] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2050), - [anon_sym_auto] = ACTIONS(2050), - [anon_sym_register] = ACTIONS(2050), - [anon_sym_inline] = ACTIONS(2050), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2050), - [anon_sym_const] = ACTIONS(2050), - [anon_sym_volatile] = ACTIONS(2050), - [anon_sym_restrict] = ACTIONS(2050), - [anon_sym__Atomic] = ACTIONS(2050), - [anon_sym_in] = ACTIONS(2050), - [anon_sym_out] = ACTIONS(2050), - [anon_sym_inout] = ACTIONS(2050), - [anon_sym_bycopy] = ACTIONS(2050), - [anon_sym_byref] = ACTIONS(2050), - [anon_sym_oneway] = ACTIONS(2050), - [anon_sym__Nullable] = ACTIONS(2050), - [anon_sym__Nonnull] = ACTIONS(2050), - [anon_sym__Nullable_result] = ACTIONS(2050), - [anon_sym__Null_unspecified] = ACTIONS(2050), - [anon_sym___autoreleasing] = ACTIONS(2050), - [anon_sym___nullable] = ACTIONS(2050), - [anon_sym___nonnull] = ACTIONS(2050), - [anon_sym___strong] = ACTIONS(2050), - [anon_sym___weak] = ACTIONS(2050), - [anon_sym___bridge] = ACTIONS(2050), - [anon_sym___bridge_transfer] = ACTIONS(2050), - [anon_sym___bridge_retained] = ACTIONS(2050), - [anon_sym___unsafe_unretained] = ACTIONS(2050), - [anon_sym___block] = ACTIONS(2050), - [anon_sym___kindof] = ACTIONS(2050), - [anon_sym___unused] = ACTIONS(2050), - [anon_sym__Complex] = ACTIONS(2050), - [anon_sym___complex] = ACTIONS(2050), - [anon_sym_IBOutlet] = ACTIONS(2050), - [anon_sym_IBInspectable] = ACTIONS(2050), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2050), - [anon_sym_signed] = ACTIONS(2050), - [anon_sym_unsigned] = ACTIONS(2050), - [anon_sym_long] = ACTIONS(2050), - [anon_sym_short] = ACTIONS(2050), - [sym_primitive_type] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2050), - [anon_sym_NS_ENUM] = ACTIONS(2050), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2050), - [anon_sym_NS_OPTIONS] = ACTIONS(2050), - [anon_sym_struct] = ACTIONS(2050), - [anon_sym_union] = ACTIONS(2050), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_switch] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(2050), - [anon_sym_default] = ACTIONS(2050), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2050), - [anon_sym_break] = ACTIONS(2050), - [anon_sym_continue] = ACTIONS(2050), - [anon_sym_goto] = ACTIONS(2050), - [anon_sym_DASH_DASH] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(2052), - [anon_sym_sizeof] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2052), - [anon_sym_u_SQUOTE] = ACTIONS(2052), - [anon_sym_U_SQUOTE] = ACTIONS(2052), - [anon_sym_u8_SQUOTE] = ACTIONS(2052), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_L_DQUOTE] = ACTIONS(2052), - [anon_sym_u_DQUOTE] = ACTIONS(2052), - [anon_sym_U_DQUOTE] = ACTIONS(2052), - [anon_sym_u8_DQUOTE] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(2052), - [sym_true] = ACTIONS(2050), - [sym_false] = ACTIONS(2050), - [sym_null] = ACTIONS(2050), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2052), - [anon_sym_ATimport] = ACTIONS(2052), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2050), - [anon_sym_ATcompatibility_alias] = ACTIONS(2052), - [anon_sym_ATprotocol] = ACTIONS(2052), - [anon_sym_ATclass] = ACTIONS(2052), - [anon_sym_ATinterface] = ACTIONS(2052), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2050), - [sym_method_attribute_specifier] = ACTIONS(2050), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2050), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE] = ACTIONS(2050), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_API_AVAILABLE] = ACTIONS(2050), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_API_DEPRECATED] = ACTIONS(2050), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2050), - [anon_sym___deprecated_msg] = ACTIONS(2050), - [anon_sym___deprecated_enum_msg] = ACTIONS(2050), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2050), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2050), - [anon_sym_ATimplementation] = ACTIONS(2052), - [anon_sym_typeof] = ACTIONS(2050), - [anon_sym___typeof] = ACTIONS(2050), - [anon_sym___typeof__] = ACTIONS(2050), - [sym_self] = ACTIONS(2050), - [sym_super] = ACTIONS(2050), - [sym_nil] = ACTIONS(2050), - [sym_id] = ACTIONS(2050), - [sym_instancetype] = ACTIONS(2050), - [sym_Class] = ACTIONS(2050), - [sym_SEL] = ACTIONS(2050), - [sym_IMP] = ACTIONS(2050), - [sym_BOOL] = ACTIONS(2050), - [sym_auto] = ACTIONS(2050), - [anon_sym_ATautoreleasepool] = ACTIONS(2052), - [anon_sym_ATsynchronized] = ACTIONS(2052), - [anon_sym_ATtry] = ACTIONS(2052), - [anon_sym_ATthrow] = ACTIONS(2052), - [anon_sym_ATselector] = ACTIONS(2052), - [anon_sym_ATencode] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2050), - [sym_YES] = ACTIONS(2050), - [sym_NO] = ACTIONS(2050), - [anon_sym___builtin_available] = ACTIONS(2050), - [anon_sym_ATavailable] = ACTIONS(2052), - [anon_sym_va_arg] = ACTIONS(2050), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [996] = { - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [997] = { - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [998] = { - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [999] = { - [ts_builtin_sym_end] = ACTIONS(2052), - [sym_identifier] = ACTIONS(2050), - [aux_sym_preproc_include_token1] = ACTIONS(2052), - [aux_sym_preproc_def_token1] = ACTIONS(2052), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2050), - [anon_sym_LPAREN2] = ACTIONS(2052), - [anon_sym_BANG] = ACTIONS(2052), - [anon_sym_TILDE] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_PLUS] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_typedef] = ACTIONS(2050), - [anon_sym_extern] = ACTIONS(2050), - [anon_sym___attribute] = ACTIONS(2050), - [anon_sym___attribute__] = ACTIONS(2050), - [anon_sym___declspec] = ACTIONS(2050), - [anon_sym___cdecl] = ACTIONS(2050), - [anon_sym___clrcall] = ACTIONS(2050), - [anon_sym___stdcall] = ACTIONS(2050), - [anon_sym___fastcall] = ACTIONS(2050), - [anon_sym___thiscall] = ACTIONS(2050), - [anon_sym___vectorcall] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_RBRACE] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2050), - [anon_sym_auto] = ACTIONS(2050), - [anon_sym_register] = ACTIONS(2050), - [anon_sym_inline] = ACTIONS(2050), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2050), - [anon_sym_const] = ACTIONS(2050), - [anon_sym_volatile] = ACTIONS(2050), - [anon_sym_restrict] = ACTIONS(2050), - [anon_sym__Atomic] = ACTIONS(2050), - [anon_sym_in] = ACTIONS(2050), - [anon_sym_out] = ACTIONS(2050), - [anon_sym_inout] = ACTIONS(2050), - [anon_sym_bycopy] = ACTIONS(2050), - [anon_sym_byref] = ACTIONS(2050), - [anon_sym_oneway] = ACTIONS(2050), - [anon_sym__Nullable] = ACTIONS(2050), - [anon_sym__Nonnull] = ACTIONS(2050), - [anon_sym__Nullable_result] = ACTIONS(2050), - [anon_sym__Null_unspecified] = ACTIONS(2050), - [anon_sym___autoreleasing] = ACTIONS(2050), - [anon_sym___nullable] = ACTIONS(2050), - [anon_sym___nonnull] = ACTIONS(2050), - [anon_sym___strong] = ACTIONS(2050), - [anon_sym___weak] = ACTIONS(2050), - [anon_sym___bridge] = ACTIONS(2050), - [anon_sym___bridge_transfer] = ACTIONS(2050), - [anon_sym___bridge_retained] = ACTIONS(2050), - [anon_sym___unsafe_unretained] = ACTIONS(2050), - [anon_sym___block] = ACTIONS(2050), - [anon_sym___kindof] = ACTIONS(2050), - [anon_sym___unused] = ACTIONS(2050), - [anon_sym__Complex] = ACTIONS(2050), - [anon_sym___complex] = ACTIONS(2050), - [anon_sym_IBOutlet] = ACTIONS(2050), - [anon_sym_IBInspectable] = ACTIONS(2050), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2050), - [anon_sym_signed] = ACTIONS(2050), - [anon_sym_unsigned] = ACTIONS(2050), - [anon_sym_long] = ACTIONS(2050), - [anon_sym_short] = ACTIONS(2050), - [sym_primitive_type] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2050), - [anon_sym_NS_ENUM] = ACTIONS(2050), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2050), - [anon_sym_NS_OPTIONS] = ACTIONS(2050), - [anon_sym_struct] = ACTIONS(2050), - [anon_sym_union] = ACTIONS(2050), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_switch] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(2050), - [anon_sym_default] = ACTIONS(2050), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2050), - [anon_sym_break] = ACTIONS(2050), - [anon_sym_continue] = ACTIONS(2050), - [anon_sym_goto] = ACTIONS(2050), - [anon_sym_DASH_DASH] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(2052), - [anon_sym_sizeof] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2052), - [anon_sym_u_SQUOTE] = ACTIONS(2052), - [anon_sym_U_SQUOTE] = ACTIONS(2052), - [anon_sym_u8_SQUOTE] = ACTIONS(2052), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_L_DQUOTE] = ACTIONS(2052), - [anon_sym_u_DQUOTE] = ACTIONS(2052), - [anon_sym_U_DQUOTE] = ACTIONS(2052), - [anon_sym_u8_DQUOTE] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(2052), - [sym_true] = ACTIONS(2050), - [sym_false] = ACTIONS(2050), - [sym_null] = ACTIONS(2050), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2052), - [anon_sym_ATimport] = ACTIONS(2052), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2050), - [anon_sym_ATcompatibility_alias] = ACTIONS(2052), - [anon_sym_ATprotocol] = ACTIONS(2052), - [anon_sym_ATclass] = ACTIONS(2052), - [anon_sym_ATinterface] = ACTIONS(2052), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2050), - [sym_method_attribute_specifier] = ACTIONS(2050), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2050), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE] = ACTIONS(2050), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_API_AVAILABLE] = ACTIONS(2050), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_API_DEPRECATED] = ACTIONS(2050), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2050), - [anon_sym___deprecated_msg] = ACTIONS(2050), - [anon_sym___deprecated_enum_msg] = ACTIONS(2050), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2050), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2050), - [anon_sym_ATimplementation] = ACTIONS(2052), - [anon_sym_typeof] = ACTIONS(2050), - [anon_sym___typeof] = ACTIONS(2050), - [anon_sym___typeof__] = ACTIONS(2050), - [sym_self] = ACTIONS(2050), - [sym_super] = ACTIONS(2050), - [sym_nil] = ACTIONS(2050), - [sym_id] = ACTIONS(2050), - [sym_instancetype] = ACTIONS(2050), - [sym_Class] = ACTIONS(2050), - [sym_SEL] = ACTIONS(2050), - [sym_IMP] = ACTIONS(2050), - [sym_BOOL] = ACTIONS(2050), - [sym_auto] = ACTIONS(2050), - [anon_sym_ATautoreleasepool] = ACTIONS(2052), - [anon_sym_ATsynchronized] = ACTIONS(2052), - [anon_sym_ATtry] = ACTIONS(2052), - [anon_sym_ATthrow] = ACTIONS(2052), - [anon_sym_ATselector] = ACTIONS(2052), - [anon_sym_ATencode] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2050), - [sym_YES] = ACTIONS(2050), - [sym_NO] = ACTIONS(2050), - [anon_sym___builtin_available] = ACTIONS(2050), - [anon_sym_ATavailable] = ACTIONS(2052), - [anon_sym_va_arg] = ACTIONS(2050), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1000] = { - [ts_builtin_sym_end] = ACTIONS(1812), - [sym_identifier] = ACTIONS(1810), - [aux_sym_preproc_include_token1] = ACTIONS(1812), - [aux_sym_preproc_def_token1] = ACTIONS(1812), - [aux_sym_preproc_if_token1] = ACTIONS(1810), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1810), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1810), - [anon_sym_LPAREN2] = ACTIONS(1812), - [anon_sym_BANG] = ACTIONS(1812), - [anon_sym_TILDE] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1810), - [anon_sym_STAR] = ACTIONS(1812), - [anon_sym_CARET] = ACTIONS(1812), - [anon_sym_AMP] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_typedef] = ACTIONS(1810), - [anon_sym_extern] = ACTIONS(1810), - [anon_sym___attribute] = ACTIONS(1810), - [anon_sym___attribute__] = ACTIONS(1810), - [anon_sym___declspec] = ACTIONS(1810), - [anon_sym___cdecl] = ACTIONS(1810), - [anon_sym___clrcall] = ACTIONS(1810), - [anon_sym___stdcall] = ACTIONS(1810), - [anon_sym___fastcall] = ACTIONS(1810), - [anon_sym___thiscall] = ACTIONS(1810), - [anon_sym___vectorcall] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_static] = ACTIONS(1810), - [anon_sym_auto] = ACTIONS(1810), - [anon_sym_register] = ACTIONS(1810), - [anon_sym_inline] = ACTIONS(1810), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1810), - [anon_sym_const] = ACTIONS(1810), - [anon_sym_volatile] = ACTIONS(1810), - [anon_sym_restrict] = ACTIONS(1810), - [anon_sym__Atomic] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_out] = ACTIONS(1810), - [anon_sym_inout] = ACTIONS(1810), - [anon_sym_bycopy] = ACTIONS(1810), - [anon_sym_byref] = ACTIONS(1810), - [anon_sym_oneway] = ACTIONS(1810), - [anon_sym__Nullable] = ACTIONS(1810), - [anon_sym__Nonnull] = ACTIONS(1810), - [anon_sym__Nullable_result] = ACTIONS(1810), - [anon_sym__Null_unspecified] = ACTIONS(1810), - [anon_sym___autoreleasing] = ACTIONS(1810), - [anon_sym___nullable] = ACTIONS(1810), - [anon_sym___nonnull] = ACTIONS(1810), - [anon_sym___strong] = ACTIONS(1810), - [anon_sym___weak] = ACTIONS(1810), - [anon_sym___bridge] = ACTIONS(1810), - [anon_sym___bridge_transfer] = ACTIONS(1810), - [anon_sym___bridge_retained] = ACTIONS(1810), - [anon_sym___unsafe_unretained] = ACTIONS(1810), - [anon_sym___block] = ACTIONS(1810), - [anon_sym___kindof] = ACTIONS(1810), - [anon_sym___unused] = ACTIONS(1810), - [anon_sym__Complex] = ACTIONS(1810), - [anon_sym___complex] = ACTIONS(1810), - [anon_sym_IBOutlet] = ACTIONS(1810), - [anon_sym_IBInspectable] = ACTIONS(1810), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1810), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [sym_primitive_type] = ACTIONS(1810), - [anon_sym_enum] = ACTIONS(1810), - [anon_sym_NS_ENUM] = ACTIONS(1810), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1810), - [anon_sym_NS_OPTIONS] = ACTIONS(1810), - [anon_sym_struct] = ACTIONS(1810), - [anon_sym_union] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1810), - [anon_sym_switch] = ACTIONS(1810), - [anon_sym_case] = ACTIONS(1810), - [anon_sym_default] = ACTIONS(1810), - [anon_sym_while] = ACTIONS(1810), - [anon_sym_do] = ACTIONS(1810), - [anon_sym_for] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1810), - [anon_sym_break] = ACTIONS(1810), - [anon_sym_continue] = ACTIONS(1810), - [anon_sym_goto] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1812), - [anon_sym_PLUS_PLUS] = ACTIONS(1812), - [anon_sym_sizeof] = ACTIONS(1810), - [sym_number_literal] = ACTIONS(1812), - [anon_sym_L_SQUOTE] = ACTIONS(1812), - [anon_sym_u_SQUOTE] = ACTIONS(1812), - [anon_sym_U_SQUOTE] = ACTIONS(1812), - [anon_sym_u8_SQUOTE] = ACTIONS(1812), - [anon_sym_SQUOTE] = ACTIONS(1812), - [anon_sym_L_DQUOTE] = ACTIONS(1812), - [anon_sym_u_DQUOTE] = ACTIONS(1812), - [anon_sym_U_DQUOTE] = ACTIONS(1812), - [anon_sym_u8_DQUOTE] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [sym_true] = ACTIONS(1810), - [sym_false] = ACTIONS(1810), - [sym_null] = ACTIONS(1810), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1812), - [anon_sym_ATimport] = ACTIONS(1812), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1810), - [anon_sym_ATcompatibility_alias] = ACTIONS(1812), - [anon_sym_ATprotocol] = ACTIONS(1812), - [anon_sym_ATclass] = ACTIONS(1812), - [anon_sym_ATinterface] = ACTIONS(1812), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1810), - [sym_method_attribute_specifier] = ACTIONS(1810), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1810), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1810), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1810), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1810), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1810), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1810), - [anon_sym_NS_AVAILABLE] = ACTIONS(1810), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1810), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1810), - [anon_sym_API_AVAILABLE] = ACTIONS(1810), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1810), - [anon_sym_API_DEPRECATED] = ACTIONS(1810), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1810), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1810), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1810), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1810), - [anon_sym___deprecated_msg] = ACTIONS(1810), - [anon_sym___deprecated_enum_msg] = ACTIONS(1810), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1810), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1810), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1810), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1810), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1810), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1810), - [anon_sym_ATimplementation] = ACTIONS(1812), - [anon_sym_typeof] = ACTIONS(1810), - [anon_sym___typeof] = ACTIONS(1810), - [anon_sym___typeof__] = ACTIONS(1810), - [sym_self] = ACTIONS(1810), - [sym_super] = ACTIONS(1810), - [sym_nil] = ACTIONS(1810), - [sym_id] = ACTIONS(1810), - [sym_instancetype] = ACTIONS(1810), - [sym_Class] = ACTIONS(1810), - [sym_SEL] = ACTIONS(1810), - [sym_IMP] = ACTIONS(1810), - [sym_BOOL] = ACTIONS(1810), - [sym_auto] = ACTIONS(1810), - [anon_sym_ATautoreleasepool] = ACTIONS(1812), - [anon_sym_ATsynchronized] = ACTIONS(1812), - [anon_sym_ATtry] = ACTIONS(1812), - [anon_sym_ATthrow] = ACTIONS(1812), - [anon_sym_ATselector] = ACTIONS(1812), - [anon_sym_ATencode] = ACTIONS(1812), - [anon_sym_AT] = ACTIONS(1810), - [sym_YES] = ACTIONS(1810), - [sym_NO] = ACTIONS(1810), - [anon_sym___builtin_available] = ACTIONS(1810), - [anon_sym_ATavailable] = ACTIONS(1812), - [anon_sym_va_arg] = ACTIONS(1810), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1001] = { - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1002] = { - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1003] = { - [ts_builtin_sym_end] = ACTIONS(2052), - [sym_identifier] = ACTIONS(2050), - [aux_sym_preproc_include_token1] = ACTIONS(2052), - [aux_sym_preproc_def_token1] = ACTIONS(2052), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2050), - [anon_sym_LPAREN2] = ACTIONS(2052), - [anon_sym_BANG] = ACTIONS(2052), - [anon_sym_TILDE] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_PLUS] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_typedef] = ACTIONS(2050), - [anon_sym_extern] = ACTIONS(2050), - [anon_sym___attribute] = ACTIONS(2050), - [anon_sym___attribute__] = ACTIONS(2050), - [anon_sym___declspec] = ACTIONS(2050), - [anon_sym___cdecl] = ACTIONS(2050), - [anon_sym___clrcall] = ACTIONS(2050), - [anon_sym___stdcall] = ACTIONS(2050), - [anon_sym___fastcall] = ACTIONS(2050), - [anon_sym___thiscall] = ACTIONS(2050), - [anon_sym___vectorcall] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_RBRACE] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2050), - [anon_sym_auto] = ACTIONS(2050), - [anon_sym_register] = ACTIONS(2050), - [anon_sym_inline] = ACTIONS(2050), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2050), - [anon_sym_const] = ACTIONS(2050), - [anon_sym_volatile] = ACTIONS(2050), - [anon_sym_restrict] = ACTIONS(2050), - [anon_sym__Atomic] = ACTIONS(2050), - [anon_sym_in] = ACTIONS(2050), - [anon_sym_out] = ACTIONS(2050), - [anon_sym_inout] = ACTIONS(2050), - [anon_sym_bycopy] = ACTIONS(2050), - [anon_sym_byref] = ACTIONS(2050), - [anon_sym_oneway] = ACTIONS(2050), - [anon_sym__Nullable] = ACTIONS(2050), - [anon_sym__Nonnull] = ACTIONS(2050), - [anon_sym__Nullable_result] = ACTIONS(2050), - [anon_sym__Null_unspecified] = ACTIONS(2050), - [anon_sym___autoreleasing] = ACTIONS(2050), - [anon_sym___nullable] = ACTIONS(2050), - [anon_sym___nonnull] = ACTIONS(2050), - [anon_sym___strong] = ACTIONS(2050), - [anon_sym___weak] = ACTIONS(2050), - [anon_sym___bridge] = ACTIONS(2050), - [anon_sym___bridge_transfer] = ACTIONS(2050), - [anon_sym___bridge_retained] = ACTIONS(2050), - [anon_sym___unsafe_unretained] = ACTIONS(2050), - [anon_sym___block] = ACTIONS(2050), - [anon_sym___kindof] = ACTIONS(2050), - [anon_sym___unused] = ACTIONS(2050), - [anon_sym__Complex] = ACTIONS(2050), - [anon_sym___complex] = ACTIONS(2050), - [anon_sym_IBOutlet] = ACTIONS(2050), - [anon_sym_IBInspectable] = ACTIONS(2050), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2050), - [anon_sym_signed] = ACTIONS(2050), - [anon_sym_unsigned] = ACTIONS(2050), - [anon_sym_long] = ACTIONS(2050), - [anon_sym_short] = ACTIONS(2050), - [sym_primitive_type] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2050), - [anon_sym_NS_ENUM] = ACTIONS(2050), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2050), - [anon_sym_NS_OPTIONS] = ACTIONS(2050), - [anon_sym_struct] = ACTIONS(2050), - [anon_sym_union] = ACTIONS(2050), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_switch] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(2050), - [anon_sym_default] = ACTIONS(2050), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2050), - [anon_sym_break] = ACTIONS(2050), - [anon_sym_continue] = ACTIONS(2050), - [anon_sym_goto] = ACTIONS(2050), - [anon_sym_DASH_DASH] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(2052), - [anon_sym_sizeof] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2052), - [anon_sym_u_SQUOTE] = ACTIONS(2052), - [anon_sym_U_SQUOTE] = ACTIONS(2052), - [anon_sym_u8_SQUOTE] = ACTIONS(2052), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_L_DQUOTE] = ACTIONS(2052), - [anon_sym_u_DQUOTE] = ACTIONS(2052), - [anon_sym_U_DQUOTE] = ACTIONS(2052), - [anon_sym_u8_DQUOTE] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(2052), - [sym_true] = ACTIONS(2050), - [sym_false] = ACTIONS(2050), - [sym_null] = ACTIONS(2050), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2052), - [anon_sym_ATimport] = ACTIONS(2052), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2050), - [anon_sym_ATcompatibility_alias] = ACTIONS(2052), - [anon_sym_ATprotocol] = ACTIONS(2052), - [anon_sym_ATclass] = ACTIONS(2052), - [anon_sym_ATinterface] = ACTIONS(2052), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2050), - [sym_method_attribute_specifier] = ACTIONS(2050), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2050), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE] = ACTIONS(2050), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_API_AVAILABLE] = ACTIONS(2050), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_API_DEPRECATED] = ACTIONS(2050), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2050), - [anon_sym___deprecated_msg] = ACTIONS(2050), - [anon_sym___deprecated_enum_msg] = ACTIONS(2050), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2050), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2050), - [anon_sym_ATimplementation] = ACTIONS(2052), - [anon_sym_typeof] = ACTIONS(2050), - [anon_sym___typeof] = ACTIONS(2050), - [anon_sym___typeof__] = ACTIONS(2050), - [sym_self] = ACTIONS(2050), - [sym_super] = ACTIONS(2050), - [sym_nil] = ACTIONS(2050), - [sym_id] = ACTIONS(2050), - [sym_instancetype] = ACTIONS(2050), - [sym_Class] = ACTIONS(2050), - [sym_SEL] = ACTIONS(2050), - [sym_IMP] = ACTIONS(2050), - [sym_BOOL] = ACTIONS(2050), - [sym_auto] = ACTIONS(2050), - [anon_sym_ATautoreleasepool] = ACTIONS(2052), - [anon_sym_ATsynchronized] = ACTIONS(2052), - [anon_sym_ATtry] = ACTIONS(2052), - [anon_sym_ATthrow] = ACTIONS(2052), - [anon_sym_ATselector] = ACTIONS(2052), - [anon_sym_ATencode] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2050), - [sym_YES] = ACTIONS(2050), - [sym_NO] = ACTIONS(2050), - [anon_sym___builtin_available] = ACTIONS(2050), - [anon_sym_ATavailable] = ACTIONS(2052), - [anon_sym_va_arg] = ACTIONS(2050), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1004] = { - [ts_builtin_sym_end] = ACTIONS(1796), - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1005] = { - [ts_builtin_sym_end] = ACTIONS(1796), - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1006] = { - [ts_builtin_sym_end] = ACTIONS(1796), - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1007] = { - [ts_builtin_sym_end] = ACTIONS(1796), - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1008] = { - [ts_builtin_sym_end] = ACTIONS(2116), - [sym_identifier] = ACTIONS(2114), - [aux_sym_preproc_include_token1] = ACTIONS(2116), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2114), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2114), - [anon_sym_LPAREN2] = ACTIONS(2116), - [anon_sym_BANG] = ACTIONS(2116), - [anon_sym_TILDE] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2114), - [anon_sym_PLUS] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2116), - [anon_sym_CARET] = ACTIONS(2116), - [anon_sym_AMP] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_typedef] = ACTIONS(2114), - [anon_sym_extern] = ACTIONS(2114), - [anon_sym___attribute] = ACTIONS(2114), - [anon_sym___attribute__] = ACTIONS(2114), - [anon_sym___declspec] = ACTIONS(2114), - [anon_sym___cdecl] = ACTIONS(2114), - [anon_sym___clrcall] = ACTIONS(2114), - [anon_sym___stdcall] = ACTIONS(2114), - [anon_sym___fastcall] = ACTIONS(2114), - [anon_sym___thiscall] = ACTIONS(2114), - [anon_sym___vectorcall] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2116), - [anon_sym_RBRACE] = ACTIONS(2116), - [anon_sym_LBRACK] = ACTIONS(2116), - [anon_sym_static] = ACTIONS(2114), - [anon_sym_auto] = ACTIONS(2114), - [anon_sym_register] = ACTIONS(2114), - [anon_sym_inline] = ACTIONS(2114), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2114), - [anon_sym_const] = ACTIONS(2114), - [anon_sym_volatile] = ACTIONS(2114), - [anon_sym_restrict] = ACTIONS(2114), - [anon_sym__Atomic] = ACTIONS(2114), - [anon_sym_in] = ACTIONS(2114), - [anon_sym_out] = ACTIONS(2114), - [anon_sym_inout] = ACTIONS(2114), - [anon_sym_bycopy] = ACTIONS(2114), - [anon_sym_byref] = ACTIONS(2114), - [anon_sym_oneway] = ACTIONS(2114), - [anon_sym__Nullable] = ACTIONS(2114), - [anon_sym__Nonnull] = ACTIONS(2114), - [anon_sym__Nullable_result] = ACTIONS(2114), - [anon_sym__Null_unspecified] = ACTIONS(2114), - [anon_sym___autoreleasing] = ACTIONS(2114), - [anon_sym___nullable] = ACTIONS(2114), - [anon_sym___nonnull] = ACTIONS(2114), - [anon_sym___strong] = ACTIONS(2114), - [anon_sym___weak] = ACTIONS(2114), - [anon_sym___bridge] = ACTIONS(2114), - [anon_sym___bridge_transfer] = ACTIONS(2114), - [anon_sym___bridge_retained] = ACTIONS(2114), - [anon_sym___unsafe_unretained] = ACTIONS(2114), - [anon_sym___block] = ACTIONS(2114), - [anon_sym___kindof] = ACTIONS(2114), - [anon_sym___unused] = ACTIONS(2114), - [anon_sym__Complex] = ACTIONS(2114), - [anon_sym___complex] = ACTIONS(2114), - [anon_sym_IBOutlet] = ACTIONS(2114), - [anon_sym_IBInspectable] = ACTIONS(2114), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2114), - [anon_sym_signed] = ACTIONS(2114), - [anon_sym_unsigned] = ACTIONS(2114), - [anon_sym_long] = ACTIONS(2114), - [anon_sym_short] = ACTIONS(2114), - [sym_primitive_type] = ACTIONS(2114), - [anon_sym_enum] = ACTIONS(2114), - [anon_sym_NS_ENUM] = ACTIONS(2114), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2114), - [anon_sym_NS_OPTIONS] = ACTIONS(2114), - [anon_sym_struct] = ACTIONS(2114), - [anon_sym_union] = ACTIONS(2114), - [anon_sym_if] = ACTIONS(2114), - [anon_sym_switch] = ACTIONS(2114), - [anon_sym_case] = ACTIONS(2114), - [anon_sym_default] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_return] = ACTIONS(2114), - [anon_sym_break] = ACTIONS(2114), - [anon_sym_continue] = ACTIONS(2114), - [anon_sym_goto] = ACTIONS(2114), - [anon_sym_DASH_DASH] = ACTIONS(2116), - [anon_sym_PLUS_PLUS] = ACTIONS(2116), - [anon_sym_sizeof] = ACTIONS(2114), - [sym_number_literal] = ACTIONS(2116), - [anon_sym_L_SQUOTE] = ACTIONS(2116), - [anon_sym_u_SQUOTE] = ACTIONS(2116), - [anon_sym_U_SQUOTE] = ACTIONS(2116), - [anon_sym_u8_SQUOTE] = ACTIONS(2116), - [anon_sym_SQUOTE] = ACTIONS(2116), - [anon_sym_L_DQUOTE] = ACTIONS(2116), - [anon_sym_u_DQUOTE] = ACTIONS(2116), - [anon_sym_U_DQUOTE] = ACTIONS(2116), - [anon_sym_u8_DQUOTE] = ACTIONS(2116), - [anon_sym_DQUOTE] = ACTIONS(2116), - [sym_true] = ACTIONS(2114), - [sym_false] = ACTIONS(2114), - [sym_null] = ACTIONS(2114), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2116), - [anon_sym_ATimport] = ACTIONS(2116), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2114), - [anon_sym_ATcompatibility_alias] = ACTIONS(2116), - [anon_sym_ATprotocol] = ACTIONS(2116), - [anon_sym_ATclass] = ACTIONS(2116), - [anon_sym_ATinterface] = ACTIONS(2116), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2114), - [sym_method_attribute_specifier] = ACTIONS(2114), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2114), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2114), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2114), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2114), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2114), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2114), - [anon_sym_NS_AVAILABLE] = ACTIONS(2114), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2114), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_API_AVAILABLE] = ACTIONS(2114), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2114), - [anon_sym_API_DEPRECATED] = ACTIONS(2114), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2114), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2114), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2114), - [anon_sym___deprecated_msg] = ACTIONS(2114), - [anon_sym___deprecated_enum_msg] = ACTIONS(2114), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2114), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2114), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2114), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2114), - [anon_sym_ATimplementation] = ACTIONS(2116), - [anon_sym_typeof] = ACTIONS(2114), - [anon_sym___typeof] = ACTIONS(2114), - [anon_sym___typeof__] = ACTIONS(2114), - [sym_self] = ACTIONS(2114), - [sym_super] = ACTIONS(2114), - [sym_nil] = ACTIONS(2114), - [sym_id] = ACTIONS(2114), - [sym_instancetype] = ACTIONS(2114), - [sym_Class] = ACTIONS(2114), - [sym_SEL] = ACTIONS(2114), - [sym_IMP] = ACTIONS(2114), - [sym_BOOL] = ACTIONS(2114), - [sym_auto] = ACTIONS(2114), - [anon_sym_ATautoreleasepool] = ACTIONS(2116), - [anon_sym_ATsynchronized] = ACTIONS(2116), - [anon_sym_ATtry] = ACTIONS(2116), - [anon_sym_ATthrow] = ACTIONS(2116), - [anon_sym_ATselector] = ACTIONS(2116), - [anon_sym_ATencode] = ACTIONS(2116), - [anon_sym_AT] = ACTIONS(2114), - [sym_YES] = ACTIONS(2114), - [sym_NO] = ACTIONS(2114), - [anon_sym___builtin_available] = ACTIONS(2114), - [anon_sym_ATavailable] = ACTIONS(2116), - [anon_sym_va_arg] = ACTIONS(2114), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1009] = { - [ts_builtin_sym_end] = ACTIONS(2116), - [sym_identifier] = ACTIONS(2114), - [aux_sym_preproc_include_token1] = ACTIONS(2116), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2114), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2114), - [anon_sym_LPAREN2] = ACTIONS(2116), - [anon_sym_BANG] = ACTIONS(2116), - [anon_sym_TILDE] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2114), - [anon_sym_PLUS] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2116), - [anon_sym_CARET] = ACTIONS(2116), - [anon_sym_AMP] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_typedef] = ACTIONS(2114), - [anon_sym_extern] = ACTIONS(2114), - [anon_sym___attribute] = ACTIONS(2114), - [anon_sym___attribute__] = ACTIONS(2114), - [anon_sym___declspec] = ACTIONS(2114), - [anon_sym___cdecl] = ACTIONS(2114), - [anon_sym___clrcall] = ACTIONS(2114), - [anon_sym___stdcall] = ACTIONS(2114), - [anon_sym___fastcall] = ACTIONS(2114), - [anon_sym___thiscall] = ACTIONS(2114), - [anon_sym___vectorcall] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2116), - [anon_sym_RBRACE] = ACTIONS(2116), - [anon_sym_LBRACK] = ACTIONS(2116), - [anon_sym_static] = ACTIONS(2114), - [anon_sym_auto] = ACTIONS(2114), - [anon_sym_register] = ACTIONS(2114), - [anon_sym_inline] = ACTIONS(2114), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2114), - [anon_sym_const] = ACTIONS(2114), - [anon_sym_volatile] = ACTIONS(2114), - [anon_sym_restrict] = ACTIONS(2114), - [anon_sym__Atomic] = ACTIONS(2114), - [anon_sym_in] = ACTIONS(2114), - [anon_sym_out] = ACTIONS(2114), - [anon_sym_inout] = ACTIONS(2114), - [anon_sym_bycopy] = ACTIONS(2114), - [anon_sym_byref] = ACTIONS(2114), - [anon_sym_oneway] = ACTIONS(2114), - [anon_sym__Nullable] = ACTIONS(2114), - [anon_sym__Nonnull] = ACTIONS(2114), - [anon_sym__Nullable_result] = ACTIONS(2114), - [anon_sym__Null_unspecified] = ACTIONS(2114), - [anon_sym___autoreleasing] = ACTIONS(2114), - [anon_sym___nullable] = ACTIONS(2114), - [anon_sym___nonnull] = ACTIONS(2114), - [anon_sym___strong] = ACTIONS(2114), - [anon_sym___weak] = ACTIONS(2114), - [anon_sym___bridge] = ACTIONS(2114), - [anon_sym___bridge_transfer] = ACTIONS(2114), - [anon_sym___bridge_retained] = ACTIONS(2114), - [anon_sym___unsafe_unretained] = ACTIONS(2114), - [anon_sym___block] = ACTIONS(2114), - [anon_sym___kindof] = ACTIONS(2114), - [anon_sym___unused] = ACTIONS(2114), - [anon_sym__Complex] = ACTIONS(2114), - [anon_sym___complex] = ACTIONS(2114), - [anon_sym_IBOutlet] = ACTIONS(2114), - [anon_sym_IBInspectable] = ACTIONS(2114), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2114), - [anon_sym_signed] = ACTIONS(2114), - [anon_sym_unsigned] = ACTIONS(2114), - [anon_sym_long] = ACTIONS(2114), - [anon_sym_short] = ACTIONS(2114), - [sym_primitive_type] = ACTIONS(2114), - [anon_sym_enum] = ACTIONS(2114), - [anon_sym_NS_ENUM] = ACTIONS(2114), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2114), - [anon_sym_NS_OPTIONS] = ACTIONS(2114), - [anon_sym_struct] = ACTIONS(2114), - [anon_sym_union] = ACTIONS(2114), - [anon_sym_if] = ACTIONS(2114), - [anon_sym_switch] = ACTIONS(2114), - [anon_sym_case] = ACTIONS(2114), - [anon_sym_default] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_return] = ACTIONS(2114), - [anon_sym_break] = ACTIONS(2114), - [anon_sym_continue] = ACTIONS(2114), - [anon_sym_goto] = ACTIONS(2114), - [anon_sym_DASH_DASH] = ACTIONS(2116), - [anon_sym_PLUS_PLUS] = ACTIONS(2116), - [anon_sym_sizeof] = ACTIONS(2114), - [sym_number_literal] = ACTIONS(2116), - [anon_sym_L_SQUOTE] = ACTIONS(2116), - [anon_sym_u_SQUOTE] = ACTIONS(2116), - [anon_sym_U_SQUOTE] = ACTIONS(2116), - [anon_sym_u8_SQUOTE] = ACTIONS(2116), - [anon_sym_SQUOTE] = ACTIONS(2116), - [anon_sym_L_DQUOTE] = ACTIONS(2116), - [anon_sym_u_DQUOTE] = ACTIONS(2116), - [anon_sym_U_DQUOTE] = ACTIONS(2116), - [anon_sym_u8_DQUOTE] = ACTIONS(2116), - [anon_sym_DQUOTE] = ACTIONS(2116), - [sym_true] = ACTIONS(2114), - [sym_false] = ACTIONS(2114), - [sym_null] = ACTIONS(2114), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2116), - [anon_sym_ATimport] = ACTIONS(2116), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2114), - [anon_sym_ATcompatibility_alias] = ACTIONS(2116), - [anon_sym_ATprotocol] = ACTIONS(2116), - [anon_sym_ATclass] = ACTIONS(2116), - [anon_sym_ATinterface] = ACTIONS(2116), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2114), - [sym_method_attribute_specifier] = ACTIONS(2114), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2114), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2114), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2114), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2114), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2114), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2114), - [anon_sym_NS_AVAILABLE] = ACTIONS(2114), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2114), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_API_AVAILABLE] = ACTIONS(2114), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2114), - [anon_sym_API_DEPRECATED] = ACTIONS(2114), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2114), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2114), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2114), - [anon_sym___deprecated_msg] = ACTIONS(2114), - [anon_sym___deprecated_enum_msg] = ACTIONS(2114), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2114), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2114), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2114), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2114), - [anon_sym_ATimplementation] = ACTIONS(2116), - [anon_sym_typeof] = ACTIONS(2114), - [anon_sym___typeof] = ACTIONS(2114), - [anon_sym___typeof__] = ACTIONS(2114), - [sym_self] = ACTIONS(2114), - [sym_super] = ACTIONS(2114), - [sym_nil] = ACTIONS(2114), - [sym_id] = ACTIONS(2114), - [sym_instancetype] = ACTIONS(2114), - [sym_Class] = ACTIONS(2114), - [sym_SEL] = ACTIONS(2114), - [sym_IMP] = ACTIONS(2114), - [sym_BOOL] = ACTIONS(2114), - [sym_auto] = ACTIONS(2114), - [anon_sym_ATautoreleasepool] = ACTIONS(2116), - [anon_sym_ATsynchronized] = ACTIONS(2116), - [anon_sym_ATtry] = ACTIONS(2116), - [anon_sym_ATthrow] = ACTIONS(2116), - [anon_sym_ATselector] = ACTIONS(2116), - [anon_sym_ATencode] = ACTIONS(2116), - [anon_sym_AT] = ACTIONS(2114), - [sym_YES] = ACTIONS(2114), - [sym_NO] = ACTIONS(2114), - [anon_sym___builtin_available] = ACTIONS(2114), - [anon_sym_ATavailable] = ACTIONS(2116), - [anon_sym_va_arg] = ACTIONS(2114), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1010] = { - [ts_builtin_sym_end] = ACTIONS(1796), - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1011] = { - [ts_builtin_sym_end] = ACTIONS(1796), - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1012] = { - [ts_builtin_sym_end] = ACTIONS(1796), - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1013] = { - [ts_builtin_sym_end] = ACTIONS(2120), - [sym_identifier] = ACTIONS(2118), - [aux_sym_preproc_include_token1] = ACTIONS(2120), - [aux_sym_preproc_def_token1] = ACTIONS(2120), - [aux_sym_preproc_if_token1] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2118), - [anon_sym_LPAREN2] = ACTIONS(2120), - [anon_sym_BANG] = ACTIONS(2120), - [anon_sym_TILDE] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2118), - [anon_sym_PLUS] = ACTIONS(2118), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_CARET] = ACTIONS(2120), - [anon_sym_AMP] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_typedef] = ACTIONS(2118), - [anon_sym_extern] = ACTIONS(2118), - [anon_sym___attribute] = ACTIONS(2118), - [anon_sym___attribute__] = ACTIONS(2118), - [anon_sym___declspec] = ACTIONS(2118), - [anon_sym___cdecl] = ACTIONS(2118), - [anon_sym___clrcall] = ACTIONS(2118), - [anon_sym___stdcall] = ACTIONS(2118), - [anon_sym___fastcall] = ACTIONS(2118), - [anon_sym___thiscall] = ACTIONS(2118), - [anon_sym___vectorcall] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_LBRACK] = ACTIONS(2120), - [anon_sym_static] = ACTIONS(2118), - [anon_sym_auto] = ACTIONS(2118), - [anon_sym_register] = ACTIONS(2118), - [anon_sym_inline] = ACTIONS(2118), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2118), - [anon_sym_const] = ACTIONS(2118), - [anon_sym_volatile] = ACTIONS(2118), - [anon_sym_restrict] = ACTIONS(2118), - [anon_sym__Atomic] = ACTIONS(2118), - [anon_sym_in] = ACTIONS(2118), - [anon_sym_out] = ACTIONS(2118), - [anon_sym_inout] = ACTIONS(2118), - [anon_sym_bycopy] = ACTIONS(2118), - [anon_sym_byref] = ACTIONS(2118), - [anon_sym_oneway] = ACTIONS(2118), - [anon_sym__Nullable] = ACTIONS(2118), - [anon_sym__Nonnull] = ACTIONS(2118), - [anon_sym__Nullable_result] = ACTIONS(2118), - [anon_sym__Null_unspecified] = ACTIONS(2118), - [anon_sym___autoreleasing] = ACTIONS(2118), - [anon_sym___nullable] = ACTIONS(2118), - [anon_sym___nonnull] = ACTIONS(2118), - [anon_sym___strong] = ACTIONS(2118), - [anon_sym___weak] = ACTIONS(2118), - [anon_sym___bridge] = ACTIONS(2118), - [anon_sym___bridge_transfer] = ACTIONS(2118), - [anon_sym___bridge_retained] = ACTIONS(2118), - [anon_sym___unsafe_unretained] = ACTIONS(2118), - [anon_sym___block] = ACTIONS(2118), - [anon_sym___kindof] = ACTIONS(2118), - [anon_sym___unused] = ACTIONS(2118), - [anon_sym__Complex] = ACTIONS(2118), - [anon_sym___complex] = ACTIONS(2118), - [anon_sym_IBOutlet] = ACTIONS(2118), - [anon_sym_IBInspectable] = ACTIONS(2118), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2118), - [anon_sym_signed] = ACTIONS(2118), - [anon_sym_unsigned] = ACTIONS(2118), - [anon_sym_long] = ACTIONS(2118), - [anon_sym_short] = ACTIONS(2118), - [sym_primitive_type] = ACTIONS(2118), - [anon_sym_enum] = ACTIONS(2118), - [anon_sym_NS_ENUM] = ACTIONS(2118), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2118), - [anon_sym_NS_OPTIONS] = ACTIONS(2118), - [anon_sym_struct] = ACTIONS(2118), - [anon_sym_union] = ACTIONS(2118), - [anon_sym_if] = ACTIONS(2118), - [anon_sym_switch] = ACTIONS(2118), - [anon_sym_case] = ACTIONS(2118), - [anon_sym_default] = ACTIONS(2118), - [anon_sym_while] = ACTIONS(2118), - [anon_sym_do] = ACTIONS(2118), - [anon_sym_for] = ACTIONS(2118), - [anon_sym_return] = ACTIONS(2118), - [anon_sym_break] = ACTIONS(2118), - [anon_sym_continue] = ACTIONS(2118), - [anon_sym_goto] = ACTIONS(2118), - [anon_sym_DASH_DASH] = ACTIONS(2120), - [anon_sym_PLUS_PLUS] = ACTIONS(2120), - [anon_sym_sizeof] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2120), - [anon_sym_u_SQUOTE] = ACTIONS(2120), - [anon_sym_U_SQUOTE] = ACTIONS(2120), - [anon_sym_u8_SQUOTE] = ACTIONS(2120), - [anon_sym_SQUOTE] = ACTIONS(2120), - [anon_sym_L_DQUOTE] = ACTIONS(2120), - [anon_sym_u_DQUOTE] = ACTIONS(2120), - [anon_sym_U_DQUOTE] = ACTIONS(2120), - [anon_sym_u8_DQUOTE] = ACTIONS(2120), - [anon_sym_DQUOTE] = ACTIONS(2120), - [sym_true] = ACTIONS(2118), - [sym_false] = ACTIONS(2118), - [sym_null] = ACTIONS(2118), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2120), - [anon_sym_ATimport] = ACTIONS(2120), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2118), - [anon_sym_ATcompatibility_alias] = ACTIONS(2120), - [anon_sym_ATprotocol] = ACTIONS(2120), - [anon_sym_ATclass] = ACTIONS(2120), - [anon_sym_ATinterface] = ACTIONS(2120), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2118), - [sym_method_attribute_specifier] = ACTIONS(2118), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2118), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2118), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2118), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2118), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2118), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2118), - [anon_sym_NS_AVAILABLE] = ACTIONS(2118), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2118), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2118), - [anon_sym_API_AVAILABLE] = ACTIONS(2118), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2118), - [anon_sym_API_DEPRECATED] = ACTIONS(2118), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2118), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2118), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2118), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2118), - [anon_sym___deprecated_msg] = ACTIONS(2118), - [anon_sym___deprecated_enum_msg] = ACTIONS(2118), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2118), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2118), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2118), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2118), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2118), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2118), - [anon_sym_ATimplementation] = ACTIONS(2120), - [anon_sym_typeof] = ACTIONS(2118), - [anon_sym___typeof] = ACTIONS(2118), - [anon_sym___typeof__] = ACTIONS(2118), - [sym_self] = ACTIONS(2118), - [sym_super] = ACTIONS(2118), - [sym_nil] = ACTIONS(2118), - [sym_id] = ACTIONS(2118), - [sym_instancetype] = ACTIONS(2118), - [sym_Class] = ACTIONS(2118), - [sym_SEL] = ACTIONS(2118), - [sym_IMP] = ACTIONS(2118), - [sym_BOOL] = ACTIONS(2118), - [sym_auto] = ACTIONS(2118), - [anon_sym_ATautoreleasepool] = ACTIONS(2120), - [anon_sym_ATsynchronized] = ACTIONS(2120), - [anon_sym_ATtry] = ACTIONS(2120), - [anon_sym_ATthrow] = ACTIONS(2120), - [anon_sym_ATselector] = ACTIONS(2120), - [anon_sym_ATencode] = ACTIONS(2120), - [anon_sym_AT] = ACTIONS(2118), - [sym_YES] = ACTIONS(2118), - [sym_NO] = ACTIONS(2118), - [anon_sym___builtin_available] = ACTIONS(2118), - [anon_sym_ATavailable] = ACTIONS(2120), - [anon_sym_va_arg] = ACTIONS(2118), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1014] = { - [ts_builtin_sym_end] = ACTIONS(1796), - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1015] = { - [ts_builtin_sym_end] = ACTIONS(1796), - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1016] = { - [ts_builtin_sym_end] = ACTIONS(1796), - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1017] = { - [ts_builtin_sym_end] = ACTIONS(1796), - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1018] = { - [ts_builtin_sym_end] = ACTIONS(1776), - [sym_identifier] = ACTIONS(1774), - [aux_sym_preproc_include_token1] = ACTIONS(1776), - [aux_sym_preproc_def_token1] = ACTIONS(1776), - [aux_sym_preproc_if_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_typedef] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym___attribute] = ACTIONS(1774), - [anon_sym___attribute__] = ACTIONS(1774), - [anon_sym___declspec] = ACTIONS(1774), - [anon_sym___cdecl] = ACTIONS(1774), - [anon_sym___clrcall] = ACTIONS(1774), - [anon_sym___stdcall] = ACTIONS(1774), - [anon_sym___fastcall] = ACTIONS(1774), - [anon_sym___thiscall] = ACTIONS(1774), - [anon_sym___vectorcall] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_auto] = ACTIONS(1774), - [anon_sym_register] = ACTIONS(1774), - [anon_sym_inline] = ACTIONS(1774), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_out] = ACTIONS(1774), - [anon_sym_inout] = ACTIONS(1774), - [anon_sym_bycopy] = ACTIONS(1774), - [anon_sym_byref] = ACTIONS(1774), - [anon_sym_oneway] = ACTIONS(1774), - [anon_sym__Nullable] = ACTIONS(1774), - [anon_sym__Nonnull] = ACTIONS(1774), - [anon_sym__Nullable_result] = ACTIONS(1774), - [anon_sym__Null_unspecified] = ACTIONS(1774), - [anon_sym___autoreleasing] = ACTIONS(1774), - [anon_sym___nullable] = ACTIONS(1774), - [anon_sym___nonnull] = ACTIONS(1774), - [anon_sym___strong] = ACTIONS(1774), - [anon_sym___weak] = ACTIONS(1774), - [anon_sym___bridge] = ACTIONS(1774), - [anon_sym___bridge_transfer] = ACTIONS(1774), - [anon_sym___bridge_retained] = ACTIONS(1774), - [anon_sym___unsafe_unretained] = ACTIONS(1774), - [anon_sym___block] = ACTIONS(1774), - [anon_sym___kindof] = ACTIONS(1774), - [anon_sym___unused] = ACTIONS(1774), - [anon_sym__Complex] = ACTIONS(1774), - [anon_sym___complex] = ACTIONS(1774), - [anon_sym_IBOutlet] = ACTIONS(1774), - [anon_sym_IBInspectable] = ACTIONS(1774), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1774), - [anon_sym_signed] = ACTIONS(1774), - [anon_sym_unsigned] = ACTIONS(1774), - [anon_sym_long] = ACTIONS(1774), - [anon_sym_short] = ACTIONS(1774), - [sym_primitive_type] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_NS_ENUM] = ACTIONS(1774), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1774), - [anon_sym_NS_OPTIONS] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1774), - [anon_sym_case] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_goto] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1776), - [anon_sym_sizeof] = ACTIONS(1774), - [sym_number_literal] = ACTIONS(1776), - [anon_sym_L_SQUOTE] = ACTIONS(1776), - [anon_sym_u_SQUOTE] = ACTIONS(1776), - [anon_sym_U_SQUOTE] = ACTIONS(1776), - [anon_sym_u8_SQUOTE] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_L_DQUOTE] = ACTIONS(1776), - [anon_sym_u_DQUOTE] = ACTIONS(1776), - [anon_sym_U_DQUOTE] = ACTIONS(1776), - [anon_sym_u8_DQUOTE] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym_true] = ACTIONS(1774), - [sym_false] = ACTIONS(1774), - [sym_null] = ACTIONS(1774), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1776), - [anon_sym_ATimport] = ACTIONS(1776), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1774), - [anon_sym_ATcompatibility_alias] = ACTIONS(1776), - [anon_sym_ATprotocol] = ACTIONS(1776), - [anon_sym_ATclass] = ACTIONS(1776), - [anon_sym_ATinterface] = ACTIONS(1776), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1774), - [sym_method_attribute_specifier] = ACTIONS(1774), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1774), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE] = ACTIONS(1774), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_API_AVAILABLE] = ACTIONS(1774), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_API_DEPRECATED] = ACTIONS(1774), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1774), - [anon_sym___deprecated_msg] = ACTIONS(1774), - [anon_sym___deprecated_enum_msg] = ACTIONS(1774), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1774), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1774), - [anon_sym_ATimplementation] = ACTIONS(1776), - [anon_sym_typeof] = ACTIONS(1774), - [anon_sym___typeof] = ACTIONS(1774), - [anon_sym___typeof__] = ACTIONS(1774), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_nil] = ACTIONS(1774), - [sym_id] = ACTIONS(1774), - [sym_instancetype] = ACTIONS(1774), - [sym_Class] = ACTIONS(1774), - [sym_SEL] = ACTIONS(1774), - [sym_IMP] = ACTIONS(1774), - [sym_BOOL] = ACTIONS(1774), - [sym_auto] = ACTIONS(1774), - [anon_sym_ATautoreleasepool] = ACTIONS(1776), - [anon_sym_ATsynchronized] = ACTIONS(1776), - [anon_sym_ATtry] = ACTIONS(1776), - [anon_sym_ATthrow] = ACTIONS(1776), - [anon_sym_ATselector] = ACTIONS(1776), - [anon_sym_ATencode] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1774), - [sym_YES] = ACTIONS(1774), - [sym_NO] = ACTIONS(1774), - [anon_sym___builtin_available] = ACTIONS(1774), - [anon_sym_ATavailable] = ACTIONS(1776), - [anon_sym_va_arg] = ACTIONS(1774), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1019] = { - [ts_builtin_sym_end] = ACTIONS(2048), - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_include_token1] = ACTIONS(2048), - [aux_sym_preproc_def_token1] = ACTIONS(2048), - [aux_sym_preproc_if_token1] = ACTIONS(2046), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2046), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2046), - [anon_sym_LPAREN2] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(2048), - [anon_sym_TILDE] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_AMP] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_typedef] = ACTIONS(2046), - [anon_sym_extern] = ACTIONS(2046), - [anon_sym___attribute] = ACTIONS(2046), - [anon_sym___attribute__] = ACTIONS(2046), - [anon_sym___declspec] = ACTIONS(2046), - [anon_sym___cdecl] = ACTIONS(2046), - [anon_sym___clrcall] = ACTIONS(2046), - [anon_sym___stdcall] = ACTIONS(2046), - [anon_sym___fastcall] = ACTIONS(2046), - [anon_sym___thiscall] = ACTIONS(2046), - [anon_sym___vectorcall] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_RBRACE] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2048), - [anon_sym_static] = ACTIONS(2046), - [anon_sym_auto] = ACTIONS(2046), - [anon_sym_register] = ACTIONS(2046), - [anon_sym_inline] = ACTIONS(2046), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2046), - [anon_sym_const] = ACTIONS(2046), - [anon_sym_volatile] = ACTIONS(2046), - [anon_sym_restrict] = ACTIONS(2046), - [anon_sym__Atomic] = ACTIONS(2046), - [anon_sym_in] = ACTIONS(2046), - [anon_sym_out] = ACTIONS(2046), - [anon_sym_inout] = ACTIONS(2046), - [anon_sym_bycopy] = ACTIONS(2046), - [anon_sym_byref] = ACTIONS(2046), - [anon_sym_oneway] = ACTIONS(2046), - [anon_sym__Nullable] = ACTIONS(2046), - [anon_sym__Nonnull] = ACTIONS(2046), - [anon_sym__Nullable_result] = ACTIONS(2046), - [anon_sym__Null_unspecified] = ACTIONS(2046), - [anon_sym___autoreleasing] = ACTIONS(2046), - [anon_sym___nullable] = ACTIONS(2046), - [anon_sym___nonnull] = ACTIONS(2046), - [anon_sym___strong] = ACTIONS(2046), - [anon_sym___weak] = ACTIONS(2046), - [anon_sym___bridge] = ACTIONS(2046), - [anon_sym___bridge_transfer] = ACTIONS(2046), - [anon_sym___bridge_retained] = ACTIONS(2046), - [anon_sym___unsafe_unretained] = ACTIONS(2046), - [anon_sym___block] = ACTIONS(2046), - [anon_sym___kindof] = ACTIONS(2046), - [anon_sym___unused] = ACTIONS(2046), - [anon_sym__Complex] = ACTIONS(2046), - [anon_sym___complex] = ACTIONS(2046), - [anon_sym_IBOutlet] = ACTIONS(2046), - [anon_sym_IBInspectable] = ACTIONS(2046), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2046), - [anon_sym_signed] = ACTIONS(2046), - [anon_sym_unsigned] = ACTIONS(2046), - [anon_sym_long] = ACTIONS(2046), - [anon_sym_short] = ACTIONS(2046), - [sym_primitive_type] = ACTIONS(2046), - [anon_sym_enum] = ACTIONS(2046), - [anon_sym_NS_ENUM] = ACTIONS(2046), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2046), - [anon_sym_NS_OPTIONS] = ACTIONS(2046), - [anon_sym_struct] = ACTIONS(2046), - [anon_sym_union] = ACTIONS(2046), - [anon_sym_if] = ACTIONS(2046), - [anon_sym_switch] = ACTIONS(2046), - [anon_sym_case] = ACTIONS(2046), - [anon_sym_default] = ACTIONS(2046), - [anon_sym_while] = ACTIONS(2046), - [anon_sym_do] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2046), - [anon_sym_return] = ACTIONS(2046), - [anon_sym_break] = ACTIONS(2046), - [anon_sym_continue] = ACTIONS(2046), - [anon_sym_goto] = ACTIONS(2046), - [anon_sym_DASH_DASH] = ACTIONS(2048), - [anon_sym_PLUS_PLUS] = ACTIONS(2048), - [anon_sym_sizeof] = ACTIONS(2046), - [sym_number_literal] = ACTIONS(2048), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2048), - [anon_sym_u_DQUOTE] = ACTIONS(2048), - [anon_sym_U_DQUOTE] = ACTIONS(2048), - [anon_sym_u8_DQUOTE] = ACTIONS(2048), - [anon_sym_DQUOTE] = ACTIONS(2048), - [sym_true] = ACTIONS(2046), - [sym_false] = ACTIONS(2046), - [sym_null] = ACTIONS(2046), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2048), - [anon_sym_ATimport] = ACTIONS(2048), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2046), - [anon_sym_ATcompatibility_alias] = ACTIONS(2048), - [anon_sym_ATprotocol] = ACTIONS(2048), - [anon_sym_ATclass] = ACTIONS(2048), - [anon_sym_ATinterface] = ACTIONS(2048), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2046), - [sym_method_attribute_specifier] = ACTIONS(2046), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2046), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2046), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2046), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2046), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2046), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2046), - [anon_sym_NS_AVAILABLE] = ACTIONS(2046), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2046), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2046), - [anon_sym_API_AVAILABLE] = ACTIONS(2046), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2046), - [anon_sym_API_DEPRECATED] = ACTIONS(2046), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2046), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2046), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2046), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2046), - [anon_sym___deprecated_msg] = ACTIONS(2046), - [anon_sym___deprecated_enum_msg] = ACTIONS(2046), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2046), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2046), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2046), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2046), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2046), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2046), - [anon_sym_ATimplementation] = ACTIONS(2048), - [anon_sym_typeof] = ACTIONS(2046), - [anon_sym___typeof] = ACTIONS(2046), - [anon_sym___typeof__] = ACTIONS(2046), - [sym_self] = ACTIONS(2046), - [sym_super] = ACTIONS(2046), - [sym_nil] = ACTIONS(2046), - [sym_id] = ACTIONS(2046), - [sym_instancetype] = ACTIONS(2046), - [sym_Class] = ACTIONS(2046), - [sym_SEL] = ACTIONS(2046), - [sym_IMP] = ACTIONS(2046), - [sym_BOOL] = ACTIONS(2046), - [sym_auto] = ACTIONS(2046), - [anon_sym_ATautoreleasepool] = ACTIONS(2048), - [anon_sym_ATsynchronized] = ACTIONS(2048), - [anon_sym_ATtry] = ACTIONS(2048), - [anon_sym_ATthrow] = ACTIONS(2048), - [anon_sym_ATselector] = ACTIONS(2048), - [anon_sym_ATencode] = ACTIONS(2048), - [anon_sym_AT] = ACTIONS(2046), - [sym_YES] = ACTIONS(2046), - [sym_NO] = ACTIONS(2046), - [anon_sym___builtin_available] = ACTIONS(2046), - [anon_sym_ATavailable] = ACTIONS(2048), - [anon_sym_va_arg] = ACTIONS(2046), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1020] = { - [ts_builtin_sym_end] = ACTIONS(2124), - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1021] = { - [ts_builtin_sym_end] = ACTIONS(1776), - [sym_identifier] = ACTIONS(1774), - [aux_sym_preproc_include_token1] = ACTIONS(1776), - [aux_sym_preproc_def_token1] = ACTIONS(1776), - [aux_sym_preproc_if_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_typedef] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym___attribute] = ACTIONS(1774), - [anon_sym___attribute__] = ACTIONS(1774), - [anon_sym___declspec] = ACTIONS(1774), - [anon_sym___cdecl] = ACTIONS(1774), - [anon_sym___clrcall] = ACTIONS(1774), - [anon_sym___stdcall] = ACTIONS(1774), - [anon_sym___fastcall] = ACTIONS(1774), - [anon_sym___thiscall] = ACTIONS(1774), - [anon_sym___vectorcall] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_auto] = ACTIONS(1774), - [anon_sym_register] = ACTIONS(1774), - [anon_sym_inline] = ACTIONS(1774), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_out] = ACTIONS(1774), - [anon_sym_inout] = ACTIONS(1774), - [anon_sym_bycopy] = ACTIONS(1774), - [anon_sym_byref] = ACTIONS(1774), - [anon_sym_oneway] = ACTIONS(1774), - [anon_sym__Nullable] = ACTIONS(1774), - [anon_sym__Nonnull] = ACTIONS(1774), - [anon_sym__Nullable_result] = ACTIONS(1774), - [anon_sym__Null_unspecified] = ACTIONS(1774), - [anon_sym___autoreleasing] = ACTIONS(1774), - [anon_sym___nullable] = ACTIONS(1774), - [anon_sym___nonnull] = ACTIONS(1774), - [anon_sym___strong] = ACTIONS(1774), - [anon_sym___weak] = ACTIONS(1774), - [anon_sym___bridge] = ACTIONS(1774), - [anon_sym___bridge_transfer] = ACTIONS(1774), - [anon_sym___bridge_retained] = ACTIONS(1774), - [anon_sym___unsafe_unretained] = ACTIONS(1774), - [anon_sym___block] = ACTIONS(1774), - [anon_sym___kindof] = ACTIONS(1774), - [anon_sym___unused] = ACTIONS(1774), - [anon_sym__Complex] = ACTIONS(1774), - [anon_sym___complex] = ACTIONS(1774), - [anon_sym_IBOutlet] = ACTIONS(1774), - [anon_sym_IBInspectable] = ACTIONS(1774), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1774), - [anon_sym_signed] = ACTIONS(1774), - [anon_sym_unsigned] = ACTIONS(1774), - [anon_sym_long] = ACTIONS(1774), - [anon_sym_short] = ACTIONS(1774), - [sym_primitive_type] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_NS_ENUM] = ACTIONS(1774), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1774), - [anon_sym_NS_OPTIONS] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1774), - [anon_sym_case] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_goto] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1776), - [anon_sym_sizeof] = ACTIONS(1774), - [sym_number_literal] = ACTIONS(1776), - [anon_sym_L_SQUOTE] = ACTIONS(1776), - [anon_sym_u_SQUOTE] = ACTIONS(1776), - [anon_sym_U_SQUOTE] = ACTIONS(1776), - [anon_sym_u8_SQUOTE] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_L_DQUOTE] = ACTIONS(1776), - [anon_sym_u_DQUOTE] = ACTIONS(1776), - [anon_sym_U_DQUOTE] = ACTIONS(1776), - [anon_sym_u8_DQUOTE] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym_true] = ACTIONS(1774), - [sym_false] = ACTIONS(1774), - [sym_null] = ACTIONS(1774), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1776), - [anon_sym_ATimport] = ACTIONS(1776), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1774), - [anon_sym_ATcompatibility_alias] = ACTIONS(1776), - [anon_sym_ATprotocol] = ACTIONS(1776), - [anon_sym_ATclass] = ACTIONS(1776), - [anon_sym_ATinterface] = ACTIONS(1776), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1774), - [sym_method_attribute_specifier] = ACTIONS(1774), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1774), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE] = ACTIONS(1774), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_API_AVAILABLE] = ACTIONS(1774), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_API_DEPRECATED] = ACTIONS(1774), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1774), - [anon_sym___deprecated_msg] = ACTIONS(1774), - [anon_sym___deprecated_enum_msg] = ACTIONS(1774), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1774), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1774), - [anon_sym_ATimplementation] = ACTIONS(1776), - [anon_sym_typeof] = ACTIONS(1774), - [anon_sym___typeof] = ACTIONS(1774), - [anon_sym___typeof__] = ACTIONS(1774), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_nil] = ACTIONS(1774), - [sym_id] = ACTIONS(1774), - [sym_instancetype] = ACTIONS(1774), - [sym_Class] = ACTIONS(1774), - [sym_SEL] = ACTIONS(1774), - [sym_IMP] = ACTIONS(1774), - [sym_BOOL] = ACTIONS(1774), - [sym_auto] = ACTIONS(1774), - [anon_sym_ATautoreleasepool] = ACTIONS(1776), - [anon_sym_ATsynchronized] = ACTIONS(1776), - [anon_sym_ATtry] = ACTIONS(1776), - [anon_sym_ATthrow] = ACTIONS(1776), - [anon_sym_ATselector] = ACTIONS(1776), - [anon_sym_ATencode] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1774), - [sym_YES] = ACTIONS(1774), - [sym_NO] = ACTIONS(1774), - [anon_sym___builtin_available] = ACTIONS(1774), - [anon_sym_ATavailable] = ACTIONS(1776), - [anon_sym_va_arg] = ACTIONS(1774), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1022] = { - [ts_builtin_sym_end] = ACTIONS(1776), - [sym_identifier] = ACTIONS(1774), - [aux_sym_preproc_include_token1] = ACTIONS(1776), - [aux_sym_preproc_def_token1] = ACTIONS(1776), - [aux_sym_preproc_if_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_typedef] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym___attribute] = ACTIONS(1774), - [anon_sym___attribute__] = ACTIONS(1774), - [anon_sym___declspec] = ACTIONS(1774), - [anon_sym___cdecl] = ACTIONS(1774), - [anon_sym___clrcall] = ACTIONS(1774), - [anon_sym___stdcall] = ACTIONS(1774), - [anon_sym___fastcall] = ACTIONS(1774), - [anon_sym___thiscall] = ACTIONS(1774), - [anon_sym___vectorcall] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_auto] = ACTIONS(1774), - [anon_sym_register] = ACTIONS(1774), - [anon_sym_inline] = ACTIONS(1774), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_out] = ACTIONS(1774), - [anon_sym_inout] = ACTIONS(1774), - [anon_sym_bycopy] = ACTIONS(1774), - [anon_sym_byref] = ACTIONS(1774), - [anon_sym_oneway] = ACTIONS(1774), - [anon_sym__Nullable] = ACTIONS(1774), - [anon_sym__Nonnull] = ACTIONS(1774), - [anon_sym__Nullable_result] = ACTIONS(1774), - [anon_sym__Null_unspecified] = ACTIONS(1774), - [anon_sym___autoreleasing] = ACTIONS(1774), - [anon_sym___nullable] = ACTIONS(1774), - [anon_sym___nonnull] = ACTIONS(1774), - [anon_sym___strong] = ACTIONS(1774), - [anon_sym___weak] = ACTIONS(1774), - [anon_sym___bridge] = ACTIONS(1774), - [anon_sym___bridge_transfer] = ACTIONS(1774), - [anon_sym___bridge_retained] = ACTIONS(1774), - [anon_sym___unsafe_unretained] = ACTIONS(1774), - [anon_sym___block] = ACTIONS(1774), - [anon_sym___kindof] = ACTIONS(1774), - [anon_sym___unused] = ACTIONS(1774), - [anon_sym__Complex] = ACTIONS(1774), - [anon_sym___complex] = ACTIONS(1774), - [anon_sym_IBOutlet] = ACTIONS(1774), - [anon_sym_IBInspectable] = ACTIONS(1774), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1774), - [anon_sym_signed] = ACTIONS(1774), - [anon_sym_unsigned] = ACTIONS(1774), - [anon_sym_long] = ACTIONS(1774), - [anon_sym_short] = ACTIONS(1774), - [sym_primitive_type] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_NS_ENUM] = ACTIONS(1774), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1774), - [anon_sym_NS_OPTIONS] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1774), - [anon_sym_case] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_goto] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1776), - [anon_sym_sizeof] = ACTIONS(1774), - [sym_number_literal] = ACTIONS(1776), - [anon_sym_L_SQUOTE] = ACTIONS(1776), - [anon_sym_u_SQUOTE] = ACTIONS(1776), - [anon_sym_U_SQUOTE] = ACTIONS(1776), - [anon_sym_u8_SQUOTE] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_L_DQUOTE] = ACTIONS(1776), - [anon_sym_u_DQUOTE] = ACTIONS(1776), - [anon_sym_U_DQUOTE] = ACTIONS(1776), - [anon_sym_u8_DQUOTE] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym_true] = ACTIONS(1774), - [sym_false] = ACTIONS(1774), - [sym_null] = ACTIONS(1774), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1776), - [anon_sym_ATimport] = ACTIONS(1776), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1774), - [anon_sym_ATcompatibility_alias] = ACTIONS(1776), - [anon_sym_ATprotocol] = ACTIONS(1776), - [anon_sym_ATclass] = ACTIONS(1776), - [anon_sym_ATinterface] = ACTIONS(1776), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1774), - [sym_method_attribute_specifier] = ACTIONS(1774), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1774), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE] = ACTIONS(1774), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_API_AVAILABLE] = ACTIONS(1774), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_API_DEPRECATED] = ACTIONS(1774), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1774), - [anon_sym___deprecated_msg] = ACTIONS(1774), - [anon_sym___deprecated_enum_msg] = ACTIONS(1774), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1774), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1774), - [anon_sym_ATimplementation] = ACTIONS(1776), - [anon_sym_typeof] = ACTIONS(1774), - [anon_sym___typeof] = ACTIONS(1774), - [anon_sym___typeof__] = ACTIONS(1774), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_nil] = ACTIONS(1774), - [sym_id] = ACTIONS(1774), - [sym_instancetype] = ACTIONS(1774), - [sym_Class] = ACTIONS(1774), - [sym_SEL] = ACTIONS(1774), - [sym_IMP] = ACTIONS(1774), - [sym_BOOL] = ACTIONS(1774), - [sym_auto] = ACTIONS(1774), - [anon_sym_ATautoreleasepool] = ACTIONS(1776), - [anon_sym_ATsynchronized] = ACTIONS(1776), - [anon_sym_ATtry] = ACTIONS(1776), - [anon_sym_ATthrow] = ACTIONS(1776), - [anon_sym_ATselector] = ACTIONS(1776), - [anon_sym_ATencode] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1774), - [sym_YES] = ACTIONS(1774), - [sym_NO] = ACTIONS(1774), - [anon_sym___builtin_available] = ACTIONS(1774), - [anon_sym_ATavailable] = ACTIONS(1776), - [anon_sym_va_arg] = ACTIONS(1774), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1023] = { - [ts_builtin_sym_end] = ACTIONS(2180), - [sym_identifier] = ACTIONS(2178), - [aux_sym_preproc_include_token1] = ACTIONS(2180), - [aux_sym_preproc_def_token1] = ACTIONS(2180), - [aux_sym_preproc_if_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), - [anon_sym_LPAREN2] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_typedef] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym___attribute] = ACTIONS(2178), - [anon_sym___attribute__] = ACTIONS(2178), - [anon_sym___declspec] = ACTIONS(2178), - [anon_sym___cdecl] = ACTIONS(2178), - [anon_sym___clrcall] = ACTIONS(2178), - [anon_sym___stdcall] = ACTIONS(2178), - [anon_sym___fastcall] = ACTIONS(2178), - [anon_sym___thiscall] = ACTIONS(2178), - [anon_sym___vectorcall] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_RBRACE] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_auto] = ACTIONS(2178), - [anon_sym_register] = ACTIONS(2178), - [anon_sym_inline] = ACTIONS(2178), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_volatile] = ACTIONS(2178), - [anon_sym_restrict] = ACTIONS(2178), - [anon_sym__Atomic] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_out] = ACTIONS(2178), - [anon_sym_inout] = ACTIONS(2178), - [anon_sym_bycopy] = ACTIONS(2178), - [anon_sym_byref] = ACTIONS(2178), - [anon_sym_oneway] = ACTIONS(2178), - [anon_sym__Nullable] = ACTIONS(2178), - [anon_sym__Nonnull] = ACTIONS(2178), - [anon_sym__Nullable_result] = ACTIONS(2178), - [anon_sym__Null_unspecified] = ACTIONS(2178), - [anon_sym___autoreleasing] = ACTIONS(2178), - [anon_sym___nullable] = ACTIONS(2178), - [anon_sym___nonnull] = ACTIONS(2178), - [anon_sym___strong] = ACTIONS(2178), - [anon_sym___weak] = ACTIONS(2178), - [anon_sym___bridge] = ACTIONS(2178), - [anon_sym___bridge_transfer] = ACTIONS(2178), - [anon_sym___bridge_retained] = ACTIONS(2178), - [anon_sym___unsafe_unretained] = ACTIONS(2178), - [anon_sym___block] = ACTIONS(2178), - [anon_sym___kindof] = ACTIONS(2178), - [anon_sym___unused] = ACTIONS(2178), - [anon_sym__Complex] = ACTIONS(2178), - [anon_sym___complex] = ACTIONS(2178), - [anon_sym_IBOutlet] = ACTIONS(2178), - [anon_sym_IBInspectable] = ACTIONS(2178), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2178), - [anon_sym_signed] = ACTIONS(2178), - [anon_sym_unsigned] = ACTIONS(2178), - [anon_sym_long] = ACTIONS(2178), - [anon_sym_short] = ACTIONS(2178), - [sym_primitive_type] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_NS_ENUM] = ACTIONS(2178), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2178), - [anon_sym_NS_OPTIONS] = ACTIONS(2178), - [anon_sym_struct] = ACTIONS(2178), - [anon_sym_union] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_goto] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(2180), - [anon_sym_sizeof] = ACTIONS(2178), - [sym_number_literal] = ACTIONS(2180), - [anon_sym_L_SQUOTE] = ACTIONS(2180), - [anon_sym_u_SQUOTE] = ACTIONS(2180), - [anon_sym_U_SQUOTE] = ACTIONS(2180), - [anon_sym_u8_SQUOTE] = ACTIONS(2180), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_L_DQUOTE] = ACTIONS(2180), - [anon_sym_u_DQUOTE] = ACTIONS(2180), - [anon_sym_U_DQUOTE] = ACTIONS(2180), - [anon_sym_u8_DQUOTE] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2180), - [anon_sym_ATimport] = ACTIONS(2180), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2178), - [anon_sym_ATcompatibility_alias] = ACTIONS(2180), - [anon_sym_ATprotocol] = ACTIONS(2180), - [anon_sym_ATclass] = ACTIONS(2180), - [anon_sym_ATinterface] = ACTIONS(2180), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2178), - [sym_method_attribute_specifier] = ACTIONS(2178), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2178), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE] = ACTIONS(2178), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_API_AVAILABLE] = ACTIONS(2178), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_API_DEPRECATED] = ACTIONS(2178), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2178), - [anon_sym___deprecated_msg] = ACTIONS(2178), - [anon_sym___deprecated_enum_msg] = ACTIONS(2178), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2178), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2178), - [anon_sym_ATimplementation] = ACTIONS(2180), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym___typeof] = ACTIONS(2178), - [anon_sym___typeof__] = ACTIONS(2178), - [sym_self] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_nil] = ACTIONS(2178), - [sym_id] = ACTIONS(2178), - [sym_instancetype] = ACTIONS(2178), - [sym_Class] = ACTIONS(2178), - [sym_SEL] = ACTIONS(2178), - [sym_IMP] = ACTIONS(2178), - [sym_BOOL] = ACTIONS(2178), - [sym_auto] = ACTIONS(2178), - [anon_sym_ATautoreleasepool] = ACTIONS(2180), - [anon_sym_ATsynchronized] = ACTIONS(2180), - [anon_sym_ATtry] = ACTIONS(2180), - [anon_sym_ATthrow] = ACTIONS(2180), - [anon_sym_ATselector] = ACTIONS(2180), - [anon_sym_ATencode] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2178), - [sym_YES] = ACTIONS(2178), - [sym_NO] = ACTIONS(2178), - [anon_sym___builtin_available] = ACTIONS(2178), - [anon_sym_ATavailable] = ACTIONS(2180), - [anon_sym_va_arg] = ACTIONS(2178), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1024] = { - [ts_builtin_sym_end] = ACTIONS(2124), - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1025] = { - [ts_builtin_sym_end] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1026] = { - [ts_builtin_sym_end] = ACTIONS(2124), - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1027] = { - [ts_builtin_sym_end] = ACTIONS(1776), - [sym_identifier] = ACTIONS(1774), - [aux_sym_preproc_include_token1] = ACTIONS(1776), - [aux_sym_preproc_def_token1] = ACTIONS(1776), - [aux_sym_preproc_if_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_typedef] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym___attribute] = ACTIONS(1774), - [anon_sym___attribute__] = ACTIONS(1774), - [anon_sym___declspec] = ACTIONS(1774), - [anon_sym___cdecl] = ACTIONS(1774), - [anon_sym___clrcall] = ACTIONS(1774), - [anon_sym___stdcall] = ACTIONS(1774), - [anon_sym___fastcall] = ACTIONS(1774), - [anon_sym___thiscall] = ACTIONS(1774), - [anon_sym___vectorcall] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_auto] = ACTIONS(1774), - [anon_sym_register] = ACTIONS(1774), - [anon_sym_inline] = ACTIONS(1774), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_out] = ACTIONS(1774), - [anon_sym_inout] = ACTIONS(1774), - [anon_sym_bycopy] = ACTIONS(1774), - [anon_sym_byref] = ACTIONS(1774), - [anon_sym_oneway] = ACTIONS(1774), - [anon_sym__Nullable] = ACTIONS(1774), - [anon_sym__Nonnull] = ACTIONS(1774), - [anon_sym__Nullable_result] = ACTIONS(1774), - [anon_sym__Null_unspecified] = ACTIONS(1774), - [anon_sym___autoreleasing] = ACTIONS(1774), - [anon_sym___nullable] = ACTIONS(1774), - [anon_sym___nonnull] = ACTIONS(1774), - [anon_sym___strong] = ACTIONS(1774), - [anon_sym___weak] = ACTIONS(1774), - [anon_sym___bridge] = ACTIONS(1774), - [anon_sym___bridge_transfer] = ACTIONS(1774), - [anon_sym___bridge_retained] = ACTIONS(1774), - [anon_sym___unsafe_unretained] = ACTIONS(1774), - [anon_sym___block] = ACTIONS(1774), - [anon_sym___kindof] = ACTIONS(1774), - [anon_sym___unused] = ACTIONS(1774), - [anon_sym__Complex] = ACTIONS(1774), - [anon_sym___complex] = ACTIONS(1774), - [anon_sym_IBOutlet] = ACTIONS(1774), - [anon_sym_IBInspectable] = ACTIONS(1774), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1774), - [anon_sym_signed] = ACTIONS(1774), - [anon_sym_unsigned] = ACTIONS(1774), - [anon_sym_long] = ACTIONS(1774), - [anon_sym_short] = ACTIONS(1774), - [sym_primitive_type] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_NS_ENUM] = ACTIONS(1774), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1774), - [anon_sym_NS_OPTIONS] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1774), - [anon_sym_case] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_goto] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1776), - [anon_sym_sizeof] = ACTIONS(1774), - [sym_number_literal] = ACTIONS(1776), - [anon_sym_L_SQUOTE] = ACTIONS(1776), - [anon_sym_u_SQUOTE] = ACTIONS(1776), - [anon_sym_U_SQUOTE] = ACTIONS(1776), - [anon_sym_u8_SQUOTE] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_L_DQUOTE] = ACTIONS(1776), - [anon_sym_u_DQUOTE] = ACTIONS(1776), - [anon_sym_U_DQUOTE] = ACTIONS(1776), - [anon_sym_u8_DQUOTE] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym_true] = ACTIONS(1774), - [sym_false] = ACTIONS(1774), - [sym_null] = ACTIONS(1774), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1776), - [anon_sym_ATimport] = ACTIONS(1776), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1774), - [anon_sym_ATcompatibility_alias] = ACTIONS(1776), - [anon_sym_ATprotocol] = ACTIONS(1776), - [anon_sym_ATclass] = ACTIONS(1776), - [anon_sym_ATinterface] = ACTIONS(1776), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1774), - [sym_method_attribute_specifier] = ACTIONS(1774), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1774), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE] = ACTIONS(1774), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_API_AVAILABLE] = ACTIONS(1774), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_API_DEPRECATED] = ACTIONS(1774), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1774), - [anon_sym___deprecated_msg] = ACTIONS(1774), - [anon_sym___deprecated_enum_msg] = ACTIONS(1774), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1774), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1774), - [anon_sym_ATimplementation] = ACTIONS(1776), - [anon_sym_typeof] = ACTIONS(1774), - [anon_sym___typeof] = ACTIONS(1774), - [anon_sym___typeof__] = ACTIONS(1774), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_nil] = ACTIONS(1774), - [sym_id] = ACTIONS(1774), - [sym_instancetype] = ACTIONS(1774), - [sym_Class] = ACTIONS(1774), - [sym_SEL] = ACTIONS(1774), - [sym_IMP] = ACTIONS(1774), - [sym_BOOL] = ACTIONS(1774), - [sym_auto] = ACTIONS(1774), - [anon_sym_ATautoreleasepool] = ACTIONS(1776), - [anon_sym_ATsynchronized] = ACTIONS(1776), - [anon_sym_ATtry] = ACTIONS(1776), - [anon_sym_ATthrow] = ACTIONS(1776), - [anon_sym_ATselector] = ACTIONS(1776), - [anon_sym_ATencode] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1774), - [sym_YES] = ACTIONS(1774), - [sym_NO] = ACTIONS(1774), - [anon_sym___builtin_available] = ACTIONS(1774), - [anon_sym_ATavailable] = ACTIONS(1776), - [anon_sym_va_arg] = ACTIONS(1774), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1028] = { - [ts_builtin_sym_end] = ACTIONS(2044), - [sym_identifier] = ACTIONS(2042), - [aux_sym_preproc_include_token1] = ACTIONS(2044), - [aux_sym_preproc_def_token1] = ACTIONS(2044), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2042), - [anon_sym_LPAREN2] = ACTIONS(2044), - [anon_sym_BANG] = ACTIONS(2044), - [anon_sym_TILDE] = ACTIONS(2044), - [anon_sym_DASH] = ACTIONS(2042), - [anon_sym_PLUS] = ACTIONS(2042), - [anon_sym_STAR] = ACTIONS(2044), - [anon_sym_CARET] = ACTIONS(2044), - [anon_sym_AMP] = ACTIONS(2044), - [anon_sym_SEMI] = ACTIONS(2044), - [anon_sym_typedef] = ACTIONS(2042), - [anon_sym_extern] = ACTIONS(2042), - [anon_sym___attribute] = ACTIONS(2042), - [anon_sym___attribute__] = ACTIONS(2042), - [anon_sym___declspec] = ACTIONS(2042), - [anon_sym___cdecl] = ACTIONS(2042), - [anon_sym___clrcall] = ACTIONS(2042), - [anon_sym___stdcall] = ACTIONS(2042), - [anon_sym___fastcall] = ACTIONS(2042), - [anon_sym___thiscall] = ACTIONS(2042), - [anon_sym___vectorcall] = ACTIONS(2042), - [anon_sym_LBRACE] = ACTIONS(2044), - [anon_sym_RBRACE] = ACTIONS(2044), - [anon_sym_LBRACK] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2042), - [anon_sym_auto] = ACTIONS(2042), - [anon_sym_register] = ACTIONS(2042), - [anon_sym_inline] = ACTIONS(2042), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2042), - [anon_sym_const] = ACTIONS(2042), - [anon_sym_volatile] = ACTIONS(2042), - [anon_sym_restrict] = ACTIONS(2042), - [anon_sym__Atomic] = ACTIONS(2042), - [anon_sym_in] = ACTIONS(2042), - [anon_sym_out] = ACTIONS(2042), - [anon_sym_inout] = ACTIONS(2042), - [anon_sym_bycopy] = ACTIONS(2042), - [anon_sym_byref] = ACTIONS(2042), - [anon_sym_oneway] = ACTIONS(2042), - [anon_sym__Nullable] = ACTIONS(2042), - [anon_sym__Nonnull] = ACTIONS(2042), - [anon_sym__Nullable_result] = ACTIONS(2042), - [anon_sym__Null_unspecified] = ACTIONS(2042), - [anon_sym___autoreleasing] = ACTIONS(2042), - [anon_sym___nullable] = ACTIONS(2042), - [anon_sym___nonnull] = ACTIONS(2042), - [anon_sym___strong] = ACTIONS(2042), - [anon_sym___weak] = ACTIONS(2042), - [anon_sym___bridge] = ACTIONS(2042), - [anon_sym___bridge_transfer] = ACTIONS(2042), - [anon_sym___bridge_retained] = ACTIONS(2042), - [anon_sym___unsafe_unretained] = ACTIONS(2042), - [anon_sym___block] = ACTIONS(2042), - [anon_sym___kindof] = ACTIONS(2042), - [anon_sym___unused] = ACTIONS(2042), - [anon_sym__Complex] = ACTIONS(2042), - [anon_sym___complex] = ACTIONS(2042), - [anon_sym_IBOutlet] = ACTIONS(2042), - [anon_sym_IBInspectable] = ACTIONS(2042), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2042), - [anon_sym_signed] = ACTIONS(2042), - [anon_sym_unsigned] = ACTIONS(2042), - [anon_sym_long] = ACTIONS(2042), - [anon_sym_short] = ACTIONS(2042), - [sym_primitive_type] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2042), - [anon_sym_NS_ENUM] = ACTIONS(2042), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2042), - [anon_sym_NS_OPTIONS] = ACTIONS(2042), - [anon_sym_struct] = ACTIONS(2042), - [anon_sym_union] = ACTIONS(2042), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_switch] = ACTIONS(2042), - [anon_sym_case] = ACTIONS(2042), - [anon_sym_default] = ACTIONS(2042), - [anon_sym_while] = ACTIONS(2042), - [anon_sym_do] = ACTIONS(2042), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_return] = ACTIONS(2042), - [anon_sym_break] = ACTIONS(2042), - [anon_sym_continue] = ACTIONS(2042), - [anon_sym_goto] = ACTIONS(2042), - [anon_sym_DASH_DASH] = ACTIONS(2044), - [anon_sym_PLUS_PLUS] = ACTIONS(2044), - [anon_sym_sizeof] = ACTIONS(2042), - [sym_number_literal] = ACTIONS(2044), - [anon_sym_L_SQUOTE] = ACTIONS(2044), - [anon_sym_u_SQUOTE] = ACTIONS(2044), - [anon_sym_U_SQUOTE] = ACTIONS(2044), - [anon_sym_u8_SQUOTE] = ACTIONS(2044), - [anon_sym_SQUOTE] = ACTIONS(2044), - [anon_sym_L_DQUOTE] = ACTIONS(2044), - [anon_sym_u_DQUOTE] = ACTIONS(2044), - [anon_sym_U_DQUOTE] = ACTIONS(2044), - [anon_sym_u8_DQUOTE] = ACTIONS(2044), - [anon_sym_DQUOTE] = ACTIONS(2044), - [sym_true] = ACTIONS(2042), - [sym_false] = ACTIONS(2042), - [sym_null] = ACTIONS(2042), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2044), - [anon_sym_ATimport] = ACTIONS(2044), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2042), - [anon_sym_ATcompatibility_alias] = ACTIONS(2044), - [anon_sym_ATprotocol] = ACTIONS(2044), - [anon_sym_ATclass] = ACTIONS(2044), - [anon_sym_ATinterface] = ACTIONS(2044), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2042), - [sym_method_attribute_specifier] = ACTIONS(2042), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2042), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2042), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2042), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2042), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2042), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2042), - [anon_sym_NS_AVAILABLE] = ACTIONS(2042), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2042), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2042), - [anon_sym_API_AVAILABLE] = ACTIONS(2042), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2042), - [anon_sym_API_DEPRECATED] = ACTIONS(2042), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2042), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2042), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2042), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2042), - [anon_sym___deprecated_msg] = ACTIONS(2042), - [anon_sym___deprecated_enum_msg] = ACTIONS(2042), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2042), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2042), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2042), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2042), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2042), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2042), - [anon_sym_ATimplementation] = ACTIONS(2044), - [anon_sym_typeof] = ACTIONS(2042), - [anon_sym___typeof] = ACTIONS(2042), - [anon_sym___typeof__] = ACTIONS(2042), - [sym_self] = ACTIONS(2042), - [sym_super] = ACTIONS(2042), - [sym_nil] = ACTIONS(2042), - [sym_id] = ACTIONS(2042), - [sym_instancetype] = ACTIONS(2042), - [sym_Class] = ACTIONS(2042), - [sym_SEL] = ACTIONS(2042), - [sym_IMP] = ACTIONS(2042), - [sym_BOOL] = ACTIONS(2042), - [sym_auto] = ACTIONS(2042), - [anon_sym_ATautoreleasepool] = ACTIONS(2044), - [anon_sym_ATsynchronized] = ACTIONS(2044), - [anon_sym_ATtry] = ACTIONS(2044), - [anon_sym_ATthrow] = ACTIONS(2044), - [anon_sym_ATselector] = ACTIONS(2044), - [anon_sym_ATencode] = ACTIONS(2044), - [anon_sym_AT] = ACTIONS(2042), - [sym_YES] = ACTIONS(2042), - [sym_NO] = ACTIONS(2042), - [anon_sym___builtin_available] = ACTIONS(2042), - [anon_sym_ATavailable] = ACTIONS(2044), - [anon_sym_va_arg] = ACTIONS(2042), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1029] = { - [ts_builtin_sym_end] = ACTIONS(2124), - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1030] = { - [ts_builtin_sym_end] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1031] = { - [ts_builtin_sym_end] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1032] = { - [ts_builtin_sym_end] = ACTIONS(2124), - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1033] = { - [ts_builtin_sym_end] = ACTIONS(1776), - [sym_identifier] = ACTIONS(1774), - [aux_sym_preproc_include_token1] = ACTIONS(1776), - [aux_sym_preproc_def_token1] = ACTIONS(1776), - [aux_sym_preproc_if_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_typedef] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym___attribute] = ACTIONS(1774), - [anon_sym___attribute__] = ACTIONS(1774), - [anon_sym___declspec] = ACTIONS(1774), - [anon_sym___cdecl] = ACTIONS(1774), - [anon_sym___clrcall] = ACTIONS(1774), - [anon_sym___stdcall] = ACTIONS(1774), - [anon_sym___fastcall] = ACTIONS(1774), - [anon_sym___thiscall] = ACTIONS(1774), - [anon_sym___vectorcall] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_auto] = ACTIONS(1774), - [anon_sym_register] = ACTIONS(1774), - [anon_sym_inline] = ACTIONS(1774), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_out] = ACTIONS(1774), - [anon_sym_inout] = ACTIONS(1774), - [anon_sym_bycopy] = ACTIONS(1774), - [anon_sym_byref] = ACTIONS(1774), - [anon_sym_oneway] = ACTIONS(1774), - [anon_sym__Nullable] = ACTIONS(1774), - [anon_sym__Nonnull] = ACTIONS(1774), - [anon_sym__Nullable_result] = ACTIONS(1774), - [anon_sym__Null_unspecified] = ACTIONS(1774), - [anon_sym___autoreleasing] = ACTIONS(1774), - [anon_sym___nullable] = ACTIONS(1774), - [anon_sym___nonnull] = ACTIONS(1774), - [anon_sym___strong] = ACTIONS(1774), - [anon_sym___weak] = ACTIONS(1774), - [anon_sym___bridge] = ACTIONS(1774), - [anon_sym___bridge_transfer] = ACTIONS(1774), - [anon_sym___bridge_retained] = ACTIONS(1774), - [anon_sym___unsafe_unretained] = ACTIONS(1774), - [anon_sym___block] = ACTIONS(1774), - [anon_sym___kindof] = ACTIONS(1774), - [anon_sym___unused] = ACTIONS(1774), - [anon_sym__Complex] = ACTIONS(1774), - [anon_sym___complex] = ACTIONS(1774), - [anon_sym_IBOutlet] = ACTIONS(1774), - [anon_sym_IBInspectable] = ACTIONS(1774), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1774), - [anon_sym_signed] = ACTIONS(1774), - [anon_sym_unsigned] = ACTIONS(1774), - [anon_sym_long] = ACTIONS(1774), - [anon_sym_short] = ACTIONS(1774), - [sym_primitive_type] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_NS_ENUM] = ACTIONS(1774), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1774), - [anon_sym_NS_OPTIONS] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1774), - [anon_sym_case] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_goto] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1776), - [anon_sym_sizeof] = ACTIONS(1774), - [sym_number_literal] = ACTIONS(1776), - [anon_sym_L_SQUOTE] = ACTIONS(1776), - [anon_sym_u_SQUOTE] = ACTIONS(1776), - [anon_sym_U_SQUOTE] = ACTIONS(1776), - [anon_sym_u8_SQUOTE] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_L_DQUOTE] = ACTIONS(1776), - [anon_sym_u_DQUOTE] = ACTIONS(1776), - [anon_sym_U_DQUOTE] = ACTIONS(1776), - [anon_sym_u8_DQUOTE] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym_true] = ACTIONS(1774), - [sym_false] = ACTIONS(1774), - [sym_null] = ACTIONS(1774), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1776), - [anon_sym_ATimport] = ACTIONS(1776), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1774), - [anon_sym_ATcompatibility_alias] = ACTIONS(1776), - [anon_sym_ATprotocol] = ACTIONS(1776), - [anon_sym_ATclass] = ACTIONS(1776), - [anon_sym_ATinterface] = ACTIONS(1776), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1774), - [sym_method_attribute_specifier] = ACTIONS(1774), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1774), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE] = ACTIONS(1774), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_API_AVAILABLE] = ACTIONS(1774), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_API_DEPRECATED] = ACTIONS(1774), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1774), - [anon_sym___deprecated_msg] = ACTIONS(1774), - [anon_sym___deprecated_enum_msg] = ACTIONS(1774), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1774), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1774), - [anon_sym_ATimplementation] = ACTIONS(1776), - [anon_sym_typeof] = ACTIONS(1774), - [anon_sym___typeof] = ACTIONS(1774), - [anon_sym___typeof__] = ACTIONS(1774), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_nil] = ACTIONS(1774), - [sym_id] = ACTIONS(1774), - [sym_instancetype] = ACTIONS(1774), - [sym_Class] = ACTIONS(1774), - [sym_SEL] = ACTIONS(1774), - [sym_IMP] = ACTIONS(1774), - [sym_BOOL] = ACTIONS(1774), - [sym_auto] = ACTIONS(1774), - [anon_sym_ATautoreleasepool] = ACTIONS(1776), - [anon_sym_ATsynchronized] = ACTIONS(1776), - [anon_sym_ATtry] = ACTIONS(1776), - [anon_sym_ATthrow] = ACTIONS(1776), - [anon_sym_ATselector] = ACTIONS(1776), - [anon_sym_ATencode] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1774), - [sym_YES] = ACTIONS(1774), - [sym_NO] = ACTIONS(1774), - [anon_sym___builtin_available] = ACTIONS(1774), - [anon_sym_ATavailable] = ACTIONS(1776), - [anon_sym_va_arg] = ACTIONS(1774), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1034] = { - [ts_builtin_sym_end] = ACTIONS(2124), - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1035] = { - [ts_builtin_sym_end] = ACTIONS(2176), - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1036] = { - [ts_builtin_sym_end] = ACTIONS(2028), - [sym_identifier] = ACTIONS(2026), - [aux_sym_preproc_include_token1] = ACTIONS(2028), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2028), - [anon_sym_BANG] = ACTIONS(2028), - [anon_sym_TILDE] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2028), - [anon_sym_CARET] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_typedef] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2026), - [anon_sym___attribute] = ACTIONS(2026), - [anon_sym___attribute__] = ACTIONS(2026), - [anon_sym___declspec] = ACTIONS(2026), - [anon_sym___cdecl] = ACTIONS(2026), - [anon_sym___clrcall] = ACTIONS(2026), - [anon_sym___stdcall] = ACTIONS(2026), - [anon_sym___fastcall] = ACTIONS(2026), - [anon_sym___thiscall] = ACTIONS(2026), - [anon_sym___vectorcall] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_RBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_auto] = ACTIONS(2026), - [anon_sym_register] = ACTIONS(2026), - [anon_sym_inline] = ACTIONS(2026), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_volatile] = ACTIONS(2026), - [anon_sym_restrict] = ACTIONS(2026), - [anon_sym__Atomic] = ACTIONS(2026), - [anon_sym_in] = ACTIONS(2026), - [anon_sym_out] = ACTIONS(2026), - [anon_sym_inout] = ACTIONS(2026), - [anon_sym_bycopy] = ACTIONS(2026), - [anon_sym_byref] = ACTIONS(2026), - [anon_sym_oneway] = ACTIONS(2026), - [anon_sym__Nullable] = ACTIONS(2026), - [anon_sym__Nonnull] = ACTIONS(2026), - [anon_sym__Nullable_result] = ACTIONS(2026), - [anon_sym__Null_unspecified] = ACTIONS(2026), - [anon_sym___autoreleasing] = ACTIONS(2026), - [anon_sym___nullable] = ACTIONS(2026), - [anon_sym___nonnull] = ACTIONS(2026), - [anon_sym___strong] = ACTIONS(2026), - [anon_sym___weak] = ACTIONS(2026), - [anon_sym___bridge] = ACTIONS(2026), - [anon_sym___bridge_transfer] = ACTIONS(2026), - [anon_sym___bridge_retained] = ACTIONS(2026), - [anon_sym___unsafe_unretained] = ACTIONS(2026), - [anon_sym___block] = ACTIONS(2026), - [anon_sym___kindof] = ACTIONS(2026), - [anon_sym___unused] = ACTIONS(2026), - [anon_sym__Complex] = ACTIONS(2026), - [anon_sym___complex] = ACTIONS(2026), - [anon_sym_IBOutlet] = ACTIONS(2026), - [anon_sym_IBInspectable] = ACTIONS(2026), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2026), - [anon_sym_signed] = ACTIONS(2026), - [anon_sym_unsigned] = ACTIONS(2026), - [anon_sym_long] = ACTIONS(2026), - [anon_sym_short] = ACTIONS(2026), - [sym_primitive_type] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_NS_ENUM] = ACTIONS(2026), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2026), - [anon_sym_NS_OPTIONS] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_switch] = ACTIONS(2026), - [anon_sym_case] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_goto] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2028), - [anon_sym_L_SQUOTE] = ACTIONS(2028), - [anon_sym_u_SQUOTE] = ACTIONS(2028), - [anon_sym_U_SQUOTE] = ACTIONS(2028), - [anon_sym_u8_SQUOTE] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_L_DQUOTE] = ACTIONS(2028), - [anon_sym_u_DQUOTE] = ACTIONS(2028), - [anon_sym_U_DQUOTE] = ACTIONS(2028), - [anon_sym_u8_DQUOTE] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [sym_true] = ACTIONS(2026), - [sym_false] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2028), - [anon_sym_ATimport] = ACTIONS(2028), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2026), - [anon_sym_ATcompatibility_alias] = ACTIONS(2028), - [anon_sym_ATprotocol] = ACTIONS(2028), - [anon_sym_ATclass] = ACTIONS(2028), - [anon_sym_ATinterface] = ACTIONS(2028), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2026), - [sym_method_attribute_specifier] = ACTIONS(2026), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2026), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE] = ACTIONS(2026), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_API_AVAILABLE] = ACTIONS(2026), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_API_DEPRECATED] = ACTIONS(2026), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2026), - [anon_sym___deprecated_msg] = ACTIONS(2026), - [anon_sym___deprecated_enum_msg] = ACTIONS(2026), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2026), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2026), - [anon_sym_ATimplementation] = ACTIONS(2028), - [anon_sym_typeof] = ACTIONS(2026), - [anon_sym___typeof] = ACTIONS(2026), - [anon_sym___typeof__] = ACTIONS(2026), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_nil] = ACTIONS(2026), - [sym_id] = ACTIONS(2026), - [sym_instancetype] = ACTIONS(2026), - [sym_Class] = ACTIONS(2026), - [sym_SEL] = ACTIONS(2026), - [sym_IMP] = ACTIONS(2026), - [sym_BOOL] = ACTIONS(2026), - [sym_auto] = ACTIONS(2026), - [anon_sym_ATautoreleasepool] = ACTIONS(2028), - [anon_sym_ATsynchronized] = ACTIONS(2028), - [anon_sym_ATtry] = ACTIONS(2028), - [anon_sym_ATthrow] = ACTIONS(2028), - [anon_sym_ATselector] = ACTIONS(2028), - [anon_sym_ATencode] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(2026), - [sym_YES] = ACTIONS(2026), - [sym_NO] = ACTIONS(2026), - [anon_sym___builtin_available] = ACTIONS(2026), - [anon_sym_ATavailable] = ACTIONS(2028), - [anon_sym_va_arg] = ACTIONS(2026), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1037] = { - [ts_builtin_sym_end] = ACTIONS(2124), - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1038] = { - [ts_builtin_sym_end] = ACTIONS(2028), - [sym_identifier] = ACTIONS(2026), - [aux_sym_preproc_include_token1] = ACTIONS(2028), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2028), - [anon_sym_BANG] = ACTIONS(2028), - [anon_sym_TILDE] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2028), - [anon_sym_CARET] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_typedef] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2026), - [anon_sym___attribute] = ACTIONS(2026), - [anon_sym___attribute__] = ACTIONS(2026), - [anon_sym___declspec] = ACTIONS(2026), - [anon_sym___cdecl] = ACTIONS(2026), - [anon_sym___clrcall] = ACTIONS(2026), - [anon_sym___stdcall] = ACTIONS(2026), - [anon_sym___fastcall] = ACTIONS(2026), - [anon_sym___thiscall] = ACTIONS(2026), - [anon_sym___vectorcall] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_RBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_auto] = ACTIONS(2026), - [anon_sym_register] = ACTIONS(2026), - [anon_sym_inline] = ACTIONS(2026), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_volatile] = ACTIONS(2026), - [anon_sym_restrict] = ACTIONS(2026), - [anon_sym__Atomic] = ACTIONS(2026), - [anon_sym_in] = ACTIONS(2026), - [anon_sym_out] = ACTIONS(2026), - [anon_sym_inout] = ACTIONS(2026), - [anon_sym_bycopy] = ACTIONS(2026), - [anon_sym_byref] = ACTIONS(2026), - [anon_sym_oneway] = ACTIONS(2026), - [anon_sym__Nullable] = ACTIONS(2026), - [anon_sym__Nonnull] = ACTIONS(2026), - [anon_sym__Nullable_result] = ACTIONS(2026), - [anon_sym__Null_unspecified] = ACTIONS(2026), - [anon_sym___autoreleasing] = ACTIONS(2026), - [anon_sym___nullable] = ACTIONS(2026), - [anon_sym___nonnull] = ACTIONS(2026), - [anon_sym___strong] = ACTIONS(2026), - [anon_sym___weak] = ACTIONS(2026), - [anon_sym___bridge] = ACTIONS(2026), - [anon_sym___bridge_transfer] = ACTIONS(2026), - [anon_sym___bridge_retained] = ACTIONS(2026), - [anon_sym___unsafe_unretained] = ACTIONS(2026), - [anon_sym___block] = ACTIONS(2026), - [anon_sym___kindof] = ACTIONS(2026), - [anon_sym___unused] = ACTIONS(2026), - [anon_sym__Complex] = ACTIONS(2026), - [anon_sym___complex] = ACTIONS(2026), - [anon_sym_IBOutlet] = ACTIONS(2026), - [anon_sym_IBInspectable] = ACTIONS(2026), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2026), - [anon_sym_signed] = ACTIONS(2026), - [anon_sym_unsigned] = ACTIONS(2026), - [anon_sym_long] = ACTIONS(2026), - [anon_sym_short] = ACTIONS(2026), - [sym_primitive_type] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_NS_ENUM] = ACTIONS(2026), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2026), - [anon_sym_NS_OPTIONS] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_switch] = ACTIONS(2026), - [anon_sym_case] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_goto] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2028), - [anon_sym_L_SQUOTE] = ACTIONS(2028), - [anon_sym_u_SQUOTE] = ACTIONS(2028), - [anon_sym_U_SQUOTE] = ACTIONS(2028), - [anon_sym_u8_SQUOTE] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_L_DQUOTE] = ACTIONS(2028), - [anon_sym_u_DQUOTE] = ACTIONS(2028), - [anon_sym_U_DQUOTE] = ACTIONS(2028), - [anon_sym_u8_DQUOTE] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [sym_true] = ACTIONS(2026), - [sym_false] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2028), - [anon_sym_ATimport] = ACTIONS(2028), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2026), - [anon_sym_ATcompatibility_alias] = ACTIONS(2028), - [anon_sym_ATprotocol] = ACTIONS(2028), - [anon_sym_ATclass] = ACTIONS(2028), - [anon_sym_ATinterface] = ACTIONS(2028), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2026), - [sym_method_attribute_specifier] = ACTIONS(2026), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2026), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE] = ACTIONS(2026), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_API_AVAILABLE] = ACTIONS(2026), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_API_DEPRECATED] = ACTIONS(2026), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2026), - [anon_sym___deprecated_msg] = ACTIONS(2026), - [anon_sym___deprecated_enum_msg] = ACTIONS(2026), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2026), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2026), - [anon_sym_ATimplementation] = ACTIONS(2028), - [anon_sym_typeof] = ACTIONS(2026), - [anon_sym___typeof] = ACTIONS(2026), - [anon_sym___typeof__] = ACTIONS(2026), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_nil] = ACTIONS(2026), - [sym_id] = ACTIONS(2026), - [sym_instancetype] = ACTIONS(2026), - [sym_Class] = ACTIONS(2026), - [sym_SEL] = ACTIONS(2026), - [sym_IMP] = ACTIONS(2026), - [sym_BOOL] = ACTIONS(2026), - [sym_auto] = ACTIONS(2026), - [anon_sym_ATautoreleasepool] = ACTIONS(2028), - [anon_sym_ATsynchronized] = ACTIONS(2028), - [anon_sym_ATtry] = ACTIONS(2028), - [anon_sym_ATthrow] = ACTIONS(2028), - [anon_sym_ATselector] = ACTIONS(2028), - [anon_sym_ATencode] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(2026), - [sym_YES] = ACTIONS(2026), - [sym_NO] = ACTIONS(2026), - [anon_sym___builtin_available] = ACTIONS(2026), - [anon_sym_ATavailable] = ACTIONS(2028), - [anon_sym_va_arg] = ACTIONS(2026), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1039] = { - [ts_builtin_sym_end] = ACTIONS(2184), - [sym_identifier] = ACTIONS(2182), - [aux_sym_preproc_include_token1] = ACTIONS(2184), - [aux_sym_preproc_def_token1] = ACTIONS(2184), - [aux_sym_preproc_if_token1] = ACTIONS(2182), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2182), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2182), - [anon_sym_LPAREN2] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_CARET] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_typedef] = ACTIONS(2182), - [anon_sym_extern] = ACTIONS(2182), - [anon_sym___attribute] = ACTIONS(2182), - [anon_sym___attribute__] = ACTIONS(2182), - [anon_sym___declspec] = ACTIONS(2182), - [anon_sym___cdecl] = ACTIONS(2182), - [anon_sym___clrcall] = ACTIONS(2182), - [anon_sym___stdcall] = ACTIONS(2182), - [anon_sym___fastcall] = ACTIONS(2182), - [anon_sym___thiscall] = ACTIONS(2182), - [anon_sym___vectorcall] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_auto] = ACTIONS(2182), - [anon_sym_register] = ACTIONS(2182), - [anon_sym_inline] = ACTIONS(2182), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_volatile] = ACTIONS(2182), - [anon_sym_restrict] = ACTIONS(2182), - [anon_sym__Atomic] = ACTIONS(2182), - [anon_sym_in] = ACTIONS(2182), - [anon_sym_out] = ACTIONS(2182), - [anon_sym_inout] = ACTIONS(2182), - [anon_sym_bycopy] = ACTIONS(2182), - [anon_sym_byref] = ACTIONS(2182), - [anon_sym_oneway] = ACTIONS(2182), - [anon_sym__Nullable] = ACTIONS(2182), - [anon_sym__Nonnull] = ACTIONS(2182), - [anon_sym__Nullable_result] = ACTIONS(2182), - [anon_sym__Null_unspecified] = ACTIONS(2182), - [anon_sym___autoreleasing] = ACTIONS(2182), - [anon_sym___nullable] = ACTIONS(2182), - [anon_sym___nonnull] = ACTIONS(2182), - [anon_sym___strong] = ACTIONS(2182), - [anon_sym___weak] = ACTIONS(2182), - [anon_sym___bridge] = ACTIONS(2182), - [anon_sym___bridge_transfer] = ACTIONS(2182), - [anon_sym___bridge_retained] = ACTIONS(2182), - [anon_sym___unsafe_unretained] = ACTIONS(2182), - [anon_sym___block] = ACTIONS(2182), - [anon_sym___kindof] = ACTIONS(2182), - [anon_sym___unused] = ACTIONS(2182), - [anon_sym__Complex] = ACTIONS(2182), - [anon_sym___complex] = ACTIONS(2182), - [anon_sym_IBOutlet] = ACTIONS(2182), - [anon_sym_IBInspectable] = ACTIONS(2182), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2182), - [anon_sym_signed] = ACTIONS(2182), - [anon_sym_unsigned] = ACTIONS(2182), - [anon_sym_long] = ACTIONS(2182), - [anon_sym_short] = ACTIONS(2182), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), - [anon_sym_NS_ENUM] = ACTIONS(2182), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2182), - [anon_sym_NS_OPTIONS] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(2182), - [anon_sym_union] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_case] = ACTIONS(2182), - [anon_sym_default] = ACTIONS(2182), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_goto] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_sizeof] = ACTIONS(2182), - [sym_number_literal] = ACTIONS(2184), - [anon_sym_L_SQUOTE] = ACTIONS(2184), - [anon_sym_u_SQUOTE] = ACTIONS(2184), - [anon_sym_U_SQUOTE] = ACTIONS(2184), - [anon_sym_u8_SQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_L_DQUOTE] = ACTIONS(2184), - [anon_sym_u_DQUOTE] = ACTIONS(2184), - [anon_sym_U_DQUOTE] = ACTIONS(2184), - [anon_sym_u8_DQUOTE] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2184), - [anon_sym_ATimport] = ACTIONS(2184), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2182), - [anon_sym_ATcompatibility_alias] = ACTIONS(2184), - [anon_sym_ATprotocol] = ACTIONS(2184), - [anon_sym_ATclass] = ACTIONS(2184), - [anon_sym_ATinterface] = ACTIONS(2184), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2182), - [sym_method_attribute_specifier] = ACTIONS(2182), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2182), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2182), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2182), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2182), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2182), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2182), - [anon_sym_NS_AVAILABLE] = ACTIONS(2182), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2182), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2182), - [anon_sym_API_AVAILABLE] = ACTIONS(2182), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2182), - [anon_sym_API_DEPRECATED] = ACTIONS(2182), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2182), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2182), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2182), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2182), - [anon_sym___deprecated_msg] = ACTIONS(2182), - [anon_sym___deprecated_enum_msg] = ACTIONS(2182), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2182), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2182), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2182), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2182), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2182), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2182), - [anon_sym_ATimplementation] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2182), - [anon_sym___typeof] = ACTIONS(2182), - [anon_sym___typeof__] = ACTIONS(2182), - [sym_self] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_nil] = ACTIONS(2182), - [sym_id] = ACTIONS(2182), - [sym_instancetype] = ACTIONS(2182), - [sym_Class] = ACTIONS(2182), - [sym_SEL] = ACTIONS(2182), - [sym_IMP] = ACTIONS(2182), - [sym_BOOL] = ACTIONS(2182), - [sym_auto] = ACTIONS(2182), - [anon_sym_ATautoreleasepool] = ACTIONS(2184), - [anon_sym_ATsynchronized] = ACTIONS(2184), - [anon_sym_ATtry] = ACTIONS(2184), - [anon_sym_ATthrow] = ACTIONS(2184), - [anon_sym_ATselector] = ACTIONS(2184), - [anon_sym_ATencode] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2182), - [sym_YES] = ACTIONS(2182), - [sym_NO] = ACTIONS(2182), - [anon_sym___builtin_available] = ACTIONS(2182), - [anon_sym_ATavailable] = ACTIONS(2184), - [anon_sym_va_arg] = ACTIONS(2182), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1040] = { - [ts_builtin_sym_end] = ACTIONS(2180), - [sym_identifier] = ACTIONS(2178), - [aux_sym_preproc_include_token1] = ACTIONS(2180), - [aux_sym_preproc_def_token1] = ACTIONS(2180), - [aux_sym_preproc_if_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), - [anon_sym_LPAREN2] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_typedef] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym___attribute] = ACTIONS(2178), - [anon_sym___attribute__] = ACTIONS(2178), - [anon_sym___declspec] = ACTIONS(2178), - [anon_sym___cdecl] = ACTIONS(2178), - [anon_sym___clrcall] = ACTIONS(2178), - [anon_sym___stdcall] = ACTIONS(2178), - [anon_sym___fastcall] = ACTIONS(2178), - [anon_sym___thiscall] = ACTIONS(2178), - [anon_sym___vectorcall] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_RBRACE] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_auto] = ACTIONS(2178), - [anon_sym_register] = ACTIONS(2178), - [anon_sym_inline] = ACTIONS(2178), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_volatile] = ACTIONS(2178), - [anon_sym_restrict] = ACTIONS(2178), - [anon_sym__Atomic] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_out] = ACTIONS(2178), - [anon_sym_inout] = ACTIONS(2178), - [anon_sym_bycopy] = ACTIONS(2178), - [anon_sym_byref] = ACTIONS(2178), - [anon_sym_oneway] = ACTIONS(2178), - [anon_sym__Nullable] = ACTIONS(2178), - [anon_sym__Nonnull] = ACTIONS(2178), - [anon_sym__Nullable_result] = ACTIONS(2178), - [anon_sym__Null_unspecified] = ACTIONS(2178), - [anon_sym___autoreleasing] = ACTIONS(2178), - [anon_sym___nullable] = ACTIONS(2178), - [anon_sym___nonnull] = ACTIONS(2178), - [anon_sym___strong] = ACTIONS(2178), - [anon_sym___weak] = ACTIONS(2178), - [anon_sym___bridge] = ACTIONS(2178), - [anon_sym___bridge_transfer] = ACTIONS(2178), - [anon_sym___bridge_retained] = ACTIONS(2178), - [anon_sym___unsafe_unretained] = ACTIONS(2178), - [anon_sym___block] = ACTIONS(2178), - [anon_sym___kindof] = ACTIONS(2178), - [anon_sym___unused] = ACTIONS(2178), - [anon_sym__Complex] = ACTIONS(2178), - [anon_sym___complex] = ACTIONS(2178), - [anon_sym_IBOutlet] = ACTIONS(2178), - [anon_sym_IBInspectable] = ACTIONS(2178), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2178), - [anon_sym_signed] = ACTIONS(2178), - [anon_sym_unsigned] = ACTIONS(2178), - [anon_sym_long] = ACTIONS(2178), - [anon_sym_short] = ACTIONS(2178), - [sym_primitive_type] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_NS_ENUM] = ACTIONS(2178), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2178), - [anon_sym_NS_OPTIONS] = ACTIONS(2178), - [anon_sym_struct] = ACTIONS(2178), - [anon_sym_union] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_goto] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(2180), - [anon_sym_sizeof] = ACTIONS(2178), - [sym_number_literal] = ACTIONS(2180), - [anon_sym_L_SQUOTE] = ACTIONS(2180), - [anon_sym_u_SQUOTE] = ACTIONS(2180), - [anon_sym_U_SQUOTE] = ACTIONS(2180), - [anon_sym_u8_SQUOTE] = ACTIONS(2180), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_L_DQUOTE] = ACTIONS(2180), - [anon_sym_u_DQUOTE] = ACTIONS(2180), - [anon_sym_U_DQUOTE] = ACTIONS(2180), - [anon_sym_u8_DQUOTE] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2180), - [anon_sym_ATimport] = ACTIONS(2180), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2178), - [anon_sym_ATcompatibility_alias] = ACTIONS(2180), - [anon_sym_ATprotocol] = ACTIONS(2180), - [anon_sym_ATclass] = ACTIONS(2180), - [anon_sym_ATinterface] = ACTIONS(2180), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2178), - [sym_method_attribute_specifier] = ACTIONS(2178), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2178), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE] = ACTIONS(2178), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_API_AVAILABLE] = ACTIONS(2178), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_API_DEPRECATED] = ACTIONS(2178), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2178), - [anon_sym___deprecated_msg] = ACTIONS(2178), - [anon_sym___deprecated_enum_msg] = ACTIONS(2178), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2178), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2178), - [anon_sym_ATimplementation] = ACTIONS(2180), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym___typeof] = ACTIONS(2178), - [anon_sym___typeof__] = ACTIONS(2178), - [sym_self] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_nil] = ACTIONS(2178), - [sym_id] = ACTIONS(2178), - [sym_instancetype] = ACTIONS(2178), - [sym_Class] = ACTIONS(2178), - [sym_SEL] = ACTIONS(2178), - [sym_IMP] = ACTIONS(2178), - [sym_BOOL] = ACTIONS(2178), - [sym_auto] = ACTIONS(2178), - [anon_sym_ATautoreleasepool] = ACTIONS(2180), - [anon_sym_ATsynchronized] = ACTIONS(2180), - [anon_sym_ATtry] = ACTIONS(2180), - [anon_sym_ATthrow] = ACTIONS(2180), - [anon_sym_ATselector] = ACTIONS(2180), - [anon_sym_ATencode] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2178), - [sym_YES] = ACTIONS(2178), - [sym_NO] = ACTIONS(2178), - [anon_sym___builtin_available] = ACTIONS(2178), - [anon_sym_ATavailable] = ACTIONS(2180), - [anon_sym_va_arg] = ACTIONS(2178), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1041] = { - [ts_builtin_sym_end] = ACTIONS(1764), - [sym_identifier] = ACTIONS(1762), - [aux_sym_preproc_include_token1] = ACTIONS(1764), - [aux_sym_preproc_def_token1] = ACTIONS(1764), - [aux_sym_preproc_if_token1] = ACTIONS(1762), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1762), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1762), - [anon_sym_LPAREN2] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(1762), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_CARET] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1764), - [anon_sym_typedef] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym___attribute] = ACTIONS(1762), - [anon_sym___attribute__] = ACTIONS(1762), - [anon_sym___declspec] = ACTIONS(1762), - [anon_sym___cdecl] = ACTIONS(1762), - [anon_sym___clrcall] = ACTIONS(1762), - [anon_sym___stdcall] = ACTIONS(1762), - [anon_sym___fastcall] = ACTIONS(1762), - [anon_sym___thiscall] = ACTIONS(1762), - [anon_sym___vectorcall] = ACTIONS(1762), - [anon_sym_LBRACE] = ACTIONS(1764), - [anon_sym_RBRACE] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(1764), - [anon_sym_static] = ACTIONS(1762), - [anon_sym_auto] = ACTIONS(1762), - [anon_sym_register] = ACTIONS(1762), - [anon_sym_inline] = ACTIONS(1762), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [anon_sym_volatile] = ACTIONS(1762), - [anon_sym_restrict] = ACTIONS(1762), - [anon_sym__Atomic] = ACTIONS(1762), - [anon_sym_in] = ACTIONS(1762), - [anon_sym_out] = ACTIONS(1762), - [anon_sym_inout] = ACTIONS(1762), - [anon_sym_bycopy] = ACTIONS(1762), - [anon_sym_byref] = ACTIONS(1762), - [anon_sym_oneway] = ACTIONS(1762), - [anon_sym__Nullable] = ACTIONS(1762), - [anon_sym__Nonnull] = ACTIONS(1762), - [anon_sym__Nullable_result] = ACTIONS(1762), - [anon_sym__Null_unspecified] = ACTIONS(1762), - [anon_sym___autoreleasing] = ACTIONS(1762), - [anon_sym___nullable] = ACTIONS(1762), - [anon_sym___nonnull] = ACTIONS(1762), - [anon_sym___strong] = ACTIONS(1762), - [anon_sym___weak] = ACTIONS(1762), - [anon_sym___bridge] = ACTIONS(1762), - [anon_sym___bridge_transfer] = ACTIONS(1762), - [anon_sym___bridge_retained] = ACTIONS(1762), - [anon_sym___unsafe_unretained] = ACTIONS(1762), - [anon_sym___block] = ACTIONS(1762), - [anon_sym___kindof] = ACTIONS(1762), - [anon_sym___unused] = ACTIONS(1762), - [anon_sym__Complex] = ACTIONS(1762), - [anon_sym___complex] = ACTIONS(1762), - [anon_sym_IBOutlet] = ACTIONS(1762), - [anon_sym_IBInspectable] = ACTIONS(1762), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1762), - [anon_sym_signed] = ACTIONS(1762), - [anon_sym_unsigned] = ACTIONS(1762), - [anon_sym_long] = ACTIONS(1762), - [anon_sym_short] = ACTIONS(1762), - [sym_primitive_type] = ACTIONS(1762), - [anon_sym_enum] = ACTIONS(1762), - [anon_sym_NS_ENUM] = ACTIONS(1762), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1762), - [anon_sym_NS_OPTIONS] = ACTIONS(1762), - [anon_sym_struct] = ACTIONS(1762), - [anon_sym_union] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(1762), - [anon_sym_switch] = ACTIONS(1762), - [anon_sym_case] = ACTIONS(1762), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1762), - [anon_sym_do] = ACTIONS(1762), - [anon_sym_for] = ACTIONS(1762), - [anon_sym_return] = ACTIONS(1762), - [anon_sym_break] = ACTIONS(1762), - [anon_sym_continue] = ACTIONS(1762), - [anon_sym_goto] = ACTIONS(1762), - [anon_sym_DASH_DASH] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1764), - [anon_sym_sizeof] = ACTIONS(1762), - [sym_number_literal] = ACTIONS(1764), - [anon_sym_L_SQUOTE] = ACTIONS(1764), - [anon_sym_u_SQUOTE] = ACTIONS(1764), - [anon_sym_U_SQUOTE] = ACTIONS(1764), - [anon_sym_u8_SQUOTE] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1764), - [anon_sym_L_DQUOTE] = ACTIONS(1764), - [anon_sym_u_DQUOTE] = ACTIONS(1764), - [anon_sym_U_DQUOTE] = ACTIONS(1764), - [anon_sym_u8_DQUOTE] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1764), - [sym_true] = ACTIONS(1762), - [sym_false] = ACTIONS(1762), - [sym_null] = ACTIONS(1762), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1764), - [anon_sym_ATimport] = ACTIONS(1764), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1762), - [anon_sym_ATcompatibility_alias] = ACTIONS(1764), - [anon_sym_ATprotocol] = ACTIONS(1764), - [anon_sym_ATclass] = ACTIONS(1764), - [anon_sym_ATinterface] = ACTIONS(1764), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1762), - [sym_method_attribute_specifier] = ACTIONS(1762), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1762), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1762), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1762), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1762), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1762), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1762), - [anon_sym_NS_AVAILABLE] = ACTIONS(1762), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1762), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1762), - [anon_sym_API_AVAILABLE] = ACTIONS(1762), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1762), - [anon_sym_API_DEPRECATED] = ACTIONS(1762), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1762), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1762), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1762), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1762), - [anon_sym___deprecated_msg] = ACTIONS(1762), - [anon_sym___deprecated_enum_msg] = ACTIONS(1762), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1762), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1762), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1762), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1762), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1762), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1762), - [anon_sym_ATimplementation] = ACTIONS(1764), - [anon_sym_typeof] = ACTIONS(1762), - [anon_sym___typeof] = ACTIONS(1762), - [anon_sym___typeof__] = ACTIONS(1762), - [sym_self] = ACTIONS(1762), - [sym_super] = ACTIONS(1762), - [sym_nil] = ACTIONS(1762), - [sym_id] = ACTIONS(1762), - [sym_instancetype] = ACTIONS(1762), - [sym_Class] = ACTIONS(1762), - [sym_SEL] = ACTIONS(1762), - [sym_IMP] = ACTIONS(1762), - [sym_BOOL] = ACTIONS(1762), - [sym_auto] = ACTIONS(1762), - [anon_sym_ATautoreleasepool] = ACTIONS(1764), - [anon_sym_ATsynchronized] = ACTIONS(1764), - [anon_sym_ATtry] = ACTIONS(1764), - [anon_sym_ATthrow] = ACTIONS(1764), - [anon_sym_ATselector] = ACTIONS(1764), - [anon_sym_ATencode] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1762), - [sym_YES] = ACTIONS(1762), - [sym_NO] = ACTIONS(1762), - [anon_sym___builtin_available] = ACTIONS(1762), - [anon_sym_ATavailable] = ACTIONS(1764), - [anon_sym_va_arg] = ACTIONS(1762), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1042] = { - [ts_builtin_sym_end] = ACTIONS(2180), - [sym_identifier] = ACTIONS(2178), - [aux_sym_preproc_include_token1] = ACTIONS(2180), - [aux_sym_preproc_def_token1] = ACTIONS(2180), - [aux_sym_preproc_if_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), - [anon_sym_LPAREN2] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_typedef] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym___attribute] = ACTIONS(2178), - [anon_sym___attribute__] = ACTIONS(2178), - [anon_sym___declspec] = ACTIONS(2178), - [anon_sym___cdecl] = ACTIONS(2178), - [anon_sym___clrcall] = ACTIONS(2178), - [anon_sym___stdcall] = ACTIONS(2178), - [anon_sym___fastcall] = ACTIONS(2178), - [anon_sym___thiscall] = ACTIONS(2178), - [anon_sym___vectorcall] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_RBRACE] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_auto] = ACTIONS(2178), - [anon_sym_register] = ACTIONS(2178), - [anon_sym_inline] = ACTIONS(2178), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_volatile] = ACTIONS(2178), - [anon_sym_restrict] = ACTIONS(2178), - [anon_sym__Atomic] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_out] = ACTIONS(2178), - [anon_sym_inout] = ACTIONS(2178), - [anon_sym_bycopy] = ACTIONS(2178), - [anon_sym_byref] = ACTIONS(2178), - [anon_sym_oneway] = ACTIONS(2178), - [anon_sym__Nullable] = ACTIONS(2178), - [anon_sym__Nonnull] = ACTIONS(2178), - [anon_sym__Nullable_result] = ACTIONS(2178), - [anon_sym__Null_unspecified] = ACTIONS(2178), - [anon_sym___autoreleasing] = ACTIONS(2178), - [anon_sym___nullable] = ACTIONS(2178), - [anon_sym___nonnull] = ACTIONS(2178), - [anon_sym___strong] = ACTIONS(2178), - [anon_sym___weak] = ACTIONS(2178), - [anon_sym___bridge] = ACTIONS(2178), - [anon_sym___bridge_transfer] = ACTIONS(2178), - [anon_sym___bridge_retained] = ACTIONS(2178), - [anon_sym___unsafe_unretained] = ACTIONS(2178), - [anon_sym___block] = ACTIONS(2178), - [anon_sym___kindof] = ACTIONS(2178), - [anon_sym___unused] = ACTIONS(2178), - [anon_sym__Complex] = ACTIONS(2178), - [anon_sym___complex] = ACTIONS(2178), - [anon_sym_IBOutlet] = ACTIONS(2178), - [anon_sym_IBInspectable] = ACTIONS(2178), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2178), - [anon_sym_signed] = ACTIONS(2178), - [anon_sym_unsigned] = ACTIONS(2178), - [anon_sym_long] = ACTIONS(2178), - [anon_sym_short] = ACTIONS(2178), - [sym_primitive_type] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_NS_ENUM] = ACTIONS(2178), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2178), - [anon_sym_NS_OPTIONS] = ACTIONS(2178), - [anon_sym_struct] = ACTIONS(2178), - [anon_sym_union] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_goto] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(2180), - [anon_sym_sizeof] = ACTIONS(2178), - [sym_number_literal] = ACTIONS(2180), - [anon_sym_L_SQUOTE] = ACTIONS(2180), - [anon_sym_u_SQUOTE] = ACTIONS(2180), - [anon_sym_U_SQUOTE] = ACTIONS(2180), - [anon_sym_u8_SQUOTE] = ACTIONS(2180), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_L_DQUOTE] = ACTIONS(2180), - [anon_sym_u_DQUOTE] = ACTIONS(2180), - [anon_sym_U_DQUOTE] = ACTIONS(2180), - [anon_sym_u8_DQUOTE] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2180), - [anon_sym_ATimport] = ACTIONS(2180), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2178), - [anon_sym_ATcompatibility_alias] = ACTIONS(2180), - [anon_sym_ATprotocol] = ACTIONS(2180), - [anon_sym_ATclass] = ACTIONS(2180), - [anon_sym_ATinterface] = ACTIONS(2180), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2178), - [sym_method_attribute_specifier] = ACTIONS(2178), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2178), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE] = ACTIONS(2178), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_API_AVAILABLE] = ACTIONS(2178), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_API_DEPRECATED] = ACTIONS(2178), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2178), - [anon_sym___deprecated_msg] = ACTIONS(2178), - [anon_sym___deprecated_enum_msg] = ACTIONS(2178), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2178), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2178), - [anon_sym_ATimplementation] = ACTIONS(2180), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym___typeof] = ACTIONS(2178), - [anon_sym___typeof__] = ACTIONS(2178), - [sym_self] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_nil] = ACTIONS(2178), - [sym_id] = ACTIONS(2178), - [sym_instancetype] = ACTIONS(2178), - [sym_Class] = ACTIONS(2178), - [sym_SEL] = ACTIONS(2178), - [sym_IMP] = ACTIONS(2178), - [sym_BOOL] = ACTIONS(2178), - [sym_auto] = ACTIONS(2178), - [anon_sym_ATautoreleasepool] = ACTIONS(2180), - [anon_sym_ATsynchronized] = ACTIONS(2180), - [anon_sym_ATtry] = ACTIONS(2180), - [anon_sym_ATthrow] = ACTIONS(2180), - [anon_sym_ATselector] = ACTIONS(2180), - [anon_sym_ATencode] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2178), - [sym_YES] = ACTIONS(2178), - [sym_NO] = ACTIONS(2178), - [anon_sym___builtin_available] = ACTIONS(2178), - [anon_sym_ATavailable] = ACTIONS(2180), - [anon_sym_va_arg] = ACTIONS(2178), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1043] = { - [ts_builtin_sym_end] = ACTIONS(2124), - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1044] = { - [ts_builtin_sym_end] = ACTIONS(1760), - [sym_identifier] = ACTIONS(1758), - [aux_sym_preproc_include_token1] = ACTIONS(1760), - [aux_sym_preproc_def_token1] = ACTIONS(1760), - [aux_sym_preproc_if_token1] = ACTIONS(1758), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1758), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1758), - [anon_sym_LPAREN2] = ACTIONS(1760), - [anon_sym_BANG] = ACTIONS(1760), - [anon_sym_TILDE] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_CARET] = ACTIONS(1760), - [anon_sym_AMP] = ACTIONS(1760), - [anon_sym_SEMI] = ACTIONS(1760), - [anon_sym_typedef] = ACTIONS(1758), - [anon_sym_extern] = ACTIONS(1758), - [anon_sym___attribute] = ACTIONS(1758), - [anon_sym___attribute__] = ACTIONS(1758), - [anon_sym___declspec] = ACTIONS(1758), - [anon_sym___cdecl] = ACTIONS(1758), - [anon_sym___clrcall] = ACTIONS(1758), - [anon_sym___stdcall] = ACTIONS(1758), - [anon_sym___fastcall] = ACTIONS(1758), - [anon_sym___thiscall] = ACTIONS(1758), - [anon_sym___vectorcall] = ACTIONS(1758), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_RBRACE] = ACTIONS(1760), - [anon_sym_LBRACK] = ACTIONS(1760), - [anon_sym_static] = ACTIONS(1758), - [anon_sym_auto] = ACTIONS(1758), - [anon_sym_register] = ACTIONS(1758), - [anon_sym_inline] = ACTIONS(1758), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1758), - [anon_sym_const] = ACTIONS(1758), - [anon_sym_volatile] = ACTIONS(1758), - [anon_sym_restrict] = ACTIONS(1758), - [anon_sym__Atomic] = ACTIONS(1758), - [anon_sym_in] = ACTIONS(1758), - [anon_sym_out] = ACTIONS(1758), - [anon_sym_inout] = ACTIONS(1758), - [anon_sym_bycopy] = ACTIONS(1758), - [anon_sym_byref] = ACTIONS(1758), - [anon_sym_oneway] = ACTIONS(1758), - [anon_sym__Nullable] = ACTIONS(1758), - [anon_sym__Nonnull] = ACTIONS(1758), - [anon_sym__Nullable_result] = ACTIONS(1758), - [anon_sym__Null_unspecified] = ACTIONS(1758), - [anon_sym___autoreleasing] = ACTIONS(1758), - [anon_sym___nullable] = ACTIONS(1758), - [anon_sym___nonnull] = ACTIONS(1758), - [anon_sym___strong] = ACTIONS(1758), - [anon_sym___weak] = ACTIONS(1758), - [anon_sym___bridge] = ACTIONS(1758), - [anon_sym___bridge_transfer] = ACTIONS(1758), - [anon_sym___bridge_retained] = ACTIONS(1758), - [anon_sym___unsafe_unretained] = ACTIONS(1758), - [anon_sym___block] = ACTIONS(1758), - [anon_sym___kindof] = ACTIONS(1758), - [anon_sym___unused] = ACTIONS(1758), - [anon_sym__Complex] = ACTIONS(1758), - [anon_sym___complex] = ACTIONS(1758), - [anon_sym_IBOutlet] = ACTIONS(1758), - [anon_sym_IBInspectable] = ACTIONS(1758), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1758), - [anon_sym_signed] = ACTIONS(1758), - [anon_sym_unsigned] = ACTIONS(1758), - [anon_sym_long] = ACTIONS(1758), - [anon_sym_short] = ACTIONS(1758), - [sym_primitive_type] = ACTIONS(1758), - [anon_sym_enum] = ACTIONS(1758), - [anon_sym_NS_ENUM] = ACTIONS(1758), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1758), - [anon_sym_NS_OPTIONS] = ACTIONS(1758), - [anon_sym_struct] = ACTIONS(1758), - [anon_sym_union] = ACTIONS(1758), - [anon_sym_if] = ACTIONS(1758), - [anon_sym_switch] = ACTIONS(1758), - [anon_sym_case] = ACTIONS(1758), - [anon_sym_default] = ACTIONS(1758), - [anon_sym_while] = ACTIONS(1758), - [anon_sym_do] = ACTIONS(1758), - [anon_sym_for] = ACTIONS(1758), - [anon_sym_return] = ACTIONS(1758), - [anon_sym_break] = ACTIONS(1758), - [anon_sym_continue] = ACTIONS(1758), - [anon_sym_goto] = ACTIONS(1758), - [anon_sym_DASH_DASH] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1760), - [anon_sym_sizeof] = ACTIONS(1758), - [sym_number_literal] = ACTIONS(1760), - [anon_sym_L_SQUOTE] = ACTIONS(1760), - [anon_sym_u_SQUOTE] = ACTIONS(1760), - [anon_sym_U_SQUOTE] = ACTIONS(1760), - [anon_sym_u8_SQUOTE] = ACTIONS(1760), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_L_DQUOTE] = ACTIONS(1760), - [anon_sym_u_DQUOTE] = ACTIONS(1760), - [anon_sym_U_DQUOTE] = ACTIONS(1760), - [anon_sym_u8_DQUOTE] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1760), - [sym_true] = ACTIONS(1758), - [sym_false] = ACTIONS(1758), - [sym_null] = ACTIONS(1758), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1760), - [anon_sym_ATimport] = ACTIONS(1760), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1758), - [anon_sym_ATcompatibility_alias] = ACTIONS(1760), - [anon_sym_ATprotocol] = ACTIONS(1760), - [anon_sym_ATclass] = ACTIONS(1760), - [anon_sym_ATinterface] = ACTIONS(1760), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1758), - [sym_method_attribute_specifier] = ACTIONS(1758), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1758), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1758), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1758), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1758), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1758), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1758), - [anon_sym_NS_AVAILABLE] = ACTIONS(1758), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1758), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1758), - [anon_sym_API_AVAILABLE] = ACTIONS(1758), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1758), - [anon_sym_API_DEPRECATED] = ACTIONS(1758), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1758), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1758), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1758), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1758), - [anon_sym___deprecated_msg] = ACTIONS(1758), - [anon_sym___deprecated_enum_msg] = ACTIONS(1758), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1758), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1758), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1758), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1758), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1758), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1758), - [anon_sym_ATimplementation] = ACTIONS(1760), - [anon_sym_typeof] = ACTIONS(1758), - [anon_sym___typeof] = ACTIONS(1758), - [anon_sym___typeof__] = ACTIONS(1758), - [sym_self] = ACTIONS(1758), - [sym_super] = ACTIONS(1758), - [sym_nil] = ACTIONS(1758), - [sym_id] = ACTIONS(1758), - [sym_instancetype] = ACTIONS(1758), - [sym_Class] = ACTIONS(1758), - [sym_SEL] = ACTIONS(1758), - [sym_IMP] = ACTIONS(1758), - [sym_BOOL] = ACTIONS(1758), - [sym_auto] = ACTIONS(1758), - [anon_sym_ATautoreleasepool] = ACTIONS(1760), - [anon_sym_ATsynchronized] = ACTIONS(1760), - [anon_sym_ATtry] = ACTIONS(1760), - [anon_sym_ATthrow] = ACTIONS(1760), - [anon_sym_ATselector] = ACTIONS(1760), - [anon_sym_ATencode] = ACTIONS(1760), - [anon_sym_AT] = ACTIONS(1758), - [sym_YES] = ACTIONS(1758), - [sym_NO] = ACTIONS(1758), - [anon_sym___builtin_available] = ACTIONS(1758), - [anon_sym_ATavailable] = ACTIONS(1760), - [anon_sym_va_arg] = ACTIONS(1758), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1045] = { - [ts_builtin_sym_end] = ACTIONS(2028), - [sym_identifier] = ACTIONS(2026), - [aux_sym_preproc_include_token1] = ACTIONS(2028), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2028), - [anon_sym_BANG] = ACTIONS(2028), - [anon_sym_TILDE] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2028), - [anon_sym_CARET] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_typedef] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2026), - [anon_sym___attribute] = ACTIONS(2026), - [anon_sym___attribute__] = ACTIONS(2026), - [anon_sym___declspec] = ACTIONS(2026), - [anon_sym___cdecl] = ACTIONS(2026), - [anon_sym___clrcall] = ACTIONS(2026), - [anon_sym___stdcall] = ACTIONS(2026), - [anon_sym___fastcall] = ACTIONS(2026), - [anon_sym___thiscall] = ACTIONS(2026), - [anon_sym___vectorcall] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_RBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_auto] = ACTIONS(2026), - [anon_sym_register] = ACTIONS(2026), - [anon_sym_inline] = ACTIONS(2026), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_volatile] = ACTIONS(2026), - [anon_sym_restrict] = ACTIONS(2026), - [anon_sym__Atomic] = ACTIONS(2026), - [anon_sym_in] = ACTIONS(2026), - [anon_sym_out] = ACTIONS(2026), - [anon_sym_inout] = ACTIONS(2026), - [anon_sym_bycopy] = ACTIONS(2026), - [anon_sym_byref] = ACTIONS(2026), - [anon_sym_oneway] = ACTIONS(2026), - [anon_sym__Nullable] = ACTIONS(2026), - [anon_sym__Nonnull] = ACTIONS(2026), - [anon_sym__Nullable_result] = ACTIONS(2026), - [anon_sym__Null_unspecified] = ACTIONS(2026), - [anon_sym___autoreleasing] = ACTIONS(2026), - [anon_sym___nullable] = ACTIONS(2026), - [anon_sym___nonnull] = ACTIONS(2026), - [anon_sym___strong] = ACTIONS(2026), - [anon_sym___weak] = ACTIONS(2026), - [anon_sym___bridge] = ACTIONS(2026), - [anon_sym___bridge_transfer] = ACTIONS(2026), - [anon_sym___bridge_retained] = ACTIONS(2026), - [anon_sym___unsafe_unretained] = ACTIONS(2026), - [anon_sym___block] = ACTIONS(2026), - [anon_sym___kindof] = ACTIONS(2026), - [anon_sym___unused] = ACTIONS(2026), - [anon_sym__Complex] = ACTIONS(2026), - [anon_sym___complex] = ACTIONS(2026), - [anon_sym_IBOutlet] = ACTIONS(2026), - [anon_sym_IBInspectable] = ACTIONS(2026), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2026), - [anon_sym_signed] = ACTIONS(2026), - [anon_sym_unsigned] = ACTIONS(2026), - [anon_sym_long] = ACTIONS(2026), - [anon_sym_short] = ACTIONS(2026), - [sym_primitive_type] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_NS_ENUM] = ACTIONS(2026), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2026), - [anon_sym_NS_OPTIONS] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_switch] = ACTIONS(2026), - [anon_sym_case] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_goto] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2028), - [anon_sym_L_SQUOTE] = ACTIONS(2028), - [anon_sym_u_SQUOTE] = ACTIONS(2028), - [anon_sym_U_SQUOTE] = ACTIONS(2028), - [anon_sym_u8_SQUOTE] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_L_DQUOTE] = ACTIONS(2028), - [anon_sym_u_DQUOTE] = ACTIONS(2028), - [anon_sym_U_DQUOTE] = ACTIONS(2028), - [anon_sym_u8_DQUOTE] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [sym_true] = ACTIONS(2026), - [sym_false] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2028), - [anon_sym_ATimport] = ACTIONS(2028), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2026), - [anon_sym_ATcompatibility_alias] = ACTIONS(2028), - [anon_sym_ATprotocol] = ACTIONS(2028), - [anon_sym_ATclass] = ACTIONS(2028), - [anon_sym_ATinterface] = ACTIONS(2028), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2026), - [sym_method_attribute_specifier] = ACTIONS(2026), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2026), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE] = ACTIONS(2026), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_API_AVAILABLE] = ACTIONS(2026), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_API_DEPRECATED] = ACTIONS(2026), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2026), - [anon_sym___deprecated_msg] = ACTIONS(2026), - [anon_sym___deprecated_enum_msg] = ACTIONS(2026), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2026), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2026), - [anon_sym_ATimplementation] = ACTIONS(2028), - [anon_sym_typeof] = ACTIONS(2026), - [anon_sym___typeof] = ACTIONS(2026), - [anon_sym___typeof__] = ACTIONS(2026), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_nil] = ACTIONS(2026), - [sym_id] = ACTIONS(2026), - [sym_instancetype] = ACTIONS(2026), - [sym_Class] = ACTIONS(2026), - [sym_SEL] = ACTIONS(2026), - [sym_IMP] = ACTIONS(2026), - [sym_BOOL] = ACTIONS(2026), - [sym_auto] = ACTIONS(2026), - [anon_sym_ATautoreleasepool] = ACTIONS(2028), - [anon_sym_ATsynchronized] = ACTIONS(2028), - [anon_sym_ATtry] = ACTIONS(2028), - [anon_sym_ATthrow] = ACTIONS(2028), - [anon_sym_ATselector] = ACTIONS(2028), - [anon_sym_ATencode] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(2026), - [sym_YES] = ACTIONS(2026), - [sym_NO] = ACTIONS(2026), - [anon_sym___builtin_available] = ACTIONS(2026), - [anon_sym_ATavailable] = ACTIONS(2028), - [anon_sym_va_arg] = ACTIONS(2026), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1046] = { - [ts_builtin_sym_end] = ACTIONS(2020), - [sym_identifier] = ACTIONS(2018), - [aux_sym_preproc_include_token1] = ACTIONS(2020), - [aux_sym_preproc_def_token1] = ACTIONS(2020), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2018), - [anon_sym_LPAREN2] = ACTIONS(2020), - [anon_sym_BANG] = ACTIONS(2020), - [anon_sym_TILDE] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2018), - [anon_sym_PLUS] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_CARET] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_typedef] = ACTIONS(2018), - [anon_sym_extern] = ACTIONS(2018), - [anon_sym___attribute] = ACTIONS(2018), - [anon_sym___attribute__] = ACTIONS(2018), - [anon_sym___declspec] = ACTIONS(2018), - [anon_sym___cdecl] = ACTIONS(2018), - [anon_sym___clrcall] = ACTIONS(2018), - [anon_sym___stdcall] = ACTIONS(2018), - [anon_sym___fastcall] = ACTIONS(2018), - [anon_sym___thiscall] = ACTIONS(2018), - [anon_sym___vectorcall] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2020), - [anon_sym_RBRACE] = ACTIONS(2020), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2018), - [anon_sym_auto] = ACTIONS(2018), - [anon_sym_register] = ACTIONS(2018), - [anon_sym_inline] = ACTIONS(2018), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2018), - [anon_sym_const] = ACTIONS(2018), - [anon_sym_volatile] = ACTIONS(2018), - [anon_sym_restrict] = ACTIONS(2018), - [anon_sym__Atomic] = ACTIONS(2018), - [anon_sym_in] = ACTIONS(2018), - [anon_sym_out] = ACTIONS(2018), - [anon_sym_inout] = ACTIONS(2018), - [anon_sym_bycopy] = ACTIONS(2018), - [anon_sym_byref] = ACTIONS(2018), - [anon_sym_oneway] = ACTIONS(2018), - [anon_sym__Nullable] = ACTIONS(2018), - [anon_sym__Nonnull] = ACTIONS(2018), - [anon_sym__Nullable_result] = ACTIONS(2018), - [anon_sym__Null_unspecified] = ACTIONS(2018), - [anon_sym___autoreleasing] = ACTIONS(2018), - [anon_sym___nullable] = ACTIONS(2018), - [anon_sym___nonnull] = ACTIONS(2018), - [anon_sym___strong] = ACTIONS(2018), - [anon_sym___weak] = ACTIONS(2018), - [anon_sym___bridge] = ACTIONS(2018), - [anon_sym___bridge_transfer] = ACTIONS(2018), - [anon_sym___bridge_retained] = ACTIONS(2018), - [anon_sym___unsafe_unretained] = ACTIONS(2018), - [anon_sym___block] = ACTIONS(2018), - [anon_sym___kindof] = ACTIONS(2018), - [anon_sym___unused] = ACTIONS(2018), - [anon_sym__Complex] = ACTIONS(2018), - [anon_sym___complex] = ACTIONS(2018), - [anon_sym_IBOutlet] = ACTIONS(2018), - [anon_sym_IBInspectable] = ACTIONS(2018), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2018), - [anon_sym_signed] = ACTIONS(2018), - [anon_sym_unsigned] = ACTIONS(2018), - [anon_sym_long] = ACTIONS(2018), - [anon_sym_short] = ACTIONS(2018), - [sym_primitive_type] = ACTIONS(2018), - [anon_sym_enum] = ACTIONS(2018), - [anon_sym_NS_ENUM] = ACTIONS(2018), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2018), - [anon_sym_NS_OPTIONS] = ACTIONS(2018), - [anon_sym_struct] = ACTIONS(2018), - [anon_sym_union] = ACTIONS(2018), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_switch] = ACTIONS(2018), - [anon_sym_case] = ACTIONS(2018), - [anon_sym_default] = ACTIONS(2018), - [anon_sym_while] = ACTIONS(2018), - [anon_sym_do] = ACTIONS(2018), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_return] = ACTIONS(2018), - [anon_sym_break] = ACTIONS(2018), - [anon_sym_continue] = ACTIONS(2018), - [anon_sym_goto] = ACTIONS(2018), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2018), - [sym_number_literal] = ACTIONS(2020), - [anon_sym_L_SQUOTE] = ACTIONS(2020), - [anon_sym_u_SQUOTE] = ACTIONS(2020), - [anon_sym_U_SQUOTE] = ACTIONS(2020), - [anon_sym_u8_SQUOTE] = ACTIONS(2020), - [anon_sym_SQUOTE] = ACTIONS(2020), - [anon_sym_L_DQUOTE] = ACTIONS(2020), - [anon_sym_u_DQUOTE] = ACTIONS(2020), - [anon_sym_U_DQUOTE] = ACTIONS(2020), - [anon_sym_u8_DQUOTE] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [sym_true] = ACTIONS(2018), - [sym_false] = ACTIONS(2018), - [sym_null] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2020), - [anon_sym_ATimport] = ACTIONS(2020), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2018), - [anon_sym_ATcompatibility_alias] = ACTIONS(2020), - [anon_sym_ATprotocol] = ACTIONS(2020), - [anon_sym_ATclass] = ACTIONS(2020), - [anon_sym_ATinterface] = ACTIONS(2020), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2018), - [sym_method_attribute_specifier] = ACTIONS(2018), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2018), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2018), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2018), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2018), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2018), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2018), - [anon_sym_NS_AVAILABLE] = ACTIONS(2018), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2018), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2018), - [anon_sym_API_AVAILABLE] = ACTIONS(2018), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2018), - [anon_sym_API_DEPRECATED] = ACTIONS(2018), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2018), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2018), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2018), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2018), - [anon_sym___deprecated_msg] = ACTIONS(2018), - [anon_sym___deprecated_enum_msg] = ACTIONS(2018), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2018), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2018), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2018), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2018), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2018), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2018), - [anon_sym_ATimplementation] = ACTIONS(2020), - [anon_sym_typeof] = ACTIONS(2018), - [anon_sym___typeof] = ACTIONS(2018), - [anon_sym___typeof__] = ACTIONS(2018), - [sym_self] = ACTIONS(2018), - [sym_super] = ACTIONS(2018), - [sym_nil] = ACTIONS(2018), - [sym_id] = ACTIONS(2018), - [sym_instancetype] = ACTIONS(2018), - [sym_Class] = ACTIONS(2018), - [sym_SEL] = ACTIONS(2018), - [sym_IMP] = ACTIONS(2018), - [sym_BOOL] = ACTIONS(2018), - [sym_auto] = ACTIONS(2018), - [anon_sym_ATautoreleasepool] = ACTIONS(2020), - [anon_sym_ATsynchronized] = ACTIONS(2020), - [anon_sym_ATtry] = ACTIONS(2020), - [anon_sym_ATthrow] = ACTIONS(2020), - [anon_sym_ATselector] = ACTIONS(2020), - [anon_sym_ATencode] = ACTIONS(2020), - [anon_sym_AT] = ACTIONS(2018), - [sym_YES] = ACTIONS(2018), - [sym_NO] = ACTIONS(2018), - [anon_sym___builtin_available] = ACTIONS(2018), - [anon_sym_ATavailable] = ACTIONS(2020), - [anon_sym_va_arg] = ACTIONS(2018), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1047] = { - [ts_builtin_sym_end] = ACTIONS(2016), - [sym_identifier] = ACTIONS(2014), - [aux_sym_preproc_include_token1] = ACTIONS(2016), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2014), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2014), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2016), - [anon_sym_BANG] = ACTIONS(2016), - [anon_sym_TILDE] = ACTIONS(2016), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_PLUS] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2016), - [anon_sym_CARET] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2016), - [anon_sym_SEMI] = ACTIONS(2016), - [anon_sym_typedef] = ACTIONS(2014), - [anon_sym_extern] = ACTIONS(2014), - [anon_sym___attribute] = ACTIONS(2014), - [anon_sym___attribute__] = ACTIONS(2014), - [anon_sym___declspec] = ACTIONS(2014), - [anon_sym___cdecl] = ACTIONS(2014), - [anon_sym___clrcall] = ACTIONS(2014), - [anon_sym___stdcall] = ACTIONS(2014), - [anon_sym___fastcall] = ACTIONS(2014), - [anon_sym___thiscall] = ACTIONS(2014), - [anon_sym___vectorcall] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2016), - [anon_sym_RBRACE] = ACTIONS(2016), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2014), - [anon_sym_auto] = ACTIONS(2014), - [anon_sym_register] = ACTIONS(2014), - [anon_sym_inline] = ACTIONS(2014), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2014), - [anon_sym_const] = ACTIONS(2014), - [anon_sym_volatile] = ACTIONS(2014), - [anon_sym_restrict] = ACTIONS(2014), - [anon_sym__Atomic] = ACTIONS(2014), - [anon_sym_in] = ACTIONS(2014), - [anon_sym_out] = ACTIONS(2014), - [anon_sym_inout] = ACTIONS(2014), - [anon_sym_bycopy] = ACTIONS(2014), - [anon_sym_byref] = ACTIONS(2014), - [anon_sym_oneway] = ACTIONS(2014), - [anon_sym__Nullable] = ACTIONS(2014), - [anon_sym__Nonnull] = ACTIONS(2014), - [anon_sym__Nullable_result] = ACTIONS(2014), - [anon_sym__Null_unspecified] = ACTIONS(2014), - [anon_sym___autoreleasing] = ACTIONS(2014), - [anon_sym___nullable] = ACTIONS(2014), - [anon_sym___nonnull] = ACTIONS(2014), - [anon_sym___strong] = ACTIONS(2014), - [anon_sym___weak] = ACTIONS(2014), - [anon_sym___bridge] = ACTIONS(2014), - [anon_sym___bridge_transfer] = ACTIONS(2014), - [anon_sym___bridge_retained] = ACTIONS(2014), - [anon_sym___unsafe_unretained] = ACTIONS(2014), - [anon_sym___block] = ACTIONS(2014), - [anon_sym___kindof] = ACTIONS(2014), - [anon_sym___unused] = ACTIONS(2014), - [anon_sym__Complex] = ACTIONS(2014), - [anon_sym___complex] = ACTIONS(2014), - [anon_sym_IBOutlet] = ACTIONS(2014), - [anon_sym_IBInspectable] = ACTIONS(2014), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2014), - [anon_sym_signed] = ACTIONS(2014), - [anon_sym_unsigned] = ACTIONS(2014), - [anon_sym_long] = ACTIONS(2014), - [anon_sym_short] = ACTIONS(2014), - [sym_primitive_type] = ACTIONS(2014), - [anon_sym_enum] = ACTIONS(2014), - [anon_sym_NS_ENUM] = ACTIONS(2014), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2014), - [anon_sym_NS_OPTIONS] = ACTIONS(2014), - [anon_sym_struct] = ACTIONS(2014), - [anon_sym_union] = ACTIONS(2014), - [anon_sym_if] = ACTIONS(2014), - [anon_sym_switch] = ACTIONS(2014), - [anon_sym_case] = ACTIONS(2014), - [anon_sym_default] = ACTIONS(2014), - [anon_sym_while] = ACTIONS(2014), - [anon_sym_do] = ACTIONS(2014), - [anon_sym_for] = ACTIONS(2014), - [anon_sym_return] = ACTIONS(2014), - [anon_sym_break] = ACTIONS(2014), - [anon_sym_continue] = ACTIONS(2014), - [anon_sym_goto] = ACTIONS(2014), - [anon_sym_DASH_DASH] = ACTIONS(2016), - [anon_sym_PLUS_PLUS] = ACTIONS(2016), - [anon_sym_sizeof] = ACTIONS(2014), - [sym_number_literal] = ACTIONS(2016), - [anon_sym_L_SQUOTE] = ACTIONS(2016), - [anon_sym_u_SQUOTE] = ACTIONS(2016), - [anon_sym_U_SQUOTE] = ACTIONS(2016), - [anon_sym_u8_SQUOTE] = ACTIONS(2016), - [anon_sym_SQUOTE] = ACTIONS(2016), - [anon_sym_L_DQUOTE] = ACTIONS(2016), - [anon_sym_u_DQUOTE] = ACTIONS(2016), - [anon_sym_U_DQUOTE] = ACTIONS(2016), - [anon_sym_u8_DQUOTE] = ACTIONS(2016), - [anon_sym_DQUOTE] = ACTIONS(2016), - [sym_true] = ACTIONS(2014), - [sym_false] = ACTIONS(2014), - [sym_null] = ACTIONS(2014), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2016), - [anon_sym_ATimport] = ACTIONS(2016), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2014), - [anon_sym_ATcompatibility_alias] = ACTIONS(2016), - [anon_sym_ATprotocol] = ACTIONS(2016), - [anon_sym_ATclass] = ACTIONS(2016), - [anon_sym_ATinterface] = ACTIONS(2016), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2014), - [sym_method_attribute_specifier] = ACTIONS(2014), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2014), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2014), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2014), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2014), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2014), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2014), - [anon_sym_NS_AVAILABLE] = ACTIONS(2014), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2014), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2014), - [anon_sym_API_AVAILABLE] = ACTIONS(2014), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2014), - [anon_sym_API_DEPRECATED] = ACTIONS(2014), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2014), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2014), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2014), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2014), - [anon_sym___deprecated_msg] = ACTIONS(2014), - [anon_sym___deprecated_enum_msg] = ACTIONS(2014), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2014), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2014), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2014), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2014), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2014), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2014), - [anon_sym_ATimplementation] = ACTIONS(2016), - [anon_sym_typeof] = ACTIONS(2014), - [anon_sym___typeof] = ACTIONS(2014), - [anon_sym___typeof__] = ACTIONS(2014), - [sym_self] = ACTIONS(2014), - [sym_super] = ACTIONS(2014), - [sym_nil] = ACTIONS(2014), - [sym_id] = ACTIONS(2014), - [sym_instancetype] = ACTIONS(2014), - [sym_Class] = ACTIONS(2014), - [sym_SEL] = ACTIONS(2014), - [sym_IMP] = ACTIONS(2014), - [sym_BOOL] = ACTIONS(2014), - [sym_auto] = ACTIONS(2014), - [anon_sym_ATautoreleasepool] = ACTIONS(2016), - [anon_sym_ATsynchronized] = ACTIONS(2016), - [anon_sym_ATtry] = ACTIONS(2016), - [anon_sym_ATthrow] = ACTIONS(2016), - [anon_sym_ATselector] = ACTIONS(2016), - [anon_sym_ATencode] = ACTIONS(2016), - [anon_sym_AT] = ACTIONS(2014), - [sym_YES] = ACTIONS(2014), - [sym_NO] = ACTIONS(2014), - [anon_sym___builtin_available] = ACTIONS(2014), - [anon_sym_ATavailable] = ACTIONS(2016), - [anon_sym_va_arg] = ACTIONS(2014), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1048] = { - [ts_builtin_sym_end] = ACTIONS(2124), - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1049] = { - [ts_builtin_sym_end] = ACTIONS(2028), - [sym_identifier] = ACTIONS(2026), - [aux_sym_preproc_include_token1] = ACTIONS(2028), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2028), - [anon_sym_BANG] = ACTIONS(2028), - [anon_sym_TILDE] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2028), - [anon_sym_CARET] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_typedef] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2026), - [anon_sym___attribute] = ACTIONS(2026), - [anon_sym___attribute__] = ACTIONS(2026), - [anon_sym___declspec] = ACTIONS(2026), - [anon_sym___cdecl] = ACTIONS(2026), - [anon_sym___clrcall] = ACTIONS(2026), - [anon_sym___stdcall] = ACTIONS(2026), - [anon_sym___fastcall] = ACTIONS(2026), - [anon_sym___thiscall] = ACTIONS(2026), - [anon_sym___vectorcall] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_RBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_auto] = ACTIONS(2026), - [anon_sym_register] = ACTIONS(2026), - [anon_sym_inline] = ACTIONS(2026), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_volatile] = ACTIONS(2026), - [anon_sym_restrict] = ACTIONS(2026), - [anon_sym__Atomic] = ACTIONS(2026), - [anon_sym_in] = ACTIONS(2026), - [anon_sym_out] = ACTIONS(2026), - [anon_sym_inout] = ACTIONS(2026), - [anon_sym_bycopy] = ACTIONS(2026), - [anon_sym_byref] = ACTIONS(2026), - [anon_sym_oneway] = ACTIONS(2026), - [anon_sym__Nullable] = ACTIONS(2026), - [anon_sym__Nonnull] = ACTIONS(2026), - [anon_sym__Nullable_result] = ACTIONS(2026), - [anon_sym__Null_unspecified] = ACTIONS(2026), - [anon_sym___autoreleasing] = ACTIONS(2026), - [anon_sym___nullable] = ACTIONS(2026), - [anon_sym___nonnull] = ACTIONS(2026), - [anon_sym___strong] = ACTIONS(2026), - [anon_sym___weak] = ACTIONS(2026), - [anon_sym___bridge] = ACTIONS(2026), - [anon_sym___bridge_transfer] = ACTIONS(2026), - [anon_sym___bridge_retained] = ACTIONS(2026), - [anon_sym___unsafe_unretained] = ACTIONS(2026), - [anon_sym___block] = ACTIONS(2026), - [anon_sym___kindof] = ACTIONS(2026), - [anon_sym___unused] = ACTIONS(2026), - [anon_sym__Complex] = ACTIONS(2026), - [anon_sym___complex] = ACTIONS(2026), - [anon_sym_IBOutlet] = ACTIONS(2026), - [anon_sym_IBInspectable] = ACTIONS(2026), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2026), - [anon_sym_signed] = ACTIONS(2026), - [anon_sym_unsigned] = ACTIONS(2026), - [anon_sym_long] = ACTIONS(2026), - [anon_sym_short] = ACTIONS(2026), - [sym_primitive_type] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_NS_ENUM] = ACTIONS(2026), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2026), - [anon_sym_NS_OPTIONS] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_switch] = ACTIONS(2026), - [anon_sym_case] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_goto] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2028), - [anon_sym_L_SQUOTE] = ACTIONS(2028), - [anon_sym_u_SQUOTE] = ACTIONS(2028), - [anon_sym_U_SQUOTE] = ACTIONS(2028), - [anon_sym_u8_SQUOTE] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_L_DQUOTE] = ACTIONS(2028), - [anon_sym_u_DQUOTE] = ACTIONS(2028), - [anon_sym_U_DQUOTE] = ACTIONS(2028), - [anon_sym_u8_DQUOTE] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [sym_true] = ACTIONS(2026), - [sym_false] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2028), - [anon_sym_ATimport] = ACTIONS(2028), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2026), - [anon_sym_ATcompatibility_alias] = ACTIONS(2028), - [anon_sym_ATprotocol] = ACTIONS(2028), - [anon_sym_ATclass] = ACTIONS(2028), - [anon_sym_ATinterface] = ACTIONS(2028), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2026), - [sym_method_attribute_specifier] = ACTIONS(2026), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2026), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE] = ACTIONS(2026), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_API_AVAILABLE] = ACTIONS(2026), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_API_DEPRECATED] = ACTIONS(2026), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2026), - [anon_sym___deprecated_msg] = ACTIONS(2026), - [anon_sym___deprecated_enum_msg] = ACTIONS(2026), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2026), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2026), - [anon_sym_ATimplementation] = ACTIONS(2028), - [anon_sym_typeof] = ACTIONS(2026), - [anon_sym___typeof] = ACTIONS(2026), - [anon_sym___typeof__] = ACTIONS(2026), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_nil] = ACTIONS(2026), - [sym_id] = ACTIONS(2026), - [sym_instancetype] = ACTIONS(2026), - [sym_Class] = ACTIONS(2026), - [sym_SEL] = ACTIONS(2026), - [sym_IMP] = ACTIONS(2026), - [sym_BOOL] = ACTIONS(2026), - [sym_auto] = ACTIONS(2026), - [anon_sym_ATautoreleasepool] = ACTIONS(2028), - [anon_sym_ATsynchronized] = ACTIONS(2028), - [anon_sym_ATtry] = ACTIONS(2028), - [anon_sym_ATthrow] = ACTIONS(2028), - [anon_sym_ATselector] = ACTIONS(2028), - [anon_sym_ATencode] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(2026), - [sym_YES] = ACTIONS(2026), - [sym_NO] = ACTIONS(2026), - [anon_sym___builtin_available] = ACTIONS(2026), - [anon_sym_ATavailable] = ACTIONS(2028), - [anon_sym_va_arg] = ACTIONS(2026), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1050] = { - [ts_builtin_sym_end] = ACTIONS(2124), - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1051] = { - [ts_builtin_sym_end] = ACTIONS(2124), - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1052] = { - [ts_builtin_sym_end] = ACTIONS(2128), - [sym_identifier] = ACTIONS(2126), - [aux_sym_preproc_include_token1] = ACTIONS(2128), - [aux_sym_preproc_def_token1] = ACTIONS(2128), - [aux_sym_preproc_if_token1] = ACTIONS(2126), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2126), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2126), - [anon_sym_LPAREN2] = ACTIONS(2128), - [anon_sym_BANG] = ACTIONS(2128), - [anon_sym_TILDE] = ACTIONS(2128), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2128), - [anon_sym_CARET] = ACTIONS(2128), - [anon_sym_AMP] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2128), - [anon_sym_typedef] = ACTIONS(2126), - [anon_sym_extern] = ACTIONS(2126), - [anon_sym___attribute] = ACTIONS(2126), - [anon_sym___attribute__] = ACTIONS(2126), - [anon_sym___declspec] = ACTIONS(2126), - [anon_sym___cdecl] = ACTIONS(2126), - [anon_sym___clrcall] = ACTIONS(2126), - [anon_sym___stdcall] = ACTIONS(2126), - [anon_sym___fastcall] = ACTIONS(2126), - [anon_sym___thiscall] = ACTIONS(2126), - [anon_sym___vectorcall] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_RBRACE] = ACTIONS(2128), - [anon_sym_LBRACK] = ACTIONS(2128), - [anon_sym_static] = ACTIONS(2126), - [anon_sym_auto] = ACTIONS(2126), - [anon_sym_register] = ACTIONS(2126), - [anon_sym_inline] = ACTIONS(2126), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_volatile] = ACTIONS(2126), - [anon_sym_restrict] = ACTIONS(2126), - [anon_sym__Atomic] = ACTIONS(2126), - [anon_sym_in] = ACTIONS(2126), - [anon_sym_out] = ACTIONS(2126), - [anon_sym_inout] = ACTIONS(2126), - [anon_sym_bycopy] = ACTIONS(2126), - [anon_sym_byref] = ACTIONS(2126), - [anon_sym_oneway] = ACTIONS(2126), - [anon_sym__Nullable] = ACTIONS(2126), - [anon_sym__Nonnull] = ACTIONS(2126), - [anon_sym__Nullable_result] = ACTIONS(2126), - [anon_sym__Null_unspecified] = ACTIONS(2126), - [anon_sym___autoreleasing] = ACTIONS(2126), - [anon_sym___nullable] = ACTIONS(2126), - [anon_sym___nonnull] = ACTIONS(2126), - [anon_sym___strong] = ACTIONS(2126), - [anon_sym___weak] = ACTIONS(2126), - [anon_sym___bridge] = ACTIONS(2126), - [anon_sym___bridge_transfer] = ACTIONS(2126), - [anon_sym___bridge_retained] = ACTIONS(2126), - [anon_sym___unsafe_unretained] = ACTIONS(2126), - [anon_sym___block] = ACTIONS(2126), - [anon_sym___kindof] = ACTIONS(2126), - [anon_sym___unused] = ACTIONS(2126), - [anon_sym__Complex] = ACTIONS(2126), - [anon_sym___complex] = ACTIONS(2126), - [anon_sym_IBOutlet] = ACTIONS(2126), - [anon_sym_IBInspectable] = ACTIONS(2126), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2126), - [anon_sym_signed] = ACTIONS(2126), - [anon_sym_unsigned] = ACTIONS(2126), - [anon_sym_long] = ACTIONS(2126), - [anon_sym_short] = ACTIONS(2126), - [sym_primitive_type] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [anon_sym_NS_ENUM] = ACTIONS(2126), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2126), - [anon_sym_NS_OPTIONS] = ACTIONS(2126), - [anon_sym_struct] = ACTIONS(2126), - [anon_sym_union] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_case] = ACTIONS(2126), - [anon_sym_default] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_goto] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2128), - [anon_sym_PLUS_PLUS] = ACTIONS(2128), - [anon_sym_sizeof] = ACTIONS(2126), - [sym_number_literal] = ACTIONS(2128), - [anon_sym_L_SQUOTE] = ACTIONS(2128), - [anon_sym_u_SQUOTE] = ACTIONS(2128), - [anon_sym_U_SQUOTE] = ACTIONS(2128), - [anon_sym_u8_SQUOTE] = ACTIONS(2128), - [anon_sym_SQUOTE] = ACTIONS(2128), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2128), - [anon_sym_ATimport] = ACTIONS(2128), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2126), - [anon_sym_ATcompatibility_alias] = ACTIONS(2128), - [anon_sym_ATprotocol] = ACTIONS(2128), - [anon_sym_ATclass] = ACTIONS(2128), - [anon_sym_ATinterface] = ACTIONS(2128), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2126), - [sym_method_attribute_specifier] = ACTIONS(2126), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2126), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2126), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2126), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2126), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2126), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2126), - [anon_sym_NS_AVAILABLE] = ACTIONS(2126), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2126), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2126), - [anon_sym_API_AVAILABLE] = ACTIONS(2126), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2126), - [anon_sym_API_DEPRECATED] = ACTIONS(2126), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2126), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2126), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2126), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2126), - [anon_sym___deprecated_msg] = ACTIONS(2126), - [anon_sym___deprecated_enum_msg] = ACTIONS(2126), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2126), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2126), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2126), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2126), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2126), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2126), - [anon_sym_ATimplementation] = ACTIONS(2128), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym___typeof] = ACTIONS(2126), - [anon_sym___typeof__] = ACTIONS(2126), - [sym_self] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_nil] = ACTIONS(2126), - [sym_id] = ACTIONS(2126), - [sym_instancetype] = ACTIONS(2126), - [sym_Class] = ACTIONS(2126), - [sym_SEL] = ACTIONS(2126), - [sym_IMP] = ACTIONS(2126), - [sym_BOOL] = ACTIONS(2126), - [sym_auto] = ACTIONS(2126), - [anon_sym_ATautoreleasepool] = ACTIONS(2128), - [anon_sym_ATsynchronized] = ACTIONS(2128), - [anon_sym_ATtry] = ACTIONS(2128), - [anon_sym_ATthrow] = ACTIONS(2128), - [anon_sym_ATselector] = ACTIONS(2128), - [anon_sym_ATencode] = ACTIONS(2128), - [anon_sym_AT] = ACTIONS(2126), - [sym_YES] = ACTIONS(2126), - [sym_NO] = ACTIONS(2126), - [anon_sym___builtin_available] = ACTIONS(2126), - [anon_sym_ATavailable] = ACTIONS(2128), - [anon_sym_va_arg] = ACTIONS(2126), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1053] = { - [ts_builtin_sym_end] = ACTIONS(2180), - [sym_identifier] = ACTIONS(2178), - [aux_sym_preproc_include_token1] = ACTIONS(2180), - [aux_sym_preproc_def_token1] = ACTIONS(2180), - [aux_sym_preproc_if_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), - [anon_sym_LPAREN2] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_typedef] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym___attribute] = ACTIONS(2178), - [anon_sym___attribute__] = ACTIONS(2178), - [anon_sym___declspec] = ACTIONS(2178), - [anon_sym___cdecl] = ACTIONS(2178), - [anon_sym___clrcall] = ACTIONS(2178), - [anon_sym___stdcall] = ACTIONS(2178), - [anon_sym___fastcall] = ACTIONS(2178), - [anon_sym___thiscall] = ACTIONS(2178), - [anon_sym___vectorcall] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_RBRACE] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_auto] = ACTIONS(2178), - [anon_sym_register] = ACTIONS(2178), - [anon_sym_inline] = ACTIONS(2178), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_volatile] = ACTIONS(2178), - [anon_sym_restrict] = ACTIONS(2178), - [anon_sym__Atomic] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_out] = ACTIONS(2178), - [anon_sym_inout] = ACTIONS(2178), - [anon_sym_bycopy] = ACTIONS(2178), - [anon_sym_byref] = ACTIONS(2178), - [anon_sym_oneway] = ACTIONS(2178), - [anon_sym__Nullable] = ACTIONS(2178), - [anon_sym__Nonnull] = ACTIONS(2178), - [anon_sym__Nullable_result] = ACTIONS(2178), - [anon_sym__Null_unspecified] = ACTIONS(2178), - [anon_sym___autoreleasing] = ACTIONS(2178), - [anon_sym___nullable] = ACTIONS(2178), - [anon_sym___nonnull] = ACTIONS(2178), - [anon_sym___strong] = ACTIONS(2178), - [anon_sym___weak] = ACTIONS(2178), - [anon_sym___bridge] = ACTIONS(2178), - [anon_sym___bridge_transfer] = ACTIONS(2178), - [anon_sym___bridge_retained] = ACTIONS(2178), - [anon_sym___unsafe_unretained] = ACTIONS(2178), - [anon_sym___block] = ACTIONS(2178), - [anon_sym___kindof] = ACTIONS(2178), - [anon_sym___unused] = ACTIONS(2178), - [anon_sym__Complex] = ACTIONS(2178), - [anon_sym___complex] = ACTIONS(2178), - [anon_sym_IBOutlet] = ACTIONS(2178), - [anon_sym_IBInspectable] = ACTIONS(2178), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2178), - [anon_sym_signed] = ACTIONS(2178), - [anon_sym_unsigned] = ACTIONS(2178), - [anon_sym_long] = ACTIONS(2178), - [anon_sym_short] = ACTIONS(2178), - [sym_primitive_type] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_NS_ENUM] = ACTIONS(2178), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2178), - [anon_sym_NS_OPTIONS] = ACTIONS(2178), - [anon_sym_struct] = ACTIONS(2178), - [anon_sym_union] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_goto] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(2180), - [anon_sym_sizeof] = ACTIONS(2178), - [sym_number_literal] = ACTIONS(2180), - [anon_sym_L_SQUOTE] = ACTIONS(2180), - [anon_sym_u_SQUOTE] = ACTIONS(2180), - [anon_sym_U_SQUOTE] = ACTIONS(2180), - [anon_sym_u8_SQUOTE] = ACTIONS(2180), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_L_DQUOTE] = ACTIONS(2180), - [anon_sym_u_DQUOTE] = ACTIONS(2180), - [anon_sym_U_DQUOTE] = ACTIONS(2180), - [anon_sym_u8_DQUOTE] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2180), - [anon_sym_ATimport] = ACTIONS(2180), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2178), - [anon_sym_ATcompatibility_alias] = ACTIONS(2180), - [anon_sym_ATprotocol] = ACTIONS(2180), - [anon_sym_ATclass] = ACTIONS(2180), - [anon_sym_ATinterface] = ACTIONS(2180), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2178), - [sym_method_attribute_specifier] = ACTIONS(2178), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2178), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE] = ACTIONS(2178), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_API_AVAILABLE] = ACTIONS(2178), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_API_DEPRECATED] = ACTIONS(2178), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2178), - [anon_sym___deprecated_msg] = ACTIONS(2178), - [anon_sym___deprecated_enum_msg] = ACTIONS(2178), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2178), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2178), - [anon_sym_ATimplementation] = ACTIONS(2180), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym___typeof] = ACTIONS(2178), - [anon_sym___typeof__] = ACTIONS(2178), - [sym_self] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_nil] = ACTIONS(2178), - [sym_id] = ACTIONS(2178), - [sym_instancetype] = ACTIONS(2178), - [sym_Class] = ACTIONS(2178), - [sym_SEL] = ACTIONS(2178), - [sym_IMP] = ACTIONS(2178), - [sym_BOOL] = ACTIONS(2178), - [sym_auto] = ACTIONS(2178), - [anon_sym_ATautoreleasepool] = ACTIONS(2180), - [anon_sym_ATsynchronized] = ACTIONS(2180), - [anon_sym_ATtry] = ACTIONS(2180), - [anon_sym_ATthrow] = ACTIONS(2180), - [anon_sym_ATselector] = ACTIONS(2180), - [anon_sym_ATencode] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2178), - [sym_YES] = ACTIONS(2178), - [sym_NO] = ACTIONS(2178), - [anon_sym___builtin_available] = ACTIONS(2178), - [anon_sym_ATavailable] = ACTIONS(2180), - [anon_sym_va_arg] = ACTIONS(2178), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1054] = { - [ts_builtin_sym_end] = ACTIONS(1996), - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_include_token1] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym___attribute] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym___declspec] = ACTIONS(1994), - [anon_sym___cdecl] = ACTIONS(1994), - [anon_sym___clrcall] = ACTIONS(1994), - [anon_sym___stdcall] = ACTIONS(1994), - [anon_sym___fastcall] = ACTIONS(1994), - [anon_sym___thiscall] = ACTIONS(1994), - [anon_sym___vectorcall] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_RBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_in] = ACTIONS(1994), - [anon_sym_out] = ACTIONS(1994), - [anon_sym_inout] = ACTIONS(1994), - [anon_sym_bycopy] = ACTIONS(1994), - [anon_sym_byref] = ACTIONS(1994), - [anon_sym_oneway] = ACTIONS(1994), - [anon_sym__Nullable] = ACTIONS(1994), - [anon_sym__Nonnull] = ACTIONS(1994), - [anon_sym__Nullable_result] = ACTIONS(1994), - [anon_sym__Null_unspecified] = ACTIONS(1994), - [anon_sym___autoreleasing] = ACTIONS(1994), - [anon_sym___nullable] = ACTIONS(1994), - [anon_sym___nonnull] = ACTIONS(1994), - [anon_sym___strong] = ACTIONS(1994), - [anon_sym___weak] = ACTIONS(1994), - [anon_sym___bridge] = ACTIONS(1994), - [anon_sym___bridge_transfer] = ACTIONS(1994), - [anon_sym___bridge_retained] = ACTIONS(1994), - [anon_sym___unsafe_unretained] = ACTIONS(1994), - [anon_sym___block] = ACTIONS(1994), - [anon_sym___kindof] = ACTIONS(1994), - [anon_sym___unused] = ACTIONS(1994), - [anon_sym__Complex] = ACTIONS(1994), - [anon_sym___complex] = ACTIONS(1994), - [anon_sym_IBOutlet] = ACTIONS(1994), - [anon_sym_IBInspectable] = ACTIONS(1994), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_NS_ENUM] = ACTIONS(1994), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1994), - [anon_sym_NS_OPTIONS] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_case] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym_u_SQUOTE] = ACTIONS(1996), - [anon_sym_U_SQUOTE] = ACTIONS(1996), - [anon_sym_u8_SQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_u_DQUOTE] = ACTIONS(1996), - [anon_sym_U_DQUOTE] = ACTIONS(1996), - [anon_sym_u8_DQUOTE] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1996), - [anon_sym_ATimport] = ACTIONS(1996), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1994), - [anon_sym_ATcompatibility_alias] = ACTIONS(1996), - [anon_sym_ATprotocol] = ACTIONS(1996), - [anon_sym_ATclass] = ACTIONS(1996), - [anon_sym_ATinterface] = ACTIONS(1996), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1994), - [sym_method_attribute_specifier] = ACTIONS(1994), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1994), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE] = ACTIONS(1994), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_API_AVAILABLE] = ACTIONS(1994), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_API_DEPRECATED] = ACTIONS(1994), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1994), - [anon_sym___deprecated_msg] = ACTIONS(1994), - [anon_sym___deprecated_enum_msg] = ACTIONS(1994), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1994), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1994), - [anon_sym_ATimplementation] = ACTIONS(1996), - [anon_sym_typeof] = ACTIONS(1994), - [anon_sym___typeof] = ACTIONS(1994), - [anon_sym___typeof__] = ACTIONS(1994), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_nil] = ACTIONS(1994), - [sym_id] = ACTIONS(1994), - [sym_instancetype] = ACTIONS(1994), - [sym_Class] = ACTIONS(1994), - [sym_SEL] = ACTIONS(1994), - [sym_IMP] = ACTIONS(1994), - [sym_BOOL] = ACTIONS(1994), - [sym_auto] = ACTIONS(1994), - [anon_sym_ATautoreleasepool] = ACTIONS(1996), - [anon_sym_ATsynchronized] = ACTIONS(1996), - [anon_sym_ATtry] = ACTIONS(1996), - [anon_sym_ATthrow] = ACTIONS(1996), - [anon_sym_ATselector] = ACTIONS(1996), - [anon_sym_ATencode] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1994), - [sym_YES] = ACTIONS(1994), - [sym_NO] = ACTIONS(1994), - [anon_sym___builtin_available] = ACTIONS(1994), - [anon_sym_ATavailable] = ACTIONS(1996), - [anon_sym_va_arg] = ACTIONS(1994), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1055] = { - [ts_builtin_sym_end] = ACTIONS(1996), - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_include_token1] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym___attribute] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym___declspec] = ACTIONS(1994), - [anon_sym___cdecl] = ACTIONS(1994), - [anon_sym___clrcall] = ACTIONS(1994), - [anon_sym___stdcall] = ACTIONS(1994), - [anon_sym___fastcall] = ACTIONS(1994), - [anon_sym___thiscall] = ACTIONS(1994), - [anon_sym___vectorcall] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_RBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_in] = ACTIONS(1994), - [anon_sym_out] = ACTIONS(1994), - [anon_sym_inout] = ACTIONS(1994), - [anon_sym_bycopy] = ACTIONS(1994), - [anon_sym_byref] = ACTIONS(1994), - [anon_sym_oneway] = ACTIONS(1994), - [anon_sym__Nullable] = ACTIONS(1994), - [anon_sym__Nonnull] = ACTIONS(1994), - [anon_sym__Nullable_result] = ACTIONS(1994), - [anon_sym__Null_unspecified] = ACTIONS(1994), - [anon_sym___autoreleasing] = ACTIONS(1994), - [anon_sym___nullable] = ACTIONS(1994), - [anon_sym___nonnull] = ACTIONS(1994), - [anon_sym___strong] = ACTIONS(1994), - [anon_sym___weak] = ACTIONS(1994), - [anon_sym___bridge] = ACTIONS(1994), - [anon_sym___bridge_transfer] = ACTIONS(1994), - [anon_sym___bridge_retained] = ACTIONS(1994), - [anon_sym___unsafe_unretained] = ACTIONS(1994), - [anon_sym___block] = ACTIONS(1994), - [anon_sym___kindof] = ACTIONS(1994), - [anon_sym___unused] = ACTIONS(1994), - [anon_sym__Complex] = ACTIONS(1994), - [anon_sym___complex] = ACTIONS(1994), - [anon_sym_IBOutlet] = ACTIONS(1994), - [anon_sym_IBInspectable] = ACTIONS(1994), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_NS_ENUM] = ACTIONS(1994), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1994), - [anon_sym_NS_OPTIONS] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_case] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym_u_SQUOTE] = ACTIONS(1996), - [anon_sym_U_SQUOTE] = ACTIONS(1996), - [anon_sym_u8_SQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_u_DQUOTE] = ACTIONS(1996), - [anon_sym_U_DQUOTE] = ACTIONS(1996), - [anon_sym_u8_DQUOTE] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1996), - [anon_sym_ATimport] = ACTIONS(1996), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1994), - [anon_sym_ATcompatibility_alias] = ACTIONS(1996), - [anon_sym_ATprotocol] = ACTIONS(1996), - [anon_sym_ATclass] = ACTIONS(1996), - [anon_sym_ATinterface] = ACTIONS(1996), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1994), - [sym_method_attribute_specifier] = ACTIONS(1994), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1994), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE] = ACTIONS(1994), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_API_AVAILABLE] = ACTIONS(1994), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_API_DEPRECATED] = ACTIONS(1994), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1994), - [anon_sym___deprecated_msg] = ACTIONS(1994), - [anon_sym___deprecated_enum_msg] = ACTIONS(1994), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1994), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1994), - [anon_sym_ATimplementation] = ACTIONS(1996), - [anon_sym_typeof] = ACTIONS(1994), - [anon_sym___typeof] = ACTIONS(1994), - [anon_sym___typeof__] = ACTIONS(1994), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_nil] = ACTIONS(1994), - [sym_id] = ACTIONS(1994), - [sym_instancetype] = ACTIONS(1994), - [sym_Class] = ACTIONS(1994), - [sym_SEL] = ACTIONS(1994), - [sym_IMP] = ACTIONS(1994), - [sym_BOOL] = ACTIONS(1994), - [sym_auto] = ACTIONS(1994), - [anon_sym_ATautoreleasepool] = ACTIONS(1996), - [anon_sym_ATsynchronized] = ACTIONS(1996), - [anon_sym_ATtry] = ACTIONS(1996), - [anon_sym_ATthrow] = ACTIONS(1996), - [anon_sym_ATselector] = ACTIONS(1996), - [anon_sym_ATencode] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1994), - [sym_YES] = ACTIONS(1994), - [sym_NO] = ACTIONS(1994), - [anon_sym___builtin_available] = ACTIONS(1994), - [anon_sym_ATavailable] = ACTIONS(1996), - [anon_sym_va_arg] = ACTIONS(1994), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1056] = { - [ts_builtin_sym_end] = ACTIONS(1756), - [sym_identifier] = ACTIONS(1754), - [aux_sym_preproc_include_token1] = ACTIONS(1756), - [aux_sym_preproc_def_token1] = ACTIONS(1756), - [aux_sym_preproc_if_token1] = ACTIONS(1754), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1754), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1754), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_BANG] = ACTIONS(1756), - [anon_sym_TILDE] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_typedef] = ACTIONS(1754), - [anon_sym_extern] = ACTIONS(1754), - [anon_sym___attribute] = ACTIONS(1754), - [anon_sym___attribute__] = ACTIONS(1754), - [anon_sym___declspec] = ACTIONS(1754), - [anon_sym___cdecl] = ACTIONS(1754), - [anon_sym___clrcall] = ACTIONS(1754), - [anon_sym___stdcall] = ACTIONS(1754), - [anon_sym___fastcall] = ACTIONS(1754), - [anon_sym___thiscall] = ACTIONS(1754), - [anon_sym___vectorcall] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1754), - [anon_sym_auto] = ACTIONS(1754), - [anon_sym_register] = ACTIONS(1754), - [anon_sym_inline] = ACTIONS(1754), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1754), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_volatile] = ACTIONS(1754), - [anon_sym_restrict] = ACTIONS(1754), - [anon_sym__Atomic] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_out] = ACTIONS(1754), - [anon_sym_inout] = ACTIONS(1754), - [anon_sym_bycopy] = ACTIONS(1754), - [anon_sym_byref] = ACTIONS(1754), - [anon_sym_oneway] = ACTIONS(1754), - [anon_sym__Nullable] = ACTIONS(1754), - [anon_sym__Nonnull] = ACTIONS(1754), - [anon_sym__Nullable_result] = ACTIONS(1754), - [anon_sym__Null_unspecified] = ACTIONS(1754), - [anon_sym___autoreleasing] = ACTIONS(1754), - [anon_sym___nullable] = ACTIONS(1754), - [anon_sym___nonnull] = ACTIONS(1754), - [anon_sym___strong] = ACTIONS(1754), - [anon_sym___weak] = ACTIONS(1754), - [anon_sym___bridge] = ACTIONS(1754), - [anon_sym___bridge_transfer] = ACTIONS(1754), - [anon_sym___bridge_retained] = ACTIONS(1754), - [anon_sym___unsafe_unretained] = ACTIONS(1754), - [anon_sym___block] = ACTIONS(1754), - [anon_sym___kindof] = ACTIONS(1754), - [anon_sym___unused] = ACTIONS(1754), - [anon_sym__Complex] = ACTIONS(1754), - [anon_sym___complex] = ACTIONS(1754), - [anon_sym_IBOutlet] = ACTIONS(1754), - [anon_sym_IBInspectable] = ACTIONS(1754), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1754), - [anon_sym_signed] = ACTIONS(1754), - [anon_sym_unsigned] = ACTIONS(1754), - [anon_sym_long] = ACTIONS(1754), - [anon_sym_short] = ACTIONS(1754), - [sym_primitive_type] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_NS_ENUM] = ACTIONS(1754), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1754), - [anon_sym_NS_OPTIONS] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(1754), - [anon_sym_union] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_switch] = ACTIONS(1754), - [anon_sym_case] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_do] = ACTIONS(1754), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_goto] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1756), - [anon_sym_PLUS_PLUS] = ACTIONS(1756), - [anon_sym_sizeof] = ACTIONS(1754), - [sym_number_literal] = ACTIONS(1756), - [anon_sym_L_SQUOTE] = ACTIONS(1756), - [anon_sym_u_SQUOTE] = ACTIONS(1756), - [anon_sym_U_SQUOTE] = ACTIONS(1756), - [anon_sym_u8_SQUOTE] = ACTIONS(1756), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_L_DQUOTE] = ACTIONS(1756), - [anon_sym_u_DQUOTE] = ACTIONS(1756), - [anon_sym_U_DQUOTE] = ACTIONS(1756), - [anon_sym_u8_DQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [sym_true] = ACTIONS(1754), - [sym_false] = ACTIONS(1754), - [sym_null] = ACTIONS(1754), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1756), - [anon_sym_ATimport] = ACTIONS(1756), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1754), - [anon_sym_ATcompatibility_alias] = ACTIONS(1756), - [anon_sym_ATprotocol] = ACTIONS(1756), - [anon_sym_ATclass] = ACTIONS(1756), - [anon_sym_ATinterface] = ACTIONS(1756), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1754), - [sym_method_attribute_specifier] = ACTIONS(1754), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1754), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1754), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1754), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1754), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1754), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1754), - [anon_sym_NS_AVAILABLE] = ACTIONS(1754), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1754), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1754), - [anon_sym_API_AVAILABLE] = ACTIONS(1754), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1754), - [anon_sym_API_DEPRECATED] = ACTIONS(1754), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1754), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1754), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1754), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1754), - [anon_sym___deprecated_msg] = ACTIONS(1754), - [anon_sym___deprecated_enum_msg] = ACTIONS(1754), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1754), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1754), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1754), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1754), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1754), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1754), - [anon_sym_ATimplementation] = ACTIONS(1756), - [anon_sym_typeof] = ACTIONS(1754), - [anon_sym___typeof] = ACTIONS(1754), - [anon_sym___typeof__] = ACTIONS(1754), - [sym_self] = ACTIONS(1754), - [sym_super] = ACTIONS(1754), - [sym_nil] = ACTIONS(1754), - [sym_id] = ACTIONS(1754), - [sym_instancetype] = ACTIONS(1754), - [sym_Class] = ACTIONS(1754), - [sym_SEL] = ACTIONS(1754), - [sym_IMP] = ACTIONS(1754), - [sym_BOOL] = ACTIONS(1754), - [sym_auto] = ACTIONS(1754), - [anon_sym_ATautoreleasepool] = ACTIONS(1756), - [anon_sym_ATsynchronized] = ACTIONS(1756), - [anon_sym_ATtry] = ACTIONS(1756), - [anon_sym_ATthrow] = ACTIONS(1756), - [anon_sym_ATselector] = ACTIONS(1756), - [anon_sym_ATencode] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(1754), - [sym_YES] = ACTIONS(1754), - [sym_NO] = ACTIONS(1754), - [anon_sym___builtin_available] = ACTIONS(1754), - [anon_sym_ATavailable] = ACTIONS(1756), - [anon_sym_va_arg] = ACTIONS(1754), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1057] = { - [ts_builtin_sym_end] = ACTIONS(2132), - [sym_identifier] = ACTIONS(2130), - [aux_sym_preproc_include_token1] = ACTIONS(2132), - [aux_sym_preproc_def_token1] = ACTIONS(2132), - [aux_sym_preproc_if_token1] = ACTIONS(2130), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2130), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2130), - [anon_sym_LPAREN2] = ACTIONS(2132), - [anon_sym_BANG] = ACTIONS(2132), - [anon_sym_TILDE] = ACTIONS(2132), - [anon_sym_DASH] = ACTIONS(2130), - [anon_sym_PLUS] = ACTIONS(2130), - [anon_sym_STAR] = ACTIONS(2132), - [anon_sym_CARET] = ACTIONS(2132), - [anon_sym_AMP] = ACTIONS(2132), - [anon_sym_SEMI] = ACTIONS(2132), - [anon_sym_typedef] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2130), - [anon_sym___attribute] = ACTIONS(2130), - [anon_sym___attribute__] = ACTIONS(2130), - [anon_sym___declspec] = ACTIONS(2130), - [anon_sym___cdecl] = ACTIONS(2130), - [anon_sym___clrcall] = ACTIONS(2130), - [anon_sym___stdcall] = ACTIONS(2130), - [anon_sym___fastcall] = ACTIONS(2130), - [anon_sym___thiscall] = ACTIONS(2130), - [anon_sym___vectorcall] = ACTIONS(2130), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_RBRACE] = ACTIONS(2132), - [anon_sym_LBRACK] = ACTIONS(2132), - [anon_sym_static] = ACTIONS(2130), - [anon_sym_auto] = ACTIONS(2130), - [anon_sym_register] = ACTIONS(2130), - [anon_sym_inline] = ACTIONS(2130), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2130), - [anon_sym_const] = ACTIONS(2130), - [anon_sym_volatile] = ACTIONS(2130), - [anon_sym_restrict] = ACTIONS(2130), - [anon_sym__Atomic] = ACTIONS(2130), - [anon_sym_in] = ACTIONS(2130), - [anon_sym_out] = ACTIONS(2130), - [anon_sym_inout] = ACTIONS(2130), - [anon_sym_bycopy] = ACTIONS(2130), - [anon_sym_byref] = ACTIONS(2130), - [anon_sym_oneway] = ACTIONS(2130), - [anon_sym__Nullable] = ACTIONS(2130), - [anon_sym__Nonnull] = ACTIONS(2130), - [anon_sym__Nullable_result] = ACTIONS(2130), - [anon_sym__Null_unspecified] = ACTIONS(2130), - [anon_sym___autoreleasing] = ACTIONS(2130), - [anon_sym___nullable] = ACTIONS(2130), - [anon_sym___nonnull] = ACTIONS(2130), - [anon_sym___strong] = ACTIONS(2130), - [anon_sym___weak] = ACTIONS(2130), - [anon_sym___bridge] = ACTIONS(2130), - [anon_sym___bridge_transfer] = ACTIONS(2130), - [anon_sym___bridge_retained] = ACTIONS(2130), - [anon_sym___unsafe_unretained] = ACTIONS(2130), - [anon_sym___block] = ACTIONS(2130), - [anon_sym___kindof] = ACTIONS(2130), - [anon_sym___unused] = ACTIONS(2130), - [anon_sym__Complex] = ACTIONS(2130), - [anon_sym___complex] = ACTIONS(2130), - [anon_sym_IBOutlet] = ACTIONS(2130), - [anon_sym_IBInspectable] = ACTIONS(2130), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2130), - [anon_sym_signed] = ACTIONS(2130), - [anon_sym_unsigned] = ACTIONS(2130), - [anon_sym_long] = ACTIONS(2130), - [anon_sym_short] = ACTIONS(2130), - [sym_primitive_type] = ACTIONS(2130), - [anon_sym_enum] = ACTIONS(2130), - [anon_sym_NS_ENUM] = ACTIONS(2130), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2130), - [anon_sym_NS_OPTIONS] = ACTIONS(2130), - [anon_sym_struct] = ACTIONS(2130), - [anon_sym_union] = ACTIONS(2130), - [anon_sym_if] = ACTIONS(2130), - [anon_sym_switch] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2130), - [anon_sym_default] = ACTIONS(2130), - [anon_sym_while] = ACTIONS(2130), - [anon_sym_do] = ACTIONS(2130), - [anon_sym_for] = ACTIONS(2130), - [anon_sym_return] = ACTIONS(2130), - [anon_sym_break] = ACTIONS(2130), - [anon_sym_continue] = ACTIONS(2130), - [anon_sym_goto] = ACTIONS(2130), - [anon_sym_DASH_DASH] = ACTIONS(2132), - [anon_sym_PLUS_PLUS] = ACTIONS(2132), - [anon_sym_sizeof] = ACTIONS(2130), - [sym_number_literal] = ACTIONS(2132), - [anon_sym_L_SQUOTE] = ACTIONS(2132), - [anon_sym_u_SQUOTE] = ACTIONS(2132), - [anon_sym_U_SQUOTE] = ACTIONS(2132), - [anon_sym_u8_SQUOTE] = ACTIONS(2132), - [anon_sym_SQUOTE] = ACTIONS(2132), - [anon_sym_L_DQUOTE] = ACTIONS(2132), - [anon_sym_u_DQUOTE] = ACTIONS(2132), - [anon_sym_U_DQUOTE] = ACTIONS(2132), - [anon_sym_u8_DQUOTE] = ACTIONS(2132), - [anon_sym_DQUOTE] = ACTIONS(2132), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [sym_null] = ACTIONS(2130), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2132), - [anon_sym_ATimport] = ACTIONS(2132), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2130), - [anon_sym_ATcompatibility_alias] = ACTIONS(2132), - [anon_sym_ATprotocol] = ACTIONS(2132), - [anon_sym_ATclass] = ACTIONS(2132), - [anon_sym_ATinterface] = ACTIONS(2132), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2130), - [sym_method_attribute_specifier] = ACTIONS(2130), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2130), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2130), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2130), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2130), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2130), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2130), - [anon_sym_NS_AVAILABLE] = ACTIONS(2130), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2130), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2130), - [anon_sym_API_AVAILABLE] = ACTIONS(2130), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2130), - [anon_sym_API_DEPRECATED] = ACTIONS(2130), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2130), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2130), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2130), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2130), - [anon_sym___deprecated_msg] = ACTIONS(2130), - [anon_sym___deprecated_enum_msg] = ACTIONS(2130), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2130), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2130), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2130), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2130), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2130), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2130), - [anon_sym_ATimplementation] = ACTIONS(2132), - [anon_sym_typeof] = ACTIONS(2130), - [anon_sym___typeof] = ACTIONS(2130), - [anon_sym___typeof__] = ACTIONS(2130), - [sym_self] = ACTIONS(2130), - [sym_super] = ACTIONS(2130), - [sym_nil] = ACTIONS(2130), - [sym_id] = ACTIONS(2130), - [sym_instancetype] = ACTIONS(2130), - [sym_Class] = ACTIONS(2130), - [sym_SEL] = ACTIONS(2130), - [sym_IMP] = ACTIONS(2130), - [sym_BOOL] = ACTIONS(2130), - [sym_auto] = ACTIONS(2130), - [anon_sym_ATautoreleasepool] = ACTIONS(2132), - [anon_sym_ATsynchronized] = ACTIONS(2132), - [anon_sym_ATtry] = ACTIONS(2132), - [anon_sym_ATthrow] = ACTIONS(2132), - [anon_sym_ATselector] = ACTIONS(2132), - [anon_sym_ATencode] = ACTIONS(2132), - [anon_sym_AT] = ACTIONS(2130), - [sym_YES] = ACTIONS(2130), - [sym_NO] = ACTIONS(2130), - [anon_sym___builtin_available] = ACTIONS(2130), - [anon_sym_ATavailable] = ACTIONS(2132), - [anon_sym_va_arg] = ACTIONS(2130), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1058] = { - [ts_builtin_sym_end] = ACTIONS(1732), - [sym_identifier] = ACTIONS(1730), - [aux_sym_preproc_include_token1] = ACTIONS(1732), - [aux_sym_preproc_def_token1] = ACTIONS(1732), - [aux_sym_preproc_if_token1] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1730), - [anon_sym_LPAREN2] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_CARET] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_typedef] = ACTIONS(1730), - [anon_sym_extern] = ACTIONS(1730), - [anon_sym___attribute] = ACTIONS(1730), - [anon_sym___attribute__] = ACTIONS(1730), - [anon_sym___declspec] = ACTIONS(1730), - [anon_sym___cdecl] = ACTIONS(1730), - [anon_sym___clrcall] = ACTIONS(1730), - [anon_sym___stdcall] = ACTIONS(1730), - [anon_sym___fastcall] = ACTIONS(1730), - [anon_sym___thiscall] = ACTIONS(1730), - [anon_sym___vectorcall] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_RBRACE] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_static] = ACTIONS(1730), - [anon_sym_auto] = ACTIONS(1730), - [anon_sym_register] = ACTIONS(1730), - [anon_sym_inline] = ACTIONS(1730), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1730), - [anon_sym_const] = ACTIONS(1730), - [anon_sym_volatile] = ACTIONS(1730), - [anon_sym_restrict] = ACTIONS(1730), - [anon_sym__Atomic] = ACTIONS(1730), - [anon_sym_in] = ACTIONS(1730), - [anon_sym_out] = ACTIONS(1730), - [anon_sym_inout] = ACTIONS(1730), - [anon_sym_bycopy] = ACTIONS(1730), - [anon_sym_byref] = ACTIONS(1730), - [anon_sym_oneway] = ACTIONS(1730), - [anon_sym__Nullable] = ACTIONS(1730), - [anon_sym__Nonnull] = ACTIONS(1730), - [anon_sym__Nullable_result] = ACTIONS(1730), - [anon_sym__Null_unspecified] = ACTIONS(1730), - [anon_sym___autoreleasing] = ACTIONS(1730), - [anon_sym___nullable] = ACTIONS(1730), - [anon_sym___nonnull] = ACTIONS(1730), - [anon_sym___strong] = ACTIONS(1730), - [anon_sym___weak] = ACTIONS(1730), - [anon_sym___bridge] = ACTIONS(1730), - [anon_sym___bridge_transfer] = ACTIONS(1730), - [anon_sym___bridge_retained] = ACTIONS(1730), - [anon_sym___unsafe_unretained] = ACTIONS(1730), - [anon_sym___block] = ACTIONS(1730), - [anon_sym___kindof] = ACTIONS(1730), - [anon_sym___unused] = ACTIONS(1730), - [anon_sym__Complex] = ACTIONS(1730), - [anon_sym___complex] = ACTIONS(1730), - [anon_sym_IBOutlet] = ACTIONS(1730), - [anon_sym_IBInspectable] = ACTIONS(1730), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1730), - [anon_sym_signed] = ACTIONS(1730), - [anon_sym_unsigned] = ACTIONS(1730), - [anon_sym_long] = ACTIONS(1730), - [anon_sym_short] = ACTIONS(1730), - [sym_primitive_type] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_NS_ENUM] = ACTIONS(1730), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1730), - [anon_sym_NS_OPTIONS] = ACTIONS(1730), - [anon_sym_struct] = ACTIONS(1730), - [anon_sym_union] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_switch] = ACTIONS(1730), - [anon_sym_case] = ACTIONS(1730), - [anon_sym_default] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_do] = ACTIONS(1730), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_goto] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1732), - [anon_sym_sizeof] = ACTIONS(1730), - [sym_number_literal] = ACTIONS(1732), - [anon_sym_L_SQUOTE] = ACTIONS(1732), - [anon_sym_u_SQUOTE] = ACTIONS(1732), - [anon_sym_U_SQUOTE] = ACTIONS(1732), - [anon_sym_u8_SQUOTE] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1732), - [anon_sym_L_DQUOTE] = ACTIONS(1732), - [anon_sym_u_DQUOTE] = ACTIONS(1732), - [anon_sym_U_DQUOTE] = ACTIONS(1732), - [anon_sym_u8_DQUOTE] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1732), - [sym_true] = ACTIONS(1730), - [sym_false] = ACTIONS(1730), - [sym_null] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1732), - [anon_sym_ATimport] = ACTIONS(1732), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1730), - [anon_sym_ATcompatibility_alias] = ACTIONS(1732), - [anon_sym_ATprotocol] = ACTIONS(1732), - [anon_sym_ATclass] = ACTIONS(1732), - [anon_sym_ATinterface] = ACTIONS(1732), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1730), - [sym_method_attribute_specifier] = ACTIONS(1730), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1730), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE] = ACTIONS(1730), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_API_AVAILABLE] = ACTIONS(1730), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_API_DEPRECATED] = ACTIONS(1730), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1730), - [anon_sym___deprecated_msg] = ACTIONS(1730), - [anon_sym___deprecated_enum_msg] = ACTIONS(1730), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1730), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1730), - [anon_sym_ATimplementation] = ACTIONS(1732), - [anon_sym_typeof] = ACTIONS(1730), - [anon_sym___typeof] = ACTIONS(1730), - [anon_sym___typeof__] = ACTIONS(1730), - [sym_self] = ACTIONS(1730), - [sym_super] = ACTIONS(1730), - [sym_nil] = ACTIONS(1730), - [sym_id] = ACTIONS(1730), - [sym_instancetype] = ACTIONS(1730), - [sym_Class] = ACTIONS(1730), - [sym_SEL] = ACTIONS(1730), - [sym_IMP] = ACTIONS(1730), - [sym_BOOL] = ACTIONS(1730), - [sym_auto] = ACTIONS(1730), - [anon_sym_ATautoreleasepool] = ACTIONS(1732), - [anon_sym_ATsynchronized] = ACTIONS(1732), - [anon_sym_ATtry] = ACTIONS(1732), - [anon_sym_ATthrow] = ACTIONS(1732), - [anon_sym_ATselector] = ACTIONS(1732), - [anon_sym_ATencode] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1730), - [sym_YES] = ACTIONS(1730), - [sym_NO] = ACTIONS(1730), - [anon_sym___builtin_available] = ACTIONS(1730), - [anon_sym_ATavailable] = ACTIONS(1732), - [anon_sym_va_arg] = ACTIONS(1730), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1059] = { - [ts_builtin_sym_end] = ACTIONS(1732), - [sym_identifier] = ACTIONS(1730), - [aux_sym_preproc_include_token1] = ACTIONS(1732), - [aux_sym_preproc_def_token1] = ACTIONS(1732), - [aux_sym_preproc_if_token1] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1730), - [anon_sym_LPAREN2] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_CARET] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_typedef] = ACTIONS(1730), - [anon_sym_extern] = ACTIONS(1730), - [anon_sym___attribute] = ACTIONS(1730), - [anon_sym___attribute__] = ACTIONS(1730), - [anon_sym___declspec] = ACTIONS(1730), - [anon_sym___cdecl] = ACTIONS(1730), - [anon_sym___clrcall] = ACTIONS(1730), - [anon_sym___stdcall] = ACTIONS(1730), - [anon_sym___fastcall] = ACTIONS(1730), - [anon_sym___thiscall] = ACTIONS(1730), - [anon_sym___vectorcall] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_RBRACE] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_static] = ACTIONS(1730), - [anon_sym_auto] = ACTIONS(1730), - [anon_sym_register] = ACTIONS(1730), - [anon_sym_inline] = ACTIONS(1730), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1730), - [anon_sym_const] = ACTIONS(1730), - [anon_sym_volatile] = ACTIONS(1730), - [anon_sym_restrict] = ACTIONS(1730), - [anon_sym__Atomic] = ACTIONS(1730), - [anon_sym_in] = ACTIONS(1730), - [anon_sym_out] = ACTIONS(1730), - [anon_sym_inout] = ACTIONS(1730), - [anon_sym_bycopy] = ACTIONS(1730), - [anon_sym_byref] = ACTIONS(1730), - [anon_sym_oneway] = ACTIONS(1730), - [anon_sym__Nullable] = ACTIONS(1730), - [anon_sym__Nonnull] = ACTIONS(1730), - [anon_sym__Nullable_result] = ACTIONS(1730), - [anon_sym__Null_unspecified] = ACTIONS(1730), - [anon_sym___autoreleasing] = ACTIONS(1730), - [anon_sym___nullable] = ACTIONS(1730), - [anon_sym___nonnull] = ACTIONS(1730), - [anon_sym___strong] = ACTIONS(1730), - [anon_sym___weak] = ACTIONS(1730), - [anon_sym___bridge] = ACTIONS(1730), - [anon_sym___bridge_transfer] = ACTIONS(1730), - [anon_sym___bridge_retained] = ACTIONS(1730), - [anon_sym___unsafe_unretained] = ACTIONS(1730), - [anon_sym___block] = ACTIONS(1730), - [anon_sym___kindof] = ACTIONS(1730), - [anon_sym___unused] = ACTIONS(1730), - [anon_sym__Complex] = ACTIONS(1730), - [anon_sym___complex] = ACTIONS(1730), - [anon_sym_IBOutlet] = ACTIONS(1730), - [anon_sym_IBInspectable] = ACTIONS(1730), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1730), - [anon_sym_signed] = ACTIONS(1730), - [anon_sym_unsigned] = ACTIONS(1730), - [anon_sym_long] = ACTIONS(1730), - [anon_sym_short] = ACTIONS(1730), - [sym_primitive_type] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_NS_ENUM] = ACTIONS(1730), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1730), - [anon_sym_NS_OPTIONS] = ACTIONS(1730), - [anon_sym_struct] = ACTIONS(1730), - [anon_sym_union] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_switch] = ACTIONS(1730), - [anon_sym_case] = ACTIONS(1730), - [anon_sym_default] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_do] = ACTIONS(1730), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_goto] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1732), - [anon_sym_sizeof] = ACTIONS(1730), - [sym_number_literal] = ACTIONS(1732), - [anon_sym_L_SQUOTE] = ACTIONS(1732), - [anon_sym_u_SQUOTE] = ACTIONS(1732), - [anon_sym_U_SQUOTE] = ACTIONS(1732), - [anon_sym_u8_SQUOTE] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1732), - [anon_sym_L_DQUOTE] = ACTIONS(1732), - [anon_sym_u_DQUOTE] = ACTIONS(1732), - [anon_sym_U_DQUOTE] = ACTIONS(1732), - [anon_sym_u8_DQUOTE] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1732), - [sym_true] = ACTIONS(1730), - [sym_false] = ACTIONS(1730), - [sym_null] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1732), - [anon_sym_ATimport] = ACTIONS(1732), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1730), - [anon_sym_ATcompatibility_alias] = ACTIONS(1732), - [anon_sym_ATprotocol] = ACTIONS(1732), - [anon_sym_ATclass] = ACTIONS(1732), - [anon_sym_ATinterface] = ACTIONS(1732), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1730), - [sym_method_attribute_specifier] = ACTIONS(1730), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1730), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE] = ACTIONS(1730), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_API_AVAILABLE] = ACTIONS(1730), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_API_DEPRECATED] = ACTIONS(1730), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1730), - [anon_sym___deprecated_msg] = ACTIONS(1730), - [anon_sym___deprecated_enum_msg] = ACTIONS(1730), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1730), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1730), - [anon_sym_ATimplementation] = ACTIONS(1732), - [anon_sym_typeof] = ACTIONS(1730), - [anon_sym___typeof] = ACTIONS(1730), - [anon_sym___typeof__] = ACTIONS(1730), - [sym_self] = ACTIONS(1730), - [sym_super] = ACTIONS(1730), - [sym_nil] = ACTIONS(1730), - [sym_id] = ACTIONS(1730), - [sym_instancetype] = ACTIONS(1730), - [sym_Class] = ACTIONS(1730), - [sym_SEL] = ACTIONS(1730), - [sym_IMP] = ACTIONS(1730), - [sym_BOOL] = ACTIONS(1730), - [sym_auto] = ACTIONS(1730), - [anon_sym_ATautoreleasepool] = ACTIONS(1732), - [anon_sym_ATsynchronized] = ACTIONS(1732), - [anon_sym_ATtry] = ACTIONS(1732), - [anon_sym_ATthrow] = ACTIONS(1732), - [anon_sym_ATselector] = ACTIONS(1732), - [anon_sym_ATencode] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1730), - [sym_YES] = ACTIONS(1730), - [sym_NO] = ACTIONS(1730), - [anon_sym___builtin_available] = ACTIONS(1730), - [anon_sym_ATavailable] = ACTIONS(1732), - [anon_sym_va_arg] = ACTIONS(1730), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1060] = { - [ts_builtin_sym_end] = ACTIONS(2028), - [sym_identifier] = ACTIONS(2026), - [aux_sym_preproc_include_token1] = ACTIONS(2028), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2028), - [anon_sym_BANG] = ACTIONS(2028), - [anon_sym_TILDE] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2028), - [anon_sym_CARET] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_typedef] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2026), - [anon_sym___attribute] = ACTIONS(2026), - [anon_sym___attribute__] = ACTIONS(2026), - [anon_sym___declspec] = ACTIONS(2026), - [anon_sym___cdecl] = ACTIONS(2026), - [anon_sym___clrcall] = ACTIONS(2026), - [anon_sym___stdcall] = ACTIONS(2026), - [anon_sym___fastcall] = ACTIONS(2026), - [anon_sym___thiscall] = ACTIONS(2026), - [anon_sym___vectorcall] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_RBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_auto] = ACTIONS(2026), - [anon_sym_register] = ACTIONS(2026), - [anon_sym_inline] = ACTIONS(2026), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_volatile] = ACTIONS(2026), - [anon_sym_restrict] = ACTIONS(2026), - [anon_sym__Atomic] = ACTIONS(2026), - [anon_sym_in] = ACTIONS(2026), - [anon_sym_out] = ACTIONS(2026), - [anon_sym_inout] = ACTIONS(2026), - [anon_sym_bycopy] = ACTIONS(2026), - [anon_sym_byref] = ACTIONS(2026), - [anon_sym_oneway] = ACTIONS(2026), - [anon_sym__Nullable] = ACTIONS(2026), - [anon_sym__Nonnull] = ACTIONS(2026), - [anon_sym__Nullable_result] = ACTIONS(2026), - [anon_sym__Null_unspecified] = ACTIONS(2026), - [anon_sym___autoreleasing] = ACTIONS(2026), - [anon_sym___nullable] = ACTIONS(2026), - [anon_sym___nonnull] = ACTIONS(2026), - [anon_sym___strong] = ACTIONS(2026), - [anon_sym___weak] = ACTIONS(2026), - [anon_sym___bridge] = ACTIONS(2026), - [anon_sym___bridge_transfer] = ACTIONS(2026), - [anon_sym___bridge_retained] = ACTIONS(2026), - [anon_sym___unsafe_unretained] = ACTIONS(2026), - [anon_sym___block] = ACTIONS(2026), - [anon_sym___kindof] = ACTIONS(2026), - [anon_sym___unused] = ACTIONS(2026), - [anon_sym__Complex] = ACTIONS(2026), - [anon_sym___complex] = ACTIONS(2026), - [anon_sym_IBOutlet] = ACTIONS(2026), - [anon_sym_IBInspectable] = ACTIONS(2026), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2026), - [anon_sym_signed] = ACTIONS(2026), - [anon_sym_unsigned] = ACTIONS(2026), - [anon_sym_long] = ACTIONS(2026), - [anon_sym_short] = ACTIONS(2026), - [sym_primitive_type] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_NS_ENUM] = ACTIONS(2026), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2026), - [anon_sym_NS_OPTIONS] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_switch] = ACTIONS(2026), - [anon_sym_case] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_goto] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2028), - [anon_sym_L_SQUOTE] = ACTIONS(2028), - [anon_sym_u_SQUOTE] = ACTIONS(2028), - [anon_sym_U_SQUOTE] = ACTIONS(2028), - [anon_sym_u8_SQUOTE] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_L_DQUOTE] = ACTIONS(2028), - [anon_sym_u_DQUOTE] = ACTIONS(2028), - [anon_sym_U_DQUOTE] = ACTIONS(2028), - [anon_sym_u8_DQUOTE] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [sym_true] = ACTIONS(2026), - [sym_false] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2028), - [anon_sym_ATimport] = ACTIONS(2028), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2026), - [anon_sym_ATcompatibility_alias] = ACTIONS(2028), - [anon_sym_ATprotocol] = ACTIONS(2028), - [anon_sym_ATclass] = ACTIONS(2028), - [anon_sym_ATinterface] = ACTIONS(2028), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2026), - [sym_method_attribute_specifier] = ACTIONS(2026), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2026), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE] = ACTIONS(2026), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_API_AVAILABLE] = ACTIONS(2026), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_API_DEPRECATED] = ACTIONS(2026), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2026), - [anon_sym___deprecated_msg] = ACTIONS(2026), - [anon_sym___deprecated_enum_msg] = ACTIONS(2026), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2026), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2026), - [anon_sym_ATimplementation] = ACTIONS(2028), - [anon_sym_typeof] = ACTIONS(2026), - [anon_sym___typeof] = ACTIONS(2026), - [anon_sym___typeof__] = ACTIONS(2026), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_nil] = ACTIONS(2026), - [sym_id] = ACTIONS(2026), - [sym_instancetype] = ACTIONS(2026), - [sym_Class] = ACTIONS(2026), - [sym_SEL] = ACTIONS(2026), - [sym_IMP] = ACTIONS(2026), - [sym_BOOL] = ACTIONS(2026), - [sym_auto] = ACTIONS(2026), - [anon_sym_ATautoreleasepool] = ACTIONS(2028), - [anon_sym_ATsynchronized] = ACTIONS(2028), - [anon_sym_ATtry] = ACTIONS(2028), - [anon_sym_ATthrow] = ACTIONS(2028), - [anon_sym_ATselector] = ACTIONS(2028), - [anon_sym_ATencode] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(2026), - [sym_YES] = ACTIONS(2026), - [sym_NO] = ACTIONS(2026), - [anon_sym___builtin_available] = ACTIONS(2026), - [anon_sym_ATavailable] = ACTIONS(2028), - [anon_sym_va_arg] = ACTIONS(2026), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1061] = { - [ts_builtin_sym_end] = ACTIONS(2136), - [sym_identifier] = ACTIONS(2134), - [aux_sym_preproc_include_token1] = ACTIONS(2136), - [aux_sym_preproc_def_token1] = ACTIONS(2136), - [aux_sym_preproc_if_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), - [anon_sym_LPAREN2] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_typedef] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym___attribute] = ACTIONS(2134), - [anon_sym___attribute__] = ACTIONS(2134), - [anon_sym___declspec] = ACTIONS(2134), - [anon_sym___cdecl] = ACTIONS(2134), - [anon_sym___clrcall] = ACTIONS(2134), - [anon_sym___stdcall] = ACTIONS(2134), - [anon_sym___fastcall] = ACTIONS(2134), - [anon_sym___thiscall] = ACTIONS(2134), - [anon_sym___vectorcall] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_auto] = ACTIONS(2134), - [anon_sym_register] = ACTIONS(2134), - [anon_sym_inline] = ACTIONS(2134), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [anon_sym_volatile] = ACTIONS(2134), - [anon_sym_restrict] = ACTIONS(2134), - [anon_sym__Atomic] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [anon_sym_out] = ACTIONS(2134), - [anon_sym_inout] = ACTIONS(2134), - [anon_sym_bycopy] = ACTIONS(2134), - [anon_sym_byref] = ACTIONS(2134), - [anon_sym_oneway] = ACTIONS(2134), - [anon_sym__Nullable] = ACTIONS(2134), - [anon_sym__Nonnull] = ACTIONS(2134), - [anon_sym__Nullable_result] = ACTIONS(2134), - [anon_sym__Null_unspecified] = ACTIONS(2134), - [anon_sym___autoreleasing] = ACTIONS(2134), - [anon_sym___nullable] = ACTIONS(2134), - [anon_sym___nonnull] = ACTIONS(2134), - [anon_sym___strong] = ACTIONS(2134), - [anon_sym___weak] = ACTIONS(2134), - [anon_sym___bridge] = ACTIONS(2134), - [anon_sym___bridge_transfer] = ACTIONS(2134), - [anon_sym___bridge_retained] = ACTIONS(2134), - [anon_sym___unsafe_unretained] = ACTIONS(2134), - [anon_sym___block] = ACTIONS(2134), - [anon_sym___kindof] = ACTIONS(2134), - [anon_sym___unused] = ACTIONS(2134), - [anon_sym__Complex] = ACTIONS(2134), - [anon_sym___complex] = ACTIONS(2134), - [anon_sym_IBOutlet] = ACTIONS(2134), - [anon_sym_IBInspectable] = ACTIONS(2134), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2134), - [anon_sym_signed] = ACTIONS(2134), - [anon_sym_unsigned] = ACTIONS(2134), - [anon_sym_long] = ACTIONS(2134), - [anon_sym_short] = ACTIONS(2134), - [sym_primitive_type] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_NS_ENUM] = ACTIONS(2134), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2134), - [anon_sym_NS_OPTIONS] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(2134), - [anon_sym_union] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_switch] = ACTIONS(2134), - [anon_sym_case] = ACTIONS(2134), - [anon_sym_default] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_goto] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_PLUS_PLUS] = ACTIONS(2136), - [anon_sym_sizeof] = ACTIONS(2134), - [sym_number_literal] = ACTIONS(2136), - [anon_sym_L_SQUOTE] = ACTIONS(2136), - [anon_sym_u_SQUOTE] = ACTIONS(2136), - [anon_sym_U_SQUOTE] = ACTIONS(2136), - [anon_sym_u8_SQUOTE] = ACTIONS(2136), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_L_DQUOTE] = ACTIONS(2136), - [anon_sym_u_DQUOTE] = ACTIONS(2136), - [anon_sym_U_DQUOTE] = ACTIONS(2136), - [anon_sym_u8_DQUOTE] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [sym_null] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2136), - [anon_sym_ATimport] = ACTIONS(2136), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2134), - [anon_sym_ATcompatibility_alias] = ACTIONS(2136), - [anon_sym_ATprotocol] = ACTIONS(2136), - [anon_sym_ATclass] = ACTIONS(2136), - [anon_sym_ATinterface] = ACTIONS(2136), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2134), - [sym_method_attribute_specifier] = ACTIONS(2134), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2134), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE] = ACTIONS(2134), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_API_AVAILABLE] = ACTIONS(2134), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_API_DEPRECATED] = ACTIONS(2134), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2134), - [anon_sym___deprecated_msg] = ACTIONS(2134), - [anon_sym___deprecated_enum_msg] = ACTIONS(2134), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2134), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2134), - [anon_sym_ATimplementation] = ACTIONS(2136), - [anon_sym_typeof] = ACTIONS(2134), - [anon_sym___typeof] = ACTIONS(2134), - [anon_sym___typeof__] = ACTIONS(2134), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_nil] = ACTIONS(2134), - [sym_id] = ACTIONS(2134), - [sym_instancetype] = ACTIONS(2134), - [sym_Class] = ACTIONS(2134), - [sym_SEL] = ACTIONS(2134), - [sym_IMP] = ACTIONS(2134), - [sym_BOOL] = ACTIONS(2134), - [sym_auto] = ACTIONS(2134), - [anon_sym_ATautoreleasepool] = ACTIONS(2136), - [anon_sym_ATsynchronized] = ACTIONS(2136), - [anon_sym_ATtry] = ACTIONS(2136), - [anon_sym_ATthrow] = ACTIONS(2136), - [anon_sym_ATselector] = ACTIONS(2136), - [anon_sym_ATencode] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2134), - [sym_YES] = ACTIONS(2134), - [sym_NO] = ACTIONS(2134), - [anon_sym___builtin_available] = ACTIONS(2134), - [anon_sym_ATavailable] = ACTIONS(2136), - [anon_sym_va_arg] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1062] = { - [ts_builtin_sym_end] = ACTIONS(1732), - [sym_identifier] = ACTIONS(1730), - [aux_sym_preproc_include_token1] = ACTIONS(1732), - [aux_sym_preproc_def_token1] = ACTIONS(1732), - [aux_sym_preproc_if_token1] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1730), - [anon_sym_LPAREN2] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_CARET] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_typedef] = ACTIONS(1730), - [anon_sym_extern] = ACTIONS(1730), - [anon_sym___attribute] = ACTIONS(1730), - [anon_sym___attribute__] = ACTIONS(1730), - [anon_sym___declspec] = ACTIONS(1730), - [anon_sym___cdecl] = ACTIONS(1730), - [anon_sym___clrcall] = ACTIONS(1730), - [anon_sym___stdcall] = ACTIONS(1730), - [anon_sym___fastcall] = ACTIONS(1730), - [anon_sym___thiscall] = ACTIONS(1730), - [anon_sym___vectorcall] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_RBRACE] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_static] = ACTIONS(1730), - [anon_sym_auto] = ACTIONS(1730), - [anon_sym_register] = ACTIONS(1730), - [anon_sym_inline] = ACTIONS(1730), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1730), - [anon_sym_const] = ACTIONS(1730), - [anon_sym_volatile] = ACTIONS(1730), - [anon_sym_restrict] = ACTIONS(1730), - [anon_sym__Atomic] = ACTIONS(1730), - [anon_sym_in] = ACTIONS(1730), - [anon_sym_out] = ACTIONS(1730), - [anon_sym_inout] = ACTIONS(1730), - [anon_sym_bycopy] = ACTIONS(1730), - [anon_sym_byref] = ACTIONS(1730), - [anon_sym_oneway] = ACTIONS(1730), - [anon_sym__Nullable] = ACTIONS(1730), - [anon_sym__Nonnull] = ACTIONS(1730), - [anon_sym__Nullable_result] = ACTIONS(1730), - [anon_sym__Null_unspecified] = ACTIONS(1730), - [anon_sym___autoreleasing] = ACTIONS(1730), - [anon_sym___nullable] = ACTIONS(1730), - [anon_sym___nonnull] = ACTIONS(1730), - [anon_sym___strong] = ACTIONS(1730), - [anon_sym___weak] = ACTIONS(1730), - [anon_sym___bridge] = ACTIONS(1730), - [anon_sym___bridge_transfer] = ACTIONS(1730), - [anon_sym___bridge_retained] = ACTIONS(1730), - [anon_sym___unsafe_unretained] = ACTIONS(1730), - [anon_sym___block] = ACTIONS(1730), - [anon_sym___kindof] = ACTIONS(1730), - [anon_sym___unused] = ACTIONS(1730), - [anon_sym__Complex] = ACTIONS(1730), - [anon_sym___complex] = ACTIONS(1730), - [anon_sym_IBOutlet] = ACTIONS(1730), - [anon_sym_IBInspectable] = ACTIONS(1730), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1730), - [anon_sym_signed] = ACTIONS(1730), - [anon_sym_unsigned] = ACTIONS(1730), - [anon_sym_long] = ACTIONS(1730), - [anon_sym_short] = ACTIONS(1730), - [sym_primitive_type] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_NS_ENUM] = ACTIONS(1730), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1730), - [anon_sym_NS_OPTIONS] = ACTIONS(1730), - [anon_sym_struct] = ACTIONS(1730), - [anon_sym_union] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_switch] = ACTIONS(1730), - [anon_sym_case] = ACTIONS(1730), - [anon_sym_default] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_do] = ACTIONS(1730), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_goto] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1732), - [anon_sym_sizeof] = ACTIONS(1730), - [sym_number_literal] = ACTIONS(1732), - [anon_sym_L_SQUOTE] = ACTIONS(1732), - [anon_sym_u_SQUOTE] = ACTIONS(1732), - [anon_sym_U_SQUOTE] = ACTIONS(1732), - [anon_sym_u8_SQUOTE] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1732), - [anon_sym_L_DQUOTE] = ACTIONS(1732), - [anon_sym_u_DQUOTE] = ACTIONS(1732), - [anon_sym_U_DQUOTE] = ACTIONS(1732), - [anon_sym_u8_DQUOTE] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1732), - [sym_true] = ACTIONS(1730), - [sym_false] = ACTIONS(1730), - [sym_null] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1732), - [anon_sym_ATimport] = ACTIONS(1732), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1730), - [anon_sym_ATcompatibility_alias] = ACTIONS(1732), - [anon_sym_ATprotocol] = ACTIONS(1732), - [anon_sym_ATclass] = ACTIONS(1732), - [anon_sym_ATinterface] = ACTIONS(1732), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1730), - [sym_method_attribute_specifier] = ACTIONS(1730), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1730), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE] = ACTIONS(1730), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_API_AVAILABLE] = ACTIONS(1730), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_API_DEPRECATED] = ACTIONS(1730), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1730), - [anon_sym___deprecated_msg] = ACTIONS(1730), - [anon_sym___deprecated_enum_msg] = ACTIONS(1730), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1730), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1730), - [anon_sym_ATimplementation] = ACTIONS(1732), - [anon_sym_typeof] = ACTIONS(1730), - [anon_sym___typeof] = ACTIONS(1730), - [anon_sym___typeof__] = ACTIONS(1730), - [sym_self] = ACTIONS(1730), - [sym_super] = ACTIONS(1730), - [sym_nil] = ACTIONS(1730), - [sym_id] = ACTIONS(1730), - [sym_instancetype] = ACTIONS(1730), - [sym_Class] = ACTIONS(1730), - [sym_SEL] = ACTIONS(1730), - [sym_IMP] = ACTIONS(1730), - [sym_BOOL] = ACTIONS(1730), - [sym_auto] = ACTIONS(1730), - [anon_sym_ATautoreleasepool] = ACTIONS(1732), - [anon_sym_ATsynchronized] = ACTIONS(1732), - [anon_sym_ATtry] = ACTIONS(1732), - [anon_sym_ATthrow] = ACTIONS(1732), - [anon_sym_ATselector] = ACTIONS(1732), - [anon_sym_ATencode] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1730), - [sym_YES] = ACTIONS(1730), - [sym_NO] = ACTIONS(1730), - [anon_sym___builtin_available] = ACTIONS(1730), - [anon_sym_ATavailable] = ACTIONS(1732), - [anon_sym_va_arg] = ACTIONS(1730), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1063] = { - [ts_builtin_sym_end] = ACTIONS(1732), - [sym_identifier] = ACTIONS(1730), - [aux_sym_preproc_include_token1] = ACTIONS(1732), - [aux_sym_preproc_def_token1] = ACTIONS(1732), - [aux_sym_preproc_if_token1] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1730), - [anon_sym_LPAREN2] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_CARET] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_typedef] = ACTIONS(1730), - [anon_sym_extern] = ACTIONS(1730), - [anon_sym___attribute] = ACTIONS(1730), - [anon_sym___attribute__] = ACTIONS(1730), - [anon_sym___declspec] = ACTIONS(1730), - [anon_sym___cdecl] = ACTIONS(1730), - [anon_sym___clrcall] = ACTIONS(1730), - [anon_sym___stdcall] = ACTIONS(1730), - [anon_sym___fastcall] = ACTIONS(1730), - [anon_sym___thiscall] = ACTIONS(1730), - [anon_sym___vectorcall] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_RBRACE] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_static] = ACTIONS(1730), - [anon_sym_auto] = ACTIONS(1730), - [anon_sym_register] = ACTIONS(1730), - [anon_sym_inline] = ACTIONS(1730), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1730), - [anon_sym_const] = ACTIONS(1730), - [anon_sym_volatile] = ACTIONS(1730), - [anon_sym_restrict] = ACTIONS(1730), - [anon_sym__Atomic] = ACTIONS(1730), - [anon_sym_in] = ACTIONS(1730), - [anon_sym_out] = ACTIONS(1730), - [anon_sym_inout] = ACTIONS(1730), - [anon_sym_bycopy] = ACTIONS(1730), - [anon_sym_byref] = ACTIONS(1730), - [anon_sym_oneway] = ACTIONS(1730), - [anon_sym__Nullable] = ACTIONS(1730), - [anon_sym__Nonnull] = ACTIONS(1730), - [anon_sym__Nullable_result] = ACTIONS(1730), - [anon_sym__Null_unspecified] = ACTIONS(1730), - [anon_sym___autoreleasing] = ACTIONS(1730), - [anon_sym___nullable] = ACTIONS(1730), - [anon_sym___nonnull] = ACTIONS(1730), - [anon_sym___strong] = ACTIONS(1730), - [anon_sym___weak] = ACTIONS(1730), - [anon_sym___bridge] = ACTIONS(1730), - [anon_sym___bridge_transfer] = ACTIONS(1730), - [anon_sym___bridge_retained] = ACTIONS(1730), - [anon_sym___unsafe_unretained] = ACTIONS(1730), - [anon_sym___block] = ACTIONS(1730), - [anon_sym___kindof] = ACTIONS(1730), - [anon_sym___unused] = ACTIONS(1730), - [anon_sym__Complex] = ACTIONS(1730), - [anon_sym___complex] = ACTIONS(1730), - [anon_sym_IBOutlet] = ACTIONS(1730), - [anon_sym_IBInspectable] = ACTIONS(1730), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1730), - [anon_sym_signed] = ACTIONS(1730), - [anon_sym_unsigned] = ACTIONS(1730), - [anon_sym_long] = ACTIONS(1730), - [anon_sym_short] = ACTIONS(1730), - [sym_primitive_type] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_NS_ENUM] = ACTIONS(1730), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1730), - [anon_sym_NS_OPTIONS] = ACTIONS(1730), - [anon_sym_struct] = ACTIONS(1730), - [anon_sym_union] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_switch] = ACTIONS(1730), - [anon_sym_case] = ACTIONS(1730), - [anon_sym_default] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_do] = ACTIONS(1730), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_goto] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1732), - [anon_sym_sizeof] = ACTIONS(1730), - [sym_number_literal] = ACTIONS(1732), - [anon_sym_L_SQUOTE] = ACTIONS(1732), - [anon_sym_u_SQUOTE] = ACTIONS(1732), - [anon_sym_U_SQUOTE] = ACTIONS(1732), - [anon_sym_u8_SQUOTE] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1732), - [anon_sym_L_DQUOTE] = ACTIONS(1732), - [anon_sym_u_DQUOTE] = ACTIONS(1732), - [anon_sym_U_DQUOTE] = ACTIONS(1732), - [anon_sym_u8_DQUOTE] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1732), - [sym_true] = ACTIONS(1730), - [sym_false] = ACTIONS(1730), - [sym_null] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1732), - [anon_sym_ATimport] = ACTIONS(1732), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1730), - [anon_sym_ATcompatibility_alias] = ACTIONS(1732), - [anon_sym_ATprotocol] = ACTIONS(1732), - [anon_sym_ATclass] = ACTIONS(1732), - [anon_sym_ATinterface] = ACTIONS(1732), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1730), - [sym_method_attribute_specifier] = ACTIONS(1730), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1730), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE] = ACTIONS(1730), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_API_AVAILABLE] = ACTIONS(1730), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_API_DEPRECATED] = ACTIONS(1730), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1730), - [anon_sym___deprecated_msg] = ACTIONS(1730), - [anon_sym___deprecated_enum_msg] = ACTIONS(1730), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1730), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1730), - [anon_sym_ATimplementation] = ACTIONS(1732), - [anon_sym_typeof] = ACTIONS(1730), - [anon_sym___typeof] = ACTIONS(1730), - [anon_sym___typeof__] = ACTIONS(1730), - [sym_self] = ACTIONS(1730), - [sym_super] = ACTIONS(1730), - [sym_nil] = ACTIONS(1730), - [sym_id] = ACTIONS(1730), - [sym_instancetype] = ACTIONS(1730), - [sym_Class] = ACTIONS(1730), - [sym_SEL] = ACTIONS(1730), - [sym_IMP] = ACTIONS(1730), - [sym_BOOL] = ACTIONS(1730), - [sym_auto] = ACTIONS(1730), - [anon_sym_ATautoreleasepool] = ACTIONS(1732), - [anon_sym_ATsynchronized] = ACTIONS(1732), - [anon_sym_ATtry] = ACTIONS(1732), - [anon_sym_ATthrow] = ACTIONS(1732), - [anon_sym_ATselector] = ACTIONS(1732), - [anon_sym_ATencode] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1730), - [sym_YES] = ACTIONS(1730), - [sym_NO] = ACTIONS(1730), - [anon_sym___builtin_available] = ACTIONS(1730), - [anon_sym_ATavailable] = ACTIONS(1732), - [anon_sym_va_arg] = ACTIONS(1730), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1064] = { - [ts_builtin_sym_end] = ACTIONS(1996), - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_include_token1] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym___attribute] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym___declspec] = ACTIONS(1994), - [anon_sym___cdecl] = ACTIONS(1994), - [anon_sym___clrcall] = ACTIONS(1994), - [anon_sym___stdcall] = ACTIONS(1994), - [anon_sym___fastcall] = ACTIONS(1994), - [anon_sym___thiscall] = ACTIONS(1994), - [anon_sym___vectorcall] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_RBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_in] = ACTIONS(1994), - [anon_sym_out] = ACTIONS(1994), - [anon_sym_inout] = ACTIONS(1994), - [anon_sym_bycopy] = ACTIONS(1994), - [anon_sym_byref] = ACTIONS(1994), - [anon_sym_oneway] = ACTIONS(1994), - [anon_sym__Nullable] = ACTIONS(1994), - [anon_sym__Nonnull] = ACTIONS(1994), - [anon_sym__Nullable_result] = ACTIONS(1994), - [anon_sym__Null_unspecified] = ACTIONS(1994), - [anon_sym___autoreleasing] = ACTIONS(1994), - [anon_sym___nullable] = ACTIONS(1994), - [anon_sym___nonnull] = ACTIONS(1994), - [anon_sym___strong] = ACTIONS(1994), - [anon_sym___weak] = ACTIONS(1994), - [anon_sym___bridge] = ACTIONS(1994), - [anon_sym___bridge_transfer] = ACTIONS(1994), - [anon_sym___bridge_retained] = ACTIONS(1994), - [anon_sym___unsafe_unretained] = ACTIONS(1994), - [anon_sym___block] = ACTIONS(1994), - [anon_sym___kindof] = ACTIONS(1994), - [anon_sym___unused] = ACTIONS(1994), - [anon_sym__Complex] = ACTIONS(1994), - [anon_sym___complex] = ACTIONS(1994), - [anon_sym_IBOutlet] = ACTIONS(1994), - [anon_sym_IBInspectable] = ACTIONS(1994), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_NS_ENUM] = ACTIONS(1994), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1994), - [anon_sym_NS_OPTIONS] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_case] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym_u_SQUOTE] = ACTIONS(1996), - [anon_sym_U_SQUOTE] = ACTIONS(1996), - [anon_sym_u8_SQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_u_DQUOTE] = ACTIONS(1996), - [anon_sym_U_DQUOTE] = ACTIONS(1996), - [anon_sym_u8_DQUOTE] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1996), - [anon_sym_ATimport] = ACTIONS(1996), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1994), - [anon_sym_ATcompatibility_alias] = ACTIONS(1996), - [anon_sym_ATprotocol] = ACTIONS(1996), - [anon_sym_ATclass] = ACTIONS(1996), - [anon_sym_ATinterface] = ACTIONS(1996), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1994), - [sym_method_attribute_specifier] = ACTIONS(1994), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1994), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE] = ACTIONS(1994), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_API_AVAILABLE] = ACTIONS(1994), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_API_DEPRECATED] = ACTIONS(1994), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1994), - [anon_sym___deprecated_msg] = ACTIONS(1994), - [anon_sym___deprecated_enum_msg] = ACTIONS(1994), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1994), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1994), - [anon_sym_ATimplementation] = ACTIONS(1996), - [anon_sym_typeof] = ACTIONS(1994), - [anon_sym___typeof] = ACTIONS(1994), - [anon_sym___typeof__] = ACTIONS(1994), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_nil] = ACTIONS(1994), - [sym_id] = ACTIONS(1994), - [sym_instancetype] = ACTIONS(1994), - [sym_Class] = ACTIONS(1994), - [sym_SEL] = ACTIONS(1994), - [sym_IMP] = ACTIONS(1994), - [sym_BOOL] = ACTIONS(1994), - [sym_auto] = ACTIONS(1994), - [anon_sym_ATautoreleasepool] = ACTIONS(1996), - [anon_sym_ATsynchronized] = ACTIONS(1996), - [anon_sym_ATtry] = ACTIONS(1996), - [anon_sym_ATthrow] = ACTIONS(1996), - [anon_sym_ATselector] = ACTIONS(1996), - [anon_sym_ATencode] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1994), - [sym_YES] = ACTIONS(1994), - [sym_NO] = ACTIONS(1994), - [anon_sym___builtin_available] = ACTIONS(1994), - [anon_sym_ATavailable] = ACTIONS(1996), - [anon_sym_va_arg] = ACTIONS(1994), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1065] = { - [ts_builtin_sym_end] = ACTIONS(1996), - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_include_token1] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym___attribute] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym___declspec] = ACTIONS(1994), - [anon_sym___cdecl] = ACTIONS(1994), - [anon_sym___clrcall] = ACTIONS(1994), - [anon_sym___stdcall] = ACTIONS(1994), - [anon_sym___fastcall] = ACTIONS(1994), - [anon_sym___thiscall] = ACTIONS(1994), - [anon_sym___vectorcall] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_RBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_in] = ACTIONS(1994), - [anon_sym_out] = ACTIONS(1994), - [anon_sym_inout] = ACTIONS(1994), - [anon_sym_bycopy] = ACTIONS(1994), - [anon_sym_byref] = ACTIONS(1994), - [anon_sym_oneway] = ACTIONS(1994), - [anon_sym__Nullable] = ACTIONS(1994), - [anon_sym__Nonnull] = ACTIONS(1994), - [anon_sym__Nullable_result] = ACTIONS(1994), - [anon_sym__Null_unspecified] = ACTIONS(1994), - [anon_sym___autoreleasing] = ACTIONS(1994), - [anon_sym___nullable] = ACTIONS(1994), - [anon_sym___nonnull] = ACTIONS(1994), - [anon_sym___strong] = ACTIONS(1994), - [anon_sym___weak] = ACTIONS(1994), - [anon_sym___bridge] = ACTIONS(1994), - [anon_sym___bridge_transfer] = ACTIONS(1994), - [anon_sym___bridge_retained] = ACTIONS(1994), - [anon_sym___unsafe_unretained] = ACTIONS(1994), - [anon_sym___block] = ACTIONS(1994), - [anon_sym___kindof] = ACTIONS(1994), - [anon_sym___unused] = ACTIONS(1994), - [anon_sym__Complex] = ACTIONS(1994), - [anon_sym___complex] = ACTIONS(1994), - [anon_sym_IBOutlet] = ACTIONS(1994), - [anon_sym_IBInspectable] = ACTIONS(1994), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_NS_ENUM] = ACTIONS(1994), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1994), - [anon_sym_NS_OPTIONS] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_case] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym_u_SQUOTE] = ACTIONS(1996), - [anon_sym_U_SQUOTE] = ACTIONS(1996), - [anon_sym_u8_SQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_u_DQUOTE] = ACTIONS(1996), - [anon_sym_U_DQUOTE] = ACTIONS(1996), - [anon_sym_u8_DQUOTE] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1996), - [anon_sym_ATimport] = ACTIONS(1996), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1994), - [anon_sym_ATcompatibility_alias] = ACTIONS(1996), - [anon_sym_ATprotocol] = ACTIONS(1996), - [anon_sym_ATclass] = ACTIONS(1996), - [anon_sym_ATinterface] = ACTIONS(1996), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1994), - [sym_method_attribute_specifier] = ACTIONS(1994), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1994), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE] = ACTIONS(1994), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_API_AVAILABLE] = ACTIONS(1994), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_API_DEPRECATED] = ACTIONS(1994), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1994), - [anon_sym___deprecated_msg] = ACTIONS(1994), - [anon_sym___deprecated_enum_msg] = ACTIONS(1994), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1994), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1994), - [anon_sym_ATimplementation] = ACTIONS(1996), - [anon_sym_typeof] = ACTIONS(1994), - [anon_sym___typeof] = ACTIONS(1994), - [anon_sym___typeof__] = ACTIONS(1994), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_nil] = ACTIONS(1994), - [sym_id] = ACTIONS(1994), - [sym_instancetype] = ACTIONS(1994), - [sym_Class] = ACTIONS(1994), - [sym_SEL] = ACTIONS(1994), - [sym_IMP] = ACTIONS(1994), - [sym_BOOL] = ACTIONS(1994), - [sym_auto] = ACTIONS(1994), - [anon_sym_ATautoreleasepool] = ACTIONS(1996), - [anon_sym_ATsynchronized] = ACTIONS(1996), - [anon_sym_ATtry] = ACTIONS(1996), - [anon_sym_ATthrow] = ACTIONS(1996), - [anon_sym_ATselector] = ACTIONS(1996), - [anon_sym_ATencode] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1994), - [sym_YES] = ACTIONS(1994), - [sym_NO] = ACTIONS(1994), - [anon_sym___builtin_available] = ACTIONS(1994), - [anon_sym_ATavailable] = ACTIONS(1996), - [anon_sym_va_arg] = ACTIONS(1994), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1066] = { - [ts_builtin_sym_end] = ACTIONS(2136), - [sym_identifier] = ACTIONS(2134), - [aux_sym_preproc_include_token1] = ACTIONS(2136), - [aux_sym_preproc_def_token1] = ACTIONS(2136), - [aux_sym_preproc_if_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), - [anon_sym_LPAREN2] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_typedef] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym___attribute] = ACTIONS(2134), - [anon_sym___attribute__] = ACTIONS(2134), - [anon_sym___declspec] = ACTIONS(2134), - [anon_sym___cdecl] = ACTIONS(2134), - [anon_sym___clrcall] = ACTIONS(2134), - [anon_sym___stdcall] = ACTIONS(2134), - [anon_sym___fastcall] = ACTIONS(2134), - [anon_sym___thiscall] = ACTIONS(2134), - [anon_sym___vectorcall] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_auto] = ACTIONS(2134), - [anon_sym_register] = ACTIONS(2134), - [anon_sym_inline] = ACTIONS(2134), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [anon_sym_volatile] = ACTIONS(2134), - [anon_sym_restrict] = ACTIONS(2134), - [anon_sym__Atomic] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [anon_sym_out] = ACTIONS(2134), - [anon_sym_inout] = ACTIONS(2134), - [anon_sym_bycopy] = ACTIONS(2134), - [anon_sym_byref] = ACTIONS(2134), - [anon_sym_oneway] = ACTIONS(2134), - [anon_sym__Nullable] = ACTIONS(2134), - [anon_sym__Nonnull] = ACTIONS(2134), - [anon_sym__Nullable_result] = ACTIONS(2134), - [anon_sym__Null_unspecified] = ACTIONS(2134), - [anon_sym___autoreleasing] = ACTIONS(2134), - [anon_sym___nullable] = ACTIONS(2134), - [anon_sym___nonnull] = ACTIONS(2134), - [anon_sym___strong] = ACTIONS(2134), - [anon_sym___weak] = ACTIONS(2134), - [anon_sym___bridge] = ACTIONS(2134), - [anon_sym___bridge_transfer] = ACTIONS(2134), - [anon_sym___bridge_retained] = ACTIONS(2134), - [anon_sym___unsafe_unretained] = ACTIONS(2134), - [anon_sym___block] = ACTIONS(2134), - [anon_sym___kindof] = ACTIONS(2134), - [anon_sym___unused] = ACTIONS(2134), - [anon_sym__Complex] = ACTIONS(2134), - [anon_sym___complex] = ACTIONS(2134), - [anon_sym_IBOutlet] = ACTIONS(2134), - [anon_sym_IBInspectable] = ACTIONS(2134), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2134), - [anon_sym_signed] = ACTIONS(2134), - [anon_sym_unsigned] = ACTIONS(2134), - [anon_sym_long] = ACTIONS(2134), - [anon_sym_short] = ACTIONS(2134), - [sym_primitive_type] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_NS_ENUM] = ACTIONS(2134), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2134), - [anon_sym_NS_OPTIONS] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(2134), - [anon_sym_union] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_switch] = ACTIONS(2134), - [anon_sym_case] = ACTIONS(2134), - [anon_sym_default] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_goto] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_PLUS_PLUS] = ACTIONS(2136), - [anon_sym_sizeof] = ACTIONS(2134), - [sym_number_literal] = ACTIONS(2136), - [anon_sym_L_SQUOTE] = ACTIONS(2136), - [anon_sym_u_SQUOTE] = ACTIONS(2136), - [anon_sym_U_SQUOTE] = ACTIONS(2136), - [anon_sym_u8_SQUOTE] = ACTIONS(2136), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_L_DQUOTE] = ACTIONS(2136), - [anon_sym_u_DQUOTE] = ACTIONS(2136), - [anon_sym_U_DQUOTE] = ACTIONS(2136), - [anon_sym_u8_DQUOTE] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [sym_null] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2136), - [anon_sym_ATimport] = ACTIONS(2136), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2134), - [anon_sym_ATcompatibility_alias] = ACTIONS(2136), - [anon_sym_ATprotocol] = ACTIONS(2136), - [anon_sym_ATclass] = ACTIONS(2136), - [anon_sym_ATinterface] = ACTIONS(2136), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2134), - [sym_method_attribute_specifier] = ACTIONS(2134), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2134), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE] = ACTIONS(2134), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_API_AVAILABLE] = ACTIONS(2134), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_API_DEPRECATED] = ACTIONS(2134), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2134), - [anon_sym___deprecated_msg] = ACTIONS(2134), - [anon_sym___deprecated_enum_msg] = ACTIONS(2134), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2134), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2134), - [anon_sym_ATimplementation] = ACTIONS(2136), - [anon_sym_typeof] = ACTIONS(2134), - [anon_sym___typeof] = ACTIONS(2134), - [anon_sym___typeof__] = ACTIONS(2134), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_nil] = ACTIONS(2134), - [sym_id] = ACTIONS(2134), - [sym_instancetype] = ACTIONS(2134), - [sym_Class] = ACTIONS(2134), - [sym_SEL] = ACTIONS(2134), - [sym_IMP] = ACTIONS(2134), - [sym_BOOL] = ACTIONS(2134), - [sym_auto] = ACTIONS(2134), - [anon_sym_ATautoreleasepool] = ACTIONS(2136), - [anon_sym_ATsynchronized] = ACTIONS(2136), - [anon_sym_ATtry] = ACTIONS(2136), - [anon_sym_ATthrow] = ACTIONS(2136), - [anon_sym_ATselector] = ACTIONS(2136), - [anon_sym_ATencode] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2134), - [sym_YES] = ACTIONS(2134), - [sym_NO] = ACTIONS(2134), - [anon_sym___builtin_available] = ACTIONS(2134), - [anon_sym_ATavailable] = ACTIONS(2136), - [anon_sym_va_arg] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1067] = { - [ts_builtin_sym_end] = ACTIONS(1996), - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_include_token1] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym___attribute] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym___declspec] = ACTIONS(1994), - [anon_sym___cdecl] = ACTIONS(1994), - [anon_sym___clrcall] = ACTIONS(1994), - [anon_sym___stdcall] = ACTIONS(1994), - [anon_sym___fastcall] = ACTIONS(1994), - [anon_sym___thiscall] = ACTIONS(1994), - [anon_sym___vectorcall] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_RBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_in] = ACTIONS(1994), - [anon_sym_out] = ACTIONS(1994), - [anon_sym_inout] = ACTIONS(1994), - [anon_sym_bycopy] = ACTIONS(1994), - [anon_sym_byref] = ACTIONS(1994), - [anon_sym_oneway] = ACTIONS(1994), - [anon_sym__Nullable] = ACTIONS(1994), - [anon_sym__Nonnull] = ACTIONS(1994), - [anon_sym__Nullable_result] = ACTIONS(1994), - [anon_sym__Null_unspecified] = ACTIONS(1994), - [anon_sym___autoreleasing] = ACTIONS(1994), - [anon_sym___nullable] = ACTIONS(1994), - [anon_sym___nonnull] = ACTIONS(1994), - [anon_sym___strong] = ACTIONS(1994), - [anon_sym___weak] = ACTIONS(1994), - [anon_sym___bridge] = ACTIONS(1994), - [anon_sym___bridge_transfer] = ACTIONS(1994), - [anon_sym___bridge_retained] = ACTIONS(1994), - [anon_sym___unsafe_unretained] = ACTIONS(1994), - [anon_sym___block] = ACTIONS(1994), - [anon_sym___kindof] = ACTIONS(1994), - [anon_sym___unused] = ACTIONS(1994), - [anon_sym__Complex] = ACTIONS(1994), - [anon_sym___complex] = ACTIONS(1994), - [anon_sym_IBOutlet] = ACTIONS(1994), - [anon_sym_IBInspectable] = ACTIONS(1994), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_NS_ENUM] = ACTIONS(1994), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1994), - [anon_sym_NS_OPTIONS] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_case] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym_u_SQUOTE] = ACTIONS(1996), - [anon_sym_U_SQUOTE] = ACTIONS(1996), - [anon_sym_u8_SQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_u_DQUOTE] = ACTIONS(1996), - [anon_sym_U_DQUOTE] = ACTIONS(1996), - [anon_sym_u8_DQUOTE] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1996), - [anon_sym_ATimport] = ACTIONS(1996), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1994), - [anon_sym_ATcompatibility_alias] = ACTIONS(1996), - [anon_sym_ATprotocol] = ACTIONS(1996), - [anon_sym_ATclass] = ACTIONS(1996), - [anon_sym_ATinterface] = ACTIONS(1996), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1994), - [sym_method_attribute_specifier] = ACTIONS(1994), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1994), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE] = ACTIONS(1994), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_API_AVAILABLE] = ACTIONS(1994), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_API_DEPRECATED] = ACTIONS(1994), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1994), - [anon_sym___deprecated_msg] = ACTIONS(1994), - [anon_sym___deprecated_enum_msg] = ACTIONS(1994), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1994), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1994), - [anon_sym_ATimplementation] = ACTIONS(1996), - [anon_sym_typeof] = ACTIONS(1994), - [anon_sym___typeof] = ACTIONS(1994), - [anon_sym___typeof__] = ACTIONS(1994), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_nil] = ACTIONS(1994), - [sym_id] = ACTIONS(1994), - [sym_instancetype] = ACTIONS(1994), - [sym_Class] = ACTIONS(1994), - [sym_SEL] = ACTIONS(1994), - [sym_IMP] = ACTIONS(1994), - [sym_BOOL] = ACTIONS(1994), - [sym_auto] = ACTIONS(1994), - [anon_sym_ATautoreleasepool] = ACTIONS(1996), - [anon_sym_ATsynchronized] = ACTIONS(1996), - [anon_sym_ATtry] = ACTIONS(1996), - [anon_sym_ATthrow] = ACTIONS(1996), - [anon_sym_ATselector] = ACTIONS(1996), - [anon_sym_ATencode] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1994), - [sym_YES] = ACTIONS(1994), - [sym_NO] = ACTIONS(1994), - [anon_sym___builtin_available] = ACTIONS(1994), - [anon_sym_ATavailable] = ACTIONS(1996), - [anon_sym_va_arg] = ACTIONS(1994), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1068] = { - [ts_builtin_sym_end] = ACTIONS(1996), - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_include_token1] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym___attribute] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym___declspec] = ACTIONS(1994), - [anon_sym___cdecl] = ACTIONS(1994), - [anon_sym___clrcall] = ACTIONS(1994), - [anon_sym___stdcall] = ACTIONS(1994), - [anon_sym___fastcall] = ACTIONS(1994), - [anon_sym___thiscall] = ACTIONS(1994), - [anon_sym___vectorcall] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_RBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_in] = ACTIONS(1994), - [anon_sym_out] = ACTIONS(1994), - [anon_sym_inout] = ACTIONS(1994), - [anon_sym_bycopy] = ACTIONS(1994), - [anon_sym_byref] = ACTIONS(1994), - [anon_sym_oneway] = ACTIONS(1994), - [anon_sym__Nullable] = ACTIONS(1994), - [anon_sym__Nonnull] = ACTIONS(1994), - [anon_sym__Nullable_result] = ACTIONS(1994), - [anon_sym__Null_unspecified] = ACTIONS(1994), - [anon_sym___autoreleasing] = ACTIONS(1994), - [anon_sym___nullable] = ACTIONS(1994), - [anon_sym___nonnull] = ACTIONS(1994), - [anon_sym___strong] = ACTIONS(1994), - [anon_sym___weak] = ACTIONS(1994), - [anon_sym___bridge] = ACTIONS(1994), - [anon_sym___bridge_transfer] = ACTIONS(1994), - [anon_sym___bridge_retained] = ACTIONS(1994), - [anon_sym___unsafe_unretained] = ACTIONS(1994), - [anon_sym___block] = ACTIONS(1994), - [anon_sym___kindof] = ACTIONS(1994), - [anon_sym___unused] = ACTIONS(1994), - [anon_sym__Complex] = ACTIONS(1994), - [anon_sym___complex] = ACTIONS(1994), - [anon_sym_IBOutlet] = ACTIONS(1994), - [anon_sym_IBInspectable] = ACTIONS(1994), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_NS_ENUM] = ACTIONS(1994), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1994), - [anon_sym_NS_OPTIONS] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_case] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym_u_SQUOTE] = ACTIONS(1996), - [anon_sym_U_SQUOTE] = ACTIONS(1996), - [anon_sym_u8_SQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_u_DQUOTE] = ACTIONS(1996), - [anon_sym_U_DQUOTE] = ACTIONS(1996), - [anon_sym_u8_DQUOTE] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1996), - [anon_sym_ATimport] = ACTIONS(1996), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1994), - [anon_sym_ATcompatibility_alias] = ACTIONS(1996), - [anon_sym_ATprotocol] = ACTIONS(1996), - [anon_sym_ATclass] = ACTIONS(1996), - [anon_sym_ATinterface] = ACTIONS(1996), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1994), - [sym_method_attribute_specifier] = ACTIONS(1994), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1994), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE] = ACTIONS(1994), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_API_AVAILABLE] = ACTIONS(1994), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_API_DEPRECATED] = ACTIONS(1994), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1994), - [anon_sym___deprecated_msg] = ACTIONS(1994), - [anon_sym___deprecated_enum_msg] = ACTIONS(1994), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1994), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1994), - [anon_sym_ATimplementation] = ACTIONS(1996), - [anon_sym_typeof] = ACTIONS(1994), - [anon_sym___typeof] = ACTIONS(1994), - [anon_sym___typeof__] = ACTIONS(1994), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_nil] = ACTIONS(1994), - [sym_id] = ACTIONS(1994), - [sym_instancetype] = ACTIONS(1994), - [sym_Class] = ACTIONS(1994), - [sym_SEL] = ACTIONS(1994), - [sym_IMP] = ACTIONS(1994), - [sym_BOOL] = ACTIONS(1994), - [sym_auto] = ACTIONS(1994), - [anon_sym_ATautoreleasepool] = ACTIONS(1996), - [anon_sym_ATsynchronized] = ACTIONS(1996), - [anon_sym_ATtry] = ACTIONS(1996), - [anon_sym_ATthrow] = ACTIONS(1996), - [anon_sym_ATselector] = ACTIONS(1996), - [anon_sym_ATencode] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1994), - [sym_YES] = ACTIONS(1994), - [sym_NO] = ACTIONS(1994), - [anon_sym___builtin_available] = ACTIONS(1994), - [anon_sym_ATavailable] = ACTIONS(1996), - [anon_sym_va_arg] = ACTIONS(1994), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1069] = { - [ts_builtin_sym_end] = ACTIONS(2012), - [sym_identifier] = ACTIONS(2010), - [aux_sym_preproc_include_token1] = ACTIONS(2012), - [aux_sym_preproc_def_token1] = ACTIONS(2012), - [aux_sym_preproc_if_token1] = ACTIONS(2010), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2010), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2010), - [anon_sym_LPAREN2] = ACTIONS(2012), - [anon_sym_BANG] = ACTIONS(2012), - [anon_sym_TILDE] = ACTIONS(2012), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_PLUS] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2012), - [anon_sym_CARET] = ACTIONS(2012), - [anon_sym_AMP] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2012), - [anon_sym_typedef] = ACTIONS(2010), - [anon_sym_extern] = ACTIONS(2010), - [anon_sym___attribute] = ACTIONS(2010), - [anon_sym___attribute__] = ACTIONS(2010), - [anon_sym___declspec] = ACTIONS(2010), - [anon_sym___cdecl] = ACTIONS(2010), - [anon_sym___clrcall] = ACTIONS(2010), - [anon_sym___stdcall] = ACTIONS(2010), - [anon_sym___fastcall] = ACTIONS(2010), - [anon_sym___thiscall] = ACTIONS(2010), - [anon_sym___vectorcall] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2012), - [anon_sym_RBRACE] = ACTIONS(2012), - [anon_sym_LBRACK] = ACTIONS(2012), - [anon_sym_static] = ACTIONS(2010), - [anon_sym_auto] = ACTIONS(2010), - [anon_sym_register] = ACTIONS(2010), - [anon_sym_inline] = ACTIONS(2010), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2010), - [anon_sym_const] = ACTIONS(2010), - [anon_sym_volatile] = ACTIONS(2010), - [anon_sym_restrict] = ACTIONS(2010), - [anon_sym__Atomic] = ACTIONS(2010), - [anon_sym_in] = ACTIONS(2010), - [anon_sym_out] = ACTIONS(2010), - [anon_sym_inout] = ACTIONS(2010), - [anon_sym_bycopy] = ACTIONS(2010), - [anon_sym_byref] = ACTIONS(2010), - [anon_sym_oneway] = ACTIONS(2010), - [anon_sym__Nullable] = ACTIONS(2010), - [anon_sym__Nonnull] = ACTIONS(2010), - [anon_sym__Nullable_result] = ACTIONS(2010), - [anon_sym__Null_unspecified] = ACTIONS(2010), - [anon_sym___autoreleasing] = ACTIONS(2010), - [anon_sym___nullable] = ACTIONS(2010), - [anon_sym___nonnull] = ACTIONS(2010), - [anon_sym___strong] = ACTIONS(2010), - [anon_sym___weak] = ACTIONS(2010), - [anon_sym___bridge] = ACTIONS(2010), - [anon_sym___bridge_transfer] = ACTIONS(2010), - [anon_sym___bridge_retained] = ACTIONS(2010), - [anon_sym___unsafe_unretained] = ACTIONS(2010), - [anon_sym___block] = ACTIONS(2010), - [anon_sym___kindof] = ACTIONS(2010), - [anon_sym___unused] = ACTIONS(2010), - [anon_sym__Complex] = ACTIONS(2010), - [anon_sym___complex] = ACTIONS(2010), - [anon_sym_IBOutlet] = ACTIONS(2010), - [anon_sym_IBInspectable] = ACTIONS(2010), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2010), - [anon_sym_signed] = ACTIONS(2010), - [anon_sym_unsigned] = ACTIONS(2010), - [anon_sym_long] = ACTIONS(2010), - [anon_sym_short] = ACTIONS(2010), - [sym_primitive_type] = ACTIONS(2010), - [anon_sym_enum] = ACTIONS(2010), - [anon_sym_NS_ENUM] = ACTIONS(2010), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2010), - [anon_sym_NS_OPTIONS] = ACTIONS(2010), - [anon_sym_struct] = ACTIONS(2010), - [anon_sym_union] = ACTIONS(2010), - [anon_sym_if] = ACTIONS(2010), - [anon_sym_switch] = ACTIONS(2010), - [anon_sym_case] = ACTIONS(2010), - [anon_sym_default] = ACTIONS(2010), - [anon_sym_while] = ACTIONS(2010), - [anon_sym_do] = ACTIONS(2010), - [anon_sym_for] = ACTIONS(2010), - [anon_sym_return] = ACTIONS(2010), - [anon_sym_break] = ACTIONS(2010), - [anon_sym_continue] = ACTIONS(2010), - [anon_sym_goto] = ACTIONS(2010), - [anon_sym_DASH_DASH] = ACTIONS(2012), - [anon_sym_PLUS_PLUS] = ACTIONS(2012), - [anon_sym_sizeof] = ACTIONS(2010), - [sym_number_literal] = ACTIONS(2012), - [anon_sym_L_SQUOTE] = ACTIONS(2012), - [anon_sym_u_SQUOTE] = ACTIONS(2012), - [anon_sym_U_SQUOTE] = ACTIONS(2012), - [anon_sym_u8_SQUOTE] = ACTIONS(2012), - [anon_sym_SQUOTE] = ACTIONS(2012), - [anon_sym_L_DQUOTE] = ACTIONS(2012), - [anon_sym_u_DQUOTE] = ACTIONS(2012), - [anon_sym_U_DQUOTE] = ACTIONS(2012), - [anon_sym_u8_DQUOTE] = ACTIONS(2012), - [anon_sym_DQUOTE] = ACTIONS(2012), - [sym_true] = ACTIONS(2010), - [sym_false] = ACTIONS(2010), - [sym_null] = ACTIONS(2010), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2012), - [anon_sym_ATimport] = ACTIONS(2012), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2010), - [anon_sym_ATcompatibility_alias] = ACTIONS(2012), - [anon_sym_ATprotocol] = ACTIONS(2012), - [anon_sym_ATclass] = ACTIONS(2012), - [anon_sym_ATinterface] = ACTIONS(2012), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2010), - [sym_method_attribute_specifier] = ACTIONS(2010), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2010), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2010), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2010), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2010), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2010), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2010), - [anon_sym_NS_AVAILABLE] = ACTIONS(2010), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2010), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2010), - [anon_sym_API_AVAILABLE] = ACTIONS(2010), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2010), - [anon_sym_API_DEPRECATED] = ACTIONS(2010), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2010), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2010), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2010), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2010), - [anon_sym___deprecated_msg] = ACTIONS(2010), - [anon_sym___deprecated_enum_msg] = ACTIONS(2010), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2010), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2010), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2010), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2010), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2010), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2010), - [anon_sym_ATimplementation] = ACTIONS(2012), - [anon_sym_typeof] = ACTIONS(2010), - [anon_sym___typeof] = ACTIONS(2010), - [anon_sym___typeof__] = ACTIONS(2010), - [sym_self] = ACTIONS(2010), - [sym_super] = ACTIONS(2010), - [sym_nil] = ACTIONS(2010), - [sym_id] = ACTIONS(2010), - [sym_instancetype] = ACTIONS(2010), - [sym_Class] = ACTIONS(2010), - [sym_SEL] = ACTIONS(2010), - [sym_IMP] = ACTIONS(2010), - [sym_BOOL] = ACTIONS(2010), - [sym_auto] = ACTIONS(2010), - [anon_sym_ATautoreleasepool] = ACTIONS(2012), - [anon_sym_ATsynchronized] = ACTIONS(2012), - [anon_sym_ATtry] = ACTIONS(2012), - [anon_sym_ATthrow] = ACTIONS(2012), - [anon_sym_ATselector] = ACTIONS(2012), - [anon_sym_ATencode] = ACTIONS(2012), - [anon_sym_AT] = ACTIONS(2010), - [sym_YES] = ACTIONS(2010), - [sym_NO] = ACTIONS(2010), - [anon_sym___builtin_available] = ACTIONS(2010), - [anon_sym_ATavailable] = ACTIONS(2012), - [anon_sym_va_arg] = ACTIONS(2010), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1070] = { - [ts_builtin_sym_end] = ACTIONS(2136), - [sym_identifier] = ACTIONS(2134), - [aux_sym_preproc_include_token1] = ACTIONS(2136), - [aux_sym_preproc_def_token1] = ACTIONS(2136), - [aux_sym_preproc_if_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), - [anon_sym_LPAREN2] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_typedef] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym___attribute] = ACTIONS(2134), - [anon_sym___attribute__] = ACTIONS(2134), - [anon_sym___declspec] = ACTIONS(2134), - [anon_sym___cdecl] = ACTIONS(2134), - [anon_sym___clrcall] = ACTIONS(2134), - [anon_sym___stdcall] = ACTIONS(2134), - [anon_sym___fastcall] = ACTIONS(2134), - [anon_sym___thiscall] = ACTIONS(2134), - [anon_sym___vectorcall] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_auto] = ACTIONS(2134), - [anon_sym_register] = ACTIONS(2134), - [anon_sym_inline] = ACTIONS(2134), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [anon_sym_volatile] = ACTIONS(2134), - [anon_sym_restrict] = ACTIONS(2134), - [anon_sym__Atomic] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [anon_sym_out] = ACTIONS(2134), - [anon_sym_inout] = ACTIONS(2134), - [anon_sym_bycopy] = ACTIONS(2134), - [anon_sym_byref] = ACTIONS(2134), - [anon_sym_oneway] = ACTIONS(2134), - [anon_sym__Nullable] = ACTIONS(2134), - [anon_sym__Nonnull] = ACTIONS(2134), - [anon_sym__Nullable_result] = ACTIONS(2134), - [anon_sym__Null_unspecified] = ACTIONS(2134), - [anon_sym___autoreleasing] = ACTIONS(2134), - [anon_sym___nullable] = ACTIONS(2134), - [anon_sym___nonnull] = ACTIONS(2134), - [anon_sym___strong] = ACTIONS(2134), - [anon_sym___weak] = ACTIONS(2134), - [anon_sym___bridge] = ACTIONS(2134), - [anon_sym___bridge_transfer] = ACTIONS(2134), - [anon_sym___bridge_retained] = ACTIONS(2134), - [anon_sym___unsafe_unretained] = ACTIONS(2134), - [anon_sym___block] = ACTIONS(2134), - [anon_sym___kindof] = ACTIONS(2134), - [anon_sym___unused] = ACTIONS(2134), - [anon_sym__Complex] = ACTIONS(2134), - [anon_sym___complex] = ACTIONS(2134), - [anon_sym_IBOutlet] = ACTIONS(2134), - [anon_sym_IBInspectable] = ACTIONS(2134), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2134), - [anon_sym_signed] = ACTIONS(2134), - [anon_sym_unsigned] = ACTIONS(2134), - [anon_sym_long] = ACTIONS(2134), - [anon_sym_short] = ACTIONS(2134), - [sym_primitive_type] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_NS_ENUM] = ACTIONS(2134), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2134), - [anon_sym_NS_OPTIONS] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(2134), - [anon_sym_union] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_switch] = ACTIONS(2134), - [anon_sym_case] = ACTIONS(2134), - [anon_sym_default] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_goto] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_PLUS_PLUS] = ACTIONS(2136), - [anon_sym_sizeof] = ACTIONS(2134), - [sym_number_literal] = ACTIONS(2136), - [anon_sym_L_SQUOTE] = ACTIONS(2136), - [anon_sym_u_SQUOTE] = ACTIONS(2136), - [anon_sym_U_SQUOTE] = ACTIONS(2136), - [anon_sym_u8_SQUOTE] = ACTIONS(2136), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_L_DQUOTE] = ACTIONS(2136), - [anon_sym_u_DQUOTE] = ACTIONS(2136), - [anon_sym_U_DQUOTE] = ACTIONS(2136), - [anon_sym_u8_DQUOTE] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [sym_null] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2136), - [anon_sym_ATimport] = ACTIONS(2136), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2134), - [anon_sym_ATcompatibility_alias] = ACTIONS(2136), - [anon_sym_ATprotocol] = ACTIONS(2136), - [anon_sym_ATclass] = ACTIONS(2136), - [anon_sym_ATinterface] = ACTIONS(2136), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2134), - [sym_method_attribute_specifier] = ACTIONS(2134), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2134), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE] = ACTIONS(2134), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_API_AVAILABLE] = ACTIONS(2134), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_API_DEPRECATED] = ACTIONS(2134), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2134), - [anon_sym___deprecated_msg] = ACTIONS(2134), - [anon_sym___deprecated_enum_msg] = ACTIONS(2134), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2134), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2134), - [anon_sym_ATimplementation] = ACTIONS(2136), - [anon_sym_typeof] = ACTIONS(2134), - [anon_sym___typeof] = ACTIONS(2134), - [anon_sym___typeof__] = ACTIONS(2134), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_nil] = ACTIONS(2134), - [sym_id] = ACTIONS(2134), - [sym_instancetype] = ACTIONS(2134), - [sym_Class] = ACTIONS(2134), - [sym_SEL] = ACTIONS(2134), - [sym_IMP] = ACTIONS(2134), - [sym_BOOL] = ACTIONS(2134), - [sym_auto] = ACTIONS(2134), - [anon_sym_ATautoreleasepool] = ACTIONS(2136), - [anon_sym_ATsynchronized] = ACTIONS(2136), - [anon_sym_ATtry] = ACTIONS(2136), - [anon_sym_ATthrow] = ACTIONS(2136), - [anon_sym_ATselector] = ACTIONS(2136), - [anon_sym_ATencode] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2134), - [sym_YES] = ACTIONS(2134), - [sym_NO] = ACTIONS(2134), - [anon_sym___builtin_available] = ACTIONS(2134), - [anon_sym_ATavailable] = ACTIONS(2136), - [anon_sym_va_arg] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1071] = { - [ts_builtin_sym_end] = ACTIONS(1736), - [sym_identifier] = ACTIONS(1734), - [aux_sym_preproc_include_token1] = ACTIONS(1736), - [aux_sym_preproc_def_token1] = ACTIONS(1736), - [aux_sym_preproc_if_token1] = ACTIONS(1734), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1734), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1734), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_CARET] = ACTIONS(1736), - [anon_sym_AMP] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_typedef] = ACTIONS(1734), - [anon_sym_extern] = ACTIONS(1734), - [anon_sym___attribute] = ACTIONS(1734), - [anon_sym___attribute__] = ACTIONS(1734), - [anon_sym___declspec] = ACTIONS(1734), - [anon_sym___cdecl] = ACTIONS(1734), - [anon_sym___clrcall] = ACTIONS(1734), - [anon_sym___stdcall] = ACTIONS(1734), - [anon_sym___fastcall] = ACTIONS(1734), - [anon_sym___thiscall] = ACTIONS(1734), - [anon_sym___vectorcall] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_static] = ACTIONS(1734), - [anon_sym_auto] = ACTIONS(1734), - [anon_sym_register] = ACTIONS(1734), - [anon_sym_inline] = ACTIONS(1734), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1734), - [anon_sym_const] = ACTIONS(1734), - [anon_sym_volatile] = ACTIONS(1734), - [anon_sym_restrict] = ACTIONS(1734), - [anon_sym__Atomic] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_out] = ACTIONS(1734), - [anon_sym_inout] = ACTIONS(1734), - [anon_sym_bycopy] = ACTIONS(1734), - [anon_sym_byref] = ACTIONS(1734), - [anon_sym_oneway] = ACTIONS(1734), - [anon_sym__Nullable] = ACTIONS(1734), - [anon_sym__Nonnull] = ACTIONS(1734), - [anon_sym__Nullable_result] = ACTIONS(1734), - [anon_sym__Null_unspecified] = ACTIONS(1734), - [anon_sym___autoreleasing] = ACTIONS(1734), - [anon_sym___nullable] = ACTIONS(1734), - [anon_sym___nonnull] = ACTIONS(1734), - [anon_sym___strong] = ACTIONS(1734), - [anon_sym___weak] = ACTIONS(1734), - [anon_sym___bridge] = ACTIONS(1734), - [anon_sym___bridge_transfer] = ACTIONS(1734), - [anon_sym___bridge_retained] = ACTIONS(1734), - [anon_sym___unsafe_unretained] = ACTIONS(1734), - [anon_sym___block] = ACTIONS(1734), - [anon_sym___kindof] = ACTIONS(1734), - [anon_sym___unused] = ACTIONS(1734), - [anon_sym__Complex] = ACTIONS(1734), - [anon_sym___complex] = ACTIONS(1734), - [anon_sym_IBOutlet] = ACTIONS(1734), - [anon_sym_IBInspectable] = ACTIONS(1734), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1734), - [anon_sym_signed] = ACTIONS(1734), - [anon_sym_unsigned] = ACTIONS(1734), - [anon_sym_long] = ACTIONS(1734), - [anon_sym_short] = ACTIONS(1734), - [sym_primitive_type] = ACTIONS(1734), - [anon_sym_enum] = ACTIONS(1734), - [anon_sym_NS_ENUM] = ACTIONS(1734), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1734), - [anon_sym_NS_OPTIONS] = ACTIONS(1734), - [anon_sym_struct] = ACTIONS(1734), - [anon_sym_union] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_switch] = ACTIONS(1734), - [anon_sym_case] = ACTIONS(1734), - [anon_sym_default] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_do] = ACTIONS(1734), - [anon_sym_for] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_goto] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_sizeof] = ACTIONS(1734), - [sym_number_literal] = ACTIONS(1736), - [anon_sym_L_SQUOTE] = ACTIONS(1736), - [anon_sym_u_SQUOTE] = ACTIONS(1736), - [anon_sym_U_SQUOTE] = ACTIONS(1736), - [anon_sym_u8_SQUOTE] = ACTIONS(1736), - [anon_sym_SQUOTE] = ACTIONS(1736), - [anon_sym_L_DQUOTE] = ACTIONS(1736), - [anon_sym_u_DQUOTE] = ACTIONS(1736), - [anon_sym_U_DQUOTE] = ACTIONS(1736), - [anon_sym_u8_DQUOTE] = ACTIONS(1736), - [anon_sym_DQUOTE] = ACTIONS(1736), - [sym_true] = ACTIONS(1734), - [sym_false] = ACTIONS(1734), - [sym_null] = ACTIONS(1734), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1736), - [anon_sym_ATimport] = ACTIONS(1736), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1734), - [anon_sym_ATcompatibility_alias] = ACTIONS(1736), - [anon_sym_ATprotocol] = ACTIONS(1736), - [anon_sym_ATclass] = ACTIONS(1736), - [anon_sym_ATinterface] = ACTIONS(1736), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1734), - [sym_method_attribute_specifier] = ACTIONS(1734), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1734), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1734), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1734), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1734), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1734), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1734), - [anon_sym_NS_AVAILABLE] = ACTIONS(1734), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1734), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1734), - [anon_sym_API_AVAILABLE] = ACTIONS(1734), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1734), - [anon_sym_API_DEPRECATED] = ACTIONS(1734), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1734), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1734), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1734), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1734), - [anon_sym___deprecated_msg] = ACTIONS(1734), - [anon_sym___deprecated_enum_msg] = ACTIONS(1734), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1734), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1734), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1734), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1734), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1734), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1734), - [anon_sym_ATimplementation] = ACTIONS(1736), - [anon_sym_typeof] = ACTIONS(1734), - [anon_sym___typeof] = ACTIONS(1734), - [anon_sym___typeof__] = ACTIONS(1734), - [sym_self] = ACTIONS(1734), - [sym_super] = ACTIONS(1734), - [sym_nil] = ACTIONS(1734), - [sym_id] = ACTIONS(1734), - [sym_instancetype] = ACTIONS(1734), - [sym_Class] = ACTIONS(1734), - [sym_SEL] = ACTIONS(1734), - [sym_IMP] = ACTIONS(1734), - [sym_BOOL] = ACTIONS(1734), - [sym_auto] = ACTIONS(1734), - [anon_sym_ATautoreleasepool] = ACTIONS(1736), - [anon_sym_ATsynchronized] = ACTIONS(1736), - [anon_sym_ATtry] = ACTIONS(1736), - [anon_sym_ATthrow] = ACTIONS(1736), - [anon_sym_ATselector] = ACTIONS(1736), - [anon_sym_ATencode] = ACTIONS(1736), - [anon_sym_AT] = ACTIONS(1734), - [sym_YES] = ACTIONS(1734), - [sym_NO] = ACTIONS(1734), - [anon_sym___builtin_available] = ACTIONS(1734), - [anon_sym_ATavailable] = ACTIONS(1736), - [anon_sym_va_arg] = ACTIONS(1734), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1072] = { - [ts_builtin_sym_end] = ACTIONS(2008), - [sym_identifier] = ACTIONS(2006), - [aux_sym_preproc_include_token1] = ACTIONS(2008), - [aux_sym_preproc_def_token1] = ACTIONS(2008), - [aux_sym_preproc_if_token1] = ACTIONS(2006), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2006), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2006), - [anon_sym_LPAREN2] = ACTIONS(2008), - [anon_sym_BANG] = ACTIONS(2008), - [anon_sym_TILDE] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_PLUS] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2008), - [anon_sym_CARET] = ACTIONS(2008), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_typedef] = ACTIONS(2006), - [anon_sym_extern] = ACTIONS(2006), - [anon_sym___attribute] = ACTIONS(2006), - [anon_sym___attribute__] = ACTIONS(2006), - [anon_sym___declspec] = ACTIONS(2006), - [anon_sym___cdecl] = ACTIONS(2006), - [anon_sym___clrcall] = ACTIONS(2006), - [anon_sym___stdcall] = ACTIONS(2006), - [anon_sym___fastcall] = ACTIONS(2006), - [anon_sym___thiscall] = ACTIONS(2006), - [anon_sym___vectorcall] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_RBRACE] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2006), - [anon_sym_auto] = ACTIONS(2006), - [anon_sym_register] = ACTIONS(2006), - [anon_sym_inline] = ACTIONS(2006), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2006), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_volatile] = ACTIONS(2006), - [anon_sym_restrict] = ACTIONS(2006), - [anon_sym__Atomic] = ACTIONS(2006), - [anon_sym_in] = ACTIONS(2006), - [anon_sym_out] = ACTIONS(2006), - [anon_sym_inout] = ACTIONS(2006), - [anon_sym_bycopy] = ACTIONS(2006), - [anon_sym_byref] = ACTIONS(2006), - [anon_sym_oneway] = ACTIONS(2006), - [anon_sym__Nullable] = ACTIONS(2006), - [anon_sym__Nonnull] = ACTIONS(2006), - [anon_sym__Nullable_result] = ACTIONS(2006), - [anon_sym__Null_unspecified] = ACTIONS(2006), - [anon_sym___autoreleasing] = ACTIONS(2006), - [anon_sym___nullable] = ACTIONS(2006), - [anon_sym___nonnull] = ACTIONS(2006), - [anon_sym___strong] = ACTIONS(2006), - [anon_sym___weak] = ACTIONS(2006), - [anon_sym___bridge] = ACTIONS(2006), - [anon_sym___bridge_transfer] = ACTIONS(2006), - [anon_sym___bridge_retained] = ACTIONS(2006), - [anon_sym___unsafe_unretained] = ACTIONS(2006), - [anon_sym___block] = ACTIONS(2006), - [anon_sym___kindof] = ACTIONS(2006), - [anon_sym___unused] = ACTIONS(2006), - [anon_sym__Complex] = ACTIONS(2006), - [anon_sym___complex] = ACTIONS(2006), - [anon_sym_IBOutlet] = ACTIONS(2006), - [anon_sym_IBInspectable] = ACTIONS(2006), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2006), - [anon_sym_signed] = ACTIONS(2006), - [anon_sym_unsigned] = ACTIONS(2006), - [anon_sym_long] = ACTIONS(2006), - [anon_sym_short] = ACTIONS(2006), - [sym_primitive_type] = ACTIONS(2006), - [anon_sym_enum] = ACTIONS(2006), - [anon_sym_NS_ENUM] = ACTIONS(2006), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2006), - [anon_sym_NS_OPTIONS] = ACTIONS(2006), - [anon_sym_struct] = ACTIONS(2006), - [anon_sym_union] = ACTIONS(2006), - [anon_sym_if] = ACTIONS(2006), - [anon_sym_switch] = ACTIONS(2006), - [anon_sym_case] = ACTIONS(2006), - [anon_sym_default] = ACTIONS(2006), - [anon_sym_while] = ACTIONS(2006), - [anon_sym_do] = ACTIONS(2006), - [anon_sym_for] = ACTIONS(2006), - [anon_sym_return] = ACTIONS(2006), - [anon_sym_break] = ACTIONS(2006), - [anon_sym_continue] = ACTIONS(2006), - [anon_sym_goto] = ACTIONS(2006), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(2006), - [sym_number_literal] = ACTIONS(2008), - [anon_sym_L_SQUOTE] = ACTIONS(2008), - [anon_sym_u_SQUOTE] = ACTIONS(2008), - [anon_sym_U_SQUOTE] = ACTIONS(2008), - [anon_sym_u8_SQUOTE] = ACTIONS(2008), - [anon_sym_SQUOTE] = ACTIONS(2008), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(2006), - [sym_false] = ACTIONS(2006), - [sym_null] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2008), - [anon_sym_ATimport] = ACTIONS(2008), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2006), - [anon_sym_ATcompatibility_alias] = ACTIONS(2008), - [anon_sym_ATprotocol] = ACTIONS(2008), - [anon_sym_ATclass] = ACTIONS(2008), - [anon_sym_ATinterface] = ACTIONS(2008), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2006), - [sym_method_attribute_specifier] = ACTIONS(2006), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2006), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2006), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2006), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2006), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2006), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2006), - [anon_sym_NS_AVAILABLE] = ACTIONS(2006), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2006), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_API_AVAILABLE] = ACTIONS(2006), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2006), - [anon_sym_API_DEPRECATED] = ACTIONS(2006), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2006), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2006), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2006), - [anon_sym___deprecated_msg] = ACTIONS(2006), - [anon_sym___deprecated_enum_msg] = ACTIONS(2006), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2006), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2006), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2006), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2006), - [anon_sym_ATimplementation] = ACTIONS(2008), - [anon_sym_typeof] = ACTIONS(2006), - [anon_sym___typeof] = ACTIONS(2006), - [anon_sym___typeof__] = ACTIONS(2006), - [sym_self] = ACTIONS(2006), - [sym_super] = ACTIONS(2006), - [sym_nil] = ACTIONS(2006), - [sym_id] = ACTIONS(2006), - [sym_instancetype] = ACTIONS(2006), - [sym_Class] = ACTIONS(2006), - [sym_SEL] = ACTIONS(2006), - [sym_IMP] = ACTIONS(2006), - [sym_BOOL] = ACTIONS(2006), - [sym_auto] = ACTIONS(2006), - [anon_sym_ATautoreleasepool] = ACTIONS(2008), - [anon_sym_ATsynchronized] = ACTIONS(2008), - [anon_sym_ATtry] = ACTIONS(2008), - [anon_sym_ATthrow] = ACTIONS(2008), - [anon_sym_ATselector] = ACTIONS(2008), - [anon_sym_ATencode] = ACTIONS(2008), - [anon_sym_AT] = ACTIONS(2006), - [sym_YES] = ACTIONS(2006), - [sym_NO] = ACTIONS(2006), - [anon_sym___builtin_available] = ACTIONS(2006), - [anon_sym_ATavailable] = ACTIONS(2008), - [anon_sym_va_arg] = ACTIONS(2006), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1073] = { - [ts_builtin_sym_end] = ACTIONS(1992), - [sym_identifier] = ACTIONS(1990), - [aux_sym_preproc_include_token1] = ACTIONS(1992), - [aux_sym_preproc_def_token1] = ACTIONS(1992), - [aux_sym_preproc_if_token1] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(1992), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_TILDE] = ACTIONS(1992), - [anon_sym_DASH] = ACTIONS(1990), - [anon_sym_PLUS] = ACTIONS(1990), - [anon_sym_STAR] = ACTIONS(1992), - [anon_sym_CARET] = ACTIONS(1992), - [anon_sym_AMP] = ACTIONS(1992), - [anon_sym_SEMI] = ACTIONS(1992), - [anon_sym_typedef] = ACTIONS(1990), - [anon_sym_extern] = ACTIONS(1990), - [anon_sym___attribute] = ACTIONS(1990), - [anon_sym___attribute__] = ACTIONS(1990), - [anon_sym___declspec] = ACTIONS(1990), - [anon_sym___cdecl] = ACTIONS(1990), - [anon_sym___clrcall] = ACTIONS(1990), - [anon_sym___stdcall] = ACTIONS(1990), - [anon_sym___fastcall] = ACTIONS(1990), - [anon_sym___thiscall] = ACTIONS(1990), - [anon_sym___vectorcall] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), - [anon_sym_RBRACE] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_static] = ACTIONS(1990), - [anon_sym_auto] = ACTIONS(1990), - [anon_sym_register] = ACTIONS(1990), - [anon_sym_inline] = ACTIONS(1990), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1990), - [anon_sym_const] = ACTIONS(1990), - [anon_sym_volatile] = ACTIONS(1990), - [anon_sym_restrict] = ACTIONS(1990), - [anon_sym__Atomic] = ACTIONS(1990), - [anon_sym_in] = ACTIONS(1990), - [anon_sym_out] = ACTIONS(1990), - [anon_sym_inout] = ACTIONS(1990), - [anon_sym_bycopy] = ACTIONS(1990), - [anon_sym_byref] = ACTIONS(1990), - [anon_sym_oneway] = ACTIONS(1990), - [anon_sym__Nullable] = ACTIONS(1990), - [anon_sym__Nonnull] = ACTIONS(1990), - [anon_sym__Nullable_result] = ACTIONS(1990), - [anon_sym__Null_unspecified] = ACTIONS(1990), - [anon_sym___autoreleasing] = ACTIONS(1990), - [anon_sym___nullable] = ACTIONS(1990), - [anon_sym___nonnull] = ACTIONS(1990), - [anon_sym___strong] = ACTIONS(1990), - [anon_sym___weak] = ACTIONS(1990), - [anon_sym___bridge] = ACTIONS(1990), - [anon_sym___bridge_transfer] = ACTIONS(1990), - [anon_sym___bridge_retained] = ACTIONS(1990), - [anon_sym___unsafe_unretained] = ACTIONS(1990), - [anon_sym___block] = ACTIONS(1990), - [anon_sym___kindof] = ACTIONS(1990), - [anon_sym___unused] = ACTIONS(1990), - [anon_sym__Complex] = ACTIONS(1990), - [anon_sym___complex] = ACTIONS(1990), - [anon_sym_IBOutlet] = ACTIONS(1990), - [anon_sym_IBInspectable] = ACTIONS(1990), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1990), - [anon_sym_signed] = ACTIONS(1990), - [anon_sym_unsigned] = ACTIONS(1990), - [anon_sym_long] = ACTIONS(1990), - [anon_sym_short] = ACTIONS(1990), - [sym_primitive_type] = ACTIONS(1990), - [anon_sym_enum] = ACTIONS(1990), - [anon_sym_NS_ENUM] = ACTIONS(1990), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1990), - [anon_sym_NS_OPTIONS] = ACTIONS(1990), - [anon_sym_struct] = ACTIONS(1990), - [anon_sym_union] = ACTIONS(1990), - [anon_sym_if] = ACTIONS(1990), - [anon_sym_switch] = ACTIONS(1990), - [anon_sym_case] = ACTIONS(1990), - [anon_sym_default] = ACTIONS(1990), - [anon_sym_while] = ACTIONS(1990), - [anon_sym_do] = ACTIONS(1990), - [anon_sym_for] = ACTIONS(1990), - [anon_sym_return] = ACTIONS(1990), - [anon_sym_break] = ACTIONS(1990), - [anon_sym_continue] = ACTIONS(1990), - [anon_sym_goto] = ACTIONS(1990), - [anon_sym_DASH_DASH] = ACTIONS(1992), - [anon_sym_PLUS_PLUS] = ACTIONS(1992), - [anon_sym_sizeof] = ACTIONS(1990), - [sym_number_literal] = ACTIONS(1992), - [anon_sym_L_SQUOTE] = ACTIONS(1992), - [anon_sym_u_SQUOTE] = ACTIONS(1992), - [anon_sym_U_SQUOTE] = ACTIONS(1992), - [anon_sym_u8_SQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE] = ACTIONS(1992), - [anon_sym_L_DQUOTE] = ACTIONS(1992), - [anon_sym_u_DQUOTE] = ACTIONS(1992), - [anon_sym_U_DQUOTE] = ACTIONS(1992), - [anon_sym_u8_DQUOTE] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1992), - [sym_true] = ACTIONS(1990), - [sym_false] = ACTIONS(1990), - [sym_null] = ACTIONS(1990), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1992), - [anon_sym_ATimport] = ACTIONS(1992), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1990), - [anon_sym_ATcompatibility_alias] = ACTIONS(1992), - [anon_sym_ATprotocol] = ACTIONS(1992), - [anon_sym_ATclass] = ACTIONS(1992), - [anon_sym_ATinterface] = ACTIONS(1992), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1990), - [sym_method_attribute_specifier] = ACTIONS(1990), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1990), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1990), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1990), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1990), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1990), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1990), - [anon_sym_NS_AVAILABLE] = ACTIONS(1990), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1990), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1990), - [anon_sym_API_AVAILABLE] = ACTIONS(1990), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1990), - [anon_sym_API_DEPRECATED] = ACTIONS(1990), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1990), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1990), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1990), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1990), - [anon_sym___deprecated_msg] = ACTIONS(1990), - [anon_sym___deprecated_enum_msg] = ACTIONS(1990), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1990), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1990), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1990), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1990), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1990), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1990), - [anon_sym_ATimplementation] = ACTIONS(1992), - [anon_sym_typeof] = ACTIONS(1990), - [anon_sym___typeof] = ACTIONS(1990), - [anon_sym___typeof__] = ACTIONS(1990), - [sym_self] = ACTIONS(1990), - [sym_super] = ACTIONS(1990), - [sym_nil] = ACTIONS(1990), - [sym_id] = ACTIONS(1990), - [sym_instancetype] = ACTIONS(1990), - [sym_Class] = ACTIONS(1990), - [sym_SEL] = ACTIONS(1990), - [sym_IMP] = ACTIONS(1990), - [sym_BOOL] = ACTIONS(1990), - [sym_auto] = ACTIONS(1990), - [anon_sym_ATautoreleasepool] = ACTIONS(1992), - [anon_sym_ATsynchronized] = ACTIONS(1992), - [anon_sym_ATtry] = ACTIONS(1992), - [anon_sym_ATthrow] = ACTIONS(1992), - [anon_sym_ATselector] = ACTIONS(1992), - [anon_sym_ATencode] = ACTIONS(1992), - [anon_sym_AT] = ACTIONS(1990), - [sym_YES] = ACTIONS(1990), - [sym_NO] = ACTIONS(1990), - [anon_sym___builtin_available] = ACTIONS(1990), - [anon_sym_ATavailable] = ACTIONS(1992), - [anon_sym_va_arg] = ACTIONS(1990), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1074] = { - [ts_builtin_sym_end] = ACTIONS(2008), - [sym_identifier] = ACTIONS(2006), - [aux_sym_preproc_include_token1] = ACTIONS(2008), - [aux_sym_preproc_def_token1] = ACTIONS(2008), - [aux_sym_preproc_if_token1] = ACTIONS(2006), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2006), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2006), - [anon_sym_LPAREN2] = ACTIONS(2008), - [anon_sym_BANG] = ACTIONS(2008), - [anon_sym_TILDE] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_PLUS] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2008), - [anon_sym_CARET] = ACTIONS(2008), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_typedef] = ACTIONS(2006), - [anon_sym_extern] = ACTIONS(2006), - [anon_sym___attribute] = ACTIONS(2006), - [anon_sym___attribute__] = ACTIONS(2006), - [anon_sym___declspec] = ACTIONS(2006), - [anon_sym___cdecl] = ACTIONS(2006), - [anon_sym___clrcall] = ACTIONS(2006), - [anon_sym___stdcall] = ACTIONS(2006), - [anon_sym___fastcall] = ACTIONS(2006), - [anon_sym___thiscall] = ACTIONS(2006), - [anon_sym___vectorcall] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_RBRACE] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2006), - [anon_sym_auto] = ACTIONS(2006), - [anon_sym_register] = ACTIONS(2006), - [anon_sym_inline] = ACTIONS(2006), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2006), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_volatile] = ACTIONS(2006), - [anon_sym_restrict] = ACTIONS(2006), - [anon_sym__Atomic] = ACTIONS(2006), - [anon_sym_in] = ACTIONS(2006), - [anon_sym_out] = ACTIONS(2006), - [anon_sym_inout] = ACTIONS(2006), - [anon_sym_bycopy] = ACTIONS(2006), - [anon_sym_byref] = ACTIONS(2006), - [anon_sym_oneway] = ACTIONS(2006), - [anon_sym__Nullable] = ACTIONS(2006), - [anon_sym__Nonnull] = ACTIONS(2006), - [anon_sym__Nullable_result] = ACTIONS(2006), - [anon_sym__Null_unspecified] = ACTIONS(2006), - [anon_sym___autoreleasing] = ACTIONS(2006), - [anon_sym___nullable] = ACTIONS(2006), - [anon_sym___nonnull] = ACTIONS(2006), - [anon_sym___strong] = ACTIONS(2006), - [anon_sym___weak] = ACTIONS(2006), - [anon_sym___bridge] = ACTIONS(2006), - [anon_sym___bridge_transfer] = ACTIONS(2006), - [anon_sym___bridge_retained] = ACTIONS(2006), - [anon_sym___unsafe_unretained] = ACTIONS(2006), - [anon_sym___block] = ACTIONS(2006), - [anon_sym___kindof] = ACTIONS(2006), - [anon_sym___unused] = ACTIONS(2006), - [anon_sym__Complex] = ACTIONS(2006), - [anon_sym___complex] = ACTIONS(2006), - [anon_sym_IBOutlet] = ACTIONS(2006), - [anon_sym_IBInspectable] = ACTIONS(2006), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2006), - [anon_sym_signed] = ACTIONS(2006), - [anon_sym_unsigned] = ACTIONS(2006), - [anon_sym_long] = ACTIONS(2006), - [anon_sym_short] = ACTIONS(2006), - [sym_primitive_type] = ACTIONS(2006), - [anon_sym_enum] = ACTIONS(2006), - [anon_sym_NS_ENUM] = ACTIONS(2006), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2006), - [anon_sym_NS_OPTIONS] = ACTIONS(2006), - [anon_sym_struct] = ACTIONS(2006), - [anon_sym_union] = ACTIONS(2006), - [anon_sym_if] = ACTIONS(2006), - [anon_sym_switch] = ACTIONS(2006), - [anon_sym_case] = ACTIONS(2006), - [anon_sym_default] = ACTIONS(2006), - [anon_sym_while] = ACTIONS(2006), - [anon_sym_do] = ACTIONS(2006), - [anon_sym_for] = ACTIONS(2006), - [anon_sym_return] = ACTIONS(2006), - [anon_sym_break] = ACTIONS(2006), - [anon_sym_continue] = ACTIONS(2006), - [anon_sym_goto] = ACTIONS(2006), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(2006), - [sym_number_literal] = ACTIONS(2008), - [anon_sym_L_SQUOTE] = ACTIONS(2008), - [anon_sym_u_SQUOTE] = ACTIONS(2008), - [anon_sym_U_SQUOTE] = ACTIONS(2008), - [anon_sym_u8_SQUOTE] = ACTIONS(2008), - [anon_sym_SQUOTE] = ACTIONS(2008), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(2006), - [sym_false] = ACTIONS(2006), - [sym_null] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2008), - [anon_sym_ATimport] = ACTIONS(2008), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2006), - [anon_sym_ATcompatibility_alias] = ACTIONS(2008), - [anon_sym_ATprotocol] = ACTIONS(2008), - [anon_sym_ATclass] = ACTIONS(2008), - [anon_sym_ATinterface] = ACTIONS(2008), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2006), - [sym_method_attribute_specifier] = ACTIONS(2006), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2006), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2006), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2006), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2006), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2006), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2006), - [anon_sym_NS_AVAILABLE] = ACTIONS(2006), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2006), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_API_AVAILABLE] = ACTIONS(2006), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2006), - [anon_sym_API_DEPRECATED] = ACTIONS(2006), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2006), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2006), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2006), - [anon_sym___deprecated_msg] = ACTIONS(2006), - [anon_sym___deprecated_enum_msg] = ACTIONS(2006), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2006), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2006), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2006), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2006), - [anon_sym_ATimplementation] = ACTIONS(2008), - [anon_sym_typeof] = ACTIONS(2006), - [anon_sym___typeof] = ACTIONS(2006), - [anon_sym___typeof__] = ACTIONS(2006), - [sym_self] = ACTIONS(2006), - [sym_super] = ACTIONS(2006), - [sym_nil] = ACTIONS(2006), - [sym_id] = ACTIONS(2006), - [sym_instancetype] = ACTIONS(2006), - [sym_Class] = ACTIONS(2006), - [sym_SEL] = ACTIONS(2006), - [sym_IMP] = ACTIONS(2006), - [sym_BOOL] = ACTIONS(2006), - [sym_auto] = ACTIONS(2006), - [anon_sym_ATautoreleasepool] = ACTIONS(2008), - [anon_sym_ATsynchronized] = ACTIONS(2008), - [anon_sym_ATtry] = ACTIONS(2008), - [anon_sym_ATthrow] = ACTIONS(2008), - [anon_sym_ATselector] = ACTIONS(2008), - [anon_sym_ATencode] = ACTIONS(2008), - [anon_sym_AT] = ACTIONS(2006), - [sym_YES] = ACTIONS(2006), - [sym_NO] = ACTIONS(2006), - [anon_sym___builtin_available] = ACTIONS(2006), - [anon_sym_ATavailable] = ACTIONS(2008), - [anon_sym_va_arg] = ACTIONS(2006), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1075] = { - [ts_builtin_sym_end] = ACTIONS(1984), - [sym_identifier] = ACTIONS(1982), - [aux_sym_preproc_include_token1] = ACTIONS(1984), - [aux_sym_preproc_def_token1] = ACTIONS(1984), - [aux_sym_preproc_if_token1] = ACTIONS(1982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1982), - [anon_sym_LPAREN2] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_TILDE] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_PLUS] = ACTIONS(1982), - [anon_sym_STAR] = ACTIONS(1984), - [anon_sym_CARET] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_typedef] = ACTIONS(1982), - [anon_sym_extern] = ACTIONS(1982), - [anon_sym___attribute] = ACTIONS(1982), - [anon_sym___attribute__] = ACTIONS(1982), - [anon_sym___declspec] = ACTIONS(1982), - [anon_sym___cdecl] = ACTIONS(1982), - [anon_sym___clrcall] = ACTIONS(1982), - [anon_sym___stdcall] = ACTIONS(1982), - [anon_sym___fastcall] = ACTIONS(1982), - [anon_sym___thiscall] = ACTIONS(1982), - [anon_sym___vectorcall] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1984), - [anon_sym_RBRACE] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1982), - [anon_sym_auto] = ACTIONS(1982), - [anon_sym_register] = ACTIONS(1982), - [anon_sym_inline] = ACTIONS(1982), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1982), - [anon_sym_const] = ACTIONS(1982), - [anon_sym_volatile] = ACTIONS(1982), - [anon_sym_restrict] = ACTIONS(1982), - [anon_sym__Atomic] = ACTIONS(1982), - [anon_sym_in] = ACTIONS(1982), - [anon_sym_out] = ACTIONS(1982), - [anon_sym_inout] = ACTIONS(1982), - [anon_sym_bycopy] = ACTIONS(1982), - [anon_sym_byref] = ACTIONS(1982), - [anon_sym_oneway] = ACTIONS(1982), - [anon_sym__Nullable] = ACTIONS(1982), - [anon_sym__Nonnull] = ACTIONS(1982), - [anon_sym__Nullable_result] = ACTIONS(1982), - [anon_sym__Null_unspecified] = ACTIONS(1982), - [anon_sym___autoreleasing] = ACTIONS(1982), - [anon_sym___nullable] = ACTIONS(1982), - [anon_sym___nonnull] = ACTIONS(1982), - [anon_sym___strong] = ACTIONS(1982), - [anon_sym___weak] = ACTIONS(1982), - [anon_sym___bridge] = ACTIONS(1982), - [anon_sym___bridge_transfer] = ACTIONS(1982), - [anon_sym___bridge_retained] = ACTIONS(1982), - [anon_sym___unsafe_unretained] = ACTIONS(1982), - [anon_sym___block] = ACTIONS(1982), - [anon_sym___kindof] = ACTIONS(1982), - [anon_sym___unused] = ACTIONS(1982), - [anon_sym__Complex] = ACTIONS(1982), - [anon_sym___complex] = ACTIONS(1982), - [anon_sym_IBOutlet] = ACTIONS(1982), - [anon_sym_IBInspectable] = ACTIONS(1982), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1982), - [anon_sym_signed] = ACTIONS(1982), - [anon_sym_unsigned] = ACTIONS(1982), - [anon_sym_long] = ACTIONS(1982), - [anon_sym_short] = ACTIONS(1982), - [sym_primitive_type] = ACTIONS(1982), - [anon_sym_enum] = ACTIONS(1982), - [anon_sym_NS_ENUM] = ACTIONS(1982), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1982), - [anon_sym_NS_OPTIONS] = ACTIONS(1982), - [anon_sym_struct] = ACTIONS(1982), - [anon_sym_union] = ACTIONS(1982), - [anon_sym_if] = ACTIONS(1982), - [anon_sym_switch] = ACTIONS(1982), - [anon_sym_case] = ACTIONS(1982), - [anon_sym_default] = ACTIONS(1982), - [anon_sym_while] = ACTIONS(1982), - [anon_sym_do] = ACTIONS(1982), - [anon_sym_for] = ACTIONS(1982), - [anon_sym_return] = ACTIONS(1982), - [anon_sym_break] = ACTIONS(1982), - [anon_sym_continue] = ACTIONS(1982), - [anon_sym_goto] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1982), - [sym_number_literal] = ACTIONS(1984), - [anon_sym_L_SQUOTE] = ACTIONS(1984), - [anon_sym_u_SQUOTE] = ACTIONS(1984), - [anon_sym_U_SQUOTE] = ACTIONS(1984), - [anon_sym_u8_SQUOTE] = ACTIONS(1984), - [anon_sym_SQUOTE] = ACTIONS(1984), - [anon_sym_L_DQUOTE] = ACTIONS(1984), - [anon_sym_u_DQUOTE] = ACTIONS(1984), - [anon_sym_U_DQUOTE] = ACTIONS(1984), - [anon_sym_u8_DQUOTE] = ACTIONS(1984), - [anon_sym_DQUOTE] = ACTIONS(1984), - [sym_true] = ACTIONS(1982), - [sym_false] = ACTIONS(1982), - [sym_null] = ACTIONS(1982), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1984), - [anon_sym_ATimport] = ACTIONS(1984), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1982), - [anon_sym_ATcompatibility_alias] = ACTIONS(1984), - [anon_sym_ATprotocol] = ACTIONS(1984), - [anon_sym_ATclass] = ACTIONS(1984), - [anon_sym_ATinterface] = ACTIONS(1984), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1982), - [sym_method_attribute_specifier] = ACTIONS(1982), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1982), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1982), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1982), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1982), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1982), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1982), - [anon_sym_NS_AVAILABLE] = ACTIONS(1982), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1982), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1982), - [anon_sym_API_AVAILABLE] = ACTIONS(1982), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1982), - [anon_sym_API_DEPRECATED] = ACTIONS(1982), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1982), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1982), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1982), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1982), - [anon_sym___deprecated_msg] = ACTIONS(1982), - [anon_sym___deprecated_enum_msg] = ACTIONS(1982), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1982), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1982), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1982), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1982), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1982), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1982), - [anon_sym_ATimplementation] = ACTIONS(1984), - [anon_sym_typeof] = ACTIONS(1982), - [anon_sym___typeof] = ACTIONS(1982), - [anon_sym___typeof__] = ACTIONS(1982), - [sym_self] = ACTIONS(1982), - [sym_super] = ACTIONS(1982), - [sym_nil] = ACTIONS(1982), - [sym_id] = ACTIONS(1982), - [sym_instancetype] = ACTIONS(1982), - [sym_Class] = ACTIONS(1982), - [sym_SEL] = ACTIONS(1982), - [sym_IMP] = ACTIONS(1982), - [sym_BOOL] = ACTIONS(1982), - [sym_auto] = ACTIONS(1982), - [anon_sym_ATautoreleasepool] = ACTIONS(1984), - [anon_sym_ATsynchronized] = ACTIONS(1984), - [anon_sym_ATtry] = ACTIONS(1984), - [anon_sym_ATthrow] = ACTIONS(1984), - [anon_sym_ATselector] = ACTIONS(1984), - [anon_sym_ATencode] = ACTIONS(1984), - [anon_sym_AT] = ACTIONS(1982), - [sym_YES] = ACTIONS(1982), - [sym_NO] = ACTIONS(1982), - [anon_sym___builtin_available] = ACTIONS(1982), - [anon_sym_ATavailable] = ACTIONS(1984), - [anon_sym_va_arg] = ACTIONS(1982), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1076] = { - [ts_builtin_sym_end] = ACTIONS(2136), - [sym_identifier] = ACTIONS(2134), - [aux_sym_preproc_include_token1] = ACTIONS(2136), - [aux_sym_preproc_def_token1] = ACTIONS(2136), - [aux_sym_preproc_if_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), - [anon_sym_LPAREN2] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_typedef] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym___attribute] = ACTIONS(2134), - [anon_sym___attribute__] = ACTIONS(2134), - [anon_sym___declspec] = ACTIONS(2134), - [anon_sym___cdecl] = ACTIONS(2134), - [anon_sym___clrcall] = ACTIONS(2134), - [anon_sym___stdcall] = ACTIONS(2134), - [anon_sym___fastcall] = ACTIONS(2134), - [anon_sym___thiscall] = ACTIONS(2134), - [anon_sym___vectorcall] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_auto] = ACTIONS(2134), - [anon_sym_register] = ACTIONS(2134), - [anon_sym_inline] = ACTIONS(2134), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [anon_sym_volatile] = ACTIONS(2134), - [anon_sym_restrict] = ACTIONS(2134), - [anon_sym__Atomic] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [anon_sym_out] = ACTIONS(2134), - [anon_sym_inout] = ACTIONS(2134), - [anon_sym_bycopy] = ACTIONS(2134), - [anon_sym_byref] = ACTIONS(2134), - [anon_sym_oneway] = ACTIONS(2134), - [anon_sym__Nullable] = ACTIONS(2134), - [anon_sym__Nonnull] = ACTIONS(2134), - [anon_sym__Nullable_result] = ACTIONS(2134), - [anon_sym__Null_unspecified] = ACTIONS(2134), - [anon_sym___autoreleasing] = ACTIONS(2134), - [anon_sym___nullable] = ACTIONS(2134), - [anon_sym___nonnull] = ACTIONS(2134), - [anon_sym___strong] = ACTIONS(2134), - [anon_sym___weak] = ACTIONS(2134), - [anon_sym___bridge] = ACTIONS(2134), - [anon_sym___bridge_transfer] = ACTIONS(2134), - [anon_sym___bridge_retained] = ACTIONS(2134), - [anon_sym___unsafe_unretained] = ACTIONS(2134), - [anon_sym___block] = ACTIONS(2134), - [anon_sym___kindof] = ACTIONS(2134), - [anon_sym___unused] = ACTIONS(2134), - [anon_sym__Complex] = ACTIONS(2134), - [anon_sym___complex] = ACTIONS(2134), - [anon_sym_IBOutlet] = ACTIONS(2134), - [anon_sym_IBInspectable] = ACTIONS(2134), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2134), - [anon_sym_signed] = ACTIONS(2134), - [anon_sym_unsigned] = ACTIONS(2134), - [anon_sym_long] = ACTIONS(2134), - [anon_sym_short] = ACTIONS(2134), - [sym_primitive_type] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_NS_ENUM] = ACTIONS(2134), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2134), - [anon_sym_NS_OPTIONS] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(2134), - [anon_sym_union] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_switch] = ACTIONS(2134), - [anon_sym_case] = ACTIONS(2134), - [anon_sym_default] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_goto] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_PLUS_PLUS] = ACTIONS(2136), - [anon_sym_sizeof] = ACTIONS(2134), - [sym_number_literal] = ACTIONS(2136), - [anon_sym_L_SQUOTE] = ACTIONS(2136), - [anon_sym_u_SQUOTE] = ACTIONS(2136), - [anon_sym_U_SQUOTE] = ACTIONS(2136), - [anon_sym_u8_SQUOTE] = ACTIONS(2136), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_L_DQUOTE] = ACTIONS(2136), - [anon_sym_u_DQUOTE] = ACTIONS(2136), - [anon_sym_U_DQUOTE] = ACTIONS(2136), - [anon_sym_u8_DQUOTE] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [sym_null] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2136), - [anon_sym_ATimport] = ACTIONS(2136), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2134), - [anon_sym_ATcompatibility_alias] = ACTIONS(2136), - [anon_sym_ATprotocol] = ACTIONS(2136), - [anon_sym_ATclass] = ACTIONS(2136), - [anon_sym_ATinterface] = ACTIONS(2136), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2134), - [sym_method_attribute_specifier] = ACTIONS(2134), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2134), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE] = ACTIONS(2134), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_API_AVAILABLE] = ACTIONS(2134), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_API_DEPRECATED] = ACTIONS(2134), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2134), - [anon_sym___deprecated_msg] = ACTIONS(2134), - [anon_sym___deprecated_enum_msg] = ACTIONS(2134), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2134), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2134), - [anon_sym_ATimplementation] = ACTIONS(2136), - [anon_sym_typeof] = ACTIONS(2134), - [anon_sym___typeof] = ACTIONS(2134), - [anon_sym___typeof__] = ACTIONS(2134), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_nil] = ACTIONS(2134), - [sym_id] = ACTIONS(2134), - [sym_instancetype] = ACTIONS(2134), - [sym_Class] = ACTIONS(2134), - [sym_SEL] = ACTIONS(2134), - [sym_IMP] = ACTIONS(2134), - [sym_BOOL] = ACTIONS(2134), - [sym_auto] = ACTIONS(2134), - [anon_sym_ATautoreleasepool] = ACTIONS(2136), - [anon_sym_ATsynchronized] = ACTIONS(2136), - [anon_sym_ATtry] = ACTIONS(2136), - [anon_sym_ATthrow] = ACTIONS(2136), - [anon_sym_ATselector] = ACTIONS(2136), - [anon_sym_ATencode] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2134), - [sym_YES] = ACTIONS(2134), - [sym_NO] = ACTIONS(2134), - [anon_sym___builtin_available] = ACTIONS(2134), - [anon_sym_ATavailable] = ACTIONS(2136), - [anon_sym_va_arg] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1077] = { - [ts_builtin_sym_end] = ACTIONS(1724), - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1078] = { - [ts_builtin_sym_end] = ACTIONS(2136), - [sym_identifier] = ACTIONS(2134), - [aux_sym_preproc_include_token1] = ACTIONS(2136), - [aux_sym_preproc_def_token1] = ACTIONS(2136), - [aux_sym_preproc_if_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), - [anon_sym_LPAREN2] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_typedef] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym___attribute] = ACTIONS(2134), - [anon_sym___attribute__] = ACTIONS(2134), - [anon_sym___declspec] = ACTIONS(2134), - [anon_sym___cdecl] = ACTIONS(2134), - [anon_sym___clrcall] = ACTIONS(2134), - [anon_sym___stdcall] = ACTIONS(2134), - [anon_sym___fastcall] = ACTIONS(2134), - [anon_sym___thiscall] = ACTIONS(2134), - [anon_sym___vectorcall] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_auto] = ACTIONS(2134), - [anon_sym_register] = ACTIONS(2134), - [anon_sym_inline] = ACTIONS(2134), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [anon_sym_volatile] = ACTIONS(2134), - [anon_sym_restrict] = ACTIONS(2134), - [anon_sym__Atomic] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [anon_sym_out] = ACTIONS(2134), - [anon_sym_inout] = ACTIONS(2134), - [anon_sym_bycopy] = ACTIONS(2134), - [anon_sym_byref] = ACTIONS(2134), - [anon_sym_oneway] = ACTIONS(2134), - [anon_sym__Nullable] = ACTIONS(2134), - [anon_sym__Nonnull] = ACTIONS(2134), - [anon_sym__Nullable_result] = ACTIONS(2134), - [anon_sym__Null_unspecified] = ACTIONS(2134), - [anon_sym___autoreleasing] = ACTIONS(2134), - [anon_sym___nullable] = ACTIONS(2134), - [anon_sym___nonnull] = ACTIONS(2134), - [anon_sym___strong] = ACTIONS(2134), - [anon_sym___weak] = ACTIONS(2134), - [anon_sym___bridge] = ACTIONS(2134), - [anon_sym___bridge_transfer] = ACTIONS(2134), - [anon_sym___bridge_retained] = ACTIONS(2134), - [anon_sym___unsafe_unretained] = ACTIONS(2134), - [anon_sym___block] = ACTIONS(2134), - [anon_sym___kindof] = ACTIONS(2134), - [anon_sym___unused] = ACTIONS(2134), - [anon_sym__Complex] = ACTIONS(2134), - [anon_sym___complex] = ACTIONS(2134), - [anon_sym_IBOutlet] = ACTIONS(2134), - [anon_sym_IBInspectable] = ACTIONS(2134), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2134), - [anon_sym_signed] = ACTIONS(2134), - [anon_sym_unsigned] = ACTIONS(2134), - [anon_sym_long] = ACTIONS(2134), - [anon_sym_short] = ACTIONS(2134), - [sym_primitive_type] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_NS_ENUM] = ACTIONS(2134), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2134), - [anon_sym_NS_OPTIONS] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(2134), - [anon_sym_union] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_switch] = ACTIONS(2134), - [anon_sym_case] = ACTIONS(2134), - [anon_sym_default] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_goto] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_PLUS_PLUS] = ACTIONS(2136), - [anon_sym_sizeof] = ACTIONS(2134), - [sym_number_literal] = ACTIONS(2136), - [anon_sym_L_SQUOTE] = ACTIONS(2136), - [anon_sym_u_SQUOTE] = ACTIONS(2136), - [anon_sym_U_SQUOTE] = ACTIONS(2136), - [anon_sym_u8_SQUOTE] = ACTIONS(2136), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_L_DQUOTE] = ACTIONS(2136), - [anon_sym_u_DQUOTE] = ACTIONS(2136), - [anon_sym_U_DQUOTE] = ACTIONS(2136), - [anon_sym_u8_DQUOTE] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [sym_null] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2136), - [anon_sym_ATimport] = ACTIONS(2136), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2134), - [anon_sym_ATcompatibility_alias] = ACTIONS(2136), - [anon_sym_ATprotocol] = ACTIONS(2136), - [anon_sym_ATclass] = ACTIONS(2136), - [anon_sym_ATinterface] = ACTIONS(2136), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2134), - [sym_method_attribute_specifier] = ACTIONS(2134), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2134), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE] = ACTIONS(2134), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_API_AVAILABLE] = ACTIONS(2134), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_API_DEPRECATED] = ACTIONS(2134), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2134), - [anon_sym___deprecated_msg] = ACTIONS(2134), - [anon_sym___deprecated_enum_msg] = ACTIONS(2134), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2134), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2134), - [anon_sym_ATimplementation] = ACTIONS(2136), - [anon_sym_typeof] = ACTIONS(2134), - [anon_sym___typeof] = ACTIONS(2134), - [anon_sym___typeof__] = ACTIONS(2134), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_nil] = ACTIONS(2134), - [sym_id] = ACTIONS(2134), - [sym_instancetype] = ACTIONS(2134), - [sym_Class] = ACTIONS(2134), - [sym_SEL] = ACTIONS(2134), - [sym_IMP] = ACTIONS(2134), - [sym_BOOL] = ACTIONS(2134), - [sym_auto] = ACTIONS(2134), - [anon_sym_ATautoreleasepool] = ACTIONS(2136), - [anon_sym_ATsynchronized] = ACTIONS(2136), - [anon_sym_ATtry] = ACTIONS(2136), - [anon_sym_ATthrow] = ACTIONS(2136), - [anon_sym_ATselector] = ACTIONS(2136), - [anon_sym_ATencode] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2134), - [sym_YES] = ACTIONS(2134), - [sym_NO] = ACTIONS(2134), - [anon_sym___builtin_available] = ACTIONS(2134), - [anon_sym_ATavailable] = ACTIONS(2136), - [anon_sym_va_arg] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1079] = { - [ts_builtin_sym_end] = ACTIONS(1724), - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1080] = { - [ts_builtin_sym_end] = ACTIONS(2140), - [sym_identifier] = ACTIONS(2138), - [aux_sym_preproc_include_token1] = ACTIONS(2140), - [aux_sym_preproc_def_token1] = ACTIONS(2140), - [aux_sym_preproc_if_token1] = ACTIONS(2138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), - [anon_sym_LPAREN2] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_typedef] = ACTIONS(2138), - [anon_sym_extern] = ACTIONS(2138), - [anon_sym___attribute] = ACTIONS(2138), - [anon_sym___attribute__] = ACTIONS(2138), - [anon_sym___declspec] = ACTIONS(2138), - [anon_sym___cdecl] = ACTIONS(2138), - [anon_sym___clrcall] = ACTIONS(2138), - [anon_sym___stdcall] = ACTIONS(2138), - [anon_sym___fastcall] = ACTIONS(2138), - [anon_sym___thiscall] = ACTIONS(2138), - [anon_sym___vectorcall] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_auto] = ACTIONS(2138), - [anon_sym_register] = ACTIONS(2138), - [anon_sym_inline] = ACTIONS(2138), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_volatile] = ACTIONS(2138), - [anon_sym_restrict] = ACTIONS(2138), - [anon_sym__Atomic] = ACTIONS(2138), - [anon_sym_in] = ACTIONS(2138), - [anon_sym_out] = ACTIONS(2138), - [anon_sym_inout] = ACTIONS(2138), - [anon_sym_bycopy] = ACTIONS(2138), - [anon_sym_byref] = ACTIONS(2138), - [anon_sym_oneway] = ACTIONS(2138), - [anon_sym__Nullable] = ACTIONS(2138), - [anon_sym__Nonnull] = ACTIONS(2138), - [anon_sym__Nullable_result] = ACTIONS(2138), - [anon_sym__Null_unspecified] = ACTIONS(2138), - [anon_sym___autoreleasing] = ACTIONS(2138), - [anon_sym___nullable] = ACTIONS(2138), - [anon_sym___nonnull] = ACTIONS(2138), - [anon_sym___strong] = ACTIONS(2138), - [anon_sym___weak] = ACTIONS(2138), - [anon_sym___bridge] = ACTIONS(2138), - [anon_sym___bridge_transfer] = ACTIONS(2138), - [anon_sym___bridge_retained] = ACTIONS(2138), - [anon_sym___unsafe_unretained] = ACTIONS(2138), - [anon_sym___block] = ACTIONS(2138), - [anon_sym___kindof] = ACTIONS(2138), - [anon_sym___unused] = ACTIONS(2138), - [anon_sym__Complex] = ACTIONS(2138), - [anon_sym___complex] = ACTIONS(2138), - [anon_sym_IBOutlet] = ACTIONS(2138), - [anon_sym_IBInspectable] = ACTIONS(2138), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2138), - [anon_sym_signed] = ACTIONS(2138), - [anon_sym_unsigned] = ACTIONS(2138), - [anon_sym_long] = ACTIONS(2138), - [anon_sym_short] = ACTIONS(2138), - [sym_primitive_type] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [anon_sym_NS_ENUM] = ACTIONS(2138), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2138), - [anon_sym_NS_OPTIONS] = ACTIONS(2138), - [anon_sym_struct] = ACTIONS(2138), - [anon_sym_union] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_case] = ACTIONS(2138), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_goto] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_sizeof] = ACTIONS(2138), - [sym_number_literal] = ACTIONS(2140), - [anon_sym_L_SQUOTE] = ACTIONS(2140), - [anon_sym_u_SQUOTE] = ACTIONS(2140), - [anon_sym_U_SQUOTE] = ACTIONS(2140), - [anon_sym_u8_SQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_L_DQUOTE] = ACTIONS(2140), - [anon_sym_u_DQUOTE] = ACTIONS(2140), - [anon_sym_U_DQUOTE] = ACTIONS(2140), - [anon_sym_u8_DQUOTE] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2140), - [anon_sym_ATimport] = ACTIONS(2140), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2138), - [anon_sym_ATcompatibility_alias] = ACTIONS(2140), - [anon_sym_ATprotocol] = ACTIONS(2140), - [anon_sym_ATclass] = ACTIONS(2140), - [anon_sym_ATinterface] = ACTIONS(2140), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2138), - [sym_method_attribute_specifier] = ACTIONS(2138), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2138), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2138), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2138), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2138), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2138), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2138), - [anon_sym_NS_AVAILABLE] = ACTIONS(2138), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2138), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2138), - [anon_sym_API_AVAILABLE] = ACTIONS(2138), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2138), - [anon_sym_API_DEPRECATED] = ACTIONS(2138), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2138), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2138), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2138), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2138), - [anon_sym___deprecated_msg] = ACTIONS(2138), - [anon_sym___deprecated_enum_msg] = ACTIONS(2138), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2138), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2138), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2138), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2138), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2138), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2138), - [anon_sym_ATimplementation] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym___typeof] = ACTIONS(2138), - [anon_sym___typeof__] = ACTIONS(2138), - [sym_self] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_nil] = ACTIONS(2138), - [sym_id] = ACTIONS(2138), - [sym_instancetype] = ACTIONS(2138), - [sym_Class] = ACTIONS(2138), - [sym_SEL] = ACTIONS(2138), - [sym_IMP] = ACTIONS(2138), - [sym_BOOL] = ACTIONS(2138), - [sym_auto] = ACTIONS(2138), - [anon_sym_ATautoreleasepool] = ACTIONS(2140), - [anon_sym_ATsynchronized] = ACTIONS(2140), - [anon_sym_ATtry] = ACTIONS(2140), - [anon_sym_ATthrow] = ACTIONS(2140), - [anon_sym_ATselector] = ACTIONS(2140), - [anon_sym_ATencode] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2138), - [sym_YES] = ACTIONS(2138), - [sym_NO] = ACTIONS(2138), - [anon_sym___builtin_available] = ACTIONS(2138), - [anon_sym_ATavailable] = ACTIONS(2140), - [anon_sym_va_arg] = ACTIONS(2138), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1081] = { - [ts_builtin_sym_end] = ACTIONS(1724), - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1082] = { - [ts_builtin_sym_end] = ACTIONS(1724), - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1083] = { - [ts_builtin_sym_end] = ACTIONS(2004), - [sym_identifier] = ACTIONS(2002), - [aux_sym_preproc_include_token1] = ACTIONS(2004), - [aux_sym_preproc_def_token1] = ACTIONS(2004), - [aux_sym_preproc_if_token1] = ACTIONS(2002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(2004), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2004), - [anon_sym_CARET] = ACTIONS(2004), - [anon_sym_AMP] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2004), - [anon_sym_typedef] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2002), - [anon_sym___attribute] = ACTIONS(2002), - [anon_sym___attribute__] = ACTIONS(2002), - [anon_sym___declspec] = ACTIONS(2002), - [anon_sym___cdecl] = ACTIONS(2002), - [anon_sym___clrcall] = ACTIONS(2002), - [anon_sym___stdcall] = ACTIONS(2002), - [anon_sym___fastcall] = ACTIONS(2002), - [anon_sym___thiscall] = ACTIONS(2002), - [anon_sym___vectorcall] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2004), - [anon_sym_RBRACE] = ACTIONS(2004), - [anon_sym_LBRACK] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2002), - [anon_sym_auto] = ACTIONS(2002), - [anon_sym_register] = ACTIONS(2002), - [anon_sym_inline] = ACTIONS(2002), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2002), - [anon_sym_const] = ACTIONS(2002), - [anon_sym_volatile] = ACTIONS(2002), - [anon_sym_restrict] = ACTIONS(2002), - [anon_sym__Atomic] = ACTIONS(2002), - [anon_sym_in] = ACTIONS(2002), - [anon_sym_out] = ACTIONS(2002), - [anon_sym_inout] = ACTIONS(2002), - [anon_sym_bycopy] = ACTIONS(2002), - [anon_sym_byref] = ACTIONS(2002), - [anon_sym_oneway] = ACTIONS(2002), - [anon_sym__Nullable] = ACTIONS(2002), - [anon_sym__Nonnull] = ACTIONS(2002), - [anon_sym__Nullable_result] = ACTIONS(2002), - [anon_sym__Null_unspecified] = ACTIONS(2002), - [anon_sym___autoreleasing] = ACTIONS(2002), - [anon_sym___nullable] = ACTIONS(2002), - [anon_sym___nonnull] = ACTIONS(2002), - [anon_sym___strong] = ACTIONS(2002), - [anon_sym___weak] = ACTIONS(2002), - [anon_sym___bridge] = ACTIONS(2002), - [anon_sym___bridge_transfer] = ACTIONS(2002), - [anon_sym___bridge_retained] = ACTIONS(2002), - [anon_sym___unsafe_unretained] = ACTIONS(2002), - [anon_sym___block] = ACTIONS(2002), - [anon_sym___kindof] = ACTIONS(2002), - [anon_sym___unused] = ACTIONS(2002), - [anon_sym__Complex] = ACTIONS(2002), - [anon_sym___complex] = ACTIONS(2002), - [anon_sym_IBOutlet] = ACTIONS(2002), - [anon_sym_IBInspectable] = ACTIONS(2002), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2002), - [anon_sym_signed] = ACTIONS(2002), - [anon_sym_unsigned] = ACTIONS(2002), - [anon_sym_long] = ACTIONS(2002), - [anon_sym_short] = ACTIONS(2002), - [sym_primitive_type] = ACTIONS(2002), - [anon_sym_enum] = ACTIONS(2002), - [anon_sym_NS_ENUM] = ACTIONS(2002), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2002), - [anon_sym_NS_OPTIONS] = ACTIONS(2002), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_switch] = ACTIONS(2002), - [anon_sym_case] = ACTIONS(2002), - [anon_sym_default] = ACTIONS(2002), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_do] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2002), - [anon_sym_break] = ACTIONS(2002), - [anon_sym_continue] = ACTIONS(2002), - [anon_sym_goto] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(2004), - [anon_sym_PLUS_PLUS] = ACTIONS(2004), - [anon_sym_sizeof] = ACTIONS(2002), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2004), - [anon_sym_u_DQUOTE] = ACTIONS(2004), - [anon_sym_U_DQUOTE] = ACTIONS(2004), - [anon_sym_u8_DQUOTE] = ACTIONS(2004), - [anon_sym_DQUOTE] = ACTIONS(2004), - [sym_true] = ACTIONS(2002), - [sym_false] = ACTIONS(2002), - [sym_null] = ACTIONS(2002), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2004), - [anon_sym_ATimport] = ACTIONS(2004), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2002), - [anon_sym_ATcompatibility_alias] = ACTIONS(2004), - [anon_sym_ATprotocol] = ACTIONS(2004), - [anon_sym_ATclass] = ACTIONS(2004), - [anon_sym_ATinterface] = ACTIONS(2004), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2002), - [sym_method_attribute_specifier] = ACTIONS(2002), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2002), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2002), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2002), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2002), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2002), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2002), - [anon_sym_NS_AVAILABLE] = ACTIONS(2002), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2002), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2002), - [anon_sym_API_AVAILABLE] = ACTIONS(2002), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2002), - [anon_sym_API_DEPRECATED] = ACTIONS(2002), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2002), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2002), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2002), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2002), - [anon_sym___deprecated_msg] = ACTIONS(2002), - [anon_sym___deprecated_enum_msg] = ACTIONS(2002), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2002), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2002), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2002), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2002), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2002), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2002), - [anon_sym_ATimplementation] = ACTIONS(2004), - [anon_sym_typeof] = ACTIONS(2002), - [anon_sym___typeof] = ACTIONS(2002), - [anon_sym___typeof__] = ACTIONS(2002), - [sym_self] = ACTIONS(2002), - [sym_super] = ACTIONS(2002), - [sym_nil] = ACTIONS(2002), - [sym_id] = ACTIONS(2002), - [sym_instancetype] = ACTIONS(2002), - [sym_Class] = ACTIONS(2002), - [sym_SEL] = ACTIONS(2002), - [sym_IMP] = ACTIONS(2002), - [sym_BOOL] = ACTIONS(2002), - [sym_auto] = ACTIONS(2002), - [anon_sym_ATautoreleasepool] = ACTIONS(2004), - [anon_sym_ATsynchronized] = ACTIONS(2004), - [anon_sym_ATtry] = ACTIONS(2004), - [anon_sym_ATthrow] = ACTIONS(2004), - [anon_sym_ATselector] = ACTIONS(2004), - [anon_sym_ATencode] = ACTIONS(2004), - [anon_sym_AT] = ACTIONS(2002), - [sym_YES] = ACTIONS(2002), - [sym_NO] = ACTIONS(2002), - [anon_sym___builtin_available] = ACTIONS(2002), - [anon_sym_ATavailable] = ACTIONS(2004), - [anon_sym_va_arg] = ACTIONS(2002), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1084] = { - [ts_builtin_sym_end] = ACTIONS(1724), - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1085] = { - [ts_builtin_sym_end] = ACTIONS(1724), - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1086] = { - [ts_builtin_sym_end] = ACTIONS(1724), - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1087] = { - [ts_builtin_sym_end] = ACTIONS(1724), - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1088] = { - [ts_builtin_sym_end] = ACTIONS(1724), - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1089] = { - [ts_builtin_sym_end] = ACTIONS(1724), - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1090] = { - [ts_builtin_sym_end] = ACTIONS(1724), - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1091] = { - [ts_builtin_sym_end] = ACTIONS(1724), - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1092] = { - [ts_builtin_sym_end] = ACTIONS(2000), - [sym_identifier] = ACTIONS(1998), - [aux_sym_preproc_include_token1] = ACTIONS(2000), - [aux_sym_preproc_def_token1] = ACTIONS(2000), - [aux_sym_preproc_if_token1] = ACTIONS(1998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1998), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2000), - [anon_sym_TILDE] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(1998), - [anon_sym_PLUS] = ACTIONS(1998), - [anon_sym_STAR] = ACTIONS(2000), - [anon_sym_CARET] = ACTIONS(2000), - [anon_sym_AMP] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_typedef] = ACTIONS(1998), - [anon_sym_extern] = ACTIONS(1998), - [anon_sym___attribute] = ACTIONS(1998), - [anon_sym___attribute__] = ACTIONS(1998), - [anon_sym___declspec] = ACTIONS(1998), - [anon_sym___cdecl] = ACTIONS(1998), - [anon_sym___clrcall] = ACTIONS(1998), - [anon_sym___stdcall] = ACTIONS(1998), - [anon_sym___fastcall] = ACTIONS(1998), - [anon_sym___thiscall] = ACTIONS(1998), - [anon_sym___vectorcall] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(2000), - [anon_sym_RBRACE] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(1998), - [anon_sym_auto] = ACTIONS(1998), - [anon_sym_register] = ACTIONS(1998), - [anon_sym_inline] = ACTIONS(1998), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1998), - [anon_sym_const] = ACTIONS(1998), - [anon_sym_volatile] = ACTIONS(1998), - [anon_sym_restrict] = ACTIONS(1998), - [anon_sym__Atomic] = ACTIONS(1998), - [anon_sym_in] = ACTIONS(1998), - [anon_sym_out] = ACTIONS(1998), - [anon_sym_inout] = ACTIONS(1998), - [anon_sym_bycopy] = ACTIONS(1998), - [anon_sym_byref] = ACTIONS(1998), - [anon_sym_oneway] = ACTIONS(1998), - [anon_sym__Nullable] = ACTIONS(1998), - [anon_sym__Nonnull] = ACTIONS(1998), - [anon_sym__Nullable_result] = ACTIONS(1998), - [anon_sym__Null_unspecified] = ACTIONS(1998), - [anon_sym___autoreleasing] = ACTIONS(1998), - [anon_sym___nullable] = ACTIONS(1998), - [anon_sym___nonnull] = ACTIONS(1998), - [anon_sym___strong] = ACTIONS(1998), - [anon_sym___weak] = ACTIONS(1998), - [anon_sym___bridge] = ACTIONS(1998), - [anon_sym___bridge_transfer] = ACTIONS(1998), - [anon_sym___bridge_retained] = ACTIONS(1998), - [anon_sym___unsafe_unretained] = ACTIONS(1998), - [anon_sym___block] = ACTIONS(1998), - [anon_sym___kindof] = ACTIONS(1998), - [anon_sym___unused] = ACTIONS(1998), - [anon_sym__Complex] = ACTIONS(1998), - [anon_sym___complex] = ACTIONS(1998), - [anon_sym_IBOutlet] = ACTIONS(1998), - [anon_sym_IBInspectable] = ACTIONS(1998), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1998), - [anon_sym_signed] = ACTIONS(1998), - [anon_sym_unsigned] = ACTIONS(1998), - [anon_sym_long] = ACTIONS(1998), - [anon_sym_short] = ACTIONS(1998), - [sym_primitive_type] = ACTIONS(1998), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_NS_ENUM] = ACTIONS(1998), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1998), - [anon_sym_NS_OPTIONS] = ACTIONS(1998), - [anon_sym_struct] = ACTIONS(1998), - [anon_sym_union] = ACTIONS(1998), - [anon_sym_if] = ACTIONS(1998), - [anon_sym_switch] = ACTIONS(1998), - [anon_sym_case] = ACTIONS(1998), - [anon_sym_default] = ACTIONS(1998), - [anon_sym_while] = ACTIONS(1998), - [anon_sym_do] = ACTIONS(1998), - [anon_sym_for] = ACTIONS(1998), - [anon_sym_return] = ACTIONS(1998), - [anon_sym_break] = ACTIONS(1998), - [anon_sym_continue] = ACTIONS(1998), - [anon_sym_goto] = ACTIONS(1998), - [anon_sym_DASH_DASH] = ACTIONS(2000), - [anon_sym_PLUS_PLUS] = ACTIONS(2000), - [anon_sym_sizeof] = ACTIONS(1998), - [sym_number_literal] = ACTIONS(2000), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2000), - [anon_sym_u_DQUOTE] = ACTIONS(2000), - [anon_sym_U_DQUOTE] = ACTIONS(2000), - [anon_sym_u8_DQUOTE] = ACTIONS(2000), - [anon_sym_DQUOTE] = ACTIONS(2000), - [sym_true] = ACTIONS(1998), - [sym_false] = ACTIONS(1998), - [sym_null] = ACTIONS(1998), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2000), - [anon_sym_ATimport] = ACTIONS(2000), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1998), - [anon_sym_ATcompatibility_alias] = ACTIONS(2000), - [anon_sym_ATprotocol] = ACTIONS(2000), - [anon_sym_ATclass] = ACTIONS(2000), - [anon_sym_ATinterface] = ACTIONS(2000), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1998), - [sym_method_attribute_specifier] = ACTIONS(1998), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1998), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1998), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1998), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1998), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1998), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1998), - [anon_sym_NS_AVAILABLE] = ACTIONS(1998), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1998), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_API_AVAILABLE] = ACTIONS(1998), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1998), - [anon_sym_API_DEPRECATED] = ACTIONS(1998), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1998), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1998), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1998), - [anon_sym___deprecated_msg] = ACTIONS(1998), - [anon_sym___deprecated_enum_msg] = ACTIONS(1998), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1998), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1998), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1998), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1998), - [anon_sym_ATimplementation] = ACTIONS(2000), - [anon_sym_typeof] = ACTIONS(1998), - [anon_sym___typeof] = ACTIONS(1998), - [anon_sym___typeof__] = ACTIONS(1998), - [sym_self] = ACTIONS(1998), - [sym_super] = ACTIONS(1998), - [sym_nil] = ACTIONS(1998), - [sym_id] = ACTIONS(1998), - [sym_instancetype] = ACTIONS(1998), - [sym_Class] = ACTIONS(1998), - [sym_SEL] = ACTIONS(1998), - [sym_IMP] = ACTIONS(1998), - [sym_BOOL] = ACTIONS(1998), - [sym_auto] = ACTIONS(1998), - [anon_sym_ATautoreleasepool] = ACTIONS(2000), - [anon_sym_ATsynchronized] = ACTIONS(2000), - [anon_sym_ATtry] = ACTIONS(2000), - [anon_sym_ATthrow] = ACTIONS(2000), - [anon_sym_ATselector] = ACTIONS(2000), - [anon_sym_ATencode] = ACTIONS(2000), - [anon_sym_AT] = ACTIONS(1998), - [sym_YES] = ACTIONS(1998), - [sym_NO] = ACTIONS(1998), - [anon_sym___builtin_available] = ACTIONS(1998), - [anon_sym_ATavailable] = ACTIONS(2000), - [anon_sym_va_arg] = ACTIONS(1998), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1093] = { - [ts_builtin_sym_end] = ACTIONS(1724), - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1094] = { - [ts_builtin_sym_end] = ACTIONS(2000), - [sym_identifier] = ACTIONS(1998), - [aux_sym_preproc_include_token1] = ACTIONS(2000), - [aux_sym_preproc_def_token1] = ACTIONS(2000), - [aux_sym_preproc_if_token1] = ACTIONS(1998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1998), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2000), - [anon_sym_TILDE] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(1998), - [anon_sym_PLUS] = ACTIONS(1998), - [anon_sym_STAR] = ACTIONS(2000), - [anon_sym_CARET] = ACTIONS(2000), - [anon_sym_AMP] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_typedef] = ACTIONS(1998), - [anon_sym_extern] = ACTIONS(1998), - [anon_sym___attribute] = ACTIONS(1998), - [anon_sym___attribute__] = ACTIONS(1998), - [anon_sym___declspec] = ACTIONS(1998), - [anon_sym___cdecl] = ACTIONS(1998), - [anon_sym___clrcall] = ACTIONS(1998), - [anon_sym___stdcall] = ACTIONS(1998), - [anon_sym___fastcall] = ACTIONS(1998), - [anon_sym___thiscall] = ACTIONS(1998), - [anon_sym___vectorcall] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(2000), - [anon_sym_RBRACE] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(1998), - [anon_sym_auto] = ACTIONS(1998), - [anon_sym_register] = ACTIONS(1998), - [anon_sym_inline] = ACTIONS(1998), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1998), - [anon_sym_const] = ACTIONS(1998), - [anon_sym_volatile] = ACTIONS(1998), - [anon_sym_restrict] = ACTIONS(1998), - [anon_sym__Atomic] = ACTIONS(1998), - [anon_sym_in] = ACTIONS(1998), - [anon_sym_out] = ACTIONS(1998), - [anon_sym_inout] = ACTIONS(1998), - [anon_sym_bycopy] = ACTIONS(1998), - [anon_sym_byref] = ACTIONS(1998), - [anon_sym_oneway] = ACTIONS(1998), - [anon_sym__Nullable] = ACTIONS(1998), - [anon_sym__Nonnull] = ACTIONS(1998), - [anon_sym__Nullable_result] = ACTIONS(1998), - [anon_sym__Null_unspecified] = ACTIONS(1998), - [anon_sym___autoreleasing] = ACTIONS(1998), - [anon_sym___nullable] = ACTIONS(1998), - [anon_sym___nonnull] = ACTIONS(1998), - [anon_sym___strong] = ACTIONS(1998), - [anon_sym___weak] = ACTIONS(1998), - [anon_sym___bridge] = ACTIONS(1998), - [anon_sym___bridge_transfer] = ACTIONS(1998), - [anon_sym___bridge_retained] = ACTIONS(1998), - [anon_sym___unsafe_unretained] = ACTIONS(1998), - [anon_sym___block] = ACTIONS(1998), - [anon_sym___kindof] = ACTIONS(1998), - [anon_sym___unused] = ACTIONS(1998), - [anon_sym__Complex] = ACTIONS(1998), - [anon_sym___complex] = ACTIONS(1998), - [anon_sym_IBOutlet] = ACTIONS(1998), - [anon_sym_IBInspectable] = ACTIONS(1998), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1998), - [anon_sym_signed] = ACTIONS(1998), - [anon_sym_unsigned] = ACTIONS(1998), - [anon_sym_long] = ACTIONS(1998), - [anon_sym_short] = ACTIONS(1998), - [sym_primitive_type] = ACTIONS(1998), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_NS_ENUM] = ACTIONS(1998), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1998), - [anon_sym_NS_OPTIONS] = ACTIONS(1998), - [anon_sym_struct] = ACTIONS(1998), - [anon_sym_union] = ACTIONS(1998), - [anon_sym_if] = ACTIONS(1998), - [anon_sym_switch] = ACTIONS(1998), - [anon_sym_case] = ACTIONS(1998), - [anon_sym_default] = ACTIONS(1998), - [anon_sym_while] = ACTIONS(1998), - [anon_sym_do] = ACTIONS(1998), - [anon_sym_for] = ACTIONS(1998), - [anon_sym_return] = ACTIONS(1998), - [anon_sym_break] = ACTIONS(1998), - [anon_sym_continue] = ACTIONS(1998), - [anon_sym_goto] = ACTIONS(1998), - [anon_sym_DASH_DASH] = ACTIONS(2000), - [anon_sym_PLUS_PLUS] = ACTIONS(2000), - [anon_sym_sizeof] = ACTIONS(1998), - [sym_number_literal] = ACTIONS(2000), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2000), - [anon_sym_u_DQUOTE] = ACTIONS(2000), - [anon_sym_U_DQUOTE] = ACTIONS(2000), - [anon_sym_u8_DQUOTE] = ACTIONS(2000), - [anon_sym_DQUOTE] = ACTIONS(2000), - [sym_true] = ACTIONS(1998), - [sym_false] = ACTIONS(1998), - [sym_null] = ACTIONS(1998), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2000), - [anon_sym_ATimport] = ACTIONS(2000), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1998), - [anon_sym_ATcompatibility_alias] = ACTIONS(2000), - [anon_sym_ATprotocol] = ACTIONS(2000), - [anon_sym_ATclass] = ACTIONS(2000), - [anon_sym_ATinterface] = ACTIONS(2000), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1998), - [sym_method_attribute_specifier] = ACTIONS(1998), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1998), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1998), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1998), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1998), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1998), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1998), - [anon_sym_NS_AVAILABLE] = ACTIONS(1998), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1998), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_API_AVAILABLE] = ACTIONS(1998), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1998), - [anon_sym_API_DEPRECATED] = ACTIONS(1998), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1998), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1998), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1998), - [anon_sym___deprecated_msg] = ACTIONS(1998), - [anon_sym___deprecated_enum_msg] = ACTIONS(1998), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1998), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1998), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1998), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1998), - [anon_sym_ATimplementation] = ACTIONS(2000), - [anon_sym_typeof] = ACTIONS(1998), - [anon_sym___typeof] = ACTIONS(1998), - [anon_sym___typeof__] = ACTIONS(1998), - [sym_self] = ACTIONS(1998), - [sym_super] = ACTIONS(1998), - [sym_nil] = ACTIONS(1998), - [sym_id] = ACTIONS(1998), - [sym_instancetype] = ACTIONS(1998), - [sym_Class] = ACTIONS(1998), - [sym_SEL] = ACTIONS(1998), - [sym_IMP] = ACTIONS(1998), - [sym_BOOL] = ACTIONS(1998), - [sym_auto] = ACTIONS(1998), - [anon_sym_ATautoreleasepool] = ACTIONS(2000), - [anon_sym_ATsynchronized] = ACTIONS(2000), - [anon_sym_ATtry] = ACTIONS(2000), - [anon_sym_ATthrow] = ACTIONS(2000), - [anon_sym_ATselector] = ACTIONS(2000), - [anon_sym_ATencode] = ACTIONS(2000), - [anon_sym_AT] = ACTIONS(1998), - [sym_YES] = ACTIONS(1998), - [sym_NO] = ACTIONS(1998), - [anon_sym___builtin_available] = ACTIONS(1998), - [anon_sym_ATavailable] = ACTIONS(2000), - [anon_sym_va_arg] = ACTIONS(1998), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1095] = { - [ts_builtin_sym_end] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1962), - [aux_sym_preproc_include_token1] = ACTIONS(1964), - [aux_sym_preproc_def_token1] = ACTIONS(1964), - [aux_sym_preproc_if_token1] = ACTIONS(1962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1962), - [anon_sym_LPAREN2] = ACTIONS(1964), - [anon_sym_BANG] = ACTIONS(1964), - [anon_sym_TILDE] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_CARET] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_typedef] = ACTIONS(1962), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym___attribute] = ACTIONS(1962), - [anon_sym___attribute__] = ACTIONS(1962), - [anon_sym___declspec] = ACTIONS(1962), - [anon_sym___cdecl] = ACTIONS(1962), - [anon_sym___clrcall] = ACTIONS(1962), - [anon_sym___stdcall] = ACTIONS(1962), - [anon_sym___fastcall] = ACTIONS(1962), - [anon_sym___thiscall] = ACTIONS(1962), - [anon_sym___vectorcall] = ACTIONS(1962), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_auto] = ACTIONS(1962), - [anon_sym_register] = ACTIONS(1962), - [anon_sym_inline] = ACTIONS(1962), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_volatile] = ACTIONS(1962), - [anon_sym_restrict] = ACTIONS(1962), - [anon_sym__Atomic] = ACTIONS(1962), - [anon_sym_in] = ACTIONS(1962), - [anon_sym_out] = ACTIONS(1962), - [anon_sym_inout] = ACTIONS(1962), - [anon_sym_bycopy] = ACTIONS(1962), - [anon_sym_byref] = ACTIONS(1962), - [anon_sym_oneway] = ACTIONS(1962), - [anon_sym__Nullable] = ACTIONS(1962), - [anon_sym__Nonnull] = ACTIONS(1962), - [anon_sym__Nullable_result] = ACTIONS(1962), - [anon_sym__Null_unspecified] = ACTIONS(1962), - [anon_sym___autoreleasing] = ACTIONS(1962), - [anon_sym___nullable] = ACTIONS(1962), - [anon_sym___nonnull] = ACTIONS(1962), - [anon_sym___strong] = ACTIONS(1962), - [anon_sym___weak] = ACTIONS(1962), - [anon_sym___bridge] = ACTIONS(1962), - [anon_sym___bridge_transfer] = ACTIONS(1962), - [anon_sym___bridge_retained] = ACTIONS(1962), - [anon_sym___unsafe_unretained] = ACTIONS(1962), - [anon_sym___block] = ACTIONS(1962), - [anon_sym___kindof] = ACTIONS(1962), - [anon_sym___unused] = ACTIONS(1962), - [anon_sym__Complex] = ACTIONS(1962), - [anon_sym___complex] = ACTIONS(1962), - [anon_sym_IBOutlet] = ACTIONS(1962), - [anon_sym_IBInspectable] = ACTIONS(1962), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1962), - [anon_sym_signed] = ACTIONS(1962), - [anon_sym_unsigned] = ACTIONS(1962), - [anon_sym_long] = ACTIONS(1962), - [anon_sym_short] = ACTIONS(1962), - [sym_primitive_type] = ACTIONS(1962), - [anon_sym_enum] = ACTIONS(1962), - [anon_sym_NS_ENUM] = ACTIONS(1962), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1962), - [anon_sym_NS_OPTIONS] = ACTIONS(1962), - [anon_sym_struct] = ACTIONS(1962), - [anon_sym_union] = ACTIONS(1962), - [anon_sym_if] = ACTIONS(1962), - [anon_sym_switch] = ACTIONS(1962), - [anon_sym_case] = ACTIONS(1962), - [anon_sym_default] = ACTIONS(1962), - [anon_sym_while] = ACTIONS(1962), - [anon_sym_do] = ACTIONS(1962), - [anon_sym_for] = ACTIONS(1962), - [anon_sym_return] = ACTIONS(1962), - [anon_sym_break] = ACTIONS(1962), - [anon_sym_continue] = ACTIONS(1962), - [anon_sym_goto] = ACTIONS(1962), - [anon_sym_DASH_DASH] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1964), - [anon_sym_sizeof] = ACTIONS(1962), - [sym_number_literal] = ACTIONS(1964), - [anon_sym_L_SQUOTE] = ACTIONS(1964), - [anon_sym_u_SQUOTE] = ACTIONS(1964), - [anon_sym_U_SQUOTE] = ACTIONS(1964), - [anon_sym_u8_SQUOTE] = ACTIONS(1964), - [anon_sym_SQUOTE] = ACTIONS(1964), - [anon_sym_L_DQUOTE] = ACTIONS(1964), - [anon_sym_u_DQUOTE] = ACTIONS(1964), - [anon_sym_U_DQUOTE] = ACTIONS(1964), - [anon_sym_u8_DQUOTE] = ACTIONS(1964), - [anon_sym_DQUOTE] = ACTIONS(1964), - [sym_true] = ACTIONS(1962), - [sym_false] = ACTIONS(1962), - [sym_null] = ACTIONS(1962), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1964), - [anon_sym_ATimport] = ACTIONS(1964), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1962), - [anon_sym_ATcompatibility_alias] = ACTIONS(1964), - [anon_sym_ATprotocol] = ACTIONS(1964), - [anon_sym_ATclass] = ACTIONS(1964), - [anon_sym_ATinterface] = ACTIONS(1964), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1962), - [sym_method_attribute_specifier] = ACTIONS(1962), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1962), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1962), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1962), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1962), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1962), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1962), - [anon_sym_NS_AVAILABLE] = ACTIONS(1962), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1962), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1962), - [anon_sym_API_AVAILABLE] = ACTIONS(1962), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1962), - [anon_sym_API_DEPRECATED] = ACTIONS(1962), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1962), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1962), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1962), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1962), - [anon_sym___deprecated_msg] = ACTIONS(1962), - [anon_sym___deprecated_enum_msg] = ACTIONS(1962), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1962), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1962), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1962), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1962), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1962), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1962), - [anon_sym_ATimplementation] = ACTIONS(1964), - [anon_sym_typeof] = ACTIONS(1962), - [anon_sym___typeof] = ACTIONS(1962), - [anon_sym___typeof__] = ACTIONS(1962), - [sym_self] = ACTIONS(1962), - [sym_super] = ACTIONS(1962), - [sym_nil] = ACTIONS(1962), - [sym_id] = ACTIONS(1962), - [sym_instancetype] = ACTIONS(1962), - [sym_Class] = ACTIONS(1962), - [sym_SEL] = ACTIONS(1962), - [sym_IMP] = ACTIONS(1962), - [sym_BOOL] = ACTIONS(1962), - [sym_auto] = ACTIONS(1962), - [anon_sym_ATautoreleasepool] = ACTIONS(1964), - [anon_sym_ATsynchronized] = ACTIONS(1964), - [anon_sym_ATtry] = ACTIONS(1964), - [anon_sym_ATthrow] = ACTIONS(1964), - [anon_sym_ATselector] = ACTIONS(1964), - [anon_sym_ATencode] = ACTIONS(1964), - [anon_sym_AT] = ACTIONS(1962), - [sym_YES] = ACTIONS(1962), - [sym_NO] = ACTIONS(1962), - [anon_sym___builtin_available] = ACTIONS(1962), - [anon_sym_ATavailable] = ACTIONS(1964), - [anon_sym_va_arg] = ACTIONS(1962), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1096] = { - [ts_builtin_sym_end] = ACTIONS(1948), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_include_token1] = ACTIONS(1948), - [aux_sym_preproc_def_token1] = ACTIONS(1948), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym___cdecl] = ACTIONS(1946), - [anon_sym___clrcall] = ACTIONS(1946), - [anon_sym___stdcall] = ACTIONS(1946), - [anon_sym___fastcall] = ACTIONS(1946), - [anon_sym___thiscall] = ACTIONS(1946), - [anon_sym___vectorcall] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_RBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_out] = ACTIONS(1946), - [anon_sym_inout] = ACTIONS(1946), - [anon_sym_bycopy] = ACTIONS(1946), - [anon_sym_byref] = ACTIONS(1946), - [anon_sym_oneway] = ACTIONS(1946), - [anon_sym__Nullable] = ACTIONS(1946), - [anon_sym__Nonnull] = ACTIONS(1946), - [anon_sym__Nullable_result] = ACTIONS(1946), - [anon_sym__Null_unspecified] = ACTIONS(1946), - [anon_sym___autoreleasing] = ACTIONS(1946), - [anon_sym___nullable] = ACTIONS(1946), - [anon_sym___nonnull] = ACTIONS(1946), - [anon_sym___strong] = ACTIONS(1946), - [anon_sym___weak] = ACTIONS(1946), - [anon_sym___bridge] = ACTIONS(1946), - [anon_sym___bridge_transfer] = ACTIONS(1946), - [anon_sym___bridge_retained] = ACTIONS(1946), - [anon_sym___unsafe_unretained] = ACTIONS(1946), - [anon_sym___block] = ACTIONS(1946), - [anon_sym___kindof] = ACTIONS(1946), - [anon_sym___unused] = ACTIONS(1946), - [anon_sym__Complex] = ACTIONS(1946), - [anon_sym___complex] = ACTIONS(1946), - [anon_sym_IBOutlet] = ACTIONS(1946), - [anon_sym_IBInspectable] = ACTIONS(1946), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1946), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_NS_ENUM] = ACTIONS(1946), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1946), - [anon_sym_NS_OPTIONS] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_goto] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1948), - [anon_sym_sizeof] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(1948), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1948), - [anon_sym_u_DQUOTE] = ACTIONS(1948), - [anon_sym_U_DQUOTE] = ACTIONS(1948), - [anon_sym_u8_DQUOTE] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym_true] = ACTIONS(1946), - [sym_false] = ACTIONS(1946), - [sym_null] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1948), - [anon_sym_ATimport] = ACTIONS(1948), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1946), - [anon_sym_ATcompatibility_alias] = ACTIONS(1948), - [anon_sym_ATprotocol] = ACTIONS(1948), - [anon_sym_ATclass] = ACTIONS(1948), - [anon_sym_ATinterface] = ACTIONS(1948), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1946), - [sym_method_attribute_specifier] = ACTIONS(1946), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1946), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE] = ACTIONS(1946), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_API_AVAILABLE] = ACTIONS(1946), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_API_DEPRECATED] = ACTIONS(1946), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1946), - [anon_sym___deprecated_msg] = ACTIONS(1946), - [anon_sym___deprecated_enum_msg] = ACTIONS(1946), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1946), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1946), - [anon_sym_ATimplementation] = ACTIONS(1948), - [anon_sym_typeof] = ACTIONS(1946), - [anon_sym___typeof] = ACTIONS(1946), - [anon_sym___typeof__] = ACTIONS(1946), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_nil] = ACTIONS(1946), - [sym_id] = ACTIONS(1946), - [sym_instancetype] = ACTIONS(1946), - [sym_Class] = ACTIONS(1946), - [sym_SEL] = ACTIONS(1946), - [sym_IMP] = ACTIONS(1946), - [sym_BOOL] = ACTIONS(1946), - [sym_auto] = ACTIONS(1946), - [anon_sym_ATautoreleasepool] = ACTIONS(1948), - [anon_sym_ATsynchronized] = ACTIONS(1948), - [anon_sym_ATtry] = ACTIONS(1948), - [anon_sym_ATthrow] = ACTIONS(1948), - [anon_sym_ATselector] = ACTIONS(1948), - [anon_sym_ATencode] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [sym_YES] = ACTIONS(1946), - [sym_NO] = ACTIONS(1946), - [anon_sym___builtin_available] = ACTIONS(1946), - [anon_sym_ATavailable] = ACTIONS(1948), - [anon_sym_va_arg] = ACTIONS(1946), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1097] = { - [ts_builtin_sym_end] = ACTIONS(1948), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_include_token1] = ACTIONS(1948), - [aux_sym_preproc_def_token1] = ACTIONS(1948), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym___cdecl] = ACTIONS(1946), - [anon_sym___clrcall] = ACTIONS(1946), - [anon_sym___stdcall] = ACTIONS(1946), - [anon_sym___fastcall] = ACTIONS(1946), - [anon_sym___thiscall] = ACTIONS(1946), - [anon_sym___vectorcall] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_RBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_out] = ACTIONS(1946), - [anon_sym_inout] = ACTIONS(1946), - [anon_sym_bycopy] = ACTIONS(1946), - [anon_sym_byref] = ACTIONS(1946), - [anon_sym_oneway] = ACTIONS(1946), - [anon_sym__Nullable] = ACTIONS(1946), - [anon_sym__Nonnull] = ACTIONS(1946), - [anon_sym__Nullable_result] = ACTIONS(1946), - [anon_sym__Null_unspecified] = ACTIONS(1946), - [anon_sym___autoreleasing] = ACTIONS(1946), - [anon_sym___nullable] = ACTIONS(1946), - [anon_sym___nonnull] = ACTIONS(1946), - [anon_sym___strong] = ACTIONS(1946), - [anon_sym___weak] = ACTIONS(1946), - [anon_sym___bridge] = ACTIONS(1946), - [anon_sym___bridge_transfer] = ACTIONS(1946), - [anon_sym___bridge_retained] = ACTIONS(1946), - [anon_sym___unsafe_unretained] = ACTIONS(1946), - [anon_sym___block] = ACTIONS(1946), - [anon_sym___kindof] = ACTIONS(1946), - [anon_sym___unused] = ACTIONS(1946), - [anon_sym__Complex] = ACTIONS(1946), - [anon_sym___complex] = ACTIONS(1946), - [anon_sym_IBOutlet] = ACTIONS(1946), - [anon_sym_IBInspectable] = ACTIONS(1946), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1946), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_NS_ENUM] = ACTIONS(1946), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1946), - [anon_sym_NS_OPTIONS] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_goto] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1948), - [anon_sym_sizeof] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(1948), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1948), - [anon_sym_u_DQUOTE] = ACTIONS(1948), - [anon_sym_U_DQUOTE] = ACTIONS(1948), - [anon_sym_u8_DQUOTE] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym_true] = ACTIONS(1946), - [sym_false] = ACTIONS(1946), - [sym_null] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1948), - [anon_sym_ATimport] = ACTIONS(1948), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1946), - [anon_sym_ATcompatibility_alias] = ACTIONS(1948), - [anon_sym_ATprotocol] = ACTIONS(1948), - [anon_sym_ATclass] = ACTIONS(1948), - [anon_sym_ATinterface] = ACTIONS(1948), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1946), - [sym_method_attribute_specifier] = ACTIONS(1946), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1946), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE] = ACTIONS(1946), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_API_AVAILABLE] = ACTIONS(1946), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_API_DEPRECATED] = ACTIONS(1946), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1946), - [anon_sym___deprecated_msg] = ACTIONS(1946), - [anon_sym___deprecated_enum_msg] = ACTIONS(1946), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1946), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1946), - [anon_sym_ATimplementation] = ACTIONS(1948), - [anon_sym_typeof] = ACTIONS(1946), - [anon_sym___typeof] = ACTIONS(1946), - [anon_sym___typeof__] = ACTIONS(1946), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_nil] = ACTIONS(1946), - [sym_id] = ACTIONS(1946), - [sym_instancetype] = ACTIONS(1946), - [sym_Class] = ACTIONS(1946), - [sym_SEL] = ACTIONS(1946), - [sym_IMP] = ACTIONS(1946), - [sym_BOOL] = ACTIONS(1946), - [sym_auto] = ACTIONS(1946), - [anon_sym_ATautoreleasepool] = ACTIONS(1948), - [anon_sym_ATsynchronized] = ACTIONS(1948), - [anon_sym_ATtry] = ACTIONS(1948), - [anon_sym_ATthrow] = ACTIONS(1948), - [anon_sym_ATselector] = ACTIONS(1948), - [anon_sym_ATencode] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [sym_YES] = ACTIONS(1946), - [sym_NO] = ACTIONS(1946), - [anon_sym___builtin_available] = ACTIONS(1946), - [anon_sym_ATavailable] = ACTIONS(1948), - [anon_sym_va_arg] = ACTIONS(1946), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1098] = { - [ts_builtin_sym_end] = ACTIONS(1948), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_include_token1] = ACTIONS(1948), - [aux_sym_preproc_def_token1] = ACTIONS(1948), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym___cdecl] = ACTIONS(1946), - [anon_sym___clrcall] = ACTIONS(1946), - [anon_sym___stdcall] = ACTIONS(1946), - [anon_sym___fastcall] = ACTIONS(1946), - [anon_sym___thiscall] = ACTIONS(1946), - [anon_sym___vectorcall] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_RBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_out] = ACTIONS(1946), - [anon_sym_inout] = ACTIONS(1946), - [anon_sym_bycopy] = ACTIONS(1946), - [anon_sym_byref] = ACTIONS(1946), - [anon_sym_oneway] = ACTIONS(1946), - [anon_sym__Nullable] = ACTIONS(1946), - [anon_sym__Nonnull] = ACTIONS(1946), - [anon_sym__Nullable_result] = ACTIONS(1946), - [anon_sym__Null_unspecified] = ACTIONS(1946), - [anon_sym___autoreleasing] = ACTIONS(1946), - [anon_sym___nullable] = ACTIONS(1946), - [anon_sym___nonnull] = ACTIONS(1946), - [anon_sym___strong] = ACTIONS(1946), - [anon_sym___weak] = ACTIONS(1946), - [anon_sym___bridge] = ACTIONS(1946), - [anon_sym___bridge_transfer] = ACTIONS(1946), - [anon_sym___bridge_retained] = ACTIONS(1946), - [anon_sym___unsafe_unretained] = ACTIONS(1946), - [anon_sym___block] = ACTIONS(1946), - [anon_sym___kindof] = ACTIONS(1946), - [anon_sym___unused] = ACTIONS(1946), - [anon_sym__Complex] = ACTIONS(1946), - [anon_sym___complex] = ACTIONS(1946), - [anon_sym_IBOutlet] = ACTIONS(1946), - [anon_sym_IBInspectable] = ACTIONS(1946), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1946), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_NS_ENUM] = ACTIONS(1946), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1946), - [anon_sym_NS_OPTIONS] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_goto] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1948), - [anon_sym_sizeof] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(1948), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1948), - [anon_sym_u_DQUOTE] = ACTIONS(1948), - [anon_sym_U_DQUOTE] = ACTIONS(1948), - [anon_sym_u8_DQUOTE] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym_true] = ACTIONS(1946), - [sym_false] = ACTIONS(1946), - [sym_null] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1948), - [anon_sym_ATimport] = ACTIONS(1948), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1946), - [anon_sym_ATcompatibility_alias] = ACTIONS(1948), - [anon_sym_ATprotocol] = ACTIONS(1948), - [anon_sym_ATclass] = ACTIONS(1948), - [anon_sym_ATinterface] = ACTIONS(1948), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1946), - [sym_method_attribute_specifier] = ACTIONS(1946), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1946), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE] = ACTIONS(1946), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_API_AVAILABLE] = ACTIONS(1946), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_API_DEPRECATED] = ACTIONS(1946), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1946), - [anon_sym___deprecated_msg] = ACTIONS(1946), - [anon_sym___deprecated_enum_msg] = ACTIONS(1946), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1946), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1946), - [anon_sym_ATimplementation] = ACTIONS(1948), - [anon_sym_typeof] = ACTIONS(1946), - [anon_sym___typeof] = ACTIONS(1946), - [anon_sym___typeof__] = ACTIONS(1946), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_nil] = ACTIONS(1946), - [sym_id] = ACTIONS(1946), - [sym_instancetype] = ACTIONS(1946), - [sym_Class] = ACTIONS(1946), - [sym_SEL] = ACTIONS(1946), - [sym_IMP] = ACTIONS(1946), - [sym_BOOL] = ACTIONS(1946), - [sym_auto] = ACTIONS(1946), - [anon_sym_ATautoreleasepool] = ACTIONS(1948), - [anon_sym_ATsynchronized] = ACTIONS(1948), - [anon_sym_ATtry] = ACTIONS(1948), - [anon_sym_ATthrow] = ACTIONS(1948), - [anon_sym_ATselector] = ACTIONS(1948), - [anon_sym_ATencode] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [sym_YES] = ACTIONS(1946), - [sym_NO] = ACTIONS(1946), - [anon_sym___builtin_available] = ACTIONS(1946), - [anon_sym_ATavailable] = ACTIONS(1948), - [anon_sym_va_arg] = ACTIONS(1946), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1099] = { - [ts_builtin_sym_end] = ACTIONS(1948), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_include_token1] = ACTIONS(1948), - [aux_sym_preproc_def_token1] = ACTIONS(1948), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym___cdecl] = ACTIONS(1946), - [anon_sym___clrcall] = ACTIONS(1946), - [anon_sym___stdcall] = ACTIONS(1946), - [anon_sym___fastcall] = ACTIONS(1946), - [anon_sym___thiscall] = ACTIONS(1946), - [anon_sym___vectorcall] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_RBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_out] = ACTIONS(1946), - [anon_sym_inout] = ACTIONS(1946), - [anon_sym_bycopy] = ACTIONS(1946), - [anon_sym_byref] = ACTIONS(1946), - [anon_sym_oneway] = ACTIONS(1946), - [anon_sym__Nullable] = ACTIONS(1946), - [anon_sym__Nonnull] = ACTIONS(1946), - [anon_sym__Nullable_result] = ACTIONS(1946), - [anon_sym__Null_unspecified] = ACTIONS(1946), - [anon_sym___autoreleasing] = ACTIONS(1946), - [anon_sym___nullable] = ACTIONS(1946), - [anon_sym___nonnull] = ACTIONS(1946), - [anon_sym___strong] = ACTIONS(1946), - [anon_sym___weak] = ACTIONS(1946), - [anon_sym___bridge] = ACTIONS(1946), - [anon_sym___bridge_transfer] = ACTIONS(1946), - [anon_sym___bridge_retained] = ACTIONS(1946), - [anon_sym___unsafe_unretained] = ACTIONS(1946), - [anon_sym___block] = ACTIONS(1946), - [anon_sym___kindof] = ACTIONS(1946), - [anon_sym___unused] = ACTIONS(1946), - [anon_sym__Complex] = ACTIONS(1946), - [anon_sym___complex] = ACTIONS(1946), - [anon_sym_IBOutlet] = ACTIONS(1946), - [anon_sym_IBInspectable] = ACTIONS(1946), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1946), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_NS_ENUM] = ACTIONS(1946), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1946), - [anon_sym_NS_OPTIONS] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_goto] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1948), - [anon_sym_sizeof] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(1948), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1948), - [anon_sym_u_DQUOTE] = ACTIONS(1948), - [anon_sym_U_DQUOTE] = ACTIONS(1948), - [anon_sym_u8_DQUOTE] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym_true] = ACTIONS(1946), - [sym_false] = ACTIONS(1946), - [sym_null] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1948), - [anon_sym_ATimport] = ACTIONS(1948), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1946), - [anon_sym_ATcompatibility_alias] = ACTIONS(1948), - [anon_sym_ATprotocol] = ACTIONS(1948), - [anon_sym_ATclass] = ACTIONS(1948), - [anon_sym_ATinterface] = ACTIONS(1948), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1946), - [sym_method_attribute_specifier] = ACTIONS(1946), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1946), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE] = ACTIONS(1946), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_API_AVAILABLE] = ACTIONS(1946), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_API_DEPRECATED] = ACTIONS(1946), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1946), - [anon_sym___deprecated_msg] = ACTIONS(1946), - [anon_sym___deprecated_enum_msg] = ACTIONS(1946), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1946), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1946), - [anon_sym_ATimplementation] = ACTIONS(1948), - [anon_sym_typeof] = ACTIONS(1946), - [anon_sym___typeof] = ACTIONS(1946), - [anon_sym___typeof__] = ACTIONS(1946), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_nil] = ACTIONS(1946), - [sym_id] = ACTIONS(1946), - [sym_instancetype] = ACTIONS(1946), - [sym_Class] = ACTIONS(1946), - [sym_SEL] = ACTIONS(1946), - [sym_IMP] = ACTIONS(1946), - [sym_BOOL] = ACTIONS(1946), - [sym_auto] = ACTIONS(1946), - [anon_sym_ATautoreleasepool] = ACTIONS(1948), - [anon_sym_ATsynchronized] = ACTIONS(1948), - [anon_sym_ATtry] = ACTIONS(1948), - [anon_sym_ATthrow] = ACTIONS(1948), - [anon_sym_ATselector] = ACTIONS(1948), - [anon_sym_ATencode] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [sym_YES] = ACTIONS(1946), - [sym_NO] = ACTIONS(1946), - [anon_sym___builtin_available] = ACTIONS(1946), - [anon_sym_ATavailable] = ACTIONS(1948), - [anon_sym_va_arg] = ACTIONS(1946), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1100] = { - [ts_builtin_sym_end] = ACTIONS(1956), - [sym_identifier] = ACTIONS(1954), - [aux_sym_preproc_include_token1] = ACTIONS(1956), - [aux_sym_preproc_def_token1] = ACTIONS(1956), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1954), - [anon_sym_LPAREN2] = ACTIONS(1956), - [anon_sym_BANG] = ACTIONS(1956), - [anon_sym_TILDE] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1954), - [anon_sym_PLUS] = ACTIONS(1954), - [anon_sym_STAR] = ACTIONS(1956), - [anon_sym_CARET] = ACTIONS(1956), - [anon_sym_AMP] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_typedef] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym___attribute] = ACTIONS(1954), - [anon_sym___attribute__] = ACTIONS(1954), - [anon_sym___declspec] = ACTIONS(1954), - [anon_sym___cdecl] = ACTIONS(1954), - [anon_sym___clrcall] = ACTIONS(1954), - [anon_sym___stdcall] = ACTIONS(1954), - [anon_sym___fastcall] = ACTIONS(1954), - [anon_sym___thiscall] = ACTIONS(1954), - [anon_sym___vectorcall] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1956), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_auto] = ACTIONS(1954), - [anon_sym_register] = ACTIONS(1954), - [anon_sym_inline] = ACTIONS(1954), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_volatile] = ACTIONS(1954), - [anon_sym_restrict] = ACTIONS(1954), - [anon_sym__Atomic] = ACTIONS(1954), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_out] = ACTIONS(1954), - [anon_sym_inout] = ACTIONS(1954), - [anon_sym_bycopy] = ACTIONS(1954), - [anon_sym_byref] = ACTIONS(1954), - [anon_sym_oneway] = ACTIONS(1954), - [anon_sym__Nullable] = ACTIONS(1954), - [anon_sym__Nonnull] = ACTIONS(1954), - [anon_sym__Nullable_result] = ACTIONS(1954), - [anon_sym__Null_unspecified] = ACTIONS(1954), - [anon_sym___autoreleasing] = ACTIONS(1954), - [anon_sym___nullable] = ACTIONS(1954), - [anon_sym___nonnull] = ACTIONS(1954), - [anon_sym___strong] = ACTIONS(1954), - [anon_sym___weak] = ACTIONS(1954), - [anon_sym___bridge] = ACTIONS(1954), - [anon_sym___bridge_transfer] = ACTIONS(1954), - [anon_sym___bridge_retained] = ACTIONS(1954), - [anon_sym___unsafe_unretained] = ACTIONS(1954), - [anon_sym___block] = ACTIONS(1954), - [anon_sym___kindof] = ACTIONS(1954), - [anon_sym___unused] = ACTIONS(1954), - [anon_sym__Complex] = ACTIONS(1954), - [anon_sym___complex] = ACTIONS(1954), - [anon_sym_IBOutlet] = ACTIONS(1954), - [anon_sym_IBInspectable] = ACTIONS(1954), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1954), - [anon_sym_signed] = ACTIONS(1954), - [anon_sym_unsigned] = ACTIONS(1954), - [anon_sym_long] = ACTIONS(1954), - [anon_sym_short] = ACTIONS(1954), - [sym_primitive_type] = ACTIONS(1954), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_NS_ENUM] = ACTIONS(1954), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1954), - [anon_sym_NS_OPTIONS] = ACTIONS(1954), - [anon_sym_struct] = ACTIONS(1954), - [anon_sym_union] = ACTIONS(1954), - [anon_sym_if] = ACTIONS(1954), - [anon_sym_switch] = ACTIONS(1954), - [anon_sym_case] = ACTIONS(1954), - [anon_sym_default] = ACTIONS(1954), - [anon_sym_while] = ACTIONS(1954), - [anon_sym_do] = ACTIONS(1954), - [anon_sym_for] = ACTIONS(1954), - [anon_sym_return] = ACTIONS(1954), - [anon_sym_break] = ACTIONS(1954), - [anon_sym_continue] = ACTIONS(1954), - [anon_sym_goto] = ACTIONS(1954), - [anon_sym_DASH_DASH] = ACTIONS(1956), - [anon_sym_PLUS_PLUS] = ACTIONS(1956), - [anon_sym_sizeof] = ACTIONS(1954), - [sym_number_literal] = ACTIONS(1956), - [anon_sym_L_SQUOTE] = ACTIONS(1956), - [anon_sym_u_SQUOTE] = ACTIONS(1956), - [anon_sym_U_SQUOTE] = ACTIONS(1956), - [anon_sym_u8_SQUOTE] = ACTIONS(1956), - [anon_sym_SQUOTE] = ACTIONS(1956), - [anon_sym_L_DQUOTE] = ACTIONS(1956), - [anon_sym_u_DQUOTE] = ACTIONS(1956), - [anon_sym_U_DQUOTE] = ACTIONS(1956), - [anon_sym_u8_DQUOTE] = ACTIONS(1956), - [anon_sym_DQUOTE] = ACTIONS(1956), - [sym_true] = ACTIONS(1954), - [sym_false] = ACTIONS(1954), - [sym_null] = ACTIONS(1954), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1956), - [anon_sym_ATimport] = ACTIONS(1956), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1954), - [anon_sym_ATcompatibility_alias] = ACTIONS(1956), - [anon_sym_ATprotocol] = ACTIONS(1956), - [anon_sym_ATclass] = ACTIONS(1956), - [anon_sym_ATinterface] = ACTIONS(1956), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1954), - [sym_method_attribute_specifier] = ACTIONS(1954), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1954), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1954), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1954), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1954), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1954), - [anon_sym_NS_AVAILABLE] = ACTIONS(1954), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1954), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_API_AVAILABLE] = ACTIONS(1954), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_API_DEPRECATED] = ACTIONS(1954), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1954), - [anon_sym___deprecated_msg] = ACTIONS(1954), - [anon_sym___deprecated_enum_msg] = ACTIONS(1954), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1954), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1954), - [anon_sym_ATimplementation] = ACTIONS(1956), - [anon_sym_typeof] = ACTIONS(1954), - [anon_sym___typeof] = ACTIONS(1954), - [anon_sym___typeof__] = ACTIONS(1954), - [sym_self] = ACTIONS(1954), - [sym_super] = ACTIONS(1954), - [sym_nil] = ACTIONS(1954), - [sym_id] = ACTIONS(1954), - [sym_instancetype] = ACTIONS(1954), - [sym_Class] = ACTIONS(1954), - [sym_SEL] = ACTIONS(1954), - [sym_IMP] = ACTIONS(1954), - [sym_BOOL] = ACTIONS(1954), - [sym_auto] = ACTIONS(1954), - [anon_sym_ATautoreleasepool] = ACTIONS(1956), - [anon_sym_ATsynchronized] = ACTIONS(1956), - [anon_sym_ATtry] = ACTIONS(1956), - [anon_sym_ATthrow] = ACTIONS(1956), - [anon_sym_ATselector] = ACTIONS(1956), - [anon_sym_ATencode] = ACTIONS(1956), - [anon_sym_AT] = ACTIONS(1954), - [sym_YES] = ACTIONS(1954), - [sym_NO] = ACTIONS(1954), - [anon_sym___builtin_available] = ACTIONS(1954), - [anon_sym_ATavailable] = ACTIONS(1956), - [anon_sym_va_arg] = ACTIONS(1954), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1101] = { - [ts_builtin_sym_end] = ACTIONS(1960), - [sym_identifier] = ACTIONS(1958), - [aux_sym_preproc_include_token1] = ACTIONS(1960), - [aux_sym_preproc_def_token1] = ACTIONS(1960), - [aux_sym_preproc_if_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [anon_sym_LPAREN2] = ACTIONS(1960), - [anon_sym_BANG] = ACTIONS(1960), - [anon_sym_TILDE] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_STAR] = ACTIONS(1960), - [anon_sym_CARET] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_SEMI] = ACTIONS(1960), - [anon_sym_typedef] = ACTIONS(1958), - [anon_sym_extern] = ACTIONS(1958), - [anon_sym___attribute] = ACTIONS(1958), - [anon_sym___attribute__] = ACTIONS(1958), - [anon_sym___declspec] = ACTIONS(1958), - [anon_sym___cdecl] = ACTIONS(1958), - [anon_sym___clrcall] = ACTIONS(1958), - [anon_sym___stdcall] = ACTIONS(1958), - [anon_sym___fastcall] = ACTIONS(1958), - [anon_sym___thiscall] = ACTIONS(1958), - [anon_sym___vectorcall] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1960), - [anon_sym_RBRACE] = ACTIONS(1960), - [anon_sym_LBRACK] = ACTIONS(1960), - [anon_sym_static] = ACTIONS(1958), - [anon_sym_auto] = ACTIONS(1958), - [anon_sym_register] = ACTIONS(1958), - [anon_sym_inline] = ACTIONS(1958), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1958), - [anon_sym_const] = ACTIONS(1958), - [anon_sym_volatile] = ACTIONS(1958), - [anon_sym_restrict] = ACTIONS(1958), - [anon_sym__Atomic] = ACTIONS(1958), - [anon_sym_in] = ACTIONS(1958), - [anon_sym_out] = ACTIONS(1958), - [anon_sym_inout] = ACTIONS(1958), - [anon_sym_bycopy] = ACTIONS(1958), - [anon_sym_byref] = ACTIONS(1958), - [anon_sym_oneway] = ACTIONS(1958), - [anon_sym__Nullable] = ACTIONS(1958), - [anon_sym__Nonnull] = ACTIONS(1958), - [anon_sym__Nullable_result] = ACTIONS(1958), - [anon_sym__Null_unspecified] = ACTIONS(1958), - [anon_sym___autoreleasing] = ACTIONS(1958), - [anon_sym___nullable] = ACTIONS(1958), - [anon_sym___nonnull] = ACTIONS(1958), - [anon_sym___strong] = ACTIONS(1958), - [anon_sym___weak] = ACTIONS(1958), - [anon_sym___bridge] = ACTIONS(1958), - [anon_sym___bridge_transfer] = ACTIONS(1958), - [anon_sym___bridge_retained] = ACTIONS(1958), - [anon_sym___unsafe_unretained] = ACTIONS(1958), - [anon_sym___block] = ACTIONS(1958), - [anon_sym___kindof] = ACTIONS(1958), - [anon_sym___unused] = ACTIONS(1958), - [anon_sym__Complex] = ACTIONS(1958), - [anon_sym___complex] = ACTIONS(1958), - [anon_sym_IBOutlet] = ACTIONS(1958), - [anon_sym_IBInspectable] = ACTIONS(1958), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1958), - [anon_sym_signed] = ACTIONS(1958), - [anon_sym_unsigned] = ACTIONS(1958), - [anon_sym_long] = ACTIONS(1958), - [anon_sym_short] = ACTIONS(1958), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_enum] = ACTIONS(1958), - [anon_sym_NS_ENUM] = ACTIONS(1958), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1958), - [anon_sym_NS_OPTIONS] = ACTIONS(1958), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1958), - [anon_sym_if] = ACTIONS(1958), - [anon_sym_switch] = ACTIONS(1958), - [anon_sym_case] = ACTIONS(1958), - [anon_sym_default] = ACTIONS(1958), - [anon_sym_while] = ACTIONS(1958), - [anon_sym_do] = ACTIONS(1958), - [anon_sym_for] = ACTIONS(1958), - [anon_sym_return] = ACTIONS(1958), - [anon_sym_break] = ACTIONS(1958), - [anon_sym_continue] = ACTIONS(1958), - [anon_sym_goto] = ACTIONS(1958), - [anon_sym_DASH_DASH] = ACTIONS(1960), - [anon_sym_PLUS_PLUS] = ACTIONS(1960), - [anon_sym_sizeof] = ACTIONS(1958), - [sym_number_literal] = ACTIONS(1960), - [anon_sym_L_SQUOTE] = ACTIONS(1960), - [anon_sym_u_SQUOTE] = ACTIONS(1960), - [anon_sym_U_SQUOTE] = ACTIONS(1960), - [anon_sym_u8_SQUOTE] = ACTIONS(1960), - [anon_sym_SQUOTE] = ACTIONS(1960), - [anon_sym_L_DQUOTE] = ACTIONS(1960), - [anon_sym_u_DQUOTE] = ACTIONS(1960), - [anon_sym_U_DQUOTE] = ACTIONS(1960), - [anon_sym_u8_DQUOTE] = ACTIONS(1960), - [anon_sym_DQUOTE] = ACTIONS(1960), - [sym_true] = ACTIONS(1958), - [sym_false] = ACTIONS(1958), - [sym_null] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1960), - [anon_sym_ATimport] = ACTIONS(1960), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1958), - [anon_sym_ATcompatibility_alias] = ACTIONS(1960), - [anon_sym_ATprotocol] = ACTIONS(1960), - [anon_sym_ATclass] = ACTIONS(1960), - [anon_sym_ATinterface] = ACTIONS(1960), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1958), - [sym_method_attribute_specifier] = ACTIONS(1958), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1958), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1958), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1958), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1958), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1958), - [anon_sym_NS_AVAILABLE] = ACTIONS(1958), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1958), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_API_AVAILABLE] = ACTIONS(1958), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_API_DEPRECATED] = ACTIONS(1958), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1958), - [anon_sym___deprecated_msg] = ACTIONS(1958), - [anon_sym___deprecated_enum_msg] = ACTIONS(1958), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1958), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1958), - [anon_sym_ATimplementation] = ACTIONS(1960), - [anon_sym_typeof] = ACTIONS(1958), - [anon_sym___typeof] = ACTIONS(1958), - [anon_sym___typeof__] = ACTIONS(1958), - [sym_self] = ACTIONS(1958), - [sym_super] = ACTIONS(1958), - [sym_nil] = ACTIONS(1958), - [sym_id] = ACTIONS(1958), - [sym_instancetype] = ACTIONS(1958), - [sym_Class] = ACTIONS(1958), - [sym_SEL] = ACTIONS(1958), - [sym_IMP] = ACTIONS(1958), - [sym_BOOL] = ACTIONS(1958), - [sym_auto] = ACTIONS(1958), - [anon_sym_ATautoreleasepool] = ACTIONS(1960), - [anon_sym_ATsynchronized] = ACTIONS(1960), - [anon_sym_ATtry] = ACTIONS(1960), - [anon_sym_ATthrow] = ACTIONS(1960), - [anon_sym_ATselector] = ACTIONS(1960), - [anon_sym_ATencode] = ACTIONS(1960), - [anon_sym_AT] = ACTIONS(1958), - [sym_YES] = ACTIONS(1958), - [sym_NO] = ACTIONS(1958), - [anon_sym___builtin_available] = ACTIONS(1958), - [anon_sym_ATavailable] = ACTIONS(1960), - [anon_sym_va_arg] = ACTIONS(1958), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1102] = { - [ts_builtin_sym_end] = ACTIONS(2144), - [sym_identifier] = ACTIONS(2142), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym___attribute] = ACTIONS(2142), - [anon_sym___attribute__] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2142), - [anon_sym___cdecl] = ACTIONS(2142), - [anon_sym___clrcall] = ACTIONS(2142), - [anon_sym___stdcall] = ACTIONS(2142), - [anon_sym___fastcall] = ACTIONS(2142), - [anon_sym___thiscall] = ACTIONS(2142), - [anon_sym___vectorcall] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_auto] = ACTIONS(2142), - [anon_sym_register] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_volatile] = ACTIONS(2142), - [anon_sym_restrict] = ACTIONS(2142), - [anon_sym__Atomic] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_out] = ACTIONS(2142), - [anon_sym_inout] = ACTIONS(2142), - [anon_sym_bycopy] = ACTIONS(2142), - [anon_sym_byref] = ACTIONS(2142), - [anon_sym_oneway] = ACTIONS(2142), - [anon_sym__Nullable] = ACTIONS(2142), - [anon_sym__Nonnull] = ACTIONS(2142), - [anon_sym__Nullable_result] = ACTIONS(2142), - [anon_sym__Null_unspecified] = ACTIONS(2142), - [anon_sym___autoreleasing] = ACTIONS(2142), - [anon_sym___nullable] = ACTIONS(2142), - [anon_sym___nonnull] = ACTIONS(2142), - [anon_sym___strong] = ACTIONS(2142), - [anon_sym___weak] = ACTIONS(2142), - [anon_sym___bridge] = ACTIONS(2142), - [anon_sym___bridge_transfer] = ACTIONS(2142), - [anon_sym___bridge_retained] = ACTIONS(2142), - [anon_sym___unsafe_unretained] = ACTIONS(2142), - [anon_sym___block] = ACTIONS(2142), - [anon_sym___kindof] = ACTIONS(2142), - [anon_sym___unused] = ACTIONS(2142), - [anon_sym__Complex] = ACTIONS(2142), - [anon_sym___complex] = ACTIONS(2142), - [anon_sym_IBOutlet] = ACTIONS(2142), - [anon_sym_IBInspectable] = ACTIONS(2142), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2142), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_NS_ENUM] = ACTIONS(2142), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2142), - [anon_sym_NS_OPTIONS] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_goto] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_sizeof] = ACTIONS(2142), - [sym_number_literal] = ACTIONS(2144), - [anon_sym_L_SQUOTE] = ACTIONS(2144), - [anon_sym_u_SQUOTE] = ACTIONS(2144), - [anon_sym_U_SQUOTE] = ACTIONS(2144), - [anon_sym_u8_SQUOTE] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_L_DQUOTE] = ACTIONS(2144), - [anon_sym_u_DQUOTE] = ACTIONS(2144), - [anon_sym_U_DQUOTE] = ACTIONS(2144), - [anon_sym_u8_DQUOTE] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2144), - [anon_sym_ATimport] = ACTIONS(2144), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2142), - [anon_sym_ATcompatibility_alias] = ACTIONS(2144), - [anon_sym_ATprotocol] = ACTIONS(2144), - [anon_sym_ATclass] = ACTIONS(2144), - [anon_sym_ATinterface] = ACTIONS(2144), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2142), - [sym_method_attribute_specifier] = ACTIONS(2142), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2142), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE] = ACTIONS(2142), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_API_AVAILABLE] = ACTIONS(2142), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_API_DEPRECATED] = ACTIONS(2142), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2142), - [anon_sym___deprecated_msg] = ACTIONS(2142), - [anon_sym___deprecated_enum_msg] = ACTIONS(2142), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2142), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2142), - [anon_sym_ATimplementation] = ACTIONS(2144), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym___typeof] = ACTIONS(2142), - [anon_sym___typeof__] = ACTIONS(2142), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_nil] = ACTIONS(2142), - [sym_id] = ACTIONS(2142), - [sym_instancetype] = ACTIONS(2142), - [sym_Class] = ACTIONS(2142), - [sym_SEL] = ACTIONS(2142), - [sym_IMP] = ACTIONS(2142), - [sym_BOOL] = ACTIONS(2142), - [sym_auto] = ACTIONS(2142), - [anon_sym_ATautoreleasepool] = ACTIONS(2144), - [anon_sym_ATsynchronized] = ACTIONS(2144), - [anon_sym_ATtry] = ACTIONS(2144), - [anon_sym_ATthrow] = ACTIONS(2144), - [anon_sym_ATselector] = ACTIONS(2144), - [anon_sym_ATencode] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2142), - [sym_YES] = ACTIONS(2142), - [sym_NO] = ACTIONS(2142), - [anon_sym___builtin_available] = ACTIONS(2142), - [anon_sym_ATavailable] = ACTIONS(2144), - [anon_sym_va_arg] = ACTIONS(2142), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1103] = { - [ts_builtin_sym_end] = ACTIONS(1948), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_include_token1] = ACTIONS(1948), - [aux_sym_preproc_def_token1] = ACTIONS(1948), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym___cdecl] = ACTIONS(1946), - [anon_sym___clrcall] = ACTIONS(1946), - [anon_sym___stdcall] = ACTIONS(1946), - [anon_sym___fastcall] = ACTIONS(1946), - [anon_sym___thiscall] = ACTIONS(1946), - [anon_sym___vectorcall] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_RBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_out] = ACTIONS(1946), - [anon_sym_inout] = ACTIONS(1946), - [anon_sym_bycopy] = ACTIONS(1946), - [anon_sym_byref] = ACTIONS(1946), - [anon_sym_oneway] = ACTIONS(1946), - [anon_sym__Nullable] = ACTIONS(1946), - [anon_sym__Nonnull] = ACTIONS(1946), - [anon_sym__Nullable_result] = ACTIONS(1946), - [anon_sym__Null_unspecified] = ACTIONS(1946), - [anon_sym___autoreleasing] = ACTIONS(1946), - [anon_sym___nullable] = ACTIONS(1946), - [anon_sym___nonnull] = ACTIONS(1946), - [anon_sym___strong] = ACTIONS(1946), - [anon_sym___weak] = ACTIONS(1946), - [anon_sym___bridge] = ACTIONS(1946), - [anon_sym___bridge_transfer] = ACTIONS(1946), - [anon_sym___bridge_retained] = ACTIONS(1946), - [anon_sym___unsafe_unretained] = ACTIONS(1946), - [anon_sym___block] = ACTIONS(1946), - [anon_sym___kindof] = ACTIONS(1946), - [anon_sym___unused] = ACTIONS(1946), - [anon_sym__Complex] = ACTIONS(1946), - [anon_sym___complex] = ACTIONS(1946), - [anon_sym_IBOutlet] = ACTIONS(1946), - [anon_sym_IBInspectable] = ACTIONS(1946), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1946), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_NS_ENUM] = ACTIONS(1946), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1946), - [anon_sym_NS_OPTIONS] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_goto] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1948), - [anon_sym_sizeof] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(1948), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1948), - [anon_sym_u_DQUOTE] = ACTIONS(1948), - [anon_sym_U_DQUOTE] = ACTIONS(1948), - [anon_sym_u8_DQUOTE] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym_true] = ACTIONS(1946), - [sym_false] = ACTIONS(1946), - [sym_null] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1948), - [anon_sym_ATimport] = ACTIONS(1948), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1946), - [anon_sym_ATcompatibility_alias] = ACTIONS(1948), - [anon_sym_ATprotocol] = ACTIONS(1948), - [anon_sym_ATclass] = ACTIONS(1948), - [anon_sym_ATinterface] = ACTIONS(1948), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1946), - [sym_method_attribute_specifier] = ACTIONS(1946), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1946), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE] = ACTIONS(1946), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_API_AVAILABLE] = ACTIONS(1946), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_API_DEPRECATED] = ACTIONS(1946), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1946), - [anon_sym___deprecated_msg] = ACTIONS(1946), - [anon_sym___deprecated_enum_msg] = ACTIONS(1946), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1946), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1946), - [anon_sym_ATimplementation] = ACTIONS(1948), - [anon_sym_typeof] = ACTIONS(1946), - [anon_sym___typeof] = ACTIONS(1946), - [anon_sym___typeof__] = ACTIONS(1946), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_nil] = ACTIONS(1946), - [sym_id] = ACTIONS(1946), - [sym_instancetype] = ACTIONS(1946), - [sym_Class] = ACTIONS(1946), - [sym_SEL] = ACTIONS(1946), - [sym_IMP] = ACTIONS(1946), - [sym_BOOL] = ACTIONS(1946), - [sym_auto] = ACTIONS(1946), - [anon_sym_ATautoreleasepool] = ACTIONS(1948), - [anon_sym_ATsynchronized] = ACTIONS(1948), - [anon_sym_ATtry] = ACTIONS(1948), - [anon_sym_ATthrow] = ACTIONS(1948), - [anon_sym_ATselector] = ACTIONS(1948), - [anon_sym_ATencode] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [sym_YES] = ACTIONS(1946), - [sym_NO] = ACTIONS(1946), - [anon_sym___builtin_available] = ACTIONS(1946), - [anon_sym_ATavailable] = ACTIONS(1948), - [anon_sym_va_arg] = ACTIONS(1946), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1104] = { - [ts_builtin_sym_end] = ACTIONS(2144), - [sym_identifier] = ACTIONS(2142), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym___attribute] = ACTIONS(2142), - [anon_sym___attribute__] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2142), - [anon_sym___cdecl] = ACTIONS(2142), - [anon_sym___clrcall] = ACTIONS(2142), - [anon_sym___stdcall] = ACTIONS(2142), - [anon_sym___fastcall] = ACTIONS(2142), - [anon_sym___thiscall] = ACTIONS(2142), - [anon_sym___vectorcall] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_auto] = ACTIONS(2142), - [anon_sym_register] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_volatile] = ACTIONS(2142), - [anon_sym_restrict] = ACTIONS(2142), - [anon_sym__Atomic] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_out] = ACTIONS(2142), - [anon_sym_inout] = ACTIONS(2142), - [anon_sym_bycopy] = ACTIONS(2142), - [anon_sym_byref] = ACTIONS(2142), - [anon_sym_oneway] = ACTIONS(2142), - [anon_sym__Nullable] = ACTIONS(2142), - [anon_sym__Nonnull] = ACTIONS(2142), - [anon_sym__Nullable_result] = ACTIONS(2142), - [anon_sym__Null_unspecified] = ACTIONS(2142), - [anon_sym___autoreleasing] = ACTIONS(2142), - [anon_sym___nullable] = ACTIONS(2142), - [anon_sym___nonnull] = ACTIONS(2142), - [anon_sym___strong] = ACTIONS(2142), - [anon_sym___weak] = ACTIONS(2142), - [anon_sym___bridge] = ACTIONS(2142), - [anon_sym___bridge_transfer] = ACTIONS(2142), - [anon_sym___bridge_retained] = ACTIONS(2142), - [anon_sym___unsafe_unretained] = ACTIONS(2142), - [anon_sym___block] = ACTIONS(2142), - [anon_sym___kindof] = ACTIONS(2142), - [anon_sym___unused] = ACTIONS(2142), - [anon_sym__Complex] = ACTIONS(2142), - [anon_sym___complex] = ACTIONS(2142), - [anon_sym_IBOutlet] = ACTIONS(2142), - [anon_sym_IBInspectable] = ACTIONS(2142), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2142), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_NS_ENUM] = ACTIONS(2142), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2142), - [anon_sym_NS_OPTIONS] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_goto] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_sizeof] = ACTIONS(2142), - [sym_number_literal] = ACTIONS(2144), - [anon_sym_L_SQUOTE] = ACTIONS(2144), - [anon_sym_u_SQUOTE] = ACTIONS(2144), - [anon_sym_U_SQUOTE] = ACTIONS(2144), - [anon_sym_u8_SQUOTE] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_L_DQUOTE] = ACTIONS(2144), - [anon_sym_u_DQUOTE] = ACTIONS(2144), - [anon_sym_U_DQUOTE] = ACTIONS(2144), - [anon_sym_u8_DQUOTE] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2144), - [anon_sym_ATimport] = ACTIONS(2144), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2142), - [anon_sym_ATcompatibility_alias] = ACTIONS(2144), - [anon_sym_ATprotocol] = ACTIONS(2144), - [anon_sym_ATclass] = ACTIONS(2144), - [anon_sym_ATinterface] = ACTIONS(2144), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2142), - [sym_method_attribute_specifier] = ACTIONS(2142), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2142), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE] = ACTIONS(2142), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_API_AVAILABLE] = ACTIONS(2142), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_API_DEPRECATED] = ACTIONS(2142), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2142), - [anon_sym___deprecated_msg] = ACTIONS(2142), - [anon_sym___deprecated_enum_msg] = ACTIONS(2142), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2142), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2142), - [anon_sym_ATimplementation] = ACTIONS(2144), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym___typeof] = ACTIONS(2142), - [anon_sym___typeof__] = ACTIONS(2142), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_nil] = ACTIONS(2142), - [sym_id] = ACTIONS(2142), - [sym_instancetype] = ACTIONS(2142), - [sym_Class] = ACTIONS(2142), - [sym_SEL] = ACTIONS(2142), - [sym_IMP] = ACTIONS(2142), - [sym_BOOL] = ACTIONS(2142), - [sym_auto] = ACTIONS(2142), - [anon_sym_ATautoreleasepool] = ACTIONS(2144), - [anon_sym_ATsynchronized] = ACTIONS(2144), - [anon_sym_ATtry] = ACTIONS(2144), - [anon_sym_ATthrow] = ACTIONS(2144), - [anon_sym_ATselector] = ACTIONS(2144), - [anon_sym_ATencode] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2142), - [sym_YES] = ACTIONS(2142), - [sym_NO] = ACTIONS(2142), - [anon_sym___builtin_available] = ACTIONS(2142), - [anon_sym_ATavailable] = ACTIONS(2144), - [anon_sym_va_arg] = ACTIONS(2142), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1105] = { - [ts_builtin_sym_end] = ACTIONS(1988), - [sym_identifier] = ACTIONS(1986), - [aux_sym_preproc_include_token1] = ACTIONS(1988), - [aux_sym_preproc_def_token1] = ACTIONS(1988), - [aux_sym_preproc_if_token1] = ACTIONS(1986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1986), - [anon_sym_LPAREN2] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1988), - [anon_sym_TILDE] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_CARET] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1988), - [anon_sym_typedef] = ACTIONS(1986), - [anon_sym_extern] = ACTIONS(1986), - [anon_sym___attribute] = ACTIONS(1986), - [anon_sym___attribute__] = ACTIONS(1986), - [anon_sym___declspec] = ACTIONS(1986), - [anon_sym___cdecl] = ACTIONS(1986), - [anon_sym___clrcall] = ACTIONS(1986), - [anon_sym___stdcall] = ACTIONS(1986), - [anon_sym___fastcall] = ACTIONS(1986), - [anon_sym___thiscall] = ACTIONS(1986), - [anon_sym___vectorcall] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_RBRACE] = ACTIONS(1988), - [anon_sym_LBRACK] = ACTIONS(1988), - [anon_sym_static] = ACTIONS(1986), - [anon_sym_auto] = ACTIONS(1986), - [anon_sym_register] = ACTIONS(1986), - [anon_sym_inline] = ACTIONS(1986), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1986), - [anon_sym_const] = ACTIONS(1986), - [anon_sym_volatile] = ACTIONS(1986), - [anon_sym_restrict] = ACTIONS(1986), - [anon_sym__Atomic] = ACTIONS(1986), - [anon_sym_in] = ACTIONS(1986), - [anon_sym_out] = ACTIONS(1986), - [anon_sym_inout] = ACTIONS(1986), - [anon_sym_bycopy] = ACTIONS(1986), - [anon_sym_byref] = ACTIONS(1986), - [anon_sym_oneway] = ACTIONS(1986), - [anon_sym__Nullable] = ACTIONS(1986), - [anon_sym__Nonnull] = ACTIONS(1986), - [anon_sym__Nullable_result] = ACTIONS(1986), - [anon_sym__Null_unspecified] = ACTIONS(1986), - [anon_sym___autoreleasing] = ACTIONS(1986), - [anon_sym___nullable] = ACTIONS(1986), - [anon_sym___nonnull] = ACTIONS(1986), - [anon_sym___strong] = ACTIONS(1986), - [anon_sym___weak] = ACTIONS(1986), - [anon_sym___bridge] = ACTIONS(1986), - [anon_sym___bridge_transfer] = ACTIONS(1986), - [anon_sym___bridge_retained] = ACTIONS(1986), - [anon_sym___unsafe_unretained] = ACTIONS(1986), - [anon_sym___block] = ACTIONS(1986), - [anon_sym___kindof] = ACTIONS(1986), - [anon_sym___unused] = ACTIONS(1986), - [anon_sym__Complex] = ACTIONS(1986), - [anon_sym___complex] = ACTIONS(1986), - [anon_sym_IBOutlet] = ACTIONS(1986), - [anon_sym_IBInspectable] = ACTIONS(1986), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1986), - [anon_sym_signed] = ACTIONS(1986), - [anon_sym_unsigned] = ACTIONS(1986), - [anon_sym_long] = ACTIONS(1986), - [anon_sym_short] = ACTIONS(1986), - [sym_primitive_type] = ACTIONS(1986), - [anon_sym_enum] = ACTIONS(1986), - [anon_sym_NS_ENUM] = ACTIONS(1986), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1986), - [anon_sym_NS_OPTIONS] = ACTIONS(1986), - [anon_sym_struct] = ACTIONS(1986), - [anon_sym_union] = ACTIONS(1986), - [anon_sym_if] = ACTIONS(1986), - [anon_sym_switch] = ACTIONS(1986), - [anon_sym_case] = ACTIONS(1986), - [anon_sym_default] = ACTIONS(1986), - [anon_sym_while] = ACTIONS(1986), - [anon_sym_do] = ACTIONS(1986), - [anon_sym_for] = ACTIONS(1986), - [anon_sym_return] = ACTIONS(1986), - [anon_sym_break] = ACTIONS(1986), - [anon_sym_continue] = ACTIONS(1986), - [anon_sym_goto] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1988), - [anon_sym_PLUS_PLUS] = ACTIONS(1988), - [anon_sym_sizeof] = ACTIONS(1986), - [sym_number_literal] = ACTIONS(1988), - [anon_sym_L_SQUOTE] = ACTIONS(1988), - [anon_sym_u_SQUOTE] = ACTIONS(1988), - [anon_sym_U_SQUOTE] = ACTIONS(1988), - [anon_sym_u8_SQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1988), - [anon_sym_L_DQUOTE] = ACTIONS(1988), - [anon_sym_u_DQUOTE] = ACTIONS(1988), - [anon_sym_U_DQUOTE] = ACTIONS(1988), - [anon_sym_u8_DQUOTE] = ACTIONS(1988), - [anon_sym_DQUOTE] = ACTIONS(1988), - [sym_true] = ACTIONS(1986), - [sym_false] = ACTIONS(1986), - [sym_null] = ACTIONS(1986), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1988), - [anon_sym_ATimport] = ACTIONS(1988), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1986), - [anon_sym_ATcompatibility_alias] = ACTIONS(1988), - [anon_sym_ATprotocol] = ACTIONS(1988), - [anon_sym_ATclass] = ACTIONS(1988), - [anon_sym_ATinterface] = ACTIONS(1988), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1986), - [sym_method_attribute_specifier] = ACTIONS(1986), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1986), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1986), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1986), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1986), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1986), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1986), - [anon_sym_NS_AVAILABLE] = ACTIONS(1986), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1986), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1986), - [anon_sym_API_AVAILABLE] = ACTIONS(1986), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1986), - [anon_sym_API_DEPRECATED] = ACTIONS(1986), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1986), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1986), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1986), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1986), - [anon_sym___deprecated_msg] = ACTIONS(1986), - [anon_sym___deprecated_enum_msg] = ACTIONS(1986), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1986), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1986), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1986), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1986), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1986), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1986), - [anon_sym_ATimplementation] = ACTIONS(1988), - [anon_sym_typeof] = ACTIONS(1986), - [anon_sym___typeof] = ACTIONS(1986), - [anon_sym___typeof__] = ACTIONS(1986), - [sym_self] = ACTIONS(1986), - [sym_super] = ACTIONS(1986), - [sym_nil] = ACTIONS(1986), - [sym_id] = ACTIONS(1986), - [sym_instancetype] = ACTIONS(1986), - [sym_Class] = ACTIONS(1986), - [sym_SEL] = ACTIONS(1986), - [sym_IMP] = ACTIONS(1986), - [sym_BOOL] = ACTIONS(1986), - [sym_auto] = ACTIONS(1986), - [anon_sym_ATautoreleasepool] = ACTIONS(1988), - [anon_sym_ATsynchronized] = ACTIONS(1988), - [anon_sym_ATtry] = ACTIONS(1988), - [anon_sym_ATthrow] = ACTIONS(1988), - [anon_sym_ATselector] = ACTIONS(1988), - [anon_sym_ATencode] = ACTIONS(1988), - [anon_sym_AT] = ACTIONS(1986), - [sym_YES] = ACTIONS(1986), - [sym_NO] = ACTIONS(1986), - [anon_sym___builtin_available] = ACTIONS(1986), - [anon_sym_ATavailable] = ACTIONS(1988), - [anon_sym_va_arg] = ACTIONS(1986), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1106] = { - [ts_builtin_sym_end] = ACTIONS(1948), - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_include_token1] = ACTIONS(1948), - [aux_sym_preproc_def_token1] = ACTIONS(1948), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym___cdecl] = ACTIONS(1946), - [anon_sym___clrcall] = ACTIONS(1946), - [anon_sym___stdcall] = ACTIONS(1946), - [anon_sym___fastcall] = ACTIONS(1946), - [anon_sym___thiscall] = ACTIONS(1946), - [anon_sym___vectorcall] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_RBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_out] = ACTIONS(1946), - [anon_sym_inout] = ACTIONS(1946), - [anon_sym_bycopy] = ACTIONS(1946), - [anon_sym_byref] = ACTIONS(1946), - [anon_sym_oneway] = ACTIONS(1946), - [anon_sym__Nullable] = ACTIONS(1946), - [anon_sym__Nonnull] = ACTIONS(1946), - [anon_sym__Nullable_result] = ACTIONS(1946), - [anon_sym__Null_unspecified] = ACTIONS(1946), - [anon_sym___autoreleasing] = ACTIONS(1946), - [anon_sym___nullable] = ACTIONS(1946), - [anon_sym___nonnull] = ACTIONS(1946), - [anon_sym___strong] = ACTIONS(1946), - [anon_sym___weak] = ACTIONS(1946), - [anon_sym___bridge] = ACTIONS(1946), - [anon_sym___bridge_transfer] = ACTIONS(1946), - [anon_sym___bridge_retained] = ACTIONS(1946), - [anon_sym___unsafe_unretained] = ACTIONS(1946), - [anon_sym___block] = ACTIONS(1946), - [anon_sym___kindof] = ACTIONS(1946), - [anon_sym___unused] = ACTIONS(1946), - [anon_sym__Complex] = ACTIONS(1946), - [anon_sym___complex] = ACTIONS(1946), - [anon_sym_IBOutlet] = ACTIONS(1946), - [anon_sym_IBInspectable] = ACTIONS(1946), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1946), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_NS_ENUM] = ACTIONS(1946), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1946), - [anon_sym_NS_OPTIONS] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_goto] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1948), - [anon_sym_sizeof] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(1948), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1948), - [anon_sym_u_DQUOTE] = ACTIONS(1948), - [anon_sym_U_DQUOTE] = ACTIONS(1948), - [anon_sym_u8_DQUOTE] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym_true] = ACTIONS(1946), - [sym_false] = ACTIONS(1946), - [sym_null] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1948), - [anon_sym_ATimport] = ACTIONS(1948), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1946), - [anon_sym_ATcompatibility_alias] = ACTIONS(1948), - [anon_sym_ATprotocol] = ACTIONS(1948), - [anon_sym_ATclass] = ACTIONS(1948), - [anon_sym_ATinterface] = ACTIONS(1948), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1946), - [sym_method_attribute_specifier] = ACTIONS(1946), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1946), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE] = ACTIONS(1946), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_API_AVAILABLE] = ACTIONS(1946), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_API_DEPRECATED] = ACTIONS(1946), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1946), - [anon_sym___deprecated_msg] = ACTIONS(1946), - [anon_sym___deprecated_enum_msg] = ACTIONS(1946), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1946), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1946), - [anon_sym_ATimplementation] = ACTIONS(1948), - [anon_sym_typeof] = ACTIONS(1946), - [anon_sym___typeof] = ACTIONS(1946), - [anon_sym___typeof__] = ACTIONS(1946), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_nil] = ACTIONS(1946), - [sym_id] = ACTIONS(1946), - [sym_instancetype] = ACTIONS(1946), - [sym_Class] = ACTIONS(1946), - [sym_SEL] = ACTIONS(1946), - [sym_IMP] = ACTIONS(1946), - [sym_BOOL] = ACTIONS(1946), - [sym_auto] = ACTIONS(1946), - [anon_sym_ATautoreleasepool] = ACTIONS(1948), - [anon_sym_ATsynchronized] = ACTIONS(1948), - [anon_sym_ATtry] = ACTIONS(1948), - [anon_sym_ATthrow] = ACTIONS(1948), - [anon_sym_ATselector] = ACTIONS(1948), - [anon_sym_ATencode] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [sym_YES] = ACTIONS(1946), - [sym_NO] = ACTIONS(1946), - [anon_sym___builtin_available] = ACTIONS(1946), - [anon_sym_ATavailable] = ACTIONS(1948), - [anon_sym_va_arg] = ACTIONS(1946), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1107] = { - [ts_builtin_sym_end] = ACTIONS(1944), - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_include_token1] = ACTIONS(1944), - [aux_sym_preproc_def_token1] = ACTIONS(1944), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(1944), - [anon_sym_TILDE] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_PLUS] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___cdecl] = ACTIONS(1942), - [anon_sym___clrcall] = ACTIONS(1942), - [anon_sym___stdcall] = ACTIONS(1942), - [anon_sym___fastcall] = ACTIONS(1942), - [anon_sym___thiscall] = ACTIONS(1942), - [anon_sym___vectorcall] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1944), - [anon_sym_RBRACE] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1944), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_auto] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym_in] = ACTIONS(1942), - [anon_sym_out] = ACTIONS(1942), - [anon_sym_inout] = ACTIONS(1942), - [anon_sym_bycopy] = ACTIONS(1942), - [anon_sym_byref] = ACTIONS(1942), - [anon_sym_oneway] = ACTIONS(1942), - [anon_sym__Nullable] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym__Nullable_result] = ACTIONS(1942), - [anon_sym__Null_unspecified] = ACTIONS(1942), - [anon_sym___autoreleasing] = ACTIONS(1942), - [anon_sym___nullable] = ACTIONS(1942), - [anon_sym___nonnull] = ACTIONS(1942), - [anon_sym___strong] = ACTIONS(1942), - [anon_sym___weak] = ACTIONS(1942), - [anon_sym___bridge] = ACTIONS(1942), - [anon_sym___bridge_transfer] = ACTIONS(1942), - [anon_sym___bridge_retained] = ACTIONS(1942), - [anon_sym___unsafe_unretained] = ACTIONS(1942), - [anon_sym___block] = ACTIONS(1942), - [anon_sym___kindof] = ACTIONS(1942), - [anon_sym___unused] = ACTIONS(1942), - [anon_sym__Complex] = ACTIONS(1942), - [anon_sym___complex] = ACTIONS(1942), - [anon_sym_IBOutlet] = ACTIONS(1942), - [anon_sym_IBInspectable] = ACTIONS(1942), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1942), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_NS_ENUM] = ACTIONS(1942), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1942), - [anon_sym_NS_OPTIONS] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_switch] = ACTIONS(1942), - [anon_sym_case] = ACTIONS(1942), - [anon_sym_default] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_do] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_goto] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_PLUS_PLUS] = ACTIONS(1944), - [anon_sym_sizeof] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1944), - [anon_sym_L_SQUOTE] = ACTIONS(1944), - [anon_sym_u_SQUOTE] = ACTIONS(1944), - [anon_sym_U_SQUOTE] = ACTIONS(1944), - [anon_sym_u8_SQUOTE] = ACTIONS(1944), - [anon_sym_SQUOTE] = ACTIONS(1944), - [anon_sym_L_DQUOTE] = ACTIONS(1944), - [anon_sym_u_DQUOTE] = ACTIONS(1944), - [anon_sym_U_DQUOTE] = ACTIONS(1944), - [anon_sym_u8_DQUOTE] = ACTIONS(1944), - [anon_sym_DQUOTE] = ACTIONS(1944), - [sym_true] = ACTIONS(1942), - [sym_false] = ACTIONS(1942), - [sym_null] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1944), - [anon_sym_ATimport] = ACTIONS(1944), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1942), - [anon_sym_ATcompatibility_alias] = ACTIONS(1944), - [anon_sym_ATprotocol] = ACTIONS(1944), - [anon_sym_ATclass] = ACTIONS(1944), - [anon_sym_ATinterface] = ACTIONS(1944), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1942), - [sym_method_attribute_specifier] = ACTIONS(1942), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1942), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1942), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1942), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1942), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1942), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1942), - [anon_sym_NS_AVAILABLE] = ACTIONS(1942), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1942), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1942), - [anon_sym_API_AVAILABLE] = ACTIONS(1942), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1942), - [anon_sym_API_DEPRECATED] = ACTIONS(1942), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1942), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1942), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1942), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1942), - [anon_sym___deprecated_msg] = ACTIONS(1942), - [anon_sym___deprecated_enum_msg] = ACTIONS(1942), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1942), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1942), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1942), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1942), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1942), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1942), - [anon_sym_ATimplementation] = ACTIONS(1944), - [anon_sym_typeof] = ACTIONS(1942), - [anon_sym___typeof] = ACTIONS(1942), - [anon_sym___typeof__] = ACTIONS(1942), - [sym_self] = ACTIONS(1942), - [sym_super] = ACTIONS(1942), - [sym_nil] = ACTIONS(1942), - [sym_id] = ACTIONS(1942), - [sym_instancetype] = ACTIONS(1942), - [sym_Class] = ACTIONS(1942), - [sym_SEL] = ACTIONS(1942), - [sym_IMP] = ACTIONS(1942), - [sym_BOOL] = ACTIONS(1942), - [sym_auto] = ACTIONS(1942), - [anon_sym_ATautoreleasepool] = ACTIONS(1944), - [anon_sym_ATsynchronized] = ACTIONS(1944), - [anon_sym_ATtry] = ACTIONS(1944), - [anon_sym_ATthrow] = ACTIONS(1944), - [anon_sym_ATselector] = ACTIONS(1944), - [anon_sym_ATencode] = ACTIONS(1944), - [anon_sym_AT] = ACTIONS(1942), - [sym_YES] = ACTIONS(1942), - [sym_NO] = ACTIONS(1942), - [anon_sym___builtin_available] = ACTIONS(1942), - [anon_sym_ATavailable] = ACTIONS(1944), - [anon_sym_va_arg] = ACTIONS(1942), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1108] = { - [ts_builtin_sym_end] = ACTIONS(1924), - [sym_identifier] = ACTIONS(1922), - [aux_sym_preproc_include_token1] = ACTIONS(1924), - [aux_sym_preproc_def_token1] = ACTIONS(1924), - [aux_sym_preproc_if_token1] = ACTIONS(1922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1922), - [anon_sym_LPAREN2] = ACTIONS(1924), - [anon_sym_BANG] = ACTIONS(1924), - [anon_sym_TILDE] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_CARET] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_typedef] = ACTIONS(1922), - [anon_sym_extern] = ACTIONS(1922), - [anon_sym___attribute] = ACTIONS(1922), - [anon_sym___attribute__] = ACTIONS(1922), - [anon_sym___declspec] = ACTIONS(1922), - [anon_sym___cdecl] = ACTIONS(1922), - [anon_sym___clrcall] = ACTIONS(1922), - [anon_sym___stdcall] = ACTIONS(1922), - [anon_sym___fastcall] = ACTIONS(1922), - [anon_sym___thiscall] = ACTIONS(1922), - [anon_sym___vectorcall] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1924), - [anon_sym_RBRACE] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1922), - [anon_sym_auto] = ACTIONS(1922), - [anon_sym_register] = ACTIONS(1922), - [anon_sym_inline] = ACTIONS(1922), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(1922), - [anon_sym_volatile] = ACTIONS(1922), - [anon_sym_restrict] = ACTIONS(1922), - [anon_sym__Atomic] = ACTIONS(1922), - [anon_sym_in] = ACTIONS(1922), - [anon_sym_out] = ACTIONS(1922), - [anon_sym_inout] = ACTIONS(1922), - [anon_sym_bycopy] = ACTIONS(1922), - [anon_sym_byref] = ACTIONS(1922), - [anon_sym_oneway] = ACTIONS(1922), - [anon_sym__Nullable] = ACTIONS(1922), - [anon_sym__Nonnull] = ACTIONS(1922), - [anon_sym__Nullable_result] = ACTIONS(1922), - [anon_sym__Null_unspecified] = ACTIONS(1922), - [anon_sym___autoreleasing] = ACTIONS(1922), - [anon_sym___nullable] = ACTIONS(1922), - [anon_sym___nonnull] = ACTIONS(1922), - [anon_sym___strong] = ACTIONS(1922), - [anon_sym___weak] = ACTIONS(1922), - [anon_sym___bridge] = ACTIONS(1922), - [anon_sym___bridge_transfer] = ACTIONS(1922), - [anon_sym___bridge_retained] = ACTIONS(1922), - [anon_sym___unsafe_unretained] = ACTIONS(1922), - [anon_sym___block] = ACTIONS(1922), - [anon_sym___kindof] = ACTIONS(1922), - [anon_sym___unused] = ACTIONS(1922), - [anon_sym__Complex] = ACTIONS(1922), - [anon_sym___complex] = ACTIONS(1922), - [anon_sym_IBOutlet] = ACTIONS(1922), - [anon_sym_IBInspectable] = ACTIONS(1922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1922), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [sym_primitive_type] = ACTIONS(1922), - [anon_sym_enum] = ACTIONS(1922), - [anon_sym_NS_ENUM] = ACTIONS(1922), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1922), - [anon_sym_NS_OPTIONS] = ACTIONS(1922), - [anon_sym_struct] = ACTIONS(1922), - [anon_sym_union] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(1922), - [anon_sym_switch] = ACTIONS(1922), - [anon_sym_case] = ACTIONS(1922), - [anon_sym_default] = ACTIONS(1922), - [anon_sym_while] = ACTIONS(1922), - [anon_sym_do] = ACTIONS(1922), - [anon_sym_for] = ACTIONS(1922), - [anon_sym_return] = ACTIONS(1922), - [anon_sym_break] = ACTIONS(1922), - [anon_sym_continue] = ACTIONS(1922), - [anon_sym_goto] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1924), - [anon_sym_PLUS_PLUS] = ACTIONS(1924), - [anon_sym_sizeof] = ACTIONS(1922), - [sym_number_literal] = ACTIONS(1924), - [anon_sym_L_SQUOTE] = ACTIONS(1924), - [anon_sym_u_SQUOTE] = ACTIONS(1924), - [anon_sym_U_SQUOTE] = ACTIONS(1924), - [anon_sym_u8_SQUOTE] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_L_DQUOTE] = ACTIONS(1924), - [anon_sym_u_DQUOTE] = ACTIONS(1924), - [anon_sym_U_DQUOTE] = ACTIONS(1924), - [anon_sym_u8_DQUOTE] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [sym_null] = ACTIONS(1922), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1924), - [anon_sym_ATimport] = ACTIONS(1924), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1922), - [anon_sym_ATcompatibility_alias] = ACTIONS(1924), - [anon_sym_ATprotocol] = ACTIONS(1924), - [anon_sym_ATclass] = ACTIONS(1924), - [anon_sym_ATinterface] = ACTIONS(1924), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1922), - [sym_method_attribute_specifier] = ACTIONS(1922), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1922), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1922), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1922), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1922), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1922), - [anon_sym_NS_AVAILABLE] = ACTIONS(1922), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1922), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_API_AVAILABLE] = ACTIONS(1922), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_API_DEPRECATED] = ACTIONS(1922), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1922), - [anon_sym___deprecated_msg] = ACTIONS(1922), - [anon_sym___deprecated_enum_msg] = ACTIONS(1922), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1922), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1922), - [anon_sym_ATimplementation] = ACTIONS(1924), - [anon_sym_typeof] = ACTIONS(1922), - [anon_sym___typeof] = ACTIONS(1922), - [anon_sym___typeof__] = ACTIONS(1922), - [sym_self] = ACTIONS(1922), - [sym_super] = ACTIONS(1922), - [sym_nil] = ACTIONS(1922), - [sym_id] = ACTIONS(1922), - [sym_instancetype] = ACTIONS(1922), - [sym_Class] = ACTIONS(1922), - [sym_SEL] = ACTIONS(1922), - [sym_IMP] = ACTIONS(1922), - [sym_BOOL] = ACTIONS(1922), - [sym_auto] = ACTIONS(1922), - [anon_sym_ATautoreleasepool] = ACTIONS(1924), - [anon_sym_ATsynchronized] = ACTIONS(1924), - [anon_sym_ATtry] = ACTIONS(1924), - [anon_sym_ATthrow] = ACTIONS(1924), - [anon_sym_ATselector] = ACTIONS(1924), - [anon_sym_ATencode] = ACTIONS(1924), - [anon_sym_AT] = ACTIONS(1922), - [sym_YES] = ACTIONS(1922), - [sym_NO] = ACTIONS(1922), - [anon_sym___builtin_available] = ACTIONS(1922), - [anon_sym_ATavailable] = ACTIONS(1924), - [anon_sym_va_arg] = ACTIONS(1922), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1109] = { - [ts_builtin_sym_end] = ACTIONS(1924), - [sym_identifier] = ACTIONS(1922), - [aux_sym_preproc_include_token1] = ACTIONS(1924), - [aux_sym_preproc_def_token1] = ACTIONS(1924), - [aux_sym_preproc_if_token1] = ACTIONS(1922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1922), - [anon_sym_LPAREN2] = ACTIONS(1924), - [anon_sym_BANG] = ACTIONS(1924), - [anon_sym_TILDE] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_CARET] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_typedef] = ACTIONS(1922), - [anon_sym_extern] = ACTIONS(1922), - [anon_sym___attribute] = ACTIONS(1922), - [anon_sym___attribute__] = ACTIONS(1922), - [anon_sym___declspec] = ACTIONS(1922), - [anon_sym___cdecl] = ACTIONS(1922), - [anon_sym___clrcall] = ACTIONS(1922), - [anon_sym___stdcall] = ACTIONS(1922), - [anon_sym___fastcall] = ACTIONS(1922), - [anon_sym___thiscall] = ACTIONS(1922), - [anon_sym___vectorcall] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1924), - [anon_sym_RBRACE] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1922), - [anon_sym_auto] = ACTIONS(1922), - [anon_sym_register] = ACTIONS(1922), - [anon_sym_inline] = ACTIONS(1922), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(1922), - [anon_sym_volatile] = ACTIONS(1922), - [anon_sym_restrict] = ACTIONS(1922), - [anon_sym__Atomic] = ACTIONS(1922), - [anon_sym_in] = ACTIONS(1922), - [anon_sym_out] = ACTIONS(1922), - [anon_sym_inout] = ACTIONS(1922), - [anon_sym_bycopy] = ACTIONS(1922), - [anon_sym_byref] = ACTIONS(1922), - [anon_sym_oneway] = ACTIONS(1922), - [anon_sym__Nullable] = ACTIONS(1922), - [anon_sym__Nonnull] = ACTIONS(1922), - [anon_sym__Nullable_result] = ACTIONS(1922), - [anon_sym__Null_unspecified] = ACTIONS(1922), - [anon_sym___autoreleasing] = ACTIONS(1922), - [anon_sym___nullable] = ACTIONS(1922), - [anon_sym___nonnull] = ACTIONS(1922), - [anon_sym___strong] = ACTIONS(1922), - [anon_sym___weak] = ACTIONS(1922), - [anon_sym___bridge] = ACTIONS(1922), - [anon_sym___bridge_transfer] = ACTIONS(1922), - [anon_sym___bridge_retained] = ACTIONS(1922), - [anon_sym___unsafe_unretained] = ACTIONS(1922), - [anon_sym___block] = ACTIONS(1922), - [anon_sym___kindof] = ACTIONS(1922), - [anon_sym___unused] = ACTIONS(1922), - [anon_sym__Complex] = ACTIONS(1922), - [anon_sym___complex] = ACTIONS(1922), - [anon_sym_IBOutlet] = ACTIONS(1922), - [anon_sym_IBInspectable] = ACTIONS(1922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1922), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [sym_primitive_type] = ACTIONS(1922), - [anon_sym_enum] = ACTIONS(1922), - [anon_sym_NS_ENUM] = ACTIONS(1922), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1922), - [anon_sym_NS_OPTIONS] = ACTIONS(1922), - [anon_sym_struct] = ACTIONS(1922), - [anon_sym_union] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(1922), - [anon_sym_switch] = ACTIONS(1922), - [anon_sym_case] = ACTIONS(1922), - [anon_sym_default] = ACTIONS(1922), - [anon_sym_while] = ACTIONS(1922), - [anon_sym_do] = ACTIONS(1922), - [anon_sym_for] = ACTIONS(1922), - [anon_sym_return] = ACTIONS(1922), - [anon_sym_break] = ACTIONS(1922), - [anon_sym_continue] = ACTIONS(1922), - [anon_sym_goto] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1924), - [anon_sym_PLUS_PLUS] = ACTIONS(1924), - [anon_sym_sizeof] = ACTIONS(1922), - [sym_number_literal] = ACTIONS(1924), - [anon_sym_L_SQUOTE] = ACTIONS(1924), - [anon_sym_u_SQUOTE] = ACTIONS(1924), - [anon_sym_U_SQUOTE] = ACTIONS(1924), - [anon_sym_u8_SQUOTE] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_L_DQUOTE] = ACTIONS(1924), - [anon_sym_u_DQUOTE] = ACTIONS(1924), - [anon_sym_U_DQUOTE] = ACTIONS(1924), - [anon_sym_u8_DQUOTE] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [sym_null] = ACTIONS(1922), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1924), - [anon_sym_ATimport] = ACTIONS(1924), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1922), - [anon_sym_ATcompatibility_alias] = ACTIONS(1924), - [anon_sym_ATprotocol] = ACTIONS(1924), - [anon_sym_ATclass] = ACTIONS(1924), - [anon_sym_ATinterface] = ACTIONS(1924), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1922), - [sym_method_attribute_specifier] = ACTIONS(1922), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1922), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1922), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1922), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1922), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1922), - [anon_sym_NS_AVAILABLE] = ACTIONS(1922), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1922), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_API_AVAILABLE] = ACTIONS(1922), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_API_DEPRECATED] = ACTIONS(1922), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1922), - [anon_sym___deprecated_msg] = ACTIONS(1922), - [anon_sym___deprecated_enum_msg] = ACTIONS(1922), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1922), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1922), - [anon_sym_ATimplementation] = ACTIONS(1924), - [anon_sym_typeof] = ACTIONS(1922), - [anon_sym___typeof] = ACTIONS(1922), - [anon_sym___typeof__] = ACTIONS(1922), - [sym_self] = ACTIONS(1922), - [sym_super] = ACTIONS(1922), - [sym_nil] = ACTIONS(1922), - [sym_id] = ACTIONS(1922), - [sym_instancetype] = ACTIONS(1922), - [sym_Class] = ACTIONS(1922), - [sym_SEL] = ACTIONS(1922), - [sym_IMP] = ACTIONS(1922), - [sym_BOOL] = ACTIONS(1922), - [sym_auto] = ACTIONS(1922), - [anon_sym_ATautoreleasepool] = ACTIONS(1924), - [anon_sym_ATsynchronized] = ACTIONS(1924), - [anon_sym_ATtry] = ACTIONS(1924), - [anon_sym_ATthrow] = ACTIONS(1924), - [anon_sym_ATselector] = ACTIONS(1924), - [anon_sym_ATencode] = ACTIONS(1924), - [anon_sym_AT] = ACTIONS(1922), - [sym_YES] = ACTIONS(1922), - [sym_NO] = ACTIONS(1922), - [anon_sym___builtin_available] = ACTIONS(1922), - [anon_sym_ATavailable] = ACTIONS(1924), - [anon_sym_va_arg] = ACTIONS(1922), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1110] = { - [ts_builtin_sym_end] = ACTIONS(1924), - [sym_identifier] = ACTIONS(1922), - [aux_sym_preproc_include_token1] = ACTIONS(1924), - [aux_sym_preproc_def_token1] = ACTIONS(1924), - [aux_sym_preproc_if_token1] = ACTIONS(1922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1922), - [anon_sym_LPAREN2] = ACTIONS(1924), - [anon_sym_BANG] = ACTIONS(1924), - [anon_sym_TILDE] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_CARET] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_typedef] = ACTIONS(1922), - [anon_sym_extern] = ACTIONS(1922), - [anon_sym___attribute] = ACTIONS(1922), - [anon_sym___attribute__] = ACTIONS(1922), - [anon_sym___declspec] = ACTIONS(1922), - [anon_sym___cdecl] = ACTIONS(1922), - [anon_sym___clrcall] = ACTIONS(1922), - [anon_sym___stdcall] = ACTIONS(1922), - [anon_sym___fastcall] = ACTIONS(1922), - [anon_sym___thiscall] = ACTIONS(1922), - [anon_sym___vectorcall] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1924), - [anon_sym_RBRACE] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1922), - [anon_sym_auto] = ACTIONS(1922), - [anon_sym_register] = ACTIONS(1922), - [anon_sym_inline] = ACTIONS(1922), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(1922), - [anon_sym_volatile] = ACTIONS(1922), - [anon_sym_restrict] = ACTIONS(1922), - [anon_sym__Atomic] = ACTIONS(1922), - [anon_sym_in] = ACTIONS(1922), - [anon_sym_out] = ACTIONS(1922), - [anon_sym_inout] = ACTIONS(1922), - [anon_sym_bycopy] = ACTIONS(1922), - [anon_sym_byref] = ACTIONS(1922), - [anon_sym_oneway] = ACTIONS(1922), - [anon_sym__Nullable] = ACTIONS(1922), - [anon_sym__Nonnull] = ACTIONS(1922), - [anon_sym__Nullable_result] = ACTIONS(1922), - [anon_sym__Null_unspecified] = ACTIONS(1922), - [anon_sym___autoreleasing] = ACTIONS(1922), - [anon_sym___nullable] = ACTIONS(1922), - [anon_sym___nonnull] = ACTIONS(1922), - [anon_sym___strong] = ACTIONS(1922), - [anon_sym___weak] = ACTIONS(1922), - [anon_sym___bridge] = ACTIONS(1922), - [anon_sym___bridge_transfer] = ACTIONS(1922), - [anon_sym___bridge_retained] = ACTIONS(1922), - [anon_sym___unsafe_unretained] = ACTIONS(1922), - [anon_sym___block] = ACTIONS(1922), - [anon_sym___kindof] = ACTIONS(1922), - [anon_sym___unused] = ACTIONS(1922), - [anon_sym__Complex] = ACTIONS(1922), - [anon_sym___complex] = ACTIONS(1922), - [anon_sym_IBOutlet] = ACTIONS(1922), - [anon_sym_IBInspectable] = ACTIONS(1922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1922), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [sym_primitive_type] = ACTIONS(1922), - [anon_sym_enum] = ACTIONS(1922), - [anon_sym_NS_ENUM] = ACTIONS(1922), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1922), - [anon_sym_NS_OPTIONS] = ACTIONS(1922), - [anon_sym_struct] = ACTIONS(1922), - [anon_sym_union] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(1922), - [anon_sym_switch] = ACTIONS(1922), - [anon_sym_case] = ACTIONS(1922), - [anon_sym_default] = ACTIONS(1922), - [anon_sym_while] = ACTIONS(1922), - [anon_sym_do] = ACTIONS(1922), - [anon_sym_for] = ACTIONS(1922), - [anon_sym_return] = ACTIONS(1922), - [anon_sym_break] = ACTIONS(1922), - [anon_sym_continue] = ACTIONS(1922), - [anon_sym_goto] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1924), - [anon_sym_PLUS_PLUS] = ACTIONS(1924), - [anon_sym_sizeof] = ACTIONS(1922), - [sym_number_literal] = ACTIONS(1924), - [anon_sym_L_SQUOTE] = ACTIONS(1924), - [anon_sym_u_SQUOTE] = ACTIONS(1924), - [anon_sym_U_SQUOTE] = ACTIONS(1924), - [anon_sym_u8_SQUOTE] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_L_DQUOTE] = ACTIONS(1924), - [anon_sym_u_DQUOTE] = ACTIONS(1924), - [anon_sym_U_DQUOTE] = ACTIONS(1924), - [anon_sym_u8_DQUOTE] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [sym_null] = ACTIONS(1922), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1924), - [anon_sym_ATimport] = ACTIONS(1924), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1922), - [anon_sym_ATcompatibility_alias] = ACTIONS(1924), - [anon_sym_ATprotocol] = ACTIONS(1924), - [anon_sym_ATclass] = ACTIONS(1924), - [anon_sym_ATinterface] = ACTIONS(1924), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1922), - [sym_method_attribute_specifier] = ACTIONS(1922), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1922), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1922), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1922), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1922), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1922), - [anon_sym_NS_AVAILABLE] = ACTIONS(1922), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1922), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_API_AVAILABLE] = ACTIONS(1922), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_API_DEPRECATED] = ACTIONS(1922), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1922), - [anon_sym___deprecated_msg] = ACTIONS(1922), - [anon_sym___deprecated_enum_msg] = ACTIONS(1922), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1922), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1922), - [anon_sym_ATimplementation] = ACTIONS(1924), - [anon_sym_typeof] = ACTIONS(1922), - [anon_sym___typeof] = ACTIONS(1922), - [anon_sym___typeof__] = ACTIONS(1922), - [sym_self] = ACTIONS(1922), - [sym_super] = ACTIONS(1922), - [sym_nil] = ACTIONS(1922), - [sym_id] = ACTIONS(1922), - [sym_instancetype] = ACTIONS(1922), - [sym_Class] = ACTIONS(1922), - [sym_SEL] = ACTIONS(1922), - [sym_IMP] = ACTIONS(1922), - [sym_BOOL] = ACTIONS(1922), - [sym_auto] = ACTIONS(1922), - [anon_sym_ATautoreleasepool] = ACTIONS(1924), - [anon_sym_ATsynchronized] = ACTIONS(1924), - [anon_sym_ATtry] = ACTIONS(1924), - [anon_sym_ATthrow] = ACTIONS(1924), - [anon_sym_ATselector] = ACTIONS(1924), - [anon_sym_ATencode] = ACTIONS(1924), - [anon_sym_AT] = ACTIONS(1922), - [sym_YES] = ACTIONS(1922), - [sym_NO] = ACTIONS(1922), - [anon_sym___builtin_available] = ACTIONS(1922), - [anon_sym_ATavailable] = ACTIONS(1924), - [anon_sym_va_arg] = ACTIONS(1922), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1111] = { - [ts_builtin_sym_end] = ACTIONS(1916), - [sym_identifier] = ACTIONS(1914), - [aux_sym_preproc_include_token1] = ACTIONS(1916), - [aux_sym_preproc_def_token1] = ACTIONS(1916), - [aux_sym_preproc_if_token1] = ACTIONS(1914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1916), - [anon_sym_BANG] = ACTIONS(1916), - [anon_sym_TILDE] = ACTIONS(1916), - [anon_sym_DASH] = ACTIONS(1914), - [anon_sym_PLUS] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1916), - [anon_sym_CARET] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_typedef] = ACTIONS(1914), - [anon_sym_extern] = ACTIONS(1914), - [anon_sym___attribute] = ACTIONS(1914), - [anon_sym___attribute__] = ACTIONS(1914), - [anon_sym___declspec] = ACTIONS(1914), - [anon_sym___cdecl] = ACTIONS(1914), - [anon_sym___clrcall] = ACTIONS(1914), - [anon_sym___stdcall] = ACTIONS(1914), - [anon_sym___fastcall] = ACTIONS(1914), - [anon_sym___thiscall] = ACTIONS(1914), - [anon_sym___vectorcall] = ACTIONS(1914), - [anon_sym_LBRACE] = ACTIONS(1916), - [anon_sym_RBRACE] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_static] = ACTIONS(1914), - [anon_sym_auto] = ACTIONS(1914), - [anon_sym_register] = ACTIONS(1914), - [anon_sym_inline] = ACTIONS(1914), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1914), - [anon_sym_volatile] = ACTIONS(1914), - [anon_sym_restrict] = ACTIONS(1914), - [anon_sym__Atomic] = ACTIONS(1914), - [anon_sym_in] = ACTIONS(1914), - [anon_sym_out] = ACTIONS(1914), - [anon_sym_inout] = ACTIONS(1914), - [anon_sym_bycopy] = ACTIONS(1914), - [anon_sym_byref] = ACTIONS(1914), - [anon_sym_oneway] = ACTIONS(1914), - [anon_sym__Nullable] = ACTIONS(1914), - [anon_sym__Nonnull] = ACTIONS(1914), - [anon_sym__Nullable_result] = ACTIONS(1914), - [anon_sym__Null_unspecified] = ACTIONS(1914), - [anon_sym___autoreleasing] = ACTIONS(1914), - [anon_sym___nullable] = ACTIONS(1914), - [anon_sym___nonnull] = ACTIONS(1914), - [anon_sym___strong] = ACTIONS(1914), - [anon_sym___weak] = ACTIONS(1914), - [anon_sym___bridge] = ACTIONS(1914), - [anon_sym___bridge_transfer] = ACTIONS(1914), - [anon_sym___bridge_retained] = ACTIONS(1914), - [anon_sym___unsafe_unretained] = ACTIONS(1914), - [anon_sym___block] = ACTIONS(1914), - [anon_sym___kindof] = ACTIONS(1914), - [anon_sym___unused] = ACTIONS(1914), - [anon_sym__Complex] = ACTIONS(1914), - [anon_sym___complex] = ACTIONS(1914), - [anon_sym_IBOutlet] = ACTIONS(1914), - [anon_sym_IBInspectable] = ACTIONS(1914), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1914), - [anon_sym_signed] = ACTIONS(1914), - [anon_sym_unsigned] = ACTIONS(1914), - [anon_sym_long] = ACTIONS(1914), - [anon_sym_short] = ACTIONS(1914), - [sym_primitive_type] = ACTIONS(1914), - [anon_sym_enum] = ACTIONS(1914), - [anon_sym_NS_ENUM] = ACTIONS(1914), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1914), - [anon_sym_NS_OPTIONS] = ACTIONS(1914), - [anon_sym_struct] = ACTIONS(1914), - [anon_sym_union] = ACTIONS(1914), - [anon_sym_if] = ACTIONS(1914), - [anon_sym_switch] = ACTIONS(1914), - [anon_sym_case] = ACTIONS(1914), - [anon_sym_default] = ACTIONS(1914), - [anon_sym_while] = ACTIONS(1914), - [anon_sym_do] = ACTIONS(1914), - [anon_sym_for] = ACTIONS(1914), - [anon_sym_return] = ACTIONS(1914), - [anon_sym_break] = ACTIONS(1914), - [anon_sym_continue] = ACTIONS(1914), - [anon_sym_goto] = ACTIONS(1914), - [anon_sym_DASH_DASH] = ACTIONS(1916), - [anon_sym_PLUS_PLUS] = ACTIONS(1916), - [anon_sym_sizeof] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1916), - [anon_sym_u_SQUOTE] = ACTIONS(1916), - [anon_sym_U_SQUOTE] = ACTIONS(1916), - [anon_sym_u8_SQUOTE] = ACTIONS(1916), - [anon_sym_SQUOTE] = ACTIONS(1916), - [anon_sym_L_DQUOTE] = ACTIONS(1916), - [anon_sym_u_DQUOTE] = ACTIONS(1916), - [anon_sym_U_DQUOTE] = ACTIONS(1916), - [anon_sym_u8_DQUOTE] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [sym_null] = ACTIONS(1914), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1916), - [anon_sym_ATimport] = ACTIONS(1916), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1914), - [anon_sym_ATcompatibility_alias] = ACTIONS(1916), - [anon_sym_ATprotocol] = ACTIONS(1916), - [anon_sym_ATclass] = ACTIONS(1916), - [anon_sym_ATinterface] = ACTIONS(1916), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1914), - [sym_method_attribute_specifier] = ACTIONS(1914), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1914), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1914), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1914), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1914), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1914), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1914), - [anon_sym_NS_AVAILABLE] = ACTIONS(1914), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1914), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1914), - [anon_sym_API_AVAILABLE] = ACTIONS(1914), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1914), - [anon_sym_API_DEPRECATED] = ACTIONS(1914), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1914), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1914), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1914), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1914), - [anon_sym___deprecated_msg] = ACTIONS(1914), - [anon_sym___deprecated_enum_msg] = ACTIONS(1914), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1914), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1914), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1914), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1914), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1914), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1914), - [anon_sym_ATimplementation] = ACTIONS(1916), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym___typeof] = ACTIONS(1914), - [anon_sym___typeof__] = ACTIONS(1914), - [sym_self] = ACTIONS(1914), - [sym_super] = ACTIONS(1914), - [sym_nil] = ACTIONS(1914), - [sym_id] = ACTIONS(1914), - [sym_instancetype] = ACTIONS(1914), - [sym_Class] = ACTIONS(1914), - [sym_SEL] = ACTIONS(1914), - [sym_IMP] = ACTIONS(1914), - [sym_BOOL] = ACTIONS(1914), - [sym_auto] = ACTIONS(1914), - [anon_sym_ATautoreleasepool] = ACTIONS(1916), - [anon_sym_ATsynchronized] = ACTIONS(1916), - [anon_sym_ATtry] = ACTIONS(1916), - [anon_sym_ATthrow] = ACTIONS(1916), - [anon_sym_ATselector] = ACTIONS(1916), - [anon_sym_ATencode] = ACTIONS(1916), - [anon_sym_AT] = ACTIONS(1914), - [sym_YES] = ACTIONS(1914), - [sym_NO] = ACTIONS(1914), - [anon_sym___builtin_available] = ACTIONS(1914), - [anon_sym_ATavailable] = ACTIONS(1916), - [anon_sym_va_arg] = ACTIONS(1914), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1112] = { - [ts_builtin_sym_end] = ACTIONS(2144), - [sym_identifier] = ACTIONS(2142), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym___attribute] = ACTIONS(2142), - [anon_sym___attribute__] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2142), - [anon_sym___cdecl] = ACTIONS(2142), - [anon_sym___clrcall] = ACTIONS(2142), - [anon_sym___stdcall] = ACTIONS(2142), - [anon_sym___fastcall] = ACTIONS(2142), - [anon_sym___thiscall] = ACTIONS(2142), - [anon_sym___vectorcall] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_auto] = ACTIONS(2142), - [anon_sym_register] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_volatile] = ACTIONS(2142), - [anon_sym_restrict] = ACTIONS(2142), - [anon_sym__Atomic] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_out] = ACTIONS(2142), - [anon_sym_inout] = ACTIONS(2142), - [anon_sym_bycopy] = ACTIONS(2142), - [anon_sym_byref] = ACTIONS(2142), - [anon_sym_oneway] = ACTIONS(2142), - [anon_sym__Nullable] = ACTIONS(2142), - [anon_sym__Nonnull] = ACTIONS(2142), - [anon_sym__Nullable_result] = ACTIONS(2142), - [anon_sym__Null_unspecified] = ACTIONS(2142), - [anon_sym___autoreleasing] = ACTIONS(2142), - [anon_sym___nullable] = ACTIONS(2142), - [anon_sym___nonnull] = ACTIONS(2142), - [anon_sym___strong] = ACTIONS(2142), - [anon_sym___weak] = ACTIONS(2142), - [anon_sym___bridge] = ACTIONS(2142), - [anon_sym___bridge_transfer] = ACTIONS(2142), - [anon_sym___bridge_retained] = ACTIONS(2142), - [anon_sym___unsafe_unretained] = ACTIONS(2142), - [anon_sym___block] = ACTIONS(2142), - [anon_sym___kindof] = ACTIONS(2142), - [anon_sym___unused] = ACTIONS(2142), - [anon_sym__Complex] = ACTIONS(2142), - [anon_sym___complex] = ACTIONS(2142), - [anon_sym_IBOutlet] = ACTIONS(2142), - [anon_sym_IBInspectable] = ACTIONS(2142), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2142), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_NS_ENUM] = ACTIONS(2142), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2142), - [anon_sym_NS_OPTIONS] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_goto] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_sizeof] = ACTIONS(2142), - [sym_number_literal] = ACTIONS(2144), - [anon_sym_L_SQUOTE] = ACTIONS(2144), - [anon_sym_u_SQUOTE] = ACTIONS(2144), - [anon_sym_U_SQUOTE] = ACTIONS(2144), - [anon_sym_u8_SQUOTE] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_L_DQUOTE] = ACTIONS(2144), - [anon_sym_u_DQUOTE] = ACTIONS(2144), - [anon_sym_U_DQUOTE] = ACTIONS(2144), - [anon_sym_u8_DQUOTE] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2144), - [anon_sym_ATimport] = ACTIONS(2144), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2142), - [anon_sym_ATcompatibility_alias] = ACTIONS(2144), - [anon_sym_ATprotocol] = ACTIONS(2144), - [anon_sym_ATclass] = ACTIONS(2144), - [anon_sym_ATinterface] = ACTIONS(2144), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2142), - [sym_method_attribute_specifier] = ACTIONS(2142), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2142), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE] = ACTIONS(2142), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_API_AVAILABLE] = ACTIONS(2142), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_API_DEPRECATED] = ACTIONS(2142), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2142), - [anon_sym___deprecated_msg] = ACTIONS(2142), - [anon_sym___deprecated_enum_msg] = ACTIONS(2142), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2142), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2142), - [anon_sym_ATimplementation] = ACTIONS(2144), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym___typeof] = ACTIONS(2142), - [anon_sym___typeof__] = ACTIONS(2142), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_nil] = ACTIONS(2142), - [sym_id] = ACTIONS(2142), - [sym_instancetype] = ACTIONS(2142), - [sym_Class] = ACTIONS(2142), - [sym_SEL] = ACTIONS(2142), - [sym_IMP] = ACTIONS(2142), - [sym_BOOL] = ACTIONS(2142), - [sym_auto] = ACTIONS(2142), - [anon_sym_ATautoreleasepool] = ACTIONS(2144), - [anon_sym_ATsynchronized] = ACTIONS(2144), - [anon_sym_ATtry] = ACTIONS(2144), - [anon_sym_ATthrow] = ACTIONS(2144), - [anon_sym_ATselector] = ACTIONS(2144), - [anon_sym_ATencode] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2142), - [sym_YES] = ACTIONS(2142), - [sym_NO] = ACTIONS(2142), - [anon_sym___builtin_available] = ACTIONS(2142), - [anon_sym_ATavailable] = ACTIONS(2144), - [anon_sym_va_arg] = ACTIONS(2142), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1113] = { - [ts_builtin_sym_end] = ACTIONS(1908), - [sym_identifier] = ACTIONS(1906), - [aux_sym_preproc_include_token1] = ACTIONS(1908), - [aux_sym_preproc_def_token1] = ACTIONS(1908), - [aux_sym_preproc_if_token1] = ACTIONS(1906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1906), - [anon_sym_LPAREN2] = ACTIONS(1908), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_TILDE] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_PLUS] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1908), - [anon_sym_CARET] = ACTIONS(1908), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1908), - [anon_sym_typedef] = ACTIONS(1906), - [anon_sym_extern] = ACTIONS(1906), - [anon_sym___attribute] = ACTIONS(1906), - [anon_sym___attribute__] = ACTIONS(1906), - [anon_sym___declspec] = ACTIONS(1906), - [anon_sym___cdecl] = ACTIONS(1906), - [anon_sym___clrcall] = ACTIONS(1906), - [anon_sym___stdcall] = ACTIONS(1906), - [anon_sym___fastcall] = ACTIONS(1906), - [anon_sym___thiscall] = ACTIONS(1906), - [anon_sym___vectorcall] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_RBRACE] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1908), - [anon_sym_static] = ACTIONS(1906), - [anon_sym_auto] = ACTIONS(1906), - [anon_sym_register] = ACTIONS(1906), - [anon_sym_inline] = ACTIONS(1906), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1906), - [anon_sym_const] = ACTIONS(1906), - [anon_sym_volatile] = ACTIONS(1906), - [anon_sym_restrict] = ACTIONS(1906), - [anon_sym__Atomic] = ACTIONS(1906), - [anon_sym_in] = ACTIONS(1906), - [anon_sym_out] = ACTIONS(1906), - [anon_sym_inout] = ACTIONS(1906), - [anon_sym_bycopy] = ACTIONS(1906), - [anon_sym_byref] = ACTIONS(1906), - [anon_sym_oneway] = ACTIONS(1906), - [anon_sym__Nullable] = ACTIONS(1906), - [anon_sym__Nonnull] = ACTIONS(1906), - [anon_sym__Nullable_result] = ACTIONS(1906), - [anon_sym__Null_unspecified] = ACTIONS(1906), - [anon_sym___autoreleasing] = ACTIONS(1906), - [anon_sym___nullable] = ACTIONS(1906), - [anon_sym___nonnull] = ACTIONS(1906), - [anon_sym___strong] = ACTIONS(1906), - [anon_sym___weak] = ACTIONS(1906), - [anon_sym___bridge] = ACTIONS(1906), - [anon_sym___bridge_transfer] = ACTIONS(1906), - [anon_sym___bridge_retained] = ACTIONS(1906), - [anon_sym___unsafe_unretained] = ACTIONS(1906), - [anon_sym___block] = ACTIONS(1906), - [anon_sym___kindof] = ACTIONS(1906), - [anon_sym___unused] = ACTIONS(1906), - [anon_sym__Complex] = ACTIONS(1906), - [anon_sym___complex] = ACTIONS(1906), - [anon_sym_IBOutlet] = ACTIONS(1906), - [anon_sym_IBInspectable] = ACTIONS(1906), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1906), - [anon_sym_signed] = ACTIONS(1906), - [anon_sym_unsigned] = ACTIONS(1906), - [anon_sym_long] = ACTIONS(1906), - [anon_sym_short] = ACTIONS(1906), - [sym_primitive_type] = ACTIONS(1906), - [anon_sym_enum] = ACTIONS(1906), - [anon_sym_NS_ENUM] = ACTIONS(1906), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1906), - [anon_sym_NS_OPTIONS] = ACTIONS(1906), - [anon_sym_struct] = ACTIONS(1906), - [anon_sym_union] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(1906), - [anon_sym_switch] = ACTIONS(1906), - [anon_sym_case] = ACTIONS(1906), - [anon_sym_default] = ACTIONS(1906), - [anon_sym_while] = ACTIONS(1906), - [anon_sym_do] = ACTIONS(1906), - [anon_sym_for] = ACTIONS(1906), - [anon_sym_return] = ACTIONS(1906), - [anon_sym_break] = ACTIONS(1906), - [anon_sym_continue] = ACTIONS(1906), - [anon_sym_goto] = ACTIONS(1906), - [anon_sym_DASH_DASH] = ACTIONS(1908), - [anon_sym_PLUS_PLUS] = ACTIONS(1908), - [anon_sym_sizeof] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1908), - [anon_sym_u_SQUOTE] = ACTIONS(1908), - [anon_sym_U_SQUOTE] = ACTIONS(1908), - [anon_sym_u8_SQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1908), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1908), - [anon_sym_ATimport] = ACTIONS(1908), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1906), - [anon_sym_ATcompatibility_alias] = ACTIONS(1908), - [anon_sym_ATprotocol] = ACTIONS(1908), - [anon_sym_ATclass] = ACTIONS(1908), - [anon_sym_ATinterface] = ACTIONS(1908), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1906), - [sym_method_attribute_specifier] = ACTIONS(1906), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1906), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1906), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1906), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1906), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1906), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1906), - [anon_sym_NS_AVAILABLE] = ACTIONS(1906), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1906), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_API_AVAILABLE] = ACTIONS(1906), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1906), - [anon_sym_API_DEPRECATED] = ACTIONS(1906), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1906), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1906), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1906), - [anon_sym___deprecated_msg] = ACTIONS(1906), - [anon_sym___deprecated_enum_msg] = ACTIONS(1906), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1906), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1906), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1906), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1906), - [anon_sym_ATimplementation] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(1906), - [anon_sym___typeof] = ACTIONS(1906), - [anon_sym___typeof__] = ACTIONS(1906), - [sym_self] = ACTIONS(1906), - [sym_super] = ACTIONS(1906), - [sym_nil] = ACTIONS(1906), - [sym_id] = ACTIONS(1906), - [sym_instancetype] = ACTIONS(1906), - [sym_Class] = ACTIONS(1906), - [sym_SEL] = ACTIONS(1906), - [sym_IMP] = ACTIONS(1906), - [sym_BOOL] = ACTIONS(1906), - [sym_auto] = ACTIONS(1906), - [anon_sym_ATautoreleasepool] = ACTIONS(1908), - [anon_sym_ATsynchronized] = ACTIONS(1908), - [anon_sym_ATtry] = ACTIONS(1908), - [anon_sym_ATthrow] = ACTIONS(1908), - [anon_sym_ATselector] = ACTIONS(1908), - [anon_sym_ATencode] = ACTIONS(1908), - [anon_sym_AT] = ACTIONS(1906), - [sym_YES] = ACTIONS(1906), - [sym_NO] = ACTIONS(1906), - [anon_sym___builtin_available] = ACTIONS(1906), - [anon_sym_ATavailable] = ACTIONS(1908), - [anon_sym_va_arg] = ACTIONS(1906), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1114] = { - [ts_builtin_sym_end] = ACTIONS(1908), - [sym_identifier] = ACTIONS(1906), - [aux_sym_preproc_include_token1] = ACTIONS(1908), - [aux_sym_preproc_def_token1] = ACTIONS(1908), - [aux_sym_preproc_if_token1] = ACTIONS(1906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1906), - [anon_sym_LPAREN2] = ACTIONS(1908), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_TILDE] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_PLUS] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1908), - [anon_sym_CARET] = ACTIONS(1908), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1908), - [anon_sym_typedef] = ACTIONS(1906), - [anon_sym_extern] = ACTIONS(1906), - [anon_sym___attribute] = ACTIONS(1906), - [anon_sym___attribute__] = ACTIONS(1906), - [anon_sym___declspec] = ACTIONS(1906), - [anon_sym___cdecl] = ACTIONS(1906), - [anon_sym___clrcall] = ACTIONS(1906), - [anon_sym___stdcall] = ACTIONS(1906), - [anon_sym___fastcall] = ACTIONS(1906), - [anon_sym___thiscall] = ACTIONS(1906), - [anon_sym___vectorcall] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_RBRACE] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1908), - [anon_sym_static] = ACTIONS(1906), - [anon_sym_auto] = ACTIONS(1906), - [anon_sym_register] = ACTIONS(1906), - [anon_sym_inline] = ACTIONS(1906), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1906), - [anon_sym_const] = ACTIONS(1906), - [anon_sym_volatile] = ACTIONS(1906), - [anon_sym_restrict] = ACTIONS(1906), - [anon_sym__Atomic] = ACTIONS(1906), - [anon_sym_in] = ACTIONS(1906), - [anon_sym_out] = ACTIONS(1906), - [anon_sym_inout] = ACTIONS(1906), - [anon_sym_bycopy] = ACTIONS(1906), - [anon_sym_byref] = ACTIONS(1906), - [anon_sym_oneway] = ACTIONS(1906), - [anon_sym__Nullable] = ACTIONS(1906), - [anon_sym__Nonnull] = ACTIONS(1906), - [anon_sym__Nullable_result] = ACTIONS(1906), - [anon_sym__Null_unspecified] = ACTIONS(1906), - [anon_sym___autoreleasing] = ACTIONS(1906), - [anon_sym___nullable] = ACTIONS(1906), - [anon_sym___nonnull] = ACTIONS(1906), - [anon_sym___strong] = ACTIONS(1906), - [anon_sym___weak] = ACTIONS(1906), - [anon_sym___bridge] = ACTIONS(1906), - [anon_sym___bridge_transfer] = ACTIONS(1906), - [anon_sym___bridge_retained] = ACTIONS(1906), - [anon_sym___unsafe_unretained] = ACTIONS(1906), - [anon_sym___block] = ACTIONS(1906), - [anon_sym___kindof] = ACTIONS(1906), - [anon_sym___unused] = ACTIONS(1906), - [anon_sym__Complex] = ACTIONS(1906), - [anon_sym___complex] = ACTIONS(1906), - [anon_sym_IBOutlet] = ACTIONS(1906), - [anon_sym_IBInspectable] = ACTIONS(1906), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1906), - [anon_sym_signed] = ACTIONS(1906), - [anon_sym_unsigned] = ACTIONS(1906), - [anon_sym_long] = ACTIONS(1906), - [anon_sym_short] = ACTIONS(1906), - [sym_primitive_type] = ACTIONS(1906), - [anon_sym_enum] = ACTIONS(1906), - [anon_sym_NS_ENUM] = ACTIONS(1906), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1906), - [anon_sym_NS_OPTIONS] = ACTIONS(1906), - [anon_sym_struct] = ACTIONS(1906), - [anon_sym_union] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(1906), - [anon_sym_switch] = ACTIONS(1906), - [anon_sym_case] = ACTIONS(1906), - [anon_sym_default] = ACTIONS(1906), - [anon_sym_while] = ACTIONS(1906), - [anon_sym_do] = ACTIONS(1906), - [anon_sym_for] = ACTIONS(1906), - [anon_sym_return] = ACTIONS(1906), - [anon_sym_break] = ACTIONS(1906), - [anon_sym_continue] = ACTIONS(1906), - [anon_sym_goto] = ACTIONS(1906), - [anon_sym_DASH_DASH] = ACTIONS(1908), - [anon_sym_PLUS_PLUS] = ACTIONS(1908), - [anon_sym_sizeof] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1908), - [anon_sym_u_SQUOTE] = ACTIONS(1908), - [anon_sym_U_SQUOTE] = ACTIONS(1908), - [anon_sym_u8_SQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1908), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1908), - [anon_sym_ATimport] = ACTIONS(1908), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1906), - [anon_sym_ATcompatibility_alias] = ACTIONS(1908), - [anon_sym_ATprotocol] = ACTIONS(1908), - [anon_sym_ATclass] = ACTIONS(1908), - [anon_sym_ATinterface] = ACTIONS(1908), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1906), - [sym_method_attribute_specifier] = ACTIONS(1906), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1906), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1906), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1906), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1906), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1906), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1906), - [anon_sym_NS_AVAILABLE] = ACTIONS(1906), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1906), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_API_AVAILABLE] = ACTIONS(1906), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1906), - [anon_sym_API_DEPRECATED] = ACTIONS(1906), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1906), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1906), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1906), - [anon_sym___deprecated_msg] = ACTIONS(1906), - [anon_sym___deprecated_enum_msg] = ACTIONS(1906), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1906), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1906), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1906), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1906), - [anon_sym_ATimplementation] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(1906), - [anon_sym___typeof] = ACTIONS(1906), - [anon_sym___typeof__] = ACTIONS(1906), - [sym_self] = ACTIONS(1906), - [sym_super] = ACTIONS(1906), - [sym_nil] = ACTIONS(1906), - [sym_id] = ACTIONS(1906), - [sym_instancetype] = ACTIONS(1906), - [sym_Class] = ACTIONS(1906), - [sym_SEL] = ACTIONS(1906), - [sym_IMP] = ACTIONS(1906), - [sym_BOOL] = ACTIONS(1906), - [sym_auto] = ACTIONS(1906), - [anon_sym_ATautoreleasepool] = ACTIONS(1908), - [anon_sym_ATsynchronized] = ACTIONS(1908), - [anon_sym_ATtry] = ACTIONS(1908), - [anon_sym_ATthrow] = ACTIONS(1908), - [anon_sym_ATselector] = ACTIONS(1908), - [anon_sym_ATencode] = ACTIONS(1908), - [anon_sym_AT] = ACTIONS(1906), - [sym_YES] = ACTIONS(1906), - [sym_NO] = ACTIONS(1906), - [anon_sym___builtin_available] = ACTIONS(1906), - [anon_sym_ATavailable] = ACTIONS(1908), - [anon_sym_va_arg] = ACTIONS(1906), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1115] = { - [ts_builtin_sym_end] = ACTIONS(2144), - [sym_identifier] = ACTIONS(2142), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym___attribute] = ACTIONS(2142), - [anon_sym___attribute__] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2142), - [anon_sym___cdecl] = ACTIONS(2142), - [anon_sym___clrcall] = ACTIONS(2142), - [anon_sym___stdcall] = ACTIONS(2142), - [anon_sym___fastcall] = ACTIONS(2142), - [anon_sym___thiscall] = ACTIONS(2142), - [anon_sym___vectorcall] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_auto] = ACTIONS(2142), - [anon_sym_register] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_volatile] = ACTIONS(2142), - [anon_sym_restrict] = ACTIONS(2142), - [anon_sym__Atomic] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_out] = ACTIONS(2142), - [anon_sym_inout] = ACTIONS(2142), - [anon_sym_bycopy] = ACTIONS(2142), - [anon_sym_byref] = ACTIONS(2142), - [anon_sym_oneway] = ACTIONS(2142), - [anon_sym__Nullable] = ACTIONS(2142), - [anon_sym__Nonnull] = ACTIONS(2142), - [anon_sym__Nullable_result] = ACTIONS(2142), - [anon_sym__Null_unspecified] = ACTIONS(2142), - [anon_sym___autoreleasing] = ACTIONS(2142), - [anon_sym___nullable] = ACTIONS(2142), - [anon_sym___nonnull] = ACTIONS(2142), - [anon_sym___strong] = ACTIONS(2142), - [anon_sym___weak] = ACTIONS(2142), - [anon_sym___bridge] = ACTIONS(2142), - [anon_sym___bridge_transfer] = ACTIONS(2142), - [anon_sym___bridge_retained] = ACTIONS(2142), - [anon_sym___unsafe_unretained] = ACTIONS(2142), - [anon_sym___block] = ACTIONS(2142), - [anon_sym___kindof] = ACTIONS(2142), - [anon_sym___unused] = ACTIONS(2142), - [anon_sym__Complex] = ACTIONS(2142), - [anon_sym___complex] = ACTIONS(2142), - [anon_sym_IBOutlet] = ACTIONS(2142), - [anon_sym_IBInspectable] = ACTIONS(2142), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2142), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_NS_ENUM] = ACTIONS(2142), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2142), - [anon_sym_NS_OPTIONS] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_goto] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_sizeof] = ACTIONS(2142), - [sym_number_literal] = ACTIONS(2144), - [anon_sym_L_SQUOTE] = ACTIONS(2144), - [anon_sym_u_SQUOTE] = ACTIONS(2144), - [anon_sym_U_SQUOTE] = ACTIONS(2144), - [anon_sym_u8_SQUOTE] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_L_DQUOTE] = ACTIONS(2144), - [anon_sym_u_DQUOTE] = ACTIONS(2144), - [anon_sym_U_DQUOTE] = ACTIONS(2144), - [anon_sym_u8_DQUOTE] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2144), - [anon_sym_ATimport] = ACTIONS(2144), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2142), - [anon_sym_ATcompatibility_alias] = ACTIONS(2144), - [anon_sym_ATprotocol] = ACTIONS(2144), - [anon_sym_ATclass] = ACTIONS(2144), - [anon_sym_ATinterface] = ACTIONS(2144), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2142), - [sym_method_attribute_specifier] = ACTIONS(2142), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2142), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE] = ACTIONS(2142), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_API_AVAILABLE] = ACTIONS(2142), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_API_DEPRECATED] = ACTIONS(2142), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2142), - [anon_sym___deprecated_msg] = ACTIONS(2142), - [anon_sym___deprecated_enum_msg] = ACTIONS(2142), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2142), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2142), - [anon_sym_ATimplementation] = ACTIONS(2144), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym___typeof] = ACTIONS(2142), - [anon_sym___typeof__] = ACTIONS(2142), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_nil] = ACTIONS(2142), - [sym_id] = ACTIONS(2142), - [sym_instancetype] = ACTIONS(2142), - [sym_Class] = ACTIONS(2142), - [sym_SEL] = ACTIONS(2142), - [sym_IMP] = ACTIONS(2142), - [sym_BOOL] = ACTIONS(2142), - [sym_auto] = ACTIONS(2142), - [anon_sym_ATautoreleasepool] = ACTIONS(2144), - [anon_sym_ATsynchronized] = ACTIONS(2144), - [anon_sym_ATtry] = ACTIONS(2144), - [anon_sym_ATthrow] = ACTIONS(2144), - [anon_sym_ATselector] = ACTIONS(2144), - [anon_sym_ATencode] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2142), - [sym_YES] = ACTIONS(2142), - [sym_NO] = ACTIONS(2142), - [anon_sym___builtin_available] = ACTIONS(2142), - [anon_sym_ATavailable] = ACTIONS(2144), - [anon_sym_va_arg] = ACTIONS(2142), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1116] = { - [ts_builtin_sym_end] = ACTIONS(1740), - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1117] = { - [ts_builtin_sym_end] = ACTIONS(2144), - [sym_identifier] = ACTIONS(2142), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym___attribute] = ACTIONS(2142), - [anon_sym___attribute__] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2142), - [anon_sym___cdecl] = ACTIONS(2142), - [anon_sym___clrcall] = ACTIONS(2142), - [anon_sym___stdcall] = ACTIONS(2142), - [anon_sym___fastcall] = ACTIONS(2142), - [anon_sym___thiscall] = ACTIONS(2142), - [anon_sym___vectorcall] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_auto] = ACTIONS(2142), - [anon_sym_register] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_volatile] = ACTIONS(2142), - [anon_sym_restrict] = ACTIONS(2142), - [anon_sym__Atomic] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_out] = ACTIONS(2142), - [anon_sym_inout] = ACTIONS(2142), - [anon_sym_bycopy] = ACTIONS(2142), - [anon_sym_byref] = ACTIONS(2142), - [anon_sym_oneway] = ACTIONS(2142), - [anon_sym__Nullable] = ACTIONS(2142), - [anon_sym__Nonnull] = ACTIONS(2142), - [anon_sym__Nullable_result] = ACTIONS(2142), - [anon_sym__Null_unspecified] = ACTIONS(2142), - [anon_sym___autoreleasing] = ACTIONS(2142), - [anon_sym___nullable] = ACTIONS(2142), - [anon_sym___nonnull] = ACTIONS(2142), - [anon_sym___strong] = ACTIONS(2142), - [anon_sym___weak] = ACTIONS(2142), - [anon_sym___bridge] = ACTIONS(2142), - [anon_sym___bridge_transfer] = ACTIONS(2142), - [anon_sym___bridge_retained] = ACTIONS(2142), - [anon_sym___unsafe_unretained] = ACTIONS(2142), - [anon_sym___block] = ACTIONS(2142), - [anon_sym___kindof] = ACTIONS(2142), - [anon_sym___unused] = ACTIONS(2142), - [anon_sym__Complex] = ACTIONS(2142), - [anon_sym___complex] = ACTIONS(2142), - [anon_sym_IBOutlet] = ACTIONS(2142), - [anon_sym_IBInspectable] = ACTIONS(2142), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2142), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_NS_ENUM] = ACTIONS(2142), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2142), - [anon_sym_NS_OPTIONS] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_goto] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_sizeof] = ACTIONS(2142), - [sym_number_literal] = ACTIONS(2144), - [anon_sym_L_SQUOTE] = ACTIONS(2144), - [anon_sym_u_SQUOTE] = ACTIONS(2144), - [anon_sym_U_SQUOTE] = ACTIONS(2144), - [anon_sym_u8_SQUOTE] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_L_DQUOTE] = ACTIONS(2144), - [anon_sym_u_DQUOTE] = ACTIONS(2144), - [anon_sym_U_DQUOTE] = ACTIONS(2144), - [anon_sym_u8_DQUOTE] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2144), - [anon_sym_ATimport] = ACTIONS(2144), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2142), - [anon_sym_ATcompatibility_alias] = ACTIONS(2144), - [anon_sym_ATprotocol] = ACTIONS(2144), - [anon_sym_ATclass] = ACTIONS(2144), - [anon_sym_ATinterface] = ACTIONS(2144), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2142), - [sym_method_attribute_specifier] = ACTIONS(2142), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2142), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE] = ACTIONS(2142), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_API_AVAILABLE] = ACTIONS(2142), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_API_DEPRECATED] = ACTIONS(2142), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2142), - [anon_sym___deprecated_msg] = ACTIONS(2142), - [anon_sym___deprecated_enum_msg] = ACTIONS(2142), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2142), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2142), - [anon_sym_ATimplementation] = ACTIONS(2144), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym___typeof] = ACTIONS(2142), - [anon_sym___typeof__] = ACTIONS(2142), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_nil] = ACTIONS(2142), - [sym_id] = ACTIONS(2142), - [sym_instancetype] = ACTIONS(2142), - [sym_Class] = ACTIONS(2142), - [sym_SEL] = ACTIONS(2142), - [sym_IMP] = ACTIONS(2142), - [sym_BOOL] = ACTIONS(2142), - [sym_auto] = ACTIONS(2142), - [anon_sym_ATautoreleasepool] = ACTIONS(2144), - [anon_sym_ATsynchronized] = ACTIONS(2144), - [anon_sym_ATtry] = ACTIONS(2144), - [anon_sym_ATthrow] = ACTIONS(2144), - [anon_sym_ATselector] = ACTIONS(2144), - [anon_sym_ATencode] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2142), - [sym_YES] = ACTIONS(2142), - [sym_NO] = ACTIONS(2142), - [anon_sym___builtin_available] = ACTIONS(2142), - [anon_sym_ATavailable] = ACTIONS(2144), - [anon_sym_va_arg] = ACTIONS(2142), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1118] = { - [ts_builtin_sym_end] = ACTIONS(2144), - [sym_identifier] = ACTIONS(2142), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym___attribute] = ACTIONS(2142), - [anon_sym___attribute__] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2142), - [anon_sym___cdecl] = ACTIONS(2142), - [anon_sym___clrcall] = ACTIONS(2142), - [anon_sym___stdcall] = ACTIONS(2142), - [anon_sym___fastcall] = ACTIONS(2142), - [anon_sym___thiscall] = ACTIONS(2142), - [anon_sym___vectorcall] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_auto] = ACTIONS(2142), - [anon_sym_register] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_volatile] = ACTIONS(2142), - [anon_sym_restrict] = ACTIONS(2142), - [anon_sym__Atomic] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_out] = ACTIONS(2142), - [anon_sym_inout] = ACTIONS(2142), - [anon_sym_bycopy] = ACTIONS(2142), - [anon_sym_byref] = ACTIONS(2142), - [anon_sym_oneway] = ACTIONS(2142), - [anon_sym__Nullable] = ACTIONS(2142), - [anon_sym__Nonnull] = ACTIONS(2142), - [anon_sym__Nullable_result] = ACTIONS(2142), - [anon_sym__Null_unspecified] = ACTIONS(2142), - [anon_sym___autoreleasing] = ACTIONS(2142), - [anon_sym___nullable] = ACTIONS(2142), - [anon_sym___nonnull] = ACTIONS(2142), - [anon_sym___strong] = ACTIONS(2142), - [anon_sym___weak] = ACTIONS(2142), - [anon_sym___bridge] = ACTIONS(2142), - [anon_sym___bridge_transfer] = ACTIONS(2142), - [anon_sym___bridge_retained] = ACTIONS(2142), - [anon_sym___unsafe_unretained] = ACTIONS(2142), - [anon_sym___block] = ACTIONS(2142), - [anon_sym___kindof] = ACTIONS(2142), - [anon_sym___unused] = ACTIONS(2142), - [anon_sym__Complex] = ACTIONS(2142), - [anon_sym___complex] = ACTIONS(2142), - [anon_sym_IBOutlet] = ACTIONS(2142), - [anon_sym_IBInspectable] = ACTIONS(2142), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2142), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_NS_ENUM] = ACTIONS(2142), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2142), - [anon_sym_NS_OPTIONS] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_goto] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_sizeof] = ACTIONS(2142), - [sym_number_literal] = ACTIONS(2144), - [anon_sym_L_SQUOTE] = ACTIONS(2144), - [anon_sym_u_SQUOTE] = ACTIONS(2144), - [anon_sym_U_SQUOTE] = ACTIONS(2144), - [anon_sym_u8_SQUOTE] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_L_DQUOTE] = ACTIONS(2144), - [anon_sym_u_DQUOTE] = ACTIONS(2144), - [anon_sym_U_DQUOTE] = ACTIONS(2144), - [anon_sym_u8_DQUOTE] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2144), - [anon_sym_ATimport] = ACTIONS(2144), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2142), - [anon_sym_ATcompatibility_alias] = ACTIONS(2144), - [anon_sym_ATprotocol] = ACTIONS(2144), - [anon_sym_ATclass] = ACTIONS(2144), - [anon_sym_ATinterface] = ACTIONS(2144), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2142), - [sym_method_attribute_specifier] = ACTIONS(2142), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2142), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE] = ACTIONS(2142), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_API_AVAILABLE] = ACTIONS(2142), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_API_DEPRECATED] = ACTIONS(2142), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2142), - [anon_sym___deprecated_msg] = ACTIONS(2142), - [anon_sym___deprecated_enum_msg] = ACTIONS(2142), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2142), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2142), - [anon_sym_ATimplementation] = ACTIONS(2144), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym___typeof] = ACTIONS(2142), - [anon_sym___typeof__] = ACTIONS(2142), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_nil] = ACTIONS(2142), - [sym_id] = ACTIONS(2142), - [sym_instancetype] = ACTIONS(2142), - [sym_Class] = ACTIONS(2142), - [sym_SEL] = ACTIONS(2142), - [sym_IMP] = ACTIONS(2142), - [sym_BOOL] = ACTIONS(2142), - [sym_auto] = ACTIONS(2142), - [anon_sym_ATautoreleasepool] = ACTIONS(2144), - [anon_sym_ATsynchronized] = ACTIONS(2144), - [anon_sym_ATtry] = ACTIONS(2144), - [anon_sym_ATthrow] = ACTIONS(2144), - [anon_sym_ATselector] = ACTIONS(2144), - [anon_sym_ATencode] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2142), - [sym_YES] = ACTIONS(2142), - [sym_NO] = ACTIONS(2142), - [anon_sym___builtin_available] = ACTIONS(2142), - [anon_sym_ATavailable] = ACTIONS(2144), - [anon_sym_va_arg] = ACTIONS(2142), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1119] = { - [ts_builtin_sym_end] = ACTIONS(1744), - [sym_identifier] = ACTIONS(1742), - [aux_sym_preproc_include_token1] = ACTIONS(1744), - [aux_sym_preproc_def_token1] = ACTIONS(1744), - [aux_sym_preproc_if_token1] = ACTIONS(1742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1742), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1742), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_TILDE] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_CARET] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_typedef] = ACTIONS(1742), - [anon_sym_extern] = ACTIONS(1742), - [anon_sym___attribute] = ACTIONS(1742), - [anon_sym___attribute__] = ACTIONS(1742), - [anon_sym___declspec] = ACTIONS(1742), - [anon_sym___cdecl] = ACTIONS(1742), - [anon_sym___clrcall] = ACTIONS(1742), - [anon_sym___stdcall] = ACTIONS(1742), - [anon_sym___fastcall] = ACTIONS(1742), - [anon_sym___thiscall] = ACTIONS(1742), - [anon_sym___vectorcall] = ACTIONS(1742), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1744), - [anon_sym_static] = ACTIONS(1742), - [anon_sym_auto] = ACTIONS(1742), - [anon_sym_register] = ACTIONS(1742), - [anon_sym_inline] = ACTIONS(1742), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1742), - [anon_sym_const] = ACTIONS(1742), - [anon_sym_volatile] = ACTIONS(1742), - [anon_sym_restrict] = ACTIONS(1742), - [anon_sym__Atomic] = ACTIONS(1742), - [anon_sym_in] = ACTIONS(1742), - [anon_sym_out] = ACTIONS(1742), - [anon_sym_inout] = ACTIONS(1742), - [anon_sym_bycopy] = ACTIONS(1742), - [anon_sym_byref] = ACTIONS(1742), - [anon_sym_oneway] = ACTIONS(1742), - [anon_sym__Nullable] = ACTIONS(1742), - [anon_sym__Nonnull] = ACTIONS(1742), - [anon_sym__Nullable_result] = ACTIONS(1742), - [anon_sym__Null_unspecified] = ACTIONS(1742), - [anon_sym___autoreleasing] = ACTIONS(1742), - [anon_sym___nullable] = ACTIONS(1742), - [anon_sym___nonnull] = ACTIONS(1742), - [anon_sym___strong] = ACTIONS(1742), - [anon_sym___weak] = ACTIONS(1742), - [anon_sym___bridge] = ACTIONS(1742), - [anon_sym___bridge_transfer] = ACTIONS(1742), - [anon_sym___bridge_retained] = ACTIONS(1742), - [anon_sym___unsafe_unretained] = ACTIONS(1742), - [anon_sym___block] = ACTIONS(1742), - [anon_sym___kindof] = ACTIONS(1742), - [anon_sym___unused] = ACTIONS(1742), - [anon_sym__Complex] = ACTIONS(1742), - [anon_sym___complex] = ACTIONS(1742), - [anon_sym_IBOutlet] = ACTIONS(1742), - [anon_sym_IBInspectable] = ACTIONS(1742), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1742), - [anon_sym_signed] = ACTIONS(1742), - [anon_sym_unsigned] = ACTIONS(1742), - [anon_sym_long] = ACTIONS(1742), - [anon_sym_short] = ACTIONS(1742), - [sym_primitive_type] = ACTIONS(1742), - [anon_sym_enum] = ACTIONS(1742), - [anon_sym_NS_ENUM] = ACTIONS(1742), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1742), - [anon_sym_NS_OPTIONS] = ACTIONS(1742), - [anon_sym_struct] = ACTIONS(1742), - [anon_sym_union] = ACTIONS(1742), - [anon_sym_if] = ACTIONS(1742), - [anon_sym_switch] = ACTIONS(1742), - [anon_sym_case] = ACTIONS(1742), - [anon_sym_default] = ACTIONS(1742), - [anon_sym_while] = ACTIONS(1742), - [anon_sym_do] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(1742), - [anon_sym_return] = ACTIONS(1742), - [anon_sym_break] = ACTIONS(1742), - [anon_sym_continue] = ACTIONS(1742), - [anon_sym_goto] = ACTIONS(1742), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_sizeof] = ACTIONS(1742), - [sym_number_literal] = ACTIONS(1744), - [anon_sym_L_SQUOTE] = ACTIONS(1744), - [anon_sym_u_SQUOTE] = ACTIONS(1744), - [anon_sym_U_SQUOTE] = ACTIONS(1744), - [anon_sym_u8_SQUOTE] = ACTIONS(1744), - [anon_sym_SQUOTE] = ACTIONS(1744), - [anon_sym_L_DQUOTE] = ACTIONS(1744), - [anon_sym_u_DQUOTE] = ACTIONS(1744), - [anon_sym_U_DQUOTE] = ACTIONS(1744), - [anon_sym_u8_DQUOTE] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [sym_true] = ACTIONS(1742), - [sym_false] = ACTIONS(1742), - [sym_null] = ACTIONS(1742), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1744), - [anon_sym_ATimport] = ACTIONS(1744), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1742), - [anon_sym_ATcompatibility_alias] = ACTIONS(1744), - [anon_sym_ATprotocol] = ACTIONS(1744), - [anon_sym_ATclass] = ACTIONS(1744), - [anon_sym_ATinterface] = ACTIONS(1744), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1742), - [sym_method_attribute_specifier] = ACTIONS(1742), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1742), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1742), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1742), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1742), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1742), - [anon_sym_NS_AVAILABLE] = ACTIONS(1742), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1742), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_API_AVAILABLE] = ACTIONS(1742), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_API_DEPRECATED] = ACTIONS(1742), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1742), - [anon_sym___deprecated_msg] = ACTIONS(1742), - [anon_sym___deprecated_enum_msg] = ACTIONS(1742), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1742), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1742), - [anon_sym_ATimplementation] = ACTIONS(1744), - [anon_sym_typeof] = ACTIONS(1742), - [anon_sym___typeof] = ACTIONS(1742), - [anon_sym___typeof__] = ACTIONS(1742), - [sym_self] = ACTIONS(1742), - [sym_super] = ACTIONS(1742), - [sym_nil] = ACTIONS(1742), - [sym_id] = ACTIONS(1742), - [sym_instancetype] = ACTIONS(1742), - [sym_Class] = ACTIONS(1742), - [sym_SEL] = ACTIONS(1742), - [sym_IMP] = ACTIONS(1742), - [sym_BOOL] = ACTIONS(1742), - [sym_auto] = ACTIONS(1742), - [anon_sym_ATautoreleasepool] = ACTIONS(1744), - [anon_sym_ATsynchronized] = ACTIONS(1744), - [anon_sym_ATtry] = ACTIONS(1744), - [anon_sym_ATthrow] = ACTIONS(1744), - [anon_sym_ATselector] = ACTIONS(1744), - [anon_sym_ATencode] = ACTIONS(1744), - [anon_sym_AT] = ACTIONS(1742), - [sym_YES] = ACTIONS(1742), - [sym_NO] = ACTIONS(1742), - [anon_sym___builtin_available] = ACTIONS(1742), - [anon_sym_ATavailable] = ACTIONS(1744), - [anon_sym_va_arg] = ACTIONS(1742), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1120] = { - [ts_builtin_sym_end] = ACTIONS(1744), - [sym_identifier] = ACTIONS(1742), - [aux_sym_preproc_include_token1] = ACTIONS(1744), - [aux_sym_preproc_def_token1] = ACTIONS(1744), - [aux_sym_preproc_if_token1] = ACTIONS(1742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1742), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1742), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_TILDE] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_CARET] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_typedef] = ACTIONS(1742), - [anon_sym_extern] = ACTIONS(1742), - [anon_sym___attribute] = ACTIONS(1742), - [anon_sym___attribute__] = ACTIONS(1742), - [anon_sym___declspec] = ACTIONS(1742), - [anon_sym___cdecl] = ACTIONS(1742), - [anon_sym___clrcall] = ACTIONS(1742), - [anon_sym___stdcall] = ACTIONS(1742), - [anon_sym___fastcall] = ACTIONS(1742), - [anon_sym___thiscall] = ACTIONS(1742), - [anon_sym___vectorcall] = ACTIONS(1742), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1744), - [anon_sym_static] = ACTIONS(1742), - [anon_sym_auto] = ACTIONS(1742), - [anon_sym_register] = ACTIONS(1742), - [anon_sym_inline] = ACTIONS(1742), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1742), - [anon_sym_const] = ACTIONS(1742), - [anon_sym_volatile] = ACTIONS(1742), - [anon_sym_restrict] = ACTIONS(1742), - [anon_sym__Atomic] = ACTIONS(1742), - [anon_sym_in] = ACTIONS(1742), - [anon_sym_out] = ACTIONS(1742), - [anon_sym_inout] = ACTIONS(1742), - [anon_sym_bycopy] = ACTIONS(1742), - [anon_sym_byref] = ACTIONS(1742), - [anon_sym_oneway] = ACTIONS(1742), - [anon_sym__Nullable] = ACTIONS(1742), - [anon_sym__Nonnull] = ACTIONS(1742), - [anon_sym__Nullable_result] = ACTIONS(1742), - [anon_sym__Null_unspecified] = ACTIONS(1742), - [anon_sym___autoreleasing] = ACTIONS(1742), - [anon_sym___nullable] = ACTIONS(1742), - [anon_sym___nonnull] = ACTIONS(1742), - [anon_sym___strong] = ACTIONS(1742), - [anon_sym___weak] = ACTIONS(1742), - [anon_sym___bridge] = ACTIONS(1742), - [anon_sym___bridge_transfer] = ACTIONS(1742), - [anon_sym___bridge_retained] = ACTIONS(1742), - [anon_sym___unsafe_unretained] = ACTIONS(1742), - [anon_sym___block] = ACTIONS(1742), - [anon_sym___kindof] = ACTIONS(1742), - [anon_sym___unused] = ACTIONS(1742), - [anon_sym__Complex] = ACTIONS(1742), - [anon_sym___complex] = ACTIONS(1742), - [anon_sym_IBOutlet] = ACTIONS(1742), - [anon_sym_IBInspectable] = ACTIONS(1742), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1742), - [anon_sym_signed] = ACTIONS(1742), - [anon_sym_unsigned] = ACTIONS(1742), - [anon_sym_long] = ACTIONS(1742), - [anon_sym_short] = ACTIONS(1742), - [sym_primitive_type] = ACTIONS(1742), - [anon_sym_enum] = ACTIONS(1742), - [anon_sym_NS_ENUM] = ACTIONS(1742), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1742), - [anon_sym_NS_OPTIONS] = ACTIONS(1742), - [anon_sym_struct] = ACTIONS(1742), - [anon_sym_union] = ACTIONS(1742), - [anon_sym_if] = ACTIONS(1742), - [anon_sym_switch] = ACTIONS(1742), - [anon_sym_case] = ACTIONS(1742), - [anon_sym_default] = ACTIONS(1742), - [anon_sym_while] = ACTIONS(1742), - [anon_sym_do] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(1742), - [anon_sym_return] = ACTIONS(1742), - [anon_sym_break] = ACTIONS(1742), - [anon_sym_continue] = ACTIONS(1742), - [anon_sym_goto] = ACTIONS(1742), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_sizeof] = ACTIONS(1742), - [sym_number_literal] = ACTIONS(1744), - [anon_sym_L_SQUOTE] = ACTIONS(1744), - [anon_sym_u_SQUOTE] = ACTIONS(1744), - [anon_sym_U_SQUOTE] = ACTIONS(1744), - [anon_sym_u8_SQUOTE] = ACTIONS(1744), - [anon_sym_SQUOTE] = ACTIONS(1744), - [anon_sym_L_DQUOTE] = ACTIONS(1744), - [anon_sym_u_DQUOTE] = ACTIONS(1744), - [anon_sym_U_DQUOTE] = ACTIONS(1744), - [anon_sym_u8_DQUOTE] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [sym_true] = ACTIONS(1742), - [sym_false] = ACTIONS(1742), - [sym_null] = ACTIONS(1742), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1744), - [anon_sym_ATimport] = ACTIONS(1744), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1742), - [anon_sym_ATcompatibility_alias] = ACTIONS(1744), - [anon_sym_ATprotocol] = ACTIONS(1744), - [anon_sym_ATclass] = ACTIONS(1744), - [anon_sym_ATinterface] = ACTIONS(1744), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1742), - [sym_method_attribute_specifier] = ACTIONS(1742), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1742), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1742), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1742), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1742), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1742), - [anon_sym_NS_AVAILABLE] = ACTIONS(1742), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1742), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_API_AVAILABLE] = ACTIONS(1742), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_API_DEPRECATED] = ACTIONS(1742), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1742), - [anon_sym___deprecated_msg] = ACTIONS(1742), - [anon_sym___deprecated_enum_msg] = ACTIONS(1742), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1742), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1742), - [anon_sym_ATimplementation] = ACTIONS(1744), - [anon_sym_typeof] = ACTIONS(1742), - [anon_sym___typeof] = ACTIONS(1742), - [anon_sym___typeof__] = ACTIONS(1742), - [sym_self] = ACTIONS(1742), - [sym_super] = ACTIONS(1742), - [sym_nil] = ACTIONS(1742), - [sym_id] = ACTIONS(1742), - [sym_instancetype] = ACTIONS(1742), - [sym_Class] = ACTIONS(1742), - [sym_SEL] = ACTIONS(1742), - [sym_IMP] = ACTIONS(1742), - [sym_BOOL] = ACTIONS(1742), - [sym_auto] = ACTIONS(1742), - [anon_sym_ATautoreleasepool] = ACTIONS(1744), - [anon_sym_ATsynchronized] = ACTIONS(1744), - [anon_sym_ATtry] = ACTIONS(1744), - [anon_sym_ATthrow] = ACTIONS(1744), - [anon_sym_ATselector] = ACTIONS(1744), - [anon_sym_ATencode] = ACTIONS(1744), - [anon_sym_AT] = ACTIONS(1742), - [sym_YES] = ACTIONS(1742), - [sym_NO] = ACTIONS(1742), - [anon_sym___builtin_available] = ACTIONS(1742), - [anon_sym_ATavailable] = ACTIONS(1744), - [anon_sym_va_arg] = ACTIONS(1742), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1121] = { - [ts_builtin_sym_end] = ACTIONS(1744), - [sym_identifier] = ACTIONS(1742), - [aux_sym_preproc_include_token1] = ACTIONS(1744), - [aux_sym_preproc_def_token1] = ACTIONS(1744), - [aux_sym_preproc_if_token1] = ACTIONS(1742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1742), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1742), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_TILDE] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_CARET] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_typedef] = ACTIONS(1742), - [anon_sym_extern] = ACTIONS(1742), - [anon_sym___attribute] = ACTIONS(1742), - [anon_sym___attribute__] = ACTIONS(1742), - [anon_sym___declspec] = ACTIONS(1742), - [anon_sym___cdecl] = ACTIONS(1742), - [anon_sym___clrcall] = ACTIONS(1742), - [anon_sym___stdcall] = ACTIONS(1742), - [anon_sym___fastcall] = ACTIONS(1742), - [anon_sym___thiscall] = ACTIONS(1742), - [anon_sym___vectorcall] = ACTIONS(1742), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1744), - [anon_sym_static] = ACTIONS(1742), - [anon_sym_auto] = ACTIONS(1742), - [anon_sym_register] = ACTIONS(1742), - [anon_sym_inline] = ACTIONS(1742), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1742), - [anon_sym_const] = ACTIONS(1742), - [anon_sym_volatile] = ACTIONS(1742), - [anon_sym_restrict] = ACTIONS(1742), - [anon_sym__Atomic] = ACTIONS(1742), - [anon_sym_in] = ACTIONS(1742), - [anon_sym_out] = ACTIONS(1742), - [anon_sym_inout] = ACTIONS(1742), - [anon_sym_bycopy] = ACTIONS(1742), - [anon_sym_byref] = ACTIONS(1742), - [anon_sym_oneway] = ACTIONS(1742), - [anon_sym__Nullable] = ACTIONS(1742), - [anon_sym__Nonnull] = ACTIONS(1742), - [anon_sym__Nullable_result] = ACTIONS(1742), - [anon_sym__Null_unspecified] = ACTIONS(1742), - [anon_sym___autoreleasing] = ACTIONS(1742), - [anon_sym___nullable] = ACTIONS(1742), - [anon_sym___nonnull] = ACTIONS(1742), - [anon_sym___strong] = ACTIONS(1742), - [anon_sym___weak] = ACTIONS(1742), - [anon_sym___bridge] = ACTIONS(1742), - [anon_sym___bridge_transfer] = ACTIONS(1742), - [anon_sym___bridge_retained] = ACTIONS(1742), - [anon_sym___unsafe_unretained] = ACTIONS(1742), - [anon_sym___block] = ACTIONS(1742), - [anon_sym___kindof] = ACTIONS(1742), - [anon_sym___unused] = ACTIONS(1742), - [anon_sym__Complex] = ACTIONS(1742), - [anon_sym___complex] = ACTIONS(1742), - [anon_sym_IBOutlet] = ACTIONS(1742), - [anon_sym_IBInspectable] = ACTIONS(1742), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1742), - [anon_sym_signed] = ACTIONS(1742), - [anon_sym_unsigned] = ACTIONS(1742), - [anon_sym_long] = ACTIONS(1742), - [anon_sym_short] = ACTIONS(1742), - [sym_primitive_type] = ACTIONS(1742), - [anon_sym_enum] = ACTIONS(1742), - [anon_sym_NS_ENUM] = ACTIONS(1742), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1742), - [anon_sym_NS_OPTIONS] = ACTIONS(1742), - [anon_sym_struct] = ACTIONS(1742), - [anon_sym_union] = ACTIONS(1742), - [anon_sym_if] = ACTIONS(1742), - [anon_sym_switch] = ACTIONS(1742), - [anon_sym_case] = ACTIONS(1742), - [anon_sym_default] = ACTIONS(1742), - [anon_sym_while] = ACTIONS(1742), - [anon_sym_do] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(1742), - [anon_sym_return] = ACTIONS(1742), - [anon_sym_break] = ACTIONS(1742), - [anon_sym_continue] = ACTIONS(1742), - [anon_sym_goto] = ACTIONS(1742), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_sizeof] = ACTIONS(1742), - [sym_number_literal] = ACTIONS(1744), - [anon_sym_L_SQUOTE] = ACTIONS(1744), - [anon_sym_u_SQUOTE] = ACTIONS(1744), - [anon_sym_U_SQUOTE] = ACTIONS(1744), - [anon_sym_u8_SQUOTE] = ACTIONS(1744), - [anon_sym_SQUOTE] = ACTIONS(1744), - [anon_sym_L_DQUOTE] = ACTIONS(1744), - [anon_sym_u_DQUOTE] = ACTIONS(1744), - [anon_sym_U_DQUOTE] = ACTIONS(1744), - [anon_sym_u8_DQUOTE] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [sym_true] = ACTIONS(1742), - [sym_false] = ACTIONS(1742), - [sym_null] = ACTIONS(1742), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1744), - [anon_sym_ATimport] = ACTIONS(1744), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1742), - [anon_sym_ATcompatibility_alias] = ACTIONS(1744), - [anon_sym_ATprotocol] = ACTIONS(1744), - [anon_sym_ATclass] = ACTIONS(1744), - [anon_sym_ATinterface] = ACTIONS(1744), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1742), - [sym_method_attribute_specifier] = ACTIONS(1742), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1742), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1742), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1742), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1742), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1742), - [anon_sym_NS_AVAILABLE] = ACTIONS(1742), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1742), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_API_AVAILABLE] = ACTIONS(1742), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_API_DEPRECATED] = ACTIONS(1742), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1742), - [anon_sym___deprecated_msg] = ACTIONS(1742), - [anon_sym___deprecated_enum_msg] = ACTIONS(1742), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1742), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1742), - [anon_sym_ATimplementation] = ACTIONS(1744), - [anon_sym_typeof] = ACTIONS(1742), - [anon_sym___typeof] = ACTIONS(1742), - [anon_sym___typeof__] = ACTIONS(1742), - [sym_self] = ACTIONS(1742), - [sym_super] = ACTIONS(1742), - [sym_nil] = ACTIONS(1742), - [sym_id] = ACTIONS(1742), - [sym_instancetype] = ACTIONS(1742), - [sym_Class] = ACTIONS(1742), - [sym_SEL] = ACTIONS(1742), - [sym_IMP] = ACTIONS(1742), - [sym_BOOL] = ACTIONS(1742), - [sym_auto] = ACTIONS(1742), - [anon_sym_ATautoreleasepool] = ACTIONS(1744), - [anon_sym_ATsynchronized] = ACTIONS(1744), - [anon_sym_ATtry] = ACTIONS(1744), - [anon_sym_ATthrow] = ACTIONS(1744), - [anon_sym_ATselector] = ACTIONS(1744), - [anon_sym_ATencode] = ACTIONS(1744), - [anon_sym_AT] = ACTIONS(1742), - [sym_YES] = ACTIONS(1742), - [sym_NO] = ACTIONS(1742), - [anon_sym___builtin_available] = ACTIONS(1742), - [anon_sym_ATavailable] = ACTIONS(1744), - [anon_sym_va_arg] = ACTIONS(1742), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1122] = { - [ts_builtin_sym_end] = ACTIONS(1748), - [sym_identifier] = ACTIONS(1746), - [aux_sym_preproc_include_token1] = ACTIONS(1748), - [aux_sym_preproc_def_token1] = ACTIONS(1748), - [aux_sym_preproc_if_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym___attribute] = ACTIONS(1746), - [anon_sym___attribute__] = ACTIONS(1746), - [anon_sym___declspec] = ACTIONS(1746), - [anon_sym___cdecl] = ACTIONS(1746), - [anon_sym___clrcall] = ACTIONS(1746), - [anon_sym___stdcall] = ACTIONS(1746), - [anon_sym___fastcall] = ACTIONS(1746), - [anon_sym___thiscall] = ACTIONS(1746), - [anon_sym___vectorcall] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_RBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1746), - [anon_sym_register] = ACTIONS(1746), - [anon_sym_inline] = ACTIONS(1746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_restrict] = ACTIONS(1746), - [anon_sym__Atomic] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_out] = ACTIONS(1746), - [anon_sym_inout] = ACTIONS(1746), - [anon_sym_bycopy] = ACTIONS(1746), - [anon_sym_byref] = ACTIONS(1746), - [anon_sym_oneway] = ACTIONS(1746), - [anon_sym__Nullable] = ACTIONS(1746), - [anon_sym__Nonnull] = ACTIONS(1746), - [anon_sym__Nullable_result] = ACTIONS(1746), - [anon_sym__Null_unspecified] = ACTIONS(1746), - [anon_sym___autoreleasing] = ACTIONS(1746), - [anon_sym___nullable] = ACTIONS(1746), - [anon_sym___nonnull] = ACTIONS(1746), - [anon_sym___strong] = ACTIONS(1746), - [anon_sym___weak] = ACTIONS(1746), - [anon_sym___bridge] = ACTIONS(1746), - [anon_sym___bridge_transfer] = ACTIONS(1746), - [anon_sym___bridge_retained] = ACTIONS(1746), - [anon_sym___unsafe_unretained] = ACTIONS(1746), - [anon_sym___block] = ACTIONS(1746), - [anon_sym___kindof] = ACTIONS(1746), - [anon_sym___unused] = ACTIONS(1746), - [anon_sym__Complex] = ACTIONS(1746), - [anon_sym___complex] = ACTIONS(1746), - [anon_sym_IBOutlet] = ACTIONS(1746), - [anon_sym_IBInspectable] = ACTIONS(1746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1746), - [anon_sym_unsigned] = ACTIONS(1746), - [anon_sym_long] = ACTIONS(1746), - [anon_sym_short] = ACTIONS(1746), - [sym_primitive_type] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_NS_ENUM] = ACTIONS(1746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1746), - [anon_sym_NS_OPTIONS] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_goto] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_sizeof] = ACTIONS(1746), - [sym_number_literal] = ACTIONS(1748), - [anon_sym_L_SQUOTE] = ACTIONS(1748), - [anon_sym_u_SQUOTE] = ACTIONS(1748), - [anon_sym_U_SQUOTE] = ACTIONS(1748), - [anon_sym_u8_SQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_L_DQUOTE] = ACTIONS(1748), - [anon_sym_u_DQUOTE] = ACTIONS(1748), - [anon_sym_U_DQUOTE] = ACTIONS(1748), - [anon_sym_u8_DQUOTE] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1748), - [anon_sym_ATimport] = ACTIONS(1748), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1746), - [anon_sym_ATcompatibility_alias] = ACTIONS(1748), - [anon_sym_ATprotocol] = ACTIONS(1748), - [anon_sym_ATclass] = ACTIONS(1748), - [anon_sym_ATinterface] = ACTIONS(1748), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1746), - [sym_method_attribute_specifier] = ACTIONS(1746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE] = ACTIONS(1746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_API_AVAILABLE] = ACTIONS(1746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_API_DEPRECATED] = ACTIONS(1746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1746), - [anon_sym___deprecated_msg] = ACTIONS(1746), - [anon_sym___deprecated_enum_msg] = ACTIONS(1746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1746), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1746), - [anon_sym_ATimplementation] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym___typeof] = ACTIONS(1746), - [anon_sym___typeof__] = ACTIONS(1746), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_nil] = ACTIONS(1746), - [sym_id] = ACTIONS(1746), - [sym_instancetype] = ACTIONS(1746), - [sym_Class] = ACTIONS(1746), - [sym_SEL] = ACTIONS(1746), - [sym_IMP] = ACTIONS(1746), - [sym_BOOL] = ACTIONS(1746), - [sym_auto] = ACTIONS(1746), - [anon_sym_ATautoreleasepool] = ACTIONS(1748), - [anon_sym_ATsynchronized] = ACTIONS(1748), - [anon_sym_ATtry] = ACTIONS(1748), - [anon_sym_ATthrow] = ACTIONS(1748), - [anon_sym_ATselector] = ACTIONS(1748), - [anon_sym_ATencode] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1746), - [sym_YES] = ACTIONS(1746), - [sym_NO] = ACTIONS(1746), - [anon_sym___builtin_available] = ACTIONS(1746), - [anon_sym_ATavailable] = ACTIONS(1748), - [anon_sym_va_arg] = ACTIONS(1746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1123] = { - [ts_builtin_sym_end] = ACTIONS(1740), - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1124] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1125] = { - [ts_builtin_sym_end] = ACTIONS(1740), - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1126] = { - [ts_builtin_sym_end] = ACTIONS(1740), - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1127] = { - [ts_builtin_sym_end] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1750), - [aux_sym_preproc_include_token1] = ACTIONS(1752), - [aux_sym_preproc_def_token1] = ACTIONS(1752), - [aux_sym_preproc_if_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym___attribute] = ACTIONS(1750), - [anon_sym___attribute__] = ACTIONS(1750), - [anon_sym___declspec] = ACTIONS(1750), - [anon_sym___cdecl] = ACTIONS(1750), - [anon_sym___clrcall] = ACTIONS(1750), - [anon_sym___stdcall] = ACTIONS(1750), - [anon_sym___fastcall] = ACTIONS(1750), - [anon_sym___thiscall] = ACTIONS(1750), - [anon_sym___vectorcall] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_RBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_auto] = ACTIONS(1750), - [anon_sym_register] = ACTIONS(1750), - [anon_sym_inline] = ACTIONS(1750), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_volatile] = ACTIONS(1750), - [anon_sym_restrict] = ACTIONS(1750), - [anon_sym__Atomic] = ACTIONS(1750), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_out] = ACTIONS(1750), - [anon_sym_inout] = ACTIONS(1750), - [anon_sym_bycopy] = ACTIONS(1750), - [anon_sym_byref] = ACTIONS(1750), - [anon_sym_oneway] = ACTIONS(1750), - [anon_sym__Nullable] = ACTIONS(1750), - [anon_sym__Nonnull] = ACTIONS(1750), - [anon_sym__Nullable_result] = ACTIONS(1750), - [anon_sym__Null_unspecified] = ACTIONS(1750), - [anon_sym___autoreleasing] = ACTIONS(1750), - [anon_sym___nullable] = ACTIONS(1750), - [anon_sym___nonnull] = ACTIONS(1750), - [anon_sym___strong] = ACTIONS(1750), - [anon_sym___weak] = ACTIONS(1750), - [anon_sym___bridge] = ACTIONS(1750), - [anon_sym___bridge_transfer] = ACTIONS(1750), - [anon_sym___bridge_retained] = ACTIONS(1750), - [anon_sym___unsafe_unretained] = ACTIONS(1750), - [anon_sym___block] = ACTIONS(1750), - [anon_sym___kindof] = ACTIONS(1750), - [anon_sym___unused] = ACTIONS(1750), - [anon_sym__Complex] = ACTIONS(1750), - [anon_sym___complex] = ACTIONS(1750), - [anon_sym_IBOutlet] = ACTIONS(1750), - [anon_sym_IBInspectable] = ACTIONS(1750), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1750), - [anon_sym_signed] = ACTIONS(1750), - [anon_sym_unsigned] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_NS_ENUM] = ACTIONS(1750), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1750), - [anon_sym_NS_OPTIONS] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_goto] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1750), - [sym_number_literal] = ACTIONS(1752), - [anon_sym_L_SQUOTE] = ACTIONS(1752), - [anon_sym_u_SQUOTE] = ACTIONS(1752), - [anon_sym_U_SQUOTE] = ACTIONS(1752), - [anon_sym_u8_SQUOTE] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_L_DQUOTE] = ACTIONS(1752), - [anon_sym_u_DQUOTE] = ACTIONS(1752), - [anon_sym_U_DQUOTE] = ACTIONS(1752), - [anon_sym_u8_DQUOTE] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1752), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1752), - [anon_sym_ATimport] = ACTIONS(1752), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1750), - [anon_sym_ATcompatibility_alias] = ACTIONS(1752), - [anon_sym_ATprotocol] = ACTIONS(1752), - [anon_sym_ATclass] = ACTIONS(1752), - [anon_sym_ATinterface] = ACTIONS(1752), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1750), - [sym_method_attribute_specifier] = ACTIONS(1750), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1750), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE] = ACTIONS(1750), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_API_AVAILABLE] = ACTIONS(1750), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_API_DEPRECATED] = ACTIONS(1750), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1750), - [anon_sym___deprecated_msg] = ACTIONS(1750), - [anon_sym___deprecated_enum_msg] = ACTIONS(1750), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1750), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1750), - [anon_sym_ATimplementation] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym___typeof] = ACTIONS(1750), - [anon_sym___typeof__] = ACTIONS(1750), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_nil] = ACTIONS(1750), - [sym_id] = ACTIONS(1750), - [sym_instancetype] = ACTIONS(1750), - [sym_Class] = ACTIONS(1750), - [sym_SEL] = ACTIONS(1750), - [sym_IMP] = ACTIONS(1750), - [sym_BOOL] = ACTIONS(1750), - [sym_auto] = ACTIONS(1750), - [anon_sym_ATautoreleasepool] = ACTIONS(1752), - [anon_sym_ATsynchronized] = ACTIONS(1752), - [anon_sym_ATtry] = ACTIONS(1752), - [anon_sym_ATthrow] = ACTIONS(1752), - [anon_sym_ATselector] = ACTIONS(1752), - [anon_sym_ATencode] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [sym_YES] = ACTIONS(1750), - [sym_NO] = ACTIONS(1750), - [anon_sym___builtin_available] = ACTIONS(1750), - [anon_sym_ATavailable] = ACTIONS(1752), - [anon_sym_va_arg] = ACTIONS(1750), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1128] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1129] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1130] = { - [ts_builtin_sym_end] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1750), - [aux_sym_preproc_include_token1] = ACTIONS(1752), - [aux_sym_preproc_def_token1] = ACTIONS(1752), - [aux_sym_preproc_if_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym___attribute] = ACTIONS(1750), - [anon_sym___attribute__] = ACTIONS(1750), - [anon_sym___declspec] = ACTIONS(1750), - [anon_sym___cdecl] = ACTIONS(1750), - [anon_sym___clrcall] = ACTIONS(1750), - [anon_sym___stdcall] = ACTIONS(1750), - [anon_sym___fastcall] = ACTIONS(1750), - [anon_sym___thiscall] = ACTIONS(1750), - [anon_sym___vectorcall] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_RBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_auto] = ACTIONS(1750), - [anon_sym_register] = ACTIONS(1750), - [anon_sym_inline] = ACTIONS(1750), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_volatile] = ACTIONS(1750), - [anon_sym_restrict] = ACTIONS(1750), - [anon_sym__Atomic] = ACTIONS(1750), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_out] = ACTIONS(1750), - [anon_sym_inout] = ACTIONS(1750), - [anon_sym_bycopy] = ACTIONS(1750), - [anon_sym_byref] = ACTIONS(1750), - [anon_sym_oneway] = ACTIONS(1750), - [anon_sym__Nullable] = ACTIONS(1750), - [anon_sym__Nonnull] = ACTIONS(1750), - [anon_sym__Nullable_result] = ACTIONS(1750), - [anon_sym__Null_unspecified] = ACTIONS(1750), - [anon_sym___autoreleasing] = ACTIONS(1750), - [anon_sym___nullable] = ACTIONS(1750), - [anon_sym___nonnull] = ACTIONS(1750), - [anon_sym___strong] = ACTIONS(1750), - [anon_sym___weak] = ACTIONS(1750), - [anon_sym___bridge] = ACTIONS(1750), - [anon_sym___bridge_transfer] = ACTIONS(1750), - [anon_sym___bridge_retained] = ACTIONS(1750), - [anon_sym___unsafe_unretained] = ACTIONS(1750), - [anon_sym___block] = ACTIONS(1750), - [anon_sym___kindof] = ACTIONS(1750), - [anon_sym___unused] = ACTIONS(1750), - [anon_sym__Complex] = ACTIONS(1750), - [anon_sym___complex] = ACTIONS(1750), - [anon_sym_IBOutlet] = ACTIONS(1750), - [anon_sym_IBInspectable] = ACTIONS(1750), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1750), - [anon_sym_signed] = ACTIONS(1750), - [anon_sym_unsigned] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_NS_ENUM] = ACTIONS(1750), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1750), - [anon_sym_NS_OPTIONS] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_goto] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1750), - [sym_number_literal] = ACTIONS(1752), - [anon_sym_L_SQUOTE] = ACTIONS(1752), - [anon_sym_u_SQUOTE] = ACTIONS(1752), - [anon_sym_U_SQUOTE] = ACTIONS(1752), - [anon_sym_u8_SQUOTE] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_L_DQUOTE] = ACTIONS(1752), - [anon_sym_u_DQUOTE] = ACTIONS(1752), - [anon_sym_U_DQUOTE] = ACTIONS(1752), - [anon_sym_u8_DQUOTE] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1752), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1752), - [anon_sym_ATimport] = ACTIONS(1752), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1750), - [anon_sym_ATcompatibility_alias] = ACTIONS(1752), - [anon_sym_ATprotocol] = ACTIONS(1752), - [anon_sym_ATclass] = ACTIONS(1752), - [anon_sym_ATinterface] = ACTIONS(1752), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1750), - [sym_method_attribute_specifier] = ACTIONS(1750), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1750), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE] = ACTIONS(1750), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_API_AVAILABLE] = ACTIONS(1750), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_API_DEPRECATED] = ACTIONS(1750), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1750), - [anon_sym___deprecated_msg] = ACTIONS(1750), - [anon_sym___deprecated_enum_msg] = ACTIONS(1750), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1750), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1750), - [anon_sym_ATimplementation] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym___typeof] = ACTIONS(1750), - [anon_sym___typeof__] = ACTIONS(1750), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_nil] = ACTIONS(1750), - [sym_id] = ACTIONS(1750), - [sym_instancetype] = ACTIONS(1750), - [sym_Class] = ACTIONS(1750), - [sym_SEL] = ACTIONS(1750), - [sym_IMP] = ACTIONS(1750), - [sym_BOOL] = ACTIONS(1750), - [sym_auto] = ACTIONS(1750), - [anon_sym_ATautoreleasepool] = ACTIONS(1752), - [anon_sym_ATsynchronized] = ACTIONS(1752), - [anon_sym_ATtry] = ACTIONS(1752), - [anon_sym_ATthrow] = ACTIONS(1752), - [anon_sym_ATselector] = ACTIONS(1752), - [anon_sym_ATencode] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [sym_YES] = ACTIONS(1750), - [sym_NO] = ACTIONS(1750), - [anon_sym___builtin_available] = ACTIONS(1750), - [anon_sym_ATavailable] = ACTIONS(1752), - [anon_sym_va_arg] = ACTIONS(1750), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1131] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1132] = { - [ts_builtin_sym_end] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1750), - [aux_sym_preproc_include_token1] = ACTIONS(1752), - [aux_sym_preproc_def_token1] = ACTIONS(1752), - [aux_sym_preproc_if_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym___attribute] = ACTIONS(1750), - [anon_sym___attribute__] = ACTIONS(1750), - [anon_sym___declspec] = ACTIONS(1750), - [anon_sym___cdecl] = ACTIONS(1750), - [anon_sym___clrcall] = ACTIONS(1750), - [anon_sym___stdcall] = ACTIONS(1750), - [anon_sym___fastcall] = ACTIONS(1750), - [anon_sym___thiscall] = ACTIONS(1750), - [anon_sym___vectorcall] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_RBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_auto] = ACTIONS(1750), - [anon_sym_register] = ACTIONS(1750), - [anon_sym_inline] = ACTIONS(1750), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_volatile] = ACTIONS(1750), - [anon_sym_restrict] = ACTIONS(1750), - [anon_sym__Atomic] = ACTIONS(1750), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_out] = ACTIONS(1750), - [anon_sym_inout] = ACTIONS(1750), - [anon_sym_bycopy] = ACTIONS(1750), - [anon_sym_byref] = ACTIONS(1750), - [anon_sym_oneway] = ACTIONS(1750), - [anon_sym__Nullable] = ACTIONS(1750), - [anon_sym__Nonnull] = ACTIONS(1750), - [anon_sym__Nullable_result] = ACTIONS(1750), - [anon_sym__Null_unspecified] = ACTIONS(1750), - [anon_sym___autoreleasing] = ACTIONS(1750), - [anon_sym___nullable] = ACTIONS(1750), - [anon_sym___nonnull] = ACTIONS(1750), - [anon_sym___strong] = ACTIONS(1750), - [anon_sym___weak] = ACTIONS(1750), - [anon_sym___bridge] = ACTIONS(1750), - [anon_sym___bridge_transfer] = ACTIONS(1750), - [anon_sym___bridge_retained] = ACTIONS(1750), - [anon_sym___unsafe_unretained] = ACTIONS(1750), - [anon_sym___block] = ACTIONS(1750), - [anon_sym___kindof] = ACTIONS(1750), - [anon_sym___unused] = ACTIONS(1750), - [anon_sym__Complex] = ACTIONS(1750), - [anon_sym___complex] = ACTIONS(1750), - [anon_sym_IBOutlet] = ACTIONS(1750), - [anon_sym_IBInspectable] = ACTIONS(1750), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1750), - [anon_sym_signed] = ACTIONS(1750), - [anon_sym_unsigned] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_NS_ENUM] = ACTIONS(1750), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1750), - [anon_sym_NS_OPTIONS] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_goto] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1750), - [sym_number_literal] = ACTIONS(1752), - [anon_sym_L_SQUOTE] = ACTIONS(1752), - [anon_sym_u_SQUOTE] = ACTIONS(1752), - [anon_sym_U_SQUOTE] = ACTIONS(1752), - [anon_sym_u8_SQUOTE] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_L_DQUOTE] = ACTIONS(1752), - [anon_sym_u_DQUOTE] = ACTIONS(1752), - [anon_sym_U_DQUOTE] = ACTIONS(1752), - [anon_sym_u8_DQUOTE] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1752), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1752), - [anon_sym_ATimport] = ACTIONS(1752), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1750), - [anon_sym_ATcompatibility_alias] = ACTIONS(1752), - [anon_sym_ATprotocol] = ACTIONS(1752), - [anon_sym_ATclass] = ACTIONS(1752), - [anon_sym_ATinterface] = ACTIONS(1752), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1750), - [sym_method_attribute_specifier] = ACTIONS(1750), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1750), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE] = ACTIONS(1750), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_API_AVAILABLE] = ACTIONS(1750), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_API_DEPRECATED] = ACTIONS(1750), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1750), - [anon_sym___deprecated_msg] = ACTIONS(1750), - [anon_sym___deprecated_enum_msg] = ACTIONS(1750), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1750), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1750), - [anon_sym_ATimplementation] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym___typeof] = ACTIONS(1750), - [anon_sym___typeof__] = ACTIONS(1750), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_nil] = ACTIONS(1750), - [sym_id] = ACTIONS(1750), - [sym_instancetype] = ACTIONS(1750), - [sym_Class] = ACTIONS(1750), - [sym_SEL] = ACTIONS(1750), - [sym_IMP] = ACTIONS(1750), - [sym_BOOL] = ACTIONS(1750), - [sym_auto] = ACTIONS(1750), - [anon_sym_ATautoreleasepool] = ACTIONS(1752), - [anon_sym_ATsynchronized] = ACTIONS(1752), - [anon_sym_ATtry] = ACTIONS(1752), - [anon_sym_ATthrow] = ACTIONS(1752), - [anon_sym_ATselector] = ACTIONS(1752), - [anon_sym_ATencode] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [sym_YES] = ACTIONS(1750), - [sym_NO] = ACTIONS(1750), - [anon_sym___builtin_available] = ACTIONS(1750), - [anon_sym_ATavailable] = ACTIONS(1752), - [anon_sym_va_arg] = ACTIONS(1750), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1133] = { - [ts_builtin_sym_end] = ACTIONS(1740), - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1134] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1135] = { - [ts_builtin_sym_end] = ACTIONS(1740), - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1136] = { - [ts_builtin_sym_end] = ACTIONS(1740), - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1137] = { - [ts_builtin_sym_end] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1750), - [aux_sym_preproc_include_token1] = ACTIONS(1752), - [aux_sym_preproc_def_token1] = ACTIONS(1752), - [aux_sym_preproc_if_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym___attribute] = ACTIONS(1750), - [anon_sym___attribute__] = ACTIONS(1750), - [anon_sym___declspec] = ACTIONS(1750), - [anon_sym___cdecl] = ACTIONS(1750), - [anon_sym___clrcall] = ACTIONS(1750), - [anon_sym___stdcall] = ACTIONS(1750), - [anon_sym___fastcall] = ACTIONS(1750), - [anon_sym___thiscall] = ACTIONS(1750), - [anon_sym___vectorcall] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_RBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_auto] = ACTIONS(1750), - [anon_sym_register] = ACTIONS(1750), - [anon_sym_inline] = ACTIONS(1750), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_volatile] = ACTIONS(1750), - [anon_sym_restrict] = ACTIONS(1750), - [anon_sym__Atomic] = ACTIONS(1750), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_out] = ACTIONS(1750), - [anon_sym_inout] = ACTIONS(1750), - [anon_sym_bycopy] = ACTIONS(1750), - [anon_sym_byref] = ACTIONS(1750), - [anon_sym_oneway] = ACTIONS(1750), - [anon_sym__Nullable] = ACTIONS(1750), - [anon_sym__Nonnull] = ACTIONS(1750), - [anon_sym__Nullable_result] = ACTIONS(1750), - [anon_sym__Null_unspecified] = ACTIONS(1750), - [anon_sym___autoreleasing] = ACTIONS(1750), - [anon_sym___nullable] = ACTIONS(1750), - [anon_sym___nonnull] = ACTIONS(1750), - [anon_sym___strong] = ACTIONS(1750), - [anon_sym___weak] = ACTIONS(1750), - [anon_sym___bridge] = ACTIONS(1750), - [anon_sym___bridge_transfer] = ACTIONS(1750), - [anon_sym___bridge_retained] = ACTIONS(1750), - [anon_sym___unsafe_unretained] = ACTIONS(1750), - [anon_sym___block] = ACTIONS(1750), - [anon_sym___kindof] = ACTIONS(1750), - [anon_sym___unused] = ACTIONS(1750), - [anon_sym__Complex] = ACTIONS(1750), - [anon_sym___complex] = ACTIONS(1750), - [anon_sym_IBOutlet] = ACTIONS(1750), - [anon_sym_IBInspectable] = ACTIONS(1750), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1750), - [anon_sym_signed] = ACTIONS(1750), - [anon_sym_unsigned] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_NS_ENUM] = ACTIONS(1750), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1750), - [anon_sym_NS_OPTIONS] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_goto] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1750), - [sym_number_literal] = ACTIONS(1752), - [anon_sym_L_SQUOTE] = ACTIONS(1752), - [anon_sym_u_SQUOTE] = ACTIONS(1752), - [anon_sym_U_SQUOTE] = ACTIONS(1752), - [anon_sym_u8_SQUOTE] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_L_DQUOTE] = ACTIONS(1752), - [anon_sym_u_DQUOTE] = ACTIONS(1752), - [anon_sym_U_DQUOTE] = ACTIONS(1752), - [anon_sym_u8_DQUOTE] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1752), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1752), - [anon_sym_ATimport] = ACTIONS(1752), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1750), - [anon_sym_ATcompatibility_alias] = ACTIONS(1752), - [anon_sym_ATprotocol] = ACTIONS(1752), - [anon_sym_ATclass] = ACTIONS(1752), - [anon_sym_ATinterface] = ACTIONS(1752), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1750), - [sym_method_attribute_specifier] = ACTIONS(1750), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1750), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE] = ACTIONS(1750), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_API_AVAILABLE] = ACTIONS(1750), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_API_DEPRECATED] = ACTIONS(1750), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1750), - [anon_sym___deprecated_msg] = ACTIONS(1750), - [anon_sym___deprecated_enum_msg] = ACTIONS(1750), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1750), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1750), - [anon_sym_ATimplementation] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym___typeof] = ACTIONS(1750), - [anon_sym___typeof__] = ACTIONS(1750), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_nil] = ACTIONS(1750), - [sym_id] = ACTIONS(1750), - [sym_instancetype] = ACTIONS(1750), - [sym_Class] = ACTIONS(1750), - [sym_SEL] = ACTIONS(1750), - [sym_IMP] = ACTIONS(1750), - [sym_BOOL] = ACTIONS(1750), - [sym_auto] = ACTIONS(1750), - [anon_sym_ATautoreleasepool] = ACTIONS(1752), - [anon_sym_ATsynchronized] = ACTIONS(1752), - [anon_sym_ATtry] = ACTIONS(1752), - [anon_sym_ATthrow] = ACTIONS(1752), - [anon_sym_ATselector] = ACTIONS(1752), - [anon_sym_ATencode] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [sym_YES] = ACTIONS(1750), - [sym_NO] = ACTIONS(1750), - [anon_sym___builtin_available] = ACTIONS(1750), - [anon_sym_ATavailable] = ACTIONS(1752), - [anon_sym_va_arg] = ACTIONS(1750), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1138] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1139] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1140] = { - [ts_builtin_sym_end] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1750), - [aux_sym_preproc_include_token1] = ACTIONS(1752), - [aux_sym_preproc_def_token1] = ACTIONS(1752), - [aux_sym_preproc_if_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym___attribute] = ACTIONS(1750), - [anon_sym___attribute__] = ACTIONS(1750), - [anon_sym___declspec] = ACTIONS(1750), - [anon_sym___cdecl] = ACTIONS(1750), - [anon_sym___clrcall] = ACTIONS(1750), - [anon_sym___stdcall] = ACTIONS(1750), - [anon_sym___fastcall] = ACTIONS(1750), - [anon_sym___thiscall] = ACTIONS(1750), - [anon_sym___vectorcall] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_RBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_auto] = ACTIONS(1750), - [anon_sym_register] = ACTIONS(1750), - [anon_sym_inline] = ACTIONS(1750), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_volatile] = ACTIONS(1750), - [anon_sym_restrict] = ACTIONS(1750), - [anon_sym__Atomic] = ACTIONS(1750), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_out] = ACTIONS(1750), - [anon_sym_inout] = ACTIONS(1750), - [anon_sym_bycopy] = ACTIONS(1750), - [anon_sym_byref] = ACTIONS(1750), - [anon_sym_oneway] = ACTIONS(1750), - [anon_sym__Nullable] = ACTIONS(1750), - [anon_sym__Nonnull] = ACTIONS(1750), - [anon_sym__Nullable_result] = ACTIONS(1750), - [anon_sym__Null_unspecified] = ACTIONS(1750), - [anon_sym___autoreleasing] = ACTIONS(1750), - [anon_sym___nullable] = ACTIONS(1750), - [anon_sym___nonnull] = ACTIONS(1750), - [anon_sym___strong] = ACTIONS(1750), - [anon_sym___weak] = ACTIONS(1750), - [anon_sym___bridge] = ACTIONS(1750), - [anon_sym___bridge_transfer] = ACTIONS(1750), - [anon_sym___bridge_retained] = ACTIONS(1750), - [anon_sym___unsafe_unretained] = ACTIONS(1750), - [anon_sym___block] = ACTIONS(1750), - [anon_sym___kindof] = ACTIONS(1750), - [anon_sym___unused] = ACTIONS(1750), - [anon_sym__Complex] = ACTIONS(1750), - [anon_sym___complex] = ACTIONS(1750), - [anon_sym_IBOutlet] = ACTIONS(1750), - [anon_sym_IBInspectable] = ACTIONS(1750), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1750), - [anon_sym_signed] = ACTIONS(1750), - [anon_sym_unsigned] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_NS_ENUM] = ACTIONS(1750), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1750), - [anon_sym_NS_OPTIONS] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_goto] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1750), - [sym_number_literal] = ACTIONS(1752), - [anon_sym_L_SQUOTE] = ACTIONS(1752), - [anon_sym_u_SQUOTE] = ACTIONS(1752), - [anon_sym_U_SQUOTE] = ACTIONS(1752), - [anon_sym_u8_SQUOTE] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_L_DQUOTE] = ACTIONS(1752), - [anon_sym_u_DQUOTE] = ACTIONS(1752), - [anon_sym_U_DQUOTE] = ACTIONS(1752), - [anon_sym_u8_DQUOTE] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1752), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1752), - [anon_sym_ATimport] = ACTIONS(1752), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1750), - [anon_sym_ATcompatibility_alias] = ACTIONS(1752), - [anon_sym_ATprotocol] = ACTIONS(1752), - [anon_sym_ATclass] = ACTIONS(1752), - [anon_sym_ATinterface] = ACTIONS(1752), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1750), - [sym_method_attribute_specifier] = ACTIONS(1750), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1750), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE] = ACTIONS(1750), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_API_AVAILABLE] = ACTIONS(1750), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_API_DEPRECATED] = ACTIONS(1750), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1750), - [anon_sym___deprecated_msg] = ACTIONS(1750), - [anon_sym___deprecated_enum_msg] = ACTIONS(1750), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1750), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1750), - [anon_sym_ATimplementation] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym___typeof] = ACTIONS(1750), - [anon_sym___typeof__] = ACTIONS(1750), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_nil] = ACTIONS(1750), - [sym_id] = ACTIONS(1750), - [sym_instancetype] = ACTIONS(1750), - [sym_Class] = ACTIONS(1750), - [sym_SEL] = ACTIONS(1750), - [sym_IMP] = ACTIONS(1750), - [sym_BOOL] = ACTIONS(1750), - [sym_auto] = ACTIONS(1750), - [anon_sym_ATautoreleasepool] = ACTIONS(1752), - [anon_sym_ATsynchronized] = ACTIONS(1752), - [anon_sym_ATtry] = ACTIONS(1752), - [anon_sym_ATthrow] = ACTIONS(1752), - [anon_sym_ATselector] = ACTIONS(1752), - [anon_sym_ATencode] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [sym_YES] = ACTIONS(1750), - [sym_NO] = ACTIONS(1750), - [anon_sym___builtin_available] = ACTIONS(1750), - [anon_sym_ATavailable] = ACTIONS(1752), - [anon_sym_va_arg] = ACTIONS(1750), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1141] = { - [ts_builtin_sym_end] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1750), - [aux_sym_preproc_include_token1] = ACTIONS(1752), - [aux_sym_preproc_def_token1] = ACTIONS(1752), - [aux_sym_preproc_if_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym___attribute] = ACTIONS(1750), - [anon_sym___attribute__] = ACTIONS(1750), - [anon_sym___declspec] = ACTIONS(1750), - [anon_sym___cdecl] = ACTIONS(1750), - [anon_sym___clrcall] = ACTIONS(1750), - [anon_sym___stdcall] = ACTIONS(1750), - [anon_sym___fastcall] = ACTIONS(1750), - [anon_sym___thiscall] = ACTIONS(1750), - [anon_sym___vectorcall] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_RBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_auto] = ACTIONS(1750), - [anon_sym_register] = ACTIONS(1750), - [anon_sym_inline] = ACTIONS(1750), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_volatile] = ACTIONS(1750), - [anon_sym_restrict] = ACTIONS(1750), - [anon_sym__Atomic] = ACTIONS(1750), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_out] = ACTIONS(1750), - [anon_sym_inout] = ACTIONS(1750), - [anon_sym_bycopy] = ACTIONS(1750), - [anon_sym_byref] = ACTIONS(1750), - [anon_sym_oneway] = ACTIONS(1750), - [anon_sym__Nullable] = ACTIONS(1750), - [anon_sym__Nonnull] = ACTIONS(1750), - [anon_sym__Nullable_result] = ACTIONS(1750), - [anon_sym__Null_unspecified] = ACTIONS(1750), - [anon_sym___autoreleasing] = ACTIONS(1750), - [anon_sym___nullable] = ACTIONS(1750), - [anon_sym___nonnull] = ACTIONS(1750), - [anon_sym___strong] = ACTIONS(1750), - [anon_sym___weak] = ACTIONS(1750), - [anon_sym___bridge] = ACTIONS(1750), - [anon_sym___bridge_transfer] = ACTIONS(1750), - [anon_sym___bridge_retained] = ACTIONS(1750), - [anon_sym___unsafe_unretained] = ACTIONS(1750), - [anon_sym___block] = ACTIONS(1750), - [anon_sym___kindof] = ACTIONS(1750), - [anon_sym___unused] = ACTIONS(1750), - [anon_sym__Complex] = ACTIONS(1750), - [anon_sym___complex] = ACTIONS(1750), - [anon_sym_IBOutlet] = ACTIONS(1750), - [anon_sym_IBInspectable] = ACTIONS(1750), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1750), - [anon_sym_signed] = ACTIONS(1750), - [anon_sym_unsigned] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_NS_ENUM] = ACTIONS(1750), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1750), - [anon_sym_NS_OPTIONS] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_goto] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1750), - [sym_number_literal] = ACTIONS(1752), - [anon_sym_L_SQUOTE] = ACTIONS(1752), - [anon_sym_u_SQUOTE] = ACTIONS(1752), - [anon_sym_U_SQUOTE] = ACTIONS(1752), - [anon_sym_u8_SQUOTE] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_L_DQUOTE] = ACTIONS(1752), - [anon_sym_u_DQUOTE] = ACTIONS(1752), - [anon_sym_U_DQUOTE] = ACTIONS(1752), - [anon_sym_u8_DQUOTE] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1752), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1752), - [anon_sym_ATimport] = ACTIONS(1752), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1750), - [anon_sym_ATcompatibility_alias] = ACTIONS(1752), - [anon_sym_ATprotocol] = ACTIONS(1752), - [anon_sym_ATclass] = ACTIONS(1752), - [anon_sym_ATinterface] = ACTIONS(1752), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1750), - [sym_method_attribute_specifier] = ACTIONS(1750), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1750), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE] = ACTIONS(1750), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_API_AVAILABLE] = ACTIONS(1750), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_API_DEPRECATED] = ACTIONS(1750), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1750), - [anon_sym___deprecated_msg] = ACTIONS(1750), - [anon_sym___deprecated_enum_msg] = ACTIONS(1750), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1750), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1750), - [anon_sym_ATimplementation] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym___typeof] = ACTIONS(1750), - [anon_sym___typeof__] = ACTIONS(1750), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_nil] = ACTIONS(1750), - [sym_id] = ACTIONS(1750), - [sym_instancetype] = ACTIONS(1750), - [sym_Class] = ACTIONS(1750), - [sym_SEL] = ACTIONS(1750), - [sym_IMP] = ACTIONS(1750), - [sym_BOOL] = ACTIONS(1750), - [sym_auto] = ACTIONS(1750), - [anon_sym_ATautoreleasepool] = ACTIONS(1752), - [anon_sym_ATsynchronized] = ACTIONS(1752), - [anon_sym_ATtry] = ACTIONS(1752), - [anon_sym_ATthrow] = ACTIONS(1752), - [anon_sym_ATselector] = ACTIONS(1752), - [anon_sym_ATencode] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [sym_YES] = ACTIONS(1750), - [sym_NO] = ACTIONS(1750), - [anon_sym___builtin_available] = ACTIONS(1750), - [anon_sym_ATavailable] = ACTIONS(1752), - [anon_sym_va_arg] = ACTIONS(1750), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1142] = { - [ts_builtin_sym_end] = ACTIONS(1748), - [sym_identifier] = ACTIONS(1746), - [aux_sym_preproc_include_token1] = ACTIONS(1748), - [aux_sym_preproc_def_token1] = ACTIONS(1748), - [aux_sym_preproc_if_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym___attribute] = ACTIONS(1746), - [anon_sym___attribute__] = ACTIONS(1746), - [anon_sym___declspec] = ACTIONS(1746), - [anon_sym___cdecl] = ACTIONS(1746), - [anon_sym___clrcall] = ACTIONS(1746), - [anon_sym___stdcall] = ACTIONS(1746), - [anon_sym___fastcall] = ACTIONS(1746), - [anon_sym___thiscall] = ACTIONS(1746), - [anon_sym___vectorcall] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_RBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1746), - [anon_sym_register] = ACTIONS(1746), - [anon_sym_inline] = ACTIONS(1746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_restrict] = ACTIONS(1746), - [anon_sym__Atomic] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_out] = ACTIONS(1746), - [anon_sym_inout] = ACTIONS(1746), - [anon_sym_bycopy] = ACTIONS(1746), - [anon_sym_byref] = ACTIONS(1746), - [anon_sym_oneway] = ACTIONS(1746), - [anon_sym__Nullable] = ACTIONS(1746), - [anon_sym__Nonnull] = ACTIONS(1746), - [anon_sym__Nullable_result] = ACTIONS(1746), - [anon_sym__Null_unspecified] = ACTIONS(1746), - [anon_sym___autoreleasing] = ACTIONS(1746), - [anon_sym___nullable] = ACTIONS(1746), - [anon_sym___nonnull] = ACTIONS(1746), - [anon_sym___strong] = ACTIONS(1746), - [anon_sym___weak] = ACTIONS(1746), - [anon_sym___bridge] = ACTIONS(1746), - [anon_sym___bridge_transfer] = ACTIONS(1746), - [anon_sym___bridge_retained] = ACTIONS(1746), - [anon_sym___unsafe_unretained] = ACTIONS(1746), - [anon_sym___block] = ACTIONS(1746), - [anon_sym___kindof] = ACTIONS(1746), - [anon_sym___unused] = ACTIONS(1746), - [anon_sym__Complex] = ACTIONS(1746), - [anon_sym___complex] = ACTIONS(1746), - [anon_sym_IBOutlet] = ACTIONS(1746), - [anon_sym_IBInspectable] = ACTIONS(1746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1746), - [anon_sym_unsigned] = ACTIONS(1746), - [anon_sym_long] = ACTIONS(1746), - [anon_sym_short] = ACTIONS(1746), - [sym_primitive_type] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_NS_ENUM] = ACTIONS(1746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1746), - [anon_sym_NS_OPTIONS] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_goto] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_sizeof] = ACTIONS(1746), - [sym_number_literal] = ACTIONS(1748), - [anon_sym_L_SQUOTE] = ACTIONS(1748), - [anon_sym_u_SQUOTE] = ACTIONS(1748), - [anon_sym_U_SQUOTE] = ACTIONS(1748), - [anon_sym_u8_SQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_L_DQUOTE] = ACTIONS(1748), - [anon_sym_u_DQUOTE] = ACTIONS(1748), - [anon_sym_U_DQUOTE] = ACTIONS(1748), - [anon_sym_u8_DQUOTE] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1748), - [anon_sym_ATimport] = ACTIONS(1748), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1746), - [anon_sym_ATcompatibility_alias] = ACTIONS(1748), - [anon_sym_ATprotocol] = ACTIONS(1748), - [anon_sym_ATclass] = ACTIONS(1748), - [anon_sym_ATinterface] = ACTIONS(1748), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1746), - [sym_method_attribute_specifier] = ACTIONS(1746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE] = ACTIONS(1746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_API_AVAILABLE] = ACTIONS(1746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_API_DEPRECATED] = ACTIONS(1746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1746), - [anon_sym___deprecated_msg] = ACTIONS(1746), - [anon_sym___deprecated_enum_msg] = ACTIONS(1746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1746), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1746), - [anon_sym_ATimplementation] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym___typeof] = ACTIONS(1746), - [anon_sym___typeof__] = ACTIONS(1746), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_nil] = ACTIONS(1746), - [sym_id] = ACTIONS(1746), - [sym_instancetype] = ACTIONS(1746), - [sym_Class] = ACTIONS(1746), - [sym_SEL] = ACTIONS(1746), - [sym_IMP] = ACTIONS(1746), - [sym_BOOL] = ACTIONS(1746), - [sym_auto] = ACTIONS(1746), - [anon_sym_ATautoreleasepool] = ACTIONS(1748), - [anon_sym_ATsynchronized] = ACTIONS(1748), - [anon_sym_ATtry] = ACTIONS(1748), - [anon_sym_ATthrow] = ACTIONS(1748), - [anon_sym_ATselector] = ACTIONS(1748), - [anon_sym_ATencode] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1746), - [sym_YES] = ACTIONS(1746), - [sym_NO] = ACTIONS(1746), - [anon_sym___builtin_available] = ACTIONS(1746), - [anon_sym_ATavailable] = ACTIONS(1748), - [anon_sym_va_arg] = ACTIONS(1746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1143] = { - [ts_builtin_sym_end] = ACTIONS(1748), - [sym_identifier] = ACTIONS(1746), - [aux_sym_preproc_include_token1] = ACTIONS(1748), - [aux_sym_preproc_def_token1] = ACTIONS(1748), - [aux_sym_preproc_if_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym___attribute] = ACTIONS(1746), - [anon_sym___attribute__] = ACTIONS(1746), - [anon_sym___declspec] = ACTIONS(1746), - [anon_sym___cdecl] = ACTIONS(1746), - [anon_sym___clrcall] = ACTIONS(1746), - [anon_sym___stdcall] = ACTIONS(1746), - [anon_sym___fastcall] = ACTIONS(1746), - [anon_sym___thiscall] = ACTIONS(1746), - [anon_sym___vectorcall] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_RBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1746), - [anon_sym_register] = ACTIONS(1746), - [anon_sym_inline] = ACTIONS(1746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_restrict] = ACTIONS(1746), - [anon_sym__Atomic] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_out] = ACTIONS(1746), - [anon_sym_inout] = ACTIONS(1746), - [anon_sym_bycopy] = ACTIONS(1746), - [anon_sym_byref] = ACTIONS(1746), - [anon_sym_oneway] = ACTIONS(1746), - [anon_sym__Nullable] = ACTIONS(1746), - [anon_sym__Nonnull] = ACTIONS(1746), - [anon_sym__Nullable_result] = ACTIONS(1746), - [anon_sym__Null_unspecified] = ACTIONS(1746), - [anon_sym___autoreleasing] = ACTIONS(1746), - [anon_sym___nullable] = ACTIONS(1746), - [anon_sym___nonnull] = ACTIONS(1746), - [anon_sym___strong] = ACTIONS(1746), - [anon_sym___weak] = ACTIONS(1746), - [anon_sym___bridge] = ACTIONS(1746), - [anon_sym___bridge_transfer] = ACTIONS(1746), - [anon_sym___bridge_retained] = ACTIONS(1746), - [anon_sym___unsafe_unretained] = ACTIONS(1746), - [anon_sym___block] = ACTIONS(1746), - [anon_sym___kindof] = ACTIONS(1746), - [anon_sym___unused] = ACTIONS(1746), - [anon_sym__Complex] = ACTIONS(1746), - [anon_sym___complex] = ACTIONS(1746), - [anon_sym_IBOutlet] = ACTIONS(1746), - [anon_sym_IBInspectable] = ACTIONS(1746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1746), - [anon_sym_unsigned] = ACTIONS(1746), - [anon_sym_long] = ACTIONS(1746), - [anon_sym_short] = ACTIONS(1746), - [sym_primitive_type] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_NS_ENUM] = ACTIONS(1746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1746), - [anon_sym_NS_OPTIONS] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_goto] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_sizeof] = ACTIONS(1746), - [sym_number_literal] = ACTIONS(1748), - [anon_sym_L_SQUOTE] = ACTIONS(1748), - [anon_sym_u_SQUOTE] = ACTIONS(1748), - [anon_sym_U_SQUOTE] = ACTIONS(1748), - [anon_sym_u8_SQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_L_DQUOTE] = ACTIONS(1748), - [anon_sym_u_DQUOTE] = ACTIONS(1748), - [anon_sym_U_DQUOTE] = ACTIONS(1748), - [anon_sym_u8_DQUOTE] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1748), - [anon_sym_ATimport] = ACTIONS(1748), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1746), - [anon_sym_ATcompatibility_alias] = ACTIONS(1748), - [anon_sym_ATprotocol] = ACTIONS(1748), - [anon_sym_ATclass] = ACTIONS(1748), - [anon_sym_ATinterface] = ACTIONS(1748), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1746), - [sym_method_attribute_specifier] = ACTIONS(1746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE] = ACTIONS(1746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_API_AVAILABLE] = ACTIONS(1746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_API_DEPRECATED] = ACTIONS(1746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1746), - [anon_sym___deprecated_msg] = ACTIONS(1746), - [anon_sym___deprecated_enum_msg] = ACTIONS(1746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1746), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1746), - [anon_sym_ATimplementation] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym___typeof] = ACTIONS(1746), - [anon_sym___typeof__] = ACTIONS(1746), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_nil] = ACTIONS(1746), - [sym_id] = ACTIONS(1746), - [sym_instancetype] = ACTIONS(1746), - [sym_Class] = ACTIONS(1746), - [sym_SEL] = ACTIONS(1746), - [sym_IMP] = ACTIONS(1746), - [sym_BOOL] = ACTIONS(1746), - [sym_auto] = ACTIONS(1746), - [anon_sym_ATautoreleasepool] = ACTIONS(1748), - [anon_sym_ATsynchronized] = ACTIONS(1748), - [anon_sym_ATtry] = ACTIONS(1748), - [anon_sym_ATthrow] = ACTIONS(1748), - [anon_sym_ATselector] = ACTIONS(1748), - [anon_sym_ATencode] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1746), - [sym_YES] = ACTIONS(1746), - [sym_NO] = ACTIONS(1746), - [anon_sym___builtin_available] = ACTIONS(1746), - [anon_sym_ATavailable] = ACTIONS(1748), - [anon_sym_va_arg] = ACTIONS(1746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1144] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1145] = { - [ts_builtin_sym_end] = ACTIONS(1748), - [sym_identifier] = ACTIONS(1746), - [aux_sym_preproc_include_token1] = ACTIONS(1748), - [aux_sym_preproc_def_token1] = ACTIONS(1748), - [aux_sym_preproc_if_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym___attribute] = ACTIONS(1746), - [anon_sym___attribute__] = ACTIONS(1746), - [anon_sym___declspec] = ACTIONS(1746), - [anon_sym___cdecl] = ACTIONS(1746), - [anon_sym___clrcall] = ACTIONS(1746), - [anon_sym___stdcall] = ACTIONS(1746), - [anon_sym___fastcall] = ACTIONS(1746), - [anon_sym___thiscall] = ACTIONS(1746), - [anon_sym___vectorcall] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_RBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1746), - [anon_sym_register] = ACTIONS(1746), - [anon_sym_inline] = ACTIONS(1746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_restrict] = ACTIONS(1746), - [anon_sym__Atomic] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_out] = ACTIONS(1746), - [anon_sym_inout] = ACTIONS(1746), - [anon_sym_bycopy] = ACTIONS(1746), - [anon_sym_byref] = ACTIONS(1746), - [anon_sym_oneway] = ACTIONS(1746), - [anon_sym__Nullable] = ACTIONS(1746), - [anon_sym__Nonnull] = ACTIONS(1746), - [anon_sym__Nullable_result] = ACTIONS(1746), - [anon_sym__Null_unspecified] = ACTIONS(1746), - [anon_sym___autoreleasing] = ACTIONS(1746), - [anon_sym___nullable] = ACTIONS(1746), - [anon_sym___nonnull] = ACTIONS(1746), - [anon_sym___strong] = ACTIONS(1746), - [anon_sym___weak] = ACTIONS(1746), - [anon_sym___bridge] = ACTIONS(1746), - [anon_sym___bridge_transfer] = ACTIONS(1746), - [anon_sym___bridge_retained] = ACTIONS(1746), - [anon_sym___unsafe_unretained] = ACTIONS(1746), - [anon_sym___block] = ACTIONS(1746), - [anon_sym___kindof] = ACTIONS(1746), - [anon_sym___unused] = ACTIONS(1746), - [anon_sym__Complex] = ACTIONS(1746), - [anon_sym___complex] = ACTIONS(1746), - [anon_sym_IBOutlet] = ACTIONS(1746), - [anon_sym_IBInspectable] = ACTIONS(1746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1746), - [anon_sym_unsigned] = ACTIONS(1746), - [anon_sym_long] = ACTIONS(1746), - [anon_sym_short] = ACTIONS(1746), - [sym_primitive_type] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_NS_ENUM] = ACTIONS(1746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1746), - [anon_sym_NS_OPTIONS] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_goto] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_sizeof] = ACTIONS(1746), - [sym_number_literal] = ACTIONS(1748), - [anon_sym_L_SQUOTE] = ACTIONS(1748), - [anon_sym_u_SQUOTE] = ACTIONS(1748), - [anon_sym_U_SQUOTE] = ACTIONS(1748), - [anon_sym_u8_SQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_L_DQUOTE] = ACTIONS(1748), - [anon_sym_u_DQUOTE] = ACTIONS(1748), - [anon_sym_U_DQUOTE] = ACTIONS(1748), - [anon_sym_u8_DQUOTE] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1748), - [anon_sym_ATimport] = ACTIONS(1748), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1746), - [anon_sym_ATcompatibility_alias] = ACTIONS(1748), - [anon_sym_ATprotocol] = ACTIONS(1748), - [anon_sym_ATclass] = ACTIONS(1748), - [anon_sym_ATinterface] = ACTIONS(1748), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1746), - [sym_method_attribute_specifier] = ACTIONS(1746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE] = ACTIONS(1746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_API_AVAILABLE] = ACTIONS(1746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_API_DEPRECATED] = ACTIONS(1746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1746), - [anon_sym___deprecated_msg] = ACTIONS(1746), - [anon_sym___deprecated_enum_msg] = ACTIONS(1746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1746), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1746), - [anon_sym_ATimplementation] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym___typeof] = ACTIONS(1746), - [anon_sym___typeof__] = ACTIONS(1746), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_nil] = ACTIONS(1746), - [sym_id] = ACTIONS(1746), - [sym_instancetype] = ACTIONS(1746), - [sym_Class] = ACTIONS(1746), - [sym_SEL] = ACTIONS(1746), - [sym_IMP] = ACTIONS(1746), - [sym_BOOL] = ACTIONS(1746), - [sym_auto] = ACTIONS(1746), - [anon_sym_ATautoreleasepool] = ACTIONS(1748), - [anon_sym_ATsynchronized] = ACTIONS(1748), - [anon_sym_ATtry] = ACTIONS(1748), - [anon_sym_ATthrow] = ACTIONS(1748), - [anon_sym_ATselector] = ACTIONS(1748), - [anon_sym_ATencode] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1746), - [sym_YES] = ACTIONS(1746), - [sym_NO] = ACTIONS(1746), - [anon_sym___builtin_available] = ACTIONS(1746), - [anon_sym_ATavailable] = ACTIONS(1748), - [anon_sym_va_arg] = ACTIONS(1746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1146] = { - [ts_builtin_sym_end] = ACTIONS(1740), - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1147] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1148] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1149] = { - [ts_builtin_sym_end] = ACTIONS(1740), - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1150] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1151] = { - [ts_builtin_sym_end] = ACTIONS(1740), - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1152] = { - [ts_builtin_sym_end] = ACTIONS(1768), - [sym_identifier] = ACTIONS(1766), - [aux_sym_preproc_include_token1] = ACTIONS(1768), - [aux_sym_preproc_def_token1] = ACTIONS(1768), - [aux_sym_preproc_if_token1] = ACTIONS(1766), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1766), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1766), - [anon_sym_LPAREN2] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1768), - [anon_sym_TILDE] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1766), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_CARET] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(1768), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_typedef] = ACTIONS(1766), - [anon_sym_extern] = ACTIONS(1766), - [anon_sym___attribute] = ACTIONS(1766), - [anon_sym___attribute__] = ACTIONS(1766), - [anon_sym___declspec] = ACTIONS(1766), - [anon_sym___cdecl] = ACTIONS(1766), - [anon_sym___clrcall] = ACTIONS(1766), - [anon_sym___stdcall] = ACTIONS(1766), - [anon_sym___fastcall] = ACTIONS(1766), - [anon_sym___thiscall] = ACTIONS(1766), - [anon_sym___vectorcall] = ACTIONS(1766), - [anon_sym_LBRACE] = ACTIONS(1768), - [anon_sym_RBRACE] = ACTIONS(1768), - [anon_sym_LBRACK] = ACTIONS(1768), - [anon_sym_static] = ACTIONS(1766), - [anon_sym_auto] = ACTIONS(1766), - [anon_sym_register] = ACTIONS(1766), - [anon_sym_inline] = ACTIONS(1766), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1766), - [anon_sym_const] = ACTIONS(1766), - [anon_sym_volatile] = ACTIONS(1766), - [anon_sym_restrict] = ACTIONS(1766), - [anon_sym__Atomic] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1766), - [anon_sym_out] = ACTIONS(1766), - [anon_sym_inout] = ACTIONS(1766), - [anon_sym_bycopy] = ACTIONS(1766), - [anon_sym_byref] = ACTIONS(1766), - [anon_sym_oneway] = ACTIONS(1766), - [anon_sym__Nullable] = ACTIONS(1766), - [anon_sym__Nonnull] = ACTIONS(1766), - [anon_sym__Nullable_result] = ACTIONS(1766), - [anon_sym__Null_unspecified] = ACTIONS(1766), - [anon_sym___autoreleasing] = ACTIONS(1766), - [anon_sym___nullable] = ACTIONS(1766), - [anon_sym___nonnull] = ACTIONS(1766), - [anon_sym___strong] = ACTIONS(1766), - [anon_sym___weak] = ACTIONS(1766), - [anon_sym___bridge] = ACTIONS(1766), - [anon_sym___bridge_transfer] = ACTIONS(1766), - [anon_sym___bridge_retained] = ACTIONS(1766), - [anon_sym___unsafe_unretained] = ACTIONS(1766), - [anon_sym___block] = ACTIONS(1766), - [anon_sym___kindof] = ACTIONS(1766), - [anon_sym___unused] = ACTIONS(1766), - [anon_sym__Complex] = ACTIONS(1766), - [anon_sym___complex] = ACTIONS(1766), - [anon_sym_IBOutlet] = ACTIONS(1766), - [anon_sym_IBInspectable] = ACTIONS(1766), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1766), - [anon_sym_signed] = ACTIONS(1766), - [anon_sym_unsigned] = ACTIONS(1766), - [anon_sym_long] = ACTIONS(1766), - [anon_sym_short] = ACTIONS(1766), - [sym_primitive_type] = ACTIONS(1766), - [anon_sym_enum] = ACTIONS(1766), - [anon_sym_NS_ENUM] = ACTIONS(1766), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1766), - [anon_sym_NS_OPTIONS] = ACTIONS(1766), - [anon_sym_struct] = ACTIONS(1766), - [anon_sym_union] = ACTIONS(1766), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(1766), - [anon_sym_case] = ACTIONS(1766), - [anon_sym_default] = ACTIONS(1766), - [anon_sym_while] = ACTIONS(1766), - [anon_sym_do] = ACTIONS(1766), - [anon_sym_for] = ACTIONS(1766), - [anon_sym_return] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1766), - [anon_sym_continue] = ACTIONS(1766), - [anon_sym_goto] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1768), - [anon_sym_PLUS_PLUS] = ACTIONS(1768), - [anon_sym_sizeof] = ACTIONS(1766), - [sym_number_literal] = ACTIONS(1768), - [anon_sym_L_SQUOTE] = ACTIONS(1768), - [anon_sym_u_SQUOTE] = ACTIONS(1768), - [anon_sym_U_SQUOTE] = ACTIONS(1768), - [anon_sym_u8_SQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_L_DQUOTE] = ACTIONS(1768), - [anon_sym_u_DQUOTE] = ACTIONS(1768), - [anon_sym_U_DQUOTE] = ACTIONS(1768), - [anon_sym_u8_DQUOTE] = ACTIONS(1768), - [anon_sym_DQUOTE] = ACTIONS(1768), - [sym_true] = ACTIONS(1766), - [sym_false] = ACTIONS(1766), - [sym_null] = ACTIONS(1766), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1768), - [anon_sym_ATimport] = ACTIONS(1768), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1766), - [anon_sym_ATcompatibility_alias] = ACTIONS(1768), - [anon_sym_ATprotocol] = ACTIONS(1768), - [anon_sym_ATclass] = ACTIONS(1768), - [anon_sym_ATinterface] = ACTIONS(1768), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1766), - [sym_method_attribute_specifier] = ACTIONS(1766), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1766), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1766), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1766), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1766), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1766), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1766), - [anon_sym_NS_AVAILABLE] = ACTIONS(1766), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1766), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1766), - [anon_sym_API_AVAILABLE] = ACTIONS(1766), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1766), - [anon_sym_API_DEPRECATED] = ACTIONS(1766), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1766), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1766), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1766), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1766), - [anon_sym___deprecated_msg] = ACTIONS(1766), - [anon_sym___deprecated_enum_msg] = ACTIONS(1766), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1766), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1766), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1766), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1766), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1766), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1766), - [anon_sym_ATimplementation] = ACTIONS(1768), - [anon_sym_typeof] = ACTIONS(1766), - [anon_sym___typeof] = ACTIONS(1766), - [anon_sym___typeof__] = ACTIONS(1766), - [sym_self] = ACTIONS(1766), - [sym_super] = ACTIONS(1766), - [sym_nil] = ACTIONS(1766), - [sym_id] = ACTIONS(1766), - [sym_instancetype] = ACTIONS(1766), - [sym_Class] = ACTIONS(1766), - [sym_SEL] = ACTIONS(1766), - [sym_IMP] = ACTIONS(1766), - [sym_BOOL] = ACTIONS(1766), - [sym_auto] = ACTIONS(1766), - [anon_sym_ATautoreleasepool] = ACTIONS(1768), - [anon_sym_ATsynchronized] = ACTIONS(1768), - [anon_sym_ATtry] = ACTIONS(1768), - [anon_sym_ATthrow] = ACTIONS(1768), - [anon_sym_ATselector] = ACTIONS(1768), - [anon_sym_ATencode] = ACTIONS(1768), - [anon_sym_AT] = ACTIONS(1766), - [sym_YES] = ACTIONS(1766), - [sym_NO] = ACTIONS(1766), - [anon_sym___builtin_available] = ACTIONS(1766), - [anon_sym_ATavailable] = ACTIONS(1768), - [anon_sym_va_arg] = ACTIONS(1766), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1153] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1154] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1155] = { - [ts_builtin_sym_end] = ACTIONS(1748), - [sym_identifier] = ACTIONS(1746), - [aux_sym_preproc_include_token1] = ACTIONS(1748), - [aux_sym_preproc_def_token1] = ACTIONS(1748), - [aux_sym_preproc_if_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym___attribute] = ACTIONS(1746), - [anon_sym___attribute__] = ACTIONS(1746), - [anon_sym___declspec] = ACTIONS(1746), - [anon_sym___cdecl] = ACTIONS(1746), - [anon_sym___clrcall] = ACTIONS(1746), - [anon_sym___stdcall] = ACTIONS(1746), - [anon_sym___fastcall] = ACTIONS(1746), - [anon_sym___thiscall] = ACTIONS(1746), - [anon_sym___vectorcall] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_RBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1746), - [anon_sym_register] = ACTIONS(1746), - [anon_sym_inline] = ACTIONS(1746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_restrict] = ACTIONS(1746), - [anon_sym__Atomic] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_out] = ACTIONS(1746), - [anon_sym_inout] = ACTIONS(1746), - [anon_sym_bycopy] = ACTIONS(1746), - [anon_sym_byref] = ACTIONS(1746), - [anon_sym_oneway] = ACTIONS(1746), - [anon_sym__Nullable] = ACTIONS(1746), - [anon_sym__Nonnull] = ACTIONS(1746), - [anon_sym__Nullable_result] = ACTIONS(1746), - [anon_sym__Null_unspecified] = ACTIONS(1746), - [anon_sym___autoreleasing] = ACTIONS(1746), - [anon_sym___nullable] = ACTIONS(1746), - [anon_sym___nonnull] = ACTIONS(1746), - [anon_sym___strong] = ACTIONS(1746), - [anon_sym___weak] = ACTIONS(1746), - [anon_sym___bridge] = ACTIONS(1746), - [anon_sym___bridge_transfer] = ACTIONS(1746), - [anon_sym___bridge_retained] = ACTIONS(1746), - [anon_sym___unsafe_unretained] = ACTIONS(1746), - [anon_sym___block] = ACTIONS(1746), - [anon_sym___kindof] = ACTIONS(1746), - [anon_sym___unused] = ACTIONS(1746), - [anon_sym__Complex] = ACTIONS(1746), - [anon_sym___complex] = ACTIONS(1746), - [anon_sym_IBOutlet] = ACTIONS(1746), - [anon_sym_IBInspectable] = ACTIONS(1746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1746), - [anon_sym_unsigned] = ACTIONS(1746), - [anon_sym_long] = ACTIONS(1746), - [anon_sym_short] = ACTIONS(1746), - [sym_primitive_type] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_NS_ENUM] = ACTIONS(1746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1746), - [anon_sym_NS_OPTIONS] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_goto] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_sizeof] = ACTIONS(1746), - [sym_number_literal] = ACTIONS(1748), - [anon_sym_L_SQUOTE] = ACTIONS(1748), - [anon_sym_u_SQUOTE] = ACTIONS(1748), - [anon_sym_U_SQUOTE] = ACTIONS(1748), - [anon_sym_u8_SQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_L_DQUOTE] = ACTIONS(1748), - [anon_sym_u_DQUOTE] = ACTIONS(1748), - [anon_sym_U_DQUOTE] = ACTIONS(1748), - [anon_sym_u8_DQUOTE] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1748), - [anon_sym_ATimport] = ACTIONS(1748), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1746), - [anon_sym_ATcompatibility_alias] = ACTIONS(1748), - [anon_sym_ATprotocol] = ACTIONS(1748), - [anon_sym_ATclass] = ACTIONS(1748), - [anon_sym_ATinterface] = ACTIONS(1748), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1746), - [sym_method_attribute_specifier] = ACTIONS(1746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE] = ACTIONS(1746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_API_AVAILABLE] = ACTIONS(1746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_API_DEPRECATED] = ACTIONS(1746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1746), - [anon_sym___deprecated_msg] = ACTIONS(1746), - [anon_sym___deprecated_enum_msg] = ACTIONS(1746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1746), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1746), - [anon_sym_ATimplementation] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym___typeof] = ACTIONS(1746), - [anon_sym___typeof__] = ACTIONS(1746), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_nil] = ACTIONS(1746), - [sym_id] = ACTIONS(1746), - [sym_instancetype] = ACTIONS(1746), - [sym_Class] = ACTIONS(1746), - [sym_SEL] = ACTIONS(1746), - [sym_IMP] = ACTIONS(1746), - [sym_BOOL] = ACTIONS(1746), - [sym_auto] = ACTIONS(1746), - [anon_sym_ATautoreleasepool] = ACTIONS(1748), - [anon_sym_ATsynchronized] = ACTIONS(1748), - [anon_sym_ATtry] = ACTIONS(1748), - [anon_sym_ATthrow] = ACTIONS(1748), - [anon_sym_ATselector] = ACTIONS(1748), - [anon_sym_ATencode] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1746), - [sym_YES] = ACTIONS(1746), - [sym_NO] = ACTIONS(1746), - [anon_sym___builtin_available] = ACTIONS(1746), - [anon_sym_ATavailable] = ACTIONS(1748), - [anon_sym_va_arg] = ACTIONS(1746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1156] = { - [ts_builtin_sym_end] = ACTIONS(1748), - [sym_identifier] = ACTIONS(1746), - [aux_sym_preproc_include_token1] = ACTIONS(1748), - [aux_sym_preproc_def_token1] = ACTIONS(1748), - [aux_sym_preproc_if_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym___attribute] = ACTIONS(1746), - [anon_sym___attribute__] = ACTIONS(1746), - [anon_sym___declspec] = ACTIONS(1746), - [anon_sym___cdecl] = ACTIONS(1746), - [anon_sym___clrcall] = ACTIONS(1746), - [anon_sym___stdcall] = ACTIONS(1746), - [anon_sym___fastcall] = ACTIONS(1746), - [anon_sym___thiscall] = ACTIONS(1746), - [anon_sym___vectorcall] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_RBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1746), - [anon_sym_register] = ACTIONS(1746), - [anon_sym_inline] = ACTIONS(1746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_restrict] = ACTIONS(1746), - [anon_sym__Atomic] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_out] = ACTIONS(1746), - [anon_sym_inout] = ACTIONS(1746), - [anon_sym_bycopy] = ACTIONS(1746), - [anon_sym_byref] = ACTIONS(1746), - [anon_sym_oneway] = ACTIONS(1746), - [anon_sym__Nullable] = ACTIONS(1746), - [anon_sym__Nonnull] = ACTIONS(1746), - [anon_sym__Nullable_result] = ACTIONS(1746), - [anon_sym__Null_unspecified] = ACTIONS(1746), - [anon_sym___autoreleasing] = ACTIONS(1746), - [anon_sym___nullable] = ACTIONS(1746), - [anon_sym___nonnull] = ACTIONS(1746), - [anon_sym___strong] = ACTIONS(1746), - [anon_sym___weak] = ACTIONS(1746), - [anon_sym___bridge] = ACTIONS(1746), - [anon_sym___bridge_transfer] = ACTIONS(1746), - [anon_sym___bridge_retained] = ACTIONS(1746), - [anon_sym___unsafe_unretained] = ACTIONS(1746), - [anon_sym___block] = ACTIONS(1746), - [anon_sym___kindof] = ACTIONS(1746), - [anon_sym___unused] = ACTIONS(1746), - [anon_sym__Complex] = ACTIONS(1746), - [anon_sym___complex] = ACTIONS(1746), - [anon_sym_IBOutlet] = ACTIONS(1746), - [anon_sym_IBInspectable] = ACTIONS(1746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1746), - [anon_sym_unsigned] = ACTIONS(1746), - [anon_sym_long] = ACTIONS(1746), - [anon_sym_short] = ACTIONS(1746), - [sym_primitive_type] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_NS_ENUM] = ACTIONS(1746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1746), - [anon_sym_NS_OPTIONS] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_goto] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_sizeof] = ACTIONS(1746), - [sym_number_literal] = ACTIONS(1748), - [anon_sym_L_SQUOTE] = ACTIONS(1748), - [anon_sym_u_SQUOTE] = ACTIONS(1748), - [anon_sym_U_SQUOTE] = ACTIONS(1748), - [anon_sym_u8_SQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_L_DQUOTE] = ACTIONS(1748), - [anon_sym_u_DQUOTE] = ACTIONS(1748), - [anon_sym_U_DQUOTE] = ACTIONS(1748), - [anon_sym_u8_DQUOTE] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1748), - [anon_sym_ATimport] = ACTIONS(1748), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1746), - [anon_sym_ATcompatibility_alias] = ACTIONS(1748), - [anon_sym_ATprotocol] = ACTIONS(1748), - [anon_sym_ATclass] = ACTIONS(1748), - [anon_sym_ATinterface] = ACTIONS(1748), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1746), - [sym_method_attribute_specifier] = ACTIONS(1746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE] = ACTIONS(1746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_API_AVAILABLE] = ACTIONS(1746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_API_DEPRECATED] = ACTIONS(1746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1746), - [anon_sym___deprecated_msg] = ACTIONS(1746), - [anon_sym___deprecated_enum_msg] = ACTIONS(1746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1746), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1746), - [anon_sym_ATimplementation] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym___typeof] = ACTIONS(1746), - [anon_sym___typeof__] = ACTIONS(1746), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_nil] = ACTIONS(1746), - [sym_id] = ACTIONS(1746), - [sym_instancetype] = ACTIONS(1746), - [sym_Class] = ACTIONS(1746), - [sym_SEL] = ACTIONS(1746), - [sym_IMP] = ACTIONS(1746), - [sym_BOOL] = ACTIONS(1746), - [sym_auto] = ACTIONS(1746), - [anon_sym_ATautoreleasepool] = ACTIONS(1748), - [anon_sym_ATsynchronized] = ACTIONS(1748), - [anon_sym_ATtry] = ACTIONS(1748), - [anon_sym_ATthrow] = ACTIONS(1748), - [anon_sym_ATselector] = ACTIONS(1748), - [anon_sym_ATencode] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1746), - [sym_YES] = ACTIONS(1746), - [sym_NO] = ACTIONS(1746), - [anon_sym___builtin_available] = ACTIONS(1746), - [anon_sym_ATavailable] = ACTIONS(1748), - [anon_sym_va_arg] = ACTIONS(1746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1157] = { - [ts_builtin_sym_end] = ACTIONS(2148), - [sym_identifier] = ACTIONS(2146), - [aux_sym_preproc_include_token1] = ACTIONS(2148), - [aux_sym_preproc_def_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token1] = ACTIONS(2146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2146), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2146), - [anon_sym_LPAREN2] = ACTIONS(2148), - [anon_sym_BANG] = ACTIONS(2148), - [anon_sym_TILDE] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2146), - [anon_sym_PLUS] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2148), - [anon_sym_CARET] = ACTIONS(2148), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_typedef] = ACTIONS(2146), - [anon_sym_extern] = ACTIONS(2146), - [anon_sym___attribute] = ACTIONS(2146), - [anon_sym___attribute__] = ACTIONS(2146), - [anon_sym___declspec] = ACTIONS(2146), - [anon_sym___cdecl] = ACTIONS(2146), - [anon_sym___clrcall] = ACTIONS(2146), - [anon_sym___stdcall] = ACTIONS(2146), - [anon_sym___fastcall] = ACTIONS(2146), - [anon_sym___thiscall] = ACTIONS(2146), - [anon_sym___vectorcall] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2146), - [anon_sym_auto] = ACTIONS(2146), - [anon_sym_register] = ACTIONS(2146), - [anon_sym_inline] = ACTIONS(2146), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2146), - [anon_sym_const] = ACTIONS(2146), - [anon_sym_volatile] = ACTIONS(2146), - [anon_sym_restrict] = ACTIONS(2146), - [anon_sym__Atomic] = ACTIONS(2146), - [anon_sym_in] = ACTIONS(2146), - [anon_sym_out] = ACTIONS(2146), - [anon_sym_inout] = ACTIONS(2146), - [anon_sym_bycopy] = ACTIONS(2146), - [anon_sym_byref] = ACTIONS(2146), - [anon_sym_oneway] = ACTIONS(2146), - [anon_sym__Nullable] = ACTIONS(2146), - [anon_sym__Nonnull] = ACTIONS(2146), - [anon_sym__Nullable_result] = ACTIONS(2146), - [anon_sym__Null_unspecified] = ACTIONS(2146), - [anon_sym___autoreleasing] = ACTIONS(2146), - [anon_sym___nullable] = ACTIONS(2146), - [anon_sym___nonnull] = ACTIONS(2146), - [anon_sym___strong] = ACTIONS(2146), - [anon_sym___weak] = ACTIONS(2146), - [anon_sym___bridge] = ACTIONS(2146), - [anon_sym___bridge_transfer] = ACTIONS(2146), - [anon_sym___bridge_retained] = ACTIONS(2146), - [anon_sym___unsafe_unretained] = ACTIONS(2146), - [anon_sym___block] = ACTIONS(2146), - [anon_sym___kindof] = ACTIONS(2146), - [anon_sym___unused] = ACTIONS(2146), - [anon_sym__Complex] = ACTIONS(2146), - [anon_sym___complex] = ACTIONS(2146), - [anon_sym_IBOutlet] = ACTIONS(2146), - [anon_sym_IBInspectable] = ACTIONS(2146), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2146), - [anon_sym_signed] = ACTIONS(2146), - [anon_sym_unsigned] = ACTIONS(2146), - [anon_sym_long] = ACTIONS(2146), - [anon_sym_short] = ACTIONS(2146), - [sym_primitive_type] = ACTIONS(2146), - [anon_sym_enum] = ACTIONS(2146), - [anon_sym_NS_ENUM] = ACTIONS(2146), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2146), - [anon_sym_NS_OPTIONS] = ACTIONS(2146), - [anon_sym_struct] = ACTIONS(2146), - [anon_sym_union] = ACTIONS(2146), - [anon_sym_if] = ACTIONS(2146), - [anon_sym_switch] = ACTIONS(2146), - [anon_sym_case] = ACTIONS(2146), - [anon_sym_default] = ACTIONS(2146), - [anon_sym_while] = ACTIONS(2146), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_for] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2146), - [anon_sym_break] = ACTIONS(2146), - [anon_sym_continue] = ACTIONS(2146), - [anon_sym_goto] = ACTIONS(2146), - [anon_sym_DASH_DASH] = ACTIONS(2148), - [anon_sym_PLUS_PLUS] = ACTIONS(2148), - [anon_sym_sizeof] = ACTIONS(2146), - [sym_number_literal] = ACTIONS(2148), - [anon_sym_L_SQUOTE] = ACTIONS(2148), - [anon_sym_u_SQUOTE] = ACTIONS(2148), - [anon_sym_U_SQUOTE] = ACTIONS(2148), - [anon_sym_u8_SQUOTE] = ACTIONS(2148), - [anon_sym_SQUOTE] = ACTIONS(2148), - [anon_sym_L_DQUOTE] = ACTIONS(2148), - [anon_sym_u_DQUOTE] = ACTIONS(2148), - [anon_sym_U_DQUOTE] = ACTIONS(2148), - [anon_sym_u8_DQUOTE] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2148), - [sym_true] = ACTIONS(2146), - [sym_false] = ACTIONS(2146), - [sym_null] = ACTIONS(2146), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2148), - [anon_sym_ATimport] = ACTIONS(2148), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2146), - [anon_sym_ATcompatibility_alias] = ACTIONS(2148), - [anon_sym_ATprotocol] = ACTIONS(2148), - [anon_sym_ATclass] = ACTIONS(2148), - [anon_sym_ATinterface] = ACTIONS(2148), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2146), - [sym_method_attribute_specifier] = ACTIONS(2146), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2146), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2146), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2146), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2146), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2146), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2146), - [anon_sym_NS_AVAILABLE] = ACTIONS(2146), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2146), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_API_AVAILABLE] = ACTIONS(2146), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2146), - [anon_sym_API_DEPRECATED] = ACTIONS(2146), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2146), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2146), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2146), - [anon_sym___deprecated_msg] = ACTIONS(2146), - [anon_sym___deprecated_enum_msg] = ACTIONS(2146), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2146), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2146), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2146), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2146), - [anon_sym_ATimplementation] = ACTIONS(2148), - [anon_sym_typeof] = ACTIONS(2146), - [anon_sym___typeof] = ACTIONS(2146), - [anon_sym___typeof__] = ACTIONS(2146), - [sym_self] = ACTIONS(2146), - [sym_super] = ACTIONS(2146), - [sym_nil] = ACTIONS(2146), - [sym_id] = ACTIONS(2146), - [sym_instancetype] = ACTIONS(2146), - [sym_Class] = ACTIONS(2146), - [sym_SEL] = ACTIONS(2146), - [sym_IMP] = ACTIONS(2146), - [sym_BOOL] = ACTIONS(2146), - [sym_auto] = ACTIONS(2146), - [anon_sym_ATautoreleasepool] = ACTIONS(2148), - [anon_sym_ATsynchronized] = ACTIONS(2148), - [anon_sym_ATtry] = ACTIONS(2148), - [anon_sym_ATthrow] = ACTIONS(2148), - [anon_sym_ATselector] = ACTIONS(2148), - [anon_sym_ATencode] = ACTIONS(2148), - [anon_sym_AT] = ACTIONS(2146), - [sym_YES] = ACTIONS(2146), - [sym_NO] = ACTIONS(2146), - [anon_sym___builtin_available] = ACTIONS(2146), - [anon_sym_ATavailable] = ACTIONS(2148), - [anon_sym_va_arg] = ACTIONS(2146), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1158] = { - [ts_builtin_sym_end] = ACTIONS(1772), - [sym_identifier] = ACTIONS(1770), - [aux_sym_preproc_include_token1] = ACTIONS(1772), - [aux_sym_preproc_def_token1] = ACTIONS(1772), - [aux_sym_preproc_if_token1] = ACTIONS(1770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1770), - [anon_sym_LPAREN2] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1772), - [anon_sym_TILDE] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_CARET] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_typedef] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_out] = ACTIONS(1770), - [anon_sym_inout] = ACTIONS(1770), - [anon_sym_bycopy] = ACTIONS(1770), - [anon_sym_byref] = ACTIONS(1770), - [anon_sym_oneway] = ACTIONS(1770), - [anon_sym__Nullable] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym__Nullable_result] = ACTIONS(1770), - [anon_sym__Null_unspecified] = ACTIONS(1770), - [anon_sym___autoreleasing] = ACTIONS(1770), - [anon_sym___nullable] = ACTIONS(1770), - [anon_sym___nonnull] = ACTIONS(1770), - [anon_sym___strong] = ACTIONS(1770), - [anon_sym___weak] = ACTIONS(1770), - [anon_sym___bridge] = ACTIONS(1770), - [anon_sym___bridge_transfer] = ACTIONS(1770), - [anon_sym___bridge_retained] = ACTIONS(1770), - [anon_sym___unsafe_unretained] = ACTIONS(1770), - [anon_sym___block] = ACTIONS(1770), - [anon_sym___kindof] = ACTIONS(1770), - [anon_sym___unused] = ACTIONS(1770), - [anon_sym__Complex] = ACTIONS(1770), - [anon_sym___complex] = ACTIONS(1770), - [anon_sym_IBOutlet] = ACTIONS(1770), - [anon_sym_IBInspectable] = ACTIONS(1770), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1770), - [anon_sym_unsigned] = ACTIONS(1770), - [anon_sym_long] = ACTIONS(1770), - [anon_sym_short] = ACTIONS(1770), - [sym_primitive_type] = ACTIONS(1770), - [anon_sym_enum] = ACTIONS(1770), - [anon_sym_NS_ENUM] = ACTIONS(1770), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1770), - [anon_sym_NS_OPTIONS] = ACTIONS(1770), - [anon_sym_struct] = ACTIONS(1770), - [anon_sym_union] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_switch] = ACTIONS(1770), - [anon_sym_case] = ACTIONS(1770), - [anon_sym_default] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_do] = ACTIONS(1770), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_goto] = ACTIONS(1770), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_sizeof] = ACTIONS(1770), - [sym_number_literal] = ACTIONS(1772), - [anon_sym_L_SQUOTE] = ACTIONS(1772), - [anon_sym_u_SQUOTE] = ACTIONS(1772), - [anon_sym_U_SQUOTE] = ACTIONS(1772), - [anon_sym_u8_SQUOTE] = ACTIONS(1772), - [anon_sym_SQUOTE] = ACTIONS(1772), - [anon_sym_L_DQUOTE] = ACTIONS(1772), - [anon_sym_u_DQUOTE] = ACTIONS(1772), - [anon_sym_U_DQUOTE] = ACTIONS(1772), - [anon_sym_u8_DQUOTE] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1772), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [sym_null] = ACTIONS(1770), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1772), - [anon_sym_ATimport] = ACTIONS(1772), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1770), - [anon_sym_ATcompatibility_alias] = ACTIONS(1772), - [anon_sym_ATprotocol] = ACTIONS(1772), - [anon_sym_ATclass] = ACTIONS(1772), - [anon_sym_ATinterface] = ACTIONS(1772), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1770), - [sym_method_attribute_specifier] = ACTIONS(1770), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1770), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1770), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1770), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1770), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1770), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1770), - [anon_sym_NS_AVAILABLE] = ACTIONS(1770), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1770), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1770), - [anon_sym_API_AVAILABLE] = ACTIONS(1770), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1770), - [anon_sym_API_DEPRECATED] = ACTIONS(1770), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1770), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1770), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1770), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1770), - [anon_sym___deprecated_msg] = ACTIONS(1770), - [anon_sym___deprecated_enum_msg] = ACTIONS(1770), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1770), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1770), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1770), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1770), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1770), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1770), - [anon_sym_ATimplementation] = ACTIONS(1772), - [anon_sym_typeof] = ACTIONS(1770), - [anon_sym___typeof] = ACTIONS(1770), - [anon_sym___typeof__] = ACTIONS(1770), - [sym_self] = ACTIONS(1770), - [sym_super] = ACTIONS(1770), - [sym_nil] = ACTIONS(1770), - [sym_id] = ACTIONS(1770), - [sym_instancetype] = ACTIONS(1770), - [sym_Class] = ACTIONS(1770), - [sym_SEL] = ACTIONS(1770), - [sym_IMP] = ACTIONS(1770), - [sym_BOOL] = ACTIONS(1770), - [sym_auto] = ACTIONS(1770), - [anon_sym_ATautoreleasepool] = ACTIONS(1772), - [anon_sym_ATsynchronized] = ACTIONS(1772), - [anon_sym_ATtry] = ACTIONS(1772), - [anon_sym_ATthrow] = ACTIONS(1772), - [anon_sym_ATselector] = ACTIONS(1772), - [anon_sym_ATencode] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(1770), - [sym_YES] = ACTIONS(1770), - [sym_NO] = ACTIONS(1770), - [anon_sym___builtin_available] = ACTIONS(1770), - [anon_sym_ATavailable] = ACTIONS(1772), - [anon_sym_va_arg] = ACTIONS(1770), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1159] = { - [ts_builtin_sym_end] = ACTIONS(2148), - [sym_identifier] = ACTIONS(2146), - [aux_sym_preproc_include_token1] = ACTIONS(2148), - [aux_sym_preproc_def_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token1] = ACTIONS(2146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2146), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2146), - [anon_sym_LPAREN2] = ACTIONS(2148), - [anon_sym_BANG] = ACTIONS(2148), - [anon_sym_TILDE] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2146), - [anon_sym_PLUS] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2148), - [anon_sym_CARET] = ACTIONS(2148), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_typedef] = ACTIONS(2146), - [anon_sym_extern] = ACTIONS(2146), - [anon_sym___attribute] = ACTIONS(2146), - [anon_sym___attribute__] = ACTIONS(2146), - [anon_sym___declspec] = ACTIONS(2146), - [anon_sym___cdecl] = ACTIONS(2146), - [anon_sym___clrcall] = ACTIONS(2146), - [anon_sym___stdcall] = ACTIONS(2146), - [anon_sym___fastcall] = ACTIONS(2146), - [anon_sym___thiscall] = ACTIONS(2146), - [anon_sym___vectorcall] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_RBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2146), - [anon_sym_auto] = ACTIONS(2146), - [anon_sym_register] = ACTIONS(2146), - [anon_sym_inline] = ACTIONS(2146), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2146), - [anon_sym_const] = ACTIONS(2146), - [anon_sym_volatile] = ACTIONS(2146), - [anon_sym_restrict] = ACTIONS(2146), - [anon_sym__Atomic] = ACTIONS(2146), - [anon_sym_in] = ACTIONS(2146), - [anon_sym_out] = ACTIONS(2146), - [anon_sym_inout] = ACTIONS(2146), - [anon_sym_bycopy] = ACTIONS(2146), - [anon_sym_byref] = ACTIONS(2146), - [anon_sym_oneway] = ACTIONS(2146), - [anon_sym__Nullable] = ACTIONS(2146), - [anon_sym__Nonnull] = ACTIONS(2146), - [anon_sym__Nullable_result] = ACTIONS(2146), - [anon_sym__Null_unspecified] = ACTIONS(2146), - [anon_sym___autoreleasing] = ACTIONS(2146), - [anon_sym___nullable] = ACTIONS(2146), - [anon_sym___nonnull] = ACTIONS(2146), - [anon_sym___strong] = ACTIONS(2146), - [anon_sym___weak] = ACTIONS(2146), - [anon_sym___bridge] = ACTIONS(2146), - [anon_sym___bridge_transfer] = ACTIONS(2146), - [anon_sym___bridge_retained] = ACTIONS(2146), - [anon_sym___unsafe_unretained] = ACTIONS(2146), - [anon_sym___block] = ACTIONS(2146), - [anon_sym___kindof] = ACTIONS(2146), - [anon_sym___unused] = ACTIONS(2146), - [anon_sym__Complex] = ACTIONS(2146), - [anon_sym___complex] = ACTIONS(2146), - [anon_sym_IBOutlet] = ACTIONS(2146), - [anon_sym_IBInspectable] = ACTIONS(2146), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2146), - [anon_sym_signed] = ACTIONS(2146), - [anon_sym_unsigned] = ACTIONS(2146), - [anon_sym_long] = ACTIONS(2146), - [anon_sym_short] = ACTIONS(2146), - [sym_primitive_type] = ACTIONS(2146), - [anon_sym_enum] = ACTIONS(2146), - [anon_sym_NS_ENUM] = ACTIONS(2146), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2146), - [anon_sym_NS_OPTIONS] = ACTIONS(2146), - [anon_sym_struct] = ACTIONS(2146), - [anon_sym_union] = ACTIONS(2146), - [anon_sym_if] = ACTIONS(2146), - [anon_sym_switch] = ACTIONS(2146), - [anon_sym_case] = ACTIONS(2146), - [anon_sym_default] = ACTIONS(2146), - [anon_sym_while] = ACTIONS(2146), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_for] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2146), - [anon_sym_break] = ACTIONS(2146), - [anon_sym_continue] = ACTIONS(2146), - [anon_sym_goto] = ACTIONS(2146), - [anon_sym_DASH_DASH] = ACTIONS(2148), - [anon_sym_PLUS_PLUS] = ACTIONS(2148), - [anon_sym_sizeof] = ACTIONS(2146), - [sym_number_literal] = ACTIONS(2148), - [anon_sym_L_SQUOTE] = ACTIONS(2148), - [anon_sym_u_SQUOTE] = ACTIONS(2148), - [anon_sym_U_SQUOTE] = ACTIONS(2148), - [anon_sym_u8_SQUOTE] = ACTIONS(2148), - [anon_sym_SQUOTE] = ACTIONS(2148), - [anon_sym_L_DQUOTE] = ACTIONS(2148), - [anon_sym_u_DQUOTE] = ACTIONS(2148), - [anon_sym_U_DQUOTE] = ACTIONS(2148), - [anon_sym_u8_DQUOTE] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2148), - [sym_true] = ACTIONS(2146), - [sym_false] = ACTIONS(2146), - [sym_null] = ACTIONS(2146), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2148), - [anon_sym_ATimport] = ACTIONS(2148), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2146), - [anon_sym_ATcompatibility_alias] = ACTIONS(2148), - [anon_sym_ATprotocol] = ACTIONS(2148), - [anon_sym_ATclass] = ACTIONS(2148), - [anon_sym_ATinterface] = ACTIONS(2148), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2146), - [sym_method_attribute_specifier] = ACTIONS(2146), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2146), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2146), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2146), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2146), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2146), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2146), - [anon_sym_NS_AVAILABLE] = ACTIONS(2146), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2146), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_API_AVAILABLE] = ACTIONS(2146), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2146), - [anon_sym_API_DEPRECATED] = ACTIONS(2146), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2146), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2146), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2146), - [anon_sym___deprecated_msg] = ACTIONS(2146), - [anon_sym___deprecated_enum_msg] = ACTIONS(2146), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2146), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2146), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2146), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2146), - [anon_sym_ATimplementation] = ACTIONS(2148), - [anon_sym_typeof] = ACTIONS(2146), - [anon_sym___typeof] = ACTIONS(2146), - [anon_sym___typeof__] = ACTIONS(2146), - [sym_self] = ACTIONS(2146), - [sym_super] = ACTIONS(2146), - [sym_nil] = ACTIONS(2146), - [sym_id] = ACTIONS(2146), - [sym_instancetype] = ACTIONS(2146), - [sym_Class] = ACTIONS(2146), - [sym_SEL] = ACTIONS(2146), - [sym_IMP] = ACTIONS(2146), - [sym_BOOL] = ACTIONS(2146), - [sym_auto] = ACTIONS(2146), - [anon_sym_ATautoreleasepool] = ACTIONS(2148), - [anon_sym_ATsynchronized] = ACTIONS(2148), - [anon_sym_ATtry] = ACTIONS(2148), - [anon_sym_ATthrow] = ACTIONS(2148), - [anon_sym_ATselector] = ACTIONS(2148), - [anon_sym_ATencode] = ACTIONS(2148), - [anon_sym_AT] = ACTIONS(2146), - [sym_YES] = ACTIONS(2146), - [sym_NO] = ACTIONS(2146), - [anon_sym___builtin_available] = ACTIONS(2146), - [anon_sym_ATavailable] = ACTIONS(2148), - [anon_sym_va_arg] = ACTIONS(2146), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1160] = { - [ts_builtin_sym_end] = ACTIONS(1780), - [sym_identifier] = ACTIONS(1778), - [aux_sym_preproc_include_token1] = ACTIONS(1780), - [aux_sym_preproc_def_token1] = ACTIONS(1780), - [aux_sym_preproc_if_token1] = ACTIONS(1778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_typedef] = ACTIONS(1778), - [anon_sym_extern] = ACTIONS(1778), - [anon_sym___attribute] = ACTIONS(1778), - [anon_sym___attribute__] = ACTIONS(1778), - [anon_sym___declspec] = ACTIONS(1778), - [anon_sym___cdecl] = ACTIONS(1778), - [anon_sym___clrcall] = ACTIONS(1778), - [anon_sym___stdcall] = ACTIONS(1778), - [anon_sym___fastcall] = ACTIONS(1778), - [anon_sym___thiscall] = ACTIONS(1778), - [anon_sym___vectorcall] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_static] = ACTIONS(1778), - [anon_sym_auto] = ACTIONS(1778), - [anon_sym_register] = ACTIONS(1778), - [anon_sym_inline] = ACTIONS(1778), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1778), - [anon_sym_volatile] = ACTIONS(1778), - [anon_sym_restrict] = ACTIONS(1778), - [anon_sym__Atomic] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_out] = ACTIONS(1778), - [anon_sym_inout] = ACTIONS(1778), - [anon_sym_bycopy] = ACTIONS(1778), - [anon_sym_byref] = ACTIONS(1778), - [anon_sym_oneway] = ACTIONS(1778), - [anon_sym__Nullable] = ACTIONS(1778), - [anon_sym__Nonnull] = ACTIONS(1778), - [anon_sym__Nullable_result] = ACTIONS(1778), - [anon_sym__Null_unspecified] = ACTIONS(1778), - [anon_sym___autoreleasing] = ACTIONS(1778), - [anon_sym___nullable] = ACTIONS(1778), - [anon_sym___nonnull] = ACTIONS(1778), - [anon_sym___strong] = ACTIONS(1778), - [anon_sym___weak] = ACTIONS(1778), - [anon_sym___bridge] = ACTIONS(1778), - [anon_sym___bridge_transfer] = ACTIONS(1778), - [anon_sym___bridge_retained] = ACTIONS(1778), - [anon_sym___unsafe_unretained] = ACTIONS(1778), - [anon_sym___block] = ACTIONS(1778), - [anon_sym___kindof] = ACTIONS(1778), - [anon_sym___unused] = ACTIONS(1778), - [anon_sym__Complex] = ACTIONS(1778), - [anon_sym___complex] = ACTIONS(1778), - [anon_sym_IBOutlet] = ACTIONS(1778), - [anon_sym_IBInspectable] = ACTIONS(1778), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1778), - [anon_sym_signed] = ACTIONS(1778), - [anon_sym_unsigned] = ACTIONS(1778), - [anon_sym_long] = ACTIONS(1778), - [anon_sym_short] = ACTIONS(1778), - [sym_primitive_type] = ACTIONS(1778), - [anon_sym_enum] = ACTIONS(1778), - [anon_sym_NS_ENUM] = ACTIONS(1778), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1778), - [anon_sym_NS_OPTIONS] = ACTIONS(1778), - [anon_sym_struct] = ACTIONS(1778), - [anon_sym_union] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1778), - [anon_sym_case] = ACTIONS(1778), - [anon_sym_default] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_do] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_goto] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_sizeof] = ACTIONS(1778), - [sym_number_literal] = ACTIONS(1780), - [anon_sym_L_SQUOTE] = ACTIONS(1780), - [anon_sym_u_SQUOTE] = ACTIONS(1780), - [anon_sym_U_SQUOTE] = ACTIONS(1780), - [anon_sym_u8_SQUOTE] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1780), - [anon_sym_L_DQUOTE] = ACTIONS(1780), - [anon_sym_u_DQUOTE] = ACTIONS(1780), - [anon_sym_U_DQUOTE] = ACTIONS(1780), - [anon_sym_u8_DQUOTE] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [sym_true] = ACTIONS(1778), - [sym_false] = ACTIONS(1778), - [sym_null] = ACTIONS(1778), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1780), - [anon_sym_ATimport] = ACTIONS(1780), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1778), - [anon_sym_ATcompatibility_alias] = ACTIONS(1780), - [anon_sym_ATprotocol] = ACTIONS(1780), - [anon_sym_ATclass] = ACTIONS(1780), - [anon_sym_ATinterface] = ACTIONS(1780), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1778), - [sym_method_attribute_specifier] = ACTIONS(1778), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1778), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1778), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1778), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1778), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1778), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1778), - [anon_sym_NS_AVAILABLE] = ACTIONS(1778), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1778), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1778), - [anon_sym_API_AVAILABLE] = ACTIONS(1778), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1778), - [anon_sym_API_DEPRECATED] = ACTIONS(1778), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1778), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1778), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1778), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1778), - [anon_sym___deprecated_msg] = ACTIONS(1778), - [anon_sym___deprecated_enum_msg] = ACTIONS(1778), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1778), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1778), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1778), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1778), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1778), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1778), - [anon_sym_ATimplementation] = ACTIONS(1780), - [anon_sym_typeof] = ACTIONS(1778), - [anon_sym___typeof] = ACTIONS(1778), - [anon_sym___typeof__] = ACTIONS(1778), - [sym_self] = ACTIONS(1778), - [sym_super] = ACTIONS(1778), - [sym_nil] = ACTIONS(1778), - [sym_id] = ACTIONS(1778), - [sym_instancetype] = ACTIONS(1778), - [sym_Class] = ACTIONS(1778), - [sym_SEL] = ACTIONS(1778), - [sym_IMP] = ACTIONS(1778), - [sym_BOOL] = ACTIONS(1778), - [sym_auto] = ACTIONS(1778), - [anon_sym_ATautoreleasepool] = ACTIONS(1780), - [anon_sym_ATsynchronized] = ACTIONS(1780), - [anon_sym_ATtry] = ACTIONS(1780), - [anon_sym_ATthrow] = ACTIONS(1780), - [anon_sym_ATselector] = ACTIONS(1780), - [anon_sym_ATencode] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1778), - [sym_YES] = ACTIONS(1778), - [sym_NO] = ACTIONS(1778), - [anon_sym___builtin_available] = ACTIONS(1778), - [anon_sym_ATavailable] = ACTIONS(1780), - [anon_sym_va_arg] = ACTIONS(1778), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1161] = { - [ts_builtin_sym_end] = ACTIONS(2152), - [sym_identifier] = ACTIONS(2150), - [aux_sym_preproc_include_token1] = ACTIONS(2152), - [aux_sym_preproc_def_token1] = ACTIONS(2152), - [aux_sym_preproc_if_token1] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_PLUS] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_typedef] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2150), - [anon_sym___attribute] = ACTIONS(2150), - [anon_sym___attribute__] = ACTIONS(2150), - [anon_sym___declspec] = ACTIONS(2150), - [anon_sym___cdecl] = ACTIONS(2150), - [anon_sym___clrcall] = ACTIONS(2150), - [anon_sym___stdcall] = ACTIONS(2150), - [anon_sym___fastcall] = ACTIONS(2150), - [anon_sym___thiscall] = ACTIONS(2150), - [anon_sym___vectorcall] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2150), - [anon_sym_auto] = ACTIONS(2150), - [anon_sym_register] = ACTIONS(2150), - [anon_sym_inline] = ACTIONS(2150), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2150), - [anon_sym_volatile] = ACTIONS(2150), - [anon_sym_restrict] = ACTIONS(2150), - [anon_sym__Atomic] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [anon_sym_out] = ACTIONS(2150), - [anon_sym_inout] = ACTIONS(2150), - [anon_sym_bycopy] = ACTIONS(2150), - [anon_sym_byref] = ACTIONS(2150), - [anon_sym_oneway] = ACTIONS(2150), - [anon_sym__Nullable] = ACTIONS(2150), - [anon_sym__Nonnull] = ACTIONS(2150), - [anon_sym__Nullable_result] = ACTIONS(2150), - [anon_sym__Null_unspecified] = ACTIONS(2150), - [anon_sym___autoreleasing] = ACTIONS(2150), - [anon_sym___nullable] = ACTIONS(2150), - [anon_sym___nonnull] = ACTIONS(2150), - [anon_sym___strong] = ACTIONS(2150), - [anon_sym___weak] = ACTIONS(2150), - [anon_sym___bridge] = ACTIONS(2150), - [anon_sym___bridge_transfer] = ACTIONS(2150), - [anon_sym___bridge_retained] = ACTIONS(2150), - [anon_sym___unsafe_unretained] = ACTIONS(2150), - [anon_sym___block] = ACTIONS(2150), - [anon_sym___kindof] = ACTIONS(2150), - [anon_sym___unused] = ACTIONS(2150), - [anon_sym__Complex] = ACTIONS(2150), - [anon_sym___complex] = ACTIONS(2150), - [anon_sym_IBOutlet] = ACTIONS(2150), - [anon_sym_IBInspectable] = ACTIONS(2150), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2150), - [anon_sym_signed] = ACTIONS(2150), - [anon_sym_unsigned] = ACTIONS(2150), - [anon_sym_long] = ACTIONS(2150), - [anon_sym_short] = ACTIONS(2150), - [sym_primitive_type] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_NS_ENUM] = ACTIONS(2150), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2150), - [anon_sym_NS_OPTIONS] = ACTIONS(2150), - [anon_sym_struct] = ACTIONS(2150), - [anon_sym_union] = ACTIONS(2150), - [anon_sym_if] = ACTIONS(2150), - [anon_sym_switch] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2150), - [anon_sym_default] = ACTIONS(2150), - [anon_sym_while] = ACTIONS(2150), - [anon_sym_do] = ACTIONS(2150), - [anon_sym_for] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(2150), - [anon_sym_break] = ACTIONS(2150), - [anon_sym_continue] = ACTIONS(2150), - [anon_sym_goto] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_sizeof] = ACTIONS(2150), - [sym_number_literal] = ACTIONS(2152), - [anon_sym_L_SQUOTE] = ACTIONS(2152), - [anon_sym_u_SQUOTE] = ACTIONS(2152), - [anon_sym_U_SQUOTE] = ACTIONS(2152), - [anon_sym_u8_SQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_L_DQUOTE] = ACTIONS(2152), - [anon_sym_u_DQUOTE] = ACTIONS(2152), - [anon_sym_U_DQUOTE] = ACTIONS(2152), - [anon_sym_u8_DQUOTE] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [sym_true] = ACTIONS(2150), - [sym_false] = ACTIONS(2150), - [sym_null] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2152), - [anon_sym_ATimport] = ACTIONS(2152), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2150), - [anon_sym_ATcompatibility_alias] = ACTIONS(2152), - [anon_sym_ATprotocol] = ACTIONS(2152), - [anon_sym_ATclass] = ACTIONS(2152), - [anon_sym_ATinterface] = ACTIONS(2152), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2150), - [sym_method_attribute_specifier] = ACTIONS(2150), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2150), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE] = ACTIONS(2150), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_API_AVAILABLE] = ACTIONS(2150), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_API_DEPRECATED] = ACTIONS(2150), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2150), - [anon_sym___deprecated_msg] = ACTIONS(2150), - [anon_sym___deprecated_enum_msg] = ACTIONS(2150), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2150), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2150), - [anon_sym_ATimplementation] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2150), - [anon_sym___typeof] = ACTIONS(2150), - [anon_sym___typeof__] = ACTIONS(2150), - [sym_self] = ACTIONS(2150), - [sym_super] = ACTIONS(2150), - [sym_nil] = ACTIONS(2150), - [sym_id] = ACTIONS(2150), - [sym_instancetype] = ACTIONS(2150), - [sym_Class] = ACTIONS(2150), - [sym_SEL] = ACTIONS(2150), - [sym_IMP] = ACTIONS(2150), - [sym_BOOL] = ACTIONS(2150), - [sym_auto] = ACTIONS(2150), - [anon_sym_ATautoreleasepool] = ACTIONS(2152), - [anon_sym_ATsynchronized] = ACTIONS(2152), - [anon_sym_ATtry] = ACTIONS(2152), - [anon_sym_ATthrow] = ACTIONS(2152), - [anon_sym_ATselector] = ACTIONS(2152), - [anon_sym_ATencode] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [sym_YES] = ACTIONS(2150), - [sym_NO] = ACTIONS(2150), - [anon_sym___builtin_available] = ACTIONS(2150), - [anon_sym_ATavailable] = ACTIONS(2152), - [anon_sym_va_arg] = ACTIONS(2150), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1162] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1163] = { - [ts_builtin_sym_end] = ACTIONS(1784), - [sym_identifier] = ACTIONS(1782), - [aux_sym_preproc_include_token1] = ACTIONS(1784), - [aux_sym_preproc_def_token1] = ACTIONS(1784), - [aux_sym_preproc_if_token1] = ACTIONS(1782), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1782), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1782), - [anon_sym_LPAREN2] = ACTIONS(1784), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_TILDE] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_CARET] = ACTIONS(1784), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_typedef] = ACTIONS(1782), - [anon_sym_extern] = ACTIONS(1782), - [anon_sym___attribute] = ACTIONS(1782), - [anon_sym___attribute__] = ACTIONS(1782), - [anon_sym___declspec] = ACTIONS(1782), - [anon_sym___cdecl] = ACTIONS(1782), - [anon_sym___clrcall] = ACTIONS(1782), - [anon_sym___stdcall] = ACTIONS(1782), - [anon_sym___fastcall] = ACTIONS(1782), - [anon_sym___thiscall] = ACTIONS(1782), - [anon_sym___vectorcall] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1784), - [anon_sym_RBRACE] = ACTIONS(1784), - [anon_sym_LBRACK] = ACTIONS(1784), - [anon_sym_static] = ACTIONS(1782), - [anon_sym_auto] = ACTIONS(1782), - [anon_sym_register] = ACTIONS(1782), - [anon_sym_inline] = ACTIONS(1782), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1782), - [anon_sym_const] = ACTIONS(1782), - [anon_sym_volatile] = ACTIONS(1782), - [anon_sym_restrict] = ACTIONS(1782), - [anon_sym__Atomic] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1782), - [anon_sym_out] = ACTIONS(1782), - [anon_sym_inout] = ACTIONS(1782), - [anon_sym_bycopy] = ACTIONS(1782), - [anon_sym_byref] = ACTIONS(1782), - [anon_sym_oneway] = ACTIONS(1782), - [anon_sym__Nullable] = ACTIONS(1782), - [anon_sym__Nonnull] = ACTIONS(1782), - [anon_sym__Nullable_result] = ACTIONS(1782), - [anon_sym__Null_unspecified] = ACTIONS(1782), - [anon_sym___autoreleasing] = ACTIONS(1782), - [anon_sym___nullable] = ACTIONS(1782), - [anon_sym___nonnull] = ACTIONS(1782), - [anon_sym___strong] = ACTIONS(1782), - [anon_sym___weak] = ACTIONS(1782), - [anon_sym___bridge] = ACTIONS(1782), - [anon_sym___bridge_transfer] = ACTIONS(1782), - [anon_sym___bridge_retained] = ACTIONS(1782), - [anon_sym___unsafe_unretained] = ACTIONS(1782), - [anon_sym___block] = ACTIONS(1782), - [anon_sym___kindof] = ACTIONS(1782), - [anon_sym___unused] = ACTIONS(1782), - [anon_sym__Complex] = ACTIONS(1782), - [anon_sym___complex] = ACTIONS(1782), - [anon_sym_IBOutlet] = ACTIONS(1782), - [anon_sym_IBInspectable] = ACTIONS(1782), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1782), - [anon_sym_signed] = ACTIONS(1782), - [anon_sym_unsigned] = ACTIONS(1782), - [anon_sym_long] = ACTIONS(1782), - [anon_sym_short] = ACTIONS(1782), - [sym_primitive_type] = ACTIONS(1782), - [anon_sym_enum] = ACTIONS(1782), - [anon_sym_NS_ENUM] = ACTIONS(1782), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1782), - [anon_sym_NS_OPTIONS] = ACTIONS(1782), - [anon_sym_struct] = ACTIONS(1782), - [anon_sym_union] = ACTIONS(1782), - [anon_sym_if] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1782), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1782), - [anon_sym_while] = ACTIONS(1782), - [anon_sym_do] = ACTIONS(1782), - [anon_sym_for] = ACTIONS(1782), - [anon_sym_return] = ACTIONS(1782), - [anon_sym_break] = ACTIONS(1782), - [anon_sym_continue] = ACTIONS(1782), - [anon_sym_goto] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1784), - [anon_sym_PLUS_PLUS] = ACTIONS(1784), - [anon_sym_sizeof] = ACTIONS(1782), - [sym_number_literal] = ACTIONS(1784), - [anon_sym_L_SQUOTE] = ACTIONS(1784), - [anon_sym_u_SQUOTE] = ACTIONS(1784), - [anon_sym_U_SQUOTE] = ACTIONS(1784), - [anon_sym_u8_SQUOTE] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1784), - [anon_sym_L_DQUOTE] = ACTIONS(1784), - [anon_sym_u_DQUOTE] = ACTIONS(1784), - [anon_sym_U_DQUOTE] = ACTIONS(1784), - [anon_sym_u8_DQUOTE] = ACTIONS(1784), - [anon_sym_DQUOTE] = ACTIONS(1784), - [sym_true] = ACTIONS(1782), - [sym_false] = ACTIONS(1782), - [sym_null] = ACTIONS(1782), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1784), - [anon_sym_ATimport] = ACTIONS(1784), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1782), - [anon_sym_ATcompatibility_alias] = ACTIONS(1784), - [anon_sym_ATprotocol] = ACTIONS(1784), - [anon_sym_ATclass] = ACTIONS(1784), - [anon_sym_ATinterface] = ACTIONS(1784), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1782), - [sym_method_attribute_specifier] = ACTIONS(1782), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1782), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1782), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1782), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1782), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1782), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1782), - [anon_sym_NS_AVAILABLE] = ACTIONS(1782), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1782), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1782), - [anon_sym_API_AVAILABLE] = ACTIONS(1782), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1782), - [anon_sym_API_DEPRECATED] = ACTIONS(1782), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1782), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1782), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1782), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1782), - [anon_sym___deprecated_msg] = ACTIONS(1782), - [anon_sym___deprecated_enum_msg] = ACTIONS(1782), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1782), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1782), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1782), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1782), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1782), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1782), - [anon_sym_ATimplementation] = ACTIONS(1784), - [anon_sym_typeof] = ACTIONS(1782), - [anon_sym___typeof] = ACTIONS(1782), - [anon_sym___typeof__] = ACTIONS(1782), - [sym_self] = ACTIONS(1782), - [sym_super] = ACTIONS(1782), - [sym_nil] = ACTIONS(1782), - [sym_id] = ACTIONS(1782), - [sym_instancetype] = ACTIONS(1782), - [sym_Class] = ACTIONS(1782), - [sym_SEL] = ACTIONS(1782), - [sym_IMP] = ACTIONS(1782), - [sym_BOOL] = ACTIONS(1782), - [sym_auto] = ACTIONS(1782), - [anon_sym_ATautoreleasepool] = ACTIONS(1784), - [anon_sym_ATsynchronized] = ACTIONS(1784), - [anon_sym_ATtry] = ACTIONS(1784), - [anon_sym_ATthrow] = ACTIONS(1784), - [anon_sym_ATselector] = ACTIONS(1784), - [anon_sym_ATencode] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(1782), - [sym_YES] = ACTIONS(1782), - [sym_NO] = ACTIONS(1782), - [anon_sym___builtin_available] = ACTIONS(1782), - [anon_sym_ATavailable] = ACTIONS(1784), - [anon_sym_va_arg] = ACTIONS(1782), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1164] = { - [ts_builtin_sym_end] = ACTIONS(2152), - [sym_identifier] = ACTIONS(2150), - [aux_sym_preproc_include_token1] = ACTIONS(2152), - [aux_sym_preproc_def_token1] = ACTIONS(2152), - [aux_sym_preproc_if_token1] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_PLUS] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_typedef] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2150), - [anon_sym___attribute] = ACTIONS(2150), - [anon_sym___attribute__] = ACTIONS(2150), - [anon_sym___declspec] = ACTIONS(2150), - [anon_sym___cdecl] = ACTIONS(2150), - [anon_sym___clrcall] = ACTIONS(2150), - [anon_sym___stdcall] = ACTIONS(2150), - [anon_sym___fastcall] = ACTIONS(2150), - [anon_sym___thiscall] = ACTIONS(2150), - [anon_sym___vectorcall] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2150), - [anon_sym_auto] = ACTIONS(2150), - [anon_sym_register] = ACTIONS(2150), - [anon_sym_inline] = ACTIONS(2150), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2150), - [anon_sym_volatile] = ACTIONS(2150), - [anon_sym_restrict] = ACTIONS(2150), - [anon_sym__Atomic] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [anon_sym_out] = ACTIONS(2150), - [anon_sym_inout] = ACTIONS(2150), - [anon_sym_bycopy] = ACTIONS(2150), - [anon_sym_byref] = ACTIONS(2150), - [anon_sym_oneway] = ACTIONS(2150), - [anon_sym__Nullable] = ACTIONS(2150), - [anon_sym__Nonnull] = ACTIONS(2150), - [anon_sym__Nullable_result] = ACTIONS(2150), - [anon_sym__Null_unspecified] = ACTIONS(2150), - [anon_sym___autoreleasing] = ACTIONS(2150), - [anon_sym___nullable] = ACTIONS(2150), - [anon_sym___nonnull] = ACTIONS(2150), - [anon_sym___strong] = ACTIONS(2150), - [anon_sym___weak] = ACTIONS(2150), - [anon_sym___bridge] = ACTIONS(2150), - [anon_sym___bridge_transfer] = ACTIONS(2150), - [anon_sym___bridge_retained] = ACTIONS(2150), - [anon_sym___unsafe_unretained] = ACTIONS(2150), - [anon_sym___block] = ACTIONS(2150), - [anon_sym___kindof] = ACTIONS(2150), - [anon_sym___unused] = ACTIONS(2150), - [anon_sym__Complex] = ACTIONS(2150), - [anon_sym___complex] = ACTIONS(2150), - [anon_sym_IBOutlet] = ACTIONS(2150), - [anon_sym_IBInspectable] = ACTIONS(2150), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2150), - [anon_sym_signed] = ACTIONS(2150), - [anon_sym_unsigned] = ACTIONS(2150), - [anon_sym_long] = ACTIONS(2150), - [anon_sym_short] = ACTIONS(2150), - [sym_primitive_type] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_NS_ENUM] = ACTIONS(2150), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2150), - [anon_sym_NS_OPTIONS] = ACTIONS(2150), - [anon_sym_struct] = ACTIONS(2150), - [anon_sym_union] = ACTIONS(2150), - [anon_sym_if] = ACTIONS(2150), - [anon_sym_switch] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2150), - [anon_sym_default] = ACTIONS(2150), - [anon_sym_while] = ACTIONS(2150), - [anon_sym_do] = ACTIONS(2150), - [anon_sym_for] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(2150), - [anon_sym_break] = ACTIONS(2150), - [anon_sym_continue] = ACTIONS(2150), - [anon_sym_goto] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_sizeof] = ACTIONS(2150), - [sym_number_literal] = ACTIONS(2152), - [anon_sym_L_SQUOTE] = ACTIONS(2152), - [anon_sym_u_SQUOTE] = ACTIONS(2152), - [anon_sym_U_SQUOTE] = ACTIONS(2152), - [anon_sym_u8_SQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_L_DQUOTE] = ACTIONS(2152), - [anon_sym_u_DQUOTE] = ACTIONS(2152), - [anon_sym_U_DQUOTE] = ACTIONS(2152), - [anon_sym_u8_DQUOTE] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [sym_true] = ACTIONS(2150), - [sym_false] = ACTIONS(2150), - [sym_null] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2152), - [anon_sym_ATimport] = ACTIONS(2152), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2150), - [anon_sym_ATcompatibility_alias] = ACTIONS(2152), - [anon_sym_ATprotocol] = ACTIONS(2152), - [anon_sym_ATclass] = ACTIONS(2152), - [anon_sym_ATinterface] = ACTIONS(2152), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2150), - [sym_method_attribute_specifier] = ACTIONS(2150), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2150), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE] = ACTIONS(2150), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_API_AVAILABLE] = ACTIONS(2150), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_API_DEPRECATED] = ACTIONS(2150), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2150), - [anon_sym___deprecated_msg] = ACTIONS(2150), - [anon_sym___deprecated_enum_msg] = ACTIONS(2150), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2150), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2150), - [anon_sym_ATimplementation] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2150), - [anon_sym___typeof] = ACTIONS(2150), - [anon_sym___typeof__] = ACTIONS(2150), - [sym_self] = ACTIONS(2150), - [sym_super] = ACTIONS(2150), - [sym_nil] = ACTIONS(2150), - [sym_id] = ACTIONS(2150), - [sym_instancetype] = ACTIONS(2150), - [sym_Class] = ACTIONS(2150), - [sym_SEL] = ACTIONS(2150), - [sym_IMP] = ACTIONS(2150), - [sym_BOOL] = ACTIONS(2150), - [sym_auto] = ACTIONS(2150), - [anon_sym_ATautoreleasepool] = ACTIONS(2152), - [anon_sym_ATsynchronized] = ACTIONS(2152), - [anon_sym_ATtry] = ACTIONS(2152), - [anon_sym_ATthrow] = ACTIONS(2152), - [anon_sym_ATselector] = ACTIONS(2152), - [anon_sym_ATencode] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [sym_YES] = ACTIONS(2150), - [sym_NO] = ACTIONS(2150), - [anon_sym___builtin_available] = ACTIONS(2150), - [anon_sym_ATavailable] = ACTIONS(2152), - [anon_sym_va_arg] = ACTIONS(2150), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1165] = { - [ts_builtin_sym_end] = ACTIONS(1788), - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1166] = { - [ts_builtin_sym_end] = ACTIONS(1788), - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1167] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1168] = { - [ts_builtin_sym_end] = ACTIONS(2152), - [sym_identifier] = ACTIONS(2150), - [aux_sym_preproc_include_token1] = ACTIONS(2152), - [aux_sym_preproc_def_token1] = ACTIONS(2152), - [aux_sym_preproc_if_token1] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_PLUS] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_typedef] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2150), - [anon_sym___attribute] = ACTIONS(2150), - [anon_sym___attribute__] = ACTIONS(2150), - [anon_sym___declspec] = ACTIONS(2150), - [anon_sym___cdecl] = ACTIONS(2150), - [anon_sym___clrcall] = ACTIONS(2150), - [anon_sym___stdcall] = ACTIONS(2150), - [anon_sym___fastcall] = ACTIONS(2150), - [anon_sym___thiscall] = ACTIONS(2150), - [anon_sym___vectorcall] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2150), - [anon_sym_auto] = ACTIONS(2150), - [anon_sym_register] = ACTIONS(2150), - [anon_sym_inline] = ACTIONS(2150), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2150), - [anon_sym_volatile] = ACTIONS(2150), - [anon_sym_restrict] = ACTIONS(2150), - [anon_sym__Atomic] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [anon_sym_out] = ACTIONS(2150), - [anon_sym_inout] = ACTIONS(2150), - [anon_sym_bycopy] = ACTIONS(2150), - [anon_sym_byref] = ACTIONS(2150), - [anon_sym_oneway] = ACTIONS(2150), - [anon_sym__Nullable] = ACTIONS(2150), - [anon_sym__Nonnull] = ACTIONS(2150), - [anon_sym__Nullable_result] = ACTIONS(2150), - [anon_sym__Null_unspecified] = ACTIONS(2150), - [anon_sym___autoreleasing] = ACTIONS(2150), - [anon_sym___nullable] = ACTIONS(2150), - [anon_sym___nonnull] = ACTIONS(2150), - [anon_sym___strong] = ACTIONS(2150), - [anon_sym___weak] = ACTIONS(2150), - [anon_sym___bridge] = ACTIONS(2150), - [anon_sym___bridge_transfer] = ACTIONS(2150), - [anon_sym___bridge_retained] = ACTIONS(2150), - [anon_sym___unsafe_unretained] = ACTIONS(2150), - [anon_sym___block] = ACTIONS(2150), - [anon_sym___kindof] = ACTIONS(2150), - [anon_sym___unused] = ACTIONS(2150), - [anon_sym__Complex] = ACTIONS(2150), - [anon_sym___complex] = ACTIONS(2150), - [anon_sym_IBOutlet] = ACTIONS(2150), - [anon_sym_IBInspectable] = ACTIONS(2150), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2150), - [anon_sym_signed] = ACTIONS(2150), - [anon_sym_unsigned] = ACTIONS(2150), - [anon_sym_long] = ACTIONS(2150), - [anon_sym_short] = ACTIONS(2150), - [sym_primitive_type] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_NS_ENUM] = ACTIONS(2150), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2150), - [anon_sym_NS_OPTIONS] = ACTIONS(2150), - [anon_sym_struct] = ACTIONS(2150), - [anon_sym_union] = ACTIONS(2150), - [anon_sym_if] = ACTIONS(2150), - [anon_sym_switch] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2150), - [anon_sym_default] = ACTIONS(2150), - [anon_sym_while] = ACTIONS(2150), - [anon_sym_do] = ACTIONS(2150), - [anon_sym_for] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(2150), - [anon_sym_break] = ACTIONS(2150), - [anon_sym_continue] = ACTIONS(2150), - [anon_sym_goto] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_sizeof] = ACTIONS(2150), - [sym_number_literal] = ACTIONS(2152), - [anon_sym_L_SQUOTE] = ACTIONS(2152), - [anon_sym_u_SQUOTE] = ACTIONS(2152), - [anon_sym_U_SQUOTE] = ACTIONS(2152), - [anon_sym_u8_SQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_L_DQUOTE] = ACTIONS(2152), - [anon_sym_u_DQUOTE] = ACTIONS(2152), - [anon_sym_U_DQUOTE] = ACTIONS(2152), - [anon_sym_u8_DQUOTE] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [sym_true] = ACTIONS(2150), - [sym_false] = ACTIONS(2150), - [sym_null] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2152), - [anon_sym_ATimport] = ACTIONS(2152), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2150), - [anon_sym_ATcompatibility_alias] = ACTIONS(2152), - [anon_sym_ATprotocol] = ACTIONS(2152), - [anon_sym_ATclass] = ACTIONS(2152), - [anon_sym_ATinterface] = ACTIONS(2152), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2150), - [sym_method_attribute_specifier] = ACTIONS(2150), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2150), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE] = ACTIONS(2150), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_API_AVAILABLE] = ACTIONS(2150), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_API_DEPRECATED] = ACTIONS(2150), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2150), - [anon_sym___deprecated_msg] = ACTIONS(2150), - [anon_sym___deprecated_enum_msg] = ACTIONS(2150), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2150), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2150), - [anon_sym_ATimplementation] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2150), - [anon_sym___typeof] = ACTIONS(2150), - [anon_sym___typeof__] = ACTIONS(2150), - [sym_self] = ACTIONS(2150), - [sym_super] = ACTIONS(2150), - [sym_nil] = ACTIONS(2150), - [sym_id] = ACTIONS(2150), - [sym_instancetype] = ACTIONS(2150), - [sym_Class] = ACTIONS(2150), - [sym_SEL] = ACTIONS(2150), - [sym_IMP] = ACTIONS(2150), - [sym_BOOL] = ACTIONS(2150), - [sym_auto] = ACTIONS(2150), - [anon_sym_ATautoreleasepool] = ACTIONS(2152), - [anon_sym_ATsynchronized] = ACTIONS(2152), - [anon_sym_ATtry] = ACTIONS(2152), - [anon_sym_ATthrow] = ACTIONS(2152), - [anon_sym_ATselector] = ACTIONS(2152), - [anon_sym_ATencode] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [sym_YES] = ACTIONS(2150), - [sym_NO] = ACTIONS(2150), - [anon_sym___builtin_available] = ACTIONS(2150), - [anon_sym_ATavailable] = ACTIONS(2152), - [anon_sym_va_arg] = ACTIONS(2150), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1169] = { - [ts_builtin_sym_end] = ACTIONS(1788), - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1170] = { - [ts_builtin_sym_end] = ACTIONS(2152), - [sym_identifier] = ACTIONS(2150), - [aux_sym_preproc_include_token1] = ACTIONS(2152), - [aux_sym_preproc_def_token1] = ACTIONS(2152), - [aux_sym_preproc_if_token1] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_PLUS] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_typedef] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2150), - [anon_sym___attribute] = ACTIONS(2150), - [anon_sym___attribute__] = ACTIONS(2150), - [anon_sym___declspec] = ACTIONS(2150), - [anon_sym___cdecl] = ACTIONS(2150), - [anon_sym___clrcall] = ACTIONS(2150), - [anon_sym___stdcall] = ACTIONS(2150), - [anon_sym___fastcall] = ACTIONS(2150), - [anon_sym___thiscall] = ACTIONS(2150), - [anon_sym___vectorcall] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2150), - [anon_sym_auto] = ACTIONS(2150), - [anon_sym_register] = ACTIONS(2150), - [anon_sym_inline] = ACTIONS(2150), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2150), - [anon_sym_volatile] = ACTIONS(2150), - [anon_sym_restrict] = ACTIONS(2150), - [anon_sym__Atomic] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [anon_sym_out] = ACTIONS(2150), - [anon_sym_inout] = ACTIONS(2150), - [anon_sym_bycopy] = ACTIONS(2150), - [anon_sym_byref] = ACTIONS(2150), - [anon_sym_oneway] = ACTIONS(2150), - [anon_sym__Nullable] = ACTIONS(2150), - [anon_sym__Nonnull] = ACTIONS(2150), - [anon_sym__Nullable_result] = ACTIONS(2150), - [anon_sym__Null_unspecified] = ACTIONS(2150), - [anon_sym___autoreleasing] = ACTIONS(2150), - [anon_sym___nullable] = ACTIONS(2150), - [anon_sym___nonnull] = ACTIONS(2150), - [anon_sym___strong] = ACTIONS(2150), - [anon_sym___weak] = ACTIONS(2150), - [anon_sym___bridge] = ACTIONS(2150), - [anon_sym___bridge_transfer] = ACTIONS(2150), - [anon_sym___bridge_retained] = ACTIONS(2150), - [anon_sym___unsafe_unretained] = ACTIONS(2150), - [anon_sym___block] = ACTIONS(2150), - [anon_sym___kindof] = ACTIONS(2150), - [anon_sym___unused] = ACTIONS(2150), - [anon_sym__Complex] = ACTIONS(2150), - [anon_sym___complex] = ACTIONS(2150), - [anon_sym_IBOutlet] = ACTIONS(2150), - [anon_sym_IBInspectable] = ACTIONS(2150), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2150), - [anon_sym_signed] = ACTIONS(2150), - [anon_sym_unsigned] = ACTIONS(2150), - [anon_sym_long] = ACTIONS(2150), - [anon_sym_short] = ACTIONS(2150), - [sym_primitive_type] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_NS_ENUM] = ACTIONS(2150), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2150), - [anon_sym_NS_OPTIONS] = ACTIONS(2150), - [anon_sym_struct] = ACTIONS(2150), - [anon_sym_union] = ACTIONS(2150), - [anon_sym_if] = ACTIONS(2150), - [anon_sym_switch] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2150), - [anon_sym_default] = ACTIONS(2150), - [anon_sym_while] = ACTIONS(2150), - [anon_sym_do] = ACTIONS(2150), - [anon_sym_for] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(2150), - [anon_sym_break] = ACTIONS(2150), - [anon_sym_continue] = ACTIONS(2150), - [anon_sym_goto] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_sizeof] = ACTIONS(2150), - [sym_number_literal] = ACTIONS(2152), - [anon_sym_L_SQUOTE] = ACTIONS(2152), - [anon_sym_u_SQUOTE] = ACTIONS(2152), - [anon_sym_U_SQUOTE] = ACTIONS(2152), - [anon_sym_u8_SQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_L_DQUOTE] = ACTIONS(2152), - [anon_sym_u_DQUOTE] = ACTIONS(2152), - [anon_sym_U_DQUOTE] = ACTIONS(2152), - [anon_sym_u8_DQUOTE] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [sym_true] = ACTIONS(2150), - [sym_false] = ACTIONS(2150), - [sym_null] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2152), - [anon_sym_ATimport] = ACTIONS(2152), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2150), - [anon_sym_ATcompatibility_alias] = ACTIONS(2152), - [anon_sym_ATprotocol] = ACTIONS(2152), - [anon_sym_ATclass] = ACTIONS(2152), - [anon_sym_ATinterface] = ACTIONS(2152), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2150), - [sym_method_attribute_specifier] = ACTIONS(2150), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2150), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE] = ACTIONS(2150), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_API_AVAILABLE] = ACTIONS(2150), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_API_DEPRECATED] = ACTIONS(2150), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2150), - [anon_sym___deprecated_msg] = ACTIONS(2150), - [anon_sym___deprecated_enum_msg] = ACTIONS(2150), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2150), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2150), - [anon_sym_ATimplementation] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2150), - [anon_sym___typeof] = ACTIONS(2150), - [anon_sym___typeof__] = ACTIONS(2150), - [sym_self] = ACTIONS(2150), - [sym_super] = ACTIONS(2150), - [sym_nil] = ACTIONS(2150), - [sym_id] = ACTIONS(2150), - [sym_instancetype] = ACTIONS(2150), - [sym_Class] = ACTIONS(2150), - [sym_SEL] = ACTIONS(2150), - [sym_IMP] = ACTIONS(2150), - [sym_BOOL] = ACTIONS(2150), - [sym_auto] = ACTIONS(2150), - [anon_sym_ATautoreleasepool] = ACTIONS(2152), - [anon_sym_ATsynchronized] = ACTIONS(2152), - [anon_sym_ATtry] = ACTIONS(2152), - [anon_sym_ATthrow] = ACTIONS(2152), - [anon_sym_ATselector] = ACTIONS(2152), - [anon_sym_ATencode] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [sym_YES] = ACTIONS(2150), - [sym_NO] = ACTIONS(2150), - [anon_sym___builtin_available] = ACTIONS(2150), - [anon_sym_ATavailable] = ACTIONS(2152), - [anon_sym_va_arg] = ACTIONS(2150), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1171] = { - [ts_builtin_sym_end] = ACTIONS(1788), - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1172] = { - [ts_builtin_sym_end] = ACTIONS(1788), - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1173] = { - [ts_builtin_sym_end] = ACTIONS(1864), - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1174] = { - [ts_builtin_sym_end] = ACTIONS(1896), - [sym_identifier] = ACTIONS(1894), - [aux_sym_preproc_include_token1] = ACTIONS(1896), - [aux_sym_preproc_def_token1] = ACTIONS(1896), - [aux_sym_preproc_if_token1] = ACTIONS(1894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1894), - [anon_sym_LPAREN2] = ACTIONS(1896), - [anon_sym_BANG] = ACTIONS(1896), - [anon_sym_TILDE] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_CARET] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_typedef] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1894), - [anon_sym___attribute] = ACTIONS(1894), - [anon_sym___attribute__] = ACTIONS(1894), - [anon_sym___declspec] = ACTIONS(1894), - [anon_sym___cdecl] = ACTIONS(1894), - [anon_sym___clrcall] = ACTIONS(1894), - [anon_sym___stdcall] = ACTIONS(1894), - [anon_sym___fastcall] = ACTIONS(1894), - [anon_sym___thiscall] = ACTIONS(1894), - [anon_sym___vectorcall] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1896), - [anon_sym_RBRACE] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_static] = ACTIONS(1894), - [anon_sym_auto] = ACTIONS(1894), - [anon_sym_register] = ACTIONS(1894), - [anon_sym_inline] = ACTIONS(1894), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1894), - [anon_sym_volatile] = ACTIONS(1894), - [anon_sym_restrict] = ACTIONS(1894), - [anon_sym__Atomic] = ACTIONS(1894), - [anon_sym_in] = ACTIONS(1894), - [anon_sym_out] = ACTIONS(1894), - [anon_sym_inout] = ACTIONS(1894), - [anon_sym_bycopy] = ACTIONS(1894), - [anon_sym_byref] = ACTIONS(1894), - [anon_sym_oneway] = ACTIONS(1894), - [anon_sym__Nullable] = ACTIONS(1894), - [anon_sym__Nonnull] = ACTIONS(1894), - [anon_sym__Nullable_result] = ACTIONS(1894), - [anon_sym__Null_unspecified] = ACTIONS(1894), - [anon_sym___autoreleasing] = ACTIONS(1894), - [anon_sym___nullable] = ACTIONS(1894), - [anon_sym___nonnull] = ACTIONS(1894), - [anon_sym___strong] = ACTIONS(1894), - [anon_sym___weak] = ACTIONS(1894), - [anon_sym___bridge] = ACTIONS(1894), - [anon_sym___bridge_transfer] = ACTIONS(1894), - [anon_sym___bridge_retained] = ACTIONS(1894), - [anon_sym___unsafe_unretained] = ACTIONS(1894), - [anon_sym___block] = ACTIONS(1894), - [anon_sym___kindof] = ACTIONS(1894), - [anon_sym___unused] = ACTIONS(1894), - [anon_sym__Complex] = ACTIONS(1894), - [anon_sym___complex] = ACTIONS(1894), - [anon_sym_IBOutlet] = ACTIONS(1894), - [anon_sym_IBInspectable] = ACTIONS(1894), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1894), - [anon_sym_signed] = ACTIONS(1894), - [anon_sym_unsigned] = ACTIONS(1894), - [anon_sym_long] = ACTIONS(1894), - [anon_sym_short] = ACTIONS(1894), - [sym_primitive_type] = ACTIONS(1894), - [anon_sym_enum] = ACTIONS(1894), - [anon_sym_NS_ENUM] = ACTIONS(1894), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1894), - [anon_sym_NS_OPTIONS] = ACTIONS(1894), - [anon_sym_struct] = ACTIONS(1894), - [anon_sym_union] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_switch] = ACTIONS(1894), - [anon_sym_case] = ACTIONS(1894), - [anon_sym_default] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1894), - [anon_sym_continue] = ACTIONS(1894), - [anon_sym_goto] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1896), - [anon_sym_PLUS_PLUS] = ACTIONS(1896), - [anon_sym_sizeof] = ACTIONS(1894), - [sym_number_literal] = ACTIONS(1896), - [anon_sym_L_SQUOTE] = ACTIONS(1896), - [anon_sym_u_SQUOTE] = ACTIONS(1896), - [anon_sym_U_SQUOTE] = ACTIONS(1896), - [anon_sym_u8_SQUOTE] = ACTIONS(1896), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_L_DQUOTE] = ACTIONS(1896), - [anon_sym_u_DQUOTE] = ACTIONS(1896), - [anon_sym_U_DQUOTE] = ACTIONS(1896), - [anon_sym_u8_DQUOTE] = ACTIONS(1896), - [anon_sym_DQUOTE] = ACTIONS(1896), - [sym_true] = ACTIONS(1894), - [sym_false] = ACTIONS(1894), - [sym_null] = ACTIONS(1894), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1896), - [anon_sym_ATimport] = ACTIONS(1896), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1894), - [anon_sym_ATcompatibility_alias] = ACTIONS(1896), - [anon_sym_ATprotocol] = ACTIONS(1896), - [anon_sym_ATclass] = ACTIONS(1896), - [anon_sym_ATinterface] = ACTIONS(1896), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1894), - [sym_method_attribute_specifier] = ACTIONS(1894), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1894), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1894), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1894), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1894), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1894), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1894), - [anon_sym_NS_AVAILABLE] = ACTIONS(1894), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1894), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1894), - [anon_sym_API_AVAILABLE] = ACTIONS(1894), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1894), - [anon_sym_API_DEPRECATED] = ACTIONS(1894), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1894), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1894), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1894), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1894), - [anon_sym___deprecated_msg] = ACTIONS(1894), - [anon_sym___deprecated_enum_msg] = ACTIONS(1894), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1894), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1894), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1894), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1894), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1894), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1894), - [anon_sym_ATimplementation] = ACTIONS(1896), - [anon_sym_typeof] = ACTIONS(1894), - [anon_sym___typeof] = ACTIONS(1894), - [anon_sym___typeof__] = ACTIONS(1894), - [sym_self] = ACTIONS(1894), - [sym_super] = ACTIONS(1894), - [sym_nil] = ACTIONS(1894), - [sym_id] = ACTIONS(1894), - [sym_instancetype] = ACTIONS(1894), - [sym_Class] = ACTIONS(1894), - [sym_SEL] = ACTIONS(1894), - [sym_IMP] = ACTIONS(1894), - [sym_BOOL] = ACTIONS(1894), - [sym_auto] = ACTIONS(1894), - [anon_sym_ATautoreleasepool] = ACTIONS(1896), - [anon_sym_ATsynchronized] = ACTIONS(1896), - [anon_sym_ATtry] = ACTIONS(1896), - [anon_sym_ATthrow] = ACTIONS(1896), - [anon_sym_ATselector] = ACTIONS(1896), - [anon_sym_ATencode] = ACTIONS(1896), - [anon_sym_AT] = ACTIONS(1894), - [sym_YES] = ACTIONS(1894), - [sym_NO] = ACTIONS(1894), - [anon_sym___builtin_available] = ACTIONS(1894), - [anon_sym_ATavailable] = ACTIONS(1896), - [anon_sym_va_arg] = ACTIONS(1894), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1175] = { - [ts_builtin_sym_end] = ACTIONS(1788), - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1176] = { - [ts_builtin_sym_end] = ACTIONS(1788), - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1177] = { - [ts_builtin_sym_end] = ACTIONS(1864), - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1178] = { - [ts_builtin_sym_end] = ACTIONS(1864), - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1179] = { - [ts_builtin_sym_end] = ACTIONS(1788), - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1180] = { - [ts_builtin_sym_end] = ACTIONS(1788), - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1181] = { - [ts_builtin_sym_end] = ACTIONS(1864), - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1182] = { - [ts_builtin_sym_end] = ACTIONS(1788), - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1183] = { - [ts_builtin_sym_end] = ACTIONS(1788), - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1184] = { - [ts_builtin_sym_end] = ACTIONS(1788), - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1185] = { - [ts_builtin_sym_end] = ACTIONS(1980), - [sym_identifier] = ACTIONS(1978), - [aux_sym_preproc_include_token1] = ACTIONS(1980), - [aux_sym_preproc_def_token1] = ACTIONS(1980), - [aux_sym_preproc_if_token1] = ACTIONS(1978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1978), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1978), - [anon_sym_LPAREN2] = ACTIONS(1980), - [anon_sym_BANG] = ACTIONS(1980), - [anon_sym_TILDE] = ACTIONS(1980), - [anon_sym_DASH] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(1978), - [anon_sym_STAR] = ACTIONS(1980), - [anon_sym_CARET] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_typedef] = ACTIONS(1978), - [anon_sym_extern] = ACTIONS(1978), - [anon_sym___attribute] = ACTIONS(1978), - [anon_sym___attribute__] = ACTIONS(1978), - [anon_sym___declspec] = ACTIONS(1978), - [anon_sym___cdecl] = ACTIONS(1978), - [anon_sym___clrcall] = ACTIONS(1978), - [anon_sym___stdcall] = ACTIONS(1978), - [anon_sym___fastcall] = ACTIONS(1978), - [anon_sym___thiscall] = ACTIONS(1978), - [anon_sym___vectorcall] = ACTIONS(1978), - [anon_sym_LBRACE] = ACTIONS(1980), - [anon_sym_RBRACE] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1980), - [anon_sym_static] = ACTIONS(1978), - [anon_sym_auto] = ACTIONS(1978), - [anon_sym_register] = ACTIONS(1978), - [anon_sym_inline] = ACTIONS(1978), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1978), - [anon_sym_const] = ACTIONS(1978), - [anon_sym_volatile] = ACTIONS(1978), - [anon_sym_restrict] = ACTIONS(1978), - [anon_sym__Atomic] = ACTIONS(1978), - [anon_sym_in] = ACTIONS(1978), - [anon_sym_out] = ACTIONS(1978), - [anon_sym_inout] = ACTIONS(1978), - [anon_sym_bycopy] = ACTIONS(1978), - [anon_sym_byref] = ACTIONS(1978), - [anon_sym_oneway] = ACTIONS(1978), - [anon_sym__Nullable] = ACTIONS(1978), - [anon_sym__Nonnull] = ACTIONS(1978), - [anon_sym__Nullable_result] = ACTIONS(1978), - [anon_sym__Null_unspecified] = ACTIONS(1978), - [anon_sym___autoreleasing] = ACTIONS(1978), - [anon_sym___nullable] = ACTIONS(1978), - [anon_sym___nonnull] = ACTIONS(1978), - [anon_sym___strong] = ACTIONS(1978), - [anon_sym___weak] = ACTIONS(1978), - [anon_sym___bridge] = ACTIONS(1978), - [anon_sym___bridge_transfer] = ACTIONS(1978), - [anon_sym___bridge_retained] = ACTIONS(1978), - [anon_sym___unsafe_unretained] = ACTIONS(1978), - [anon_sym___block] = ACTIONS(1978), - [anon_sym___kindof] = ACTIONS(1978), - [anon_sym___unused] = ACTIONS(1978), - [anon_sym__Complex] = ACTIONS(1978), - [anon_sym___complex] = ACTIONS(1978), - [anon_sym_IBOutlet] = ACTIONS(1978), - [anon_sym_IBInspectable] = ACTIONS(1978), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1978), - [anon_sym_signed] = ACTIONS(1978), - [anon_sym_unsigned] = ACTIONS(1978), - [anon_sym_long] = ACTIONS(1978), - [anon_sym_short] = ACTIONS(1978), - [sym_primitive_type] = ACTIONS(1978), - [anon_sym_enum] = ACTIONS(1978), - [anon_sym_NS_ENUM] = ACTIONS(1978), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1978), - [anon_sym_NS_OPTIONS] = ACTIONS(1978), - [anon_sym_struct] = ACTIONS(1978), - [anon_sym_union] = ACTIONS(1978), - [anon_sym_if] = ACTIONS(1978), - [anon_sym_switch] = ACTIONS(1978), - [anon_sym_case] = ACTIONS(1978), - [anon_sym_default] = ACTIONS(1978), - [anon_sym_while] = ACTIONS(1978), - [anon_sym_do] = ACTIONS(1978), - [anon_sym_for] = ACTIONS(1978), - [anon_sym_return] = ACTIONS(1978), - [anon_sym_break] = ACTIONS(1978), - [anon_sym_continue] = ACTIONS(1978), - [anon_sym_goto] = ACTIONS(1978), - [anon_sym_DASH_DASH] = ACTIONS(1980), - [anon_sym_PLUS_PLUS] = ACTIONS(1980), - [anon_sym_sizeof] = ACTIONS(1978), - [sym_number_literal] = ACTIONS(1980), - [anon_sym_L_SQUOTE] = ACTIONS(1980), - [anon_sym_u_SQUOTE] = ACTIONS(1980), - [anon_sym_U_SQUOTE] = ACTIONS(1980), - [anon_sym_u8_SQUOTE] = ACTIONS(1980), - [anon_sym_SQUOTE] = ACTIONS(1980), - [anon_sym_L_DQUOTE] = ACTIONS(1980), - [anon_sym_u_DQUOTE] = ACTIONS(1980), - [anon_sym_U_DQUOTE] = ACTIONS(1980), - [anon_sym_u8_DQUOTE] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(1980), - [sym_true] = ACTIONS(1978), - [sym_false] = ACTIONS(1978), - [sym_null] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1980), - [anon_sym_ATimport] = ACTIONS(1980), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1978), - [anon_sym_ATcompatibility_alias] = ACTIONS(1980), - [anon_sym_ATprotocol] = ACTIONS(1980), - [anon_sym_ATclass] = ACTIONS(1980), - [anon_sym_ATinterface] = ACTIONS(1980), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1978), - [sym_method_attribute_specifier] = ACTIONS(1978), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1978), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1978), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1978), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1978), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1978), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1978), - [anon_sym_NS_AVAILABLE] = ACTIONS(1978), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1978), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1978), - [anon_sym_API_AVAILABLE] = ACTIONS(1978), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1978), - [anon_sym_API_DEPRECATED] = ACTIONS(1978), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1978), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1978), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1978), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1978), - [anon_sym___deprecated_msg] = ACTIONS(1978), - [anon_sym___deprecated_enum_msg] = ACTIONS(1978), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1978), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1978), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1978), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1978), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1978), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1978), - [anon_sym_ATimplementation] = ACTIONS(1980), - [anon_sym_typeof] = ACTIONS(1978), - [anon_sym___typeof] = ACTIONS(1978), - [anon_sym___typeof__] = ACTIONS(1978), - [sym_self] = ACTIONS(1978), - [sym_super] = ACTIONS(1978), - [sym_nil] = ACTIONS(1978), - [sym_id] = ACTIONS(1978), - [sym_instancetype] = ACTIONS(1978), - [sym_Class] = ACTIONS(1978), - [sym_SEL] = ACTIONS(1978), - [sym_IMP] = ACTIONS(1978), - [sym_BOOL] = ACTIONS(1978), - [sym_auto] = ACTIONS(1978), - [anon_sym_ATautoreleasepool] = ACTIONS(1980), - [anon_sym_ATsynchronized] = ACTIONS(1980), - [anon_sym_ATtry] = ACTIONS(1980), - [anon_sym_ATthrow] = ACTIONS(1980), - [anon_sym_ATselector] = ACTIONS(1980), - [anon_sym_ATencode] = ACTIONS(1980), - [anon_sym_AT] = ACTIONS(1978), - [sym_YES] = ACTIONS(1978), - [sym_NO] = ACTIONS(1978), - [anon_sym___builtin_available] = ACTIONS(1978), - [anon_sym_ATavailable] = ACTIONS(1980), - [anon_sym_va_arg] = ACTIONS(1978), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1186] = { - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2162), - [aux_sym_preproc_include_token1] = ACTIONS(2164), - [aux_sym_preproc_def_token1] = ACTIONS(2164), - [aux_sym_preproc_if_token1] = ACTIONS(2162), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2162), - [anon_sym_LPAREN2] = ACTIONS(2164), - [anon_sym_BANG] = ACTIONS(2164), - [anon_sym_TILDE] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_typedef] = ACTIONS(2162), - [anon_sym_extern] = ACTIONS(2162), - [anon_sym___attribute] = ACTIONS(2162), - [anon_sym___attribute__] = ACTIONS(2162), - [anon_sym___declspec] = ACTIONS(2162), - [anon_sym___cdecl] = ACTIONS(2162), - [anon_sym___clrcall] = ACTIONS(2162), - [anon_sym___stdcall] = ACTIONS(2162), - [anon_sym___fastcall] = ACTIONS(2162), - [anon_sym___thiscall] = ACTIONS(2162), - [anon_sym___vectorcall] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2162), - [anon_sym_auto] = ACTIONS(2162), - [anon_sym_register] = ACTIONS(2162), - [anon_sym_inline] = ACTIONS(2162), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_volatile] = ACTIONS(2162), - [anon_sym_restrict] = ACTIONS(2162), - [anon_sym__Atomic] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_out] = ACTIONS(2162), - [anon_sym_inout] = ACTIONS(2162), - [anon_sym_bycopy] = ACTIONS(2162), - [anon_sym_byref] = ACTIONS(2162), - [anon_sym_oneway] = ACTIONS(2162), - [anon_sym__Nullable] = ACTIONS(2162), - [anon_sym__Nonnull] = ACTIONS(2162), - [anon_sym__Nullable_result] = ACTIONS(2162), - [anon_sym__Null_unspecified] = ACTIONS(2162), - [anon_sym___autoreleasing] = ACTIONS(2162), - [anon_sym___nullable] = ACTIONS(2162), - [anon_sym___nonnull] = ACTIONS(2162), - [anon_sym___strong] = ACTIONS(2162), - [anon_sym___weak] = ACTIONS(2162), - [anon_sym___bridge] = ACTIONS(2162), - [anon_sym___bridge_transfer] = ACTIONS(2162), - [anon_sym___bridge_retained] = ACTIONS(2162), - [anon_sym___unsafe_unretained] = ACTIONS(2162), - [anon_sym___block] = ACTIONS(2162), - [anon_sym___kindof] = ACTIONS(2162), - [anon_sym___unused] = ACTIONS(2162), - [anon_sym__Complex] = ACTIONS(2162), - [anon_sym___complex] = ACTIONS(2162), - [anon_sym_IBOutlet] = ACTIONS(2162), - [anon_sym_IBInspectable] = ACTIONS(2162), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2162), - [anon_sym_signed] = ACTIONS(2162), - [anon_sym_unsigned] = ACTIONS(2162), - [anon_sym_long] = ACTIONS(2162), - [anon_sym_short] = ACTIONS(2162), - [sym_primitive_type] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_NS_ENUM] = ACTIONS(2162), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2162), - [anon_sym_NS_OPTIONS] = ACTIONS(2162), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_union] = ACTIONS(2162), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_switch] = ACTIONS(2162), - [anon_sym_case] = ACTIONS(2162), - [anon_sym_default] = ACTIONS(2162), - [anon_sym_while] = ACTIONS(2162), - [anon_sym_do] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_goto] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2164), - [anon_sym_sizeof] = ACTIONS(2162), - [sym_number_literal] = ACTIONS(2164), - [anon_sym_L_SQUOTE] = ACTIONS(2164), - [anon_sym_u_SQUOTE] = ACTIONS(2164), - [anon_sym_U_SQUOTE] = ACTIONS(2164), - [anon_sym_u8_SQUOTE] = ACTIONS(2164), - [anon_sym_SQUOTE] = ACTIONS(2164), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_null] = ACTIONS(2162), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2164), - [anon_sym_ATimport] = ACTIONS(2164), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2162), - [anon_sym_ATcompatibility_alias] = ACTIONS(2164), - [anon_sym_ATprotocol] = ACTIONS(2164), - [anon_sym_ATclass] = ACTIONS(2164), - [anon_sym_ATinterface] = ACTIONS(2164), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2162), - [sym_method_attribute_specifier] = ACTIONS(2162), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2162), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2162), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2162), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2162), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2162), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2162), - [anon_sym_NS_AVAILABLE] = ACTIONS(2162), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2162), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2162), - [anon_sym_API_AVAILABLE] = ACTIONS(2162), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2162), - [anon_sym_API_DEPRECATED] = ACTIONS(2162), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2162), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2162), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2162), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2162), - [anon_sym___deprecated_msg] = ACTIONS(2162), - [anon_sym___deprecated_enum_msg] = ACTIONS(2162), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2162), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2162), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2162), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2162), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2162), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2162), - [anon_sym_ATimplementation] = ACTIONS(2164), - [anon_sym_typeof] = ACTIONS(2162), - [anon_sym___typeof] = ACTIONS(2162), - [anon_sym___typeof__] = ACTIONS(2162), - [sym_self] = ACTIONS(2162), - [sym_super] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [sym_id] = ACTIONS(2162), - [sym_instancetype] = ACTIONS(2162), - [sym_Class] = ACTIONS(2162), - [sym_SEL] = ACTIONS(2162), - [sym_IMP] = ACTIONS(2162), - [sym_BOOL] = ACTIONS(2162), - [sym_auto] = ACTIONS(2162), - [anon_sym_ATautoreleasepool] = ACTIONS(2164), - [anon_sym_ATsynchronized] = ACTIONS(2164), - [anon_sym_ATtry] = ACTIONS(2164), - [anon_sym_ATthrow] = ACTIONS(2164), - [anon_sym_ATselector] = ACTIONS(2164), - [anon_sym_ATencode] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2162), - [sym_YES] = ACTIONS(2162), - [sym_NO] = ACTIONS(2162), - [anon_sym___builtin_available] = ACTIONS(2162), - [anon_sym_ATavailable] = ACTIONS(2164), - [anon_sym_va_arg] = ACTIONS(2162), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1187] = { - [ts_builtin_sym_end] = ACTIONS(1864), - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1188] = { - [ts_builtin_sym_end] = ACTIONS(1788), - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1189] = { - [ts_builtin_sym_end] = ACTIONS(1864), - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1190] = { - [ts_builtin_sym_end] = ACTIONS(1792), - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1191] = { - [ts_builtin_sym_end] = ACTIONS(1864), - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1192] = { - [ts_builtin_sym_end] = ACTIONS(1792), - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1193] = { - [ts_builtin_sym_end] = ACTIONS(1968), - [sym_identifier] = ACTIONS(1966), - [aux_sym_preproc_include_token1] = ACTIONS(1968), - [aux_sym_preproc_def_token1] = ACTIONS(1968), - [aux_sym_preproc_if_token1] = ACTIONS(1966), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1966), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1966), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_BANG] = ACTIONS(1968), - [anon_sym_TILDE] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_PLUS] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1968), - [anon_sym_CARET] = ACTIONS(1968), - [anon_sym_AMP] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_typedef] = ACTIONS(1966), - [anon_sym_extern] = ACTIONS(1966), - [anon_sym___attribute] = ACTIONS(1966), - [anon_sym___attribute__] = ACTIONS(1966), - [anon_sym___declspec] = ACTIONS(1966), - [anon_sym___cdecl] = ACTIONS(1966), - [anon_sym___clrcall] = ACTIONS(1966), - [anon_sym___stdcall] = ACTIONS(1966), - [anon_sym___fastcall] = ACTIONS(1966), - [anon_sym___thiscall] = ACTIONS(1966), - [anon_sym___vectorcall] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(1968), - [anon_sym_RBRACE] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1966), - [anon_sym_auto] = ACTIONS(1966), - [anon_sym_register] = ACTIONS(1966), - [anon_sym_inline] = ACTIONS(1966), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1966), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_volatile] = ACTIONS(1966), - [anon_sym_restrict] = ACTIONS(1966), - [anon_sym__Atomic] = ACTIONS(1966), - [anon_sym_in] = ACTIONS(1966), - [anon_sym_out] = ACTIONS(1966), - [anon_sym_inout] = ACTIONS(1966), - [anon_sym_bycopy] = ACTIONS(1966), - [anon_sym_byref] = ACTIONS(1966), - [anon_sym_oneway] = ACTIONS(1966), - [anon_sym__Nullable] = ACTIONS(1966), - [anon_sym__Nonnull] = ACTIONS(1966), - [anon_sym__Nullable_result] = ACTIONS(1966), - [anon_sym__Null_unspecified] = ACTIONS(1966), - [anon_sym___autoreleasing] = ACTIONS(1966), - [anon_sym___nullable] = ACTIONS(1966), - [anon_sym___nonnull] = ACTIONS(1966), - [anon_sym___strong] = ACTIONS(1966), - [anon_sym___weak] = ACTIONS(1966), - [anon_sym___bridge] = ACTIONS(1966), - [anon_sym___bridge_transfer] = ACTIONS(1966), - [anon_sym___bridge_retained] = ACTIONS(1966), - [anon_sym___unsafe_unretained] = ACTIONS(1966), - [anon_sym___block] = ACTIONS(1966), - [anon_sym___kindof] = ACTIONS(1966), - [anon_sym___unused] = ACTIONS(1966), - [anon_sym__Complex] = ACTIONS(1966), - [anon_sym___complex] = ACTIONS(1966), - [anon_sym_IBOutlet] = ACTIONS(1966), - [anon_sym_IBInspectable] = ACTIONS(1966), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1966), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [sym_primitive_type] = ACTIONS(1966), - [anon_sym_enum] = ACTIONS(1966), - [anon_sym_NS_ENUM] = ACTIONS(1966), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1966), - [anon_sym_NS_OPTIONS] = ACTIONS(1966), - [anon_sym_struct] = ACTIONS(1966), - [anon_sym_union] = ACTIONS(1966), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_switch] = ACTIONS(1966), - [anon_sym_case] = ACTIONS(1966), - [anon_sym_default] = ACTIONS(1966), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_do] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_return] = ACTIONS(1966), - [anon_sym_break] = ACTIONS(1966), - [anon_sym_continue] = ACTIONS(1966), - [anon_sym_goto] = ACTIONS(1966), - [anon_sym_DASH_DASH] = ACTIONS(1968), - [anon_sym_PLUS_PLUS] = ACTIONS(1968), - [anon_sym_sizeof] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(1968), - [anon_sym_L_SQUOTE] = ACTIONS(1968), - [anon_sym_u_SQUOTE] = ACTIONS(1968), - [anon_sym_U_SQUOTE] = ACTIONS(1968), - [anon_sym_u8_SQUOTE] = ACTIONS(1968), - [anon_sym_SQUOTE] = ACTIONS(1968), - [anon_sym_L_DQUOTE] = ACTIONS(1968), - [anon_sym_u_DQUOTE] = ACTIONS(1968), - [anon_sym_U_DQUOTE] = ACTIONS(1968), - [anon_sym_u8_DQUOTE] = ACTIONS(1968), - [anon_sym_DQUOTE] = ACTIONS(1968), - [sym_true] = ACTIONS(1966), - [sym_false] = ACTIONS(1966), - [sym_null] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1968), - [anon_sym_ATimport] = ACTIONS(1968), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1966), - [anon_sym_ATcompatibility_alias] = ACTIONS(1968), - [anon_sym_ATprotocol] = ACTIONS(1968), - [anon_sym_ATclass] = ACTIONS(1968), - [anon_sym_ATinterface] = ACTIONS(1968), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1966), - [sym_method_attribute_specifier] = ACTIONS(1966), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1966), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1966), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1966), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1966), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1966), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1966), - [anon_sym_NS_AVAILABLE] = ACTIONS(1966), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1966), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1966), - [anon_sym_API_AVAILABLE] = ACTIONS(1966), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1966), - [anon_sym_API_DEPRECATED] = ACTIONS(1966), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1966), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1966), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1966), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1966), - [anon_sym___deprecated_msg] = ACTIONS(1966), - [anon_sym___deprecated_enum_msg] = ACTIONS(1966), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1966), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1966), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1966), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1966), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1966), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1966), - [anon_sym_ATimplementation] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(1966), - [anon_sym___typeof] = ACTIONS(1966), - [anon_sym___typeof__] = ACTIONS(1966), - [sym_self] = ACTIONS(1966), - [sym_super] = ACTIONS(1966), - [sym_nil] = ACTIONS(1966), - [sym_id] = ACTIONS(1966), - [sym_instancetype] = ACTIONS(1966), - [sym_Class] = ACTIONS(1966), - [sym_SEL] = ACTIONS(1966), - [sym_IMP] = ACTIONS(1966), - [sym_BOOL] = ACTIONS(1966), - [sym_auto] = ACTIONS(1966), - [anon_sym_ATautoreleasepool] = ACTIONS(1968), - [anon_sym_ATsynchronized] = ACTIONS(1968), - [anon_sym_ATtry] = ACTIONS(1968), - [anon_sym_ATthrow] = ACTIONS(1968), - [anon_sym_ATselector] = ACTIONS(1968), - [anon_sym_ATencode] = ACTIONS(1968), - [anon_sym_AT] = ACTIONS(1966), - [sym_YES] = ACTIONS(1966), - [sym_NO] = ACTIONS(1966), - [anon_sym___builtin_available] = ACTIONS(1966), - [anon_sym_ATavailable] = ACTIONS(1968), - [anon_sym_va_arg] = ACTIONS(1966), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1194] = { - [ts_builtin_sym_end] = ACTIONS(1792), - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1195] = { - [ts_builtin_sym_end] = ACTIONS(2168), - [sym_identifier] = ACTIONS(2166), - [aux_sym_preproc_include_token1] = ACTIONS(2168), - [aux_sym_preproc_def_token1] = ACTIONS(2168), - [aux_sym_preproc_if_token1] = ACTIONS(2166), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2166), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2166), - [anon_sym_LPAREN2] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(2168), - [anon_sym_TILDE] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2168), - [anon_sym_CARET] = ACTIONS(2168), - [anon_sym_AMP] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2168), - [anon_sym_typedef] = ACTIONS(2166), - [anon_sym_extern] = ACTIONS(2166), - [anon_sym___attribute] = ACTIONS(2166), - [anon_sym___attribute__] = ACTIONS(2166), - [anon_sym___declspec] = ACTIONS(2166), - [anon_sym___cdecl] = ACTIONS(2166), - [anon_sym___clrcall] = ACTIONS(2166), - [anon_sym___stdcall] = ACTIONS(2166), - [anon_sym___fastcall] = ACTIONS(2166), - [anon_sym___thiscall] = ACTIONS(2166), - [anon_sym___vectorcall] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2168), - [anon_sym_RBRACE] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2166), - [anon_sym_auto] = ACTIONS(2166), - [anon_sym_register] = ACTIONS(2166), - [anon_sym_inline] = ACTIONS(2166), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2166), - [anon_sym_const] = ACTIONS(2166), - [anon_sym_volatile] = ACTIONS(2166), - [anon_sym_restrict] = ACTIONS(2166), - [anon_sym__Atomic] = ACTIONS(2166), - [anon_sym_in] = ACTIONS(2166), - [anon_sym_out] = ACTIONS(2166), - [anon_sym_inout] = ACTIONS(2166), - [anon_sym_bycopy] = ACTIONS(2166), - [anon_sym_byref] = ACTIONS(2166), - [anon_sym_oneway] = ACTIONS(2166), - [anon_sym__Nullable] = ACTIONS(2166), - [anon_sym__Nonnull] = ACTIONS(2166), - [anon_sym__Nullable_result] = ACTIONS(2166), - [anon_sym__Null_unspecified] = ACTIONS(2166), - [anon_sym___autoreleasing] = ACTIONS(2166), - [anon_sym___nullable] = ACTIONS(2166), - [anon_sym___nonnull] = ACTIONS(2166), - [anon_sym___strong] = ACTIONS(2166), - [anon_sym___weak] = ACTIONS(2166), - [anon_sym___bridge] = ACTIONS(2166), - [anon_sym___bridge_transfer] = ACTIONS(2166), - [anon_sym___bridge_retained] = ACTIONS(2166), - [anon_sym___unsafe_unretained] = ACTIONS(2166), - [anon_sym___block] = ACTIONS(2166), - [anon_sym___kindof] = ACTIONS(2166), - [anon_sym___unused] = ACTIONS(2166), - [anon_sym__Complex] = ACTIONS(2166), - [anon_sym___complex] = ACTIONS(2166), - [anon_sym_IBOutlet] = ACTIONS(2166), - [anon_sym_IBInspectable] = ACTIONS(2166), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2166), - [anon_sym_signed] = ACTIONS(2166), - [anon_sym_unsigned] = ACTIONS(2166), - [anon_sym_long] = ACTIONS(2166), - [anon_sym_short] = ACTIONS(2166), - [sym_primitive_type] = ACTIONS(2166), - [anon_sym_enum] = ACTIONS(2166), - [anon_sym_NS_ENUM] = ACTIONS(2166), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2166), - [anon_sym_NS_OPTIONS] = ACTIONS(2166), - [anon_sym_struct] = ACTIONS(2166), - [anon_sym_union] = ACTIONS(2166), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_switch] = ACTIONS(2166), - [anon_sym_case] = ACTIONS(2166), - [anon_sym_default] = ACTIONS(2166), - [anon_sym_while] = ACTIONS(2166), - [anon_sym_do] = ACTIONS(2166), - [anon_sym_for] = ACTIONS(2166), - [anon_sym_return] = ACTIONS(2166), - [anon_sym_break] = ACTIONS(2166), - [anon_sym_continue] = ACTIONS(2166), - [anon_sym_goto] = ACTIONS(2166), - [anon_sym_DASH_DASH] = ACTIONS(2168), - [anon_sym_PLUS_PLUS] = ACTIONS(2168), - [anon_sym_sizeof] = ACTIONS(2166), - [sym_number_literal] = ACTIONS(2168), - [anon_sym_L_SQUOTE] = ACTIONS(2168), - [anon_sym_u_SQUOTE] = ACTIONS(2168), - [anon_sym_U_SQUOTE] = ACTIONS(2168), - [anon_sym_u8_SQUOTE] = ACTIONS(2168), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_L_DQUOTE] = ACTIONS(2168), - [anon_sym_u_DQUOTE] = ACTIONS(2168), - [anon_sym_U_DQUOTE] = ACTIONS(2168), - [anon_sym_u8_DQUOTE] = ACTIONS(2168), - [anon_sym_DQUOTE] = ACTIONS(2168), - [sym_true] = ACTIONS(2166), - [sym_false] = ACTIONS(2166), - [sym_null] = ACTIONS(2166), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2168), - [anon_sym_ATimport] = ACTIONS(2168), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2166), - [anon_sym_ATcompatibility_alias] = ACTIONS(2168), - [anon_sym_ATprotocol] = ACTIONS(2168), - [anon_sym_ATclass] = ACTIONS(2168), - [anon_sym_ATinterface] = ACTIONS(2168), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2166), - [sym_method_attribute_specifier] = ACTIONS(2166), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2166), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2166), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2166), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2166), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2166), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2166), - [anon_sym_NS_AVAILABLE] = ACTIONS(2166), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2166), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2166), - [anon_sym_API_AVAILABLE] = ACTIONS(2166), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2166), - [anon_sym_API_DEPRECATED] = ACTIONS(2166), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2166), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2166), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2166), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2166), - [anon_sym___deprecated_msg] = ACTIONS(2166), - [anon_sym___deprecated_enum_msg] = ACTIONS(2166), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2166), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2166), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2166), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2166), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2166), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2166), - [anon_sym_ATimplementation] = ACTIONS(2168), - [anon_sym_typeof] = ACTIONS(2166), - [anon_sym___typeof] = ACTIONS(2166), - [anon_sym___typeof__] = ACTIONS(2166), - [sym_self] = ACTIONS(2166), - [sym_super] = ACTIONS(2166), - [sym_nil] = ACTIONS(2166), - [sym_id] = ACTIONS(2166), - [sym_instancetype] = ACTIONS(2166), - [sym_Class] = ACTIONS(2166), - [sym_SEL] = ACTIONS(2166), - [sym_IMP] = ACTIONS(2166), - [sym_BOOL] = ACTIONS(2166), - [sym_auto] = ACTIONS(2166), - [anon_sym_ATautoreleasepool] = ACTIONS(2168), - [anon_sym_ATsynchronized] = ACTIONS(2168), - [anon_sym_ATtry] = ACTIONS(2168), - [anon_sym_ATthrow] = ACTIONS(2168), - [anon_sym_ATselector] = ACTIONS(2168), - [anon_sym_ATencode] = ACTIONS(2168), - [anon_sym_AT] = ACTIONS(2166), - [sym_YES] = ACTIONS(2166), - [sym_NO] = ACTIONS(2166), - [anon_sym___builtin_available] = ACTIONS(2166), - [anon_sym_ATavailable] = ACTIONS(2168), - [anon_sym_va_arg] = ACTIONS(2166), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1196] = { - [ts_builtin_sym_end] = ACTIONS(1864), - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1197] = { - [ts_builtin_sym_end] = ACTIONS(1864), - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1198] = { - [ts_builtin_sym_end] = ACTIONS(1792), - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1199] = { - [ts_builtin_sym_end] = ACTIONS(1792), - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1200] = { - [ts_builtin_sym_end] = ACTIONS(1864), - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1201] = { - [ts_builtin_sym_end] = ACTIONS(1792), - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1202] = { - [ts_builtin_sym_end] = ACTIONS(1792), - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1203] = { - [ts_builtin_sym_end] = ACTIONS(1792), - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1204] = { - [ts_builtin_sym_end] = ACTIONS(1864), - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1205] = { - [ts_builtin_sym_end] = ACTIONS(1864), - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1206] = { - [ts_builtin_sym_end] = ACTIONS(1792), - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1207] = { - [ts_builtin_sym_end] = ACTIONS(1864), - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1208] = { - [ts_builtin_sym_end] = ACTIONS(1792), - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1209] = { - [ts_builtin_sym_end] = ACTIONS(1792), - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1210] = { - [ts_builtin_sym_end] = ACTIONS(1860), - [sym_identifier] = ACTIONS(1858), - [aux_sym_preproc_include_token1] = ACTIONS(1860), - [aux_sym_preproc_def_token1] = ACTIONS(1860), - [aux_sym_preproc_if_token1] = ACTIONS(1858), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1858), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1858), - [anon_sym_LPAREN2] = ACTIONS(1860), - [anon_sym_BANG] = ACTIONS(1860), - [anon_sym_TILDE] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1860), - [anon_sym_CARET] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_typedef] = ACTIONS(1858), - [anon_sym_extern] = ACTIONS(1858), - [anon_sym___attribute] = ACTIONS(1858), - [anon_sym___attribute__] = ACTIONS(1858), - [anon_sym___declspec] = ACTIONS(1858), - [anon_sym___cdecl] = ACTIONS(1858), - [anon_sym___clrcall] = ACTIONS(1858), - [anon_sym___stdcall] = ACTIONS(1858), - [anon_sym___fastcall] = ACTIONS(1858), - [anon_sym___thiscall] = ACTIONS(1858), - [anon_sym___vectorcall] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1860), - [anon_sym_RBRACE] = ACTIONS(1860), - [anon_sym_LBRACK] = ACTIONS(1860), - [anon_sym_static] = ACTIONS(1858), - [anon_sym_auto] = ACTIONS(1858), - [anon_sym_register] = ACTIONS(1858), - [anon_sym_inline] = ACTIONS(1858), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1858), - [anon_sym_const] = ACTIONS(1858), - [anon_sym_volatile] = ACTIONS(1858), - [anon_sym_restrict] = ACTIONS(1858), - [anon_sym__Atomic] = ACTIONS(1858), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_out] = ACTIONS(1858), - [anon_sym_inout] = ACTIONS(1858), - [anon_sym_bycopy] = ACTIONS(1858), - [anon_sym_byref] = ACTIONS(1858), - [anon_sym_oneway] = ACTIONS(1858), - [anon_sym__Nullable] = ACTIONS(1858), - [anon_sym__Nonnull] = ACTIONS(1858), - [anon_sym__Nullable_result] = ACTIONS(1858), - [anon_sym__Null_unspecified] = ACTIONS(1858), - [anon_sym___autoreleasing] = ACTIONS(1858), - [anon_sym___nullable] = ACTIONS(1858), - [anon_sym___nonnull] = ACTIONS(1858), - [anon_sym___strong] = ACTIONS(1858), - [anon_sym___weak] = ACTIONS(1858), - [anon_sym___bridge] = ACTIONS(1858), - [anon_sym___bridge_transfer] = ACTIONS(1858), - [anon_sym___bridge_retained] = ACTIONS(1858), - [anon_sym___unsafe_unretained] = ACTIONS(1858), - [anon_sym___block] = ACTIONS(1858), - [anon_sym___kindof] = ACTIONS(1858), - [anon_sym___unused] = ACTIONS(1858), - [anon_sym__Complex] = ACTIONS(1858), - [anon_sym___complex] = ACTIONS(1858), - [anon_sym_IBOutlet] = ACTIONS(1858), - [anon_sym_IBInspectable] = ACTIONS(1858), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1858), - [anon_sym_signed] = ACTIONS(1858), - [anon_sym_unsigned] = ACTIONS(1858), - [anon_sym_long] = ACTIONS(1858), - [anon_sym_short] = ACTIONS(1858), - [sym_primitive_type] = ACTIONS(1858), - [anon_sym_enum] = ACTIONS(1858), - [anon_sym_NS_ENUM] = ACTIONS(1858), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1858), - [anon_sym_NS_OPTIONS] = ACTIONS(1858), - [anon_sym_struct] = ACTIONS(1858), - [anon_sym_union] = ACTIONS(1858), - [anon_sym_if] = ACTIONS(1858), - [anon_sym_switch] = ACTIONS(1858), - [anon_sym_case] = ACTIONS(1858), - [anon_sym_default] = ACTIONS(1858), - [anon_sym_while] = ACTIONS(1858), - [anon_sym_do] = ACTIONS(1858), - [anon_sym_for] = ACTIONS(1858), - [anon_sym_return] = ACTIONS(1858), - [anon_sym_break] = ACTIONS(1858), - [anon_sym_continue] = ACTIONS(1858), - [anon_sym_goto] = ACTIONS(1858), - [anon_sym_DASH_DASH] = ACTIONS(1860), - [anon_sym_PLUS_PLUS] = ACTIONS(1860), - [anon_sym_sizeof] = ACTIONS(1858), - [sym_number_literal] = ACTIONS(1860), - [anon_sym_L_SQUOTE] = ACTIONS(1860), - [anon_sym_u_SQUOTE] = ACTIONS(1860), - [anon_sym_U_SQUOTE] = ACTIONS(1860), - [anon_sym_u8_SQUOTE] = ACTIONS(1860), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_L_DQUOTE] = ACTIONS(1860), - [anon_sym_u_DQUOTE] = ACTIONS(1860), - [anon_sym_U_DQUOTE] = ACTIONS(1860), - [anon_sym_u8_DQUOTE] = ACTIONS(1860), - [anon_sym_DQUOTE] = ACTIONS(1860), - [sym_true] = ACTIONS(1858), - [sym_false] = ACTIONS(1858), - [sym_null] = ACTIONS(1858), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1860), - [anon_sym_ATimport] = ACTIONS(1860), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1858), - [anon_sym_ATcompatibility_alias] = ACTIONS(1860), - [anon_sym_ATprotocol] = ACTIONS(1860), - [anon_sym_ATclass] = ACTIONS(1860), - [anon_sym_ATinterface] = ACTIONS(1860), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1858), - [sym_method_attribute_specifier] = ACTIONS(1858), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1858), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1858), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1858), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1858), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1858), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1858), - [anon_sym_NS_AVAILABLE] = ACTIONS(1858), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1858), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1858), - [anon_sym_API_AVAILABLE] = ACTIONS(1858), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1858), - [anon_sym_API_DEPRECATED] = ACTIONS(1858), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1858), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1858), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1858), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1858), - [anon_sym___deprecated_msg] = ACTIONS(1858), - [anon_sym___deprecated_enum_msg] = ACTIONS(1858), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1858), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1858), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1858), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1858), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1858), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1858), - [anon_sym_ATimplementation] = ACTIONS(1860), - [anon_sym_typeof] = ACTIONS(1858), - [anon_sym___typeof] = ACTIONS(1858), - [anon_sym___typeof__] = ACTIONS(1858), - [sym_self] = ACTIONS(1858), - [sym_super] = ACTIONS(1858), - [sym_nil] = ACTIONS(1858), - [sym_id] = ACTIONS(1858), - [sym_instancetype] = ACTIONS(1858), - [sym_Class] = ACTIONS(1858), - [sym_SEL] = ACTIONS(1858), - [sym_IMP] = ACTIONS(1858), - [sym_BOOL] = ACTIONS(1858), - [sym_auto] = ACTIONS(1858), - [anon_sym_ATautoreleasepool] = ACTIONS(1860), - [anon_sym_ATsynchronized] = ACTIONS(1860), - [anon_sym_ATtry] = ACTIONS(1860), - [anon_sym_ATthrow] = ACTIONS(1860), - [anon_sym_ATselector] = ACTIONS(1860), - [anon_sym_ATencode] = ACTIONS(1860), - [anon_sym_AT] = ACTIONS(1858), - [sym_YES] = ACTIONS(1858), - [sym_NO] = ACTIONS(1858), - [anon_sym___builtin_available] = ACTIONS(1858), - [anon_sym_ATavailable] = ACTIONS(1860), - [anon_sym_va_arg] = ACTIONS(1858), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1211] = { - [ts_builtin_sym_end] = ACTIONS(1856), - [sym_identifier] = ACTIONS(1854), - [aux_sym_preproc_include_token1] = ACTIONS(1856), - [aux_sym_preproc_def_token1] = ACTIONS(1856), - [aux_sym_preproc_if_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1854), - [anon_sym_LPAREN2] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym___attribute] = ACTIONS(1854), - [anon_sym___attribute__] = ACTIONS(1854), - [anon_sym___declspec] = ACTIONS(1854), - [anon_sym___cdecl] = ACTIONS(1854), - [anon_sym___clrcall] = ACTIONS(1854), - [anon_sym___stdcall] = ACTIONS(1854), - [anon_sym___fastcall] = ACTIONS(1854), - [anon_sym___thiscall] = ACTIONS(1854), - [anon_sym___vectorcall] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_auto] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_volatile] = ACTIONS(1854), - [anon_sym_restrict] = ACTIONS(1854), - [anon_sym__Atomic] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_out] = ACTIONS(1854), - [anon_sym_inout] = ACTIONS(1854), - [anon_sym_bycopy] = ACTIONS(1854), - [anon_sym_byref] = ACTIONS(1854), - [anon_sym_oneway] = ACTIONS(1854), - [anon_sym__Nullable] = ACTIONS(1854), - [anon_sym__Nonnull] = ACTIONS(1854), - [anon_sym__Nullable_result] = ACTIONS(1854), - [anon_sym__Null_unspecified] = ACTIONS(1854), - [anon_sym___autoreleasing] = ACTIONS(1854), - [anon_sym___nullable] = ACTIONS(1854), - [anon_sym___nonnull] = ACTIONS(1854), - [anon_sym___strong] = ACTIONS(1854), - [anon_sym___weak] = ACTIONS(1854), - [anon_sym___bridge] = ACTIONS(1854), - [anon_sym___bridge_transfer] = ACTIONS(1854), - [anon_sym___bridge_retained] = ACTIONS(1854), - [anon_sym___unsafe_unretained] = ACTIONS(1854), - [anon_sym___block] = ACTIONS(1854), - [anon_sym___kindof] = ACTIONS(1854), - [anon_sym___unused] = ACTIONS(1854), - [anon_sym__Complex] = ACTIONS(1854), - [anon_sym___complex] = ACTIONS(1854), - [anon_sym_IBOutlet] = ACTIONS(1854), - [anon_sym_IBInspectable] = ACTIONS(1854), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1854), - [anon_sym_signed] = ACTIONS(1854), - [anon_sym_unsigned] = ACTIONS(1854), - [anon_sym_long] = ACTIONS(1854), - [anon_sym_short] = ACTIONS(1854), - [sym_primitive_type] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_NS_ENUM] = ACTIONS(1854), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1854), - [anon_sym_NS_OPTIONS] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_goto] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_sizeof] = ACTIONS(1854), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_L_SQUOTE] = ACTIONS(1856), - [anon_sym_u_SQUOTE] = ACTIONS(1856), - [anon_sym_U_SQUOTE] = ACTIONS(1856), - [anon_sym_u8_SQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_L_DQUOTE] = ACTIONS(1856), - [anon_sym_u_DQUOTE] = ACTIONS(1856), - [anon_sym_U_DQUOTE] = ACTIONS(1856), - [anon_sym_u8_DQUOTE] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1856), - [anon_sym_ATimport] = ACTIONS(1856), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1854), - [anon_sym_ATcompatibility_alias] = ACTIONS(1856), - [anon_sym_ATprotocol] = ACTIONS(1856), - [anon_sym_ATclass] = ACTIONS(1856), - [anon_sym_ATinterface] = ACTIONS(1856), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1854), - [sym_method_attribute_specifier] = ACTIONS(1854), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1854), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE] = ACTIONS(1854), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_API_AVAILABLE] = ACTIONS(1854), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_API_DEPRECATED] = ACTIONS(1854), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1854), - [anon_sym___deprecated_msg] = ACTIONS(1854), - [anon_sym___deprecated_enum_msg] = ACTIONS(1854), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1854), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1854), - [anon_sym_ATimplementation] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym___typeof] = ACTIONS(1854), - [anon_sym___typeof__] = ACTIONS(1854), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_nil] = ACTIONS(1854), - [sym_id] = ACTIONS(1854), - [sym_instancetype] = ACTIONS(1854), - [sym_Class] = ACTIONS(1854), - [sym_SEL] = ACTIONS(1854), - [sym_IMP] = ACTIONS(1854), - [sym_BOOL] = ACTIONS(1854), - [sym_auto] = ACTIONS(1854), - [anon_sym_ATautoreleasepool] = ACTIONS(1856), - [anon_sym_ATsynchronized] = ACTIONS(1856), - [anon_sym_ATtry] = ACTIONS(1856), - [anon_sym_ATthrow] = ACTIONS(1856), - [anon_sym_ATselector] = ACTIONS(1856), - [anon_sym_ATencode] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1854), - [sym_YES] = ACTIONS(1854), - [sym_NO] = ACTIONS(1854), - [anon_sym___builtin_available] = ACTIONS(1854), - [anon_sym_ATavailable] = ACTIONS(1856), - [anon_sym_va_arg] = ACTIONS(1854), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1212] = { - [ts_builtin_sym_end] = ACTIONS(1792), - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1213] = { - [ts_builtin_sym_end] = ACTIONS(1856), - [sym_identifier] = ACTIONS(1854), - [aux_sym_preproc_include_token1] = ACTIONS(1856), - [aux_sym_preproc_def_token1] = ACTIONS(1856), - [aux_sym_preproc_if_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1854), - [anon_sym_LPAREN2] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym___attribute] = ACTIONS(1854), - [anon_sym___attribute__] = ACTIONS(1854), - [anon_sym___declspec] = ACTIONS(1854), - [anon_sym___cdecl] = ACTIONS(1854), - [anon_sym___clrcall] = ACTIONS(1854), - [anon_sym___stdcall] = ACTIONS(1854), - [anon_sym___fastcall] = ACTIONS(1854), - [anon_sym___thiscall] = ACTIONS(1854), - [anon_sym___vectorcall] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_auto] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_volatile] = ACTIONS(1854), - [anon_sym_restrict] = ACTIONS(1854), - [anon_sym__Atomic] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_out] = ACTIONS(1854), - [anon_sym_inout] = ACTIONS(1854), - [anon_sym_bycopy] = ACTIONS(1854), - [anon_sym_byref] = ACTIONS(1854), - [anon_sym_oneway] = ACTIONS(1854), - [anon_sym__Nullable] = ACTIONS(1854), - [anon_sym__Nonnull] = ACTIONS(1854), - [anon_sym__Nullable_result] = ACTIONS(1854), - [anon_sym__Null_unspecified] = ACTIONS(1854), - [anon_sym___autoreleasing] = ACTIONS(1854), - [anon_sym___nullable] = ACTIONS(1854), - [anon_sym___nonnull] = ACTIONS(1854), - [anon_sym___strong] = ACTIONS(1854), - [anon_sym___weak] = ACTIONS(1854), - [anon_sym___bridge] = ACTIONS(1854), - [anon_sym___bridge_transfer] = ACTIONS(1854), - [anon_sym___bridge_retained] = ACTIONS(1854), - [anon_sym___unsafe_unretained] = ACTIONS(1854), - [anon_sym___block] = ACTIONS(1854), - [anon_sym___kindof] = ACTIONS(1854), - [anon_sym___unused] = ACTIONS(1854), - [anon_sym__Complex] = ACTIONS(1854), - [anon_sym___complex] = ACTIONS(1854), - [anon_sym_IBOutlet] = ACTIONS(1854), - [anon_sym_IBInspectable] = ACTIONS(1854), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1854), - [anon_sym_signed] = ACTIONS(1854), - [anon_sym_unsigned] = ACTIONS(1854), - [anon_sym_long] = ACTIONS(1854), - [anon_sym_short] = ACTIONS(1854), - [sym_primitive_type] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_NS_ENUM] = ACTIONS(1854), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1854), - [anon_sym_NS_OPTIONS] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_goto] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_sizeof] = ACTIONS(1854), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_L_SQUOTE] = ACTIONS(1856), - [anon_sym_u_SQUOTE] = ACTIONS(1856), - [anon_sym_U_SQUOTE] = ACTIONS(1856), - [anon_sym_u8_SQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_L_DQUOTE] = ACTIONS(1856), - [anon_sym_u_DQUOTE] = ACTIONS(1856), - [anon_sym_U_DQUOTE] = ACTIONS(1856), - [anon_sym_u8_DQUOTE] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1856), - [anon_sym_ATimport] = ACTIONS(1856), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1854), - [anon_sym_ATcompatibility_alias] = ACTIONS(1856), - [anon_sym_ATprotocol] = ACTIONS(1856), - [anon_sym_ATclass] = ACTIONS(1856), - [anon_sym_ATinterface] = ACTIONS(1856), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1854), - [sym_method_attribute_specifier] = ACTIONS(1854), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1854), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE] = ACTIONS(1854), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_API_AVAILABLE] = ACTIONS(1854), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_API_DEPRECATED] = ACTIONS(1854), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1854), - [anon_sym___deprecated_msg] = ACTIONS(1854), - [anon_sym___deprecated_enum_msg] = ACTIONS(1854), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1854), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1854), - [anon_sym_ATimplementation] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym___typeof] = ACTIONS(1854), - [anon_sym___typeof__] = ACTIONS(1854), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_nil] = ACTIONS(1854), - [sym_id] = ACTIONS(1854), - [sym_instancetype] = ACTIONS(1854), - [sym_Class] = ACTIONS(1854), - [sym_SEL] = ACTIONS(1854), - [sym_IMP] = ACTIONS(1854), - [sym_BOOL] = ACTIONS(1854), - [sym_auto] = ACTIONS(1854), - [anon_sym_ATautoreleasepool] = ACTIONS(1856), - [anon_sym_ATsynchronized] = ACTIONS(1856), - [anon_sym_ATtry] = ACTIONS(1856), - [anon_sym_ATthrow] = ACTIONS(1856), - [anon_sym_ATselector] = ACTIONS(1856), - [anon_sym_ATencode] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1854), - [sym_YES] = ACTIONS(1854), - [sym_NO] = ACTIONS(1854), - [anon_sym___builtin_available] = ACTIONS(1854), - [anon_sym_ATavailable] = ACTIONS(1856), - [anon_sym_va_arg] = ACTIONS(1854), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1214] = { - [ts_builtin_sym_end] = ACTIONS(1792), - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1215] = { - [ts_builtin_sym_end] = ACTIONS(1792), - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1216] = { - [ts_builtin_sym_end] = ACTIONS(1856), - [sym_identifier] = ACTIONS(1854), - [aux_sym_preproc_include_token1] = ACTIONS(1856), - [aux_sym_preproc_def_token1] = ACTIONS(1856), - [aux_sym_preproc_if_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1854), - [anon_sym_LPAREN2] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym___attribute] = ACTIONS(1854), - [anon_sym___attribute__] = ACTIONS(1854), - [anon_sym___declspec] = ACTIONS(1854), - [anon_sym___cdecl] = ACTIONS(1854), - [anon_sym___clrcall] = ACTIONS(1854), - [anon_sym___stdcall] = ACTIONS(1854), - [anon_sym___fastcall] = ACTIONS(1854), - [anon_sym___thiscall] = ACTIONS(1854), - [anon_sym___vectorcall] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_auto] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_volatile] = ACTIONS(1854), - [anon_sym_restrict] = ACTIONS(1854), - [anon_sym__Atomic] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_out] = ACTIONS(1854), - [anon_sym_inout] = ACTIONS(1854), - [anon_sym_bycopy] = ACTIONS(1854), - [anon_sym_byref] = ACTIONS(1854), - [anon_sym_oneway] = ACTIONS(1854), - [anon_sym__Nullable] = ACTIONS(1854), - [anon_sym__Nonnull] = ACTIONS(1854), - [anon_sym__Nullable_result] = ACTIONS(1854), - [anon_sym__Null_unspecified] = ACTIONS(1854), - [anon_sym___autoreleasing] = ACTIONS(1854), - [anon_sym___nullable] = ACTIONS(1854), - [anon_sym___nonnull] = ACTIONS(1854), - [anon_sym___strong] = ACTIONS(1854), - [anon_sym___weak] = ACTIONS(1854), - [anon_sym___bridge] = ACTIONS(1854), - [anon_sym___bridge_transfer] = ACTIONS(1854), - [anon_sym___bridge_retained] = ACTIONS(1854), - [anon_sym___unsafe_unretained] = ACTIONS(1854), - [anon_sym___block] = ACTIONS(1854), - [anon_sym___kindof] = ACTIONS(1854), - [anon_sym___unused] = ACTIONS(1854), - [anon_sym__Complex] = ACTIONS(1854), - [anon_sym___complex] = ACTIONS(1854), - [anon_sym_IBOutlet] = ACTIONS(1854), - [anon_sym_IBInspectable] = ACTIONS(1854), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1854), - [anon_sym_signed] = ACTIONS(1854), - [anon_sym_unsigned] = ACTIONS(1854), - [anon_sym_long] = ACTIONS(1854), - [anon_sym_short] = ACTIONS(1854), - [sym_primitive_type] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_NS_ENUM] = ACTIONS(1854), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1854), - [anon_sym_NS_OPTIONS] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_goto] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_sizeof] = ACTIONS(1854), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_L_SQUOTE] = ACTIONS(1856), - [anon_sym_u_SQUOTE] = ACTIONS(1856), - [anon_sym_U_SQUOTE] = ACTIONS(1856), - [anon_sym_u8_SQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_L_DQUOTE] = ACTIONS(1856), - [anon_sym_u_DQUOTE] = ACTIONS(1856), - [anon_sym_U_DQUOTE] = ACTIONS(1856), - [anon_sym_u8_DQUOTE] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1856), - [anon_sym_ATimport] = ACTIONS(1856), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1854), - [anon_sym_ATcompatibility_alias] = ACTIONS(1856), - [anon_sym_ATprotocol] = ACTIONS(1856), - [anon_sym_ATclass] = ACTIONS(1856), - [anon_sym_ATinterface] = ACTIONS(1856), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1854), - [sym_method_attribute_specifier] = ACTIONS(1854), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1854), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE] = ACTIONS(1854), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_API_AVAILABLE] = ACTIONS(1854), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_API_DEPRECATED] = ACTIONS(1854), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1854), - [anon_sym___deprecated_msg] = ACTIONS(1854), - [anon_sym___deprecated_enum_msg] = ACTIONS(1854), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1854), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1854), - [anon_sym_ATimplementation] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym___typeof] = ACTIONS(1854), - [anon_sym___typeof__] = ACTIONS(1854), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_nil] = ACTIONS(1854), - [sym_id] = ACTIONS(1854), - [sym_instancetype] = ACTIONS(1854), - [sym_Class] = ACTIONS(1854), - [sym_SEL] = ACTIONS(1854), - [sym_IMP] = ACTIONS(1854), - [sym_BOOL] = ACTIONS(1854), - [sym_auto] = ACTIONS(1854), - [anon_sym_ATautoreleasepool] = ACTIONS(1856), - [anon_sym_ATsynchronized] = ACTIONS(1856), - [anon_sym_ATtry] = ACTIONS(1856), - [anon_sym_ATthrow] = ACTIONS(1856), - [anon_sym_ATselector] = ACTIONS(1856), - [anon_sym_ATencode] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1854), - [sym_YES] = ACTIONS(1854), - [sym_NO] = ACTIONS(1854), - [anon_sym___builtin_available] = ACTIONS(1854), - [anon_sym_ATavailable] = ACTIONS(1856), - [anon_sym_va_arg] = ACTIONS(1854), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1217] = { - [ts_builtin_sym_end] = ACTIONS(1856), - [sym_identifier] = ACTIONS(1854), - [aux_sym_preproc_include_token1] = ACTIONS(1856), - [aux_sym_preproc_def_token1] = ACTIONS(1856), - [aux_sym_preproc_if_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1854), - [anon_sym_LPAREN2] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym___attribute] = ACTIONS(1854), - [anon_sym___attribute__] = ACTIONS(1854), - [anon_sym___declspec] = ACTIONS(1854), - [anon_sym___cdecl] = ACTIONS(1854), - [anon_sym___clrcall] = ACTIONS(1854), - [anon_sym___stdcall] = ACTIONS(1854), - [anon_sym___fastcall] = ACTIONS(1854), - [anon_sym___thiscall] = ACTIONS(1854), - [anon_sym___vectorcall] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_auto] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_volatile] = ACTIONS(1854), - [anon_sym_restrict] = ACTIONS(1854), - [anon_sym__Atomic] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_out] = ACTIONS(1854), - [anon_sym_inout] = ACTIONS(1854), - [anon_sym_bycopy] = ACTIONS(1854), - [anon_sym_byref] = ACTIONS(1854), - [anon_sym_oneway] = ACTIONS(1854), - [anon_sym__Nullable] = ACTIONS(1854), - [anon_sym__Nonnull] = ACTIONS(1854), - [anon_sym__Nullable_result] = ACTIONS(1854), - [anon_sym__Null_unspecified] = ACTIONS(1854), - [anon_sym___autoreleasing] = ACTIONS(1854), - [anon_sym___nullable] = ACTIONS(1854), - [anon_sym___nonnull] = ACTIONS(1854), - [anon_sym___strong] = ACTIONS(1854), - [anon_sym___weak] = ACTIONS(1854), - [anon_sym___bridge] = ACTIONS(1854), - [anon_sym___bridge_transfer] = ACTIONS(1854), - [anon_sym___bridge_retained] = ACTIONS(1854), - [anon_sym___unsafe_unretained] = ACTIONS(1854), - [anon_sym___block] = ACTIONS(1854), - [anon_sym___kindof] = ACTIONS(1854), - [anon_sym___unused] = ACTIONS(1854), - [anon_sym__Complex] = ACTIONS(1854), - [anon_sym___complex] = ACTIONS(1854), - [anon_sym_IBOutlet] = ACTIONS(1854), - [anon_sym_IBInspectable] = ACTIONS(1854), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1854), - [anon_sym_signed] = ACTIONS(1854), - [anon_sym_unsigned] = ACTIONS(1854), - [anon_sym_long] = ACTIONS(1854), - [anon_sym_short] = ACTIONS(1854), - [sym_primitive_type] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_NS_ENUM] = ACTIONS(1854), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1854), - [anon_sym_NS_OPTIONS] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_goto] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_sizeof] = ACTIONS(1854), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_L_SQUOTE] = ACTIONS(1856), - [anon_sym_u_SQUOTE] = ACTIONS(1856), - [anon_sym_U_SQUOTE] = ACTIONS(1856), - [anon_sym_u8_SQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_L_DQUOTE] = ACTIONS(1856), - [anon_sym_u_DQUOTE] = ACTIONS(1856), - [anon_sym_U_DQUOTE] = ACTIONS(1856), - [anon_sym_u8_DQUOTE] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1856), - [anon_sym_ATimport] = ACTIONS(1856), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1854), - [anon_sym_ATcompatibility_alias] = ACTIONS(1856), - [anon_sym_ATprotocol] = ACTIONS(1856), - [anon_sym_ATclass] = ACTIONS(1856), - [anon_sym_ATinterface] = ACTIONS(1856), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1854), - [sym_method_attribute_specifier] = ACTIONS(1854), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1854), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE] = ACTIONS(1854), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_API_AVAILABLE] = ACTIONS(1854), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_API_DEPRECATED] = ACTIONS(1854), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1854), - [anon_sym___deprecated_msg] = ACTIONS(1854), - [anon_sym___deprecated_enum_msg] = ACTIONS(1854), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1854), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1854), - [anon_sym_ATimplementation] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym___typeof] = ACTIONS(1854), - [anon_sym___typeof__] = ACTIONS(1854), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_nil] = ACTIONS(1854), - [sym_id] = ACTIONS(1854), - [sym_instancetype] = ACTIONS(1854), - [sym_Class] = ACTIONS(1854), - [sym_SEL] = ACTIONS(1854), - [sym_IMP] = ACTIONS(1854), - [sym_BOOL] = ACTIONS(1854), - [sym_auto] = ACTIONS(1854), - [anon_sym_ATautoreleasepool] = ACTIONS(1856), - [anon_sym_ATsynchronized] = ACTIONS(1856), - [anon_sym_ATtry] = ACTIONS(1856), - [anon_sym_ATthrow] = ACTIONS(1856), - [anon_sym_ATselector] = ACTIONS(1856), - [anon_sym_ATencode] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1854), - [sym_YES] = ACTIONS(1854), - [sym_NO] = ACTIONS(1854), - [anon_sym___builtin_available] = ACTIONS(1854), - [anon_sym_ATavailable] = ACTIONS(1856), - [anon_sym_va_arg] = ACTIONS(1854), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1218] = { - [ts_builtin_sym_end] = ACTIONS(1792), - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1219] = { - [ts_builtin_sym_end] = ACTIONS(1856), - [sym_identifier] = ACTIONS(1854), - [aux_sym_preproc_include_token1] = ACTIONS(1856), - [aux_sym_preproc_def_token1] = ACTIONS(1856), - [aux_sym_preproc_if_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1854), - [anon_sym_LPAREN2] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym___attribute] = ACTIONS(1854), - [anon_sym___attribute__] = ACTIONS(1854), - [anon_sym___declspec] = ACTIONS(1854), - [anon_sym___cdecl] = ACTIONS(1854), - [anon_sym___clrcall] = ACTIONS(1854), - [anon_sym___stdcall] = ACTIONS(1854), - [anon_sym___fastcall] = ACTIONS(1854), - [anon_sym___thiscall] = ACTIONS(1854), - [anon_sym___vectorcall] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_auto] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_volatile] = ACTIONS(1854), - [anon_sym_restrict] = ACTIONS(1854), - [anon_sym__Atomic] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_out] = ACTIONS(1854), - [anon_sym_inout] = ACTIONS(1854), - [anon_sym_bycopy] = ACTIONS(1854), - [anon_sym_byref] = ACTIONS(1854), - [anon_sym_oneway] = ACTIONS(1854), - [anon_sym__Nullable] = ACTIONS(1854), - [anon_sym__Nonnull] = ACTIONS(1854), - [anon_sym__Nullable_result] = ACTIONS(1854), - [anon_sym__Null_unspecified] = ACTIONS(1854), - [anon_sym___autoreleasing] = ACTIONS(1854), - [anon_sym___nullable] = ACTIONS(1854), - [anon_sym___nonnull] = ACTIONS(1854), - [anon_sym___strong] = ACTIONS(1854), - [anon_sym___weak] = ACTIONS(1854), - [anon_sym___bridge] = ACTIONS(1854), - [anon_sym___bridge_transfer] = ACTIONS(1854), - [anon_sym___bridge_retained] = ACTIONS(1854), - [anon_sym___unsafe_unretained] = ACTIONS(1854), - [anon_sym___block] = ACTIONS(1854), - [anon_sym___kindof] = ACTIONS(1854), - [anon_sym___unused] = ACTIONS(1854), - [anon_sym__Complex] = ACTIONS(1854), - [anon_sym___complex] = ACTIONS(1854), - [anon_sym_IBOutlet] = ACTIONS(1854), - [anon_sym_IBInspectable] = ACTIONS(1854), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1854), - [anon_sym_signed] = ACTIONS(1854), - [anon_sym_unsigned] = ACTIONS(1854), - [anon_sym_long] = ACTIONS(1854), - [anon_sym_short] = ACTIONS(1854), - [sym_primitive_type] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_NS_ENUM] = ACTIONS(1854), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1854), - [anon_sym_NS_OPTIONS] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_goto] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_sizeof] = ACTIONS(1854), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_L_SQUOTE] = ACTIONS(1856), - [anon_sym_u_SQUOTE] = ACTIONS(1856), - [anon_sym_U_SQUOTE] = ACTIONS(1856), - [anon_sym_u8_SQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_L_DQUOTE] = ACTIONS(1856), - [anon_sym_u_DQUOTE] = ACTIONS(1856), - [anon_sym_U_DQUOTE] = ACTIONS(1856), - [anon_sym_u8_DQUOTE] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1856), - [anon_sym_ATimport] = ACTIONS(1856), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1854), - [anon_sym_ATcompatibility_alias] = ACTIONS(1856), - [anon_sym_ATprotocol] = ACTIONS(1856), - [anon_sym_ATclass] = ACTIONS(1856), - [anon_sym_ATinterface] = ACTIONS(1856), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1854), - [sym_method_attribute_specifier] = ACTIONS(1854), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1854), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE] = ACTIONS(1854), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_API_AVAILABLE] = ACTIONS(1854), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_API_DEPRECATED] = ACTIONS(1854), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1854), - [anon_sym___deprecated_msg] = ACTIONS(1854), - [anon_sym___deprecated_enum_msg] = ACTIONS(1854), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1854), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1854), - [anon_sym_ATimplementation] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym___typeof] = ACTIONS(1854), - [anon_sym___typeof__] = ACTIONS(1854), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_nil] = ACTIONS(1854), - [sym_id] = ACTIONS(1854), - [sym_instancetype] = ACTIONS(1854), - [sym_Class] = ACTIONS(1854), - [sym_SEL] = ACTIONS(1854), - [sym_IMP] = ACTIONS(1854), - [sym_BOOL] = ACTIONS(1854), - [sym_auto] = ACTIONS(1854), - [anon_sym_ATautoreleasepool] = ACTIONS(1856), - [anon_sym_ATsynchronized] = ACTIONS(1856), - [anon_sym_ATtry] = ACTIONS(1856), - [anon_sym_ATthrow] = ACTIONS(1856), - [anon_sym_ATselector] = ACTIONS(1856), - [anon_sym_ATencode] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1854), - [sym_YES] = ACTIONS(1854), - [sym_NO] = ACTIONS(1854), - [anon_sym___builtin_available] = ACTIONS(1854), - [anon_sym_ATavailable] = ACTIONS(1856), - [anon_sym_va_arg] = ACTIONS(1854), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1220] = { - [ts_builtin_sym_end] = ACTIONS(1800), - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1221] = { - [ts_builtin_sym_end] = ACTIONS(1856), - [sym_identifier] = ACTIONS(1854), - [aux_sym_preproc_include_token1] = ACTIONS(1856), - [aux_sym_preproc_def_token1] = ACTIONS(1856), - [aux_sym_preproc_if_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1854), - [anon_sym_LPAREN2] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym___attribute] = ACTIONS(1854), - [anon_sym___attribute__] = ACTIONS(1854), - [anon_sym___declspec] = ACTIONS(1854), - [anon_sym___cdecl] = ACTIONS(1854), - [anon_sym___clrcall] = ACTIONS(1854), - [anon_sym___stdcall] = ACTIONS(1854), - [anon_sym___fastcall] = ACTIONS(1854), - [anon_sym___thiscall] = ACTIONS(1854), - [anon_sym___vectorcall] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_auto] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_volatile] = ACTIONS(1854), - [anon_sym_restrict] = ACTIONS(1854), - [anon_sym__Atomic] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_out] = ACTIONS(1854), - [anon_sym_inout] = ACTIONS(1854), - [anon_sym_bycopy] = ACTIONS(1854), - [anon_sym_byref] = ACTIONS(1854), - [anon_sym_oneway] = ACTIONS(1854), - [anon_sym__Nullable] = ACTIONS(1854), - [anon_sym__Nonnull] = ACTIONS(1854), - [anon_sym__Nullable_result] = ACTIONS(1854), - [anon_sym__Null_unspecified] = ACTIONS(1854), - [anon_sym___autoreleasing] = ACTIONS(1854), - [anon_sym___nullable] = ACTIONS(1854), - [anon_sym___nonnull] = ACTIONS(1854), - [anon_sym___strong] = ACTIONS(1854), - [anon_sym___weak] = ACTIONS(1854), - [anon_sym___bridge] = ACTIONS(1854), - [anon_sym___bridge_transfer] = ACTIONS(1854), - [anon_sym___bridge_retained] = ACTIONS(1854), - [anon_sym___unsafe_unretained] = ACTIONS(1854), - [anon_sym___block] = ACTIONS(1854), - [anon_sym___kindof] = ACTIONS(1854), - [anon_sym___unused] = ACTIONS(1854), - [anon_sym__Complex] = ACTIONS(1854), - [anon_sym___complex] = ACTIONS(1854), - [anon_sym_IBOutlet] = ACTIONS(1854), - [anon_sym_IBInspectable] = ACTIONS(1854), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1854), - [anon_sym_signed] = ACTIONS(1854), - [anon_sym_unsigned] = ACTIONS(1854), - [anon_sym_long] = ACTIONS(1854), - [anon_sym_short] = ACTIONS(1854), - [sym_primitive_type] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_NS_ENUM] = ACTIONS(1854), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1854), - [anon_sym_NS_OPTIONS] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_goto] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_sizeof] = ACTIONS(1854), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_L_SQUOTE] = ACTIONS(1856), - [anon_sym_u_SQUOTE] = ACTIONS(1856), - [anon_sym_U_SQUOTE] = ACTIONS(1856), - [anon_sym_u8_SQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_L_DQUOTE] = ACTIONS(1856), - [anon_sym_u_DQUOTE] = ACTIONS(1856), - [anon_sym_U_DQUOTE] = ACTIONS(1856), - [anon_sym_u8_DQUOTE] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1856), - [anon_sym_ATimport] = ACTIONS(1856), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1854), - [anon_sym_ATcompatibility_alias] = ACTIONS(1856), - [anon_sym_ATprotocol] = ACTIONS(1856), - [anon_sym_ATclass] = ACTIONS(1856), - [anon_sym_ATinterface] = ACTIONS(1856), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1854), - [sym_method_attribute_specifier] = ACTIONS(1854), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1854), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE] = ACTIONS(1854), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_API_AVAILABLE] = ACTIONS(1854), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_API_DEPRECATED] = ACTIONS(1854), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1854), - [anon_sym___deprecated_msg] = ACTIONS(1854), - [anon_sym___deprecated_enum_msg] = ACTIONS(1854), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1854), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1854), - [anon_sym_ATimplementation] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym___typeof] = ACTIONS(1854), - [anon_sym___typeof__] = ACTIONS(1854), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_nil] = ACTIONS(1854), - [sym_id] = ACTIONS(1854), - [sym_instancetype] = ACTIONS(1854), - [sym_Class] = ACTIONS(1854), - [sym_SEL] = ACTIONS(1854), - [sym_IMP] = ACTIONS(1854), - [sym_BOOL] = ACTIONS(1854), - [sym_auto] = ACTIONS(1854), - [anon_sym_ATautoreleasepool] = ACTIONS(1856), - [anon_sym_ATsynchronized] = ACTIONS(1856), - [anon_sym_ATtry] = ACTIONS(1856), - [anon_sym_ATthrow] = ACTIONS(1856), - [anon_sym_ATselector] = ACTIONS(1856), - [anon_sym_ATencode] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1854), - [sym_YES] = ACTIONS(1854), - [sym_NO] = ACTIONS(1854), - [anon_sym___builtin_available] = ACTIONS(1854), - [anon_sym_ATavailable] = ACTIONS(1856), - [anon_sym_va_arg] = ACTIONS(1854), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1222] = { - [ts_builtin_sym_end] = ACTIONS(1852), - [sym_identifier] = ACTIONS(1850), - [aux_sym_preproc_include_token1] = ACTIONS(1852), - [aux_sym_preproc_def_token1] = ACTIONS(1852), - [aux_sym_preproc_if_token1] = ACTIONS(1850), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1850), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1850), - [anon_sym_LPAREN2] = ACTIONS(1852), - [anon_sym_BANG] = ACTIONS(1852), - [anon_sym_TILDE] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1852), - [anon_sym_CARET] = ACTIONS(1852), - [anon_sym_AMP] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_typedef] = ACTIONS(1850), - [anon_sym_extern] = ACTIONS(1850), - [anon_sym___attribute] = ACTIONS(1850), - [anon_sym___attribute__] = ACTIONS(1850), - [anon_sym___declspec] = ACTIONS(1850), - [anon_sym___cdecl] = ACTIONS(1850), - [anon_sym___clrcall] = ACTIONS(1850), - [anon_sym___stdcall] = ACTIONS(1850), - [anon_sym___fastcall] = ACTIONS(1850), - [anon_sym___thiscall] = ACTIONS(1850), - [anon_sym___vectorcall] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1852), - [anon_sym_RBRACE] = ACTIONS(1852), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1850), - [anon_sym_auto] = ACTIONS(1850), - [anon_sym_register] = ACTIONS(1850), - [anon_sym_inline] = ACTIONS(1850), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1850), - [anon_sym_const] = ACTIONS(1850), - [anon_sym_volatile] = ACTIONS(1850), - [anon_sym_restrict] = ACTIONS(1850), - [anon_sym__Atomic] = ACTIONS(1850), - [anon_sym_in] = ACTIONS(1850), - [anon_sym_out] = ACTIONS(1850), - [anon_sym_inout] = ACTIONS(1850), - [anon_sym_bycopy] = ACTIONS(1850), - [anon_sym_byref] = ACTIONS(1850), - [anon_sym_oneway] = ACTIONS(1850), - [anon_sym__Nullable] = ACTIONS(1850), - [anon_sym__Nonnull] = ACTIONS(1850), - [anon_sym__Nullable_result] = ACTIONS(1850), - [anon_sym__Null_unspecified] = ACTIONS(1850), - [anon_sym___autoreleasing] = ACTIONS(1850), - [anon_sym___nullable] = ACTIONS(1850), - [anon_sym___nonnull] = ACTIONS(1850), - [anon_sym___strong] = ACTIONS(1850), - [anon_sym___weak] = ACTIONS(1850), - [anon_sym___bridge] = ACTIONS(1850), - [anon_sym___bridge_transfer] = ACTIONS(1850), - [anon_sym___bridge_retained] = ACTIONS(1850), - [anon_sym___unsafe_unretained] = ACTIONS(1850), - [anon_sym___block] = ACTIONS(1850), - [anon_sym___kindof] = ACTIONS(1850), - [anon_sym___unused] = ACTIONS(1850), - [anon_sym__Complex] = ACTIONS(1850), - [anon_sym___complex] = ACTIONS(1850), - [anon_sym_IBOutlet] = ACTIONS(1850), - [anon_sym_IBInspectable] = ACTIONS(1850), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1850), - [anon_sym_signed] = ACTIONS(1850), - [anon_sym_unsigned] = ACTIONS(1850), - [anon_sym_long] = ACTIONS(1850), - [anon_sym_short] = ACTIONS(1850), - [sym_primitive_type] = ACTIONS(1850), - [anon_sym_enum] = ACTIONS(1850), - [anon_sym_NS_ENUM] = ACTIONS(1850), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1850), - [anon_sym_NS_OPTIONS] = ACTIONS(1850), - [anon_sym_struct] = ACTIONS(1850), - [anon_sym_union] = ACTIONS(1850), - [anon_sym_if] = ACTIONS(1850), - [anon_sym_switch] = ACTIONS(1850), - [anon_sym_case] = ACTIONS(1850), - [anon_sym_default] = ACTIONS(1850), - [anon_sym_while] = ACTIONS(1850), - [anon_sym_do] = ACTIONS(1850), - [anon_sym_for] = ACTIONS(1850), - [anon_sym_return] = ACTIONS(1850), - [anon_sym_break] = ACTIONS(1850), - [anon_sym_continue] = ACTIONS(1850), - [anon_sym_goto] = ACTIONS(1850), - [anon_sym_DASH_DASH] = ACTIONS(1852), - [anon_sym_PLUS_PLUS] = ACTIONS(1852), - [anon_sym_sizeof] = ACTIONS(1850), - [sym_number_literal] = ACTIONS(1852), - [anon_sym_L_SQUOTE] = ACTIONS(1852), - [anon_sym_u_SQUOTE] = ACTIONS(1852), - [anon_sym_U_SQUOTE] = ACTIONS(1852), - [anon_sym_u8_SQUOTE] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_L_DQUOTE] = ACTIONS(1852), - [anon_sym_u_DQUOTE] = ACTIONS(1852), - [anon_sym_U_DQUOTE] = ACTIONS(1852), - [anon_sym_u8_DQUOTE] = ACTIONS(1852), - [anon_sym_DQUOTE] = ACTIONS(1852), - [sym_true] = ACTIONS(1850), - [sym_false] = ACTIONS(1850), - [sym_null] = ACTIONS(1850), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1852), - [anon_sym_ATimport] = ACTIONS(1852), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1850), - [anon_sym_ATcompatibility_alias] = ACTIONS(1852), - [anon_sym_ATprotocol] = ACTIONS(1852), - [anon_sym_ATclass] = ACTIONS(1852), - [anon_sym_ATinterface] = ACTIONS(1852), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1850), - [sym_method_attribute_specifier] = ACTIONS(1850), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1850), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1850), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1850), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1850), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1850), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1850), - [anon_sym_NS_AVAILABLE] = ACTIONS(1850), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1850), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1850), - [anon_sym_API_AVAILABLE] = ACTIONS(1850), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1850), - [anon_sym_API_DEPRECATED] = ACTIONS(1850), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1850), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1850), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1850), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1850), - [anon_sym___deprecated_msg] = ACTIONS(1850), - [anon_sym___deprecated_enum_msg] = ACTIONS(1850), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1850), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1850), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1850), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1850), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1850), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1850), - [anon_sym_ATimplementation] = ACTIONS(1852), - [anon_sym_typeof] = ACTIONS(1850), - [anon_sym___typeof] = ACTIONS(1850), - [anon_sym___typeof__] = ACTIONS(1850), - [sym_self] = ACTIONS(1850), - [sym_super] = ACTIONS(1850), - [sym_nil] = ACTIONS(1850), - [sym_id] = ACTIONS(1850), - [sym_instancetype] = ACTIONS(1850), - [sym_Class] = ACTIONS(1850), - [sym_SEL] = ACTIONS(1850), - [sym_IMP] = ACTIONS(1850), - [sym_BOOL] = ACTIONS(1850), - [sym_auto] = ACTIONS(1850), - [anon_sym_ATautoreleasepool] = ACTIONS(1852), - [anon_sym_ATsynchronized] = ACTIONS(1852), - [anon_sym_ATtry] = ACTIONS(1852), - [anon_sym_ATthrow] = ACTIONS(1852), - [anon_sym_ATselector] = ACTIONS(1852), - [anon_sym_ATencode] = ACTIONS(1852), - [anon_sym_AT] = ACTIONS(1850), - [sym_YES] = ACTIONS(1850), - [sym_NO] = ACTIONS(1850), - [anon_sym___builtin_available] = ACTIONS(1850), - [anon_sym_ATavailable] = ACTIONS(1852), - [anon_sym_va_arg] = ACTIONS(1850), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1223] = { - [ts_builtin_sym_end] = ACTIONS(1800), - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1224] = { - [ts_builtin_sym_end] = ACTIONS(1840), - [sym_identifier] = ACTIONS(1838), - [aux_sym_preproc_include_token1] = ACTIONS(1840), - [aux_sym_preproc_def_token1] = ACTIONS(1840), - [aux_sym_preproc_if_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [anon_sym_LPAREN2] = ACTIONS(1840), - [anon_sym_BANG] = ACTIONS(1840), - [anon_sym_TILDE] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1840), - [anon_sym_CARET] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_typedef] = ACTIONS(1838), - [anon_sym_extern] = ACTIONS(1838), - [anon_sym___attribute] = ACTIONS(1838), - [anon_sym___attribute__] = ACTIONS(1838), - [anon_sym___declspec] = ACTIONS(1838), - [anon_sym___cdecl] = ACTIONS(1838), - [anon_sym___clrcall] = ACTIONS(1838), - [anon_sym___stdcall] = ACTIONS(1838), - [anon_sym___fastcall] = ACTIONS(1838), - [anon_sym___thiscall] = ACTIONS(1838), - [anon_sym___vectorcall] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1840), - [anon_sym_RBRACE] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1838), - [anon_sym_auto] = ACTIONS(1838), - [anon_sym_register] = ACTIONS(1838), - [anon_sym_inline] = ACTIONS(1838), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1838), - [anon_sym_const] = ACTIONS(1838), - [anon_sym_volatile] = ACTIONS(1838), - [anon_sym_restrict] = ACTIONS(1838), - [anon_sym__Atomic] = ACTIONS(1838), - [anon_sym_in] = ACTIONS(1838), - [anon_sym_out] = ACTIONS(1838), - [anon_sym_inout] = ACTIONS(1838), - [anon_sym_bycopy] = ACTIONS(1838), - [anon_sym_byref] = ACTIONS(1838), - [anon_sym_oneway] = ACTIONS(1838), - [anon_sym__Nullable] = ACTIONS(1838), - [anon_sym__Nonnull] = ACTIONS(1838), - [anon_sym__Nullable_result] = ACTIONS(1838), - [anon_sym__Null_unspecified] = ACTIONS(1838), - [anon_sym___autoreleasing] = ACTIONS(1838), - [anon_sym___nullable] = ACTIONS(1838), - [anon_sym___nonnull] = ACTIONS(1838), - [anon_sym___strong] = ACTIONS(1838), - [anon_sym___weak] = ACTIONS(1838), - [anon_sym___bridge] = ACTIONS(1838), - [anon_sym___bridge_transfer] = ACTIONS(1838), - [anon_sym___bridge_retained] = ACTIONS(1838), - [anon_sym___unsafe_unretained] = ACTIONS(1838), - [anon_sym___block] = ACTIONS(1838), - [anon_sym___kindof] = ACTIONS(1838), - [anon_sym___unused] = ACTIONS(1838), - [anon_sym__Complex] = ACTIONS(1838), - [anon_sym___complex] = ACTIONS(1838), - [anon_sym_IBOutlet] = ACTIONS(1838), - [anon_sym_IBInspectable] = ACTIONS(1838), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1838), - [anon_sym_signed] = ACTIONS(1838), - [anon_sym_unsigned] = ACTIONS(1838), - [anon_sym_long] = ACTIONS(1838), - [anon_sym_short] = ACTIONS(1838), - [sym_primitive_type] = ACTIONS(1838), - [anon_sym_enum] = ACTIONS(1838), - [anon_sym_NS_ENUM] = ACTIONS(1838), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1838), - [anon_sym_NS_OPTIONS] = ACTIONS(1838), - [anon_sym_struct] = ACTIONS(1838), - [anon_sym_union] = ACTIONS(1838), - [anon_sym_if] = ACTIONS(1838), - [anon_sym_switch] = ACTIONS(1838), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1838), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(1838), - [anon_sym_for] = ACTIONS(1838), - [anon_sym_return] = ACTIONS(1838), - [anon_sym_break] = ACTIONS(1838), - [anon_sym_continue] = ACTIONS(1838), - [anon_sym_goto] = ACTIONS(1838), - [anon_sym_DASH_DASH] = ACTIONS(1840), - [anon_sym_PLUS_PLUS] = ACTIONS(1840), - [anon_sym_sizeof] = ACTIONS(1838), - [sym_number_literal] = ACTIONS(1840), - [anon_sym_L_SQUOTE] = ACTIONS(1840), - [anon_sym_u_SQUOTE] = ACTIONS(1840), - [anon_sym_U_SQUOTE] = ACTIONS(1840), - [anon_sym_u8_SQUOTE] = ACTIONS(1840), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1838), - [sym_false] = ACTIONS(1838), - [sym_null] = ACTIONS(1838), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1840), - [anon_sym_ATimport] = ACTIONS(1840), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1838), - [anon_sym_ATcompatibility_alias] = ACTIONS(1840), - [anon_sym_ATprotocol] = ACTIONS(1840), - [anon_sym_ATclass] = ACTIONS(1840), - [anon_sym_ATinterface] = ACTIONS(1840), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1838), - [sym_method_attribute_specifier] = ACTIONS(1838), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1838), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1838), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1838), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1838), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1838), - [anon_sym_NS_AVAILABLE] = ACTIONS(1838), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1838), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_API_AVAILABLE] = ACTIONS(1838), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_API_DEPRECATED] = ACTIONS(1838), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1838), - [anon_sym___deprecated_msg] = ACTIONS(1838), - [anon_sym___deprecated_enum_msg] = ACTIONS(1838), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1838), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1838), - [anon_sym_ATimplementation] = ACTIONS(1840), - [anon_sym_typeof] = ACTIONS(1838), - [anon_sym___typeof] = ACTIONS(1838), - [anon_sym___typeof__] = ACTIONS(1838), - [sym_self] = ACTIONS(1838), - [sym_super] = ACTIONS(1838), - [sym_nil] = ACTIONS(1838), - [sym_id] = ACTIONS(1838), - [sym_instancetype] = ACTIONS(1838), - [sym_Class] = ACTIONS(1838), - [sym_SEL] = ACTIONS(1838), - [sym_IMP] = ACTIONS(1838), - [sym_BOOL] = ACTIONS(1838), - [sym_auto] = ACTIONS(1838), - [anon_sym_ATautoreleasepool] = ACTIONS(1840), - [anon_sym_ATsynchronized] = ACTIONS(1840), - [anon_sym_ATtry] = ACTIONS(1840), - [anon_sym_ATthrow] = ACTIONS(1840), - [anon_sym_ATselector] = ACTIONS(1840), - [anon_sym_ATencode] = ACTIONS(1840), - [anon_sym_AT] = ACTIONS(1838), - [sym_YES] = ACTIONS(1838), - [sym_NO] = ACTIONS(1838), - [anon_sym___builtin_available] = ACTIONS(1838), - [anon_sym_ATavailable] = ACTIONS(1840), - [anon_sym_va_arg] = ACTIONS(1838), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1225] = { - [ts_builtin_sym_end] = ACTIONS(1800), - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1226] = { - [ts_builtin_sym_end] = ACTIONS(1800), - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1227] = { - [ts_builtin_sym_end] = ACTIONS(1840), - [sym_identifier] = ACTIONS(1838), - [aux_sym_preproc_include_token1] = ACTIONS(1840), - [aux_sym_preproc_def_token1] = ACTIONS(1840), - [aux_sym_preproc_if_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [anon_sym_LPAREN2] = ACTIONS(1840), - [anon_sym_BANG] = ACTIONS(1840), - [anon_sym_TILDE] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1840), - [anon_sym_CARET] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_typedef] = ACTIONS(1838), - [anon_sym_extern] = ACTIONS(1838), - [anon_sym___attribute] = ACTIONS(1838), - [anon_sym___attribute__] = ACTIONS(1838), - [anon_sym___declspec] = ACTIONS(1838), - [anon_sym___cdecl] = ACTIONS(1838), - [anon_sym___clrcall] = ACTIONS(1838), - [anon_sym___stdcall] = ACTIONS(1838), - [anon_sym___fastcall] = ACTIONS(1838), - [anon_sym___thiscall] = ACTIONS(1838), - [anon_sym___vectorcall] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1840), - [anon_sym_RBRACE] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1838), - [anon_sym_auto] = ACTIONS(1838), - [anon_sym_register] = ACTIONS(1838), - [anon_sym_inline] = ACTIONS(1838), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1838), - [anon_sym_const] = ACTIONS(1838), - [anon_sym_volatile] = ACTIONS(1838), - [anon_sym_restrict] = ACTIONS(1838), - [anon_sym__Atomic] = ACTIONS(1838), - [anon_sym_in] = ACTIONS(1838), - [anon_sym_out] = ACTIONS(1838), - [anon_sym_inout] = ACTIONS(1838), - [anon_sym_bycopy] = ACTIONS(1838), - [anon_sym_byref] = ACTIONS(1838), - [anon_sym_oneway] = ACTIONS(1838), - [anon_sym__Nullable] = ACTIONS(1838), - [anon_sym__Nonnull] = ACTIONS(1838), - [anon_sym__Nullable_result] = ACTIONS(1838), - [anon_sym__Null_unspecified] = ACTIONS(1838), - [anon_sym___autoreleasing] = ACTIONS(1838), - [anon_sym___nullable] = ACTIONS(1838), - [anon_sym___nonnull] = ACTIONS(1838), - [anon_sym___strong] = ACTIONS(1838), - [anon_sym___weak] = ACTIONS(1838), - [anon_sym___bridge] = ACTIONS(1838), - [anon_sym___bridge_transfer] = ACTIONS(1838), - [anon_sym___bridge_retained] = ACTIONS(1838), - [anon_sym___unsafe_unretained] = ACTIONS(1838), - [anon_sym___block] = ACTIONS(1838), - [anon_sym___kindof] = ACTIONS(1838), - [anon_sym___unused] = ACTIONS(1838), - [anon_sym__Complex] = ACTIONS(1838), - [anon_sym___complex] = ACTIONS(1838), - [anon_sym_IBOutlet] = ACTIONS(1838), - [anon_sym_IBInspectable] = ACTIONS(1838), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1838), - [anon_sym_signed] = ACTIONS(1838), - [anon_sym_unsigned] = ACTIONS(1838), - [anon_sym_long] = ACTIONS(1838), - [anon_sym_short] = ACTIONS(1838), - [sym_primitive_type] = ACTIONS(1838), - [anon_sym_enum] = ACTIONS(1838), - [anon_sym_NS_ENUM] = ACTIONS(1838), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1838), - [anon_sym_NS_OPTIONS] = ACTIONS(1838), - [anon_sym_struct] = ACTIONS(1838), - [anon_sym_union] = ACTIONS(1838), - [anon_sym_if] = ACTIONS(1838), - [anon_sym_switch] = ACTIONS(1838), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1838), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(1838), - [anon_sym_for] = ACTIONS(1838), - [anon_sym_return] = ACTIONS(1838), - [anon_sym_break] = ACTIONS(1838), - [anon_sym_continue] = ACTIONS(1838), - [anon_sym_goto] = ACTIONS(1838), - [anon_sym_DASH_DASH] = ACTIONS(1840), - [anon_sym_PLUS_PLUS] = ACTIONS(1840), - [anon_sym_sizeof] = ACTIONS(1838), - [sym_number_literal] = ACTIONS(1840), - [anon_sym_L_SQUOTE] = ACTIONS(1840), - [anon_sym_u_SQUOTE] = ACTIONS(1840), - [anon_sym_U_SQUOTE] = ACTIONS(1840), - [anon_sym_u8_SQUOTE] = ACTIONS(1840), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1838), - [sym_false] = ACTIONS(1838), - [sym_null] = ACTIONS(1838), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1840), - [anon_sym_ATimport] = ACTIONS(1840), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1838), - [anon_sym_ATcompatibility_alias] = ACTIONS(1840), - [anon_sym_ATprotocol] = ACTIONS(1840), - [anon_sym_ATclass] = ACTIONS(1840), - [anon_sym_ATinterface] = ACTIONS(1840), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1838), - [sym_method_attribute_specifier] = ACTIONS(1838), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1838), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1838), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1838), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1838), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1838), - [anon_sym_NS_AVAILABLE] = ACTIONS(1838), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1838), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_API_AVAILABLE] = ACTIONS(1838), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_API_DEPRECATED] = ACTIONS(1838), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1838), - [anon_sym___deprecated_msg] = ACTIONS(1838), - [anon_sym___deprecated_enum_msg] = ACTIONS(1838), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1838), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1838), - [anon_sym_ATimplementation] = ACTIONS(1840), - [anon_sym_typeof] = ACTIONS(1838), - [anon_sym___typeof] = ACTIONS(1838), - [anon_sym___typeof__] = ACTIONS(1838), - [sym_self] = ACTIONS(1838), - [sym_super] = ACTIONS(1838), - [sym_nil] = ACTIONS(1838), - [sym_id] = ACTIONS(1838), - [sym_instancetype] = ACTIONS(1838), - [sym_Class] = ACTIONS(1838), - [sym_SEL] = ACTIONS(1838), - [sym_IMP] = ACTIONS(1838), - [sym_BOOL] = ACTIONS(1838), - [sym_auto] = ACTIONS(1838), - [anon_sym_ATautoreleasepool] = ACTIONS(1840), - [anon_sym_ATsynchronized] = ACTIONS(1840), - [anon_sym_ATtry] = ACTIONS(1840), - [anon_sym_ATthrow] = ACTIONS(1840), - [anon_sym_ATselector] = ACTIONS(1840), - [anon_sym_ATencode] = ACTIONS(1840), - [anon_sym_AT] = ACTIONS(1838), - [sym_YES] = ACTIONS(1838), - [sym_NO] = ACTIONS(1838), - [anon_sym___builtin_available] = ACTIONS(1838), - [anon_sym_ATavailable] = ACTIONS(1840), - [anon_sym_va_arg] = ACTIONS(1838), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1228] = { - [ts_builtin_sym_end] = ACTIONS(1840), - [sym_identifier] = ACTIONS(1838), - [aux_sym_preproc_include_token1] = ACTIONS(1840), - [aux_sym_preproc_def_token1] = ACTIONS(1840), - [aux_sym_preproc_if_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [anon_sym_LPAREN2] = ACTIONS(1840), - [anon_sym_BANG] = ACTIONS(1840), - [anon_sym_TILDE] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1840), - [anon_sym_CARET] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_typedef] = ACTIONS(1838), - [anon_sym_extern] = ACTIONS(1838), - [anon_sym___attribute] = ACTIONS(1838), - [anon_sym___attribute__] = ACTIONS(1838), - [anon_sym___declspec] = ACTIONS(1838), - [anon_sym___cdecl] = ACTIONS(1838), - [anon_sym___clrcall] = ACTIONS(1838), - [anon_sym___stdcall] = ACTIONS(1838), - [anon_sym___fastcall] = ACTIONS(1838), - [anon_sym___thiscall] = ACTIONS(1838), - [anon_sym___vectorcall] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1840), - [anon_sym_RBRACE] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1838), - [anon_sym_auto] = ACTIONS(1838), - [anon_sym_register] = ACTIONS(1838), - [anon_sym_inline] = ACTIONS(1838), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1838), - [anon_sym_const] = ACTIONS(1838), - [anon_sym_volatile] = ACTIONS(1838), - [anon_sym_restrict] = ACTIONS(1838), - [anon_sym__Atomic] = ACTIONS(1838), - [anon_sym_in] = ACTIONS(1838), - [anon_sym_out] = ACTIONS(1838), - [anon_sym_inout] = ACTIONS(1838), - [anon_sym_bycopy] = ACTIONS(1838), - [anon_sym_byref] = ACTIONS(1838), - [anon_sym_oneway] = ACTIONS(1838), - [anon_sym__Nullable] = ACTIONS(1838), - [anon_sym__Nonnull] = ACTIONS(1838), - [anon_sym__Nullable_result] = ACTIONS(1838), - [anon_sym__Null_unspecified] = ACTIONS(1838), - [anon_sym___autoreleasing] = ACTIONS(1838), - [anon_sym___nullable] = ACTIONS(1838), - [anon_sym___nonnull] = ACTIONS(1838), - [anon_sym___strong] = ACTIONS(1838), - [anon_sym___weak] = ACTIONS(1838), - [anon_sym___bridge] = ACTIONS(1838), - [anon_sym___bridge_transfer] = ACTIONS(1838), - [anon_sym___bridge_retained] = ACTIONS(1838), - [anon_sym___unsafe_unretained] = ACTIONS(1838), - [anon_sym___block] = ACTIONS(1838), - [anon_sym___kindof] = ACTIONS(1838), - [anon_sym___unused] = ACTIONS(1838), - [anon_sym__Complex] = ACTIONS(1838), - [anon_sym___complex] = ACTIONS(1838), - [anon_sym_IBOutlet] = ACTIONS(1838), - [anon_sym_IBInspectable] = ACTIONS(1838), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1838), - [anon_sym_signed] = ACTIONS(1838), - [anon_sym_unsigned] = ACTIONS(1838), - [anon_sym_long] = ACTIONS(1838), - [anon_sym_short] = ACTIONS(1838), - [sym_primitive_type] = ACTIONS(1838), - [anon_sym_enum] = ACTIONS(1838), - [anon_sym_NS_ENUM] = ACTIONS(1838), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1838), - [anon_sym_NS_OPTIONS] = ACTIONS(1838), - [anon_sym_struct] = ACTIONS(1838), - [anon_sym_union] = ACTIONS(1838), - [anon_sym_if] = ACTIONS(1838), - [anon_sym_switch] = ACTIONS(1838), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1838), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(1838), - [anon_sym_for] = ACTIONS(1838), - [anon_sym_return] = ACTIONS(1838), - [anon_sym_break] = ACTIONS(1838), - [anon_sym_continue] = ACTIONS(1838), - [anon_sym_goto] = ACTIONS(1838), - [anon_sym_DASH_DASH] = ACTIONS(1840), - [anon_sym_PLUS_PLUS] = ACTIONS(1840), - [anon_sym_sizeof] = ACTIONS(1838), - [sym_number_literal] = ACTIONS(1840), - [anon_sym_L_SQUOTE] = ACTIONS(1840), - [anon_sym_u_SQUOTE] = ACTIONS(1840), - [anon_sym_U_SQUOTE] = ACTIONS(1840), - [anon_sym_u8_SQUOTE] = ACTIONS(1840), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1838), - [sym_false] = ACTIONS(1838), - [sym_null] = ACTIONS(1838), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1840), - [anon_sym_ATimport] = ACTIONS(1840), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1838), - [anon_sym_ATcompatibility_alias] = ACTIONS(1840), - [anon_sym_ATprotocol] = ACTIONS(1840), - [anon_sym_ATclass] = ACTIONS(1840), - [anon_sym_ATinterface] = ACTIONS(1840), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1838), - [sym_method_attribute_specifier] = ACTIONS(1838), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1838), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1838), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1838), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1838), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1838), - [anon_sym_NS_AVAILABLE] = ACTIONS(1838), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1838), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_API_AVAILABLE] = ACTIONS(1838), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_API_DEPRECATED] = ACTIONS(1838), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1838), - [anon_sym___deprecated_msg] = ACTIONS(1838), - [anon_sym___deprecated_enum_msg] = ACTIONS(1838), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1838), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1838), - [anon_sym_ATimplementation] = ACTIONS(1840), - [anon_sym_typeof] = ACTIONS(1838), - [anon_sym___typeof] = ACTIONS(1838), - [anon_sym___typeof__] = ACTIONS(1838), - [sym_self] = ACTIONS(1838), - [sym_super] = ACTIONS(1838), - [sym_nil] = ACTIONS(1838), - [sym_id] = ACTIONS(1838), - [sym_instancetype] = ACTIONS(1838), - [sym_Class] = ACTIONS(1838), - [sym_SEL] = ACTIONS(1838), - [sym_IMP] = ACTIONS(1838), - [sym_BOOL] = ACTIONS(1838), - [sym_auto] = ACTIONS(1838), - [anon_sym_ATautoreleasepool] = ACTIONS(1840), - [anon_sym_ATsynchronized] = ACTIONS(1840), - [anon_sym_ATtry] = ACTIONS(1840), - [anon_sym_ATthrow] = ACTIONS(1840), - [anon_sym_ATselector] = ACTIONS(1840), - [anon_sym_ATencode] = ACTIONS(1840), - [anon_sym_AT] = ACTIONS(1838), - [sym_YES] = ACTIONS(1838), - [sym_NO] = ACTIONS(1838), - [anon_sym___builtin_available] = ACTIONS(1838), - [anon_sym_ATavailable] = ACTIONS(1840), - [anon_sym_va_arg] = ACTIONS(1838), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1229] = { - [ts_builtin_sym_end] = ACTIONS(1800), - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1230] = { - [ts_builtin_sym_end] = ACTIONS(1824), - [sym_identifier] = ACTIONS(1822), - [aux_sym_preproc_include_token1] = ACTIONS(1824), - [aux_sym_preproc_def_token1] = ACTIONS(1824), - [aux_sym_preproc_if_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1822), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym___attribute] = ACTIONS(1822), - [anon_sym___attribute__] = ACTIONS(1822), - [anon_sym___declspec] = ACTIONS(1822), - [anon_sym___cdecl] = ACTIONS(1822), - [anon_sym___clrcall] = ACTIONS(1822), - [anon_sym___stdcall] = ACTIONS(1822), - [anon_sym___fastcall] = ACTIONS(1822), - [anon_sym___thiscall] = ACTIONS(1822), - [anon_sym___vectorcall] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [anon_sym__Atomic] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_out] = ACTIONS(1822), - [anon_sym_inout] = ACTIONS(1822), - [anon_sym_bycopy] = ACTIONS(1822), - [anon_sym_byref] = ACTIONS(1822), - [anon_sym_oneway] = ACTIONS(1822), - [anon_sym__Nullable] = ACTIONS(1822), - [anon_sym__Nonnull] = ACTIONS(1822), - [anon_sym__Nullable_result] = ACTIONS(1822), - [anon_sym__Null_unspecified] = ACTIONS(1822), - [anon_sym___autoreleasing] = ACTIONS(1822), - [anon_sym___nullable] = ACTIONS(1822), - [anon_sym___nonnull] = ACTIONS(1822), - [anon_sym___strong] = ACTIONS(1822), - [anon_sym___weak] = ACTIONS(1822), - [anon_sym___bridge] = ACTIONS(1822), - [anon_sym___bridge_transfer] = ACTIONS(1822), - [anon_sym___bridge_retained] = ACTIONS(1822), - [anon_sym___unsafe_unretained] = ACTIONS(1822), - [anon_sym___block] = ACTIONS(1822), - [anon_sym___kindof] = ACTIONS(1822), - [anon_sym___unused] = ACTIONS(1822), - [anon_sym__Complex] = ACTIONS(1822), - [anon_sym___complex] = ACTIONS(1822), - [anon_sym_IBOutlet] = ACTIONS(1822), - [anon_sym_IBInspectable] = ACTIONS(1822), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_NS_ENUM] = ACTIONS(1822), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1822), - [anon_sym_NS_OPTIONS] = ACTIONS(1822), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_case] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_goto] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1822), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_L_SQUOTE] = ACTIONS(1824), - [anon_sym_u_SQUOTE] = ACTIONS(1824), - [anon_sym_U_SQUOTE] = ACTIONS(1824), - [anon_sym_u8_SQUOTE] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_L_DQUOTE] = ACTIONS(1824), - [anon_sym_u_DQUOTE] = ACTIONS(1824), - [anon_sym_U_DQUOTE] = ACTIONS(1824), - [anon_sym_u8_DQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym_true] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1824), - [anon_sym_ATimport] = ACTIONS(1824), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1822), - [anon_sym_ATcompatibility_alias] = ACTIONS(1824), - [anon_sym_ATprotocol] = ACTIONS(1824), - [anon_sym_ATclass] = ACTIONS(1824), - [anon_sym_ATinterface] = ACTIONS(1824), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1822), - [sym_method_attribute_specifier] = ACTIONS(1822), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1822), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE] = ACTIONS(1822), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_API_AVAILABLE] = ACTIONS(1822), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_API_DEPRECATED] = ACTIONS(1822), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1822), - [anon_sym___deprecated_msg] = ACTIONS(1822), - [anon_sym___deprecated_enum_msg] = ACTIONS(1822), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1822), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1822), - [anon_sym_ATimplementation] = ACTIONS(1824), - [anon_sym_typeof] = ACTIONS(1822), - [anon_sym___typeof] = ACTIONS(1822), - [anon_sym___typeof__] = ACTIONS(1822), - [sym_self] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_nil] = ACTIONS(1822), - [sym_id] = ACTIONS(1822), - [sym_instancetype] = ACTIONS(1822), - [sym_Class] = ACTIONS(1822), - [sym_SEL] = ACTIONS(1822), - [sym_IMP] = ACTIONS(1822), - [sym_BOOL] = ACTIONS(1822), - [sym_auto] = ACTIONS(1822), - [anon_sym_ATautoreleasepool] = ACTIONS(1824), - [anon_sym_ATsynchronized] = ACTIONS(1824), - [anon_sym_ATtry] = ACTIONS(1824), - [anon_sym_ATthrow] = ACTIONS(1824), - [anon_sym_ATselector] = ACTIONS(1824), - [anon_sym_ATencode] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1822), - [sym_YES] = ACTIONS(1822), - [sym_NO] = ACTIONS(1822), - [anon_sym___builtin_available] = ACTIONS(1822), - [anon_sym_ATavailable] = ACTIONS(1824), - [anon_sym_va_arg] = ACTIONS(1822), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1231] = { - [ts_builtin_sym_end] = ACTIONS(1800), - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1232] = { - [ts_builtin_sym_end] = ACTIONS(1800), - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1233] = { - [ts_builtin_sym_end] = ACTIONS(1824), - [sym_identifier] = ACTIONS(1822), - [aux_sym_preproc_include_token1] = ACTIONS(1824), - [aux_sym_preproc_def_token1] = ACTIONS(1824), - [aux_sym_preproc_if_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1822), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym___attribute] = ACTIONS(1822), - [anon_sym___attribute__] = ACTIONS(1822), - [anon_sym___declspec] = ACTIONS(1822), - [anon_sym___cdecl] = ACTIONS(1822), - [anon_sym___clrcall] = ACTIONS(1822), - [anon_sym___stdcall] = ACTIONS(1822), - [anon_sym___fastcall] = ACTIONS(1822), - [anon_sym___thiscall] = ACTIONS(1822), - [anon_sym___vectorcall] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [anon_sym__Atomic] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_out] = ACTIONS(1822), - [anon_sym_inout] = ACTIONS(1822), - [anon_sym_bycopy] = ACTIONS(1822), - [anon_sym_byref] = ACTIONS(1822), - [anon_sym_oneway] = ACTIONS(1822), - [anon_sym__Nullable] = ACTIONS(1822), - [anon_sym__Nonnull] = ACTIONS(1822), - [anon_sym__Nullable_result] = ACTIONS(1822), - [anon_sym__Null_unspecified] = ACTIONS(1822), - [anon_sym___autoreleasing] = ACTIONS(1822), - [anon_sym___nullable] = ACTIONS(1822), - [anon_sym___nonnull] = ACTIONS(1822), - [anon_sym___strong] = ACTIONS(1822), - [anon_sym___weak] = ACTIONS(1822), - [anon_sym___bridge] = ACTIONS(1822), - [anon_sym___bridge_transfer] = ACTIONS(1822), - [anon_sym___bridge_retained] = ACTIONS(1822), - [anon_sym___unsafe_unretained] = ACTIONS(1822), - [anon_sym___block] = ACTIONS(1822), - [anon_sym___kindof] = ACTIONS(1822), - [anon_sym___unused] = ACTIONS(1822), - [anon_sym__Complex] = ACTIONS(1822), - [anon_sym___complex] = ACTIONS(1822), - [anon_sym_IBOutlet] = ACTIONS(1822), - [anon_sym_IBInspectable] = ACTIONS(1822), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_NS_ENUM] = ACTIONS(1822), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1822), - [anon_sym_NS_OPTIONS] = ACTIONS(1822), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_case] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_goto] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1822), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_L_SQUOTE] = ACTIONS(1824), - [anon_sym_u_SQUOTE] = ACTIONS(1824), - [anon_sym_U_SQUOTE] = ACTIONS(1824), - [anon_sym_u8_SQUOTE] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_L_DQUOTE] = ACTIONS(1824), - [anon_sym_u_DQUOTE] = ACTIONS(1824), - [anon_sym_U_DQUOTE] = ACTIONS(1824), - [anon_sym_u8_DQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym_true] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1824), - [anon_sym_ATimport] = ACTIONS(1824), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1822), - [anon_sym_ATcompatibility_alias] = ACTIONS(1824), - [anon_sym_ATprotocol] = ACTIONS(1824), - [anon_sym_ATclass] = ACTIONS(1824), - [anon_sym_ATinterface] = ACTIONS(1824), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1822), - [sym_method_attribute_specifier] = ACTIONS(1822), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1822), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE] = ACTIONS(1822), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_API_AVAILABLE] = ACTIONS(1822), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_API_DEPRECATED] = ACTIONS(1822), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1822), - [anon_sym___deprecated_msg] = ACTIONS(1822), - [anon_sym___deprecated_enum_msg] = ACTIONS(1822), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1822), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1822), - [anon_sym_ATimplementation] = ACTIONS(1824), - [anon_sym_typeof] = ACTIONS(1822), - [anon_sym___typeof] = ACTIONS(1822), - [anon_sym___typeof__] = ACTIONS(1822), - [sym_self] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_nil] = ACTIONS(1822), - [sym_id] = ACTIONS(1822), - [sym_instancetype] = ACTIONS(1822), - [sym_Class] = ACTIONS(1822), - [sym_SEL] = ACTIONS(1822), - [sym_IMP] = ACTIONS(1822), - [sym_BOOL] = ACTIONS(1822), - [sym_auto] = ACTIONS(1822), - [anon_sym_ATautoreleasepool] = ACTIONS(1824), - [anon_sym_ATsynchronized] = ACTIONS(1824), - [anon_sym_ATtry] = ACTIONS(1824), - [anon_sym_ATthrow] = ACTIONS(1824), - [anon_sym_ATselector] = ACTIONS(1824), - [anon_sym_ATencode] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1822), - [sym_YES] = ACTIONS(1822), - [sym_NO] = ACTIONS(1822), - [anon_sym___builtin_available] = ACTIONS(1822), - [anon_sym_ATavailable] = ACTIONS(1824), - [anon_sym_va_arg] = ACTIONS(1822), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1234] = { - [ts_builtin_sym_end] = ACTIONS(1824), - [sym_identifier] = ACTIONS(1822), - [aux_sym_preproc_include_token1] = ACTIONS(1824), - [aux_sym_preproc_def_token1] = ACTIONS(1824), - [aux_sym_preproc_if_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1822), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym___attribute] = ACTIONS(1822), - [anon_sym___attribute__] = ACTIONS(1822), - [anon_sym___declspec] = ACTIONS(1822), - [anon_sym___cdecl] = ACTIONS(1822), - [anon_sym___clrcall] = ACTIONS(1822), - [anon_sym___stdcall] = ACTIONS(1822), - [anon_sym___fastcall] = ACTIONS(1822), - [anon_sym___thiscall] = ACTIONS(1822), - [anon_sym___vectorcall] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [anon_sym__Atomic] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_out] = ACTIONS(1822), - [anon_sym_inout] = ACTIONS(1822), - [anon_sym_bycopy] = ACTIONS(1822), - [anon_sym_byref] = ACTIONS(1822), - [anon_sym_oneway] = ACTIONS(1822), - [anon_sym__Nullable] = ACTIONS(1822), - [anon_sym__Nonnull] = ACTIONS(1822), - [anon_sym__Nullable_result] = ACTIONS(1822), - [anon_sym__Null_unspecified] = ACTIONS(1822), - [anon_sym___autoreleasing] = ACTIONS(1822), - [anon_sym___nullable] = ACTIONS(1822), - [anon_sym___nonnull] = ACTIONS(1822), - [anon_sym___strong] = ACTIONS(1822), - [anon_sym___weak] = ACTIONS(1822), - [anon_sym___bridge] = ACTIONS(1822), - [anon_sym___bridge_transfer] = ACTIONS(1822), - [anon_sym___bridge_retained] = ACTIONS(1822), - [anon_sym___unsafe_unretained] = ACTIONS(1822), - [anon_sym___block] = ACTIONS(1822), - [anon_sym___kindof] = ACTIONS(1822), - [anon_sym___unused] = ACTIONS(1822), - [anon_sym__Complex] = ACTIONS(1822), - [anon_sym___complex] = ACTIONS(1822), - [anon_sym_IBOutlet] = ACTIONS(1822), - [anon_sym_IBInspectable] = ACTIONS(1822), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_NS_ENUM] = ACTIONS(1822), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1822), - [anon_sym_NS_OPTIONS] = ACTIONS(1822), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_case] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_goto] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1822), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_L_SQUOTE] = ACTIONS(1824), - [anon_sym_u_SQUOTE] = ACTIONS(1824), - [anon_sym_U_SQUOTE] = ACTIONS(1824), - [anon_sym_u8_SQUOTE] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_L_DQUOTE] = ACTIONS(1824), - [anon_sym_u_DQUOTE] = ACTIONS(1824), - [anon_sym_U_DQUOTE] = ACTIONS(1824), - [anon_sym_u8_DQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym_true] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1824), - [anon_sym_ATimport] = ACTIONS(1824), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1822), - [anon_sym_ATcompatibility_alias] = ACTIONS(1824), - [anon_sym_ATprotocol] = ACTIONS(1824), - [anon_sym_ATclass] = ACTIONS(1824), - [anon_sym_ATinterface] = ACTIONS(1824), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1822), - [sym_method_attribute_specifier] = ACTIONS(1822), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1822), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE] = ACTIONS(1822), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_API_AVAILABLE] = ACTIONS(1822), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_API_DEPRECATED] = ACTIONS(1822), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1822), - [anon_sym___deprecated_msg] = ACTIONS(1822), - [anon_sym___deprecated_enum_msg] = ACTIONS(1822), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1822), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1822), - [anon_sym_ATimplementation] = ACTIONS(1824), - [anon_sym_typeof] = ACTIONS(1822), - [anon_sym___typeof] = ACTIONS(1822), - [anon_sym___typeof__] = ACTIONS(1822), - [sym_self] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_nil] = ACTIONS(1822), - [sym_id] = ACTIONS(1822), - [sym_instancetype] = ACTIONS(1822), - [sym_Class] = ACTIONS(1822), - [sym_SEL] = ACTIONS(1822), - [sym_IMP] = ACTIONS(1822), - [sym_BOOL] = ACTIONS(1822), - [sym_auto] = ACTIONS(1822), - [anon_sym_ATautoreleasepool] = ACTIONS(1824), - [anon_sym_ATsynchronized] = ACTIONS(1824), - [anon_sym_ATtry] = ACTIONS(1824), - [anon_sym_ATthrow] = ACTIONS(1824), - [anon_sym_ATselector] = ACTIONS(1824), - [anon_sym_ATencode] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1822), - [sym_YES] = ACTIONS(1822), - [sym_NO] = ACTIONS(1822), - [anon_sym___builtin_available] = ACTIONS(1822), - [anon_sym_ATavailable] = ACTIONS(1824), - [anon_sym_va_arg] = ACTIONS(1822), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1235] = { - [ts_builtin_sym_end] = ACTIONS(1892), - [sym_identifier] = ACTIONS(1890), - [aux_sym_preproc_include_token1] = ACTIONS(1892), - [aux_sym_preproc_def_token1] = ACTIONS(1892), - [aux_sym_preproc_if_token1] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1890), - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_PLUS] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1892), - [anon_sym_CARET] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_typedef] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym___attribute] = ACTIONS(1890), - [anon_sym___attribute__] = ACTIONS(1890), - [anon_sym___declspec] = ACTIONS(1890), - [anon_sym___cdecl] = ACTIONS(1890), - [anon_sym___clrcall] = ACTIONS(1890), - [anon_sym___stdcall] = ACTIONS(1890), - [anon_sym___fastcall] = ACTIONS(1890), - [anon_sym___thiscall] = ACTIONS(1890), - [anon_sym___vectorcall] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1890), - [anon_sym_auto] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_inline] = ACTIONS(1890), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [anon_sym_volatile] = ACTIONS(1890), - [anon_sym_restrict] = ACTIONS(1890), - [anon_sym__Atomic] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(1890), - [anon_sym_out] = ACTIONS(1890), - [anon_sym_inout] = ACTIONS(1890), - [anon_sym_bycopy] = ACTIONS(1890), - [anon_sym_byref] = ACTIONS(1890), - [anon_sym_oneway] = ACTIONS(1890), - [anon_sym__Nullable] = ACTIONS(1890), - [anon_sym__Nonnull] = ACTIONS(1890), - [anon_sym__Nullable_result] = ACTIONS(1890), - [anon_sym__Null_unspecified] = ACTIONS(1890), - [anon_sym___autoreleasing] = ACTIONS(1890), - [anon_sym___nullable] = ACTIONS(1890), - [anon_sym___nonnull] = ACTIONS(1890), - [anon_sym___strong] = ACTIONS(1890), - [anon_sym___weak] = ACTIONS(1890), - [anon_sym___bridge] = ACTIONS(1890), - [anon_sym___bridge_transfer] = ACTIONS(1890), - [anon_sym___bridge_retained] = ACTIONS(1890), - [anon_sym___unsafe_unretained] = ACTIONS(1890), - [anon_sym___block] = ACTIONS(1890), - [anon_sym___kindof] = ACTIONS(1890), - [anon_sym___unused] = ACTIONS(1890), - [anon_sym__Complex] = ACTIONS(1890), - [anon_sym___complex] = ACTIONS(1890), - [anon_sym_IBOutlet] = ACTIONS(1890), - [anon_sym_IBInspectable] = ACTIONS(1890), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1890), - [anon_sym_signed] = ACTIONS(1890), - [anon_sym_unsigned] = ACTIONS(1890), - [anon_sym_long] = ACTIONS(1890), - [anon_sym_short] = ACTIONS(1890), - [sym_primitive_type] = ACTIONS(1890), - [anon_sym_enum] = ACTIONS(1890), - [anon_sym_NS_ENUM] = ACTIONS(1890), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1890), - [anon_sym_NS_OPTIONS] = ACTIONS(1890), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_switch] = ACTIONS(1890), - [anon_sym_case] = ACTIONS(1890), - [anon_sym_default] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_goto] = ACTIONS(1890), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1890), - [sym_number_literal] = ACTIONS(1892), - [anon_sym_L_SQUOTE] = ACTIONS(1892), - [anon_sym_u_SQUOTE] = ACTIONS(1892), - [anon_sym_U_SQUOTE] = ACTIONS(1892), - [anon_sym_u8_SQUOTE] = ACTIONS(1892), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_L_DQUOTE] = ACTIONS(1892), - [anon_sym_u_DQUOTE] = ACTIONS(1892), - [anon_sym_U_DQUOTE] = ACTIONS(1892), - [anon_sym_u8_DQUOTE] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym_true] = ACTIONS(1890), - [sym_false] = ACTIONS(1890), - [sym_null] = ACTIONS(1890), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1892), - [anon_sym_ATimport] = ACTIONS(1892), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1890), - [anon_sym_ATcompatibility_alias] = ACTIONS(1892), - [anon_sym_ATprotocol] = ACTIONS(1892), - [anon_sym_ATclass] = ACTIONS(1892), - [anon_sym_ATinterface] = ACTIONS(1892), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1890), - [sym_method_attribute_specifier] = ACTIONS(1890), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1890), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1890), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1890), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1890), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1890), - [anon_sym_NS_AVAILABLE] = ACTIONS(1890), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1890), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_API_AVAILABLE] = ACTIONS(1890), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_API_DEPRECATED] = ACTIONS(1890), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1890), - [anon_sym___deprecated_msg] = ACTIONS(1890), - [anon_sym___deprecated_enum_msg] = ACTIONS(1890), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1890), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1890), - [anon_sym_ATimplementation] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(1890), - [anon_sym___typeof] = ACTIONS(1890), - [anon_sym___typeof__] = ACTIONS(1890), - [sym_self] = ACTIONS(1890), - [sym_super] = ACTIONS(1890), - [sym_nil] = ACTIONS(1890), - [sym_id] = ACTIONS(1890), - [sym_instancetype] = ACTIONS(1890), - [sym_Class] = ACTIONS(1890), - [sym_SEL] = ACTIONS(1890), - [sym_IMP] = ACTIONS(1890), - [sym_BOOL] = ACTIONS(1890), - [sym_auto] = ACTIONS(1890), - [anon_sym_ATautoreleasepool] = ACTIONS(1892), - [anon_sym_ATsynchronized] = ACTIONS(1892), - [anon_sym_ATtry] = ACTIONS(1892), - [anon_sym_ATthrow] = ACTIONS(1892), - [anon_sym_ATselector] = ACTIONS(1892), - [anon_sym_ATencode] = ACTIONS(1892), - [anon_sym_AT] = ACTIONS(1890), - [sym_YES] = ACTIONS(1890), - [sym_NO] = ACTIONS(1890), - [anon_sym___builtin_available] = ACTIONS(1890), - [anon_sym_ATavailable] = ACTIONS(1892), - [anon_sym_va_arg] = ACTIONS(1890), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1236] = { - [ts_builtin_sym_end] = ACTIONS(1836), - [sym_identifier] = ACTIONS(1834), - [aux_sym_preproc_include_token1] = ACTIONS(1836), - [aux_sym_preproc_def_token1] = ACTIONS(1836), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1834), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1834), - [anon_sym_LPAREN2] = ACTIONS(1836), - [anon_sym_BANG] = ACTIONS(1836), - [anon_sym_TILDE] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1836), - [anon_sym_CARET] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1836), - [anon_sym_typedef] = ACTIONS(1834), - [anon_sym_extern] = ACTIONS(1834), - [anon_sym___attribute] = ACTIONS(1834), - [anon_sym___attribute__] = ACTIONS(1834), - [anon_sym___declspec] = ACTIONS(1834), - [anon_sym___cdecl] = ACTIONS(1834), - [anon_sym___clrcall] = ACTIONS(1834), - [anon_sym___stdcall] = ACTIONS(1834), - [anon_sym___fastcall] = ACTIONS(1834), - [anon_sym___thiscall] = ACTIONS(1834), - [anon_sym___vectorcall] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1836), - [anon_sym_LBRACK] = ACTIONS(1836), - [anon_sym_static] = ACTIONS(1834), - [anon_sym_auto] = ACTIONS(1834), - [anon_sym_register] = ACTIONS(1834), - [anon_sym_inline] = ACTIONS(1834), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1834), - [anon_sym_const] = ACTIONS(1834), - [anon_sym_volatile] = ACTIONS(1834), - [anon_sym_restrict] = ACTIONS(1834), - [anon_sym__Atomic] = ACTIONS(1834), - [anon_sym_in] = ACTIONS(1834), - [anon_sym_out] = ACTIONS(1834), - [anon_sym_inout] = ACTIONS(1834), - [anon_sym_bycopy] = ACTIONS(1834), - [anon_sym_byref] = ACTIONS(1834), - [anon_sym_oneway] = ACTIONS(1834), - [anon_sym__Nullable] = ACTIONS(1834), - [anon_sym__Nonnull] = ACTIONS(1834), - [anon_sym__Nullable_result] = ACTIONS(1834), - [anon_sym__Null_unspecified] = ACTIONS(1834), - [anon_sym___autoreleasing] = ACTIONS(1834), - [anon_sym___nullable] = ACTIONS(1834), - [anon_sym___nonnull] = ACTIONS(1834), - [anon_sym___strong] = ACTIONS(1834), - [anon_sym___weak] = ACTIONS(1834), - [anon_sym___bridge] = ACTIONS(1834), - [anon_sym___bridge_transfer] = ACTIONS(1834), - [anon_sym___bridge_retained] = ACTIONS(1834), - [anon_sym___unsafe_unretained] = ACTIONS(1834), - [anon_sym___block] = ACTIONS(1834), - [anon_sym___kindof] = ACTIONS(1834), - [anon_sym___unused] = ACTIONS(1834), - [anon_sym__Complex] = ACTIONS(1834), - [anon_sym___complex] = ACTIONS(1834), - [anon_sym_IBOutlet] = ACTIONS(1834), - [anon_sym_IBInspectable] = ACTIONS(1834), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1834), - [anon_sym_signed] = ACTIONS(1834), - [anon_sym_unsigned] = ACTIONS(1834), - [anon_sym_long] = ACTIONS(1834), - [anon_sym_short] = ACTIONS(1834), - [sym_primitive_type] = ACTIONS(1834), - [anon_sym_enum] = ACTIONS(1834), - [anon_sym_NS_ENUM] = ACTIONS(1834), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1834), - [anon_sym_NS_OPTIONS] = ACTIONS(1834), - [anon_sym_struct] = ACTIONS(1834), - [anon_sym_union] = ACTIONS(1834), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_switch] = ACTIONS(1834), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1834), - [anon_sym_while] = ACTIONS(1834), - [anon_sym_do] = ACTIONS(1834), - [anon_sym_for] = ACTIONS(1834), - [anon_sym_return] = ACTIONS(1834), - [anon_sym_break] = ACTIONS(1834), - [anon_sym_continue] = ACTIONS(1834), - [anon_sym_goto] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1836), - [anon_sym_u_SQUOTE] = ACTIONS(1836), - [anon_sym_U_SQUOTE] = ACTIONS(1836), - [anon_sym_u8_SQUOTE] = ACTIONS(1836), - [anon_sym_SQUOTE] = ACTIONS(1836), - [anon_sym_L_DQUOTE] = ACTIONS(1836), - [anon_sym_u_DQUOTE] = ACTIONS(1836), - [anon_sym_U_DQUOTE] = ACTIONS(1836), - [anon_sym_u8_DQUOTE] = ACTIONS(1836), - [anon_sym_DQUOTE] = ACTIONS(1836), - [sym_true] = ACTIONS(1834), - [sym_false] = ACTIONS(1834), - [sym_null] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1836), - [anon_sym_ATimport] = ACTIONS(1836), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1834), - [anon_sym_ATcompatibility_alias] = ACTIONS(1836), - [anon_sym_ATprotocol] = ACTIONS(1836), - [anon_sym_ATclass] = ACTIONS(1836), - [anon_sym_ATinterface] = ACTIONS(1836), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1834), - [sym_method_attribute_specifier] = ACTIONS(1834), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1834), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1834), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1834), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1834), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1834), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1834), - [anon_sym_NS_AVAILABLE] = ACTIONS(1834), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1834), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1834), - [anon_sym_API_AVAILABLE] = ACTIONS(1834), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1834), - [anon_sym_API_DEPRECATED] = ACTIONS(1834), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1834), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1834), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1834), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1834), - [anon_sym___deprecated_msg] = ACTIONS(1834), - [anon_sym___deprecated_enum_msg] = ACTIONS(1834), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1834), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1834), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1834), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1834), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1834), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1834), - [anon_sym_ATimplementation] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1834), - [anon_sym___typeof] = ACTIONS(1834), - [anon_sym___typeof__] = ACTIONS(1834), - [sym_self] = ACTIONS(1834), - [sym_super] = ACTIONS(1834), - [sym_nil] = ACTIONS(1834), - [sym_id] = ACTIONS(1834), - [sym_instancetype] = ACTIONS(1834), - [sym_Class] = ACTIONS(1834), - [sym_SEL] = ACTIONS(1834), - [sym_IMP] = ACTIONS(1834), - [sym_BOOL] = ACTIONS(1834), - [sym_auto] = ACTIONS(1834), - [anon_sym_ATautoreleasepool] = ACTIONS(1836), - [anon_sym_ATsynchronized] = ACTIONS(1836), - [anon_sym_ATtry] = ACTIONS(1836), - [anon_sym_ATthrow] = ACTIONS(1836), - [anon_sym_ATselector] = ACTIONS(1836), - [anon_sym_ATencode] = ACTIONS(1836), - [anon_sym_AT] = ACTIONS(1834), - [sym_YES] = ACTIONS(1834), - [sym_NO] = ACTIONS(1834), - [anon_sym___builtin_available] = ACTIONS(1834), - [anon_sym_ATavailable] = ACTIONS(1836), - [anon_sym_va_arg] = ACTIONS(1834), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1237] = { - [ts_builtin_sym_end] = ACTIONS(1800), - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1238] = { - [ts_builtin_sym_end] = ACTIONS(1828), - [sym_identifier] = ACTIONS(1826), - [aux_sym_preproc_include_token1] = ACTIONS(1828), - [aux_sym_preproc_def_token1] = ACTIONS(1828), - [aux_sym_preproc_if_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym___attribute] = ACTIONS(1826), - [anon_sym___attribute__] = ACTIONS(1826), - [anon_sym___declspec] = ACTIONS(1826), - [anon_sym___cdecl] = ACTIONS(1826), - [anon_sym___clrcall] = ACTIONS(1826), - [anon_sym___stdcall] = ACTIONS(1826), - [anon_sym___fastcall] = ACTIONS(1826), - [anon_sym___thiscall] = ACTIONS(1826), - [anon_sym___vectorcall] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_auto] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_volatile] = ACTIONS(1826), - [anon_sym_restrict] = ACTIONS(1826), - [anon_sym__Atomic] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_out] = ACTIONS(1826), - [anon_sym_inout] = ACTIONS(1826), - [anon_sym_bycopy] = ACTIONS(1826), - [anon_sym_byref] = ACTIONS(1826), - [anon_sym_oneway] = ACTIONS(1826), - [anon_sym__Nullable] = ACTIONS(1826), - [anon_sym__Nonnull] = ACTIONS(1826), - [anon_sym__Nullable_result] = ACTIONS(1826), - [anon_sym__Null_unspecified] = ACTIONS(1826), - [anon_sym___autoreleasing] = ACTIONS(1826), - [anon_sym___nullable] = ACTIONS(1826), - [anon_sym___nonnull] = ACTIONS(1826), - [anon_sym___strong] = ACTIONS(1826), - [anon_sym___weak] = ACTIONS(1826), - [anon_sym___bridge] = ACTIONS(1826), - [anon_sym___bridge_transfer] = ACTIONS(1826), - [anon_sym___bridge_retained] = ACTIONS(1826), - [anon_sym___unsafe_unretained] = ACTIONS(1826), - [anon_sym___block] = ACTIONS(1826), - [anon_sym___kindof] = ACTIONS(1826), - [anon_sym___unused] = ACTIONS(1826), - [anon_sym__Complex] = ACTIONS(1826), - [anon_sym___complex] = ACTIONS(1826), - [anon_sym_IBOutlet] = ACTIONS(1826), - [anon_sym_IBInspectable] = ACTIONS(1826), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1826), - [anon_sym_signed] = ACTIONS(1826), - [anon_sym_unsigned] = ACTIONS(1826), - [anon_sym_long] = ACTIONS(1826), - [anon_sym_short] = ACTIONS(1826), - [sym_primitive_type] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_NS_ENUM] = ACTIONS(1826), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1826), - [anon_sym_NS_OPTIONS] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_case] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_goto] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_sizeof] = ACTIONS(1826), - [sym_number_literal] = ACTIONS(1828), - [anon_sym_L_SQUOTE] = ACTIONS(1828), - [anon_sym_u_SQUOTE] = ACTIONS(1828), - [anon_sym_U_SQUOTE] = ACTIONS(1828), - [anon_sym_u8_SQUOTE] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_L_DQUOTE] = ACTIONS(1828), - [anon_sym_u_DQUOTE] = ACTIONS(1828), - [anon_sym_U_DQUOTE] = ACTIONS(1828), - [anon_sym_u8_DQUOTE] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym_true] = ACTIONS(1826), - [sym_false] = ACTIONS(1826), - [sym_null] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1828), - [anon_sym_ATimport] = ACTIONS(1828), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1826), - [anon_sym_ATcompatibility_alias] = ACTIONS(1828), - [anon_sym_ATprotocol] = ACTIONS(1828), - [anon_sym_ATclass] = ACTIONS(1828), - [anon_sym_ATinterface] = ACTIONS(1828), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1826), - [sym_method_attribute_specifier] = ACTIONS(1826), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1826), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE] = ACTIONS(1826), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_API_AVAILABLE] = ACTIONS(1826), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_API_DEPRECATED] = ACTIONS(1826), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1826), - [anon_sym___deprecated_msg] = ACTIONS(1826), - [anon_sym___deprecated_enum_msg] = ACTIONS(1826), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1826), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1826), - [anon_sym_ATimplementation] = ACTIONS(1828), - [anon_sym_typeof] = ACTIONS(1826), - [anon_sym___typeof] = ACTIONS(1826), - [anon_sym___typeof__] = ACTIONS(1826), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_nil] = ACTIONS(1826), - [sym_id] = ACTIONS(1826), - [sym_instancetype] = ACTIONS(1826), - [sym_Class] = ACTIONS(1826), - [sym_SEL] = ACTIONS(1826), - [sym_IMP] = ACTIONS(1826), - [sym_BOOL] = ACTIONS(1826), - [sym_auto] = ACTIONS(1826), - [anon_sym_ATautoreleasepool] = ACTIONS(1828), - [anon_sym_ATsynchronized] = ACTIONS(1828), - [anon_sym_ATtry] = ACTIONS(1828), - [anon_sym_ATthrow] = ACTIONS(1828), - [anon_sym_ATselector] = ACTIONS(1828), - [anon_sym_ATencode] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1826), - [sym_YES] = ACTIONS(1826), - [sym_NO] = ACTIONS(1826), - [anon_sym___builtin_available] = ACTIONS(1826), - [anon_sym_ATavailable] = ACTIONS(1828), - [anon_sym_va_arg] = ACTIONS(1826), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1239] = { - [ts_builtin_sym_end] = ACTIONS(1828), - [sym_identifier] = ACTIONS(1826), - [aux_sym_preproc_include_token1] = ACTIONS(1828), - [aux_sym_preproc_def_token1] = ACTIONS(1828), - [aux_sym_preproc_if_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym___attribute] = ACTIONS(1826), - [anon_sym___attribute__] = ACTIONS(1826), - [anon_sym___declspec] = ACTIONS(1826), - [anon_sym___cdecl] = ACTIONS(1826), - [anon_sym___clrcall] = ACTIONS(1826), - [anon_sym___stdcall] = ACTIONS(1826), - [anon_sym___fastcall] = ACTIONS(1826), - [anon_sym___thiscall] = ACTIONS(1826), - [anon_sym___vectorcall] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_auto] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_volatile] = ACTIONS(1826), - [anon_sym_restrict] = ACTIONS(1826), - [anon_sym__Atomic] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_out] = ACTIONS(1826), - [anon_sym_inout] = ACTIONS(1826), - [anon_sym_bycopy] = ACTIONS(1826), - [anon_sym_byref] = ACTIONS(1826), - [anon_sym_oneway] = ACTIONS(1826), - [anon_sym__Nullable] = ACTIONS(1826), - [anon_sym__Nonnull] = ACTIONS(1826), - [anon_sym__Nullable_result] = ACTIONS(1826), - [anon_sym__Null_unspecified] = ACTIONS(1826), - [anon_sym___autoreleasing] = ACTIONS(1826), - [anon_sym___nullable] = ACTIONS(1826), - [anon_sym___nonnull] = ACTIONS(1826), - [anon_sym___strong] = ACTIONS(1826), - [anon_sym___weak] = ACTIONS(1826), - [anon_sym___bridge] = ACTIONS(1826), - [anon_sym___bridge_transfer] = ACTIONS(1826), - [anon_sym___bridge_retained] = ACTIONS(1826), - [anon_sym___unsafe_unretained] = ACTIONS(1826), - [anon_sym___block] = ACTIONS(1826), - [anon_sym___kindof] = ACTIONS(1826), - [anon_sym___unused] = ACTIONS(1826), - [anon_sym__Complex] = ACTIONS(1826), - [anon_sym___complex] = ACTIONS(1826), - [anon_sym_IBOutlet] = ACTIONS(1826), - [anon_sym_IBInspectable] = ACTIONS(1826), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1826), - [anon_sym_signed] = ACTIONS(1826), - [anon_sym_unsigned] = ACTIONS(1826), - [anon_sym_long] = ACTIONS(1826), - [anon_sym_short] = ACTIONS(1826), - [sym_primitive_type] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_NS_ENUM] = ACTIONS(1826), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1826), - [anon_sym_NS_OPTIONS] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_case] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_goto] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_sizeof] = ACTIONS(1826), - [sym_number_literal] = ACTIONS(1828), - [anon_sym_L_SQUOTE] = ACTIONS(1828), - [anon_sym_u_SQUOTE] = ACTIONS(1828), - [anon_sym_U_SQUOTE] = ACTIONS(1828), - [anon_sym_u8_SQUOTE] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_L_DQUOTE] = ACTIONS(1828), - [anon_sym_u_DQUOTE] = ACTIONS(1828), - [anon_sym_U_DQUOTE] = ACTIONS(1828), - [anon_sym_u8_DQUOTE] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym_true] = ACTIONS(1826), - [sym_false] = ACTIONS(1826), - [sym_null] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1828), - [anon_sym_ATimport] = ACTIONS(1828), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1826), - [anon_sym_ATcompatibility_alias] = ACTIONS(1828), - [anon_sym_ATprotocol] = ACTIONS(1828), - [anon_sym_ATclass] = ACTIONS(1828), - [anon_sym_ATinterface] = ACTIONS(1828), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1826), - [sym_method_attribute_specifier] = ACTIONS(1826), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1826), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE] = ACTIONS(1826), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_API_AVAILABLE] = ACTIONS(1826), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_API_DEPRECATED] = ACTIONS(1826), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1826), - [anon_sym___deprecated_msg] = ACTIONS(1826), - [anon_sym___deprecated_enum_msg] = ACTIONS(1826), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1826), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1826), - [anon_sym_ATimplementation] = ACTIONS(1828), - [anon_sym_typeof] = ACTIONS(1826), - [anon_sym___typeof] = ACTIONS(1826), - [anon_sym___typeof__] = ACTIONS(1826), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_nil] = ACTIONS(1826), - [sym_id] = ACTIONS(1826), - [sym_instancetype] = ACTIONS(1826), - [sym_Class] = ACTIONS(1826), - [sym_SEL] = ACTIONS(1826), - [sym_IMP] = ACTIONS(1826), - [sym_BOOL] = ACTIONS(1826), - [sym_auto] = ACTIONS(1826), - [anon_sym_ATautoreleasepool] = ACTIONS(1828), - [anon_sym_ATsynchronized] = ACTIONS(1828), - [anon_sym_ATtry] = ACTIONS(1828), - [anon_sym_ATthrow] = ACTIONS(1828), - [anon_sym_ATselector] = ACTIONS(1828), - [anon_sym_ATencode] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1826), - [sym_YES] = ACTIONS(1826), - [sym_NO] = ACTIONS(1826), - [anon_sym___builtin_available] = ACTIONS(1826), - [anon_sym_ATavailable] = ACTIONS(1828), - [anon_sym_va_arg] = ACTIONS(1826), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1240] = { - [ts_builtin_sym_end] = ACTIONS(1800), - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1241] = { - [ts_builtin_sym_end] = ACTIONS(1828), - [sym_identifier] = ACTIONS(1826), - [aux_sym_preproc_include_token1] = ACTIONS(1828), - [aux_sym_preproc_def_token1] = ACTIONS(1828), - [aux_sym_preproc_if_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym___attribute] = ACTIONS(1826), - [anon_sym___attribute__] = ACTIONS(1826), - [anon_sym___declspec] = ACTIONS(1826), - [anon_sym___cdecl] = ACTIONS(1826), - [anon_sym___clrcall] = ACTIONS(1826), - [anon_sym___stdcall] = ACTIONS(1826), - [anon_sym___fastcall] = ACTIONS(1826), - [anon_sym___thiscall] = ACTIONS(1826), - [anon_sym___vectorcall] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_auto] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_volatile] = ACTIONS(1826), - [anon_sym_restrict] = ACTIONS(1826), - [anon_sym__Atomic] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_out] = ACTIONS(1826), - [anon_sym_inout] = ACTIONS(1826), - [anon_sym_bycopy] = ACTIONS(1826), - [anon_sym_byref] = ACTIONS(1826), - [anon_sym_oneway] = ACTIONS(1826), - [anon_sym__Nullable] = ACTIONS(1826), - [anon_sym__Nonnull] = ACTIONS(1826), - [anon_sym__Nullable_result] = ACTIONS(1826), - [anon_sym__Null_unspecified] = ACTIONS(1826), - [anon_sym___autoreleasing] = ACTIONS(1826), - [anon_sym___nullable] = ACTIONS(1826), - [anon_sym___nonnull] = ACTIONS(1826), - [anon_sym___strong] = ACTIONS(1826), - [anon_sym___weak] = ACTIONS(1826), - [anon_sym___bridge] = ACTIONS(1826), - [anon_sym___bridge_transfer] = ACTIONS(1826), - [anon_sym___bridge_retained] = ACTIONS(1826), - [anon_sym___unsafe_unretained] = ACTIONS(1826), - [anon_sym___block] = ACTIONS(1826), - [anon_sym___kindof] = ACTIONS(1826), - [anon_sym___unused] = ACTIONS(1826), - [anon_sym__Complex] = ACTIONS(1826), - [anon_sym___complex] = ACTIONS(1826), - [anon_sym_IBOutlet] = ACTIONS(1826), - [anon_sym_IBInspectable] = ACTIONS(1826), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1826), - [anon_sym_signed] = ACTIONS(1826), - [anon_sym_unsigned] = ACTIONS(1826), - [anon_sym_long] = ACTIONS(1826), - [anon_sym_short] = ACTIONS(1826), - [sym_primitive_type] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_NS_ENUM] = ACTIONS(1826), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1826), - [anon_sym_NS_OPTIONS] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_case] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_goto] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_sizeof] = ACTIONS(1826), - [sym_number_literal] = ACTIONS(1828), - [anon_sym_L_SQUOTE] = ACTIONS(1828), - [anon_sym_u_SQUOTE] = ACTIONS(1828), - [anon_sym_U_SQUOTE] = ACTIONS(1828), - [anon_sym_u8_SQUOTE] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_L_DQUOTE] = ACTIONS(1828), - [anon_sym_u_DQUOTE] = ACTIONS(1828), - [anon_sym_U_DQUOTE] = ACTIONS(1828), - [anon_sym_u8_DQUOTE] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym_true] = ACTIONS(1826), - [sym_false] = ACTIONS(1826), - [sym_null] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1828), - [anon_sym_ATimport] = ACTIONS(1828), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1826), - [anon_sym_ATcompatibility_alias] = ACTIONS(1828), - [anon_sym_ATprotocol] = ACTIONS(1828), - [anon_sym_ATclass] = ACTIONS(1828), - [anon_sym_ATinterface] = ACTIONS(1828), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1826), - [sym_method_attribute_specifier] = ACTIONS(1826), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1826), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE] = ACTIONS(1826), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_API_AVAILABLE] = ACTIONS(1826), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_API_DEPRECATED] = ACTIONS(1826), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1826), - [anon_sym___deprecated_msg] = ACTIONS(1826), - [anon_sym___deprecated_enum_msg] = ACTIONS(1826), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1826), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1826), - [anon_sym_ATimplementation] = ACTIONS(1828), - [anon_sym_typeof] = ACTIONS(1826), - [anon_sym___typeof] = ACTIONS(1826), - [anon_sym___typeof__] = ACTIONS(1826), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_nil] = ACTIONS(1826), - [sym_id] = ACTIONS(1826), - [sym_instancetype] = ACTIONS(1826), - [sym_Class] = ACTIONS(1826), - [sym_SEL] = ACTIONS(1826), - [sym_IMP] = ACTIONS(1826), - [sym_BOOL] = ACTIONS(1826), - [sym_auto] = ACTIONS(1826), - [anon_sym_ATautoreleasepool] = ACTIONS(1828), - [anon_sym_ATsynchronized] = ACTIONS(1828), - [anon_sym_ATtry] = ACTIONS(1828), - [anon_sym_ATthrow] = ACTIONS(1828), - [anon_sym_ATselector] = ACTIONS(1828), - [anon_sym_ATencode] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1826), - [sym_YES] = ACTIONS(1826), - [sym_NO] = ACTIONS(1826), - [anon_sym___builtin_available] = ACTIONS(1826), - [anon_sym_ATavailable] = ACTIONS(1828), - [anon_sym_va_arg] = ACTIONS(1826), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1242] = { - [ts_builtin_sym_end] = ACTIONS(1976), - [sym_identifier] = ACTIONS(1974), - [aux_sym_preproc_include_token1] = ACTIONS(1976), - [aux_sym_preproc_def_token1] = ACTIONS(1976), - [aux_sym_preproc_if_token1] = ACTIONS(1974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1976), - [anon_sym_BANG] = ACTIONS(1976), - [anon_sym_TILDE] = ACTIONS(1976), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_CARET] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym_typedef] = ACTIONS(1974), - [anon_sym_extern] = ACTIONS(1974), - [anon_sym___attribute] = ACTIONS(1974), - [anon_sym___attribute__] = ACTIONS(1974), - [anon_sym___declspec] = ACTIONS(1974), - [anon_sym___cdecl] = ACTIONS(1974), - [anon_sym___clrcall] = ACTIONS(1974), - [anon_sym___stdcall] = ACTIONS(1974), - [anon_sym___fastcall] = ACTIONS(1974), - [anon_sym___thiscall] = ACTIONS(1974), - [anon_sym___vectorcall] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1976), - [anon_sym_RBRACE] = ACTIONS(1976), - [anon_sym_LBRACK] = ACTIONS(1976), - [anon_sym_static] = ACTIONS(1974), - [anon_sym_auto] = ACTIONS(1974), - [anon_sym_register] = ACTIONS(1974), - [anon_sym_inline] = ACTIONS(1974), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1974), - [anon_sym_const] = ACTIONS(1974), - [anon_sym_volatile] = ACTIONS(1974), - [anon_sym_restrict] = ACTIONS(1974), - [anon_sym__Atomic] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1974), - [anon_sym_out] = ACTIONS(1974), - [anon_sym_inout] = ACTIONS(1974), - [anon_sym_bycopy] = ACTIONS(1974), - [anon_sym_byref] = ACTIONS(1974), - [anon_sym_oneway] = ACTIONS(1974), - [anon_sym__Nullable] = ACTIONS(1974), - [anon_sym__Nonnull] = ACTIONS(1974), - [anon_sym__Nullable_result] = ACTIONS(1974), - [anon_sym__Null_unspecified] = ACTIONS(1974), - [anon_sym___autoreleasing] = ACTIONS(1974), - [anon_sym___nullable] = ACTIONS(1974), - [anon_sym___nonnull] = ACTIONS(1974), - [anon_sym___strong] = ACTIONS(1974), - [anon_sym___weak] = ACTIONS(1974), - [anon_sym___bridge] = ACTIONS(1974), - [anon_sym___bridge_transfer] = ACTIONS(1974), - [anon_sym___bridge_retained] = ACTIONS(1974), - [anon_sym___unsafe_unretained] = ACTIONS(1974), - [anon_sym___block] = ACTIONS(1974), - [anon_sym___kindof] = ACTIONS(1974), - [anon_sym___unused] = ACTIONS(1974), - [anon_sym__Complex] = ACTIONS(1974), - [anon_sym___complex] = ACTIONS(1974), - [anon_sym_IBOutlet] = ACTIONS(1974), - [anon_sym_IBInspectable] = ACTIONS(1974), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1974), - [anon_sym_signed] = ACTIONS(1974), - [anon_sym_unsigned] = ACTIONS(1974), - [anon_sym_long] = ACTIONS(1974), - [anon_sym_short] = ACTIONS(1974), - [sym_primitive_type] = ACTIONS(1974), - [anon_sym_enum] = ACTIONS(1974), - [anon_sym_NS_ENUM] = ACTIONS(1974), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1974), - [anon_sym_NS_OPTIONS] = ACTIONS(1974), - [anon_sym_struct] = ACTIONS(1974), - [anon_sym_union] = ACTIONS(1974), - [anon_sym_if] = ACTIONS(1974), - [anon_sym_switch] = ACTIONS(1974), - [anon_sym_case] = ACTIONS(1974), - [anon_sym_default] = ACTIONS(1974), - [anon_sym_while] = ACTIONS(1974), - [anon_sym_do] = ACTIONS(1974), - [anon_sym_for] = ACTIONS(1974), - [anon_sym_return] = ACTIONS(1974), - [anon_sym_break] = ACTIONS(1974), - [anon_sym_continue] = ACTIONS(1974), - [anon_sym_goto] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1976), - [anon_sym_PLUS_PLUS] = ACTIONS(1976), - [anon_sym_sizeof] = ACTIONS(1974), - [sym_number_literal] = ACTIONS(1976), - [anon_sym_L_SQUOTE] = ACTIONS(1976), - [anon_sym_u_SQUOTE] = ACTIONS(1976), - [anon_sym_U_SQUOTE] = ACTIONS(1976), - [anon_sym_u8_SQUOTE] = ACTIONS(1976), - [anon_sym_SQUOTE] = ACTIONS(1976), - [anon_sym_L_DQUOTE] = ACTIONS(1976), - [anon_sym_u_DQUOTE] = ACTIONS(1976), - [anon_sym_U_DQUOTE] = ACTIONS(1976), - [anon_sym_u8_DQUOTE] = ACTIONS(1976), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [sym_null] = ACTIONS(1974), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1976), - [anon_sym_ATimport] = ACTIONS(1976), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1974), - [anon_sym_ATcompatibility_alias] = ACTIONS(1976), - [anon_sym_ATprotocol] = ACTIONS(1976), - [anon_sym_ATclass] = ACTIONS(1976), - [anon_sym_ATinterface] = ACTIONS(1976), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1974), - [sym_method_attribute_specifier] = ACTIONS(1974), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1974), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1974), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1974), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1974), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1974), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1974), - [anon_sym_NS_AVAILABLE] = ACTIONS(1974), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1974), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1974), - [anon_sym_API_AVAILABLE] = ACTIONS(1974), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1974), - [anon_sym_API_DEPRECATED] = ACTIONS(1974), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1974), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1974), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1974), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1974), - [anon_sym___deprecated_msg] = ACTIONS(1974), - [anon_sym___deprecated_enum_msg] = ACTIONS(1974), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1974), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1974), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1974), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1974), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1974), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1974), - [anon_sym_ATimplementation] = ACTIONS(1976), - [anon_sym_typeof] = ACTIONS(1974), - [anon_sym___typeof] = ACTIONS(1974), - [anon_sym___typeof__] = ACTIONS(1974), - [sym_self] = ACTIONS(1974), - [sym_super] = ACTIONS(1974), - [sym_nil] = ACTIONS(1974), - [sym_id] = ACTIONS(1974), - [sym_instancetype] = ACTIONS(1974), - [sym_Class] = ACTIONS(1974), - [sym_SEL] = ACTIONS(1974), - [sym_IMP] = ACTIONS(1974), - [sym_BOOL] = ACTIONS(1974), - [sym_auto] = ACTIONS(1974), - [anon_sym_ATautoreleasepool] = ACTIONS(1976), - [anon_sym_ATsynchronized] = ACTIONS(1976), - [anon_sym_ATtry] = ACTIONS(1976), - [anon_sym_ATthrow] = ACTIONS(1976), - [anon_sym_ATselector] = ACTIONS(1976), - [anon_sym_ATencode] = ACTIONS(1976), - [anon_sym_AT] = ACTIONS(1974), - [sym_YES] = ACTIONS(1974), - [sym_NO] = ACTIONS(1974), - [anon_sym___builtin_available] = ACTIONS(1974), - [anon_sym_ATavailable] = ACTIONS(1976), - [anon_sym_va_arg] = ACTIONS(1974), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1243] = { - [ts_builtin_sym_end] = ACTIONS(1972), - [sym_identifier] = ACTIONS(1970), - [aux_sym_preproc_include_token1] = ACTIONS(1972), - [aux_sym_preproc_def_token1] = ACTIONS(1972), - [aux_sym_preproc_if_token1] = ACTIONS(1970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1970), - [anon_sym_LPAREN2] = ACTIONS(1972), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_CARET] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_typedef] = ACTIONS(1970), - [anon_sym_extern] = ACTIONS(1970), - [anon_sym___attribute] = ACTIONS(1970), - [anon_sym___attribute__] = ACTIONS(1970), - [anon_sym___declspec] = ACTIONS(1970), - [anon_sym___cdecl] = ACTIONS(1970), - [anon_sym___clrcall] = ACTIONS(1970), - [anon_sym___stdcall] = ACTIONS(1970), - [anon_sym___fastcall] = ACTIONS(1970), - [anon_sym___thiscall] = ACTIONS(1970), - [anon_sym___vectorcall] = ACTIONS(1970), - [anon_sym_LBRACE] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_LBRACK] = ACTIONS(1972), - [anon_sym_static] = ACTIONS(1970), - [anon_sym_auto] = ACTIONS(1970), - [anon_sym_register] = ACTIONS(1970), - [anon_sym_inline] = ACTIONS(1970), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1970), - [anon_sym_const] = ACTIONS(1970), - [anon_sym_volatile] = ACTIONS(1970), - [anon_sym_restrict] = ACTIONS(1970), - [anon_sym__Atomic] = ACTIONS(1970), - [anon_sym_in] = ACTIONS(1970), - [anon_sym_out] = ACTIONS(1970), - [anon_sym_inout] = ACTIONS(1970), - [anon_sym_bycopy] = ACTIONS(1970), - [anon_sym_byref] = ACTIONS(1970), - [anon_sym_oneway] = ACTIONS(1970), - [anon_sym__Nullable] = ACTIONS(1970), - [anon_sym__Nonnull] = ACTIONS(1970), - [anon_sym__Nullable_result] = ACTIONS(1970), - [anon_sym__Null_unspecified] = ACTIONS(1970), - [anon_sym___autoreleasing] = ACTIONS(1970), - [anon_sym___nullable] = ACTIONS(1970), - [anon_sym___nonnull] = ACTIONS(1970), - [anon_sym___strong] = ACTIONS(1970), - [anon_sym___weak] = ACTIONS(1970), - [anon_sym___bridge] = ACTIONS(1970), - [anon_sym___bridge_transfer] = ACTIONS(1970), - [anon_sym___bridge_retained] = ACTIONS(1970), - [anon_sym___unsafe_unretained] = ACTIONS(1970), - [anon_sym___block] = ACTIONS(1970), - [anon_sym___kindof] = ACTIONS(1970), - [anon_sym___unused] = ACTIONS(1970), - [anon_sym__Complex] = ACTIONS(1970), - [anon_sym___complex] = ACTIONS(1970), - [anon_sym_IBOutlet] = ACTIONS(1970), - [anon_sym_IBInspectable] = ACTIONS(1970), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1970), - [anon_sym_signed] = ACTIONS(1970), - [anon_sym_unsigned] = ACTIONS(1970), - [anon_sym_long] = ACTIONS(1970), - [anon_sym_short] = ACTIONS(1970), - [sym_primitive_type] = ACTIONS(1970), - [anon_sym_enum] = ACTIONS(1970), - [anon_sym_NS_ENUM] = ACTIONS(1970), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1970), - [anon_sym_NS_OPTIONS] = ACTIONS(1970), - [anon_sym_struct] = ACTIONS(1970), - [anon_sym_union] = ACTIONS(1970), - [anon_sym_if] = ACTIONS(1970), - [anon_sym_switch] = ACTIONS(1970), - [anon_sym_case] = ACTIONS(1970), - [anon_sym_default] = ACTIONS(1970), - [anon_sym_while] = ACTIONS(1970), - [anon_sym_do] = ACTIONS(1970), - [anon_sym_for] = ACTIONS(1970), - [anon_sym_return] = ACTIONS(1970), - [anon_sym_break] = ACTIONS(1970), - [anon_sym_continue] = ACTIONS(1970), - [anon_sym_goto] = ACTIONS(1970), - [anon_sym_DASH_DASH] = ACTIONS(1972), - [anon_sym_PLUS_PLUS] = ACTIONS(1972), - [anon_sym_sizeof] = ACTIONS(1970), - [sym_number_literal] = ACTIONS(1972), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1972), - [anon_sym_u_DQUOTE] = ACTIONS(1972), - [anon_sym_U_DQUOTE] = ACTIONS(1972), - [anon_sym_u8_DQUOTE] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), - [sym_true] = ACTIONS(1970), - [sym_false] = ACTIONS(1970), - [sym_null] = ACTIONS(1970), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1972), - [anon_sym_ATimport] = ACTIONS(1972), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1970), - [anon_sym_ATcompatibility_alias] = ACTIONS(1972), - [anon_sym_ATprotocol] = ACTIONS(1972), - [anon_sym_ATclass] = ACTIONS(1972), - [anon_sym_ATinterface] = ACTIONS(1972), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1970), - [sym_method_attribute_specifier] = ACTIONS(1970), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1970), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1970), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1970), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1970), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1970), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1970), - [anon_sym_NS_AVAILABLE] = ACTIONS(1970), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1970), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1970), - [anon_sym_API_AVAILABLE] = ACTIONS(1970), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1970), - [anon_sym_API_DEPRECATED] = ACTIONS(1970), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1970), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1970), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1970), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1970), - [anon_sym___deprecated_msg] = ACTIONS(1970), - [anon_sym___deprecated_enum_msg] = ACTIONS(1970), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1970), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1970), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1970), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1970), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1970), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1970), - [anon_sym_ATimplementation] = ACTIONS(1972), - [anon_sym_typeof] = ACTIONS(1970), - [anon_sym___typeof] = ACTIONS(1970), - [anon_sym___typeof__] = ACTIONS(1970), - [sym_self] = ACTIONS(1970), - [sym_super] = ACTIONS(1970), - [sym_nil] = ACTIONS(1970), - [sym_id] = ACTIONS(1970), - [sym_instancetype] = ACTIONS(1970), - [sym_Class] = ACTIONS(1970), - [sym_SEL] = ACTIONS(1970), - [sym_IMP] = ACTIONS(1970), - [sym_BOOL] = ACTIONS(1970), - [sym_auto] = ACTIONS(1970), - [anon_sym_ATautoreleasepool] = ACTIONS(1972), - [anon_sym_ATsynchronized] = ACTIONS(1972), - [anon_sym_ATtry] = ACTIONS(1972), - [anon_sym_ATthrow] = ACTIONS(1972), - [anon_sym_ATselector] = ACTIONS(1972), - [anon_sym_ATencode] = ACTIONS(1972), - [anon_sym_AT] = ACTIONS(1970), - [sym_YES] = ACTIONS(1970), - [sym_NO] = ACTIONS(1970), - [anon_sym___builtin_available] = ACTIONS(1970), - [anon_sym_ATavailable] = ACTIONS(1972), - [anon_sym_va_arg] = ACTIONS(1970), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1244] = { - [ts_builtin_sym_end] = ACTIONS(1800), - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1245] = { - [ts_builtin_sym_end] = ACTIONS(1800), - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1246] = { - [ts_builtin_sym_end] = ACTIONS(1824), - [sym_identifier] = ACTIONS(1822), - [aux_sym_preproc_include_token1] = ACTIONS(1824), - [aux_sym_preproc_def_token1] = ACTIONS(1824), - [aux_sym_preproc_if_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1822), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym___attribute] = ACTIONS(1822), - [anon_sym___attribute__] = ACTIONS(1822), - [anon_sym___declspec] = ACTIONS(1822), - [anon_sym___cdecl] = ACTIONS(1822), - [anon_sym___clrcall] = ACTIONS(1822), - [anon_sym___stdcall] = ACTIONS(1822), - [anon_sym___fastcall] = ACTIONS(1822), - [anon_sym___thiscall] = ACTIONS(1822), - [anon_sym___vectorcall] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [anon_sym__Atomic] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_out] = ACTIONS(1822), - [anon_sym_inout] = ACTIONS(1822), - [anon_sym_bycopy] = ACTIONS(1822), - [anon_sym_byref] = ACTIONS(1822), - [anon_sym_oneway] = ACTIONS(1822), - [anon_sym__Nullable] = ACTIONS(1822), - [anon_sym__Nonnull] = ACTIONS(1822), - [anon_sym__Nullable_result] = ACTIONS(1822), - [anon_sym__Null_unspecified] = ACTIONS(1822), - [anon_sym___autoreleasing] = ACTIONS(1822), - [anon_sym___nullable] = ACTIONS(1822), - [anon_sym___nonnull] = ACTIONS(1822), - [anon_sym___strong] = ACTIONS(1822), - [anon_sym___weak] = ACTIONS(1822), - [anon_sym___bridge] = ACTIONS(1822), - [anon_sym___bridge_transfer] = ACTIONS(1822), - [anon_sym___bridge_retained] = ACTIONS(1822), - [anon_sym___unsafe_unretained] = ACTIONS(1822), - [anon_sym___block] = ACTIONS(1822), - [anon_sym___kindof] = ACTIONS(1822), - [anon_sym___unused] = ACTIONS(1822), - [anon_sym__Complex] = ACTIONS(1822), - [anon_sym___complex] = ACTIONS(1822), - [anon_sym_IBOutlet] = ACTIONS(1822), - [anon_sym_IBInspectable] = ACTIONS(1822), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_NS_ENUM] = ACTIONS(1822), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1822), - [anon_sym_NS_OPTIONS] = ACTIONS(1822), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_case] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_goto] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1822), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_L_SQUOTE] = ACTIONS(1824), - [anon_sym_u_SQUOTE] = ACTIONS(1824), - [anon_sym_U_SQUOTE] = ACTIONS(1824), - [anon_sym_u8_SQUOTE] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_L_DQUOTE] = ACTIONS(1824), - [anon_sym_u_DQUOTE] = ACTIONS(1824), - [anon_sym_U_DQUOTE] = ACTIONS(1824), - [anon_sym_u8_DQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym_true] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1824), - [anon_sym_ATimport] = ACTIONS(1824), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1822), - [anon_sym_ATcompatibility_alias] = ACTIONS(1824), - [anon_sym_ATprotocol] = ACTIONS(1824), - [anon_sym_ATclass] = ACTIONS(1824), - [anon_sym_ATinterface] = ACTIONS(1824), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1822), - [sym_method_attribute_specifier] = ACTIONS(1822), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1822), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE] = ACTIONS(1822), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_API_AVAILABLE] = ACTIONS(1822), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_API_DEPRECATED] = ACTIONS(1822), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1822), - [anon_sym___deprecated_msg] = ACTIONS(1822), - [anon_sym___deprecated_enum_msg] = ACTIONS(1822), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1822), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1822), - [anon_sym_ATimplementation] = ACTIONS(1824), - [anon_sym_typeof] = ACTIONS(1822), - [anon_sym___typeof] = ACTIONS(1822), - [anon_sym___typeof__] = ACTIONS(1822), - [sym_self] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_nil] = ACTIONS(1822), - [sym_id] = ACTIONS(1822), - [sym_instancetype] = ACTIONS(1822), - [sym_Class] = ACTIONS(1822), - [sym_SEL] = ACTIONS(1822), - [sym_IMP] = ACTIONS(1822), - [sym_BOOL] = ACTIONS(1822), - [sym_auto] = ACTIONS(1822), - [anon_sym_ATautoreleasepool] = ACTIONS(1824), - [anon_sym_ATsynchronized] = ACTIONS(1824), - [anon_sym_ATtry] = ACTIONS(1824), - [anon_sym_ATthrow] = ACTIONS(1824), - [anon_sym_ATselector] = ACTIONS(1824), - [anon_sym_ATencode] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1822), - [sym_YES] = ACTIONS(1822), - [sym_NO] = ACTIONS(1822), - [anon_sym___builtin_available] = ACTIONS(1822), - [anon_sym_ATavailable] = ACTIONS(1824), - [anon_sym_va_arg] = ACTIONS(1822), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1247] = { - [ts_builtin_sym_end] = ACTIONS(1828), - [sym_identifier] = ACTIONS(1826), - [aux_sym_preproc_include_token1] = ACTIONS(1828), - [aux_sym_preproc_def_token1] = ACTIONS(1828), - [aux_sym_preproc_if_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym___attribute] = ACTIONS(1826), - [anon_sym___attribute__] = ACTIONS(1826), - [anon_sym___declspec] = ACTIONS(1826), - [anon_sym___cdecl] = ACTIONS(1826), - [anon_sym___clrcall] = ACTIONS(1826), - [anon_sym___stdcall] = ACTIONS(1826), - [anon_sym___fastcall] = ACTIONS(1826), - [anon_sym___thiscall] = ACTIONS(1826), - [anon_sym___vectorcall] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_auto] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_volatile] = ACTIONS(1826), - [anon_sym_restrict] = ACTIONS(1826), - [anon_sym__Atomic] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_out] = ACTIONS(1826), - [anon_sym_inout] = ACTIONS(1826), - [anon_sym_bycopy] = ACTIONS(1826), - [anon_sym_byref] = ACTIONS(1826), - [anon_sym_oneway] = ACTIONS(1826), - [anon_sym__Nullable] = ACTIONS(1826), - [anon_sym__Nonnull] = ACTIONS(1826), - [anon_sym__Nullable_result] = ACTIONS(1826), - [anon_sym__Null_unspecified] = ACTIONS(1826), - [anon_sym___autoreleasing] = ACTIONS(1826), - [anon_sym___nullable] = ACTIONS(1826), - [anon_sym___nonnull] = ACTIONS(1826), - [anon_sym___strong] = ACTIONS(1826), - [anon_sym___weak] = ACTIONS(1826), - [anon_sym___bridge] = ACTIONS(1826), - [anon_sym___bridge_transfer] = ACTIONS(1826), - [anon_sym___bridge_retained] = ACTIONS(1826), - [anon_sym___unsafe_unretained] = ACTIONS(1826), - [anon_sym___block] = ACTIONS(1826), - [anon_sym___kindof] = ACTIONS(1826), - [anon_sym___unused] = ACTIONS(1826), - [anon_sym__Complex] = ACTIONS(1826), - [anon_sym___complex] = ACTIONS(1826), - [anon_sym_IBOutlet] = ACTIONS(1826), - [anon_sym_IBInspectable] = ACTIONS(1826), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1826), - [anon_sym_signed] = ACTIONS(1826), - [anon_sym_unsigned] = ACTIONS(1826), - [anon_sym_long] = ACTIONS(1826), - [anon_sym_short] = ACTIONS(1826), - [sym_primitive_type] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_NS_ENUM] = ACTIONS(1826), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1826), - [anon_sym_NS_OPTIONS] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_case] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_goto] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_sizeof] = ACTIONS(1826), - [sym_number_literal] = ACTIONS(1828), - [anon_sym_L_SQUOTE] = ACTIONS(1828), - [anon_sym_u_SQUOTE] = ACTIONS(1828), - [anon_sym_U_SQUOTE] = ACTIONS(1828), - [anon_sym_u8_SQUOTE] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_L_DQUOTE] = ACTIONS(1828), - [anon_sym_u_DQUOTE] = ACTIONS(1828), - [anon_sym_U_DQUOTE] = ACTIONS(1828), - [anon_sym_u8_DQUOTE] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym_true] = ACTIONS(1826), - [sym_false] = ACTIONS(1826), - [sym_null] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1828), - [anon_sym_ATimport] = ACTIONS(1828), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1826), - [anon_sym_ATcompatibility_alias] = ACTIONS(1828), - [anon_sym_ATprotocol] = ACTIONS(1828), - [anon_sym_ATclass] = ACTIONS(1828), - [anon_sym_ATinterface] = ACTIONS(1828), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1826), - [sym_method_attribute_specifier] = ACTIONS(1826), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1826), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE] = ACTIONS(1826), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_API_AVAILABLE] = ACTIONS(1826), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_API_DEPRECATED] = ACTIONS(1826), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1826), - [anon_sym___deprecated_msg] = ACTIONS(1826), - [anon_sym___deprecated_enum_msg] = ACTIONS(1826), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1826), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1826), - [anon_sym_ATimplementation] = ACTIONS(1828), - [anon_sym_typeof] = ACTIONS(1826), - [anon_sym___typeof] = ACTIONS(1826), - [anon_sym___typeof__] = ACTIONS(1826), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_nil] = ACTIONS(1826), - [sym_id] = ACTIONS(1826), - [sym_instancetype] = ACTIONS(1826), - [sym_Class] = ACTIONS(1826), - [sym_SEL] = ACTIONS(1826), - [sym_IMP] = ACTIONS(1826), - [sym_BOOL] = ACTIONS(1826), - [sym_auto] = ACTIONS(1826), - [anon_sym_ATautoreleasepool] = ACTIONS(1828), - [anon_sym_ATsynchronized] = ACTIONS(1828), - [anon_sym_ATtry] = ACTIONS(1828), - [anon_sym_ATthrow] = ACTIONS(1828), - [anon_sym_ATselector] = ACTIONS(1828), - [anon_sym_ATencode] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1826), - [sym_YES] = ACTIONS(1826), - [sym_NO] = ACTIONS(1826), - [anon_sym___builtin_available] = ACTIONS(1826), - [anon_sym_ATavailable] = ACTIONS(1828), - [anon_sym_va_arg] = ACTIONS(1826), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1248] = { - [ts_builtin_sym_end] = ACTIONS(1828), - [sym_identifier] = ACTIONS(1826), - [aux_sym_preproc_include_token1] = ACTIONS(1828), - [aux_sym_preproc_def_token1] = ACTIONS(1828), - [aux_sym_preproc_if_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym___attribute] = ACTIONS(1826), - [anon_sym___attribute__] = ACTIONS(1826), - [anon_sym___declspec] = ACTIONS(1826), - [anon_sym___cdecl] = ACTIONS(1826), - [anon_sym___clrcall] = ACTIONS(1826), - [anon_sym___stdcall] = ACTIONS(1826), - [anon_sym___fastcall] = ACTIONS(1826), - [anon_sym___thiscall] = ACTIONS(1826), - [anon_sym___vectorcall] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_auto] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_volatile] = ACTIONS(1826), - [anon_sym_restrict] = ACTIONS(1826), - [anon_sym__Atomic] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_out] = ACTIONS(1826), - [anon_sym_inout] = ACTIONS(1826), - [anon_sym_bycopy] = ACTIONS(1826), - [anon_sym_byref] = ACTIONS(1826), - [anon_sym_oneway] = ACTIONS(1826), - [anon_sym__Nullable] = ACTIONS(1826), - [anon_sym__Nonnull] = ACTIONS(1826), - [anon_sym__Nullable_result] = ACTIONS(1826), - [anon_sym__Null_unspecified] = ACTIONS(1826), - [anon_sym___autoreleasing] = ACTIONS(1826), - [anon_sym___nullable] = ACTIONS(1826), - [anon_sym___nonnull] = ACTIONS(1826), - [anon_sym___strong] = ACTIONS(1826), - [anon_sym___weak] = ACTIONS(1826), - [anon_sym___bridge] = ACTIONS(1826), - [anon_sym___bridge_transfer] = ACTIONS(1826), - [anon_sym___bridge_retained] = ACTIONS(1826), - [anon_sym___unsafe_unretained] = ACTIONS(1826), - [anon_sym___block] = ACTIONS(1826), - [anon_sym___kindof] = ACTIONS(1826), - [anon_sym___unused] = ACTIONS(1826), - [anon_sym__Complex] = ACTIONS(1826), - [anon_sym___complex] = ACTIONS(1826), - [anon_sym_IBOutlet] = ACTIONS(1826), - [anon_sym_IBInspectable] = ACTIONS(1826), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1826), - [anon_sym_signed] = ACTIONS(1826), - [anon_sym_unsigned] = ACTIONS(1826), - [anon_sym_long] = ACTIONS(1826), - [anon_sym_short] = ACTIONS(1826), - [sym_primitive_type] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_NS_ENUM] = ACTIONS(1826), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1826), - [anon_sym_NS_OPTIONS] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_case] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_goto] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_sizeof] = ACTIONS(1826), - [sym_number_literal] = ACTIONS(1828), - [anon_sym_L_SQUOTE] = ACTIONS(1828), - [anon_sym_u_SQUOTE] = ACTIONS(1828), - [anon_sym_U_SQUOTE] = ACTIONS(1828), - [anon_sym_u8_SQUOTE] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_L_DQUOTE] = ACTIONS(1828), - [anon_sym_u_DQUOTE] = ACTIONS(1828), - [anon_sym_U_DQUOTE] = ACTIONS(1828), - [anon_sym_u8_DQUOTE] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym_true] = ACTIONS(1826), - [sym_false] = ACTIONS(1826), - [sym_null] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1828), - [anon_sym_ATimport] = ACTIONS(1828), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1826), - [anon_sym_ATcompatibility_alias] = ACTIONS(1828), - [anon_sym_ATprotocol] = ACTIONS(1828), - [anon_sym_ATclass] = ACTIONS(1828), - [anon_sym_ATinterface] = ACTIONS(1828), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1826), - [sym_method_attribute_specifier] = ACTIONS(1826), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1826), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE] = ACTIONS(1826), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_API_AVAILABLE] = ACTIONS(1826), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_API_DEPRECATED] = ACTIONS(1826), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1826), - [anon_sym___deprecated_msg] = ACTIONS(1826), - [anon_sym___deprecated_enum_msg] = ACTIONS(1826), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1826), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1826), - [anon_sym_ATimplementation] = ACTIONS(1828), - [anon_sym_typeof] = ACTIONS(1826), - [anon_sym___typeof] = ACTIONS(1826), - [anon_sym___typeof__] = ACTIONS(1826), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_nil] = ACTIONS(1826), - [sym_id] = ACTIONS(1826), - [sym_instancetype] = ACTIONS(1826), - [sym_Class] = ACTIONS(1826), - [sym_SEL] = ACTIONS(1826), - [sym_IMP] = ACTIONS(1826), - [sym_BOOL] = ACTIONS(1826), - [sym_auto] = ACTIONS(1826), - [anon_sym_ATautoreleasepool] = ACTIONS(1828), - [anon_sym_ATsynchronized] = ACTIONS(1828), - [anon_sym_ATtry] = ACTIONS(1828), - [anon_sym_ATthrow] = ACTIONS(1828), - [anon_sym_ATselector] = ACTIONS(1828), - [anon_sym_ATencode] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1826), - [sym_YES] = ACTIONS(1826), - [sym_NO] = ACTIONS(1826), - [anon_sym___builtin_available] = ACTIONS(1826), - [anon_sym_ATavailable] = ACTIONS(1828), - [anon_sym_va_arg] = ACTIONS(1826), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1249] = { - [ts_builtin_sym_end] = ACTIONS(1828), - [sym_identifier] = ACTIONS(1826), - [aux_sym_preproc_include_token1] = ACTIONS(1828), - [aux_sym_preproc_def_token1] = ACTIONS(1828), - [aux_sym_preproc_if_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym___attribute] = ACTIONS(1826), - [anon_sym___attribute__] = ACTIONS(1826), - [anon_sym___declspec] = ACTIONS(1826), - [anon_sym___cdecl] = ACTIONS(1826), - [anon_sym___clrcall] = ACTIONS(1826), - [anon_sym___stdcall] = ACTIONS(1826), - [anon_sym___fastcall] = ACTIONS(1826), - [anon_sym___thiscall] = ACTIONS(1826), - [anon_sym___vectorcall] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_auto] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_volatile] = ACTIONS(1826), - [anon_sym_restrict] = ACTIONS(1826), - [anon_sym__Atomic] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_out] = ACTIONS(1826), - [anon_sym_inout] = ACTIONS(1826), - [anon_sym_bycopy] = ACTIONS(1826), - [anon_sym_byref] = ACTIONS(1826), - [anon_sym_oneway] = ACTIONS(1826), - [anon_sym__Nullable] = ACTIONS(1826), - [anon_sym__Nonnull] = ACTIONS(1826), - [anon_sym__Nullable_result] = ACTIONS(1826), - [anon_sym__Null_unspecified] = ACTIONS(1826), - [anon_sym___autoreleasing] = ACTIONS(1826), - [anon_sym___nullable] = ACTIONS(1826), - [anon_sym___nonnull] = ACTIONS(1826), - [anon_sym___strong] = ACTIONS(1826), - [anon_sym___weak] = ACTIONS(1826), - [anon_sym___bridge] = ACTIONS(1826), - [anon_sym___bridge_transfer] = ACTIONS(1826), - [anon_sym___bridge_retained] = ACTIONS(1826), - [anon_sym___unsafe_unretained] = ACTIONS(1826), - [anon_sym___block] = ACTIONS(1826), - [anon_sym___kindof] = ACTIONS(1826), - [anon_sym___unused] = ACTIONS(1826), - [anon_sym__Complex] = ACTIONS(1826), - [anon_sym___complex] = ACTIONS(1826), - [anon_sym_IBOutlet] = ACTIONS(1826), - [anon_sym_IBInspectable] = ACTIONS(1826), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1826), - [anon_sym_signed] = ACTIONS(1826), - [anon_sym_unsigned] = ACTIONS(1826), - [anon_sym_long] = ACTIONS(1826), - [anon_sym_short] = ACTIONS(1826), - [sym_primitive_type] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_NS_ENUM] = ACTIONS(1826), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1826), - [anon_sym_NS_OPTIONS] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_case] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_goto] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_sizeof] = ACTIONS(1826), - [sym_number_literal] = ACTIONS(1828), - [anon_sym_L_SQUOTE] = ACTIONS(1828), - [anon_sym_u_SQUOTE] = ACTIONS(1828), - [anon_sym_U_SQUOTE] = ACTIONS(1828), - [anon_sym_u8_SQUOTE] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_L_DQUOTE] = ACTIONS(1828), - [anon_sym_u_DQUOTE] = ACTIONS(1828), - [anon_sym_U_DQUOTE] = ACTIONS(1828), - [anon_sym_u8_DQUOTE] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym_true] = ACTIONS(1826), - [sym_false] = ACTIONS(1826), - [sym_null] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1828), - [anon_sym_ATimport] = ACTIONS(1828), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1826), - [anon_sym_ATcompatibility_alias] = ACTIONS(1828), - [anon_sym_ATprotocol] = ACTIONS(1828), - [anon_sym_ATclass] = ACTIONS(1828), - [anon_sym_ATinterface] = ACTIONS(1828), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1826), - [sym_method_attribute_specifier] = ACTIONS(1826), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1826), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE] = ACTIONS(1826), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_API_AVAILABLE] = ACTIONS(1826), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_API_DEPRECATED] = ACTIONS(1826), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1826), - [anon_sym___deprecated_msg] = ACTIONS(1826), - [anon_sym___deprecated_enum_msg] = ACTIONS(1826), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1826), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1826), - [anon_sym_ATimplementation] = ACTIONS(1828), - [anon_sym_typeof] = ACTIONS(1826), - [anon_sym___typeof] = ACTIONS(1826), - [anon_sym___typeof__] = ACTIONS(1826), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_nil] = ACTIONS(1826), - [sym_id] = ACTIONS(1826), - [sym_instancetype] = ACTIONS(1826), - [sym_Class] = ACTIONS(1826), - [sym_SEL] = ACTIONS(1826), - [sym_IMP] = ACTIONS(1826), - [sym_BOOL] = ACTIONS(1826), - [sym_auto] = ACTIONS(1826), - [anon_sym_ATautoreleasepool] = ACTIONS(1828), - [anon_sym_ATsynchronized] = ACTIONS(1828), - [anon_sym_ATtry] = ACTIONS(1828), - [anon_sym_ATthrow] = ACTIONS(1828), - [anon_sym_ATselector] = ACTIONS(1828), - [anon_sym_ATencode] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1826), - [sym_YES] = ACTIONS(1826), - [sym_NO] = ACTIONS(1826), - [anon_sym___builtin_available] = ACTIONS(1826), - [anon_sym_ATavailable] = ACTIONS(1828), - [anon_sym_va_arg] = ACTIONS(1826), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1250] = { - [ts_builtin_sym_end] = ACTIONS(1824), - [sym_identifier] = ACTIONS(1822), - [aux_sym_preproc_include_token1] = ACTIONS(1824), - [aux_sym_preproc_def_token1] = ACTIONS(1824), - [aux_sym_preproc_if_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1822), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym___attribute] = ACTIONS(1822), - [anon_sym___attribute__] = ACTIONS(1822), - [anon_sym___declspec] = ACTIONS(1822), - [anon_sym___cdecl] = ACTIONS(1822), - [anon_sym___clrcall] = ACTIONS(1822), - [anon_sym___stdcall] = ACTIONS(1822), - [anon_sym___fastcall] = ACTIONS(1822), - [anon_sym___thiscall] = ACTIONS(1822), - [anon_sym___vectorcall] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [anon_sym__Atomic] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_out] = ACTIONS(1822), - [anon_sym_inout] = ACTIONS(1822), - [anon_sym_bycopy] = ACTIONS(1822), - [anon_sym_byref] = ACTIONS(1822), - [anon_sym_oneway] = ACTIONS(1822), - [anon_sym__Nullable] = ACTIONS(1822), - [anon_sym__Nonnull] = ACTIONS(1822), - [anon_sym__Nullable_result] = ACTIONS(1822), - [anon_sym__Null_unspecified] = ACTIONS(1822), - [anon_sym___autoreleasing] = ACTIONS(1822), - [anon_sym___nullable] = ACTIONS(1822), - [anon_sym___nonnull] = ACTIONS(1822), - [anon_sym___strong] = ACTIONS(1822), - [anon_sym___weak] = ACTIONS(1822), - [anon_sym___bridge] = ACTIONS(1822), - [anon_sym___bridge_transfer] = ACTIONS(1822), - [anon_sym___bridge_retained] = ACTIONS(1822), - [anon_sym___unsafe_unretained] = ACTIONS(1822), - [anon_sym___block] = ACTIONS(1822), - [anon_sym___kindof] = ACTIONS(1822), - [anon_sym___unused] = ACTIONS(1822), - [anon_sym__Complex] = ACTIONS(1822), - [anon_sym___complex] = ACTIONS(1822), - [anon_sym_IBOutlet] = ACTIONS(1822), - [anon_sym_IBInspectable] = ACTIONS(1822), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_NS_ENUM] = ACTIONS(1822), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1822), - [anon_sym_NS_OPTIONS] = ACTIONS(1822), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_case] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_goto] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1822), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_L_SQUOTE] = ACTIONS(1824), - [anon_sym_u_SQUOTE] = ACTIONS(1824), - [anon_sym_U_SQUOTE] = ACTIONS(1824), - [anon_sym_u8_SQUOTE] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_L_DQUOTE] = ACTIONS(1824), - [anon_sym_u_DQUOTE] = ACTIONS(1824), - [anon_sym_U_DQUOTE] = ACTIONS(1824), - [anon_sym_u8_DQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym_true] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1824), - [anon_sym_ATimport] = ACTIONS(1824), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1822), - [anon_sym_ATcompatibility_alias] = ACTIONS(1824), - [anon_sym_ATprotocol] = ACTIONS(1824), - [anon_sym_ATclass] = ACTIONS(1824), - [anon_sym_ATinterface] = ACTIONS(1824), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1822), - [sym_method_attribute_specifier] = ACTIONS(1822), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1822), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE] = ACTIONS(1822), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_API_AVAILABLE] = ACTIONS(1822), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_API_DEPRECATED] = ACTIONS(1822), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1822), - [anon_sym___deprecated_msg] = ACTIONS(1822), - [anon_sym___deprecated_enum_msg] = ACTIONS(1822), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1822), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1822), - [anon_sym_ATimplementation] = ACTIONS(1824), - [anon_sym_typeof] = ACTIONS(1822), - [anon_sym___typeof] = ACTIONS(1822), - [anon_sym___typeof__] = ACTIONS(1822), - [sym_self] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_nil] = ACTIONS(1822), - [sym_id] = ACTIONS(1822), - [sym_instancetype] = ACTIONS(1822), - [sym_Class] = ACTIONS(1822), - [sym_SEL] = ACTIONS(1822), - [sym_IMP] = ACTIONS(1822), - [sym_BOOL] = ACTIONS(1822), - [sym_auto] = ACTIONS(1822), - [anon_sym_ATautoreleasepool] = ACTIONS(1824), - [anon_sym_ATsynchronized] = ACTIONS(1824), - [anon_sym_ATtry] = ACTIONS(1824), - [anon_sym_ATthrow] = ACTIONS(1824), - [anon_sym_ATselector] = ACTIONS(1824), - [anon_sym_ATencode] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1822), - [sym_YES] = ACTIONS(1822), - [sym_NO] = ACTIONS(1822), - [anon_sym___builtin_available] = ACTIONS(1822), - [anon_sym_ATavailable] = ACTIONS(1824), - [anon_sym_va_arg] = ACTIONS(1822), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1251] = { - [ts_builtin_sym_end] = ACTIONS(1888), - [sym_identifier] = ACTIONS(1886), - [aux_sym_preproc_include_token1] = ACTIONS(1888), - [aux_sym_preproc_def_token1] = ACTIONS(1888), - [aux_sym_preproc_if_token1] = ACTIONS(1886), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1886), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1886), - [anon_sym_LPAREN2] = ACTIONS(1888), - [anon_sym_BANG] = ACTIONS(1888), - [anon_sym_TILDE] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1888), - [anon_sym_CARET] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_typedef] = ACTIONS(1886), - [anon_sym_extern] = ACTIONS(1886), - [anon_sym___attribute] = ACTIONS(1886), - [anon_sym___attribute__] = ACTIONS(1886), - [anon_sym___declspec] = ACTIONS(1886), - [anon_sym___cdecl] = ACTIONS(1886), - [anon_sym___clrcall] = ACTIONS(1886), - [anon_sym___stdcall] = ACTIONS(1886), - [anon_sym___fastcall] = ACTIONS(1886), - [anon_sym___thiscall] = ACTIONS(1886), - [anon_sym___vectorcall] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_static] = ACTIONS(1886), - [anon_sym_auto] = ACTIONS(1886), - [anon_sym_register] = ACTIONS(1886), - [anon_sym_inline] = ACTIONS(1886), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1886), - [anon_sym_const] = ACTIONS(1886), - [anon_sym_volatile] = ACTIONS(1886), - [anon_sym_restrict] = ACTIONS(1886), - [anon_sym__Atomic] = ACTIONS(1886), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_out] = ACTIONS(1886), - [anon_sym_inout] = ACTIONS(1886), - [anon_sym_bycopy] = ACTIONS(1886), - [anon_sym_byref] = ACTIONS(1886), - [anon_sym_oneway] = ACTIONS(1886), - [anon_sym__Nullable] = ACTIONS(1886), - [anon_sym__Nonnull] = ACTIONS(1886), - [anon_sym__Nullable_result] = ACTIONS(1886), - [anon_sym__Null_unspecified] = ACTIONS(1886), - [anon_sym___autoreleasing] = ACTIONS(1886), - [anon_sym___nullable] = ACTIONS(1886), - [anon_sym___nonnull] = ACTIONS(1886), - [anon_sym___strong] = ACTIONS(1886), - [anon_sym___weak] = ACTIONS(1886), - [anon_sym___bridge] = ACTIONS(1886), - [anon_sym___bridge_transfer] = ACTIONS(1886), - [anon_sym___bridge_retained] = ACTIONS(1886), - [anon_sym___unsafe_unretained] = ACTIONS(1886), - [anon_sym___block] = ACTIONS(1886), - [anon_sym___kindof] = ACTIONS(1886), - [anon_sym___unused] = ACTIONS(1886), - [anon_sym__Complex] = ACTIONS(1886), - [anon_sym___complex] = ACTIONS(1886), - [anon_sym_IBOutlet] = ACTIONS(1886), - [anon_sym_IBInspectable] = ACTIONS(1886), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1886), - [anon_sym_signed] = ACTIONS(1886), - [anon_sym_unsigned] = ACTIONS(1886), - [anon_sym_long] = ACTIONS(1886), - [anon_sym_short] = ACTIONS(1886), - [sym_primitive_type] = ACTIONS(1886), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_NS_ENUM] = ACTIONS(1886), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1886), - [anon_sym_NS_OPTIONS] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1886), - [anon_sym_union] = ACTIONS(1886), - [anon_sym_if] = ACTIONS(1886), - [anon_sym_switch] = ACTIONS(1886), - [anon_sym_case] = ACTIONS(1886), - [anon_sym_default] = ACTIONS(1886), - [anon_sym_while] = ACTIONS(1886), - [anon_sym_do] = ACTIONS(1886), - [anon_sym_for] = ACTIONS(1886), - [anon_sym_return] = ACTIONS(1886), - [anon_sym_break] = ACTIONS(1886), - [anon_sym_continue] = ACTIONS(1886), - [anon_sym_goto] = ACTIONS(1886), - [anon_sym_DASH_DASH] = ACTIONS(1888), - [anon_sym_PLUS_PLUS] = ACTIONS(1888), - [anon_sym_sizeof] = ACTIONS(1886), - [sym_number_literal] = ACTIONS(1888), - [anon_sym_L_SQUOTE] = ACTIONS(1888), - [anon_sym_u_SQUOTE] = ACTIONS(1888), - [anon_sym_U_SQUOTE] = ACTIONS(1888), - [anon_sym_u8_SQUOTE] = ACTIONS(1888), - [anon_sym_SQUOTE] = ACTIONS(1888), - [anon_sym_L_DQUOTE] = ACTIONS(1888), - [anon_sym_u_DQUOTE] = ACTIONS(1888), - [anon_sym_U_DQUOTE] = ACTIONS(1888), - [anon_sym_u8_DQUOTE] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [sym_true] = ACTIONS(1886), - [sym_false] = ACTIONS(1886), - [sym_null] = ACTIONS(1886), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1888), - [anon_sym_ATimport] = ACTIONS(1888), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1886), - [anon_sym_ATcompatibility_alias] = ACTIONS(1888), - [anon_sym_ATprotocol] = ACTIONS(1888), - [anon_sym_ATclass] = ACTIONS(1888), - [anon_sym_ATinterface] = ACTIONS(1888), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1886), - [sym_method_attribute_specifier] = ACTIONS(1886), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1886), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1886), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1886), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1886), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1886), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1886), - [anon_sym_NS_AVAILABLE] = ACTIONS(1886), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1886), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1886), - [anon_sym_API_AVAILABLE] = ACTIONS(1886), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1886), - [anon_sym_API_DEPRECATED] = ACTIONS(1886), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1886), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1886), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1886), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1886), - [anon_sym___deprecated_msg] = ACTIONS(1886), - [anon_sym___deprecated_enum_msg] = ACTIONS(1886), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1886), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1886), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1886), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1886), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1886), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1886), - [anon_sym_ATimplementation] = ACTIONS(1888), - [anon_sym_typeof] = ACTIONS(1886), - [anon_sym___typeof] = ACTIONS(1886), - [anon_sym___typeof__] = ACTIONS(1886), - [sym_self] = ACTIONS(1886), - [sym_super] = ACTIONS(1886), - [sym_nil] = ACTIONS(1886), - [sym_id] = ACTIONS(1886), - [sym_instancetype] = ACTIONS(1886), - [sym_Class] = ACTIONS(1886), - [sym_SEL] = ACTIONS(1886), - [sym_IMP] = ACTIONS(1886), - [sym_BOOL] = ACTIONS(1886), - [sym_auto] = ACTIONS(1886), - [anon_sym_ATautoreleasepool] = ACTIONS(1888), - [anon_sym_ATsynchronized] = ACTIONS(1888), - [anon_sym_ATtry] = ACTIONS(1888), - [anon_sym_ATthrow] = ACTIONS(1888), - [anon_sym_ATselector] = ACTIONS(1888), - [anon_sym_ATencode] = ACTIONS(1888), - [anon_sym_AT] = ACTIONS(1886), - [sym_YES] = ACTIONS(1886), - [sym_NO] = ACTIONS(1886), - [anon_sym___builtin_available] = ACTIONS(1886), - [anon_sym_ATavailable] = ACTIONS(1888), - [anon_sym_va_arg] = ACTIONS(1886), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1252] = { - [ts_builtin_sym_end] = ACTIONS(1820), - [sym_identifier] = ACTIONS(1818), - [aux_sym_preproc_include_token1] = ACTIONS(1820), - [aux_sym_preproc_def_token1] = ACTIONS(1820), - [aux_sym_preproc_if_token1] = ACTIONS(1818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1818), - [anon_sym_LPAREN2] = ACTIONS(1820), - [anon_sym_BANG] = ACTIONS(1820), - [anon_sym_TILDE] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1820), - [anon_sym_AMP] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_typedef] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(1818), - [anon_sym___attribute] = ACTIONS(1818), - [anon_sym___attribute__] = ACTIONS(1818), - [anon_sym___declspec] = ACTIONS(1818), - [anon_sym___cdecl] = ACTIONS(1818), - [anon_sym___clrcall] = ACTIONS(1818), - [anon_sym___stdcall] = ACTIONS(1818), - [anon_sym___fastcall] = ACTIONS(1818), - [anon_sym___thiscall] = ACTIONS(1818), - [anon_sym___vectorcall] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1818), - [anon_sym_auto] = ACTIONS(1818), - [anon_sym_register] = ACTIONS(1818), - [anon_sym_inline] = ACTIONS(1818), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1818), - [anon_sym_const] = ACTIONS(1818), - [anon_sym_volatile] = ACTIONS(1818), - [anon_sym_restrict] = ACTIONS(1818), - [anon_sym__Atomic] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1818), - [anon_sym_out] = ACTIONS(1818), - [anon_sym_inout] = ACTIONS(1818), - [anon_sym_bycopy] = ACTIONS(1818), - [anon_sym_byref] = ACTIONS(1818), - [anon_sym_oneway] = ACTIONS(1818), - [anon_sym__Nullable] = ACTIONS(1818), - [anon_sym__Nonnull] = ACTIONS(1818), - [anon_sym__Nullable_result] = ACTIONS(1818), - [anon_sym__Null_unspecified] = ACTIONS(1818), - [anon_sym___autoreleasing] = ACTIONS(1818), - [anon_sym___nullable] = ACTIONS(1818), - [anon_sym___nonnull] = ACTIONS(1818), - [anon_sym___strong] = ACTIONS(1818), - [anon_sym___weak] = ACTIONS(1818), - [anon_sym___bridge] = ACTIONS(1818), - [anon_sym___bridge_transfer] = ACTIONS(1818), - [anon_sym___bridge_retained] = ACTIONS(1818), - [anon_sym___unsafe_unretained] = ACTIONS(1818), - [anon_sym___block] = ACTIONS(1818), - [anon_sym___kindof] = ACTIONS(1818), - [anon_sym___unused] = ACTIONS(1818), - [anon_sym__Complex] = ACTIONS(1818), - [anon_sym___complex] = ACTIONS(1818), - [anon_sym_IBOutlet] = ACTIONS(1818), - [anon_sym_IBInspectable] = ACTIONS(1818), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1818), - [anon_sym_signed] = ACTIONS(1818), - [anon_sym_unsigned] = ACTIONS(1818), - [anon_sym_long] = ACTIONS(1818), - [anon_sym_short] = ACTIONS(1818), - [sym_primitive_type] = ACTIONS(1818), - [anon_sym_enum] = ACTIONS(1818), - [anon_sym_NS_ENUM] = ACTIONS(1818), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1818), - [anon_sym_NS_OPTIONS] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1818), - [anon_sym_union] = ACTIONS(1818), - [anon_sym_if] = ACTIONS(1818), - [anon_sym_switch] = ACTIONS(1818), - [anon_sym_case] = ACTIONS(1818), - [anon_sym_default] = ACTIONS(1818), - [anon_sym_while] = ACTIONS(1818), - [anon_sym_do] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(1818), - [anon_sym_return] = ACTIONS(1818), - [anon_sym_break] = ACTIONS(1818), - [anon_sym_continue] = ACTIONS(1818), - [anon_sym_goto] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1820), - [anon_sym_PLUS_PLUS] = ACTIONS(1820), - [anon_sym_sizeof] = ACTIONS(1818), - [sym_number_literal] = ACTIONS(1820), - [anon_sym_L_SQUOTE] = ACTIONS(1820), - [anon_sym_u_SQUOTE] = ACTIONS(1820), - [anon_sym_U_SQUOTE] = ACTIONS(1820), - [anon_sym_u8_SQUOTE] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_L_DQUOTE] = ACTIONS(1820), - [anon_sym_u_DQUOTE] = ACTIONS(1820), - [anon_sym_U_DQUOTE] = ACTIONS(1820), - [anon_sym_u8_DQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym_true] = ACTIONS(1818), - [sym_false] = ACTIONS(1818), - [sym_null] = ACTIONS(1818), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1820), - [anon_sym_ATimport] = ACTIONS(1820), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1818), - [anon_sym_ATcompatibility_alias] = ACTIONS(1820), - [anon_sym_ATprotocol] = ACTIONS(1820), - [anon_sym_ATclass] = ACTIONS(1820), - [anon_sym_ATinterface] = ACTIONS(1820), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1818), - [sym_method_attribute_specifier] = ACTIONS(1818), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1818), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1818), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1818), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1818), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1818), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1818), - [anon_sym_NS_AVAILABLE] = ACTIONS(1818), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1818), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1818), - [anon_sym_API_AVAILABLE] = ACTIONS(1818), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1818), - [anon_sym_API_DEPRECATED] = ACTIONS(1818), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1818), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1818), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1818), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1818), - [anon_sym___deprecated_msg] = ACTIONS(1818), - [anon_sym___deprecated_enum_msg] = ACTIONS(1818), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1818), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1818), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1818), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1818), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1818), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1818), - [anon_sym_ATimplementation] = ACTIONS(1820), - [anon_sym_typeof] = ACTIONS(1818), - [anon_sym___typeof] = ACTIONS(1818), - [anon_sym___typeof__] = ACTIONS(1818), - [sym_self] = ACTIONS(1818), - [sym_super] = ACTIONS(1818), - [sym_nil] = ACTIONS(1818), - [sym_id] = ACTIONS(1818), - [sym_instancetype] = ACTIONS(1818), - [sym_Class] = ACTIONS(1818), - [sym_SEL] = ACTIONS(1818), - [sym_IMP] = ACTIONS(1818), - [sym_BOOL] = ACTIONS(1818), - [sym_auto] = ACTIONS(1818), - [anon_sym_ATautoreleasepool] = ACTIONS(1820), - [anon_sym_ATsynchronized] = ACTIONS(1820), - [anon_sym_ATtry] = ACTIONS(1820), - [anon_sym_ATthrow] = ACTIONS(1820), - [anon_sym_ATselector] = ACTIONS(1820), - [anon_sym_ATencode] = ACTIONS(1820), - [anon_sym_AT] = ACTIONS(1818), - [sym_YES] = ACTIONS(1818), - [sym_NO] = ACTIONS(1818), - [anon_sym___builtin_available] = ACTIONS(1818), - [anon_sym_ATavailable] = ACTIONS(1820), - [anon_sym_va_arg] = ACTIONS(1818), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1253] = { - [ts_builtin_sym_end] = ACTIONS(1808), - [sym_identifier] = ACTIONS(1806), - [aux_sym_preproc_include_token1] = ACTIONS(1808), - [aux_sym_preproc_def_token1] = ACTIONS(1808), - [aux_sym_preproc_if_token1] = ACTIONS(1806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1806), - [anon_sym_LPAREN2] = ACTIONS(1808), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_CARET] = ACTIONS(1808), - [anon_sym_AMP] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1808), - [anon_sym_typedef] = ACTIONS(1806), - [anon_sym_extern] = ACTIONS(1806), - [anon_sym___attribute] = ACTIONS(1806), - [anon_sym___attribute__] = ACTIONS(1806), - [anon_sym___declspec] = ACTIONS(1806), - [anon_sym___cdecl] = ACTIONS(1806), - [anon_sym___clrcall] = ACTIONS(1806), - [anon_sym___stdcall] = ACTIONS(1806), - [anon_sym___fastcall] = ACTIONS(1806), - [anon_sym___thiscall] = ACTIONS(1806), - [anon_sym___vectorcall] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_RBRACE] = ACTIONS(1808), - [anon_sym_LBRACK] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_auto] = ACTIONS(1806), - [anon_sym_register] = ACTIONS(1806), - [anon_sym_inline] = ACTIONS(1806), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1806), - [anon_sym_const] = ACTIONS(1806), - [anon_sym_volatile] = ACTIONS(1806), - [anon_sym_restrict] = ACTIONS(1806), - [anon_sym__Atomic] = ACTIONS(1806), - [anon_sym_in] = ACTIONS(1806), - [anon_sym_out] = ACTIONS(1806), - [anon_sym_inout] = ACTIONS(1806), - [anon_sym_bycopy] = ACTIONS(1806), - [anon_sym_byref] = ACTIONS(1806), - [anon_sym_oneway] = ACTIONS(1806), - [anon_sym__Nullable] = ACTIONS(1806), - [anon_sym__Nonnull] = ACTIONS(1806), - [anon_sym__Nullable_result] = ACTIONS(1806), - [anon_sym__Null_unspecified] = ACTIONS(1806), - [anon_sym___autoreleasing] = ACTIONS(1806), - [anon_sym___nullable] = ACTIONS(1806), - [anon_sym___nonnull] = ACTIONS(1806), - [anon_sym___strong] = ACTIONS(1806), - [anon_sym___weak] = ACTIONS(1806), - [anon_sym___bridge] = ACTIONS(1806), - [anon_sym___bridge_transfer] = ACTIONS(1806), - [anon_sym___bridge_retained] = ACTIONS(1806), - [anon_sym___unsafe_unretained] = ACTIONS(1806), - [anon_sym___block] = ACTIONS(1806), - [anon_sym___kindof] = ACTIONS(1806), - [anon_sym___unused] = ACTIONS(1806), - [anon_sym__Complex] = ACTIONS(1806), - [anon_sym___complex] = ACTIONS(1806), - [anon_sym_IBOutlet] = ACTIONS(1806), - [anon_sym_IBInspectable] = ACTIONS(1806), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1806), - [anon_sym_signed] = ACTIONS(1806), - [anon_sym_unsigned] = ACTIONS(1806), - [anon_sym_long] = ACTIONS(1806), - [anon_sym_short] = ACTIONS(1806), - [sym_primitive_type] = ACTIONS(1806), - [anon_sym_enum] = ACTIONS(1806), - [anon_sym_NS_ENUM] = ACTIONS(1806), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1806), - [anon_sym_NS_OPTIONS] = ACTIONS(1806), - [anon_sym_struct] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_if] = ACTIONS(1806), - [anon_sym_switch] = ACTIONS(1806), - [anon_sym_case] = ACTIONS(1806), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_while] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1806), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1806), - [anon_sym_break] = ACTIONS(1806), - [anon_sym_continue] = ACTIONS(1806), - [anon_sym_goto] = ACTIONS(1806), - [anon_sym_DASH_DASH] = ACTIONS(1808), - [anon_sym_PLUS_PLUS] = ACTIONS(1808), - [anon_sym_sizeof] = ACTIONS(1806), - [sym_number_literal] = ACTIONS(1808), - [anon_sym_L_SQUOTE] = ACTIONS(1808), - [anon_sym_u_SQUOTE] = ACTIONS(1808), - [anon_sym_U_SQUOTE] = ACTIONS(1808), - [anon_sym_u8_SQUOTE] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [anon_sym_L_DQUOTE] = ACTIONS(1808), - [anon_sym_u_DQUOTE] = ACTIONS(1808), - [anon_sym_U_DQUOTE] = ACTIONS(1808), - [anon_sym_u8_DQUOTE] = ACTIONS(1808), - [anon_sym_DQUOTE] = ACTIONS(1808), - [sym_true] = ACTIONS(1806), - [sym_false] = ACTIONS(1806), - [sym_null] = ACTIONS(1806), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1808), - [anon_sym_ATimport] = ACTIONS(1808), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1806), - [anon_sym_ATcompatibility_alias] = ACTIONS(1808), - [anon_sym_ATprotocol] = ACTIONS(1808), - [anon_sym_ATclass] = ACTIONS(1808), - [anon_sym_ATinterface] = ACTIONS(1808), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1806), - [sym_method_attribute_specifier] = ACTIONS(1806), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1806), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1806), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1806), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1806), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1806), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1806), - [anon_sym_NS_AVAILABLE] = ACTIONS(1806), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1806), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1806), - [anon_sym_API_AVAILABLE] = ACTIONS(1806), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1806), - [anon_sym_API_DEPRECATED] = ACTIONS(1806), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1806), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1806), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1806), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1806), - [anon_sym___deprecated_msg] = ACTIONS(1806), - [anon_sym___deprecated_enum_msg] = ACTIONS(1806), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1806), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1806), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1806), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1806), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1806), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1806), - [anon_sym_ATimplementation] = ACTIONS(1808), - [anon_sym_typeof] = ACTIONS(1806), - [anon_sym___typeof] = ACTIONS(1806), - [anon_sym___typeof__] = ACTIONS(1806), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_nil] = ACTIONS(1806), - [sym_id] = ACTIONS(1806), - [sym_instancetype] = ACTIONS(1806), - [sym_Class] = ACTIONS(1806), - [sym_SEL] = ACTIONS(1806), - [sym_IMP] = ACTIONS(1806), - [sym_BOOL] = ACTIONS(1806), - [sym_auto] = ACTIONS(1806), - [anon_sym_ATautoreleasepool] = ACTIONS(1808), - [anon_sym_ATsynchronized] = ACTIONS(1808), - [anon_sym_ATtry] = ACTIONS(1808), - [anon_sym_ATthrow] = ACTIONS(1808), - [anon_sym_ATselector] = ACTIONS(1808), - [anon_sym_ATencode] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(1806), - [sym_YES] = ACTIONS(1806), - [sym_NO] = ACTIONS(1806), - [anon_sym___builtin_available] = ACTIONS(1806), - [anon_sym_ATavailable] = ACTIONS(1808), - [anon_sym_va_arg] = ACTIONS(1806), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1254] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1255] = { - [sym_identifier] = ACTIONS(2134), - [aux_sym_preproc_include_token1] = ACTIONS(2136), - [aux_sym_preproc_def_token1] = ACTIONS(2136), - [aux_sym_preproc_if_token1] = ACTIONS(2134), - [aux_sym_preproc_if_token2] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), - [anon_sym_LPAREN2] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_typedef] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym___attribute] = ACTIONS(2134), - [anon_sym___attribute__] = ACTIONS(2134), - [anon_sym___declspec] = ACTIONS(2134), - [anon_sym___cdecl] = ACTIONS(2134), - [anon_sym___clrcall] = ACTIONS(2134), - [anon_sym___stdcall] = ACTIONS(2134), - [anon_sym___fastcall] = ACTIONS(2134), - [anon_sym___thiscall] = ACTIONS(2134), - [anon_sym___vectorcall] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_auto] = ACTIONS(2134), - [anon_sym_register] = ACTIONS(2134), - [anon_sym_inline] = ACTIONS(2134), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [anon_sym_volatile] = ACTIONS(2134), - [anon_sym_restrict] = ACTIONS(2134), - [anon_sym__Atomic] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [anon_sym_out] = ACTIONS(2134), - [anon_sym_inout] = ACTIONS(2134), - [anon_sym_bycopy] = ACTIONS(2134), - [anon_sym_byref] = ACTIONS(2134), - [anon_sym_oneway] = ACTIONS(2134), - [anon_sym__Nullable] = ACTIONS(2134), - [anon_sym__Nonnull] = ACTIONS(2134), - [anon_sym__Nullable_result] = ACTIONS(2134), - [anon_sym__Null_unspecified] = ACTIONS(2134), - [anon_sym___autoreleasing] = ACTIONS(2134), - [anon_sym___nullable] = ACTIONS(2134), - [anon_sym___nonnull] = ACTIONS(2134), - [anon_sym___strong] = ACTIONS(2134), - [anon_sym___weak] = ACTIONS(2134), - [anon_sym___bridge] = ACTIONS(2134), - [anon_sym___bridge_transfer] = ACTIONS(2134), - [anon_sym___bridge_retained] = ACTIONS(2134), - [anon_sym___unsafe_unretained] = ACTIONS(2134), - [anon_sym___block] = ACTIONS(2134), - [anon_sym___kindof] = ACTIONS(2134), - [anon_sym___unused] = ACTIONS(2134), - [anon_sym__Complex] = ACTIONS(2134), - [anon_sym___complex] = ACTIONS(2134), - [anon_sym_IBOutlet] = ACTIONS(2134), - [anon_sym_IBInspectable] = ACTIONS(2134), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2134), - [anon_sym_signed] = ACTIONS(2134), - [anon_sym_unsigned] = ACTIONS(2134), - [anon_sym_long] = ACTIONS(2134), - [anon_sym_short] = ACTIONS(2134), - [sym_primitive_type] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_NS_ENUM] = ACTIONS(2134), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2134), - [anon_sym_NS_OPTIONS] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(2134), - [anon_sym_union] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_switch] = ACTIONS(2134), - [anon_sym_case] = ACTIONS(2134), - [anon_sym_default] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_goto] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_PLUS_PLUS] = ACTIONS(2136), - [anon_sym_sizeof] = ACTIONS(2134), - [sym_number_literal] = ACTIONS(2136), - [anon_sym_L_SQUOTE] = ACTIONS(2136), - [anon_sym_u_SQUOTE] = ACTIONS(2136), - [anon_sym_U_SQUOTE] = ACTIONS(2136), - [anon_sym_u8_SQUOTE] = ACTIONS(2136), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_L_DQUOTE] = ACTIONS(2136), - [anon_sym_u_DQUOTE] = ACTIONS(2136), - [anon_sym_U_DQUOTE] = ACTIONS(2136), - [anon_sym_u8_DQUOTE] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [sym_null] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2136), - [anon_sym_ATimport] = ACTIONS(2136), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2134), - [anon_sym_ATcompatibility_alias] = ACTIONS(2136), - [anon_sym_ATprotocol] = ACTIONS(2136), - [anon_sym_ATclass] = ACTIONS(2136), - [anon_sym_ATinterface] = ACTIONS(2136), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2134), - [sym_method_attribute_specifier] = ACTIONS(2134), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2134), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE] = ACTIONS(2134), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_API_AVAILABLE] = ACTIONS(2134), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_API_DEPRECATED] = ACTIONS(2134), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2134), - [anon_sym___deprecated_msg] = ACTIONS(2134), - [anon_sym___deprecated_enum_msg] = ACTIONS(2134), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2134), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2134), - [anon_sym_ATimplementation] = ACTIONS(2136), - [anon_sym_typeof] = ACTIONS(2134), - [anon_sym___typeof] = ACTIONS(2134), - [anon_sym___typeof__] = ACTIONS(2134), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_nil] = ACTIONS(2134), - [sym_id] = ACTIONS(2134), - [sym_instancetype] = ACTIONS(2134), - [sym_Class] = ACTIONS(2134), - [sym_SEL] = ACTIONS(2134), - [sym_IMP] = ACTIONS(2134), - [sym_BOOL] = ACTIONS(2134), - [sym_auto] = ACTIONS(2134), - [anon_sym_ATautoreleasepool] = ACTIONS(2136), - [anon_sym_ATsynchronized] = ACTIONS(2136), - [anon_sym_ATtry] = ACTIONS(2136), - [anon_sym_ATthrow] = ACTIONS(2136), - [anon_sym_ATselector] = ACTIONS(2136), - [anon_sym_ATencode] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2134), - [sym_YES] = ACTIONS(2134), - [sym_NO] = ACTIONS(2134), - [anon_sym___builtin_available] = ACTIONS(2134), - [anon_sym_ATavailable] = ACTIONS(2136), - [anon_sym_va_arg] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1256] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1257] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1258] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1259] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1260] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1261] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1262] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1263] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1264] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1265] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1266] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1267] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1268] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1269] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1270] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1271] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1272] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1273] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1274] = { - [sym_identifier] = ACTIONS(1922), - [aux_sym_preproc_include_token1] = ACTIONS(1924), - [aux_sym_preproc_def_token1] = ACTIONS(1924), - [aux_sym_preproc_if_token1] = ACTIONS(1922), - [aux_sym_preproc_if_token2] = ACTIONS(1922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1922), - [anon_sym_LPAREN2] = ACTIONS(1924), - [anon_sym_BANG] = ACTIONS(1924), - [anon_sym_TILDE] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_CARET] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_typedef] = ACTIONS(1922), - [anon_sym_extern] = ACTIONS(1922), - [anon_sym___attribute] = ACTIONS(1922), - [anon_sym___attribute__] = ACTIONS(1922), - [anon_sym___declspec] = ACTIONS(1922), - [anon_sym___cdecl] = ACTIONS(1922), - [anon_sym___clrcall] = ACTIONS(1922), - [anon_sym___stdcall] = ACTIONS(1922), - [anon_sym___fastcall] = ACTIONS(1922), - [anon_sym___thiscall] = ACTIONS(1922), - [anon_sym___vectorcall] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1922), - [anon_sym_auto] = ACTIONS(1922), - [anon_sym_register] = ACTIONS(1922), - [anon_sym_inline] = ACTIONS(1922), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(1922), - [anon_sym_volatile] = ACTIONS(1922), - [anon_sym_restrict] = ACTIONS(1922), - [anon_sym__Atomic] = ACTIONS(1922), - [anon_sym_in] = ACTIONS(1922), - [anon_sym_out] = ACTIONS(1922), - [anon_sym_inout] = ACTIONS(1922), - [anon_sym_bycopy] = ACTIONS(1922), - [anon_sym_byref] = ACTIONS(1922), - [anon_sym_oneway] = ACTIONS(1922), - [anon_sym__Nullable] = ACTIONS(1922), - [anon_sym__Nonnull] = ACTIONS(1922), - [anon_sym__Nullable_result] = ACTIONS(1922), - [anon_sym__Null_unspecified] = ACTIONS(1922), - [anon_sym___autoreleasing] = ACTIONS(1922), - [anon_sym___nullable] = ACTIONS(1922), - [anon_sym___nonnull] = ACTIONS(1922), - [anon_sym___strong] = ACTIONS(1922), - [anon_sym___weak] = ACTIONS(1922), - [anon_sym___bridge] = ACTIONS(1922), - [anon_sym___bridge_transfer] = ACTIONS(1922), - [anon_sym___bridge_retained] = ACTIONS(1922), - [anon_sym___unsafe_unretained] = ACTIONS(1922), - [anon_sym___block] = ACTIONS(1922), - [anon_sym___kindof] = ACTIONS(1922), - [anon_sym___unused] = ACTIONS(1922), - [anon_sym__Complex] = ACTIONS(1922), - [anon_sym___complex] = ACTIONS(1922), - [anon_sym_IBOutlet] = ACTIONS(1922), - [anon_sym_IBInspectable] = ACTIONS(1922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1922), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [sym_primitive_type] = ACTIONS(1922), - [anon_sym_enum] = ACTIONS(1922), - [anon_sym_NS_ENUM] = ACTIONS(1922), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1922), - [anon_sym_NS_OPTIONS] = ACTIONS(1922), - [anon_sym_struct] = ACTIONS(1922), - [anon_sym_union] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(1922), - [anon_sym_switch] = ACTIONS(1922), - [anon_sym_case] = ACTIONS(1922), - [anon_sym_default] = ACTIONS(1922), - [anon_sym_while] = ACTIONS(1922), - [anon_sym_do] = ACTIONS(1922), - [anon_sym_for] = ACTIONS(1922), - [anon_sym_return] = ACTIONS(1922), - [anon_sym_break] = ACTIONS(1922), - [anon_sym_continue] = ACTIONS(1922), - [anon_sym_goto] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1924), - [anon_sym_PLUS_PLUS] = ACTIONS(1924), - [anon_sym_sizeof] = ACTIONS(1922), - [sym_number_literal] = ACTIONS(1924), - [anon_sym_L_SQUOTE] = ACTIONS(1924), - [anon_sym_u_SQUOTE] = ACTIONS(1924), - [anon_sym_U_SQUOTE] = ACTIONS(1924), - [anon_sym_u8_SQUOTE] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_L_DQUOTE] = ACTIONS(1924), - [anon_sym_u_DQUOTE] = ACTIONS(1924), - [anon_sym_U_DQUOTE] = ACTIONS(1924), - [anon_sym_u8_DQUOTE] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [sym_null] = ACTIONS(1922), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1924), - [anon_sym_ATimport] = ACTIONS(1924), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1922), - [anon_sym_ATcompatibility_alias] = ACTIONS(1924), - [anon_sym_ATprotocol] = ACTIONS(1924), - [anon_sym_ATclass] = ACTIONS(1924), - [anon_sym_ATinterface] = ACTIONS(1924), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1922), - [sym_method_attribute_specifier] = ACTIONS(1922), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1922), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1922), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1922), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1922), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1922), - [anon_sym_NS_AVAILABLE] = ACTIONS(1922), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1922), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_API_AVAILABLE] = ACTIONS(1922), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_API_DEPRECATED] = ACTIONS(1922), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1922), - [anon_sym___deprecated_msg] = ACTIONS(1922), - [anon_sym___deprecated_enum_msg] = ACTIONS(1922), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1922), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1922), - [anon_sym_ATimplementation] = ACTIONS(1924), - [anon_sym_typeof] = ACTIONS(1922), - [anon_sym___typeof] = ACTIONS(1922), - [anon_sym___typeof__] = ACTIONS(1922), - [sym_self] = ACTIONS(1922), - [sym_super] = ACTIONS(1922), - [sym_nil] = ACTIONS(1922), - [sym_id] = ACTIONS(1922), - [sym_instancetype] = ACTIONS(1922), - [sym_Class] = ACTIONS(1922), - [sym_SEL] = ACTIONS(1922), - [sym_IMP] = ACTIONS(1922), - [sym_BOOL] = ACTIONS(1922), - [sym_auto] = ACTIONS(1922), - [anon_sym_ATautoreleasepool] = ACTIONS(1924), - [anon_sym_ATsynchronized] = ACTIONS(1924), - [anon_sym_ATtry] = ACTIONS(1924), - [anon_sym_ATthrow] = ACTIONS(1924), - [anon_sym_ATselector] = ACTIONS(1924), - [anon_sym_ATencode] = ACTIONS(1924), - [anon_sym_AT] = ACTIONS(1922), - [sym_YES] = ACTIONS(1922), - [sym_NO] = ACTIONS(1922), - [anon_sym___builtin_available] = ACTIONS(1922), - [anon_sym_ATavailable] = ACTIONS(1924), - [anon_sym_va_arg] = ACTIONS(1922), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1275] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1276] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1277] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1278] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1279] = { - [sym_identifier] = ACTIONS(1814), - [aux_sym_preproc_include_token1] = ACTIONS(1816), - [aux_sym_preproc_def_token1] = ACTIONS(1816), - [aux_sym_preproc_if_token1] = ACTIONS(1814), - [aux_sym_preproc_if_token2] = ACTIONS(1814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1814), - [anon_sym_LPAREN2] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_TILDE] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym_AMP] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1816), - [anon_sym_typedef] = ACTIONS(1814), - [anon_sym_extern] = ACTIONS(1814), - [anon_sym___attribute] = ACTIONS(1814), - [anon_sym___attribute__] = ACTIONS(1814), - [anon_sym___declspec] = ACTIONS(1814), - [anon_sym___cdecl] = ACTIONS(1814), - [anon_sym___clrcall] = ACTIONS(1814), - [anon_sym___stdcall] = ACTIONS(1814), - [anon_sym___fastcall] = ACTIONS(1814), - [anon_sym___thiscall] = ACTIONS(1814), - [anon_sym___vectorcall] = ACTIONS(1814), - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_LBRACK] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1814), - [anon_sym_auto] = ACTIONS(1814), - [anon_sym_register] = ACTIONS(1814), - [anon_sym_inline] = ACTIONS(1814), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1814), - [anon_sym_const] = ACTIONS(1814), - [anon_sym_volatile] = ACTIONS(1814), - [anon_sym_restrict] = ACTIONS(1814), - [anon_sym__Atomic] = ACTIONS(1814), - [anon_sym_in] = ACTIONS(1814), - [anon_sym_out] = ACTIONS(1814), - [anon_sym_inout] = ACTIONS(1814), - [anon_sym_bycopy] = ACTIONS(1814), - [anon_sym_byref] = ACTIONS(1814), - [anon_sym_oneway] = ACTIONS(1814), - [anon_sym__Nullable] = ACTIONS(1814), - [anon_sym__Nonnull] = ACTIONS(1814), - [anon_sym__Nullable_result] = ACTIONS(1814), - [anon_sym__Null_unspecified] = ACTIONS(1814), - [anon_sym___autoreleasing] = ACTIONS(1814), - [anon_sym___nullable] = ACTIONS(1814), - [anon_sym___nonnull] = ACTIONS(1814), - [anon_sym___strong] = ACTIONS(1814), - [anon_sym___weak] = ACTIONS(1814), - [anon_sym___bridge] = ACTIONS(1814), - [anon_sym___bridge_transfer] = ACTIONS(1814), - [anon_sym___bridge_retained] = ACTIONS(1814), - [anon_sym___unsafe_unretained] = ACTIONS(1814), - [anon_sym___block] = ACTIONS(1814), - [anon_sym___kindof] = ACTIONS(1814), - [anon_sym___unused] = ACTIONS(1814), - [anon_sym__Complex] = ACTIONS(1814), - [anon_sym___complex] = ACTIONS(1814), - [anon_sym_IBOutlet] = ACTIONS(1814), - [anon_sym_IBInspectable] = ACTIONS(1814), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1814), - [anon_sym_signed] = ACTIONS(1814), - [anon_sym_unsigned] = ACTIONS(1814), - [anon_sym_long] = ACTIONS(1814), - [anon_sym_short] = ACTIONS(1814), - [sym_primitive_type] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1814), - [anon_sym_NS_ENUM] = ACTIONS(1814), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1814), - [anon_sym_NS_OPTIONS] = ACTIONS(1814), - [anon_sym_struct] = ACTIONS(1814), - [anon_sym_union] = ACTIONS(1814), - [anon_sym_if] = ACTIONS(1814), - [anon_sym_switch] = ACTIONS(1814), - [anon_sym_case] = ACTIONS(1814), - [anon_sym_default] = ACTIONS(1814), - [anon_sym_while] = ACTIONS(1814), - [anon_sym_do] = ACTIONS(1814), - [anon_sym_for] = ACTIONS(1814), - [anon_sym_return] = ACTIONS(1814), - [anon_sym_break] = ACTIONS(1814), - [anon_sym_continue] = ACTIONS(1814), - [anon_sym_goto] = ACTIONS(1814), - [anon_sym_DASH_DASH] = ACTIONS(1816), - [anon_sym_PLUS_PLUS] = ACTIONS(1816), - [anon_sym_sizeof] = ACTIONS(1814), - [sym_number_literal] = ACTIONS(1816), - [anon_sym_L_SQUOTE] = ACTIONS(1816), - [anon_sym_u_SQUOTE] = ACTIONS(1816), - [anon_sym_U_SQUOTE] = ACTIONS(1816), - [anon_sym_u8_SQUOTE] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_L_DQUOTE] = ACTIONS(1816), - [anon_sym_u_DQUOTE] = ACTIONS(1816), - [anon_sym_U_DQUOTE] = ACTIONS(1816), - [anon_sym_u8_DQUOTE] = ACTIONS(1816), - [anon_sym_DQUOTE] = ACTIONS(1816), - [sym_true] = ACTIONS(1814), - [sym_false] = ACTIONS(1814), - [sym_null] = ACTIONS(1814), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1816), - [anon_sym_ATimport] = ACTIONS(1816), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1814), - [anon_sym_ATcompatibility_alias] = ACTIONS(1816), - [anon_sym_ATprotocol] = ACTIONS(1816), - [anon_sym_ATclass] = ACTIONS(1816), - [anon_sym_ATinterface] = ACTIONS(1816), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1814), - [sym_method_attribute_specifier] = ACTIONS(1814), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1814), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1814), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1814), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1814), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1814), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1814), - [anon_sym_NS_AVAILABLE] = ACTIONS(1814), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1814), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1814), - [anon_sym_API_AVAILABLE] = ACTIONS(1814), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1814), - [anon_sym_API_DEPRECATED] = ACTIONS(1814), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1814), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1814), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1814), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1814), - [anon_sym___deprecated_msg] = ACTIONS(1814), - [anon_sym___deprecated_enum_msg] = ACTIONS(1814), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1814), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1814), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1814), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1814), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1814), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1814), - [anon_sym_ATimplementation] = ACTIONS(1816), - [anon_sym_typeof] = ACTIONS(1814), - [anon_sym___typeof] = ACTIONS(1814), - [anon_sym___typeof__] = ACTIONS(1814), - [sym_self] = ACTIONS(1814), - [sym_super] = ACTIONS(1814), - [sym_nil] = ACTIONS(1814), - [sym_id] = ACTIONS(1814), - [sym_instancetype] = ACTIONS(1814), - [sym_Class] = ACTIONS(1814), - [sym_SEL] = ACTIONS(1814), - [sym_IMP] = ACTIONS(1814), - [sym_BOOL] = ACTIONS(1814), - [sym_auto] = ACTIONS(1814), - [anon_sym_ATautoreleasepool] = ACTIONS(1816), - [anon_sym_ATsynchronized] = ACTIONS(1816), - [anon_sym_ATtry] = ACTIONS(1816), - [anon_sym_ATthrow] = ACTIONS(1816), - [anon_sym_ATselector] = ACTIONS(1816), - [anon_sym_ATencode] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(1814), - [sym_YES] = ACTIONS(1814), - [sym_NO] = ACTIONS(1814), - [anon_sym___builtin_available] = ACTIONS(1814), - [anon_sym_ATavailable] = ACTIONS(1816), - [anon_sym_va_arg] = ACTIONS(1814), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1280] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1281] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1282] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1283] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1284] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1285] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1286] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1287] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1288] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1289] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1290] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1291] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1292] = { - [sym_identifier] = ACTIONS(1830), - [aux_sym_preproc_include_token1] = ACTIONS(1832), - [aux_sym_preproc_def_token1] = ACTIONS(1832), - [aux_sym_preproc_if_token1] = ACTIONS(1830), - [aux_sym_preproc_if_token2] = ACTIONS(1830), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1830), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1830), - [anon_sym_LPAREN2] = ACTIONS(1832), - [anon_sym_BANG] = ACTIONS(1832), - [anon_sym_TILDE] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1832), - [anon_sym_CARET] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1832), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_typedef] = ACTIONS(1830), - [anon_sym_extern] = ACTIONS(1830), - [anon_sym___attribute] = ACTIONS(1830), - [anon_sym___attribute__] = ACTIONS(1830), - [anon_sym___declspec] = ACTIONS(1830), - [anon_sym___cdecl] = ACTIONS(1830), - [anon_sym___clrcall] = ACTIONS(1830), - [anon_sym___stdcall] = ACTIONS(1830), - [anon_sym___fastcall] = ACTIONS(1830), - [anon_sym___thiscall] = ACTIONS(1830), - [anon_sym___vectorcall] = ACTIONS(1830), - [anon_sym_LBRACE] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1832), - [anon_sym_static] = ACTIONS(1830), - [anon_sym_auto] = ACTIONS(1830), - [anon_sym_register] = ACTIONS(1830), - [anon_sym_inline] = ACTIONS(1830), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1830), - [anon_sym_const] = ACTIONS(1830), - [anon_sym_volatile] = ACTIONS(1830), - [anon_sym_restrict] = ACTIONS(1830), - [anon_sym__Atomic] = ACTIONS(1830), - [anon_sym_in] = ACTIONS(1830), - [anon_sym_out] = ACTIONS(1830), - [anon_sym_inout] = ACTIONS(1830), - [anon_sym_bycopy] = ACTIONS(1830), - [anon_sym_byref] = ACTIONS(1830), - [anon_sym_oneway] = ACTIONS(1830), - [anon_sym__Nullable] = ACTIONS(1830), - [anon_sym__Nonnull] = ACTIONS(1830), - [anon_sym__Nullable_result] = ACTIONS(1830), - [anon_sym__Null_unspecified] = ACTIONS(1830), - [anon_sym___autoreleasing] = ACTIONS(1830), - [anon_sym___nullable] = ACTIONS(1830), - [anon_sym___nonnull] = ACTIONS(1830), - [anon_sym___strong] = ACTIONS(1830), - [anon_sym___weak] = ACTIONS(1830), - [anon_sym___bridge] = ACTIONS(1830), - [anon_sym___bridge_transfer] = ACTIONS(1830), - [anon_sym___bridge_retained] = ACTIONS(1830), - [anon_sym___unsafe_unretained] = ACTIONS(1830), - [anon_sym___block] = ACTIONS(1830), - [anon_sym___kindof] = ACTIONS(1830), - [anon_sym___unused] = ACTIONS(1830), - [anon_sym__Complex] = ACTIONS(1830), - [anon_sym___complex] = ACTIONS(1830), - [anon_sym_IBOutlet] = ACTIONS(1830), - [anon_sym_IBInspectable] = ACTIONS(1830), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1830), - [anon_sym_signed] = ACTIONS(1830), - [anon_sym_unsigned] = ACTIONS(1830), - [anon_sym_long] = ACTIONS(1830), - [anon_sym_short] = ACTIONS(1830), - [sym_primitive_type] = ACTIONS(1830), - [anon_sym_enum] = ACTIONS(1830), - [anon_sym_NS_ENUM] = ACTIONS(1830), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1830), - [anon_sym_NS_OPTIONS] = ACTIONS(1830), - [anon_sym_struct] = ACTIONS(1830), - [anon_sym_union] = ACTIONS(1830), - [anon_sym_if] = ACTIONS(1830), - [anon_sym_switch] = ACTIONS(1830), - [anon_sym_case] = ACTIONS(1830), - [anon_sym_default] = ACTIONS(1830), - [anon_sym_while] = ACTIONS(1830), - [anon_sym_do] = ACTIONS(1830), - [anon_sym_for] = ACTIONS(1830), - [anon_sym_return] = ACTIONS(1830), - [anon_sym_break] = ACTIONS(1830), - [anon_sym_continue] = ACTIONS(1830), - [anon_sym_goto] = ACTIONS(1830), - [anon_sym_DASH_DASH] = ACTIONS(1832), - [anon_sym_PLUS_PLUS] = ACTIONS(1832), - [anon_sym_sizeof] = ACTIONS(1830), - [sym_number_literal] = ACTIONS(1832), - [anon_sym_L_SQUOTE] = ACTIONS(1832), - [anon_sym_u_SQUOTE] = ACTIONS(1832), - [anon_sym_U_SQUOTE] = ACTIONS(1832), - [anon_sym_u8_SQUOTE] = ACTIONS(1832), - [anon_sym_SQUOTE] = ACTIONS(1832), - [anon_sym_L_DQUOTE] = ACTIONS(1832), - [anon_sym_u_DQUOTE] = ACTIONS(1832), - [anon_sym_U_DQUOTE] = ACTIONS(1832), - [anon_sym_u8_DQUOTE] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [sym_true] = ACTIONS(1830), - [sym_false] = ACTIONS(1830), - [sym_null] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1832), - [anon_sym_ATimport] = ACTIONS(1832), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1830), - [anon_sym_ATcompatibility_alias] = ACTIONS(1832), - [anon_sym_ATprotocol] = ACTIONS(1832), - [anon_sym_ATclass] = ACTIONS(1832), - [anon_sym_ATinterface] = ACTIONS(1832), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1830), - [sym_method_attribute_specifier] = ACTIONS(1830), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1830), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1830), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1830), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1830), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1830), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1830), - [anon_sym_NS_AVAILABLE] = ACTIONS(1830), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1830), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1830), - [anon_sym_API_AVAILABLE] = ACTIONS(1830), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1830), - [anon_sym_API_DEPRECATED] = ACTIONS(1830), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1830), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1830), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1830), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1830), - [anon_sym___deprecated_msg] = ACTIONS(1830), - [anon_sym___deprecated_enum_msg] = ACTIONS(1830), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1830), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1830), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1830), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1830), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1830), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1830), - [anon_sym_ATimplementation] = ACTIONS(1832), - [anon_sym_typeof] = ACTIONS(1830), - [anon_sym___typeof] = ACTIONS(1830), - [anon_sym___typeof__] = ACTIONS(1830), - [sym_self] = ACTIONS(1830), - [sym_super] = ACTIONS(1830), - [sym_nil] = ACTIONS(1830), - [sym_id] = ACTIONS(1830), - [sym_instancetype] = ACTIONS(1830), - [sym_Class] = ACTIONS(1830), - [sym_SEL] = ACTIONS(1830), - [sym_IMP] = ACTIONS(1830), - [sym_BOOL] = ACTIONS(1830), - [sym_auto] = ACTIONS(1830), - [anon_sym_ATautoreleasepool] = ACTIONS(1832), - [anon_sym_ATsynchronized] = ACTIONS(1832), - [anon_sym_ATtry] = ACTIONS(1832), - [anon_sym_ATthrow] = ACTIONS(1832), - [anon_sym_ATselector] = ACTIONS(1832), - [anon_sym_ATencode] = ACTIONS(1832), - [anon_sym_AT] = ACTIONS(1830), - [sym_YES] = ACTIONS(1830), - [sym_NO] = ACTIONS(1830), - [anon_sym___builtin_available] = ACTIONS(1830), - [anon_sym_ATavailable] = ACTIONS(1832), - [anon_sym_va_arg] = ACTIONS(1830), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1293] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1294] = { - [sym_identifier] = ACTIONS(1842), - [aux_sym_preproc_include_token1] = ACTIONS(1844), - [aux_sym_preproc_def_token1] = ACTIONS(1844), - [aux_sym_preproc_if_token1] = ACTIONS(1842), - [aux_sym_preproc_if_token2] = ACTIONS(1842), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1842), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1842), - [anon_sym_LPAREN2] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_TILDE] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym_AMP] = ACTIONS(1844), - [anon_sym_SEMI] = ACTIONS(1844), - [anon_sym_typedef] = ACTIONS(1842), - [anon_sym_extern] = ACTIONS(1842), - [anon_sym___attribute] = ACTIONS(1842), - [anon_sym___attribute__] = ACTIONS(1842), - [anon_sym___declspec] = ACTIONS(1842), - [anon_sym___cdecl] = ACTIONS(1842), - [anon_sym___clrcall] = ACTIONS(1842), - [anon_sym___stdcall] = ACTIONS(1842), - [anon_sym___fastcall] = ACTIONS(1842), - [anon_sym___thiscall] = ACTIONS(1842), - [anon_sym___vectorcall] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1844), - [anon_sym_LBRACK] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1842), - [anon_sym_auto] = ACTIONS(1842), - [anon_sym_register] = ACTIONS(1842), - [anon_sym_inline] = ACTIONS(1842), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1842), - [anon_sym_const] = ACTIONS(1842), - [anon_sym_volatile] = ACTIONS(1842), - [anon_sym_restrict] = ACTIONS(1842), - [anon_sym__Atomic] = ACTIONS(1842), - [anon_sym_in] = ACTIONS(1842), - [anon_sym_out] = ACTIONS(1842), - [anon_sym_inout] = ACTIONS(1842), - [anon_sym_bycopy] = ACTIONS(1842), - [anon_sym_byref] = ACTIONS(1842), - [anon_sym_oneway] = ACTIONS(1842), - [anon_sym__Nullable] = ACTIONS(1842), - [anon_sym__Nonnull] = ACTIONS(1842), - [anon_sym__Nullable_result] = ACTIONS(1842), - [anon_sym__Null_unspecified] = ACTIONS(1842), - [anon_sym___autoreleasing] = ACTIONS(1842), - [anon_sym___nullable] = ACTIONS(1842), - [anon_sym___nonnull] = ACTIONS(1842), - [anon_sym___strong] = ACTIONS(1842), - [anon_sym___weak] = ACTIONS(1842), - [anon_sym___bridge] = ACTIONS(1842), - [anon_sym___bridge_transfer] = ACTIONS(1842), - [anon_sym___bridge_retained] = ACTIONS(1842), - [anon_sym___unsafe_unretained] = ACTIONS(1842), - [anon_sym___block] = ACTIONS(1842), - [anon_sym___kindof] = ACTIONS(1842), - [anon_sym___unused] = ACTIONS(1842), - [anon_sym__Complex] = ACTIONS(1842), - [anon_sym___complex] = ACTIONS(1842), - [anon_sym_IBOutlet] = ACTIONS(1842), - [anon_sym_IBInspectable] = ACTIONS(1842), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1842), - [anon_sym_signed] = ACTIONS(1842), - [anon_sym_unsigned] = ACTIONS(1842), - [anon_sym_long] = ACTIONS(1842), - [anon_sym_short] = ACTIONS(1842), - [sym_primitive_type] = ACTIONS(1842), - [anon_sym_enum] = ACTIONS(1842), - [anon_sym_NS_ENUM] = ACTIONS(1842), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1842), - [anon_sym_NS_OPTIONS] = ACTIONS(1842), - [anon_sym_struct] = ACTIONS(1842), - [anon_sym_union] = ACTIONS(1842), - [anon_sym_if] = ACTIONS(1842), - [anon_sym_switch] = ACTIONS(1842), - [anon_sym_case] = ACTIONS(1842), - [anon_sym_default] = ACTIONS(1842), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_do] = ACTIONS(1842), - [anon_sym_for] = ACTIONS(1842), - [anon_sym_return] = ACTIONS(1842), - [anon_sym_break] = ACTIONS(1842), - [anon_sym_continue] = ACTIONS(1842), - [anon_sym_goto] = ACTIONS(1842), - [anon_sym_DASH_DASH] = ACTIONS(1844), - [anon_sym_PLUS_PLUS] = ACTIONS(1844), - [anon_sym_sizeof] = ACTIONS(1842), - [sym_number_literal] = ACTIONS(1844), - [anon_sym_L_SQUOTE] = ACTIONS(1844), - [anon_sym_u_SQUOTE] = ACTIONS(1844), - [anon_sym_U_SQUOTE] = ACTIONS(1844), - [anon_sym_u8_SQUOTE] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_L_DQUOTE] = ACTIONS(1844), - [anon_sym_u_DQUOTE] = ACTIONS(1844), - [anon_sym_U_DQUOTE] = ACTIONS(1844), - [anon_sym_u8_DQUOTE] = ACTIONS(1844), - [anon_sym_DQUOTE] = ACTIONS(1844), - [sym_true] = ACTIONS(1842), - [sym_false] = ACTIONS(1842), - [sym_null] = ACTIONS(1842), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1844), - [anon_sym_ATimport] = ACTIONS(1844), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1842), - [anon_sym_ATcompatibility_alias] = ACTIONS(1844), - [anon_sym_ATprotocol] = ACTIONS(1844), - [anon_sym_ATclass] = ACTIONS(1844), - [anon_sym_ATinterface] = ACTIONS(1844), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1842), - [sym_method_attribute_specifier] = ACTIONS(1842), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1842), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1842), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1842), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1842), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1842), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1842), - [anon_sym_NS_AVAILABLE] = ACTIONS(1842), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1842), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1842), - [anon_sym_API_AVAILABLE] = ACTIONS(1842), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1842), - [anon_sym_API_DEPRECATED] = ACTIONS(1842), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1842), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1842), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1842), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1842), - [anon_sym___deprecated_msg] = ACTIONS(1842), - [anon_sym___deprecated_enum_msg] = ACTIONS(1842), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1842), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1842), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1842), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1842), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1842), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1842), - [anon_sym_ATimplementation] = ACTIONS(1844), - [anon_sym_typeof] = ACTIONS(1842), - [anon_sym___typeof] = ACTIONS(1842), - [anon_sym___typeof__] = ACTIONS(1842), - [sym_self] = ACTIONS(1842), - [sym_super] = ACTIONS(1842), - [sym_nil] = ACTIONS(1842), - [sym_id] = ACTIONS(1842), - [sym_instancetype] = ACTIONS(1842), - [sym_Class] = ACTIONS(1842), - [sym_SEL] = ACTIONS(1842), - [sym_IMP] = ACTIONS(1842), - [sym_BOOL] = ACTIONS(1842), - [sym_auto] = ACTIONS(1842), - [anon_sym_ATautoreleasepool] = ACTIONS(1844), - [anon_sym_ATsynchronized] = ACTIONS(1844), - [anon_sym_ATtry] = ACTIONS(1844), - [anon_sym_ATthrow] = ACTIONS(1844), - [anon_sym_ATselector] = ACTIONS(1844), - [anon_sym_ATencode] = ACTIONS(1844), - [anon_sym_AT] = ACTIONS(1842), - [sym_YES] = ACTIONS(1842), - [sym_NO] = ACTIONS(1842), - [anon_sym___builtin_available] = ACTIONS(1842), - [anon_sym_ATavailable] = ACTIONS(1844), - [anon_sym_va_arg] = ACTIONS(1842), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1295] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1296] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1297] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1298] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1299] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1300] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1301] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1302] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1303] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1304] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1305] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1306] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1307] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1308] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1309] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1310] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1311] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1312] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1313] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1314] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1315] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1316] = { - [sym_identifier] = ACTIONS(1870), - [aux_sym_preproc_include_token1] = ACTIONS(1872), - [aux_sym_preproc_def_token1] = ACTIONS(1872), - [aux_sym_preproc_if_token1] = ACTIONS(1870), - [aux_sym_preproc_if_token2] = ACTIONS(1870), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1870), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1872), - [anon_sym_BANG] = ACTIONS(1872), - [anon_sym_TILDE] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1872), - [anon_sym_CARET] = ACTIONS(1872), - [anon_sym_AMP] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1872), - [anon_sym_typedef] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(1870), - [anon_sym___attribute] = ACTIONS(1870), - [anon_sym___attribute__] = ACTIONS(1870), - [anon_sym___declspec] = ACTIONS(1870), - [anon_sym___cdecl] = ACTIONS(1870), - [anon_sym___clrcall] = ACTIONS(1870), - [anon_sym___stdcall] = ACTIONS(1870), - [anon_sym___fastcall] = ACTIONS(1870), - [anon_sym___thiscall] = ACTIONS(1870), - [anon_sym___vectorcall] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1870), - [anon_sym_auto] = ACTIONS(1870), - [anon_sym_register] = ACTIONS(1870), - [anon_sym_inline] = ACTIONS(1870), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1870), - [anon_sym_const] = ACTIONS(1870), - [anon_sym_volatile] = ACTIONS(1870), - [anon_sym_restrict] = ACTIONS(1870), - [anon_sym__Atomic] = ACTIONS(1870), - [anon_sym_in] = ACTIONS(1870), - [anon_sym_out] = ACTIONS(1870), - [anon_sym_inout] = ACTIONS(1870), - [anon_sym_bycopy] = ACTIONS(1870), - [anon_sym_byref] = ACTIONS(1870), - [anon_sym_oneway] = ACTIONS(1870), - [anon_sym__Nullable] = ACTIONS(1870), - [anon_sym__Nonnull] = ACTIONS(1870), - [anon_sym__Nullable_result] = ACTIONS(1870), - [anon_sym__Null_unspecified] = ACTIONS(1870), - [anon_sym___autoreleasing] = ACTIONS(1870), - [anon_sym___nullable] = ACTIONS(1870), - [anon_sym___nonnull] = ACTIONS(1870), - [anon_sym___strong] = ACTIONS(1870), - [anon_sym___weak] = ACTIONS(1870), - [anon_sym___bridge] = ACTIONS(1870), - [anon_sym___bridge_transfer] = ACTIONS(1870), - [anon_sym___bridge_retained] = ACTIONS(1870), - [anon_sym___unsafe_unretained] = ACTIONS(1870), - [anon_sym___block] = ACTIONS(1870), - [anon_sym___kindof] = ACTIONS(1870), - [anon_sym___unused] = ACTIONS(1870), - [anon_sym__Complex] = ACTIONS(1870), - [anon_sym___complex] = ACTIONS(1870), - [anon_sym_IBOutlet] = ACTIONS(1870), - [anon_sym_IBInspectable] = ACTIONS(1870), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1870), - [anon_sym_signed] = ACTIONS(1870), - [anon_sym_unsigned] = ACTIONS(1870), - [anon_sym_long] = ACTIONS(1870), - [anon_sym_short] = ACTIONS(1870), - [sym_primitive_type] = ACTIONS(1870), - [anon_sym_enum] = ACTIONS(1870), - [anon_sym_NS_ENUM] = ACTIONS(1870), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1870), - [anon_sym_NS_OPTIONS] = ACTIONS(1870), - [anon_sym_struct] = ACTIONS(1870), - [anon_sym_union] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(1870), - [anon_sym_switch] = ACTIONS(1870), - [anon_sym_case] = ACTIONS(1870), - [anon_sym_default] = ACTIONS(1870), - [anon_sym_while] = ACTIONS(1870), - [anon_sym_do] = ACTIONS(1870), - [anon_sym_for] = ACTIONS(1870), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1870), - [anon_sym_continue] = ACTIONS(1870), - [anon_sym_goto] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1872), - [anon_sym_PLUS_PLUS] = ACTIONS(1872), - [anon_sym_sizeof] = ACTIONS(1870), - [sym_number_literal] = ACTIONS(1872), - [anon_sym_L_SQUOTE] = ACTIONS(1872), - [anon_sym_u_SQUOTE] = ACTIONS(1872), - [anon_sym_U_SQUOTE] = ACTIONS(1872), - [anon_sym_u8_SQUOTE] = ACTIONS(1872), - [anon_sym_SQUOTE] = ACTIONS(1872), - [anon_sym_L_DQUOTE] = ACTIONS(1872), - [anon_sym_u_DQUOTE] = ACTIONS(1872), - [anon_sym_U_DQUOTE] = ACTIONS(1872), - [anon_sym_u8_DQUOTE] = ACTIONS(1872), - [anon_sym_DQUOTE] = ACTIONS(1872), - [sym_true] = ACTIONS(1870), - [sym_false] = ACTIONS(1870), - [sym_null] = ACTIONS(1870), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1872), - [anon_sym_ATimport] = ACTIONS(1872), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1870), - [anon_sym_ATcompatibility_alias] = ACTIONS(1872), - [anon_sym_ATprotocol] = ACTIONS(1872), - [anon_sym_ATclass] = ACTIONS(1872), - [anon_sym_ATinterface] = ACTIONS(1872), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1870), - [sym_method_attribute_specifier] = ACTIONS(1870), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1870), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1870), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1870), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1870), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1870), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1870), - [anon_sym_NS_AVAILABLE] = ACTIONS(1870), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1870), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_API_AVAILABLE] = ACTIONS(1870), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1870), - [anon_sym_API_DEPRECATED] = ACTIONS(1870), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1870), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1870), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1870), - [anon_sym___deprecated_msg] = ACTIONS(1870), - [anon_sym___deprecated_enum_msg] = ACTIONS(1870), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1870), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1870), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1870), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1870), - [anon_sym_ATimplementation] = ACTIONS(1872), - [anon_sym_typeof] = ACTIONS(1870), - [anon_sym___typeof] = ACTIONS(1870), - [anon_sym___typeof__] = ACTIONS(1870), - [sym_self] = ACTIONS(1870), - [sym_super] = ACTIONS(1870), - [sym_nil] = ACTIONS(1870), - [sym_id] = ACTIONS(1870), - [sym_instancetype] = ACTIONS(1870), - [sym_Class] = ACTIONS(1870), - [sym_SEL] = ACTIONS(1870), - [sym_IMP] = ACTIONS(1870), - [sym_BOOL] = ACTIONS(1870), - [sym_auto] = ACTIONS(1870), - [anon_sym_ATautoreleasepool] = ACTIONS(1872), - [anon_sym_ATsynchronized] = ACTIONS(1872), - [anon_sym_ATtry] = ACTIONS(1872), - [anon_sym_ATthrow] = ACTIONS(1872), - [anon_sym_ATselector] = ACTIONS(1872), - [anon_sym_ATencode] = ACTIONS(1872), - [anon_sym_AT] = ACTIONS(1870), - [sym_YES] = ACTIONS(1870), - [sym_NO] = ACTIONS(1870), - [anon_sym___builtin_available] = ACTIONS(1870), - [anon_sym_ATavailable] = ACTIONS(1872), - [anon_sym_va_arg] = ACTIONS(1870), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1317] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1318] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1319] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1320] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1321] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1322] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1323] = { - [sym_identifier] = ACTIONS(1870), - [aux_sym_preproc_include_token1] = ACTIONS(1872), - [aux_sym_preproc_def_token1] = ACTIONS(1872), - [aux_sym_preproc_if_token1] = ACTIONS(1870), - [aux_sym_preproc_if_token2] = ACTIONS(1870), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1870), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1870), - [anon_sym_LPAREN2] = ACTIONS(1872), - [anon_sym_BANG] = ACTIONS(1872), - [anon_sym_TILDE] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1872), - [anon_sym_CARET] = ACTIONS(1872), - [anon_sym_AMP] = ACTIONS(1872), - [anon_sym_SEMI] = ACTIONS(1872), - [anon_sym_typedef] = ACTIONS(1870), - [anon_sym_extern] = ACTIONS(1870), - [anon_sym___attribute] = ACTIONS(1870), - [anon_sym___attribute__] = ACTIONS(1870), - [anon_sym___declspec] = ACTIONS(1870), - [anon_sym___cdecl] = ACTIONS(1870), - [anon_sym___clrcall] = ACTIONS(1870), - [anon_sym___stdcall] = ACTIONS(1870), - [anon_sym___fastcall] = ACTIONS(1870), - [anon_sym___thiscall] = ACTIONS(1870), - [anon_sym___vectorcall] = ACTIONS(1870), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1870), - [anon_sym_auto] = ACTIONS(1870), - [anon_sym_register] = ACTIONS(1870), - [anon_sym_inline] = ACTIONS(1870), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1870), - [anon_sym_const] = ACTIONS(1870), - [anon_sym_volatile] = ACTIONS(1870), - [anon_sym_restrict] = ACTIONS(1870), - [anon_sym__Atomic] = ACTIONS(1870), - [anon_sym_in] = ACTIONS(1870), - [anon_sym_out] = ACTIONS(1870), - [anon_sym_inout] = ACTIONS(1870), - [anon_sym_bycopy] = ACTIONS(1870), - [anon_sym_byref] = ACTIONS(1870), - [anon_sym_oneway] = ACTIONS(1870), - [anon_sym__Nullable] = ACTIONS(1870), - [anon_sym__Nonnull] = ACTIONS(1870), - [anon_sym__Nullable_result] = ACTIONS(1870), - [anon_sym__Null_unspecified] = ACTIONS(1870), - [anon_sym___autoreleasing] = ACTIONS(1870), - [anon_sym___nullable] = ACTIONS(1870), - [anon_sym___nonnull] = ACTIONS(1870), - [anon_sym___strong] = ACTIONS(1870), - [anon_sym___weak] = ACTIONS(1870), - [anon_sym___bridge] = ACTIONS(1870), - [anon_sym___bridge_transfer] = ACTIONS(1870), - [anon_sym___bridge_retained] = ACTIONS(1870), - [anon_sym___unsafe_unretained] = ACTIONS(1870), - [anon_sym___block] = ACTIONS(1870), - [anon_sym___kindof] = ACTIONS(1870), - [anon_sym___unused] = ACTIONS(1870), - [anon_sym__Complex] = ACTIONS(1870), - [anon_sym___complex] = ACTIONS(1870), - [anon_sym_IBOutlet] = ACTIONS(1870), - [anon_sym_IBInspectable] = ACTIONS(1870), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1870), - [anon_sym_signed] = ACTIONS(1870), - [anon_sym_unsigned] = ACTIONS(1870), - [anon_sym_long] = ACTIONS(1870), - [anon_sym_short] = ACTIONS(1870), - [sym_primitive_type] = ACTIONS(1870), - [anon_sym_enum] = ACTIONS(1870), - [anon_sym_NS_ENUM] = ACTIONS(1870), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1870), - [anon_sym_NS_OPTIONS] = ACTIONS(1870), - [anon_sym_struct] = ACTIONS(1870), - [anon_sym_union] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(1870), - [anon_sym_switch] = ACTIONS(1870), - [anon_sym_case] = ACTIONS(1870), - [anon_sym_default] = ACTIONS(1870), - [anon_sym_while] = ACTIONS(1870), - [anon_sym_do] = ACTIONS(1870), - [anon_sym_for] = ACTIONS(1870), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1870), - [anon_sym_continue] = ACTIONS(1870), - [anon_sym_goto] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1872), - [anon_sym_PLUS_PLUS] = ACTIONS(1872), - [anon_sym_sizeof] = ACTIONS(1870), - [sym_number_literal] = ACTIONS(1872), - [anon_sym_L_SQUOTE] = ACTIONS(1872), - [anon_sym_u_SQUOTE] = ACTIONS(1872), - [anon_sym_U_SQUOTE] = ACTIONS(1872), - [anon_sym_u8_SQUOTE] = ACTIONS(1872), - [anon_sym_SQUOTE] = ACTIONS(1872), - [anon_sym_L_DQUOTE] = ACTIONS(1872), - [anon_sym_u_DQUOTE] = ACTIONS(1872), - [anon_sym_U_DQUOTE] = ACTIONS(1872), - [anon_sym_u8_DQUOTE] = ACTIONS(1872), - [anon_sym_DQUOTE] = ACTIONS(1872), - [sym_true] = ACTIONS(1870), - [sym_false] = ACTIONS(1870), - [sym_null] = ACTIONS(1870), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1872), - [anon_sym_ATimport] = ACTIONS(1872), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1870), - [anon_sym_ATcompatibility_alias] = ACTIONS(1872), - [anon_sym_ATprotocol] = ACTIONS(1872), - [anon_sym_ATclass] = ACTIONS(1872), - [anon_sym_ATinterface] = ACTIONS(1872), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1870), - [sym_method_attribute_specifier] = ACTIONS(1870), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1870), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1870), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1870), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1870), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1870), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1870), - [anon_sym_NS_AVAILABLE] = ACTIONS(1870), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1870), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_API_AVAILABLE] = ACTIONS(1870), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1870), - [anon_sym_API_DEPRECATED] = ACTIONS(1870), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1870), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1870), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1870), - [anon_sym___deprecated_msg] = ACTIONS(1870), - [anon_sym___deprecated_enum_msg] = ACTIONS(1870), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1870), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1870), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1870), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1870), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1870), - [anon_sym_ATimplementation] = ACTIONS(1872), - [anon_sym_typeof] = ACTIONS(1870), - [anon_sym___typeof] = ACTIONS(1870), - [anon_sym___typeof__] = ACTIONS(1870), - [sym_self] = ACTIONS(1870), - [sym_super] = ACTIONS(1870), - [sym_nil] = ACTIONS(1870), - [sym_id] = ACTIONS(1870), - [sym_instancetype] = ACTIONS(1870), - [sym_Class] = ACTIONS(1870), - [sym_SEL] = ACTIONS(1870), - [sym_IMP] = ACTIONS(1870), - [sym_BOOL] = ACTIONS(1870), - [sym_auto] = ACTIONS(1870), - [anon_sym_ATautoreleasepool] = ACTIONS(1872), - [anon_sym_ATsynchronized] = ACTIONS(1872), - [anon_sym_ATtry] = ACTIONS(1872), - [anon_sym_ATthrow] = ACTIONS(1872), - [anon_sym_ATselector] = ACTIONS(1872), - [anon_sym_ATencode] = ACTIONS(1872), - [anon_sym_AT] = ACTIONS(1870), - [sym_YES] = ACTIONS(1870), - [sym_NO] = ACTIONS(1870), - [anon_sym___builtin_available] = ACTIONS(1870), - [anon_sym_ATavailable] = ACTIONS(1872), - [anon_sym_va_arg] = ACTIONS(1870), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1324] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1325] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1326] = { - [sym_identifier] = ACTIONS(1862), - [aux_sym_preproc_include_token1] = ACTIONS(1864), - [aux_sym_preproc_def_token1] = ACTIONS(1864), - [aux_sym_preproc_if_token1] = ACTIONS(1862), - [aux_sym_preproc_if_token2] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1862), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1862), - [anon_sym_LPAREN2] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1862), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym___attribute] = ACTIONS(1862), - [anon_sym___attribute__] = ACTIONS(1862), - [anon_sym___declspec] = ACTIONS(1862), - [anon_sym___cdecl] = ACTIONS(1862), - [anon_sym___clrcall] = ACTIONS(1862), - [anon_sym___stdcall] = ACTIONS(1862), - [anon_sym___fastcall] = ACTIONS(1862), - [anon_sym___thiscall] = ACTIONS(1862), - [anon_sym___vectorcall] = ACTIONS(1862), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_auto] = ACTIONS(1862), - [anon_sym_register] = ACTIONS(1862), - [anon_sym_inline] = ACTIONS(1862), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_volatile] = ACTIONS(1862), - [anon_sym_restrict] = ACTIONS(1862), - [anon_sym__Atomic] = ACTIONS(1862), - [anon_sym_in] = ACTIONS(1862), - [anon_sym_out] = ACTIONS(1862), - [anon_sym_inout] = ACTIONS(1862), - [anon_sym_bycopy] = ACTIONS(1862), - [anon_sym_byref] = ACTIONS(1862), - [anon_sym_oneway] = ACTIONS(1862), - [anon_sym__Nullable] = ACTIONS(1862), - [anon_sym__Nonnull] = ACTIONS(1862), - [anon_sym__Nullable_result] = ACTIONS(1862), - [anon_sym__Null_unspecified] = ACTIONS(1862), - [anon_sym___autoreleasing] = ACTIONS(1862), - [anon_sym___nullable] = ACTIONS(1862), - [anon_sym___nonnull] = ACTIONS(1862), - [anon_sym___strong] = ACTIONS(1862), - [anon_sym___weak] = ACTIONS(1862), - [anon_sym___bridge] = ACTIONS(1862), - [anon_sym___bridge_transfer] = ACTIONS(1862), - [anon_sym___bridge_retained] = ACTIONS(1862), - [anon_sym___unsafe_unretained] = ACTIONS(1862), - [anon_sym___block] = ACTIONS(1862), - [anon_sym___kindof] = ACTIONS(1862), - [anon_sym___unused] = ACTIONS(1862), - [anon_sym__Complex] = ACTIONS(1862), - [anon_sym___complex] = ACTIONS(1862), - [anon_sym_IBOutlet] = ACTIONS(1862), - [anon_sym_IBInspectable] = ACTIONS(1862), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1862), - [anon_sym_signed] = ACTIONS(1862), - [anon_sym_unsigned] = ACTIONS(1862), - [anon_sym_long] = ACTIONS(1862), - [anon_sym_short] = ACTIONS(1862), - [sym_primitive_type] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_NS_ENUM] = ACTIONS(1862), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1862), - [anon_sym_NS_OPTIONS] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_do] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1864), - [anon_sym_sizeof] = ACTIONS(1862), - [sym_number_literal] = ACTIONS(1864), - [anon_sym_L_SQUOTE] = ACTIONS(1864), - [anon_sym_u_SQUOTE] = ACTIONS(1864), - [anon_sym_U_SQUOTE] = ACTIONS(1864), - [anon_sym_u8_SQUOTE] = ACTIONS(1864), - [anon_sym_SQUOTE] = ACTIONS(1864), - [anon_sym_L_DQUOTE] = ACTIONS(1864), - [anon_sym_u_DQUOTE] = ACTIONS(1864), - [anon_sym_U_DQUOTE] = ACTIONS(1864), - [anon_sym_u8_DQUOTE] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym_true] = ACTIONS(1862), - [sym_false] = ACTIONS(1862), - [sym_null] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1864), - [anon_sym_ATimport] = ACTIONS(1864), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1862), - [anon_sym_ATcompatibility_alias] = ACTIONS(1864), - [anon_sym_ATprotocol] = ACTIONS(1864), - [anon_sym_ATclass] = ACTIONS(1864), - [anon_sym_ATinterface] = ACTIONS(1864), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1862), - [sym_method_attribute_specifier] = ACTIONS(1862), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1862), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1862), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE] = ACTIONS(1862), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1862), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_API_AVAILABLE] = ACTIONS(1862), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_API_DEPRECATED] = ACTIONS(1862), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1862), - [anon_sym___deprecated_msg] = ACTIONS(1862), - [anon_sym___deprecated_enum_msg] = ACTIONS(1862), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1862), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1862), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1862), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1862), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1862), - [anon_sym_ATimplementation] = ACTIONS(1864), - [anon_sym_typeof] = ACTIONS(1862), - [anon_sym___typeof] = ACTIONS(1862), - [anon_sym___typeof__] = ACTIONS(1862), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_nil] = ACTIONS(1862), - [sym_id] = ACTIONS(1862), - [sym_instancetype] = ACTIONS(1862), - [sym_Class] = ACTIONS(1862), - [sym_SEL] = ACTIONS(1862), - [sym_IMP] = ACTIONS(1862), - [sym_BOOL] = ACTIONS(1862), - [sym_auto] = ACTIONS(1862), - [anon_sym_ATautoreleasepool] = ACTIONS(1864), - [anon_sym_ATsynchronized] = ACTIONS(1864), - [anon_sym_ATtry] = ACTIONS(1864), - [anon_sym_ATthrow] = ACTIONS(1864), - [anon_sym_ATselector] = ACTIONS(1864), - [anon_sym_ATencode] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1862), - [sym_YES] = ACTIONS(1862), - [sym_NO] = ACTIONS(1862), - [anon_sym___builtin_available] = ACTIONS(1862), - [anon_sym_ATavailable] = ACTIONS(1864), - [anon_sym_va_arg] = ACTIONS(1862), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1327] = { - [sym_identifier] = ACTIONS(1858), - [aux_sym_preproc_include_token1] = ACTIONS(1860), - [aux_sym_preproc_def_token1] = ACTIONS(1860), - [aux_sym_preproc_if_token1] = ACTIONS(1858), - [aux_sym_preproc_if_token2] = ACTIONS(1858), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1858), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1858), - [anon_sym_LPAREN2] = ACTIONS(1860), - [anon_sym_BANG] = ACTIONS(1860), - [anon_sym_TILDE] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1860), - [anon_sym_CARET] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_typedef] = ACTIONS(1858), - [anon_sym_extern] = ACTIONS(1858), - [anon_sym___attribute] = ACTIONS(1858), - [anon_sym___attribute__] = ACTIONS(1858), - [anon_sym___declspec] = ACTIONS(1858), - [anon_sym___cdecl] = ACTIONS(1858), - [anon_sym___clrcall] = ACTIONS(1858), - [anon_sym___stdcall] = ACTIONS(1858), - [anon_sym___fastcall] = ACTIONS(1858), - [anon_sym___thiscall] = ACTIONS(1858), - [anon_sym___vectorcall] = ACTIONS(1858), - [anon_sym_LBRACE] = ACTIONS(1860), - [anon_sym_LBRACK] = ACTIONS(1860), - [anon_sym_static] = ACTIONS(1858), - [anon_sym_auto] = ACTIONS(1858), - [anon_sym_register] = ACTIONS(1858), - [anon_sym_inline] = ACTIONS(1858), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1858), - [anon_sym_const] = ACTIONS(1858), - [anon_sym_volatile] = ACTIONS(1858), - [anon_sym_restrict] = ACTIONS(1858), - [anon_sym__Atomic] = ACTIONS(1858), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_out] = ACTIONS(1858), - [anon_sym_inout] = ACTIONS(1858), - [anon_sym_bycopy] = ACTIONS(1858), - [anon_sym_byref] = ACTIONS(1858), - [anon_sym_oneway] = ACTIONS(1858), - [anon_sym__Nullable] = ACTIONS(1858), - [anon_sym__Nonnull] = ACTIONS(1858), - [anon_sym__Nullable_result] = ACTIONS(1858), - [anon_sym__Null_unspecified] = ACTIONS(1858), - [anon_sym___autoreleasing] = ACTIONS(1858), - [anon_sym___nullable] = ACTIONS(1858), - [anon_sym___nonnull] = ACTIONS(1858), - [anon_sym___strong] = ACTIONS(1858), - [anon_sym___weak] = ACTIONS(1858), - [anon_sym___bridge] = ACTIONS(1858), - [anon_sym___bridge_transfer] = ACTIONS(1858), - [anon_sym___bridge_retained] = ACTIONS(1858), - [anon_sym___unsafe_unretained] = ACTIONS(1858), - [anon_sym___block] = ACTIONS(1858), - [anon_sym___kindof] = ACTIONS(1858), - [anon_sym___unused] = ACTIONS(1858), - [anon_sym__Complex] = ACTIONS(1858), - [anon_sym___complex] = ACTIONS(1858), - [anon_sym_IBOutlet] = ACTIONS(1858), - [anon_sym_IBInspectable] = ACTIONS(1858), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1858), - [anon_sym_signed] = ACTIONS(1858), - [anon_sym_unsigned] = ACTIONS(1858), - [anon_sym_long] = ACTIONS(1858), - [anon_sym_short] = ACTIONS(1858), - [sym_primitive_type] = ACTIONS(1858), - [anon_sym_enum] = ACTIONS(1858), - [anon_sym_NS_ENUM] = ACTIONS(1858), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1858), - [anon_sym_NS_OPTIONS] = ACTIONS(1858), - [anon_sym_struct] = ACTIONS(1858), - [anon_sym_union] = ACTIONS(1858), - [anon_sym_if] = ACTIONS(1858), - [anon_sym_switch] = ACTIONS(1858), - [anon_sym_case] = ACTIONS(1858), - [anon_sym_default] = ACTIONS(1858), - [anon_sym_while] = ACTIONS(1858), - [anon_sym_do] = ACTIONS(1858), - [anon_sym_for] = ACTIONS(1858), - [anon_sym_return] = ACTIONS(1858), - [anon_sym_break] = ACTIONS(1858), - [anon_sym_continue] = ACTIONS(1858), - [anon_sym_goto] = ACTIONS(1858), - [anon_sym_DASH_DASH] = ACTIONS(1860), - [anon_sym_PLUS_PLUS] = ACTIONS(1860), - [anon_sym_sizeof] = ACTIONS(1858), - [sym_number_literal] = ACTIONS(1860), - [anon_sym_L_SQUOTE] = ACTIONS(1860), - [anon_sym_u_SQUOTE] = ACTIONS(1860), - [anon_sym_U_SQUOTE] = ACTIONS(1860), - [anon_sym_u8_SQUOTE] = ACTIONS(1860), - [anon_sym_SQUOTE] = ACTIONS(1860), - [anon_sym_L_DQUOTE] = ACTIONS(1860), - [anon_sym_u_DQUOTE] = ACTIONS(1860), - [anon_sym_U_DQUOTE] = ACTIONS(1860), - [anon_sym_u8_DQUOTE] = ACTIONS(1860), - [anon_sym_DQUOTE] = ACTIONS(1860), - [sym_true] = ACTIONS(1858), - [sym_false] = ACTIONS(1858), - [sym_null] = ACTIONS(1858), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1860), - [anon_sym_ATimport] = ACTIONS(1860), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1858), - [anon_sym_ATcompatibility_alias] = ACTIONS(1860), - [anon_sym_ATprotocol] = ACTIONS(1860), - [anon_sym_ATclass] = ACTIONS(1860), - [anon_sym_ATinterface] = ACTIONS(1860), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1858), - [sym_method_attribute_specifier] = ACTIONS(1858), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1858), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1858), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1858), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1858), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1858), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1858), - [anon_sym_NS_AVAILABLE] = ACTIONS(1858), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1858), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1858), - [anon_sym_API_AVAILABLE] = ACTIONS(1858), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1858), - [anon_sym_API_DEPRECATED] = ACTIONS(1858), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1858), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1858), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1858), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1858), - [anon_sym___deprecated_msg] = ACTIONS(1858), - [anon_sym___deprecated_enum_msg] = ACTIONS(1858), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1858), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1858), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1858), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1858), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1858), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1858), - [anon_sym_ATimplementation] = ACTIONS(1860), - [anon_sym_typeof] = ACTIONS(1858), - [anon_sym___typeof] = ACTIONS(1858), - [anon_sym___typeof__] = ACTIONS(1858), - [sym_self] = ACTIONS(1858), - [sym_super] = ACTIONS(1858), - [sym_nil] = ACTIONS(1858), - [sym_id] = ACTIONS(1858), - [sym_instancetype] = ACTIONS(1858), - [sym_Class] = ACTIONS(1858), - [sym_SEL] = ACTIONS(1858), - [sym_IMP] = ACTIONS(1858), - [sym_BOOL] = ACTIONS(1858), - [sym_auto] = ACTIONS(1858), - [anon_sym_ATautoreleasepool] = ACTIONS(1860), - [anon_sym_ATsynchronized] = ACTIONS(1860), - [anon_sym_ATtry] = ACTIONS(1860), - [anon_sym_ATthrow] = ACTIONS(1860), - [anon_sym_ATselector] = ACTIONS(1860), - [anon_sym_ATencode] = ACTIONS(1860), - [anon_sym_AT] = ACTIONS(1858), - [sym_YES] = ACTIONS(1858), - [sym_NO] = ACTIONS(1858), - [anon_sym___builtin_available] = ACTIONS(1858), - [anon_sym_ATavailable] = ACTIONS(1860), - [anon_sym_va_arg] = ACTIONS(1858), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1328] = { - [sym_identifier] = ACTIONS(1854), - [aux_sym_preproc_include_token1] = ACTIONS(1856), - [aux_sym_preproc_def_token1] = ACTIONS(1856), - [aux_sym_preproc_if_token1] = ACTIONS(1854), - [aux_sym_preproc_if_token2] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1854), - [anon_sym_LPAREN2] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym___attribute] = ACTIONS(1854), - [anon_sym___attribute__] = ACTIONS(1854), - [anon_sym___declspec] = ACTIONS(1854), - [anon_sym___cdecl] = ACTIONS(1854), - [anon_sym___clrcall] = ACTIONS(1854), - [anon_sym___stdcall] = ACTIONS(1854), - [anon_sym___fastcall] = ACTIONS(1854), - [anon_sym___thiscall] = ACTIONS(1854), - [anon_sym___vectorcall] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_auto] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_volatile] = ACTIONS(1854), - [anon_sym_restrict] = ACTIONS(1854), - [anon_sym__Atomic] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_out] = ACTIONS(1854), - [anon_sym_inout] = ACTIONS(1854), - [anon_sym_bycopy] = ACTIONS(1854), - [anon_sym_byref] = ACTIONS(1854), - [anon_sym_oneway] = ACTIONS(1854), - [anon_sym__Nullable] = ACTIONS(1854), - [anon_sym__Nonnull] = ACTIONS(1854), - [anon_sym__Nullable_result] = ACTIONS(1854), - [anon_sym__Null_unspecified] = ACTIONS(1854), - [anon_sym___autoreleasing] = ACTIONS(1854), - [anon_sym___nullable] = ACTIONS(1854), - [anon_sym___nonnull] = ACTIONS(1854), - [anon_sym___strong] = ACTIONS(1854), - [anon_sym___weak] = ACTIONS(1854), - [anon_sym___bridge] = ACTIONS(1854), - [anon_sym___bridge_transfer] = ACTIONS(1854), - [anon_sym___bridge_retained] = ACTIONS(1854), - [anon_sym___unsafe_unretained] = ACTIONS(1854), - [anon_sym___block] = ACTIONS(1854), - [anon_sym___kindof] = ACTIONS(1854), - [anon_sym___unused] = ACTIONS(1854), - [anon_sym__Complex] = ACTIONS(1854), - [anon_sym___complex] = ACTIONS(1854), - [anon_sym_IBOutlet] = ACTIONS(1854), - [anon_sym_IBInspectable] = ACTIONS(1854), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1854), - [anon_sym_signed] = ACTIONS(1854), - [anon_sym_unsigned] = ACTIONS(1854), - [anon_sym_long] = ACTIONS(1854), - [anon_sym_short] = ACTIONS(1854), - [sym_primitive_type] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_NS_ENUM] = ACTIONS(1854), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1854), - [anon_sym_NS_OPTIONS] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_goto] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_sizeof] = ACTIONS(1854), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_L_SQUOTE] = ACTIONS(1856), - [anon_sym_u_SQUOTE] = ACTIONS(1856), - [anon_sym_U_SQUOTE] = ACTIONS(1856), - [anon_sym_u8_SQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_L_DQUOTE] = ACTIONS(1856), - [anon_sym_u_DQUOTE] = ACTIONS(1856), - [anon_sym_U_DQUOTE] = ACTIONS(1856), - [anon_sym_u8_DQUOTE] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1856), - [anon_sym_ATimport] = ACTIONS(1856), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1854), - [anon_sym_ATcompatibility_alias] = ACTIONS(1856), - [anon_sym_ATprotocol] = ACTIONS(1856), - [anon_sym_ATclass] = ACTIONS(1856), - [anon_sym_ATinterface] = ACTIONS(1856), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1854), - [sym_method_attribute_specifier] = ACTIONS(1854), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1854), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE] = ACTIONS(1854), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_API_AVAILABLE] = ACTIONS(1854), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_API_DEPRECATED] = ACTIONS(1854), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1854), - [anon_sym___deprecated_msg] = ACTIONS(1854), - [anon_sym___deprecated_enum_msg] = ACTIONS(1854), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1854), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1854), - [anon_sym_ATimplementation] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym___typeof] = ACTIONS(1854), - [anon_sym___typeof__] = ACTIONS(1854), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_nil] = ACTIONS(1854), - [sym_id] = ACTIONS(1854), - [sym_instancetype] = ACTIONS(1854), - [sym_Class] = ACTIONS(1854), - [sym_SEL] = ACTIONS(1854), - [sym_IMP] = ACTIONS(1854), - [sym_BOOL] = ACTIONS(1854), - [sym_auto] = ACTIONS(1854), - [anon_sym_ATautoreleasepool] = ACTIONS(1856), - [anon_sym_ATsynchronized] = ACTIONS(1856), - [anon_sym_ATtry] = ACTIONS(1856), - [anon_sym_ATthrow] = ACTIONS(1856), - [anon_sym_ATselector] = ACTIONS(1856), - [anon_sym_ATencode] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1854), - [sym_YES] = ACTIONS(1854), - [sym_NO] = ACTIONS(1854), - [anon_sym___builtin_available] = ACTIONS(1854), - [anon_sym_ATavailable] = ACTIONS(1856), - [anon_sym_va_arg] = ACTIONS(1854), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1329] = { - [sym_identifier] = ACTIONS(1854), - [aux_sym_preproc_include_token1] = ACTIONS(1856), - [aux_sym_preproc_def_token1] = ACTIONS(1856), - [aux_sym_preproc_if_token1] = ACTIONS(1854), - [aux_sym_preproc_if_token2] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1854), - [anon_sym_LPAREN2] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym___attribute] = ACTIONS(1854), - [anon_sym___attribute__] = ACTIONS(1854), - [anon_sym___declspec] = ACTIONS(1854), - [anon_sym___cdecl] = ACTIONS(1854), - [anon_sym___clrcall] = ACTIONS(1854), - [anon_sym___stdcall] = ACTIONS(1854), - [anon_sym___fastcall] = ACTIONS(1854), - [anon_sym___thiscall] = ACTIONS(1854), - [anon_sym___vectorcall] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_auto] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_volatile] = ACTIONS(1854), - [anon_sym_restrict] = ACTIONS(1854), - [anon_sym__Atomic] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_out] = ACTIONS(1854), - [anon_sym_inout] = ACTIONS(1854), - [anon_sym_bycopy] = ACTIONS(1854), - [anon_sym_byref] = ACTIONS(1854), - [anon_sym_oneway] = ACTIONS(1854), - [anon_sym__Nullable] = ACTIONS(1854), - [anon_sym__Nonnull] = ACTIONS(1854), - [anon_sym__Nullable_result] = ACTIONS(1854), - [anon_sym__Null_unspecified] = ACTIONS(1854), - [anon_sym___autoreleasing] = ACTIONS(1854), - [anon_sym___nullable] = ACTIONS(1854), - [anon_sym___nonnull] = ACTIONS(1854), - [anon_sym___strong] = ACTIONS(1854), - [anon_sym___weak] = ACTIONS(1854), - [anon_sym___bridge] = ACTIONS(1854), - [anon_sym___bridge_transfer] = ACTIONS(1854), - [anon_sym___bridge_retained] = ACTIONS(1854), - [anon_sym___unsafe_unretained] = ACTIONS(1854), - [anon_sym___block] = ACTIONS(1854), - [anon_sym___kindof] = ACTIONS(1854), - [anon_sym___unused] = ACTIONS(1854), - [anon_sym__Complex] = ACTIONS(1854), - [anon_sym___complex] = ACTIONS(1854), - [anon_sym_IBOutlet] = ACTIONS(1854), - [anon_sym_IBInspectable] = ACTIONS(1854), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1854), - [anon_sym_signed] = ACTIONS(1854), - [anon_sym_unsigned] = ACTIONS(1854), - [anon_sym_long] = ACTIONS(1854), - [anon_sym_short] = ACTIONS(1854), - [sym_primitive_type] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_NS_ENUM] = ACTIONS(1854), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1854), - [anon_sym_NS_OPTIONS] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_goto] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_sizeof] = ACTIONS(1854), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_L_SQUOTE] = ACTIONS(1856), - [anon_sym_u_SQUOTE] = ACTIONS(1856), - [anon_sym_U_SQUOTE] = ACTIONS(1856), - [anon_sym_u8_SQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_L_DQUOTE] = ACTIONS(1856), - [anon_sym_u_DQUOTE] = ACTIONS(1856), - [anon_sym_U_DQUOTE] = ACTIONS(1856), - [anon_sym_u8_DQUOTE] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1856), - [anon_sym_ATimport] = ACTIONS(1856), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1854), - [anon_sym_ATcompatibility_alias] = ACTIONS(1856), - [anon_sym_ATprotocol] = ACTIONS(1856), - [anon_sym_ATclass] = ACTIONS(1856), - [anon_sym_ATinterface] = ACTIONS(1856), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1854), - [sym_method_attribute_specifier] = ACTIONS(1854), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1854), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE] = ACTIONS(1854), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_API_AVAILABLE] = ACTIONS(1854), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_API_DEPRECATED] = ACTIONS(1854), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1854), - [anon_sym___deprecated_msg] = ACTIONS(1854), - [anon_sym___deprecated_enum_msg] = ACTIONS(1854), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1854), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1854), - [anon_sym_ATimplementation] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym___typeof] = ACTIONS(1854), - [anon_sym___typeof__] = ACTIONS(1854), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_nil] = ACTIONS(1854), - [sym_id] = ACTIONS(1854), - [sym_instancetype] = ACTIONS(1854), - [sym_Class] = ACTIONS(1854), - [sym_SEL] = ACTIONS(1854), - [sym_IMP] = ACTIONS(1854), - [sym_BOOL] = ACTIONS(1854), - [sym_auto] = ACTIONS(1854), - [anon_sym_ATautoreleasepool] = ACTIONS(1856), - [anon_sym_ATsynchronized] = ACTIONS(1856), - [anon_sym_ATtry] = ACTIONS(1856), - [anon_sym_ATthrow] = ACTIONS(1856), - [anon_sym_ATselector] = ACTIONS(1856), - [anon_sym_ATencode] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1854), - [sym_YES] = ACTIONS(1854), - [sym_NO] = ACTIONS(1854), - [anon_sym___builtin_available] = ACTIONS(1854), - [anon_sym_ATavailable] = ACTIONS(1856), - [anon_sym_va_arg] = ACTIONS(1854), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1330] = { - [sym_identifier] = ACTIONS(1854), - [aux_sym_preproc_include_token1] = ACTIONS(1856), - [aux_sym_preproc_def_token1] = ACTIONS(1856), - [aux_sym_preproc_if_token1] = ACTIONS(1854), - [aux_sym_preproc_if_token2] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1854), - [anon_sym_LPAREN2] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym___attribute] = ACTIONS(1854), - [anon_sym___attribute__] = ACTIONS(1854), - [anon_sym___declspec] = ACTIONS(1854), - [anon_sym___cdecl] = ACTIONS(1854), - [anon_sym___clrcall] = ACTIONS(1854), - [anon_sym___stdcall] = ACTIONS(1854), - [anon_sym___fastcall] = ACTIONS(1854), - [anon_sym___thiscall] = ACTIONS(1854), - [anon_sym___vectorcall] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_auto] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_volatile] = ACTIONS(1854), - [anon_sym_restrict] = ACTIONS(1854), - [anon_sym__Atomic] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_out] = ACTIONS(1854), - [anon_sym_inout] = ACTIONS(1854), - [anon_sym_bycopy] = ACTIONS(1854), - [anon_sym_byref] = ACTIONS(1854), - [anon_sym_oneway] = ACTIONS(1854), - [anon_sym__Nullable] = ACTIONS(1854), - [anon_sym__Nonnull] = ACTIONS(1854), - [anon_sym__Nullable_result] = ACTIONS(1854), - [anon_sym__Null_unspecified] = ACTIONS(1854), - [anon_sym___autoreleasing] = ACTIONS(1854), - [anon_sym___nullable] = ACTIONS(1854), - [anon_sym___nonnull] = ACTIONS(1854), - [anon_sym___strong] = ACTIONS(1854), - [anon_sym___weak] = ACTIONS(1854), - [anon_sym___bridge] = ACTIONS(1854), - [anon_sym___bridge_transfer] = ACTIONS(1854), - [anon_sym___bridge_retained] = ACTIONS(1854), - [anon_sym___unsafe_unretained] = ACTIONS(1854), - [anon_sym___block] = ACTIONS(1854), - [anon_sym___kindof] = ACTIONS(1854), - [anon_sym___unused] = ACTIONS(1854), - [anon_sym__Complex] = ACTIONS(1854), - [anon_sym___complex] = ACTIONS(1854), - [anon_sym_IBOutlet] = ACTIONS(1854), - [anon_sym_IBInspectable] = ACTIONS(1854), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1854), - [anon_sym_signed] = ACTIONS(1854), - [anon_sym_unsigned] = ACTIONS(1854), - [anon_sym_long] = ACTIONS(1854), - [anon_sym_short] = ACTIONS(1854), - [sym_primitive_type] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_NS_ENUM] = ACTIONS(1854), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1854), - [anon_sym_NS_OPTIONS] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_goto] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_sizeof] = ACTIONS(1854), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_L_SQUOTE] = ACTIONS(1856), - [anon_sym_u_SQUOTE] = ACTIONS(1856), - [anon_sym_U_SQUOTE] = ACTIONS(1856), - [anon_sym_u8_SQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_L_DQUOTE] = ACTIONS(1856), - [anon_sym_u_DQUOTE] = ACTIONS(1856), - [anon_sym_U_DQUOTE] = ACTIONS(1856), - [anon_sym_u8_DQUOTE] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1856), - [anon_sym_ATimport] = ACTIONS(1856), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1854), - [anon_sym_ATcompatibility_alias] = ACTIONS(1856), - [anon_sym_ATprotocol] = ACTIONS(1856), - [anon_sym_ATclass] = ACTIONS(1856), - [anon_sym_ATinterface] = ACTIONS(1856), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1854), - [sym_method_attribute_specifier] = ACTIONS(1854), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1854), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE] = ACTIONS(1854), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_API_AVAILABLE] = ACTIONS(1854), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_API_DEPRECATED] = ACTIONS(1854), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1854), - [anon_sym___deprecated_msg] = ACTIONS(1854), - [anon_sym___deprecated_enum_msg] = ACTIONS(1854), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1854), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1854), - [anon_sym_ATimplementation] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym___typeof] = ACTIONS(1854), - [anon_sym___typeof__] = ACTIONS(1854), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_nil] = ACTIONS(1854), - [sym_id] = ACTIONS(1854), - [sym_instancetype] = ACTIONS(1854), - [sym_Class] = ACTIONS(1854), - [sym_SEL] = ACTIONS(1854), - [sym_IMP] = ACTIONS(1854), - [sym_BOOL] = ACTIONS(1854), - [sym_auto] = ACTIONS(1854), - [anon_sym_ATautoreleasepool] = ACTIONS(1856), - [anon_sym_ATsynchronized] = ACTIONS(1856), - [anon_sym_ATtry] = ACTIONS(1856), - [anon_sym_ATthrow] = ACTIONS(1856), - [anon_sym_ATselector] = ACTIONS(1856), - [anon_sym_ATencode] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1854), - [sym_YES] = ACTIONS(1854), - [sym_NO] = ACTIONS(1854), - [anon_sym___builtin_available] = ACTIONS(1854), - [anon_sym_ATavailable] = ACTIONS(1856), - [anon_sym_va_arg] = ACTIONS(1854), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1331] = { - [sym_identifier] = ACTIONS(1854), - [aux_sym_preproc_include_token1] = ACTIONS(1856), - [aux_sym_preproc_def_token1] = ACTIONS(1856), - [aux_sym_preproc_if_token1] = ACTIONS(1854), - [aux_sym_preproc_if_token2] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1854), - [anon_sym_LPAREN2] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym___attribute] = ACTIONS(1854), - [anon_sym___attribute__] = ACTIONS(1854), - [anon_sym___declspec] = ACTIONS(1854), - [anon_sym___cdecl] = ACTIONS(1854), - [anon_sym___clrcall] = ACTIONS(1854), - [anon_sym___stdcall] = ACTIONS(1854), - [anon_sym___fastcall] = ACTIONS(1854), - [anon_sym___thiscall] = ACTIONS(1854), - [anon_sym___vectorcall] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_auto] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_volatile] = ACTIONS(1854), - [anon_sym_restrict] = ACTIONS(1854), - [anon_sym__Atomic] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_out] = ACTIONS(1854), - [anon_sym_inout] = ACTIONS(1854), - [anon_sym_bycopy] = ACTIONS(1854), - [anon_sym_byref] = ACTIONS(1854), - [anon_sym_oneway] = ACTIONS(1854), - [anon_sym__Nullable] = ACTIONS(1854), - [anon_sym__Nonnull] = ACTIONS(1854), - [anon_sym__Nullable_result] = ACTIONS(1854), - [anon_sym__Null_unspecified] = ACTIONS(1854), - [anon_sym___autoreleasing] = ACTIONS(1854), - [anon_sym___nullable] = ACTIONS(1854), - [anon_sym___nonnull] = ACTIONS(1854), - [anon_sym___strong] = ACTIONS(1854), - [anon_sym___weak] = ACTIONS(1854), - [anon_sym___bridge] = ACTIONS(1854), - [anon_sym___bridge_transfer] = ACTIONS(1854), - [anon_sym___bridge_retained] = ACTIONS(1854), - [anon_sym___unsafe_unretained] = ACTIONS(1854), - [anon_sym___block] = ACTIONS(1854), - [anon_sym___kindof] = ACTIONS(1854), - [anon_sym___unused] = ACTIONS(1854), - [anon_sym__Complex] = ACTIONS(1854), - [anon_sym___complex] = ACTIONS(1854), - [anon_sym_IBOutlet] = ACTIONS(1854), - [anon_sym_IBInspectable] = ACTIONS(1854), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1854), - [anon_sym_signed] = ACTIONS(1854), - [anon_sym_unsigned] = ACTIONS(1854), - [anon_sym_long] = ACTIONS(1854), - [anon_sym_short] = ACTIONS(1854), - [sym_primitive_type] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_NS_ENUM] = ACTIONS(1854), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1854), - [anon_sym_NS_OPTIONS] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_goto] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_sizeof] = ACTIONS(1854), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_L_SQUOTE] = ACTIONS(1856), - [anon_sym_u_SQUOTE] = ACTIONS(1856), - [anon_sym_U_SQUOTE] = ACTIONS(1856), - [anon_sym_u8_SQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_L_DQUOTE] = ACTIONS(1856), - [anon_sym_u_DQUOTE] = ACTIONS(1856), - [anon_sym_U_DQUOTE] = ACTIONS(1856), - [anon_sym_u8_DQUOTE] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1856), - [anon_sym_ATimport] = ACTIONS(1856), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1854), - [anon_sym_ATcompatibility_alias] = ACTIONS(1856), - [anon_sym_ATprotocol] = ACTIONS(1856), - [anon_sym_ATclass] = ACTIONS(1856), - [anon_sym_ATinterface] = ACTIONS(1856), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1854), - [sym_method_attribute_specifier] = ACTIONS(1854), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1854), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE] = ACTIONS(1854), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_API_AVAILABLE] = ACTIONS(1854), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_API_DEPRECATED] = ACTIONS(1854), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1854), - [anon_sym___deprecated_msg] = ACTIONS(1854), - [anon_sym___deprecated_enum_msg] = ACTIONS(1854), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1854), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1854), - [anon_sym_ATimplementation] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym___typeof] = ACTIONS(1854), - [anon_sym___typeof__] = ACTIONS(1854), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_nil] = ACTIONS(1854), - [sym_id] = ACTIONS(1854), - [sym_instancetype] = ACTIONS(1854), - [sym_Class] = ACTIONS(1854), - [sym_SEL] = ACTIONS(1854), - [sym_IMP] = ACTIONS(1854), - [sym_BOOL] = ACTIONS(1854), - [sym_auto] = ACTIONS(1854), - [anon_sym_ATautoreleasepool] = ACTIONS(1856), - [anon_sym_ATsynchronized] = ACTIONS(1856), - [anon_sym_ATtry] = ACTIONS(1856), - [anon_sym_ATthrow] = ACTIONS(1856), - [anon_sym_ATselector] = ACTIONS(1856), - [anon_sym_ATencode] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1854), - [sym_YES] = ACTIONS(1854), - [sym_NO] = ACTIONS(1854), - [anon_sym___builtin_available] = ACTIONS(1854), - [anon_sym_ATavailable] = ACTIONS(1856), - [anon_sym_va_arg] = ACTIONS(1854), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1332] = { - [sym_identifier] = ACTIONS(1854), - [aux_sym_preproc_include_token1] = ACTIONS(1856), - [aux_sym_preproc_def_token1] = ACTIONS(1856), - [aux_sym_preproc_if_token1] = ACTIONS(1854), - [aux_sym_preproc_if_token2] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1854), - [anon_sym_LPAREN2] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym___attribute] = ACTIONS(1854), - [anon_sym___attribute__] = ACTIONS(1854), - [anon_sym___declspec] = ACTIONS(1854), - [anon_sym___cdecl] = ACTIONS(1854), - [anon_sym___clrcall] = ACTIONS(1854), - [anon_sym___stdcall] = ACTIONS(1854), - [anon_sym___fastcall] = ACTIONS(1854), - [anon_sym___thiscall] = ACTIONS(1854), - [anon_sym___vectorcall] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_auto] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_volatile] = ACTIONS(1854), - [anon_sym_restrict] = ACTIONS(1854), - [anon_sym__Atomic] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_out] = ACTIONS(1854), - [anon_sym_inout] = ACTIONS(1854), - [anon_sym_bycopy] = ACTIONS(1854), - [anon_sym_byref] = ACTIONS(1854), - [anon_sym_oneway] = ACTIONS(1854), - [anon_sym__Nullable] = ACTIONS(1854), - [anon_sym__Nonnull] = ACTIONS(1854), - [anon_sym__Nullable_result] = ACTIONS(1854), - [anon_sym__Null_unspecified] = ACTIONS(1854), - [anon_sym___autoreleasing] = ACTIONS(1854), - [anon_sym___nullable] = ACTIONS(1854), - [anon_sym___nonnull] = ACTIONS(1854), - [anon_sym___strong] = ACTIONS(1854), - [anon_sym___weak] = ACTIONS(1854), - [anon_sym___bridge] = ACTIONS(1854), - [anon_sym___bridge_transfer] = ACTIONS(1854), - [anon_sym___bridge_retained] = ACTIONS(1854), - [anon_sym___unsafe_unretained] = ACTIONS(1854), - [anon_sym___block] = ACTIONS(1854), - [anon_sym___kindof] = ACTIONS(1854), - [anon_sym___unused] = ACTIONS(1854), - [anon_sym__Complex] = ACTIONS(1854), - [anon_sym___complex] = ACTIONS(1854), - [anon_sym_IBOutlet] = ACTIONS(1854), - [anon_sym_IBInspectable] = ACTIONS(1854), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1854), - [anon_sym_signed] = ACTIONS(1854), - [anon_sym_unsigned] = ACTIONS(1854), - [anon_sym_long] = ACTIONS(1854), - [anon_sym_short] = ACTIONS(1854), - [sym_primitive_type] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_NS_ENUM] = ACTIONS(1854), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1854), - [anon_sym_NS_OPTIONS] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_goto] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_sizeof] = ACTIONS(1854), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_L_SQUOTE] = ACTIONS(1856), - [anon_sym_u_SQUOTE] = ACTIONS(1856), - [anon_sym_U_SQUOTE] = ACTIONS(1856), - [anon_sym_u8_SQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_L_DQUOTE] = ACTIONS(1856), - [anon_sym_u_DQUOTE] = ACTIONS(1856), - [anon_sym_U_DQUOTE] = ACTIONS(1856), - [anon_sym_u8_DQUOTE] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1856), - [anon_sym_ATimport] = ACTIONS(1856), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1854), - [anon_sym_ATcompatibility_alias] = ACTIONS(1856), - [anon_sym_ATprotocol] = ACTIONS(1856), - [anon_sym_ATclass] = ACTIONS(1856), - [anon_sym_ATinterface] = ACTIONS(1856), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1854), - [sym_method_attribute_specifier] = ACTIONS(1854), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1854), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE] = ACTIONS(1854), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_API_AVAILABLE] = ACTIONS(1854), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_API_DEPRECATED] = ACTIONS(1854), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1854), - [anon_sym___deprecated_msg] = ACTIONS(1854), - [anon_sym___deprecated_enum_msg] = ACTIONS(1854), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1854), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1854), - [anon_sym_ATimplementation] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym___typeof] = ACTIONS(1854), - [anon_sym___typeof__] = ACTIONS(1854), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_nil] = ACTIONS(1854), - [sym_id] = ACTIONS(1854), - [sym_instancetype] = ACTIONS(1854), - [sym_Class] = ACTIONS(1854), - [sym_SEL] = ACTIONS(1854), - [sym_IMP] = ACTIONS(1854), - [sym_BOOL] = ACTIONS(1854), - [sym_auto] = ACTIONS(1854), - [anon_sym_ATautoreleasepool] = ACTIONS(1856), - [anon_sym_ATsynchronized] = ACTIONS(1856), - [anon_sym_ATtry] = ACTIONS(1856), - [anon_sym_ATthrow] = ACTIONS(1856), - [anon_sym_ATselector] = ACTIONS(1856), - [anon_sym_ATencode] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1854), - [sym_YES] = ACTIONS(1854), - [sym_NO] = ACTIONS(1854), - [anon_sym___builtin_available] = ACTIONS(1854), - [anon_sym_ATavailable] = ACTIONS(1856), - [anon_sym_va_arg] = ACTIONS(1854), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1333] = { - [sym_identifier] = ACTIONS(1854), - [aux_sym_preproc_include_token1] = ACTIONS(1856), - [aux_sym_preproc_def_token1] = ACTIONS(1856), - [aux_sym_preproc_if_token1] = ACTIONS(1854), - [aux_sym_preproc_if_token2] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1854), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1854), - [anon_sym_LPAREN2] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1854), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym___attribute] = ACTIONS(1854), - [anon_sym___attribute__] = ACTIONS(1854), - [anon_sym___declspec] = ACTIONS(1854), - [anon_sym___cdecl] = ACTIONS(1854), - [anon_sym___clrcall] = ACTIONS(1854), - [anon_sym___stdcall] = ACTIONS(1854), - [anon_sym___fastcall] = ACTIONS(1854), - [anon_sym___thiscall] = ACTIONS(1854), - [anon_sym___vectorcall] = ACTIONS(1854), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_auto] = ACTIONS(1854), - [anon_sym_register] = ACTIONS(1854), - [anon_sym_inline] = ACTIONS(1854), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_volatile] = ACTIONS(1854), - [anon_sym_restrict] = ACTIONS(1854), - [anon_sym__Atomic] = ACTIONS(1854), - [anon_sym_in] = ACTIONS(1854), - [anon_sym_out] = ACTIONS(1854), - [anon_sym_inout] = ACTIONS(1854), - [anon_sym_bycopy] = ACTIONS(1854), - [anon_sym_byref] = ACTIONS(1854), - [anon_sym_oneway] = ACTIONS(1854), - [anon_sym__Nullable] = ACTIONS(1854), - [anon_sym__Nonnull] = ACTIONS(1854), - [anon_sym__Nullable_result] = ACTIONS(1854), - [anon_sym__Null_unspecified] = ACTIONS(1854), - [anon_sym___autoreleasing] = ACTIONS(1854), - [anon_sym___nullable] = ACTIONS(1854), - [anon_sym___nonnull] = ACTIONS(1854), - [anon_sym___strong] = ACTIONS(1854), - [anon_sym___weak] = ACTIONS(1854), - [anon_sym___bridge] = ACTIONS(1854), - [anon_sym___bridge_transfer] = ACTIONS(1854), - [anon_sym___bridge_retained] = ACTIONS(1854), - [anon_sym___unsafe_unretained] = ACTIONS(1854), - [anon_sym___block] = ACTIONS(1854), - [anon_sym___kindof] = ACTIONS(1854), - [anon_sym___unused] = ACTIONS(1854), - [anon_sym__Complex] = ACTIONS(1854), - [anon_sym___complex] = ACTIONS(1854), - [anon_sym_IBOutlet] = ACTIONS(1854), - [anon_sym_IBInspectable] = ACTIONS(1854), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1854), - [anon_sym_signed] = ACTIONS(1854), - [anon_sym_unsigned] = ACTIONS(1854), - [anon_sym_long] = ACTIONS(1854), - [anon_sym_short] = ACTIONS(1854), - [sym_primitive_type] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_NS_ENUM] = ACTIONS(1854), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1854), - [anon_sym_NS_OPTIONS] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_do] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_goto] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1856), - [anon_sym_sizeof] = ACTIONS(1854), - [sym_number_literal] = ACTIONS(1856), - [anon_sym_L_SQUOTE] = ACTIONS(1856), - [anon_sym_u_SQUOTE] = ACTIONS(1856), - [anon_sym_U_SQUOTE] = ACTIONS(1856), - [anon_sym_u8_SQUOTE] = ACTIONS(1856), - [anon_sym_SQUOTE] = ACTIONS(1856), - [anon_sym_L_DQUOTE] = ACTIONS(1856), - [anon_sym_u_DQUOTE] = ACTIONS(1856), - [anon_sym_U_DQUOTE] = ACTIONS(1856), - [anon_sym_u8_DQUOTE] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [sym_true] = ACTIONS(1854), - [sym_false] = ACTIONS(1854), - [sym_null] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1856), - [anon_sym_ATimport] = ACTIONS(1856), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1854), - [anon_sym_ATcompatibility_alias] = ACTIONS(1856), - [anon_sym_ATprotocol] = ACTIONS(1856), - [anon_sym_ATclass] = ACTIONS(1856), - [anon_sym_ATinterface] = ACTIONS(1856), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1854), - [sym_method_attribute_specifier] = ACTIONS(1854), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1854), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1854), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE] = ACTIONS(1854), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1854), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_API_AVAILABLE] = ACTIONS(1854), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_API_DEPRECATED] = ACTIONS(1854), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1854), - [anon_sym___deprecated_msg] = ACTIONS(1854), - [anon_sym___deprecated_enum_msg] = ACTIONS(1854), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1854), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1854), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1854), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1854), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1854), - [anon_sym_ATimplementation] = ACTIONS(1856), - [anon_sym_typeof] = ACTIONS(1854), - [anon_sym___typeof] = ACTIONS(1854), - [anon_sym___typeof__] = ACTIONS(1854), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_nil] = ACTIONS(1854), - [sym_id] = ACTIONS(1854), - [sym_instancetype] = ACTIONS(1854), - [sym_Class] = ACTIONS(1854), - [sym_SEL] = ACTIONS(1854), - [sym_IMP] = ACTIONS(1854), - [sym_BOOL] = ACTIONS(1854), - [sym_auto] = ACTIONS(1854), - [anon_sym_ATautoreleasepool] = ACTIONS(1856), - [anon_sym_ATsynchronized] = ACTIONS(1856), - [anon_sym_ATtry] = ACTIONS(1856), - [anon_sym_ATthrow] = ACTIONS(1856), - [anon_sym_ATselector] = ACTIONS(1856), - [anon_sym_ATencode] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1854), - [sym_YES] = ACTIONS(1854), - [sym_NO] = ACTIONS(1854), - [anon_sym___builtin_available] = ACTIONS(1854), - [anon_sym_ATavailable] = ACTIONS(1856), - [anon_sym_va_arg] = ACTIONS(1854), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1334] = { - [sym_identifier] = ACTIONS(1850), - [aux_sym_preproc_include_token1] = ACTIONS(1852), - [aux_sym_preproc_def_token1] = ACTIONS(1852), - [aux_sym_preproc_if_token1] = ACTIONS(1850), - [aux_sym_preproc_if_token2] = ACTIONS(1850), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1850), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1850), - [anon_sym_LPAREN2] = ACTIONS(1852), - [anon_sym_BANG] = ACTIONS(1852), - [anon_sym_TILDE] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1852), - [anon_sym_CARET] = ACTIONS(1852), - [anon_sym_AMP] = ACTIONS(1852), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_typedef] = ACTIONS(1850), - [anon_sym_extern] = ACTIONS(1850), - [anon_sym___attribute] = ACTIONS(1850), - [anon_sym___attribute__] = ACTIONS(1850), - [anon_sym___declspec] = ACTIONS(1850), - [anon_sym___cdecl] = ACTIONS(1850), - [anon_sym___clrcall] = ACTIONS(1850), - [anon_sym___stdcall] = ACTIONS(1850), - [anon_sym___fastcall] = ACTIONS(1850), - [anon_sym___thiscall] = ACTIONS(1850), - [anon_sym___vectorcall] = ACTIONS(1850), - [anon_sym_LBRACE] = ACTIONS(1852), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1850), - [anon_sym_auto] = ACTIONS(1850), - [anon_sym_register] = ACTIONS(1850), - [anon_sym_inline] = ACTIONS(1850), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1850), - [anon_sym_const] = ACTIONS(1850), - [anon_sym_volatile] = ACTIONS(1850), - [anon_sym_restrict] = ACTIONS(1850), - [anon_sym__Atomic] = ACTIONS(1850), - [anon_sym_in] = ACTIONS(1850), - [anon_sym_out] = ACTIONS(1850), - [anon_sym_inout] = ACTIONS(1850), - [anon_sym_bycopy] = ACTIONS(1850), - [anon_sym_byref] = ACTIONS(1850), - [anon_sym_oneway] = ACTIONS(1850), - [anon_sym__Nullable] = ACTIONS(1850), - [anon_sym__Nonnull] = ACTIONS(1850), - [anon_sym__Nullable_result] = ACTIONS(1850), - [anon_sym__Null_unspecified] = ACTIONS(1850), - [anon_sym___autoreleasing] = ACTIONS(1850), - [anon_sym___nullable] = ACTIONS(1850), - [anon_sym___nonnull] = ACTIONS(1850), - [anon_sym___strong] = ACTIONS(1850), - [anon_sym___weak] = ACTIONS(1850), - [anon_sym___bridge] = ACTIONS(1850), - [anon_sym___bridge_transfer] = ACTIONS(1850), - [anon_sym___bridge_retained] = ACTIONS(1850), - [anon_sym___unsafe_unretained] = ACTIONS(1850), - [anon_sym___block] = ACTIONS(1850), - [anon_sym___kindof] = ACTIONS(1850), - [anon_sym___unused] = ACTIONS(1850), - [anon_sym__Complex] = ACTIONS(1850), - [anon_sym___complex] = ACTIONS(1850), - [anon_sym_IBOutlet] = ACTIONS(1850), - [anon_sym_IBInspectable] = ACTIONS(1850), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1850), - [anon_sym_signed] = ACTIONS(1850), - [anon_sym_unsigned] = ACTIONS(1850), - [anon_sym_long] = ACTIONS(1850), - [anon_sym_short] = ACTIONS(1850), - [sym_primitive_type] = ACTIONS(1850), - [anon_sym_enum] = ACTIONS(1850), - [anon_sym_NS_ENUM] = ACTIONS(1850), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1850), - [anon_sym_NS_OPTIONS] = ACTIONS(1850), - [anon_sym_struct] = ACTIONS(1850), - [anon_sym_union] = ACTIONS(1850), - [anon_sym_if] = ACTIONS(1850), - [anon_sym_switch] = ACTIONS(1850), - [anon_sym_case] = ACTIONS(1850), - [anon_sym_default] = ACTIONS(1850), - [anon_sym_while] = ACTIONS(1850), - [anon_sym_do] = ACTIONS(1850), - [anon_sym_for] = ACTIONS(1850), - [anon_sym_return] = ACTIONS(1850), - [anon_sym_break] = ACTIONS(1850), - [anon_sym_continue] = ACTIONS(1850), - [anon_sym_goto] = ACTIONS(1850), - [anon_sym_DASH_DASH] = ACTIONS(1852), - [anon_sym_PLUS_PLUS] = ACTIONS(1852), - [anon_sym_sizeof] = ACTIONS(1850), - [sym_number_literal] = ACTIONS(1852), - [anon_sym_L_SQUOTE] = ACTIONS(1852), - [anon_sym_u_SQUOTE] = ACTIONS(1852), - [anon_sym_U_SQUOTE] = ACTIONS(1852), - [anon_sym_u8_SQUOTE] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_L_DQUOTE] = ACTIONS(1852), - [anon_sym_u_DQUOTE] = ACTIONS(1852), - [anon_sym_U_DQUOTE] = ACTIONS(1852), - [anon_sym_u8_DQUOTE] = ACTIONS(1852), - [anon_sym_DQUOTE] = ACTIONS(1852), - [sym_true] = ACTIONS(1850), - [sym_false] = ACTIONS(1850), - [sym_null] = ACTIONS(1850), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1852), - [anon_sym_ATimport] = ACTIONS(1852), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1850), - [anon_sym_ATcompatibility_alias] = ACTIONS(1852), - [anon_sym_ATprotocol] = ACTIONS(1852), - [anon_sym_ATclass] = ACTIONS(1852), - [anon_sym_ATinterface] = ACTIONS(1852), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1850), - [sym_method_attribute_specifier] = ACTIONS(1850), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1850), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1850), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1850), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1850), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1850), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1850), - [anon_sym_NS_AVAILABLE] = ACTIONS(1850), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1850), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1850), - [anon_sym_API_AVAILABLE] = ACTIONS(1850), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1850), - [anon_sym_API_DEPRECATED] = ACTIONS(1850), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1850), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1850), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1850), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1850), - [anon_sym___deprecated_msg] = ACTIONS(1850), - [anon_sym___deprecated_enum_msg] = ACTIONS(1850), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1850), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1850), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1850), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1850), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1850), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1850), - [anon_sym_ATimplementation] = ACTIONS(1852), - [anon_sym_typeof] = ACTIONS(1850), - [anon_sym___typeof] = ACTIONS(1850), - [anon_sym___typeof__] = ACTIONS(1850), - [sym_self] = ACTIONS(1850), - [sym_super] = ACTIONS(1850), - [sym_nil] = ACTIONS(1850), - [sym_id] = ACTIONS(1850), - [sym_instancetype] = ACTIONS(1850), - [sym_Class] = ACTIONS(1850), - [sym_SEL] = ACTIONS(1850), - [sym_IMP] = ACTIONS(1850), - [sym_BOOL] = ACTIONS(1850), - [sym_auto] = ACTIONS(1850), - [anon_sym_ATautoreleasepool] = ACTIONS(1852), - [anon_sym_ATsynchronized] = ACTIONS(1852), - [anon_sym_ATtry] = ACTIONS(1852), - [anon_sym_ATthrow] = ACTIONS(1852), - [anon_sym_ATselector] = ACTIONS(1852), - [anon_sym_ATencode] = ACTIONS(1852), - [anon_sym_AT] = ACTIONS(1850), - [sym_YES] = ACTIONS(1850), - [sym_NO] = ACTIONS(1850), - [anon_sym___builtin_available] = ACTIONS(1850), - [anon_sym_ATavailable] = ACTIONS(1852), - [anon_sym_va_arg] = ACTIONS(1850), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1335] = { - [sym_identifier] = ACTIONS(1838), - [aux_sym_preproc_include_token1] = ACTIONS(1840), - [aux_sym_preproc_def_token1] = ACTIONS(1840), - [aux_sym_preproc_if_token1] = ACTIONS(1838), - [aux_sym_preproc_if_token2] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [anon_sym_LPAREN2] = ACTIONS(1840), - [anon_sym_BANG] = ACTIONS(1840), - [anon_sym_TILDE] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1840), - [anon_sym_CARET] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_typedef] = ACTIONS(1838), - [anon_sym_extern] = ACTIONS(1838), - [anon_sym___attribute] = ACTIONS(1838), - [anon_sym___attribute__] = ACTIONS(1838), - [anon_sym___declspec] = ACTIONS(1838), - [anon_sym___cdecl] = ACTIONS(1838), - [anon_sym___clrcall] = ACTIONS(1838), - [anon_sym___stdcall] = ACTIONS(1838), - [anon_sym___fastcall] = ACTIONS(1838), - [anon_sym___thiscall] = ACTIONS(1838), - [anon_sym___vectorcall] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1838), - [anon_sym_auto] = ACTIONS(1838), - [anon_sym_register] = ACTIONS(1838), - [anon_sym_inline] = ACTIONS(1838), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1838), - [anon_sym_const] = ACTIONS(1838), - [anon_sym_volatile] = ACTIONS(1838), - [anon_sym_restrict] = ACTIONS(1838), - [anon_sym__Atomic] = ACTIONS(1838), - [anon_sym_in] = ACTIONS(1838), - [anon_sym_out] = ACTIONS(1838), - [anon_sym_inout] = ACTIONS(1838), - [anon_sym_bycopy] = ACTIONS(1838), - [anon_sym_byref] = ACTIONS(1838), - [anon_sym_oneway] = ACTIONS(1838), - [anon_sym__Nullable] = ACTIONS(1838), - [anon_sym__Nonnull] = ACTIONS(1838), - [anon_sym__Nullable_result] = ACTIONS(1838), - [anon_sym__Null_unspecified] = ACTIONS(1838), - [anon_sym___autoreleasing] = ACTIONS(1838), - [anon_sym___nullable] = ACTIONS(1838), - [anon_sym___nonnull] = ACTIONS(1838), - [anon_sym___strong] = ACTIONS(1838), - [anon_sym___weak] = ACTIONS(1838), - [anon_sym___bridge] = ACTIONS(1838), - [anon_sym___bridge_transfer] = ACTIONS(1838), - [anon_sym___bridge_retained] = ACTIONS(1838), - [anon_sym___unsafe_unretained] = ACTIONS(1838), - [anon_sym___block] = ACTIONS(1838), - [anon_sym___kindof] = ACTIONS(1838), - [anon_sym___unused] = ACTIONS(1838), - [anon_sym__Complex] = ACTIONS(1838), - [anon_sym___complex] = ACTIONS(1838), - [anon_sym_IBOutlet] = ACTIONS(1838), - [anon_sym_IBInspectable] = ACTIONS(1838), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1838), - [anon_sym_signed] = ACTIONS(1838), - [anon_sym_unsigned] = ACTIONS(1838), - [anon_sym_long] = ACTIONS(1838), - [anon_sym_short] = ACTIONS(1838), - [sym_primitive_type] = ACTIONS(1838), - [anon_sym_enum] = ACTIONS(1838), - [anon_sym_NS_ENUM] = ACTIONS(1838), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1838), - [anon_sym_NS_OPTIONS] = ACTIONS(1838), - [anon_sym_struct] = ACTIONS(1838), - [anon_sym_union] = ACTIONS(1838), - [anon_sym_if] = ACTIONS(1838), - [anon_sym_switch] = ACTIONS(1838), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1838), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(1838), - [anon_sym_for] = ACTIONS(1838), - [anon_sym_return] = ACTIONS(1838), - [anon_sym_break] = ACTIONS(1838), - [anon_sym_continue] = ACTIONS(1838), - [anon_sym_goto] = ACTIONS(1838), - [anon_sym_DASH_DASH] = ACTIONS(1840), - [anon_sym_PLUS_PLUS] = ACTIONS(1840), - [anon_sym_sizeof] = ACTIONS(1838), - [sym_number_literal] = ACTIONS(1840), - [anon_sym_L_SQUOTE] = ACTIONS(1840), - [anon_sym_u_SQUOTE] = ACTIONS(1840), - [anon_sym_U_SQUOTE] = ACTIONS(1840), - [anon_sym_u8_SQUOTE] = ACTIONS(1840), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1838), - [sym_false] = ACTIONS(1838), - [sym_null] = ACTIONS(1838), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1840), - [anon_sym_ATimport] = ACTIONS(1840), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1838), - [anon_sym_ATcompatibility_alias] = ACTIONS(1840), - [anon_sym_ATprotocol] = ACTIONS(1840), - [anon_sym_ATclass] = ACTIONS(1840), - [anon_sym_ATinterface] = ACTIONS(1840), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1838), - [sym_method_attribute_specifier] = ACTIONS(1838), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1838), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1838), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1838), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1838), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1838), - [anon_sym_NS_AVAILABLE] = ACTIONS(1838), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1838), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_API_AVAILABLE] = ACTIONS(1838), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_API_DEPRECATED] = ACTIONS(1838), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1838), - [anon_sym___deprecated_msg] = ACTIONS(1838), - [anon_sym___deprecated_enum_msg] = ACTIONS(1838), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1838), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1838), - [anon_sym_ATimplementation] = ACTIONS(1840), - [anon_sym_typeof] = ACTIONS(1838), - [anon_sym___typeof] = ACTIONS(1838), - [anon_sym___typeof__] = ACTIONS(1838), - [sym_self] = ACTIONS(1838), - [sym_super] = ACTIONS(1838), - [sym_nil] = ACTIONS(1838), - [sym_id] = ACTIONS(1838), - [sym_instancetype] = ACTIONS(1838), - [sym_Class] = ACTIONS(1838), - [sym_SEL] = ACTIONS(1838), - [sym_IMP] = ACTIONS(1838), - [sym_BOOL] = ACTIONS(1838), - [sym_auto] = ACTIONS(1838), - [anon_sym_ATautoreleasepool] = ACTIONS(1840), - [anon_sym_ATsynchronized] = ACTIONS(1840), - [anon_sym_ATtry] = ACTIONS(1840), - [anon_sym_ATthrow] = ACTIONS(1840), - [anon_sym_ATselector] = ACTIONS(1840), - [anon_sym_ATencode] = ACTIONS(1840), - [anon_sym_AT] = ACTIONS(1838), - [sym_YES] = ACTIONS(1838), - [sym_NO] = ACTIONS(1838), - [anon_sym___builtin_available] = ACTIONS(1838), - [anon_sym_ATavailable] = ACTIONS(1840), - [anon_sym_va_arg] = ACTIONS(1838), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1336] = { - [sym_identifier] = ACTIONS(1838), - [aux_sym_preproc_include_token1] = ACTIONS(1840), - [aux_sym_preproc_def_token1] = ACTIONS(1840), - [aux_sym_preproc_if_token1] = ACTIONS(1838), - [aux_sym_preproc_if_token2] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [anon_sym_LPAREN2] = ACTIONS(1840), - [anon_sym_BANG] = ACTIONS(1840), - [anon_sym_TILDE] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1840), - [anon_sym_CARET] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_typedef] = ACTIONS(1838), - [anon_sym_extern] = ACTIONS(1838), - [anon_sym___attribute] = ACTIONS(1838), - [anon_sym___attribute__] = ACTIONS(1838), - [anon_sym___declspec] = ACTIONS(1838), - [anon_sym___cdecl] = ACTIONS(1838), - [anon_sym___clrcall] = ACTIONS(1838), - [anon_sym___stdcall] = ACTIONS(1838), - [anon_sym___fastcall] = ACTIONS(1838), - [anon_sym___thiscall] = ACTIONS(1838), - [anon_sym___vectorcall] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1838), - [anon_sym_auto] = ACTIONS(1838), - [anon_sym_register] = ACTIONS(1838), - [anon_sym_inline] = ACTIONS(1838), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1838), - [anon_sym_const] = ACTIONS(1838), - [anon_sym_volatile] = ACTIONS(1838), - [anon_sym_restrict] = ACTIONS(1838), - [anon_sym__Atomic] = ACTIONS(1838), - [anon_sym_in] = ACTIONS(1838), - [anon_sym_out] = ACTIONS(1838), - [anon_sym_inout] = ACTIONS(1838), - [anon_sym_bycopy] = ACTIONS(1838), - [anon_sym_byref] = ACTIONS(1838), - [anon_sym_oneway] = ACTIONS(1838), - [anon_sym__Nullable] = ACTIONS(1838), - [anon_sym__Nonnull] = ACTIONS(1838), - [anon_sym__Nullable_result] = ACTIONS(1838), - [anon_sym__Null_unspecified] = ACTIONS(1838), - [anon_sym___autoreleasing] = ACTIONS(1838), - [anon_sym___nullable] = ACTIONS(1838), - [anon_sym___nonnull] = ACTIONS(1838), - [anon_sym___strong] = ACTIONS(1838), - [anon_sym___weak] = ACTIONS(1838), - [anon_sym___bridge] = ACTIONS(1838), - [anon_sym___bridge_transfer] = ACTIONS(1838), - [anon_sym___bridge_retained] = ACTIONS(1838), - [anon_sym___unsafe_unretained] = ACTIONS(1838), - [anon_sym___block] = ACTIONS(1838), - [anon_sym___kindof] = ACTIONS(1838), - [anon_sym___unused] = ACTIONS(1838), - [anon_sym__Complex] = ACTIONS(1838), - [anon_sym___complex] = ACTIONS(1838), - [anon_sym_IBOutlet] = ACTIONS(1838), - [anon_sym_IBInspectable] = ACTIONS(1838), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1838), - [anon_sym_signed] = ACTIONS(1838), - [anon_sym_unsigned] = ACTIONS(1838), - [anon_sym_long] = ACTIONS(1838), - [anon_sym_short] = ACTIONS(1838), - [sym_primitive_type] = ACTIONS(1838), - [anon_sym_enum] = ACTIONS(1838), - [anon_sym_NS_ENUM] = ACTIONS(1838), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1838), - [anon_sym_NS_OPTIONS] = ACTIONS(1838), - [anon_sym_struct] = ACTIONS(1838), - [anon_sym_union] = ACTIONS(1838), - [anon_sym_if] = ACTIONS(1838), - [anon_sym_switch] = ACTIONS(1838), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1838), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(1838), - [anon_sym_for] = ACTIONS(1838), - [anon_sym_return] = ACTIONS(1838), - [anon_sym_break] = ACTIONS(1838), - [anon_sym_continue] = ACTIONS(1838), - [anon_sym_goto] = ACTIONS(1838), - [anon_sym_DASH_DASH] = ACTIONS(1840), - [anon_sym_PLUS_PLUS] = ACTIONS(1840), - [anon_sym_sizeof] = ACTIONS(1838), - [sym_number_literal] = ACTIONS(1840), - [anon_sym_L_SQUOTE] = ACTIONS(1840), - [anon_sym_u_SQUOTE] = ACTIONS(1840), - [anon_sym_U_SQUOTE] = ACTIONS(1840), - [anon_sym_u8_SQUOTE] = ACTIONS(1840), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1838), - [sym_false] = ACTIONS(1838), - [sym_null] = ACTIONS(1838), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1840), - [anon_sym_ATimport] = ACTIONS(1840), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1838), - [anon_sym_ATcompatibility_alias] = ACTIONS(1840), - [anon_sym_ATprotocol] = ACTIONS(1840), - [anon_sym_ATclass] = ACTIONS(1840), - [anon_sym_ATinterface] = ACTIONS(1840), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1838), - [sym_method_attribute_specifier] = ACTIONS(1838), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1838), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1838), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1838), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1838), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1838), - [anon_sym_NS_AVAILABLE] = ACTIONS(1838), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1838), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_API_AVAILABLE] = ACTIONS(1838), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_API_DEPRECATED] = ACTIONS(1838), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1838), - [anon_sym___deprecated_msg] = ACTIONS(1838), - [anon_sym___deprecated_enum_msg] = ACTIONS(1838), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1838), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1838), - [anon_sym_ATimplementation] = ACTIONS(1840), - [anon_sym_typeof] = ACTIONS(1838), - [anon_sym___typeof] = ACTIONS(1838), - [anon_sym___typeof__] = ACTIONS(1838), - [sym_self] = ACTIONS(1838), - [sym_super] = ACTIONS(1838), - [sym_nil] = ACTIONS(1838), - [sym_id] = ACTIONS(1838), - [sym_instancetype] = ACTIONS(1838), - [sym_Class] = ACTIONS(1838), - [sym_SEL] = ACTIONS(1838), - [sym_IMP] = ACTIONS(1838), - [sym_BOOL] = ACTIONS(1838), - [sym_auto] = ACTIONS(1838), - [anon_sym_ATautoreleasepool] = ACTIONS(1840), - [anon_sym_ATsynchronized] = ACTIONS(1840), - [anon_sym_ATtry] = ACTIONS(1840), - [anon_sym_ATthrow] = ACTIONS(1840), - [anon_sym_ATselector] = ACTIONS(1840), - [anon_sym_ATencode] = ACTIONS(1840), - [anon_sym_AT] = ACTIONS(1838), - [sym_YES] = ACTIONS(1838), - [sym_NO] = ACTIONS(1838), - [anon_sym___builtin_available] = ACTIONS(1838), - [anon_sym_ATavailable] = ACTIONS(1840), - [anon_sym_va_arg] = ACTIONS(1838), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1337] = { - [sym_identifier] = ACTIONS(1838), - [aux_sym_preproc_include_token1] = ACTIONS(1840), - [aux_sym_preproc_def_token1] = ACTIONS(1840), - [aux_sym_preproc_if_token1] = ACTIONS(1838), - [aux_sym_preproc_if_token2] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1838), - [anon_sym_LPAREN2] = ACTIONS(1840), - [anon_sym_BANG] = ACTIONS(1840), - [anon_sym_TILDE] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1840), - [anon_sym_CARET] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_typedef] = ACTIONS(1838), - [anon_sym_extern] = ACTIONS(1838), - [anon_sym___attribute] = ACTIONS(1838), - [anon_sym___attribute__] = ACTIONS(1838), - [anon_sym___declspec] = ACTIONS(1838), - [anon_sym___cdecl] = ACTIONS(1838), - [anon_sym___clrcall] = ACTIONS(1838), - [anon_sym___stdcall] = ACTIONS(1838), - [anon_sym___fastcall] = ACTIONS(1838), - [anon_sym___thiscall] = ACTIONS(1838), - [anon_sym___vectorcall] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1838), - [anon_sym_auto] = ACTIONS(1838), - [anon_sym_register] = ACTIONS(1838), - [anon_sym_inline] = ACTIONS(1838), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1838), - [anon_sym_const] = ACTIONS(1838), - [anon_sym_volatile] = ACTIONS(1838), - [anon_sym_restrict] = ACTIONS(1838), - [anon_sym__Atomic] = ACTIONS(1838), - [anon_sym_in] = ACTIONS(1838), - [anon_sym_out] = ACTIONS(1838), - [anon_sym_inout] = ACTIONS(1838), - [anon_sym_bycopy] = ACTIONS(1838), - [anon_sym_byref] = ACTIONS(1838), - [anon_sym_oneway] = ACTIONS(1838), - [anon_sym__Nullable] = ACTIONS(1838), - [anon_sym__Nonnull] = ACTIONS(1838), - [anon_sym__Nullable_result] = ACTIONS(1838), - [anon_sym__Null_unspecified] = ACTIONS(1838), - [anon_sym___autoreleasing] = ACTIONS(1838), - [anon_sym___nullable] = ACTIONS(1838), - [anon_sym___nonnull] = ACTIONS(1838), - [anon_sym___strong] = ACTIONS(1838), - [anon_sym___weak] = ACTIONS(1838), - [anon_sym___bridge] = ACTIONS(1838), - [anon_sym___bridge_transfer] = ACTIONS(1838), - [anon_sym___bridge_retained] = ACTIONS(1838), - [anon_sym___unsafe_unretained] = ACTIONS(1838), - [anon_sym___block] = ACTIONS(1838), - [anon_sym___kindof] = ACTIONS(1838), - [anon_sym___unused] = ACTIONS(1838), - [anon_sym__Complex] = ACTIONS(1838), - [anon_sym___complex] = ACTIONS(1838), - [anon_sym_IBOutlet] = ACTIONS(1838), - [anon_sym_IBInspectable] = ACTIONS(1838), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1838), - [anon_sym_signed] = ACTIONS(1838), - [anon_sym_unsigned] = ACTIONS(1838), - [anon_sym_long] = ACTIONS(1838), - [anon_sym_short] = ACTIONS(1838), - [sym_primitive_type] = ACTIONS(1838), - [anon_sym_enum] = ACTIONS(1838), - [anon_sym_NS_ENUM] = ACTIONS(1838), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1838), - [anon_sym_NS_OPTIONS] = ACTIONS(1838), - [anon_sym_struct] = ACTIONS(1838), - [anon_sym_union] = ACTIONS(1838), - [anon_sym_if] = ACTIONS(1838), - [anon_sym_switch] = ACTIONS(1838), - [anon_sym_case] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1838), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_do] = ACTIONS(1838), - [anon_sym_for] = ACTIONS(1838), - [anon_sym_return] = ACTIONS(1838), - [anon_sym_break] = ACTIONS(1838), - [anon_sym_continue] = ACTIONS(1838), - [anon_sym_goto] = ACTIONS(1838), - [anon_sym_DASH_DASH] = ACTIONS(1840), - [anon_sym_PLUS_PLUS] = ACTIONS(1840), - [anon_sym_sizeof] = ACTIONS(1838), - [sym_number_literal] = ACTIONS(1840), - [anon_sym_L_SQUOTE] = ACTIONS(1840), - [anon_sym_u_SQUOTE] = ACTIONS(1840), - [anon_sym_U_SQUOTE] = ACTIONS(1840), - [anon_sym_u8_SQUOTE] = ACTIONS(1840), - [anon_sym_SQUOTE] = ACTIONS(1840), - [anon_sym_L_DQUOTE] = ACTIONS(1840), - [anon_sym_u_DQUOTE] = ACTIONS(1840), - [anon_sym_U_DQUOTE] = ACTIONS(1840), - [anon_sym_u8_DQUOTE] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym_true] = ACTIONS(1838), - [sym_false] = ACTIONS(1838), - [sym_null] = ACTIONS(1838), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1840), - [anon_sym_ATimport] = ACTIONS(1840), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1838), - [anon_sym_ATcompatibility_alias] = ACTIONS(1840), - [anon_sym_ATprotocol] = ACTIONS(1840), - [anon_sym_ATclass] = ACTIONS(1840), - [anon_sym_ATinterface] = ACTIONS(1840), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1838), - [sym_method_attribute_specifier] = ACTIONS(1838), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1838), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1838), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1838), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1838), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1838), - [anon_sym_NS_AVAILABLE] = ACTIONS(1838), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1838), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_API_AVAILABLE] = ACTIONS(1838), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_API_DEPRECATED] = ACTIONS(1838), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1838), - [anon_sym___deprecated_msg] = ACTIONS(1838), - [anon_sym___deprecated_enum_msg] = ACTIONS(1838), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1838), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1838), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1838), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1838), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1838), - [anon_sym_ATimplementation] = ACTIONS(1840), - [anon_sym_typeof] = ACTIONS(1838), - [anon_sym___typeof] = ACTIONS(1838), - [anon_sym___typeof__] = ACTIONS(1838), - [sym_self] = ACTIONS(1838), - [sym_super] = ACTIONS(1838), - [sym_nil] = ACTIONS(1838), - [sym_id] = ACTIONS(1838), - [sym_instancetype] = ACTIONS(1838), - [sym_Class] = ACTIONS(1838), - [sym_SEL] = ACTIONS(1838), - [sym_IMP] = ACTIONS(1838), - [sym_BOOL] = ACTIONS(1838), - [sym_auto] = ACTIONS(1838), - [anon_sym_ATautoreleasepool] = ACTIONS(1840), - [anon_sym_ATsynchronized] = ACTIONS(1840), - [anon_sym_ATtry] = ACTIONS(1840), - [anon_sym_ATthrow] = ACTIONS(1840), - [anon_sym_ATselector] = ACTIONS(1840), - [anon_sym_ATencode] = ACTIONS(1840), - [anon_sym_AT] = ACTIONS(1838), - [sym_YES] = ACTIONS(1838), - [sym_NO] = ACTIONS(1838), - [anon_sym___builtin_available] = ACTIONS(1838), - [anon_sym_ATavailable] = ACTIONS(1840), - [anon_sym_va_arg] = ACTIONS(1838), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1338] = { - [sym_identifier] = ACTIONS(1906), - [aux_sym_preproc_include_token1] = ACTIONS(1908), - [aux_sym_preproc_def_token1] = ACTIONS(1908), - [aux_sym_preproc_if_token1] = ACTIONS(1906), - [aux_sym_preproc_if_token2] = ACTIONS(1906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1906), - [anon_sym_LPAREN2] = ACTIONS(1908), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_TILDE] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_PLUS] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1908), - [anon_sym_CARET] = ACTIONS(1908), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1908), - [anon_sym_typedef] = ACTIONS(1906), - [anon_sym_extern] = ACTIONS(1906), - [anon_sym___attribute] = ACTIONS(1906), - [anon_sym___attribute__] = ACTIONS(1906), - [anon_sym___declspec] = ACTIONS(1906), - [anon_sym___cdecl] = ACTIONS(1906), - [anon_sym___clrcall] = ACTIONS(1906), - [anon_sym___stdcall] = ACTIONS(1906), - [anon_sym___fastcall] = ACTIONS(1906), - [anon_sym___thiscall] = ACTIONS(1906), - [anon_sym___vectorcall] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1908), - [anon_sym_static] = ACTIONS(1906), - [anon_sym_auto] = ACTIONS(1906), - [anon_sym_register] = ACTIONS(1906), - [anon_sym_inline] = ACTIONS(1906), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1906), - [anon_sym_const] = ACTIONS(1906), - [anon_sym_volatile] = ACTIONS(1906), - [anon_sym_restrict] = ACTIONS(1906), - [anon_sym__Atomic] = ACTIONS(1906), - [anon_sym_in] = ACTIONS(1906), - [anon_sym_out] = ACTIONS(1906), - [anon_sym_inout] = ACTIONS(1906), - [anon_sym_bycopy] = ACTIONS(1906), - [anon_sym_byref] = ACTIONS(1906), - [anon_sym_oneway] = ACTIONS(1906), - [anon_sym__Nullable] = ACTIONS(1906), - [anon_sym__Nonnull] = ACTIONS(1906), - [anon_sym__Nullable_result] = ACTIONS(1906), - [anon_sym__Null_unspecified] = ACTIONS(1906), - [anon_sym___autoreleasing] = ACTIONS(1906), - [anon_sym___nullable] = ACTIONS(1906), - [anon_sym___nonnull] = ACTIONS(1906), - [anon_sym___strong] = ACTIONS(1906), - [anon_sym___weak] = ACTIONS(1906), - [anon_sym___bridge] = ACTIONS(1906), - [anon_sym___bridge_transfer] = ACTIONS(1906), - [anon_sym___bridge_retained] = ACTIONS(1906), - [anon_sym___unsafe_unretained] = ACTIONS(1906), - [anon_sym___block] = ACTIONS(1906), - [anon_sym___kindof] = ACTIONS(1906), - [anon_sym___unused] = ACTIONS(1906), - [anon_sym__Complex] = ACTIONS(1906), - [anon_sym___complex] = ACTIONS(1906), - [anon_sym_IBOutlet] = ACTIONS(1906), - [anon_sym_IBInspectable] = ACTIONS(1906), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1906), - [anon_sym_signed] = ACTIONS(1906), - [anon_sym_unsigned] = ACTIONS(1906), - [anon_sym_long] = ACTIONS(1906), - [anon_sym_short] = ACTIONS(1906), - [sym_primitive_type] = ACTIONS(1906), - [anon_sym_enum] = ACTIONS(1906), - [anon_sym_NS_ENUM] = ACTIONS(1906), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1906), - [anon_sym_NS_OPTIONS] = ACTIONS(1906), - [anon_sym_struct] = ACTIONS(1906), - [anon_sym_union] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(1906), - [anon_sym_switch] = ACTIONS(1906), - [anon_sym_case] = ACTIONS(1906), - [anon_sym_default] = ACTIONS(1906), - [anon_sym_while] = ACTIONS(1906), - [anon_sym_do] = ACTIONS(1906), - [anon_sym_for] = ACTIONS(1906), - [anon_sym_return] = ACTIONS(1906), - [anon_sym_break] = ACTIONS(1906), - [anon_sym_continue] = ACTIONS(1906), - [anon_sym_goto] = ACTIONS(1906), - [anon_sym_DASH_DASH] = ACTIONS(1908), - [anon_sym_PLUS_PLUS] = ACTIONS(1908), - [anon_sym_sizeof] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1908), - [anon_sym_u_SQUOTE] = ACTIONS(1908), - [anon_sym_U_SQUOTE] = ACTIONS(1908), - [anon_sym_u8_SQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1908), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1908), - [anon_sym_ATimport] = ACTIONS(1908), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1906), - [anon_sym_ATcompatibility_alias] = ACTIONS(1908), - [anon_sym_ATprotocol] = ACTIONS(1908), - [anon_sym_ATclass] = ACTIONS(1908), - [anon_sym_ATinterface] = ACTIONS(1908), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1906), - [sym_method_attribute_specifier] = ACTIONS(1906), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1906), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1906), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1906), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1906), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1906), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1906), - [anon_sym_NS_AVAILABLE] = ACTIONS(1906), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1906), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_API_AVAILABLE] = ACTIONS(1906), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1906), - [anon_sym_API_DEPRECATED] = ACTIONS(1906), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1906), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1906), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1906), - [anon_sym___deprecated_msg] = ACTIONS(1906), - [anon_sym___deprecated_enum_msg] = ACTIONS(1906), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1906), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1906), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1906), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1906), - [anon_sym_ATimplementation] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(1906), - [anon_sym___typeof] = ACTIONS(1906), - [anon_sym___typeof__] = ACTIONS(1906), - [sym_self] = ACTIONS(1906), - [sym_super] = ACTIONS(1906), - [sym_nil] = ACTIONS(1906), - [sym_id] = ACTIONS(1906), - [sym_instancetype] = ACTIONS(1906), - [sym_Class] = ACTIONS(1906), - [sym_SEL] = ACTIONS(1906), - [sym_IMP] = ACTIONS(1906), - [sym_BOOL] = ACTIONS(1906), - [sym_auto] = ACTIONS(1906), - [anon_sym_ATautoreleasepool] = ACTIONS(1908), - [anon_sym_ATsynchronized] = ACTIONS(1908), - [anon_sym_ATtry] = ACTIONS(1908), - [anon_sym_ATthrow] = ACTIONS(1908), - [anon_sym_ATselector] = ACTIONS(1908), - [anon_sym_ATencode] = ACTIONS(1908), - [anon_sym_AT] = ACTIONS(1906), - [sym_YES] = ACTIONS(1906), - [sym_NO] = ACTIONS(1906), - [anon_sym___builtin_available] = ACTIONS(1906), - [anon_sym_ATavailable] = ACTIONS(1908), - [anon_sym_va_arg] = ACTIONS(1906), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1339] = { - [sym_identifier] = ACTIONS(1982), - [aux_sym_preproc_include_token1] = ACTIONS(1984), - [aux_sym_preproc_def_token1] = ACTIONS(1984), - [aux_sym_preproc_if_token1] = ACTIONS(1982), - [aux_sym_preproc_if_token2] = ACTIONS(1982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1982), - [anon_sym_LPAREN2] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_TILDE] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_PLUS] = ACTIONS(1982), - [anon_sym_STAR] = ACTIONS(1984), - [anon_sym_CARET] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_typedef] = ACTIONS(1982), - [anon_sym_extern] = ACTIONS(1982), - [anon_sym___attribute] = ACTIONS(1982), - [anon_sym___attribute__] = ACTIONS(1982), - [anon_sym___declspec] = ACTIONS(1982), - [anon_sym___cdecl] = ACTIONS(1982), - [anon_sym___clrcall] = ACTIONS(1982), - [anon_sym___stdcall] = ACTIONS(1982), - [anon_sym___fastcall] = ACTIONS(1982), - [anon_sym___thiscall] = ACTIONS(1982), - [anon_sym___vectorcall] = ACTIONS(1982), - [anon_sym_LBRACE] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1982), - [anon_sym_auto] = ACTIONS(1982), - [anon_sym_register] = ACTIONS(1982), - [anon_sym_inline] = ACTIONS(1982), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1982), - [anon_sym_const] = ACTIONS(1982), - [anon_sym_volatile] = ACTIONS(1982), - [anon_sym_restrict] = ACTIONS(1982), - [anon_sym__Atomic] = ACTIONS(1982), - [anon_sym_in] = ACTIONS(1982), - [anon_sym_out] = ACTIONS(1982), - [anon_sym_inout] = ACTIONS(1982), - [anon_sym_bycopy] = ACTIONS(1982), - [anon_sym_byref] = ACTIONS(1982), - [anon_sym_oneway] = ACTIONS(1982), - [anon_sym__Nullable] = ACTIONS(1982), - [anon_sym__Nonnull] = ACTIONS(1982), - [anon_sym__Nullable_result] = ACTIONS(1982), - [anon_sym__Null_unspecified] = ACTIONS(1982), - [anon_sym___autoreleasing] = ACTIONS(1982), - [anon_sym___nullable] = ACTIONS(1982), - [anon_sym___nonnull] = ACTIONS(1982), - [anon_sym___strong] = ACTIONS(1982), - [anon_sym___weak] = ACTIONS(1982), - [anon_sym___bridge] = ACTIONS(1982), - [anon_sym___bridge_transfer] = ACTIONS(1982), - [anon_sym___bridge_retained] = ACTIONS(1982), - [anon_sym___unsafe_unretained] = ACTIONS(1982), - [anon_sym___block] = ACTIONS(1982), - [anon_sym___kindof] = ACTIONS(1982), - [anon_sym___unused] = ACTIONS(1982), - [anon_sym__Complex] = ACTIONS(1982), - [anon_sym___complex] = ACTIONS(1982), - [anon_sym_IBOutlet] = ACTIONS(1982), - [anon_sym_IBInspectable] = ACTIONS(1982), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1982), - [anon_sym_signed] = ACTIONS(1982), - [anon_sym_unsigned] = ACTIONS(1982), - [anon_sym_long] = ACTIONS(1982), - [anon_sym_short] = ACTIONS(1982), - [sym_primitive_type] = ACTIONS(1982), - [anon_sym_enum] = ACTIONS(1982), - [anon_sym_NS_ENUM] = ACTIONS(1982), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1982), - [anon_sym_NS_OPTIONS] = ACTIONS(1982), - [anon_sym_struct] = ACTIONS(1982), - [anon_sym_union] = ACTIONS(1982), - [anon_sym_if] = ACTIONS(1982), - [anon_sym_switch] = ACTIONS(1982), - [anon_sym_case] = ACTIONS(1982), - [anon_sym_default] = ACTIONS(1982), - [anon_sym_while] = ACTIONS(1982), - [anon_sym_do] = ACTIONS(1982), - [anon_sym_for] = ACTIONS(1982), - [anon_sym_return] = ACTIONS(1982), - [anon_sym_break] = ACTIONS(1982), - [anon_sym_continue] = ACTIONS(1982), - [anon_sym_goto] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1984), - [anon_sym_sizeof] = ACTIONS(1982), - [sym_number_literal] = ACTIONS(1984), - [anon_sym_L_SQUOTE] = ACTIONS(1984), - [anon_sym_u_SQUOTE] = ACTIONS(1984), - [anon_sym_U_SQUOTE] = ACTIONS(1984), - [anon_sym_u8_SQUOTE] = ACTIONS(1984), - [anon_sym_SQUOTE] = ACTIONS(1984), - [anon_sym_L_DQUOTE] = ACTIONS(1984), - [anon_sym_u_DQUOTE] = ACTIONS(1984), - [anon_sym_U_DQUOTE] = ACTIONS(1984), - [anon_sym_u8_DQUOTE] = ACTIONS(1984), - [anon_sym_DQUOTE] = ACTIONS(1984), - [sym_true] = ACTIONS(1982), - [sym_false] = ACTIONS(1982), - [sym_null] = ACTIONS(1982), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1984), - [anon_sym_ATimport] = ACTIONS(1984), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1982), - [anon_sym_ATcompatibility_alias] = ACTIONS(1984), - [anon_sym_ATprotocol] = ACTIONS(1984), - [anon_sym_ATclass] = ACTIONS(1984), - [anon_sym_ATinterface] = ACTIONS(1984), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1982), - [sym_method_attribute_specifier] = ACTIONS(1982), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1982), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1982), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1982), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1982), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1982), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1982), - [anon_sym_NS_AVAILABLE] = ACTIONS(1982), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1982), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1982), - [anon_sym_API_AVAILABLE] = ACTIONS(1982), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1982), - [anon_sym_API_DEPRECATED] = ACTIONS(1982), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1982), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1982), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1982), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1982), - [anon_sym___deprecated_msg] = ACTIONS(1982), - [anon_sym___deprecated_enum_msg] = ACTIONS(1982), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1982), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1982), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1982), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1982), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1982), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1982), - [anon_sym_ATimplementation] = ACTIONS(1984), - [anon_sym_typeof] = ACTIONS(1982), - [anon_sym___typeof] = ACTIONS(1982), - [anon_sym___typeof__] = ACTIONS(1982), - [sym_self] = ACTIONS(1982), - [sym_super] = ACTIONS(1982), - [sym_nil] = ACTIONS(1982), - [sym_id] = ACTIONS(1982), - [sym_instancetype] = ACTIONS(1982), - [sym_Class] = ACTIONS(1982), - [sym_SEL] = ACTIONS(1982), - [sym_IMP] = ACTIONS(1982), - [sym_BOOL] = ACTIONS(1982), - [sym_auto] = ACTIONS(1982), - [anon_sym_ATautoreleasepool] = ACTIONS(1984), - [anon_sym_ATsynchronized] = ACTIONS(1984), - [anon_sym_ATtry] = ACTIONS(1984), - [anon_sym_ATthrow] = ACTIONS(1984), - [anon_sym_ATselector] = ACTIONS(1984), - [anon_sym_ATencode] = ACTIONS(1984), - [anon_sym_AT] = ACTIONS(1982), - [sym_YES] = ACTIONS(1982), - [sym_NO] = ACTIONS(1982), - [anon_sym___builtin_available] = ACTIONS(1982), - [anon_sym_ATavailable] = ACTIONS(1984), - [anon_sym_va_arg] = ACTIONS(1982), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1340] = { - [sym_identifier] = ACTIONS(1822), - [aux_sym_preproc_include_token1] = ACTIONS(1824), - [aux_sym_preproc_def_token1] = ACTIONS(1824), - [aux_sym_preproc_if_token1] = ACTIONS(1822), - [aux_sym_preproc_if_token2] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1822), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym___attribute] = ACTIONS(1822), - [anon_sym___attribute__] = ACTIONS(1822), - [anon_sym___declspec] = ACTIONS(1822), - [anon_sym___cdecl] = ACTIONS(1822), - [anon_sym___clrcall] = ACTIONS(1822), - [anon_sym___stdcall] = ACTIONS(1822), - [anon_sym___fastcall] = ACTIONS(1822), - [anon_sym___thiscall] = ACTIONS(1822), - [anon_sym___vectorcall] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [anon_sym__Atomic] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_out] = ACTIONS(1822), - [anon_sym_inout] = ACTIONS(1822), - [anon_sym_bycopy] = ACTIONS(1822), - [anon_sym_byref] = ACTIONS(1822), - [anon_sym_oneway] = ACTIONS(1822), - [anon_sym__Nullable] = ACTIONS(1822), - [anon_sym__Nonnull] = ACTIONS(1822), - [anon_sym__Nullable_result] = ACTIONS(1822), - [anon_sym__Null_unspecified] = ACTIONS(1822), - [anon_sym___autoreleasing] = ACTIONS(1822), - [anon_sym___nullable] = ACTIONS(1822), - [anon_sym___nonnull] = ACTIONS(1822), - [anon_sym___strong] = ACTIONS(1822), - [anon_sym___weak] = ACTIONS(1822), - [anon_sym___bridge] = ACTIONS(1822), - [anon_sym___bridge_transfer] = ACTIONS(1822), - [anon_sym___bridge_retained] = ACTIONS(1822), - [anon_sym___unsafe_unretained] = ACTIONS(1822), - [anon_sym___block] = ACTIONS(1822), - [anon_sym___kindof] = ACTIONS(1822), - [anon_sym___unused] = ACTIONS(1822), - [anon_sym__Complex] = ACTIONS(1822), - [anon_sym___complex] = ACTIONS(1822), - [anon_sym_IBOutlet] = ACTIONS(1822), - [anon_sym_IBInspectable] = ACTIONS(1822), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_NS_ENUM] = ACTIONS(1822), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1822), - [anon_sym_NS_OPTIONS] = ACTIONS(1822), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_case] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_goto] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1822), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_L_SQUOTE] = ACTIONS(1824), - [anon_sym_u_SQUOTE] = ACTIONS(1824), - [anon_sym_U_SQUOTE] = ACTIONS(1824), - [anon_sym_u8_SQUOTE] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_L_DQUOTE] = ACTIONS(1824), - [anon_sym_u_DQUOTE] = ACTIONS(1824), - [anon_sym_U_DQUOTE] = ACTIONS(1824), - [anon_sym_u8_DQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym_true] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1824), - [anon_sym_ATimport] = ACTIONS(1824), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1822), - [anon_sym_ATcompatibility_alias] = ACTIONS(1824), - [anon_sym_ATprotocol] = ACTIONS(1824), - [anon_sym_ATclass] = ACTIONS(1824), - [anon_sym_ATinterface] = ACTIONS(1824), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1822), - [sym_method_attribute_specifier] = ACTIONS(1822), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1822), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE] = ACTIONS(1822), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_API_AVAILABLE] = ACTIONS(1822), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_API_DEPRECATED] = ACTIONS(1822), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1822), - [anon_sym___deprecated_msg] = ACTIONS(1822), - [anon_sym___deprecated_enum_msg] = ACTIONS(1822), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1822), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1822), - [anon_sym_ATimplementation] = ACTIONS(1824), - [anon_sym_typeof] = ACTIONS(1822), - [anon_sym___typeof] = ACTIONS(1822), - [anon_sym___typeof__] = ACTIONS(1822), - [sym_self] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_nil] = ACTIONS(1822), - [sym_id] = ACTIONS(1822), - [sym_instancetype] = ACTIONS(1822), - [sym_Class] = ACTIONS(1822), - [sym_SEL] = ACTIONS(1822), - [sym_IMP] = ACTIONS(1822), - [sym_BOOL] = ACTIONS(1822), - [sym_auto] = ACTIONS(1822), - [anon_sym_ATautoreleasepool] = ACTIONS(1824), - [anon_sym_ATsynchronized] = ACTIONS(1824), - [anon_sym_ATtry] = ACTIONS(1824), - [anon_sym_ATthrow] = ACTIONS(1824), - [anon_sym_ATselector] = ACTIONS(1824), - [anon_sym_ATencode] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1822), - [sym_YES] = ACTIONS(1822), - [sym_NO] = ACTIONS(1822), - [anon_sym___builtin_available] = ACTIONS(1822), - [anon_sym_ATavailable] = ACTIONS(1824), - [anon_sym_va_arg] = ACTIONS(1822), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1341] = { - [sym_identifier] = ACTIONS(1822), - [aux_sym_preproc_include_token1] = ACTIONS(1824), - [aux_sym_preproc_def_token1] = ACTIONS(1824), - [aux_sym_preproc_if_token1] = ACTIONS(1822), - [aux_sym_preproc_if_token2] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1822), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym___attribute] = ACTIONS(1822), - [anon_sym___attribute__] = ACTIONS(1822), - [anon_sym___declspec] = ACTIONS(1822), - [anon_sym___cdecl] = ACTIONS(1822), - [anon_sym___clrcall] = ACTIONS(1822), - [anon_sym___stdcall] = ACTIONS(1822), - [anon_sym___fastcall] = ACTIONS(1822), - [anon_sym___thiscall] = ACTIONS(1822), - [anon_sym___vectorcall] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [anon_sym__Atomic] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_out] = ACTIONS(1822), - [anon_sym_inout] = ACTIONS(1822), - [anon_sym_bycopy] = ACTIONS(1822), - [anon_sym_byref] = ACTIONS(1822), - [anon_sym_oneway] = ACTIONS(1822), - [anon_sym__Nullable] = ACTIONS(1822), - [anon_sym__Nonnull] = ACTIONS(1822), - [anon_sym__Nullable_result] = ACTIONS(1822), - [anon_sym__Null_unspecified] = ACTIONS(1822), - [anon_sym___autoreleasing] = ACTIONS(1822), - [anon_sym___nullable] = ACTIONS(1822), - [anon_sym___nonnull] = ACTIONS(1822), - [anon_sym___strong] = ACTIONS(1822), - [anon_sym___weak] = ACTIONS(1822), - [anon_sym___bridge] = ACTIONS(1822), - [anon_sym___bridge_transfer] = ACTIONS(1822), - [anon_sym___bridge_retained] = ACTIONS(1822), - [anon_sym___unsafe_unretained] = ACTIONS(1822), - [anon_sym___block] = ACTIONS(1822), - [anon_sym___kindof] = ACTIONS(1822), - [anon_sym___unused] = ACTIONS(1822), - [anon_sym__Complex] = ACTIONS(1822), - [anon_sym___complex] = ACTIONS(1822), - [anon_sym_IBOutlet] = ACTIONS(1822), - [anon_sym_IBInspectable] = ACTIONS(1822), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_NS_ENUM] = ACTIONS(1822), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1822), - [anon_sym_NS_OPTIONS] = ACTIONS(1822), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_case] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_goto] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1822), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_L_SQUOTE] = ACTIONS(1824), - [anon_sym_u_SQUOTE] = ACTIONS(1824), - [anon_sym_U_SQUOTE] = ACTIONS(1824), - [anon_sym_u8_SQUOTE] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_L_DQUOTE] = ACTIONS(1824), - [anon_sym_u_DQUOTE] = ACTIONS(1824), - [anon_sym_U_DQUOTE] = ACTIONS(1824), - [anon_sym_u8_DQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym_true] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1824), - [anon_sym_ATimport] = ACTIONS(1824), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1822), - [anon_sym_ATcompatibility_alias] = ACTIONS(1824), - [anon_sym_ATprotocol] = ACTIONS(1824), - [anon_sym_ATclass] = ACTIONS(1824), - [anon_sym_ATinterface] = ACTIONS(1824), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1822), - [sym_method_attribute_specifier] = ACTIONS(1822), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1822), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE] = ACTIONS(1822), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_API_AVAILABLE] = ACTIONS(1822), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_API_DEPRECATED] = ACTIONS(1822), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1822), - [anon_sym___deprecated_msg] = ACTIONS(1822), - [anon_sym___deprecated_enum_msg] = ACTIONS(1822), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1822), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1822), - [anon_sym_ATimplementation] = ACTIONS(1824), - [anon_sym_typeof] = ACTIONS(1822), - [anon_sym___typeof] = ACTIONS(1822), - [anon_sym___typeof__] = ACTIONS(1822), - [sym_self] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_nil] = ACTIONS(1822), - [sym_id] = ACTIONS(1822), - [sym_instancetype] = ACTIONS(1822), - [sym_Class] = ACTIONS(1822), - [sym_SEL] = ACTIONS(1822), - [sym_IMP] = ACTIONS(1822), - [sym_BOOL] = ACTIONS(1822), - [sym_auto] = ACTIONS(1822), - [anon_sym_ATautoreleasepool] = ACTIONS(1824), - [anon_sym_ATsynchronized] = ACTIONS(1824), - [anon_sym_ATtry] = ACTIONS(1824), - [anon_sym_ATthrow] = ACTIONS(1824), - [anon_sym_ATselector] = ACTIONS(1824), - [anon_sym_ATencode] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1822), - [sym_YES] = ACTIONS(1822), - [sym_NO] = ACTIONS(1822), - [anon_sym___builtin_available] = ACTIONS(1822), - [anon_sym_ATavailable] = ACTIONS(1824), - [anon_sym_va_arg] = ACTIONS(1822), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1342] = { - [sym_identifier] = ACTIONS(1822), - [aux_sym_preproc_include_token1] = ACTIONS(1824), - [aux_sym_preproc_def_token1] = ACTIONS(1824), - [aux_sym_preproc_if_token1] = ACTIONS(1822), - [aux_sym_preproc_if_token2] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1822), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym___attribute] = ACTIONS(1822), - [anon_sym___attribute__] = ACTIONS(1822), - [anon_sym___declspec] = ACTIONS(1822), - [anon_sym___cdecl] = ACTIONS(1822), - [anon_sym___clrcall] = ACTIONS(1822), - [anon_sym___stdcall] = ACTIONS(1822), - [anon_sym___fastcall] = ACTIONS(1822), - [anon_sym___thiscall] = ACTIONS(1822), - [anon_sym___vectorcall] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [anon_sym__Atomic] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_out] = ACTIONS(1822), - [anon_sym_inout] = ACTIONS(1822), - [anon_sym_bycopy] = ACTIONS(1822), - [anon_sym_byref] = ACTIONS(1822), - [anon_sym_oneway] = ACTIONS(1822), - [anon_sym__Nullable] = ACTIONS(1822), - [anon_sym__Nonnull] = ACTIONS(1822), - [anon_sym__Nullable_result] = ACTIONS(1822), - [anon_sym__Null_unspecified] = ACTIONS(1822), - [anon_sym___autoreleasing] = ACTIONS(1822), - [anon_sym___nullable] = ACTIONS(1822), - [anon_sym___nonnull] = ACTIONS(1822), - [anon_sym___strong] = ACTIONS(1822), - [anon_sym___weak] = ACTIONS(1822), - [anon_sym___bridge] = ACTIONS(1822), - [anon_sym___bridge_transfer] = ACTIONS(1822), - [anon_sym___bridge_retained] = ACTIONS(1822), - [anon_sym___unsafe_unretained] = ACTIONS(1822), - [anon_sym___block] = ACTIONS(1822), - [anon_sym___kindof] = ACTIONS(1822), - [anon_sym___unused] = ACTIONS(1822), - [anon_sym__Complex] = ACTIONS(1822), - [anon_sym___complex] = ACTIONS(1822), - [anon_sym_IBOutlet] = ACTIONS(1822), - [anon_sym_IBInspectable] = ACTIONS(1822), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_NS_ENUM] = ACTIONS(1822), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1822), - [anon_sym_NS_OPTIONS] = ACTIONS(1822), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_case] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_goto] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1822), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_L_SQUOTE] = ACTIONS(1824), - [anon_sym_u_SQUOTE] = ACTIONS(1824), - [anon_sym_U_SQUOTE] = ACTIONS(1824), - [anon_sym_u8_SQUOTE] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_L_DQUOTE] = ACTIONS(1824), - [anon_sym_u_DQUOTE] = ACTIONS(1824), - [anon_sym_U_DQUOTE] = ACTIONS(1824), - [anon_sym_u8_DQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym_true] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1824), - [anon_sym_ATimport] = ACTIONS(1824), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1822), - [anon_sym_ATcompatibility_alias] = ACTIONS(1824), - [anon_sym_ATprotocol] = ACTIONS(1824), - [anon_sym_ATclass] = ACTIONS(1824), - [anon_sym_ATinterface] = ACTIONS(1824), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1822), - [sym_method_attribute_specifier] = ACTIONS(1822), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1822), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE] = ACTIONS(1822), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_API_AVAILABLE] = ACTIONS(1822), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_API_DEPRECATED] = ACTIONS(1822), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1822), - [anon_sym___deprecated_msg] = ACTIONS(1822), - [anon_sym___deprecated_enum_msg] = ACTIONS(1822), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1822), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1822), - [anon_sym_ATimplementation] = ACTIONS(1824), - [anon_sym_typeof] = ACTIONS(1822), - [anon_sym___typeof] = ACTIONS(1822), - [anon_sym___typeof__] = ACTIONS(1822), - [sym_self] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_nil] = ACTIONS(1822), - [sym_id] = ACTIONS(1822), - [sym_instancetype] = ACTIONS(1822), - [sym_Class] = ACTIONS(1822), - [sym_SEL] = ACTIONS(1822), - [sym_IMP] = ACTIONS(1822), - [sym_BOOL] = ACTIONS(1822), - [sym_auto] = ACTIONS(1822), - [anon_sym_ATautoreleasepool] = ACTIONS(1824), - [anon_sym_ATsynchronized] = ACTIONS(1824), - [anon_sym_ATtry] = ACTIONS(1824), - [anon_sym_ATthrow] = ACTIONS(1824), - [anon_sym_ATselector] = ACTIONS(1824), - [anon_sym_ATencode] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1822), - [sym_YES] = ACTIONS(1822), - [sym_NO] = ACTIONS(1822), - [anon_sym___builtin_available] = ACTIONS(1822), - [anon_sym_ATavailable] = ACTIONS(1824), - [anon_sym_va_arg] = ACTIONS(1822), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1343] = { - [sym_identifier] = ACTIONS(1794), - [aux_sym_preproc_include_token1] = ACTIONS(1796), - [aux_sym_preproc_def_token1] = ACTIONS(1796), - [aux_sym_preproc_if_token1] = ACTIONS(1794), - [aux_sym_preproc_if_token2] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1794), - [anon_sym_LPAREN2] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1794), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym___attribute] = ACTIONS(1794), - [anon_sym___attribute__] = ACTIONS(1794), - [anon_sym___declspec] = ACTIONS(1794), - [anon_sym___cdecl] = ACTIONS(1794), - [anon_sym___clrcall] = ACTIONS(1794), - [anon_sym___stdcall] = ACTIONS(1794), - [anon_sym___fastcall] = ACTIONS(1794), - [anon_sym___thiscall] = ACTIONS(1794), - [anon_sym___vectorcall] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_auto] = ACTIONS(1794), - [anon_sym_register] = ACTIONS(1794), - [anon_sym_inline] = ACTIONS(1794), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_volatile] = ACTIONS(1794), - [anon_sym_restrict] = ACTIONS(1794), - [anon_sym__Atomic] = ACTIONS(1794), - [anon_sym_in] = ACTIONS(1794), - [anon_sym_out] = ACTIONS(1794), - [anon_sym_inout] = ACTIONS(1794), - [anon_sym_bycopy] = ACTIONS(1794), - [anon_sym_byref] = ACTIONS(1794), - [anon_sym_oneway] = ACTIONS(1794), - [anon_sym__Nullable] = ACTIONS(1794), - [anon_sym__Nonnull] = ACTIONS(1794), - [anon_sym__Nullable_result] = ACTIONS(1794), - [anon_sym__Null_unspecified] = ACTIONS(1794), - [anon_sym___autoreleasing] = ACTIONS(1794), - [anon_sym___nullable] = ACTIONS(1794), - [anon_sym___nonnull] = ACTIONS(1794), - [anon_sym___strong] = ACTIONS(1794), - [anon_sym___weak] = ACTIONS(1794), - [anon_sym___bridge] = ACTIONS(1794), - [anon_sym___bridge_transfer] = ACTIONS(1794), - [anon_sym___bridge_retained] = ACTIONS(1794), - [anon_sym___unsafe_unretained] = ACTIONS(1794), - [anon_sym___block] = ACTIONS(1794), - [anon_sym___kindof] = ACTIONS(1794), - [anon_sym___unused] = ACTIONS(1794), - [anon_sym__Complex] = ACTIONS(1794), - [anon_sym___complex] = ACTIONS(1794), - [anon_sym_IBOutlet] = ACTIONS(1794), - [anon_sym_IBInspectable] = ACTIONS(1794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1794), - [anon_sym_signed] = ACTIONS(1794), - [anon_sym_unsigned] = ACTIONS(1794), - [anon_sym_long] = ACTIONS(1794), - [anon_sym_short] = ACTIONS(1794), - [sym_primitive_type] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_NS_ENUM] = ACTIONS(1794), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1794), - [anon_sym_NS_OPTIONS] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_do] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_goto] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1794), - [sym_number_literal] = ACTIONS(1796), - [anon_sym_L_SQUOTE] = ACTIONS(1796), - [anon_sym_u_SQUOTE] = ACTIONS(1796), - [anon_sym_U_SQUOTE] = ACTIONS(1796), - [anon_sym_u8_SQUOTE] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1796), - [anon_sym_L_DQUOTE] = ACTIONS(1796), - [anon_sym_u_DQUOTE] = ACTIONS(1796), - [anon_sym_U_DQUOTE] = ACTIONS(1796), - [anon_sym_u8_DQUOTE] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym_true] = ACTIONS(1794), - [sym_false] = ACTIONS(1794), - [sym_null] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1796), - [anon_sym_ATimport] = ACTIONS(1796), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1794), - [anon_sym_ATcompatibility_alias] = ACTIONS(1796), - [anon_sym_ATprotocol] = ACTIONS(1796), - [anon_sym_ATclass] = ACTIONS(1796), - [anon_sym_ATinterface] = ACTIONS(1796), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1794), - [sym_method_attribute_specifier] = ACTIONS(1794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE] = ACTIONS(1794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_API_AVAILABLE] = ACTIONS(1794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_API_DEPRECATED] = ACTIONS(1794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1794), - [anon_sym___deprecated_msg] = ACTIONS(1794), - [anon_sym___deprecated_enum_msg] = ACTIONS(1794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1794), - [anon_sym_ATimplementation] = ACTIONS(1796), - [anon_sym_typeof] = ACTIONS(1794), - [anon_sym___typeof] = ACTIONS(1794), - [anon_sym___typeof__] = ACTIONS(1794), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_nil] = ACTIONS(1794), - [sym_id] = ACTIONS(1794), - [sym_instancetype] = ACTIONS(1794), - [sym_Class] = ACTIONS(1794), - [sym_SEL] = ACTIONS(1794), - [sym_IMP] = ACTIONS(1794), - [sym_BOOL] = ACTIONS(1794), - [sym_auto] = ACTIONS(1794), - [anon_sym_ATautoreleasepool] = ACTIONS(1796), - [anon_sym_ATsynchronized] = ACTIONS(1796), - [anon_sym_ATtry] = ACTIONS(1796), - [anon_sym_ATthrow] = ACTIONS(1796), - [anon_sym_ATselector] = ACTIONS(1796), - [anon_sym_ATencode] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1794), - [sym_YES] = ACTIONS(1794), - [sym_NO] = ACTIONS(1794), - [anon_sym___builtin_available] = ACTIONS(1794), - [anon_sym_ATavailable] = ACTIONS(1796), - [anon_sym_va_arg] = ACTIONS(1794), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1344] = { - [sym_identifier] = ACTIONS(1834), - [aux_sym_preproc_include_token1] = ACTIONS(1836), - [aux_sym_preproc_def_token1] = ACTIONS(1836), - [aux_sym_preproc_if_token1] = ACTIONS(1834), - [aux_sym_preproc_if_token2] = ACTIONS(1834), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1834), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1834), - [anon_sym_LPAREN2] = ACTIONS(1836), - [anon_sym_BANG] = ACTIONS(1836), - [anon_sym_TILDE] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1836), - [anon_sym_CARET] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1836), - [anon_sym_typedef] = ACTIONS(1834), - [anon_sym_extern] = ACTIONS(1834), - [anon_sym___attribute] = ACTIONS(1834), - [anon_sym___attribute__] = ACTIONS(1834), - [anon_sym___declspec] = ACTIONS(1834), - [anon_sym___cdecl] = ACTIONS(1834), - [anon_sym___clrcall] = ACTIONS(1834), - [anon_sym___stdcall] = ACTIONS(1834), - [anon_sym___fastcall] = ACTIONS(1834), - [anon_sym___thiscall] = ACTIONS(1834), - [anon_sym___vectorcall] = ACTIONS(1834), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LBRACK] = ACTIONS(1836), - [anon_sym_static] = ACTIONS(1834), - [anon_sym_auto] = ACTIONS(1834), - [anon_sym_register] = ACTIONS(1834), - [anon_sym_inline] = ACTIONS(1834), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1834), - [anon_sym_const] = ACTIONS(1834), - [anon_sym_volatile] = ACTIONS(1834), - [anon_sym_restrict] = ACTIONS(1834), - [anon_sym__Atomic] = ACTIONS(1834), - [anon_sym_in] = ACTIONS(1834), - [anon_sym_out] = ACTIONS(1834), - [anon_sym_inout] = ACTIONS(1834), - [anon_sym_bycopy] = ACTIONS(1834), - [anon_sym_byref] = ACTIONS(1834), - [anon_sym_oneway] = ACTIONS(1834), - [anon_sym__Nullable] = ACTIONS(1834), - [anon_sym__Nonnull] = ACTIONS(1834), - [anon_sym__Nullable_result] = ACTIONS(1834), - [anon_sym__Null_unspecified] = ACTIONS(1834), - [anon_sym___autoreleasing] = ACTIONS(1834), - [anon_sym___nullable] = ACTIONS(1834), - [anon_sym___nonnull] = ACTIONS(1834), - [anon_sym___strong] = ACTIONS(1834), - [anon_sym___weak] = ACTIONS(1834), - [anon_sym___bridge] = ACTIONS(1834), - [anon_sym___bridge_transfer] = ACTIONS(1834), - [anon_sym___bridge_retained] = ACTIONS(1834), - [anon_sym___unsafe_unretained] = ACTIONS(1834), - [anon_sym___block] = ACTIONS(1834), - [anon_sym___kindof] = ACTIONS(1834), - [anon_sym___unused] = ACTIONS(1834), - [anon_sym__Complex] = ACTIONS(1834), - [anon_sym___complex] = ACTIONS(1834), - [anon_sym_IBOutlet] = ACTIONS(1834), - [anon_sym_IBInspectable] = ACTIONS(1834), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1834), - [anon_sym_signed] = ACTIONS(1834), - [anon_sym_unsigned] = ACTIONS(1834), - [anon_sym_long] = ACTIONS(1834), - [anon_sym_short] = ACTIONS(1834), - [sym_primitive_type] = ACTIONS(1834), - [anon_sym_enum] = ACTIONS(1834), - [anon_sym_NS_ENUM] = ACTIONS(1834), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1834), - [anon_sym_NS_OPTIONS] = ACTIONS(1834), - [anon_sym_struct] = ACTIONS(1834), - [anon_sym_union] = ACTIONS(1834), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_switch] = ACTIONS(1834), - [anon_sym_case] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1834), - [anon_sym_while] = ACTIONS(1834), - [anon_sym_do] = ACTIONS(1834), - [anon_sym_for] = ACTIONS(1834), - [anon_sym_return] = ACTIONS(1834), - [anon_sym_break] = ACTIONS(1834), - [anon_sym_continue] = ACTIONS(1834), - [anon_sym_goto] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1834), - [sym_number_literal] = ACTIONS(1836), - [anon_sym_L_SQUOTE] = ACTIONS(1836), - [anon_sym_u_SQUOTE] = ACTIONS(1836), - [anon_sym_U_SQUOTE] = ACTIONS(1836), - [anon_sym_u8_SQUOTE] = ACTIONS(1836), - [anon_sym_SQUOTE] = ACTIONS(1836), - [anon_sym_L_DQUOTE] = ACTIONS(1836), - [anon_sym_u_DQUOTE] = ACTIONS(1836), - [anon_sym_U_DQUOTE] = ACTIONS(1836), - [anon_sym_u8_DQUOTE] = ACTIONS(1836), - [anon_sym_DQUOTE] = ACTIONS(1836), - [sym_true] = ACTIONS(1834), - [sym_false] = ACTIONS(1834), - [sym_null] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1836), - [anon_sym_ATimport] = ACTIONS(1836), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1834), - [anon_sym_ATcompatibility_alias] = ACTIONS(1836), - [anon_sym_ATprotocol] = ACTIONS(1836), - [anon_sym_ATclass] = ACTIONS(1836), - [anon_sym_ATinterface] = ACTIONS(1836), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1834), - [sym_method_attribute_specifier] = ACTIONS(1834), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1834), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1834), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1834), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1834), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1834), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1834), - [anon_sym_NS_AVAILABLE] = ACTIONS(1834), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1834), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1834), - [anon_sym_API_AVAILABLE] = ACTIONS(1834), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1834), - [anon_sym_API_DEPRECATED] = ACTIONS(1834), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1834), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1834), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1834), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1834), - [anon_sym___deprecated_msg] = ACTIONS(1834), - [anon_sym___deprecated_enum_msg] = ACTIONS(1834), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1834), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1834), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1834), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1834), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1834), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1834), - [anon_sym_ATimplementation] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1834), - [anon_sym___typeof] = ACTIONS(1834), - [anon_sym___typeof__] = ACTIONS(1834), - [sym_self] = ACTIONS(1834), - [sym_super] = ACTIONS(1834), - [sym_nil] = ACTIONS(1834), - [sym_id] = ACTIONS(1834), - [sym_instancetype] = ACTIONS(1834), - [sym_Class] = ACTIONS(1834), - [sym_SEL] = ACTIONS(1834), - [sym_IMP] = ACTIONS(1834), - [sym_BOOL] = ACTIONS(1834), - [sym_auto] = ACTIONS(1834), - [anon_sym_ATautoreleasepool] = ACTIONS(1836), - [anon_sym_ATsynchronized] = ACTIONS(1836), - [anon_sym_ATtry] = ACTIONS(1836), - [anon_sym_ATthrow] = ACTIONS(1836), - [anon_sym_ATselector] = ACTIONS(1836), - [anon_sym_ATencode] = ACTIONS(1836), - [anon_sym_AT] = ACTIONS(1834), - [sym_YES] = ACTIONS(1834), - [sym_NO] = ACTIONS(1834), - [anon_sym___builtin_available] = ACTIONS(1834), - [anon_sym_ATavailable] = ACTIONS(1836), - [anon_sym_va_arg] = ACTIONS(1834), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1345] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1346] = { - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_include_token1] = ACTIONS(1948), - [aux_sym_preproc_def_token1] = ACTIONS(1948), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym___cdecl] = ACTIONS(1946), - [anon_sym___clrcall] = ACTIONS(1946), - [anon_sym___stdcall] = ACTIONS(1946), - [anon_sym___fastcall] = ACTIONS(1946), - [anon_sym___thiscall] = ACTIONS(1946), - [anon_sym___vectorcall] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_out] = ACTIONS(1946), - [anon_sym_inout] = ACTIONS(1946), - [anon_sym_bycopy] = ACTIONS(1946), - [anon_sym_byref] = ACTIONS(1946), - [anon_sym_oneway] = ACTIONS(1946), - [anon_sym__Nullable] = ACTIONS(1946), - [anon_sym__Nonnull] = ACTIONS(1946), - [anon_sym__Nullable_result] = ACTIONS(1946), - [anon_sym__Null_unspecified] = ACTIONS(1946), - [anon_sym___autoreleasing] = ACTIONS(1946), - [anon_sym___nullable] = ACTIONS(1946), - [anon_sym___nonnull] = ACTIONS(1946), - [anon_sym___strong] = ACTIONS(1946), - [anon_sym___weak] = ACTIONS(1946), - [anon_sym___bridge] = ACTIONS(1946), - [anon_sym___bridge_transfer] = ACTIONS(1946), - [anon_sym___bridge_retained] = ACTIONS(1946), - [anon_sym___unsafe_unretained] = ACTIONS(1946), - [anon_sym___block] = ACTIONS(1946), - [anon_sym___kindof] = ACTIONS(1946), - [anon_sym___unused] = ACTIONS(1946), - [anon_sym__Complex] = ACTIONS(1946), - [anon_sym___complex] = ACTIONS(1946), - [anon_sym_IBOutlet] = ACTIONS(1946), - [anon_sym_IBInspectable] = ACTIONS(1946), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1946), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_NS_ENUM] = ACTIONS(1946), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1946), - [anon_sym_NS_OPTIONS] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_goto] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1948), - [anon_sym_sizeof] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(1948), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1948), - [anon_sym_u_DQUOTE] = ACTIONS(1948), - [anon_sym_U_DQUOTE] = ACTIONS(1948), - [anon_sym_u8_DQUOTE] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym_true] = ACTIONS(1946), - [sym_false] = ACTIONS(1946), - [sym_null] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1948), - [anon_sym_ATimport] = ACTIONS(1948), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1946), - [anon_sym_ATcompatibility_alias] = ACTIONS(1948), - [anon_sym_ATprotocol] = ACTIONS(1948), - [anon_sym_ATclass] = ACTIONS(1948), - [anon_sym_ATinterface] = ACTIONS(1948), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1946), - [sym_method_attribute_specifier] = ACTIONS(1946), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1946), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE] = ACTIONS(1946), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_API_AVAILABLE] = ACTIONS(1946), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_API_DEPRECATED] = ACTIONS(1946), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1946), - [anon_sym___deprecated_msg] = ACTIONS(1946), - [anon_sym___deprecated_enum_msg] = ACTIONS(1946), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1946), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1946), - [anon_sym_ATimplementation] = ACTIONS(1948), - [anon_sym_typeof] = ACTIONS(1946), - [anon_sym___typeof] = ACTIONS(1946), - [anon_sym___typeof__] = ACTIONS(1946), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_nil] = ACTIONS(1946), - [sym_id] = ACTIONS(1946), - [sym_instancetype] = ACTIONS(1946), - [sym_Class] = ACTIONS(1946), - [sym_SEL] = ACTIONS(1946), - [sym_IMP] = ACTIONS(1946), - [sym_BOOL] = ACTIONS(1946), - [sym_auto] = ACTIONS(1946), - [anon_sym_ATautoreleasepool] = ACTIONS(1948), - [anon_sym_ATsynchronized] = ACTIONS(1948), - [anon_sym_ATtry] = ACTIONS(1948), - [anon_sym_ATthrow] = ACTIONS(1948), - [anon_sym_ATselector] = ACTIONS(1948), - [anon_sym_ATencode] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [sym_YES] = ACTIONS(1946), - [sym_NO] = ACTIONS(1946), - [anon_sym___builtin_available] = ACTIONS(1946), - [anon_sym_ATavailable] = ACTIONS(1948), - [anon_sym_va_arg] = ACTIONS(1946), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1347] = { - [sym_identifier] = ACTIONS(1826), - [aux_sym_preproc_include_token1] = ACTIONS(1828), - [aux_sym_preproc_def_token1] = ACTIONS(1828), - [aux_sym_preproc_if_token1] = ACTIONS(1826), - [aux_sym_preproc_if_token2] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym___attribute] = ACTIONS(1826), - [anon_sym___attribute__] = ACTIONS(1826), - [anon_sym___declspec] = ACTIONS(1826), - [anon_sym___cdecl] = ACTIONS(1826), - [anon_sym___clrcall] = ACTIONS(1826), - [anon_sym___stdcall] = ACTIONS(1826), - [anon_sym___fastcall] = ACTIONS(1826), - [anon_sym___thiscall] = ACTIONS(1826), - [anon_sym___vectorcall] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_auto] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_volatile] = ACTIONS(1826), - [anon_sym_restrict] = ACTIONS(1826), - [anon_sym__Atomic] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_out] = ACTIONS(1826), - [anon_sym_inout] = ACTIONS(1826), - [anon_sym_bycopy] = ACTIONS(1826), - [anon_sym_byref] = ACTIONS(1826), - [anon_sym_oneway] = ACTIONS(1826), - [anon_sym__Nullable] = ACTIONS(1826), - [anon_sym__Nonnull] = ACTIONS(1826), - [anon_sym__Nullable_result] = ACTIONS(1826), - [anon_sym__Null_unspecified] = ACTIONS(1826), - [anon_sym___autoreleasing] = ACTIONS(1826), - [anon_sym___nullable] = ACTIONS(1826), - [anon_sym___nonnull] = ACTIONS(1826), - [anon_sym___strong] = ACTIONS(1826), - [anon_sym___weak] = ACTIONS(1826), - [anon_sym___bridge] = ACTIONS(1826), - [anon_sym___bridge_transfer] = ACTIONS(1826), - [anon_sym___bridge_retained] = ACTIONS(1826), - [anon_sym___unsafe_unretained] = ACTIONS(1826), - [anon_sym___block] = ACTIONS(1826), - [anon_sym___kindof] = ACTIONS(1826), - [anon_sym___unused] = ACTIONS(1826), - [anon_sym__Complex] = ACTIONS(1826), - [anon_sym___complex] = ACTIONS(1826), - [anon_sym_IBOutlet] = ACTIONS(1826), - [anon_sym_IBInspectable] = ACTIONS(1826), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1826), - [anon_sym_signed] = ACTIONS(1826), - [anon_sym_unsigned] = ACTIONS(1826), - [anon_sym_long] = ACTIONS(1826), - [anon_sym_short] = ACTIONS(1826), - [sym_primitive_type] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_NS_ENUM] = ACTIONS(1826), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1826), - [anon_sym_NS_OPTIONS] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_case] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_goto] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_sizeof] = ACTIONS(1826), - [sym_number_literal] = ACTIONS(1828), - [anon_sym_L_SQUOTE] = ACTIONS(1828), - [anon_sym_u_SQUOTE] = ACTIONS(1828), - [anon_sym_U_SQUOTE] = ACTIONS(1828), - [anon_sym_u8_SQUOTE] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_L_DQUOTE] = ACTIONS(1828), - [anon_sym_u_DQUOTE] = ACTIONS(1828), - [anon_sym_U_DQUOTE] = ACTIONS(1828), - [anon_sym_u8_DQUOTE] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym_true] = ACTIONS(1826), - [sym_false] = ACTIONS(1826), - [sym_null] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1828), - [anon_sym_ATimport] = ACTIONS(1828), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1826), - [anon_sym_ATcompatibility_alias] = ACTIONS(1828), - [anon_sym_ATprotocol] = ACTIONS(1828), - [anon_sym_ATclass] = ACTIONS(1828), - [anon_sym_ATinterface] = ACTIONS(1828), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1826), - [sym_method_attribute_specifier] = ACTIONS(1826), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1826), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE] = ACTIONS(1826), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_API_AVAILABLE] = ACTIONS(1826), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_API_DEPRECATED] = ACTIONS(1826), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1826), - [anon_sym___deprecated_msg] = ACTIONS(1826), - [anon_sym___deprecated_enum_msg] = ACTIONS(1826), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1826), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1826), - [anon_sym_ATimplementation] = ACTIONS(1828), - [anon_sym_typeof] = ACTIONS(1826), - [anon_sym___typeof] = ACTIONS(1826), - [anon_sym___typeof__] = ACTIONS(1826), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_nil] = ACTIONS(1826), - [sym_id] = ACTIONS(1826), - [sym_instancetype] = ACTIONS(1826), - [sym_Class] = ACTIONS(1826), - [sym_SEL] = ACTIONS(1826), - [sym_IMP] = ACTIONS(1826), - [sym_BOOL] = ACTIONS(1826), - [sym_auto] = ACTIONS(1826), - [anon_sym_ATautoreleasepool] = ACTIONS(1828), - [anon_sym_ATsynchronized] = ACTIONS(1828), - [anon_sym_ATtry] = ACTIONS(1828), - [anon_sym_ATthrow] = ACTIONS(1828), - [anon_sym_ATselector] = ACTIONS(1828), - [anon_sym_ATencode] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1826), - [sym_YES] = ACTIONS(1826), - [sym_NO] = ACTIONS(1826), - [anon_sym___builtin_available] = ACTIONS(1826), - [anon_sym_ATavailable] = ACTIONS(1828), - [anon_sym_va_arg] = ACTIONS(1826), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1348] = { - [sym__expression] = STATE(3015), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_initializer_list] = STATE(3048), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2188), - [anon_sym_RPAREN] = ACTIONS(2188), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_SLASH] = ACTIONS(2198), - [anon_sym_PERCENT] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2188), - [anon_sym_AMP_AMP] = ACTIONS(2188), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_CARET] = ACTIONS(2200), - [anon_sym_AMP] = ACTIONS(2196), - [anon_sym_EQ_EQ] = ACTIONS(2188), - [anon_sym_BANG_EQ] = ACTIONS(2188), - [anon_sym_GT] = ACTIONS(2198), - [anon_sym_GT_EQ] = ACTIONS(2188), - [anon_sym_LT_EQ] = ACTIONS(2188), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_LT_LT] = ACTIONS(2198), - [anon_sym_GT_GT] = ACTIONS(2198), - [anon_sym_SEMI] = ACTIONS(2188), - [anon_sym___attribute] = ACTIONS(2198), - [anon_sym___attribute__] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_RBRACE] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2188), - [anon_sym_EQ] = ACTIONS(2198), - [anon_sym_const] = ACTIONS(2198), - [anon_sym_volatile] = ACTIONS(2198), - [anon_sym_restrict] = ACTIONS(2198), - [anon_sym__Atomic] = ACTIONS(2198), - [anon_sym_in] = ACTIONS(2198), - [anon_sym_out] = ACTIONS(2198), - [anon_sym_inout] = ACTIONS(2198), - [anon_sym_bycopy] = ACTIONS(2198), - [anon_sym_byref] = ACTIONS(2198), - [anon_sym_oneway] = ACTIONS(2198), - [anon_sym__Nullable] = ACTIONS(2198), - [anon_sym__Nonnull] = ACTIONS(2198), - [anon_sym__Nullable_result] = ACTIONS(2198), - [anon_sym__Null_unspecified] = ACTIONS(2198), - [anon_sym___autoreleasing] = ACTIONS(2198), - [anon_sym___nullable] = ACTIONS(2198), - [anon_sym___nonnull] = ACTIONS(2198), - [anon_sym___strong] = ACTIONS(2198), - [anon_sym___weak] = ACTIONS(2198), - [anon_sym___bridge] = ACTIONS(2198), - [anon_sym___bridge_transfer] = ACTIONS(2198), - [anon_sym___bridge_retained] = ACTIONS(2198), - [anon_sym___unsafe_unretained] = ACTIONS(2198), - [anon_sym___block] = ACTIONS(2198), - [anon_sym___kindof] = ACTIONS(2198), - [anon_sym___unused] = ACTIONS(2198), - [anon_sym__Complex] = ACTIONS(2198), - [anon_sym___complex] = ACTIONS(2198), - [anon_sym_IBOutlet] = ACTIONS(2198), - [anon_sym_IBInspectable] = ACTIONS(2198), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2198), - [anon_sym_COLON] = ACTIONS(2188), - [anon_sym_QMARK] = ACTIONS(2188), - [anon_sym_STAR_EQ] = ACTIONS(2188), - [anon_sym_SLASH_EQ] = ACTIONS(2188), - [anon_sym_PERCENT_EQ] = ACTIONS(2188), - [anon_sym_PLUS_EQ] = ACTIONS(2188), - [anon_sym_DASH_EQ] = ACTIONS(2188), - [anon_sym_LT_LT_EQ] = ACTIONS(2188), - [anon_sym_GT_GT_EQ] = ACTIONS(2188), - [anon_sym_AMP_EQ] = ACTIONS(2188), - [anon_sym_CARET_EQ] = ACTIONS(2188), - [anon_sym_PIPE_EQ] = ACTIONS(2188), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [anon_sym_DOT] = ACTIONS(2198), - [anon_sym_DASH_GT] = ACTIONS(2188), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_method_attribute_specifier] = ACTIONS(2198), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2198), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2198), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2198), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2198), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2198), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2198), - [anon_sym_NS_AVAILABLE] = ACTIONS(2198), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2198), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2198), - [anon_sym_API_AVAILABLE] = ACTIONS(2198), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2198), - [anon_sym_API_DEPRECATED] = ACTIONS(2198), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2198), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2198), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2198), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2198), - [anon_sym___deprecated_msg] = ACTIONS(2198), - [anon_sym___deprecated_enum_msg] = ACTIONS(2198), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2198), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2198), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2198), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2198), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2198), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2198), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1349] = { - [sym_identifier] = ACTIONS(1826), - [aux_sym_preproc_include_token1] = ACTIONS(1828), - [aux_sym_preproc_def_token1] = ACTIONS(1828), - [aux_sym_preproc_if_token1] = ACTIONS(1826), - [aux_sym_preproc_if_token2] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym___attribute] = ACTIONS(1826), - [anon_sym___attribute__] = ACTIONS(1826), - [anon_sym___declspec] = ACTIONS(1826), - [anon_sym___cdecl] = ACTIONS(1826), - [anon_sym___clrcall] = ACTIONS(1826), - [anon_sym___stdcall] = ACTIONS(1826), - [anon_sym___fastcall] = ACTIONS(1826), - [anon_sym___thiscall] = ACTIONS(1826), - [anon_sym___vectorcall] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_auto] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_volatile] = ACTIONS(1826), - [anon_sym_restrict] = ACTIONS(1826), - [anon_sym__Atomic] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_out] = ACTIONS(1826), - [anon_sym_inout] = ACTIONS(1826), - [anon_sym_bycopy] = ACTIONS(1826), - [anon_sym_byref] = ACTIONS(1826), - [anon_sym_oneway] = ACTIONS(1826), - [anon_sym__Nullable] = ACTIONS(1826), - [anon_sym__Nonnull] = ACTIONS(1826), - [anon_sym__Nullable_result] = ACTIONS(1826), - [anon_sym__Null_unspecified] = ACTIONS(1826), - [anon_sym___autoreleasing] = ACTIONS(1826), - [anon_sym___nullable] = ACTIONS(1826), - [anon_sym___nonnull] = ACTIONS(1826), - [anon_sym___strong] = ACTIONS(1826), - [anon_sym___weak] = ACTIONS(1826), - [anon_sym___bridge] = ACTIONS(1826), - [anon_sym___bridge_transfer] = ACTIONS(1826), - [anon_sym___bridge_retained] = ACTIONS(1826), - [anon_sym___unsafe_unretained] = ACTIONS(1826), - [anon_sym___block] = ACTIONS(1826), - [anon_sym___kindof] = ACTIONS(1826), - [anon_sym___unused] = ACTIONS(1826), - [anon_sym__Complex] = ACTIONS(1826), - [anon_sym___complex] = ACTIONS(1826), - [anon_sym_IBOutlet] = ACTIONS(1826), - [anon_sym_IBInspectable] = ACTIONS(1826), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1826), - [anon_sym_signed] = ACTIONS(1826), - [anon_sym_unsigned] = ACTIONS(1826), - [anon_sym_long] = ACTIONS(1826), - [anon_sym_short] = ACTIONS(1826), - [sym_primitive_type] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_NS_ENUM] = ACTIONS(1826), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1826), - [anon_sym_NS_OPTIONS] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_case] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_goto] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_sizeof] = ACTIONS(1826), - [sym_number_literal] = ACTIONS(1828), - [anon_sym_L_SQUOTE] = ACTIONS(1828), - [anon_sym_u_SQUOTE] = ACTIONS(1828), - [anon_sym_U_SQUOTE] = ACTIONS(1828), - [anon_sym_u8_SQUOTE] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_L_DQUOTE] = ACTIONS(1828), - [anon_sym_u_DQUOTE] = ACTIONS(1828), - [anon_sym_U_DQUOTE] = ACTIONS(1828), - [anon_sym_u8_DQUOTE] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym_true] = ACTIONS(1826), - [sym_false] = ACTIONS(1826), - [sym_null] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1828), - [anon_sym_ATimport] = ACTIONS(1828), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1826), - [anon_sym_ATcompatibility_alias] = ACTIONS(1828), - [anon_sym_ATprotocol] = ACTIONS(1828), - [anon_sym_ATclass] = ACTIONS(1828), - [anon_sym_ATinterface] = ACTIONS(1828), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1826), - [sym_method_attribute_specifier] = ACTIONS(1826), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1826), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE] = ACTIONS(1826), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_API_AVAILABLE] = ACTIONS(1826), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_API_DEPRECATED] = ACTIONS(1826), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1826), - [anon_sym___deprecated_msg] = ACTIONS(1826), - [anon_sym___deprecated_enum_msg] = ACTIONS(1826), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1826), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1826), - [anon_sym_ATimplementation] = ACTIONS(1828), - [anon_sym_typeof] = ACTIONS(1826), - [anon_sym___typeof] = ACTIONS(1826), - [anon_sym___typeof__] = ACTIONS(1826), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_nil] = ACTIONS(1826), - [sym_id] = ACTIONS(1826), - [sym_instancetype] = ACTIONS(1826), - [sym_Class] = ACTIONS(1826), - [sym_SEL] = ACTIONS(1826), - [sym_IMP] = ACTIONS(1826), - [sym_BOOL] = ACTIONS(1826), - [sym_auto] = ACTIONS(1826), - [anon_sym_ATautoreleasepool] = ACTIONS(1828), - [anon_sym_ATsynchronized] = ACTIONS(1828), - [anon_sym_ATtry] = ACTIONS(1828), - [anon_sym_ATthrow] = ACTIONS(1828), - [anon_sym_ATselector] = ACTIONS(1828), - [anon_sym_ATencode] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1826), - [sym_YES] = ACTIONS(1826), - [sym_NO] = ACTIONS(1826), - [anon_sym___builtin_available] = ACTIONS(1826), - [anon_sym_ATavailable] = ACTIONS(1828), - [anon_sym_va_arg] = ACTIONS(1826), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1350] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1351] = { - [sym_identifier] = ACTIONS(1826), - [aux_sym_preproc_include_token1] = ACTIONS(1828), - [aux_sym_preproc_def_token1] = ACTIONS(1828), - [aux_sym_preproc_if_token1] = ACTIONS(1826), - [aux_sym_preproc_if_token2] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym___attribute] = ACTIONS(1826), - [anon_sym___attribute__] = ACTIONS(1826), - [anon_sym___declspec] = ACTIONS(1826), - [anon_sym___cdecl] = ACTIONS(1826), - [anon_sym___clrcall] = ACTIONS(1826), - [anon_sym___stdcall] = ACTIONS(1826), - [anon_sym___fastcall] = ACTIONS(1826), - [anon_sym___thiscall] = ACTIONS(1826), - [anon_sym___vectorcall] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_auto] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_volatile] = ACTIONS(1826), - [anon_sym_restrict] = ACTIONS(1826), - [anon_sym__Atomic] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_out] = ACTIONS(1826), - [anon_sym_inout] = ACTIONS(1826), - [anon_sym_bycopy] = ACTIONS(1826), - [anon_sym_byref] = ACTIONS(1826), - [anon_sym_oneway] = ACTIONS(1826), - [anon_sym__Nullable] = ACTIONS(1826), - [anon_sym__Nonnull] = ACTIONS(1826), - [anon_sym__Nullable_result] = ACTIONS(1826), - [anon_sym__Null_unspecified] = ACTIONS(1826), - [anon_sym___autoreleasing] = ACTIONS(1826), - [anon_sym___nullable] = ACTIONS(1826), - [anon_sym___nonnull] = ACTIONS(1826), - [anon_sym___strong] = ACTIONS(1826), - [anon_sym___weak] = ACTIONS(1826), - [anon_sym___bridge] = ACTIONS(1826), - [anon_sym___bridge_transfer] = ACTIONS(1826), - [anon_sym___bridge_retained] = ACTIONS(1826), - [anon_sym___unsafe_unretained] = ACTIONS(1826), - [anon_sym___block] = ACTIONS(1826), - [anon_sym___kindof] = ACTIONS(1826), - [anon_sym___unused] = ACTIONS(1826), - [anon_sym__Complex] = ACTIONS(1826), - [anon_sym___complex] = ACTIONS(1826), - [anon_sym_IBOutlet] = ACTIONS(1826), - [anon_sym_IBInspectable] = ACTIONS(1826), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1826), - [anon_sym_signed] = ACTIONS(1826), - [anon_sym_unsigned] = ACTIONS(1826), - [anon_sym_long] = ACTIONS(1826), - [anon_sym_short] = ACTIONS(1826), - [sym_primitive_type] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_NS_ENUM] = ACTIONS(1826), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1826), - [anon_sym_NS_OPTIONS] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_case] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_goto] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_sizeof] = ACTIONS(1826), - [sym_number_literal] = ACTIONS(1828), - [anon_sym_L_SQUOTE] = ACTIONS(1828), - [anon_sym_u_SQUOTE] = ACTIONS(1828), - [anon_sym_U_SQUOTE] = ACTIONS(1828), - [anon_sym_u8_SQUOTE] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_L_DQUOTE] = ACTIONS(1828), - [anon_sym_u_DQUOTE] = ACTIONS(1828), - [anon_sym_U_DQUOTE] = ACTIONS(1828), - [anon_sym_u8_DQUOTE] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym_true] = ACTIONS(1826), - [sym_false] = ACTIONS(1826), - [sym_null] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1828), - [anon_sym_ATimport] = ACTIONS(1828), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1826), - [anon_sym_ATcompatibility_alias] = ACTIONS(1828), - [anon_sym_ATprotocol] = ACTIONS(1828), - [anon_sym_ATclass] = ACTIONS(1828), - [anon_sym_ATinterface] = ACTIONS(1828), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1826), - [sym_method_attribute_specifier] = ACTIONS(1826), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1826), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE] = ACTIONS(1826), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_API_AVAILABLE] = ACTIONS(1826), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_API_DEPRECATED] = ACTIONS(1826), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1826), - [anon_sym___deprecated_msg] = ACTIONS(1826), - [anon_sym___deprecated_enum_msg] = ACTIONS(1826), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1826), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1826), - [anon_sym_ATimplementation] = ACTIONS(1828), - [anon_sym_typeof] = ACTIONS(1826), - [anon_sym___typeof] = ACTIONS(1826), - [anon_sym___typeof__] = ACTIONS(1826), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_nil] = ACTIONS(1826), - [sym_id] = ACTIONS(1826), - [sym_instancetype] = ACTIONS(1826), - [sym_Class] = ACTIONS(1826), - [sym_SEL] = ACTIONS(1826), - [sym_IMP] = ACTIONS(1826), - [sym_BOOL] = ACTIONS(1826), - [sym_auto] = ACTIONS(1826), - [anon_sym_ATautoreleasepool] = ACTIONS(1828), - [anon_sym_ATsynchronized] = ACTIONS(1828), - [anon_sym_ATtry] = ACTIONS(1828), - [anon_sym_ATthrow] = ACTIONS(1828), - [anon_sym_ATselector] = ACTIONS(1828), - [anon_sym_ATencode] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1826), - [sym_YES] = ACTIONS(1826), - [sym_NO] = ACTIONS(1826), - [anon_sym___builtin_available] = ACTIONS(1826), - [anon_sym_ATavailable] = ACTIONS(1828), - [anon_sym_va_arg] = ACTIONS(1826), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1352] = { - [sym_identifier] = ACTIONS(1822), - [aux_sym_preproc_include_token1] = ACTIONS(1824), - [aux_sym_preproc_def_token1] = ACTIONS(1824), - [aux_sym_preproc_if_token1] = ACTIONS(1822), - [aux_sym_preproc_if_token2] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1822), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym___attribute] = ACTIONS(1822), - [anon_sym___attribute__] = ACTIONS(1822), - [anon_sym___declspec] = ACTIONS(1822), - [anon_sym___cdecl] = ACTIONS(1822), - [anon_sym___clrcall] = ACTIONS(1822), - [anon_sym___stdcall] = ACTIONS(1822), - [anon_sym___fastcall] = ACTIONS(1822), - [anon_sym___thiscall] = ACTIONS(1822), - [anon_sym___vectorcall] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [anon_sym__Atomic] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_out] = ACTIONS(1822), - [anon_sym_inout] = ACTIONS(1822), - [anon_sym_bycopy] = ACTIONS(1822), - [anon_sym_byref] = ACTIONS(1822), - [anon_sym_oneway] = ACTIONS(1822), - [anon_sym__Nullable] = ACTIONS(1822), - [anon_sym__Nonnull] = ACTIONS(1822), - [anon_sym__Nullable_result] = ACTIONS(1822), - [anon_sym__Null_unspecified] = ACTIONS(1822), - [anon_sym___autoreleasing] = ACTIONS(1822), - [anon_sym___nullable] = ACTIONS(1822), - [anon_sym___nonnull] = ACTIONS(1822), - [anon_sym___strong] = ACTIONS(1822), - [anon_sym___weak] = ACTIONS(1822), - [anon_sym___bridge] = ACTIONS(1822), - [anon_sym___bridge_transfer] = ACTIONS(1822), - [anon_sym___bridge_retained] = ACTIONS(1822), - [anon_sym___unsafe_unretained] = ACTIONS(1822), - [anon_sym___block] = ACTIONS(1822), - [anon_sym___kindof] = ACTIONS(1822), - [anon_sym___unused] = ACTIONS(1822), - [anon_sym__Complex] = ACTIONS(1822), - [anon_sym___complex] = ACTIONS(1822), - [anon_sym_IBOutlet] = ACTIONS(1822), - [anon_sym_IBInspectable] = ACTIONS(1822), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_NS_ENUM] = ACTIONS(1822), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1822), - [anon_sym_NS_OPTIONS] = ACTIONS(1822), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_case] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_goto] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1822), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_L_SQUOTE] = ACTIONS(1824), - [anon_sym_u_SQUOTE] = ACTIONS(1824), - [anon_sym_U_SQUOTE] = ACTIONS(1824), - [anon_sym_u8_SQUOTE] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_L_DQUOTE] = ACTIONS(1824), - [anon_sym_u_DQUOTE] = ACTIONS(1824), - [anon_sym_U_DQUOTE] = ACTIONS(1824), - [anon_sym_u8_DQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym_true] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1824), - [anon_sym_ATimport] = ACTIONS(1824), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1822), - [anon_sym_ATcompatibility_alias] = ACTIONS(1824), - [anon_sym_ATprotocol] = ACTIONS(1824), - [anon_sym_ATclass] = ACTIONS(1824), - [anon_sym_ATinterface] = ACTIONS(1824), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1822), - [sym_method_attribute_specifier] = ACTIONS(1822), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1822), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE] = ACTIONS(1822), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_API_AVAILABLE] = ACTIONS(1822), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_API_DEPRECATED] = ACTIONS(1822), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1822), - [anon_sym___deprecated_msg] = ACTIONS(1822), - [anon_sym___deprecated_enum_msg] = ACTIONS(1822), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1822), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1822), - [anon_sym_ATimplementation] = ACTIONS(1824), - [anon_sym_typeof] = ACTIONS(1822), - [anon_sym___typeof] = ACTIONS(1822), - [anon_sym___typeof__] = ACTIONS(1822), - [sym_self] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_nil] = ACTIONS(1822), - [sym_id] = ACTIONS(1822), - [sym_instancetype] = ACTIONS(1822), - [sym_Class] = ACTIONS(1822), - [sym_SEL] = ACTIONS(1822), - [sym_IMP] = ACTIONS(1822), - [sym_BOOL] = ACTIONS(1822), - [sym_auto] = ACTIONS(1822), - [anon_sym_ATautoreleasepool] = ACTIONS(1824), - [anon_sym_ATsynchronized] = ACTIONS(1824), - [anon_sym_ATtry] = ACTIONS(1824), - [anon_sym_ATthrow] = ACTIONS(1824), - [anon_sym_ATselector] = ACTIONS(1824), - [anon_sym_ATencode] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1822), - [sym_YES] = ACTIONS(1822), - [sym_NO] = ACTIONS(1822), - [anon_sym___builtin_available] = ACTIONS(1822), - [anon_sym_ATavailable] = ACTIONS(1824), - [anon_sym_va_arg] = ACTIONS(1822), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1353] = { - [sym_identifier] = ACTIONS(1826), - [aux_sym_preproc_include_token1] = ACTIONS(1828), - [aux_sym_preproc_def_token1] = ACTIONS(1828), - [aux_sym_preproc_if_token1] = ACTIONS(1826), - [aux_sym_preproc_if_token2] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym___attribute] = ACTIONS(1826), - [anon_sym___attribute__] = ACTIONS(1826), - [anon_sym___declspec] = ACTIONS(1826), - [anon_sym___cdecl] = ACTIONS(1826), - [anon_sym___clrcall] = ACTIONS(1826), - [anon_sym___stdcall] = ACTIONS(1826), - [anon_sym___fastcall] = ACTIONS(1826), - [anon_sym___thiscall] = ACTIONS(1826), - [anon_sym___vectorcall] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_auto] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_volatile] = ACTIONS(1826), - [anon_sym_restrict] = ACTIONS(1826), - [anon_sym__Atomic] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_out] = ACTIONS(1826), - [anon_sym_inout] = ACTIONS(1826), - [anon_sym_bycopy] = ACTIONS(1826), - [anon_sym_byref] = ACTIONS(1826), - [anon_sym_oneway] = ACTIONS(1826), - [anon_sym__Nullable] = ACTIONS(1826), - [anon_sym__Nonnull] = ACTIONS(1826), - [anon_sym__Nullable_result] = ACTIONS(1826), - [anon_sym__Null_unspecified] = ACTIONS(1826), - [anon_sym___autoreleasing] = ACTIONS(1826), - [anon_sym___nullable] = ACTIONS(1826), - [anon_sym___nonnull] = ACTIONS(1826), - [anon_sym___strong] = ACTIONS(1826), - [anon_sym___weak] = ACTIONS(1826), - [anon_sym___bridge] = ACTIONS(1826), - [anon_sym___bridge_transfer] = ACTIONS(1826), - [anon_sym___bridge_retained] = ACTIONS(1826), - [anon_sym___unsafe_unretained] = ACTIONS(1826), - [anon_sym___block] = ACTIONS(1826), - [anon_sym___kindof] = ACTIONS(1826), - [anon_sym___unused] = ACTIONS(1826), - [anon_sym__Complex] = ACTIONS(1826), - [anon_sym___complex] = ACTIONS(1826), - [anon_sym_IBOutlet] = ACTIONS(1826), - [anon_sym_IBInspectable] = ACTIONS(1826), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1826), - [anon_sym_signed] = ACTIONS(1826), - [anon_sym_unsigned] = ACTIONS(1826), - [anon_sym_long] = ACTIONS(1826), - [anon_sym_short] = ACTIONS(1826), - [sym_primitive_type] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_NS_ENUM] = ACTIONS(1826), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1826), - [anon_sym_NS_OPTIONS] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_case] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_goto] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_sizeof] = ACTIONS(1826), - [sym_number_literal] = ACTIONS(1828), - [anon_sym_L_SQUOTE] = ACTIONS(1828), - [anon_sym_u_SQUOTE] = ACTIONS(1828), - [anon_sym_U_SQUOTE] = ACTIONS(1828), - [anon_sym_u8_SQUOTE] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_L_DQUOTE] = ACTIONS(1828), - [anon_sym_u_DQUOTE] = ACTIONS(1828), - [anon_sym_U_DQUOTE] = ACTIONS(1828), - [anon_sym_u8_DQUOTE] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym_true] = ACTIONS(1826), - [sym_false] = ACTIONS(1826), - [sym_null] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1828), - [anon_sym_ATimport] = ACTIONS(1828), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1826), - [anon_sym_ATcompatibility_alias] = ACTIONS(1828), - [anon_sym_ATprotocol] = ACTIONS(1828), - [anon_sym_ATclass] = ACTIONS(1828), - [anon_sym_ATinterface] = ACTIONS(1828), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1826), - [sym_method_attribute_specifier] = ACTIONS(1826), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1826), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE] = ACTIONS(1826), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_API_AVAILABLE] = ACTIONS(1826), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_API_DEPRECATED] = ACTIONS(1826), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1826), - [anon_sym___deprecated_msg] = ACTIONS(1826), - [anon_sym___deprecated_enum_msg] = ACTIONS(1826), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1826), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1826), - [anon_sym_ATimplementation] = ACTIONS(1828), - [anon_sym_typeof] = ACTIONS(1826), - [anon_sym___typeof] = ACTIONS(1826), - [anon_sym___typeof__] = ACTIONS(1826), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_nil] = ACTIONS(1826), - [sym_id] = ACTIONS(1826), - [sym_instancetype] = ACTIONS(1826), - [sym_Class] = ACTIONS(1826), - [sym_SEL] = ACTIONS(1826), - [sym_IMP] = ACTIONS(1826), - [sym_BOOL] = ACTIONS(1826), - [sym_auto] = ACTIONS(1826), - [anon_sym_ATautoreleasepool] = ACTIONS(1828), - [anon_sym_ATsynchronized] = ACTIONS(1828), - [anon_sym_ATtry] = ACTIONS(1828), - [anon_sym_ATthrow] = ACTIONS(1828), - [anon_sym_ATselector] = ACTIONS(1828), - [anon_sym_ATencode] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1826), - [sym_YES] = ACTIONS(1826), - [sym_NO] = ACTIONS(1826), - [anon_sym___builtin_available] = ACTIONS(1826), - [anon_sym_ATavailable] = ACTIONS(1828), - [anon_sym_va_arg] = ACTIONS(1826), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1354] = { - [sym_identifier] = ACTIONS(1826), - [aux_sym_preproc_include_token1] = ACTIONS(1828), - [aux_sym_preproc_def_token1] = ACTIONS(1828), - [aux_sym_preproc_if_token1] = ACTIONS(1826), - [aux_sym_preproc_if_token2] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym___attribute] = ACTIONS(1826), - [anon_sym___attribute__] = ACTIONS(1826), - [anon_sym___declspec] = ACTIONS(1826), - [anon_sym___cdecl] = ACTIONS(1826), - [anon_sym___clrcall] = ACTIONS(1826), - [anon_sym___stdcall] = ACTIONS(1826), - [anon_sym___fastcall] = ACTIONS(1826), - [anon_sym___thiscall] = ACTIONS(1826), - [anon_sym___vectorcall] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_auto] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_volatile] = ACTIONS(1826), - [anon_sym_restrict] = ACTIONS(1826), - [anon_sym__Atomic] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_out] = ACTIONS(1826), - [anon_sym_inout] = ACTIONS(1826), - [anon_sym_bycopy] = ACTIONS(1826), - [anon_sym_byref] = ACTIONS(1826), - [anon_sym_oneway] = ACTIONS(1826), - [anon_sym__Nullable] = ACTIONS(1826), - [anon_sym__Nonnull] = ACTIONS(1826), - [anon_sym__Nullable_result] = ACTIONS(1826), - [anon_sym__Null_unspecified] = ACTIONS(1826), - [anon_sym___autoreleasing] = ACTIONS(1826), - [anon_sym___nullable] = ACTIONS(1826), - [anon_sym___nonnull] = ACTIONS(1826), - [anon_sym___strong] = ACTIONS(1826), - [anon_sym___weak] = ACTIONS(1826), - [anon_sym___bridge] = ACTIONS(1826), - [anon_sym___bridge_transfer] = ACTIONS(1826), - [anon_sym___bridge_retained] = ACTIONS(1826), - [anon_sym___unsafe_unretained] = ACTIONS(1826), - [anon_sym___block] = ACTIONS(1826), - [anon_sym___kindof] = ACTIONS(1826), - [anon_sym___unused] = ACTIONS(1826), - [anon_sym__Complex] = ACTIONS(1826), - [anon_sym___complex] = ACTIONS(1826), - [anon_sym_IBOutlet] = ACTIONS(1826), - [anon_sym_IBInspectable] = ACTIONS(1826), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1826), - [anon_sym_signed] = ACTIONS(1826), - [anon_sym_unsigned] = ACTIONS(1826), - [anon_sym_long] = ACTIONS(1826), - [anon_sym_short] = ACTIONS(1826), - [sym_primitive_type] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_NS_ENUM] = ACTIONS(1826), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1826), - [anon_sym_NS_OPTIONS] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_case] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_goto] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_sizeof] = ACTIONS(1826), - [sym_number_literal] = ACTIONS(1828), - [anon_sym_L_SQUOTE] = ACTIONS(1828), - [anon_sym_u_SQUOTE] = ACTIONS(1828), - [anon_sym_U_SQUOTE] = ACTIONS(1828), - [anon_sym_u8_SQUOTE] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_L_DQUOTE] = ACTIONS(1828), - [anon_sym_u_DQUOTE] = ACTIONS(1828), - [anon_sym_U_DQUOTE] = ACTIONS(1828), - [anon_sym_u8_DQUOTE] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym_true] = ACTIONS(1826), - [sym_false] = ACTIONS(1826), - [sym_null] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1828), - [anon_sym_ATimport] = ACTIONS(1828), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1826), - [anon_sym_ATcompatibility_alias] = ACTIONS(1828), - [anon_sym_ATprotocol] = ACTIONS(1828), - [anon_sym_ATclass] = ACTIONS(1828), - [anon_sym_ATinterface] = ACTIONS(1828), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1826), - [sym_method_attribute_specifier] = ACTIONS(1826), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1826), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE] = ACTIONS(1826), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_API_AVAILABLE] = ACTIONS(1826), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_API_DEPRECATED] = ACTIONS(1826), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1826), - [anon_sym___deprecated_msg] = ACTIONS(1826), - [anon_sym___deprecated_enum_msg] = ACTIONS(1826), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1826), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1826), - [anon_sym_ATimplementation] = ACTIONS(1828), - [anon_sym_typeof] = ACTIONS(1826), - [anon_sym___typeof] = ACTIONS(1826), - [anon_sym___typeof__] = ACTIONS(1826), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_nil] = ACTIONS(1826), - [sym_id] = ACTIONS(1826), - [sym_instancetype] = ACTIONS(1826), - [sym_Class] = ACTIONS(1826), - [sym_SEL] = ACTIONS(1826), - [sym_IMP] = ACTIONS(1826), - [sym_BOOL] = ACTIONS(1826), - [sym_auto] = ACTIONS(1826), - [anon_sym_ATautoreleasepool] = ACTIONS(1828), - [anon_sym_ATsynchronized] = ACTIONS(1828), - [anon_sym_ATtry] = ACTIONS(1828), - [anon_sym_ATthrow] = ACTIONS(1828), - [anon_sym_ATselector] = ACTIONS(1828), - [anon_sym_ATencode] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1826), - [sym_YES] = ACTIONS(1826), - [sym_NO] = ACTIONS(1826), - [anon_sym___builtin_available] = ACTIONS(1826), - [anon_sym_ATavailable] = ACTIONS(1828), - [anon_sym_va_arg] = ACTIONS(1826), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1355] = { - [sym_identifier] = ACTIONS(1906), - [aux_sym_preproc_include_token1] = ACTIONS(1908), - [aux_sym_preproc_def_token1] = ACTIONS(1908), - [aux_sym_preproc_if_token1] = ACTIONS(1906), - [aux_sym_preproc_if_token2] = ACTIONS(1906), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1906), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1906), - [anon_sym_LPAREN2] = ACTIONS(1908), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_TILDE] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1906), - [anon_sym_PLUS] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1908), - [anon_sym_CARET] = ACTIONS(1908), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_SEMI] = ACTIONS(1908), - [anon_sym_typedef] = ACTIONS(1906), - [anon_sym_extern] = ACTIONS(1906), - [anon_sym___attribute] = ACTIONS(1906), - [anon_sym___attribute__] = ACTIONS(1906), - [anon_sym___declspec] = ACTIONS(1906), - [anon_sym___cdecl] = ACTIONS(1906), - [anon_sym___clrcall] = ACTIONS(1906), - [anon_sym___stdcall] = ACTIONS(1906), - [anon_sym___fastcall] = ACTIONS(1906), - [anon_sym___thiscall] = ACTIONS(1906), - [anon_sym___vectorcall] = ACTIONS(1906), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1908), - [anon_sym_static] = ACTIONS(1906), - [anon_sym_auto] = ACTIONS(1906), - [anon_sym_register] = ACTIONS(1906), - [anon_sym_inline] = ACTIONS(1906), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1906), - [anon_sym_const] = ACTIONS(1906), - [anon_sym_volatile] = ACTIONS(1906), - [anon_sym_restrict] = ACTIONS(1906), - [anon_sym__Atomic] = ACTIONS(1906), - [anon_sym_in] = ACTIONS(1906), - [anon_sym_out] = ACTIONS(1906), - [anon_sym_inout] = ACTIONS(1906), - [anon_sym_bycopy] = ACTIONS(1906), - [anon_sym_byref] = ACTIONS(1906), - [anon_sym_oneway] = ACTIONS(1906), - [anon_sym__Nullable] = ACTIONS(1906), - [anon_sym__Nonnull] = ACTIONS(1906), - [anon_sym__Nullable_result] = ACTIONS(1906), - [anon_sym__Null_unspecified] = ACTIONS(1906), - [anon_sym___autoreleasing] = ACTIONS(1906), - [anon_sym___nullable] = ACTIONS(1906), - [anon_sym___nonnull] = ACTIONS(1906), - [anon_sym___strong] = ACTIONS(1906), - [anon_sym___weak] = ACTIONS(1906), - [anon_sym___bridge] = ACTIONS(1906), - [anon_sym___bridge_transfer] = ACTIONS(1906), - [anon_sym___bridge_retained] = ACTIONS(1906), - [anon_sym___unsafe_unretained] = ACTIONS(1906), - [anon_sym___block] = ACTIONS(1906), - [anon_sym___kindof] = ACTIONS(1906), - [anon_sym___unused] = ACTIONS(1906), - [anon_sym__Complex] = ACTIONS(1906), - [anon_sym___complex] = ACTIONS(1906), - [anon_sym_IBOutlet] = ACTIONS(1906), - [anon_sym_IBInspectable] = ACTIONS(1906), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1906), - [anon_sym_signed] = ACTIONS(1906), - [anon_sym_unsigned] = ACTIONS(1906), - [anon_sym_long] = ACTIONS(1906), - [anon_sym_short] = ACTIONS(1906), - [sym_primitive_type] = ACTIONS(1906), - [anon_sym_enum] = ACTIONS(1906), - [anon_sym_NS_ENUM] = ACTIONS(1906), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1906), - [anon_sym_NS_OPTIONS] = ACTIONS(1906), - [anon_sym_struct] = ACTIONS(1906), - [anon_sym_union] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(1906), - [anon_sym_switch] = ACTIONS(1906), - [anon_sym_case] = ACTIONS(1906), - [anon_sym_default] = ACTIONS(1906), - [anon_sym_while] = ACTIONS(1906), - [anon_sym_do] = ACTIONS(1906), - [anon_sym_for] = ACTIONS(1906), - [anon_sym_return] = ACTIONS(1906), - [anon_sym_break] = ACTIONS(1906), - [anon_sym_continue] = ACTIONS(1906), - [anon_sym_goto] = ACTIONS(1906), - [anon_sym_DASH_DASH] = ACTIONS(1908), - [anon_sym_PLUS_PLUS] = ACTIONS(1908), - [anon_sym_sizeof] = ACTIONS(1906), - [sym_number_literal] = ACTIONS(1908), - [anon_sym_L_SQUOTE] = ACTIONS(1908), - [anon_sym_u_SQUOTE] = ACTIONS(1908), - [anon_sym_U_SQUOTE] = ACTIONS(1908), - [anon_sym_u8_SQUOTE] = ACTIONS(1908), - [anon_sym_SQUOTE] = ACTIONS(1908), - [anon_sym_L_DQUOTE] = ACTIONS(1908), - [anon_sym_u_DQUOTE] = ACTIONS(1908), - [anon_sym_U_DQUOTE] = ACTIONS(1908), - [anon_sym_u8_DQUOTE] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1908), - [anon_sym_ATimport] = ACTIONS(1908), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1906), - [anon_sym_ATcompatibility_alias] = ACTIONS(1908), - [anon_sym_ATprotocol] = ACTIONS(1908), - [anon_sym_ATclass] = ACTIONS(1908), - [anon_sym_ATinterface] = ACTIONS(1908), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1906), - [sym_method_attribute_specifier] = ACTIONS(1906), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1906), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1906), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1906), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1906), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1906), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1906), - [anon_sym_NS_AVAILABLE] = ACTIONS(1906), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1906), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_API_AVAILABLE] = ACTIONS(1906), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1906), - [anon_sym_API_DEPRECATED] = ACTIONS(1906), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1906), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1906), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1906), - [anon_sym___deprecated_msg] = ACTIONS(1906), - [anon_sym___deprecated_enum_msg] = ACTIONS(1906), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1906), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1906), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1906), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1906), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1906), - [anon_sym_ATimplementation] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(1906), - [anon_sym___typeof] = ACTIONS(1906), - [anon_sym___typeof__] = ACTIONS(1906), - [sym_self] = ACTIONS(1906), - [sym_super] = ACTIONS(1906), - [sym_nil] = ACTIONS(1906), - [sym_id] = ACTIONS(1906), - [sym_instancetype] = ACTIONS(1906), - [sym_Class] = ACTIONS(1906), - [sym_SEL] = ACTIONS(1906), - [sym_IMP] = ACTIONS(1906), - [sym_BOOL] = ACTIONS(1906), - [sym_auto] = ACTIONS(1906), - [anon_sym_ATautoreleasepool] = ACTIONS(1908), - [anon_sym_ATsynchronized] = ACTIONS(1908), - [anon_sym_ATtry] = ACTIONS(1908), - [anon_sym_ATthrow] = ACTIONS(1908), - [anon_sym_ATselector] = ACTIONS(1908), - [anon_sym_ATencode] = ACTIONS(1908), - [anon_sym_AT] = ACTIONS(1906), - [sym_YES] = ACTIONS(1906), - [sym_NO] = ACTIONS(1906), - [anon_sym___builtin_available] = ACTIONS(1906), - [anon_sym_ATavailable] = ACTIONS(1908), - [anon_sym_va_arg] = ACTIONS(1906), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1356] = { - [sym_identifier] = ACTIONS(1914), - [aux_sym_preproc_include_token1] = ACTIONS(1916), - [aux_sym_preproc_def_token1] = ACTIONS(1916), - [aux_sym_preproc_if_token1] = ACTIONS(1914), - [aux_sym_preproc_if_token2] = ACTIONS(1914), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1914), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1914), - [anon_sym_LPAREN2] = ACTIONS(1916), - [anon_sym_BANG] = ACTIONS(1916), - [anon_sym_TILDE] = ACTIONS(1916), - [anon_sym_DASH] = ACTIONS(1914), - [anon_sym_PLUS] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1916), - [anon_sym_CARET] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_typedef] = ACTIONS(1914), - [anon_sym_extern] = ACTIONS(1914), - [anon_sym___attribute] = ACTIONS(1914), - [anon_sym___attribute__] = ACTIONS(1914), - [anon_sym___declspec] = ACTIONS(1914), - [anon_sym___cdecl] = ACTIONS(1914), - [anon_sym___clrcall] = ACTIONS(1914), - [anon_sym___stdcall] = ACTIONS(1914), - [anon_sym___fastcall] = ACTIONS(1914), - [anon_sym___thiscall] = ACTIONS(1914), - [anon_sym___vectorcall] = ACTIONS(1914), - [anon_sym_LBRACE] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_static] = ACTIONS(1914), - [anon_sym_auto] = ACTIONS(1914), - [anon_sym_register] = ACTIONS(1914), - [anon_sym_inline] = ACTIONS(1914), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1914), - [anon_sym_volatile] = ACTIONS(1914), - [anon_sym_restrict] = ACTIONS(1914), - [anon_sym__Atomic] = ACTIONS(1914), - [anon_sym_in] = ACTIONS(1914), - [anon_sym_out] = ACTIONS(1914), - [anon_sym_inout] = ACTIONS(1914), - [anon_sym_bycopy] = ACTIONS(1914), - [anon_sym_byref] = ACTIONS(1914), - [anon_sym_oneway] = ACTIONS(1914), - [anon_sym__Nullable] = ACTIONS(1914), - [anon_sym__Nonnull] = ACTIONS(1914), - [anon_sym__Nullable_result] = ACTIONS(1914), - [anon_sym__Null_unspecified] = ACTIONS(1914), - [anon_sym___autoreleasing] = ACTIONS(1914), - [anon_sym___nullable] = ACTIONS(1914), - [anon_sym___nonnull] = ACTIONS(1914), - [anon_sym___strong] = ACTIONS(1914), - [anon_sym___weak] = ACTIONS(1914), - [anon_sym___bridge] = ACTIONS(1914), - [anon_sym___bridge_transfer] = ACTIONS(1914), - [anon_sym___bridge_retained] = ACTIONS(1914), - [anon_sym___unsafe_unretained] = ACTIONS(1914), - [anon_sym___block] = ACTIONS(1914), - [anon_sym___kindof] = ACTIONS(1914), - [anon_sym___unused] = ACTIONS(1914), - [anon_sym__Complex] = ACTIONS(1914), - [anon_sym___complex] = ACTIONS(1914), - [anon_sym_IBOutlet] = ACTIONS(1914), - [anon_sym_IBInspectable] = ACTIONS(1914), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1914), - [anon_sym_signed] = ACTIONS(1914), - [anon_sym_unsigned] = ACTIONS(1914), - [anon_sym_long] = ACTIONS(1914), - [anon_sym_short] = ACTIONS(1914), - [sym_primitive_type] = ACTIONS(1914), - [anon_sym_enum] = ACTIONS(1914), - [anon_sym_NS_ENUM] = ACTIONS(1914), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1914), - [anon_sym_NS_OPTIONS] = ACTIONS(1914), - [anon_sym_struct] = ACTIONS(1914), - [anon_sym_union] = ACTIONS(1914), - [anon_sym_if] = ACTIONS(1914), - [anon_sym_switch] = ACTIONS(1914), - [anon_sym_case] = ACTIONS(1914), - [anon_sym_default] = ACTIONS(1914), - [anon_sym_while] = ACTIONS(1914), - [anon_sym_do] = ACTIONS(1914), - [anon_sym_for] = ACTIONS(1914), - [anon_sym_return] = ACTIONS(1914), - [anon_sym_break] = ACTIONS(1914), - [anon_sym_continue] = ACTIONS(1914), - [anon_sym_goto] = ACTIONS(1914), - [anon_sym_DASH_DASH] = ACTIONS(1916), - [anon_sym_PLUS_PLUS] = ACTIONS(1916), - [anon_sym_sizeof] = ACTIONS(1914), - [sym_number_literal] = ACTIONS(1916), - [anon_sym_L_SQUOTE] = ACTIONS(1916), - [anon_sym_u_SQUOTE] = ACTIONS(1916), - [anon_sym_U_SQUOTE] = ACTIONS(1916), - [anon_sym_u8_SQUOTE] = ACTIONS(1916), - [anon_sym_SQUOTE] = ACTIONS(1916), - [anon_sym_L_DQUOTE] = ACTIONS(1916), - [anon_sym_u_DQUOTE] = ACTIONS(1916), - [anon_sym_U_DQUOTE] = ACTIONS(1916), - [anon_sym_u8_DQUOTE] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1916), - [sym_true] = ACTIONS(1914), - [sym_false] = ACTIONS(1914), - [sym_null] = ACTIONS(1914), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1916), - [anon_sym_ATimport] = ACTIONS(1916), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1914), - [anon_sym_ATcompatibility_alias] = ACTIONS(1916), - [anon_sym_ATprotocol] = ACTIONS(1916), - [anon_sym_ATclass] = ACTIONS(1916), - [anon_sym_ATinterface] = ACTIONS(1916), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1914), - [sym_method_attribute_specifier] = ACTIONS(1914), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1914), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1914), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1914), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1914), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1914), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1914), - [anon_sym_NS_AVAILABLE] = ACTIONS(1914), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1914), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1914), - [anon_sym_API_AVAILABLE] = ACTIONS(1914), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1914), - [anon_sym_API_DEPRECATED] = ACTIONS(1914), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1914), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1914), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1914), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1914), - [anon_sym___deprecated_msg] = ACTIONS(1914), - [anon_sym___deprecated_enum_msg] = ACTIONS(1914), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1914), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1914), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1914), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1914), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1914), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1914), - [anon_sym_ATimplementation] = ACTIONS(1916), - [anon_sym_typeof] = ACTIONS(1914), - [anon_sym___typeof] = ACTIONS(1914), - [anon_sym___typeof__] = ACTIONS(1914), - [sym_self] = ACTIONS(1914), - [sym_super] = ACTIONS(1914), - [sym_nil] = ACTIONS(1914), - [sym_id] = ACTIONS(1914), - [sym_instancetype] = ACTIONS(1914), - [sym_Class] = ACTIONS(1914), - [sym_SEL] = ACTIONS(1914), - [sym_IMP] = ACTIONS(1914), - [sym_BOOL] = ACTIONS(1914), - [sym_auto] = ACTIONS(1914), - [anon_sym_ATautoreleasepool] = ACTIONS(1916), - [anon_sym_ATsynchronized] = ACTIONS(1916), - [anon_sym_ATtry] = ACTIONS(1916), - [anon_sym_ATthrow] = ACTIONS(1916), - [anon_sym_ATselector] = ACTIONS(1916), - [anon_sym_ATencode] = ACTIONS(1916), - [anon_sym_AT] = ACTIONS(1914), - [sym_YES] = ACTIONS(1914), - [sym_NO] = ACTIONS(1914), - [anon_sym___builtin_available] = ACTIONS(1914), - [anon_sym_ATavailable] = ACTIONS(1916), - [anon_sym_va_arg] = ACTIONS(1914), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1357] = { - [sym_identifier] = ACTIONS(1826), - [aux_sym_preproc_include_token1] = ACTIONS(1828), - [aux_sym_preproc_def_token1] = ACTIONS(1828), - [aux_sym_preproc_if_token1] = ACTIONS(1826), - [aux_sym_preproc_if_token2] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1826), - [anon_sym_LPAREN2] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1826), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym___attribute] = ACTIONS(1826), - [anon_sym___attribute__] = ACTIONS(1826), - [anon_sym___declspec] = ACTIONS(1826), - [anon_sym___cdecl] = ACTIONS(1826), - [anon_sym___clrcall] = ACTIONS(1826), - [anon_sym___stdcall] = ACTIONS(1826), - [anon_sym___fastcall] = ACTIONS(1826), - [anon_sym___thiscall] = ACTIONS(1826), - [anon_sym___vectorcall] = ACTIONS(1826), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_auto] = ACTIONS(1826), - [anon_sym_register] = ACTIONS(1826), - [anon_sym_inline] = ACTIONS(1826), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_volatile] = ACTIONS(1826), - [anon_sym_restrict] = ACTIONS(1826), - [anon_sym__Atomic] = ACTIONS(1826), - [anon_sym_in] = ACTIONS(1826), - [anon_sym_out] = ACTIONS(1826), - [anon_sym_inout] = ACTIONS(1826), - [anon_sym_bycopy] = ACTIONS(1826), - [anon_sym_byref] = ACTIONS(1826), - [anon_sym_oneway] = ACTIONS(1826), - [anon_sym__Nullable] = ACTIONS(1826), - [anon_sym__Nonnull] = ACTIONS(1826), - [anon_sym__Nullable_result] = ACTIONS(1826), - [anon_sym__Null_unspecified] = ACTIONS(1826), - [anon_sym___autoreleasing] = ACTIONS(1826), - [anon_sym___nullable] = ACTIONS(1826), - [anon_sym___nonnull] = ACTIONS(1826), - [anon_sym___strong] = ACTIONS(1826), - [anon_sym___weak] = ACTIONS(1826), - [anon_sym___bridge] = ACTIONS(1826), - [anon_sym___bridge_transfer] = ACTIONS(1826), - [anon_sym___bridge_retained] = ACTIONS(1826), - [anon_sym___unsafe_unretained] = ACTIONS(1826), - [anon_sym___block] = ACTIONS(1826), - [anon_sym___kindof] = ACTIONS(1826), - [anon_sym___unused] = ACTIONS(1826), - [anon_sym__Complex] = ACTIONS(1826), - [anon_sym___complex] = ACTIONS(1826), - [anon_sym_IBOutlet] = ACTIONS(1826), - [anon_sym_IBInspectable] = ACTIONS(1826), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1826), - [anon_sym_signed] = ACTIONS(1826), - [anon_sym_unsigned] = ACTIONS(1826), - [anon_sym_long] = ACTIONS(1826), - [anon_sym_short] = ACTIONS(1826), - [sym_primitive_type] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_NS_ENUM] = ACTIONS(1826), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1826), - [anon_sym_NS_OPTIONS] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1826), - [anon_sym_case] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_do] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_goto] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1828), - [anon_sym_sizeof] = ACTIONS(1826), - [sym_number_literal] = ACTIONS(1828), - [anon_sym_L_SQUOTE] = ACTIONS(1828), - [anon_sym_u_SQUOTE] = ACTIONS(1828), - [anon_sym_U_SQUOTE] = ACTIONS(1828), - [anon_sym_u8_SQUOTE] = ACTIONS(1828), - [anon_sym_SQUOTE] = ACTIONS(1828), - [anon_sym_L_DQUOTE] = ACTIONS(1828), - [anon_sym_u_DQUOTE] = ACTIONS(1828), - [anon_sym_U_DQUOTE] = ACTIONS(1828), - [anon_sym_u8_DQUOTE] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym_true] = ACTIONS(1826), - [sym_false] = ACTIONS(1826), - [sym_null] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1828), - [anon_sym_ATimport] = ACTIONS(1828), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1826), - [anon_sym_ATcompatibility_alias] = ACTIONS(1828), - [anon_sym_ATprotocol] = ACTIONS(1828), - [anon_sym_ATclass] = ACTIONS(1828), - [anon_sym_ATinterface] = ACTIONS(1828), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1826), - [sym_method_attribute_specifier] = ACTIONS(1826), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1826), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1826), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE] = ACTIONS(1826), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1826), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_API_AVAILABLE] = ACTIONS(1826), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_API_DEPRECATED] = ACTIONS(1826), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1826), - [anon_sym___deprecated_msg] = ACTIONS(1826), - [anon_sym___deprecated_enum_msg] = ACTIONS(1826), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1826), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1826), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1826), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1826), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1826), - [anon_sym_ATimplementation] = ACTIONS(1828), - [anon_sym_typeof] = ACTIONS(1826), - [anon_sym___typeof] = ACTIONS(1826), - [anon_sym___typeof__] = ACTIONS(1826), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_nil] = ACTIONS(1826), - [sym_id] = ACTIONS(1826), - [sym_instancetype] = ACTIONS(1826), - [sym_Class] = ACTIONS(1826), - [sym_SEL] = ACTIONS(1826), - [sym_IMP] = ACTIONS(1826), - [sym_BOOL] = ACTIONS(1826), - [sym_auto] = ACTIONS(1826), - [anon_sym_ATautoreleasepool] = ACTIONS(1828), - [anon_sym_ATsynchronized] = ACTIONS(1828), - [anon_sym_ATtry] = ACTIONS(1828), - [anon_sym_ATthrow] = ACTIONS(1828), - [anon_sym_ATselector] = ACTIONS(1828), - [anon_sym_ATencode] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1826), - [sym_YES] = ACTIONS(1826), - [sym_NO] = ACTIONS(1826), - [anon_sym___builtin_available] = ACTIONS(1826), - [anon_sym_ATavailable] = ACTIONS(1828), - [anon_sym_va_arg] = ACTIONS(1826), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1358] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1359] = { - [sym_identifier] = ACTIONS(1822), - [aux_sym_preproc_include_token1] = ACTIONS(1824), - [aux_sym_preproc_def_token1] = ACTIONS(1824), - [aux_sym_preproc_if_token1] = ACTIONS(1822), - [aux_sym_preproc_if_token2] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1822), - [anon_sym_LPAREN2] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_typedef] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym___attribute] = ACTIONS(1822), - [anon_sym___attribute__] = ACTIONS(1822), - [anon_sym___declspec] = ACTIONS(1822), - [anon_sym___cdecl] = ACTIONS(1822), - [anon_sym___clrcall] = ACTIONS(1822), - [anon_sym___stdcall] = ACTIONS(1822), - [anon_sym___fastcall] = ACTIONS(1822), - [anon_sym___thiscall] = ACTIONS(1822), - [anon_sym___vectorcall] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_auto] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_volatile] = ACTIONS(1822), - [anon_sym_restrict] = ACTIONS(1822), - [anon_sym__Atomic] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_out] = ACTIONS(1822), - [anon_sym_inout] = ACTIONS(1822), - [anon_sym_bycopy] = ACTIONS(1822), - [anon_sym_byref] = ACTIONS(1822), - [anon_sym_oneway] = ACTIONS(1822), - [anon_sym__Nullable] = ACTIONS(1822), - [anon_sym__Nonnull] = ACTIONS(1822), - [anon_sym__Nullable_result] = ACTIONS(1822), - [anon_sym__Null_unspecified] = ACTIONS(1822), - [anon_sym___autoreleasing] = ACTIONS(1822), - [anon_sym___nullable] = ACTIONS(1822), - [anon_sym___nonnull] = ACTIONS(1822), - [anon_sym___strong] = ACTIONS(1822), - [anon_sym___weak] = ACTIONS(1822), - [anon_sym___bridge] = ACTIONS(1822), - [anon_sym___bridge_transfer] = ACTIONS(1822), - [anon_sym___bridge_retained] = ACTIONS(1822), - [anon_sym___unsafe_unretained] = ACTIONS(1822), - [anon_sym___block] = ACTIONS(1822), - [anon_sym___kindof] = ACTIONS(1822), - [anon_sym___unused] = ACTIONS(1822), - [anon_sym__Complex] = ACTIONS(1822), - [anon_sym___complex] = ACTIONS(1822), - [anon_sym_IBOutlet] = ACTIONS(1822), - [anon_sym_IBInspectable] = ACTIONS(1822), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1822), - [anon_sym_signed] = ACTIONS(1822), - [anon_sym_unsigned] = ACTIONS(1822), - [anon_sym_long] = ACTIONS(1822), - [anon_sym_short] = ACTIONS(1822), - [sym_primitive_type] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_NS_ENUM] = ACTIONS(1822), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1822), - [anon_sym_NS_OPTIONS] = ACTIONS(1822), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1822), - [anon_sym_case] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_goto] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_sizeof] = ACTIONS(1822), - [sym_number_literal] = ACTIONS(1824), - [anon_sym_L_SQUOTE] = ACTIONS(1824), - [anon_sym_u_SQUOTE] = ACTIONS(1824), - [anon_sym_U_SQUOTE] = ACTIONS(1824), - [anon_sym_u8_SQUOTE] = ACTIONS(1824), - [anon_sym_SQUOTE] = ACTIONS(1824), - [anon_sym_L_DQUOTE] = ACTIONS(1824), - [anon_sym_u_DQUOTE] = ACTIONS(1824), - [anon_sym_U_DQUOTE] = ACTIONS(1824), - [anon_sym_u8_DQUOTE] = ACTIONS(1824), - [anon_sym_DQUOTE] = ACTIONS(1824), - [sym_true] = ACTIONS(1822), - [sym_false] = ACTIONS(1822), - [sym_null] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1824), - [anon_sym_ATimport] = ACTIONS(1824), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1822), - [anon_sym_ATcompatibility_alias] = ACTIONS(1824), - [anon_sym_ATprotocol] = ACTIONS(1824), - [anon_sym_ATclass] = ACTIONS(1824), - [anon_sym_ATinterface] = ACTIONS(1824), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1822), - [sym_method_attribute_specifier] = ACTIONS(1822), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1822), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1822), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE] = ACTIONS(1822), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1822), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_API_AVAILABLE] = ACTIONS(1822), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_API_DEPRECATED] = ACTIONS(1822), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1822), - [anon_sym___deprecated_msg] = ACTIONS(1822), - [anon_sym___deprecated_enum_msg] = ACTIONS(1822), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1822), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1822), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1822), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1822), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1822), - [anon_sym_ATimplementation] = ACTIONS(1824), - [anon_sym_typeof] = ACTIONS(1822), - [anon_sym___typeof] = ACTIONS(1822), - [anon_sym___typeof__] = ACTIONS(1822), - [sym_self] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_nil] = ACTIONS(1822), - [sym_id] = ACTIONS(1822), - [sym_instancetype] = ACTIONS(1822), - [sym_Class] = ACTIONS(1822), - [sym_SEL] = ACTIONS(1822), - [sym_IMP] = ACTIONS(1822), - [sym_BOOL] = ACTIONS(1822), - [sym_auto] = ACTIONS(1822), - [anon_sym_ATautoreleasepool] = ACTIONS(1824), - [anon_sym_ATsynchronized] = ACTIONS(1824), - [anon_sym_ATtry] = ACTIONS(1824), - [anon_sym_ATthrow] = ACTIONS(1824), - [anon_sym_ATselector] = ACTIONS(1824), - [anon_sym_ATencode] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1822), - [sym_YES] = ACTIONS(1822), - [sym_NO] = ACTIONS(1822), - [anon_sym___builtin_available] = ACTIONS(1822), - [anon_sym_ATavailable] = ACTIONS(1824), - [anon_sym_va_arg] = ACTIONS(1822), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1360] = { - [sym_identifier] = ACTIONS(1818), - [aux_sym_preproc_include_token1] = ACTIONS(1820), - [aux_sym_preproc_def_token1] = ACTIONS(1820), - [aux_sym_preproc_if_token1] = ACTIONS(1818), - [aux_sym_preproc_if_token2] = ACTIONS(1818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1818), - [anon_sym_LPAREN2] = ACTIONS(1820), - [anon_sym_BANG] = ACTIONS(1820), - [anon_sym_TILDE] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1820), - [anon_sym_AMP] = ACTIONS(1820), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_typedef] = ACTIONS(1818), - [anon_sym_extern] = ACTIONS(1818), - [anon_sym___attribute] = ACTIONS(1818), - [anon_sym___attribute__] = ACTIONS(1818), - [anon_sym___declspec] = ACTIONS(1818), - [anon_sym___cdecl] = ACTIONS(1818), - [anon_sym___clrcall] = ACTIONS(1818), - [anon_sym___stdcall] = ACTIONS(1818), - [anon_sym___fastcall] = ACTIONS(1818), - [anon_sym___thiscall] = ACTIONS(1818), - [anon_sym___vectorcall] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1818), - [anon_sym_auto] = ACTIONS(1818), - [anon_sym_register] = ACTIONS(1818), - [anon_sym_inline] = ACTIONS(1818), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1818), - [anon_sym_const] = ACTIONS(1818), - [anon_sym_volatile] = ACTIONS(1818), - [anon_sym_restrict] = ACTIONS(1818), - [anon_sym__Atomic] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1818), - [anon_sym_out] = ACTIONS(1818), - [anon_sym_inout] = ACTIONS(1818), - [anon_sym_bycopy] = ACTIONS(1818), - [anon_sym_byref] = ACTIONS(1818), - [anon_sym_oneway] = ACTIONS(1818), - [anon_sym__Nullable] = ACTIONS(1818), - [anon_sym__Nonnull] = ACTIONS(1818), - [anon_sym__Nullable_result] = ACTIONS(1818), - [anon_sym__Null_unspecified] = ACTIONS(1818), - [anon_sym___autoreleasing] = ACTIONS(1818), - [anon_sym___nullable] = ACTIONS(1818), - [anon_sym___nonnull] = ACTIONS(1818), - [anon_sym___strong] = ACTIONS(1818), - [anon_sym___weak] = ACTIONS(1818), - [anon_sym___bridge] = ACTIONS(1818), - [anon_sym___bridge_transfer] = ACTIONS(1818), - [anon_sym___bridge_retained] = ACTIONS(1818), - [anon_sym___unsafe_unretained] = ACTIONS(1818), - [anon_sym___block] = ACTIONS(1818), - [anon_sym___kindof] = ACTIONS(1818), - [anon_sym___unused] = ACTIONS(1818), - [anon_sym__Complex] = ACTIONS(1818), - [anon_sym___complex] = ACTIONS(1818), - [anon_sym_IBOutlet] = ACTIONS(1818), - [anon_sym_IBInspectable] = ACTIONS(1818), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1818), - [anon_sym_signed] = ACTIONS(1818), - [anon_sym_unsigned] = ACTIONS(1818), - [anon_sym_long] = ACTIONS(1818), - [anon_sym_short] = ACTIONS(1818), - [sym_primitive_type] = ACTIONS(1818), - [anon_sym_enum] = ACTIONS(1818), - [anon_sym_NS_ENUM] = ACTIONS(1818), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1818), - [anon_sym_NS_OPTIONS] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1818), - [anon_sym_union] = ACTIONS(1818), - [anon_sym_if] = ACTIONS(1818), - [anon_sym_switch] = ACTIONS(1818), - [anon_sym_case] = ACTIONS(1818), - [anon_sym_default] = ACTIONS(1818), - [anon_sym_while] = ACTIONS(1818), - [anon_sym_do] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(1818), - [anon_sym_return] = ACTIONS(1818), - [anon_sym_break] = ACTIONS(1818), - [anon_sym_continue] = ACTIONS(1818), - [anon_sym_goto] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1820), - [anon_sym_PLUS_PLUS] = ACTIONS(1820), - [anon_sym_sizeof] = ACTIONS(1818), - [sym_number_literal] = ACTIONS(1820), - [anon_sym_L_SQUOTE] = ACTIONS(1820), - [anon_sym_u_SQUOTE] = ACTIONS(1820), - [anon_sym_U_SQUOTE] = ACTIONS(1820), - [anon_sym_u8_SQUOTE] = ACTIONS(1820), - [anon_sym_SQUOTE] = ACTIONS(1820), - [anon_sym_L_DQUOTE] = ACTIONS(1820), - [anon_sym_u_DQUOTE] = ACTIONS(1820), - [anon_sym_U_DQUOTE] = ACTIONS(1820), - [anon_sym_u8_DQUOTE] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1820), - [sym_true] = ACTIONS(1818), - [sym_false] = ACTIONS(1818), - [sym_null] = ACTIONS(1818), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1820), - [anon_sym_ATimport] = ACTIONS(1820), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1818), - [anon_sym_ATcompatibility_alias] = ACTIONS(1820), - [anon_sym_ATprotocol] = ACTIONS(1820), - [anon_sym_ATclass] = ACTIONS(1820), - [anon_sym_ATinterface] = ACTIONS(1820), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1818), - [sym_method_attribute_specifier] = ACTIONS(1818), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1818), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1818), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1818), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1818), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1818), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1818), - [anon_sym_NS_AVAILABLE] = ACTIONS(1818), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1818), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1818), - [anon_sym_API_AVAILABLE] = ACTIONS(1818), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1818), - [anon_sym_API_DEPRECATED] = ACTIONS(1818), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1818), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1818), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1818), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1818), - [anon_sym___deprecated_msg] = ACTIONS(1818), - [anon_sym___deprecated_enum_msg] = ACTIONS(1818), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1818), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1818), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1818), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1818), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1818), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1818), - [anon_sym_ATimplementation] = ACTIONS(1820), - [anon_sym_typeof] = ACTIONS(1818), - [anon_sym___typeof] = ACTIONS(1818), - [anon_sym___typeof__] = ACTIONS(1818), - [sym_self] = ACTIONS(1818), - [sym_super] = ACTIONS(1818), - [sym_nil] = ACTIONS(1818), - [sym_id] = ACTIONS(1818), - [sym_instancetype] = ACTIONS(1818), - [sym_Class] = ACTIONS(1818), - [sym_SEL] = ACTIONS(1818), - [sym_IMP] = ACTIONS(1818), - [sym_BOOL] = ACTIONS(1818), - [sym_auto] = ACTIONS(1818), - [anon_sym_ATautoreleasepool] = ACTIONS(1820), - [anon_sym_ATsynchronized] = ACTIONS(1820), - [anon_sym_ATtry] = ACTIONS(1820), - [anon_sym_ATthrow] = ACTIONS(1820), - [anon_sym_ATselector] = ACTIONS(1820), - [anon_sym_ATencode] = ACTIONS(1820), - [anon_sym_AT] = ACTIONS(1818), - [sym_YES] = ACTIONS(1818), - [sym_NO] = ACTIONS(1818), - [anon_sym___builtin_available] = ACTIONS(1818), - [anon_sym_ATavailable] = ACTIONS(1820), - [anon_sym_va_arg] = ACTIONS(1818), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1361] = { - [sym_identifier] = ACTIONS(2082), - [aux_sym_preproc_include_token1] = ACTIONS(2084), - [aux_sym_preproc_def_token1] = ACTIONS(2084), - [aux_sym_preproc_if_token1] = ACTIONS(2082), - [aux_sym_preproc_if_token2] = ACTIONS(2082), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2082), - [anon_sym_LPAREN2] = ACTIONS(2084), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_TILDE] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(2082), - [anon_sym_PLUS] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2084), - [anon_sym_CARET] = ACTIONS(2084), - [anon_sym_AMP] = ACTIONS(2084), - [anon_sym_SEMI] = ACTIONS(2084), - [anon_sym_typedef] = ACTIONS(2082), - [anon_sym_extern] = ACTIONS(2082), - [anon_sym___attribute] = ACTIONS(2082), - [anon_sym___attribute__] = ACTIONS(2082), - [anon_sym___declspec] = ACTIONS(2082), - [anon_sym___cdecl] = ACTIONS(2082), - [anon_sym___clrcall] = ACTIONS(2082), - [anon_sym___stdcall] = ACTIONS(2082), - [anon_sym___fastcall] = ACTIONS(2082), - [anon_sym___thiscall] = ACTIONS(2082), - [anon_sym___vectorcall] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_static] = ACTIONS(2082), - [anon_sym_auto] = ACTIONS(2082), - [anon_sym_register] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2082), - [anon_sym_const] = ACTIONS(2082), - [anon_sym_volatile] = ACTIONS(2082), - [anon_sym_restrict] = ACTIONS(2082), - [anon_sym__Atomic] = ACTIONS(2082), - [anon_sym_in] = ACTIONS(2082), - [anon_sym_out] = ACTIONS(2082), - [anon_sym_inout] = ACTIONS(2082), - [anon_sym_bycopy] = ACTIONS(2082), - [anon_sym_byref] = ACTIONS(2082), - [anon_sym_oneway] = ACTIONS(2082), - [anon_sym__Nullable] = ACTIONS(2082), - [anon_sym__Nonnull] = ACTIONS(2082), - [anon_sym__Nullable_result] = ACTIONS(2082), - [anon_sym__Null_unspecified] = ACTIONS(2082), - [anon_sym___autoreleasing] = ACTIONS(2082), - [anon_sym___nullable] = ACTIONS(2082), - [anon_sym___nonnull] = ACTIONS(2082), - [anon_sym___strong] = ACTIONS(2082), - [anon_sym___weak] = ACTIONS(2082), - [anon_sym___bridge] = ACTIONS(2082), - [anon_sym___bridge_transfer] = ACTIONS(2082), - [anon_sym___bridge_retained] = ACTIONS(2082), - [anon_sym___unsafe_unretained] = ACTIONS(2082), - [anon_sym___block] = ACTIONS(2082), - [anon_sym___kindof] = ACTIONS(2082), - [anon_sym___unused] = ACTIONS(2082), - [anon_sym__Complex] = ACTIONS(2082), - [anon_sym___complex] = ACTIONS(2082), - [anon_sym_IBOutlet] = ACTIONS(2082), - [anon_sym_IBInspectable] = ACTIONS(2082), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2082), - [anon_sym_signed] = ACTIONS(2082), - [anon_sym_unsigned] = ACTIONS(2082), - [anon_sym_long] = ACTIONS(2082), - [anon_sym_short] = ACTIONS(2082), - [sym_primitive_type] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_NS_ENUM] = ACTIONS(2082), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2082), - [anon_sym_NS_OPTIONS] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(2082), - [anon_sym_union] = ACTIONS(2082), - [anon_sym_if] = ACTIONS(2082), - [anon_sym_switch] = ACTIONS(2082), - [anon_sym_case] = ACTIONS(2082), - [anon_sym_default] = ACTIONS(2082), - [anon_sym_while] = ACTIONS(2082), - [anon_sym_do] = ACTIONS(2082), - [anon_sym_for] = ACTIONS(2082), - [anon_sym_return] = ACTIONS(2082), - [anon_sym_break] = ACTIONS(2082), - [anon_sym_continue] = ACTIONS(2082), - [anon_sym_goto] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2084), - [anon_sym_sizeof] = ACTIONS(2082), - [sym_number_literal] = ACTIONS(2084), - [anon_sym_L_SQUOTE] = ACTIONS(2084), - [anon_sym_u_SQUOTE] = ACTIONS(2084), - [anon_sym_U_SQUOTE] = ACTIONS(2084), - [anon_sym_u8_SQUOTE] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2084), - [anon_sym_L_DQUOTE] = ACTIONS(2084), - [anon_sym_u_DQUOTE] = ACTIONS(2084), - [anon_sym_U_DQUOTE] = ACTIONS(2084), - [anon_sym_u8_DQUOTE] = ACTIONS(2084), - [anon_sym_DQUOTE] = ACTIONS(2084), - [sym_true] = ACTIONS(2082), - [sym_false] = ACTIONS(2082), - [sym_null] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2084), - [anon_sym_ATimport] = ACTIONS(2084), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2082), - [anon_sym_ATcompatibility_alias] = ACTIONS(2084), - [anon_sym_ATprotocol] = ACTIONS(2084), - [anon_sym_ATclass] = ACTIONS(2084), - [anon_sym_ATinterface] = ACTIONS(2084), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2082), - [sym_method_attribute_specifier] = ACTIONS(2082), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2082), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2082), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2082), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2082), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2082), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2082), - [anon_sym_NS_AVAILABLE] = ACTIONS(2082), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2082), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2082), - [anon_sym_API_AVAILABLE] = ACTIONS(2082), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2082), - [anon_sym_API_DEPRECATED] = ACTIONS(2082), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2082), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2082), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2082), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2082), - [anon_sym___deprecated_msg] = ACTIONS(2082), - [anon_sym___deprecated_enum_msg] = ACTIONS(2082), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2082), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2082), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2082), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2082), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2082), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2082), - [anon_sym_ATimplementation] = ACTIONS(2084), - [anon_sym_typeof] = ACTIONS(2082), - [anon_sym___typeof] = ACTIONS(2082), - [anon_sym___typeof__] = ACTIONS(2082), - [sym_self] = ACTIONS(2082), - [sym_super] = ACTIONS(2082), - [sym_nil] = ACTIONS(2082), - [sym_id] = ACTIONS(2082), - [sym_instancetype] = ACTIONS(2082), - [sym_Class] = ACTIONS(2082), - [sym_SEL] = ACTIONS(2082), - [sym_IMP] = ACTIONS(2082), - [sym_BOOL] = ACTIONS(2082), - [sym_auto] = ACTIONS(2082), - [anon_sym_ATautoreleasepool] = ACTIONS(2084), - [anon_sym_ATsynchronized] = ACTIONS(2084), - [anon_sym_ATtry] = ACTIONS(2084), - [anon_sym_ATthrow] = ACTIONS(2084), - [anon_sym_ATselector] = ACTIONS(2084), - [anon_sym_ATencode] = ACTIONS(2084), - [anon_sym_AT] = ACTIONS(2082), - [sym_YES] = ACTIONS(2082), - [sym_NO] = ACTIONS(2082), - [anon_sym___builtin_available] = ACTIONS(2082), - [anon_sym_ATavailable] = ACTIONS(2084), - [anon_sym_va_arg] = ACTIONS(2082), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1362] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1363] = { - [sym_identifier] = ACTIONS(1810), - [aux_sym_preproc_include_token1] = ACTIONS(1812), - [aux_sym_preproc_def_token1] = ACTIONS(1812), - [aux_sym_preproc_if_token1] = ACTIONS(1810), - [aux_sym_preproc_if_token2] = ACTIONS(1810), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1810), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1810), - [anon_sym_LPAREN2] = ACTIONS(1812), - [anon_sym_BANG] = ACTIONS(1812), - [anon_sym_TILDE] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1810), - [anon_sym_STAR] = ACTIONS(1812), - [anon_sym_CARET] = ACTIONS(1812), - [anon_sym_AMP] = ACTIONS(1812), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_typedef] = ACTIONS(1810), - [anon_sym_extern] = ACTIONS(1810), - [anon_sym___attribute] = ACTIONS(1810), - [anon_sym___attribute__] = ACTIONS(1810), - [anon_sym___declspec] = ACTIONS(1810), - [anon_sym___cdecl] = ACTIONS(1810), - [anon_sym___clrcall] = ACTIONS(1810), - [anon_sym___stdcall] = ACTIONS(1810), - [anon_sym___fastcall] = ACTIONS(1810), - [anon_sym___thiscall] = ACTIONS(1810), - [anon_sym___vectorcall] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_static] = ACTIONS(1810), - [anon_sym_auto] = ACTIONS(1810), - [anon_sym_register] = ACTIONS(1810), - [anon_sym_inline] = ACTIONS(1810), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1810), - [anon_sym_const] = ACTIONS(1810), - [anon_sym_volatile] = ACTIONS(1810), - [anon_sym_restrict] = ACTIONS(1810), - [anon_sym__Atomic] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1810), - [anon_sym_out] = ACTIONS(1810), - [anon_sym_inout] = ACTIONS(1810), - [anon_sym_bycopy] = ACTIONS(1810), - [anon_sym_byref] = ACTIONS(1810), - [anon_sym_oneway] = ACTIONS(1810), - [anon_sym__Nullable] = ACTIONS(1810), - [anon_sym__Nonnull] = ACTIONS(1810), - [anon_sym__Nullable_result] = ACTIONS(1810), - [anon_sym__Null_unspecified] = ACTIONS(1810), - [anon_sym___autoreleasing] = ACTIONS(1810), - [anon_sym___nullable] = ACTIONS(1810), - [anon_sym___nonnull] = ACTIONS(1810), - [anon_sym___strong] = ACTIONS(1810), - [anon_sym___weak] = ACTIONS(1810), - [anon_sym___bridge] = ACTIONS(1810), - [anon_sym___bridge_transfer] = ACTIONS(1810), - [anon_sym___bridge_retained] = ACTIONS(1810), - [anon_sym___unsafe_unretained] = ACTIONS(1810), - [anon_sym___block] = ACTIONS(1810), - [anon_sym___kindof] = ACTIONS(1810), - [anon_sym___unused] = ACTIONS(1810), - [anon_sym__Complex] = ACTIONS(1810), - [anon_sym___complex] = ACTIONS(1810), - [anon_sym_IBOutlet] = ACTIONS(1810), - [anon_sym_IBInspectable] = ACTIONS(1810), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1810), - [anon_sym_signed] = ACTIONS(1810), - [anon_sym_unsigned] = ACTIONS(1810), - [anon_sym_long] = ACTIONS(1810), - [anon_sym_short] = ACTIONS(1810), - [sym_primitive_type] = ACTIONS(1810), - [anon_sym_enum] = ACTIONS(1810), - [anon_sym_NS_ENUM] = ACTIONS(1810), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1810), - [anon_sym_NS_OPTIONS] = ACTIONS(1810), - [anon_sym_struct] = ACTIONS(1810), - [anon_sym_union] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1810), - [anon_sym_switch] = ACTIONS(1810), - [anon_sym_case] = ACTIONS(1810), - [anon_sym_default] = ACTIONS(1810), - [anon_sym_while] = ACTIONS(1810), - [anon_sym_do] = ACTIONS(1810), - [anon_sym_for] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1810), - [anon_sym_break] = ACTIONS(1810), - [anon_sym_continue] = ACTIONS(1810), - [anon_sym_goto] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1812), - [anon_sym_PLUS_PLUS] = ACTIONS(1812), - [anon_sym_sizeof] = ACTIONS(1810), - [sym_number_literal] = ACTIONS(1812), - [anon_sym_L_SQUOTE] = ACTIONS(1812), - [anon_sym_u_SQUOTE] = ACTIONS(1812), - [anon_sym_U_SQUOTE] = ACTIONS(1812), - [anon_sym_u8_SQUOTE] = ACTIONS(1812), - [anon_sym_SQUOTE] = ACTIONS(1812), - [anon_sym_L_DQUOTE] = ACTIONS(1812), - [anon_sym_u_DQUOTE] = ACTIONS(1812), - [anon_sym_U_DQUOTE] = ACTIONS(1812), - [anon_sym_u8_DQUOTE] = ACTIONS(1812), - [anon_sym_DQUOTE] = ACTIONS(1812), - [sym_true] = ACTIONS(1810), - [sym_false] = ACTIONS(1810), - [sym_null] = ACTIONS(1810), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1812), - [anon_sym_ATimport] = ACTIONS(1812), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1810), - [anon_sym_ATcompatibility_alias] = ACTIONS(1812), - [anon_sym_ATprotocol] = ACTIONS(1812), - [anon_sym_ATclass] = ACTIONS(1812), - [anon_sym_ATinterface] = ACTIONS(1812), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1810), - [sym_method_attribute_specifier] = ACTIONS(1810), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1810), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1810), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1810), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1810), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1810), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1810), - [anon_sym_NS_AVAILABLE] = ACTIONS(1810), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1810), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1810), - [anon_sym_API_AVAILABLE] = ACTIONS(1810), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1810), - [anon_sym_API_DEPRECATED] = ACTIONS(1810), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1810), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1810), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1810), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1810), - [anon_sym___deprecated_msg] = ACTIONS(1810), - [anon_sym___deprecated_enum_msg] = ACTIONS(1810), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1810), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1810), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1810), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1810), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1810), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1810), - [anon_sym_ATimplementation] = ACTIONS(1812), - [anon_sym_typeof] = ACTIONS(1810), - [anon_sym___typeof] = ACTIONS(1810), - [anon_sym___typeof__] = ACTIONS(1810), - [sym_self] = ACTIONS(1810), - [sym_super] = ACTIONS(1810), - [sym_nil] = ACTIONS(1810), - [sym_id] = ACTIONS(1810), - [sym_instancetype] = ACTIONS(1810), - [sym_Class] = ACTIONS(1810), - [sym_SEL] = ACTIONS(1810), - [sym_IMP] = ACTIONS(1810), - [sym_BOOL] = ACTIONS(1810), - [sym_auto] = ACTIONS(1810), - [anon_sym_ATautoreleasepool] = ACTIONS(1812), - [anon_sym_ATsynchronized] = ACTIONS(1812), - [anon_sym_ATtry] = ACTIONS(1812), - [anon_sym_ATthrow] = ACTIONS(1812), - [anon_sym_ATselector] = ACTIONS(1812), - [anon_sym_ATencode] = ACTIONS(1812), - [anon_sym_AT] = ACTIONS(1810), - [sym_YES] = ACTIONS(1810), - [sym_NO] = ACTIONS(1810), - [anon_sym___builtin_available] = ACTIONS(1810), - [anon_sym_ATavailable] = ACTIONS(1812), - [anon_sym_va_arg] = ACTIONS(1810), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1364] = { - [sym_identifier] = ACTIONS(1922), - [aux_sym_preproc_include_token1] = ACTIONS(1924), - [aux_sym_preproc_def_token1] = ACTIONS(1924), - [aux_sym_preproc_if_token1] = ACTIONS(1922), - [aux_sym_preproc_if_token2] = ACTIONS(1922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1922), - [anon_sym_LPAREN2] = ACTIONS(1924), - [anon_sym_BANG] = ACTIONS(1924), - [anon_sym_TILDE] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_CARET] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_typedef] = ACTIONS(1922), - [anon_sym_extern] = ACTIONS(1922), - [anon_sym___attribute] = ACTIONS(1922), - [anon_sym___attribute__] = ACTIONS(1922), - [anon_sym___declspec] = ACTIONS(1922), - [anon_sym___cdecl] = ACTIONS(1922), - [anon_sym___clrcall] = ACTIONS(1922), - [anon_sym___stdcall] = ACTIONS(1922), - [anon_sym___fastcall] = ACTIONS(1922), - [anon_sym___thiscall] = ACTIONS(1922), - [anon_sym___vectorcall] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1922), - [anon_sym_auto] = ACTIONS(1922), - [anon_sym_register] = ACTIONS(1922), - [anon_sym_inline] = ACTIONS(1922), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(1922), - [anon_sym_volatile] = ACTIONS(1922), - [anon_sym_restrict] = ACTIONS(1922), - [anon_sym__Atomic] = ACTIONS(1922), - [anon_sym_in] = ACTIONS(1922), - [anon_sym_out] = ACTIONS(1922), - [anon_sym_inout] = ACTIONS(1922), - [anon_sym_bycopy] = ACTIONS(1922), - [anon_sym_byref] = ACTIONS(1922), - [anon_sym_oneway] = ACTIONS(1922), - [anon_sym__Nullable] = ACTIONS(1922), - [anon_sym__Nonnull] = ACTIONS(1922), - [anon_sym__Nullable_result] = ACTIONS(1922), - [anon_sym__Null_unspecified] = ACTIONS(1922), - [anon_sym___autoreleasing] = ACTIONS(1922), - [anon_sym___nullable] = ACTIONS(1922), - [anon_sym___nonnull] = ACTIONS(1922), - [anon_sym___strong] = ACTIONS(1922), - [anon_sym___weak] = ACTIONS(1922), - [anon_sym___bridge] = ACTIONS(1922), - [anon_sym___bridge_transfer] = ACTIONS(1922), - [anon_sym___bridge_retained] = ACTIONS(1922), - [anon_sym___unsafe_unretained] = ACTIONS(1922), - [anon_sym___block] = ACTIONS(1922), - [anon_sym___kindof] = ACTIONS(1922), - [anon_sym___unused] = ACTIONS(1922), - [anon_sym__Complex] = ACTIONS(1922), - [anon_sym___complex] = ACTIONS(1922), - [anon_sym_IBOutlet] = ACTIONS(1922), - [anon_sym_IBInspectable] = ACTIONS(1922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1922), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [sym_primitive_type] = ACTIONS(1922), - [anon_sym_enum] = ACTIONS(1922), - [anon_sym_NS_ENUM] = ACTIONS(1922), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1922), - [anon_sym_NS_OPTIONS] = ACTIONS(1922), - [anon_sym_struct] = ACTIONS(1922), - [anon_sym_union] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(1922), - [anon_sym_switch] = ACTIONS(1922), - [anon_sym_case] = ACTIONS(1922), - [anon_sym_default] = ACTIONS(1922), - [anon_sym_while] = ACTIONS(1922), - [anon_sym_do] = ACTIONS(1922), - [anon_sym_for] = ACTIONS(1922), - [anon_sym_return] = ACTIONS(1922), - [anon_sym_break] = ACTIONS(1922), - [anon_sym_continue] = ACTIONS(1922), - [anon_sym_goto] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1924), - [anon_sym_PLUS_PLUS] = ACTIONS(1924), - [anon_sym_sizeof] = ACTIONS(1922), - [sym_number_literal] = ACTIONS(1924), - [anon_sym_L_SQUOTE] = ACTIONS(1924), - [anon_sym_u_SQUOTE] = ACTIONS(1924), - [anon_sym_U_SQUOTE] = ACTIONS(1924), - [anon_sym_u8_SQUOTE] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_L_DQUOTE] = ACTIONS(1924), - [anon_sym_u_DQUOTE] = ACTIONS(1924), - [anon_sym_U_DQUOTE] = ACTIONS(1924), - [anon_sym_u8_DQUOTE] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [sym_null] = ACTIONS(1922), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1924), - [anon_sym_ATimport] = ACTIONS(1924), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1922), - [anon_sym_ATcompatibility_alias] = ACTIONS(1924), - [anon_sym_ATprotocol] = ACTIONS(1924), - [anon_sym_ATclass] = ACTIONS(1924), - [anon_sym_ATinterface] = ACTIONS(1924), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1922), - [sym_method_attribute_specifier] = ACTIONS(1922), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1922), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1922), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1922), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1922), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1922), - [anon_sym_NS_AVAILABLE] = ACTIONS(1922), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1922), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_API_AVAILABLE] = ACTIONS(1922), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_API_DEPRECATED] = ACTIONS(1922), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1922), - [anon_sym___deprecated_msg] = ACTIONS(1922), - [anon_sym___deprecated_enum_msg] = ACTIONS(1922), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1922), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1922), - [anon_sym_ATimplementation] = ACTIONS(1924), - [anon_sym_typeof] = ACTIONS(1922), - [anon_sym___typeof] = ACTIONS(1922), - [anon_sym___typeof__] = ACTIONS(1922), - [sym_self] = ACTIONS(1922), - [sym_super] = ACTIONS(1922), - [sym_nil] = ACTIONS(1922), - [sym_id] = ACTIONS(1922), - [sym_instancetype] = ACTIONS(1922), - [sym_Class] = ACTIONS(1922), - [sym_SEL] = ACTIONS(1922), - [sym_IMP] = ACTIONS(1922), - [sym_BOOL] = ACTIONS(1922), - [sym_auto] = ACTIONS(1922), - [anon_sym_ATautoreleasepool] = ACTIONS(1924), - [anon_sym_ATsynchronized] = ACTIONS(1924), - [anon_sym_ATtry] = ACTIONS(1924), - [anon_sym_ATthrow] = ACTIONS(1924), - [anon_sym_ATselector] = ACTIONS(1924), - [anon_sym_ATencode] = ACTIONS(1924), - [anon_sym_AT] = ACTIONS(1922), - [sym_YES] = ACTIONS(1922), - [sym_NO] = ACTIONS(1922), - [anon_sym___builtin_available] = ACTIONS(1922), - [anon_sym_ATavailable] = ACTIONS(1924), - [anon_sym_va_arg] = ACTIONS(1922), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1365] = { - [sym_identifier] = ACTIONS(1806), - [aux_sym_preproc_include_token1] = ACTIONS(1808), - [aux_sym_preproc_def_token1] = ACTIONS(1808), - [aux_sym_preproc_if_token1] = ACTIONS(1806), - [aux_sym_preproc_if_token2] = ACTIONS(1806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1806), - [anon_sym_LPAREN2] = ACTIONS(1808), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_CARET] = ACTIONS(1808), - [anon_sym_AMP] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1808), - [anon_sym_typedef] = ACTIONS(1806), - [anon_sym_extern] = ACTIONS(1806), - [anon_sym___attribute] = ACTIONS(1806), - [anon_sym___attribute__] = ACTIONS(1806), - [anon_sym___declspec] = ACTIONS(1806), - [anon_sym___cdecl] = ACTIONS(1806), - [anon_sym___clrcall] = ACTIONS(1806), - [anon_sym___stdcall] = ACTIONS(1806), - [anon_sym___fastcall] = ACTIONS(1806), - [anon_sym___thiscall] = ACTIONS(1806), - [anon_sym___vectorcall] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_LBRACK] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_auto] = ACTIONS(1806), - [anon_sym_register] = ACTIONS(1806), - [anon_sym_inline] = ACTIONS(1806), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1806), - [anon_sym_const] = ACTIONS(1806), - [anon_sym_volatile] = ACTIONS(1806), - [anon_sym_restrict] = ACTIONS(1806), - [anon_sym__Atomic] = ACTIONS(1806), - [anon_sym_in] = ACTIONS(1806), - [anon_sym_out] = ACTIONS(1806), - [anon_sym_inout] = ACTIONS(1806), - [anon_sym_bycopy] = ACTIONS(1806), - [anon_sym_byref] = ACTIONS(1806), - [anon_sym_oneway] = ACTIONS(1806), - [anon_sym__Nullable] = ACTIONS(1806), - [anon_sym__Nonnull] = ACTIONS(1806), - [anon_sym__Nullable_result] = ACTIONS(1806), - [anon_sym__Null_unspecified] = ACTIONS(1806), - [anon_sym___autoreleasing] = ACTIONS(1806), - [anon_sym___nullable] = ACTIONS(1806), - [anon_sym___nonnull] = ACTIONS(1806), - [anon_sym___strong] = ACTIONS(1806), - [anon_sym___weak] = ACTIONS(1806), - [anon_sym___bridge] = ACTIONS(1806), - [anon_sym___bridge_transfer] = ACTIONS(1806), - [anon_sym___bridge_retained] = ACTIONS(1806), - [anon_sym___unsafe_unretained] = ACTIONS(1806), - [anon_sym___block] = ACTIONS(1806), - [anon_sym___kindof] = ACTIONS(1806), - [anon_sym___unused] = ACTIONS(1806), - [anon_sym__Complex] = ACTIONS(1806), - [anon_sym___complex] = ACTIONS(1806), - [anon_sym_IBOutlet] = ACTIONS(1806), - [anon_sym_IBInspectable] = ACTIONS(1806), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1806), - [anon_sym_signed] = ACTIONS(1806), - [anon_sym_unsigned] = ACTIONS(1806), - [anon_sym_long] = ACTIONS(1806), - [anon_sym_short] = ACTIONS(1806), - [sym_primitive_type] = ACTIONS(1806), - [anon_sym_enum] = ACTIONS(1806), - [anon_sym_NS_ENUM] = ACTIONS(1806), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1806), - [anon_sym_NS_OPTIONS] = ACTIONS(1806), - [anon_sym_struct] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_if] = ACTIONS(1806), - [anon_sym_switch] = ACTIONS(1806), - [anon_sym_case] = ACTIONS(1806), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_while] = ACTIONS(1806), - [anon_sym_do] = ACTIONS(1806), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1806), - [anon_sym_break] = ACTIONS(1806), - [anon_sym_continue] = ACTIONS(1806), - [anon_sym_goto] = ACTIONS(1806), - [anon_sym_DASH_DASH] = ACTIONS(1808), - [anon_sym_PLUS_PLUS] = ACTIONS(1808), - [anon_sym_sizeof] = ACTIONS(1806), - [sym_number_literal] = ACTIONS(1808), - [anon_sym_L_SQUOTE] = ACTIONS(1808), - [anon_sym_u_SQUOTE] = ACTIONS(1808), - [anon_sym_U_SQUOTE] = ACTIONS(1808), - [anon_sym_u8_SQUOTE] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [anon_sym_L_DQUOTE] = ACTIONS(1808), - [anon_sym_u_DQUOTE] = ACTIONS(1808), - [anon_sym_U_DQUOTE] = ACTIONS(1808), - [anon_sym_u8_DQUOTE] = ACTIONS(1808), - [anon_sym_DQUOTE] = ACTIONS(1808), - [sym_true] = ACTIONS(1806), - [sym_false] = ACTIONS(1806), - [sym_null] = ACTIONS(1806), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1808), - [anon_sym_ATimport] = ACTIONS(1808), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1806), - [anon_sym_ATcompatibility_alias] = ACTIONS(1808), - [anon_sym_ATprotocol] = ACTIONS(1808), - [anon_sym_ATclass] = ACTIONS(1808), - [anon_sym_ATinterface] = ACTIONS(1808), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1806), - [sym_method_attribute_specifier] = ACTIONS(1806), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1806), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1806), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1806), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1806), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1806), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1806), - [anon_sym_NS_AVAILABLE] = ACTIONS(1806), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1806), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1806), - [anon_sym_API_AVAILABLE] = ACTIONS(1806), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1806), - [anon_sym_API_DEPRECATED] = ACTIONS(1806), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1806), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1806), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1806), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1806), - [anon_sym___deprecated_msg] = ACTIONS(1806), - [anon_sym___deprecated_enum_msg] = ACTIONS(1806), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1806), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1806), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1806), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1806), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1806), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1806), - [anon_sym_ATimplementation] = ACTIONS(1808), - [anon_sym_typeof] = ACTIONS(1806), - [anon_sym___typeof] = ACTIONS(1806), - [anon_sym___typeof__] = ACTIONS(1806), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_nil] = ACTIONS(1806), - [sym_id] = ACTIONS(1806), - [sym_instancetype] = ACTIONS(1806), - [sym_Class] = ACTIONS(1806), - [sym_SEL] = ACTIONS(1806), - [sym_IMP] = ACTIONS(1806), - [sym_BOOL] = ACTIONS(1806), - [sym_auto] = ACTIONS(1806), - [anon_sym_ATautoreleasepool] = ACTIONS(1808), - [anon_sym_ATsynchronized] = ACTIONS(1808), - [anon_sym_ATtry] = ACTIONS(1808), - [anon_sym_ATthrow] = ACTIONS(1808), - [anon_sym_ATselector] = ACTIONS(1808), - [anon_sym_ATencode] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(1806), - [sym_YES] = ACTIONS(1806), - [sym_NO] = ACTIONS(1806), - [anon_sym___builtin_available] = ACTIONS(1806), - [anon_sym_ATavailable] = ACTIONS(1808), - [anon_sym_va_arg] = ACTIONS(1806), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1366] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1367] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1368] = { - [sym_identifier] = ACTIONS(1846), - [aux_sym_preproc_include_token1] = ACTIONS(1848), - [aux_sym_preproc_def_token1] = ACTIONS(1848), - [aux_sym_preproc_if_token1] = ACTIONS(1846), - [aux_sym_preproc_if_token2] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1846), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1846), - [anon_sym_LPAREN2] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1846), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym___attribute] = ACTIONS(1846), - [anon_sym___attribute__] = ACTIONS(1846), - [anon_sym___declspec] = ACTIONS(1846), - [anon_sym___cdecl] = ACTIONS(1846), - [anon_sym___clrcall] = ACTIONS(1846), - [anon_sym___stdcall] = ACTIONS(1846), - [anon_sym___fastcall] = ACTIONS(1846), - [anon_sym___thiscall] = ACTIONS(1846), - [anon_sym___vectorcall] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_auto] = ACTIONS(1846), - [anon_sym_register] = ACTIONS(1846), - [anon_sym_inline] = ACTIONS(1846), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_volatile] = ACTIONS(1846), - [anon_sym_restrict] = ACTIONS(1846), - [anon_sym__Atomic] = ACTIONS(1846), - [anon_sym_in] = ACTIONS(1846), - [anon_sym_out] = ACTIONS(1846), - [anon_sym_inout] = ACTIONS(1846), - [anon_sym_bycopy] = ACTIONS(1846), - [anon_sym_byref] = ACTIONS(1846), - [anon_sym_oneway] = ACTIONS(1846), - [anon_sym__Nullable] = ACTIONS(1846), - [anon_sym__Nonnull] = ACTIONS(1846), - [anon_sym__Nullable_result] = ACTIONS(1846), - [anon_sym__Null_unspecified] = ACTIONS(1846), - [anon_sym___autoreleasing] = ACTIONS(1846), - [anon_sym___nullable] = ACTIONS(1846), - [anon_sym___nonnull] = ACTIONS(1846), - [anon_sym___strong] = ACTIONS(1846), - [anon_sym___weak] = ACTIONS(1846), - [anon_sym___bridge] = ACTIONS(1846), - [anon_sym___bridge_transfer] = ACTIONS(1846), - [anon_sym___bridge_retained] = ACTIONS(1846), - [anon_sym___unsafe_unretained] = ACTIONS(1846), - [anon_sym___block] = ACTIONS(1846), - [anon_sym___kindof] = ACTIONS(1846), - [anon_sym___unused] = ACTIONS(1846), - [anon_sym__Complex] = ACTIONS(1846), - [anon_sym___complex] = ACTIONS(1846), - [anon_sym_IBOutlet] = ACTIONS(1846), - [anon_sym_IBInspectable] = ACTIONS(1846), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1846), - [anon_sym_signed] = ACTIONS(1846), - [anon_sym_unsigned] = ACTIONS(1846), - [anon_sym_long] = ACTIONS(1846), - [anon_sym_short] = ACTIONS(1846), - [sym_primitive_type] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_NS_ENUM] = ACTIONS(1846), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1846), - [anon_sym_NS_OPTIONS] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_do] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_goto] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1848), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1848), - [anon_sym_L_SQUOTE] = ACTIONS(1848), - [anon_sym_u_SQUOTE] = ACTIONS(1848), - [anon_sym_U_SQUOTE] = ACTIONS(1848), - [anon_sym_u8_SQUOTE] = ACTIONS(1848), - [anon_sym_SQUOTE] = ACTIONS(1848), - [anon_sym_L_DQUOTE] = ACTIONS(1848), - [anon_sym_u_DQUOTE] = ACTIONS(1848), - [anon_sym_U_DQUOTE] = ACTIONS(1848), - [anon_sym_u8_DQUOTE] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym_true] = ACTIONS(1846), - [sym_false] = ACTIONS(1846), - [sym_null] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1848), - [anon_sym_ATimport] = ACTIONS(1848), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1846), - [anon_sym_ATcompatibility_alias] = ACTIONS(1848), - [anon_sym_ATprotocol] = ACTIONS(1848), - [anon_sym_ATclass] = ACTIONS(1848), - [anon_sym_ATinterface] = ACTIONS(1848), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1846), - [sym_method_attribute_specifier] = ACTIONS(1846), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1846), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1846), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE] = ACTIONS(1846), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1846), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_API_AVAILABLE] = ACTIONS(1846), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_API_DEPRECATED] = ACTIONS(1846), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1846), - [anon_sym___deprecated_msg] = ACTIONS(1846), - [anon_sym___deprecated_enum_msg] = ACTIONS(1846), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1846), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1846), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1846), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1846), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1846), - [anon_sym_ATimplementation] = ACTIONS(1848), - [anon_sym_typeof] = ACTIONS(1846), - [anon_sym___typeof] = ACTIONS(1846), - [anon_sym___typeof__] = ACTIONS(1846), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_nil] = ACTIONS(1846), - [sym_id] = ACTIONS(1846), - [sym_instancetype] = ACTIONS(1846), - [sym_Class] = ACTIONS(1846), - [sym_SEL] = ACTIONS(1846), - [sym_IMP] = ACTIONS(1846), - [sym_BOOL] = ACTIONS(1846), - [sym_auto] = ACTIONS(1846), - [anon_sym_ATautoreleasepool] = ACTIONS(1848), - [anon_sym_ATsynchronized] = ACTIONS(1848), - [anon_sym_ATtry] = ACTIONS(1848), - [anon_sym_ATthrow] = ACTIONS(1848), - [anon_sym_ATselector] = ACTIONS(1848), - [anon_sym_ATencode] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1846), - [sym_YES] = ACTIONS(1846), - [sym_NO] = ACTIONS(1846), - [anon_sym___builtin_available] = ACTIONS(1846), - [anon_sym_ATavailable] = ACTIONS(1848), - [anon_sym_va_arg] = ACTIONS(1846), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1369] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1370] = { - [sym_identifier] = ACTIONS(1902), - [aux_sym_preproc_include_token1] = ACTIONS(1904), - [aux_sym_preproc_def_token1] = ACTIONS(1904), - [aux_sym_preproc_if_token1] = ACTIONS(1902), - [aux_sym_preproc_if_token2] = ACTIONS(1902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1902), - [anon_sym_LPAREN2] = ACTIONS(1904), - [anon_sym_BANG] = ACTIONS(1904), - [anon_sym_TILDE] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_PLUS] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1904), - [anon_sym_CARET] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1904), - [anon_sym_typedef] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1902), - [anon_sym___attribute] = ACTIONS(1902), - [anon_sym___attribute__] = ACTIONS(1902), - [anon_sym___declspec] = ACTIONS(1902), - [anon_sym___cdecl] = ACTIONS(1902), - [anon_sym___clrcall] = ACTIONS(1902), - [anon_sym___stdcall] = ACTIONS(1902), - [anon_sym___fastcall] = ACTIONS(1902), - [anon_sym___thiscall] = ACTIONS(1902), - [anon_sym___vectorcall] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1902), - [anon_sym_auto] = ACTIONS(1902), - [anon_sym_register] = ACTIONS(1902), - [anon_sym_inline] = ACTIONS(1902), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1902), - [anon_sym_const] = ACTIONS(1902), - [anon_sym_volatile] = ACTIONS(1902), - [anon_sym_restrict] = ACTIONS(1902), - [anon_sym__Atomic] = ACTIONS(1902), - [anon_sym_in] = ACTIONS(1902), - [anon_sym_out] = ACTIONS(1902), - [anon_sym_inout] = ACTIONS(1902), - [anon_sym_bycopy] = ACTIONS(1902), - [anon_sym_byref] = ACTIONS(1902), - [anon_sym_oneway] = ACTIONS(1902), - [anon_sym__Nullable] = ACTIONS(1902), - [anon_sym__Nonnull] = ACTIONS(1902), - [anon_sym__Nullable_result] = ACTIONS(1902), - [anon_sym__Null_unspecified] = ACTIONS(1902), - [anon_sym___autoreleasing] = ACTIONS(1902), - [anon_sym___nullable] = ACTIONS(1902), - [anon_sym___nonnull] = ACTIONS(1902), - [anon_sym___strong] = ACTIONS(1902), - [anon_sym___weak] = ACTIONS(1902), - [anon_sym___bridge] = ACTIONS(1902), - [anon_sym___bridge_transfer] = ACTIONS(1902), - [anon_sym___bridge_retained] = ACTIONS(1902), - [anon_sym___unsafe_unretained] = ACTIONS(1902), - [anon_sym___block] = ACTIONS(1902), - [anon_sym___kindof] = ACTIONS(1902), - [anon_sym___unused] = ACTIONS(1902), - [anon_sym__Complex] = ACTIONS(1902), - [anon_sym___complex] = ACTIONS(1902), - [anon_sym_IBOutlet] = ACTIONS(1902), - [anon_sym_IBInspectable] = ACTIONS(1902), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1902), - [anon_sym_signed] = ACTIONS(1902), - [anon_sym_unsigned] = ACTIONS(1902), - [anon_sym_long] = ACTIONS(1902), - [anon_sym_short] = ACTIONS(1902), - [sym_primitive_type] = ACTIONS(1902), - [anon_sym_enum] = ACTIONS(1902), - [anon_sym_NS_ENUM] = ACTIONS(1902), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1902), - [anon_sym_NS_OPTIONS] = ACTIONS(1902), - [anon_sym_struct] = ACTIONS(1902), - [anon_sym_union] = ACTIONS(1902), - [anon_sym_if] = ACTIONS(1902), - [anon_sym_switch] = ACTIONS(1902), - [anon_sym_case] = ACTIONS(1902), - [anon_sym_default] = ACTIONS(1902), - [anon_sym_while] = ACTIONS(1902), - [anon_sym_do] = ACTIONS(1902), - [anon_sym_for] = ACTIONS(1902), - [anon_sym_return] = ACTIONS(1902), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1902), - [anon_sym_goto] = ACTIONS(1902), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1904), - [anon_sym_u_SQUOTE] = ACTIONS(1904), - [anon_sym_U_SQUOTE] = ACTIONS(1904), - [anon_sym_u8_SQUOTE] = ACTIONS(1904), - [anon_sym_SQUOTE] = ACTIONS(1904), - [anon_sym_L_DQUOTE] = ACTIONS(1904), - [anon_sym_u_DQUOTE] = ACTIONS(1904), - [anon_sym_U_DQUOTE] = ACTIONS(1904), - [anon_sym_u8_DQUOTE] = ACTIONS(1904), - [anon_sym_DQUOTE] = ACTIONS(1904), - [sym_true] = ACTIONS(1902), - [sym_false] = ACTIONS(1902), - [sym_null] = ACTIONS(1902), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1904), - [anon_sym_ATimport] = ACTIONS(1904), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1902), - [anon_sym_ATcompatibility_alias] = ACTIONS(1904), - [anon_sym_ATprotocol] = ACTIONS(1904), - [anon_sym_ATclass] = ACTIONS(1904), - [anon_sym_ATinterface] = ACTIONS(1904), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1902), - [sym_method_attribute_specifier] = ACTIONS(1902), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1902), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1902), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1902), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1902), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1902), - [anon_sym_NS_AVAILABLE] = ACTIONS(1902), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1902), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_API_AVAILABLE] = ACTIONS(1902), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_API_DEPRECATED] = ACTIONS(1902), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1902), - [anon_sym___deprecated_msg] = ACTIONS(1902), - [anon_sym___deprecated_enum_msg] = ACTIONS(1902), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1902), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1902), - [anon_sym_ATimplementation] = ACTIONS(1904), - [anon_sym_typeof] = ACTIONS(1902), - [anon_sym___typeof] = ACTIONS(1902), - [anon_sym___typeof__] = ACTIONS(1902), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_nil] = ACTIONS(1902), - [sym_id] = ACTIONS(1902), - [sym_instancetype] = ACTIONS(1902), - [sym_Class] = ACTIONS(1902), - [sym_SEL] = ACTIONS(1902), - [sym_IMP] = ACTIONS(1902), - [sym_BOOL] = ACTIONS(1902), - [sym_auto] = ACTIONS(1902), - [anon_sym_ATautoreleasepool] = ACTIONS(1904), - [anon_sym_ATsynchronized] = ACTIONS(1904), - [anon_sym_ATtry] = ACTIONS(1904), - [anon_sym_ATthrow] = ACTIONS(1904), - [anon_sym_ATselector] = ACTIONS(1904), - [anon_sym_ATencode] = ACTIONS(1904), - [anon_sym_AT] = ACTIONS(1902), - [sym_YES] = ACTIONS(1902), - [sym_NO] = ACTIONS(1902), - [anon_sym___builtin_available] = ACTIONS(1902), - [anon_sym_ATavailable] = ACTIONS(1904), - [anon_sym_va_arg] = ACTIONS(1902), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1371] = { - [sym_identifier] = ACTIONS(1922), - [aux_sym_preproc_include_token1] = ACTIONS(1924), - [aux_sym_preproc_def_token1] = ACTIONS(1924), - [aux_sym_preproc_if_token1] = ACTIONS(1922), - [aux_sym_preproc_if_token2] = ACTIONS(1922), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1922), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1922), - [anon_sym_LPAREN2] = ACTIONS(1924), - [anon_sym_BANG] = ACTIONS(1924), - [anon_sym_TILDE] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_CARET] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_typedef] = ACTIONS(1922), - [anon_sym_extern] = ACTIONS(1922), - [anon_sym___attribute] = ACTIONS(1922), - [anon_sym___attribute__] = ACTIONS(1922), - [anon_sym___declspec] = ACTIONS(1922), - [anon_sym___cdecl] = ACTIONS(1922), - [anon_sym___clrcall] = ACTIONS(1922), - [anon_sym___stdcall] = ACTIONS(1922), - [anon_sym___fastcall] = ACTIONS(1922), - [anon_sym___thiscall] = ACTIONS(1922), - [anon_sym___vectorcall] = ACTIONS(1922), - [anon_sym_LBRACE] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1922), - [anon_sym_auto] = ACTIONS(1922), - [anon_sym_register] = ACTIONS(1922), - [anon_sym_inline] = ACTIONS(1922), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(1922), - [anon_sym_volatile] = ACTIONS(1922), - [anon_sym_restrict] = ACTIONS(1922), - [anon_sym__Atomic] = ACTIONS(1922), - [anon_sym_in] = ACTIONS(1922), - [anon_sym_out] = ACTIONS(1922), - [anon_sym_inout] = ACTIONS(1922), - [anon_sym_bycopy] = ACTIONS(1922), - [anon_sym_byref] = ACTIONS(1922), - [anon_sym_oneway] = ACTIONS(1922), - [anon_sym__Nullable] = ACTIONS(1922), - [anon_sym__Nonnull] = ACTIONS(1922), - [anon_sym__Nullable_result] = ACTIONS(1922), - [anon_sym__Null_unspecified] = ACTIONS(1922), - [anon_sym___autoreleasing] = ACTIONS(1922), - [anon_sym___nullable] = ACTIONS(1922), - [anon_sym___nonnull] = ACTIONS(1922), - [anon_sym___strong] = ACTIONS(1922), - [anon_sym___weak] = ACTIONS(1922), - [anon_sym___bridge] = ACTIONS(1922), - [anon_sym___bridge_transfer] = ACTIONS(1922), - [anon_sym___bridge_retained] = ACTIONS(1922), - [anon_sym___unsafe_unretained] = ACTIONS(1922), - [anon_sym___block] = ACTIONS(1922), - [anon_sym___kindof] = ACTIONS(1922), - [anon_sym___unused] = ACTIONS(1922), - [anon_sym__Complex] = ACTIONS(1922), - [anon_sym___complex] = ACTIONS(1922), - [anon_sym_IBOutlet] = ACTIONS(1922), - [anon_sym_IBInspectable] = ACTIONS(1922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1922), - [anon_sym_signed] = ACTIONS(1922), - [anon_sym_unsigned] = ACTIONS(1922), - [anon_sym_long] = ACTIONS(1922), - [anon_sym_short] = ACTIONS(1922), - [sym_primitive_type] = ACTIONS(1922), - [anon_sym_enum] = ACTIONS(1922), - [anon_sym_NS_ENUM] = ACTIONS(1922), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1922), - [anon_sym_NS_OPTIONS] = ACTIONS(1922), - [anon_sym_struct] = ACTIONS(1922), - [anon_sym_union] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(1922), - [anon_sym_switch] = ACTIONS(1922), - [anon_sym_case] = ACTIONS(1922), - [anon_sym_default] = ACTIONS(1922), - [anon_sym_while] = ACTIONS(1922), - [anon_sym_do] = ACTIONS(1922), - [anon_sym_for] = ACTIONS(1922), - [anon_sym_return] = ACTIONS(1922), - [anon_sym_break] = ACTIONS(1922), - [anon_sym_continue] = ACTIONS(1922), - [anon_sym_goto] = ACTIONS(1922), - [anon_sym_DASH_DASH] = ACTIONS(1924), - [anon_sym_PLUS_PLUS] = ACTIONS(1924), - [anon_sym_sizeof] = ACTIONS(1922), - [sym_number_literal] = ACTIONS(1924), - [anon_sym_L_SQUOTE] = ACTIONS(1924), - [anon_sym_u_SQUOTE] = ACTIONS(1924), - [anon_sym_U_SQUOTE] = ACTIONS(1924), - [anon_sym_u8_SQUOTE] = ACTIONS(1924), - [anon_sym_SQUOTE] = ACTIONS(1924), - [anon_sym_L_DQUOTE] = ACTIONS(1924), - [anon_sym_u_DQUOTE] = ACTIONS(1924), - [anon_sym_U_DQUOTE] = ACTIONS(1924), - [anon_sym_u8_DQUOTE] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1924), - [sym_true] = ACTIONS(1922), - [sym_false] = ACTIONS(1922), - [sym_null] = ACTIONS(1922), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1924), - [anon_sym_ATimport] = ACTIONS(1924), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1922), - [anon_sym_ATcompatibility_alias] = ACTIONS(1924), - [anon_sym_ATprotocol] = ACTIONS(1924), - [anon_sym_ATclass] = ACTIONS(1924), - [anon_sym_ATinterface] = ACTIONS(1924), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1922), - [sym_method_attribute_specifier] = ACTIONS(1922), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1922), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1922), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1922), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1922), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1922), - [anon_sym_NS_AVAILABLE] = ACTIONS(1922), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1922), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_API_AVAILABLE] = ACTIONS(1922), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_API_DEPRECATED] = ACTIONS(1922), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1922), - [anon_sym___deprecated_msg] = ACTIONS(1922), - [anon_sym___deprecated_enum_msg] = ACTIONS(1922), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1922), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1922), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1922), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1922), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1922), - [anon_sym_ATimplementation] = ACTIONS(1924), - [anon_sym_typeof] = ACTIONS(1922), - [anon_sym___typeof] = ACTIONS(1922), - [anon_sym___typeof__] = ACTIONS(1922), - [sym_self] = ACTIONS(1922), - [sym_super] = ACTIONS(1922), - [sym_nil] = ACTIONS(1922), - [sym_id] = ACTIONS(1922), - [sym_instancetype] = ACTIONS(1922), - [sym_Class] = ACTIONS(1922), - [sym_SEL] = ACTIONS(1922), - [sym_IMP] = ACTIONS(1922), - [sym_BOOL] = ACTIONS(1922), - [sym_auto] = ACTIONS(1922), - [anon_sym_ATautoreleasepool] = ACTIONS(1924), - [anon_sym_ATsynchronized] = ACTIONS(1924), - [anon_sym_ATtry] = ACTIONS(1924), - [anon_sym_ATthrow] = ACTIONS(1924), - [anon_sym_ATselector] = ACTIONS(1924), - [anon_sym_ATencode] = ACTIONS(1924), - [anon_sym_AT] = ACTIONS(1922), - [sym_YES] = ACTIONS(1922), - [sym_NO] = ACTIONS(1922), - [anon_sym___builtin_available] = ACTIONS(1922), - [anon_sym_ATavailable] = ACTIONS(1924), - [anon_sym_va_arg] = ACTIONS(1922), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1372] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1373] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1374] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1375] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1376] = { - [sym_identifier] = ACTIONS(2022), - [aux_sym_preproc_include_token1] = ACTIONS(2024), - [aux_sym_preproc_def_token1] = ACTIONS(2024), - [aux_sym_preproc_if_token1] = ACTIONS(2022), - [aux_sym_preproc_if_token2] = ACTIONS(2022), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2022), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2022), - [anon_sym_LPAREN2] = ACTIONS(2024), - [anon_sym_BANG] = ACTIONS(2024), - [anon_sym_TILDE] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2022), - [anon_sym_PLUS] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_typedef] = ACTIONS(2022), - [anon_sym_extern] = ACTIONS(2022), - [anon_sym___attribute] = ACTIONS(2022), - [anon_sym___attribute__] = ACTIONS(2022), - [anon_sym___declspec] = ACTIONS(2022), - [anon_sym___cdecl] = ACTIONS(2022), - [anon_sym___clrcall] = ACTIONS(2022), - [anon_sym___stdcall] = ACTIONS(2022), - [anon_sym___fastcall] = ACTIONS(2022), - [anon_sym___thiscall] = ACTIONS(2022), - [anon_sym___vectorcall] = ACTIONS(2022), - [anon_sym_LBRACE] = ACTIONS(2024), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_static] = ACTIONS(2022), - [anon_sym_auto] = ACTIONS(2022), - [anon_sym_register] = ACTIONS(2022), - [anon_sym_inline] = ACTIONS(2022), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2022), - [anon_sym_const] = ACTIONS(2022), - [anon_sym_volatile] = ACTIONS(2022), - [anon_sym_restrict] = ACTIONS(2022), - [anon_sym__Atomic] = ACTIONS(2022), - [anon_sym_in] = ACTIONS(2022), - [anon_sym_out] = ACTIONS(2022), - [anon_sym_inout] = ACTIONS(2022), - [anon_sym_bycopy] = ACTIONS(2022), - [anon_sym_byref] = ACTIONS(2022), - [anon_sym_oneway] = ACTIONS(2022), - [anon_sym__Nullable] = ACTIONS(2022), - [anon_sym__Nonnull] = ACTIONS(2022), - [anon_sym__Nullable_result] = ACTIONS(2022), - [anon_sym__Null_unspecified] = ACTIONS(2022), - [anon_sym___autoreleasing] = ACTIONS(2022), - [anon_sym___nullable] = ACTIONS(2022), - [anon_sym___nonnull] = ACTIONS(2022), - [anon_sym___strong] = ACTIONS(2022), - [anon_sym___weak] = ACTIONS(2022), - [anon_sym___bridge] = ACTIONS(2022), - [anon_sym___bridge_transfer] = ACTIONS(2022), - [anon_sym___bridge_retained] = ACTIONS(2022), - [anon_sym___unsafe_unretained] = ACTIONS(2022), - [anon_sym___block] = ACTIONS(2022), - [anon_sym___kindof] = ACTIONS(2022), - [anon_sym___unused] = ACTIONS(2022), - [anon_sym__Complex] = ACTIONS(2022), - [anon_sym___complex] = ACTIONS(2022), - [anon_sym_IBOutlet] = ACTIONS(2022), - [anon_sym_IBInspectable] = ACTIONS(2022), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2022), - [anon_sym_signed] = ACTIONS(2022), - [anon_sym_unsigned] = ACTIONS(2022), - [anon_sym_long] = ACTIONS(2022), - [anon_sym_short] = ACTIONS(2022), - [sym_primitive_type] = ACTIONS(2022), - [anon_sym_enum] = ACTIONS(2022), - [anon_sym_NS_ENUM] = ACTIONS(2022), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2022), - [anon_sym_NS_OPTIONS] = ACTIONS(2022), - [anon_sym_struct] = ACTIONS(2022), - [anon_sym_union] = ACTIONS(2022), - [anon_sym_if] = ACTIONS(2022), - [anon_sym_switch] = ACTIONS(2022), - [anon_sym_case] = ACTIONS(2022), - [anon_sym_default] = ACTIONS(2022), - [anon_sym_while] = ACTIONS(2022), - [anon_sym_do] = ACTIONS(2022), - [anon_sym_for] = ACTIONS(2022), - [anon_sym_return] = ACTIONS(2022), - [anon_sym_break] = ACTIONS(2022), - [anon_sym_continue] = ACTIONS(2022), - [anon_sym_goto] = ACTIONS(2022), - [anon_sym_DASH_DASH] = ACTIONS(2024), - [anon_sym_PLUS_PLUS] = ACTIONS(2024), - [anon_sym_sizeof] = ACTIONS(2022), - [sym_number_literal] = ACTIONS(2024), - [anon_sym_L_SQUOTE] = ACTIONS(2024), - [anon_sym_u_SQUOTE] = ACTIONS(2024), - [anon_sym_U_SQUOTE] = ACTIONS(2024), - [anon_sym_u8_SQUOTE] = ACTIONS(2024), - [anon_sym_SQUOTE] = ACTIONS(2024), - [anon_sym_L_DQUOTE] = ACTIONS(2024), - [anon_sym_u_DQUOTE] = ACTIONS(2024), - [anon_sym_U_DQUOTE] = ACTIONS(2024), - [anon_sym_u8_DQUOTE] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2024), - [sym_true] = ACTIONS(2022), - [sym_false] = ACTIONS(2022), - [sym_null] = ACTIONS(2022), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2024), - [anon_sym_ATimport] = ACTIONS(2024), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2022), - [anon_sym_ATcompatibility_alias] = ACTIONS(2024), - [anon_sym_ATprotocol] = ACTIONS(2024), - [anon_sym_ATclass] = ACTIONS(2024), - [anon_sym_ATinterface] = ACTIONS(2024), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2022), - [sym_method_attribute_specifier] = ACTIONS(2022), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2022), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2022), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2022), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2022), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2022), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2022), - [anon_sym_NS_AVAILABLE] = ACTIONS(2022), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2022), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_API_AVAILABLE] = ACTIONS(2022), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2022), - [anon_sym_API_DEPRECATED] = ACTIONS(2022), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2022), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2022), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2022), - [anon_sym___deprecated_msg] = ACTIONS(2022), - [anon_sym___deprecated_enum_msg] = ACTIONS(2022), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2022), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2022), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2022), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2022), - [anon_sym_ATimplementation] = ACTIONS(2024), - [anon_sym_typeof] = ACTIONS(2022), - [anon_sym___typeof] = ACTIONS(2022), - [anon_sym___typeof__] = ACTIONS(2022), - [sym_self] = ACTIONS(2022), - [sym_super] = ACTIONS(2022), - [sym_nil] = ACTIONS(2022), - [sym_id] = ACTIONS(2022), - [sym_instancetype] = ACTIONS(2022), - [sym_Class] = ACTIONS(2022), - [sym_SEL] = ACTIONS(2022), - [sym_IMP] = ACTIONS(2022), - [sym_BOOL] = ACTIONS(2022), - [sym_auto] = ACTIONS(2022), - [anon_sym_ATautoreleasepool] = ACTIONS(2024), - [anon_sym_ATsynchronized] = ACTIONS(2024), - [anon_sym_ATtry] = ACTIONS(2024), - [anon_sym_ATthrow] = ACTIONS(2024), - [anon_sym_ATselector] = ACTIONS(2024), - [anon_sym_ATencode] = ACTIONS(2024), - [anon_sym_AT] = ACTIONS(2022), - [sym_YES] = ACTIONS(2022), - [sym_NO] = ACTIONS(2022), - [anon_sym___builtin_available] = ACTIONS(2022), - [anon_sym_ATavailable] = ACTIONS(2024), - [anon_sym_va_arg] = ACTIONS(2022), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1377] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1378] = { - [sym_identifier] = ACTIONS(2030), - [aux_sym_preproc_include_token1] = ACTIONS(2032), - [aux_sym_preproc_def_token1] = ACTIONS(2032), - [aux_sym_preproc_if_token1] = ACTIONS(2030), - [aux_sym_preproc_if_token2] = ACTIONS(2030), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2030), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2030), - [anon_sym_LPAREN2] = ACTIONS(2032), - [anon_sym_BANG] = ACTIONS(2032), - [anon_sym_TILDE] = ACTIONS(2032), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_PLUS] = ACTIONS(2030), - [anon_sym_STAR] = ACTIONS(2032), - [anon_sym_CARET] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_typedef] = ACTIONS(2030), - [anon_sym_extern] = ACTIONS(2030), - [anon_sym___attribute] = ACTIONS(2030), - [anon_sym___attribute__] = ACTIONS(2030), - [anon_sym___declspec] = ACTIONS(2030), - [anon_sym___cdecl] = ACTIONS(2030), - [anon_sym___clrcall] = ACTIONS(2030), - [anon_sym___stdcall] = ACTIONS(2030), - [anon_sym___fastcall] = ACTIONS(2030), - [anon_sym___thiscall] = ACTIONS(2030), - [anon_sym___vectorcall] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2032), - [anon_sym_LBRACK] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2030), - [anon_sym_auto] = ACTIONS(2030), - [anon_sym_register] = ACTIONS(2030), - [anon_sym_inline] = ACTIONS(2030), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(2030), - [anon_sym_volatile] = ACTIONS(2030), - [anon_sym_restrict] = ACTIONS(2030), - [anon_sym__Atomic] = ACTIONS(2030), - [anon_sym_in] = ACTIONS(2030), - [anon_sym_out] = ACTIONS(2030), - [anon_sym_inout] = ACTIONS(2030), - [anon_sym_bycopy] = ACTIONS(2030), - [anon_sym_byref] = ACTIONS(2030), - [anon_sym_oneway] = ACTIONS(2030), - [anon_sym__Nullable] = ACTIONS(2030), - [anon_sym__Nonnull] = ACTIONS(2030), - [anon_sym__Nullable_result] = ACTIONS(2030), - [anon_sym__Null_unspecified] = ACTIONS(2030), - [anon_sym___autoreleasing] = ACTIONS(2030), - [anon_sym___nullable] = ACTIONS(2030), - [anon_sym___nonnull] = ACTIONS(2030), - [anon_sym___strong] = ACTIONS(2030), - [anon_sym___weak] = ACTIONS(2030), - [anon_sym___bridge] = ACTIONS(2030), - [anon_sym___bridge_transfer] = ACTIONS(2030), - [anon_sym___bridge_retained] = ACTIONS(2030), - [anon_sym___unsafe_unretained] = ACTIONS(2030), - [anon_sym___block] = ACTIONS(2030), - [anon_sym___kindof] = ACTIONS(2030), - [anon_sym___unused] = ACTIONS(2030), - [anon_sym__Complex] = ACTIONS(2030), - [anon_sym___complex] = ACTIONS(2030), - [anon_sym_IBOutlet] = ACTIONS(2030), - [anon_sym_IBInspectable] = ACTIONS(2030), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2030), - [anon_sym_signed] = ACTIONS(2030), - [anon_sym_unsigned] = ACTIONS(2030), - [anon_sym_long] = ACTIONS(2030), - [anon_sym_short] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2030), - [anon_sym_enum] = ACTIONS(2030), - [anon_sym_NS_ENUM] = ACTIONS(2030), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2030), - [anon_sym_NS_OPTIONS] = ACTIONS(2030), - [anon_sym_struct] = ACTIONS(2030), - [anon_sym_union] = ACTIONS(2030), - [anon_sym_if] = ACTIONS(2030), - [anon_sym_switch] = ACTIONS(2030), - [anon_sym_case] = ACTIONS(2030), - [anon_sym_default] = ACTIONS(2030), - [anon_sym_while] = ACTIONS(2030), - [anon_sym_do] = ACTIONS(2030), - [anon_sym_for] = ACTIONS(2030), - [anon_sym_return] = ACTIONS(2030), - [anon_sym_break] = ACTIONS(2030), - [anon_sym_continue] = ACTIONS(2030), - [anon_sym_goto] = ACTIONS(2030), - [anon_sym_DASH_DASH] = ACTIONS(2032), - [anon_sym_PLUS_PLUS] = ACTIONS(2032), - [anon_sym_sizeof] = ACTIONS(2030), - [sym_number_literal] = ACTIONS(2032), - [anon_sym_L_SQUOTE] = ACTIONS(2032), - [anon_sym_u_SQUOTE] = ACTIONS(2032), - [anon_sym_U_SQUOTE] = ACTIONS(2032), - [anon_sym_u8_SQUOTE] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [anon_sym_L_DQUOTE] = ACTIONS(2032), - [anon_sym_u_DQUOTE] = ACTIONS(2032), - [anon_sym_U_DQUOTE] = ACTIONS(2032), - [anon_sym_u8_DQUOTE] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [sym_true] = ACTIONS(2030), - [sym_false] = ACTIONS(2030), - [sym_null] = ACTIONS(2030), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2032), - [anon_sym_ATimport] = ACTIONS(2032), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2030), - [anon_sym_ATcompatibility_alias] = ACTIONS(2032), - [anon_sym_ATprotocol] = ACTIONS(2032), - [anon_sym_ATclass] = ACTIONS(2032), - [anon_sym_ATinterface] = ACTIONS(2032), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2030), - [sym_method_attribute_specifier] = ACTIONS(2030), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2030), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2030), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2030), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2030), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2030), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2030), - [anon_sym_NS_AVAILABLE] = ACTIONS(2030), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2030), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_API_AVAILABLE] = ACTIONS(2030), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2030), - [anon_sym_API_DEPRECATED] = ACTIONS(2030), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2030), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2030), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2030), - [anon_sym___deprecated_msg] = ACTIONS(2030), - [anon_sym___deprecated_enum_msg] = ACTIONS(2030), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2030), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2030), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2030), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2030), - [anon_sym_ATimplementation] = ACTIONS(2032), - [anon_sym_typeof] = ACTIONS(2030), - [anon_sym___typeof] = ACTIONS(2030), - [anon_sym___typeof__] = ACTIONS(2030), - [sym_self] = ACTIONS(2030), - [sym_super] = ACTIONS(2030), - [sym_nil] = ACTIONS(2030), - [sym_id] = ACTIONS(2030), - [sym_instancetype] = ACTIONS(2030), - [sym_Class] = ACTIONS(2030), - [sym_SEL] = ACTIONS(2030), - [sym_IMP] = ACTIONS(2030), - [sym_BOOL] = ACTIONS(2030), - [sym_auto] = ACTIONS(2030), - [anon_sym_ATautoreleasepool] = ACTIONS(2032), - [anon_sym_ATsynchronized] = ACTIONS(2032), - [anon_sym_ATtry] = ACTIONS(2032), - [anon_sym_ATthrow] = ACTIONS(2032), - [anon_sym_ATselector] = ACTIONS(2032), - [anon_sym_ATencode] = ACTIONS(2032), - [anon_sym_AT] = ACTIONS(2030), - [sym_YES] = ACTIONS(2030), - [sym_NO] = ACTIONS(2030), - [anon_sym___builtin_available] = ACTIONS(2030), - [anon_sym_ATavailable] = ACTIONS(2032), - [anon_sym_va_arg] = ACTIONS(2030), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1379] = { - [sym_identifier] = ACTIONS(2090), - [aux_sym_preproc_include_token1] = ACTIONS(2092), - [aux_sym_preproc_def_token1] = ACTIONS(2092), - [aux_sym_preproc_if_token1] = ACTIONS(2090), - [aux_sym_preproc_if_token2] = ACTIONS(2090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2090), - [anon_sym_LPAREN2] = ACTIONS(2092), - [anon_sym_BANG] = ACTIONS(2092), - [anon_sym_TILDE] = ACTIONS(2092), - [anon_sym_DASH] = ACTIONS(2090), - [anon_sym_PLUS] = ACTIONS(2090), - [anon_sym_STAR] = ACTIONS(2092), - [anon_sym_CARET] = ACTIONS(2092), - [anon_sym_AMP] = ACTIONS(2092), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_typedef] = ACTIONS(2090), - [anon_sym_extern] = ACTIONS(2090), - [anon_sym___attribute] = ACTIONS(2090), - [anon_sym___attribute__] = ACTIONS(2090), - [anon_sym___declspec] = ACTIONS(2090), - [anon_sym___cdecl] = ACTIONS(2090), - [anon_sym___clrcall] = ACTIONS(2090), - [anon_sym___stdcall] = ACTIONS(2090), - [anon_sym___fastcall] = ACTIONS(2090), - [anon_sym___thiscall] = ACTIONS(2090), - [anon_sym___vectorcall] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2092), - [anon_sym_static] = ACTIONS(2090), - [anon_sym_auto] = ACTIONS(2090), - [anon_sym_register] = ACTIONS(2090), - [anon_sym_inline] = ACTIONS(2090), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2090), - [anon_sym_volatile] = ACTIONS(2090), - [anon_sym_restrict] = ACTIONS(2090), - [anon_sym__Atomic] = ACTIONS(2090), - [anon_sym_in] = ACTIONS(2090), - [anon_sym_out] = ACTIONS(2090), - [anon_sym_inout] = ACTIONS(2090), - [anon_sym_bycopy] = ACTIONS(2090), - [anon_sym_byref] = ACTIONS(2090), - [anon_sym_oneway] = ACTIONS(2090), - [anon_sym__Nullable] = ACTIONS(2090), - [anon_sym__Nonnull] = ACTIONS(2090), - [anon_sym__Nullable_result] = ACTIONS(2090), - [anon_sym__Null_unspecified] = ACTIONS(2090), - [anon_sym___autoreleasing] = ACTIONS(2090), - [anon_sym___nullable] = ACTIONS(2090), - [anon_sym___nonnull] = ACTIONS(2090), - [anon_sym___strong] = ACTIONS(2090), - [anon_sym___weak] = ACTIONS(2090), - [anon_sym___bridge] = ACTIONS(2090), - [anon_sym___bridge_transfer] = ACTIONS(2090), - [anon_sym___bridge_retained] = ACTIONS(2090), - [anon_sym___unsafe_unretained] = ACTIONS(2090), - [anon_sym___block] = ACTIONS(2090), - [anon_sym___kindof] = ACTIONS(2090), - [anon_sym___unused] = ACTIONS(2090), - [anon_sym__Complex] = ACTIONS(2090), - [anon_sym___complex] = ACTIONS(2090), - [anon_sym_IBOutlet] = ACTIONS(2090), - [anon_sym_IBInspectable] = ACTIONS(2090), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2090), - [anon_sym_signed] = ACTIONS(2090), - [anon_sym_unsigned] = ACTIONS(2090), - [anon_sym_long] = ACTIONS(2090), - [anon_sym_short] = ACTIONS(2090), - [sym_primitive_type] = ACTIONS(2090), - [anon_sym_enum] = ACTIONS(2090), - [anon_sym_NS_ENUM] = ACTIONS(2090), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2090), - [anon_sym_NS_OPTIONS] = ACTIONS(2090), - [anon_sym_struct] = ACTIONS(2090), - [anon_sym_union] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2090), - [anon_sym_switch] = ACTIONS(2090), - [anon_sym_case] = ACTIONS(2090), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2090), - [anon_sym_do] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(2090), - [anon_sym_return] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_goto] = ACTIONS(2090), - [anon_sym_DASH_DASH] = ACTIONS(2092), - [anon_sym_PLUS_PLUS] = ACTIONS(2092), - [anon_sym_sizeof] = ACTIONS(2090), - [sym_number_literal] = ACTIONS(2092), - [anon_sym_L_SQUOTE] = ACTIONS(2092), - [anon_sym_u_SQUOTE] = ACTIONS(2092), - [anon_sym_U_SQUOTE] = ACTIONS(2092), - [anon_sym_u8_SQUOTE] = ACTIONS(2092), - [anon_sym_SQUOTE] = ACTIONS(2092), - [anon_sym_L_DQUOTE] = ACTIONS(2092), - [anon_sym_u_DQUOTE] = ACTIONS(2092), - [anon_sym_U_DQUOTE] = ACTIONS(2092), - [anon_sym_u8_DQUOTE] = ACTIONS(2092), - [anon_sym_DQUOTE] = ACTIONS(2092), - [sym_true] = ACTIONS(2090), - [sym_false] = ACTIONS(2090), - [sym_null] = ACTIONS(2090), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2092), - [anon_sym_ATimport] = ACTIONS(2092), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2090), - [anon_sym_ATcompatibility_alias] = ACTIONS(2092), - [anon_sym_ATprotocol] = ACTIONS(2092), - [anon_sym_ATclass] = ACTIONS(2092), - [anon_sym_ATinterface] = ACTIONS(2092), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2090), - [sym_method_attribute_specifier] = ACTIONS(2090), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2090), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2090), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2090), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2090), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2090), - [anon_sym_NS_AVAILABLE] = ACTIONS(2090), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2090), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_API_AVAILABLE] = ACTIONS(2090), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_API_DEPRECATED] = ACTIONS(2090), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2090), - [anon_sym___deprecated_msg] = ACTIONS(2090), - [anon_sym___deprecated_enum_msg] = ACTIONS(2090), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2090), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2090), - [anon_sym_ATimplementation] = ACTIONS(2092), - [anon_sym_typeof] = ACTIONS(2090), - [anon_sym___typeof] = ACTIONS(2090), - [anon_sym___typeof__] = ACTIONS(2090), - [sym_self] = ACTIONS(2090), - [sym_super] = ACTIONS(2090), - [sym_nil] = ACTIONS(2090), - [sym_id] = ACTIONS(2090), - [sym_instancetype] = ACTIONS(2090), - [sym_Class] = ACTIONS(2090), - [sym_SEL] = ACTIONS(2090), - [sym_IMP] = ACTIONS(2090), - [sym_BOOL] = ACTIONS(2090), - [sym_auto] = ACTIONS(2090), - [anon_sym_ATautoreleasepool] = ACTIONS(2092), - [anon_sym_ATsynchronized] = ACTIONS(2092), - [anon_sym_ATtry] = ACTIONS(2092), - [anon_sym_ATthrow] = ACTIONS(2092), - [anon_sym_ATselector] = ACTIONS(2092), - [anon_sym_ATencode] = ACTIONS(2092), - [anon_sym_AT] = ACTIONS(2090), - [sym_YES] = ACTIONS(2090), - [sym_NO] = ACTIONS(2090), - [anon_sym___builtin_available] = ACTIONS(2090), - [anon_sym_ATavailable] = ACTIONS(2092), - [anon_sym_va_arg] = ACTIONS(2090), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1380] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1381] = { - [sym_identifier] = ACTIONS(1958), - [aux_sym_preproc_include_token1] = ACTIONS(1960), - [aux_sym_preproc_def_token1] = ACTIONS(1960), - [aux_sym_preproc_if_token1] = ACTIONS(1958), - [aux_sym_preproc_if_token2] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [anon_sym_LPAREN2] = ACTIONS(1960), - [anon_sym_BANG] = ACTIONS(1960), - [anon_sym_TILDE] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_STAR] = ACTIONS(1960), - [anon_sym_CARET] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_SEMI] = ACTIONS(1960), - [anon_sym_typedef] = ACTIONS(1958), - [anon_sym_extern] = ACTIONS(1958), - [anon_sym___attribute] = ACTIONS(1958), - [anon_sym___attribute__] = ACTIONS(1958), - [anon_sym___declspec] = ACTIONS(1958), - [anon_sym___cdecl] = ACTIONS(1958), - [anon_sym___clrcall] = ACTIONS(1958), - [anon_sym___stdcall] = ACTIONS(1958), - [anon_sym___fastcall] = ACTIONS(1958), - [anon_sym___thiscall] = ACTIONS(1958), - [anon_sym___vectorcall] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1960), - [anon_sym_LBRACK] = ACTIONS(1960), - [anon_sym_static] = ACTIONS(1958), - [anon_sym_auto] = ACTIONS(1958), - [anon_sym_register] = ACTIONS(1958), - [anon_sym_inline] = ACTIONS(1958), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1958), - [anon_sym_const] = ACTIONS(1958), - [anon_sym_volatile] = ACTIONS(1958), - [anon_sym_restrict] = ACTIONS(1958), - [anon_sym__Atomic] = ACTIONS(1958), - [anon_sym_in] = ACTIONS(1958), - [anon_sym_out] = ACTIONS(1958), - [anon_sym_inout] = ACTIONS(1958), - [anon_sym_bycopy] = ACTIONS(1958), - [anon_sym_byref] = ACTIONS(1958), - [anon_sym_oneway] = ACTIONS(1958), - [anon_sym__Nullable] = ACTIONS(1958), - [anon_sym__Nonnull] = ACTIONS(1958), - [anon_sym__Nullable_result] = ACTIONS(1958), - [anon_sym__Null_unspecified] = ACTIONS(1958), - [anon_sym___autoreleasing] = ACTIONS(1958), - [anon_sym___nullable] = ACTIONS(1958), - [anon_sym___nonnull] = ACTIONS(1958), - [anon_sym___strong] = ACTIONS(1958), - [anon_sym___weak] = ACTIONS(1958), - [anon_sym___bridge] = ACTIONS(1958), - [anon_sym___bridge_transfer] = ACTIONS(1958), - [anon_sym___bridge_retained] = ACTIONS(1958), - [anon_sym___unsafe_unretained] = ACTIONS(1958), - [anon_sym___block] = ACTIONS(1958), - [anon_sym___kindof] = ACTIONS(1958), - [anon_sym___unused] = ACTIONS(1958), - [anon_sym__Complex] = ACTIONS(1958), - [anon_sym___complex] = ACTIONS(1958), - [anon_sym_IBOutlet] = ACTIONS(1958), - [anon_sym_IBInspectable] = ACTIONS(1958), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1958), - [anon_sym_signed] = ACTIONS(1958), - [anon_sym_unsigned] = ACTIONS(1958), - [anon_sym_long] = ACTIONS(1958), - [anon_sym_short] = ACTIONS(1958), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_enum] = ACTIONS(1958), - [anon_sym_NS_ENUM] = ACTIONS(1958), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1958), - [anon_sym_NS_OPTIONS] = ACTIONS(1958), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1958), - [anon_sym_if] = ACTIONS(1958), - [anon_sym_switch] = ACTIONS(1958), - [anon_sym_case] = ACTIONS(1958), - [anon_sym_default] = ACTIONS(1958), - [anon_sym_while] = ACTIONS(1958), - [anon_sym_do] = ACTIONS(1958), - [anon_sym_for] = ACTIONS(1958), - [anon_sym_return] = ACTIONS(1958), - [anon_sym_break] = ACTIONS(1958), - [anon_sym_continue] = ACTIONS(1958), - [anon_sym_goto] = ACTIONS(1958), - [anon_sym_DASH_DASH] = ACTIONS(1960), - [anon_sym_PLUS_PLUS] = ACTIONS(1960), - [anon_sym_sizeof] = ACTIONS(1958), - [sym_number_literal] = ACTIONS(1960), - [anon_sym_L_SQUOTE] = ACTIONS(1960), - [anon_sym_u_SQUOTE] = ACTIONS(1960), - [anon_sym_U_SQUOTE] = ACTIONS(1960), - [anon_sym_u8_SQUOTE] = ACTIONS(1960), - [anon_sym_SQUOTE] = ACTIONS(1960), - [anon_sym_L_DQUOTE] = ACTIONS(1960), - [anon_sym_u_DQUOTE] = ACTIONS(1960), - [anon_sym_U_DQUOTE] = ACTIONS(1960), - [anon_sym_u8_DQUOTE] = ACTIONS(1960), - [anon_sym_DQUOTE] = ACTIONS(1960), - [sym_true] = ACTIONS(1958), - [sym_false] = ACTIONS(1958), - [sym_null] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1960), - [anon_sym_ATimport] = ACTIONS(1960), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1958), - [anon_sym_ATcompatibility_alias] = ACTIONS(1960), - [anon_sym_ATprotocol] = ACTIONS(1960), - [anon_sym_ATclass] = ACTIONS(1960), - [anon_sym_ATinterface] = ACTIONS(1960), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1958), - [sym_method_attribute_specifier] = ACTIONS(1958), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1958), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1958), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1958), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1958), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1958), - [anon_sym_NS_AVAILABLE] = ACTIONS(1958), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1958), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_API_AVAILABLE] = ACTIONS(1958), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_API_DEPRECATED] = ACTIONS(1958), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1958), - [anon_sym___deprecated_msg] = ACTIONS(1958), - [anon_sym___deprecated_enum_msg] = ACTIONS(1958), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1958), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1958), - [anon_sym_ATimplementation] = ACTIONS(1960), - [anon_sym_typeof] = ACTIONS(1958), - [anon_sym___typeof] = ACTIONS(1958), - [anon_sym___typeof__] = ACTIONS(1958), - [sym_self] = ACTIONS(1958), - [sym_super] = ACTIONS(1958), - [sym_nil] = ACTIONS(1958), - [sym_id] = ACTIONS(1958), - [sym_instancetype] = ACTIONS(1958), - [sym_Class] = ACTIONS(1958), - [sym_SEL] = ACTIONS(1958), - [sym_IMP] = ACTIONS(1958), - [sym_BOOL] = ACTIONS(1958), - [sym_auto] = ACTIONS(1958), - [anon_sym_ATautoreleasepool] = ACTIONS(1960), - [anon_sym_ATsynchronized] = ACTIONS(1960), - [anon_sym_ATtry] = ACTIONS(1960), - [anon_sym_ATthrow] = ACTIONS(1960), - [anon_sym_ATselector] = ACTIONS(1960), - [anon_sym_ATencode] = ACTIONS(1960), - [anon_sym_AT] = ACTIONS(1958), - [sym_YES] = ACTIONS(1958), - [sym_NO] = ACTIONS(1958), - [anon_sym___builtin_available] = ACTIONS(1958), - [anon_sym_ATavailable] = ACTIONS(1960), - [anon_sym_va_arg] = ACTIONS(1958), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1382] = { - [sym_identifier] = ACTIONS(1874), - [aux_sym_preproc_include_token1] = ACTIONS(1876), - [aux_sym_preproc_def_token1] = ACTIONS(1876), - [aux_sym_preproc_if_token1] = ACTIONS(1874), - [aux_sym_preproc_if_token2] = ACTIONS(1874), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1874), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1874), - [anon_sym_LPAREN2] = ACTIONS(1876), - [anon_sym_BANG] = ACTIONS(1876), - [anon_sym_TILDE] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_PLUS] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1876), - [anon_sym_SEMI] = ACTIONS(1876), - [anon_sym_typedef] = ACTIONS(1874), - [anon_sym_extern] = ACTIONS(1874), - [anon_sym___attribute] = ACTIONS(1874), - [anon_sym___attribute__] = ACTIONS(1874), - [anon_sym___declspec] = ACTIONS(1874), - [anon_sym___cdecl] = ACTIONS(1874), - [anon_sym___clrcall] = ACTIONS(1874), - [anon_sym___stdcall] = ACTIONS(1874), - [anon_sym___fastcall] = ACTIONS(1874), - [anon_sym___thiscall] = ACTIONS(1874), - [anon_sym___vectorcall] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1876), - [anon_sym_LBRACK] = ACTIONS(1876), - [anon_sym_static] = ACTIONS(1874), - [anon_sym_auto] = ACTIONS(1874), - [anon_sym_register] = ACTIONS(1874), - [anon_sym_inline] = ACTIONS(1874), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1874), - [anon_sym_const] = ACTIONS(1874), - [anon_sym_volatile] = ACTIONS(1874), - [anon_sym_restrict] = ACTIONS(1874), - [anon_sym__Atomic] = ACTIONS(1874), - [anon_sym_in] = ACTIONS(1874), - [anon_sym_out] = ACTIONS(1874), - [anon_sym_inout] = ACTIONS(1874), - [anon_sym_bycopy] = ACTIONS(1874), - [anon_sym_byref] = ACTIONS(1874), - [anon_sym_oneway] = ACTIONS(1874), - [anon_sym__Nullable] = ACTIONS(1874), - [anon_sym__Nonnull] = ACTIONS(1874), - [anon_sym__Nullable_result] = ACTIONS(1874), - [anon_sym__Null_unspecified] = ACTIONS(1874), - [anon_sym___autoreleasing] = ACTIONS(1874), - [anon_sym___nullable] = ACTIONS(1874), - [anon_sym___nonnull] = ACTIONS(1874), - [anon_sym___strong] = ACTIONS(1874), - [anon_sym___weak] = ACTIONS(1874), - [anon_sym___bridge] = ACTIONS(1874), - [anon_sym___bridge_transfer] = ACTIONS(1874), - [anon_sym___bridge_retained] = ACTIONS(1874), - [anon_sym___unsafe_unretained] = ACTIONS(1874), - [anon_sym___block] = ACTIONS(1874), - [anon_sym___kindof] = ACTIONS(1874), - [anon_sym___unused] = ACTIONS(1874), - [anon_sym__Complex] = ACTIONS(1874), - [anon_sym___complex] = ACTIONS(1874), - [anon_sym_IBOutlet] = ACTIONS(1874), - [anon_sym_IBInspectable] = ACTIONS(1874), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1874), - [anon_sym_signed] = ACTIONS(1874), - [anon_sym_unsigned] = ACTIONS(1874), - [anon_sym_long] = ACTIONS(1874), - [anon_sym_short] = ACTIONS(1874), - [sym_primitive_type] = ACTIONS(1874), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_NS_ENUM] = ACTIONS(1874), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1874), - [anon_sym_NS_OPTIONS] = ACTIONS(1874), - [anon_sym_struct] = ACTIONS(1874), - [anon_sym_union] = ACTIONS(1874), - [anon_sym_if] = ACTIONS(1874), - [anon_sym_switch] = ACTIONS(1874), - [anon_sym_case] = ACTIONS(1874), - [anon_sym_default] = ACTIONS(1874), - [anon_sym_while] = ACTIONS(1874), - [anon_sym_do] = ACTIONS(1874), - [anon_sym_for] = ACTIONS(1874), - [anon_sym_return] = ACTIONS(1874), - [anon_sym_break] = ACTIONS(1874), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_goto] = ACTIONS(1874), - [anon_sym_DASH_DASH] = ACTIONS(1876), - [anon_sym_PLUS_PLUS] = ACTIONS(1876), - [anon_sym_sizeof] = ACTIONS(1874), - [sym_number_literal] = ACTIONS(1876), - [anon_sym_L_SQUOTE] = ACTIONS(1876), - [anon_sym_u_SQUOTE] = ACTIONS(1876), - [anon_sym_U_SQUOTE] = ACTIONS(1876), - [anon_sym_u8_SQUOTE] = ACTIONS(1876), - [anon_sym_SQUOTE] = ACTIONS(1876), - [anon_sym_L_DQUOTE] = ACTIONS(1876), - [anon_sym_u_DQUOTE] = ACTIONS(1876), - [anon_sym_U_DQUOTE] = ACTIONS(1876), - [anon_sym_u8_DQUOTE] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1876), - [sym_true] = ACTIONS(1874), - [sym_false] = ACTIONS(1874), - [sym_null] = ACTIONS(1874), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1876), - [anon_sym_ATimport] = ACTIONS(1876), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1874), - [anon_sym_ATcompatibility_alias] = ACTIONS(1876), - [anon_sym_ATprotocol] = ACTIONS(1876), - [anon_sym_ATclass] = ACTIONS(1876), - [anon_sym_ATinterface] = ACTIONS(1876), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1874), - [sym_method_attribute_specifier] = ACTIONS(1874), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1874), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1874), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1874), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1874), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1874), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1874), - [anon_sym_NS_AVAILABLE] = ACTIONS(1874), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1874), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1874), - [anon_sym_API_AVAILABLE] = ACTIONS(1874), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1874), - [anon_sym_API_DEPRECATED] = ACTIONS(1874), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1874), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1874), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1874), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1874), - [anon_sym___deprecated_msg] = ACTIONS(1874), - [anon_sym___deprecated_enum_msg] = ACTIONS(1874), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1874), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1874), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1874), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1874), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1874), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1874), - [anon_sym_ATimplementation] = ACTIONS(1876), - [anon_sym_typeof] = ACTIONS(1874), - [anon_sym___typeof] = ACTIONS(1874), - [anon_sym___typeof__] = ACTIONS(1874), - [sym_self] = ACTIONS(1874), - [sym_super] = ACTIONS(1874), - [sym_nil] = ACTIONS(1874), - [sym_id] = ACTIONS(1874), - [sym_instancetype] = ACTIONS(1874), - [sym_Class] = ACTIONS(1874), - [sym_SEL] = ACTIONS(1874), - [sym_IMP] = ACTIONS(1874), - [sym_BOOL] = ACTIONS(1874), - [sym_auto] = ACTIONS(1874), - [anon_sym_ATautoreleasepool] = ACTIONS(1876), - [anon_sym_ATsynchronized] = ACTIONS(1876), - [anon_sym_ATtry] = ACTIONS(1876), - [anon_sym_ATthrow] = ACTIONS(1876), - [anon_sym_ATselector] = ACTIONS(1876), - [anon_sym_ATencode] = ACTIONS(1876), - [anon_sym_AT] = ACTIONS(1874), - [sym_YES] = ACTIONS(1874), - [sym_NO] = ACTIONS(1874), - [anon_sym___builtin_available] = ACTIONS(1874), - [anon_sym_ATavailable] = ACTIONS(1876), - [anon_sym_va_arg] = ACTIONS(1874), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1383] = { - [sym_identifier] = ACTIONS(1878), - [aux_sym_preproc_include_token1] = ACTIONS(1880), - [aux_sym_preproc_def_token1] = ACTIONS(1880), - [aux_sym_preproc_if_token1] = ACTIONS(1878), - [aux_sym_preproc_if_token2] = ACTIONS(1878), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1878), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1878), - [anon_sym_LPAREN2] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1880), - [anon_sym_TILDE] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1878), - [anon_sym_PLUS] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_CARET] = ACTIONS(1880), - [anon_sym_AMP] = ACTIONS(1880), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_typedef] = ACTIONS(1878), - [anon_sym_extern] = ACTIONS(1878), - [anon_sym___attribute] = ACTIONS(1878), - [anon_sym___attribute__] = ACTIONS(1878), - [anon_sym___declspec] = ACTIONS(1878), - [anon_sym___cdecl] = ACTIONS(1878), - [anon_sym___clrcall] = ACTIONS(1878), - [anon_sym___stdcall] = ACTIONS(1878), - [anon_sym___fastcall] = ACTIONS(1878), - [anon_sym___thiscall] = ACTIONS(1878), - [anon_sym___vectorcall] = ACTIONS(1878), - [anon_sym_LBRACE] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(1880), - [anon_sym_static] = ACTIONS(1878), - [anon_sym_auto] = ACTIONS(1878), - [anon_sym_register] = ACTIONS(1878), - [anon_sym_inline] = ACTIONS(1878), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1878), - [anon_sym_const] = ACTIONS(1878), - [anon_sym_volatile] = ACTIONS(1878), - [anon_sym_restrict] = ACTIONS(1878), - [anon_sym__Atomic] = ACTIONS(1878), - [anon_sym_in] = ACTIONS(1878), - [anon_sym_out] = ACTIONS(1878), - [anon_sym_inout] = ACTIONS(1878), - [anon_sym_bycopy] = ACTIONS(1878), - [anon_sym_byref] = ACTIONS(1878), - [anon_sym_oneway] = ACTIONS(1878), - [anon_sym__Nullable] = ACTIONS(1878), - [anon_sym__Nonnull] = ACTIONS(1878), - [anon_sym__Nullable_result] = ACTIONS(1878), - [anon_sym__Null_unspecified] = ACTIONS(1878), - [anon_sym___autoreleasing] = ACTIONS(1878), - [anon_sym___nullable] = ACTIONS(1878), - [anon_sym___nonnull] = ACTIONS(1878), - [anon_sym___strong] = ACTIONS(1878), - [anon_sym___weak] = ACTIONS(1878), - [anon_sym___bridge] = ACTIONS(1878), - [anon_sym___bridge_transfer] = ACTIONS(1878), - [anon_sym___bridge_retained] = ACTIONS(1878), - [anon_sym___unsafe_unretained] = ACTIONS(1878), - [anon_sym___block] = ACTIONS(1878), - [anon_sym___kindof] = ACTIONS(1878), - [anon_sym___unused] = ACTIONS(1878), - [anon_sym__Complex] = ACTIONS(1878), - [anon_sym___complex] = ACTIONS(1878), - [anon_sym_IBOutlet] = ACTIONS(1878), - [anon_sym_IBInspectable] = ACTIONS(1878), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1878), - [anon_sym_signed] = ACTIONS(1878), - [anon_sym_unsigned] = ACTIONS(1878), - [anon_sym_long] = ACTIONS(1878), - [anon_sym_short] = ACTIONS(1878), - [sym_primitive_type] = ACTIONS(1878), - [anon_sym_enum] = ACTIONS(1878), - [anon_sym_NS_ENUM] = ACTIONS(1878), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1878), - [anon_sym_NS_OPTIONS] = ACTIONS(1878), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1878), - [anon_sym_if] = ACTIONS(1878), - [anon_sym_switch] = ACTIONS(1878), - [anon_sym_case] = ACTIONS(1878), - [anon_sym_default] = ACTIONS(1878), - [anon_sym_while] = ACTIONS(1878), - [anon_sym_do] = ACTIONS(1878), - [anon_sym_for] = ACTIONS(1878), - [anon_sym_return] = ACTIONS(1878), - [anon_sym_break] = ACTIONS(1878), - [anon_sym_continue] = ACTIONS(1878), - [anon_sym_goto] = ACTIONS(1878), - [anon_sym_DASH_DASH] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(1880), - [anon_sym_sizeof] = ACTIONS(1878), - [sym_number_literal] = ACTIONS(1880), - [anon_sym_L_SQUOTE] = ACTIONS(1880), - [anon_sym_u_SQUOTE] = ACTIONS(1880), - [anon_sym_U_SQUOTE] = ACTIONS(1880), - [anon_sym_u8_SQUOTE] = ACTIONS(1880), - [anon_sym_SQUOTE] = ACTIONS(1880), - [anon_sym_L_DQUOTE] = ACTIONS(1880), - [anon_sym_u_DQUOTE] = ACTIONS(1880), - [anon_sym_U_DQUOTE] = ACTIONS(1880), - [anon_sym_u8_DQUOTE] = ACTIONS(1880), - [anon_sym_DQUOTE] = ACTIONS(1880), - [sym_true] = ACTIONS(1878), - [sym_false] = ACTIONS(1878), - [sym_null] = ACTIONS(1878), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1880), - [anon_sym_ATimport] = ACTIONS(1880), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1878), - [anon_sym_ATcompatibility_alias] = ACTIONS(1880), - [anon_sym_ATprotocol] = ACTIONS(1880), - [anon_sym_ATclass] = ACTIONS(1880), - [anon_sym_ATinterface] = ACTIONS(1880), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1878), - [sym_method_attribute_specifier] = ACTIONS(1878), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1878), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1878), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1878), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1878), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1878), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1878), - [anon_sym_NS_AVAILABLE] = ACTIONS(1878), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1878), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1878), - [anon_sym_API_AVAILABLE] = ACTIONS(1878), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1878), - [anon_sym_API_DEPRECATED] = ACTIONS(1878), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1878), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1878), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1878), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1878), - [anon_sym___deprecated_msg] = ACTIONS(1878), - [anon_sym___deprecated_enum_msg] = ACTIONS(1878), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1878), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1878), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1878), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1878), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1878), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1878), - [anon_sym_ATimplementation] = ACTIONS(1880), - [anon_sym_typeof] = ACTIONS(1878), - [anon_sym___typeof] = ACTIONS(1878), - [anon_sym___typeof__] = ACTIONS(1878), - [sym_self] = ACTIONS(1878), - [sym_super] = ACTIONS(1878), - [sym_nil] = ACTIONS(1878), - [sym_id] = ACTIONS(1878), - [sym_instancetype] = ACTIONS(1878), - [sym_Class] = ACTIONS(1878), - [sym_SEL] = ACTIONS(1878), - [sym_IMP] = ACTIONS(1878), - [sym_BOOL] = ACTIONS(1878), - [sym_auto] = ACTIONS(1878), - [anon_sym_ATautoreleasepool] = ACTIONS(1880), - [anon_sym_ATsynchronized] = ACTIONS(1880), - [anon_sym_ATtry] = ACTIONS(1880), - [anon_sym_ATthrow] = ACTIONS(1880), - [anon_sym_ATselector] = ACTIONS(1880), - [anon_sym_ATencode] = ACTIONS(1880), - [anon_sym_AT] = ACTIONS(1878), - [sym_YES] = ACTIONS(1878), - [sym_NO] = ACTIONS(1878), - [anon_sym___builtin_available] = ACTIONS(1878), - [anon_sym_ATavailable] = ACTIONS(1880), - [anon_sym_va_arg] = ACTIONS(1878), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1384] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1385] = { - [sym_identifier] = ACTIONS(1798), - [aux_sym_preproc_include_token1] = ACTIONS(1800), - [aux_sym_preproc_def_token1] = ACTIONS(1800), - [aux_sym_preproc_if_token1] = ACTIONS(1798), - [aux_sym_preproc_if_token2] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1798), - [anon_sym_LPAREN2] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1798), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym___attribute] = ACTIONS(1798), - [anon_sym___attribute__] = ACTIONS(1798), - [anon_sym___declspec] = ACTIONS(1798), - [anon_sym___cdecl] = ACTIONS(1798), - [anon_sym___clrcall] = ACTIONS(1798), - [anon_sym___stdcall] = ACTIONS(1798), - [anon_sym___fastcall] = ACTIONS(1798), - [anon_sym___thiscall] = ACTIONS(1798), - [anon_sym___vectorcall] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_auto] = ACTIONS(1798), - [anon_sym_register] = ACTIONS(1798), - [anon_sym_inline] = ACTIONS(1798), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_volatile] = ACTIONS(1798), - [anon_sym_restrict] = ACTIONS(1798), - [anon_sym__Atomic] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1798), - [anon_sym_out] = ACTIONS(1798), - [anon_sym_inout] = ACTIONS(1798), - [anon_sym_bycopy] = ACTIONS(1798), - [anon_sym_byref] = ACTIONS(1798), - [anon_sym_oneway] = ACTIONS(1798), - [anon_sym__Nullable] = ACTIONS(1798), - [anon_sym__Nonnull] = ACTIONS(1798), - [anon_sym__Nullable_result] = ACTIONS(1798), - [anon_sym__Null_unspecified] = ACTIONS(1798), - [anon_sym___autoreleasing] = ACTIONS(1798), - [anon_sym___nullable] = ACTIONS(1798), - [anon_sym___nonnull] = ACTIONS(1798), - [anon_sym___strong] = ACTIONS(1798), - [anon_sym___weak] = ACTIONS(1798), - [anon_sym___bridge] = ACTIONS(1798), - [anon_sym___bridge_transfer] = ACTIONS(1798), - [anon_sym___bridge_retained] = ACTIONS(1798), - [anon_sym___unsafe_unretained] = ACTIONS(1798), - [anon_sym___block] = ACTIONS(1798), - [anon_sym___kindof] = ACTIONS(1798), - [anon_sym___unused] = ACTIONS(1798), - [anon_sym__Complex] = ACTIONS(1798), - [anon_sym___complex] = ACTIONS(1798), - [anon_sym_IBOutlet] = ACTIONS(1798), - [anon_sym_IBInspectable] = ACTIONS(1798), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1798), - [anon_sym_signed] = ACTIONS(1798), - [anon_sym_unsigned] = ACTIONS(1798), - [anon_sym_long] = ACTIONS(1798), - [anon_sym_short] = ACTIONS(1798), - [sym_primitive_type] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_NS_ENUM] = ACTIONS(1798), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1798), - [anon_sym_NS_OPTIONS] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_do] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_goto] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1800), - [anon_sym_sizeof] = ACTIONS(1798), - [sym_number_literal] = ACTIONS(1800), - [anon_sym_L_SQUOTE] = ACTIONS(1800), - [anon_sym_u_SQUOTE] = ACTIONS(1800), - [anon_sym_U_SQUOTE] = ACTIONS(1800), - [anon_sym_u8_SQUOTE] = ACTIONS(1800), - [anon_sym_SQUOTE] = ACTIONS(1800), - [anon_sym_L_DQUOTE] = ACTIONS(1800), - [anon_sym_u_DQUOTE] = ACTIONS(1800), - [anon_sym_U_DQUOTE] = ACTIONS(1800), - [anon_sym_u8_DQUOTE] = ACTIONS(1800), - [anon_sym_DQUOTE] = ACTIONS(1800), - [sym_true] = ACTIONS(1798), - [sym_false] = ACTIONS(1798), - [sym_null] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1800), - [anon_sym_ATimport] = ACTIONS(1800), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1798), - [anon_sym_ATcompatibility_alias] = ACTIONS(1800), - [anon_sym_ATprotocol] = ACTIONS(1800), - [anon_sym_ATclass] = ACTIONS(1800), - [anon_sym_ATinterface] = ACTIONS(1800), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1798), - [sym_method_attribute_specifier] = ACTIONS(1798), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1798), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1798), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE] = ACTIONS(1798), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1798), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_API_AVAILABLE] = ACTIONS(1798), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_API_DEPRECATED] = ACTIONS(1798), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1798), - [anon_sym___deprecated_msg] = ACTIONS(1798), - [anon_sym___deprecated_enum_msg] = ACTIONS(1798), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1798), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1798), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1798), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1798), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1798), - [anon_sym_ATimplementation] = ACTIONS(1800), - [anon_sym_typeof] = ACTIONS(1798), - [anon_sym___typeof] = ACTIONS(1798), - [anon_sym___typeof__] = ACTIONS(1798), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_nil] = ACTIONS(1798), - [sym_id] = ACTIONS(1798), - [sym_instancetype] = ACTIONS(1798), - [sym_Class] = ACTIONS(1798), - [sym_SEL] = ACTIONS(1798), - [sym_IMP] = ACTIONS(1798), - [sym_BOOL] = ACTIONS(1798), - [sym_auto] = ACTIONS(1798), - [anon_sym_ATautoreleasepool] = ACTIONS(1800), - [anon_sym_ATsynchronized] = ACTIONS(1800), - [anon_sym_ATtry] = ACTIONS(1800), - [anon_sym_ATthrow] = ACTIONS(1800), - [anon_sym_ATselector] = ACTIONS(1800), - [anon_sym_ATencode] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1798), - [sym_YES] = ACTIONS(1798), - [sym_NO] = ACTIONS(1798), - [anon_sym___builtin_available] = ACTIONS(1798), - [anon_sym_ATavailable] = ACTIONS(1800), - [anon_sym_va_arg] = ACTIONS(1798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1386] = { - [sym_identifier] = ACTIONS(1954), - [aux_sym_preproc_include_token1] = ACTIONS(1956), - [aux_sym_preproc_def_token1] = ACTIONS(1956), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1954), - [anon_sym_LPAREN2] = ACTIONS(1956), - [anon_sym_BANG] = ACTIONS(1956), - [anon_sym_TILDE] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1954), - [anon_sym_PLUS] = ACTIONS(1954), - [anon_sym_STAR] = ACTIONS(1956), - [anon_sym_CARET] = ACTIONS(1956), - [anon_sym_AMP] = ACTIONS(1956), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_typedef] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym___attribute] = ACTIONS(1954), - [anon_sym___attribute__] = ACTIONS(1954), - [anon_sym___declspec] = ACTIONS(1954), - [anon_sym___cdecl] = ACTIONS(1954), - [anon_sym___clrcall] = ACTIONS(1954), - [anon_sym___stdcall] = ACTIONS(1954), - [anon_sym___fastcall] = ACTIONS(1954), - [anon_sym___thiscall] = ACTIONS(1954), - [anon_sym___vectorcall] = ACTIONS(1954), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1956), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_auto] = ACTIONS(1954), - [anon_sym_register] = ACTIONS(1954), - [anon_sym_inline] = ACTIONS(1954), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_volatile] = ACTIONS(1954), - [anon_sym_restrict] = ACTIONS(1954), - [anon_sym__Atomic] = ACTIONS(1954), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_out] = ACTIONS(1954), - [anon_sym_inout] = ACTIONS(1954), - [anon_sym_bycopy] = ACTIONS(1954), - [anon_sym_byref] = ACTIONS(1954), - [anon_sym_oneway] = ACTIONS(1954), - [anon_sym__Nullable] = ACTIONS(1954), - [anon_sym__Nonnull] = ACTIONS(1954), - [anon_sym__Nullable_result] = ACTIONS(1954), - [anon_sym__Null_unspecified] = ACTIONS(1954), - [anon_sym___autoreleasing] = ACTIONS(1954), - [anon_sym___nullable] = ACTIONS(1954), - [anon_sym___nonnull] = ACTIONS(1954), - [anon_sym___strong] = ACTIONS(1954), - [anon_sym___weak] = ACTIONS(1954), - [anon_sym___bridge] = ACTIONS(1954), - [anon_sym___bridge_transfer] = ACTIONS(1954), - [anon_sym___bridge_retained] = ACTIONS(1954), - [anon_sym___unsafe_unretained] = ACTIONS(1954), - [anon_sym___block] = ACTIONS(1954), - [anon_sym___kindof] = ACTIONS(1954), - [anon_sym___unused] = ACTIONS(1954), - [anon_sym__Complex] = ACTIONS(1954), - [anon_sym___complex] = ACTIONS(1954), - [anon_sym_IBOutlet] = ACTIONS(1954), - [anon_sym_IBInspectable] = ACTIONS(1954), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1954), - [anon_sym_signed] = ACTIONS(1954), - [anon_sym_unsigned] = ACTIONS(1954), - [anon_sym_long] = ACTIONS(1954), - [anon_sym_short] = ACTIONS(1954), - [sym_primitive_type] = ACTIONS(1954), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_NS_ENUM] = ACTIONS(1954), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1954), - [anon_sym_NS_OPTIONS] = ACTIONS(1954), - [anon_sym_struct] = ACTIONS(1954), - [anon_sym_union] = ACTIONS(1954), - [anon_sym_if] = ACTIONS(1954), - [anon_sym_switch] = ACTIONS(1954), - [anon_sym_case] = ACTIONS(1954), - [anon_sym_default] = ACTIONS(1954), - [anon_sym_while] = ACTIONS(1954), - [anon_sym_do] = ACTIONS(1954), - [anon_sym_for] = ACTIONS(1954), - [anon_sym_return] = ACTIONS(1954), - [anon_sym_break] = ACTIONS(1954), - [anon_sym_continue] = ACTIONS(1954), - [anon_sym_goto] = ACTIONS(1954), - [anon_sym_DASH_DASH] = ACTIONS(1956), - [anon_sym_PLUS_PLUS] = ACTIONS(1956), - [anon_sym_sizeof] = ACTIONS(1954), - [sym_number_literal] = ACTIONS(1956), - [anon_sym_L_SQUOTE] = ACTIONS(1956), - [anon_sym_u_SQUOTE] = ACTIONS(1956), - [anon_sym_U_SQUOTE] = ACTIONS(1956), - [anon_sym_u8_SQUOTE] = ACTIONS(1956), - [anon_sym_SQUOTE] = ACTIONS(1956), - [anon_sym_L_DQUOTE] = ACTIONS(1956), - [anon_sym_u_DQUOTE] = ACTIONS(1956), - [anon_sym_U_DQUOTE] = ACTIONS(1956), - [anon_sym_u8_DQUOTE] = ACTIONS(1956), - [anon_sym_DQUOTE] = ACTIONS(1956), - [sym_true] = ACTIONS(1954), - [sym_false] = ACTIONS(1954), - [sym_null] = ACTIONS(1954), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1956), - [anon_sym_ATimport] = ACTIONS(1956), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1954), - [anon_sym_ATcompatibility_alias] = ACTIONS(1956), - [anon_sym_ATprotocol] = ACTIONS(1956), - [anon_sym_ATclass] = ACTIONS(1956), - [anon_sym_ATinterface] = ACTIONS(1956), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1954), - [sym_method_attribute_specifier] = ACTIONS(1954), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1954), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1954), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1954), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1954), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1954), - [anon_sym_NS_AVAILABLE] = ACTIONS(1954), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1954), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_API_AVAILABLE] = ACTIONS(1954), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_API_DEPRECATED] = ACTIONS(1954), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1954), - [anon_sym___deprecated_msg] = ACTIONS(1954), - [anon_sym___deprecated_enum_msg] = ACTIONS(1954), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1954), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1954), - [anon_sym_ATimplementation] = ACTIONS(1956), - [anon_sym_typeof] = ACTIONS(1954), - [anon_sym___typeof] = ACTIONS(1954), - [anon_sym___typeof__] = ACTIONS(1954), - [sym_self] = ACTIONS(1954), - [sym_super] = ACTIONS(1954), - [sym_nil] = ACTIONS(1954), - [sym_id] = ACTIONS(1954), - [sym_instancetype] = ACTIONS(1954), - [sym_Class] = ACTIONS(1954), - [sym_SEL] = ACTIONS(1954), - [sym_IMP] = ACTIONS(1954), - [sym_BOOL] = ACTIONS(1954), - [sym_auto] = ACTIONS(1954), - [anon_sym_ATautoreleasepool] = ACTIONS(1956), - [anon_sym_ATsynchronized] = ACTIONS(1956), - [anon_sym_ATtry] = ACTIONS(1956), - [anon_sym_ATthrow] = ACTIONS(1956), - [anon_sym_ATselector] = ACTIONS(1956), - [anon_sym_ATencode] = ACTIONS(1956), - [anon_sym_AT] = ACTIONS(1954), - [sym_YES] = ACTIONS(1954), - [sym_NO] = ACTIONS(1954), - [anon_sym___builtin_available] = ACTIONS(1954), - [anon_sym_ATavailable] = ACTIONS(1956), - [anon_sym_va_arg] = ACTIONS(1954), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1387] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1388] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1389] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1390] = { - [sym_identifier] = ACTIONS(1890), - [aux_sym_preproc_include_token1] = ACTIONS(1892), - [aux_sym_preproc_def_token1] = ACTIONS(1892), - [aux_sym_preproc_if_token1] = ACTIONS(1890), - [aux_sym_preproc_if_token2] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1890), - [anon_sym_LPAREN2] = ACTIONS(1892), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1890), - [anon_sym_PLUS] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1892), - [anon_sym_CARET] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_typedef] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym___attribute] = ACTIONS(1890), - [anon_sym___attribute__] = ACTIONS(1890), - [anon_sym___declspec] = ACTIONS(1890), - [anon_sym___cdecl] = ACTIONS(1890), - [anon_sym___clrcall] = ACTIONS(1890), - [anon_sym___stdcall] = ACTIONS(1890), - [anon_sym___fastcall] = ACTIONS(1890), - [anon_sym___thiscall] = ACTIONS(1890), - [anon_sym___vectorcall] = ACTIONS(1890), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1890), - [anon_sym_auto] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_inline] = ACTIONS(1890), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [anon_sym_volatile] = ACTIONS(1890), - [anon_sym_restrict] = ACTIONS(1890), - [anon_sym__Atomic] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(1890), - [anon_sym_out] = ACTIONS(1890), - [anon_sym_inout] = ACTIONS(1890), - [anon_sym_bycopy] = ACTIONS(1890), - [anon_sym_byref] = ACTIONS(1890), - [anon_sym_oneway] = ACTIONS(1890), - [anon_sym__Nullable] = ACTIONS(1890), - [anon_sym__Nonnull] = ACTIONS(1890), - [anon_sym__Nullable_result] = ACTIONS(1890), - [anon_sym__Null_unspecified] = ACTIONS(1890), - [anon_sym___autoreleasing] = ACTIONS(1890), - [anon_sym___nullable] = ACTIONS(1890), - [anon_sym___nonnull] = ACTIONS(1890), - [anon_sym___strong] = ACTIONS(1890), - [anon_sym___weak] = ACTIONS(1890), - [anon_sym___bridge] = ACTIONS(1890), - [anon_sym___bridge_transfer] = ACTIONS(1890), - [anon_sym___bridge_retained] = ACTIONS(1890), - [anon_sym___unsafe_unretained] = ACTIONS(1890), - [anon_sym___block] = ACTIONS(1890), - [anon_sym___kindof] = ACTIONS(1890), - [anon_sym___unused] = ACTIONS(1890), - [anon_sym__Complex] = ACTIONS(1890), - [anon_sym___complex] = ACTIONS(1890), - [anon_sym_IBOutlet] = ACTIONS(1890), - [anon_sym_IBInspectable] = ACTIONS(1890), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1890), - [anon_sym_signed] = ACTIONS(1890), - [anon_sym_unsigned] = ACTIONS(1890), - [anon_sym_long] = ACTIONS(1890), - [anon_sym_short] = ACTIONS(1890), - [sym_primitive_type] = ACTIONS(1890), - [anon_sym_enum] = ACTIONS(1890), - [anon_sym_NS_ENUM] = ACTIONS(1890), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1890), - [anon_sym_NS_OPTIONS] = ACTIONS(1890), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_switch] = ACTIONS(1890), - [anon_sym_case] = ACTIONS(1890), - [anon_sym_default] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_do] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_goto] = ACTIONS(1890), - [anon_sym_DASH_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1892), - [anon_sym_sizeof] = ACTIONS(1890), - [sym_number_literal] = ACTIONS(1892), - [anon_sym_L_SQUOTE] = ACTIONS(1892), - [anon_sym_u_SQUOTE] = ACTIONS(1892), - [anon_sym_U_SQUOTE] = ACTIONS(1892), - [anon_sym_u8_SQUOTE] = ACTIONS(1892), - [anon_sym_SQUOTE] = ACTIONS(1892), - [anon_sym_L_DQUOTE] = ACTIONS(1892), - [anon_sym_u_DQUOTE] = ACTIONS(1892), - [anon_sym_U_DQUOTE] = ACTIONS(1892), - [anon_sym_u8_DQUOTE] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym_true] = ACTIONS(1890), - [sym_false] = ACTIONS(1890), - [sym_null] = ACTIONS(1890), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1892), - [anon_sym_ATimport] = ACTIONS(1892), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1890), - [anon_sym_ATcompatibility_alias] = ACTIONS(1892), - [anon_sym_ATprotocol] = ACTIONS(1892), - [anon_sym_ATclass] = ACTIONS(1892), - [anon_sym_ATinterface] = ACTIONS(1892), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1890), - [sym_method_attribute_specifier] = ACTIONS(1890), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1890), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1890), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1890), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1890), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1890), - [anon_sym_NS_AVAILABLE] = ACTIONS(1890), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1890), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_API_AVAILABLE] = ACTIONS(1890), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_API_DEPRECATED] = ACTIONS(1890), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1890), - [anon_sym___deprecated_msg] = ACTIONS(1890), - [anon_sym___deprecated_enum_msg] = ACTIONS(1890), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1890), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1890), - [anon_sym_ATimplementation] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(1890), - [anon_sym___typeof] = ACTIONS(1890), - [anon_sym___typeof__] = ACTIONS(1890), - [sym_self] = ACTIONS(1890), - [sym_super] = ACTIONS(1890), - [sym_nil] = ACTIONS(1890), - [sym_id] = ACTIONS(1890), - [sym_instancetype] = ACTIONS(1890), - [sym_Class] = ACTIONS(1890), - [sym_SEL] = ACTIONS(1890), - [sym_IMP] = ACTIONS(1890), - [sym_BOOL] = ACTIONS(1890), - [sym_auto] = ACTIONS(1890), - [anon_sym_ATautoreleasepool] = ACTIONS(1892), - [anon_sym_ATsynchronized] = ACTIONS(1892), - [anon_sym_ATtry] = ACTIONS(1892), - [anon_sym_ATthrow] = ACTIONS(1892), - [anon_sym_ATselector] = ACTIONS(1892), - [anon_sym_ATencode] = ACTIONS(1892), - [anon_sym_AT] = ACTIONS(1890), - [sym_YES] = ACTIONS(1890), - [sym_NO] = ACTIONS(1890), - [anon_sym___builtin_available] = ACTIONS(1890), - [anon_sym_ATavailable] = ACTIONS(1892), - [anon_sym_va_arg] = ACTIONS(1890), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1391] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1392] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1393] = { - [sym_identifier] = ACTIONS(1886), - [aux_sym_preproc_include_token1] = ACTIONS(1888), - [aux_sym_preproc_def_token1] = ACTIONS(1888), - [aux_sym_preproc_if_token1] = ACTIONS(1886), - [aux_sym_preproc_if_token2] = ACTIONS(1886), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1886), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1886), - [anon_sym_LPAREN2] = ACTIONS(1888), - [anon_sym_BANG] = ACTIONS(1888), - [anon_sym_TILDE] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1888), - [anon_sym_CARET] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_typedef] = ACTIONS(1886), - [anon_sym_extern] = ACTIONS(1886), - [anon_sym___attribute] = ACTIONS(1886), - [anon_sym___attribute__] = ACTIONS(1886), - [anon_sym___declspec] = ACTIONS(1886), - [anon_sym___cdecl] = ACTIONS(1886), - [anon_sym___clrcall] = ACTIONS(1886), - [anon_sym___stdcall] = ACTIONS(1886), - [anon_sym___fastcall] = ACTIONS(1886), - [anon_sym___thiscall] = ACTIONS(1886), - [anon_sym___vectorcall] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_static] = ACTIONS(1886), - [anon_sym_auto] = ACTIONS(1886), - [anon_sym_register] = ACTIONS(1886), - [anon_sym_inline] = ACTIONS(1886), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1886), - [anon_sym_const] = ACTIONS(1886), - [anon_sym_volatile] = ACTIONS(1886), - [anon_sym_restrict] = ACTIONS(1886), - [anon_sym__Atomic] = ACTIONS(1886), - [anon_sym_in] = ACTIONS(1886), - [anon_sym_out] = ACTIONS(1886), - [anon_sym_inout] = ACTIONS(1886), - [anon_sym_bycopy] = ACTIONS(1886), - [anon_sym_byref] = ACTIONS(1886), - [anon_sym_oneway] = ACTIONS(1886), - [anon_sym__Nullable] = ACTIONS(1886), - [anon_sym__Nonnull] = ACTIONS(1886), - [anon_sym__Nullable_result] = ACTIONS(1886), - [anon_sym__Null_unspecified] = ACTIONS(1886), - [anon_sym___autoreleasing] = ACTIONS(1886), - [anon_sym___nullable] = ACTIONS(1886), - [anon_sym___nonnull] = ACTIONS(1886), - [anon_sym___strong] = ACTIONS(1886), - [anon_sym___weak] = ACTIONS(1886), - [anon_sym___bridge] = ACTIONS(1886), - [anon_sym___bridge_transfer] = ACTIONS(1886), - [anon_sym___bridge_retained] = ACTIONS(1886), - [anon_sym___unsafe_unretained] = ACTIONS(1886), - [anon_sym___block] = ACTIONS(1886), - [anon_sym___kindof] = ACTIONS(1886), - [anon_sym___unused] = ACTIONS(1886), - [anon_sym__Complex] = ACTIONS(1886), - [anon_sym___complex] = ACTIONS(1886), - [anon_sym_IBOutlet] = ACTIONS(1886), - [anon_sym_IBInspectable] = ACTIONS(1886), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1886), - [anon_sym_signed] = ACTIONS(1886), - [anon_sym_unsigned] = ACTIONS(1886), - [anon_sym_long] = ACTIONS(1886), - [anon_sym_short] = ACTIONS(1886), - [sym_primitive_type] = ACTIONS(1886), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_NS_ENUM] = ACTIONS(1886), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1886), - [anon_sym_NS_OPTIONS] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1886), - [anon_sym_union] = ACTIONS(1886), - [anon_sym_if] = ACTIONS(1886), - [anon_sym_switch] = ACTIONS(1886), - [anon_sym_case] = ACTIONS(1886), - [anon_sym_default] = ACTIONS(1886), - [anon_sym_while] = ACTIONS(1886), - [anon_sym_do] = ACTIONS(1886), - [anon_sym_for] = ACTIONS(1886), - [anon_sym_return] = ACTIONS(1886), - [anon_sym_break] = ACTIONS(1886), - [anon_sym_continue] = ACTIONS(1886), - [anon_sym_goto] = ACTIONS(1886), - [anon_sym_DASH_DASH] = ACTIONS(1888), - [anon_sym_PLUS_PLUS] = ACTIONS(1888), - [anon_sym_sizeof] = ACTIONS(1886), - [sym_number_literal] = ACTIONS(1888), - [anon_sym_L_SQUOTE] = ACTIONS(1888), - [anon_sym_u_SQUOTE] = ACTIONS(1888), - [anon_sym_U_SQUOTE] = ACTIONS(1888), - [anon_sym_u8_SQUOTE] = ACTIONS(1888), - [anon_sym_SQUOTE] = ACTIONS(1888), - [anon_sym_L_DQUOTE] = ACTIONS(1888), - [anon_sym_u_DQUOTE] = ACTIONS(1888), - [anon_sym_U_DQUOTE] = ACTIONS(1888), - [anon_sym_u8_DQUOTE] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [sym_true] = ACTIONS(1886), - [sym_false] = ACTIONS(1886), - [sym_null] = ACTIONS(1886), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1888), - [anon_sym_ATimport] = ACTIONS(1888), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1886), - [anon_sym_ATcompatibility_alias] = ACTIONS(1888), - [anon_sym_ATprotocol] = ACTIONS(1888), - [anon_sym_ATclass] = ACTIONS(1888), - [anon_sym_ATinterface] = ACTIONS(1888), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1886), - [sym_method_attribute_specifier] = ACTIONS(1886), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1886), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1886), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1886), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1886), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1886), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1886), - [anon_sym_NS_AVAILABLE] = ACTIONS(1886), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1886), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1886), - [anon_sym_API_AVAILABLE] = ACTIONS(1886), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1886), - [anon_sym_API_DEPRECATED] = ACTIONS(1886), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1886), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1886), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1886), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1886), - [anon_sym___deprecated_msg] = ACTIONS(1886), - [anon_sym___deprecated_enum_msg] = ACTIONS(1886), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1886), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1886), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1886), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1886), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1886), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1886), - [anon_sym_ATimplementation] = ACTIONS(1888), - [anon_sym_typeof] = ACTIONS(1886), - [anon_sym___typeof] = ACTIONS(1886), - [anon_sym___typeof__] = ACTIONS(1886), - [sym_self] = ACTIONS(1886), - [sym_super] = ACTIONS(1886), - [sym_nil] = ACTIONS(1886), - [sym_id] = ACTIONS(1886), - [sym_instancetype] = ACTIONS(1886), - [sym_Class] = ACTIONS(1886), - [sym_SEL] = ACTIONS(1886), - [sym_IMP] = ACTIONS(1886), - [sym_BOOL] = ACTIONS(1886), - [sym_auto] = ACTIONS(1886), - [anon_sym_ATautoreleasepool] = ACTIONS(1888), - [anon_sym_ATsynchronized] = ACTIONS(1888), - [anon_sym_ATtry] = ACTIONS(1888), - [anon_sym_ATthrow] = ACTIONS(1888), - [anon_sym_ATselector] = ACTIONS(1888), - [anon_sym_ATencode] = ACTIONS(1888), - [anon_sym_AT] = ACTIONS(1886), - [sym_YES] = ACTIONS(1886), - [sym_NO] = ACTIONS(1886), - [anon_sym___builtin_available] = ACTIONS(1886), - [anon_sym_ATavailable] = ACTIONS(1888), - [anon_sym_va_arg] = ACTIONS(1886), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1394] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1395] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1396] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1397] = { - [sym_identifier] = ACTIONS(1894), - [aux_sym_preproc_include_token1] = ACTIONS(1896), - [aux_sym_preproc_def_token1] = ACTIONS(1896), - [aux_sym_preproc_if_token1] = ACTIONS(1894), - [aux_sym_preproc_if_token2] = ACTIONS(1894), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1894), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1894), - [anon_sym_LPAREN2] = ACTIONS(1896), - [anon_sym_BANG] = ACTIONS(1896), - [anon_sym_TILDE] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_CARET] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_typedef] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1894), - [anon_sym___attribute] = ACTIONS(1894), - [anon_sym___attribute__] = ACTIONS(1894), - [anon_sym___declspec] = ACTIONS(1894), - [anon_sym___cdecl] = ACTIONS(1894), - [anon_sym___clrcall] = ACTIONS(1894), - [anon_sym___stdcall] = ACTIONS(1894), - [anon_sym___fastcall] = ACTIONS(1894), - [anon_sym___thiscall] = ACTIONS(1894), - [anon_sym___vectorcall] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_static] = ACTIONS(1894), - [anon_sym_auto] = ACTIONS(1894), - [anon_sym_register] = ACTIONS(1894), - [anon_sym_inline] = ACTIONS(1894), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1894), - [anon_sym_volatile] = ACTIONS(1894), - [anon_sym_restrict] = ACTIONS(1894), - [anon_sym__Atomic] = ACTIONS(1894), - [anon_sym_in] = ACTIONS(1894), - [anon_sym_out] = ACTIONS(1894), - [anon_sym_inout] = ACTIONS(1894), - [anon_sym_bycopy] = ACTIONS(1894), - [anon_sym_byref] = ACTIONS(1894), - [anon_sym_oneway] = ACTIONS(1894), - [anon_sym__Nullable] = ACTIONS(1894), - [anon_sym__Nonnull] = ACTIONS(1894), - [anon_sym__Nullable_result] = ACTIONS(1894), - [anon_sym__Null_unspecified] = ACTIONS(1894), - [anon_sym___autoreleasing] = ACTIONS(1894), - [anon_sym___nullable] = ACTIONS(1894), - [anon_sym___nonnull] = ACTIONS(1894), - [anon_sym___strong] = ACTIONS(1894), - [anon_sym___weak] = ACTIONS(1894), - [anon_sym___bridge] = ACTIONS(1894), - [anon_sym___bridge_transfer] = ACTIONS(1894), - [anon_sym___bridge_retained] = ACTIONS(1894), - [anon_sym___unsafe_unretained] = ACTIONS(1894), - [anon_sym___block] = ACTIONS(1894), - [anon_sym___kindof] = ACTIONS(1894), - [anon_sym___unused] = ACTIONS(1894), - [anon_sym__Complex] = ACTIONS(1894), - [anon_sym___complex] = ACTIONS(1894), - [anon_sym_IBOutlet] = ACTIONS(1894), - [anon_sym_IBInspectable] = ACTIONS(1894), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1894), - [anon_sym_signed] = ACTIONS(1894), - [anon_sym_unsigned] = ACTIONS(1894), - [anon_sym_long] = ACTIONS(1894), - [anon_sym_short] = ACTIONS(1894), - [sym_primitive_type] = ACTIONS(1894), - [anon_sym_enum] = ACTIONS(1894), - [anon_sym_NS_ENUM] = ACTIONS(1894), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1894), - [anon_sym_NS_OPTIONS] = ACTIONS(1894), - [anon_sym_struct] = ACTIONS(1894), - [anon_sym_union] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_switch] = ACTIONS(1894), - [anon_sym_case] = ACTIONS(1894), - [anon_sym_default] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1894), - [anon_sym_continue] = ACTIONS(1894), - [anon_sym_goto] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1896), - [anon_sym_PLUS_PLUS] = ACTIONS(1896), - [anon_sym_sizeof] = ACTIONS(1894), - [sym_number_literal] = ACTIONS(1896), - [anon_sym_L_SQUOTE] = ACTIONS(1896), - [anon_sym_u_SQUOTE] = ACTIONS(1896), - [anon_sym_U_SQUOTE] = ACTIONS(1896), - [anon_sym_u8_SQUOTE] = ACTIONS(1896), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_L_DQUOTE] = ACTIONS(1896), - [anon_sym_u_DQUOTE] = ACTIONS(1896), - [anon_sym_U_DQUOTE] = ACTIONS(1896), - [anon_sym_u8_DQUOTE] = ACTIONS(1896), - [anon_sym_DQUOTE] = ACTIONS(1896), - [sym_true] = ACTIONS(1894), - [sym_false] = ACTIONS(1894), - [sym_null] = ACTIONS(1894), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1896), - [anon_sym_ATimport] = ACTIONS(1896), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1894), - [anon_sym_ATcompatibility_alias] = ACTIONS(1896), - [anon_sym_ATprotocol] = ACTIONS(1896), - [anon_sym_ATclass] = ACTIONS(1896), - [anon_sym_ATinterface] = ACTIONS(1896), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1894), - [sym_method_attribute_specifier] = ACTIONS(1894), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1894), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1894), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1894), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1894), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1894), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1894), - [anon_sym_NS_AVAILABLE] = ACTIONS(1894), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1894), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1894), - [anon_sym_API_AVAILABLE] = ACTIONS(1894), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1894), - [anon_sym_API_DEPRECATED] = ACTIONS(1894), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1894), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1894), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1894), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1894), - [anon_sym___deprecated_msg] = ACTIONS(1894), - [anon_sym___deprecated_enum_msg] = ACTIONS(1894), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1894), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1894), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1894), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1894), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1894), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1894), - [anon_sym_ATimplementation] = ACTIONS(1896), - [anon_sym_typeof] = ACTIONS(1894), - [anon_sym___typeof] = ACTIONS(1894), - [anon_sym___typeof__] = ACTIONS(1894), - [sym_self] = ACTIONS(1894), - [sym_super] = ACTIONS(1894), - [sym_nil] = ACTIONS(1894), - [sym_id] = ACTIONS(1894), - [sym_instancetype] = ACTIONS(1894), - [sym_Class] = ACTIONS(1894), - [sym_SEL] = ACTIONS(1894), - [sym_IMP] = ACTIONS(1894), - [sym_BOOL] = ACTIONS(1894), - [sym_auto] = ACTIONS(1894), - [anon_sym_ATautoreleasepool] = ACTIONS(1896), - [anon_sym_ATsynchronized] = ACTIONS(1896), - [anon_sym_ATtry] = ACTIONS(1896), - [anon_sym_ATthrow] = ACTIONS(1896), - [anon_sym_ATselector] = ACTIONS(1896), - [anon_sym_ATencode] = ACTIONS(1896), - [anon_sym_AT] = ACTIONS(1894), - [sym_YES] = ACTIONS(1894), - [sym_NO] = ACTIONS(1894), - [anon_sym___builtin_available] = ACTIONS(1894), - [anon_sym_ATavailable] = ACTIONS(1896), - [anon_sym_va_arg] = ACTIONS(1894), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1398] = { - [sym_identifier] = ACTIONS(1898), - [aux_sym_preproc_include_token1] = ACTIONS(1900), - [aux_sym_preproc_def_token1] = ACTIONS(1900), - [aux_sym_preproc_if_token1] = ACTIONS(1898), - [aux_sym_preproc_if_token2] = ACTIONS(1898), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1898), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1898), - [anon_sym_LPAREN2] = ACTIONS(1900), - [anon_sym_BANG] = ACTIONS(1900), - [anon_sym_TILDE] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1900), - [anon_sym_CARET] = ACTIONS(1900), - [anon_sym_AMP] = ACTIONS(1900), - [anon_sym_SEMI] = ACTIONS(1900), - [anon_sym_typedef] = ACTIONS(1898), - [anon_sym_extern] = ACTIONS(1898), - [anon_sym___attribute] = ACTIONS(1898), - [anon_sym___attribute__] = ACTIONS(1898), - [anon_sym___declspec] = ACTIONS(1898), - [anon_sym___cdecl] = ACTIONS(1898), - [anon_sym___clrcall] = ACTIONS(1898), - [anon_sym___stdcall] = ACTIONS(1898), - [anon_sym___fastcall] = ACTIONS(1898), - [anon_sym___thiscall] = ACTIONS(1898), - [anon_sym___vectorcall] = ACTIONS(1898), - [anon_sym_LBRACE] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1900), - [anon_sym_static] = ACTIONS(1898), - [anon_sym_auto] = ACTIONS(1898), - [anon_sym_register] = ACTIONS(1898), - [anon_sym_inline] = ACTIONS(1898), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1898), - [anon_sym_const] = ACTIONS(1898), - [anon_sym_volatile] = ACTIONS(1898), - [anon_sym_restrict] = ACTIONS(1898), - [anon_sym__Atomic] = ACTIONS(1898), - [anon_sym_in] = ACTIONS(1898), - [anon_sym_out] = ACTIONS(1898), - [anon_sym_inout] = ACTIONS(1898), - [anon_sym_bycopy] = ACTIONS(1898), - [anon_sym_byref] = ACTIONS(1898), - [anon_sym_oneway] = ACTIONS(1898), - [anon_sym__Nullable] = ACTIONS(1898), - [anon_sym__Nonnull] = ACTIONS(1898), - [anon_sym__Nullable_result] = ACTIONS(1898), - [anon_sym__Null_unspecified] = ACTIONS(1898), - [anon_sym___autoreleasing] = ACTIONS(1898), - [anon_sym___nullable] = ACTIONS(1898), - [anon_sym___nonnull] = ACTIONS(1898), - [anon_sym___strong] = ACTIONS(1898), - [anon_sym___weak] = ACTIONS(1898), - [anon_sym___bridge] = ACTIONS(1898), - [anon_sym___bridge_transfer] = ACTIONS(1898), - [anon_sym___bridge_retained] = ACTIONS(1898), - [anon_sym___unsafe_unretained] = ACTIONS(1898), - [anon_sym___block] = ACTIONS(1898), - [anon_sym___kindof] = ACTIONS(1898), - [anon_sym___unused] = ACTIONS(1898), - [anon_sym__Complex] = ACTIONS(1898), - [anon_sym___complex] = ACTIONS(1898), - [anon_sym_IBOutlet] = ACTIONS(1898), - [anon_sym_IBInspectable] = ACTIONS(1898), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1898), - [anon_sym_signed] = ACTIONS(1898), - [anon_sym_unsigned] = ACTIONS(1898), - [anon_sym_long] = ACTIONS(1898), - [anon_sym_short] = ACTIONS(1898), - [sym_primitive_type] = ACTIONS(1898), - [anon_sym_enum] = ACTIONS(1898), - [anon_sym_NS_ENUM] = ACTIONS(1898), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1898), - [anon_sym_NS_OPTIONS] = ACTIONS(1898), - [anon_sym_struct] = ACTIONS(1898), - [anon_sym_union] = ACTIONS(1898), - [anon_sym_if] = ACTIONS(1898), - [anon_sym_switch] = ACTIONS(1898), - [anon_sym_case] = ACTIONS(1898), - [anon_sym_default] = ACTIONS(1898), - [anon_sym_while] = ACTIONS(1898), - [anon_sym_do] = ACTIONS(1898), - [anon_sym_for] = ACTIONS(1898), - [anon_sym_return] = ACTIONS(1898), - [anon_sym_break] = ACTIONS(1898), - [anon_sym_continue] = ACTIONS(1898), - [anon_sym_goto] = ACTIONS(1898), - [anon_sym_DASH_DASH] = ACTIONS(1900), - [anon_sym_PLUS_PLUS] = ACTIONS(1900), - [anon_sym_sizeof] = ACTIONS(1898), - [sym_number_literal] = ACTIONS(1900), - [anon_sym_L_SQUOTE] = ACTIONS(1900), - [anon_sym_u_SQUOTE] = ACTIONS(1900), - [anon_sym_U_SQUOTE] = ACTIONS(1900), - [anon_sym_u8_SQUOTE] = ACTIONS(1900), - [anon_sym_SQUOTE] = ACTIONS(1900), - [anon_sym_L_DQUOTE] = ACTIONS(1900), - [anon_sym_u_DQUOTE] = ACTIONS(1900), - [anon_sym_U_DQUOTE] = ACTIONS(1900), - [anon_sym_u8_DQUOTE] = ACTIONS(1900), - [anon_sym_DQUOTE] = ACTIONS(1900), - [sym_true] = ACTIONS(1898), - [sym_false] = ACTIONS(1898), - [sym_null] = ACTIONS(1898), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1900), - [anon_sym_ATimport] = ACTIONS(1900), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1898), - [anon_sym_ATcompatibility_alias] = ACTIONS(1900), - [anon_sym_ATprotocol] = ACTIONS(1900), - [anon_sym_ATclass] = ACTIONS(1900), - [anon_sym_ATinterface] = ACTIONS(1900), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1898), - [sym_method_attribute_specifier] = ACTIONS(1898), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1898), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1898), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1898), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1898), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1898), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1898), - [anon_sym_NS_AVAILABLE] = ACTIONS(1898), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1898), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1898), - [anon_sym_API_AVAILABLE] = ACTIONS(1898), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1898), - [anon_sym_API_DEPRECATED] = ACTIONS(1898), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1898), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1898), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1898), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1898), - [anon_sym___deprecated_msg] = ACTIONS(1898), - [anon_sym___deprecated_enum_msg] = ACTIONS(1898), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1898), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1898), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1898), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1898), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1898), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1898), - [anon_sym_ATimplementation] = ACTIONS(1900), - [anon_sym_typeof] = ACTIONS(1898), - [anon_sym___typeof] = ACTIONS(1898), - [anon_sym___typeof__] = ACTIONS(1898), - [sym_self] = ACTIONS(1898), - [sym_super] = ACTIONS(1898), - [sym_nil] = ACTIONS(1898), - [sym_id] = ACTIONS(1898), - [sym_instancetype] = ACTIONS(1898), - [sym_Class] = ACTIONS(1898), - [sym_SEL] = ACTIONS(1898), - [sym_IMP] = ACTIONS(1898), - [sym_BOOL] = ACTIONS(1898), - [sym_auto] = ACTIONS(1898), - [anon_sym_ATautoreleasepool] = ACTIONS(1900), - [anon_sym_ATsynchronized] = ACTIONS(1900), - [anon_sym_ATtry] = ACTIONS(1900), - [anon_sym_ATthrow] = ACTIONS(1900), - [anon_sym_ATselector] = ACTIONS(1900), - [anon_sym_ATencode] = ACTIONS(1900), - [anon_sym_AT] = ACTIONS(1898), - [sym_YES] = ACTIONS(1898), - [sym_NO] = ACTIONS(1898), - [anon_sym___builtin_available] = ACTIONS(1898), - [anon_sym_ATavailable] = ACTIONS(1900), - [anon_sym_va_arg] = ACTIONS(1898), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1399] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1400] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1401] = { - [sym_identifier] = ACTIONS(1902), - [aux_sym_preproc_include_token1] = ACTIONS(1904), - [aux_sym_preproc_def_token1] = ACTIONS(1904), - [aux_sym_preproc_if_token1] = ACTIONS(1902), - [aux_sym_preproc_if_token2] = ACTIONS(1902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1902), - [anon_sym_LPAREN2] = ACTIONS(1904), - [anon_sym_BANG] = ACTIONS(1904), - [anon_sym_TILDE] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_PLUS] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1904), - [anon_sym_CARET] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1904), - [anon_sym_typedef] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1902), - [anon_sym___attribute] = ACTIONS(1902), - [anon_sym___attribute__] = ACTIONS(1902), - [anon_sym___declspec] = ACTIONS(1902), - [anon_sym___cdecl] = ACTIONS(1902), - [anon_sym___clrcall] = ACTIONS(1902), - [anon_sym___stdcall] = ACTIONS(1902), - [anon_sym___fastcall] = ACTIONS(1902), - [anon_sym___thiscall] = ACTIONS(1902), - [anon_sym___vectorcall] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1902), - [anon_sym_auto] = ACTIONS(1902), - [anon_sym_register] = ACTIONS(1902), - [anon_sym_inline] = ACTIONS(1902), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1902), - [anon_sym_const] = ACTIONS(1902), - [anon_sym_volatile] = ACTIONS(1902), - [anon_sym_restrict] = ACTIONS(1902), - [anon_sym__Atomic] = ACTIONS(1902), - [anon_sym_in] = ACTIONS(1902), - [anon_sym_out] = ACTIONS(1902), - [anon_sym_inout] = ACTIONS(1902), - [anon_sym_bycopy] = ACTIONS(1902), - [anon_sym_byref] = ACTIONS(1902), - [anon_sym_oneway] = ACTIONS(1902), - [anon_sym__Nullable] = ACTIONS(1902), - [anon_sym__Nonnull] = ACTIONS(1902), - [anon_sym__Nullable_result] = ACTIONS(1902), - [anon_sym__Null_unspecified] = ACTIONS(1902), - [anon_sym___autoreleasing] = ACTIONS(1902), - [anon_sym___nullable] = ACTIONS(1902), - [anon_sym___nonnull] = ACTIONS(1902), - [anon_sym___strong] = ACTIONS(1902), - [anon_sym___weak] = ACTIONS(1902), - [anon_sym___bridge] = ACTIONS(1902), - [anon_sym___bridge_transfer] = ACTIONS(1902), - [anon_sym___bridge_retained] = ACTIONS(1902), - [anon_sym___unsafe_unretained] = ACTIONS(1902), - [anon_sym___block] = ACTIONS(1902), - [anon_sym___kindof] = ACTIONS(1902), - [anon_sym___unused] = ACTIONS(1902), - [anon_sym__Complex] = ACTIONS(1902), - [anon_sym___complex] = ACTIONS(1902), - [anon_sym_IBOutlet] = ACTIONS(1902), - [anon_sym_IBInspectable] = ACTIONS(1902), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1902), - [anon_sym_signed] = ACTIONS(1902), - [anon_sym_unsigned] = ACTIONS(1902), - [anon_sym_long] = ACTIONS(1902), - [anon_sym_short] = ACTIONS(1902), - [sym_primitive_type] = ACTIONS(1902), - [anon_sym_enum] = ACTIONS(1902), - [anon_sym_NS_ENUM] = ACTIONS(1902), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1902), - [anon_sym_NS_OPTIONS] = ACTIONS(1902), - [anon_sym_struct] = ACTIONS(1902), - [anon_sym_union] = ACTIONS(1902), - [anon_sym_if] = ACTIONS(1902), - [anon_sym_switch] = ACTIONS(1902), - [anon_sym_case] = ACTIONS(1902), - [anon_sym_default] = ACTIONS(1902), - [anon_sym_while] = ACTIONS(1902), - [anon_sym_do] = ACTIONS(1902), - [anon_sym_for] = ACTIONS(1902), - [anon_sym_return] = ACTIONS(1902), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1902), - [anon_sym_goto] = ACTIONS(1902), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1904), - [anon_sym_u_SQUOTE] = ACTIONS(1904), - [anon_sym_U_SQUOTE] = ACTIONS(1904), - [anon_sym_u8_SQUOTE] = ACTIONS(1904), - [anon_sym_SQUOTE] = ACTIONS(1904), - [anon_sym_L_DQUOTE] = ACTIONS(1904), - [anon_sym_u_DQUOTE] = ACTIONS(1904), - [anon_sym_U_DQUOTE] = ACTIONS(1904), - [anon_sym_u8_DQUOTE] = ACTIONS(1904), - [anon_sym_DQUOTE] = ACTIONS(1904), - [sym_true] = ACTIONS(1902), - [sym_false] = ACTIONS(1902), - [sym_null] = ACTIONS(1902), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1904), - [anon_sym_ATimport] = ACTIONS(1904), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1902), - [anon_sym_ATcompatibility_alias] = ACTIONS(1904), - [anon_sym_ATprotocol] = ACTIONS(1904), - [anon_sym_ATclass] = ACTIONS(1904), - [anon_sym_ATinterface] = ACTIONS(1904), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1902), - [sym_method_attribute_specifier] = ACTIONS(1902), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1902), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1902), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1902), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1902), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1902), - [anon_sym_NS_AVAILABLE] = ACTIONS(1902), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1902), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_API_AVAILABLE] = ACTIONS(1902), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_API_DEPRECATED] = ACTIONS(1902), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1902), - [anon_sym___deprecated_msg] = ACTIONS(1902), - [anon_sym___deprecated_enum_msg] = ACTIONS(1902), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1902), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1902), - [anon_sym_ATimplementation] = ACTIONS(1904), - [anon_sym_typeof] = ACTIONS(1902), - [anon_sym___typeof] = ACTIONS(1902), - [anon_sym___typeof__] = ACTIONS(1902), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_nil] = ACTIONS(1902), - [sym_id] = ACTIONS(1902), - [sym_instancetype] = ACTIONS(1902), - [sym_Class] = ACTIONS(1902), - [sym_SEL] = ACTIONS(1902), - [sym_IMP] = ACTIONS(1902), - [sym_BOOL] = ACTIONS(1902), - [sym_auto] = ACTIONS(1902), - [anon_sym_ATautoreleasepool] = ACTIONS(1904), - [anon_sym_ATsynchronized] = ACTIONS(1904), - [anon_sym_ATtry] = ACTIONS(1904), - [anon_sym_ATthrow] = ACTIONS(1904), - [anon_sym_ATselector] = ACTIONS(1904), - [anon_sym_ATencode] = ACTIONS(1904), - [anon_sym_AT] = ACTIONS(1902), - [sym_YES] = ACTIONS(1902), - [sym_NO] = ACTIONS(1902), - [anon_sym___builtin_available] = ACTIONS(1902), - [anon_sym_ATavailable] = ACTIONS(1904), - [anon_sym_va_arg] = ACTIONS(1902), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1402] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1403] = { - [sym_identifier] = ACTIONS(1902), - [aux_sym_preproc_include_token1] = ACTIONS(1904), - [aux_sym_preproc_def_token1] = ACTIONS(1904), - [aux_sym_preproc_if_token1] = ACTIONS(1902), - [aux_sym_preproc_if_token2] = ACTIONS(1902), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1902), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1902), - [anon_sym_LPAREN2] = ACTIONS(1904), - [anon_sym_BANG] = ACTIONS(1904), - [anon_sym_TILDE] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1902), - [anon_sym_PLUS] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1904), - [anon_sym_CARET] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1904), - [anon_sym_SEMI] = ACTIONS(1904), - [anon_sym_typedef] = ACTIONS(1902), - [anon_sym_extern] = ACTIONS(1902), - [anon_sym___attribute] = ACTIONS(1902), - [anon_sym___attribute__] = ACTIONS(1902), - [anon_sym___declspec] = ACTIONS(1902), - [anon_sym___cdecl] = ACTIONS(1902), - [anon_sym___clrcall] = ACTIONS(1902), - [anon_sym___stdcall] = ACTIONS(1902), - [anon_sym___fastcall] = ACTIONS(1902), - [anon_sym___thiscall] = ACTIONS(1902), - [anon_sym___vectorcall] = ACTIONS(1902), - [anon_sym_LBRACE] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1902), - [anon_sym_auto] = ACTIONS(1902), - [anon_sym_register] = ACTIONS(1902), - [anon_sym_inline] = ACTIONS(1902), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1902), - [anon_sym_const] = ACTIONS(1902), - [anon_sym_volatile] = ACTIONS(1902), - [anon_sym_restrict] = ACTIONS(1902), - [anon_sym__Atomic] = ACTIONS(1902), - [anon_sym_in] = ACTIONS(1902), - [anon_sym_out] = ACTIONS(1902), - [anon_sym_inout] = ACTIONS(1902), - [anon_sym_bycopy] = ACTIONS(1902), - [anon_sym_byref] = ACTIONS(1902), - [anon_sym_oneway] = ACTIONS(1902), - [anon_sym__Nullable] = ACTIONS(1902), - [anon_sym__Nonnull] = ACTIONS(1902), - [anon_sym__Nullable_result] = ACTIONS(1902), - [anon_sym__Null_unspecified] = ACTIONS(1902), - [anon_sym___autoreleasing] = ACTIONS(1902), - [anon_sym___nullable] = ACTIONS(1902), - [anon_sym___nonnull] = ACTIONS(1902), - [anon_sym___strong] = ACTIONS(1902), - [anon_sym___weak] = ACTIONS(1902), - [anon_sym___bridge] = ACTIONS(1902), - [anon_sym___bridge_transfer] = ACTIONS(1902), - [anon_sym___bridge_retained] = ACTIONS(1902), - [anon_sym___unsafe_unretained] = ACTIONS(1902), - [anon_sym___block] = ACTIONS(1902), - [anon_sym___kindof] = ACTIONS(1902), - [anon_sym___unused] = ACTIONS(1902), - [anon_sym__Complex] = ACTIONS(1902), - [anon_sym___complex] = ACTIONS(1902), - [anon_sym_IBOutlet] = ACTIONS(1902), - [anon_sym_IBInspectable] = ACTIONS(1902), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1902), - [anon_sym_signed] = ACTIONS(1902), - [anon_sym_unsigned] = ACTIONS(1902), - [anon_sym_long] = ACTIONS(1902), - [anon_sym_short] = ACTIONS(1902), - [sym_primitive_type] = ACTIONS(1902), - [anon_sym_enum] = ACTIONS(1902), - [anon_sym_NS_ENUM] = ACTIONS(1902), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1902), - [anon_sym_NS_OPTIONS] = ACTIONS(1902), - [anon_sym_struct] = ACTIONS(1902), - [anon_sym_union] = ACTIONS(1902), - [anon_sym_if] = ACTIONS(1902), - [anon_sym_switch] = ACTIONS(1902), - [anon_sym_case] = ACTIONS(1902), - [anon_sym_default] = ACTIONS(1902), - [anon_sym_while] = ACTIONS(1902), - [anon_sym_do] = ACTIONS(1902), - [anon_sym_for] = ACTIONS(1902), - [anon_sym_return] = ACTIONS(1902), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1902), - [anon_sym_goto] = ACTIONS(1902), - [anon_sym_DASH_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1904), - [anon_sym_sizeof] = ACTIONS(1902), - [sym_number_literal] = ACTIONS(1904), - [anon_sym_L_SQUOTE] = ACTIONS(1904), - [anon_sym_u_SQUOTE] = ACTIONS(1904), - [anon_sym_U_SQUOTE] = ACTIONS(1904), - [anon_sym_u8_SQUOTE] = ACTIONS(1904), - [anon_sym_SQUOTE] = ACTIONS(1904), - [anon_sym_L_DQUOTE] = ACTIONS(1904), - [anon_sym_u_DQUOTE] = ACTIONS(1904), - [anon_sym_U_DQUOTE] = ACTIONS(1904), - [anon_sym_u8_DQUOTE] = ACTIONS(1904), - [anon_sym_DQUOTE] = ACTIONS(1904), - [sym_true] = ACTIONS(1902), - [sym_false] = ACTIONS(1902), - [sym_null] = ACTIONS(1902), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1904), - [anon_sym_ATimport] = ACTIONS(1904), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1902), - [anon_sym_ATcompatibility_alias] = ACTIONS(1904), - [anon_sym_ATprotocol] = ACTIONS(1904), - [anon_sym_ATclass] = ACTIONS(1904), - [anon_sym_ATinterface] = ACTIONS(1904), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1902), - [sym_method_attribute_specifier] = ACTIONS(1902), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1902), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1902), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1902), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1902), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1902), - [anon_sym_NS_AVAILABLE] = ACTIONS(1902), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1902), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_API_AVAILABLE] = ACTIONS(1902), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_API_DEPRECATED] = ACTIONS(1902), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1902), - [anon_sym___deprecated_msg] = ACTIONS(1902), - [anon_sym___deprecated_enum_msg] = ACTIONS(1902), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1902), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1902), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1902), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1902), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1902), - [anon_sym_ATimplementation] = ACTIONS(1904), - [anon_sym_typeof] = ACTIONS(1902), - [anon_sym___typeof] = ACTIONS(1902), - [anon_sym___typeof__] = ACTIONS(1902), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_nil] = ACTIONS(1902), - [sym_id] = ACTIONS(1902), - [sym_instancetype] = ACTIONS(1902), - [sym_Class] = ACTIONS(1902), - [sym_SEL] = ACTIONS(1902), - [sym_IMP] = ACTIONS(1902), - [sym_BOOL] = ACTIONS(1902), - [sym_auto] = ACTIONS(1902), - [anon_sym_ATautoreleasepool] = ACTIONS(1904), - [anon_sym_ATsynchronized] = ACTIONS(1904), - [anon_sym_ATtry] = ACTIONS(1904), - [anon_sym_ATthrow] = ACTIONS(1904), - [anon_sym_ATselector] = ACTIONS(1904), - [anon_sym_ATencode] = ACTIONS(1904), - [anon_sym_AT] = ACTIONS(1902), - [sym_YES] = ACTIONS(1902), - [sym_NO] = ACTIONS(1902), - [anon_sym___builtin_available] = ACTIONS(1902), - [anon_sym_ATavailable] = ACTIONS(1904), - [anon_sym_va_arg] = ACTIONS(1902), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1404] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1405] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1406] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1407] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1408] = { - [sym_identifier] = ACTIONS(1790), - [aux_sym_preproc_include_token1] = ACTIONS(1792), - [aux_sym_preproc_def_token1] = ACTIONS(1792), - [aux_sym_preproc_if_token1] = ACTIONS(1790), - [aux_sym_preproc_if_token2] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1790), - [anon_sym_LPAREN2] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1790), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym___attribute] = ACTIONS(1790), - [anon_sym___attribute__] = ACTIONS(1790), - [anon_sym___declspec] = ACTIONS(1790), - [anon_sym___cdecl] = ACTIONS(1790), - [anon_sym___clrcall] = ACTIONS(1790), - [anon_sym___stdcall] = ACTIONS(1790), - [anon_sym___fastcall] = ACTIONS(1790), - [anon_sym___thiscall] = ACTIONS(1790), - [anon_sym___vectorcall] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_auto] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_volatile] = ACTIONS(1790), - [anon_sym_restrict] = ACTIONS(1790), - [anon_sym__Atomic] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_out] = ACTIONS(1790), - [anon_sym_inout] = ACTIONS(1790), - [anon_sym_bycopy] = ACTIONS(1790), - [anon_sym_byref] = ACTIONS(1790), - [anon_sym_oneway] = ACTIONS(1790), - [anon_sym__Nullable] = ACTIONS(1790), - [anon_sym__Nonnull] = ACTIONS(1790), - [anon_sym__Nullable_result] = ACTIONS(1790), - [anon_sym__Null_unspecified] = ACTIONS(1790), - [anon_sym___autoreleasing] = ACTIONS(1790), - [anon_sym___nullable] = ACTIONS(1790), - [anon_sym___nonnull] = ACTIONS(1790), - [anon_sym___strong] = ACTIONS(1790), - [anon_sym___weak] = ACTIONS(1790), - [anon_sym___bridge] = ACTIONS(1790), - [anon_sym___bridge_transfer] = ACTIONS(1790), - [anon_sym___bridge_retained] = ACTIONS(1790), - [anon_sym___unsafe_unretained] = ACTIONS(1790), - [anon_sym___block] = ACTIONS(1790), - [anon_sym___kindof] = ACTIONS(1790), - [anon_sym___unused] = ACTIONS(1790), - [anon_sym__Complex] = ACTIONS(1790), - [anon_sym___complex] = ACTIONS(1790), - [anon_sym_IBOutlet] = ACTIONS(1790), - [anon_sym_IBInspectable] = ACTIONS(1790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1790), - [anon_sym_signed] = ACTIONS(1790), - [anon_sym_unsigned] = ACTIONS(1790), - [anon_sym_long] = ACTIONS(1790), - [anon_sym_short] = ACTIONS(1790), - [sym_primitive_type] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_NS_ENUM] = ACTIONS(1790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1790), - [anon_sym_NS_OPTIONS] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_do] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_goto] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_sizeof] = ACTIONS(1790), - [sym_number_literal] = ACTIONS(1792), - [anon_sym_L_SQUOTE] = ACTIONS(1792), - [anon_sym_u_SQUOTE] = ACTIONS(1792), - [anon_sym_U_SQUOTE] = ACTIONS(1792), - [anon_sym_u8_SQUOTE] = ACTIONS(1792), - [anon_sym_SQUOTE] = ACTIONS(1792), - [anon_sym_L_DQUOTE] = ACTIONS(1792), - [anon_sym_u_DQUOTE] = ACTIONS(1792), - [anon_sym_U_DQUOTE] = ACTIONS(1792), - [anon_sym_u8_DQUOTE] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [sym_true] = ACTIONS(1790), - [sym_false] = ACTIONS(1790), - [sym_null] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1792), - [anon_sym_ATimport] = ACTIONS(1792), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1790), - [anon_sym_ATcompatibility_alias] = ACTIONS(1792), - [anon_sym_ATprotocol] = ACTIONS(1792), - [anon_sym_ATclass] = ACTIONS(1792), - [anon_sym_ATinterface] = ACTIONS(1792), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1790), - [sym_method_attribute_specifier] = ACTIONS(1790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE] = ACTIONS(1790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_API_AVAILABLE] = ACTIONS(1790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_API_DEPRECATED] = ACTIONS(1790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1790), - [anon_sym___deprecated_msg] = ACTIONS(1790), - [anon_sym___deprecated_enum_msg] = ACTIONS(1790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1790), - [anon_sym_ATimplementation] = ACTIONS(1792), - [anon_sym_typeof] = ACTIONS(1790), - [anon_sym___typeof] = ACTIONS(1790), - [anon_sym___typeof__] = ACTIONS(1790), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_nil] = ACTIONS(1790), - [sym_id] = ACTIONS(1790), - [sym_instancetype] = ACTIONS(1790), - [sym_Class] = ACTIONS(1790), - [sym_SEL] = ACTIONS(1790), - [sym_IMP] = ACTIONS(1790), - [sym_BOOL] = ACTIONS(1790), - [sym_auto] = ACTIONS(1790), - [anon_sym_ATautoreleasepool] = ACTIONS(1792), - [anon_sym_ATsynchronized] = ACTIONS(1792), - [anon_sym_ATtry] = ACTIONS(1792), - [anon_sym_ATthrow] = ACTIONS(1792), - [anon_sym_ATselector] = ACTIONS(1792), - [anon_sym_ATencode] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1790), - [sym_YES] = ACTIONS(1790), - [sym_NO] = ACTIONS(1790), - [anon_sym___builtin_available] = ACTIONS(1790), - [anon_sym_ATavailable] = ACTIONS(1792), - [anon_sym_va_arg] = ACTIONS(1790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1409] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1410] = { - [sym_identifier] = ACTIONS(1866), - [aux_sym_preproc_include_token1] = ACTIONS(1868), - [aux_sym_preproc_def_token1] = ACTIONS(1868), - [aux_sym_preproc_if_token1] = ACTIONS(1866), - [aux_sym_preproc_if_token2] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1866), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1866), - [anon_sym_LPAREN2] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1866), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym___attribute] = ACTIONS(1866), - [anon_sym___attribute__] = ACTIONS(1866), - [anon_sym___declspec] = ACTIONS(1866), - [anon_sym___cdecl] = ACTIONS(1866), - [anon_sym___clrcall] = ACTIONS(1866), - [anon_sym___stdcall] = ACTIONS(1866), - [anon_sym___fastcall] = ACTIONS(1866), - [anon_sym___thiscall] = ACTIONS(1866), - [anon_sym___vectorcall] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_auto] = ACTIONS(1866), - [anon_sym_register] = ACTIONS(1866), - [anon_sym_inline] = ACTIONS(1866), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_volatile] = ACTIONS(1866), - [anon_sym_restrict] = ACTIONS(1866), - [anon_sym__Atomic] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1866), - [anon_sym_out] = ACTIONS(1866), - [anon_sym_inout] = ACTIONS(1866), - [anon_sym_bycopy] = ACTIONS(1866), - [anon_sym_byref] = ACTIONS(1866), - [anon_sym_oneway] = ACTIONS(1866), - [anon_sym__Nullable] = ACTIONS(1866), - [anon_sym__Nonnull] = ACTIONS(1866), - [anon_sym__Nullable_result] = ACTIONS(1866), - [anon_sym__Null_unspecified] = ACTIONS(1866), - [anon_sym___autoreleasing] = ACTIONS(1866), - [anon_sym___nullable] = ACTIONS(1866), - [anon_sym___nonnull] = ACTIONS(1866), - [anon_sym___strong] = ACTIONS(1866), - [anon_sym___weak] = ACTIONS(1866), - [anon_sym___bridge] = ACTIONS(1866), - [anon_sym___bridge_transfer] = ACTIONS(1866), - [anon_sym___bridge_retained] = ACTIONS(1866), - [anon_sym___unsafe_unretained] = ACTIONS(1866), - [anon_sym___block] = ACTIONS(1866), - [anon_sym___kindof] = ACTIONS(1866), - [anon_sym___unused] = ACTIONS(1866), - [anon_sym__Complex] = ACTIONS(1866), - [anon_sym___complex] = ACTIONS(1866), - [anon_sym_IBOutlet] = ACTIONS(1866), - [anon_sym_IBInspectable] = ACTIONS(1866), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1866), - [anon_sym_signed] = ACTIONS(1866), - [anon_sym_unsigned] = ACTIONS(1866), - [anon_sym_long] = ACTIONS(1866), - [anon_sym_short] = ACTIONS(1866), - [sym_primitive_type] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_NS_ENUM] = ACTIONS(1866), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1866), - [anon_sym_NS_OPTIONS] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_do] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_goto] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1868), - [anon_sym_sizeof] = ACTIONS(1866), - [sym_number_literal] = ACTIONS(1868), - [anon_sym_L_SQUOTE] = ACTIONS(1868), - [anon_sym_u_SQUOTE] = ACTIONS(1868), - [anon_sym_U_SQUOTE] = ACTIONS(1868), - [anon_sym_u8_SQUOTE] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_L_DQUOTE] = ACTIONS(1868), - [anon_sym_u_DQUOTE] = ACTIONS(1868), - [anon_sym_U_DQUOTE] = ACTIONS(1868), - [anon_sym_u8_DQUOTE] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym_true] = ACTIONS(1866), - [sym_false] = ACTIONS(1866), - [sym_null] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1868), - [anon_sym_ATimport] = ACTIONS(1868), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1866), - [anon_sym_ATcompatibility_alias] = ACTIONS(1868), - [anon_sym_ATprotocol] = ACTIONS(1868), - [anon_sym_ATclass] = ACTIONS(1868), - [anon_sym_ATinterface] = ACTIONS(1868), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1866), - [sym_method_attribute_specifier] = ACTIONS(1866), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1866), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1866), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE] = ACTIONS(1866), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1866), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_API_AVAILABLE] = ACTIONS(1866), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_API_DEPRECATED] = ACTIONS(1866), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1866), - [anon_sym___deprecated_msg] = ACTIONS(1866), - [anon_sym___deprecated_enum_msg] = ACTIONS(1866), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1866), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1866), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1866), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1866), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1866), - [anon_sym_ATimplementation] = ACTIONS(1868), - [anon_sym_typeof] = ACTIONS(1866), - [anon_sym___typeof] = ACTIONS(1866), - [anon_sym___typeof__] = ACTIONS(1866), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_nil] = ACTIONS(1866), - [sym_id] = ACTIONS(1866), - [sym_instancetype] = ACTIONS(1866), - [sym_Class] = ACTIONS(1866), - [sym_SEL] = ACTIONS(1866), - [sym_IMP] = ACTIONS(1866), - [sym_BOOL] = ACTIONS(1866), - [sym_auto] = ACTIONS(1866), - [anon_sym_ATautoreleasepool] = ACTIONS(1868), - [anon_sym_ATsynchronized] = ACTIONS(1868), - [anon_sym_ATtry] = ACTIONS(1868), - [anon_sym_ATthrow] = ACTIONS(1868), - [anon_sym_ATselector] = ACTIONS(1868), - [anon_sym_ATencode] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1866), - [sym_YES] = ACTIONS(1866), - [sym_NO] = ACTIONS(1866), - [anon_sym___builtin_available] = ACTIONS(1866), - [anon_sym_ATavailable] = ACTIONS(1868), - [anon_sym_va_arg] = ACTIONS(1866), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1411] = { - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_include_token1] = ACTIONS(1948), - [aux_sym_preproc_def_token1] = ACTIONS(1948), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym___cdecl] = ACTIONS(1946), - [anon_sym___clrcall] = ACTIONS(1946), - [anon_sym___stdcall] = ACTIONS(1946), - [anon_sym___fastcall] = ACTIONS(1946), - [anon_sym___thiscall] = ACTIONS(1946), - [anon_sym___vectorcall] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_out] = ACTIONS(1946), - [anon_sym_inout] = ACTIONS(1946), - [anon_sym_bycopy] = ACTIONS(1946), - [anon_sym_byref] = ACTIONS(1946), - [anon_sym_oneway] = ACTIONS(1946), - [anon_sym__Nullable] = ACTIONS(1946), - [anon_sym__Nonnull] = ACTIONS(1946), - [anon_sym__Nullable_result] = ACTIONS(1946), - [anon_sym__Null_unspecified] = ACTIONS(1946), - [anon_sym___autoreleasing] = ACTIONS(1946), - [anon_sym___nullable] = ACTIONS(1946), - [anon_sym___nonnull] = ACTIONS(1946), - [anon_sym___strong] = ACTIONS(1946), - [anon_sym___weak] = ACTIONS(1946), - [anon_sym___bridge] = ACTIONS(1946), - [anon_sym___bridge_transfer] = ACTIONS(1946), - [anon_sym___bridge_retained] = ACTIONS(1946), - [anon_sym___unsafe_unretained] = ACTIONS(1946), - [anon_sym___block] = ACTIONS(1946), - [anon_sym___kindof] = ACTIONS(1946), - [anon_sym___unused] = ACTIONS(1946), - [anon_sym__Complex] = ACTIONS(1946), - [anon_sym___complex] = ACTIONS(1946), - [anon_sym_IBOutlet] = ACTIONS(1946), - [anon_sym_IBInspectable] = ACTIONS(1946), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1946), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_NS_ENUM] = ACTIONS(1946), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1946), - [anon_sym_NS_OPTIONS] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_goto] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1948), - [anon_sym_sizeof] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(1948), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1948), - [anon_sym_u_DQUOTE] = ACTIONS(1948), - [anon_sym_U_DQUOTE] = ACTIONS(1948), - [anon_sym_u8_DQUOTE] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym_true] = ACTIONS(1946), - [sym_false] = ACTIONS(1946), - [sym_null] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1948), - [anon_sym_ATimport] = ACTIONS(1948), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1946), - [anon_sym_ATcompatibility_alias] = ACTIONS(1948), - [anon_sym_ATprotocol] = ACTIONS(1948), - [anon_sym_ATclass] = ACTIONS(1948), - [anon_sym_ATinterface] = ACTIONS(1948), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1946), - [sym_method_attribute_specifier] = ACTIONS(1946), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1946), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE] = ACTIONS(1946), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_API_AVAILABLE] = ACTIONS(1946), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_API_DEPRECATED] = ACTIONS(1946), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1946), - [anon_sym___deprecated_msg] = ACTIONS(1946), - [anon_sym___deprecated_enum_msg] = ACTIONS(1946), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1946), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1946), - [anon_sym_ATimplementation] = ACTIONS(1948), - [anon_sym_typeof] = ACTIONS(1946), - [anon_sym___typeof] = ACTIONS(1946), - [anon_sym___typeof__] = ACTIONS(1946), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_nil] = ACTIONS(1946), - [sym_id] = ACTIONS(1946), - [sym_instancetype] = ACTIONS(1946), - [sym_Class] = ACTIONS(1946), - [sym_SEL] = ACTIONS(1946), - [sym_IMP] = ACTIONS(1946), - [sym_BOOL] = ACTIONS(1946), - [sym_auto] = ACTIONS(1946), - [anon_sym_ATautoreleasepool] = ACTIONS(1948), - [anon_sym_ATsynchronized] = ACTIONS(1948), - [anon_sym_ATtry] = ACTIONS(1948), - [anon_sym_ATthrow] = ACTIONS(1948), - [anon_sym_ATselector] = ACTIONS(1948), - [anon_sym_ATencode] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [sym_YES] = ACTIONS(1946), - [sym_NO] = ACTIONS(1946), - [anon_sym___builtin_available] = ACTIONS(1946), - [anon_sym_ATavailable] = ACTIONS(1948), - [anon_sym_va_arg] = ACTIONS(1946), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1412] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1413] = { - [sym_identifier] = ACTIONS(1962), - [aux_sym_preproc_include_token1] = ACTIONS(1964), - [aux_sym_preproc_def_token1] = ACTIONS(1964), - [aux_sym_preproc_if_token1] = ACTIONS(1962), - [aux_sym_preproc_if_token2] = ACTIONS(1962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1962), - [anon_sym_LPAREN2] = ACTIONS(1964), - [anon_sym_BANG] = ACTIONS(1964), - [anon_sym_TILDE] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1962), - [anon_sym_PLUS] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_CARET] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1964), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_typedef] = ACTIONS(1962), - [anon_sym_extern] = ACTIONS(1962), - [anon_sym___attribute] = ACTIONS(1962), - [anon_sym___attribute__] = ACTIONS(1962), - [anon_sym___declspec] = ACTIONS(1962), - [anon_sym___cdecl] = ACTIONS(1962), - [anon_sym___clrcall] = ACTIONS(1962), - [anon_sym___stdcall] = ACTIONS(1962), - [anon_sym___fastcall] = ACTIONS(1962), - [anon_sym___thiscall] = ACTIONS(1962), - [anon_sym___vectorcall] = ACTIONS(1962), - [anon_sym_LBRACE] = ACTIONS(1964), - [anon_sym_LBRACK] = ACTIONS(1964), - [anon_sym_static] = ACTIONS(1962), - [anon_sym_auto] = ACTIONS(1962), - [anon_sym_register] = ACTIONS(1962), - [anon_sym_inline] = ACTIONS(1962), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1962), - [anon_sym_const] = ACTIONS(1962), - [anon_sym_volatile] = ACTIONS(1962), - [anon_sym_restrict] = ACTIONS(1962), - [anon_sym__Atomic] = ACTIONS(1962), - [anon_sym_in] = ACTIONS(1962), - [anon_sym_out] = ACTIONS(1962), - [anon_sym_inout] = ACTIONS(1962), - [anon_sym_bycopy] = ACTIONS(1962), - [anon_sym_byref] = ACTIONS(1962), - [anon_sym_oneway] = ACTIONS(1962), - [anon_sym__Nullable] = ACTIONS(1962), - [anon_sym__Nonnull] = ACTIONS(1962), - [anon_sym__Nullable_result] = ACTIONS(1962), - [anon_sym__Null_unspecified] = ACTIONS(1962), - [anon_sym___autoreleasing] = ACTIONS(1962), - [anon_sym___nullable] = ACTIONS(1962), - [anon_sym___nonnull] = ACTIONS(1962), - [anon_sym___strong] = ACTIONS(1962), - [anon_sym___weak] = ACTIONS(1962), - [anon_sym___bridge] = ACTIONS(1962), - [anon_sym___bridge_transfer] = ACTIONS(1962), - [anon_sym___bridge_retained] = ACTIONS(1962), - [anon_sym___unsafe_unretained] = ACTIONS(1962), - [anon_sym___block] = ACTIONS(1962), - [anon_sym___kindof] = ACTIONS(1962), - [anon_sym___unused] = ACTIONS(1962), - [anon_sym__Complex] = ACTIONS(1962), - [anon_sym___complex] = ACTIONS(1962), - [anon_sym_IBOutlet] = ACTIONS(1962), - [anon_sym_IBInspectable] = ACTIONS(1962), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1962), - [anon_sym_signed] = ACTIONS(1962), - [anon_sym_unsigned] = ACTIONS(1962), - [anon_sym_long] = ACTIONS(1962), - [anon_sym_short] = ACTIONS(1962), - [sym_primitive_type] = ACTIONS(1962), - [anon_sym_enum] = ACTIONS(1962), - [anon_sym_NS_ENUM] = ACTIONS(1962), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1962), - [anon_sym_NS_OPTIONS] = ACTIONS(1962), - [anon_sym_struct] = ACTIONS(1962), - [anon_sym_union] = ACTIONS(1962), - [anon_sym_if] = ACTIONS(1962), - [anon_sym_switch] = ACTIONS(1962), - [anon_sym_case] = ACTIONS(1962), - [anon_sym_default] = ACTIONS(1962), - [anon_sym_while] = ACTIONS(1962), - [anon_sym_do] = ACTIONS(1962), - [anon_sym_for] = ACTIONS(1962), - [anon_sym_return] = ACTIONS(1962), - [anon_sym_break] = ACTIONS(1962), - [anon_sym_continue] = ACTIONS(1962), - [anon_sym_goto] = ACTIONS(1962), - [anon_sym_DASH_DASH] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1964), - [anon_sym_sizeof] = ACTIONS(1962), - [sym_number_literal] = ACTIONS(1964), - [anon_sym_L_SQUOTE] = ACTIONS(1964), - [anon_sym_u_SQUOTE] = ACTIONS(1964), - [anon_sym_U_SQUOTE] = ACTIONS(1964), - [anon_sym_u8_SQUOTE] = ACTIONS(1964), - [anon_sym_SQUOTE] = ACTIONS(1964), - [anon_sym_L_DQUOTE] = ACTIONS(1964), - [anon_sym_u_DQUOTE] = ACTIONS(1964), - [anon_sym_U_DQUOTE] = ACTIONS(1964), - [anon_sym_u8_DQUOTE] = ACTIONS(1964), - [anon_sym_DQUOTE] = ACTIONS(1964), - [sym_true] = ACTIONS(1962), - [sym_false] = ACTIONS(1962), - [sym_null] = ACTIONS(1962), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1964), - [anon_sym_ATimport] = ACTIONS(1964), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1962), - [anon_sym_ATcompatibility_alias] = ACTIONS(1964), - [anon_sym_ATprotocol] = ACTIONS(1964), - [anon_sym_ATclass] = ACTIONS(1964), - [anon_sym_ATinterface] = ACTIONS(1964), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1962), - [sym_method_attribute_specifier] = ACTIONS(1962), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1962), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1962), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1962), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1962), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1962), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1962), - [anon_sym_NS_AVAILABLE] = ACTIONS(1962), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1962), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1962), - [anon_sym_API_AVAILABLE] = ACTIONS(1962), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1962), - [anon_sym_API_DEPRECATED] = ACTIONS(1962), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1962), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1962), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1962), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1962), - [anon_sym___deprecated_msg] = ACTIONS(1962), - [anon_sym___deprecated_enum_msg] = ACTIONS(1962), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1962), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1962), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1962), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1962), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1962), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1962), - [anon_sym_ATimplementation] = ACTIONS(1964), - [anon_sym_typeof] = ACTIONS(1962), - [anon_sym___typeof] = ACTIONS(1962), - [anon_sym___typeof__] = ACTIONS(1962), - [sym_self] = ACTIONS(1962), - [sym_super] = ACTIONS(1962), - [sym_nil] = ACTIONS(1962), - [sym_id] = ACTIONS(1962), - [sym_instancetype] = ACTIONS(1962), - [sym_Class] = ACTIONS(1962), - [sym_SEL] = ACTIONS(1962), - [sym_IMP] = ACTIONS(1962), - [sym_BOOL] = ACTIONS(1962), - [sym_auto] = ACTIONS(1962), - [anon_sym_ATautoreleasepool] = ACTIONS(1964), - [anon_sym_ATsynchronized] = ACTIONS(1964), - [anon_sym_ATtry] = ACTIONS(1964), - [anon_sym_ATthrow] = ACTIONS(1964), - [anon_sym_ATselector] = ACTIONS(1964), - [anon_sym_ATencode] = ACTIONS(1964), - [anon_sym_AT] = ACTIONS(1962), - [sym_YES] = ACTIONS(1962), - [sym_NO] = ACTIONS(1962), - [anon_sym___builtin_available] = ACTIONS(1962), - [anon_sym_ATavailable] = ACTIONS(1964), - [anon_sym_va_arg] = ACTIONS(1962), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1414] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1415] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1416] = { - [sym_identifier] = ACTIONS(1910), - [aux_sym_preproc_include_token1] = ACTIONS(1912), - [aux_sym_preproc_def_token1] = ACTIONS(1912), - [aux_sym_preproc_if_token1] = ACTIONS(1910), - [aux_sym_preproc_if_token2] = ACTIONS(1910), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1910), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1910), - [anon_sym_LPAREN2] = ACTIONS(1912), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_TILDE] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1910), - [anon_sym_PLUS] = ACTIONS(1910), - [anon_sym_STAR] = ACTIONS(1912), - [anon_sym_CARET] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_typedef] = ACTIONS(1910), - [anon_sym_extern] = ACTIONS(1910), - [anon_sym___attribute] = ACTIONS(1910), - [anon_sym___attribute__] = ACTIONS(1910), - [anon_sym___declspec] = ACTIONS(1910), - [anon_sym___cdecl] = ACTIONS(1910), - [anon_sym___clrcall] = ACTIONS(1910), - [anon_sym___stdcall] = ACTIONS(1910), - [anon_sym___fastcall] = ACTIONS(1910), - [anon_sym___thiscall] = ACTIONS(1910), - [anon_sym___vectorcall] = ACTIONS(1910), - [anon_sym_LBRACE] = ACTIONS(1912), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_auto] = ACTIONS(1910), - [anon_sym_register] = ACTIONS(1910), - [anon_sym_inline] = ACTIONS(1910), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_volatile] = ACTIONS(1910), - [anon_sym_restrict] = ACTIONS(1910), - [anon_sym__Atomic] = ACTIONS(1910), - [anon_sym_in] = ACTIONS(1910), - [anon_sym_out] = ACTIONS(1910), - [anon_sym_inout] = ACTIONS(1910), - [anon_sym_bycopy] = ACTIONS(1910), - [anon_sym_byref] = ACTIONS(1910), - [anon_sym_oneway] = ACTIONS(1910), - [anon_sym__Nullable] = ACTIONS(1910), - [anon_sym__Nonnull] = ACTIONS(1910), - [anon_sym__Nullable_result] = ACTIONS(1910), - [anon_sym__Null_unspecified] = ACTIONS(1910), - [anon_sym___autoreleasing] = ACTIONS(1910), - [anon_sym___nullable] = ACTIONS(1910), - [anon_sym___nonnull] = ACTIONS(1910), - [anon_sym___strong] = ACTIONS(1910), - [anon_sym___weak] = ACTIONS(1910), - [anon_sym___bridge] = ACTIONS(1910), - [anon_sym___bridge_transfer] = ACTIONS(1910), - [anon_sym___bridge_retained] = ACTIONS(1910), - [anon_sym___unsafe_unretained] = ACTIONS(1910), - [anon_sym___block] = ACTIONS(1910), - [anon_sym___kindof] = ACTIONS(1910), - [anon_sym___unused] = ACTIONS(1910), - [anon_sym__Complex] = ACTIONS(1910), - [anon_sym___complex] = ACTIONS(1910), - [anon_sym_IBOutlet] = ACTIONS(1910), - [anon_sym_IBInspectable] = ACTIONS(1910), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1910), - [anon_sym_signed] = ACTIONS(1910), - [anon_sym_unsigned] = ACTIONS(1910), - [anon_sym_long] = ACTIONS(1910), - [anon_sym_short] = ACTIONS(1910), - [sym_primitive_type] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_NS_ENUM] = ACTIONS(1910), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1910), - [anon_sym_NS_OPTIONS] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_switch] = ACTIONS(1910), - [anon_sym_case] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [anon_sym_do] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_goto] = ACTIONS(1910), - [anon_sym_DASH_DASH] = ACTIONS(1912), - [anon_sym_PLUS_PLUS] = ACTIONS(1912), - [anon_sym_sizeof] = ACTIONS(1910), - [sym_number_literal] = ACTIONS(1912), - [anon_sym_L_SQUOTE] = ACTIONS(1912), - [anon_sym_u_SQUOTE] = ACTIONS(1912), - [anon_sym_U_SQUOTE] = ACTIONS(1912), - [anon_sym_u8_SQUOTE] = ACTIONS(1912), - [anon_sym_SQUOTE] = ACTIONS(1912), - [anon_sym_L_DQUOTE] = ACTIONS(1912), - [anon_sym_u_DQUOTE] = ACTIONS(1912), - [anon_sym_U_DQUOTE] = ACTIONS(1912), - [anon_sym_u8_DQUOTE] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym_true] = ACTIONS(1910), - [sym_false] = ACTIONS(1910), - [sym_null] = ACTIONS(1910), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1912), - [anon_sym_ATimport] = ACTIONS(1912), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1910), - [anon_sym_ATcompatibility_alias] = ACTIONS(1912), - [anon_sym_ATprotocol] = ACTIONS(1912), - [anon_sym_ATclass] = ACTIONS(1912), - [anon_sym_ATinterface] = ACTIONS(1912), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1910), - [sym_method_attribute_specifier] = ACTIONS(1910), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1910), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1910), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1910), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1910), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1910), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1910), - [anon_sym_NS_AVAILABLE] = ACTIONS(1910), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1910), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1910), - [anon_sym_API_AVAILABLE] = ACTIONS(1910), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1910), - [anon_sym_API_DEPRECATED] = ACTIONS(1910), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1910), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1910), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1910), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1910), - [anon_sym___deprecated_msg] = ACTIONS(1910), - [anon_sym___deprecated_enum_msg] = ACTIONS(1910), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1910), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1910), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1910), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1910), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1910), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1910), - [anon_sym_ATimplementation] = ACTIONS(1912), - [anon_sym_typeof] = ACTIONS(1910), - [anon_sym___typeof] = ACTIONS(1910), - [anon_sym___typeof__] = ACTIONS(1910), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_nil] = ACTIONS(1910), - [sym_id] = ACTIONS(1910), - [sym_instancetype] = ACTIONS(1910), - [sym_Class] = ACTIONS(1910), - [sym_SEL] = ACTIONS(1910), - [sym_IMP] = ACTIONS(1910), - [sym_BOOL] = ACTIONS(1910), - [sym_auto] = ACTIONS(1910), - [anon_sym_ATautoreleasepool] = ACTIONS(1912), - [anon_sym_ATsynchronized] = ACTIONS(1912), - [anon_sym_ATtry] = ACTIONS(1912), - [anon_sym_ATthrow] = ACTIONS(1912), - [anon_sym_ATselector] = ACTIONS(1912), - [anon_sym_ATencode] = ACTIONS(1912), - [anon_sym_AT] = ACTIONS(1910), - [sym_YES] = ACTIONS(1910), - [sym_NO] = ACTIONS(1910), - [anon_sym___builtin_available] = ACTIONS(1910), - [anon_sym_ATavailable] = ACTIONS(1912), - [anon_sym_va_arg] = ACTIONS(1910), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1417] = { - [sym_identifier] = ACTIONS(1918), - [aux_sym_preproc_include_token1] = ACTIONS(1920), - [aux_sym_preproc_def_token1] = ACTIONS(1920), - [aux_sym_preproc_if_token1] = ACTIONS(1918), - [aux_sym_preproc_if_token2] = ACTIONS(1918), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1918), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1918), - [anon_sym_LPAREN2] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_TILDE] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_PLUS] = ACTIONS(1918), - [anon_sym_STAR] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1920), - [anon_sym_AMP] = ACTIONS(1920), - [anon_sym_SEMI] = ACTIONS(1920), - [anon_sym_typedef] = ACTIONS(1918), - [anon_sym_extern] = ACTIONS(1918), - [anon_sym___attribute] = ACTIONS(1918), - [anon_sym___attribute__] = ACTIONS(1918), - [anon_sym___declspec] = ACTIONS(1918), - [anon_sym___cdecl] = ACTIONS(1918), - [anon_sym___clrcall] = ACTIONS(1918), - [anon_sym___stdcall] = ACTIONS(1918), - [anon_sym___fastcall] = ACTIONS(1918), - [anon_sym___thiscall] = ACTIONS(1918), - [anon_sym___vectorcall] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_static] = ACTIONS(1918), - [anon_sym_auto] = ACTIONS(1918), - [anon_sym_register] = ACTIONS(1918), - [anon_sym_inline] = ACTIONS(1918), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1918), - [anon_sym_const] = ACTIONS(1918), - [anon_sym_volatile] = ACTIONS(1918), - [anon_sym_restrict] = ACTIONS(1918), - [anon_sym__Atomic] = ACTIONS(1918), - [anon_sym_in] = ACTIONS(1918), - [anon_sym_out] = ACTIONS(1918), - [anon_sym_inout] = ACTIONS(1918), - [anon_sym_bycopy] = ACTIONS(1918), - [anon_sym_byref] = ACTIONS(1918), - [anon_sym_oneway] = ACTIONS(1918), - [anon_sym__Nullable] = ACTIONS(1918), - [anon_sym__Nonnull] = ACTIONS(1918), - [anon_sym__Nullable_result] = ACTIONS(1918), - [anon_sym__Null_unspecified] = ACTIONS(1918), - [anon_sym___autoreleasing] = ACTIONS(1918), - [anon_sym___nullable] = ACTIONS(1918), - [anon_sym___nonnull] = ACTIONS(1918), - [anon_sym___strong] = ACTIONS(1918), - [anon_sym___weak] = ACTIONS(1918), - [anon_sym___bridge] = ACTIONS(1918), - [anon_sym___bridge_transfer] = ACTIONS(1918), - [anon_sym___bridge_retained] = ACTIONS(1918), - [anon_sym___unsafe_unretained] = ACTIONS(1918), - [anon_sym___block] = ACTIONS(1918), - [anon_sym___kindof] = ACTIONS(1918), - [anon_sym___unused] = ACTIONS(1918), - [anon_sym__Complex] = ACTIONS(1918), - [anon_sym___complex] = ACTIONS(1918), - [anon_sym_IBOutlet] = ACTIONS(1918), - [anon_sym_IBInspectable] = ACTIONS(1918), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1918), - [anon_sym_signed] = ACTIONS(1918), - [anon_sym_unsigned] = ACTIONS(1918), - [anon_sym_long] = ACTIONS(1918), - [anon_sym_short] = ACTIONS(1918), - [sym_primitive_type] = ACTIONS(1918), - [anon_sym_enum] = ACTIONS(1918), - [anon_sym_NS_ENUM] = ACTIONS(1918), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1918), - [anon_sym_NS_OPTIONS] = ACTIONS(1918), - [anon_sym_struct] = ACTIONS(1918), - [anon_sym_union] = ACTIONS(1918), - [anon_sym_if] = ACTIONS(1918), - [anon_sym_switch] = ACTIONS(1918), - [anon_sym_case] = ACTIONS(1918), - [anon_sym_default] = ACTIONS(1918), - [anon_sym_while] = ACTIONS(1918), - [anon_sym_do] = ACTIONS(1918), - [anon_sym_for] = ACTIONS(1918), - [anon_sym_return] = ACTIONS(1918), - [anon_sym_break] = ACTIONS(1918), - [anon_sym_continue] = ACTIONS(1918), - [anon_sym_goto] = ACTIONS(1918), - [anon_sym_DASH_DASH] = ACTIONS(1920), - [anon_sym_PLUS_PLUS] = ACTIONS(1920), - [anon_sym_sizeof] = ACTIONS(1918), - [sym_number_literal] = ACTIONS(1920), - [anon_sym_L_SQUOTE] = ACTIONS(1920), - [anon_sym_u_SQUOTE] = ACTIONS(1920), - [anon_sym_U_SQUOTE] = ACTIONS(1920), - [anon_sym_u8_SQUOTE] = ACTIONS(1920), - [anon_sym_SQUOTE] = ACTIONS(1920), - [anon_sym_L_DQUOTE] = ACTIONS(1920), - [anon_sym_u_DQUOTE] = ACTIONS(1920), - [anon_sym_U_DQUOTE] = ACTIONS(1920), - [anon_sym_u8_DQUOTE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1920), - [sym_true] = ACTIONS(1918), - [sym_false] = ACTIONS(1918), - [sym_null] = ACTIONS(1918), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1920), - [anon_sym_ATimport] = ACTIONS(1920), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1918), - [anon_sym_ATcompatibility_alias] = ACTIONS(1920), - [anon_sym_ATprotocol] = ACTIONS(1920), - [anon_sym_ATclass] = ACTIONS(1920), - [anon_sym_ATinterface] = ACTIONS(1920), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1918), - [sym_method_attribute_specifier] = ACTIONS(1918), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1918), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1918), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1918), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1918), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1918), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1918), - [anon_sym_NS_AVAILABLE] = ACTIONS(1918), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1918), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1918), - [anon_sym_API_AVAILABLE] = ACTIONS(1918), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1918), - [anon_sym_API_DEPRECATED] = ACTIONS(1918), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1918), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1918), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1918), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1918), - [anon_sym___deprecated_msg] = ACTIONS(1918), - [anon_sym___deprecated_enum_msg] = ACTIONS(1918), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1918), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1918), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1918), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1918), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1918), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1918), - [anon_sym_ATimplementation] = ACTIONS(1920), - [anon_sym_typeof] = ACTIONS(1918), - [anon_sym___typeof] = ACTIONS(1918), - [anon_sym___typeof__] = ACTIONS(1918), - [sym_self] = ACTIONS(1918), - [sym_super] = ACTIONS(1918), - [sym_nil] = ACTIONS(1918), - [sym_id] = ACTIONS(1918), - [sym_instancetype] = ACTIONS(1918), - [sym_Class] = ACTIONS(1918), - [sym_SEL] = ACTIONS(1918), - [sym_IMP] = ACTIONS(1918), - [sym_BOOL] = ACTIONS(1918), - [sym_auto] = ACTIONS(1918), - [anon_sym_ATautoreleasepool] = ACTIONS(1920), - [anon_sym_ATsynchronized] = ACTIONS(1920), - [anon_sym_ATtry] = ACTIONS(1920), - [anon_sym_ATthrow] = ACTIONS(1920), - [anon_sym_ATselector] = ACTIONS(1920), - [anon_sym_ATencode] = ACTIONS(1920), - [anon_sym_AT] = ACTIONS(1918), - [sym_YES] = ACTIONS(1918), - [sym_NO] = ACTIONS(1918), - [anon_sym___builtin_available] = ACTIONS(1918), - [anon_sym_ATavailable] = ACTIONS(1920), - [anon_sym_va_arg] = ACTIONS(1918), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1418] = { - [sym_identifier] = ACTIONS(1926), - [aux_sym_preproc_include_token1] = ACTIONS(1928), - [aux_sym_preproc_def_token1] = ACTIONS(1928), - [aux_sym_preproc_if_token1] = ACTIONS(1926), - [aux_sym_preproc_if_token2] = ACTIONS(1926), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1926), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1926), - [anon_sym_LPAREN2] = ACTIONS(1928), - [anon_sym_BANG] = ACTIONS(1928), - [anon_sym_TILDE] = ACTIONS(1928), - [anon_sym_DASH] = ACTIONS(1926), - [anon_sym_PLUS] = ACTIONS(1926), - [anon_sym_STAR] = ACTIONS(1928), - [anon_sym_CARET] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1928), - [anon_sym_SEMI] = ACTIONS(1928), - [anon_sym_typedef] = ACTIONS(1926), - [anon_sym_extern] = ACTIONS(1926), - [anon_sym___attribute] = ACTIONS(1926), - [anon_sym___attribute__] = ACTIONS(1926), - [anon_sym___declspec] = ACTIONS(1926), - [anon_sym___cdecl] = ACTIONS(1926), - [anon_sym___clrcall] = ACTIONS(1926), - [anon_sym___stdcall] = ACTIONS(1926), - [anon_sym___fastcall] = ACTIONS(1926), - [anon_sym___thiscall] = ACTIONS(1926), - [anon_sym___vectorcall] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_static] = ACTIONS(1926), - [anon_sym_auto] = ACTIONS(1926), - [anon_sym_register] = ACTIONS(1926), - [anon_sym_inline] = ACTIONS(1926), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1926), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_volatile] = ACTIONS(1926), - [anon_sym_restrict] = ACTIONS(1926), - [anon_sym__Atomic] = ACTIONS(1926), - [anon_sym_in] = ACTIONS(1926), - [anon_sym_out] = ACTIONS(1926), - [anon_sym_inout] = ACTIONS(1926), - [anon_sym_bycopy] = ACTIONS(1926), - [anon_sym_byref] = ACTIONS(1926), - [anon_sym_oneway] = ACTIONS(1926), - [anon_sym__Nullable] = ACTIONS(1926), - [anon_sym__Nonnull] = ACTIONS(1926), - [anon_sym__Nullable_result] = ACTIONS(1926), - [anon_sym__Null_unspecified] = ACTIONS(1926), - [anon_sym___autoreleasing] = ACTIONS(1926), - [anon_sym___nullable] = ACTIONS(1926), - [anon_sym___nonnull] = ACTIONS(1926), - [anon_sym___strong] = ACTIONS(1926), - [anon_sym___weak] = ACTIONS(1926), - [anon_sym___bridge] = ACTIONS(1926), - [anon_sym___bridge_transfer] = ACTIONS(1926), - [anon_sym___bridge_retained] = ACTIONS(1926), - [anon_sym___unsafe_unretained] = ACTIONS(1926), - [anon_sym___block] = ACTIONS(1926), - [anon_sym___kindof] = ACTIONS(1926), - [anon_sym___unused] = ACTIONS(1926), - [anon_sym__Complex] = ACTIONS(1926), - [anon_sym___complex] = ACTIONS(1926), - [anon_sym_IBOutlet] = ACTIONS(1926), - [anon_sym_IBInspectable] = ACTIONS(1926), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1926), - [anon_sym_signed] = ACTIONS(1926), - [anon_sym_unsigned] = ACTIONS(1926), - [anon_sym_long] = ACTIONS(1926), - [anon_sym_short] = ACTIONS(1926), - [sym_primitive_type] = ACTIONS(1926), - [anon_sym_enum] = ACTIONS(1926), - [anon_sym_NS_ENUM] = ACTIONS(1926), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1926), - [anon_sym_NS_OPTIONS] = ACTIONS(1926), - [anon_sym_struct] = ACTIONS(1926), - [anon_sym_union] = ACTIONS(1926), - [anon_sym_if] = ACTIONS(1926), - [anon_sym_switch] = ACTIONS(1926), - [anon_sym_case] = ACTIONS(1926), - [anon_sym_default] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1926), - [anon_sym_do] = ACTIONS(1926), - [anon_sym_for] = ACTIONS(1926), - [anon_sym_return] = ACTIONS(1926), - [anon_sym_break] = ACTIONS(1926), - [anon_sym_continue] = ACTIONS(1926), - [anon_sym_goto] = ACTIONS(1926), - [anon_sym_DASH_DASH] = ACTIONS(1928), - [anon_sym_PLUS_PLUS] = ACTIONS(1928), - [anon_sym_sizeof] = ACTIONS(1926), - [sym_number_literal] = ACTIONS(1928), - [anon_sym_L_SQUOTE] = ACTIONS(1928), - [anon_sym_u_SQUOTE] = ACTIONS(1928), - [anon_sym_U_SQUOTE] = ACTIONS(1928), - [anon_sym_u8_SQUOTE] = ACTIONS(1928), - [anon_sym_SQUOTE] = ACTIONS(1928), - [anon_sym_L_DQUOTE] = ACTIONS(1928), - [anon_sym_u_DQUOTE] = ACTIONS(1928), - [anon_sym_U_DQUOTE] = ACTIONS(1928), - [anon_sym_u8_DQUOTE] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1928), - [sym_true] = ACTIONS(1926), - [sym_false] = ACTIONS(1926), - [sym_null] = ACTIONS(1926), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1928), - [anon_sym_ATimport] = ACTIONS(1928), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1926), - [anon_sym_ATcompatibility_alias] = ACTIONS(1928), - [anon_sym_ATprotocol] = ACTIONS(1928), - [anon_sym_ATclass] = ACTIONS(1928), - [anon_sym_ATinterface] = ACTIONS(1928), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1926), - [sym_method_attribute_specifier] = ACTIONS(1926), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1926), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1926), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1926), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1926), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1926), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1926), - [anon_sym_NS_AVAILABLE] = ACTIONS(1926), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1926), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1926), - [anon_sym_API_AVAILABLE] = ACTIONS(1926), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1926), - [anon_sym_API_DEPRECATED] = ACTIONS(1926), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1926), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1926), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1926), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1926), - [anon_sym___deprecated_msg] = ACTIONS(1926), - [anon_sym___deprecated_enum_msg] = ACTIONS(1926), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1926), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1926), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1926), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1926), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1926), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1926), - [anon_sym_ATimplementation] = ACTIONS(1928), - [anon_sym_typeof] = ACTIONS(1926), - [anon_sym___typeof] = ACTIONS(1926), - [anon_sym___typeof__] = ACTIONS(1926), - [sym_self] = ACTIONS(1926), - [sym_super] = ACTIONS(1926), - [sym_nil] = ACTIONS(1926), - [sym_id] = ACTIONS(1926), - [sym_instancetype] = ACTIONS(1926), - [sym_Class] = ACTIONS(1926), - [sym_SEL] = ACTIONS(1926), - [sym_IMP] = ACTIONS(1926), - [sym_BOOL] = ACTIONS(1926), - [sym_auto] = ACTIONS(1926), - [anon_sym_ATautoreleasepool] = ACTIONS(1928), - [anon_sym_ATsynchronized] = ACTIONS(1928), - [anon_sym_ATtry] = ACTIONS(1928), - [anon_sym_ATthrow] = ACTIONS(1928), - [anon_sym_ATselector] = ACTIONS(1928), - [anon_sym_ATencode] = ACTIONS(1928), - [anon_sym_AT] = ACTIONS(1926), - [sym_YES] = ACTIONS(1926), - [sym_NO] = ACTIONS(1926), - [anon_sym___builtin_available] = ACTIONS(1926), - [anon_sym_ATavailable] = ACTIONS(1928), - [anon_sym_va_arg] = ACTIONS(1926), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1419] = { - [sym_identifier] = ACTIONS(1930), - [aux_sym_preproc_include_token1] = ACTIONS(1932), - [aux_sym_preproc_def_token1] = ACTIONS(1932), - [aux_sym_preproc_if_token1] = ACTIONS(1930), - [aux_sym_preproc_if_token2] = ACTIONS(1930), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1930), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1930), - [anon_sym_LPAREN2] = ACTIONS(1932), - [anon_sym_BANG] = ACTIONS(1932), - [anon_sym_TILDE] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1932), - [anon_sym_CARET] = ACTIONS(1932), - [anon_sym_AMP] = ACTIONS(1932), - [anon_sym_SEMI] = ACTIONS(1932), - [anon_sym_typedef] = ACTIONS(1930), - [anon_sym_extern] = ACTIONS(1930), - [anon_sym___attribute] = ACTIONS(1930), - [anon_sym___attribute__] = ACTIONS(1930), - [anon_sym___declspec] = ACTIONS(1930), - [anon_sym___cdecl] = ACTIONS(1930), - [anon_sym___clrcall] = ACTIONS(1930), - [anon_sym___stdcall] = ACTIONS(1930), - [anon_sym___fastcall] = ACTIONS(1930), - [anon_sym___thiscall] = ACTIONS(1930), - [anon_sym___vectorcall] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1932), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_auto] = ACTIONS(1930), - [anon_sym_register] = ACTIONS(1930), - [anon_sym_inline] = ACTIONS(1930), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_volatile] = ACTIONS(1930), - [anon_sym_restrict] = ACTIONS(1930), - [anon_sym__Atomic] = ACTIONS(1930), - [anon_sym_in] = ACTIONS(1930), - [anon_sym_out] = ACTIONS(1930), - [anon_sym_inout] = ACTIONS(1930), - [anon_sym_bycopy] = ACTIONS(1930), - [anon_sym_byref] = ACTIONS(1930), - [anon_sym_oneway] = ACTIONS(1930), - [anon_sym__Nullable] = ACTIONS(1930), - [anon_sym__Nonnull] = ACTIONS(1930), - [anon_sym__Nullable_result] = ACTIONS(1930), - [anon_sym__Null_unspecified] = ACTIONS(1930), - [anon_sym___autoreleasing] = ACTIONS(1930), - [anon_sym___nullable] = ACTIONS(1930), - [anon_sym___nonnull] = ACTIONS(1930), - [anon_sym___strong] = ACTIONS(1930), - [anon_sym___weak] = ACTIONS(1930), - [anon_sym___bridge] = ACTIONS(1930), - [anon_sym___bridge_transfer] = ACTIONS(1930), - [anon_sym___bridge_retained] = ACTIONS(1930), - [anon_sym___unsafe_unretained] = ACTIONS(1930), - [anon_sym___block] = ACTIONS(1930), - [anon_sym___kindof] = ACTIONS(1930), - [anon_sym___unused] = ACTIONS(1930), - [anon_sym__Complex] = ACTIONS(1930), - [anon_sym___complex] = ACTIONS(1930), - [anon_sym_IBOutlet] = ACTIONS(1930), - [anon_sym_IBInspectable] = ACTIONS(1930), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1930), - [anon_sym_signed] = ACTIONS(1930), - [anon_sym_unsigned] = ACTIONS(1930), - [anon_sym_long] = ACTIONS(1930), - [anon_sym_short] = ACTIONS(1930), - [sym_primitive_type] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_NS_ENUM] = ACTIONS(1930), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1930), - [anon_sym_NS_OPTIONS] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_switch] = ACTIONS(1930), - [anon_sym_case] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [anon_sym_do] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_goto] = ACTIONS(1930), - [anon_sym_DASH_DASH] = ACTIONS(1932), - [anon_sym_PLUS_PLUS] = ACTIONS(1932), - [anon_sym_sizeof] = ACTIONS(1930), - [sym_number_literal] = ACTIONS(1932), - [anon_sym_L_SQUOTE] = ACTIONS(1932), - [anon_sym_u_SQUOTE] = ACTIONS(1932), - [anon_sym_U_SQUOTE] = ACTIONS(1932), - [anon_sym_u8_SQUOTE] = ACTIONS(1932), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_L_DQUOTE] = ACTIONS(1932), - [anon_sym_u_DQUOTE] = ACTIONS(1932), - [anon_sym_U_DQUOTE] = ACTIONS(1932), - [anon_sym_u8_DQUOTE] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(1932), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1932), - [anon_sym_ATimport] = ACTIONS(1932), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1930), - [anon_sym_ATcompatibility_alias] = ACTIONS(1932), - [anon_sym_ATprotocol] = ACTIONS(1932), - [anon_sym_ATclass] = ACTIONS(1932), - [anon_sym_ATinterface] = ACTIONS(1932), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1930), - [sym_method_attribute_specifier] = ACTIONS(1930), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1930), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1930), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1930), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1930), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1930), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1930), - [anon_sym_NS_AVAILABLE] = ACTIONS(1930), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1930), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1930), - [anon_sym_API_AVAILABLE] = ACTIONS(1930), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1930), - [anon_sym_API_DEPRECATED] = ACTIONS(1930), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1930), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1930), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1930), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1930), - [anon_sym___deprecated_msg] = ACTIONS(1930), - [anon_sym___deprecated_enum_msg] = ACTIONS(1930), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1930), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1930), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1930), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1930), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1930), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1930), - [anon_sym_ATimplementation] = ACTIONS(1932), - [anon_sym_typeof] = ACTIONS(1930), - [anon_sym___typeof] = ACTIONS(1930), - [anon_sym___typeof__] = ACTIONS(1930), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_nil] = ACTIONS(1930), - [sym_id] = ACTIONS(1930), - [sym_instancetype] = ACTIONS(1930), - [sym_Class] = ACTIONS(1930), - [sym_SEL] = ACTIONS(1930), - [sym_IMP] = ACTIONS(1930), - [sym_BOOL] = ACTIONS(1930), - [sym_auto] = ACTIONS(1930), - [anon_sym_ATautoreleasepool] = ACTIONS(1932), - [anon_sym_ATsynchronized] = ACTIONS(1932), - [anon_sym_ATtry] = ACTIONS(1932), - [anon_sym_ATthrow] = ACTIONS(1932), - [anon_sym_ATselector] = ACTIONS(1932), - [anon_sym_ATencode] = ACTIONS(1932), - [anon_sym_AT] = ACTIONS(1930), - [sym_YES] = ACTIONS(1930), - [sym_NO] = ACTIONS(1930), - [anon_sym___builtin_available] = ACTIONS(1930), - [anon_sym_ATavailable] = ACTIONS(1932), - [anon_sym_va_arg] = ACTIONS(1930), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1420] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1421] = { - [sym_identifier] = ACTIONS(1934), - [aux_sym_preproc_include_token1] = ACTIONS(1936), - [aux_sym_preproc_def_token1] = ACTIONS(1936), - [aux_sym_preproc_if_token1] = ACTIONS(1934), - [aux_sym_preproc_if_token2] = ACTIONS(1934), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1934), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1934), - [anon_sym_LPAREN2] = ACTIONS(1936), - [anon_sym_BANG] = ACTIONS(1936), - [anon_sym_TILDE] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1934), - [anon_sym_PLUS] = ACTIONS(1934), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_CARET] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1936), - [anon_sym_typedef] = ACTIONS(1934), - [anon_sym_extern] = ACTIONS(1934), - [anon_sym___attribute] = ACTIONS(1934), - [anon_sym___attribute__] = ACTIONS(1934), - [anon_sym___declspec] = ACTIONS(1934), - [anon_sym___cdecl] = ACTIONS(1934), - [anon_sym___clrcall] = ACTIONS(1934), - [anon_sym___stdcall] = ACTIONS(1934), - [anon_sym___fastcall] = ACTIONS(1934), - [anon_sym___thiscall] = ACTIONS(1934), - [anon_sym___vectorcall] = ACTIONS(1934), - [anon_sym_LBRACE] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1934), - [anon_sym_auto] = ACTIONS(1934), - [anon_sym_register] = ACTIONS(1934), - [anon_sym_inline] = ACTIONS(1934), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1934), - [anon_sym_const] = ACTIONS(1934), - [anon_sym_volatile] = ACTIONS(1934), - [anon_sym_restrict] = ACTIONS(1934), - [anon_sym__Atomic] = ACTIONS(1934), - [anon_sym_in] = ACTIONS(1934), - [anon_sym_out] = ACTIONS(1934), - [anon_sym_inout] = ACTIONS(1934), - [anon_sym_bycopy] = ACTIONS(1934), - [anon_sym_byref] = ACTIONS(1934), - [anon_sym_oneway] = ACTIONS(1934), - [anon_sym__Nullable] = ACTIONS(1934), - [anon_sym__Nonnull] = ACTIONS(1934), - [anon_sym__Nullable_result] = ACTIONS(1934), - [anon_sym__Null_unspecified] = ACTIONS(1934), - [anon_sym___autoreleasing] = ACTIONS(1934), - [anon_sym___nullable] = ACTIONS(1934), - [anon_sym___nonnull] = ACTIONS(1934), - [anon_sym___strong] = ACTIONS(1934), - [anon_sym___weak] = ACTIONS(1934), - [anon_sym___bridge] = ACTIONS(1934), - [anon_sym___bridge_transfer] = ACTIONS(1934), - [anon_sym___bridge_retained] = ACTIONS(1934), - [anon_sym___unsafe_unretained] = ACTIONS(1934), - [anon_sym___block] = ACTIONS(1934), - [anon_sym___kindof] = ACTIONS(1934), - [anon_sym___unused] = ACTIONS(1934), - [anon_sym__Complex] = ACTIONS(1934), - [anon_sym___complex] = ACTIONS(1934), - [anon_sym_IBOutlet] = ACTIONS(1934), - [anon_sym_IBInspectable] = ACTIONS(1934), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1934), - [anon_sym_signed] = ACTIONS(1934), - [anon_sym_unsigned] = ACTIONS(1934), - [anon_sym_long] = ACTIONS(1934), - [anon_sym_short] = ACTIONS(1934), - [sym_primitive_type] = ACTIONS(1934), - [anon_sym_enum] = ACTIONS(1934), - [anon_sym_NS_ENUM] = ACTIONS(1934), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1934), - [anon_sym_NS_OPTIONS] = ACTIONS(1934), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1934), - [anon_sym_switch] = ACTIONS(1934), - [anon_sym_case] = ACTIONS(1934), - [anon_sym_default] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1934), - [anon_sym_do] = ACTIONS(1934), - [anon_sym_for] = ACTIONS(1934), - [anon_sym_return] = ACTIONS(1934), - [anon_sym_break] = ACTIONS(1934), - [anon_sym_continue] = ACTIONS(1934), - [anon_sym_goto] = ACTIONS(1934), - [anon_sym_DASH_DASH] = ACTIONS(1936), - [anon_sym_PLUS_PLUS] = ACTIONS(1936), - [anon_sym_sizeof] = ACTIONS(1934), - [sym_number_literal] = ACTIONS(1936), - [anon_sym_L_SQUOTE] = ACTIONS(1936), - [anon_sym_u_SQUOTE] = ACTIONS(1936), - [anon_sym_U_SQUOTE] = ACTIONS(1936), - [anon_sym_u8_SQUOTE] = ACTIONS(1936), - [anon_sym_SQUOTE] = ACTIONS(1936), - [anon_sym_L_DQUOTE] = ACTIONS(1936), - [anon_sym_u_DQUOTE] = ACTIONS(1936), - [anon_sym_U_DQUOTE] = ACTIONS(1936), - [anon_sym_u8_DQUOTE] = ACTIONS(1936), - [anon_sym_DQUOTE] = ACTIONS(1936), - [sym_true] = ACTIONS(1934), - [sym_false] = ACTIONS(1934), - [sym_null] = ACTIONS(1934), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1936), - [anon_sym_ATimport] = ACTIONS(1936), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1934), - [anon_sym_ATcompatibility_alias] = ACTIONS(1936), - [anon_sym_ATprotocol] = ACTIONS(1936), - [anon_sym_ATclass] = ACTIONS(1936), - [anon_sym_ATinterface] = ACTIONS(1936), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1934), - [sym_method_attribute_specifier] = ACTIONS(1934), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1934), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1934), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1934), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1934), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1934), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1934), - [anon_sym_NS_AVAILABLE] = ACTIONS(1934), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1934), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1934), - [anon_sym_API_AVAILABLE] = ACTIONS(1934), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1934), - [anon_sym_API_DEPRECATED] = ACTIONS(1934), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1934), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1934), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1934), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1934), - [anon_sym___deprecated_msg] = ACTIONS(1934), - [anon_sym___deprecated_enum_msg] = ACTIONS(1934), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1934), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1934), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1934), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1934), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1934), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1934), - [anon_sym_ATimplementation] = ACTIONS(1936), - [anon_sym_typeof] = ACTIONS(1934), - [anon_sym___typeof] = ACTIONS(1934), - [anon_sym___typeof__] = ACTIONS(1934), - [sym_self] = ACTIONS(1934), - [sym_super] = ACTIONS(1934), - [sym_nil] = ACTIONS(1934), - [sym_id] = ACTIONS(1934), - [sym_instancetype] = ACTIONS(1934), - [sym_Class] = ACTIONS(1934), - [sym_SEL] = ACTIONS(1934), - [sym_IMP] = ACTIONS(1934), - [sym_BOOL] = ACTIONS(1934), - [sym_auto] = ACTIONS(1934), - [anon_sym_ATautoreleasepool] = ACTIONS(1936), - [anon_sym_ATsynchronized] = ACTIONS(1936), - [anon_sym_ATtry] = ACTIONS(1936), - [anon_sym_ATthrow] = ACTIONS(1936), - [anon_sym_ATselector] = ACTIONS(1936), - [anon_sym_ATencode] = ACTIONS(1936), - [anon_sym_AT] = ACTIONS(1934), - [sym_YES] = ACTIONS(1934), - [sym_NO] = ACTIONS(1934), - [anon_sym___builtin_available] = ACTIONS(1934), - [anon_sym_ATavailable] = ACTIONS(1936), - [anon_sym_va_arg] = ACTIONS(1934), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1422] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1423] = { - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_include_token1] = ACTIONS(1940), - [aux_sym_preproc_def_token1] = ACTIONS(1940), - [aux_sym_preproc_if_token1] = ACTIONS(1938), - [aux_sym_preproc_if_token2] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1938), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1938), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_CARET] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym_typedef] = ACTIONS(1938), - [anon_sym_extern] = ACTIONS(1938), - [anon_sym___attribute] = ACTIONS(1938), - [anon_sym___attribute__] = ACTIONS(1938), - [anon_sym___declspec] = ACTIONS(1938), - [anon_sym___cdecl] = ACTIONS(1938), - [anon_sym___clrcall] = ACTIONS(1938), - [anon_sym___stdcall] = ACTIONS(1938), - [anon_sym___fastcall] = ACTIONS(1938), - [anon_sym___thiscall] = ACTIONS(1938), - [anon_sym___vectorcall] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1938), - [anon_sym_auto] = ACTIONS(1938), - [anon_sym_register] = ACTIONS(1938), - [anon_sym_inline] = ACTIONS(1938), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1938), - [anon_sym_const] = ACTIONS(1938), - [anon_sym_volatile] = ACTIONS(1938), - [anon_sym_restrict] = ACTIONS(1938), - [anon_sym__Atomic] = ACTIONS(1938), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_out] = ACTIONS(1938), - [anon_sym_inout] = ACTIONS(1938), - [anon_sym_bycopy] = ACTIONS(1938), - [anon_sym_byref] = ACTIONS(1938), - [anon_sym_oneway] = ACTIONS(1938), - [anon_sym__Nullable] = ACTIONS(1938), - [anon_sym__Nonnull] = ACTIONS(1938), - [anon_sym__Nullable_result] = ACTIONS(1938), - [anon_sym__Null_unspecified] = ACTIONS(1938), - [anon_sym___autoreleasing] = ACTIONS(1938), - [anon_sym___nullable] = ACTIONS(1938), - [anon_sym___nonnull] = ACTIONS(1938), - [anon_sym___strong] = ACTIONS(1938), - [anon_sym___weak] = ACTIONS(1938), - [anon_sym___bridge] = ACTIONS(1938), - [anon_sym___bridge_transfer] = ACTIONS(1938), - [anon_sym___bridge_retained] = ACTIONS(1938), - [anon_sym___unsafe_unretained] = ACTIONS(1938), - [anon_sym___block] = ACTIONS(1938), - [anon_sym___kindof] = ACTIONS(1938), - [anon_sym___unused] = ACTIONS(1938), - [anon_sym__Complex] = ACTIONS(1938), - [anon_sym___complex] = ACTIONS(1938), - [anon_sym_IBOutlet] = ACTIONS(1938), - [anon_sym_IBInspectable] = ACTIONS(1938), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1938), - [anon_sym_signed] = ACTIONS(1938), - [anon_sym_unsigned] = ACTIONS(1938), - [anon_sym_long] = ACTIONS(1938), - [anon_sym_short] = ACTIONS(1938), - [sym_primitive_type] = ACTIONS(1938), - [anon_sym_enum] = ACTIONS(1938), - [anon_sym_NS_ENUM] = ACTIONS(1938), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1938), - [anon_sym_NS_OPTIONS] = ACTIONS(1938), - [anon_sym_struct] = ACTIONS(1938), - [anon_sym_union] = ACTIONS(1938), - [anon_sym_if] = ACTIONS(1938), - [anon_sym_switch] = ACTIONS(1938), - [anon_sym_case] = ACTIONS(1938), - [anon_sym_default] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1938), - [anon_sym_do] = ACTIONS(1938), - [anon_sym_for] = ACTIONS(1938), - [anon_sym_return] = ACTIONS(1938), - [anon_sym_break] = ACTIONS(1938), - [anon_sym_continue] = ACTIONS(1938), - [anon_sym_goto] = ACTIONS(1938), - [anon_sym_DASH_DASH] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1940), - [anon_sym_sizeof] = ACTIONS(1938), - [sym_number_literal] = ACTIONS(1940), - [anon_sym_L_SQUOTE] = ACTIONS(1940), - [anon_sym_u_SQUOTE] = ACTIONS(1940), - [anon_sym_U_SQUOTE] = ACTIONS(1940), - [anon_sym_u8_SQUOTE] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_L_DQUOTE] = ACTIONS(1940), - [anon_sym_u_DQUOTE] = ACTIONS(1940), - [anon_sym_U_DQUOTE] = ACTIONS(1940), - [anon_sym_u8_DQUOTE] = ACTIONS(1940), - [anon_sym_DQUOTE] = ACTIONS(1940), - [sym_true] = ACTIONS(1938), - [sym_false] = ACTIONS(1938), - [sym_null] = ACTIONS(1938), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1940), - [anon_sym_ATimport] = ACTIONS(1940), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1938), - [anon_sym_ATcompatibility_alias] = ACTIONS(1940), - [anon_sym_ATprotocol] = ACTIONS(1940), - [anon_sym_ATclass] = ACTIONS(1940), - [anon_sym_ATinterface] = ACTIONS(1940), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1938), - [sym_method_attribute_specifier] = ACTIONS(1938), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1938), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1938), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1938), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1938), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1938), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1938), - [anon_sym_NS_AVAILABLE] = ACTIONS(1938), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1938), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1938), - [anon_sym_API_AVAILABLE] = ACTIONS(1938), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1938), - [anon_sym_API_DEPRECATED] = ACTIONS(1938), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1938), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1938), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1938), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1938), - [anon_sym___deprecated_msg] = ACTIONS(1938), - [anon_sym___deprecated_enum_msg] = ACTIONS(1938), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1938), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1938), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1938), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1938), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1938), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1938), - [anon_sym_ATimplementation] = ACTIONS(1940), - [anon_sym_typeof] = ACTIONS(1938), - [anon_sym___typeof] = ACTIONS(1938), - [anon_sym___typeof__] = ACTIONS(1938), - [sym_self] = ACTIONS(1938), - [sym_super] = ACTIONS(1938), - [sym_nil] = ACTIONS(1938), - [sym_id] = ACTIONS(1938), - [sym_instancetype] = ACTIONS(1938), - [sym_Class] = ACTIONS(1938), - [sym_SEL] = ACTIONS(1938), - [sym_IMP] = ACTIONS(1938), - [sym_BOOL] = ACTIONS(1938), - [sym_auto] = ACTIONS(1938), - [anon_sym_ATautoreleasepool] = ACTIONS(1940), - [anon_sym_ATsynchronized] = ACTIONS(1940), - [anon_sym_ATtry] = ACTIONS(1940), - [anon_sym_ATthrow] = ACTIONS(1940), - [anon_sym_ATselector] = ACTIONS(1940), - [anon_sym_ATencode] = ACTIONS(1940), - [anon_sym_AT] = ACTIONS(1938), - [sym_YES] = ACTIONS(1938), - [sym_NO] = ACTIONS(1938), - [anon_sym___builtin_available] = ACTIONS(1938), - [anon_sym_ATavailable] = ACTIONS(1940), - [anon_sym_va_arg] = ACTIONS(1938), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1424] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1425] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1426] = { - [sym_identifier] = ACTIONS(1966), - [aux_sym_preproc_include_token1] = ACTIONS(1968), - [aux_sym_preproc_def_token1] = ACTIONS(1968), - [aux_sym_preproc_if_token1] = ACTIONS(1966), - [aux_sym_preproc_if_token2] = ACTIONS(1966), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1966), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1966), - [anon_sym_LPAREN2] = ACTIONS(1968), - [anon_sym_BANG] = ACTIONS(1968), - [anon_sym_TILDE] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1966), - [anon_sym_PLUS] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1968), - [anon_sym_CARET] = ACTIONS(1968), - [anon_sym_AMP] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_typedef] = ACTIONS(1966), - [anon_sym_extern] = ACTIONS(1966), - [anon_sym___attribute] = ACTIONS(1966), - [anon_sym___attribute__] = ACTIONS(1966), - [anon_sym___declspec] = ACTIONS(1966), - [anon_sym___cdecl] = ACTIONS(1966), - [anon_sym___clrcall] = ACTIONS(1966), - [anon_sym___stdcall] = ACTIONS(1966), - [anon_sym___fastcall] = ACTIONS(1966), - [anon_sym___thiscall] = ACTIONS(1966), - [anon_sym___vectorcall] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1966), - [anon_sym_auto] = ACTIONS(1966), - [anon_sym_register] = ACTIONS(1966), - [anon_sym_inline] = ACTIONS(1966), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1966), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_volatile] = ACTIONS(1966), - [anon_sym_restrict] = ACTIONS(1966), - [anon_sym__Atomic] = ACTIONS(1966), - [anon_sym_in] = ACTIONS(1966), - [anon_sym_out] = ACTIONS(1966), - [anon_sym_inout] = ACTIONS(1966), - [anon_sym_bycopy] = ACTIONS(1966), - [anon_sym_byref] = ACTIONS(1966), - [anon_sym_oneway] = ACTIONS(1966), - [anon_sym__Nullable] = ACTIONS(1966), - [anon_sym__Nonnull] = ACTIONS(1966), - [anon_sym__Nullable_result] = ACTIONS(1966), - [anon_sym__Null_unspecified] = ACTIONS(1966), - [anon_sym___autoreleasing] = ACTIONS(1966), - [anon_sym___nullable] = ACTIONS(1966), - [anon_sym___nonnull] = ACTIONS(1966), - [anon_sym___strong] = ACTIONS(1966), - [anon_sym___weak] = ACTIONS(1966), - [anon_sym___bridge] = ACTIONS(1966), - [anon_sym___bridge_transfer] = ACTIONS(1966), - [anon_sym___bridge_retained] = ACTIONS(1966), - [anon_sym___unsafe_unretained] = ACTIONS(1966), - [anon_sym___block] = ACTIONS(1966), - [anon_sym___kindof] = ACTIONS(1966), - [anon_sym___unused] = ACTIONS(1966), - [anon_sym__Complex] = ACTIONS(1966), - [anon_sym___complex] = ACTIONS(1966), - [anon_sym_IBOutlet] = ACTIONS(1966), - [anon_sym_IBInspectable] = ACTIONS(1966), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1966), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [sym_primitive_type] = ACTIONS(1966), - [anon_sym_enum] = ACTIONS(1966), - [anon_sym_NS_ENUM] = ACTIONS(1966), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1966), - [anon_sym_NS_OPTIONS] = ACTIONS(1966), - [anon_sym_struct] = ACTIONS(1966), - [anon_sym_union] = ACTIONS(1966), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_switch] = ACTIONS(1966), - [anon_sym_case] = ACTIONS(1966), - [anon_sym_default] = ACTIONS(1966), - [anon_sym_while] = ACTIONS(1966), - [anon_sym_do] = ACTIONS(1966), - [anon_sym_for] = ACTIONS(1966), - [anon_sym_return] = ACTIONS(1966), - [anon_sym_break] = ACTIONS(1966), - [anon_sym_continue] = ACTIONS(1966), - [anon_sym_goto] = ACTIONS(1966), - [anon_sym_DASH_DASH] = ACTIONS(1968), - [anon_sym_PLUS_PLUS] = ACTIONS(1968), - [anon_sym_sizeof] = ACTIONS(1966), - [sym_number_literal] = ACTIONS(1968), - [anon_sym_L_SQUOTE] = ACTIONS(1968), - [anon_sym_u_SQUOTE] = ACTIONS(1968), - [anon_sym_U_SQUOTE] = ACTIONS(1968), - [anon_sym_u8_SQUOTE] = ACTIONS(1968), - [anon_sym_SQUOTE] = ACTIONS(1968), - [anon_sym_L_DQUOTE] = ACTIONS(1968), - [anon_sym_u_DQUOTE] = ACTIONS(1968), - [anon_sym_U_DQUOTE] = ACTIONS(1968), - [anon_sym_u8_DQUOTE] = ACTIONS(1968), - [anon_sym_DQUOTE] = ACTIONS(1968), - [sym_true] = ACTIONS(1966), - [sym_false] = ACTIONS(1966), - [sym_null] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1968), - [anon_sym_ATimport] = ACTIONS(1968), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1966), - [anon_sym_ATcompatibility_alias] = ACTIONS(1968), - [anon_sym_ATprotocol] = ACTIONS(1968), - [anon_sym_ATclass] = ACTIONS(1968), - [anon_sym_ATinterface] = ACTIONS(1968), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1966), - [sym_method_attribute_specifier] = ACTIONS(1966), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1966), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1966), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1966), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1966), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1966), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1966), - [anon_sym_NS_AVAILABLE] = ACTIONS(1966), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1966), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1966), - [anon_sym_API_AVAILABLE] = ACTIONS(1966), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1966), - [anon_sym_API_DEPRECATED] = ACTIONS(1966), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1966), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1966), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1966), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1966), - [anon_sym___deprecated_msg] = ACTIONS(1966), - [anon_sym___deprecated_enum_msg] = ACTIONS(1966), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1966), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1966), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1966), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1966), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1966), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1966), - [anon_sym_ATimplementation] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(1966), - [anon_sym___typeof] = ACTIONS(1966), - [anon_sym___typeof__] = ACTIONS(1966), - [sym_self] = ACTIONS(1966), - [sym_super] = ACTIONS(1966), - [sym_nil] = ACTIONS(1966), - [sym_id] = ACTIONS(1966), - [sym_instancetype] = ACTIONS(1966), - [sym_Class] = ACTIONS(1966), - [sym_SEL] = ACTIONS(1966), - [sym_IMP] = ACTIONS(1966), - [sym_BOOL] = ACTIONS(1966), - [sym_auto] = ACTIONS(1966), - [anon_sym_ATautoreleasepool] = ACTIONS(1968), - [anon_sym_ATsynchronized] = ACTIONS(1968), - [anon_sym_ATtry] = ACTIONS(1968), - [anon_sym_ATthrow] = ACTIONS(1968), - [anon_sym_ATselector] = ACTIONS(1968), - [anon_sym_ATencode] = ACTIONS(1968), - [anon_sym_AT] = ACTIONS(1966), - [sym_YES] = ACTIONS(1966), - [sym_NO] = ACTIONS(1966), - [anon_sym___builtin_available] = ACTIONS(1966), - [anon_sym_ATavailable] = ACTIONS(1968), - [anon_sym_va_arg] = ACTIONS(1966), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1427] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1428] = { - [sym_identifier] = ACTIONS(1970), - [aux_sym_preproc_include_token1] = ACTIONS(1972), - [aux_sym_preproc_def_token1] = ACTIONS(1972), - [aux_sym_preproc_if_token1] = ACTIONS(1970), - [aux_sym_preproc_if_token2] = ACTIONS(1970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1970), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1970), - [anon_sym_LPAREN2] = ACTIONS(1972), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_CARET] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_typedef] = ACTIONS(1970), - [anon_sym_extern] = ACTIONS(1970), - [anon_sym___attribute] = ACTIONS(1970), - [anon_sym___attribute__] = ACTIONS(1970), - [anon_sym___declspec] = ACTIONS(1970), - [anon_sym___cdecl] = ACTIONS(1970), - [anon_sym___clrcall] = ACTIONS(1970), - [anon_sym___stdcall] = ACTIONS(1970), - [anon_sym___fastcall] = ACTIONS(1970), - [anon_sym___thiscall] = ACTIONS(1970), - [anon_sym___vectorcall] = ACTIONS(1970), - [anon_sym_LBRACE] = ACTIONS(1972), - [anon_sym_LBRACK] = ACTIONS(1972), - [anon_sym_static] = ACTIONS(1970), - [anon_sym_auto] = ACTIONS(1970), - [anon_sym_register] = ACTIONS(1970), - [anon_sym_inline] = ACTIONS(1970), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1970), - [anon_sym_const] = ACTIONS(1970), - [anon_sym_volatile] = ACTIONS(1970), - [anon_sym_restrict] = ACTIONS(1970), - [anon_sym__Atomic] = ACTIONS(1970), - [anon_sym_in] = ACTIONS(1970), - [anon_sym_out] = ACTIONS(1970), - [anon_sym_inout] = ACTIONS(1970), - [anon_sym_bycopy] = ACTIONS(1970), - [anon_sym_byref] = ACTIONS(1970), - [anon_sym_oneway] = ACTIONS(1970), - [anon_sym__Nullable] = ACTIONS(1970), - [anon_sym__Nonnull] = ACTIONS(1970), - [anon_sym__Nullable_result] = ACTIONS(1970), - [anon_sym__Null_unspecified] = ACTIONS(1970), - [anon_sym___autoreleasing] = ACTIONS(1970), - [anon_sym___nullable] = ACTIONS(1970), - [anon_sym___nonnull] = ACTIONS(1970), - [anon_sym___strong] = ACTIONS(1970), - [anon_sym___weak] = ACTIONS(1970), - [anon_sym___bridge] = ACTIONS(1970), - [anon_sym___bridge_transfer] = ACTIONS(1970), - [anon_sym___bridge_retained] = ACTIONS(1970), - [anon_sym___unsafe_unretained] = ACTIONS(1970), - [anon_sym___block] = ACTIONS(1970), - [anon_sym___kindof] = ACTIONS(1970), - [anon_sym___unused] = ACTIONS(1970), - [anon_sym__Complex] = ACTIONS(1970), - [anon_sym___complex] = ACTIONS(1970), - [anon_sym_IBOutlet] = ACTIONS(1970), - [anon_sym_IBInspectable] = ACTIONS(1970), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1970), - [anon_sym_signed] = ACTIONS(1970), - [anon_sym_unsigned] = ACTIONS(1970), - [anon_sym_long] = ACTIONS(1970), - [anon_sym_short] = ACTIONS(1970), - [sym_primitive_type] = ACTIONS(1970), - [anon_sym_enum] = ACTIONS(1970), - [anon_sym_NS_ENUM] = ACTIONS(1970), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1970), - [anon_sym_NS_OPTIONS] = ACTIONS(1970), - [anon_sym_struct] = ACTIONS(1970), - [anon_sym_union] = ACTIONS(1970), - [anon_sym_if] = ACTIONS(1970), - [anon_sym_switch] = ACTIONS(1970), - [anon_sym_case] = ACTIONS(1970), - [anon_sym_default] = ACTIONS(1970), - [anon_sym_while] = ACTIONS(1970), - [anon_sym_do] = ACTIONS(1970), - [anon_sym_for] = ACTIONS(1970), - [anon_sym_return] = ACTIONS(1970), - [anon_sym_break] = ACTIONS(1970), - [anon_sym_continue] = ACTIONS(1970), - [anon_sym_goto] = ACTIONS(1970), - [anon_sym_DASH_DASH] = ACTIONS(1972), - [anon_sym_PLUS_PLUS] = ACTIONS(1972), - [anon_sym_sizeof] = ACTIONS(1970), - [sym_number_literal] = ACTIONS(1972), - [anon_sym_L_SQUOTE] = ACTIONS(1972), - [anon_sym_u_SQUOTE] = ACTIONS(1972), - [anon_sym_U_SQUOTE] = ACTIONS(1972), - [anon_sym_u8_SQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_L_DQUOTE] = ACTIONS(1972), - [anon_sym_u_DQUOTE] = ACTIONS(1972), - [anon_sym_U_DQUOTE] = ACTIONS(1972), - [anon_sym_u8_DQUOTE] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), - [sym_true] = ACTIONS(1970), - [sym_false] = ACTIONS(1970), - [sym_null] = ACTIONS(1970), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1972), - [anon_sym_ATimport] = ACTIONS(1972), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1970), - [anon_sym_ATcompatibility_alias] = ACTIONS(1972), - [anon_sym_ATprotocol] = ACTIONS(1972), - [anon_sym_ATclass] = ACTIONS(1972), - [anon_sym_ATinterface] = ACTIONS(1972), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1970), - [sym_method_attribute_specifier] = ACTIONS(1970), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1970), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1970), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1970), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1970), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1970), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1970), - [anon_sym_NS_AVAILABLE] = ACTIONS(1970), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1970), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1970), - [anon_sym_API_AVAILABLE] = ACTIONS(1970), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1970), - [anon_sym_API_DEPRECATED] = ACTIONS(1970), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1970), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1970), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1970), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1970), - [anon_sym___deprecated_msg] = ACTIONS(1970), - [anon_sym___deprecated_enum_msg] = ACTIONS(1970), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1970), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1970), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1970), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1970), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1970), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1970), - [anon_sym_ATimplementation] = ACTIONS(1972), - [anon_sym_typeof] = ACTIONS(1970), - [anon_sym___typeof] = ACTIONS(1970), - [anon_sym___typeof__] = ACTIONS(1970), - [sym_self] = ACTIONS(1970), - [sym_super] = ACTIONS(1970), - [sym_nil] = ACTIONS(1970), - [sym_id] = ACTIONS(1970), - [sym_instancetype] = ACTIONS(1970), - [sym_Class] = ACTIONS(1970), - [sym_SEL] = ACTIONS(1970), - [sym_IMP] = ACTIONS(1970), - [sym_BOOL] = ACTIONS(1970), - [sym_auto] = ACTIONS(1970), - [anon_sym_ATautoreleasepool] = ACTIONS(1972), - [anon_sym_ATsynchronized] = ACTIONS(1972), - [anon_sym_ATtry] = ACTIONS(1972), - [anon_sym_ATthrow] = ACTIONS(1972), - [anon_sym_ATselector] = ACTIONS(1972), - [anon_sym_ATencode] = ACTIONS(1972), - [anon_sym_AT] = ACTIONS(1970), - [sym_YES] = ACTIONS(1970), - [sym_NO] = ACTIONS(1970), - [anon_sym___builtin_available] = ACTIONS(1970), - [anon_sym_ATavailable] = ACTIONS(1972), - [anon_sym_va_arg] = ACTIONS(1970), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1429] = { - [sym_identifier] = ACTIONS(1974), - [aux_sym_preproc_include_token1] = ACTIONS(1976), - [aux_sym_preproc_def_token1] = ACTIONS(1976), - [aux_sym_preproc_if_token1] = ACTIONS(1974), - [aux_sym_preproc_if_token2] = ACTIONS(1974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(1976), - [anon_sym_BANG] = ACTIONS(1976), - [anon_sym_TILDE] = ACTIONS(1976), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_CARET] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym_typedef] = ACTIONS(1974), - [anon_sym_extern] = ACTIONS(1974), - [anon_sym___attribute] = ACTIONS(1974), - [anon_sym___attribute__] = ACTIONS(1974), - [anon_sym___declspec] = ACTIONS(1974), - [anon_sym___cdecl] = ACTIONS(1974), - [anon_sym___clrcall] = ACTIONS(1974), - [anon_sym___stdcall] = ACTIONS(1974), - [anon_sym___fastcall] = ACTIONS(1974), - [anon_sym___thiscall] = ACTIONS(1974), - [anon_sym___vectorcall] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1976), - [anon_sym_LBRACK] = ACTIONS(1976), - [anon_sym_static] = ACTIONS(1974), - [anon_sym_auto] = ACTIONS(1974), - [anon_sym_register] = ACTIONS(1974), - [anon_sym_inline] = ACTIONS(1974), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1974), - [anon_sym_const] = ACTIONS(1974), - [anon_sym_volatile] = ACTIONS(1974), - [anon_sym_restrict] = ACTIONS(1974), - [anon_sym__Atomic] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1974), - [anon_sym_out] = ACTIONS(1974), - [anon_sym_inout] = ACTIONS(1974), - [anon_sym_bycopy] = ACTIONS(1974), - [anon_sym_byref] = ACTIONS(1974), - [anon_sym_oneway] = ACTIONS(1974), - [anon_sym__Nullable] = ACTIONS(1974), - [anon_sym__Nonnull] = ACTIONS(1974), - [anon_sym__Nullable_result] = ACTIONS(1974), - [anon_sym__Null_unspecified] = ACTIONS(1974), - [anon_sym___autoreleasing] = ACTIONS(1974), - [anon_sym___nullable] = ACTIONS(1974), - [anon_sym___nonnull] = ACTIONS(1974), - [anon_sym___strong] = ACTIONS(1974), - [anon_sym___weak] = ACTIONS(1974), - [anon_sym___bridge] = ACTIONS(1974), - [anon_sym___bridge_transfer] = ACTIONS(1974), - [anon_sym___bridge_retained] = ACTIONS(1974), - [anon_sym___unsafe_unretained] = ACTIONS(1974), - [anon_sym___block] = ACTIONS(1974), - [anon_sym___kindof] = ACTIONS(1974), - [anon_sym___unused] = ACTIONS(1974), - [anon_sym__Complex] = ACTIONS(1974), - [anon_sym___complex] = ACTIONS(1974), - [anon_sym_IBOutlet] = ACTIONS(1974), - [anon_sym_IBInspectable] = ACTIONS(1974), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1974), - [anon_sym_signed] = ACTIONS(1974), - [anon_sym_unsigned] = ACTIONS(1974), - [anon_sym_long] = ACTIONS(1974), - [anon_sym_short] = ACTIONS(1974), - [sym_primitive_type] = ACTIONS(1974), - [anon_sym_enum] = ACTIONS(1974), - [anon_sym_NS_ENUM] = ACTIONS(1974), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1974), - [anon_sym_NS_OPTIONS] = ACTIONS(1974), - [anon_sym_struct] = ACTIONS(1974), - [anon_sym_union] = ACTIONS(1974), - [anon_sym_if] = ACTIONS(1974), - [anon_sym_switch] = ACTIONS(1974), - [anon_sym_case] = ACTIONS(1974), - [anon_sym_default] = ACTIONS(1974), - [anon_sym_while] = ACTIONS(1974), - [anon_sym_do] = ACTIONS(1974), - [anon_sym_for] = ACTIONS(1974), - [anon_sym_return] = ACTIONS(1974), - [anon_sym_break] = ACTIONS(1974), - [anon_sym_continue] = ACTIONS(1974), - [anon_sym_goto] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1976), - [anon_sym_PLUS_PLUS] = ACTIONS(1976), - [anon_sym_sizeof] = ACTIONS(1974), - [sym_number_literal] = ACTIONS(1976), - [anon_sym_L_SQUOTE] = ACTIONS(1976), - [anon_sym_u_SQUOTE] = ACTIONS(1976), - [anon_sym_U_SQUOTE] = ACTIONS(1976), - [anon_sym_u8_SQUOTE] = ACTIONS(1976), - [anon_sym_SQUOTE] = ACTIONS(1976), - [anon_sym_L_DQUOTE] = ACTIONS(1976), - [anon_sym_u_DQUOTE] = ACTIONS(1976), - [anon_sym_U_DQUOTE] = ACTIONS(1976), - [anon_sym_u8_DQUOTE] = ACTIONS(1976), - [anon_sym_DQUOTE] = ACTIONS(1976), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [sym_null] = ACTIONS(1974), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1976), - [anon_sym_ATimport] = ACTIONS(1976), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1974), - [anon_sym_ATcompatibility_alias] = ACTIONS(1976), - [anon_sym_ATprotocol] = ACTIONS(1976), - [anon_sym_ATclass] = ACTIONS(1976), - [anon_sym_ATinterface] = ACTIONS(1976), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1974), - [sym_method_attribute_specifier] = ACTIONS(1974), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1974), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1974), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1974), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1974), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1974), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1974), - [anon_sym_NS_AVAILABLE] = ACTIONS(1974), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1974), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1974), - [anon_sym_API_AVAILABLE] = ACTIONS(1974), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1974), - [anon_sym_API_DEPRECATED] = ACTIONS(1974), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1974), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1974), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1974), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1974), - [anon_sym___deprecated_msg] = ACTIONS(1974), - [anon_sym___deprecated_enum_msg] = ACTIONS(1974), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1974), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1974), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1974), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1974), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1974), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1974), - [anon_sym_ATimplementation] = ACTIONS(1976), - [anon_sym_typeof] = ACTIONS(1974), - [anon_sym___typeof] = ACTIONS(1974), - [anon_sym___typeof__] = ACTIONS(1974), - [sym_self] = ACTIONS(1974), - [sym_super] = ACTIONS(1974), - [sym_nil] = ACTIONS(1974), - [sym_id] = ACTIONS(1974), - [sym_instancetype] = ACTIONS(1974), - [sym_Class] = ACTIONS(1974), - [sym_SEL] = ACTIONS(1974), - [sym_IMP] = ACTIONS(1974), - [sym_BOOL] = ACTIONS(1974), - [sym_auto] = ACTIONS(1974), - [anon_sym_ATautoreleasepool] = ACTIONS(1976), - [anon_sym_ATsynchronized] = ACTIONS(1976), - [anon_sym_ATtry] = ACTIONS(1976), - [anon_sym_ATthrow] = ACTIONS(1976), - [anon_sym_ATselector] = ACTIONS(1976), - [anon_sym_ATencode] = ACTIONS(1976), - [anon_sym_AT] = ACTIONS(1974), - [sym_YES] = ACTIONS(1974), - [sym_NO] = ACTIONS(1974), - [anon_sym___builtin_available] = ACTIONS(1974), - [anon_sym_ATavailable] = ACTIONS(1976), - [anon_sym_va_arg] = ACTIONS(1974), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1430] = { - [sym_identifier] = ACTIONS(1978), - [aux_sym_preproc_include_token1] = ACTIONS(1980), - [aux_sym_preproc_def_token1] = ACTIONS(1980), - [aux_sym_preproc_if_token1] = ACTIONS(1978), - [aux_sym_preproc_if_token2] = ACTIONS(1978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1978), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1978), - [anon_sym_LPAREN2] = ACTIONS(1980), - [anon_sym_BANG] = ACTIONS(1980), - [anon_sym_TILDE] = ACTIONS(1980), - [anon_sym_DASH] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(1978), - [anon_sym_STAR] = ACTIONS(1980), - [anon_sym_CARET] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_typedef] = ACTIONS(1978), - [anon_sym_extern] = ACTIONS(1978), - [anon_sym___attribute] = ACTIONS(1978), - [anon_sym___attribute__] = ACTIONS(1978), - [anon_sym___declspec] = ACTIONS(1978), - [anon_sym___cdecl] = ACTIONS(1978), - [anon_sym___clrcall] = ACTIONS(1978), - [anon_sym___stdcall] = ACTIONS(1978), - [anon_sym___fastcall] = ACTIONS(1978), - [anon_sym___thiscall] = ACTIONS(1978), - [anon_sym___vectorcall] = ACTIONS(1978), - [anon_sym_LBRACE] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1980), - [anon_sym_static] = ACTIONS(1978), - [anon_sym_auto] = ACTIONS(1978), - [anon_sym_register] = ACTIONS(1978), - [anon_sym_inline] = ACTIONS(1978), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1978), - [anon_sym_const] = ACTIONS(1978), - [anon_sym_volatile] = ACTIONS(1978), - [anon_sym_restrict] = ACTIONS(1978), - [anon_sym__Atomic] = ACTIONS(1978), - [anon_sym_in] = ACTIONS(1978), - [anon_sym_out] = ACTIONS(1978), - [anon_sym_inout] = ACTIONS(1978), - [anon_sym_bycopy] = ACTIONS(1978), - [anon_sym_byref] = ACTIONS(1978), - [anon_sym_oneway] = ACTIONS(1978), - [anon_sym__Nullable] = ACTIONS(1978), - [anon_sym__Nonnull] = ACTIONS(1978), - [anon_sym__Nullable_result] = ACTIONS(1978), - [anon_sym__Null_unspecified] = ACTIONS(1978), - [anon_sym___autoreleasing] = ACTIONS(1978), - [anon_sym___nullable] = ACTIONS(1978), - [anon_sym___nonnull] = ACTIONS(1978), - [anon_sym___strong] = ACTIONS(1978), - [anon_sym___weak] = ACTIONS(1978), - [anon_sym___bridge] = ACTIONS(1978), - [anon_sym___bridge_transfer] = ACTIONS(1978), - [anon_sym___bridge_retained] = ACTIONS(1978), - [anon_sym___unsafe_unretained] = ACTIONS(1978), - [anon_sym___block] = ACTIONS(1978), - [anon_sym___kindof] = ACTIONS(1978), - [anon_sym___unused] = ACTIONS(1978), - [anon_sym__Complex] = ACTIONS(1978), - [anon_sym___complex] = ACTIONS(1978), - [anon_sym_IBOutlet] = ACTIONS(1978), - [anon_sym_IBInspectable] = ACTIONS(1978), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1978), - [anon_sym_signed] = ACTIONS(1978), - [anon_sym_unsigned] = ACTIONS(1978), - [anon_sym_long] = ACTIONS(1978), - [anon_sym_short] = ACTIONS(1978), - [sym_primitive_type] = ACTIONS(1978), - [anon_sym_enum] = ACTIONS(1978), - [anon_sym_NS_ENUM] = ACTIONS(1978), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1978), - [anon_sym_NS_OPTIONS] = ACTIONS(1978), - [anon_sym_struct] = ACTIONS(1978), - [anon_sym_union] = ACTIONS(1978), - [anon_sym_if] = ACTIONS(1978), - [anon_sym_switch] = ACTIONS(1978), - [anon_sym_case] = ACTIONS(1978), - [anon_sym_default] = ACTIONS(1978), - [anon_sym_while] = ACTIONS(1978), - [anon_sym_do] = ACTIONS(1978), - [anon_sym_for] = ACTIONS(1978), - [anon_sym_return] = ACTIONS(1978), - [anon_sym_break] = ACTIONS(1978), - [anon_sym_continue] = ACTIONS(1978), - [anon_sym_goto] = ACTIONS(1978), - [anon_sym_DASH_DASH] = ACTIONS(1980), - [anon_sym_PLUS_PLUS] = ACTIONS(1980), - [anon_sym_sizeof] = ACTIONS(1978), - [sym_number_literal] = ACTIONS(1980), - [anon_sym_L_SQUOTE] = ACTIONS(1980), - [anon_sym_u_SQUOTE] = ACTIONS(1980), - [anon_sym_U_SQUOTE] = ACTIONS(1980), - [anon_sym_u8_SQUOTE] = ACTIONS(1980), - [anon_sym_SQUOTE] = ACTIONS(1980), - [anon_sym_L_DQUOTE] = ACTIONS(1980), - [anon_sym_u_DQUOTE] = ACTIONS(1980), - [anon_sym_U_DQUOTE] = ACTIONS(1980), - [anon_sym_u8_DQUOTE] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(1980), - [sym_true] = ACTIONS(1978), - [sym_false] = ACTIONS(1978), - [sym_null] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1980), - [anon_sym_ATimport] = ACTIONS(1980), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1978), - [anon_sym_ATcompatibility_alias] = ACTIONS(1980), - [anon_sym_ATprotocol] = ACTIONS(1980), - [anon_sym_ATclass] = ACTIONS(1980), - [anon_sym_ATinterface] = ACTIONS(1980), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1978), - [sym_method_attribute_specifier] = ACTIONS(1978), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1978), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1978), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1978), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1978), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1978), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1978), - [anon_sym_NS_AVAILABLE] = ACTIONS(1978), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1978), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1978), - [anon_sym_API_AVAILABLE] = ACTIONS(1978), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1978), - [anon_sym_API_DEPRECATED] = ACTIONS(1978), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1978), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1978), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1978), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1978), - [anon_sym___deprecated_msg] = ACTIONS(1978), - [anon_sym___deprecated_enum_msg] = ACTIONS(1978), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1978), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1978), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1978), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1978), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1978), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1978), - [anon_sym_ATimplementation] = ACTIONS(1980), - [anon_sym_typeof] = ACTIONS(1978), - [anon_sym___typeof] = ACTIONS(1978), - [anon_sym___typeof__] = ACTIONS(1978), - [sym_self] = ACTIONS(1978), - [sym_super] = ACTIONS(1978), - [sym_nil] = ACTIONS(1978), - [sym_id] = ACTIONS(1978), - [sym_instancetype] = ACTIONS(1978), - [sym_Class] = ACTIONS(1978), - [sym_SEL] = ACTIONS(1978), - [sym_IMP] = ACTIONS(1978), - [sym_BOOL] = ACTIONS(1978), - [sym_auto] = ACTIONS(1978), - [anon_sym_ATautoreleasepool] = ACTIONS(1980), - [anon_sym_ATsynchronized] = ACTIONS(1980), - [anon_sym_ATtry] = ACTIONS(1980), - [anon_sym_ATthrow] = ACTIONS(1980), - [anon_sym_ATselector] = ACTIONS(1980), - [anon_sym_ATencode] = ACTIONS(1980), - [anon_sym_AT] = ACTIONS(1978), - [sym_YES] = ACTIONS(1978), - [sym_NO] = ACTIONS(1978), - [anon_sym___builtin_available] = ACTIONS(1978), - [anon_sym_ATavailable] = ACTIONS(1980), - [anon_sym_va_arg] = ACTIONS(1978), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1431] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1432] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1433] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1434] = { - [sym_identifier] = ACTIONS(2034), - [aux_sym_preproc_include_token1] = ACTIONS(2036), - [aux_sym_preproc_def_token1] = ACTIONS(2036), - [aux_sym_preproc_if_token1] = ACTIONS(2034), - [aux_sym_preproc_if_token2] = ACTIONS(2034), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2034), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2034), - [anon_sym_LPAREN2] = ACTIONS(2036), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_TILDE] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2034), - [anon_sym_PLUS] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_CARET] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_typedef] = ACTIONS(2034), - [anon_sym_extern] = ACTIONS(2034), - [anon_sym___attribute] = ACTIONS(2034), - [anon_sym___attribute__] = ACTIONS(2034), - [anon_sym___declspec] = ACTIONS(2034), - [anon_sym___cdecl] = ACTIONS(2034), - [anon_sym___clrcall] = ACTIONS(2034), - [anon_sym___stdcall] = ACTIONS(2034), - [anon_sym___fastcall] = ACTIONS(2034), - [anon_sym___thiscall] = ACTIONS(2034), - [anon_sym___vectorcall] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2034), - [anon_sym_auto] = ACTIONS(2034), - [anon_sym_register] = ACTIONS(2034), - [anon_sym_inline] = ACTIONS(2034), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2034), - [anon_sym_const] = ACTIONS(2034), - [anon_sym_volatile] = ACTIONS(2034), - [anon_sym_restrict] = ACTIONS(2034), - [anon_sym__Atomic] = ACTIONS(2034), - [anon_sym_in] = ACTIONS(2034), - [anon_sym_out] = ACTIONS(2034), - [anon_sym_inout] = ACTIONS(2034), - [anon_sym_bycopy] = ACTIONS(2034), - [anon_sym_byref] = ACTIONS(2034), - [anon_sym_oneway] = ACTIONS(2034), - [anon_sym__Nullable] = ACTIONS(2034), - [anon_sym__Nonnull] = ACTIONS(2034), - [anon_sym__Nullable_result] = ACTIONS(2034), - [anon_sym__Null_unspecified] = ACTIONS(2034), - [anon_sym___autoreleasing] = ACTIONS(2034), - [anon_sym___nullable] = ACTIONS(2034), - [anon_sym___nonnull] = ACTIONS(2034), - [anon_sym___strong] = ACTIONS(2034), - [anon_sym___weak] = ACTIONS(2034), - [anon_sym___bridge] = ACTIONS(2034), - [anon_sym___bridge_transfer] = ACTIONS(2034), - [anon_sym___bridge_retained] = ACTIONS(2034), - [anon_sym___unsafe_unretained] = ACTIONS(2034), - [anon_sym___block] = ACTIONS(2034), - [anon_sym___kindof] = ACTIONS(2034), - [anon_sym___unused] = ACTIONS(2034), - [anon_sym__Complex] = ACTIONS(2034), - [anon_sym___complex] = ACTIONS(2034), - [anon_sym_IBOutlet] = ACTIONS(2034), - [anon_sym_IBInspectable] = ACTIONS(2034), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2034), - [anon_sym_signed] = ACTIONS(2034), - [anon_sym_unsigned] = ACTIONS(2034), - [anon_sym_long] = ACTIONS(2034), - [anon_sym_short] = ACTIONS(2034), - [sym_primitive_type] = ACTIONS(2034), - [anon_sym_enum] = ACTIONS(2034), - [anon_sym_NS_ENUM] = ACTIONS(2034), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2034), - [anon_sym_NS_OPTIONS] = ACTIONS(2034), - [anon_sym_struct] = ACTIONS(2034), - [anon_sym_union] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2034), - [anon_sym_switch] = ACTIONS(2034), - [anon_sym_case] = ACTIONS(2034), - [anon_sym_default] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2034), - [anon_sym_for] = ACTIONS(2034), - [anon_sym_return] = ACTIONS(2034), - [anon_sym_break] = ACTIONS(2034), - [anon_sym_continue] = ACTIONS(2034), - [anon_sym_goto] = ACTIONS(2034), - [anon_sym_DASH_DASH] = ACTIONS(2036), - [anon_sym_PLUS_PLUS] = ACTIONS(2036), - [anon_sym_sizeof] = ACTIONS(2034), - [sym_number_literal] = ACTIONS(2036), - [anon_sym_L_SQUOTE] = ACTIONS(2036), - [anon_sym_u_SQUOTE] = ACTIONS(2036), - [anon_sym_U_SQUOTE] = ACTIONS(2036), - [anon_sym_u8_SQUOTE] = ACTIONS(2036), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2034), - [sym_false] = ACTIONS(2034), - [sym_null] = ACTIONS(2034), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2036), - [anon_sym_ATimport] = ACTIONS(2036), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2034), - [anon_sym_ATcompatibility_alias] = ACTIONS(2036), - [anon_sym_ATprotocol] = ACTIONS(2036), - [anon_sym_ATclass] = ACTIONS(2036), - [anon_sym_ATinterface] = ACTIONS(2036), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2034), - [sym_method_attribute_specifier] = ACTIONS(2034), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2034), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2034), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2034), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2034), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2034), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2034), - [anon_sym_NS_AVAILABLE] = ACTIONS(2034), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2034), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_API_AVAILABLE] = ACTIONS(2034), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2034), - [anon_sym_API_DEPRECATED] = ACTIONS(2034), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2034), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2034), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2034), - [anon_sym___deprecated_msg] = ACTIONS(2034), - [anon_sym___deprecated_enum_msg] = ACTIONS(2034), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2034), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2034), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2034), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2034), - [anon_sym_ATimplementation] = ACTIONS(2036), - [anon_sym_typeof] = ACTIONS(2034), - [anon_sym___typeof] = ACTIONS(2034), - [anon_sym___typeof__] = ACTIONS(2034), - [sym_self] = ACTIONS(2034), - [sym_super] = ACTIONS(2034), - [sym_nil] = ACTIONS(2034), - [sym_id] = ACTIONS(2034), - [sym_instancetype] = ACTIONS(2034), - [sym_Class] = ACTIONS(2034), - [sym_SEL] = ACTIONS(2034), - [sym_IMP] = ACTIONS(2034), - [sym_BOOL] = ACTIONS(2034), - [sym_auto] = ACTIONS(2034), - [anon_sym_ATautoreleasepool] = ACTIONS(2036), - [anon_sym_ATsynchronized] = ACTIONS(2036), - [anon_sym_ATtry] = ACTIONS(2036), - [anon_sym_ATthrow] = ACTIONS(2036), - [anon_sym_ATselector] = ACTIONS(2036), - [anon_sym_ATencode] = ACTIONS(2036), - [anon_sym_AT] = ACTIONS(2034), - [sym_YES] = ACTIONS(2034), - [sym_NO] = ACTIONS(2034), - [anon_sym___builtin_available] = ACTIONS(2034), - [anon_sym_ATavailable] = ACTIONS(2036), - [anon_sym_va_arg] = ACTIONS(2034), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1435] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1436] = { - [sym_identifier] = ACTIONS(2038), - [aux_sym_preproc_include_token1] = ACTIONS(2040), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2038), - [aux_sym_preproc_if_token2] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2038), - [anon_sym___cdecl] = ACTIONS(2038), - [anon_sym___clrcall] = ACTIONS(2038), - [anon_sym___stdcall] = ACTIONS(2038), - [anon_sym___fastcall] = ACTIONS(2038), - [anon_sym___thiscall] = ACTIONS(2038), - [anon_sym___vectorcall] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_auto] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_in] = ACTIONS(2038), - [anon_sym_out] = ACTIONS(2038), - [anon_sym_inout] = ACTIONS(2038), - [anon_sym_bycopy] = ACTIONS(2038), - [anon_sym_byref] = ACTIONS(2038), - [anon_sym_oneway] = ACTIONS(2038), - [anon_sym__Nullable] = ACTIONS(2038), - [anon_sym__Nonnull] = ACTIONS(2038), - [anon_sym__Nullable_result] = ACTIONS(2038), - [anon_sym__Null_unspecified] = ACTIONS(2038), - [anon_sym___autoreleasing] = ACTIONS(2038), - [anon_sym___nullable] = ACTIONS(2038), - [anon_sym___nonnull] = ACTIONS(2038), - [anon_sym___strong] = ACTIONS(2038), - [anon_sym___weak] = ACTIONS(2038), - [anon_sym___bridge] = ACTIONS(2038), - [anon_sym___bridge_transfer] = ACTIONS(2038), - [anon_sym___bridge_retained] = ACTIONS(2038), - [anon_sym___unsafe_unretained] = ACTIONS(2038), - [anon_sym___block] = ACTIONS(2038), - [anon_sym___kindof] = ACTIONS(2038), - [anon_sym___unused] = ACTIONS(2038), - [anon_sym__Complex] = ACTIONS(2038), - [anon_sym___complex] = ACTIONS(2038), - [anon_sym_IBOutlet] = ACTIONS(2038), - [anon_sym_IBInspectable] = ACTIONS(2038), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2038), - [anon_sym_signed] = ACTIONS(2038), - [anon_sym_unsigned] = ACTIONS(2038), - [anon_sym_long] = ACTIONS(2038), - [anon_sym_short] = ACTIONS(2038), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_NS_ENUM] = ACTIONS(2038), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2038), - [anon_sym_NS_OPTIONS] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_goto] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_sizeof] = ACTIONS(2038), - [sym_number_literal] = ACTIONS(2040), - [anon_sym_L_SQUOTE] = ACTIONS(2040), - [anon_sym_u_SQUOTE] = ACTIONS(2040), - [anon_sym_U_SQUOTE] = ACTIONS(2040), - [anon_sym_u8_SQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_L_DQUOTE] = ACTIONS(2040), - [anon_sym_u_DQUOTE] = ACTIONS(2040), - [anon_sym_U_DQUOTE] = ACTIONS(2040), - [anon_sym_u8_DQUOTE] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [sym_null] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2040), - [anon_sym_ATimport] = ACTIONS(2040), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2038), - [anon_sym_ATcompatibility_alias] = ACTIONS(2040), - [anon_sym_ATprotocol] = ACTIONS(2040), - [anon_sym_ATclass] = ACTIONS(2040), - [anon_sym_ATinterface] = ACTIONS(2040), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2038), - [sym_method_attribute_specifier] = ACTIONS(2038), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2038), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE] = ACTIONS(2038), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_API_AVAILABLE] = ACTIONS(2038), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_API_DEPRECATED] = ACTIONS(2038), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2038), - [anon_sym___deprecated_msg] = ACTIONS(2038), - [anon_sym___deprecated_enum_msg] = ACTIONS(2038), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2038), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2038), - [anon_sym_ATimplementation] = ACTIONS(2040), - [anon_sym_typeof] = ACTIONS(2038), - [anon_sym___typeof] = ACTIONS(2038), - [anon_sym___typeof__] = ACTIONS(2038), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_nil] = ACTIONS(2038), - [sym_id] = ACTIONS(2038), - [sym_instancetype] = ACTIONS(2038), - [sym_Class] = ACTIONS(2038), - [sym_SEL] = ACTIONS(2038), - [sym_IMP] = ACTIONS(2038), - [sym_BOOL] = ACTIONS(2038), - [sym_auto] = ACTIONS(2038), - [anon_sym_ATautoreleasepool] = ACTIONS(2040), - [anon_sym_ATsynchronized] = ACTIONS(2040), - [anon_sym_ATtry] = ACTIONS(2040), - [anon_sym_ATthrow] = ACTIONS(2040), - [anon_sym_ATselector] = ACTIONS(2040), - [anon_sym_ATencode] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2038), - [sym_YES] = ACTIONS(2038), - [sym_NO] = ACTIONS(2038), - [anon_sym___builtin_available] = ACTIONS(2038), - [anon_sym_ATavailable] = ACTIONS(2040), - [anon_sym_va_arg] = ACTIONS(2038), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1437] = { - [sym_identifier] = ACTIONS(1774), - [aux_sym_preproc_include_token1] = ACTIONS(1776), - [aux_sym_preproc_def_token1] = ACTIONS(1776), - [aux_sym_preproc_if_token1] = ACTIONS(1774), - [aux_sym_preproc_if_token2] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_typedef] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym___attribute] = ACTIONS(1774), - [anon_sym___attribute__] = ACTIONS(1774), - [anon_sym___declspec] = ACTIONS(1774), - [anon_sym___cdecl] = ACTIONS(1774), - [anon_sym___clrcall] = ACTIONS(1774), - [anon_sym___stdcall] = ACTIONS(1774), - [anon_sym___fastcall] = ACTIONS(1774), - [anon_sym___thiscall] = ACTIONS(1774), - [anon_sym___vectorcall] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_auto] = ACTIONS(1774), - [anon_sym_register] = ACTIONS(1774), - [anon_sym_inline] = ACTIONS(1774), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_out] = ACTIONS(1774), - [anon_sym_inout] = ACTIONS(1774), - [anon_sym_bycopy] = ACTIONS(1774), - [anon_sym_byref] = ACTIONS(1774), - [anon_sym_oneway] = ACTIONS(1774), - [anon_sym__Nullable] = ACTIONS(1774), - [anon_sym__Nonnull] = ACTIONS(1774), - [anon_sym__Nullable_result] = ACTIONS(1774), - [anon_sym__Null_unspecified] = ACTIONS(1774), - [anon_sym___autoreleasing] = ACTIONS(1774), - [anon_sym___nullable] = ACTIONS(1774), - [anon_sym___nonnull] = ACTIONS(1774), - [anon_sym___strong] = ACTIONS(1774), - [anon_sym___weak] = ACTIONS(1774), - [anon_sym___bridge] = ACTIONS(1774), - [anon_sym___bridge_transfer] = ACTIONS(1774), - [anon_sym___bridge_retained] = ACTIONS(1774), - [anon_sym___unsafe_unretained] = ACTIONS(1774), - [anon_sym___block] = ACTIONS(1774), - [anon_sym___kindof] = ACTIONS(1774), - [anon_sym___unused] = ACTIONS(1774), - [anon_sym__Complex] = ACTIONS(1774), - [anon_sym___complex] = ACTIONS(1774), - [anon_sym_IBOutlet] = ACTIONS(1774), - [anon_sym_IBInspectable] = ACTIONS(1774), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1774), - [anon_sym_signed] = ACTIONS(1774), - [anon_sym_unsigned] = ACTIONS(1774), - [anon_sym_long] = ACTIONS(1774), - [anon_sym_short] = ACTIONS(1774), - [sym_primitive_type] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_NS_ENUM] = ACTIONS(1774), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1774), - [anon_sym_NS_OPTIONS] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1774), - [anon_sym_case] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_goto] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1776), - [anon_sym_sizeof] = ACTIONS(1774), - [sym_number_literal] = ACTIONS(1776), - [anon_sym_L_SQUOTE] = ACTIONS(1776), - [anon_sym_u_SQUOTE] = ACTIONS(1776), - [anon_sym_U_SQUOTE] = ACTIONS(1776), - [anon_sym_u8_SQUOTE] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_L_DQUOTE] = ACTIONS(1776), - [anon_sym_u_DQUOTE] = ACTIONS(1776), - [anon_sym_U_DQUOTE] = ACTIONS(1776), - [anon_sym_u8_DQUOTE] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym_true] = ACTIONS(1774), - [sym_false] = ACTIONS(1774), - [sym_null] = ACTIONS(1774), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1776), - [anon_sym_ATimport] = ACTIONS(1776), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1774), - [anon_sym_ATcompatibility_alias] = ACTIONS(1776), - [anon_sym_ATprotocol] = ACTIONS(1776), - [anon_sym_ATclass] = ACTIONS(1776), - [anon_sym_ATinterface] = ACTIONS(1776), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1774), - [sym_method_attribute_specifier] = ACTIONS(1774), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1774), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE] = ACTIONS(1774), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_API_AVAILABLE] = ACTIONS(1774), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_API_DEPRECATED] = ACTIONS(1774), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1774), - [anon_sym___deprecated_msg] = ACTIONS(1774), - [anon_sym___deprecated_enum_msg] = ACTIONS(1774), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1774), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1774), - [anon_sym_ATimplementation] = ACTIONS(1776), - [anon_sym_typeof] = ACTIONS(1774), - [anon_sym___typeof] = ACTIONS(1774), - [anon_sym___typeof__] = ACTIONS(1774), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_nil] = ACTIONS(1774), - [sym_id] = ACTIONS(1774), - [sym_instancetype] = ACTIONS(1774), - [sym_Class] = ACTIONS(1774), - [sym_SEL] = ACTIONS(1774), - [sym_IMP] = ACTIONS(1774), - [sym_BOOL] = ACTIONS(1774), - [sym_auto] = ACTIONS(1774), - [anon_sym_ATautoreleasepool] = ACTIONS(1776), - [anon_sym_ATsynchronized] = ACTIONS(1776), - [anon_sym_ATtry] = ACTIONS(1776), - [anon_sym_ATthrow] = ACTIONS(1776), - [anon_sym_ATselector] = ACTIONS(1776), - [anon_sym_ATencode] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1774), - [sym_YES] = ACTIONS(1774), - [sym_NO] = ACTIONS(1774), - [anon_sym___builtin_available] = ACTIONS(1774), - [anon_sym_ATavailable] = ACTIONS(1776), - [anon_sym_va_arg] = ACTIONS(1774), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1438] = { - [sym_identifier] = ACTIONS(1986), - [aux_sym_preproc_include_token1] = ACTIONS(1988), - [aux_sym_preproc_def_token1] = ACTIONS(1988), - [aux_sym_preproc_if_token1] = ACTIONS(1986), - [aux_sym_preproc_if_token2] = ACTIONS(1986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1986), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1986), - [anon_sym_LPAREN2] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1988), - [anon_sym_TILDE] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_CARET] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1988), - [anon_sym_typedef] = ACTIONS(1986), - [anon_sym_extern] = ACTIONS(1986), - [anon_sym___attribute] = ACTIONS(1986), - [anon_sym___attribute__] = ACTIONS(1986), - [anon_sym___declspec] = ACTIONS(1986), - [anon_sym___cdecl] = ACTIONS(1986), - [anon_sym___clrcall] = ACTIONS(1986), - [anon_sym___stdcall] = ACTIONS(1986), - [anon_sym___fastcall] = ACTIONS(1986), - [anon_sym___thiscall] = ACTIONS(1986), - [anon_sym___vectorcall] = ACTIONS(1986), - [anon_sym_LBRACE] = ACTIONS(1988), - [anon_sym_LBRACK] = ACTIONS(1988), - [anon_sym_static] = ACTIONS(1986), - [anon_sym_auto] = ACTIONS(1986), - [anon_sym_register] = ACTIONS(1986), - [anon_sym_inline] = ACTIONS(1986), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1986), - [anon_sym_const] = ACTIONS(1986), - [anon_sym_volatile] = ACTIONS(1986), - [anon_sym_restrict] = ACTIONS(1986), - [anon_sym__Atomic] = ACTIONS(1986), - [anon_sym_in] = ACTIONS(1986), - [anon_sym_out] = ACTIONS(1986), - [anon_sym_inout] = ACTIONS(1986), - [anon_sym_bycopy] = ACTIONS(1986), - [anon_sym_byref] = ACTIONS(1986), - [anon_sym_oneway] = ACTIONS(1986), - [anon_sym__Nullable] = ACTIONS(1986), - [anon_sym__Nonnull] = ACTIONS(1986), - [anon_sym__Nullable_result] = ACTIONS(1986), - [anon_sym__Null_unspecified] = ACTIONS(1986), - [anon_sym___autoreleasing] = ACTIONS(1986), - [anon_sym___nullable] = ACTIONS(1986), - [anon_sym___nonnull] = ACTIONS(1986), - [anon_sym___strong] = ACTIONS(1986), - [anon_sym___weak] = ACTIONS(1986), - [anon_sym___bridge] = ACTIONS(1986), - [anon_sym___bridge_transfer] = ACTIONS(1986), - [anon_sym___bridge_retained] = ACTIONS(1986), - [anon_sym___unsafe_unretained] = ACTIONS(1986), - [anon_sym___block] = ACTIONS(1986), - [anon_sym___kindof] = ACTIONS(1986), - [anon_sym___unused] = ACTIONS(1986), - [anon_sym__Complex] = ACTIONS(1986), - [anon_sym___complex] = ACTIONS(1986), - [anon_sym_IBOutlet] = ACTIONS(1986), - [anon_sym_IBInspectable] = ACTIONS(1986), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1986), - [anon_sym_signed] = ACTIONS(1986), - [anon_sym_unsigned] = ACTIONS(1986), - [anon_sym_long] = ACTIONS(1986), - [anon_sym_short] = ACTIONS(1986), - [sym_primitive_type] = ACTIONS(1986), - [anon_sym_enum] = ACTIONS(1986), - [anon_sym_NS_ENUM] = ACTIONS(1986), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1986), - [anon_sym_NS_OPTIONS] = ACTIONS(1986), - [anon_sym_struct] = ACTIONS(1986), - [anon_sym_union] = ACTIONS(1986), - [anon_sym_if] = ACTIONS(1986), - [anon_sym_switch] = ACTIONS(1986), - [anon_sym_case] = ACTIONS(1986), - [anon_sym_default] = ACTIONS(1986), - [anon_sym_while] = ACTIONS(1986), - [anon_sym_do] = ACTIONS(1986), - [anon_sym_for] = ACTIONS(1986), - [anon_sym_return] = ACTIONS(1986), - [anon_sym_break] = ACTIONS(1986), - [anon_sym_continue] = ACTIONS(1986), - [anon_sym_goto] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1988), - [anon_sym_PLUS_PLUS] = ACTIONS(1988), - [anon_sym_sizeof] = ACTIONS(1986), - [sym_number_literal] = ACTIONS(1988), - [anon_sym_L_SQUOTE] = ACTIONS(1988), - [anon_sym_u_SQUOTE] = ACTIONS(1988), - [anon_sym_U_SQUOTE] = ACTIONS(1988), - [anon_sym_u8_SQUOTE] = ACTIONS(1988), - [anon_sym_SQUOTE] = ACTIONS(1988), - [anon_sym_L_DQUOTE] = ACTIONS(1988), - [anon_sym_u_DQUOTE] = ACTIONS(1988), - [anon_sym_U_DQUOTE] = ACTIONS(1988), - [anon_sym_u8_DQUOTE] = ACTIONS(1988), - [anon_sym_DQUOTE] = ACTIONS(1988), - [sym_true] = ACTIONS(1986), - [sym_false] = ACTIONS(1986), - [sym_null] = ACTIONS(1986), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1988), - [anon_sym_ATimport] = ACTIONS(1988), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1986), - [anon_sym_ATcompatibility_alias] = ACTIONS(1988), - [anon_sym_ATprotocol] = ACTIONS(1988), - [anon_sym_ATclass] = ACTIONS(1988), - [anon_sym_ATinterface] = ACTIONS(1988), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1986), - [sym_method_attribute_specifier] = ACTIONS(1986), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1986), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1986), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1986), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1986), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1986), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1986), - [anon_sym_NS_AVAILABLE] = ACTIONS(1986), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1986), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1986), - [anon_sym_API_AVAILABLE] = ACTIONS(1986), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1986), - [anon_sym_API_DEPRECATED] = ACTIONS(1986), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1986), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1986), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1986), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1986), - [anon_sym___deprecated_msg] = ACTIONS(1986), - [anon_sym___deprecated_enum_msg] = ACTIONS(1986), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1986), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1986), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1986), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1986), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1986), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1986), - [anon_sym_ATimplementation] = ACTIONS(1988), - [anon_sym_typeof] = ACTIONS(1986), - [anon_sym___typeof] = ACTIONS(1986), - [anon_sym___typeof__] = ACTIONS(1986), - [sym_self] = ACTIONS(1986), - [sym_super] = ACTIONS(1986), - [sym_nil] = ACTIONS(1986), - [sym_id] = ACTIONS(1986), - [sym_instancetype] = ACTIONS(1986), - [sym_Class] = ACTIONS(1986), - [sym_SEL] = ACTIONS(1986), - [sym_IMP] = ACTIONS(1986), - [sym_BOOL] = ACTIONS(1986), - [sym_auto] = ACTIONS(1986), - [anon_sym_ATautoreleasepool] = ACTIONS(1988), - [anon_sym_ATsynchronized] = ACTIONS(1988), - [anon_sym_ATtry] = ACTIONS(1988), - [anon_sym_ATthrow] = ACTIONS(1988), - [anon_sym_ATselector] = ACTIONS(1988), - [anon_sym_ATencode] = ACTIONS(1988), - [anon_sym_AT] = ACTIONS(1986), - [sym_YES] = ACTIONS(1986), - [sym_NO] = ACTIONS(1986), - [anon_sym___builtin_available] = ACTIONS(1986), - [anon_sym_ATavailable] = ACTIONS(1988), - [anon_sym_va_arg] = ACTIONS(1986), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1439] = { - [sym_identifier] = ACTIONS(1998), - [aux_sym_preproc_include_token1] = ACTIONS(2000), - [aux_sym_preproc_def_token1] = ACTIONS(2000), - [aux_sym_preproc_if_token1] = ACTIONS(1998), - [aux_sym_preproc_if_token2] = ACTIONS(1998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1998), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2000), - [anon_sym_TILDE] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(1998), - [anon_sym_PLUS] = ACTIONS(1998), - [anon_sym_STAR] = ACTIONS(2000), - [anon_sym_CARET] = ACTIONS(2000), - [anon_sym_AMP] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_typedef] = ACTIONS(1998), - [anon_sym_extern] = ACTIONS(1998), - [anon_sym___attribute] = ACTIONS(1998), - [anon_sym___attribute__] = ACTIONS(1998), - [anon_sym___declspec] = ACTIONS(1998), - [anon_sym___cdecl] = ACTIONS(1998), - [anon_sym___clrcall] = ACTIONS(1998), - [anon_sym___stdcall] = ACTIONS(1998), - [anon_sym___fastcall] = ACTIONS(1998), - [anon_sym___thiscall] = ACTIONS(1998), - [anon_sym___vectorcall] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(1998), - [anon_sym_auto] = ACTIONS(1998), - [anon_sym_register] = ACTIONS(1998), - [anon_sym_inline] = ACTIONS(1998), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1998), - [anon_sym_const] = ACTIONS(1998), - [anon_sym_volatile] = ACTIONS(1998), - [anon_sym_restrict] = ACTIONS(1998), - [anon_sym__Atomic] = ACTIONS(1998), - [anon_sym_in] = ACTIONS(1998), - [anon_sym_out] = ACTIONS(1998), - [anon_sym_inout] = ACTIONS(1998), - [anon_sym_bycopy] = ACTIONS(1998), - [anon_sym_byref] = ACTIONS(1998), - [anon_sym_oneway] = ACTIONS(1998), - [anon_sym__Nullable] = ACTIONS(1998), - [anon_sym__Nonnull] = ACTIONS(1998), - [anon_sym__Nullable_result] = ACTIONS(1998), - [anon_sym__Null_unspecified] = ACTIONS(1998), - [anon_sym___autoreleasing] = ACTIONS(1998), - [anon_sym___nullable] = ACTIONS(1998), - [anon_sym___nonnull] = ACTIONS(1998), - [anon_sym___strong] = ACTIONS(1998), - [anon_sym___weak] = ACTIONS(1998), - [anon_sym___bridge] = ACTIONS(1998), - [anon_sym___bridge_transfer] = ACTIONS(1998), - [anon_sym___bridge_retained] = ACTIONS(1998), - [anon_sym___unsafe_unretained] = ACTIONS(1998), - [anon_sym___block] = ACTIONS(1998), - [anon_sym___kindof] = ACTIONS(1998), - [anon_sym___unused] = ACTIONS(1998), - [anon_sym__Complex] = ACTIONS(1998), - [anon_sym___complex] = ACTIONS(1998), - [anon_sym_IBOutlet] = ACTIONS(1998), - [anon_sym_IBInspectable] = ACTIONS(1998), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1998), - [anon_sym_signed] = ACTIONS(1998), - [anon_sym_unsigned] = ACTIONS(1998), - [anon_sym_long] = ACTIONS(1998), - [anon_sym_short] = ACTIONS(1998), - [sym_primitive_type] = ACTIONS(1998), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_NS_ENUM] = ACTIONS(1998), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1998), - [anon_sym_NS_OPTIONS] = ACTIONS(1998), - [anon_sym_struct] = ACTIONS(1998), - [anon_sym_union] = ACTIONS(1998), - [anon_sym_if] = ACTIONS(1998), - [anon_sym_switch] = ACTIONS(1998), - [anon_sym_case] = ACTIONS(1998), - [anon_sym_default] = ACTIONS(1998), - [anon_sym_while] = ACTIONS(1998), - [anon_sym_do] = ACTIONS(1998), - [anon_sym_for] = ACTIONS(1998), - [anon_sym_return] = ACTIONS(1998), - [anon_sym_break] = ACTIONS(1998), - [anon_sym_continue] = ACTIONS(1998), - [anon_sym_goto] = ACTIONS(1998), - [anon_sym_DASH_DASH] = ACTIONS(2000), - [anon_sym_PLUS_PLUS] = ACTIONS(2000), - [anon_sym_sizeof] = ACTIONS(1998), - [sym_number_literal] = ACTIONS(2000), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2000), - [anon_sym_u_DQUOTE] = ACTIONS(2000), - [anon_sym_U_DQUOTE] = ACTIONS(2000), - [anon_sym_u8_DQUOTE] = ACTIONS(2000), - [anon_sym_DQUOTE] = ACTIONS(2000), - [sym_true] = ACTIONS(1998), - [sym_false] = ACTIONS(1998), - [sym_null] = ACTIONS(1998), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2000), - [anon_sym_ATimport] = ACTIONS(2000), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1998), - [anon_sym_ATcompatibility_alias] = ACTIONS(2000), - [anon_sym_ATprotocol] = ACTIONS(2000), - [anon_sym_ATclass] = ACTIONS(2000), - [anon_sym_ATinterface] = ACTIONS(2000), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1998), - [sym_method_attribute_specifier] = ACTIONS(1998), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1998), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1998), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1998), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1998), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1998), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1998), - [anon_sym_NS_AVAILABLE] = ACTIONS(1998), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1998), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_API_AVAILABLE] = ACTIONS(1998), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1998), - [anon_sym_API_DEPRECATED] = ACTIONS(1998), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1998), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1998), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1998), - [anon_sym___deprecated_msg] = ACTIONS(1998), - [anon_sym___deprecated_enum_msg] = ACTIONS(1998), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1998), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1998), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1998), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1998), - [anon_sym_ATimplementation] = ACTIONS(2000), - [anon_sym_typeof] = ACTIONS(1998), - [anon_sym___typeof] = ACTIONS(1998), - [anon_sym___typeof__] = ACTIONS(1998), - [sym_self] = ACTIONS(1998), - [sym_super] = ACTIONS(1998), - [sym_nil] = ACTIONS(1998), - [sym_id] = ACTIONS(1998), - [sym_instancetype] = ACTIONS(1998), - [sym_Class] = ACTIONS(1998), - [sym_SEL] = ACTIONS(1998), - [sym_IMP] = ACTIONS(1998), - [sym_BOOL] = ACTIONS(1998), - [sym_auto] = ACTIONS(1998), - [anon_sym_ATautoreleasepool] = ACTIONS(2000), - [anon_sym_ATsynchronized] = ACTIONS(2000), - [anon_sym_ATtry] = ACTIONS(2000), - [anon_sym_ATthrow] = ACTIONS(2000), - [anon_sym_ATselector] = ACTIONS(2000), - [anon_sym_ATencode] = ACTIONS(2000), - [anon_sym_AT] = ACTIONS(1998), - [sym_YES] = ACTIONS(1998), - [sym_NO] = ACTIONS(1998), - [anon_sym___builtin_available] = ACTIONS(1998), - [anon_sym_ATavailable] = ACTIONS(2000), - [anon_sym_va_arg] = ACTIONS(1998), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1440] = { - [sym_identifier] = ACTIONS(1998), - [aux_sym_preproc_include_token1] = ACTIONS(2000), - [aux_sym_preproc_def_token1] = ACTIONS(2000), - [aux_sym_preproc_if_token1] = ACTIONS(1998), - [aux_sym_preproc_if_token2] = ACTIONS(1998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1998), - [anon_sym_LPAREN2] = ACTIONS(2000), - [anon_sym_BANG] = ACTIONS(2000), - [anon_sym_TILDE] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(1998), - [anon_sym_PLUS] = ACTIONS(1998), - [anon_sym_STAR] = ACTIONS(2000), - [anon_sym_CARET] = ACTIONS(2000), - [anon_sym_AMP] = ACTIONS(2000), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_typedef] = ACTIONS(1998), - [anon_sym_extern] = ACTIONS(1998), - [anon_sym___attribute] = ACTIONS(1998), - [anon_sym___attribute__] = ACTIONS(1998), - [anon_sym___declspec] = ACTIONS(1998), - [anon_sym___cdecl] = ACTIONS(1998), - [anon_sym___clrcall] = ACTIONS(1998), - [anon_sym___stdcall] = ACTIONS(1998), - [anon_sym___fastcall] = ACTIONS(1998), - [anon_sym___thiscall] = ACTIONS(1998), - [anon_sym___vectorcall] = ACTIONS(1998), - [anon_sym_LBRACE] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(1998), - [anon_sym_auto] = ACTIONS(1998), - [anon_sym_register] = ACTIONS(1998), - [anon_sym_inline] = ACTIONS(1998), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1998), - [anon_sym_const] = ACTIONS(1998), - [anon_sym_volatile] = ACTIONS(1998), - [anon_sym_restrict] = ACTIONS(1998), - [anon_sym__Atomic] = ACTIONS(1998), - [anon_sym_in] = ACTIONS(1998), - [anon_sym_out] = ACTIONS(1998), - [anon_sym_inout] = ACTIONS(1998), - [anon_sym_bycopy] = ACTIONS(1998), - [anon_sym_byref] = ACTIONS(1998), - [anon_sym_oneway] = ACTIONS(1998), - [anon_sym__Nullable] = ACTIONS(1998), - [anon_sym__Nonnull] = ACTIONS(1998), - [anon_sym__Nullable_result] = ACTIONS(1998), - [anon_sym__Null_unspecified] = ACTIONS(1998), - [anon_sym___autoreleasing] = ACTIONS(1998), - [anon_sym___nullable] = ACTIONS(1998), - [anon_sym___nonnull] = ACTIONS(1998), - [anon_sym___strong] = ACTIONS(1998), - [anon_sym___weak] = ACTIONS(1998), - [anon_sym___bridge] = ACTIONS(1998), - [anon_sym___bridge_transfer] = ACTIONS(1998), - [anon_sym___bridge_retained] = ACTIONS(1998), - [anon_sym___unsafe_unretained] = ACTIONS(1998), - [anon_sym___block] = ACTIONS(1998), - [anon_sym___kindof] = ACTIONS(1998), - [anon_sym___unused] = ACTIONS(1998), - [anon_sym__Complex] = ACTIONS(1998), - [anon_sym___complex] = ACTIONS(1998), - [anon_sym_IBOutlet] = ACTIONS(1998), - [anon_sym_IBInspectable] = ACTIONS(1998), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1998), - [anon_sym_signed] = ACTIONS(1998), - [anon_sym_unsigned] = ACTIONS(1998), - [anon_sym_long] = ACTIONS(1998), - [anon_sym_short] = ACTIONS(1998), - [sym_primitive_type] = ACTIONS(1998), - [anon_sym_enum] = ACTIONS(1998), - [anon_sym_NS_ENUM] = ACTIONS(1998), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1998), - [anon_sym_NS_OPTIONS] = ACTIONS(1998), - [anon_sym_struct] = ACTIONS(1998), - [anon_sym_union] = ACTIONS(1998), - [anon_sym_if] = ACTIONS(1998), - [anon_sym_switch] = ACTIONS(1998), - [anon_sym_case] = ACTIONS(1998), - [anon_sym_default] = ACTIONS(1998), - [anon_sym_while] = ACTIONS(1998), - [anon_sym_do] = ACTIONS(1998), - [anon_sym_for] = ACTIONS(1998), - [anon_sym_return] = ACTIONS(1998), - [anon_sym_break] = ACTIONS(1998), - [anon_sym_continue] = ACTIONS(1998), - [anon_sym_goto] = ACTIONS(1998), - [anon_sym_DASH_DASH] = ACTIONS(2000), - [anon_sym_PLUS_PLUS] = ACTIONS(2000), - [anon_sym_sizeof] = ACTIONS(1998), - [sym_number_literal] = ACTIONS(2000), - [anon_sym_L_SQUOTE] = ACTIONS(2000), - [anon_sym_u_SQUOTE] = ACTIONS(2000), - [anon_sym_U_SQUOTE] = ACTIONS(2000), - [anon_sym_u8_SQUOTE] = ACTIONS(2000), - [anon_sym_SQUOTE] = ACTIONS(2000), - [anon_sym_L_DQUOTE] = ACTIONS(2000), - [anon_sym_u_DQUOTE] = ACTIONS(2000), - [anon_sym_U_DQUOTE] = ACTIONS(2000), - [anon_sym_u8_DQUOTE] = ACTIONS(2000), - [anon_sym_DQUOTE] = ACTIONS(2000), - [sym_true] = ACTIONS(1998), - [sym_false] = ACTIONS(1998), - [sym_null] = ACTIONS(1998), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2000), - [anon_sym_ATimport] = ACTIONS(2000), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1998), - [anon_sym_ATcompatibility_alias] = ACTIONS(2000), - [anon_sym_ATprotocol] = ACTIONS(2000), - [anon_sym_ATclass] = ACTIONS(2000), - [anon_sym_ATinterface] = ACTIONS(2000), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1998), - [sym_method_attribute_specifier] = ACTIONS(1998), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1998), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1998), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1998), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1998), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1998), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1998), - [anon_sym_NS_AVAILABLE] = ACTIONS(1998), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1998), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_API_AVAILABLE] = ACTIONS(1998), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1998), - [anon_sym_API_DEPRECATED] = ACTIONS(1998), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1998), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1998), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1998), - [anon_sym___deprecated_msg] = ACTIONS(1998), - [anon_sym___deprecated_enum_msg] = ACTIONS(1998), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1998), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1998), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1998), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1998), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1998), - [anon_sym_ATimplementation] = ACTIONS(2000), - [anon_sym_typeof] = ACTIONS(1998), - [anon_sym___typeof] = ACTIONS(1998), - [anon_sym___typeof__] = ACTIONS(1998), - [sym_self] = ACTIONS(1998), - [sym_super] = ACTIONS(1998), - [sym_nil] = ACTIONS(1998), - [sym_id] = ACTIONS(1998), - [sym_instancetype] = ACTIONS(1998), - [sym_Class] = ACTIONS(1998), - [sym_SEL] = ACTIONS(1998), - [sym_IMP] = ACTIONS(1998), - [sym_BOOL] = ACTIONS(1998), - [sym_auto] = ACTIONS(1998), - [anon_sym_ATautoreleasepool] = ACTIONS(2000), - [anon_sym_ATsynchronized] = ACTIONS(2000), - [anon_sym_ATtry] = ACTIONS(2000), - [anon_sym_ATthrow] = ACTIONS(2000), - [anon_sym_ATselector] = ACTIONS(2000), - [anon_sym_ATencode] = ACTIONS(2000), - [anon_sym_AT] = ACTIONS(1998), - [sym_YES] = ACTIONS(1998), - [sym_NO] = ACTIONS(1998), - [anon_sym___builtin_available] = ACTIONS(1998), - [anon_sym_ATavailable] = ACTIONS(2000), - [anon_sym_va_arg] = ACTIONS(1998), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1441] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1442] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1443] = { - [sym_identifier] = ACTIONS(2038), - [aux_sym_preproc_include_token1] = ACTIONS(2040), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2038), - [aux_sym_preproc_if_token2] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2038), - [anon_sym___cdecl] = ACTIONS(2038), - [anon_sym___clrcall] = ACTIONS(2038), - [anon_sym___stdcall] = ACTIONS(2038), - [anon_sym___fastcall] = ACTIONS(2038), - [anon_sym___thiscall] = ACTIONS(2038), - [anon_sym___vectorcall] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_auto] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_in] = ACTIONS(2038), - [anon_sym_out] = ACTIONS(2038), - [anon_sym_inout] = ACTIONS(2038), - [anon_sym_bycopy] = ACTIONS(2038), - [anon_sym_byref] = ACTIONS(2038), - [anon_sym_oneway] = ACTIONS(2038), - [anon_sym__Nullable] = ACTIONS(2038), - [anon_sym__Nonnull] = ACTIONS(2038), - [anon_sym__Nullable_result] = ACTIONS(2038), - [anon_sym__Null_unspecified] = ACTIONS(2038), - [anon_sym___autoreleasing] = ACTIONS(2038), - [anon_sym___nullable] = ACTIONS(2038), - [anon_sym___nonnull] = ACTIONS(2038), - [anon_sym___strong] = ACTIONS(2038), - [anon_sym___weak] = ACTIONS(2038), - [anon_sym___bridge] = ACTIONS(2038), - [anon_sym___bridge_transfer] = ACTIONS(2038), - [anon_sym___bridge_retained] = ACTIONS(2038), - [anon_sym___unsafe_unretained] = ACTIONS(2038), - [anon_sym___block] = ACTIONS(2038), - [anon_sym___kindof] = ACTIONS(2038), - [anon_sym___unused] = ACTIONS(2038), - [anon_sym__Complex] = ACTIONS(2038), - [anon_sym___complex] = ACTIONS(2038), - [anon_sym_IBOutlet] = ACTIONS(2038), - [anon_sym_IBInspectable] = ACTIONS(2038), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2038), - [anon_sym_signed] = ACTIONS(2038), - [anon_sym_unsigned] = ACTIONS(2038), - [anon_sym_long] = ACTIONS(2038), - [anon_sym_short] = ACTIONS(2038), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_NS_ENUM] = ACTIONS(2038), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2038), - [anon_sym_NS_OPTIONS] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_goto] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_sizeof] = ACTIONS(2038), - [sym_number_literal] = ACTIONS(2040), - [anon_sym_L_SQUOTE] = ACTIONS(2040), - [anon_sym_u_SQUOTE] = ACTIONS(2040), - [anon_sym_U_SQUOTE] = ACTIONS(2040), - [anon_sym_u8_SQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_L_DQUOTE] = ACTIONS(2040), - [anon_sym_u_DQUOTE] = ACTIONS(2040), - [anon_sym_U_DQUOTE] = ACTIONS(2040), - [anon_sym_u8_DQUOTE] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [sym_null] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2040), - [anon_sym_ATimport] = ACTIONS(2040), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2038), - [anon_sym_ATcompatibility_alias] = ACTIONS(2040), - [anon_sym_ATprotocol] = ACTIONS(2040), - [anon_sym_ATclass] = ACTIONS(2040), - [anon_sym_ATinterface] = ACTIONS(2040), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2038), - [sym_method_attribute_specifier] = ACTIONS(2038), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2038), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE] = ACTIONS(2038), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_API_AVAILABLE] = ACTIONS(2038), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_API_DEPRECATED] = ACTIONS(2038), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2038), - [anon_sym___deprecated_msg] = ACTIONS(2038), - [anon_sym___deprecated_enum_msg] = ACTIONS(2038), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2038), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2038), - [anon_sym_ATimplementation] = ACTIONS(2040), - [anon_sym_typeof] = ACTIONS(2038), - [anon_sym___typeof] = ACTIONS(2038), - [anon_sym___typeof__] = ACTIONS(2038), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_nil] = ACTIONS(2038), - [sym_id] = ACTIONS(2038), - [sym_instancetype] = ACTIONS(2038), - [sym_Class] = ACTIONS(2038), - [sym_SEL] = ACTIONS(2038), - [sym_IMP] = ACTIONS(2038), - [sym_BOOL] = ACTIONS(2038), - [sym_auto] = ACTIONS(2038), - [anon_sym_ATautoreleasepool] = ACTIONS(2040), - [anon_sym_ATsynchronized] = ACTIONS(2040), - [anon_sym_ATtry] = ACTIONS(2040), - [anon_sym_ATthrow] = ACTIONS(2040), - [anon_sym_ATselector] = ACTIONS(2040), - [anon_sym_ATencode] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2038), - [sym_YES] = ACTIONS(2038), - [sym_NO] = ACTIONS(2038), - [anon_sym___builtin_available] = ACTIONS(2038), - [anon_sym_ATavailable] = ACTIONS(2040), - [anon_sym_va_arg] = ACTIONS(2038), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1444] = { - [sym_identifier] = ACTIONS(2002), - [aux_sym_preproc_include_token1] = ACTIONS(2004), - [aux_sym_preproc_def_token1] = ACTIONS(2004), - [aux_sym_preproc_if_token1] = ACTIONS(2002), - [aux_sym_preproc_if_token2] = ACTIONS(2002), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2002), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(2004), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2002), - [anon_sym_PLUS] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2004), - [anon_sym_CARET] = ACTIONS(2004), - [anon_sym_AMP] = ACTIONS(2004), - [anon_sym_SEMI] = ACTIONS(2004), - [anon_sym_typedef] = ACTIONS(2002), - [anon_sym_extern] = ACTIONS(2002), - [anon_sym___attribute] = ACTIONS(2002), - [anon_sym___attribute__] = ACTIONS(2002), - [anon_sym___declspec] = ACTIONS(2002), - [anon_sym___cdecl] = ACTIONS(2002), - [anon_sym___clrcall] = ACTIONS(2002), - [anon_sym___stdcall] = ACTIONS(2002), - [anon_sym___fastcall] = ACTIONS(2002), - [anon_sym___thiscall] = ACTIONS(2002), - [anon_sym___vectorcall] = ACTIONS(2002), - [anon_sym_LBRACE] = ACTIONS(2004), - [anon_sym_LBRACK] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2002), - [anon_sym_auto] = ACTIONS(2002), - [anon_sym_register] = ACTIONS(2002), - [anon_sym_inline] = ACTIONS(2002), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2002), - [anon_sym_const] = ACTIONS(2002), - [anon_sym_volatile] = ACTIONS(2002), - [anon_sym_restrict] = ACTIONS(2002), - [anon_sym__Atomic] = ACTIONS(2002), - [anon_sym_in] = ACTIONS(2002), - [anon_sym_out] = ACTIONS(2002), - [anon_sym_inout] = ACTIONS(2002), - [anon_sym_bycopy] = ACTIONS(2002), - [anon_sym_byref] = ACTIONS(2002), - [anon_sym_oneway] = ACTIONS(2002), - [anon_sym__Nullable] = ACTIONS(2002), - [anon_sym__Nonnull] = ACTIONS(2002), - [anon_sym__Nullable_result] = ACTIONS(2002), - [anon_sym__Null_unspecified] = ACTIONS(2002), - [anon_sym___autoreleasing] = ACTIONS(2002), - [anon_sym___nullable] = ACTIONS(2002), - [anon_sym___nonnull] = ACTIONS(2002), - [anon_sym___strong] = ACTIONS(2002), - [anon_sym___weak] = ACTIONS(2002), - [anon_sym___bridge] = ACTIONS(2002), - [anon_sym___bridge_transfer] = ACTIONS(2002), - [anon_sym___bridge_retained] = ACTIONS(2002), - [anon_sym___unsafe_unretained] = ACTIONS(2002), - [anon_sym___block] = ACTIONS(2002), - [anon_sym___kindof] = ACTIONS(2002), - [anon_sym___unused] = ACTIONS(2002), - [anon_sym__Complex] = ACTIONS(2002), - [anon_sym___complex] = ACTIONS(2002), - [anon_sym_IBOutlet] = ACTIONS(2002), - [anon_sym_IBInspectable] = ACTIONS(2002), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2002), - [anon_sym_signed] = ACTIONS(2002), - [anon_sym_unsigned] = ACTIONS(2002), - [anon_sym_long] = ACTIONS(2002), - [anon_sym_short] = ACTIONS(2002), - [sym_primitive_type] = ACTIONS(2002), - [anon_sym_enum] = ACTIONS(2002), - [anon_sym_NS_ENUM] = ACTIONS(2002), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2002), - [anon_sym_NS_OPTIONS] = ACTIONS(2002), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_switch] = ACTIONS(2002), - [anon_sym_case] = ACTIONS(2002), - [anon_sym_default] = ACTIONS(2002), - [anon_sym_while] = ACTIONS(2002), - [anon_sym_do] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2002), - [anon_sym_break] = ACTIONS(2002), - [anon_sym_continue] = ACTIONS(2002), - [anon_sym_goto] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(2004), - [anon_sym_PLUS_PLUS] = ACTIONS(2004), - [anon_sym_sizeof] = ACTIONS(2002), - [sym_number_literal] = ACTIONS(2004), - [anon_sym_L_SQUOTE] = ACTIONS(2004), - [anon_sym_u_SQUOTE] = ACTIONS(2004), - [anon_sym_U_SQUOTE] = ACTIONS(2004), - [anon_sym_u8_SQUOTE] = ACTIONS(2004), - [anon_sym_SQUOTE] = ACTIONS(2004), - [anon_sym_L_DQUOTE] = ACTIONS(2004), - [anon_sym_u_DQUOTE] = ACTIONS(2004), - [anon_sym_U_DQUOTE] = ACTIONS(2004), - [anon_sym_u8_DQUOTE] = ACTIONS(2004), - [anon_sym_DQUOTE] = ACTIONS(2004), - [sym_true] = ACTIONS(2002), - [sym_false] = ACTIONS(2002), - [sym_null] = ACTIONS(2002), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2004), - [anon_sym_ATimport] = ACTIONS(2004), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2002), - [anon_sym_ATcompatibility_alias] = ACTIONS(2004), - [anon_sym_ATprotocol] = ACTIONS(2004), - [anon_sym_ATclass] = ACTIONS(2004), - [anon_sym_ATinterface] = ACTIONS(2004), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2002), - [sym_method_attribute_specifier] = ACTIONS(2002), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2002), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2002), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2002), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2002), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2002), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2002), - [anon_sym_NS_AVAILABLE] = ACTIONS(2002), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2002), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2002), - [anon_sym_API_AVAILABLE] = ACTIONS(2002), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2002), - [anon_sym_API_DEPRECATED] = ACTIONS(2002), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2002), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2002), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2002), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2002), - [anon_sym___deprecated_msg] = ACTIONS(2002), - [anon_sym___deprecated_enum_msg] = ACTIONS(2002), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2002), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2002), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2002), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2002), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2002), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2002), - [anon_sym_ATimplementation] = ACTIONS(2004), - [anon_sym_typeof] = ACTIONS(2002), - [anon_sym___typeof] = ACTIONS(2002), - [anon_sym___typeof__] = ACTIONS(2002), - [sym_self] = ACTIONS(2002), - [sym_super] = ACTIONS(2002), - [sym_nil] = ACTIONS(2002), - [sym_id] = ACTIONS(2002), - [sym_instancetype] = ACTIONS(2002), - [sym_Class] = ACTIONS(2002), - [sym_SEL] = ACTIONS(2002), - [sym_IMP] = ACTIONS(2002), - [sym_BOOL] = ACTIONS(2002), - [sym_auto] = ACTIONS(2002), - [anon_sym_ATautoreleasepool] = ACTIONS(2004), - [anon_sym_ATsynchronized] = ACTIONS(2004), - [anon_sym_ATtry] = ACTIONS(2004), - [anon_sym_ATthrow] = ACTIONS(2004), - [anon_sym_ATselector] = ACTIONS(2004), - [anon_sym_ATencode] = ACTIONS(2004), - [anon_sym_AT] = ACTIONS(2002), - [sym_YES] = ACTIONS(2002), - [sym_NO] = ACTIONS(2002), - [anon_sym___builtin_available] = ACTIONS(2002), - [anon_sym_ATavailable] = ACTIONS(2004), - [anon_sym_va_arg] = ACTIONS(2002), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1445] = { - [sym_identifier] = ACTIONS(2006), - [aux_sym_preproc_include_token1] = ACTIONS(2008), - [aux_sym_preproc_def_token1] = ACTIONS(2008), - [aux_sym_preproc_if_token1] = ACTIONS(2006), - [aux_sym_preproc_if_token2] = ACTIONS(2006), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2006), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2006), - [anon_sym_LPAREN2] = ACTIONS(2008), - [anon_sym_BANG] = ACTIONS(2008), - [anon_sym_TILDE] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_PLUS] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2008), - [anon_sym_CARET] = ACTIONS(2008), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_typedef] = ACTIONS(2006), - [anon_sym_extern] = ACTIONS(2006), - [anon_sym___attribute] = ACTIONS(2006), - [anon_sym___attribute__] = ACTIONS(2006), - [anon_sym___declspec] = ACTIONS(2006), - [anon_sym___cdecl] = ACTIONS(2006), - [anon_sym___clrcall] = ACTIONS(2006), - [anon_sym___stdcall] = ACTIONS(2006), - [anon_sym___fastcall] = ACTIONS(2006), - [anon_sym___thiscall] = ACTIONS(2006), - [anon_sym___vectorcall] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2006), - [anon_sym_auto] = ACTIONS(2006), - [anon_sym_register] = ACTIONS(2006), - [anon_sym_inline] = ACTIONS(2006), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2006), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_volatile] = ACTIONS(2006), - [anon_sym_restrict] = ACTIONS(2006), - [anon_sym__Atomic] = ACTIONS(2006), - [anon_sym_in] = ACTIONS(2006), - [anon_sym_out] = ACTIONS(2006), - [anon_sym_inout] = ACTIONS(2006), - [anon_sym_bycopy] = ACTIONS(2006), - [anon_sym_byref] = ACTIONS(2006), - [anon_sym_oneway] = ACTIONS(2006), - [anon_sym__Nullable] = ACTIONS(2006), - [anon_sym__Nonnull] = ACTIONS(2006), - [anon_sym__Nullable_result] = ACTIONS(2006), - [anon_sym__Null_unspecified] = ACTIONS(2006), - [anon_sym___autoreleasing] = ACTIONS(2006), - [anon_sym___nullable] = ACTIONS(2006), - [anon_sym___nonnull] = ACTIONS(2006), - [anon_sym___strong] = ACTIONS(2006), - [anon_sym___weak] = ACTIONS(2006), - [anon_sym___bridge] = ACTIONS(2006), - [anon_sym___bridge_transfer] = ACTIONS(2006), - [anon_sym___bridge_retained] = ACTIONS(2006), - [anon_sym___unsafe_unretained] = ACTIONS(2006), - [anon_sym___block] = ACTIONS(2006), - [anon_sym___kindof] = ACTIONS(2006), - [anon_sym___unused] = ACTIONS(2006), - [anon_sym__Complex] = ACTIONS(2006), - [anon_sym___complex] = ACTIONS(2006), - [anon_sym_IBOutlet] = ACTIONS(2006), - [anon_sym_IBInspectable] = ACTIONS(2006), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2006), - [anon_sym_signed] = ACTIONS(2006), - [anon_sym_unsigned] = ACTIONS(2006), - [anon_sym_long] = ACTIONS(2006), - [anon_sym_short] = ACTIONS(2006), - [sym_primitive_type] = ACTIONS(2006), - [anon_sym_enum] = ACTIONS(2006), - [anon_sym_NS_ENUM] = ACTIONS(2006), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2006), - [anon_sym_NS_OPTIONS] = ACTIONS(2006), - [anon_sym_struct] = ACTIONS(2006), - [anon_sym_union] = ACTIONS(2006), - [anon_sym_if] = ACTIONS(2006), - [anon_sym_switch] = ACTIONS(2006), - [anon_sym_case] = ACTIONS(2006), - [anon_sym_default] = ACTIONS(2006), - [anon_sym_while] = ACTIONS(2006), - [anon_sym_do] = ACTIONS(2006), - [anon_sym_for] = ACTIONS(2006), - [anon_sym_return] = ACTIONS(2006), - [anon_sym_break] = ACTIONS(2006), - [anon_sym_continue] = ACTIONS(2006), - [anon_sym_goto] = ACTIONS(2006), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(2006), - [sym_number_literal] = ACTIONS(2008), - [anon_sym_L_SQUOTE] = ACTIONS(2008), - [anon_sym_u_SQUOTE] = ACTIONS(2008), - [anon_sym_U_SQUOTE] = ACTIONS(2008), - [anon_sym_u8_SQUOTE] = ACTIONS(2008), - [anon_sym_SQUOTE] = ACTIONS(2008), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(2006), - [sym_false] = ACTIONS(2006), - [sym_null] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2008), - [anon_sym_ATimport] = ACTIONS(2008), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2006), - [anon_sym_ATcompatibility_alias] = ACTIONS(2008), - [anon_sym_ATprotocol] = ACTIONS(2008), - [anon_sym_ATclass] = ACTIONS(2008), - [anon_sym_ATinterface] = ACTIONS(2008), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2006), - [sym_method_attribute_specifier] = ACTIONS(2006), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2006), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2006), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2006), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2006), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2006), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2006), - [anon_sym_NS_AVAILABLE] = ACTIONS(2006), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2006), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_API_AVAILABLE] = ACTIONS(2006), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2006), - [anon_sym_API_DEPRECATED] = ACTIONS(2006), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2006), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2006), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2006), - [anon_sym___deprecated_msg] = ACTIONS(2006), - [anon_sym___deprecated_enum_msg] = ACTIONS(2006), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2006), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2006), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2006), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2006), - [anon_sym_ATimplementation] = ACTIONS(2008), - [anon_sym_typeof] = ACTIONS(2006), - [anon_sym___typeof] = ACTIONS(2006), - [anon_sym___typeof__] = ACTIONS(2006), - [sym_self] = ACTIONS(2006), - [sym_super] = ACTIONS(2006), - [sym_nil] = ACTIONS(2006), - [sym_id] = ACTIONS(2006), - [sym_instancetype] = ACTIONS(2006), - [sym_Class] = ACTIONS(2006), - [sym_SEL] = ACTIONS(2006), - [sym_IMP] = ACTIONS(2006), - [sym_BOOL] = ACTIONS(2006), - [sym_auto] = ACTIONS(2006), - [anon_sym_ATautoreleasepool] = ACTIONS(2008), - [anon_sym_ATsynchronized] = ACTIONS(2008), - [anon_sym_ATtry] = ACTIONS(2008), - [anon_sym_ATthrow] = ACTIONS(2008), - [anon_sym_ATselector] = ACTIONS(2008), - [anon_sym_ATencode] = ACTIONS(2008), - [anon_sym_AT] = ACTIONS(2006), - [sym_YES] = ACTIONS(2006), - [sym_NO] = ACTIONS(2006), - [anon_sym___builtin_available] = ACTIONS(2006), - [anon_sym_ATavailable] = ACTIONS(2008), - [anon_sym_va_arg] = ACTIONS(2006), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1446] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1447] = { - [sym_identifier] = ACTIONS(2006), - [aux_sym_preproc_include_token1] = ACTIONS(2008), - [aux_sym_preproc_def_token1] = ACTIONS(2008), - [aux_sym_preproc_if_token1] = ACTIONS(2006), - [aux_sym_preproc_if_token2] = ACTIONS(2006), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2006), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2006), - [anon_sym_LPAREN2] = ACTIONS(2008), - [anon_sym_BANG] = ACTIONS(2008), - [anon_sym_TILDE] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2006), - [anon_sym_PLUS] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2008), - [anon_sym_CARET] = ACTIONS(2008), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_typedef] = ACTIONS(2006), - [anon_sym_extern] = ACTIONS(2006), - [anon_sym___attribute] = ACTIONS(2006), - [anon_sym___attribute__] = ACTIONS(2006), - [anon_sym___declspec] = ACTIONS(2006), - [anon_sym___cdecl] = ACTIONS(2006), - [anon_sym___clrcall] = ACTIONS(2006), - [anon_sym___stdcall] = ACTIONS(2006), - [anon_sym___fastcall] = ACTIONS(2006), - [anon_sym___thiscall] = ACTIONS(2006), - [anon_sym___vectorcall] = ACTIONS(2006), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2006), - [anon_sym_auto] = ACTIONS(2006), - [anon_sym_register] = ACTIONS(2006), - [anon_sym_inline] = ACTIONS(2006), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2006), - [anon_sym_const] = ACTIONS(2006), - [anon_sym_volatile] = ACTIONS(2006), - [anon_sym_restrict] = ACTIONS(2006), - [anon_sym__Atomic] = ACTIONS(2006), - [anon_sym_in] = ACTIONS(2006), - [anon_sym_out] = ACTIONS(2006), - [anon_sym_inout] = ACTIONS(2006), - [anon_sym_bycopy] = ACTIONS(2006), - [anon_sym_byref] = ACTIONS(2006), - [anon_sym_oneway] = ACTIONS(2006), - [anon_sym__Nullable] = ACTIONS(2006), - [anon_sym__Nonnull] = ACTIONS(2006), - [anon_sym__Nullable_result] = ACTIONS(2006), - [anon_sym__Null_unspecified] = ACTIONS(2006), - [anon_sym___autoreleasing] = ACTIONS(2006), - [anon_sym___nullable] = ACTIONS(2006), - [anon_sym___nonnull] = ACTIONS(2006), - [anon_sym___strong] = ACTIONS(2006), - [anon_sym___weak] = ACTIONS(2006), - [anon_sym___bridge] = ACTIONS(2006), - [anon_sym___bridge_transfer] = ACTIONS(2006), - [anon_sym___bridge_retained] = ACTIONS(2006), - [anon_sym___unsafe_unretained] = ACTIONS(2006), - [anon_sym___block] = ACTIONS(2006), - [anon_sym___kindof] = ACTIONS(2006), - [anon_sym___unused] = ACTIONS(2006), - [anon_sym__Complex] = ACTIONS(2006), - [anon_sym___complex] = ACTIONS(2006), - [anon_sym_IBOutlet] = ACTIONS(2006), - [anon_sym_IBInspectable] = ACTIONS(2006), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2006), - [anon_sym_signed] = ACTIONS(2006), - [anon_sym_unsigned] = ACTIONS(2006), - [anon_sym_long] = ACTIONS(2006), - [anon_sym_short] = ACTIONS(2006), - [sym_primitive_type] = ACTIONS(2006), - [anon_sym_enum] = ACTIONS(2006), - [anon_sym_NS_ENUM] = ACTIONS(2006), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2006), - [anon_sym_NS_OPTIONS] = ACTIONS(2006), - [anon_sym_struct] = ACTIONS(2006), - [anon_sym_union] = ACTIONS(2006), - [anon_sym_if] = ACTIONS(2006), - [anon_sym_switch] = ACTIONS(2006), - [anon_sym_case] = ACTIONS(2006), - [anon_sym_default] = ACTIONS(2006), - [anon_sym_while] = ACTIONS(2006), - [anon_sym_do] = ACTIONS(2006), - [anon_sym_for] = ACTIONS(2006), - [anon_sym_return] = ACTIONS(2006), - [anon_sym_break] = ACTIONS(2006), - [anon_sym_continue] = ACTIONS(2006), - [anon_sym_goto] = ACTIONS(2006), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(2006), - [sym_number_literal] = ACTIONS(2008), - [anon_sym_L_SQUOTE] = ACTIONS(2008), - [anon_sym_u_SQUOTE] = ACTIONS(2008), - [anon_sym_U_SQUOTE] = ACTIONS(2008), - [anon_sym_u8_SQUOTE] = ACTIONS(2008), - [anon_sym_SQUOTE] = ACTIONS(2008), - [anon_sym_L_DQUOTE] = ACTIONS(2008), - [anon_sym_u_DQUOTE] = ACTIONS(2008), - [anon_sym_U_DQUOTE] = ACTIONS(2008), - [anon_sym_u8_DQUOTE] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2008), - [sym_true] = ACTIONS(2006), - [sym_false] = ACTIONS(2006), - [sym_null] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2008), - [anon_sym_ATimport] = ACTIONS(2008), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2006), - [anon_sym_ATcompatibility_alias] = ACTIONS(2008), - [anon_sym_ATprotocol] = ACTIONS(2008), - [anon_sym_ATclass] = ACTIONS(2008), - [anon_sym_ATinterface] = ACTIONS(2008), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2006), - [sym_method_attribute_specifier] = ACTIONS(2006), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2006), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2006), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2006), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2006), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2006), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2006), - [anon_sym_NS_AVAILABLE] = ACTIONS(2006), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2006), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_API_AVAILABLE] = ACTIONS(2006), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2006), - [anon_sym_API_DEPRECATED] = ACTIONS(2006), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2006), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2006), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2006), - [anon_sym___deprecated_msg] = ACTIONS(2006), - [anon_sym___deprecated_enum_msg] = ACTIONS(2006), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2006), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2006), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2006), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2006), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2006), - [anon_sym_ATimplementation] = ACTIONS(2008), - [anon_sym_typeof] = ACTIONS(2006), - [anon_sym___typeof] = ACTIONS(2006), - [anon_sym___typeof__] = ACTIONS(2006), - [sym_self] = ACTIONS(2006), - [sym_super] = ACTIONS(2006), - [sym_nil] = ACTIONS(2006), - [sym_id] = ACTIONS(2006), - [sym_instancetype] = ACTIONS(2006), - [sym_Class] = ACTIONS(2006), - [sym_SEL] = ACTIONS(2006), - [sym_IMP] = ACTIONS(2006), - [sym_BOOL] = ACTIONS(2006), - [sym_auto] = ACTIONS(2006), - [anon_sym_ATautoreleasepool] = ACTIONS(2008), - [anon_sym_ATsynchronized] = ACTIONS(2008), - [anon_sym_ATtry] = ACTIONS(2008), - [anon_sym_ATthrow] = ACTIONS(2008), - [anon_sym_ATselector] = ACTIONS(2008), - [anon_sym_ATencode] = ACTIONS(2008), - [anon_sym_AT] = ACTIONS(2006), - [sym_YES] = ACTIONS(2006), - [sym_NO] = ACTIONS(2006), - [anon_sym___builtin_available] = ACTIONS(2006), - [anon_sym_ATavailable] = ACTIONS(2008), - [anon_sym_va_arg] = ACTIONS(2006), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1448] = { - [sym_identifier] = ACTIONS(2010), - [aux_sym_preproc_include_token1] = ACTIONS(2012), - [aux_sym_preproc_def_token1] = ACTIONS(2012), - [aux_sym_preproc_if_token1] = ACTIONS(2010), - [aux_sym_preproc_if_token2] = ACTIONS(2010), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2010), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2010), - [anon_sym_LPAREN2] = ACTIONS(2012), - [anon_sym_BANG] = ACTIONS(2012), - [anon_sym_TILDE] = ACTIONS(2012), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_PLUS] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2012), - [anon_sym_CARET] = ACTIONS(2012), - [anon_sym_AMP] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2012), - [anon_sym_typedef] = ACTIONS(2010), - [anon_sym_extern] = ACTIONS(2010), - [anon_sym___attribute] = ACTIONS(2010), - [anon_sym___attribute__] = ACTIONS(2010), - [anon_sym___declspec] = ACTIONS(2010), - [anon_sym___cdecl] = ACTIONS(2010), - [anon_sym___clrcall] = ACTIONS(2010), - [anon_sym___stdcall] = ACTIONS(2010), - [anon_sym___fastcall] = ACTIONS(2010), - [anon_sym___thiscall] = ACTIONS(2010), - [anon_sym___vectorcall] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2012), - [anon_sym_LBRACK] = ACTIONS(2012), - [anon_sym_static] = ACTIONS(2010), - [anon_sym_auto] = ACTIONS(2010), - [anon_sym_register] = ACTIONS(2010), - [anon_sym_inline] = ACTIONS(2010), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2010), - [anon_sym_const] = ACTIONS(2010), - [anon_sym_volatile] = ACTIONS(2010), - [anon_sym_restrict] = ACTIONS(2010), - [anon_sym__Atomic] = ACTIONS(2010), - [anon_sym_in] = ACTIONS(2010), - [anon_sym_out] = ACTIONS(2010), - [anon_sym_inout] = ACTIONS(2010), - [anon_sym_bycopy] = ACTIONS(2010), - [anon_sym_byref] = ACTIONS(2010), - [anon_sym_oneway] = ACTIONS(2010), - [anon_sym__Nullable] = ACTIONS(2010), - [anon_sym__Nonnull] = ACTIONS(2010), - [anon_sym__Nullable_result] = ACTIONS(2010), - [anon_sym__Null_unspecified] = ACTIONS(2010), - [anon_sym___autoreleasing] = ACTIONS(2010), - [anon_sym___nullable] = ACTIONS(2010), - [anon_sym___nonnull] = ACTIONS(2010), - [anon_sym___strong] = ACTIONS(2010), - [anon_sym___weak] = ACTIONS(2010), - [anon_sym___bridge] = ACTIONS(2010), - [anon_sym___bridge_transfer] = ACTIONS(2010), - [anon_sym___bridge_retained] = ACTIONS(2010), - [anon_sym___unsafe_unretained] = ACTIONS(2010), - [anon_sym___block] = ACTIONS(2010), - [anon_sym___kindof] = ACTIONS(2010), - [anon_sym___unused] = ACTIONS(2010), - [anon_sym__Complex] = ACTIONS(2010), - [anon_sym___complex] = ACTIONS(2010), - [anon_sym_IBOutlet] = ACTIONS(2010), - [anon_sym_IBInspectable] = ACTIONS(2010), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2010), - [anon_sym_signed] = ACTIONS(2010), - [anon_sym_unsigned] = ACTIONS(2010), - [anon_sym_long] = ACTIONS(2010), - [anon_sym_short] = ACTIONS(2010), - [sym_primitive_type] = ACTIONS(2010), - [anon_sym_enum] = ACTIONS(2010), - [anon_sym_NS_ENUM] = ACTIONS(2010), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2010), - [anon_sym_NS_OPTIONS] = ACTIONS(2010), - [anon_sym_struct] = ACTIONS(2010), - [anon_sym_union] = ACTIONS(2010), - [anon_sym_if] = ACTIONS(2010), - [anon_sym_switch] = ACTIONS(2010), - [anon_sym_case] = ACTIONS(2010), - [anon_sym_default] = ACTIONS(2010), - [anon_sym_while] = ACTIONS(2010), - [anon_sym_do] = ACTIONS(2010), - [anon_sym_for] = ACTIONS(2010), - [anon_sym_return] = ACTIONS(2010), - [anon_sym_break] = ACTIONS(2010), - [anon_sym_continue] = ACTIONS(2010), - [anon_sym_goto] = ACTIONS(2010), - [anon_sym_DASH_DASH] = ACTIONS(2012), - [anon_sym_PLUS_PLUS] = ACTIONS(2012), - [anon_sym_sizeof] = ACTIONS(2010), - [sym_number_literal] = ACTIONS(2012), - [anon_sym_L_SQUOTE] = ACTIONS(2012), - [anon_sym_u_SQUOTE] = ACTIONS(2012), - [anon_sym_U_SQUOTE] = ACTIONS(2012), - [anon_sym_u8_SQUOTE] = ACTIONS(2012), - [anon_sym_SQUOTE] = ACTIONS(2012), - [anon_sym_L_DQUOTE] = ACTIONS(2012), - [anon_sym_u_DQUOTE] = ACTIONS(2012), - [anon_sym_U_DQUOTE] = ACTIONS(2012), - [anon_sym_u8_DQUOTE] = ACTIONS(2012), - [anon_sym_DQUOTE] = ACTIONS(2012), - [sym_true] = ACTIONS(2010), - [sym_false] = ACTIONS(2010), - [sym_null] = ACTIONS(2010), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2012), - [anon_sym_ATimport] = ACTIONS(2012), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2010), - [anon_sym_ATcompatibility_alias] = ACTIONS(2012), - [anon_sym_ATprotocol] = ACTIONS(2012), - [anon_sym_ATclass] = ACTIONS(2012), - [anon_sym_ATinterface] = ACTIONS(2012), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2010), - [sym_method_attribute_specifier] = ACTIONS(2010), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2010), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2010), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2010), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2010), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2010), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2010), - [anon_sym_NS_AVAILABLE] = ACTIONS(2010), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2010), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2010), - [anon_sym_API_AVAILABLE] = ACTIONS(2010), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2010), - [anon_sym_API_DEPRECATED] = ACTIONS(2010), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2010), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2010), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2010), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2010), - [anon_sym___deprecated_msg] = ACTIONS(2010), - [anon_sym___deprecated_enum_msg] = ACTIONS(2010), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2010), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2010), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2010), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2010), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2010), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2010), - [anon_sym_ATimplementation] = ACTIONS(2012), - [anon_sym_typeof] = ACTIONS(2010), - [anon_sym___typeof] = ACTIONS(2010), - [anon_sym___typeof__] = ACTIONS(2010), - [sym_self] = ACTIONS(2010), - [sym_super] = ACTIONS(2010), - [sym_nil] = ACTIONS(2010), - [sym_id] = ACTIONS(2010), - [sym_instancetype] = ACTIONS(2010), - [sym_Class] = ACTIONS(2010), - [sym_SEL] = ACTIONS(2010), - [sym_IMP] = ACTIONS(2010), - [sym_BOOL] = ACTIONS(2010), - [sym_auto] = ACTIONS(2010), - [anon_sym_ATautoreleasepool] = ACTIONS(2012), - [anon_sym_ATsynchronized] = ACTIONS(2012), - [anon_sym_ATtry] = ACTIONS(2012), - [anon_sym_ATthrow] = ACTIONS(2012), - [anon_sym_ATselector] = ACTIONS(2012), - [anon_sym_ATencode] = ACTIONS(2012), - [anon_sym_AT] = ACTIONS(2010), - [sym_YES] = ACTIONS(2010), - [sym_NO] = ACTIONS(2010), - [anon_sym___builtin_available] = ACTIONS(2010), - [anon_sym_ATavailable] = ACTIONS(2012), - [anon_sym_va_arg] = ACTIONS(2010), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1449] = { - [sym_identifier] = ACTIONS(2026), - [aux_sym_preproc_include_token1] = ACTIONS(2028), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2026), - [aux_sym_preproc_if_token2] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2028), - [anon_sym_BANG] = ACTIONS(2028), - [anon_sym_TILDE] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2028), - [anon_sym_CARET] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_typedef] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2026), - [anon_sym___attribute] = ACTIONS(2026), - [anon_sym___attribute__] = ACTIONS(2026), - [anon_sym___declspec] = ACTIONS(2026), - [anon_sym___cdecl] = ACTIONS(2026), - [anon_sym___clrcall] = ACTIONS(2026), - [anon_sym___stdcall] = ACTIONS(2026), - [anon_sym___fastcall] = ACTIONS(2026), - [anon_sym___thiscall] = ACTIONS(2026), - [anon_sym___vectorcall] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_auto] = ACTIONS(2026), - [anon_sym_register] = ACTIONS(2026), - [anon_sym_inline] = ACTIONS(2026), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_volatile] = ACTIONS(2026), - [anon_sym_restrict] = ACTIONS(2026), - [anon_sym__Atomic] = ACTIONS(2026), - [anon_sym_in] = ACTIONS(2026), - [anon_sym_out] = ACTIONS(2026), - [anon_sym_inout] = ACTIONS(2026), - [anon_sym_bycopy] = ACTIONS(2026), - [anon_sym_byref] = ACTIONS(2026), - [anon_sym_oneway] = ACTIONS(2026), - [anon_sym__Nullable] = ACTIONS(2026), - [anon_sym__Nonnull] = ACTIONS(2026), - [anon_sym__Nullable_result] = ACTIONS(2026), - [anon_sym__Null_unspecified] = ACTIONS(2026), - [anon_sym___autoreleasing] = ACTIONS(2026), - [anon_sym___nullable] = ACTIONS(2026), - [anon_sym___nonnull] = ACTIONS(2026), - [anon_sym___strong] = ACTIONS(2026), - [anon_sym___weak] = ACTIONS(2026), - [anon_sym___bridge] = ACTIONS(2026), - [anon_sym___bridge_transfer] = ACTIONS(2026), - [anon_sym___bridge_retained] = ACTIONS(2026), - [anon_sym___unsafe_unretained] = ACTIONS(2026), - [anon_sym___block] = ACTIONS(2026), - [anon_sym___kindof] = ACTIONS(2026), - [anon_sym___unused] = ACTIONS(2026), - [anon_sym__Complex] = ACTIONS(2026), - [anon_sym___complex] = ACTIONS(2026), - [anon_sym_IBOutlet] = ACTIONS(2026), - [anon_sym_IBInspectable] = ACTIONS(2026), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2026), - [anon_sym_signed] = ACTIONS(2026), - [anon_sym_unsigned] = ACTIONS(2026), - [anon_sym_long] = ACTIONS(2026), - [anon_sym_short] = ACTIONS(2026), - [sym_primitive_type] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_NS_ENUM] = ACTIONS(2026), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2026), - [anon_sym_NS_OPTIONS] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_switch] = ACTIONS(2026), - [anon_sym_case] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_goto] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2028), - [anon_sym_L_SQUOTE] = ACTIONS(2028), - [anon_sym_u_SQUOTE] = ACTIONS(2028), - [anon_sym_U_SQUOTE] = ACTIONS(2028), - [anon_sym_u8_SQUOTE] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_L_DQUOTE] = ACTIONS(2028), - [anon_sym_u_DQUOTE] = ACTIONS(2028), - [anon_sym_U_DQUOTE] = ACTIONS(2028), - [anon_sym_u8_DQUOTE] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [sym_true] = ACTIONS(2026), - [sym_false] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2028), - [anon_sym_ATimport] = ACTIONS(2028), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2026), - [anon_sym_ATcompatibility_alias] = ACTIONS(2028), - [anon_sym_ATprotocol] = ACTIONS(2028), - [anon_sym_ATclass] = ACTIONS(2028), - [anon_sym_ATinterface] = ACTIONS(2028), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2026), - [sym_method_attribute_specifier] = ACTIONS(2026), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2026), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE] = ACTIONS(2026), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_API_AVAILABLE] = ACTIONS(2026), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_API_DEPRECATED] = ACTIONS(2026), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2026), - [anon_sym___deprecated_msg] = ACTIONS(2026), - [anon_sym___deprecated_enum_msg] = ACTIONS(2026), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2026), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2026), - [anon_sym_ATimplementation] = ACTIONS(2028), - [anon_sym_typeof] = ACTIONS(2026), - [anon_sym___typeof] = ACTIONS(2026), - [anon_sym___typeof__] = ACTIONS(2026), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_nil] = ACTIONS(2026), - [sym_id] = ACTIONS(2026), - [sym_instancetype] = ACTIONS(2026), - [sym_Class] = ACTIONS(2026), - [sym_SEL] = ACTIONS(2026), - [sym_IMP] = ACTIONS(2026), - [sym_BOOL] = ACTIONS(2026), - [sym_auto] = ACTIONS(2026), - [anon_sym_ATautoreleasepool] = ACTIONS(2028), - [anon_sym_ATsynchronized] = ACTIONS(2028), - [anon_sym_ATtry] = ACTIONS(2028), - [anon_sym_ATthrow] = ACTIONS(2028), - [anon_sym_ATselector] = ACTIONS(2028), - [anon_sym_ATencode] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(2026), - [sym_YES] = ACTIONS(2026), - [sym_NO] = ACTIONS(2026), - [anon_sym___builtin_available] = ACTIONS(2026), - [anon_sym_ATavailable] = ACTIONS(2028), - [anon_sym_va_arg] = ACTIONS(2026), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1450] = { - [sym_identifier] = ACTIONS(2026), - [aux_sym_preproc_include_token1] = ACTIONS(2028), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2026), - [aux_sym_preproc_if_token2] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2028), - [anon_sym_BANG] = ACTIONS(2028), - [anon_sym_TILDE] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2028), - [anon_sym_CARET] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_typedef] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2026), - [anon_sym___attribute] = ACTIONS(2026), - [anon_sym___attribute__] = ACTIONS(2026), - [anon_sym___declspec] = ACTIONS(2026), - [anon_sym___cdecl] = ACTIONS(2026), - [anon_sym___clrcall] = ACTIONS(2026), - [anon_sym___stdcall] = ACTIONS(2026), - [anon_sym___fastcall] = ACTIONS(2026), - [anon_sym___thiscall] = ACTIONS(2026), - [anon_sym___vectorcall] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_auto] = ACTIONS(2026), - [anon_sym_register] = ACTIONS(2026), - [anon_sym_inline] = ACTIONS(2026), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_volatile] = ACTIONS(2026), - [anon_sym_restrict] = ACTIONS(2026), - [anon_sym__Atomic] = ACTIONS(2026), - [anon_sym_in] = ACTIONS(2026), - [anon_sym_out] = ACTIONS(2026), - [anon_sym_inout] = ACTIONS(2026), - [anon_sym_bycopy] = ACTIONS(2026), - [anon_sym_byref] = ACTIONS(2026), - [anon_sym_oneway] = ACTIONS(2026), - [anon_sym__Nullable] = ACTIONS(2026), - [anon_sym__Nonnull] = ACTIONS(2026), - [anon_sym__Nullable_result] = ACTIONS(2026), - [anon_sym__Null_unspecified] = ACTIONS(2026), - [anon_sym___autoreleasing] = ACTIONS(2026), - [anon_sym___nullable] = ACTIONS(2026), - [anon_sym___nonnull] = ACTIONS(2026), - [anon_sym___strong] = ACTIONS(2026), - [anon_sym___weak] = ACTIONS(2026), - [anon_sym___bridge] = ACTIONS(2026), - [anon_sym___bridge_transfer] = ACTIONS(2026), - [anon_sym___bridge_retained] = ACTIONS(2026), - [anon_sym___unsafe_unretained] = ACTIONS(2026), - [anon_sym___block] = ACTIONS(2026), - [anon_sym___kindof] = ACTIONS(2026), - [anon_sym___unused] = ACTIONS(2026), - [anon_sym__Complex] = ACTIONS(2026), - [anon_sym___complex] = ACTIONS(2026), - [anon_sym_IBOutlet] = ACTIONS(2026), - [anon_sym_IBInspectable] = ACTIONS(2026), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2026), - [anon_sym_signed] = ACTIONS(2026), - [anon_sym_unsigned] = ACTIONS(2026), - [anon_sym_long] = ACTIONS(2026), - [anon_sym_short] = ACTIONS(2026), - [sym_primitive_type] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_NS_ENUM] = ACTIONS(2026), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2026), - [anon_sym_NS_OPTIONS] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_switch] = ACTIONS(2026), - [anon_sym_case] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_goto] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2028), - [anon_sym_L_SQUOTE] = ACTIONS(2028), - [anon_sym_u_SQUOTE] = ACTIONS(2028), - [anon_sym_U_SQUOTE] = ACTIONS(2028), - [anon_sym_u8_SQUOTE] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_L_DQUOTE] = ACTIONS(2028), - [anon_sym_u_DQUOTE] = ACTIONS(2028), - [anon_sym_U_DQUOTE] = ACTIONS(2028), - [anon_sym_u8_DQUOTE] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [sym_true] = ACTIONS(2026), - [sym_false] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2028), - [anon_sym_ATimport] = ACTIONS(2028), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2026), - [anon_sym_ATcompatibility_alias] = ACTIONS(2028), - [anon_sym_ATprotocol] = ACTIONS(2028), - [anon_sym_ATclass] = ACTIONS(2028), - [anon_sym_ATinterface] = ACTIONS(2028), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2026), - [sym_method_attribute_specifier] = ACTIONS(2026), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2026), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE] = ACTIONS(2026), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_API_AVAILABLE] = ACTIONS(2026), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_API_DEPRECATED] = ACTIONS(2026), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2026), - [anon_sym___deprecated_msg] = ACTIONS(2026), - [anon_sym___deprecated_enum_msg] = ACTIONS(2026), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2026), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2026), - [anon_sym_ATimplementation] = ACTIONS(2028), - [anon_sym_typeof] = ACTIONS(2026), - [anon_sym___typeof] = ACTIONS(2026), - [anon_sym___typeof__] = ACTIONS(2026), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_nil] = ACTIONS(2026), - [sym_id] = ACTIONS(2026), - [sym_instancetype] = ACTIONS(2026), - [sym_Class] = ACTIONS(2026), - [sym_SEL] = ACTIONS(2026), - [sym_IMP] = ACTIONS(2026), - [sym_BOOL] = ACTIONS(2026), - [sym_auto] = ACTIONS(2026), - [anon_sym_ATautoreleasepool] = ACTIONS(2028), - [anon_sym_ATsynchronized] = ACTIONS(2028), - [anon_sym_ATtry] = ACTIONS(2028), - [anon_sym_ATthrow] = ACTIONS(2028), - [anon_sym_ATselector] = ACTIONS(2028), - [anon_sym_ATencode] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(2026), - [sym_YES] = ACTIONS(2026), - [sym_NO] = ACTIONS(2026), - [anon_sym___builtin_available] = ACTIONS(2026), - [anon_sym_ATavailable] = ACTIONS(2028), - [anon_sym_va_arg] = ACTIONS(2026), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1451] = { - [sym_identifier] = ACTIONS(2026), - [aux_sym_preproc_include_token1] = ACTIONS(2028), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2026), - [aux_sym_preproc_if_token2] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2028), - [anon_sym_BANG] = ACTIONS(2028), - [anon_sym_TILDE] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2028), - [anon_sym_CARET] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_typedef] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2026), - [anon_sym___attribute] = ACTIONS(2026), - [anon_sym___attribute__] = ACTIONS(2026), - [anon_sym___declspec] = ACTIONS(2026), - [anon_sym___cdecl] = ACTIONS(2026), - [anon_sym___clrcall] = ACTIONS(2026), - [anon_sym___stdcall] = ACTIONS(2026), - [anon_sym___fastcall] = ACTIONS(2026), - [anon_sym___thiscall] = ACTIONS(2026), - [anon_sym___vectorcall] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_auto] = ACTIONS(2026), - [anon_sym_register] = ACTIONS(2026), - [anon_sym_inline] = ACTIONS(2026), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_volatile] = ACTIONS(2026), - [anon_sym_restrict] = ACTIONS(2026), - [anon_sym__Atomic] = ACTIONS(2026), - [anon_sym_in] = ACTIONS(2026), - [anon_sym_out] = ACTIONS(2026), - [anon_sym_inout] = ACTIONS(2026), - [anon_sym_bycopy] = ACTIONS(2026), - [anon_sym_byref] = ACTIONS(2026), - [anon_sym_oneway] = ACTIONS(2026), - [anon_sym__Nullable] = ACTIONS(2026), - [anon_sym__Nonnull] = ACTIONS(2026), - [anon_sym__Nullable_result] = ACTIONS(2026), - [anon_sym__Null_unspecified] = ACTIONS(2026), - [anon_sym___autoreleasing] = ACTIONS(2026), - [anon_sym___nullable] = ACTIONS(2026), - [anon_sym___nonnull] = ACTIONS(2026), - [anon_sym___strong] = ACTIONS(2026), - [anon_sym___weak] = ACTIONS(2026), - [anon_sym___bridge] = ACTIONS(2026), - [anon_sym___bridge_transfer] = ACTIONS(2026), - [anon_sym___bridge_retained] = ACTIONS(2026), - [anon_sym___unsafe_unretained] = ACTIONS(2026), - [anon_sym___block] = ACTIONS(2026), - [anon_sym___kindof] = ACTIONS(2026), - [anon_sym___unused] = ACTIONS(2026), - [anon_sym__Complex] = ACTIONS(2026), - [anon_sym___complex] = ACTIONS(2026), - [anon_sym_IBOutlet] = ACTIONS(2026), - [anon_sym_IBInspectable] = ACTIONS(2026), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2026), - [anon_sym_signed] = ACTIONS(2026), - [anon_sym_unsigned] = ACTIONS(2026), - [anon_sym_long] = ACTIONS(2026), - [anon_sym_short] = ACTIONS(2026), - [sym_primitive_type] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_NS_ENUM] = ACTIONS(2026), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2026), - [anon_sym_NS_OPTIONS] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_switch] = ACTIONS(2026), - [anon_sym_case] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_goto] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2028), - [anon_sym_L_SQUOTE] = ACTIONS(2028), - [anon_sym_u_SQUOTE] = ACTIONS(2028), - [anon_sym_U_SQUOTE] = ACTIONS(2028), - [anon_sym_u8_SQUOTE] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_L_DQUOTE] = ACTIONS(2028), - [anon_sym_u_DQUOTE] = ACTIONS(2028), - [anon_sym_U_DQUOTE] = ACTIONS(2028), - [anon_sym_u8_DQUOTE] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [sym_true] = ACTIONS(2026), - [sym_false] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2028), - [anon_sym_ATimport] = ACTIONS(2028), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2026), - [anon_sym_ATcompatibility_alias] = ACTIONS(2028), - [anon_sym_ATprotocol] = ACTIONS(2028), - [anon_sym_ATclass] = ACTIONS(2028), - [anon_sym_ATinterface] = ACTIONS(2028), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2026), - [sym_method_attribute_specifier] = ACTIONS(2026), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2026), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE] = ACTIONS(2026), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_API_AVAILABLE] = ACTIONS(2026), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_API_DEPRECATED] = ACTIONS(2026), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2026), - [anon_sym___deprecated_msg] = ACTIONS(2026), - [anon_sym___deprecated_enum_msg] = ACTIONS(2026), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2026), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2026), - [anon_sym_ATimplementation] = ACTIONS(2028), - [anon_sym_typeof] = ACTIONS(2026), - [anon_sym___typeof] = ACTIONS(2026), - [anon_sym___typeof__] = ACTIONS(2026), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_nil] = ACTIONS(2026), - [sym_id] = ACTIONS(2026), - [sym_instancetype] = ACTIONS(2026), - [sym_Class] = ACTIONS(2026), - [sym_SEL] = ACTIONS(2026), - [sym_IMP] = ACTIONS(2026), - [sym_BOOL] = ACTIONS(2026), - [sym_auto] = ACTIONS(2026), - [anon_sym_ATautoreleasepool] = ACTIONS(2028), - [anon_sym_ATsynchronized] = ACTIONS(2028), - [anon_sym_ATtry] = ACTIONS(2028), - [anon_sym_ATthrow] = ACTIONS(2028), - [anon_sym_ATselector] = ACTIONS(2028), - [anon_sym_ATencode] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(2026), - [sym_YES] = ACTIONS(2026), - [sym_NO] = ACTIONS(2026), - [anon_sym___builtin_available] = ACTIONS(2026), - [anon_sym_ATavailable] = ACTIONS(2028), - [anon_sym_va_arg] = ACTIONS(2026), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1452] = { - [sym_identifier] = ACTIONS(2026), - [aux_sym_preproc_include_token1] = ACTIONS(2028), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2026), - [aux_sym_preproc_if_token2] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2028), - [anon_sym_BANG] = ACTIONS(2028), - [anon_sym_TILDE] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2028), - [anon_sym_CARET] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_typedef] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2026), - [anon_sym___attribute] = ACTIONS(2026), - [anon_sym___attribute__] = ACTIONS(2026), - [anon_sym___declspec] = ACTIONS(2026), - [anon_sym___cdecl] = ACTIONS(2026), - [anon_sym___clrcall] = ACTIONS(2026), - [anon_sym___stdcall] = ACTIONS(2026), - [anon_sym___fastcall] = ACTIONS(2026), - [anon_sym___thiscall] = ACTIONS(2026), - [anon_sym___vectorcall] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_auto] = ACTIONS(2026), - [anon_sym_register] = ACTIONS(2026), - [anon_sym_inline] = ACTIONS(2026), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_volatile] = ACTIONS(2026), - [anon_sym_restrict] = ACTIONS(2026), - [anon_sym__Atomic] = ACTIONS(2026), - [anon_sym_in] = ACTIONS(2026), - [anon_sym_out] = ACTIONS(2026), - [anon_sym_inout] = ACTIONS(2026), - [anon_sym_bycopy] = ACTIONS(2026), - [anon_sym_byref] = ACTIONS(2026), - [anon_sym_oneway] = ACTIONS(2026), - [anon_sym__Nullable] = ACTIONS(2026), - [anon_sym__Nonnull] = ACTIONS(2026), - [anon_sym__Nullable_result] = ACTIONS(2026), - [anon_sym__Null_unspecified] = ACTIONS(2026), - [anon_sym___autoreleasing] = ACTIONS(2026), - [anon_sym___nullable] = ACTIONS(2026), - [anon_sym___nonnull] = ACTIONS(2026), - [anon_sym___strong] = ACTIONS(2026), - [anon_sym___weak] = ACTIONS(2026), - [anon_sym___bridge] = ACTIONS(2026), - [anon_sym___bridge_transfer] = ACTIONS(2026), - [anon_sym___bridge_retained] = ACTIONS(2026), - [anon_sym___unsafe_unretained] = ACTIONS(2026), - [anon_sym___block] = ACTIONS(2026), - [anon_sym___kindof] = ACTIONS(2026), - [anon_sym___unused] = ACTIONS(2026), - [anon_sym__Complex] = ACTIONS(2026), - [anon_sym___complex] = ACTIONS(2026), - [anon_sym_IBOutlet] = ACTIONS(2026), - [anon_sym_IBInspectable] = ACTIONS(2026), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2026), - [anon_sym_signed] = ACTIONS(2026), - [anon_sym_unsigned] = ACTIONS(2026), - [anon_sym_long] = ACTIONS(2026), - [anon_sym_short] = ACTIONS(2026), - [sym_primitive_type] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_NS_ENUM] = ACTIONS(2026), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2026), - [anon_sym_NS_OPTIONS] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_switch] = ACTIONS(2026), - [anon_sym_case] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_goto] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2028), - [anon_sym_L_SQUOTE] = ACTIONS(2028), - [anon_sym_u_SQUOTE] = ACTIONS(2028), - [anon_sym_U_SQUOTE] = ACTIONS(2028), - [anon_sym_u8_SQUOTE] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_L_DQUOTE] = ACTIONS(2028), - [anon_sym_u_DQUOTE] = ACTIONS(2028), - [anon_sym_U_DQUOTE] = ACTIONS(2028), - [anon_sym_u8_DQUOTE] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [sym_true] = ACTIONS(2026), - [sym_false] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2028), - [anon_sym_ATimport] = ACTIONS(2028), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2026), - [anon_sym_ATcompatibility_alias] = ACTIONS(2028), - [anon_sym_ATprotocol] = ACTIONS(2028), - [anon_sym_ATclass] = ACTIONS(2028), - [anon_sym_ATinterface] = ACTIONS(2028), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2026), - [sym_method_attribute_specifier] = ACTIONS(2026), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2026), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE] = ACTIONS(2026), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_API_AVAILABLE] = ACTIONS(2026), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_API_DEPRECATED] = ACTIONS(2026), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2026), - [anon_sym___deprecated_msg] = ACTIONS(2026), - [anon_sym___deprecated_enum_msg] = ACTIONS(2026), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2026), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2026), - [anon_sym_ATimplementation] = ACTIONS(2028), - [anon_sym_typeof] = ACTIONS(2026), - [anon_sym___typeof] = ACTIONS(2026), - [anon_sym___typeof__] = ACTIONS(2026), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_nil] = ACTIONS(2026), - [sym_id] = ACTIONS(2026), - [sym_instancetype] = ACTIONS(2026), - [sym_Class] = ACTIONS(2026), - [sym_SEL] = ACTIONS(2026), - [sym_IMP] = ACTIONS(2026), - [sym_BOOL] = ACTIONS(2026), - [sym_auto] = ACTIONS(2026), - [anon_sym_ATautoreleasepool] = ACTIONS(2028), - [anon_sym_ATsynchronized] = ACTIONS(2028), - [anon_sym_ATtry] = ACTIONS(2028), - [anon_sym_ATthrow] = ACTIONS(2028), - [anon_sym_ATselector] = ACTIONS(2028), - [anon_sym_ATencode] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(2026), - [sym_YES] = ACTIONS(2026), - [sym_NO] = ACTIONS(2026), - [anon_sym___builtin_available] = ACTIONS(2026), - [anon_sym_ATavailable] = ACTIONS(2028), - [anon_sym_va_arg] = ACTIONS(2026), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1453] = { - [sym_identifier] = ACTIONS(2026), - [aux_sym_preproc_include_token1] = ACTIONS(2028), - [aux_sym_preproc_def_token1] = ACTIONS(2028), - [aux_sym_preproc_if_token1] = ACTIONS(2026), - [aux_sym_preproc_if_token2] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2026), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2026), - [anon_sym_LPAREN2] = ACTIONS(2028), - [anon_sym_BANG] = ACTIONS(2028), - [anon_sym_TILDE] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2028), - [anon_sym_CARET] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_typedef] = ACTIONS(2026), - [anon_sym_extern] = ACTIONS(2026), - [anon_sym___attribute] = ACTIONS(2026), - [anon_sym___attribute__] = ACTIONS(2026), - [anon_sym___declspec] = ACTIONS(2026), - [anon_sym___cdecl] = ACTIONS(2026), - [anon_sym___clrcall] = ACTIONS(2026), - [anon_sym___stdcall] = ACTIONS(2026), - [anon_sym___fastcall] = ACTIONS(2026), - [anon_sym___thiscall] = ACTIONS(2026), - [anon_sym___vectorcall] = ACTIONS(2026), - [anon_sym_LBRACE] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_auto] = ACTIONS(2026), - [anon_sym_register] = ACTIONS(2026), - [anon_sym_inline] = ACTIONS(2026), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_volatile] = ACTIONS(2026), - [anon_sym_restrict] = ACTIONS(2026), - [anon_sym__Atomic] = ACTIONS(2026), - [anon_sym_in] = ACTIONS(2026), - [anon_sym_out] = ACTIONS(2026), - [anon_sym_inout] = ACTIONS(2026), - [anon_sym_bycopy] = ACTIONS(2026), - [anon_sym_byref] = ACTIONS(2026), - [anon_sym_oneway] = ACTIONS(2026), - [anon_sym__Nullable] = ACTIONS(2026), - [anon_sym__Nonnull] = ACTIONS(2026), - [anon_sym__Nullable_result] = ACTIONS(2026), - [anon_sym__Null_unspecified] = ACTIONS(2026), - [anon_sym___autoreleasing] = ACTIONS(2026), - [anon_sym___nullable] = ACTIONS(2026), - [anon_sym___nonnull] = ACTIONS(2026), - [anon_sym___strong] = ACTIONS(2026), - [anon_sym___weak] = ACTIONS(2026), - [anon_sym___bridge] = ACTIONS(2026), - [anon_sym___bridge_transfer] = ACTIONS(2026), - [anon_sym___bridge_retained] = ACTIONS(2026), - [anon_sym___unsafe_unretained] = ACTIONS(2026), - [anon_sym___block] = ACTIONS(2026), - [anon_sym___kindof] = ACTIONS(2026), - [anon_sym___unused] = ACTIONS(2026), - [anon_sym__Complex] = ACTIONS(2026), - [anon_sym___complex] = ACTIONS(2026), - [anon_sym_IBOutlet] = ACTIONS(2026), - [anon_sym_IBInspectable] = ACTIONS(2026), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2026), - [anon_sym_signed] = ACTIONS(2026), - [anon_sym_unsigned] = ACTIONS(2026), - [anon_sym_long] = ACTIONS(2026), - [anon_sym_short] = ACTIONS(2026), - [sym_primitive_type] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_NS_ENUM] = ACTIONS(2026), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2026), - [anon_sym_NS_OPTIONS] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_switch] = ACTIONS(2026), - [anon_sym_case] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [anon_sym_do] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_goto] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2028), - [anon_sym_sizeof] = ACTIONS(2026), - [sym_number_literal] = ACTIONS(2028), - [anon_sym_L_SQUOTE] = ACTIONS(2028), - [anon_sym_u_SQUOTE] = ACTIONS(2028), - [anon_sym_U_SQUOTE] = ACTIONS(2028), - [anon_sym_u8_SQUOTE] = ACTIONS(2028), - [anon_sym_SQUOTE] = ACTIONS(2028), - [anon_sym_L_DQUOTE] = ACTIONS(2028), - [anon_sym_u_DQUOTE] = ACTIONS(2028), - [anon_sym_U_DQUOTE] = ACTIONS(2028), - [anon_sym_u8_DQUOTE] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2028), - [sym_true] = ACTIONS(2026), - [sym_false] = ACTIONS(2026), - [sym_null] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2028), - [anon_sym_ATimport] = ACTIONS(2028), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2026), - [anon_sym_ATcompatibility_alias] = ACTIONS(2028), - [anon_sym_ATprotocol] = ACTIONS(2028), - [anon_sym_ATclass] = ACTIONS(2028), - [anon_sym_ATinterface] = ACTIONS(2028), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2026), - [sym_method_attribute_specifier] = ACTIONS(2026), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2026), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2026), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE] = ACTIONS(2026), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2026), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_API_AVAILABLE] = ACTIONS(2026), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_API_DEPRECATED] = ACTIONS(2026), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2026), - [anon_sym___deprecated_msg] = ACTIONS(2026), - [anon_sym___deprecated_enum_msg] = ACTIONS(2026), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2026), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2026), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2026), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2026), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2026), - [anon_sym_ATimplementation] = ACTIONS(2028), - [anon_sym_typeof] = ACTIONS(2026), - [anon_sym___typeof] = ACTIONS(2026), - [anon_sym___typeof__] = ACTIONS(2026), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_nil] = ACTIONS(2026), - [sym_id] = ACTIONS(2026), - [sym_instancetype] = ACTIONS(2026), - [sym_Class] = ACTIONS(2026), - [sym_SEL] = ACTIONS(2026), - [sym_IMP] = ACTIONS(2026), - [sym_BOOL] = ACTIONS(2026), - [sym_auto] = ACTIONS(2026), - [anon_sym_ATautoreleasepool] = ACTIONS(2028), - [anon_sym_ATsynchronized] = ACTIONS(2028), - [anon_sym_ATtry] = ACTIONS(2028), - [anon_sym_ATthrow] = ACTIONS(2028), - [anon_sym_ATselector] = ACTIONS(2028), - [anon_sym_ATencode] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(2026), - [sym_YES] = ACTIONS(2026), - [sym_NO] = ACTIONS(2026), - [anon_sym___builtin_available] = ACTIONS(2026), - [anon_sym_ATavailable] = ACTIONS(2028), - [anon_sym_va_arg] = ACTIONS(2026), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1454] = { - [sym_identifier] = ACTIONS(2042), - [aux_sym_preproc_include_token1] = ACTIONS(2044), - [aux_sym_preproc_def_token1] = ACTIONS(2044), - [aux_sym_preproc_if_token1] = ACTIONS(2042), - [aux_sym_preproc_if_token2] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2042), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2042), - [anon_sym_LPAREN2] = ACTIONS(2044), - [anon_sym_BANG] = ACTIONS(2044), - [anon_sym_TILDE] = ACTIONS(2044), - [anon_sym_DASH] = ACTIONS(2042), - [anon_sym_PLUS] = ACTIONS(2042), - [anon_sym_STAR] = ACTIONS(2044), - [anon_sym_CARET] = ACTIONS(2044), - [anon_sym_AMP] = ACTIONS(2044), - [anon_sym_SEMI] = ACTIONS(2044), - [anon_sym_typedef] = ACTIONS(2042), - [anon_sym_extern] = ACTIONS(2042), - [anon_sym___attribute] = ACTIONS(2042), - [anon_sym___attribute__] = ACTIONS(2042), - [anon_sym___declspec] = ACTIONS(2042), - [anon_sym___cdecl] = ACTIONS(2042), - [anon_sym___clrcall] = ACTIONS(2042), - [anon_sym___stdcall] = ACTIONS(2042), - [anon_sym___fastcall] = ACTIONS(2042), - [anon_sym___thiscall] = ACTIONS(2042), - [anon_sym___vectorcall] = ACTIONS(2042), - [anon_sym_LBRACE] = ACTIONS(2044), - [anon_sym_LBRACK] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2042), - [anon_sym_auto] = ACTIONS(2042), - [anon_sym_register] = ACTIONS(2042), - [anon_sym_inline] = ACTIONS(2042), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2042), - [anon_sym_const] = ACTIONS(2042), - [anon_sym_volatile] = ACTIONS(2042), - [anon_sym_restrict] = ACTIONS(2042), - [anon_sym__Atomic] = ACTIONS(2042), - [anon_sym_in] = ACTIONS(2042), - [anon_sym_out] = ACTIONS(2042), - [anon_sym_inout] = ACTIONS(2042), - [anon_sym_bycopy] = ACTIONS(2042), - [anon_sym_byref] = ACTIONS(2042), - [anon_sym_oneway] = ACTIONS(2042), - [anon_sym__Nullable] = ACTIONS(2042), - [anon_sym__Nonnull] = ACTIONS(2042), - [anon_sym__Nullable_result] = ACTIONS(2042), - [anon_sym__Null_unspecified] = ACTIONS(2042), - [anon_sym___autoreleasing] = ACTIONS(2042), - [anon_sym___nullable] = ACTIONS(2042), - [anon_sym___nonnull] = ACTIONS(2042), - [anon_sym___strong] = ACTIONS(2042), - [anon_sym___weak] = ACTIONS(2042), - [anon_sym___bridge] = ACTIONS(2042), - [anon_sym___bridge_transfer] = ACTIONS(2042), - [anon_sym___bridge_retained] = ACTIONS(2042), - [anon_sym___unsafe_unretained] = ACTIONS(2042), - [anon_sym___block] = ACTIONS(2042), - [anon_sym___kindof] = ACTIONS(2042), - [anon_sym___unused] = ACTIONS(2042), - [anon_sym__Complex] = ACTIONS(2042), - [anon_sym___complex] = ACTIONS(2042), - [anon_sym_IBOutlet] = ACTIONS(2042), - [anon_sym_IBInspectable] = ACTIONS(2042), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2042), - [anon_sym_signed] = ACTIONS(2042), - [anon_sym_unsigned] = ACTIONS(2042), - [anon_sym_long] = ACTIONS(2042), - [anon_sym_short] = ACTIONS(2042), - [sym_primitive_type] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2042), - [anon_sym_NS_ENUM] = ACTIONS(2042), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2042), - [anon_sym_NS_OPTIONS] = ACTIONS(2042), - [anon_sym_struct] = ACTIONS(2042), - [anon_sym_union] = ACTIONS(2042), - [anon_sym_if] = ACTIONS(2042), - [anon_sym_switch] = ACTIONS(2042), - [anon_sym_case] = ACTIONS(2042), - [anon_sym_default] = ACTIONS(2042), - [anon_sym_while] = ACTIONS(2042), - [anon_sym_do] = ACTIONS(2042), - [anon_sym_for] = ACTIONS(2042), - [anon_sym_return] = ACTIONS(2042), - [anon_sym_break] = ACTIONS(2042), - [anon_sym_continue] = ACTIONS(2042), - [anon_sym_goto] = ACTIONS(2042), - [anon_sym_DASH_DASH] = ACTIONS(2044), - [anon_sym_PLUS_PLUS] = ACTIONS(2044), - [anon_sym_sizeof] = ACTIONS(2042), - [sym_number_literal] = ACTIONS(2044), - [anon_sym_L_SQUOTE] = ACTIONS(2044), - [anon_sym_u_SQUOTE] = ACTIONS(2044), - [anon_sym_U_SQUOTE] = ACTIONS(2044), - [anon_sym_u8_SQUOTE] = ACTIONS(2044), - [anon_sym_SQUOTE] = ACTIONS(2044), - [anon_sym_L_DQUOTE] = ACTIONS(2044), - [anon_sym_u_DQUOTE] = ACTIONS(2044), - [anon_sym_U_DQUOTE] = ACTIONS(2044), - [anon_sym_u8_DQUOTE] = ACTIONS(2044), - [anon_sym_DQUOTE] = ACTIONS(2044), - [sym_true] = ACTIONS(2042), - [sym_false] = ACTIONS(2042), - [sym_null] = ACTIONS(2042), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2044), - [anon_sym_ATimport] = ACTIONS(2044), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2042), - [anon_sym_ATcompatibility_alias] = ACTIONS(2044), - [anon_sym_ATprotocol] = ACTIONS(2044), - [anon_sym_ATclass] = ACTIONS(2044), - [anon_sym_ATinterface] = ACTIONS(2044), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2042), - [sym_method_attribute_specifier] = ACTIONS(2042), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2042), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2042), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2042), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2042), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2042), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2042), - [anon_sym_NS_AVAILABLE] = ACTIONS(2042), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2042), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2042), - [anon_sym_API_AVAILABLE] = ACTIONS(2042), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2042), - [anon_sym_API_DEPRECATED] = ACTIONS(2042), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2042), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2042), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2042), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2042), - [anon_sym___deprecated_msg] = ACTIONS(2042), - [anon_sym___deprecated_enum_msg] = ACTIONS(2042), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2042), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2042), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2042), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2042), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2042), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2042), - [anon_sym_ATimplementation] = ACTIONS(2044), - [anon_sym_typeof] = ACTIONS(2042), - [anon_sym___typeof] = ACTIONS(2042), - [anon_sym___typeof__] = ACTIONS(2042), - [sym_self] = ACTIONS(2042), - [sym_super] = ACTIONS(2042), - [sym_nil] = ACTIONS(2042), - [sym_id] = ACTIONS(2042), - [sym_instancetype] = ACTIONS(2042), - [sym_Class] = ACTIONS(2042), - [sym_SEL] = ACTIONS(2042), - [sym_IMP] = ACTIONS(2042), - [sym_BOOL] = ACTIONS(2042), - [sym_auto] = ACTIONS(2042), - [anon_sym_ATautoreleasepool] = ACTIONS(2044), - [anon_sym_ATsynchronized] = ACTIONS(2044), - [anon_sym_ATtry] = ACTIONS(2044), - [anon_sym_ATthrow] = ACTIONS(2044), - [anon_sym_ATselector] = ACTIONS(2044), - [anon_sym_ATencode] = ACTIONS(2044), - [anon_sym_AT] = ACTIONS(2042), - [sym_YES] = ACTIONS(2042), - [sym_NO] = ACTIONS(2042), - [anon_sym___builtin_available] = ACTIONS(2042), - [anon_sym_ATavailable] = ACTIONS(2044), - [anon_sym_va_arg] = ACTIONS(2042), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1455] = { - [sym_identifier] = ACTIONS(2046), - [aux_sym_preproc_include_token1] = ACTIONS(2048), - [aux_sym_preproc_def_token1] = ACTIONS(2048), - [aux_sym_preproc_if_token1] = ACTIONS(2046), - [aux_sym_preproc_if_token2] = ACTIONS(2046), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2046), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2046), - [anon_sym_LPAREN2] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(2048), - [anon_sym_TILDE] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_AMP] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_typedef] = ACTIONS(2046), - [anon_sym_extern] = ACTIONS(2046), - [anon_sym___attribute] = ACTIONS(2046), - [anon_sym___attribute__] = ACTIONS(2046), - [anon_sym___declspec] = ACTIONS(2046), - [anon_sym___cdecl] = ACTIONS(2046), - [anon_sym___clrcall] = ACTIONS(2046), - [anon_sym___stdcall] = ACTIONS(2046), - [anon_sym___fastcall] = ACTIONS(2046), - [anon_sym___thiscall] = ACTIONS(2046), - [anon_sym___vectorcall] = ACTIONS(2046), - [anon_sym_LBRACE] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2048), - [anon_sym_static] = ACTIONS(2046), - [anon_sym_auto] = ACTIONS(2046), - [anon_sym_register] = ACTIONS(2046), - [anon_sym_inline] = ACTIONS(2046), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2046), - [anon_sym_const] = ACTIONS(2046), - [anon_sym_volatile] = ACTIONS(2046), - [anon_sym_restrict] = ACTIONS(2046), - [anon_sym__Atomic] = ACTIONS(2046), - [anon_sym_in] = ACTIONS(2046), - [anon_sym_out] = ACTIONS(2046), - [anon_sym_inout] = ACTIONS(2046), - [anon_sym_bycopy] = ACTIONS(2046), - [anon_sym_byref] = ACTIONS(2046), - [anon_sym_oneway] = ACTIONS(2046), - [anon_sym__Nullable] = ACTIONS(2046), - [anon_sym__Nonnull] = ACTIONS(2046), - [anon_sym__Nullable_result] = ACTIONS(2046), - [anon_sym__Null_unspecified] = ACTIONS(2046), - [anon_sym___autoreleasing] = ACTIONS(2046), - [anon_sym___nullable] = ACTIONS(2046), - [anon_sym___nonnull] = ACTIONS(2046), - [anon_sym___strong] = ACTIONS(2046), - [anon_sym___weak] = ACTIONS(2046), - [anon_sym___bridge] = ACTIONS(2046), - [anon_sym___bridge_transfer] = ACTIONS(2046), - [anon_sym___bridge_retained] = ACTIONS(2046), - [anon_sym___unsafe_unretained] = ACTIONS(2046), - [anon_sym___block] = ACTIONS(2046), - [anon_sym___kindof] = ACTIONS(2046), - [anon_sym___unused] = ACTIONS(2046), - [anon_sym__Complex] = ACTIONS(2046), - [anon_sym___complex] = ACTIONS(2046), - [anon_sym_IBOutlet] = ACTIONS(2046), - [anon_sym_IBInspectable] = ACTIONS(2046), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2046), - [anon_sym_signed] = ACTIONS(2046), - [anon_sym_unsigned] = ACTIONS(2046), - [anon_sym_long] = ACTIONS(2046), - [anon_sym_short] = ACTIONS(2046), - [sym_primitive_type] = ACTIONS(2046), - [anon_sym_enum] = ACTIONS(2046), - [anon_sym_NS_ENUM] = ACTIONS(2046), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2046), - [anon_sym_NS_OPTIONS] = ACTIONS(2046), - [anon_sym_struct] = ACTIONS(2046), - [anon_sym_union] = ACTIONS(2046), - [anon_sym_if] = ACTIONS(2046), - [anon_sym_switch] = ACTIONS(2046), - [anon_sym_case] = ACTIONS(2046), - [anon_sym_default] = ACTIONS(2046), - [anon_sym_while] = ACTIONS(2046), - [anon_sym_do] = ACTIONS(2046), - [anon_sym_for] = ACTIONS(2046), - [anon_sym_return] = ACTIONS(2046), - [anon_sym_break] = ACTIONS(2046), - [anon_sym_continue] = ACTIONS(2046), - [anon_sym_goto] = ACTIONS(2046), - [anon_sym_DASH_DASH] = ACTIONS(2048), - [anon_sym_PLUS_PLUS] = ACTIONS(2048), - [anon_sym_sizeof] = ACTIONS(2046), - [sym_number_literal] = ACTIONS(2048), - [anon_sym_L_SQUOTE] = ACTIONS(2048), - [anon_sym_u_SQUOTE] = ACTIONS(2048), - [anon_sym_U_SQUOTE] = ACTIONS(2048), - [anon_sym_u8_SQUOTE] = ACTIONS(2048), - [anon_sym_SQUOTE] = ACTIONS(2048), - [anon_sym_L_DQUOTE] = ACTIONS(2048), - [anon_sym_u_DQUOTE] = ACTIONS(2048), - [anon_sym_U_DQUOTE] = ACTIONS(2048), - [anon_sym_u8_DQUOTE] = ACTIONS(2048), - [anon_sym_DQUOTE] = ACTIONS(2048), - [sym_true] = ACTIONS(2046), - [sym_false] = ACTIONS(2046), - [sym_null] = ACTIONS(2046), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2048), - [anon_sym_ATimport] = ACTIONS(2048), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2046), - [anon_sym_ATcompatibility_alias] = ACTIONS(2048), - [anon_sym_ATprotocol] = ACTIONS(2048), - [anon_sym_ATclass] = ACTIONS(2048), - [anon_sym_ATinterface] = ACTIONS(2048), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2046), - [sym_method_attribute_specifier] = ACTIONS(2046), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2046), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2046), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2046), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2046), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2046), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2046), - [anon_sym_NS_AVAILABLE] = ACTIONS(2046), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2046), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2046), - [anon_sym_API_AVAILABLE] = ACTIONS(2046), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2046), - [anon_sym_API_DEPRECATED] = ACTIONS(2046), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2046), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2046), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2046), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2046), - [anon_sym___deprecated_msg] = ACTIONS(2046), - [anon_sym___deprecated_enum_msg] = ACTIONS(2046), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2046), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2046), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2046), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2046), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2046), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2046), - [anon_sym_ATimplementation] = ACTIONS(2048), - [anon_sym_typeof] = ACTIONS(2046), - [anon_sym___typeof] = ACTIONS(2046), - [anon_sym___typeof__] = ACTIONS(2046), - [sym_self] = ACTIONS(2046), - [sym_super] = ACTIONS(2046), - [sym_nil] = ACTIONS(2046), - [sym_id] = ACTIONS(2046), - [sym_instancetype] = ACTIONS(2046), - [sym_Class] = ACTIONS(2046), - [sym_SEL] = ACTIONS(2046), - [sym_IMP] = ACTIONS(2046), - [sym_BOOL] = ACTIONS(2046), - [sym_auto] = ACTIONS(2046), - [anon_sym_ATautoreleasepool] = ACTIONS(2048), - [anon_sym_ATsynchronized] = ACTIONS(2048), - [anon_sym_ATtry] = ACTIONS(2048), - [anon_sym_ATthrow] = ACTIONS(2048), - [anon_sym_ATselector] = ACTIONS(2048), - [anon_sym_ATencode] = ACTIONS(2048), - [anon_sym_AT] = ACTIONS(2046), - [sym_YES] = ACTIONS(2046), - [sym_NO] = ACTIONS(2046), - [anon_sym___builtin_available] = ACTIONS(2046), - [anon_sym_ATavailable] = ACTIONS(2048), - [anon_sym_va_arg] = ACTIONS(2046), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1456] = { - [sym_identifier] = ACTIONS(2050), - [aux_sym_preproc_include_token1] = ACTIONS(2052), - [aux_sym_preproc_def_token1] = ACTIONS(2052), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_if_token2] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2050), - [anon_sym_LPAREN2] = ACTIONS(2052), - [anon_sym_BANG] = ACTIONS(2052), - [anon_sym_TILDE] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_PLUS] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_typedef] = ACTIONS(2050), - [anon_sym_extern] = ACTIONS(2050), - [anon_sym___attribute] = ACTIONS(2050), - [anon_sym___attribute__] = ACTIONS(2050), - [anon_sym___declspec] = ACTIONS(2050), - [anon_sym___cdecl] = ACTIONS(2050), - [anon_sym___clrcall] = ACTIONS(2050), - [anon_sym___stdcall] = ACTIONS(2050), - [anon_sym___fastcall] = ACTIONS(2050), - [anon_sym___thiscall] = ACTIONS(2050), - [anon_sym___vectorcall] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2050), - [anon_sym_auto] = ACTIONS(2050), - [anon_sym_register] = ACTIONS(2050), - [anon_sym_inline] = ACTIONS(2050), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2050), - [anon_sym_const] = ACTIONS(2050), - [anon_sym_volatile] = ACTIONS(2050), - [anon_sym_restrict] = ACTIONS(2050), - [anon_sym__Atomic] = ACTIONS(2050), - [anon_sym_in] = ACTIONS(2050), - [anon_sym_out] = ACTIONS(2050), - [anon_sym_inout] = ACTIONS(2050), - [anon_sym_bycopy] = ACTIONS(2050), - [anon_sym_byref] = ACTIONS(2050), - [anon_sym_oneway] = ACTIONS(2050), - [anon_sym__Nullable] = ACTIONS(2050), - [anon_sym__Nonnull] = ACTIONS(2050), - [anon_sym__Nullable_result] = ACTIONS(2050), - [anon_sym__Null_unspecified] = ACTIONS(2050), - [anon_sym___autoreleasing] = ACTIONS(2050), - [anon_sym___nullable] = ACTIONS(2050), - [anon_sym___nonnull] = ACTIONS(2050), - [anon_sym___strong] = ACTIONS(2050), - [anon_sym___weak] = ACTIONS(2050), - [anon_sym___bridge] = ACTIONS(2050), - [anon_sym___bridge_transfer] = ACTIONS(2050), - [anon_sym___bridge_retained] = ACTIONS(2050), - [anon_sym___unsafe_unretained] = ACTIONS(2050), - [anon_sym___block] = ACTIONS(2050), - [anon_sym___kindof] = ACTIONS(2050), - [anon_sym___unused] = ACTIONS(2050), - [anon_sym__Complex] = ACTIONS(2050), - [anon_sym___complex] = ACTIONS(2050), - [anon_sym_IBOutlet] = ACTIONS(2050), - [anon_sym_IBInspectable] = ACTIONS(2050), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2050), - [anon_sym_signed] = ACTIONS(2050), - [anon_sym_unsigned] = ACTIONS(2050), - [anon_sym_long] = ACTIONS(2050), - [anon_sym_short] = ACTIONS(2050), - [sym_primitive_type] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2050), - [anon_sym_NS_ENUM] = ACTIONS(2050), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2050), - [anon_sym_NS_OPTIONS] = ACTIONS(2050), - [anon_sym_struct] = ACTIONS(2050), - [anon_sym_union] = ACTIONS(2050), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_switch] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(2050), - [anon_sym_default] = ACTIONS(2050), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2050), - [anon_sym_break] = ACTIONS(2050), - [anon_sym_continue] = ACTIONS(2050), - [anon_sym_goto] = ACTIONS(2050), - [anon_sym_DASH_DASH] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(2052), - [anon_sym_sizeof] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2052), - [anon_sym_u_SQUOTE] = ACTIONS(2052), - [anon_sym_U_SQUOTE] = ACTIONS(2052), - [anon_sym_u8_SQUOTE] = ACTIONS(2052), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_L_DQUOTE] = ACTIONS(2052), - [anon_sym_u_DQUOTE] = ACTIONS(2052), - [anon_sym_U_DQUOTE] = ACTIONS(2052), - [anon_sym_u8_DQUOTE] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(2052), - [sym_true] = ACTIONS(2050), - [sym_false] = ACTIONS(2050), - [sym_null] = ACTIONS(2050), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2052), - [anon_sym_ATimport] = ACTIONS(2052), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2050), - [anon_sym_ATcompatibility_alias] = ACTIONS(2052), - [anon_sym_ATprotocol] = ACTIONS(2052), - [anon_sym_ATclass] = ACTIONS(2052), - [anon_sym_ATinterface] = ACTIONS(2052), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2050), - [sym_method_attribute_specifier] = ACTIONS(2050), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2050), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE] = ACTIONS(2050), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_API_AVAILABLE] = ACTIONS(2050), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_API_DEPRECATED] = ACTIONS(2050), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2050), - [anon_sym___deprecated_msg] = ACTIONS(2050), - [anon_sym___deprecated_enum_msg] = ACTIONS(2050), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2050), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2050), - [anon_sym_ATimplementation] = ACTIONS(2052), - [anon_sym_typeof] = ACTIONS(2050), - [anon_sym___typeof] = ACTIONS(2050), - [anon_sym___typeof__] = ACTIONS(2050), - [sym_self] = ACTIONS(2050), - [sym_super] = ACTIONS(2050), - [sym_nil] = ACTIONS(2050), - [sym_id] = ACTIONS(2050), - [sym_instancetype] = ACTIONS(2050), - [sym_Class] = ACTIONS(2050), - [sym_SEL] = ACTIONS(2050), - [sym_IMP] = ACTIONS(2050), - [sym_BOOL] = ACTIONS(2050), - [sym_auto] = ACTIONS(2050), - [anon_sym_ATautoreleasepool] = ACTIONS(2052), - [anon_sym_ATsynchronized] = ACTIONS(2052), - [anon_sym_ATtry] = ACTIONS(2052), - [anon_sym_ATthrow] = ACTIONS(2052), - [anon_sym_ATselector] = ACTIONS(2052), - [anon_sym_ATencode] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2050), - [sym_YES] = ACTIONS(2050), - [sym_NO] = ACTIONS(2050), - [anon_sym___builtin_available] = ACTIONS(2050), - [anon_sym_ATavailable] = ACTIONS(2052), - [anon_sym_va_arg] = ACTIONS(2050), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1457] = { - [sym_identifier] = ACTIONS(2050), - [aux_sym_preproc_include_token1] = ACTIONS(2052), - [aux_sym_preproc_def_token1] = ACTIONS(2052), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_if_token2] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2050), - [anon_sym_LPAREN2] = ACTIONS(2052), - [anon_sym_BANG] = ACTIONS(2052), - [anon_sym_TILDE] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_PLUS] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_typedef] = ACTIONS(2050), - [anon_sym_extern] = ACTIONS(2050), - [anon_sym___attribute] = ACTIONS(2050), - [anon_sym___attribute__] = ACTIONS(2050), - [anon_sym___declspec] = ACTIONS(2050), - [anon_sym___cdecl] = ACTIONS(2050), - [anon_sym___clrcall] = ACTIONS(2050), - [anon_sym___stdcall] = ACTIONS(2050), - [anon_sym___fastcall] = ACTIONS(2050), - [anon_sym___thiscall] = ACTIONS(2050), - [anon_sym___vectorcall] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2050), - [anon_sym_auto] = ACTIONS(2050), - [anon_sym_register] = ACTIONS(2050), - [anon_sym_inline] = ACTIONS(2050), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2050), - [anon_sym_const] = ACTIONS(2050), - [anon_sym_volatile] = ACTIONS(2050), - [anon_sym_restrict] = ACTIONS(2050), - [anon_sym__Atomic] = ACTIONS(2050), - [anon_sym_in] = ACTIONS(2050), - [anon_sym_out] = ACTIONS(2050), - [anon_sym_inout] = ACTIONS(2050), - [anon_sym_bycopy] = ACTIONS(2050), - [anon_sym_byref] = ACTIONS(2050), - [anon_sym_oneway] = ACTIONS(2050), - [anon_sym__Nullable] = ACTIONS(2050), - [anon_sym__Nonnull] = ACTIONS(2050), - [anon_sym__Nullable_result] = ACTIONS(2050), - [anon_sym__Null_unspecified] = ACTIONS(2050), - [anon_sym___autoreleasing] = ACTIONS(2050), - [anon_sym___nullable] = ACTIONS(2050), - [anon_sym___nonnull] = ACTIONS(2050), - [anon_sym___strong] = ACTIONS(2050), - [anon_sym___weak] = ACTIONS(2050), - [anon_sym___bridge] = ACTIONS(2050), - [anon_sym___bridge_transfer] = ACTIONS(2050), - [anon_sym___bridge_retained] = ACTIONS(2050), - [anon_sym___unsafe_unretained] = ACTIONS(2050), - [anon_sym___block] = ACTIONS(2050), - [anon_sym___kindof] = ACTIONS(2050), - [anon_sym___unused] = ACTIONS(2050), - [anon_sym__Complex] = ACTIONS(2050), - [anon_sym___complex] = ACTIONS(2050), - [anon_sym_IBOutlet] = ACTIONS(2050), - [anon_sym_IBInspectable] = ACTIONS(2050), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2050), - [anon_sym_signed] = ACTIONS(2050), - [anon_sym_unsigned] = ACTIONS(2050), - [anon_sym_long] = ACTIONS(2050), - [anon_sym_short] = ACTIONS(2050), - [sym_primitive_type] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2050), - [anon_sym_NS_ENUM] = ACTIONS(2050), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2050), - [anon_sym_NS_OPTIONS] = ACTIONS(2050), - [anon_sym_struct] = ACTIONS(2050), - [anon_sym_union] = ACTIONS(2050), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_switch] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(2050), - [anon_sym_default] = ACTIONS(2050), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2050), - [anon_sym_break] = ACTIONS(2050), - [anon_sym_continue] = ACTIONS(2050), - [anon_sym_goto] = ACTIONS(2050), - [anon_sym_DASH_DASH] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(2052), - [anon_sym_sizeof] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2052), - [anon_sym_u_SQUOTE] = ACTIONS(2052), - [anon_sym_U_SQUOTE] = ACTIONS(2052), - [anon_sym_u8_SQUOTE] = ACTIONS(2052), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_L_DQUOTE] = ACTIONS(2052), - [anon_sym_u_DQUOTE] = ACTIONS(2052), - [anon_sym_U_DQUOTE] = ACTIONS(2052), - [anon_sym_u8_DQUOTE] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(2052), - [sym_true] = ACTIONS(2050), - [sym_false] = ACTIONS(2050), - [sym_null] = ACTIONS(2050), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2052), - [anon_sym_ATimport] = ACTIONS(2052), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2050), - [anon_sym_ATcompatibility_alias] = ACTIONS(2052), - [anon_sym_ATprotocol] = ACTIONS(2052), - [anon_sym_ATclass] = ACTIONS(2052), - [anon_sym_ATinterface] = ACTIONS(2052), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2050), - [sym_method_attribute_specifier] = ACTIONS(2050), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2050), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE] = ACTIONS(2050), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_API_AVAILABLE] = ACTIONS(2050), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_API_DEPRECATED] = ACTIONS(2050), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2050), - [anon_sym___deprecated_msg] = ACTIONS(2050), - [anon_sym___deprecated_enum_msg] = ACTIONS(2050), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2050), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2050), - [anon_sym_ATimplementation] = ACTIONS(2052), - [anon_sym_typeof] = ACTIONS(2050), - [anon_sym___typeof] = ACTIONS(2050), - [anon_sym___typeof__] = ACTIONS(2050), - [sym_self] = ACTIONS(2050), - [sym_super] = ACTIONS(2050), - [sym_nil] = ACTIONS(2050), - [sym_id] = ACTIONS(2050), - [sym_instancetype] = ACTIONS(2050), - [sym_Class] = ACTIONS(2050), - [sym_SEL] = ACTIONS(2050), - [sym_IMP] = ACTIONS(2050), - [sym_BOOL] = ACTIONS(2050), - [sym_auto] = ACTIONS(2050), - [anon_sym_ATautoreleasepool] = ACTIONS(2052), - [anon_sym_ATsynchronized] = ACTIONS(2052), - [anon_sym_ATtry] = ACTIONS(2052), - [anon_sym_ATthrow] = ACTIONS(2052), - [anon_sym_ATselector] = ACTIONS(2052), - [anon_sym_ATencode] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2050), - [sym_YES] = ACTIONS(2050), - [sym_NO] = ACTIONS(2050), - [anon_sym___builtin_available] = ACTIONS(2050), - [anon_sym_ATavailable] = ACTIONS(2052), - [anon_sym_va_arg] = ACTIONS(2050), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1458] = { - [sym_identifier] = ACTIONS(2086), - [aux_sym_preproc_include_token1] = ACTIONS(2088), - [aux_sym_preproc_def_token1] = ACTIONS(2088), - [aux_sym_preproc_if_token1] = ACTIONS(2086), - [aux_sym_preproc_if_token2] = ACTIONS(2086), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2086), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2086), - [anon_sym_LPAREN2] = ACTIONS(2088), - [anon_sym_BANG] = ACTIONS(2088), - [anon_sym_TILDE] = ACTIONS(2088), - [anon_sym_DASH] = ACTIONS(2086), - [anon_sym_PLUS] = ACTIONS(2086), - [anon_sym_STAR] = ACTIONS(2088), - [anon_sym_CARET] = ACTIONS(2088), - [anon_sym_AMP] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_typedef] = ACTIONS(2086), - [anon_sym_extern] = ACTIONS(2086), - [anon_sym___attribute] = ACTIONS(2086), - [anon_sym___attribute__] = ACTIONS(2086), - [anon_sym___declspec] = ACTIONS(2086), - [anon_sym___cdecl] = ACTIONS(2086), - [anon_sym___clrcall] = ACTIONS(2086), - [anon_sym___stdcall] = ACTIONS(2086), - [anon_sym___fastcall] = ACTIONS(2086), - [anon_sym___thiscall] = ACTIONS(2086), - [anon_sym___vectorcall] = ACTIONS(2086), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(2088), - [anon_sym_static] = ACTIONS(2086), - [anon_sym_auto] = ACTIONS(2086), - [anon_sym_register] = ACTIONS(2086), - [anon_sym_inline] = ACTIONS(2086), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2086), - [anon_sym_const] = ACTIONS(2086), - [anon_sym_volatile] = ACTIONS(2086), - [anon_sym_restrict] = ACTIONS(2086), - [anon_sym__Atomic] = ACTIONS(2086), - [anon_sym_in] = ACTIONS(2086), - [anon_sym_out] = ACTIONS(2086), - [anon_sym_inout] = ACTIONS(2086), - [anon_sym_bycopy] = ACTIONS(2086), - [anon_sym_byref] = ACTIONS(2086), - [anon_sym_oneway] = ACTIONS(2086), - [anon_sym__Nullable] = ACTIONS(2086), - [anon_sym__Nonnull] = ACTIONS(2086), - [anon_sym__Nullable_result] = ACTIONS(2086), - [anon_sym__Null_unspecified] = ACTIONS(2086), - [anon_sym___autoreleasing] = ACTIONS(2086), - [anon_sym___nullable] = ACTIONS(2086), - [anon_sym___nonnull] = ACTIONS(2086), - [anon_sym___strong] = ACTIONS(2086), - [anon_sym___weak] = ACTIONS(2086), - [anon_sym___bridge] = ACTIONS(2086), - [anon_sym___bridge_transfer] = ACTIONS(2086), - [anon_sym___bridge_retained] = ACTIONS(2086), - [anon_sym___unsafe_unretained] = ACTIONS(2086), - [anon_sym___block] = ACTIONS(2086), - [anon_sym___kindof] = ACTIONS(2086), - [anon_sym___unused] = ACTIONS(2086), - [anon_sym__Complex] = ACTIONS(2086), - [anon_sym___complex] = ACTIONS(2086), - [anon_sym_IBOutlet] = ACTIONS(2086), - [anon_sym_IBInspectable] = ACTIONS(2086), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2086), - [anon_sym_signed] = ACTIONS(2086), - [anon_sym_unsigned] = ACTIONS(2086), - [anon_sym_long] = ACTIONS(2086), - [anon_sym_short] = ACTIONS(2086), - [sym_primitive_type] = ACTIONS(2086), - [anon_sym_enum] = ACTIONS(2086), - [anon_sym_NS_ENUM] = ACTIONS(2086), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2086), - [anon_sym_NS_OPTIONS] = ACTIONS(2086), - [anon_sym_struct] = ACTIONS(2086), - [anon_sym_union] = ACTIONS(2086), - [anon_sym_if] = ACTIONS(2086), - [anon_sym_switch] = ACTIONS(2086), - [anon_sym_case] = ACTIONS(2086), - [anon_sym_default] = ACTIONS(2086), - [anon_sym_while] = ACTIONS(2086), - [anon_sym_do] = ACTIONS(2086), - [anon_sym_for] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2086), - [anon_sym_break] = ACTIONS(2086), - [anon_sym_continue] = ACTIONS(2086), - [anon_sym_goto] = ACTIONS(2086), - [anon_sym_DASH_DASH] = ACTIONS(2088), - [anon_sym_PLUS_PLUS] = ACTIONS(2088), - [anon_sym_sizeof] = ACTIONS(2086), - [sym_number_literal] = ACTIONS(2088), - [anon_sym_L_SQUOTE] = ACTIONS(2088), - [anon_sym_u_SQUOTE] = ACTIONS(2088), - [anon_sym_U_SQUOTE] = ACTIONS(2088), - [anon_sym_u8_SQUOTE] = ACTIONS(2088), - [anon_sym_SQUOTE] = ACTIONS(2088), - [anon_sym_L_DQUOTE] = ACTIONS(2088), - [anon_sym_u_DQUOTE] = ACTIONS(2088), - [anon_sym_U_DQUOTE] = ACTIONS(2088), - [anon_sym_u8_DQUOTE] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [sym_true] = ACTIONS(2086), - [sym_false] = ACTIONS(2086), - [sym_null] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2088), - [anon_sym_ATimport] = ACTIONS(2088), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2086), - [anon_sym_ATcompatibility_alias] = ACTIONS(2088), - [anon_sym_ATprotocol] = ACTIONS(2088), - [anon_sym_ATclass] = ACTIONS(2088), - [anon_sym_ATinterface] = ACTIONS(2088), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2086), - [sym_method_attribute_specifier] = ACTIONS(2086), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2086), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2086), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2086), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2086), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2086), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2086), - [anon_sym_NS_AVAILABLE] = ACTIONS(2086), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2086), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2086), - [anon_sym_API_AVAILABLE] = ACTIONS(2086), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2086), - [anon_sym_API_DEPRECATED] = ACTIONS(2086), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2086), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2086), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2086), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2086), - [anon_sym___deprecated_msg] = ACTIONS(2086), - [anon_sym___deprecated_enum_msg] = ACTIONS(2086), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2086), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2086), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2086), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2086), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2086), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2086), - [anon_sym_ATimplementation] = ACTIONS(2088), - [anon_sym_typeof] = ACTIONS(2086), - [anon_sym___typeof] = ACTIONS(2086), - [anon_sym___typeof__] = ACTIONS(2086), - [sym_self] = ACTIONS(2086), - [sym_super] = ACTIONS(2086), - [sym_nil] = ACTIONS(2086), - [sym_id] = ACTIONS(2086), - [sym_instancetype] = ACTIONS(2086), - [sym_Class] = ACTIONS(2086), - [sym_SEL] = ACTIONS(2086), - [sym_IMP] = ACTIONS(2086), - [sym_BOOL] = ACTIONS(2086), - [sym_auto] = ACTIONS(2086), - [anon_sym_ATautoreleasepool] = ACTIONS(2088), - [anon_sym_ATsynchronized] = ACTIONS(2088), - [anon_sym_ATtry] = ACTIONS(2088), - [anon_sym_ATthrow] = ACTIONS(2088), - [anon_sym_ATselector] = ACTIONS(2088), - [anon_sym_ATencode] = ACTIONS(2088), - [anon_sym_AT] = ACTIONS(2086), - [sym_YES] = ACTIONS(2086), - [sym_NO] = ACTIONS(2086), - [anon_sym___builtin_available] = ACTIONS(2086), - [anon_sym_ATavailable] = ACTIONS(2088), - [anon_sym_va_arg] = ACTIONS(2086), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1459] = { - [sym_identifier] = ACTIONS(2038), - [aux_sym_preproc_include_token1] = ACTIONS(2040), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2038), - [aux_sym_preproc_if_token2] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2038), - [anon_sym___cdecl] = ACTIONS(2038), - [anon_sym___clrcall] = ACTIONS(2038), - [anon_sym___stdcall] = ACTIONS(2038), - [anon_sym___fastcall] = ACTIONS(2038), - [anon_sym___thiscall] = ACTIONS(2038), - [anon_sym___vectorcall] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_auto] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_in] = ACTIONS(2038), - [anon_sym_out] = ACTIONS(2038), - [anon_sym_inout] = ACTIONS(2038), - [anon_sym_bycopy] = ACTIONS(2038), - [anon_sym_byref] = ACTIONS(2038), - [anon_sym_oneway] = ACTIONS(2038), - [anon_sym__Nullable] = ACTIONS(2038), - [anon_sym__Nonnull] = ACTIONS(2038), - [anon_sym__Nullable_result] = ACTIONS(2038), - [anon_sym__Null_unspecified] = ACTIONS(2038), - [anon_sym___autoreleasing] = ACTIONS(2038), - [anon_sym___nullable] = ACTIONS(2038), - [anon_sym___nonnull] = ACTIONS(2038), - [anon_sym___strong] = ACTIONS(2038), - [anon_sym___weak] = ACTIONS(2038), - [anon_sym___bridge] = ACTIONS(2038), - [anon_sym___bridge_transfer] = ACTIONS(2038), - [anon_sym___bridge_retained] = ACTIONS(2038), - [anon_sym___unsafe_unretained] = ACTIONS(2038), - [anon_sym___block] = ACTIONS(2038), - [anon_sym___kindof] = ACTIONS(2038), - [anon_sym___unused] = ACTIONS(2038), - [anon_sym__Complex] = ACTIONS(2038), - [anon_sym___complex] = ACTIONS(2038), - [anon_sym_IBOutlet] = ACTIONS(2038), - [anon_sym_IBInspectable] = ACTIONS(2038), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2038), - [anon_sym_signed] = ACTIONS(2038), - [anon_sym_unsigned] = ACTIONS(2038), - [anon_sym_long] = ACTIONS(2038), - [anon_sym_short] = ACTIONS(2038), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_NS_ENUM] = ACTIONS(2038), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2038), - [anon_sym_NS_OPTIONS] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_goto] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_sizeof] = ACTIONS(2038), - [sym_number_literal] = ACTIONS(2040), - [anon_sym_L_SQUOTE] = ACTIONS(2040), - [anon_sym_u_SQUOTE] = ACTIONS(2040), - [anon_sym_U_SQUOTE] = ACTIONS(2040), - [anon_sym_u8_SQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_L_DQUOTE] = ACTIONS(2040), - [anon_sym_u_DQUOTE] = ACTIONS(2040), - [anon_sym_U_DQUOTE] = ACTIONS(2040), - [anon_sym_u8_DQUOTE] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [sym_null] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2040), - [anon_sym_ATimport] = ACTIONS(2040), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2038), - [anon_sym_ATcompatibility_alias] = ACTIONS(2040), - [anon_sym_ATprotocol] = ACTIONS(2040), - [anon_sym_ATclass] = ACTIONS(2040), - [anon_sym_ATinterface] = ACTIONS(2040), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2038), - [sym_method_attribute_specifier] = ACTIONS(2038), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2038), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE] = ACTIONS(2038), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_API_AVAILABLE] = ACTIONS(2038), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_API_DEPRECATED] = ACTIONS(2038), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2038), - [anon_sym___deprecated_msg] = ACTIONS(2038), - [anon_sym___deprecated_enum_msg] = ACTIONS(2038), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2038), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2038), - [anon_sym_ATimplementation] = ACTIONS(2040), - [anon_sym_typeof] = ACTIONS(2038), - [anon_sym___typeof] = ACTIONS(2038), - [anon_sym___typeof__] = ACTIONS(2038), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_nil] = ACTIONS(2038), - [sym_id] = ACTIONS(2038), - [sym_instancetype] = ACTIONS(2038), - [sym_Class] = ACTIONS(2038), - [sym_SEL] = ACTIONS(2038), - [sym_IMP] = ACTIONS(2038), - [sym_BOOL] = ACTIONS(2038), - [sym_auto] = ACTIONS(2038), - [anon_sym_ATautoreleasepool] = ACTIONS(2040), - [anon_sym_ATsynchronized] = ACTIONS(2040), - [anon_sym_ATtry] = ACTIONS(2040), - [anon_sym_ATthrow] = ACTIONS(2040), - [anon_sym_ATselector] = ACTIONS(2040), - [anon_sym_ATencode] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2038), - [sym_YES] = ACTIONS(2038), - [sym_NO] = ACTIONS(2038), - [anon_sym___builtin_available] = ACTIONS(2038), - [anon_sym_ATavailable] = ACTIONS(2040), - [anon_sym_va_arg] = ACTIONS(2038), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1460] = { - [sym_identifier] = ACTIONS(2050), - [aux_sym_preproc_include_token1] = ACTIONS(2052), - [aux_sym_preproc_def_token1] = ACTIONS(2052), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_if_token2] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2050), - [anon_sym_LPAREN2] = ACTIONS(2052), - [anon_sym_BANG] = ACTIONS(2052), - [anon_sym_TILDE] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_PLUS] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_typedef] = ACTIONS(2050), - [anon_sym_extern] = ACTIONS(2050), - [anon_sym___attribute] = ACTIONS(2050), - [anon_sym___attribute__] = ACTIONS(2050), - [anon_sym___declspec] = ACTIONS(2050), - [anon_sym___cdecl] = ACTIONS(2050), - [anon_sym___clrcall] = ACTIONS(2050), - [anon_sym___stdcall] = ACTIONS(2050), - [anon_sym___fastcall] = ACTIONS(2050), - [anon_sym___thiscall] = ACTIONS(2050), - [anon_sym___vectorcall] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2050), - [anon_sym_auto] = ACTIONS(2050), - [anon_sym_register] = ACTIONS(2050), - [anon_sym_inline] = ACTIONS(2050), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2050), - [anon_sym_const] = ACTIONS(2050), - [anon_sym_volatile] = ACTIONS(2050), - [anon_sym_restrict] = ACTIONS(2050), - [anon_sym__Atomic] = ACTIONS(2050), - [anon_sym_in] = ACTIONS(2050), - [anon_sym_out] = ACTIONS(2050), - [anon_sym_inout] = ACTIONS(2050), - [anon_sym_bycopy] = ACTIONS(2050), - [anon_sym_byref] = ACTIONS(2050), - [anon_sym_oneway] = ACTIONS(2050), - [anon_sym__Nullable] = ACTIONS(2050), - [anon_sym__Nonnull] = ACTIONS(2050), - [anon_sym__Nullable_result] = ACTIONS(2050), - [anon_sym__Null_unspecified] = ACTIONS(2050), - [anon_sym___autoreleasing] = ACTIONS(2050), - [anon_sym___nullable] = ACTIONS(2050), - [anon_sym___nonnull] = ACTIONS(2050), - [anon_sym___strong] = ACTIONS(2050), - [anon_sym___weak] = ACTIONS(2050), - [anon_sym___bridge] = ACTIONS(2050), - [anon_sym___bridge_transfer] = ACTIONS(2050), - [anon_sym___bridge_retained] = ACTIONS(2050), - [anon_sym___unsafe_unretained] = ACTIONS(2050), - [anon_sym___block] = ACTIONS(2050), - [anon_sym___kindof] = ACTIONS(2050), - [anon_sym___unused] = ACTIONS(2050), - [anon_sym__Complex] = ACTIONS(2050), - [anon_sym___complex] = ACTIONS(2050), - [anon_sym_IBOutlet] = ACTIONS(2050), - [anon_sym_IBInspectable] = ACTIONS(2050), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2050), - [anon_sym_signed] = ACTIONS(2050), - [anon_sym_unsigned] = ACTIONS(2050), - [anon_sym_long] = ACTIONS(2050), - [anon_sym_short] = ACTIONS(2050), - [sym_primitive_type] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2050), - [anon_sym_NS_ENUM] = ACTIONS(2050), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2050), - [anon_sym_NS_OPTIONS] = ACTIONS(2050), - [anon_sym_struct] = ACTIONS(2050), - [anon_sym_union] = ACTIONS(2050), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_switch] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(2050), - [anon_sym_default] = ACTIONS(2050), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2050), - [anon_sym_break] = ACTIONS(2050), - [anon_sym_continue] = ACTIONS(2050), - [anon_sym_goto] = ACTIONS(2050), - [anon_sym_DASH_DASH] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(2052), - [anon_sym_sizeof] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2052), - [anon_sym_u_SQUOTE] = ACTIONS(2052), - [anon_sym_U_SQUOTE] = ACTIONS(2052), - [anon_sym_u8_SQUOTE] = ACTIONS(2052), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_L_DQUOTE] = ACTIONS(2052), - [anon_sym_u_DQUOTE] = ACTIONS(2052), - [anon_sym_U_DQUOTE] = ACTIONS(2052), - [anon_sym_u8_DQUOTE] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(2052), - [sym_true] = ACTIONS(2050), - [sym_false] = ACTIONS(2050), - [sym_null] = ACTIONS(2050), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2052), - [anon_sym_ATimport] = ACTIONS(2052), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2050), - [anon_sym_ATcompatibility_alias] = ACTIONS(2052), - [anon_sym_ATprotocol] = ACTIONS(2052), - [anon_sym_ATclass] = ACTIONS(2052), - [anon_sym_ATinterface] = ACTIONS(2052), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2050), - [sym_method_attribute_specifier] = ACTIONS(2050), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2050), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE] = ACTIONS(2050), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_API_AVAILABLE] = ACTIONS(2050), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_API_DEPRECATED] = ACTIONS(2050), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2050), - [anon_sym___deprecated_msg] = ACTIONS(2050), - [anon_sym___deprecated_enum_msg] = ACTIONS(2050), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2050), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2050), - [anon_sym_ATimplementation] = ACTIONS(2052), - [anon_sym_typeof] = ACTIONS(2050), - [anon_sym___typeof] = ACTIONS(2050), - [anon_sym___typeof__] = ACTIONS(2050), - [sym_self] = ACTIONS(2050), - [sym_super] = ACTIONS(2050), - [sym_nil] = ACTIONS(2050), - [sym_id] = ACTIONS(2050), - [sym_instancetype] = ACTIONS(2050), - [sym_Class] = ACTIONS(2050), - [sym_SEL] = ACTIONS(2050), - [sym_IMP] = ACTIONS(2050), - [sym_BOOL] = ACTIONS(2050), - [sym_auto] = ACTIONS(2050), - [anon_sym_ATautoreleasepool] = ACTIONS(2052), - [anon_sym_ATsynchronized] = ACTIONS(2052), - [anon_sym_ATtry] = ACTIONS(2052), - [anon_sym_ATthrow] = ACTIONS(2052), - [anon_sym_ATselector] = ACTIONS(2052), - [anon_sym_ATencode] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2050), - [sym_YES] = ACTIONS(2050), - [sym_NO] = ACTIONS(2050), - [anon_sym___builtin_available] = ACTIONS(2050), - [anon_sym_ATavailable] = ACTIONS(2052), - [anon_sym_va_arg] = ACTIONS(2050), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1461] = { - [sym_identifier] = ACTIONS(2050), - [aux_sym_preproc_include_token1] = ACTIONS(2052), - [aux_sym_preproc_def_token1] = ACTIONS(2052), - [aux_sym_preproc_if_token1] = ACTIONS(2050), - [aux_sym_preproc_if_token2] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2050), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2050), - [anon_sym_LPAREN2] = ACTIONS(2052), - [anon_sym_BANG] = ACTIONS(2052), - [anon_sym_TILDE] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2050), - [anon_sym_PLUS] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2052), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_typedef] = ACTIONS(2050), - [anon_sym_extern] = ACTIONS(2050), - [anon_sym___attribute] = ACTIONS(2050), - [anon_sym___attribute__] = ACTIONS(2050), - [anon_sym___declspec] = ACTIONS(2050), - [anon_sym___cdecl] = ACTIONS(2050), - [anon_sym___clrcall] = ACTIONS(2050), - [anon_sym___stdcall] = ACTIONS(2050), - [anon_sym___fastcall] = ACTIONS(2050), - [anon_sym___thiscall] = ACTIONS(2050), - [anon_sym___vectorcall] = ACTIONS(2050), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2050), - [anon_sym_auto] = ACTIONS(2050), - [anon_sym_register] = ACTIONS(2050), - [anon_sym_inline] = ACTIONS(2050), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2050), - [anon_sym_const] = ACTIONS(2050), - [anon_sym_volatile] = ACTIONS(2050), - [anon_sym_restrict] = ACTIONS(2050), - [anon_sym__Atomic] = ACTIONS(2050), - [anon_sym_in] = ACTIONS(2050), - [anon_sym_out] = ACTIONS(2050), - [anon_sym_inout] = ACTIONS(2050), - [anon_sym_bycopy] = ACTIONS(2050), - [anon_sym_byref] = ACTIONS(2050), - [anon_sym_oneway] = ACTIONS(2050), - [anon_sym__Nullable] = ACTIONS(2050), - [anon_sym__Nonnull] = ACTIONS(2050), - [anon_sym__Nullable_result] = ACTIONS(2050), - [anon_sym__Null_unspecified] = ACTIONS(2050), - [anon_sym___autoreleasing] = ACTIONS(2050), - [anon_sym___nullable] = ACTIONS(2050), - [anon_sym___nonnull] = ACTIONS(2050), - [anon_sym___strong] = ACTIONS(2050), - [anon_sym___weak] = ACTIONS(2050), - [anon_sym___bridge] = ACTIONS(2050), - [anon_sym___bridge_transfer] = ACTIONS(2050), - [anon_sym___bridge_retained] = ACTIONS(2050), - [anon_sym___unsafe_unretained] = ACTIONS(2050), - [anon_sym___block] = ACTIONS(2050), - [anon_sym___kindof] = ACTIONS(2050), - [anon_sym___unused] = ACTIONS(2050), - [anon_sym__Complex] = ACTIONS(2050), - [anon_sym___complex] = ACTIONS(2050), - [anon_sym_IBOutlet] = ACTIONS(2050), - [anon_sym_IBInspectable] = ACTIONS(2050), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2050), - [anon_sym_signed] = ACTIONS(2050), - [anon_sym_unsigned] = ACTIONS(2050), - [anon_sym_long] = ACTIONS(2050), - [anon_sym_short] = ACTIONS(2050), - [sym_primitive_type] = ACTIONS(2050), - [anon_sym_enum] = ACTIONS(2050), - [anon_sym_NS_ENUM] = ACTIONS(2050), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2050), - [anon_sym_NS_OPTIONS] = ACTIONS(2050), - [anon_sym_struct] = ACTIONS(2050), - [anon_sym_union] = ACTIONS(2050), - [anon_sym_if] = ACTIONS(2050), - [anon_sym_switch] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(2050), - [anon_sym_default] = ACTIONS(2050), - [anon_sym_while] = ACTIONS(2050), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_for] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2050), - [anon_sym_break] = ACTIONS(2050), - [anon_sym_continue] = ACTIONS(2050), - [anon_sym_goto] = ACTIONS(2050), - [anon_sym_DASH_DASH] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(2052), - [anon_sym_sizeof] = ACTIONS(2050), - [sym_number_literal] = ACTIONS(2052), - [anon_sym_L_SQUOTE] = ACTIONS(2052), - [anon_sym_u_SQUOTE] = ACTIONS(2052), - [anon_sym_U_SQUOTE] = ACTIONS(2052), - [anon_sym_u8_SQUOTE] = ACTIONS(2052), - [anon_sym_SQUOTE] = ACTIONS(2052), - [anon_sym_L_DQUOTE] = ACTIONS(2052), - [anon_sym_u_DQUOTE] = ACTIONS(2052), - [anon_sym_U_DQUOTE] = ACTIONS(2052), - [anon_sym_u8_DQUOTE] = ACTIONS(2052), - [anon_sym_DQUOTE] = ACTIONS(2052), - [sym_true] = ACTIONS(2050), - [sym_false] = ACTIONS(2050), - [sym_null] = ACTIONS(2050), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2052), - [anon_sym_ATimport] = ACTIONS(2052), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2050), - [anon_sym_ATcompatibility_alias] = ACTIONS(2052), - [anon_sym_ATprotocol] = ACTIONS(2052), - [anon_sym_ATclass] = ACTIONS(2052), - [anon_sym_ATinterface] = ACTIONS(2052), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2050), - [sym_method_attribute_specifier] = ACTIONS(2050), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2050), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2050), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE] = ACTIONS(2050), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2050), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_API_AVAILABLE] = ACTIONS(2050), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_API_DEPRECATED] = ACTIONS(2050), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2050), - [anon_sym___deprecated_msg] = ACTIONS(2050), - [anon_sym___deprecated_enum_msg] = ACTIONS(2050), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2050), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2050), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2050), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2050), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2050), - [anon_sym_ATimplementation] = ACTIONS(2052), - [anon_sym_typeof] = ACTIONS(2050), - [anon_sym___typeof] = ACTIONS(2050), - [anon_sym___typeof__] = ACTIONS(2050), - [sym_self] = ACTIONS(2050), - [sym_super] = ACTIONS(2050), - [sym_nil] = ACTIONS(2050), - [sym_id] = ACTIONS(2050), - [sym_instancetype] = ACTIONS(2050), - [sym_Class] = ACTIONS(2050), - [sym_SEL] = ACTIONS(2050), - [sym_IMP] = ACTIONS(2050), - [sym_BOOL] = ACTIONS(2050), - [sym_auto] = ACTIONS(2050), - [anon_sym_ATautoreleasepool] = ACTIONS(2052), - [anon_sym_ATsynchronized] = ACTIONS(2052), - [anon_sym_ATtry] = ACTIONS(2052), - [anon_sym_ATthrow] = ACTIONS(2052), - [anon_sym_ATselector] = ACTIONS(2052), - [anon_sym_ATencode] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2050), - [sym_YES] = ACTIONS(2050), - [sym_NO] = ACTIONS(2050), - [anon_sym___builtin_available] = ACTIONS(2050), - [anon_sym_ATavailable] = ACTIONS(2052), - [anon_sym_va_arg] = ACTIONS(2050), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1462] = { - [sym_identifier] = ACTIONS(1950), - [aux_sym_preproc_include_token1] = ACTIONS(1952), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [aux_sym_preproc_if_token1] = ACTIONS(1950), - [aux_sym_preproc_if_token2] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), - [anon_sym_LPAREN2] = ACTIONS(1952), - [anon_sym_BANG] = ACTIONS(1952), - [anon_sym_TILDE] = ACTIONS(1952), - [anon_sym_DASH] = ACTIONS(1950), - [anon_sym_PLUS] = ACTIONS(1950), - [anon_sym_STAR] = ACTIONS(1952), - [anon_sym_CARET] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1952), - [anon_sym_typedef] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(1950), - [anon_sym___attribute] = ACTIONS(1950), - [anon_sym___attribute__] = ACTIONS(1950), - [anon_sym___declspec] = ACTIONS(1950), - [anon_sym___cdecl] = ACTIONS(1950), - [anon_sym___clrcall] = ACTIONS(1950), - [anon_sym___stdcall] = ACTIONS(1950), - [anon_sym___fastcall] = ACTIONS(1950), - [anon_sym___thiscall] = ACTIONS(1950), - [anon_sym___vectorcall] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1952), - [anon_sym_static] = ACTIONS(1950), - [anon_sym_auto] = ACTIONS(1950), - [anon_sym_register] = ACTIONS(1950), - [anon_sym_inline] = ACTIONS(1950), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1950), - [anon_sym_const] = ACTIONS(1950), - [anon_sym_volatile] = ACTIONS(1950), - [anon_sym_restrict] = ACTIONS(1950), - [anon_sym__Atomic] = ACTIONS(1950), - [anon_sym_in] = ACTIONS(1950), - [anon_sym_out] = ACTIONS(1950), - [anon_sym_inout] = ACTIONS(1950), - [anon_sym_bycopy] = ACTIONS(1950), - [anon_sym_byref] = ACTIONS(1950), - [anon_sym_oneway] = ACTIONS(1950), - [anon_sym__Nullable] = ACTIONS(1950), - [anon_sym__Nonnull] = ACTIONS(1950), - [anon_sym__Nullable_result] = ACTIONS(1950), - [anon_sym__Null_unspecified] = ACTIONS(1950), - [anon_sym___autoreleasing] = ACTIONS(1950), - [anon_sym___nullable] = ACTIONS(1950), - [anon_sym___nonnull] = ACTIONS(1950), - [anon_sym___strong] = ACTIONS(1950), - [anon_sym___weak] = ACTIONS(1950), - [anon_sym___bridge] = ACTIONS(1950), - [anon_sym___bridge_transfer] = ACTIONS(1950), - [anon_sym___bridge_retained] = ACTIONS(1950), - [anon_sym___unsafe_unretained] = ACTIONS(1950), - [anon_sym___block] = ACTIONS(1950), - [anon_sym___kindof] = ACTIONS(1950), - [anon_sym___unused] = ACTIONS(1950), - [anon_sym__Complex] = ACTIONS(1950), - [anon_sym___complex] = ACTIONS(1950), - [anon_sym_IBOutlet] = ACTIONS(1950), - [anon_sym_IBInspectable] = ACTIONS(1950), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1950), - [anon_sym_signed] = ACTIONS(1950), - [anon_sym_unsigned] = ACTIONS(1950), - [anon_sym_long] = ACTIONS(1950), - [anon_sym_short] = ACTIONS(1950), - [sym_primitive_type] = ACTIONS(1950), - [anon_sym_enum] = ACTIONS(1950), - [anon_sym_NS_ENUM] = ACTIONS(1950), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1950), - [anon_sym_NS_OPTIONS] = ACTIONS(1950), - [anon_sym_struct] = ACTIONS(1950), - [anon_sym_union] = ACTIONS(1950), - [anon_sym_if] = ACTIONS(1950), - [anon_sym_switch] = ACTIONS(1950), - [anon_sym_case] = ACTIONS(1950), - [anon_sym_default] = ACTIONS(1950), - [anon_sym_while] = ACTIONS(1950), - [anon_sym_do] = ACTIONS(1950), - [anon_sym_for] = ACTIONS(1950), - [anon_sym_return] = ACTIONS(1950), - [anon_sym_break] = ACTIONS(1950), - [anon_sym_continue] = ACTIONS(1950), - [anon_sym_goto] = ACTIONS(1950), - [anon_sym_DASH_DASH] = ACTIONS(1952), - [anon_sym_PLUS_PLUS] = ACTIONS(1952), - [anon_sym_sizeof] = ACTIONS(1950), - [sym_number_literal] = ACTIONS(1952), - [anon_sym_L_SQUOTE] = ACTIONS(1952), - [anon_sym_u_SQUOTE] = ACTIONS(1952), - [anon_sym_U_SQUOTE] = ACTIONS(1952), - [anon_sym_u8_SQUOTE] = ACTIONS(1952), - [anon_sym_SQUOTE] = ACTIONS(1952), - [anon_sym_L_DQUOTE] = ACTIONS(1952), - [anon_sym_u_DQUOTE] = ACTIONS(1952), - [anon_sym_U_DQUOTE] = ACTIONS(1952), - [anon_sym_u8_DQUOTE] = ACTIONS(1952), - [anon_sym_DQUOTE] = ACTIONS(1952), - [sym_true] = ACTIONS(1950), - [sym_false] = ACTIONS(1950), - [sym_null] = ACTIONS(1950), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1952), - [anon_sym_ATimport] = ACTIONS(1952), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1950), - [anon_sym_ATcompatibility_alias] = ACTIONS(1952), - [anon_sym_ATprotocol] = ACTIONS(1952), - [anon_sym_ATclass] = ACTIONS(1952), - [anon_sym_ATinterface] = ACTIONS(1952), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1950), - [sym_method_attribute_specifier] = ACTIONS(1950), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1950), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1950), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1950), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1950), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1950), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1950), - [anon_sym_NS_AVAILABLE] = ACTIONS(1950), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1950), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1950), - [anon_sym_API_AVAILABLE] = ACTIONS(1950), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1950), - [anon_sym_API_DEPRECATED] = ACTIONS(1950), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1950), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1950), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1950), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1950), - [anon_sym___deprecated_msg] = ACTIONS(1950), - [anon_sym___deprecated_enum_msg] = ACTIONS(1950), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1950), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1950), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1950), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1950), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1950), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1950), - [anon_sym_ATimplementation] = ACTIONS(1952), - [anon_sym_typeof] = ACTIONS(1950), - [anon_sym___typeof] = ACTIONS(1950), - [anon_sym___typeof__] = ACTIONS(1950), - [sym_self] = ACTIONS(1950), - [sym_super] = ACTIONS(1950), - [sym_nil] = ACTIONS(1950), - [sym_id] = ACTIONS(1950), - [sym_instancetype] = ACTIONS(1950), - [sym_Class] = ACTIONS(1950), - [sym_SEL] = ACTIONS(1950), - [sym_IMP] = ACTIONS(1950), - [sym_BOOL] = ACTIONS(1950), - [sym_auto] = ACTIONS(1950), - [anon_sym_ATautoreleasepool] = ACTIONS(1952), - [anon_sym_ATsynchronized] = ACTIONS(1952), - [anon_sym_ATtry] = ACTIONS(1952), - [anon_sym_ATthrow] = ACTIONS(1952), - [anon_sym_ATselector] = ACTIONS(1952), - [anon_sym_ATencode] = ACTIONS(1952), - [anon_sym_AT] = ACTIONS(1950), - [sym_YES] = ACTIONS(1950), - [sym_NO] = ACTIONS(1950), - [anon_sym___builtin_available] = ACTIONS(1950), - [anon_sym_ATavailable] = ACTIONS(1952), - [anon_sym_va_arg] = ACTIONS(1950), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1463] = { - [sym_identifier] = ACTIONS(1882), - [aux_sym_preproc_include_token1] = ACTIONS(1884), - [aux_sym_preproc_def_token1] = ACTIONS(1884), - [aux_sym_preproc_if_token1] = ACTIONS(1882), - [aux_sym_preproc_if_token2] = ACTIONS(1882), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1882), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1882), - [anon_sym_LPAREN2] = ACTIONS(1884), - [anon_sym_BANG] = ACTIONS(1884), - [anon_sym_TILDE] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_PLUS] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1884), - [anon_sym_CARET] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_typedef] = ACTIONS(1882), - [anon_sym_extern] = ACTIONS(1882), - [anon_sym___attribute] = ACTIONS(1882), - [anon_sym___attribute__] = ACTIONS(1882), - [anon_sym___declspec] = ACTIONS(1882), - [anon_sym___cdecl] = ACTIONS(1882), - [anon_sym___clrcall] = ACTIONS(1882), - [anon_sym___stdcall] = ACTIONS(1882), - [anon_sym___fastcall] = ACTIONS(1882), - [anon_sym___thiscall] = ACTIONS(1882), - [anon_sym___vectorcall] = ACTIONS(1882), - [anon_sym_LBRACE] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1882), - [anon_sym_auto] = ACTIONS(1882), - [anon_sym_register] = ACTIONS(1882), - [anon_sym_inline] = ACTIONS(1882), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1882), - [anon_sym_const] = ACTIONS(1882), - [anon_sym_volatile] = ACTIONS(1882), - [anon_sym_restrict] = ACTIONS(1882), - [anon_sym__Atomic] = ACTIONS(1882), - [anon_sym_in] = ACTIONS(1882), - [anon_sym_out] = ACTIONS(1882), - [anon_sym_inout] = ACTIONS(1882), - [anon_sym_bycopy] = ACTIONS(1882), - [anon_sym_byref] = ACTIONS(1882), - [anon_sym_oneway] = ACTIONS(1882), - [anon_sym__Nullable] = ACTIONS(1882), - [anon_sym__Nonnull] = ACTIONS(1882), - [anon_sym__Nullable_result] = ACTIONS(1882), - [anon_sym__Null_unspecified] = ACTIONS(1882), - [anon_sym___autoreleasing] = ACTIONS(1882), - [anon_sym___nullable] = ACTIONS(1882), - [anon_sym___nonnull] = ACTIONS(1882), - [anon_sym___strong] = ACTIONS(1882), - [anon_sym___weak] = ACTIONS(1882), - [anon_sym___bridge] = ACTIONS(1882), - [anon_sym___bridge_transfer] = ACTIONS(1882), - [anon_sym___bridge_retained] = ACTIONS(1882), - [anon_sym___unsafe_unretained] = ACTIONS(1882), - [anon_sym___block] = ACTIONS(1882), - [anon_sym___kindof] = ACTIONS(1882), - [anon_sym___unused] = ACTIONS(1882), - [anon_sym__Complex] = ACTIONS(1882), - [anon_sym___complex] = ACTIONS(1882), - [anon_sym_IBOutlet] = ACTIONS(1882), - [anon_sym_IBInspectable] = ACTIONS(1882), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1882), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [sym_primitive_type] = ACTIONS(1882), - [anon_sym_enum] = ACTIONS(1882), - [anon_sym_NS_ENUM] = ACTIONS(1882), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1882), - [anon_sym_NS_OPTIONS] = ACTIONS(1882), - [anon_sym_struct] = ACTIONS(1882), - [anon_sym_union] = ACTIONS(1882), - [anon_sym_if] = ACTIONS(1882), - [anon_sym_switch] = ACTIONS(1882), - [anon_sym_case] = ACTIONS(1882), - [anon_sym_default] = ACTIONS(1882), - [anon_sym_while] = ACTIONS(1882), - [anon_sym_do] = ACTIONS(1882), - [anon_sym_for] = ACTIONS(1882), - [anon_sym_return] = ACTIONS(1882), - [anon_sym_break] = ACTIONS(1882), - [anon_sym_continue] = ACTIONS(1882), - [anon_sym_goto] = ACTIONS(1882), - [anon_sym_DASH_DASH] = ACTIONS(1884), - [anon_sym_PLUS_PLUS] = ACTIONS(1884), - [anon_sym_sizeof] = ACTIONS(1882), - [sym_number_literal] = ACTIONS(1884), - [anon_sym_L_SQUOTE] = ACTIONS(1884), - [anon_sym_u_SQUOTE] = ACTIONS(1884), - [anon_sym_U_SQUOTE] = ACTIONS(1884), - [anon_sym_u8_SQUOTE] = ACTIONS(1884), - [anon_sym_SQUOTE] = ACTIONS(1884), - [anon_sym_L_DQUOTE] = ACTIONS(1884), - [anon_sym_u_DQUOTE] = ACTIONS(1884), - [anon_sym_U_DQUOTE] = ACTIONS(1884), - [anon_sym_u8_DQUOTE] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [sym_true] = ACTIONS(1882), - [sym_false] = ACTIONS(1882), - [sym_null] = ACTIONS(1882), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1884), - [anon_sym_ATimport] = ACTIONS(1884), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1882), - [anon_sym_ATcompatibility_alias] = ACTIONS(1884), - [anon_sym_ATprotocol] = ACTIONS(1884), - [anon_sym_ATclass] = ACTIONS(1884), - [anon_sym_ATinterface] = ACTIONS(1884), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1882), - [sym_method_attribute_specifier] = ACTIONS(1882), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1882), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1882), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1882), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1882), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1882), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1882), - [anon_sym_NS_AVAILABLE] = ACTIONS(1882), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1882), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1882), - [anon_sym_API_AVAILABLE] = ACTIONS(1882), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1882), - [anon_sym_API_DEPRECATED] = ACTIONS(1882), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1882), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1882), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1882), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1882), - [anon_sym___deprecated_msg] = ACTIONS(1882), - [anon_sym___deprecated_enum_msg] = ACTIONS(1882), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1882), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1882), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1882), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1882), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1882), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1882), - [anon_sym_ATimplementation] = ACTIONS(1884), - [anon_sym_typeof] = ACTIONS(1882), - [anon_sym___typeof] = ACTIONS(1882), - [anon_sym___typeof__] = ACTIONS(1882), - [sym_self] = ACTIONS(1882), - [sym_super] = ACTIONS(1882), - [sym_nil] = ACTIONS(1882), - [sym_id] = ACTIONS(1882), - [sym_instancetype] = ACTIONS(1882), - [sym_Class] = ACTIONS(1882), - [sym_SEL] = ACTIONS(1882), - [sym_IMP] = ACTIONS(1882), - [sym_BOOL] = ACTIONS(1882), - [sym_auto] = ACTIONS(1882), - [anon_sym_ATautoreleasepool] = ACTIONS(1884), - [anon_sym_ATsynchronized] = ACTIONS(1884), - [anon_sym_ATtry] = ACTIONS(1884), - [anon_sym_ATthrow] = ACTIONS(1884), - [anon_sym_ATselector] = ACTIONS(1884), - [anon_sym_ATencode] = ACTIONS(1884), - [anon_sym_AT] = ACTIONS(1882), - [sym_YES] = ACTIONS(1882), - [sym_NO] = ACTIONS(1882), - [anon_sym___builtin_available] = ACTIONS(1882), - [anon_sym_ATavailable] = ACTIONS(1884), - [anon_sym_va_arg] = ACTIONS(1882), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1464] = { - [sym_identifier] = ACTIONS(2074), - [aux_sym_preproc_include_token1] = ACTIONS(2076), - [aux_sym_preproc_def_token1] = ACTIONS(2076), - [aux_sym_preproc_if_token1] = ACTIONS(2074), - [aux_sym_preproc_if_token2] = ACTIONS(2074), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), - [anon_sym_LPAREN2] = ACTIONS(2076), - [anon_sym_BANG] = ACTIONS(2076), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2074), - [anon_sym_PLUS] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_typedef] = ACTIONS(2074), - [anon_sym_extern] = ACTIONS(2074), - [anon_sym___attribute] = ACTIONS(2074), - [anon_sym___attribute__] = ACTIONS(2074), - [anon_sym___declspec] = ACTIONS(2074), - [anon_sym___cdecl] = ACTIONS(2074), - [anon_sym___clrcall] = ACTIONS(2074), - [anon_sym___stdcall] = ACTIONS(2074), - [anon_sym___fastcall] = ACTIONS(2074), - [anon_sym___thiscall] = ACTIONS(2074), - [anon_sym___vectorcall] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_static] = ACTIONS(2074), - [anon_sym_auto] = ACTIONS(2074), - [anon_sym_register] = ACTIONS(2074), - [anon_sym_inline] = ACTIONS(2074), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2074), - [anon_sym_const] = ACTIONS(2074), - [anon_sym_volatile] = ACTIONS(2074), - [anon_sym_restrict] = ACTIONS(2074), - [anon_sym__Atomic] = ACTIONS(2074), - [anon_sym_in] = ACTIONS(2074), - [anon_sym_out] = ACTIONS(2074), - [anon_sym_inout] = ACTIONS(2074), - [anon_sym_bycopy] = ACTIONS(2074), - [anon_sym_byref] = ACTIONS(2074), - [anon_sym_oneway] = ACTIONS(2074), - [anon_sym__Nullable] = ACTIONS(2074), - [anon_sym__Nonnull] = ACTIONS(2074), - [anon_sym__Nullable_result] = ACTIONS(2074), - [anon_sym__Null_unspecified] = ACTIONS(2074), - [anon_sym___autoreleasing] = ACTIONS(2074), - [anon_sym___nullable] = ACTIONS(2074), - [anon_sym___nonnull] = ACTIONS(2074), - [anon_sym___strong] = ACTIONS(2074), - [anon_sym___weak] = ACTIONS(2074), - [anon_sym___bridge] = ACTIONS(2074), - [anon_sym___bridge_transfer] = ACTIONS(2074), - [anon_sym___bridge_retained] = ACTIONS(2074), - [anon_sym___unsafe_unretained] = ACTIONS(2074), - [anon_sym___block] = ACTIONS(2074), - [anon_sym___kindof] = ACTIONS(2074), - [anon_sym___unused] = ACTIONS(2074), - [anon_sym__Complex] = ACTIONS(2074), - [anon_sym___complex] = ACTIONS(2074), - [anon_sym_IBOutlet] = ACTIONS(2074), - [anon_sym_IBInspectable] = ACTIONS(2074), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2074), - [anon_sym_signed] = ACTIONS(2074), - [anon_sym_unsigned] = ACTIONS(2074), - [anon_sym_long] = ACTIONS(2074), - [anon_sym_short] = ACTIONS(2074), - [sym_primitive_type] = ACTIONS(2074), - [anon_sym_enum] = ACTIONS(2074), - [anon_sym_NS_ENUM] = ACTIONS(2074), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2074), - [anon_sym_NS_OPTIONS] = ACTIONS(2074), - [anon_sym_struct] = ACTIONS(2074), - [anon_sym_union] = ACTIONS(2074), - [anon_sym_if] = ACTIONS(2074), - [anon_sym_switch] = ACTIONS(2074), - [anon_sym_case] = ACTIONS(2074), - [anon_sym_default] = ACTIONS(2074), - [anon_sym_while] = ACTIONS(2074), - [anon_sym_do] = ACTIONS(2074), - [anon_sym_for] = ACTIONS(2074), - [anon_sym_return] = ACTIONS(2074), - [anon_sym_break] = ACTIONS(2074), - [anon_sym_continue] = ACTIONS(2074), - [anon_sym_goto] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_sizeof] = ACTIONS(2074), - [sym_number_literal] = ACTIONS(2076), - [anon_sym_L_SQUOTE] = ACTIONS(2076), - [anon_sym_u_SQUOTE] = ACTIONS(2076), - [anon_sym_U_SQUOTE] = ACTIONS(2076), - [anon_sym_u8_SQUOTE] = ACTIONS(2076), - [anon_sym_SQUOTE] = ACTIONS(2076), - [anon_sym_L_DQUOTE] = ACTIONS(2076), - [anon_sym_u_DQUOTE] = ACTIONS(2076), - [anon_sym_U_DQUOTE] = ACTIONS(2076), - [anon_sym_u8_DQUOTE] = ACTIONS(2076), - [anon_sym_DQUOTE] = ACTIONS(2076), - [sym_true] = ACTIONS(2074), - [sym_false] = ACTIONS(2074), - [sym_null] = ACTIONS(2074), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2076), - [anon_sym_ATimport] = ACTIONS(2076), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2074), - [anon_sym_ATcompatibility_alias] = ACTIONS(2076), - [anon_sym_ATprotocol] = ACTIONS(2076), - [anon_sym_ATclass] = ACTIONS(2076), - [anon_sym_ATinterface] = ACTIONS(2076), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2074), - [sym_method_attribute_specifier] = ACTIONS(2074), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2074), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2074), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2074), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2074), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2074), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2074), - [anon_sym_NS_AVAILABLE] = ACTIONS(2074), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2074), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2074), - [anon_sym_API_AVAILABLE] = ACTIONS(2074), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2074), - [anon_sym_API_DEPRECATED] = ACTIONS(2074), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2074), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2074), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2074), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2074), - [anon_sym___deprecated_msg] = ACTIONS(2074), - [anon_sym___deprecated_enum_msg] = ACTIONS(2074), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2074), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2074), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2074), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2074), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2074), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2074), - [anon_sym_ATimplementation] = ACTIONS(2076), - [anon_sym_typeof] = ACTIONS(2074), - [anon_sym___typeof] = ACTIONS(2074), - [anon_sym___typeof__] = ACTIONS(2074), - [sym_self] = ACTIONS(2074), - [sym_super] = ACTIONS(2074), - [sym_nil] = ACTIONS(2074), - [sym_id] = ACTIONS(2074), - [sym_instancetype] = ACTIONS(2074), - [sym_Class] = ACTIONS(2074), - [sym_SEL] = ACTIONS(2074), - [sym_IMP] = ACTIONS(2074), - [sym_BOOL] = ACTIONS(2074), - [sym_auto] = ACTIONS(2074), - [anon_sym_ATautoreleasepool] = ACTIONS(2076), - [anon_sym_ATsynchronized] = ACTIONS(2076), - [anon_sym_ATtry] = ACTIONS(2076), - [anon_sym_ATthrow] = ACTIONS(2076), - [anon_sym_ATselector] = ACTIONS(2076), - [anon_sym_ATencode] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2074), - [sym_YES] = ACTIONS(2074), - [sym_NO] = ACTIONS(2074), - [anon_sym___builtin_available] = ACTIONS(2074), - [anon_sym_ATavailable] = ACTIONS(2076), - [anon_sym_va_arg] = ACTIONS(2074), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1465] = { - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_include_token1] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [aux_sym_preproc_if_token2] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym___attribute] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym___declspec] = ACTIONS(1994), - [anon_sym___cdecl] = ACTIONS(1994), - [anon_sym___clrcall] = ACTIONS(1994), - [anon_sym___stdcall] = ACTIONS(1994), - [anon_sym___fastcall] = ACTIONS(1994), - [anon_sym___thiscall] = ACTIONS(1994), - [anon_sym___vectorcall] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_in] = ACTIONS(1994), - [anon_sym_out] = ACTIONS(1994), - [anon_sym_inout] = ACTIONS(1994), - [anon_sym_bycopy] = ACTIONS(1994), - [anon_sym_byref] = ACTIONS(1994), - [anon_sym_oneway] = ACTIONS(1994), - [anon_sym__Nullable] = ACTIONS(1994), - [anon_sym__Nonnull] = ACTIONS(1994), - [anon_sym__Nullable_result] = ACTIONS(1994), - [anon_sym__Null_unspecified] = ACTIONS(1994), - [anon_sym___autoreleasing] = ACTIONS(1994), - [anon_sym___nullable] = ACTIONS(1994), - [anon_sym___nonnull] = ACTIONS(1994), - [anon_sym___strong] = ACTIONS(1994), - [anon_sym___weak] = ACTIONS(1994), - [anon_sym___bridge] = ACTIONS(1994), - [anon_sym___bridge_transfer] = ACTIONS(1994), - [anon_sym___bridge_retained] = ACTIONS(1994), - [anon_sym___unsafe_unretained] = ACTIONS(1994), - [anon_sym___block] = ACTIONS(1994), - [anon_sym___kindof] = ACTIONS(1994), - [anon_sym___unused] = ACTIONS(1994), - [anon_sym__Complex] = ACTIONS(1994), - [anon_sym___complex] = ACTIONS(1994), - [anon_sym_IBOutlet] = ACTIONS(1994), - [anon_sym_IBInspectable] = ACTIONS(1994), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_NS_ENUM] = ACTIONS(1994), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1994), - [anon_sym_NS_OPTIONS] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_case] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym_u_SQUOTE] = ACTIONS(1996), - [anon_sym_U_SQUOTE] = ACTIONS(1996), - [anon_sym_u8_SQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_u_DQUOTE] = ACTIONS(1996), - [anon_sym_U_DQUOTE] = ACTIONS(1996), - [anon_sym_u8_DQUOTE] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1996), - [anon_sym_ATimport] = ACTIONS(1996), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1994), - [anon_sym_ATcompatibility_alias] = ACTIONS(1996), - [anon_sym_ATprotocol] = ACTIONS(1996), - [anon_sym_ATclass] = ACTIONS(1996), - [anon_sym_ATinterface] = ACTIONS(1996), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1994), - [sym_method_attribute_specifier] = ACTIONS(1994), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1994), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE] = ACTIONS(1994), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_API_AVAILABLE] = ACTIONS(1994), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_API_DEPRECATED] = ACTIONS(1994), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1994), - [anon_sym___deprecated_msg] = ACTIONS(1994), - [anon_sym___deprecated_enum_msg] = ACTIONS(1994), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1994), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1994), - [anon_sym_ATimplementation] = ACTIONS(1996), - [anon_sym_typeof] = ACTIONS(1994), - [anon_sym___typeof] = ACTIONS(1994), - [anon_sym___typeof__] = ACTIONS(1994), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_nil] = ACTIONS(1994), - [sym_id] = ACTIONS(1994), - [sym_instancetype] = ACTIONS(1994), - [sym_Class] = ACTIONS(1994), - [sym_SEL] = ACTIONS(1994), - [sym_IMP] = ACTIONS(1994), - [sym_BOOL] = ACTIONS(1994), - [sym_auto] = ACTIONS(1994), - [anon_sym_ATautoreleasepool] = ACTIONS(1996), - [anon_sym_ATsynchronized] = ACTIONS(1996), - [anon_sym_ATtry] = ACTIONS(1996), - [anon_sym_ATthrow] = ACTIONS(1996), - [anon_sym_ATselector] = ACTIONS(1996), - [anon_sym_ATencode] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1994), - [sym_YES] = ACTIONS(1994), - [sym_NO] = ACTIONS(1994), - [anon_sym___builtin_available] = ACTIONS(1994), - [anon_sym_ATavailable] = ACTIONS(1996), - [anon_sym_va_arg] = ACTIONS(1994), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1466] = { - [sym_identifier] = ACTIONS(2094), - [aux_sym_preproc_include_token1] = ACTIONS(2096), - [aux_sym_preproc_def_token1] = ACTIONS(2096), - [aux_sym_preproc_if_token1] = ACTIONS(2094), - [aux_sym_preproc_if_token2] = ACTIONS(2094), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2094), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2094), - [anon_sym_LPAREN2] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_TILDE] = ACTIONS(2096), - [anon_sym_DASH] = ACTIONS(2094), - [anon_sym_PLUS] = ACTIONS(2094), - [anon_sym_STAR] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_typedef] = ACTIONS(2094), - [anon_sym_extern] = ACTIONS(2094), - [anon_sym___attribute] = ACTIONS(2094), - [anon_sym___attribute__] = ACTIONS(2094), - [anon_sym___declspec] = ACTIONS(2094), - [anon_sym___cdecl] = ACTIONS(2094), - [anon_sym___clrcall] = ACTIONS(2094), - [anon_sym___stdcall] = ACTIONS(2094), - [anon_sym___fastcall] = ACTIONS(2094), - [anon_sym___thiscall] = ACTIONS(2094), - [anon_sym___vectorcall] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_static] = ACTIONS(2094), - [anon_sym_auto] = ACTIONS(2094), - [anon_sym_register] = ACTIONS(2094), - [anon_sym_inline] = ACTIONS(2094), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2094), - [anon_sym_const] = ACTIONS(2094), - [anon_sym_volatile] = ACTIONS(2094), - [anon_sym_restrict] = ACTIONS(2094), - [anon_sym__Atomic] = ACTIONS(2094), - [anon_sym_in] = ACTIONS(2094), - [anon_sym_out] = ACTIONS(2094), - [anon_sym_inout] = ACTIONS(2094), - [anon_sym_bycopy] = ACTIONS(2094), - [anon_sym_byref] = ACTIONS(2094), - [anon_sym_oneway] = ACTIONS(2094), - [anon_sym__Nullable] = ACTIONS(2094), - [anon_sym__Nonnull] = ACTIONS(2094), - [anon_sym__Nullable_result] = ACTIONS(2094), - [anon_sym__Null_unspecified] = ACTIONS(2094), - [anon_sym___autoreleasing] = ACTIONS(2094), - [anon_sym___nullable] = ACTIONS(2094), - [anon_sym___nonnull] = ACTIONS(2094), - [anon_sym___strong] = ACTIONS(2094), - [anon_sym___weak] = ACTIONS(2094), - [anon_sym___bridge] = ACTIONS(2094), - [anon_sym___bridge_transfer] = ACTIONS(2094), - [anon_sym___bridge_retained] = ACTIONS(2094), - [anon_sym___unsafe_unretained] = ACTIONS(2094), - [anon_sym___block] = ACTIONS(2094), - [anon_sym___kindof] = ACTIONS(2094), - [anon_sym___unused] = ACTIONS(2094), - [anon_sym__Complex] = ACTIONS(2094), - [anon_sym___complex] = ACTIONS(2094), - [anon_sym_IBOutlet] = ACTIONS(2094), - [anon_sym_IBInspectable] = ACTIONS(2094), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2094), - [anon_sym_signed] = ACTIONS(2094), - [anon_sym_unsigned] = ACTIONS(2094), - [anon_sym_long] = ACTIONS(2094), - [anon_sym_short] = ACTIONS(2094), - [sym_primitive_type] = ACTIONS(2094), - [anon_sym_enum] = ACTIONS(2094), - [anon_sym_NS_ENUM] = ACTIONS(2094), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2094), - [anon_sym_NS_OPTIONS] = ACTIONS(2094), - [anon_sym_struct] = ACTIONS(2094), - [anon_sym_union] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2094), - [anon_sym_switch] = ACTIONS(2094), - [anon_sym_case] = ACTIONS(2094), - [anon_sym_default] = ACTIONS(2094), - [anon_sym_while] = ACTIONS(2094), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2094), - [anon_sym_return] = ACTIONS(2094), - [anon_sym_break] = ACTIONS(2094), - [anon_sym_continue] = ACTIONS(2094), - [anon_sym_goto] = ACTIONS(2094), - [anon_sym_DASH_DASH] = ACTIONS(2096), - [anon_sym_PLUS_PLUS] = ACTIONS(2096), - [anon_sym_sizeof] = ACTIONS(2094), - [sym_number_literal] = ACTIONS(2096), - [anon_sym_L_SQUOTE] = ACTIONS(2096), - [anon_sym_u_SQUOTE] = ACTIONS(2096), - [anon_sym_U_SQUOTE] = ACTIONS(2096), - [anon_sym_u8_SQUOTE] = ACTIONS(2096), - [anon_sym_SQUOTE] = ACTIONS(2096), - [anon_sym_L_DQUOTE] = ACTIONS(2096), - [anon_sym_u_DQUOTE] = ACTIONS(2096), - [anon_sym_U_DQUOTE] = ACTIONS(2096), - [anon_sym_u8_DQUOTE] = ACTIONS(2096), - [anon_sym_DQUOTE] = ACTIONS(2096), - [sym_true] = ACTIONS(2094), - [sym_false] = ACTIONS(2094), - [sym_null] = ACTIONS(2094), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2096), - [anon_sym_ATimport] = ACTIONS(2096), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2094), - [anon_sym_ATcompatibility_alias] = ACTIONS(2096), - [anon_sym_ATprotocol] = ACTIONS(2096), - [anon_sym_ATclass] = ACTIONS(2096), - [anon_sym_ATinterface] = ACTIONS(2096), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2094), - [sym_method_attribute_specifier] = ACTIONS(2094), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2094), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2094), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2094), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2094), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2094), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2094), - [anon_sym_NS_AVAILABLE] = ACTIONS(2094), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2094), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2094), - [anon_sym_API_AVAILABLE] = ACTIONS(2094), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2094), - [anon_sym_API_DEPRECATED] = ACTIONS(2094), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2094), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2094), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2094), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2094), - [anon_sym___deprecated_msg] = ACTIONS(2094), - [anon_sym___deprecated_enum_msg] = ACTIONS(2094), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2094), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2094), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2094), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2094), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2094), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2094), - [anon_sym_ATimplementation] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(2094), - [anon_sym___typeof] = ACTIONS(2094), - [anon_sym___typeof__] = ACTIONS(2094), - [sym_self] = ACTIONS(2094), - [sym_super] = ACTIONS(2094), - [sym_nil] = ACTIONS(2094), - [sym_id] = ACTIONS(2094), - [sym_instancetype] = ACTIONS(2094), - [sym_Class] = ACTIONS(2094), - [sym_SEL] = ACTIONS(2094), - [sym_IMP] = ACTIONS(2094), - [sym_BOOL] = ACTIONS(2094), - [sym_auto] = ACTIONS(2094), - [anon_sym_ATautoreleasepool] = ACTIONS(2096), - [anon_sym_ATsynchronized] = ACTIONS(2096), - [anon_sym_ATtry] = ACTIONS(2096), - [anon_sym_ATthrow] = ACTIONS(2096), - [anon_sym_ATselector] = ACTIONS(2096), - [anon_sym_ATencode] = ACTIONS(2096), - [anon_sym_AT] = ACTIONS(2094), - [sym_YES] = ACTIONS(2094), - [sym_NO] = ACTIONS(2094), - [anon_sym___builtin_available] = ACTIONS(2094), - [anon_sym_ATavailable] = ACTIONS(2096), - [anon_sym_va_arg] = ACTIONS(2094), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1467] = { - [sym_identifier] = ACTIONS(2098), - [aux_sym_preproc_include_token1] = ACTIONS(2100), - [aux_sym_preproc_def_token1] = ACTIONS(2100), - [aux_sym_preproc_if_token1] = ACTIONS(2098), - [aux_sym_preproc_if_token2] = ACTIONS(2098), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2098), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2098), - [anon_sym_LPAREN2] = ACTIONS(2100), - [anon_sym_BANG] = ACTIONS(2100), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_DASH] = ACTIONS(2098), - [anon_sym_PLUS] = ACTIONS(2098), - [anon_sym_STAR] = ACTIONS(2100), - [anon_sym_CARET] = ACTIONS(2100), - [anon_sym_AMP] = ACTIONS(2100), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_typedef] = ACTIONS(2098), - [anon_sym_extern] = ACTIONS(2098), - [anon_sym___attribute] = ACTIONS(2098), - [anon_sym___attribute__] = ACTIONS(2098), - [anon_sym___declspec] = ACTIONS(2098), - [anon_sym___cdecl] = ACTIONS(2098), - [anon_sym___clrcall] = ACTIONS(2098), - [anon_sym___stdcall] = ACTIONS(2098), - [anon_sym___fastcall] = ACTIONS(2098), - [anon_sym___thiscall] = ACTIONS(2098), - [anon_sym___vectorcall] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LBRACK] = ACTIONS(2100), - [anon_sym_static] = ACTIONS(2098), - [anon_sym_auto] = ACTIONS(2098), - [anon_sym_register] = ACTIONS(2098), - [anon_sym_inline] = ACTIONS(2098), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2098), - [anon_sym_const] = ACTIONS(2098), - [anon_sym_volatile] = ACTIONS(2098), - [anon_sym_restrict] = ACTIONS(2098), - [anon_sym__Atomic] = ACTIONS(2098), - [anon_sym_in] = ACTIONS(2098), - [anon_sym_out] = ACTIONS(2098), - [anon_sym_inout] = ACTIONS(2098), - [anon_sym_bycopy] = ACTIONS(2098), - [anon_sym_byref] = ACTIONS(2098), - [anon_sym_oneway] = ACTIONS(2098), - [anon_sym__Nullable] = ACTIONS(2098), - [anon_sym__Nonnull] = ACTIONS(2098), - [anon_sym__Nullable_result] = ACTIONS(2098), - [anon_sym__Null_unspecified] = ACTIONS(2098), - [anon_sym___autoreleasing] = ACTIONS(2098), - [anon_sym___nullable] = ACTIONS(2098), - [anon_sym___nonnull] = ACTIONS(2098), - [anon_sym___strong] = ACTIONS(2098), - [anon_sym___weak] = ACTIONS(2098), - [anon_sym___bridge] = ACTIONS(2098), - [anon_sym___bridge_transfer] = ACTIONS(2098), - [anon_sym___bridge_retained] = ACTIONS(2098), - [anon_sym___unsafe_unretained] = ACTIONS(2098), - [anon_sym___block] = ACTIONS(2098), - [anon_sym___kindof] = ACTIONS(2098), - [anon_sym___unused] = ACTIONS(2098), - [anon_sym__Complex] = ACTIONS(2098), - [anon_sym___complex] = ACTIONS(2098), - [anon_sym_IBOutlet] = ACTIONS(2098), - [anon_sym_IBInspectable] = ACTIONS(2098), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2098), - [anon_sym_signed] = ACTIONS(2098), - [anon_sym_unsigned] = ACTIONS(2098), - [anon_sym_long] = ACTIONS(2098), - [anon_sym_short] = ACTIONS(2098), - [sym_primitive_type] = ACTIONS(2098), - [anon_sym_enum] = ACTIONS(2098), - [anon_sym_NS_ENUM] = ACTIONS(2098), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2098), - [anon_sym_NS_OPTIONS] = ACTIONS(2098), - [anon_sym_struct] = ACTIONS(2098), - [anon_sym_union] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2098), - [anon_sym_switch] = ACTIONS(2098), - [anon_sym_case] = ACTIONS(2098), - [anon_sym_default] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2098), - [anon_sym_do] = ACTIONS(2098), - [anon_sym_for] = ACTIONS(2098), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2098), - [anon_sym_continue] = ACTIONS(2098), - [anon_sym_goto] = ACTIONS(2098), - [anon_sym_DASH_DASH] = ACTIONS(2100), - [anon_sym_PLUS_PLUS] = ACTIONS(2100), - [anon_sym_sizeof] = ACTIONS(2098), - [sym_number_literal] = ACTIONS(2100), - [anon_sym_L_SQUOTE] = ACTIONS(2100), - [anon_sym_u_SQUOTE] = ACTIONS(2100), - [anon_sym_U_SQUOTE] = ACTIONS(2100), - [anon_sym_u8_SQUOTE] = ACTIONS(2100), - [anon_sym_SQUOTE] = ACTIONS(2100), - [anon_sym_L_DQUOTE] = ACTIONS(2100), - [anon_sym_u_DQUOTE] = ACTIONS(2100), - [anon_sym_U_DQUOTE] = ACTIONS(2100), - [anon_sym_u8_DQUOTE] = ACTIONS(2100), - [anon_sym_DQUOTE] = ACTIONS(2100), - [sym_true] = ACTIONS(2098), - [sym_false] = ACTIONS(2098), - [sym_null] = ACTIONS(2098), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2100), - [anon_sym_ATimport] = ACTIONS(2100), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2098), - [anon_sym_ATcompatibility_alias] = ACTIONS(2100), - [anon_sym_ATprotocol] = ACTIONS(2100), - [anon_sym_ATclass] = ACTIONS(2100), - [anon_sym_ATinterface] = ACTIONS(2100), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2098), - [sym_method_attribute_specifier] = ACTIONS(2098), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2098), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2098), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2098), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2098), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2098), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2098), - [anon_sym_NS_AVAILABLE] = ACTIONS(2098), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2098), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2098), - [anon_sym_API_AVAILABLE] = ACTIONS(2098), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2098), - [anon_sym_API_DEPRECATED] = ACTIONS(2098), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2098), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2098), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2098), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2098), - [anon_sym___deprecated_msg] = ACTIONS(2098), - [anon_sym___deprecated_enum_msg] = ACTIONS(2098), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2098), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2098), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2098), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2098), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2098), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2098), - [anon_sym_ATimplementation] = ACTIONS(2100), - [anon_sym_typeof] = ACTIONS(2098), - [anon_sym___typeof] = ACTIONS(2098), - [anon_sym___typeof__] = ACTIONS(2098), - [sym_self] = ACTIONS(2098), - [sym_super] = ACTIONS(2098), - [sym_nil] = ACTIONS(2098), - [sym_id] = ACTIONS(2098), - [sym_instancetype] = ACTIONS(2098), - [sym_Class] = ACTIONS(2098), - [sym_SEL] = ACTIONS(2098), - [sym_IMP] = ACTIONS(2098), - [sym_BOOL] = ACTIONS(2098), - [sym_auto] = ACTIONS(2098), - [anon_sym_ATautoreleasepool] = ACTIONS(2100), - [anon_sym_ATsynchronized] = ACTIONS(2100), - [anon_sym_ATtry] = ACTIONS(2100), - [anon_sym_ATthrow] = ACTIONS(2100), - [anon_sym_ATselector] = ACTIONS(2100), - [anon_sym_ATencode] = ACTIONS(2100), - [anon_sym_AT] = ACTIONS(2098), - [sym_YES] = ACTIONS(2098), - [sym_NO] = ACTIONS(2098), - [anon_sym___builtin_available] = ACTIONS(2098), - [anon_sym_ATavailable] = ACTIONS(2100), - [anon_sym_va_arg] = ACTIONS(2098), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1468] = { - [sym_identifier] = ACTIONS(2102), - [aux_sym_preproc_include_token1] = ACTIONS(2104), - [aux_sym_preproc_def_token1] = ACTIONS(2104), - [aux_sym_preproc_if_token1] = ACTIONS(2102), - [aux_sym_preproc_if_token2] = ACTIONS(2102), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2102), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2102), - [anon_sym_LPAREN2] = ACTIONS(2104), - [anon_sym_BANG] = ACTIONS(2104), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2102), - [anon_sym_PLUS] = ACTIONS(2102), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2104), - [anon_sym_AMP] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_typedef] = ACTIONS(2102), - [anon_sym_extern] = ACTIONS(2102), - [anon_sym___attribute] = ACTIONS(2102), - [anon_sym___attribute__] = ACTIONS(2102), - [anon_sym___declspec] = ACTIONS(2102), - [anon_sym___cdecl] = ACTIONS(2102), - [anon_sym___clrcall] = ACTIONS(2102), - [anon_sym___stdcall] = ACTIONS(2102), - [anon_sym___fastcall] = ACTIONS(2102), - [anon_sym___thiscall] = ACTIONS(2102), - [anon_sym___vectorcall] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2104), - [anon_sym_static] = ACTIONS(2102), - [anon_sym_auto] = ACTIONS(2102), - [anon_sym_register] = ACTIONS(2102), - [anon_sym_inline] = ACTIONS(2102), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2102), - [anon_sym_const] = ACTIONS(2102), - [anon_sym_volatile] = ACTIONS(2102), - [anon_sym_restrict] = ACTIONS(2102), - [anon_sym__Atomic] = ACTIONS(2102), - [anon_sym_in] = ACTIONS(2102), - [anon_sym_out] = ACTIONS(2102), - [anon_sym_inout] = ACTIONS(2102), - [anon_sym_bycopy] = ACTIONS(2102), - [anon_sym_byref] = ACTIONS(2102), - [anon_sym_oneway] = ACTIONS(2102), - [anon_sym__Nullable] = ACTIONS(2102), - [anon_sym__Nonnull] = ACTIONS(2102), - [anon_sym__Nullable_result] = ACTIONS(2102), - [anon_sym__Null_unspecified] = ACTIONS(2102), - [anon_sym___autoreleasing] = ACTIONS(2102), - [anon_sym___nullable] = ACTIONS(2102), - [anon_sym___nonnull] = ACTIONS(2102), - [anon_sym___strong] = ACTIONS(2102), - [anon_sym___weak] = ACTIONS(2102), - [anon_sym___bridge] = ACTIONS(2102), - [anon_sym___bridge_transfer] = ACTIONS(2102), - [anon_sym___bridge_retained] = ACTIONS(2102), - [anon_sym___unsafe_unretained] = ACTIONS(2102), - [anon_sym___block] = ACTIONS(2102), - [anon_sym___kindof] = ACTIONS(2102), - [anon_sym___unused] = ACTIONS(2102), - [anon_sym__Complex] = ACTIONS(2102), - [anon_sym___complex] = ACTIONS(2102), - [anon_sym_IBOutlet] = ACTIONS(2102), - [anon_sym_IBInspectable] = ACTIONS(2102), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2102), - [anon_sym_signed] = ACTIONS(2102), - [anon_sym_unsigned] = ACTIONS(2102), - [anon_sym_long] = ACTIONS(2102), - [anon_sym_short] = ACTIONS(2102), - [sym_primitive_type] = ACTIONS(2102), - [anon_sym_enum] = ACTIONS(2102), - [anon_sym_NS_ENUM] = ACTIONS(2102), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2102), - [anon_sym_NS_OPTIONS] = ACTIONS(2102), - [anon_sym_struct] = ACTIONS(2102), - [anon_sym_union] = ACTIONS(2102), - [anon_sym_if] = ACTIONS(2102), - [anon_sym_switch] = ACTIONS(2102), - [anon_sym_case] = ACTIONS(2102), - [anon_sym_default] = ACTIONS(2102), - [anon_sym_while] = ACTIONS(2102), - [anon_sym_do] = ACTIONS(2102), - [anon_sym_for] = ACTIONS(2102), - [anon_sym_return] = ACTIONS(2102), - [anon_sym_break] = ACTIONS(2102), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_goto] = ACTIONS(2102), - [anon_sym_DASH_DASH] = ACTIONS(2104), - [anon_sym_PLUS_PLUS] = ACTIONS(2104), - [anon_sym_sizeof] = ACTIONS(2102), - [sym_number_literal] = ACTIONS(2104), - [anon_sym_L_SQUOTE] = ACTIONS(2104), - [anon_sym_u_SQUOTE] = ACTIONS(2104), - [anon_sym_U_SQUOTE] = ACTIONS(2104), - [anon_sym_u8_SQUOTE] = ACTIONS(2104), - [anon_sym_SQUOTE] = ACTIONS(2104), - [anon_sym_L_DQUOTE] = ACTIONS(2104), - [anon_sym_u_DQUOTE] = ACTIONS(2104), - [anon_sym_U_DQUOTE] = ACTIONS(2104), - [anon_sym_u8_DQUOTE] = ACTIONS(2104), - [anon_sym_DQUOTE] = ACTIONS(2104), - [sym_true] = ACTIONS(2102), - [sym_false] = ACTIONS(2102), - [sym_null] = ACTIONS(2102), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2104), - [anon_sym_ATimport] = ACTIONS(2104), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2102), - [anon_sym_ATcompatibility_alias] = ACTIONS(2104), - [anon_sym_ATprotocol] = ACTIONS(2104), - [anon_sym_ATclass] = ACTIONS(2104), - [anon_sym_ATinterface] = ACTIONS(2104), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2102), - [sym_method_attribute_specifier] = ACTIONS(2102), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2102), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2102), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2102), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2102), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2102), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2102), - [anon_sym_NS_AVAILABLE] = ACTIONS(2102), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2102), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2102), - [anon_sym_API_AVAILABLE] = ACTIONS(2102), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2102), - [anon_sym_API_DEPRECATED] = ACTIONS(2102), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2102), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2102), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2102), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2102), - [anon_sym___deprecated_msg] = ACTIONS(2102), - [anon_sym___deprecated_enum_msg] = ACTIONS(2102), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2102), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2102), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2102), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2102), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2102), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2102), - [anon_sym_ATimplementation] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2102), - [anon_sym___typeof] = ACTIONS(2102), - [anon_sym___typeof__] = ACTIONS(2102), - [sym_self] = ACTIONS(2102), - [sym_super] = ACTIONS(2102), - [sym_nil] = ACTIONS(2102), - [sym_id] = ACTIONS(2102), - [sym_instancetype] = ACTIONS(2102), - [sym_Class] = ACTIONS(2102), - [sym_SEL] = ACTIONS(2102), - [sym_IMP] = ACTIONS(2102), - [sym_BOOL] = ACTIONS(2102), - [sym_auto] = ACTIONS(2102), - [anon_sym_ATautoreleasepool] = ACTIONS(2104), - [anon_sym_ATsynchronized] = ACTIONS(2104), - [anon_sym_ATtry] = ACTIONS(2104), - [anon_sym_ATthrow] = ACTIONS(2104), - [anon_sym_ATselector] = ACTIONS(2104), - [anon_sym_ATencode] = ACTIONS(2104), - [anon_sym_AT] = ACTIONS(2102), - [sym_YES] = ACTIONS(2102), - [sym_NO] = ACTIONS(2102), - [anon_sym___builtin_available] = ACTIONS(2102), - [anon_sym_ATavailable] = ACTIONS(2104), - [anon_sym_va_arg] = ACTIONS(2102), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1469] = { - [sym_identifier] = ACTIONS(1774), - [aux_sym_preproc_include_token1] = ACTIONS(1776), - [aux_sym_preproc_def_token1] = ACTIONS(1776), - [aux_sym_preproc_if_token1] = ACTIONS(1774), - [aux_sym_preproc_if_token2] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_typedef] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym___attribute] = ACTIONS(1774), - [anon_sym___attribute__] = ACTIONS(1774), - [anon_sym___declspec] = ACTIONS(1774), - [anon_sym___cdecl] = ACTIONS(1774), - [anon_sym___clrcall] = ACTIONS(1774), - [anon_sym___stdcall] = ACTIONS(1774), - [anon_sym___fastcall] = ACTIONS(1774), - [anon_sym___thiscall] = ACTIONS(1774), - [anon_sym___vectorcall] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_auto] = ACTIONS(1774), - [anon_sym_register] = ACTIONS(1774), - [anon_sym_inline] = ACTIONS(1774), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_out] = ACTIONS(1774), - [anon_sym_inout] = ACTIONS(1774), - [anon_sym_bycopy] = ACTIONS(1774), - [anon_sym_byref] = ACTIONS(1774), - [anon_sym_oneway] = ACTIONS(1774), - [anon_sym__Nullable] = ACTIONS(1774), - [anon_sym__Nonnull] = ACTIONS(1774), - [anon_sym__Nullable_result] = ACTIONS(1774), - [anon_sym__Null_unspecified] = ACTIONS(1774), - [anon_sym___autoreleasing] = ACTIONS(1774), - [anon_sym___nullable] = ACTIONS(1774), - [anon_sym___nonnull] = ACTIONS(1774), - [anon_sym___strong] = ACTIONS(1774), - [anon_sym___weak] = ACTIONS(1774), - [anon_sym___bridge] = ACTIONS(1774), - [anon_sym___bridge_transfer] = ACTIONS(1774), - [anon_sym___bridge_retained] = ACTIONS(1774), - [anon_sym___unsafe_unretained] = ACTIONS(1774), - [anon_sym___block] = ACTIONS(1774), - [anon_sym___kindof] = ACTIONS(1774), - [anon_sym___unused] = ACTIONS(1774), - [anon_sym__Complex] = ACTIONS(1774), - [anon_sym___complex] = ACTIONS(1774), - [anon_sym_IBOutlet] = ACTIONS(1774), - [anon_sym_IBInspectable] = ACTIONS(1774), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1774), - [anon_sym_signed] = ACTIONS(1774), - [anon_sym_unsigned] = ACTIONS(1774), - [anon_sym_long] = ACTIONS(1774), - [anon_sym_short] = ACTIONS(1774), - [sym_primitive_type] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_NS_ENUM] = ACTIONS(1774), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1774), - [anon_sym_NS_OPTIONS] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1774), - [anon_sym_case] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_goto] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1776), - [anon_sym_sizeof] = ACTIONS(1774), - [sym_number_literal] = ACTIONS(1776), - [anon_sym_L_SQUOTE] = ACTIONS(1776), - [anon_sym_u_SQUOTE] = ACTIONS(1776), - [anon_sym_U_SQUOTE] = ACTIONS(1776), - [anon_sym_u8_SQUOTE] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_L_DQUOTE] = ACTIONS(1776), - [anon_sym_u_DQUOTE] = ACTIONS(1776), - [anon_sym_U_DQUOTE] = ACTIONS(1776), - [anon_sym_u8_DQUOTE] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym_true] = ACTIONS(1774), - [sym_false] = ACTIONS(1774), - [sym_null] = ACTIONS(1774), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1776), - [anon_sym_ATimport] = ACTIONS(1776), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1774), - [anon_sym_ATcompatibility_alias] = ACTIONS(1776), - [anon_sym_ATprotocol] = ACTIONS(1776), - [anon_sym_ATclass] = ACTIONS(1776), - [anon_sym_ATinterface] = ACTIONS(1776), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1774), - [sym_method_attribute_specifier] = ACTIONS(1774), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1774), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE] = ACTIONS(1774), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_API_AVAILABLE] = ACTIONS(1774), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_API_DEPRECATED] = ACTIONS(1774), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1774), - [anon_sym___deprecated_msg] = ACTIONS(1774), - [anon_sym___deprecated_enum_msg] = ACTIONS(1774), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1774), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1774), - [anon_sym_ATimplementation] = ACTIONS(1776), - [anon_sym_typeof] = ACTIONS(1774), - [anon_sym___typeof] = ACTIONS(1774), - [anon_sym___typeof__] = ACTIONS(1774), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_nil] = ACTIONS(1774), - [sym_id] = ACTIONS(1774), - [sym_instancetype] = ACTIONS(1774), - [sym_Class] = ACTIONS(1774), - [sym_SEL] = ACTIONS(1774), - [sym_IMP] = ACTIONS(1774), - [sym_BOOL] = ACTIONS(1774), - [sym_auto] = ACTIONS(1774), - [anon_sym_ATautoreleasepool] = ACTIONS(1776), - [anon_sym_ATsynchronized] = ACTIONS(1776), - [anon_sym_ATtry] = ACTIONS(1776), - [anon_sym_ATthrow] = ACTIONS(1776), - [anon_sym_ATselector] = ACTIONS(1776), - [anon_sym_ATencode] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1774), - [sym_YES] = ACTIONS(1774), - [sym_NO] = ACTIONS(1774), - [anon_sym___builtin_available] = ACTIONS(1774), - [anon_sym_ATavailable] = ACTIONS(1776), - [anon_sym_va_arg] = ACTIONS(1774), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1470] = { - [sym_identifier] = ACTIONS(2106), - [aux_sym_preproc_include_token1] = ACTIONS(2108), - [aux_sym_preproc_def_token1] = ACTIONS(2108), - [aux_sym_preproc_if_token1] = ACTIONS(2106), - [aux_sym_preproc_if_token2] = ACTIONS(2106), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2106), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2106), - [anon_sym_LPAREN2] = ACTIONS(2108), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_TILDE] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2108), - [anon_sym_CARET] = ACTIONS(2108), - [anon_sym_AMP] = ACTIONS(2108), - [anon_sym_SEMI] = ACTIONS(2108), - [anon_sym_typedef] = ACTIONS(2106), - [anon_sym_extern] = ACTIONS(2106), - [anon_sym___attribute] = ACTIONS(2106), - [anon_sym___attribute__] = ACTIONS(2106), - [anon_sym___declspec] = ACTIONS(2106), - [anon_sym___cdecl] = ACTIONS(2106), - [anon_sym___clrcall] = ACTIONS(2106), - [anon_sym___stdcall] = ACTIONS(2106), - [anon_sym___fastcall] = ACTIONS(2106), - [anon_sym___thiscall] = ACTIONS(2106), - [anon_sym___vectorcall] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(2108), - [anon_sym_static] = ACTIONS(2106), - [anon_sym_auto] = ACTIONS(2106), - [anon_sym_register] = ACTIONS(2106), - [anon_sym_inline] = ACTIONS(2106), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2106), - [anon_sym_const] = ACTIONS(2106), - [anon_sym_volatile] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(2106), - [anon_sym__Atomic] = ACTIONS(2106), - [anon_sym_in] = ACTIONS(2106), - [anon_sym_out] = ACTIONS(2106), - [anon_sym_inout] = ACTIONS(2106), - [anon_sym_bycopy] = ACTIONS(2106), - [anon_sym_byref] = ACTIONS(2106), - [anon_sym_oneway] = ACTIONS(2106), - [anon_sym__Nullable] = ACTIONS(2106), - [anon_sym__Nonnull] = ACTIONS(2106), - [anon_sym__Nullable_result] = ACTIONS(2106), - [anon_sym__Null_unspecified] = ACTIONS(2106), - [anon_sym___autoreleasing] = ACTIONS(2106), - [anon_sym___nullable] = ACTIONS(2106), - [anon_sym___nonnull] = ACTIONS(2106), - [anon_sym___strong] = ACTIONS(2106), - [anon_sym___weak] = ACTIONS(2106), - [anon_sym___bridge] = ACTIONS(2106), - [anon_sym___bridge_transfer] = ACTIONS(2106), - [anon_sym___bridge_retained] = ACTIONS(2106), - [anon_sym___unsafe_unretained] = ACTIONS(2106), - [anon_sym___block] = ACTIONS(2106), - [anon_sym___kindof] = ACTIONS(2106), - [anon_sym___unused] = ACTIONS(2106), - [anon_sym__Complex] = ACTIONS(2106), - [anon_sym___complex] = ACTIONS(2106), - [anon_sym_IBOutlet] = ACTIONS(2106), - [anon_sym_IBInspectable] = ACTIONS(2106), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2106), - [anon_sym_signed] = ACTIONS(2106), - [anon_sym_unsigned] = ACTIONS(2106), - [anon_sym_long] = ACTIONS(2106), - [anon_sym_short] = ACTIONS(2106), - [sym_primitive_type] = ACTIONS(2106), - [anon_sym_enum] = ACTIONS(2106), - [anon_sym_NS_ENUM] = ACTIONS(2106), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2106), - [anon_sym_NS_OPTIONS] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(2106), - [anon_sym_union] = ACTIONS(2106), - [anon_sym_if] = ACTIONS(2106), - [anon_sym_switch] = ACTIONS(2106), - [anon_sym_case] = ACTIONS(2106), - [anon_sym_default] = ACTIONS(2106), - [anon_sym_while] = ACTIONS(2106), - [anon_sym_do] = ACTIONS(2106), - [anon_sym_for] = ACTIONS(2106), - [anon_sym_return] = ACTIONS(2106), - [anon_sym_break] = ACTIONS(2106), - [anon_sym_continue] = ACTIONS(2106), - [anon_sym_goto] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2108), - [anon_sym_PLUS_PLUS] = ACTIONS(2108), - [anon_sym_sizeof] = ACTIONS(2106), - [sym_number_literal] = ACTIONS(2108), - [anon_sym_L_SQUOTE] = ACTIONS(2108), - [anon_sym_u_SQUOTE] = ACTIONS(2108), - [anon_sym_U_SQUOTE] = ACTIONS(2108), - [anon_sym_u8_SQUOTE] = ACTIONS(2108), - [anon_sym_SQUOTE] = ACTIONS(2108), - [anon_sym_L_DQUOTE] = ACTIONS(2108), - [anon_sym_u_DQUOTE] = ACTIONS(2108), - [anon_sym_U_DQUOTE] = ACTIONS(2108), - [anon_sym_u8_DQUOTE] = ACTIONS(2108), - [anon_sym_DQUOTE] = ACTIONS(2108), - [sym_true] = ACTIONS(2106), - [sym_false] = ACTIONS(2106), - [sym_null] = ACTIONS(2106), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2108), - [anon_sym_ATimport] = ACTIONS(2108), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2106), - [anon_sym_ATcompatibility_alias] = ACTIONS(2108), - [anon_sym_ATprotocol] = ACTIONS(2108), - [anon_sym_ATclass] = ACTIONS(2108), - [anon_sym_ATinterface] = ACTIONS(2108), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2106), - [sym_method_attribute_specifier] = ACTIONS(2106), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2106), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2106), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2106), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2106), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2106), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2106), - [anon_sym_NS_AVAILABLE] = ACTIONS(2106), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2106), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2106), - [anon_sym_API_AVAILABLE] = ACTIONS(2106), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2106), - [anon_sym_API_DEPRECATED] = ACTIONS(2106), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2106), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2106), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2106), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2106), - [anon_sym___deprecated_msg] = ACTIONS(2106), - [anon_sym___deprecated_enum_msg] = ACTIONS(2106), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2106), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2106), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2106), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2106), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2106), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2106), - [anon_sym_ATimplementation] = ACTIONS(2108), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym___typeof] = ACTIONS(2106), - [anon_sym___typeof__] = ACTIONS(2106), - [sym_self] = ACTIONS(2106), - [sym_super] = ACTIONS(2106), - [sym_nil] = ACTIONS(2106), - [sym_id] = ACTIONS(2106), - [sym_instancetype] = ACTIONS(2106), - [sym_Class] = ACTIONS(2106), - [sym_SEL] = ACTIONS(2106), - [sym_IMP] = ACTIONS(2106), - [sym_BOOL] = ACTIONS(2106), - [sym_auto] = ACTIONS(2106), - [anon_sym_ATautoreleasepool] = ACTIONS(2108), - [anon_sym_ATsynchronized] = ACTIONS(2108), - [anon_sym_ATtry] = ACTIONS(2108), - [anon_sym_ATthrow] = ACTIONS(2108), - [anon_sym_ATselector] = ACTIONS(2108), - [anon_sym_ATencode] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(2106), - [sym_YES] = ACTIONS(2106), - [sym_NO] = ACTIONS(2106), - [anon_sym___builtin_available] = ACTIONS(2106), - [anon_sym_ATavailable] = ACTIONS(2108), - [anon_sym_va_arg] = ACTIONS(2106), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1471] = { - [sym_identifier] = ACTIONS(2018), - [aux_sym_preproc_include_token1] = ACTIONS(2020), - [aux_sym_preproc_def_token1] = ACTIONS(2020), - [aux_sym_preproc_if_token1] = ACTIONS(2018), - [aux_sym_preproc_if_token2] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2018), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2018), - [anon_sym_LPAREN2] = ACTIONS(2020), - [anon_sym_BANG] = ACTIONS(2020), - [anon_sym_TILDE] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2018), - [anon_sym_PLUS] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_CARET] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2020), - [anon_sym_SEMI] = ACTIONS(2020), - [anon_sym_typedef] = ACTIONS(2018), - [anon_sym_extern] = ACTIONS(2018), - [anon_sym___attribute] = ACTIONS(2018), - [anon_sym___attribute__] = ACTIONS(2018), - [anon_sym___declspec] = ACTIONS(2018), - [anon_sym___cdecl] = ACTIONS(2018), - [anon_sym___clrcall] = ACTIONS(2018), - [anon_sym___stdcall] = ACTIONS(2018), - [anon_sym___fastcall] = ACTIONS(2018), - [anon_sym___thiscall] = ACTIONS(2018), - [anon_sym___vectorcall] = ACTIONS(2018), - [anon_sym_LBRACE] = ACTIONS(2020), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2018), - [anon_sym_auto] = ACTIONS(2018), - [anon_sym_register] = ACTIONS(2018), - [anon_sym_inline] = ACTIONS(2018), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2018), - [anon_sym_const] = ACTIONS(2018), - [anon_sym_volatile] = ACTIONS(2018), - [anon_sym_restrict] = ACTIONS(2018), - [anon_sym__Atomic] = ACTIONS(2018), - [anon_sym_in] = ACTIONS(2018), - [anon_sym_out] = ACTIONS(2018), - [anon_sym_inout] = ACTIONS(2018), - [anon_sym_bycopy] = ACTIONS(2018), - [anon_sym_byref] = ACTIONS(2018), - [anon_sym_oneway] = ACTIONS(2018), - [anon_sym__Nullable] = ACTIONS(2018), - [anon_sym__Nonnull] = ACTIONS(2018), - [anon_sym__Nullable_result] = ACTIONS(2018), - [anon_sym__Null_unspecified] = ACTIONS(2018), - [anon_sym___autoreleasing] = ACTIONS(2018), - [anon_sym___nullable] = ACTIONS(2018), - [anon_sym___nonnull] = ACTIONS(2018), - [anon_sym___strong] = ACTIONS(2018), - [anon_sym___weak] = ACTIONS(2018), - [anon_sym___bridge] = ACTIONS(2018), - [anon_sym___bridge_transfer] = ACTIONS(2018), - [anon_sym___bridge_retained] = ACTIONS(2018), - [anon_sym___unsafe_unretained] = ACTIONS(2018), - [anon_sym___block] = ACTIONS(2018), - [anon_sym___kindof] = ACTIONS(2018), - [anon_sym___unused] = ACTIONS(2018), - [anon_sym__Complex] = ACTIONS(2018), - [anon_sym___complex] = ACTIONS(2018), - [anon_sym_IBOutlet] = ACTIONS(2018), - [anon_sym_IBInspectable] = ACTIONS(2018), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2018), - [anon_sym_signed] = ACTIONS(2018), - [anon_sym_unsigned] = ACTIONS(2018), - [anon_sym_long] = ACTIONS(2018), - [anon_sym_short] = ACTIONS(2018), - [sym_primitive_type] = ACTIONS(2018), - [anon_sym_enum] = ACTIONS(2018), - [anon_sym_NS_ENUM] = ACTIONS(2018), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2018), - [anon_sym_NS_OPTIONS] = ACTIONS(2018), - [anon_sym_struct] = ACTIONS(2018), - [anon_sym_union] = ACTIONS(2018), - [anon_sym_if] = ACTIONS(2018), - [anon_sym_switch] = ACTIONS(2018), - [anon_sym_case] = ACTIONS(2018), - [anon_sym_default] = ACTIONS(2018), - [anon_sym_while] = ACTIONS(2018), - [anon_sym_do] = ACTIONS(2018), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_return] = ACTIONS(2018), - [anon_sym_break] = ACTIONS(2018), - [anon_sym_continue] = ACTIONS(2018), - [anon_sym_goto] = ACTIONS(2018), - [anon_sym_DASH_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2020), - [anon_sym_sizeof] = ACTIONS(2018), - [sym_number_literal] = ACTIONS(2020), - [anon_sym_L_SQUOTE] = ACTIONS(2020), - [anon_sym_u_SQUOTE] = ACTIONS(2020), - [anon_sym_U_SQUOTE] = ACTIONS(2020), - [anon_sym_u8_SQUOTE] = ACTIONS(2020), - [anon_sym_SQUOTE] = ACTIONS(2020), - [anon_sym_L_DQUOTE] = ACTIONS(2020), - [anon_sym_u_DQUOTE] = ACTIONS(2020), - [anon_sym_U_DQUOTE] = ACTIONS(2020), - [anon_sym_u8_DQUOTE] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2020), - [sym_true] = ACTIONS(2018), - [sym_false] = ACTIONS(2018), - [sym_null] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2020), - [anon_sym_ATimport] = ACTIONS(2020), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2018), - [anon_sym_ATcompatibility_alias] = ACTIONS(2020), - [anon_sym_ATprotocol] = ACTIONS(2020), - [anon_sym_ATclass] = ACTIONS(2020), - [anon_sym_ATinterface] = ACTIONS(2020), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2018), - [sym_method_attribute_specifier] = ACTIONS(2018), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2018), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2018), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2018), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2018), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2018), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2018), - [anon_sym_NS_AVAILABLE] = ACTIONS(2018), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2018), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2018), - [anon_sym_API_AVAILABLE] = ACTIONS(2018), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2018), - [anon_sym_API_DEPRECATED] = ACTIONS(2018), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2018), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2018), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2018), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2018), - [anon_sym___deprecated_msg] = ACTIONS(2018), - [anon_sym___deprecated_enum_msg] = ACTIONS(2018), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2018), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2018), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2018), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2018), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2018), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2018), - [anon_sym_ATimplementation] = ACTIONS(2020), - [anon_sym_typeof] = ACTIONS(2018), - [anon_sym___typeof] = ACTIONS(2018), - [anon_sym___typeof__] = ACTIONS(2018), - [sym_self] = ACTIONS(2018), - [sym_super] = ACTIONS(2018), - [sym_nil] = ACTIONS(2018), - [sym_id] = ACTIONS(2018), - [sym_instancetype] = ACTIONS(2018), - [sym_Class] = ACTIONS(2018), - [sym_SEL] = ACTIONS(2018), - [sym_IMP] = ACTIONS(2018), - [sym_BOOL] = ACTIONS(2018), - [sym_auto] = ACTIONS(2018), - [anon_sym_ATautoreleasepool] = ACTIONS(2020), - [anon_sym_ATsynchronized] = ACTIONS(2020), - [anon_sym_ATtry] = ACTIONS(2020), - [anon_sym_ATthrow] = ACTIONS(2020), - [anon_sym_ATselector] = ACTIONS(2020), - [anon_sym_ATencode] = ACTIONS(2020), - [anon_sym_AT] = ACTIONS(2018), - [sym_YES] = ACTIONS(2018), - [sym_NO] = ACTIONS(2018), - [anon_sym___builtin_available] = ACTIONS(2018), - [anon_sym_ATavailable] = ACTIONS(2020), - [anon_sym_va_arg] = ACTIONS(2018), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1472] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1473] = { - [sym_identifier] = ACTIONS(2038), - [aux_sym_preproc_include_token1] = ACTIONS(2040), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2038), - [aux_sym_preproc_if_token2] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2038), - [anon_sym___cdecl] = ACTIONS(2038), - [anon_sym___clrcall] = ACTIONS(2038), - [anon_sym___stdcall] = ACTIONS(2038), - [anon_sym___fastcall] = ACTIONS(2038), - [anon_sym___thiscall] = ACTIONS(2038), - [anon_sym___vectorcall] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_auto] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_in] = ACTIONS(2038), - [anon_sym_out] = ACTIONS(2038), - [anon_sym_inout] = ACTIONS(2038), - [anon_sym_bycopy] = ACTIONS(2038), - [anon_sym_byref] = ACTIONS(2038), - [anon_sym_oneway] = ACTIONS(2038), - [anon_sym__Nullable] = ACTIONS(2038), - [anon_sym__Nonnull] = ACTIONS(2038), - [anon_sym__Nullable_result] = ACTIONS(2038), - [anon_sym__Null_unspecified] = ACTIONS(2038), - [anon_sym___autoreleasing] = ACTIONS(2038), - [anon_sym___nullable] = ACTIONS(2038), - [anon_sym___nonnull] = ACTIONS(2038), - [anon_sym___strong] = ACTIONS(2038), - [anon_sym___weak] = ACTIONS(2038), - [anon_sym___bridge] = ACTIONS(2038), - [anon_sym___bridge_transfer] = ACTIONS(2038), - [anon_sym___bridge_retained] = ACTIONS(2038), - [anon_sym___unsafe_unretained] = ACTIONS(2038), - [anon_sym___block] = ACTIONS(2038), - [anon_sym___kindof] = ACTIONS(2038), - [anon_sym___unused] = ACTIONS(2038), - [anon_sym__Complex] = ACTIONS(2038), - [anon_sym___complex] = ACTIONS(2038), - [anon_sym_IBOutlet] = ACTIONS(2038), - [anon_sym_IBInspectable] = ACTIONS(2038), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2038), - [anon_sym_signed] = ACTIONS(2038), - [anon_sym_unsigned] = ACTIONS(2038), - [anon_sym_long] = ACTIONS(2038), - [anon_sym_short] = ACTIONS(2038), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_NS_ENUM] = ACTIONS(2038), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2038), - [anon_sym_NS_OPTIONS] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_goto] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_sizeof] = ACTIONS(2038), - [sym_number_literal] = ACTIONS(2040), - [anon_sym_L_SQUOTE] = ACTIONS(2040), - [anon_sym_u_SQUOTE] = ACTIONS(2040), - [anon_sym_U_SQUOTE] = ACTIONS(2040), - [anon_sym_u8_SQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_L_DQUOTE] = ACTIONS(2040), - [anon_sym_u_DQUOTE] = ACTIONS(2040), - [anon_sym_U_DQUOTE] = ACTIONS(2040), - [anon_sym_u8_DQUOTE] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [sym_null] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2040), - [anon_sym_ATimport] = ACTIONS(2040), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2038), - [anon_sym_ATcompatibility_alias] = ACTIONS(2040), - [anon_sym_ATprotocol] = ACTIONS(2040), - [anon_sym_ATclass] = ACTIONS(2040), - [anon_sym_ATinterface] = ACTIONS(2040), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2038), - [sym_method_attribute_specifier] = ACTIONS(2038), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2038), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE] = ACTIONS(2038), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_API_AVAILABLE] = ACTIONS(2038), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_API_DEPRECATED] = ACTIONS(2038), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2038), - [anon_sym___deprecated_msg] = ACTIONS(2038), - [anon_sym___deprecated_enum_msg] = ACTIONS(2038), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2038), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2038), - [anon_sym_ATimplementation] = ACTIONS(2040), - [anon_sym_typeof] = ACTIONS(2038), - [anon_sym___typeof] = ACTIONS(2038), - [anon_sym___typeof__] = ACTIONS(2038), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_nil] = ACTIONS(2038), - [sym_id] = ACTIONS(2038), - [sym_instancetype] = ACTIONS(2038), - [sym_Class] = ACTIONS(2038), - [sym_SEL] = ACTIONS(2038), - [sym_IMP] = ACTIONS(2038), - [sym_BOOL] = ACTIONS(2038), - [sym_auto] = ACTIONS(2038), - [anon_sym_ATautoreleasepool] = ACTIONS(2040), - [anon_sym_ATsynchronized] = ACTIONS(2040), - [anon_sym_ATtry] = ACTIONS(2040), - [anon_sym_ATthrow] = ACTIONS(2040), - [anon_sym_ATselector] = ACTIONS(2040), - [anon_sym_ATencode] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2038), - [sym_YES] = ACTIONS(2038), - [sym_NO] = ACTIONS(2038), - [anon_sym___builtin_available] = ACTIONS(2038), - [anon_sym_ATavailable] = ACTIONS(2040), - [anon_sym_va_arg] = ACTIONS(2038), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1474] = { - [sym_identifier] = ACTIONS(2014), - [aux_sym_preproc_include_token1] = ACTIONS(2016), - [aux_sym_preproc_def_token1] = ACTIONS(2016), - [aux_sym_preproc_if_token1] = ACTIONS(2014), - [aux_sym_preproc_if_token2] = ACTIONS(2014), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2014), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(2016), - [anon_sym_BANG] = ACTIONS(2016), - [anon_sym_TILDE] = ACTIONS(2016), - [anon_sym_DASH] = ACTIONS(2014), - [anon_sym_PLUS] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2016), - [anon_sym_CARET] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2016), - [anon_sym_SEMI] = ACTIONS(2016), - [anon_sym_typedef] = ACTIONS(2014), - [anon_sym_extern] = ACTIONS(2014), - [anon_sym___attribute] = ACTIONS(2014), - [anon_sym___attribute__] = ACTIONS(2014), - [anon_sym___declspec] = ACTIONS(2014), - [anon_sym___cdecl] = ACTIONS(2014), - [anon_sym___clrcall] = ACTIONS(2014), - [anon_sym___stdcall] = ACTIONS(2014), - [anon_sym___fastcall] = ACTIONS(2014), - [anon_sym___thiscall] = ACTIONS(2014), - [anon_sym___vectorcall] = ACTIONS(2014), - [anon_sym_LBRACE] = ACTIONS(2016), - [anon_sym_LBRACK] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2014), - [anon_sym_auto] = ACTIONS(2014), - [anon_sym_register] = ACTIONS(2014), - [anon_sym_inline] = ACTIONS(2014), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2014), - [anon_sym_const] = ACTIONS(2014), - [anon_sym_volatile] = ACTIONS(2014), - [anon_sym_restrict] = ACTIONS(2014), - [anon_sym__Atomic] = ACTIONS(2014), - [anon_sym_in] = ACTIONS(2014), - [anon_sym_out] = ACTIONS(2014), - [anon_sym_inout] = ACTIONS(2014), - [anon_sym_bycopy] = ACTIONS(2014), - [anon_sym_byref] = ACTIONS(2014), - [anon_sym_oneway] = ACTIONS(2014), - [anon_sym__Nullable] = ACTIONS(2014), - [anon_sym__Nonnull] = ACTIONS(2014), - [anon_sym__Nullable_result] = ACTIONS(2014), - [anon_sym__Null_unspecified] = ACTIONS(2014), - [anon_sym___autoreleasing] = ACTIONS(2014), - [anon_sym___nullable] = ACTIONS(2014), - [anon_sym___nonnull] = ACTIONS(2014), - [anon_sym___strong] = ACTIONS(2014), - [anon_sym___weak] = ACTIONS(2014), - [anon_sym___bridge] = ACTIONS(2014), - [anon_sym___bridge_transfer] = ACTIONS(2014), - [anon_sym___bridge_retained] = ACTIONS(2014), - [anon_sym___unsafe_unretained] = ACTIONS(2014), - [anon_sym___block] = ACTIONS(2014), - [anon_sym___kindof] = ACTIONS(2014), - [anon_sym___unused] = ACTIONS(2014), - [anon_sym__Complex] = ACTIONS(2014), - [anon_sym___complex] = ACTIONS(2014), - [anon_sym_IBOutlet] = ACTIONS(2014), - [anon_sym_IBInspectable] = ACTIONS(2014), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2014), - [anon_sym_signed] = ACTIONS(2014), - [anon_sym_unsigned] = ACTIONS(2014), - [anon_sym_long] = ACTIONS(2014), - [anon_sym_short] = ACTIONS(2014), - [sym_primitive_type] = ACTIONS(2014), - [anon_sym_enum] = ACTIONS(2014), - [anon_sym_NS_ENUM] = ACTIONS(2014), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2014), - [anon_sym_NS_OPTIONS] = ACTIONS(2014), - [anon_sym_struct] = ACTIONS(2014), - [anon_sym_union] = ACTIONS(2014), - [anon_sym_if] = ACTIONS(2014), - [anon_sym_switch] = ACTIONS(2014), - [anon_sym_case] = ACTIONS(2014), - [anon_sym_default] = ACTIONS(2014), - [anon_sym_while] = ACTIONS(2014), - [anon_sym_do] = ACTIONS(2014), - [anon_sym_for] = ACTIONS(2014), - [anon_sym_return] = ACTIONS(2014), - [anon_sym_break] = ACTIONS(2014), - [anon_sym_continue] = ACTIONS(2014), - [anon_sym_goto] = ACTIONS(2014), - [anon_sym_DASH_DASH] = ACTIONS(2016), - [anon_sym_PLUS_PLUS] = ACTIONS(2016), - [anon_sym_sizeof] = ACTIONS(2014), - [sym_number_literal] = ACTIONS(2016), - [anon_sym_L_SQUOTE] = ACTIONS(2016), - [anon_sym_u_SQUOTE] = ACTIONS(2016), - [anon_sym_U_SQUOTE] = ACTIONS(2016), - [anon_sym_u8_SQUOTE] = ACTIONS(2016), - [anon_sym_SQUOTE] = ACTIONS(2016), - [anon_sym_L_DQUOTE] = ACTIONS(2016), - [anon_sym_u_DQUOTE] = ACTIONS(2016), - [anon_sym_U_DQUOTE] = ACTIONS(2016), - [anon_sym_u8_DQUOTE] = ACTIONS(2016), - [anon_sym_DQUOTE] = ACTIONS(2016), - [sym_true] = ACTIONS(2014), - [sym_false] = ACTIONS(2014), - [sym_null] = ACTIONS(2014), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2016), - [anon_sym_ATimport] = ACTIONS(2016), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2014), - [anon_sym_ATcompatibility_alias] = ACTIONS(2016), - [anon_sym_ATprotocol] = ACTIONS(2016), - [anon_sym_ATclass] = ACTIONS(2016), - [anon_sym_ATinterface] = ACTIONS(2016), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2014), - [sym_method_attribute_specifier] = ACTIONS(2014), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2014), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2014), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2014), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2014), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2014), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2014), - [anon_sym_NS_AVAILABLE] = ACTIONS(2014), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2014), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2014), - [anon_sym_API_AVAILABLE] = ACTIONS(2014), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2014), - [anon_sym_API_DEPRECATED] = ACTIONS(2014), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2014), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2014), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2014), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2014), - [anon_sym___deprecated_msg] = ACTIONS(2014), - [anon_sym___deprecated_enum_msg] = ACTIONS(2014), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2014), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2014), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2014), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2014), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2014), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2014), - [anon_sym_ATimplementation] = ACTIONS(2016), - [anon_sym_typeof] = ACTIONS(2014), - [anon_sym___typeof] = ACTIONS(2014), - [anon_sym___typeof__] = ACTIONS(2014), - [sym_self] = ACTIONS(2014), - [sym_super] = ACTIONS(2014), - [sym_nil] = ACTIONS(2014), - [sym_id] = ACTIONS(2014), - [sym_instancetype] = ACTIONS(2014), - [sym_Class] = ACTIONS(2014), - [sym_SEL] = ACTIONS(2014), - [sym_IMP] = ACTIONS(2014), - [sym_BOOL] = ACTIONS(2014), - [sym_auto] = ACTIONS(2014), - [anon_sym_ATautoreleasepool] = ACTIONS(2016), - [anon_sym_ATsynchronized] = ACTIONS(2016), - [anon_sym_ATtry] = ACTIONS(2016), - [anon_sym_ATthrow] = ACTIONS(2016), - [anon_sym_ATselector] = ACTIONS(2016), - [anon_sym_ATencode] = ACTIONS(2016), - [anon_sym_AT] = ACTIONS(2014), - [sym_YES] = ACTIONS(2014), - [sym_NO] = ACTIONS(2014), - [anon_sym___builtin_available] = ACTIONS(2014), - [anon_sym_ATavailable] = ACTIONS(2016), - [anon_sym_va_arg] = ACTIONS(2014), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1475] = { - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_include_token1] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [aux_sym_preproc_if_token2] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym___attribute] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym___declspec] = ACTIONS(1994), - [anon_sym___cdecl] = ACTIONS(1994), - [anon_sym___clrcall] = ACTIONS(1994), - [anon_sym___stdcall] = ACTIONS(1994), - [anon_sym___fastcall] = ACTIONS(1994), - [anon_sym___thiscall] = ACTIONS(1994), - [anon_sym___vectorcall] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_in] = ACTIONS(1994), - [anon_sym_out] = ACTIONS(1994), - [anon_sym_inout] = ACTIONS(1994), - [anon_sym_bycopy] = ACTIONS(1994), - [anon_sym_byref] = ACTIONS(1994), - [anon_sym_oneway] = ACTIONS(1994), - [anon_sym__Nullable] = ACTIONS(1994), - [anon_sym__Nonnull] = ACTIONS(1994), - [anon_sym__Nullable_result] = ACTIONS(1994), - [anon_sym__Null_unspecified] = ACTIONS(1994), - [anon_sym___autoreleasing] = ACTIONS(1994), - [anon_sym___nullable] = ACTIONS(1994), - [anon_sym___nonnull] = ACTIONS(1994), - [anon_sym___strong] = ACTIONS(1994), - [anon_sym___weak] = ACTIONS(1994), - [anon_sym___bridge] = ACTIONS(1994), - [anon_sym___bridge_transfer] = ACTIONS(1994), - [anon_sym___bridge_retained] = ACTIONS(1994), - [anon_sym___unsafe_unretained] = ACTIONS(1994), - [anon_sym___block] = ACTIONS(1994), - [anon_sym___kindof] = ACTIONS(1994), - [anon_sym___unused] = ACTIONS(1994), - [anon_sym__Complex] = ACTIONS(1994), - [anon_sym___complex] = ACTIONS(1994), - [anon_sym_IBOutlet] = ACTIONS(1994), - [anon_sym_IBInspectable] = ACTIONS(1994), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_NS_ENUM] = ACTIONS(1994), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1994), - [anon_sym_NS_OPTIONS] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_case] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym_u_SQUOTE] = ACTIONS(1996), - [anon_sym_U_SQUOTE] = ACTIONS(1996), - [anon_sym_u8_SQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_u_DQUOTE] = ACTIONS(1996), - [anon_sym_U_DQUOTE] = ACTIONS(1996), - [anon_sym_u8_DQUOTE] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1996), - [anon_sym_ATimport] = ACTIONS(1996), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1994), - [anon_sym_ATcompatibility_alias] = ACTIONS(1996), - [anon_sym_ATprotocol] = ACTIONS(1996), - [anon_sym_ATclass] = ACTIONS(1996), - [anon_sym_ATinterface] = ACTIONS(1996), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1994), - [sym_method_attribute_specifier] = ACTIONS(1994), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1994), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE] = ACTIONS(1994), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_API_AVAILABLE] = ACTIONS(1994), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_API_DEPRECATED] = ACTIONS(1994), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1994), - [anon_sym___deprecated_msg] = ACTIONS(1994), - [anon_sym___deprecated_enum_msg] = ACTIONS(1994), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1994), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1994), - [anon_sym_ATimplementation] = ACTIONS(1996), - [anon_sym_typeof] = ACTIONS(1994), - [anon_sym___typeof] = ACTIONS(1994), - [anon_sym___typeof__] = ACTIONS(1994), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_nil] = ACTIONS(1994), - [sym_id] = ACTIONS(1994), - [sym_instancetype] = ACTIONS(1994), - [sym_Class] = ACTIONS(1994), - [sym_SEL] = ACTIONS(1994), - [sym_IMP] = ACTIONS(1994), - [sym_BOOL] = ACTIONS(1994), - [sym_auto] = ACTIONS(1994), - [anon_sym_ATautoreleasepool] = ACTIONS(1996), - [anon_sym_ATsynchronized] = ACTIONS(1996), - [anon_sym_ATtry] = ACTIONS(1996), - [anon_sym_ATthrow] = ACTIONS(1996), - [anon_sym_ATselector] = ACTIONS(1996), - [anon_sym_ATencode] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1994), - [sym_YES] = ACTIONS(1994), - [sym_NO] = ACTIONS(1994), - [anon_sym___builtin_available] = ACTIONS(1994), - [anon_sym_ATavailable] = ACTIONS(1996), - [anon_sym_va_arg] = ACTIONS(1994), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1476] = { - [sym_identifier] = ACTIONS(2110), - [aux_sym_preproc_include_token1] = ACTIONS(2112), - [aux_sym_preproc_def_token1] = ACTIONS(2112), - [aux_sym_preproc_if_token1] = ACTIONS(2110), - [aux_sym_preproc_if_token2] = ACTIONS(2110), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2110), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2110), - [anon_sym_LPAREN2] = ACTIONS(2112), - [anon_sym_BANG] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2112), - [anon_sym_DASH] = ACTIONS(2110), - [anon_sym_PLUS] = ACTIONS(2110), - [anon_sym_STAR] = ACTIONS(2112), - [anon_sym_CARET] = ACTIONS(2112), - [anon_sym_AMP] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_typedef] = ACTIONS(2110), - [anon_sym_extern] = ACTIONS(2110), - [anon_sym___attribute] = ACTIONS(2110), - [anon_sym___attribute__] = ACTIONS(2110), - [anon_sym___declspec] = ACTIONS(2110), - [anon_sym___cdecl] = ACTIONS(2110), - [anon_sym___clrcall] = ACTIONS(2110), - [anon_sym___stdcall] = ACTIONS(2110), - [anon_sym___fastcall] = ACTIONS(2110), - [anon_sym___thiscall] = ACTIONS(2110), - [anon_sym___vectorcall] = ACTIONS(2110), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(2112), - [anon_sym_static] = ACTIONS(2110), - [anon_sym_auto] = ACTIONS(2110), - [anon_sym_register] = ACTIONS(2110), - [anon_sym_inline] = ACTIONS(2110), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2110), - [anon_sym_const] = ACTIONS(2110), - [anon_sym_volatile] = ACTIONS(2110), - [anon_sym_restrict] = ACTIONS(2110), - [anon_sym__Atomic] = ACTIONS(2110), - [anon_sym_in] = ACTIONS(2110), - [anon_sym_out] = ACTIONS(2110), - [anon_sym_inout] = ACTIONS(2110), - [anon_sym_bycopy] = ACTIONS(2110), - [anon_sym_byref] = ACTIONS(2110), - [anon_sym_oneway] = ACTIONS(2110), - [anon_sym__Nullable] = ACTIONS(2110), - [anon_sym__Nonnull] = ACTIONS(2110), - [anon_sym__Nullable_result] = ACTIONS(2110), - [anon_sym__Null_unspecified] = ACTIONS(2110), - [anon_sym___autoreleasing] = ACTIONS(2110), - [anon_sym___nullable] = ACTIONS(2110), - [anon_sym___nonnull] = ACTIONS(2110), - [anon_sym___strong] = ACTIONS(2110), - [anon_sym___weak] = ACTIONS(2110), - [anon_sym___bridge] = ACTIONS(2110), - [anon_sym___bridge_transfer] = ACTIONS(2110), - [anon_sym___bridge_retained] = ACTIONS(2110), - [anon_sym___unsafe_unretained] = ACTIONS(2110), - [anon_sym___block] = ACTIONS(2110), - [anon_sym___kindof] = ACTIONS(2110), - [anon_sym___unused] = ACTIONS(2110), - [anon_sym__Complex] = ACTIONS(2110), - [anon_sym___complex] = ACTIONS(2110), - [anon_sym_IBOutlet] = ACTIONS(2110), - [anon_sym_IBInspectable] = ACTIONS(2110), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2110), - [anon_sym_signed] = ACTIONS(2110), - [anon_sym_unsigned] = ACTIONS(2110), - [anon_sym_long] = ACTIONS(2110), - [anon_sym_short] = ACTIONS(2110), - [sym_primitive_type] = ACTIONS(2110), - [anon_sym_enum] = ACTIONS(2110), - [anon_sym_NS_ENUM] = ACTIONS(2110), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2110), - [anon_sym_NS_OPTIONS] = ACTIONS(2110), - [anon_sym_struct] = ACTIONS(2110), - [anon_sym_union] = ACTIONS(2110), - [anon_sym_if] = ACTIONS(2110), - [anon_sym_switch] = ACTIONS(2110), - [anon_sym_case] = ACTIONS(2110), - [anon_sym_default] = ACTIONS(2110), - [anon_sym_while] = ACTIONS(2110), - [anon_sym_do] = ACTIONS(2110), - [anon_sym_for] = ACTIONS(2110), - [anon_sym_return] = ACTIONS(2110), - [anon_sym_break] = ACTIONS(2110), - [anon_sym_continue] = ACTIONS(2110), - [anon_sym_goto] = ACTIONS(2110), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2110), - [sym_number_literal] = ACTIONS(2112), - [anon_sym_L_SQUOTE] = ACTIONS(2112), - [anon_sym_u_SQUOTE] = ACTIONS(2112), - [anon_sym_U_SQUOTE] = ACTIONS(2112), - [anon_sym_u8_SQUOTE] = ACTIONS(2112), - [anon_sym_SQUOTE] = ACTIONS(2112), - [anon_sym_L_DQUOTE] = ACTIONS(2112), - [anon_sym_u_DQUOTE] = ACTIONS(2112), - [anon_sym_U_DQUOTE] = ACTIONS(2112), - [anon_sym_u8_DQUOTE] = ACTIONS(2112), - [anon_sym_DQUOTE] = ACTIONS(2112), - [sym_true] = ACTIONS(2110), - [sym_false] = ACTIONS(2110), - [sym_null] = ACTIONS(2110), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2112), - [anon_sym_ATimport] = ACTIONS(2112), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2110), - [anon_sym_ATcompatibility_alias] = ACTIONS(2112), - [anon_sym_ATprotocol] = ACTIONS(2112), - [anon_sym_ATclass] = ACTIONS(2112), - [anon_sym_ATinterface] = ACTIONS(2112), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2110), - [sym_method_attribute_specifier] = ACTIONS(2110), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2110), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2110), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2110), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2110), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2110), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2110), - [anon_sym_NS_AVAILABLE] = ACTIONS(2110), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2110), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2110), - [anon_sym_API_AVAILABLE] = ACTIONS(2110), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2110), - [anon_sym_API_DEPRECATED] = ACTIONS(2110), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2110), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2110), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2110), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2110), - [anon_sym___deprecated_msg] = ACTIONS(2110), - [anon_sym___deprecated_enum_msg] = ACTIONS(2110), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2110), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2110), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2110), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2110), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2110), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2110), - [anon_sym_ATimplementation] = ACTIONS(2112), - [anon_sym_typeof] = ACTIONS(2110), - [anon_sym___typeof] = ACTIONS(2110), - [anon_sym___typeof__] = ACTIONS(2110), - [sym_self] = ACTIONS(2110), - [sym_super] = ACTIONS(2110), - [sym_nil] = ACTIONS(2110), - [sym_id] = ACTIONS(2110), - [sym_instancetype] = ACTIONS(2110), - [sym_Class] = ACTIONS(2110), - [sym_SEL] = ACTIONS(2110), - [sym_IMP] = ACTIONS(2110), - [sym_BOOL] = ACTIONS(2110), - [sym_auto] = ACTIONS(2110), - [anon_sym_ATautoreleasepool] = ACTIONS(2112), - [anon_sym_ATsynchronized] = ACTIONS(2112), - [anon_sym_ATtry] = ACTIONS(2112), - [anon_sym_ATthrow] = ACTIONS(2112), - [anon_sym_ATselector] = ACTIONS(2112), - [anon_sym_ATencode] = ACTIONS(2112), - [anon_sym_AT] = ACTIONS(2110), - [sym_YES] = ACTIONS(2110), - [sym_NO] = ACTIONS(2110), - [anon_sym___builtin_available] = ACTIONS(2110), - [anon_sym_ATavailable] = ACTIONS(2112), - [anon_sym_va_arg] = ACTIONS(2110), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1477] = { - [sym_identifier] = ACTIONS(2114), - [aux_sym_preproc_include_token1] = ACTIONS(2116), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2114), - [aux_sym_preproc_if_token2] = ACTIONS(2114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2114), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2114), - [anon_sym_LPAREN2] = ACTIONS(2116), - [anon_sym_BANG] = ACTIONS(2116), - [anon_sym_TILDE] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2114), - [anon_sym_PLUS] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2116), - [anon_sym_CARET] = ACTIONS(2116), - [anon_sym_AMP] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_typedef] = ACTIONS(2114), - [anon_sym_extern] = ACTIONS(2114), - [anon_sym___attribute] = ACTIONS(2114), - [anon_sym___attribute__] = ACTIONS(2114), - [anon_sym___declspec] = ACTIONS(2114), - [anon_sym___cdecl] = ACTIONS(2114), - [anon_sym___clrcall] = ACTIONS(2114), - [anon_sym___stdcall] = ACTIONS(2114), - [anon_sym___fastcall] = ACTIONS(2114), - [anon_sym___thiscall] = ACTIONS(2114), - [anon_sym___vectorcall] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2116), - [anon_sym_LBRACK] = ACTIONS(2116), - [anon_sym_static] = ACTIONS(2114), - [anon_sym_auto] = ACTIONS(2114), - [anon_sym_register] = ACTIONS(2114), - [anon_sym_inline] = ACTIONS(2114), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2114), - [anon_sym_const] = ACTIONS(2114), - [anon_sym_volatile] = ACTIONS(2114), - [anon_sym_restrict] = ACTIONS(2114), - [anon_sym__Atomic] = ACTIONS(2114), - [anon_sym_in] = ACTIONS(2114), - [anon_sym_out] = ACTIONS(2114), - [anon_sym_inout] = ACTIONS(2114), - [anon_sym_bycopy] = ACTIONS(2114), - [anon_sym_byref] = ACTIONS(2114), - [anon_sym_oneway] = ACTIONS(2114), - [anon_sym__Nullable] = ACTIONS(2114), - [anon_sym__Nonnull] = ACTIONS(2114), - [anon_sym__Nullable_result] = ACTIONS(2114), - [anon_sym__Null_unspecified] = ACTIONS(2114), - [anon_sym___autoreleasing] = ACTIONS(2114), - [anon_sym___nullable] = ACTIONS(2114), - [anon_sym___nonnull] = ACTIONS(2114), - [anon_sym___strong] = ACTIONS(2114), - [anon_sym___weak] = ACTIONS(2114), - [anon_sym___bridge] = ACTIONS(2114), - [anon_sym___bridge_transfer] = ACTIONS(2114), - [anon_sym___bridge_retained] = ACTIONS(2114), - [anon_sym___unsafe_unretained] = ACTIONS(2114), - [anon_sym___block] = ACTIONS(2114), - [anon_sym___kindof] = ACTIONS(2114), - [anon_sym___unused] = ACTIONS(2114), - [anon_sym__Complex] = ACTIONS(2114), - [anon_sym___complex] = ACTIONS(2114), - [anon_sym_IBOutlet] = ACTIONS(2114), - [anon_sym_IBInspectable] = ACTIONS(2114), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2114), - [anon_sym_signed] = ACTIONS(2114), - [anon_sym_unsigned] = ACTIONS(2114), - [anon_sym_long] = ACTIONS(2114), - [anon_sym_short] = ACTIONS(2114), - [sym_primitive_type] = ACTIONS(2114), - [anon_sym_enum] = ACTIONS(2114), - [anon_sym_NS_ENUM] = ACTIONS(2114), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2114), - [anon_sym_NS_OPTIONS] = ACTIONS(2114), - [anon_sym_struct] = ACTIONS(2114), - [anon_sym_union] = ACTIONS(2114), - [anon_sym_if] = ACTIONS(2114), - [anon_sym_switch] = ACTIONS(2114), - [anon_sym_case] = ACTIONS(2114), - [anon_sym_default] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_return] = ACTIONS(2114), - [anon_sym_break] = ACTIONS(2114), - [anon_sym_continue] = ACTIONS(2114), - [anon_sym_goto] = ACTIONS(2114), - [anon_sym_DASH_DASH] = ACTIONS(2116), - [anon_sym_PLUS_PLUS] = ACTIONS(2116), - [anon_sym_sizeof] = ACTIONS(2114), - [sym_number_literal] = ACTIONS(2116), - [anon_sym_L_SQUOTE] = ACTIONS(2116), - [anon_sym_u_SQUOTE] = ACTIONS(2116), - [anon_sym_U_SQUOTE] = ACTIONS(2116), - [anon_sym_u8_SQUOTE] = ACTIONS(2116), - [anon_sym_SQUOTE] = ACTIONS(2116), - [anon_sym_L_DQUOTE] = ACTIONS(2116), - [anon_sym_u_DQUOTE] = ACTIONS(2116), - [anon_sym_U_DQUOTE] = ACTIONS(2116), - [anon_sym_u8_DQUOTE] = ACTIONS(2116), - [anon_sym_DQUOTE] = ACTIONS(2116), - [sym_true] = ACTIONS(2114), - [sym_false] = ACTIONS(2114), - [sym_null] = ACTIONS(2114), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2116), - [anon_sym_ATimport] = ACTIONS(2116), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2114), - [anon_sym_ATcompatibility_alias] = ACTIONS(2116), - [anon_sym_ATprotocol] = ACTIONS(2116), - [anon_sym_ATclass] = ACTIONS(2116), - [anon_sym_ATinterface] = ACTIONS(2116), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2114), - [sym_method_attribute_specifier] = ACTIONS(2114), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2114), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2114), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2114), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2114), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2114), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2114), - [anon_sym_NS_AVAILABLE] = ACTIONS(2114), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2114), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_API_AVAILABLE] = ACTIONS(2114), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2114), - [anon_sym_API_DEPRECATED] = ACTIONS(2114), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2114), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2114), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2114), - [anon_sym___deprecated_msg] = ACTIONS(2114), - [anon_sym___deprecated_enum_msg] = ACTIONS(2114), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2114), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2114), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2114), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2114), - [anon_sym_ATimplementation] = ACTIONS(2116), - [anon_sym_typeof] = ACTIONS(2114), - [anon_sym___typeof] = ACTIONS(2114), - [anon_sym___typeof__] = ACTIONS(2114), - [sym_self] = ACTIONS(2114), - [sym_super] = ACTIONS(2114), - [sym_nil] = ACTIONS(2114), - [sym_id] = ACTIONS(2114), - [sym_instancetype] = ACTIONS(2114), - [sym_Class] = ACTIONS(2114), - [sym_SEL] = ACTIONS(2114), - [sym_IMP] = ACTIONS(2114), - [sym_BOOL] = ACTIONS(2114), - [sym_auto] = ACTIONS(2114), - [anon_sym_ATautoreleasepool] = ACTIONS(2116), - [anon_sym_ATsynchronized] = ACTIONS(2116), - [anon_sym_ATtry] = ACTIONS(2116), - [anon_sym_ATthrow] = ACTIONS(2116), - [anon_sym_ATselector] = ACTIONS(2116), - [anon_sym_ATencode] = ACTIONS(2116), - [anon_sym_AT] = ACTIONS(2114), - [sym_YES] = ACTIONS(2114), - [sym_NO] = ACTIONS(2114), - [anon_sym___builtin_available] = ACTIONS(2114), - [anon_sym_ATavailable] = ACTIONS(2116), - [anon_sym_va_arg] = ACTIONS(2114), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1478] = { - [sym_identifier] = ACTIONS(2114), - [aux_sym_preproc_include_token1] = ACTIONS(2116), - [aux_sym_preproc_def_token1] = ACTIONS(2116), - [aux_sym_preproc_if_token1] = ACTIONS(2114), - [aux_sym_preproc_if_token2] = ACTIONS(2114), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2114), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2114), - [anon_sym_LPAREN2] = ACTIONS(2116), - [anon_sym_BANG] = ACTIONS(2116), - [anon_sym_TILDE] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2114), - [anon_sym_PLUS] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2116), - [anon_sym_CARET] = ACTIONS(2116), - [anon_sym_AMP] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2116), - [anon_sym_typedef] = ACTIONS(2114), - [anon_sym_extern] = ACTIONS(2114), - [anon_sym___attribute] = ACTIONS(2114), - [anon_sym___attribute__] = ACTIONS(2114), - [anon_sym___declspec] = ACTIONS(2114), - [anon_sym___cdecl] = ACTIONS(2114), - [anon_sym___clrcall] = ACTIONS(2114), - [anon_sym___stdcall] = ACTIONS(2114), - [anon_sym___fastcall] = ACTIONS(2114), - [anon_sym___thiscall] = ACTIONS(2114), - [anon_sym___vectorcall] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2116), - [anon_sym_LBRACK] = ACTIONS(2116), - [anon_sym_static] = ACTIONS(2114), - [anon_sym_auto] = ACTIONS(2114), - [anon_sym_register] = ACTIONS(2114), - [anon_sym_inline] = ACTIONS(2114), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2114), - [anon_sym_const] = ACTIONS(2114), - [anon_sym_volatile] = ACTIONS(2114), - [anon_sym_restrict] = ACTIONS(2114), - [anon_sym__Atomic] = ACTIONS(2114), - [anon_sym_in] = ACTIONS(2114), - [anon_sym_out] = ACTIONS(2114), - [anon_sym_inout] = ACTIONS(2114), - [anon_sym_bycopy] = ACTIONS(2114), - [anon_sym_byref] = ACTIONS(2114), - [anon_sym_oneway] = ACTIONS(2114), - [anon_sym__Nullable] = ACTIONS(2114), - [anon_sym__Nonnull] = ACTIONS(2114), - [anon_sym__Nullable_result] = ACTIONS(2114), - [anon_sym__Null_unspecified] = ACTIONS(2114), - [anon_sym___autoreleasing] = ACTIONS(2114), - [anon_sym___nullable] = ACTIONS(2114), - [anon_sym___nonnull] = ACTIONS(2114), - [anon_sym___strong] = ACTIONS(2114), - [anon_sym___weak] = ACTIONS(2114), - [anon_sym___bridge] = ACTIONS(2114), - [anon_sym___bridge_transfer] = ACTIONS(2114), - [anon_sym___bridge_retained] = ACTIONS(2114), - [anon_sym___unsafe_unretained] = ACTIONS(2114), - [anon_sym___block] = ACTIONS(2114), - [anon_sym___kindof] = ACTIONS(2114), - [anon_sym___unused] = ACTIONS(2114), - [anon_sym__Complex] = ACTIONS(2114), - [anon_sym___complex] = ACTIONS(2114), - [anon_sym_IBOutlet] = ACTIONS(2114), - [anon_sym_IBInspectable] = ACTIONS(2114), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2114), - [anon_sym_signed] = ACTIONS(2114), - [anon_sym_unsigned] = ACTIONS(2114), - [anon_sym_long] = ACTIONS(2114), - [anon_sym_short] = ACTIONS(2114), - [sym_primitive_type] = ACTIONS(2114), - [anon_sym_enum] = ACTIONS(2114), - [anon_sym_NS_ENUM] = ACTIONS(2114), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2114), - [anon_sym_NS_OPTIONS] = ACTIONS(2114), - [anon_sym_struct] = ACTIONS(2114), - [anon_sym_union] = ACTIONS(2114), - [anon_sym_if] = ACTIONS(2114), - [anon_sym_switch] = ACTIONS(2114), - [anon_sym_case] = ACTIONS(2114), - [anon_sym_default] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_return] = ACTIONS(2114), - [anon_sym_break] = ACTIONS(2114), - [anon_sym_continue] = ACTIONS(2114), - [anon_sym_goto] = ACTIONS(2114), - [anon_sym_DASH_DASH] = ACTIONS(2116), - [anon_sym_PLUS_PLUS] = ACTIONS(2116), - [anon_sym_sizeof] = ACTIONS(2114), - [sym_number_literal] = ACTIONS(2116), - [anon_sym_L_SQUOTE] = ACTIONS(2116), - [anon_sym_u_SQUOTE] = ACTIONS(2116), - [anon_sym_U_SQUOTE] = ACTIONS(2116), - [anon_sym_u8_SQUOTE] = ACTIONS(2116), - [anon_sym_SQUOTE] = ACTIONS(2116), - [anon_sym_L_DQUOTE] = ACTIONS(2116), - [anon_sym_u_DQUOTE] = ACTIONS(2116), - [anon_sym_U_DQUOTE] = ACTIONS(2116), - [anon_sym_u8_DQUOTE] = ACTIONS(2116), - [anon_sym_DQUOTE] = ACTIONS(2116), - [sym_true] = ACTIONS(2114), - [sym_false] = ACTIONS(2114), - [sym_null] = ACTIONS(2114), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2116), - [anon_sym_ATimport] = ACTIONS(2116), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2114), - [anon_sym_ATcompatibility_alias] = ACTIONS(2116), - [anon_sym_ATprotocol] = ACTIONS(2116), - [anon_sym_ATclass] = ACTIONS(2116), - [anon_sym_ATinterface] = ACTIONS(2116), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2114), - [sym_method_attribute_specifier] = ACTIONS(2114), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2114), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2114), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2114), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2114), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2114), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2114), - [anon_sym_NS_AVAILABLE] = ACTIONS(2114), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2114), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_API_AVAILABLE] = ACTIONS(2114), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2114), - [anon_sym_API_DEPRECATED] = ACTIONS(2114), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2114), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2114), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2114), - [anon_sym___deprecated_msg] = ACTIONS(2114), - [anon_sym___deprecated_enum_msg] = ACTIONS(2114), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2114), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2114), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2114), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2114), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2114), - [anon_sym_ATimplementation] = ACTIONS(2116), - [anon_sym_typeof] = ACTIONS(2114), - [anon_sym___typeof] = ACTIONS(2114), - [anon_sym___typeof__] = ACTIONS(2114), - [sym_self] = ACTIONS(2114), - [sym_super] = ACTIONS(2114), - [sym_nil] = ACTIONS(2114), - [sym_id] = ACTIONS(2114), - [sym_instancetype] = ACTIONS(2114), - [sym_Class] = ACTIONS(2114), - [sym_SEL] = ACTIONS(2114), - [sym_IMP] = ACTIONS(2114), - [sym_BOOL] = ACTIONS(2114), - [sym_auto] = ACTIONS(2114), - [anon_sym_ATautoreleasepool] = ACTIONS(2116), - [anon_sym_ATsynchronized] = ACTIONS(2116), - [anon_sym_ATtry] = ACTIONS(2116), - [anon_sym_ATthrow] = ACTIONS(2116), - [anon_sym_ATselector] = ACTIONS(2116), - [anon_sym_ATencode] = ACTIONS(2116), - [anon_sym_AT] = ACTIONS(2114), - [sym_YES] = ACTIONS(2114), - [sym_NO] = ACTIONS(2114), - [anon_sym___builtin_available] = ACTIONS(2114), - [anon_sym_ATavailable] = ACTIONS(2116), - [anon_sym_va_arg] = ACTIONS(2114), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1479] = { - [sym_identifier] = ACTIONS(2118), - [aux_sym_preproc_include_token1] = ACTIONS(2120), - [aux_sym_preproc_def_token1] = ACTIONS(2120), - [aux_sym_preproc_if_token1] = ACTIONS(2118), - [aux_sym_preproc_if_token2] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2118), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2118), - [anon_sym_LPAREN2] = ACTIONS(2120), - [anon_sym_BANG] = ACTIONS(2120), - [anon_sym_TILDE] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2118), - [anon_sym_PLUS] = ACTIONS(2118), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_CARET] = ACTIONS(2120), - [anon_sym_AMP] = ACTIONS(2120), - [anon_sym_SEMI] = ACTIONS(2120), - [anon_sym_typedef] = ACTIONS(2118), - [anon_sym_extern] = ACTIONS(2118), - [anon_sym___attribute] = ACTIONS(2118), - [anon_sym___attribute__] = ACTIONS(2118), - [anon_sym___declspec] = ACTIONS(2118), - [anon_sym___cdecl] = ACTIONS(2118), - [anon_sym___clrcall] = ACTIONS(2118), - [anon_sym___stdcall] = ACTIONS(2118), - [anon_sym___fastcall] = ACTIONS(2118), - [anon_sym___thiscall] = ACTIONS(2118), - [anon_sym___vectorcall] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2120), - [anon_sym_LBRACK] = ACTIONS(2120), - [anon_sym_static] = ACTIONS(2118), - [anon_sym_auto] = ACTIONS(2118), - [anon_sym_register] = ACTIONS(2118), - [anon_sym_inline] = ACTIONS(2118), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2118), - [anon_sym_const] = ACTIONS(2118), - [anon_sym_volatile] = ACTIONS(2118), - [anon_sym_restrict] = ACTIONS(2118), - [anon_sym__Atomic] = ACTIONS(2118), - [anon_sym_in] = ACTIONS(2118), - [anon_sym_out] = ACTIONS(2118), - [anon_sym_inout] = ACTIONS(2118), - [anon_sym_bycopy] = ACTIONS(2118), - [anon_sym_byref] = ACTIONS(2118), - [anon_sym_oneway] = ACTIONS(2118), - [anon_sym__Nullable] = ACTIONS(2118), - [anon_sym__Nonnull] = ACTIONS(2118), - [anon_sym__Nullable_result] = ACTIONS(2118), - [anon_sym__Null_unspecified] = ACTIONS(2118), - [anon_sym___autoreleasing] = ACTIONS(2118), - [anon_sym___nullable] = ACTIONS(2118), - [anon_sym___nonnull] = ACTIONS(2118), - [anon_sym___strong] = ACTIONS(2118), - [anon_sym___weak] = ACTIONS(2118), - [anon_sym___bridge] = ACTIONS(2118), - [anon_sym___bridge_transfer] = ACTIONS(2118), - [anon_sym___bridge_retained] = ACTIONS(2118), - [anon_sym___unsafe_unretained] = ACTIONS(2118), - [anon_sym___block] = ACTIONS(2118), - [anon_sym___kindof] = ACTIONS(2118), - [anon_sym___unused] = ACTIONS(2118), - [anon_sym__Complex] = ACTIONS(2118), - [anon_sym___complex] = ACTIONS(2118), - [anon_sym_IBOutlet] = ACTIONS(2118), - [anon_sym_IBInspectable] = ACTIONS(2118), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2118), - [anon_sym_signed] = ACTIONS(2118), - [anon_sym_unsigned] = ACTIONS(2118), - [anon_sym_long] = ACTIONS(2118), - [anon_sym_short] = ACTIONS(2118), - [sym_primitive_type] = ACTIONS(2118), - [anon_sym_enum] = ACTIONS(2118), - [anon_sym_NS_ENUM] = ACTIONS(2118), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2118), - [anon_sym_NS_OPTIONS] = ACTIONS(2118), - [anon_sym_struct] = ACTIONS(2118), - [anon_sym_union] = ACTIONS(2118), - [anon_sym_if] = ACTIONS(2118), - [anon_sym_switch] = ACTIONS(2118), - [anon_sym_case] = ACTIONS(2118), - [anon_sym_default] = ACTIONS(2118), - [anon_sym_while] = ACTIONS(2118), - [anon_sym_do] = ACTIONS(2118), - [anon_sym_for] = ACTIONS(2118), - [anon_sym_return] = ACTIONS(2118), - [anon_sym_break] = ACTIONS(2118), - [anon_sym_continue] = ACTIONS(2118), - [anon_sym_goto] = ACTIONS(2118), - [anon_sym_DASH_DASH] = ACTIONS(2120), - [anon_sym_PLUS_PLUS] = ACTIONS(2120), - [anon_sym_sizeof] = ACTIONS(2118), - [sym_number_literal] = ACTIONS(2120), - [anon_sym_L_SQUOTE] = ACTIONS(2120), - [anon_sym_u_SQUOTE] = ACTIONS(2120), - [anon_sym_U_SQUOTE] = ACTIONS(2120), - [anon_sym_u8_SQUOTE] = ACTIONS(2120), - [anon_sym_SQUOTE] = ACTIONS(2120), - [anon_sym_L_DQUOTE] = ACTIONS(2120), - [anon_sym_u_DQUOTE] = ACTIONS(2120), - [anon_sym_U_DQUOTE] = ACTIONS(2120), - [anon_sym_u8_DQUOTE] = ACTIONS(2120), - [anon_sym_DQUOTE] = ACTIONS(2120), - [sym_true] = ACTIONS(2118), - [sym_false] = ACTIONS(2118), - [sym_null] = ACTIONS(2118), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2120), - [anon_sym_ATimport] = ACTIONS(2120), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2118), - [anon_sym_ATcompatibility_alias] = ACTIONS(2120), - [anon_sym_ATprotocol] = ACTIONS(2120), - [anon_sym_ATclass] = ACTIONS(2120), - [anon_sym_ATinterface] = ACTIONS(2120), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2118), - [sym_method_attribute_specifier] = ACTIONS(2118), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2118), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2118), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2118), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2118), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2118), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2118), - [anon_sym_NS_AVAILABLE] = ACTIONS(2118), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2118), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2118), - [anon_sym_API_AVAILABLE] = ACTIONS(2118), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2118), - [anon_sym_API_DEPRECATED] = ACTIONS(2118), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2118), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2118), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2118), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2118), - [anon_sym___deprecated_msg] = ACTIONS(2118), - [anon_sym___deprecated_enum_msg] = ACTIONS(2118), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2118), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2118), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2118), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2118), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2118), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2118), - [anon_sym_ATimplementation] = ACTIONS(2120), - [anon_sym_typeof] = ACTIONS(2118), - [anon_sym___typeof] = ACTIONS(2118), - [anon_sym___typeof__] = ACTIONS(2118), - [sym_self] = ACTIONS(2118), - [sym_super] = ACTIONS(2118), - [sym_nil] = ACTIONS(2118), - [sym_id] = ACTIONS(2118), - [sym_instancetype] = ACTIONS(2118), - [sym_Class] = ACTIONS(2118), - [sym_SEL] = ACTIONS(2118), - [sym_IMP] = ACTIONS(2118), - [sym_BOOL] = ACTIONS(2118), - [sym_auto] = ACTIONS(2118), - [anon_sym_ATautoreleasepool] = ACTIONS(2120), - [anon_sym_ATsynchronized] = ACTIONS(2120), - [anon_sym_ATtry] = ACTIONS(2120), - [anon_sym_ATthrow] = ACTIONS(2120), - [anon_sym_ATselector] = ACTIONS(2120), - [anon_sym_ATencode] = ACTIONS(2120), - [anon_sym_AT] = ACTIONS(2118), - [sym_YES] = ACTIONS(2118), - [sym_NO] = ACTIONS(2118), - [anon_sym___builtin_available] = ACTIONS(2118), - [anon_sym_ATavailable] = ACTIONS(2120), - [anon_sym_va_arg] = ACTIONS(2118), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1480] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1481] = { - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_include_token1] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [aux_sym_preproc_if_token2] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym___attribute] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym___declspec] = ACTIONS(1994), - [anon_sym___cdecl] = ACTIONS(1994), - [anon_sym___clrcall] = ACTIONS(1994), - [anon_sym___stdcall] = ACTIONS(1994), - [anon_sym___fastcall] = ACTIONS(1994), - [anon_sym___thiscall] = ACTIONS(1994), - [anon_sym___vectorcall] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_in] = ACTIONS(1994), - [anon_sym_out] = ACTIONS(1994), - [anon_sym_inout] = ACTIONS(1994), - [anon_sym_bycopy] = ACTIONS(1994), - [anon_sym_byref] = ACTIONS(1994), - [anon_sym_oneway] = ACTIONS(1994), - [anon_sym__Nullable] = ACTIONS(1994), - [anon_sym__Nonnull] = ACTIONS(1994), - [anon_sym__Nullable_result] = ACTIONS(1994), - [anon_sym__Null_unspecified] = ACTIONS(1994), - [anon_sym___autoreleasing] = ACTIONS(1994), - [anon_sym___nullable] = ACTIONS(1994), - [anon_sym___nonnull] = ACTIONS(1994), - [anon_sym___strong] = ACTIONS(1994), - [anon_sym___weak] = ACTIONS(1994), - [anon_sym___bridge] = ACTIONS(1994), - [anon_sym___bridge_transfer] = ACTIONS(1994), - [anon_sym___bridge_retained] = ACTIONS(1994), - [anon_sym___unsafe_unretained] = ACTIONS(1994), - [anon_sym___block] = ACTIONS(1994), - [anon_sym___kindof] = ACTIONS(1994), - [anon_sym___unused] = ACTIONS(1994), - [anon_sym__Complex] = ACTIONS(1994), - [anon_sym___complex] = ACTIONS(1994), - [anon_sym_IBOutlet] = ACTIONS(1994), - [anon_sym_IBInspectable] = ACTIONS(1994), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_NS_ENUM] = ACTIONS(1994), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1994), - [anon_sym_NS_OPTIONS] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_case] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym_u_SQUOTE] = ACTIONS(1996), - [anon_sym_U_SQUOTE] = ACTIONS(1996), - [anon_sym_u8_SQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_u_DQUOTE] = ACTIONS(1996), - [anon_sym_U_DQUOTE] = ACTIONS(1996), - [anon_sym_u8_DQUOTE] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1996), - [anon_sym_ATimport] = ACTIONS(1996), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1994), - [anon_sym_ATcompatibility_alias] = ACTIONS(1996), - [anon_sym_ATprotocol] = ACTIONS(1996), - [anon_sym_ATclass] = ACTIONS(1996), - [anon_sym_ATinterface] = ACTIONS(1996), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1994), - [sym_method_attribute_specifier] = ACTIONS(1994), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1994), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE] = ACTIONS(1994), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_API_AVAILABLE] = ACTIONS(1994), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_API_DEPRECATED] = ACTIONS(1994), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1994), - [anon_sym___deprecated_msg] = ACTIONS(1994), - [anon_sym___deprecated_enum_msg] = ACTIONS(1994), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1994), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1994), - [anon_sym_ATimplementation] = ACTIONS(1996), - [anon_sym_typeof] = ACTIONS(1994), - [anon_sym___typeof] = ACTIONS(1994), - [anon_sym___typeof__] = ACTIONS(1994), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_nil] = ACTIONS(1994), - [sym_id] = ACTIONS(1994), - [sym_instancetype] = ACTIONS(1994), - [sym_Class] = ACTIONS(1994), - [sym_SEL] = ACTIONS(1994), - [sym_IMP] = ACTIONS(1994), - [sym_BOOL] = ACTIONS(1994), - [sym_auto] = ACTIONS(1994), - [anon_sym_ATautoreleasepool] = ACTIONS(1996), - [anon_sym_ATsynchronized] = ACTIONS(1996), - [anon_sym_ATtry] = ACTIONS(1996), - [anon_sym_ATthrow] = ACTIONS(1996), - [anon_sym_ATselector] = ACTIONS(1996), - [anon_sym_ATencode] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1994), - [sym_YES] = ACTIONS(1994), - [sym_NO] = ACTIONS(1994), - [anon_sym___builtin_available] = ACTIONS(1994), - [anon_sym_ATavailable] = ACTIONS(1996), - [anon_sym_va_arg] = ACTIONS(1994), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1482] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1483] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1484] = { - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_include_token1] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [aux_sym_preproc_if_token2] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym___attribute] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym___declspec] = ACTIONS(1994), - [anon_sym___cdecl] = ACTIONS(1994), - [anon_sym___clrcall] = ACTIONS(1994), - [anon_sym___stdcall] = ACTIONS(1994), - [anon_sym___fastcall] = ACTIONS(1994), - [anon_sym___thiscall] = ACTIONS(1994), - [anon_sym___vectorcall] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_in] = ACTIONS(1994), - [anon_sym_out] = ACTIONS(1994), - [anon_sym_inout] = ACTIONS(1994), - [anon_sym_bycopy] = ACTIONS(1994), - [anon_sym_byref] = ACTIONS(1994), - [anon_sym_oneway] = ACTIONS(1994), - [anon_sym__Nullable] = ACTIONS(1994), - [anon_sym__Nonnull] = ACTIONS(1994), - [anon_sym__Nullable_result] = ACTIONS(1994), - [anon_sym__Null_unspecified] = ACTIONS(1994), - [anon_sym___autoreleasing] = ACTIONS(1994), - [anon_sym___nullable] = ACTIONS(1994), - [anon_sym___nonnull] = ACTIONS(1994), - [anon_sym___strong] = ACTIONS(1994), - [anon_sym___weak] = ACTIONS(1994), - [anon_sym___bridge] = ACTIONS(1994), - [anon_sym___bridge_transfer] = ACTIONS(1994), - [anon_sym___bridge_retained] = ACTIONS(1994), - [anon_sym___unsafe_unretained] = ACTIONS(1994), - [anon_sym___block] = ACTIONS(1994), - [anon_sym___kindof] = ACTIONS(1994), - [anon_sym___unused] = ACTIONS(1994), - [anon_sym__Complex] = ACTIONS(1994), - [anon_sym___complex] = ACTIONS(1994), - [anon_sym_IBOutlet] = ACTIONS(1994), - [anon_sym_IBInspectable] = ACTIONS(1994), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_NS_ENUM] = ACTIONS(1994), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1994), - [anon_sym_NS_OPTIONS] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_case] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym_u_SQUOTE] = ACTIONS(1996), - [anon_sym_U_SQUOTE] = ACTIONS(1996), - [anon_sym_u8_SQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_u_DQUOTE] = ACTIONS(1996), - [anon_sym_U_DQUOTE] = ACTIONS(1996), - [anon_sym_u8_DQUOTE] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1996), - [anon_sym_ATimport] = ACTIONS(1996), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1994), - [anon_sym_ATcompatibility_alias] = ACTIONS(1996), - [anon_sym_ATprotocol] = ACTIONS(1996), - [anon_sym_ATclass] = ACTIONS(1996), - [anon_sym_ATinterface] = ACTIONS(1996), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1994), - [sym_method_attribute_specifier] = ACTIONS(1994), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1994), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE] = ACTIONS(1994), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_API_AVAILABLE] = ACTIONS(1994), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_API_DEPRECATED] = ACTIONS(1994), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1994), - [anon_sym___deprecated_msg] = ACTIONS(1994), - [anon_sym___deprecated_enum_msg] = ACTIONS(1994), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1994), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1994), - [anon_sym_ATimplementation] = ACTIONS(1996), - [anon_sym_typeof] = ACTIONS(1994), - [anon_sym___typeof] = ACTIONS(1994), - [anon_sym___typeof__] = ACTIONS(1994), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_nil] = ACTIONS(1994), - [sym_id] = ACTIONS(1994), - [sym_instancetype] = ACTIONS(1994), - [sym_Class] = ACTIONS(1994), - [sym_SEL] = ACTIONS(1994), - [sym_IMP] = ACTIONS(1994), - [sym_BOOL] = ACTIONS(1994), - [sym_auto] = ACTIONS(1994), - [anon_sym_ATautoreleasepool] = ACTIONS(1996), - [anon_sym_ATsynchronized] = ACTIONS(1996), - [anon_sym_ATtry] = ACTIONS(1996), - [anon_sym_ATthrow] = ACTIONS(1996), - [anon_sym_ATselector] = ACTIONS(1996), - [anon_sym_ATencode] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1994), - [sym_YES] = ACTIONS(1994), - [sym_NO] = ACTIONS(1994), - [anon_sym___builtin_available] = ACTIONS(1994), - [anon_sym_ATavailable] = ACTIONS(1996), - [anon_sym_va_arg] = ACTIONS(1994), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1485] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1486] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1487] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1488] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1489] = { - [sym_identifier] = ACTIONS(2038), - [aux_sym_preproc_include_token1] = ACTIONS(2040), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2038), - [aux_sym_preproc_if_token2] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2038), - [anon_sym___cdecl] = ACTIONS(2038), - [anon_sym___clrcall] = ACTIONS(2038), - [anon_sym___stdcall] = ACTIONS(2038), - [anon_sym___fastcall] = ACTIONS(2038), - [anon_sym___thiscall] = ACTIONS(2038), - [anon_sym___vectorcall] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_auto] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_in] = ACTIONS(2038), - [anon_sym_out] = ACTIONS(2038), - [anon_sym_inout] = ACTIONS(2038), - [anon_sym_bycopy] = ACTIONS(2038), - [anon_sym_byref] = ACTIONS(2038), - [anon_sym_oneway] = ACTIONS(2038), - [anon_sym__Nullable] = ACTIONS(2038), - [anon_sym__Nonnull] = ACTIONS(2038), - [anon_sym__Nullable_result] = ACTIONS(2038), - [anon_sym__Null_unspecified] = ACTIONS(2038), - [anon_sym___autoreleasing] = ACTIONS(2038), - [anon_sym___nullable] = ACTIONS(2038), - [anon_sym___nonnull] = ACTIONS(2038), - [anon_sym___strong] = ACTIONS(2038), - [anon_sym___weak] = ACTIONS(2038), - [anon_sym___bridge] = ACTIONS(2038), - [anon_sym___bridge_transfer] = ACTIONS(2038), - [anon_sym___bridge_retained] = ACTIONS(2038), - [anon_sym___unsafe_unretained] = ACTIONS(2038), - [anon_sym___block] = ACTIONS(2038), - [anon_sym___kindof] = ACTIONS(2038), - [anon_sym___unused] = ACTIONS(2038), - [anon_sym__Complex] = ACTIONS(2038), - [anon_sym___complex] = ACTIONS(2038), - [anon_sym_IBOutlet] = ACTIONS(2038), - [anon_sym_IBInspectable] = ACTIONS(2038), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2038), - [anon_sym_signed] = ACTIONS(2038), - [anon_sym_unsigned] = ACTIONS(2038), - [anon_sym_long] = ACTIONS(2038), - [anon_sym_short] = ACTIONS(2038), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_NS_ENUM] = ACTIONS(2038), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2038), - [anon_sym_NS_OPTIONS] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_goto] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_sizeof] = ACTIONS(2038), - [sym_number_literal] = ACTIONS(2040), - [anon_sym_L_SQUOTE] = ACTIONS(2040), - [anon_sym_u_SQUOTE] = ACTIONS(2040), - [anon_sym_U_SQUOTE] = ACTIONS(2040), - [anon_sym_u8_SQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_L_DQUOTE] = ACTIONS(2040), - [anon_sym_u_DQUOTE] = ACTIONS(2040), - [anon_sym_U_DQUOTE] = ACTIONS(2040), - [anon_sym_u8_DQUOTE] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [sym_null] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2040), - [anon_sym_ATimport] = ACTIONS(2040), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2038), - [anon_sym_ATcompatibility_alias] = ACTIONS(2040), - [anon_sym_ATprotocol] = ACTIONS(2040), - [anon_sym_ATclass] = ACTIONS(2040), - [anon_sym_ATinterface] = ACTIONS(2040), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2038), - [sym_method_attribute_specifier] = ACTIONS(2038), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2038), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE] = ACTIONS(2038), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_API_AVAILABLE] = ACTIONS(2038), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_API_DEPRECATED] = ACTIONS(2038), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2038), - [anon_sym___deprecated_msg] = ACTIONS(2038), - [anon_sym___deprecated_enum_msg] = ACTIONS(2038), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2038), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2038), - [anon_sym_ATimplementation] = ACTIONS(2040), - [anon_sym_typeof] = ACTIONS(2038), - [anon_sym___typeof] = ACTIONS(2038), - [anon_sym___typeof__] = ACTIONS(2038), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_nil] = ACTIONS(2038), - [sym_id] = ACTIONS(2038), - [sym_instancetype] = ACTIONS(2038), - [sym_Class] = ACTIONS(2038), - [sym_SEL] = ACTIONS(2038), - [sym_IMP] = ACTIONS(2038), - [sym_BOOL] = ACTIONS(2038), - [sym_auto] = ACTIONS(2038), - [anon_sym_ATautoreleasepool] = ACTIONS(2040), - [anon_sym_ATsynchronized] = ACTIONS(2040), - [anon_sym_ATtry] = ACTIONS(2040), - [anon_sym_ATthrow] = ACTIONS(2040), - [anon_sym_ATselector] = ACTIONS(2040), - [anon_sym_ATencode] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2038), - [sym_YES] = ACTIONS(2038), - [sym_NO] = ACTIONS(2038), - [anon_sym___builtin_available] = ACTIONS(2038), - [anon_sym_ATavailable] = ACTIONS(2040), - [anon_sym_va_arg] = ACTIONS(2038), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1490] = { - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_include_token1] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [aux_sym_preproc_if_token2] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym___attribute] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym___declspec] = ACTIONS(1994), - [anon_sym___cdecl] = ACTIONS(1994), - [anon_sym___clrcall] = ACTIONS(1994), - [anon_sym___stdcall] = ACTIONS(1994), - [anon_sym___fastcall] = ACTIONS(1994), - [anon_sym___thiscall] = ACTIONS(1994), - [anon_sym___vectorcall] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_in] = ACTIONS(1994), - [anon_sym_out] = ACTIONS(1994), - [anon_sym_inout] = ACTIONS(1994), - [anon_sym_bycopy] = ACTIONS(1994), - [anon_sym_byref] = ACTIONS(1994), - [anon_sym_oneway] = ACTIONS(1994), - [anon_sym__Nullable] = ACTIONS(1994), - [anon_sym__Nonnull] = ACTIONS(1994), - [anon_sym__Nullable_result] = ACTIONS(1994), - [anon_sym__Null_unspecified] = ACTIONS(1994), - [anon_sym___autoreleasing] = ACTIONS(1994), - [anon_sym___nullable] = ACTIONS(1994), - [anon_sym___nonnull] = ACTIONS(1994), - [anon_sym___strong] = ACTIONS(1994), - [anon_sym___weak] = ACTIONS(1994), - [anon_sym___bridge] = ACTIONS(1994), - [anon_sym___bridge_transfer] = ACTIONS(1994), - [anon_sym___bridge_retained] = ACTIONS(1994), - [anon_sym___unsafe_unretained] = ACTIONS(1994), - [anon_sym___block] = ACTIONS(1994), - [anon_sym___kindof] = ACTIONS(1994), - [anon_sym___unused] = ACTIONS(1994), - [anon_sym__Complex] = ACTIONS(1994), - [anon_sym___complex] = ACTIONS(1994), - [anon_sym_IBOutlet] = ACTIONS(1994), - [anon_sym_IBInspectable] = ACTIONS(1994), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_NS_ENUM] = ACTIONS(1994), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1994), - [anon_sym_NS_OPTIONS] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_case] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym_u_SQUOTE] = ACTIONS(1996), - [anon_sym_U_SQUOTE] = ACTIONS(1996), - [anon_sym_u8_SQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_u_DQUOTE] = ACTIONS(1996), - [anon_sym_U_DQUOTE] = ACTIONS(1996), - [anon_sym_u8_DQUOTE] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1996), - [anon_sym_ATimport] = ACTIONS(1996), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1994), - [anon_sym_ATcompatibility_alias] = ACTIONS(1996), - [anon_sym_ATprotocol] = ACTIONS(1996), - [anon_sym_ATclass] = ACTIONS(1996), - [anon_sym_ATinterface] = ACTIONS(1996), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1994), - [sym_method_attribute_specifier] = ACTIONS(1994), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1994), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE] = ACTIONS(1994), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_API_AVAILABLE] = ACTIONS(1994), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_API_DEPRECATED] = ACTIONS(1994), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1994), - [anon_sym___deprecated_msg] = ACTIONS(1994), - [anon_sym___deprecated_enum_msg] = ACTIONS(1994), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1994), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1994), - [anon_sym_ATimplementation] = ACTIONS(1996), - [anon_sym_typeof] = ACTIONS(1994), - [anon_sym___typeof] = ACTIONS(1994), - [anon_sym___typeof__] = ACTIONS(1994), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_nil] = ACTIONS(1994), - [sym_id] = ACTIONS(1994), - [sym_instancetype] = ACTIONS(1994), - [sym_Class] = ACTIONS(1994), - [sym_SEL] = ACTIONS(1994), - [sym_IMP] = ACTIONS(1994), - [sym_BOOL] = ACTIONS(1994), - [sym_auto] = ACTIONS(1994), - [anon_sym_ATautoreleasepool] = ACTIONS(1996), - [anon_sym_ATsynchronized] = ACTIONS(1996), - [anon_sym_ATtry] = ACTIONS(1996), - [anon_sym_ATthrow] = ACTIONS(1996), - [anon_sym_ATselector] = ACTIONS(1996), - [anon_sym_ATencode] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1994), - [sym_YES] = ACTIONS(1994), - [sym_NO] = ACTIONS(1994), - [anon_sym___builtin_available] = ACTIONS(1994), - [anon_sym_ATavailable] = ACTIONS(1996), - [anon_sym_va_arg] = ACTIONS(1994), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1491] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1492] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1493] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1494] = { - [sym_identifier] = ACTIONS(2122), - [aux_sym_preproc_include_token1] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2124), - [aux_sym_preproc_if_token1] = ACTIONS(2122), - [aux_sym_preproc_if_token2] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2122), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2122), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(2124), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_PLUS] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(2124), - [anon_sym_AMP] = ACTIONS(2124), - [anon_sym_SEMI] = ACTIONS(2124), - [anon_sym_typedef] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym___attribute] = ACTIONS(2122), - [anon_sym___attribute__] = ACTIONS(2122), - [anon_sym___declspec] = ACTIONS(2122), - [anon_sym___cdecl] = ACTIONS(2122), - [anon_sym___clrcall] = ACTIONS(2122), - [anon_sym___stdcall] = ACTIONS(2122), - [anon_sym___fastcall] = ACTIONS(2122), - [anon_sym___thiscall] = ACTIONS(2122), - [anon_sym___vectorcall] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_static] = ACTIONS(2122), - [anon_sym_auto] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_inline] = ACTIONS(2122), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_volatile] = ACTIONS(2122), - [anon_sym_restrict] = ACTIONS(2122), - [anon_sym__Atomic] = ACTIONS(2122), - [anon_sym_in] = ACTIONS(2122), - [anon_sym_out] = ACTIONS(2122), - [anon_sym_inout] = ACTIONS(2122), - [anon_sym_bycopy] = ACTIONS(2122), - [anon_sym_byref] = ACTIONS(2122), - [anon_sym_oneway] = ACTIONS(2122), - [anon_sym__Nullable] = ACTIONS(2122), - [anon_sym__Nonnull] = ACTIONS(2122), - [anon_sym__Nullable_result] = ACTIONS(2122), - [anon_sym__Null_unspecified] = ACTIONS(2122), - [anon_sym___autoreleasing] = ACTIONS(2122), - [anon_sym___nullable] = ACTIONS(2122), - [anon_sym___nonnull] = ACTIONS(2122), - [anon_sym___strong] = ACTIONS(2122), - [anon_sym___weak] = ACTIONS(2122), - [anon_sym___bridge] = ACTIONS(2122), - [anon_sym___bridge_transfer] = ACTIONS(2122), - [anon_sym___bridge_retained] = ACTIONS(2122), - [anon_sym___unsafe_unretained] = ACTIONS(2122), - [anon_sym___block] = ACTIONS(2122), - [anon_sym___kindof] = ACTIONS(2122), - [anon_sym___unused] = ACTIONS(2122), - [anon_sym__Complex] = ACTIONS(2122), - [anon_sym___complex] = ACTIONS(2122), - [anon_sym_IBOutlet] = ACTIONS(2122), - [anon_sym_IBInspectable] = ACTIONS(2122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2122), - [anon_sym_signed] = ACTIONS(2122), - [anon_sym_unsigned] = ACTIONS(2122), - [anon_sym_long] = ACTIONS(2122), - [anon_sym_short] = ACTIONS(2122), - [sym_primitive_type] = ACTIONS(2122), - [anon_sym_enum] = ACTIONS(2122), - [anon_sym_NS_ENUM] = ACTIONS(2122), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2122), - [anon_sym_NS_OPTIONS] = ACTIONS(2122), - [anon_sym_struct] = ACTIONS(2122), - [anon_sym_union] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2122), - [anon_sym_default] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_goto] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(2124), - [anon_sym_sizeof] = ACTIONS(2122), - [sym_number_literal] = ACTIONS(2124), - [anon_sym_L_SQUOTE] = ACTIONS(2124), - [anon_sym_u_SQUOTE] = ACTIONS(2124), - [anon_sym_U_SQUOTE] = ACTIONS(2124), - [anon_sym_u8_SQUOTE] = ACTIONS(2124), - [anon_sym_SQUOTE] = ACTIONS(2124), - [anon_sym_L_DQUOTE] = ACTIONS(2124), - [anon_sym_u_DQUOTE] = ACTIONS(2124), - [anon_sym_U_DQUOTE] = ACTIONS(2124), - [anon_sym_u8_DQUOTE] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym_true] = ACTIONS(2122), - [sym_false] = ACTIONS(2122), - [sym_null] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2124), - [anon_sym_ATimport] = ACTIONS(2124), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2122), - [anon_sym_ATcompatibility_alias] = ACTIONS(2124), - [anon_sym_ATprotocol] = ACTIONS(2124), - [anon_sym_ATclass] = ACTIONS(2124), - [anon_sym_ATinterface] = ACTIONS(2124), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2122), - [sym_method_attribute_specifier] = ACTIONS(2122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE] = ACTIONS(2122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_API_AVAILABLE] = ACTIONS(2122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_API_DEPRECATED] = ACTIONS(2122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2122), - [anon_sym___deprecated_msg] = ACTIONS(2122), - [anon_sym___deprecated_enum_msg] = ACTIONS(2122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2122), - [anon_sym_ATimplementation] = ACTIONS(2124), - [anon_sym_typeof] = ACTIONS(2122), - [anon_sym___typeof] = ACTIONS(2122), - [anon_sym___typeof__] = ACTIONS(2122), - [sym_self] = ACTIONS(2122), - [sym_super] = ACTIONS(2122), - [sym_nil] = ACTIONS(2122), - [sym_id] = ACTIONS(2122), - [sym_instancetype] = ACTIONS(2122), - [sym_Class] = ACTIONS(2122), - [sym_SEL] = ACTIONS(2122), - [sym_IMP] = ACTIONS(2122), - [sym_BOOL] = ACTIONS(2122), - [sym_auto] = ACTIONS(2122), - [anon_sym_ATautoreleasepool] = ACTIONS(2124), - [anon_sym_ATsynchronized] = ACTIONS(2124), - [anon_sym_ATtry] = ACTIONS(2124), - [anon_sym_ATthrow] = ACTIONS(2124), - [anon_sym_ATselector] = ACTIONS(2124), - [anon_sym_ATencode] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2122), - [sym_YES] = ACTIONS(2122), - [sym_NO] = ACTIONS(2122), - [anon_sym___builtin_available] = ACTIONS(2122), - [anon_sym_ATavailable] = ACTIONS(2124), - [anon_sym_va_arg] = ACTIONS(2122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1495] = { - [sym_identifier] = ACTIONS(2038), - [aux_sym_preproc_include_token1] = ACTIONS(2040), - [aux_sym_preproc_def_token1] = ACTIONS(2040), - [aux_sym_preproc_if_token1] = ACTIONS(2038), - [aux_sym_preproc_if_token2] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2038), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2038), - [anon_sym_LPAREN2] = ACTIONS(2040), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2038), - [anon_sym_PLUS] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2038), - [anon_sym_extern] = ACTIONS(2038), - [anon_sym___attribute] = ACTIONS(2038), - [anon_sym___attribute__] = ACTIONS(2038), - [anon_sym___declspec] = ACTIONS(2038), - [anon_sym___cdecl] = ACTIONS(2038), - [anon_sym___clrcall] = ACTIONS(2038), - [anon_sym___stdcall] = ACTIONS(2038), - [anon_sym___fastcall] = ACTIONS(2038), - [anon_sym___thiscall] = ACTIONS(2038), - [anon_sym___vectorcall] = ACTIONS(2038), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2038), - [anon_sym_auto] = ACTIONS(2038), - [anon_sym_register] = ACTIONS(2038), - [anon_sym_inline] = ACTIONS(2038), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2038), - [anon_sym_const] = ACTIONS(2038), - [anon_sym_volatile] = ACTIONS(2038), - [anon_sym_restrict] = ACTIONS(2038), - [anon_sym__Atomic] = ACTIONS(2038), - [anon_sym_in] = ACTIONS(2038), - [anon_sym_out] = ACTIONS(2038), - [anon_sym_inout] = ACTIONS(2038), - [anon_sym_bycopy] = ACTIONS(2038), - [anon_sym_byref] = ACTIONS(2038), - [anon_sym_oneway] = ACTIONS(2038), - [anon_sym__Nullable] = ACTIONS(2038), - [anon_sym__Nonnull] = ACTIONS(2038), - [anon_sym__Nullable_result] = ACTIONS(2038), - [anon_sym__Null_unspecified] = ACTIONS(2038), - [anon_sym___autoreleasing] = ACTIONS(2038), - [anon_sym___nullable] = ACTIONS(2038), - [anon_sym___nonnull] = ACTIONS(2038), - [anon_sym___strong] = ACTIONS(2038), - [anon_sym___weak] = ACTIONS(2038), - [anon_sym___bridge] = ACTIONS(2038), - [anon_sym___bridge_transfer] = ACTIONS(2038), - [anon_sym___bridge_retained] = ACTIONS(2038), - [anon_sym___unsafe_unretained] = ACTIONS(2038), - [anon_sym___block] = ACTIONS(2038), - [anon_sym___kindof] = ACTIONS(2038), - [anon_sym___unused] = ACTIONS(2038), - [anon_sym__Complex] = ACTIONS(2038), - [anon_sym___complex] = ACTIONS(2038), - [anon_sym_IBOutlet] = ACTIONS(2038), - [anon_sym_IBInspectable] = ACTIONS(2038), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2038), - [anon_sym_signed] = ACTIONS(2038), - [anon_sym_unsigned] = ACTIONS(2038), - [anon_sym_long] = ACTIONS(2038), - [anon_sym_short] = ACTIONS(2038), - [sym_primitive_type] = ACTIONS(2038), - [anon_sym_enum] = ACTIONS(2038), - [anon_sym_NS_ENUM] = ACTIONS(2038), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2038), - [anon_sym_NS_OPTIONS] = ACTIONS(2038), - [anon_sym_struct] = ACTIONS(2038), - [anon_sym_union] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2038), - [anon_sym_default] = ACTIONS(2038), - [anon_sym_while] = ACTIONS(2038), - [anon_sym_do] = ACTIONS(2038), - [anon_sym_for] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2038), - [anon_sym_break] = ACTIONS(2038), - [anon_sym_continue] = ACTIONS(2038), - [anon_sym_goto] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2040), - [anon_sym_sizeof] = ACTIONS(2038), - [sym_number_literal] = ACTIONS(2040), - [anon_sym_L_SQUOTE] = ACTIONS(2040), - [anon_sym_u_SQUOTE] = ACTIONS(2040), - [anon_sym_U_SQUOTE] = ACTIONS(2040), - [anon_sym_u8_SQUOTE] = ACTIONS(2040), - [anon_sym_SQUOTE] = ACTIONS(2040), - [anon_sym_L_DQUOTE] = ACTIONS(2040), - [anon_sym_u_DQUOTE] = ACTIONS(2040), - [anon_sym_U_DQUOTE] = ACTIONS(2040), - [anon_sym_u8_DQUOTE] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2040), - [sym_true] = ACTIONS(2038), - [sym_false] = ACTIONS(2038), - [sym_null] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2040), - [anon_sym_ATimport] = ACTIONS(2040), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2038), - [anon_sym_ATcompatibility_alias] = ACTIONS(2040), - [anon_sym_ATprotocol] = ACTIONS(2040), - [anon_sym_ATclass] = ACTIONS(2040), - [anon_sym_ATinterface] = ACTIONS(2040), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2038), - [sym_method_attribute_specifier] = ACTIONS(2038), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2038), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2038), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE] = ACTIONS(2038), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2038), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_API_AVAILABLE] = ACTIONS(2038), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_API_DEPRECATED] = ACTIONS(2038), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2038), - [anon_sym___deprecated_msg] = ACTIONS(2038), - [anon_sym___deprecated_enum_msg] = ACTIONS(2038), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2038), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2038), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2038), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2038), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2038), - [anon_sym_ATimplementation] = ACTIONS(2040), - [anon_sym_typeof] = ACTIONS(2038), - [anon_sym___typeof] = ACTIONS(2038), - [anon_sym___typeof__] = ACTIONS(2038), - [sym_self] = ACTIONS(2038), - [sym_super] = ACTIONS(2038), - [sym_nil] = ACTIONS(2038), - [sym_id] = ACTIONS(2038), - [sym_instancetype] = ACTIONS(2038), - [sym_Class] = ACTIONS(2038), - [sym_SEL] = ACTIONS(2038), - [sym_IMP] = ACTIONS(2038), - [sym_BOOL] = ACTIONS(2038), - [sym_auto] = ACTIONS(2038), - [anon_sym_ATautoreleasepool] = ACTIONS(2040), - [anon_sym_ATsynchronized] = ACTIONS(2040), - [anon_sym_ATtry] = ACTIONS(2040), - [anon_sym_ATthrow] = ACTIONS(2040), - [anon_sym_ATselector] = ACTIONS(2040), - [anon_sym_ATencode] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2038), - [sym_YES] = ACTIONS(2038), - [sym_NO] = ACTIONS(2038), - [anon_sym___builtin_available] = ACTIONS(2038), - [anon_sym_ATavailable] = ACTIONS(2040), - [anon_sym_va_arg] = ACTIONS(2038), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1496] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1497] = { - [sym_identifier] = ACTIONS(1786), - [aux_sym_preproc_include_token1] = ACTIONS(1788), - [aux_sym_preproc_def_token1] = ACTIONS(1788), - [aux_sym_preproc_if_token1] = ACTIONS(1786), - [aux_sym_preproc_if_token2] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym___attribute] = ACTIONS(1786), - [anon_sym___attribute__] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1786), - [anon_sym___cdecl] = ACTIONS(1786), - [anon_sym___clrcall] = ACTIONS(1786), - [anon_sym___stdcall] = ACTIONS(1786), - [anon_sym___fastcall] = ACTIONS(1786), - [anon_sym___thiscall] = ACTIONS(1786), - [anon_sym___vectorcall] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_auto] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_inline] = ACTIONS(1786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_volatile] = ACTIONS(1786), - [anon_sym_restrict] = ACTIONS(1786), - [anon_sym__Atomic] = ACTIONS(1786), - [anon_sym_in] = ACTIONS(1786), - [anon_sym_out] = ACTIONS(1786), - [anon_sym_inout] = ACTIONS(1786), - [anon_sym_bycopy] = ACTIONS(1786), - [anon_sym_byref] = ACTIONS(1786), - [anon_sym_oneway] = ACTIONS(1786), - [anon_sym__Nullable] = ACTIONS(1786), - [anon_sym__Nonnull] = ACTIONS(1786), - [anon_sym__Nullable_result] = ACTIONS(1786), - [anon_sym__Null_unspecified] = ACTIONS(1786), - [anon_sym___autoreleasing] = ACTIONS(1786), - [anon_sym___nullable] = ACTIONS(1786), - [anon_sym___nonnull] = ACTIONS(1786), - [anon_sym___strong] = ACTIONS(1786), - [anon_sym___weak] = ACTIONS(1786), - [anon_sym___bridge] = ACTIONS(1786), - [anon_sym___bridge_transfer] = ACTIONS(1786), - [anon_sym___bridge_retained] = ACTIONS(1786), - [anon_sym___unsafe_unretained] = ACTIONS(1786), - [anon_sym___block] = ACTIONS(1786), - [anon_sym___kindof] = ACTIONS(1786), - [anon_sym___unused] = ACTIONS(1786), - [anon_sym__Complex] = ACTIONS(1786), - [anon_sym___complex] = ACTIONS(1786), - [anon_sym_IBOutlet] = ACTIONS(1786), - [anon_sym_IBInspectable] = ACTIONS(1786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1786), - [anon_sym_signed] = ACTIONS(1786), - [anon_sym_unsigned] = ACTIONS(1786), - [anon_sym_long] = ACTIONS(1786), - [anon_sym_short] = ACTIONS(1786), - [sym_primitive_type] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_NS_ENUM] = ACTIONS(1786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1786), - [anon_sym_NS_OPTIONS] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1788), - [anon_sym_sizeof] = ACTIONS(1786), - [sym_number_literal] = ACTIONS(1788), - [anon_sym_L_SQUOTE] = ACTIONS(1788), - [anon_sym_u_SQUOTE] = ACTIONS(1788), - [anon_sym_U_SQUOTE] = ACTIONS(1788), - [anon_sym_u8_SQUOTE] = ACTIONS(1788), - [anon_sym_SQUOTE] = ACTIONS(1788), - [anon_sym_L_DQUOTE] = ACTIONS(1788), - [anon_sym_u_DQUOTE] = ACTIONS(1788), - [anon_sym_U_DQUOTE] = ACTIONS(1788), - [anon_sym_u8_DQUOTE] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym_true] = ACTIONS(1786), - [sym_false] = ACTIONS(1786), - [sym_null] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1788), - [anon_sym_ATimport] = ACTIONS(1788), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1786), - [anon_sym_ATcompatibility_alias] = ACTIONS(1788), - [anon_sym_ATprotocol] = ACTIONS(1788), - [anon_sym_ATclass] = ACTIONS(1788), - [anon_sym_ATinterface] = ACTIONS(1788), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1786), - [sym_method_attribute_specifier] = ACTIONS(1786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE] = ACTIONS(1786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_API_AVAILABLE] = ACTIONS(1786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_API_DEPRECATED] = ACTIONS(1786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1786), - [anon_sym___deprecated_msg] = ACTIONS(1786), - [anon_sym___deprecated_enum_msg] = ACTIONS(1786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1786), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1786), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1786), - [anon_sym_ATimplementation] = ACTIONS(1788), - [anon_sym_typeof] = ACTIONS(1786), - [anon_sym___typeof] = ACTIONS(1786), - [anon_sym___typeof__] = ACTIONS(1786), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_nil] = ACTIONS(1786), - [sym_id] = ACTIONS(1786), - [sym_instancetype] = ACTIONS(1786), - [sym_Class] = ACTIONS(1786), - [sym_SEL] = ACTIONS(1786), - [sym_IMP] = ACTIONS(1786), - [sym_BOOL] = ACTIONS(1786), - [sym_auto] = ACTIONS(1786), - [anon_sym_ATautoreleasepool] = ACTIONS(1788), - [anon_sym_ATsynchronized] = ACTIONS(1788), - [anon_sym_ATtry] = ACTIONS(1788), - [anon_sym_ATthrow] = ACTIONS(1788), - [anon_sym_ATselector] = ACTIONS(1788), - [anon_sym_ATencode] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1786), - [sym_YES] = ACTIONS(1786), - [sym_NO] = ACTIONS(1786), - [anon_sym___builtin_available] = ACTIONS(1786), - [anon_sym_ATavailable] = ACTIONS(1788), - [anon_sym_va_arg] = ACTIONS(1786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1498] = { - [sym_identifier] = ACTIONS(2126), - [aux_sym_preproc_include_token1] = ACTIONS(2128), - [aux_sym_preproc_def_token1] = ACTIONS(2128), - [aux_sym_preproc_if_token1] = ACTIONS(2126), - [aux_sym_preproc_if_token2] = ACTIONS(2126), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2126), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2126), - [anon_sym_LPAREN2] = ACTIONS(2128), - [anon_sym_BANG] = ACTIONS(2128), - [anon_sym_TILDE] = ACTIONS(2128), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_PLUS] = ACTIONS(2126), - [anon_sym_STAR] = ACTIONS(2128), - [anon_sym_CARET] = ACTIONS(2128), - [anon_sym_AMP] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2128), - [anon_sym_typedef] = ACTIONS(2126), - [anon_sym_extern] = ACTIONS(2126), - [anon_sym___attribute] = ACTIONS(2126), - [anon_sym___attribute__] = ACTIONS(2126), - [anon_sym___declspec] = ACTIONS(2126), - [anon_sym___cdecl] = ACTIONS(2126), - [anon_sym___clrcall] = ACTIONS(2126), - [anon_sym___stdcall] = ACTIONS(2126), - [anon_sym___fastcall] = ACTIONS(2126), - [anon_sym___thiscall] = ACTIONS(2126), - [anon_sym___vectorcall] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2128), - [anon_sym_LBRACK] = ACTIONS(2128), - [anon_sym_static] = ACTIONS(2126), - [anon_sym_auto] = ACTIONS(2126), - [anon_sym_register] = ACTIONS(2126), - [anon_sym_inline] = ACTIONS(2126), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_volatile] = ACTIONS(2126), - [anon_sym_restrict] = ACTIONS(2126), - [anon_sym__Atomic] = ACTIONS(2126), - [anon_sym_in] = ACTIONS(2126), - [anon_sym_out] = ACTIONS(2126), - [anon_sym_inout] = ACTIONS(2126), - [anon_sym_bycopy] = ACTIONS(2126), - [anon_sym_byref] = ACTIONS(2126), - [anon_sym_oneway] = ACTIONS(2126), - [anon_sym__Nullable] = ACTIONS(2126), - [anon_sym__Nonnull] = ACTIONS(2126), - [anon_sym__Nullable_result] = ACTIONS(2126), - [anon_sym__Null_unspecified] = ACTIONS(2126), - [anon_sym___autoreleasing] = ACTIONS(2126), - [anon_sym___nullable] = ACTIONS(2126), - [anon_sym___nonnull] = ACTIONS(2126), - [anon_sym___strong] = ACTIONS(2126), - [anon_sym___weak] = ACTIONS(2126), - [anon_sym___bridge] = ACTIONS(2126), - [anon_sym___bridge_transfer] = ACTIONS(2126), - [anon_sym___bridge_retained] = ACTIONS(2126), - [anon_sym___unsafe_unretained] = ACTIONS(2126), - [anon_sym___block] = ACTIONS(2126), - [anon_sym___kindof] = ACTIONS(2126), - [anon_sym___unused] = ACTIONS(2126), - [anon_sym__Complex] = ACTIONS(2126), - [anon_sym___complex] = ACTIONS(2126), - [anon_sym_IBOutlet] = ACTIONS(2126), - [anon_sym_IBInspectable] = ACTIONS(2126), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2126), - [anon_sym_signed] = ACTIONS(2126), - [anon_sym_unsigned] = ACTIONS(2126), - [anon_sym_long] = ACTIONS(2126), - [anon_sym_short] = ACTIONS(2126), - [sym_primitive_type] = ACTIONS(2126), - [anon_sym_enum] = ACTIONS(2126), - [anon_sym_NS_ENUM] = ACTIONS(2126), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2126), - [anon_sym_NS_OPTIONS] = ACTIONS(2126), - [anon_sym_struct] = ACTIONS(2126), - [anon_sym_union] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_switch] = ACTIONS(2126), - [anon_sym_case] = ACTIONS(2126), - [anon_sym_default] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_goto] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2128), - [anon_sym_PLUS_PLUS] = ACTIONS(2128), - [anon_sym_sizeof] = ACTIONS(2126), - [sym_number_literal] = ACTIONS(2128), - [anon_sym_L_SQUOTE] = ACTIONS(2128), - [anon_sym_u_SQUOTE] = ACTIONS(2128), - [anon_sym_U_SQUOTE] = ACTIONS(2128), - [anon_sym_u8_SQUOTE] = ACTIONS(2128), - [anon_sym_SQUOTE] = ACTIONS(2128), - [anon_sym_L_DQUOTE] = ACTIONS(2128), - [anon_sym_u_DQUOTE] = ACTIONS(2128), - [anon_sym_U_DQUOTE] = ACTIONS(2128), - [anon_sym_u8_DQUOTE] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2128), - [sym_true] = ACTIONS(2126), - [sym_false] = ACTIONS(2126), - [sym_null] = ACTIONS(2126), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2128), - [anon_sym_ATimport] = ACTIONS(2128), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2126), - [anon_sym_ATcompatibility_alias] = ACTIONS(2128), - [anon_sym_ATprotocol] = ACTIONS(2128), - [anon_sym_ATclass] = ACTIONS(2128), - [anon_sym_ATinterface] = ACTIONS(2128), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2126), - [sym_method_attribute_specifier] = ACTIONS(2126), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2126), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2126), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2126), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2126), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2126), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2126), - [anon_sym_NS_AVAILABLE] = ACTIONS(2126), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2126), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2126), - [anon_sym_API_AVAILABLE] = ACTIONS(2126), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2126), - [anon_sym_API_DEPRECATED] = ACTIONS(2126), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2126), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2126), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2126), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2126), - [anon_sym___deprecated_msg] = ACTIONS(2126), - [anon_sym___deprecated_enum_msg] = ACTIONS(2126), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2126), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2126), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2126), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2126), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2126), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2126), - [anon_sym_ATimplementation] = ACTIONS(2128), - [anon_sym_typeof] = ACTIONS(2126), - [anon_sym___typeof] = ACTIONS(2126), - [anon_sym___typeof__] = ACTIONS(2126), - [sym_self] = ACTIONS(2126), - [sym_super] = ACTIONS(2126), - [sym_nil] = ACTIONS(2126), - [sym_id] = ACTIONS(2126), - [sym_instancetype] = ACTIONS(2126), - [sym_Class] = ACTIONS(2126), - [sym_SEL] = ACTIONS(2126), - [sym_IMP] = ACTIONS(2126), - [sym_BOOL] = ACTIONS(2126), - [sym_auto] = ACTIONS(2126), - [anon_sym_ATautoreleasepool] = ACTIONS(2128), - [anon_sym_ATsynchronized] = ACTIONS(2128), - [anon_sym_ATtry] = ACTIONS(2128), - [anon_sym_ATthrow] = ACTIONS(2128), - [anon_sym_ATselector] = ACTIONS(2128), - [anon_sym_ATencode] = ACTIONS(2128), - [anon_sym_AT] = ACTIONS(2126), - [sym_YES] = ACTIONS(2126), - [sym_NO] = ACTIONS(2126), - [anon_sym___builtin_available] = ACTIONS(2126), - [anon_sym_ATavailable] = ACTIONS(2128), - [anon_sym_va_arg] = ACTIONS(2126), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1499] = { - [sym_identifier] = ACTIONS(1782), - [aux_sym_preproc_include_token1] = ACTIONS(1784), - [aux_sym_preproc_def_token1] = ACTIONS(1784), - [aux_sym_preproc_if_token1] = ACTIONS(1782), - [aux_sym_preproc_if_token2] = ACTIONS(1782), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1782), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1782), - [anon_sym_LPAREN2] = ACTIONS(1784), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_TILDE] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_CARET] = ACTIONS(1784), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_typedef] = ACTIONS(1782), - [anon_sym_extern] = ACTIONS(1782), - [anon_sym___attribute] = ACTIONS(1782), - [anon_sym___attribute__] = ACTIONS(1782), - [anon_sym___declspec] = ACTIONS(1782), - [anon_sym___cdecl] = ACTIONS(1782), - [anon_sym___clrcall] = ACTIONS(1782), - [anon_sym___stdcall] = ACTIONS(1782), - [anon_sym___fastcall] = ACTIONS(1782), - [anon_sym___thiscall] = ACTIONS(1782), - [anon_sym___vectorcall] = ACTIONS(1782), - [anon_sym_LBRACE] = ACTIONS(1784), - [anon_sym_LBRACK] = ACTIONS(1784), - [anon_sym_static] = ACTIONS(1782), - [anon_sym_auto] = ACTIONS(1782), - [anon_sym_register] = ACTIONS(1782), - [anon_sym_inline] = ACTIONS(1782), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1782), - [anon_sym_const] = ACTIONS(1782), - [anon_sym_volatile] = ACTIONS(1782), - [anon_sym_restrict] = ACTIONS(1782), - [anon_sym__Atomic] = ACTIONS(1782), - [anon_sym_in] = ACTIONS(1782), - [anon_sym_out] = ACTIONS(1782), - [anon_sym_inout] = ACTIONS(1782), - [anon_sym_bycopy] = ACTIONS(1782), - [anon_sym_byref] = ACTIONS(1782), - [anon_sym_oneway] = ACTIONS(1782), - [anon_sym__Nullable] = ACTIONS(1782), - [anon_sym__Nonnull] = ACTIONS(1782), - [anon_sym__Nullable_result] = ACTIONS(1782), - [anon_sym__Null_unspecified] = ACTIONS(1782), - [anon_sym___autoreleasing] = ACTIONS(1782), - [anon_sym___nullable] = ACTIONS(1782), - [anon_sym___nonnull] = ACTIONS(1782), - [anon_sym___strong] = ACTIONS(1782), - [anon_sym___weak] = ACTIONS(1782), - [anon_sym___bridge] = ACTIONS(1782), - [anon_sym___bridge_transfer] = ACTIONS(1782), - [anon_sym___bridge_retained] = ACTIONS(1782), - [anon_sym___unsafe_unretained] = ACTIONS(1782), - [anon_sym___block] = ACTIONS(1782), - [anon_sym___kindof] = ACTIONS(1782), - [anon_sym___unused] = ACTIONS(1782), - [anon_sym__Complex] = ACTIONS(1782), - [anon_sym___complex] = ACTIONS(1782), - [anon_sym_IBOutlet] = ACTIONS(1782), - [anon_sym_IBInspectable] = ACTIONS(1782), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1782), - [anon_sym_signed] = ACTIONS(1782), - [anon_sym_unsigned] = ACTIONS(1782), - [anon_sym_long] = ACTIONS(1782), - [anon_sym_short] = ACTIONS(1782), - [sym_primitive_type] = ACTIONS(1782), - [anon_sym_enum] = ACTIONS(1782), - [anon_sym_NS_ENUM] = ACTIONS(1782), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1782), - [anon_sym_NS_OPTIONS] = ACTIONS(1782), - [anon_sym_struct] = ACTIONS(1782), - [anon_sym_union] = ACTIONS(1782), - [anon_sym_if] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1782), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1782), - [anon_sym_while] = ACTIONS(1782), - [anon_sym_do] = ACTIONS(1782), - [anon_sym_for] = ACTIONS(1782), - [anon_sym_return] = ACTIONS(1782), - [anon_sym_break] = ACTIONS(1782), - [anon_sym_continue] = ACTIONS(1782), - [anon_sym_goto] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1784), - [anon_sym_PLUS_PLUS] = ACTIONS(1784), - [anon_sym_sizeof] = ACTIONS(1782), - [sym_number_literal] = ACTIONS(1784), - [anon_sym_L_SQUOTE] = ACTIONS(1784), - [anon_sym_u_SQUOTE] = ACTIONS(1784), - [anon_sym_U_SQUOTE] = ACTIONS(1784), - [anon_sym_u8_SQUOTE] = ACTIONS(1784), - [anon_sym_SQUOTE] = ACTIONS(1784), - [anon_sym_L_DQUOTE] = ACTIONS(1784), - [anon_sym_u_DQUOTE] = ACTIONS(1784), - [anon_sym_U_DQUOTE] = ACTIONS(1784), - [anon_sym_u8_DQUOTE] = ACTIONS(1784), - [anon_sym_DQUOTE] = ACTIONS(1784), - [sym_true] = ACTIONS(1782), - [sym_false] = ACTIONS(1782), - [sym_null] = ACTIONS(1782), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1784), - [anon_sym_ATimport] = ACTIONS(1784), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1782), - [anon_sym_ATcompatibility_alias] = ACTIONS(1784), - [anon_sym_ATprotocol] = ACTIONS(1784), - [anon_sym_ATclass] = ACTIONS(1784), - [anon_sym_ATinterface] = ACTIONS(1784), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1782), - [sym_method_attribute_specifier] = ACTIONS(1782), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1782), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1782), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1782), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1782), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1782), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1782), - [anon_sym_NS_AVAILABLE] = ACTIONS(1782), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1782), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1782), - [anon_sym_API_AVAILABLE] = ACTIONS(1782), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1782), - [anon_sym_API_DEPRECATED] = ACTIONS(1782), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1782), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1782), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1782), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1782), - [anon_sym___deprecated_msg] = ACTIONS(1782), - [anon_sym___deprecated_enum_msg] = ACTIONS(1782), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1782), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1782), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1782), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1782), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1782), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1782), - [anon_sym_ATimplementation] = ACTIONS(1784), - [anon_sym_typeof] = ACTIONS(1782), - [anon_sym___typeof] = ACTIONS(1782), - [anon_sym___typeof__] = ACTIONS(1782), - [sym_self] = ACTIONS(1782), - [sym_super] = ACTIONS(1782), - [sym_nil] = ACTIONS(1782), - [sym_id] = ACTIONS(1782), - [sym_instancetype] = ACTIONS(1782), - [sym_Class] = ACTIONS(1782), - [sym_SEL] = ACTIONS(1782), - [sym_IMP] = ACTIONS(1782), - [sym_BOOL] = ACTIONS(1782), - [sym_auto] = ACTIONS(1782), - [anon_sym_ATautoreleasepool] = ACTIONS(1784), - [anon_sym_ATsynchronized] = ACTIONS(1784), - [anon_sym_ATtry] = ACTIONS(1784), - [anon_sym_ATthrow] = ACTIONS(1784), - [anon_sym_ATselector] = ACTIONS(1784), - [anon_sym_ATencode] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(1782), - [sym_YES] = ACTIONS(1782), - [sym_NO] = ACTIONS(1782), - [anon_sym___builtin_available] = ACTIONS(1782), - [anon_sym_ATavailable] = ACTIONS(1784), - [anon_sym_va_arg] = ACTIONS(1782), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1500] = { - [sym_identifier] = ACTIONS(1778), - [aux_sym_preproc_include_token1] = ACTIONS(1780), - [aux_sym_preproc_def_token1] = ACTIONS(1780), - [aux_sym_preproc_if_token1] = ACTIONS(1778), - [aux_sym_preproc_if_token2] = ACTIONS(1778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_CARET] = ACTIONS(1780), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_typedef] = ACTIONS(1778), - [anon_sym_extern] = ACTIONS(1778), - [anon_sym___attribute] = ACTIONS(1778), - [anon_sym___attribute__] = ACTIONS(1778), - [anon_sym___declspec] = ACTIONS(1778), - [anon_sym___cdecl] = ACTIONS(1778), - [anon_sym___clrcall] = ACTIONS(1778), - [anon_sym___stdcall] = ACTIONS(1778), - [anon_sym___fastcall] = ACTIONS(1778), - [anon_sym___thiscall] = ACTIONS(1778), - [anon_sym___vectorcall] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_static] = ACTIONS(1778), - [anon_sym_auto] = ACTIONS(1778), - [anon_sym_register] = ACTIONS(1778), - [anon_sym_inline] = ACTIONS(1778), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1778), - [anon_sym_volatile] = ACTIONS(1778), - [anon_sym_restrict] = ACTIONS(1778), - [anon_sym__Atomic] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_out] = ACTIONS(1778), - [anon_sym_inout] = ACTIONS(1778), - [anon_sym_bycopy] = ACTIONS(1778), - [anon_sym_byref] = ACTIONS(1778), - [anon_sym_oneway] = ACTIONS(1778), - [anon_sym__Nullable] = ACTIONS(1778), - [anon_sym__Nonnull] = ACTIONS(1778), - [anon_sym__Nullable_result] = ACTIONS(1778), - [anon_sym__Null_unspecified] = ACTIONS(1778), - [anon_sym___autoreleasing] = ACTIONS(1778), - [anon_sym___nullable] = ACTIONS(1778), - [anon_sym___nonnull] = ACTIONS(1778), - [anon_sym___strong] = ACTIONS(1778), - [anon_sym___weak] = ACTIONS(1778), - [anon_sym___bridge] = ACTIONS(1778), - [anon_sym___bridge_transfer] = ACTIONS(1778), - [anon_sym___bridge_retained] = ACTIONS(1778), - [anon_sym___unsafe_unretained] = ACTIONS(1778), - [anon_sym___block] = ACTIONS(1778), - [anon_sym___kindof] = ACTIONS(1778), - [anon_sym___unused] = ACTIONS(1778), - [anon_sym__Complex] = ACTIONS(1778), - [anon_sym___complex] = ACTIONS(1778), - [anon_sym_IBOutlet] = ACTIONS(1778), - [anon_sym_IBInspectable] = ACTIONS(1778), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1778), - [anon_sym_signed] = ACTIONS(1778), - [anon_sym_unsigned] = ACTIONS(1778), - [anon_sym_long] = ACTIONS(1778), - [anon_sym_short] = ACTIONS(1778), - [sym_primitive_type] = ACTIONS(1778), - [anon_sym_enum] = ACTIONS(1778), - [anon_sym_NS_ENUM] = ACTIONS(1778), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1778), - [anon_sym_NS_OPTIONS] = ACTIONS(1778), - [anon_sym_struct] = ACTIONS(1778), - [anon_sym_union] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1778), - [anon_sym_case] = ACTIONS(1778), - [anon_sym_default] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_do] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_goto] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_sizeof] = ACTIONS(1778), - [sym_number_literal] = ACTIONS(1780), - [anon_sym_L_SQUOTE] = ACTIONS(1780), - [anon_sym_u_SQUOTE] = ACTIONS(1780), - [anon_sym_U_SQUOTE] = ACTIONS(1780), - [anon_sym_u8_SQUOTE] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1780), - [anon_sym_L_DQUOTE] = ACTIONS(1780), - [anon_sym_u_DQUOTE] = ACTIONS(1780), - [anon_sym_U_DQUOTE] = ACTIONS(1780), - [anon_sym_u8_DQUOTE] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [sym_true] = ACTIONS(1778), - [sym_false] = ACTIONS(1778), - [sym_null] = ACTIONS(1778), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1780), - [anon_sym_ATimport] = ACTIONS(1780), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1778), - [anon_sym_ATcompatibility_alias] = ACTIONS(1780), - [anon_sym_ATprotocol] = ACTIONS(1780), - [anon_sym_ATclass] = ACTIONS(1780), - [anon_sym_ATinterface] = ACTIONS(1780), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1778), - [sym_method_attribute_specifier] = ACTIONS(1778), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1778), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1778), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1778), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1778), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1778), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1778), - [anon_sym_NS_AVAILABLE] = ACTIONS(1778), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1778), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1778), - [anon_sym_API_AVAILABLE] = ACTIONS(1778), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1778), - [anon_sym_API_DEPRECATED] = ACTIONS(1778), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1778), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1778), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1778), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1778), - [anon_sym___deprecated_msg] = ACTIONS(1778), - [anon_sym___deprecated_enum_msg] = ACTIONS(1778), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1778), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1778), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1778), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1778), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1778), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1778), - [anon_sym_ATimplementation] = ACTIONS(1780), - [anon_sym_typeof] = ACTIONS(1778), - [anon_sym___typeof] = ACTIONS(1778), - [anon_sym___typeof__] = ACTIONS(1778), - [sym_self] = ACTIONS(1778), - [sym_super] = ACTIONS(1778), - [sym_nil] = ACTIONS(1778), - [sym_id] = ACTIONS(1778), - [sym_instancetype] = ACTIONS(1778), - [sym_Class] = ACTIONS(1778), - [sym_SEL] = ACTIONS(1778), - [sym_IMP] = ACTIONS(1778), - [sym_BOOL] = ACTIONS(1778), - [sym_auto] = ACTIONS(1778), - [anon_sym_ATautoreleasepool] = ACTIONS(1780), - [anon_sym_ATsynchronized] = ACTIONS(1780), - [anon_sym_ATtry] = ACTIONS(1780), - [anon_sym_ATthrow] = ACTIONS(1780), - [anon_sym_ATselector] = ACTIONS(1780), - [anon_sym_ATencode] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1778), - [sym_YES] = ACTIONS(1778), - [sym_NO] = ACTIONS(1778), - [anon_sym___builtin_available] = ACTIONS(1778), - [anon_sym_ATavailable] = ACTIONS(1780), - [anon_sym_va_arg] = ACTIONS(1778), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1501] = { - [sym_identifier] = ACTIONS(1770), - [aux_sym_preproc_include_token1] = ACTIONS(1772), - [aux_sym_preproc_def_token1] = ACTIONS(1772), - [aux_sym_preproc_if_token1] = ACTIONS(1770), - [aux_sym_preproc_if_token2] = ACTIONS(1770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1770), - [anon_sym_LPAREN2] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1772), - [anon_sym_TILDE] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_CARET] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_typedef] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym___attribute] = ACTIONS(1770), - [anon_sym___attribute__] = ACTIONS(1770), - [anon_sym___declspec] = ACTIONS(1770), - [anon_sym___cdecl] = ACTIONS(1770), - [anon_sym___clrcall] = ACTIONS(1770), - [anon_sym___stdcall] = ACTIONS(1770), - [anon_sym___fastcall] = ACTIONS(1770), - [anon_sym___thiscall] = ACTIONS(1770), - [anon_sym___vectorcall] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_auto] = ACTIONS(1770), - [anon_sym_register] = ACTIONS(1770), - [anon_sym_inline] = ACTIONS(1770), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_volatile] = ACTIONS(1770), - [anon_sym_restrict] = ACTIONS(1770), - [anon_sym__Atomic] = ACTIONS(1770), - [anon_sym_in] = ACTIONS(1770), - [anon_sym_out] = ACTIONS(1770), - [anon_sym_inout] = ACTIONS(1770), - [anon_sym_bycopy] = ACTIONS(1770), - [anon_sym_byref] = ACTIONS(1770), - [anon_sym_oneway] = ACTIONS(1770), - [anon_sym__Nullable] = ACTIONS(1770), - [anon_sym__Nonnull] = ACTIONS(1770), - [anon_sym__Nullable_result] = ACTIONS(1770), - [anon_sym__Null_unspecified] = ACTIONS(1770), - [anon_sym___autoreleasing] = ACTIONS(1770), - [anon_sym___nullable] = ACTIONS(1770), - [anon_sym___nonnull] = ACTIONS(1770), - [anon_sym___strong] = ACTIONS(1770), - [anon_sym___weak] = ACTIONS(1770), - [anon_sym___bridge] = ACTIONS(1770), - [anon_sym___bridge_transfer] = ACTIONS(1770), - [anon_sym___bridge_retained] = ACTIONS(1770), - [anon_sym___unsafe_unretained] = ACTIONS(1770), - [anon_sym___block] = ACTIONS(1770), - [anon_sym___kindof] = ACTIONS(1770), - [anon_sym___unused] = ACTIONS(1770), - [anon_sym__Complex] = ACTIONS(1770), - [anon_sym___complex] = ACTIONS(1770), - [anon_sym_IBOutlet] = ACTIONS(1770), - [anon_sym_IBInspectable] = ACTIONS(1770), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1770), - [anon_sym_signed] = ACTIONS(1770), - [anon_sym_unsigned] = ACTIONS(1770), - [anon_sym_long] = ACTIONS(1770), - [anon_sym_short] = ACTIONS(1770), - [sym_primitive_type] = ACTIONS(1770), - [anon_sym_enum] = ACTIONS(1770), - [anon_sym_NS_ENUM] = ACTIONS(1770), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1770), - [anon_sym_NS_OPTIONS] = ACTIONS(1770), - [anon_sym_struct] = ACTIONS(1770), - [anon_sym_union] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_switch] = ACTIONS(1770), - [anon_sym_case] = ACTIONS(1770), - [anon_sym_default] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_do] = ACTIONS(1770), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_goto] = ACTIONS(1770), - [anon_sym_DASH_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1772), - [anon_sym_sizeof] = ACTIONS(1770), - [sym_number_literal] = ACTIONS(1772), - [anon_sym_L_SQUOTE] = ACTIONS(1772), - [anon_sym_u_SQUOTE] = ACTIONS(1772), - [anon_sym_U_SQUOTE] = ACTIONS(1772), - [anon_sym_u8_SQUOTE] = ACTIONS(1772), - [anon_sym_SQUOTE] = ACTIONS(1772), - [anon_sym_L_DQUOTE] = ACTIONS(1772), - [anon_sym_u_DQUOTE] = ACTIONS(1772), - [anon_sym_U_DQUOTE] = ACTIONS(1772), - [anon_sym_u8_DQUOTE] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1772), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [sym_null] = ACTIONS(1770), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1772), - [anon_sym_ATimport] = ACTIONS(1772), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1770), - [anon_sym_ATcompatibility_alias] = ACTIONS(1772), - [anon_sym_ATprotocol] = ACTIONS(1772), - [anon_sym_ATclass] = ACTIONS(1772), - [anon_sym_ATinterface] = ACTIONS(1772), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1770), - [sym_method_attribute_specifier] = ACTIONS(1770), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1770), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1770), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1770), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1770), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1770), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1770), - [anon_sym_NS_AVAILABLE] = ACTIONS(1770), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1770), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1770), - [anon_sym_API_AVAILABLE] = ACTIONS(1770), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1770), - [anon_sym_API_DEPRECATED] = ACTIONS(1770), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1770), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1770), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1770), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1770), - [anon_sym___deprecated_msg] = ACTIONS(1770), - [anon_sym___deprecated_enum_msg] = ACTIONS(1770), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1770), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1770), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1770), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1770), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1770), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1770), - [anon_sym_ATimplementation] = ACTIONS(1772), - [anon_sym_typeof] = ACTIONS(1770), - [anon_sym___typeof] = ACTIONS(1770), - [anon_sym___typeof__] = ACTIONS(1770), - [sym_self] = ACTIONS(1770), - [sym_super] = ACTIONS(1770), - [sym_nil] = ACTIONS(1770), - [sym_id] = ACTIONS(1770), - [sym_instancetype] = ACTIONS(1770), - [sym_Class] = ACTIONS(1770), - [sym_SEL] = ACTIONS(1770), - [sym_IMP] = ACTIONS(1770), - [sym_BOOL] = ACTIONS(1770), - [sym_auto] = ACTIONS(1770), - [anon_sym_ATautoreleasepool] = ACTIONS(1772), - [anon_sym_ATsynchronized] = ACTIONS(1772), - [anon_sym_ATtry] = ACTIONS(1772), - [anon_sym_ATthrow] = ACTIONS(1772), - [anon_sym_ATselector] = ACTIONS(1772), - [anon_sym_ATencode] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(1770), - [sym_YES] = ACTIONS(1770), - [sym_NO] = ACTIONS(1770), - [anon_sym___builtin_available] = ACTIONS(1770), - [anon_sym_ATavailable] = ACTIONS(1772), - [anon_sym_va_arg] = ACTIONS(1770), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1502] = { - [sym_identifier] = ACTIONS(2130), - [aux_sym_preproc_include_token1] = ACTIONS(2132), - [aux_sym_preproc_def_token1] = ACTIONS(2132), - [aux_sym_preproc_if_token1] = ACTIONS(2130), - [aux_sym_preproc_if_token2] = ACTIONS(2130), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2130), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2130), - [anon_sym_LPAREN2] = ACTIONS(2132), - [anon_sym_BANG] = ACTIONS(2132), - [anon_sym_TILDE] = ACTIONS(2132), - [anon_sym_DASH] = ACTIONS(2130), - [anon_sym_PLUS] = ACTIONS(2130), - [anon_sym_STAR] = ACTIONS(2132), - [anon_sym_CARET] = ACTIONS(2132), - [anon_sym_AMP] = ACTIONS(2132), - [anon_sym_SEMI] = ACTIONS(2132), - [anon_sym_typedef] = ACTIONS(2130), - [anon_sym_extern] = ACTIONS(2130), - [anon_sym___attribute] = ACTIONS(2130), - [anon_sym___attribute__] = ACTIONS(2130), - [anon_sym___declspec] = ACTIONS(2130), - [anon_sym___cdecl] = ACTIONS(2130), - [anon_sym___clrcall] = ACTIONS(2130), - [anon_sym___stdcall] = ACTIONS(2130), - [anon_sym___fastcall] = ACTIONS(2130), - [anon_sym___thiscall] = ACTIONS(2130), - [anon_sym___vectorcall] = ACTIONS(2130), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_LBRACK] = ACTIONS(2132), - [anon_sym_static] = ACTIONS(2130), - [anon_sym_auto] = ACTIONS(2130), - [anon_sym_register] = ACTIONS(2130), - [anon_sym_inline] = ACTIONS(2130), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2130), - [anon_sym_const] = ACTIONS(2130), - [anon_sym_volatile] = ACTIONS(2130), - [anon_sym_restrict] = ACTIONS(2130), - [anon_sym__Atomic] = ACTIONS(2130), - [anon_sym_in] = ACTIONS(2130), - [anon_sym_out] = ACTIONS(2130), - [anon_sym_inout] = ACTIONS(2130), - [anon_sym_bycopy] = ACTIONS(2130), - [anon_sym_byref] = ACTIONS(2130), - [anon_sym_oneway] = ACTIONS(2130), - [anon_sym__Nullable] = ACTIONS(2130), - [anon_sym__Nonnull] = ACTIONS(2130), - [anon_sym__Nullable_result] = ACTIONS(2130), - [anon_sym__Null_unspecified] = ACTIONS(2130), - [anon_sym___autoreleasing] = ACTIONS(2130), - [anon_sym___nullable] = ACTIONS(2130), - [anon_sym___nonnull] = ACTIONS(2130), - [anon_sym___strong] = ACTIONS(2130), - [anon_sym___weak] = ACTIONS(2130), - [anon_sym___bridge] = ACTIONS(2130), - [anon_sym___bridge_transfer] = ACTIONS(2130), - [anon_sym___bridge_retained] = ACTIONS(2130), - [anon_sym___unsafe_unretained] = ACTIONS(2130), - [anon_sym___block] = ACTIONS(2130), - [anon_sym___kindof] = ACTIONS(2130), - [anon_sym___unused] = ACTIONS(2130), - [anon_sym__Complex] = ACTIONS(2130), - [anon_sym___complex] = ACTIONS(2130), - [anon_sym_IBOutlet] = ACTIONS(2130), - [anon_sym_IBInspectable] = ACTIONS(2130), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2130), - [anon_sym_signed] = ACTIONS(2130), - [anon_sym_unsigned] = ACTIONS(2130), - [anon_sym_long] = ACTIONS(2130), - [anon_sym_short] = ACTIONS(2130), - [sym_primitive_type] = ACTIONS(2130), - [anon_sym_enum] = ACTIONS(2130), - [anon_sym_NS_ENUM] = ACTIONS(2130), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2130), - [anon_sym_NS_OPTIONS] = ACTIONS(2130), - [anon_sym_struct] = ACTIONS(2130), - [anon_sym_union] = ACTIONS(2130), - [anon_sym_if] = ACTIONS(2130), - [anon_sym_switch] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2130), - [anon_sym_default] = ACTIONS(2130), - [anon_sym_while] = ACTIONS(2130), - [anon_sym_do] = ACTIONS(2130), - [anon_sym_for] = ACTIONS(2130), - [anon_sym_return] = ACTIONS(2130), - [anon_sym_break] = ACTIONS(2130), - [anon_sym_continue] = ACTIONS(2130), - [anon_sym_goto] = ACTIONS(2130), - [anon_sym_DASH_DASH] = ACTIONS(2132), - [anon_sym_PLUS_PLUS] = ACTIONS(2132), - [anon_sym_sizeof] = ACTIONS(2130), - [sym_number_literal] = ACTIONS(2132), - [anon_sym_L_SQUOTE] = ACTIONS(2132), - [anon_sym_u_SQUOTE] = ACTIONS(2132), - [anon_sym_U_SQUOTE] = ACTIONS(2132), - [anon_sym_u8_SQUOTE] = ACTIONS(2132), - [anon_sym_SQUOTE] = ACTIONS(2132), - [anon_sym_L_DQUOTE] = ACTIONS(2132), - [anon_sym_u_DQUOTE] = ACTIONS(2132), - [anon_sym_U_DQUOTE] = ACTIONS(2132), - [anon_sym_u8_DQUOTE] = ACTIONS(2132), - [anon_sym_DQUOTE] = ACTIONS(2132), - [sym_true] = ACTIONS(2130), - [sym_false] = ACTIONS(2130), - [sym_null] = ACTIONS(2130), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2132), - [anon_sym_ATimport] = ACTIONS(2132), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2130), - [anon_sym_ATcompatibility_alias] = ACTIONS(2132), - [anon_sym_ATprotocol] = ACTIONS(2132), - [anon_sym_ATclass] = ACTIONS(2132), - [anon_sym_ATinterface] = ACTIONS(2132), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2130), - [sym_method_attribute_specifier] = ACTIONS(2130), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2130), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2130), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2130), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2130), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2130), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2130), - [anon_sym_NS_AVAILABLE] = ACTIONS(2130), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2130), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2130), - [anon_sym_API_AVAILABLE] = ACTIONS(2130), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2130), - [anon_sym_API_DEPRECATED] = ACTIONS(2130), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2130), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2130), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2130), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2130), - [anon_sym___deprecated_msg] = ACTIONS(2130), - [anon_sym___deprecated_enum_msg] = ACTIONS(2130), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2130), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2130), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2130), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2130), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2130), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2130), - [anon_sym_ATimplementation] = ACTIONS(2132), - [anon_sym_typeof] = ACTIONS(2130), - [anon_sym___typeof] = ACTIONS(2130), - [anon_sym___typeof__] = ACTIONS(2130), - [sym_self] = ACTIONS(2130), - [sym_super] = ACTIONS(2130), - [sym_nil] = ACTIONS(2130), - [sym_id] = ACTIONS(2130), - [sym_instancetype] = ACTIONS(2130), - [sym_Class] = ACTIONS(2130), - [sym_SEL] = ACTIONS(2130), - [sym_IMP] = ACTIONS(2130), - [sym_BOOL] = ACTIONS(2130), - [sym_auto] = ACTIONS(2130), - [anon_sym_ATautoreleasepool] = ACTIONS(2132), - [anon_sym_ATsynchronized] = ACTIONS(2132), - [anon_sym_ATtry] = ACTIONS(2132), - [anon_sym_ATthrow] = ACTIONS(2132), - [anon_sym_ATselector] = ACTIONS(2132), - [anon_sym_ATencode] = ACTIONS(2132), - [anon_sym_AT] = ACTIONS(2130), - [sym_YES] = ACTIONS(2130), - [sym_NO] = ACTIONS(2130), - [anon_sym___builtin_available] = ACTIONS(2130), - [anon_sym_ATavailable] = ACTIONS(2132), - [anon_sym_va_arg] = ACTIONS(2130), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1503] = { - [sym_identifier] = ACTIONS(2054), - [aux_sym_preproc_include_token1] = ACTIONS(2056), - [aux_sym_preproc_def_token1] = ACTIONS(2056), - [aux_sym_preproc_if_token1] = ACTIONS(2054), - [aux_sym_preproc_if_token2] = ACTIONS(2054), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2054), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2054), - [anon_sym_LPAREN2] = ACTIONS(2056), - [anon_sym_BANG] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2056), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_PLUS] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2056), - [anon_sym_CARET] = ACTIONS(2056), - [anon_sym_AMP] = ACTIONS(2056), - [anon_sym_SEMI] = ACTIONS(2056), - [anon_sym_typedef] = ACTIONS(2054), - [anon_sym_extern] = ACTIONS(2054), - [anon_sym___attribute] = ACTIONS(2054), - [anon_sym___attribute__] = ACTIONS(2054), - [anon_sym___declspec] = ACTIONS(2054), - [anon_sym___cdecl] = ACTIONS(2054), - [anon_sym___clrcall] = ACTIONS(2054), - [anon_sym___stdcall] = ACTIONS(2054), - [anon_sym___fastcall] = ACTIONS(2054), - [anon_sym___thiscall] = ACTIONS(2054), - [anon_sym___vectorcall] = ACTIONS(2054), - [anon_sym_LBRACE] = ACTIONS(2056), - [anon_sym_LBRACK] = ACTIONS(2056), - [anon_sym_static] = ACTIONS(2054), - [anon_sym_auto] = ACTIONS(2054), - [anon_sym_register] = ACTIONS(2054), - [anon_sym_inline] = ACTIONS(2054), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2054), - [anon_sym_const] = ACTIONS(2054), - [anon_sym_volatile] = ACTIONS(2054), - [anon_sym_restrict] = ACTIONS(2054), - [anon_sym__Atomic] = ACTIONS(2054), - [anon_sym_in] = ACTIONS(2054), - [anon_sym_out] = ACTIONS(2054), - [anon_sym_inout] = ACTIONS(2054), - [anon_sym_bycopy] = ACTIONS(2054), - [anon_sym_byref] = ACTIONS(2054), - [anon_sym_oneway] = ACTIONS(2054), - [anon_sym__Nullable] = ACTIONS(2054), - [anon_sym__Nonnull] = ACTIONS(2054), - [anon_sym__Nullable_result] = ACTIONS(2054), - [anon_sym__Null_unspecified] = ACTIONS(2054), - [anon_sym___autoreleasing] = ACTIONS(2054), - [anon_sym___nullable] = ACTIONS(2054), - [anon_sym___nonnull] = ACTIONS(2054), - [anon_sym___strong] = ACTIONS(2054), - [anon_sym___weak] = ACTIONS(2054), - [anon_sym___bridge] = ACTIONS(2054), - [anon_sym___bridge_transfer] = ACTIONS(2054), - [anon_sym___bridge_retained] = ACTIONS(2054), - [anon_sym___unsafe_unretained] = ACTIONS(2054), - [anon_sym___block] = ACTIONS(2054), - [anon_sym___kindof] = ACTIONS(2054), - [anon_sym___unused] = ACTIONS(2054), - [anon_sym__Complex] = ACTIONS(2054), - [anon_sym___complex] = ACTIONS(2054), - [anon_sym_IBOutlet] = ACTIONS(2054), - [anon_sym_IBInspectable] = ACTIONS(2054), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2054), - [anon_sym_signed] = ACTIONS(2054), - [anon_sym_unsigned] = ACTIONS(2054), - [anon_sym_long] = ACTIONS(2054), - [anon_sym_short] = ACTIONS(2054), - [sym_primitive_type] = ACTIONS(2054), - [anon_sym_enum] = ACTIONS(2054), - [anon_sym_NS_ENUM] = ACTIONS(2054), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2054), - [anon_sym_NS_OPTIONS] = ACTIONS(2054), - [anon_sym_struct] = ACTIONS(2054), - [anon_sym_union] = ACTIONS(2054), - [anon_sym_if] = ACTIONS(2054), - [anon_sym_switch] = ACTIONS(2054), - [anon_sym_case] = ACTIONS(2054), - [anon_sym_default] = ACTIONS(2054), - [anon_sym_while] = ACTIONS(2054), - [anon_sym_do] = ACTIONS(2054), - [anon_sym_for] = ACTIONS(2054), - [anon_sym_return] = ACTIONS(2054), - [anon_sym_break] = ACTIONS(2054), - [anon_sym_continue] = ACTIONS(2054), - [anon_sym_goto] = ACTIONS(2054), - [anon_sym_DASH_DASH] = ACTIONS(2056), - [anon_sym_PLUS_PLUS] = ACTIONS(2056), - [anon_sym_sizeof] = ACTIONS(2054), - [sym_number_literal] = ACTIONS(2056), - [anon_sym_L_SQUOTE] = ACTIONS(2056), - [anon_sym_u_SQUOTE] = ACTIONS(2056), - [anon_sym_U_SQUOTE] = ACTIONS(2056), - [anon_sym_u8_SQUOTE] = ACTIONS(2056), - [anon_sym_SQUOTE] = ACTIONS(2056), - [anon_sym_L_DQUOTE] = ACTIONS(2056), - [anon_sym_u_DQUOTE] = ACTIONS(2056), - [anon_sym_U_DQUOTE] = ACTIONS(2056), - [anon_sym_u8_DQUOTE] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [sym_true] = ACTIONS(2054), - [sym_false] = ACTIONS(2054), - [sym_null] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2056), - [anon_sym_ATimport] = ACTIONS(2056), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2054), - [anon_sym_ATcompatibility_alias] = ACTIONS(2056), - [anon_sym_ATprotocol] = ACTIONS(2056), - [anon_sym_ATclass] = ACTIONS(2056), - [anon_sym_ATinterface] = ACTIONS(2056), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2054), - [sym_method_attribute_specifier] = ACTIONS(2054), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2054), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2054), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2054), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2054), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2054), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2054), - [anon_sym_NS_AVAILABLE] = ACTIONS(2054), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2054), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2054), - [anon_sym_API_AVAILABLE] = ACTIONS(2054), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2054), - [anon_sym_API_DEPRECATED] = ACTIONS(2054), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2054), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2054), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2054), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2054), - [anon_sym___deprecated_msg] = ACTIONS(2054), - [anon_sym___deprecated_enum_msg] = ACTIONS(2054), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2054), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2054), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2054), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2054), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2054), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2054), - [anon_sym_ATimplementation] = ACTIONS(2056), - [anon_sym_typeof] = ACTIONS(2054), - [anon_sym___typeof] = ACTIONS(2054), - [anon_sym___typeof__] = ACTIONS(2054), - [sym_self] = ACTIONS(2054), - [sym_super] = ACTIONS(2054), - [sym_nil] = ACTIONS(2054), - [sym_id] = ACTIONS(2054), - [sym_instancetype] = ACTIONS(2054), - [sym_Class] = ACTIONS(2054), - [sym_SEL] = ACTIONS(2054), - [sym_IMP] = ACTIONS(2054), - [sym_BOOL] = ACTIONS(2054), - [sym_auto] = ACTIONS(2054), - [anon_sym_ATautoreleasepool] = ACTIONS(2056), - [anon_sym_ATsynchronized] = ACTIONS(2056), - [anon_sym_ATtry] = ACTIONS(2056), - [anon_sym_ATthrow] = ACTIONS(2056), - [anon_sym_ATselector] = ACTIONS(2056), - [anon_sym_ATencode] = ACTIONS(2056), - [anon_sym_AT] = ACTIONS(2054), - [sym_YES] = ACTIONS(2054), - [sym_NO] = ACTIONS(2054), - [anon_sym___builtin_available] = ACTIONS(2054), - [anon_sym_ATavailable] = ACTIONS(2056), - [anon_sym_va_arg] = ACTIONS(2054), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1504] = { - [sym_identifier] = ACTIONS(2134), - [aux_sym_preproc_include_token1] = ACTIONS(2136), - [aux_sym_preproc_def_token1] = ACTIONS(2136), - [aux_sym_preproc_if_token1] = ACTIONS(2134), - [aux_sym_preproc_if_token2] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), - [anon_sym_LPAREN2] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_typedef] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym___attribute] = ACTIONS(2134), - [anon_sym___attribute__] = ACTIONS(2134), - [anon_sym___declspec] = ACTIONS(2134), - [anon_sym___cdecl] = ACTIONS(2134), - [anon_sym___clrcall] = ACTIONS(2134), - [anon_sym___stdcall] = ACTIONS(2134), - [anon_sym___fastcall] = ACTIONS(2134), - [anon_sym___thiscall] = ACTIONS(2134), - [anon_sym___vectorcall] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_auto] = ACTIONS(2134), - [anon_sym_register] = ACTIONS(2134), - [anon_sym_inline] = ACTIONS(2134), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [anon_sym_volatile] = ACTIONS(2134), - [anon_sym_restrict] = ACTIONS(2134), - [anon_sym__Atomic] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [anon_sym_out] = ACTIONS(2134), - [anon_sym_inout] = ACTIONS(2134), - [anon_sym_bycopy] = ACTIONS(2134), - [anon_sym_byref] = ACTIONS(2134), - [anon_sym_oneway] = ACTIONS(2134), - [anon_sym__Nullable] = ACTIONS(2134), - [anon_sym__Nonnull] = ACTIONS(2134), - [anon_sym__Nullable_result] = ACTIONS(2134), - [anon_sym__Null_unspecified] = ACTIONS(2134), - [anon_sym___autoreleasing] = ACTIONS(2134), - [anon_sym___nullable] = ACTIONS(2134), - [anon_sym___nonnull] = ACTIONS(2134), - [anon_sym___strong] = ACTIONS(2134), - [anon_sym___weak] = ACTIONS(2134), - [anon_sym___bridge] = ACTIONS(2134), - [anon_sym___bridge_transfer] = ACTIONS(2134), - [anon_sym___bridge_retained] = ACTIONS(2134), - [anon_sym___unsafe_unretained] = ACTIONS(2134), - [anon_sym___block] = ACTIONS(2134), - [anon_sym___kindof] = ACTIONS(2134), - [anon_sym___unused] = ACTIONS(2134), - [anon_sym__Complex] = ACTIONS(2134), - [anon_sym___complex] = ACTIONS(2134), - [anon_sym_IBOutlet] = ACTIONS(2134), - [anon_sym_IBInspectable] = ACTIONS(2134), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2134), - [anon_sym_signed] = ACTIONS(2134), - [anon_sym_unsigned] = ACTIONS(2134), - [anon_sym_long] = ACTIONS(2134), - [anon_sym_short] = ACTIONS(2134), - [sym_primitive_type] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_NS_ENUM] = ACTIONS(2134), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2134), - [anon_sym_NS_OPTIONS] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(2134), - [anon_sym_union] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_switch] = ACTIONS(2134), - [anon_sym_case] = ACTIONS(2134), - [anon_sym_default] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_goto] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_PLUS_PLUS] = ACTIONS(2136), - [anon_sym_sizeof] = ACTIONS(2134), - [sym_number_literal] = ACTIONS(2136), - [anon_sym_L_SQUOTE] = ACTIONS(2136), - [anon_sym_u_SQUOTE] = ACTIONS(2136), - [anon_sym_U_SQUOTE] = ACTIONS(2136), - [anon_sym_u8_SQUOTE] = ACTIONS(2136), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_L_DQUOTE] = ACTIONS(2136), - [anon_sym_u_DQUOTE] = ACTIONS(2136), - [anon_sym_U_DQUOTE] = ACTIONS(2136), - [anon_sym_u8_DQUOTE] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [sym_null] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2136), - [anon_sym_ATimport] = ACTIONS(2136), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2134), - [anon_sym_ATcompatibility_alias] = ACTIONS(2136), - [anon_sym_ATprotocol] = ACTIONS(2136), - [anon_sym_ATclass] = ACTIONS(2136), - [anon_sym_ATinterface] = ACTIONS(2136), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2134), - [sym_method_attribute_specifier] = ACTIONS(2134), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2134), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE] = ACTIONS(2134), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_API_AVAILABLE] = ACTIONS(2134), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_API_DEPRECATED] = ACTIONS(2134), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2134), - [anon_sym___deprecated_msg] = ACTIONS(2134), - [anon_sym___deprecated_enum_msg] = ACTIONS(2134), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2134), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2134), - [anon_sym_ATimplementation] = ACTIONS(2136), - [anon_sym_typeof] = ACTIONS(2134), - [anon_sym___typeof] = ACTIONS(2134), - [anon_sym___typeof__] = ACTIONS(2134), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_nil] = ACTIONS(2134), - [sym_id] = ACTIONS(2134), - [sym_instancetype] = ACTIONS(2134), - [sym_Class] = ACTIONS(2134), - [sym_SEL] = ACTIONS(2134), - [sym_IMP] = ACTIONS(2134), - [sym_BOOL] = ACTIONS(2134), - [sym_auto] = ACTIONS(2134), - [anon_sym_ATautoreleasepool] = ACTIONS(2136), - [anon_sym_ATsynchronized] = ACTIONS(2136), - [anon_sym_ATtry] = ACTIONS(2136), - [anon_sym_ATthrow] = ACTIONS(2136), - [anon_sym_ATselector] = ACTIONS(2136), - [anon_sym_ATencode] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2134), - [sym_YES] = ACTIONS(2134), - [sym_NO] = ACTIONS(2134), - [anon_sym___builtin_available] = ACTIONS(2134), - [anon_sym_ATavailable] = ACTIONS(2136), - [anon_sym_va_arg] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1505] = { - [sym_identifier] = ACTIONS(2058), - [aux_sym_preproc_include_token1] = ACTIONS(2060), - [aux_sym_preproc_def_token1] = ACTIONS(2060), - [aux_sym_preproc_if_token1] = ACTIONS(2058), - [aux_sym_preproc_if_token2] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2058), - [anon_sym_LPAREN2] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_typedef] = ACTIONS(2058), - [anon_sym_extern] = ACTIONS(2058), - [anon_sym___attribute] = ACTIONS(2058), - [anon_sym___attribute__] = ACTIONS(2058), - [anon_sym___declspec] = ACTIONS(2058), - [anon_sym___cdecl] = ACTIONS(2058), - [anon_sym___clrcall] = ACTIONS(2058), - [anon_sym___stdcall] = ACTIONS(2058), - [anon_sym___fastcall] = ACTIONS(2058), - [anon_sym___thiscall] = ACTIONS(2058), - [anon_sym___vectorcall] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_auto] = ACTIONS(2058), - [anon_sym_register] = ACTIONS(2058), - [anon_sym_inline] = ACTIONS(2058), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2058), - [anon_sym_const] = ACTIONS(2058), - [anon_sym_volatile] = ACTIONS(2058), - [anon_sym_restrict] = ACTIONS(2058), - [anon_sym__Atomic] = ACTIONS(2058), - [anon_sym_in] = ACTIONS(2058), - [anon_sym_out] = ACTIONS(2058), - [anon_sym_inout] = ACTIONS(2058), - [anon_sym_bycopy] = ACTIONS(2058), - [anon_sym_byref] = ACTIONS(2058), - [anon_sym_oneway] = ACTIONS(2058), - [anon_sym__Nullable] = ACTIONS(2058), - [anon_sym__Nonnull] = ACTIONS(2058), - [anon_sym__Nullable_result] = ACTIONS(2058), - [anon_sym__Null_unspecified] = ACTIONS(2058), - [anon_sym___autoreleasing] = ACTIONS(2058), - [anon_sym___nullable] = ACTIONS(2058), - [anon_sym___nonnull] = ACTIONS(2058), - [anon_sym___strong] = ACTIONS(2058), - [anon_sym___weak] = ACTIONS(2058), - [anon_sym___bridge] = ACTIONS(2058), - [anon_sym___bridge_transfer] = ACTIONS(2058), - [anon_sym___bridge_retained] = ACTIONS(2058), - [anon_sym___unsafe_unretained] = ACTIONS(2058), - [anon_sym___block] = ACTIONS(2058), - [anon_sym___kindof] = ACTIONS(2058), - [anon_sym___unused] = ACTIONS(2058), - [anon_sym__Complex] = ACTIONS(2058), - [anon_sym___complex] = ACTIONS(2058), - [anon_sym_IBOutlet] = ACTIONS(2058), - [anon_sym_IBInspectable] = ACTIONS(2058), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2058), - [anon_sym_signed] = ACTIONS(2058), - [anon_sym_unsigned] = ACTIONS(2058), - [anon_sym_long] = ACTIONS(2058), - [anon_sym_short] = ACTIONS(2058), - [sym_primitive_type] = ACTIONS(2058), - [anon_sym_enum] = ACTIONS(2058), - [anon_sym_NS_ENUM] = ACTIONS(2058), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2058), - [anon_sym_NS_OPTIONS] = ACTIONS(2058), - [anon_sym_struct] = ACTIONS(2058), - [anon_sym_union] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_switch] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2058), - [anon_sym_default] = ACTIONS(2058), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2058), - [anon_sym_break] = ACTIONS(2058), - [anon_sym_continue] = ACTIONS(2058), - [anon_sym_goto] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2060), - [anon_sym_sizeof] = ACTIONS(2058), - [sym_number_literal] = ACTIONS(2060), - [anon_sym_L_SQUOTE] = ACTIONS(2060), - [anon_sym_u_SQUOTE] = ACTIONS(2060), - [anon_sym_U_SQUOTE] = ACTIONS(2060), - [anon_sym_u8_SQUOTE] = ACTIONS(2060), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_L_DQUOTE] = ACTIONS(2060), - [anon_sym_u_DQUOTE] = ACTIONS(2060), - [anon_sym_U_DQUOTE] = ACTIONS(2060), - [anon_sym_u8_DQUOTE] = ACTIONS(2060), - [anon_sym_DQUOTE] = ACTIONS(2060), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [sym_null] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2060), - [anon_sym_ATimport] = ACTIONS(2060), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2058), - [anon_sym_ATcompatibility_alias] = ACTIONS(2060), - [anon_sym_ATprotocol] = ACTIONS(2060), - [anon_sym_ATclass] = ACTIONS(2060), - [anon_sym_ATinterface] = ACTIONS(2060), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2058), - [sym_method_attribute_specifier] = ACTIONS(2058), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2058), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE] = ACTIONS(2058), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_API_AVAILABLE] = ACTIONS(2058), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_API_DEPRECATED] = ACTIONS(2058), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2058), - [anon_sym___deprecated_msg] = ACTIONS(2058), - [anon_sym___deprecated_enum_msg] = ACTIONS(2058), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2058), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2058), - [anon_sym_ATimplementation] = ACTIONS(2060), - [anon_sym_typeof] = ACTIONS(2058), - [anon_sym___typeof] = ACTIONS(2058), - [anon_sym___typeof__] = ACTIONS(2058), - [sym_self] = ACTIONS(2058), - [sym_super] = ACTIONS(2058), - [sym_nil] = ACTIONS(2058), - [sym_id] = ACTIONS(2058), - [sym_instancetype] = ACTIONS(2058), - [sym_Class] = ACTIONS(2058), - [sym_SEL] = ACTIONS(2058), - [sym_IMP] = ACTIONS(2058), - [sym_BOOL] = ACTIONS(2058), - [sym_auto] = ACTIONS(2058), - [anon_sym_ATautoreleasepool] = ACTIONS(2060), - [anon_sym_ATsynchronized] = ACTIONS(2060), - [anon_sym_ATtry] = ACTIONS(2060), - [anon_sym_ATthrow] = ACTIONS(2060), - [anon_sym_ATselector] = ACTIONS(2060), - [anon_sym_ATencode] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [sym_YES] = ACTIONS(2058), - [sym_NO] = ACTIONS(2058), - [anon_sym___builtin_available] = ACTIONS(2058), - [anon_sym_ATavailable] = ACTIONS(2060), - [anon_sym_va_arg] = ACTIONS(2058), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1506] = { - [sym_identifier] = ACTIONS(2134), - [aux_sym_preproc_include_token1] = ACTIONS(2136), - [aux_sym_preproc_def_token1] = ACTIONS(2136), - [aux_sym_preproc_if_token1] = ACTIONS(2134), - [aux_sym_preproc_if_token2] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), - [anon_sym_LPAREN2] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_typedef] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym___attribute] = ACTIONS(2134), - [anon_sym___attribute__] = ACTIONS(2134), - [anon_sym___declspec] = ACTIONS(2134), - [anon_sym___cdecl] = ACTIONS(2134), - [anon_sym___clrcall] = ACTIONS(2134), - [anon_sym___stdcall] = ACTIONS(2134), - [anon_sym___fastcall] = ACTIONS(2134), - [anon_sym___thiscall] = ACTIONS(2134), - [anon_sym___vectorcall] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_auto] = ACTIONS(2134), - [anon_sym_register] = ACTIONS(2134), - [anon_sym_inline] = ACTIONS(2134), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [anon_sym_volatile] = ACTIONS(2134), - [anon_sym_restrict] = ACTIONS(2134), - [anon_sym__Atomic] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [anon_sym_out] = ACTIONS(2134), - [anon_sym_inout] = ACTIONS(2134), - [anon_sym_bycopy] = ACTIONS(2134), - [anon_sym_byref] = ACTIONS(2134), - [anon_sym_oneway] = ACTIONS(2134), - [anon_sym__Nullable] = ACTIONS(2134), - [anon_sym__Nonnull] = ACTIONS(2134), - [anon_sym__Nullable_result] = ACTIONS(2134), - [anon_sym__Null_unspecified] = ACTIONS(2134), - [anon_sym___autoreleasing] = ACTIONS(2134), - [anon_sym___nullable] = ACTIONS(2134), - [anon_sym___nonnull] = ACTIONS(2134), - [anon_sym___strong] = ACTIONS(2134), - [anon_sym___weak] = ACTIONS(2134), - [anon_sym___bridge] = ACTIONS(2134), - [anon_sym___bridge_transfer] = ACTIONS(2134), - [anon_sym___bridge_retained] = ACTIONS(2134), - [anon_sym___unsafe_unretained] = ACTIONS(2134), - [anon_sym___block] = ACTIONS(2134), - [anon_sym___kindof] = ACTIONS(2134), - [anon_sym___unused] = ACTIONS(2134), - [anon_sym__Complex] = ACTIONS(2134), - [anon_sym___complex] = ACTIONS(2134), - [anon_sym_IBOutlet] = ACTIONS(2134), - [anon_sym_IBInspectable] = ACTIONS(2134), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2134), - [anon_sym_signed] = ACTIONS(2134), - [anon_sym_unsigned] = ACTIONS(2134), - [anon_sym_long] = ACTIONS(2134), - [anon_sym_short] = ACTIONS(2134), - [sym_primitive_type] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_NS_ENUM] = ACTIONS(2134), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2134), - [anon_sym_NS_OPTIONS] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(2134), - [anon_sym_union] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_switch] = ACTIONS(2134), - [anon_sym_case] = ACTIONS(2134), - [anon_sym_default] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_goto] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_PLUS_PLUS] = ACTIONS(2136), - [anon_sym_sizeof] = ACTIONS(2134), - [sym_number_literal] = ACTIONS(2136), - [anon_sym_L_SQUOTE] = ACTIONS(2136), - [anon_sym_u_SQUOTE] = ACTIONS(2136), - [anon_sym_U_SQUOTE] = ACTIONS(2136), - [anon_sym_u8_SQUOTE] = ACTIONS(2136), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_L_DQUOTE] = ACTIONS(2136), - [anon_sym_u_DQUOTE] = ACTIONS(2136), - [anon_sym_U_DQUOTE] = ACTIONS(2136), - [anon_sym_u8_DQUOTE] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [sym_null] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2136), - [anon_sym_ATimport] = ACTIONS(2136), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2134), - [anon_sym_ATcompatibility_alias] = ACTIONS(2136), - [anon_sym_ATprotocol] = ACTIONS(2136), - [anon_sym_ATclass] = ACTIONS(2136), - [anon_sym_ATinterface] = ACTIONS(2136), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2134), - [sym_method_attribute_specifier] = ACTIONS(2134), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2134), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE] = ACTIONS(2134), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_API_AVAILABLE] = ACTIONS(2134), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_API_DEPRECATED] = ACTIONS(2134), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2134), - [anon_sym___deprecated_msg] = ACTIONS(2134), - [anon_sym___deprecated_enum_msg] = ACTIONS(2134), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2134), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2134), - [anon_sym_ATimplementation] = ACTIONS(2136), - [anon_sym_typeof] = ACTIONS(2134), - [anon_sym___typeof] = ACTIONS(2134), - [anon_sym___typeof__] = ACTIONS(2134), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_nil] = ACTIONS(2134), - [sym_id] = ACTIONS(2134), - [sym_instancetype] = ACTIONS(2134), - [sym_Class] = ACTIONS(2134), - [sym_SEL] = ACTIONS(2134), - [sym_IMP] = ACTIONS(2134), - [sym_BOOL] = ACTIONS(2134), - [sym_auto] = ACTIONS(2134), - [anon_sym_ATautoreleasepool] = ACTIONS(2136), - [anon_sym_ATsynchronized] = ACTIONS(2136), - [anon_sym_ATtry] = ACTIONS(2136), - [anon_sym_ATthrow] = ACTIONS(2136), - [anon_sym_ATselector] = ACTIONS(2136), - [anon_sym_ATencode] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2134), - [sym_YES] = ACTIONS(2134), - [sym_NO] = ACTIONS(2134), - [anon_sym___builtin_available] = ACTIONS(2134), - [anon_sym_ATavailable] = ACTIONS(2136), - [anon_sym_va_arg] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1507] = { - [sym_identifier] = ACTIONS(2134), - [aux_sym_preproc_include_token1] = ACTIONS(2136), - [aux_sym_preproc_def_token1] = ACTIONS(2136), - [aux_sym_preproc_if_token1] = ACTIONS(2134), - [aux_sym_preproc_if_token2] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), - [anon_sym_LPAREN2] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_typedef] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym___attribute] = ACTIONS(2134), - [anon_sym___attribute__] = ACTIONS(2134), - [anon_sym___declspec] = ACTIONS(2134), - [anon_sym___cdecl] = ACTIONS(2134), - [anon_sym___clrcall] = ACTIONS(2134), - [anon_sym___stdcall] = ACTIONS(2134), - [anon_sym___fastcall] = ACTIONS(2134), - [anon_sym___thiscall] = ACTIONS(2134), - [anon_sym___vectorcall] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_auto] = ACTIONS(2134), - [anon_sym_register] = ACTIONS(2134), - [anon_sym_inline] = ACTIONS(2134), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [anon_sym_volatile] = ACTIONS(2134), - [anon_sym_restrict] = ACTIONS(2134), - [anon_sym__Atomic] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [anon_sym_out] = ACTIONS(2134), - [anon_sym_inout] = ACTIONS(2134), - [anon_sym_bycopy] = ACTIONS(2134), - [anon_sym_byref] = ACTIONS(2134), - [anon_sym_oneway] = ACTIONS(2134), - [anon_sym__Nullable] = ACTIONS(2134), - [anon_sym__Nonnull] = ACTIONS(2134), - [anon_sym__Nullable_result] = ACTIONS(2134), - [anon_sym__Null_unspecified] = ACTIONS(2134), - [anon_sym___autoreleasing] = ACTIONS(2134), - [anon_sym___nullable] = ACTIONS(2134), - [anon_sym___nonnull] = ACTIONS(2134), - [anon_sym___strong] = ACTIONS(2134), - [anon_sym___weak] = ACTIONS(2134), - [anon_sym___bridge] = ACTIONS(2134), - [anon_sym___bridge_transfer] = ACTIONS(2134), - [anon_sym___bridge_retained] = ACTIONS(2134), - [anon_sym___unsafe_unretained] = ACTIONS(2134), - [anon_sym___block] = ACTIONS(2134), - [anon_sym___kindof] = ACTIONS(2134), - [anon_sym___unused] = ACTIONS(2134), - [anon_sym__Complex] = ACTIONS(2134), - [anon_sym___complex] = ACTIONS(2134), - [anon_sym_IBOutlet] = ACTIONS(2134), - [anon_sym_IBInspectable] = ACTIONS(2134), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2134), - [anon_sym_signed] = ACTIONS(2134), - [anon_sym_unsigned] = ACTIONS(2134), - [anon_sym_long] = ACTIONS(2134), - [anon_sym_short] = ACTIONS(2134), - [sym_primitive_type] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_NS_ENUM] = ACTIONS(2134), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2134), - [anon_sym_NS_OPTIONS] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(2134), - [anon_sym_union] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_switch] = ACTIONS(2134), - [anon_sym_case] = ACTIONS(2134), - [anon_sym_default] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_goto] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_PLUS_PLUS] = ACTIONS(2136), - [anon_sym_sizeof] = ACTIONS(2134), - [sym_number_literal] = ACTIONS(2136), - [anon_sym_L_SQUOTE] = ACTIONS(2136), - [anon_sym_u_SQUOTE] = ACTIONS(2136), - [anon_sym_U_SQUOTE] = ACTIONS(2136), - [anon_sym_u8_SQUOTE] = ACTIONS(2136), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_L_DQUOTE] = ACTIONS(2136), - [anon_sym_u_DQUOTE] = ACTIONS(2136), - [anon_sym_U_DQUOTE] = ACTIONS(2136), - [anon_sym_u8_DQUOTE] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [sym_null] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2136), - [anon_sym_ATimport] = ACTIONS(2136), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2134), - [anon_sym_ATcompatibility_alias] = ACTIONS(2136), - [anon_sym_ATprotocol] = ACTIONS(2136), - [anon_sym_ATclass] = ACTIONS(2136), - [anon_sym_ATinterface] = ACTIONS(2136), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2134), - [sym_method_attribute_specifier] = ACTIONS(2134), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2134), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE] = ACTIONS(2134), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_API_AVAILABLE] = ACTIONS(2134), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_API_DEPRECATED] = ACTIONS(2134), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2134), - [anon_sym___deprecated_msg] = ACTIONS(2134), - [anon_sym___deprecated_enum_msg] = ACTIONS(2134), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2134), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2134), - [anon_sym_ATimplementation] = ACTIONS(2136), - [anon_sym_typeof] = ACTIONS(2134), - [anon_sym___typeof] = ACTIONS(2134), - [anon_sym___typeof__] = ACTIONS(2134), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_nil] = ACTIONS(2134), - [sym_id] = ACTIONS(2134), - [sym_instancetype] = ACTIONS(2134), - [sym_Class] = ACTIONS(2134), - [sym_SEL] = ACTIONS(2134), - [sym_IMP] = ACTIONS(2134), - [sym_BOOL] = ACTIONS(2134), - [sym_auto] = ACTIONS(2134), - [anon_sym_ATautoreleasepool] = ACTIONS(2136), - [anon_sym_ATsynchronized] = ACTIONS(2136), - [anon_sym_ATtry] = ACTIONS(2136), - [anon_sym_ATthrow] = ACTIONS(2136), - [anon_sym_ATselector] = ACTIONS(2136), - [anon_sym_ATencode] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2134), - [sym_YES] = ACTIONS(2134), - [sym_NO] = ACTIONS(2134), - [anon_sym___builtin_available] = ACTIONS(2134), - [anon_sym_ATavailable] = ACTIONS(2136), - [anon_sym_va_arg] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1508] = { - [sym_identifier] = ACTIONS(2058), - [aux_sym_preproc_include_token1] = ACTIONS(2060), - [aux_sym_preproc_def_token1] = ACTIONS(2060), - [aux_sym_preproc_if_token1] = ACTIONS(2058), - [aux_sym_preproc_if_token2] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2058), - [anon_sym_LPAREN2] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_typedef] = ACTIONS(2058), - [anon_sym_extern] = ACTIONS(2058), - [anon_sym___attribute] = ACTIONS(2058), - [anon_sym___attribute__] = ACTIONS(2058), - [anon_sym___declspec] = ACTIONS(2058), - [anon_sym___cdecl] = ACTIONS(2058), - [anon_sym___clrcall] = ACTIONS(2058), - [anon_sym___stdcall] = ACTIONS(2058), - [anon_sym___fastcall] = ACTIONS(2058), - [anon_sym___thiscall] = ACTIONS(2058), - [anon_sym___vectorcall] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_auto] = ACTIONS(2058), - [anon_sym_register] = ACTIONS(2058), - [anon_sym_inline] = ACTIONS(2058), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2058), - [anon_sym_const] = ACTIONS(2058), - [anon_sym_volatile] = ACTIONS(2058), - [anon_sym_restrict] = ACTIONS(2058), - [anon_sym__Atomic] = ACTIONS(2058), - [anon_sym_in] = ACTIONS(2058), - [anon_sym_out] = ACTIONS(2058), - [anon_sym_inout] = ACTIONS(2058), - [anon_sym_bycopy] = ACTIONS(2058), - [anon_sym_byref] = ACTIONS(2058), - [anon_sym_oneway] = ACTIONS(2058), - [anon_sym__Nullable] = ACTIONS(2058), - [anon_sym__Nonnull] = ACTIONS(2058), - [anon_sym__Nullable_result] = ACTIONS(2058), - [anon_sym__Null_unspecified] = ACTIONS(2058), - [anon_sym___autoreleasing] = ACTIONS(2058), - [anon_sym___nullable] = ACTIONS(2058), - [anon_sym___nonnull] = ACTIONS(2058), - [anon_sym___strong] = ACTIONS(2058), - [anon_sym___weak] = ACTIONS(2058), - [anon_sym___bridge] = ACTIONS(2058), - [anon_sym___bridge_transfer] = ACTIONS(2058), - [anon_sym___bridge_retained] = ACTIONS(2058), - [anon_sym___unsafe_unretained] = ACTIONS(2058), - [anon_sym___block] = ACTIONS(2058), - [anon_sym___kindof] = ACTIONS(2058), - [anon_sym___unused] = ACTIONS(2058), - [anon_sym__Complex] = ACTIONS(2058), - [anon_sym___complex] = ACTIONS(2058), - [anon_sym_IBOutlet] = ACTIONS(2058), - [anon_sym_IBInspectable] = ACTIONS(2058), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2058), - [anon_sym_signed] = ACTIONS(2058), - [anon_sym_unsigned] = ACTIONS(2058), - [anon_sym_long] = ACTIONS(2058), - [anon_sym_short] = ACTIONS(2058), - [sym_primitive_type] = ACTIONS(2058), - [anon_sym_enum] = ACTIONS(2058), - [anon_sym_NS_ENUM] = ACTIONS(2058), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2058), - [anon_sym_NS_OPTIONS] = ACTIONS(2058), - [anon_sym_struct] = ACTIONS(2058), - [anon_sym_union] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_switch] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2058), - [anon_sym_default] = ACTIONS(2058), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2058), - [anon_sym_break] = ACTIONS(2058), - [anon_sym_continue] = ACTIONS(2058), - [anon_sym_goto] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2060), - [anon_sym_sizeof] = ACTIONS(2058), - [sym_number_literal] = ACTIONS(2060), - [anon_sym_L_SQUOTE] = ACTIONS(2060), - [anon_sym_u_SQUOTE] = ACTIONS(2060), - [anon_sym_U_SQUOTE] = ACTIONS(2060), - [anon_sym_u8_SQUOTE] = ACTIONS(2060), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_L_DQUOTE] = ACTIONS(2060), - [anon_sym_u_DQUOTE] = ACTIONS(2060), - [anon_sym_U_DQUOTE] = ACTIONS(2060), - [anon_sym_u8_DQUOTE] = ACTIONS(2060), - [anon_sym_DQUOTE] = ACTIONS(2060), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [sym_null] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2060), - [anon_sym_ATimport] = ACTIONS(2060), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2058), - [anon_sym_ATcompatibility_alias] = ACTIONS(2060), - [anon_sym_ATprotocol] = ACTIONS(2060), - [anon_sym_ATclass] = ACTIONS(2060), - [anon_sym_ATinterface] = ACTIONS(2060), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2058), - [sym_method_attribute_specifier] = ACTIONS(2058), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2058), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE] = ACTIONS(2058), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_API_AVAILABLE] = ACTIONS(2058), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_API_DEPRECATED] = ACTIONS(2058), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2058), - [anon_sym___deprecated_msg] = ACTIONS(2058), - [anon_sym___deprecated_enum_msg] = ACTIONS(2058), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2058), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2058), - [anon_sym_ATimplementation] = ACTIONS(2060), - [anon_sym_typeof] = ACTIONS(2058), - [anon_sym___typeof] = ACTIONS(2058), - [anon_sym___typeof__] = ACTIONS(2058), - [sym_self] = ACTIONS(2058), - [sym_super] = ACTIONS(2058), - [sym_nil] = ACTIONS(2058), - [sym_id] = ACTIONS(2058), - [sym_instancetype] = ACTIONS(2058), - [sym_Class] = ACTIONS(2058), - [sym_SEL] = ACTIONS(2058), - [sym_IMP] = ACTIONS(2058), - [sym_BOOL] = ACTIONS(2058), - [sym_auto] = ACTIONS(2058), - [anon_sym_ATautoreleasepool] = ACTIONS(2060), - [anon_sym_ATsynchronized] = ACTIONS(2060), - [anon_sym_ATtry] = ACTIONS(2060), - [anon_sym_ATthrow] = ACTIONS(2060), - [anon_sym_ATselector] = ACTIONS(2060), - [anon_sym_ATencode] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [sym_YES] = ACTIONS(2058), - [sym_NO] = ACTIONS(2058), - [anon_sym___builtin_available] = ACTIONS(2058), - [anon_sym_ATavailable] = ACTIONS(2060), - [anon_sym_va_arg] = ACTIONS(2058), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1509] = { - [sym_identifier] = ACTIONS(2058), - [aux_sym_preproc_include_token1] = ACTIONS(2060), - [aux_sym_preproc_def_token1] = ACTIONS(2060), - [aux_sym_preproc_if_token1] = ACTIONS(2058), - [aux_sym_preproc_if_token2] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2058), - [anon_sym_LPAREN2] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_typedef] = ACTIONS(2058), - [anon_sym_extern] = ACTIONS(2058), - [anon_sym___attribute] = ACTIONS(2058), - [anon_sym___attribute__] = ACTIONS(2058), - [anon_sym___declspec] = ACTIONS(2058), - [anon_sym___cdecl] = ACTIONS(2058), - [anon_sym___clrcall] = ACTIONS(2058), - [anon_sym___stdcall] = ACTIONS(2058), - [anon_sym___fastcall] = ACTIONS(2058), - [anon_sym___thiscall] = ACTIONS(2058), - [anon_sym___vectorcall] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_auto] = ACTIONS(2058), - [anon_sym_register] = ACTIONS(2058), - [anon_sym_inline] = ACTIONS(2058), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2058), - [anon_sym_const] = ACTIONS(2058), - [anon_sym_volatile] = ACTIONS(2058), - [anon_sym_restrict] = ACTIONS(2058), - [anon_sym__Atomic] = ACTIONS(2058), - [anon_sym_in] = ACTIONS(2058), - [anon_sym_out] = ACTIONS(2058), - [anon_sym_inout] = ACTIONS(2058), - [anon_sym_bycopy] = ACTIONS(2058), - [anon_sym_byref] = ACTIONS(2058), - [anon_sym_oneway] = ACTIONS(2058), - [anon_sym__Nullable] = ACTIONS(2058), - [anon_sym__Nonnull] = ACTIONS(2058), - [anon_sym__Nullable_result] = ACTIONS(2058), - [anon_sym__Null_unspecified] = ACTIONS(2058), - [anon_sym___autoreleasing] = ACTIONS(2058), - [anon_sym___nullable] = ACTIONS(2058), - [anon_sym___nonnull] = ACTIONS(2058), - [anon_sym___strong] = ACTIONS(2058), - [anon_sym___weak] = ACTIONS(2058), - [anon_sym___bridge] = ACTIONS(2058), - [anon_sym___bridge_transfer] = ACTIONS(2058), - [anon_sym___bridge_retained] = ACTIONS(2058), - [anon_sym___unsafe_unretained] = ACTIONS(2058), - [anon_sym___block] = ACTIONS(2058), - [anon_sym___kindof] = ACTIONS(2058), - [anon_sym___unused] = ACTIONS(2058), - [anon_sym__Complex] = ACTIONS(2058), - [anon_sym___complex] = ACTIONS(2058), - [anon_sym_IBOutlet] = ACTIONS(2058), - [anon_sym_IBInspectable] = ACTIONS(2058), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2058), - [anon_sym_signed] = ACTIONS(2058), - [anon_sym_unsigned] = ACTIONS(2058), - [anon_sym_long] = ACTIONS(2058), - [anon_sym_short] = ACTIONS(2058), - [sym_primitive_type] = ACTIONS(2058), - [anon_sym_enum] = ACTIONS(2058), - [anon_sym_NS_ENUM] = ACTIONS(2058), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2058), - [anon_sym_NS_OPTIONS] = ACTIONS(2058), - [anon_sym_struct] = ACTIONS(2058), - [anon_sym_union] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_switch] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2058), - [anon_sym_default] = ACTIONS(2058), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2058), - [anon_sym_break] = ACTIONS(2058), - [anon_sym_continue] = ACTIONS(2058), - [anon_sym_goto] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2060), - [anon_sym_sizeof] = ACTIONS(2058), - [sym_number_literal] = ACTIONS(2060), - [anon_sym_L_SQUOTE] = ACTIONS(2060), - [anon_sym_u_SQUOTE] = ACTIONS(2060), - [anon_sym_U_SQUOTE] = ACTIONS(2060), - [anon_sym_u8_SQUOTE] = ACTIONS(2060), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_L_DQUOTE] = ACTIONS(2060), - [anon_sym_u_DQUOTE] = ACTIONS(2060), - [anon_sym_U_DQUOTE] = ACTIONS(2060), - [anon_sym_u8_DQUOTE] = ACTIONS(2060), - [anon_sym_DQUOTE] = ACTIONS(2060), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [sym_null] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2060), - [anon_sym_ATimport] = ACTIONS(2060), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2058), - [anon_sym_ATcompatibility_alias] = ACTIONS(2060), - [anon_sym_ATprotocol] = ACTIONS(2060), - [anon_sym_ATclass] = ACTIONS(2060), - [anon_sym_ATinterface] = ACTIONS(2060), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2058), - [sym_method_attribute_specifier] = ACTIONS(2058), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2058), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE] = ACTIONS(2058), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_API_AVAILABLE] = ACTIONS(2058), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_API_DEPRECATED] = ACTIONS(2058), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2058), - [anon_sym___deprecated_msg] = ACTIONS(2058), - [anon_sym___deprecated_enum_msg] = ACTIONS(2058), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2058), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2058), - [anon_sym_ATimplementation] = ACTIONS(2060), - [anon_sym_typeof] = ACTIONS(2058), - [anon_sym___typeof] = ACTIONS(2058), - [anon_sym___typeof__] = ACTIONS(2058), - [sym_self] = ACTIONS(2058), - [sym_super] = ACTIONS(2058), - [sym_nil] = ACTIONS(2058), - [sym_id] = ACTIONS(2058), - [sym_instancetype] = ACTIONS(2058), - [sym_Class] = ACTIONS(2058), - [sym_SEL] = ACTIONS(2058), - [sym_IMP] = ACTIONS(2058), - [sym_BOOL] = ACTIONS(2058), - [sym_auto] = ACTIONS(2058), - [anon_sym_ATautoreleasepool] = ACTIONS(2060), - [anon_sym_ATsynchronized] = ACTIONS(2060), - [anon_sym_ATtry] = ACTIONS(2060), - [anon_sym_ATthrow] = ACTIONS(2060), - [anon_sym_ATselector] = ACTIONS(2060), - [anon_sym_ATencode] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [sym_YES] = ACTIONS(2058), - [sym_NO] = ACTIONS(2058), - [anon_sym___builtin_available] = ACTIONS(2058), - [anon_sym_ATavailable] = ACTIONS(2060), - [anon_sym_va_arg] = ACTIONS(2058), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1510] = { - [sym_identifier] = ACTIONS(2134), - [aux_sym_preproc_include_token1] = ACTIONS(2136), - [aux_sym_preproc_def_token1] = ACTIONS(2136), - [aux_sym_preproc_if_token1] = ACTIONS(2134), - [aux_sym_preproc_if_token2] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2134), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2134), - [anon_sym_LPAREN2] = ACTIONS(2136), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2134), - [anon_sym_PLUS] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2136), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_SEMI] = ACTIONS(2136), - [anon_sym_typedef] = ACTIONS(2134), - [anon_sym_extern] = ACTIONS(2134), - [anon_sym___attribute] = ACTIONS(2134), - [anon_sym___attribute__] = ACTIONS(2134), - [anon_sym___declspec] = ACTIONS(2134), - [anon_sym___cdecl] = ACTIONS(2134), - [anon_sym___clrcall] = ACTIONS(2134), - [anon_sym___stdcall] = ACTIONS(2134), - [anon_sym___fastcall] = ACTIONS(2134), - [anon_sym___thiscall] = ACTIONS(2134), - [anon_sym___vectorcall] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2134), - [anon_sym_auto] = ACTIONS(2134), - [anon_sym_register] = ACTIONS(2134), - [anon_sym_inline] = ACTIONS(2134), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2134), - [anon_sym_const] = ACTIONS(2134), - [anon_sym_volatile] = ACTIONS(2134), - [anon_sym_restrict] = ACTIONS(2134), - [anon_sym__Atomic] = ACTIONS(2134), - [anon_sym_in] = ACTIONS(2134), - [anon_sym_out] = ACTIONS(2134), - [anon_sym_inout] = ACTIONS(2134), - [anon_sym_bycopy] = ACTIONS(2134), - [anon_sym_byref] = ACTIONS(2134), - [anon_sym_oneway] = ACTIONS(2134), - [anon_sym__Nullable] = ACTIONS(2134), - [anon_sym__Nonnull] = ACTIONS(2134), - [anon_sym__Nullable_result] = ACTIONS(2134), - [anon_sym__Null_unspecified] = ACTIONS(2134), - [anon_sym___autoreleasing] = ACTIONS(2134), - [anon_sym___nullable] = ACTIONS(2134), - [anon_sym___nonnull] = ACTIONS(2134), - [anon_sym___strong] = ACTIONS(2134), - [anon_sym___weak] = ACTIONS(2134), - [anon_sym___bridge] = ACTIONS(2134), - [anon_sym___bridge_transfer] = ACTIONS(2134), - [anon_sym___bridge_retained] = ACTIONS(2134), - [anon_sym___unsafe_unretained] = ACTIONS(2134), - [anon_sym___block] = ACTIONS(2134), - [anon_sym___kindof] = ACTIONS(2134), - [anon_sym___unused] = ACTIONS(2134), - [anon_sym__Complex] = ACTIONS(2134), - [anon_sym___complex] = ACTIONS(2134), - [anon_sym_IBOutlet] = ACTIONS(2134), - [anon_sym_IBInspectable] = ACTIONS(2134), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2134), - [anon_sym_signed] = ACTIONS(2134), - [anon_sym_unsigned] = ACTIONS(2134), - [anon_sym_long] = ACTIONS(2134), - [anon_sym_short] = ACTIONS(2134), - [sym_primitive_type] = ACTIONS(2134), - [anon_sym_enum] = ACTIONS(2134), - [anon_sym_NS_ENUM] = ACTIONS(2134), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2134), - [anon_sym_NS_OPTIONS] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(2134), - [anon_sym_union] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2134), - [anon_sym_switch] = ACTIONS(2134), - [anon_sym_case] = ACTIONS(2134), - [anon_sym_default] = ACTIONS(2134), - [anon_sym_while] = ACTIONS(2134), - [anon_sym_do] = ACTIONS(2134), - [anon_sym_for] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_goto] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2136), - [anon_sym_PLUS_PLUS] = ACTIONS(2136), - [anon_sym_sizeof] = ACTIONS(2134), - [sym_number_literal] = ACTIONS(2136), - [anon_sym_L_SQUOTE] = ACTIONS(2136), - [anon_sym_u_SQUOTE] = ACTIONS(2136), - [anon_sym_U_SQUOTE] = ACTIONS(2136), - [anon_sym_u8_SQUOTE] = ACTIONS(2136), - [anon_sym_SQUOTE] = ACTIONS(2136), - [anon_sym_L_DQUOTE] = ACTIONS(2136), - [anon_sym_u_DQUOTE] = ACTIONS(2136), - [anon_sym_U_DQUOTE] = ACTIONS(2136), - [anon_sym_u8_DQUOTE] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym_true] = ACTIONS(2134), - [sym_false] = ACTIONS(2134), - [sym_null] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2136), - [anon_sym_ATimport] = ACTIONS(2136), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2134), - [anon_sym_ATcompatibility_alias] = ACTIONS(2136), - [anon_sym_ATprotocol] = ACTIONS(2136), - [anon_sym_ATclass] = ACTIONS(2136), - [anon_sym_ATinterface] = ACTIONS(2136), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2134), - [sym_method_attribute_specifier] = ACTIONS(2134), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2134), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2134), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE] = ACTIONS(2134), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2134), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_API_AVAILABLE] = ACTIONS(2134), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_API_DEPRECATED] = ACTIONS(2134), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2134), - [anon_sym___deprecated_msg] = ACTIONS(2134), - [anon_sym___deprecated_enum_msg] = ACTIONS(2134), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2134), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2134), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2134), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2134), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2134), - [anon_sym_ATimplementation] = ACTIONS(2136), - [anon_sym_typeof] = ACTIONS(2134), - [anon_sym___typeof] = ACTIONS(2134), - [anon_sym___typeof__] = ACTIONS(2134), - [sym_self] = ACTIONS(2134), - [sym_super] = ACTIONS(2134), - [sym_nil] = ACTIONS(2134), - [sym_id] = ACTIONS(2134), - [sym_instancetype] = ACTIONS(2134), - [sym_Class] = ACTIONS(2134), - [sym_SEL] = ACTIONS(2134), - [sym_IMP] = ACTIONS(2134), - [sym_BOOL] = ACTIONS(2134), - [sym_auto] = ACTIONS(2134), - [anon_sym_ATautoreleasepool] = ACTIONS(2136), - [anon_sym_ATsynchronized] = ACTIONS(2136), - [anon_sym_ATtry] = ACTIONS(2136), - [anon_sym_ATthrow] = ACTIONS(2136), - [anon_sym_ATselector] = ACTIONS(2136), - [anon_sym_ATencode] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2134), - [sym_YES] = ACTIONS(2134), - [sym_NO] = ACTIONS(2134), - [anon_sym___builtin_available] = ACTIONS(2134), - [anon_sym_ATavailable] = ACTIONS(2136), - [anon_sym_va_arg] = ACTIONS(2134), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1511] = { - [sym_identifier] = ACTIONS(2058), - [aux_sym_preproc_include_token1] = ACTIONS(2060), - [aux_sym_preproc_def_token1] = ACTIONS(2060), - [aux_sym_preproc_if_token1] = ACTIONS(2058), - [aux_sym_preproc_if_token2] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2058), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2058), - [anon_sym_LPAREN2] = ACTIONS(2060), - [anon_sym_BANG] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2060), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2060), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_typedef] = ACTIONS(2058), - [anon_sym_extern] = ACTIONS(2058), - [anon_sym___attribute] = ACTIONS(2058), - [anon_sym___attribute__] = ACTIONS(2058), - [anon_sym___declspec] = ACTIONS(2058), - [anon_sym___cdecl] = ACTIONS(2058), - [anon_sym___clrcall] = ACTIONS(2058), - [anon_sym___stdcall] = ACTIONS(2058), - [anon_sym___fastcall] = ACTIONS(2058), - [anon_sym___thiscall] = ACTIONS(2058), - [anon_sym___vectorcall] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_auto] = ACTIONS(2058), - [anon_sym_register] = ACTIONS(2058), - [anon_sym_inline] = ACTIONS(2058), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2058), - [anon_sym_const] = ACTIONS(2058), - [anon_sym_volatile] = ACTIONS(2058), - [anon_sym_restrict] = ACTIONS(2058), - [anon_sym__Atomic] = ACTIONS(2058), - [anon_sym_in] = ACTIONS(2058), - [anon_sym_out] = ACTIONS(2058), - [anon_sym_inout] = ACTIONS(2058), - [anon_sym_bycopy] = ACTIONS(2058), - [anon_sym_byref] = ACTIONS(2058), - [anon_sym_oneway] = ACTIONS(2058), - [anon_sym__Nullable] = ACTIONS(2058), - [anon_sym__Nonnull] = ACTIONS(2058), - [anon_sym__Nullable_result] = ACTIONS(2058), - [anon_sym__Null_unspecified] = ACTIONS(2058), - [anon_sym___autoreleasing] = ACTIONS(2058), - [anon_sym___nullable] = ACTIONS(2058), - [anon_sym___nonnull] = ACTIONS(2058), - [anon_sym___strong] = ACTIONS(2058), - [anon_sym___weak] = ACTIONS(2058), - [anon_sym___bridge] = ACTIONS(2058), - [anon_sym___bridge_transfer] = ACTIONS(2058), - [anon_sym___bridge_retained] = ACTIONS(2058), - [anon_sym___unsafe_unretained] = ACTIONS(2058), - [anon_sym___block] = ACTIONS(2058), - [anon_sym___kindof] = ACTIONS(2058), - [anon_sym___unused] = ACTIONS(2058), - [anon_sym__Complex] = ACTIONS(2058), - [anon_sym___complex] = ACTIONS(2058), - [anon_sym_IBOutlet] = ACTIONS(2058), - [anon_sym_IBInspectable] = ACTIONS(2058), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2058), - [anon_sym_signed] = ACTIONS(2058), - [anon_sym_unsigned] = ACTIONS(2058), - [anon_sym_long] = ACTIONS(2058), - [anon_sym_short] = ACTIONS(2058), - [sym_primitive_type] = ACTIONS(2058), - [anon_sym_enum] = ACTIONS(2058), - [anon_sym_NS_ENUM] = ACTIONS(2058), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2058), - [anon_sym_NS_OPTIONS] = ACTIONS(2058), - [anon_sym_struct] = ACTIONS(2058), - [anon_sym_union] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_switch] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2058), - [anon_sym_default] = ACTIONS(2058), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2058), - [anon_sym_break] = ACTIONS(2058), - [anon_sym_continue] = ACTIONS(2058), - [anon_sym_goto] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2060), - [anon_sym_PLUS_PLUS] = ACTIONS(2060), - [anon_sym_sizeof] = ACTIONS(2058), - [sym_number_literal] = ACTIONS(2060), - [anon_sym_L_SQUOTE] = ACTIONS(2060), - [anon_sym_u_SQUOTE] = ACTIONS(2060), - [anon_sym_U_SQUOTE] = ACTIONS(2060), - [anon_sym_u8_SQUOTE] = ACTIONS(2060), - [anon_sym_SQUOTE] = ACTIONS(2060), - [anon_sym_L_DQUOTE] = ACTIONS(2060), - [anon_sym_u_DQUOTE] = ACTIONS(2060), - [anon_sym_U_DQUOTE] = ACTIONS(2060), - [anon_sym_u8_DQUOTE] = ACTIONS(2060), - [anon_sym_DQUOTE] = ACTIONS(2060), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [sym_null] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2060), - [anon_sym_ATimport] = ACTIONS(2060), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2058), - [anon_sym_ATcompatibility_alias] = ACTIONS(2060), - [anon_sym_ATprotocol] = ACTIONS(2060), - [anon_sym_ATclass] = ACTIONS(2060), - [anon_sym_ATinterface] = ACTIONS(2060), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2058), - [sym_method_attribute_specifier] = ACTIONS(2058), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2058), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2058), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE] = ACTIONS(2058), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2058), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_API_AVAILABLE] = ACTIONS(2058), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_API_DEPRECATED] = ACTIONS(2058), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2058), - [anon_sym___deprecated_msg] = ACTIONS(2058), - [anon_sym___deprecated_enum_msg] = ACTIONS(2058), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2058), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2058), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2058), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2058), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2058), - [anon_sym_ATimplementation] = ACTIONS(2060), - [anon_sym_typeof] = ACTIONS(2058), - [anon_sym___typeof] = ACTIONS(2058), - [anon_sym___typeof__] = ACTIONS(2058), - [sym_self] = ACTIONS(2058), - [sym_super] = ACTIONS(2058), - [sym_nil] = ACTIONS(2058), - [sym_id] = ACTIONS(2058), - [sym_instancetype] = ACTIONS(2058), - [sym_Class] = ACTIONS(2058), - [sym_SEL] = ACTIONS(2058), - [sym_IMP] = ACTIONS(2058), - [sym_BOOL] = ACTIONS(2058), - [sym_auto] = ACTIONS(2058), - [anon_sym_ATautoreleasepool] = ACTIONS(2060), - [anon_sym_ATsynchronized] = ACTIONS(2060), - [anon_sym_ATtry] = ACTIONS(2060), - [anon_sym_ATthrow] = ACTIONS(2060), - [anon_sym_ATselector] = ACTIONS(2060), - [anon_sym_ATencode] = ACTIONS(2060), - [anon_sym_AT] = ACTIONS(2058), - [sym_YES] = ACTIONS(2058), - [sym_NO] = ACTIONS(2058), - [anon_sym___builtin_available] = ACTIONS(2058), - [anon_sym_ATavailable] = ACTIONS(2060), - [anon_sym_va_arg] = ACTIONS(2058), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1512] = { - [sym_identifier] = ACTIONS(1802), - [aux_sym_preproc_include_token1] = ACTIONS(1804), - [aux_sym_preproc_def_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token1] = ACTIONS(1802), - [aux_sym_preproc_if_token2] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1802), - [anon_sym_LPAREN2] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_PLUS] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1802), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym___attribute] = ACTIONS(1802), - [anon_sym___attribute__] = ACTIONS(1802), - [anon_sym___declspec] = ACTIONS(1802), - [anon_sym___cdecl] = ACTIONS(1802), - [anon_sym___clrcall] = ACTIONS(1802), - [anon_sym___stdcall] = ACTIONS(1802), - [anon_sym___fastcall] = ACTIONS(1802), - [anon_sym___thiscall] = ACTIONS(1802), - [anon_sym___vectorcall] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_auto] = ACTIONS(1802), - [anon_sym_register] = ACTIONS(1802), - [anon_sym_inline] = ACTIONS(1802), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_volatile] = ACTIONS(1802), - [anon_sym_restrict] = ACTIONS(1802), - [anon_sym__Atomic] = ACTIONS(1802), - [anon_sym_in] = ACTIONS(1802), - [anon_sym_out] = ACTIONS(1802), - [anon_sym_inout] = ACTIONS(1802), - [anon_sym_bycopy] = ACTIONS(1802), - [anon_sym_byref] = ACTIONS(1802), - [anon_sym_oneway] = ACTIONS(1802), - [anon_sym__Nullable] = ACTIONS(1802), - [anon_sym__Nonnull] = ACTIONS(1802), - [anon_sym__Nullable_result] = ACTIONS(1802), - [anon_sym__Null_unspecified] = ACTIONS(1802), - [anon_sym___autoreleasing] = ACTIONS(1802), - [anon_sym___nullable] = ACTIONS(1802), - [anon_sym___nonnull] = ACTIONS(1802), - [anon_sym___strong] = ACTIONS(1802), - [anon_sym___weak] = ACTIONS(1802), - [anon_sym___bridge] = ACTIONS(1802), - [anon_sym___bridge_transfer] = ACTIONS(1802), - [anon_sym___bridge_retained] = ACTIONS(1802), - [anon_sym___unsafe_unretained] = ACTIONS(1802), - [anon_sym___block] = ACTIONS(1802), - [anon_sym___kindof] = ACTIONS(1802), - [anon_sym___unused] = ACTIONS(1802), - [anon_sym__Complex] = ACTIONS(1802), - [anon_sym___complex] = ACTIONS(1802), - [anon_sym_IBOutlet] = ACTIONS(1802), - [anon_sym_IBInspectable] = ACTIONS(1802), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1802), - [anon_sym_signed] = ACTIONS(1802), - [anon_sym_unsigned] = ACTIONS(1802), - [anon_sym_long] = ACTIONS(1802), - [anon_sym_short] = ACTIONS(1802), - [sym_primitive_type] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_NS_ENUM] = ACTIONS(1802), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1802), - [anon_sym_NS_OPTIONS] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_do] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1804), - [anon_sym_sizeof] = ACTIONS(1802), - [sym_number_literal] = ACTIONS(1804), - [anon_sym_L_SQUOTE] = ACTIONS(1804), - [anon_sym_u_SQUOTE] = ACTIONS(1804), - [anon_sym_U_SQUOTE] = ACTIONS(1804), - [anon_sym_u8_SQUOTE] = ACTIONS(1804), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_L_DQUOTE] = ACTIONS(1804), - [anon_sym_u_DQUOTE] = ACTIONS(1804), - [anon_sym_U_DQUOTE] = ACTIONS(1804), - [anon_sym_u8_DQUOTE] = ACTIONS(1804), - [anon_sym_DQUOTE] = ACTIONS(1804), - [sym_true] = ACTIONS(1802), - [sym_false] = ACTIONS(1802), - [sym_null] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1804), - [anon_sym_ATimport] = ACTIONS(1804), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1802), - [anon_sym_ATcompatibility_alias] = ACTIONS(1804), - [anon_sym_ATprotocol] = ACTIONS(1804), - [anon_sym_ATclass] = ACTIONS(1804), - [anon_sym_ATinterface] = ACTIONS(1804), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1802), - [sym_method_attribute_specifier] = ACTIONS(1802), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1802), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1802), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE] = ACTIONS(1802), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1802), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_API_AVAILABLE] = ACTIONS(1802), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_API_DEPRECATED] = ACTIONS(1802), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1802), - [anon_sym___deprecated_msg] = ACTIONS(1802), - [anon_sym___deprecated_enum_msg] = ACTIONS(1802), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1802), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1802), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1802), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1802), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1802), - [anon_sym_ATimplementation] = ACTIONS(1804), - [anon_sym_typeof] = ACTIONS(1802), - [anon_sym___typeof] = ACTIONS(1802), - [anon_sym___typeof__] = ACTIONS(1802), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_nil] = ACTIONS(1802), - [sym_id] = ACTIONS(1802), - [sym_instancetype] = ACTIONS(1802), - [sym_Class] = ACTIONS(1802), - [sym_SEL] = ACTIONS(1802), - [sym_IMP] = ACTIONS(1802), - [sym_BOOL] = ACTIONS(1802), - [sym_auto] = ACTIONS(1802), - [anon_sym_ATautoreleasepool] = ACTIONS(1804), - [anon_sym_ATsynchronized] = ACTIONS(1804), - [anon_sym_ATtry] = ACTIONS(1804), - [anon_sym_ATthrow] = ACTIONS(1804), - [anon_sym_ATselector] = ACTIONS(1804), - [anon_sym_ATencode] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1802), - [sym_YES] = ACTIONS(1802), - [sym_NO] = ACTIONS(1802), - [anon_sym___builtin_available] = ACTIONS(1802), - [anon_sym_ATavailable] = ACTIONS(1804), - [anon_sym_va_arg] = ACTIONS(1802), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1513] = { - [sym_identifier] = ACTIONS(2138), - [aux_sym_preproc_include_token1] = ACTIONS(2140), - [aux_sym_preproc_def_token1] = ACTIONS(2140), - [aux_sym_preproc_if_token1] = ACTIONS(2138), - [aux_sym_preproc_if_token2] = ACTIONS(2138), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), - [anon_sym_LPAREN2] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_typedef] = ACTIONS(2138), - [anon_sym_extern] = ACTIONS(2138), - [anon_sym___attribute] = ACTIONS(2138), - [anon_sym___attribute__] = ACTIONS(2138), - [anon_sym___declspec] = ACTIONS(2138), - [anon_sym___cdecl] = ACTIONS(2138), - [anon_sym___clrcall] = ACTIONS(2138), - [anon_sym___stdcall] = ACTIONS(2138), - [anon_sym___fastcall] = ACTIONS(2138), - [anon_sym___thiscall] = ACTIONS(2138), - [anon_sym___vectorcall] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2138), - [anon_sym_auto] = ACTIONS(2138), - [anon_sym_register] = ACTIONS(2138), - [anon_sym_inline] = ACTIONS(2138), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_volatile] = ACTIONS(2138), - [anon_sym_restrict] = ACTIONS(2138), - [anon_sym__Atomic] = ACTIONS(2138), - [anon_sym_in] = ACTIONS(2138), - [anon_sym_out] = ACTIONS(2138), - [anon_sym_inout] = ACTIONS(2138), - [anon_sym_bycopy] = ACTIONS(2138), - [anon_sym_byref] = ACTIONS(2138), - [anon_sym_oneway] = ACTIONS(2138), - [anon_sym__Nullable] = ACTIONS(2138), - [anon_sym__Nonnull] = ACTIONS(2138), - [anon_sym__Nullable_result] = ACTIONS(2138), - [anon_sym__Null_unspecified] = ACTIONS(2138), - [anon_sym___autoreleasing] = ACTIONS(2138), - [anon_sym___nullable] = ACTIONS(2138), - [anon_sym___nonnull] = ACTIONS(2138), - [anon_sym___strong] = ACTIONS(2138), - [anon_sym___weak] = ACTIONS(2138), - [anon_sym___bridge] = ACTIONS(2138), - [anon_sym___bridge_transfer] = ACTIONS(2138), - [anon_sym___bridge_retained] = ACTIONS(2138), - [anon_sym___unsafe_unretained] = ACTIONS(2138), - [anon_sym___block] = ACTIONS(2138), - [anon_sym___kindof] = ACTIONS(2138), - [anon_sym___unused] = ACTIONS(2138), - [anon_sym__Complex] = ACTIONS(2138), - [anon_sym___complex] = ACTIONS(2138), - [anon_sym_IBOutlet] = ACTIONS(2138), - [anon_sym_IBInspectable] = ACTIONS(2138), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2138), - [anon_sym_signed] = ACTIONS(2138), - [anon_sym_unsigned] = ACTIONS(2138), - [anon_sym_long] = ACTIONS(2138), - [anon_sym_short] = ACTIONS(2138), - [sym_primitive_type] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [anon_sym_NS_ENUM] = ACTIONS(2138), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2138), - [anon_sym_NS_OPTIONS] = ACTIONS(2138), - [anon_sym_struct] = ACTIONS(2138), - [anon_sym_union] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_case] = ACTIONS(2138), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_goto] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_sizeof] = ACTIONS(2138), - [sym_number_literal] = ACTIONS(2140), - [anon_sym_L_SQUOTE] = ACTIONS(2140), - [anon_sym_u_SQUOTE] = ACTIONS(2140), - [anon_sym_U_SQUOTE] = ACTIONS(2140), - [anon_sym_u8_SQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_L_DQUOTE] = ACTIONS(2140), - [anon_sym_u_DQUOTE] = ACTIONS(2140), - [anon_sym_U_DQUOTE] = ACTIONS(2140), - [anon_sym_u8_DQUOTE] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [sym_true] = ACTIONS(2138), - [sym_false] = ACTIONS(2138), - [sym_null] = ACTIONS(2138), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2140), - [anon_sym_ATimport] = ACTIONS(2140), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2138), - [anon_sym_ATcompatibility_alias] = ACTIONS(2140), - [anon_sym_ATprotocol] = ACTIONS(2140), - [anon_sym_ATclass] = ACTIONS(2140), - [anon_sym_ATinterface] = ACTIONS(2140), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2138), - [sym_method_attribute_specifier] = ACTIONS(2138), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2138), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2138), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2138), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2138), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2138), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2138), - [anon_sym_NS_AVAILABLE] = ACTIONS(2138), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2138), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2138), - [anon_sym_API_AVAILABLE] = ACTIONS(2138), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2138), - [anon_sym_API_DEPRECATED] = ACTIONS(2138), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2138), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2138), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2138), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2138), - [anon_sym___deprecated_msg] = ACTIONS(2138), - [anon_sym___deprecated_enum_msg] = ACTIONS(2138), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2138), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2138), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2138), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2138), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2138), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2138), - [anon_sym_ATimplementation] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2138), - [anon_sym___typeof] = ACTIONS(2138), - [anon_sym___typeof__] = ACTIONS(2138), - [sym_self] = ACTIONS(2138), - [sym_super] = ACTIONS(2138), - [sym_nil] = ACTIONS(2138), - [sym_id] = ACTIONS(2138), - [sym_instancetype] = ACTIONS(2138), - [sym_Class] = ACTIONS(2138), - [sym_SEL] = ACTIONS(2138), - [sym_IMP] = ACTIONS(2138), - [sym_BOOL] = ACTIONS(2138), - [sym_auto] = ACTIONS(2138), - [anon_sym_ATautoreleasepool] = ACTIONS(2140), - [anon_sym_ATsynchronized] = ACTIONS(2140), - [anon_sym_ATtry] = ACTIONS(2140), - [anon_sym_ATthrow] = ACTIONS(2140), - [anon_sym_ATselector] = ACTIONS(2140), - [anon_sym_ATencode] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2138), - [sym_YES] = ACTIONS(2138), - [sym_NO] = ACTIONS(2138), - [anon_sym___builtin_available] = ACTIONS(2138), - [anon_sym_ATavailable] = ACTIONS(2140), - [anon_sym_va_arg] = ACTIONS(2138), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1514] = { - [sym_identifier] = ACTIONS(1746), - [aux_sym_preproc_include_token1] = ACTIONS(1748), - [aux_sym_preproc_def_token1] = ACTIONS(1748), - [aux_sym_preproc_if_token1] = ACTIONS(1746), - [aux_sym_preproc_if_token2] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym___attribute] = ACTIONS(1746), - [anon_sym___attribute__] = ACTIONS(1746), - [anon_sym___declspec] = ACTIONS(1746), - [anon_sym___cdecl] = ACTIONS(1746), - [anon_sym___clrcall] = ACTIONS(1746), - [anon_sym___stdcall] = ACTIONS(1746), - [anon_sym___fastcall] = ACTIONS(1746), - [anon_sym___thiscall] = ACTIONS(1746), - [anon_sym___vectorcall] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1746), - [anon_sym_register] = ACTIONS(1746), - [anon_sym_inline] = ACTIONS(1746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_restrict] = ACTIONS(1746), - [anon_sym__Atomic] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_out] = ACTIONS(1746), - [anon_sym_inout] = ACTIONS(1746), - [anon_sym_bycopy] = ACTIONS(1746), - [anon_sym_byref] = ACTIONS(1746), - [anon_sym_oneway] = ACTIONS(1746), - [anon_sym__Nullable] = ACTIONS(1746), - [anon_sym__Nonnull] = ACTIONS(1746), - [anon_sym__Nullable_result] = ACTIONS(1746), - [anon_sym__Null_unspecified] = ACTIONS(1746), - [anon_sym___autoreleasing] = ACTIONS(1746), - [anon_sym___nullable] = ACTIONS(1746), - [anon_sym___nonnull] = ACTIONS(1746), - [anon_sym___strong] = ACTIONS(1746), - [anon_sym___weak] = ACTIONS(1746), - [anon_sym___bridge] = ACTIONS(1746), - [anon_sym___bridge_transfer] = ACTIONS(1746), - [anon_sym___bridge_retained] = ACTIONS(1746), - [anon_sym___unsafe_unretained] = ACTIONS(1746), - [anon_sym___block] = ACTIONS(1746), - [anon_sym___kindof] = ACTIONS(1746), - [anon_sym___unused] = ACTIONS(1746), - [anon_sym__Complex] = ACTIONS(1746), - [anon_sym___complex] = ACTIONS(1746), - [anon_sym_IBOutlet] = ACTIONS(1746), - [anon_sym_IBInspectable] = ACTIONS(1746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1746), - [anon_sym_unsigned] = ACTIONS(1746), - [anon_sym_long] = ACTIONS(1746), - [anon_sym_short] = ACTIONS(1746), - [sym_primitive_type] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_NS_ENUM] = ACTIONS(1746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1746), - [anon_sym_NS_OPTIONS] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_goto] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_sizeof] = ACTIONS(1746), - [sym_number_literal] = ACTIONS(1748), - [anon_sym_L_SQUOTE] = ACTIONS(1748), - [anon_sym_u_SQUOTE] = ACTIONS(1748), - [anon_sym_U_SQUOTE] = ACTIONS(1748), - [anon_sym_u8_SQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_L_DQUOTE] = ACTIONS(1748), - [anon_sym_u_DQUOTE] = ACTIONS(1748), - [anon_sym_U_DQUOTE] = ACTIONS(1748), - [anon_sym_u8_DQUOTE] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1748), - [anon_sym_ATimport] = ACTIONS(1748), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1746), - [anon_sym_ATcompatibility_alias] = ACTIONS(1748), - [anon_sym_ATprotocol] = ACTIONS(1748), - [anon_sym_ATclass] = ACTIONS(1748), - [anon_sym_ATinterface] = ACTIONS(1748), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1746), - [sym_method_attribute_specifier] = ACTIONS(1746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE] = ACTIONS(1746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_API_AVAILABLE] = ACTIONS(1746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_API_DEPRECATED] = ACTIONS(1746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1746), - [anon_sym___deprecated_msg] = ACTIONS(1746), - [anon_sym___deprecated_enum_msg] = ACTIONS(1746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1746), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1746), - [anon_sym_ATimplementation] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym___typeof] = ACTIONS(1746), - [anon_sym___typeof__] = ACTIONS(1746), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_nil] = ACTIONS(1746), - [sym_id] = ACTIONS(1746), - [sym_instancetype] = ACTIONS(1746), - [sym_Class] = ACTIONS(1746), - [sym_SEL] = ACTIONS(1746), - [sym_IMP] = ACTIONS(1746), - [sym_BOOL] = ACTIONS(1746), - [sym_auto] = ACTIONS(1746), - [anon_sym_ATautoreleasepool] = ACTIONS(1748), - [anon_sym_ATsynchronized] = ACTIONS(1748), - [anon_sym_ATtry] = ACTIONS(1748), - [anon_sym_ATthrow] = ACTIONS(1748), - [anon_sym_ATselector] = ACTIONS(1748), - [anon_sym_ATencode] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1746), - [sym_YES] = ACTIONS(1746), - [sym_NO] = ACTIONS(1746), - [anon_sym___builtin_available] = ACTIONS(1746), - [anon_sym_ATavailable] = ACTIONS(1748), - [anon_sym_va_arg] = ACTIONS(1746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1515] = { - [sym_identifier] = ACTIONS(1746), - [aux_sym_preproc_include_token1] = ACTIONS(1748), - [aux_sym_preproc_def_token1] = ACTIONS(1748), - [aux_sym_preproc_if_token1] = ACTIONS(1746), - [aux_sym_preproc_if_token2] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym___attribute] = ACTIONS(1746), - [anon_sym___attribute__] = ACTIONS(1746), - [anon_sym___declspec] = ACTIONS(1746), - [anon_sym___cdecl] = ACTIONS(1746), - [anon_sym___clrcall] = ACTIONS(1746), - [anon_sym___stdcall] = ACTIONS(1746), - [anon_sym___fastcall] = ACTIONS(1746), - [anon_sym___thiscall] = ACTIONS(1746), - [anon_sym___vectorcall] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1746), - [anon_sym_register] = ACTIONS(1746), - [anon_sym_inline] = ACTIONS(1746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_restrict] = ACTIONS(1746), - [anon_sym__Atomic] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_out] = ACTIONS(1746), - [anon_sym_inout] = ACTIONS(1746), - [anon_sym_bycopy] = ACTIONS(1746), - [anon_sym_byref] = ACTIONS(1746), - [anon_sym_oneway] = ACTIONS(1746), - [anon_sym__Nullable] = ACTIONS(1746), - [anon_sym__Nonnull] = ACTIONS(1746), - [anon_sym__Nullable_result] = ACTIONS(1746), - [anon_sym__Null_unspecified] = ACTIONS(1746), - [anon_sym___autoreleasing] = ACTIONS(1746), - [anon_sym___nullable] = ACTIONS(1746), - [anon_sym___nonnull] = ACTIONS(1746), - [anon_sym___strong] = ACTIONS(1746), - [anon_sym___weak] = ACTIONS(1746), - [anon_sym___bridge] = ACTIONS(1746), - [anon_sym___bridge_transfer] = ACTIONS(1746), - [anon_sym___bridge_retained] = ACTIONS(1746), - [anon_sym___unsafe_unretained] = ACTIONS(1746), - [anon_sym___block] = ACTIONS(1746), - [anon_sym___kindof] = ACTIONS(1746), - [anon_sym___unused] = ACTIONS(1746), - [anon_sym__Complex] = ACTIONS(1746), - [anon_sym___complex] = ACTIONS(1746), - [anon_sym_IBOutlet] = ACTIONS(1746), - [anon_sym_IBInspectable] = ACTIONS(1746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1746), - [anon_sym_unsigned] = ACTIONS(1746), - [anon_sym_long] = ACTIONS(1746), - [anon_sym_short] = ACTIONS(1746), - [sym_primitive_type] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_NS_ENUM] = ACTIONS(1746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1746), - [anon_sym_NS_OPTIONS] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_goto] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_sizeof] = ACTIONS(1746), - [sym_number_literal] = ACTIONS(1748), - [anon_sym_L_SQUOTE] = ACTIONS(1748), - [anon_sym_u_SQUOTE] = ACTIONS(1748), - [anon_sym_U_SQUOTE] = ACTIONS(1748), - [anon_sym_u8_SQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_L_DQUOTE] = ACTIONS(1748), - [anon_sym_u_DQUOTE] = ACTIONS(1748), - [anon_sym_U_DQUOTE] = ACTIONS(1748), - [anon_sym_u8_DQUOTE] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1748), - [anon_sym_ATimport] = ACTIONS(1748), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1746), - [anon_sym_ATcompatibility_alias] = ACTIONS(1748), - [anon_sym_ATprotocol] = ACTIONS(1748), - [anon_sym_ATclass] = ACTIONS(1748), - [anon_sym_ATinterface] = ACTIONS(1748), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1746), - [sym_method_attribute_specifier] = ACTIONS(1746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE] = ACTIONS(1746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_API_AVAILABLE] = ACTIONS(1746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_API_DEPRECATED] = ACTIONS(1746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1746), - [anon_sym___deprecated_msg] = ACTIONS(1746), - [anon_sym___deprecated_enum_msg] = ACTIONS(1746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1746), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1746), - [anon_sym_ATimplementation] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym___typeof] = ACTIONS(1746), - [anon_sym___typeof__] = ACTIONS(1746), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_nil] = ACTIONS(1746), - [sym_id] = ACTIONS(1746), - [sym_instancetype] = ACTIONS(1746), - [sym_Class] = ACTIONS(1746), - [sym_SEL] = ACTIONS(1746), - [sym_IMP] = ACTIONS(1746), - [sym_BOOL] = ACTIONS(1746), - [sym_auto] = ACTIONS(1746), - [anon_sym_ATautoreleasepool] = ACTIONS(1748), - [anon_sym_ATsynchronized] = ACTIONS(1748), - [anon_sym_ATtry] = ACTIONS(1748), - [anon_sym_ATthrow] = ACTIONS(1748), - [anon_sym_ATselector] = ACTIONS(1748), - [anon_sym_ATencode] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1746), - [sym_YES] = ACTIONS(1746), - [sym_NO] = ACTIONS(1746), - [anon_sym___builtin_available] = ACTIONS(1746), - [anon_sym_ATavailable] = ACTIONS(1748), - [anon_sym_va_arg] = ACTIONS(1746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1516] = { - [sym_identifier] = ACTIONS(1766), - [aux_sym_preproc_include_token1] = ACTIONS(1768), - [aux_sym_preproc_def_token1] = ACTIONS(1768), - [aux_sym_preproc_if_token1] = ACTIONS(1766), - [aux_sym_preproc_if_token2] = ACTIONS(1766), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1766), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1766), - [anon_sym_LPAREN2] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1768), - [anon_sym_TILDE] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1766), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_CARET] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(1768), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_typedef] = ACTIONS(1766), - [anon_sym_extern] = ACTIONS(1766), - [anon_sym___attribute] = ACTIONS(1766), - [anon_sym___attribute__] = ACTIONS(1766), - [anon_sym___declspec] = ACTIONS(1766), - [anon_sym___cdecl] = ACTIONS(1766), - [anon_sym___clrcall] = ACTIONS(1766), - [anon_sym___stdcall] = ACTIONS(1766), - [anon_sym___fastcall] = ACTIONS(1766), - [anon_sym___thiscall] = ACTIONS(1766), - [anon_sym___vectorcall] = ACTIONS(1766), - [anon_sym_LBRACE] = ACTIONS(1768), - [anon_sym_LBRACK] = ACTIONS(1768), - [anon_sym_static] = ACTIONS(1766), - [anon_sym_auto] = ACTIONS(1766), - [anon_sym_register] = ACTIONS(1766), - [anon_sym_inline] = ACTIONS(1766), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1766), - [anon_sym_const] = ACTIONS(1766), - [anon_sym_volatile] = ACTIONS(1766), - [anon_sym_restrict] = ACTIONS(1766), - [anon_sym__Atomic] = ACTIONS(1766), - [anon_sym_in] = ACTIONS(1766), - [anon_sym_out] = ACTIONS(1766), - [anon_sym_inout] = ACTIONS(1766), - [anon_sym_bycopy] = ACTIONS(1766), - [anon_sym_byref] = ACTIONS(1766), - [anon_sym_oneway] = ACTIONS(1766), - [anon_sym__Nullable] = ACTIONS(1766), - [anon_sym__Nonnull] = ACTIONS(1766), - [anon_sym__Nullable_result] = ACTIONS(1766), - [anon_sym__Null_unspecified] = ACTIONS(1766), - [anon_sym___autoreleasing] = ACTIONS(1766), - [anon_sym___nullable] = ACTIONS(1766), - [anon_sym___nonnull] = ACTIONS(1766), - [anon_sym___strong] = ACTIONS(1766), - [anon_sym___weak] = ACTIONS(1766), - [anon_sym___bridge] = ACTIONS(1766), - [anon_sym___bridge_transfer] = ACTIONS(1766), - [anon_sym___bridge_retained] = ACTIONS(1766), - [anon_sym___unsafe_unretained] = ACTIONS(1766), - [anon_sym___block] = ACTIONS(1766), - [anon_sym___kindof] = ACTIONS(1766), - [anon_sym___unused] = ACTIONS(1766), - [anon_sym__Complex] = ACTIONS(1766), - [anon_sym___complex] = ACTIONS(1766), - [anon_sym_IBOutlet] = ACTIONS(1766), - [anon_sym_IBInspectable] = ACTIONS(1766), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1766), - [anon_sym_signed] = ACTIONS(1766), - [anon_sym_unsigned] = ACTIONS(1766), - [anon_sym_long] = ACTIONS(1766), - [anon_sym_short] = ACTIONS(1766), - [sym_primitive_type] = ACTIONS(1766), - [anon_sym_enum] = ACTIONS(1766), - [anon_sym_NS_ENUM] = ACTIONS(1766), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1766), - [anon_sym_NS_OPTIONS] = ACTIONS(1766), - [anon_sym_struct] = ACTIONS(1766), - [anon_sym_union] = ACTIONS(1766), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(1766), - [anon_sym_case] = ACTIONS(1766), - [anon_sym_default] = ACTIONS(1766), - [anon_sym_while] = ACTIONS(1766), - [anon_sym_do] = ACTIONS(1766), - [anon_sym_for] = ACTIONS(1766), - [anon_sym_return] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1766), - [anon_sym_continue] = ACTIONS(1766), - [anon_sym_goto] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1768), - [anon_sym_PLUS_PLUS] = ACTIONS(1768), - [anon_sym_sizeof] = ACTIONS(1766), - [sym_number_literal] = ACTIONS(1768), - [anon_sym_L_SQUOTE] = ACTIONS(1768), - [anon_sym_u_SQUOTE] = ACTIONS(1768), - [anon_sym_U_SQUOTE] = ACTIONS(1768), - [anon_sym_u8_SQUOTE] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_L_DQUOTE] = ACTIONS(1768), - [anon_sym_u_DQUOTE] = ACTIONS(1768), - [anon_sym_U_DQUOTE] = ACTIONS(1768), - [anon_sym_u8_DQUOTE] = ACTIONS(1768), - [anon_sym_DQUOTE] = ACTIONS(1768), - [sym_true] = ACTIONS(1766), - [sym_false] = ACTIONS(1766), - [sym_null] = ACTIONS(1766), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1768), - [anon_sym_ATimport] = ACTIONS(1768), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1766), - [anon_sym_ATcompatibility_alias] = ACTIONS(1768), - [anon_sym_ATprotocol] = ACTIONS(1768), - [anon_sym_ATclass] = ACTIONS(1768), - [anon_sym_ATinterface] = ACTIONS(1768), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1766), - [sym_method_attribute_specifier] = ACTIONS(1766), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1766), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1766), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1766), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1766), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1766), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1766), - [anon_sym_NS_AVAILABLE] = ACTIONS(1766), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1766), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1766), - [anon_sym_API_AVAILABLE] = ACTIONS(1766), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1766), - [anon_sym_API_DEPRECATED] = ACTIONS(1766), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1766), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1766), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1766), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1766), - [anon_sym___deprecated_msg] = ACTIONS(1766), - [anon_sym___deprecated_enum_msg] = ACTIONS(1766), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1766), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1766), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1766), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1766), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1766), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1766), - [anon_sym_ATimplementation] = ACTIONS(1768), - [anon_sym_typeof] = ACTIONS(1766), - [anon_sym___typeof] = ACTIONS(1766), - [anon_sym___typeof__] = ACTIONS(1766), - [sym_self] = ACTIONS(1766), - [sym_super] = ACTIONS(1766), - [sym_nil] = ACTIONS(1766), - [sym_id] = ACTIONS(1766), - [sym_instancetype] = ACTIONS(1766), - [sym_Class] = ACTIONS(1766), - [sym_SEL] = ACTIONS(1766), - [sym_IMP] = ACTIONS(1766), - [sym_BOOL] = ACTIONS(1766), - [sym_auto] = ACTIONS(1766), - [anon_sym_ATautoreleasepool] = ACTIONS(1768), - [anon_sym_ATsynchronized] = ACTIONS(1768), - [anon_sym_ATtry] = ACTIONS(1768), - [anon_sym_ATthrow] = ACTIONS(1768), - [anon_sym_ATselector] = ACTIONS(1768), - [anon_sym_ATencode] = ACTIONS(1768), - [anon_sym_AT] = ACTIONS(1766), - [sym_YES] = ACTIONS(1766), - [sym_NO] = ACTIONS(1766), - [anon_sym___builtin_available] = ACTIONS(1766), - [anon_sym_ATavailable] = ACTIONS(1768), - [anon_sym_va_arg] = ACTIONS(1766), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1517] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1518] = { - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_include_token1] = ACTIONS(1948), - [aux_sym_preproc_def_token1] = ACTIONS(1948), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym___cdecl] = ACTIONS(1946), - [anon_sym___clrcall] = ACTIONS(1946), - [anon_sym___stdcall] = ACTIONS(1946), - [anon_sym___fastcall] = ACTIONS(1946), - [anon_sym___thiscall] = ACTIONS(1946), - [anon_sym___vectorcall] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_out] = ACTIONS(1946), - [anon_sym_inout] = ACTIONS(1946), - [anon_sym_bycopy] = ACTIONS(1946), - [anon_sym_byref] = ACTIONS(1946), - [anon_sym_oneway] = ACTIONS(1946), - [anon_sym__Nullable] = ACTIONS(1946), - [anon_sym__Nonnull] = ACTIONS(1946), - [anon_sym__Nullable_result] = ACTIONS(1946), - [anon_sym__Null_unspecified] = ACTIONS(1946), - [anon_sym___autoreleasing] = ACTIONS(1946), - [anon_sym___nullable] = ACTIONS(1946), - [anon_sym___nonnull] = ACTIONS(1946), - [anon_sym___strong] = ACTIONS(1946), - [anon_sym___weak] = ACTIONS(1946), - [anon_sym___bridge] = ACTIONS(1946), - [anon_sym___bridge_transfer] = ACTIONS(1946), - [anon_sym___bridge_retained] = ACTIONS(1946), - [anon_sym___unsafe_unretained] = ACTIONS(1946), - [anon_sym___block] = ACTIONS(1946), - [anon_sym___kindof] = ACTIONS(1946), - [anon_sym___unused] = ACTIONS(1946), - [anon_sym__Complex] = ACTIONS(1946), - [anon_sym___complex] = ACTIONS(1946), - [anon_sym_IBOutlet] = ACTIONS(1946), - [anon_sym_IBInspectable] = ACTIONS(1946), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1946), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_NS_ENUM] = ACTIONS(1946), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1946), - [anon_sym_NS_OPTIONS] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_goto] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1948), - [anon_sym_sizeof] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(1948), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1948), - [anon_sym_u_DQUOTE] = ACTIONS(1948), - [anon_sym_U_DQUOTE] = ACTIONS(1948), - [anon_sym_u8_DQUOTE] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym_true] = ACTIONS(1946), - [sym_false] = ACTIONS(1946), - [sym_null] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1948), - [anon_sym_ATimport] = ACTIONS(1948), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1946), - [anon_sym_ATcompatibility_alias] = ACTIONS(1948), - [anon_sym_ATprotocol] = ACTIONS(1948), - [anon_sym_ATclass] = ACTIONS(1948), - [anon_sym_ATinterface] = ACTIONS(1948), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1946), - [sym_method_attribute_specifier] = ACTIONS(1946), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1946), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE] = ACTIONS(1946), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_API_AVAILABLE] = ACTIONS(1946), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_API_DEPRECATED] = ACTIONS(1946), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1946), - [anon_sym___deprecated_msg] = ACTIONS(1946), - [anon_sym___deprecated_enum_msg] = ACTIONS(1946), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1946), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1946), - [anon_sym_ATimplementation] = ACTIONS(1948), - [anon_sym_typeof] = ACTIONS(1946), - [anon_sym___typeof] = ACTIONS(1946), - [anon_sym___typeof__] = ACTIONS(1946), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_nil] = ACTIONS(1946), - [sym_id] = ACTIONS(1946), - [sym_instancetype] = ACTIONS(1946), - [sym_Class] = ACTIONS(1946), - [sym_SEL] = ACTIONS(1946), - [sym_IMP] = ACTIONS(1946), - [sym_BOOL] = ACTIONS(1946), - [sym_auto] = ACTIONS(1946), - [anon_sym_ATautoreleasepool] = ACTIONS(1948), - [anon_sym_ATsynchronized] = ACTIONS(1948), - [anon_sym_ATtry] = ACTIONS(1948), - [anon_sym_ATthrow] = ACTIONS(1948), - [anon_sym_ATselector] = ACTIONS(1948), - [anon_sym_ATencode] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [sym_YES] = ACTIONS(1946), - [sym_NO] = ACTIONS(1946), - [anon_sym___builtin_available] = ACTIONS(1946), - [anon_sym_ATavailable] = ACTIONS(1948), - [anon_sym_va_arg] = ACTIONS(1946), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1519] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1520] = { - [sym_identifier] = ACTIONS(2062), - [aux_sym_preproc_include_token1] = ACTIONS(2064), - [aux_sym_preproc_def_token1] = ACTIONS(2064), - [aux_sym_preproc_if_token1] = ACTIONS(2062), - [aux_sym_preproc_if_token2] = ACTIONS(2062), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2062), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2062), - [anon_sym_LPAREN2] = ACTIONS(2064), - [anon_sym_BANG] = ACTIONS(2064), - [anon_sym_TILDE] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2064), - [anon_sym_CARET] = ACTIONS(2064), - [anon_sym_AMP] = ACTIONS(2064), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_typedef] = ACTIONS(2062), - [anon_sym_extern] = ACTIONS(2062), - [anon_sym___attribute] = ACTIONS(2062), - [anon_sym___attribute__] = ACTIONS(2062), - [anon_sym___declspec] = ACTIONS(2062), - [anon_sym___cdecl] = ACTIONS(2062), - [anon_sym___clrcall] = ACTIONS(2062), - [anon_sym___stdcall] = ACTIONS(2062), - [anon_sym___fastcall] = ACTIONS(2062), - [anon_sym___thiscall] = ACTIONS(2062), - [anon_sym___vectorcall] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_LBRACK] = ACTIONS(2064), - [anon_sym_static] = ACTIONS(2062), - [anon_sym_auto] = ACTIONS(2062), - [anon_sym_register] = ACTIONS(2062), - [anon_sym_inline] = ACTIONS(2062), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2062), - [anon_sym_const] = ACTIONS(2062), - [anon_sym_volatile] = ACTIONS(2062), - [anon_sym_restrict] = ACTIONS(2062), - [anon_sym__Atomic] = ACTIONS(2062), - [anon_sym_in] = ACTIONS(2062), - [anon_sym_out] = ACTIONS(2062), - [anon_sym_inout] = ACTIONS(2062), - [anon_sym_bycopy] = ACTIONS(2062), - [anon_sym_byref] = ACTIONS(2062), - [anon_sym_oneway] = ACTIONS(2062), - [anon_sym__Nullable] = ACTIONS(2062), - [anon_sym__Nonnull] = ACTIONS(2062), - [anon_sym__Nullable_result] = ACTIONS(2062), - [anon_sym__Null_unspecified] = ACTIONS(2062), - [anon_sym___autoreleasing] = ACTIONS(2062), - [anon_sym___nullable] = ACTIONS(2062), - [anon_sym___nonnull] = ACTIONS(2062), - [anon_sym___strong] = ACTIONS(2062), - [anon_sym___weak] = ACTIONS(2062), - [anon_sym___bridge] = ACTIONS(2062), - [anon_sym___bridge_transfer] = ACTIONS(2062), - [anon_sym___bridge_retained] = ACTIONS(2062), - [anon_sym___unsafe_unretained] = ACTIONS(2062), - [anon_sym___block] = ACTIONS(2062), - [anon_sym___kindof] = ACTIONS(2062), - [anon_sym___unused] = ACTIONS(2062), - [anon_sym__Complex] = ACTIONS(2062), - [anon_sym___complex] = ACTIONS(2062), - [anon_sym_IBOutlet] = ACTIONS(2062), - [anon_sym_IBInspectable] = ACTIONS(2062), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2062), - [anon_sym_signed] = ACTIONS(2062), - [anon_sym_unsigned] = ACTIONS(2062), - [anon_sym_long] = ACTIONS(2062), - [anon_sym_short] = ACTIONS(2062), - [sym_primitive_type] = ACTIONS(2062), - [anon_sym_enum] = ACTIONS(2062), - [anon_sym_NS_ENUM] = ACTIONS(2062), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2062), - [anon_sym_NS_OPTIONS] = ACTIONS(2062), - [anon_sym_struct] = ACTIONS(2062), - [anon_sym_union] = ACTIONS(2062), - [anon_sym_if] = ACTIONS(2062), - [anon_sym_switch] = ACTIONS(2062), - [anon_sym_case] = ACTIONS(2062), - [anon_sym_default] = ACTIONS(2062), - [anon_sym_while] = ACTIONS(2062), - [anon_sym_do] = ACTIONS(2062), - [anon_sym_for] = ACTIONS(2062), - [anon_sym_return] = ACTIONS(2062), - [anon_sym_break] = ACTIONS(2062), - [anon_sym_continue] = ACTIONS(2062), - [anon_sym_goto] = ACTIONS(2062), - [anon_sym_DASH_DASH] = ACTIONS(2064), - [anon_sym_PLUS_PLUS] = ACTIONS(2064), - [anon_sym_sizeof] = ACTIONS(2062), - [sym_number_literal] = ACTIONS(2064), - [anon_sym_L_SQUOTE] = ACTIONS(2064), - [anon_sym_u_SQUOTE] = ACTIONS(2064), - [anon_sym_U_SQUOTE] = ACTIONS(2064), - [anon_sym_u8_SQUOTE] = ACTIONS(2064), - [anon_sym_SQUOTE] = ACTIONS(2064), - [anon_sym_L_DQUOTE] = ACTIONS(2064), - [anon_sym_u_DQUOTE] = ACTIONS(2064), - [anon_sym_U_DQUOTE] = ACTIONS(2064), - [anon_sym_u8_DQUOTE] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2064), - [sym_true] = ACTIONS(2062), - [sym_false] = ACTIONS(2062), - [sym_null] = ACTIONS(2062), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2064), - [anon_sym_ATimport] = ACTIONS(2064), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2062), - [anon_sym_ATcompatibility_alias] = ACTIONS(2064), - [anon_sym_ATprotocol] = ACTIONS(2064), - [anon_sym_ATclass] = ACTIONS(2064), - [anon_sym_ATinterface] = ACTIONS(2064), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2062), - [sym_method_attribute_specifier] = ACTIONS(2062), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2062), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2062), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2062), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2062), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2062), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2062), - [anon_sym_NS_AVAILABLE] = ACTIONS(2062), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2062), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2062), - [anon_sym_API_AVAILABLE] = ACTIONS(2062), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2062), - [anon_sym_API_DEPRECATED] = ACTIONS(2062), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2062), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2062), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2062), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2062), - [anon_sym___deprecated_msg] = ACTIONS(2062), - [anon_sym___deprecated_enum_msg] = ACTIONS(2062), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2062), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2062), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2062), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2062), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2062), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2062), - [anon_sym_ATimplementation] = ACTIONS(2064), - [anon_sym_typeof] = ACTIONS(2062), - [anon_sym___typeof] = ACTIONS(2062), - [anon_sym___typeof__] = ACTIONS(2062), - [sym_self] = ACTIONS(2062), - [sym_super] = ACTIONS(2062), - [sym_nil] = ACTIONS(2062), - [sym_id] = ACTIONS(2062), - [sym_instancetype] = ACTIONS(2062), - [sym_Class] = ACTIONS(2062), - [sym_SEL] = ACTIONS(2062), - [sym_IMP] = ACTIONS(2062), - [sym_BOOL] = ACTIONS(2062), - [sym_auto] = ACTIONS(2062), - [anon_sym_ATautoreleasepool] = ACTIONS(2064), - [anon_sym_ATsynchronized] = ACTIONS(2064), - [anon_sym_ATtry] = ACTIONS(2064), - [anon_sym_ATthrow] = ACTIONS(2064), - [anon_sym_ATselector] = ACTIONS(2064), - [anon_sym_ATencode] = ACTIONS(2064), - [anon_sym_AT] = ACTIONS(2062), - [sym_YES] = ACTIONS(2062), - [sym_NO] = ACTIONS(2062), - [anon_sym___builtin_available] = ACTIONS(2062), - [anon_sym_ATavailable] = ACTIONS(2064), - [anon_sym_va_arg] = ACTIONS(2062), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1521] = { - [sym_identifier] = ACTIONS(1942), - [aux_sym_preproc_include_token1] = ACTIONS(1944), - [aux_sym_preproc_def_token1] = ACTIONS(1944), - [aux_sym_preproc_if_token1] = ACTIONS(1942), - [aux_sym_preproc_if_token2] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1942), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1942), - [anon_sym_LPAREN2] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(1944), - [anon_sym_TILDE] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1942), - [anon_sym_PLUS] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym_typedef] = ACTIONS(1942), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___declspec] = ACTIONS(1942), - [anon_sym___cdecl] = ACTIONS(1942), - [anon_sym___clrcall] = ACTIONS(1942), - [anon_sym___stdcall] = ACTIONS(1942), - [anon_sym___fastcall] = ACTIONS(1942), - [anon_sym___thiscall] = ACTIONS(1942), - [anon_sym___vectorcall] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1944), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_auto] = ACTIONS(1942), - [anon_sym_register] = ACTIONS(1942), - [anon_sym_inline] = ACTIONS(1942), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_volatile] = ACTIONS(1942), - [anon_sym_restrict] = ACTIONS(1942), - [anon_sym__Atomic] = ACTIONS(1942), - [anon_sym_in] = ACTIONS(1942), - [anon_sym_out] = ACTIONS(1942), - [anon_sym_inout] = ACTIONS(1942), - [anon_sym_bycopy] = ACTIONS(1942), - [anon_sym_byref] = ACTIONS(1942), - [anon_sym_oneway] = ACTIONS(1942), - [anon_sym__Nullable] = ACTIONS(1942), - [anon_sym__Nonnull] = ACTIONS(1942), - [anon_sym__Nullable_result] = ACTIONS(1942), - [anon_sym__Null_unspecified] = ACTIONS(1942), - [anon_sym___autoreleasing] = ACTIONS(1942), - [anon_sym___nullable] = ACTIONS(1942), - [anon_sym___nonnull] = ACTIONS(1942), - [anon_sym___strong] = ACTIONS(1942), - [anon_sym___weak] = ACTIONS(1942), - [anon_sym___bridge] = ACTIONS(1942), - [anon_sym___bridge_transfer] = ACTIONS(1942), - [anon_sym___bridge_retained] = ACTIONS(1942), - [anon_sym___unsafe_unretained] = ACTIONS(1942), - [anon_sym___block] = ACTIONS(1942), - [anon_sym___kindof] = ACTIONS(1942), - [anon_sym___unused] = ACTIONS(1942), - [anon_sym__Complex] = ACTIONS(1942), - [anon_sym___complex] = ACTIONS(1942), - [anon_sym_IBOutlet] = ACTIONS(1942), - [anon_sym_IBInspectable] = ACTIONS(1942), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1942), - [anon_sym_signed] = ACTIONS(1942), - [anon_sym_unsigned] = ACTIONS(1942), - [anon_sym_long] = ACTIONS(1942), - [anon_sym_short] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_NS_ENUM] = ACTIONS(1942), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1942), - [anon_sym_NS_OPTIONS] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_switch] = ACTIONS(1942), - [anon_sym_case] = ACTIONS(1942), - [anon_sym_default] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_do] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_goto] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1944), - [anon_sym_PLUS_PLUS] = ACTIONS(1944), - [anon_sym_sizeof] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1944), - [anon_sym_L_SQUOTE] = ACTIONS(1944), - [anon_sym_u_SQUOTE] = ACTIONS(1944), - [anon_sym_U_SQUOTE] = ACTIONS(1944), - [anon_sym_u8_SQUOTE] = ACTIONS(1944), - [anon_sym_SQUOTE] = ACTIONS(1944), - [anon_sym_L_DQUOTE] = ACTIONS(1944), - [anon_sym_u_DQUOTE] = ACTIONS(1944), - [anon_sym_U_DQUOTE] = ACTIONS(1944), - [anon_sym_u8_DQUOTE] = ACTIONS(1944), - [anon_sym_DQUOTE] = ACTIONS(1944), - [sym_true] = ACTIONS(1942), - [sym_false] = ACTIONS(1942), - [sym_null] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1944), - [anon_sym_ATimport] = ACTIONS(1944), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1942), - [anon_sym_ATcompatibility_alias] = ACTIONS(1944), - [anon_sym_ATprotocol] = ACTIONS(1944), - [anon_sym_ATclass] = ACTIONS(1944), - [anon_sym_ATinterface] = ACTIONS(1944), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1942), - [sym_method_attribute_specifier] = ACTIONS(1942), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1942), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1942), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1942), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1942), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1942), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1942), - [anon_sym_NS_AVAILABLE] = ACTIONS(1942), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1942), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1942), - [anon_sym_API_AVAILABLE] = ACTIONS(1942), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1942), - [anon_sym_API_DEPRECATED] = ACTIONS(1942), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1942), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1942), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1942), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1942), - [anon_sym___deprecated_msg] = ACTIONS(1942), - [anon_sym___deprecated_enum_msg] = ACTIONS(1942), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1942), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1942), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1942), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1942), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1942), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1942), - [anon_sym_ATimplementation] = ACTIONS(1944), - [anon_sym_typeof] = ACTIONS(1942), - [anon_sym___typeof] = ACTIONS(1942), - [anon_sym___typeof__] = ACTIONS(1942), - [sym_self] = ACTIONS(1942), - [sym_super] = ACTIONS(1942), - [sym_nil] = ACTIONS(1942), - [sym_id] = ACTIONS(1942), - [sym_instancetype] = ACTIONS(1942), - [sym_Class] = ACTIONS(1942), - [sym_SEL] = ACTIONS(1942), - [sym_IMP] = ACTIONS(1942), - [sym_BOOL] = ACTIONS(1942), - [sym_auto] = ACTIONS(1942), - [anon_sym_ATautoreleasepool] = ACTIONS(1944), - [anon_sym_ATsynchronized] = ACTIONS(1944), - [anon_sym_ATtry] = ACTIONS(1944), - [anon_sym_ATthrow] = ACTIONS(1944), - [anon_sym_ATselector] = ACTIONS(1944), - [anon_sym_ATencode] = ACTIONS(1944), - [anon_sym_AT] = ACTIONS(1942), - [sym_YES] = ACTIONS(1942), - [sym_NO] = ACTIONS(1942), - [anon_sym___builtin_available] = ACTIONS(1942), - [anon_sym_ATavailable] = ACTIONS(1944), - [anon_sym_va_arg] = ACTIONS(1942), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1522] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1523] = { - [sym_identifier] = ACTIONS(2142), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2142), - [aux_sym_preproc_if_token2] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym___attribute] = ACTIONS(2142), - [anon_sym___attribute__] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2142), - [anon_sym___cdecl] = ACTIONS(2142), - [anon_sym___clrcall] = ACTIONS(2142), - [anon_sym___stdcall] = ACTIONS(2142), - [anon_sym___fastcall] = ACTIONS(2142), - [anon_sym___thiscall] = ACTIONS(2142), - [anon_sym___vectorcall] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_auto] = ACTIONS(2142), - [anon_sym_register] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_volatile] = ACTIONS(2142), - [anon_sym_restrict] = ACTIONS(2142), - [anon_sym__Atomic] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_out] = ACTIONS(2142), - [anon_sym_inout] = ACTIONS(2142), - [anon_sym_bycopy] = ACTIONS(2142), - [anon_sym_byref] = ACTIONS(2142), - [anon_sym_oneway] = ACTIONS(2142), - [anon_sym__Nullable] = ACTIONS(2142), - [anon_sym__Nonnull] = ACTIONS(2142), - [anon_sym__Nullable_result] = ACTIONS(2142), - [anon_sym__Null_unspecified] = ACTIONS(2142), - [anon_sym___autoreleasing] = ACTIONS(2142), - [anon_sym___nullable] = ACTIONS(2142), - [anon_sym___nonnull] = ACTIONS(2142), - [anon_sym___strong] = ACTIONS(2142), - [anon_sym___weak] = ACTIONS(2142), - [anon_sym___bridge] = ACTIONS(2142), - [anon_sym___bridge_transfer] = ACTIONS(2142), - [anon_sym___bridge_retained] = ACTIONS(2142), - [anon_sym___unsafe_unretained] = ACTIONS(2142), - [anon_sym___block] = ACTIONS(2142), - [anon_sym___kindof] = ACTIONS(2142), - [anon_sym___unused] = ACTIONS(2142), - [anon_sym__Complex] = ACTIONS(2142), - [anon_sym___complex] = ACTIONS(2142), - [anon_sym_IBOutlet] = ACTIONS(2142), - [anon_sym_IBInspectable] = ACTIONS(2142), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2142), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_NS_ENUM] = ACTIONS(2142), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2142), - [anon_sym_NS_OPTIONS] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_goto] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_sizeof] = ACTIONS(2142), - [sym_number_literal] = ACTIONS(2144), - [anon_sym_L_SQUOTE] = ACTIONS(2144), - [anon_sym_u_SQUOTE] = ACTIONS(2144), - [anon_sym_U_SQUOTE] = ACTIONS(2144), - [anon_sym_u8_SQUOTE] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_L_DQUOTE] = ACTIONS(2144), - [anon_sym_u_DQUOTE] = ACTIONS(2144), - [anon_sym_U_DQUOTE] = ACTIONS(2144), - [anon_sym_u8_DQUOTE] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2144), - [anon_sym_ATimport] = ACTIONS(2144), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2142), - [anon_sym_ATcompatibility_alias] = ACTIONS(2144), - [anon_sym_ATprotocol] = ACTIONS(2144), - [anon_sym_ATclass] = ACTIONS(2144), - [anon_sym_ATinterface] = ACTIONS(2144), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2142), - [sym_method_attribute_specifier] = ACTIONS(2142), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2142), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE] = ACTIONS(2142), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_API_AVAILABLE] = ACTIONS(2142), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_API_DEPRECATED] = ACTIONS(2142), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2142), - [anon_sym___deprecated_msg] = ACTIONS(2142), - [anon_sym___deprecated_enum_msg] = ACTIONS(2142), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2142), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2142), - [anon_sym_ATimplementation] = ACTIONS(2144), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym___typeof] = ACTIONS(2142), - [anon_sym___typeof__] = ACTIONS(2142), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_nil] = ACTIONS(2142), - [sym_id] = ACTIONS(2142), - [sym_instancetype] = ACTIONS(2142), - [sym_Class] = ACTIONS(2142), - [sym_SEL] = ACTIONS(2142), - [sym_IMP] = ACTIONS(2142), - [sym_BOOL] = ACTIONS(2142), - [sym_auto] = ACTIONS(2142), - [anon_sym_ATautoreleasepool] = ACTIONS(2144), - [anon_sym_ATsynchronized] = ACTIONS(2144), - [anon_sym_ATtry] = ACTIONS(2144), - [anon_sym_ATthrow] = ACTIONS(2144), - [anon_sym_ATselector] = ACTIONS(2144), - [anon_sym_ATencode] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2142), - [sym_YES] = ACTIONS(2142), - [sym_NO] = ACTIONS(2142), - [anon_sym___builtin_available] = ACTIONS(2142), - [anon_sym_ATavailable] = ACTIONS(2144), - [anon_sym_va_arg] = ACTIONS(2142), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1524] = { - [sym_identifier] = ACTIONS(1726), - [aux_sym_preproc_include_token1] = ACTIONS(1728), - [aux_sym_preproc_def_token1] = ACTIONS(1728), - [aux_sym_preproc_if_token1] = ACTIONS(1726), - [aux_sym_preproc_if_token2] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1726), - [anon_sym_LPAREN2] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym___attribute] = ACTIONS(1726), - [anon_sym___attribute__] = ACTIONS(1726), - [anon_sym___declspec] = ACTIONS(1726), - [anon_sym___cdecl] = ACTIONS(1726), - [anon_sym___clrcall] = ACTIONS(1726), - [anon_sym___stdcall] = ACTIONS(1726), - [anon_sym___fastcall] = ACTIONS(1726), - [anon_sym___thiscall] = ACTIONS(1726), - [anon_sym___vectorcall] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_auto] = ACTIONS(1726), - [anon_sym_register] = ACTIONS(1726), - [anon_sym_inline] = ACTIONS(1726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_volatile] = ACTIONS(1726), - [anon_sym_restrict] = ACTIONS(1726), - [anon_sym__Atomic] = ACTIONS(1726), - [anon_sym_in] = ACTIONS(1726), - [anon_sym_out] = ACTIONS(1726), - [anon_sym_inout] = ACTIONS(1726), - [anon_sym_bycopy] = ACTIONS(1726), - [anon_sym_byref] = ACTIONS(1726), - [anon_sym_oneway] = ACTIONS(1726), - [anon_sym__Nullable] = ACTIONS(1726), - [anon_sym__Nonnull] = ACTIONS(1726), - [anon_sym__Nullable_result] = ACTIONS(1726), - [anon_sym__Null_unspecified] = ACTIONS(1726), - [anon_sym___autoreleasing] = ACTIONS(1726), - [anon_sym___nullable] = ACTIONS(1726), - [anon_sym___nonnull] = ACTIONS(1726), - [anon_sym___strong] = ACTIONS(1726), - [anon_sym___weak] = ACTIONS(1726), - [anon_sym___bridge] = ACTIONS(1726), - [anon_sym___bridge_transfer] = ACTIONS(1726), - [anon_sym___bridge_retained] = ACTIONS(1726), - [anon_sym___unsafe_unretained] = ACTIONS(1726), - [anon_sym___block] = ACTIONS(1726), - [anon_sym___kindof] = ACTIONS(1726), - [anon_sym___unused] = ACTIONS(1726), - [anon_sym__Complex] = ACTIONS(1726), - [anon_sym___complex] = ACTIONS(1726), - [anon_sym_IBOutlet] = ACTIONS(1726), - [anon_sym_IBInspectable] = ACTIONS(1726), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1726), - [anon_sym_signed] = ACTIONS(1726), - [anon_sym_unsigned] = ACTIONS(1726), - [anon_sym_long] = ACTIONS(1726), - [anon_sym_short] = ACTIONS(1726), - [sym_primitive_type] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_NS_ENUM] = ACTIONS(1726), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1726), - [anon_sym_NS_OPTIONS] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_do] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1728), - [anon_sym_sizeof] = ACTIONS(1726), - [sym_number_literal] = ACTIONS(1728), - [anon_sym_L_SQUOTE] = ACTIONS(1728), - [anon_sym_u_SQUOTE] = ACTIONS(1728), - [anon_sym_U_SQUOTE] = ACTIONS(1728), - [anon_sym_u8_SQUOTE] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_L_DQUOTE] = ACTIONS(1728), - [anon_sym_u_DQUOTE] = ACTIONS(1728), - [anon_sym_U_DQUOTE] = ACTIONS(1728), - [anon_sym_u8_DQUOTE] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(1728), - [sym_true] = ACTIONS(1726), - [sym_false] = ACTIONS(1726), - [sym_null] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1728), - [anon_sym_ATimport] = ACTIONS(1728), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1726), - [anon_sym_ATcompatibility_alias] = ACTIONS(1728), - [anon_sym_ATprotocol] = ACTIONS(1728), - [anon_sym_ATclass] = ACTIONS(1728), - [anon_sym_ATinterface] = ACTIONS(1728), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1726), - [sym_method_attribute_specifier] = ACTIONS(1726), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1726), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1726), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE] = ACTIONS(1726), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1726), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_API_AVAILABLE] = ACTIONS(1726), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_API_DEPRECATED] = ACTIONS(1726), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1726), - [anon_sym___deprecated_msg] = ACTIONS(1726), - [anon_sym___deprecated_enum_msg] = ACTIONS(1726), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1726), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1726), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1726), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1726), - [anon_sym_ATimplementation] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1726), - [anon_sym___typeof] = ACTIONS(1726), - [anon_sym___typeof__] = ACTIONS(1726), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_nil] = ACTIONS(1726), - [sym_id] = ACTIONS(1726), - [sym_instancetype] = ACTIONS(1726), - [sym_Class] = ACTIONS(1726), - [sym_SEL] = ACTIONS(1726), - [sym_IMP] = ACTIONS(1726), - [sym_BOOL] = ACTIONS(1726), - [sym_auto] = ACTIONS(1726), - [anon_sym_ATautoreleasepool] = ACTIONS(1728), - [anon_sym_ATsynchronized] = ACTIONS(1728), - [anon_sym_ATtry] = ACTIONS(1728), - [anon_sym_ATthrow] = ACTIONS(1728), - [anon_sym_ATselector] = ACTIONS(1728), - [anon_sym_ATencode] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1726), - [sym_YES] = ACTIONS(1726), - [sym_NO] = ACTIONS(1726), - [anon_sym___builtin_available] = ACTIONS(1726), - [anon_sym_ATavailable] = ACTIONS(1728), - [anon_sym_va_arg] = ACTIONS(1726), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1525] = { - [sym_identifier] = ACTIONS(2142), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2142), - [aux_sym_preproc_if_token2] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym___attribute] = ACTIONS(2142), - [anon_sym___attribute__] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2142), - [anon_sym___cdecl] = ACTIONS(2142), - [anon_sym___clrcall] = ACTIONS(2142), - [anon_sym___stdcall] = ACTIONS(2142), - [anon_sym___fastcall] = ACTIONS(2142), - [anon_sym___thiscall] = ACTIONS(2142), - [anon_sym___vectorcall] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_auto] = ACTIONS(2142), - [anon_sym_register] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_volatile] = ACTIONS(2142), - [anon_sym_restrict] = ACTIONS(2142), - [anon_sym__Atomic] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_out] = ACTIONS(2142), - [anon_sym_inout] = ACTIONS(2142), - [anon_sym_bycopy] = ACTIONS(2142), - [anon_sym_byref] = ACTIONS(2142), - [anon_sym_oneway] = ACTIONS(2142), - [anon_sym__Nullable] = ACTIONS(2142), - [anon_sym__Nonnull] = ACTIONS(2142), - [anon_sym__Nullable_result] = ACTIONS(2142), - [anon_sym__Null_unspecified] = ACTIONS(2142), - [anon_sym___autoreleasing] = ACTIONS(2142), - [anon_sym___nullable] = ACTIONS(2142), - [anon_sym___nonnull] = ACTIONS(2142), - [anon_sym___strong] = ACTIONS(2142), - [anon_sym___weak] = ACTIONS(2142), - [anon_sym___bridge] = ACTIONS(2142), - [anon_sym___bridge_transfer] = ACTIONS(2142), - [anon_sym___bridge_retained] = ACTIONS(2142), - [anon_sym___unsafe_unretained] = ACTIONS(2142), - [anon_sym___block] = ACTIONS(2142), - [anon_sym___kindof] = ACTIONS(2142), - [anon_sym___unused] = ACTIONS(2142), - [anon_sym__Complex] = ACTIONS(2142), - [anon_sym___complex] = ACTIONS(2142), - [anon_sym_IBOutlet] = ACTIONS(2142), - [anon_sym_IBInspectable] = ACTIONS(2142), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2142), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_NS_ENUM] = ACTIONS(2142), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2142), - [anon_sym_NS_OPTIONS] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_goto] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_sizeof] = ACTIONS(2142), - [sym_number_literal] = ACTIONS(2144), - [anon_sym_L_SQUOTE] = ACTIONS(2144), - [anon_sym_u_SQUOTE] = ACTIONS(2144), - [anon_sym_U_SQUOTE] = ACTIONS(2144), - [anon_sym_u8_SQUOTE] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_L_DQUOTE] = ACTIONS(2144), - [anon_sym_u_DQUOTE] = ACTIONS(2144), - [anon_sym_U_DQUOTE] = ACTIONS(2144), - [anon_sym_u8_DQUOTE] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2144), - [anon_sym_ATimport] = ACTIONS(2144), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2142), - [anon_sym_ATcompatibility_alias] = ACTIONS(2144), - [anon_sym_ATprotocol] = ACTIONS(2144), - [anon_sym_ATclass] = ACTIONS(2144), - [anon_sym_ATinterface] = ACTIONS(2144), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2142), - [sym_method_attribute_specifier] = ACTIONS(2142), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2142), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE] = ACTIONS(2142), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_API_AVAILABLE] = ACTIONS(2142), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_API_DEPRECATED] = ACTIONS(2142), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2142), - [anon_sym___deprecated_msg] = ACTIONS(2142), - [anon_sym___deprecated_enum_msg] = ACTIONS(2142), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2142), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2142), - [anon_sym_ATimplementation] = ACTIONS(2144), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym___typeof] = ACTIONS(2142), - [anon_sym___typeof__] = ACTIONS(2142), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_nil] = ACTIONS(2142), - [sym_id] = ACTIONS(2142), - [sym_instancetype] = ACTIONS(2142), - [sym_Class] = ACTIONS(2142), - [sym_SEL] = ACTIONS(2142), - [sym_IMP] = ACTIONS(2142), - [sym_BOOL] = ACTIONS(2142), - [sym_auto] = ACTIONS(2142), - [anon_sym_ATautoreleasepool] = ACTIONS(2144), - [anon_sym_ATsynchronized] = ACTIONS(2144), - [anon_sym_ATtry] = ACTIONS(2144), - [anon_sym_ATthrow] = ACTIONS(2144), - [anon_sym_ATselector] = ACTIONS(2144), - [anon_sym_ATencode] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2142), - [sym_YES] = ACTIONS(2142), - [sym_NO] = ACTIONS(2142), - [anon_sym___builtin_available] = ACTIONS(2142), - [anon_sym_ATavailable] = ACTIONS(2144), - [anon_sym_va_arg] = ACTIONS(2142), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1526] = { - [sym_identifier] = ACTIONS(2066), - [aux_sym_preproc_include_token1] = ACTIONS(2068), - [aux_sym_preproc_def_token1] = ACTIONS(2068), - [aux_sym_preproc_if_token1] = ACTIONS(2066), - [aux_sym_preproc_if_token2] = ACTIONS(2066), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2066), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2066), - [anon_sym_LPAREN2] = ACTIONS(2068), - [anon_sym_BANG] = ACTIONS(2068), - [anon_sym_TILDE] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_PLUS] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2068), - [anon_sym_CARET] = ACTIONS(2068), - [anon_sym_AMP] = ACTIONS(2068), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_typedef] = ACTIONS(2066), - [anon_sym_extern] = ACTIONS(2066), - [anon_sym___attribute] = ACTIONS(2066), - [anon_sym___attribute__] = ACTIONS(2066), - [anon_sym___declspec] = ACTIONS(2066), - [anon_sym___cdecl] = ACTIONS(2066), - [anon_sym___clrcall] = ACTIONS(2066), - [anon_sym___stdcall] = ACTIONS(2066), - [anon_sym___fastcall] = ACTIONS(2066), - [anon_sym___thiscall] = ACTIONS(2066), - [anon_sym___vectorcall] = ACTIONS(2066), - [anon_sym_LBRACE] = ACTIONS(2068), - [anon_sym_LBRACK] = ACTIONS(2068), - [anon_sym_static] = ACTIONS(2066), - [anon_sym_auto] = ACTIONS(2066), - [anon_sym_register] = ACTIONS(2066), - [anon_sym_inline] = ACTIONS(2066), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2066), - [anon_sym_const] = ACTIONS(2066), - [anon_sym_volatile] = ACTIONS(2066), - [anon_sym_restrict] = ACTIONS(2066), - [anon_sym__Atomic] = ACTIONS(2066), - [anon_sym_in] = ACTIONS(2066), - [anon_sym_out] = ACTIONS(2066), - [anon_sym_inout] = ACTIONS(2066), - [anon_sym_bycopy] = ACTIONS(2066), - [anon_sym_byref] = ACTIONS(2066), - [anon_sym_oneway] = ACTIONS(2066), - [anon_sym__Nullable] = ACTIONS(2066), - [anon_sym__Nonnull] = ACTIONS(2066), - [anon_sym__Nullable_result] = ACTIONS(2066), - [anon_sym__Null_unspecified] = ACTIONS(2066), - [anon_sym___autoreleasing] = ACTIONS(2066), - [anon_sym___nullable] = ACTIONS(2066), - [anon_sym___nonnull] = ACTIONS(2066), - [anon_sym___strong] = ACTIONS(2066), - [anon_sym___weak] = ACTIONS(2066), - [anon_sym___bridge] = ACTIONS(2066), - [anon_sym___bridge_transfer] = ACTIONS(2066), - [anon_sym___bridge_retained] = ACTIONS(2066), - [anon_sym___unsafe_unretained] = ACTIONS(2066), - [anon_sym___block] = ACTIONS(2066), - [anon_sym___kindof] = ACTIONS(2066), - [anon_sym___unused] = ACTIONS(2066), - [anon_sym__Complex] = ACTIONS(2066), - [anon_sym___complex] = ACTIONS(2066), - [anon_sym_IBOutlet] = ACTIONS(2066), - [anon_sym_IBInspectable] = ACTIONS(2066), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2066), - [anon_sym_signed] = ACTIONS(2066), - [anon_sym_unsigned] = ACTIONS(2066), - [anon_sym_long] = ACTIONS(2066), - [anon_sym_short] = ACTIONS(2066), - [sym_primitive_type] = ACTIONS(2066), - [anon_sym_enum] = ACTIONS(2066), - [anon_sym_NS_ENUM] = ACTIONS(2066), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2066), - [anon_sym_NS_OPTIONS] = ACTIONS(2066), - [anon_sym_struct] = ACTIONS(2066), - [anon_sym_union] = ACTIONS(2066), - [anon_sym_if] = ACTIONS(2066), - [anon_sym_switch] = ACTIONS(2066), - [anon_sym_case] = ACTIONS(2066), - [anon_sym_default] = ACTIONS(2066), - [anon_sym_while] = ACTIONS(2066), - [anon_sym_do] = ACTIONS(2066), - [anon_sym_for] = ACTIONS(2066), - [anon_sym_return] = ACTIONS(2066), - [anon_sym_break] = ACTIONS(2066), - [anon_sym_continue] = ACTIONS(2066), - [anon_sym_goto] = ACTIONS(2066), - [anon_sym_DASH_DASH] = ACTIONS(2068), - [anon_sym_PLUS_PLUS] = ACTIONS(2068), - [anon_sym_sizeof] = ACTIONS(2066), - [sym_number_literal] = ACTIONS(2068), - [anon_sym_L_SQUOTE] = ACTIONS(2068), - [anon_sym_u_SQUOTE] = ACTIONS(2068), - [anon_sym_U_SQUOTE] = ACTIONS(2068), - [anon_sym_u8_SQUOTE] = ACTIONS(2068), - [anon_sym_SQUOTE] = ACTIONS(2068), - [anon_sym_L_DQUOTE] = ACTIONS(2068), - [anon_sym_u_DQUOTE] = ACTIONS(2068), - [anon_sym_U_DQUOTE] = ACTIONS(2068), - [anon_sym_u8_DQUOTE] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2068), - [sym_true] = ACTIONS(2066), - [sym_false] = ACTIONS(2066), - [sym_null] = ACTIONS(2066), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2068), - [anon_sym_ATimport] = ACTIONS(2068), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2066), - [anon_sym_ATcompatibility_alias] = ACTIONS(2068), - [anon_sym_ATprotocol] = ACTIONS(2068), - [anon_sym_ATclass] = ACTIONS(2068), - [anon_sym_ATinterface] = ACTIONS(2068), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2066), - [sym_method_attribute_specifier] = ACTIONS(2066), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2066), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2066), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2066), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2066), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2066), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2066), - [anon_sym_NS_AVAILABLE] = ACTIONS(2066), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2066), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2066), - [anon_sym_API_AVAILABLE] = ACTIONS(2066), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2066), - [anon_sym_API_DEPRECATED] = ACTIONS(2066), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2066), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2066), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2066), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2066), - [anon_sym___deprecated_msg] = ACTIONS(2066), - [anon_sym___deprecated_enum_msg] = ACTIONS(2066), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2066), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2066), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2066), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2066), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2066), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2066), - [anon_sym_ATimplementation] = ACTIONS(2068), - [anon_sym_typeof] = ACTIONS(2066), - [anon_sym___typeof] = ACTIONS(2066), - [anon_sym___typeof__] = ACTIONS(2066), - [sym_self] = ACTIONS(2066), - [sym_super] = ACTIONS(2066), - [sym_nil] = ACTIONS(2066), - [sym_id] = ACTIONS(2066), - [sym_instancetype] = ACTIONS(2066), - [sym_Class] = ACTIONS(2066), - [sym_SEL] = ACTIONS(2066), - [sym_IMP] = ACTIONS(2066), - [sym_BOOL] = ACTIONS(2066), - [sym_auto] = ACTIONS(2066), - [anon_sym_ATautoreleasepool] = ACTIONS(2068), - [anon_sym_ATsynchronized] = ACTIONS(2068), - [anon_sym_ATtry] = ACTIONS(2068), - [anon_sym_ATthrow] = ACTIONS(2068), - [anon_sym_ATselector] = ACTIONS(2068), - [anon_sym_ATencode] = ACTIONS(2068), - [anon_sym_AT] = ACTIONS(2066), - [sym_YES] = ACTIONS(2066), - [sym_NO] = ACTIONS(2066), - [anon_sym___builtin_available] = ACTIONS(2066), - [anon_sym_ATavailable] = ACTIONS(2068), - [anon_sym_va_arg] = ACTIONS(2066), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1527] = { - [sym_identifier] = ACTIONS(1774), - [aux_sym_preproc_include_token1] = ACTIONS(1776), - [aux_sym_preproc_def_token1] = ACTIONS(1776), - [aux_sym_preproc_if_token1] = ACTIONS(1774), - [aux_sym_preproc_if_token2] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_typedef] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym___attribute] = ACTIONS(1774), - [anon_sym___attribute__] = ACTIONS(1774), - [anon_sym___declspec] = ACTIONS(1774), - [anon_sym___cdecl] = ACTIONS(1774), - [anon_sym___clrcall] = ACTIONS(1774), - [anon_sym___stdcall] = ACTIONS(1774), - [anon_sym___fastcall] = ACTIONS(1774), - [anon_sym___thiscall] = ACTIONS(1774), - [anon_sym___vectorcall] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_auto] = ACTIONS(1774), - [anon_sym_register] = ACTIONS(1774), - [anon_sym_inline] = ACTIONS(1774), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_out] = ACTIONS(1774), - [anon_sym_inout] = ACTIONS(1774), - [anon_sym_bycopy] = ACTIONS(1774), - [anon_sym_byref] = ACTIONS(1774), - [anon_sym_oneway] = ACTIONS(1774), - [anon_sym__Nullable] = ACTIONS(1774), - [anon_sym__Nonnull] = ACTIONS(1774), - [anon_sym__Nullable_result] = ACTIONS(1774), - [anon_sym__Null_unspecified] = ACTIONS(1774), - [anon_sym___autoreleasing] = ACTIONS(1774), - [anon_sym___nullable] = ACTIONS(1774), - [anon_sym___nonnull] = ACTIONS(1774), - [anon_sym___strong] = ACTIONS(1774), - [anon_sym___weak] = ACTIONS(1774), - [anon_sym___bridge] = ACTIONS(1774), - [anon_sym___bridge_transfer] = ACTIONS(1774), - [anon_sym___bridge_retained] = ACTIONS(1774), - [anon_sym___unsafe_unretained] = ACTIONS(1774), - [anon_sym___block] = ACTIONS(1774), - [anon_sym___kindof] = ACTIONS(1774), - [anon_sym___unused] = ACTIONS(1774), - [anon_sym__Complex] = ACTIONS(1774), - [anon_sym___complex] = ACTIONS(1774), - [anon_sym_IBOutlet] = ACTIONS(1774), - [anon_sym_IBInspectable] = ACTIONS(1774), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1774), - [anon_sym_signed] = ACTIONS(1774), - [anon_sym_unsigned] = ACTIONS(1774), - [anon_sym_long] = ACTIONS(1774), - [anon_sym_short] = ACTIONS(1774), - [sym_primitive_type] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_NS_ENUM] = ACTIONS(1774), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1774), - [anon_sym_NS_OPTIONS] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1774), - [anon_sym_case] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_goto] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1776), - [anon_sym_sizeof] = ACTIONS(1774), - [sym_number_literal] = ACTIONS(1776), - [anon_sym_L_SQUOTE] = ACTIONS(1776), - [anon_sym_u_SQUOTE] = ACTIONS(1776), - [anon_sym_U_SQUOTE] = ACTIONS(1776), - [anon_sym_u8_SQUOTE] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_L_DQUOTE] = ACTIONS(1776), - [anon_sym_u_DQUOTE] = ACTIONS(1776), - [anon_sym_U_DQUOTE] = ACTIONS(1776), - [anon_sym_u8_DQUOTE] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym_true] = ACTIONS(1774), - [sym_false] = ACTIONS(1774), - [sym_null] = ACTIONS(1774), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1776), - [anon_sym_ATimport] = ACTIONS(1776), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1774), - [anon_sym_ATcompatibility_alias] = ACTIONS(1776), - [anon_sym_ATprotocol] = ACTIONS(1776), - [anon_sym_ATclass] = ACTIONS(1776), - [anon_sym_ATinterface] = ACTIONS(1776), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1774), - [sym_method_attribute_specifier] = ACTIONS(1774), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1774), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE] = ACTIONS(1774), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_API_AVAILABLE] = ACTIONS(1774), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_API_DEPRECATED] = ACTIONS(1774), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1774), - [anon_sym___deprecated_msg] = ACTIONS(1774), - [anon_sym___deprecated_enum_msg] = ACTIONS(1774), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1774), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1774), - [anon_sym_ATimplementation] = ACTIONS(1776), - [anon_sym_typeof] = ACTIONS(1774), - [anon_sym___typeof] = ACTIONS(1774), - [anon_sym___typeof__] = ACTIONS(1774), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_nil] = ACTIONS(1774), - [sym_id] = ACTIONS(1774), - [sym_instancetype] = ACTIONS(1774), - [sym_Class] = ACTIONS(1774), - [sym_SEL] = ACTIONS(1774), - [sym_IMP] = ACTIONS(1774), - [sym_BOOL] = ACTIONS(1774), - [sym_auto] = ACTIONS(1774), - [anon_sym_ATautoreleasepool] = ACTIONS(1776), - [anon_sym_ATsynchronized] = ACTIONS(1776), - [anon_sym_ATtry] = ACTIONS(1776), - [anon_sym_ATthrow] = ACTIONS(1776), - [anon_sym_ATselector] = ACTIONS(1776), - [anon_sym_ATencode] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1774), - [sym_YES] = ACTIONS(1774), - [sym_NO] = ACTIONS(1774), - [anon_sym___builtin_available] = ACTIONS(1774), - [anon_sym_ATavailable] = ACTIONS(1776), - [anon_sym_va_arg] = ACTIONS(1774), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1528] = { - [sym_identifier] = ACTIONS(1746), - [aux_sym_preproc_include_token1] = ACTIONS(1748), - [aux_sym_preproc_def_token1] = ACTIONS(1748), - [aux_sym_preproc_if_token1] = ACTIONS(1746), - [aux_sym_preproc_if_token2] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym___attribute] = ACTIONS(1746), - [anon_sym___attribute__] = ACTIONS(1746), - [anon_sym___declspec] = ACTIONS(1746), - [anon_sym___cdecl] = ACTIONS(1746), - [anon_sym___clrcall] = ACTIONS(1746), - [anon_sym___stdcall] = ACTIONS(1746), - [anon_sym___fastcall] = ACTIONS(1746), - [anon_sym___thiscall] = ACTIONS(1746), - [anon_sym___vectorcall] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1746), - [anon_sym_register] = ACTIONS(1746), - [anon_sym_inline] = ACTIONS(1746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_restrict] = ACTIONS(1746), - [anon_sym__Atomic] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_out] = ACTIONS(1746), - [anon_sym_inout] = ACTIONS(1746), - [anon_sym_bycopy] = ACTIONS(1746), - [anon_sym_byref] = ACTIONS(1746), - [anon_sym_oneway] = ACTIONS(1746), - [anon_sym__Nullable] = ACTIONS(1746), - [anon_sym__Nonnull] = ACTIONS(1746), - [anon_sym__Nullable_result] = ACTIONS(1746), - [anon_sym__Null_unspecified] = ACTIONS(1746), - [anon_sym___autoreleasing] = ACTIONS(1746), - [anon_sym___nullable] = ACTIONS(1746), - [anon_sym___nonnull] = ACTIONS(1746), - [anon_sym___strong] = ACTIONS(1746), - [anon_sym___weak] = ACTIONS(1746), - [anon_sym___bridge] = ACTIONS(1746), - [anon_sym___bridge_transfer] = ACTIONS(1746), - [anon_sym___bridge_retained] = ACTIONS(1746), - [anon_sym___unsafe_unretained] = ACTIONS(1746), - [anon_sym___block] = ACTIONS(1746), - [anon_sym___kindof] = ACTIONS(1746), - [anon_sym___unused] = ACTIONS(1746), - [anon_sym__Complex] = ACTIONS(1746), - [anon_sym___complex] = ACTIONS(1746), - [anon_sym_IBOutlet] = ACTIONS(1746), - [anon_sym_IBInspectable] = ACTIONS(1746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1746), - [anon_sym_unsigned] = ACTIONS(1746), - [anon_sym_long] = ACTIONS(1746), - [anon_sym_short] = ACTIONS(1746), - [sym_primitive_type] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_NS_ENUM] = ACTIONS(1746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1746), - [anon_sym_NS_OPTIONS] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_goto] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_sizeof] = ACTIONS(1746), - [sym_number_literal] = ACTIONS(1748), - [anon_sym_L_SQUOTE] = ACTIONS(1748), - [anon_sym_u_SQUOTE] = ACTIONS(1748), - [anon_sym_U_SQUOTE] = ACTIONS(1748), - [anon_sym_u8_SQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_L_DQUOTE] = ACTIONS(1748), - [anon_sym_u_DQUOTE] = ACTIONS(1748), - [anon_sym_U_DQUOTE] = ACTIONS(1748), - [anon_sym_u8_DQUOTE] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1748), - [anon_sym_ATimport] = ACTIONS(1748), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1746), - [anon_sym_ATcompatibility_alias] = ACTIONS(1748), - [anon_sym_ATprotocol] = ACTIONS(1748), - [anon_sym_ATclass] = ACTIONS(1748), - [anon_sym_ATinterface] = ACTIONS(1748), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1746), - [sym_method_attribute_specifier] = ACTIONS(1746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE] = ACTIONS(1746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_API_AVAILABLE] = ACTIONS(1746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_API_DEPRECATED] = ACTIONS(1746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1746), - [anon_sym___deprecated_msg] = ACTIONS(1746), - [anon_sym___deprecated_enum_msg] = ACTIONS(1746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1746), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1746), - [anon_sym_ATimplementation] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym___typeof] = ACTIONS(1746), - [anon_sym___typeof__] = ACTIONS(1746), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_nil] = ACTIONS(1746), - [sym_id] = ACTIONS(1746), - [sym_instancetype] = ACTIONS(1746), - [sym_Class] = ACTIONS(1746), - [sym_SEL] = ACTIONS(1746), - [sym_IMP] = ACTIONS(1746), - [sym_BOOL] = ACTIONS(1746), - [sym_auto] = ACTIONS(1746), - [anon_sym_ATautoreleasepool] = ACTIONS(1748), - [anon_sym_ATsynchronized] = ACTIONS(1748), - [anon_sym_ATtry] = ACTIONS(1748), - [anon_sym_ATthrow] = ACTIONS(1748), - [anon_sym_ATselector] = ACTIONS(1748), - [anon_sym_ATencode] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1746), - [sym_YES] = ACTIONS(1746), - [sym_NO] = ACTIONS(1746), - [anon_sym___builtin_available] = ACTIONS(1746), - [anon_sym_ATavailable] = ACTIONS(1748), - [anon_sym_va_arg] = ACTIONS(1746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1529] = { - [sym_identifier] = ACTIONS(2070), - [aux_sym_preproc_include_token1] = ACTIONS(2072), - [aux_sym_preproc_def_token1] = ACTIONS(2072), - [aux_sym_preproc_if_token1] = ACTIONS(2070), - [aux_sym_preproc_if_token2] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2070), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym___attribute] = ACTIONS(2070), - [anon_sym___attribute__] = ACTIONS(2070), - [anon_sym___declspec] = ACTIONS(2070), - [anon_sym___cdecl] = ACTIONS(2070), - [anon_sym___clrcall] = ACTIONS(2070), - [anon_sym___stdcall] = ACTIONS(2070), - [anon_sym___fastcall] = ACTIONS(2070), - [anon_sym___thiscall] = ACTIONS(2070), - [anon_sym___vectorcall] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_auto] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_volatile] = ACTIONS(2070), - [anon_sym_restrict] = ACTIONS(2070), - [anon_sym__Atomic] = ACTIONS(2070), - [anon_sym_in] = ACTIONS(2070), - [anon_sym_out] = ACTIONS(2070), - [anon_sym_inout] = ACTIONS(2070), - [anon_sym_bycopy] = ACTIONS(2070), - [anon_sym_byref] = ACTIONS(2070), - [anon_sym_oneway] = ACTIONS(2070), - [anon_sym__Nullable] = ACTIONS(2070), - [anon_sym__Nonnull] = ACTIONS(2070), - [anon_sym__Nullable_result] = ACTIONS(2070), - [anon_sym__Null_unspecified] = ACTIONS(2070), - [anon_sym___autoreleasing] = ACTIONS(2070), - [anon_sym___nullable] = ACTIONS(2070), - [anon_sym___nonnull] = ACTIONS(2070), - [anon_sym___strong] = ACTIONS(2070), - [anon_sym___weak] = ACTIONS(2070), - [anon_sym___bridge] = ACTIONS(2070), - [anon_sym___bridge_transfer] = ACTIONS(2070), - [anon_sym___bridge_retained] = ACTIONS(2070), - [anon_sym___unsafe_unretained] = ACTIONS(2070), - [anon_sym___block] = ACTIONS(2070), - [anon_sym___kindof] = ACTIONS(2070), - [anon_sym___unused] = ACTIONS(2070), - [anon_sym__Complex] = ACTIONS(2070), - [anon_sym___complex] = ACTIONS(2070), - [anon_sym_IBOutlet] = ACTIONS(2070), - [anon_sym_IBInspectable] = ACTIONS(2070), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2070), - [anon_sym_signed] = ACTIONS(2070), - [anon_sym_unsigned] = ACTIONS(2070), - [anon_sym_long] = ACTIONS(2070), - [anon_sym_short] = ACTIONS(2070), - [sym_primitive_type] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_NS_ENUM] = ACTIONS(2070), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2070), - [anon_sym_NS_OPTIONS] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_case] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_goto] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_sizeof] = ACTIONS(2070), - [sym_number_literal] = ACTIONS(2072), - [anon_sym_L_SQUOTE] = ACTIONS(2072), - [anon_sym_u_SQUOTE] = ACTIONS(2072), - [anon_sym_U_SQUOTE] = ACTIONS(2072), - [anon_sym_u8_SQUOTE] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_L_DQUOTE] = ACTIONS(2072), - [anon_sym_u_DQUOTE] = ACTIONS(2072), - [anon_sym_U_DQUOTE] = ACTIONS(2072), - [anon_sym_u8_DQUOTE] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym_true] = ACTIONS(2070), - [sym_false] = ACTIONS(2070), - [sym_null] = ACTIONS(2070), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2072), - [anon_sym_ATimport] = ACTIONS(2072), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2070), - [anon_sym_ATcompatibility_alias] = ACTIONS(2072), - [anon_sym_ATprotocol] = ACTIONS(2072), - [anon_sym_ATclass] = ACTIONS(2072), - [anon_sym_ATinterface] = ACTIONS(2072), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2070), - [sym_method_attribute_specifier] = ACTIONS(2070), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2070), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE] = ACTIONS(2070), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_API_AVAILABLE] = ACTIONS(2070), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_API_DEPRECATED] = ACTIONS(2070), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2070), - [anon_sym___deprecated_msg] = ACTIONS(2070), - [anon_sym___deprecated_enum_msg] = ACTIONS(2070), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2070), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2070), - [anon_sym_ATimplementation] = ACTIONS(2072), - [anon_sym_typeof] = ACTIONS(2070), - [anon_sym___typeof] = ACTIONS(2070), - [anon_sym___typeof__] = ACTIONS(2070), - [sym_self] = ACTIONS(2070), - [sym_super] = ACTIONS(2070), - [sym_nil] = ACTIONS(2070), - [sym_id] = ACTIONS(2070), - [sym_instancetype] = ACTIONS(2070), - [sym_Class] = ACTIONS(2070), - [sym_SEL] = ACTIONS(2070), - [sym_IMP] = ACTIONS(2070), - [sym_BOOL] = ACTIONS(2070), - [sym_auto] = ACTIONS(2070), - [anon_sym_ATautoreleasepool] = ACTIONS(2072), - [anon_sym_ATsynchronized] = ACTIONS(2072), - [anon_sym_ATtry] = ACTIONS(2072), - [anon_sym_ATthrow] = ACTIONS(2072), - [anon_sym_ATselector] = ACTIONS(2072), - [anon_sym_ATencode] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2070), - [sym_YES] = ACTIONS(2070), - [sym_NO] = ACTIONS(2070), - [anon_sym___builtin_available] = ACTIONS(2070), - [anon_sym_ATavailable] = ACTIONS(2072), - [anon_sym_va_arg] = ACTIONS(2070), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1530] = { - [sym_identifier] = ACTIONS(2070), - [aux_sym_preproc_include_token1] = ACTIONS(2072), - [aux_sym_preproc_def_token1] = ACTIONS(2072), - [aux_sym_preproc_if_token1] = ACTIONS(2070), - [aux_sym_preproc_if_token2] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2070), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym___attribute] = ACTIONS(2070), - [anon_sym___attribute__] = ACTIONS(2070), - [anon_sym___declspec] = ACTIONS(2070), - [anon_sym___cdecl] = ACTIONS(2070), - [anon_sym___clrcall] = ACTIONS(2070), - [anon_sym___stdcall] = ACTIONS(2070), - [anon_sym___fastcall] = ACTIONS(2070), - [anon_sym___thiscall] = ACTIONS(2070), - [anon_sym___vectorcall] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_auto] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_volatile] = ACTIONS(2070), - [anon_sym_restrict] = ACTIONS(2070), - [anon_sym__Atomic] = ACTIONS(2070), - [anon_sym_in] = ACTIONS(2070), - [anon_sym_out] = ACTIONS(2070), - [anon_sym_inout] = ACTIONS(2070), - [anon_sym_bycopy] = ACTIONS(2070), - [anon_sym_byref] = ACTIONS(2070), - [anon_sym_oneway] = ACTIONS(2070), - [anon_sym__Nullable] = ACTIONS(2070), - [anon_sym__Nonnull] = ACTIONS(2070), - [anon_sym__Nullable_result] = ACTIONS(2070), - [anon_sym__Null_unspecified] = ACTIONS(2070), - [anon_sym___autoreleasing] = ACTIONS(2070), - [anon_sym___nullable] = ACTIONS(2070), - [anon_sym___nonnull] = ACTIONS(2070), - [anon_sym___strong] = ACTIONS(2070), - [anon_sym___weak] = ACTIONS(2070), - [anon_sym___bridge] = ACTIONS(2070), - [anon_sym___bridge_transfer] = ACTIONS(2070), - [anon_sym___bridge_retained] = ACTIONS(2070), - [anon_sym___unsafe_unretained] = ACTIONS(2070), - [anon_sym___block] = ACTIONS(2070), - [anon_sym___kindof] = ACTIONS(2070), - [anon_sym___unused] = ACTIONS(2070), - [anon_sym__Complex] = ACTIONS(2070), - [anon_sym___complex] = ACTIONS(2070), - [anon_sym_IBOutlet] = ACTIONS(2070), - [anon_sym_IBInspectable] = ACTIONS(2070), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2070), - [anon_sym_signed] = ACTIONS(2070), - [anon_sym_unsigned] = ACTIONS(2070), - [anon_sym_long] = ACTIONS(2070), - [anon_sym_short] = ACTIONS(2070), - [sym_primitive_type] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_NS_ENUM] = ACTIONS(2070), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2070), - [anon_sym_NS_OPTIONS] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_case] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_goto] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_sizeof] = ACTIONS(2070), - [sym_number_literal] = ACTIONS(2072), - [anon_sym_L_SQUOTE] = ACTIONS(2072), - [anon_sym_u_SQUOTE] = ACTIONS(2072), - [anon_sym_U_SQUOTE] = ACTIONS(2072), - [anon_sym_u8_SQUOTE] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_L_DQUOTE] = ACTIONS(2072), - [anon_sym_u_DQUOTE] = ACTIONS(2072), - [anon_sym_U_DQUOTE] = ACTIONS(2072), - [anon_sym_u8_DQUOTE] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym_true] = ACTIONS(2070), - [sym_false] = ACTIONS(2070), - [sym_null] = ACTIONS(2070), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2072), - [anon_sym_ATimport] = ACTIONS(2072), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2070), - [anon_sym_ATcompatibility_alias] = ACTIONS(2072), - [anon_sym_ATprotocol] = ACTIONS(2072), - [anon_sym_ATclass] = ACTIONS(2072), - [anon_sym_ATinterface] = ACTIONS(2072), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2070), - [sym_method_attribute_specifier] = ACTIONS(2070), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2070), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE] = ACTIONS(2070), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_API_AVAILABLE] = ACTIONS(2070), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_API_DEPRECATED] = ACTIONS(2070), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2070), - [anon_sym___deprecated_msg] = ACTIONS(2070), - [anon_sym___deprecated_enum_msg] = ACTIONS(2070), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2070), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2070), - [anon_sym_ATimplementation] = ACTIONS(2072), - [anon_sym_typeof] = ACTIONS(2070), - [anon_sym___typeof] = ACTIONS(2070), - [anon_sym___typeof__] = ACTIONS(2070), - [sym_self] = ACTIONS(2070), - [sym_super] = ACTIONS(2070), - [sym_nil] = ACTIONS(2070), - [sym_id] = ACTIONS(2070), - [sym_instancetype] = ACTIONS(2070), - [sym_Class] = ACTIONS(2070), - [sym_SEL] = ACTIONS(2070), - [sym_IMP] = ACTIONS(2070), - [sym_BOOL] = ACTIONS(2070), - [sym_auto] = ACTIONS(2070), - [anon_sym_ATautoreleasepool] = ACTIONS(2072), - [anon_sym_ATsynchronized] = ACTIONS(2072), - [anon_sym_ATtry] = ACTIONS(2072), - [anon_sym_ATthrow] = ACTIONS(2072), - [anon_sym_ATselector] = ACTIONS(2072), - [anon_sym_ATencode] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2070), - [sym_YES] = ACTIONS(2070), - [sym_NO] = ACTIONS(2070), - [anon_sym___builtin_available] = ACTIONS(2070), - [anon_sym_ATavailable] = ACTIONS(2072), - [anon_sym_va_arg] = ACTIONS(2070), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1531] = { - [sym_identifier] = ACTIONS(1746), - [aux_sym_preproc_include_token1] = ACTIONS(1748), - [aux_sym_preproc_def_token1] = ACTIONS(1748), - [aux_sym_preproc_if_token1] = ACTIONS(1746), - [aux_sym_preproc_if_token2] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym___attribute] = ACTIONS(1746), - [anon_sym___attribute__] = ACTIONS(1746), - [anon_sym___declspec] = ACTIONS(1746), - [anon_sym___cdecl] = ACTIONS(1746), - [anon_sym___clrcall] = ACTIONS(1746), - [anon_sym___stdcall] = ACTIONS(1746), - [anon_sym___fastcall] = ACTIONS(1746), - [anon_sym___thiscall] = ACTIONS(1746), - [anon_sym___vectorcall] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1746), - [anon_sym_register] = ACTIONS(1746), - [anon_sym_inline] = ACTIONS(1746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_restrict] = ACTIONS(1746), - [anon_sym__Atomic] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_out] = ACTIONS(1746), - [anon_sym_inout] = ACTIONS(1746), - [anon_sym_bycopy] = ACTIONS(1746), - [anon_sym_byref] = ACTIONS(1746), - [anon_sym_oneway] = ACTIONS(1746), - [anon_sym__Nullable] = ACTIONS(1746), - [anon_sym__Nonnull] = ACTIONS(1746), - [anon_sym__Nullable_result] = ACTIONS(1746), - [anon_sym__Null_unspecified] = ACTIONS(1746), - [anon_sym___autoreleasing] = ACTIONS(1746), - [anon_sym___nullable] = ACTIONS(1746), - [anon_sym___nonnull] = ACTIONS(1746), - [anon_sym___strong] = ACTIONS(1746), - [anon_sym___weak] = ACTIONS(1746), - [anon_sym___bridge] = ACTIONS(1746), - [anon_sym___bridge_transfer] = ACTIONS(1746), - [anon_sym___bridge_retained] = ACTIONS(1746), - [anon_sym___unsafe_unretained] = ACTIONS(1746), - [anon_sym___block] = ACTIONS(1746), - [anon_sym___kindof] = ACTIONS(1746), - [anon_sym___unused] = ACTIONS(1746), - [anon_sym__Complex] = ACTIONS(1746), - [anon_sym___complex] = ACTIONS(1746), - [anon_sym_IBOutlet] = ACTIONS(1746), - [anon_sym_IBInspectable] = ACTIONS(1746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1746), - [anon_sym_unsigned] = ACTIONS(1746), - [anon_sym_long] = ACTIONS(1746), - [anon_sym_short] = ACTIONS(1746), - [sym_primitive_type] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_NS_ENUM] = ACTIONS(1746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1746), - [anon_sym_NS_OPTIONS] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_goto] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_sizeof] = ACTIONS(1746), - [sym_number_literal] = ACTIONS(1748), - [anon_sym_L_SQUOTE] = ACTIONS(1748), - [anon_sym_u_SQUOTE] = ACTIONS(1748), - [anon_sym_U_SQUOTE] = ACTIONS(1748), - [anon_sym_u8_SQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_L_DQUOTE] = ACTIONS(1748), - [anon_sym_u_DQUOTE] = ACTIONS(1748), - [anon_sym_U_DQUOTE] = ACTIONS(1748), - [anon_sym_u8_DQUOTE] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1748), - [anon_sym_ATimport] = ACTIONS(1748), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1746), - [anon_sym_ATcompatibility_alias] = ACTIONS(1748), - [anon_sym_ATprotocol] = ACTIONS(1748), - [anon_sym_ATclass] = ACTIONS(1748), - [anon_sym_ATinterface] = ACTIONS(1748), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1746), - [sym_method_attribute_specifier] = ACTIONS(1746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE] = ACTIONS(1746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_API_AVAILABLE] = ACTIONS(1746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_API_DEPRECATED] = ACTIONS(1746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1746), - [anon_sym___deprecated_msg] = ACTIONS(1746), - [anon_sym___deprecated_enum_msg] = ACTIONS(1746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1746), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1746), - [anon_sym_ATimplementation] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym___typeof] = ACTIONS(1746), - [anon_sym___typeof__] = ACTIONS(1746), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_nil] = ACTIONS(1746), - [sym_id] = ACTIONS(1746), - [sym_instancetype] = ACTIONS(1746), - [sym_Class] = ACTIONS(1746), - [sym_SEL] = ACTIONS(1746), - [sym_IMP] = ACTIONS(1746), - [sym_BOOL] = ACTIONS(1746), - [sym_auto] = ACTIONS(1746), - [anon_sym_ATautoreleasepool] = ACTIONS(1748), - [anon_sym_ATsynchronized] = ACTIONS(1748), - [anon_sym_ATtry] = ACTIONS(1748), - [anon_sym_ATthrow] = ACTIONS(1748), - [anon_sym_ATselector] = ACTIONS(1748), - [anon_sym_ATencode] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1746), - [sym_YES] = ACTIONS(1746), - [sym_NO] = ACTIONS(1746), - [anon_sym___builtin_available] = ACTIONS(1746), - [anon_sym_ATavailable] = ACTIONS(1748), - [anon_sym_va_arg] = ACTIONS(1746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1532] = { - [sym_identifier] = ACTIONS(1750), - [aux_sym_preproc_include_token1] = ACTIONS(1752), - [aux_sym_preproc_def_token1] = ACTIONS(1752), - [aux_sym_preproc_if_token1] = ACTIONS(1750), - [aux_sym_preproc_if_token2] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym___attribute] = ACTIONS(1750), - [anon_sym___attribute__] = ACTIONS(1750), - [anon_sym___declspec] = ACTIONS(1750), - [anon_sym___cdecl] = ACTIONS(1750), - [anon_sym___clrcall] = ACTIONS(1750), - [anon_sym___stdcall] = ACTIONS(1750), - [anon_sym___fastcall] = ACTIONS(1750), - [anon_sym___thiscall] = ACTIONS(1750), - [anon_sym___vectorcall] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_auto] = ACTIONS(1750), - [anon_sym_register] = ACTIONS(1750), - [anon_sym_inline] = ACTIONS(1750), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_volatile] = ACTIONS(1750), - [anon_sym_restrict] = ACTIONS(1750), - [anon_sym__Atomic] = ACTIONS(1750), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_out] = ACTIONS(1750), - [anon_sym_inout] = ACTIONS(1750), - [anon_sym_bycopy] = ACTIONS(1750), - [anon_sym_byref] = ACTIONS(1750), - [anon_sym_oneway] = ACTIONS(1750), - [anon_sym__Nullable] = ACTIONS(1750), - [anon_sym__Nonnull] = ACTIONS(1750), - [anon_sym__Nullable_result] = ACTIONS(1750), - [anon_sym__Null_unspecified] = ACTIONS(1750), - [anon_sym___autoreleasing] = ACTIONS(1750), - [anon_sym___nullable] = ACTIONS(1750), - [anon_sym___nonnull] = ACTIONS(1750), - [anon_sym___strong] = ACTIONS(1750), - [anon_sym___weak] = ACTIONS(1750), - [anon_sym___bridge] = ACTIONS(1750), - [anon_sym___bridge_transfer] = ACTIONS(1750), - [anon_sym___bridge_retained] = ACTIONS(1750), - [anon_sym___unsafe_unretained] = ACTIONS(1750), - [anon_sym___block] = ACTIONS(1750), - [anon_sym___kindof] = ACTIONS(1750), - [anon_sym___unused] = ACTIONS(1750), - [anon_sym__Complex] = ACTIONS(1750), - [anon_sym___complex] = ACTIONS(1750), - [anon_sym_IBOutlet] = ACTIONS(1750), - [anon_sym_IBInspectable] = ACTIONS(1750), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1750), - [anon_sym_signed] = ACTIONS(1750), - [anon_sym_unsigned] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_NS_ENUM] = ACTIONS(1750), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1750), - [anon_sym_NS_OPTIONS] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_goto] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1750), - [sym_number_literal] = ACTIONS(1752), - [anon_sym_L_SQUOTE] = ACTIONS(1752), - [anon_sym_u_SQUOTE] = ACTIONS(1752), - [anon_sym_U_SQUOTE] = ACTIONS(1752), - [anon_sym_u8_SQUOTE] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_L_DQUOTE] = ACTIONS(1752), - [anon_sym_u_DQUOTE] = ACTIONS(1752), - [anon_sym_U_DQUOTE] = ACTIONS(1752), - [anon_sym_u8_DQUOTE] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1752), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1752), - [anon_sym_ATimport] = ACTIONS(1752), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1750), - [anon_sym_ATcompatibility_alias] = ACTIONS(1752), - [anon_sym_ATprotocol] = ACTIONS(1752), - [anon_sym_ATclass] = ACTIONS(1752), - [anon_sym_ATinterface] = ACTIONS(1752), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1750), - [sym_method_attribute_specifier] = ACTIONS(1750), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1750), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE] = ACTIONS(1750), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_API_AVAILABLE] = ACTIONS(1750), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_API_DEPRECATED] = ACTIONS(1750), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1750), - [anon_sym___deprecated_msg] = ACTIONS(1750), - [anon_sym___deprecated_enum_msg] = ACTIONS(1750), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1750), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1750), - [anon_sym_ATimplementation] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym___typeof] = ACTIONS(1750), - [anon_sym___typeof__] = ACTIONS(1750), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_nil] = ACTIONS(1750), - [sym_id] = ACTIONS(1750), - [sym_instancetype] = ACTIONS(1750), - [sym_Class] = ACTIONS(1750), - [sym_SEL] = ACTIONS(1750), - [sym_IMP] = ACTIONS(1750), - [sym_BOOL] = ACTIONS(1750), - [sym_auto] = ACTIONS(1750), - [anon_sym_ATautoreleasepool] = ACTIONS(1752), - [anon_sym_ATsynchronized] = ACTIONS(1752), - [anon_sym_ATtry] = ACTIONS(1752), - [anon_sym_ATthrow] = ACTIONS(1752), - [anon_sym_ATselector] = ACTIONS(1752), - [anon_sym_ATencode] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [sym_YES] = ACTIONS(1750), - [sym_NO] = ACTIONS(1750), - [anon_sym___builtin_available] = ACTIONS(1750), - [anon_sym_ATavailable] = ACTIONS(1752), - [anon_sym_va_arg] = ACTIONS(1750), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1533] = { - [sym_identifier] = ACTIONS(1750), - [aux_sym_preproc_include_token1] = ACTIONS(1752), - [aux_sym_preproc_def_token1] = ACTIONS(1752), - [aux_sym_preproc_if_token1] = ACTIONS(1750), - [aux_sym_preproc_if_token2] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym___attribute] = ACTIONS(1750), - [anon_sym___attribute__] = ACTIONS(1750), - [anon_sym___declspec] = ACTIONS(1750), - [anon_sym___cdecl] = ACTIONS(1750), - [anon_sym___clrcall] = ACTIONS(1750), - [anon_sym___stdcall] = ACTIONS(1750), - [anon_sym___fastcall] = ACTIONS(1750), - [anon_sym___thiscall] = ACTIONS(1750), - [anon_sym___vectorcall] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_auto] = ACTIONS(1750), - [anon_sym_register] = ACTIONS(1750), - [anon_sym_inline] = ACTIONS(1750), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_volatile] = ACTIONS(1750), - [anon_sym_restrict] = ACTIONS(1750), - [anon_sym__Atomic] = ACTIONS(1750), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_out] = ACTIONS(1750), - [anon_sym_inout] = ACTIONS(1750), - [anon_sym_bycopy] = ACTIONS(1750), - [anon_sym_byref] = ACTIONS(1750), - [anon_sym_oneway] = ACTIONS(1750), - [anon_sym__Nullable] = ACTIONS(1750), - [anon_sym__Nonnull] = ACTIONS(1750), - [anon_sym__Nullable_result] = ACTIONS(1750), - [anon_sym__Null_unspecified] = ACTIONS(1750), - [anon_sym___autoreleasing] = ACTIONS(1750), - [anon_sym___nullable] = ACTIONS(1750), - [anon_sym___nonnull] = ACTIONS(1750), - [anon_sym___strong] = ACTIONS(1750), - [anon_sym___weak] = ACTIONS(1750), - [anon_sym___bridge] = ACTIONS(1750), - [anon_sym___bridge_transfer] = ACTIONS(1750), - [anon_sym___bridge_retained] = ACTIONS(1750), - [anon_sym___unsafe_unretained] = ACTIONS(1750), - [anon_sym___block] = ACTIONS(1750), - [anon_sym___kindof] = ACTIONS(1750), - [anon_sym___unused] = ACTIONS(1750), - [anon_sym__Complex] = ACTIONS(1750), - [anon_sym___complex] = ACTIONS(1750), - [anon_sym_IBOutlet] = ACTIONS(1750), - [anon_sym_IBInspectable] = ACTIONS(1750), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1750), - [anon_sym_signed] = ACTIONS(1750), - [anon_sym_unsigned] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_NS_ENUM] = ACTIONS(1750), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1750), - [anon_sym_NS_OPTIONS] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_goto] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1750), - [sym_number_literal] = ACTIONS(1752), - [anon_sym_L_SQUOTE] = ACTIONS(1752), - [anon_sym_u_SQUOTE] = ACTIONS(1752), - [anon_sym_U_SQUOTE] = ACTIONS(1752), - [anon_sym_u8_SQUOTE] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_L_DQUOTE] = ACTIONS(1752), - [anon_sym_u_DQUOTE] = ACTIONS(1752), - [anon_sym_U_DQUOTE] = ACTIONS(1752), - [anon_sym_u8_DQUOTE] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1752), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1752), - [anon_sym_ATimport] = ACTIONS(1752), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1750), - [anon_sym_ATcompatibility_alias] = ACTIONS(1752), - [anon_sym_ATprotocol] = ACTIONS(1752), - [anon_sym_ATclass] = ACTIONS(1752), - [anon_sym_ATinterface] = ACTIONS(1752), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1750), - [sym_method_attribute_specifier] = ACTIONS(1750), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1750), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE] = ACTIONS(1750), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_API_AVAILABLE] = ACTIONS(1750), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_API_DEPRECATED] = ACTIONS(1750), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1750), - [anon_sym___deprecated_msg] = ACTIONS(1750), - [anon_sym___deprecated_enum_msg] = ACTIONS(1750), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1750), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1750), - [anon_sym_ATimplementation] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym___typeof] = ACTIONS(1750), - [anon_sym___typeof__] = ACTIONS(1750), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_nil] = ACTIONS(1750), - [sym_id] = ACTIONS(1750), - [sym_instancetype] = ACTIONS(1750), - [sym_Class] = ACTIONS(1750), - [sym_SEL] = ACTIONS(1750), - [sym_IMP] = ACTIONS(1750), - [sym_BOOL] = ACTIONS(1750), - [sym_auto] = ACTIONS(1750), - [anon_sym_ATautoreleasepool] = ACTIONS(1752), - [anon_sym_ATsynchronized] = ACTIONS(1752), - [anon_sym_ATtry] = ACTIONS(1752), - [anon_sym_ATthrow] = ACTIONS(1752), - [anon_sym_ATselector] = ACTIONS(1752), - [anon_sym_ATencode] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [sym_YES] = ACTIONS(1750), - [sym_NO] = ACTIONS(1750), - [anon_sym___builtin_available] = ACTIONS(1750), - [anon_sym_ATavailable] = ACTIONS(1752), - [anon_sym_va_arg] = ACTIONS(1750), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1534] = { - [sym_identifier] = ACTIONS(2142), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2142), - [aux_sym_preproc_if_token2] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym___attribute] = ACTIONS(2142), - [anon_sym___attribute__] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2142), - [anon_sym___cdecl] = ACTIONS(2142), - [anon_sym___clrcall] = ACTIONS(2142), - [anon_sym___stdcall] = ACTIONS(2142), - [anon_sym___fastcall] = ACTIONS(2142), - [anon_sym___thiscall] = ACTIONS(2142), - [anon_sym___vectorcall] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_auto] = ACTIONS(2142), - [anon_sym_register] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_volatile] = ACTIONS(2142), - [anon_sym_restrict] = ACTIONS(2142), - [anon_sym__Atomic] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_out] = ACTIONS(2142), - [anon_sym_inout] = ACTIONS(2142), - [anon_sym_bycopy] = ACTIONS(2142), - [anon_sym_byref] = ACTIONS(2142), - [anon_sym_oneway] = ACTIONS(2142), - [anon_sym__Nullable] = ACTIONS(2142), - [anon_sym__Nonnull] = ACTIONS(2142), - [anon_sym__Nullable_result] = ACTIONS(2142), - [anon_sym__Null_unspecified] = ACTIONS(2142), - [anon_sym___autoreleasing] = ACTIONS(2142), - [anon_sym___nullable] = ACTIONS(2142), - [anon_sym___nonnull] = ACTIONS(2142), - [anon_sym___strong] = ACTIONS(2142), - [anon_sym___weak] = ACTIONS(2142), - [anon_sym___bridge] = ACTIONS(2142), - [anon_sym___bridge_transfer] = ACTIONS(2142), - [anon_sym___bridge_retained] = ACTIONS(2142), - [anon_sym___unsafe_unretained] = ACTIONS(2142), - [anon_sym___block] = ACTIONS(2142), - [anon_sym___kindof] = ACTIONS(2142), - [anon_sym___unused] = ACTIONS(2142), - [anon_sym__Complex] = ACTIONS(2142), - [anon_sym___complex] = ACTIONS(2142), - [anon_sym_IBOutlet] = ACTIONS(2142), - [anon_sym_IBInspectable] = ACTIONS(2142), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2142), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_NS_ENUM] = ACTIONS(2142), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2142), - [anon_sym_NS_OPTIONS] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_goto] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_sizeof] = ACTIONS(2142), - [sym_number_literal] = ACTIONS(2144), - [anon_sym_L_SQUOTE] = ACTIONS(2144), - [anon_sym_u_SQUOTE] = ACTIONS(2144), - [anon_sym_U_SQUOTE] = ACTIONS(2144), - [anon_sym_u8_SQUOTE] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_L_DQUOTE] = ACTIONS(2144), - [anon_sym_u_DQUOTE] = ACTIONS(2144), - [anon_sym_U_DQUOTE] = ACTIONS(2144), - [anon_sym_u8_DQUOTE] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2144), - [anon_sym_ATimport] = ACTIONS(2144), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2142), - [anon_sym_ATcompatibility_alias] = ACTIONS(2144), - [anon_sym_ATprotocol] = ACTIONS(2144), - [anon_sym_ATclass] = ACTIONS(2144), - [anon_sym_ATinterface] = ACTIONS(2144), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2142), - [sym_method_attribute_specifier] = ACTIONS(2142), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2142), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE] = ACTIONS(2142), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_API_AVAILABLE] = ACTIONS(2142), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_API_DEPRECATED] = ACTIONS(2142), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2142), - [anon_sym___deprecated_msg] = ACTIONS(2142), - [anon_sym___deprecated_enum_msg] = ACTIONS(2142), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2142), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2142), - [anon_sym_ATimplementation] = ACTIONS(2144), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym___typeof] = ACTIONS(2142), - [anon_sym___typeof__] = ACTIONS(2142), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_nil] = ACTIONS(2142), - [sym_id] = ACTIONS(2142), - [sym_instancetype] = ACTIONS(2142), - [sym_Class] = ACTIONS(2142), - [sym_SEL] = ACTIONS(2142), - [sym_IMP] = ACTIONS(2142), - [sym_BOOL] = ACTIONS(2142), - [sym_auto] = ACTIONS(2142), - [anon_sym_ATautoreleasepool] = ACTIONS(2144), - [anon_sym_ATsynchronized] = ACTIONS(2144), - [anon_sym_ATtry] = ACTIONS(2144), - [anon_sym_ATthrow] = ACTIONS(2144), - [anon_sym_ATselector] = ACTIONS(2144), - [anon_sym_ATencode] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2142), - [sym_YES] = ACTIONS(2142), - [sym_NO] = ACTIONS(2142), - [anon_sym___builtin_available] = ACTIONS(2142), - [anon_sym_ATavailable] = ACTIONS(2144), - [anon_sym_va_arg] = ACTIONS(2142), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1535] = { - [sym_identifier] = ACTIONS(2142), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2142), - [aux_sym_preproc_if_token2] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym___attribute] = ACTIONS(2142), - [anon_sym___attribute__] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2142), - [anon_sym___cdecl] = ACTIONS(2142), - [anon_sym___clrcall] = ACTIONS(2142), - [anon_sym___stdcall] = ACTIONS(2142), - [anon_sym___fastcall] = ACTIONS(2142), - [anon_sym___thiscall] = ACTIONS(2142), - [anon_sym___vectorcall] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_auto] = ACTIONS(2142), - [anon_sym_register] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_volatile] = ACTIONS(2142), - [anon_sym_restrict] = ACTIONS(2142), - [anon_sym__Atomic] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_out] = ACTIONS(2142), - [anon_sym_inout] = ACTIONS(2142), - [anon_sym_bycopy] = ACTIONS(2142), - [anon_sym_byref] = ACTIONS(2142), - [anon_sym_oneway] = ACTIONS(2142), - [anon_sym__Nullable] = ACTIONS(2142), - [anon_sym__Nonnull] = ACTIONS(2142), - [anon_sym__Nullable_result] = ACTIONS(2142), - [anon_sym__Null_unspecified] = ACTIONS(2142), - [anon_sym___autoreleasing] = ACTIONS(2142), - [anon_sym___nullable] = ACTIONS(2142), - [anon_sym___nonnull] = ACTIONS(2142), - [anon_sym___strong] = ACTIONS(2142), - [anon_sym___weak] = ACTIONS(2142), - [anon_sym___bridge] = ACTIONS(2142), - [anon_sym___bridge_transfer] = ACTIONS(2142), - [anon_sym___bridge_retained] = ACTIONS(2142), - [anon_sym___unsafe_unretained] = ACTIONS(2142), - [anon_sym___block] = ACTIONS(2142), - [anon_sym___kindof] = ACTIONS(2142), - [anon_sym___unused] = ACTIONS(2142), - [anon_sym__Complex] = ACTIONS(2142), - [anon_sym___complex] = ACTIONS(2142), - [anon_sym_IBOutlet] = ACTIONS(2142), - [anon_sym_IBInspectable] = ACTIONS(2142), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2142), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_NS_ENUM] = ACTIONS(2142), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2142), - [anon_sym_NS_OPTIONS] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_goto] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_sizeof] = ACTIONS(2142), - [sym_number_literal] = ACTIONS(2144), - [anon_sym_L_SQUOTE] = ACTIONS(2144), - [anon_sym_u_SQUOTE] = ACTIONS(2144), - [anon_sym_U_SQUOTE] = ACTIONS(2144), - [anon_sym_u8_SQUOTE] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_L_DQUOTE] = ACTIONS(2144), - [anon_sym_u_DQUOTE] = ACTIONS(2144), - [anon_sym_U_DQUOTE] = ACTIONS(2144), - [anon_sym_u8_DQUOTE] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2144), - [anon_sym_ATimport] = ACTIONS(2144), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2142), - [anon_sym_ATcompatibility_alias] = ACTIONS(2144), - [anon_sym_ATprotocol] = ACTIONS(2144), - [anon_sym_ATclass] = ACTIONS(2144), - [anon_sym_ATinterface] = ACTIONS(2144), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2142), - [sym_method_attribute_specifier] = ACTIONS(2142), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2142), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE] = ACTIONS(2142), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_API_AVAILABLE] = ACTIONS(2142), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_API_DEPRECATED] = ACTIONS(2142), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2142), - [anon_sym___deprecated_msg] = ACTIONS(2142), - [anon_sym___deprecated_enum_msg] = ACTIONS(2142), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2142), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2142), - [anon_sym_ATimplementation] = ACTIONS(2144), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym___typeof] = ACTIONS(2142), - [anon_sym___typeof__] = ACTIONS(2142), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_nil] = ACTIONS(2142), - [sym_id] = ACTIONS(2142), - [sym_instancetype] = ACTIONS(2142), - [sym_Class] = ACTIONS(2142), - [sym_SEL] = ACTIONS(2142), - [sym_IMP] = ACTIONS(2142), - [sym_BOOL] = ACTIONS(2142), - [sym_auto] = ACTIONS(2142), - [anon_sym_ATautoreleasepool] = ACTIONS(2144), - [anon_sym_ATsynchronized] = ACTIONS(2144), - [anon_sym_ATtry] = ACTIONS(2144), - [anon_sym_ATthrow] = ACTIONS(2144), - [anon_sym_ATselector] = ACTIONS(2144), - [anon_sym_ATencode] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2142), - [sym_YES] = ACTIONS(2142), - [sym_NO] = ACTIONS(2142), - [anon_sym___builtin_available] = ACTIONS(2142), - [anon_sym_ATavailable] = ACTIONS(2144), - [anon_sym_va_arg] = ACTIONS(2142), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1536] = { - [sym_identifier] = ACTIONS(1750), - [aux_sym_preproc_include_token1] = ACTIONS(1752), - [aux_sym_preproc_def_token1] = ACTIONS(1752), - [aux_sym_preproc_if_token1] = ACTIONS(1750), - [aux_sym_preproc_if_token2] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym___attribute] = ACTIONS(1750), - [anon_sym___attribute__] = ACTIONS(1750), - [anon_sym___declspec] = ACTIONS(1750), - [anon_sym___cdecl] = ACTIONS(1750), - [anon_sym___clrcall] = ACTIONS(1750), - [anon_sym___stdcall] = ACTIONS(1750), - [anon_sym___fastcall] = ACTIONS(1750), - [anon_sym___thiscall] = ACTIONS(1750), - [anon_sym___vectorcall] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_auto] = ACTIONS(1750), - [anon_sym_register] = ACTIONS(1750), - [anon_sym_inline] = ACTIONS(1750), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_volatile] = ACTIONS(1750), - [anon_sym_restrict] = ACTIONS(1750), - [anon_sym__Atomic] = ACTIONS(1750), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_out] = ACTIONS(1750), - [anon_sym_inout] = ACTIONS(1750), - [anon_sym_bycopy] = ACTIONS(1750), - [anon_sym_byref] = ACTIONS(1750), - [anon_sym_oneway] = ACTIONS(1750), - [anon_sym__Nullable] = ACTIONS(1750), - [anon_sym__Nonnull] = ACTIONS(1750), - [anon_sym__Nullable_result] = ACTIONS(1750), - [anon_sym__Null_unspecified] = ACTIONS(1750), - [anon_sym___autoreleasing] = ACTIONS(1750), - [anon_sym___nullable] = ACTIONS(1750), - [anon_sym___nonnull] = ACTIONS(1750), - [anon_sym___strong] = ACTIONS(1750), - [anon_sym___weak] = ACTIONS(1750), - [anon_sym___bridge] = ACTIONS(1750), - [anon_sym___bridge_transfer] = ACTIONS(1750), - [anon_sym___bridge_retained] = ACTIONS(1750), - [anon_sym___unsafe_unretained] = ACTIONS(1750), - [anon_sym___block] = ACTIONS(1750), - [anon_sym___kindof] = ACTIONS(1750), - [anon_sym___unused] = ACTIONS(1750), - [anon_sym__Complex] = ACTIONS(1750), - [anon_sym___complex] = ACTIONS(1750), - [anon_sym_IBOutlet] = ACTIONS(1750), - [anon_sym_IBInspectable] = ACTIONS(1750), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1750), - [anon_sym_signed] = ACTIONS(1750), - [anon_sym_unsigned] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_NS_ENUM] = ACTIONS(1750), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1750), - [anon_sym_NS_OPTIONS] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_goto] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1750), - [sym_number_literal] = ACTIONS(1752), - [anon_sym_L_SQUOTE] = ACTIONS(1752), - [anon_sym_u_SQUOTE] = ACTIONS(1752), - [anon_sym_U_SQUOTE] = ACTIONS(1752), - [anon_sym_u8_SQUOTE] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_L_DQUOTE] = ACTIONS(1752), - [anon_sym_u_DQUOTE] = ACTIONS(1752), - [anon_sym_U_DQUOTE] = ACTIONS(1752), - [anon_sym_u8_DQUOTE] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1752), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1752), - [anon_sym_ATimport] = ACTIONS(1752), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1750), - [anon_sym_ATcompatibility_alias] = ACTIONS(1752), - [anon_sym_ATprotocol] = ACTIONS(1752), - [anon_sym_ATclass] = ACTIONS(1752), - [anon_sym_ATinterface] = ACTIONS(1752), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1750), - [sym_method_attribute_specifier] = ACTIONS(1750), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1750), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE] = ACTIONS(1750), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_API_AVAILABLE] = ACTIONS(1750), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_API_DEPRECATED] = ACTIONS(1750), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1750), - [anon_sym___deprecated_msg] = ACTIONS(1750), - [anon_sym___deprecated_enum_msg] = ACTIONS(1750), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1750), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1750), - [anon_sym_ATimplementation] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym___typeof] = ACTIONS(1750), - [anon_sym___typeof__] = ACTIONS(1750), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_nil] = ACTIONS(1750), - [sym_id] = ACTIONS(1750), - [sym_instancetype] = ACTIONS(1750), - [sym_Class] = ACTIONS(1750), - [sym_SEL] = ACTIONS(1750), - [sym_IMP] = ACTIONS(1750), - [sym_BOOL] = ACTIONS(1750), - [sym_auto] = ACTIONS(1750), - [anon_sym_ATautoreleasepool] = ACTIONS(1752), - [anon_sym_ATsynchronized] = ACTIONS(1752), - [anon_sym_ATtry] = ACTIONS(1752), - [anon_sym_ATthrow] = ACTIONS(1752), - [anon_sym_ATselector] = ACTIONS(1752), - [anon_sym_ATencode] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [sym_YES] = ACTIONS(1750), - [sym_NO] = ACTIONS(1750), - [anon_sym___builtin_available] = ACTIONS(1750), - [anon_sym_ATavailable] = ACTIONS(1752), - [anon_sym_va_arg] = ACTIONS(1750), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1537] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1538] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1539] = { - [sym_identifier] = ACTIONS(2142), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2142), - [aux_sym_preproc_if_token2] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym___attribute] = ACTIONS(2142), - [anon_sym___attribute__] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2142), - [anon_sym___cdecl] = ACTIONS(2142), - [anon_sym___clrcall] = ACTIONS(2142), - [anon_sym___stdcall] = ACTIONS(2142), - [anon_sym___fastcall] = ACTIONS(2142), - [anon_sym___thiscall] = ACTIONS(2142), - [anon_sym___vectorcall] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_auto] = ACTIONS(2142), - [anon_sym_register] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_volatile] = ACTIONS(2142), - [anon_sym_restrict] = ACTIONS(2142), - [anon_sym__Atomic] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_out] = ACTIONS(2142), - [anon_sym_inout] = ACTIONS(2142), - [anon_sym_bycopy] = ACTIONS(2142), - [anon_sym_byref] = ACTIONS(2142), - [anon_sym_oneway] = ACTIONS(2142), - [anon_sym__Nullable] = ACTIONS(2142), - [anon_sym__Nonnull] = ACTIONS(2142), - [anon_sym__Nullable_result] = ACTIONS(2142), - [anon_sym__Null_unspecified] = ACTIONS(2142), - [anon_sym___autoreleasing] = ACTIONS(2142), - [anon_sym___nullable] = ACTIONS(2142), - [anon_sym___nonnull] = ACTIONS(2142), - [anon_sym___strong] = ACTIONS(2142), - [anon_sym___weak] = ACTIONS(2142), - [anon_sym___bridge] = ACTIONS(2142), - [anon_sym___bridge_transfer] = ACTIONS(2142), - [anon_sym___bridge_retained] = ACTIONS(2142), - [anon_sym___unsafe_unretained] = ACTIONS(2142), - [anon_sym___block] = ACTIONS(2142), - [anon_sym___kindof] = ACTIONS(2142), - [anon_sym___unused] = ACTIONS(2142), - [anon_sym__Complex] = ACTIONS(2142), - [anon_sym___complex] = ACTIONS(2142), - [anon_sym_IBOutlet] = ACTIONS(2142), - [anon_sym_IBInspectable] = ACTIONS(2142), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2142), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_NS_ENUM] = ACTIONS(2142), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2142), - [anon_sym_NS_OPTIONS] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_goto] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_sizeof] = ACTIONS(2142), - [sym_number_literal] = ACTIONS(2144), - [anon_sym_L_SQUOTE] = ACTIONS(2144), - [anon_sym_u_SQUOTE] = ACTIONS(2144), - [anon_sym_U_SQUOTE] = ACTIONS(2144), - [anon_sym_u8_SQUOTE] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_L_DQUOTE] = ACTIONS(2144), - [anon_sym_u_DQUOTE] = ACTIONS(2144), - [anon_sym_U_DQUOTE] = ACTIONS(2144), - [anon_sym_u8_DQUOTE] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2144), - [anon_sym_ATimport] = ACTIONS(2144), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2142), - [anon_sym_ATcompatibility_alias] = ACTIONS(2144), - [anon_sym_ATprotocol] = ACTIONS(2144), - [anon_sym_ATclass] = ACTIONS(2144), - [anon_sym_ATinterface] = ACTIONS(2144), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2142), - [sym_method_attribute_specifier] = ACTIONS(2142), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2142), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE] = ACTIONS(2142), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_API_AVAILABLE] = ACTIONS(2142), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_API_DEPRECATED] = ACTIONS(2142), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2142), - [anon_sym___deprecated_msg] = ACTIONS(2142), - [anon_sym___deprecated_enum_msg] = ACTIONS(2142), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2142), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2142), - [anon_sym_ATimplementation] = ACTIONS(2144), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym___typeof] = ACTIONS(2142), - [anon_sym___typeof__] = ACTIONS(2142), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_nil] = ACTIONS(2142), - [sym_id] = ACTIONS(2142), - [sym_instancetype] = ACTIONS(2142), - [sym_Class] = ACTIONS(2142), - [sym_SEL] = ACTIONS(2142), - [sym_IMP] = ACTIONS(2142), - [sym_BOOL] = ACTIONS(2142), - [sym_auto] = ACTIONS(2142), - [anon_sym_ATautoreleasepool] = ACTIONS(2144), - [anon_sym_ATsynchronized] = ACTIONS(2144), - [anon_sym_ATtry] = ACTIONS(2144), - [anon_sym_ATthrow] = ACTIONS(2144), - [anon_sym_ATselector] = ACTIONS(2144), - [anon_sym_ATencode] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2142), - [sym_YES] = ACTIONS(2142), - [sym_NO] = ACTIONS(2142), - [anon_sym___builtin_available] = ACTIONS(2142), - [anon_sym_ATavailable] = ACTIONS(2144), - [anon_sym_va_arg] = ACTIONS(2142), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1540] = { - [sym_identifier] = ACTIONS(2142), - [aux_sym_preproc_include_token1] = ACTIONS(2144), - [aux_sym_preproc_def_token1] = ACTIONS(2144), - [aux_sym_preproc_if_token1] = ACTIONS(2142), - [aux_sym_preproc_if_token2] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2142), - [anon_sym_LPAREN2] = ACTIONS(2144), - [anon_sym_BANG] = ACTIONS(2144), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2144), - [anon_sym_SEMI] = ACTIONS(2144), - [anon_sym_typedef] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym___attribute] = ACTIONS(2142), - [anon_sym___attribute__] = ACTIONS(2142), - [anon_sym___declspec] = ACTIONS(2142), - [anon_sym___cdecl] = ACTIONS(2142), - [anon_sym___clrcall] = ACTIONS(2142), - [anon_sym___stdcall] = ACTIONS(2142), - [anon_sym___fastcall] = ACTIONS(2142), - [anon_sym___thiscall] = ACTIONS(2142), - [anon_sym___vectorcall] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2144), - [anon_sym_LBRACK] = ACTIONS(2144), - [anon_sym_static] = ACTIONS(2142), - [anon_sym_auto] = ACTIONS(2142), - [anon_sym_register] = ACTIONS(2142), - [anon_sym_inline] = ACTIONS(2142), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_volatile] = ACTIONS(2142), - [anon_sym_restrict] = ACTIONS(2142), - [anon_sym__Atomic] = ACTIONS(2142), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_out] = ACTIONS(2142), - [anon_sym_inout] = ACTIONS(2142), - [anon_sym_bycopy] = ACTIONS(2142), - [anon_sym_byref] = ACTIONS(2142), - [anon_sym_oneway] = ACTIONS(2142), - [anon_sym__Nullable] = ACTIONS(2142), - [anon_sym__Nonnull] = ACTIONS(2142), - [anon_sym__Nullable_result] = ACTIONS(2142), - [anon_sym__Null_unspecified] = ACTIONS(2142), - [anon_sym___autoreleasing] = ACTIONS(2142), - [anon_sym___nullable] = ACTIONS(2142), - [anon_sym___nonnull] = ACTIONS(2142), - [anon_sym___strong] = ACTIONS(2142), - [anon_sym___weak] = ACTIONS(2142), - [anon_sym___bridge] = ACTIONS(2142), - [anon_sym___bridge_transfer] = ACTIONS(2142), - [anon_sym___bridge_retained] = ACTIONS(2142), - [anon_sym___unsafe_unretained] = ACTIONS(2142), - [anon_sym___block] = ACTIONS(2142), - [anon_sym___kindof] = ACTIONS(2142), - [anon_sym___unused] = ACTIONS(2142), - [anon_sym__Complex] = ACTIONS(2142), - [anon_sym___complex] = ACTIONS(2142), - [anon_sym_IBOutlet] = ACTIONS(2142), - [anon_sym_IBInspectable] = ACTIONS(2142), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2142), - [anon_sym_signed] = ACTIONS(2142), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2142), - [anon_sym_enum] = ACTIONS(2142), - [anon_sym_NS_ENUM] = ACTIONS(2142), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2142), - [anon_sym_NS_OPTIONS] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(2142), - [anon_sym_union] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_goto] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2144), - [anon_sym_PLUS_PLUS] = ACTIONS(2144), - [anon_sym_sizeof] = ACTIONS(2142), - [sym_number_literal] = ACTIONS(2144), - [anon_sym_L_SQUOTE] = ACTIONS(2144), - [anon_sym_u_SQUOTE] = ACTIONS(2144), - [anon_sym_U_SQUOTE] = ACTIONS(2144), - [anon_sym_u8_SQUOTE] = ACTIONS(2144), - [anon_sym_SQUOTE] = ACTIONS(2144), - [anon_sym_L_DQUOTE] = ACTIONS(2144), - [anon_sym_u_DQUOTE] = ACTIONS(2144), - [anon_sym_U_DQUOTE] = ACTIONS(2144), - [anon_sym_u8_DQUOTE] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym_true] = ACTIONS(2142), - [sym_false] = ACTIONS(2142), - [sym_null] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2144), - [anon_sym_ATimport] = ACTIONS(2144), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2142), - [anon_sym_ATcompatibility_alias] = ACTIONS(2144), - [anon_sym_ATprotocol] = ACTIONS(2144), - [anon_sym_ATclass] = ACTIONS(2144), - [anon_sym_ATinterface] = ACTIONS(2144), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2142), - [sym_method_attribute_specifier] = ACTIONS(2142), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2142), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2142), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE] = ACTIONS(2142), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2142), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_API_AVAILABLE] = ACTIONS(2142), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_API_DEPRECATED] = ACTIONS(2142), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2142), - [anon_sym___deprecated_msg] = ACTIONS(2142), - [anon_sym___deprecated_enum_msg] = ACTIONS(2142), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2142), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2142), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2142), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2142), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2142), - [anon_sym_ATimplementation] = ACTIONS(2144), - [anon_sym_typeof] = ACTIONS(2142), - [anon_sym___typeof] = ACTIONS(2142), - [anon_sym___typeof__] = ACTIONS(2142), - [sym_self] = ACTIONS(2142), - [sym_super] = ACTIONS(2142), - [sym_nil] = ACTIONS(2142), - [sym_id] = ACTIONS(2142), - [sym_instancetype] = ACTIONS(2142), - [sym_Class] = ACTIONS(2142), - [sym_SEL] = ACTIONS(2142), - [sym_IMP] = ACTIONS(2142), - [sym_BOOL] = ACTIONS(2142), - [sym_auto] = ACTIONS(2142), - [anon_sym_ATautoreleasepool] = ACTIONS(2144), - [anon_sym_ATsynchronized] = ACTIONS(2144), - [anon_sym_ATtry] = ACTIONS(2144), - [anon_sym_ATthrow] = ACTIONS(2144), - [anon_sym_ATselector] = ACTIONS(2144), - [anon_sym_ATencode] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2142), - [sym_YES] = ACTIONS(2142), - [sym_NO] = ACTIONS(2142), - [anon_sym___builtin_available] = ACTIONS(2142), - [anon_sym_ATavailable] = ACTIONS(2144), - [anon_sym_va_arg] = ACTIONS(2142), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1541] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1542] = { - [sym_identifier] = ACTIONS(1750), - [aux_sym_preproc_include_token1] = ACTIONS(1752), - [aux_sym_preproc_def_token1] = ACTIONS(1752), - [aux_sym_preproc_if_token1] = ACTIONS(1750), - [aux_sym_preproc_if_token2] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym___attribute] = ACTIONS(1750), - [anon_sym___attribute__] = ACTIONS(1750), - [anon_sym___declspec] = ACTIONS(1750), - [anon_sym___cdecl] = ACTIONS(1750), - [anon_sym___clrcall] = ACTIONS(1750), - [anon_sym___stdcall] = ACTIONS(1750), - [anon_sym___fastcall] = ACTIONS(1750), - [anon_sym___thiscall] = ACTIONS(1750), - [anon_sym___vectorcall] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_auto] = ACTIONS(1750), - [anon_sym_register] = ACTIONS(1750), - [anon_sym_inline] = ACTIONS(1750), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_volatile] = ACTIONS(1750), - [anon_sym_restrict] = ACTIONS(1750), - [anon_sym__Atomic] = ACTIONS(1750), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_out] = ACTIONS(1750), - [anon_sym_inout] = ACTIONS(1750), - [anon_sym_bycopy] = ACTIONS(1750), - [anon_sym_byref] = ACTIONS(1750), - [anon_sym_oneway] = ACTIONS(1750), - [anon_sym__Nullable] = ACTIONS(1750), - [anon_sym__Nonnull] = ACTIONS(1750), - [anon_sym__Nullable_result] = ACTIONS(1750), - [anon_sym__Null_unspecified] = ACTIONS(1750), - [anon_sym___autoreleasing] = ACTIONS(1750), - [anon_sym___nullable] = ACTIONS(1750), - [anon_sym___nonnull] = ACTIONS(1750), - [anon_sym___strong] = ACTIONS(1750), - [anon_sym___weak] = ACTIONS(1750), - [anon_sym___bridge] = ACTIONS(1750), - [anon_sym___bridge_transfer] = ACTIONS(1750), - [anon_sym___bridge_retained] = ACTIONS(1750), - [anon_sym___unsafe_unretained] = ACTIONS(1750), - [anon_sym___block] = ACTIONS(1750), - [anon_sym___kindof] = ACTIONS(1750), - [anon_sym___unused] = ACTIONS(1750), - [anon_sym__Complex] = ACTIONS(1750), - [anon_sym___complex] = ACTIONS(1750), - [anon_sym_IBOutlet] = ACTIONS(1750), - [anon_sym_IBInspectable] = ACTIONS(1750), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1750), - [anon_sym_signed] = ACTIONS(1750), - [anon_sym_unsigned] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_NS_ENUM] = ACTIONS(1750), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1750), - [anon_sym_NS_OPTIONS] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_goto] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1750), - [sym_number_literal] = ACTIONS(1752), - [anon_sym_L_SQUOTE] = ACTIONS(1752), - [anon_sym_u_SQUOTE] = ACTIONS(1752), - [anon_sym_U_SQUOTE] = ACTIONS(1752), - [anon_sym_u8_SQUOTE] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_L_DQUOTE] = ACTIONS(1752), - [anon_sym_u_DQUOTE] = ACTIONS(1752), - [anon_sym_U_DQUOTE] = ACTIONS(1752), - [anon_sym_u8_DQUOTE] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1752), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1752), - [anon_sym_ATimport] = ACTIONS(1752), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1750), - [anon_sym_ATcompatibility_alias] = ACTIONS(1752), - [anon_sym_ATprotocol] = ACTIONS(1752), - [anon_sym_ATclass] = ACTIONS(1752), - [anon_sym_ATinterface] = ACTIONS(1752), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1750), - [sym_method_attribute_specifier] = ACTIONS(1750), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1750), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE] = ACTIONS(1750), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_API_AVAILABLE] = ACTIONS(1750), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_API_DEPRECATED] = ACTIONS(1750), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1750), - [anon_sym___deprecated_msg] = ACTIONS(1750), - [anon_sym___deprecated_enum_msg] = ACTIONS(1750), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1750), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1750), - [anon_sym_ATimplementation] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym___typeof] = ACTIONS(1750), - [anon_sym___typeof__] = ACTIONS(1750), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_nil] = ACTIONS(1750), - [sym_id] = ACTIONS(1750), - [sym_instancetype] = ACTIONS(1750), - [sym_Class] = ACTIONS(1750), - [sym_SEL] = ACTIONS(1750), - [sym_IMP] = ACTIONS(1750), - [sym_BOOL] = ACTIONS(1750), - [sym_auto] = ACTIONS(1750), - [anon_sym_ATautoreleasepool] = ACTIONS(1752), - [anon_sym_ATsynchronized] = ACTIONS(1752), - [anon_sym_ATtry] = ACTIONS(1752), - [anon_sym_ATthrow] = ACTIONS(1752), - [anon_sym_ATselector] = ACTIONS(1752), - [anon_sym_ATencode] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [sym_YES] = ACTIONS(1750), - [sym_NO] = ACTIONS(1750), - [anon_sym___builtin_available] = ACTIONS(1750), - [anon_sym_ATavailable] = ACTIONS(1752), - [anon_sym_va_arg] = ACTIONS(1750), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1543] = { - [sym_identifier] = ACTIONS(1750), - [aux_sym_preproc_include_token1] = ACTIONS(1752), - [aux_sym_preproc_def_token1] = ACTIONS(1752), - [aux_sym_preproc_if_token1] = ACTIONS(1750), - [aux_sym_preproc_if_token2] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym___attribute] = ACTIONS(1750), - [anon_sym___attribute__] = ACTIONS(1750), - [anon_sym___declspec] = ACTIONS(1750), - [anon_sym___cdecl] = ACTIONS(1750), - [anon_sym___clrcall] = ACTIONS(1750), - [anon_sym___stdcall] = ACTIONS(1750), - [anon_sym___fastcall] = ACTIONS(1750), - [anon_sym___thiscall] = ACTIONS(1750), - [anon_sym___vectorcall] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_auto] = ACTIONS(1750), - [anon_sym_register] = ACTIONS(1750), - [anon_sym_inline] = ACTIONS(1750), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_volatile] = ACTIONS(1750), - [anon_sym_restrict] = ACTIONS(1750), - [anon_sym__Atomic] = ACTIONS(1750), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_out] = ACTIONS(1750), - [anon_sym_inout] = ACTIONS(1750), - [anon_sym_bycopy] = ACTIONS(1750), - [anon_sym_byref] = ACTIONS(1750), - [anon_sym_oneway] = ACTIONS(1750), - [anon_sym__Nullable] = ACTIONS(1750), - [anon_sym__Nonnull] = ACTIONS(1750), - [anon_sym__Nullable_result] = ACTIONS(1750), - [anon_sym__Null_unspecified] = ACTIONS(1750), - [anon_sym___autoreleasing] = ACTIONS(1750), - [anon_sym___nullable] = ACTIONS(1750), - [anon_sym___nonnull] = ACTIONS(1750), - [anon_sym___strong] = ACTIONS(1750), - [anon_sym___weak] = ACTIONS(1750), - [anon_sym___bridge] = ACTIONS(1750), - [anon_sym___bridge_transfer] = ACTIONS(1750), - [anon_sym___bridge_retained] = ACTIONS(1750), - [anon_sym___unsafe_unretained] = ACTIONS(1750), - [anon_sym___block] = ACTIONS(1750), - [anon_sym___kindof] = ACTIONS(1750), - [anon_sym___unused] = ACTIONS(1750), - [anon_sym__Complex] = ACTIONS(1750), - [anon_sym___complex] = ACTIONS(1750), - [anon_sym_IBOutlet] = ACTIONS(1750), - [anon_sym_IBInspectable] = ACTIONS(1750), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1750), - [anon_sym_signed] = ACTIONS(1750), - [anon_sym_unsigned] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_NS_ENUM] = ACTIONS(1750), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1750), - [anon_sym_NS_OPTIONS] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_goto] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1750), - [sym_number_literal] = ACTIONS(1752), - [anon_sym_L_SQUOTE] = ACTIONS(1752), - [anon_sym_u_SQUOTE] = ACTIONS(1752), - [anon_sym_U_SQUOTE] = ACTIONS(1752), - [anon_sym_u8_SQUOTE] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_L_DQUOTE] = ACTIONS(1752), - [anon_sym_u_DQUOTE] = ACTIONS(1752), - [anon_sym_U_DQUOTE] = ACTIONS(1752), - [anon_sym_u8_DQUOTE] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1752), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1752), - [anon_sym_ATimport] = ACTIONS(1752), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1750), - [anon_sym_ATcompatibility_alias] = ACTIONS(1752), - [anon_sym_ATprotocol] = ACTIONS(1752), - [anon_sym_ATclass] = ACTIONS(1752), - [anon_sym_ATinterface] = ACTIONS(1752), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1750), - [sym_method_attribute_specifier] = ACTIONS(1750), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1750), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE] = ACTIONS(1750), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_API_AVAILABLE] = ACTIONS(1750), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_API_DEPRECATED] = ACTIONS(1750), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1750), - [anon_sym___deprecated_msg] = ACTIONS(1750), - [anon_sym___deprecated_enum_msg] = ACTIONS(1750), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1750), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1750), - [anon_sym_ATimplementation] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym___typeof] = ACTIONS(1750), - [anon_sym___typeof__] = ACTIONS(1750), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_nil] = ACTIONS(1750), - [sym_id] = ACTIONS(1750), - [sym_instancetype] = ACTIONS(1750), - [sym_Class] = ACTIONS(1750), - [sym_SEL] = ACTIONS(1750), - [sym_IMP] = ACTIONS(1750), - [sym_BOOL] = ACTIONS(1750), - [sym_auto] = ACTIONS(1750), - [anon_sym_ATautoreleasepool] = ACTIONS(1752), - [anon_sym_ATsynchronized] = ACTIONS(1752), - [anon_sym_ATtry] = ACTIONS(1752), - [anon_sym_ATthrow] = ACTIONS(1752), - [anon_sym_ATselector] = ACTIONS(1752), - [anon_sym_ATencode] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [sym_YES] = ACTIONS(1750), - [sym_NO] = ACTIONS(1750), - [anon_sym___builtin_available] = ACTIONS(1750), - [anon_sym_ATavailable] = ACTIONS(1752), - [anon_sym_va_arg] = ACTIONS(1750), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1544] = { - [sym_identifier] = ACTIONS(2070), - [aux_sym_preproc_include_token1] = ACTIONS(2072), - [aux_sym_preproc_def_token1] = ACTIONS(2072), - [aux_sym_preproc_if_token1] = ACTIONS(2070), - [aux_sym_preproc_if_token2] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2070), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym___attribute] = ACTIONS(2070), - [anon_sym___attribute__] = ACTIONS(2070), - [anon_sym___declspec] = ACTIONS(2070), - [anon_sym___cdecl] = ACTIONS(2070), - [anon_sym___clrcall] = ACTIONS(2070), - [anon_sym___stdcall] = ACTIONS(2070), - [anon_sym___fastcall] = ACTIONS(2070), - [anon_sym___thiscall] = ACTIONS(2070), - [anon_sym___vectorcall] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_auto] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_volatile] = ACTIONS(2070), - [anon_sym_restrict] = ACTIONS(2070), - [anon_sym__Atomic] = ACTIONS(2070), - [anon_sym_in] = ACTIONS(2070), - [anon_sym_out] = ACTIONS(2070), - [anon_sym_inout] = ACTIONS(2070), - [anon_sym_bycopy] = ACTIONS(2070), - [anon_sym_byref] = ACTIONS(2070), - [anon_sym_oneway] = ACTIONS(2070), - [anon_sym__Nullable] = ACTIONS(2070), - [anon_sym__Nonnull] = ACTIONS(2070), - [anon_sym__Nullable_result] = ACTIONS(2070), - [anon_sym__Null_unspecified] = ACTIONS(2070), - [anon_sym___autoreleasing] = ACTIONS(2070), - [anon_sym___nullable] = ACTIONS(2070), - [anon_sym___nonnull] = ACTIONS(2070), - [anon_sym___strong] = ACTIONS(2070), - [anon_sym___weak] = ACTIONS(2070), - [anon_sym___bridge] = ACTIONS(2070), - [anon_sym___bridge_transfer] = ACTIONS(2070), - [anon_sym___bridge_retained] = ACTIONS(2070), - [anon_sym___unsafe_unretained] = ACTIONS(2070), - [anon_sym___block] = ACTIONS(2070), - [anon_sym___kindof] = ACTIONS(2070), - [anon_sym___unused] = ACTIONS(2070), - [anon_sym__Complex] = ACTIONS(2070), - [anon_sym___complex] = ACTIONS(2070), - [anon_sym_IBOutlet] = ACTIONS(2070), - [anon_sym_IBInspectable] = ACTIONS(2070), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2070), - [anon_sym_signed] = ACTIONS(2070), - [anon_sym_unsigned] = ACTIONS(2070), - [anon_sym_long] = ACTIONS(2070), - [anon_sym_short] = ACTIONS(2070), - [sym_primitive_type] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_NS_ENUM] = ACTIONS(2070), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2070), - [anon_sym_NS_OPTIONS] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_case] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_goto] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_sizeof] = ACTIONS(2070), - [sym_number_literal] = ACTIONS(2072), - [anon_sym_L_SQUOTE] = ACTIONS(2072), - [anon_sym_u_SQUOTE] = ACTIONS(2072), - [anon_sym_U_SQUOTE] = ACTIONS(2072), - [anon_sym_u8_SQUOTE] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_L_DQUOTE] = ACTIONS(2072), - [anon_sym_u_DQUOTE] = ACTIONS(2072), - [anon_sym_U_DQUOTE] = ACTIONS(2072), - [anon_sym_u8_DQUOTE] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym_true] = ACTIONS(2070), - [sym_false] = ACTIONS(2070), - [sym_null] = ACTIONS(2070), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2072), - [anon_sym_ATimport] = ACTIONS(2072), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2070), - [anon_sym_ATcompatibility_alias] = ACTIONS(2072), - [anon_sym_ATprotocol] = ACTIONS(2072), - [anon_sym_ATclass] = ACTIONS(2072), - [anon_sym_ATinterface] = ACTIONS(2072), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2070), - [sym_method_attribute_specifier] = ACTIONS(2070), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2070), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE] = ACTIONS(2070), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_API_AVAILABLE] = ACTIONS(2070), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_API_DEPRECATED] = ACTIONS(2070), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2070), - [anon_sym___deprecated_msg] = ACTIONS(2070), - [anon_sym___deprecated_enum_msg] = ACTIONS(2070), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2070), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2070), - [anon_sym_ATimplementation] = ACTIONS(2072), - [anon_sym_typeof] = ACTIONS(2070), - [anon_sym___typeof] = ACTIONS(2070), - [anon_sym___typeof__] = ACTIONS(2070), - [sym_self] = ACTIONS(2070), - [sym_super] = ACTIONS(2070), - [sym_nil] = ACTIONS(2070), - [sym_id] = ACTIONS(2070), - [sym_instancetype] = ACTIONS(2070), - [sym_Class] = ACTIONS(2070), - [sym_SEL] = ACTIONS(2070), - [sym_IMP] = ACTIONS(2070), - [sym_BOOL] = ACTIONS(2070), - [sym_auto] = ACTIONS(2070), - [anon_sym_ATautoreleasepool] = ACTIONS(2072), - [anon_sym_ATsynchronized] = ACTIONS(2072), - [anon_sym_ATtry] = ACTIONS(2072), - [anon_sym_ATthrow] = ACTIONS(2072), - [anon_sym_ATselector] = ACTIONS(2072), - [anon_sym_ATencode] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2070), - [sym_YES] = ACTIONS(2070), - [sym_NO] = ACTIONS(2070), - [anon_sym___builtin_available] = ACTIONS(2070), - [anon_sym_ATavailable] = ACTIONS(2072), - [anon_sym_va_arg] = ACTIONS(2070), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1545] = { - [sym_identifier] = ACTIONS(2070), - [aux_sym_preproc_include_token1] = ACTIONS(2072), - [aux_sym_preproc_def_token1] = ACTIONS(2072), - [aux_sym_preproc_if_token1] = ACTIONS(2070), - [aux_sym_preproc_if_token2] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2070), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym___attribute] = ACTIONS(2070), - [anon_sym___attribute__] = ACTIONS(2070), - [anon_sym___declspec] = ACTIONS(2070), - [anon_sym___cdecl] = ACTIONS(2070), - [anon_sym___clrcall] = ACTIONS(2070), - [anon_sym___stdcall] = ACTIONS(2070), - [anon_sym___fastcall] = ACTIONS(2070), - [anon_sym___thiscall] = ACTIONS(2070), - [anon_sym___vectorcall] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_auto] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_volatile] = ACTIONS(2070), - [anon_sym_restrict] = ACTIONS(2070), - [anon_sym__Atomic] = ACTIONS(2070), - [anon_sym_in] = ACTIONS(2070), - [anon_sym_out] = ACTIONS(2070), - [anon_sym_inout] = ACTIONS(2070), - [anon_sym_bycopy] = ACTIONS(2070), - [anon_sym_byref] = ACTIONS(2070), - [anon_sym_oneway] = ACTIONS(2070), - [anon_sym__Nullable] = ACTIONS(2070), - [anon_sym__Nonnull] = ACTIONS(2070), - [anon_sym__Nullable_result] = ACTIONS(2070), - [anon_sym__Null_unspecified] = ACTIONS(2070), - [anon_sym___autoreleasing] = ACTIONS(2070), - [anon_sym___nullable] = ACTIONS(2070), - [anon_sym___nonnull] = ACTIONS(2070), - [anon_sym___strong] = ACTIONS(2070), - [anon_sym___weak] = ACTIONS(2070), - [anon_sym___bridge] = ACTIONS(2070), - [anon_sym___bridge_transfer] = ACTIONS(2070), - [anon_sym___bridge_retained] = ACTIONS(2070), - [anon_sym___unsafe_unretained] = ACTIONS(2070), - [anon_sym___block] = ACTIONS(2070), - [anon_sym___kindof] = ACTIONS(2070), - [anon_sym___unused] = ACTIONS(2070), - [anon_sym__Complex] = ACTIONS(2070), - [anon_sym___complex] = ACTIONS(2070), - [anon_sym_IBOutlet] = ACTIONS(2070), - [anon_sym_IBInspectable] = ACTIONS(2070), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2070), - [anon_sym_signed] = ACTIONS(2070), - [anon_sym_unsigned] = ACTIONS(2070), - [anon_sym_long] = ACTIONS(2070), - [anon_sym_short] = ACTIONS(2070), - [sym_primitive_type] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_NS_ENUM] = ACTIONS(2070), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2070), - [anon_sym_NS_OPTIONS] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_case] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_goto] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_sizeof] = ACTIONS(2070), - [sym_number_literal] = ACTIONS(2072), - [anon_sym_L_SQUOTE] = ACTIONS(2072), - [anon_sym_u_SQUOTE] = ACTIONS(2072), - [anon_sym_U_SQUOTE] = ACTIONS(2072), - [anon_sym_u8_SQUOTE] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_L_DQUOTE] = ACTIONS(2072), - [anon_sym_u_DQUOTE] = ACTIONS(2072), - [anon_sym_U_DQUOTE] = ACTIONS(2072), - [anon_sym_u8_DQUOTE] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym_true] = ACTIONS(2070), - [sym_false] = ACTIONS(2070), - [sym_null] = ACTIONS(2070), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2072), - [anon_sym_ATimport] = ACTIONS(2072), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2070), - [anon_sym_ATcompatibility_alias] = ACTIONS(2072), - [anon_sym_ATprotocol] = ACTIONS(2072), - [anon_sym_ATclass] = ACTIONS(2072), - [anon_sym_ATinterface] = ACTIONS(2072), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2070), - [sym_method_attribute_specifier] = ACTIONS(2070), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2070), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE] = ACTIONS(2070), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_API_AVAILABLE] = ACTIONS(2070), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_API_DEPRECATED] = ACTIONS(2070), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2070), - [anon_sym___deprecated_msg] = ACTIONS(2070), - [anon_sym___deprecated_enum_msg] = ACTIONS(2070), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2070), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2070), - [anon_sym_ATimplementation] = ACTIONS(2072), - [anon_sym_typeof] = ACTIONS(2070), - [anon_sym___typeof] = ACTIONS(2070), - [anon_sym___typeof__] = ACTIONS(2070), - [sym_self] = ACTIONS(2070), - [sym_super] = ACTIONS(2070), - [sym_nil] = ACTIONS(2070), - [sym_id] = ACTIONS(2070), - [sym_instancetype] = ACTIONS(2070), - [sym_Class] = ACTIONS(2070), - [sym_SEL] = ACTIONS(2070), - [sym_IMP] = ACTIONS(2070), - [sym_BOOL] = ACTIONS(2070), - [sym_auto] = ACTIONS(2070), - [anon_sym_ATautoreleasepool] = ACTIONS(2072), - [anon_sym_ATsynchronized] = ACTIONS(2072), - [anon_sym_ATtry] = ACTIONS(2072), - [anon_sym_ATthrow] = ACTIONS(2072), - [anon_sym_ATselector] = ACTIONS(2072), - [anon_sym_ATencode] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2070), - [sym_YES] = ACTIONS(2070), - [sym_NO] = ACTIONS(2070), - [anon_sym___builtin_available] = ACTIONS(2070), - [anon_sym_ATavailable] = ACTIONS(2072), - [anon_sym_va_arg] = ACTIONS(2070), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1546] = { - [sym_identifier] = ACTIONS(2070), - [aux_sym_preproc_include_token1] = ACTIONS(2072), - [aux_sym_preproc_def_token1] = ACTIONS(2072), - [aux_sym_preproc_if_token1] = ACTIONS(2070), - [aux_sym_preproc_if_token2] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2070), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2070), - [anon_sym_LPAREN2] = ACTIONS(2072), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2070), - [anon_sym_PLUS] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2070), - [anon_sym_extern] = ACTIONS(2070), - [anon_sym___attribute] = ACTIONS(2070), - [anon_sym___attribute__] = ACTIONS(2070), - [anon_sym___declspec] = ACTIONS(2070), - [anon_sym___cdecl] = ACTIONS(2070), - [anon_sym___clrcall] = ACTIONS(2070), - [anon_sym___stdcall] = ACTIONS(2070), - [anon_sym___fastcall] = ACTIONS(2070), - [anon_sym___thiscall] = ACTIONS(2070), - [anon_sym___vectorcall] = ACTIONS(2070), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2070), - [anon_sym_auto] = ACTIONS(2070), - [anon_sym_register] = ACTIONS(2070), - [anon_sym_inline] = ACTIONS(2070), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2070), - [anon_sym_const] = ACTIONS(2070), - [anon_sym_volatile] = ACTIONS(2070), - [anon_sym_restrict] = ACTIONS(2070), - [anon_sym__Atomic] = ACTIONS(2070), - [anon_sym_in] = ACTIONS(2070), - [anon_sym_out] = ACTIONS(2070), - [anon_sym_inout] = ACTIONS(2070), - [anon_sym_bycopy] = ACTIONS(2070), - [anon_sym_byref] = ACTIONS(2070), - [anon_sym_oneway] = ACTIONS(2070), - [anon_sym__Nullable] = ACTIONS(2070), - [anon_sym__Nonnull] = ACTIONS(2070), - [anon_sym__Nullable_result] = ACTIONS(2070), - [anon_sym__Null_unspecified] = ACTIONS(2070), - [anon_sym___autoreleasing] = ACTIONS(2070), - [anon_sym___nullable] = ACTIONS(2070), - [anon_sym___nonnull] = ACTIONS(2070), - [anon_sym___strong] = ACTIONS(2070), - [anon_sym___weak] = ACTIONS(2070), - [anon_sym___bridge] = ACTIONS(2070), - [anon_sym___bridge_transfer] = ACTIONS(2070), - [anon_sym___bridge_retained] = ACTIONS(2070), - [anon_sym___unsafe_unretained] = ACTIONS(2070), - [anon_sym___block] = ACTIONS(2070), - [anon_sym___kindof] = ACTIONS(2070), - [anon_sym___unused] = ACTIONS(2070), - [anon_sym__Complex] = ACTIONS(2070), - [anon_sym___complex] = ACTIONS(2070), - [anon_sym_IBOutlet] = ACTIONS(2070), - [anon_sym_IBInspectable] = ACTIONS(2070), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2070), - [anon_sym_signed] = ACTIONS(2070), - [anon_sym_unsigned] = ACTIONS(2070), - [anon_sym_long] = ACTIONS(2070), - [anon_sym_short] = ACTIONS(2070), - [sym_primitive_type] = ACTIONS(2070), - [anon_sym_enum] = ACTIONS(2070), - [anon_sym_NS_ENUM] = ACTIONS(2070), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2070), - [anon_sym_NS_OPTIONS] = ACTIONS(2070), - [anon_sym_struct] = ACTIONS(2070), - [anon_sym_union] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2070), - [anon_sym_case] = ACTIONS(2070), - [anon_sym_default] = ACTIONS(2070), - [anon_sym_while] = ACTIONS(2070), - [anon_sym_do] = ACTIONS(2070), - [anon_sym_for] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2070), - [anon_sym_break] = ACTIONS(2070), - [anon_sym_continue] = ACTIONS(2070), - [anon_sym_goto] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2072), - [anon_sym_sizeof] = ACTIONS(2070), - [sym_number_literal] = ACTIONS(2072), - [anon_sym_L_SQUOTE] = ACTIONS(2072), - [anon_sym_u_SQUOTE] = ACTIONS(2072), - [anon_sym_U_SQUOTE] = ACTIONS(2072), - [anon_sym_u8_SQUOTE] = ACTIONS(2072), - [anon_sym_SQUOTE] = ACTIONS(2072), - [anon_sym_L_DQUOTE] = ACTIONS(2072), - [anon_sym_u_DQUOTE] = ACTIONS(2072), - [anon_sym_U_DQUOTE] = ACTIONS(2072), - [anon_sym_u8_DQUOTE] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2072), - [sym_true] = ACTIONS(2070), - [sym_false] = ACTIONS(2070), - [sym_null] = ACTIONS(2070), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2072), - [anon_sym_ATimport] = ACTIONS(2072), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2070), - [anon_sym_ATcompatibility_alias] = ACTIONS(2072), - [anon_sym_ATprotocol] = ACTIONS(2072), - [anon_sym_ATclass] = ACTIONS(2072), - [anon_sym_ATinterface] = ACTIONS(2072), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2070), - [sym_method_attribute_specifier] = ACTIONS(2070), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2070), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2070), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE] = ACTIONS(2070), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2070), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_API_AVAILABLE] = ACTIONS(2070), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_API_DEPRECATED] = ACTIONS(2070), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2070), - [anon_sym___deprecated_msg] = ACTIONS(2070), - [anon_sym___deprecated_enum_msg] = ACTIONS(2070), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2070), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2070), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2070), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2070), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2070), - [anon_sym_ATimplementation] = ACTIONS(2072), - [anon_sym_typeof] = ACTIONS(2070), - [anon_sym___typeof] = ACTIONS(2070), - [anon_sym___typeof__] = ACTIONS(2070), - [sym_self] = ACTIONS(2070), - [sym_super] = ACTIONS(2070), - [sym_nil] = ACTIONS(2070), - [sym_id] = ACTIONS(2070), - [sym_instancetype] = ACTIONS(2070), - [sym_Class] = ACTIONS(2070), - [sym_SEL] = ACTIONS(2070), - [sym_IMP] = ACTIONS(2070), - [sym_BOOL] = ACTIONS(2070), - [sym_auto] = ACTIONS(2070), - [anon_sym_ATautoreleasepool] = ACTIONS(2072), - [anon_sym_ATsynchronized] = ACTIONS(2072), - [anon_sym_ATtry] = ACTIONS(2072), - [anon_sym_ATthrow] = ACTIONS(2072), - [anon_sym_ATselector] = ACTIONS(2072), - [anon_sym_ATencode] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2070), - [sym_YES] = ACTIONS(2070), - [sym_NO] = ACTIONS(2070), - [anon_sym___builtin_available] = ACTIONS(2070), - [anon_sym_ATavailable] = ACTIONS(2072), - [anon_sym_va_arg] = ACTIONS(2070), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1547] = { - [sym_identifier] = ACTIONS(1750), - [aux_sym_preproc_include_token1] = ACTIONS(1752), - [aux_sym_preproc_def_token1] = ACTIONS(1752), - [aux_sym_preproc_if_token1] = ACTIONS(1750), - [aux_sym_preproc_if_token2] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PLUS] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym___attribute] = ACTIONS(1750), - [anon_sym___attribute__] = ACTIONS(1750), - [anon_sym___declspec] = ACTIONS(1750), - [anon_sym___cdecl] = ACTIONS(1750), - [anon_sym___clrcall] = ACTIONS(1750), - [anon_sym___stdcall] = ACTIONS(1750), - [anon_sym___fastcall] = ACTIONS(1750), - [anon_sym___thiscall] = ACTIONS(1750), - [anon_sym___vectorcall] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_auto] = ACTIONS(1750), - [anon_sym_register] = ACTIONS(1750), - [anon_sym_inline] = ACTIONS(1750), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_volatile] = ACTIONS(1750), - [anon_sym_restrict] = ACTIONS(1750), - [anon_sym__Atomic] = ACTIONS(1750), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_out] = ACTIONS(1750), - [anon_sym_inout] = ACTIONS(1750), - [anon_sym_bycopy] = ACTIONS(1750), - [anon_sym_byref] = ACTIONS(1750), - [anon_sym_oneway] = ACTIONS(1750), - [anon_sym__Nullable] = ACTIONS(1750), - [anon_sym__Nonnull] = ACTIONS(1750), - [anon_sym__Nullable_result] = ACTIONS(1750), - [anon_sym__Null_unspecified] = ACTIONS(1750), - [anon_sym___autoreleasing] = ACTIONS(1750), - [anon_sym___nullable] = ACTIONS(1750), - [anon_sym___nonnull] = ACTIONS(1750), - [anon_sym___strong] = ACTIONS(1750), - [anon_sym___weak] = ACTIONS(1750), - [anon_sym___bridge] = ACTIONS(1750), - [anon_sym___bridge_transfer] = ACTIONS(1750), - [anon_sym___bridge_retained] = ACTIONS(1750), - [anon_sym___unsafe_unretained] = ACTIONS(1750), - [anon_sym___block] = ACTIONS(1750), - [anon_sym___kindof] = ACTIONS(1750), - [anon_sym___unused] = ACTIONS(1750), - [anon_sym__Complex] = ACTIONS(1750), - [anon_sym___complex] = ACTIONS(1750), - [anon_sym_IBOutlet] = ACTIONS(1750), - [anon_sym_IBInspectable] = ACTIONS(1750), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1750), - [anon_sym_signed] = ACTIONS(1750), - [anon_sym_unsigned] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_NS_ENUM] = ACTIONS(1750), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1750), - [anon_sym_NS_OPTIONS] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1750), - [anon_sym_case] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_do] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_goto] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1752), - [anon_sym_sizeof] = ACTIONS(1750), - [sym_number_literal] = ACTIONS(1752), - [anon_sym_L_SQUOTE] = ACTIONS(1752), - [anon_sym_u_SQUOTE] = ACTIONS(1752), - [anon_sym_U_SQUOTE] = ACTIONS(1752), - [anon_sym_u8_SQUOTE] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_L_DQUOTE] = ACTIONS(1752), - [anon_sym_u_DQUOTE] = ACTIONS(1752), - [anon_sym_U_DQUOTE] = ACTIONS(1752), - [anon_sym_u8_DQUOTE] = ACTIONS(1752), - [anon_sym_DQUOTE] = ACTIONS(1752), - [sym_true] = ACTIONS(1750), - [sym_false] = ACTIONS(1750), - [sym_null] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1752), - [anon_sym_ATimport] = ACTIONS(1752), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1750), - [anon_sym_ATcompatibility_alias] = ACTIONS(1752), - [anon_sym_ATprotocol] = ACTIONS(1752), - [anon_sym_ATclass] = ACTIONS(1752), - [anon_sym_ATinterface] = ACTIONS(1752), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1750), - [sym_method_attribute_specifier] = ACTIONS(1750), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1750), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1750), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE] = ACTIONS(1750), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1750), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_API_AVAILABLE] = ACTIONS(1750), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_API_DEPRECATED] = ACTIONS(1750), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1750), - [anon_sym___deprecated_msg] = ACTIONS(1750), - [anon_sym___deprecated_enum_msg] = ACTIONS(1750), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1750), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1750), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1750), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1750), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1750), - [anon_sym_ATimplementation] = ACTIONS(1752), - [anon_sym_typeof] = ACTIONS(1750), - [anon_sym___typeof] = ACTIONS(1750), - [anon_sym___typeof__] = ACTIONS(1750), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_nil] = ACTIONS(1750), - [sym_id] = ACTIONS(1750), - [sym_instancetype] = ACTIONS(1750), - [sym_Class] = ACTIONS(1750), - [sym_SEL] = ACTIONS(1750), - [sym_IMP] = ACTIONS(1750), - [sym_BOOL] = ACTIONS(1750), - [sym_auto] = ACTIONS(1750), - [anon_sym_ATautoreleasepool] = ACTIONS(1752), - [anon_sym_ATsynchronized] = ACTIONS(1752), - [anon_sym_ATtry] = ACTIONS(1752), - [anon_sym_ATthrow] = ACTIONS(1752), - [anon_sym_ATselector] = ACTIONS(1752), - [anon_sym_ATencode] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1750), - [sym_YES] = ACTIONS(1750), - [sym_NO] = ACTIONS(1750), - [anon_sym___builtin_available] = ACTIONS(1750), - [anon_sym_ATavailable] = ACTIONS(1752), - [anon_sym_va_arg] = ACTIONS(1750), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1548] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1549] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1550] = { - [sym_identifier] = ACTIONS(1994), - [aux_sym_preproc_include_token1] = ACTIONS(1996), - [aux_sym_preproc_def_token1] = ACTIONS(1996), - [aux_sym_preproc_if_token1] = ACTIONS(1994), - [aux_sym_preproc_if_token2] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1994), - [anon_sym_LPAREN2] = ACTIONS(1996), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_PLUS] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1994), - [anon_sym_extern] = ACTIONS(1994), - [anon_sym___attribute] = ACTIONS(1994), - [anon_sym___attribute__] = ACTIONS(1994), - [anon_sym___declspec] = ACTIONS(1994), - [anon_sym___cdecl] = ACTIONS(1994), - [anon_sym___clrcall] = ACTIONS(1994), - [anon_sym___stdcall] = ACTIONS(1994), - [anon_sym___fastcall] = ACTIONS(1994), - [anon_sym___thiscall] = ACTIONS(1994), - [anon_sym___vectorcall] = ACTIONS(1994), - [anon_sym_LBRACE] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1994), - [anon_sym_auto] = ACTIONS(1994), - [anon_sym_register] = ACTIONS(1994), - [anon_sym_inline] = ACTIONS(1994), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1994), - [anon_sym_const] = ACTIONS(1994), - [anon_sym_volatile] = ACTIONS(1994), - [anon_sym_restrict] = ACTIONS(1994), - [anon_sym__Atomic] = ACTIONS(1994), - [anon_sym_in] = ACTIONS(1994), - [anon_sym_out] = ACTIONS(1994), - [anon_sym_inout] = ACTIONS(1994), - [anon_sym_bycopy] = ACTIONS(1994), - [anon_sym_byref] = ACTIONS(1994), - [anon_sym_oneway] = ACTIONS(1994), - [anon_sym__Nullable] = ACTIONS(1994), - [anon_sym__Nonnull] = ACTIONS(1994), - [anon_sym__Nullable_result] = ACTIONS(1994), - [anon_sym__Null_unspecified] = ACTIONS(1994), - [anon_sym___autoreleasing] = ACTIONS(1994), - [anon_sym___nullable] = ACTIONS(1994), - [anon_sym___nonnull] = ACTIONS(1994), - [anon_sym___strong] = ACTIONS(1994), - [anon_sym___weak] = ACTIONS(1994), - [anon_sym___bridge] = ACTIONS(1994), - [anon_sym___bridge_transfer] = ACTIONS(1994), - [anon_sym___bridge_retained] = ACTIONS(1994), - [anon_sym___unsafe_unretained] = ACTIONS(1994), - [anon_sym___block] = ACTIONS(1994), - [anon_sym___kindof] = ACTIONS(1994), - [anon_sym___unused] = ACTIONS(1994), - [anon_sym__Complex] = ACTIONS(1994), - [anon_sym___complex] = ACTIONS(1994), - [anon_sym_IBOutlet] = ACTIONS(1994), - [anon_sym_IBInspectable] = ACTIONS(1994), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1994), - [anon_sym_signed] = ACTIONS(1994), - [anon_sym_unsigned] = ACTIONS(1994), - [anon_sym_long] = ACTIONS(1994), - [anon_sym_short] = ACTIONS(1994), - [sym_primitive_type] = ACTIONS(1994), - [anon_sym_enum] = ACTIONS(1994), - [anon_sym_NS_ENUM] = ACTIONS(1994), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1994), - [anon_sym_NS_OPTIONS] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(1994), - [anon_sym_union] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1994), - [anon_sym_case] = ACTIONS(1994), - [anon_sym_default] = ACTIONS(1994), - [anon_sym_while] = ACTIONS(1994), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_for] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1994), - [anon_sym_break] = ACTIONS(1994), - [anon_sym_continue] = ACTIONS(1994), - [anon_sym_goto] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1996), - [anon_sym_sizeof] = ACTIONS(1994), - [sym_number_literal] = ACTIONS(1996), - [anon_sym_L_SQUOTE] = ACTIONS(1996), - [anon_sym_u_SQUOTE] = ACTIONS(1996), - [anon_sym_U_SQUOTE] = ACTIONS(1996), - [anon_sym_u8_SQUOTE] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_L_DQUOTE] = ACTIONS(1996), - [anon_sym_u_DQUOTE] = ACTIONS(1996), - [anon_sym_U_DQUOTE] = ACTIONS(1996), - [anon_sym_u8_DQUOTE] = ACTIONS(1996), - [anon_sym_DQUOTE] = ACTIONS(1996), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1996), - [anon_sym_ATimport] = ACTIONS(1996), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1994), - [anon_sym_ATcompatibility_alias] = ACTIONS(1996), - [anon_sym_ATprotocol] = ACTIONS(1996), - [anon_sym_ATclass] = ACTIONS(1996), - [anon_sym_ATinterface] = ACTIONS(1996), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1994), - [sym_method_attribute_specifier] = ACTIONS(1994), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1994), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1994), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE] = ACTIONS(1994), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1994), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_API_AVAILABLE] = ACTIONS(1994), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_API_DEPRECATED] = ACTIONS(1994), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1994), - [anon_sym___deprecated_msg] = ACTIONS(1994), - [anon_sym___deprecated_enum_msg] = ACTIONS(1994), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1994), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1994), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1994), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1994), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1994), - [anon_sym_ATimplementation] = ACTIONS(1996), - [anon_sym_typeof] = ACTIONS(1994), - [anon_sym___typeof] = ACTIONS(1994), - [anon_sym___typeof__] = ACTIONS(1994), - [sym_self] = ACTIONS(1994), - [sym_super] = ACTIONS(1994), - [sym_nil] = ACTIONS(1994), - [sym_id] = ACTIONS(1994), - [sym_instancetype] = ACTIONS(1994), - [sym_Class] = ACTIONS(1994), - [sym_SEL] = ACTIONS(1994), - [sym_IMP] = ACTIONS(1994), - [sym_BOOL] = ACTIONS(1994), - [sym_auto] = ACTIONS(1994), - [anon_sym_ATautoreleasepool] = ACTIONS(1996), - [anon_sym_ATsynchronized] = ACTIONS(1996), - [anon_sym_ATtry] = ACTIONS(1996), - [anon_sym_ATthrow] = ACTIONS(1996), - [anon_sym_ATselector] = ACTIONS(1996), - [anon_sym_ATencode] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1994), - [sym_YES] = ACTIONS(1994), - [sym_NO] = ACTIONS(1994), - [anon_sym___builtin_available] = ACTIONS(1994), - [anon_sym_ATavailable] = ACTIONS(1996), - [anon_sym_va_arg] = ACTIONS(1994), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1551] = { - [sym_identifier] = ACTIONS(2146), - [aux_sym_preproc_include_token1] = ACTIONS(2148), - [aux_sym_preproc_def_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token1] = ACTIONS(2146), - [aux_sym_preproc_if_token2] = ACTIONS(2146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2146), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2146), - [anon_sym_LPAREN2] = ACTIONS(2148), - [anon_sym_BANG] = ACTIONS(2148), - [anon_sym_TILDE] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2146), - [anon_sym_PLUS] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2148), - [anon_sym_CARET] = ACTIONS(2148), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_typedef] = ACTIONS(2146), - [anon_sym_extern] = ACTIONS(2146), - [anon_sym___attribute] = ACTIONS(2146), - [anon_sym___attribute__] = ACTIONS(2146), - [anon_sym___declspec] = ACTIONS(2146), - [anon_sym___cdecl] = ACTIONS(2146), - [anon_sym___clrcall] = ACTIONS(2146), - [anon_sym___stdcall] = ACTIONS(2146), - [anon_sym___fastcall] = ACTIONS(2146), - [anon_sym___thiscall] = ACTIONS(2146), - [anon_sym___vectorcall] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2146), - [anon_sym_auto] = ACTIONS(2146), - [anon_sym_register] = ACTIONS(2146), - [anon_sym_inline] = ACTIONS(2146), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2146), - [anon_sym_const] = ACTIONS(2146), - [anon_sym_volatile] = ACTIONS(2146), - [anon_sym_restrict] = ACTIONS(2146), - [anon_sym__Atomic] = ACTIONS(2146), - [anon_sym_in] = ACTIONS(2146), - [anon_sym_out] = ACTIONS(2146), - [anon_sym_inout] = ACTIONS(2146), - [anon_sym_bycopy] = ACTIONS(2146), - [anon_sym_byref] = ACTIONS(2146), - [anon_sym_oneway] = ACTIONS(2146), - [anon_sym__Nullable] = ACTIONS(2146), - [anon_sym__Nonnull] = ACTIONS(2146), - [anon_sym__Nullable_result] = ACTIONS(2146), - [anon_sym__Null_unspecified] = ACTIONS(2146), - [anon_sym___autoreleasing] = ACTIONS(2146), - [anon_sym___nullable] = ACTIONS(2146), - [anon_sym___nonnull] = ACTIONS(2146), - [anon_sym___strong] = ACTIONS(2146), - [anon_sym___weak] = ACTIONS(2146), - [anon_sym___bridge] = ACTIONS(2146), - [anon_sym___bridge_transfer] = ACTIONS(2146), - [anon_sym___bridge_retained] = ACTIONS(2146), - [anon_sym___unsafe_unretained] = ACTIONS(2146), - [anon_sym___block] = ACTIONS(2146), - [anon_sym___kindof] = ACTIONS(2146), - [anon_sym___unused] = ACTIONS(2146), - [anon_sym__Complex] = ACTIONS(2146), - [anon_sym___complex] = ACTIONS(2146), - [anon_sym_IBOutlet] = ACTIONS(2146), - [anon_sym_IBInspectable] = ACTIONS(2146), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2146), - [anon_sym_signed] = ACTIONS(2146), - [anon_sym_unsigned] = ACTIONS(2146), - [anon_sym_long] = ACTIONS(2146), - [anon_sym_short] = ACTIONS(2146), - [sym_primitive_type] = ACTIONS(2146), - [anon_sym_enum] = ACTIONS(2146), - [anon_sym_NS_ENUM] = ACTIONS(2146), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2146), - [anon_sym_NS_OPTIONS] = ACTIONS(2146), - [anon_sym_struct] = ACTIONS(2146), - [anon_sym_union] = ACTIONS(2146), - [anon_sym_if] = ACTIONS(2146), - [anon_sym_switch] = ACTIONS(2146), - [anon_sym_case] = ACTIONS(2146), - [anon_sym_default] = ACTIONS(2146), - [anon_sym_while] = ACTIONS(2146), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_for] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2146), - [anon_sym_break] = ACTIONS(2146), - [anon_sym_continue] = ACTIONS(2146), - [anon_sym_goto] = ACTIONS(2146), - [anon_sym_DASH_DASH] = ACTIONS(2148), - [anon_sym_PLUS_PLUS] = ACTIONS(2148), - [anon_sym_sizeof] = ACTIONS(2146), - [sym_number_literal] = ACTIONS(2148), - [anon_sym_L_SQUOTE] = ACTIONS(2148), - [anon_sym_u_SQUOTE] = ACTIONS(2148), - [anon_sym_U_SQUOTE] = ACTIONS(2148), - [anon_sym_u8_SQUOTE] = ACTIONS(2148), - [anon_sym_SQUOTE] = ACTIONS(2148), - [anon_sym_L_DQUOTE] = ACTIONS(2148), - [anon_sym_u_DQUOTE] = ACTIONS(2148), - [anon_sym_U_DQUOTE] = ACTIONS(2148), - [anon_sym_u8_DQUOTE] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2148), - [sym_true] = ACTIONS(2146), - [sym_false] = ACTIONS(2146), - [sym_null] = ACTIONS(2146), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2148), - [anon_sym_ATimport] = ACTIONS(2148), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2146), - [anon_sym_ATcompatibility_alias] = ACTIONS(2148), - [anon_sym_ATprotocol] = ACTIONS(2148), - [anon_sym_ATclass] = ACTIONS(2148), - [anon_sym_ATinterface] = ACTIONS(2148), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2146), - [sym_method_attribute_specifier] = ACTIONS(2146), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2146), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2146), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2146), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2146), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2146), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2146), - [anon_sym_NS_AVAILABLE] = ACTIONS(2146), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2146), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_API_AVAILABLE] = ACTIONS(2146), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2146), - [anon_sym_API_DEPRECATED] = ACTIONS(2146), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2146), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2146), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2146), - [anon_sym___deprecated_msg] = ACTIONS(2146), - [anon_sym___deprecated_enum_msg] = ACTIONS(2146), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2146), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2146), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2146), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2146), - [anon_sym_ATimplementation] = ACTIONS(2148), - [anon_sym_typeof] = ACTIONS(2146), - [anon_sym___typeof] = ACTIONS(2146), - [anon_sym___typeof__] = ACTIONS(2146), - [sym_self] = ACTIONS(2146), - [sym_super] = ACTIONS(2146), - [sym_nil] = ACTIONS(2146), - [sym_id] = ACTIONS(2146), - [sym_instancetype] = ACTIONS(2146), - [sym_Class] = ACTIONS(2146), - [sym_SEL] = ACTIONS(2146), - [sym_IMP] = ACTIONS(2146), - [sym_BOOL] = ACTIONS(2146), - [sym_auto] = ACTIONS(2146), - [anon_sym_ATautoreleasepool] = ACTIONS(2148), - [anon_sym_ATsynchronized] = ACTIONS(2148), - [anon_sym_ATtry] = ACTIONS(2148), - [anon_sym_ATthrow] = ACTIONS(2148), - [anon_sym_ATselector] = ACTIONS(2148), - [anon_sym_ATencode] = ACTIONS(2148), - [anon_sym_AT] = ACTIONS(2146), - [sym_YES] = ACTIONS(2146), - [sym_NO] = ACTIONS(2146), - [anon_sym___builtin_available] = ACTIONS(2146), - [anon_sym_ATavailable] = ACTIONS(2148), - [anon_sym_va_arg] = ACTIONS(2146), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1552] = { - [sym_identifier] = ACTIONS(2146), - [aux_sym_preproc_include_token1] = ACTIONS(2148), - [aux_sym_preproc_def_token1] = ACTIONS(2148), - [aux_sym_preproc_if_token1] = ACTIONS(2146), - [aux_sym_preproc_if_token2] = ACTIONS(2146), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2146), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2146), - [anon_sym_LPAREN2] = ACTIONS(2148), - [anon_sym_BANG] = ACTIONS(2148), - [anon_sym_TILDE] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2146), - [anon_sym_PLUS] = ACTIONS(2146), - [anon_sym_STAR] = ACTIONS(2148), - [anon_sym_CARET] = ACTIONS(2148), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_typedef] = ACTIONS(2146), - [anon_sym_extern] = ACTIONS(2146), - [anon_sym___attribute] = ACTIONS(2146), - [anon_sym___attribute__] = ACTIONS(2146), - [anon_sym___declspec] = ACTIONS(2146), - [anon_sym___cdecl] = ACTIONS(2146), - [anon_sym___clrcall] = ACTIONS(2146), - [anon_sym___stdcall] = ACTIONS(2146), - [anon_sym___fastcall] = ACTIONS(2146), - [anon_sym___thiscall] = ACTIONS(2146), - [anon_sym___vectorcall] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2146), - [anon_sym_auto] = ACTIONS(2146), - [anon_sym_register] = ACTIONS(2146), - [anon_sym_inline] = ACTIONS(2146), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2146), - [anon_sym_const] = ACTIONS(2146), - [anon_sym_volatile] = ACTIONS(2146), - [anon_sym_restrict] = ACTIONS(2146), - [anon_sym__Atomic] = ACTIONS(2146), - [anon_sym_in] = ACTIONS(2146), - [anon_sym_out] = ACTIONS(2146), - [anon_sym_inout] = ACTIONS(2146), - [anon_sym_bycopy] = ACTIONS(2146), - [anon_sym_byref] = ACTIONS(2146), - [anon_sym_oneway] = ACTIONS(2146), - [anon_sym__Nullable] = ACTIONS(2146), - [anon_sym__Nonnull] = ACTIONS(2146), - [anon_sym__Nullable_result] = ACTIONS(2146), - [anon_sym__Null_unspecified] = ACTIONS(2146), - [anon_sym___autoreleasing] = ACTIONS(2146), - [anon_sym___nullable] = ACTIONS(2146), - [anon_sym___nonnull] = ACTIONS(2146), - [anon_sym___strong] = ACTIONS(2146), - [anon_sym___weak] = ACTIONS(2146), - [anon_sym___bridge] = ACTIONS(2146), - [anon_sym___bridge_transfer] = ACTIONS(2146), - [anon_sym___bridge_retained] = ACTIONS(2146), - [anon_sym___unsafe_unretained] = ACTIONS(2146), - [anon_sym___block] = ACTIONS(2146), - [anon_sym___kindof] = ACTIONS(2146), - [anon_sym___unused] = ACTIONS(2146), - [anon_sym__Complex] = ACTIONS(2146), - [anon_sym___complex] = ACTIONS(2146), - [anon_sym_IBOutlet] = ACTIONS(2146), - [anon_sym_IBInspectable] = ACTIONS(2146), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2146), - [anon_sym_signed] = ACTIONS(2146), - [anon_sym_unsigned] = ACTIONS(2146), - [anon_sym_long] = ACTIONS(2146), - [anon_sym_short] = ACTIONS(2146), - [sym_primitive_type] = ACTIONS(2146), - [anon_sym_enum] = ACTIONS(2146), - [anon_sym_NS_ENUM] = ACTIONS(2146), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2146), - [anon_sym_NS_OPTIONS] = ACTIONS(2146), - [anon_sym_struct] = ACTIONS(2146), - [anon_sym_union] = ACTIONS(2146), - [anon_sym_if] = ACTIONS(2146), - [anon_sym_switch] = ACTIONS(2146), - [anon_sym_case] = ACTIONS(2146), - [anon_sym_default] = ACTIONS(2146), - [anon_sym_while] = ACTIONS(2146), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_for] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2146), - [anon_sym_break] = ACTIONS(2146), - [anon_sym_continue] = ACTIONS(2146), - [anon_sym_goto] = ACTIONS(2146), - [anon_sym_DASH_DASH] = ACTIONS(2148), - [anon_sym_PLUS_PLUS] = ACTIONS(2148), - [anon_sym_sizeof] = ACTIONS(2146), - [sym_number_literal] = ACTIONS(2148), - [anon_sym_L_SQUOTE] = ACTIONS(2148), - [anon_sym_u_SQUOTE] = ACTIONS(2148), - [anon_sym_U_SQUOTE] = ACTIONS(2148), - [anon_sym_u8_SQUOTE] = ACTIONS(2148), - [anon_sym_SQUOTE] = ACTIONS(2148), - [anon_sym_L_DQUOTE] = ACTIONS(2148), - [anon_sym_u_DQUOTE] = ACTIONS(2148), - [anon_sym_U_DQUOTE] = ACTIONS(2148), - [anon_sym_u8_DQUOTE] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2148), - [sym_true] = ACTIONS(2146), - [sym_false] = ACTIONS(2146), - [sym_null] = ACTIONS(2146), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2148), - [anon_sym_ATimport] = ACTIONS(2148), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2146), - [anon_sym_ATcompatibility_alias] = ACTIONS(2148), - [anon_sym_ATprotocol] = ACTIONS(2148), - [anon_sym_ATclass] = ACTIONS(2148), - [anon_sym_ATinterface] = ACTIONS(2148), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2146), - [sym_method_attribute_specifier] = ACTIONS(2146), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2146), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2146), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2146), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2146), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2146), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2146), - [anon_sym_NS_AVAILABLE] = ACTIONS(2146), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2146), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_API_AVAILABLE] = ACTIONS(2146), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2146), - [anon_sym_API_DEPRECATED] = ACTIONS(2146), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2146), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2146), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2146), - [anon_sym___deprecated_msg] = ACTIONS(2146), - [anon_sym___deprecated_enum_msg] = ACTIONS(2146), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2146), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2146), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2146), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2146), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2146), - [anon_sym_ATimplementation] = ACTIONS(2148), - [anon_sym_typeof] = ACTIONS(2146), - [anon_sym___typeof] = ACTIONS(2146), - [anon_sym___typeof__] = ACTIONS(2146), - [sym_self] = ACTIONS(2146), - [sym_super] = ACTIONS(2146), - [sym_nil] = ACTIONS(2146), - [sym_id] = ACTIONS(2146), - [sym_instancetype] = ACTIONS(2146), - [sym_Class] = ACTIONS(2146), - [sym_SEL] = ACTIONS(2146), - [sym_IMP] = ACTIONS(2146), - [sym_BOOL] = ACTIONS(2146), - [sym_auto] = ACTIONS(2146), - [anon_sym_ATautoreleasepool] = ACTIONS(2148), - [anon_sym_ATsynchronized] = ACTIONS(2148), - [anon_sym_ATtry] = ACTIONS(2148), - [anon_sym_ATthrow] = ACTIONS(2148), - [anon_sym_ATselector] = ACTIONS(2148), - [anon_sym_ATencode] = ACTIONS(2148), - [anon_sym_AT] = ACTIONS(2146), - [sym_YES] = ACTIONS(2146), - [sym_NO] = ACTIONS(2146), - [anon_sym___builtin_available] = ACTIONS(2146), - [anon_sym_ATavailable] = ACTIONS(2148), - [anon_sym_va_arg] = ACTIONS(2146), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1553] = { - [sym_identifier] = ACTIONS(2150), - [aux_sym_preproc_include_token1] = ACTIONS(2152), - [aux_sym_preproc_def_token1] = ACTIONS(2152), - [aux_sym_preproc_if_token1] = ACTIONS(2150), - [aux_sym_preproc_if_token2] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_PLUS] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_typedef] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2150), - [anon_sym___attribute] = ACTIONS(2150), - [anon_sym___attribute__] = ACTIONS(2150), - [anon_sym___declspec] = ACTIONS(2150), - [anon_sym___cdecl] = ACTIONS(2150), - [anon_sym___clrcall] = ACTIONS(2150), - [anon_sym___stdcall] = ACTIONS(2150), - [anon_sym___fastcall] = ACTIONS(2150), - [anon_sym___thiscall] = ACTIONS(2150), - [anon_sym___vectorcall] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2150), - [anon_sym_auto] = ACTIONS(2150), - [anon_sym_register] = ACTIONS(2150), - [anon_sym_inline] = ACTIONS(2150), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2150), - [anon_sym_volatile] = ACTIONS(2150), - [anon_sym_restrict] = ACTIONS(2150), - [anon_sym__Atomic] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [anon_sym_out] = ACTIONS(2150), - [anon_sym_inout] = ACTIONS(2150), - [anon_sym_bycopy] = ACTIONS(2150), - [anon_sym_byref] = ACTIONS(2150), - [anon_sym_oneway] = ACTIONS(2150), - [anon_sym__Nullable] = ACTIONS(2150), - [anon_sym__Nonnull] = ACTIONS(2150), - [anon_sym__Nullable_result] = ACTIONS(2150), - [anon_sym__Null_unspecified] = ACTIONS(2150), - [anon_sym___autoreleasing] = ACTIONS(2150), - [anon_sym___nullable] = ACTIONS(2150), - [anon_sym___nonnull] = ACTIONS(2150), - [anon_sym___strong] = ACTIONS(2150), - [anon_sym___weak] = ACTIONS(2150), - [anon_sym___bridge] = ACTIONS(2150), - [anon_sym___bridge_transfer] = ACTIONS(2150), - [anon_sym___bridge_retained] = ACTIONS(2150), - [anon_sym___unsafe_unretained] = ACTIONS(2150), - [anon_sym___block] = ACTIONS(2150), - [anon_sym___kindof] = ACTIONS(2150), - [anon_sym___unused] = ACTIONS(2150), - [anon_sym__Complex] = ACTIONS(2150), - [anon_sym___complex] = ACTIONS(2150), - [anon_sym_IBOutlet] = ACTIONS(2150), - [anon_sym_IBInspectable] = ACTIONS(2150), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2150), - [anon_sym_signed] = ACTIONS(2150), - [anon_sym_unsigned] = ACTIONS(2150), - [anon_sym_long] = ACTIONS(2150), - [anon_sym_short] = ACTIONS(2150), - [sym_primitive_type] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_NS_ENUM] = ACTIONS(2150), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2150), - [anon_sym_NS_OPTIONS] = ACTIONS(2150), - [anon_sym_struct] = ACTIONS(2150), - [anon_sym_union] = ACTIONS(2150), - [anon_sym_if] = ACTIONS(2150), - [anon_sym_switch] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2150), - [anon_sym_default] = ACTIONS(2150), - [anon_sym_while] = ACTIONS(2150), - [anon_sym_do] = ACTIONS(2150), - [anon_sym_for] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(2150), - [anon_sym_break] = ACTIONS(2150), - [anon_sym_continue] = ACTIONS(2150), - [anon_sym_goto] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_sizeof] = ACTIONS(2150), - [sym_number_literal] = ACTIONS(2152), - [anon_sym_L_SQUOTE] = ACTIONS(2152), - [anon_sym_u_SQUOTE] = ACTIONS(2152), - [anon_sym_U_SQUOTE] = ACTIONS(2152), - [anon_sym_u8_SQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_L_DQUOTE] = ACTIONS(2152), - [anon_sym_u_DQUOTE] = ACTIONS(2152), - [anon_sym_U_DQUOTE] = ACTIONS(2152), - [anon_sym_u8_DQUOTE] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [sym_true] = ACTIONS(2150), - [sym_false] = ACTIONS(2150), - [sym_null] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2152), - [anon_sym_ATimport] = ACTIONS(2152), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2150), - [anon_sym_ATcompatibility_alias] = ACTIONS(2152), - [anon_sym_ATprotocol] = ACTIONS(2152), - [anon_sym_ATclass] = ACTIONS(2152), - [anon_sym_ATinterface] = ACTIONS(2152), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2150), - [sym_method_attribute_specifier] = ACTIONS(2150), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2150), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE] = ACTIONS(2150), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_API_AVAILABLE] = ACTIONS(2150), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_API_DEPRECATED] = ACTIONS(2150), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2150), - [anon_sym___deprecated_msg] = ACTIONS(2150), - [anon_sym___deprecated_enum_msg] = ACTIONS(2150), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2150), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2150), - [anon_sym_ATimplementation] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2150), - [anon_sym___typeof] = ACTIONS(2150), - [anon_sym___typeof__] = ACTIONS(2150), - [sym_self] = ACTIONS(2150), - [sym_super] = ACTIONS(2150), - [sym_nil] = ACTIONS(2150), - [sym_id] = ACTIONS(2150), - [sym_instancetype] = ACTIONS(2150), - [sym_Class] = ACTIONS(2150), - [sym_SEL] = ACTIONS(2150), - [sym_IMP] = ACTIONS(2150), - [sym_BOOL] = ACTIONS(2150), - [sym_auto] = ACTIONS(2150), - [anon_sym_ATautoreleasepool] = ACTIONS(2152), - [anon_sym_ATsynchronized] = ACTIONS(2152), - [anon_sym_ATtry] = ACTIONS(2152), - [anon_sym_ATthrow] = ACTIONS(2152), - [anon_sym_ATselector] = ACTIONS(2152), - [anon_sym_ATencode] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [sym_YES] = ACTIONS(2150), - [sym_NO] = ACTIONS(2150), - [anon_sym___builtin_available] = ACTIONS(2150), - [anon_sym_ATavailable] = ACTIONS(2152), - [anon_sym_va_arg] = ACTIONS(2150), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1554] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1555] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1556] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1557] = { - [sym_identifier] = ACTIONS(1774), - [aux_sym_preproc_include_token1] = ACTIONS(1776), - [aux_sym_preproc_def_token1] = ACTIONS(1776), - [aux_sym_preproc_if_token1] = ACTIONS(1774), - [aux_sym_preproc_if_token2] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_typedef] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym___attribute] = ACTIONS(1774), - [anon_sym___attribute__] = ACTIONS(1774), - [anon_sym___declspec] = ACTIONS(1774), - [anon_sym___cdecl] = ACTIONS(1774), - [anon_sym___clrcall] = ACTIONS(1774), - [anon_sym___stdcall] = ACTIONS(1774), - [anon_sym___fastcall] = ACTIONS(1774), - [anon_sym___thiscall] = ACTIONS(1774), - [anon_sym___vectorcall] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_auto] = ACTIONS(1774), - [anon_sym_register] = ACTIONS(1774), - [anon_sym_inline] = ACTIONS(1774), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_out] = ACTIONS(1774), - [anon_sym_inout] = ACTIONS(1774), - [anon_sym_bycopy] = ACTIONS(1774), - [anon_sym_byref] = ACTIONS(1774), - [anon_sym_oneway] = ACTIONS(1774), - [anon_sym__Nullable] = ACTIONS(1774), - [anon_sym__Nonnull] = ACTIONS(1774), - [anon_sym__Nullable_result] = ACTIONS(1774), - [anon_sym__Null_unspecified] = ACTIONS(1774), - [anon_sym___autoreleasing] = ACTIONS(1774), - [anon_sym___nullable] = ACTIONS(1774), - [anon_sym___nonnull] = ACTIONS(1774), - [anon_sym___strong] = ACTIONS(1774), - [anon_sym___weak] = ACTIONS(1774), - [anon_sym___bridge] = ACTIONS(1774), - [anon_sym___bridge_transfer] = ACTIONS(1774), - [anon_sym___bridge_retained] = ACTIONS(1774), - [anon_sym___unsafe_unretained] = ACTIONS(1774), - [anon_sym___block] = ACTIONS(1774), - [anon_sym___kindof] = ACTIONS(1774), - [anon_sym___unused] = ACTIONS(1774), - [anon_sym__Complex] = ACTIONS(1774), - [anon_sym___complex] = ACTIONS(1774), - [anon_sym_IBOutlet] = ACTIONS(1774), - [anon_sym_IBInspectable] = ACTIONS(1774), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1774), - [anon_sym_signed] = ACTIONS(1774), - [anon_sym_unsigned] = ACTIONS(1774), - [anon_sym_long] = ACTIONS(1774), - [anon_sym_short] = ACTIONS(1774), - [sym_primitive_type] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_NS_ENUM] = ACTIONS(1774), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1774), - [anon_sym_NS_OPTIONS] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1774), - [anon_sym_case] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_goto] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1776), - [anon_sym_sizeof] = ACTIONS(1774), - [sym_number_literal] = ACTIONS(1776), - [anon_sym_L_SQUOTE] = ACTIONS(1776), - [anon_sym_u_SQUOTE] = ACTIONS(1776), - [anon_sym_U_SQUOTE] = ACTIONS(1776), - [anon_sym_u8_SQUOTE] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_L_DQUOTE] = ACTIONS(1776), - [anon_sym_u_DQUOTE] = ACTIONS(1776), - [anon_sym_U_DQUOTE] = ACTIONS(1776), - [anon_sym_u8_DQUOTE] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym_true] = ACTIONS(1774), - [sym_false] = ACTIONS(1774), - [sym_null] = ACTIONS(1774), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1776), - [anon_sym_ATimport] = ACTIONS(1776), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1774), - [anon_sym_ATcompatibility_alias] = ACTIONS(1776), - [anon_sym_ATprotocol] = ACTIONS(1776), - [anon_sym_ATclass] = ACTIONS(1776), - [anon_sym_ATinterface] = ACTIONS(1776), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1774), - [sym_method_attribute_specifier] = ACTIONS(1774), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1774), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE] = ACTIONS(1774), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_API_AVAILABLE] = ACTIONS(1774), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_API_DEPRECATED] = ACTIONS(1774), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1774), - [anon_sym___deprecated_msg] = ACTIONS(1774), - [anon_sym___deprecated_enum_msg] = ACTIONS(1774), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1774), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1774), - [anon_sym_ATimplementation] = ACTIONS(1776), - [anon_sym_typeof] = ACTIONS(1774), - [anon_sym___typeof] = ACTIONS(1774), - [anon_sym___typeof__] = ACTIONS(1774), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_nil] = ACTIONS(1774), - [sym_id] = ACTIONS(1774), - [sym_instancetype] = ACTIONS(1774), - [sym_Class] = ACTIONS(1774), - [sym_SEL] = ACTIONS(1774), - [sym_IMP] = ACTIONS(1774), - [sym_BOOL] = ACTIONS(1774), - [sym_auto] = ACTIONS(1774), - [anon_sym_ATautoreleasepool] = ACTIONS(1776), - [anon_sym_ATsynchronized] = ACTIONS(1776), - [anon_sym_ATtry] = ACTIONS(1776), - [anon_sym_ATthrow] = ACTIONS(1776), - [anon_sym_ATselector] = ACTIONS(1776), - [anon_sym_ATencode] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1774), - [sym_YES] = ACTIONS(1774), - [sym_NO] = ACTIONS(1774), - [anon_sym___builtin_available] = ACTIONS(1774), - [anon_sym_ATavailable] = ACTIONS(1776), - [anon_sym_va_arg] = ACTIONS(1774), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1558] = { - [sym_identifier] = ACTIONS(2150), - [aux_sym_preproc_include_token1] = ACTIONS(2152), - [aux_sym_preproc_def_token1] = ACTIONS(2152), - [aux_sym_preproc_if_token1] = ACTIONS(2150), - [aux_sym_preproc_if_token2] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_PLUS] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_typedef] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2150), - [anon_sym___attribute] = ACTIONS(2150), - [anon_sym___attribute__] = ACTIONS(2150), - [anon_sym___declspec] = ACTIONS(2150), - [anon_sym___cdecl] = ACTIONS(2150), - [anon_sym___clrcall] = ACTIONS(2150), - [anon_sym___stdcall] = ACTIONS(2150), - [anon_sym___fastcall] = ACTIONS(2150), - [anon_sym___thiscall] = ACTIONS(2150), - [anon_sym___vectorcall] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2150), - [anon_sym_auto] = ACTIONS(2150), - [anon_sym_register] = ACTIONS(2150), - [anon_sym_inline] = ACTIONS(2150), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2150), - [anon_sym_volatile] = ACTIONS(2150), - [anon_sym_restrict] = ACTIONS(2150), - [anon_sym__Atomic] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [anon_sym_out] = ACTIONS(2150), - [anon_sym_inout] = ACTIONS(2150), - [anon_sym_bycopy] = ACTIONS(2150), - [anon_sym_byref] = ACTIONS(2150), - [anon_sym_oneway] = ACTIONS(2150), - [anon_sym__Nullable] = ACTIONS(2150), - [anon_sym__Nonnull] = ACTIONS(2150), - [anon_sym__Nullable_result] = ACTIONS(2150), - [anon_sym__Null_unspecified] = ACTIONS(2150), - [anon_sym___autoreleasing] = ACTIONS(2150), - [anon_sym___nullable] = ACTIONS(2150), - [anon_sym___nonnull] = ACTIONS(2150), - [anon_sym___strong] = ACTIONS(2150), - [anon_sym___weak] = ACTIONS(2150), - [anon_sym___bridge] = ACTIONS(2150), - [anon_sym___bridge_transfer] = ACTIONS(2150), - [anon_sym___bridge_retained] = ACTIONS(2150), - [anon_sym___unsafe_unretained] = ACTIONS(2150), - [anon_sym___block] = ACTIONS(2150), - [anon_sym___kindof] = ACTIONS(2150), - [anon_sym___unused] = ACTIONS(2150), - [anon_sym__Complex] = ACTIONS(2150), - [anon_sym___complex] = ACTIONS(2150), - [anon_sym_IBOutlet] = ACTIONS(2150), - [anon_sym_IBInspectable] = ACTIONS(2150), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2150), - [anon_sym_signed] = ACTIONS(2150), - [anon_sym_unsigned] = ACTIONS(2150), - [anon_sym_long] = ACTIONS(2150), - [anon_sym_short] = ACTIONS(2150), - [sym_primitive_type] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_NS_ENUM] = ACTIONS(2150), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2150), - [anon_sym_NS_OPTIONS] = ACTIONS(2150), - [anon_sym_struct] = ACTIONS(2150), - [anon_sym_union] = ACTIONS(2150), - [anon_sym_if] = ACTIONS(2150), - [anon_sym_switch] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2150), - [anon_sym_default] = ACTIONS(2150), - [anon_sym_while] = ACTIONS(2150), - [anon_sym_do] = ACTIONS(2150), - [anon_sym_for] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(2150), - [anon_sym_break] = ACTIONS(2150), - [anon_sym_continue] = ACTIONS(2150), - [anon_sym_goto] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_sizeof] = ACTIONS(2150), - [sym_number_literal] = ACTIONS(2152), - [anon_sym_L_SQUOTE] = ACTIONS(2152), - [anon_sym_u_SQUOTE] = ACTIONS(2152), - [anon_sym_U_SQUOTE] = ACTIONS(2152), - [anon_sym_u8_SQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_L_DQUOTE] = ACTIONS(2152), - [anon_sym_u_DQUOTE] = ACTIONS(2152), - [anon_sym_U_DQUOTE] = ACTIONS(2152), - [anon_sym_u8_DQUOTE] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [sym_true] = ACTIONS(2150), - [sym_false] = ACTIONS(2150), - [sym_null] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2152), - [anon_sym_ATimport] = ACTIONS(2152), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2150), - [anon_sym_ATcompatibility_alias] = ACTIONS(2152), - [anon_sym_ATprotocol] = ACTIONS(2152), - [anon_sym_ATclass] = ACTIONS(2152), - [anon_sym_ATinterface] = ACTIONS(2152), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2150), - [sym_method_attribute_specifier] = ACTIONS(2150), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2150), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE] = ACTIONS(2150), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_API_AVAILABLE] = ACTIONS(2150), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_API_DEPRECATED] = ACTIONS(2150), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2150), - [anon_sym___deprecated_msg] = ACTIONS(2150), - [anon_sym___deprecated_enum_msg] = ACTIONS(2150), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2150), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2150), - [anon_sym_ATimplementation] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2150), - [anon_sym___typeof] = ACTIONS(2150), - [anon_sym___typeof__] = ACTIONS(2150), - [sym_self] = ACTIONS(2150), - [sym_super] = ACTIONS(2150), - [sym_nil] = ACTIONS(2150), - [sym_id] = ACTIONS(2150), - [sym_instancetype] = ACTIONS(2150), - [sym_Class] = ACTIONS(2150), - [sym_SEL] = ACTIONS(2150), - [sym_IMP] = ACTIONS(2150), - [sym_BOOL] = ACTIONS(2150), - [sym_auto] = ACTIONS(2150), - [anon_sym_ATautoreleasepool] = ACTIONS(2152), - [anon_sym_ATsynchronized] = ACTIONS(2152), - [anon_sym_ATtry] = ACTIONS(2152), - [anon_sym_ATthrow] = ACTIONS(2152), - [anon_sym_ATselector] = ACTIONS(2152), - [anon_sym_ATencode] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [sym_YES] = ACTIONS(2150), - [sym_NO] = ACTIONS(2150), - [anon_sym___builtin_available] = ACTIONS(2150), - [anon_sym_ATavailable] = ACTIONS(2152), - [anon_sym_va_arg] = ACTIONS(2150), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1559] = { - [sym_identifier] = ACTIONS(2150), - [aux_sym_preproc_include_token1] = ACTIONS(2152), - [aux_sym_preproc_def_token1] = ACTIONS(2152), - [aux_sym_preproc_if_token1] = ACTIONS(2150), - [aux_sym_preproc_if_token2] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_PLUS] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_typedef] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2150), - [anon_sym___attribute] = ACTIONS(2150), - [anon_sym___attribute__] = ACTIONS(2150), - [anon_sym___declspec] = ACTIONS(2150), - [anon_sym___cdecl] = ACTIONS(2150), - [anon_sym___clrcall] = ACTIONS(2150), - [anon_sym___stdcall] = ACTIONS(2150), - [anon_sym___fastcall] = ACTIONS(2150), - [anon_sym___thiscall] = ACTIONS(2150), - [anon_sym___vectorcall] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2150), - [anon_sym_auto] = ACTIONS(2150), - [anon_sym_register] = ACTIONS(2150), - [anon_sym_inline] = ACTIONS(2150), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2150), - [anon_sym_volatile] = ACTIONS(2150), - [anon_sym_restrict] = ACTIONS(2150), - [anon_sym__Atomic] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [anon_sym_out] = ACTIONS(2150), - [anon_sym_inout] = ACTIONS(2150), - [anon_sym_bycopy] = ACTIONS(2150), - [anon_sym_byref] = ACTIONS(2150), - [anon_sym_oneway] = ACTIONS(2150), - [anon_sym__Nullable] = ACTIONS(2150), - [anon_sym__Nonnull] = ACTIONS(2150), - [anon_sym__Nullable_result] = ACTIONS(2150), - [anon_sym__Null_unspecified] = ACTIONS(2150), - [anon_sym___autoreleasing] = ACTIONS(2150), - [anon_sym___nullable] = ACTIONS(2150), - [anon_sym___nonnull] = ACTIONS(2150), - [anon_sym___strong] = ACTIONS(2150), - [anon_sym___weak] = ACTIONS(2150), - [anon_sym___bridge] = ACTIONS(2150), - [anon_sym___bridge_transfer] = ACTIONS(2150), - [anon_sym___bridge_retained] = ACTIONS(2150), - [anon_sym___unsafe_unretained] = ACTIONS(2150), - [anon_sym___block] = ACTIONS(2150), - [anon_sym___kindof] = ACTIONS(2150), - [anon_sym___unused] = ACTIONS(2150), - [anon_sym__Complex] = ACTIONS(2150), - [anon_sym___complex] = ACTIONS(2150), - [anon_sym_IBOutlet] = ACTIONS(2150), - [anon_sym_IBInspectable] = ACTIONS(2150), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2150), - [anon_sym_signed] = ACTIONS(2150), - [anon_sym_unsigned] = ACTIONS(2150), - [anon_sym_long] = ACTIONS(2150), - [anon_sym_short] = ACTIONS(2150), - [sym_primitive_type] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_NS_ENUM] = ACTIONS(2150), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2150), - [anon_sym_NS_OPTIONS] = ACTIONS(2150), - [anon_sym_struct] = ACTIONS(2150), - [anon_sym_union] = ACTIONS(2150), - [anon_sym_if] = ACTIONS(2150), - [anon_sym_switch] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2150), - [anon_sym_default] = ACTIONS(2150), - [anon_sym_while] = ACTIONS(2150), - [anon_sym_do] = ACTIONS(2150), - [anon_sym_for] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(2150), - [anon_sym_break] = ACTIONS(2150), - [anon_sym_continue] = ACTIONS(2150), - [anon_sym_goto] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_sizeof] = ACTIONS(2150), - [sym_number_literal] = ACTIONS(2152), - [anon_sym_L_SQUOTE] = ACTIONS(2152), - [anon_sym_u_SQUOTE] = ACTIONS(2152), - [anon_sym_U_SQUOTE] = ACTIONS(2152), - [anon_sym_u8_SQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_L_DQUOTE] = ACTIONS(2152), - [anon_sym_u_DQUOTE] = ACTIONS(2152), - [anon_sym_U_DQUOTE] = ACTIONS(2152), - [anon_sym_u8_DQUOTE] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [sym_true] = ACTIONS(2150), - [sym_false] = ACTIONS(2150), - [sym_null] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2152), - [anon_sym_ATimport] = ACTIONS(2152), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2150), - [anon_sym_ATcompatibility_alias] = ACTIONS(2152), - [anon_sym_ATprotocol] = ACTIONS(2152), - [anon_sym_ATclass] = ACTIONS(2152), - [anon_sym_ATinterface] = ACTIONS(2152), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2150), - [sym_method_attribute_specifier] = ACTIONS(2150), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2150), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE] = ACTIONS(2150), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_API_AVAILABLE] = ACTIONS(2150), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_API_DEPRECATED] = ACTIONS(2150), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2150), - [anon_sym___deprecated_msg] = ACTIONS(2150), - [anon_sym___deprecated_enum_msg] = ACTIONS(2150), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2150), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2150), - [anon_sym_ATimplementation] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2150), - [anon_sym___typeof] = ACTIONS(2150), - [anon_sym___typeof__] = ACTIONS(2150), - [sym_self] = ACTIONS(2150), - [sym_super] = ACTIONS(2150), - [sym_nil] = ACTIONS(2150), - [sym_id] = ACTIONS(2150), - [sym_instancetype] = ACTIONS(2150), - [sym_Class] = ACTIONS(2150), - [sym_SEL] = ACTIONS(2150), - [sym_IMP] = ACTIONS(2150), - [sym_BOOL] = ACTIONS(2150), - [sym_auto] = ACTIONS(2150), - [anon_sym_ATautoreleasepool] = ACTIONS(2152), - [anon_sym_ATsynchronized] = ACTIONS(2152), - [anon_sym_ATtry] = ACTIONS(2152), - [anon_sym_ATthrow] = ACTIONS(2152), - [anon_sym_ATselector] = ACTIONS(2152), - [anon_sym_ATencode] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [sym_YES] = ACTIONS(2150), - [sym_NO] = ACTIONS(2150), - [anon_sym___builtin_available] = ACTIONS(2150), - [anon_sym_ATavailable] = ACTIONS(2152), - [anon_sym_va_arg] = ACTIONS(2150), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1560] = { - [sym_identifier] = ACTIONS(1774), - [aux_sym_preproc_include_token1] = ACTIONS(1776), - [aux_sym_preproc_def_token1] = ACTIONS(1776), - [aux_sym_preproc_if_token1] = ACTIONS(1774), - [aux_sym_preproc_if_token2] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1774), - [anon_sym_LPAREN2] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_typedef] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym___attribute] = ACTIONS(1774), - [anon_sym___attribute__] = ACTIONS(1774), - [anon_sym___declspec] = ACTIONS(1774), - [anon_sym___cdecl] = ACTIONS(1774), - [anon_sym___clrcall] = ACTIONS(1774), - [anon_sym___stdcall] = ACTIONS(1774), - [anon_sym___fastcall] = ACTIONS(1774), - [anon_sym___thiscall] = ACTIONS(1774), - [anon_sym___vectorcall] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_auto] = ACTIONS(1774), - [anon_sym_register] = ACTIONS(1774), - [anon_sym_inline] = ACTIONS(1774), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_volatile] = ACTIONS(1774), - [anon_sym_restrict] = ACTIONS(1774), - [anon_sym__Atomic] = ACTIONS(1774), - [anon_sym_in] = ACTIONS(1774), - [anon_sym_out] = ACTIONS(1774), - [anon_sym_inout] = ACTIONS(1774), - [anon_sym_bycopy] = ACTIONS(1774), - [anon_sym_byref] = ACTIONS(1774), - [anon_sym_oneway] = ACTIONS(1774), - [anon_sym__Nullable] = ACTIONS(1774), - [anon_sym__Nonnull] = ACTIONS(1774), - [anon_sym__Nullable_result] = ACTIONS(1774), - [anon_sym__Null_unspecified] = ACTIONS(1774), - [anon_sym___autoreleasing] = ACTIONS(1774), - [anon_sym___nullable] = ACTIONS(1774), - [anon_sym___nonnull] = ACTIONS(1774), - [anon_sym___strong] = ACTIONS(1774), - [anon_sym___weak] = ACTIONS(1774), - [anon_sym___bridge] = ACTIONS(1774), - [anon_sym___bridge_transfer] = ACTIONS(1774), - [anon_sym___bridge_retained] = ACTIONS(1774), - [anon_sym___unsafe_unretained] = ACTIONS(1774), - [anon_sym___block] = ACTIONS(1774), - [anon_sym___kindof] = ACTIONS(1774), - [anon_sym___unused] = ACTIONS(1774), - [anon_sym__Complex] = ACTIONS(1774), - [anon_sym___complex] = ACTIONS(1774), - [anon_sym_IBOutlet] = ACTIONS(1774), - [anon_sym_IBInspectable] = ACTIONS(1774), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1774), - [anon_sym_signed] = ACTIONS(1774), - [anon_sym_unsigned] = ACTIONS(1774), - [anon_sym_long] = ACTIONS(1774), - [anon_sym_short] = ACTIONS(1774), - [sym_primitive_type] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_NS_ENUM] = ACTIONS(1774), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1774), - [anon_sym_NS_OPTIONS] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1774), - [anon_sym_case] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_goto] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1776), - [anon_sym_sizeof] = ACTIONS(1774), - [sym_number_literal] = ACTIONS(1776), - [anon_sym_L_SQUOTE] = ACTIONS(1776), - [anon_sym_u_SQUOTE] = ACTIONS(1776), - [anon_sym_U_SQUOTE] = ACTIONS(1776), - [anon_sym_u8_SQUOTE] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_L_DQUOTE] = ACTIONS(1776), - [anon_sym_u_DQUOTE] = ACTIONS(1776), - [anon_sym_U_DQUOTE] = ACTIONS(1776), - [anon_sym_u8_DQUOTE] = ACTIONS(1776), - [anon_sym_DQUOTE] = ACTIONS(1776), - [sym_true] = ACTIONS(1774), - [sym_false] = ACTIONS(1774), - [sym_null] = ACTIONS(1774), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1776), - [anon_sym_ATimport] = ACTIONS(1776), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1774), - [anon_sym_ATcompatibility_alias] = ACTIONS(1776), - [anon_sym_ATprotocol] = ACTIONS(1776), - [anon_sym_ATclass] = ACTIONS(1776), - [anon_sym_ATinterface] = ACTIONS(1776), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1774), - [sym_method_attribute_specifier] = ACTIONS(1774), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1774), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1774), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE] = ACTIONS(1774), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1774), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_API_AVAILABLE] = ACTIONS(1774), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_API_DEPRECATED] = ACTIONS(1774), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1774), - [anon_sym___deprecated_msg] = ACTIONS(1774), - [anon_sym___deprecated_enum_msg] = ACTIONS(1774), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1774), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1774), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1774), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1774), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1774), - [anon_sym_ATimplementation] = ACTIONS(1776), - [anon_sym_typeof] = ACTIONS(1774), - [anon_sym___typeof] = ACTIONS(1774), - [anon_sym___typeof__] = ACTIONS(1774), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_nil] = ACTIONS(1774), - [sym_id] = ACTIONS(1774), - [sym_instancetype] = ACTIONS(1774), - [sym_Class] = ACTIONS(1774), - [sym_SEL] = ACTIONS(1774), - [sym_IMP] = ACTIONS(1774), - [sym_BOOL] = ACTIONS(1774), - [sym_auto] = ACTIONS(1774), - [anon_sym_ATautoreleasepool] = ACTIONS(1776), - [anon_sym_ATsynchronized] = ACTIONS(1776), - [anon_sym_ATtry] = ACTIONS(1776), - [anon_sym_ATthrow] = ACTIONS(1776), - [anon_sym_ATselector] = ACTIONS(1776), - [anon_sym_ATencode] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1774), - [sym_YES] = ACTIONS(1774), - [sym_NO] = ACTIONS(1774), - [anon_sym___builtin_available] = ACTIONS(1774), - [anon_sym_ATavailable] = ACTIONS(1776), - [anon_sym_va_arg] = ACTIONS(1774), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1561] = { - [sym_identifier] = ACTIONS(1762), - [aux_sym_preproc_include_token1] = ACTIONS(1764), - [aux_sym_preproc_def_token1] = ACTIONS(1764), - [aux_sym_preproc_if_token1] = ACTIONS(1762), - [aux_sym_preproc_if_token2] = ACTIONS(1762), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1762), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1762), - [anon_sym_LPAREN2] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1762), - [anon_sym_PLUS] = ACTIONS(1762), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_CARET] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1764), - [anon_sym_typedef] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym___attribute] = ACTIONS(1762), - [anon_sym___attribute__] = ACTIONS(1762), - [anon_sym___declspec] = ACTIONS(1762), - [anon_sym___cdecl] = ACTIONS(1762), - [anon_sym___clrcall] = ACTIONS(1762), - [anon_sym___stdcall] = ACTIONS(1762), - [anon_sym___fastcall] = ACTIONS(1762), - [anon_sym___thiscall] = ACTIONS(1762), - [anon_sym___vectorcall] = ACTIONS(1762), - [anon_sym_LBRACE] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(1764), - [anon_sym_static] = ACTIONS(1762), - [anon_sym_auto] = ACTIONS(1762), - [anon_sym_register] = ACTIONS(1762), - [anon_sym_inline] = ACTIONS(1762), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [anon_sym_volatile] = ACTIONS(1762), - [anon_sym_restrict] = ACTIONS(1762), - [anon_sym__Atomic] = ACTIONS(1762), - [anon_sym_in] = ACTIONS(1762), - [anon_sym_out] = ACTIONS(1762), - [anon_sym_inout] = ACTIONS(1762), - [anon_sym_bycopy] = ACTIONS(1762), - [anon_sym_byref] = ACTIONS(1762), - [anon_sym_oneway] = ACTIONS(1762), - [anon_sym__Nullable] = ACTIONS(1762), - [anon_sym__Nonnull] = ACTIONS(1762), - [anon_sym__Nullable_result] = ACTIONS(1762), - [anon_sym__Null_unspecified] = ACTIONS(1762), - [anon_sym___autoreleasing] = ACTIONS(1762), - [anon_sym___nullable] = ACTIONS(1762), - [anon_sym___nonnull] = ACTIONS(1762), - [anon_sym___strong] = ACTIONS(1762), - [anon_sym___weak] = ACTIONS(1762), - [anon_sym___bridge] = ACTIONS(1762), - [anon_sym___bridge_transfer] = ACTIONS(1762), - [anon_sym___bridge_retained] = ACTIONS(1762), - [anon_sym___unsafe_unretained] = ACTIONS(1762), - [anon_sym___block] = ACTIONS(1762), - [anon_sym___kindof] = ACTIONS(1762), - [anon_sym___unused] = ACTIONS(1762), - [anon_sym__Complex] = ACTIONS(1762), - [anon_sym___complex] = ACTIONS(1762), - [anon_sym_IBOutlet] = ACTIONS(1762), - [anon_sym_IBInspectable] = ACTIONS(1762), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1762), - [anon_sym_signed] = ACTIONS(1762), - [anon_sym_unsigned] = ACTIONS(1762), - [anon_sym_long] = ACTIONS(1762), - [anon_sym_short] = ACTIONS(1762), - [sym_primitive_type] = ACTIONS(1762), - [anon_sym_enum] = ACTIONS(1762), - [anon_sym_NS_ENUM] = ACTIONS(1762), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1762), - [anon_sym_NS_OPTIONS] = ACTIONS(1762), - [anon_sym_struct] = ACTIONS(1762), - [anon_sym_union] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(1762), - [anon_sym_switch] = ACTIONS(1762), - [anon_sym_case] = ACTIONS(1762), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1762), - [anon_sym_do] = ACTIONS(1762), - [anon_sym_for] = ACTIONS(1762), - [anon_sym_return] = ACTIONS(1762), - [anon_sym_break] = ACTIONS(1762), - [anon_sym_continue] = ACTIONS(1762), - [anon_sym_goto] = ACTIONS(1762), - [anon_sym_DASH_DASH] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1764), - [anon_sym_sizeof] = ACTIONS(1762), - [sym_number_literal] = ACTIONS(1764), - [anon_sym_L_SQUOTE] = ACTIONS(1764), - [anon_sym_u_SQUOTE] = ACTIONS(1764), - [anon_sym_U_SQUOTE] = ACTIONS(1764), - [anon_sym_u8_SQUOTE] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1764), - [anon_sym_L_DQUOTE] = ACTIONS(1764), - [anon_sym_u_DQUOTE] = ACTIONS(1764), - [anon_sym_U_DQUOTE] = ACTIONS(1764), - [anon_sym_u8_DQUOTE] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(1764), - [sym_true] = ACTIONS(1762), - [sym_false] = ACTIONS(1762), - [sym_null] = ACTIONS(1762), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1764), - [anon_sym_ATimport] = ACTIONS(1764), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1762), - [anon_sym_ATcompatibility_alias] = ACTIONS(1764), - [anon_sym_ATprotocol] = ACTIONS(1764), - [anon_sym_ATclass] = ACTIONS(1764), - [anon_sym_ATinterface] = ACTIONS(1764), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1762), - [sym_method_attribute_specifier] = ACTIONS(1762), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1762), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1762), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1762), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1762), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1762), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1762), - [anon_sym_NS_AVAILABLE] = ACTIONS(1762), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1762), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1762), - [anon_sym_API_AVAILABLE] = ACTIONS(1762), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1762), - [anon_sym_API_DEPRECATED] = ACTIONS(1762), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1762), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1762), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1762), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1762), - [anon_sym___deprecated_msg] = ACTIONS(1762), - [anon_sym___deprecated_enum_msg] = ACTIONS(1762), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1762), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1762), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1762), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1762), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1762), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1762), - [anon_sym_ATimplementation] = ACTIONS(1764), - [anon_sym_typeof] = ACTIONS(1762), - [anon_sym___typeof] = ACTIONS(1762), - [anon_sym___typeof__] = ACTIONS(1762), - [sym_self] = ACTIONS(1762), - [sym_super] = ACTIONS(1762), - [sym_nil] = ACTIONS(1762), - [sym_id] = ACTIONS(1762), - [sym_instancetype] = ACTIONS(1762), - [sym_Class] = ACTIONS(1762), - [sym_SEL] = ACTIONS(1762), - [sym_IMP] = ACTIONS(1762), - [sym_BOOL] = ACTIONS(1762), - [sym_auto] = ACTIONS(1762), - [anon_sym_ATautoreleasepool] = ACTIONS(1764), - [anon_sym_ATsynchronized] = ACTIONS(1764), - [anon_sym_ATtry] = ACTIONS(1764), - [anon_sym_ATthrow] = ACTIONS(1764), - [anon_sym_ATselector] = ACTIONS(1764), - [anon_sym_ATencode] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1762), - [sym_YES] = ACTIONS(1762), - [sym_NO] = ACTIONS(1762), - [anon_sym___builtin_available] = ACTIONS(1762), - [anon_sym_ATavailable] = ACTIONS(1764), - [anon_sym_va_arg] = ACTIONS(1762), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1562] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1563] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1564] = { - [sym_identifier] = ACTIONS(1746), - [aux_sym_preproc_include_token1] = ACTIONS(1748), - [aux_sym_preproc_def_token1] = ACTIONS(1748), - [aux_sym_preproc_if_token1] = ACTIONS(1746), - [aux_sym_preproc_if_token2] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym___attribute] = ACTIONS(1746), - [anon_sym___attribute__] = ACTIONS(1746), - [anon_sym___declspec] = ACTIONS(1746), - [anon_sym___cdecl] = ACTIONS(1746), - [anon_sym___clrcall] = ACTIONS(1746), - [anon_sym___stdcall] = ACTIONS(1746), - [anon_sym___fastcall] = ACTIONS(1746), - [anon_sym___thiscall] = ACTIONS(1746), - [anon_sym___vectorcall] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1746), - [anon_sym_register] = ACTIONS(1746), - [anon_sym_inline] = ACTIONS(1746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_restrict] = ACTIONS(1746), - [anon_sym__Atomic] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_out] = ACTIONS(1746), - [anon_sym_inout] = ACTIONS(1746), - [anon_sym_bycopy] = ACTIONS(1746), - [anon_sym_byref] = ACTIONS(1746), - [anon_sym_oneway] = ACTIONS(1746), - [anon_sym__Nullable] = ACTIONS(1746), - [anon_sym__Nonnull] = ACTIONS(1746), - [anon_sym__Nullable_result] = ACTIONS(1746), - [anon_sym__Null_unspecified] = ACTIONS(1746), - [anon_sym___autoreleasing] = ACTIONS(1746), - [anon_sym___nullable] = ACTIONS(1746), - [anon_sym___nonnull] = ACTIONS(1746), - [anon_sym___strong] = ACTIONS(1746), - [anon_sym___weak] = ACTIONS(1746), - [anon_sym___bridge] = ACTIONS(1746), - [anon_sym___bridge_transfer] = ACTIONS(1746), - [anon_sym___bridge_retained] = ACTIONS(1746), - [anon_sym___unsafe_unretained] = ACTIONS(1746), - [anon_sym___block] = ACTIONS(1746), - [anon_sym___kindof] = ACTIONS(1746), - [anon_sym___unused] = ACTIONS(1746), - [anon_sym__Complex] = ACTIONS(1746), - [anon_sym___complex] = ACTIONS(1746), - [anon_sym_IBOutlet] = ACTIONS(1746), - [anon_sym_IBInspectable] = ACTIONS(1746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1746), - [anon_sym_unsigned] = ACTIONS(1746), - [anon_sym_long] = ACTIONS(1746), - [anon_sym_short] = ACTIONS(1746), - [sym_primitive_type] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_NS_ENUM] = ACTIONS(1746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1746), - [anon_sym_NS_OPTIONS] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_goto] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_sizeof] = ACTIONS(1746), - [sym_number_literal] = ACTIONS(1748), - [anon_sym_L_SQUOTE] = ACTIONS(1748), - [anon_sym_u_SQUOTE] = ACTIONS(1748), - [anon_sym_U_SQUOTE] = ACTIONS(1748), - [anon_sym_u8_SQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_L_DQUOTE] = ACTIONS(1748), - [anon_sym_u_DQUOTE] = ACTIONS(1748), - [anon_sym_U_DQUOTE] = ACTIONS(1748), - [anon_sym_u8_DQUOTE] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1748), - [anon_sym_ATimport] = ACTIONS(1748), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1746), - [anon_sym_ATcompatibility_alias] = ACTIONS(1748), - [anon_sym_ATprotocol] = ACTIONS(1748), - [anon_sym_ATclass] = ACTIONS(1748), - [anon_sym_ATinterface] = ACTIONS(1748), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1746), - [sym_method_attribute_specifier] = ACTIONS(1746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE] = ACTIONS(1746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_API_AVAILABLE] = ACTIONS(1746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_API_DEPRECATED] = ACTIONS(1746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1746), - [anon_sym___deprecated_msg] = ACTIONS(1746), - [anon_sym___deprecated_enum_msg] = ACTIONS(1746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1746), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1746), - [anon_sym_ATimplementation] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym___typeof] = ACTIONS(1746), - [anon_sym___typeof__] = ACTIONS(1746), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_nil] = ACTIONS(1746), - [sym_id] = ACTIONS(1746), - [sym_instancetype] = ACTIONS(1746), - [sym_Class] = ACTIONS(1746), - [sym_SEL] = ACTIONS(1746), - [sym_IMP] = ACTIONS(1746), - [sym_BOOL] = ACTIONS(1746), - [sym_auto] = ACTIONS(1746), - [anon_sym_ATautoreleasepool] = ACTIONS(1748), - [anon_sym_ATsynchronized] = ACTIONS(1748), - [anon_sym_ATtry] = ACTIONS(1748), - [anon_sym_ATthrow] = ACTIONS(1748), - [anon_sym_ATselector] = ACTIONS(1748), - [anon_sym_ATencode] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1746), - [sym_YES] = ACTIONS(1746), - [sym_NO] = ACTIONS(1746), - [anon_sym___builtin_available] = ACTIONS(1746), - [anon_sym_ATavailable] = ACTIONS(1748), - [anon_sym_va_arg] = ACTIONS(1746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1565] = { - [sym_identifier] = ACTIONS(1758), - [aux_sym_preproc_include_token1] = ACTIONS(1760), - [aux_sym_preproc_def_token1] = ACTIONS(1760), - [aux_sym_preproc_if_token1] = ACTIONS(1758), - [aux_sym_preproc_if_token2] = ACTIONS(1758), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1758), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1758), - [anon_sym_LPAREN2] = ACTIONS(1760), - [anon_sym_BANG] = ACTIONS(1760), - [anon_sym_TILDE] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_CARET] = ACTIONS(1760), - [anon_sym_AMP] = ACTIONS(1760), - [anon_sym_SEMI] = ACTIONS(1760), - [anon_sym_typedef] = ACTIONS(1758), - [anon_sym_extern] = ACTIONS(1758), - [anon_sym___attribute] = ACTIONS(1758), - [anon_sym___attribute__] = ACTIONS(1758), - [anon_sym___declspec] = ACTIONS(1758), - [anon_sym___cdecl] = ACTIONS(1758), - [anon_sym___clrcall] = ACTIONS(1758), - [anon_sym___stdcall] = ACTIONS(1758), - [anon_sym___fastcall] = ACTIONS(1758), - [anon_sym___thiscall] = ACTIONS(1758), - [anon_sym___vectorcall] = ACTIONS(1758), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_LBRACK] = ACTIONS(1760), - [anon_sym_static] = ACTIONS(1758), - [anon_sym_auto] = ACTIONS(1758), - [anon_sym_register] = ACTIONS(1758), - [anon_sym_inline] = ACTIONS(1758), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1758), - [anon_sym_const] = ACTIONS(1758), - [anon_sym_volatile] = ACTIONS(1758), - [anon_sym_restrict] = ACTIONS(1758), - [anon_sym__Atomic] = ACTIONS(1758), - [anon_sym_in] = ACTIONS(1758), - [anon_sym_out] = ACTIONS(1758), - [anon_sym_inout] = ACTIONS(1758), - [anon_sym_bycopy] = ACTIONS(1758), - [anon_sym_byref] = ACTIONS(1758), - [anon_sym_oneway] = ACTIONS(1758), - [anon_sym__Nullable] = ACTIONS(1758), - [anon_sym__Nonnull] = ACTIONS(1758), - [anon_sym__Nullable_result] = ACTIONS(1758), - [anon_sym__Null_unspecified] = ACTIONS(1758), - [anon_sym___autoreleasing] = ACTIONS(1758), - [anon_sym___nullable] = ACTIONS(1758), - [anon_sym___nonnull] = ACTIONS(1758), - [anon_sym___strong] = ACTIONS(1758), - [anon_sym___weak] = ACTIONS(1758), - [anon_sym___bridge] = ACTIONS(1758), - [anon_sym___bridge_transfer] = ACTIONS(1758), - [anon_sym___bridge_retained] = ACTIONS(1758), - [anon_sym___unsafe_unretained] = ACTIONS(1758), - [anon_sym___block] = ACTIONS(1758), - [anon_sym___kindof] = ACTIONS(1758), - [anon_sym___unused] = ACTIONS(1758), - [anon_sym__Complex] = ACTIONS(1758), - [anon_sym___complex] = ACTIONS(1758), - [anon_sym_IBOutlet] = ACTIONS(1758), - [anon_sym_IBInspectable] = ACTIONS(1758), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1758), - [anon_sym_signed] = ACTIONS(1758), - [anon_sym_unsigned] = ACTIONS(1758), - [anon_sym_long] = ACTIONS(1758), - [anon_sym_short] = ACTIONS(1758), - [sym_primitive_type] = ACTIONS(1758), - [anon_sym_enum] = ACTIONS(1758), - [anon_sym_NS_ENUM] = ACTIONS(1758), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1758), - [anon_sym_NS_OPTIONS] = ACTIONS(1758), - [anon_sym_struct] = ACTIONS(1758), - [anon_sym_union] = ACTIONS(1758), - [anon_sym_if] = ACTIONS(1758), - [anon_sym_switch] = ACTIONS(1758), - [anon_sym_case] = ACTIONS(1758), - [anon_sym_default] = ACTIONS(1758), - [anon_sym_while] = ACTIONS(1758), - [anon_sym_do] = ACTIONS(1758), - [anon_sym_for] = ACTIONS(1758), - [anon_sym_return] = ACTIONS(1758), - [anon_sym_break] = ACTIONS(1758), - [anon_sym_continue] = ACTIONS(1758), - [anon_sym_goto] = ACTIONS(1758), - [anon_sym_DASH_DASH] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1760), - [anon_sym_sizeof] = ACTIONS(1758), - [sym_number_literal] = ACTIONS(1760), - [anon_sym_L_SQUOTE] = ACTIONS(1760), - [anon_sym_u_SQUOTE] = ACTIONS(1760), - [anon_sym_U_SQUOTE] = ACTIONS(1760), - [anon_sym_u8_SQUOTE] = ACTIONS(1760), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_L_DQUOTE] = ACTIONS(1760), - [anon_sym_u_DQUOTE] = ACTIONS(1760), - [anon_sym_U_DQUOTE] = ACTIONS(1760), - [anon_sym_u8_DQUOTE] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1760), - [sym_true] = ACTIONS(1758), - [sym_false] = ACTIONS(1758), - [sym_null] = ACTIONS(1758), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1760), - [anon_sym_ATimport] = ACTIONS(1760), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1758), - [anon_sym_ATcompatibility_alias] = ACTIONS(1760), - [anon_sym_ATprotocol] = ACTIONS(1760), - [anon_sym_ATclass] = ACTIONS(1760), - [anon_sym_ATinterface] = ACTIONS(1760), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1758), - [sym_method_attribute_specifier] = ACTIONS(1758), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1758), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1758), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1758), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1758), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1758), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1758), - [anon_sym_NS_AVAILABLE] = ACTIONS(1758), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1758), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1758), - [anon_sym_API_AVAILABLE] = ACTIONS(1758), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1758), - [anon_sym_API_DEPRECATED] = ACTIONS(1758), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1758), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1758), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1758), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1758), - [anon_sym___deprecated_msg] = ACTIONS(1758), - [anon_sym___deprecated_enum_msg] = ACTIONS(1758), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1758), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1758), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1758), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1758), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1758), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1758), - [anon_sym_ATimplementation] = ACTIONS(1760), - [anon_sym_typeof] = ACTIONS(1758), - [anon_sym___typeof] = ACTIONS(1758), - [anon_sym___typeof__] = ACTIONS(1758), - [sym_self] = ACTIONS(1758), - [sym_super] = ACTIONS(1758), - [sym_nil] = ACTIONS(1758), - [sym_id] = ACTIONS(1758), - [sym_instancetype] = ACTIONS(1758), - [sym_Class] = ACTIONS(1758), - [sym_SEL] = ACTIONS(1758), - [sym_IMP] = ACTIONS(1758), - [sym_BOOL] = ACTIONS(1758), - [sym_auto] = ACTIONS(1758), - [anon_sym_ATautoreleasepool] = ACTIONS(1760), - [anon_sym_ATsynchronized] = ACTIONS(1760), - [anon_sym_ATtry] = ACTIONS(1760), - [anon_sym_ATthrow] = ACTIONS(1760), - [anon_sym_ATselector] = ACTIONS(1760), - [anon_sym_ATencode] = ACTIONS(1760), - [anon_sym_AT] = ACTIONS(1758), - [sym_YES] = ACTIONS(1758), - [sym_NO] = ACTIONS(1758), - [anon_sym___builtin_available] = ACTIONS(1758), - [anon_sym_ATavailable] = ACTIONS(1760), - [anon_sym_va_arg] = ACTIONS(1758), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1566] = { - [sym_identifier] = ACTIONS(1746), - [aux_sym_preproc_include_token1] = ACTIONS(1748), - [aux_sym_preproc_def_token1] = ACTIONS(1748), - [aux_sym_preproc_if_token1] = ACTIONS(1746), - [aux_sym_preproc_if_token2] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1746), - [anon_sym_LPAREN2] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PLUS] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym___attribute] = ACTIONS(1746), - [anon_sym___attribute__] = ACTIONS(1746), - [anon_sym___declspec] = ACTIONS(1746), - [anon_sym___cdecl] = ACTIONS(1746), - [anon_sym___clrcall] = ACTIONS(1746), - [anon_sym___stdcall] = ACTIONS(1746), - [anon_sym___fastcall] = ACTIONS(1746), - [anon_sym___thiscall] = ACTIONS(1746), - [anon_sym___vectorcall] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_auto] = ACTIONS(1746), - [anon_sym_register] = ACTIONS(1746), - [anon_sym_inline] = ACTIONS(1746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_volatile] = ACTIONS(1746), - [anon_sym_restrict] = ACTIONS(1746), - [anon_sym__Atomic] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1746), - [anon_sym_out] = ACTIONS(1746), - [anon_sym_inout] = ACTIONS(1746), - [anon_sym_bycopy] = ACTIONS(1746), - [anon_sym_byref] = ACTIONS(1746), - [anon_sym_oneway] = ACTIONS(1746), - [anon_sym__Nullable] = ACTIONS(1746), - [anon_sym__Nonnull] = ACTIONS(1746), - [anon_sym__Nullable_result] = ACTIONS(1746), - [anon_sym__Null_unspecified] = ACTIONS(1746), - [anon_sym___autoreleasing] = ACTIONS(1746), - [anon_sym___nullable] = ACTIONS(1746), - [anon_sym___nonnull] = ACTIONS(1746), - [anon_sym___strong] = ACTIONS(1746), - [anon_sym___weak] = ACTIONS(1746), - [anon_sym___bridge] = ACTIONS(1746), - [anon_sym___bridge_transfer] = ACTIONS(1746), - [anon_sym___bridge_retained] = ACTIONS(1746), - [anon_sym___unsafe_unretained] = ACTIONS(1746), - [anon_sym___block] = ACTIONS(1746), - [anon_sym___kindof] = ACTIONS(1746), - [anon_sym___unused] = ACTIONS(1746), - [anon_sym__Complex] = ACTIONS(1746), - [anon_sym___complex] = ACTIONS(1746), - [anon_sym_IBOutlet] = ACTIONS(1746), - [anon_sym_IBInspectable] = ACTIONS(1746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1746), - [anon_sym_signed] = ACTIONS(1746), - [anon_sym_unsigned] = ACTIONS(1746), - [anon_sym_long] = ACTIONS(1746), - [anon_sym_short] = ACTIONS(1746), - [sym_primitive_type] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_NS_ENUM] = ACTIONS(1746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1746), - [anon_sym_NS_OPTIONS] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_do] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_goto] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1748), - [anon_sym_sizeof] = ACTIONS(1746), - [sym_number_literal] = ACTIONS(1748), - [anon_sym_L_SQUOTE] = ACTIONS(1748), - [anon_sym_u_SQUOTE] = ACTIONS(1748), - [anon_sym_U_SQUOTE] = ACTIONS(1748), - [anon_sym_u8_SQUOTE] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_L_DQUOTE] = ACTIONS(1748), - [anon_sym_u_DQUOTE] = ACTIONS(1748), - [anon_sym_U_DQUOTE] = ACTIONS(1748), - [anon_sym_u8_DQUOTE] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [sym_true] = ACTIONS(1746), - [sym_false] = ACTIONS(1746), - [sym_null] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1748), - [anon_sym_ATimport] = ACTIONS(1748), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1746), - [anon_sym_ATcompatibility_alias] = ACTIONS(1748), - [anon_sym_ATprotocol] = ACTIONS(1748), - [anon_sym_ATclass] = ACTIONS(1748), - [anon_sym_ATinterface] = ACTIONS(1748), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1746), - [sym_method_attribute_specifier] = ACTIONS(1746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE] = ACTIONS(1746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_API_AVAILABLE] = ACTIONS(1746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_API_DEPRECATED] = ACTIONS(1746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1746), - [anon_sym___deprecated_msg] = ACTIONS(1746), - [anon_sym___deprecated_enum_msg] = ACTIONS(1746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1746), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1746), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1746), - [anon_sym_ATimplementation] = ACTIONS(1748), - [anon_sym_typeof] = ACTIONS(1746), - [anon_sym___typeof] = ACTIONS(1746), - [anon_sym___typeof__] = ACTIONS(1746), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_nil] = ACTIONS(1746), - [sym_id] = ACTIONS(1746), - [sym_instancetype] = ACTIONS(1746), - [sym_Class] = ACTIONS(1746), - [sym_SEL] = ACTIONS(1746), - [sym_IMP] = ACTIONS(1746), - [sym_BOOL] = ACTIONS(1746), - [sym_auto] = ACTIONS(1746), - [anon_sym_ATautoreleasepool] = ACTIONS(1748), - [anon_sym_ATsynchronized] = ACTIONS(1748), - [anon_sym_ATtry] = ACTIONS(1748), - [anon_sym_ATthrow] = ACTIONS(1748), - [anon_sym_ATselector] = ACTIONS(1748), - [anon_sym_ATencode] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1746), - [sym_YES] = ACTIONS(1746), - [sym_NO] = ACTIONS(1746), - [anon_sym___builtin_available] = ACTIONS(1746), - [anon_sym_ATavailable] = ACTIONS(1748), - [anon_sym_va_arg] = ACTIONS(1746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1567] = { - [sym_identifier] = ACTIONS(2150), - [aux_sym_preproc_include_token1] = ACTIONS(2152), - [aux_sym_preproc_def_token1] = ACTIONS(2152), - [aux_sym_preproc_if_token1] = ACTIONS(2150), - [aux_sym_preproc_if_token2] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2150), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2150), - [anon_sym_LPAREN2] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2150), - [anon_sym_PLUS] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2152), - [anon_sym_CARET] = ACTIONS(2152), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_typedef] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2150), - [anon_sym___attribute] = ACTIONS(2150), - [anon_sym___attribute__] = ACTIONS(2150), - [anon_sym___declspec] = ACTIONS(2150), - [anon_sym___cdecl] = ACTIONS(2150), - [anon_sym___clrcall] = ACTIONS(2150), - [anon_sym___stdcall] = ACTIONS(2150), - [anon_sym___fastcall] = ACTIONS(2150), - [anon_sym___thiscall] = ACTIONS(2150), - [anon_sym___vectorcall] = ACTIONS(2150), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2150), - [anon_sym_auto] = ACTIONS(2150), - [anon_sym_register] = ACTIONS(2150), - [anon_sym_inline] = ACTIONS(2150), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2150), - [anon_sym_const] = ACTIONS(2150), - [anon_sym_volatile] = ACTIONS(2150), - [anon_sym_restrict] = ACTIONS(2150), - [anon_sym__Atomic] = ACTIONS(2150), - [anon_sym_in] = ACTIONS(2150), - [anon_sym_out] = ACTIONS(2150), - [anon_sym_inout] = ACTIONS(2150), - [anon_sym_bycopy] = ACTIONS(2150), - [anon_sym_byref] = ACTIONS(2150), - [anon_sym_oneway] = ACTIONS(2150), - [anon_sym__Nullable] = ACTIONS(2150), - [anon_sym__Nonnull] = ACTIONS(2150), - [anon_sym__Nullable_result] = ACTIONS(2150), - [anon_sym__Null_unspecified] = ACTIONS(2150), - [anon_sym___autoreleasing] = ACTIONS(2150), - [anon_sym___nullable] = ACTIONS(2150), - [anon_sym___nonnull] = ACTIONS(2150), - [anon_sym___strong] = ACTIONS(2150), - [anon_sym___weak] = ACTIONS(2150), - [anon_sym___bridge] = ACTIONS(2150), - [anon_sym___bridge_transfer] = ACTIONS(2150), - [anon_sym___bridge_retained] = ACTIONS(2150), - [anon_sym___unsafe_unretained] = ACTIONS(2150), - [anon_sym___block] = ACTIONS(2150), - [anon_sym___kindof] = ACTIONS(2150), - [anon_sym___unused] = ACTIONS(2150), - [anon_sym__Complex] = ACTIONS(2150), - [anon_sym___complex] = ACTIONS(2150), - [anon_sym_IBOutlet] = ACTIONS(2150), - [anon_sym_IBInspectable] = ACTIONS(2150), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2150), - [anon_sym_signed] = ACTIONS(2150), - [anon_sym_unsigned] = ACTIONS(2150), - [anon_sym_long] = ACTIONS(2150), - [anon_sym_short] = ACTIONS(2150), - [sym_primitive_type] = ACTIONS(2150), - [anon_sym_enum] = ACTIONS(2150), - [anon_sym_NS_ENUM] = ACTIONS(2150), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2150), - [anon_sym_NS_OPTIONS] = ACTIONS(2150), - [anon_sym_struct] = ACTIONS(2150), - [anon_sym_union] = ACTIONS(2150), - [anon_sym_if] = ACTIONS(2150), - [anon_sym_switch] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2150), - [anon_sym_default] = ACTIONS(2150), - [anon_sym_while] = ACTIONS(2150), - [anon_sym_do] = ACTIONS(2150), - [anon_sym_for] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(2150), - [anon_sym_break] = ACTIONS(2150), - [anon_sym_continue] = ACTIONS(2150), - [anon_sym_goto] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_sizeof] = ACTIONS(2150), - [sym_number_literal] = ACTIONS(2152), - [anon_sym_L_SQUOTE] = ACTIONS(2152), - [anon_sym_u_SQUOTE] = ACTIONS(2152), - [anon_sym_U_SQUOTE] = ACTIONS(2152), - [anon_sym_u8_SQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_L_DQUOTE] = ACTIONS(2152), - [anon_sym_u_DQUOTE] = ACTIONS(2152), - [anon_sym_U_DQUOTE] = ACTIONS(2152), - [anon_sym_u8_DQUOTE] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [sym_true] = ACTIONS(2150), - [sym_false] = ACTIONS(2150), - [sym_null] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2152), - [anon_sym_ATimport] = ACTIONS(2152), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2150), - [anon_sym_ATcompatibility_alias] = ACTIONS(2152), - [anon_sym_ATprotocol] = ACTIONS(2152), - [anon_sym_ATclass] = ACTIONS(2152), - [anon_sym_ATinterface] = ACTIONS(2152), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2150), - [sym_method_attribute_specifier] = ACTIONS(2150), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2150), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2150), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE] = ACTIONS(2150), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2150), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_API_AVAILABLE] = ACTIONS(2150), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_API_DEPRECATED] = ACTIONS(2150), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2150), - [anon_sym___deprecated_msg] = ACTIONS(2150), - [anon_sym___deprecated_enum_msg] = ACTIONS(2150), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2150), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2150), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2150), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2150), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2150), - [anon_sym_ATimplementation] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2150), - [anon_sym___typeof] = ACTIONS(2150), - [anon_sym___typeof__] = ACTIONS(2150), - [sym_self] = ACTIONS(2150), - [sym_super] = ACTIONS(2150), - [sym_nil] = ACTIONS(2150), - [sym_id] = ACTIONS(2150), - [sym_instancetype] = ACTIONS(2150), - [sym_Class] = ACTIONS(2150), - [sym_SEL] = ACTIONS(2150), - [sym_IMP] = ACTIONS(2150), - [sym_BOOL] = ACTIONS(2150), - [sym_auto] = ACTIONS(2150), - [anon_sym_ATautoreleasepool] = ACTIONS(2152), - [anon_sym_ATsynchronized] = ACTIONS(2152), - [anon_sym_ATtry] = ACTIONS(2152), - [anon_sym_ATthrow] = ACTIONS(2152), - [anon_sym_ATselector] = ACTIONS(2152), - [anon_sym_ATencode] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2150), - [sym_YES] = ACTIONS(2150), - [sym_NO] = ACTIONS(2150), - [anon_sym___builtin_available] = ACTIONS(2150), - [anon_sym_ATavailable] = ACTIONS(2152), - [anon_sym_va_arg] = ACTIONS(2150), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1568] = { - [sym_identifier] = ACTIONS(2162), - [aux_sym_preproc_include_token1] = ACTIONS(2164), - [aux_sym_preproc_def_token1] = ACTIONS(2164), - [aux_sym_preproc_if_token1] = ACTIONS(2162), - [aux_sym_preproc_if_token2] = ACTIONS(2162), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2162), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2162), - [anon_sym_LPAREN2] = ACTIONS(2164), - [anon_sym_BANG] = ACTIONS(2164), - [anon_sym_TILDE] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_typedef] = ACTIONS(2162), - [anon_sym_extern] = ACTIONS(2162), - [anon_sym___attribute] = ACTIONS(2162), - [anon_sym___attribute__] = ACTIONS(2162), - [anon_sym___declspec] = ACTIONS(2162), - [anon_sym___cdecl] = ACTIONS(2162), - [anon_sym___clrcall] = ACTIONS(2162), - [anon_sym___stdcall] = ACTIONS(2162), - [anon_sym___fastcall] = ACTIONS(2162), - [anon_sym___thiscall] = ACTIONS(2162), - [anon_sym___vectorcall] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2162), - [anon_sym_auto] = ACTIONS(2162), - [anon_sym_register] = ACTIONS(2162), - [anon_sym_inline] = ACTIONS(2162), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_volatile] = ACTIONS(2162), - [anon_sym_restrict] = ACTIONS(2162), - [anon_sym__Atomic] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_out] = ACTIONS(2162), - [anon_sym_inout] = ACTIONS(2162), - [anon_sym_bycopy] = ACTIONS(2162), - [anon_sym_byref] = ACTIONS(2162), - [anon_sym_oneway] = ACTIONS(2162), - [anon_sym__Nullable] = ACTIONS(2162), - [anon_sym__Nonnull] = ACTIONS(2162), - [anon_sym__Nullable_result] = ACTIONS(2162), - [anon_sym__Null_unspecified] = ACTIONS(2162), - [anon_sym___autoreleasing] = ACTIONS(2162), - [anon_sym___nullable] = ACTIONS(2162), - [anon_sym___nonnull] = ACTIONS(2162), - [anon_sym___strong] = ACTIONS(2162), - [anon_sym___weak] = ACTIONS(2162), - [anon_sym___bridge] = ACTIONS(2162), - [anon_sym___bridge_transfer] = ACTIONS(2162), - [anon_sym___bridge_retained] = ACTIONS(2162), - [anon_sym___unsafe_unretained] = ACTIONS(2162), - [anon_sym___block] = ACTIONS(2162), - [anon_sym___kindof] = ACTIONS(2162), - [anon_sym___unused] = ACTIONS(2162), - [anon_sym__Complex] = ACTIONS(2162), - [anon_sym___complex] = ACTIONS(2162), - [anon_sym_IBOutlet] = ACTIONS(2162), - [anon_sym_IBInspectable] = ACTIONS(2162), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2162), - [anon_sym_signed] = ACTIONS(2162), - [anon_sym_unsigned] = ACTIONS(2162), - [anon_sym_long] = ACTIONS(2162), - [anon_sym_short] = ACTIONS(2162), - [sym_primitive_type] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [anon_sym_NS_ENUM] = ACTIONS(2162), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2162), - [anon_sym_NS_OPTIONS] = ACTIONS(2162), - [anon_sym_struct] = ACTIONS(2162), - [anon_sym_union] = ACTIONS(2162), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_switch] = ACTIONS(2162), - [anon_sym_case] = ACTIONS(2162), - [anon_sym_default] = ACTIONS(2162), - [anon_sym_while] = ACTIONS(2162), - [anon_sym_do] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_goto] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2164), - [anon_sym_sizeof] = ACTIONS(2162), - [sym_number_literal] = ACTIONS(2164), - [anon_sym_L_SQUOTE] = ACTIONS(2164), - [anon_sym_u_SQUOTE] = ACTIONS(2164), - [anon_sym_U_SQUOTE] = ACTIONS(2164), - [anon_sym_u8_SQUOTE] = ACTIONS(2164), - [anon_sym_SQUOTE] = ACTIONS(2164), - [anon_sym_L_DQUOTE] = ACTIONS(2164), - [anon_sym_u_DQUOTE] = ACTIONS(2164), - [anon_sym_U_DQUOTE] = ACTIONS(2164), - [anon_sym_u8_DQUOTE] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2164), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_null] = ACTIONS(2162), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2164), - [anon_sym_ATimport] = ACTIONS(2164), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2162), - [anon_sym_ATcompatibility_alias] = ACTIONS(2164), - [anon_sym_ATprotocol] = ACTIONS(2164), - [anon_sym_ATclass] = ACTIONS(2164), - [anon_sym_ATinterface] = ACTIONS(2164), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2162), - [sym_method_attribute_specifier] = ACTIONS(2162), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2162), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2162), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2162), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2162), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2162), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2162), - [anon_sym_NS_AVAILABLE] = ACTIONS(2162), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2162), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2162), - [anon_sym_API_AVAILABLE] = ACTIONS(2162), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2162), - [anon_sym_API_DEPRECATED] = ACTIONS(2162), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2162), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2162), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2162), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2162), - [anon_sym___deprecated_msg] = ACTIONS(2162), - [anon_sym___deprecated_enum_msg] = ACTIONS(2162), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2162), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2162), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2162), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2162), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2162), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2162), - [anon_sym_ATimplementation] = ACTIONS(2164), - [anon_sym_typeof] = ACTIONS(2162), - [anon_sym___typeof] = ACTIONS(2162), - [anon_sym___typeof__] = ACTIONS(2162), - [sym_self] = ACTIONS(2162), - [sym_super] = ACTIONS(2162), - [sym_nil] = ACTIONS(2162), - [sym_id] = ACTIONS(2162), - [sym_instancetype] = ACTIONS(2162), - [sym_Class] = ACTIONS(2162), - [sym_SEL] = ACTIONS(2162), - [sym_IMP] = ACTIONS(2162), - [sym_BOOL] = ACTIONS(2162), - [sym_auto] = ACTIONS(2162), - [anon_sym_ATautoreleasepool] = ACTIONS(2164), - [anon_sym_ATsynchronized] = ACTIONS(2164), - [anon_sym_ATtry] = ACTIONS(2164), - [anon_sym_ATthrow] = ACTIONS(2164), - [anon_sym_ATselector] = ACTIONS(2164), - [anon_sym_ATencode] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2162), - [sym_YES] = ACTIONS(2162), - [sym_NO] = ACTIONS(2162), - [anon_sym___builtin_available] = ACTIONS(2162), - [anon_sym_ATavailable] = ACTIONS(2164), - [anon_sym_va_arg] = ACTIONS(2162), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1569] = { - [sym_identifier] = ACTIONS(2166), - [aux_sym_preproc_include_token1] = ACTIONS(2168), - [aux_sym_preproc_def_token1] = ACTIONS(2168), - [aux_sym_preproc_if_token1] = ACTIONS(2166), - [aux_sym_preproc_if_token2] = ACTIONS(2166), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2166), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2166), - [anon_sym_LPAREN2] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(2168), - [anon_sym_TILDE] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2168), - [anon_sym_CARET] = ACTIONS(2168), - [anon_sym_AMP] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2168), - [anon_sym_typedef] = ACTIONS(2166), - [anon_sym_extern] = ACTIONS(2166), - [anon_sym___attribute] = ACTIONS(2166), - [anon_sym___attribute__] = ACTIONS(2166), - [anon_sym___declspec] = ACTIONS(2166), - [anon_sym___cdecl] = ACTIONS(2166), - [anon_sym___clrcall] = ACTIONS(2166), - [anon_sym___stdcall] = ACTIONS(2166), - [anon_sym___fastcall] = ACTIONS(2166), - [anon_sym___thiscall] = ACTIONS(2166), - [anon_sym___vectorcall] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2166), - [anon_sym_auto] = ACTIONS(2166), - [anon_sym_register] = ACTIONS(2166), - [anon_sym_inline] = ACTIONS(2166), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2166), - [anon_sym_const] = ACTIONS(2166), - [anon_sym_volatile] = ACTIONS(2166), - [anon_sym_restrict] = ACTIONS(2166), - [anon_sym__Atomic] = ACTIONS(2166), - [anon_sym_in] = ACTIONS(2166), - [anon_sym_out] = ACTIONS(2166), - [anon_sym_inout] = ACTIONS(2166), - [anon_sym_bycopy] = ACTIONS(2166), - [anon_sym_byref] = ACTIONS(2166), - [anon_sym_oneway] = ACTIONS(2166), - [anon_sym__Nullable] = ACTIONS(2166), - [anon_sym__Nonnull] = ACTIONS(2166), - [anon_sym__Nullable_result] = ACTIONS(2166), - [anon_sym__Null_unspecified] = ACTIONS(2166), - [anon_sym___autoreleasing] = ACTIONS(2166), - [anon_sym___nullable] = ACTIONS(2166), - [anon_sym___nonnull] = ACTIONS(2166), - [anon_sym___strong] = ACTIONS(2166), - [anon_sym___weak] = ACTIONS(2166), - [anon_sym___bridge] = ACTIONS(2166), - [anon_sym___bridge_transfer] = ACTIONS(2166), - [anon_sym___bridge_retained] = ACTIONS(2166), - [anon_sym___unsafe_unretained] = ACTIONS(2166), - [anon_sym___block] = ACTIONS(2166), - [anon_sym___kindof] = ACTIONS(2166), - [anon_sym___unused] = ACTIONS(2166), - [anon_sym__Complex] = ACTIONS(2166), - [anon_sym___complex] = ACTIONS(2166), - [anon_sym_IBOutlet] = ACTIONS(2166), - [anon_sym_IBInspectable] = ACTIONS(2166), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2166), - [anon_sym_signed] = ACTIONS(2166), - [anon_sym_unsigned] = ACTIONS(2166), - [anon_sym_long] = ACTIONS(2166), - [anon_sym_short] = ACTIONS(2166), - [sym_primitive_type] = ACTIONS(2166), - [anon_sym_enum] = ACTIONS(2166), - [anon_sym_NS_ENUM] = ACTIONS(2166), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2166), - [anon_sym_NS_OPTIONS] = ACTIONS(2166), - [anon_sym_struct] = ACTIONS(2166), - [anon_sym_union] = ACTIONS(2166), - [anon_sym_if] = ACTIONS(2166), - [anon_sym_switch] = ACTIONS(2166), - [anon_sym_case] = ACTIONS(2166), - [anon_sym_default] = ACTIONS(2166), - [anon_sym_while] = ACTIONS(2166), - [anon_sym_do] = ACTIONS(2166), - [anon_sym_for] = ACTIONS(2166), - [anon_sym_return] = ACTIONS(2166), - [anon_sym_break] = ACTIONS(2166), - [anon_sym_continue] = ACTIONS(2166), - [anon_sym_goto] = ACTIONS(2166), - [anon_sym_DASH_DASH] = ACTIONS(2168), - [anon_sym_PLUS_PLUS] = ACTIONS(2168), - [anon_sym_sizeof] = ACTIONS(2166), - [sym_number_literal] = ACTIONS(2168), - [anon_sym_L_SQUOTE] = ACTIONS(2168), - [anon_sym_u_SQUOTE] = ACTIONS(2168), - [anon_sym_U_SQUOTE] = ACTIONS(2168), - [anon_sym_u8_SQUOTE] = ACTIONS(2168), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_L_DQUOTE] = ACTIONS(2168), - [anon_sym_u_DQUOTE] = ACTIONS(2168), - [anon_sym_U_DQUOTE] = ACTIONS(2168), - [anon_sym_u8_DQUOTE] = ACTIONS(2168), - [anon_sym_DQUOTE] = ACTIONS(2168), - [sym_true] = ACTIONS(2166), - [sym_false] = ACTIONS(2166), - [sym_null] = ACTIONS(2166), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2168), - [anon_sym_ATimport] = ACTIONS(2168), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2166), - [anon_sym_ATcompatibility_alias] = ACTIONS(2168), - [anon_sym_ATprotocol] = ACTIONS(2168), - [anon_sym_ATclass] = ACTIONS(2168), - [anon_sym_ATinterface] = ACTIONS(2168), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2166), - [sym_method_attribute_specifier] = ACTIONS(2166), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2166), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2166), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2166), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2166), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2166), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2166), - [anon_sym_NS_AVAILABLE] = ACTIONS(2166), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2166), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2166), - [anon_sym_API_AVAILABLE] = ACTIONS(2166), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2166), - [anon_sym_API_DEPRECATED] = ACTIONS(2166), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2166), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2166), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2166), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2166), - [anon_sym___deprecated_msg] = ACTIONS(2166), - [anon_sym___deprecated_enum_msg] = ACTIONS(2166), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2166), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2166), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2166), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2166), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2166), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2166), - [anon_sym_ATimplementation] = ACTIONS(2168), - [anon_sym_typeof] = ACTIONS(2166), - [anon_sym___typeof] = ACTIONS(2166), - [anon_sym___typeof__] = ACTIONS(2166), - [sym_self] = ACTIONS(2166), - [sym_super] = ACTIONS(2166), - [sym_nil] = ACTIONS(2166), - [sym_id] = ACTIONS(2166), - [sym_instancetype] = ACTIONS(2166), - [sym_Class] = ACTIONS(2166), - [sym_SEL] = ACTIONS(2166), - [sym_IMP] = ACTIONS(2166), - [sym_BOOL] = ACTIONS(2166), - [sym_auto] = ACTIONS(2166), - [anon_sym_ATautoreleasepool] = ACTIONS(2168), - [anon_sym_ATsynchronized] = ACTIONS(2168), - [anon_sym_ATtry] = ACTIONS(2168), - [anon_sym_ATthrow] = ACTIONS(2168), - [anon_sym_ATselector] = ACTIONS(2168), - [anon_sym_ATencode] = ACTIONS(2168), - [anon_sym_AT] = ACTIONS(2166), - [sym_YES] = ACTIONS(2166), - [sym_NO] = ACTIONS(2166), - [anon_sym___builtin_available] = ACTIONS(2166), - [anon_sym_ATavailable] = ACTIONS(2168), - [anon_sym_va_arg] = ACTIONS(2166), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1570] = { - [sym_identifier] = ACTIONS(1990), - [aux_sym_preproc_include_token1] = ACTIONS(1992), - [aux_sym_preproc_def_token1] = ACTIONS(1992), - [aux_sym_preproc_if_token1] = ACTIONS(1990), - [aux_sym_preproc_if_token2] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(1992), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_TILDE] = ACTIONS(1992), - [anon_sym_DASH] = ACTIONS(1990), - [anon_sym_PLUS] = ACTIONS(1990), - [anon_sym_STAR] = ACTIONS(1992), - [anon_sym_CARET] = ACTIONS(1992), - [anon_sym_AMP] = ACTIONS(1992), - [anon_sym_SEMI] = ACTIONS(1992), - [anon_sym_typedef] = ACTIONS(1990), - [anon_sym_extern] = ACTIONS(1990), - [anon_sym___attribute] = ACTIONS(1990), - [anon_sym___attribute__] = ACTIONS(1990), - [anon_sym___declspec] = ACTIONS(1990), - [anon_sym___cdecl] = ACTIONS(1990), - [anon_sym___clrcall] = ACTIONS(1990), - [anon_sym___stdcall] = ACTIONS(1990), - [anon_sym___fastcall] = ACTIONS(1990), - [anon_sym___thiscall] = ACTIONS(1990), - [anon_sym___vectorcall] = ACTIONS(1990), - [anon_sym_LBRACE] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1992), - [anon_sym_static] = ACTIONS(1990), - [anon_sym_auto] = ACTIONS(1990), - [anon_sym_register] = ACTIONS(1990), - [anon_sym_inline] = ACTIONS(1990), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1990), - [anon_sym_const] = ACTIONS(1990), - [anon_sym_volatile] = ACTIONS(1990), - [anon_sym_restrict] = ACTIONS(1990), - [anon_sym__Atomic] = ACTIONS(1990), - [anon_sym_in] = ACTIONS(1990), - [anon_sym_out] = ACTIONS(1990), - [anon_sym_inout] = ACTIONS(1990), - [anon_sym_bycopy] = ACTIONS(1990), - [anon_sym_byref] = ACTIONS(1990), - [anon_sym_oneway] = ACTIONS(1990), - [anon_sym__Nullable] = ACTIONS(1990), - [anon_sym__Nonnull] = ACTIONS(1990), - [anon_sym__Nullable_result] = ACTIONS(1990), - [anon_sym__Null_unspecified] = ACTIONS(1990), - [anon_sym___autoreleasing] = ACTIONS(1990), - [anon_sym___nullable] = ACTIONS(1990), - [anon_sym___nonnull] = ACTIONS(1990), - [anon_sym___strong] = ACTIONS(1990), - [anon_sym___weak] = ACTIONS(1990), - [anon_sym___bridge] = ACTIONS(1990), - [anon_sym___bridge_transfer] = ACTIONS(1990), - [anon_sym___bridge_retained] = ACTIONS(1990), - [anon_sym___unsafe_unretained] = ACTIONS(1990), - [anon_sym___block] = ACTIONS(1990), - [anon_sym___kindof] = ACTIONS(1990), - [anon_sym___unused] = ACTIONS(1990), - [anon_sym__Complex] = ACTIONS(1990), - [anon_sym___complex] = ACTIONS(1990), - [anon_sym_IBOutlet] = ACTIONS(1990), - [anon_sym_IBInspectable] = ACTIONS(1990), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1990), - [anon_sym_signed] = ACTIONS(1990), - [anon_sym_unsigned] = ACTIONS(1990), - [anon_sym_long] = ACTIONS(1990), - [anon_sym_short] = ACTIONS(1990), - [sym_primitive_type] = ACTIONS(1990), - [anon_sym_enum] = ACTIONS(1990), - [anon_sym_NS_ENUM] = ACTIONS(1990), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1990), - [anon_sym_NS_OPTIONS] = ACTIONS(1990), - [anon_sym_struct] = ACTIONS(1990), - [anon_sym_union] = ACTIONS(1990), - [anon_sym_if] = ACTIONS(1990), - [anon_sym_switch] = ACTIONS(1990), - [anon_sym_case] = ACTIONS(1990), - [anon_sym_default] = ACTIONS(1990), - [anon_sym_while] = ACTIONS(1990), - [anon_sym_do] = ACTIONS(1990), - [anon_sym_for] = ACTIONS(1990), - [anon_sym_return] = ACTIONS(1990), - [anon_sym_break] = ACTIONS(1990), - [anon_sym_continue] = ACTIONS(1990), - [anon_sym_goto] = ACTIONS(1990), - [anon_sym_DASH_DASH] = ACTIONS(1992), - [anon_sym_PLUS_PLUS] = ACTIONS(1992), - [anon_sym_sizeof] = ACTIONS(1990), - [sym_number_literal] = ACTIONS(1992), - [anon_sym_L_SQUOTE] = ACTIONS(1992), - [anon_sym_u_SQUOTE] = ACTIONS(1992), - [anon_sym_U_SQUOTE] = ACTIONS(1992), - [anon_sym_u8_SQUOTE] = ACTIONS(1992), - [anon_sym_SQUOTE] = ACTIONS(1992), - [anon_sym_L_DQUOTE] = ACTIONS(1992), - [anon_sym_u_DQUOTE] = ACTIONS(1992), - [anon_sym_U_DQUOTE] = ACTIONS(1992), - [anon_sym_u8_DQUOTE] = ACTIONS(1992), - [anon_sym_DQUOTE] = ACTIONS(1992), - [sym_true] = ACTIONS(1990), - [sym_false] = ACTIONS(1990), - [sym_null] = ACTIONS(1990), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1992), - [anon_sym_ATimport] = ACTIONS(1992), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1990), - [anon_sym_ATcompatibility_alias] = ACTIONS(1992), - [anon_sym_ATprotocol] = ACTIONS(1992), - [anon_sym_ATclass] = ACTIONS(1992), - [anon_sym_ATinterface] = ACTIONS(1992), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1990), - [sym_method_attribute_specifier] = ACTIONS(1990), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1990), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1990), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1990), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1990), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1990), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1990), - [anon_sym_NS_AVAILABLE] = ACTIONS(1990), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1990), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1990), - [anon_sym_API_AVAILABLE] = ACTIONS(1990), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1990), - [anon_sym_API_DEPRECATED] = ACTIONS(1990), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1990), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1990), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1990), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1990), - [anon_sym___deprecated_msg] = ACTIONS(1990), - [anon_sym___deprecated_enum_msg] = ACTIONS(1990), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1990), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1990), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1990), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1990), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1990), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1990), - [anon_sym_ATimplementation] = ACTIONS(1992), - [anon_sym_typeof] = ACTIONS(1990), - [anon_sym___typeof] = ACTIONS(1990), - [anon_sym___typeof__] = ACTIONS(1990), - [sym_self] = ACTIONS(1990), - [sym_super] = ACTIONS(1990), - [sym_nil] = ACTIONS(1990), - [sym_id] = ACTIONS(1990), - [sym_instancetype] = ACTIONS(1990), - [sym_Class] = ACTIONS(1990), - [sym_SEL] = ACTIONS(1990), - [sym_IMP] = ACTIONS(1990), - [sym_BOOL] = ACTIONS(1990), - [sym_auto] = ACTIONS(1990), - [anon_sym_ATautoreleasepool] = ACTIONS(1992), - [anon_sym_ATsynchronized] = ACTIONS(1992), - [anon_sym_ATtry] = ACTIONS(1992), - [anon_sym_ATthrow] = ACTIONS(1992), - [anon_sym_ATselector] = ACTIONS(1992), - [anon_sym_ATencode] = ACTIONS(1992), - [anon_sym_AT] = ACTIONS(1990), - [sym_YES] = ACTIONS(1990), - [sym_NO] = ACTIONS(1990), - [anon_sym___builtin_available] = ACTIONS(1990), - [anon_sym_ATavailable] = ACTIONS(1992), - [anon_sym_va_arg] = ACTIONS(1990), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1571] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1572] = { - [sym_identifier] = ACTIONS(2178), - [aux_sym_preproc_include_token1] = ACTIONS(2180), - [aux_sym_preproc_def_token1] = ACTIONS(2180), - [aux_sym_preproc_if_token1] = ACTIONS(2178), - [aux_sym_preproc_if_token2] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), - [anon_sym_LPAREN2] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_typedef] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym___attribute] = ACTIONS(2178), - [anon_sym___attribute__] = ACTIONS(2178), - [anon_sym___declspec] = ACTIONS(2178), - [anon_sym___cdecl] = ACTIONS(2178), - [anon_sym___clrcall] = ACTIONS(2178), - [anon_sym___stdcall] = ACTIONS(2178), - [anon_sym___fastcall] = ACTIONS(2178), - [anon_sym___thiscall] = ACTIONS(2178), - [anon_sym___vectorcall] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_auto] = ACTIONS(2178), - [anon_sym_register] = ACTIONS(2178), - [anon_sym_inline] = ACTIONS(2178), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_volatile] = ACTIONS(2178), - [anon_sym_restrict] = ACTIONS(2178), - [anon_sym__Atomic] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_out] = ACTIONS(2178), - [anon_sym_inout] = ACTIONS(2178), - [anon_sym_bycopy] = ACTIONS(2178), - [anon_sym_byref] = ACTIONS(2178), - [anon_sym_oneway] = ACTIONS(2178), - [anon_sym__Nullable] = ACTIONS(2178), - [anon_sym__Nonnull] = ACTIONS(2178), - [anon_sym__Nullable_result] = ACTIONS(2178), - [anon_sym__Null_unspecified] = ACTIONS(2178), - [anon_sym___autoreleasing] = ACTIONS(2178), - [anon_sym___nullable] = ACTIONS(2178), - [anon_sym___nonnull] = ACTIONS(2178), - [anon_sym___strong] = ACTIONS(2178), - [anon_sym___weak] = ACTIONS(2178), - [anon_sym___bridge] = ACTIONS(2178), - [anon_sym___bridge_transfer] = ACTIONS(2178), - [anon_sym___bridge_retained] = ACTIONS(2178), - [anon_sym___unsafe_unretained] = ACTIONS(2178), - [anon_sym___block] = ACTIONS(2178), - [anon_sym___kindof] = ACTIONS(2178), - [anon_sym___unused] = ACTIONS(2178), - [anon_sym__Complex] = ACTIONS(2178), - [anon_sym___complex] = ACTIONS(2178), - [anon_sym_IBOutlet] = ACTIONS(2178), - [anon_sym_IBInspectable] = ACTIONS(2178), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2178), - [anon_sym_signed] = ACTIONS(2178), - [anon_sym_unsigned] = ACTIONS(2178), - [anon_sym_long] = ACTIONS(2178), - [anon_sym_short] = ACTIONS(2178), - [sym_primitive_type] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_NS_ENUM] = ACTIONS(2178), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2178), - [anon_sym_NS_OPTIONS] = ACTIONS(2178), - [anon_sym_struct] = ACTIONS(2178), - [anon_sym_union] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_goto] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(2180), - [anon_sym_sizeof] = ACTIONS(2178), - [sym_number_literal] = ACTIONS(2180), - [anon_sym_L_SQUOTE] = ACTIONS(2180), - [anon_sym_u_SQUOTE] = ACTIONS(2180), - [anon_sym_U_SQUOTE] = ACTIONS(2180), - [anon_sym_u8_SQUOTE] = ACTIONS(2180), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_L_DQUOTE] = ACTIONS(2180), - [anon_sym_u_DQUOTE] = ACTIONS(2180), - [anon_sym_U_DQUOTE] = ACTIONS(2180), - [anon_sym_u8_DQUOTE] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2180), - [anon_sym_ATimport] = ACTIONS(2180), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2178), - [anon_sym_ATcompatibility_alias] = ACTIONS(2180), - [anon_sym_ATprotocol] = ACTIONS(2180), - [anon_sym_ATclass] = ACTIONS(2180), - [anon_sym_ATinterface] = ACTIONS(2180), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2178), - [sym_method_attribute_specifier] = ACTIONS(2178), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2178), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE] = ACTIONS(2178), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_API_AVAILABLE] = ACTIONS(2178), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_API_DEPRECATED] = ACTIONS(2178), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2178), - [anon_sym___deprecated_msg] = ACTIONS(2178), - [anon_sym___deprecated_enum_msg] = ACTIONS(2178), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2178), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2178), - [anon_sym_ATimplementation] = ACTIONS(2180), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym___typeof] = ACTIONS(2178), - [anon_sym___typeof__] = ACTIONS(2178), - [sym_self] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_nil] = ACTIONS(2178), - [sym_id] = ACTIONS(2178), - [sym_instancetype] = ACTIONS(2178), - [sym_Class] = ACTIONS(2178), - [sym_SEL] = ACTIONS(2178), - [sym_IMP] = ACTIONS(2178), - [sym_BOOL] = ACTIONS(2178), - [sym_auto] = ACTIONS(2178), - [anon_sym_ATautoreleasepool] = ACTIONS(2180), - [anon_sym_ATsynchronized] = ACTIONS(2180), - [anon_sym_ATtry] = ACTIONS(2180), - [anon_sym_ATthrow] = ACTIONS(2180), - [anon_sym_ATselector] = ACTIONS(2180), - [anon_sym_ATencode] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2178), - [sym_YES] = ACTIONS(2178), - [sym_NO] = ACTIONS(2178), - [anon_sym___builtin_available] = ACTIONS(2178), - [anon_sym_ATavailable] = ACTIONS(2180), - [anon_sym_va_arg] = ACTIONS(2178), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1573] = { - [sym_identifier] = ACTIONS(2178), - [aux_sym_preproc_include_token1] = ACTIONS(2180), - [aux_sym_preproc_def_token1] = ACTIONS(2180), - [aux_sym_preproc_if_token1] = ACTIONS(2178), - [aux_sym_preproc_if_token2] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), - [anon_sym_LPAREN2] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_typedef] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym___attribute] = ACTIONS(2178), - [anon_sym___attribute__] = ACTIONS(2178), - [anon_sym___declspec] = ACTIONS(2178), - [anon_sym___cdecl] = ACTIONS(2178), - [anon_sym___clrcall] = ACTIONS(2178), - [anon_sym___stdcall] = ACTIONS(2178), - [anon_sym___fastcall] = ACTIONS(2178), - [anon_sym___thiscall] = ACTIONS(2178), - [anon_sym___vectorcall] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_auto] = ACTIONS(2178), - [anon_sym_register] = ACTIONS(2178), - [anon_sym_inline] = ACTIONS(2178), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_volatile] = ACTIONS(2178), - [anon_sym_restrict] = ACTIONS(2178), - [anon_sym__Atomic] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_out] = ACTIONS(2178), - [anon_sym_inout] = ACTIONS(2178), - [anon_sym_bycopy] = ACTIONS(2178), - [anon_sym_byref] = ACTIONS(2178), - [anon_sym_oneway] = ACTIONS(2178), - [anon_sym__Nullable] = ACTIONS(2178), - [anon_sym__Nonnull] = ACTIONS(2178), - [anon_sym__Nullable_result] = ACTIONS(2178), - [anon_sym__Null_unspecified] = ACTIONS(2178), - [anon_sym___autoreleasing] = ACTIONS(2178), - [anon_sym___nullable] = ACTIONS(2178), - [anon_sym___nonnull] = ACTIONS(2178), - [anon_sym___strong] = ACTIONS(2178), - [anon_sym___weak] = ACTIONS(2178), - [anon_sym___bridge] = ACTIONS(2178), - [anon_sym___bridge_transfer] = ACTIONS(2178), - [anon_sym___bridge_retained] = ACTIONS(2178), - [anon_sym___unsafe_unretained] = ACTIONS(2178), - [anon_sym___block] = ACTIONS(2178), - [anon_sym___kindof] = ACTIONS(2178), - [anon_sym___unused] = ACTIONS(2178), - [anon_sym__Complex] = ACTIONS(2178), - [anon_sym___complex] = ACTIONS(2178), - [anon_sym_IBOutlet] = ACTIONS(2178), - [anon_sym_IBInspectable] = ACTIONS(2178), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2178), - [anon_sym_signed] = ACTIONS(2178), - [anon_sym_unsigned] = ACTIONS(2178), - [anon_sym_long] = ACTIONS(2178), - [anon_sym_short] = ACTIONS(2178), - [sym_primitive_type] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_NS_ENUM] = ACTIONS(2178), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2178), - [anon_sym_NS_OPTIONS] = ACTIONS(2178), - [anon_sym_struct] = ACTIONS(2178), - [anon_sym_union] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_goto] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(2180), - [anon_sym_sizeof] = ACTIONS(2178), - [sym_number_literal] = ACTIONS(2180), - [anon_sym_L_SQUOTE] = ACTIONS(2180), - [anon_sym_u_SQUOTE] = ACTIONS(2180), - [anon_sym_U_SQUOTE] = ACTIONS(2180), - [anon_sym_u8_SQUOTE] = ACTIONS(2180), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_L_DQUOTE] = ACTIONS(2180), - [anon_sym_u_DQUOTE] = ACTIONS(2180), - [anon_sym_U_DQUOTE] = ACTIONS(2180), - [anon_sym_u8_DQUOTE] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2180), - [anon_sym_ATimport] = ACTIONS(2180), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2178), - [anon_sym_ATcompatibility_alias] = ACTIONS(2180), - [anon_sym_ATprotocol] = ACTIONS(2180), - [anon_sym_ATclass] = ACTIONS(2180), - [anon_sym_ATinterface] = ACTIONS(2180), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2178), - [sym_method_attribute_specifier] = ACTIONS(2178), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2178), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE] = ACTIONS(2178), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_API_AVAILABLE] = ACTIONS(2178), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_API_DEPRECATED] = ACTIONS(2178), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2178), - [anon_sym___deprecated_msg] = ACTIONS(2178), - [anon_sym___deprecated_enum_msg] = ACTIONS(2178), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2178), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2178), - [anon_sym_ATimplementation] = ACTIONS(2180), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym___typeof] = ACTIONS(2178), - [anon_sym___typeof__] = ACTIONS(2178), - [sym_self] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_nil] = ACTIONS(2178), - [sym_id] = ACTIONS(2178), - [sym_instancetype] = ACTIONS(2178), - [sym_Class] = ACTIONS(2178), - [sym_SEL] = ACTIONS(2178), - [sym_IMP] = ACTIONS(2178), - [sym_BOOL] = ACTIONS(2178), - [sym_auto] = ACTIONS(2178), - [anon_sym_ATautoreleasepool] = ACTIONS(2180), - [anon_sym_ATsynchronized] = ACTIONS(2180), - [anon_sym_ATtry] = ACTIONS(2180), - [anon_sym_ATthrow] = ACTIONS(2180), - [anon_sym_ATselector] = ACTIONS(2180), - [anon_sym_ATencode] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2178), - [sym_YES] = ACTIONS(2178), - [sym_NO] = ACTIONS(2178), - [anon_sym___builtin_available] = ACTIONS(2178), - [anon_sym_ATavailable] = ACTIONS(2180), - [anon_sym_va_arg] = ACTIONS(2178), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1574] = { - [sym_identifier] = ACTIONS(1742), - [aux_sym_preproc_include_token1] = ACTIONS(1744), - [aux_sym_preproc_def_token1] = ACTIONS(1744), - [aux_sym_preproc_if_token1] = ACTIONS(1742), - [aux_sym_preproc_if_token2] = ACTIONS(1742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1742), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1742), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_TILDE] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_CARET] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_typedef] = ACTIONS(1742), - [anon_sym_extern] = ACTIONS(1742), - [anon_sym___attribute] = ACTIONS(1742), - [anon_sym___attribute__] = ACTIONS(1742), - [anon_sym___declspec] = ACTIONS(1742), - [anon_sym___cdecl] = ACTIONS(1742), - [anon_sym___clrcall] = ACTIONS(1742), - [anon_sym___stdcall] = ACTIONS(1742), - [anon_sym___fastcall] = ACTIONS(1742), - [anon_sym___thiscall] = ACTIONS(1742), - [anon_sym___vectorcall] = ACTIONS(1742), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1744), - [anon_sym_static] = ACTIONS(1742), - [anon_sym_auto] = ACTIONS(1742), - [anon_sym_register] = ACTIONS(1742), - [anon_sym_inline] = ACTIONS(1742), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1742), - [anon_sym_const] = ACTIONS(1742), - [anon_sym_volatile] = ACTIONS(1742), - [anon_sym_restrict] = ACTIONS(1742), - [anon_sym__Atomic] = ACTIONS(1742), - [anon_sym_in] = ACTIONS(1742), - [anon_sym_out] = ACTIONS(1742), - [anon_sym_inout] = ACTIONS(1742), - [anon_sym_bycopy] = ACTIONS(1742), - [anon_sym_byref] = ACTIONS(1742), - [anon_sym_oneway] = ACTIONS(1742), - [anon_sym__Nullable] = ACTIONS(1742), - [anon_sym__Nonnull] = ACTIONS(1742), - [anon_sym__Nullable_result] = ACTIONS(1742), - [anon_sym__Null_unspecified] = ACTIONS(1742), - [anon_sym___autoreleasing] = ACTIONS(1742), - [anon_sym___nullable] = ACTIONS(1742), - [anon_sym___nonnull] = ACTIONS(1742), - [anon_sym___strong] = ACTIONS(1742), - [anon_sym___weak] = ACTIONS(1742), - [anon_sym___bridge] = ACTIONS(1742), - [anon_sym___bridge_transfer] = ACTIONS(1742), - [anon_sym___bridge_retained] = ACTIONS(1742), - [anon_sym___unsafe_unretained] = ACTIONS(1742), - [anon_sym___block] = ACTIONS(1742), - [anon_sym___kindof] = ACTIONS(1742), - [anon_sym___unused] = ACTIONS(1742), - [anon_sym__Complex] = ACTIONS(1742), - [anon_sym___complex] = ACTIONS(1742), - [anon_sym_IBOutlet] = ACTIONS(1742), - [anon_sym_IBInspectable] = ACTIONS(1742), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1742), - [anon_sym_signed] = ACTIONS(1742), - [anon_sym_unsigned] = ACTIONS(1742), - [anon_sym_long] = ACTIONS(1742), - [anon_sym_short] = ACTIONS(1742), - [sym_primitive_type] = ACTIONS(1742), - [anon_sym_enum] = ACTIONS(1742), - [anon_sym_NS_ENUM] = ACTIONS(1742), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1742), - [anon_sym_NS_OPTIONS] = ACTIONS(1742), - [anon_sym_struct] = ACTIONS(1742), - [anon_sym_union] = ACTIONS(1742), - [anon_sym_if] = ACTIONS(1742), - [anon_sym_switch] = ACTIONS(1742), - [anon_sym_case] = ACTIONS(1742), - [anon_sym_default] = ACTIONS(1742), - [anon_sym_while] = ACTIONS(1742), - [anon_sym_do] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(1742), - [anon_sym_return] = ACTIONS(1742), - [anon_sym_break] = ACTIONS(1742), - [anon_sym_continue] = ACTIONS(1742), - [anon_sym_goto] = ACTIONS(1742), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_sizeof] = ACTIONS(1742), - [sym_number_literal] = ACTIONS(1744), - [anon_sym_L_SQUOTE] = ACTIONS(1744), - [anon_sym_u_SQUOTE] = ACTIONS(1744), - [anon_sym_U_SQUOTE] = ACTIONS(1744), - [anon_sym_u8_SQUOTE] = ACTIONS(1744), - [anon_sym_SQUOTE] = ACTIONS(1744), - [anon_sym_L_DQUOTE] = ACTIONS(1744), - [anon_sym_u_DQUOTE] = ACTIONS(1744), - [anon_sym_U_DQUOTE] = ACTIONS(1744), - [anon_sym_u8_DQUOTE] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [sym_true] = ACTIONS(1742), - [sym_false] = ACTIONS(1742), - [sym_null] = ACTIONS(1742), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1744), - [anon_sym_ATimport] = ACTIONS(1744), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1742), - [anon_sym_ATcompatibility_alias] = ACTIONS(1744), - [anon_sym_ATprotocol] = ACTIONS(1744), - [anon_sym_ATclass] = ACTIONS(1744), - [anon_sym_ATinterface] = ACTIONS(1744), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1742), - [sym_method_attribute_specifier] = ACTIONS(1742), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1742), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1742), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1742), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1742), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1742), - [anon_sym_NS_AVAILABLE] = ACTIONS(1742), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1742), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_API_AVAILABLE] = ACTIONS(1742), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_API_DEPRECATED] = ACTIONS(1742), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1742), - [anon_sym___deprecated_msg] = ACTIONS(1742), - [anon_sym___deprecated_enum_msg] = ACTIONS(1742), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1742), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1742), - [anon_sym_ATimplementation] = ACTIONS(1744), - [anon_sym_typeof] = ACTIONS(1742), - [anon_sym___typeof] = ACTIONS(1742), - [anon_sym___typeof__] = ACTIONS(1742), - [sym_self] = ACTIONS(1742), - [sym_super] = ACTIONS(1742), - [sym_nil] = ACTIONS(1742), - [sym_id] = ACTIONS(1742), - [sym_instancetype] = ACTIONS(1742), - [sym_Class] = ACTIONS(1742), - [sym_SEL] = ACTIONS(1742), - [sym_IMP] = ACTIONS(1742), - [sym_BOOL] = ACTIONS(1742), - [sym_auto] = ACTIONS(1742), - [anon_sym_ATautoreleasepool] = ACTIONS(1744), - [anon_sym_ATsynchronized] = ACTIONS(1744), - [anon_sym_ATtry] = ACTIONS(1744), - [anon_sym_ATthrow] = ACTIONS(1744), - [anon_sym_ATselector] = ACTIONS(1744), - [anon_sym_ATencode] = ACTIONS(1744), - [anon_sym_AT] = ACTIONS(1742), - [sym_YES] = ACTIONS(1742), - [sym_NO] = ACTIONS(1742), - [anon_sym___builtin_available] = ACTIONS(1742), - [anon_sym_ATavailable] = ACTIONS(1744), - [anon_sym_va_arg] = ACTIONS(1742), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1575] = { - [sym_identifier] = ACTIONS(1742), - [aux_sym_preproc_include_token1] = ACTIONS(1744), - [aux_sym_preproc_def_token1] = ACTIONS(1744), - [aux_sym_preproc_if_token1] = ACTIONS(1742), - [aux_sym_preproc_if_token2] = ACTIONS(1742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1742), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1742), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_TILDE] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_CARET] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_typedef] = ACTIONS(1742), - [anon_sym_extern] = ACTIONS(1742), - [anon_sym___attribute] = ACTIONS(1742), - [anon_sym___attribute__] = ACTIONS(1742), - [anon_sym___declspec] = ACTIONS(1742), - [anon_sym___cdecl] = ACTIONS(1742), - [anon_sym___clrcall] = ACTIONS(1742), - [anon_sym___stdcall] = ACTIONS(1742), - [anon_sym___fastcall] = ACTIONS(1742), - [anon_sym___thiscall] = ACTIONS(1742), - [anon_sym___vectorcall] = ACTIONS(1742), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1744), - [anon_sym_static] = ACTIONS(1742), - [anon_sym_auto] = ACTIONS(1742), - [anon_sym_register] = ACTIONS(1742), - [anon_sym_inline] = ACTIONS(1742), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1742), - [anon_sym_const] = ACTIONS(1742), - [anon_sym_volatile] = ACTIONS(1742), - [anon_sym_restrict] = ACTIONS(1742), - [anon_sym__Atomic] = ACTIONS(1742), - [anon_sym_in] = ACTIONS(1742), - [anon_sym_out] = ACTIONS(1742), - [anon_sym_inout] = ACTIONS(1742), - [anon_sym_bycopy] = ACTIONS(1742), - [anon_sym_byref] = ACTIONS(1742), - [anon_sym_oneway] = ACTIONS(1742), - [anon_sym__Nullable] = ACTIONS(1742), - [anon_sym__Nonnull] = ACTIONS(1742), - [anon_sym__Nullable_result] = ACTIONS(1742), - [anon_sym__Null_unspecified] = ACTIONS(1742), - [anon_sym___autoreleasing] = ACTIONS(1742), - [anon_sym___nullable] = ACTIONS(1742), - [anon_sym___nonnull] = ACTIONS(1742), - [anon_sym___strong] = ACTIONS(1742), - [anon_sym___weak] = ACTIONS(1742), - [anon_sym___bridge] = ACTIONS(1742), - [anon_sym___bridge_transfer] = ACTIONS(1742), - [anon_sym___bridge_retained] = ACTIONS(1742), - [anon_sym___unsafe_unretained] = ACTIONS(1742), - [anon_sym___block] = ACTIONS(1742), - [anon_sym___kindof] = ACTIONS(1742), - [anon_sym___unused] = ACTIONS(1742), - [anon_sym__Complex] = ACTIONS(1742), - [anon_sym___complex] = ACTIONS(1742), - [anon_sym_IBOutlet] = ACTIONS(1742), - [anon_sym_IBInspectable] = ACTIONS(1742), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1742), - [anon_sym_signed] = ACTIONS(1742), - [anon_sym_unsigned] = ACTIONS(1742), - [anon_sym_long] = ACTIONS(1742), - [anon_sym_short] = ACTIONS(1742), - [sym_primitive_type] = ACTIONS(1742), - [anon_sym_enum] = ACTIONS(1742), - [anon_sym_NS_ENUM] = ACTIONS(1742), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1742), - [anon_sym_NS_OPTIONS] = ACTIONS(1742), - [anon_sym_struct] = ACTIONS(1742), - [anon_sym_union] = ACTIONS(1742), - [anon_sym_if] = ACTIONS(1742), - [anon_sym_switch] = ACTIONS(1742), - [anon_sym_case] = ACTIONS(1742), - [anon_sym_default] = ACTIONS(1742), - [anon_sym_while] = ACTIONS(1742), - [anon_sym_do] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(1742), - [anon_sym_return] = ACTIONS(1742), - [anon_sym_break] = ACTIONS(1742), - [anon_sym_continue] = ACTIONS(1742), - [anon_sym_goto] = ACTIONS(1742), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_sizeof] = ACTIONS(1742), - [sym_number_literal] = ACTIONS(1744), - [anon_sym_L_SQUOTE] = ACTIONS(1744), - [anon_sym_u_SQUOTE] = ACTIONS(1744), - [anon_sym_U_SQUOTE] = ACTIONS(1744), - [anon_sym_u8_SQUOTE] = ACTIONS(1744), - [anon_sym_SQUOTE] = ACTIONS(1744), - [anon_sym_L_DQUOTE] = ACTIONS(1744), - [anon_sym_u_DQUOTE] = ACTIONS(1744), - [anon_sym_U_DQUOTE] = ACTIONS(1744), - [anon_sym_u8_DQUOTE] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [sym_true] = ACTIONS(1742), - [sym_false] = ACTIONS(1742), - [sym_null] = ACTIONS(1742), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1744), - [anon_sym_ATimport] = ACTIONS(1744), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1742), - [anon_sym_ATcompatibility_alias] = ACTIONS(1744), - [anon_sym_ATprotocol] = ACTIONS(1744), - [anon_sym_ATclass] = ACTIONS(1744), - [anon_sym_ATinterface] = ACTIONS(1744), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1742), - [sym_method_attribute_specifier] = ACTIONS(1742), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1742), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1742), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1742), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1742), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1742), - [anon_sym_NS_AVAILABLE] = ACTIONS(1742), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1742), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_API_AVAILABLE] = ACTIONS(1742), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_API_DEPRECATED] = ACTIONS(1742), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1742), - [anon_sym___deprecated_msg] = ACTIONS(1742), - [anon_sym___deprecated_enum_msg] = ACTIONS(1742), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1742), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1742), - [anon_sym_ATimplementation] = ACTIONS(1744), - [anon_sym_typeof] = ACTIONS(1742), - [anon_sym___typeof] = ACTIONS(1742), - [anon_sym___typeof__] = ACTIONS(1742), - [sym_self] = ACTIONS(1742), - [sym_super] = ACTIONS(1742), - [sym_nil] = ACTIONS(1742), - [sym_id] = ACTIONS(1742), - [sym_instancetype] = ACTIONS(1742), - [sym_Class] = ACTIONS(1742), - [sym_SEL] = ACTIONS(1742), - [sym_IMP] = ACTIONS(1742), - [sym_BOOL] = ACTIONS(1742), - [sym_auto] = ACTIONS(1742), - [anon_sym_ATautoreleasepool] = ACTIONS(1744), - [anon_sym_ATsynchronized] = ACTIONS(1744), - [anon_sym_ATtry] = ACTIONS(1744), - [anon_sym_ATthrow] = ACTIONS(1744), - [anon_sym_ATselector] = ACTIONS(1744), - [anon_sym_ATencode] = ACTIONS(1744), - [anon_sym_AT] = ACTIONS(1742), - [sym_YES] = ACTIONS(1742), - [sym_NO] = ACTIONS(1742), - [anon_sym___builtin_available] = ACTIONS(1742), - [anon_sym_ATavailable] = ACTIONS(1744), - [anon_sym_va_arg] = ACTIONS(1742), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1576] = { - [sym_identifier] = ACTIONS(2178), - [aux_sym_preproc_include_token1] = ACTIONS(2180), - [aux_sym_preproc_def_token1] = ACTIONS(2180), - [aux_sym_preproc_if_token1] = ACTIONS(2178), - [aux_sym_preproc_if_token2] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), - [anon_sym_LPAREN2] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_typedef] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym___attribute] = ACTIONS(2178), - [anon_sym___attribute__] = ACTIONS(2178), - [anon_sym___declspec] = ACTIONS(2178), - [anon_sym___cdecl] = ACTIONS(2178), - [anon_sym___clrcall] = ACTIONS(2178), - [anon_sym___stdcall] = ACTIONS(2178), - [anon_sym___fastcall] = ACTIONS(2178), - [anon_sym___thiscall] = ACTIONS(2178), - [anon_sym___vectorcall] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_auto] = ACTIONS(2178), - [anon_sym_register] = ACTIONS(2178), - [anon_sym_inline] = ACTIONS(2178), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_volatile] = ACTIONS(2178), - [anon_sym_restrict] = ACTIONS(2178), - [anon_sym__Atomic] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_out] = ACTIONS(2178), - [anon_sym_inout] = ACTIONS(2178), - [anon_sym_bycopy] = ACTIONS(2178), - [anon_sym_byref] = ACTIONS(2178), - [anon_sym_oneway] = ACTIONS(2178), - [anon_sym__Nullable] = ACTIONS(2178), - [anon_sym__Nonnull] = ACTIONS(2178), - [anon_sym__Nullable_result] = ACTIONS(2178), - [anon_sym__Null_unspecified] = ACTIONS(2178), - [anon_sym___autoreleasing] = ACTIONS(2178), - [anon_sym___nullable] = ACTIONS(2178), - [anon_sym___nonnull] = ACTIONS(2178), - [anon_sym___strong] = ACTIONS(2178), - [anon_sym___weak] = ACTIONS(2178), - [anon_sym___bridge] = ACTIONS(2178), - [anon_sym___bridge_transfer] = ACTIONS(2178), - [anon_sym___bridge_retained] = ACTIONS(2178), - [anon_sym___unsafe_unretained] = ACTIONS(2178), - [anon_sym___block] = ACTIONS(2178), - [anon_sym___kindof] = ACTIONS(2178), - [anon_sym___unused] = ACTIONS(2178), - [anon_sym__Complex] = ACTIONS(2178), - [anon_sym___complex] = ACTIONS(2178), - [anon_sym_IBOutlet] = ACTIONS(2178), - [anon_sym_IBInspectable] = ACTIONS(2178), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2178), - [anon_sym_signed] = ACTIONS(2178), - [anon_sym_unsigned] = ACTIONS(2178), - [anon_sym_long] = ACTIONS(2178), - [anon_sym_short] = ACTIONS(2178), - [sym_primitive_type] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_NS_ENUM] = ACTIONS(2178), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2178), - [anon_sym_NS_OPTIONS] = ACTIONS(2178), - [anon_sym_struct] = ACTIONS(2178), - [anon_sym_union] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_goto] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(2180), - [anon_sym_sizeof] = ACTIONS(2178), - [sym_number_literal] = ACTIONS(2180), - [anon_sym_L_SQUOTE] = ACTIONS(2180), - [anon_sym_u_SQUOTE] = ACTIONS(2180), - [anon_sym_U_SQUOTE] = ACTIONS(2180), - [anon_sym_u8_SQUOTE] = ACTIONS(2180), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_L_DQUOTE] = ACTIONS(2180), - [anon_sym_u_DQUOTE] = ACTIONS(2180), - [anon_sym_U_DQUOTE] = ACTIONS(2180), - [anon_sym_u8_DQUOTE] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2180), - [anon_sym_ATimport] = ACTIONS(2180), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2178), - [anon_sym_ATcompatibility_alias] = ACTIONS(2180), - [anon_sym_ATprotocol] = ACTIONS(2180), - [anon_sym_ATclass] = ACTIONS(2180), - [anon_sym_ATinterface] = ACTIONS(2180), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2178), - [sym_method_attribute_specifier] = ACTIONS(2178), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2178), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE] = ACTIONS(2178), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_API_AVAILABLE] = ACTIONS(2178), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_API_DEPRECATED] = ACTIONS(2178), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2178), - [anon_sym___deprecated_msg] = ACTIONS(2178), - [anon_sym___deprecated_enum_msg] = ACTIONS(2178), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2178), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2178), - [anon_sym_ATimplementation] = ACTIONS(2180), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym___typeof] = ACTIONS(2178), - [anon_sym___typeof__] = ACTIONS(2178), - [sym_self] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_nil] = ACTIONS(2178), - [sym_id] = ACTIONS(2178), - [sym_instancetype] = ACTIONS(2178), - [sym_Class] = ACTIONS(2178), - [sym_SEL] = ACTIONS(2178), - [sym_IMP] = ACTIONS(2178), - [sym_BOOL] = ACTIONS(2178), - [sym_auto] = ACTIONS(2178), - [anon_sym_ATautoreleasepool] = ACTIONS(2180), - [anon_sym_ATsynchronized] = ACTIONS(2180), - [anon_sym_ATtry] = ACTIONS(2180), - [anon_sym_ATthrow] = ACTIONS(2180), - [anon_sym_ATselector] = ACTIONS(2180), - [anon_sym_ATencode] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2178), - [sym_YES] = ACTIONS(2178), - [sym_NO] = ACTIONS(2178), - [anon_sym___builtin_available] = ACTIONS(2178), - [anon_sym_ATavailable] = ACTIONS(2180), - [anon_sym_va_arg] = ACTIONS(2178), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1577] = { - [sym_identifier] = ACTIONS(2182), - [aux_sym_preproc_include_token1] = ACTIONS(2184), - [aux_sym_preproc_def_token1] = ACTIONS(2184), - [aux_sym_preproc_if_token1] = ACTIONS(2182), - [aux_sym_preproc_if_token2] = ACTIONS(2182), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2182), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2182), - [anon_sym_LPAREN2] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_CARET] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2184), - [anon_sym_SEMI] = ACTIONS(2184), - [anon_sym_typedef] = ACTIONS(2182), - [anon_sym_extern] = ACTIONS(2182), - [anon_sym___attribute] = ACTIONS(2182), - [anon_sym___attribute__] = ACTIONS(2182), - [anon_sym___declspec] = ACTIONS(2182), - [anon_sym___cdecl] = ACTIONS(2182), - [anon_sym___clrcall] = ACTIONS(2182), - [anon_sym___stdcall] = ACTIONS(2182), - [anon_sym___fastcall] = ACTIONS(2182), - [anon_sym___thiscall] = ACTIONS(2182), - [anon_sym___vectorcall] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_auto] = ACTIONS(2182), - [anon_sym_register] = ACTIONS(2182), - [anon_sym_inline] = ACTIONS(2182), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_volatile] = ACTIONS(2182), - [anon_sym_restrict] = ACTIONS(2182), - [anon_sym__Atomic] = ACTIONS(2182), - [anon_sym_in] = ACTIONS(2182), - [anon_sym_out] = ACTIONS(2182), - [anon_sym_inout] = ACTIONS(2182), - [anon_sym_bycopy] = ACTIONS(2182), - [anon_sym_byref] = ACTIONS(2182), - [anon_sym_oneway] = ACTIONS(2182), - [anon_sym__Nullable] = ACTIONS(2182), - [anon_sym__Nonnull] = ACTIONS(2182), - [anon_sym__Nullable_result] = ACTIONS(2182), - [anon_sym__Null_unspecified] = ACTIONS(2182), - [anon_sym___autoreleasing] = ACTIONS(2182), - [anon_sym___nullable] = ACTIONS(2182), - [anon_sym___nonnull] = ACTIONS(2182), - [anon_sym___strong] = ACTIONS(2182), - [anon_sym___weak] = ACTIONS(2182), - [anon_sym___bridge] = ACTIONS(2182), - [anon_sym___bridge_transfer] = ACTIONS(2182), - [anon_sym___bridge_retained] = ACTIONS(2182), - [anon_sym___unsafe_unretained] = ACTIONS(2182), - [anon_sym___block] = ACTIONS(2182), - [anon_sym___kindof] = ACTIONS(2182), - [anon_sym___unused] = ACTIONS(2182), - [anon_sym__Complex] = ACTIONS(2182), - [anon_sym___complex] = ACTIONS(2182), - [anon_sym_IBOutlet] = ACTIONS(2182), - [anon_sym_IBInspectable] = ACTIONS(2182), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2182), - [anon_sym_signed] = ACTIONS(2182), - [anon_sym_unsigned] = ACTIONS(2182), - [anon_sym_long] = ACTIONS(2182), - [anon_sym_short] = ACTIONS(2182), - [sym_primitive_type] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), - [anon_sym_NS_ENUM] = ACTIONS(2182), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2182), - [anon_sym_NS_OPTIONS] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(2182), - [anon_sym_union] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_case] = ACTIONS(2182), - [anon_sym_default] = ACTIONS(2182), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_goto] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2184), - [anon_sym_sizeof] = ACTIONS(2182), - [sym_number_literal] = ACTIONS(2184), - [anon_sym_L_SQUOTE] = ACTIONS(2184), - [anon_sym_u_SQUOTE] = ACTIONS(2184), - [anon_sym_U_SQUOTE] = ACTIONS(2184), - [anon_sym_u8_SQUOTE] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_L_DQUOTE] = ACTIONS(2184), - [anon_sym_u_DQUOTE] = ACTIONS(2184), - [anon_sym_U_DQUOTE] = ACTIONS(2184), - [anon_sym_u8_DQUOTE] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2184), - [anon_sym_ATimport] = ACTIONS(2184), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2182), - [anon_sym_ATcompatibility_alias] = ACTIONS(2184), - [anon_sym_ATprotocol] = ACTIONS(2184), - [anon_sym_ATclass] = ACTIONS(2184), - [anon_sym_ATinterface] = ACTIONS(2184), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2182), - [sym_method_attribute_specifier] = ACTIONS(2182), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2182), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2182), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2182), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2182), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2182), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2182), - [anon_sym_NS_AVAILABLE] = ACTIONS(2182), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2182), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2182), - [anon_sym_API_AVAILABLE] = ACTIONS(2182), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2182), - [anon_sym_API_DEPRECATED] = ACTIONS(2182), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2182), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2182), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2182), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2182), - [anon_sym___deprecated_msg] = ACTIONS(2182), - [anon_sym___deprecated_enum_msg] = ACTIONS(2182), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2182), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2182), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2182), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2182), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2182), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2182), - [anon_sym_ATimplementation] = ACTIONS(2184), - [anon_sym_typeof] = ACTIONS(2182), - [anon_sym___typeof] = ACTIONS(2182), - [anon_sym___typeof__] = ACTIONS(2182), - [sym_self] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_nil] = ACTIONS(2182), - [sym_id] = ACTIONS(2182), - [sym_instancetype] = ACTIONS(2182), - [sym_Class] = ACTIONS(2182), - [sym_SEL] = ACTIONS(2182), - [sym_IMP] = ACTIONS(2182), - [sym_BOOL] = ACTIONS(2182), - [sym_auto] = ACTIONS(2182), - [anon_sym_ATautoreleasepool] = ACTIONS(2184), - [anon_sym_ATsynchronized] = ACTIONS(2184), - [anon_sym_ATtry] = ACTIONS(2184), - [anon_sym_ATthrow] = ACTIONS(2184), - [anon_sym_ATselector] = ACTIONS(2184), - [anon_sym_ATencode] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2182), - [sym_YES] = ACTIONS(2182), - [sym_NO] = ACTIONS(2182), - [anon_sym___builtin_available] = ACTIONS(2182), - [anon_sym_ATavailable] = ACTIONS(2184), - [anon_sym_va_arg] = ACTIONS(2182), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1578] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1579] = { - [sym_identifier] = ACTIONS(1742), - [aux_sym_preproc_include_token1] = ACTIONS(1744), - [aux_sym_preproc_def_token1] = ACTIONS(1744), - [aux_sym_preproc_if_token1] = ACTIONS(1742), - [aux_sym_preproc_if_token2] = ACTIONS(1742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1742), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1742), - [anon_sym_LPAREN2] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_TILDE] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_PLUS] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_CARET] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_typedef] = ACTIONS(1742), - [anon_sym_extern] = ACTIONS(1742), - [anon_sym___attribute] = ACTIONS(1742), - [anon_sym___attribute__] = ACTIONS(1742), - [anon_sym___declspec] = ACTIONS(1742), - [anon_sym___cdecl] = ACTIONS(1742), - [anon_sym___clrcall] = ACTIONS(1742), - [anon_sym___stdcall] = ACTIONS(1742), - [anon_sym___fastcall] = ACTIONS(1742), - [anon_sym___thiscall] = ACTIONS(1742), - [anon_sym___vectorcall] = ACTIONS(1742), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1744), - [anon_sym_static] = ACTIONS(1742), - [anon_sym_auto] = ACTIONS(1742), - [anon_sym_register] = ACTIONS(1742), - [anon_sym_inline] = ACTIONS(1742), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1742), - [anon_sym_const] = ACTIONS(1742), - [anon_sym_volatile] = ACTIONS(1742), - [anon_sym_restrict] = ACTIONS(1742), - [anon_sym__Atomic] = ACTIONS(1742), - [anon_sym_in] = ACTIONS(1742), - [anon_sym_out] = ACTIONS(1742), - [anon_sym_inout] = ACTIONS(1742), - [anon_sym_bycopy] = ACTIONS(1742), - [anon_sym_byref] = ACTIONS(1742), - [anon_sym_oneway] = ACTIONS(1742), - [anon_sym__Nullable] = ACTIONS(1742), - [anon_sym__Nonnull] = ACTIONS(1742), - [anon_sym__Nullable_result] = ACTIONS(1742), - [anon_sym__Null_unspecified] = ACTIONS(1742), - [anon_sym___autoreleasing] = ACTIONS(1742), - [anon_sym___nullable] = ACTIONS(1742), - [anon_sym___nonnull] = ACTIONS(1742), - [anon_sym___strong] = ACTIONS(1742), - [anon_sym___weak] = ACTIONS(1742), - [anon_sym___bridge] = ACTIONS(1742), - [anon_sym___bridge_transfer] = ACTIONS(1742), - [anon_sym___bridge_retained] = ACTIONS(1742), - [anon_sym___unsafe_unretained] = ACTIONS(1742), - [anon_sym___block] = ACTIONS(1742), - [anon_sym___kindof] = ACTIONS(1742), - [anon_sym___unused] = ACTIONS(1742), - [anon_sym__Complex] = ACTIONS(1742), - [anon_sym___complex] = ACTIONS(1742), - [anon_sym_IBOutlet] = ACTIONS(1742), - [anon_sym_IBInspectable] = ACTIONS(1742), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1742), - [anon_sym_signed] = ACTIONS(1742), - [anon_sym_unsigned] = ACTIONS(1742), - [anon_sym_long] = ACTIONS(1742), - [anon_sym_short] = ACTIONS(1742), - [sym_primitive_type] = ACTIONS(1742), - [anon_sym_enum] = ACTIONS(1742), - [anon_sym_NS_ENUM] = ACTIONS(1742), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1742), - [anon_sym_NS_OPTIONS] = ACTIONS(1742), - [anon_sym_struct] = ACTIONS(1742), - [anon_sym_union] = ACTIONS(1742), - [anon_sym_if] = ACTIONS(1742), - [anon_sym_switch] = ACTIONS(1742), - [anon_sym_case] = ACTIONS(1742), - [anon_sym_default] = ACTIONS(1742), - [anon_sym_while] = ACTIONS(1742), - [anon_sym_do] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(1742), - [anon_sym_return] = ACTIONS(1742), - [anon_sym_break] = ACTIONS(1742), - [anon_sym_continue] = ACTIONS(1742), - [anon_sym_goto] = ACTIONS(1742), - [anon_sym_DASH_DASH] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1744), - [anon_sym_sizeof] = ACTIONS(1742), - [sym_number_literal] = ACTIONS(1744), - [anon_sym_L_SQUOTE] = ACTIONS(1744), - [anon_sym_u_SQUOTE] = ACTIONS(1744), - [anon_sym_U_SQUOTE] = ACTIONS(1744), - [anon_sym_u8_SQUOTE] = ACTIONS(1744), - [anon_sym_SQUOTE] = ACTIONS(1744), - [anon_sym_L_DQUOTE] = ACTIONS(1744), - [anon_sym_u_DQUOTE] = ACTIONS(1744), - [anon_sym_U_DQUOTE] = ACTIONS(1744), - [anon_sym_u8_DQUOTE] = ACTIONS(1744), - [anon_sym_DQUOTE] = ACTIONS(1744), - [sym_true] = ACTIONS(1742), - [sym_false] = ACTIONS(1742), - [sym_null] = ACTIONS(1742), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1744), - [anon_sym_ATimport] = ACTIONS(1744), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1742), - [anon_sym_ATcompatibility_alias] = ACTIONS(1744), - [anon_sym_ATprotocol] = ACTIONS(1744), - [anon_sym_ATclass] = ACTIONS(1744), - [anon_sym_ATinterface] = ACTIONS(1744), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1742), - [sym_method_attribute_specifier] = ACTIONS(1742), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1742), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1742), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1742), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1742), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1742), - [anon_sym_NS_AVAILABLE] = ACTIONS(1742), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1742), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_API_AVAILABLE] = ACTIONS(1742), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_API_DEPRECATED] = ACTIONS(1742), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1742), - [anon_sym___deprecated_msg] = ACTIONS(1742), - [anon_sym___deprecated_enum_msg] = ACTIONS(1742), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1742), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1742), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1742), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1742), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1742), - [anon_sym_ATimplementation] = ACTIONS(1744), - [anon_sym_typeof] = ACTIONS(1742), - [anon_sym___typeof] = ACTIONS(1742), - [anon_sym___typeof__] = ACTIONS(1742), - [sym_self] = ACTIONS(1742), - [sym_super] = ACTIONS(1742), - [sym_nil] = ACTIONS(1742), - [sym_id] = ACTIONS(1742), - [sym_instancetype] = ACTIONS(1742), - [sym_Class] = ACTIONS(1742), - [sym_SEL] = ACTIONS(1742), - [sym_IMP] = ACTIONS(1742), - [sym_BOOL] = ACTIONS(1742), - [sym_auto] = ACTIONS(1742), - [anon_sym_ATautoreleasepool] = ACTIONS(1744), - [anon_sym_ATsynchronized] = ACTIONS(1744), - [anon_sym_ATtry] = ACTIONS(1744), - [anon_sym_ATthrow] = ACTIONS(1744), - [anon_sym_ATselector] = ACTIONS(1744), - [anon_sym_ATencode] = ACTIONS(1744), - [anon_sym_AT] = ACTIONS(1742), - [sym_YES] = ACTIONS(1742), - [sym_NO] = ACTIONS(1742), - [anon_sym___builtin_available] = ACTIONS(1742), - [anon_sym_ATavailable] = ACTIONS(1744), - [anon_sym_va_arg] = ACTIONS(1742), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1580] = { - [sym_identifier] = ACTIONS(1738), - [aux_sym_preproc_include_token1] = ACTIONS(1740), - [aux_sym_preproc_def_token1] = ACTIONS(1740), - [aux_sym_preproc_if_token1] = ACTIONS(1738), - [aux_sym_preproc_if_token2] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym___attribute] = ACTIONS(1738), - [anon_sym___attribute__] = ACTIONS(1738), - [anon_sym___declspec] = ACTIONS(1738), - [anon_sym___cdecl] = ACTIONS(1738), - [anon_sym___clrcall] = ACTIONS(1738), - [anon_sym___stdcall] = ACTIONS(1738), - [anon_sym___fastcall] = ACTIONS(1738), - [anon_sym___thiscall] = ACTIONS(1738), - [anon_sym___vectorcall] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_auto] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_inline] = ACTIONS(1738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_volatile] = ACTIONS(1738), - [anon_sym_restrict] = ACTIONS(1738), - [anon_sym__Atomic] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_out] = ACTIONS(1738), - [anon_sym_inout] = ACTIONS(1738), - [anon_sym_bycopy] = ACTIONS(1738), - [anon_sym_byref] = ACTIONS(1738), - [anon_sym_oneway] = ACTIONS(1738), - [anon_sym__Nullable] = ACTIONS(1738), - [anon_sym__Nonnull] = ACTIONS(1738), - [anon_sym__Nullable_result] = ACTIONS(1738), - [anon_sym__Null_unspecified] = ACTIONS(1738), - [anon_sym___autoreleasing] = ACTIONS(1738), - [anon_sym___nullable] = ACTIONS(1738), - [anon_sym___nonnull] = ACTIONS(1738), - [anon_sym___strong] = ACTIONS(1738), - [anon_sym___weak] = ACTIONS(1738), - [anon_sym___bridge] = ACTIONS(1738), - [anon_sym___bridge_transfer] = ACTIONS(1738), - [anon_sym___bridge_retained] = ACTIONS(1738), - [anon_sym___unsafe_unretained] = ACTIONS(1738), - [anon_sym___block] = ACTIONS(1738), - [anon_sym___kindof] = ACTIONS(1738), - [anon_sym___unused] = ACTIONS(1738), - [anon_sym__Complex] = ACTIONS(1738), - [anon_sym___complex] = ACTIONS(1738), - [anon_sym_IBOutlet] = ACTIONS(1738), - [anon_sym_IBInspectable] = ACTIONS(1738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1738), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [sym_primitive_type] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_NS_ENUM] = ACTIONS(1738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1738), - [anon_sym_NS_OPTIONS] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_goto] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1740), - [anon_sym_sizeof] = ACTIONS(1738), - [sym_number_literal] = ACTIONS(1740), - [anon_sym_L_SQUOTE] = ACTIONS(1740), - [anon_sym_u_SQUOTE] = ACTIONS(1740), - [anon_sym_U_SQUOTE] = ACTIONS(1740), - [anon_sym_u8_SQUOTE] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_L_DQUOTE] = ACTIONS(1740), - [anon_sym_u_DQUOTE] = ACTIONS(1740), - [anon_sym_U_DQUOTE] = ACTIONS(1740), - [anon_sym_u8_DQUOTE] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym_true] = ACTIONS(1738), - [sym_false] = ACTIONS(1738), - [sym_null] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1740), - [anon_sym_ATimport] = ACTIONS(1740), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1738), - [anon_sym_ATcompatibility_alias] = ACTIONS(1740), - [anon_sym_ATprotocol] = ACTIONS(1740), - [anon_sym_ATclass] = ACTIONS(1740), - [anon_sym_ATinterface] = ACTIONS(1740), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1738), - [sym_method_attribute_specifier] = ACTIONS(1738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE] = ACTIONS(1738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_API_AVAILABLE] = ACTIONS(1738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_API_DEPRECATED] = ACTIONS(1738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1738), - [anon_sym___deprecated_msg] = ACTIONS(1738), - [anon_sym___deprecated_enum_msg] = ACTIONS(1738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1738), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1738), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1738), - [anon_sym_ATimplementation] = ACTIONS(1740), - [anon_sym_typeof] = ACTIONS(1738), - [anon_sym___typeof] = ACTIONS(1738), - [anon_sym___typeof__] = ACTIONS(1738), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_nil] = ACTIONS(1738), - [sym_id] = ACTIONS(1738), - [sym_instancetype] = ACTIONS(1738), - [sym_Class] = ACTIONS(1738), - [sym_SEL] = ACTIONS(1738), - [sym_IMP] = ACTIONS(1738), - [sym_BOOL] = ACTIONS(1738), - [sym_auto] = ACTIONS(1738), - [anon_sym_ATautoreleasepool] = ACTIONS(1740), - [anon_sym_ATsynchronized] = ACTIONS(1740), - [anon_sym_ATtry] = ACTIONS(1740), - [anon_sym_ATthrow] = ACTIONS(1740), - [anon_sym_ATselector] = ACTIONS(1740), - [anon_sym_ATencode] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1738), - [sym_YES] = ACTIONS(1738), - [sym_NO] = ACTIONS(1738), - [anon_sym___builtin_available] = ACTIONS(1738), - [anon_sym_ATavailable] = ACTIONS(1740), - [anon_sym_va_arg] = ACTIONS(1738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1581] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1582] = { - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_include_token1] = ACTIONS(1948), - [aux_sym_preproc_def_token1] = ACTIONS(1948), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym___cdecl] = ACTIONS(1946), - [anon_sym___clrcall] = ACTIONS(1946), - [anon_sym___stdcall] = ACTIONS(1946), - [anon_sym___fastcall] = ACTIONS(1946), - [anon_sym___thiscall] = ACTIONS(1946), - [anon_sym___vectorcall] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_out] = ACTIONS(1946), - [anon_sym_inout] = ACTIONS(1946), - [anon_sym_bycopy] = ACTIONS(1946), - [anon_sym_byref] = ACTIONS(1946), - [anon_sym_oneway] = ACTIONS(1946), - [anon_sym__Nullable] = ACTIONS(1946), - [anon_sym__Nonnull] = ACTIONS(1946), - [anon_sym__Nullable_result] = ACTIONS(1946), - [anon_sym__Null_unspecified] = ACTIONS(1946), - [anon_sym___autoreleasing] = ACTIONS(1946), - [anon_sym___nullable] = ACTIONS(1946), - [anon_sym___nonnull] = ACTIONS(1946), - [anon_sym___strong] = ACTIONS(1946), - [anon_sym___weak] = ACTIONS(1946), - [anon_sym___bridge] = ACTIONS(1946), - [anon_sym___bridge_transfer] = ACTIONS(1946), - [anon_sym___bridge_retained] = ACTIONS(1946), - [anon_sym___unsafe_unretained] = ACTIONS(1946), - [anon_sym___block] = ACTIONS(1946), - [anon_sym___kindof] = ACTIONS(1946), - [anon_sym___unused] = ACTIONS(1946), - [anon_sym__Complex] = ACTIONS(1946), - [anon_sym___complex] = ACTIONS(1946), - [anon_sym_IBOutlet] = ACTIONS(1946), - [anon_sym_IBInspectable] = ACTIONS(1946), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1946), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_NS_ENUM] = ACTIONS(1946), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1946), - [anon_sym_NS_OPTIONS] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_goto] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1948), - [anon_sym_sizeof] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(1948), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1948), - [anon_sym_u_DQUOTE] = ACTIONS(1948), - [anon_sym_U_DQUOTE] = ACTIONS(1948), - [anon_sym_u8_DQUOTE] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym_true] = ACTIONS(1946), - [sym_false] = ACTIONS(1946), - [sym_null] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1948), - [anon_sym_ATimport] = ACTIONS(1948), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1946), - [anon_sym_ATcompatibility_alias] = ACTIONS(1948), - [anon_sym_ATprotocol] = ACTIONS(1948), - [anon_sym_ATclass] = ACTIONS(1948), - [anon_sym_ATinterface] = ACTIONS(1948), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1946), - [sym_method_attribute_specifier] = ACTIONS(1946), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1946), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE] = ACTIONS(1946), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_API_AVAILABLE] = ACTIONS(1946), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_API_DEPRECATED] = ACTIONS(1946), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1946), - [anon_sym___deprecated_msg] = ACTIONS(1946), - [anon_sym___deprecated_enum_msg] = ACTIONS(1946), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1946), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1946), - [anon_sym_ATimplementation] = ACTIONS(1948), - [anon_sym_typeof] = ACTIONS(1946), - [anon_sym___typeof] = ACTIONS(1946), - [anon_sym___typeof__] = ACTIONS(1946), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_nil] = ACTIONS(1946), - [sym_id] = ACTIONS(1946), - [sym_instancetype] = ACTIONS(1946), - [sym_Class] = ACTIONS(1946), - [sym_SEL] = ACTIONS(1946), - [sym_IMP] = ACTIONS(1946), - [sym_BOOL] = ACTIONS(1946), - [sym_auto] = ACTIONS(1946), - [anon_sym_ATautoreleasepool] = ACTIONS(1948), - [anon_sym_ATsynchronized] = ACTIONS(1948), - [anon_sym_ATtry] = ACTIONS(1948), - [anon_sym_ATthrow] = ACTIONS(1948), - [anon_sym_ATselector] = ACTIONS(1948), - [anon_sym_ATencode] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [sym_YES] = ACTIONS(1946), - [sym_NO] = ACTIONS(1946), - [anon_sym___builtin_available] = ACTIONS(1946), - [anon_sym_ATavailable] = ACTIONS(1948), - [anon_sym_va_arg] = ACTIONS(1946), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1583] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1584] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1585] = { - [sym_identifier] = ACTIONS(2178), - [aux_sym_preproc_include_token1] = ACTIONS(2180), - [aux_sym_preproc_def_token1] = ACTIONS(2180), - [aux_sym_preproc_if_token1] = ACTIONS(2178), - [aux_sym_preproc_if_token2] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), - [anon_sym_LPAREN2] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_typedef] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym___attribute] = ACTIONS(2178), - [anon_sym___attribute__] = ACTIONS(2178), - [anon_sym___declspec] = ACTIONS(2178), - [anon_sym___cdecl] = ACTIONS(2178), - [anon_sym___clrcall] = ACTIONS(2178), - [anon_sym___stdcall] = ACTIONS(2178), - [anon_sym___fastcall] = ACTIONS(2178), - [anon_sym___thiscall] = ACTIONS(2178), - [anon_sym___vectorcall] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_auto] = ACTIONS(2178), - [anon_sym_register] = ACTIONS(2178), - [anon_sym_inline] = ACTIONS(2178), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_volatile] = ACTIONS(2178), - [anon_sym_restrict] = ACTIONS(2178), - [anon_sym__Atomic] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_out] = ACTIONS(2178), - [anon_sym_inout] = ACTIONS(2178), - [anon_sym_bycopy] = ACTIONS(2178), - [anon_sym_byref] = ACTIONS(2178), - [anon_sym_oneway] = ACTIONS(2178), - [anon_sym__Nullable] = ACTIONS(2178), - [anon_sym__Nonnull] = ACTIONS(2178), - [anon_sym__Nullable_result] = ACTIONS(2178), - [anon_sym__Null_unspecified] = ACTIONS(2178), - [anon_sym___autoreleasing] = ACTIONS(2178), - [anon_sym___nullable] = ACTIONS(2178), - [anon_sym___nonnull] = ACTIONS(2178), - [anon_sym___strong] = ACTIONS(2178), - [anon_sym___weak] = ACTIONS(2178), - [anon_sym___bridge] = ACTIONS(2178), - [anon_sym___bridge_transfer] = ACTIONS(2178), - [anon_sym___bridge_retained] = ACTIONS(2178), - [anon_sym___unsafe_unretained] = ACTIONS(2178), - [anon_sym___block] = ACTIONS(2178), - [anon_sym___kindof] = ACTIONS(2178), - [anon_sym___unused] = ACTIONS(2178), - [anon_sym__Complex] = ACTIONS(2178), - [anon_sym___complex] = ACTIONS(2178), - [anon_sym_IBOutlet] = ACTIONS(2178), - [anon_sym_IBInspectable] = ACTIONS(2178), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2178), - [anon_sym_signed] = ACTIONS(2178), - [anon_sym_unsigned] = ACTIONS(2178), - [anon_sym_long] = ACTIONS(2178), - [anon_sym_short] = ACTIONS(2178), - [sym_primitive_type] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_NS_ENUM] = ACTIONS(2178), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2178), - [anon_sym_NS_OPTIONS] = ACTIONS(2178), - [anon_sym_struct] = ACTIONS(2178), - [anon_sym_union] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_goto] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(2180), - [anon_sym_sizeof] = ACTIONS(2178), - [sym_number_literal] = ACTIONS(2180), - [anon_sym_L_SQUOTE] = ACTIONS(2180), - [anon_sym_u_SQUOTE] = ACTIONS(2180), - [anon_sym_U_SQUOTE] = ACTIONS(2180), - [anon_sym_u8_SQUOTE] = ACTIONS(2180), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_L_DQUOTE] = ACTIONS(2180), - [anon_sym_u_DQUOTE] = ACTIONS(2180), - [anon_sym_U_DQUOTE] = ACTIONS(2180), - [anon_sym_u8_DQUOTE] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2180), - [anon_sym_ATimport] = ACTIONS(2180), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2178), - [anon_sym_ATcompatibility_alias] = ACTIONS(2180), - [anon_sym_ATprotocol] = ACTIONS(2180), - [anon_sym_ATclass] = ACTIONS(2180), - [anon_sym_ATinterface] = ACTIONS(2180), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2178), - [sym_method_attribute_specifier] = ACTIONS(2178), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2178), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE] = ACTIONS(2178), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_API_AVAILABLE] = ACTIONS(2178), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_API_DEPRECATED] = ACTIONS(2178), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2178), - [anon_sym___deprecated_msg] = ACTIONS(2178), - [anon_sym___deprecated_enum_msg] = ACTIONS(2178), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2178), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2178), - [anon_sym_ATimplementation] = ACTIONS(2180), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym___typeof] = ACTIONS(2178), - [anon_sym___typeof__] = ACTIONS(2178), - [sym_self] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_nil] = ACTIONS(2178), - [sym_id] = ACTIONS(2178), - [sym_instancetype] = ACTIONS(2178), - [sym_Class] = ACTIONS(2178), - [sym_SEL] = ACTIONS(2178), - [sym_IMP] = ACTIONS(2178), - [sym_BOOL] = ACTIONS(2178), - [sym_auto] = ACTIONS(2178), - [anon_sym_ATautoreleasepool] = ACTIONS(2180), - [anon_sym_ATsynchronized] = ACTIONS(2180), - [anon_sym_ATtry] = ACTIONS(2180), - [anon_sym_ATthrow] = ACTIONS(2180), - [anon_sym_ATselector] = ACTIONS(2180), - [anon_sym_ATencode] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2178), - [sym_YES] = ACTIONS(2178), - [sym_NO] = ACTIONS(2178), - [anon_sym___builtin_available] = ACTIONS(2178), - [anon_sym_ATavailable] = ACTIONS(2180), - [anon_sym_va_arg] = ACTIONS(2178), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1586] = { - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_include_token1] = ACTIONS(1948), - [aux_sym_preproc_def_token1] = ACTIONS(1948), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym___cdecl] = ACTIONS(1946), - [anon_sym___clrcall] = ACTIONS(1946), - [anon_sym___stdcall] = ACTIONS(1946), - [anon_sym___fastcall] = ACTIONS(1946), - [anon_sym___thiscall] = ACTIONS(1946), - [anon_sym___vectorcall] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_out] = ACTIONS(1946), - [anon_sym_inout] = ACTIONS(1946), - [anon_sym_bycopy] = ACTIONS(1946), - [anon_sym_byref] = ACTIONS(1946), - [anon_sym_oneway] = ACTIONS(1946), - [anon_sym__Nullable] = ACTIONS(1946), - [anon_sym__Nonnull] = ACTIONS(1946), - [anon_sym__Nullable_result] = ACTIONS(1946), - [anon_sym__Null_unspecified] = ACTIONS(1946), - [anon_sym___autoreleasing] = ACTIONS(1946), - [anon_sym___nullable] = ACTIONS(1946), - [anon_sym___nonnull] = ACTIONS(1946), - [anon_sym___strong] = ACTIONS(1946), - [anon_sym___weak] = ACTIONS(1946), - [anon_sym___bridge] = ACTIONS(1946), - [anon_sym___bridge_transfer] = ACTIONS(1946), - [anon_sym___bridge_retained] = ACTIONS(1946), - [anon_sym___unsafe_unretained] = ACTIONS(1946), - [anon_sym___block] = ACTIONS(1946), - [anon_sym___kindof] = ACTIONS(1946), - [anon_sym___unused] = ACTIONS(1946), - [anon_sym__Complex] = ACTIONS(1946), - [anon_sym___complex] = ACTIONS(1946), - [anon_sym_IBOutlet] = ACTIONS(1946), - [anon_sym_IBInspectable] = ACTIONS(1946), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1946), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_NS_ENUM] = ACTIONS(1946), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1946), - [anon_sym_NS_OPTIONS] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_goto] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1948), - [anon_sym_sizeof] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(1948), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1948), - [anon_sym_u_DQUOTE] = ACTIONS(1948), - [anon_sym_U_DQUOTE] = ACTIONS(1948), - [anon_sym_u8_DQUOTE] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym_true] = ACTIONS(1946), - [sym_false] = ACTIONS(1946), - [sym_null] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1948), - [anon_sym_ATimport] = ACTIONS(1948), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1946), - [anon_sym_ATcompatibility_alias] = ACTIONS(1948), - [anon_sym_ATprotocol] = ACTIONS(1948), - [anon_sym_ATclass] = ACTIONS(1948), - [anon_sym_ATinterface] = ACTIONS(1948), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1946), - [sym_method_attribute_specifier] = ACTIONS(1946), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1946), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE] = ACTIONS(1946), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_API_AVAILABLE] = ACTIONS(1946), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_API_DEPRECATED] = ACTIONS(1946), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1946), - [anon_sym___deprecated_msg] = ACTIONS(1946), - [anon_sym___deprecated_enum_msg] = ACTIONS(1946), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1946), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1946), - [anon_sym_ATimplementation] = ACTIONS(1948), - [anon_sym_typeof] = ACTIONS(1946), - [anon_sym___typeof] = ACTIONS(1946), - [anon_sym___typeof__] = ACTIONS(1946), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_nil] = ACTIONS(1946), - [sym_id] = ACTIONS(1946), - [sym_instancetype] = ACTIONS(1946), - [sym_Class] = ACTIONS(1946), - [sym_SEL] = ACTIONS(1946), - [sym_IMP] = ACTIONS(1946), - [sym_BOOL] = ACTIONS(1946), - [sym_auto] = ACTIONS(1946), - [anon_sym_ATautoreleasepool] = ACTIONS(1948), - [anon_sym_ATsynchronized] = ACTIONS(1948), - [anon_sym_ATtry] = ACTIONS(1948), - [anon_sym_ATthrow] = ACTIONS(1948), - [anon_sym_ATselector] = ACTIONS(1948), - [anon_sym_ATencode] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [sym_YES] = ACTIONS(1946), - [sym_NO] = ACTIONS(1946), - [anon_sym___builtin_available] = ACTIONS(1946), - [anon_sym_ATavailable] = ACTIONS(1948), - [anon_sym_va_arg] = ACTIONS(1946), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1587] = { - [sym_identifier] = ACTIONS(1734), - [aux_sym_preproc_include_token1] = ACTIONS(1736), - [aux_sym_preproc_def_token1] = ACTIONS(1736), - [aux_sym_preproc_if_token1] = ACTIONS(1734), - [aux_sym_preproc_if_token2] = ACTIONS(1734), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1734), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1734), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_CARET] = ACTIONS(1736), - [anon_sym_AMP] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_typedef] = ACTIONS(1734), - [anon_sym_extern] = ACTIONS(1734), - [anon_sym___attribute] = ACTIONS(1734), - [anon_sym___attribute__] = ACTIONS(1734), - [anon_sym___declspec] = ACTIONS(1734), - [anon_sym___cdecl] = ACTIONS(1734), - [anon_sym___clrcall] = ACTIONS(1734), - [anon_sym___stdcall] = ACTIONS(1734), - [anon_sym___fastcall] = ACTIONS(1734), - [anon_sym___thiscall] = ACTIONS(1734), - [anon_sym___vectorcall] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_static] = ACTIONS(1734), - [anon_sym_auto] = ACTIONS(1734), - [anon_sym_register] = ACTIONS(1734), - [anon_sym_inline] = ACTIONS(1734), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1734), - [anon_sym_const] = ACTIONS(1734), - [anon_sym_volatile] = ACTIONS(1734), - [anon_sym_restrict] = ACTIONS(1734), - [anon_sym__Atomic] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_out] = ACTIONS(1734), - [anon_sym_inout] = ACTIONS(1734), - [anon_sym_bycopy] = ACTIONS(1734), - [anon_sym_byref] = ACTIONS(1734), - [anon_sym_oneway] = ACTIONS(1734), - [anon_sym__Nullable] = ACTIONS(1734), - [anon_sym__Nonnull] = ACTIONS(1734), - [anon_sym__Nullable_result] = ACTIONS(1734), - [anon_sym__Null_unspecified] = ACTIONS(1734), - [anon_sym___autoreleasing] = ACTIONS(1734), - [anon_sym___nullable] = ACTIONS(1734), - [anon_sym___nonnull] = ACTIONS(1734), - [anon_sym___strong] = ACTIONS(1734), - [anon_sym___weak] = ACTIONS(1734), - [anon_sym___bridge] = ACTIONS(1734), - [anon_sym___bridge_transfer] = ACTIONS(1734), - [anon_sym___bridge_retained] = ACTIONS(1734), - [anon_sym___unsafe_unretained] = ACTIONS(1734), - [anon_sym___block] = ACTIONS(1734), - [anon_sym___kindof] = ACTIONS(1734), - [anon_sym___unused] = ACTIONS(1734), - [anon_sym__Complex] = ACTIONS(1734), - [anon_sym___complex] = ACTIONS(1734), - [anon_sym_IBOutlet] = ACTIONS(1734), - [anon_sym_IBInspectable] = ACTIONS(1734), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1734), - [anon_sym_signed] = ACTIONS(1734), - [anon_sym_unsigned] = ACTIONS(1734), - [anon_sym_long] = ACTIONS(1734), - [anon_sym_short] = ACTIONS(1734), - [sym_primitive_type] = ACTIONS(1734), - [anon_sym_enum] = ACTIONS(1734), - [anon_sym_NS_ENUM] = ACTIONS(1734), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1734), - [anon_sym_NS_OPTIONS] = ACTIONS(1734), - [anon_sym_struct] = ACTIONS(1734), - [anon_sym_union] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_switch] = ACTIONS(1734), - [anon_sym_case] = ACTIONS(1734), - [anon_sym_default] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_do] = ACTIONS(1734), - [anon_sym_for] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_goto] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_sizeof] = ACTIONS(1734), - [sym_number_literal] = ACTIONS(1736), - [anon_sym_L_SQUOTE] = ACTIONS(1736), - [anon_sym_u_SQUOTE] = ACTIONS(1736), - [anon_sym_U_SQUOTE] = ACTIONS(1736), - [anon_sym_u8_SQUOTE] = ACTIONS(1736), - [anon_sym_SQUOTE] = ACTIONS(1736), - [anon_sym_L_DQUOTE] = ACTIONS(1736), - [anon_sym_u_DQUOTE] = ACTIONS(1736), - [anon_sym_U_DQUOTE] = ACTIONS(1736), - [anon_sym_u8_DQUOTE] = ACTIONS(1736), - [anon_sym_DQUOTE] = ACTIONS(1736), - [sym_true] = ACTIONS(1734), - [sym_false] = ACTIONS(1734), - [sym_null] = ACTIONS(1734), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1736), - [anon_sym_ATimport] = ACTIONS(1736), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1734), - [anon_sym_ATcompatibility_alias] = ACTIONS(1736), - [anon_sym_ATprotocol] = ACTIONS(1736), - [anon_sym_ATclass] = ACTIONS(1736), - [anon_sym_ATinterface] = ACTIONS(1736), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1734), - [sym_method_attribute_specifier] = ACTIONS(1734), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1734), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1734), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1734), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1734), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1734), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1734), - [anon_sym_NS_AVAILABLE] = ACTIONS(1734), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1734), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1734), - [anon_sym_API_AVAILABLE] = ACTIONS(1734), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1734), - [anon_sym_API_DEPRECATED] = ACTIONS(1734), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1734), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1734), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1734), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1734), - [anon_sym___deprecated_msg] = ACTIONS(1734), - [anon_sym___deprecated_enum_msg] = ACTIONS(1734), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1734), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1734), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1734), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1734), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1734), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1734), - [anon_sym_ATimplementation] = ACTIONS(1736), - [anon_sym_typeof] = ACTIONS(1734), - [anon_sym___typeof] = ACTIONS(1734), - [anon_sym___typeof__] = ACTIONS(1734), - [sym_self] = ACTIONS(1734), - [sym_super] = ACTIONS(1734), - [sym_nil] = ACTIONS(1734), - [sym_id] = ACTIONS(1734), - [sym_instancetype] = ACTIONS(1734), - [sym_Class] = ACTIONS(1734), - [sym_SEL] = ACTIONS(1734), - [sym_IMP] = ACTIONS(1734), - [sym_BOOL] = ACTIONS(1734), - [sym_auto] = ACTIONS(1734), - [anon_sym_ATautoreleasepool] = ACTIONS(1736), - [anon_sym_ATsynchronized] = ACTIONS(1736), - [anon_sym_ATtry] = ACTIONS(1736), - [anon_sym_ATthrow] = ACTIONS(1736), - [anon_sym_ATselector] = ACTIONS(1736), - [anon_sym_ATencode] = ACTIONS(1736), - [anon_sym_AT] = ACTIONS(1734), - [sym_YES] = ACTIONS(1734), - [sym_NO] = ACTIONS(1734), - [anon_sym___builtin_available] = ACTIONS(1734), - [anon_sym_ATavailable] = ACTIONS(1736), - [anon_sym_va_arg] = ACTIONS(1734), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1588] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1589] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1590] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1591] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1592] = { - [sym_identifier] = ACTIONS(2178), - [aux_sym_preproc_include_token1] = ACTIONS(2180), - [aux_sym_preproc_def_token1] = ACTIONS(2180), - [aux_sym_preproc_if_token1] = ACTIONS(2178), - [aux_sym_preproc_if_token2] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2178), - [anon_sym_LPAREN2] = ACTIONS(2180), - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2180), - [anon_sym_typedef] = ACTIONS(2178), - [anon_sym_extern] = ACTIONS(2178), - [anon_sym___attribute] = ACTIONS(2178), - [anon_sym___attribute__] = ACTIONS(2178), - [anon_sym___declspec] = ACTIONS(2178), - [anon_sym___cdecl] = ACTIONS(2178), - [anon_sym___clrcall] = ACTIONS(2178), - [anon_sym___stdcall] = ACTIONS(2178), - [anon_sym___fastcall] = ACTIONS(2178), - [anon_sym___thiscall] = ACTIONS(2178), - [anon_sym___vectorcall] = ACTIONS(2178), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2178), - [anon_sym_auto] = ACTIONS(2178), - [anon_sym_register] = ACTIONS(2178), - [anon_sym_inline] = ACTIONS(2178), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2178), - [anon_sym_const] = ACTIONS(2178), - [anon_sym_volatile] = ACTIONS(2178), - [anon_sym_restrict] = ACTIONS(2178), - [anon_sym__Atomic] = ACTIONS(2178), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_out] = ACTIONS(2178), - [anon_sym_inout] = ACTIONS(2178), - [anon_sym_bycopy] = ACTIONS(2178), - [anon_sym_byref] = ACTIONS(2178), - [anon_sym_oneway] = ACTIONS(2178), - [anon_sym__Nullable] = ACTIONS(2178), - [anon_sym__Nonnull] = ACTIONS(2178), - [anon_sym__Nullable_result] = ACTIONS(2178), - [anon_sym__Null_unspecified] = ACTIONS(2178), - [anon_sym___autoreleasing] = ACTIONS(2178), - [anon_sym___nullable] = ACTIONS(2178), - [anon_sym___nonnull] = ACTIONS(2178), - [anon_sym___strong] = ACTIONS(2178), - [anon_sym___weak] = ACTIONS(2178), - [anon_sym___bridge] = ACTIONS(2178), - [anon_sym___bridge_transfer] = ACTIONS(2178), - [anon_sym___bridge_retained] = ACTIONS(2178), - [anon_sym___unsafe_unretained] = ACTIONS(2178), - [anon_sym___block] = ACTIONS(2178), - [anon_sym___kindof] = ACTIONS(2178), - [anon_sym___unused] = ACTIONS(2178), - [anon_sym__Complex] = ACTIONS(2178), - [anon_sym___complex] = ACTIONS(2178), - [anon_sym_IBOutlet] = ACTIONS(2178), - [anon_sym_IBInspectable] = ACTIONS(2178), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2178), - [anon_sym_signed] = ACTIONS(2178), - [anon_sym_unsigned] = ACTIONS(2178), - [anon_sym_long] = ACTIONS(2178), - [anon_sym_short] = ACTIONS(2178), - [sym_primitive_type] = ACTIONS(2178), - [anon_sym_enum] = ACTIONS(2178), - [anon_sym_NS_ENUM] = ACTIONS(2178), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2178), - [anon_sym_NS_OPTIONS] = ACTIONS(2178), - [anon_sym_struct] = ACTIONS(2178), - [anon_sym_union] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2178), - [anon_sym_do] = ACTIONS(2178), - [anon_sym_for] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2178), - [anon_sym_break] = ACTIONS(2178), - [anon_sym_continue] = ACTIONS(2178), - [anon_sym_goto] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(2180), - [anon_sym_sizeof] = ACTIONS(2178), - [sym_number_literal] = ACTIONS(2180), - [anon_sym_L_SQUOTE] = ACTIONS(2180), - [anon_sym_u_SQUOTE] = ACTIONS(2180), - [anon_sym_U_SQUOTE] = ACTIONS(2180), - [anon_sym_u8_SQUOTE] = ACTIONS(2180), - [anon_sym_SQUOTE] = ACTIONS(2180), - [anon_sym_L_DQUOTE] = ACTIONS(2180), - [anon_sym_u_DQUOTE] = ACTIONS(2180), - [anon_sym_U_DQUOTE] = ACTIONS(2180), - [anon_sym_u8_DQUOTE] = ACTIONS(2180), - [anon_sym_DQUOTE] = ACTIONS(2180), - [sym_true] = ACTIONS(2178), - [sym_false] = ACTIONS(2178), - [sym_null] = ACTIONS(2178), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2180), - [anon_sym_ATimport] = ACTIONS(2180), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2178), - [anon_sym_ATcompatibility_alias] = ACTIONS(2180), - [anon_sym_ATprotocol] = ACTIONS(2180), - [anon_sym_ATclass] = ACTIONS(2180), - [anon_sym_ATinterface] = ACTIONS(2180), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2178), - [sym_method_attribute_specifier] = ACTIONS(2178), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2178), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2178), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE] = ACTIONS(2178), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2178), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_API_AVAILABLE] = ACTIONS(2178), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_API_DEPRECATED] = ACTIONS(2178), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2178), - [anon_sym___deprecated_msg] = ACTIONS(2178), - [anon_sym___deprecated_enum_msg] = ACTIONS(2178), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2178), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2178), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2178), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2178), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2178), - [anon_sym_ATimplementation] = ACTIONS(2180), - [anon_sym_typeof] = ACTIONS(2178), - [anon_sym___typeof] = ACTIONS(2178), - [anon_sym___typeof__] = ACTIONS(2178), - [sym_self] = ACTIONS(2178), - [sym_super] = ACTIONS(2178), - [sym_nil] = ACTIONS(2178), - [sym_id] = ACTIONS(2178), - [sym_instancetype] = ACTIONS(2178), - [sym_Class] = ACTIONS(2178), - [sym_SEL] = ACTIONS(2178), - [sym_IMP] = ACTIONS(2178), - [sym_BOOL] = ACTIONS(2178), - [sym_auto] = ACTIONS(2178), - [anon_sym_ATautoreleasepool] = ACTIONS(2180), - [anon_sym_ATsynchronized] = ACTIONS(2180), - [anon_sym_ATtry] = ACTIONS(2180), - [anon_sym_ATthrow] = ACTIONS(2180), - [anon_sym_ATselector] = ACTIONS(2180), - [anon_sym_ATencode] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2178), - [sym_YES] = ACTIONS(2178), - [sym_NO] = ACTIONS(2178), - [anon_sym___builtin_available] = ACTIONS(2178), - [anon_sym_ATavailable] = ACTIONS(2180), - [anon_sym_va_arg] = ACTIONS(2178), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1593] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1594] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1595] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1596] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1597] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1598] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1599] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1600] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1601] = { - [sym_identifier] = ACTIONS(2174), - [aux_sym_preproc_include_token1] = ACTIONS(2176), - [aux_sym_preproc_def_token1] = ACTIONS(2176), - [aux_sym_preproc_if_token1] = ACTIONS(2174), - [aux_sym_preproc_if_token2] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2174), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2174), - [anon_sym_LPAREN2] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_PLUS] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2176), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym___attribute] = ACTIONS(2174), - [anon_sym___attribute__] = ACTIONS(2174), - [anon_sym___declspec] = ACTIONS(2174), - [anon_sym___cdecl] = ACTIONS(2174), - [anon_sym___clrcall] = ACTIONS(2174), - [anon_sym___stdcall] = ACTIONS(2174), - [anon_sym___fastcall] = ACTIONS(2174), - [anon_sym___thiscall] = ACTIONS(2174), - [anon_sym___vectorcall] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_auto] = ACTIONS(2174), - [anon_sym_register] = ACTIONS(2174), - [anon_sym_inline] = ACTIONS(2174), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_volatile] = ACTIONS(2174), - [anon_sym_restrict] = ACTIONS(2174), - [anon_sym__Atomic] = ACTIONS(2174), - [anon_sym_in] = ACTIONS(2174), - [anon_sym_out] = ACTIONS(2174), - [anon_sym_inout] = ACTIONS(2174), - [anon_sym_bycopy] = ACTIONS(2174), - [anon_sym_byref] = ACTIONS(2174), - [anon_sym_oneway] = ACTIONS(2174), - [anon_sym__Nullable] = ACTIONS(2174), - [anon_sym__Nonnull] = ACTIONS(2174), - [anon_sym__Nullable_result] = ACTIONS(2174), - [anon_sym__Null_unspecified] = ACTIONS(2174), - [anon_sym___autoreleasing] = ACTIONS(2174), - [anon_sym___nullable] = ACTIONS(2174), - [anon_sym___nonnull] = ACTIONS(2174), - [anon_sym___strong] = ACTIONS(2174), - [anon_sym___weak] = ACTIONS(2174), - [anon_sym___bridge] = ACTIONS(2174), - [anon_sym___bridge_transfer] = ACTIONS(2174), - [anon_sym___bridge_retained] = ACTIONS(2174), - [anon_sym___unsafe_unretained] = ACTIONS(2174), - [anon_sym___block] = ACTIONS(2174), - [anon_sym___kindof] = ACTIONS(2174), - [anon_sym___unused] = ACTIONS(2174), - [anon_sym__Complex] = ACTIONS(2174), - [anon_sym___complex] = ACTIONS(2174), - [anon_sym_IBOutlet] = ACTIONS(2174), - [anon_sym_IBInspectable] = ACTIONS(2174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2174), - [anon_sym_signed] = ACTIONS(2174), - [anon_sym_unsigned] = ACTIONS(2174), - [anon_sym_long] = ACTIONS(2174), - [anon_sym_short] = ACTIONS(2174), - [sym_primitive_type] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_NS_ENUM] = ACTIONS(2174), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2174), - [anon_sym_NS_OPTIONS] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_do] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_goto] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_sizeof] = ACTIONS(2174), - [sym_number_literal] = ACTIONS(2176), - [anon_sym_L_SQUOTE] = ACTIONS(2176), - [anon_sym_u_SQUOTE] = ACTIONS(2176), - [anon_sym_U_SQUOTE] = ACTIONS(2176), - [anon_sym_u8_SQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_L_DQUOTE] = ACTIONS(2176), - [anon_sym_u_DQUOTE] = ACTIONS(2176), - [anon_sym_U_DQUOTE] = ACTIONS(2176), - [anon_sym_u8_DQUOTE] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym_true] = ACTIONS(2174), - [sym_false] = ACTIONS(2174), - [sym_null] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2176), - [anon_sym_ATimport] = ACTIONS(2176), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2174), - [anon_sym_ATcompatibility_alias] = ACTIONS(2176), - [anon_sym_ATprotocol] = ACTIONS(2176), - [anon_sym_ATclass] = ACTIONS(2176), - [anon_sym_ATinterface] = ACTIONS(2176), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2174), - [sym_method_attribute_specifier] = ACTIONS(2174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE] = ACTIONS(2174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_API_AVAILABLE] = ACTIONS(2174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_API_DEPRECATED] = ACTIONS(2174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2174), - [anon_sym___deprecated_msg] = ACTIONS(2174), - [anon_sym___deprecated_enum_msg] = ACTIONS(2174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2174), - [anon_sym_ATimplementation] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2174), - [anon_sym___typeof] = ACTIONS(2174), - [anon_sym___typeof__] = ACTIONS(2174), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_nil] = ACTIONS(2174), - [sym_id] = ACTIONS(2174), - [sym_instancetype] = ACTIONS(2174), - [sym_Class] = ACTIONS(2174), - [sym_SEL] = ACTIONS(2174), - [sym_IMP] = ACTIONS(2174), - [sym_BOOL] = ACTIONS(2174), - [sym_auto] = ACTIONS(2174), - [anon_sym_ATautoreleasepool] = ACTIONS(2176), - [anon_sym_ATsynchronized] = ACTIONS(2176), - [anon_sym_ATtry] = ACTIONS(2176), - [anon_sym_ATthrow] = ACTIONS(2176), - [anon_sym_ATselector] = ACTIONS(2176), - [anon_sym_ATencode] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2174), - [sym_YES] = ACTIONS(2174), - [sym_NO] = ACTIONS(2174), - [anon_sym___builtin_available] = ACTIONS(2174), - [anon_sym_ATavailable] = ACTIONS(2176), - [anon_sym_va_arg] = ACTIONS(2174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1602] = { - [sym_identifier] = ACTIONS(1730), - [aux_sym_preproc_include_token1] = ACTIONS(1732), - [aux_sym_preproc_def_token1] = ACTIONS(1732), - [aux_sym_preproc_if_token1] = ACTIONS(1730), - [aux_sym_preproc_if_token2] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1730), - [anon_sym_LPAREN2] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_CARET] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_typedef] = ACTIONS(1730), - [anon_sym_extern] = ACTIONS(1730), - [anon_sym___attribute] = ACTIONS(1730), - [anon_sym___attribute__] = ACTIONS(1730), - [anon_sym___declspec] = ACTIONS(1730), - [anon_sym___cdecl] = ACTIONS(1730), - [anon_sym___clrcall] = ACTIONS(1730), - [anon_sym___stdcall] = ACTIONS(1730), - [anon_sym___fastcall] = ACTIONS(1730), - [anon_sym___thiscall] = ACTIONS(1730), - [anon_sym___vectorcall] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_static] = ACTIONS(1730), - [anon_sym_auto] = ACTIONS(1730), - [anon_sym_register] = ACTIONS(1730), - [anon_sym_inline] = ACTIONS(1730), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1730), - [anon_sym_const] = ACTIONS(1730), - [anon_sym_volatile] = ACTIONS(1730), - [anon_sym_restrict] = ACTIONS(1730), - [anon_sym__Atomic] = ACTIONS(1730), - [anon_sym_in] = ACTIONS(1730), - [anon_sym_out] = ACTIONS(1730), - [anon_sym_inout] = ACTIONS(1730), - [anon_sym_bycopy] = ACTIONS(1730), - [anon_sym_byref] = ACTIONS(1730), - [anon_sym_oneway] = ACTIONS(1730), - [anon_sym__Nullable] = ACTIONS(1730), - [anon_sym__Nonnull] = ACTIONS(1730), - [anon_sym__Nullable_result] = ACTIONS(1730), - [anon_sym__Null_unspecified] = ACTIONS(1730), - [anon_sym___autoreleasing] = ACTIONS(1730), - [anon_sym___nullable] = ACTIONS(1730), - [anon_sym___nonnull] = ACTIONS(1730), - [anon_sym___strong] = ACTIONS(1730), - [anon_sym___weak] = ACTIONS(1730), - [anon_sym___bridge] = ACTIONS(1730), - [anon_sym___bridge_transfer] = ACTIONS(1730), - [anon_sym___bridge_retained] = ACTIONS(1730), - [anon_sym___unsafe_unretained] = ACTIONS(1730), - [anon_sym___block] = ACTIONS(1730), - [anon_sym___kindof] = ACTIONS(1730), - [anon_sym___unused] = ACTIONS(1730), - [anon_sym__Complex] = ACTIONS(1730), - [anon_sym___complex] = ACTIONS(1730), - [anon_sym_IBOutlet] = ACTIONS(1730), - [anon_sym_IBInspectable] = ACTIONS(1730), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1730), - [anon_sym_signed] = ACTIONS(1730), - [anon_sym_unsigned] = ACTIONS(1730), - [anon_sym_long] = ACTIONS(1730), - [anon_sym_short] = ACTIONS(1730), - [sym_primitive_type] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_NS_ENUM] = ACTIONS(1730), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1730), - [anon_sym_NS_OPTIONS] = ACTIONS(1730), - [anon_sym_struct] = ACTIONS(1730), - [anon_sym_union] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_switch] = ACTIONS(1730), - [anon_sym_case] = ACTIONS(1730), - [anon_sym_default] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_do] = ACTIONS(1730), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_goto] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1732), - [anon_sym_sizeof] = ACTIONS(1730), - [sym_number_literal] = ACTIONS(1732), - [anon_sym_L_SQUOTE] = ACTIONS(1732), - [anon_sym_u_SQUOTE] = ACTIONS(1732), - [anon_sym_U_SQUOTE] = ACTIONS(1732), - [anon_sym_u8_SQUOTE] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1732), - [anon_sym_L_DQUOTE] = ACTIONS(1732), - [anon_sym_u_DQUOTE] = ACTIONS(1732), - [anon_sym_U_DQUOTE] = ACTIONS(1732), - [anon_sym_u8_DQUOTE] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1732), - [sym_true] = ACTIONS(1730), - [sym_false] = ACTIONS(1730), - [sym_null] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1732), - [anon_sym_ATimport] = ACTIONS(1732), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1730), - [anon_sym_ATcompatibility_alias] = ACTIONS(1732), - [anon_sym_ATprotocol] = ACTIONS(1732), - [anon_sym_ATclass] = ACTIONS(1732), - [anon_sym_ATinterface] = ACTIONS(1732), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1730), - [sym_method_attribute_specifier] = ACTIONS(1730), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1730), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE] = ACTIONS(1730), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_API_AVAILABLE] = ACTIONS(1730), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_API_DEPRECATED] = ACTIONS(1730), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1730), - [anon_sym___deprecated_msg] = ACTIONS(1730), - [anon_sym___deprecated_enum_msg] = ACTIONS(1730), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1730), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1730), - [anon_sym_ATimplementation] = ACTIONS(1732), - [anon_sym_typeof] = ACTIONS(1730), - [anon_sym___typeof] = ACTIONS(1730), - [anon_sym___typeof__] = ACTIONS(1730), - [sym_self] = ACTIONS(1730), - [sym_super] = ACTIONS(1730), - [sym_nil] = ACTIONS(1730), - [sym_id] = ACTIONS(1730), - [sym_instancetype] = ACTIONS(1730), - [sym_Class] = ACTIONS(1730), - [sym_SEL] = ACTIONS(1730), - [sym_IMP] = ACTIONS(1730), - [sym_BOOL] = ACTIONS(1730), - [sym_auto] = ACTIONS(1730), - [anon_sym_ATautoreleasepool] = ACTIONS(1732), - [anon_sym_ATsynchronized] = ACTIONS(1732), - [anon_sym_ATtry] = ACTIONS(1732), - [anon_sym_ATthrow] = ACTIONS(1732), - [anon_sym_ATselector] = ACTIONS(1732), - [anon_sym_ATencode] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1730), - [sym_YES] = ACTIONS(1730), - [sym_NO] = ACTIONS(1730), - [anon_sym___builtin_available] = ACTIONS(1730), - [anon_sym_ATavailable] = ACTIONS(1732), - [anon_sym_va_arg] = ACTIONS(1730), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1603] = { - [sym_identifier] = ACTIONS(1730), - [aux_sym_preproc_include_token1] = ACTIONS(1732), - [aux_sym_preproc_def_token1] = ACTIONS(1732), - [aux_sym_preproc_if_token1] = ACTIONS(1730), - [aux_sym_preproc_if_token2] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1730), - [anon_sym_LPAREN2] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_CARET] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_typedef] = ACTIONS(1730), - [anon_sym_extern] = ACTIONS(1730), - [anon_sym___attribute] = ACTIONS(1730), - [anon_sym___attribute__] = ACTIONS(1730), - [anon_sym___declspec] = ACTIONS(1730), - [anon_sym___cdecl] = ACTIONS(1730), - [anon_sym___clrcall] = ACTIONS(1730), - [anon_sym___stdcall] = ACTIONS(1730), - [anon_sym___fastcall] = ACTIONS(1730), - [anon_sym___thiscall] = ACTIONS(1730), - [anon_sym___vectorcall] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_static] = ACTIONS(1730), - [anon_sym_auto] = ACTIONS(1730), - [anon_sym_register] = ACTIONS(1730), - [anon_sym_inline] = ACTIONS(1730), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1730), - [anon_sym_const] = ACTIONS(1730), - [anon_sym_volatile] = ACTIONS(1730), - [anon_sym_restrict] = ACTIONS(1730), - [anon_sym__Atomic] = ACTIONS(1730), - [anon_sym_in] = ACTIONS(1730), - [anon_sym_out] = ACTIONS(1730), - [anon_sym_inout] = ACTIONS(1730), - [anon_sym_bycopy] = ACTIONS(1730), - [anon_sym_byref] = ACTIONS(1730), - [anon_sym_oneway] = ACTIONS(1730), - [anon_sym__Nullable] = ACTIONS(1730), - [anon_sym__Nonnull] = ACTIONS(1730), - [anon_sym__Nullable_result] = ACTIONS(1730), - [anon_sym__Null_unspecified] = ACTIONS(1730), - [anon_sym___autoreleasing] = ACTIONS(1730), - [anon_sym___nullable] = ACTIONS(1730), - [anon_sym___nonnull] = ACTIONS(1730), - [anon_sym___strong] = ACTIONS(1730), - [anon_sym___weak] = ACTIONS(1730), - [anon_sym___bridge] = ACTIONS(1730), - [anon_sym___bridge_transfer] = ACTIONS(1730), - [anon_sym___bridge_retained] = ACTIONS(1730), - [anon_sym___unsafe_unretained] = ACTIONS(1730), - [anon_sym___block] = ACTIONS(1730), - [anon_sym___kindof] = ACTIONS(1730), - [anon_sym___unused] = ACTIONS(1730), - [anon_sym__Complex] = ACTIONS(1730), - [anon_sym___complex] = ACTIONS(1730), - [anon_sym_IBOutlet] = ACTIONS(1730), - [anon_sym_IBInspectable] = ACTIONS(1730), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1730), - [anon_sym_signed] = ACTIONS(1730), - [anon_sym_unsigned] = ACTIONS(1730), - [anon_sym_long] = ACTIONS(1730), - [anon_sym_short] = ACTIONS(1730), - [sym_primitive_type] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_NS_ENUM] = ACTIONS(1730), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1730), - [anon_sym_NS_OPTIONS] = ACTIONS(1730), - [anon_sym_struct] = ACTIONS(1730), - [anon_sym_union] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_switch] = ACTIONS(1730), - [anon_sym_case] = ACTIONS(1730), - [anon_sym_default] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_do] = ACTIONS(1730), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_goto] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1732), - [anon_sym_sizeof] = ACTIONS(1730), - [sym_number_literal] = ACTIONS(1732), - [anon_sym_L_SQUOTE] = ACTIONS(1732), - [anon_sym_u_SQUOTE] = ACTIONS(1732), - [anon_sym_U_SQUOTE] = ACTIONS(1732), - [anon_sym_u8_SQUOTE] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1732), - [anon_sym_L_DQUOTE] = ACTIONS(1732), - [anon_sym_u_DQUOTE] = ACTIONS(1732), - [anon_sym_U_DQUOTE] = ACTIONS(1732), - [anon_sym_u8_DQUOTE] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1732), - [sym_true] = ACTIONS(1730), - [sym_false] = ACTIONS(1730), - [sym_null] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1732), - [anon_sym_ATimport] = ACTIONS(1732), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1730), - [anon_sym_ATcompatibility_alias] = ACTIONS(1732), - [anon_sym_ATprotocol] = ACTIONS(1732), - [anon_sym_ATclass] = ACTIONS(1732), - [anon_sym_ATinterface] = ACTIONS(1732), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1730), - [sym_method_attribute_specifier] = ACTIONS(1730), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1730), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE] = ACTIONS(1730), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_API_AVAILABLE] = ACTIONS(1730), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_API_DEPRECATED] = ACTIONS(1730), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1730), - [anon_sym___deprecated_msg] = ACTIONS(1730), - [anon_sym___deprecated_enum_msg] = ACTIONS(1730), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1730), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1730), - [anon_sym_ATimplementation] = ACTIONS(1732), - [anon_sym_typeof] = ACTIONS(1730), - [anon_sym___typeof] = ACTIONS(1730), - [anon_sym___typeof__] = ACTIONS(1730), - [sym_self] = ACTIONS(1730), - [sym_super] = ACTIONS(1730), - [sym_nil] = ACTIONS(1730), - [sym_id] = ACTIONS(1730), - [sym_instancetype] = ACTIONS(1730), - [sym_Class] = ACTIONS(1730), - [sym_SEL] = ACTIONS(1730), - [sym_IMP] = ACTIONS(1730), - [sym_BOOL] = ACTIONS(1730), - [sym_auto] = ACTIONS(1730), - [anon_sym_ATautoreleasepool] = ACTIONS(1732), - [anon_sym_ATsynchronized] = ACTIONS(1732), - [anon_sym_ATtry] = ACTIONS(1732), - [anon_sym_ATthrow] = ACTIONS(1732), - [anon_sym_ATselector] = ACTIONS(1732), - [anon_sym_ATencode] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1730), - [sym_YES] = ACTIONS(1730), - [sym_NO] = ACTIONS(1730), - [anon_sym___builtin_available] = ACTIONS(1730), - [anon_sym_ATavailable] = ACTIONS(1732), - [anon_sym_va_arg] = ACTIONS(1730), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1604] = { - [sym_identifier] = ACTIONS(2170), - [aux_sym_preproc_include_token1] = ACTIONS(2172), - [aux_sym_preproc_def_token1] = ACTIONS(2172), - [aux_sym_preproc_if_token1] = ACTIONS(2170), - [aux_sym_preproc_if_token2] = ACTIONS(2170), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2170), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2170), - [anon_sym_LPAREN2] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_TILDE] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2170), - [anon_sym_PLUS] = ACTIONS(2170), - [anon_sym_STAR] = ACTIONS(2172), - [anon_sym_CARET] = ACTIONS(2172), - [anon_sym_AMP] = ACTIONS(2172), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_typedef] = ACTIONS(2170), - [anon_sym_extern] = ACTIONS(2170), - [anon_sym___attribute] = ACTIONS(2170), - [anon_sym___attribute__] = ACTIONS(2170), - [anon_sym___declspec] = ACTIONS(2170), - [anon_sym___cdecl] = ACTIONS(2170), - [anon_sym___clrcall] = ACTIONS(2170), - [anon_sym___stdcall] = ACTIONS(2170), - [anon_sym___fastcall] = ACTIONS(2170), - [anon_sym___thiscall] = ACTIONS(2170), - [anon_sym___vectorcall] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2170), - [anon_sym_auto] = ACTIONS(2170), - [anon_sym_register] = ACTIONS(2170), - [anon_sym_inline] = ACTIONS(2170), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2170), - [anon_sym_const] = ACTIONS(2170), - [anon_sym_volatile] = ACTIONS(2170), - [anon_sym_restrict] = ACTIONS(2170), - [anon_sym__Atomic] = ACTIONS(2170), - [anon_sym_in] = ACTIONS(2170), - [anon_sym_out] = ACTIONS(2170), - [anon_sym_inout] = ACTIONS(2170), - [anon_sym_bycopy] = ACTIONS(2170), - [anon_sym_byref] = ACTIONS(2170), - [anon_sym_oneway] = ACTIONS(2170), - [anon_sym__Nullable] = ACTIONS(2170), - [anon_sym__Nonnull] = ACTIONS(2170), - [anon_sym__Nullable_result] = ACTIONS(2170), - [anon_sym__Null_unspecified] = ACTIONS(2170), - [anon_sym___autoreleasing] = ACTIONS(2170), - [anon_sym___nullable] = ACTIONS(2170), - [anon_sym___nonnull] = ACTIONS(2170), - [anon_sym___strong] = ACTIONS(2170), - [anon_sym___weak] = ACTIONS(2170), - [anon_sym___bridge] = ACTIONS(2170), - [anon_sym___bridge_transfer] = ACTIONS(2170), - [anon_sym___bridge_retained] = ACTIONS(2170), - [anon_sym___unsafe_unretained] = ACTIONS(2170), - [anon_sym___block] = ACTIONS(2170), - [anon_sym___kindof] = ACTIONS(2170), - [anon_sym___unused] = ACTIONS(2170), - [anon_sym__Complex] = ACTIONS(2170), - [anon_sym___complex] = ACTIONS(2170), - [anon_sym_IBOutlet] = ACTIONS(2170), - [anon_sym_IBInspectable] = ACTIONS(2170), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2170), - [anon_sym_signed] = ACTIONS(2170), - [anon_sym_unsigned] = ACTIONS(2170), - [anon_sym_long] = ACTIONS(2170), - [anon_sym_short] = ACTIONS(2170), - [sym_primitive_type] = ACTIONS(2170), - [anon_sym_enum] = ACTIONS(2170), - [anon_sym_NS_ENUM] = ACTIONS(2170), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2170), - [anon_sym_NS_OPTIONS] = ACTIONS(2170), - [anon_sym_struct] = ACTIONS(2170), - [anon_sym_union] = ACTIONS(2170), - [anon_sym_if] = ACTIONS(2170), - [anon_sym_switch] = ACTIONS(2170), - [anon_sym_case] = ACTIONS(2170), - [anon_sym_default] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2170), - [anon_sym_do] = ACTIONS(2170), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_return] = ACTIONS(2170), - [anon_sym_break] = ACTIONS(2170), - [anon_sym_continue] = ACTIONS(2170), - [anon_sym_goto] = ACTIONS(2170), - [anon_sym_DASH_DASH] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(2172), - [anon_sym_sizeof] = ACTIONS(2170), - [sym_number_literal] = ACTIONS(2172), - [anon_sym_L_SQUOTE] = ACTIONS(2172), - [anon_sym_u_SQUOTE] = ACTIONS(2172), - [anon_sym_U_SQUOTE] = ACTIONS(2172), - [anon_sym_u8_SQUOTE] = ACTIONS(2172), - [anon_sym_SQUOTE] = ACTIONS(2172), - [anon_sym_L_DQUOTE] = ACTIONS(2172), - [anon_sym_u_DQUOTE] = ACTIONS(2172), - [anon_sym_U_DQUOTE] = ACTIONS(2172), - [anon_sym_u8_DQUOTE] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(2172), - [sym_true] = ACTIONS(2170), - [sym_false] = ACTIONS(2170), - [sym_null] = ACTIONS(2170), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2172), - [anon_sym_ATimport] = ACTIONS(2172), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2170), - [anon_sym_ATcompatibility_alias] = ACTIONS(2172), - [anon_sym_ATprotocol] = ACTIONS(2172), - [anon_sym_ATclass] = ACTIONS(2172), - [anon_sym_ATinterface] = ACTIONS(2172), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2170), - [sym_method_attribute_specifier] = ACTIONS(2170), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2170), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2170), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2170), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2170), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2170), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2170), - [anon_sym_NS_AVAILABLE] = ACTIONS(2170), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2170), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2170), - [anon_sym_API_AVAILABLE] = ACTIONS(2170), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2170), - [anon_sym_API_DEPRECATED] = ACTIONS(2170), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2170), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2170), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2170), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2170), - [anon_sym___deprecated_msg] = ACTIONS(2170), - [anon_sym___deprecated_enum_msg] = ACTIONS(2170), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2170), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2170), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2170), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2170), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2170), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2170), - [anon_sym_ATimplementation] = ACTIONS(2172), - [anon_sym_typeof] = ACTIONS(2170), - [anon_sym___typeof] = ACTIONS(2170), - [anon_sym___typeof__] = ACTIONS(2170), - [sym_self] = ACTIONS(2170), - [sym_super] = ACTIONS(2170), - [sym_nil] = ACTIONS(2170), - [sym_id] = ACTIONS(2170), - [sym_instancetype] = ACTIONS(2170), - [sym_Class] = ACTIONS(2170), - [sym_SEL] = ACTIONS(2170), - [sym_IMP] = ACTIONS(2170), - [sym_BOOL] = ACTIONS(2170), - [sym_auto] = ACTIONS(2170), - [anon_sym_ATautoreleasepool] = ACTIONS(2172), - [anon_sym_ATsynchronized] = ACTIONS(2172), - [anon_sym_ATtry] = ACTIONS(2172), - [anon_sym_ATthrow] = ACTIONS(2172), - [anon_sym_ATselector] = ACTIONS(2172), - [anon_sym_ATencode] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2170), - [sym_YES] = ACTIONS(2170), - [sym_NO] = ACTIONS(2170), - [anon_sym___builtin_available] = ACTIONS(2170), - [anon_sym_ATavailable] = ACTIONS(2172), - [anon_sym_va_arg] = ACTIONS(2170), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1605] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1606] = { - [sym_identifier] = ACTIONS(1730), - [aux_sym_preproc_include_token1] = ACTIONS(1732), - [aux_sym_preproc_def_token1] = ACTIONS(1732), - [aux_sym_preproc_if_token1] = ACTIONS(1730), - [aux_sym_preproc_if_token2] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1730), - [anon_sym_LPAREN2] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_CARET] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_typedef] = ACTIONS(1730), - [anon_sym_extern] = ACTIONS(1730), - [anon_sym___attribute] = ACTIONS(1730), - [anon_sym___attribute__] = ACTIONS(1730), - [anon_sym___declspec] = ACTIONS(1730), - [anon_sym___cdecl] = ACTIONS(1730), - [anon_sym___clrcall] = ACTIONS(1730), - [anon_sym___stdcall] = ACTIONS(1730), - [anon_sym___fastcall] = ACTIONS(1730), - [anon_sym___thiscall] = ACTIONS(1730), - [anon_sym___vectorcall] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_static] = ACTIONS(1730), - [anon_sym_auto] = ACTIONS(1730), - [anon_sym_register] = ACTIONS(1730), - [anon_sym_inline] = ACTIONS(1730), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1730), - [anon_sym_const] = ACTIONS(1730), - [anon_sym_volatile] = ACTIONS(1730), - [anon_sym_restrict] = ACTIONS(1730), - [anon_sym__Atomic] = ACTIONS(1730), - [anon_sym_in] = ACTIONS(1730), - [anon_sym_out] = ACTIONS(1730), - [anon_sym_inout] = ACTIONS(1730), - [anon_sym_bycopy] = ACTIONS(1730), - [anon_sym_byref] = ACTIONS(1730), - [anon_sym_oneway] = ACTIONS(1730), - [anon_sym__Nullable] = ACTIONS(1730), - [anon_sym__Nonnull] = ACTIONS(1730), - [anon_sym__Nullable_result] = ACTIONS(1730), - [anon_sym__Null_unspecified] = ACTIONS(1730), - [anon_sym___autoreleasing] = ACTIONS(1730), - [anon_sym___nullable] = ACTIONS(1730), - [anon_sym___nonnull] = ACTIONS(1730), - [anon_sym___strong] = ACTIONS(1730), - [anon_sym___weak] = ACTIONS(1730), - [anon_sym___bridge] = ACTIONS(1730), - [anon_sym___bridge_transfer] = ACTIONS(1730), - [anon_sym___bridge_retained] = ACTIONS(1730), - [anon_sym___unsafe_unretained] = ACTIONS(1730), - [anon_sym___block] = ACTIONS(1730), - [anon_sym___kindof] = ACTIONS(1730), - [anon_sym___unused] = ACTIONS(1730), - [anon_sym__Complex] = ACTIONS(1730), - [anon_sym___complex] = ACTIONS(1730), - [anon_sym_IBOutlet] = ACTIONS(1730), - [anon_sym_IBInspectable] = ACTIONS(1730), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1730), - [anon_sym_signed] = ACTIONS(1730), - [anon_sym_unsigned] = ACTIONS(1730), - [anon_sym_long] = ACTIONS(1730), - [anon_sym_short] = ACTIONS(1730), - [sym_primitive_type] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_NS_ENUM] = ACTIONS(1730), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1730), - [anon_sym_NS_OPTIONS] = ACTIONS(1730), - [anon_sym_struct] = ACTIONS(1730), - [anon_sym_union] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_switch] = ACTIONS(1730), - [anon_sym_case] = ACTIONS(1730), - [anon_sym_default] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_do] = ACTIONS(1730), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_goto] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1732), - [anon_sym_sizeof] = ACTIONS(1730), - [sym_number_literal] = ACTIONS(1732), - [anon_sym_L_SQUOTE] = ACTIONS(1732), - [anon_sym_u_SQUOTE] = ACTIONS(1732), - [anon_sym_U_SQUOTE] = ACTIONS(1732), - [anon_sym_u8_SQUOTE] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1732), - [anon_sym_L_DQUOTE] = ACTIONS(1732), - [anon_sym_u_DQUOTE] = ACTIONS(1732), - [anon_sym_U_DQUOTE] = ACTIONS(1732), - [anon_sym_u8_DQUOTE] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1732), - [sym_true] = ACTIONS(1730), - [sym_false] = ACTIONS(1730), - [sym_null] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1732), - [anon_sym_ATimport] = ACTIONS(1732), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1730), - [anon_sym_ATcompatibility_alias] = ACTIONS(1732), - [anon_sym_ATprotocol] = ACTIONS(1732), - [anon_sym_ATclass] = ACTIONS(1732), - [anon_sym_ATinterface] = ACTIONS(1732), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1730), - [sym_method_attribute_specifier] = ACTIONS(1730), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1730), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE] = ACTIONS(1730), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_API_AVAILABLE] = ACTIONS(1730), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_API_DEPRECATED] = ACTIONS(1730), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1730), - [anon_sym___deprecated_msg] = ACTIONS(1730), - [anon_sym___deprecated_enum_msg] = ACTIONS(1730), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1730), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1730), - [anon_sym_ATimplementation] = ACTIONS(1732), - [anon_sym_typeof] = ACTIONS(1730), - [anon_sym___typeof] = ACTIONS(1730), - [anon_sym___typeof__] = ACTIONS(1730), - [sym_self] = ACTIONS(1730), - [sym_super] = ACTIONS(1730), - [sym_nil] = ACTIONS(1730), - [sym_id] = ACTIONS(1730), - [sym_instancetype] = ACTIONS(1730), - [sym_Class] = ACTIONS(1730), - [sym_SEL] = ACTIONS(1730), - [sym_IMP] = ACTIONS(1730), - [sym_BOOL] = ACTIONS(1730), - [sym_auto] = ACTIONS(1730), - [anon_sym_ATautoreleasepool] = ACTIONS(1732), - [anon_sym_ATsynchronized] = ACTIONS(1732), - [anon_sym_ATtry] = ACTIONS(1732), - [anon_sym_ATthrow] = ACTIONS(1732), - [anon_sym_ATselector] = ACTIONS(1732), - [anon_sym_ATencode] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1730), - [sym_YES] = ACTIONS(1730), - [sym_NO] = ACTIONS(1730), - [anon_sym___builtin_available] = ACTIONS(1730), - [anon_sym_ATavailable] = ACTIONS(1732), - [anon_sym_va_arg] = ACTIONS(1730), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1607] = { - [sym_identifier] = ACTIONS(1946), - [aux_sym_preproc_include_token1] = ACTIONS(1948), - [aux_sym_preproc_def_token1] = ACTIONS(1948), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1946), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1946), - [anon_sym_LPAREN2] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1946), - [anon_sym_PLUS] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym___cdecl] = ACTIONS(1946), - [anon_sym___clrcall] = ACTIONS(1946), - [anon_sym___stdcall] = ACTIONS(1946), - [anon_sym___fastcall] = ACTIONS(1946), - [anon_sym___thiscall] = ACTIONS(1946), - [anon_sym___vectorcall] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym_in] = ACTIONS(1946), - [anon_sym_out] = ACTIONS(1946), - [anon_sym_inout] = ACTIONS(1946), - [anon_sym_bycopy] = ACTIONS(1946), - [anon_sym_byref] = ACTIONS(1946), - [anon_sym_oneway] = ACTIONS(1946), - [anon_sym__Nullable] = ACTIONS(1946), - [anon_sym__Nonnull] = ACTIONS(1946), - [anon_sym__Nullable_result] = ACTIONS(1946), - [anon_sym__Null_unspecified] = ACTIONS(1946), - [anon_sym___autoreleasing] = ACTIONS(1946), - [anon_sym___nullable] = ACTIONS(1946), - [anon_sym___nonnull] = ACTIONS(1946), - [anon_sym___strong] = ACTIONS(1946), - [anon_sym___weak] = ACTIONS(1946), - [anon_sym___bridge] = ACTIONS(1946), - [anon_sym___bridge_transfer] = ACTIONS(1946), - [anon_sym___bridge_retained] = ACTIONS(1946), - [anon_sym___unsafe_unretained] = ACTIONS(1946), - [anon_sym___block] = ACTIONS(1946), - [anon_sym___kindof] = ACTIONS(1946), - [anon_sym___unused] = ACTIONS(1946), - [anon_sym__Complex] = ACTIONS(1946), - [anon_sym___complex] = ACTIONS(1946), - [anon_sym_IBOutlet] = ACTIONS(1946), - [anon_sym_IBInspectable] = ACTIONS(1946), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1946), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_NS_ENUM] = ACTIONS(1946), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1946), - [anon_sym_NS_OPTIONS] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_do] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_goto] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1948), - [anon_sym_sizeof] = ACTIONS(1946), - [sym_number_literal] = ACTIONS(1948), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1948), - [anon_sym_u_DQUOTE] = ACTIONS(1948), - [anon_sym_U_DQUOTE] = ACTIONS(1948), - [anon_sym_u8_DQUOTE] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1948), - [sym_true] = ACTIONS(1946), - [sym_false] = ACTIONS(1946), - [sym_null] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1948), - [anon_sym_ATimport] = ACTIONS(1948), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1946), - [anon_sym_ATcompatibility_alias] = ACTIONS(1948), - [anon_sym_ATprotocol] = ACTIONS(1948), - [anon_sym_ATclass] = ACTIONS(1948), - [anon_sym_ATinterface] = ACTIONS(1948), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1946), - [sym_method_attribute_specifier] = ACTIONS(1946), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1946), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1946), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE] = ACTIONS(1946), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1946), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_API_AVAILABLE] = ACTIONS(1946), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_API_DEPRECATED] = ACTIONS(1946), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1946), - [anon_sym___deprecated_msg] = ACTIONS(1946), - [anon_sym___deprecated_enum_msg] = ACTIONS(1946), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1946), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1946), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1946), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1946), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1946), - [anon_sym_ATimplementation] = ACTIONS(1948), - [anon_sym_typeof] = ACTIONS(1946), - [anon_sym___typeof] = ACTIONS(1946), - [anon_sym___typeof__] = ACTIONS(1946), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_nil] = ACTIONS(1946), - [sym_id] = ACTIONS(1946), - [sym_instancetype] = ACTIONS(1946), - [sym_Class] = ACTIONS(1946), - [sym_SEL] = ACTIONS(1946), - [sym_IMP] = ACTIONS(1946), - [sym_BOOL] = ACTIONS(1946), - [sym_auto] = ACTIONS(1946), - [anon_sym_ATautoreleasepool] = ACTIONS(1948), - [anon_sym_ATsynchronized] = ACTIONS(1948), - [anon_sym_ATtry] = ACTIONS(1948), - [anon_sym_ATthrow] = ACTIONS(1948), - [anon_sym_ATselector] = ACTIONS(1948), - [anon_sym_ATencode] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1946), - [sym_YES] = ACTIONS(1946), - [sym_NO] = ACTIONS(1946), - [anon_sym___builtin_available] = ACTIONS(1946), - [anon_sym_ATavailable] = ACTIONS(1948), - [anon_sym_va_arg] = ACTIONS(1946), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1608] = { - [sym_identifier] = ACTIONS(1754), - [aux_sym_preproc_include_token1] = ACTIONS(1756), - [aux_sym_preproc_def_token1] = ACTIONS(1756), - [aux_sym_preproc_if_token1] = ACTIONS(1754), - [aux_sym_preproc_if_token2] = ACTIONS(1754), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1754), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1754), - [anon_sym_LPAREN2] = ACTIONS(1756), - [anon_sym_BANG] = ACTIONS(1756), - [anon_sym_TILDE] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_typedef] = ACTIONS(1754), - [anon_sym_extern] = ACTIONS(1754), - [anon_sym___attribute] = ACTIONS(1754), - [anon_sym___attribute__] = ACTIONS(1754), - [anon_sym___declspec] = ACTIONS(1754), - [anon_sym___cdecl] = ACTIONS(1754), - [anon_sym___clrcall] = ACTIONS(1754), - [anon_sym___stdcall] = ACTIONS(1754), - [anon_sym___fastcall] = ACTIONS(1754), - [anon_sym___thiscall] = ACTIONS(1754), - [anon_sym___vectorcall] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1754), - [anon_sym_auto] = ACTIONS(1754), - [anon_sym_register] = ACTIONS(1754), - [anon_sym_inline] = ACTIONS(1754), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1754), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_volatile] = ACTIONS(1754), - [anon_sym_restrict] = ACTIONS(1754), - [anon_sym__Atomic] = ACTIONS(1754), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_out] = ACTIONS(1754), - [anon_sym_inout] = ACTIONS(1754), - [anon_sym_bycopy] = ACTIONS(1754), - [anon_sym_byref] = ACTIONS(1754), - [anon_sym_oneway] = ACTIONS(1754), - [anon_sym__Nullable] = ACTIONS(1754), - [anon_sym__Nonnull] = ACTIONS(1754), - [anon_sym__Nullable_result] = ACTIONS(1754), - [anon_sym__Null_unspecified] = ACTIONS(1754), - [anon_sym___autoreleasing] = ACTIONS(1754), - [anon_sym___nullable] = ACTIONS(1754), - [anon_sym___nonnull] = ACTIONS(1754), - [anon_sym___strong] = ACTIONS(1754), - [anon_sym___weak] = ACTIONS(1754), - [anon_sym___bridge] = ACTIONS(1754), - [anon_sym___bridge_transfer] = ACTIONS(1754), - [anon_sym___bridge_retained] = ACTIONS(1754), - [anon_sym___unsafe_unretained] = ACTIONS(1754), - [anon_sym___block] = ACTIONS(1754), - [anon_sym___kindof] = ACTIONS(1754), - [anon_sym___unused] = ACTIONS(1754), - [anon_sym__Complex] = ACTIONS(1754), - [anon_sym___complex] = ACTIONS(1754), - [anon_sym_IBOutlet] = ACTIONS(1754), - [anon_sym_IBInspectable] = ACTIONS(1754), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1754), - [anon_sym_signed] = ACTIONS(1754), - [anon_sym_unsigned] = ACTIONS(1754), - [anon_sym_long] = ACTIONS(1754), - [anon_sym_short] = ACTIONS(1754), - [sym_primitive_type] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_NS_ENUM] = ACTIONS(1754), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1754), - [anon_sym_NS_OPTIONS] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(1754), - [anon_sym_union] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_switch] = ACTIONS(1754), - [anon_sym_case] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_do] = ACTIONS(1754), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_goto] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1756), - [anon_sym_PLUS_PLUS] = ACTIONS(1756), - [anon_sym_sizeof] = ACTIONS(1754), - [sym_number_literal] = ACTIONS(1756), - [anon_sym_L_SQUOTE] = ACTIONS(1756), - [anon_sym_u_SQUOTE] = ACTIONS(1756), - [anon_sym_U_SQUOTE] = ACTIONS(1756), - [anon_sym_u8_SQUOTE] = ACTIONS(1756), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_L_DQUOTE] = ACTIONS(1756), - [anon_sym_u_DQUOTE] = ACTIONS(1756), - [anon_sym_U_DQUOTE] = ACTIONS(1756), - [anon_sym_u8_DQUOTE] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1756), - [sym_true] = ACTIONS(1754), - [sym_false] = ACTIONS(1754), - [sym_null] = ACTIONS(1754), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1756), - [anon_sym_ATimport] = ACTIONS(1756), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1754), - [anon_sym_ATcompatibility_alias] = ACTIONS(1756), - [anon_sym_ATprotocol] = ACTIONS(1756), - [anon_sym_ATclass] = ACTIONS(1756), - [anon_sym_ATinterface] = ACTIONS(1756), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1754), - [sym_method_attribute_specifier] = ACTIONS(1754), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1754), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1754), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1754), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1754), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1754), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1754), - [anon_sym_NS_AVAILABLE] = ACTIONS(1754), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1754), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1754), - [anon_sym_API_AVAILABLE] = ACTIONS(1754), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1754), - [anon_sym_API_DEPRECATED] = ACTIONS(1754), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1754), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1754), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1754), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1754), - [anon_sym___deprecated_msg] = ACTIONS(1754), - [anon_sym___deprecated_enum_msg] = ACTIONS(1754), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1754), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1754), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1754), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1754), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1754), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1754), - [anon_sym_ATimplementation] = ACTIONS(1756), - [anon_sym_typeof] = ACTIONS(1754), - [anon_sym___typeof] = ACTIONS(1754), - [anon_sym___typeof__] = ACTIONS(1754), - [sym_self] = ACTIONS(1754), - [sym_super] = ACTIONS(1754), - [sym_nil] = ACTIONS(1754), - [sym_id] = ACTIONS(1754), - [sym_instancetype] = ACTIONS(1754), - [sym_Class] = ACTIONS(1754), - [sym_SEL] = ACTIONS(1754), - [sym_IMP] = ACTIONS(1754), - [sym_BOOL] = ACTIONS(1754), - [sym_auto] = ACTIONS(1754), - [anon_sym_ATautoreleasepool] = ACTIONS(1756), - [anon_sym_ATsynchronized] = ACTIONS(1756), - [anon_sym_ATtry] = ACTIONS(1756), - [anon_sym_ATthrow] = ACTIONS(1756), - [anon_sym_ATselector] = ACTIONS(1756), - [anon_sym_ATencode] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(1754), - [sym_YES] = ACTIONS(1754), - [sym_NO] = ACTIONS(1754), - [anon_sym___builtin_available] = ACTIONS(1754), - [anon_sym_ATavailable] = ACTIONS(1756), - [anon_sym_va_arg] = ACTIONS(1754), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1609] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1610] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1611] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1612] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1613] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1614] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1615] = { - [sym_identifier] = ACTIONS(1722), - [aux_sym_preproc_include_token1] = ACTIONS(1724), - [aux_sym_preproc_def_token1] = ACTIONS(1724), - [aux_sym_preproc_if_token1] = ACTIONS(1722), - [aux_sym_preproc_if_token2] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1722), - [anon_sym_LPAREN2] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym___attribute] = ACTIONS(1722), - [anon_sym___attribute__] = ACTIONS(1722), - [anon_sym___declspec] = ACTIONS(1722), - [anon_sym___cdecl] = ACTIONS(1722), - [anon_sym___clrcall] = ACTIONS(1722), - [anon_sym___stdcall] = ACTIONS(1722), - [anon_sym___fastcall] = ACTIONS(1722), - [anon_sym___thiscall] = ACTIONS(1722), - [anon_sym___vectorcall] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_auto] = ACTIONS(1722), - [anon_sym_register] = ACTIONS(1722), - [anon_sym_inline] = ACTIONS(1722), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_volatile] = ACTIONS(1722), - [anon_sym_restrict] = ACTIONS(1722), - [anon_sym__Atomic] = ACTIONS(1722), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_out] = ACTIONS(1722), - [anon_sym_inout] = ACTIONS(1722), - [anon_sym_bycopy] = ACTIONS(1722), - [anon_sym_byref] = ACTIONS(1722), - [anon_sym_oneway] = ACTIONS(1722), - [anon_sym__Nullable] = ACTIONS(1722), - [anon_sym__Nonnull] = ACTIONS(1722), - [anon_sym__Nullable_result] = ACTIONS(1722), - [anon_sym__Null_unspecified] = ACTIONS(1722), - [anon_sym___autoreleasing] = ACTIONS(1722), - [anon_sym___nullable] = ACTIONS(1722), - [anon_sym___nonnull] = ACTIONS(1722), - [anon_sym___strong] = ACTIONS(1722), - [anon_sym___weak] = ACTIONS(1722), - [anon_sym___bridge] = ACTIONS(1722), - [anon_sym___bridge_transfer] = ACTIONS(1722), - [anon_sym___bridge_retained] = ACTIONS(1722), - [anon_sym___unsafe_unretained] = ACTIONS(1722), - [anon_sym___block] = ACTIONS(1722), - [anon_sym___kindof] = ACTIONS(1722), - [anon_sym___unused] = ACTIONS(1722), - [anon_sym__Complex] = ACTIONS(1722), - [anon_sym___complex] = ACTIONS(1722), - [anon_sym_IBOutlet] = ACTIONS(1722), - [anon_sym_IBInspectable] = ACTIONS(1722), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1722), - [anon_sym_signed] = ACTIONS(1722), - [anon_sym_unsigned] = ACTIONS(1722), - [anon_sym_long] = ACTIONS(1722), - [anon_sym_short] = ACTIONS(1722), - [sym_primitive_type] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_NS_ENUM] = ACTIONS(1722), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1722), - [anon_sym_NS_OPTIONS] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1724), - [anon_sym_sizeof] = ACTIONS(1722), - [sym_number_literal] = ACTIONS(1724), - [anon_sym_L_SQUOTE] = ACTIONS(1724), - [anon_sym_u_SQUOTE] = ACTIONS(1724), - [anon_sym_U_SQUOTE] = ACTIONS(1724), - [anon_sym_u8_SQUOTE] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_L_DQUOTE] = ACTIONS(1724), - [anon_sym_u_DQUOTE] = ACTIONS(1724), - [anon_sym_U_DQUOTE] = ACTIONS(1724), - [anon_sym_u8_DQUOTE] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1724), - [sym_true] = ACTIONS(1722), - [sym_false] = ACTIONS(1722), - [sym_null] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1724), - [anon_sym_ATimport] = ACTIONS(1724), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1722), - [anon_sym_ATcompatibility_alias] = ACTIONS(1724), - [anon_sym_ATprotocol] = ACTIONS(1724), - [anon_sym_ATclass] = ACTIONS(1724), - [anon_sym_ATinterface] = ACTIONS(1724), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1722), - [sym_method_attribute_specifier] = ACTIONS(1722), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1722), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1722), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE] = ACTIONS(1722), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1722), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_API_AVAILABLE] = ACTIONS(1722), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_API_DEPRECATED] = ACTIONS(1722), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1722), - [anon_sym___deprecated_msg] = ACTIONS(1722), - [anon_sym___deprecated_enum_msg] = ACTIONS(1722), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1722), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1722), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1722), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1722), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1722), - [anon_sym_ATimplementation] = ACTIONS(1724), - [anon_sym_typeof] = ACTIONS(1722), - [anon_sym___typeof] = ACTIONS(1722), - [anon_sym___typeof__] = ACTIONS(1722), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_nil] = ACTIONS(1722), - [sym_id] = ACTIONS(1722), - [sym_instancetype] = ACTIONS(1722), - [sym_Class] = ACTIONS(1722), - [sym_SEL] = ACTIONS(1722), - [sym_IMP] = ACTIONS(1722), - [sym_BOOL] = ACTIONS(1722), - [sym_auto] = ACTIONS(1722), - [anon_sym_ATautoreleasepool] = ACTIONS(1724), - [anon_sym_ATsynchronized] = ACTIONS(1724), - [anon_sym_ATtry] = ACTIONS(1724), - [anon_sym_ATthrow] = ACTIONS(1724), - [anon_sym_ATselector] = ACTIONS(1724), - [anon_sym_ATencode] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1722), - [sym_YES] = ACTIONS(1722), - [sym_NO] = ACTIONS(1722), - [anon_sym___builtin_available] = ACTIONS(1722), - [anon_sym_ATavailable] = ACTIONS(1724), - [anon_sym_va_arg] = ACTIONS(1722), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1616] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1617] = { - [sym_identifier] = ACTIONS(2034), - [aux_sym_preproc_include_token1] = ACTIONS(2036), - [aux_sym_preproc_def_token1] = ACTIONS(2036), - [aux_sym_preproc_if_token1] = ACTIONS(2034), - [aux_sym_preproc_if_token2] = ACTIONS(2034), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2034), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2034), - [anon_sym_LPAREN2] = ACTIONS(2036), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_TILDE] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2034), - [anon_sym_PLUS] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_CARET] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_typedef] = ACTIONS(2034), - [anon_sym_extern] = ACTIONS(2034), - [anon_sym___attribute] = ACTIONS(2034), - [anon_sym___attribute__] = ACTIONS(2034), - [anon_sym___declspec] = ACTIONS(2034), - [anon_sym___cdecl] = ACTIONS(2034), - [anon_sym___clrcall] = ACTIONS(2034), - [anon_sym___stdcall] = ACTIONS(2034), - [anon_sym___fastcall] = ACTIONS(2034), - [anon_sym___thiscall] = ACTIONS(2034), - [anon_sym___vectorcall] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2034), - [anon_sym_auto] = ACTIONS(2034), - [anon_sym_register] = ACTIONS(2034), - [anon_sym_inline] = ACTIONS(2034), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2034), - [anon_sym_const] = ACTIONS(2034), - [anon_sym_volatile] = ACTIONS(2034), - [anon_sym_restrict] = ACTIONS(2034), - [anon_sym__Atomic] = ACTIONS(2034), - [anon_sym_in] = ACTIONS(2034), - [anon_sym_out] = ACTIONS(2034), - [anon_sym_inout] = ACTIONS(2034), - [anon_sym_bycopy] = ACTIONS(2034), - [anon_sym_byref] = ACTIONS(2034), - [anon_sym_oneway] = ACTIONS(2034), - [anon_sym__Nullable] = ACTIONS(2034), - [anon_sym__Nonnull] = ACTIONS(2034), - [anon_sym__Nullable_result] = ACTIONS(2034), - [anon_sym__Null_unspecified] = ACTIONS(2034), - [anon_sym___autoreleasing] = ACTIONS(2034), - [anon_sym___nullable] = ACTIONS(2034), - [anon_sym___nonnull] = ACTIONS(2034), - [anon_sym___strong] = ACTIONS(2034), - [anon_sym___weak] = ACTIONS(2034), - [anon_sym___bridge] = ACTIONS(2034), - [anon_sym___bridge_transfer] = ACTIONS(2034), - [anon_sym___bridge_retained] = ACTIONS(2034), - [anon_sym___unsafe_unretained] = ACTIONS(2034), - [anon_sym___block] = ACTIONS(2034), - [anon_sym___kindof] = ACTIONS(2034), - [anon_sym___unused] = ACTIONS(2034), - [anon_sym__Complex] = ACTIONS(2034), - [anon_sym___complex] = ACTIONS(2034), - [anon_sym_IBOutlet] = ACTIONS(2034), - [anon_sym_IBInspectable] = ACTIONS(2034), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2034), - [anon_sym_signed] = ACTIONS(2034), - [anon_sym_unsigned] = ACTIONS(2034), - [anon_sym_long] = ACTIONS(2034), - [anon_sym_short] = ACTIONS(2034), - [sym_primitive_type] = ACTIONS(2034), - [anon_sym_enum] = ACTIONS(2034), - [anon_sym_NS_ENUM] = ACTIONS(2034), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2034), - [anon_sym_NS_OPTIONS] = ACTIONS(2034), - [anon_sym_struct] = ACTIONS(2034), - [anon_sym_union] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2034), - [anon_sym_switch] = ACTIONS(2034), - [anon_sym_case] = ACTIONS(2034), - [anon_sym_default] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2034), - [anon_sym_for] = ACTIONS(2034), - [anon_sym_return] = ACTIONS(2034), - [anon_sym_break] = ACTIONS(2034), - [anon_sym_continue] = ACTIONS(2034), - [anon_sym_goto] = ACTIONS(2034), - [anon_sym_DASH_DASH] = ACTIONS(2036), - [anon_sym_PLUS_PLUS] = ACTIONS(2036), - [anon_sym_sizeof] = ACTIONS(2034), - [sym_number_literal] = ACTIONS(2036), - [anon_sym_L_SQUOTE] = ACTIONS(2036), - [anon_sym_u_SQUOTE] = ACTIONS(2036), - [anon_sym_U_SQUOTE] = ACTIONS(2036), - [anon_sym_u8_SQUOTE] = ACTIONS(2036), - [anon_sym_SQUOTE] = ACTIONS(2036), - [anon_sym_L_DQUOTE] = ACTIONS(2036), - [anon_sym_u_DQUOTE] = ACTIONS(2036), - [anon_sym_U_DQUOTE] = ACTIONS(2036), - [anon_sym_u8_DQUOTE] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(2036), - [sym_true] = ACTIONS(2034), - [sym_false] = ACTIONS(2034), - [sym_null] = ACTIONS(2034), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2036), - [anon_sym_ATimport] = ACTIONS(2036), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2034), - [anon_sym_ATcompatibility_alias] = ACTIONS(2036), - [anon_sym_ATprotocol] = ACTIONS(2036), - [anon_sym_ATclass] = ACTIONS(2036), - [anon_sym_ATinterface] = ACTIONS(2036), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2034), - [sym_method_attribute_specifier] = ACTIONS(2034), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2034), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2034), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2034), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2034), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2034), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2034), - [anon_sym_NS_AVAILABLE] = ACTIONS(2034), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2034), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_API_AVAILABLE] = ACTIONS(2034), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2034), - [anon_sym_API_DEPRECATED] = ACTIONS(2034), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2034), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2034), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2034), - [anon_sym___deprecated_msg] = ACTIONS(2034), - [anon_sym___deprecated_enum_msg] = ACTIONS(2034), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2034), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2034), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2034), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2034), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2034), - [anon_sym_ATimplementation] = ACTIONS(2036), - [anon_sym_typeof] = ACTIONS(2034), - [anon_sym___typeof] = ACTIONS(2034), - [anon_sym___typeof__] = ACTIONS(2034), - [sym_self] = ACTIONS(2034), - [sym_super] = ACTIONS(2034), - [sym_nil] = ACTIONS(2034), - [sym_id] = ACTIONS(2034), - [sym_instancetype] = ACTIONS(2034), - [sym_Class] = ACTIONS(2034), - [sym_SEL] = ACTIONS(2034), - [sym_IMP] = ACTIONS(2034), - [sym_BOOL] = ACTIONS(2034), - [sym_auto] = ACTIONS(2034), - [anon_sym_ATautoreleasepool] = ACTIONS(2036), - [anon_sym_ATsynchronized] = ACTIONS(2036), - [anon_sym_ATtry] = ACTIONS(2036), - [anon_sym_ATthrow] = ACTIONS(2036), - [anon_sym_ATselector] = ACTIONS(2036), - [anon_sym_ATencode] = ACTIONS(2036), - [anon_sym_AT] = ACTIONS(2034), - [sym_YES] = ACTIONS(2034), - [sym_NO] = ACTIONS(2034), - [anon_sym___builtin_available] = ACTIONS(2034), - [anon_sym_ATavailable] = ACTIONS(2036), - [anon_sym_va_arg] = ACTIONS(2034), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1618] = { - [sym_identifier] = ACTIONS(1730), - [aux_sym_preproc_include_token1] = ACTIONS(1732), - [aux_sym_preproc_def_token1] = ACTIONS(1732), - [aux_sym_preproc_if_token1] = ACTIONS(1730), - [aux_sym_preproc_if_token2] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1730), - [anon_sym_LPAREN2] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_CARET] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_typedef] = ACTIONS(1730), - [anon_sym_extern] = ACTIONS(1730), - [anon_sym___attribute] = ACTIONS(1730), - [anon_sym___attribute__] = ACTIONS(1730), - [anon_sym___declspec] = ACTIONS(1730), - [anon_sym___cdecl] = ACTIONS(1730), - [anon_sym___clrcall] = ACTIONS(1730), - [anon_sym___stdcall] = ACTIONS(1730), - [anon_sym___fastcall] = ACTIONS(1730), - [anon_sym___thiscall] = ACTIONS(1730), - [anon_sym___vectorcall] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_static] = ACTIONS(1730), - [anon_sym_auto] = ACTIONS(1730), - [anon_sym_register] = ACTIONS(1730), - [anon_sym_inline] = ACTIONS(1730), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1730), - [anon_sym_const] = ACTIONS(1730), - [anon_sym_volatile] = ACTIONS(1730), - [anon_sym_restrict] = ACTIONS(1730), - [anon_sym__Atomic] = ACTIONS(1730), - [anon_sym_in] = ACTIONS(1730), - [anon_sym_out] = ACTIONS(1730), - [anon_sym_inout] = ACTIONS(1730), - [anon_sym_bycopy] = ACTIONS(1730), - [anon_sym_byref] = ACTIONS(1730), - [anon_sym_oneway] = ACTIONS(1730), - [anon_sym__Nullable] = ACTIONS(1730), - [anon_sym__Nonnull] = ACTIONS(1730), - [anon_sym__Nullable_result] = ACTIONS(1730), - [anon_sym__Null_unspecified] = ACTIONS(1730), - [anon_sym___autoreleasing] = ACTIONS(1730), - [anon_sym___nullable] = ACTIONS(1730), - [anon_sym___nonnull] = ACTIONS(1730), - [anon_sym___strong] = ACTIONS(1730), - [anon_sym___weak] = ACTIONS(1730), - [anon_sym___bridge] = ACTIONS(1730), - [anon_sym___bridge_transfer] = ACTIONS(1730), - [anon_sym___bridge_retained] = ACTIONS(1730), - [anon_sym___unsafe_unretained] = ACTIONS(1730), - [anon_sym___block] = ACTIONS(1730), - [anon_sym___kindof] = ACTIONS(1730), - [anon_sym___unused] = ACTIONS(1730), - [anon_sym__Complex] = ACTIONS(1730), - [anon_sym___complex] = ACTIONS(1730), - [anon_sym_IBOutlet] = ACTIONS(1730), - [anon_sym_IBInspectable] = ACTIONS(1730), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1730), - [anon_sym_signed] = ACTIONS(1730), - [anon_sym_unsigned] = ACTIONS(1730), - [anon_sym_long] = ACTIONS(1730), - [anon_sym_short] = ACTIONS(1730), - [sym_primitive_type] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_NS_ENUM] = ACTIONS(1730), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1730), - [anon_sym_NS_OPTIONS] = ACTIONS(1730), - [anon_sym_struct] = ACTIONS(1730), - [anon_sym_union] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_switch] = ACTIONS(1730), - [anon_sym_case] = ACTIONS(1730), - [anon_sym_default] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_do] = ACTIONS(1730), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_goto] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1732), - [anon_sym_sizeof] = ACTIONS(1730), - [sym_number_literal] = ACTIONS(1732), - [anon_sym_L_SQUOTE] = ACTIONS(1732), - [anon_sym_u_SQUOTE] = ACTIONS(1732), - [anon_sym_U_SQUOTE] = ACTIONS(1732), - [anon_sym_u8_SQUOTE] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1732), - [anon_sym_L_DQUOTE] = ACTIONS(1732), - [anon_sym_u_DQUOTE] = ACTIONS(1732), - [anon_sym_U_DQUOTE] = ACTIONS(1732), - [anon_sym_u8_DQUOTE] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1732), - [sym_true] = ACTIONS(1730), - [sym_false] = ACTIONS(1730), - [sym_null] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(1732), - [anon_sym_ATimport] = ACTIONS(1732), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1730), - [anon_sym_ATcompatibility_alias] = ACTIONS(1732), - [anon_sym_ATprotocol] = ACTIONS(1732), - [anon_sym_ATclass] = ACTIONS(1732), - [anon_sym_ATinterface] = ACTIONS(1732), - [sym_class_interface_attribute_sepcifier] = ACTIONS(1730), - [sym_method_attribute_specifier] = ACTIONS(1730), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1730), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1730), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE] = ACTIONS(1730), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1730), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_API_AVAILABLE] = ACTIONS(1730), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_API_DEPRECATED] = ACTIONS(1730), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1730), - [anon_sym___deprecated_msg] = ACTIONS(1730), - [anon_sym___deprecated_enum_msg] = ACTIONS(1730), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1730), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1730), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1730), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1730), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1730), - [anon_sym_ATimplementation] = ACTIONS(1732), - [anon_sym_typeof] = ACTIONS(1730), - [anon_sym___typeof] = ACTIONS(1730), - [anon_sym___typeof__] = ACTIONS(1730), - [sym_self] = ACTIONS(1730), - [sym_super] = ACTIONS(1730), - [sym_nil] = ACTIONS(1730), - [sym_id] = ACTIONS(1730), - [sym_instancetype] = ACTIONS(1730), - [sym_Class] = ACTIONS(1730), - [sym_SEL] = ACTIONS(1730), - [sym_IMP] = ACTIONS(1730), - [sym_BOOL] = ACTIONS(1730), - [sym_auto] = ACTIONS(1730), - [anon_sym_ATautoreleasepool] = ACTIONS(1732), - [anon_sym_ATsynchronized] = ACTIONS(1732), - [anon_sym_ATtry] = ACTIONS(1732), - [anon_sym_ATthrow] = ACTIONS(1732), - [anon_sym_ATselector] = ACTIONS(1732), - [anon_sym_ATencode] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1730), - [sym_YES] = ACTIONS(1730), - [sym_NO] = ACTIONS(1730), - [anon_sym___builtin_available] = ACTIONS(1730), - [anon_sym_ATavailable] = ACTIONS(1732), - [anon_sym_va_arg] = ACTIONS(1730), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1619] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1620] = { - [sym_identifier] = ACTIONS(2158), - [aux_sym_preproc_include_token1] = ACTIONS(2160), - [aux_sym_preproc_def_token1] = ACTIONS(2160), - [aux_sym_preproc_if_token1] = ACTIONS(2158), - [aux_sym_preproc_if_token2] = ACTIONS(2158), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2158), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2158), - [anon_sym_LPAREN2] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_typedef] = ACTIONS(2158), - [anon_sym_extern] = ACTIONS(2158), - [anon_sym___attribute] = ACTIONS(2158), - [anon_sym___attribute__] = ACTIONS(2158), - [anon_sym___declspec] = ACTIONS(2158), - [anon_sym___cdecl] = ACTIONS(2158), - [anon_sym___clrcall] = ACTIONS(2158), - [anon_sym___stdcall] = ACTIONS(2158), - [anon_sym___fastcall] = ACTIONS(2158), - [anon_sym___thiscall] = ACTIONS(2158), - [anon_sym___vectorcall] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2158), - [anon_sym_auto] = ACTIONS(2158), - [anon_sym_register] = ACTIONS(2158), - [anon_sym_inline] = ACTIONS(2158), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2158), - [anon_sym_const] = ACTIONS(2158), - [anon_sym_volatile] = ACTIONS(2158), - [anon_sym_restrict] = ACTIONS(2158), - [anon_sym__Atomic] = ACTIONS(2158), - [anon_sym_in] = ACTIONS(2158), - [anon_sym_out] = ACTIONS(2158), - [anon_sym_inout] = ACTIONS(2158), - [anon_sym_bycopy] = ACTIONS(2158), - [anon_sym_byref] = ACTIONS(2158), - [anon_sym_oneway] = ACTIONS(2158), - [anon_sym__Nullable] = ACTIONS(2158), - [anon_sym__Nonnull] = ACTIONS(2158), - [anon_sym__Nullable_result] = ACTIONS(2158), - [anon_sym__Null_unspecified] = ACTIONS(2158), - [anon_sym___autoreleasing] = ACTIONS(2158), - [anon_sym___nullable] = ACTIONS(2158), - [anon_sym___nonnull] = ACTIONS(2158), - [anon_sym___strong] = ACTIONS(2158), - [anon_sym___weak] = ACTIONS(2158), - [anon_sym___bridge] = ACTIONS(2158), - [anon_sym___bridge_transfer] = ACTIONS(2158), - [anon_sym___bridge_retained] = ACTIONS(2158), - [anon_sym___unsafe_unretained] = ACTIONS(2158), - [anon_sym___block] = ACTIONS(2158), - [anon_sym___kindof] = ACTIONS(2158), - [anon_sym___unused] = ACTIONS(2158), - [anon_sym__Complex] = ACTIONS(2158), - [anon_sym___complex] = ACTIONS(2158), - [anon_sym_IBOutlet] = ACTIONS(2158), - [anon_sym_IBInspectable] = ACTIONS(2158), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2158), - [anon_sym_signed] = ACTIONS(2158), - [anon_sym_unsigned] = ACTIONS(2158), - [anon_sym_long] = ACTIONS(2158), - [anon_sym_short] = ACTIONS(2158), - [sym_primitive_type] = ACTIONS(2158), - [anon_sym_enum] = ACTIONS(2158), - [anon_sym_NS_ENUM] = ACTIONS(2158), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2158), - [anon_sym_NS_OPTIONS] = ACTIONS(2158), - [anon_sym_struct] = ACTIONS(2158), - [anon_sym_union] = ACTIONS(2158), - [anon_sym_if] = ACTIONS(2158), - [anon_sym_switch] = ACTIONS(2158), - [anon_sym_case] = ACTIONS(2158), - [anon_sym_default] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2158), - [anon_sym_do] = ACTIONS(2158), - [anon_sym_for] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2158), - [anon_sym_break] = ACTIONS(2158), - [anon_sym_continue] = ACTIONS(2158), - [anon_sym_goto] = ACTIONS(2158), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_sizeof] = ACTIONS(2158), - [sym_number_literal] = ACTIONS(2160), - [anon_sym_L_SQUOTE] = ACTIONS(2160), - [anon_sym_u_SQUOTE] = ACTIONS(2160), - [anon_sym_U_SQUOTE] = ACTIONS(2160), - [anon_sym_u8_SQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_L_DQUOTE] = ACTIONS(2160), - [anon_sym_u_DQUOTE] = ACTIONS(2160), - [anon_sym_U_DQUOTE] = ACTIONS(2160), - [anon_sym_u8_DQUOTE] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [sym_true] = ACTIONS(2158), - [sym_false] = ACTIONS(2158), - [sym_null] = ACTIONS(2158), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2160), - [anon_sym_ATimport] = ACTIONS(2160), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2158), - [anon_sym_ATcompatibility_alias] = ACTIONS(2160), - [anon_sym_ATprotocol] = ACTIONS(2160), - [anon_sym_ATclass] = ACTIONS(2160), - [anon_sym_ATinterface] = ACTIONS(2160), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2158), - [sym_method_attribute_specifier] = ACTIONS(2158), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2158), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2158), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2158), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2158), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2158), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2158), - [anon_sym_NS_AVAILABLE] = ACTIONS(2158), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2158), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2158), - [anon_sym_API_AVAILABLE] = ACTIONS(2158), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2158), - [anon_sym_API_DEPRECATED] = ACTIONS(2158), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2158), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2158), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2158), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2158), - [anon_sym___deprecated_msg] = ACTIONS(2158), - [anon_sym___deprecated_enum_msg] = ACTIONS(2158), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2158), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2158), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2158), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2158), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2158), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2158), - [anon_sym_ATimplementation] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2158), - [anon_sym___typeof] = ACTIONS(2158), - [anon_sym___typeof__] = ACTIONS(2158), - [sym_self] = ACTIONS(2158), - [sym_super] = ACTIONS(2158), - [sym_nil] = ACTIONS(2158), - [sym_id] = ACTIONS(2158), - [sym_instancetype] = ACTIONS(2158), - [sym_Class] = ACTIONS(2158), - [sym_SEL] = ACTIONS(2158), - [sym_IMP] = ACTIONS(2158), - [sym_BOOL] = ACTIONS(2158), - [sym_auto] = ACTIONS(2158), - [anon_sym_ATautoreleasepool] = ACTIONS(2160), - [anon_sym_ATsynchronized] = ACTIONS(2160), - [anon_sym_ATtry] = ACTIONS(2160), - [anon_sym_ATthrow] = ACTIONS(2160), - [anon_sym_ATselector] = ACTIONS(2160), - [anon_sym_ATencode] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2158), - [sym_YES] = ACTIONS(2158), - [sym_NO] = ACTIONS(2158), - [anon_sym___builtin_available] = ACTIONS(2158), - [anon_sym_ATavailable] = ACTIONS(2160), - [anon_sym_va_arg] = ACTIONS(2158), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1621] = { - [sym_identifier] = ACTIONS(2154), - [aux_sym_preproc_include_token1] = ACTIONS(2156), - [aux_sym_preproc_def_token1] = ACTIONS(2156), - [aux_sym_preproc_if_token1] = ACTIONS(2154), - [aux_sym_preproc_if_token2] = ACTIONS(2154), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2154), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2154), - [anon_sym_LPAREN2] = ACTIONS(2156), - [anon_sym_BANG] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2154), - [anon_sym_PLUS] = ACTIONS(2154), - [anon_sym_STAR] = ACTIONS(2156), - [anon_sym_CARET] = ACTIONS(2156), - [anon_sym_AMP] = ACTIONS(2156), - [anon_sym_SEMI] = ACTIONS(2156), - [anon_sym_typedef] = ACTIONS(2154), - [anon_sym_extern] = ACTIONS(2154), - [anon_sym___attribute] = ACTIONS(2154), - [anon_sym___attribute__] = ACTIONS(2154), - [anon_sym___declspec] = ACTIONS(2154), - [anon_sym___cdecl] = ACTIONS(2154), - [anon_sym___clrcall] = ACTIONS(2154), - [anon_sym___stdcall] = ACTIONS(2154), - [anon_sym___fastcall] = ACTIONS(2154), - [anon_sym___thiscall] = ACTIONS(2154), - [anon_sym___vectorcall] = ACTIONS(2154), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2154), - [anon_sym_auto] = ACTIONS(2154), - [anon_sym_register] = ACTIONS(2154), - [anon_sym_inline] = ACTIONS(2154), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2154), - [anon_sym_const] = ACTIONS(2154), - [anon_sym_volatile] = ACTIONS(2154), - [anon_sym_restrict] = ACTIONS(2154), - [anon_sym__Atomic] = ACTIONS(2154), - [anon_sym_in] = ACTIONS(2154), - [anon_sym_out] = ACTIONS(2154), - [anon_sym_inout] = ACTIONS(2154), - [anon_sym_bycopy] = ACTIONS(2154), - [anon_sym_byref] = ACTIONS(2154), - [anon_sym_oneway] = ACTIONS(2154), - [anon_sym__Nullable] = ACTIONS(2154), - [anon_sym__Nonnull] = ACTIONS(2154), - [anon_sym__Nullable_result] = ACTIONS(2154), - [anon_sym__Null_unspecified] = ACTIONS(2154), - [anon_sym___autoreleasing] = ACTIONS(2154), - [anon_sym___nullable] = ACTIONS(2154), - [anon_sym___nonnull] = ACTIONS(2154), - [anon_sym___strong] = ACTIONS(2154), - [anon_sym___weak] = ACTIONS(2154), - [anon_sym___bridge] = ACTIONS(2154), - [anon_sym___bridge_transfer] = ACTIONS(2154), - [anon_sym___bridge_retained] = ACTIONS(2154), - [anon_sym___unsafe_unretained] = ACTIONS(2154), - [anon_sym___block] = ACTIONS(2154), - [anon_sym___kindof] = ACTIONS(2154), - [anon_sym___unused] = ACTIONS(2154), - [anon_sym__Complex] = ACTIONS(2154), - [anon_sym___complex] = ACTIONS(2154), - [anon_sym_IBOutlet] = ACTIONS(2154), - [anon_sym_IBInspectable] = ACTIONS(2154), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2154), - [anon_sym_signed] = ACTIONS(2154), - [anon_sym_unsigned] = ACTIONS(2154), - [anon_sym_long] = ACTIONS(2154), - [anon_sym_short] = ACTIONS(2154), - [sym_primitive_type] = ACTIONS(2154), - [anon_sym_enum] = ACTIONS(2154), - [anon_sym_NS_ENUM] = ACTIONS(2154), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2154), - [anon_sym_NS_OPTIONS] = ACTIONS(2154), - [anon_sym_struct] = ACTIONS(2154), - [anon_sym_union] = ACTIONS(2154), - [anon_sym_if] = ACTIONS(2154), - [anon_sym_switch] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2154), - [anon_sym_default] = ACTIONS(2154), - [anon_sym_while] = ACTIONS(2154), - [anon_sym_do] = ACTIONS(2154), - [anon_sym_for] = ACTIONS(2154), - [anon_sym_return] = ACTIONS(2154), - [anon_sym_break] = ACTIONS(2154), - [anon_sym_continue] = ACTIONS(2154), - [anon_sym_goto] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2156), - [anon_sym_sizeof] = ACTIONS(2154), - [sym_number_literal] = ACTIONS(2156), - [anon_sym_L_SQUOTE] = ACTIONS(2156), - [anon_sym_u_SQUOTE] = ACTIONS(2156), - [anon_sym_U_SQUOTE] = ACTIONS(2156), - [anon_sym_u8_SQUOTE] = ACTIONS(2156), - [anon_sym_SQUOTE] = ACTIONS(2156), - [anon_sym_L_DQUOTE] = ACTIONS(2156), - [anon_sym_u_DQUOTE] = ACTIONS(2156), - [anon_sym_U_DQUOTE] = ACTIONS(2156), - [anon_sym_u8_DQUOTE] = ACTIONS(2156), - [anon_sym_DQUOTE] = ACTIONS(2156), - [sym_true] = ACTIONS(2154), - [sym_false] = ACTIONS(2154), - [sym_null] = ACTIONS(2154), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2156), - [anon_sym_ATimport] = ACTIONS(2156), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2154), - [anon_sym_ATcompatibility_alias] = ACTIONS(2156), - [anon_sym_ATprotocol] = ACTIONS(2156), - [anon_sym_ATclass] = ACTIONS(2156), - [anon_sym_ATinterface] = ACTIONS(2156), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2154), - [sym_method_attribute_specifier] = ACTIONS(2154), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2154), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2154), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2154), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2154), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2154), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2154), - [anon_sym_NS_AVAILABLE] = ACTIONS(2154), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2154), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2154), - [anon_sym_API_AVAILABLE] = ACTIONS(2154), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2154), - [anon_sym_API_DEPRECATED] = ACTIONS(2154), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2154), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2154), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2154), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2154), - [anon_sym___deprecated_msg] = ACTIONS(2154), - [anon_sym___deprecated_enum_msg] = ACTIONS(2154), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2154), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2154), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2154), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2154), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2154), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2154), - [anon_sym_ATimplementation] = ACTIONS(2156), - [anon_sym_typeof] = ACTIONS(2154), - [anon_sym___typeof] = ACTIONS(2154), - [anon_sym___typeof__] = ACTIONS(2154), - [sym_self] = ACTIONS(2154), - [sym_super] = ACTIONS(2154), - [sym_nil] = ACTIONS(2154), - [sym_id] = ACTIONS(2154), - [sym_instancetype] = ACTIONS(2154), - [sym_Class] = ACTIONS(2154), - [sym_SEL] = ACTIONS(2154), - [sym_IMP] = ACTIONS(2154), - [sym_BOOL] = ACTIONS(2154), - [sym_auto] = ACTIONS(2154), - [anon_sym_ATautoreleasepool] = ACTIONS(2156), - [anon_sym_ATsynchronized] = ACTIONS(2156), - [anon_sym_ATtry] = ACTIONS(2156), - [anon_sym_ATthrow] = ACTIONS(2156), - [anon_sym_ATselector] = ACTIONS(2156), - [anon_sym_ATencode] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2154), - [sym_YES] = ACTIONS(2154), - [sym_NO] = ACTIONS(2154), - [anon_sym___builtin_available] = ACTIONS(2154), - [anon_sym_ATavailable] = ACTIONS(2156), - [anon_sym_va_arg] = ACTIONS(2154), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1622] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1623] = { - [sym_identifier] = ACTIONS(2078), - [aux_sym_preproc_include_token1] = ACTIONS(2080), - [aux_sym_preproc_def_token1] = ACTIONS(2080), - [aux_sym_preproc_if_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token2] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2078), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2078), - [anon_sym_LPAREN2] = ACTIONS(2080), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2078), - [anon_sym_extern] = ACTIONS(2078), - [anon_sym___attribute] = ACTIONS(2078), - [anon_sym___attribute__] = ACTIONS(2078), - [anon_sym___declspec] = ACTIONS(2078), - [anon_sym___cdecl] = ACTIONS(2078), - [anon_sym___clrcall] = ACTIONS(2078), - [anon_sym___stdcall] = ACTIONS(2078), - [anon_sym___fastcall] = ACTIONS(2078), - [anon_sym___thiscall] = ACTIONS(2078), - [anon_sym___vectorcall] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2078), - [anon_sym_auto] = ACTIONS(2078), - [anon_sym_register] = ACTIONS(2078), - [anon_sym_inline] = ACTIONS(2078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2078), - [anon_sym_const] = ACTIONS(2078), - [anon_sym_volatile] = ACTIONS(2078), - [anon_sym_restrict] = ACTIONS(2078), - [anon_sym__Atomic] = ACTIONS(2078), - [anon_sym_in] = ACTIONS(2078), - [anon_sym_out] = ACTIONS(2078), - [anon_sym_inout] = ACTIONS(2078), - [anon_sym_bycopy] = ACTIONS(2078), - [anon_sym_byref] = ACTIONS(2078), - [anon_sym_oneway] = ACTIONS(2078), - [anon_sym__Nullable] = ACTIONS(2078), - [anon_sym__Nonnull] = ACTIONS(2078), - [anon_sym__Nullable_result] = ACTIONS(2078), - [anon_sym__Null_unspecified] = ACTIONS(2078), - [anon_sym___autoreleasing] = ACTIONS(2078), - [anon_sym___nullable] = ACTIONS(2078), - [anon_sym___nonnull] = ACTIONS(2078), - [anon_sym___strong] = ACTIONS(2078), - [anon_sym___weak] = ACTIONS(2078), - [anon_sym___bridge] = ACTIONS(2078), - [anon_sym___bridge_transfer] = ACTIONS(2078), - [anon_sym___bridge_retained] = ACTIONS(2078), - [anon_sym___unsafe_unretained] = ACTIONS(2078), - [anon_sym___block] = ACTIONS(2078), - [anon_sym___kindof] = ACTIONS(2078), - [anon_sym___unused] = ACTIONS(2078), - [anon_sym__Complex] = ACTIONS(2078), - [anon_sym___complex] = ACTIONS(2078), - [anon_sym_IBOutlet] = ACTIONS(2078), - [anon_sym_IBInspectable] = ACTIONS(2078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2078), - [anon_sym_signed] = ACTIONS(2078), - [anon_sym_unsigned] = ACTIONS(2078), - [anon_sym_long] = ACTIONS(2078), - [anon_sym_short] = ACTIONS(2078), - [sym_primitive_type] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_NS_ENUM] = ACTIONS(2078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2078), - [anon_sym_NS_OPTIONS] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(2078), - [anon_sym_union] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_while] = ACTIONS(2078), - [anon_sym_do] = ACTIONS(2078), - [anon_sym_for] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2078), - [anon_sym_break] = ACTIONS(2078), - [anon_sym_continue] = ACTIONS(2078), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2080), - [anon_sym_sizeof] = ACTIONS(2078), - [sym_number_literal] = ACTIONS(2080), - [anon_sym_L_SQUOTE] = ACTIONS(2080), - [anon_sym_u_SQUOTE] = ACTIONS(2080), - [anon_sym_U_SQUOTE] = ACTIONS(2080), - [anon_sym_u8_SQUOTE] = ACTIONS(2080), - [anon_sym_SQUOTE] = ACTIONS(2080), - [anon_sym_L_DQUOTE] = ACTIONS(2080), - [anon_sym_u_DQUOTE] = ACTIONS(2080), - [anon_sym_U_DQUOTE] = ACTIONS(2080), - [anon_sym_u8_DQUOTE] = ACTIONS(2080), - [anon_sym_DQUOTE] = ACTIONS(2080), - [sym_true] = ACTIONS(2078), - [sym_false] = ACTIONS(2078), - [sym_null] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [anon_sym_POUNDimport] = ACTIONS(2080), - [anon_sym_ATimport] = ACTIONS(2080), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2078), - [anon_sym_ATcompatibility_alias] = ACTIONS(2080), - [anon_sym_ATprotocol] = ACTIONS(2080), - [anon_sym_ATclass] = ACTIONS(2080), - [anon_sym_ATinterface] = ACTIONS(2080), - [sym_class_interface_attribute_sepcifier] = ACTIONS(2078), - [sym_method_attribute_specifier] = ACTIONS(2078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE] = ACTIONS(2078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_API_AVAILABLE] = ACTIONS(2078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_API_DEPRECATED] = ACTIONS(2078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2078), - [anon_sym___deprecated_msg] = ACTIONS(2078), - [anon_sym___deprecated_enum_msg] = ACTIONS(2078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2078), - [anon_sym_ATimplementation] = ACTIONS(2080), - [anon_sym_typeof] = ACTIONS(2078), - [anon_sym___typeof] = ACTIONS(2078), - [anon_sym___typeof__] = ACTIONS(2078), - [sym_self] = ACTIONS(2078), - [sym_super] = ACTIONS(2078), - [sym_nil] = ACTIONS(2078), - [sym_id] = ACTIONS(2078), - [sym_instancetype] = ACTIONS(2078), - [sym_Class] = ACTIONS(2078), - [sym_SEL] = ACTIONS(2078), - [sym_IMP] = ACTIONS(2078), - [sym_BOOL] = ACTIONS(2078), - [sym_auto] = ACTIONS(2078), - [anon_sym_ATautoreleasepool] = ACTIONS(2080), - [anon_sym_ATsynchronized] = ACTIONS(2080), - [anon_sym_ATtry] = ACTIONS(2080), - [anon_sym_ATthrow] = ACTIONS(2080), - [anon_sym_ATselector] = ACTIONS(2080), - [anon_sym_ATencode] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2078), - [sym_YES] = ACTIONS(2078), - [sym_NO] = ACTIONS(2078), - [anon_sym___builtin_available] = ACTIONS(2078), - [anon_sym_ATavailable] = ACTIONS(2080), - [anon_sym_va_arg] = ACTIONS(2078), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1624] = { - [sym__expression] = STATE(3287), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_initializer_list] = STATE(3334), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(2188), - [anon_sym_RPAREN] = ACTIONS(2188), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_SLASH] = ACTIONS(2198), - [anon_sym_PERCENT] = ACTIONS(2188), - [anon_sym_PIPE_PIPE] = ACTIONS(2188), - [anon_sym_AMP_AMP] = ACTIONS(2188), - [anon_sym_PIPE] = ACTIONS(2198), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(2196), - [anon_sym_EQ_EQ] = ACTIONS(2188), - [anon_sym_BANG_EQ] = ACTIONS(2188), - [anon_sym_GT] = ACTIONS(2198), - [anon_sym_GT_EQ] = ACTIONS(2188), - [anon_sym_LT_EQ] = ACTIONS(2188), - [anon_sym_LT] = ACTIONS(2198), - [anon_sym_LT_LT] = ACTIONS(2188), - [anon_sym_GT_GT] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2188), - [anon_sym___attribute] = ACTIONS(2198), - [anon_sym___attribute__] = ACTIONS(2198), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(2188), - [anon_sym_const] = ACTIONS(2198), - [anon_sym_volatile] = ACTIONS(2198), - [anon_sym_restrict] = ACTIONS(2198), - [anon_sym__Atomic] = ACTIONS(2198), - [anon_sym_in] = ACTIONS(2198), - [anon_sym_out] = ACTIONS(2198), - [anon_sym_inout] = ACTIONS(2198), - [anon_sym_bycopy] = ACTIONS(2198), - [anon_sym_byref] = ACTIONS(2198), - [anon_sym_oneway] = ACTIONS(2198), - [anon_sym__Nullable] = ACTIONS(2198), - [anon_sym__Nonnull] = ACTIONS(2198), - [anon_sym__Nullable_result] = ACTIONS(2198), - [anon_sym__Null_unspecified] = ACTIONS(2198), - [anon_sym___autoreleasing] = ACTIONS(2198), - [anon_sym___nullable] = ACTIONS(2198), - [anon_sym___nonnull] = ACTIONS(2198), - [anon_sym___strong] = ACTIONS(2198), - [anon_sym___weak] = ACTIONS(2198), - [anon_sym___bridge] = ACTIONS(2198), - [anon_sym___bridge_transfer] = ACTIONS(2198), - [anon_sym___bridge_retained] = ACTIONS(2198), - [anon_sym___unsafe_unretained] = ACTIONS(2198), - [anon_sym___block] = ACTIONS(2198), - [anon_sym___kindof] = ACTIONS(2198), - [anon_sym___unused] = ACTIONS(2198), - [anon_sym__Complex] = ACTIONS(2198), - [anon_sym___complex] = ACTIONS(2198), - [anon_sym_IBOutlet] = ACTIONS(2198), - [anon_sym_IBInspectable] = ACTIONS(2198), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2198), - [anon_sym_COLON] = ACTIONS(2188), - [anon_sym_QMARK] = ACTIONS(2188), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(2198), - [anon_sym_DASH_GT] = ACTIONS(2188), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_method_attribute_specifier] = ACTIONS(2198), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2198), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2198), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2198), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2198), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2198), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2198), - [anon_sym_NS_AVAILABLE] = ACTIONS(2198), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2198), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2198), - [anon_sym_API_AVAILABLE] = ACTIONS(2198), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2198), - [anon_sym_API_DEPRECATED] = ACTIONS(2198), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2198), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2198), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2198), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2198), - [anon_sym___deprecated_msg] = ACTIONS(2198), - [anon_sym___deprecated_enum_msg] = ACTIONS(2198), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2198), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2198), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2198), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2198), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2198), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2198), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1625] = { - [sym_preproc_def] = STATE(1694), - [sym_preproc_function_def] = STATE(1694), - [sym_function_definition] = STATE(1694), - [sym_declaration] = STATE(1694), - [sym_type_definition] = STATE(1694), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_superclass_reference] = STATE(1638), - [sym__instance_variables] = STATE(1693), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1694), - [sym_synthesize_definition] = STATE(1694), - [sym_dynamic_definition] = STATE(1694), - [sym_method_definition] = STATE(1694), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2250), - [anon_sym_ATend] = ACTIONS(2252), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2254), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1626] = { - [sym_preproc_def] = STATE(1713), - [sym_preproc_function_def] = STATE(1713), - [sym_function_definition] = STATE(1713), - [sym_declaration] = STATE(1713), - [sym_type_definition] = STATE(1713), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_superclass_reference] = STATE(1637), - [sym__instance_variables] = STATE(1712), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1713), - [sym_synthesize_definition] = STATE(1713), - [sym_dynamic_definition] = STATE(1713), - [sym_method_definition] = STATE(1713), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2262), - [anon_sym_ATend] = ACTIONS(2264), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2266), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1627] = { - [sym_preproc_def] = STATE(1741), - [sym_preproc_function_def] = STATE(1741), - [sym_function_definition] = STATE(1741), - [sym_declaration] = STATE(1741), - [sym_type_definition] = STATE(1741), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_superclass_reference] = STATE(1642), - [sym__instance_variables] = STATE(1739), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1741), - [sym_synthesize_definition] = STATE(1741), - [sym_dynamic_definition] = STATE(1741), - [sym_method_definition] = STATE(1741), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(2268), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2270), - [anon_sym_ATend] = ACTIONS(2272), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2274), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1628] = { - [sym_preproc_def] = STATE(1767), - [sym_preproc_function_def] = STATE(1767), - [sym_function_definition] = STATE(1767), - [sym_declaration] = STATE(1767), - [sym_type_definition] = STATE(1767), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_superclass_reference] = STATE(1641), - [sym__instance_variables] = STATE(1706), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1767), - [sym_synthesize_definition] = STATE(1767), - [sym_dynamic_definition] = STATE(1767), - [sym_method_definition] = STATE(1767), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2278), - [anon_sym_ATend] = ACTIONS(2280), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2282), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1629] = { - [sym_preproc_def] = STATE(1748), - [sym_preproc_function_def] = STATE(1748), - [sym_function_definition] = STATE(1748), - [sym_declaration] = STATE(1748), - [sym_type_definition] = STATE(1748), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_superclass_reference] = STATE(1648), - [sym__instance_variables] = STATE(1764), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1748), - [sym_synthesize_definition] = STATE(1748), - [sym_dynamic_definition] = STATE(1748), - [sym_method_definition] = STATE(1748), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2286), - [anon_sym_ATend] = ACTIONS(2288), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2290), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1630] = { - [sym_preproc_def] = STATE(1735), - [sym_preproc_function_def] = STATE(1735), - [sym_function_definition] = STATE(1735), - [sym_declaration] = STATE(1735), - [sym_type_definition] = STATE(1735), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_superclass_reference] = STATE(1653), - [sym__instance_variables] = STATE(1733), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1735), - [sym_synthesize_definition] = STATE(1735), - [sym_dynamic_definition] = STATE(1735), - [sym_method_definition] = STATE(1735), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2294), - [anon_sym_ATend] = ACTIONS(2296), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2298), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1631] = { - [sym_preproc_def] = STATE(1756), - [sym_preproc_function_def] = STATE(1756), - [sym_function_definition] = STATE(1756), - [sym_declaration] = STATE(1756), - [sym_type_definition] = STATE(1756), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variables] = STATE(1753), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1756), - [sym_synthesize_definition] = STATE(1756), - [sym_dynamic_definition] = STATE(1756), - [sym_method_definition] = STATE(1756), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2300), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym___attribute] = ACTIONS(2300), - [anon_sym___attribute__] = ACTIONS(2300), - [anon_sym___declspec] = ACTIONS(2300), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_auto] = ACTIONS(2300), - [anon_sym_register] = ACTIONS(2300), - [anon_sym_inline] = ACTIONS(2300), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_volatile] = ACTIONS(2300), - [anon_sym_restrict] = ACTIONS(2300), - [anon_sym__Atomic] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_out] = ACTIONS(2300), - [anon_sym_inout] = ACTIONS(2300), - [anon_sym_bycopy] = ACTIONS(2300), - [anon_sym_byref] = ACTIONS(2300), - [anon_sym_oneway] = ACTIONS(2300), - [anon_sym__Nullable] = ACTIONS(2300), - [anon_sym__Nonnull] = ACTIONS(2300), - [anon_sym__Nullable_result] = ACTIONS(2300), - [anon_sym__Null_unspecified] = ACTIONS(2300), - [anon_sym___autoreleasing] = ACTIONS(2300), - [anon_sym___nullable] = ACTIONS(2300), - [anon_sym___nonnull] = ACTIONS(2300), - [anon_sym___strong] = ACTIONS(2300), - [anon_sym___weak] = ACTIONS(2300), - [anon_sym___bridge] = ACTIONS(2300), - [anon_sym___bridge_transfer] = ACTIONS(2300), - [anon_sym___bridge_retained] = ACTIONS(2300), - [anon_sym___unsafe_unretained] = ACTIONS(2300), - [anon_sym___block] = ACTIONS(2300), - [anon_sym___kindof] = ACTIONS(2300), - [anon_sym___unused] = ACTIONS(2300), - [anon_sym__Complex] = ACTIONS(2300), - [anon_sym___complex] = ACTIONS(2300), - [anon_sym_IBOutlet] = ACTIONS(2300), - [anon_sym_IBInspectable] = ACTIONS(2300), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2300), - [anon_sym_signed] = ACTIONS(2300), - [anon_sym_unsigned] = ACTIONS(2300), - [anon_sym_long] = ACTIONS(2300), - [anon_sym_short] = ACTIONS(2300), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [anon_sym_NS_ENUM] = ACTIONS(2300), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2300), - [anon_sym_NS_OPTIONS] = ACTIONS(2300), - [anon_sym_struct] = ACTIONS(2300), - [anon_sym_union] = ACTIONS(2300), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2302), - [anon_sym_ATend] = ACTIONS(2304), - [sym_method_attribute_specifier] = ACTIONS(2300), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2300), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE] = ACTIONS(2300), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_API_AVAILABLE] = ACTIONS(2300), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_API_DEPRECATED] = ACTIONS(2300), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2300), - [anon_sym___deprecated_msg] = ACTIONS(2300), - [anon_sym___deprecated_enum_msg] = ACTIONS(2300), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2300), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2300), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym___typeof] = ACTIONS(2300), - [anon_sym___typeof__] = ACTIONS(2300), - [sym_id] = ACTIONS(2300), - [sym_instancetype] = ACTIONS(2300), - [sym_Class] = ACTIONS(2300), - [sym_SEL] = ACTIONS(2300), - [sym_IMP] = ACTIONS(2300), - [sym_BOOL] = ACTIONS(2300), - [sym_auto] = ACTIONS(2300), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1632] = { - [sym_preproc_def] = STATE(1726), - [sym_preproc_function_def] = STATE(1726), - [sym_function_definition] = STATE(1726), - [sym_declaration] = STATE(1726), - [sym_type_definition] = STATE(1726), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variables] = STATE(1744), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1726), - [sym_synthesize_definition] = STATE(1726), - [sym_dynamic_definition] = STATE(1726), - [sym_method_definition] = STATE(1726), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2300), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym___attribute] = ACTIONS(2300), - [anon_sym___attribute__] = ACTIONS(2300), - [anon_sym___declspec] = ACTIONS(2300), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_auto] = ACTIONS(2300), - [anon_sym_register] = ACTIONS(2300), - [anon_sym_inline] = ACTIONS(2300), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_volatile] = ACTIONS(2300), - [anon_sym_restrict] = ACTIONS(2300), - [anon_sym__Atomic] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_out] = ACTIONS(2300), - [anon_sym_inout] = ACTIONS(2300), - [anon_sym_bycopy] = ACTIONS(2300), - [anon_sym_byref] = ACTIONS(2300), - [anon_sym_oneway] = ACTIONS(2300), - [anon_sym__Nullable] = ACTIONS(2300), - [anon_sym__Nonnull] = ACTIONS(2300), - [anon_sym__Nullable_result] = ACTIONS(2300), - [anon_sym__Null_unspecified] = ACTIONS(2300), - [anon_sym___autoreleasing] = ACTIONS(2300), - [anon_sym___nullable] = ACTIONS(2300), - [anon_sym___nonnull] = ACTIONS(2300), - [anon_sym___strong] = ACTIONS(2300), - [anon_sym___weak] = ACTIONS(2300), - [anon_sym___bridge] = ACTIONS(2300), - [anon_sym___bridge_transfer] = ACTIONS(2300), - [anon_sym___bridge_retained] = ACTIONS(2300), - [anon_sym___unsafe_unretained] = ACTIONS(2300), - [anon_sym___block] = ACTIONS(2300), - [anon_sym___kindof] = ACTIONS(2300), - [anon_sym___unused] = ACTIONS(2300), - [anon_sym__Complex] = ACTIONS(2300), - [anon_sym___complex] = ACTIONS(2300), - [anon_sym_IBOutlet] = ACTIONS(2300), - [anon_sym_IBInspectable] = ACTIONS(2300), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2300), - [anon_sym_signed] = ACTIONS(2300), - [anon_sym_unsigned] = ACTIONS(2300), - [anon_sym_long] = ACTIONS(2300), - [anon_sym_short] = ACTIONS(2300), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [anon_sym_NS_ENUM] = ACTIONS(2300), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2300), - [anon_sym_NS_OPTIONS] = ACTIONS(2300), - [anon_sym_struct] = ACTIONS(2300), - [anon_sym_union] = ACTIONS(2300), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2306), - [anon_sym_ATend] = ACTIONS(2308), - [sym_method_attribute_specifier] = ACTIONS(2300), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2300), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE] = ACTIONS(2300), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_API_AVAILABLE] = ACTIONS(2300), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_API_DEPRECATED] = ACTIONS(2300), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2300), - [anon_sym___deprecated_msg] = ACTIONS(2300), - [anon_sym___deprecated_enum_msg] = ACTIONS(2300), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2300), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2300), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym___typeof] = ACTIONS(2300), - [anon_sym___typeof__] = ACTIONS(2300), - [sym_id] = ACTIONS(2300), - [sym_instancetype] = ACTIONS(2300), - [sym_Class] = ACTIONS(2300), - [sym_SEL] = ACTIONS(2300), - [sym_IMP] = ACTIONS(2300), - [sym_BOOL] = ACTIONS(2300), - [sym_auto] = ACTIONS(2300), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1633] = { - [sym_preproc_def] = STATE(2675), - [sym_preproc_function_def] = STATE(2675), - [sym_declaration] = STATE(2675), - [sym_type_definition] = STATE(2675), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2675), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1785), - [sym_protocol_qualifiers] = STATE(1782), - [sym_parameterized_class_type_arguments] = STATE(5202), - [sym__instance_variables] = STATE(2674), - [aux_sym__interface_declaration] = STATE(2675), - [sym__interface_declaration_specifier] = STATE(2675), - [sym_method_declaration] = STATE(2675), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2675), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2318), - [anon_sym_ATend] = ACTIONS(2320), - [sym_optional] = ACTIONS(2322), - [sym_required] = ACTIONS(2322), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1634] = { - [sym_preproc_def] = STATE(1761), - [sym_preproc_function_def] = STATE(1761), - [sym_function_definition] = STATE(1761), - [sym_declaration] = STATE(1761), - [sym_type_definition] = STATE(1761), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variables] = STATE(1760), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1761), - [sym_synthesize_definition] = STATE(1761), - [sym_dynamic_definition] = STATE(1761), - [sym_method_definition] = STATE(1761), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2300), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym___attribute] = ACTIONS(2300), - [anon_sym___attribute__] = ACTIONS(2300), - [anon_sym___declspec] = ACTIONS(2300), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_auto] = ACTIONS(2300), - [anon_sym_register] = ACTIONS(2300), - [anon_sym_inline] = ACTIONS(2300), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_volatile] = ACTIONS(2300), - [anon_sym_restrict] = ACTIONS(2300), - [anon_sym__Atomic] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_out] = ACTIONS(2300), - [anon_sym_inout] = ACTIONS(2300), - [anon_sym_bycopy] = ACTIONS(2300), - [anon_sym_byref] = ACTIONS(2300), - [anon_sym_oneway] = ACTIONS(2300), - [anon_sym__Nullable] = ACTIONS(2300), - [anon_sym__Nonnull] = ACTIONS(2300), - [anon_sym__Nullable_result] = ACTIONS(2300), - [anon_sym__Null_unspecified] = ACTIONS(2300), - [anon_sym___autoreleasing] = ACTIONS(2300), - [anon_sym___nullable] = ACTIONS(2300), - [anon_sym___nonnull] = ACTIONS(2300), - [anon_sym___strong] = ACTIONS(2300), - [anon_sym___weak] = ACTIONS(2300), - [anon_sym___bridge] = ACTIONS(2300), - [anon_sym___bridge_transfer] = ACTIONS(2300), - [anon_sym___bridge_retained] = ACTIONS(2300), - [anon_sym___unsafe_unretained] = ACTIONS(2300), - [anon_sym___block] = ACTIONS(2300), - [anon_sym___kindof] = ACTIONS(2300), - [anon_sym___unused] = ACTIONS(2300), - [anon_sym__Complex] = ACTIONS(2300), - [anon_sym___complex] = ACTIONS(2300), - [anon_sym_IBOutlet] = ACTIONS(2300), - [anon_sym_IBInspectable] = ACTIONS(2300), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2300), - [anon_sym_signed] = ACTIONS(2300), - [anon_sym_unsigned] = ACTIONS(2300), - [anon_sym_long] = ACTIONS(2300), - [anon_sym_short] = ACTIONS(2300), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [anon_sym_NS_ENUM] = ACTIONS(2300), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2300), - [anon_sym_NS_OPTIONS] = ACTIONS(2300), - [anon_sym_struct] = ACTIONS(2300), - [anon_sym_union] = ACTIONS(2300), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2326), - [anon_sym_ATend] = ACTIONS(2328), - [sym_method_attribute_specifier] = ACTIONS(2300), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2300), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE] = ACTIONS(2300), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_API_AVAILABLE] = ACTIONS(2300), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_API_DEPRECATED] = ACTIONS(2300), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2300), - [anon_sym___deprecated_msg] = ACTIONS(2300), - [anon_sym___deprecated_enum_msg] = ACTIONS(2300), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2300), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2300), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym___typeof] = ACTIONS(2300), - [anon_sym___typeof__] = ACTIONS(2300), - [sym_id] = ACTIONS(2300), - [sym_instancetype] = ACTIONS(2300), - [sym_Class] = ACTIONS(2300), - [sym_SEL] = ACTIONS(2300), - [sym_IMP] = ACTIONS(2300), - [sym_BOOL] = ACTIONS(2300), - [sym_auto] = ACTIONS(2300), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1635] = { - [sym_preproc_def] = STATE(1710), - [sym_preproc_function_def] = STATE(1710), - [sym_function_definition] = STATE(1710), - [sym_declaration] = STATE(1710), - [sym_type_definition] = STATE(1710), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variables] = STATE(1711), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1710), - [sym_synthesize_definition] = STATE(1710), - [sym_dynamic_definition] = STATE(1710), - [sym_method_definition] = STATE(1710), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2300), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym___attribute] = ACTIONS(2300), - [anon_sym___attribute__] = ACTIONS(2300), - [anon_sym___declspec] = ACTIONS(2300), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_auto] = ACTIONS(2300), - [anon_sym_register] = ACTIONS(2300), - [anon_sym_inline] = ACTIONS(2300), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_volatile] = ACTIONS(2300), - [anon_sym_restrict] = ACTIONS(2300), - [anon_sym__Atomic] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_out] = ACTIONS(2300), - [anon_sym_inout] = ACTIONS(2300), - [anon_sym_bycopy] = ACTIONS(2300), - [anon_sym_byref] = ACTIONS(2300), - [anon_sym_oneway] = ACTIONS(2300), - [anon_sym__Nullable] = ACTIONS(2300), - [anon_sym__Nonnull] = ACTIONS(2300), - [anon_sym__Nullable_result] = ACTIONS(2300), - [anon_sym__Null_unspecified] = ACTIONS(2300), - [anon_sym___autoreleasing] = ACTIONS(2300), - [anon_sym___nullable] = ACTIONS(2300), - [anon_sym___nonnull] = ACTIONS(2300), - [anon_sym___strong] = ACTIONS(2300), - [anon_sym___weak] = ACTIONS(2300), - [anon_sym___bridge] = ACTIONS(2300), - [anon_sym___bridge_transfer] = ACTIONS(2300), - [anon_sym___bridge_retained] = ACTIONS(2300), - [anon_sym___unsafe_unretained] = ACTIONS(2300), - [anon_sym___block] = ACTIONS(2300), - [anon_sym___kindof] = ACTIONS(2300), - [anon_sym___unused] = ACTIONS(2300), - [anon_sym__Complex] = ACTIONS(2300), - [anon_sym___complex] = ACTIONS(2300), - [anon_sym_IBOutlet] = ACTIONS(2300), - [anon_sym_IBInspectable] = ACTIONS(2300), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2300), - [anon_sym_signed] = ACTIONS(2300), - [anon_sym_unsigned] = ACTIONS(2300), - [anon_sym_long] = ACTIONS(2300), - [anon_sym_short] = ACTIONS(2300), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [anon_sym_NS_ENUM] = ACTIONS(2300), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2300), - [anon_sym_NS_OPTIONS] = ACTIONS(2300), - [anon_sym_struct] = ACTIONS(2300), - [anon_sym_union] = ACTIONS(2300), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2330), - [anon_sym_ATend] = ACTIONS(2332), - [sym_method_attribute_specifier] = ACTIONS(2300), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2300), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE] = ACTIONS(2300), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_API_AVAILABLE] = ACTIONS(2300), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_API_DEPRECATED] = ACTIONS(2300), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2300), - [anon_sym___deprecated_msg] = ACTIONS(2300), - [anon_sym___deprecated_enum_msg] = ACTIONS(2300), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2300), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2300), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym___typeof] = ACTIONS(2300), - [anon_sym___typeof__] = ACTIONS(2300), - [sym_id] = ACTIONS(2300), - [sym_instancetype] = ACTIONS(2300), - [sym_Class] = ACTIONS(2300), - [sym_SEL] = ACTIONS(2300), - [sym_IMP] = ACTIONS(2300), - [sym_BOOL] = ACTIONS(2300), - [sym_auto] = ACTIONS(2300), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1636] = { - [sym_preproc_def] = STATE(1728), - [sym_preproc_function_def] = STATE(1728), - [sym_function_definition] = STATE(1728), - [sym_declaration] = STATE(1728), - [sym_type_definition] = STATE(1728), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variables] = STATE(1687), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1728), - [sym_synthesize_definition] = STATE(1728), - [sym_dynamic_definition] = STATE(1728), - [sym_method_definition] = STATE(1728), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2300), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym___attribute] = ACTIONS(2300), - [anon_sym___attribute__] = ACTIONS(2300), - [anon_sym___declspec] = ACTIONS(2300), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_auto] = ACTIONS(2300), - [anon_sym_register] = ACTIONS(2300), - [anon_sym_inline] = ACTIONS(2300), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_volatile] = ACTIONS(2300), - [anon_sym_restrict] = ACTIONS(2300), - [anon_sym__Atomic] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_out] = ACTIONS(2300), - [anon_sym_inout] = ACTIONS(2300), - [anon_sym_bycopy] = ACTIONS(2300), - [anon_sym_byref] = ACTIONS(2300), - [anon_sym_oneway] = ACTIONS(2300), - [anon_sym__Nullable] = ACTIONS(2300), - [anon_sym__Nonnull] = ACTIONS(2300), - [anon_sym__Nullable_result] = ACTIONS(2300), - [anon_sym__Null_unspecified] = ACTIONS(2300), - [anon_sym___autoreleasing] = ACTIONS(2300), - [anon_sym___nullable] = ACTIONS(2300), - [anon_sym___nonnull] = ACTIONS(2300), - [anon_sym___strong] = ACTIONS(2300), - [anon_sym___weak] = ACTIONS(2300), - [anon_sym___bridge] = ACTIONS(2300), - [anon_sym___bridge_transfer] = ACTIONS(2300), - [anon_sym___bridge_retained] = ACTIONS(2300), - [anon_sym___unsafe_unretained] = ACTIONS(2300), - [anon_sym___block] = ACTIONS(2300), - [anon_sym___kindof] = ACTIONS(2300), - [anon_sym___unused] = ACTIONS(2300), - [anon_sym__Complex] = ACTIONS(2300), - [anon_sym___complex] = ACTIONS(2300), - [anon_sym_IBOutlet] = ACTIONS(2300), - [anon_sym_IBInspectable] = ACTIONS(2300), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2300), - [anon_sym_signed] = ACTIONS(2300), - [anon_sym_unsigned] = ACTIONS(2300), - [anon_sym_long] = ACTIONS(2300), - [anon_sym_short] = ACTIONS(2300), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [anon_sym_NS_ENUM] = ACTIONS(2300), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2300), - [anon_sym_NS_OPTIONS] = ACTIONS(2300), - [anon_sym_struct] = ACTIONS(2300), - [anon_sym_union] = ACTIONS(2300), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2334), - [anon_sym_ATend] = ACTIONS(2336), - [sym_method_attribute_specifier] = ACTIONS(2300), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2300), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE] = ACTIONS(2300), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_API_AVAILABLE] = ACTIONS(2300), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_API_DEPRECATED] = ACTIONS(2300), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2300), - [anon_sym___deprecated_msg] = ACTIONS(2300), - [anon_sym___deprecated_enum_msg] = ACTIONS(2300), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2300), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2300), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym___typeof] = ACTIONS(2300), - [anon_sym___typeof__] = ACTIONS(2300), - [sym_id] = ACTIONS(2300), - [sym_instancetype] = ACTIONS(2300), - [sym_Class] = ACTIONS(2300), - [sym_SEL] = ACTIONS(2300), - [sym_IMP] = ACTIONS(2300), - [sym_BOOL] = ACTIONS(2300), - [sym_auto] = ACTIONS(2300), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1637] = { - [sym_preproc_def] = STATE(1703), - [sym_preproc_function_def] = STATE(1703), - [sym_function_definition] = STATE(1703), - [sym_declaration] = STATE(1703), - [sym_type_definition] = STATE(1703), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variables] = STATE(1705), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1703), - [sym_synthesize_definition] = STATE(1703), - [sym_dynamic_definition] = STATE(1703), - [sym_method_definition] = STATE(1703), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2338), - [anon_sym_ATend] = ACTIONS(2340), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2342), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1638] = { - [sym_preproc_def] = STATE(1721), - [sym_preproc_function_def] = STATE(1721), - [sym_function_definition] = STATE(1721), - [sym_declaration] = STATE(1721), - [sym_type_definition] = STATE(1721), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variables] = STATE(1709), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1721), - [sym_synthesize_definition] = STATE(1721), - [sym_dynamic_definition] = STATE(1721), - [sym_method_definition] = STATE(1721), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2344), - [anon_sym_ATend] = ACTIONS(2346), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2348), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1639] = { - [sym_preproc_def] = STATE(2385), - [sym_preproc_function_def] = STATE(2385), - [sym_declaration] = STATE(2385), - [sym_type_definition] = STATE(2385), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2385), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1779), - [sym_protocol_qualifiers] = STATE(1778), - [sym_parameterized_class_type_arguments] = STATE(5219), - [sym__instance_variables] = STATE(2386), - [aux_sym__interface_declaration] = STATE(2385), - [sym__interface_declaration_specifier] = STATE(2385), - [sym_method_declaration] = STATE(2385), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2385), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2352), - [anon_sym_ATend] = ACTIONS(2354), - [sym_optional] = ACTIONS(2356), - [sym_required] = ACTIONS(2356), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1640] = { - [sym_preproc_def] = STATE(1707), - [sym_preproc_function_def] = STATE(1707), - [sym_function_definition] = STATE(1707), - [sym_declaration] = STATE(1707), - [sym_type_definition] = STATE(1707), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variables] = STATE(1701), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1707), - [sym_synthesize_definition] = STATE(1707), - [sym_dynamic_definition] = STATE(1707), - [sym_method_definition] = STATE(1707), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2300), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym___attribute] = ACTIONS(2300), - [anon_sym___attribute__] = ACTIONS(2300), - [anon_sym___declspec] = ACTIONS(2300), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_auto] = ACTIONS(2300), - [anon_sym_register] = ACTIONS(2300), - [anon_sym_inline] = ACTIONS(2300), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_volatile] = ACTIONS(2300), - [anon_sym_restrict] = ACTIONS(2300), - [anon_sym__Atomic] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_out] = ACTIONS(2300), - [anon_sym_inout] = ACTIONS(2300), - [anon_sym_bycopy] = ACTIONS(2300), - [anon_sym_byref] = ACTIONS(2300), - [anon_sym_oneway] = ACTIONS(2300), - [anon_sym__Nullable] = ACTIONS(2300), - [anon_sym__Nonnull] = ACTIONS(2300), - [anon_sym__Nullable_result] = ACTIONS(2300), - [anon_sym__Null_unspecified] = ACTIONS(2300), - [anon_sym___autoreleasing] = ACTIONS(2300), - [anon_sym___nullable] = ACTIONS(2300), - [anon_sym___nonnull] = ACTIONS(2300), - [anon_sym___strong] = ACTIONS(2300), - [anon_sym___weak] = ACTIONS(2300), - [anon_sym___bridge] = ACTIONS(2300), - [anon_sym___bridge_transfer] = ACTIONS(2300), - [anon_sym___bridge_retained] = ACTIONS(2300), - [anon_sym___unsafe_unretained] = ACTIONS(2300), - [anon_sym___block] = ACTIONS(2300), - [anon_sym___kindof] = ACTIONS(2300), - [anon_sym___unused] = ACTIONS(2300), - [anon_sym__Complex] = ACTIONS(2300), - [anon_sym___complex] = ACTIONS(2300), - [anon_sym_IBOutlet] = ACTIONS(2300), - [anon_sym_IBInspectable] = ACTIONS(2300), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2300), - [anon_sym_signed] = ACTIONS(2300), - [anon_sym_unsigned] = ACTIONS(2300), - [anon_sym_long] = ACTIONS(2300), - [anon_sym_short] = ACTIONS(2300), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [anon_sym_NS_ENUM] = ACTIONS(2300), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2300), - [anon_sym_NS_OPTIONS] = ACTIONS(2300), - [anon_sym_struct] = ACTIONS(2300), - [anon_sym_union] = ACTIONS(2300), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2358), - [anon_sym_ATend] = ACTIONS(2360), - [sym_method_attribute_specifier] = ACTIONS(2300), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2300), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE] = ACTIONS(2300), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_API_AVAILABLE] = ACTIONS(2300), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_API_DEPRECATED] = ACTIONS(2300), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2300), - [anon_sym___deprecated_msg] = ACTIONS(2300), - [anon_sym___deprecated_enum_msg] = ACTIONS(2300), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2300), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2300), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym___typeof] = ACTIONS(2300), - [anon_sym___typeof__] = ACTIONS(2300), - [sym_id] = ACTIONS(2300), - [sym_instancetype] = ACTIONS(2300), - [sym_Class] = ACTIONS(2300), - [sym_SEL] = ACTIONS(2300), - [sym_IMP] = ACTIONS(2300), - [sym_BOOL] = ACTIONS(2300), - [sym_auto] = ACTIONS(2300), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1641] = { - [sym_preproc_def] = STATE(1729), - [sym_preproc_function_def] = STATE(1729), - [sym_function_definition] = STATE(1729), - [sym_declaration] = STATE(1729), - [sym_type_definition] = STATE(1729), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variables] = STATE(1686), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1729), - [sym_synthesize_definition] = STATE(1729), - [sym_dynamic_definition] = STATE(1729), - [sym_method_definition] = STATE(1729), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2362), - [anon_sym_ATend] = ACTIONS(2364), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2366), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1642] = { - [sym_preproc_def] = STATE(1762), - [sym_preproc_function_def] = STATE(1762), - [sym_function_definition] = STATE(1762), - [sym_declaration] = STATE(1762), - [sym_type_definition] = STATE(1762), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variables] = STATE(1758), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1762), - [sym_synthesize_definition] = STATE(1762), - [sym_dynamic_definition] = STATE(1762), - [sym_method_definition] = STATE(1762), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2368), - [anon_sym_ATend] = ACTIONS(2370), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2372), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1643] = { - [sym_preproc_def] = STATE(1747), - [sym_preproc_function_def] = STATE(1747), - [sym_function_definition] = STATE(1747), - [sym_declaration] = STATE(1747), - [sym_type_definition] = STATE(1747), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variables] = STATE(1745), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1747), - [sym_synthesize_definition] = STATE(1747), - [sym_dynamic_definition] = STATE(1747), - [sym_method_definition] = STATE(1747), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2300), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym___attribute] = ACTIONS(2300), - [anon_sym___attribute__] = ACTIONS(2300), - [anon_sym___declspec] = ACTIONS(2300), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_auto] = ACTIONS(2300), - [anon_sym_register] = ACTIONS(2300), - [anon_sym_inline] = ACTIONS(2300), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_volatile] = ACTIONS(2300), - [anon_sym_restrict] = ACTIONS(2300), - [anon_sym__Atomic] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_out] = ACTIONS(2300), - [anon_sym_inout] = ACTIONS(2300), - [anon_sym_bycopy] = ACTIONS(2300), - [anon_sym_byref] = ACTIONS(2300), - [anon_sym_oneway] = ACTIONS(2300), - [anon_sym__Nullable] = ACTIONS(2300), - [anon_sym__Nonnull] = ACTIONS(2300), - [anon_sym__Nullable_result] = ACTIONS(2300), - [anon_sym__Null_unspecified] = ACTIONS(2300), - [anon_sym___autoreleasing] = ACTIONS(2300), - [anon_sym___nullable] = ACTIONS(2300), - [anon_sym___nonnull] = ACTIONS(2300), - [anon_sym___strong] = ACTIONS(2300), - [anon_sym___weak] = ACTIONS(2300), - [anon_sym___bridge] = ACTIONS(2300), - [anon_sym___bridge_transfer] = ACTIONS(2300), - [anon_sym___bridge_retained] = ACTIONS(2300), - [anon_sym___unsafe_unretained] = ACTIONS(2300), - [anon_sym___block] = ACTIONS(2300), - [anon_sym___kindof] = ACTIONS(2300), - [anon_sym___unused] = ACTIONS(2300), - [anon_sym__Complex] = ACTIONS(2300), - [anon_sym___complex] = ACTIONS(2300), - [anon_sym_IBOutlet] = ACTIONS(2300), - [anon_sym_IBInspectable] = ACTIONS(2300), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2300), - [anon_sym_signed] = ACTIONS(2300), - [anon_sym_unsigned] = ACTIONS(2300), - [anon_sym_long] = ACTIONS(2300), - [anon_sym_short] = ACTIONS(2300), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [anon_sym_NS_ENUM] = ACTIONS(2300), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2300), - [anon_sym_NS_OPTIONS] = ACTIONS(2300), - [anon_sym_struct] = ACTIONS(2300), - [anon_sym_union] = ACTIONS(2300), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2374), - [anon_sym_ATend] = ACTIONS(2376), - [sym_method_attribute_specifier] = ACTIONS(2300), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2300), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE] = ACTIONS(2300), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_API_AVAILABLE] = ACTIONS(2300), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_API_DEPRECATED] = ACTIONS(2300), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2300), - [anon_sym___deprecated_msg] = ACTIONS(2300), - [anon_sym___deprecated_enum_msg] = ACTIONS(2300), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2300), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2300), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym___typeof] = ACTIONS(2300), - [anon_sym___typeof__] = ACTIONS(2300), - [sym_id] = ACTIONS(2300), - [sym_instancetype] = ACTIONS(2300), - [sym_Class] = ACTIONS(2300), - [sym_SEL] = ACTIONS(2300), - [sym_IMP] = ACTIONS(2300), - [sym_BOOL] = ACTIONS(2300), - [sym_auto] = ACTIONS(2300), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1644] = { - [sym_preproc_def] = STATE(1698), - [sym_preproc_function_def] = STATE(1698), - [sym_function_definition] = STATE(1698), - [sym_declaration] = STATE(1698), - [sym_type_definition] = STATE(1698), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variables] = STATE(1702), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1698), - [sym_synthesize_definition] = STATE(1698), - [sym_dynamic_definition] = STATE(1698), - [sym_method_definition] = STATE(1698), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2300), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym___attribute] = ACTIONS(2300), - [anon_sym___attribute__] = ACTIONS(2300), - [anon_sym___declspec] = ACTIONS(2300), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_auto] = ACTIONS(2300), - [anon_sym_register] = ACTIONS(2300), - [anon_sym_inline] = ACTIONS(2300), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_volatile] = ACTIONS(2300), - [anon_sym_restrict] = ACTIONS(2300), - [anon_sym__Atomic] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_out] = ACTIONS(2300), - [anon_sym_inout] = ACTIONS(2300), - [anon_sym_bycopy] = ACTIONS(2300), - [anon_sym_byref] = ACTIONS(2300), - [anon_sym_oneway] = ACTIONS(2300), - [anon_sym__Nullable] = ACTIONS(2300), - [anon_sym__Nonnull] = ACTIONS(2300), - [anon_sym__Nullable_result] = ACTIONS(2300), - [anon_sym__Null_unspecified] = ACTIONS(2300), - [anon_sym___autoreleasing] = ACTIONS(2300), - [anon_sym___nullable] = ACTIONS(2300), - [anon_sym___nonnull] = ACTIONS(2300), - [anon_sym___strong] = ACTIONS(2300), - [anon_sym___weak] = ACTIONS(2300), - [anon_sym___bridge] = ACTIONS(2300), - [anon_sym___bridge_transfer] = ACTIONS(2300), - [anon_sym___bridge_retained] = ACTIONS(2300), - [anon_sym___unsafe_unretained] = ACTIONS(2300), - [anon_sym___block] = ACTIONS(2300), - [anon_sym___kindof] = ACTIONS(2300), - [anon_sym___unused] = ACTIONS(2300), - [anon_sym__Complex] = ACTIONS(2300), - [anon_sym___complex] = ACTIONS(2300), - [anon_sym_IBOutlet] = ACTIONS(2300), - [anon_sym_IBInspectable] = ACTIONS(2300), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2300), - [anon_sym_signed] = ACTIONS(2300), - [anon_sym_unsigned] = ACTIONS(2300), - [anon_sym_long] = ACTIONS(2300), - [anon_sym_short] = ACTIONS(2300), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [anon_sym_NS_ENUM] = ACTIONS(2300), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2300), - [anon_sym_NS_OPTIONS] = ACTIONS(2300), - [anon_sym_struct] = ACTIONS(2300), - [anon_sym_union] = ACTIONS(2300), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2378), - [anon_sym_ATend] = ACTIONS(2380), - [sym_method_attribute_specifier] = ACTIONS(2300), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2300), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE] = ACTIONS(2300), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_API_AVAILABLE] = ACTIONS(2300), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_API_DEPRECATED] = ACTIONS(2300), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2300), - [anon_sym___deprecated_msg] = ACTIONS(2300), - [anon_sym___deprecated_enum_msg] = ACTIONS(2300), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2300), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2300), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym___typeof] = ACTIONS(2300), - [anon_sym___typeof__] = ACTIONS(2300), - [sym_id] = ACTIONS(2300), - [sym_instancetype] = ACTIONS(2300), - [sym_Class] = ACTIONS(2300), - [sym_SEL] = ACTIONS(2300), - [sym_IMP] = ACTIONS(2300), - [sym_BOOL] = ACTIONS(2300), - [sym_auto] = ACTIONS(2300), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1645] = { - [sym_preproc_def] = STATE(2306), - [sym_preproc_function_def] = STATE(2306), - [sym_declaration] = STATE(2306), - [sym_type_definition] = STATE(2306), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2306), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1771), - [sym_protocol_qualifiers] = STATE(1813), - [sym_parameterized_class_type_arguments] = STATE(5033), - [sym__instance_variables] = STATE(2305), - [aux_sym__interface_declaration] = STATE(2306), - [sym__interface_declaration_specifier] = STATE(2306), - [sym_method_declaration] = STATE(2306), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2306), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2384), - [anon_sym_ATend] = ACTIONS(2386), - [sym_optional] = ACTIONS(2388), - [sym_required] = ACTIONS(2388), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1646] = { - [sym_preproc_def] = STATE(1752), - [sym_preproc_function_def] = STATE(1752), - [sym_function_definition] = STATE(1752), - [sym_declaration] = STATE(1752), - [sym_type_definition] = STATE(1752), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variables] = STATE(1754), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1752), - [sym_synthesize_definition] = STATE(1752), - [sym_dynamic_definition] = STATE(1752), - [sym_method_definition] = STATE(1752), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2300), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym___attribute] = ACTIONS(2300), - [anon_sym___attribute__] = ACTIONS(2300), - [anon_sym___declspec] = ACTIONS(2300), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_auto] = ACTIONS(2300), - [anon_sym_register] = ACTIONS(2300), - [anon_sym_inline] = ACTIONS(2300), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_volatile] = ACTIONS(2300), - [anon_sym_restrict] = ACTIONS(2300), - [anon_sym__Atomic] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_out] = ACTIONS(2300), - [anon_sym_inout] = ACTIONS(2300), - [anon_sym_bycopy] = ACTIONS(2300), - [anon_sym_byref] = ACTIONS(2300), - [anon_sym_oneway] = ACTIONS(2300), - [anon_sym__Nullable] = ACTIONS(2300), - [anon_sym__Nonnull] = ACTIONS(2300), - [anon_sym__Nullable_result] = ACTIONS(2300), - [anon_sym__Null_unspecified] = ACTIONS(2300), - [anon_sym___autoreleasing] = ACTIONS(2300), - [anon_sym___nullable] = ACTIONS(2300), - [anon_sym___nonnull] = ACTIONS(2300), - [anon_sym___strong] = ACTIONS(2300), - [anon_sym___weak] = ACTIONS(2300), - [anon_sym___bridge] = ACTIONS(2300), - [anon_sym___bridge_transfer] = ACTIONS(2300), - [anon_sym___bridge_retained] = ACTIONS(2300), - [anon_sym___unsafe_unretained] = ACTIONS(2300), - [anon_sym___block] = ACTIONS(2300), - [anon_sym___kindof] = ACTIONS(2300), - [anon_sym___unused] = ACTIONS(2300), - [anon_sym__Complex] = ACTIONS(2300), - [anon_sym___complex] = ACTIONS(2300), - [anon_sym_IBOutlet] = ACTIONS(2300), - [anon_sym_IBInspectable] = ACTIONS(2300), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2300), - [anon_sym_signed] = ACTIONS(2300), - [anon_sym_unsigned] = ACTIONS(2300), - [anon_sym_long] = ACTIONS(2300), - [anon_sym_short] = ACTIONS(2300), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [anon_sym_NS_ENUM] = ACTIONS(2300), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2300), - [anon_sym_NS_OPTIONS] = ACTIONS(2300), - [anon_sym_struct] = ACTIONS(2300), - [anon_sym_union] = ACTIONS(2300), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2390), - [anon_sym_ATend] = ACTIONS(2392), - [sym_method_attribute_specifier] = ACTIONS(2300), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2300), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE] = ACTIONS(2300), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_API_AVAILABLE] = ACTIONS(2300), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_API_DEPRECATED] = ACTIONS(2300), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2300), - [anon_sym___deprecated_msg] = ACTIONS(2300), - [anon_sym___deprecated_enum_msg] = ACTIONS(2300), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2300), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2300), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym___typeof] = ACTIONS(2300), - [anon_sym___typeof__] = ACTIONS(2300), - [sym_id] = ACTIONS(2300), - [sym_instancetype] = ACTIONS(2300), - [sym_Class] = ACTIONS(2300), - [sym_SEL] = ACTIONS(2300), - [sym_IMP] = ACTIONS(2300), - [sym_BOOL] = ACTIONS(2300), - [sym_auto] = ACTIONS(2300), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1647] = { - [sym_preproc_def] = STATE(2409), - [sym_preproc_function_def] = STATE(2409), - [sym_declaration] = STATE(2409), - [sym_type_definition] = STATE(2409), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2409), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1784), - [sym_protocol_qualifiers] = STATE(1787), - [sym_parameterized_class_type_arguments] = STATE(1639), - [sym__instance_variables] = STATE(2410), - [aux_sym__interface_declaration] = STATE(2409), - [sym__interface_declaration_specifier] = STATE(2409), - [sym_method_declaration] = STATE(2409), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2409), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2396), - [anon_sym_ATend] = ACTIONS(2398), - [sym_optional] = ACTIONS(2400), - [sym_required] = ACTIONS(2400), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1648] = { - [sym_preproc_def] = STATE(1765), - [sym_preproc_function_def] = STATE(1765), - [sym_function_definition] = STATE(1765), - [sym_declaration] = STATE(1765), - [sym_type_definition] = STATE(1765), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variables] = STATE(1763), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1765), - [sym_synthesize_definition] = STATE(1765), - [sym_dynamic_definition] = STATE(1765), - [sym_method_definition] = STATE(1765), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2402), - [anon_sym_ATend] = ACTIONS(2404), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2406), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1649] = { - [sym_preproc_def] = STATE(2056), - [sym_preproc_function_def] = STATE(2056), - [sym_declaration] = STATE(2056), - [sym_type_definition] = STATE(2056), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2056), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1806), - [sym_protocol_qualifiers] = STATE(1910), - [sym_parameterized_class_type_arguments] = STATE(5148), - [sym__instance_variables] = STATE(2055), - [aux_sym__interface_declaration] = STATE(2056), - [sym__interface_declaration_specifier] = STATE(2056), - [sym_method_declaration] = STATE(2056), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2056), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2410), - [anon_sym_ATend] = ACTIONS(2412), - [sym_optional] = ACTIONS(2414), - [sym_required] = ACTIONS(2414), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1650] = { - [sym_preproc_def] = STATE(2052), - [sym_preproc_function_def] = STATE(2052), - [sym_declaration] = STATE(2052), - [sym_type_definition] = STATE(2052), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2052), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1812), - [sym_protocol_qualifiers] = STATE(1808), - [sym_parameterized_class_type_arguments] = STATE(1645), - [sym__instance_variables] = STATE(2051), - [aux_sym__interface_declaration] = STATE(2052), - [sym__interface_declaration_specifier] = STATE(2052), - [sym_method_declaration] = STATE(2052), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2052), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2418), - [anon_sym_ATend] = ACTIONS(2420), - [sym_optional] = ACTIONS(2422), - [sym_required] = ACTIONS(2422), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1651] = { - [sym_preproc_def] = STATE(2562), - [sym_preproc_function_def] = STATE(2562), - [sym_declaration] = STATE(2562), - [sym_type_definition] = STATE(2562), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2562), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1795), - [sym_protocol_qualifiers] = STATE(1796), - [sym_parameterized_class_type_arguments] = STATE(1633), - [sym__instance_variables] = STATE(2561), - [aux_sym__interface_declaration] = STATE(2562), - [sym__interface_declaration_specifier] = STATE(2562), - [sym_method_declaration] = STATE(2562), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2562), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(2424), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2426), - [anon_sym_ATend] = ACTIONS(2428), - [sym_optional] = ACTIONS(2430), - [sym_required] = ACTIONS(2430), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1652] = { - [sym_preproc_def] = STATE(2568), - [sym_preproc_function_def] = STATE(2568), - [sym_declaration] = STATE(2568), - [sym_type_definition] = STATE(2568), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2568), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1797), - [sym_protocol_qualifiers] = STATE(1904), - [sym_parameterized_class_type_arguments] = STATE(5165), - [sym__instance_variables] = STATE(2565), - [aux_sym__interface_declaration] = STATE(2568), - [sym__interface_declaration_specifier] = STATE(2568), - [sym_method_declaration] = STATE(2568), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2568), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(2432), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2434), - [anon_sym_ATend] = ACTIONS(2436), - [sym_optional] = ACTIONS(2438), - [sym_required] = ACTIONS(2438), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1653] = { - [sym_preproc_def] = STATE(1737), - [sym_preproc_function_def] = STATE(1737), - [sym_function_definition] = STATE(1737), - [sym_declaration] = STATE(1737), - [sym_type_definition] = STATE(1737), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variables] = STATE(1738), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1737), - [sym_synthesize_definition] = STATE(1737), - [sym_dynamic_definition] = STATE(1737), - [sym_method_definition] = STATE(1737), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2440), - [anon_sym_ATend] = ACTIONS(2442), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2444), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1654] = { - [sym_preproc_def] = STATE(1725), - [sym_preproc_function_def] = STATE(1725), - [sym_function_definition] = STATE(1725), - [sym_declaration] = STATE(1725), - [sym_type_definition] = STATE(1725), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variables] = STATE(1724), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1725), - [sym_synthesize_definition] = STATE(1725), - [sym_dynamic_definition] = STATE(1725), - [sym_method_definition] = STATE(1725), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2300), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym___attribute] = ACTIONS(2300), - [anon_sym___attribute__] = ACTIONS(2300), - [anon_sym___declspec] = ACTIONS(2300), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_auto] = ACTIONS(2300), - [anon_sym_register] = ACTIONS(2300), - [anon_sym_inline] = ACTIONS(2300), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_volatile] = ACTIONS(2300), - [anon_sym_restrict] = ACTIONS(2300), - [anon_sym__Atomic] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_out] = ACTIONS(2300), - [anon_sym_inout] = ACTIONS(2300), - [anon_sym_bycopy] = ACTIONS(2300), - [anon_sym_byref] = ACTIONS(2300), - [anon_sym_oneway] = ACTIONS(2300), - [anon_sym__Nullable] = ACTIONS(2300), - [anon_sym__Nonnull] = ACTIONS(2300), - [anon_sym__Nullable_result] = ACTIONS(2300), - [anon_sym__Null_unspecified] = ACTIONS(2300), - [anon_sym___autoreleasing] = ACTIONS(2300), - [anon_sym___nullable] = ACTIONS(2300), - [anon_sym___nonnull] = ACTIONS(2300), - [anon_sym___strong] = ACTIONS(2300), - [anon_sym___weak] = ACTIONS(2300), - [anon_sym___bridge] = ACTIONS(2300), - [anon_sym___bridge_transfer] = ACTIONS(2300), - [anon_sym___bridge_retained] = ACTIONS(2300), - [anon_sym___unsafe_unretained] = ACTIONS(2300), - [anon_sym___block] = ACTIONS(2300), - [anon_sym___kindof] = ACTIONS(2300), - [anon_sym___unused] = ACTIONS(2300), - [anon_sym__Complex] = ACTIONS(2300), - [anon_sym___complex] = ACTIONS(2300), - [anon_sym_IBOutlet] = ACTIONS(2300), - [anon_sym_IBInspectable] = ACTIONS(2300), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2300), - [anon_sym_signed] = ACTIONS(2300), - [anon_sym_unsigned] = ACTIONS(2300), - [anon_sym_long] = ACTIONS(2300), - [anon_sym_short] = ACTIONS(2300), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [anon_sym_NS_ENUM] = ACTIONS(2300), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2300), - [anon_sym_NS_OPTIONS] = ACTIONS(2300), - [anon_sym_struct] = ACTIONS(2300), - [anon_sym_union] = ACTIONS(2300), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2446), - [anon_sym_ATend] = ACTIONS(2448), - [sym_method_attribute_specifier] = ACTIONS(2300), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2300), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE] = ACTIONS(2300), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_API_AVAILABLE] = ACTIONS(2300), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_API_DEPRECATED] = ACTIONS(2300), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2300), - [anon_sym___deprecated_msg] = ACTIONS(2300), - [anon_sym___deprecated_enum_msg] = ACTIONS(2300), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2300), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2300), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym___typeof] = ACTIONS(2300), - [anon_sym___typeof__] = ACTIONS(2300), - [sym_id] = ACTIONS(2300), - [sym_instancetype] = ACTIONS(2300), - [sym_Class] = ACTIONS(2300), - [sym_SEL] = ACTIONS(2300), - [sym_IMP] = ACTIONS(2300), - [sym_BOOL] = ACTIONS(2300), - [sym_auto] = ACTIONS(2300), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1655] = { - [sym_preproc_def] = STATE(2407), - [sym_preproc_function_def] = STATE(2407), - [sym_declaration] = STATE(2407), - [sym_type_definition] = STATE(2407), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2407), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1786), - [sym_protocol_qualifiers] = STATE(1934), - [sym_parameterized_class_type_arguments] = STATE(5185), - [sym__instance_variables] = STATE(2408), - [aux_sym__interface_declaration] = STATE(2407), - [sym__interface_declaration_specifier] = STATE(2407), - [sym_method_declaration] = STATE(2407), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2407), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2452), - [anon_sym_ATend] = ACTIONS(2454), - [sym_optional] = ACTIONS(2456), - [sym_required] = ACTIONS(2456), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1656] = { - [sym_preproc_def] = STATE(1718), - [sym_preproc_function_def] = STATE(1718), - [sym_function_definition] = STATE(1718), - [sym_declaration] = STATE(1718), - [sym_type_definition] = STATE(1718), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variables] = STATE(1717), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1718), - [sym_synthesize_definition] = STATE(1718), - [sym_dynamic_definition] = STATE(1718), - [sym_method_definition] = STATE(1718), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2300), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym___attribute] = ACTIONS(2300), - [anon_sym___attribute__] = ACTIONS(2300), - [anon_sym___declspec] = ACTIONS(2300), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_auto] = ACTIONS(2300), - [anon_sym_register] = ACTIONS(2300), - [anon_sym_inline] = ACTIONS(2300), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_volatile] = ACTIONS(2300), - [anon_sym_restrict] = ACTIONS(2300), - [anon_sym__Atomic] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_out] = ACTIONS(2300), - [anon_sym_inout] = ACTIONS(2300), - [anon_sym_bycopy] = ACTIONS(2300), - [anon_sym_byref] = ACTIONS(2300), - [anon_sym_oneway] = ACTIONS(2300), - [anon_sym__Nullable] = ACTIONS(2300), - [anon_sym__Nonnull] = ACTIONS(2300), - [anon_sym__Nullable_result] = ACTIONS(2300), - [anon_sym__Null_unspecified] = ACTIONS(2300), - [anon_sym___autoreleasing] = ACTIONS(2300), - [anon_sym___nullable] = ACTIONS(2300), - [anon_sym___nonnull] = ACTIONS(2300), - [anon_sym___strong] = ACTIONS(2300), - [anon_sym___weak] = ACTIONS(2300), - [anon_sym___bridge] = ACTIONS(2300), - [anon_sym___bridge_transfer] = ACTIONS(2300), - [anon_sym___bridge_retained] = ACTIONS(2300), - [anon_sym___unsafe_unretained] = ACTIONS(2300), - [anon_sym___block] = ACTIONS(2300), - [anon_sym___kindof] = ACTIONS(2300), - [anon_sym___unused] = ACTIONS(2300), - [anon_sym__Complex] = ACTIONS(2300), - [anon_sym___complex] = ACTIONS(2300), - [anon_sym_IBOutlet] = ACTIONS(2300), - [anon_sym_IBInspectable] = ACTIONS(2300), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2300), - [anon_sym_signed] = ACTIONS(2300), - [anon_sym_unsigned] = ACTIONS(2300), - [anon_sym_long] = ACTIONS(2300), - [anon_sym_short] = ACTIONS(2300), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [anon_sym_NS_ENUM] = ACTIONS(2300), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2300), - [anon_sym_NS_OPTIONS] = ACTIONS(2300), - [anon_sym_struct] = ACTIONS(2300), - [anon_sym_union] = ACTIONS(2300), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2458), - [anon_sym_ATend] = ACTIONS(2460), - [sym_method_attribute_specifier] = ACTIONS(2300), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2300), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE] = ACTIONS(2300), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_API_AVAILABLE] = ACTIONS(2300), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_API_DEPRECATED] = ACTIONS(2300), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2300), - [anon_sym___deprecated_msg] = ACTIONS(2300), - [anon_sym___deprecated_enum_msg] = ACTIONS(2300), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2300), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2300), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym___typeof] = ACTIONS(2300), - [anon_sym___typeof__] = ACTIONS(2300), - [sym_id] = ACTIONS(2300), - [sym_instancetype] = ACTIONS(2300), - [sym_Class] = ACTIONS(2300), - [sym_SEL] = ACTIONS(2300), - [sym_IMP] = ACTIONS(2300), - [sym_BOOL] = ACTIONS(2300), - [sym_auto] = ACTIONS(2300), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1657] = { - [sym_preproc_def] = STATE(1742), - [sym_preproc_function_def] = STATE(1742), - [sym_function_definition] = STATE(1742), - [sym_declaration] = STATE(1742), - [sym_type_definition] = STATE(1742), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variables] = STATE(1746), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1742), - [sym_synthesize_definition] = STATE(1742), - [sym_dynamic_definition] = STATE(1742), - [sym_method_definition] = STATE(1742), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2300), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym___attribute] = ACTIONS(2300), - [anon_sym___attribute__] = ACTIONS(2300), - [anon_sym___declspec] = ACTIONS(2300), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_auto] = ACTIONS(2300), - [anon_sym_register] = ACTIONS(2300), - [anon_sym_inline] = ACTIONS(2300), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_volatile] = ACTIONS(2300), - [anon_sym_restrict] = ACTIONS(2300), - [anon_sym__Atomic] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_out] = ACTIONS(2300), - [anon_sym_inout] = ACTIONS(2300), - [anon_sym_bycopy] = ACTIONS(2300), - [anon_sym_byref] = ACTIONS(2300), - [anon_sym_oneway] = ACTIONS(2300), - [anon_sym__Nullable] = ACTIONS(2300), - [anon_sym__Nonnull] = ACTIONS(2300), - [anon_sym__Nullable_result] = ACTIONS(2300), - [anon_sym__Null_unspecified] = ACTIONS(2300), - [anon_sym___autoreleasing] = ACTIONS(2300), - [anon_sym___nullable] = ACTIONS(2300), - [anon_sym___nonnull] = ACTIONS(2300), - [anon_sym___strong] = ACTIONS(2300), - [anon_sym___weak] = ACTIONS(2300), - [anon_sym___bridge] = ACTIONS(2300), - [anon_sym___bridge_transfer] = ACTIONS(2300), - [anon_sym___bridge_retained] = ACTIONS(2300), - [anon_sym___unsafe_unretained] = ACTIONS(2300), - [anon_sym___block] = ACTIONS(2300), - [anon_sym___kindof] = ACTIONS(2300), - [anon_sym___unused] = ACTIONS(2300), - [anon_sym__Complex] = ACTIONS(2300), - [anon_sym___complex] = ACTIONS(2300), - [anon_sym_IBOutlet] = ACTIONS(2300), - [anon_sym_IBInspectable] = ACTIONS(2300), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2300), - [anon_sym_signed] = ACTIONS(2300), - [anon_sym_unsigned] = ACTIONS(2300), - [anon_sym_long] = ACTIONS(2300), - [anon_sym_short] = ACTIONS(2300), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [anon_sym_NS_ENUM] = ACTIONS(2300), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2300), - [anon_sym_NS_OPTIONS] = ACTIONS(2300), - [anon_sym_struct] = ACTIONS(2300), - [anon_sym_union] = ACTIONS(2300), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2462), - [anon_sym_ATend] = ACTIONS(2464), - [sym_method_attribute_specifier] = ACTIONS(2300), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2300), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE] = ACTIONS(2300), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_API_AVAILABLE] = ACTIONS(2300), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_API_DEPRECATED] = ACTIONS(2300), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2300), - [anon_sym___deprecated_msg] = ACTIONS(2300), - [anon_sym___deprecated_enum_msg] = ACTIONS(2300), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2300), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2300), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym___typeof] = ACTIONS(2300), - [anon_sym___typeof__] = ACTIONS(2300), - [sym_id] = ACTIONS(2300), - [sym_instancetype] = ACTIONS(2300), - [sym_Class] = ACTIONS(2300), - [sym_SEL] = ACTIONS(2300), - [sym_IMP] = ACTIONS(2300), - [sym_BOOL] = ACTIONS(2300), - [sym_auto] = ACTIONS(2300), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1658] = { - [sym_preproc_def] = STATE(2397), - [sym_preproc_function_def] = STATE(2397), - [sym_declaration] = STATE(2397), - [sym_type_definition] = STATE(2397), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2397), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1805), - [sym_protocol_qualifiers] = STATE(1818), - [sym_parameterized_class_type_arguments] = STATE(5094), - [sym__instance_variables] = STATE(2396), - [aux_sym__interface_declaration] = STATE(2397), - [sym__interface_declaration_specifier] = STATE(2397), - [sym_method_declaration] = STATE(2397), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2397), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2466), - [anon_sym_ATend] = ACTIONS(2468), - [sym_optional] = ACTIONS(2470), - [sym_required] = ACTIONS(2470), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1659] = { - [sym_preproc_def] = STATE(2602), - [sym_preproc_function_def] = STATE(2602), - [sym_declaration] = STATE(2602), - [sym_type_definition] = STATE(2602), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2602), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1775), - [sym_protocol_qualifiers] = STATE(1819), - [sym_parameterized_class_type_arguments] = STATE(5130), - [sym__instance_variables] = STATE(2601), - [aux_sym__interface_declaration] = STATE(2602), - [sym__interface_declaration_specifier] = STATE(2602), - [sym_method_declaration] = STATE(2602), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2602), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2472), - [anon_sym_ATend] = ACTIONS(2474), - [sym_optional] = ACTIONS(2476), - [sym_required] = ACTIONS(2476), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1660] = { - [sym_preproc_def] = STATE(2259), - [sym_preproc_function_def] = STATE(2259), - [sym_declaration] = STATE(2259), - [sym_type_definition] = STATE(2259), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2259), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1793), - [sym_protocol_qualifiers] = STATE(1855), - [sym_parameterized_class_type_arguments] = STATE(5069), - [sym__instance_variables] = STATE(2260), - [aux_sym__interface_declaration] = STATE(2259), - [sym__interface_declaration_specifier] = STATE(2259), - [sym_method_declaration] = STATE(2259), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2259), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2478), - [anon_sym_ATend] = ACTIONS(2480), - [sym_optional] = ACTIONS(2482), - [sym_required] = ACTIONS(2482), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1661] = { - [sym_preproc_def] = STATE(2352), - [sym_preproc_function_def] = STATE(2352), - [sym_declaration] = STATE(2352), - [sym_type_definition] = STATE(2352), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2352), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1780), - [sym_protocol_qualifiers] = STATE(1953), - [sym_parameterized_class_type_arguments] = STATE(5050), - [sym__instance_variables] = STATE(2355), - [aux_sym__interface_declaration] = STATE(2352), - [sym__interface_declaration_specifier] = STATE(2352), - [sym_method_declaration] = STATE(2352), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2352), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2484), - [anon_sym_ATend] = ACTIONS(2486), - [sym_optional] = ACTIONS(2488), - [sym_required] = ACTIONS(2488), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1662] = { - [sym_preproc_def] = STATE(2315), - [sym_preproc_function_def] = STATE(2315), - [sym_declaration] = STATE(2315), - [sym_type_definition] = STATE(2315), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2315), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1807), - [sym_protocol_qualifiers] = STATE(1848), - [sym_parameterized_class_type_arguments] = STATE(1658), - [sym__instance_variables] = STATE(2313), - [aux_sym__interface_declaration] = STATE(2315), - [sym__interface_declaration_specifier] = STATE(2315), - [sym_method_declaration] = STATE(2315), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2315), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2490), - [anon_sym_ATend] = ACTIONS(2492), - [sym_optional] = ACTIONS(2494), - [sym_required] = ACTIONS(2494), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1663] = { - [sym_preproc_def] = STATE(2309), - [sym_preproc_function_def] = STATE(2309), - [sym_declaration] = STATE(2309), - [sym_type_definition] = STATE(2309), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2309), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1804), - [sym_protocol_qualifiers] = STATE(1928), - [sym_parameterized_class_type_arguments] = STATE(5057), - [sym__instance_variables] = STATE(2308), - [aux_sym__interface_declaration] = STATE(2309), - [sym__interface_declaration_specifier] = STATE(2309), - [sym_method_declaration] = STATE(2309), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2309), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2496), - [anon_sym_ATend] = ACTIONS(2498), - [sym_optional] = ACTIONS(2500), - [sym_required] = ACTIONS(2500), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1664] = { - [sym_preproc_def] = STATE(2335), - [sym_preproc_function_def] = STATE(2335), - [sym_declaration] = STATE(2335), - [sym_type_definition] = STATE(2335), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2335), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1772), - [sym_protocol_qualifiers] = STATE(1970), - [sym_parameterized_class_type_arguments] = STATE(5125), - [sym__instance_variables] = STATE(2336), - [aux_sym__interface_declaration] = STATE(2335), - [sym__interface_declaration_specifier] = STATE(2335), - [sym_method_declaration] = STATE(2335), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2335), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2502), - [anon_sym_ATend] = ACTIONS(2504), - [sym_optional] = ACTIONS(2506), - [sym_required] = ACTIONS(2506), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1665] = { - [sym_preproc_def] = STATE(2324), - [sym_preproc_function_def] = STATE(2324), - [sym_declaration] = STATE(2324), - [sym_type_definition] = STATE(2324), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2324), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1790), - [sym_protocol_qualifiers] = STATE(1817), - [sym_parameterized_class_type_arguments] = STATE(1660), - [sym__instance_variables] = STATE(2325), - [aux_sym__interface_declaration] = STATE(2324), - [sym__interface_declaration_specifier] = STATE(2324), - [sym_method_declaration] = STATE(2324), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2324), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2508), - [anon_sym_ATend] = ACTIONS(2510), - [sym_optional] = ACTIONS(2512), - [sym_required] = ACTIONS(2512), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1666] = { - [sym_preproc_def] = STATE(2424), - [sym_preproc_function_def] = STATE(2424), - [sym_declaration] = STATE(2424), - [sym_type_definition] = STATE(2424), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2424), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1788), - [sym_protocol_qualifiers] = STATE(1843), - [sym_parameterized_class_type_arguments] = STATE(5027), - [sym__instance_variables] = STATE(2425), - [aux_sym__interface_declaration] = STATE(2424), - [sym__interface_declaration_specifier] = STATE(2424), - [sym_method_declaration] = STATE(2424), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2424), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2514), - [anon_sym_ATend] = ACTIONS(2516), - [sym_optional] = ACTIONS(2518), - [sym_required] = ACTIONS(2518), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1667] = { - [sym_preproc_def] = STATE(2327), - [sym_preproc_function_def] = STATE(2327), - [sym_declaration] = STATE(2327), - [sym_type_definition] = STATE(2327), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2327), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1774), - [sym_protocol_qualifiers] = STATE(1860), - [sym_parameterized_class_type_arguments] = STATE(5061), - [sym__instance_variables] = STATE(2328), - [aux_sym__interface_declaration] = STATE(2327), - [sym__interface_declaration_specifier] = STATE(2327), - [sym_method_declaration] = STATE(2327), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2327), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2520), - [anon_sym_ATend] = ACTIONS(2522), - [sym_optional] = ACTIONS(2524), - [sym_required] = ACTIONS(2524), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1668] = { - [sym_preproc_def] = STATE(2008), - [sym_preproc_function_def] = STATE(2008), - [sym_declaration] = STATE(2008), - [sym_type_definition] = STATE(2008), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2008), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1781), - [sym_protocol_qualifiers] = STATE(1831), - [sym_parameterized_class_type_arguments] = STATE(1684), - [sym__instance_variables] = STATE(2017), - [aux_sym__interface_declaration] = STATE(2008), - [sym__interface_declaration_specifier] = STATE(2008), - [sym_method_declaration] = STATE(2008), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2008), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2526), - [anon_sym_ATend] = ACTIONS(2528), - [sym_optional] = ACTIONS(2530), - [sym_required] = ACTIONS(2530), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1669] = { - [sym_preproc_def] = STATE(2380), - [sym_preproc_function_def] = STATE(2380), - [sym_declaration] = STATE(2380), - [sym_type_definition] = STATE(2380), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2380), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1777), - [sym_protocol_qualifiers] = STATE(1826), - [sym_parameterized_class_type_arguments] = STATE(1667), - [sym__instance_variables] = STATE(2381), - [aux_sym__interface_declaration] = STATE(2380), - [sym__interface_declaration_specifier] = STATE(2380), - [sym_method_declaration] = STATE(2380), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2380), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2532), - [anon_sym_ATend] = ACTIONS(2534), - [sym_optional] = ACTIONS(2536), - [sym_required] = ACTIONS(2536), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1670] = { - [sym_preproc_def] = STATE(2382), - [sym_preproc_function_def] = STATE(2382), - [sym_declaration] = STATE(2382), - [sym_type_definition] = STATE(2382), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2382), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1776), - [sym_protocol_qualifiers] = STATE(1965), - [sym_parameterized_class_type_arguments] = STATE(5220), - [sym__instance_variables] = STATE(2383), - [aux_sym__interface_declaration] = STATE(2382), - [sym__interface_declaration_specifier] = STATE(2382), - [sym_method_declaration] = STATE(2382), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2382), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2538), - [anon_sym_ATend] = ACTIONS(2540), - [sym_optional] = ACTIONS(2542), - [sym_required] = ACTIONS(2542), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1671] = { - [sym_preproc_def] = STATE(2314), - [sym_preproc_function_def] = STATE(2314), - [sym_declaration] = STATE(2314), - [sym_type_definition] = STATE(2314), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2314), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1783), - [sym_protocol_qualifiers] = STATE(1833), - [sym_parameterized_class_type_arguments] = STATE(5053), - [sym__instance_variables] = STATE(2316), - [aux_sym__interface_declaration] = STATE(2314), - [sym__interface_declaration_specifier] = STATE(2314), - [sym_method_declaration] = STATE(2314), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2314), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2544), - [anon_sym_ATend] = ACTIONS(2546), - [sym_optional] = ACTIONS(2548), - [sym_required] = ACTIONS(2548), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1672] = { - [sym_preproc_def] = STATE(2401), - [sym_preproc_function_def] = STATE(2401), - [sym_declaration] = STATE(2401), - [sym_type_definition] = STATE(2401), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2401), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1791), - [sym_protocol_qualifiers] = STATE(1847), - [sym_parameterized_class_type_arguments] = STATE(1678), - [sym__instance_variables] = STATE(2400), - [aux_sym__interface_declaration] = STATE(2401), - [sym__interface_declaration_specifier] = STATE(2401), - [sym_method_declaration] = STATE(2401), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2401), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2550), - [anon_sym_ATend] = ACTIONS(2552), - [sym_optional] = ACTIONS(2554), - [sym_required] = ACTIONS(2554), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1673] = { - [sym_preproc_def] = STATE(2379), - [sym_preproc_function_def] = STATE(2379), - [sym_declaration] = STATE(2379), - [sym_type_definition] = STATE(2379), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2379), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1773), - [sym_protocol_qualifiers] = STATE(1967), - [sym_parameterized_class_type_arguments] = STATE(5105), - [sym__instance_variables] = STATE(2378), - [aux_sym__interface_declaration] = STATE(2379), - [sym__interface_declaration_specifier] = STATE(2379), - [sym_method_declaration] = STATE(2379), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2379), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2556), - [anon_sym_ATend] = ACTIONS(2558), - [sym_optional] = ACTIONS(2560), - [sym_required] = ACTIONS(2560), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1674] = { - [sym_preproc_def] = STATE(2678), - [sym_preproc_function_def] = STATE(2678), - [sym_declaration] = STATE(2678), - [sym_type_definition] = STATE(2678), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2678), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1798), - [sym_protocol_qualifiers] = STATE(1894), - [sym_parameterized_class_type_arguments] = STATE(5200), - [sym__instance_variables] = STATE(2677), - [aux_sym__interface_declaration] = STATE(2678), - [sym__interface_declaration_specifier] = STATE(2678), - [sym_method_declaration] = STATE(2678), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2678), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2562), - [anon_sym_ATend] = ACTIONS(2564), - [sym_optional] = ACTIONS(2566), - [sym_required] = ACTIONS(2566), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1675] = { - [sym_preproc_def] = STATE(2643), - [sym_preproc_function_def] = STATE(2643), - [sym_declaration] = STATE(2643), - [sym_type_definition] = STATE(2643), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2643), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1770), - [sym_protocol_qualifiers] = STATE(1859), - [sym_parameterized_class_type_arguments] = STATE(1666), - [sym__instance_variables] = STATE(2642), - [aux_sym__interface_declaration] = STATE(2643), - [sym__interface_declaration_specifier] = STATE(2643), - [sym_method_declaration] = STATE(2643), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2643), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2568), - [anon_sym_ATend] = ACTIONS(2570), - [sym_optional] = ACTIONS(2572), - [sym_required] = ACTIONS(2572), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1676] = { - [sym_preproc_def] = STATE(2681), - [sym_preproc_function_def] = STATE(2681), - [sym_declaration] = STATE(2681), - [sym_type_definition] = STATE(2681), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2681), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1792), - [sym_protocol_qualifiers] = STATE(1853), - [sym_parameterized_class_type_arguments] = STATE(1671), - [sym__instance_variables] = STATE(2679), - [aux_sym__interface_declaration] = STATE(2681), - [sym__interface_declaration_specifier] = STATE(2681), - [sym_method_declaration] = STATE(2681), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2681), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2574), - [anon_sym_ATend] = ACTIONS(2576), - [sym_optional] = ACTIONS(2578), - [sym_required] = ACTIONS(2578), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1677] = { - [sym_preproc_def] = STATE(2406), - [sym_preproc_function_def] = STATE(2406), - [sym_declaration] = STATE(2406), - [sym_type_definition] = STATE(2406), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2406), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1801), - [sym_protocol_qualifiers] = STATE(1899), - [sym_parameterized_class_type_arguments] = STATE(5186), - [sym__instance_variables] = STATE(2489), - [aux_sym__interface_declaration] = STATE(2406), - [sym__interface_declaration_specifier] = STATE(2406), - [sym_method_declaration] = STATE(2406), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2406), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2580), - [anon_sym_ATend] = ACTIONS(2582), - [sym_optional] = ACTIONS(2584), - [sym_required] = ACTIONS(2584), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1678] = { - [sym_preproc_def] = STATE(2487), - [sym_preproc_function_def] = STATE(2487), - [sym_declaration] = STATE(2487), - [sym_type_definition] = STATE(2487), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2487), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1809), - [sym_protocol_qualifiers] = STATE(1822), - [sym_parameterized_class_type_arguments] = STATE(5074), - [sym__instance_variables] = STATE(2486), - [aux_sym__interface_declaration] = STATE(2487), - [sym__interface_declaration_specifier] = STATE(2487), - [sym_method_declaration] = STATE(2487), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2487), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2586), - [anon_sym_ATend] = ACTIONS(2588), - [sym_optional] = ACTIONS(2590), - [sym_required] = ACTIONS(2590), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1679] = { - [sym_preproc_def] = STATE(2181), - [sym_preproc_function_def] = STATE(2181), - [sym_declaration] = STATE(2181), - [sym_type_definition] = STATE(2181), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2181), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1803), - [sym_protocol_qualifiers] = STATE(1816), - [sym_parameterized_class_type_arguments] = STATE(5082), - [sym__instance_variables] = STATE(2182), - [aux_sym__interface_declaration] = STATE(2181), - [sym__interface_declaration_specifier] = STATE(2181), - [sym_method_declaration] = STATE(2181), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2181), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2592), - [anon_sym_ATend] = ACTIONS(2594), - [sym_optional] = ACTIONS(2596), - [sym_required] = ACTIONS(2596), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1680] = { - [sym_preproc_def] = STATE(2492), - [sym_preproc_function_def] = STATE(2492), - [sym_declaration] = STATE(2492), - [sym_type_definition] = STATE(2492), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2492), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1811), - [sym_protocol_qualifiers] = STATE(1823), - [sym_parameterized_class_type_arguments] = STATE(1659), - [sym__instance_variables] = STATE(2491), - [aux_sym__interface_declaration] = STATE(2492), - [sym__interface_declaration_specifier] = STATE(2492), - [sym_method_declaration] = STATE(2492), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2492), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2598), - [anon_sym_ATend] = ACTIONS(2600), - [sym_optional] = ACTIONS(2602), - [sym_required] = ACTIONS(2602), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1681] = { - [sym_preproc_def] = STATE(2460), - [sym_preproc_function_def] = STATE(2460), - [sym_declaration] = STATE(2460), - [sym_type_definition] = STATE(2460), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2460), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1814), - [sym_protocol_qualifiers] = STATE(1992), - [sym_parameterized_class_type_arguments] = STATE(5122), - [sym__instance_variables] = STATE(2461), - [aux_sym__interface_declaration] = STATE(2460), - [sym__interface_declaration_specifier] = STATE(2460), - [sym_method_declaration] = STATE(2460), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2460), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2604), - [anon_sym_ATend] = ACTIONS(2606), - [sym_optional] = ACTIONS(2608), - [sym_required] = ACTIONS(2608), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1682] = { - [sym_preproc_def] = STATE(2278), - [sym_preproc_function_def] = STATE(2278), - [sym_declaration] = STATE(2278), - [sym_type_definition] = STATE(2278), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2278), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1799), - [sym_protocol_qualifiers] = STATE(1914), - [sym_parameterized_class_type_arguments] = STATE(5055), - [sym__instance_variables] = STATE(2277), - [aux_sym__interface_declaration] = STATE(2278), - [sym__interface_declaration_specifier] = STATE(2278), - [sym_method_declaration] = STATE(2278), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2278), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2610), - [anon_sym_ATend] = ACTIONS(2612), - [sym_optional] = ACTIONS(2614), - [sym_required] = ACTIONS(2614), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1683] = { - [sym_preproc_def] = STATE(2255), - [sym_preproc_function_def] = STATE(2255), - [sym_declaration] = STATE(2255), - [sym_type_definition] = STATE(2255), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2255), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1794), - [sym_protocol_qualifiers] = STATE(1856), - [sym_parameterized_class_type_arguments] = STATE(1679), - [sym__instance_variables] = STATE(2256), - [aux_sym__interface_declaration] = STATE(2255), - [sym__interface_declaration_specifier] = STATE(2255), - [sym_method_declaration] = STATE(2255), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2255), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2616), - [anon_sym_ATend] = ACTIONS(2618), - [sym_optional] = ACTIONS(2620), - [sym_required] = ACTIONS(2620), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1684] = { - [sym_preproc_def] = STATE(2588), - [sym_preproc_function_def] = STATE(2588), - [sym_declaration] = STATE(2588), - [sym_type_definition] = STATE(2588), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2588), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1800), - [sym_protocol_qualifiers] = STATE(1861), - [sym_parameterized_class_type_arguments] = STATE(5153), - [sym__instance_variables] = STATE(2560), - [aux_sym__interface_declaration] = STATE(2588), - [sym__interface_declaration_specifier] = STATE(2588), - [sym_method_declaration] = STATE(2588), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2588), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2622), - [anon_sym_ATend] = ACTIONS(2624), - [sym_optional] = ACTIONS(2626), - [sym_required] = ACTIONS(2626), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1685] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2630), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1686] = { - [sym_preproc_def] = STATE(1727), - [sym_preproc_function_def] = STATE(1727), - [sym_function_definition] = STATE(1727), - [sym_declaration] = STATE(1727), - [sym_type_definition] = STATE(1727), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1727), - [sym_synthesize_definition] = STATE(1727), - [sym_dynamic_definition] = STATE(1727), - [sym_method_definition] = STATE(1727), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2632), - [anon_sym_ATend] = ACTIONS(2634), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1687] = { - [sym_preproc_def] = STATE(1732), - [sym_preproc_function_def] = STATE(1732), - [sym_function_definition] = STATE(1732), - [sym_declaration] = STATE(1732), - [sym_type_definition] = STATE(1732), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1732), - [sym_synthesize_definition] = STATE(1732), - [sym_dynamic_definition] = STATE(1732), - [sym_method_definition] = STATE(1732), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2636), - [anon_sym_ATend] = ACTIONS(2638), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1688] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2640), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1689] = { - [sym_preproc_def] = STATE(1731), - [sym_preproc_function_def] = STATE(1731), - [sym_function_definition] = STATE(1731), - [sym_declaration] = STATE(1731), - [sym_type_definition] = STATE(1731), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1731), - [sym_synthesize_definition] = STATE(1731), - [sym_dynamic_definition] = STATE(1731), - [sym_method_definition] = STATE(1731), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2642), - [anon_sym_ATend] = ACTIONS(2644), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1690] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2646), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1691] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2648), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1692] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2650), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1693] = { - [sym_preproc_def] = STATE(1723), - [sym_preproc_function_def] = STATE(1723), - [sym_function_definition] = STATE(1723), - [sym_declaration] = STATE(1723), - [sym_type_definition] = STATE(1723), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1723), - [sym_synthesize_definition] = STATE(1723), - [sym_dynamic_definition] = STATE(1723), - [sym_method_definition] = STATE(1723), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2652), - [anon_sym_ATend] = ACTIONS(2654), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1694] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2656), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1695] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2658), - [aux_sym_preproc_def_token1] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2664), - [anon_sym_PLUS] = ACTIONS(2667), - [anon_sym_typedef] = ACTIONS(2670), - [anon_sym_extern] = ACTIONS(2673), - [anon_sym___attribute] = ACTIONS(2676), - [anon_sym___attribute__] = ACTIONS(2676), - [anon_sym___declspec] = ACTIONS(2679), - [anon_sym___cdecl] = ACTIONS(2682), - [anon_sym___clrcall] = ACTIONS(2682), - [anon_sym___stdcall] = ACTIONS(2682), - [anon_sym___fastcall] = ACTIONS(2682), - [anon_sym___thiscall] = ACTIONS(2682), - [anon_sym___vectorcall] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_auto] = ACTIONS(2673), - [anon_sym_register] = ACTIONS(2673), - [anon_sym_inline] = ACTIONS(2673), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym_restrict] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2688), - [anon_sym_in] = ACTIONS(2685), - [anon_sym_out] = ACTIONS(2685), - [anon_sym_inout] = ACTIONS(2685), - [anon_sym_bycopy] = ACTIONS(2685), - [anon_sym_byref] = ACTIONS(2685), - [anon_sym_oneway] = ACTIONS(2685), - [anon_sym__Nullable] = ACTIONS(2685), - [anon_sym__Nonnull] = ACTIONS(2685), - [anon_sym__Nullable_result] = ACTIONS(2685), - [anon_sym__Null_unspecified] = ACTIONS(2685), - [anon_sym___autoreleasing] = ACTIONS(2685), - [anon_sym___nullable] = ACTIONS(2685), - [anon_sym___nonnull] = ACTIONS(2685), - [anon_sym___strong] = ACTIONS(2685), - [anon_sym___weak] = ACTIONS(2685), - [anon_sym___bridge] = ACTIONS(2685), - [anon_sym___bridge_transfer] = ACTIONS(2685), - [anon_sym___bridge_retained] = ACTIONS(2685), - [anon_sym___unsafe_unretained] = ACTIONS(2685), - [anon_sym___block] = ACTIONS(2685), - [anon_sym___kindof] = ACTIONS(2685), - [anon_sym___unused] = ACTIONS(2685), - [anon_sym__Complex] = ACTIONS(2685), - [anon_sym___complex] = ACTIONS(2685), - [anon_sym_IBOutlet] = ACTIONS(2685), - [anon_sym_IBInspectable] = ACTIONS(2685), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_enum] = ACTIONS(2697), - [anon_sym_NS_ENUM] = ACTIONS(2700), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2700), - [anon_sym_NS_OPTIONS] = ACTIONS(2700), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2709), - [anon_sym_ATend] = ACTIONS(2712), - [sym_method_attribute_specifier] = ACTIONS(2714), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2717), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2717), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2720), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2720), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2720), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2720), - [anon_sym_NS_AVAILABLE] = ACTIONS(2723), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2723), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2723), - [anon_sym_API_AVAILABLE] = ACTIONS(2723), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2723), - [anon_sym_API_DEPRECATED] = ACTIONS(2723), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2723), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2723), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2723), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2723), - [anon_sym___deprecated_msg] = ACTIONS(2723), - [anon_sym___deprecated_enum_msg] = ACTIONS(2723), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2723), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2723), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2723), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2723), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2726), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2729), - [anon_sym_ATsynthesize] = ACTIONS(2732), - [anon_sym_ATdynamic] = ACTIONS(2735), - [anon_sym_typeof] = ACTIONS(2738), - [anon_sym___typeof] = ACTIONS(2738), - [anon_sym___typeof__] = ACTIONS(2738), - [sym_id] = ACTIONS(2741), - [sym_instancetype] = ACTIONS(2694), - [sym_Class] = ACTIONS(2741), - [sym_SEL] = ACTIONS(2694), - [sym_IMP] = ACTIONS(2694), - [sym_BOOL] = ACTIONS(2694), - [sym_auto] = ACTIONS(2694), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1696] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2744), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1697] = { - [sym_preproc_def] = STATE(1715), - [sym_preproc_function_def] = STATE(1715), - [sym_function_definition] = STATE(1715), - [sym_declaration] = STATE(1715), - [sym_type_definition] = STATE(1715), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1715), - [sym_synthesize_definition] = STATE(1715), - [sym_dynamic_definition] = STATE(1715), - [sym_method_definition] = STATE(1715), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2746), - [anon_sym_ATend] = ACTIONS(2748), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1698] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2750), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1699] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2752), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1700] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2754), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1701] = { - [sym_preproc_def] = STATE(1719), - [sym_preproc_function_def] = STATE(1719), - [sym_function_definition] = STATE(1719), - [sym_declaration] = STATE(1719), - [sym_type_definition] = STATE(1719), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1719), - [sym_synthesize_definition] = STATE(1719), - [sym_dynamic_definition] = STATE(1719), - [sym_method_definition] = STATE(1719), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2756), - [anon_sym_ATend] = ACTIONS(2758), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1702] = { - [sym_preproc_def] = STATE(1769), - [sym_preproc_function_def] = STATE(1769), - [sym_function_definition] = STATE(1769), - [sym_declaration] = STATE(1769), - [sym_type_definition] = STATE(1769), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1769), - [sym_synthesize_definition] = STATE(1769), - [sym_dynamic_definition] = STATE(1769), - [sym_method_definition] = STATE(1769), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2760), - [anon_sym_ATend] = ACTIONS(2762), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1703] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2764), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1704] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2766), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1705] = { - [sym_preproc_def] = STATE(1708), - [sym_preproc_function_def] = STATE(1708), - [sym_function_definition] = STATE(1708), - [sym_declaration] = STATE(1708), - [sym_type_definition] = STATE(1708), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1708), - [sym_synthesize_definition] = STATE(1708), - [sym_dynamic_definition] = STATE(1708), - [sym_method_definition] = STATE(1708), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2768), - [anon_sym_ATend] = ACTIONS(2770), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1706] = { - [sym_preproc_def] = STATE(1730), - [sym_preproc_function_def] = STATE(1730), - [sym_function_definition] = STATE(1730), - [sym_declaration] = STATE(1730), - [sym_type_definition] = STATE(1730), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1730), - [sym_synthesize_definition] = STATE(1730), - [sym_dynamic_definition] = STATE(1730), - [sym_method_definition] = STATE(1730), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2772), - [anon_sym_ATend] = ACTIONS(2774), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1707] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2776), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1708] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2778), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1709] = { - [sym_preproc_def] = STATE(1749), - [sym_preproc_function_def] = STATE(1749), - [sym_function_definition] = STATE(1749), - [sym_declaration] = STATE(1749), - [sym_type_definition] = STATE(1749), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1749), - [sym_synthesize_definition] = STATE(1749), - [sym_dynamic_definition] = STATE(1749), - [sym_method_definition] = STATE(1749), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2780), - [anon_sym_ATend] = ACTIONS(2782), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1710] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2784), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1711] = { - [sym_preproc_def] = STATE(1699), - [sym_preproc_function_def] = STATE(1699), - [sym_function_definition] = STATE(1699), - [sym_declaration] = STATE(1699), - [sym_type_definition] = STATE(1699), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1699), - [sym_synthesize_definition] = STATE(1699), - [sym_dynamic_definition] = STATE(1699), - [sym_method_definition] = STATE(1699), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2786), - [anon_sym_ATend] = ACTIONS(2788), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1712] = { - [sym_preproc_def] = STATE(1700), - [sym_preproc_function_def] = STATE(1700), - [sym_function_definition] = STATE(1700), - [sym_declaration] = STATE(1700), - [sym_type_definition] = STATE(1700), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1700), - [sym_synthesize_definition] = STATE(1700), - [sym_dynamic_definition] = STATE(1700), - [sym_method_definition] = STATE(1700), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2790), - [anon_sym_ATend] = ACTIONS(2792), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1713] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2794), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1714] = { - [sym_preproc_def] = STATE(1768), - [sym_preproc_function_def] = STATE(1768), - [sym_function_definition] = STATE(1768), - [sym_declaration] = STATE(1768), - [sym_type_definition] = STATE(1768), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1768), - [sym_synthesize_definition] = STATE(1768), - [sym_dynamic_definition] = STATE(1768), - [sym_method_definition] = STATE(1768), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2796), - [anon_sym_ATend] = ACTIONS(2798), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1715] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2800), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1716] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2802), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1717] = { - [sym_preproc_def] = STATE(1755), - [sym_preproc_function_def] = STATE(1755), - [sym_function_definition] = STATE(1755), - [sym_declaration] = STATE(1755), - [sym_type_definition] = STATE(1755), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1755), - [sym_synthesize_definition] = STATE(1755), - [sym_dynamic_definition] = STATE(1755), - [sym_method_definition] = STATE(1755), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2804), - [anon_sym_ATend] = ACTIONS(2806), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1718] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2808), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1719] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2810), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1720] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2812), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1721] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2814), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1722] = { - [sym_preproc_def] = STATE(1743), - [sym_preproc_function_def] = STATE(1743), - [sym_function_definition] = STATE(1743), - [sym_declaration] = STATE(1743), - [sym_type_definition] = STATE(1743), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1743), - [sym_synthesize_definition] = STATE(1743), - [sym_dynamic_definition] = STATE(1743), - [sym_method_definition] = STATE(1743), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2816), - [anon_sym_ATend] = ACTIONS(2818), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1723] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2820), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1724] = { - [sym_preproc_def] = STATE(1740), - [sym_preproc_function_def] = STATE(1740), - [sym_function_definition] = STATE(1740), - [sym_declaration] = STATE(1740), - [sym_type_definition] = STATE(1740), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1740), - [sym_synthesize_definition] = STATE(1740), - [sym_dynamic_definition] = STATE(1740), - [sym_method_definition] = STATE(1740), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2822), - [anon_sym_ATend] = ACTIONS(2824), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1725] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2826), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1726] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2828), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1727] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2830), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1728] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2832), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1729] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2834), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1730] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2836), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1731] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2838), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1732] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2840), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1733] = { - [sym_preproc_def] = STATE(1736), - [sym_preproc_function_def] = STATE(1736), - [sym_function_definition] = STATE(1736), - [sym_declaration] = STATE(1736), - [sym_type_definition] = STATE(1736), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1736), - [sym_synthesize_definition] = STATE(1736), - [sym_dynamic_definition] = STATE(1736), - [sym_method_definition] = STATE(1736), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2842), - [anon_sym_ATend] = ACTIONS(2844), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1734] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2846), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1735] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2848), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1736] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2850), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1737] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2852), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1738] = { - [sym_preproc_def] = STATE(1692), - [sym_preproc_function_def] = STATE(1692), - [sym_function_definition] = STATE(1692), - [sym_declaration] = STATE(1692), - [sym_type_definition] = STATE(1692), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1692), - [sym_synthesize_definition] = STATE(1692), - [sym_dynamic_definition] = STATE(1692), - [sym_method_definition] = STATE(1692), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2854), - [anon_sym_ATend] = ACTIONS(2856), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1739] = { - [sym_preproc_def] = STATE(1734), - [sym_preproc_function_def] = STATE(1734), - [sym_function_definition] = STATE(1734), - [sym_declaration] = STATE(1734), - [sym_type_definition] = STATE(1734), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1734), - [sym_synthesize_definition] = STATE(1734), - [sym_dynamic_definition] = STATE(1734), - [sym_method_definition] = STATE(1734), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2858), - [anon_sym_ATend] = ACTIONS(2860), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1740] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2862), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1741] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2864), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1742] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2866), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1743] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2868), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1744] = { - [sym_preproc_def] = STATE(1685), - [sym_preproc_function_def] = STATE(1685), - [sym_function_definition] = STATE(1685), - [sym_declaration] = STATE(1685), - [sym_type_definition] = STATE(1685), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1685), - [sym_synthesize_definition] = STATE(1685), - [sym_dynamic_definition] = STATE(1685), - [sym_method_definition] = STATE(1685), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2870), - [anon_sym_ATend] = ACTIONS(2872), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1745] = { - [sym_preproc_def] = STATE(1751), - [sym_preproc_function_def] = STATE(1751), - [sym_function_definition] = STATE(1751), - [sym_declaration] = STATE(1751), - [sym_type_definition] = STATE(1751), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1751), - [sym_synthesize_definition] = STATE(1751), - [sym_dynamic_definition] = STATE(1751), - [sym_method_definition] = STATE(1751), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2874), - [anon_sym_ATend] = ACTIONS(2876), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1746] = { - [sym_preproc_def] = STATE(1688), - [sym_preproc_function_def] = STATE(1688), - [sym_function_definition] = STATE(1688), - [sym_declaration] = STATE(1688), - [sym_type_definition] = STATE(1688), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1688), - [sym_synthesize_definition] = STATE(1688), - [sym_dynamic_definition] = STATE(1688), - [sym_method_definition] = STATE(1688), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2878), - [anon_sym_ATend] = ACTIONS(2880), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1747] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2882), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1748] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2884), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1749] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2886), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1750] = { - [sym_preproc_def] = STATE(1720), - [sym_preproc_function_def] = STATE(1720), - [sym_function_definition] = STATE(1720), - [sym_declaration] = STATE(1720), - [sym_type_definition] = STATE(1720), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1720), - [sym_synthesize_definition] = STATE(1720), - [sym_dynamic_definition] = STATE(1720), - [sym_method_definition] = STATE(1720), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2888), - [anon_sym_ATend] = ACTIONS(2890), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1751] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2892), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1752] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2894), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1753] = { - [sym_preproc_def] = STATE(1716), - [sym_preproc_function_def] = STATE(1716), - [sym_function_definition] = STATE(1716), - [sym_declaration] = STATE(1716), - [sym_type_definition] = STATE(1716), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1716), - [sym_synthesize_definition] = STATE(1716), - [sym_dynamic_definition] = STATE(1716), - [sym_method_definition] = STATE(1716), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2896), - [anon_sym_ATend] = ACTIONS(2898), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1754] = { - [sym_preproc_def] = STATE(1690), - [sym_preproc_function_def] = STATE(1690), - [sym_function_definition] = STATE(1690), - [sym_declaration] = STATE(1690), - [sym_type_definition] = STATE(1690), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1690), - [sym_synthesize_definition] = STATE(1690), - [sym_dynamic_definition] = STATE(1690), - [sym_method_definition] = STATE(1690), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2900), - [anon_sym_ATend] = ACTIONS(2902), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1755] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2904), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1756] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2906), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1757] = { - [sym_preproc_def] = STATE(1691), - [sym_preproc_function_def] = STATE(1691), - [sym_function_definition] = STATE(1691), - [sym_declaration] = STATE(1691), - [sym_type_definition] = STATE(1691), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1691), - [sym_synthesize_definition] = STATE(1691), - [sym_dynamic_definition] = STATE(1691), - [sym_method_definition] = STATE(1691), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2908), - [anon_sym_ATend] = ACTIONS(2910), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1758] = { - [sym_preproc_def] = STATE(1759), - [sym_preproc_function_def] = STATE(1759), - [sym_function_definition] = STATE(1759), - [sym_declaration] = STATE(1759), - [sym_type_definition] = STATE(1759), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1759), - [sym_synthesize_definition] = STATE(1759), - [sym_dynamic_definition] = STATE(1759), - [sym_method_definition] = STATE(1759), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2912), - [anon_sym_ATend] = ACTIONS(2914), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1759] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2916), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1760] = { - [sym_preproc_def] = STATE(1704), - [sym_preproc_function_def] = STATE(1704), - [sym_function_definition] = STATE(1704), - [sym_declaration] = STATE(1704), - [sym_type_definition] = STATE(1704), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1704), - [sym_synthesize_definition] = STATE(1704), - [sym_dynamic_definition] = STATE(1704), - [sym_method_definition] = STATE(1704), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2918), - [anon_sym_ATend] = ACTIONS(2920), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1761] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2922), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1762] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2924), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1763] = { - [sym_preproc_def] = STATE(1696), - [sym_preproc_function_def] = STATE(1696), - [sym_function_definition] = STATE(1696), - [sym_declaration] = STATE(1696), - [sym_type_definition] = STATE(1696), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1696), - [sym_synthesize_definition] = STATE(1696), - [sym_dynamic_definition] = STATE(1696), - [sym_method_definition] = STATE(1696), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2926), - [anon_sym_ATend] = ACTIONS(2928), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1764] = { - [sym_preproc_def] = STATE(1766), - [sym_preproc_function_def] = STATE(1766), - [sym_function_definition] = STATE(1766), - [sym_declaration] = STATE(1766), - [sym_type_definition] = STATE(1766), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1766), - [sym_synthesize_definition] = STATE(1766), - [sym_dynamic_definition] = STATE(1766), - [sym_method_definition] = STATE(1766), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2930), - [anon_sym_ATend] = ACTIONS(2932), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1765] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2934), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1766] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2936), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1767] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2938), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1768] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2940), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1769] = { - [sym_preproc_def] = STATE(1695), - [sym_preproc_function_def] = STATE(1695), - [sym_function_definition] = STATE(1695), - [sym_declaration] = STATE(1695), - [sym_type_definition] = STATE(1695), - [sym__declaration_specifiers] = STATE(4696), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3003), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym__class_member_scope] = STATE(4721), - [sym_class_scope] = STATE(4721), - [sym_instance_scope] = STATE(4721), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [aux_sym__implementation_definition] = STATE(1695), - [sym_synthesize_definition] = STATE(1695), - [sym_dynamic_definition] = STATE(1695), - [sym_method_definition] = STATE(1695), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2628), - [anon_sym_ATend] = ACTIONS(2942), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATsynthesize] = ACTIONS(2256), - [anon_sym_ATdynamic] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1770] = { - [sym_preproc_def] = STATE(2433), - [sym_preproc_function_def] = STATE(2433), - [sym_declaration] = STATE(2433), - [sym_type_definition] = STATE(2433), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2433), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1909), - [sym_parameterized_class_type_arguments] = STATE(5204), - [sym__instance_variables] = STATE(2434), - [aux_sym__interface_declaration] = STATE(2433), - [sym__interface_declaration_specifier] = STATE(2433), - [sym_method_declaration] = STATE(2433), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2433), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2944), - [anon_sym_ATend] = ACTIONS(2946), - [sym_optional] = ACTIONS(2948), - [sym_required] = ACTIONS(2948), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1771] = { - [sym_preproc_def] = STATE(2368), - [sym_preproc_function_def] = STATE(2368), - [sym_declaration] = STATE(2368), - [sym_type_definition] = STATE(2368), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2368), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1947), - [sym_parameterized_class_type_arguments] = STATE(5071), - [sym__instance_variables] = STATE(2367), - [aux_sym__interface_declaration] = STATE(2368), - [sym__interface_declaration_specifier] = STATE(2368), - [sym_method_declaration] = STATE(2368), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2368), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2950), - [anon_sym_ATend] = ACTIONS(2952), - [sym_optional] = ACTIONS(2954), - [sym_required] = ACTIONS(2954), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1772] = { - [sym_preproc_def] = STATE(2278), - [sym_preproc_function_def] = STATE(2278), - [sym_declaration] = STATE(2278), - [sym_type_definition] = STATE(2278), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2278), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1914), - [sym_parameterized_class_type_arguments] = STATE(5055), - [sym__instance_variables] = STATE(2277), - [aux_sym__interface_declaration] = STATE(2278), - [sym__interface_declaration_specifier] = STATE(2278), - [sym_method_declaration] = STATE(2278), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2278), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2610), - [anon_sym_ATend] = ACTIONS(2612), - [sym_optional] = ACTIONS(2614), - [sym_required] = ACTIONS(2614), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1773] = { - [sym_preproc_def] = STATE(2460), - [sym_preproc_function_def] = STATE(2460), - [sym_declaration] = STATE(2460), - [sym_type_definition] = STATE(2460), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2460), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1992), - [sym_parameterized_class_type_arguments] = STATE(5122), - [sym__instance_variables] = STATE(2461), - [aux_sym__interface_declaration] = STATE(2460), - [sym__interface_declaration_specifier] = STATE(2460), - [sym_method_declaration] = STATE(2460), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2460), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2604), - [anon_sym_ATend] = ACTIONS(2606), - [sym_optional] = ACTIONS(2608), - [sym_required] = ACTIONS(2608), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1774] = { - [sym_preproc_def] = STATE(2270), - [sym_preproc_function_def] = STATE(2270), - [sym_declaration] = STATE(2270), - [sym_type_definition] = STATE(2270), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2270), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1918), - [sym_parameterized_class_type_arguments] = STATE(5076), - [sym__instance_variables] = STATE(2001), - [aux_sym__interface_declaration] = STATE(2270), - [sym__interface_declaration_specifier] = STATE(2270), - [sym_method_declaration] = STATE(2270), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2270), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2956), - [anon_sym_ATend] = ACTIONS(2958), - [sym_optional] = ACTIONS(2960), - [sym_required] = ACTIONS(2960), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1775] = { - [sym_preproc_def] = STATE(2664), - [sym_preproc_function_def] = STATE(2664), - [sym_declaration] = STATE(2664), - [sym_type_definition] = STATE(2664), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2664), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1996), - [sym_parameterized_class_type_arguments] = STATE(5178), - [sym__instance_variables] = STATE(2663), - [aux_sym__interface_declaration] = STATE(2664), - [sym__interface_declaration_specifier] = STATE(2664), - [sym_method_declaration] = STATE(2664), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2664), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2962), - [anon_sym_ATend] = ACTIONS(2964), - [sym_optional] = ACTIONS(2966), - [sym_required] = ACTIONS(2966), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1776] = { - [sym_preproc_def] = STATE(2335), - [sym_preproc_function_def] = STATE(2335), - [sym_declaration] = STATE(2335), - [sym_type_definition] = STATE(2335), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2335), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1970), - [sym_parameterized_class_type_arguments] = STATE(5125), - [sym__instance_variables] = STATE(2336), - [aux_sym__interface_declaration] = STATE(2335), - [sym__interface_declaration_specifier] = STATE(2335), - [sym_method_declaration] = STATE(2335), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2335), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2502), - [anon_sym_ATend] = ACTIONS(2504), - [sym_optional] = ACTIONS(2506), - [sym_required] = ACTIONS(2506), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1777] = { - [sym_preproc_def] = STATE(2332), - [sym_preproc_function_def] = STATE(2332), - [sym_declaration] = STATE(2332), - [sym_type_definition] = STATE(2332), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2332), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1988), - [sym_parameterized_class_type_arguments] = STATE(5240), - [sym__instance_variables] = STATE(2334), - [aux_sym__interface_declaration] = STATE(2332), - [sym__interface_declaration_specifier] = STATE(2332), - [sym_method_declaration] = STATE(2332), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2332), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2968), - [anon_sym_ATend] = ACTIONS(2970), - [sym_optional] = ACTIONS(2972), - [sym_required] = ACTIONS(2972), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1778] = { - [sym_preproc_def] = STATE(2341), - [sym_preproc_function_def] = STATE(2341), - [sym_declaration] = STATE(2341), - [sym_type_definition] = STATE(2341), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2341), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1981), - [sym__instance_variables] = STATE(2342), - [aux_sym__interface_declaration] = STATE(2341), - [sym__interface_declaration_specifier] = STATE(2341), - [sym_method_declaration] = STATE(2341), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2341), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2976), - [anon_sym_ATend] = ACTIONS(2978), - [sym_optional] = ACTIONS(2980), - [sym_required] = ACTIONS(2980), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1779] = { - [sym_preproc_def] = STATE(2343), - [sym_preproc_function_def] = STATE(2343), - [sym_declaration] = STATE(2343), - [sym_type_definition] = STATE(2343), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2343), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1980), - [sym_parameterized_class_type_arguments] = STATE(5236), - [sym__instance_variables] = STATE(2344), - [aux_sym__interface_declaration] = STATE(2343), - [sym__interface_declaration_specifier] = STATE(2343), - [sym_method_declaration] = STATE(2343), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2343), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2982), - [anon_sym_ATend] = ACTIONS(2984), - [sym_optional] = ACTIONS(2986), - [sym_required] = ACTIONS(2986), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1780] = { - [sym_preproc_def] = STATE(2406), - [sym_preproc_function_def] = STATE(2406), - [sym_declaration] = STATE(2406), - [sym_type_definition] = STATE(2406), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2406), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1899), - [sym_parameterized_class_type_arguments] = STATE(5186), - [sym__instance_variables] = STATE(2489), - [aux_sym__interface_declaration] = STATE(2406), - [sym__interface_declaration_specifier] = STATE(2406), - [sym_method_declaration] = STATE(2406), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2406), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2580), - [anon_sym_ATend] = ACTIONS(2582), - [sym_optional] = ACTIONS(2584), - [sym_required] = ACTIONS(2584), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1781] = { - [sym_preproc_def] = STATE(2515), - [sym_preproc_function_def] = STATE(2515), - [sym_declaration] = STATE(2515), - [sym_type_definition] = STATE(2515), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2515), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1897), - [sym_parameterized_class_type_arguments] = STATE(5179), - [sym__instance_variables] = STATE(2509), - [aux_sym__interface_declaration] = STATE(2515), - [sym__interface_declaration_specifier] = STATE(2515), - [sym_method_declaration] = STATE(2515), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2515), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2988), - [anon_sym_ATend] = ACTIONS(2990), - [sym_optional] = ACTIONS(2992), - [sym_required] = ACTIONS(2992), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1782] = { - [sym_preproc_def] = STATE(2508), - [sym_preproc_function_def] = STATE(2508), - [sym_declaration] = STATE(2508), - [sym_type_definition] = STATE(2508), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2508), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1949), - [sym__instance_variables] = STATE(2007), - [aux_sym__interface_declaration] = STATE(2508), - [sym__interface_declaration_specifier] = STATE(2508), - [sym_method_declaration] = STATE(2508), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2508), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(2994), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2996), - [anon_sym_ATend] = ACTIONS(2998), - [sym_optional] = ACTIONS(3000), - [sym_required] = ACTIONS(3000), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1783] = { - [sym_preproc_def] = STATE(2680), - [sym_preproc_function_def] = STATE(2680), - [sym_declaration] = STATE(2680), - [sym_type_definition] = STATE(2680), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2680), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1903), - [sym_parameterized_class_type_arguments] = STATE(5175), - [sym__instance_variables] = STATE(2478), - [aux_sym__interface_declaration] = STATE(2680), - [sym__interface_declaration_specifier] = STATE(2680), - [sym_method_declaration] = STATE(2680), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2680), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3002), - [anon_sym_ATend] = ACTIONS(3004), - [sym_optional] = ACTIONS(3006), - [sym_required] = ACTIONS(3006), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1784] = { - [sym_preproc_def] = STATE(2390), - [sym_preproc_function_def] = STATE(2390), - [sym_declaration] = STATE(2390), - [sym_type_definition] = STATE(2390), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2390), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1948), - [sym_parameterized_class_type_arguments] = STATE(5214), - [sym__instance_variables] = STATE(2391), - [aux_sym__interface_declaration] = STATE(2390), - [sym__interface_declaration_specifier] = STATE(2390), - [sym_method_declaration] = STATE(2390), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2390), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3008), - [anon_sym_ATend] = ACTIONS(3010), - [sym_optional] = ACTIONS(3012), - [sym_required] = ACTIONS(3012), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1785] = { - [sym_preproc_def] = STATE(2559), - [sym_preproc_function_def] = STATE(2559), - [sym_declaration] = STATE(2559), - [sym_type_definition] = STATE(2559), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2559), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1944), - [sym_parameterized_class_type_arguments] = STATE(5134), - [sym__instance_variables] = STATE(2604), - [aux_sym__interface_declaration] = STATE(2559), - [sym__interface_declaration_specifier] = STATE(2559), - [sym_method_declaration] = STATE(2559), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2559), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3014), - [anon_sym_ATend] = ACTIONS(3016), - [sym_optional] = ACTIONS(3018), - [sym_required] = ACTIONS(3018), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1786] = { - [sym_preproc_def] = STATE(2382), - [sym_preproc_function_def] = STATE(2382), - [sym_declaration] = STATE(2382), - [sym_type_definition] = STATE(2382), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2382), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1965), - [sym_parameterized_class_type_arguments] = STATE(5220), - [sym__instance_variables] = STATE(2383), - [aux_sym__interface_declaration] = STATE(2382), - [sym__interface_declaration_specifier] = STATE(2382), - [sym_method_declaration] = STATE(2382), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2382), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2538), - [anon_sym_ATend] = ACTIONS(2540), - [sym_optional] = ACTIONS(2542), - [sym_required] = ACTIONS(2542), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1787] = { - [sym_preproc_def] = STATE(2387), - [sym_preproc_function_def] = STATE(2387), - [sym_declaration] = STATE(2387), - [sym_type_definition] = STATE(2387), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2387), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1929), - [sym__instance_variables] = STATE(2388), - [aux_sym__interface_declaration] = STATE(2387), - [sym__interface_declaration_specifier] = STATE(2387), - [sym_method_declaration] = STATE(2387), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2387), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(3020), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3022), - [anon_sym_ATend] = ACTIONS(3024), - [sym_optional] = ACTIONS(3026), - [sym_required] = ACTIONS(3026), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1788] = { - [sym_preproc_def] = STATE(2066), - [sym_preproc_function_def] = STATE(2066), - [sym_declaration] = STATE(2066), - [sym_type_definition] = STATE(2066), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2066), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1969), - [sym_parameterized_class_type_arguments] = STATE(5116), - [sym__instance_variables] = STATE(2068), - [aux_sym__interface_declaration] = STATE(2066), - [sym__interface_declaration_specifier] = STATE(2066), - [sym_method_declaration] = STATE(2066), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2066), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3028), - [anon_sym_ATend] = ACTIONS(3030), - [sym_optional] = ACTIONS(3032), - [sym_required] = ACTIONS(3032), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1789] = { - [sym_preproc_def] = STATE(2414), - [sym_preproc_function_def] = STATE(2414), - [sym_declaration] = STATE(2414), - [sym_type_definition] = STATE(2414), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2414), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(2415), - [aux_sym__interface_declaration] = STATE(2414), - [sym__interface_declaration_specifier] = STATE(2414), - [sym_method_declaration] = STATE(2414), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2414), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [aux_sym_protocol_forward_declaration_repeat1] = STATE(5012), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_SEMI] = ACTIONS(3038), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3040), - [anon_sym_ATend] = ACTIONS(3042), - [sym_optional] = ACTIONS(3044), - [sym_required] = ACTIONS(3044), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1790] = { - [sym_preproc_def] = STATE(2264), - [sym_preproc_function_def] = STATE(2264), - [sym_declaration] = STATE(2264), - [sym_type_definition] = STATE(2264), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2264), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1913), - [sym_parameterized_class_type_arguments] = STATE(5073), - [sym__instance_variables] = STATE(2265), - [aux_sym__interface_declaration] = STATE(2264), - [sym__interface_declaration_specifier] = STATE(2264), - [sym_method_declaration] = STATE(2264), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2264), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3046), - [anon_sym_ATend] = ACTIONS(3048), - [sym_optional] = ACTIONS(3050), - [sym_required] = ACTIONS(3050), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1791] = { - [sym_preproc_def] = STATE(2481), - [sym_preproc_function_def] = STATE(2481), - [sym_declaration] = STATE(2481), - [sym_type_definition] = STATE(2481), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2481), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1990), - [sym_parameterized_class_type_arguments] = STATE(5113), - [sym__instance_variables] = STATE(2480), - [aux_sym__interface_declaration] = STATE(2481), - [sym__interface_declaration_specifier] = STATE(2481), - [sym_method_declaration] = STATE(2481), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2481), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3052), - [anon_sym_ATend] = ACTIONS(3054), - [sym_optional] = ACTIONS(3056), - [sym_required] = ACTIONS(3056), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1792] = { - [sym_preproc_def] = STATE(2340), - [sym_preproc_function_def] = STATE(2340), - [sym_declaration] = STATE(2340), - [sym_type_definition] = STATE(2340), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2340), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1954), - [sym_parameterized_class_type_arguments] = STATE(5054), - [sym__instance_variables] = STATE(2347), - [aux_sym__interface_declaration] = STATE(2340), - [sym__interface_declaration_specifier] = STATE(2340), - [sym_method_declaration] = STATE(2340), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2340), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3058), - [anon_sym_ATend] = ACTIONS(3060), - [sym_optional] = ACTIONS(3062), - [sym_required] = ACTIONS(3062), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1793] = { - [sym_preproc_def] = STATE(2191), - [sym_preproc_function_def] = STATE(2191), - [sym_declaration] = STATE(2191), - [sym_type_definition] = STATE(2191), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2191), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1886), - [sym_parameterized_class_type_arguments] = STATE(5034), - [sym__instance_variables] = STATE(2192), - [aux_sym__interface_declaration] = STATE(2191), - [sym__interface_declaration_specifier] = STATE(2191), - [sym_method_declaration] = STATE(2191), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2191), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3064), - [anon_sym_ATend] = ACTIONS(3066), - [sym_optional] = ACTIONS(3068), - [sym_required] = ACTIONS(3068), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1794] = { - [sym_preproc_def] = STATE(2185), - [sym_preproc_function_def] = STATE(2185), - [sym_declaration] = STATE(2185), - [sym_type_definition] = STATE(2185), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2185), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1882), - [sym_parameterized_class_type_arguments] = STATE(5070), - [sym__instance_variables] = STATE(2186), - [aux_sym__interface_declaration] = STATE(2185), - [sym__interface_declaration_specifier] = STATE(2185), - [sym_method_declaration] = STATE(2185), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2185), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3070), - [anon_sym_ATend] = ACTIONS(3072), - [sym_optional] = ACTIONS(3074), - [sym_required] = ACTIONS(3074), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1795] = { - [sym_preproc_def] = STATE(2670), - [sym_preproc_function_def] = STATE(2670), - [sym_declaration] = STATE(2670), - [sym_type_definition] = STATE(2670), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2670), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1911), - [sym_parameterized_class_type_arguments] = STATE(5206), - [sym__instance_variables] = STATE(2669), - [aux_sym__interface_declaration] = STATE(2670), - [sym__interface_declaration_specifier] = STATE(2670), - [sym_method_declaration] = STATE(2670), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2670), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3076), - [anon_sym_ATend] = ACTIONS(3078), - [sym_optional] = ACTIONS(3080), - [sym_required] = ACTIONS(3080), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1796] = { - [sym_preproc_def] = STATE(2673), - [sym_preproc_function_def] = STATE(2673), - [sym_declaration] = STATE(2673), - [sym_type_definition] = STATE(2673), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2673), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1933), - [sym__instance_variables] = STATE(2672), - [aux_sym__interface_declaration] = STATE(2673), - [sym__interface_declaration_specifier] = STATE(2673), - [sym_method_declaration] = STATE(2673), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2673), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(3082), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3084), - [anon_sym_ATend] = ACTIONS(3086), - [sym_optional] = ACTIONS(3088), - [sym_required] = ACTIONS(3088), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1797] = { - [sym_preproc_def] = STATE(2678), - [sym_preproc_function_def] = STATE(2678), - [sym_declaration] = STATE(2678), - [sym_type_definition] = STATE(2678), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2678), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1894), - [sym_parameterized_class_type_arguments] = STATE(5200), - [sym__instance_variables] = STATE(2677), - [aux_sym__interface_declaration] = STATE(2678), - [sym__interface_declaration_specifier] = STATE(2678), - [sym_method_declaration] = STATE(2678), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2678), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2562), - [anon_sym_ATend] = ACTIONS(2564), - [sym_optional] = ACTIONS(2566), - [sym_required] = ACTIONS(2566), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1798] = { - [sym_preproc_def] = STATE(2352), - [sym_preproc_function_def] = STATE(2352), - [sym_declaration] = STATE(2352), - [sym_type_definition] = STATE(2352), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2352), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1953), - [sym_parameterized_class_type_arguments] = STATE(5050), - [sym__instance_variables] = STATE(2355), - [aux_sym__interface_declaration] = STATE(2352), - [sym__interface_declaration_specifier] = STATE(2352), - [sym_method_declaration] = STATE(2352), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2352), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2484), - [anon_sym_ATend] = ACTIONS(2486), - [sym_optional] = ACTIONS(2488), - [sym_required] = ACTIONS(2488), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1799] = { - [sym_preproc_def] = STATE(2218), - [sym_preproc_function_def] = STATE(2218), - [sym_declaration] = STATE(2218), - [sym_type_definition] = STATE(2218), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2218), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1883), - [sym_parameterized_class_type_arguments] = STATE(5093), - [sym__instance_variables] = STATE(2200), - [aux_sym__interface_declaration] = STATE(2218), - [sym__interface_declaration_specifier] = STATE(2218), - [sym_method_declaration] = STATE(2218), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2218), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3090), - [anon_sym_ATend] = ACTIONS(3092), - [sym_optional] = ACTIONS(3094), - [sym_required] = ACTIONS(3094), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1800] = { - [sym_preproc_def] = STATE(2439), - [sym_preproc_function_def] = STATE(2439), - [sym_declaration] = STATE(2439), - [sym_type_definition] = STATE(2439), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2439), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1979), - [sym_parameterized_class_type_arguments] = STATE(5201), - [sym__instance_variables] = STATE(2441), - [aux_sym__interface_declaration] = STATE(2439), - [sym__interface_declaration_specifier] = STATE(2439), - [sym_method_declaration] = STATE(2439), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2439), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3096), - [anon_sym_ATend] = ACTIONS(3098), - [sym_optional] = ACTIONS(3100), - [sym_required] = ACTIONS(3100), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1801] = { - [sym_preproc_def] = STATE(2531), - [sym_preproc_function_def] = STATE(2531), - [sym_declaration] = STATE(2531), - [sym_type_definition] = STATE(2531), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2531), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1906), - [sym_parameterized_class_type_arguments] = STATE(5227), - [sym__instance_variables] = STATE(2484), - [aux_sym__interface_declaration] = STATE(2531), - [sym__interface_declaration_specifier] = STATE(2531), - [sym_method_declaration] = STATE(2531), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2531), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3102), - [anon_sym_ATend] = ACTIONS(3104), - [sym_optional] = ACTIONS(3106), - [sym_required] = ACTIONS(3106), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1802] = { - [sym_preproc_def] = STATE(2019), - [sym_preproc_function_def] = STATE(2019), - [sym_declaration] = STATE(2019), - [sym_type_definition] = STATE(2019), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2019), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(2018), - [aux_sym__interface_declaration] = STATE(2019), - [sym__interface_declaration_specifier] = STATE(2019), - [sym_method_declaration] = STATE(2019), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2019), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [aux_sym_protocol_forward_declaration_repeat1] = STATE(5009), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3110), - [anon_sym_ATend] = ACTIONS(3112), - [sym_optional] = ACTIONS(3114), - [sym_required] = ACTIONS(3114), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1803] = { - [sym_preproc_def] = STATE(2099), - [sym_preproc_function_def] = STATE(2099), - [sym_declaration] = STATE(2099), - [sym_type_definition] = STATE(2099), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2099), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1877), - [sym_parameterized_class_type_arguments] = STATE(5100), - [sym__instance_variables] = STATE(2134), - [aux_sym__interface_declaration] = STATE(2099), - [sym__interface_declaration_specifier] = STATE(2099), - [sym_method_declaration] = STATE(2099), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2099), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3116), - [anon_sym_ATend] = ACTIONS(3118), - [sym_optional] = ACTIONS(3120), - [sym_required] = ACTIONS(3120), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1804] = { - [sym_preproc_def] = STATE(2379), - [sym_preproc_function_def] = STATE(2379), - [sym_declaration] = STATE(2379), - [sym_type_definition] = STATE(2379), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2379), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1967), - [sym_parameterized_class_type_arguments] = STATE(5105), - [sym__instance_variables] = STATE(2378), - [aux_sym__interface_declaration] = STATE(2379), - [sym__interface_declaration_specifier] = STATE(2379), - [sym_method_declaration] = STATE(2379), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2379), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2556), - [anon_sym_ATend] = ACTIONS(2558), - [sym_optional] = ACTIONS(2560), - [sym_required] = ACTIONS(2560), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1805] = { - [sym_preproc_def] = STATE(2474), - [sym_preproc_function_def] = STATE(2474), - [sym_declaration] = STATE(2474), - [sym_type_definition] = STATE(2474), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2474), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1907), - [sym_parameterized_class_type_arguments] = STATE(5112), - [sym__instance_variables] = STATE(2469), - [aux_sym__interface_declaration] = STATE(2474), - [sym__interface_declaration_specifier] = STATE(2474), - [sym_method_declaration] = STATE(2474), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2474), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3122), - [anon_sym_ATend] = ACTIONS(3124), - [sym_optional] = ACTIONS(3126), - [sym_required] = ACTIONS(3126), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1806] = { - [sym_preproc_def] = STATE(2309), - [sym_preproc_function_def] = STATE(2309), - [sym_declaration] = STATE(2309), - [sym_type_definition] = STATE(2309), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2309), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1928), - [sym_parameterized_class_type_arguments] = STATE(5057), - [sym__instance_variables] = STATE(2308), - [aux_sym__interface_declaration] = STATE(2309), - [sym__interface_declaration_specifier] = STATE(2309), - [sym_method_declaration] = STATE(2309), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2309), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2496), - [anon_sym_ATend] = ACTIONS(2498), - [sym_optional] = ACTIONS(2500), - [sym_required] = ACTIONS(2500), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1807] = { - [sym_preproc_def] = STATE(2392), - [sym_preproc_function_def] = STATE(2392), - [sym_declaration] = STATE(2392), - [sym_type_definition] = STATE(2392), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2392), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1975), - [sym_parameterized_class_type_arguments] = STATE(5090), - [sym__instance_variables] = STATE(2389), - [aux_sym__interface_declaration] = STATE(2392), - [sym__interface_declaration_specifier] = STATE(2392), - [sym_method_declaration] = STATE(2392), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2392), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3128), - [anon_sym_ATend] = ACTIONS(3130), - [sym_optional] = ACTIONS(3132), - [sym_required] = ACTIONS(3132), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1808] = { - [sym_preproc_def] = STATE(2261), - [sym_preproc_function_def] = STATE(2261), - [sym_declaration] = STATE(2261), - [sym_type_definition] = STATE(2261), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2261), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1924), - [sym__instance_variables] = STATE(2257), - [aux_sym__interface_declaration] = STATE(2261), - [sym__interface_declaration_specifier] = STATE(2261), - [sym_method_declaration] = STATE(2261), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2261), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(3134), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3136), - [anon_sym_ATend] = ACTIONS(3138), - [sym_optional] = ACTIONS(3140), - [sym_required] = ACTIONS(3140), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1809] = { - [sym_preproc_def] = STATE(2592), - [sym_preproc_function_def] = STATE(2592), - [sym_declaration] = STATE(2592), - [sym_type_definition] = STATE(2592), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2592), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1867), - [sym_parameterized_class_type_arguments] = STATE(5124), - [sym__instance_variables] = STATE(2591), - [aux_sym__interface_declaration] = STATE(2592), - [sym__interface_declaration_specifier] = STATE(2592), - [sym_method_declaration] = STATE(2592), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2592), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3142), - [anon_sym_ATend] = ACTIONS(3144), - [sym_optional] = ACTIONS(3146), - [sym_required] = ACTIONS(3146), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1810] = { - [sym_preproc_def] = STATE(2543), - [sym_preproc_function_def] = STATE(2543), - [sym_declaration] = STATE(2543), - [sym_type_definition] = STATE(2543), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2543), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(2542), - [aux_sym__interface_declaration] = STATE(2543), - [sym__interface_declaration_specifier] = STATE(2543), - [sym_method_declaration] = STATE(2543), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2543), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [aux_sym_protocol_forward_declaration_repeat1] = STATE(4938), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_COMMA] = ACTIONS(3034), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_SEMI] = ACTIONS(3148), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3150), - [anon_sym_ATend] = ACTIONS(3152), - [sym_optional] = ACTIONS(3154), - [sym_required] = ACTIONS(3154), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1811] = { - [sym_preproc_def] = STATE(2598), - [sym_preproc_function_def] = STATE(2598), - [sym_declaration] = STATE(2598), - [sym_type_definition] = STATE(2598), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2598), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1871), - [sym_parameterized_class_type_arguments] = STATE(5128), - [sym__instance_variables] = STATE(2597), - [aux_sym__interface_declaration] = STATE(2598), - [sym__interface_declaration_specifier] = STATE(2598), - [sym_method_declaration] = STATE(2598), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2598), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3156), - [anon_sym_ATend] = ACTIONS(3158), - [sym_optional] = ACTIONS(3160), - [sym_required] = ACTIONS(3160), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1812] = { - [sym_preproc_def] = STATE(2254), - [sym_preproc_function_def] = STATE(2254), - [sym_declaration] = STATE(2254), - [sym_type_definition] = STATE(2254), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2254), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1921), - [sym_parameterized_class_type_arguments] = STATE(5097), - [sym__instance_variables] = STATE(2253), - [aux_sym__interface_declaration] = STATE(2254), - [sym__interface_declaration_specifier] = STATE(2254), - [sym_method_declaration] = STATE(2254), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2254), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3162), - [anon_sym_ATend] = ACTIONS(3164), - [sym_optional] = ACTIONS(3166), - [sym_required] = ACTIONS(3166), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1813] = { - [sym_preproc_def] = STATE(2373), - [sym_preproc_function_def] = STATE(2373), - [sym_declaration] = STATE(2373), - [sym_type_definition] = STATE(2373), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2373), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1960), - [sym__instance_variables] = STATE(2372), - [aux_sym__interface_declaration] = STATE(2373), - [sym__interface_declaration_specifier] = STATE(2373), - [sym_method_declaration] = STATE(2373), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2373), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3170), - [anon_sym_ATend] = ACTIONS(3172), - [sym_optional] = ACTIONS(3174), - [sym_required] = ACTIONS(3174), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1814] = { - [sym_preproc_def] = STATE(2554), - [sym_preproc_function_def] = STATE(2554), - [sym_declaration] = STATE(2554), - [sym_type_definition] = STATE(2554), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2554), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1870), - [sym_parameterized_class_type_arguments] = STATE(5139), - [sym__instance_variables] = STATE(2583), - [aux_sym__interface_declaration] = STATE(2554), - [sym__interface_declaration_specifier] = STATE(2554), - [sym_method_declaration] = STATE(2554), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2554), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3176), - [anon_sym_ATend] = ACTIONS(3178), - [sym_optional] = ACTIONS(3180), - [sym_required] = ACTIONS(3180), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1815] = { - [sym_preproc_def] = STATE(2224), - [sym_preproc_function_def] = STATE(2224), - [sym_declaration] = STATE(2224), - [sym_type_definition] = STATE(2224), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2224), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1939), - [sym__instance_variables] = STATE(2187), - [aux_sym__interface_declaration] = STATE(2224), - [sym__interface_declaration_specifier] = STATE(2224), - [sym_method_declaration] = STATE(2224), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2224), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3182), - [anon_sym_ATend] = ACTIONS(3184), - [sym_optional] = ACTIONS(3186), - [sym_required] = ACTIONS(3186), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1816] = { - [sym_preproc_def] = STATE(2060), - [sym_preproc_function_def] = STATE(2060), - [sym_declaration] = STATE(2060), - [sym_type_definition] = STATE(2060), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2060), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1876), - [sym__instance_variables] = STATE(2061), - [aux_sym__interface_declaration] = STATE(2060), - [sym__interface_declaration_specifier] = STATE(2060), - [sym_method_declaration] = STATE(2060), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2060), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3188), - [anon_sym_ATend] = ACTIONS(3190), - [sym_optional] = ACTIONS(3192), - [sym_required] = ACTIONS(3192), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1817] = { - [sym_preproc_def] = STATE(2262), - [sym_preproc_function_def] = STATE(2262), - [sym_declaration] = STATE(2262), - [sym_type_definition] = STATE(2262), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2262), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1912), - [sym__instance_variables] = STATE(2263), - [aux_sym__interface_declaration] = STATE(2262), - [sym__interface_declaration_specifier] = STATE(2262), - [sym_method_declaration] = STATE(2262), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2262), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3194), - [anon_sym_ATend] = ACTIONS(3196), - [sym_optional] = ACTIONS(3198), - [sym_required] = ACTIONS(3198), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1818] = { - [sym_preproc_def] = STATE(2477), - [sym_preproc_function_def] = STATE(2477), - [sym_declaration] = STATE(2477), - [sym_type_definition] = STATE(2477), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2477), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1895), - [sym__instance_variables] = STATE(2476), - [aux_sym__interface_declaration] = STATE(2477), - [sym__interface_declaration_specifier] = STATE(2477), - [sym_method_declaration] = STATE(2477), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2477), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3200), - [anon_sym_ATend] = ACTIONS(3202), - [sym_optional] = ACTIONS(3204), - [sym_required] = ACTIONS(3204), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1819] = { - [sym_preproc_def] = STATE(2667), - [sym_preproc_function_def] = STATE(2667), - [sym_declaration] = STATE(2667), - [sym_type_definition] = STATE(2667), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2667), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1997), - [sym__instance_variables] = STATE(2666), - [aux_sym__interface_declaration] = STATE(2667), - [sym__interface_declaration_specifier] = STATE(2667), - [sym_method_declaration] = STATE(2667), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2667), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3206), - [anon_sym_ATend] = ACTIONS(3208), - [sym_optional] = ACTIONS(3210), - [sym_required] = ACTIONS(3210), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1820] = { - [sym_preproc_def] = STATE(2279), - [sym_preproc_function_def] = STATE(2279), - [sym_declaration] = STATE(2279), - [sym_type_definition] = STATE(2279), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2279), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1920), - [sym__instance_variables] = STATE(2280), - [aux_sym__interface_declaration] = STATE(2279), - [sym__interface_declaration_specifier] = STATE(2279), - [sym_method_declaration] = STATE(2279), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2279), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3212), - [anon_sym_ATend] = ACTIONS(3214), - [sym_optional] = ACTIONS(3216), - [sym_required] = ACTIONS(3216), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1821] = { - [sym_preproc_def] = STATE(2292), - [sym_preproc_function_def] = STATE(2292), - [sym_declaration] = STATE(2292), - [sym_type_definition] = STATE(2292), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2292), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1927), - [sym__instance_variables] = STATE(2293), - [aux_sym__interface_declaration] = STATE(2292), - [sym__interface_declaration_specifier] = STATE(2292), - [sym_method_declaration] = STATE(2292), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2292), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3218), - [anon_sym_ATend] = ACTIONS(3220), - [sym_optional] = ACTIONS(3222), - [sym_required] = ACTIONS(3222), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1822] = { - [sym_preproc_def] = STATE(2594), - [sym_preproc_function_def] = STATE(2594), - [sym_declaration] = STATE(2594), - [sym_type_definition] = STATE(2594), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2594), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1868), - [sym__instance_variables] = STATE(2593), - [aux_sym__interface_declaration] = STATE(2594), - [sym__interface_declaration_specifier] = STATE(2594), - [sym_method_declaration] = STATE(2594), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2594), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3224), - [anon_sym_ATend] = ACTIONS(3226), - [sym_optional] = ACTIONS(3228), - [sym_required] = ACTIONS(3228), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1823] = { - [sym_preproc_def] = STATE(2600), - [sym_preproc_function_def] = STATE(2600), - [sym_declaration] = STATE(2600), - [sym_type_definition] = STATE(2600), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2600), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1872), - [sym__instance_variables] = STATE(2599), - [aux_sym__interface_declaration] = STATE(2600), - [sym__interface_declaration_specifier] = STATE(2600), - [sym_method_declaration] = STATE(2600), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2600), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3230), - [anon_sym_ATend] = ACTIONS(3232), - [sym_optional] = ACTIONS(3234), - [sym_required] = ACTIONS(3234), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1824] = { - [sym_preproc_def] = STATE(2295), - [sym_preproc_function_def] = STATE(2295), - [sym_declaration] = STATE(2295), - [sym_type_definition] = STATE(2295), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2295), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(2000), - [sym__instance_variables] = STATE(2296), - [aux_sym__interface_declaration] = STATE(2295), - [sym__interface_declaration_specifier] = STATE(2295), - [sym_method_declaration] = STATE(2295), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2295), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3236), - [anon_sym_ATend] = ACTIONS(3238), - [sym_optional] = ACTIONS(3240), - [sym_required] = ACTIONS(3240), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1825] = { - [sym_preproc_def] = STATE(2300), - [sym_preproc_function_def] = STATE(2300), - [sym_declaration] = STATE(2300), - [sym_type_definition] = STATE(2300), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2300), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1973), - [sym__instance_variables] = STATE(2301), - [aux_sym__interface_declaration] = STATE(2300), - [sym__interface_declaration_specifier] = STATE(2300), - [sym_method_declaration] = STATE(2300), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2300), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3242), - [anon_sym_ATend] = ACTIONS(3244), - [sym_optional] = ACTIONS(3246), - [sym_required] = ACTIONS(3246), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1826] = { - [sym_preproc_def] = STATE(2329), - [sym_preproc_function_def] = STATE(2329), - [sym_declaration] = STATE(2329), - [sym_type_definition] = STATE(2329), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2329), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1987), - [sym__instance_variables] = STATE(2330), - [aux_sym__interface_declaration] = STATE(2329), - [sym__interface_declaration_specifier] = STATE(2329), - [sym_method_declaration] = STATE(2329), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2329), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3248), - [anon_sym_ATend] = ACTIONS(3250), - [sym_optional] = ACTIONS(3252), - [sym_required] = ACTIONS(3252), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1827] = { - [sym_preproc_def] = STATE(2512), - [sym_preproc_function_def] = STATE(2512), - [sym_declaration] = STATE(2512), - [sym_type_definition] = STATE(2512), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2512), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1959), - [sym__instance_variables] = STATE(2511), - [aux_sym__interface_declaration] = STATE(2512), - [sym__interface_declaration_specifier] = STATE(2512), - [sym_method_declaration] = STATE(2512), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2512), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3254), - [anon_sym_ATend] = ACTIONS(3256), - [sym_optional] = ACTIONS(3258), - [sym_required] = ACTIONS(3258), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1828] = { - [sym_preproc_def] = STATE(2337), - [sym_preproc_function_def] = STATE(2337), - [sym_declaration] = STATE(2337), - [sym_type_definition] = STATE(2337), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2337), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1984), - [sym__instance_variables] = STATE(2338), - [aux_sym__interface_declaration] = STATE(2337), - [sym__interface_declaration_specifier] = STATE(2337), - [sym_method_declaration] = STATE(2337), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2337), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3260), - [anon_sym_ATend] = ACTIONS(3262), - [sym_optional] = ACTIONS(3264), - [sym_required] = ACTIONS(3264), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1829] = { - [sym_preproc_def] = STATE(2459), - [sym_preproc_function_def] = STATE(2459), - [sym_declaration] = STATE(2459), - [sym_type_definition] = STATE(2459), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2459), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1956), - [sym__instance_variables] = STATE(2458), - [aux_sym__interface_declaration] = STATE(2459), - [sym__interface_declaration_specifier] = STATE(2459), - [sym_method_declaration] = STATE(2459), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2459), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3266), - [anon_sym_ATend] = ACTIONS(3268), - [sym_optional] = ACTIONS(3270), - [sym_required] = ACTIONS(3270), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1830] = { - [sym_preproc_def] = STATE(2520), - [sym_preproc_function_def] = STATE(2520), - [sym_declaration] = STATE(2520), - [sym_type_definition] = STATE(2520), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2520), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1957), - [sym__instance_variables] = STATE(2519), - [aux_sym__interface_declaration] = STATE(2520), - [sym__interface_declaration_specifier] = STATE(2520), - [sym_method_declaration] = STATE(2520), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2520), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3272), - [anon_sym_ATend] = ACTIONS(3274), - [sym_optional] = ACTIONS(3276), - [sym_required] = ACTIONS(3276), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1831] = { - [sym_preproc_def] = STATE(2558), - [sym_preproc_function_def] = STATE(2558), - [sym_declaration] = STATE(2558), - [sym_type_definition] = STATE(2558), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2558), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1896), - [sym__instance_variables] = STATE(2550), - [aux_sym__interface_declaration] = STATE(2558), - [sym__interface_declaration_specifier] = STATE(2558), - [sym_method_declaration] = STATE(2558), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2558), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3278), - [anon_sym_ATend] = ACTIONS(3280), - [sym_optional] = ACTIONS(3282), - [sym_required] = ACTIONS(3282), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1832] = { - [sym_preproc_def] = STATE(2526), - [sym_preproc_function_def] = STATE(2526), - [sym_declaration] = STATE(2526), - [sym_type_definition] = STATE(2526), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2526), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1932), - [sym__instance_variables] = STATE(2525), - [aux_sym__interface_declaration] = STATE(2526), - [sym__interface_declaration_specifier] = STATE(2526), - [sym_method_declaration] = STATE(2526), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2526), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3284), - [anon_sym_ATend] = ACTIONS(3286), - [sym_optional] = ACTIONS(3288), - [sym_required] = ACTIONS(3288), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1833] = { - [sym_preproc_def] = STATE(2498), - [sym_preproc_function_def] = STATE(2498), - [sym_declaration] = STATE(2498), - [sym_type_definition] = STATE(2498), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2498), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1901), - [sym__instance_variables] = STATE(2490), - [aux_sym__interface_declaration] = STATE(2498), - [sym__interface_declaration_specifier] = STATE(2498), - [sym_method_declaration] = STATE(2498), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2498), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3290), - [anon_sym_ATend] = ACTIONS(3292), - [sym_optional] = ACTIONS(3294), - [sym_required] = ACTIONS(3294), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1834] = { - [sym_preproc_def] = STATE(2402), - [sym_preproc_function_def] = STATE(2402), - [sym_declaration] = STATE(2402), - [sym_type_definition] = STATE(2402), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2402), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1915), - [sym__instance_variables] = STATE(2399), - [aux_sym__interface_declaration] = STATE(2402), - [sym__interface_declaration_specifier] = STATE(2402), - [sym_method_declaration] = STATE(2402), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2402), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3296), - [anon_sym_ATend] = ACTIONS(3298), - [sym_optional] = ACTIONS(3300), - [sym_required] = ACTIONS(3300), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1835] = { - [sym_preproc_def] = STATE(2353), - [sym_preproc_function_def] = STATE(2353), - [sym_declaration] = STATE(2353), - [sym_type_definition] = STATE(2353), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2353), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1972), - [sym__instance_variables] = STATE(2354), - [aux_sym__interface_declaration] = STATE(2353), - [sym__interface_declaration_specifier] = STATE(2353), - [sym_method_declaration] = STATE(2353), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2353), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3302), - [anon_sym_ATend] = ACTIONS(3304), - [sym_optional] = ACTIONS(3306), - [sym_required] = ACTIONS(3306), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1836] = { - [sym_preproc_def] = STATE(2252), - [sym_preproc_function_def] = STATE(2252), - [sym_declaration] = STATE(2252), - [sym_type_definition] = STATE(2252), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2252), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1931), - [sym__instance_variables] = STATE(2249), - [aux_sym__interface_declaration] = STATE(2252), - [sym__interface_declaration_specifier] = STATE(2252), - [sym_method_declaration] = STATE(2252), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2252), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3308), - [anon_sym_ATend] = ACTIONS(3310), - [sym_optional] = ACTIONS(3312), - [sym_required] = ACTIONS(3312), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1837] = { - [sym_preproc_def] = STATE(2432), - [sym_preproc_function_def] = STATE(2432), - [sym_declaration] = STATE(2432), - [sym_type_definition] = STATE(2432), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2432), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1963), - [sym__instance_variables] = STATE(2430), - [aux_sym__interface_declaration] = STATE(2432), - [sym__interface_declaration_specifier] = STATE(2432), - [sym_method_declaration] = STATE(2432), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2432), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3314), - [anon_sym_ATend] = ACTIONS(3316), - [sym_optional] = ACTIONS(3318), - [sym_required] = ACTIONS(3318), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1838] = { - [sym_preproc_def] = STATE(2111), - [sym_preproc_function_def] = STATE(2111), - [sym_declaration] = STATE(2111), - [sym_type_definition] = STATE(2111), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2111), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1898), - [sym__instance_variables] = STATE(2112), - [aux_sym__interface_declaration] = STATE(2111), - [sym__interface_declaration_specifier] = STATE(2111), - [sym_method_declaration] = STATE(2111), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2111), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3320), - [anon_sym_ATend] = ACTIONS(3322), - [sym_optional] = ACTIONS(3324), - [sym_required] = ACTIONS(3324), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1839] = { - [sym_preproc_def] = STATE(2426), - [sym_preproc_function_def] = STATE(2426), - [sym_declaration] = STATE(2426), - [sym_type_definition] = STATE(2426), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2426), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1951), - [sym__instance_variables] = STATE(2447), - [aux_sym__interface_declaration] = STATE(2426), - [sym__interface_declaration_specifier] = STATE(2426), - [sym_method_declaration] = STATE(2426), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2426), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3326), - [anon_sym_ATend] = ACTIONS(3328), - [sym_optional] = ACTIONS(3330), - [sym_required] = ACTIONS(3330), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1840] = { - [sym_preproc_def] = STATE(2053), - [sym_preproc_function_def] = STATE(2053), - [sym_declaration] = STATE(2053), - [sym_type_definition] = STATE(2053), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2053), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1946), - [sym__instance_variables] = STATE(2029), - [aux_sym__interface_declaration] = STATE(2053), - [sym__interface_declaration_specifier] = STATE(2053), - [sym_method_declaration] = STATE(2053), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2053), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3332), - [anon_sym_ATend] = ACTIONS(3334), - [sym_optional] = ACTIONS(3336), - [sym_required] = ACTIONS(3336), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1841] = { - [sym_preproc_def] = STATE(2002), - [sym_preproc_function_def] = STATE(2002), - [sym_declaration] = STATE(2002), - [sym_type_definition] = STATE(2002), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2002), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1968), - [sym__instance_variables] = STATE(2422), - [aux_sym__interface_declaration] = STATE(2002), - [sym__interface_declaration_specifier] = STATE(2002), - [sym_method_declaration] = STATE(2002), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2002), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3338), - [anon_sym_ATend] = ACTIONS(3340), - [sym_optional] = ACTIONS(3342), - [sym_required] = ACTIONS(3342), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1842] = { - [sym_preproc_def] = STATE(2551), - [sym_preproc_function_def] = STATE(2551), - [sym_declaration] = STATE(2551), - [sym_type_definition] = STATE(2551), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2551), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1922), - [sym__instance_variables] = STATE(2566), - [aux_sym__interface_declaration] = STATE(2551), - [sym__interface_declaration_specifier] = STATE(2551), - [sym_method_declaration] = STATE(2551), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2551), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3344), - [anon_sym_ATend] = ACTIONS(3346), - [sym_optional] = ACTIONS(3348), - [sym_required] = ACTIONS(3348), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1843] = { - [sym_preproc_def] = STATE(2064), - [sym_preproc_function_def] = STATE(2064), - [sym_declaration] = STATE(2064), - [sym_type_definition] = STATE(2064), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2064), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1974), - [sym__instance_variables] = STATE(2065), - [aux_sym__interface_declaration] = STATE(2064), - [sym__interface_declaration_specifier] = STATE(2064), - [sym_method_declaration] = STATE(2064), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2064), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3350), - [anon_sym_ATend] = ACTIONS(3352), - [sym_optional] = ACTIONS(3354), - [sym_required] = ACTIONS(3354), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1844] = { - [sym_preproc_def] = STATE(2417), - [sym_preproc_function_def] = STATE(2417), - [sym_declaration] = STATE(2417), - [sym_type_definition] = STATE(2417), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2417), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1986), - [sym__instance_variables] = STATE(2416), - [aux_sym__interface_declaration] = STATE(2417), - [sym__interface_declaration_specifier] = STATE(2417), - [sym_method_declaration] = STATE(2417), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2417), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3356), - [anon_sym_ATend] = ACTIONS(3358), - [sym_optional] = ACTIONS(3360), - [sym_required] = ACTIONS(3360), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1845] = { - [sym_preproc_def] = STATE(2544), - [sym_preproc_function_def] = STATE(2544), - [sym_declaration] = STATE(2544), - [sym_type_definition] = STATE(2544), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2544), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1942), - [sym__instance_variables] = STATE(2537), - [aux_sym__interface_declaration] = STATE(2544), - [sym__interface_declaration_specifier] = STATE(2544), - [sym_method_declaration] = STATE(2544), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2544), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3362), - [anon_sym_ATend] = ACTIONS(3364), - [sym_optional] = ACTIONS(3366), - [sym_required] = ACTIONS(3366), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1846] = { - [sym_preproc_def] = STATE(2239), - [sym_preproc_function_def] = STATE(2239), - [sym_declaration] = STATE(2239), - [sym_type_definition] = STATE(2239), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2239), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1892), - [sym__instance_variables] = STATE(2240), - [aux_sym__interface_declaration] = STATE(2239), - [sym__interface_declaration_specifier] = STATE(2239), - [sym_method_declaration] = STATE(2239), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2239), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3368), - [anon_sym_ATend] = ACTIONS(3370), - [sym_optional] = ACTIONS(3372), - [sym_required] = ACTIONS(3372), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1847] = { - [sym_preproc_def] = STATE(2483), - [sym_preproc_function_def] = STATE(2483), - [sym_declaration] = STATE(2483), - [sym_type_definition] = STATE(2483), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2483), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1985), - [sym__instance_variables] = STATE(2482), - [aux_sym__interface_declaration] = STATE(2483), - [sym__interface_declaration_specifier] = STATE(2483), - [sym_method_declaration] = STATE(2483), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2483), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3374), - [anon_sym_ATend] = ACTIONS(3376), - [sym_optional] = ACTIONS(3378), - [sym_required] = ACTIONS(3378), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1848] = { - [sym_preproc_def] = STATE(2395), - [sym_preproc_function_def] = STATE(2395), - [sym_declaration] = STATE(2395), - [sym_type_definition] = STATE(2395), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2395), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1978), - [sym__instance_variables] = STATE(2394), - [aux_sym__interface_declaration] = STATE(2395), - [sym__interface_declaration_specifier] = STATE(2395), - [sym_method_declaration] = STATE(2395), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2395), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3380), - [anon_sym_ATend] = ACTIONS(3382), - [sym_optional] = ACTIONS(3384), - [sym_required] = ACTIONS(3384), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1849] = { - [sym_preproc_def] = STATE(2234), - [sym_preproc_function_def] = STATE(2234), - [sym_declaration] = STATE(2234), - [sym_type_definition] = STATE(2234), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2234), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1891), - [sym__instance_variables] = STATE(2235), - [aux_sym__interface_declaration] = STATE(2234), - [sym__interface_declaration_specifier] = STATE(2234), - [sym_method_declaration] = STATE(2234), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2234), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3386), - [anon_sym_ATend] = ACTIONS(3388), - [sym_optional] = ACTIONS(3390), - [sym_required] = ACTIONS(3390), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1850] = { - [sym_preproc_def] = STATE(2421), - [sym_preproc_function_def] = STATE(2421), - [sym_declaration] = STATE(2421), - [sym_type_definition] = STATE(2421), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2421), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1943), - [sym__instance_variables] = STATE(2538), - [aux_sym__interface_declaration] = STATE(2421), - [sym__interface_declaration_specifier] = STATE(2421), - [sym_method_declaration] = STATE(2421), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2421), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3392), - [anon_sym_ATend] = ACTIONS(3394), - [sym_optional] = ACTIONS(3396), - [sym_required] = ACTIONS(3396), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1851] = { - [sym_preproc_def] = STATE(2376), - [sym_preproc_function_def] = STATE(2376), - [sym_declaration] = STATE(2376), - [sym_type_definition] = STATE(2376), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2376), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1964), - [sym__instance_variables] = STATE(2375), - [aux_sym__interface_declaration] = STATE(2376), - [sym__interface_declaration_specifier] = STATE(2376), - [sym_method_declaration] = STATE(2376), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2376), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3398), - [anon_sym_ATend] = ACTIONS(3400), - [sym_optional] = ACTIONS(3402), - [sym_required] = ACTIONS(3402), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1852] = { - [sym_preproc_def] = STATE(2229), - [sym_preproc_function_def] = STATE(2229), - [sym_declaration] = STATE(2229), - [sym_type_definition] = STATE(2229), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2229), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1890), - [sym__instance_variables] = STATE(2230), - [aux_sym__interface_declaration] = STATE(2229), - [sym__interface_declaration_specifier] = STATE(2229), - [sym_method_declaration] = STATE(2229), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2229), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3404), - [anon_sym_ATend] = ACTIONS(3406), - [sym_optional] = ACTIONS(3408), - [sym_required] = ACTIONS(3408), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1853] = { - [sym_preproc_def] = STATE(2331), - [sym_preproc_function_def] = STATE(2331), - [sym_declaration] = STATE(2331), - [sym_type_definition] = STATE(2331), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2331), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1955), - [sym__instance_variables] = STATE(2333), - [aux_sym__interface_declaration] = STATE(2331), - [sym__interface_declaration_specifier] = STATE(2331), - [sym_method_declaration] = STATE(2331), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2331), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3410), - [anon_sym_ATend] = ACTIONS(3412), - [sym_optional] = ACTIONS(3414), - [sym_required] = ACTIONS(3414), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1854] = { - [sym_preproc_def] = STATE(2360), - [sym_preproc_function_def] = STATE(2360), - [sym_declaration] = STATE(2360), - [sym_type_definition] = STATE(2360), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2360), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1864), - [sym__instance_variables] = STATE(2359), - [aux_sym__interface_declaration] = STATE(2360), - [sym__interface_declaration_specifier] = STATE(2360), - [sym_method_declaration] = STATE(2360), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2360), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3416), - [anon_sym_ATend] = ACTIONS(3418), - [sym_optional] = ACTIONS(3420), - [sym_required] = ACTIONS(3420), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1855] = { - [sym_preproc_def] = STATE(2189), - [sym_preproc_function_def] = STATE(2189), - [sym_declaration] = STATE(2189), - [sym_type_definition] = STATE(2189), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2189), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1885), - [sym__instance_variables] = STATE(2190), - [aux_sym__interface_declaration] = STATE(2189), - [sym__interface_declaration_specifier] = STATE(2189), - [sym_method_declaration] = STATE(2189), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2189), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3422), - [anon_sym_ATend] = ACTIONS(3424), - [sym_optional] = ACTIONS(3426), - [sym_required] = ACTIONS(3426), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1856] = { - [sym_preproc_def] = STATE(2183), - [sym_preproc_function_def] = STATE(2183), - [sym_declaration] = STATE(2183), - [sym_type_definition] = STATE(2183), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2183), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1881), - [sym__instance_variables] = STATE(2184), - [aux_sym__interface_declaration] = STATE(2183), - [sym__interface_declaration_specifier] = STATE(2183), - [sym_method_declaration] = STATE(2183), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2183), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3428), - [anon_sym_ATend] = ACTIONS(3430), - [sym_optional] = ACTIONS(3432), - [sym_required] = ACTIONS(3432), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1857] = { - [sym_preproc_def] = STATE(2639), - [sym_preproc_function_def] = STATE(2639), - [sym_declaration] = STATE(2639), - [sym_type_definition] = STATE(2639), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2639), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1935), - [sym__instance_variables] = STATE(2644), - [aux_sym__interface_declaration] = STATE(2639), - [sym__interface_declaration_specifier] = STATE(2639), - [sym_method_declaration] = STATE(2639), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2639), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3434), - [anon_sym_ATend] = ACTIONS(3436), - [sym_optional] = ACTIONS(3438), - [sym_required] = ACTIONS(3438), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1858] = { - [sym_preproc_def] = STATE(2624), - [sym_preproc_function_def] = STATE(2624), - [sym_declaration] = STATE(2624), - [sym_type_definition] = STATE(2624), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2624), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1993), - [sym__instance_variables] = STATE(2623), - [aux_sym__interface_declaration] = STATE(2624), - [sym__interface_declaration_specifier] = STATE(2624), - [sym_method_declaration] = STATE(2624), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2624), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3440), - [anon_sym_ATend] = ACTIONS(3442), - [sym_optional] = ACTIONS(3444), - [sym_required] = ACTIONS(3444), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1859] = { - [sym_preproc_def] = STATE(2427), - [sym_preproc_function_def] = STATE(2427), - [sym_declaration] = STATE(2427), - [sym_type_definition] = STATE(2427), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2427), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1991), - [sym__instance_variables] = STATE(2431), - [aux_sym__interface_declaration] = STATE(2427), - [sym__interface_declaration_specifier] = STATE(2427), - [sym_method_declaration] = STATE(2427), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2427), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3446), - [anon_sym_ATend] = ACTIONS(3448), - [sym_optional] = ACTIONS(3450), - [sym_required] = ACTIONS(3450), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1860] = { - [sym_preproc_def] = STATE(2267), - [sym_preproc_function_def] = STATE(2267), - [sym_declaration] = STATE(2267), - [sym_type_definition] = STATE(2267), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2267), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1887), - [sym__instance_variables] = STATE(2268), - [aux_sym__interface_declaration] = STATE(2267), - [sym__interface_declaration_specifier] = STATE(2267), - [sym_method_declaration] = STATE(2267), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2267), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3452), - [anon_sym_ATend] = ACTIONS(3454), - [sym_optional] = ACTIONS(3456), - [sym_required] = ACTIONS(3456), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1861] = { - [sym_preproc_def] = STATE(2437), - [sym_preproc_function_def] = STATE(2437), - [sym_declaration] = STATE(2437), - [sym_type_definition] = STATE(2437), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2437), - [sym_macro_type_specifier] = STATE(3418), - [sym_superclass_reference] = STATE(1905), - [sym__instance_variables] = STATE(2438), - [aux_sym__interface_declaration] = STATE(2437), - [sym__interface_declaration_specifier] = STATE(2437), - [sym_method_declaration] = STATE(2437), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2437), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_COLON] = ACTIONS(2248), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3458), - [anon_sym_ATend] = ACTIONS(3460), - [sym_optional] = ACTIONS(3462), - [sym_required] = ACTIONS(3462), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1862] = { - [sym_preproc_def] = STATE(2164), - [sym_preproc_function_def] = STATE(2164), - [sym_declaration] = STATE(2164), - [sym_type_definition] = STATE(2164), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2164), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(1936), - [sym__instance_variables] = STATE(2165), - [aux_sym__interface_declaration] = STATE(2164), - [sym__interface_declaration_specifier] = STATE(2164), - [sym_method_declaration] = STATE(2164), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2164), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3464), - [anon_sym_ATend] = ACTIONS(3466), - [sym_optional] = ACTIONS(3468), - [sym_required] = ACTIONS(3468), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1863] = { - [sym_preproc_def] = STATE(2527), - [sym_preproc_function_def] = STATE(2527), - [sym_declaration] = STATE(2527), - [sym_type_definition] = STATE(2527), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2527), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2529), - [aux_sym__interface_declaration] = STATE(2527), - [sym__interface_declaration_specifier] = STATE(2527), - [sym_method_declaration] = STATE(2527), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2527), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3470), - [anon_sym_ATend] = ACTIONS(3472), - [sym_optional] = ACTIONS(3474), - [sym_required] = ACTIONS(3474), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1864] = { - [sym_preproc_def] = STATE(2412), - [sym_preproc_function_def] = STATE(2412), - [sym_declaration] = STATE(2412), - [sym_type_definition] = STATE(2412), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2412), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2411), - [aux_sym__interface_declaration] = STATE(2412), - [sym__interface_declaration_specifier] = STATE(2412), - [sym_method_declaration] = STATE(2412), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2412), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3476), - [anon_sym_ATend] = ACTIONS(3478), - [sym_optional] = ACTIONS(3480), - [sym_required] = ACTIONS(3480), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1865] = { - [sym_preproc_def] = STATE(2629), - [sym_preproc_function_def] = STATE(2629), - [sym_declaration] = STATE(2629), - [sym_type_definition] = STATE(2629), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2629), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2628), - [aux_sym__interface_declaration] = STATE(2629), - [sym__interface_declaration_specifier] = STATE(2629), - [sym_method_declaration] = STATE(2629), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2629), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3482), - [anon_sym_ATend] = ACTIONS(3484), - [sym_optional] = ACTIONS(3486), - [sym_required] = ACTIONS(3486), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1866] = { - [sym_preproc_def] = STATE(2636), - [sym_preproc_function_def] = STATE(2636), - [sym_declaration] = STATE(2636), - [sym_type_definition] = STATE(2636), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2636), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2635), - [aux_sym__interface_declaration] = STATE(2636), - [sym__interface_declaration_specifier] = STATE(2636), - [sym_method_declaration] = STATE(2636), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2636), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3488), - [anon_sym_ATend] = ACTIONS(3490), - [sym_optional] = ACTIONS(3492), - [sym_required] = ACTIONS(3492), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1867] = { - [sym_preproc_def] = STATE(2640), - [sym_preproc_function_def] = STATE(2640), - [sym_declaration] = STATE(2640), - [sym_type_definition] = STATE(2640), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2640), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2638), - [aux_sym__interface_declaration] = STATE(2640), - [sym__interface_declaration_specifier] = STATE(2640), - [sym_method_declaration] = STATE(2640), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2640), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3494), - [anon_sym_ATend] = ACTIONS(3496), - [sym_optional] = ACTIONS(3498), - [sym_required] = ACTIONS(3498), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1868] = { - [sym_preproc_def] = STATE(2648), - [sym_preproc_function_def] = STATE(2648), - [sym_declaration] = STATE(2648), - [sym_type_definition] = STATE(2648), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2648), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2645), - [aux_sym__interface_declaration] = STATE(2648), - [sym__interface_declaration_specifier] = STATE(2648), - [sym_method_declaration] = STATE(2648), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2648), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3500), - [anon_sym_ATend] = ACTIONS(3502), - [sym_optional] = ACTIONS(3504), - [sym_required] = ACTIONS(3504), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1869] = { - [sym_preproc_def] = STATE(2651), - [sym_preproc_function_def] = STATE(2651), - [sym_declaration] = STATE(2651), - [sym_type_definition] = STATE(2651), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2651), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2650), - [aux_sym__interface_declaration] = STATE(2651), - [sym__interface_declaration_specifier] = STATE(2651), - [sym_method_declaration] = STATE(2651), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2651), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3506), - [anon_sym_ATend] = ACTIONS(3508), - [sym_optional] = ACTIONS(3510), - [sym_required] = ACTIONS(3510), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1870] = { - [sym_preproc_def] = STATE(2632), - [sym_preproc_function_def] = STATE(2632), - [sym_declaration] = STATE(2632), - [sym_type_definition] = STATE(2632), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2632), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2652), - [aux_sym__interface_declaration] = STATE(2632), - [sym__interface_declaration_specifier] = STATE(2632), - [sym_method_declaration] = STATE(2632), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2632), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3512), - [anon_sym_ATend] = ACTIONS(3514), - [sym_optional] = ACTIONS(3516), - [sym_required] = ACTIONS(3516), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1871] = { - [sym_preproc_def] = STATE(2658), - [sym_preproc_function_def] = STATE(2658), - [sym_declaration] = STATE(2658), - [sym_type_definition] = STATE(2658), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2658), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2654), - [aux_sym__interface_declaration] = STATE(2658), - [sym__interface_declaration_specifier] = STATE(2658), - [sym_method_declaration] = STATE(2658), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2658), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3518), - [anon_sym_ATend] = ACTIONS(3520), - [sym_optional] = ACTIONS(3522), - [sym_required] = ACTIONS(3522), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1872] = { - [sym_preproc_def] = STATE(2661), - [sym_preproc_function_def] = STATE(2661), - [sym_declaration] = STATE(2661), - [sym_type_definition] = STATE(2661), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2661), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2660), - [aux_sym__interface_declaration] = STATE(2661), - [sym__interface_declaration_specifier] = STATE(2661), - [sym_method_declaration] = STATE(2661), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2661), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3524), - [anon_sym_ATend] = ACTIONS(3526), - [sym_optional] = ACTIONS(3528), - [sym_required] = ACTIONS(3528), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1873] = { - [sym_preproc_def] = STATE(2011), - [sym_preproc_function_def] = STATE(2011), - [sym_declaration] = STATE(2011), - [sym_type_definition] = STATE(2011), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2011), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2012), - [aux_sym__interface_declaration] = STATE(2011), - [sym__interface_declaration_specifier] = STATE(2011), - [sym_method_declaration] = STATE(2011), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2011), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3530), - [anon_sym_ATend] = ACTIONS(3532), - [sym_optional] = ACTIONS(3534), - [sym_required] = ACTIONS(3534), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1874] = { - [sym_preproc_def] = STATE(2037), - [sym_preproc_function_def] = STATE(2037), - [sym_declaration] = STATE(2037), - [sym_type_definition] = STATE(2037), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2037), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2020), - [aux_sym__interface_declaration] = STATE(2037), - [sym__interface_declaration_specifier] = STATE(2037), - [sym_method_declaration] = STATE(2037), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2037), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3536), - [anon_sym_ATend] = ACTIONS(3538), - [sym_optional] = ACTIONS(3540), - [sym_required] = ACTIONS(3540), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1875] = { - [sym_preproc_def] = STATE(2021), - [sym_preproc_function_def] = STATE(2021), - [sym_declaration] = STATE(2021), - [sym_type_definition] = STATE(2021), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2021), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2022), - [aux_sym__interface_declaration] = STATE(2021), - [sym__interface_declaration_specifier] = STATE(2021), - [sym_method_declaration] = STATE(2021), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2021), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3542), - [anon_sym_ATend] = ACTIONS(3544), - [sym_optional] = ACTIONS(3546), - [sym_required] = ACTIONS(3546), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1876] = { - [sym_preproc_def] = STATE(2024), - [sym_preproc_function_def] = STATE(2024), - [sym_declaration] = STATE(2024), - [sym_type_definition] = STATE(2024), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2024), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2025), - [aux_sym__interface_declaration] = STATE(2024), - [sym__interface_declaration_specifier] = STATE(2024), - [sym_method_declaration] = STATE(2024), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2024), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3548), - [anon_sym_ATend] = ACTIONS(3550), - [sym_optional] = ACTIONS(3552), - [sym_required] = ACTIONS(3552), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1877] = { - [sym_preproc_def] = STATE(2031), - [sym_preproc_function_def] = STATE(2031), - [sym_declaration] = STATE(2031), - [sym_type_definition] = STATE(2031), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2031), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2032), - [aux_sym__interface_declaration] = STATE(2031), - [sym__interface_declaration_specifier] = STATE(2031), - [sym_method_declaration] = STATE(2031), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2031), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3554), - [anon_sym_ATend] = ACTIONS(3556), - [sym_optional] = ACTIONS(3558), - [sym_required] = ACTIONS(3558), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1878] = { - [sym_preproc_def] = STATE(2034), - [sym_preproc_function_def] = STATE(2034), - [sym_declaration] = STATE(2034), - [sym_type_definition] = STATE(2034), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2034), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2035), - [aux_sym__interface_declaration] = STATE(2034), - [sym__interface_declaration_specifier] = STATE(2034), - [sym_method_declaration] = STATE(2034), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2034), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3560), - [anon_sym_ATend] = ACTIONS(3562), - [sym_optional] = ACTIONS(3564), - [sym_required] = ACTIONS(3564), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1879] = { - [sym_preproc_def] = STATE(2040), - [sym_preproc_function_def] = STATE(2040), - [sym_declaration] = STATE(2040), - [sym_type_definition] = STATE(2040), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2040), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2041), - [aux_sym__interface_declaration] = STATE(2040), - [sym__interface_declaration_specifier] = STATE(2040), - [sym_method_declaration] = STATE(2040), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2040), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3566), - [anon_sym_ATend] = ACTIONS(3568), - [sym_optional] = ACTIONS(3570), - [sym_required] = ACTIONS(3570), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1880] = { - [sym_preproc_def] = STATE(2153), - [sym_preproc_function_def] = STATE(2153), - [sym_declaration] = STATE(2153), - [sym_type_definition] = STATE(2153), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2153), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2154), - [aux_sym__interface_declaration] = STATE(2153), - [sym__interface_declaration_specifier] = STATE(2153), - [sym_method_declaration] = STATE(2153), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2153), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3572), - [anon_sym_ATend] = ACTIONS(3574), - [sym_optional] = ACTIONS(3576), - [sym_required] = ACTIONS(3576), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1881] = { - [sym_preproc_def] = STATE(2138), - [sym_preproc_function_def] = STATE(2138), - [sym_declaration] = STATE(2138), - [sym_type_definition] = STATE(2138), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2138), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2139), - [aux_sym__interface_declaration] = STATE(2138), - [sym__interface_declaration_specifier] = STATE(2138), - [sym_method_declaration] = STATE(2138), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2138), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3578), - [anon_sym_ATend] = ACTIONS(3580), - [sym_optional] = ACTIONS(3582), - [sym_required] = ACTIONS(3582), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1882] = { - [sym_preproc_def] = STATE(2141), - [sym_preproc_function_def] = STATE(2141), - [sym_declaration] = STATE(2141), - [sym_type_definition] = STATE(2141), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2141), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2142), - [aux_sym__interface_declaration] = STATE(2141), - [sym__interface_declaration_specifier] = STATE(2141), - [sym_method_declaration] = STATE(2141), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2141), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3584), - [anon_sym_ATend] = ACTIONS(3586), - [sym_optional] = ACTIONS(3588), - [sym_required] = ACTIONS(3588), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1883] = { - [sym_preproc_def] = STATE(2156), - [sym_preproc_function_def] = STATE(2156), - [sym_declaration] = STATE(2156), - [sym_type_definition] = STATE(2156), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2156), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2143), - [aux_sym__interface_declaration] = STATE(2156), - [sym__interface_declaration_specifier] = STATE(2156), - [sym_method_declaration] = STATE(2156), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2156), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3590), - [anon_sym_ATend] = ACTIONS(3592), - [sym_optional] = ACTIONS(3594), - [sym_required] = ACTIONS(3594), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1884] = { - [sym_preproc_def] = STATE(2144), - [sym_preproc_function_def] = STATE(2144), - [sym_declaration] = STATE(2144), - [sym_type_definition] = STATE(2144), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2144), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2145), - [aux_sym__interface_declaration] = STATE(2144), - [sym__interface_declaration_specifier] = STATE(2144), - [sym_method_declaration] = STATE(2144), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2144), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3596), - [anon_sym_ATend] = ACTIONS(3598), - [sym_optional] = ACTIONS(3600), - [sym_required] = ACTIONS(3600), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1885] = { - [sym_preproc_def] = STATE(2147), - [sym_preproc_function_def] = STATE(2147), - [sym_declaration] = STATE(2147), - [sym_type_definition] = STATE(2147), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2147), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2148), - [aux_sym__interface_declaration] = STATE(2147), - [sym__interface_declaration_specifier] = STATE(2147), - [sym_method_declaration] = STATE(2147), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2147), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3602), - [anon_sym_ATend] = ACTIONS(3604), - [sym_optional] = ACTIONS(3606), - [sym_required] = ACTIONS(3606), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1886] = { - [sym_preproc_def] = STATE(2150), - [sym_preproc_function_def] = STATE(2150), - [sym_declaration] = STATE(2150), - [sym_type_definition] = STATE(2150), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2150), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2151), - [aux_sym__interface_declaration] = STATE(2150), - [sym__interface_declaration_specifier] = STATE(2150), - [sym_method_declaration] = STATE(2150), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2150), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3608), - [anon_sym_ATend] = ACTIONS(3610), - [sym_optional] = ACTIONS(3612), - [sym_required] = ACTIONS(3612), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1887] = { - [sym_preproc_def] = STATE(2205), - [sym_preproc_function_def] = STATE(2205), - [sym_declaration] = STATE(2205), - [sym_type_definition] = STATE(2205), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2205), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2206), - [aux_sym__interface_declaration] = STATE(2205), - [sym__interface_declaration_specifier] = STATE(2205), - [sym_method_declaration] = STATE(2205), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2205), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3614), - [anon_sym_ATend] = ACTIONS(3616), - [sym_optional] = ACTIONS(3618), - [sym_required] = ACTIONS(3618), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1888] = { - [sym_preproc_def] = STATE(2159), - [sym_preproc_function_def] = STATE(2159), - [sym_declaration] = STATE(2159), - [sym_type_definition] = STATE(2159), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2159), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2160), - [aux_sym__interface_declaration] = STATE(2159), - [sym__interface_declaration_specifier] = STATE(2159), - [sym_method_declaration] = STATE(2159), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2159), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3620), - [anon_sym_ATend] = ACTIONS(3622), - [sym_optional] = ACTIONS(3624), - [sym_required] = ACTIONS(3624), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1889] = { - [sym_preproc_def] = STATE(2216), - [sym_preproc_function_def] = STATE(2216), - [sym_declaration] = STATE(2216), - [sym_type_definition] = STATE(2216), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2216), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2215), - [aux_sym__interface_declaration] = STATE(2216), - [sym__interface_declaration_specifier] = STATE(2216), - [sym_method_declaration] = STATE(2216), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2216), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3626), - [anon_sym_ATend] = ACTIONS(3628), - [sym_optional] = ACTIONS(3630), - [sym_required] = ACTIONS(3630), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1890] = { - [sym_preproc_def] = STATE(2167), - [sym_preproc_function_def] = STATE(2167), - [sym_declaration] = STATE(2167), - [sym_type_definition] = STATE(2167), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2167), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2169), - [aux_sym__interface_declaration] = STATE(2167), - [sym__interface_declaration_specifier] = STATE(2167), - [sym_method_declaration] = STATE(2167), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2167), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3632), - [anon_sym_ATend] = ACTIONS(3634), - [sym_optional] = ACTIONS(3636), - [sym_required] = ACTIONS(3636), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1891] = { - [sym_preproc_def] = STATE(2172), - [sym_preproc_function_def] = STATE(2172), - [sym_declaration] = STATE(2172), - [sym_type_definition] = STATE(2172), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2172), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2173), - [aux_sym__interface_declaration] = STATE(2172), - [sym__interface_declaration_specifier] = STATE(2172), - [sym_method_declaration] = STATE(2172), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2172), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3638), - [anon_sym_ATend] = ACTIONS(3640), - [sym_optional] = ACTIONS(3642), - [sym_required] = ACTIONS(3642), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1892] = { - [sym_preproc_def] = STATE(2176), - [sym_preproc_function_def] = STATE(2176), - [sym_declaration] = STATE(2176), - [sym_type_definition] = STATE(2176), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2176), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2177), - [aux_sym__interface_declaration] = STATE(2176), - [sym__interface_declaration_specifier] = STATE(2176), - [sym_method_declaration] = STATE(2176), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2176), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3644), - [anon_sym_ATend] = ACTIONS(3646), - [sym_optional] = ACTIONS(3648), - [sym_required] = ACTIONS(3648), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1893] = { - [sym_preproc_def] = STATE(2715), - [sym_preproc_function_def] = STATE(2715), - [sym_declaration] = STATE(2715), - [sym_type_definition] = STATE(2715), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2715), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(2714), - [aux_sym__interface_declaration] = STATE(2715), - [sym__interface_declaration_specifier] = STATE(2715), - [sym_method_declaration] = STATE(2715), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2715), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3650), - [anon_sym_ATend] = ACTIONS(3652), - [sym_optional] = ACTIONS(3654), - [sym_required] = ACTIONS(3654), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1894] = { - [sym_preproc_def] = STATE(2352), - [sym_preproc_function_def] = STATE(2352), - [sym_declaration] = STATE(2352), - [sym_type_definition] = STATE(2352), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2352), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2355), - [aux_sym__interface_declaration] = STATE(2352), - [sym__interface_declaration_specifier] = STATE(2352), - [sym_method_declaration] = STATE(2352), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2352), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2484), - [anon_sym_ATend] = ACTIONS(2486), - [sym_optional] = ACTIONS(2488), - [sym_required] = ACTIONS(2488), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1895] = { - [sym_preproc_def] = STATE(2579), - [sym_preproc_function_def] = STATE(2579), - [sym_declaration] = STATE(2579), - [sym_type_definition] = STATE(2579), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2579), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2578), - [aux_sym__interface_declaration] = STATE(2579), - [sym__interface_declaration_specifier] = STATE(2579), - [sym_method_declaration] = STATE(2579), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2579), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3656), - [anon_sym_ATend] = ACTIONS(3658), - [sym_optional] = ACTIONS(3660), - [sym_required] = ACTIONS(3660), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1896] = { - [sym_preproc_def] = STATE(2453), - [sym_preproc_function_def] = STATE(2453), - [sym_declaration] = STATE(2453), - [sym_type_definition] = STATE(2453), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2453), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2455), - [aux_sym__interface_declaration] = STATE(2453), - [sym__interface_declaration_specifier] = STATE(2453), - [sym_method_declaration] = STATE(2453), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2453), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3662), - [anon_sym_ATend] = ACTIONS(3664), - [sym_optional] = ACTIONS(3666), - [sym_required] = ACTIONS(3666), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1897] = { - [sym_preproc_def] = STATE(2471), - [sym_preproc_function_def] = STATE(2471), - [sym_declaration] = STATE(2471), - [sym_type_definition] = STATE(2471), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2471), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2473), - [aux_sym__interface_declaration] = STATE(2471), - [sym__interface_declaration_specifier] = STATE(2471), - [sym_method_declaration] = STATE(2471), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2471), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3668), - [anon_sym_ATend] = ACTIONS(3670), - [sym_optional] = ACTIONS(3672), - [sym_required] = ACTIONS(3672), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1898] = { - [sym_preproc_def] = STATE(2072), - [sym_preproc_function_def] = STATE(2072), - [sym_declaration] = STATE(2072), - [sym_type_definition] = STATE(2072), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2072), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2071), - [aux_sym__interface_declaration] = STATE(2072), - [sym__interface_declaration_specifier] = STATE(2072), - [sym_method_declaration] = STATE(2072), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2072), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3674), - [anon_sym_ATend] = ACTIONS(3676), - [sym_optional] = ACTIONS(3678), - [sym_required] = ACTIONS(3678), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1899] = { - [sym_preproc_def] = STATE(2531), - [sym_preproc_function_def] = STATE(2531), - [sym_declaration] = STATE(2531), - [sym_type_definition] = STATE(2531), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2531), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2484), - [aux_sym__interface_declaration] = STATE(2531), - [sym__interface_declaration_specifier] = STATE(2531), - [sym_method_declaration] = STATE(2531), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2531), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3102), - [anon_sym_ATend] = ACTIONS(3104), - [sym_optional] = ACTIONS(3106), - [sym_required] = ACTIONS(3106), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1900] = { - [sym_preproc_def] = STATE(2485), - [sym_preproc_function_def] = STATE(2485), - [sym_declaration] = STATE(2485), - [sym_type_definition] = STATE(2485), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2485), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2493), - [aux_sym__interface_declaration] = STATE(2485), - [sym__interface_declaration_specifier] = STATE(2485), - [sym_method_declaration] = STATE(2485), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2485), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3680), - [anon_sym_ATend] = ACTIONS(3682), - [sym_optional] = ACTIONS(3684), - [sym_required] = ACTIONS(3684), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1901] = { - [sym_preproc_def] = STATE(2495), - [sym_preproc_function_def] = STATE(2495), - [sym_declaration] = STATE(2495), - [sym_type_definition] = STATE(2495), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2495), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2496), - [aux_sym__interface_declaration] = STATE(2495), - [sym__interface_declaration_specifier] = STATE(2495), - [sym_method_declaration] = STATE(2495), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2495), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3686), - [anon_sym_ATend] = ACTIONS(3688), - [sym_optional] = ACTIONS(3690), - [sym_required] = ACTIONS(3690), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1902] = { - [sym_preproc_def] = STATE(2081), - [sym_preproc_function_def] = STATE(2081), - [sym_declaration] = STATE(2081), - [sym_type_definition] = STATE(2081), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2081), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2082), - [aux_sym__interface_declaration] = STATE(2081), - [sym__interface_declaration_specifier] = STATE(2081), - [sym_method_declaration] = STATE(2081), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2081), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3692), - [anon_sym_ATend] = ACTIONS(3694), - [sym_optional] = ACTIONS(3696), - [sym_required] = ACTIONS(3696), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1903] = { - [sym_preproc_def] = STATE(2516), - [sym_preproc_function_def] = STATE(2516), - [sym_declaration] = STATE(2516), - [sym_type_definition] = STATE(2516), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2516), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2518), - [aux_sym__interface_declaration] = STATE(2516), - [sym__interface_declaration_specifier] = STATE(2516), - [sym_method_declaration] = STATE(2516), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2516), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3698), - [anon_sym_ATend] = ACTIONS(3700), - [sym_optional] = ACTIONS(3702), - [sym_required] = ACTIONS(3702), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1904] = { - [sym_preproc_def] = STATE(2678), - [sym_preproc_function_def] = STATE(2678), - [sym_declaration] = STATE(2678), - [sym_type_definition] = STATE(2678), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2678), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2677), - [aux_sym__interface_declaration] = STATE(2678), - [sym__interface_declaration_specifier] = STATE(2678), - [sym_method_declaration] = STATE(2678), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2678), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2562), - [anon_sym_ATend] = ACTIONS(2564), - [sym_optional] = ACTIONS(2566), - [sym_required] = ACTIONS(2566), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1905] = { - [sym_preproc_def] = STATE(2084), - [sym_preproc_function_def] = STATE(2084), - [sym_declaration] = STATE(2084), - [sym_type_definition] = STATE(2084), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2084), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2085), - [aux_sym__interface_declaration] = STATE(2084), - [sym__interface_declaration_specifier] = STATE(2084), - [sym_method_declaration] = STATE(2084), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2084), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3704), - [anon_sym_ATend] = ACTIONS(3706), - [sym_optional] = ACTIONS(3708), - [sym_required] = ACTIONS(3708), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1906] = { - [sym_preproc_def] = STATE(2097), - [sym_preproc_function_def] = STATE(2097), - [sym_declaration] = STATE(2097), - [sym_type_definition] = STATE(2097), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2097), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2079), - [aux_sym__interface_declaration] = STATE(2097), - [sym__interface_declaration_specifier] = STATE(2097), - [sym_method_declaration] = STATE(2097), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2097), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3710), - [anon_sym_ATend] = ACTIONS(3712), - [sym_optional] = ACTIONS(3714), - [sym_required] = ACTIONS(3714), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1907] = { - [sym_preproc_def] = STATE(2576), - [sym_preproc_function_def] = STATE(2576), - [sym_declaration] = STATE(2576), - [sym_type_definition] = STATE(2576), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2576), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2564), - [aux_sym__interface_declaration] = STATE(2576), - [sym__interface_declaration_specifier] = STATE(2576), - [sym_method_declaration] = STATE(2576), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2576), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3716), - [anon_sym_ATend] = ACTIONS(3718), - [sym_optional] = ACTIONS(3720), - [sym_required] = ACTIONS(3720), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1908] = { - [sym_preproc_def] = STATE(2582), - [sym_preproc_function_def] = STATE(2582), - [sym_declaration] = STATE(2582), - [sym_type_definition] = STATE(2582), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2582), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2581), - [aux_sym__interface_declaration] = STATE(2582), - [sym__interface_declaration_specifier] = STATE(2582), - [sym_method_declaration] = STATE(2582), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2582), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3722), - [anon_sym_ATend] = ACTIONS(3724), - [sym_optional] = ACTIONS(3726), - [sym_required] = ACTIONS(3726), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1909] = { - [sym_preproc_def] = STATE(2077), - [sym_preproc_function_def] = STATE(2077), - [sym_declaration] = STATE(2077), - [sym_type_definition] = STATE(2077), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2077), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2078), - [aux_sym__interface_declaration] = STATE(2077), - [sym__interface_declaration_specifier] = STATE(2077), - [sym_method_declaration] = STATE(2077), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2077), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3728), - [anon_sym_ATend] = ACTIONS(3730), - [sym_optional] = ACTIONS(3732), - [sym_required] = ACTIONS(3732), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1910] = { - [sym_preproc_def] = STATE(2309), - [sym_preproc_function_def] = STATE(2309), - [sym_declaration] = STATE(2309), - [sym_type_definition] = STATE(2309), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2309), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2308), - [aux_sym__interface_declaration] = STATE(2309), - [sym__interface_declaration_specifier] = STATE(2309), - [sym_method_declaration] = STATE(2309), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2309), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2496), - [anon_sym_ATend] = ACTIONS(2498), - [sym_optional] = ACTIONS(2500), - [sym_required] = ACTIONS(2500), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1911] = { - [sym_preproc_def] = STATE(2620), - [sym_preproc_function_def] = STATE(2620), - [sym_declaration] = STATE(2620), - [sym_type_definition] = STATE(2620), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2620), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2633), - [aux_sym__interface_declaration] = STATE(2620), - [sym__interface_declaration_specifier] = STATE(2620), - [sym_method_declaration] = STATE(2620), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2620), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3734), - [anon_sym_ATend] = ACTIONS(3736), - [sym_optional] = ACTIONS(3738), - [sym_required] = ACTIONS(3738), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1912] = { - [sym_preproc_def] = STATE(2195), - [sym_preproc_function_def] = STATE(2195), - [sym_declaration] = STATE(2195), - [sym_type_definition] = STATE(2195), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2195), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2196), - [aux_sym__interface_declaration] = STATE(2195), - [sym__interface_declaration_specifier] = STATE(2195), - [sym_method_declaration] = STATE(2195), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2195), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3740), - [anon_sym_ATend] = ACTIONS(3742), - [sym_optional] = ACTIONS(3744), - [sym_required] = ACTIONS(3744), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1913] = { - [sym_preproc_def] = STATE(2198), - [sym_preproc_function_def] = STATE(2198), - [sym_declaration] = STATE(2198), - [sym_type_definition] = STATE(2198), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2198), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2199), - [aux_sym__interface_declaration] = STATE(2198), - [sym__interface_declaration_specifier] = STATE(2198), - [sym_method_declaration] = STATE(2198), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2198), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3746), - [anon_sym_ATend] = ACTIONS(3748), - [sym_optional] = ACTIONS(3750), - [sym_required] = ACTIONS(3750), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1914] = { - [sym_preproc_def] = STATE(2218), - [sym_preproc_function_def] = STATE(2218), - [sym_declaration] = STATE(2218), - [sym_type_definition] = STATE(2218), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2218), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2200), - [aux_sym__interface_declaration] = STATE(2218), - [sym__interface_declaration_specifier] = STATE(2218), - [sym_method_declaration] = STATE(2218), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2218), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3090), - [anon_sym_ATend] = ACTIONS(3092), - [sym_optional] = ACTIONS(3094), - [sym_required] = ACTIONS(3094), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1915] = { - [sym_preproc_def] = STATE(2532), - [sym_preproc_function_def] = STATE(2532), - [sym_declaration] = STATE(2532), - [sym_type_definition] = STATE(2532), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2532), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2533), - [aux_sym__interface_declaration] = STATE(2532), - [sym__interface_declaration_specifier] = STATE(2532), - [sym_method_declaration] = STATE(2532), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2532), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3752), - [anon_sym_ATend] = ACTIONS(3754), - [sym_optional] = ACTIONS(3756), - [sym_required] = ACTIONS(3756), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1916] = { - [sym_preproc_def] = STATE(2202), - [sym_preproc_function_def] = STATE(2202), - [sym_declaration] = STATE(2202), - [sym_type_definition] = STATE(2202), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2202), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2203), - [aux_sym__interface_declaration] = STATE(2202), - [sym__interface_declaration_specifier] = STATE(2202), - [sym_method_declaration] = STATE(2202), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2202), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3758), - [anon_sym_ATend] = ACTIONS(3760), - [sym_optional] = ACTIONS(3762), - [sym_required] = ACTIONS(3762), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1917] = { - [sym_preproc_def] = STATE(2320), - [sym_preproc_function_def] = STATE(2320), - [sym_declaration] = STATE(2320), - [sym_type_definition] = STATE(2320), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2320), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(2319), - [aux_sym__interface_declaration] = STATE(2320), - [sym__interface_declaration_specifier] = STATE(2320), - [sym_method_declaration] = STATE(2320), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2320), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3764), - [anon_sym_ATend] = ACTIONS(3766), - [sym_optional] = ACTIONS(3768), - [sym_required] = ACTIONS(3768), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1918] = { - [sym_preproc_def] = STATE(2209), - [sym_preproc_function_def] = STATE(2209), - [sym_declaration] = STATE(2209), - [sym_type_definition] = STATE(2209), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2209), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2210), - [aux_sym__interface_declaration] = STATE(2209), - [sym__interface_declaration_specifier] = STATE(2209), - [sym_method_declaration] = STATE(2209), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2209), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3770), - [anon_sym_ATend] = ACTIONS(3772), - [sym_optional] = ACTIONS(3774), - [sym_required] = ACTIONS(3774), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1919] = { - [sym_preproc_def] = STATE(2213), - [sym_preproc_function_def] = STATE(2213), - [sym_declaration] = STATE(2213), - [sym_type_definition] = STATE(2213), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2213), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2214), - [aux_sym__interface_declaration] = STATE(2213), - [sym__interface_declaration_specifier] = STATE(2213), - [sym_method_declaration] = STATE(2213), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2213), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3776), - [anon_sym_ATend] = ACTIONS(3778), - [sym_optional] = ACTIONS(3780), - [sym_required] = ACTIONS(3780), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1920] = { - [sym_preproc_def] = STATE(2220), - [sym_preproc_function_def] = STATE(2220), - [sym_declaration] = STATE(2220), - [sym_type_definition] = STATE(2220), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2220), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2221), - [aux_sym__interface_declaration] = STATE(2220), - [sym__interface_declaration_specifier] = STATE(2220), - [sym_method_declaration] = STATE(2220), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2220), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3782), - [anon_sym_ATend] = ACTIONS(3784), - [sym_optional] = ACTIONS(3786), - [sym_required] = ACTIONS(3786), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1921] = { - [sym_preproc_def] = STATE(2362), - [sym_preproc_function_def] = STATE(2362), - [sym_declaration] = STATE(2362), - [sym_type_definition] = STATE(2362), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2362), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2361), - [aux_sym__interface_declaration] = STATE(2362), - [sym__interface_declaration_specifier] = STATE(2362), - [sym_method_declaration] = STATE(2362), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2362), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3788), - [anon_sym_ATend] = ACTIONS(3790), - [sym_optional] = ACTIONS(3792), - [sym_required] = ACTIONS(3792), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1922] = { - [sym_preproc_def] = STATE(2129), - [sym_preproc_function_def] = STATE(2129), - [sym_declaration] = STATE(2129), - [sym_type_definition] = STATE(2129), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2129), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2132), - [aux_sym__interface_declaration] = STATE(2129), - [sym__interface_declaration_specifier] = STATE(2129), - [sym_method_declaration] = STATE(2129), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2129), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3794), - [anon_sym_ATend] = ACTIONS(3796), - [sym_optional] = ACTIONS(3798), - [sym_required] = ACTIONS(3798), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1923] = { - [sym_preproc_def] = STATE(2231), - [sym_preproc_function_def] = STATE(2231), - [sym_declaration] = STATE(2231), - [sym_type_definition] = STATE(2231), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2231), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2232), - [aux_sym__interface_declaration] = STATE(2231), - [sym__interface_declaration_specifier] = STATE(2231), - [sym_method_declaration] = STATE(2231), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2231), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3800), - [anon_sym_ATend] = ACTIONS(3802), - [sym_optional] = ACTIONS(3804), - [sym_required] = ACTIONS(3804), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1924] = { - [sym_preproc_def] = STATE(2365), - [sym_preproc_function_def] = STATE(2365), - [sym_declaration] = STATE(2365), - [sym_type_definition] = STATE(2365), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2365), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2364), - [aux_sym__interface_declaration] = STATE(2365), - [sym__interface_declaration_specifier] = STATE(2365), - [sym_method_declaration] = STATE(2365), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2365), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3806), - [anon_sym_ATend] = ACTIONS(3808), - [sym_optional] = ACTIONS(3810), - [sym_required] = ACTIONS(3810), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1925] = { - [sym_preproc_def] = STATE(2004), - [sym_preproc_function_def] = STATE(2004), - [sym_declaration] = STATE(2004), - [sym_type_definition] = STATE(2004), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2004), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(2005), - [aux_sym__interface_declaration] = STATE(2004), - [sym__interface_declaration_specifier] = STATE(2004), - [sym_method_declaration] = STATE(2004), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2004), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3812), - [anon_sym_ATend] = ACTIONS(3814), - [sym_optional] = ACTIONS(3816), - [sym_required] = ACTIONS(3816), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1926] = { - [sym_preproc_def] = STATE(2539), - [sym_preproc_function_def] = STATE(2539), - [sym_declaration] = STATE(2539), - [sym_type_definition] = STATE(2539), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2539), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2540), - [aux_sym__interface_declaration] = STATE(2539), - [sym__interface_declaration_specifier] = STATE(2539), - [sym_method_declaration] = STATE(2539), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2539), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3818), - [anon_sym_ATend] = ACTIONS(3820), - [sym_optional] = ACTIONS(3822), - [sym_required] = ACTIONS(3822), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1927] = { - [sym_preproc_def] = STATE(2237), - [sym_preproc_function_def] = STATE(2237), - [sym_declaration] = STATE(2237), - [sym_type_definition] = STATE(2237), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2237), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2238), - [aux_sym__interface_declaration] = STATE(2237), - [sym__interface_declaration_specifier] = STATE(2237), - [sym_method_declaration] = STATE(2237), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2237), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3824), - [anon_sym_ATend] = ACTIONS(3826), - [sym_optional] = ACTIONS(3828), - [sym_required] = ACTIONS(3828), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1928] = { - [sym_preproc_def] = STATE(2379), - [sym_preproc_function_def] = STATE(2379), - [sym_declaration] = STATE(2379), - [sym_type_definition] = STATE(2379), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2379), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2378), - [aux_sym__interface_declaration] = STATE(2379), - [sym__interface_declaration_specifier] = STATE(2379), - [sym_method_declaration] = STATE(2379), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2379), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2556), - [anon_sym_ATend] = ACTIONS(2558), - [sym_optional] = ACTIONS(2560), - [sym_required] = ACTIONS(2560), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1929] = { - [sym_preproc_def] = STATE(2346), - [sym_preproc_function_def] = STATE(2346), - [sym_declaration] = STATE(2346), - [sym_type_definition] = STATE(2346), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2346), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2348), - [aux_sym__interface_declaration] = STATE(2346), - [sym__interface_declaration_specifier] = STATE(2346), - [sym_method_declaration] = STATE(2346), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2346), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3830), - [anon_sym_ATend] = ACTIONS(3832), - [sym_optional] = ACTIONS(3834), - [sym_required] = ACTIONS(3834), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1930] = { - [sym_preproc_def] = STATE(2405), - [sym_preproc_function_def] = STATE(2405), - [sym_declaration] = STATE(2405), - [sym_type_definition] = STATE(2405), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2405), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(2404), - [aux_sym__interface_declaration] = STATE(2405), - [sym__interface_declaration_specifier] = STATE(2405), - [sym_method_declaration] = STATE(2405), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2405), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3836), - [anon_sym_ATend] = ACTIONS(3838), - [sym_optional] = ACTIONS(3840), - [sym_required] = ACTIONS(3840), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1931] = { - [sym_preproc_def] = STATE(2547), - [sym_preproc_function_def] = STATE(2547), - [sym_declaration] = STATE(2547), - [sym_type_definition] = STATE(2547), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2547), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2549), - [aux_sym__interface_declaration] = STATE(2547), - [sym__interface_declaration_specifier] = STATE(2547), - [sym_method_declaration] = STATE(2547), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2547), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3842), - [anon_sym_ATend] = ACTIONS(3844), - [sym_optional] = ACTIONS(3846), - [sym_required] = ACTIONS(3846), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1932] = { - [sym_preproc_def] = STATE(2621), - [sym_preproc_function_def] = STATE(2621), - [sym_declaration] = STATE(2621), - [sym_type_definition] = STATE(2621), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2621), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2618), - [aux_sym__interface_declaration] = STATE(2621), - [sym__interface_declaration_specifier] = STATE(2621), - [sym_method_declaration] = STATE(2621), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2621), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3848), - [anon_sym_ATend] = ACTIONS(3850), - [sym_optional] = ACTIONS(3852), - [sym_required] = ACTIONS(3852), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1933] = { - [sym_preproc_def] = STATE(2612), - [sym_preproc_function_def] = STATE(2612), - [sym_declaration] = STATE(2612), - [sym_type_definition] = STATE(2612), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2612), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2617), - [aux_sym__interface_declaration] = STATE(2612), - [sym__interface_declaration_specifier] = STATE(2612), - [sym_method_declaration] = STATE(2612), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2612), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3854), - [anon_sym_ATend] = ACTIONS(3856), - [sym_optional] = ACTIONS(3858), - [sym_required] = ACTIONS(3858), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1934] = { - [sym_preproc_def] = STATE(2382), - [sym_preproc_function_def] = STATE(2382), - [sym_declaration] = STATE(2382), - [sym_type_definition] = STATE(2382), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2382), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2383), - [aux_sym__interface_declaration] = STATE(2382), - [sym__interface_declaration_specifier] = STATE(2382), - [sym_method_declaration] = STATE(2382), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2382), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2538), - [anon_sym_ATend] = ACTIONS(2540), - [sym_optional] = ACTIONS(2542), - [sym_required] = ACTIONS(2542), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1935] = { - [sym_preproc_def] = STATE(2027), - [sym_preproc_function_def] = STATE(2027), - [sym_declaration] = STATE(2027), - [sym_type_definition] = STATE(2027), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2027), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2026), - [aux_sym__interface_declaration] = STATE(2027), - [sym__interface_declaration_specifier] = STATE(2027), - [sym_method_declaration] = STATE(2027), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2027), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3860), - [anon_sym_ATend] = ACTIONS(3862), - [sym_optional] = ACTIONS(3864), - [sym_required] = ACTIONS(3864), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1936] = { - [sym_preproc_def] = STATE(2046), - [sym_preproc_function_def] = STATE(2046), - [sym_declaration] = STATE(2046), - [sym_type_definition] = STATE(2046), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2046), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2047), - [aux_sym__interface_declaration] = STATE(2046), - [sym__interface_declaration_specifier] = STATE(2046), - [sym_method_declaration] = STATE(2046), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2046), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3866), - [anon_sym_ATend] = ACTIONS(3868), - [sym_optional] = ACTIONS(3870), - [sym_required] = ACTIONS(3870), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1937] = { - [sym_preproc_def] = STATE(2420), - [sym_preproc_function_def] = STATE(2420), - [sym_declaration] = STATE(2420), - [sym_type_definition] = STATE(2420), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2420), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2419), - [aux_sym__interface_declaration] = STATE(2420), - [sym__interface_declaration_specifier] = STATE(2420), - [sym_method_declaration] = STATE(2420), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2420), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3872), - [anon_sym_ATend] = ACTIONS(3874), - [sym_optional] = ACTIONS(3876), - [sym_required] = ACTIONS(3876), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1938] = { - [sym_preproc_def] = STATE(2168), - [sym_preproc_function_def] = STATE(2168), - [sym_declaration] = STATE(2168), - [sym_type_definition] = STATE(2168), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2168), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2069), - [aux_sym__interface_declaration] = STATE(2168), - [sym__interface_declaration_specifier] = STATE(2168), - [sym_method_declaration] = STATE(2168), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2168), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3878), - [anon_sym_ATend] = ACTIONS(3880), - [sym_optional] = ACTIONS(3882), - [sym_required] = ACTIONS(3882), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1939] = { - [sym_preproc_def] = STATE(2569), - [sym_preproc_function_def] = STATE(2569), - [sym_declaration] = STATE(2569), - [sym_type_definition] = STATE(2569), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2569), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2570), - [aux_sym__interface_declaration] = STATE(2569), - [sym__interface_declaration_specifier] = STATE(2569), - [sym_method_declaration] = STATE(2569), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2569), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3884), - [anon_sym_ATend] = ACTIONS(3886), - [sym_optional] = ACTIONS(3888), - [sym_required] = ACTIONS(3888), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1940] = { - [sym_preproc_def] = STATE(2095), - [sym_preproc_function_def] = STATE(2095), - [sym_declaration] = STATE(2095), - [sym_type_definition] = STATE(2095), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2095), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2094), - [aux_sym__interface_declaration] = STATE(2095), - [sym__interface_declaration_specifier] = STATE(2095), - [sym_method_declaration] = STATE(2095), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2095), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3890), - [anon_sym_ATend] = ACTIONS(3892), - [sym_optional] = ACTIONS(3894), - [sym_required] = ACTIONS(3894), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1941] = { - [sym_preproc_def] = STATE(2557), - [sym_preproc_function_def] = STATE(2557), - [sym_declaration] = STATE(2557), - [sym_type_definition] = STATE(2557), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2557), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2556), - [aux_sym__interface_declaration] = STATE(2557), - [sym__interface_declaration_specifier] = STATE(2557), - [sym_method_declaration] = STATE(2557), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2557), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3896), - [anon_sym_ATend] = ACTIONS(3898), - [sym_optional] = ACTIONS(3900), - [sym_required] = ACTIONS(3900), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1942] = { - [sym_preproc_def] = STATE(2122), - [sym_preproc_function_def] = STATE(2122), - [sym_declaration] = STATE(2122), - [sym_type_definition] = STATE(2122), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2122), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2123), - [aux_sym__interface_declaration] = STATE(2122), - [sym__interface_declaration_specifier] = STATE(2122), - [sym_method_declaration] = STATE(2122), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2122), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3902), - [anon_sym_ATend] = ACTIONS(3904), - [sym_optional] = ACTIONS(3906), - [sym_required] = ACTIONS(3906), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1943] = { - [sym_preproc_def] = STATE(2115), - [sym_preproc_function_def] = STATE(2115), - [sym_declaration] = STATE(2115), - [sym_type_definition] = STATE(2115), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2115), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2116), - [aux_sym__interface_declaration] = STATE(2115), - [sym__interface_declaration_specifier] = STATE(2115), - [sym_method_declaration] = STATE(2115), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2115), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3908), - [anon_sym_ATend] = ACTIONS(3910), - [sym_optional] = ACTIONS(3912), - [sym_required] = ACTIONS(3912), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1944] = { - [sym_preproc_def] = STATE(2310), - [sym_preproc_function_def] = STATE(2310), - [sym_declaration] = STATE(2310), - [sym_type_definition] = STATE(2310), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2310), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2281), - [aux_sym__interface_declaration] = STATE(2310), - [sym__interface_declaration_specifier] = STATE(2310), - [sym_method_declaration] = STATE(2310), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2310), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3914), - [anon_sym_ATend] = ACTIONS(3916), - [sym_optional] = ACTIONS(3918), - [sym_required] = ACTIONS(3918), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1945] = { - [sym_preproc_def] = STATE(2370), - [sym_preproc_function_def] = STATE(2370), - [sym_declaration] = STATE(2370), - [sym_type_definition] = STATE(2370), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2370), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(2371), - [aux_sym__interface_declaration] = STATE(2370), - [sym__interface_declaration_specifier] = STATE(2370), - [sym_method_declaration] = STATE(2370), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2370), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3920), - [anon_sym_ATend] = ACTIONS(3922), - [sym_optional] = ACTIONS(3924), - [sym_required] = ACTIONS(3924), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1946] = { - [sym_preproc_def] = STATE(2573), - [sym_preproc_function_def] = STATE(2573), - [sym_declaration] = STATE(2573), - [sym_type_definition] = STATE(2573), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2573), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2574), - [aux_sym__interface_declaration] = STATE(2573), - [sym__interface_declaration_specifier] = STATE(2573), - [sym_method_declaration] = STATE(2573), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2573), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3926), - [anon_sym_ATend] = ACTIONS(3928), - [sym_optional] = ACTIONS(3930), - [sym_required] = ACTIONS(3930), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1947] = { - [sym_preproc_def] = STATE(2442), - [sym_preproc_function_def] = STATE(2442), - [sym_declaration] = STATE(2442), - [sym_type_definition] = STATE(2442), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2442), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2435), - [aux_sym__interface_declaration] = STATE(2442), - [sym__interface_declaration_specifier] = STATE(2442), - [sym_method_declaration] = STATE(2442), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2442), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3932), - [anon_sym_ATend] = ACTIONS(3934), - [sym_optional] = ACTIONS(3936), - [sym_required] = ACTIONS(3936), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1948] = { - [sym_preproc_def] = STATE(2350), - [sym_preproc_function_def] = STATE(2350), - [sym_declaration] = STATE(2350), - [sym_type_definition] = STATE(2350), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2350), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2351), - [aux_sym__interface_declaration] = STATE(2350), - [sym__interface_declaration_specifier] = STATE(2350), - [sym_method_declaration] = STATE(2350), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2350), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3938), - [anon_sym_ATend] = ACTIONS(3940), - [sym_optional] = ACTIONS(3942), - [sym_required] = ACTIONS(3942), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1949] = { - [sym_preproc_def] = STATE(2323), - [sym_preproc_function_def] = STATE(2323), - [sym_declaration] = STATE(2323), - [sym_type_definition] = STATE(2323), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2323), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2322), - [aux_sym__interface_declaration] = STATE(2323), - [sym__interface_declaration_specifier] = STATE(2323), - [sym_method_declaration] = STATE(2323), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2323), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3944), - [anon_sym_ATend] = ACTIONS(3946), - [sym_optional] = ACTIONS(3948), - [sym_required] = ACTIONS(3948), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1950] = { - [sym_preproc_def] = STATE(2358), - [sym_preproc_function_def] = STATE(2358), - [sym_declaration] = STATE(2358), - [sym_type_definition] = STATE(2358), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2358), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2357), - [aux_sym__interface_declaration] = STATE(2358), - [sym__interface_declaration_specifier] = STATE(2358), - [sym_method_declaration] = STATE(2358), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2358), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3950), - [anon_sym_ATend] = ACTIONS(3952), - [sym_optional] = ACTIONS(3954), - [sym_required] = ACTIONS(3954), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1951] = { - [sym_preproc_def] = STATE(2377), - [sym_preproc_function_def] = STATE(2377), - [sym_declaration] = STATE(2377), - [sym_type_definition] = STATE(2377), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2377), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2369), - [aux_sym__interface_declaration] = STATE(2377), - [sym__interface_declaration_specifier] = STATE(2377), - [sym_method_declaration] = STATE(2377), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3956), - [anon_sym_ATend] = ACTIONS(3958), - [sym_optional] = ACTIONS(3960), - [sym_required] = ACTIONS(3960), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1952] = { - [sym_preproc_def] = STATE(2101), - [sym_preproc_function_def] = STATE(2101), - [sym_declaration] = STATE(2101), - [sym_type_definition] = STATE(2101), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2101), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2103), - [aux_sym__interface_declaration] = STATE(2101), - [sym__interface_declaration_specifier] = STATE(2101), - [sym_method_declaration] = STATE(2101), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2101), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3962), - [anon_sym_ATend] = ACTIONS(3964), - [sym_optional] = ACTIONS(3966), - [sym_required] = ACTIONS(3966), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1953] = { - [sym_preproc_def] = STATE(2406), - [sym_preproc_function_def] = STATE(2406), - [sym_declaration] = STATE(2406), - [sym_type_definition] = STATE(2406), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2406), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2489), - [aux_sym__interface_declaration] = STATE(2406), - [sym__interface_declaration_specifier] = STATE(2406), - [sym_method_declaration] = STATE(2406), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2406), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2580), - [anon_sym_ATend] = ACTIONS(2582), - [sym_optional] = ACTIONS(2584), - [sym_required] = ACTIONS(2584), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1954] = { - [sym_preproc_def] = STATE(2443), - [sym_preproc_function_def] = STATE(2443), - [sym_declaration] = STATE(2443), - [sym_type_definition] = STATE(2443), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2443), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2440), - [aux_sym__interface_declaration] = STATE(2443), - [sym__interface_declaration_specifier] = STATE(2443), - [sym_method_declaration] = STATE(2443), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2443), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3968), - [anon_sym_ATend] = ACTIONS(3970), - [sym_optional] = ACTIONS(3972), - [sym_required] = ACTIONS(3972), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1955] = { - [sym_preproc_def] = STATE(2467), - [sym_preproc_function_def] = STATE(2467), - [sym_declaration] = STATE(2467), - [sym_type_definition] = STATE(2467), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2467), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2457), - [aux_sym__interface_declaration] = STATE(2467), - [sym__interface_declaration_specifier] = STATE(2467), - [sym_method_declaration] = STATE(2467), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2467), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3974), - [anon_sym_ATend] = ACTIONS(3976), - [sym_optional] = ACTIONS(3978), - [sym_required] = ACTIONS(3978), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1956] = { - [sym_preproc_def] = STATE(2553), - [sym_preproc_function_def] = STATE(2553), - [sym_declaration] = STATE(2553), - [sym_type_definition] = STATE(2553), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2553), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2552), - [aux_sym__interface_declaration] = STATE(2553), - [sym__interface_declaration_specifier] = STATE(2553), - [sym_method_declaration] = STATE(2553), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2553), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3980), - [anon_sym_ATend] = ACTIONS(3982), - [sym_optional] = ACTIONS(3984), - [sym_required] = ACTIONS(3984), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1957] = { - [sym_preproc_def] = STATE(2614), - [sym_preproc_function_def] = STATE(2614), - [sym_declaration] = STATE(2614), - [sym_type_definition] = STATE(2614), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2614), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2613), - [aux_sym__interface_declaration] = STATE(2614), - [sym__interface_declaration_specifier] = STATE(2614), - [sym_method_declaration] = STATE(2614), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2614), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3986), - [anon_sym_ATend] = ACTIONS(3988), - [sym_optional] = ACTIONS(3990), - [sym_required] = ACTIONS(3990), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1958] = { - [sym_preproc_def] = STATE(2110), - [sym_preproc_function_def] = STATE(2110), - [sym_declaration] = STATE(2110), - [sym_type_definition] = STATE(2110), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2110), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2109), - [aux_sym__interface_declaration] = STATE(2110), - [sym__interface_declaration_specifier] = STATE(2110), - [sym_method_declaration] = STATE(2110), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2110), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3992), - [anon_sym_ATend] = ACTIONS(3994), - [sym_optional] = ACTIONS(3996), - [sym_required] = ACTIONS(3996), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1959] = { - [sym_preproc_def] = STATE(2609), - [sym_preproc_function_def] = STATE(2609), - [sym_declaration] = STATE(2609), - [sym_type_definition] = STATE(2609), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2609), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2607), - [aux_sym__interface_declaration] = STATE(2609), - [sym__interface_declaration_specifier] = STATE(2609), - [sym_method_declaration] = STATE(2609), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2609), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3998), - [anon_sym_ATend] = ACTIONS(4000), - [sym_optional] = ACTIONS(4002), - [sym_required] = ACTIONS(4002), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1960] = { - [sym_preproc_def] = STATE(2448), - [sym_preproc_function_def] = STATE(2448), - [sym_declaration] = STATE(2448), - [sym_type_definition] = STATE(2448), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2448), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2445), - [aux_sym__interface_declaration] = STATE(2448), - [sym__interface_declaration_specifier] = STATE(2448), - [sym_method_declaration] = STATE(2448), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2448), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4004), - [anon_sym_ATend] = ACTIONS(4006), - [sym_optional] = ACTIONS(4008), - [sym_required] = ACTIONS(4008), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1961] = { - [sym_preproc_def] = STATE(2524), - [sym_preproc_function_def] = STATE(2524), - [sym_declaration] = STATE(2524), - [sym_type_definition] = STATE(2524), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2524), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2522), - [aux_sym__interface_declaration] = STATE(2524), - [sym__interface_declaration_specifier] = STATE(2524), - [sym_method_declaration] = STATE(2524), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2524), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4010), - [anon_sym_ATend] = ACTIONS(4012), - [sym_optional] = ACTIONS(4014), - [sym_required] = ACTIONS(4014), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1962] = { - [sym_preproc_def] = STATE(2451), - [sym_preproc_function_def] = STATE(2451), - [sym_declaration] = STATE(2451), - [sym_type_definition] = STATE(2451), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2451), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2450), - [aux_sym__interface_declaration] = STATE(2451), - [sym__interface_declaration_specifier] = STATE(2451), - [sym_method_declaration] = STATE(2451), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2451), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4016), - [anon_sym_ATend] = ACTIONS(4018), - [sym_optional] = ACTIONS(4020), - [sym_required] = ACTIONS(4020), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1963] = { - [sym_preproc_def] = STATE(2514), - [sym_preproc_function_def] = STATE(2514), - [sym_declaration] = STATE(2514), - [sym_type_definition] = STATE(2514), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2514), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2513), - [aux_sym__interface_declaration] = STATE(2514), - [sym__interface_declaration_specifier] = STATE(2514), - [sym_method_declaration] = STATE(2514), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2514), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4022), - [anon_sym_ATend] = ACTIONS(4024), - [sym_optional] = ACTIONS(4026), - [sym_required] = ACTIONS(4026), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1964] = { - [sym_preproc_def] = STATE(2456), - [sym_preproc_function_def] = STATE(2456), - [sym_declaration] = STATE(2456), - [sym_type_definition] = STATE(2456), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2456), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2454), - [aux_sym__interface_declaration] = STATE(2456), - [sym__interface_declaration_specifier] = STATE(2456), - [sym_method_declaration] = STATE(2456), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2456), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4028), - [anon_sym_ATend] = ACTIONS(4030), - [sym_optional] = ACTIONS(4032), - [sym_required] = ACTIONS(4032), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1965] = { - [sym_preproc_def] = STATE(2335), - [sym_preproc_function_def] = STATE(2335), - [sym_declaration] = STATE(2335), - [sym_type_definition] = STATE(2335), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2335), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2336), - [aux_sym__interface_declaration] = STATE(2335), - [sym__interface_declaration_specifier] = STATE(2335), - [sym_method_declaration] = STATE(2335), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2335), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2502), - [anon_sym_ATend] = ACTIONS(2504), - [sym_optional] = ACTIONS(2506), - [sym_required] = ACTIONS(2506), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1966] = { - [sym_preproc_def] = STATE(2092), - [sym_preproc_function_def] = STATE(2092), - [sym_declaration] = STATE(2092), - [sym_type_definition] = STATE(2092), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2092), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2093), - [aux_sym__interface_declaration] = STATE(2092), - [sym__interface_declaration_specifier] = STATE(2092), - [sym_method_declaration] = STATE(2092), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2092), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4034), - [anon_sym_ATend] = ACTIONS(4036), - [sym_optional] = ACTIONS(4038), - [sym_required] = ACTIONS(4038), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1967] = { - [sym_preproc_def] = STATE(2460), - [sym_preproc_function_def] = STATE(2460), - [sym_declaration] = STATE(2460), - [sym_type_definition] = STATE(2460), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2460), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2461), - [aux_sym__interface_declaration] = STATE(2460), - [sym__interface_declaration_specifier] = STATE(2460), - [sym_method_declaration] = STATE(2460), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2460), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2604), - [anon_sym_ATend] = ACTIONS(2606), - [sym_optional] = ACTIONS(2608), - [sym_required] = ACTIONS(2608), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1968] = { - [sym_preproc_def] = STATE(2507), - [sym_preproc_function_def] = STATE(2507), - [sym_declaration] = STATE(2507), - [sym_type_definition] = STATE(2507), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2507), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2506), - [aux_sym__interface_declaration] = STATE(2507), - [sym__interface_declaration_specifier] = STATE(2507), - [sym_method_declaration] = STATE(2507), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2507), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4040), - [anon_sym_ATend] = ACTIONS(4042), - [sym_optional] = ACTIONS(4044), - [sym_required] = ACTIONS(4044), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1969] = { - [sym_preproc_def] = STATE(2118), - [sym_preproc_function_def] = STATE(2118), - [sym_declaration] = STATE(2118), - [sym_type_definition] = STATE(2118), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2118), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2117), - [aux_sym__interface_declaration] = STATE(2118), - [sym__interface_declaration_specifier] = STATE(2118), - [sym_method_declaration] = STATE(2118), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2118), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4046), - [anon_sym_ATend] = ACTIONS(4048), - [sym_optional] = ACTIONS(4050), - [sym_required] = ACTIONS(4050), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1970] = { - [sym_preproc_def] = STATE(2278), - [sym_preproc_function_def] = STATE(2278), - [sym_declaration] = STATE(2278), - [sym_type_definition] = STATE(2278), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2278), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2277), - [aux_sym__interface_declaration] = STATE(2278), - [sym__interface_declaration_specifier] = STATE(2278), - [sym_method_declaration] = STATE(2278), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2278), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2610), - [anon_sym_ATend] = ACTIONS(2612), - [sym_optional] = ACTIONS(2614), - [sym_required] = ACTIONS(2614), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1971] = { - [sym_preproc_def] = STATE(2317), - [sym_preproc_function_def] = STATE(2317), - [sym_declaration] = STATE(2317), - [sym_type_definition] = STATE(2317), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2317), - [sym_macro_type_specifier] = STATE(3418), - [sym_protocol_qualifiers] = STATE(2318), - [aux_sym__interface_declaration] = STATE(2317), - [sym__interface_declaration_specifier] = STATE(2317), - [sym_method_declaration] = STATE(2317), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2317), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(3036), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4052), - [anon_sym_ATend] = ACTIONS(4054), - [sym_optional] = ACTIONS(4056), - [sym_required] = ACTIONS(4056), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1972] = { - [sym_preproc_def] = STATE(2303), - [sym_preproc_function_def] = STATE(2303), - [sym_declaration] = STATE(2303), - [sym_type_definition] = STATE(2303), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2303), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2304), - [aux_sym__interface_declaration] = STATE(2303), - [sym__interface_declaration_specifier] = STATE(2303), - [sym_method_declaration] = STATE(2303), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2303), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4058), - [anon_sym_ATend] = ACTIONS(4060), - [sym_optional] = ACTIONS(4062), - [sym_required] = ACTIONS(4062), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1973] = { - [sym_preproc_def] = STATE(2246), - [sym_preproc_function_def] = STATE(2246), - [sym_declaration] = STATE(2246), - [sym_type_definition] = STATE(2246), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2246), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2247), - [aux_sym__interface_declaration] = STATE(2246), - [sym__interface_declaration_specifier] = STATE(2246), - [sym_method_declaration] = STATE(2246), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2246), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4064), - [anon_sym_ATend] = ACTIONS(4066), - [sym_optional] = ACTIONS(4068), - [sym_required] = ACTIONS(4068), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1974] = { - [sym_preproc_def] = STATE(2125), - [sym_preproc_function_def] = STATE(2125), - [sym_declaration] = STATE(2125), - [sym_type_definition] = STATE(2125), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2125), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2124), - [aux_sym__interface_declaration] = STATE(2125), - [sym__interface_declaration_specifier] = STATE(2125), - [sym_method_declaration] = STATE(2125), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2125), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4070), - [anon_sym_ATend] = ACTIONS(4072), - [sym_optional] = ACTIONS(4074), - [sym_required] = ACTIONS(4074), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1975] = { - [sym_preproc_def] = STATE(2463), - [sym_preproc_function_def] = STATE(2463), - [sym_declaration] = STATE(2463), - [sym_type_definition] = STATE(2463), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2463), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2462), - [aux_sym__interface_declaration] = STATE(2463), - [sym__interface_declaration_specifier] = STATE(2463), - [sym_method_declaration] = STATE(2463), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2463), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4076), - [anon_sym_ATend] = ACTIONS(4078), - [sym_optional] = ACTIONS(4080), - [sym_required] = ACTIONS(4080), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1976] = { - [sym_preproc_def] = STATE(2297), - [sym_preproc_function_def] = STATE(2297), - [sym_declaration] = STATE(2297), - [sym_type_definition] = STATE(2297), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2297), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2298), - [aux_sym__interface_declaration] = STATE(2297), - [sym__interface_declaration_specifier] = STATE(2297), - [sym_method_declaration] = STATE(2297), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2297), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4082), - [anon_sym_ATend] = ACTIONS(4084), - [sym_optional] = ACTIONS(4086), - [sym_required] = ACTIONS(4086), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1977] = { - [sym_preproc_def] = STATE(2131), - [sym_preproc_function_def] = STATE(2131), - [sym_declaration] = STATE(2131), - [sym_type_definition] = STATE(2131), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2131), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2130), - [aux_sym__interface_declaration] = STATE(2131), - [sym__interface_declaration_specifier] = STATE(2131), - [sym_method_declaration] = STATE(2131), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2131), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4088), - [anon_sym_ATend] = ACTIONS(4090), - [sym_optional] = ACTIONS(4092), - [sym_required] = ACTIONS(4092), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1978] = { - [sym_preproc_def] = STATE(2466), - [sym_preproc_function_def] = STATE(2466), - [sym_declaration] = STATE(2466), - [sym_type_definition] = STATE(2466), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2466), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2465), - [aux_sym__interface_declaration] = STATE(2466), - [sym__interface_declaration_specifier] = STATE(2466), - [sym_method_declaration] = STATE(2466), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2466), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4094), - [anon_sym_ATend] = ACTIONS(4096), - [sym_optional] = ACTIONS(4098), - [sym_required] = ACTIONS(4098), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1979] = { - [sym_preproc_def] = STATE(2088), - [sym_preproc_function_def] = STATE(2088), - [sym_declaration] = STATE(2088), - [sym_type_definition] = STATE(2088), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2088), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2089), - [aux_sym__interface_declaration] = STATE(2088), - [sym__interface_declaration_specifier] = STATE(2088), - [sym_method_declaration] = STATE(2088), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2088), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4100), - [anon_sym_ATend] = ACTIONS(4102), - [sym_optional] = ACTIONS(4104), - [sym_required] = ACTIONS(4104), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1980] = { - [sym_preproc_def] = STATE(2290), - [sym_preproc_function_def] = STATE(2290), - [sym_declaration] = STATE(2290), - [sym_type_definition] = STATE(2290), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2290), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2291), - [aux_sym__interface_declaration] = STATE(2290), - [sym__interface_declaration_specifier] = STATE(2290), - [sym_method_declaration] = STATE(2290), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2290), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4106), - [anon_sym_ATend] = ACTIONS(4108), - [sym_optional] = ACTIONS(4110), - [sym_required] = ACTIONS(4110), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1981] = { - [sym_preproc_def] = STATE(2287), - [sym_preproc_function_def] = STATE(2287), - [sym_declaration] = STATE(2287), - [sym_type_definition] = STATE(2287), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2287), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2288), - [aux_sym__interface_declaration] = STATE(2287), - [sym__interface_declaration_specifier] = STATE(2287), - [sym_method_declaration] = STATE(2287), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2287), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4112), - [anon_sym_ATend] = ACTIONS(4114), - [sym_optional] = ACTIONS(4116), - [sym_required] = ACTIONS(4116), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1982] = { - [sym_preproc_def] = STATE(2104), - [sym_preproc_function_def] = STATE(2104), - [sym_declaration] = STATE(2104), - [sym_type_definition] = STATE(2104), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2104), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2133), - [aux_sym__interface_declaration] = STATE(2104), - [sym__interface_declaration_specifier] = STATE(2104), - [sym_method_declaration] = STATE(2104), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2104), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4118), - [anon_sym_ATend] = ACTIONS(4120), - [sym_optional] = ACTIONS(4122), - [sym_required] = ACTIONS(4122), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1983] = { - [sym_preproc_def] = STATE(2284), - [sym_preproc_function_def] = STATE(2284), - [sym_declaration] = STATE(2284), - [sym_type_definition] = STATE(2284), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2284), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2285), - [aux_sym__interface_declaration] = STATE(2284), - [sym__interface_declaration_specifier] = STATE(2284), - [sym_method_declaration] = STATE(2284), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2284), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4124), - [anon_sym_ATend] = ACTIONS(4126), - [sym_optional] = ACTIONS(4128), - [sym_required] = ACTIONS(4128), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1984] = { - [sym_preproc_def] = STATE(2282), - [sym_preproc_function_def] = STATE(2282), - [sym_declaration] = STATE(2282), - [sym_type_definition] = STATE(2282), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2282), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2283), - [aux_sym__interface_declaration] = STATE(2282), - [sym__interface_declaration_specifier] = STATE(2282), - [sym_method_declaration] = STATE(2282), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2282), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4130), - [anon_sym_ATend] = ACTIONS(4132), - [sym_optional] = ACTIONS(4134), - [sym_required] = ACTIONS(4134), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1985] = { - [sym_preproc_def] = STATE(2589), - [sym_preproc_function_def] = STATE(2589), - [sym_declaration] = STATE(2589), - [sym_type_definition] = STATE(2589), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2589), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2587), - [aux_sym__interface_declaration] = STATE(2589), - [sym__interface_declaration_specifier] = STATE(2589), - [sym_method_declaration] = STATE(2589), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2589), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4136), - [anon_sym_ATend] = ACTIONS(4138), - [sym_optional] = ACTIONS(4140), - [sym_required] = ACTIONS(4140), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1986] = { - [sym_preproc_def] = STATE(2502), - [sym_preproc_function_def] = STATE(2502), - [sym_declaration] = STATE(2502), - [sym_type_definition] = STATE(2502), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2502), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2501), - [aux_sym__interface_declaration] = STATE(2502), - [sym__interface_declaration_specifier] = STATE(2502), - [sym_method_declaration] = STATE(2502), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2502), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4142), - [anon_sym_ATend] = ACTIONS(4144), - [sym_optional] = ACTIONS(4146), - [sym_required] = ACTIONS(4146), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1987] = { - [sym_preproc_def] = STATE(2272), - [sym_preproc_function_def] = STATE(2272), - [sym_declaration] = STATE(2272), - [sym_type_definition] = STATE(2272), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2272), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2273), - [aux_sym__interface_declaration] = STATE(2272), - [sym__interface_declaration_specifier] = STATE(2272), - [sym_method_declaration] = STATE(2272), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2272), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4148), - [anon_sym_ATend] = ACTIONS(4150), - [sym_optional] = ACTIONS(4152), - [sym_required] = ACTIONS(4152), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1988] = { - [sym_preproc_def] = STATE(2275), - [sym_preproc_function_def] = STATE(2275), - [sym_declaration] = STATE(2275), - [sym_type_definition] = STATE(2275), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2275), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2276), - [aux_sym__interface_declaration] = STATE(2275), - [sym__interface_declaration_specifier] = STATE(2275), - [sym_method_declaration] = STATE(2275), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2275), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4154), - [anon_sym_ATend] = ACTIONS(4156), - [sym_optional] = ACTIONS(4158), - [sym_required] = ACTIONS(4158), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1989] = { - [sym_preproc_def] = STATE(2665), - [sym_preproc_function_def] = STATE(2665), - [sym_declaration] = STATE(2665), - [sym_type_definition] = STATE(2665), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2665), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2668), - [aux_sym__interface_declaration] = STATE(2665), - [sym__interface_declaration_specifier] = STATE(2665), - [sym_method_declaration] = STATE(2665), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2665), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4160), - [anon_sym_ATend] = ACTIONS(4162), - [sym_optional] = ACTIONS(4164), - [sym_required] = ACTIONS(4164), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1990] = { - [sym_preproc_def] = STATE(2585), - [sym_preproc_function_def] = STATE(2585), - [sym_declaration] = STATE(2585), - [sym_type_definition] = STATE(2585), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2585), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2584), - [aux_sym__interface_declaration] = STATE(2585), - [sym__interface_declaration_specifier] = STATE(2585), - [sym_method_declaration] = STATE(2585), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2585), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4166), - [anon_sym_ATend] = ACTIONS(4168), - [sym_optional] = ACTIONS(4170), - [sym_required] = ACTIONS(4170), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1991] = { - [sym_preproc_def] = STATE(2073), - [sym_preproc_function_def] = STATE(2073), - [sym_declaration] = STATE(2073), - [sym_type_definition] = STATE(2073), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2073), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2075), - [aux_sym__interface_declaration] = STATE(2073), - [sym__interface_declaration_specifier] = STATE(2073), - [sym_method_declaration] = STATE(2073), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2073), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4172), - [anon_sym_ATend] = ACTIONS(4174), - [sym_optional] = ACTIONS(4176), - [sym_required] = ACTIONS(4176), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1992] = { - [sym_preproc_def] = STATE(2554), - [sym_preproc_function_def] = STATE(2554), - [sym_declaration] = STATE(2554), - [sym_type_definition] = STATE(2554), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2554), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2583), - [aux_sym__interface_declaration] = STATE(2554), - [sym__interface_declaration_specifier] = STATE(2554), - [sym_method_declaration] = STATE(2554), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2554), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3176), - [anon_sym_ATend] = ACTIONS(3178), - [sym_optional] = ACTIONS(3180), - [sym_required] = ACTIONS(3180), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1993] = { - [sym_preproc_def] = STATE(2686), - [sym_preproc_function_def] = STATE(2686), - [sym_declaration] = STATE(2686), - [sym_type_definition] = STATE(2686), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2686), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2685), - [aux_sym__interface_declaration] = STATE(2686), - [sym__interface_declaration_specifier] = STATE(2686), - [sym_method_declaration] = STATE(2686), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2686), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4178), - [anon_sym_ATend] = ACTIONS(4180), - [sym_optional] = ACTIONS(4182), - [sym_required] = ACTIONS(4182), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1994] = { - [sym_preproc_def] = STATE(2694), - [sym_preproc_function_def] = STATE(2694), - [sym_declaration] = STATE(2694), - [sym_type_definition] = STATE(2694), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2694), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2693), - [aux_sym__interface_declaration] = STATE(2694), - [sym__interface_declaration_specifier] = STATE(2694), - [sym_method_declaration] = STATE(2694), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2694), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4184), - [anon_sym_ATend] = ACTIONS(4186), - [sym_optional] = ACTIONS(4188), - [sym_required] = ACTIONS(4188), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1995] = { - [sym_preproc_def] = STATE(2705), - [sym_preproc_function_def] = STATE(2705), - [sym_declaration] = STATE(2705), - [sym_type_definition] = STATE(2705), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2705), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2704), - [aux_sym__interface_declaration] = STATE(2705), - [sym__interface_declaration_specifier] = STATE(2705), - [sym_method_declaration] = STATE(2705), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2705), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4190), - [anon_sym_ATend] = ACTIONS(4192), - [sym_optional] = ACTIONS(4194), - [sym_required] = ACTIONS(4194), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1996] = { - [sym_preproc_def] = STATE(2711), - [sym_preproc_function_def] = STATE(2711), - [sym_declaration] = STATE(2711), - [sym_type_definition] = STATE(2711), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2711), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2708), - [aux_sym__interface_declaration] = STATE(2711), - [sym__interface_declaration_specifier] = STATE(2711), - [sym_method_declaration] = STATE(2711), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2711), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4196), - [anon_sym_ATend] = ACTIONS(4198), - [sym_optional] = ACTIONS(4200), - [sym_required] = ACTIONS(4200), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1997] = { - [sym_preproc_def] = STATE(2710), - [sym_preproc_function_def] = STATE(2710), - [sym_declaration] = STATE(2710), - [sym_type_definition] = STATE(2710), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2710), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2713), - [aux_sym__interface_declaration] = STATE(2710), - [sym__interface_declaration_specifier] = STATE(2710), - [sym_method_declaration] = STATE(2710), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2710), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4202), - [anon_sym_ATend] = ACTIONS(4204), - [sym_optional] = ACTIONS(4206), - [sym_required] = ACTIONS(4206), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1998] = { - [sym_preproc_def] = STATE(2703), - [sym_preproc_function_def] = STATE(2703), - [sym_declaration] = STATE(2703), - [sym_type_definition] = STATE(2703), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2703), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2707), - [aux_sym__interface_declaration] = STATE(2703), - [sym__interface_declaration_specifier] = STATE(2703), - [sym_method_declaration] = STATE(2703), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2703), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4208), - [anon_sym_ATend] = ACTIONS(4210), - [sym_optional] = ACTIONS(4212), - [sym_required] = ACTIONS(4212), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [1999] = { - [sym_preproc_def] = STATE(2698), - [sym_preproc_function_def] = STATE(2698), - [sym_declaration] = STATE(2698), - [sym_type_definition] = STATE(2698), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2698), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2701), - [aux_sym__interface_declaration] = STATE(2698), - [sym__interface_declaration_specifier] = STATE(2698), - [sym_method_declaration] = STATE(2698), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2698), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4214), - [anon_sym_ATend] = ACTIONS(4216), - [sym_optional] = ACTIONS(4218), - [sym_required] = ACTIONS(4218), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2000] = { - [sym_preproc_def] = STATE(2242), - [sym_preproc_function_def] = STATE(2242), - [sym_declaration] = STATE(2242), - [sym_type_definition] = STATE(2242), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2242), - [sym_macro_type_specifier] = STATE(3418), - [sym__instance_variables] = STATE(2243), - [aux_sym__interface_declaration] = STATE(2242), - [sym__interface_declaration_specifier] = STATE(2242), - [sym_method_declaration] = STATE(2242), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2242), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4220), - [anon_sym_ATend] = ACTIONS(4222), - [sym_optional] = ACTIONS(4224), - [sym_required] = ACTIONS(4224), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2001] = { - [sym_preproc_def] = STATE(2207), - [sym_preproc_function_def] = STATE(2207), - [sym_declaration] = STATE(2207), - [sym_type_definition] = STATE(2207), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2207), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2207), - [sym__interface_declaration_specifier] = STATE(2207), - [sym_method_declaration] = STATE(2207), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2207), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4226), - [anon_sym_ATend] = ACTIONS(4228), - [sym_optional] = ACTIONS(4230), - [sym_required] = ACTIONS(4230), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2002] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4234), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2003] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4238), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2004] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4240), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2005] = { - [sym_preproc_def] = STATE(2695), - [sym_preproc_function_def] = STATE(2695), - [sym_declaration] = STATE(2695), - [sym_type_definition] = STATE(2695), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2695), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2695), - [sym__interface_declaration_specifier] = STATE(2695), - [sym_method_declaration] = STATE(2695), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2695), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4242), - [anon_sym_ATend] = ACTIONS(4244), - [sym_optional] = ACTIONS(4246), - [sym_required] = ACTIONS(4246), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2006] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4248), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2007] = { - [sym_preproc_def] = STATE(2356), - [sym_preproc_function_def] = STATE(2356), - [sym_declaration] = STATE(2356), - [sym_type_definition] = STATE(2356), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2356), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2356), - [sym__interface_declaration_specifier] = STATE(2356), - [sym_method_declaration] = STATE(2356), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2356), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4250), - [anon_sym_ATend] = ACTIONS(4252), - [sym_optional] = ACTIONS(4254), - [sym_required] = ACTIONS(4254), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2008] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4256), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2009] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4258), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2010] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4260), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2011] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4262), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2012] = { - [sym_preproc_def] = STATE(2428), - [sym_preproc_function_def] = STATE(2428), - [sym_declaration] = STATE(2428), - [sym_type_definition] = STATE(2428), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2428), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2428), - [sym__interface_declaration_specifier] = STATE(2428), - [sym_method_declaration] = STATE(2428), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2428), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4264), - [anon_sym_ATend] = ACTIONS(4266), - [sym_optional] = ACTIONS(4268), - [sym_required] = ACTIONS(4268), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2013] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4270), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2014] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4272), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2015] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4274), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2016] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4276), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2017] = { - [sym_preproc_def] = STATE(2595), - [sym_preproc_function_def] = STATE(2595), - [sym_declaration] = STATE(2595), - [sym_type_definition] = STATE(2595), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2595), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2595), - [sym__interface_declaration_specifier] = STATE(2595), - [sym_method_declaration] = STATE(2595), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2595), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4278), - [anon_sym_ATend] = ACTIONS(4280), - [sym_optional] = ACTIONS(4282), - [sym_required] = ACTIONS(4282), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2018] = { - [sym_preproc_def] = STATE(2251), - [sym_preproc_function_def] = STATE(2251), - [sym_declaration] = STATE(2251), - [sym_type_definition] = STATE(2251), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2251), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2251), - [sym__interface_declaration_specifier] = STATE(2251), - [sym_method_declaration] = STATE(2251), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2251), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4284), - [anon_sym_ATend] = ACTIONS(4286), - [sym_optional] = ACTIONS(4288), - [sym_required] = ACTIONS(4288), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2019] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4290), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2020] = { - [sym_preproc_def] = STATE(2003), - [sym_preproc_function_def] = STATE(2003), - [sym_declaration] = STATE(2003), - [sym_type_definition] = STATE(2003), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2003), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2003), - [sym__interface_declaration_specifier] = STATE(2003), - [sym_method_declaration] = STATE(2003), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2003), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4292), - [anon_sym_ATend] = ACTIONS(4294), - [sym_optional] = ACTIONS(4296), - [sym_required] = ACTIONS(4296), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2021] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4298), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2022] = { - [sym_preproc_def] = STATE(2009), - [sym_preproc_function_def] = STATE(2009), - [sym_declaration] = STATE(2009), - [sym_type_definition] = STATE(2009), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2009), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2009), - [sym__interface_declaration_specifier] = STATE(2009), - [sym_method_declaration] = STATE(2009), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2009), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4300), - [anon_sym_ATend] = ACTIONS(4302), - [sym_optional] = ACTIONS(4304), - [sym_required] = ACTIONS(4304), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2023] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4306), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2024] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4308), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2025] = { - [sym_preproc_def] = STATE(2010), - [sym_preproc_function_def] = STATE(2010), - [sym_declaration] = STATE(2010), - [sym_type_definition] = STATE(2010), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2010), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2010), - [sym__interface_declaration_specifier] = STATE(2010), - [sym_method_declaration] = STATE(2010), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2010), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4310), - [anon_sym_ATend] = ACTIONS(4312), - [sym_optional] = ACTIONS(4314), - [sym_required] = ACTIONS(4314), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2026] = { - [sym_preproc_def] = STATE(2575), - [sym_preproc_function_def] = STATE(2575), - [sym_declaration] = STATE(2575), - [sym_type_definition] = STATE(2575), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2575), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2575), - [sym__interface_declaration_specifier] = STATE(2575), - [sym_method_declaration] = STATE(2575), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2575), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4316), - [anon_sym_ATend] = ACTIONS(4318), - [sym_optional] = ACTIONS(4320), - [sym_required] = ACTIONS(4320), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2027] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4322), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2028] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4324), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2029] = { - [sym_preproc_def] = STATE(2572), - [sym_preproc_function_def] = STATE(2572), - [sym_declaration] = STATE(2572), - [sym_type_definition] = STATE(2572), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2572), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2572), - [sym__interface_declaration_specifier] = STATE(2572), - [sym_method_declaration] = STATE(2572), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2572), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4326), - [anon_sym_ATend] = ACTIONS(4328), - [sym_optional] = ACTIONS(4330), - [sym_required] = ACTIONS(4330), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2030] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4332), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2031] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4334), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2032] = { - [sym_preproc_def] = STATE(2013), - [sym_preproc_function_def] = STATE(2013), - [sym_declaration] = STATE(2013), - [sym_type_definition] = STATE(2013), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2013), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2013), - [sym__interface_declaration_specifier] = STATE(2013), - [sym_method_declaration] = STATE(2013), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2013), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4336), - [anon_sym_ATend] = ACTIONS(4338), - [sym_optional] = ACTIONS(4340), - [sym_required] = ACTIONS(4340), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2033] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4342), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2034] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4344), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2035] = { - [sym_preproc_def] = STATE(2014), - [sym_preproc_function_def] = STATE(2014), - [sym_declaration] = STATE(2014), - [sym_type_definition] = STATE(2014), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2014), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2014), - [sym__interface_declaration_specifier] = STATE(2014), - [sym_method_declaration] = STATE(2014), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2014), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4346), - [anon_sym_ATend] = ACTIONS(4348), - [sym_optional] = ACTIONS(4350), - [sym_required] = ACTIONS(4350), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2036] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4352), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2037] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4294), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2038] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4354), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2039] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4356), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2040] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4358), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2041] = { - [sym_preproc_def] = STATE(2015), - [sym_preproc_function_def] = STATE(2015), - [sym_declaration] = STATE(2015), - [sym_type_definition] = STATE(2015), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2015), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2015), - [sym__interface_declaration_specifier] = STATE(2015), - [sym_method_declaration] = STATE(2015), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2015), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4360), - [anon_sym_ATend] = ACTIONS(4362), - [sym_optional] = ACTIONS(4364), - [sym_required] = ACTIONS(4364), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2042] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4366), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2043] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4368), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2044] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4370), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2045] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4372), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2046] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4374), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2047] = { - [sym_preproc_def] = STATE(2016), - [sym_preproc_function_def] = STATE(2016), - [sym_declaration] = STATE(2016), - [sym_type_definition] = STATE(2016), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2016), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2016), - [sym__interface_declaration_specifier] = STATE(2016), - [sym_method_declaration] = STATE(2016), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2016), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4376), - [anon_sym_ATend] = ACTIONS(4378), - [sym_optional] = ACTIONS(4380), - [sym_required] = ACTIONS(4380), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2048] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4382), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2049] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4384), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2050] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4386), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2051] = { - [sym_preproc_def] = STATE(2307), - [sym_preproc_function_def] = STATE(2307), - [sym_declaration] = STATE(2307), - [sym_type_definition] = STATE(2307), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2307), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2307), - [sym__interface_declaration_specifier] = STATE(2307), - [sym_method_declaration] = STATE(2307), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2307), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4388), - [anon_sym_ATend] = ACTIONS(4390), - [sym_optional] = ACTIONS(4392), - [sym_required] = ACTIONS(4392), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2052] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4394), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2053] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4396), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2054] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4398), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2055] = { - [sym_preproc_def] = STATE(2309), - [sym_preproc_function_def] = STATE(2309), - [sym_declaration] = STATE(2309), - [sym_type_definition] = STATE(2309), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2309), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2309), - [sym__interface_declaration_specifier] = STATE(2309), - [sym_method_declaration] = STATE(2309), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2309), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2496), - [anon_sym_ATend] = ACTIONS(2498), - [sym_optional] = ACTIONS(2500), - [sym_required] = ACTIONS(2500), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2056] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(2498), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2057] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4400), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2058] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4402), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2059] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4404), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2060] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4406), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2061] = { - [sym_preproc_def] = STATE(2023), - [sym_preproc_function_def] = STATE(2023), - [sym_declaration] = STATE(2023), - [sym_type_definition] = STATE(2023), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2023), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2023), - [sym__interface_declaration_specifier] = STATE(2023), - [sym_method_declaration] = STATE(2023), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2023), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4408), - [anon_sym_ATend] = ACTIONS(4410), - [sym_optional] = ACTIONS(4412), - [sym_required] = ACTIONS(4412), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2062] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4414), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2063] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4416), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2064] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4418), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2065] = { - [sym_preproc_def] = STATE(2127), - [sym_preproc_function_def] = STATE(2127), - [sym_declaration] = STATE(2127), - [sym_type_definition] = STATE(2127), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2127), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2127), - [sym__interface_declaration_specifier] = STATE(2127), - [sym_method_declaration] = STATE(2127), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2127), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4420), - [anon_sym_ATend] = ACTIONS(4422), - [sym_optional] = ACTIONS(4424), - [sym_required] = ACTIONS(4424), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2066] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4426), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2067] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4428), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2068] = { - [sym_preproc_def] = STATE(2121), - [sym_preproc_function_def] = STATE(2121), - [sym_declaration] = STATE(2121), - [sym_type_definition] = STATE(2121), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2121), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2121), - [sym__interface_declaration_specifier] = STATE(2121), - [sym_method_declaration] = STATE(2121), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2121), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4430), - [anon_sym_ATend] = ACTIONS(4432), - [sym_optional] = ACTIONS(4434), - [sym_required] = ACTIONS(4434), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2069] = { - [sym_preproc_def] = STATE(2571), - [sym_preproc_function_def] = STATE(2571), - [sym_declaration] = STATE(2571), - [sym_type_definition] = STATE(2571), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2571), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2571), - [sym__interface_declaration_specifier] = STATE(2571), - [sym_method_declaration] = STATE(2571), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2571), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4436), - [anon_sym_ATend] = ACTIONS(4438), - [sym_optional] = ACTIONS(4440), - [sym_required] = ACTIONS(4440), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2070] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4442), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2071] = { - [sym_preproc_def] = STATE(2194), - [sym_preproc_function_def] = STATE(2194), - [sym_declaration] = STATE(2194), - [sym_type_definition] = STATE(2194), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2194), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2194), - [sym__interface_declaration_specifier] = STATE(2194), - [sym_method_declaration] = STATE(2194), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2194), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4444), - [anon_sym_ATend] = ACTIONS(4446), - [sym_optional] = ACTIONS(4448), - [sym_required] = ACTIONS(4448), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2072] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4450), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2073] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4452), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2074] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4454), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2075] = { - [sym_preproc_def] = STATE(2113), - [sym_preproc_function_def] = STATE(2113), - [sym_declaration] = STATE(2113), - [sym_type_definition] = STATE(2113), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2113), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2113), - [sym__interface_declaration_specifier] = STATE(2113), - [sym_method_declaration] = STATE(2113), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2113), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4456), - [anon_sym_ATend] = ACTIONS(4458), - [sym_optional] = ACTIONS(4460), - [sym_required] = ACTIONS(4460), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2076] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4462), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2077] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4464), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2078] = { - [sym_preproc_def] = STATE(2106), - [sym_preproc_function_def] = STATE(2106), - [sym_declaration] = STATE(2106), - [sym_type_definition] = STATE(2106), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2106), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2106), - [sym__interface_declaration_specifier] = STATE(2106), - [sym_method_declaration] = STATE(2106), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2106), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4466), - [anon_sym_ATend] = ACTIONS(4468), - [sym_optional] = ACTIONS(4470), - [sym_required] = ACTIONS(4470), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2079] = { - [sym_preproc_def] = STATE(2104), - [sym_preproc_function_def] = STATE(2104), - [sym_declaration] = STATE(2104), - [sym_type_definition] = STATE(2104), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2104), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2104), - [sym__interface_declaration_specifier] = STATE(2104), - [sym_method_declaration] = STATE(2104), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2104), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4118), - [anon_sym_ATend] = ACTIONS(4120), - [sym_optional] = ACTIONS(4122), - [sym_required] = ACTIONS(4122), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2080] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4472), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2081] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4474), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2082] = { - [sym_preproc_def] = STATE(2102), - [sym_preproc_function_def] = STATE(2102), - [sym_declaration] = STATE(2102), - [sym_type_definition] = STATE(2102), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2102), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2102), - [sym__interface_declaration_specifier] = STATE(2102), - [sym_method_declaration] = STATE(2102), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2102), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4476), - [anon_sym_ATend] = ACTIONS(4478), - [sym_optional] = ACTIONS(4480), - [sym_required] = ACTIONS(4480), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2083] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4482), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2084] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4484), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2085] = { - [sym_preproc_def] = STATE(2098), - [sym_preproc_function_def] = STATE(2098), - [sym_declaration] = STATE(2098), - [sym_type_definition] = STATE(2098), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2098), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2098), - [sym__interface_declaration_specifier] = STATE(2098), - [sym_method_declaration] = STATE(2098), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2098), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4486), - [anon_sym_ATend] = ACTIONS(4488), - [sym_optional] = ACTIONS(4490), - [sym_required] = ACTIONS(4490), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2086] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4492), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2087] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4494), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2088] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4496), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2089] = { - [sym_preproc_def] = STATE(2091), - [sym_preproc_function_def] = STATE(2091), - [sym_declaration] = STATE(2091), - [sym_type_definition] = STATE(2091), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2091), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2091), - [sym__interface_declaration_specifier] = STATE(2091), - [sym_method_declaration] = STATE(2091), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2091), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4498), - [anon_sym_ATend] = ACTIONS(4500), - [sym_optional] = ACTIONS(4502), - [sym_required] = ACTIONS(4502), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2090] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4504), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2091] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4506), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2092] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4508), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2093] = { - [sym_preproc_def] = STATE(2087), - [sym_preproc_function_def] = STATE(2087), - [sym_declaration] = STATE(2087), - [sym_type_definition] = STATE(2087), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2087), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2087), - [sym__interface_declaration_specifier] = STATE(2087), - [sym_method_declaration] = STATE(2087), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2087), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4510), - [anon_sym_ATend] = ACTIONS(4512), - [sym_optional] = ACTIONS(4514), - [sym_required] = ACTIONS(4514), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2094] = { - [sym_preproc_def] = STATE(2201), - [sym_preproc_function_def] = STATE(2201), - [sym_declaration] = STATE(2201), - [sym_type_definition] = STATE(2201), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2201), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2201), - [sym__interface_declaration_specifier] = STATE(2201), - [sym_method_declaration] = STATE(2201), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2201), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4516), - [anon_sym_ATend] = ACTIONS(4518), - [sym_optional] = ACTIONS(4520), - [sym_required] = ACTIONS(4520), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2095] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4522), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2096] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4524), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2097] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4120), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2098] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4526), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2099] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4528), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2100] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4530), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2101] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4532), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2102] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4534), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2103] = { - [sym_preproc_def] = STATE(2080), - [sym_preproc_function_def] = STATE(2080), - [sym_declaration] = STATE(2080), - [sym_type_definition] = STATE(2080), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2080), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2080), - [sym__interface_declaration_specifier] = STATE(2080), - [sym_method_declaration] = STATE(2080), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2080), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4536), - [anon_sym_ATend] = ACTIONS(4538), - [sym_optional] = ACTIONS(4540), - [sym_required] = ACTIONS(4540), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2104] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4542), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2105] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4544), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2106] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4546), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2107] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4548), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2108] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4550), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2109] = { - [sym_preproc_def] = STATE(2208), - [sym_preproc_function_def] = STATE(2208), - [sym_declaration] = STATE(2208), - [sym_type_definition] = STATE(2208), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2208), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2208), - [sym__interface_declaration_specifier] = STATE(2208), - [sym_method_declaration] = STATE(2208), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2208), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4552), - [anon_sym_ATend] = ACTIONS(4554), - [sym_optional] = ACTIONS(4556), - [sym_required] = ACTIONS(4556), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2110] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4558), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2111] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4560), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2112] = { - [sym_preproc_def] = STATE(2074), - [sym_preproc_function_def] = STATE(2074), - [sym_declaration] = STATE(2074), - [sym_type_definition] = STATE(2074), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2074), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2074), - [sym__interface_declaration_specifier] = STATE(2074), - [sym_method_declaration] = STATE(2074), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2074), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4562), - [anon_sym_ATend] = ACTIONS(4564), - [sym_optional] = ACTIONS(4566), - [sym_required] = ACTIONS(4566), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2113] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4568), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2114] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4570), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2115] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4572), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2116] = { - [sym_preproc_def] = STATE(2067), - [sym_preproc_function_def] = STATE(2067), - [sym_declaration] = STATE(2067), - [sym_type_definition] = STATE(2067), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2067), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2067), - [sym__interface_declaration_specifier] = STATE(2067), - [sym_method_declaration] = STATE(2067), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2067), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4574), - [anon_sym_ATend] = ACTIONS(4576), - [sym_optional] = ACTIONS(4578), - [sym_required] = ACTIONS(4578), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2117] = { - [sym_preproc_def] = STATE(2212), - [sym_preproc_function_def] = STATE(2212), - [sym_declaration] = STATE(2212), - [sym_type_definition] = STATE(2212), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2212), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2212), - [sym__interface_declaration_specifier] = STATE(2212), - [sym_method_declaration] = STATE(2212), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2212), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4580), - [anon_sym_ATend] = ACTIONS(4582), - [sym_optional] = ACTIONS(4584), - [sym_required] = ACTIONS(4584), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2118] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4586), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2119] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4588), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2120] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4590), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2121] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4592), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2122] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4594), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2123] = { - [sym_preproc_def] = STATE(2062), - [sym_preproc_function_def] = STATE(2062), - [sym_declaration] = STATE(2062), - [sym_type_definition] = STATE(2062), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2062), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2062), - [sym__interface_declaration_specifier] = STATE(2062), - [sym_method_declaration] = STATE(2062), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2062), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4596), - [anon_sym_ATend] = ACTIONS(4598), - [sym_optional] = ACTIONS(4600), - [sym_required] = ACTIONS(4600), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2124] = { - [sym_preproc_def] = STATE(2219), - [sym_preproc_function_def] = STATE(2219), - [sym_declaration] = STATE(2219), - [sym_type_definition] = STATE(2219), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2219), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2219), - [sym__interface_declaration_specifier] = STATE(2219), - [sym_method_declaration] = STATE(2219), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2219), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4602), - [anon_sym_ATend] = ACTIONS(4604), - [sym_optional] = ACTIONS(4606), - [sym_required] = ACTIONS(4606), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2125] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4608), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2126] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4610), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2127] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4612), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2128] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4614), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2129] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4616), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2130] = { - [sym_preproc_def] = STATE(2223), - [sym_preproc_function_def] = STATE(2223), - [sym_declaration] = STATE(2223), - [sym_type_definition] = STATE(2223), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2223), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2223), - [sym__interface_declaration_specifier] = STATE(2223), - [sym_method_declaration] = STATE(2223), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2223), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4618), - [anon_sym_ATend] = ACTIONS(4620), - [sym_optional] = ACTIONS(4622), - [sym_required] = ACTIONS(4622), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2131] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4624), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2132] = { - [sym_preproc_def] = STATE(2057), - [sym_preproc_function_def] = STATE(2057), - [sym_declaration] = STATE(2057), - [sym_type_definition] = STATE(2057), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2057), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2057), - [sym__interface_declaration_specifier] = STATE(2057), - [sym_method_declaration] = STATE(2057), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2057), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4626), - [anon_sym_ATend] = ACTIONS(4628), - [sym_optional] = ACTIONS(4630), - [sym_required] = ACTIONS(4630), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2133] = { - [sym_preproc_def] = STATE(2225), - [sym_preproc_function_def] = STATE(2225), - [sym_declaration] = STATE(2225), - [sym_type_definition] = STATE(2225), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2225), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2225), - [sym__interface_declaration_specifier] = STATE(2225), - [sym_method_declaration] = STATE(2225), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2225), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4632), - [anon_sym_ATend] = ACTIONS(4542), - [sym_optional] = ACTIONS(4634), - [sym_required] = ACTIONS(4634), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2134] = { - [sym_preproc_def] = STATE(2030), - [sym_preproc_function_def] = STATE(2030), - [sym_declaration] = STATE(2030), - [sym_type_definition] = STATE(2030), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2030), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2030), - [sym__interface_declaration_specifier] = STATE(2030), - [sym_method_declaration] = STATE(2030), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2030), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4636), - [anon_sym_ATend] = ACTIONS(4638), - [sym_optional] = ACTIONS(4640), - [sym_required] = ACTIONS(4640), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2135] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4642), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2136] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4644), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2137] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4646), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2138] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4648), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2139] = { - [sym_preproc_def] = STATE(2033), - [sym_preproc_function_def] = STATE(2033), - [sym_declaration] = STATE(2033), - [sym_type_definition] = STATE(2033), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2033), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2033), - [sym__interface_declaration_specifier] = STATE(2033), - [sym_method_declaration] = STATE(2033), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2033), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4650), - [anon_sym_ATend] = ACTIONS(4652), - [sym_optional] = ACTIONS(4654), - [sym_required] = ACTIONS(4654), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2140] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4656), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2141] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4658), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2142] = { - [sym_preproc_def] = STATE(2036), - [sym_preproc_function_def] = STATE(2036), - [sym_declaration] = STATE(2036), - [sym_type_definition] = STATE(2036), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2036), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2036), - [sym__interface_declaration_specifier] = STATE(2036), - [sym_method_declaration] = STATE(2036), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2036), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4660), - [anon_sym_ATend] = ACTIONS(4662), - [sym_optional] = ACTIONS(4664), - [sym_required] = ACTIONS(4664), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2143] = { - [sym_preproc_def] = STATE(2037), - [sym_preproc_function_def] = STATE(2037), - [sym_declaration] = STATE(2037), - [sym_type_definition] = STATE(2037), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2037), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2037), - [sym__interface_declaration_specifier] = STATE(2037), - [sym_method_declaration] = STATE(2037), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2037), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3536), - [anon_sym_ATend] = ACTIONS(3538), - [sym_optional] = ACTIONS(3540), - [sym_required] = ACTIONS(3540), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2144] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4666), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2145] = { - [sym_preproc_def] = STATE(2038), - [sym_preproc_function_def] = STATE(2038), - [sym_declaration] = STATE(2038), - [sym_type_definition] = STATE(2038), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2038), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2038), - [sym__interface_declaration_specifier] = STATE(2038), - [sym_method_declaration] = STATE(2038), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2038), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4668), - [anon_sym_ATend] = ACTIONS(4670), - [sym_optional] = ACTIONS(4672), - [sym_required] = ACTIONS(4672), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2146] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4674), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2147] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4676), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2148] = { - [sym_preproc_def] = STATE(2039), - [sym_preproc_function_def] = STATE(2039), - [sym_declaration] = STATE(2039), - [sym_type_definition] = STATE(2039), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2039), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2039), - [sym__interface_declaration_specifier] = STATE(2039), - [sym_method_declaration] = STATE(2039), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2039), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4678), - [anon_sym_ATend] = ACTIONS(4680), - [sym_optional] = ACTIONS(4682), - [sym_required] = ACTIONS(4682), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2149] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4684), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2150] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4686), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2151] = { - [sym_preproc_def] = STATE(2042), - [sym_preproc_function_def] = STATE(2042), - [sym_declaration] = STATE(2042), - [sym_type_definition] = STATE(2042), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2042), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2042), - [sym__interface_declaration_specifier] = STATE(2042), - [sym_method_declaration] = STATE(2042), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2042), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4688), - [anon_sym_ATend] = ACTIONS(4690), - [sym_optional] = ACTIONS(4692), - [sym_required] = ACTIONS(4692), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2152] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4694), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2153] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4696), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2154] = { - [sym_preproc_def] = STATE(2043), - [sym_preproc_function_def] = STATE(2043), - [sym_declaration] = STATE(2043), - [sym_type_definition] = STATE(2043), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2043), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2043), - [sym__interface_declaration_specifier] = STATE(2043), - [sym_method_declaration] = STATE(2043), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2043), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4698), - [anon_sym_ATend] = ACTIONS(4700), - [sym_optional] = ACTIONS(4702), - [sym_required] = ACTIONS(4702), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2155] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4704), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2156] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(3538), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2157] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4706), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2158] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4708), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2159] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4710), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2160] = { - [sym_preproc_def] = STATE(2044), - [sym_preproc_function_def] = STATE(2044), - [sym_declaration] = STATE(2044), - [sym_type_definition] = STATE(2044), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2044), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2044), - [sym__interface_declaration_specifier] = STATE(2044), - [sym_method_declaration] = STATE(2044), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2044), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4712), - [anon_sym_ATend] = ACTIONS(4714), - [sym_optional] = ACTIONS(4716), - [sym_required] = ACTIONS(4716), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2161] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4718), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2162] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4720), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2163] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4722), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2164] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4724), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2165] = { - [sym_preproc_def] = STATE(2045), - [sym_preproc_function_def] = STATE(2045), - [sym_declaration] = STATE(2045), - [sym_type_definition] = STATE(2045), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2045), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2045), - [sym__interface_declaration_specifier] = STATE(2045), - [sym_method_declaration] = STATE(2045), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2045), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4726), - [anon_sym_ATend] = ACTIONS(4728), - [sym_optional] = ACTIONS(4730), - [sym_required] = ACTIONS(4730), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2166] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4732), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2167] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4734), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2168] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4736), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2169] = { - [sym_preproc_def] = STATE(2048), - [sym_preproc_function_def] = STATE(2048), - [sym_declaration] = STATE(2048), - [sym_type_definition] = STATE(2048), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2048), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2048), - [sym__interface_declaration_specifier] = STATE(2048), - [sym_method_declaration] = STATE(2048), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2048), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4738), - [anon_sym_ATend] = ACTIONS(4740), - [sym_optional] = ACTIONS(4742), - [sym_required] = ACTIONS(4742), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2170] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4744), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2171] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4746), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2172] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4748), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2173] = { - [sym_preproc_def] = STATE(2049), - [sym_preproc_function_def] = STATE(2049), - [sym_declaration] = STATE(2049), - [sym_type_definition] = STATE(2049), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2049), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2049), - [sym__interface_declaration_specifier] = STATE(2049), - [sym_method_declaration] = STATE(2049), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2049), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4750), - [anon_sym_ATend] = ACTIONS(4752), - [sym_optional] = ACTIONS(4754), - [sym_required] = ACTIONS(4754), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2174] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4756), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2175] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4758), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2176] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4760), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2177] = { - [sym_preproc_def] = STATE(2050), - [sym_preproc_function_def] = STATE(2050), - [sym_declaration] = STATE(2050), - [sym_type_definition] = STATE(2050), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2050), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2050), - [sym__interface_declaration_specifier] = STATE(2050), - [sym_method_declaration] = STATE(2050), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2050), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4762), - [anon_sym_ATend] = ACTIONS(4764), - [sym_optional] = ACTIONS(4766), - [sym_required] = ACTIONS(4766), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2178] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4768), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2179] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4770), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2180] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4772), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2181] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4774), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2182] = { - [sym_preproc_def] = STATE(2058), - [sym_preproc_function_def] = STATE(2058), - [sym_declaration] = STATE(2058), - [sym_type_definition] = STATE(2058), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2058), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2058), - [sym__interface_declaration_specifier] = STATE(2058), - [sym_method_declaration] = STATE(2058), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2058), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4776), - [anon_sym_ATend] = ACTIONS(4778), - [sym_optional] = ACTIONS(4780), - [sym_required] = ACTIONS(4780), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2183] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4782), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2184] = { - [sym_preproc_def] = STATE(2137), - [sym_preproc_function_def] = STATE(2137), - [sym_declaration] = STATE(2137), - [sym_type_definition] = STATE(2137), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2137), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2137), - [sym__interface_declaration_specifier] = STATE(2137), - [sym_method_declaration] = STATE(2137), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2137), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4784), - [anon_sym_ATend] = ACTIONS(4786), - [sym_optional] = ACTIONS(4788), - [sym_required] = ACTIONS(4788), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2185] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4790), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2186] = { - [sym_preproc_def] = STATE(2140), - [sym_preproc_function_def] = STATE(2140), - [sym_declaration] = STATE(2140), - [sym_type_definition] = STATE(2140), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2140), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2140), - [sym__interface_declaration_specifier] = STATE(2140), - [sym_method_declaration] = STATE(2140), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2140), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4792), - [anon_sym_ATend] = ACTIONS(4794), - [sym_optional] = ACTIONS(4796), - [sym_required] = ACTIONS(4796), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2187] = { - [sym_preproc_def] = STATE(2567), - [sym_preproc_function_def] = STATE(2567), - [sym_declaration] = STATE(2567), - [sym_type_definition] = STATE(2567), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2567), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2567), - [sym__interface_declaration_specifier] = STATE(2567), - [sym_method_declaration] = STATE(2567), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2567), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4798), - [anon_sym_ATend] = ACTIONS(4800), - [sym_optional] = ACTIONS(4802), - [sym_required] = ACTIONS(4802), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2188] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4804), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2189] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4806), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2190] = { - [sym_preproc_def] = STATE(2146), - [sym_preproc_function_def] = STATE(2146), - [sym_declaration] = STATE(2146), - [sym_type_definition] = STATE(2146), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2146), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2146), - [sym__interface_declaration_specifier] = STATE(2146), - [sym_method_declaration] = STATE(2146), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2146), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4808), - [anon_sym_ATend] = ACTIONS(4810), - [sym_optional] = ACTIONS(4812), - [sym_required] = ACTIONS(4812), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2191] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4814), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2192] = { - [sym_preproc_def] = STATE(2149), - [sym_preproc_function_def] = STATE(2149), - [sym_declaration] = STATE(2149), - [sym_type_definition] = STATE(2149), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2149), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2149), - [sym__interface_declaration_specifier] = STATE(2149), - [sym_method_declaration] = STATE(2149), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2149), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4816), - [anon_sym_ATend] = ACTIONS(4818), - [sym_optional] = ACTIONS(4820), - [sym_required] = ACTIONS(4820), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2193] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4822), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2194] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4824), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2195] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4826), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2196] = { - [sym_preproc_def] = STATE(2152), - [sym_preproc_function_def] = STATE(2152), - [sym_declaration] = STATE(2152), - [sym_type_definition] = STATE(2152), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2152), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2152), - [sym__interface_declaration_specifier] = STATE(2152), - [sym_method_declaration] = STATE(2152), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2152), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4828), - [anon_sym_ATend] = ACTIONS(4830), - [sym_optional] = ACTIONS(4832), - [sym_required] = ACTIONS(4832), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2197] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4834), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2198] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4836), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2199] = { - [sym_preproc_def] = STATE(2155), - [sym_preproc_function_def] = STATE(2155), - [sym_declaration] = STATE(2155), - [sym_type_definition] = STATE(2155), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2155), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2155), - [sym__interface_declaration_specifier] = STATE(2155), - [sym_method_declaration] = STATE(2155), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2155), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4838), - [anon_sym_ATend] = ACTIONS(4840), - [sym_optional] = ACTIONS(4842), - [sym_required] = ACTIONS(4842), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2200] = { - [sym_preproc_def] = STATE(2156), - [sym_preproc_function_def] = STATE(2156), - [sym_declaration] = STATE(2156), - [sym_type_definition] = STATE(2156), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2156), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2156), - [sym__interface_declaration_specifier] = STATE(2156), - [sym_method_declaration] = STATE(2156), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2156), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3590), - [anon_sym_ATend] = ACTIONS(3592), - [sym_optional] = ACTIONS(3594), - [sym_required] = ACTIONS(3594), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2201] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4844), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2202] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4846), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2203] = { - [sym_preproc_def] = STATE(2157), - [sym_preproc_function_def] = STATE(2157), - [sym_declaration] = STATE(2157), - [sym_type_definition] = STATE(2157), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2157), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2157), - [sym__interface_declaration_specifier] = STATE(2157), - [sym_method_declaration] = STATE(2157), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2157), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4848), - [anon_sym_ATend] = ACTIONS(4850), - [sym_optional] = ACTIONS(4852), - [sym_required] = ACTIONS(4852), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2204] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4854), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2205] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4856), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2206] = { - [sym_preproc_def] = STATE(2158), - [sym_preproc_function_def] = STATE(2158), - [sym_declaration] = STATE(2158), - [sym_type_definition] = STATE(2158), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2158), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2158), - [sym__interface_declaration_specifier] = STATE(2158), - [sym_method_declaration] = STATE(2158), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2158), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4858), - [anon_sym_ATend] = ACTIONS(4860), - [sym_optional] = ACTIONS(4862), - [sym_required] = ACTIONS(4862), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2207] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4864), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2208] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4866), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2209] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4868), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2210] = { - [sym_preproc_def] = STATE(2161), - [sym_preproc_function_def] = STATE(2161), - [sym_declaration] = STATE(2161), - [sym_type_definition] = STATE(2161), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2161), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2161), - [sym__interface_declaration_specifier] = STATE(2161), - [sym_method_declaration] = STATE(2161), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2161), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4870), - [anon_sym_ATend] = ACTIONS(4872), - [sym_optional] = ACTIONS(4874), - [sym_required] = ACTIONS(4874), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2211] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4876), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2212] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4878), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2213] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4880), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2214] = { - [sym_preproc_def] = STATE(2162), - [sym_preproc_function_def] = STATE(2162), - [sym_declaration] = STATE(2162), - [sym_type_definition] = STATE(2162), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2162), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2162), - [sym__interface_declaration_specifier] = STATE(2162), - [sym_method_declaration] = STATE(2162), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2162), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4882), - [anon_sym_ATend] = ACTIONS(4884), - [sym_optional] = ACTIONS(4886), - [sym_required] = ACTIONS(4886), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2215] = { - [sym_preproc_def] = STATE(2269), - [sym_preproc_function_def] = STATE(2269), - [sym_declaration] = STATE(2269), - [sym_type_definition] = STATE(2269), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2269), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2269), - [sym__interface_declaration_specifier] = STATE(2269), - [sym_method_declaration] = STATE(2269), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2269), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4888), - [anon_sym_ATend] = ACTIONS(4890), - [sym_optional] = ACTIONS(4892), - [sym_required] = ACTIONS(4892), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2216] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4894), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2217] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4896), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2218] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(3592), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2219] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4898), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2220] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4900), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2221] = { - [sym_preproc_def] = STATE(2163), - [sym_preproc_function_def] = STATE(2163), - [sym_declaration] = STATE(2163), - [sym_type_definition] = STATE(2163), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2163), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2163), - [sym__interface_declaration_specifier] = STATE(2163), - [sym_method_declaration] = STATE(2163), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2163), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4902), - [anon_sym_ATend] = ACTIONS(4900), - [sym_optional] = ACTIONS(4904), - [sym_required] = ACTIONS(4904), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2222] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4906), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2223] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4908), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2224] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4910), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2225] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4912), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2226] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4914), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2227] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4916), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2228] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4918), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2229] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4920), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2230] = { - [sym_preproc_def] = STATE(2166), - [sym_preproc_function_def] = STATE(2166), - [sym_declaration] = STATE(2166), - [sym_type_definition] = STATE(2166), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2166), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2166), - [sym__interface_declaration_specifier] = STATE(2166), - [sym_method_declaration] = STATE(2166), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2166), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4922), - [anon_sym_ATend] = ACTIONS(4924), - [sym_optional] = ACTIONS(4926), - [sym_required] = ACTIONS(4926), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2231] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4928), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2232] = { - [sym_preproc_def] = STATE(2170), - [sym_preproc_function_def] = STATE(2170), - [sym_declaration] = STATE(2170), - [sym_type_definition] = STATE(2170), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2170), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2170), - [sym__interface_declaration_specifier] = STATE(2170), - [sym_method_declaration] = STATE(2170), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2170), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4930), - [anon_sym_ATend] = ACTIONS(4932), - [sym_optional] = ACTIONS(4934), - [sym_required] = ACTIONS(4934), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2233] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4936), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2234] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4938), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2235] = { - [sym_preproc_def] = STATE(2171), - [sym_preproc_function_def] = STATE(2171), - [sym_declaration] = STATE(2171), - [sym_type_definition] = STATE(2171), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2171), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2171), - [sym__interface_declaration_specifier] = STATE(2171), - [sym_method_declaration] = STATE(2171), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2171), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4940), - [anon_sym_ATend] = ACTIONS(4942), - [sym_optional] = ACTIONS(4944), - [sym_required] = ACTIONS(4944), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2236] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4946), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2237] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4948), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2238] = { - [sym_preproc_def] = STATE(2174), - [sym_preproc_function_def] = STATE(2174), - [sym_declaration] = STATE(2174), - [sym_type_definition] = STATE(2174), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2174), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2174), - [sym__interface_declaration_specifier] = STATE(2174), - [sym_method_declaration] = STATE(2174), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2174), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4950), - [anon_sym_ATend] = ACTIONS(4952), - [sym_optional] = ACTIONS(4954), - [sym_required] = ACTIONS(4954), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2239] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4956), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2240] = { - [sym_preproc_def] = STATE(2175), - [sym_preproc_function_def] = STATE(2175), - [sym_declaration] = STATE(2175), - [sym_type_definition] = STATE(2175), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2175), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2175), - [sym__interface_declaration_specifier] = STATE(2175), - [sym_method_declaration] = STATE(2175), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2175), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4958), - [anon_sym_ATend] = ACTIONS(4960), - [sym_optional] = ACTIONS(4962), - [sym_required] = ACTIONS(4962), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2241] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4964), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2242] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4966), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2243] = { - [sym_preproc_def] = STATE(2178), - [sym_preproc_function_def] = STATE(2178), - [sym_declaration] = STATE(2178), - [sym_type_definition] = STATE(2178), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2178), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2178), - [sym__interface_declaration_specifier] = STATE(2178), - [sym_method_declaration] = STATE(2178), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2178), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4968), - [anon_sym_ATend] = ACTIONS(4970), - [sym_optional] = ACTIONS(4972), - [sym_required] = ACTIONS(4972), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2244] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4974), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2245] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4976), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2246] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4978), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2247] = { - [sym_preproc_def] = STATE(2179), - [sym_preproc_function_def] = STATE(2179), - [sym_declaration] = STATE(2179), - [sym_type_definition] = STATE(2179), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2179), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2179), - [sym__interface_declaration_specifier] = STATE(2179), - [sym_method_declaration] = STATE(2179), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2179), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4980), - [anon_sym_ATend] = ACTIONS(4982), - [sym_optional] = ACTIONS(4984), - [sym_required] = ACTIONS(4984), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2248] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4986), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2249] = { - [sym_preproc_def] = STATE(2546), - [sym_preproc_function_def] = STATE(2546), - [sym_declaration] = STATE(2546), - [sym_type_definition] = STATE(2546), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2546), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2546), - [sym__interface_declaration_specifier] = STATE(2546), - [sym_method_declaration] = STATE(2546), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2546), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4988), - [anon_sym_ATend] = ACTIONS(4990), - [sym_optional] = ACTIONS(4992), - [sym_required] = ACTIONS(4992), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2250] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4994), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2251] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4996), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2252] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4998), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2253] = { - [sym_preproc_def] = STATE(2363), - [sym_preproc_function_def] = STATE(2363), - [sym_declaration] = STATE(2363), - [sym_type_definition] = STATE(2363), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2363), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2363), - [sym__interface_declaration_specifier] = STATE(2363), - [sym_method_declaration] = STATE(2363), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2363), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5000), - [anon_sym_ATend] = ACTIONS(5002), - [sym_optional] = ACTIONS(5004), - [sym_required] = ACTIONS(5004), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2254] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5006), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2255] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5008), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2256] = { - [sym_preproc_def] = STATE(2180), - [sym_preproc_function_def] = STATE(2180), - [sym_declaration] = STATE(2180), - [sym_type_definition] = STATE(2180), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2180), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2180), - [sym__interface_declaration_specifier] = STATE(2180), - [sym_method_declaration] = STATE(2180), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2180), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5010), - [anon_sym_ATend] = ACTIONS(5012), - [sym_optional] = ACTIONS(5014), - [sym_required] = ACTIONS(5014), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2257] = { - [sym_preproc_def] = STATE(2366), - [sym_preproc_function_def] = STATE(2366), - [sym_declaration] = STATE(2366), - [sym_type_definition] = STATE(2366), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2366), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2366), - [sym__interface_declaration_specifier] = STATE(2366), - [sym_method_declaration] = STATE(2366), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2366), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5016), - [anon_sym_ATend] = ACTIONS(5018), - [sym_optional] = ACTIONS(5020), - [sym_required] = ACTIONS(5020), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2258] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5022), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2259] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5024), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2260] = { - [sym_preproc_def] = STATE(2188), - [sym_preproc_function_def] = STATE(2188), - [sym_declaration] = STATE(2188), - [sym_type_definition] = STATE(2188), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2188), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2188), - [sym__interface_declaration_specifier] = STATE(2188), - [sym_method_declaration] = STATE(2188), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2188), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5026), - [anon_sym_ATend] = ACTIONS(5028), - [sym_optional] = ACTIONS(5030), - [sym_required] = ACTIONS(5030), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2261] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5032), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2262] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5034), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2263] = { - [sym_preproc_def] = STATE(2193), - [sym_preproc_function_def] = STATE(2193), - [sym_declaration] = STATE(2193), - [sym_type_definition] = STATE(2193), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2193), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2193), - [sym__interface_declaration_specifier] = STATE(2193), - [sym_method_declaration] = STATE(2193), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2193), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5036), - [anon_sym_ATend] = ACTIONS(5038), - [sym_optional] = ACTIONS(5040), - [sym_required] = ACTIONS(5040), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2264] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5042), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2265] = { - [sym_preproc_def] = STATE(2197), - [sym_preproc_function_def] = STATE(2197), - [sym_declaration] = STATE(2197), - [sym_type_definition] = STATE(2197), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2197), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2197), - [sym__interface_declaration_specifier] = STATE(2197), - [sym_method_declaration] = STATE(2197), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2197), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5044), - [anon_sym_ATend] = ACTIONS(5046), - [sym_optional] = ACTIONS(5048), - [sym_required] = ACTIONS(5048), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2266] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5050), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2267] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5052), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2268] = { - [sym_preproc_def] = STATE(2204), - [sym_preproc_function_def] = STATE(2204), - [sym_declaration] = STATE(2204), - [sym_type_definition] = STATE(2204), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2204), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2204), - [sym__interface_declaration_specifier] = STATE(2204), - [sym_method_declaration] = STATE(2204), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2204), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5054), - [anon_sym_ATend] = ACTIONS(5056), - [sym_optional] = ACTIONS(5058), - [sym_required] = ACTIONS(5058), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2269] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5060), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2270] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5062), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2271] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5064), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2272] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5066), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2273] = { - [sym_preproc_def] = STATE(2211), - [sym_preproc_function_def] = STATE(2211), - [sym_declaration] = STATE(2211), - [sym_type_definition] = STATE(2211), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2211), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2211), - [sym__interface_declaration_specifier] = STATE(2211), - [sym_method_declaration] = STATE(2211), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2211), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5068), - [anon_sym_ATend] = ACTIONS(5070), - [sym_optional] = ACTIONS(5072), - [sym_required] = ACTIONS(5072), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2274] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5074), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2275] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5076), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2276] = { - [sym_preproc_def] = STATE(2217), - [sym_preproc_function_def] = STATE(2217), - [sym_declaration] = STATE(2217), - [sym_type_definition] = STATE(2217), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2217), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2217), - [sym__interface_declaration_specifier] = STATE(2217), - [sym_method_declaration] = STATE(2217), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2217), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5078), - [anon_sym_ATend] = ACTIONS(5080), - [sym_optional] = ACTIONS(5082), - [sym_required] = ACTIONS(5082), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2277] = { - [sym_preproc_def] = STATE(2218), - [sym_preproc_function_def] = STATE(2218), - [sym_declaration] = STATE(2218), - [sym_type_definition] = STATE(2218), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2218), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2218), - [sym__interface_declaration_specifier] = STATE(2218), - [sym_method_declaration] = STATE(2218), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2218), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3090), - [anon_sym_ATend] = ACTIONS(3092), - [sym_optional] = ACTIONS(3094), - [sym_required] = ACTIONS(3094), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2278] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(3092), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2279] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(3784), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2280] = { - [sym_preproc_def] = STATE(2220), - [sym_preproc_function_def] = STATE(2220), - [sym_declaration] = STATE(2220), - [sym_type_definition] = STATE(2220), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2220), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2220), - [sym__interface_declaration_specifier] = STATE(2220), - [sym_method_declaration] = STATE(2220), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2220), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3782), - [anon_sym_ATend] = ACTIONS(3784), - [sym_optional] = ACTIONS(3786), - [sym_required] = ACTIONS(3786), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2281] = { - [sym_preproc_def] = STATE(2541), - [sym_preproc_function_def] = STATE(2541), - [sym_declaration] = STATE(2541), - [sym_type_definition] = STATE(2541), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2541), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2541), - [sym__interface_declaration_specifier] = STATE(2541), - [sym_method_declaration] = STATE(2541), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2541), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5084), - [anon_sym_ATend] = ACTIONS(5086), - [sym_optional] = ACTIONS(5088), - [sym_required] = ACTIONS(5088), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2282] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5090), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2283] = { - [sym_preproc_def] = STATE(2222), - [sym_preproc_function_def] = STATE(2222), - [sym_declaration] = STATE(2222), - [sym_type_definition] = STATE(2222), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2222), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2222), - [sym__interface_declaration_specifier] = STATE(2222), - [sym_method_declaration] = STATE(2222), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2222), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5092), - [anon_sym_ATend] = ACTIONS(5090), - [sym_optional] = ACTIONS(5094), - [sym_required] = ACTIONS(5094), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2284] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5096), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2285] = { - [sym_preproc_def] = STATE(2226), - [sym_preproc_function_def] = STATE(2226), - [sym_declaration] = STATE(2226), - [sym_type_definition] = STATE(2226), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2226), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2226), - [sym__interface_declaration_specifier] = STATE(2226), - [sym_method_declaration] = STATE(2226), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2226), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5098), - [anon_sym_ATend] = ACTIONS(5100), - [sym_optional] = ACTIONS(5102), - [sym_required] = ACTIONS(5102), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2286] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5104), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2287] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5106), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2288] = { - [sym_preproc_def] = STATE(2227), - [sym_preproc_function_def] = STATE(2227), - [sym_declaration] = STATE(2227), - [sym_type_definition] = STATE(2227), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2227), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2227), - [sym__interface_declaration_specifier] = STATE(2227), - [sym_method_declaration] = STATE(2227), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2227), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5108), - [anon_sym_ATend] = ACTIONS(5110), - [sym_optional] = ACTIONS(5112), - [sym_required] = ACTIONS(5112), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2289] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5114), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2290] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5116), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2291] = { - [sym_preproc_def] = STATE(2233), - [sym_preproc_function_def] = STATE(2233), - [sym_declaration] = STATE(2233), - [sym_type_definition] = STATE(2233), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2233), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2233), - [sym__interface_declaration_specifier] = STATE(2233), - [sym_method_declaration] = STATE(2233), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2233), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5118), - [anon_sym_ATend] = ACTIONS(5120), - [sym_optional] = ACTIONS(5122), - [sym_required] = ACTIONS(5122), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2292] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5124), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2293] = { - [sym_preproc_def] = STATE(2236), - [sym_preproc_function_def] = STATE(2236), - [sym_declaration] = STATE(2236), - [sym_type_definition] = STATE(2236), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2236), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2236), - [sym__interface_declaration_specifier] = STATE(2236), - [sym_method_declaration] = STATE(2236), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2236), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5126), - [anon_sym_ATend] = ACTIONS(5128), - [sym_optional] = ACTIONS(5130), - [sym_required] = ACTIONS(5130), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2294] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5132), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2295] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5134), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2296] = { - [sym_preproc_def] = STATE(2241), - [sym_preproc_function_def] = STATE(2241), - [sym_declaration] = STATE(2241), - [sym_type_definition] = STATE(2241), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2241), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2241), - [sym__interface_declaration_specifier] = STATE(2241), - [sym_method_declaration] = STATE(2241), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2241), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5136), - [anon_sym_ATend] = ACTIONS(5138), - [sym_optional] = ACTIONS(5140), - [sym_required] = ACTIONS(5140), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2297] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5142), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2298] = { - [sym_preproc_def] = STATE(2244), - [sym_preproc_function_def] = STATE(2244), - [sym_declaration] = STATE(2244), - [sym_type_definition] = STATE(2244), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2244), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2244), - [sym__interface_declaration_specifier] = STATE(2244), - [sym_method_declaration] = STATE(2244), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2244), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5144), - [anon_sym_ATend] = ACTIONS(5146), - [sym_optional] = ACTIONS(5148), - [sym_required] = ACTIONS(5148), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2299] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5150), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2300] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5152), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2301] = { - [sym_preproc_def] = STATE(2245), - [sym_preproc_function_def] = STATE(2245), - [sym_declaration] = STATE(2245), - [sym_type_definition] = STATE(2245), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2245), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2245), - [sym__interface_declaration_specifier] = STATE(2245), - [sym_method_declaration] = STATE(2245), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2245), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5154), - [anon_sym_ATend] = ACTIONS(5156), - [sym_optional] = ACTIONS(5158), - [sym_required] = ACTIONS(5158), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2302] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5160), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2303] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5162), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2304] = { - [sym_preproc_def] = STATE(2248), - [sym_preproc_function_def] = STATE(2248), - [sym_declaration] = STATE(2248), - [sym_type_definition] = STATE(2248), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2248), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2248), - [sym__interface_declaration_specifier] = STATE(2248), - [sym_method_declaration] = STATE(2248), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2248), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5164), - [anon_sym_ATend] = ACTIONS(5166), - [sym_optional] = ACTIONS(5168), - [sym_required] = ACTIONS(5168), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2305] = { - [sym_preproc_def] = STATE(2374), - [sym_preproc_function_def] = STATE(2374), - [sym_declaration] = STATE(2374), - [sym_type_definition] = STATE(2374), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2374), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2374), - [sym__interface_declaration_specifier] = STATE(2374), - [sym_method_declaration] = STATE(2374), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2374), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5170), - [anon_sym_ATend] = ACTIONS(5172), - [sym_optional] = ACTIONS(5174), - [sym_required] = ACTIONS(5174), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2306] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5176), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2307] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5178), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2308] = { - [sym_preproc_def] = STATE(2379), - [sym_preproc_function_def] = STATE(2379), - [sym_declaration] = STATE(2379), - [sym_type_definition] = STATE(2379), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2379), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2379), - [sym__interface_declaration_specifier] = STATE(2379), - [sym_method_declaration] = STATE(2379), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2379), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2556), - [anon_sym_ATend] = ACTIONS(2558), - [sym_optional] = ACTIONS(2560), - [sym_required] = ACTIONS(2560), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2309] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(2558), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2310] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5180), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2311] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5182), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2312] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5184), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2313] = { - [sym_preproc_def] = STATE(2398), - [sym_preproc_function_def] = STATE(2398), - [sym_declaration] = STATE(2398), - [sym_type_definition] = STATE(2398), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2398), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2398), - [sym__interface_declaration_specifier] = STATE(2398), - [sym_method_declaration] = STATE(2398), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2398), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5186), - [anon_sym_ATend] = ACTIONS(5188), - [sym_optional] = ACTIONS(5190), - [sym_required] = ACTIONS(5190), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2314] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5192), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2315] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5194), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2316] = { - [sym_preproc_def] = STATE(2504), - [sym_preproc_function_def] = STATE(2504), - [sym_declaration] = STATE(2504), - [sym_type_definition] = STATE(2504), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2504), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2504), - [sym__interface_declaration_specifier] = STATE(2504), - [sym_method_declaration] = STATE(2504), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2504), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5196), - [anon_sym_ATend] = ACTIONS(5198), - [sym_optional] = ACTIONS(5200), - [sym_required] = ACTIONS(5200), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2317] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5202), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2318] = { - [sym_preproc_def] = STATE(2250), - [sym_preproc_function_def] = STATE(2250), - [sym_declaration] = STATE(2250), - [sym_type_definition] = STATE(2250), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2250), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2250), - [sym__interface_declaration_specifier] = STATE(2250), - [sym_method_declaration] = STATE(2250), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2250), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5204), - [anon_sym_ATend] = ACTIONS(5206), - [sym_optional] = ACTIONS(5208), - [sym_required] = ACTIONS(5208), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2319] = { - [sym_preproc_def] = STATE(2403), - [sym_preproc_function_def] = STATE(2403), - [sym_declaration] = STATE(2403), - [sym_type_definition] = STATE(2403), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2403), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2403), - [sym__interface_declaration_specifier] = STATE(2403), - [sym_method_declaration] = STATE(2403), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2403), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5210), - [anon_sym_ATend] = ACTIONS(5212), - [sym_optional] = ACTIONS(5214), - [sym_required] = ACTIONS(5214), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2320] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5216), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2321] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5218), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2322] = { - [sym_preproc_def] = STATE(2536), - [sym_preproc_function_def] = STATE(2536), - [sym_declaration] = STATE(2536), - [sym_type_definition] = STATE(2536), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2536), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2536), - [sym__interface_declaration_specifier] = STATE(2536), - [sym_method_declaration] = STATE(2536), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2536), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5220), - [anon_sym_ATend] = ACTIONS(5222), - [sym_optional] = ACTIONS(5224), - [sym_required] = ACTIONS(5224), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2323] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5226), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2324] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5228), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2325] = { - [sym_preproc_def] = STATE(2258), - [sym_preproc_function_def] = STATE(2258), - [sym_declaration] = STATE(2258), - [sym_type_definition] = STATE(2258), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2258), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2258), - [sym__interface_declaration_specifier] = STATE(2258), - [sym_method_declaration] = STATE(2258), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2258), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5230), - [anon_sym_ATend] = ACTIONS(5232), - [sym_optional] = ACTIONS(5234), - [sym_required] = ACTIONS(5234), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2326] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5236), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2327] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5238), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2328] = { - [sym_preproc_def] = STATE(2266), - [sym_preproc_function_def] = STATE(2266), - [sym_declaration] = STATE(2266), - [sym_type_definition] = STATE(2266), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2266), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2266), - [sym__interface_declaration_specifier] = STATE(2266), - [sym_method_declaration] = STATE(2266), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2266), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5240), - [anon_sym_ATend] = ACTIONS(5242), - [sym_optional] = ACTIONS(5244), - [sym_required] = ACTIONS(5244), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2329] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5246), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2330] = { - [sym_preproc_def] = STATE(2271), - [sym_preproc_function_def] = STATE(2271), - [sym_declaration] = STATE(2271), - [sym_type_definition] = STATE(2271), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2271), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2271), - [sym__interface_declaration_specifier] = STATE(2271), - [sym_method_declaration] = STATE(2271), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2271), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5248), - [anon_sym_ATend] = ACTIONS(5250), - [sym_optional] = ACTIONS(5252), - [sym_required] = ACTIONS(5252), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2331] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5254), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2332] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5256), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2333] = { - [sym_preproc_def] = STATE(2472), - [sym_preproc_function_def] = STATE(2472), - [sym_declaration] = STATE(2472), - [sym_type_definition] = STATE(2472), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2472), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2472), - [sym__interface_declaration_specifier] = STATE(2472), - [sym_method_declaration] = STATE(2472), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2472), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5258), - [anon_sym_ATend] = ACTIONS(5260), - [sym_optional] = ACTIONS(5262), - [sym_required] = ACTIONS(5262), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2334] = { - [sym_preproc_def] = STATE(2274), - [sym_preproc_function_def] = STATE(2274), - [sym_declaration] = STATE(2274), - [sym_type_definition] = STATE(2274), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2274), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2274), - [sym__interface_declaration_specifier] = STATE(2274), - [sym_method_declaration] = STATE(2274), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2274), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5264), - [anon_sym_ATend] = ACTIONS(5266), - [sym_optional] = ACTIONS(5268), - [sym_required] = ACTIONS(5268), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2335] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(2612), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2336] = { - [sym_preproc_def] = STATE(2278), - [sym_preproc_function_def] = STATE(2278), - [sym_declaration] = STATE(2278), - [sym_type_definition] = STATE(2278), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2278), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2278), - [sym__interface_declaration_specifier] = STATE(2278), - [sym_method_declaration] = STATE(2278), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2278), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2610), - [anon_sym_ATend] = ACTIONS(2612), - [sym_optional] = ACTIONS(2614), - [sym_required] = ACTIONS(2614), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2337] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4132), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2338] = { - [sym_preproc_def] = STATE(2282), - [sym_preproc_function_def] = STATE(2282), - [sym_declaration] = STATE(2282), - [sym_type_definition] = STATE(2282), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2282), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2282), - [sym__interface_declaration_specifier] = STATE(2282), - [sym_method_declaration] = STATE(2282), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2282), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4130), - [anon_sym_ATend] = ACTIONS(4132), - [sym_optional] = ACTIONS(4134), - [sym_required] = ACTIONS(4134), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2339] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5270), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2340] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5272), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2341] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5274), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2342] = { - [sym_preproc_def] = STATE(2286), - [sym_preproc_function_def] = STATE(2286), - [sym_declaration] = STATE(2286), - [sym_type_definition] = STATE(2286), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2286), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2286), - [sym__interface_declaration_specifier] = STATE(2286), - [sym_method_declaration] = STATE(2286), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2286), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5276), - [anon_sym_ATend] = ACTIONS(5278), - [sym_optional] = ACTIONS(5280), - [sym_required] = ACTIONS(5280), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2343] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5282), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2344] = { - [sym_preproc_def] = STATE(2289), - [sym_preproc_function_def] = STATE(2289), - [sym_declaration] = STATE(2289), - [sym_type_definition] = STATE(2289), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2289), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2289), - [sym__interface_declaration_specifier] = STATE(2289), - [sym_method_declaration] = STATE(2289), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2289), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5284), - [anon_sym_ATend] = ACTIONS(5286), - [sym_optional] = ACTIONS(5288), - [sym_required] = ACTIONS(5288), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2345] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5290), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2346] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5292), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2347] = { - [sym_preproc_def] = STATE(2446), - [sym_preproc_function_def] = STATE(2446), - [sym_declaration] = STATE(2446), - [sym_type_definition] = STATE(2446), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2446), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2446), - [sym__interface_declaration_specifier] = STATE(2446), - [sym_method_declaration] = STATE(2446), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2446), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5294), - [anon_sym_ATend] = ACTIONS(5296), - [sym_optional] = ACTIONS(5298), - [sym_required] = ACTIONS(5298), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2348] = { - [sym_preproc_def] = STATE(2294), - [sym_preproc_function_def] = STATE(2294), - [sym_declaration] = STATE(2294), - [sym_type_definition] = STATE(2294), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2294), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2294), - [sym__interface_declaration_specifier] = STATE(2294), - [sym_method_declaration] = STATE(2294), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2294), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5300), - [anon_sym_ATend] = ACTIONS(5302), - [sym_optional] = ACTIONS(5304), - [sym_required] = ACTIONS(5304), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2349] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5306), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2350] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5308), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2351] = { - [sym_preproc_def] = STATE(2299), - [sym_preproc_function_def] = STATE(2299), - [sym_declaration] = STATE(2299), - [sym_type_definition] = STATE(2299), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2299), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2299), - [sym__interface_declaration_specifier] = STATE(2299), - [sym_method_declaration] = STATE(2299), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2299), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5310), - [anon_sym_ATend] = ACTIONS(5312), - [sym_optional] = ACTIONS(5314), - [sym_required] = ACTIONS(5314), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2352] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(2582), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2353] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5316), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2354] = { - [sym_preproc_def] = STATE(2302), - [sym_preproc_function_def] = STATE(2302), - [sym_declaration] = STATE(2302), - [sym_type_definition] = STATE(2302), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2302), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2302), - [sym__interface_declaration_specifier] = STATE(2302), - [sym_method_declaration] = STATE(2302), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2302), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5318), - [anon_sym_ATend] = ACTIONS(5320), - [sym_optional] = ACTIONS(5322), - [sym_required] = ACTIONS(5322), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2355] = { - [sym_preproc_def] = STATE(2406), - [sym_preproc_function_def] = STATE(2406), - [sym_declaration] = STATE(2406), - [sym_type_definition] = STATE(2406), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2406), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2406), - [sym__interface_declaration_specifier] = STATE(2406), - [sym_method_declaration] = STATE(2406), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2406), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2580), - [anon_sym_ATend] = ACTIONS(2582), - [sym_optional] = ACTIONS(2584), - [sym_required] = ACTIONS(2584), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2356] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5324), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2357] = { - [sym_preproc_def] = STATE(2535), - [sym_preproc_function_def] = STATE(2535), - [sym_declaration] = STATE(2535), - [sym_type_definition] = STATE(2535), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2535), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2535), - [sym__interface_declaration_specifier] = STATE(2535), - [sym_method_declaration] = STATE(2535), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2535), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5326), - [anon_sym_ATend] = ACTIONS(5328), - [sym_optional] = ACTIONS(5330), - [sym_required] = ACTIONS(5330), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2358] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5332), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2359] = { - [sym_preproc_def] = STATE(2413), - [sym_preproc_function_def] = STATE(2413), - [sym_declaration] = STATE(2413), - [sym_type_definition] = STATE(2413), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2413), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2413), - [sym__interface_declaration_specifier] = STATE(2413), - [sym_method_declaration] = STATE(2413), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2413), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5334), - [anon_sym_ATend] = ACTIONS(5336), - [sym_optional] = ACTIONS(5338), - [sym_required] = ACTIONS(5338), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2360] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5340), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2361] = { - [sym_preproc_def] = STATE(2418), - [sym_preproc_function_def] = STATE(2418), - [sym_declaration] = STATE(2418), - [sym_type_definition] = STATE(2418), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2418), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2418), - [sym__interface_declaration_specifier] = STATE(2418), - [sym_method_declaration] = STATE(2418), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2418), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5342), - [anon_sym_ATend] = ACTIONS(5344), - [sym_optional] = ACTIONS(5346), - [sym_required] = ACTIONS(5346), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2362] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5348), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2363] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5350), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2364] = { - [sym_preproc_def] = STATE(2429), - [sym_preproc_function_def] = STATE(2429), - [sym_declaration] = STATE(2429), - [sym_type_definition] = STATE(2429), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2429), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2429), - [sym__interface_declaration_specifier] = STATE(2429), - [sym_method_declaration] = STATE(2429), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2429), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5352), - [anon_sym_ATend] = ACTIONS(5354), - [sym_optional] = ACTIONS(5356), - [sym_required] = ACTIONS(5356), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2365] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5358), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2366] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5360), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2367] = { - [sym_preproc_def] = STATE(2444), - [sym_preproc_function_def] = STATE(2444), - [sym_declaration] = STATE(2444), - [sym_type_definition] = STATE(2444), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2444), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2444), - [sym__interface_declaration_specifier] = STATE(2444), - [sym_method_declaration] = STATE(2444), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2444), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5362), - [anon_sym_ATend] = ACTIONS(5364), - [sym_optional] = ACTIONS(5366), - [sym_required] = ACTIONS(5366), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2368] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5368), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2369] = { - [sym_preproc_def] = STATE(2534), - [sym_preproc_function_def] = STATE(2534), - [sym_declaration] = STATE(2534), - [sym_type_definition] = STATE(2534), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2534), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2534), - [sym__interface_declaration_specifier] = STATE(2534), - [sym_method_declaration] = STATE(2534), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2534), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5370), - [anon_sym_ATend] = ACTIONS(5372), - [sym_optional] = ACTIONS(5374), - [sym_required] = ACTIONS(5374), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2370] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5376), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2371] = { - [sym_preproc_def] = STATE(2321), - [sym_preproc_function_def] = STATE(2321), - [sym_declaration] = STATE(2321), - [sym_type_definition] = STATE(2321), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2321), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2321), - [sym__interface_declaration_specifier] = STATE(2321), - [sym_method_declaration] = STATE(2321), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2321), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5378), - [anon_sym_ATend] = ACTIONS(5380), - [sym_optional] = ACTIONS(5382), - [sym_required] = ACTIONS(5382), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2372] = { - [sym_preproc_def] = STATE(2449), - [sym_preproc_function_def] = STATE(2449), - [sym_declaration] = STATE(2449), - [sym_type_definition] = STATE(2449), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2449), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2449), - [sym__interface_declaration_specifier] = STATE(2449), - [sym_method_declaration] = STATE(2449), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2449), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5384), - [anon_sym_ATend] = ACTIONS(5386), - [sym_optional] = ACTIONS(5388), - [sym_required] = ACTIONS(5388), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2373] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5390), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2374] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5392), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2375] = { - [sym_preproc_def] = STATE(2456), - [sym_preproc_function_def] = STATE(2456), - [sym_declaration] = STATE(2456), - [sym_type_definition] = STATE(2456), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2456), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2456), - [sym__interface_declaration_specifier] = STATE(2456), - [sym_method_declaration] = STATE(2456), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2456), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4028), - [anon_sym_ATend] = ACTIONS(4030), - [sym_optional] = ACTIONS(4032), - [sym_required] = ACTIONS(4032), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2376] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4030), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2377] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5372), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2378] = { - [sym_preproc_def] = STATE(2460), - [sym_preproc_function_def] = STATE(2460), - [sym_declaration] = STATE(2460), - [sym_type_definition] = STATE(2460), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2460), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2460), - [sym__interface_declaration_specifier] = STATE(2460), - [sym_method_declaration] = STATE(2460), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2460), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2604), - [anon_sym_ATend] = ACTIONS(2606), - [sym_optional] = ACTIONS(2608), - [sym_required] = ACTIONS(2608), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2379] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(2606), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2380] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5394), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2381] = { - [sym_preproc_def] = STATE(2326), - [sym_preproc_function_def] = STATE(2326), - [sym_declaration] = STATE(2326), - [sym_type_definition] = STATE(2326), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2326), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2326), - [sym__interface_declaration_specifier] = STATE(2326), - [sym_method_declaration] = STATE(2326), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2326), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5396), - [anon_sym_ATend] = ACTIONS(5398), - [sym_optional] = ACTIONS(5400), - [sym_required] = ACTIONS(5400), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2382] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(2504), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2383] = { - [sym_preproc_def] = STATE(2335), - [sym_preproc_function_def] = STATE(2335), - [sym_declaration] = STATE(2335), - [sym_type_definition] = STATE(2335), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2335), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2335), - [sym__interface_declaration_specifier] = STATE(2335), - [sym_method_declaration] = STATE(2335), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2335), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2502), - [anon_sym_ATend] = ACTIONS(2504), - [sym_optional] = ACTIONS(2506), - [sym_required] = ACTIONS(2506), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2384] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5402), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2385] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5404), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2386] = { - [sym_preproc_def] = STATE(2339), - [sym_preproc_function_def] = STATE(2339), - [sym_declaration] = STATE(2339), - [sym_type_definition] = STATE(2339), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2339), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2339), - [sym__interface_declaration_specifier] = STATE(2339), - [sym_method_declaration] = STATE(2339), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2339), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5406), - [anon_sym_ATend] = ACTIONS(5408), - [sym_optional] = ACTIONS(5410), - [sym_required] = ACTIONS(5410), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2387] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5412), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2388] = { - [sym_preproc_def] = STATE(2345), - [sym_preproc_function_def] = STATE(2345), - [sym_declaration] = STATE(2345), - [sym_type_definition] = STATE(2345), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2345), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2345), - [sym__interface_declaration_specifier] = STATE(2345), - [sym_method_declaration] = STATE(2345), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2345), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5414), - [anon_sym_ATend] = ACTIONS(5416), - [sym_optional] = ACTIONS(5418), - [sym_required] = ACTIONS(5418), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2389] = { - [sym_preproc_def] = STATE(2464), - [sym_preproc_function_def] = STATE(2464), - [sym_declaration] = STATE(2464), - [sym_type_definition] = STATE(2464), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2464), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2464), - [sym__interface_declaration_specifier] = STATE(2464), - [sym_method_declaration] = STATE(2464), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2464), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5420), - [anon_sym_ATend] = ACTIONS(5422), - [sym_optional] = ACTIONS(5424), - [sym_required] = ACTIONS(5424), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2390] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5426), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2391] = { - [sym_preproc_def] = STATE(2349), - [sym_preproc_function_def] = STATE(2349), - [sym_declaration] = STATE(2349), - [sym_type_definition] = STATE(2349), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2349), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2349), - [sym__interface_declaration_specifier] = STATE(2349), - [sym_method_declaration] = STATE(2349), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2349), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5428), - [anon_sym_ATend] = ACTIONS(5430), - [sym_optional] = ACTIONS(5432), - [sym_required] = ACTIONS(5432), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2392] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5434), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2393] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5436), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2394] = { - [sym_preproc_def] = STATE(2468), - [sym_preproc_function_def] = STATE(2468), - [sym_declaration] = STATE(2468), - [sym_type_definition] = STATE(2468), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2468), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2468), - [sym__interface_declaration_specifier] = STATE(2468), - [sym_method_declaration] = STATE(2468), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2468), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5438), - [anon_sym_ATend] = ACTIONS(5440), - [sym_optional] = ACTIONS(5442), - [sym_required] = ACTIONS(5442), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2395] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5444), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2396] = { - [sym_preproc_def] = STATE(2479), - [sym_preproc_function_def] = STATE(2479), - [sym_declaration] = STATE(2479), - [sym_type_definition] = STATE(2479), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2479), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2479), - [sym__interface_declaration_specifier] = STATE(2479), - [sym_method_declaration] = STATE(2479), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2479), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5446), - [anon_sym_ATend] = ACTIONS(5448), - [sym_optional] = ACTIONS(5450), - [sym_required] = ACTIONS(5450), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2397] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5452), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2398] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5454), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2399] = { - [sym_preproc_def] = STATE(2532), - [sym_preproc_function_def] = STATE(2532), - [sym_declaration] = STATE(2532), - [sym_type_definition] = STATE(2532), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2532), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2532), - [sym__interface_declaration_specifier] = STATE(2532), - [sym_method_declaration] = STATE(2532), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2532), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3752), - [anon_sym_ATend] = ACTIONS(3754), - [sym_optional] = ACTIONS(3756), - [sym_required] = ACTIONS(3756), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2400] = { - [sym_preproc_def] = STATE(2488), - [sym_preproc_function_def] = STATE(2488), - [sym_declaration] = STATE(2488), - [sym_type_definition] = STATE(2488), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2488), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2488), - [sym__interface_declaration_specifier] = STATE(2488), - [sym_method_declaration] = STATE(2488), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2488), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5456), - [anon_sym_ATend] = ACTIONS(5458), - [sym_optional] = ACTIONS(5460), - [sym_required] = ACTIONS(5460), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2401] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5462), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2402] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(3754), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2403] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5464), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2404] = { - [sym_preproc_def] = STATE(2499), - [sym_preproc_function_def] = STATE(2499), - [sym_declaration] = STATE(2499), - [sym_type_definition] = STATE(2499), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2499), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2499), - [sym__interface_declaration_specifier] = STATE(2499), - [sym_method_declaration] = STATE(2499), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2499), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5466), - [anon_sym_ATend] = ACTIONS(5468), - [sym_optional] = ACTIONS(5470), - [sym_required] = ACTIONS(5470), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2405] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5472), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2406] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(3104), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2407] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(2540), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2408] = { - [sym_preproc_def] = STATE(2382), - [sym_preproc_function_def] = STATE(2382), - [sym_declaration] = STATE(2382), - [sym_type_definition] = STATE(2382), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2382), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2382), - [sym__interface_declaration_specifier] = STATE(2382), - [sym_method_declaration] = STATE(2382), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2382), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2538), - [anon_sym_ATend] = ACTIONS(2540), - [sym_optional] = ACTIONS(2542), - [sym_required] = ACTIONS(2542), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2409] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5474), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2410] = { - [sym_preproc_def] = STATE(2384), - [sym_preproc_function_def] = STATE(2384), - [sym_declaration] = STATE(2384), - [sym_type_definition] = STATE(2384), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2384), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2384), - [sym__interface_declaration_specifier] = STATE(2384), - [sym_method_declaration] = STATE(2384), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2384), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5476), - [anon_sym_ATend] = ACTIONS(5478), - [sym_optional] = ACTIONS(5480), - [sym_required] = ACTIONS(5480), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2411] = { - [sym_preproc_def] = STATE(2500), - [sym_preproc_function_def] = STATE(2500), - [sym_declaration] = STATE(2500), - [sym_type_definition] = STATE(2500), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2500), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2500), - [sym__interface_declaration_specifier] = STATE(2500), - [sym_method_declaration] = STATE(2500), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2500), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5482), - [anon_sym_ATend] = ACTIONS(5484), - [sym_optional] = ACTIONS(5486), - [sym_required] = ACTIONS(5486), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2412] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5488), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2413] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5490), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2414] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5492), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2415] = { - [sym_preproc_def] = STATE(2393), - [sym_preproc_function_def] = STATE(2393), - [sym_declaration] = STATE(2393), - [sym_type_definition] = STATE(2393), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2393), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2393), - [sym__interface_declaration_specifier] = STATE(2393), - [sym_method_declaration] = STATE(2393), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2393), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5494), - [anon_sym_ATend] = ACTIONS(5496), - [sym_optional] = ACTIONS(5498), - [sym_required] = ACTIONS(5498), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2416] = { - [sym_preproc_def] = STATE(2503), - [sym_preproc_function_def] = STATE(2503), - [sym_declaration] = STATE(2503), - [sym_type_definition] = STATE(2503), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2503), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2503), - [sym__interface_declaration_specifier] = STATE(2503), - [sym_method_declaration] = STATE(2503), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2503), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5500), - [anon_sym_ATend] = ACTIONS(5502), - [sym_optional] = ACTIONS(5504), - [sym_required] = ACTIONS(5504), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2417] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5506), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2418] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5508), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2419] = { - [sym_preproc_def] = STATE(2505), - [sym_preproc_function_def] = STATE(2505), - [sym_declaration] = STATE(2505), - [sym_type_definition] = STATE(2505), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2505), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2505), - [sym__interface_declaration_specifier] = STATE(2505), - [sym_method_declaration] = STATE(2505), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2505), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5510), - [anon_sym_ATend] = ACTIONS(5512), - [sym_optional] = ACTIONS(5514), - [sym_required] = ACTIONS(5514), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2420] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5516), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2421] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5518), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2422] = { - [sym_preproc_def] = STATE(2510), - [sym_preproc_function_def] = STATE(2510), - [sym_declaration] = STATE(2510), - [sym_type_definition] = STATE(2510), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2510), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2510), - [sym__interface_declaration_specifier] = STATE(2510), - [sym_method_declaration] = STATE(2510), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2510), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5520), - [anon_sym_ATend] = ACTIONS(5522), - [sym_optional] = ACTIONS(5524), - [sym_required] = ACTIONS(5524), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2423] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5526), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2424] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5528), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2425] = { - [sym_preproc_def] = STATE(2063), - [sym_preproc_function_def] = STATE(2063), - [sym_declaration] = STATE(2063), - [sym_type_definition] = STATE(2063), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2063), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2063), - [sym__interface_declaration_specifier] = STATE(2063), - [sym_method_declaration] = STATE(2063), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2063), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5530), - [anon_sym_ATend] = ACTIONS(5532), - [sym_optional] = ACTIONS(5534), - [sym_required] = ACTIONS(5534), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2426] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(3958), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2427] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5536), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2428] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5538), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2429] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5540), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2430] = { - [sym_preproc_def] = STATE(2517), - [sym_preproc_function_def] = STATE(2517), - [sym_declaration] = STATE(2517), - [sym_type_definition] = STATE(2517), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2517), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2517), - [sym__interface_declaration_specifier] = STATE(2517), - [sym_method_declaration] = STATE(2517), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2517), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5542), - [anon_sym_ATend] = ACTIONS(5544), - [sym_optional] = ACTIONS(5546), - [sym_required] = ACTIONS(5546), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2431] = { - [sym_preproc_def] = STATE(2070), - [sym_preproc_function_def] = STATE(2070), - [sym_declaration] = STATE(2070), - [sym_type_definition] = STATE(2070), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2070), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2070), - [sym__interface_declaration_specifier] = STATE(2070), - [sym_method_declaration] = STATE(2070), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2070), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5548), - [anon_sym_ATend] = ACTIONS(5550), - [sym_optional] = ACTIONS(5552), - [sym_required] = ACTIONS(5552), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2432] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5554), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2433] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5556), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2434] = { - [sym_preproc_def] = STATE(2076), - [sym_preproc_function_def] = STATE(2076), - [sym_declaration] = STATE(2076), - [sym_type_definition] = STATE(2076), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2076), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2076), - [sym__interface_declaration_specifier] = STATE(2076), - [sym_method_declaration] = STATE(2076), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2076), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5558), - [anon_sym_ATend] = ACTIONS(5560), - [sym_optional] = ACTIONS(5562), - [sym_required] = ACTIONS(5562), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2435] = { - [sym_preproc_def] = STATE(2521), - [sym_preproc_function_def] = STATE(2521), - [sym_declaration] = STATE(2521), - [sym_type_definition] = STATE(2521), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2521), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2521), - [sym__interface_declaration_specifier] = STATE(2521), - [sym_method_declaration] = STATE(2521), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2521), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5564), - [anon_sym_ATend] = ACTIONS(5566), - [sym_optional] = ACTIONS(5568), - [sym_required] = ACTIONS(5568), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2436] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5570), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2437] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5572), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2438] = { - [sym_preproc_def] = STATE(2083), - [sym_preproc_function_def] = STATE(2083), - [sym_declaration] = STATE(2083), - [sym_type_definition] = STATE(2083), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2083), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2083), - [sym__interface_declaration_specifier] = STATE(2083), - [sym_method_declaration] = STATE(2083), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2083), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5574), - [anon_sym_ATend] = ACTIONS(5576), - [sym_optional] = ACTIONS(5578), - [sym_required] = ACTIONS(5578), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2439] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5580), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2440] = { - [sym_preproc_def] = STATE(2530), - [sym_preproc_function_def] = STATE(2530), - [sym_declaration] = STATE(2530), - [sym_type_definition] = STATE(2530), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2530), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2530), - [sym__interface_declaration_specifier] = STATE(2530), - [sym_method_declaration] = STATE(2530), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2530), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5582), - [anon_sym_ATend] = ACTIONS(5584), - [sym_optional] = ACTIONS(5586), - [sym_required] = ACTIONS(5586), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2441] = { - [sym_preproc_def] = STATE(2086), - [sym_preproc_function_def] = STATE(2086), - [sym_declaration] = STATE(2086), - [sym_type_definition] = STATE(2086), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2086), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2086), - [sym__interface_declaration_specifier] = STATE(2086), - [sym_method_declaration] = STATE(2086), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2086), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5588), - [anon_sym_ATend] = ACTIONS(5590), - [sym_optional] = ACTIONS(5592), - [sym_required] = ACTIONS(5592), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2442] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5594), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2443] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5596), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2444] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5598), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2445] = { - [sym_preproc_def] = STATE(2528), - [sym_preproc_function_def] = STATE(2528), - [sym_declaration] = STATE(2528), - [sym_type_definition] = STATE(2528), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2528), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2528), - [sym__interface_declaration_specifier] = STATE(2528), - [sym_method_declaration] = STATE(2528), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2528), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5600), - [anon_sym_ATend] = ACTIONS(5602), - [sym_optional] = ACTIONS(5604), - [sym_required] = ACTIONS(5604), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2446] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5606), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2447] = { - [sym_preproc_def] = STATE(2377), - [sym_preproc_function_def] = STATE(2377), - [sym_declaration] = STATE(2377), - [sym_type_definition] = STATE(2377), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2377), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2377), - [sym__interface_declaration_specifier] = STATE(2377), - [sym_method_declaration] = STATE(2377), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3956), - [anon_sym_ATend] = ACTIONS(3958), - [sym_optional] = ACTIONS(3960), - [sym_required] = ACTIONS(3960), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2448] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5608), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2449] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5610), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2450] = { - [sym_preproc_def] = STATE(2545), - [sym_preproc_function_def] = STATE(2545), - [sym_declaration] = STATE(2545), - [sym_type_definition] = STATE(2545), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2545), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2545), - [sym__interface_declaration_specifier] = STATE(2545), - [sym_method_declaration] = STATE(2545), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2545), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5612), - [anon_sym_ATend] = ACTIONS(5614), - [sym_optional] = ACTIONS(5616), - [sym_required] = ACTIONS(5616), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2451] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5618), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2452] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5620), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2453] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5622), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2454] = { - [sym_preproc_def] = STATE(2548), - [sym_preproc_function_def] = STATE(2548), - [sym_declaration] = STATE(2548), - [sym_type_definition] = STATE(2548), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2548), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2548), - [sym__interface_declaration_specifier] = STATE(2548), - [sym_method_declaration] = STATE(2548), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2548), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5624), - [anon_sym_ATend] = ACTIONS(5626), - [sym_optional] = ACTIONS(5628), - [sym_required] = ACTIONS(5628), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2455] = { - [sym_preproc_def] = STATE(2090), - [sym_preproc_function_def] = STATE(2090), - [sym_declaration] = STATE(2090), - [sym_type_definition] = STATE(2090), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2090), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2090), - [sym__interface_declaration_specifier] = STATE(2090), - [sym_method_declaration] = STATE(2090), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2090), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5630), - [anon_sym_ATend] = ACTIONS(5632), - [sym_optional] = ACTIONS(5634), - [sym_required] = ACTIONS(5634), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2456] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5626), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2457] = { - [sym_preproc_def] = STATE(2523), - [sym_preproc_function_def] = STATE(2523), - [sym_declaration] = STATE(2523), - [sym_type_definition] = STATE(2523), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2523), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2523), - [sym__interface_declaration_specifier] = STATE(2523), - [sym_method_declaration] = STATE(2523), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2523), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5636), - [anon_sym_ATend] = ACTIONS(5638), - [sym_optional] = ACTIONS(5640), - [sym_required] = ACTIONS(5640), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2458] = { - [sym_preproc_def] = STATE(2553), - [sym_preproc_function_def] = STATE(2553), - [sym_declaration] = STATE(2553), - [sym_type_definition] = STATE(2553), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2553), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2553), - [sym__interface_declaration_specifier] = STATE(2553), - [sym_method_declaration] = STATE(2553), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2553), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3980), - [anon_sym_ATend] = ACTIONS(3982), - [sym_optional] = ACTIONS(3984), - [sym_required] = ACTIONS(3984), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2459] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(3982), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2460] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(3178), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2461] = { - [sym_preproc_def] = STATE(2554), - [sym_preproc_function_def] = STATE(2554), - [sym_declaration] = STATE(2554), - [sym_type_definition] = STATE(2554), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2554), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2554), - [sym__interface_declaration_specifier] = STATE(2554), - [sym_method_declaration] = STATE(2554), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2554), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3176), - [anon_sym_ATend] = ACTIONS(3178), - [sym_optional] = ACTIONS(3180), - [sym_required] = ACTIONS(3180), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2462] = { - [sym_preproc_def] = STATE(2555), - [sym_preproc_function_def] = STATE(2555), - [sym_declaration] = STATE(2555), - [sym_type_definition] = STATE(2555), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2555), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2555), - [sym__interface_declaration_specifier] = STATE(2555), - [sym_method_declaration] = STATE(2555), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2555), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5642), - [anon_sym_ATend] = ACTIONS(5644), - [sym_optional] = ACTIONS(5646), - [sym_required] = ACTIONS(5646), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2463] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5648), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2464] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5650), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2465] = { - [sym_preproc_def] = STATE(2563), - [sym_preproc_function_def] = STATE(2563), - [sym_declaration] = STATE(2563), - [sym_type_definition] = STATE(2563), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2563), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2563), - [sym__interface_declaration_specifier] = STATE(2563), - [sym_method_declaration] = STATE(2563), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2563), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5652), - [anon_sym_ATend] = ACTIONS(5654), - [sym_optional] = ACTIONS(5656), - [sym_required] = ACTIONS(5656), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2466] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5658), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2467] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5660), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2468] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5662), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2469] = { - [sym_preproc_def] = STATE(2577), - [sym_preproc_function_def] = STATE(2577), - [sym_declaration] = STATE(2577), - [sym_type_definition] = STATE(2577), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2577), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2577), - [sym__interface_declaration_specifier] = STATE(2577), - [sym_method_declaration] = STATE(2577), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2577), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5664), - [anon_sym_ATend] = ACTIONS(5666), - [sym_optional] = ACTIONS(5668), - [sym_required] = ACTIONS(5668), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2470] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5670), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2471] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5672), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2472] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5674), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2473] = { - [sym_preproc_def] = STATE(2096), - [sym_preproc_function_def] = STATE(2096), - [sym_declaration] = STATE(2096), - [sym_type_definition] = STATE(2096), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2096), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2096), - [sym__interface_declaration_specifier] = STATE(2096), - [sym_method_declaration] = STATE(2096), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2096), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5676), - [anon_sym_ATend] = ACTIONS(5678), - [sym_optional] = ACTIONS(5680), - [sym_required] = ACTIONS(5680), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2474] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5682), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2475] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5684), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2476] = { - [sym_preproc_def] = STATE(2580), - [sym_preproc_function_def] = STATE(2580), - [sym_declaration] = STATE(2580), - [sym_type_definition] = STATE(2580), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2580), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2580), - [sym__interface_declaration_specifier] = STATE(2580), - [sym_method_declaration] = STATE(2580), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2580), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5686), - [anon_sym_ATend] = ACTIONS(5688), - [sym_optional] = ACTIONS(5690), - [sym_required] = ACTIONS(5690), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2477] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5692), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2478] = { - [sym_preproc_def] = STATE(2497), - [sym_preproc_function_def] = STATE(2497), - [sym_declaration] = STATE(2497), - [sym_type_definition] = STATE(2497), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2497), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2497), - [sym__interface_declaration_specifier] = STATE(2497), - [sym_method_declaration] = STATE(2497), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2497), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5694), - [anon_sym_ATend] = ACTIONS(5696), - [sym_optional] = ACTIONS(5698), - [sym_required] = ACTIONS(5698), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2479] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5700), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2480] = { - [sym_preproc_def] = STATE(2586), - [sym_preproc_function_def] = STATE(2586), - [sym_declaration] = STATE(2586), - [sym_type_definition] = STATE(2586), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2586), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2586), - [sym__interface_declaration_specifier] = STATE(2586), - [sym_method_declaration] = STATE(2586), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2586), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5702), - [anon_sym_ATend] = ACTIONS(5704), - [sym_optional] = ACTIONS(5706), - [sym_required] = ACTIONS(5706), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2481] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5708), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2482] = { - [sym_preproc_def] = STATE(2590), - [sym_preproc_function_def] = STATE(2590), - [sym_declaration] = STATE(2590), - [sym_type_definition] = STATE(2590), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2590), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2590), - [sym__interface_declaration_specifier] = STATE(2590), - [sym_method_declaration] = STATE(2590), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2590), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5710), - [anon_sym_ATend] = ACTIONS(5712), - [sym_optional] = ACTIONS(5714), - [sym_required] = ACTIONS(5714), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2483] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5716), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2484] = { - [sym_preproc_def] = STATE(2097), - [sym_preproc_function_def] = STATE(2097), - [sym_declaration] = STATE(2097), - [sym_type_definition] = STATE(2097), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2097), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2097), - [sym__interface_declaration_specifier] = STATE(2097), - [sym_method_declaration] = STATE(2097), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2097), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3710), - [anon_sym_ATend] = ACTIONS(3712), - [sym_optional] = ACTIONS(3714), - [sym_required] = ACTIONS(3714), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2485] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5718), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2486] = { - [sym_preproc_def] = STATE(2596), - [sym_preproc_function_def] = STATE(2596), - [sym_declaration] = STATE(2596), - [sym_type_definition] = STATE(2596), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2596), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2596), - [sym__interface_declaration_specifier] = STATE(2596), - [sym_method_declaration] = STATE(2596), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2596), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5720), - [anon_sym_ATend] = ACTIONS(5722), - [sym_optional] = ACTIONS(5724), - [sym_required] = ACTIONS(5724), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2487] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5726), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2488] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5728), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2489] = { - [sym_preproc_def] = STATE(2531), - [sym_preproc_function_def] = STATE(2531), - [sym_declaration] = STATE(2531), - [sym_type_definition] = STATE(2531), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2531), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2531), - [sym__interface_declaration_specifier] = STATE(2531), - [sym_method_declaration] = STATE(2531), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2531), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3102), - [anon_sym_ATend] = ACTIONS(3104), - [sym_optional] = ACTIONS(3106), - [sym_required] = ACTIONS(3106), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2490] = { - [sym_preproc_def] = STATE(2494), - [sym_preproc_function_def] = STATE(2494), - [sym_declaration] = STATE(2494), - [sym_type_definition] = STATE(2494), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2494), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2494), - [sym__interface_declaration_specifier] = STATE(2494), - [sym_method_declaration] = STATE(2494), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2494), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5730), - [anon_sym_ATend] = ACTIONS(5732), - [sym_optional] = ACTIONS(5734), - [sym_required] = ACTIONS(5734), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2491] = { - [sym_preproc_def] = STATE(2603), - [sym_preproc_function_def] = STATE(2603), - [sym_declaration] = STATE(2603), - [sym_type_definition] = STATE(2603), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2603), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2603), - [sym__interface_declaration_specifier] = STATE(2603), - [sym_method_declaration] = STATE(2603), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2603), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5736), - [anon_sym_ATend] = ACTIONS(5738), - [sym_optional] = ACTIONS(5740), - [sym_required] = ACTIONS(5740), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2492] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5742), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2493] = { - [sym_preproc_def] = STATE(2054), - [sym_preproc_function_def] = STATE(2054), - [sym_declaration] = STATE(2054), - [sym_type_definition] = STATE(2054), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2054), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2054), - [sym__interface_declaration_specifier] = STATE(2054), - [sym_method_declaration] = STATE(2054), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2054), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5744), - [anon_sym_ATend] = ACTIONS(5746), - [sym_optional] = ACTIONS(5748), - [sym_required] = ACTIONS(5748), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2494] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5750), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2495] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5752), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2496] = { - [sym_preproc_def] = STATE(2100), - [sym_preproc_function_def] = STATE(2100), - [sym_declaration] = STATE(2100), - [sym_type_definition] = STATE(2100), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2100), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2100), - [sym__interface_declaration_specifier] = STATE(2100), - [sym_method_declaration] = STATE(2100), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2100), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5754), - [anon_sym_ATend] = ACTIONS(5756), - [sym_optional] = ACTIONS(5758), - [sym_required] = ACTIONS(5758), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2497] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5760), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2498] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5762), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2499] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5764), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2500] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5766), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2501] = { - [sym_preproc_def] = STATE(2605), - [sym_preproc_function_def] = STATE(2605), - [sym_declaration] = STATE(2605), - [sym_type_definition] = STATE(2605), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2605), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2605), - [sym__interface_declaration_specifier] = STATE(2605), - [sym_method_declaration] = STATE(2605), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2605), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5768), - [anon_sym_ATend] = ACTIONS(5770), - [sym_optional] = ACTIONS(5772), - [sym_required] = ACTIONS(5772), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2502] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5774), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2503] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5776), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2504] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5778), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2505] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5780), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2506] = { - [sym_preproc_def] = STATE(2606), - [sym_preproc_function_def] = STATE(2606), - [sym_declaration] = STATE(2606), - [sym_type_definition] = STATE(2606), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2606), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2606), - [sym__interface_declaration_specifier] = STATE(2606), - [sym_method_declaration] = STATE(2606), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2606), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5782), - [anon_sym_ATend] = ACTIONS(5784), - [sym_optional] = ACTIONS(5786), - [sym_required] = ACTIONS(5786), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2507] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5788), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2508] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5790), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2509] = { - [sym_preproc_def] = STATE(2470), - [sym_preproc_function_def] = STATE(2470), - [sym_declaration] = STATE(2470), - [sym_type_definition] = STATE(2470), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2470), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2470), - [sym__interface_declaration_specifier] = STATE(2470), - [sym_method_declaration] = STATE(2470), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2470), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5792), - [anon_sym_ATend] = ACTIONS(5794), - [sym_optional] = ACTIONS(5796), - [sym_required] = ACTIONS(5796), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2510] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5798), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2511] = { - [sym_preproc_def] = STATE(2610), - [sym_preproc_function_def] = STATE(2610), - [sym_declaration] = STATE(2610), - [sym_type_definition] = STATE(2610), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2610), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2610), - [sym__interface_declaration_specifier] = STATE(2610), - [sym_method_declaration] = STATE(2610), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2610), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5800), - [anon_sym_ATend] = ACTIONS(5802), - [sym_optional] = ACTIONS(5804), - [sym_required] = ACTIONS(5804), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2512] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5806), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2513] = { - [sym_preproc_def] = STATE(2611), - [sym_preproc_function_def] = STATE(2611), - [sym_declaration] = STATE(2611), - [sym_type_definition] = STATE(2611), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2611), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2611), - [sym__interface_declaration_specifier] = STATE(2611), - [sym_method_declaration] = STATE(2611), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2611), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5808), - [anon_sym_ATend] = ACTIONS(5810), - [sym_optional] = ACTIONS(5812), - [sym_required] = ACTIONS(5812), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2514] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5814), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2515] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5816), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2516] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5818), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2517] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5820), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2518] = { - [sym_preproc_def] = STATE(2105), - [sym_preproc_function_def] = STATE(2105), - [sym_declaration] = STATE(2105), - [sym_type_definition] = STATE(2105), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2105), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2105), - [sym__interface_declaration_specifier] = STATE(2105), - [sym_method_declaration] = STATE(2105), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2105), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5822), - [anon_sym_ATend] = ACTIONS(5824), - [sym_optional] = ACTIONS(5826), - [sym_required] = ACTIONS(5826), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2519] = { - [sym_preproc_def] = STATE(2615), - [sym_preproc_function_def] = STATE(2615), - [sym_declaration] = STATE(2615), - [sym_type_definition] = STATE(2615), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2615), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2615), - [sym__interface_declaration_specifier] = STATE(2615), - [sym_method_declaration] = STATE(2615), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2615), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5828), - [anon_sym_ATend] = ACTIONS(5830), - [sym_optional] = ACTIONS(5832), - [sym_required] = ACTIONS(5832), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2520] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5834), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2521] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5836), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2522] = { - [sym_preproc_def] = STATE(2616), - [sym_preproc_function_def] = STATE(2616), - [sym_declaration] = STATE(2616), - [sym_type_definition] = STATE(2616), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2616), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2616), - [sym__interface_declaration_specifier] = STATE(2616), - [sym_method_declaration] = STATE(2616), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2616), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5838), - [anon_sym_ATend] = ACTIONS(5840), - [sym_optional] = ACTIONS(5842), - [sym_required] = ACTIONS(5842), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2523] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5844), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2524] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5846), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2525] = { - [sym_preproc_def] = STATE(2622), - [sym_preproc_function_def] = STATE(2622), - [sym_declaration] = STATE(2622), - [sym_type_definition] = STATE(2622), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2622), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2622), - [sym__interface_declaration_specifier] = STATE(2622), - [sym_method_declaration] = STATE(2622), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2622), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5848), - [anon_sym_ATend] = ACTIONS(5850), - [sym_optional] = ACTIONS(5852), - [sym_required] = ACTIONS(5852), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2526] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5854), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2527] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5856), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2528] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5858), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2529] = { - [sym_preproc_def] = STATE(2107), - [sym_preproc_function_def] = STATE(2107), - [sym_declaration] = STATE(2107), - [sym_type_definition] = STATE(2107), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2107), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2107), - [sym__interface_declaration_specifier] = STATE(2107), - [sym_method_declaration] = STATE(2107), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2107), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5860), - [anon_sym_ATend] = ACTIONS(5862), - [sym_optional] = ACTIONS(5864), - [sym_required] = ACTIONS(5864), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2530] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5866), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2531] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(3712), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2532] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5868), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2533] = { - [sym_preproc_def] = STATE(2108), - [sym_preproc_function_def] = STATE(2108), - [sym_declaration] = STATE(2108), - [sym_type_definition] = STATE(2108), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2108), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2108), - [sym__interface_declaration_specifier] = STATE(2108), - [sym_method_declaration] = STATE(2108), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2108), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5870), - [anon_sym_ATend] = ACTIONS(5868), - [sym_optional] = ACTIONS(5872), - [sym_required] = ACTIONS(5872), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2534] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5874), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2535] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5876), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2536] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5878), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2537] = { - [sym_preproc_def] = STATE(2120), - [sym_preproc_function_def] = STATE(2120), - [sym_declaration] = STATE(2120), - [sym_type_definition] = STATE(2120), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2120), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2120), - [sym__interface_declaration_specifier] = STATE(2120), - [sym_method_declaration] = STATE(2120), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2120), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5880), - [anon_sym_ATend] = ACTIONS(5882), - [sym_optional] = ACTIONS(5884), - [sym_required] = ACTIONS(5884), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2538] = { - [sym_preproc_def] = STATE(2114), - [sym_preproc_function_def] = STATE(2114), - [sym_declaration] = STATE(2114), - [sym_type_definition] = STATE(2114), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2114), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2114), - [sym__interface_declaration_specifier] = STATE(2114), - [sym_method_declaration] = STATE(2114), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2114), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5886), - [anon_sym_ATend] = ACTIONS(5888), - [sym_optional] = ACTIONS(5890), - [sym_required] = ACTIONS(5890), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2539] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5892), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2540] = { - [sym_preproc_def] = STATE(2119), - [sym_preproc_function_def] = STATE(2119), - [sym_declaration] = STATE(2119), - [sym_type_definition] = STATE(2119), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2119), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2119), - [sym__interface_declaration_specifier] = STATE(2119), - [sym_method_declaration] = STATE(2119), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2119), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5894), - [anon_sym_ATend] = ACTIONS(5896), - [sym_optional] = ACTIONS(5898), - [sym_required] = ACTIONS(5898), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2541] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5900), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2542] = { - [sym_preproc_def] = STATE(2655), - [sym_preproc_function_def] = STATE(2655), - [sym_declaration] = STATE(2655), - [sym_type_definition] = STATE(2655), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2655), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2655), - [sym__interface_declaration_specifier] = STATE(2655), - [sym_method_declaration] = STATE(2655), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2655), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5902), - [anon_sym_ATend] = ACTIONS(5904), - [sym_optional] = ACTIONS(5906), - [sym_required] = ACTIONS(5906), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2543] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5908), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2544] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5910), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2545] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5912), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2546] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5914), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2547] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5916), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2548] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5918), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2549] = { - [sym_preproc_def] = STATE(2126), - [sym_preproc_function_def] = STATE(2126), - [sym_declaration] = STATE(2126), - [sym_type_definition] = STATE(2126), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2126), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2126), - [sym__interface_declaration_specifier] = STATE(2126), - [sym_method_declaration] = STATE(2126), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2126), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5920), - [anon_sym_ATend] = ACTIONS(5922), - [sym_optional] = ACTIONS(5924), - [sym_required] = ACTIONS(5924), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2550] = { - [sym_preproc_def] = STATE(2452), - [sym_preproc_function_def] = STATE(2452), - [sym_declaration] = STATE(2452), - [sym_type_definition] = STATE(2452), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2452), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2452), - [sym__interface_declaration_specifier] = STATE(2452), - [sym_method_declaration] = STATE(2452), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2452), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5926), - [anon_sym_ATend] = ACTIONS(5928), - [sym_optional] = ACTIONS(5930), - [sym_required] = ACTIONS(5930), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2551] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5932), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2552] = { - [sym_preproc_def] = STATE(2625), - [sym_preproc_function_def] = STATE(2625), - [sym_declaration] = STATE(2625), - [sym_type_definition] = STATE(2625), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2625), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2625), - [sym__interface_declaration_specifier] = STATE(2625), - [sym_method_declaration] = STATE(2625), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2625), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5934), - [anon_sym_ATend] = ACTIONS(5936), - [sym_optional] = ACTIONS(5938), - [sym_required] = ACTIONS(5938), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2553] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5936), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2554] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(3514), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2555] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5940), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2556] = { - [sym_preproc_def] = STATE(2626), - [sym_preproc_function_def] = STATE(2626), - [sym_declaration] = STATE(2626), - [sym_type_definition] = STATE(2626), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2626), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2626), - [sym__interface_declaration_specifier] = STATE(2626), - [sym_method_declaration] = STATE(2626), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2626), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5942), - [anon_sym_ATend] = ACTIONS(5944), - [sym_optional] = ACTIONS(5946), - [sym_required] = ACTIONS(5946), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2557] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5948), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2558] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5950), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2559] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5952), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2560] = { - [sym_preproc_def] = STATE(2436), - [sym_preproc_function_def] = STATE(2436), - [sym_declaration] = STATE(2436), - [sym_type_definition] = STATE(2436), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2436), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2436), - [sym__interface_declaration_specifier] = STATE(2436), - [sym_method_declaration] = STATE(2436), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2436), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5954), - [anon_sym_ATend] = ACTIONS(5956), - [sym_optional] = ACTIONS(5958), - [sym_required] = ACTIONS(5958), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2561] = { - [sym_preproc_def] = STATE(2676), - [sym_preproc_function_def] = STATE(2676), - [sym_declaration] = STATE(2676), - [sym_type_definition] = STATE(2676), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2676), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2676), - [sym__interface_declaration_specifier] = STATE(2676), - [sym_method_declaration] = STATE(2676), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2676), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5960), - [anon_sym_ATend] = ACTIONS(5962), - [sym_optional] = ACTIONS(5964), - [sym_required] = ACTIONS(5964), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2562] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5966), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2563] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5968), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2564] = { - [sym_preproc_def] = STATE(2627), - [sym_preproc_function_def] = STATE(2627), - [sym_declaration] = STATE(2627), - [sym_type_definition] = STATE(2627), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2627), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2627), - [sym__interface_declaration_specifier] = STATE(2627), - [sym_method_declaration] = STATE(2627), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2627), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5970), - [anon_sym_ATend] = ACTIONS(5972), - [sym_optional] = ACTIONS(5974), - [sym_required] = ACTIONS(5974), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2565] = { - [sym_preproc_def] = STATE(2678), - [sym_preproc_function_def] = STATE(2678), - [sym_declaration] = STATE(2678), - [sym_type_definition] = STATE(2678), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2678), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2678), - [sym__interface_declaration_specifier] = STATE(2678), - [sym_method_declaration] = STATE(2678), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2678), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2562), - [anon_sym_ATend] = ACTIONS(2564), - [sym_optional] = ACTIONS(2566), - [sym_required] = ACTIONS(2566), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2566] = { - [sym_preproc_def] = STATE(2128), - [sym_preproc_function_def] = STATE(2128), - [sym_declaration] = STATE(2128), - [sym_type_definition] = STATE(2128), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2128), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2128), - [sym__interface_declaration_specifier] = STATE(2128), - [sym_method_declaration] = STATE(2128), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2128), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5976), - [anon_sym_ATend] = ACTIONS(5978), - [sym_optional] = ACTIONS(5980), - [sym_required] = ACTIONS(5980), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2567] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5982), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2568] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(2564), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2569] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5984), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2570] = { - [sym_preproc_def] = STATE(2135), - [sym_preproc_function_def] = STATE(2135), - [sym_declaration] = STATE(2135), - [sym_type_definition] = STATE(2135), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2135), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2135), - [sym__interface_declaration_specifier] = STATE(2135), - [sym_method_declaration] = STATE(2135), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2135), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5986), - [anon_sym_ATend] = ACTIONS(5988), - [sym_optional] = ACTIONS(5990), - [sym_required] = ACTIONS(5990), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2571] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5992), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2572] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5994), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2573] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(5996), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2574] = { - [sym_preproc_def] = STATE(2136), - [sym_preproc_function_def] = STATE(2136), - [sym_declaration] = STATE(2136), - [sym_type_definition] = STATE(2136), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2136), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2136), - [sym__interface_declaration_specifier] = STATE(2136), - [sym_method_declaration] = STATE(2136), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2136), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(5998), - [anon_sym_ATend] = ACTIONS(6000), - [sym_optional] = ACTIONS(6002), - [sym_required] = ACTIONS(6002), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2575] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6004), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2576] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6006), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2577] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6008), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2578] = { - [sym_preproc_def] = STATE(2630), - [sym_preproc_function_def] = STATE(2630), - [sym_declaration] = STATE(2630), - [sym_type_definition] = STATE(2630), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2630), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2630), - [sym__interface_declaration_specifier] = STATE(2630), - [sym_method_declaration] = STATE(2630), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2630), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6010), - [anon_sym_ATend] = ACTIONS(6012), - [sym_optional] = ACTIONS(6014), - [sym_required] = ACTIONS(6014), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2579] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6016), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2580] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6018), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2581] = { - [sym_preproc_def] = STATE(2631), - [sym_preproc_function_def] = STATE(2631), - [sym_declaration] = STATE(2631), - [sym_type_definition] = STATE(2631), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2631), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2631), - [sym__interface_declaration_specifier] = STATE(2631), - [sym_method_declaration] = STATE(2631), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2631), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6020), - [anon_sym_ATend] = ACTIONS(6022), - [sym_optional] = ACTIONS(6024), - [sym_required] = ACTIONS(6024), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2582] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6026), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2583] = { - [sym_preproc_def] = STATE(2632), - [sym_preproc_function_def] = STATE(2632), - [sym_declaration] = STATE(2632), - [sym_type_definition] = STATE(2632), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2632), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2632), - [sym__interface_declaration_specifier] = STATE(2632), - [sym_method_declaration] = STATE(2632), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2632), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(3512), - [anon_sym_ATend] = ACTIONS(3514), - [sym_optional] = ACTIONS(3516), - [sym_required] = ACTIONS(3516), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2584] = { - [sym_preproc_def] = STATE(2634), - [sym_preproc_function_def] = STATE(2634), - [sym_declaration] = STATE(2634), - [sym_type_definition] = STATE(2634), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2634), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2634), - [sym__interface_declaration_specifier] = STATE(2634), - [sym_method_declaration] = STATE(2634), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2634), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6028), - [anon_sym_ATend] = ACTIONS(6030), - [sym_optional] = ACTIONS(6032), - [sym_required] = ACTIONS(6032), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2585] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6034), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2586] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6036), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2587] = { - [sym_preproc_def] = STATE(2637), - [sym_preproc_function_def] = STATE(2637), - [sym_declaration] = STATE(2637), - [sym_type_definition] = STATE(2637), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2637), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2637), - [sym__interface_declaration_specifier] = STATE(2637), - [sym_method_declaration] = STATE(2637), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2637), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6038), - [anon_sym_ATend] = ACTIONS(6040), - [sym_optional] = ACTIONS(6042), - [sym_required] = ACTIONS(6042), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2588] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6044), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2589] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6046), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2590] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6048), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2591] = { - [sym_preproc_def] = STATE(2641), - [sym_preproc_function_def] = STATE(2641), - [sym_declaration] = STATE(2641), - [sym_type_definition] = STATE(2641), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2641), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2641), - [sym__interface_declaration_specifier] = STATE(2641), - [sym_method_declaration] = STATE(2641), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2641), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6050), - [anon_sym_ATend] = ACTIONS(6052), - [sym_optional] = ACTIONS(6054), - [sym_required] = ACTIONS(6054), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2592] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6056), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2593] = { - [sym_preproc_def] = STATE(2649), - [sym_preproc_function_def] = STATE(2649), - [sym_declaration] = STATE(2649), - [sym_type_definition] = STATE(2649), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2649), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2649), - [sym__interface_declaration_specifier] = STATE(2649), - [sym_method_declaration] = STATE(2649), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2649), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6058), - [anon_sym_ATend] = ACTIONS(6060), - [sym_optional] = ACTIONS(6062), - [sym_required] = ACTIONS(6062), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2594] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6064), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2595] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6066), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2596] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6068), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2597] = { - [sym_preproc_def] = STATE(2659), - [sym_preproc_function_def] = STATE(2659), - [sym_declaration] = STATE(2659), - [sym_type_definition] = STATE(2659), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2659), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2659), - [sym__interface_declaration_specifier] = STATE(2659), - [sym_method_declaration] = STATE(2659), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2659), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6070), - [anon_sym_ATend] = ACTIONS(6072), - [sym_optional] = ACTIONS(6074), - [sym_required] = ACTIONS(6074), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2598] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6076), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2599] = { - [sym_preproc_def] = STATE(2662), - [sym_preproc_function_def] = STATE(2662), - [sym_declaration] = STATE(2662), - [sym_type_definition] = STATE(2662), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2662), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2662), - [sym__interface_declaration_specifier] = STATE(2662), - [sym_method_declaration] = STATE(2662), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2662), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6078), - [anon_sym_ATend] = ACTIONS(6080), - [sym_optional] = ACTIONS(6082), - [sym_required] = ACTIONS(6082), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2600] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6084), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2601] = { - [sym_preproc_def] = STATE(2671), - [sym_preproc_function_def] = STATE(2671), - [sym_declaration] = STATE(2671), - [sym_type_definition] = STATE(2671), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2671), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2671), - [sym__interface_declaration_specifier] = STATE(2671), - [sym_method_declaration] = STATE(2671), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2671), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6086), - [anon_sym_ATend] = ACTIONS(6088), - [sym_optional] = ACTIONS(6090), - [sym_required] = ACTIONS(6090), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2602] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6092), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2603] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6094), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2604] = { - [sym_preproc_def] = STATE(2311), - [sym_preproc_function_def] = STATE(2311), - [sym_declaration] = STATE(2311), - [sym_type_definition] = STATE(2311), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2311), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2311), - [sym__interface_declaration_specifier] = STATE(2311), - [sym_method_declaration] = STATE(2311), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2311), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6096), - [anon_sym_ATend] = ACTIONS(6098), - [sym_optional] = ACTIONS(6100), - [sym_required] = ACTIONS(6100), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2605] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6102), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2606] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6104), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2607] = { - [sym_preproc_def] = STATE(2682), - [sym_preproc_function_def] = STATE(2682), - [sym_declaration] = STATE(2682), - [sym_type_definition] = STATE(2682), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2682), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2682), - [sym__interface_declaration_specifier] = STATE(2682), - [sym_method_declaration] = STATE(2682), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2682), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6106), - [anon_sym_ATend] = ACTIONS(6108), - [sym_optional] = ACTIONS(6110), - [sym_required] = ACTIONS(6110), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2608] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6112), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2609] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6114), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2610] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6116), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2611] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6118), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2612] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6120), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2613] = { - [sym_preproc_def] = STATE(2683), - [sym_preproc_function_def] = STATE(2683), - [sym_declaration] = STATE(2683), - [sym_type_definition] = STATE(2683), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2683), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2683), - [sym__interface_declaration_specifier] = STATE(2683), - [sym_method_declaration] = STATE(2683), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2683), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6122), - [anon_sym_ATend] = ACTIONS(6124), - [sym_optional] = ACTIONS(6126), - [sym_required] = ACTIONS(6126), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2614] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6128), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2615] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6130), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2616] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6132), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2617] = { - [sym_preproc_def] = STATE(2228), - [sym_preproc_function_def] = STATE(2228), - [sym_declaration] = STATE(2228), - [sym_type_definition] = STATE(2228), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2228), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2228), - [sym__interface_declaration_specifier] = STATE(2228), - [sym_method_declaration] = STATE(2228), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2228), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6134), - [anon_sym_ATend] = ACTIONS(6136), - [sym_optional] = ACTIONS(6138), - [sym_required] = ACTIONS(6138), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2618] = { - [sym_preproc_def] = STATE(2684), - [sym_preproc_function_def] = STATE(2684), - [sym_declaration] = STATE(2684), - [sym_type_definition] = STATE(2684), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2684), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2684), - [sym__interface_declaration_specifier] = STATE(2684), - [sym_method_declaration] = STATE(2684), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2684), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6140), - [anon_sym_ATend] = ACTIONS(6142), - [sym_optional] = ACTIONS(6144), - [sym_required] = ACTIONS(6144), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2619] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6146), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2620] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6148), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2621] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6150), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2622] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6152), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2623] = { - [sym_preproc_def] = STATE(2687), - [sym_preproc_function_def] = STATE(2687), - [sym_declaration] = STATE(2687), - [sym_type_definition] = STATE(2687), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2687), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2687), - [sym__interface_declaration_specifier] = STATE(2687), - [sym_method_declaration] = STATE(2687), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2687), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6154), - [anon_sym_ATend] = ACTIONS(6156), - [sym_optional] = ACTIONS(6158), - [sym_required] = ACTIONS(6158), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2624] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6160), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2625] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6162), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2626] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6164), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2627] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6166), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2628] = { - [sym_preproc_def] = STATE(2688), - [sym_preproc_function_def] = STATE(2688), - [sym_declaration] = STATE(2688), - [sym_type_definition] = STATE(2688), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2688), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2688), - [sym__interface_declaration_specifier] = STATE(2688), - [sym_method_declaration] = STATE(2688), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2688), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6168), - [anon_sym_ATend] = ACTIONS(6170), - [sym_optional] = ACTIONS(6172), - [sym_required] = ACTIONS(6172), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2629] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6174), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2630] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6176), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2631] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6178), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2632] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(4216), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2633] = { - [sym_preproc_def] = STATE(2059), - [sym_preproc_function_def] = STATE(2059), - [sym_declaration] = STATE(2059), - [sym_type_definition] = STATE(2059), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2059), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2059), - [sym__interface_declaration_specifier] = STATE(2059), - [sym_method_declaration] = STATE(2059), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2059), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6180), - [anon_sym_ATend] = ACTIONS(6182), - [sym_optional] = ACTIONS(6184), - [sym_required] = ACTIONS(6184), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2634] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6186), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2635] = { - [sym_preproc_def] = STATE(2689), - [sym_preproc_function_def] = STATE(2689), - [sym_declaration] = STATE(2689), - [sym_type_definition] = STATE(2689), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2689), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2689), - [sym__interface_declaration_specifier] = STATE(2689), - [sym_method_declaration] = STATE(2689), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2689), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6188), - [anon_sym_ATend] = ACTIONS(6190), - [sym_optional] = ACTIONS(6192), - [sym_required] = ACTIONS(6192), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2636] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6194), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2637] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6196), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2638] = { - [sym_preproc_def] = STATE(2690), - [sym_preproc_function_def] = STATE(2690), - [sym_declaration] = STATE(2690), - [sym_type_definition] = STATE(2690), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2690), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2690), - [sym__interface_declaration_specifier] = STATE(2690), - [sym_method_declaration] = STATE(2690), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2690), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6198), - [anon_sym_ATend] = ACTIONS(6200), - [sym_optional] = ACTIONS(6202), - [sym_required] = ACTIONS(6202), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2639] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6204), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2640] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6206), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2641] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6208), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2642] = { - [sym_preproc_def] = STATE(2423), - [sym_preproc_function_def] = STATE(2423), - [sym_declaration] = STATE(2423), - [sym_type_definition] = STATE(2423), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2423), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2423), - [sym__interface_declaration_specifier] = STATE(2423), - [sym_method_declaration] = STATE(2423), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2423), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6210), - [anon_sym_ATend] = ACTIONS(6212), - [sym_optional] = ACTIONS(6214), - [sym_required] = ACTIONS(6214), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2643] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6216), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2644] = { - [sym_preproc_def] = STATE(2028), - [sym_preproc_function_def] = STATE(2028), - [sym_declaration] = STATE(2028), - [sym_type_definition] = STATE(2028), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2028), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2028), - [sym__interface_declaration_specifier] = STATE(2028), - [sym_method_declaration] = STATE(2028), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2028), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6218), - [anon_sym_ATend] = ACTIONS(6220), - [sym_optional] = ACTIONS(6222), - [sym_required] = ACTIONS(6222), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2645] = { - [sym_preproc_def] = STATE(2696), - [sym_preproc_function_def] = STATE(2696), - [sym_declaration] = STATE(2696), - [sym_type_definition] = STATE(2696), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2696), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2696), - [sym__interface_declaration_specifier] = STATE(2696), - [sym_method_declaration] = STATE(2696), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2696), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6224), - [anon_sym_ATend] = ACTIONS(6226), - [sym_optional] = ACTIONS(6228), - [sym_required] = ACTIONS(6228), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2646] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6230), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2647] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6232), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2648] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6234), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2649] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6236), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2650] = { - [sym_preproc_def] = STATE(2697), - [sym_preproc_function_def] = STATE(2697), - [sym_declaration] = STATE(2697), - [sym_type_definition] = STATE(2697), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2697), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2697), - [sym__interface_declaration_specifier] = STATE(2697), - [sym_method_declaration] = STATE(2697), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2697), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6238), - [anon_sym_ATend] = ACTIONS(6240), - [sym_optional] = ACTIONS(6242), - [sym_required] = ACTIONS(6242), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2651] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6244), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2652] = { - [sym_preproc_def] = STATE(2698), - [sym_preproc_function_def] = STATE(2698), - [sym_declaration] = STATE(2698), - [sym_type_definition] = STATE(2698), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2698), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2698), - [sym__interface_declaration_specifier] = STATE(2698), - [sym_method_declaration] = STATE(2698), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2698), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4214), - [anon_sym_ATend] = ACTIONS(4216), - [sym_optional] = ACTIONS(4218), - [sym_required] = ACTIONS(4218), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2653] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6246), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2654] = { - [sym_preproc_def] = STATE(2702), - [sym_preproc_function_def] = STATE(2702), - [sym_declaration] = STATE(2702), - [sym_type_definition] = STATE(2702), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2702), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2702), - [sym__interface_declaration_specifier] = STATE(2702), - [sym_method_declaration] = STATE(2702), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2702), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6248), - [anon_sym_ATend] = ACTIONS(6250), - [sym_optional] = ACTIONS(6252), - [sym_required] = ACTIONS(6252), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2655] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6254), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2656] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(6256), - [aux_sym_preproc_def_token1] = ACTIONS(6259), - [anon_sym_DASH] = ACTIONS(6262), - [anon_sym_PLUS] = ACTIONS(6265), - [anon_sym_typedef] = ACTIONS(6268), - [anon_sym_extern] = ACTIONS(6271), - [anon_sym___attribute] = ACTIONS(6274), - [anon_sym___attribute__] = ACTIONS(6274), - [anon_sym___declspec] = ACTIONS(6277), - [anon_sym_static] = ACTIONS(6271), - [anon_sym_auto] = ACTIONS(6271), - [anon_sym_register] = ACTIONS(6271), - [anon_sym_inline] = ACTIONS(6271), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6271), - [anon_sym_const] = ACTIONS(6280), - [anon_sym_volatile] = ACTIONS(6280), - [anon_sym_restrict] = ACTIONS(6280), - [anon_sym__Atomic] = ACTIONS(6283), - [anon_sym_in] = ACTIONS(6280), - [anon_sym_out] = ACTIONS(6280), - [anon_sym_inout] = ACTIONS(6280), - [anon_sym_bycopy] = ACTIONS(6280), - [anon_sym_byref] = ACTIONS(6280), - [anon_sym_oneway] = ACTIONS(6280), - [anon_sym__Nullable] = ACTIONS(6280), - [anon_sym__Nonnull] = ACTIONS(6280), - [anon_sym__Nullable_result] = ACTIONS(6280), - [anon_sym__Null_unspecified] = ACTIONS(6280), - [anon_sym___autoreleasing] = ACTIONS(6280), - [anon_sym___nullable] = ACTIONS(6280), - [anon_sym___nonnull] = ACTIONS(6280), - [anon_sym___strong] = ACTIONS(6280), - [anon_sym___weak] = ACTIONS(6280), - [anon_sym___bridge] = ACTIONS(6280), - [anon_sym___bridge_transfer] = ACTIONS(6280), - [anon_sym___bridge_retained] = ACTIONS(6280), - [anon_sym___unsafe_unretained] = ACTIONS(6280), - [anon_sym___block] = ACTIONS(6280), - [anon_sym___kindof] = ACTIONS(6280), - [anon_sym___unused] = ACTIONS(6280), - [anon_sym__Complex] = ACTIONS(6280), - [anon_sym___complex] = ACTIONS(6280), - [anon_sym_IBOutlet] = ACTIONS(6280), - [anon_sym_IBInspectable] = ACTIONS(6280), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6280), - [anon_sym_signed] = ACTIONS(6286), - [anon_sym_unsigned] = ACTIONS(6286), - [anon_sym_long] = ACTIONS(6286), - [anon_sym_short] = ACTIONS(6286), - [sym_primitive_type] = ACTIONS(6289), - [anon_sym_enum] = ACTIONS(6292), - [anon_sym_NS_ENUM] = ACTIONS(6295), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(6295), - [anon_sym_NS_OPTIONS] = ACTIONS(6295), - [anon_sym_struct] = ACTIONS(6298), - [anon_sym_union] = ACTIONS(6301), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6304), - [anon_sym_ATend] = ACTIONS(6307), - [sym_optional] = ACTIONS(6309), - [sym_required] = ACTIONS(6309), - [anon_sym_ATproperty] = ACTIONS(6312), - [sym_method_attribute_specifier] = ACTIONS(6315), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6318), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6318), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6321), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6321), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6321), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6321), - [anon_sym_NS_AVAILABLE] = ACTIONS(6324), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6324), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6324), - [anon_sym_API_AVAILABLE] = ACTIONS(6324), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6324), - [anon_sym_API_DEPRECATED] = ACTIONS(6324), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6324), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6324), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6324), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6324), - [anon_sym___deprecated_msg] = ACTIONS(6324), - [anon_sym___deprecated_enum_msg] = ACTIONS(6324), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6324), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6324), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6324), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6324), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6327), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6330), - [anon_sym_typeof] = ACTIONS(6333), - [anon_sym___typeof] = ACTIONS(6333), - [anon_sym___typeof__] = ACTIONS(6333), - [sym_id] = ACTIONS(6336), - [sym_instancetype] = ACTIONS(6289), - [sym_Class] = ACTIONS(6336), - [sym_SEL] = ACTIONS(6289), - [sym_IMP] = ACTIONS(6289), - [sym_BOOL] = ACTIONS(6289), - [sym_auto] = ACTIONS(6289), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2657] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6339), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2658] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6341), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2659] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6343), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2660] = { - [sym_preproc_def] = STATE(2706), - [sym_preproc_function_def] = STATE(2706), - [sym_declaration] = STATE(2706), - [sym_type_definition] = STATE(2706), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2706), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2706), - [sym__interface_declaration_specifier] = STATE(2706), - [sym_method_declaration] = STATE(2706), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2706), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6345), - [anon_sym_ATend] = ACTIONS(6347), - [sym_optional] = ACTIONS(6349), - [sym_required] = ACTIONS(6349), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2661] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6351), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2662] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6353), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2663] = { - [sym_preproc_def] = STATE(2712), - [sym_preproc_function_def] = STATE(2712), - [sym_declaration] = STATE(2712), - [sym_type_definition] = STATE(2712), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2712), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2712), - [sym__interface_declaration_specifier] = STATE(2712), - [sym_method_declaration] = STATE(2712), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2712), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6355), - [anon_sym_ATend] = ACTIONS(6357), - [sym_optional] = ACTIONS(6359), - [sym_required] = ACTIONS(6359), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2664] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6361), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2665] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6363), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2666] = { - [sym_preproc_def] = STATE(2709), - [sym_preproc_function_def] = STATE(2709), - [sym_declaration] = STATE(2709), - [sym_type_definition] = STATE(2709), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2709), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2709), - [sym__interface_declaration_specifier] = STATE(2709), - [sym_method_declaration] = STATE(2709), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2709), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6365), - [anon_sym_ATend] = ACTIONS(6367), - [sym_optional] = ACTIONS(6369), - [sym_required] = ACTIONS(6369), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2667] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6371), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2668] = { - [sym_preproc_def] = STATE(2646), - [sym_preproc_function_def] = STATE(2646), - [sym_declaration] = STATE(2646), - [sym_type_definition] = STATE(2646), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2646), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2646), - [sym__interface_declaration_specifier] = STATE(2646), - [sym_method_declaration] = STATE(2646), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2646), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6373), - [anon_sym_ATend] = ACTIONS(6375), - [sym_optional] = ACTIONS(6377), - [sym_required] = ACTIONS(6377), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2669] = { - [sym_preproc_def] = STATE(2619), - [sym_preproc_function_def] = STATE(2619), - [sym_declaration] = STATE(2619), - [sym_type_definition] = STATE(2619), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2619), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2619), - [sym__interface_declaration_specifier] = STATE(2619), - [sym_method_declaration] = STATE(2619), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2619), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6379), - [anon_sym_ATend] = ACTIONS(6381), - [sym_optional] = ACTIONS(6383), - [sym_required] = ACTIONS(6383), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2670] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6385), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2671] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6387), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2672] = { - [sym_preproc_def] = STATE(2608), - [sym_preproc_function_def] = STATE(2608), - [sym_declaration] = STATE(2608), - [sym_type_definition] = STATE(2608), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2608), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2608), - [sym__interface_declaration_specifier] = STATE(2608), - [sym_method_declaration] = STATE(2608), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2608), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6389), - [anon_sym_ATend] = ACTIONS(6391), - [sym_optional] = ACTIONS(6393), - [sym_required] = ACTIONS(6393), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2673] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6395), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2674] = { - [sym_preproc_def] = STATE(2475), - [sym_preproc_function_def] = STATE(2475), - [sym_declaration] = STATE(2475), - [sym_type_definition] = STATE(2475), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2475), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2475), - [sym__interface_declaration_specifier] = STATE(2475), - [sym_method_declaration] = STATE(2475), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2475), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6397), - [anon_sym_ATend] = ACTIONS(6399), - [sym_optional] = ACTIONS(6401), - [sym_required] = ACTIONS(6401), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2675] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6403), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2676] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6405), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2677] = { - [sym_preproc_def] = STATE(2352), - [sym_preproc_function_def] = STATE(2352), - [sym_declaration] = STATE(2352), - [sym_type_definition] = STATE(2352), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2352), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2352), - [sym__interface_declaration_specifier] = STATE(2352), - [sym_method_declaration] = STATE(2352), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2352), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2484), - [anon_sym_ATend] = ACTIONS(2486), - [sym_optional] = ACTIONS(2488), - [sym_required] = ACTIONS(2488), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2678] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(2486), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2679] = { - [sym_preproc_def] = STATE(2312), - [sym_preproc_function_def] = STATE(2312), - [sym_declaration] = STATE(2312), - [sym_type_definition] = STATE(2312), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2312), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2312), - [sym__interface_declaration_specifier] = STATE(2312), - [sym_method_declaration] = STATE(2312), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2312), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6407), - [anon_sym_ATend] = ACTIONS(6409), - [sym_optional] = ACTIONS(6411), - [sym_required] = ACTIONS(6411), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2680] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6413), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2681] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6415), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2682] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6417), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2683] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6419), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2684] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6421), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2685] = { - [sym_preproc_def] = STATE(2700), - [sym_preproc_function_def] = STATE(2700), - [sym_declaration] = STATE(2700), - [sym_type_definition] = STATE(2700), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2700), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2700), - [sym__interface_declaration_specifier] = STATE(2700), - [sym_method_declaration] = STATE(2700), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2700), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6423), - [anon_sym_ATend] = ACTIONS(6425), - [sym_optional] = ACTIONS(6427), - [sym_required] = ACTIONS(6427), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2686] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6429), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2687] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6431), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2688] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6433), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2689] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6435), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2690] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6437), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2691] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6439), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2692] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6441), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2693] = { - [sym_preproc_def] = STATE(2699), - [sym_preproc_function_def] = STATE(2699), - [sym_declaration] = STATE(2699), - [sym_type_definition] = STATE(2699), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2699), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2699), - [sym__interface_declaration_specifier] = STATE(2699), - [sym_method_declaration] = STATE(2699), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2699), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6443), - [anon_sym_ATend] = ACTIONS(6445), - [sym_optional] = ACTIONS(6447), - [sym_required] = ACTIONS(6447), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2694] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6449), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2695] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6451), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2696] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6453), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2697] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6455), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2698] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6457), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2699] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6459), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2700] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6461), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2701] = { - [sym_preproc_def] = STATE(2647), - [sym_preproc_function_def] = STATE(2647), - [sym_declaration] = STATE(2647), - [sym_type_definition] = STATE(2647), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2647), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2647), - [sym__interface_declaration_specifier] = STATE(2647), - [sym_method_declaration] = STATE(2647), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2647), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6463), - [anon_sym_ATend] = ACTIONS(6457), - [sym_optional] = ACTIONS(6465), - [sym_required] = ACTIONS(6465), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2702] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6467), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2703] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6469), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2704] = { - [sym_preproc_def] = STATE(2692), - [sym_preproc_function_def] = STATE(2692), - [sym_declaration] = STATE(2692), - [sym_type_definition] = STATE(2692), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2692), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2692), - [sym__interface_declaration_specifier] = STATE(2692), - [sym_method_declaration] = STATE(2692), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2692), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6471), - [anon_sym_ATend] = ACTIONS(6473), - [sym_optional] = ACTIONS(6475), - [sym_required] = ACTIONS(6475), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2705] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6477), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2706] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6479), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2707] = { - [sym_preproc_def] = STATE(2653), - [sym_preproc_function_def] = STATE(2653), - [sym_declaration] = STATE(2653), - [sym_type_definition] = STATE(2653), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2653), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2653), - [sym__interface_declaration_specifier] = STATE(2653), - [sym_method_declaration] = STATE(2653), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2653), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6481), - [anon_sym_ATend] = ACTIONS(6483), - [sym_optional] = ACTIONS(6485), - [sym_required] = ACTIONS(6485), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2708] = { - [sym_preproc_def] = STATE(2691), - [sym_preproc_function_def] = STATE(2691), - [sym_declaration] = STATE(2691), - [sym_type_definition] = STATE(2691), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2691), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2691), - [sym__interface_declaration_specifier] = STATE(2691), - [sym_method_declaration] = STATE(2691), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2691), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6487), - [anon_sym_ATend] = ACTIONS(6489), - [sym_optional] = ACTIONS(6491), - [sym_required] = ACTIONS(6491), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2709] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6493), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2710] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6495), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2711] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6497), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2712] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6499), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2713] = { - [sym_preproc_def] = STATE(2657), - [sym_preproc_function_def] = STATE(2657), - [sym_declaration] = STATE(2657), - [sym_type_definition] = STATE(2657), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2657), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2657), - [sym__interface_declaration_specifier] = STATE(2657), - [sym_method_declaration] = STATE(2657), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2657), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6501), - [anon_sym_ATend] = ACTIONS(6503), - [sym_optional] = ACTIONS(6505), - [sym_required] = ACTIONS(6505), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2714] = { - [sym_preproc_def] = STATE(2006), - [sym_preproc_function_def] = STATE(2006), - [sym_declaration] = STATE(2006), - [sym_type_definition] = STATE(2006), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2006), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2006), - [sym__interface_declaration_specifier] = STATE(2006), - [sym_method_declaration] = STATE(2006), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2006), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6507), - [anon_sym_ATend] = ACTIONS(6509), - [sym_optional] = ACTIONS(6511), - [sym_required] = ACTIONS(6511), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2715] = { - [sym_preproc_def] = STATE(2656), - [sym_preproc_function_def] = STATE(2656), - [sym_declaration] = STATE(2656), - [sym_type_definition] = STATE(2656), - [sym__declaration_specifiers] = STATE(4700), - [sym_attribute_specifier] = STATE(3361), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3418), - [sym_sized_type_specifier] = STATE(3418), - [sym_enum_specifier] = STATE(3418), - [sym_struct_specifier] = STATE(3418), - [sym_union_specifier] = STATE(3418), - [sym__empty_declaration] = STATE(2656), - [sym_macro_type_specifier] = STATE(3418), - [aux_sym__interface_declaration] = STATE(2656), - [sym__interface_declaration_specifier] = STATE(2656), - [sym_method_declaration] = STATE(2656), - [sym__class_member_scope] = STATE(4720), - [sym_class_scope] = STATE(4720), - [sym_instance_scope] = STATE(4720), - [sym_property_declaration] = STATE(2656), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2947), - [sym_typeof_specifier] = STATE(3418), - [sym_atomic_specifier] = STATE(3418), - [sym_generic_type_specifier] = STATE(3418), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2242), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(4232), - [anon_sym_ATend] = ACTIONS(6513), - [sym_optional] = ACTIONS(4236), - [sym_required] = ACTIONS(4236), - [anon_sym_ATproperty] = ACTIONS(2324), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(2314), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(2314), - [sym_IMP] = ACTIONS(2314), - [sym_BOOL] = ACTIONS(2314), - [sym_auto] = ACTIONS(2314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2716] = { - [sym__declaration_specifiers] = STATE(4627), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_based_modifier] = STATE(5835), - [sym__declarator] = STATE(4856), - [sym__abstract_declarator] = STATE(4819), - [sym_parenthesized_declarator] = STATE(3843), - [sym_abstract_parenthesized_declarator] = STATE(4266), - [sym_pointer_declarator] = STATE(3843), - [sym_abstract_pointer_declarator] = STATE(4266), - [sym_function_declarator] = STATE(3843), - [sym_abstract_function_declarator] = STATE(4266), - [sym_array_declarator] = STATE(3843), - [sym_abstract_array_declarator] = STATE(4266), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3371), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_parameter_list] = STATE(4263), - [sym_parameter_declaration] = STATE(4878), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [sym_block_abstract_declarator] = STATE(4266), - [sym_block_declarator] = STATE(3843), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(6515), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6517), - [anon_sym_RPAREN] = ACTIONS(6519), - [anon_sym_LPAREN2] = ACTIONS(6521), - [anon_sym_STAR] = ACTIONS(6523), - [anon_sym_CARET] = ACTIONS(6525), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_LBRACK] = ACTIONS(6529), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_NOESCAPE] = ACTIONS(6531), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2717] = { - [sym__declaration_specifiers] = STATE(4627), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_based_modifier] = STATE(5835), - [sym__declarator] = STATE(4826), - [sym__abstract_declarator] = STATE(4819), - [sym_parenthesized_declarator] = STATE(3843), - [sym_abstract_parenthesized_declarator] = STATE(4266), - [sym_pointer_declarator] = STATE(3843), - [sym_abstract_pointer_declarator] = STATE(4266), - [sym_function_declarator] = STATE(3843), - [sym_abstract_function_declarator] = STATE(4266), - [sym_array_declarator] = STATE(3843), - [sym_abstract_array_declarator] = STATE(4266), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3368), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_parameter_list] = STATE(4263), - [sym_parameter_declaration] = STATE(4968), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [sym_block_abstract_declarator] = STATE(4266), - [sym_block_declarator] = STATE(3843), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(6515), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6533), - [anon_sym_RPAREN] = ACTIONS(6535), - [anon_sym_LPAREN2] = ACTIONS(6521), - [anon_sym_STAR] = ACTIONS(6523), - [anon_sym_CARET] = ACTIONS(6537), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_LBRACK] = ACTIONS(6529), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_NOESCAPE] = ACTIONS(1159), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2718] = { - [sym__declaration_specifiers] = STATE(4627), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_based_modifier] = STATE(5835), - [sym__declarator] = STATE(4826), - [sym__abstract_declarator] = STATE(4819), - [sym_parenthesized_declarator] = STATE(3843), - [sym_abstract_parenthesized_declarator] = STATE(4266), - [sym_pointer_declarator] = STATE(3843), - [sym_abstract_pointer_declarator] = STATE(4266), - [sym_function_declarator] = STATE(3843), - [sym_abstract_function_declarator] = STATE(4266), - [sym_array_declarator] = STATE(3843), - [sym_abstract_array_declarator] = STATE(4266), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3371), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_parameter_list] = STATE(4263), - [sym_parameter_declaration] = STATE(4878), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [sym_block_abstract_declarator] = STATE(4266), - [sym_block_declarator] = STATE(3843), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(6515), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6517), - [anon_sym_RPAREN] = ACTIONS(6519), - [anon_sym_LPAREN2] = ACTIONS(6521), - [anon_sym_STAR] = ACTIONS(6523), - [anon_sym_CARET] = ACTIONS(6539), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_LBRACK] = ACTIONS(6529), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_NOESCAPE] = ACTIONS(6531), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2719] = { - [sym_preproc_def] = STATE(2723), - [sym_preproc_function_def] = STATE(2723), - [sym_preproc_call] = STATE(2723), - [sym_preproc_if_in_field_declaration_list] = STATE(2723), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2723), - [sym_preproc_else_in_field_declaration_list] = STATE(5791), - [sym_preproc_elif_in_field_declaration_list] = STATE(5791), - [sym__declaration_specifiers] = STATE(4692), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2723), - [sym_field_declaration] = STATE(2723), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2723), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6541), - [aux_sym_preproc_if_token1] = ACTIONS(6543), - [aux_sym_preproc_if_token2] = ACTIONS(6545), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6547), - [aux_sym_preproc_else_token1] = ACTIONS(6549), - [aux_sym_preproc_elif_token1] = ACTIONS(6551), - [sym_preproc_directive] = ACTIONS(6553), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2720] = { - [sym_preproc_def] = STATE(2726), - [sym_preproc_function_def] = STATE(2726), - [sym_preproc_call] = STATE(2726), - [sym_preproc_if_in_field_declaration_list] = STATE(2726), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2726), - [sym_preproc_else_in_field_declaration_list] = STATE(5658), - [sym_preproc_elif_in_field_declaration_list] = STATE(5658), - [sym__declaration_specifiers] = STATE(4692), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2726), - [sym_field_declaration] = STATE(2726), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2726), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6541), - [aux_sym_preproc_if_token1] = ACTIONS(6543), - [aux_sym_preproc_if_token2] = ACTIONS(6559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6547), - [aux_sym_preproc_else_token1] = ACTIONS(6549), - [aux_sym_preproc_elif_token1] = ACTIONS(6551), - [sym_preproc_directive] = ACTIONS(6553), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2721] = { - [sym_preproc_def] = STATE(2725), - [sym_preproc_function_def] = STATE(2725), - [sym_preproc_call] = STATE(2725), - [sym_preproc_if_in_field_declaration_list] = STATE(2725), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2725), - [sym_preproc_else_in_field_declaration_list] = STATE(5353), - [sym_preproc_elif_in_field_declaration_list] = STATE(5353), - [sym__declaration_specifiers] = STATE(4692), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2725), - [sym_field_declaration] = STATE(2725), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2725), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6541), - [aux_sym_preproc_if_token1] = ACTIONS(6543), - [aux_sym_preproc_if_token2] = ACTIONS(6561), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6547), - [aux_sym_preproc_else_token1] = ACTIONS(6549), - [aux_sym_preproc_elif_token1] = ACTIONS(6551), - [sym_preproc_directive] = ACTIONS(6553), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2722] = { - [sym_preproc_def] = STATE(2733), - [sym_preproc_function_def] = STATE(2733), - [sym_preproc_call] = STATE(2733), - [sym_preproc_if_in_field_declaration_list] = STATE(2733), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2733), - [sym_preproc_else_in_field_declaration_list] = STATE(5681), - [sym_preproc_elif_in_field_declaration_list] = STATE(5681), - [sym__declaration_specifiers] = STATE(4692), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2733), - [sym_field_declaration] = STATE(2733), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2733), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6541), - [aux_sym_preproc_if_token1] = ACTIONS(6543), - [aux_sym_preproc_if_token2] = ACTIONS(6563), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6547), - [aux_sym_preproc_else_token1] = ACTIONS(6549), - [aux_sym_preproc_elif_token1] = ACTIONS(6551), - [sym_preproc_directive] = ACTIONS(6553), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2723] = { - [sym_preproc_def] = STATE(2733), - [sym_preproc_function_def] = STATE(2733), - [sym_preproc_call] = STATE(2733), - [sym_preproc_if_in_field_declaration_list] = STATE(2733), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2733), - [sym_preproc_else_in_field_declaration_list] = STATE(5881), - [sym_preproc_elif_in_field_declaration_list] = STATE(5881), - [sym__declaration_specifiers] = STATE(4692), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2733), - [sym_field_declaration] = STATE(2733), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2733), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6541), - [aux_sym_preproc_if_token1] = ACTIONS(6543), - [aux_sym_preproc_if_token2] = ACTIONS(6565), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6547), - [aux_sym_preproc_else_token1] = ACTIONS(6549), - [aux_sym_preproc_elif_token1] = ACTIONS(6551), - [sym_preproc_directive] = ACTIONS(6553), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2724] = { - [sym_preproc_def] = STATE(2731), - [sym_preproc_function_def] = STATE(2731), - [sym_preproc_call] = STATE(2731), - [sym_preproc_if_in_field_declaration_list] = STATE(2731), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2731), - [sym_preproc_else_in_field_declaration_list] = STATE(5598), - [sym_preproc_elif_in_field_declaration_list] = STATE(5598), - [sym__declaration_specifiers] = STATE(4692), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2731), - [sym_field_declaration] = STATE(2731), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2731), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6541), - [aux_sym_preproc_if_token1] = ACTIONS(6543), - [aux_sym_preproc_if_token2] = ACTIONS(6567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6547), - [aux_sym_preproc_else_token1] = ACTIONS(6549), - [aux_sym_preproc_elif_token1] = ACTIONS(6551), - [sym_preproc_directive] = ACTIONS(6553), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2725] = { - [sym_preproc_def] = STATE(2733), - [sym_preproc_function_def] = STATE(2733), - [sym_preproc_call] = STATE(2733), - [sym_preproc_if_in_field_declaration_list] = STATE(2733), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2733), - [sym_preproc_else_in_field_declaration_list] = STATE(5557), - [sym_preproc_elif_in_field_declaration_list] = STATE(5557), - [sym__declaration_specifiers] = STATE(4692), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2733), - [sym_field_declaration] = STATE(2733), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2733), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6541), - [aux_sym_preproc_if_token1] = ACTIONS(6543), - [aux_sym_preproc_if_token2] = ACTIONS(6569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6547), - [aux_sym_preproc_else_token1] = ACTIONS(6549), - [aux_sym_preproc_elif_token1] = ACTIONS(6551), - [sym_preproc_directive] = ACTIONS(6553), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2726] = { - [sym_preproc_def] = STATE(2733), - [sym_preproc_function_def] = STATE(2733), - [sym_preproc_call] = STATE(2733), - [sym_preproc_if_in_field_declaration_list] = STATE(2733), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2733), - [sym_preproc_else_in_field_declaration_list] = STATE(5696), - [sym_preproc_elif_in_field_declaration_list] = STATE(5696), - [sym__declaration_specifiers] = STATE(4692), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2733), - [sym_field_declaration] = STATE(2733), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2733), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6541), - [aux_sym_preproc_if_token1] = ACTIONS(6543), - [aux_sym_preproc_if_token2] = ACTIONS(6571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6547), - [aux_sym_preproc_else_token1] = ACTIONS(6549), - [aux_sym_preproc_elif_token1] = ACTIONS(6551), - [sym_preproc_directive] = ACTIONS(6553), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2727] = { - [sym_preproc_def] = STATE(2722), - [sym_preproc_function_def] = STATE(2722), - [sym_preproc_call] = STATE(2722), - [sym_preproc_if_in_field_declaration_list] = STATE(2722), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2722), - [sym_preproc_else_in_field_declaration_list] = STATE(5555), - [sym_preproc_elif_in_field_declaration_list] = STATE(5555), - [sym__declaration_specifiers] = STATE(4692), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2722), - [sym_field_declaration] = STATE(2722), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2722), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6541), - [aux_sym_preproc_if_token1] = ACTIONS(6543), - [aux_sym_preproc_if_token2] = ACTIONS(6573), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6547), - [aux_sym_preproc_else_token1] = ACTIONS(6549), - [aux_sym_preproc_elif_token1] = ACTIONS(6551), - [sym_preproc_directive] = ACTIONS(6553), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2728] = { - [sym_preproc_def] = STATE(2733), - [sym_preproc_function_def] = STATE(2733), - [sym_preproc_call] = STATE(2733), - [sym_preproc_if_in_field_declaration_list] = STATE(2733), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2733), - [sym_preproc_else_in_field_declaration_list] = STATE(5340), - [sym_preproc_elif_in_field_declaration_list] = STATE(5340), - [sym__declaration_specifiers] = STATE(4692), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2733), - [sym_field_declaration] = STATE(2733), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2733), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6541), - [aux_sym_preproc_if_token1] = ACTIONS(6543), - [aux_sym_preproc_if_token2] = ACTIONS(6575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6547), - [aux_sym_preproc_else_token1] = ACTIONS(6549), - [aux_sym_preproc_elif_token1] = ACTIONS(6551), - [sym_preproc_directive] = ACTIONS(6553), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2729] = { - [sym_preproc_def] = STATE(2733), - [sym_preproc_function_def] = STATE(2733), - [sym_preproc_call] = STATE(2733), - [sym_preproc_if_in_field_declaration_list] = STATE(2733), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2733), - [sym_preproc_else_in_field_declaration_list] = STATE(5659), - [sym_preproc_elif_in_field_declaration_list] = STATE(5659), - [sym__declaration_specifiers] = STATE(4692), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2733), - [sym_field_declaration] = STATE(2733), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2733), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6541), - [aux_sym_preproc_if_token1] = ACTIONS(6543), - [aux_sym_preproc_if_token2] = ACTIONS(6577), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6547), - [aux_sym_preproc_else_token1] = ACTIONS(6549), - [aux_sym_preproc_elif_token1] = ACTIONS(6551), - [sym_preproc_directive] = ACTIONS(6553), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2730] = { - [sym_preproc_def] = STATE(2728), - [sym_preproc_function_def] = STATE(2728), - [sym_preproc_call] = STATE(2728), - [sym_preproc_if_in_field_declaration_list] = STATE(2728), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2728), - [sym_preproc_else_in_field_declaration_list] = STATE(5471), - [sym_preproc_elif_in_field_declaration_list] = STATE(5471), - [sym__declaration_specifiers] = STATE(4692), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2728), - [sym_field_declaration] = STATE(2728), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2728), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6541), - [aux_sym_preproc_if_token1] = ACTIONS(6543), - [aux_sym_preproc_if_token2] = ACTIONS(6579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6547), - [aux_sym_preproc_else_token1] = ACTIONS(6549), - [aux_sym_preproc_elif_token1] = ACTIONS(6551), - [sym_preproc_directive] = ACTIONS(6553), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2731] = { - [sym_preproc_def] = STATE(2733), - [sym_preproc_function_def] = STATE(2733), - [sym_preproc_call] = STATE(2733), - [sym_preproc_if_in_field_declaration_list] = STATE(2733), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2733), - [sym_preproc_else_in_field_declaration_list] = STATE(5466), - [sym_preproc_elif_in_field_declaration_list] = STATE(5466), - [sym__declaration_specifiers] = STATE(4692), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2733), - [sym_field_declaration] = STATE(2733), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2733), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6541), - [aux_sym_preproc_if_token1] = ACTIONS(6543), - [aux_sym_preproc_if_token2] = ACTIONS(6581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6547), - [aux_sym_preproc_else_token1] = ACTIONS(6549), - [aux_sym_preproc_elif_token1] = ACTIONS(6551), - [sym_preproc_directive] = ACTIONS(6553), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2732] = { - [sym_preproc_def] = STATE(2729), - [sym_preproc_function_def] = STATE(2729), - [sym_preproc_call] = STATE(2729), - [sym_preproc_if_in_field_declaration_list] = STATE(2729), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2729), - [sym_preproc_else_in_field_declaration_list] = STATE(5583), - [sym_preproc_elif_in_field_declaration_list] = STATE(5583), - [sym__declaration_specifiers] = STATE(4692), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2729), - [sym_field_declaration] = STATE(2729), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2729), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6541), - [aux_sym_preproc_if_token1] = ACTIONS(6543), - [aux_sym_preproc_if_token2] = ACTIONS(6583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6547), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6547), - [aux_sym_preproc_else_token1] = ACTIONS(6549), - [aux_sym_preproc_elif_token1] = ACTIONS(6551), - [sym_preproc_directive] = ACTIONS(6553), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2733] = { - [sym_preproc_def] = STATE(2733), - [sym_preproc_function_def] = STATE(2733), - [sym_preproc_call] = STATE(2733), - [sym_preproc_if_in_field_declaration_list] = STATE(2733), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2733), - [sym__declaration_specifiers] = STATE(4692), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2733), - [sym_field_declaration] = STATE(2733), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2733), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(6585), - [aux_sym_preproc_def_token1] = ACTIONS(6588), - [aux_sym_preproc_if_token1] = ACTIONS(6591), - [aux_sym_preproc_if_token2] = ACTIONS(6594), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6596), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6596), - [aux_sym_preproc_else_token1] = ACTIONS(6594), - [aux_sym_preproc_elif_token1] = ACTIONS(6594), - [sym_preproc_directive] = ACTIONS(6599), - [anon_sym_extern] = ACTIONS(6602), - [anon_sym___attribute] = ACTIONS(6605), - [anon_sym___attribute__] = ACTIONS(6605), - [anon_sym___declspec] = ACTIONS(6608), - [anon_sym_static] = ACTIONS(6602), - [anon_sym_auto] = ACTIONS(6602), - [anon_sym_register] = ACTIONS(6602), - [anon_sym_inline] = ACTIONS(6602), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6602), - [anon_sym_const] = ACTIONS(6611), - [anon_sym_volatile] = ACTIONS(6611), - [anon_sym_restrict] = ACTIONS(6611), - [anon_sym__Atomic] = ACTIONS(6614), - [anon_sym_in] = ACTIONS(6611), - [anon_sym_out] = ACTIONS(6611), - [anon_sym_inout] = ACTIONS(6611), - [anon_sym_bycopy] = ACTIONS(6611), - [anon_sym_byref] = ACTIONS(6611), - [anon_sym_oneway] = ACTIONS(6611), - [anon_sym__Nullable] = ACTIONS(6611), - [anon_sym__Nonnull] = ACTIONS(6611), - [anon_sym__Nullable_result] = ACTIONS(6611), - [anon_sym__Null_unspecified] = ACTIONS(6611), - [anon_sym___autoreleasing] = ACTIONS(6611), - [anon_sym___nullable] = ACTIONS(6611), - [anon_sym___nonnull] = ACTIONS(6611), - [anon_sym___strong] = ACTIONS(6611), - [anon_sym___weak] = ACTIONS(6611), - [anon_sym___bridge] = ACTIONS(6611), - [anon_sym___bridge_transfer] = ACTIONS(6611), - [anon_sym___bridge_retained] = ACTIONS(6611), - [anon_sym___unsafe_unretained] = ACTIONS(6611), - [anon_sym___block] = ACTIONS(6611), - [anon_sym___kindof] = ACTIONS(6611), - [anon_sym___unused] = ACTIONS(6611), - [anon_sym__Complex] = ACTIONS(6611), - [anon_sym___complex] = ACTIONS(6611), - [anon_sym_IBOutlet] = ACTIONS(6611), - [anon_sym_IBInspectable] = ACTIONS(6611), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6611), - [anon_sym_signed] = ACTIONS(6617), - [anon_sym_unsigned] = ACTIONS(6617), - [anon_sym_long] = ACTIONS(6617), - [anon_sym_short] = ACTIONS(6617), - [sym_primitive_type] = ACTIONS(6620), - [anon_sym_enum] = ACTIONS(6623), - [anon_sym_NS_ENUM] = ACTIONS(6626), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(6626), - [anon_sym_NS_OPTIONS] = ACTIONS(6626), - [anon_sym_struct] = ACTIONS(6629), - [anon_sym_union] = ACTIONS(6632), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6635), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6638), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6638), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6641), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6641), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6641), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6641), - [anon_sym_NS_AVAILABLE] = ACTIONS(6644), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6644), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6644), - [anon_sym_API_AVAILABLE] = ACTIONS(6644), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6644), - [anon_sym_API_DEPRECATED] = ACTIONS(6644), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6644), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6644), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6644), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6644), - [anon_sym___deprecated_msg] = ACTIONS(6644), - [anon_sym___deprecated_enum_msg] = ACTIONS(6644), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6644), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6644), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6644), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6644), - [anon_sym_typeof] = ACTIONS(6647), - [anon_sym___typeof] = ACTIONS(6647), - [anon_sym___typeof__] = ACTIONS(6647), - [sym_id] = ACTIONS(6650), - [sym_instancetype] = ACTIONS(6620), - [sym_Class] = ACTIONS(6650), - [sym_SEL] = ACTIONS(6620), - [sym_IMP] = ACTIONS(6620), - [sym_BOOL] = ACTIONS(6620), - [sym_auto] = ACTIONS(6620), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2734] = { - [sym__declaration_specifiers] = STATE(4627), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym__abstract_declarator] = STATE(4819), - [sym_abstract_parenthesized_declarator] = STATE(4266), - [sym_abstract_pointer_declarator] = STATE(4266), - [sym_abstract_function_declarator] = STATE(4266), - [sym_abstract_array_declarator] = STATE(4266), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3368), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_parameter_list] = STATE(4263), - [sym_parameter_declaration] = STATE(4968), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [sym_block_abstract_declarator] = STATE(4266), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6533), - [anon_sym_RPAREN] = ACTIONS(6535), - [anon_sym_LPAREN2] = ACTIONS(6653), - [anon_sym_STAR] = ACTIONS(6655), - [anon_sym_CARET] = ACTIONS(6657), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(6529), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_NOESCAPE] = ACTIONS(1159), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2735] = { - [sym_function_definition] = STATE(984), - [sym_declaration] = STATE(984), - [sym__declaration_specifiers] = STATE(4707), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(2993), - [sym_declaration_list] = STATE(984), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2996), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(6659), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2736] = { - [sym_preproc_def] = STATE(2741), - [sym_preproc_function_def] = STATE(2741), - [sym_preproc_call] = STATE(2741), - [sym_preproc_if_in_field_declaration_list] = STATE(2741), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2741), - [sym__declaration_specifiers] = STATE(4690), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2741), - [sym_field_declaration] = STATE(2741), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2741), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6661), - [aux_sym_preproc_if_token1] = ACTIONS(6663), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6665), - [sym_preproc_directive] = ACTIONS(6667), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_RBRACE] = ACTIONS(6669), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2737] = { - [sym_preproc_def] = STATE(2737), - [sym_preproc_function_def] = STATE(2737), - [sym_preproc_call] = STATE(2737), - [sym_preproc_if_in_field_declaration_list] = STATE(2737), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2737), - [sym__declaration_specifiers] = STATE(4693), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2737), - [sym_field_declaration] = STATE(2737), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2737), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(6585), - [aux_sym_preproc_def_token1] = ACTIONS(6671), - [aux_sym_preproc_if_token1] = ACTIONS(6674), - [aux_sym_preproc_if_token2] = ACTIONS(6594), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6677), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6677), - [sym_preproc_directive] = ACTIONS(6680), - [anon_sym_extern] = ACTIONS(6602), - [anon_sym___attribute] = ACTIONS(6605), - [anon_sym___attribute__] = ACTIONS(6605), - [anon_sym___declspec] = ACTIONS(6608), - [anon_sym_static] = ACTIONS(6602), - [anon_sym_auto] = ACTIONS(6602), - [anon_sym_register] = ACTIONS(6602), - [anon_sym_inline] = ACTIONS(6602), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6602), - [anon_sym_const] = ACTIONS(6611), - [anon_sym_volatile] = ACTIONS(6611), - [anon_sym_restrict] = ACTIONS(6611), - [anon_sym__Atomic] = ACTIONS(6614), - [anon_sym_in] = ACTIONS(6611), - [anon_sym_out] = ACTIONS(6611), - [anon_sym_inout] = ACTIONS(6611), - [anon_sym_bycopy] = ACTIONS(6611), - [anon_sym_byref] = ACTIONS(6611), - [anon_sym_oneway] = ACTIONS(6611), - [anon_sym__Nullable] = ACTIONS(6611), - [anon_sym__Nonnull] = ACTIONS(6611), - [anon_sym__Nullable_result] = ACTIONS(6611), - [anon_sym__Null_unspecified] = ACTIONS(6611), - [anon_sym___autoreleasing] = ACTIONS(6611), - [anon_sym___nullable] = ACTIONS(6611), - [anon_sym___nonnull] = ACTIONS(6611), - [anon_sym___strong] = ACTIONS(6611), - [anon_sym___weak] = ACTIONS(6611), - [anon_sym___bridge] = ACTIONS(6611), - [anon_sym___bridge_transfer] = ACTIONS(6611), - [anon_sym___bridge_retained] = ACTIONS(6611), - [anon_sym___unsafe_unretained] = ACTIONS(6611), - [anon_sym___block] = ACTIONS(6611), - [anon_sym___kindof] = ACTIONS(6611), - [anon_sym___unused] = ACTIONS(6611), - [anon_sym__Complex] = ACTIONS(6611), - [anon_sym___complex] = ACTIONS(6611), - [anon_sym_IBOutlet] = ACTIONS(6611), - [anon_sym_IBInspectable] = ACTIONS(6611), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6611), - [anon_sym_signed] = ACTIONS(6617), - [anon_sym_unsigned] = ACTIONS(6617), - [anon_sym_long] = ACTIONS(6617), - [anon_sym_short] = ACTIONS(6617), - [sym_primitive_type] = ACTIONS(6620), - [anon_sym_enum] = ACTIONS(6623), - [anon_sym_NS_ENUM] = ACTIONS(6626), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(6626), - [anon_sym_NS_OPTIONS] = ACTIONS(6626), - [anon_sym_struct] = ACTIONS(6629), - [anon_sym_union] = ACTIONS(6632), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6635), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6638), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6638), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6641), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6641), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6641), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6641), - [anon_sym_NS_AVAILABLE] = ACTIONS(6644), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6644), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6644), - [anon_sym_API_AVAILABLE] = ACTIONS(6644), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6644), - [anon_sym_API_DEPRECATED] = ACTIONS(6644), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6644), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6644), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6644), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6644), - [anon_sym___deprecated_msg] = ACTIONS(6644), - [anon_sym___deprecated_enum_msg] = ACTIONS(6644), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6644), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6644), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6644), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6644), - [anon_sym_typeof] = ACTIONS(6647), - [anon_sym___typeof] = ACTIONS(6647), - [anon_sym___typeof__] = ACTIONS(6647), - [sym_id] = ACTIONS(6650), - [sym_instancetype] = ACTIONS(6620), - [sym_Class] = ACTIONS(6650), - [sym_SEL] = ACTIONS(6620), - [sym_IMP] = ACTIONS(6620), - [sym_BOOL] = ACTIONS(6620), - [sym_auto] = ACTIONS(6620), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2738] = { - [sym_preproc_def] = STATE(2740), - [sym_preproc_function_def] = STATE(2740), - [sym_preproc_call] = STATE(2740), - [sym_preproc_if_in_field_declaration_list] = STATE(2740), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2740), - [sym__declaration_specifiers] = STATE(4690), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2740), - [sym_field_declaration] = STATE(2740), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2740), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6661), - [aux_sym_preproc_if_token1] = ACTIONS(6663), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6665), - [sym_preproc_directive] = ACTIONS(6667), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_RBRACE] = ACTIONS(6683), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2739] = { - [sym_function_definition] = STATE(1398), - [sym_declaration] = STATE(1398), - [sym__declaration_specifiers] = STATE(4702), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3004), - [sym_declaration_list] = STATE(1398), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2994), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(6685), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2740] = { - [sym_preproc_def] = STATE(2746), - [sym_preproc_function_def] = STATE(2746), - [sym_preproc_call] = STATE(2746), - [sym_preproc_if_in_field_declaration_list] = STATE(2746), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2746), - [sym__declaration_specifiers] = STATE(4690), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2746), - [sym_field_declaration] = STATE(2746), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2746), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6661), - [aux_sym_preproc_if_token1] = ACTIONS(6663), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6665), - [sym_preproc_directive] = ACTIONS(6667), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_RBRACE] = ACTIONS(6687), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2741] = { - [sym_preproc_def] = STATE(2746), - [sym_preproc_function_def] = STATE(2746), - [sym_preproc_call] = STATE(2746), - [sym_preproc_if_in_field_declaration_list] = STATE(2746), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2746), - [sym__declaration_specifiers] = STATE(4690), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2746), - [sym_field_declaration] = STATE(2746), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2746), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6661), - [aux_sym_preproc_if_token1] = ACTIONS(6663), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6665), - [sym_preproc_directive] = ACTIONS(6667), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_RBRACE] = ACTIONS(6689), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2742] = { - [sym_function_definition] = STATE(708), - [sym_declaration] = STATE(708), - [sym__declaration_specifiers] = STATE(4708), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_ms_call_modifier] = STATE(3000), - [sym_declaration_list] = STATE(708), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(2995), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(6691), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2743] = { - [sym_preproc_def] = STATE(2745), - [sym_preproc_function_def] = STATE(2745), - [sym_preproc_call] = STATE(2745), - [sym_preproc_if_in_field_declaration_list] = STATE(2745), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2745), - [sym__declaration_specifiers] = STATE(4690), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2745), - [sym_field_declaration] = STATE(2745), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2745), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6661), - [aux_sym_preproc_if_token1] = ACTIONS(6663), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6665), - [sym_preproc_directive] = ACTIONS(6667), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_RBRACE] = ACTIONS(6693), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2744] = { - [sym_preproc_def] = STATE(2737), - [sym_preproc_function_def] = STATE(2737), - [sym_preproc_call] = STATE(2737), - [sym_preproc_if_in_field_declaration_list] = STATE(2737), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2737), - [sym__declaration_specifiers] = STATE(4693), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2737), - [sym_field_declaration] = STATE(2737), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2737), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6695), - [aux_sym_preproc_if_token1] = ACTIONS(6697), - [aux_sym_preproc_if_token2] = ACTIONS(6699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6701), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6701), - [sym_preproc_directive] = ACTIONS(6703), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2745] = { - [sym_preproc_def] = STATE(2746), - [sym_preproc_function_def] = STATE(2746), - [sym_preproc_call] = STATE(2746), - [sym_preproc_if_in_field_declaration_list] = STATE(2746), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2746), - [sym__declaration_specifiers] = STATE(4690), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2746), - [sym_field_declaration] = STATE(2746), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2746), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6661), - [aux_sym_preproc_if_token1] = ACTIONS(6663), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6665), - [sym_preproc_directive] = ACTIONS(6667), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_RBRACE] = ACTIONS(6705), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2746] = { - [sym_preproc_def] = STATE(2746), - [sym_preproc_function_def] = STATE(2746), - [sym_preproc_call] = STATE(2746), - [sym_preproc_if_in_field_declaration_list] = STATE(2746), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2746), - [sym__declaration_specifiers] = STATE(4690), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2746), - [sym_field_declaration] = STATE(2746), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2746), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(6585), - [aux_sym_preproc_def_token1] = ACTIONS(6707), - [aux_sym_preproc_if_token1] = ACTIONS(6710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6713), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6713), - [sym_preproc_directive] = ACTIONS(6716), - [anon_sym_extern] = ACTIONS(6602), - [anon_sym___attribute] = ACTIONS(6605), - [anon_sym___attribute__] = ACTIONS(6605), - [anon_sym___declspec] = ACTIONS(6608), - [anon_sym_RBRACE] = ACTIONS(6719), - [anon_sym_static] = ACTIONS(6602), - [anon_sym_auto] = ACTIONS(6602), - [anon_sym_register] = ACTIONS(6602), - [anon_sym_inline] = ACTIONS(6602), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6602), - [anon_sym_const] = ACTIONS(6611), - [anon_sym_volatile] = ACTIONS(6611), - [anon_sym_restrict] = ACTIONS(6611), - [anon_sym__Atomic] = ACTIONS(6614), - [anon_sym_in] = ACTIONS(6611), - [anon_sym_out] = ACTIONS(6611), - [anon_sym_inout] = ACTIONS(6611), - [anon_sym_bycopy] = ACTIONS(6611), - [anon_sym_byref] = ACTIONS(6611), - [anon_sym_oneway] = ACTIONS(6611), - [anon_sym__Nullable] = ACTIONS(6611), - [anon_sym__Nonnull] = ACTIONS(6611), - [anon_sym__Nullable_result] = ACTIONS(6611), - [anon_sym__Null_unspecified] = ACTIONS(6611), - [anon_sym___autoreleasing] = ACTIONS(6611), - [anon_sym___nullable] = ACTIONS(6611), - [anon_sym___nonnull] = ACTIONS(6611), - [anon_sym___strong] = ACTIONS(6611), - [anon_sym___weak] = ACTIONS(6611), - [anon_sym___bridge] = ACTIONS(6611), - [anon_sym___bridge_transfer] = ACTIONS(6611), - [anon_sym___bridge_retained] = ACTIONS(6611), - [anon_sym___unsafe_unretained] = ACTIONS(6611), - [anon_sym___block] = ACTIONS(6611), - [anon_sym___kindof] = ACTIONS(6611), - [anon_sym___unused] = ACTIONS(6611), - [anon_sym__Complex] = ACTIONS(6611), - [anon_sym___complex] = ACTIONS(6611), - [anon_sym_IBOutlet] = ACTIONS(6611), - [anon_sym_IBInspectable] = ACTIONS(6611), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6611), - [anon_sym_signed] = ACTIONS(6617), - [anon_sym_unsigned] = ACTIONS(6617), - [anon_sym_long] = ACTIONS(6617), - [anon_sym_short] = ACTIONS(6617), - [sym_primitive_type] = ACTIONS(6620), - [anon_sym_enum] = ACTIONS(6623), - [anon_sym_NS_ENUM] = ACTIONS(6626), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(6626), - [anon_sym_NS_OPTIONS] = ACTIONS(6626), - [anon_sym_struct] = ACTIONS(6629), - [anon_sym_union] = ACTIONS(6632), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6635), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6638), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6638), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6641), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6641), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6641), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6641), - [anon_sym_NS_AVAILABLE] = ACTIONS(6644), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6644), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6644), - [anon_sym_API_AVAILABLE] = ACTIONS(6644), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6644), - [anon_sym_API_DEPRECATED] = ACTIONS(6644), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6644), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6644), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6644), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6644), - [anon_sym___deprecated_msg] = ACTIONS(6644), - [anon_sym___deprecated_enum_msg] = ACTIONS(6644), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6644), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6644), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6644), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6644), - [anon_sym_typeof] = ACTIONS(6647), - [anon_sym___typeof] = ACTIONS(6647), - [anon_sym___typeof__] = ACTIONS(6647), - [sym_id] = ACTIONS(6650), - [sym_instancetype] = ACTIONS(6620), - [sym_Class] = ACTIONS(6650), - [sym_SEL] = ACTIONS(6620), - [sym_IMP] = ACTIONS(6620), - [sym_BOOL] = ACTIONS(6620), - [sym_auto] = ACTIONS(6620), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2747] = { - [sym_preproc_def] = STATE(2744), - [sym_preproc_function_def] = STATE(2744), - [sym_preproc_call] = STATE(2744), - [sym_preproc_if_in_field_declaration_list] = STATE(2744), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(2744), - [sym__declaration_specifiers] = STATE(4693), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym__field_declaration_list_item] = STATE(2744), - [sym_field_declaration] = STATE(2744), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2744), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [aux_sym_preproc_def_token1] = ACTIONS(6695), - [aux_sym_preproc_if_token1] = ACTIONS(6697), - [aux_sym_preproc_if_token2] = ACTIONS(6721), - [aux_sym_preproc_ifdef_token1] = ACTIONS(6701), - [aux_sym_preproc_ifdef_token2] = ACTIONS(6701), - [sym_preproc_directive] = ACTIONS(6703), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [2748] = { - [sym__declaration_specifiers] = STATE(4691), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_field_declaration] = STATE(2748), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variable_declaration] = STATE(2748), - [sym__visibility_specification] = STATE(2748), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [aux_sym__instance_variables_repeat1] = STATE(2748), - [sym_identifier] = ACTIONS(6723), - [anon_sym_extern] = ACTIONS(6726), - [anon_sym___attribute] = ACTIONS(6729), - [anon_sym___attribute__] = ACTIONS(6729), - [anon_sym___declspec] = ACTIONS(6732), - [anon_sym_RBRACE] = ACTIONS(6735), - [anon_sym_static] = ACTIONS(6726), - [anon_sym_auto] = ACTIONS(6726), - [anon_sym_register] = ACTIONS(6726), - [anon_sym_inline] = ACTIONS(6726), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6726), - [anon_sym_const] = ACTIONS(6737), - [anon_sym_volatile] = ACTIONS(6737), - [anon_sym_restrict] = ACTIONS(6737), - [anon_sym__Atomic] = ACTIONS(6740), - [anon_sym_in] = ACTIONS(6737), - [anon_sym_out] = ACTIONS(6737), - [anon_sym_inout] = ACTIONS(6737), - [anon_sym_bycopy] = ACTIONS(6737), - [anon_sym_byref] = ACTIONS(6737), - [anon_sym_oneway] = ACTIONS(6737), - [anon_sym__Nullable] = ACTIONS(6737), - [anon_sym__Nonnull] = ACTIONS(6737), - [anon_sym__Nullable_result] = ACTIONS(6737), - [anon_sym__Null_unspecified] = ACTIONS(6737), - [anon_sym___autoreleasing] = ACTIONS(6737), - [anon_sym___nullable] = ACTIONS(6737), - [anon_sym___nonnull] = ACTIONS(6737), - [anon_sym___strong] = ACTIONS(6737), - [anon_sym___weak] = ACTIONS(6737), - [anon_sym___bridge] = ACTIONS(6737), - [anon_sym___bridge_transfer] = ACTIONS(6737), - [anon_sym___bridge_retained] = ACTIONS(6737), - [anon_sym___unsafe_unretained] = ACTIONS(6737), - [anon_sym___block] = ACTIONS(6737), - [anon_sym___kindof] = ACTIONS(6737), - [anon_sym___unused] = ACTIONS(6737), - [anon_sym__Complex] = ACTIONS(6737), - [anon_sym___complex] = ACTIONS(6737), - [anon_sym_IBOutlet] = ACTIONS(6737), - [anon_sym_IBInspectable] = ACTIONS(6737), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6737), - [anon_sym_signed] = ACTIONS(6743), - [anon_sym_unsigned] = ACTIONS(6743), - [anon_sym_long] = ACTIONS(6743), - [anon_sym_short] = ACTIONS(6743), - [sym_primitive_type] = ACTIONS(6746), - [anon_sym_enum] = ACTIONS(6749), - [anon_sym_NS_ENUM] = ACTIONS(6752), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(6752), - [anon_sym_NS_OPTIONS] = ACTIONS(6752), - [anon_sym_struct] = ACTIONS(6755), - [anon_sym_union] = ACTIONS(6758), - [sym_comment] = ACTIONS(3), - [sym_private] = ACTIONS(6761), - [sym_public] = ACTIONS(6761), - [sym_protected] = ACTIONS(6761), - [sym_package] = ACTIONS(6761), - [sym_method_attribute_specifier] = ACTIONS(6764), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6767), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6767), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6770), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6770), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6770), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6770), - [anon_sym_NS_AVAILABLE] = ACTIONS(6773), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6773), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6773), - [anon_sym_API_AVAILABLE] = ACTIONS(6773), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6773), - [anon_sym_API_DEPRECATED] = ACTIONS(6773), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6773), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6773), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6773), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6773), - [anon_sym___deprecated_msg] = ACTIONS(6773), - [anon_sym___deprecated_enum_msg] = ACTIONS(6773), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6773), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6773), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6773), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6773), - [anon_sym_typeof] = ACTIONS(6776), - [anon_sym___typeof] = ACTIONS(6776), - [anon_sym___typeof__] = ACTIONS(6776), - [sym_id] = ACTIONS(6779), - [sym_instancetype] = ACTIONS(6746), - [sym_Class] = ACTIONS(6779), - [sym_SEL] = ACTIONS(6746), - [sym_IMP] = ACTIONS(6746), - [sym_BOOL] = ACTIONS(6746), - [sym_auto] = ACTIONS(6746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2749] = { - [sym__declaration_specifiers] = STATE(4691), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_field_declaration] = STATE(2748), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variable_declaration] = STATE(2748), - [sym__visibility_specification] = STATE(2748), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [aux_sym__instance_variables_repeat1] = STATE(2748), - [sym_identifier] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_RBRACE] = ACTIONS(6782), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_private] = ACTIONS(6784), - [sym_public] = ACTIONS(6784), - [sym_protected] = ACTIONS(6784), - [sym_package] = ACTIONS(6784), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2750] = { - [sym__declaration_specifiers] = STATE(4691), - [sym_attribute_specifier] = STATE(3029), - [sym_ms_declspec_modifier] = STATE(3029), - [sym_storage_class_specifier] = STATE(3029), - [sym_type_qualifier] = STATE(3029), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_field_declaration] = STATE(2749), - [sym_macro_type_specifier] = STATE(3377), - [sym__instance_variable_declaration] = STATE(2749), - [sym__visibility_specification] = STATE(2749), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3029), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [aux_sym__instance_variables_repeat1] = STATE(2749), - [sym_identifier] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_RBRACE] = ACTIONS(6786), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_private] = ACTIONS(6788), - [sym_public] = ACTIONS(6788), - [sym_protected] = ACTIONS(6788), - [sym_package] = ACTIONS(6788), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2751] = { - [sym_identifier] = ACTIONS(6790), - [aux_sym_preproc_def_token1] = ACTIONS(6792), - [anon_sym_COMMA] = ACTIONS(6792), - [anon_sym_RPAREN] = ACTIONS(6792), - [anon_sym_LPAREN2] = ACTIONS(6792), - [anon_sym_DASH] = ACTIONS(6792), - [anon_sym_PLUS] = ACTIONS(6792), - [anon_sym_LT] = ACTIONS(6792), - [anon_sym_SEMI] = ACTIONS(6792), - [anon_sym_typedef] = ACTIONS(6790), - [anon_sym_extern] = ACTIONS(6790), - [anon_sym___attribute] = ACTIONS(6790), - [anon_sym___attribute__] = ACTIONS(6790), - [anon_sym___declspec] = ACTIONS(6790), - [anon_sym___cdecl] = ACTIONS(6790), - [anon_sym___clrcall] = ACTIONS(6790), - [anon_sym___stdcall] = ACTIONS(6790), - [anon_sym___fastcall] = ACTIONS(6790), - [anon_sym___thiscall] = ACTIONS(6790), - [anon_sym___vectorcall] = ACTIONS(6790), - [anon_sym_LBRACE] = ACTIONS(6792), - [anon_sym_static] = ACTIONS(6790), - [anon_sym_auto] = ACTIONS(6790), - [anon_sym_register] = ACTIONS(6790), - [anon_sym_inline] = ACTIONS(6790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6790), - [anon_sym_const] = ACTIONS(6790), - [anon_sym_volatile] = ACTIONS(6790), - [anon_sym_restrict] = ACTIONS(6790), - [anon_sym__Atomic] = ACTIONS(6790), - [anon_sym_in] = ACTIONS(6790), - [anon_sym_out] = ACTIONS(6790), - [anon_sym_inout] = ACTIONS(6790), - [anon_sym_bycopy] = ACTIONS(6790), - [anon_sym_byref] = ACTIONS(6790), - [anon_sym_oneway] = ACTIONS(6790), - [anon_sym__Nullable] = ACTIONS(6790), - [anon_sym__Nonnull] = ACTIONS(6790), - [anon_sym__Nullable_result] = ACTIONS(6790), - [anon_sym__Null_unspecified] = ACTIONS(6790), - [anon_sym___autoreleasing] = ACTIONS(6790), - [anon_sym___nullable] = ACTIONS(6790), - [anon_sym___nonnull] = ACTIONS(6790), - [anon_sym___strong] = ACTIONS(6790), - [anon_sym___weak] = ACTIONS(6790), - [anon_sym___bridge] = ACTIONS(6790), - [anon_sym___bridge_transfer] = ACTIONS(6790), - [anon_sym___bridge_retained] = ACTIONS(6790), - [anon_sym___unsafe_unretained] = ACTIONS(6790), - [anon_sym___block] = ACTIONS(6790), - [anon_sym___kindof] = ACTIONS(6790), - [anon_sym___unused] = ACTIONS(6790), - [anon_sym__Complex] = ACTIONS(6790), - [anon_sym___complex] = ACTIONS(6790), - [anon_sym_IBOutlet] = ACTIONS(6790), - [anon_sym_IBInspectable] = ACTIONS(6790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6790), - [anon_sym_signed] = ACTIONS(6790), - [anon_sym_unsigned] = ACTIONS(6790), - [anon_sym_long] = ACTIONS(6790), - [anon_sym_short] = ACTIONS(6790), - [sym_primitive_type] = ACTIONS(6790), - [anon_sym_enum] = ACTIONS(6790), - [anon_sym_COLON] = ACTIONS(6792), - [anon_sym_NS_ENUM] = ACTIONS(6790), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(6790), - [anon_sym_NS_OPTIONS] = ACTIONS(6790), - [anon_sym_struct] = ACTIONS(6790), - [anon_sym_union] = ACTIONS(6790), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6790), - [anon_sym_ATend] = ACTIONS(6792), - [sym_optional] = ACTIONS(6792), - [sym_required] = ACTIONS(6792), - [anon_sym_ATproperty] = ACTIONS(6792), - [sym_method_attribute_specifier] = ACTIONS(6790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6790), - [anon_sym_NS_AVAILABLE] = ACTIONS(6790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6790), - [anon_sym_API_AVAILABLE] = ACTIONS(6790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6790), - [anon_sym_API_DEPRECATED] = ACTIONS(6790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6790), - [anon_sym___deprecated_msg] = ACTIONS(6790), - [anon_sym___deprecated_enum_msg] = ACTIONS(6790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6790), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6790), - [anon_sym_ATsynthesize] = ACTIONS(6792), - [anon_sym_ATdynamic] = ACTIONS(6792), - [anon_sym_typeof] = ACTIONS(6790), - [anon_sym___typeof] = ACTIONS(6790), - [anon_sym___typeof__] = ACTIONS(6790), - [sym_id] = ACTIONS(6790), - [sym_instancetype] = ACTIONS(6790), - [sym_Class] = ACTIONS(6790), - [sym_SEL] = ACTIONS(6790), - [sym_IMP] = ACTIONS(6790), - [sym_BOOL] = ACTIONS(6790), - [sym_auto] = ACTIONS(6790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2752] = { - [sym_string_literal] = STATE(2798), - [aux_sym_string_expression_repeat1] = STATE(2754), - [sym_identifier] = ACTIONS(6794), - [anon_sym_COMMA] = ACTIONS(6796), - [anon_sym_RPAREN] = ACTIONS(6796), - [anon_sym_LPAREN2] = ACTIONS(6796), - [anon_sym_DASH] = ACTIONS(6794), - [anon_sym_PLUS] = ACTIONS(6794), - [anon_sym_STAR] = ACTIONS(6794), - [anon_sym_SLASH] = ACTIONS(6794), - [anon_sym_PERCENT] = ACTIONS(6794), - [anon_sym_PIPE_PIPE] = ACTIONS(6796), - [anon_sym_AMP_AMP] = ACTIONS(6796), - [anon_sym_PIPE] = ACTIONS(6794), - [anon_sym_CARET] = ACTIONS(6794), - [anon_sym_AMP] = ACTIONS(6794), - [anon_sym_EQ_EQ] = ACTIONS(6796), - [anon_sym_BANG_EQ] = ACTIONS(6796), - [anon_sym_GT] = ACTIONS(6794), - [anon_sym_GT_EQ] = ACTIONS(6796), - [anon_sym_LT_EQ] = ACTIONS(6796), - [anon_sym_LT] = ACTIONS(6794), - [anon_sym_LT_LT] = ACTIONS(6794), - [anon_sym_GT_GT] = ACTIONS(6794), - [anon_sym_SEMI] = ACTIONS(6796), - [anon_sym___attribute] = ACTIONS(6794), - [anon_sym___attribute__] = ACTIONS(6794), - [anon_sym_RBRACE] = ACTIONS(6796), - [anon_sym_LBRACK] = ACTIONS(6796), - [anon_sym_RBRACK] = ACTIONS(6796), - [anon_sym_EQ] = ACTIONS(6794), - [anon_sym_const] = ACTIONS(6794), - [anon_sym_volatile] = ACTIONS(6794), - [anon_sym_restrict] = ACTIONS(6794), - [anon_sym__Atomic] = ACTIONS(6794), - [anon_sym_in] = ACTIONS(6794), - [anon_sym_out] = ACTIONS(6794), - [anon_sym_inout] = ACTIONS(6794), - [anon_sym_bycopy] = ACTIONS(6794), - [anon_sym_byref] = ACTIONS(6794), - [anon_sym_oneway] = ACTIONS(6794), - [anon_sym__Nullable] = ACTIONS(6794), - [anon_sym__Nonnull] = ACTIONS(6794), - [anon_sym__Nullable_result] = ACTIONS(6794), - [anon_sym__Null_unspecified] = ACTIONS(6794), - [anon_sym___autoreleasing] = ACTIONS(6794), - [anon_sym___nullable] = ACTIONS(6794), - [anon_sym___nonnull] = ACTIONS(6794), - [anon_sym___strong] = ACTIONS(6794), - [anon_sym___weak] = ACTIONS(6794), - [anon_sym___bridge] = ACTIONS(6794), - [anon_sym___bridge_transfer] = ACTIONS(6794), - [anon_sym___bridge_retained] = ACTIONS(6794), - [anon_sym___unsafe_unretained] = ACTIONS(6794), - [anon_sym___block] = ACTIONS(6794), - [anon_sym___kindof] = ACTIONS(6794), - [anon_sym___unused] = ACTIONS(6794), - [anon_sym__Complex] = ACTIONS(6794), - [anon_sym___complex] = ACTIONS(6794), - [anon_sym_IBOutlet] = ACTIONS(6794), - [anon_sym_IBInspectable] = ACTIONS(6794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6794), - [anon_sym_COLON] = ACTIONS(6796), - [anon_sym_QMARK] = ACTIONS(6796), - [anon_sym_STAR_EQ] = ACTIONS(6796), - [anon_sym_SLASH_EQ] = ACTIONS(6796), - [anon_sym_PERCENT_EQ] = ACTIONS(6796), - [anon_sym_PLUS_EQ] = ACTIONS(6796), - [anon_sym_DASH_EQ] = ACTIONS(6796), - [anon_sym_LT_LT_EQ] = ACTIONS(6796), - [anon_sym_GT_GT_EQ] = ACTIONS(6796), - [anon_sym_AMP_EQ] = ACTIONS(6796), - [anon_sym_CARET_EQ] = ACTIONS(6796), - [anon_sym_PIPE_EQ] = ACTIONS(6796), - [anon_sym_DASH_DASH] = ACTIONS(6796), - [anon_sym_PLUS_PLUS] = ACTIONS(6796), - [anon_sym_DOT] = ACTIONS(6796), - [anon_sym_DASH_GT] = ACTIONS(6796), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6794), - [anon_sym_NS_AVAILABLE] = ACTIONS(6794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6794), - [anon_sym_API_AVAILABLE] = ACTIONS(6794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6794), - [anon_sym_API_DEPRECATED] = ACTIONS(6794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6794), - [anon_sym___deprecated_msg] = ACTIONS(6794), - [anon_sym___deprecated_enum_msg] = ACTIONS(6794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6794), - [anon_sym_AT] = ACTIONS(6798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2753] = { - [sym_string_literal] = STATE(2798), - [aux_sym_string_expression_repeat1] = STATE(2752), - [sym_identifier] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6802), - [anon_sym_RPAREN] = ACTIONS(6802), - [anon_sym_LPAREN2] = ACTIONS(6802), - [anon_sym_DASH] = ACTIONS(6800), - [anon_sym_PLUS] = ACTIONS(6800), - [anon_sym_STAR] = ACTIONS(6800), - [anon_sym_SLASH] = ACTIONS(6800), - [anon_sym_PERCENT] = ACTIONS(6800), - [anon_sym_PIPE_PIPE] = ACTIONS(6802), - [anon_sym_AMP_AMP] = ACTIONS(6802), - [anon_sym_PIPE] = ACTIONS(6800), - [anon_sym_CARET] = ACTIONS(6800), - [anon_sym_AMP] = ACTIONS(6800), - [anon_sym_EQ_EQ] = ACTIONS(6802), - [anon_sym_BANG_EQ] = ACTIONS(6802), - [anon_sym_GT] = ACTIONS(6800), - [anon_sym_GT_EQ] = ACTIONS(6802), - [anon_sym_LT_EQ] = ACTIONS(6802), - [anon_sym_LT] = ACTIONS(6800), - [anon_sym_LT_LT] = ACTIONS(6800), - [anon_sym_GT_GT] = ACTIONS(6800), - [anon_sym_SEMI] = ACTIONS(6802), - [anon_sym___attribute] = ACTIONS(6800), - [anon_sym___attribute__] = ACTIONS(6800), - [anon_sym_RBRACE] = ACTIONS(6802), - [anon_sym_LBRACK] = ACTIONS(6802), - [anon_sym_RBRACK] = ACTIONS(6802), - [anon_sym_EQ] = ACTIONS(6800), - [anon_sym_const] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym_in] = ACTIONS(6800), - [anon_sym_out] = ACTIONS(6800), - [anon_sym_inout] = ACTIONS(6800), - [anon_sym_bycopy] = ACTIONS(6800), - [anon_sym_byref] = ACTIONS(6800), - [anon_sym_oneway] = ACTIONS(6800), - [anon_sym__Nullable] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym__Nullable_result] = ACTIONS(6800), - [anon_sym__Null_unspecified] = ACTIONS(6800), - [anon_sym___autoreleasing] = ACTIONS(6800), - [anon_sym___nullable] = ACTIONS(6800), - [anon_sym___nonnull] = ACTIONS(6800), - [anon_sym___strong] = ACTIONS(6800), - [anon_sym___weak] = ACTIONS(6800), - [anon_sym___bridge] = ACTIONS(6800), - [anon_sym___bridge_transfer] = ACTIONS(6800), - [anon_sym___bridge_retained] = ACTIONS(6800), - [anon_sym___unsafe_unretained] = ACTIONS(6800), - [anon_sym___block] = ACTIONS(6800), - [anon_sym___kindof] = ACTIONS(6800), - [anon_sym___unused] = ACTIONS(6800), - [anon_sym__Complex] = ACTIONS(6800), - [anon_sym___complex] = ACTIONS(6800), - [anon_sym_IBOutlet] = ACTIONS(6800), - [anon_sym_IBInspectable] = ACTIONS(6800), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6800), - [anon_sym_COLON] = ACTIONS(6802), - [anon_sym_QMARK] = ACTIONS(6802), - [anon_sym_STAR_EQ] = ACTIONS(6802), - [anon_sym_SLASH_EQ] = ACTIONS(6802), - [anon_sym_PERCENT_EQ] = ACTIONS(6802), - [anon_sym_PLUS_EQ] = ACTIONS(6802), - [anon_sym_DASH_EQ] = ACTIONS(6802), - [anon_sym_LT_LT_EQ] = ACTIONS(6802), - [anon_sym_GT_GT_EQ] = ACTIONS(6802), - [anon_sym_AMP_EQ] = ACTIONS(6802), - [anon_sym_CARET_EQ] = ACTIONS(6802), - [anon_sym_PIPE_EQ] = ACTIONS(6802), - [anon_sym_DASH_DASH] = ACTIONS(6802), - [anon_sym_PLUS_PLUS] = ACTIONS(6802), - [anon_sym_DOT] = ACTIONS(6802), - [anon_sym_DASH_GT] = ACTIONS(6802), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6800), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6800), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6800), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6800), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6800), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6800), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6800), - [anon_sym_NS_AVAILABLE] = ACTIONS(6800), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6800), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6800), - [anon_sym_API_AVAILABLE] = ACTIONS(6800), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6800), - [anon_sym_API_DEPRECATED] = ACTIONS(6800), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6800), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6800), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6800), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6800), - [anon_sym___deprecated_msg] = ACTIONS(6800), - [anon_sym___deprecated_enum_msg] = ACTIONS(6800), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6800), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6800), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6800), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6800), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6800), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6800), - [anon_sym_AT] = ACTIONS(6798), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2754] = { - [sym_string_literal] = STATE(2798), - [aux_sym_string_expression_repeat1] = STATE(2754), - [sym_identifier] = ACTIONS(6804), - [anon_sym_COMMA] = ACTIONS(6806), - [anon_sym_RPAREN] = ACTIONS(6806), - [anon_sym_LPAREN2] = ACTIONS(6806), - [anon_sym_DASH] = ACTIONS(6804), - [anon_sym_PLUS] = ACTIONS(6804), - [anon_sym_STAR] = ACTIONS(6804), - [anon_sym_SLASH] = ACTIONS(6804), - [anon_sym_PERCENT] = ACTIONS(6804), - [anon_sym_PIPE_PIPE] = ACTIONS(6806), - [anon_sym_AMP_AMP] = ACTIONS(6806), - [anon_sym_PIPE] = ACTIONS(6804), - [anon_sym_CARET] = ACTIONS(6804), - [anon_sym_AMP] = ACTIONS(6804), - [anon_sym_EQ_EQ] = ACTIONS(6806), - [anon_sym_BANG_EQ] = ACTIONS(6806), - [anon_sym_GT] = ACTIONS(6804), - [anon_sym_GT_EQ] = ACTIONS(6806), - [anon_sym_LT_EQ] = ACTIONS(6806), - [anon_sym_LT] = ACTIONS(6804), - [anon_sym_LT_LT] = ACTIONS(6804), - [anon_sym_GT_GT] = ACTIONS(6804), - [anon_sym_SEMI] = ACTIONS(6806), - [anon_sym___attribute] = ACTIONS(6804), - [anon_sym___attribute__] = ACTIONS(6804), - [anon_sym_RBRACE] = ACTIONS(6806), - [anon_sym_LBRACK] = ACTIONS(6806), - [anon_sym_RBRACK] = ACTIONS(6806), - [anon_sym_EQ] = ACTIONS(6804), - [anon_sym_const] = ACTIONS(6804), - [anon_sym_volatile] = ACTIONS(6804), - [anon_sym_restrict] = ACTIONS(6804), - [anon_sym__Atomic] = ACTIONS(6804), - [anon_sym_in] = ACTIONS(6804), - [anon_sym_out] = ACTIONS(6804), - [anon_sym_inout] = ACTIONS(6804), - [anon_sym_bycopy] = ACTIONS(6804), - [anon_sym_byref] = ACTIONS(6804), - [anon_sym_oneway] = ACTIONS(6804), - [anon_sym__Nullable] = ACTIONS(6804), - [anon_sym__Nonnull] = ACTIONS(6804), - [anon_sym__Nullable_result] = ACTIONS(6804), - [anon_sym__Null_unspecified] = ACTIONS(6804), - [anon_sym___autoreleasing] = ACTIONS(6804), - [anon_sym___nullable] = ACTIONS(6804), - [anon_sym___nonnull] = ACTIONS(6804), - [anon_sym___strong] = ACTIONS(6804), - [anon_sym___weak] = ACTIONS(6804), - [anon_sym___bridge] = ACTIONS(6804), - [anon_sym___bridge_transfer] = ACTIONS(6804), - [anon_sym___bridge_retained] = ACTIONS(6804), - [anon_sym___unsafe_unretained] = ACTIONS(6804), - [anon_sym___block] = ACTIONS(6804), - [anon_sym___kindof] = ACTIONS(6804), - [anon_sym___unused] = ACTIONS(6804), - [anon_sym__Complex] = ACTIONS(6804), - [anon_sym___complex] = ACTIONS(6804), - [anon_sym_IBOutlet] = ACTIONS(6804), - [anon_sym_IBInspectable] = ACTIONS(6804), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6804), - [anon_sym_COLON] = ACTIONS(6806), - [anon_sym_QMARK] = ACTIONS(6806), - [anon_sym_STAR_EQ] = ACTIONS(6806), - [anon_sym_SLASH_EQ] = ACTIONS(6806), - [anon_sym_PERCENT_EQ] = ACTIONS(6806), - [anon_sym_PLUS_EQ] = ACTIONS(6806), - [anon_sym_DASH_EQ] = ACTIONS(6806), - [anon_sym_LT_LT_EQ] = ACTIONS(6806), - [anon_sym_GT_GT_EQ] = ACTIONS(6806), - [anon_sym_AMP_EQ] = ACTIONS(6806), - [anon_sym_CARET_EQ] = ACTIONS(6806), - [anon_sym_PIPE_EQ] = ACTIONS(6806), - [anon_sym_DASH_DASH] = ACTIONS(6806), - [anon_sym_PLUS_PLUS] = ACTIONS(6806), - [anon_sym_DOT] = ACTIONS(6806), - [anon_sym_DASH_GT] = ACTIONS(6806), - [anon_sym_L_DQUOTE] = ACTIONS(6808), - [anon_sym_u_DQUOTE] = ACTIONS(6808), - [anon_sym_U_DQUOTE] = ACTIONS(6808), - [anon_sym_u8_DQUOTE] = ACTIONS(6808), - [anon_sym_DQUOTE] = ACTIONS(6808), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6804), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6804), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6804), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6804), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6804), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6804), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6804), - [anon_sym_NS_AVAILABLE] = ACTIONS(6804), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6804), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6804), - [anon_sym_API_AVAILABLE] = ACTIONS(6804), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6804), - [anon_sym_API_DEPRECATED] = ACTIONS(6804), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6804), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6804), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6804), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6804), - [anon_sym___deprecated_msg] = ACTIONS(6804), - [anon_sym___deprecated_enum_msg] = ACTIONS(6804), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6804), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6804), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6804), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6804), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6804), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6804), - [anon_sym_AT] = ACTIONS(6811), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2755] = { - [sym_generic_type_references] = STATE(2778), - [sym_identifier] = ACTIONS(6814), - [aux_sym_preproc_def_token1] = ACTIONS(6816), - [anon_sym_DASH] = ACTIONS(6816), - [anon_sym_PLUS] = ACTIONS(6816), - [anon_sym_LT] = ACTIONS(6818), - [anon_sym_typedef] = ACTIONS(6814), - [anon_sym_extern] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___declspec] = ACTIONS(6814), - [anon_sym___cdecl] = ACTIONS(6814), - [anon_sym___clrcall] = ACTIONS(6814), - [anon_sym___stdcall] = ACTIONS(6814), - [anon_sym___fastcall] = ACTIONS(6814), - [anon_sym___thiscall] = ACTIONS(6814), - [anon_sym___vectorcall] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6816), - [anon_sym_static] = ACTIONS(6814), - [anon_sym_auto] = ACTIONS(6814), - [anon_sym_register] = ACTIONS(6814), - [anon_sym_inline] = ACTIONS(6814), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6814), - [anon_sym_const] = ACTIONS(6814), - [anon_sym_volatile] = ACTIONS(6814), - [anon_sym_restrict] = ACTIONS(6814), - [anon_sym__Atomic] = ACTIONS(6814), - [anon_sym_in] = ACTIONS(6814), - [anon_sym_out] = ACTIONS(6814), - [anon_sym_inout] = ACTIONS(6814), - [anon_sym_bycopy] = ACTIONS(6814), - [anon_sym_byref] = ACTIONS(6814), - [anon_sym_oneway] = ACTIONS(6814), - [anon_sym__Nullable] = ACTIONS(6814), - [anon_sym__Nonnull] = ACTIONS(6814), - [anon_sym__Nullable_result] = ACTIONS(6814), - [anon_sym__Null_unspecified] = ACTIONS(6814), - [anon_sym___autoreleasing] = ACTIONS(6814), - [anon_sym___nullable] = ACTIONS(6814), - [anon_sym___nonnull] = ACTIONS(6814), - [anon_sym___strong] = ACTIONS(6814), - [anon_sym___weak] = ACTIONS(6814), - [anon_sym___bridge] = ACTIONS(6814), - [anon_sym___bridge_transfer] = ACTIONS(6814), - [anon_sym___bridge_retained] = ACTIONS(6814), - [anon_sym___unsafe_unretained] = ACTIONS(6814), - [anon_sym___block] = ACTIONS(6814), - [anon_sym___kindof] = ACTIONS(6814), - [anon_sym___unused] = ACTIONS(6814), - [anon_sym__Complex] = ACTIONS(6814), - [anon_sym___complex] = ACTIONS(6814), - [anon_sym_IBOutlet] = ACTIONS(6814), - [anon_sym_IBInspectable] = ACTIONS(6814), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6814), - [anon_sym_signed] = ACTIONS(6814), - [anon_sym_unsigned] = ACTIONS(6814), - [anon_sym_long] = ACTIONS(6814), - [anon_sym_short] = ACTIONS(6814), - [sym_primitive_type] = ACTIONS(6814), - [anon_sym_enum] = ACTIONS(6814), - [anon_sym_COLON] = ACTIONS(6816), - [anon_sym_NS_ENUM] = ACTIONS(6814), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(6814), - [anon_sym_NS_OPTIONS] = ACTIONS(6814), - [anon_sym_struct] = ACTIONS(6814), - [anon_sym_union] = ACTIONS(6814), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6814), - [anon_sym_ATend] = ACTIONS(6816), - [sym_optional] = ACTIONS(6816), - [sym_required] = ACTIONS(6816), - [anon_sym_ATproperty] = ACTIONS(6816), - [sym_method_attribute_specifier] = ACTIONS(6814), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6814), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6814), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6814), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6814), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6814), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6814), - [anon_sym_NS_AVAILABLE] = ACTIONS(6814), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6814), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6814), - [anon_sym_API_AVAILABLE] = ACTIONS(6814), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6814), - [anon_sym_API_DEPRECATED] = ACTIONS(6814), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6814), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6814), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6814), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6814), - [anon_sym___deprecated_msg] = ACTIONS(6814), - [anon_sym___deprecated_enum_msg] = ACTIONS(6814), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6814), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6814), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6814), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6814), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6814), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6814), - [anon_sym_ATsynthesize] = ACTIONS(6816), - [anon_sym_ATdynamic] = ACTIONS(6816), - [anon_sym_typeof] = ACTIONS(6814), - [anon_sym___typeof] = ACTIONS(6814), - [anon_sym___typeof__] = ACTIONS(6814), - [sym_id] = ACTIONS(6814), - [sym_instancetype] = ACTIONS(6814), - [sym_Class] = ACTIONS(6814), - [sym_SEL] = ACTIONS(6814), - [sym_IMP] = ACTIONS(6814), - [sym_BOOL] = ACTIONS(6814), - [sym_auto] = ACTIONS(6814), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2756] = { - [sym_string_literal] = STATE(2758), - [aux_sym_concatenated_string_repeat1] = STATE(2758), - [sym_identifier] = ACTIONS(6820), - [anon_sym_COMMA] = ACTIONS(6822), - [anon_sym_RPAREN] = ACTIONS(6822), - [anon_sym_LPAREN2] = ACTIONS(6822), - [anon_sym_DASH] = ACTIONS(6820), - [anon_sym_PLUS] = ACTIONS(6820), - [anon_sym_STAR] = ACTIONS(6820), - [anon_sym_SLASH] = ACTIONS(6820), - [anon_sym_PERCENT] = ACTIONS(6820), - [anon_sym_PIPE_PIPE] = ACTIONS(6822), - [anon_sym_AMP_AMP] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6820), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_EQ_EQ] = ACTIONS(6822), - [anon_sym_BANG_EQ] = ACTIONS(6822), - [anon_sym_GT] = ACTIONS(6820), - [anon_sym_GT_EQ] = ACTIONS(6822), - [anon_sym_LT_EQ] = ACTIONS(6822), - [anon_sym_LT] = ACTIONS(6820), - [anon_sym_LT_LT] = ACTIONS(6820), - [anon_sym_GT_GT] = ACTIONS(6820), - [anon_sym_SEMI] = ACTIONS(6822), - [anon_sym___attribute] = ACTIONS(6820), - [anon_sym___attribute__] = ACTIONS(6820), - [anon_sym_RBRACE] = ACTIONS(6822), - [anon_sym_LBRACK] = ACTIONS(6822), - [anon_sym_RBRACK] = ACTIONS(6822), - [anon_sym_EQ] = ACTIONS(6820), - [anon_sym_const] = ACTIONS(6820), - [anon_sym_volatile] = ACTIONS(6820), - [anon_sym_restrict] = ACTIONS(6820), - [anon_sym__Atomic] = ACTIONS(6820), - [anon_sym_in] = ACTIONS(6820), - [anon_sym_out] = ACTIONS(6820), - [anon_sym_inout] = ACTIONS(6820), - [anon_sym_bycopy] = ACTIONS(6820), - [anon_sym_byref] = ACTIONS(6820), - [anon_sym_oneway] = ACTIONS(6820), - [anon_sym__Nullable] = ACTIONS(6820), - [anon_sym__Nonnull] = ACTIONS(6820), - [anon_sym__Nullable_result] = ACTIONS(6820), - [anon_sym__Null_unspecified] = ACTIONS(6820), - [anon_sym___autoreleasing] = ACTIONS(6820), - [anon_sym___nullable] = ACTIONS(6820), - [anon_sym___nonnull] = ACTIONS(6820), - [anon_sym___strong] = ACTIONS(6820), - [anon_sym___weak] = ACTIONS(6820), - [anon_sym___bridge] = ACTIONS(6820), - [anon_sym___bridge_transfer] = ACTIONS(6820), - [anon_sym___bridge_retained] = ACTIONS(6820), - [anon_sym___unsafe_unretained] = ACTIONS(6820), - [anon_sym___block] = ACTIONS(6820), - [anon_sym___kindof] = ACTIONS(6820), - [anon_sym___unused] = ACTIONS(6820), - [anon_sym__Complex] = ACTIONS(6820), - [anon_sym___complex] = ACTIONS(6820), - [anon_sym_IBOutlet] = ACTIONS(6820), - [anon_sym_IBInspectable] = ACTIONS(6820), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6820), - [anon_sym_COLON] = ACTIONS(6822), - [anon_sym_QMARK] = ACTIONS(6822), - [anon_sym_STAR_EQ] = ACTIONS(6822), - [anon_sym_SLASH_EQ] = ACTIONS(6822), - [anon_sym_PERCENT_EQ] = ACTIONS(6822), - [anon_sym_PLUS_EQ] = ACTIONS(6822), - [anon_sym_DASH_EQ] = ACTIONS(6822), - [anon_sym_LT_LT_EQ] = ACTIONS(6822), - [anon_sym_GT_GT_EQ] = ACTIONS(6822), - [anon_sym_AMP_EQ] = ACTIONS(6822), - [anon_sym_CARET_EQ] = ACTIONS(6822), - [anon_sym_PIPE_EQ] = ACTIONS(6822), - [anon_sym_DASH_DASH] = ACTIONS(6822), - [anon_sym_PLUS_PLUS] = ACTIONS(6822), - [anon_sym_DOT] = ACTIONS(6822), - [anon_sym_DASH_GT] = ACTIONS(6822), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6820), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6820), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6820), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6820), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6820), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6820), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6820), - [anon_sym_NS_AVAILABLE] = ACTIONS(6820), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6820), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_API_AVAILABLE] = ACTIONS(6820), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6820), - [anon_sym_API_DEPRECATED] = ACTIONS(6820), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6820), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6820), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6820), - [anon_sym___deprecated_msg] = ACTIONS(6820), - [anon_sym___deprecated_enum_msg] = ACTIONS(6820), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6820), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6820), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6820), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6820), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2757] = { - [sym_string_literal] = STATE(2757), - [aux_sym_concatenated_string_repeat1] = STATE(2757), - [sym_identifier] = ACTIONS(6824), - [anon_sym_COMMA] = ACTIONS(6826), - [anon_sym_RPAREN] = ACTIONS(6826), - [anon_sym_LPAREN2] = ACTIONS(6826), - [anon_sym_DASH] = ACTIONS(6824), - [anon_sym_PLUS] = ACTIONS(6824), - [anon_sym_STAR] = ACTIONS(6824), - [anon_sym_SLASH] = ACTIONS(6824), - [anon_sym_PERCENT] = ACTIONS(6824), - [anon_sym_PIPE_PIPE] = ACTIONS(6826), - [anon_sym_AMP_AMP] = ACTIONS(6826), - [anon_sym_PIPE] = ACTIONS(6824), - [anon_sym_CARET] = ACTIONS(6824), - [anon_sym_AMP] = ACTIONS(6824), - [anon_sym_EQ_EQ] = ACTIONS(6826), - [anon_sym_BANG_EQ] = ACTIONS(6826), - [anon_sym_GT] = ACTIONS(6824), - [anon_sym_GT_EQ] = ACTIONS(6826), - [anon_sym_LT_EQ] = ACTIONS(6826), - [anon_sym_LT] = ACTIONS(6824), - [anon_sym_LT_LT] = ACTIONS(6824), - [anon_sym_GT_GT] = ACTIONS(6824), - [anon_sym_SEMI] = ACTIONS(6826), - [anon_sym___attribute] = ACTIONS(6824), - [anon_sym___attribute__] = ACTIONS(6824), - [anon_sym_RBRACE] = ACTIONS(6826), - [anon_sym_LBRACK] = ACTIONS(6826), - [anon_sym_RBRACK] = ACTIONS(6826), - [anon_sym_EQ] = ACTIONS(6824), - [anon_sym_const] = ACTIONS(6824), - [anon_sym_volatile] = ACTIONS(6824), - [anon_sym_restrict] = ACTIONS(6824), - [anon_sym__Atomic] = ACTIONS(6824), - [anon_sym_in] = ACTIONS(6824), - [anon_sym_out] = ACTIONS(6824), - [anon_sym_inout] = ACTIONS(6824), - [anon_sym_bycopy] = ACTIONS(6824), - [anon_sym_byref] = ACTIONS(6824), - [anon_sym_oneway] = ACTIONS(6824), - [anon_sym__Nullable] = ACTIONS(6824), - [anon_sym__Nonnull] = ACTIONS(6824), - [anon_sym__Nullable_result] = ACTIONS(6824), - [anon_sym__Null_unspecified] = ACTIONS(6824), - [anon_sym___autoreleasing] = ACTIONS(6824), - [anon_sym___nullable] = ACTIONS(6824), - [anon_sym___nonnull] = ACTIONS(6824), - [anon_sym___strong] = ACTIONS(6824), - [anon_sym___weak] = ACTIONS(6824), - [anon_sym___bridge] = ACTIONS(6824), - [anon_sym___bridge_transfer] = ACTIONS(6824), - [anon_sym___bridge_retained] = ACTIONS(6824), - [anon_sym___unsafe_unretained] = ACTIONS(6824), - [anon_sym___block] = ACTIONS(6824), - [anon_sym___kindof] = ACTIONS(6824), - [anon_sym___unused] = ACTIONS(6824), - [anon_sym__Complex] = ACTIONS(6824), - [anon_sym___complex] = ACTIONS(6824), - [anon_sym_IBOutlet] = ACTIONS(6824), - [anon_sym_IBInspectable] = ACTIONS(6824), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6824), - [anon_sym_COLON] = ACTIONS(6826), - [anon_sym_QMARK] = ACTIONS(6826), - [anon_sym_STAR_EQ] = ACTIONS(6826), - [anon_sym_SLASH_EQ] = ACTIONS(6826), - [anon_sym_PERCENT_EQ] = ACTIONS(6826), - [anon_sym_PLUS_EQ] = ACTIONS(6826), - [anon_sym_DASH_EQ] = ACTIONS(6826), - [anon_sym_LT_LT_EQ] = ACTIONS(6826), - [anon_sym_GT_GT_EQ] = ACTIONS(6826), - [anon_sym_AMP_EQ] = ACTIONS(6826), - [anon_sym_CARET_EQ] = ACTIONS(6826), - [anon_sym_PIPE_EQ] = ACTIONS(6826), - [anon_sym_DASH_DASH] = ACTIONS(6826), - [anon_sym_PLUS_PLUS] = ACTIONS(6826), - [anon_sym_DOT] = ACTIONS(6826), - [anon_sym_DASH_GT] = ACTIONS(6826), - [anon_sym_L_DQUOTE] = ACTIONS(6828), - [anon_sym_u_DQUOTE] = ACTIONS(6828), - [anon_sym_U_DQUOTE] = ACTIONS(6828), - [anon_sym_u8_DQUOTE] = ACTIONS(6828), - [anon_sym_DQUOTE] = ACTIONS(6828), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6824), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6824), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6824), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6824), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6824), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6824), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6824), - [anon_sym_NS_AVAILABLE] = ACTIONS(6824), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6824), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6824), - [anon_sym_API_AVAILABLE] = ACTIONS(6824), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6824), - [anon_sym_API_DEPRECATED] = ACTIONS(6824), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6824), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6824), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6824), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6824), - [anon_sym___deprecated_msg] = ACTIONS(6824), - [anon_sym___deprecated_enum_msg] = ACTIONS(6824), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6824), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6824), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6824), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6824), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6824), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6824), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2758] = { - [sym_string_literal] = STATE(2757), - [aux_sym_concatenated_string_repeat1] = STATE(2757), - [sym_identifier] = ACTIONS(6831), - [anon_sym_COMMA] = ACTIONS(6833), - [anon_sym_RPAREN] = ACTIONS(6833), - [anon_sym_LPAREN2] = ACTIONS(6833), - [anon_sym_DASH] = ACTIONS(6831), - [anon_sym_PLUS] = ACTIONS(6831), - [anon_sym_STAR] = ACTIONS(6831), - [anon_sym_SLASH] = ACTIONS(6831), - [anon_sym_PERCENT] = ACTIONS(6831), - [anon_sym_PIPE_PIPE] = ACTIONS(6833), - [anon_sym_AMP_AMP] = ACTIONS(6833), - [anon_sym_PIPE] = ACTIONS(6831), - [anon_sym_CARET] = ACTIONS(6831), - [anon_sym_AMP] = ACTIONS(6831), - [anon_sym_EQ_EQ] = ACTIONS(6833), - [anon_sym_BANG_EQ] = ACTIONS(6833), - [anon_sym_GT] = ACTIONS(6831), - [anon_sym_GT_EQ] = ACTIONS(6833), - [anon_sym_LT_EQ] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(6831), - [anon_sym_LT_LT] = ACTIONS(6831), - [anon_sym_GT_GT] = ACTIONS(6831), - [anon_sym_SEMI] = ACTIONS(6833), - [anon_sym___attribute] = ACTIONS(6831), - [anon_sym___attribute__] = ACTIONS(6831), - [anon_sym_RBRACE] = ACTIONS(6833), - [anon_sym_LBRACK] = ACTIONS(6833), - [anon_sym_RBRACK] = ACTIONS(6833), - [anon_sym_EQ] = ACTIONS(6831), - [anon_sym_const] = ACTIONS(6831), - [anon_sym_volatile] = ACTIONS(6831), - [anon_sym_restrict] = ACTIONS(6831), - [anon_sym__Atomic] = ACTIONS(6831), - [anon_sym_in] = ACTIONS(6831), - [anon_sym_out] = ACTIONS(6831), - [anon_sym_inout] = ACTIONS(6831), - [anon_sym_bycopy] = ACTIONS(6831), - [anon_sym_byref] = ACTIONS(6831), - [anon_sym_oneway] = ACTIONS(6831), - [anon_sym__Nullable] = ACTIONS(6831), - [anon_sym__Nonnull] = ACTIONS(6831), - [anon_sym__Nullable_result] = ACTIONS(6831), - [anon_sym__Null_unspecified] = ACTIONS(6831), - [anon_sym___autoreleasing] = ACTIONS(6831), - [anon_sym___nullable] = ACTIONS(6831), - [anon_sym___nonnull] = ACTIONS(6831), - [anon_sym___strong] = ACTIONS(6831), - [anon_sym___weak] = ACTIONS(6831), - [anon_sym___bridge] = ACTIONS(6831), - [anon_sym___bridge_transfer] = ACTIONS(6831), - [anon_sym___bridge_retained] = ACTIONS(6831), - [anon_sym___unsafe_unretained] = ACTIONS(6831), - [anon_sym___block] = ACTIONS(6831), - [anon_sym___kindof] = ACTIONS(6831), - [anon_sym___unused] = ACTIONS(6831), - [anon_sym__Complex] = ACTIONS(6831), - [anon_sym___complex] = ACTIONS(6831), - [anon_sym_IBOutlet] = ACTIONS(6831), - [anon_sym_IBInspectable] = ACTIONS(6831), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6831), - [anon_sym_COLON] = ACTIONS(6833), - [anon_sym_QMARK] = ACTIONS(6833), - [anon_sym_STAR_EQ] = ACTIONS(6833), - [anon_sym_SLASH_EQ] = ACTIONS(6833), - [anon_sym_PERCENT_EQ] = ACTIONS(6833), - [anon_sym_PLUS_EQ] = ACTIONS(6833), - [anon_sym_DASH_EQ] = ACTIONS(6833), - [anon_sym_LT_LT_EQ] = ACTIONS(6833), - [anon_sym_GT_GT_EQ] = ACTIONS(6833), - [anon_sym_AMP_EQ] = ACTIONS(6833), - [anon_sym_CARET_EQ] = ACTIONS(6833), - [anon_sym_PIPE_EQ] = ACTIONS(6833), - [anon_sym_DASH_DASH] = ACTIONS(6833), - [anon_sym_PLUS_PLUS] = ACTIONS(6833), - [anon_sym_DOT] = ACTIONS(6833), - [anon_sym_DASH_GT] = ACTIONS(6833), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6831), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6831), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6831), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6831), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6831), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6831), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6831), - [anon_sym_NS_AVAILABLE] = ACTIONS(6831), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6831), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6831), - [anon_sym_API_AVAILABLE] = ACTIONS(6831), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6831), - [anon_sym_API_DEPRECATED] = ACTIONS(6831), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6831), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6831), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6831), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6831), - [anon_sym___deprecated_msg] = ACTIONS(6831), - [anon_sym___deprecated_enum_msg] = ACTIONS(6831), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6831), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6831), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6831), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6831), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6831), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6831), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2759] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(128), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2760] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(511), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2761] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(226), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2762] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(406), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2763] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(220), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2764] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(405), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2765] = { - [sym_identifier] = ACTIONS(2030), - [anon_sym_COMMA] = ACTIONS(2032), - [anon_sym_RPAREN] = ACTIONS(2032), - [anon_sym_LPAREN2] = ACTIONS(2032), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_PLUS] = ACTIONS(2030), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_SLASH] = ACTIONS(2030), - [anon_sym_PERCENT] = ACTIONS(2030), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE] = ACTIONS(2030), - [anon_sym_CARET] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_EQ_EQ] = ACTIONS(2032), - [anon_sym_BANG_EQ] = ACTIONS(2032), - [anon_sym_GT] = ACTIONS(2030), - [anon_sym_GT_EQ] = ACTIONS(2032), - [anon_sym_LT_EQ] = ACTIONS(2032), - [anon_sym_LT] = ACTIONS(2030), - [anon_sym_LT_LT] = ACTIONS(2030), - [anon_sym_GT_GT] = ACTIONS(2030), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym___attribute] = ACTIONS(2030), - [anon_sym___attribute__] = ACTIONS(2030), - [anon_sym_RBRACE] = ACTIONS(2032), - [anon_sym_LBRACK] = ACTIONS(2032), - [anon_sym_RBRACK] = ACTIONS(2032), - [anon_sym_EQ] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(2030), - [anon_sym_volatile] = ACTIONS(2030), - [anon_sym_restrict] = ACTIONS(2030), - [anon_sym__Atomic] = ACTIONS(2030), - [anon_sym_in] = ACTIONS(2030), - [anon_sym_out] = ACTIONS(2030), - [anon_sym_inout] = ACTIONS(2030), - [anon_sym_bycopy] = ACTIONS(2030), - [anon_sym_byref] = ACTIONS(2030), - [anon_sym_oneway] = ACTIONS(2030), - [anon_sym__Nullable] = ACTIONS(2030), - [anon_sym__Nonnull] = ACTIONS(2030), - [anon_sym__Nullable_result] = ACTIONS(2030), - [anon_sym__Null_unspecified] = ACTIONS(2030), - [anon_sym___autoreleasing] = ACTIONS(2030), - [anon_sym___nullable] = ACTIONS(2030), - [anon_sym___nonnull] = ACTIONS(2030), - [anon_sym___strong] = ACTIONS(2030), - [anon_sym___weak] = ACTIONS(2030), - [anon_sym___bridge] = ACTIONS(2030), - [anon_sym___bridge_transfer] = ACTIONS(2030), - [anon_sym___bridge_retained] = ACTIONS(2030), - [anon_sym___unsafe_unretained] = ACTIONS(2030), - [anon_sym___block] = ACTIONS(2030), - [anon_sym___kindof] = ACTIONS(2030), - [anon_sym___unused] = ACTIONS(2030), - [anon_sym__Complex] = ACTIONS(2030), - [anon_sym___complex] = ACTIONS(2030), - [anon_sym_IBOutlet] = ACTIONS(2030), - [anon_sym_IBInspectable] = ACTIONS(2030), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2030), - [anon_sym_COLON] = ACTIONS(2032), - [anon_sym_QMARK] = ACTIONS(2032), - [anon_sym_STAR_EQ] = ACTIONS(2032), - [anon_sym_SLASH_EQ] = ACTIONS(2032), - [anon_sym_PERCENT_EQ] = ACTIONS(2032), - [anon_sym_PLUS_EQ] = ACTIONS(2032), - [anon_sym_DASH_EQ] = ACTIONS(2032), - [anon_sym_LT_LT_EQ] = ACTIONS(2032), - [anon_sym_GT_GT_EQ] = ACTIONS(2032), - [anon_sym_AMP_EQ] = ACTIONS(2032), - [anon_sym_CARET_EQ] = ACTIONS(2032), - [anon_sym_PIPE_EQ] = ACTIONS(2032), - [anon_sym_DASH_DASH] = ACTIONS(2032), - [anon_sym_PLUS_PLUS] = ACTIONS(2032), - [anon_sym_DOT] = ACTIONS(2032), - [anon_sym_DASH_GT] = ACTIONS(2032), - [anon_sym_L_DQUOTE] = ACTIONS(2032), - [anon_sym_u_DQUOTE] = ACTIONS(2032), - [anon_sym_U_DQUOTE] = ACTIONS(2032), - [anon_sym_u8_DQUOTE] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(2030), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2030), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2030), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2030), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2030), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2030), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2030), - [anon_sym_NS_AVAILABLE] = ACTIONS(2030), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2030), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_API_AVAILABLE] = ACTIONS(2030), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2030), - [anon_sym_API_DEPRECATED] = ACTIONS(2030), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2030), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2030), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2030), - [anon_sym___deprecated_msg] = ACTIONS(2030), - [anon_sym___deprecated_enum_msg] = ACTIONS(2030), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2030), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2030), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2030), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2030), - [anon_sym_AT] = ACTIONS(2032), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2766] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(399), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2767] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(392), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2768] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(366), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2769] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(509), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2770] = { - [sym_protocol_qualifiers] = STATE(3397), - [sym_generic_type_references] = STATE(3397), - [aux_sym_generic_type_specifier_repeat1] = STATE(3397), - [sym_identifier] = ACTIONS(6841), - [anon_sym_COMMA] = ACTIONS(6822), - [anon_sym_LPAREN2] = ACTIONS(6843), - [anon_sym_DASH] = ACTIONS(6820), - [anon_sym_PLUS] = ACTIONS(6820), - [anon_sym_STAR] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6820), - [anon_sym_PERCENT] = ACTIONS(6820), - [anon_sym_PIPE_PIPE] = ACTIONS(6822), - [anon_sym_AMP_AMP] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6820), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_EQ_EQ] = ACTIONS(6822), - [anon_sym_BANG_EQ] = ACTIONS(6822), - [anon_sym_GT] = ACTIONS(6820), - [anon_sym_GT_EQ] = ACTIONS(6822), - [anon_sym_LT_EQ] = ACTIONS(6822), - [anon_sym_LT] = ACTIONS(6850), - [anon_sym_LT_LT] = ACTIONS(6820), - [anon_sym_GT_GT] = ACTIONS(6820), - [anon_sym_SEMI] = ACTIONS(6822), - [anon_sym_extern] = ACTIONS(6841), - [anon_sym___attribute] = ACTIONS(6841), - [anon_sym___attribute__] = ACTIONS(6841), - [anon_sym___declspec] = ACTIONS(6841), - [anon_sym___based] = ACTIONS(6841), - [anon_sym_LBRACK] = ACTIONS(6822), - [anon_sym_EQ] = ACTIONS(6853), - [anon_sym_static] = ACTIONS(6841), - [anon_sym_auto] = ACTIONS(6841), - [anon_sym_register] = ACTIONS(6841), - [anon_sym_inline] = ACTIONS(6841), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6841), - [anon_sym_const] = ACTIONS(6841), - [anon_sym_volatile] = ACTIONS(6841), - [anon_sym_restrict] = ACTIONS(6841), - [anon_sym__Atomic] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6841), - [anon_sym_out] = ACTIONS(6841), - [anon_sym_inout] = ACTIONS(6841), - [anon_sym_bycopy] = ACTIONS(6841), - [anon_sym_byref] = ACTIONS(6841), - [anon_sym_oneway] = ACTIONS(6841), - [anon_sym__Nullable] = ACTIONS(6841), - [anon_sym__Nonnull] = ACTIONS(6841), - [anon_sym__Nullable_result] = ACTIONS(6841), - [anon_sym__Null_unspecified] = ACTIONS(6841), - [anon_sym___autoreleasing] = ACTIONS(6841), - [anon_sym___nullable] = ACTIONS(6841), - [anon_sym___nonnull] = ACTIONS(6841), - [anon_sym___strong] = ACTIONS(6841), - [anon_sym___weak] = ACTIONS(6841), - [anon_sym___bridge] = ACTIONS(6841), - [anon_sym___bridge_transfer] = ACTIONS(6841), - [anon_sym___bridge_retained] = ACTIONS(6841), - [anon_sym___unsafe_unretained] = ACTIONS(6841), - [anon_sym___block] = ACTIONS(6841), - [anon_sym___kindof] = ACTIONS(6841), - [anon_sym___unused] = ACTIONS(6841), - [anon_sym__Complex] = ACTIONS(6841), - [anon_sym___complex] = ACTIONS(6841), - [anon_sym_IBOutlet] = ACTIONS(6841), - [anon_sym_IBInspectable] = ACTIONS(6841), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6841), - [anon_sym_COLON] = ACTIONS(6855), - [anon_sym_QMARK] = ACTIONS(6822), - [anon_sym_STAR_EQ] = ACTIONS(6857), - [anon_sym_SLASH_EQ] = ACTIONS(6857), - [anon_sym_PERCENT_EQ] = ACTIONS(6857), - [anon_sym_PLUS_EQ] = ACTIONS(6857), - [anon_sym_DASH_EQ] = ACTIONS(6857), - [anon_sym_LT_LT_EQ] = ACTIONS(6857), - [anon_sym_GT_GT_EQ] = ACTIONS(6857), - [anon_sym_AMP_EQ] = ACTIONS(6857), - [anon_sym_CARET_EQ] = ACTIONS(6857), - [anon_sym_PIPE_EQ] = ACTIONS(6857), - [anon_sym_DASH_DASH] = ACTIONS(6822), - [anon_sym_PLUS_PLUS] = ACTIONS(6822), - [anon_sym_DOT] = ACTIONS(6822), - [anon_sym_DASH_GT] = ACTIONS(6822), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6841), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6841), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE] = ACTIONS(6841), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_API_AVAILABLE] = ACTIONS(6841), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_API_DEPRECATED] = ACTIONS(6841), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6841), - [anon_sym___deprecated_msg] = ACTIONS(6841), - [anon_sym___deprecated_enum_msg] = ACTIONS(6841), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6841), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2771] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(287), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2772] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(301), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2773] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(304), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2774] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(221), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2775] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(188), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2776] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(127), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2777] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(187), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2778] = { - [sym_identifier] = ACTIONS(6859), - [aux_sym_preproc_def_token1] = ACTIONS(6861), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_typedef] = ACTIONS(6859), - [anon_sym_extern] = ACTIONS(6859), - [anon_sym___attribute] = ACTIONS(6859), - [anon_sym___attribute__] = ACTIONS(6859), - [anon_sym___declspec] = ACTIONS(6859), - [anon_sym___cdecl] = ACTIONS(6859), - [anon_sym___clrcall] = ACTIONS(6859), - [anon_sym___stdcall] = ACTIONS(6859), - [anon_sym___fastcall] = ACTIONS(6859), - [anon_sym___thiscall] = ACTIONS(6859), - [anon_sym___vectorcall] = ACTIONS(6859), - [anon_sym_LBRACE] = ACTIONS(6861), - [anon_sym_static] = ACTIONS(6859), - [anon_sym_auto] = ACTIONS(6859), - [anon_sym_register] = ACTIONS(6859), - [anon_sym_inline] = ACTIONS(6859), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6859), - [anon_sym_const] = ACTIONS(6859), - [anon_sym_volatile] = ACTIONS(6859), - [anon_sym_restrict] = ACTIONS(6859), - [anon_sym__Atomic] = ACTIONS(6859), - [anon_sym_in] = ACTIONS(6859), - [anon_sym_out] = ACTIONS(6859), - [anon_sym_inout] = ACTIONS(6859), - [anon_sym_bycopy] = ACTIONS(6859), - [anon_sym_byref] = ACTIONS(6859), - [anon_sym_oneway] = ACTIONS(6859), - [anon_sym__Nullable] = ACTIONS(6859), - [anon_sym__Nonnull] = ACTIONS(6859), - [anon_sym__Nullable_result] = ACTIONS(6859), - [anon_sym__Null_unspecified] = ACTIONS(6859), - [anon_sym___autoreleasing] = ACTIONS(6859), - [anon_sym___nullable] = ACTIONS(6859), - [anon_sym___nonnull] = ACTIONS(6859), - [anon_sym___strong] = ACTIONS(6859), - [anon_sym___weak] = ACTIONS(6859), - [anon_sym___bridge] = ACTIONS(6859), - [anon_sym___bridge_transfer] = ACTIONS(6859), - [anon_sym___bridge_retained] = ACTIONS(6859), - [anon_sym___unsafe_unretained] = ACTIONS(6859), - [anon_sym___block] = ACTIONS(6859), - [anon_sym___kindof] = ACTIONS(6859), - [anon_sym___unused] = ACTIONS(6859), - [anon_sym__Complex] = ACTIONS(6859), - [anon_sym___complex] = ACTIONS(6859), - [anon_sym_IBOutlet] = ACTIONS(6859), - [anon_sym_IBInspectable] = ACTIONS(6859), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6859), - [anon_sym_signed] = ACTIONS(6859), - [anon_sym_unsigned] = ACTIONS(6859), - [anon_sym_long] = ACTIONS(6859), - [anon_sym_short] = ACTIONS(6859), - [sym_primitive_type] = ACTIONS(6859), - [anon_sym_enum] = ACTIONS(6859), - [anon_sym_COLON] = ACTIONS(6861), - [anon_sym_NS_ENUM] = ACTIONS(6859), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(6859), - [anon_sym_NS_OPTIONS] = ACTIONS(6859), - [anon_sym_struct] = ACTIONS(6859), - [anon_sym_union] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6859), - [anon_sym_ATend] = ACTIONS(6861), - [sym_optional] = ACTIONS(6861), - [sym_required] = ACTIONS(6861), - [anon_sym_ATproperty] = ACTIONS(6861), - [sym_method_attribute_specifier] = ACTIONS(6859), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6859), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6859), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6859), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6859), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6859), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6859), - [anon_sym_NS_AVAILABLE] = ACTIONS(6859), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6859), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6859), - [anon_sym_API_AVAILABLE] = ACTIONS(6859), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6859), - [anon_sym_API_DEPRECATED] = ACTIONS(6859), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6859), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6859), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6859), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6859), - [anon_sym___deprecated_msg] = ACTIONS(6859), - [anon_sym___deprecated_enum_msg] = ACTIONS(6859), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6859), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6859), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6859), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6859), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6859), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6859), - [anon_sym_ATsynthesize] = ACTIONS(6861), - [anon_sym_ATdynamic] = ACTIONS(6861), - [anon_sym_typeof] = ACTIONS(6859), - [anon_sym___typeof] = ACTIONS(6859), - [anon_sym___typeof__] = ACTIONS(6859), - [sym_id] = ACTIONS(6859), - [sym_instancetype] = ACTIONS(6859), - [sym_Class] = ACTIONS(6859), - [sym_SEL] = ACTIONS(6859), - [sym_IMP] = ACTIONS(6859), - [sym_BOOL] = ACTIONS(6859), - [sym_auto] = ACTIONS(6859), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2779] = { - [sym_protocol_qualifiers] = STATE(3397), - [sym_generic_type_references] = STATE(3397), - [aux_sym_generic_type_specifier_repeat1] = STATE(3397), - [sym_identifier] = ACTIONS(6841), - [anon_sym_COMMA] = ACTIONS(6822), - [anon_sym_LPAREN2] = ACTIONS(6843), - [anon_sym_DASH] = ACTIONS(6820), - [anon_sym_PLUS] = ACTIONS(6820), - [anon_sym_STAR] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6820), - [anon_sym_PERCENT] = ACTIONS(6820), - [anon_sym_PIPE_PIPE] = ACTIONS(6822), - [anon_sym_AMP_AMP] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6820), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_EQ_EQ] = ACTIONS(6822), - [anon_sym_BANG_EQ] = ACTIONS(6822), - [anon_sym_GT] = ACTIONS(6820), - [anon_sym_GT_EQ] = ACTIONS(6822), - [anon_sym_LT_EQ] = ACTIONS(6822), - [anon_sym_LT] = ACTIONS(6850), - [anon_sym_LT_LT] = ACTIONS(6820), - [anon_sym_GT_GT] = ACTIONS(6820), - [anon_sym_SEMI] = ACTIONS(6822), - [anon_sym_extern] = ACTIONS(6841), - [anon_sym___attribute] = ACTIONS(6841), - [anon_sym___attribute__] = ACTIONS(6841), - [anon_sym___declspec] = ACTIONS(6841), - [anon_sym___based] = ACTIONS(6841), - [anon_sym_LBRACK] = ACTIONS(6822), - [anon_sym_EQ] = ACTIONS(6853), - [anon_sym_static] = ACTIONS(6841), - [anon_sym_auto] = ACTIONS(6841), - [anon_sym_register] = ACTIONS(6841), - [anon_sym_inline] = ACTIONS(6841), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6841), - [anon_sym_const] = ACTIONS(6841), - [anon_sym_volatile] = ACTIONS(6841), - [anon_sym_restrict] = ACTIONS(6841), - [anon_sym__Atomic] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6841), - [anon_sym_out] = ACTIONS(6841), - [anon_sym_inout] = ACTIONS(6841), - [anon_sym_bycopy] = ACTIONS(6841), - [anon_sym_byref] = ACTIONS(6841), - [anon_sym_oneway] = ACTIONS(6841), - [anon_sym__Nullable] = ACTIONS(6841), - [anon_sym__Nonnull] = ACTIONS(6841), - [anon_sym__Nullable_result] = ACTIONS(6841), - [anon_sym__Null_unspecified] = ACTIONS(6841), - [anon_sym___autoreleasing] = ACTIONS(6841), - [anon_sym___nullable] = ACTIONS(6841), - [anon_sym___nonnull] = ACTIONS(6841), - [anon_sym___strong] = ACTIONS(6841), - [anon_sym___weak] = ACTIONS(6841), - [anon_sym___bridge] = ACTIONS(6841), - [anon_sym___bridge_transfer] = ACTIONS(6841), - [anon_sym___bridge_retained] = ACTIONS(6841), - [anon_sym___unsafe_unretained] = ACTIONS(6841), - [anon_sym___block] = ACTIONS(6841), - [anon_sym___kindof] = ACTIONS(6841), - [anon_sym___unused] = ACTIONS(6841), - [anon_sym__Complex] = ACTIONS(6841), - [anon_sym___complex] = ACTIONS(6841), - [anon_sym_IBOutlet] = ACTIONS(6841), - [anon_sym_IBInspectable] = ACTIONS(6841), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6841), - [anon_sym_COLON] = ACTIONS(6863), - [anon_sym_QMARK] = ACTIONS(6822), - [anon_sym_STAR_EQ] = ACTIONS(6857), - [anon_sym_SLASH_EQ] = ACTIONS(6857), - [anon_sym_PERCENT_EQ] = ACTIONS(6857), - [anon_sym_PLUS_EQ] = ACTIONS(6857), - [anon_sym_DASH_EQ] = ACTIONS(6857), - [anon_sym_LT_LT_EQ] = ACTIONS(6857), - [anon_sym_GT_GT_EQ] = ACTIONS(6857), - [anon_sym_AMP_EQ] = ACTIONS(6857), - [anon_sym_CARET_EQ] = ACTIONS(6857), - [anon_sym_PIPE_EQ] = ACTIONS(6857), - [anon_sym_DASH_DASH] = ACTIONS(6822), - [anon_sym_PLUS_PLUS] = ACTIONS(6822), - [anon_sym_DOT] = ACTIONS(6822), - [anon_sym_DASH_GT] = ACTIONS(6822), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6841), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6841), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE] = ACTIONS(6841), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_API_AVAILABLE] = ACTIONS(6841), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_API_DEPRECATED] = ACTIONS(6841), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6841), - [anon_sym___deprecated_msg] = ACTIONS(6841), - [anon_sym___deprecated_enum_msg] = ACTIONS(6841), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6841), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2780] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(5744), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2781] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(324), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2782] = { - [sym_identifier] = ACTIONS(6865), - [anon_sym_COMMA] = ACTIONS(6867), - [anon_sym_RPAREN] = ACTIONS(6867), - [anon_sym_LPAREN2] = ACTIONS(6867), - [anon_sym_DASH] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(6865), - [anon_sym_STAR] = ACTIONS(6865), - [anon_sym_SLASH] = ACTIONS(6865), - [anon_sym_PERCENT] = ACTIONS(6865), - [anon_sym_PIPE_PIPE] = ACTIONS(6867), - [anon_sym_AMP_AMP] = ACTIONS(6867), - [anon_sym_PIPE] = ACTIONS(6865), - [anon_sym_CARET] = ACTIONS(6865), - [anon_sym_AMP] = ACTIONS(6865), - [anon_sym_EQ_EQ] = ACTIONS(6867), - [anon_sym_BANG_EQ] = ACTIONS(6867), - [anon_sym_GT] = ACTIONS(6865), - [anon_sym_GT_EQ] = ACTIONS(6867), - [anon_sym_LT_EQ] = ACTIONS(6867), - [anon_sym_LT] = ACTIONS(6865), - [anon_sym_LT_LT] = ACTIONS(6865), - [anon_sym_GT_GT] = ACTIONS(6865), - [anon_sym_SEMI] = ACTIONS(6867), - [anon_sym___attribute] = ACTIONS(6865), - [anon_sym___attribute__] = ACTIONS(6865), - [anon_sym_RBRACE] = ACTIONS(6867), - [anon_sym_LBRACK] = ACTIONS(6867), - [anon_sym_RBRACK] = ACTIONS(6867), - [anon_sym_EQ] = ACTIONS(6865), - [anon_sym_const] = ACTIONS(6865), - [anon_sym_volatile] = ACTIONS(6865), - [anon_sym_restrict] = ACTIONS(6865), - [anon_sym__Atomic] = ACTIONS(6865), - [anon_sym_in] = ACTIONS(6865), - [anon_sym_out] = ACTIONS(6865), - [anon_sym_inout] = ACTIONS(6865), - [anon_sym_bycopy] = ACTIONS(6865), - [anon_sym_byref] = ACTIONS(6865), - [anon_sym_oneway] = ACTIONS(6865), - [anon_sym__Nullable] = ACTIONS(6865), - [anon_sym__Nonnull] = ACTIONS(6865), - [anon_sym__Nullable_result] = ACTIONS(6865), - [anon_sym__Null_unspecified] = ACTIONS(6865), - [anon_sym___autoreleasing] = ACTIONS(6865), - [anon_sym___nullable] = ACTIONS(6865), - [anon_sym___nonnull] = ACTIONS(6865), - [anon_sym___strong] = ACTIONS(6865), - [anon_sym___weak] = ACTIONS(6865), - [anon_sym___bridge] = ACTIONS(6865), - [anon_sym___bridge_transfer] = ACTIONS(6865), - [anon_sym___bridge_retained] = ACTIONS(6865), - [anon_sym___unsafe_unretained] = ACTIONS(6865), - [anon_sym___block] = ACTIONS(6865), - [anon_sym___kindof] = ACTIONS(6865), - [anon_sym___unused] = ACTIONS(6865), - [anon_sym__Complex] = ACTIONS(6865), - [anon_sym___complex] = ACTIONS(6865), - [anon_sym_IBOutlet] = ACTIONS(6865), - [anon_sym_IBInspectable] = ACTIONS(6865), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6865), - [anon_sym_COLON] = ACTIONS(6867), - [anon_sym_QMARK] = ACTIONS(6867), - [anon_sym_STAR_EQ] = ACTIONS(6867), - [anon_sym_SLASH_EQ] = ACTIONS(6867), - [anon_sym_PERCENT_EQ] = ACTIONS(6867), - [anon_sym_PLUS_EQ] = ACTIONS(6867), - [anon_sym_DASH_EQ] = ACTIONS(6867), - [anon_sym_LT_LT_EQ] = ACTIONS(6867), - [anon_sym_GT_GT_EQ] = ACTIONS(6867), - [anon_sym_AMP_EQ] = ACTIONS(6867), - [anon_sym_CARET_EQ] = ACTIONS(6867), - [anon_sym_PIPE_EQ] = ACTIONS(6867), - [anon_sym_DASH_DASH] = ACTIONS(6867), - [anon_sym_PLUS_PLUS] = ACTIONS(6867), - [anon_sym_DOT] = ACTIONS(6867), - [anon_sym_DASH_GT] = ACTIONS(6867), - [anon_sym_L_DQUOTE] = ACTIONS(6867), - [anon_sym_u_DQUOTE] = ACTIONS(6867), - [anon_sym_U_DQUOTE] = ACTIONS(6867), - [anon_sym_u8_DQUOTE] = ACTIONS(6867), - [anon_sym_DQUOTE] = ACTIONS(6867), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6865), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6865), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6865), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6865), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6865), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6865), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6865), - [anon_sym_NS_AVAILABLE] = ACTIONS(6865), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6865), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6865), - [anon_sym_API_AVAILABLE] = ACTIONS(6865), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6865), - [anon_sym_API_DEPRECATED] = ACTIONS(6865), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6865), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6865), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6865), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6865), - [anon_sym___deprecated_msg] = ACTIONS(6865), - [anon_sym___deprecated_enum_msg] = ACTIONS(6865), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6865), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6865), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6865), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6865), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6865), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6865), - [anon_sym_AT] = ACTIONS(6867), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2783] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(214), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2784] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(215), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2785] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(120), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2786] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(466), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2787] = { - [sym_protocol_qualifiers] = STATE(3397), - [sym_generic_type_references] = STATE(3397), - [aux_sym_generic_type_specifier_repeat1] = STATE(3397), - [sym_identifier] = ACTIONS(6841), - [anon_sym_COMMA] = ACTIONS(6822), - [anon_sym_LPAREN2] = ACTIONS(6843), - [anon_sym_DASH] = ACTIONS(6820), - [anon_sym_PLUS] = ACTIONS(6820), - [anon_sym_STAR] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6820), - [anon_sym_PERCENT] = ACTIONS(6820), - [anon_sym_PIPE_PIPE] = ACTIONS(6822), - [anon_sym_AMP_AMP] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6820), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_EQ_EQ] = ACTIONS(6822), - [anon_sym_BANG_EQ] = ACTIONS(6822), - [anon_sym_GT] = ACTIONS(6820), - [anon_sym_GT_EQ] = ACTIONS(6822), - [anon_sym_LT_EQ] = ACTIONS(6822), - [anon_sym_LT] = ACTIONS(6850), - [anon_sym_LT_LT] = ACTIONS(6820), - [anon_sym_GT_GT] = ACTIONS(6820), - [anon_sym_SEMI] = ACTIONS(6822), - [anon_sym_extern] = ACTIONS(6841), - [anon_sym___attribute] = ACTIONS(6841), - [anon_sym___attribute__] = ACTIONS(6841), - [anon_sym___declspec] = ACTIONS(6841), - [anon_sym___based] = ACTIONS(6841), - [anon_sym_LBRACK] = ACTIONS(6822), - [anon_sym_EQ] = ACTIONS(6853), - [anon_sym_static] = ACTIONS(6841), - [anon_sym_auto] = ACTIONS(6841), - [anon_sym_register] = ACTIONS(6841), - [anon_sym_inline] = ACTIONS(6841), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6841), - [anon_sym_const] = ACTIONS(6841), - [anon_sym_volatile] = ACTIONS(6841), - [anon_sym_restrict] = ACTIONS(6841), - [anon_sym__Atomic] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6841), - [anon_sym_out] = ACTIONS(6841), - [anon_sym_inout] = ACTIONS(6841), - [anon_sym_bycopy] = ACTIONS(6841), - [anon_sym_byref] = ACTIONS(6841), - [anon_sym_oneway] = ACTIONS(6841), - [anon_sym__Nullable] = ACTIONS(6841), - [anon_sym__Nonnull] = ACTIONS(6841), - [anon_sym__Nullable_result] = ACTIONS(6841), - [anon_sym__Null_unspecified] = ACTIONS(6841), - [anon_sym___autoreleasing] = ACTIONS(6841), - [anon_sym___nullable] = ACTIONS(6841), - [anon_sym___nonnull] = ACTIONS(6841), - [anon_sym___strong] = ACTIONS(6841), - [anon_sym___weak] = ACTIONS(6841), - [anon_sym___bridge] = ACTIONS(6841), - [anon_sym___bridge_transfer] = ACTIONS(6841), - [anon_sym___bridge_retained] = ACTIONS(6841), - [anon_sym___unsafe_unretained] = ACTIONS(6841), - [anon_sym___block] = ACTIONS(6841), - [anon_sym___kindof] = ACTIONS(6841), - [anon_sym___unused] = ACTIONS(6841), - [anon_sym__Complex] = ACTIONS(6841), - [anon_sym___complex] = ACTIONS(6841), - [anon_sym_IBOutlet] = ACTIONS(6841), - [anon_sym_IBInspectable] = ACTIONS(6841), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6841), - [anon_sym_COLON] = ACTIONS(6869), - [anon_sym_QMARK] = ACTIONS(6822), - [anon_sym_STAR_EQ] = ACTIONS(6857), - [anon_sym_SLASH_EQ] = ACTIONS(6857), - [anon_sym_PERCENT_EQ] = ACTIONS(6857), - [anon_sym_PLUS_EQ] = ACTIONS(6857), - [anon_sym_DASH_EQ] = ACTIONS(6857), - [anon_sym_LT_LT_EQ] = ACTIONS(6857), - [anon_sym_GT_GT_EQ] = ACTIONS(6857), - [anon_sym_AMP_EQ] = ACTIONS(6857), - [anon_sym_CARET_EQ] = ACTIONS(6857), - [anon_sym_PIPE_EQ] = ACTIONS(6857), - [anon_sym_DASH_DASH] = ACTIONS(6822), - [anon_sym_PLUS_PLUS] = ACTIONS(6822), - [anon_sym_DOT] = ACTIONS(6822), - [anon_sym_DASH_GT] = ACTIONS(6822), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6841), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6841), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE] = ACTIONS(6841), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_API_AVAILABLE] = ACTIONS(6841), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_API_DEPRECATED] = ACTIONS(6841), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6841), - [anon_sym___deprecated_msg] = ACTIONS(6841), - [anon_sym___deprecated_enum_msg] = ACTIONS(6841), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6841), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2788] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(476), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2789] = { - [sym_protocol_qualifiers] = STATE(3397), - [sym_generic_type_references] = STATE(3397), - [aux_sym_generic_type_specifier_repeat1] = STATE(3397), - [sym_identifier] = ACTIONS(6841), - [anon_sym_COMMA] = ACTIONS(6822), - [anon_sym_LPAREN2] = ACTIONS(6843), - [anon_sym_DASH] = ACTIONS(6820), - [anon_sym_PLUS] = ACTIONS(6820), - [anon_sym_STAR] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6820), - [anon_sym_PERCENT] = ACTIONS(6820), - [anon_sym_PIPE_PIPE] = ACTIONS(6822), - [anon_sym_AMP_AMP] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6820), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_EQ_EQ] = ACTIONS(6822), - [anon_sym_BANG_EQ] = ACTIONS(6822), - [anon_sym_GT] = ACTIONS(6820), - [anon_sym_GT_EQ] = ACTIONS(6822), - [anon_sym_LT_EQ] = ACTIONS(6822), - [anon_sym_LT] = ACTIONS(6850), - [anon_sym_LT_LT] = ACTIONS(6820), - [anon_sym_GT_GT] = ACTIONS(6820), - [anon_sym_SEMI] = ACTIONS(6871), - [anon_sym_extern] = ACTIONS(6841), - [anon_sym___attribute] = ACTIONS(6841), - [anon_sym___attribute__] = ACTIONS(6841), - [anon_sym___declspec] = ACTIONS(6841), - [anon_sym___based] = ACTIONS(6841), - [anon_sym_LBRACK] = ACTIONS(6822), - [anon_sym_EQ] = ACTIONS(6853), - [anon_sym_static] = ACTIONS(6841), - [anon_sym_auto] = ACTIONS(6841), - [anon_sym_register] = ACTIONS(6841), - [anon_sym_inline] = ACTIONS(6841), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6841), - [anon_sym_const] = ACTIONS(6841), - [anon_sym_volatile] = ACTIONS(6841), - [anon_sym_restrict] = ACTIONS(6841), - [anon_sym__Atomic] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6841), - [anon_sym_out] = ACTIONS(6841), - [anon_sym_inout] = ACTIONS(6841), - [anon_sym_bycopy] = ACTIONS(6841), - [anon_sym_byref] = ACTIONS(6841), - [anon_sym_oneway] = ACTIONS(6841), - [anon_sym__Nullable] = ACTIONS(6841), - [anon_sym__Nonnull] = ACTIONS(6841), - [anon_sym__Nullable_result] = ACTIONS(6841), - [anon_sym__Null_unspecified] = ACTIONS(6841), - [anon_sym___autoreleasing] = ACTIONS(6841), - [anon_sym___nullable] = ACTIONS(6841), - [anon_sym___nonnull] = ACTIONS(6841), - [anon_sym___strong] = ACTIONS(6841), - [anon_sym___weak] = ACTIONS(6841), - [anon_sym___bridge] = ACTIONS(6841), - [anon_sym___bridge_transfer] = ACTIONS(6841), - [anon_sym___bridge_retained] = ACTIONS(6841), - [anon_sym___unsafe_unretained] = ACTIONS(6841), - [anon_sym___block] = ACTIONS(6841), - [anon_sym___kindof] = ACTIONS(6841), - [anon_sym___unused] = ACTIONS(6841), - [anon_sym__Complex] = ACTIONS(6841), - [anon_sym___complex] = ACTIONS(6841), - [anon_sym_IBOutlet] = ACTIONS(6841), - [anon_sym_IBInspectable] = ACTIONS(6841), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6841), - [anon_sym_COLON] = ACTIONS(6855), - [anon_sym_QMARK] = ACTIONS(6822), - [anon_sym_STAR_EQ] = ACTIONS(6857), - [anon_sym_SLASH_EQ] = ACTIONS(6857), - [anon_sym_PERCENT_EQ] = ACTIONS(6857), - [anon_sym_PLUS_EQ] = ACTIONS(6857), - [anon_sym_DASH_EQ] = ACTIONS(6857), - [anon_sym_LT_LT_EQ] = ACTIONS(6857), - [anon_sym_GT_GT_EQ] = ACTIONS(6857), - [anon_sym_AMP_EQ] = ACTIONS(6857), - [anon_sym_CARET_EQ] = ACTIONS(6857), - [anon_sym_PIPE_EQ] = ACTIONS(6857), - [anon_sym_DASH_DASH] = ACTIONS(6822), - [anon_sym_PLUS_PLUS] = ACTIONS(6822), - [anon_sym_DOT] = ACTIONS(6822), - [anon_sym_DASH_GT] = ACTIONS(6822), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6841), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6841), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE] = ACTIONS(6841), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_API_AVAILABLE] = ACTIONS(6841), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_API_DEPRECATED] = ACTIONS(6841), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6841), - [anon_sym___deprecated_msg] = ACTIONS(6841), - [anon_sym___deprecated_enum_msg] = ACTIONS(6841), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6841), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2790] = { - [sym_identifier] = ACTIONS(6874), - [aux_sym_preproc_def_token1] = ACTIONS(6876), - [anon_sym_DASH] = ACTIONS(6876), - [anon_sym_PLUS] = ACTIONS(6876), - [anon_sym_LT] = ACTIONS(6876), - [anon_sym_typedef] = ACTIONS(6874), - [anon_sym_extern] = ACTIONS(6874), - [anon_sym___attribute] = ACTIONS(6874), - [anon_sym___attribute__] = ACTIONS(6874), - [anon_sym___declspec] = ACTIONS(6874), - [anon_sym___cdecl] = ACTIONS(6874), - [anon_sym___clrcall] = ACTIONS(6874), - [anon_sym___stdcall] = ACTIONS(6874), - [anon_sym___fastcall] = ACTIONS(6874), - [anon_sym___thiscall] = ACTIONS(6874), - [anon_sym___vectorcall] = ACTIONS(6874), - [anon_sym_LBRACE] = ACTIONS(6876), - [anon_sym_static] = ACTIONS(6874), - [anon_sym_auto] = ACTIONS(6874), - [anon_sym_register] = ACTIONS(6874), - [anon_sym_inline] = ACTIONS(6874), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6874), - [anon_sym_const] = ACTIONS(6874), - [anon_sym_volatile] = ACTIONS(6874), - [anon_sym_restrict] = ACTIONS(6874), - [anon_sym__Atomic] = ACTIONS(6874), - [anon_sym_in] = ACTIONS(6874), - [anon_sym_out] = ACTIONS(6874), - [anon_sym_inout] = ACTIONS(6874), - [anon_sym_bycopy] = ACTIONS(6874), - [anon_sym_byref] = ACTIONS(6874), - [anon_sym_oneway] = ACTIONS(6874), - [anon_sym__Nullable] = ACTIONS(6874), - [anon_sym__Nonnull] = ACTIONS(6874), - [anon_sym__Nullable_result] = ACTIONS(6874), - [anon_sym__Null_unspecified] = ACTIONS(6874), - [anon_sym___autoreleasing] = ACTIONS(6874), - [anon_sym___nullable] = ACTIONS(6874), - [anon_sym___nonnull] = ACTIONS(6874), - [anon_sym___strong] = ACTIONS(6874), - [anon_sym___weak] = ACTIONS(6874), - [anon_sym___bridge] = ACTIONS(6874), - [anon_sym___bridge_transfer] = ACTIONS(6874), - [anon_sym___bridge_retained] = ACTIONS(6874), - [anon_sym___unsafe_unretained] = ACTIONS(6874), - [anon_sym___block] = ACTIONS(6874), - [anon_sym___kindof] = ACTIONS(6874), - [anon_sym___unused] = ACTIONS(6874), - [anon_sym__Complex] = ACTIONS(6874), - [anon_sym___complex] = ACTIONS(6874), - [anon_sym_IBOutlet] = ACTIONS(6874), - [anon_sym_IBInspectable] = ACTIONS(6874), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6874), - [anon_sym_signed] = ACTIONS(6874), - [anon_sym_unsigned] = ACTIONS(6874), - [anon_sym_long] = ACTIONS(6874), - [anon_sym_short] = ACTIONS(6874), - [sym_primitive_type] = ACTIONS(6874), - [anon_sym_enum] = ACTIONS(6874), - [anon_sym_COLON] = ACTIONS(6876), - [anon_sym_NS_ENUM] = ACTIONS(6874), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(6874), - [anon_sym_NS_OPTIONS] = ACTIONS(6874), - [anon_sym_struct] = ACTIONS(6874), - [anon_sym_union] = ACTIONS(6874), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6874), - [anon_sym_ATend] = ACTIONS(6876), - [sym_optional] = ACTIONS(6876), - [sym_required] = ACTIONS(6876), - [anon_sym_ATproperty] = ACTIONS(6876), - [sym_method_attribute_specifier] = ACTIONS(6874), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6874), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6874), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6874), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6874), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6874), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6874), - [anon_sym_NS_AVAILABLE] = ACTIONS(6874), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6874), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6874), - [anon_sym_API_AVAILABLE] = ACTIONS(6874), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6874), - [anon_sym_API_DEPRECATED] = ACTIONS(6874), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6874), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6874), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6874), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6874), - [anon_sym___deprecated_msg] = ACTIONS(6874), - [anon_sym___deprecated_enum_msg] = ACTIONS(6874), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6874), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6874), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6874), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6874), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6874), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6874), - [anon_sym_ATsynthesize] = ACTIONS(6876), - [anon_sym_ATdynamic] = ACTIONS(6876), - [anon_sym_typeof] = ACTIONS(6874), - [anon_sym___typeof] = ACTIONS(6874), - [anon_sym___typeof__] = ACTIONS(6874), - [sym_id] = ACTIONS(6874), - [sym_instancetype] = ACTIONS(6874), - [sym_Class] = ACTIONS(6874), - [sym_SEL] = ACTIONS(6874), - [sym_IMP] = ACTIONS(6874), - [sym_BOOL] = ACTIONS(6874), - [sym_auto] = ACTIONS(6874), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2791] = { - [sym_protocol_qualifiers] = STATE(3397), - [sym_generic_type_references] = STATE(3397), - [aux_sym_generic_type_specifier_repeat1] = STATE(3397), - [sym_identifier] = ACTIONS(6841), - [anon_sym_COMMA] = ACTIONS(6822), - [anon_sym_LPAREN2] = ACTIONS(6843), - [anon_sym_DASH] = ACTIONS(6820), - [anon_sym_PLUS] = ACTIONS(6820), - [anon_sym_STAR] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6820), - [anon_sym_PERCENT] = ACTIONS(6820), - [anon_sym_PIPE_PIPE] = ACTIONS(6822), - [anon_sym_AMP_AMP] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6820), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_EQ_EQ] = ACTIONS(6822), - [anon_sym_BANG_EQ] = ACTIONS(6822), - [anon_sym_GT] = ACTIONS(6820), - [anon_sym_GT_EQ] = ACTIONS(6822), - [anon_sym_LT_EQ] = ACTIONS(6822), - [anon_sym_LT] = ACTIONS(6850), - [anon_sym_LT_LT] = ACTIONS(6820), - [anon_sym_GT_GT] = ACTIONS(6820), - [anon_sym_SEMI] = ACTIONS(6871), - [anon_sym_extern] = ACTIONS(6841), - [anon_sym___attribute] = ACTIONS(6841), - [anon_sym___attribute__] = ACTIONS(6841), - [anon_sym___declspec] = ACTIONS(6841), - [anon_sym___based] = ACTIONS(6841), - [anon_sym_LBRACK] = ACTIONS(6822), - [anon_sym_EQ] = ACTIONS(6853), - [anon_sym_static] = ACTIONS(6841), - [anon_sym_auto] = ACTIONS(6841), - [anon_sym_register] = ACTIONS(6841), - [anon_sym_inline] = ACTIONS(6841), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6841), - [anon_sym_const] = ACTIONS(6841), - [anon_sym_volatile] = ACTIONS(6841), - [anon_sym_restrict] = ACTIONS(6841), - [anon_sym__Atomic] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6841), - [anon_sym_out] = ACTIONS(6841), - [anon_sym_inout] = ACTIONS(6841), - [anon_sym_bycopy] = ACTIONS(6841), - [anon_sym_byref] = ACTIONS(6841), - [anon_sym_oneway] = ACTIONS(6841), - [anon_sym__Nullable] = ACTIONS(6841), - [anon_sym__Nonnull] = ACTIONS(6841), - [anon_sym__Nullable_result] = ACTIONS(6841), - [anon_sym__Null_unspecified] = ACTIONS(6841), - [anon_sym___autoreleasing] = ACTIONS(6841), - [anon_sym___nullable] = ACTIONS(6841), - [anon_sym___nonnull] = ACTIONS(6841), - [anon_sym___strong] = ACTIONS(6841), - [anon_sym___weak] = ACTIONS(6841), - [anon_sym___bridge] = ACTIONS(6841), - [anon_sym___bridge_transfer] = ACTIONS(6841), - [anon_sym___bridge_retained] = ACTIONS(6841), - [anon_sym___unsafe_unretained] = ACTIONS(6841), - [anon_sym___block] = ACTIONS(6841), - [anon_sym___kindof] = ACTIONS(6841), - [anon_sym___unused] = ACTIONS(6841), - [anon_sym__Complex] = ACTIONS(6841), - [anon_sym___complex] = ACTIONS(6841), - [anon_sym_IBOutlet] = ACTIONS(6841), - [anon_sym_IBInspectable] = ACTIONS(6841), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6841), - [anon_sym_COLON] = ACTIONS(6863), - [anon_sym_QMARK] = ACTIONS(6822), - [anon_sym_STAR_EQ] = ACTIONS(6857), - [anon_sym_SLASH_EQ] = ACTIONS(6857), - [anon_sym_PERCENT_EQ] = ACTIONS(6857), - [anon_sym_PLUS_EQ] = ACTIONS(6857), - [anon_sym_DASH_EQ] = ACTIONS(6857), - [anon_sym_LT_LT_EQ] = ACTIONS(6857), - [anon_sym_GT_GT_EQ] = ACTIONS(6857), - [anon_sym_AMP_EQ] = ACTIONS(6857), - [anon_sym_CARET_EQ] = ACTIONS(6857), - [anon_sym_PIPE_EQ] = ACTIONS(6857), - [anon_sym_DASH_DASH] = ACTIONS(6822), - [anon_sym_PLUS_PLUS] = ACTIONS(6822), - [anon_sym_DOT] = ACTIONS(6822), - [anon_sym_DASH_GT] = ACTIONS(6822), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6841), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6841), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE] = ACTIONS(6841), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_API_AVAILABLE] = ACTIONS(6841), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_API_DEPRECATED] = ACTIONS(6841), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6841), - [anon_sym___deprecated_msg] = ACTIONS(6841), - [anon_sym___deprecated_enum_msg] = ACTIONS(6841), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6841), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2792] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(122), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2793] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(482), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2794] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(483), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2795] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(484), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2796] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(180), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2797] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(126), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2798] = { - [sym_identifier] = ACTIONS(6878), - [anon_sym_COMMA] = ACTIONS(6880), - [anon_sym_RPAREN] = ACTIONS(6880), - [anon_sym_LPAREN2] = ACTIONS(6880), - [anon_sym_DASH] = ACTIONS(6878), - [anon_sym_PLUS] = ACTIONS(6878), - [anon_sym_STAR] = ACTIONS(6878), - [anon_sym_SLASH] = ACTIONS(6878), - [anon_sym_PERCENT] = ACTIONS(6878), - [anon_sym_PIPE_PIPE] = ACTIONS(6880), - [anon_sym_AMP_AMP] = ACTIONS(6880), - [anon_sym_PIPE] = ACTIONS(6878), - [anon_sym_CARET] = ACTIONS(6878), - [anon_sym_AMP] = ACTIONS(6878), - [anon_sym_EQ_EQ] = ACTIONS(6880), - [anon_sym_BANG_EQ] = ACTIONS(6880), - [anon_sym_GT] = ACTIONS(6878), - [anon_sym_GT_EQ] = ACTIONS(6880), - [anon_sym_LT_EQ] = ACTIONS(6880), - [anon_sym_LT] = ACTIONS(6878), - [anon_sym_LT_LT] = ACTIONS(6878), - [anon_sym_GT_GT] = ACTIONS(6878), - [anon_sym_SEMI] = ACTIONS(6880), - [anon_sym___attribute] = ACTIONS(6878), - [anon_sym___attribute__] = ACTIONS(6878), - [anon_sym_RBRACE] = ACTIONS(6880), - [anon_sym_LBRACK] = ACTIONS(6880), - [anon_sym_RBRACK] = ACTIONS(6880), - [anon_sym_EQ] = ACTIONS(6878), - [anon_sym_const] = ACTIONS(6878), - [anon_sym_volatile] = ACTIONS(6878), - [anon_sym_restrict] = ACTIONS(6878), - [anon_sym__Atomic] = ACTIONS(6878), - [anon_sym_in] = ACTIONS(6878), - [anon_sym_out] = ACTIONS(6878), - [anon_sym_inout] = ACTIONS(6878), - [anon_sym_bycopy] = ACTIONS(6878), - [anon_sym_byref] = ACTIONS(6878), - [anon_sym_oneway] = ACTIONS(6878), - [anon_sym__Nullable] = ACTIONS(6878), - [anon_sym__Nonnull] = ACTIONS(6878), - [anon_sym__Nullable_result] = ACTIONS(6878), - [anon_sym__Null_unspecified] = ACTIONS(6878), - [anon_sym___autoreleasing] = ACTIONS(6878), - [anon_sym___nullable] = ACTIONS(6878), - [anon_sym___nonnull] = ACTIONS(6878), - [anon_sym___strong] = ACTIONS(6878), - [anon_sym___weak] = ACTIONS(6878), - [anon_sym___bridge] = ACTIONS(6878), - [anon_sym___bridge_transfer] = ACTIONS(6878), - [anon_sym___bridge_retained] = ACTIONS(6878), - [anon_sym___unsafe_unretained] = ACTIONS(6878), - [anon_sym___block] = ACTIONS(6878), - [anon_sym___kindof] = ACTIONS(6878), - [anon_sym___unused] = ACTIONS(6878), - [anon_sym__Complex] = ACTIONS(6878), - [anon_sym___complex] = ACTIONS(6878), - [anon_sym_IBOutlet] = ACTIONS(6878), - [anon_sym_IBInspectable] = ACTIONS(6878), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6878), - [anon_sym_COLON] = ACTIONS(6880), - [anon_sym_QMARK] = ACTIONS(6880), - [anon_sym_STAR_EQ] = ACTIONS(6880), - [anon_sym_SLASH_EQ] = ACTIONS(6880), - [anon_sym_PERCENT_EQ] = ACTIONS(6880), - [anon_sym_PLUS_EQ] = ACTIONS(6880), - [anon_sym_DASH_EQ] = ACTIONS(6880), - [anon_sym_LT_LT_EQ] = ACTIONS(6880), - [anon_sym_GT_GT_EQ] = ACTIONS(6880), - [anon_sym_AMP_EQ] = ACTIONS(6880), - [anon_sym_CARET_EQ] = ACTIONS(6880), - [anon_sym_PIPE_EQ] = ACTIONS(6880), - [anon_sym_DASH_DASH] = ACTIONS(6880), - [anon_sym_PLUS_PLUS] = ACTIONS(6880), - [anon_sym_DOT] = ACTIONS(6880), - [anon_sym_DASH_GT] = ACTIONS(6880), - [anon_sym_L_DQUOTE] = ACTIONS(6880), - [anon_sym_u_DQUOTE] = ACTIONS(6880), - [anon_sym_U_DQUOTE] = ACTIONS(6880), - [anon_sym_u8_DQUOTE] = ACTIONS(6880), - [anon_sym_DQUOTE] = ACTIONS(6880), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6878), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6878), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6878), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6878), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6878), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6878), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6878), - [anon_sym_NS_AVAILABLE] = ACTIONS(6878), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6878), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6878), - [anon_sym_API_AVAILABLE] = ACTIONS(6878), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6878), - [anon_sym_API_DEPRECATED] = ACTIONS(6878), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6878), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6878), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6878), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6878), - [anon_sym___deprecated_msg] = ACTIONS(6878), - [anon_sym___deprecated_enum_msg] = ACTIONS(6878), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6878), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6878), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6878), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6878), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6878), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6878), - [anon_sym_AT] = ACTIONS(6880), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2799] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(66), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2800] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(101), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2801] = { - [sym_identifier] = ACTIONS(6882), - [aux_sym_preproc_def_token1] = ACTIONS(6884), - [anon_sym_DASH] = ACTIONS(6884), - [anon_sym_PLUS] = ACTIONS(6884), - [anon_sym_LT] = ACTIONS(6884), - [anon_sym_typedef] = ACTIONS(6882), - [anon_sym_extern] = ACTIONS(6882), - [anon_sym___attribute] = ACTIONS(6882), - [anon_sym___attribute__] = ACTIONS(6882), - [anon_sym___declspec] = ACTIONS(6882), - [anon_sym___cdecl] = ACTIONS(6882), - [anon_sym___clrcall] = ACTIONS(6882), - [anon_sym___stdcall] = ACTIONS(6882), - [anon_sym___fastcall] = ACTIONS(6882), - [anon_sym___thiscall] = ACTIONS(6882), - [anon_sym___vectorcall] = ACTIONS(6882), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_static] = ACTIONS(6882), - [anon_sym_auto] = ACTIONS(6882), - [anon_sym_register] = ACTIONS(6882), - [anon_sym_inline] = ACTIONS(6882), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6882), - [anon_sym_const] = ACTIONS(6882), - [anon_sym_volatile] = ACTIONS(6882), - [anon_sym_restrict] = ACTIONS(6882), - [anon_sym__Atomic] = ACTIONS(6882), - [anon_sym_in] = ACTIONS(6882), - [anon_sym_out] = ACTIONS(6882), - [anon_sym_inout] = ACTIONS(6882), - [anon_sym_bycopy] = ACTIONS(6882), - [anon_sym_byref] = ACTIONS(6882), - [anon_sym_oneway] = ACTIONS(6882), - [anon_sym__Nullable] = ACTIONS(6882), - [anon_sym__Nonnull] = ACTIONS(6882), - [anon_sym__Nullable_result] = ACTIONS(6882), - [anon_sym__Null_unspecified] = ACTIONS(6882), - [anon_sym___autoreleasing] = ACTIONS(6882), - [anon_sym___nullable] = ACTIONS(6882), - [anon_sym___nonnull] = ACTIONS(6882), - [anon_sym___strong] = ACTIONS(6882), - [anon_sym___weak] = ACTIONS(6882), - [anon_sym___bridge] = ACTIONS(6882), - [anon_sym___bridge_transfer] = ACTIONS(6882), - [anon_sym___bridge_retained] = ACTIONS(6882), - [anon_sym___unsafe_unretained] = ACTIONS(6882), - [anon_sym___block] = ACTIONS(6882), - [anon_sym___kindof] = ACTIONS(6882), - [anon_sym___unused] = ACTIONS(6882), - [anon_sym__Complex] = ACTIONS(6882), - [anon_sym___complex] = ACTIONS(6882), - [anon_sym_IBOutlet] = ACTIONS(6882), - [anon_sym_IBInspectable] = ACTIONS(6882), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6882), - [anon_sym_signed] = ACTIONS(6882), - [anon_sym_unsigned] = ACTIONS(6882), - [anon_sym_long] = ACTIONS(6882), - [anon_sym_short] = ACTIONS(6882), - [sym_primitive_type] = ACTIONS(6882), - [anon_sym_enum] = ACTIONS(6882), - [anon_sym_COLON] = ACTIONS(6884), - [anon_sym_NS_ENUM] = ACTIONS(6882), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(6882), - [anon_sym_NS_OPTIONS] = ACTIONS(6882), - [anon_sym_struct] = ACTIONS(6882), - [anon_sym_union] = ACTIONS(6882), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6882), - [anon_sym_ATend] = ACTIONS(6884), - [sym_optional] = ACTIONS(6884), - [sym_required] = ACTIONS(6884), - [anon_sym_ATproperty] = ACTIONS(6884), - [sym_method_attribute_specifier] = ACTIONS(6882), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6882), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6882), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6882), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6882), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6882), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6882), - [anon_sym_NS_AVAILABLE] = ACTIONS(6882), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6882), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6882), - [anon_sym_API_AVAILABLE] = ACTIONS(6882), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6882), - [anon_sym_API_DEPRECATED] = ACTIONS(6882), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6882), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6882), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6882), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6882), - [anon_sym___deprecated_msg] = ACTIONS(6882), - [anon_sym___deprecated_enum_msg] = ACTIONS(6882), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6882), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6882), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6882), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6882), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6882), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6882), - [anon_sym_ATsynthesize] = ACTIONS(6884), - [anon_sym_ATdynamic] = ACTIONS(6884), - [anon_sym_typeof] = ACTIONS(6882), - [anon_sym___typeof] = ACTIONS(6882), - [anon_sym___typeof__] = ACTIONS(6882), - [sym_id] = ACTIONS(6882), - [sym_instancetype] = ACTIONS(6882), - [sym_Class] = ACTIONS(6882), - [sym_SEL] = ACTIONS(6882), - [sym_IMP] = ACTIONS(6882), - [sym_BOOL] = ACTIONS(6882), - [sym_auto] = ACTIONS(6882), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2802] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(81), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2803] = { - [sym__declaration_specifiers] = STATE(4703), - [sym_attribute_specifier] = STATE(3367), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4317), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_typedef] = ACTIONS(6886), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(6888), - [anon_sym_ATinterface] = ACTIONS(6890), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2804] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(361), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2805] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(286), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2806] = { - [sym_identifier] = ACTIONS(2022), - [anon_sym_COMMA] = ACTIONS(2024), - [anon_sym_RPAREN] = ACTIONS(2024), - [anon_sym_LPAREN2] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2022), - [anon_sym_PLUS] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(2022), - [anon_sym_SLASH] = ACTIONS(2022), - [anon_sym_PERCENT] = ACTIONS(2022), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_CARET] = ACTIONS(2022), - [anon_sym_AMP] = ACTIONS(2022), - [anon_sym_EQ_EQ] = ACTIONS(2024), - [anon_sym_BANG_EQ] = ACTIONS(2024), - [anon_sym_GT] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2024), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2022), - [anon_sym_LT_LT] = ACTIONS(2022), - [anon_sym_GT_GT] = ACTIONS(2022), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym___attribute] = ACTIONS(2022), - [anon_sym___attribute__] = ACTIONS(2022), - [anon_sym_RBRACE] = ACTIONS(2024), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_RBRACK] = ACTIONS(2024), - [anon_sym_EQ] = ACTIONS(2022), - [anon_sym_const] = ACTIONS(2022), - [anon_sym_volatile] = ACTIONS(2022), - [anon_sym_restrict] = ACTIONS(2022), - [anon_sym__Atomic] = ACTIONS(2022), - [anon_sym_in] = ACTIONS(2022), - [anon_sym_out] = ACTIONS(2022), - [anon_sym_inout] = ACTIONS(2022), - [anon_sym_bycopy] = ACTIONS(2022), - [anon_sym_byref] = ACTIONS(2022), - [anon_sym_oneway] = ACTIONS(2022), - [anon_sym__Nullable] = ACTIONS(2022), - [anon_sym__Nonnull] = ACTIONS(2022), - [anon_sym__Nullable_result] = ACTIONS(2022), - [anon_sym__Null_unspecified] = ACTIONS(2022), - [anon_sym___autoreleasing] = ACTIONS(2022), - [anon_sym___nullable] = ACTIONS(2022), - [anon_sym___nonnull] = ACTIONS(2022), - [anon_sym___strong] = ACTIONS(2022), - [anon_sym___weak] = ACTIONS(2022), - [anon_sym___bridge] = ACTIONS(2022), - [anon_sym___bridge_transfer] = ACTIONS(2022), - [anon_sym___bridge_retained] = ACTIONS(2022), - [anon_sym___unsafe_unretained] = ACTIONS(2022), - [anon_sym___block] = ACTIONS(2022), - [anon_sym___kindof] = ACTIONS(2022), - [anon_sym___unused] = ACTIONS(2022), - [anon_sym__Complex] = ACTIONS(2022), - [anon_sym___complex] = ACTIONS(2022), - [anon_sym_IBOutlet] = ACTIONS(2022), - [anon_sym_IBInspectable] = ACTIONS(2022), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2022), - [anon_sym_COLON] = ACTIONS(2024), - [anon_sym_QMARK] = ACTIONS(2024), - [anon_sym_STAR_EQ] = ACTIONS(2024), - [anon_sym_SLASH_EQ] = ACTIONS(2024), - [anon_sym_PERCENT_EQ] = ACTIONS(2024), - [anon_sym_PLUS_EQ] = ACTIONS(2024), - [anon_sym_DASH_EQ] = ACTIONS(2024), - [anon_sym_LT_LT_EQ] = ACTIONS(2024), - [anon_sym_GT_GT_EQ] = ACTIONS(2024), - [anon_sym_AMP_EQ] = ACTIONS(2024), - [anon_sym_CARET_EQ] = ACTIONS(2024), - [anon_sym_PIPE_EQ] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2024), - [anon_sym_PLUS_PLUS] = ACTIONS(2024), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DASH_GT] = ACTIONS(2024), - [anon_sym_L_DQUOTE] = ACTIONS(2024), - [anon_sym_u_DQUOTE] = ACTIONS(2024), - [anon_sym_U_DQUOTE] = ACTIONS(2024), - [anon_sym_u8_DQUOTE] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2024), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(2022), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2022), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2022), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2022), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2022), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2022), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2022), - [anon_sym_NS_AVAILABLE] = ACTIONS(2022), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2022), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_API_AVAILABLE] = ACTIONS(2022), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2022), - [anon_sym_API_DEPRECATED] = ACTIONS(2022), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2022), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2022), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2022), - [anon_sym___deprecated_msg] = ACTIONS(2022), - [anon_sym___deprecated_enum_msg] = ACTIONS(2022), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2022), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2022), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2022), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2022), - [anon_sym_AT] = ACTIONS(2024), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2807] = { - [sym__declaration_specifiers] = STATE(3948), - [sym_attribute_specifier] = STATE(3007), - [sym_ms_declspec_modifier] = STATE(3007), - [sym_storage_class_specifier] = STATE(3007), - [sym_type_qualifier] = STATE(3007), - [sym__type_specifier] = STATE(3408), - [sym_sized_type_specifier] = STATE(3408), - [sym_enum_specifier] = STATE(3408), - [sym_struct_specifier] = STATE(3408), - [sym_union_specifier] = STATE(3408), - [sym_macro_type_specifier] = STATE(3408), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym__argument_type_declarator] = STATE(5388), - [sym_typeof_specifier] = STATE(3408), - [sym_atomic_specifier] = STATE(3408), - [sym_generic_type_specifier] = STATE(3408), - [aux_sym__declaration_specifiers_repeat1] = STATE(3007), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(6892), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_nonnull] = ACTIONS(6894), - [sym_nullable] = ACTIONS(6894), - [anon_sym_NS_NOESCAPE] = ACTIONS(6896), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(6892), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(6892), - [sym_IMP] = ACTIONS(6892), - [sym_BOOL] = ACTIONS(6892), - [sym_auto] = ACTIONS(6892), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2808] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(123), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2809] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(494), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2810] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(495), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2811] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(282), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2812] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(93), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2813] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(92), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2814] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(89), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2815] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(87), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2816] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(125), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2817] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(281), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2818] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(238), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2819] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(496), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2820] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(497), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2821] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(67), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2822] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(82), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2823] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(239), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2824] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(498), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2825] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(240), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2826] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(241), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2827] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(502), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2828] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(499), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2829] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(506), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2830] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(505), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2831] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(323), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2832] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(353), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2833] = { - [sym__declaration_specifiers] = STATE(4698), - [sym_attribute_specifier] = STATE(3364), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4312), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_typedef] = ACTIONS(6898), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(6900), - [anon_sym_ATinterface] = ACTIONS(6902), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2834] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(504), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2835] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(339), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2836] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(346), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2837] = { - [sym__declaration_specifiers] = STATE(4697), - [sym_attribute_specifier] = STATE(3365), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_function_declarator_repeat1] = STATE(4309), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_typedef] = ACTIONS(6904), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(6906), - [anon_sym_ATinterface] = ACTIONS(6908), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2838] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(364), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2839] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(5830), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2840] = { - [sym_protocol_qualifiers] = STATE(3397), - [sym_generic_type_references] = STATE(3397), - [aux_sym_generic_type_specifier_repeat1] = STATE(3397), - [sym_identifier] = ACTIONS(6841), - [anon_sym_COMMA] = ACTIONS(6822), - [anon_sym_LPAREN2] = ACTIONS(6843), - [anon_sym_DASH] = ACTIONS(6820), - [anon_sym_PLUS] = ACTIONS(6820), - [anon_sym_STAR] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6820), - [anon_sym_PERCENT] = ACTIONS(6820), - [anon_sym_PIPE_PIPE] = ACTIONS(6822), - [anon_sym_AMP_AMP] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6820), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_EQ_EQ] = ACTIONS(6822), - [anon_sym_BANG_EQ] = ACTIONS(6822), - [anon_sym_GT] = ACTIONS(6820), - [anon_sym_GT_EQ] = ACTIONS(6822), - [anon_sym_LT_EQ] = ACTIONS(6822), - [anon_sym_LT] = ACTIONS(6850), - [anon_sym_LT_LT] = ACTIONS(6820), - [anon_sym_GT_GT] = ACTIONS(6820), - [anon_sym_SEMI] = ACTIONS(6871), - [anon_sym_extern] = ACTIONS(6841), - [anon_sym___attribute] = ACTIONS(6841), - [anon_sym___attribute__] = ACTIONS(6841), - [anon_sym___declspec] = ACTIONS(6841), - [anon_sym___based] = ACTIONS(6841), - [anon_sym_LBRACK] = ACTIONS(6822), - [anon_sym_EQ] = ACTIONS(6853), - [anon_sym_static] = ACTIONS(6841), - [anon_sym_auto] = ACTIONS(6841), - [anon_sym_register] = ACTIONS(6841), - [anon_sym_inline] = ACTIONS(6841), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6841), - [anon_sym_const] = ACTIONS(6841), - [anon_sym_volatile] = ACTIONS(6841), - [anon_sym_restrict] = ACTIONS(6841), - [anon_sym__Atomic] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6841), - [anon_sym_out] = ACTIONS(6841), - [anon_sym_inout] = ACTIONS(6841), - [anon_sym_bycopy] = ACTIONS(6841), - [anon_sym_byref] = ACTIONS(6841), - [anon_sym_oneway] = ACTIONS(6841), - [anon_sym__Nullable] = ACTIONS(6841), - [anon_sym__Nonnull] = ACTIONS(6841), - [anon_sym__Nullable_result] = ACTIONS(6841), - [anon_sym__Null_unspecified] = ACTIONS(6841), - [anon_sym___autoreleasing] = ACTIONS(6841), - [anon_sym___nullable] = ACTIONS(6841), - [anon_sym___nonnull] = ACTIONS(6841), - [anon_sym___strong] = ACTIONS(6841), - [anon_sym___weak] = ACTIONS(6841), - [anon_sym___bridge] = ACTIONS(6841), - [anon_sym___bridge_transfer] = ACTIONS(6841), - [anon_sym___bridge_retained] = ACTIONS(6841), - [anon_sym___unsafe_unretained] = ACTIONS(6841), - [anon_sym___block] = ACTIONS(6841), - [anon_sym___kindof] = ACTIONS(6841), - [anon_sym___unused] = ACTIONS(6841), - [anon_sym__Complex] = ACTIONS(6841), - [anon_sym___complex] = ACTIONS(6841), - [anon_sym_IBOutlet] = ACTIONS(6841), - [anon_sym_IBInspectable] = ACTIONS(6841), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6841), - [anon_sym_COLON] = ACTIONS(6869), - [anon_sym_QMARK] = ACTIONS(6822), - [anon_sym_STAR_EQ] = ACTIONS(6857), - [anon_sym_SLASH_EQ] = ACTIONS(6857), - [anon_sym_PERCENT_EQ] = ACTIONS(6857), - [anon_sym_PLUS_EQ] = ACTIONS(6857), - [anon_sym_DASH_EQ] = ACTIONS(6857), - [anon_sym_LT_LT_EQ] = ACTIONS(6857), - [anon_sym_GT_GT_EQ] = ACTIONS(6857), - [anon_sym_AMP_EQ] = ACTIONS(6857), - [anon_sym_CARET_EQ] = ACTIONS(6857), - [anon_sym_PIPE_EQ] = ACTIONS(6857), - [anon_sym_DASH_DASH] = ACTIONS(6822), - [anon_sym_PLUS_PLUS] = ACTIONS(6822), - [anon_sym_DOT] = ACTIONS(6822), - [anon_sym_DASH_GT] = ACTIONS(6822), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6841), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6841), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE] = ACTIONS(6841), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_API_AVAILABLE] = ACTIONS(6841), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_API_DEPRECATED] = ACTIONS(6841), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6841), - [anon_sym___deprecated_msg] = ACTIONS(6841), - [anon_sym___deprecated_enum_msg] = ACTIONS(6841), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6841), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2841] = { - [sym_compound_statement] = STATE(514), - [sym__statement] = STATE(503), - [sym_labeled_statement] = STATE(514), - [sym_expression_statement] = STATE(514), - [sym_if_statement] = STATE(514), - [sym_switch_statement] = STATE(514), - [sym_case_statement] = STATE(514), - [sym_while_statement] = STATE(514), - [sym_do_statement] = STATE(514), - [sym_for_statement] = STATE(514), - [sym_return_statement] = STATE(514), - [sym_break_statement] = STATE(514), - [sym_continue_statement] = STATE(514), - [sym_goto_statement] = STATE(514), - [sym__expression] = STATE(4492), - [sym_comma_expression] = STATE(5796), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(514), - [sym_synchronized_statement] = STATE(514), - [sym_for_in_statement] = STATE(514), - [sym_try_catch_statement] = STATE(514), - [sym_throw_statement] = STATE(514), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6837), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(771), - [anon_sym_switch] = ACTIONS(773), - [anon_sym_case] = ACTIONS(775), - [anon_sym_default] = ACTIONS(777), - [anon_sym_while] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_return] = ACTIONS(785), - [anon_sym_break] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_goto] = ACTIONS(791), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(811), - [anon_sym_ATsynchronized] = ACTIONS(813), - [anon_sym_ATtry] = ACTIONS(815), - [anon_sym_ATthrow] = ACTIONS(817), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2842] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(5871), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2843] = { - [sym_compound_statement] = STATE(85), - [sym__statement] = STATE(124), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_case_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(4440), - [sym_comma_expression] = STATE(5488), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(85), - [sym_synchronized_statement] = STATE(85), - [sym_for_in_statement] = STATE(85), - [sym_try_catch_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6839), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(29), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(63), - [anon_sym_switch] = ACTIONS(65), - [anon_sym_case] = ACTIONS(67), - [anon_sym_default] = ACTIONS(69), - [anon_sym_while] = ACTIONS(71), - [anon_sym_do] = ACTIONS(73), - [anon_sym_for] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_break] = ACTIONS(79), - [anon_sym_continue] = ACTIONS(81), - [anon_sym_goto] = ACTIONS(83), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(133), - [anon_sym_ATsynchronized] = ACTIONS(135), - [anon_sym_ATtry] = ACTIONS(137), - [anon_sym_ATthrow] = ACTIONS(139), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2844] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(219), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2845] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(218), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2846] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(217), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2847] = { - [sym_compound_statement] = STATE(77), - [sym__statement] = STATE(216), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_case_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(4442), - [sym_comma_expression] = STATE(5361), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_autoreleasepool_statement] = STATE(77), - [sym_synchronized_statement] = STATE(77), - [sym_for_in_statement] = STATE(77), - [sym_try_catch_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(6835), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_if] = ACTIONS(179), - [anon_sym_switch] = ACTIONS(181), - [anon_sym_case] = ACTIONS(183), - [anon_sym_default] = ACTIONS(185), - [anon_sym_while] = ACTIONS(187), - [anon_sym_do] = ACTIONS(189), - [anon_sym_for] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_break] = ACTIONS(195), - [anon_sym_continue] = ACTIONS(197), - [anon_sym_goto] = ACTIONS(199), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATautoreleasepool] = ACTIONS(219), - [anon_sym_ATsynchronized] = ACTIONS(221), - [anon_sym_ATtry] = ACTIONS(223), - [anon_sym_ATthrow] = ACTIONS(225), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2848] = { - [sym__declaration_specifiers] = STATE(4627), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_parameter_declaration] = STATE(4968), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6533), - [anon_sym_RPAREN] = ACTIONS(6535), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2849] = { - [sym_protocol_qualifiers] = STATE(3397), - [sym_generic_type_references] = STATE(3397), - [aux_sym_generic_type_specifier_repeat1] = STATE(3397), - [sym_identifier] = ACTIONS(6841), - [anon_sym_COMMA] = ACTIONS(6822), - [anon_sym_LPAREN2] = ACTIONS(6843), - [anon_sym_DASH] = ACTIONS(6820), - [anon_sym_PLUS] = ACTIONS(6820), - [anon_sym_STAR] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6820), - [anon_sym_PERCENT] = ACTIONS(6820), - [anon_sym_PIPE_PIPE] = ACTIONS(6822), - [anon_sym_AMP_AMP] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6820), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_EQ_EQ] = ACTIONS(6822), - [anon_sym_BANG_EQ] = ACTIONS(6822), - [anon_sym_GT] = ACTIONS(6820), - [anon_sym_GT_EQ] = ACTIONS(6822), - [anon_sym_LT_EQ] = ACTIONS(6822), - [anon_sym_LT] = ACTIONS(6850), - [anon_sym_LT_LT] = ACTIONS(6820), - [anon_sym_GT_GT] = ACTIONS(6820), - [anon_sym_SEMI] = ACTIONS(6822), - [anon_sym_extern] = ACTIONS(6841), - [anon_sym___attribute] = ACTIONS(6841), - [anon_sym___attribute__] = ACTIONS(6841), - [anon_sym___declspec] = ACTIONS(6841), - [anon_sym___based] = ACTIONS(6841), - [anon_sym_LBRACK] = ACTIONS(6871), - [anon_sym_EQ] = ACTIONS(6853), - [anon_sym_static] = ACTIONS(6841), - [anon_sym_auto] = ACTIONS(6841), - [anon_sym_register] = ACTIONS(6841), - [anon_sym_inline] = ACTIONS(6841), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6841), - [anon_sym_const] = ACTIONS(6841), - [anon_sym_volatile] = ACTIONS(6841), - [anon_sym_restrict] = ACTIONS(6841), - [anon_sym__Atomic] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6841), - [anon_sym_out] = ACTIONS(6841), - [anon_sym_inout] = ACTIONS(6841), - [anon_sym_bycopy] = ACTIONS(6841), - [anon_sym_byref] = ACTIONS(6841), - [anon_sym_oneway] = ACTIONS(6841), - [anon_sym__Nullable] = ACTIONS(6841), - [anon_sym__Nonnull] = ACTIONS(6841), - [anon_sym__Nullable_result] = ACTIONS(6841), - [anon_sym__Null_unspecified] = ACTIONS(6841), - [anon_sym___autoreleasing] = ACTIONS(6841), - [anon_sym___nullable] = ACTIONS(6841), - [anon_sym___nonnull] = ACTIONS(6841), - [anon_sym___strong] = ACTIONS(6841), - [anon_sym___weak] = ACTIONS(6841), - [anon_sym___bridge] = ACTIONS(6841), - [anon_sym___bridge_transfer] = ACTIONS(6841), - [anon_sym___bridge_retained] = ACTIONS(6841), - [anon_sym___unsafe_unretained] = ACTIONS(6841), - [anon_sym___block] = ACTIONS(6841), - [anon_sym___kindof] = ACTIONS(6841), - [anon_sym___unused] = ACTIONS(6841), - [anon_sym__Complex] = ACTIONS(6841), - [anon_sym___complex] = ACTIONS(6841), - [anon_sym_IBOutlet] = ACTIONS(6841), - [anon_sym_IBInspectable] = ACTIONS(6841), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6841), - [anon_sym_QMARK] = ACTIONS(6822), - [anon_sym_STAR_EQ] = ACTIONS(6857), - [anon_sym_SLASH_EQ] = ACTIONS(6857), - [anon_sym_PERCENT_EQ] = ACTIONS(6857), - [anon_sym_PLUS_EQ] = ACTIONS(6857), - [anon_sym_DASH_EQ] = ACTIONS(6857), - [anon_sym_LT_LT_EQ] = ACTIONS(6857), - [anon_sym_GT_GT_EQ] = ACTIONS(6857), - [anon_sym_AMP_EQ] = ACTIONS(6857), - [anon_sym_CARET_EQ] = ACTIONS(6857), - [anon_sym_PIPE_EQ] = ACTIONS(6857), - [anon_sym_DASH_DASH] = ACTIONS(6822), - [anon_sym_PLUS_PLUS] = ACTIONS(6822), - [anon_sym_DOT] = ACTIONS(6822), - [anon_sym_DASH_GT] = ACTIONS(6822), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6841), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6841), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE] = ACTIONS(6841), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_API_AVAILABLE] = ACTIONS(6841), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_API_DEPRECATED] = ACTIONS(6841), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6841), - [anon_sym___deprecated_msg] = ACTIONS(6841), - [anon_sym___deprecated_enum_msg] = ACTIONS(6841), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6841), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2850] = { - [sym__declaration_specifiers] = STATE(4627), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_parameter_declaration] = STATE(4878), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6517), - [anon_sym_RPAREN] = ACTIONS(6519), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2851] = { - [sym__declaration_specifiers] = STATE(4627), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_parameter_declaration] = STATE(5526), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6910), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2852] = { - [sym__declaration_specifiers] = STATE(4627), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_parameter_declaration] = STATE(5455), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6912), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2853] = { - [sym__declaration_specifiers] = STATE(4627), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_parameter_declaration] = STATE(5609), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6914), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2854] = { - [sym__declaration_specifiers] = STATE(4627), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_parameter_declaration] = STATE(5137), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6916), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2855] = { - [sym_identifier] = ACTIONS(1533), + [410] = { + [sym_identifier] = ACTIONS(1439), + [aux_sym_preproc_include_token1] = ACTIONS(1437), + [aux_sym_preproc_def_token1] = ACTIONS(1437), + [aux_sym_preproc_if_token1] = ACTIONS(1439), + [aux_sym_preproc_if_token2] = ACTIONS(1439), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1439), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1439), + [anon_sym_LPAREN2] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_TILDE] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1437), + [anon_sym_typedef] = ACTIONS(1439), + [anon_sym_extern] = ACTIONS(1439), + [anon_sym___attribute] = ACTIONS(1439), + [anon_sym___attribute__] = ACTIONS(1439), + [anon_sym___declspec] = ACTIONS(1439), + [anon_sym___cdecl] = ACTIONS(1439), + [anon_sym___clrcall] = ACTIONS(1439), + [anon_sym___stdcall] = ACTIONS(1439), + [anon_sym___fastcall] = ACTIONS(1439), + [anon_sym___thiscall] = ACTIONS(1439), + [anon_sym___vectorcall] = ACTIONS(1439), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1439), + [anon_sym_auto] = ACTIONS(1439), + [anon_sym_register] = ACTIONS(1439), + [anon_sym_inline] = ACTIONS(1439), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1439), + [anon_sym_const] = ACTIONS(1439), + [anon_sym_volatile] = ACTIONS(1439), + [anon_sym_restrict] = ACTIONS(1439), + [anon_sym__Atomic] = ACTIONS(1439), + [anon_sym_in] = ACTIONS(1439), + [anon_sym_out] = ACTIONS(1439), + [anon_sym_inout] = ACTIONS(1439), + [anon_sym_bycopy] = ACTIONS(1439), + [anon_sym_byref] = ACTIONS(1439), + [anon_sym_oneway] = ACTIONS(1439), + [anon_sym__Nullable] = ACTIONS(1439), + [anon_sym__Nonnull] = ACTIONS(1439), + [anon_sym__Nullable_result] = ACTIONS(1439), + [anon_sym__Null_unspecified] = ACTIONS(1439), + [anon_sym___autoreleasing] = ACTIONS(1439), + [anon_sym___nullable] = ACTIONS(1439), + [anon_sym___nonnull] = ACTIONS(1439), + [anon_sym___strong] = ACTIONS(1439), + [anon_sym___weak] = ACTIONS(1439), + [anon_sym___bridge] = ACTIONS(1439), + [anon_sym___bridge_transfer] = ACTIONS(1439), + [anon_sym___bridge_retained] = ACTIONS(1439), + [anon_sym___unsafe_unretained] = ACTIONS(1439), + [anon_sym___block] = ACTIONS(1439), + [anon_sym___kindof] = ACTIONS(1439), + [anon_sym___unused] = ACTIONS(1439), + [anon_sym__Complex] = ACTIONS(1439), + [anon_sym___complex] = ACTIONS(1439), + [anon_sym_IBOutlet] = ACTIONS(1439), + [anon_sym_IBInspectable] = ACTIONS(1439), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1439), + [anon_sym_signed] = ACTIONS(1439), + [anon_sym_unsigned] = ACTIONS(1439), + [anon_sym_long] = ACTIONS(1439), + [anon_sym_short] = ACTIONS(1439), + [sym_primitive_type] = ACTIONS(1439), + [anon_sym_enum] = ACTIONS(1439), + [anon_sym_struct] = ACTIONS(1439), + [anon_sym_union] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1439), + [anon_sym_else] = ACTIONS(1439), + [anon_sym_switch] = ACTIONS(1439), + [anon_sym_case] = ACTIONS(1439), + [anon_sym_default] = ACTIONS(1439), + [anon_sym_while] = ACTIONS(1439), + [anon_sym_do] = ACTIONS(1439), + [anon_sym_for] = ACTIONS(1439), + [anon_sym_return] = ACTIONS(1439), + [anon_sym_break] = ACTIONS(1439), + [anon_sym_continue] = ACTIONS(1439), + [anon_sym_goto] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1437), + [anon_sym_sizeof] = ACTIONS(1439), + [sym_number_literal] = ACTIONS(1437), + [anon_sym_L_SQUOTE] = ACTIONS(1437), + [anon_sym_u_SQUOTE] = ACTIONS(1437), + [anon_sym_U_SQUOTE] = ACTIONS(1437), + [anon_sym_u8_SQUOTE] = ACTIONS(1437), + [anon_sym_SQUOTE] = ACTIONS(1437), + [anon_sym_L_DQUOTE] = ACTIONS(1437), + [anon_sym_u_DQUOTE] = ACTIONS(1437), + [anon_sym_U_DQUOTE] = ACTIONS(1437), + [anon_sym_u8_DQUOTE] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym_true] = ACTIONS(1439), + [sym_false] = ACTIONS(1439), + [sym_null] = ACTIONS(1439), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1437), + [anon_sym_ATimport] = ACTIONS(1437), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1439), + [anon_sym_ATcompatibility_alias] = ACTIONS(1437), + [anon_sym_ATprotocol] = ACTIONS(1437), + [anon_sym_ATclass] = ACTIONS(1437), + [anon_sym_ATinterface] = ACTIONS(1437), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1439), + [sym_method_attribute_specifier] = ACTIONS(1439), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1439), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1439), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1439), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1439), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1439), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1439), + [anon_sym_NS_AVAILABLE] = ACTIONS(1439), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1439), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1439), + [anon_sym_API_AVAILABLE] = ACTIONS(1439), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1439), + [anon_sym_API_DEPRECATED] = ACTIONS(1439), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1439), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1439), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1439), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1439), + [anon_sym___deprecated_msg] = ACTIONS(1439), + [anon_sym___deprecated_enum_msg] = ACTIONS(1439), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1439), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1439), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1439), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1439), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1439), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1439), + [anon_sym_ATimplementation] = ACTIONS(1437), + [anon_sym_NS_ENUM] = ACTIONS(1439), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1439), + [anon_sym_NS_OPTIONS] = ACTIONS(1439), + [anon_sym_typeof] = ACTIONS(1439), + [anon_sym___typeof] = ACTIONS(1439), + [anon_sym___typeof__] = ACTIONS(1439), + [sym_self] = ACTIONS(1439), + [sym_super] = ACTIONS(1439), + [sym_nil] = ACTIONS(1439), + [sym_id] = ACTIONS(1439), + [sym_instancetype] = ACTIONS(1439), + [sym_Class] = ACTIONS(1439), + [sym_SEL] = ACTIONS(1439), + [sym_IMP] = ACTIONS(1439), + [sym_BOOL] = ACTIONS(1439), + [sym_auto] = ACTIONS(1439), + [anon_sym_ATautoreleasepool] = ACTIONS(1437), + [anon_sym_ATsynchronized] = ACTIONS(1437), + [anon_sym_ATtry] = ACTIONS(1437), + [anon_sym_ATcatch] = ACTIONS(1437), + [anon_sym_ATfinally] = ACTIONS(1437), + [anon_sym_ATthrow] = ACTIONS(1437), + [anon_sym_ATselector] = ACTIONS(1437), + [anon_sym_ATencode] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1439), + [sym_YES] = ACTIONS(1439), + [sym_NO] = ACTIONS(1439), + [anon_sym___builtin_available] = ACTIONS(1439), + [anon_sym_ATavailable] = ACTIONS(1437), + [anon_sym_va_arg] = ACTIONS(1439), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [411] = { + [sym_identifier] = ACTIONS(1451), + [aux_sym_preproc_include_token1] = ACTIONS(1449), + [aux_sym_preproc_def_token1] = ACTIONS(1449), + [aux_sym_preproc_if_token1] = ACTIONS(1451), + [aux_sym_preproc_if_token2] = ACTIONS(1451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1451), + [anon_sym_LPAREN2] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_CARET] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_typedef] = ACTIONS(1451), + [anon_sym_extern] = ACTIONS(1451), + [anon_sym___attribute] = ACTIONS(1451), + [anon_sym___attribute__] = ACTIONS(1451), + [anon_sym___declspec] = ACTIONS(1451), + [anon_sym___cdecl] = ACTIONS(1451), + [anon_sym___clrcall] = ACTIONS(1451), + [anon_sym___stdcall] = ACTIONS(1451), + [anon_sym___fastcall] = ACTIONS(1451), + [anon_sym___thiscall] = ACTIONS(1451), + [anon_sym___vectorcall] = ACTIONS(1451), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1451), + [anon_sym_auto] = ACTIONS(1451), + [anon_sym_register] = ACTIONS(1451), + [anon_sym_inline] = ACTIONS(1451), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1451), + [anon_sym_volatile] = ACTIONS(1451), + [anon_sym_restrict] = ACTIONS(1451), + [anon_sym__Atomic] = ACTIONS(1451), + [anon_sym_in] = ACTIONS(1451), + [anon_sym_out] = ACTIONS(1451), + [anon_sym_inout] = ACTIONS(1451), + [anon_sym_bycopy] = ACTIONS(1451), + [anon_sym_byref] = ACTIONS(1451), + [anon_sym_oneway] = ACTIONS(1451), + [anon_sym__Nullable] = ACTIONS(1451), + [anon_sym__Nonnull] = ACTIONS(1451), + [anon_sym__Nullable_result] = ACTIONS(1451), + [anon_sym__Null_unspecified] = ACTIONS(1451), + [anon_sym___autoreleasing] = ACTIONS(1451), + [anon_sym___nullable] = ACTIONS(1451), + [anon_sym___nonnull] = ACTIONS(1451), + [anon_sym___strong] = ACTIONS(1451), + [anon_sym___weak] = ACTIONS(1451), + [anon_sym___bridge] = ACTIONS(1451), + [anon_sym___bridge_transfer] = ACTIONS(1451), + [anon_sym___bridge_retained] = ACTIONS(1451), + [anon_sym___unsafe_unretained] = ACTIONS(1451), + [anon_sym___block] = ACTIONS(1451), + [anon_sym___kindof] = ACTIONS(1451), + [anon_sym___unused] = ACTIONS(1451), + [anon_sym__Complex] = ACTIONS(1451), + [anon_sym___complex] = ACTIONS(1451), + [anon_sym_IBOutlet] = ACTIONS(1451), + [anon_sym_IBInspectable] = ACTIONS(1451), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1451), + [anon_sym_signed] = ACTIONS(1451), + [anon_sym_unsigned] = ACTIONS(1451), + [anon_sym_long] = ACTIONS(1451), + [anon_sym_short] = ACTIONS(1451), + [sym_primitive_type] = ACTIONS(1451), + [anon_sym_enum] = ACTIONS(1451), + [anon_sym_struct] = ACTIONS(1451), + [anon_sym_union] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1451), + [anon_sym_else] = ACTIONS(1451), + [anon_sym_switch] = ACTIONS(1451), + [anon_sym_case] = ACTIONS(1451), + [anon_sym_default] = ACTIONS(1451), + [anon_sym_while] = ACTIONS(1451), + [anon_sym_do] = ACTIONS(1451), + [anon_sym_for] = ACTIONS(1451), + [anon_sym_return] = ACTIONS(1451), + [anon_sym_break] = ACTIONS(1451), + [anon_sym_continue] = ACTIONS(1451), + [anon_sym_goto] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1449), + [anon_sym_sizeof] = ACTIONS(1451), + [sym_number_literal] = ACTIONS(1449), + [anon_sym_L_SQUOTE] = ACTIONS(1449), + [anon_sym_u_SQUOTE] = ACTIONS(1449), + [anon_sym_U_SQUOTE] = ACTIONS(1449), + [anon_sym_u8_SQUOTE] = ACTIONS(1449), + [anon_sym_SQUOTE] = ACTIONS(1449), + [anon_sym_L_DQUOTE] = ACTIONS(1449), + [anon_sym_u_DQUOTE] = ACTIONS(1449), + [anon_sym_U_DQUOTE] = ACTIONS(1449), + [anon_sym_u8_DQUOTE] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(1449), + [sym_true] = ACTIONS(1451), + [sym_false] = ACTIONS(1451), + [sym_null] = ACTIONS(1451), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1449), + [anon_sym_ATimport] = ACTIONS(1449), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1451), + [anon_sym_ATcompatibility_alias] = ACTIONS(1449), + [anon_sym_ATprotocol] = ACTIONS(1449), + [anon_sym_ATclass] = ACTIONS(1449), + [anon_sym_ATinterface] = ACTIONS(1449), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1451), + [sym_method_attribute_specifier] = ACTIONS(1451), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1451), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1451), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1451), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1451), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1451), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1451), + [anon_sym_NS_AVAILABLE] = ACTIONS(1451), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1451), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1451), + [anon_sym_API_AVAILABLE] = ACTIONS(1451), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1451), + [anon_sym_API_DEPRECATED] = ACTIONS(1451), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1451), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1451), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1451), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1451), + [anon_sym___deprecated_msg] = ACTIONS(1451), + [anon_sym___deprecated_enum_msg] = ACTIONS(1451), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1451), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1451), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1451), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1451), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1451), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1451), + [anon_sym_ATimplementation] = ACTIONS(1449), + [anon_sym_NS_ENUM] = ACTIONS(1451), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1451), + [anon_sym_NS_OPTIONS] = ACTIONS(1451), + [anon_sym_typeof] = ACTIONS(1451), + [anon_sym___typeof] = ACTIONS(1451), + [anon_sym___typeof__] = ACTIONS(1451), + [sym_self] = ACTIONS(1451), + [sym_super] = ACTIONS(1451), + [sym_nil] = ACTIONS(1451), + [sym_id] = ACTIONS(1451), + [sym_instancetype] = ACTIONS(1451), + [sym_Class] = ACTIONS(1451), + [sym_SEL] = ACTIONS(1451), + [sym_IMP] = ACTIONS(1451), + [sym_BOOL] = ACTIONS(1451), + [sym_auto] = ACTIONS(1451), + [anon_sym_ATautoreleasepool] = ACTIONS(1449), + [anon_sym_ATsynchronized] = ACTIONS(1449), + [anon_sym_ATtry] = ACTIONS(1449), + [anon_sym_ATcatch] = ACTIONS(1449), + [anon_sym_ATfinally] = ACTIONS(1449), + [anon_sym_ATthrow] = ACTIONS(1449), + [anon_sym_ATselector] = ACTIONS(1449), + [anon_sym_ATencode] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(1451), + [sym_YES] = ACTIONS(1451), + [sym_NO] = ACTIONS(1451), + [anon_sym___builtin_available] = ACTIONS(1451), + [anon_sym_ATavailable] = ACTIONS(1449), + [anon_sym_va_arg] = ACTIONS(1451), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [412] = { + [sym_identifier] = ACTIONS(1455), + [aux_sym_preproc_include_token1] = ACTIONS(1453), + [aux_sym_preproc_def_token1] = ACTIONS(1453), + [aux_sym_preproc_if_token1] = ACTIONS(1455), + [aux_sym_preproc_if_token2] = ACTIONS(1455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1455), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1455), + [anon_sym_LPAREN2] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_TILDE] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_CARET] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1453), + [anon_sym_typedef] = ACTIONS(1455), + [anon_sym_extern] = ACTIONS(1455), + [anon_sym___attribute] = ACTIONS(1455), + [anon_sym___attribute__] = ACTIONS(1455), + [anon_sym___declspec] = ACTIONS(1455), + [anon_sym___cdecl] = ACTIONS(1455), + [anon_sym___clrcall] = ACTIONS(1455), + [anon_sym___stdcall] = ACTIONS(1455), + [anon_sym___fastcall] = ACTIONS(1455), + [anon_sym___thiscall] = ACTIONS(1455), + [anon_sym___vectorcall] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_auto] = ACTIONS(1455), + [anon_sym_register] = ACTIONS(1455), + [anon_sym_inline] = ACTIONS(1455), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_volatile] = ACTIONS(1455), + [anon_sym_restrict] = ACTIONS(1455), + [anon_sym__Atomic] = ACTIONS(1455), + [anon_sym_in] = ACTIONS(1455), + [anon_sym_out] = ACTIONS(1455), + [anon_sym_inout] = ACTIONS(1455), + [anon_sym_bycopy] = ACTIONS(1455), + [anon_sym_byref] = ACTIONS(1455), + [anon_sym_oneway] = ACTIONS(1455), + [anon_sym__Nullable] = ACTIONS(1455), + [anon_sym__Nonnull] = ACTIONS(1455), + [anon_sym__Nullable_result] = ACTIONS(1455), + [anon_sym__Null_unspecified] = ACTIONS(1455), + [anon_sym___autoreleasing] = ACTIONS(1455), + [anon_sym___nullable] = ACTIONS(1455), + [anon_sym___nonnull] = ACTIONS(1455), + [anon_sym___strong] = ACTIONS(1455), + [anon_sym___weak] = ACTIONS(1455), + [anon_sym___bridge] = ACTIONS(1455), + [anon_sym___bridge_transfer] = ACTIONS(1455), + [anon_sym___bridge_retained] = ACTIONS(1455), + [anon_sym___unsafe_unretained] = ACTIONS(1455), + [anon_sym___block] = ACTIONS(1455), + [anon_sym___kindof] = ACTIONS(1455), + [anon_sym___unused] = ACTIONS(1455), + [anon_sym__Complex] = ACTIONS(1455), + [anon_sym___complex] = ACTIONS(1455), + [anon_sym_IBOutlet] = ACTIONS(1455), + [anon_sym_IBInspectable] = ACTIONS(1455), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1455), + [anon_sym_signed] = ACTIONS(1455), + [anon_sym_unsigned] = ACTIONS(1455), + [anon_sym_long] = ACTIONS(1455), + [anon_sym_short] = ACTIONS(1455), + [sym_primitive_type] = ACTIONS(1455), + [anon_sym_enum] = ACTIONS(1455), + [anon_sym_struct] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_else] = ACTIONS(1455), + [anon_sym_switch] = ACTIONS(1455), + [anon_sym_case] = ACTIONS(1455), + [anon_sym_default] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_do] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_goto] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1453), + [anon_sym_PLUS_PLUS] = ACTIONS(1453), + [anon_sym_sizeof] = ACTIONS(1455), + [sym_number_literal] = ACTIONS(1453), + [anon_sym_L_SQUOTE] = ACTIONS(1453), + [anon_sym_u_SQUOTE] = ACTIONS(1453), + [anon_sym_U_SQUOTE] = ACTIONS(1453), + [anon_sym_u8_SQUOTE] = ACTIONS(1453), + [anon_sym_SQUOTE] = ACTIONS(1453), + [anon_sym_L_DQUOTE] = ACTIONS(1453), + [anon_sym_u_DQUOTE] = ACTIONS(1453), + [anon_sym_U_DQUOTE] = ACTIONS(1453), + [anon_sym_u8_DQUOTE] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1453), + [sym_true] = ACTIONS(1455), + [sym_false] = ACTIONS(1455), + [sym_null] = ACTIONS(1455), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1453), + [anon_sym_ATimport] = ACTIONS(1453), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1455), + [anon_sym_ATcompatibility_alias] = ACTIONS(1453), + [anon_sym_ATprotocol] = ACTIONS(1453), + [anon_sym_ATclass] = ACTIONS(1453), + [anon_sym_ATinterface] = ACTIONS(1453), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1455), + [sym_method_attribute_specifier] = ACTIONS(1455), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1455), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1455), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1455), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1455), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1455), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1455), + [anon_sym_NS_AVAILABLE] = ACTIONS(1455), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1455), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1455), + [anon_sym_API_AVAILABLE] = ACTIONS(1455), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1455), + [anon_sym_API_DEPRECATED] = ACTIONS(1455), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1455), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1455), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1455), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1455), + [anon_sym___deprecated_msg] = ACTIONS(1455), + [anon_sym___deprecated_enum_msg] = ACTIONS(1455), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1455), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1455), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1455), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1455), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1455), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1455), + [anon_sym_ATimplementation] = ACTIONS(1453), + [anon_sym_NS_ENUM] = ACTIONS(1455), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1455), + [anon_sym_NS_OPTIONS] = ACTIONS(1455), + [anon_sym_typeof] = ACTIONS(1455), + [anon_sym___typeof] = ACTIONS(1455), + [anon_sym___typeof__] = ACTIONS(1455), + [sym_self] = ACTIONS(1455), + [sym_super] = ACTIONS(1455), + [sym_nil] = ACTIONS(1455), + [sym_id] = ACTIONS(1455), + [sym_instancetype] = ACTIONS(1455), + [sym_Class] = ACTIONS(1455), + [sym_SEL] = ACTIONS(1455), + [sym_IMP] = ACTIONS(1455), + [sym_BOOL] = ACTIONS(1455), + [sym_auto] = ACTIONS(1455), + [anon_sym_ATautoreleasepool] = ACTIONS(1453), + [anon_sym_ATsynchronized] = ACTIONS(1453), + [anon_sym_ATtry] = ACTIONS(1453), + [anon_sym_ATcatch] = ACTIONS(1453), + [anon_sym_ATfinally] = ACTIONS(1453), + [anon_sym_ATthrow] = ACTIONS(1453), + [anon_sym_ATselector] = ACTIONS(1453), + [anon_sym_ATencode] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1455), + [sym_YES] = ACTIONS(1455), + [sym_NO] = ACTIONS(1455), + [anon_sym___builtin_available] = ACTIONS(1455), + [anon_sym_ATavailable] = ACTIONS(1453), + [anon_sym_va_arg] = ACTIONS(1455), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [413] = { + [sym_identifier] = ACTIONS(1537), + [aux_sym_preproc_include_token1] = ACTIONS(1535), [aux_sym_preproc_def_token1] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_typedef] = ACTIONS(1533), - [anon_sym_extern] = ACTIONS(1533), - [anon_sym___attribute] = ACTIONS(1533), - [anon_sym___attribute__] = ACTIONS(1533), - [anon_sym___declspec] = ACTIONS(1533), - [anon_sym___cdecl] = ACTIONS(1533), - [anon_sym___clrcall] = ACTIONS(1533), - [anon_sym___stdcall] = ACTIONS(1533), - [anon_sym___fastcall] = ACTIONS(1533), - [anon_sym___thiscall] = ACTIONS(1533), - [anon_sym___vectorcall] = ACTIONS(1533), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_auto] = ACTIONS(1533), - [anon_sym_register] = ACTIONS(1533), - [anon_sym_inline] = ACTIONS(1533), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_volatile] = ACTIONS(1533), - [anon_sym_restrict] = ACTIONS(1533), - [anon_sym__Atomic] = ACTIONS(1533), - [anon_sym_in] = ACTIONS(1533), - [anon_sym_out] = ACTIONS(1533), - [anon_sym_inout] = ACTIONS(1533), - [anon_sym_bycopy] = ACTIONS(1533), - [anon_sym_byref] = ACTIONS(1533), - [anon_sym_oneway] = ACTIONS(1533), - [anon_sym__Nullable] = ACTIONS(1533), - [anon_sym__Nonnull] = ACTIONS(1533), - [anon_sym__Nullable_result] = ACTIONS(1533), - [anon_sym__Null_unspecified] = ACTIONS(1533), - [anon_sym___autoreleasing] = ACTIONS(1533), - [anon_sym___nullable] = ACTIONS(1533), - [anon_sym___nonnull] = ACTIONS(1533), - [anon_sym___strong] = ACTIONS(1533), - [anon_sym___weak] = ACTIONS(1533), - [anon_sym___bridge] = ACTIONS(1533), - [anon_sym___bridge_transfer] = ACTIONS(1533), - [anon_sym___bridge_retained] = ACTIONS(1533), - [anon_sym___unsafe_unretained] = ACTIONS(1533), - [anon_sym___block] = ACTIONS(1533), - [anon_sym___kindof] = ACTIONS(1533), - [anon_sym___unused] = ACTIONS(1533), - [anon_sym__Complex] = ACTIONS(1533), - [anon_sym___complex] = ACTIONS(1533), - [anon_sym_IBOutlet] = ACTIONS(1533), - [anon_sym_IBInspectable] = ACTIONS(1533), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1533), - [anon_sym_signed] = ACTIONS(1533), - [anon_sym_unsigned] = ACTIONS(1533), - [anon_sym_long] = ACTIONS(1533), - [anon_sym_short] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_NS_ENUM] = ACTIONS(1533), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1533), - [anon_sym_NS_OPTIONS] = ACTIONS(1533), - [anon_sym_struct] = ACTIONS(1533), - [anon_sym_union] = ACTIONS(1533), + [aux_sym_preproc_if_token1] = ACTIONS(1537), + [aux_sym_preproc_if_token2] = ACTIONS(1537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1537), + [anon_sym_LPAREN2] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_CARET] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1535), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_typedef] = ACTIONS(1537), + [anon_sym_extern] = ACTIONS(1537), + [anon_sym___attribute] = ACTIONS(1537), + [anon_sym___attribute__] = ACTIONS(1537), + [anon_sym___declspec] = ACTIONS(1537), + [anon_sym___cdecl] = ACTIONS(1537), + [anon_sym___clrcall] = ACTIONS(1537), + [anon_sym___stdcall] = ACTIONS(1537), + [anon_sym___fastcall] = ACTIONS(1537), + [anon_sym___thiscall] = ACTIONS(1537), + [anon_sym___vectorcall] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1535), + [anon_sym_LBRACK] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_auto] = ACTIONS(1537), + [anon_sym_register] = ACTIONS(1537), + [anon_sym_inline] = ACTIONS(1537), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_volatile] = ACTIONS(1537), + [anon_sym_restrict] = ACTIONS(1537), + [anon_sym__Atomic] = ACTIONS(1537), + [anon_sym_in] = ACTIONS(1537), + [anon_sym_out] = ACTIONS(1537), + [anon_sym_inout] = ACTIONS(1537), + [anon_sym_bycopy] = ACTIONS(1537), + [anon_sym_byref] = ACTIONS(1537), + [anon_sym_oneway] = ACTIONS(1537), + [anon_sym__Nullable] = ACTIONS(1537), + [anon_sym__Nonnull] = ACTIONS(1537), + [anon_sym__Nullable_result] = ACTIONS(1537), + [anon_sym__Null_unspecified] = ACTIONS(1537), + [anon_sym___autoreleasing] = ACTIONS(1537), + [anon_sym___nullable] = ACTIONS(1537), + [anon_sym___nonnull] = ACTIONS(1537), + [anon_sym___strong] = ACTIONS(1537), + [anon_sym___weak] = ACTIONS(1537), + [anon_sym___bridge] = ACTIONS(1537), + [anon_sym___bridge_transfer] = ACTIONS(1537), + [anon_sym___bridge_retained] = ACTIONS(1537), + [anon_sym___unsafe_unretained] = ACTIONS(1537), + [anon_sym___block] = ACTIONS(1537), + [anon_sym___kindof] = ACTIONS(1537), + [anon_sym___unused] = ACTIONS(1537), + [anon_sym__Complex] = ACTIONS(1537), + [anon_sym___complex] = ACTIONS(1537), + [anon_sym_IBOutlet] = ACTIONS(1537), + [anon_sym_IBInspectable] = ACTIONS(1537), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1537), + [anon_sym_signed] = ACTIONS(1537), + [anon_sym_unsigned] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [sym_primitive_type] = ACTIONS(1537), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_struct] = ACTIONS(1537), + [anon_sym_union] = ACTIONS(1537), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_else] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_case] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_goto] = ACTIONS(1537), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_sizeof] = ACTIONS(1537), + [sym_number_literal] = ACTIONS(1535), + [anon_sym_L_SQUOTE] = ACTIONS(1535), + [anon_sym_u_SQUOTE] = ACTIONS(1535), + [anon_sym_U_SQUOTE] = ACTIONS(1535), + [anon_sym_u8_SQUOTE] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_L_DQUOTE] = ACTIONS(1535), + [anon_sym_u_DQUOTE] = ACTIONS(1535), + [anon_sym_U_DQUOTE] = ACTIONS(1535), + [anon_sym_u8_DQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1535), + [sym_true] = ACTIONS(1537), + [sym_false] = ACTIONS(1537), + [sym_null] = ACTIONS(1537), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1533), - [anon_sym_ATend] = ACTIONS(1535), - [sym_optional] = ACTIONS(1535), - [sym_required] = ACTIONS(1535), - [anon_sym_ATproperty] = ACTIONS(1535), - [sym_method_attribute_specifier] = ACTIONS(1533), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1533), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1533), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1533), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1533), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1533), - [anon_sym_NS_AVAILABLE] = ACTIONS(1533), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1533), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1533), - [anon_sym_API_AVAILABLE] = ACTIONS(1533), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1533), - [anon_sym_API_DEPRECATED] = ACTIONS(1533), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1533), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1533), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1533), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1533), - [anon_sym___deprecated_msg] = ACTIONS(1533), - [anon_sym___deprecated_enum_msg] = ACTIONS(1533), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1533), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1533), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1533), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1533), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1533), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1533), - [anon_sym_ATsynthesize] = ACTIONS(1535), - [anon_sym_ATdynamic] = ACTIONS(1535), - [anon_sym_typeof] = ACTIONS(1533), - [anon_sym___typeof] = ACTIONS(1533), - [anon_sym___typeof__] = ACTIONS(1533), - [sym_id] = ACTIONS(1533), - [sym_instancetype] = ACTIONS(1533), - [sym_Class] = ACTIONS(1533), - [sym_SEL] = ACTIONS(1533), - [sym_IMP] = ACTIONS(1533), - [sym_BOOL] = ACTIONS(1533), - [sym_auto] = ACTIONS(1533), + [anon_sym_POUNDimport] = ACTIONS(1535), + [anon_sym_ATimport] = ACTIONS(1535), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1537), + [anon_sym_ATcompatibility_alias] = ACTIONS(1535), + [anon_sym_ATprotocol] = ACTIONS(1535), + [anon_sym_ATclass] = ACTIONS(1535), + [anon_sym_ATinterface] = ACTIONS(1535), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1537), + [sym_method_attribute_specifier] = ACTIONS(1537), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1537), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1537), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1537), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1537), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1537), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1537), + [anon_sym_NS_AVAILABLE] = ACTIONS(1537), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1537), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1537), + [anon_sym_API_AVAILABLE] = ACTIONS(1537), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1537), + [anon_sym_API_DEPRECATED] = ACTIONS(1537), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1537), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1537), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1537), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1537), + [anon_sym___deprecated_msg] = ACTIONS(1537), + [anon_sym___deprecated_enum_msg] = ACTIONS(1537), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1537), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1537), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1537), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1537), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1537), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1537), + [anon_sym_ATimplementation] = ACTIONS(1535), + [anon_sym_NS_ENUM] = ACTIONS(1537), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1537), + [anon_sym_NS_OPTIONS] = ACTIONS(1537), + [anon_sym_typeof] = ACTIONS(1537), + [anon_sym___typeof] = ACTIONS(1537), + [anon_sym___typeof__] = ACTIONS(1537), + [sym_self] = ACTIONS(1537), + [sym_super] = ACTIONS(1537), + [sym_nil] = ACTIONS(1537), + [sym_id] = ACTIONS(1537), + [sym_instancetype] = ACTIONS(1537), + [sym_Class] = ACTIONS(1537), + [sym_SEL] = ACTIONS(1537), + [sym_IMP] = ACTIONS(1537), + [sym_BOOL] = ACTIONS(1537), + [sym_auto] = ACTIONS(1537), + [anon_sym_ATautoreleasepool] = ACTIONS(1535), + [anon_sym_ATsynchronized] = ACTIONS(1535), + [anon_sym_ATtry] = ACTIONS(1535), + [anon_sym_ATcatch] = ACTIONS(1535), + [anon_sym_ATfinally] = ACTIONS(1535), + [anon_sym_ATthrow] = ACTIONS(1535), + [anon_sym_ATselector] = ACTIONS(1535), + [anon_sym_ATencode] = ACTIONS(1535), + [anon_sym_AT] = ACTIONS(1537), + [sym_YES] = ACTIONS(1537), + [sym_NO] = ACTIONS(1537), + [anon_sym___builtin_available] = ACTIONS(1537), + [anon_sym_ATavailable] = ACTIONS(1535), + [anon_sym_va_arg] = ACTIONS(1537), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2856] = { - [sym_identifier] = ACTIONS(1309), - [aux_sym_preproc_def_token1] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_typedef] = ACTIONS(1309), - [anon_sym_extern] = ACTIONS(1309), - [anon_sym___attribute] = ACTIONS(1309), - [anon_sym___attribute__] = ACTIONS(1309), - [anon_sym___declspec] = ACTIONS(1309), - [anon_sym___cdecl] = ACTIONS(1309), - [anon_sym___clrcall] = ACTIONS(1309), - [anon_sym___stdcall] = ACTIONS(1309), - [anon_sym___fastcall] = ACTIONS(1309), - [anon_sym___thiscall] = ACTIONS(1309), - [anon_sym___vectorcall] = ACTIONS(1309), - [anon_sym_static] = ACTIONS(1309), - [anon_sym_auto] = ACTIONS(1309), - [anon_sym_register] = ACTIONS(1309), - [anon_sym_inline] = ACTIONS(1309), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1309), - [anon_sym_const] = ACTIONS(1309), - [anon_sym_volatile] = ACTIONS(1309), - [anon_sym_restrict] = ACTIONS(1309), - [anon_sym__Atomic] = ACTIONS(1309), - [anon_sym_in] = ACTIONS(1309), - [anon_sym_out] = ACTIONS(1309), - [anon_sym_inout] = ACTIONS(1309), - [anon_sym_bycopy] = ACTIONS(1309), - [anon_sym_byref] = ACTIONS(1309), - [anon_sym_oneway] = ACTIONS(1309), - [anon_sym__Nullable] = ACTIONS(1309), - [anon_sym__Nonnull] = ACTIONS(1309), - [anon_sym__Nullable_result] = ACTIONS(1309), - [anon_sym__Null_unspecified] = ACTIONS(1309), - [anon_sym___autoreleasing] = ACTIONS(1309), - [anon_sym___nullable] = ACTIONS(1309), - [anon_sym___nonnull] = ACTIONS(1309), - [anon_sym___strong] = ACTIONS(1309), - [anon_sym___weak] = ACTIONS(1309), - [anon_sym___bridge] = ACTIONS(1309), - [anon_sym___bridge_transfer] = ACTIONS(1309), - [anon_sym___bridge_retained] = ACTIONS(1309), - [anon_sym___unsafe_unretained] = ACTIONS(1309), - [anon_sym___block] = ACTIONS(1309), - [anon_sym___kindof] = ACTIONS(1309), - [anon_sym___unused] = ACTIONS(1309), - [anon_sym__Complex] = ACTIONS(1309), - [anon_sym___complex] = ACTIONS(1309), - [anon_sym_IBOutlet] = ACTIONS(1309), - [anon_sym_IBInspectable] = ACTIONS(1309), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1309), - [anon_sym_signed] = ACTIONS(1309), - [anon_sym_unsigned] = ACTIONS(1309), - [anon_sym_long] = ACTIONS(1309), - [anon_sym_short] = ACTIONS(1309), - [sym_primitive_type] = ACTIONS(1309), - [anon_sym_enum] = ACTIONS(1309), - [anon_sym_NS_ENUM] = ACTIONS(1309), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1309), - [anon_sym_NS_OPTIONS] = ACTIONS(1309), - [anon_sym_struct] = ACTIONS(1309), - [anon_sym_union] = ACTIONS(1309), + [414] = { + [sym_identifier] = ACTIONS(1349), + [aux_sym_preproc_include_token1] = ACTIONS(1347), + [aux_sym_preproc_def_token1] = ACTIONS(1347), + [aux_sym_preproc_if_token1] = ACTIONS(1349), + [aux_sym_preproc_if_token2] = ACTIONS(1349), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1349), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1349), + [anon_sym_LPAREN2] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_TILDE] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_typedef] = ACTIONS(1349), + [anon_sym_extern] = ACTIONS(1349), + [anon_sym___attribute] = ACTIONS(1349), + [anon_sym___attribute__] = ACTIONS(1349), + [anon_sym___declspec] = ACTIONS(1349), + [anon_sym___cdecl] = ACTIONS(1349), + [anon_sym___clrcall] = ACTIONS(1349), + [anon_sym___stdcall] = ACTIONS(1349), + [anon_sym___fastcall] = ACTIONS(1349), + [anon_sym___thiscall] = ACTIONS(1349), + [anon_sym___vectorcall] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(1347), + [anon_sym_static] = ACTIONS(1349), + [anon_sym_auto] = ACTIONS(1349), + [anon_sym_register] = ACTIONS(1349), + [anon_sym_inline] = ACTIONS(1349), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [anon_sym_volatile] = ACTIONS(1349), + [anon_sym_restrict] = ACTIONS(1349), + [anon_sym__Atomic] = ACTIONS(1349), + [anon_sym_in] = ACTIONS(1349), + [anon_sym_out] = ACTIONS(1349), + [anon_sym_inout] = ACTIONS(1349), + [anon_sym_bycopy] = ACTIONS(1349), + [anon_sym_byref] = ACTIONS(1349), + [anon_sym_oneway] = ACTIONS(1349), + [anon_sym__Nullable] = ACTIONS(1349), + [anon_sym__Nonnull] = ACTIONS(1349), + [anon_sym__Nullable_result] = ACTIONS(1349), + [anon_sym__Null_unspecified] = ACTIONS(1349), + [anon_sym___autoreleasing] = ACTIONS(1349), + [anon_sym___nullable] = ACTIONS(1349), + [anon_sym___nonnull] = ACTIONS(1349), + [anon_sym___strong] = ACTIONS(1349), + [anon_sym___weak] = ACTIONS(1349), + [anon_sym___bridge] = ACTIONS(1349), + [anon_sym___bridge_transfer] = ACTIONS(1349), + [anon_sym___bridge_retained] = ACTIONS(1349), + [anon_sym___unsafe_unretained] = ACTIONS(1349), + [anon_sym___block] = ACTIONS(1349), + [anon_sym___kindof] = ACTIONS(1349), + [anon_sym___unused] = ACTIONS(1349), + [anon_sym__Complex] = ACTIONS(1349), + [anon_sym___complex] = ACTIONS(1349), + [anon_sym_IBOutlet] = ACTIONS(1349), + [anon_sym_IBInspectable] = ACTIONS(1349), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1349), + [anon_sym_signed] = ACTIONS(1349), + [anon_sym_unsigned] = ACTIONS(1349), + [anon_sym_long] = ACTIONS(1349), + [anon_sym_short] = ACTIONS(1349), + [sym_primitive_type] = ACTIONS(1349), + [anon_sym_enum] = ACTIONS(1349), + [anon_sym_struct] = ACTIONS(1349), + [anon_sym_union] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_else] = ACTIONS(1349), + [anon_sym_switch] = ACTIONS(1349), + [anon_sym_case] = ACTIONS(1349), + [anon_sym_default] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_do] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_goto] = ACTIONS(1349), + [anon_sym_DASH_DASH] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(1347), + [anon_sym_sizeof] = ACTIONS(1349), + [sym_number_literal] = ACTIONS(1347), + [anon_sym_L_SQUOTE] = ACTIONS(1347), + [anon_sym_u_SQUOTE] = ACTIONS(1347), + [anon_sym_U_SQUOTE] = ACTIONS(1347), + [anon_sym_u8_SQUOTE] = ACTIONS(1347), + [anon_sym_SQUOTE] = ACTIONS(1347), + [anon_sym_L_DQUOTE] = ACTIONS(1347), + [anon_sym_u_DQUOTE] = ACTIONS(1347), + [anon_sym_U_DQUOTE] = ACTIONS(1347), + [anon_sym_u8_DQUOTE] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(1347), + [sym_true] = ACTIONS(1349), + [sym_false] = ACTIONS(1349), + [sym_null] = ACTIONS(1349), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1309), - [anon_sym_ATend] = ACTIONS(1311), - [sym_optional] = ACTIONS(1311), - [sym_required] = ACTIONS(1311), - [anon_sym_ATproperty] = ACTIONS(1311), - [sym_method_attribute_specifier] = ACTIONS(1309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1309), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1309), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1309), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1309), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1309), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1309), - [anon_sym_NS_AVAILABLE] = ACTIONS(1309), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1309), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1309), - [anon_sym_API_AVAILABLE] = ACTIONS(1309), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1309), - [anon_sym_API_DEPRECATED] = ACTIONS(1309), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1309), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1309), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1309), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1309), - [anon_sym___deprecated_msg] = ACTIONS(1309), - [anon_sym___deprecated_enum_msg] = ACTIONS(1309), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1309), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1309), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1309), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1309), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1309), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1309), - [anon_sym_ATsynthesize] = ACTIONS(1311), - [anon_sym_ATdynamic] = ACTIONS(1311), - [anon_sym_typeof] = ACTIONS(1309), - [anon_sym___typeof] = ACTIONS(1309), - [anon_sym___typeof__] = ACTIONS(1309), - [sym_id] = ACTIONS(1309), - [sym_instancetype] = ACTIONS(1309), - [sym_Class] = ACTIONS(1309), - [sym_SEL] = ACTIONS(1309), - [sym_IMP] = ACTIONS(1309), - [sym_BOOL] = ACTIONS(1309), - [sym_auto] = ACTIONS(1309), + [anon_sym_POUNDimport] = ACTIONS(1347), + [anon_sym_ATimport] = ACTIONS(1347), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1349), + [anon_sym_ATcompatibility_alias] = ACTIONS(1347), + [anon_sym_ATprotocol] = ACTIONS(1347), + [anon_sym_ATclass] = ACTIONS(1347), + [anon_sym_ATinterface] = ACTIONS(1347), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1349), + [sym_method_attribute_specifier] = ACTIONS(1349), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1349), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1349), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1349), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1349), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1349), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1349), + [anon_sym_NS_AVAILABLE] = ACTIONS(1349), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1349), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1349), + [anon_sym_API_AVAILABLE] = ACTIONS(1349), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1349), + [anon_sym_API_DEPRECATED] = ACTIONS(1349), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1349), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1349), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1349), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1349), + [anon_sym___deprecated_msg] = ACTIONS(1349), + [anon_sym___deprecated_enum_msg] = ACTIONS(1349), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1349), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1349), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1349), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1349), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1349), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1349), + [anon_sym_ATimplementation] = ACTIONS(1347), + [anon_sym_NS_ENUM] = ACTIONS(1349), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1349), + [anon_sym_NS_OPTIONS] = ACTIONS(1349), + [anon_sym_typeof] = ACTIONS(1349), + [anon_sym___typeof] = ACTIONS(1349), + [anon_sym___typeof__] = ACTIONS(1349), + [sym_self] = ACTIONS(1349), + [sym_super] = ACTIONS(1349), + [sym_nil] = ACTIONS(1349), + [sym_id] = ACTIONS(1349), + [sym_instancetype] = ACTIONS(1349), + [sym_Class] = ACTIONS(1349), + [sym_SEL] = ACTIONS(1349), + [sym_IMP] = ACTIONS(1349), + [sym_BOOL] = ACTIONS(1349), + [sym_auto] = ACTIONS(1349), + [anon_sym_ATautoreleasepool] = ACTIONS(1347), + [anon_sym_ATsynchronized] = ACTIONS(1347), + [anon_sym_ATtry] = ACTIONS(1347), + [anon_sym_ATcatch] = ACTIONS(1347), + [anon_sym_ATfinally] = ACTIONS(1347), + [anon_sym_ATthrow] = ACTIONS(1347), + [anon_sym_ATselector] = ACTIONS(1347), + [anon_sym_ATencode] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [sym_YES] = ACTIONS(1349), + [sym_NO] = ACTIONS(1349), + [anon_sym___builtin_available] = ACTIONS(1349), + [anon_sym_ATavailable] = ACTIONS(1347), + [anon_sym_va_arg] = ACTIONS(1349), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2857] = { - [sym_identifier] = ACTIONS(1954), - [aux_sym_preproc_def_token1] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_typedef] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym___attribute] = ACTIONS(1954), - [anon_sym___attribute__] = ACTIONS(1954), - [anon_sym___declspec] = ACTIONS(1954), - [anon_sym___cdecl] = ACTIONS(1954), - [anon_sym___clrcall] = ACTIONS(1954), - [anon_sym___stdcall] = ACTIONS(1954), - [anon_sym___fastcall] = ACTIONS(1954), - [anon_sym___thiscall] = ACTIONS(1954), - [anon_sym___vectorcall] = ACTIONS(1954), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_auto] = ACTIONS(1954), - [anon_sym_register] = ACTIONS(1954), - [anon_sym_inline] = ACTIONS(1954), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_volatile] = ACTIONS(1954), - [anon_sym_restrict] = ACTIONS(1954), - [anon_sym__Atomic] = ACTIONS(1954), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_out] = ACTIONS(1954), - [anon_sym_inout] = ACTIONS(1954), - [anon_sym_bycopy] = ACTIONS(1954), - [anon_sym_byref] = ACTIONS(1954), - [anon_sym_oneway] = ACTIONS(1954), - [anon_sym__Nullable] = ACTIONS(1954), - [anon_sym__Nonnull] = ACTIONS(1954), - [anon_sym__Nullable_result] = ACTIONS(1954), - [anon_sym__Null_unspecified] = ACTIONS(1954), - [anon_sym___autoreleasing] = ACTIONS(1954), - [anon_sym___nullable] = ACTIONS(1954), - [anon_sym___nonnull] = ACTIONS(1954), - [anon_sym___strong] = ACTIONS(1954), - [anon_sym___weak] = ACTIONS(1954), - [anon_sym___bridge] = ACTIONS(1954), - [anon_sym___bridge_transfer] = ACTIONS(1954), - [anon_sym___bridge_retained] = ACTIONS(1954), - [anon_sym___unsafe_unretained] = ACTIONS(1954), - [anon_sym___block] = ACTIONS(1954), - [anon_sym___kindof] = ACTIONS(1954), - [anon_sym___unused] = ACTIONS(1954), - [anon_sym__Complex] = ACTIONS(1954), - [anon_sym___complex] = ACTIONS(1954), - [anon_sym_IBOutlet] = ACTIONS(1954), - [anon_sym_IBInspectable] = ACTIONS(1954), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1954), - [anon_sym_signed] = ACTIONS(1954), - [anon_sym_unsigned] = ACTIONS(1954), - [anon_sym_long] = ACTIONS(1954), - [anon_sym_short] = ACTIONS(1954), - [sym_primitive_type] = ACTIONS(1954), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_NS_ENUM] = ACTIONS(1954), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1954), - [anon_sym_NS_OPTIONS] = ACTIONS(1954), - [anon_sym_struct] = ACTIONS(1954), - [anon_sym_union] = ACTIONS(1954), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1954), - [anon_sym_ATend] = ACTIONS(1956), - [sym_optional] = ACTIONS(1956), - [sym_required] = ACTIONS(1956), - [anon_sym_ATproperty] = ACTIONS(1956), - [sym_method_attribute_specifier] = ACTIONS(1954), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1954), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1954), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1954), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1954), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1954), - [anon_sym_NS_AVAILABLE] = ACTIONS(1954), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1954), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_API_AVAILABLE] = ACTIONS(1954), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_API_DEPRECATED] = ACTIONS(1954), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1954), - [anon_sym___deprecated_msg] = ACTIONS(1954), - [anon_sym___deprecated_enum_msg] = ACTIONS(1954), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1954), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1954), - [anon_sym_ATsynthesize] = ACTIONS(1956), - [anon_sym_ATdynamic] = ACTIONS(1956), - [anon_sym_typeof] = ACTIONS(1954), - [anon_sym___typeof] = ACTIONS(1954), - [anon_sym___typeof__] = ACTIONS(1954), - [sym_id] = ACTIONS(1954), - [sym_instancetype] = ACTIONS(1954), - [sym_Class] = ACTIONS(1954), - [sym_SEL] = ACTIONS(1954), - [sym_IMP] = ACTIONS(1954), - [sym_BOOL] = ACTIONS(1954), - [sym_auto] = ACTIONS(1954), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2858] = { - [sym_identifier] = ACTIONS(1555), - [aux_sym_preproc_def_token1] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_typedef] = ACTIONS(1555), - [anon_sym_extern] = ACTIONS(1555), - [anon_sym___attribute] = ACTIONS(1555), - [anon_sym___attribute__] = ACTIONS(1555), - [anon_sym___declspec] = ACTIONS(1555), - [anon_sym___cdecl] = ACTIONS(1555), - [anon_sym___clrcall] = ACTIONS(1555), - [anon_sym___stdcall] = ACTIONS(1555), - [anon_sym___fastcall] = ACTIONS(1555), - [anon_sym___thiscall] = ACTIONS(1555), - [anon_sym___vectorcall] = ACTIONS(1555), - [anon_sym_static] = ACTIONS(1555), - [anon_sym_auto] = ACTIONS(1555), - [anon_sym_register] = ACTIONS(1555), - [anon_sym_inline] = ACTIONS(1555), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1555), - [anon_sym_const] = ACTIONS(1555), - [anon_sym_volatile] = ACTIONS(1555), - [anon_sym_restrict] = ACTIONS(1555), - [anon_sym__Atomic] = ACTIONS(1555), - [anon_sym_in] = ACTIONS(1555), - [anon_sym_out] = ACTIONS(1555), - [anon_sym_inout] = ACTIONS(1555), - [anon_sym_bycopy] = ACTIONS(1555), - [anon_sym_byref] = ACTIONS(1555), - [anon_sym_oneway] = ACTIONS(1555), - [anon_sym__Nullable] = ACTIONS(1555), - [anon_sym__Nonnull] = ACTIONS(1555), - [anon_sym__Nullable_result] = ACTIONS(1555), - [anon_sym__Null_unspecified] = ACTIONS(1555), - [anon_sym___autoreleasing] = ACTIONS(1555), - [anon_sym___nullable] = ACTIONS(1555), - [anon_sym___nonnull] = ACTIONS(1555), - [anon_sym___strong] = ACTIONS(1555), - [anon_sym___weak] = ACTIONS(1555), - [anon_sym___bridge] = ACTIONS(1555), - [anon_sym___bridge_transfer] = ACTIONS(1555), - [anon_sym___bridge_retained] = ACTIONS(1555), - [anon_sym___unsafe_unretained] = ACTIONS(1555), - [anon_sym___block] = ACTIONS(1555), - [anon_sym___kindof] = ACTIONS(1555), - [anon_sym___unused] = ACTIONS(1555), - [anon_sym__Complex] = ACTIONS(1555), - [anon_sym___complex] = ACTIONS(1555), - [anon_sym_IBOutlet] = ACTIONS(1555), - [anon_sym_IBInspectable] = ACTIONS(1555), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1555), - [anon_sym_signed] = ACTIONS(1555), - [anon_sym_unsigned] = ACTIONS(1555), - [anon_sym_long] = ACTIONS(1555), - [anon_sym_short] = ACTIONS(1555), - [sym_primitive_type] = ACTIONS(1555), - [anon_sym_enum] = ACTIONS(1555), - [anon_sym_NS_ENUM] = ACTIONS(1555), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1555), - [anon_sym_NS_OPTIONS] = ACTIONS(1555), - [anon_sym_struct] = ACTIONS(1555), - [anon_sym_union] = ACTIONS(1555), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1555), - [anon_sym_ATend] = ACTIONS(1553), - [sym_optional] = ACTIONS(1553), - [sym_required] = ACTIONS(1553), - [anon_sym_ATproperty] = ACTIONS(1553), - [sym_method_attribute_specifier] = ACTIONS(1555), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1555), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1555), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1555), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1555), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1555), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1555), - [anon_sym_NS_AVAILABLE] = ACTIONS(1555), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1555), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1555), - [anon_sym_API_AVAILABLE] = ACTIONS(1555), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1555), - [anon_sym_API_DEPRECATED] = ACTIONS(1555), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1555), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1555), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1555), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1555), - [anon_sym___deprecated_msg] = ACTIONS(1555), - [anon_sym___deprecated_enum_msg] = ACTIONS(1555), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1555), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1555), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1555), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1555), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1555), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1555), - [anon_sym_ATsynthesize] = ACTIONS(1553), - [anon_sym_ATdynamic] = ACTIONS(1553), - [anon_sym_typeof] = ACTIONS(1555), - [anon_sym___typeof] = ACTIONS(1555), - [anon_sym___typeof__] = ACTIONS(1555), - [sym_id] = ACTIONS(1555), - [sym_instancetype] = ACTIONS(1555), - [sym_Class] = ACTIONS(1555), - [sym_SEL] = ACTIONS(1555), - [sym_IMP] = ACTIONS(1555), - [sym_BOOL] = ACTIONS(1555), - [sym_auto] = ACTIONS(1555), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2859] = { - [sym_identifier] = ACTIONS(1958), - [aux_sym_preproc_def_token1] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1960), - [anon_sym_PLUS] = ACTIONS(1960), - [anon_sym_typedef] = ACTIONS(1958), - [anon_sym_extern] = ACTIONS(1958), - [anon_sym___attribute] = ACTIONS(1958), - [anon_sym___attribute__] = ACTIONS(1958), - [anon_sym___declspec] = ACTIONS(1958), - [anon_sym___cdecl] = ACTIONS(1958), - [anon_sym___clrcall] = ACTIONS(1958), - [anon_sym___stdcall] = ACTIONS(1958), - [anon_sym___fastcall] = ACTIONS(1958), - [anon_sym___thiscall] = ACTIONS(1958), - [anon_sym___vectorcall] = ACTIONS(1958), - [anon_sym_static] = ACTIONS(1958), - [anon_sym_auto] = ACTIONS(1958), - [anon_sym_register] = ACTIONS(1958), - [anon_sym_inline] = ACTIONS(1958), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1958), - [anon_sym_const] = ACTIONS(1958), - [anon_sym_volatile] = ACTIONS(1958), - [anon_sym_restrict] = ACTIONS(1958), - [anon_sym__Atomic] = ACTIONS(1958), - [anon_sym_in] = ACTIONS(1958), - [anon_sym_out] = ACTIONS(1958), - [anon_sym_inout] = ACTIONS(1958), - [anon_sym_bycopy] = ACTIONS(1958), - [anon_sym_byref] = ACTIONS(1958), - [anon_sym_oneway] = ACTIONS(1958), - [anon_sym__Nullable] = ACTIONS(1958), - [anon_sym__Nonnull] = ACTIONS(1958), - [anon_sym__Nullable_result] = ACTIONS(1958), - [anon_sym__Null_unspecified] = ACTIONS(1958), - [anon_sym___autoreleasing] = ACTIONS(1958), - [anon_sym___nullable] = ACTIONS(1958), - [anon_sym___nonnull] = ACTIONS(1958), - [anon_sym___strong] = ACTIONS(1958), - [anon_sym___weak] = ACTIONS(1958), - [anon_sym___bridge] = ACTIONS(1958), - [anon_sym___bridge_transfer] = ACTIONS(1958), - [anon_sym___bridge_retained] = ACTIONS(1958), - [anon_sym___unsafe_unretained] = ACTIONS(1958), - [anon_sym___block] = ACTIONS(1958), - [anon_sym___kindof] = ACTIONS(1958), - [anon_sym___unused] = ACTIONS(1958), - [anon_sym__Complex] = ACTIONS(1958), - [anon_sym___complex] = ACTIONS(1958), - [anon_sym_IBOutlet] = ACTIONS(1958), - [anon_sym_IBInspectable] = ACTIONS(1958), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1958), - [anon_sym_signed] = ACTIONS(1958), - [anon_sym_unsigned] = ACTIONS(1958), - [anon_sym_long] = ACTIONS(1958), - [anon_sym_short] = ACTIONS(1958), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_enum] = ACTIONS(1958), - [anon_sym_NS_ENUM] = ACTIONS(1958), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1958), - [anon_sym_NS_OPTIONS] = ACTIONS(1958), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1958), - [anon_sym_ATend] = ACTIONS(1960), - [sym_optional] = ACTIONS(1960), - [sym_required] = ACTIONS(1960), - [anon_sym_ATproperty] = ACTIONS(1960), - [sym_method_attribute_specifier] = ACTIONS(1958), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1958), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1958), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1958), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1958), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1958), - [anon_sym_NS_AVAILABLE] = ACTIONS(1958), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1958), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_API_AVAILABLE] = ACTIONS(1958), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_API_DEPRECATED] = ACTIONS(1958), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1958), - [anon_sym___deprecated_msg] = ACTIONS(1958), - [anon_sym___deprecated_enum_msg] = ACTIONS(1958), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1958), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1958), - [anon_sym_ATsynthesize] = ACTIONS(1960), - [anon_sym_ATdynamic] = ACTIONS(1960), - [anon_sym_typeof] = ACTIONS(1958), - [anon_sym___typeof] = ACTIONS(1958), - [anon_sym___typeof__] = ACTIONS(1958), - [sym_id] = ACTIONS(1958), - [sym_instancetype] = ACTIONS(1958), - [sym_Class] = ACTIONS(1958), - [sym_SEL] = ACTIONS(1958), - [sym_IMP] = ACTIONS(1958), - [sym_BOOL] = ACTIONS(1958), - [sym_auto] = ACTIONS(1958), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2860] = { - [sym_identifier] = ACTIONS(1487), - [aux_sym_preproc_def_token1] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_typedef] = ACTIONS(1487), - [anon_sym_extern] = ACTIONS(1487), - [anon_sym___attribute] = ACTIONS(1487), - [anon_sym___attribute__] = ACTIONS(1487), - [anon_sym___declspec] = ACTIONS(1487), - [anon_sym___cdecl] = ACTIONS(1487), - [anon_sym___clrcall] = ACTIONS(1487), - [anon_sym___stdcall] = ACTIONS(1487), - [anon_sym___fastcall] = ACTIONS(1487), - [anon_sym___thiscall] = ACTIONS(1487), - [anon_sym___vectorcall] = ACTIONS(1487), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_auto] = ACTIONS(1487), - [anon_sym_register] = ACTIONS(1487), - [anon_sym_inline] = ACTIONS(1487), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_volatile] = ACTIONS(1487), - [anon_sym_restrict] = ACTIONS(1487), - [anon_sym__Atomic] = ACTIONS(1487), - [anon_sym_in] = ACTIONS(1487), - [anon_sym_out] = ACTIONS(1487), - [anon_sym_inout] = ACTIONS(1487), - [anon_sym_bycopy] = ACTIONS(1487), - [anon_sym_byref] = ACTIONS(1487), - [anon_sym_oneway] = ACTIONS(1487), - [anon_sym__Nullable] = ACTIONS(1487), - [anon_sym__Nonnull] = ACTIONS(1487), - [anon_sym__Nullable_result] = ACTIONS(1487), - [anon_sym__Null_unspecified] = ACTIONS(1487), - [anon_sym___autoreleasing] = ACTIONS(1487), - [anon_sym___nullable] = ACTIONS(1487), - [anon_sym___nonnull] = ACTIONS(1487), - [anon_sym___strong] = ACTIONS(1487), - [anon_sym___weak] = ACTIONS(1487), - [anon_sym___bridge] = ACTIONS(1487), - [anon_sym___bridge_transfer] = ACTIONS(1487), - [anon_sym___bridge_retained] = ACTIONS(1487), - [anon_sym___unsafe_unretained] = ACTIONS(1487), - [anon_sym___block] = ACTIONS(1487), - [anon_sym___kindof] = ACTIONS(1487), - [anon_sym___unused] = ACTIONS(1487), - [anon_sym__Complex] = ACTIONS(1487), - [anon_sym___complex] = ACTIONS(1487), - [anon_sym_IBOutlet] = ACTIONS(1487), - [anon_sym_IBInspectable] = ACTIONS(1487), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1487), - [anon_sym_signed] = ACTIONS(1487), - [anon_sym_unsigned] = ACTIONS(1487), - [anon_sym_long] = ACTIONS(1487), - [anon_sym_short] = ACTIONS(1487), - [sym_primitive_type] = ACTIONS(1487), - [anon_sym_enum] = ACTIONS(1487), - [anon_sym_NS_ENUM] = ACTIONS(1487), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1487), - [anon_sym_NS_OPTIONS] = ACTIONS(1487), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1487), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1487), - [anon_sym_ATend] = ACTIONS(1485), - [sym_optional] = ACTIONS(1485), - [sym_required] = ACTIONS(1485), - [anon_sym_ATproperty] = ACTIONS(1485), - [sym_method_attribute_specifier] = ACTIONS(1487), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1487), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1487), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1487), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1487), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1487), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1487), - [anon_sym_NS_AVAILABLE] = ACTIONS(1487), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1487), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1487), - [anon_sym_API_AVAILABLE] = ACTIONS(1487), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1487), - [anon_sym_API_DEPRECATED] = ACTIONS(1487), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1487), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1487), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1487), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1487), - [anon_sym___deprecated_msg] = ACTIONS(1487), - [anon_sym___deprecated_enum_msg] = ACTIONS(1487), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1487), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1487), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1487), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1487), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1487), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1487), - [anon_sym_ATsynthesize] = ACTIONS(1485), - [anon_sym_ATdynamic] = ACTIONS(1485), - [anon_sym_typeof] = ACTIONS(1487), - [anon_sym___typeof] = ACTIONS(1487), - [anon_sym___typeof__] = ACTIONS(1487), - [sym_id] = ACTIONS(1487), - [sym_instancetype] = ACTIONS(1487), - [sym_Class] = ACTIONS(1487), - [sym_SEL] = ACTIONS(1487), - [sym_IMP] = ACTIONS(1487), - [sym_BOOL] = ACTIONS(1487), - [sym_auto] = ACTIONS(1487), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2861] = { - [sym_identifier] = ACTIONS(1561), - [aux_sym_preproc_def_token1] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_typedef] = ACTIONS(1561), - [anon_sym_extern] = ACTIONS(1561), - [anon_sym___attribute] = ACTIONS(1561), - [anon_sym___attribute__] = ACTIONS(1561), - [anon_sym___declspec] = ACTIONS(1561), - [anon_sym___cdecl] = ACTIONS(1561), - [anon_sym___clrcall] = ACTIONS(1561), - [anon_sym___stdcall] = ACTIONS(1561), - [anon_sym___fastcall] = ACTIONS(1561), - [anon_sym___thiscall] = ACTIONS(1561), - [anon_sym___vectorcall] = ACTIONS(1561), - [anon_sym_static] = ACTIONS(1561), - [anon_sym_auto] = ACTIONS(1561), - [anon_sym_register] = ACTIONS(1561), - [anon_sym_inline] = ACTIONS(1561), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1561), - [anon_sym_const] = ACTIONS(1561), - [anon_sym_volatile] = ACTIONS(1561), - [anon_sym_restrict] = ACTIONS(1561), - [anon_sym__Atomic] = ACTIONS(1561), - [anon_sym_in] = ACTIONS(1561), - [anon_sym_out] = ACTIONS(1561), - [anon_sym_inout] = ACTIONS(1561), - [anon_sym_bycopy] = ACTIONS(1561), - [anon_sym_byref] = ACTIONS(1561), - [anon_sym_oneway] = ACTIONS(1561), - [anon_sym__Nullable] = ACTIONS(1561), - [anon_sym__Nonnull] = ACTIONS(1561), - [anon_sym__Nullable_result] = ACTIONS(1561), - [anon_sym__Null_unspecified] = ACTIONS(1561), - [anon_sym___autoreleasing] = ACTIONS(1561), - [anon_sym___nullable] = ACTIONS(1561), - [anon_sym___nonnull] = ACTIONS(1561), - [anon_sym___strong] = ACTIONS(1561), - [anon_sym___weak] = ACTIONS(1561), - [anon_sym___bridge] = ACTIONS(1561), - [anon_sym___bridge_transfer] = ACTIONS(1561), - [anon_sym___bridge_retained] = ACTIONS(1561), - [anon_sym___unsafe_unretained] = ACTIONS(1561), - [anon_sym___block] = ACTIONS(1561), - [anon_sym___kindof] = ACTIONS(1561), - [anon_sym___unused] = ACTIONS(1561), - [anon_sym__Complex] = ACTIONS(1561), - [anon_sym___complex] = ACTIONS(1561), - [anon_sym_IBOutlet] = ACTIONS(1561), - [anon_sym_IBInspectable] = ACTIONS(1561), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1561), - [anon_sym_signed] = ACTIONS(1561), - [anon_sym_unsigned] = ACTIONS(1561), - [anon_sym_long] = ACTIONS(1561), - [anon_sym_short] = ACTIONS(1561), - [sym_primitive_type] = ACTIONS(1561), - [anon_sym_enum] = ACTIONS(1561), - [anon_sym_NS_ENUM] = ACTIONS(1561), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1561), - [anon_sym_NS_OPTIONS] = ACTIONS(1561), - [anon_sym_struct] = ACTIONS(1561), - [anon_sym_union] = ACTIONS(1561), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1561), - [anon_sym_ATend] = ACTIONS(1563), - [sym_optional] = ACTIONS(1563), - [sym_required] = ACTIONS(1563), - [anon_sym_ATproperty] = ACTIONS(1563), - [sym_method_attribute_specifier] = ACTIONS(1561), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1561), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1561), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1561), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1561), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1561), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1561), - [anon_sym_NS_AVAILABLE] = ACTIONS(1561), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1561), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1561), - [anon_sym_API_AVAILABLE] = ACTIONS(1561), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1561), - [anon_sym_API_DEPRECATED] = ACTIONS(1561), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1561), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1561), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1561), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1561), - [anon_sym___deprecated_msg] = ACTIONS(1561), - [anon_sym___deprecated_enum_msg] = ACTIONS(1561), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1561), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1561), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1561), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1561), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1561), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1561), - [anon_sym_ATsynthesize] = ACTIONS(1563), - [anon_sym_ATdynamic] = ACTIONS(1563), - [anon_sym_typeof] = ACTIONS(1561), - [anon_sym___typeof] = ACTIONS(1561), - [anon_sym___typeof__] = ACTIONS(1561), - [sym_id] = ACTIONS(1561), - [sym_instancetype] = ACTIONS(1561), - [sym_Class] = ACTIONS(1561), - [sym_SEL] = ACTIONS(1561), - [sym_IMP] = ACTIONS(1561), - [sym_BOOL] = ACTIONS(1561), - [sym_auto] = ACTIONS(1561), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2862] = { - [sym_identifier] = ACTIONS(1557), - [aux_sym_preproc_def_token1] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1559), - [anon_sym_typedef] = ACTIONS(1557), - [anon_sym_extern] = ACTIONS(1557), - [anon_sym___attribute] = ACTIONS(1557), - [anon_sym___attribute__] = ACTIONS(1557), - [anon_sym___declspec] = ACTIONS(1557), - [anon_sym___cdecl] = ACTIONS(1557), - [anon_sym___clrcall] = ACTIONS(1557), - [anon_sym___stdcall] = ACTIONS(1557), - [anon_sym___fastcall] = ACTIONS(1557), - [anon_sym___thiscall] = ACTIONS(1557), - [anon_sym___vectorcall] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_auto] = ACTIONS(1557), - [anon_sym_register] = ACTIONS(1557), - [anon_sym_inline] = ACTIONS(1557), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1557), - [anon_sym_const] = ACTIONS(1557), - [anon_sym_volatile] = ACTIONS(1557), - [anon_sym_restrict] = ACTIONS(1557), - [anon_sym__Atomic] = ACTIONS(1557), - [anon_sym_in] = ACTIONS(1557), - [anon_sym_out] = ACTIONS(1557), - [anon_sym_inout] = ACTIONS(1557), - [anon_sym_bycopy] = ACTIONS(1557), - [anon_sym_byref] = ACTIONS(1557), - [anon_sym_oneway] = ACTIONS(1557), - [anon_sym__Nullable] = ACTIONS(1557), - [anon_sym__Nonnull] = ACTIONS(1557), - [anon_sym__Nullable_result] = ACTIONS(1557), - [anon_sym__Null_unspecified] = ACTIONS(1557), - [anon_sym___autoreleasing] = ACTIONS(1557), - [anon_sym___nullable] = ACTIONS(1557), - [anon_sym___nonnull] = ACTIONS(1557), - [anon_sym___strong] = ACTIONS(1557), - [anon_sym___weak] = ACTIONS(1557), - [anon_sym___bridge] = ACTIONS(1557), - [anon_sym___bridge_transfer] = ACTIONS(1557), - [anon_sym___bridge_retained] = ACTIONS(1557), - [anon_sym___unsafe_unretained] = ACTIONS(1557), - [anon_sym___block] = ACTIONS(1557), - [anon_sym___kindof] = ACTIONS(1557), - [anon_sym___unused] = ACTIONS(1557), - [anon_sym__Complex] = ACTIONS(1557), - [anon_sym___complex] = ACTIONS(1557), - [anon_sym_IBOutlet] = ACTIONS(1557), - [anon_sym_IBInspectable] = ACTIONS(1557), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1557), - [anon_sym_signed] = ACTIONS(1557), - [anon_sym_unsigned] = ACTIONS(1557), - [anon_sym_long] = ACTIONS(1557), - [anon_sym_short] = ACTIONS(1557), - [sym_primitive_type] = ACTIONS(1557), - [anon_sym_enum] = ACTIONS(1557), - [anon_sym_NS_ENUM] = ACTIONS(1557), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1557), - [anon_sym_NS_OPTIONS] = ACTIONS(1557), - [anon_sym_struct] = ACTIONS(1557), - [anon_sym_union] = ACTIONS(1557), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1557), - [anon_sym_ATend] = ACTIONS(1559), - [sym_optional] = ACTIONS(1559), - [sym_required] = ACTIONS(1559), - [anon_sym_ATproperty] = ACTIONS(1559), - [sym_method_attribute_specifier] = ACTIONS(1557), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1557), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1557), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1557), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1557), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1557), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1557), - [anon_sym_NS_AVAILABLE] = ACTIONS(1557), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1557), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1557), - [anon_sym_API_AVAILABLE] = ACTIONS(1557), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1557), - [anon_sym_API_DEPRECATED] = ACTIONS(1557), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1557), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1557), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1557), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1557), - [anon_sym___deprecated_msg] = ACTIONS(1557), - [anon_sym___deprecated_enum_msg] = ACTIONS(1557), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1557), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1557), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1557), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1557), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1557), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1557), - [anon_sym_ATsynthesize] = ACTIONS(1559), - [anon_sym_ATdynamic] = ACTIONS(1559), - [anon_sym_typeof] = ACTIONS(1557), - [anon_sym___typeof] = ACTIONS(1557), - [anon_sym___typeof__] = ACTIONS(1557), - [sym_id] = ACTIONS(1557), - [sym_instancetype] = ACTIONS(1557), - [sym_Class] = ACTIONS(1557), - [sym_SEL] = ACTIONS(1557), - [sym_IMP] = ACTIONS(1557), - [sym_BOOL] = ACTIONS(1557), - [sym_auto] = ACTIONS(1557), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2863] = { - [sym_identifier] = ACTIONS(1549), - [aux_sym_preproc_def_token1] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1551), - [anon_sym_typedef] = ACTIONS(1549), - [anon_sym_extern] = ACTIONS(1549), - [anon_sym___attribute] = ACTIONS(1549), - [anon_sym___attribute__] = ACTIONS(1549), - [anon_sym___declspec] = ACTIONS(1549), - [anon_sym___cdecl] = ACTIONS(1549), - [anon_sym___clrcall] = ACTIONS(1549), - [anon_sym___stdcall] = ACTIONS(1549), - [anon_sym___fastcall] = ACTIONS(1549), - [anon_sym___thiscall] = ACTIONS(1549), - [anon_sym___vectorcall] = ACTIONS(1549), - [anon_sym_static] = ACTIONS(1549), - [anon_sym_auto] = ACTIONS(1549), - [anon_sym_register] = ACTIONS(1549), - [anon_sym_inline] = ACTIONS(1549), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1549), - [anon_sym_volatile] = ACTIONS(1549), - [anon_sym_restrict] = ACTIONS(1549), - [anon_sym__Atomic] = ACTIONS(1549), - [anon_sym_in] = ACTIONS(1549), - [anon_sym_out] = ACTIONS(1549), - [anon_sym_inout] = ACTIONS(1549), - [anon_sym_bycopy] = ACTIONS(1549), - [anon_sym_byref] = ACTIONS(1549), - [anon_sym_oneway] = ACTIONS(1549), - [anon_sym__Nullable] = ACTIONS(1549), - [anon_sym__Nonnull] = ACTIONS(1549), - [anon_sym__Nullable_result] = ACTIONS(1549), - [anon_sym__Null_unspecified] = ACTIONS(1549), - [anon_sym___autoreleasing] = ACTIONS(1549), - [anon_sym___nullable] = ACTIONS(1549), - [anon_sym___nonnull] = ACTIONS(1549), - [anon_sym___strong] = ACTIONS(1549), - [anon_sym___weak] = ACTIONS(1549), - [anon_sym___bridge] = ACTIONS(1549), - [anon_sym___bridge_transfer] = ACTIONS(1549), - [anon_sym___bridge_retained] = ACTIONS(1549), - [anon_sym___unsafe_unretained] = ACTIONS(1549), - [anon_sym___block] = ACTIONS(1549), - [anon_sym___kindof] = ACTIONS(1549), - [anon_sym___unused] = ACTIONS(1549), - [anon_sym__Complex] = ACTIONS(1549), - [anon_sym___complex] = ACTIONS(1549), - [anon_sym_IBOutlet] = ACTIONS(1549), - [anon_sym_IBInspectable] = ACTIONS(1549), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1549), - [anon_sym_signed] = ACTIONS(1549), - [anon_sym_unsigned] = ACTIONS(1549), - [anon_sym_long] = ACTIONS(1549), - [anon_sym_short] = ACTIONS(1549), - [sym_primitive_type] = ACTIONS(1549), - [anon_sym_enum] = ACTIONS(1549), - [anon_sym_NS_ENUM] = ACTIONS(1549), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1549), - [anon_sym_NS_OPTIONS] = ACTIONS(1549), - [anon_sym_struct] = ACTIONS(1549), - [anon_sym_union] = ACTIONS(1549), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1549), - [anon_sym_ATend] = ACTIONS(1551), - [sym_optional] = ACTIONS(1551), - [sym_required] = ACTIONS(1551), - [anon_sym_ATproperty] = ACTIONS(1551), - [sym_method_attribute_specifier] = ACTIONS(1549), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1549), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1549), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1549), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1549), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1549), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1549), - [anon_sym_NS_AVAILABLE] = ACTIONS(1549), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1549), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1549), - [anon_sym_API_AVAILABLE] = ACTIONS(1549), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1549), - [anon_sym_API_DEPRECATED] = ACTIONS(1549), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1549), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1549), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1549), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1549), - [anon_sym___deprecated_msg] = ACTIONS(1549), - [anon_sym___deprecated_enum_msg] = ACTIONS(1549), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1549), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1549), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1549), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1549), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1549), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1549), - [anon_sym_ATsynthesize] = ACTIONS(1551), - [anon_sym_ATdynamic] = ACTIONS(1551), - [anon_sym_typeof] = ACTIONS(1549), - [anon_sym___typeof] = ACTIONS(1549), - [anon_sym___typeof__] = ACTIONS(1549), - [sym_id] = ACTIONS(1549), - [sym_instancetype] = ACTIONS(1549), - [sym_Class] = ACTIONS(1549), - [sym_SEL] = ACTIONS(1549), - [sym_IMP] = ACTIONS(1549), - [sym_BOOL] = ACTIONS(1549), - [sym_auto] = ACTIONS(1549), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2864] = { - [sym_identifier] = ACTIONS(1483), - [aux_sym_preproc_def_token1] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_typedef] = ACTIONS(1483), - [anon_sym_extern] = ACTIONS(1483), - [anon_sym___attribute] = ACTIONS(1483), - [anon_sym___attribute__] = ACTIONS(1483), - [anon_sym___declspec] = ACTIONS(1483), - [anon_sym___cdecl] = ACTIONS(1483), - [anon_sym___clrcall] = ACTIONS(1483), - [anon_sym___stdcall] = ACTIONS(1483), - [anon_sym___fastcall] = ACTIONS(1483), - [anon_sym___thiscall] = ACTIONS(1483), - [anon_sym___vectorcall] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_auto] = ACTIONS(1483), - [anon_sym_register] = ACTIONS(1483), - [anon_sym_inline] = ACTIONS(1483), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_volatile] = ACTIONS(1483), - [anon_sym_restrict] = ACTIONS(1483), - [anon_sym__Atomic] = ACTIONS(1483), - [anon_sym_in] = ACTIONS(1483), - [anon_sym_out] = ACTIONS(1483), - [anon_sym_inout] = ACTIONS(1483), - [anon_sym_bycopy] = ACTIONS(1483), - [anon_sym_byref] = ACTIONS(1483), - [anon_sym_oneway] = ACTIONS(1483), - [anon_sym__Nullable] = ACTIONS(1483), - [anon_sym__Nonnull] = ACTIONS(1483), - [anon_sym__Nullable_result] = ACTIONS(1483), - [anon_sym__Null_unspecified] = ACTIONS(1483), - [anon_sym___autoreleasing] = ACTIONS(1483), - [anon_sym___nullable] = ACTIONS(1483), - [anon_sym___nonnull] = ACTIONS(1483), - [anon_sym___strong] = ACTIONS(1483), - [anon_sym___weak] = ACTIONS(1483), - [anon_sym___bridge] = ACTIONS(1483), - [anon_sym___bridge_transfer] = ACTIONS(1483), - [anon_sym___bridge_retained] = ACTIONS(1483), - [anon_sym___unsafe_unretained] = ACTIONS(1483), - [anon_sym___block] = ACTIONS(1483), - [anon_sym___kindof] = ACTIONS(1483), - [anon_sym___unused] = ACTIONS(1483), - [anon_sym__Complex] = ACTIONS(1483), - [anon_sym___complex] = ACTIONS(1483), - [anon_sym_IBOutlet] = ACTIONS(1483), - [anon_sym_IBInspectable] = ACTIONS(1483), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1483), - [anon_sym_signed] = ACTIONS(1483), - [anon_sym_unsigned] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [sym_primitive_type] = ACTIONS(1483), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_NS_ENUM] = ACTIONS(1483), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1483), - [anon_sym_NS_OPTIONS] = ACTIONS(1483), - [anon_sym_struct] = ACTIONS(1483), - [anon_sym_union] = ACTIONS(1483), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1483), - [anon_sym_ATend] = ACTIONS(1481), - [sym_optional] = ACTIONS(1481), - [sym_required] = ACTIONS(1481), - [anon_sym_ATproperty] = ACTIONS(1481), - [sym_method_attribute_specifier] = ACTIONS(1483), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1483), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1483), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1483), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1483), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1483), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1483), - [anon_sym_NS_AVAILABLE] = ACTIONS(1483), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1483), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1483), - [anon_sym_API_AVAILABLE] = ACTIONS(1483), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1483), - [anon_sym_API_DEPRECATED] = ACTIONS(1483), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1483), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1483), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1483), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1483), - [anon_sym___deprecated_msg] = ACTIONS(1483), - [anon_sym___deprecated_enum_msg] = ACTIONS(1483), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1483), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1483), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1483), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1483), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1483), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1483), - [anon_sym_ATsynthesize] = ACTIONS(1481), - [anon_sym_ATdynamic] = ACTIONS(1481), - [anon_sym_typeof] = ACTIONS(1483), - [anon_sym___typeof] = ACTIONS(1483), - [anon_sym___typeof__] = ACTIONS(1483), - [sym_id] = ACTIONS(1483), - [sym_instancetype] = ACTIONS(1483), - [sym_Class] = ACTIONS(1483), - [sym_SEL] = ACTIONS(1483), - [sym_IMP] = ACTIONS(1483), - [sym_BOOL] = ACTIONS(1483), - [sym_auto] = ACTIONS(1483), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2865] = { - [sym_identifier] = ACTIONS(1479), - [aux_sym_preproc_def_token1] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_typedef] = ACTIONS(1479), - [anon_sym_extern] = ACTIONS(1479), - [anon_sym___attribute] = ACTIONS(1479), - [anon_sym___attribute__] = ACTIONS(1479), - [anon_sym___declspec] = ACTIONS(1479), - [anon_sym___cdecl] = ACTIONS(1479), - [anon_sym___clrcall] = ACTIONS(1479), - [anon_sym___stdcall] = ACTIONS(1479), - [anon_sym___fastcall] = ACTIONS(1479), - [anon_sym___thiscall] = ACTIONS(1479), - [anon_sym___vectorcall] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_auto] = ACTIONS(1479), - [anon_sym_register] = ACTIONS(1479), - [anon_sym_inline] = ACTIONS(1479), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_volatile] = ACTIONS(1479), - [anon_sym_restrict] = ACTIONS(1479), - [anon_sym__Atomic] = ACTIONS(1479), - [anon_sym_in] = ACTIONS(1479), - [anon_sym_out] = ACTIONS(1479), - [anon_sym_inout] = ACTIONS(1479), - [anon_sym_bycopy] = ACTIONS(1479), - [anon_sym_byref] = ACTIONS(1479), - [anon_sym_oneway] = ACTIONS(1479), - [anon_sym__Nullable] = ACTIONS(1479), - [anon_sym__Nonnull] = ACTIONS(1479), - [anon_sym__Nullable_result] = ACTIONS(1479), - [anon_sym__Null_unspecified] = ACTIONS(1479), - [anon_sym___autoreleasing] = ACTIONS(1479), - [anon_sym___nullable] = ACTIONS(1479), - [anon_sym___nonnull] = ACTIONS(1479), - [anon_sym___strong] = ACTIONS(1479), - [anon_sym___weak] = ACTIONS(1479), - [anon_sym___bridge] = ACTIONS(1479), - [anon_sym___bridge_transfer] = ACTIONS(1479), - [anon_sym___bridge_retained] = ACTIONS(1479), - [anon_sym___unsafe_unretained] = ACTIONS(1479), - [anon_sym___block] = ACTIONS(1479), - [anon_sym___kindof] = ACTIONS(1479), - [anon_sym___unused] = ACTIONS(1479), - [anon_sym__Complex] = ACTIONS(1479), - [anon_sym___complex] = ACTIONS(1479), - [anon_sym_IBOutlet] = ACTIONS(1479), - [anon_sym_IBInspectable] = ACTIONS(1479), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1479), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1479), - [anon_sym_enum] = ACTIONS(1479), - [anon_sym_NS_ENUM] = ACTIONS(1479), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1479), - [anon_sym_NS_OPTIONS] = ACTIONS(1479), - [anon_sym_struct] = ACTIONS(1479), - [anon_sym_union] = ACTIONS(1479), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1479), - [anon_sym_ATend] = ACTIONS(1477), - [sym_optional] = ACTIONS(1477), - [sym_required] = ACTIONS(1477), - [anon_sym_ATproperty] = ACTIONS(1477), - [sym_method_attribute_specifier] = ACTIONS(1479), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1479), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1479), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1479), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1479), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1479), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1479), - [anon_sym_NS_AVAILABLE] = ACTIONS(1479), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1479), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1479), - [anon_sym_API_AVAILABLE] = ACTIONS(1479), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1479), - [anon_sym_API_DEPRECATED] = ACTIONS(1479), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1479), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1479), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1479), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1479), - [anon_sym___deprecated_msg] = ACTIONS(1479), - [anon_sym___deprecated_enum_msg] = ACTIONS(1479), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1479), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1479), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1479), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1479), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1479), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1479), - [anon_sym_ATsynthesize] = ACTIONS(1477), - [anon_sym_ATdynamic] = ACTIONS(1477), - [anon_sym_typeof] = ACTIONS(1479), - [anon_sym___typeof] = ACTIONS(1479), - [anon_sym___typeof__] = ACTIONS(1479), - [sym_id] = ACTIONS(1479), - [sym_instancetype] = ACTIONS(1479), - [sym_Class] = ACTIONS(1479), - [sym_SEL] = ACTIONS(1479), - [sym_IMP] = ACTIONS(1479), - [sym_BOOL] = ACTIONS(1479), - [sym_auto] = ACTIONS(1479), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2866] = { - [sym_identifier] = ACTIONS(1463), - [aux_sym_preproc_def_token1] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_typedef] = ACTIONS(1463), - [anon_sym_extern] = ACTIONS(1463), - [anon_sym___attribute] = ACTIONS(1463), - [anon_sym___attribute__] = ACTIONS(1463), - [anon_sym___declspec] = ACTIONS(1463), - [anon_sym___cdecl] = ACTIONS(1463), - [anon_sym___clrcall] = ACTIONS(1463), - [anon_sym___stdcall] = ACTIONS(1463), - [anon_sym___fastcall] = ACTIONS(1463), - [anon_sym___thiscall] = ACTIONS(1463), - [anon_sym___vectorcall] = ACTIONS(1463), - [anon_sym_static] = ACTIONS(1463), - [anon_sym_auto] = ACTIONS(1463), - [anon_sym_register] = ACTIONS(1463), - [anon_sym_inline] = ACTIONS(1463), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_volatile] = ACTIONS(1463), - [anon_sym_restrict] = ACTIONS(1463), - [anon_sym__Atomic] = ACTIONS(1463), - [anon_sym_in] = ACTIONS(1463), - [anon_sym_out] = ACTIONS(1463), - [anon_sym_inout] = ACTIONS(1463), - [anon_sym_bycopy] = ACTIONS(1463), - [anon_sym_byref] = ACTIONS(1463), - [anon_sym_oneway] = ACTIONS(1463), - [anon_sym__Nullable] = ACTIONS(1463), - [anon_sym__Nonnull] = ACTIONS(1463), - [anon_sym__Nullable_result] = ACTIONS(1463), - [anon_sym__Null_unspecified] = ACTIONS(1463), - [anon_sym___autoreleasing] = ACTIONS(1463), - [anon_sym___nullable] = ACTIONS(1463), - [anon_sym___nonnull] = ACTIONS(1463), - [anon_sym___strong] = ACTIONS(1463), - [anon_sym___weak] = ACTIONS(1463), - [anon_sym___bridge] = ACTIONS(1463), - [anon_sym___bridge_transfer] = ACTIONS(1463), - [anon_sym___bridge_retained] = ACTIONS(1463), - [anon_sym___unsafe_unretained] = ACTIONS(1463), - [anon_sym___block] = ACTIONS(1463), - [anon_sym___kindof] = ACTIONS(1463), - [anon_sym___unused] = ACTIONS(1463), - [anon_sym__Complex] = ACTIONS(1463), - [anon_sym___complex] = ACTIONS(1463), - [anon_sym_IBOutlet] = ACTIONS(1463), - [anon_sym_IBInspectable] = ACTIONS(1463), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1463), - [anon_sym_signed] = ACTIONS(1463), - [anon_sym_unsigned] = ACTIONS(1463), - [anon_sym_long] = ACTIONS(1463), - [anon_sym_short] = ACTIONS(1463), - [sym_primitive_type] = ACTIONS(1463), - [anon_sym_enum] = ACTIONS(1463), - [anon_sym_NS_ENUM] = ACTIONS(1463), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1463), - [anon_sym_NS_OPTIONS] = ACTIONS(1463), - [anon_sym_struct] = ACTIONS(1463), - [anon_sym_union] = ACTIONS(1463), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1463), - [anon_sym_ATend] = ACTIONS(1461), - [sym_optional] = ACTIONS(1461), - [sym_required] = ACTIONS(1461), - [anon_sym_ATproperty] = ACTIONS(1461), - [sym_method_attribute_specifier] = ACTIONS(1463), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1463), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1463), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1463), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1463), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1463), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1463), - [anon_sym_NS_AVAILABLE] = ACTIONS(1463), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1463), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1463), - [anon_sym_API_AVAILABLE] = ACTIONS(1463), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1463), - [anon_sym_API_DEPRECATED] = ACTIONS(1463), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1463), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1463), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1463), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1463), - [anon_sym___deprecated_msg] = ACTIONS(1463), - [anon_sym___deprecated_enum_msg] = ACTIONS(1463), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1463), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1463), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1463), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1463), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1463), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1463), - [anon_sym_ATsynthesize] = ACTIONS(1461), - [anon_sym_ATdynamic] = ACTIONS(1461), - [anon_sym_typeof] = ACTIONS(1463), - [anon_sym___typeof] = ACTIONS(1463), - [anon_sym___typeof__] = ACTIONS(1463), - [sym_id] = ACTIONS(1463), - [sym_instancetype] = ACTIONS(1463), - [sym_Class] = ACTIONS(1463), - [sym_SEL] = ACTIONS(1463), - [sym_IMP] = ACTIONS(1463), - [sym_BOOL] = ACTIONS(1463), - [sym_auto] = ACTIONS(1463), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2867] = { - [sym_identifier] = ACTIONS(1459), - [aux_sym_preproc_def_token1] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1457), - [anon_sym_typedef] = ACTIONS(1459), - [anon_sym_extern] = ACTIONS(1459), - [anon_sym___attribute] = ACTIONS(1459), - [anon_sym___attribute__] = ACTIONS(1459), - [anon_sym___declspec] = ACTIONS(1459), - [anon_sym___cdecl] = ACTIONS(1459), - [anon_sym___clrcall] = ACTIONS(1459), - [anon_sym___stdcall] = ACTIONS(1459), - [anon_sym___fastcall] = ACTIONS(1459), - [anon_sym___thiscall] = ACTIONS(1459), - [anon_sym___vectorcall] = ACTIONS(1459), - [anon_sym_static] = ACTIONS(1459), - [anon_sym_auto] = ACTIONS(1459), - [anon_sym_register] = ACTIONS(1459), - [anon_sym_inline] = ACTIONS(1459), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1459), - [anon_sym_const] = ACTIONS(1459), - [anon_sym_volatile] = ACTIONS(1459), - [anon_sym_restrict] = ACTIONS(1459), - [anon_sym__Atomic] = ACTIONS(1459), - [anon_sym_in] = ACTIONS(1459), - [anon_sym_out] = ACTIONS(1459), - [anon_sym_inout] = ACTIONS(1459), - [anon_sym_bycopy] = ACTIONS(1459), - [anon_sym_byref] = ACTIONS(1459), - [anon_sym_oneway] = ACTIONS(1459), - [anon_sym__Nullable] = ACTIONS(1459), - [anon_sym__Nonnull] = ACTIONS(1459), - [anon_sym__Nullable_result] = ACTIONS(1459), - [anon_sym__Null_unspecified] = ACTIONS(1459), - [anon_sym___autoreleasing] = ACTIONS(1459), - [anon_sym___nullable] = ACTIONS(1459), - [anon_sym___nonnull] = ACTIONS(1459), - [anon_sym___strong] = ACTIONS(1459), - [anon_sym___weak] = ACTIONS(1459), - [anon_sym___bridge] = ACTIONS(1459), - [anon_sym___bridge_transfer] = ACTIONS(1459), - [anon_sym___bridge_retained] = ACTIONS(1459), - [anon_sym___unsafe_unretained] = ACTIONS(1459), - [anon_sym___block] = ACTIONS(1459), - [anon_sym___kindof] = ACTIONS(1459), - [anon_sym___unused] = ACTIONS(1459), - [anon_sym__Complex] = ACTIONS(1459), - [anon_sym___complex] = ACTIONS(1459), - [anon_sym_IBOutlet] = ACTIONS(1459), - [anon_sym_IBInspectable] = ACTIONS(1459), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1459), - [anon_sym_signed] = ACTIONS(1459), - [anon_sym_unsigned] = ACTIONS(1459), - [anon_sym_long] = ACTIONS(1459), - [anon_sym_short] = ACTIONS(1459), - [sym_primitive_type] = ACTIONS(1459), - [anon_sym_enum] = ACTIONS(1459), - [anon_sym_NS_ENUM] = ACTIONS(1459), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1459), - [anon_sym_NS_OPTIONS] = ACTIONS(1459), - [anon_sym_struct] = ACTIONS(1459), - [anon_sym_union] = ACTIONS(1459), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1459), - [anon_sym_ATend] = ACTIONS(1457), - [sym_optional] = ACTIONS(1457), - [sym_required] = ACTIONS(1457), - [anon_sym_ATproperty] = ACTIONS(1457), - [sym_method_attribute_specifier] = ACTIONS(1459), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1459), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1459), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1459), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1459), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1459), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1459), - [anon_sym_NS_AVAILABLE] = ACTIONS(1459), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1459), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1459), - [anon_sym_API_AVAILABLE] = ACTIONS(1459), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1459), - [anon_sym_API_DEPRECATED] = ACTIONS(1459), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1459), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1459), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1459), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1459), - [anon_sym___deprecated_msg] = ACTIONS(1459), - [anon_sym___deprecated_enum_msg] = ACTIONS(1459), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1459), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1459), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1459), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1459), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1459), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1459), - [anon_sym_ATsynthesize] = ACTIONS(1457), - [anon_sym_ATdynamic] = ACTIONS(1457), - [anon_sym_typeof] = ACTIONS(1459), - [anon_sym___typeof] = ACTIONS(1459), - [anon_sym___typeof__] = ACTIONS(1459), - [sym_id] = ACTIONS(1459), - [sym_instancetype] = ACTIONS(1459), - [sym_Class] = ACTIONS(1459), - [sym_SEL] = ACTIONS(1459), - [sym_IMP] = ACTIONS(1459), - [sym_BOOL] = ACTIONS(1459), - [sym_auto] = ACTIONS(1459), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2868] = { + [415] = { [sym_identifier] = ACTIONS(1541), - [aux_sym_preproc_def_token1] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1543), + [aux_sym_preproc_include_token1] = ACTIONS(1539), + [aux_sym_preproc_def_token1] = ACTIONS(1539), + [aux_sym_preproc_if_token1] = ACTIONS(1541), + [aux_sym_preproc_if_token2] = ACTIONS(1541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1541), + [anon_sym_LPAREN2] = ACTIONS(1539), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_CARET] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1539), + [anon_sym_SEMI] = ACTIONS(1539), [anon_sym_typedef] = ACTIONS(1541), [anon_sym_extern] = ACTIONS(1541), [anon_sym___attribute] = ACTIONS(1541), @@ -476385,6 +98780,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1541), [anon_sym___thiscall] = ACTIONS(1541), [anon_sym___vectorcall] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1539), + [anon_sym_LBRACK] = ACTIONS(1539), [anon_sym_static] = ACTIONS(1541), [anon_sym_auto] = ACTIONS(1541), [anon_sym_register] = ACTIONS(1541), @@ -476427,17 +98824,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1541), [sym_primitive_type] = ACTIONS(1541), [anon_sym_enum] = ACTIONS(1541), - [anon_sym_NS_ENUM] = ACTIONS(1541), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1541), - [anon_sym_NS_OPTIONS] = ACTIONS(1541), [anon_sym_struct] = ACTIONS(1541), [anon_sym_union] = ACTIONS(1541), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_else] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_case] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_goto] = ACTIONS(1541), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_sizeof] = ACTIONS(1541), + [sym_number_literal] = ACTIONS(1539), + [anon_sym_L_SQUOTE] = ACTIONS(1539), + [anon_sym_u_SQUOTE] = ACTIONS(1539), + [anon_sym_U_SQUOTE] = ACTIONS(1539), + [anon_sym_u8_SQUOTE] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_L_DQUOTE] = ACTIONS(1539), + [anon_sym_u_DQUOTE] = ACTIONS(1539), + [anon_sym_U_DQUOTE] = ACTIONS(1539), + [anon_sym_u8_DQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), + [sym_true] = ACTIONS(1541), + [sym_false] = ACTIONS(1541), + [sym_null] = ACTIONS(1541), [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1539), + [anon_sym_ATimport] = ACTIONS(1539), [sym__ns_assume_nonnull_declaration] = ACTIONS(1541), - [anon_sym_ATend] = ACTIONS(1543), - [sym_optional] = ACTIONS(1543), - [sym_required] = ACTIONS(1543), - [anon_sym_ATproperty] = ACTIONS(1543), + [anon_sym_ATcompatibility_alias] = ACTIONS(1539), + [anon_sym_ATprotocol] = ACTIONS(1539), + [anon_sym_ATclass] = ACTIONS(1539), + [anon_sym_ATinterface] = ACTIONS(1539), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1541), [sym_method_attribute_specifier] = ACTIONS(1541), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1541), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1541), @@ -476463,11 +98889,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1541), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1541), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1541), - [anon_sym_ATsynthesize] = ACTIONS(1543), - [anon_sym_ATdynamic] = ACTIONS(1543), + [anon_sym_ATimplementation] = ACTIONS(1539), + [anon_sym_NS_ENUM] = ACTIONS(1541), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1541), + [anon_sym_NS_OPTIONS] = ACTIONS(1541), [anon_sym_typeof] = ACTIONS(1541), [anon_sym___typeof] = ACTIONS(1541), [anon_sym___typeof__] = ACTIONS(1541), + [sym_self] = ACTIONS(1541), + [sym_super] = ACTIONS(1541), + [sym_nil] = ACTIONS(1541), [sym_id] = ACTIONS(1541), [sym_instancetype] = ACTIONS(1541), [sym_Class] = ACTIONS(1541), @@ -476475,18 +98906,1444 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1541), [sym_BOOL] = ACTIONS(1541), [sym_auto] = ACTIONS(1541), + [anon_sym_ATautoreleasepool] = ACTIONS(1539), + [anon_sym_ATsynchronized] = ACTIONS(1539), + [anon_sym_ATtry] = ACTIONS(1539), + [anon_sym_ATcatch] = ACTIONS(1539), + [anon_sym_ATfinally] = ACTIONS(1539), + [anon_sym_ATthrow] = ACTIONS(1539), + [anon_sym_ATselector] = ACTIONS(1539), + [anon_sym_ATencode] = ACTIONS(1539), + [anon_sym_AT] = ACTIONS(1541), + [sym_YES] = ACTIONS(1541), + [sym_NO] = ACTIONS(1541), + [anon_sym___builtin_available] = ACTIONS(1541), + [anon_sym_ATavailable] = ACTIONS(1539), + [anon_sym_va_arg] = ACTIONS(1541), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2869] = { + [416] = { + [sym_identifier] = ACTIONS(1557), + [aux_sym_preproc_include_token1] = ACTIONS(1559), + [aux_sym_preproc_def_token1] = ACTIONS(1559), + [aux_sym_preproc_if_token1] = ACTIONS(1557), + [aux_sym_preproc_if_token2] = ACTIONS(1557), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1557), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1557), + [anon_sym_LPAREN2] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_CARET] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_typedef] = ACTIONS(1557), + [anon_sym_extern] = ACTIONS(1557), + [anon_sym___attribute] = ACTIONS(1557), + [anon_sym___attribute__] = ACTIONS(1557), + [anon_sym___declspec] = ACTIONS(1557), + [anon_sym___cdecl] = ACTIONS(1557), + [anon_sym___clrcall] = ACTIONS(1557), + [anon_sym___stdcall] = ACTIONS(1557), + [anon_sym___fastcall] = ACTIONS(1557), + [anon_sym___thiscall] = ACTIONS(1557), + [anon_sym___vectorcall] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_auto] = ACTIONS(1557), + [anon_sym_register] = ACTIONS(1557), + [anon_sym_inline] = ACTIONS(1557), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_volatile] = ACTIONS(1557), + [anon_sym_restrict] = ACTIONS(1557), + [anon_sym__Atomic] = ACTIONS(1557), + [anon_sym_in] = ACTIONS(1557), + [anon_sym_out] = ACTIONS(1557), + [anon_sym_inout] = ACTIONS(1557), + [anon_sym_bycopy] = ACTIONS(1557), + [anon_sym_byref] = ACTIONS(1557), + [anon_sym_oneway] = ACTIONS(1557), + [anon_sym__Nullable] = ACTIONS(1557), + [anon_sym__Nonnull] = ACTIONS(1557), + [anon_sym__Nullable_result] = ACTIONS(1557), + [anon_sym__Null_unspecified] = ACTIONS(1557), + [anon_sym___autoreleasing] = ACTIONS(1557), + [anon_sym___nullable] = ACTIONS(1557), + [anon_sym___nonnull] = ACTIONS(1557), + [anon_sym___strong] = ACTIONS(1557), + [anon_sym___weak] = ACTIONS(1557), + [anon_sym___bridge] = ACTIONS(1557), + [anon_sym___bridge_transfer] = ACTIONS(1557), + [anon_sym___bridge_retained] = ACTIONS(1557), + [anon_sym___unsafe_unretained] = ACTIONS(1557), + [anon_sym___block] = ACTIONS(1557), + [anon_sym___kindof] = ACTIONS(1557), + [anon_sym___unused] = ACTIONS(1557), + [anon_sym__Complex] = ACTIONS(1557), + [anon_sym___complex] = ACTIONS(1557), + [anon_sym_IBOutlet] = ACTIONS(1557), + [anon_sym_IBInspectable] = ACTIONS(1557), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1557), + [anon_sym_signed] = ACTIONS(1557), + [anon_sym_unsigned] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [sym_primitive_type] = ACTIONS(1557), + [anon_sym_enum] = ACTIONS(1557), + [anon_sym_struct] = ACTIONS(1557), + [anon_sym_union] = ACTIONS(1557), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_else] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_case] = ACTIONS(1557), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_goto] = ACTIONS(1557), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_sizeof] = ACTIONS(1557), + [sym_number_literal] = ACTIONS(1559), + [anon_sym_L_SQUOTE] = ACTIONS(1559), + [anon_sym_u_SQUOTE] = ACTIONS(1559), + [anon_sym_U_SQUOTE] = ACTIONS(1559), + [anon_sym_u8_SQUOTE] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_L_DQUOTE] = ACTIONS(1559), + [anon_sym_u_DQUOTE] = ACTIONS(1559), + [anon_sym_U_DQUOTE] = ACTIONS(1559), + [anon_sym_u8_DQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [sym_true] = ACTIONS(1557), + [sym_false] = ACTIONS(1557), + [sym_null] = ACTIONS(1557), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1559), + [anon_sym_ATimport] = ACTIONS(1559), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1557), + [anon_sym_ATcompatibility_alias] = ACTIONS(1559), + [anon_sym_ATprotocol] = ACTIONS(1559), + [anon_sym_ATclass] = ACTIONS(1559), + [anon_sym_ATinterface] = ACTIONS(1559), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1557), + [sym_method_attribute_specifier] = ACTIONS(1557), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1557), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1557), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1557), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1557), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1557), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1557), + [anon_sym_NS_AVAILABLE] = ACTIONS(1557), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1557), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1557), + [anon_sym_API_AVAILABLE] = ACTIONS(1557), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1557), + [anon_sym_API_DEPRECATED] = ACTIONS(1557), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1557), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1557), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1557), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1557), + [anon_sym___deprecated_msg] = ACTIONS(1557), + [anon_sym___deprecated_enum_msg] = ACTIONS(1557), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1557), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1557), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1557), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1557), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1557), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1557), + [anon_sym_ATimplementation] = ACTIONS(1559), + [anon_sym_NS_ENUM] = ACTIONS(1557), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1557), + [anon_sym_NS_OPTIONS] = ACTIONS(1557), + [anon_sym_typeof] = ACTIONS(1557), + [anon_sym___typeof] = ACTIONS(1557), + [anon_sym___typeof__] = ACTIONS(1557), + [sym_self] = ACTIONS(1557), + [sym_super] = ACTIONS(1557), + [sym_nil] = ACTIONS(1557), + [sym_id] = ACTIONS(1557), + [sym_instancetype] = ACTIONS(1557), + [sym_Class] = ACTIONS(1557), + [sym_SEL] = ACTIONS(1557), + [sym_IMP] = ACTIONS(1557), + [sym_BOOL] = ACTIONS(1557), + [sym_auto] = ACTIONS(1557), + [anon_sym_ATautoreleasepool] = ACTIONS(1559), + [anon_sym_ATsynchronized] = ACTIONS(1559), + [anon_sym_ATtry] = ACTIONS(1559), + [anon_sym_ATcatch] = ACTIONS(1559), + [anon_sym_ATfinally] = ACTIONS(1559), + [anon_sym_ATthrow] = ACTIONS(1559), + [anon_sym_ATselector] = ACTIONS(1559), + [anon_sym_ATencode] = ACTIONS(1559), + [anon_sym_AT] = ACTIONS(1557), + [sym_YES] = ACTIONS(1557), + [sym_NO] = ACTIONS(1557), + [anon_sym___builtin_available] = ACTIONS(1557), + [anon_sym_ATavailable] = ACTIONS(1559), + [anon_sym_va_arg] = ACTIONS(1557), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [417] = { + [sym_identifier] = ACTIONS(1249), + [aux_sym_preproc_include_token1] = ACTIONS(1247), + [aux_sym_preproc_def_token1] = ACTIONS(1247), + [aux_sym_preproc_if_token1] = ACTIONS(1249), + [aux_sym_preproc_if_token2] = ACTIONS(1249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1249), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1249), + [anon_sym_LPAREN2] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1247), + [anon_sym_AMP] = ACTIONS(1247), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_typedef] = ACTIONS(1249), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym___attribute] = ACTIONS(1249), + [anon_sym___attribute__] = ACTIONS(1249), + [anon_sym___declspec] = ACTIONS(1249), + [anon_sym___cdecl] = ACTIONS(1249), + [anon_sym___clrcall] = ACTIONS(1249), + [anon_sym___stdcall] = ACTIONS(1249), + [anon_sym___fastcall] = ACTIONS(1249), + [anon_sym___thiscall] = ACTIONS(1249), + [anon_sym___vectorcall] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1247), + [anon_sym_LBRACK] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1249), + [anon_sym_auto] = ACTIONS(1249), + [anon_sym_register] = ACTIONS(1249), + [anon_sym_inline] = ACTIONS(1249), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_volatile] = ACTIONS(1249), + [anon_sym_restrict] = ACTIONS(1249), + [anon_sym__Atomic] = ACTIONS(1249), + [anon_sym_in] = ACTIONS(1249), + [anon_sym_out] = ACTIONS(1249), + [anon_sym_inout] = ACTIONS(1249), + [anon_sym_bycopy] = ACTIONS(1249), + [anon_sym_byref] = ACTIONS(1249), + [anon_sym_oneway] = ACTIONS(1249), + [anon_sym__Nullable] = ACTIONS(1249), + [anon_sym__Nonnull] = ACTIONS(1249), + [anon_sym__Nullable_result] = ACTIONS(1249), + [anon_sym__Null_unspecified] = ACTIONS(1249), + [anon_sym___autoreleasing] = ACTIONS(1249), + [anon_sym___nullable] = ACTIONS(1249), + [anon_sym___nonnull] = ACTIONS(1249), + [anon_sym___strong] = ACTIONS(1249), + [anon_sym___weak] = ACTIONS(1249), + [anon_sym___bridge] = ACTIONS(1249), + [anon_sym___bridge_transfer] = ACTIONS(1249), + [anon_sym___bridge_retained] = ACTIONS(1249), + [anon_sym___unsafe_unretained] = ACTIONS(1249), + [anon_sym___block] = ACTIONS(1249), + [anon_sym___kindof] = ACTIONS(1249), + [anon_sym___unused] = ACTIONS(1249), + [anon_sym__Complex] = ACTIONS(1249), + [anon_sym___complex] = ACTIONS(1249), + [anon_sym_IBOutlet] = ACTIONS(1249), + [anon_sym_IBInspectable] = ACTIONS(1249), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1249), + [anon_sym_signed] = ACTIONS(1249), + [anon_sym_unsigned] = ACTIONS(1249), + [anon_sym_long] = ACTIONS(1249), + [anon_sym_short] = ACTIONS(1249), + [sym_primitive_type] = ACTIONS(1249), + [anon_sym_enum] = ACTIONS(1249), + [anon_sym_struct] = ACTIONS(1249), + [anon_sym_union] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1249), + [anon_sym_else] = ACTIONS(1249), + [anon_sym_switch] = ACTIONS(1249), + [anon_sym_case] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(1249), + [anon_sym_for] = ACTIONS(1249), + [anon_sym_return] = ACTIONS(1249), + [anon_sym_break] = ACTIONS(1249), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_goto] = ACTIONS(1249), + [anon_sym_DASH_DASH] = ACTIONS(1247), + [anon_sym_PLUS_PLUS] = ACTIONS(1247), + [anon_sym_sizeof] = ACTIONS(1249), + [sym_number_literal] = ACTIONS(1247), + [anon_sym_L_SQUOTE] = ACTIONS(1247), + [anon_sym_u_SQUOTE] = ACTIONS(1247), + [anon_sym_U_SQUOTE] = ACTIONS(1247), + [anon_sym_u8_SQUOTE] = ACTIONS(1247), + [anon_sym_SQUOTE] = ACTIONS(1247), + [anon_sym_L_DQUOTE] = ACTIONS(1247), + [anon_sym_u_DQUOTE] = ACTIONS(1247), + [anon_sym_U_DQUOTE] = ACTIONS(1247), + [anon_sym_u8_DQUOTE] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1247), + [sym_true] = ACTIONS(1249), + [sym_false] = ACTIONS(1249), + [sym_null] = ACTIONS(1249), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1247), + [anon_sym_ATimport] = ACTIONS(1247), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1249), + [anon_sym_ATcompatibility_alias] = ACTIONS(1247), + [anon_sym_ATprotocol] = ACTIONS(1247), + [anon_sym_ATclass] = ACTIONS(1247), + [anon_sym_ATinterface] = ACTIONS(1247), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1249), + [sym_method_attribute_specifier] = ACTIONS(1249), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1249), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1249), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1249), + [anon_sym_NS_AVAILABLE] = ACTIONS(1249), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1249), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1249), + [anon_sym_API_AVAILABLE] = ACTIONS(1249), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1249), + [anon_sym_API_DEPRECATED] = ACTIONS(1249), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1249), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1249), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1249), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1249), + [anon_sym___deprecated_msg] = ACTIONS(1249), + [anon_sym___deprecated_enum_msg] = ACTIONS(1249), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1249), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1249), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1249), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1249), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1249), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1249), + [anon_sym_ATimplementation] = ACTIONS(1247), + [anon_sym_NS_ENUM] = ACTIONS(1249), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1249), + [anon_sym_NS_OPTIONS] = ACTIONS(1249), + [anon_sym_typeof] = ACTIONS(1249), + [anon_sym___typeof] = ACTIONS(1249), + [anon_sym___typeof__] = ACTIONS(1249), + [sym_self] = ACTIONS(1249), + [sym_super] = ACTIONS(1249), + [sym_nil] = ACTIONS(1249), + [sym_id] = ACTIONS(1249), + [sym_instancetype] = ACTIONS(1249), + [sym_Class] = ACTIONS(1249), + [sym_SEL] = ACTIONS(1249), + [sym_IMP] = ACTIONS(1249), + [sym_BOOL] = ACTIONS(1249), + [sym_auto] = ACTIONS(1249), + [anon_sym_ATautoreleasepool] = ACTIONS(1247), + [anon_sym_ATsynchronized] = ACTIONS(1247), + [anon_sym_ATtry] = ACTIONS(1247), + [anon_sym_ATcatch] = ACTIONS(1247), + [anon_sym_ATfinally] = ACTIONS(1247), + [anon_sym_ATthrow] = ACTIONS(1247), + [anon_sym_ATselector] = ACTIONS(1247), + [anon_sym_ATencode] = ACTIONS(1247), + [anon_sym_AT] = ACTIONS(1249), + [sym_YES] = ACTIONS(1249), + [sym_NO] = ACTIONS(1249), + [anon_sym___builtin_available] = ACTIONS(1249), + [anon_sym_ATavailable] = ACTIONS(1247), + [anon_sym_va_arg] = ACTIONS(1249), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [418] = { + [sym_identifier] = ACTIONS(1254), + [aux_sym_preproc_include_token1] = ACTIONS(1251), + [aux_sym_preproc_def_token1] = ACTIONS(1251), + [aux_sym_preproc_if_token1] = ACTIONS(1254), + [aux_sym_preproc_if_token2] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), + [anon_sym_LPAREN2] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1251), + [anon_sym_TILDE] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PLUS] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_typedef] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym___attribute] = ACTIONS(1254), + [anon_sym___attribute__] = ACTIONS(1254), + [anon_sym___declspec] = ACTIONS(1254), + [anon_sym___cdecl] = ACTIONS(1254), + [anon_sym___clrcall] = ACTIONS(1254), + [anon_sym___stdcall] = ACTIONS(1254), + [anon_sym___fastcall] = ACTIONS(1254), + [anon_sym___thiscall] = ACTIONS(1254), + [anon_sym___vectorcall] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_auto] = ACTIONS(1254), + [anon_sym_register] = ACTIONS(1254), + [anon_sym_inline] = ACTIONS(1254), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_volatile] = ACTIONS(1254), + [anon_sym_restrict] = ACTIONS(1254), + [anon_sym__Atomic] = ACTIONS(1254), + [anon_sym_in] = ACTIONS(1254), + [anon_sym_out] = ACTIONS(1254), + [anon_sym_inout] = ACTIONS(1254), + [anon_sym_bycopy] = ACTIONS(1254), + [anon_sym_byref] = ACTIONS(1254), + [anon_sym_oneway] = ACTIONS(1254), + [anon_sym__Nullable] = ACTIONS(1254), + [anon_sym__Nonnull] = ACTIONS(1254), + [anon_sym__Nullable_result] = ACTIONS(1254), + [anon_sym__Null_unspecified] = ACTIONS(1254), + [anon_sym___autoreleasing] = ACTIONS(1254), + [anon_sym___nullable] = ACTIONS(1254), + [anon_sym___nonnull] = ACTIONS(1254), + [anon_sym___strong] = ACTIONS(1254), + [anon_sym___weak] = ACTIONS(1254), + [anon_sym___bridge] = ACTIONS(1254), + [anon_sym___bridge_transfer] = ACTIONS(1254), + [anon_sym___bridge_retained] = ACTIONS(1254), + [anon_sym___unsafe_unretained] = ACTIONS(1254), + [anon_sym___block] = ACTIONS(1254), + [anon_sym___kindof] = ACTIONS(1254), + [anon_sym___unused] = ACTIONS(1254), + [anon_sym__Complex] = ACTIONS(1254), + [anon_sym___complex] = ACTIONS(1254), + [anon_sym_IBOutlet] = ACTIONS(1254), + [anon_sym_IBInspectable] = ACTIONS(1254), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1254), + [anon_sym_unsigned] = ACTIONS(1254), + [anon_sym_long] = ACTIONS(1254), + [anon_sym_short] = ACTIONS(1254), + [sym_primitive_type] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [anon_sym_if] = ACTIONS(1254), + [anon_sym_else] = ACTIONS(1254), + [anon_sym_switch] = ACTIONS(1254), + [anon_sym_case] = ACTIONS(1254), + [anon_sym_default] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1254), + [anon_sym_do] = ACTIONS(1254), + [anon_sym_for] = ACTIONS(1254), + [anon_sym_return] = ACTIONS(1254), + [anon_sym_break] = ACTIONS(1254), + [anon_sym_continue] = ACTIONS(1254), + [anon_sym_goto] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1251), + [anon_sym_sizeof] = ACTIONS(1254), + [sym_number_literal] = ACTIONS(1251), + [anon_sym_L_SQUOTE] = ACTIONS(1251), + [anon_sym_u_SQUOTE] = ACTIONS(1251), + [anon_sym_U_SQUOTE] = ACTIONS(1251), + [anon_sym_u8_SQUOTE] = ACTIONS(1251), + [anon_sym_SQUOTE] = ACTIONS(1251), + [anon_sym_L_DQUOTE] = ACTIONS(1251), + [anon_sym_u_DQUOTE] = ACTIONS(1251), + [anon_sym_U_DQUOTE] = ACTIONS(1251), + [anon_sym_u8_DQUOTE] = ACTIONS(1251), + [anon_sym_DQUOTE] = ACTIONS(1251), + [sym_true] = ACTIONS(1254), + [sym_false] = ACTIONS(1254), + [sym_null] = ACTIONS(1254), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1251), + [anon_sym_ATimport] = ACTIONS(1251), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1254), + [anon_sym_ATcompatibility_alias] = ACTIONS(1251), + [anon_sym_ATprotocol] = ACTIONS(1251), + [anon_sym_ATclass] = ACTIONS(1251), + [anon_sym_ATinterface] = ACTIONS(1251), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1254), + [sym_method_attribute_specifier] = ACTIONS(1254), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1254), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1254), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1254), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1254), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1254), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1254), + [anon_sym_NS_AVAILABLE] = ACTIONS(1254), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1254), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1254), + [anon_sym_API_AVAILABLE] = ACTIONS(1254), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1254), + [anon_sym_API_DEPRECATED] = ACTIONS(1254), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1254), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1254), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1254), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1254), + [anon_sym___deprecated_msg] = ACTIONS(1254), + [anon_sym___deprecated_enum_msg] = ACTIONS(1254), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1254), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1254), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1254), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1254), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1254), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1254), + [anon_sym_ATimplementation] = ACTIONS(1251), + [anon_sym_NS_ENUM] = ACTIONS(1254), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1254), + [anon_sym_NS_OPTIONS] = ACTIONS(1254), + [anon_sym_typeof] = ACTIONS(1254), + [anon_sym___typeof] = ACTIONS(1254), + [anon_sym___typeof__] = ACTIONS(1254), + [sym_self] = ACTIONS(1254), + [sym_super] = ACTIONS(1254), + [sym_nil] = ACTIONS(1254), + [sym_id] = ACTIONS(1254), + [sym_instancetype] = ACTIONS(1254), + [sym_Class] = ACTIONS(1254), + [sym_SEL] = ACTIONS(1254), + [sym_IMP] = ACTIONS(1254), + [sym_BOOL] = ACTIONS(1254), + [sym_auto] = ACTIONS(1254), + [anon_sym_ATautoreleasepool] = ACTIONS(1251), + [anon_sym_ATsynchronized] = ACTIONS(1251), + [anon_sym_ATtry] = ACTIONS(1251), + [anon_sym_ATcatch] = ACTIONS(1251), + [anon_sym_ATfinally] = ACTIONS(1251), + [anon_sym_ATthrow] = ACTIONS(1251), + [anon_sym_ATselector] = ACTIONS(1251), + [anon_sym_ATencode] = ACTIONS(1251), + [anon_sym_AT] = ACTIONS(1254), + [sym_YES] = ACTIONS(1254), + [sym_NO] = ACTIONS(1254), + [anon_sym___builtin_available] = ACTIONS(1254), + [anon_sym_ATavailable] = ACTIONS(1251), + [anon_sym_va_arg] = ACTIONS(1254), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [419] = { + [sym_identifier] = ACTIONS(1259), + [aux_sym_preproc_include_token1] = ACTIONS(1257), + [aux_sym_preproc_def_token1] = ACTIONS(1257), + [aux_sym_preproc_if_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token2] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1259), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1259), + [anon_sym_LPAREN2] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_TILDE] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym___attribute] = ACTIONS(1259), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(1259), + [anon_sym___cdecl] = ACTIONS(1259), + [anon_sym___clrcall] = ACTIONS(1259), + [anon_sym___stdcall] = ACTIONS(1259), + [anon_sym___fastcall] = ACTIONS(1259), + [anon_sym___thiscall] = ACTIONS(1259), + [anon_sym___vectorcall] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_inline] = ACTIONS(1259), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [anon_sym_in] = ACTIONS(1259), + [anon_sym_out] = ACTIONS(1259), + [anon_sym_inout] = ACTIONS(1259), + [anon_sym_bycopy] = ACTIONS(1259), + [anon_sym_byref] = ACTIONS(1259), + [anon_sym_oneway] = ACTIONS(1259), + [anon_sym__Nullable] = ACTIONS(1259), + [anon_sym__Nonnull] = ACTIONS(1259), + [anon_sym__Nullable_result] = ACTIONS(1259), + [anon_sym__Null_unspecified] = ACTIONS(1259), + [anon_sym___autoreleasing] = ACTIONS(1259), + [anon_sym___nullable] = ACTIONS(1259), + [anon_sym___nonnull] = ACTIONS(1259), + [anon_sym___strong] = ACTIONS(1259), + [anon_sym___weak] = ACTIONS(1259), + [anon_sym___bridge] = ACTIONS(1259), + [anon_sym___bridge_transfer] = ACTIONS(1259), + [anon_sym___bridge_retained] = ACTIONS(1259), + [anon_sym___unsafe_unretained] = ACTIONS(1259), + [anon_sym___block] = ACTIONS(1259), + [anon_sym___kindof] = ACTIONS(1259), + [anon_sym___unused] = ACTIONS(1259), + [anon_sym__Complex] = ACTIONS(1259), + [anon_sym___complex] = ACTIONS(1259), + [anon_sym_IBOutlet] = ACTIONS(1259), + [anon_sym_IBInspectable] = ACTIONS(1259), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1259), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_else] = ACTIONS(1259), + [anon_sym_switch] = ACTIONS(1259), + [anon_sym_case] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_goto] = ACTIONS(1259), + [anon_sym_DASH_DASH] = ACTIONS(1257), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_sizeof] = ACTIONS(1259), + [sym_number_literal] = ACTIONS(1257), + [anon_sym_L_SQUOTE] = ACTIONS(1257), + [anon_sym_u_SQUOTE] = ACTIONS(1257), + [anon_sym_U_SQUOTE] = ACTIONS(1257), + [anon_sym_u8_SQUOTE] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_L_DQUOTE] = ACTIONS(1257), + [anon_sym_u_DQUOTE] = ACTIONS(1257), + [anon_sym_U_DQUOTE] = ACTIONS(1257), + [anon_sym_u8_DQUOTE] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [sym_true] = ACTIONS(1259), + [sym_false] = ACTIONS(1259), + [sym_null] = ACTIONS(1259), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1257), + [anon_sym_ATimport] = ACTIONS(1257), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1259), + [anon_sym_ATcompatibility_alias] = ACTIONS(1257), + [anon_sym_ATprotocol] = ACTIONS(1257), + [anon_sym_ATclass] = ACTIONS(1257), + [anon_sym_ATinterface] = ACTIONS(1257), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1259), + [sym_method_attribute_specifier] = ACTIONS(1259), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1259), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1259), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1259), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1259), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1259), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1259), + [anon_sym_NS_AVAILABLE] = ACTIONS(1259), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1259), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1259), + [anon_sym_API_AVAILABLE] = ACTIONS(1259), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1259), + [anon_sym_API_DEPRECATED] = ACTIONS(1259), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1259), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1259), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1259), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1259), + [anon_sym___deprecated_msg] = ACTIONS(1259), + [anon_sym___deprecated_enum_msg] = ACTIONS(1259), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1259), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1259), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1259), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1259), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1259), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1259), + [anon_sym_ATimplementation] = ACTIONS(1257), + [anon_sym_NS_ENUM] = ACTIONS(1259), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1259), + [anon_sym_NS_OPTIONS] = ACTIONS(1259), + [anon_sym_typeof] = ACTIONS(1259), + [anon_sym___typeof] = ACTIONS(1259), + [anon_sym___typeof__] = ACTIONS(1259), + [sym_self] = ACTIONS(1259), + [sym_super] = ACTIONS(1259), + [sym_nil] = ACTIONS(1259), + [sym_id] = ACTIONS(1259), + [sym_instancetype] = ACTIONS(1259), + [sym_Class] = ACTIONS(1259), + [sym_SEL] = ACTIONS(1259), + [sym_IMP] = ACTIONS(1259), + [sym_BOOL] = ACTIONS(1259), + [sym_auto] = ACTIONS(1259), + [anon_sym_ATautoreleasepool] = ACTIONS(1257), + [anon_sym_ATsynchronized] = ACTIONS(1257), + [anon_sym_ATtry] = ACTIONS(1257), + [anon_sym_ATcatch] = ACTIONS(1257), + [anon_sym_ATfinally] = ACTIONS(1257), + [anon_sym_ATthrow] = ACTIONS(1257), + [anon_sym_ATselector] = ACTIONS(1257), + [anon_sym_ATencode] = ACTIONS(1257), + [anon_sym_AT] = ACTIONS(1259), + [sym_YES] = ACTIONS(1259), + [sym_NO] = ACTIONS(1259), + [anon_sym___builtin_available] = ACTIONS(1259), + [anon_sym_ATavailable] = ACTIONS(1257), + [anon_sym_va_arg] = ACTIONS(1259), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [420] = { + [sym_identifier] = ACTIONS(1553), + [aux_sym_preproc_include_token1] = ACTIONS(1551), + [aux_sym_preproc_def_token1] = ACTIONS(1551), + [aux_sym_preproc_if_token1] = ACTIONS(1553), + [aux_sym_preproc_if_token2] = ACTIONS(1553), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1553), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1553), + [anon_sym_LPAREN2] = ACTIONS(1551), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_CARET] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_typedef] = ACTIONS(1553), + [anon_sym_extern] = ACTIONS(1553), + [anon_sym___attribute] = ACTIONS(1553), + [anon_sym___attribute__] = ACTIONS(1553), + [anon_sym___declspec] = ACTIONS(1553), + [anon_sym___cdecl] = ACTIONS(1553), + [anon_sym___clrcall] = ACTIONS(1553), + [anon_sym___stdcall] = ACTIONS(1553), + [anon_sym___fastcall] = ACTIONS(1553), + [anon_sym___thiscall] = ACTIONS(1553), + [anon_sym___vectorcall] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_auto] = ACTIONS(1553), + [anon_sym_register] = ACTIONS(1553), + [anon_sym_inline] = ACTIONS(1553), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_volatile] = ACTIONS(1553), + [anon_sym_restrict] = ACTIONS(1553), + [anon_sym__Atomic] = ACTIONS(1553), + [anon_sym_in] = ACTIONS(1553), + [anon_sym_out] = ACTIONS(1553), + [anon_sym_inout] = ACTIONS(1553), + [anon_sym_bycopy] = ACTIONS(1553), + [anon_sym_byref] = ACTIONS(1553), + [anon_sym_oneway] = ACTIONS(1553), + [anon_sym__Nullable] = ACTIONS(1553), + [anon_sym__Nonnull] = ACTIONS(1553), + [anon_sym__Nullable_result] = ACTIONS(1553), + [anon_sym__Null_unspecified] = ACTIONS(1553), + [anon_sym___autoreleasing] = ACTIONS(1553), + [anon_sym___nullable] = ACTIONS(1553), + [anon_sym___nonnull] = ACTIONS(1553), + [anon_sym___strong] = ACTIONS(1553), + [anon_sym___weak] = ACTIONS(1553), + [anon_sym___bridge] = ACTIONS(1553), + [anon_sym___bridge_transfer] = ACTIONS(1553), + [anon_sym___bridge_retained] = ACTIONS(1553), + [anon_sym___unsafe_unretained] = ACTIONS(1553), + [anon_sym___block] = ACTIONS(1553), + [anon_sym___kindof] = ACTIONS(1553), + [anon_sym___unused] = ACTIONS(1553), + [anon_sym__Complex] = ACTIONS(1553), + [anon_sym___complex] = ACTIONS(1553), + [anon_sym_IBOutlet] = ACTIONS(1553), + [anon_sym_IBInspectable] = ACTIONS(1553), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1553), + [anon_sym_signed] = ACTIONS(1553), + [anon_sym_unsigned] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [sym_primitive_type] = ACTIONS(1553), + [anon_sym_enum] = ACTIONS(1553), + [anon_sym_struct] = ACTIONS(1553), + [anon_sym_union] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_else] = ACTIONS(1670), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_goto] = ACTIONS(1553), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_sizeof] = ACTIONS(1553), + [sym_number_literal] = ACTIONS(1551), + [anon_sym_L_SQUOTE] = ACTIONS(1551), + [anon_sym_u_SQUOTE] = ACTIONS(1551), + [anon_sym_U_SQUOTE] = ACTIONS(1551), + [anon_sym_u8_SQUOTE] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_L_DQUOTE] = ACTIONS(1551), + [anon_sym_u_DQUOTE] = ACTIONS(1551), + [anon_sym_U_DQUOTE] = ACTIONS(1551), + [anon_sym_u8_DQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym_true] = ACTIONS(1553), + [sym_false] = ACTIONS(1553), + [sym_null] = ACTIONS(1553), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1551), + [anon_sym_ATimport] = ACTIONS(1551), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1553), + [anon_sym_ATcompatibility_alias] = ACTIONS(1551), + [anon_sym_ATprotocol] = ACTIONS(1551), + [anon_sym_ATclass] = ACTIONS(1551), + [anon_sym_ATinterface] = ACTIONS(1551), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1553), + [sym_method_attribute_specifier] = ACTIONS(1553), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1553), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1553), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1553), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1553), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1553), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1553), + [anon_sym_NS_AVAILABLE] = ACTIONS(1553), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1553), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1553), + [anon_sym_API_AVAILABLE] = ACTIONS(1553), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1553), + [anon_sym_API_DEPRECATED] = ACTIONS(1553), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1553), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1553), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1553), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1553), + [anon_sym___deprecated_msg] = ACTIONS(1553), + [anon_sym___deprecated_enum_msg] = ACTIONS(1553), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1553), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1553), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1553), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1553), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1553), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1553), + [anon_sym_ATimplementation] = ACTIONS(1551), + [anon_sym_NS_ENUM] = ACTIONS(1553), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1553), + [anon_sym_NS_OPTIONS] = ACTIONS(1553), + [anon_sym_typeof] = ACTIONS(1553), + [anon_sym___typeof] = ACTIONS(1553), + [anon_sym___typeof__] = ACTIONS(1553), + [sym_self] = ACTIONS(1553), + [sym_super] = ACTIONS(1553), + [sym_nil] = ACTIONS(1553), + [sym_id] = ACTIONS(1553), + [sym_instancetype] = ACTIONS(1553), + [sym_Class] = ACTIONS(1553), + [sym_SEL] = ACTIONS(1553), + [sym_IMP] = ACTIONS(1553), + [sym_BOOL] = ACTIONS(1553), + [sym_auto] = ACTIONS(1553), + [anon_sym_ATautoreleasepool] = ACTIONS(1551), + [anon_sym_ATsynchronized] = ACTIONS(1551), + [anon_sym_ATtry] = ACTIONS(1551), + [anon_sym_ATcatch] = ACTIONS(1551), + [anon_sym_ATfinally] = ACTIONS(1551), + [anon_sym_ATthrow] = ACTIONS(1551), + [anon_sym_ATselector] = ACTIONS(1551), + [anon_sym_ATencode] = ACTIONS(1551), + [anon_sym_AT] = ACTIONS(1553), + [sym_YES] = ACTIONS(1553), + [sym_NO] = ACTIONS(1553), + [anon_sym___builtin_available] = ACTIONS(1553), + [anon_sym_ATavailable] = ACTIONS(1551), + [anon_sym_va_arg] = ACTIONS(1553), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [421] = { + [sym_identifier] = ACTIONS(1549), + [aux_sym_preproc_include_token1] = ACTIONS(1547), + [aux_sym_preproc_def_token1] = ACTIONS(1547), + [aux_sym_preproc_if_token1] = ACTIONS(1549), + [aux_sym_preproc_if_token2] = ACTIONS(1549), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1549), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1549), + [anon_sym_LPAREN2] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_CARET] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_typedef] = ACTIONS(1549), + [anon_sym_extern] = ACTIONS(1549), + [anon_sym___attribute] = ACTIONS(1549), + [anon_sym___attribute__] = ACTIONS(1549), + [anon_sym___declspec] = ACTIONS(1549), + [anon_sym___cdecl] = ACTIONS(1549), + [anon_sym___clrcall] = ACTIONS(1549), + [anon_sym___stdcall] = ACTIONS(1549), + [anon_sym___fastcall] = ACTIONS(1549), + [anon_sym___thiscall] = ACTIONS(1549), + [anon_sym___vectorcall] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_auto] = ACTIONS(1549), + [anon_sym_register] = ACTIONS(1549), + [anon_sym_inline] = ACTIONS(1549), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_volatile] = ACTIONS(1549), + [anon_sym_restrict] = ACTIONS(1549), + [anon_sym__Atomic] = ACTIONS(1549), + [anon_sym_in] = ACTIONS(1549), + [anon_sym_out] = ACTIONS(1549), + [anon_sym_inout] = ACTIONS(1549), + [anon_sym_bycopy] = ACTIONS(1549), + [anon_sym_byref] = ACTIONS(1549), + [anon_sym_oneway] = ACTIONS(1549), + [anon_sym__Nullable] = ACTIONS(1549), + [anon_sym__Nonnull] = ACTIONS(1549), + [anon_sym__Nullable_result] = ACTIONS(1549), + [anon_sym__Null_unspecified] = ACTIONS(1549), + [anon_sym___autoreleasing] = ACTIONS(1549), + [anon_sym___nullable] = ACTIONS(1549), + [anon_sym___nonnull] = ACTIONS(1549), + [anon_sym___strong] = ACTIONS(1549), + [anon_sym___weak] = ACTIONS(1549), + [anon_sym___bridge] = ACTIONS(1549), + [anon_sym___bridge_transfer] = ACTIONS(1549), + [anon_sym___bridge_retained] = ACTIONS(1549), + [anon_sym___unsafe_unretained] = ACTIONS(1549), + [anon_sym___block] = ACTIONS(1549), + [anon_sym___kindof] = ACTIONS(1549), + [anon_sym___unused] = ACTIONS(1549), + [anon_sym__Complex] = ACTIONS(1549), + [anon_sym___complex] = ACTIONS(1549), + [anon_sym_IBOutlet] = ACTIONS(1549), + [anon_sym_IBInspectable] = ACTIONS(1549), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1549), + [anon_sym_signed] = ACTIONS(1549), + [anon_sym_unsigned] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [sym_primitive_type] = ACTIONS(1549), + [anon_sym_enum] = ACTIONS(1549), + [anon_sym_struct] = ACTIONS(1549), + [anon_sym_union] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_else] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_goto] = ACTIONS(1549), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_sizeof] = ACTIONS(1549), + [sym_number_literal] = ACTIONS(1547), + [anon_sym_L_SQUOTE] = ACTIONS(1547), + [anon_sym_u_SQUOTE] = ACTIONS(1547), + [anon_sym_U_SQUOTE] = ACTIONS(1547), + [anon_sym_u8_SQUOTE] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_L_DQUOTE] = ACTIONS(1547), + [anon_sym_u_DQUOTE] = ACTIONS(1547), + [anon_sym_U_DQUOTE] = ACTIONS(1547), + [anon_sym_u8_DQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [sym_null] = ACTIONS(1549), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1547), + [anon_sym_ATimport] = ACTIONS(1547), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1549), + [anon_sym_ATcompatibility_alias] = ACTIONS(1547), + [anon_sym_ATprotocol] = ACTIONS(1547), + [anon_sym_ATclass] = ACTIONS(1547), + [anon_sym_ATinterface] = ACTIONS(1547), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1549), + [sym_method_attribute_specifier] = ACTIONS(1549), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1549), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1549), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1549), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1549), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1549), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1549), + [anon_sym_NS_AVAILABLE] = ACTIONS(1549), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1549), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1549), + [anon_sym_API_AVAILABLE] = ACTIONS(1549), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1549), + [anon_sym_API_DEPRECATED] = ACTIONS(1549), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1549), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1549), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1549), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1549), + [anon_sym___deprecated_msg] = ACTIONS(1549), + [anon_sym___deprecated_enum_msg] = ACTIONS(1549), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1549), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1549), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1549), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1549), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1549), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1549), + [anon_sym_ATimplementation] = ACTIONS(1547), + [anon_sym_NS_ENUM] = ACTIONS(1549), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1549), + [anon_sym_NS_OPTIONS] = ACTIONS(1549), + [anon_sym_typeof] = ACTIONS(1549), + [anon_sym___typeof] = ACTIONS(1549), + [anon_sym___typeof__] = ACTIONS(1549), + [sym_self] = ACTIONS(1549), + [sym_super] = ACTIONS(1549), + [sym_nil] = ACTIONS(1549), + [sym_id] = ACTIONS(1549), + [sym_instancetype] = ACTIONS(1549), + [sym_Class] = ACTIONS(1549), + [sym_SEL] = ACTIONS(1549), + [sym_IMP] = ACTIONS(1549), + [sym_BOOL] = ACTIONS(1549), + [sym_auto] = ACTIONS(1549), + [anon_sym_ATautoreleasepool] = ACTIONS(1547), + [anon_sym_ATsynchronized] = ACTIONS(1547), + [anon_sym_ATtry] = ACTIONS(1547), + [anon_sym_ATcatch] = ACTIONS(1547), + [anon_sym_ATfinally] = ACTIONS(1547), + [anon_sym_ATthrow] = ACTIONS(1547), + [anon_sym_ATselector] = ACTIONS(1547), + [anon_sym_ATencode] = ACTIONS(1547), + [anon_sym_AT] = ACTIONS(1549), + [sym_YES] = ACTIONS(1549), + [sym_NO] = ACTIONS(1549), + [anon_sym___builtin_available] = ACTIONS(1549), + [anon_sym_ATavailable] = ACTIONS(1547), + [anon_sym_va_arg] = ACTIONS(1549), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [422] = { + [sym_identifier] = ACTIONS(1263), + [aux_sym_preproc_include_token1] = ACTIONS(1261), + [aux_sym_preproc_def_token1] = ACTIONS(1261), + [aux_sym_preproc_if_token1] = ACTIONS(1263), + [aux_sym_preproc_if_token2] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1263), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1263), + [anon_sym_LPAREN2] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_typedef] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym___attribute] = ACTIONS(1263), + [anon_sym___attribute__] = ACTIONS(1263), + [anon_sym___declspec] = ACTIONS(1263), + [anon_sym___cdecl] = ACTIONS(1263), + [anon_sym___clrcall] = ACTIONS(1263), + [anon_sym___stdcall] = ACTIONS(1263), + [anon_sym___fastcall] = ACTIONS(1263), + [anon_sym___thiscall] = ACTIONS(1263), + [anon_sym___vectorcall] = ACTIONS(1263), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_auto] = ACTIONS(1263), + [anon_sym_register] = ACTIONS(1263), + [anon_sym_inline] = ACTIONS(1263), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym_in] = ACTIONS(1263), + [anon_sym_out] = ACTIONS(1263), + [anon_sym_inout] = ACTIONS(1263), + [anon_sym_bycopy] = ACTIONS(1263), + [anon_sym_byref] = ACTIONS(1263), + [anon_sym_oneway] = ACTIONS(1263), + [anon_sym__Nullable] = ACTIONS(1263), + [anon_sym__Nonnull] = ACTIONS(1263), + [anon_sym__Nullable_result] = ACTIONS(1263), + [anon_sym__Null_unspecified] = ACTIONS(1263), + [anon_sym___autoreleasing] = ACTIONS(1263), + [anon_sym___nullable] = ACTIONS(1263), + [anon_sym___nonnull] = ACTIONS(1263), + [anon_sym___strong] = ACTIONS(1263), + [anon_sym___weak] = ACTIONS(1263), + [anon_sym___bridge] = ACTIONS(1263), + [anon_sym___bridge_transfer] = ACTIONS(1263), + [anon_sym___bridge_retained] = ACTIONS(1263), + [anon_sym___unsafe_unretained] = ACTIONS(1263), + [anon_sym___block] = ACTIONS(1263), + [anon_sym___kindof] = ACTIONS(1263), + [anon_sym___unused] = ACTIONS(1263), + [anon_sym__Complex] = ACTIONS(1263), + [anon_sym___complex] = ACTIONS(1263), + [anon_sym_IBOutlet] = ACTIONS(1263), + [anon_sym_IBInspectable] = ACTIONS(1263), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1263), + [anon_sym_signed] = ACTIONS(1263), + [anon_sym_unsigned] = ACTIONS(1263), + [anon_sym_long] = ACTIONS(1263), + [anon_sym_short] = ACTIONS(1263), + [sym_primitive_type] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_else] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(1263), + [anon_sym_case] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_do] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_goto] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_sizeof] = ACTIONS(1263), + [sym_number_literal] = ACTIONS(1261), + [anon_sym_L_SQUOTE] = ACTIONS(1261), + [anon_sym_u_SQUOTE] = ACTIONS(1261), + [anon_sym_U_SQUOTE] = ACTIONS(1261), + [anon_sym_u8_SQUOTE] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1261), + [anon_sym_L_DQUOTE] = ACTIONS(1261), + [anon_sym_u_DQUOTE] = ACTIONS(1261), + [anon_sym_U_DQUOTE] = ACTIONS(1261), + [anon_sym_u8_DQUOTE] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1261), + [sym_true] = ACTIONS(1263), + [sym_false] = ACTIONS(1263), + [sym_null] = ACTIONS(1263), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1261), + [anon_sym_ATimport] = ACTIONS(1261), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1263), + [anon_sym_ATcompatibility_alias] = ACTIONS(1261), + [anon_sym_ATprotocol] = ACTIONS(1261), + [anon_sym_ATclass] = ACTIONS(1261), + [anon_sym_ATinterface] = ACTIONS(1261), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1263), + [sym_method_attribute_specifier] = ACTIONS(1263), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1263), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1263), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1263), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1263), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1263), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1263), + [anon_sym_NS_AVAILABLE] = ACTIONS(1263), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1263), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1263), + [anon_sym_API_AVAILABLE] = ACTIONS(1263), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1263), + [anon_sym_API_DEPRECATED] = ACTIONS(1263), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1263), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1263), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1263), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1263), + [anon_sym___deprecated_msg] = ACTIONS(1263), + [anon_sym___deprecated_enum_msg] = ACTIONS(1263), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1263), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1263), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1263), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1263), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1263), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1263), + [anon_sym_ATimplementation] = ACTIONS(1261), + [anon_sym_NS_ENUM] = ACTIONS(1263), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1263), + [anon_sym_NS_OPTIONS] = ACTIONS(1263), + [anon_sym_typeof] = ACTIONS(1263), + [anon_sym___typeof] = ACTIONS(1263), + [anon_sym___typeof__] = ACTIONS(1263), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1263), + [sym_nil] = ACTIONS(1263), + [sym_id] = ACTIONS(1263), + [sym_instancetype] = ACTIONS(1263), + [sym_Class] = ACTIONS(1263), + [sym_SEL] = ACTIONS(1263), + [sym_IMP] = ACTIONS(1263), + [sym_BOOL] = ACTIONS(1263), + [sym_auto] = ACTIONS(1263), + [anon_sym_ATautoreleasepool] = ACTIONS(1261), + [anon_sym_ATsynchronized] = ACTIONS(1261), + [anon_sym_ATtry] = ACTIONS(1261), + [anon_sym_ATcatch] = ACTIONS(1261), + [anon_sym_ATfinally] = ACTIONS(1261), + [anon_sym_ATthrow] = ACTIONS(1261), + [anon_sym_ATselector] = ACTIONS(1261), + [anon_sym_ATencode] = ACTIONS(1261), + [anon_sym_AT] = ACTIONS(1263), + [sym_YES] = ACTIONS(1263), + [sym_NO] = ACTIONS(1263), + [anon_sym___builtin_available] = ACTIONS(1263), + [anon_sym_ATavailable] = ACTIONS(1261), + [anon_sym_va_arg] = ACTIONS(1263), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [423] = { + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_include_token1] = ACTIONS(1265), + [aux_sym_preproc_def_token1] = ACTIONS(1265), + [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token2] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym_in] = ACTIONS(1267), + [anon_sym_out] = ACTIONS(1267), + [anon_sym_inout] = ACTIONS(1267), + [anon_sym_bycopy] = ACTIONS(1267), + [anon_sym_byref] = ACTIONS(1267), + [anon_sym_oneway] = ACTIONS(1267), + [anon_sym__Nullable] = ACTIONS(1267), + [anon_sym__Nonnull] = ACTIONS(1267), + [anon_sym__Nullable_result] = ACTIONS(1267), + [anon_sym__Null_unspecified] = ACTIONS(1267), + [anon_sym___autoreleasing] = ACTIONS(1267), + [anon_sym___nullable] = ACTIONS(1267), + [anon_sym___nonnull] = ACTIONS(1267), + [anon_sym___strong] = ACTIONS(1267), + [anon_sym___weak] = ACTIONS(1267), + [anon_sym___bridge] = ACTIONS(1267), + [anon_sym___bridge_transfer] = ACTIONS(1267), + [anon_sym___bridge_retained] = ACTIONS(1267), + [anon_sym___unsafe_unretained] = ACTIONS(1267), + [anon_sym___block] = ACTIONS(1267), + [anon_sym___kindof] = ACTIONS(1267), + [anon_sym___unused] = ACTIONS(1267), + [anon_sym__Complex] = ACTIONS(1267), + [anon_sym___complex] = ACTIONS(1267), + [anon_sym_IBOutlet] = ACTIONS(1267), + [anon_sym_IBInspectable] = ACTIONS(1267), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1267), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_sizeof] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1265), + [anon_sym_L_SQUOTE] = ACTIONS(1265), + [anon_sym_u_SQUOTE] = ACTIONS(1265), + [anon_sym_U_SQUOTE] = ACTIONS(1265), + [anon_sym_u8_SQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_L_DQUOTE] = ACTIONS(1265), + [anon_sym_u_DQUOTE] = ACTIONS(1265), + [anon_sym_U_DQUOTE] = ACTIONS(1265), + [anon_sym_u8_DQUOTE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [sym_null] = ACTIONS(1267), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1265), + [anon_sym_ATimport] = ACTIONS(1265), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1267), + [anon_sym_ATcompatibility_alias] = ACTIONS(1265), + [anon_sym_ATprotocol] = ACTIONS(1265), + [anon_sym_ATclass] = ACTIONS(1265), + [anon_sym_ATinterface] = ACTIONS(1265), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1267), + [sym_method_attribute_specifier] = ACTIONS(1267), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1267), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1267), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1267), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1267), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1267), + [anon_sym_NS_AVAILABLE] = ACTIONS(1267), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1267), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_API_AVAILABLE] = ACTIONS(1267), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_API_DEPRECATED] = ACTIONS(1267), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1267), + [anon_sym___deprecated_msg] = ACTIONS(1267), + [anon_sym___deprecated_enum_msg] = ACTIONS(1267), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1267), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1267), + [anon_sym_ATimplementation] = ACTIONS(1265), + [anon_sym_NS_ENUM] = ACTIONS(1267), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1267), + [anon_sym_NS_OPTIONS] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1267), + [anon_sym___typeof] = ACTIONS(1267), + [anon_sym___typeof__] = ACTIONS(1267), + [sym_self] = ACTIONS(1267), + [sym_super] = ACTIONS(1267), + [sym_nil] = ACTIONS(1267), + [sym_id] = ACTIONS(1267), + [sym_instancetype] = ACTIONS(1267), + [sym_Class] = ACTIONS(1267), + [sym_SEL] = ACTIONS(1267), + [sym_IMP] = ACTIONS(1267), + [sym_BOOL] = ACTIONS(1267), + [sym_auto] = ACTIONS(1267), + [anon_sym_ATautoreleasepool] = ACTIONS(1265), + [anon_sym_ATsynchronized] = ACTIONS(1265), + [anon_sym_ATtry] = ACTIONS(1265), + [anon_sym_ATcatch] = ACTIONS(1265), + [anon_sym_ATfinally] = ACTIONS(1265), + [anon_sym_ATthrow] = ACTIONS(1265), + [anon_sym_ATselector] = ACTIONS(1265), + [anon_sym_ATencode] = ACTIONS(1265), + [anon_sym_AT] = ACTIONS(1267), + [sym_YES] = ACTIONS(1267), + [sym_NO] = ACTIONS(1267), + [anon_sym___builtin_available] = ACTIONS(1267), + [anon_sym_ATavailable] = ACTIONS(1265), + [anon_sym_va_arg] = ACTIONS(1267), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [424] = { [sym_identifier] = ACTIONS(1529), - [aux_sym_preproc_def_token1] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_PLUS] = ACTIONS(1531), + [aux_sym_preproc_include_token1] = ACTIONS(1527), + [aux_sym_preproc_def_token1] = ACTIONS(1527), + [aux_sym_preproc_if_token1] = ACTIONS(1529), + [aux_sym_preproc_if_token2] = ACTIONS(1529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1529), + [anon_sym_LPAREN2] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_CARET] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), [anon_sym_typedef] = ACTIONS(1529), [anon_sym_extern] = ACTIONS(1529), [anon_sym___attribute] = ACTIONS(1529), @@ -476498,6 +100355,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1529), [anon_sym___thiscall] = ACTIONS(1529), [anon_sym___vectorcall] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1527), [anon_sym_static] = ACTIONS(1529), [anon_sym_auto] = ACTIONS(1529), [anon_sym_register] = ACTIONS(1529), @@ -476540,17 +100399,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1529), [sym_primitive_type] = ACTIONS(1529), [anon_sym_enum] = ACTIONS(1529), - [anon_sym_NS_ENUM] = ACTIONS(1529), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1529), - [anon_sym_NS_OPTIONS] = ACTIONS(1529), [anon_sym_struct] = ACTIONS(1529), [anon_sym_union] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_else] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_case] = ACTIONS(1529), + [anon_sym_default] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_goto] = ACTIONS(1529), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_sizeof] = ACTIONS(1529), + [sym_number_literal] = ACTIONS(1527), + [anon_sym_L_SQUOTE] = ACTIONS(1527), + [anon_sym_u_SQUOTE] = ACTIONS(1527), + [anon_sym_U_SQUOTE] = ACTIONS(1527), + [anon_sym_u8_SQUOTE] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_L_DQUOTE] = ACTIONS(1527), + [anon_sym_u_DQUOTE] = ACTIONS(1527), + [anon_sym_U_DQUOTE] = ACTIONS(1527), + [anon_sym_u8_DQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [sym_true] = ACTIONS(1529), + [sym_false] = ACTIONS(1529), + [sym_null] = ACTIONS(1529), [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1527), + [anon_sym_ATimport] = ACTIONS(1527), [sym__ns_assume_nonnull_declaration] = ACTIONS(1529), - [anon_sym_ATend] = ACTIONS(1531), - [sym_optional] = ACTIONS(1531), - [sym_required] = ACTIONS(1531), - [anon_sym_ATproperty] = ACTIONS(1531), + [anon_sym_ATcompatibility_alias] = ACTIONS(1527), + [anon_sym_ATprotocol] = ACTIONS(1527), + [anon_sym_ATclass] = ACTIONS(1527), + [anon_sym_ATinterface] = ACTIONS(1527), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1529), [sym_method_attribute_specifier] = ACTIONS(1529), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1529), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1529), @@ -476576,11 +100464,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1529), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1529), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1529), - [anon_sym_ATsynthesize] = ACTIONS(1531), - [anon_sym_ATdynamic] = ACTIONS(1531), + [anon_sym_ATimplementation] = ACTIONS(1527), + [anon_sym_NS_ENUM] = ACTIONS(1529), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1529), + [anon_sym_NS_OPTIONS] = ACTIONS(1529), [anon_sym_typeof] = ACTIONS(1529), [anon_sym___typeof] = ACTIONS(1529), [anon_sym___typeof__] = ACTIONS(1529), + [sym_self] = ACTIONS(1529), + [sym_super] = ACTIONS(1529), + [sym_nil] = ACTIONS(1529), [sym_id] = ACTIONS(1529), [sym_instancetype] = ACTIONS(1529), [sym_Class] = ACTIONS(1529), @@ -476588,583 +100481,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1529), [sym_BOOL] = ACTIONS(1529), [sym_auto] = ACTIONS(1529), + [anon_sym_ATautoreleasepool] = ACTIONS(1527), + [anon_sym_ATsynchronized] = ACTIONS(1527), + [anon_sym_ATtry] = ACTIONS(1527), + [anon_sym_ATcatch] = ACTIONS(1527), + [anon_sym_ATfinally] = ACTIONS(1527), + [anon_sym_ATthrow] = ACTIONS(1527), + [anon_sym_ATselector] = ACTIONS(1527), + [anon_sym_ATencode] = ACTIONS(1527), + [anon_sym_AT] = ACTIONS(1529), + [sym_YES] = ACTIONS(1529), + [sym_NO] = ACTIONS(1529), + [anon_sym___builtin_available] = ACTIONS(1529), + [anon_sym_ATavailable] = ACTIONS(1527), + [anon_sym_va_arg] = ACTIONS(1529), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2870] = { - [sym_identifier] = ACTIONS(1525), - [aux_sym_preproc_def_token1] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_typedef] = ACTIONS(1525), - [anon_sym_extern] = ACTIONS(1525), - [anon_sym___attribute] = ACTIONS(1525), - [anon_sym___attribute__] = ACTIONS(1525), - [anon_sym___declspec] = ACTIONS(1525), - [anon_sym___cdecl] = ACTIONS(1525), - [anon_sym___clrcall] = ACTIONS(1525), - [anon_sym___stdcall] = ACTIONS(1525), - [anon_sym___fastcall] = ACTIONS(1525), - [anon_sym___thiscall] = ACTIONS(1525), - [anon_sym___vectorcall] = ACTIONS(1525), - [anon_sym_static] = ACTIONS(1525), - [anon_sym_auto] = ACTIONS(1525), - [anon_sym_register] = ACTIONS(1525), - [anon_sym_inline] = ACTIONS(1525), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1525), - [anon_sym_const] = ACTIONS(1525), - [anon_sym_volatile] = ACTIONS(1525), - [anon_sym_restrict] = ACTIONS(1525), - [anon_sym__Atomic] = ACTIONS(1525), - [anon_sym_in] = ACTIONS(1525), - [anon_sym_out] = ACTIONS(1525), - [anon_sym_inout] = ACTIONS(1525), - [anon_sym_bycopy] = ACTIONS(1525), - [anon_sym_byref] = ACTIONS(1525), - [anon_sym_oneway] = ACTIONS(1525), - [anon_sym__Nullable] = ACTIONS(1525), - [anon_sym__Nonnull] = ACTIONS(1525), - [anon_sym__Nullable_result] = ACTIONS(1525), - [anon_sym__Null_unspecified] = ACTIONS(1525), - [anon_sym___autoreleasing] = ACTIONS(1525), - [anon_sym___nullable] = ACTIONS(1525), - [anon_sym___nonnull] = ACTIONS(1525), - [anon_sym___strong] = ACTIONS(1525), - [anon_sym___weak] = ACTIONS(1525), - [anon_sym___bridge] = ACTIONS(1525), - [anon_sym___bridge_transfer] = ACTIONS(1525), - [anon_sym___bridge_retained] = ACTIONS(1525), - [anon_sym___unsafe_unretained] = ACTIONS(1525), - [anon_sym___block] = ACTIONS(1525), - [anon_sym___kindof] = ACTIONS(1525), - [anon_sym___unused] = ACTIONS(1525), - [anon_sym__Complex] = ACTIONS(1525), - [anon_sym___complex] = ACTIONS(1525), - [anon_sym_IBOutlet] = ACTIONS(1525), - [anon_sym_IBInspectable] = ACTIONS(1525), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1525), - [anon_sym_signed] = ACTIONS(1525), - [anon_sym_unsigned] = ACTIONS(1525), - [anon_sym_long] = ACTIONS(1525), - [anon_sym_short] = ACTIONS(1525), - [sym_primitive_type] = ACTIONS(1525), - [anon_sym_enum] = ACTIONS(1525), - [anon_sym_NS_ENUM] = ACTIONS(1525), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1525), - [anon_sym_NS_OPTIONS] = ACTIONS(1525), - [anon_sym_struct] = ACTIONS(1525), - [anon_sym_union] = ACTIONS(1525), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1525), - [anon_sym_ATend] = ACTIONS(1527), - [sym_optional] = ACTIONS(1527), - [sym_required] = ACTIONS(1527), - [anon_sym_ATproperty] = ACTIONS(1527), - [sym_method_attribute_specifier] = ACTIONS(1525), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1525), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1525), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1525), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1525), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1525), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1525), - [anon_sym_NS_AVAILABLE] = ACTIONS(1525), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1525), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1525), - [anon_sym_API_AVAILABLE] = ACTIONS(1525), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1525), - [anon_sym_API_DEPRECATED] = ACTIONS(1525), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1525), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1525), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1525), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1525), - [anon_sym___deprecated_msg] = ACTIONS(1525), - [anon_sym___deprecated_enum_msg] = ACTIONS(1525), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1525), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1525), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1525), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1525), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1525), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1525), - [anon_sym_ATsynthesize] = ACTIONS(1527), - [anon_sym_ATdynamic] = ACTIONS(1527), - [anon_sym_typeof] = ACTIONS(1525), - [anon_sym___typeof] = ACTIONS(1525), - [anon_sym___typeof__] = ACTIONS(1525), - [sym_id] = ACTIONS(1525), - [sym_instancetype] = ACTIONS(1525), - [sym_Class] = ACTIONS(1525), - [sym_SEL] = ACTIONS(1525), - [sym_IMP] = ACTIONS(1525), - [sym_BOOL] = ACTIONS(1525), - [sym_auto] = ACTIONS(1525), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2871] = { - [sym_identifier] = ACTIONS(1521), - [aux_sym_preproc_def_token1] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1523), - [anon_sym_typedef] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(1521), - [anon_sym___attribute] = ACTIONS(1521), - [anon_sym___attribute__] = ACTIONS(1521), - [anon_sym___declspec] = ACTIONS(1521), - [anon_sym___cdecl] = ACTIONS(1521), - [anon_sym___clrcall] = ACTIONS(1521), - [anon_sym___stdcall] = ACTIONS(1521), - [anon_sym___fastcall] = ACTIONS(1521), - [anon_sym___thiscall] = ACTIONS(1521), - [anon_sym___vectorcall] = ACTIONS(1521), - [anon_sym_static] = ACTIONS(1521), - [anon_sym_auto] = ACTIONS(1521), - [anon_sym_register] = ACTIONS(1521), - [anon_sym_inline] = ACTIONS(1521), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1521), - [anon_sym_volatile] = ACTIONS(1521), - [anon_sym_restrict] = ACTIONS(1521), - [anon_sym__Atomic] = ACTIONS(1521), - [anon_sym_in] = ACTIONS(1521), - [anon_sym_out] = ACTIONS(1521), - [anon_sym_inout] = ACTIONS(1521), - [anon_sym_bycopy] = ACTIONS(1521), - [anon_sym_byref] = ACTIONS(1521), - [anon_sym_oneway] = ACTIONS(1521), - [anon_sym__Nullable] = ACTIONS(1521), - [anon_sym__Nonnull] = ACTIONS(1521), - [anon_sym__Nullable_result] = ACTIONS(1521), - [anon_sym__Null_unspecified] = ACTIONS(1521), - [anon_sym___autoreleasing] = ACTIONS(1521), - [anon_sym___nullable] = ACTIONS(1521), - [anon_sym___nonnull] = ACTIONS(1521), - [anon_sym___strong] = ACTIONS(1521), - [anon_sym___weak] = ACTIONS(1521), - [anon_sym___bridge] = ACTIONS(1521), - [anon_sym___bridge_transfer] = ACTIONS(1521), - [anon_sym___bridge_retained] = ACTIONS(1521), - [anon_sym___unsafe_unretained] = ACTIONS(1521), - [anon_sym___block] = ACTIONS(1521), - [anon_sym___kindof] = ACTIONS(1521), - [anon_sym___unused] = ACTIONS(1521), - [anon_sym__Complex] = ACTIONS(1521), - [anon_sym___complex] = ACTIONS(1521), - [anon_sym_IBOutlet] = ACTIONS(1521), - [anon_sym_IBInspectable] = ACTIONS(1521), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1521), - [anon_sym_signed] = ACTIONS(1521), - [anon_sym_unsigned] = ACTIONS(1521), - [anon_sym_long] = ACTIONS(1521), - [anon_sym_short] = ACTIONS(1521), - [sym_primitive_type] = ACTIONS(1521), - [anon_sym_enum] = ACTIONS(1521), - [anon_sym_NS_ENUM] = ACTIONS(1521), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1521), - [anon_sym_NS_OPTIONS] = ACTIONS(1521), - [anon_sym_struct] = ACTIONS(1521), - [anon_sym_union] = ACTIONS(1521), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1521), - [anon_sym_ATend] = ACTIONS(1523), - [sym_optional] = ACTIONS(1523), - [sym_required] = ACTIONS(1523), - [anon_sym_ATproperty] = ACTIONS(1523), - [sym_method_attribute_specifier] = ACTIONS(1521), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1521), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1521), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1521), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1521), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1521), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1521), - [anon_sym_NS_AVAILABLE] = ACTIONS(1521), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1521), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1521), - [anon_sym_API_AVAILABLE] = ACTIONS(1521), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1521), - [anon_sym_API_DEPRECATED] = ACTIONS(1521), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1521), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1521), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1521), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1521), - [anon_sym___deprecated_msg] = ACTIONS(1521), - [anon_sym___deprecated_enum_msg] = ACTIONS(1521), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1521), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1521), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1521), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1521), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1521), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1521), - [anon_sym_ATsynthesize] = ACTIONS(1523), - [anon_sym_ATdynamic] = ACTIONS(1523), - [anon_sym_typeof] = ACTIONS(1521), - [anon_sym___typeof] = ACTIONS(1521), - [anon_sym___typeof__] = ACTIONS(1521), - [sym_id] = ACTIONS(1521), - [sym_instancetype] = ACTIONS(1521), - [sym_Class] = ACTIONS(1521), - [sym_SEL] = ACTIONS(1521), - [sym_IMP] = ACTIONS(1521), - [sym_BOOL] = ACTIONS(1521), - [sym_auto] = ACTIONS(1521), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2872] = { - [sym_identifier] = ACTIONS(1517), - [aux_sym_preproc_def_token1] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_typedef] = ACTIONS(1517), - [anon_sym_extern] = ACTIONS(1517), - [anon_sym___attribute] = ACTIONS(1517), - [anon_sym___attribute__] = ACTIONS(1517), - [anon_sym___declspec] = ACTIONS(1517), - [anon_sym___cdecl] = ACTIONS(1517), - [anon_sym___clrcall] = ACTIONS(1517), - [anon_sym___stdcall] = ACTIONS(1517), - [anon_sym___fastcall] = ACTIONS(1517), - [anon_sym___thiscall] = ACTIONS(1517), - [anon_sym___vectorcall] = ACTIONS(1517), - [anon_sym_static] = ACTIONS(1517), - [anon_sym_auto] = ACTIONS(1517), - [anon_sym_register] = ACTIONS(1517), - [anon_sym_inline] = ACTIONS(1517), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [anon_sym_volatile] = ACTIONS(1517), - [anon_sym_restrict] = ACTIONS(1517), - [anon_sym__Atomic] = ACTIONS(1517), - [anon_sym_in] = ACTIONS(1517), - [anon_sym_out] = ACTIONS(1517), - [anon_sym_inout] = ACTIONS(1517), - [anon_sym_bycopy] = ACTIONS(1517), - [anon_sym_byref] = ACTIONS(1517), - [anon_sym_oneway] = ACTIONS(1517), - [anon_sym__Nullable] = ACTIONS(1517), - [anon_sym__Nonnull] = ACTIONS(1517), - [anon_sym__Nullable_result] = ACTIONS(1517), - [anon_sym__Null_unspecified] = ACTIONS(1517), - [anon_sym___autoreleasing] = ACTIONS(1517), - [anon_sym___nullable] = ACTIONS(1517), - [anon_sym___nonnull] = ACTIONS(1517), - [anon_sym___strong] = ACTIONS(1517), - [anon_sym___weak] = ACTIONS(1517), - [anon_sym___bridge] = ACTIONS(1517), - [anon_sym___bridge_transfer] = ACTIONS(1517), - [anon_sym___bridge_retained] = ACTIONS(1517), - [anon_sym___unsafe_unretained] = ACTIONS(1517), - [anon_sym___block] = ACTIONS(1517), - [anon_sym___kindof] = ACTIONS(1517), - [anon_sym___unused] = ACTIONS(1517), - [anon_sym__Complex] = ACTIONS(1517), - [anon_sym___complex] = ACTIONS(1517), - [anon_sym_IBOutlet] = ACTIONS(1517), - [anon_sym_IBInspectable] = ACTIONS(1517), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1517), - [anon_sym_signed] = ACTIONS(1517), - [anon_sym_unsigned] = ACTIONS(1517), - [anon_sym_long] = ACTIONS(1517), - [anon_sym_short] = ACTIONS(1517), - [sym_primitive_type] = ACTIONS(1517), - [anon_sym_enum] = ACTIONS(1517), - [anon_sym_NS_ENUM] = ACTIONS(1517), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1517), - [anon_sym_NS_OPTIONS] = ACTIONS(1517), - [anon_sym_struct] = ACTIONS(1517), - [anon_sym_union] = ACTIONS(1517), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1517), - [anon_sym_ATend] = ACTIONS(1519), - [sym_optional] = ACTIONS(1519), - [sym_required] = ACTIONS(1519), - [anon_sym_ATproperty] = ACTIONS(1519), - [sym_method_attribute_specifier] = ACTIONS(1517), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1517), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1517), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1517), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1517), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1517), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1517), - [anon_sym_NS_AVAILABLE] = ACTIONS(1517), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1517), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1517), - [anon_sym_API_AVAILABLE] = ACTIONS(1517), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1517), - [anon_sym_API_DEPRECATED] = ACTIONS(1517), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1517), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1517), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1517), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1517), - [anon_sym___deprecated_msg] = ACTIONS(1517), - [anon_sym___deprecated_enum_msg] = ACTIONS(1517), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1517), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1517), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1517), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1517), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1517), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1517), - [anon_sym_ATsynthesize] = ACTIONS(1519), - [anon_sym_ATdynamic] = ACTIONS(1519), - [anon_sym_typeof] = ACTIONS(1517), - [anon_sym___typeof] = ACTIONS(1517), - [anon_sym___typeof__] = ACTIONS(1517), - [sym_id] = ACTIONS(1517), - [sym_instancetype] = ACTIONS(1517), - [sym_Class] = ACTIONS(1517), - [sym_SEL] = ACTIONS(1517), - [sym_IMP] = ACTIONS(1517), - [sym_BOOL] = ACTIONS(1517), - [sym_auto] = ACTIONS(1517), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2873] = { - [sym_identifier] = ACTIONS(1513), - [aux_sym_preproc_def_token1] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_typedef] = ACTIONS(1513), - [anon_sym_extern] = ACTIONS(1513), - [anon_sym___attribute] = ACTIONS(1513), - [anon_sym___attribute__] = ACTIONS(1513), - [anon_sym___declspec] = ACTIONS(1513), - [anon_sym___cdecl] = ACTIONS(1513), - [anon_sym___clrcall] = ACTIONS(1513), - [anon_sym___stdcall] = ACTIONS(1513), - [anon_sym___fastcall] = ACTIONS(1513), - [anon_sym___thiscall] = ACTIONS(1513), - [anon_sym___vectorcall] = ACTIONS(1513), - [anon_sym_static] = ACTIONS(1513), - [anon_sym_auto] = ACTIONS(1513), - [anon_sym_register] = ACTIONS(1513), - [anon_sym_inline] = ACTIONS(1513), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_volatile] = ACTIONS(1513), - [anon_sym_restrict] = ACTIONS(1513), - [anon_sym__Atomic] = ACTIONS(1513), - [anon_sym_in] = ACTIONS(1513), - [anon_sym_out] = ACTIONS(1513), - [anon_sym_inout] = ACTIONS(1513), - [anon_sym_bycopy] = ACTIONS(1513), - [anon_sym_byref] = ACTIONS(1513), - [anon_sym_oneway] = ACTIONS(1513), - [anon_sym__Nullable] = ACTIONS(1513), - [anon_sym__Nonnull] = ACTIONS(1513), - [anon_sym__Nullable_result] = ACTIONS(1513), - [anon_sym__Null_unspecified] = ACTIONS(1513), - [anon_sym___autoreleasing] = ACTIONS(1513), - [anon_sym___nullable] = ACTIONS(1513), - [anon_sym___nonnull] = ACTIONS(1513), - [anon_sym___strong] = ACTIONS(1513), - [anon_sym___weak] = ACTIONS(1513), - [anon_sym___bridge] = ACTIONS(1513), - [anon_sym___bridge_transfer] = ACTIONS(1513), - [anon_sym___bridge_retained] = ACTIONS(1513), - [anon_sym___unsafe_unretained] = ACTIONS(1513), - [anon_sym___block] = ACTIONS(1513), - [anon_sym___kindof] = ACTIONS(1513), - [anon_sym___unused] = ACTIONS(1513), - [anon_sym__Complex] = ACTIONS(1513), - [anon_sym___complex] = ACTIONS(1513), - [anon_sym_IBOutlet] = ACTIONS(1513), - [anon_sym_IBInspectable] = ACTIONS(1513), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1513), - [anon_sym_signed] = ACTIONS(1513), - [anon_sym_unsigned] = ACTIONS(1513), - [anon_sym_long] = ACTIONS(1513), - [anon_sym_short] = ACTIONS(1513), - [sym_primitive_type] = ACTIONS(1513), - [anon_sym_enum] = ACTIONS(1513), - [anon_sym_NS_ENUM] = ACTIONS(1513), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1513), - [anon_sym_NS_OPTIONS] = ACTIONS(1513), - [anon_sym_struct] = ACTIONS(1513), - [anon_sym_union] = ACTIONS(1513), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1513), - [anon_sym_ATend] = ACTIONS(1515), - [sym_optional] = ACTIONS(1515), - [sym_required] = ACTIONS(1515), - [anon_sym_ATproperty] = ACTIONS(1515), - [sym_method_attribute_specifier] = ACTIONS(1513), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1513), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1513), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1513), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1513), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1513), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1513), - [anon_sym_NS_AVAILABLE] = ACTIONS(1513), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1513), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1513), - [anon_sym_API_AVAILABLE] = ACTIONS(1513), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1513), - [anon_sym_API_DEPRECATED] = ACTIONS(1513), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1513), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1513), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1513), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1513), - [anon_sym___deprecated_msg] = ACTIONS(1513), - [anon_sym___deprecated_enum_msg] = ACTIONS(1513), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1513), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1513), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1513), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1513), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1513), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1513), - [anon_sym_ATsynthesize] = ACTIONS(1515), - [anon_sym_ATdynamic] = ACTIONS(1515), - [anon_sym_typeof] = ACTIONS(1513), - [anon_sym___typeof] = ACTIONS(1513), - [anon_sym___typeof__] = ACTIONS(1513), - [sym_id] = ACTIONS(1513), - [sym_instancetype] = ACTIONS(1513), - [sym_Class] = ACTIONS(1513), - [sym_SEL] = ACTIONS(1513), - [sym_IMP] = ACTIONS(1513), - [sym_BOOL] = ACTIONS(1513), - [sym_auto] = ACTIONS(1513), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2874] = { - [sym_identifier] = ACTIONS(1509), - [aux_sym_preproc_def_token1] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_typedef] = ACTIONS(1509), - [anon_sym_extern] = ACTIONS(1509), - [anon_sym___attribute] = ACTIONS(1509), - [anon_sym___attribute__] = ACTIONS(1509), - [anon_sym___declspec] = ACTIONS(1509), - [anon_sym___cdecl] = ACTIONS(1509), - [anon_sym___clrcall] = ACTIONS(1509), - [anon_sym___stdcall] = ACTIONS(1509), - [anon_sym___fastcall] = ACTIONS(1509), - [anon_sym___thiscall] = ACTIONS(1509), - [anon_sym___vectorcall] = ACTIONS(1509), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_auto] = ACTIONS(1509), - [anon_sym_register] = ACTIONS(1509), - [anon_sym_inline] = ACTIONS(1509), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_volatile] = ACTIONS(1509), - [anon_sym_restrict] = ACTIONS(1509), - [anon_sym__Atomic] = ACTIONS(1509), - [anon_sym_in] = ACTIONS(1509), - [anon_sym_out] = ACTIONS(1509), - [anon_sym_inout] = ACTIONS(1509), - [anon_sym_bycopy] = ACTIONS(1509), - [anon_sym_byref] = ACTIONS(1509), - [anon_sym_oneway] = ACTIONS(1509), - [anon_sym__Nullable] = ACTIONS(1509), - [anon_sym__Nonnull] = ACTIONS(1509), - [anon_sym__Nullable_result] = ACTIONS(1509), - [anon_sym__Null_unspecified] = ACTIONS(1509), - [anon_sym___autoreleasing] = ACTIONS(1509), - [anon_sym___nullable] = ACTIONS(1509), - [anon_sym___nonnull] = ACTIONS(1509), - [anon_sym___strong] = ACTIONS(1509), - [anon_sym___weak] = ACTIONS(1509), - [anon_sym___bridge] = ACTIONS(1509), - [anon_sym___bridge_transfer] = ACTIONS(1509), - [anon_sym___bridge_retained] = ACTIONS(1509), - [anon_sym___unsafe_unretained] = ACTIONS(1509), - [anon_sym___block] = ACTIONS(1509), - [anon_sym___kindof] = ACTIONS(1509), - [anon_sym___unused] = ACTIONS(1509), - [anon_sym__Complex] = ACTIONS(1509), - [anon_sym___complex] = ACTIONS(1509), - [anon_sym_IBOutlet] = ACTIONS(1509), - [anon_sym_IBInspectable] = ACTIONS(1509), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1509), - [anon_sym_signed] = ACTIONS(1509), - [anon_sym_unsigned] = ACTIONS(1509), - [anon_sym_long] = ACTIONS(1509), - [anon_sym_short] = ACTIONS(1509), - [sym_primitive_type] = ACTIONS(1509), - [anon_sym_enum] = ACTIONS(1509), - [anon_sym_NS_ENUM] = ACTIONS(1509), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1509), - [anon_sym_NS_OPTIONS] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1509), - [anon_sym_ATend] = ACTIONS(1511), - [sym_optional] = ACTIONS(1511), - [sym_required] = ACTIONS(1511), - [anon_sym_ATproperty] = ACTIONS(1511), - [sym_method_attribute_specifier] = ACTIONS(1509), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1509), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1509), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1509), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1509), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1509), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1509), - [anon_sym_NS_AVAILABLE] = ACTIONS(1509), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1509), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1509), - [anon_sym_API_AVAILABLE] = ACTIONS(1509), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1509), - [anon_sym_API_DEPRECATED] = ACTIONS(1509), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1509), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1509), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1509), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1509), - [anon_sym___deprecated_msg] = ACTIONS(1509), - [anon_sym___deprecated_enum_msg] = ACTIONS(1509), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1509), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1509), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1509), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1509), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1509), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1509), - [anon_sym_ATsynthesize] = ACTIONS(1511), - [anon_sym_ATdynamic] = ACTIONS(1511), - [anon_sym_typeof] = ACTIONS(1509), - [anon_sym___typeof] = ACTIONS(1509), - [anon_sym___typeof__] = ACTIONS(1509), - [sym_id] = ACTIONS(1509), - [sym_instancetype] = ACTIONS(1509), - [sym_Class] = ACTIONS(1509), - [sym_SEL] = ACTIONS(1509), - [sym_IMP] = ACTIONS(1509), - [sym_BOOL] = ACTIONS(1509), - [sym_auto] = ACTIONS(1509), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2875] = { + [425] = { [sym_identifier] = ACTIONS(1505), - [aux_sym_preproc_def_token1] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), + [aux_sym_preproc_include_token1] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1503), + [aux_sym_preproc_if_token1] = ACTIONS(1505), + [aux_sym_preproc_if_token2] = ACTIONS(1505), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1505), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1505), + [anon_sym_LPAREN2] = ACTIONS(1503), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_CARET] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1503), + [anon_sym_SEMI] = ACTIONS(1503), [anon_sym_typedef] = ACTIONS(1505), [anon_sym_extern] = ACTIONS(1505), [anon_sym___attribute] = ACTIONS(1505), @@ -477176,6 +100530,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1505), [anon_sym___thiscall] = ACTIONS(1505), [anon_sym___vectorcall] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1503), [anon_sym_static] = ACTIONS(1505), [anon_sym_auto] = ACTIONS(1505), [anon_sym_register] = ACTIONS(1505), @@ -477218,17 +100574,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1505), [sym_primitive_type] = ACTIONS(1505), [anon_sym_enum] = ACTIONS(1505), - [anon_sym_NS_ENUM] = ACTIONS(1505), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1505), - [anon_sym_NS_OPTIONS] = ACTIONS(1505), [anon_sym_struct] = ACTIONS(1505), [anon_sym_union] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_else] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_case] = ACTIONS(1505), + [anon_sym_default] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_goto] = ACTIONS(1505), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_sizeof] = ACTIONS(1505), + [sym_number_literal] = ACTIONS(1503), + [anon_sym_L_SQUOTE] = ACTIONS(1503), + [anon_sym_u_SQUOTE] = ACTIONS(1503), + [anon_sym_U_SQUOTE] = ACTIONS(1503), + [anon_sym_u8_SQUOTE] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_L_DQUOTE] = ACTIONS(1503), + [anon_sym_u_DQUOTE] = ACTIONS(1503), + [anon_sym_U_DQUOTE] = ACTIONS(1503), + [anon_sym_u8_DQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [sym_true] = ACTIONS(1505), + [sym_false] = ACTIONS(1505), + [sym_null] = ACTIONS(1505), [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1503), + [anon_sym_ATimport] = ACTIONS(1503), [sym__ns_assume_nonnull_declaration] = ACTIONS(1505), - [anon_sym_ATend] = ACTIONS(1507), - [sym_optional] = ACTIONS(1507), - [sym_required] = ACTIONS(1507), - [anon_sym_ATproperty] = ACTIONS(1507), + [anon_sym_ATcompatibility_alias] = ACTIONS(1503), + [anon_sym_ATprotocol] = ACTIONS(1503), + [anon_sym_ATclass] = ACTIONS(1503), + [anon_sym_ATinterface] = ACTIONS(1503), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1505), [sym_method_attribute_specifier] = ACTIONS(1505), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1505), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1505), @@ -477254,11 +100639,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1505), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1505), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1505), - [anon_sym_ATsynthesize] = ACTIONS(1507), - [anon_sym_ATdynamic] = ACTIONS(1507), + [anon_sym_ATimplementation] = ACTIONS(1503), + [anon_sym_NS_ENUM] = ACTIONS(1505), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1505), + [anon_sym_NS_OPTIONS] = ACTIONS(1505), [anon_sym_typeof] = ACTIONS(1505), [anon_sym___typeof] = ACTIONS(1505), [anon_sym___typeof__] = ACTIONS(1505), + [sym_self] = ACTIONS(1505), + [sym_super] = ACTIONS(1505), + [sym_nil] = ACTIONS(1505), [sym_id] = ACTIONS(1505), [sym_instancetype] = ACTIONS(1505), [sym_Class] = ACTIONS(1505), @@ -477266,18 +100656,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1505), [sym_BOOL] = ACTIONS(1505), [sym_auto] = ACTIONS(1505), + [anon_sym_ATautoreleasepool] = ACTIONS(1503), + [anon_sym_ATsynchronized] = ACTIONS(1503), + [anon_sym_ATtry] = ACTIONS(1503), + [anon_sym_ATcatch] = ACTIONS(1503), + [anon_sym_ATfinally] = ACTIONS(1503), + [anon_sym_ATthrow] = ACTIONS(1503), + [anon_sym_ATselector] = ACTIONS(1503), + [anon_sym_ATencode] = ACTIONS(1503), + [anon_sym_AT] = ACTIONS(1505), + [sym_YES] = ACTIONS(1505), + [sym_NO] = ACTIONS(1505), + [anon_sym___builtin_available] = ACTIONS(1505), + [anon_sym_ATavailable] = ACTIONS(1503), + [anon_sym_va_arg] = ACTIONS(1505), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2876] = { + [426] = { [sym_identifier] = ACTIONS(1501), - [aux_sym_preproc_def_token1] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), + [aux_sym_preproc_include_token1] = ACTIONS(1499), + [aux_sym_preproc_def_token1] = ACTIONS(1499), + [aux_sym_preproc_if_token1] = ACTIONS(1501), + [aux_sym_preproc_if_token2] = ACTIONS(1501), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1501), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1501), + [anon_sym_LPAREN2] = ACTIONS(1499), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_CARET] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), [anon_sym_typedef] = ACTIONS(1501), [anon_sym_extern] = ACTIONS(1501), [anon_sym___attribute] = ACTIONS(1501), @@ -477289,6 +100705,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1501), [anon_sym___thiscall] = ACTIONS(1501), [anon_sym___vectorcall] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_static] = ACTIONS(1501), [anon_sym_auto] = ACTIONS(1501), [anon_sym_register] = ACTIONS(1501), @@ -477331,17 +100749,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1501), [sym_primitive_type] = ACTIONS(1501), [anon_sym_enum] = ACTIONS(1501), - [anon_sym_NS_ENUM] = ACTIONS(1501), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1501), - [anon_sym_NS_OPTIONS] = ACTIONS(1501), [anon_sym_struct] = ACTIONS(1501), [anon_sym_union] = ACTIONS(1501), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_else] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_case] = ACTIONS(1501), + [anon_sym_default] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_goto] = ACTIONS(1501), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_sizeof] = ACTIONS(1501), + [sym_number_literal] = ACTIONS(1499), + [anon_sym_L_SQUOTE] = ACTIONS(1499), + [anon_sym_u_SQUOTE] = ACTIONS(1499), + [anon_sym_U_SQUOTE] = ACTIONS(1499), + [anon_sym_u8_SQUOTE] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_L_DQUOTE] = ACTIONS(1499), + [anon_sym_u_DQUOTE] = ACTIONS(1499), + [anon_sym_U_DQUOTE] = ACTIONS(1499), + [anon_sym_u8_DQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym_true] = ACTIONS(1501), + [sym_false] = ACTIONS(1501), + [sym_null] = ACTIONS(1501), [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1499), + [anon_sym_ATimport] = ACTIONS(1499), [sym__ns_assume_nonnull_declaration] = ACTIONS(1501), - [anon_sym_ATend] = ACTIONS(1503), - [sym_optional] = ACTIONS(1503), - [sym_required] = ACTIONS(1503), - [anon_sym_ATproperty] = ACTIONS(1503), + [anon_sym_ATcompatibility_alias] = ACTIONS(1499), + [anon_sym_ATprotocol] = ACTIONS(1499), + [anon_sym_ATclass] = ACTIONS(1499), + [anon_sym_ATinterface] = ACTIONS(1499), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1501), [sym_method_attribute_specifier] = ACTIONS(1501), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1501), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1501), @@ -477367,11 +100814,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1501), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1501), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1501), - [anon_sym_ATsynthesize] = ACTIONS(1503), - [anon_sym_ATdynamic] = ACTIONS(1503), + [anon_sym_ATimplementation] = ACTIONS(1499), + [anon_sym_NS_ENUM] = ACTIONS(1501), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1501), + [anon_sym_NS_OPTIONS] = ACTIONS(1501), [anon_sym_typeof] = ACTIONS(1501), [anon_sym___typeof] = ACTIONS(1501), [anon_sym___typeof__] = ACTIONS(1501), + [sym_self] = ACTIONS(1501), + [sym_super] = ACTIONS(1501), + [sym_nil] = ACTIONS(1501), [sym_id] = ACTIONS(1501), [sym_instancetype] = ACTIONS(1501), [sym_Class] = ACTIONS(1501), @@ -477379,18 +100831,1619 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1501), [sym_BOOL] = ACTIONS(1501), [sym_auto] = ACTIONS(1501), + [anon_sym_ATautoreleasepool] = ACTIONS(1499), + [anon_sym_ATsynchronized] = ACTIONS(1499), + [anon_sym_ATtry] = ACTIONS(1499), + [anon_sym_ATcatch] = ACTIONS(1499), + [anon_sym_ATfinally] = ACTIONS(1499), + [anon_sym_ATthrow] = ACTIONS(1499), + [anon_sym_ATselector] = ACTIONS(1499), + [anon_sym_ATencode] = ACTIONS(1499), + [anon_sym_AT] = ACTIONS(1501), + [sym_YES] = ACTIONS(1501), + [sym_NO] = ACTIONS(1501), + [anon_sym___builtin_available] = ACTIONS(1501), + [anon_sym_ATavailable] = ACTIONS(1499), + [anon_sym_va_arg] = ACTIONS(1501), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2877] = { + [427] = { + [sym_identifier] = ACTIONS(1463), + [aux_sym_preproc_include_token1] = ACTIONS(1461), + [aux_sym_preproc_def_token1] = ACTIONS(1461), + [aux_sym_preproc_if_token1] = ACTIONS(1463), + [aux_sym_preproc_if_token2] = ACTIONS(1463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1463), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1463), + [anon_sym_LPAREN2] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_CARET] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1461), + [anon_sym_typedef] = ACTIONS(1463), + [anon_sym_extern] = ACTIONS(1463), + [anon_sym___attribute] = ACTIONS(1463), + [anon_sym___attribute__] = ACTIONS(1463), + [anon_sym___declspec] = ACTIONS(1463), + [anon_sym___cdecl] = ACTIONS(1463), + [anon_sym___clrcall] = ACTIONS(1463), + [anon_sym___stdcall] = ACTIONS(1463), + [anon_sym___fastcall] = ACTIONS(1463), + [anon_sym___thiscall] = ACTIONS(1463), + [anon_sym___vectorcall] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1463), + [anon_sym_auto] = ACTIONS(1463), + [anon_sym_register] = ACTIONS(1463), + [anon_sym_inline] = ACTIONS(1463), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_volatile] = ACTIONS(1463), + [anon_sym_restrict] = ACTIONS(1463), + [anon_sym__Atomic] = ACTIONS(1463), + [anon_sym_in] = ACTIONS(1463), + [anon_sym_out] = ACTIONS(1463), + [anon_sym_inout] = ACTIONS(1463), + [anon_sym_bycopy] = ACTIONS(1463), + [anon_sym_byref] = ACTIONS(1463), + [anon_sym_oneway] = ACTIONS(1463), + [anon_sym__Nullable] = ACTIONS(1463), + [anon_sym__Nonnull] = ACTIONS(1463), + [anon_sym__Nullable_result] = ACTIONS(1463), + [anon_sym__Null_unspecified] = ACTIONS(1463), + [anon_sym___autoreleasing] = ACTIONS(1463), + [anon_sym___nullable] = ACTIONS(1463), + [anon_sym___nonnull] = ACTIONS(1463), + [anon_sym___strong] = ACTIONS(1463), + [anon_sym___weak] = ACTIONS(1463), + [anon_sym___bridge] = ACTIONS(1463), + [anon_sym___bridge_transfer] = ACTIONS(1463), + [anon_sym___bridge_retained] = ACTIONS(1463), + [anon_sym___unsafe_unretained] = ACTIONS(1463), + [anon_sym___block] = ACTIONS(1463), + [anon_sym___kindof] = ACTIONS(1463), + [anon_sym___unused] = ACTIONS(1463), + [anon_sym__Complex] = ACTIONS(1463), + [anon_sym___complex] = ACTIONS(1463), + [anon_sym_IBOutlet] = ACTIONS(1463), + [anon_sym_IBInspectable] = ACTIONS(1463), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1463), + [anon_sym_signed] = ACTIONS(1463), + [anon_sym_unsigned] = ACTIONS(1463), + [anon_sym_long] = ACTIONS(1463), + [anon_sym_short] = ACTIONS(1463), + [sym_primitive_type] = ACTIONS(1463), + [anon_sym_enum] = ACTIONS(1463), + [anon_sym_struct] = ACTIONS(1463), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_else] = ACTIONS(1463), + [anon_sym_switch] = ACTIONS(1463), + [anon_sym_case] = ACTIONS(1463), + [anon_sym_default] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [anon_sym_do] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [anon_sym_goto] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1461), + [anon_sym_PLUS_PLUS] = ACTIONS(1461), + [anon_sym_sizeof] = ACTIONS(1463), + [sym_number_literal] = ACTIONS(1461), + [anon_sym_L_SQUOTE] = ACTIONS(1461), + [anon_sym_u_SQUOTE] = ACTIONS(1461), + [anon_sym_U_SQUOTE] = ACTIONS(1461), + [anon_sym_u8_SQUOTE] = ACTIONS(1461), + [anon_sym_SQUOTE] = ACTIONS(1461), + [anon_sym_L_DQUOTE] = ACTIONS(1461), + [anon_sym_u_DQUOTE] = ACTIONS(1461), + [anon_sym_U_DQUOTE] = ACTIONS(1461), + [anon_sym_u8_DQUOTE] = ACTIONS(1461), + [anon_sym_DQUOTE] = ACTIONS(1461), + [sym_true] = ACTIONS(1463), + [sym_false] = ACTIONS(1463), + [sym_null] = ACTIONS(1463), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1461), + [anon_sym_ATimport] = ACTIONS(1461), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1463), + [anon_sym_ATcompatibility_alias] = ACTIONS(1461), + [anon_sym_ATprotocol] = ACTIONS(1461), + [anon_sym_ATclass] = ACTIONS(1461), + [anon_sym_ATinterface] = ACTIONS(1461), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1463), + [sym_method_attribute_specifier] = ACTIONS(1463), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1463), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1463), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1463), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1463), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1463), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1463), + [anon_sym_NS_AVAILABLE] = ACTIONS(1463), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1463), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1463), + [anon_sym_API_AVAILABLE] = ACTIONS(1463), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1463), + [anon_sym_API_DEPRECATED] = ACTIONS(1463), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1463), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1463), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1463), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1463), + [anon_sym___deprecated_msg] = ACTIONS(1463), + [anon_sym___deprecated_enum_msg] = ACTIONS(1463), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1463), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1463), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1463), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1463), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1463), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1463), + [anon_sym_ATimplementation] = ACTIONS(1461), + [anon_sym_NS_ENUM] = ACTIONS(1463), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1463), + [anon_sym_NS_OPTIONS] = ACTIONS(1463), + [anon_sym_typeof] = ACTIONS(1463), + [anon_sym___typeof] = ACTIONS(1463), + [anon_sym___typeof__] = ACTIONS(1463), + [sym_self] = ACTIONS(1463), + [sym_super] = ACTIONS(1463), + [sym_nil] = ACTIONS(1463), + [sym_id] = ACTIONS(1463), + [sym_instancetype] = ACTIONS(1463), + [sym_Class] = ACTIONS(1463), + [sym_SEL] = ACTIONS(1463), + [sym_IMP] = ACTIONS(1463), + [sym_BOOL] = ACTIONS(1463), + [sym_auto] = ACTIONS(1463), + [anon_sym_ATautoreleasepool] = ACTIONS(1461), + [anon_sym_ATsynchronized] = ACTIONS(1461), + [anon_sym_ATtry] = ACTIONS(1461), + [anon_sym_ATcatch] = ACTIONS(1461), + [anon_sym_ATfinally] = ACTIONS(1461), + [anon_sym_ATthrow] = ACTIONS(1461), + [anon_sym_ATselector] = ACTIONS(1461), + [anon_sym_ATencode] = ACTIONS(1461), + [anon_sym_AT] = ACTIONS(1463), + [sym_YES] = ACTIONS(1463), + [sym_NO] = ACTIONS(1463), + [anon_sym___builtin_available] = ACTIONS(1463), + [anon_sym_ATavailable] = ACTIONS(1461), + [anon_sym_va_arg] = ACTIONS(1463), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [428] = { + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_include_token1] = ACTIONS(1265), + [aux_sym_preproc_def_token1] = ACTIONS(1265), + [aux_sym_preproc_if_token1] = ACTIONS(1267), + [aux_sym_preproc_if_token2] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym_in] = ACTIONS(1267), + [anon_sym_out] = ACTIONS(1267), + [anon_sym_inout] = ACTIONS(1267), + [anon_sym_bycopy] = ACTIONS(1267), + [anon_sym_byref] = ACTIONS(1267), + [anon_sym_oneway] = ACTIONS(1267), + [anon_sym__Nullable] = ACTIONS(1267), + [anon_sym__Nonnull] = ACTIONS(1267), + [anon_sym__Nullable_result] = ACTIONS(1267), + [anon_sym__Null_unspecified] = ACTIONS(1267), + [anon_sym___autoreleasing] = ACTIONS(1267), + [anon_sym___nullable] = ACTIONS(1267), + [anon_sym___nonnull] = ACTIONS(1267), + [anon_sym___strong] = ACTIONS(1267), + [anon_sym___weak] = ACTIONS(1267), + [anon_sym___bridge] = ACTIONS(1267), + [anon_sym___bridge_transfer] = ACTIONS(1267), + [anon_sym___bridge_retained] = ACTIONS(1267), + [anon_sym___unsafe_unretained] = ACTIONS(1267), + [anon_sym___block] = ACTIONS(1267), + [anon_sym___kindof] = ACTIONS(1267), + [anon_sym___unused] = ACTIONS(1267), + [anon_sym__Complex] = ACTIONS(1267), + [anon_sym___complex] = ACTIONS(1267), + [anon_sym_IBOutlet] = ACTIONS(1267), + [anon_sym_IBInspectable] = ACTIONS(1267), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1267), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1267), + [anon_sym_case] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_do] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_goto] = ACTIONS(1267), + [anon_sym_DASH_DASH] = ACTIONS(1265), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_sizeof] = ACTIONS(1267), + [sym_number_literal] = ACTIONS(1265), + [anon_sym_L_SQUOTE] = ACTIONS(1265), + [anon_sym_u_SQUOTE] = ACTIONS(1265), + [anon_sym_U_SQUOTE] = ACTIONS(1265), + [anon_sym_u8_SQUOTE] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1265), + [anon_sym_L_DQUOTE] = ACTIONS(1265), + [anon_sym_u_DQUOTE] = ACTIONS(1265), + [anon_sym_U_DQUOTE] = ACTIONS(1265), + [anon_sym_u8_DQUOTE] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym_true] = ACTIONS(1267), + [sym_false] = ACTIONS(1267), + [sym_null] = ACTIONS(1267), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1265), + [anon_sym_ATimport] = ACTIONS(1265), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1267), + [anon_sym_ATcompatibility_alias] = ACTIONS(1265), + [anon_sym_ATprotocol] = ACTIONS(1265), + [anon_sym_ATclass] = ACTIONS(1265), + [anon_sym_ATinterface] = ACTIONS(1265), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1267), + [sym_method_attribute_specifier] = ACTIONS(1267), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1267), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1267), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1267), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1267), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1267), + [anon_sym_NS_AVAILABLE] = ACTIONS(1267), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1267), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_API_AVAILABLE] = ACTIONS(1267), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_API_DEPRECATED] = ACTIONS(1267), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1267), + [anon_sym___deprecated_msg] = ACTIONS(1267), + [anon_sym___deprecated_enum_msg] = ACTIONS(1267), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1267), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1267), + [anon_sym_ATimplementation] = ACTIONS(1265), + [anon_sym_NS_ENUM] = ACTIONS(1267), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1267), + [anon_sym_NS_OPTIONS] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1267), + [anon_sym___typeof] = ACTIONS(1267), + [anon_sym___typeof__] = ACTIONS(1267), + [sym_self] = ACTIONS(1267), + [sym_super] = ACTIONS(1267), + [sym_nil] = ACTIONS(1267), + [sym_id] = ACTIONS(1267), + [sym_instancetype] = ACTIONS(1267), + [sym_Class] = ACTIONS(1267), + [sym_SEL] = ACTIONS(1267), + [sym_IMP] = ACTIONS(1267), + [sym_BOOL] = ACTIONS(1267), + [sym_auto] = ACTIONS(1267), + [anon_sym_ATautoreleasepool] = ACTIONS(1265), + [anon_sym_ATsynchronized] = ACTIONS(1265), + [anon_sym_ATtry] = ACTIONS(1265), + [anon_sym_ATcatch] = ACTIONS(1265), + [anon_sym_ATfinally] = ACTIONS(1265), + [anon_sym_ATthrow] = ACTIONS(1265), + [anon_sym_ATselector] = ACTIONS(1265), + [anon_sym_ATencode] = ACTIONS(1265), + [anon_sym_AT] = ACTIONS(1267), + [sym_YES] = ACTIONS(1267), + [sym_NO] = ACTIONS(1267), + [anon_sym___builtin_available] = ACTIONS(1267), + [anon_sym_ATavailable] = ACTIONS(1265), + [anon_sym_va_arg] = ACTIONS(1267), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [429] = { + [sym_identifier] = ACTIONS(1341), + [aux_sym_preproc_include_token1] = ACTIONS(1339), + [aux_sym_preproc_def_token1] = ACTIONS(1339), + [aux_sym_preproc_if_token1] = ACTIONS(1341), + [aux_sym_preproc_if_token2] = ACTIONS(1341), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1341), + [anon_sym_LPAREN2] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1339), + [anon_sym_TILDE] = ACTIONS(1339), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1339), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_typedef] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym___attribute] = ACTIONS(1341), + [anon_sym___attribute__] = ACTIONS(1341), + [anon_sym___declspec] = ACTIONS(1341), + [anon_sym___cdecl] = ACTIONS(1341), + [anon_sym___clrcall] = ACTIONS(1341), + [anon_sym___stdcall] = ACTIONS(1341), + [anon_sym___fastcall] = ACTIONS(1341), + [anon_sym___thiscall] = ACTIONS(1341), + [anon_sym___vectorcall] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1339), + [anon_sym_static] = ACTIONS(1341), + [anon_sym_auto] = ACTIONS(1341), + [anon_sym_register] = ACTIONS(1341), + [anon_sym_inline] = ACTIONS(1341), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1341), + [anon_sym_const] = ACTIONS(1341), + [anon_sym_volatile] = ACTIONS(1341), + [anon_sym_restrict] = ACTIONS(1341), + [anon_sym__Atomic] = ACTIONS(1341), + [anon_sym_in] = ACTIONS(1341), + [anon_sym_out] = ACTIONS(1341), + [anon_sym_inout] = ACTIONS(1341), + [anon_sym_bycopy] = ACTIONS(1341), + [anon_sym_byref] = ACTIONS(1341), + [anon_sym_oneway] = ACTIONS(1341), + [anon_sym__Nullable] = ACTIONS(1341), + [anon_sym__Nonnull] = ACTIONS(1341), + [anon_sym__Nullable_result] = ACTIONS(1341), + [anon_sym__Null_unspecified] = ACTIONS(1341), + [anon_sym___autoreleasing] = ACTIONS(1341), + [anon_sym___nullable] = ACTIONS(1341), + [anon_sym___nonnull] = ACTIONS(1341), + [anon_sym___strong] = ACTIONS(1341), + [anon_sym___weak] = ACTIONS(1341), + [anon_sym___bridge] = ACTIONS(1341), + [anon_sym___bridge_transfer] = ACTIONS(1341), + [anon_sym___bridge_retained] = ACTIONS(1341), + [anon_sym___unsafe_unretained] = ACTIONS(1341), + [anon_sym___block] = ACTIONS(1341), + [anon_sym___kindof] = ACTIONS(1341), + [anon_sym___unused] = ACTIONS(1341), + [anon_sym__Complex] = ACTIONS(1341), + [anon_sym___complex] = ACTIONS(1341), + [anon_sym_IBOutlet] = ACTIONS(1341), + [anon_sym_IBInspectable] = ACTIONS(1341), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1341), + [anon_sym_signed] = ACTIONS(1341), + [anon_sym_unsigned] = ACTIONS(1341), + [anon_sym_long] = ACTIONS(1341), + [anon_sym_short] = ACTIONS(1341), + [sym_primitive_type] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_struct] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_else] = ACTIONS(1341), + [anon_sym_switch] = ACTIONS(1341), + [anon_sym_case] = ACTIONS(1341), + [anon_sym_default] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_goto] = ACTIONS(1341), + [anon_sym_DASH_DASH] = ACTIONS(1339), + [anon_sym_PLUS_PLUS] = ACTIONS(1339), + [anon_sym_sizeof] = ACTIONS(1341), + [sym_number_literal] = ACTIONS(1339), + [anon_sym_L_SQUOTE] = ACTIONS(1339), + [anon_sym_u_SQUOTE] = ACTIONS(1339), + [anon_sym_U_SQUOTE] = ACTIONS(1339), + [anon_sym_u8_SQUOTE] = ACTIONS(1339), + [anon_sym_SQUOTE] = ACTIONS(1339), + [anon_sym_L_DQUOTE] = ACTIONS(1339), + [anon_sym_u_DQUOTE] = ACTIONS(1339), + [anon_sym_U_DQUOTE] = ACTIONS(1339), + [anon_sym_u8_DQUOTE] = ACTIONS(1339), + [anon_sym_DQUOTE] = ACTIONS(1339), + [sym_true] = ACTIONS(1341), + [sym_false] = ACTIONS(1341), + [sym_null] = ACTIONS(1341), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1339), + [anon_sym_ATimport] = ACTIONS(1339), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1341), + [anon_sym_ATcompatibility_alias] = ACTIONS(1339), + [anon_sym_ATprotocol] = ACTIONS(1339), + [anon_sym_ATclass] = ACTIONS(1339), + [anon_sym_ATinterface] = ACTIONS(1339), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1341), + [sym_method_attribute_specifier] = ACTIONS(1341), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1341), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1341), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1341), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1341), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1341), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1341), + [anon_sym_NS_AVAILABLE] = ACTIONS(1341), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1341), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1341), + [anon_sym_API_AVAILABLE] = ACTIONS(1341), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1341), + [anon_sym_API_DEPRECATED] = ACTIONS(1341), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1341), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1341), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1341), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1341), + [anon_sym___deprecated_msg] = ACTIONS(1341), + [anon_sym___deprecated_enum_msg] = ACTIONS(1341), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1341), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1341), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1341), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1341), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1341), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1341), + [anon_sym_ATimplementation] = ACTIONS(1339), + [anon_sym_NS_ENUM] = ACTIONS(1341), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1341), + [anon_sym_NS_OPTIONS] = ACTIONS(1341), + [anon_sym_typeof] = ACTIONS(1341), + [anon_sym___typeof] = ACTIONS(1341), + [anon_sym___typeof__] = ACTIONS(1341), + [sym_self] = ACTIONS(1341), + [sym_super] = ACTIONS(1341), + [sym_nil] = ACTIONS(1341), + [sym_id] = ACTIONS(1341), + [sym_instancetype] = ACTIONS(1341), + [sym_Class] = ACTIONS(1341), + [sym_SEL] = ACTIONS(1341), + [sym_IMP] = ACTIONS(1341), + [sym_BOOL] = ACTIONS(1341), + [sym_auto] = ACTIONS(1341), + [anon_sym_ATautoreleasepool] = ACTIONS(1339), + [anon_sym_ATsynchronized] = ACTIONS(1339), + [anon_sym_ATtry] = ACTIONS(1339), + [anon_sym_ATcatch] = ACTIONS(1339), + [anon_sym_ATfinally] = ACTIONS(1339), + [anon_sym_ATthrow] = ACTIONS(1339), + [anon_sym_ATselector] = ACTIONS(1339), + [anon_sym_ATencode] = ACTIONS(1339), + [anon_sym_AT] = ACTIONS(1341), + [sym_YES] = ACTIONS(1341), + [sym_NO] = ACTIONS(1341), + [anon_sym___builtin_available] = ACTIONS(1341), + [anon_sym_ATavailable] = ACTIONS(1339), + [anon_sym_va_arg] = ACTIONS(1341), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [430] = { + [sym_identifier] = ACTIONS(1297), + [aux_sym_preproc_include_token1] = ACTIONS(1295), + [aux_sym_preproc_def_token1] = ACTIONS(1295), + [aux_sym_preproc_if_token1] = ACTIONS(1297), + [aux_sym_preproc_if_token2] = ACTIONS(1297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1297), + [anon_sym_LPAREN2] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_STAR] = ACTIONS(1295), + [anon_sym_CARET] = ACTIONS(1295), + [anon_sym_AMP] = ACTIONS(1295), + [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1297), + [anon_sym___attribute] = ACTIONS(1297), + [anon_sym___attribute__] = ACTIONS(1297), + [anon_sym___declspec] = ACTIONS(1297), + [anon_sym___cdecl] = ACTIONS(1297), + [anon_sym___clrcall] = ACTIONS(1297), + [anon_sym___stdcall] = ACTIONS(1297), + [anon_sym___fastcall] = ACTIONS(1297), + [anon_sym___thiscall] = ACTIONS(1297), + [anon_sym___vectorcall] = ACTIONS(1297), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1297), + [anon_sym_auto] = ACTIONS(1297), + [anon_sym_register] = ACTIONS(1297), + [anon_sym_inline] = ACTIONS(1297), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_volatile] = ACTIONS(1297), + [anon_sym_restrict] = ACTIONS(1297), + [anon_sym__Atomic] = ACTIONS(1297), + [anon_sym_in] = ACTIONS(1297), + [anon_sym_out] = ACTIONS(1297), + [anon_sym_inout] = ACTIONS(1297), + [anon_sym_bycopy] = ACTIONS(1297), + [anon_sym_byref] = ACTIONS(1297), + [anon_sym_oneway] = ACTIONS(1297), + [anon_sym__Nullable] = ACTIONS(1297), + [anon_sym__Nonnull] = ACTIONS(1297), + [anon_sym__Nullable_result] = ACTIONS(1297), + [anon_sym__Null_unspecified] = ACTIONS(1297), + [anon_sym___autoreleasing] = ACTIONS(1297), + [anon_sym___nullable] = ACTIONS(1297), + [anon_sym___nonnull] = ACTIONS(1297), + [anon_sym___strong] = ACTIONS(1297), + [anon_sym___weak] = ACTIONS(1297), + [anon_sym___bridge] = ACTIONS(1297), + [anon_sym___bridge_transfer] = ACTIONS(1297), + [anon_sym___bridge_retained] = ACTIONS(1297), + [anon_sym___unsafe_unretained] = ACTIONS(1297), + [anon_sym___block] = ACTIONS(1297), + [anon_sym___kindof] = ACTIONS(1297), + [anon_sym___unused] = ACTIONS(1297), + [anon_sym__Complex] = ACTIONS(1297), + [anon_sym___complex] = ACTIONS(1297), + [anon_sym_IBOutlet] = ACTIONS(1297), + [anon_sym_IBInspectable] = ACTIONS(1297), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1297), + [anon_sym_signed] = ACTIONS(1297), + [anon_sym_unsigned] = ACTIONS(1297), + [anon_sym_long] = ACTIONS(1297), + [anon_sym_short] = ACTIONS(1297), + [sym_primitive_type] = ACTIONS(1297), + [anon_sym_enum] = ACTIONS(1297), + [anon_sym_struct] = ACTIONS(1297), + [anon_sym_union] = ACTIONS(1297), + [anon_sym_if] = ACTIONS(1297), + [anon_sym_else] = ACTIONS(1297), + [anon_sym_switch] = ACTIONS(1297), + [anon_sym_case] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_while] = ACTIONS(1297), + [anon_sym_do] = ACTIONS(1297), + [anon_sym_for] = ACTIONS(1297), + [anon_sym_return] = ACTIONS(1297), + [anon_sym_break] = ACTIONS(1297), + [anon_sym_continue] = ACTIONS(1297), + [anon_sym_goto] = ACTIONS(1297), + [anon_sym_DASH_DASH] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(1295), + [anon_sym_sizeof] = ACTIONS(1297), + [sym_number_literal] = ACTIONS(1295), + [anon_sym_L_SQUOTE] = ACTIONS(1295), + [anon_sym_u_SQUOTE] = ACTIONS(1295), + [anon_sym_U_SQUOTE] = ACTIONS(1295), + [anon_sym_u8_SQUOTE] = ACTIONS(1295), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_L_DQUOTE] = ACTIONS(1295), + [anon_sym_u_DQUOTE] = ACTIONS(1295), + [anon_sym_U_DQUOTE] = ACTIONS(1295), + [anon_sym_u8_DQUOTE] = ACTIONS(1295), + [anon_sym_DQUOTE] = ACTIONS(1295), + [sym_true] = ACTIONS(1297), + [sym_false] = ACTIONS(1297), + [sym_null] = ACTIONS(1297), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1295), + [anon_sym_ATimport] = ACTIONS(1295), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1297), + [anon_sym_ATcompatibility_alias] = ACTIONS(1295), + [anon_sym_ATprotocol] = ACTIONS(1295), + [anon_sym_ATclass] = ACTIONS(1295), + [anon_sym_ATinterface] = ACTIONS(1295), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1297), + [sym_method_attribute_specifier] = ACTIONS(1297), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1297), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1297), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1297), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1297), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1297), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1297), + [anon_sym_NS_AVAILABLE] = ACTIONS(1297), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1297), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1297), + [anon_sym_API_AVAILABLE] = ACTIONS(1297), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1297), + [anon_sym_API_DEPRECATED] = ACTIONS(1297), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1297), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1297), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1297), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1297), + [anon_sym___deprecated_msg] = ACTIONS(1297), + [anon_sym___deprecated_enum_msg] = ACTIONS(1297), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1297), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1297), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1297), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1297), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1297), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1297), + [anon_sym_ATimplementation] = ACTIONS(1295), + [anon_sym_NS_ENUM] = ACTIONS(1297), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1297), + [anon_sym_NS_OPTIONS] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym___typeof] = ACTIONS(1297), + [anon_sym___typeof__] = ACTIONS(1297), + [sym_self] = ACTIONS(1297), + [sym_super] = ACTIONS(1297), + [sym_nil] = ACTIONS(1297), + [sym_id] = ACTIONS(1297), + [sym_instancetype] = ACTIONS(1297), + [sym_Class] = ACTIONS(1297), + [sym_SEL] = ACTIONS(1297), + [sym_IMP] = ACTIONS(1297), + [sym_BOOL] = ACTIONS(1297), + [sym_auto] = ACTIONS(1297), + [anon_sym_ATautoreleasepool] = ACTIONS(1295), + [anon_sym_ATsynchronized] = ACTIONS(1295), + [anon_sym_ATtry] = ACTIONS(1295), + [anon_sym_ATcatch] = ACTIONS(1295), + [anon_sym_ATfinally] = ACTIONS(1295), + [anon_sym_ATthrow] = ACTIONS(1295), + [anon_sym_ATselector] = ACTIONS(1295), + [anon_sym_ATencode] = ACTIONS(1295), + [anon_sym_AT] = ACTIONS(1297), + [sym_YES] = ACTIONS(1297), + [sym_NO] = ACTIONS(1297), + [anon_sym___builtin_available] = ACTIONS(1297), + [anon_sym_ATavailable] = ACTIONS(1295), + [anon_sym_va_arg] = ACTIONS(1297), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [431] = { + [sym_identifier] = ACTIONS(1233), + [aux_sym_preproc_include_token1] = ACTIONS(1231), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [aux_sym_preproc_if_token1] = ACTIONS(1233), + [aux_sym_preproc_if_token2] = ACTIONS(1233), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1233), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1233), + [anon_sym_LPAREN2] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1231), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1233), + [anon_sym_extern] = ACTIONS(1233), + [anon_sym___attribute] = ACTIONS(1233), + [anon_sym___attribute__] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1233), + [anon_sym___cdecl] = ACTIONS(1233), + [anon_sym___clrcall] = ACTIONS(1233), + [anon_sym___stdcall] = ACTIONS(1233), + [anon_sym___fastcall] = ACTIONS(1233), + [anon_sym___thiscall] = ACTIONS(1233), + [anon_sym___vectorcall] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_static] = ACTIONS(1233), + [anon_sym_auto] = ACTIONS(1233), + [anon_sym_register] = ACTIONS(1233), + [anon_sym_inline] = ACTIONS(1233), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_volatile] = ACTIONS(1233), + [anon_sym_restrict] = ACTIONS(1233), + [anon_sym__Atomic] = ACTIONS(1233), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_out] = ACTIONS(1233), + [anon_sym_inout] = ACTIONS(1233), + [anon_sym_bycopy] = ACTIONS(1233), + [anon_sym_byref] = ACTIONS(1233), + [anon_sym_oneway] = ACTIONS(1233), + [anon_sym__Nullable] = ACTIONS(1233), + [anon_sym__Nonnull] = ACTIONS(1233), + [anon_sym__Nullable_result] = ACTIONS(1233), + [anon_sym__Null_unspecified] = ACTIONS(1233), + [anon_sym___autoreleasing] = ACTIONS(1233), + [anon_sym___nullable] = ACTIONS(1233), + [anon_sym___nonnull] = ACTIONS(1233), + [anon_sym___strong] = ACTIONS(1233), + [anon_sym___weak] = ACTIONS(1233), + [anon_sym___bridge] = ACTIONS(1233), + [anon_sym___bridge_transfer] = ACTIONS(1233), + [anon_sym___bridge_retained] = ACTIONS(1233), + [anon_sym___unsafe_unretained] = ACTIONS(1233), + [anon_sym___block] = ACTIONS(1233), + [anon_sym___kindof] = ACTIONS(1233), + [anon_sym___unused] = ACTIONS(1233), + [anon_sym__Complex] = ACTIONS(1233), + [anon_sym___complex] = ACTIONS(1233), + [anon_sym_IBOutlet] = ACTIONS(1233), + [anon_sym_IBInspectable] = ACTIONS(1233), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1233), + [anon_sym_unsigned] = ACTIONS(1233), + [anon_sym_long] = ACTIONS(1233), + [anon_sym_short] = ACTIONS(1233), + [sym_primitive_type] = ACTIONS(1233), + [anon_sym_enum] = ACTIONS(1233), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_union] = ACTIONS(1233), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_else] = ACTIONS(1233), + [anon_sym_switch] = ACTIONS(1233), + [anon_sym_case] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1233), + [anon_sym_while] = ACTIONS(1233), + [anon_sym_do] = ACTIONS(1233), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_break] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(1233), + [anon_sym_goto] = ACTIONS(1233), + [anon_sym_DASH_DASH] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1231), + [anon_sym_sizeof] = ACTIONS(1233), + [sym_number_literal] = ACTIONS(1231), + [anon_sym_L_SQUOTE] = ACTIONS(1231), + [anon_sym_u_SQUOTE] = ACTIONS(1231), + [anon_sym_U_SQUOTE] = ACTIONS(1231), + [anon_sym_u8_SQUOTE] = ACTIONS(1231), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_L_DQUOTE] = ACTIONS(1231), + [anon_sym_u_DQUOTE] = ACTIONS(1231), + [anon_sym_U_DQUOTE] = ACTIONS(1231), + [anon_sym_u8_DQUOTE] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1231), + [sym_true] = ACTIONS(1233), + [sym_false] = ACTIONS(1233), + [sym_null] = ACTIONS(1233), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1231), + [anon_sym_ATimport] = ACTIONS(1231), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1233), + [anon_sym_ATcompatibility_alias] = ACTIONS(1231), + [anon_sym_ATprotocol] = ACTIONS(1231), + [anon_sym_ATclass] = ACTIONS(1231), + [anon_sym_ATinterface] = ACTIONS(1231), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1233), + [sym_method_attribute_specifier] = ACTIONS(1233), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1233), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1233), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1233), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1233), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1233), + [anon_sym_NS_AVAILABLE] = ACTIONS(1233), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1233), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_API_AVAILABLE] = ACTIONS(1233), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_API_DEPRECATED] = ACTIONS(1233), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1233), + [anon_sym___deprecated_msg] = ACTIONS(1233), + [anon_sym___deprecated_enum_msg] = ACTIONS(1233), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1233), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1233), + [anon_sym_ATimplementation] = ACTIONS(1231), + [anon_sym_NS_ENUM] = ACTIONS(1233), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1233), + [anon_sym_NS_OPTIONS] = ACTIONS(1233), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym___typeof] = ACTIONS(1233), + [anon_sym___typeof__] = ACTIONS(1233), + [sym_self] = ACTIONS(1233), + [sym_super] = ACTIONS(1233), + [sym_nil] = ACTIONS(1233), + [sym_id] = ACTIONS(1233), + [sym_instancetype] = ACTIONS(1233), + [sym_Class] = ACTIONS(1233), + [sym_SEL] = ACTIONS(1233), + [sym_IMP] = ACTIONS(1233), + [sym_BOOL] = ACTIONS(1233), + [sym_auto] = ACTIONS(1233), + [anon_sym_ATautoreleasepool] = ACTIONS(1231), + [anon_sym_ATsynchronized] = ACTIONS(1231), + [anon_sym_ATtry] = ACTIONS(1231), + [anon_sym_ATcatch] = ACTIONS(1231), + [anon_sym_ATfinally] = ACTIONS(1231), + [anon_sym_ATthrow] = ACTIONS(1231), + [anon_sym_ATselector] = ACTIONS(1231), + [anon_sym_ATencode] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1233), + [sym_YES] = ACTIONS(1233), + [sym_NO] = ACTIONS(1233), + [anon_sym___builtin_available] = ACTIONS(1233), + [anon_sym_ATavailable] = ACTIONS(1231), + [anon_sym_va_arg] = ACTIONS(1233), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [432] = { + [sym_identifier] = ACTIONS(1333), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1333), + [aux_sym_preproc_if_token2] = ACTIONS(1333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1333), + [anon_sym_LPAREN2] = ACTIONS(1331), + [anon_sym_BANG] = ACTIONS(1331), + [anon_sym_TILDE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_typedef] = ACTIONS(1333), + [anon_sym_extern] = ACTIONS(1333), + [anon_sym___attribute] = ACTIONS(1333), + [anon_sym___attribute__] = ACTIONS(1333), + [anon_sym___declspec] = ACTIONS(1333), + [anon_sym___cdecl] = ACTIONS(1333), + [anon_sym___clrcall] = ACTIONS(1333), + [anon_sym___stdcall] = ACTIONS(1333), + [anon_sym___fastcall] = ACTIONS(1333), + [anon_sym___thiscall] = ACTIONS(1333), + [anon_sym___vectorcall] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_static] = ACTIONS(1333), + [anon_sym_auto] = ACTIONS(1333), + [anon_sym_register] = ACTIONS(1333), + [anon_sym_inline] = ACTIONS(1333), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1333), + [anon_sym_const] = ACTIONS(1333), + [anon_sym_volatile] = ACTIONS(1333), + [anon_sym_restrict] = ACTIONS(1333), + [anon_sym__Atomic] = ACTIONS(1333), + [anon_sym_in] = ACTIONS(1333), + [anon_sym_out] = ACTIONS(1333), + [anon_sym_inout] = ACTIONS(1333), + [anon_sym_bycopy] = ACTIONS(1333), + [anon_sym_byref] = ACTIONS(1333), + [anon_sym_oneway] = ACTIONS(1333), + [anon_sym__Nullable] = ACTIONS(1333), + [anon_sym__Nonnull] = ACTIONS(1333), + [anon_sym__Nullable_result] = ACTIONS(1333), + [anon_sym__Null_unspecified] = ACTIONS(1333), + [anon_sym___autoreleasing] = ACTIONS(1333), + [anon_sym___nullable] = ACTIONS(1333), + [anon_sym___nonnull] = ACTIONS(1333), + [anon_sym___strong] = ACTIONS(1333), + [anon_sym___weak] = ACTIONS(1333), + [anon_sym___bridge] = ACTIONS(1333), + [anon_sym___bridge_transfer] = ACTIONS(1333), + [anon_sym___bridge_retained] = ACTIONS(1333), + [anon_sym___unsafe_unretained] = ACTIONS(1333), + [anon_sym___block] = ACTIONS(1333), + [anon_sym___kindof] = ACTIONS(1333), + [anon_sym___unused] = ACTIONS(1333), + [anon_sym__Complex] = ACTIONS(1333), + [anon_sym___complex] = ACTIONS(1333), + [anon_sym_IBOutlet] = ACTIONS(1333), + [anon_sym_IBInspectable] = ACTIONS(1333), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1333), + [anon_sym_signed] = ACTIONS(1333), + [anon_sym_unsigned] = ACTIONS(1333), + [anon_sym_long] = ACTIONS(1333), + [anon_sym_short] = ACTIONS(1333), + [sym_primitive_type] = ACTIONS(1333), + [anon_sym_enum] = ACTIONS(1333), + [anon_sym_struct] = ACTIONS(1333), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_if] = ACTIONS(1333), + [anon_sym_else] = ACTIONS(1333), + [anon_sym_switch] = ACTIONS(1333), + [anon_sym_case] = ACTIONS(1333), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_while] = ACTIONS(1333), + [anon_sym_do] = ACTIONS(1333), + [anon_sym_for] = ACTIONS(1333), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1333), + [anon_sym_continue] = ACTIONS(1333), + [anon_sym_goto] = ACTIONS(1333), + [anon_sym_DASH_DASH] = ACTIONS(1331), + [anon_sym_PLUS_PLUS] = ACTIONS(1331), + [anon_sym_sizeof] = ACTIONS(1333), + [sym_number_literal] = ACTIONS(1331), + [anon_sym_L_SQUOTE] = ACTIONS(1331), + [anon_sym_u_SQUOTE] = ACTIONS(1331), + [anon_sym_U_SQUOTE] = ACTIONS(1331), + [anon_sym_u8_SQUOTE] = ACTIONS(1331), + [anon_sym_SQUOTE] = ACTIONS(1331), + [anon_sym_L_DQUOTE] = ACTIONS(1331), + [anon_sym_u_DQUOTE] = ACTIONS(1331), + [anon_sym_U_DQUOTE] = ACTIONS(1331), + [anon_sym_u8_DQUOTE] = ACTIONS(1331), + [anon_sym_DQUOTE] = ACTIONS(1331), + [sym_true] = ACTIONS(1333), + [sym_false] = ACTIONS(1333), + [sym_null] = ACTIONS(1333), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1331), + [anon_sym_ATimport] = ACTIONS(1331), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1333), + [anon_sym_ATcompatibility_alias] = ACTIONS(1331), + [anon_sym_ATprotocol] = ACTIONS(1331), + [anon_sym_ATclass] = ACTIONS(1331), + [anon_sym_ATinterface] = ACTIONS(1331), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1333), + [sym_method_attribute_specifier] = ACTIONS(1333), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1333), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1333), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1333), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1333), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1333), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1333), + [anon_sym_NS_AVAILABLE] = ACTIONS(1333), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1333), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1333), + [anon_sym_API_AVAILABLE] = ACTIONS(1333), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1333), + [anon_sym_API_DEPRECATED] = ACTIONS(1333), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1333), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1333), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1333), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1333), + [anon_sym___deprecated_msg] = ACTIONS(1333), + [anon_sym___deprecated_enum_msg] = ACTIONS(1333), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1333), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1333), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1333), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1333), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1333), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1333), + [anon_sym_ATimplementation] = ACTIONS(1331), + [anon_sym_NS_ENUM] = ACTIONS(1333), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1333), + [anon_sym_NS_OPTIONS] = ACTIONS(1333), + [anon_sym_typeof] = ACTIONS(1333), + [anon_sym___typeof] = ACTIONS(1333), + [anon_sym___typeof__] = ACTIONS(1333), + [sym_self] = ACTIONS(1333), + [sym_super] = ACTIONS(1333), + [sym_nil] = ACTIONS(1333), + [sym_id] = ACTIONS(1333), + [sym_instancetype] = ACTIONS(1333), + [sym_Class] = ACTIONS(1333), + [sym_SEL] = ACTIONS(1333), + [sym_IMP] = ACTIONS(1333), + [sym_BOOL] = ACTIONS(1333), + [sym_auto] = ACTIONS(1333), + [anon_sym_ATautoreleasepool] = ACTIONS(1331), + [anon_sym_ATsynchronized] = ACTIONS(1331), + [anon_sym_ATtry] = ACTIONS(1331), + [anon_sym_ATcatch] = ACTIONS(1331), + [anon_sym_ATfinally] = ACTIONS(1331), + [anon_sym_ATthrow] = ACTIONS(1331), + [anon_sym_ATselector] = ACTIONS(1331), + [anon_sym_ATencode] = ACTIONS(1331), + [anon_sym_AT] = ACTIONS(1333), + [sym_YES] = ACTIONS(1333), + [sym_NO] = ACTIONS(1333), + [anon_sym___builtin_available] = ACTIONS(1333), + [anon_sym_ATavailable] = ACTIONS(1331), + [anon_sym_va_arg] = ACTIONS(1333), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [433] = { + [sym_identifier] = ACTIONS(1301), + [aux_sym_preproc_include_token1] = ACTIONS(1299), + [aux_sym_preproc_def_token1] = ACTIONS(1299), + [aux_sym_preproc_if_token1] = ACTIONS(1301), + [aux_sym_preproc_if_token2] = ACTIONS(1301), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1301), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1301), + [anon_sym_LPAREN2] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_CARET] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1299), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_typedef] = ACTIONS(1301), + [anon_sym_extern] = ACTIONS(1301), + [anon_sym___attribute] = ACTIONS(1301), + [anon_sym___attribute__] = ACTIONS(1301), + [anon_sym___declspec] = ACTIONS(1301), + [anon_sym___cdecl] = ACTIONS(1301), + [anon_sym___clrcall] = ACTIONS(1301), + [anon_sym___stdcall] = ACTIONS(1301), + [anon_sym___fastcall] = ACTIONS(1301), + [anon_sym___thiscall] = ACTIONS(1301), + [anon_sym___vectorcall] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_auto] = ACTIONS(1301), + [anon_sym_register] = ACTIONS(1301), + [anon_sym_inline] = ACTIONS(1301), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1301), + [anon_sym_const] = ACTIONS(1301), + [anon_sym_volatile] = ACTIONS(1301), + [anon_sym_restrict] = ACTIONS(1301), + [anon_sym__Atomic] = ACTIONS(1301), + [anon_sym_in] = ACTIONS(1301), + [anon_sym_out] = ACTIONS(1301), + [anon_sym_inout] = ACTIONS(1301), + [anon_sym_bycopy] = ACTIONS(1301), + [anon_sym_byref] = ACTIONS(1301), + [anon_sym_oneway] = ACTIONS(1301), + [anon_sym__Nullable] = ACTIONS(1301), + [anon_sym__Nonnull] = ACTIONS(1301), + [anon_sym__Nullable_result] = ACTIONS(1301), + [anon_sym__Null_unspecified] = ACTIONS(1301), + [anon_sym___autoreleasing] = ACTIONS(1301), + [anon_sym___nullable] = ACTIONS(1301), + [anon_sym___nonnull] = ACTIONS(1301), + [anon_sym___strong] = ACTIONS(1301), + [anon_sym___weak] = ACTIONS(1301), + [anon_sym___bridge] = ACTIONS(1301), + [anon_sym___bridge_transfer] = ACTIONS(1301), + [anon_sym___bridge_retained] = ACTIONS(1301), + [anon_sym___unsafe_unretained] = ACTIONS(1301), + [anon_sym___block] = ACTIONS(1301), + [anon_sym___kindof] = ACTIONS(1301), + [anon_sym___unused] = ACTIONS(1301), + [anon_sym__Complex] = ACTIONS(1301), + [anon_sym___complex] = ACTIONS(1301), + [anon_sym_IBOutlet] = ACTIONS(1301), + [anon_sym_IBInspectable] = ACTIONS(1301), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1301), + [anon_sym_signed] = ACTIONS(1301), + [anon_sym_unsigned] = ACTIONS(1301), + [anon_sym_long] = ACTIONS(1301), + [anon_sym_short] = ACTIONS(1301), + [sym_primitive_type] = ACTIONS(1301), + [anon_sym_enum] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(1301), + [anon_sym_union] = ACTIONS(1301), + [anon_sym_if] = ACTIONS(1301), + [anon_sym_else] = ACTIONS(1301), + [anon_sym_switch] = ACTIONS(1301), + [anon_sym_case] = ACTIONS(1301), + [anon_sym_default] = ACTIONS(1301), + [anon_sym_while] = ACTIONS(1301), + [anon_sym_do] = ACTIONS(1301), + [anon_sym_for] = ACTIONS(1301), + [anon_sym_return] = ACTIONS(1301), + [anon_sym_break] = ACTIONS(1301), + [anon_sym_continue] = ACTIONS(1301), + [anon_sym_goto] = ACTIONS(1301), + [anon_sym_DASH_DASH] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_sizeof] = ACTIONS(1301), + [sym_number_literal] = ACTIONS(1299), + [anon_sym_L_SQUOTE] = ACTIONS(1299), + [anon_sym_u_SQUOTE] = ACTIONS(1299), + [anon_sym_U_SQUOTE] = ACTIONS(1299), + [anon_sym_u8_SQUOTE] = ACTIONS(1299), + [anon_sym_SQUOTE] = ACTIONS(1299), + [anon_sym_L_DQUOTE] = ACTIONS(1299), + [anon_sym_u_DQUOTE] = ACTIONS(1299), + [anon_sym_U_DQUOTE] = ACTIONS(1299), + [anon_sym_u8_DQUOTE] = ACTIONS(1299), + [anon_sym_DQUOTE] = ACTIONS(1299), + [sym_true] = ACTIONS(1301), + [sym_false] = ACTIONS(1301), + [sym_null] = ACTIONS(1301), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1299), + [anon_sym_ATimport] = ACTIONS(1299), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1301), + [anon_sym_ATcompatibility_alias] = ACTIONS(1299), + [anon_sym_ATprotocol] = ACTIONS(1299), + [anon_sym_ATclass] = ACTIONS(1299), + [anon_sym_ATinterface] = ACTIONS(1299), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1301), + [sym_method_attribute_specifier] = ACTIONS(1301), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1301), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1301), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1301), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1301), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1301), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1301), + [anon_sym_NS_AVAILABLE] = ACTIONS(1301), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1301), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1301), + [anon_sym_API_AVAILABLE] = ACTIONS(1301), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1301), + [anon_sym_API_DEPRECATED] = ACTIONS(1301), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1301), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1301), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1301), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1301), + [anon_sym___deprecated_msg] = ACTIONS(1301), + [anon_sym___deprecated_enum_msg] = ACTIONS(1301), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1301), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1301), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1301), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1301), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1301), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1301), + [anon_sym_ATimplementation] = ACTIONS(1299), + [anon_sym_NS_ENUM] = ACTIONS(1301), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1301), + [anon_sym_NS_OPTIONS] = ACTIONS(1301), + [anon_sym_typeof] = ACTIONS(1301), + [anon_sym___typeof] = ACTIONS(1301), + [anon_sym___typeof__] = ACTIONS(1301), + [sym_self] = ACTIONS(1301), + [sym_super] = ACTIONS(1301), + [sym_nil] = ACTIONS(1301), + [sym_id] = ACTIONS(1301), + [sym_instancetype] = ACTIONS(1301), + [sym_Class] = ACTIONS(1301), + [sym_SEL] = ACTIONS(1301), + [sym_IMP] = ACTIONS(1301), + [sym_BOOL] = ACTIONS(1301), + [sym_auto] = ACTIONS(1301), + [anon_sym_ATautoreleasepool] = ACTIONS(1299), + [anon_sym_ATsynchronized] = ACTIONS(1299), + [anon_sym_ATtry] = ACTIONS(1299), + [anon_sym_ATcatch] = ACTIONS(1299), + [anon_sym_ATfinally] = ACTIONS(1299), + [anon_sym_ATthrow] = ACTIONS(1299), + [anon_sym_ATselector] = ACTIONS(1299), + [anon_sym_ATencode] = ACTIONS(1299), + [anon_sym_AT] = ACTIONS(1301), + [sym_YES] = ACTIONS(1301), + [sym_NO] = ACTIONS(1301), + [anon_sym___builtin_available] = ACTIONS(1301), + [anon_sym_ATavailable] = ACTIONS(1299), + [anon_sym_va_arg] = ACTIONS(1301), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [434] = { + [sym_identifier] = ACTIONS(1305), + [aux_sym_preproc_include_token1] = ACTIONS(1303), + [aux_sym_preproc_def_token1] = ACTIONS(1303), + [aux_sym_preproc_if_token1] = ACTIONS(1305), + [aux_sym_preproc_if_token2] = ACTIONS(1305), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1305), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1305), + [anon_sym_LPAREN2] = ACTIONS(1303), + [anon_sym_BANG] = ACTIONS(1303), + [anon_sym_TILDE] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(1305), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_CARET] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1303), + [anon_sym_typedef] = ACTIONS(1305), + [anon_sym_extern] = ACTIONS(1305), + [anon_sym___attribute] = ACTIONS(1305), + [anon_sym___attribute__] = ACTIONS(1305), + [anon_sym___declspec] = ACTIONS(1305), + [anon_sym___cdecl] = ACTIONS(1305), + [anon_sym___clrcall] = ACTIONS(1305), + [anon_sym___stdcall] = ACTIONS(1305), + [anon_sym___fastcall] = ACTIONS(1305), + [anon_sym___thiscall] = ACTIONS(1305), + [anon_sym___vectorcall] = ACTIONS(1305), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1303), + [anon_sym_static] = ACTIONS(1305), + [anon_sym_auto] = ACTIONS(1305), + [anon_sym_register] = ACTIONS(1305), + [anon_sym_inline] = ACTIONS(1305), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1305), + [anon_sym_const] = ACTIONS(1305), + [anon_sym_volatile] = ACTIONS(1305), + [anon_sym_restrict] = ACTIONS(1305), + [anon_sym__Atomic] = ACTIONS(1305), + [anon_sym_in] = ACTIONS(1305), + [anon_sym_out] = ACTIONS(1305), + [anon_sym_inout] = ACTIONS(1305), + [anon_sym_bycopy] = ACTIONS(1305), + [anon_sym_byref] = ACTIONS(1305), + [anon_sym_oneway] = ACTIONS(1305), + [anon_sym__Nullable] = ACTIONS(1305), + [anon_sym__Nonnull] = ACTIONS(1305), + [anon_sym__Nullable_result] = ACTIONS(1305), + [anon_sym__Null_unspecified] = ACTIONS(1305), + [anon_sym___autoreleasing] = ACTIONS(1305), + [anon_sym___nullable] = ACTIONS(1305), + [anon_sym___nonnull] = ACTIONS(1305), + [anon_sym___strong] = ACTIONS(1305), + [anon_sym___weak] = ACTIONS(1305), + [anon_sym___bridge] = ACTIONS(1305), + [anon_sym___bridge_transfer] = ACTIONS(1305), + [anon_sym___bridge_retained] = ACTIONS(1305), + [anon_sym___unsafe_unretained] = ACTIONS(1305), + [anon_sym___block] = ACTIONS(1305), + [anon_sym___kindof] = ACTIONS(1305), + [anon_sym___unused] = ACTIONS(1305), + [anon_sym__Complex] = ACTIONS(1305), + [anon_sym___complex] = ACTIONS(1305), + [anon_sym_IBOutlet] = ACTIONS(1305), + [anon_sym_IBInspectable] = ACTIONS(1305), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1305), + [anon_sym_signed] = ACTIONS(1305), + [anon_sym_unsigned] = ACTIONS(1305), + [anon_sym_long] = ACTIONS(1305), + [anon_sym_short] = ACTIONS(1305), + [sym_primitive_type] = ACTIONS(1305), + [anon_sym_enum] = ACTIONS(1305), + [anon_sym_struct] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1305), + [anon_sym_if] = ACTIONS(1305), + [anon_sym_else] = ACTIONS(1305), + [anon_sym_switch] = ACTIONS(1305), + [anon_sym_case] = ACTIONS(1305), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_while] = ACTIONS(1305), + [anon_sym_do] = ACTIONS(1305), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_return] = ACTIONS(1305), + [anon_sym_break] = ACTIONS(1305), + [anon_sym_continue] = ACTIONS(1305), + [anon_sym_goto] = ACTIONS(1305), + [anon_sym_DASH_DASH] = ACTIONS(1303), + [anon_sym_PLUS_PLUS] = ACTIONS(1303), + [anon_sym_sizeof] = ACTIONS(1305), + [sym_number_literal] = ACTIONS(1303), + [anon_sym_L_SQUOTE] = ACTIONS(1303), + [anon_sym_u_SQUOTE] = ACTIONS(1303), + [anon_sym_U_SQUOTE] = ACTIONS(1303), + [anon_sym_u8_SQUOTE] = ACTIONS(1303), + [anon_sym_SQUOTE] = ACTIONS(1303), + [anon_sym_L_DQUOTE] = ACTIONS(1303), + [anon_sym_u_DQUOTE] = ACTIONS(1303), + [anon_sym_U_DQUOTE] = ACTIONS(1303), + [anon_sym_u8_DQUOTE] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1303), + [sym_true] = ACTIONS(1305), + [sym_false] = ACTIONS(1305), + [sym_null] = ACTIONS(1305), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1303), + [anon_sym_ATimport] = ACTIONS(1303), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1305), + [anon_sym_ATcompatibility_alias] = ACTIONS(1303), + [anon_sym_ATprotocol] = ACTIONS(1303), + [anon_sym_ATclass] = ACTIONS(1303), + [anon_sym_ATinterface] = ACTIONS(1303), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1305), + [sym_method_attribute_specifier] = ACTIONS(1305), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1305), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1305), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1305), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1305), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1305), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1305), + [anon_sym_NS_AVAILABLE] = ACTIONS(1305), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1305), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1305), + [anon_sym_API_AVAILABLE] = ACTIONS(1305), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1305), + [anon_sym_API_DEPRECATED] = ACTIONS(1305), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1305), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1305), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1305), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1305), + [anon_sym___deprecated_msg] = ACTIONS(1305), + [anon_sym___deprecated_enum_msg] = ACTIONS(1305), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1305), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1305), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1305), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1305), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1305), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1305), + [anon_sym_ATimplementation] = ACTIONS(1303), + [anon_sym_NS_ENUM] = ACTIONS(1305), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1305), + [anon_sym_NS_OPTIONS] = ACTIONS(1305), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym___typeof] = ACTIONS(1305), + [anon_sym___typeof__] = ACTIONS(1305), + [sym_self] = ACTIONS(1305), + [sym_super] = ACTIONS(1305), + [sym_nil] = ACTIONS(1305), + [sym_id] = ACTIONS(1305), + [sym_instancetype] = ACTIONS(1305), + [sym_Class] = ACTIONS(1305), + [sym_SEL] = ACTIONS(1305), + [sym_IMP] = ACTIONS(1305), + [sym_BOOL] = ACTIONS(1305), + [sym_auto] = ACTIONS(1305), + [anon_sym_ATautoreleasepool] = ACTIONS(1303), + [anon_sym_ATsynchronized] = ACTIONS(1303), + [anon_sym_ATtry] = ACTIONS(1303), + [anon_sym_ATcatch] = ACTIONS(1303), + [anon_sym_ATfinally] = ACTIONS(1303), + [anon_sym_ATthrow] = ACTIONS(1303), + [anon_sym_ATselector] = ACTIONS(1303), + [anon_sym_ATencode] = ACTIONS(1303), + [anon_sym_AT] = ACTIONS(1305), + [sym_YES] = ACTIONS(1305), + [sym_NO] = ACTIONS(1305), + [anon_sym___builtin_available] = ACTIONS(1305), + [anon_sym_ATavailable] = ACTIONS(1303), + [anon_sym_va_arg] = ACTIONS(1305), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [435] = { + [sym_identifier] = ACTIONS(1309), + [aux_sym_preproc_include_token1] = ACTIONS(1307), + [aux_sym_preproc_def_token1] = ACTIONS(1307), + [aux_sym_preproc_if_token1] = ACTIONS(1309), + [aux_sym_preproc_if_token2] = ACTIONS(1309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1309), + [anon_sym_LPAREN2] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1307), + [anon_sym_TILDE] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_typedef] = ACTIONS(1309), + [anon_sym_extern] = ACTIONS(1309), + [anon_sym___attribute] = ACTIONS(1309), + [anon_sym___attribute__] = ACTIONS(1309), + [anon_sym___declspec] = ACTIONS(1309), + [anon_sym___cdecl] = ACTIONS(1309), + [anon_sym___clrcall] = ACTIONS(1309), + [anon_sym___stdcall] = ACTIONS(1309), + [anon_sym___fastcall] = ACTIONS(1309), + [anon_sym___thiscall] = ACTIONS(1309), + [anon_sym___vectorcall] = ACTIONS(1309), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_static] = ACTIONS(1309), + [anon_sym_auto] = ACTIONS(1309), + [anon_sym_register] = ACTIONS(1309), + [anon_sym_inline] = ACTIONS(1309), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1309), + [anon_sym_const] = ACTIONS(1309), + [anon_sym_volatile] = ACTIONS(1309), + [anon_sym_restrict] = ACTIONS(1309), + [anon_sym__Atomic] = ACTIONS(1309), + [anon_sym_in] = ACTIONS(1309), + [anon_sym_out] = ACTIONS(1309), + [anon_sym_inout] = ACTIONS(1309), + [anon_sym_bycopy] = ACTIONS(1309), + [anon_sym_byref] = ACTIONS(1309), + [anon_sym_oneway] = ACTIONS(1309), + [anon_sym__Nullable] = ACTIONS(1309), + [anon_sym__Nonnull] = ACTIONS(1309), + [anon_sym__Nullable_result] = ACTIONS(1309), + [anon_sym__Null_unspecified] = ACTIONS(1309), + [anon_sym___autoreleasing] = ACTIONS(1309), + [anon_sym___nullable] = ACTIONS(1309), + [anon_sym___nonnull] = ACTIONS(1309), + [anon_sym___strong] = ACTIONS(1309), + [anon_sym___weak] = ACTIONS(1309), + [anon_sym___bridge] = ACTIONS(1309), + [anon_sym___bridge_transfer] = ACTIONS(1309), + [anon_sym___bridge_retained] = ACTIONS(1309), + [anon_sym___unsafe_unretained] = ACTIONS(1309), + [anon_sym___block] = ACTIONS(1309), + [anon_sym___kindof] = ACTIONS(1309), + [anon_sym___unused] = ACTIONS(1309), + [anon_sym__Complex] = ACTIONS(1309), + [anon_sym___complex] = ACTIONS(1309), + [anon_sym_IBOutlet] = ACTIONS(1309), + [anon_sym_IBInspectable] = ACTIONS(1309), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(1309), + [anon_sym_unsigned] = ACTIONS(1309), + [anon_sym_long] = ACTIONS(1309), + [anon_sym_short] = ACTIONS(1309), + [sym_primitive_type] = ACTIONS(1309), + [anon_sym_enum] = ACTIONS(1309), + [anon_sym_struct] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1309), + [anon_sym_if] = ACTIONS(1309), + [anon_sym_else] = ACTIONS(1309), + [anon_sym_switch] = ACTIONS(1309), + [anon_sym_case] = ACTIONS(1309), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_while] = ACTIONS(1309), + [anon_sym_do] = ACTIONS(1309), + [anon_sym_for] = ACTIONS(1309), + [anon_sym_return] = ACTIONS(1309), + [anon_sym_break] = ACTIONS(1309), + [anon_sym_continue] = ACTIONS(1309), + [anon_sym_goto] = ACTIONS(1309), + [anon_sym_DASH_DASH] = ACTIONS(1307), + [anon_sym_PLUS_PLUS] = ACTIONS(1307), + [anon_sym_sizeof] = ACTIONS(1309), + [sym_number_literal] = ACTIONS(1307), + [anon_sym_L_SQUOTE] = ACTIONS(1307), + [anon_sym_u_SQUOTE] = ACTIONS(1307), + [anon_sym_U_SQUOTE] = ACTIONS(1307), + [anon_sym_u8_SQUOTE] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1307), + [anon_sym_L_DQUOTE] = ACTIONS(1307), + [anon_sym_u_DQUOTE] = ACTIONS(1307), + [anon_sym_U_DQUOTE] = ACTIONS(1307), + [anon_sym_u8_DQUOTE] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym_true] = ACTIONS(1309), + [sym_false] = ACTIONS(1309), + [sym_null] = ACTIONS(1309), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1307), + [anon_sym_ATimport] = ACTIONS(1307), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1309), + [anon_sym_ATcompatibility_alias] = ACTIONS(1307), + [anon_sym_ATprotocol] = ACTIONS(1307), + [anon_sym_ATclass] = ACTIONS(1307), + [anon_sym_ATinterface] = ACTIONS(1307), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1309), + [sym_method_attribute_specifier] = ACTIONS(1309), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1309), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1309), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1309), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1309), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1309), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1309), + [anon_sym_NS_AVAILABLE] = ACTIONS(1309), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1309), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1309), + [anon_sym_API_AVAILABLE] = ACTIONS(1309), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1309), + [anon_sym_API_DEPRECATED] = ACTIONS(1309), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1309), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1309), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1309), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1309), + [anon_sym___deprecated_msg] = ACTIONS(1309), + [anon_sym___deprecated_enum_msg] = ACTIONS(1309), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1309), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1309), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1309), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1309), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1309), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1309), + [anon_sym_ATimplementation] = ACTIONS(1307), + [anon_sym_NS_ENUM] = ACTIONS(1309), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1309), + [anon_sym_NS_OPTIONS] = ACTIONS(1309), + [anon_sym_typeof] = ACTIONS(1309), + [anon_sym___typeof] = ACTIONS(1309), + [anon_sym___typeof__] = ACTIONS(1309), + [sym_self] = ACTIONS(1309), + [sym_super] = ACTIONS(1309), + [sym_nil] = ACTIONS(1309), + [sym_id] = ACTIONS(1309), + [sym_instancetype] = ACTIONS(1309), + [sym_Class] = ACTIONS(1309), + [sym_SEL] = ACTIONS(1309), + [sym_IMP] = ACTIONS(1309), + [sym_BOOL] = ACTIONS(1309), + [sym_auto] = ACTIONS(1309), + [anon_sym_ATautoreleasepool] = ACTIONS(1307), + [anon_sym_ATsynchronized] = ACTIONS(1307), + [anon_sym_ATtry] = ACTIONS(1307), + [anon_sym_ATcatch] = ACTIONS(1307), + [anon_sym_ATfinally] = ACTIONS(1307), + [anon_sym_ATthrow] = ACTIONS(1307), + [anon_sym_ATselector] = ACTIONS(1307), + [anon_sym_ATencode] = ACTIONS(1307), + [anon_sym_AT] = ACTIONS(1309), + [sym_YES] = ACTIONS(1309), + [sym_NO] = ACTIONS(1309), + [anon_sym___builtin_available] = ACTIONS(1309), + [anon_sym_ATavailable] = ACTIONS(1307), + [anon_sym_va_arg] = ACTIONS(1309), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [436] = { [sym_identifier] = ACTIONS(1465), + [aux_sym_preproc_include_token1] = ACTIONS(1467), [aux_sym_preproc_def_token1] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), + [aux_sym_preproc_if_token1] = ACTIONS(1465), + [aux_sym_preproc_if_token2] = ACTIONS(1465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1465), + [anon_sym_LPAREN2] = ACTIONS(1467), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1467), [anon_sym_typedef] = ACTIONS(1465), [anon_sym_extern] = ACTIONS(1465), [anon_sym___attribute] = ACTIONS(1465), @@ -477402,6 +102455,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1465), [anon_sym___thiscall] = ACTIONS(1465), [anon_sym___vectorcall] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1467), [anon_sym_static] = ACTIONS(1465), [anon_sym_auto] = ACTIONS(1465), [anon_sym_register] = ACTIONS(1465), @@ -477444,17 +102499,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1465), [sym_primitive_type] = ACTIONS(1465), [anon_sym_enum] = ACTIONS(1465), - [anon_sym_NS_ENUM] = ACTIONS(1465), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1465), - [anon_sym_NS_OPTIONS] = ACTIONS(1465), [anon_sym_struct] = ACTIONS(1465), [anon_sym_union] = ACTIONS(1465), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_else] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_case] = ACTIONS(1465), + [anon_sym_default] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_goto] = ACTIONS(1465), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_sizeof] = ACTIONS(1465), + [sym_number_literal] = ACTIONS(1467), + [anon_sym_L_SQUOTE] = ACTIONS(1467), + [anon_sym_u_SQUOTE] = ACTIONS(1467), + [anon_sym_U_SQUOTE] = ACTIONS(1467), + [anon_sym_u8_SQUOTE] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_L_DQUOTE] = ACTIONS(1467), + [anon_sym_u_DQUOTE] = ACTIONS(1467), + [anon_sym_U_DQUOTE] = ACTIONS(1467), + [anon_sym_u8_DQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [sym_true] = ACTIONS(1465), + [sym_false] = ACTIONS(1465), + [sym_null] = ACTIONS(1465), [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1467), + [anon_sym_ATimport] = ACTIONS(1467), [sym__ns_assume_nonnull_declaration] = ACTIONS(1465), - [anon_sym_ATend] = ACTIONS(1467), - [sym_optional] = ACTIONS(1467), - [sym_required] = ACTIONS(1467), - [anon_sym_ATproperty] = ACTIONS(1467), + [anon_sym_ATcompatibility_alias] = ACTIONS(1467), + [anon_sym_ATprotocol] = ACTIONS(1467), + [anon_sym_ATclass] = ACTIONS(1467), + [anon_sym_ATinterface] = ACTIONS(1467), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1465), [sym_method_attribute_specifier] = ACTIONS(1465), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1465), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1465), @@ -477480,11 +102564,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1465), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1465), [anon_sym_NS_SWIFT_NAME] = ACTIONS(1465), - [anon_sym_ATsynthesize] = ACTIONS(1467), - [anon_sym_ATdynamic] = ACTIONS(1467), + [anon_sym_ATimplementation] = ACTIONS(1467), + [anon_sym_NS_ENUM] = ACTIONS(1465), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1465), + [anon_sym_NS_OPTIONS] = ACTIONS(1465), [anon_sym_typeof] = ACTIONS(1465), [anon_sym___typeof] = ACTIONS(1465), [anon_sym___typeof__] = ACTIONS(1465), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1465), + [sym_nil] = ACTIONS(1465), [sym_id] = ACTIONS(1465), [sym_instancetype] = ACTIONS(1465), [sym_Class] = ACTIONS(1465), @@ -477492,119 +102581,70349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IMP] = ACTIONS(1465), [sym_BOOL] = ACTIONS(1465), [sym_auto] = ACTIONS(1465), + [anon_sym_ATautoreleasepool] = ACTIONS(1467), + [anon_sym_ATsynchronized] = ACTIONS(1467), + [anon_sym_ATtry] = ACTIONS(1467), + [anon_sym_ATcatch] = ACTIONS(1467), + [anon_sym_ATfinally] = ACTIONS(1467), + [anon_sym_ATthrow] = ACTIONS(1467), + [anon_sym_ATselector] = ACTIONS(1467), + [anon_sym_ATencode] = ACTIONS(1467), + [anon_sym_AT] = ACTIONS(1465), + [sym_YES] = ACTIONS(1465), + [sym_NO] = ACTIONS(1465), + [anon_sym___builtin_available] = ACTIONS(1465), + [anon_sym_ATavailable] = ACTIONS(1467), + [anon_sym_va_arg] = ACTIONS(1465), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2878] = { - [sym_identifier] = ACTIONS(1447), - [aux_sym_preproc_def_token1] = ACTIONS(1445), + [437] = { + [sym_identifier] = ACTIONS(1457), + [aux_sym_preproc_include_token1] = ACTIONS(1459), + [aux_sym_preproc_def_token1] = ACTIONS(1459), + [aux_sym_preproc_if_token1] = ACTIONS(1457), + [aux_sym_preproc_if_token2] = ACTIONS(1457), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1457), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1457), + [anon_sym_LPAREN2] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_typedef] = ACTIONS(1457), + [anon_sym_extern] = ACTIONS(1457), + [anon_sym___attribute] = ACTIONS(1457), + [anon_sym___attribute__] = ACTIONS(1457), + [anon_sym___declspec] = ACTIONS(1457), + [anon_sym___cdecl] = ACTIONS(1457), + [anon_sym___clrcall] = ACTIONS(1457), + [anon_sym___stdcall] = ACTIONS(1457), + [anon_sym___fastcall] = ACTIONS(1457), + [anon_sym___thiscall] = ACTIONS(1457), + [anon_sym___vectorcall] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1459), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_auto] = ACTIONS(1457), + [anon_sym_register] = ACTIONS(1457), + [anon_sym_inline] = ACTIONS(1457), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_volatile] = ACTIONS(1457), + [anon_sym_restrict] = ACTIONS(1457), + [anon_sym__Atomic] = ACTIONS(1457), + [anon_sym_in] = ACTIONS(1457), + [anon_sym_out] = ACTIONS(1457), + [anon_sym_inout] = ACTIONS(1457), + [anon_sym_bycopy] = ACTIONS(1457), + [anon_sym_byref] = ACTIONS(1457), + [anon_sym_oneway] = ACTIONS(1457), + [anon_sym__Nullable] = ACTIONS(1457), + [anon_sym__Nonnull] = ACTIONS(1457), + [anon_sym__Nullable_result] = ACTIONS(1457), + [anon_sym__Null_unspecified] = ACTIONS(1457), + [anon_sym___autoreleasing] = ACTIONS(1457), + [anon_sym___nullable] = ACTIONS(1457), + [anon_sym___nonnull] = ACTIONS(1457), + [anon_sym___strong] = ACTIONS(1457), + [anon_sym___weak] = ACTIONS(1457), + [anon_sym___bridge] = ACTIONS(1457), + [anon_sym___bridge_transfer] = ACTIONS(1457), + [anon_sym___bridge_retained] = ACTIONS(1457), + [anon_sym___unsafe_unretained] = ACTIONS(1457), + [anon_sym___block] = ACTIONS(1457), + [anon_sym___kindof] = ACTIONS(1457), + [anon_sym___unused] = ACTIONS(1457), + [anon_sym__Complex] = ACTIONS(1457), + [anon_sym___complex] = ACTIONS(1457), + [anon_sym_IBOutlet] = ACTIONS(1457), + [anon_sym_IBInspectable] = ACTIONS(1457), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1457), + [anon_sym_signed] = ACTIONS(1457), + [anon_sym_unsigned] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [sym_primitive_type] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1457), + [anon_sym_struct] = ACTIONS(1457), + [anon_sym_union] = ACTIONS(1457), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_else] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_case] = ACTIONS(1457), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_goto] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_sizeof] = ACTIONS(1457), + [sym_number_literal] = ACTIONS(1459), + [anon_sym_L_SQUOTE] = ACTIONS(1459), + [anon_sym_u_SQUOTE] = ACTIONS(1459), + [anon_sym_U_SQUOTE] = ACTIONS(1459), + [anon_sym_u8_SQUOTE] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_L_DQUOTE] = ACTIONS(1459), + [anon_sym_u_DQUOTE] = ACTIONS(1459), + [anon_sym_U_DQUOTE] = ACTIONS(1459), + [anon_sym_u8_DQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [sym_true] = ACTIONS(1457), + [sym_false] = ACTIONS(1457), + [sym_null] = ACTIONS(1457), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1459), + [anon_sym_ATimport] = ACTIONS(1459), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1457), + [anon_sym_ATcompatibility_alias] = ACTIONS(1459), + [anon_sym_ATprotocol] = ACTIONS(1459), + [anon_sym_ATclass] = ACTIONS(1459), + [anon_sym_ATinterface] = ACTIONS(1459), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1457), + [sym_method_attribute_specifier] = ACTIONS(1457), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1457), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1457), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1457), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1457), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1457), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1457), + [anon_sym_NS_AVAILABLE] = ACTIONS(1457), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1457), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1457), + [anon_sym_API_AVAILABLE] = ACTIONS(1457), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1457), + [anon_sym_API_DEPRECATED] = ACTIONS(1457), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1457), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1457), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1457), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1457), + [anon_sym___deprecated_msg] = ACTIONS(1457), + [anon_sym___deprecated_enum_msg] = ACTIONS(1457), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1457), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1457), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1457), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1457), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1457), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1457), + [anon_sym_ATimplementation] = ACTIONS(1459), + [anon_sym_NS_ENUM] = ACTIONS(1457), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1457), + [anon_sym_NS_OPTIONS] = ACTIONS(1457), + [anon_sym_typeof] = ACTIONS(1457), + [anon_sym___typeof] = ACTIONS(1457), + [anon_sym___typeof__] = ACTIONS(1457), + [sym_self] = ACTIONS(1457), + [sym_super] = ACTIONS(1457), + [sym_nil] = ACTIONS(1457), + [sym_id] = ACTIONS(1457), + [sym_instancetype] = ACTIONS(1457), + [sym_Class] = ACTIONS(1457), + [sym_SEL] = ACTIONS(1457), + [sym_IMP] = ACTIONS(1457), + [sym_BOOL] = ACTIONS(1457), + [sym_auto] = ACTIONS(1457), + [anon_sym_ATautoreleasepool] = ACTIONS(1459), + [anon_sym_ATsynchronized] = ACTIONS(1459), + [anon_sym_ATtry] = ACTIONS(1459), + [anon_sym_ATcatch] = ACTIONS(1459), + [anon_sym_ATfinally] = ACTIONS(1459), + [anon_sym_ATthrow] = ACTIONS(1459), + [anon_sym_ATselector] = ACTIONS(1459), + [anon_sym_ATencode] = ACTIONS(1459), + [anon_sym_AT] = ACTIONS(1457), + [sym_YES] = ACTIONS(1457), + [sym_NO] = ACTIONS(1457), + [anon_sym___builtin_available] = ACTIONS(1457), + [anon_sym_ATavailable] = ACTIONS(1459), + [anon_sym_va_arg] = ACTIONS(1457), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [438] = { + [sym_identifier] = ACTIONS(1445), + [aux_sym_preproc_include_token1] = ACTIONS(1447), + [aux_sym_preproc_def_token1] = ACTIONS(1447), + [aux_sym_preproc_if_token1] = ACTIONS(1445), + [aux_sym_preproc_if_token2] = ACTIONS(1445), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1445), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1445), + [anon_sym_LPAREN2] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), [anon_sym_DASH] = ACTIONS(1445), [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_typedef] = ACTIONS(1447), - [anon_sym_extern] = ACTIONS(1447), - [anon_sym___attribute] = ACTIONS(1447), - [anon_sym___attribute__] = ACTIONS(1447), - [anon_sym___declspec] = ACTIONS(1447), - [anon_sym___cdecl] = ACTIONS(1447), - [anon_sym___clrcall] = ACTIONS(1447), - [anon_sym___stdcall] = ACTIONS(1447), - [anon_sym___fastcall] = ACTIONS(1447), - [anon_sym___thiscall] = ACTIONS(1447), - [anon_sym___vectorcall] = ACTIONS(1447), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_auto] = ACTIONS(1447), - [anon_sym_register] = ACTIONS(1447), - [anon_sym_inline] = ACTIONS(1447), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_volatile] = ACTIONS(1447), - [anon_sym_restrict] = ACTIONS(1447), - [anon_sym__Atomic] = ACTIONS(1447), - [anon_sym_in] = ACTIONS(1447), - [anon_sym_out] = ACTIONS(1447), - [anon_sym_inout] = ACTIONS(1447), - [anon_sym_bycopy] = ACTIONS(1447), - [anon_sym_byref] = ACTIONS(1447), - [anon_sym_oneway] = ACTIONS(1447), - [anon_sym__Nullable] = ACTIONS(1447), - [anon_sym__Nonnull] = ACTIONS(1447), - [anon_sym__Nullable_result] = ACTIONS(1447), - [anon_sym__Null_unspecified] = ACTIONS(1447), - [anon_sym___autoreleasing] = ACTIONS(1447), - [anon_sym___nullable] = ACTIONS(1447), - [anon_sym___nonnull] = ACTIONS(1447), - [anon_sym___strong] = ACTIONS(1447), - [anon_sym___weak] = ACTIONS(1447), - [anon_sym___bridge] = ACTIONS(1447), - [anon_sym___bridge_transfer] = ACTIONS(1447), - [anon_sym___bridge_retained] = ACTIONS(1447), - [anon_sym___unsafe_unretained] = ACTIONS(1447), - [anon_sym___block] = ACTIONS(1447), - [anon_sym___kindof] = ACTIONS(1447), - [anon_sym___unused] = ACTIONS(1447), - [anon_sym__Complex] = ACTIONS(1447), - [anon_sym___complex] = ACTIONS(1447), - [anon_sym_IBOutlet] = ACTIONS(1447), - [anon_sym_IBInspectable] = ACTIONS(1447), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1447), - [anon_sym_signed] = ACTIONS(1447), - [anon_sym_unsigned] = ACTIONS(1447), - [anon_sym_long] = ACTIONS(1447), - [anon_sym_short] = ACTIONS(1447), - [sym_primitive_type] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1447), - [anon_sym_NS_ENUM] = ACTIONS(1447), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1447), - [anon_sym_NS_OPTIONS] = ACTIONS(1447), - [anon_sym_struct] = ACTIONS(1447), - [anon_sym_union] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_typedef] = ACTIONS(1445), + [anon_sym_extern] = ACTIONS(1445), + [anon_sym___attribute] = ACTIONS(1445), + [anon_sym___attribute__] = ACTIONS(1445), + [anon_sym___declspec] = ACTIONS(1445), + [anon_sym___cdecl] = ACTIONS(1445), + [anon_sym___clrcall] = ACTIONS(1445), + [anon_sym___stdcall] = ACTIONS(1445), + [anon_sym___fastcall] = ACTIONS(1445), + [anon_sym___thiscall] = ACTIONS(1445), + [anon_sym___vectorcall] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1447), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_auto] = ACTIONS(1445), + [anon_sym_register] = ACTIONS(1445), + [anon_sym_inline] = ACTIONS(1445), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_volatile] = ACTIONS(1445), + [anon_sym_restrict] = ACTIONS(1445), + [anon_sym__Atomic] = ACTIONS(1445), + [anon_sym_in] = ACTIONS(1445), + [anon_sym_out] = ACTIONS(1445), + [anon_sym_inout] = ACTIONS(1445), + [anon_sym_bycopy] = ACTIONS(1445), + [anon_sym_byref] = ACTIONS(1445), + [anon_sym_oneway] = ACTIONS(1445), + [anon_sym__Nullable] = ACTIONS(1445), + [anon_sym__Nonnull] = ACTIONS(1445), + [anon_sym__Nullable_result] = ACTIONS(1445), + [anon_sym__Null_unspecified] = ACTIONS(1445), + [anon_sym___autoreleasing] = ACTIONS(1445), + [anon_sym___nullable] = ACTIONS(1445), + [anon_sym___nonnull] = ACTIONS(1445), + [anon_sym___strong] = ACTIONS(1445), + [anon_sym___weak] = ACTIONS(1445), + [anon_sym___bridge] = ACTIONS(1445), + [anon_sym___bridge_transfer] = ACTIONS(1445), + [anon_sym___bridge_retained] = ACTIONS(1445), + [anon_sym___unsafe_unretained] = ACTIONS(1445), + [anon_sym___block] = ACTIONS(1445), + [anon_sym___kindof] = ACTIONS(1445), + [anon_sym___unused] = ACTIONS(1445), + [anon_sym__Complex] = ACTIONS(1445), + [anon_sym___complex] = ACTIONS(1445), + [anon_sym_IBOutlet] = ACTIONS(1445), + [anon_sym_IBInspectable] = ACTIONS(1445), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1445), + [anon_sym_signed] = ACTIONS(1445), + [anon_sym_unsigned] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [sym_primitive_type] = ACTIONS(1445), + [anon_sym_enum] = ACTIONS(1445), + [anon_sym_struct] = ACTIONS(1445), + [anon_sym_union] = ACTIONS(1445), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_else] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_case] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_goto] = ACTIONS(1445), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_sizeof] = ACTIONS(1445), + [sym_number_literal] = ACTIONS(1447), + [anon_sym_L_SQUOTE] = ACTIONS(1447), + [anon_sym_u_SQUOTE] = ACTIONS(1447), + [anon_sym_U_SQUOTE] = ACTIONS(1447), + [anon_sym_u8_SQUOTE] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1445), + [sym_false] = ACTIONS(1445), + [sym_null] = ACTIONS(1445), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1447), - [anon_sym_ATend] = ACTIONS(1445), - [sym_optional] = ACTIONS(1445), - [sym_required] = ACTIONS(1445), - [anon_sym_ATproperty] = ACTIONS(1445), - [sym_method_attribute_specifier] = ACTIONS(1447), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1447), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1447), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1447), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1447), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1447), - [anon_sym_NS_AVAILABLE] = ACTIONS(1447), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1447), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_API_AVAILABLE] = ACTIONS(1447), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_API_DEPRECATED] = ACTIONS(1447), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1447), - [anon_sym___deprecated_msg] = ACTIONS(1447), - [anon_sym___deprecated_enum_msg] = ACTIONS(1447), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1447), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1447), - [anon_sym_ATsynthesize] = ACTIONS(1445), - [anon_sym_ATdynamic] = ACTIONS(1445), - [anon_sym_typeof] = ACTIONS(1447), - [anon_sym___typeof] = ACTIONS(1447), - [anon_sym___typeof__] = ACTIONS(1447), - [sym_id] = ACTIONS(1447), - [sym_instancetype] = ACTIONS(1447), - [sym_Class] = ACTIONS(1447), - [sym_SEL] = ACTIONS(1447), - [sym_IMP] = ACTIONS(1447), - [sym_BOOL] = ACTIONS(1447), - [sym_auto] = ACTIONS(1447), + [anon_sym_POUNDimport] = ACTIONS(1447), + [anon_sym_ATimport] = ACTIONS(1447), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1445), + [anon_sym_ATcompatibility_alias] = ACTIONS(1447), + [anon_sym_ATprotocol] = ACTIONS(1447), + [anon_sym_ATclass] = ACTIONS(1447), + [anon_sym_ATinterface] = ACTIONS(1447), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1445), + [sym_method_attribute_specifier] = ACTIONS(1445), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1445), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1445), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1445), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1445), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1445), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1445), + [anon_sym_NS_AVAILABLE] = ACTIONS(1445), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1445), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1445), + [anon_sym_API_AVAILABLE] = ACTIONS(1445), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1445), + [anon_sym_API_DEPRECATED] = ACTIONS(1445), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1445), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1445), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1445), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1445), + [anon_sym___deprecated_msg] = ACTIONS(1445), + [anon_sym___deprecated_enum_msg] = ACTIONS(1445), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1445), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1445), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1445), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1445), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1445), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1445), + [anon_sym_ATimplementation] = ACTIONS(1447), + [anon_sym_NS_ENUM] = ACTIONS(1445), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1445), + [anon_sym_NS_OPTIONS] = ACTIONS(1445), + [anon_sym_typeof] = ACTIONS(1445), + [anon_sym___typeof] = ACTIONS(1445), + [anon_sym___typeof__] = ACTIONS(1445), + [sym_self] = ACTIONS(1445), + [sym_super] = ACTIONS(1445), + [sym_nil] = ACTIONS(1445), + [sym_id] = ACTIONS(1445), + [sym_instancetype] = ACTIONS(1445), + [sym_Class] = ACTIONS(1445), + [sym_SEL] = ACTIONS(1445), + [sym_IMP] = ACTIONS(1445), + [sym_BOOL] = ACTIONS(1445), + [sym_auto] = ACTIONS(1445), + [anon_sym_ATautoreleasepool] = ACTIONS(1447), + [anon_sym_ATsynchronized] = ACTIONS(1447), + [anon_sym_ATtry] = ACTIONS(1447), + [anon_sym_ATcatch] = ACTIONS(1447), + [anon_sym_ATfinally] = ACTIONS(1447), + [anon_sym_ATthrow] = ACTIONS(1447), + [anon_sym_ATselector] = ACTIONS(1447), + [anon_sym_ATencode] = ACTIONS(1447), + [anon_sym_AT] = ACTIONS(1445), + [sym_YES] = ACTIONS(1445), + [sym_NO] = ACTIONS(1445), + [anon_sym___builtin_available] = ACTIONS(1445), + [anon_sym_ATavailable] = ACTIONS(1447), + [anon_sym_va_arg] = ACTIONS(1445), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [439] = { + [sym_identifier] = ACTIONS(1441), + [aux_sym_preproc_include_token1] = ACTIONS(1443), + [aux_sym_preproc_def_token1] = ACTIONS(1443), + [aux_sym_preproc_if_token1] = ACTIONS(1441), + [aux_sym_preproc_if_token2] = ACTIONS(1441), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1441), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1441), + [anon_sym_LPAREN2] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_typedef] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym___attribute] = ACTIONS(1441), + [anon_sym___attribute__] = ACTIONS(1441), + [anon_sym___declspec] = ACTIONS(1441), + [anon_sym___cdecl] = ACTIONS(1441), + [anon_sym___clrcall] = ACTIONS(1441), + [anon_sym___stdcall] = ACTIONS(1441), + [anon_sym___fastcall] = ACTIONS(1441), + [anon_sym___thiscall] = ACTIONS(1441), + [anon_sym___vectorcall] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_auto] = ACTIONS(1441), + [anon_sym_register] = ACTIONS(1441), + [anon_sym_inline] = ACTIONS(1441), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_volatile] = ACTIONS(1441), + [anon_sym_restrict] = ACTIONS(1441), + [anon_sym__Atomic] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_out] = ACTIONS(1441), + [anon_sym_inout] = ACTIONS(1441), + [anon_sym_bycopy] = ACTIONS(1441), + [anon_sym_byref] = ACTIONS(1441), + [anon_sym_oneway] = ACTIONS(1441), + [anon_sym__Nullable] = ACTIONS(1441), + [anon_sym__Nonnull] = ACTIONS(1441), + [anon_sym__Nullable_result] = ACTIONS(1441), + [anon_sym__Null_unspecified] = ACTIONS(1441), + [anon_sym___autoreleasing] = ACTIONS(1441), + [anon_sym___nullable] = ACTIONS(1441), + [anon_sym___nonnull] = ACTIONS(1441), + [anon_sym___strong] = ACTIONS(1441), + [anon_sym___weak] = ACTIONS(1441), + [anon_sym___bridge] = ACTIONS(1441), + [anon_sym___bridge_transfer] = ACTIONS(1441), + [anon_sym___bridge_retained] = ACTIONS(1441), + [anon_sym___unsafe_unretained] = ACTIONS(1441), + [anon_sym___block] = ACTIONS(1441), + [anon_sym___kindof] = ACTIONS(1441), + [anon_sym___unused] = ACTIONS(1441), + [anon_sym__Complex] = ACTIONS(1441), + [anon_sym___complex] = ACTIONS(1441), + [anon_sym_IBOutlet] = ACTIONS(1441), + [anon_sym_IBInspectable] = ACTIONS(1441), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1441), + [anon_sym_signed] = ACTIONS(1441), + [anon_sym_unsigned] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [sym_primitive_type] = ACTIONS(1441), + [anon_sym_enum] = ACTIONS(1441), + [anon_sym_struct] = ACTIONS(1441), + [anon_sym_union] = ACTIONS(1441), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_case] = ACTIONS(1441), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_goto] = ACTIONS(1441), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1443), + [anon_sym_u_SQUOTE] = ACTIONS(1443), + [anon_sym_U_SQUOTE] = ACTIONS(1443), + [anon_sym_u8_SQUOTE] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_L_DQUOTE] = ACTIONS(1443), + [anon_sym_u_DQUOTE] = ACTIONS(1443), + [anon_sym_U_DQUOTE] = ACTIONS(1443), + [anon_sym_u8_DQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [sym_true] = ACTIONS(1441), + [sym_false] = ACTIONS(1441), + [sym_null] = ACTIONS(1441), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1443), + [anon_sym_ATimport] = ACTIONS(1443), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1441), + [anon_sym_ATcompatibility_alias] = ACTIONS(1443), + [anon_sym_ATprotocol] = ACTIONS(1443), + [anon_sym_ATclass] = ACTIONS(1443), + [anon_sym_ATinterface] = ACTIONS(1443), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1441), + [sym_method_attribute_specifier] = ACTIONS(1441), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1441), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1441), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1441), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1441), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1441), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1441), + [anon_sym_NS_AVAILABLE] = ACTIONS(1441), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1441), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1441), + [anon_sym_API_AVAILABLE] = ACTIONS(1441), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1441), + [anon_sym_API_DEPRECATED] = ACTIONS(1441), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1441), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1441), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1441), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1441), + [anon_sym___deprecated_msg] = ACTIONS(1441), + [anon_sym___deprecated_enum_msg] = ACTIONS(1441), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1441), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1441), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1441), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1441), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1441), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1441), + [anon_sym_ATimplementation] = ACTIONS(1443), + [anon_sym_NS_ENUM] = ACTIONS(1441), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1441), + [anon_sym_NS_OPTIONS] = ACTIONS(1441), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___typeof] = ACTIONS(1441), + [anon_sym___typeof__] = ACTIONS(1441), + [sym_self] = ACTIONS(1441), + [sym_super] = ACTIONS(1441), + [sym_nil] = ACTIONS(1441), + [sym_id] = ACTIONS(1441), + [sym_instancetype] = ACTIONS(1441), + [sym_Class] = ACTIONS(1441), + [sym_SEL] = ACTIONS(1441), + [sym_IMP] = ACTIONS(1441), + [sym_BOOL] = ACTIONS(1441), + [sym_auto] = ACTIONS(1441), + [anon_sym_ATautoreleasepool] = ACTIONS(1443), + [anon_sym_ATsynchronized] = ACTIONS(1443), + [anon_sym_ATtry] = ACTIONS(1443), + [anon_sym_ATcatch] = ACTIONS(1443), + [anon_sym_ATfinally] = ACTIONS(1443), + [anon_sym_ATthrow] = ACTIONS(1443), + [anon_sym_ATselector] = ACTIONS(1443), + [anon_sym_ATencode] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1441), + [sym_YES] = ACTIONS(1441), + [sym_NO] = ACTIONS(1441), + [anon_sym___builtin_available] = ACTIONS(1441), + [anon_sym_ATavailable] = ACTIONS(1443), + [anon_sym_va_arg] = ACTIONS(1441), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [440] = { + [sym_identifier] = ACTIONS(1429), + [aux_sym_preproc_include_token1] = ACTIONS(1431), + [aux_sym_preproc_def_token1] = ACTIONS(1431), + [aux_sym_preproc_if_token1] = ACTIONS(1429), + [aux_sym_preproc_if_token2] = ACTIONS(1429), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1429), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1429), + [anon_sym_LPAREN2] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_CARET] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_typedef] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym___attribute] = ACTIONS(1429), + [anon_sym___attribute__] = ACTIONS(1429), + [anon_sym___declspec] = ACTIONS(1429), + [anon_sym___cdecl] = ACTIONS(1429), + [anon_sym___clrcall] = ACTIONS(1429), + [anon_sym___stdcall] = ACTIONS(1429), + [anon_sym___fastcall] = ACTIONS(1429), + [anon_sym___thiscall] = ACTIONS(1429), + [anon_sym___vectorcall] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_auto] = ACTIONS(1429), + [anon_sym_register] = ACTIONS(1429), + [anon_sym_inline] = ACTIONS(1429), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_volatile] = ACTIONS(1429), + [anon_sym_restrict] = ACTIONS(1429), + [anon_sym__Atomic] = ACTIONS(1429), + [anon_sym_in] = ACTIONS(1429), + [anon_sym_out] = ACTIONS(1429), + [anon_sym_inout] = ACTIONS(1429), + [anon_sym_bycopy] = ACTIONS(1429), + [anon_sym_byref] = ACTIONS(1429), + [anon_sym_oneway] = ACTIONS(1429), + [anon_sym__Nullable] = ACTIONS(1429), + [anon_sym__Nonnull] = ACTIONS(1429), + [anon_sym__Nullable_result] = ACTIONS(1429), + [anon_sym__Null_unspecified] = ACTIONS(1429), + [anon_sym___autoreleasing] = ACTIONS(1429), + [anon_sym___nullable] = ACTIONS(1429), + [anon_sym___nonnull] = ACTIONS(1429), + [anon_sym___strong] = ACTIONS(1429), + [anon_sym___weak] = ACTIONS(1429), + [anon_sym___bridge] = ACTIONS(1429), + [anon_sym___bridge_transfer] = ACTIONS(1429), + [anon_sym___bridge_retained] = ACTIONS(1429), + [anon_sym___unsafe_unretained] = ACTIONS(1429), + [anon_sym___block] = ACTIONS(1429), + [anon_sym___kindof] = ACTIONS(1429), + [anon_sym___unused] = ACTIONS(1429), + [anon_sym__Complex] = ACTIONS(1429), + [anon_sym___complex] = ACTIONS(1429), + [anon_sym_IBOutlet] = ACTIONS(1429), + [anon_sym_IBInspectable] = ACTIONS(1429), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1429), + [anon_sym_signed] = ACTIONS(1429), + [anon_sym_unsigned] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [sym_primitive_type] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [anon_sym_struct] = ACTIONS(1429), + [anon_sym_union] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_else] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [anon_sym_case] = ACTIONS(1429), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_goto] = ACTIONS(1429), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_sizeof] = ACTIONS(1429), + [sym_number_literal] = ACTIONS(1431), + [anon_sym_L_SQUOTE] = ACTIONS(1431), + [anon_sym_u_SQUOTE] = ACTIONS(1431), + [anon_sym_U_SQUOTE] = ACTIONS(1431), + [anon_sym_u8_SQUOTE] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_L_DQUOTE] = ACTIONS(1431), + [anon_sym_u_DQUOTE] = ACTIONS(1431), + [anon_sym_U_DQUOTE] = ACTIONS(1431), + [anon_sym_u8_DQUOTE] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [sym_true] = ACTIONS(1429), + [sym_false] = ACTIONS(1429), + [sym_null] = ACTIONS(1429), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1431), + [anon_sym_ATimport] = ACTIONS(1431), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1429), + [anon_sym_ATcompatibility_alias] = ACTIONS(1431), + [anon_sym_ATprotocol] = ACTIONS(1431), + [anon_sym_ATclass] = ACTIONS(1431), + [anon_sym_ATinterface] = ACTIONS(1431), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1429), + [sym_method_attribute_specifier] = ACTIONS(1429), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1429), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1429), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1429), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1429), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1429), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1429), + [anon_sym_NS_AVAILABLE] = ACTIONS(1429), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1429), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1429), + [anon_sym_API_AVAILABLE] = ACTIONS(1429), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1429), + [anon_sym_API_DEPRECATED] = ACTIONS(1429), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1429), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1429), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1429), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1429), + [anon_sym___deprecated_msg] = ACTIONS(1429), + [anon_sym___deprecated_enum_msg] = ACTIONS(1429), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1429), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1429), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1429), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1429), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1429), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1429), + [anon_sym_ATimplementation] = ACTIONS(1431), + [anon_sym_NS_ENUM] = ACTIONS(1429), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1429), + [anon_sym_NS_OPTIONS] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(1429), + [anon_sym___typeof] = ACTIONS(1429), + [anon_sym___typeof__] = ACTIONS(1429), + [sym_self] = ACTIONS(1429), + [sym_super] = ACTIONS(1429), + [sym_nil] = ACTIONS(1429), + [sym_id] = ACTIONS(1429), + [sym_instancetype] = ACTIONS(1429), + [sym_Class] = ACTIONS(1429), + [sym_SEL] = ACTIONS(1429), + [sym_IMP] = ACTIONS(1429), + [sym_BOOL] = ACTIONS(1429), + [sym_auto] = ACTIONS(1429), + [anon_sym_ATautoreleasepool] = ACTIONS(1431), + [anon_sym_ATsynchronized] = ACTIONS(1431), + [anon_sym_ATtry] = ACTIONS(1431), + [anon_sym_ATcatch] = ACTIONS(1431), + [anon_sym_ATfinally] = ACTIONS(1431), + [anon_sym_ATthrow] = ACTIONS(1431), + [anon_sym_ATselector] = ACTIONS(1431), + [anon_sym_ATencode] = ACTIONS(1431), + [anon_sym_AT] = ACTIONS(1429), + [sym_YES] = ACTIONS(1429), + [sym_NO] = ACTIONS(1429), + [anon_sym___builtin_available] = ACTIONS(1429), + [anon_sym_ATavailable] = ACTIONS(1431), + [anon_sym_va_arg] = ACTIONS(1429), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [441] = { + [sym_identifier] = ACTIONS(1425), + [aux_sym_preproc_include_token1] = ACTIONS(1427), + [aux_sym_preproc_def_token1] = ACTIONS(1427), + [aux_sym_preproc_if_token1] = ACTIONS(1425), + [aux_sym_preproc_if_token2] = ACTIONS(1425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1425), + [anon_sym_LPAREN2] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_CARET] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_typedef] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym___attribute] = ACTIONS(1425), + [anon_sym___attribute__] = ACTIONS(1425), + [anon_sym___declspec] = ACTIONS(1425), + [anon_sym___cdecl] = ACTIONS(1425), + [anon_sym___clrcall] = ACTIONS(1425), + [anon_sym___stdcall] = ACTIONS(1425), + [anon_sym___fastcall] = ACTIONS(1425), + [anon_sym___thiscall] = ACTIONS(1425), + [anon_sym___vectorcall] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_auto] = ACTIONS(1425), + [anon_sym_register] = ACTIONS(1425), + [anon_sym_inline] = ACTIONS(1425), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_volatile] = ACTIONS(1425), + [anon_sym_restrict] = ACTIONS(1425), + [anon_sym__Atomic] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_out] = ACTIONS(1425), + [anon_sym_inout] = ACTIONS(1425), + [anon_sym_bycopy] = ACTIONS(1425), + [anon_sym_byref] = ACTIONS(1425), + [anon_sym_oneway] = ACTIONS(1425), + [anon_sym__Nullable] = ACTIONS(1425), + [anon_sym__Nonnull] = ACTIONS(1425), + [anon_sym__Nullable_result] = ACTIONS(1425), + [anon_sym__Null_unspecified] = ACTIONS(1425), + [anon_sym___autoreleasing] = ACTIONS(1425), + [anon_sym___nullable] = ACTIONS(1425), + [anon_sym___nonnull] = ACTIONS(1425), + [anon_sym___strong] = ACTIONS(1425), + [anon_sym___weak] = ACTIONS(1425), + [anon_sym___bridge] = ACTIONS(1425), + [anon_sym___bridge_transfer] = ACTIONS(1425), + [anon_sym___bridge_retained] = ACTIONS(1425), + [anon_sym___unsafe_unretained] = ACTIONS(1425), + [anon_sym___block] = ACTIONS(1425), + [anon_sym___kindof] = ACTIONS(1425), + [anon_sym___unused] = ACTIONS(1425), + [anon_sym__Complex] = ACTIONS(1425), + [anon_sym___complex] = ACTIONS(1425), + [anon_sym_IBOutlet] = ACTIONS(1425), + [anon_sym_IBInspectable] = ACTIONS(1425), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1425), + [anon_sym_signed] = ACTIONS(1425), + [anon_sym_unsigned] = ACTIONS(1425), + [anon_sym_long] = ACTIONS(1425), + [anon_sym_short] = ACTIONS(1425), + [sym_primitive_type] = ACTIONS(1425), + [anon_sym_enum] = ACTIONS(1425), + [anon_sym_struct] = ACTIONS(1425), + [anon_sym_union] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_switch] = ACTIONS(1425), + [anon_sym_case] = ACTIONS(1425), + [anon_sym_default] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_goto] = ACTIONS(1425), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_sizeof] = ACTIONS(1425), + [sym_number_literal] = ACTIONS(1427), + [anon_sym_L_SQUOTE] = ACTIONS(1427), + [anon_sym_u_SQUOTE] = ACTIONS(1427), + [anon_sym_U_SQUOTE] = ACTIONS(1427), + [anon_sym_u8_SQUOTE] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_L_DQUOTE] = ACTIONS(1427), + [anon_sym_u_DQUOTE] = ACTIONS(1427), + [anon_sym_U_DQUOTE] = ACTIONS(1427), + [anon_sym_u8_DQUOTE] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [sym_true] = ACTIONS(1425), + [sym_false] = ACTIONS(1425), + [sym_null] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1427), + [anon_sym_ATimport] = ACTIONS(1427), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1425), + [anon_sym_ATcompatibility_alias] = ACTIONS(1427), + [anon_sym_ATprotocol] = ACTIONS(1427), + [anon_sym_ATclass] = ACTIONS(1427), + [anon_sym_ATinterface] = ACTIONS(1427), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1425), + [sym_method_attribute_specifier] = ACTIONS(1425), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1425), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1425), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1425), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1425), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1425), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1425), + [anon_sym_NS_AVAILABLE] = ACTIONS(1425), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1425), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1425), + [anon_sym_API_AVAILABLE] = ACTIONS(1425), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1425), + [anon_sym_API_DEPRECATED] = ACTIONS(1425), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1425), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1425), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1425), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1425), + [anon_sym___deprecated_msg] = ACTIONS(1425), + [anon_sym___deprecated_enum_msg] = ACTIONS(1425), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1425), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1425), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1425), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1425), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1425), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1425), + [anon_sym_ATimplementation] = ACTIONS(1427), + [anon_sym_NS_ENUM] = ACTIONS(1425), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1425), + [anon_sym_NS_OPTIONS] = ACTIONS(1425), + [anon_sym_typeof] = ACTIONS(1425), + [anon_sym___typeof] = ACTIONS(1425), + [anon_sym___typeof__] = ACTIONS(1425), + [sym_self] = ACTIONS(1425), + [sym_super] = ACTIONS(1425), + [sym_nil] = ACTIONS(1425), + [sym_id] = ACTIONS(1425), + [sym_instancetype] = ACTIONS(1425), + [sym_Class] = ACTIONS(1425), + [sym_SEL] = ACTIONS(1425), + [sym_IMP] = ACTIONS(1425), + [sym_BOOL] = ACTIONS(1425), + [sym_auto] = ACTIONS(1425), + [anon_sym_ATautoreleasepool] = ACTIONS(1427), + [anon_sym_ATsynchronized] = ACTIONS(1427), + [anon_sym_ATtry] = ACTIONS(1427), + [anon_sym_ATcatch] = ACTIONS(1427), + [anon_sym_ATfinally] = ACTIONS(1427), + [anon_sym_ATthrow] = ACTIONS(1427), + [anon_sym_ATselector] = ACTIONS(1427), + [anon_sym_ATencode] = ACTIONS(1427), + [anon_sym_AT] = ACTIONS(1425), + [sym_YES] = ACTIONS(1425), + [sym_NO] = ACTIONS(1425), + [anon_sym___builtin_available] = ACTIONS(1425), + [anon_sym_ATavailable] = ACTIONS(1427), + [anon_sym_va_arg] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [442] = { + [sym_identifier] = ACTIONS(1419), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1419), + [aux_sym_preproc_if_token2] = ACTIONS(1419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1419), + [anon_sym_LPAREN2] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_CARET] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym___attribute] = ACTIONS(1419), + [anon_sym___attribute__] = ACTIONS(1419), + [anon_sym___declspec] = ACTIONS(1419), + [anon_sym___cdecl] = ACTIONS(1419), + [anon_sym___clrcall] = ACTIONS(1419), + [anon_sym___stdcall] = ACTIONS(1419), + [anon_sym___fastcall] = ACTIONS(1419), + [anon_sym___thiscall] = ACTIONS(1419), + [anon_sym___vectorcall] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1419), + [anon_sym_auto] = ACTIONS(1419), + [anon_sym_register] = ACTIONS(1419), + [anon_sym_inline] = ACTIONS(1419), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_volatile] = ACTIONS(1419), + [anon_sym_restrict] = ACTIONS(1419), + [anon_sym__Atomic] = ACTIONS(1419), + [anon_sym_in] = ACTIONS(1419), + [anon_sym_out] = ACTIONS(1419), + [anon_sym_inout] = ACTIONS(1419), + [anon_sym_bycopy] = ACTIONS(1419), + [anon_sym_byref] = ACTIONS(1419), + [anon_sym_oneway] = ACTIONS(1419), + [anon_sym__Nullable] = ACTIONS(1419), + [anon_sym__Nonnull] = ACTIONS(1419), + [anon_sym__Nullable_result] = ACTIONS(1419), + [anon_sym__Null_unspecified] = ACTIONS(1419), + [anon_sym___autoreleasing] = ACTIONS(1419), + [anon_sym___nullable] = ACTIONS(1419), + [anon_sym___nonnull] = ACTIONS(1419), + [anon_sym___strong] = ACTIONS(1419), + [anon_sym___weak] = ACTIONS(1419), + [anon_sym___bridge] = ACTIONS(1419), + [anon_sym___bridge_transfer] = ACTIONS(1419), + [anon_sym___bridge_retained] = ACTIONS(1419), + [anon_sym___unsafe_unretained] = ACTIONS(1419), + [anon_sym___block] = ACTIONS(1419), + [anon_sym___kindof] = ACTIONS(1419), + [anon_sym___unused] = ACTIONS(1419), + [anon_sym__Complex] = ACTIONS(1419), + [anon_sym___complex] = ACTIONS(1419), + [anon_sym_IBOutlet] = ACTIONS(1419), + [anon_sym_IBInspectable] = ACTIONS(1419), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1419), + [anon_sym_signed] = ACTIONS(1419), + [anon_sym_unsigned] = ACTIONS(1419), + [anon_sym_long] = ACTIONS(1419), + [anon_sym_short] = ACTIONS(1419), + [sym_primitive_type] = ACTIONS(1419), + [anon_sym_enum] = ACTIONS(1419), + [anon_sym_struct] = ACTIONS(1419), + [anon_sym_union] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1419), + [anon_sym_else] = ACTIONS(1419), + [anon_sym_switch] = ACTIONS(1419), + [anon_sym_case] = ACTIONS(1419), + [anon_sym_default] = ACTIONS(1419), + [anon_sym_while] = ACTIONS(1419), + [anon_sym_do] = ACTIONS(1419), + [anon_sym_for] = ACTIONS(1419), + [anon_sym_return] = ACTIONS(1419), + [anon_sym_break] = ACTIONS(1419), + [anon_sym_continue] = ACTIONS(1419), + [anon_sym_goto] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1422), + [anon_sym_PLUS_PLUS] = ACTIONS(1422), + [anon_sym_sizeof] = ACTIONS(1419), + [sym_number_literal] = ACTIONS(1422), + [anon_sym_L_SQUOTE] = ACTIONS(1422), + [anon_sym_u_SQUOTE] = ACTIONS(1422), + [anon_sym_U_SQUOTE] = ACTIONS(1422), + [anon_sym_u8_SQUOTE] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [anon_sym_L_DQUOTE] = ACTIONS(1422), + [anon_sym_u_DQUOTE] = ACTIONS(1422), + [anon_sym_U_DQUOTE] = ACTIONS(1422), + [anon_sym_u8_DQUOTE] = ACTIONS(1422), + [anon_sym_DQUOTE] = ACTIONS(1422), + [sym_true] = ACTIONS(1419), + [sym_false] = ACTIONS(1419), + [sym_null] = ACTIONS(1419), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1422), + [anon_sym_ATimport] = ACTIONS(1422), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1419), + [anon_sym_ATcompatibility_alias] = ACTIONS(1422), + [anon_sym_ATprotocol] = ACTIONS(1422), + [anon_sym_ATclass] = ACTIONS(1422), + [anon_sym_ATinterface] = ACTIONS(1422), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1419), + [sym_method_attribute_specifier] = ACTIONS(1419), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1419), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1419), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1419), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1419), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1419), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1419), + [anon_sym_NS_AVAILABLE] = ACTIONS(1419), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1419), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1419), + [anon_sym_API_AVAILABLE] = ACTIONS(1419), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1419), + [anon_sym_API_DEPRECATED] = ACTIONS(1419), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1419), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1419), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1419), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1419), + [anon_sym___deprecated_msg] = ACTIONS(1419), + [anon_sym___deprecated_enum_msg] = ACTIONS(1419), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1419), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1419), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1419), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1419), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1419), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1419), + [anon_sym_ATimplementation] = ACTIONS(1422), + [anon_sym_NS_ENUM] = ACTIONS(1419), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1419), + [anon_sym_NS_OPTIONS] = ACTIONS(1419), + [anon_sym_typeof] = ACTIONS(1419), + [anon_sym___typeof] = ACTIONS(1419), + [anon_sym___typeof__] = ACTIONS(1419), + [sym_self] = ACTIONS(1419), + [sym_super] = ACTIONS(1419), + [sym_nil] = ACTIONS(1419), + [sym_id] = ACTIONS(1419), + [sym_instancetype] = ACTIONS(1419), + [sym_Class] = ACTIONS(1419), + [sym_SEL] = ACTIONS(1419), + [sym_IMP] = ACTIONS(1419), + [sym_BOOL] = ACTIONS(1419), + [sym_auto] = ACTIONS(1419), + [anon_sym_ATautoreleasepool] = ACTIONS(1422), + [anon_sym_ATsynchronized] = ACTIONS(1422), + [anon_sym_ATtry] = ACTIONS(1422), + [anon_sym_ATcatch] = ACTIONS(1422), + [anon_sym_ATfinally] = ACTIONS(1422), + [anon_sym_ATthrow] = ACTIONS(1422), + [anon_sym_ATselector] = ACTIONS(1422), + [anon_sym_ATencode] = ACTIONS(1422), + [anon_sym_AT] = ACTIONS(1419), + [sym_YES] = ACTIONS(1419), + [sym_NO] = ACTIONS(1419), + [anon_sym___builtin_available] = ACTIONS(1419), + [anon_sym_ATavailable] = ACTIONS(1422), + [anon_sym_va_arg] = ACTIONS(1419), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [443] = { + [sym_identifier] = ACTIONS(1393), + [aux_sym_preproc_include_token1] = ACTIONS(1391), + [aux_sym_preproc_def_token1] = ACTIONS(1391), + [aux_sym_preproc_if_token1] = ACTIONS(1393), + [aux_sym_preproc_if_token2] = ACTIONS(1393), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1393), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1393), + [anon_sym_LPAREN2] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_typedef] = ACTIONS(1393), + [anon_sym_extern] = ACTIONS(1393), + [anon_sym___attribute] = ACTIONS(1393), + [anon_sym___attribute__] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(1393), + [anon_sym___cdecl] = ACTIONS(1393), + [anon_sym___clrcall] = ACTIONS(1393), + [anon_sym___stdcall] = ACTIONS(1393), + [anon_sym___fastcall] = ACTIONS(1393), + [anon_sym___thiscall] = ACTIONS(1393), + [anon_sym___vectorcall] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_auto] = ACTIONS(1393), + [anon_sym_register] = ACTIONS(1393), + [anon_sym_inline] = ACTIONS(1393), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_volatile] = ACTIONS(1393), + [anon_sym_restrict] = ACTIONS(1393), + [anon_sym__Atomic] = ACTIONS(1393), + [anon_sym_in] = ACTIONS(1393), + [anon_sym_out] = ACTIONS(1393), + [anon_sym_inout] = ACTIONS(1393), + [anon_sym_bycopy] = ACTIONS(1393), + [anon_sym_byref] = ACTIONS(1393), + [anon_sym_oneway] = ACTIONS(1393), + [anon_sym__Nullable] = ACTIONS(1393), + [anon_sym__Nonnull] = ACTIONS(1393), + [anon_sym__Nullable_result] = ACTIONS(1393), + [anon_sym__Null_unspecified] = ACTIONS(1393), + [anon_sym___autoreleasing] = ACTIONS(1393), + [anon_sym___nullable] = ACTIONS(1393), + [anon_sym___nonnull] = ACTIONS(1393), + [anon_sym___strong] = ACTIONS(1393), + [anon_sym___weak] = ACTIONS(1393), + [anon_sym___bridge] = ACTIONS(1393), + [anon_sym___bridge_transfer] = ACTIONS(1393), + [anon_sym___bridge_retained] = ACTIONS(1393), + [anon_sym___unsafe_unretained] = ACTIONS(1393), + [anon_sym___block] = ACTIONS(1393), + [anon_sym___kindof] = ACTIONS(1393), + [anon_sym___unused] = ACTIONS(1393), + [anon_sym__Complex] = ACTIONS(1393), + [anon_sym___complex] = ACTIONS(1393), + [anon_sym_IBOutlet] = ACTIONS(1393), + [anon_sym_IBInspectable] = ACTIONS(1393), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1393), + [anon_sym_signed] = ACTIONS(1393), + [anon_sym_unsigned] = ACTIONS(1393), + [anon_sym_long] = ACTIONS(1393), + [anon_sym_short] = ACTIONS(1393), + [sym_primitive_type] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_union] = ACTIONS(1393), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_else] = ACTIONS(1393), + [anon_sym_switch] = ACTIONS(1393), + [anon_sym_case] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_goto] = ACTIONS(1393), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_sizeof] = ACTIONS(1393), + [sym_number_literal] = ACTIONS(1391), + [anon_sym_L_SQUOTE] = ACTIONS(1391), + [anon_sym_u_SQUOTE] = ACTIONS(1391), + [anon_sym_U_SQUOTE] = ACTIONS(1391), + [anon_sym_u8_SQUOTE] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_L_DQUOTE] = ACTIONS(1391), + [anon_sym_u_DQUOTE] = ACTIONS(1391), + [anon_sym_U_DQUOTE] = ACTIONS(1391), + [anon_sym_u8_DQUOTE] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [sym_true] = ACTIONS(1393), + [sym_false] = ACTIONS(1393), + [sym_null] = ACTIONS(1393), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1391), + [anon_sym_ATimport] = ACTIONS(1391), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1393), + [anon_sym_ATcompatibility_alias] = ACTIONS(1391), + [anon_sym_ATprotocol] = ACTIONS(1391), + [anon_sym_ATclass] = ACTIONS(1391), + [anon_sym_ATinterface] = ACTIONS(1391), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1393), + [sym_method_attribute_specifier] = ACTIONS(1393), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1393), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1393), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1393), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1393), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1393), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1393), + [anon_sym_NS_AVAILABLE] = ACTIONS(1393), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1393), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1393), + [anon_sym_API_AVAILABLE] = ACTIONS(1393), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1393), + [anon_sym_API_DEPRECATED] = ACTIONS(1393), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1393), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1393), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1393), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1393), + [anon_sym___deprecated_msg] = ACTIONS(1393), + [anon_sym___deprecated_enum_msg] = ACTIONS(1393), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1393), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1393), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1393), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1393), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1393), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1393), + [anon_sym_ATimplementation] = ACTIONS(1391), + [anon_sym_NS_ENUM] = ACTIONS(1393), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1393), + [anon_sym_NS_OPTIONS] = ACTIONS(1393), + [anon_sym_typeof] = ACTIONS(1393), + [anon_sym___typeof] = ACTIONS(1393), + [anon_sym___typeof__] = ACTIONS(1393), + [sym_self] = ACTIONS(1393), + [sym_super] = ACTIONS(1393), + [sym_nil] = ACTIONS(1393), + [sym_id] = ACTIONS(1393), + [sym_instancetype] = ACTIONS(1393), + [sym_Class] = ACTIONS(1393), + [sym_SEL] = ACTIONS(1393), + [sym_IMP] = ACTIONS(1393), + [sym_BOOL] = ACTIONS(1393), + [sym_auto] = ACTIONS(1393), + [anon_sym_ATautoreleasepool] = ACTIONS(1391), + [anon_sym_ATsynchronized] = ACTIONS(1391), + [anon_sym_ATtry] = ACTIONS(1391), + [anon_sym_ATcatch] = ACTIONS(1391), + [anon_sym_ATfinally] = ACTIONS(1391), + [anon_sym_ATthrow] = ACTIONS(1391), + [anon_sym_ATselector] = ACTIONS(1391), + [anon_sym_ATencode] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1393), + [sym_YES] = ACTIONS(1393), + [sym_NO] = ACTIONS(1393), + [anon_sym___builtin_available] = ACTIONS(1393), + [anon_sym_ATavailable] = ACTIONS(1391), + [anon_sym_va_arg] = ACTIONS(1393), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [444] = { + [sym_identifier] = ACTIONS(1565), + [aux_sym_preproc_include_token1] = ACTIONS(1567), + [aux_sym_preproc_def_token1] = ACTIONS(1567), + [aux_sym_preproc_if_token1] = ACTIONS(1565), + [aux_sym_preproc_if_token2] = ACTIONS(1565), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1565), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1565), + [anon_sym_LPAREN2] = ACTIONS(1567), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_CARET] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_typedef] = ACTIONS(1565), + [anon_sym_extern] = ACTIONS(1565), + [anon_sym___attribute] = ACTIONS(1565), + [anon_sym___attribute__] = ACTIONS(1565), + [anon_sym___declspec] = ACTIONS(1565), + [anon_sym___cdecl] = ACTIONS(1565), + [anon_sym___clrcall] = ACTIONS(1565), + [anon_sym___stdcall] = ACTIONS(1565), + [anon_sym___fastcall] = ACTIONS(1565), + [anon_sym___thiscall] = ACTIONS(1565), + [anon_sym___vectorcall] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1567), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_auto] = ACTIONS(1565), + [anon_sym_register] = ACTIONS(1565), + [anon_sym_inline] = ACTIONS(1565), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_volatile] = ACTIONS(1565), + [anon_sym_restrict] = ACTIONS(1565), + [anon_sym__Atomic] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_out] = ACTIONS(1565), + [anon_sym_inout] = ACTIONS(1565), + [anon_sym_bycopy] = ACTIONS(1565), + [anon_sym_byref] = ACTIONS(1565), + [anon_sym_oneway] = ACTIONS(1565), + [anon_sym__Nullable] = ACTIONS(1565), + [anon_sym__Nonnull] = ACTIONS(1565), + [anon_sym__Nullable_result] = ACTIONS(1565), + [anon_sym__Null_unspecified] = ACTIONS(1565), + [anon_sym___autoreleasing] = ACTIONS(1565), + [anon_sym___nullable] = ACTIONS(1565), + [anon_sym___nonnull] = ACTIONS(1565), + [anon_sym___strong] = ACTIONS(1565), + [anon_sym___weak] = ACTIONS(1565), + [anon_sym___bridge] = ACTIONS(1565), + [anon_sym___bridge_transfer] = ACTIONS(1565), + [anon_sym___bridge_retained] = ACTIONS(1565), + [anon_sym___unsafe_unretained] = ACTIONS(1565), + [anon_sym___block] = ACTIONS(1565), + [anon_sym___kindof] = ACTIONS(1565), + [anon_sym___unused] = ACTIONS(1565), + [anon_sym__Complex] = ACTIONS(1565), + [anon_sym___complex] = ACTIONS(1565), + [anon_sym_IBOutlet] = ACTIONS(1565), + [anon_sym_IBInspectable] = ACTIONS(1565), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1565), + [anon_sym_signed] = ACTIONS(1565), + [anon_sym_unsigned] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [sym_primitive_type] = ACTIONS(1565), + [anon_sym_enum] = ACTIONS(1565), + [anon_sym_struct] = ACTIONS(1565), + [anon_sym_union] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_else] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_case] = ACTIONS(1565), + [anon_sym_default] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_sizeof] = ACTIONS(1565), + [sym_number_literal] = ACTIONS(1567), + [anon_sym_L_SQUOTE] = ACTIONS(1567), + [anon_sym_u_SQUOTE] = ACTIONS(1567), + [anon_sym_U_SQUOTE] = ACTIONS(1567), + [anon_sym_u8_SQUOTE] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_L_DQUOTE] = ACTIONS(1567), + [anon_sym_u_DQUOTE] = ACTIONS(1567), + [anon_sym_U_DQUOTE] = ACTIONS(1567), + [anon_sym_u8_DQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [sym_true] = ACTIONS(1565), + [sym_false] = ACTIONS(1565), + [sym_null] = ACTIONS(1565), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1567), + [anon_sym_ATimport] = ACTIONS(1567), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1565), + [anon_sym_ATcompatibility_alias] = ACTIONS(1567), + [anon_sym_ATprotocol] = ACTIONS(1567), + [anon_sym_ATclass] = ACTIONS(1567), + [anon_sym_ATinterface] = ACTIONS(1567), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1565), + [sym_method_attribute_specifier] = ACTIONS(1565), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1565), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1565), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1565), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1565), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1565), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1565), + [anon_sym_NS_AVAILABLE] = ACTIONS(1565), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1565), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1565), + [anon_sym_API_AVAILABLE] = ACTIONS(1565), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1565), + [anon_sym_API_DEPRECATED] = ACTIONS(1565), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1565), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1565), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1565), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1565), + [anon_sym___deprecated_msg] = ACTIONS(1565), + [anon_sym___deprecated_enum_msg] = ACTIONS(1565), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1565), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1565), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1565), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1565), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1565), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1565), + [anon_sym_ATimplementation] = ACTIONS(1567), + [anon_sym_NS_ENUM] = ACTIONS(1565), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1565), + [anon_sym_NS_OPTIONS] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym___typeof] = ACTIONS(1565), + [anon_sym___typeof__] = ACTIONS(1565), + [sym_self] = ACTIONS(1565), + [sym_super] = ACTIONS(1565), + [sym_nil] = ACTIONS(1565), + [sym_id] = ACTIONS(1565), + [sym_instancetype] = ACTIONS(1565), + [sym_Class] = ACTIONS(1565), + [sym_SEL] = ACTIONS(1565), + [sym_IMP] = ACTIONS(1565), + [sym_BOOL] = ACTIONS(1565), + [sym_auto] = ACTIONS(1565), + [anon_sym_ATautoreleasepool] = ACTIONS(1567), + [anon_sym_ATsynchronized] = ACTIONS(1567), + [anon_sym_ATtry] = ACTIONS(1567), + [anon_sym_ATcatch] = ACTIONS(1567), + [anon_sym_ATfinally] = ACTIONS(1567), + [anon_sym_ATthrow] = ACTIONS(1567), + [anon_sym_ATselector] = ACTIONS(1567), + [anon_sym_ATencode] = ACTIONS(1567), + [anon_sym_AT] = ACTIONS(1565), + [sym_YES] = ACTIONS(1565), + [sym_NO] = ACTIONS(1565), + [anon_sym___builtin_available] = ACTIONS(1565), + [anon_sym_ATavailable] = ACTIONS(1567), + [anon_sym_va_arg] = ACTIONS(1565), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [445] = { + [sym_identifier] = ACTIONS(1411), + [aux_sym_preproc_include_token1] = ACTIONS(1413), + [aux_sym_preproc_def_token1] = ACTIONS(1413), + [aux_sym_preproc_if_token1] = ACTIONS(1411), + [aux_sym_preproc_if_token2] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1411), + [anon_sym_LPAREN2] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_TILDE] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_CARET] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1413), + [anon_sym_typedef] = ACTIONS(1411), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym___attribute] = ACTIONS(1411), + [anon_sym___attribute__] = ACTIONS(1411), + [anon_sym___declspec] = ACTIONS(1411), + [anon_sym___cdecl] = ACTIONS(1411), + [anon_sym___clrcall] = ACTIONS(1411), + [anon_sym___stdcall] = ACTIONS(1411), + [anon_sym___fastcall] = ACTIONS(1411), + [anon_sym___thiscall] = ACTIONS(1411), + [anon_sym___vectorcall] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_auto] = ACTIONS(1411), + [anon_sym_register] = ACTIONS(1411), + [anon_sym_inline] = ACTIONS(1411), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_volatile] = ACTIONS(1411), + [anon_sym_restrict] = ACTIONS(1411), + [anon_sym__Atomic] = ACTIONS(1411), + [anon_sym_in] = ACTIONS(1411), + [anon_sym_out] = ACTIONS(1411), + [anon_sym_inout] = ACTIONS(1411), + [anon_sym_bycopy] = ACTIONS(1411), + [anon_sym_byref] = ACTIONS(1411), + [anon_sym_oneway] = ACTIONS(1411), + [anon_sym__Nullable] = ACTIONS(1411), + [anon_sym__Nonnull] = ACTIONS(1411), + [anon_sym__Nullable_result] = ACTIONS(1411), + [anon_sym__Null_unspecified] = ACTIONS(1411), + [anon_sym___autoreleasing] = ACTIONS(1411), + [anon_sym___nullable] = ACTIONS(1411), + [anon_sym___nonnull] = ACTIONS(1411), + [anon_sym___strong] = ACTIONS(1411), + [anon_sym___weak] = ACTIONS(1411), + [anon_sym___bridge] = ACTIONS(1411), + [anon_sym___bridge_transfer] = ACTIONS(1411), + [anon_sym___bridge_retained] = ACTIONS(1411), + [anon_sym___unsafe_unretained] = ACTIONS(1411), + [anon_sym___block] = ACTIONS(1411), + [anon_sym___kindof] = ACTIONS(1411), + [anon_sym___unused] = ACTIONS(1411), + [anon_sym__Complex] = ACTIONS(1411), + [anon_sym___complex] = ACTIONS(1411), + [anon_sym_IBOutlet] = ACTIONS(1411), + [anon_sym_IBInspectable] = ACTIONS(1411), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1411), + [anon_sym_signed] = ACTIONS(1411), + [anon_sym_unsigned] = ACTIONS(1411), + [anon_sym_long] = ACTIONS(1411), + [anon_sym_short] = ACTIONS(1411), + [sym_primitive_type] = ACTIONS(1411), + [anon_sym_enum] = ACTIONS(1411), + [anon_sym_struct] = ACTIONS(1411), + [anon_sym_union] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1411), + [anon_sym_else] = ACTIONS(1411), + [anon_sym_switch] = ACTIONS(1411), + [anon_sym_case] = ACTIONS(1411), + [anon_sym_default] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1411), + [anon_sym_return] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_continue] = ACTIONS(1411), + [anon_sym_goto] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1413), + [anon_sym_sizeof] = ACTIONS(1411), + [sym_number_literal] = ACTIONS(1413), + [anon_sym_L_SQUOTE] = ACTIONS(1413), + [anon_sym_u_SQUOTE] = ACTIONS(1413), + [anon_sym_U_SQUOTE] = ACTIONS(1413), + [anon_sym_u8_SQUOTE] = ACTIONS(1413), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_L_DQUOTE] = ACTIONS(1413), + [anon_sym_u_DQUOTE] = ACTIONS(1413), + [anon_sym_U_DQUOTE] = ACTIONS(1413), + [anon_sym_u8_DQUOTE] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1413), + [sym_true] = ACTIONS(1411), + [sym_false] = ACTIONS(1411), + [sym_null] = ACTIONS(1411), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1413), + [anon_sym_ATimport] = ACTIONS(1413), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1411), + [anon_sym_ATcompatibility_alias] = ACTIONS(1413), + [anon_sym_ATprotocol] = ACTIONS(1413), + [anon_sym_ATclass] = ACTIONS(1413), + [anon_sym_ATinterface] = ACTIONS(1413), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1411), + [sym_method_attribute_specifier] = ACTIONS(1411), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1411), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1411), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1411), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1411), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1411), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1411), + [anon_sym_NS_AVAILABLE] = ACTIONS(1411), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1411), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1411), + [anon_sym_API_AVAILABLE] = ACTIONS(1411), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1411), + [anon_sym_API_DEPRECATED] = ACTIONS(1411), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1411), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1411), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1411), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1411), + [anon_sym___deprecated_msg] = ACTIONS(1411), + [anon_sym___deprecated_enum_msg] = ACTIONS(1411), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1411), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1411), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1411), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1411), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1411), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1411), + [anon_sym_ATimplementation] = ACTIONS(1413), + [anon_sym_NS_ENUM] = ACTIONS(1411), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1411), + [anon_sym_NS_OPTIONS] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym___typeof] = ACTIONS(1411), + [anon_sym___typeof__] = ACTIONS(1411), + [sym_self] = ACTIONS(1411), + [sym_super] = ACTIONS(1411), + [sym_nil] = ACTIONS(1411), + [sym_id] = ACTIONS(1411), + [sym_instancetype] = ACTIONS(1411), + [sym_Class] = ACTIONS(1411), + [sym_SEL] = ACTIONS(1411), + [sym_IMP] = ACTIONS(1411), + [sym_BOOL] = ACTIONS(1411), + [sym_auto] = ACTIONS(1411), + [anon_sym_ATautoreleasepool] = ACTIONS(1413), + [anon_sym_ATsynchronized] = ACTIONS(1413), + [anon_sym_ATtry] = ACTIONS(1413), + [anon_sym_ATcatch] = ACTIONS(1413), + [anon_sym_ATfinally] = ACTIONS(1413), + [anon_sym_ATthrow] = ACTIONS(1413), + [anon_sym_ATselector] = ACTIONS(1413), + [anon_sym_ATencode] = ACTIONS(1413), + [anon_sym_AT] = ACTIONS(1411), + [sym_YES] = ACTIONS(1411), + [sym_NO] = ACTIONS(1411), + [anon_sym___builtin_available] = ACTIONS(1411), + [anon_sym_ATavailable] = ACTIONS(1413), + [anon_sym_va_arg] = ACTIONS(1411), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [446] = { + [sym_identifier] = ACTIONS(1629), + [aux_sym_preproc_include_token1] = ACTIONS(1631), + [aux_sym_preproc_def_token1] = ACTIONS(1631), + [aux_sym_preproc_if_token1] = ACTIONS(1629), + [aux_sym_preproc_if_token2] = ACTIONS(1629), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1629), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1629), + [anon_sym_LPAREN2] = ACTIONS(1631), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_typedef] = ACTIONS(1629), + [anon_sym_extern] = ACTIONS(1629), + [anon_sym___attribute] = ACTIONS(1629), + [anon_sym___attribute__] = ACTIONS(1629), + [anon_sym___declspec] = ACTIONS(1629), + [anon_sym___cdecl] = ACTIONS(1629), + [anon_sym___clrcall] = ACTIONS(1629), + [anon_sym___stdcall] = ACTIONS(1629), + [anon_sym___fastcall] = ACTIONS(1629), + [anon_sym___thiscall] = ACTIONS(1629), + [anon_sym___vectorcall] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1631), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_auto] = ACTIONS(1629), + [anon_sym_register] = ACTIONS(1629), + [anon_sym_inline] = ACTIONS(1629), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_volatile] = ACTIONS(1629), + [anon_sym_restrict] = ACTIONS(1629), + [anon_sym__Atomic] = ACTIONS(1629), + [anon_sym_in] = ACTIONS(1629), + [anon_sym_out] = ACTIONS(1629), + [anon_sym_inout] = ACTIONS(1629), + [anon_sym_bycopy] = ACTIONS(1629), + [anon_sym_byref] = ACTIONS(1629), + [anon_sym_oneway] = ACTIONS(1629), + [anon_sym__Nullable] = ACTIONS(1629), + [anon_sym__Nonnull] = ACTIONS(1629), + [anon_sym__Nullable_result] = ACTIONS(1629), + [anon_sym__Null_unspecified] = ACTIONS(1629), + [anon_sym___autoreleasing] = ACTIONS(1629), + [anon_sym___nullable] = ACTIONS(1629), + [anon_sym___nonnull] = ACTIONS(1629), + [anon_sym___strong] = ACTIONS(1629), + [anon_sym___weak] = ACTIONS(1629), + [anon_sym___bridge] = ACTIONS(1629), + [anon_sym___bridge_transfer] = ACTIONS(1629), + [anon_sym___bridge_retained] = ACTIONS(1629), + [anon_sym___unsafe_unretained] = ACTIONS(1629), + [anon_sym___block] = ACTIONS(1629), + [anon_sym___kindof] = ACTIONS(1629), + [anon_sym___unused] = ACTIONS(1629), + [anon_sym__Complex] = ACTIONS(1629), + [anon_sym___complex] = ACTIONS(1629), + [anon_sym_IBOutlet] = ACTIONS(1629), + [anon_sym_IBInspectable] = ACTIONS(1629), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1629), + [anon_sym_signed] = ACTIONS(1629), + [anon_sym_unsigned] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [sym_primitive_type] = ACTIONS(1629), + [anon_sym_enum] = ACTIONS(1629), + [anon_sym_struct] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_else] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_case] = ACTIONS(1629), + [anon_sym_default] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_goto] = ACTIONS(1629), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_sizeof] = ACTIONS(1629), + [sym_number_literal] = ACTIONS(1631), + [anon_sym_L_SQUOTE] = ACTIONS(1631), + [anon_sym_u_SQUOTE] = ACTIONS(1631), + [anon_sym_U_SQUOTE] = ACTIONS(1631), + [anon_sym_u8_SQUOTE] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_L_DQUOTE] = ACTIONS(1631), + [anon_sym_u_DQUOTE] = ACTIONS(1631), + [anon_sym_U_DQUOTE] = ACTIONS(1631), + [anon_sym_u8_DQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym_true] = ACTIONS(1629), + [sym_false] = ACTIONS(1629), + [sym_null] = ACTIONS(1629), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1631), + [anon_sym_ATimport] = ACTIONS(1631), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1629), + [anon_sym_ATcompatibility_alias] = ACTIONS(1631), + [anon_sym_ATprotocol] = ACTIONS(1631), + [anon_sym_ATclass] = ACTIONS(1631), + [anon_sym_ATinterface] = ACTIONS(1631), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1629), + [sym_method_attribute_specifier] = ACTIONS(1629), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1629), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1629), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1629), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1629), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1629), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1629), + [anon_sym_NS_AVAILABLE] = ACTIONS(1629), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1629), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1629), + [anon_sym_API_AVAILABLE] = ACTIONS(1629), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1629), + [anon_sym_API_DEPRECATED] = ACTIONS(1629), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1629), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1629), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1629), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1629), + [anon_sym___deprecated_msg] = ACTIONS(1629), + [anon_sym___deprecated_enum_msg] = ACTIONS(1629), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1629), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1629), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1629), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1629), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1629), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1629), + [anon_sym_ATimplementation] = ACTIONS(1631), + [anon_sym_NS_ENUM] = ACTIONS(1629), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1629), + [anon_sym_NS_OPTIONS] = ACTIONS(1629), + [anon_sym_typeof] = ACTIONS(1629), + [anon_sym___typeof] = ACTIONS(1629), + [anon_sym___typeof__] = ACTIONS(1629), + [sym_self] = ACTIONS(1629), + [sym_super] = ACTIONS(1629), + [sym_nil] = ACTIONS(1629), + [sym_id] = ACTIONS(1629), + [sym_instancetype] = ACTIONS(1629), + [sym_Class] = ACTIONS(1629), + [sym_SEL] = ACTIONS(1629), + [sym_IMP] = ACTIONS(1629), + [sym_BOOL] = ACTIONS(1629), + [sym_auto] = ACTIONS(1629), + [anon_sym_ATautoreleasepool] = ACTIONS(1631), + [anon_sym_ATsynchronized] = ACTIONS(1631), + [anon_sym_ATtry] = ACTIONS(1631), + [anon_sym_ATcatch] = ACTIONS(1631), + [anon_sym_ATfinally] = ACTIONS(1631), + [anon_sym_ATthrow] = ACTIONS(1631), + [anon_sym_ATselector] = ACTIONS(1631), + [anon_sym_ATencode] = ACTIONS(1631), + [anon_sym_AT] = ACTIONS(1629), + [sym_YES] = ACTIONS(1629), + [sym_NO] = ACTIONS(1629), + [anon_sym___builtin_available] = ACTIONS(1629), + [anon_sym_ATavailable] = ACTIONS(1631), + [anon_sym_va_arg] = ACTIONS(1629), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [447] = { + [sym_identifier] = ACTIONS(1633), + [aux_sym_preproc_include_token1] = ACTIONS(1635), + [aux_sym_preproc_def_token1] = ACTIONS(1635), + [aux_sym_preproc_if_token1] = ACTIONS(1633), + [aux_sym_preproc_if_token2] = ACTIONS(1633), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1633), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1633), + [anon_sym_LPAREN2] = ACTIONS(1635), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_CARET] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1635), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_typedef] = ACTIONS(1633), + [anon_sym_extern] = ACTIONS(1633), + [anon_sym___attribute] = ACTIONS(1633), + [anon_sym___attribute__] = ACTIONS(1633), + [anon_sym___declspec] = ACTIONS(1633), + [anon_sym___cdecl] = ACTIONS(1633), + [anon_sym___clrcall] = ACTIONS(1633), + [anon_sym___stdcall] = ACTIONS(1633), + [anon_sym___fastcall] = ACTIONS(1633), + [anon_sym___thiscall] = ACTIONS(1633), + [anon_sym___vectorcall] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1635), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_auto] = ACTIONS(1633), + [anon_sym_register] = ACTIONS(1633), + [anon_sym_inline] = ACTIONS(1633), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_volatile] = ACTIONS(1633), + [anon_sym_restrict] = ACTIONS(1633), + [anon_sym__Atomic] = ACTIONS(1633), + [anon_sym_in] = ACTIONS(1633), + [anon_sym_out] = ACTIONS(1633), + [anon_sym_inout] = ACTIONS(1633), + [anon_sym_bycopy] = ACTIONS(1633), + [anon_sym_byref] = ACTIONS(1633), + [anon_sym_oneway] = ACTIONS(1633), + [anon_sym__Nullable] = ACTIONS(1633), + [anon_sym__Nonnull] = ACTIONS(1633), + [anon_sym__Nullable_result] = ACTIONS(1633), + [anon_sym__Null_unspecified] = ACTIONS(1633), + [anon_sym___autoreleasing] = ACTIONS(1633), + [anon_sym___nullable] = ACTIONS(1633), + [anon_sym___nonnull] = ACTIONS(1633), + [anon_sym___strong] = ACTIONS(1633), + [anon_sym___weak] = ACTIONS(1633), + [anon_sym___bridge] = ACTIONS(1633), + [anon_sym___bridge_transfer] = ACTIONS(1633), + [anon_sym___bridge_retained] = ACTIONS(1633), + [anon_sym___unsafe_unretained] = ACTIONS(1633), + [anon_sym___block] = ACTIONS(1633), + [anon_sym___kindof] = ACTIONS(1633), + [anon_sym___unused] = ACTIONS(1633), + [anon_sym__Complex] = ACTIONS(1633), + [anon_sym___complex] = ACTIONS(1633), + [anon_sym_IBOutlet] = ACTIONS(1633), + [anon_sym_IBInspectable] = ACTIONS(1633), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1633), + [anon_sym_signed] = ACTIONS(1633), + [anon_sym_unsigned] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [sym_primitive_type] = ACTIONS(1633), + [anon_sym_enum] = ACTIONS(1633), + [anon_sym_struct] = ACTIONS(1633), + [anon_sym_union] = ACTIONS(1633), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_else] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_case] = ACTIONS(1633), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_goto] = ACTIONS(1633), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_sizeof] = ACTIONS(1633), + [sym_number_literal] = ACTIONS(1635), + [anon_sym_L_SQUOTE] = ACTIONS(1635), + [anon_sym_u_SQUOTE] = ACTIONS(1635), + [anon_sym_U_SQUOTE] = ACTIONS(1635), + [anon_sym_u8_SQUOTE] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_L_DQUOTE] = ACTIONS(1635), + [anon_sym_u_DQUOTE] = ACTIONS(1635), + [anon_sym_U_DQUOTE] = ACTIONS(1635), + [anon_sym_u8_DQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [sym_true] = ACTIONS(1633), + [sym_false] = ACTIONS(1633), + [sym_null] = ACTIONS(1633), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1635), + [anon_sym_ATimport] = ACTIONS(1635), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1633), + [anon_sym_ATcompatibility_alias] = ACTIONS(1635), + [anon_sym_ATprotocol] = ACTIONS(1635), + [anon_sym_ATclass] = ACTIONS(1635), + [anon_sym_ATinterface] = ACTIONS(1635), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1633), + [sym_method_attribute_specifier] = ACTIONS(1633), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1633), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1633), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1633), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1633), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1633), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1633), + [anon_sym_NS_AVAILABLE] = ACTIONS(1633), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1633), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1633), + [anon_sym_API_AVAILABLE] = ACTIONS(1633), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1633), + [anon_sym_API_DEPRECATED] = ACTIONS(1633), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1633), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1633), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1633), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1633), + [anon_sym___deprecated_msg] = ACTIONS(1633), + [anon_sym___deprecated_enum_msg] = ACTIONS(1633), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1633), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1633), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1633), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1633), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1633), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1633), + [anon_sym_ATimplementation] = ACTIONS(1635), + [anon_sym_NS_ENUM] = ACTIONS(1633), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1633), + [anon_sym_NS_OPTIONS] = ACTIONS(1633), + [anon_sym_typeof] = ACTIONS(1633), + [anon_sym___typeof] = ACTIONS(1633), + [anon_sym___typeof__] = ACTIONS(1633), + [sym_self] = ACTIONS(1633), + [sym_super] = ACTIONS(1633), + [sym_nil] = ACTIONS(1633), + [sym_id] = ACTIONS(1633), + [sym_instancetype] = ACTIONS(1633), + [sym_Class] = ACTIONS(1633), + [sym_SEL] = ACTIONS(1633), + [sym_IMP] = ACTIONS(1633), + [sym_BOOL] = ACTIONS(1633), + [sym_auto] = ACTIONS(1633), + [anon_sym_ATautoreleasepool] = ACTIONS(1635), + [anon_sym_ATsynchronized] = ACTIONS(1635), + [anon_sym_ATtry] = ACTIONS(1635), + [anon_sym_ATcatch] = ACTIONS(1635), + [anon_sym_ATfinally] = ACTIONS(1635), + [anon_sym_ATthrow] = ACTIONS(1635), + [anon_sym_ATselector] = ACTIONS(1635), + [anon_sym_ATencode] = ACTIONS(1635), + [anon_sym_AT] = ACTIONS(1633), + [sym_YES] = ACTIONS(1633), + [sym_NO] = ACTIONS(1633), + [anon_sym___builtin_available] = ACTIONS(1633), + [anon_sym_ATavailable] = ACTIONS(1635), + [anon_sym_va_arg] = ACTIONS(1633), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [448] = { + [sym_identifier] = ACTIONS(1407), + [aux_sym_preproc_include_token1] = ACTIONS(1409), + [aux_sym_preproc_def_token1] = ACTIONS(1409), + [aux_sym_preproc_if_token1] = ACTIONS(1407), + [aux_sym_preproc_if_token2] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1407), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1407), + [anon_sym_LPAREN2] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(1407), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1409), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym_typedef] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym___attribute] = ACTIONS(1407), + [anon_sym___attribute__] = ACTIONS(1407), + [anon_sym___declspec] = ACTIONS(1407), + [anon_sym___cdecl] = ACTIONS(1407), + [anon_sym___clrcall] = ACTIONS(1407), + [anon_sym___stdcall] = ACTIONS(1407), + [anon_sym___fastcall] = ACTIONS(1407), + [anon_sym___thiscall] = ACTIONS(1407), + [anon_sym___vectorcall] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_LBRACK] = ACTIONS(1409), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_auto] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_inline] = ACTIONS(1407), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_volatile] = ACTIONS(1407), + [anon_sym_restrict] = ACTIONS(1407), + [anon_sym__Atomic] = ACTIONS(1407), + [anon_sym_in] = ACTIONS(1407), + [anon_sym_out] = ACTIONS(1407), + [anon_sym_inout] = ACTIONS(1407), + [anon_sym_bycopy] = ACTIONS(1407), + [anon_sym_byref] = ACTIONS(1407), + [anon_sym_oneway] = ACTIONS(1407), + [anon_sym__Nullable] = ACTIONS(1407), + [anon_sym__Nonnull] = ACTIONS(1407), + [anon_sym__Nullable_result] = ACTIONS(1407), + [anon_sym__Null_unspecified] = ACTIONS(1407), + [anon_sym___autoreleasing] = ACTIONS(1407), + [anon_sym___nullable] = ACTIONS(1407), + [anon_sym___nonnull] = ACTIONS(1407), + [anon_sym___strong] = ACTIONS(1407), + [anon_sym___weak] = ACTIONS(1407), + [anon_sym___bridge] = ACTIONS(1407), + [anon_sym___bridge_transfer] = ACTIONS(1407), + [anon_sym___bridge_retained] = ACTIONS(1407), + [anon_sym___unsafe_unretained] = ACTIONS(1407), + [anon_sym___block] = ACTIONS(1407), + [anon_sym___kindof] = ACTIONS(1407), + [anon_sym___unused] = ACTIONS(1407), + [anon_sym__Complex] = ACTIONS(1407), + [anon_sym___complex] = ACTIONS(1407), + [anon_sym_IBOutlet] = ACTIONS(1407), + [anon_sym_IBInspectable] = ACTIONS(1407), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1407), + [anon_sym_signed] = ACTIONS(1407), + [anon_sym_unsigned] = ACTIONS(1407), + [anon_sym_long] = ACTIONS(1407), + [anon_sym_short] = ACTIONS(1407), + [sym_primitive_type] = ACTIONS(1407), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1407), + [anon_sym_else] = ACTIONS(1407), + [anon_sym_switch] = ACTIONS(1407), + [anon_sym_case] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1407), + [anon_sym_while] = ACTIONS(1407), + [anon_sym_do] = ACTIONS(1407), + [anon_sym_for] = ACTIONS(1407), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_break] = ACTIONS(1407), + [anon_sym_continue] = ACTIONS(1407), + [anon_sym_goto] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1409), + [anon_sym_sizeof] = ACTIONS(1407), + [sym_number_literal] = ACTIONS(1409), + [anon_sym_L_SQUOTE] = ACTIONS(1409), + [anon_sym_u_SQUOTE] = ACTIONS(1409), + [anon_sym_U_SQUOTE] = ACTIONS(1409), + [anon_sym_u8_SQUOTE] = ACTIONS(1409), + [anon_sym_SQUOTE] = ACTIONS(1409), + [anon_sym_L_DQUOTE] = ACTIONS(1409), + [anon_sym_u_DQUOTE] = ACTIONS(1409), + [anon_sym_U_DQUOTE] = ACTIONS(1409), + [anon_sym_u8_DQUOTE] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1409), + [sym_true] = ACTIONS(1407), + [sym_false] = ACTIONS(1407), + [sym_null] = ACTIONS(1407), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1409), + [anon_sym_ATimport] = ACTIONS(1409), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1407), + [anon_sym_ATcompatibility_alias] = ACTIONS(1409), + [anon_sym_ATprotocol] = ACTIONS(1409), + [anon_sym_ATclass] = ACTIONS(1409), + [anon_sym_ATinterface] = ACTIONS(1409), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1407), + [sym_method_attribute_specifier] = ACTIONS(1407), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1407), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1407), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1407), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1407), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1407), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1407), + [anon_sym_NS_AVAILABLE] = ACTIONS(1407), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1407), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1407), + [anon_sym_API_AVAILABLE] = ACTIONS(1407), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1407), + [anon_sym_API_DEPRECATED] = ACTIONS(1407), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1407), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1407), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1407), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1407), + [anon_sym___deprecated_msg] = ACTIONS(1407), + [anon_sym___deprecated_enum_msg] = ACTIONS(1407), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1407), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1407), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1407), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1407), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1407), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1407), + [anon_sym_ATimplementation] = ACTIONS(1409), + [anon_sym_NS_ENUM] = ACTIONS(1407), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1407), + [anon_sym_NS_OPTIONS] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1407), + [anon_sym___typeof] = ACTIONS(1407), + [anon_sym___typeof__] = ACTIONS(1407), + [sym_self] = ACTIONS(1407), + [sym_super] = ACTIONS(1407), + [sym_nil] = ACTIONS(1407), + [sym_id] = ACTIONS(1407), + [sym_instancetype] = ACTIONS(1407), + [sym_Class] = ACTIONS(1407), + [sym_SEL] = ACTIONS(1407), + [sym_IMP] = ACTIONS(1407), + [sym_BOOL] = ACTIONS(1407), + [sym_auto] = ACTIONS(1407), + [anon_sym_ATautoreleasepool] = ACTIONS(1409), + [anon_sym_ATsynchronized] = ACTIONS(1409), + [anon_sym_ATtry] = ACTIONS(1409), + [anon_sym_ATcatch] = ACTIONS(1409), + [anon_sym_ATfinally] = ACTIONS(1409), + [anon_sym_ATthrow] = ACTIONS(1409), + [anon_sym_ATselector] = ACTIONS(1409), + [anon_sym_ATencode] = ACTIONS(1409), + [anon_sym_AT] = ACTIONS(1407), + [sym_YES] = ACTIONS(1407), + [sym_NO] = ACTIONS(1407), + [anon_sym___builtin_available] = ACTIONS(1407), + [anon_sym_ATavailable] = ACTIONS(1409), + [anon_sym_va_arg] = ACTIONS(1407), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [449] = { + [sym_identifier] = ACTIONS(1387), + [aux_sym_preproc_include_token1] = ACTIONS(1389), + [aux_sym_preproc_def_token1] = ACTIONS(1389), + [aux_sym_preproc_if_token1] = ACTIONS(1387), + [aux_sym_preproc_if_token2] = ACTIONS(1387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1387), + [anon_sym_LPAREN2] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_TILDE] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1387), + [anon_sym_PLUS] = ACTIONS(1387), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_CARET] = ACTIONS(1389), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1389), + [anon_sym_typedef] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym___attribute] = ACTIONS(1387), + [anon_sym___attribute__] = ACTIONS(1387), + [anon_sym___declspec] = ACTIONS(1387), + [anon_sym___cdecl] = ACTIONS(1387), + [anon_sym___clrcall] = ACTIONS(1387), + [anon_sym___stdcall] = ACTIONS(1387), + [anon_sym___fastcall] = ACTIONS(1387), + [anon_sym___thiscall] = ACTIONS(1387), + [anon_sym___vectorcall] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_auto] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_inline] = ACTIONS(1387), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_volatile] = ACTIONS(1387), + [anon_sym_restrict] = ACTIONS(1387), + [anon_sym__Atomic] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_out] = ACTIONS(1387), + [anon_sym_inout] = ACTIONS(1387), + [anon_sym_bycopy] = ACTIONS(1387), + [anon_sym_byref] = ACTIONS(1387), + [anon_sym_oneway] = ACTIONS(1387), + [anon_sym__Nullable] = ACTIONS(1387), + [anon_sym__Nonnull] = ACTIONS(1387), + [anon_sym__Nullable_result] = ACTIONS(1387), + [anon_sym__Null_unspecified] = ACTIONS(1387), + [anon_sym___autoreleasing] = ACTIONS(1387), + [anon_sym___nullable] = ACTIONS(1387), + [anon_sym___nonnull] = ACTIONS(1387), + [anon_sym___strong] = ACTIONS(1387), + [anon_sym___weak] = ACTIONS(1387), + [anon_sym___bridge] = ACTIONS(1387), + [anon_sym___bridge_transfer] = ACTIONS(1387), + [anon_sym___bridge_retained] = ACTIONS(1387), + [anon_sym___unsafe_unretained] = ACTIONS(1387), + [anon_sym___block] = ACTIONS(1387), + [anon_sym___kindof] = ACTIONS(1387), + [anon_sym___unused] = ACTIONS(1387), + [anon_sym__Complex] = ACTIONS(1387), + [anon_sym___complex] = ACTIONS(1387), + [anon_sym_IBOutlet] = ACTIONS(1387), + [anon_sym_IBInspectable] = ACTIONS(1387), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1387), + [anon_sym_signed] = ACTIONS(1387), + [anon_sym_unsigned] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [sym_primitive_type] = ACTIONS(1387), + [anon_sym_enum] = ACTIONS(1387), + [anon_sym_struct] = ACTIONS(1387), + [anon_sym_union] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_switch] = ACTIONS(1387), + [anon_sym_case] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_do] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_goto] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1389), + [anon_sym_sizeof] = ACTIONS(1387), + [sym_number_literal] = ACTIONS(1389), + [anon_sym_L_SQUOTE] = ACTIONS(1389), + [anon_sym_u_SQUOTE] = ACTIONS(1389), + [anon_sym_U_SQUOTE] = ACTIONS(1389), + [anon_sym_u8_SQUOTE] = ACTIONS(1389), + [anon_sym_SQUOTE] = ACTIONS(1389), + [anon_sym_L_DQUOTE] = ACTIONS(1389), + [anon_sym_u_DQUOTE] = ACTIONS(1389), + [anon_sym_U_DQUOTE] = ACTIONS(1389), + [anon_sym_u8_DQUOTE] = ACTIONS(1389), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym_true] = ACTIONS(1387), + [sym_false] = ACTIONS(1387), + [sym_null] = ACTIONS(1387), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1389), + [anon_sym_ATimport] = ACTIONS(1389), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1387), + [anon_sym_ATcompatibility_alias] = ACTIONS(1389), + [anon_sym_ATprotocol] = ACTIONS(1389), + [anon_sym_ATclass] = ACTIONS(1389), + [anon_sym_ATinterface] = ACTIONS(1389), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1387), + [sym_method_attribute_specifier] = ACTIONS(1387), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1387), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1387), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1387), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1387), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1387), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1387), + [anon_sym_NS_AVAILABLE] = ACTIONS(1387), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1387), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1387), + [anon_sym_API_AVAILABLE] = ACTIONS(1387), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1387), + [anon_sym_API_DEPRECATED] = ACTIONS(1387), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1387), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1387), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1387), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1387), + [anon_sym___deprecated_msg] = ACTIONS(1387), + [anon_sym___deprecated_enum_msg] = ACTIONS(1387), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1387), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1387), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1387), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1387), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1387), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1387), + [anon_sym_ATimplementation] = ACTIONS(1389), + [anon_sym_NS_ENUM] = ACTIONS(1387), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1387), + [anon_sym_NS_OPTIONS] = ACTIONS(1387), + [anon_sym_typeof] = ACTIONS(1387), + [anon_sym___typeof] = ACTIONS(1387), + [anon_sym___typeof__] = ACTIONS(1387), + [sym_self] = ACTIONS(1387), + [sym_super] = ACTIONS(1387), + [sym_nil] = ACTIONS(1387), + [sym_id] = ACTIONS(1387), + [sym_instancetype] = ACTIONS(1387), + [sym_Class] = ACTIONS(1387), + [sym_SEL] = ACTIONS(1387), + [sym_IMP] = ACTIONS(1387), + [sym_BOOL] = ACTIONS(1387), + [sym_auto] = ACTIONS(1387), + [anon_sym_ATautoreleasepool] = ACTIONS(1389), + [anon_sym_ATsynchronized] = ACTIONS(1389), + [anon_sym_ATtry] = ACTIONS(1389), + [anon_sym_ATcatch] = ACTIONS(1389), + [anon_sym_ATfinally] = ACTIONS(1389), + [anon_sym_ATthrow] = ACTIONS(1389), + [anon_sym_ATselector] = ACTIONS(1389), + [anon_sym_ATencode] = ACTIONS(1389), + [anon_sym_AT] = ACTIONS(1387), + [sym_YES] = ACTIONS(1387), + [sym_NO] = ACTIONS(1387), + [anon_sym___builtin_available] = ACTIONS(1387), + [anon_sym_ATavailable] = ACTIONS(1389), + [anon_sym_va_arg] = ACTIONS(1387), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [450] = { + [sym_identifier] = ACTIONS(1205), + [aux_sym_preproc_include_token1] = ACTIONS(1203), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [aux_sym_preproc_if_token1] = ACTIONS(1205), + [aux_sym_preproc_if_token2] = ACTIONS(1205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1205), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1205), + [anon_sym_LPAREN2] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(1205), + [anon_sym___attribute] = ACTIONS(1205), + [anon_sym___attribute__] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1205), + [anon_sym___cdecl] = ACTIONS(1205), + [anon_sym___clrcall] = ACTIONS(1205), + [anon_sym___stdcall] = ACTIONS(1205), + [anon_sym___fastcall] = ACTIONS(1205), + [anon_sym___thiscall] = ACTIONS(1205), + [anon_sym___vectorcall] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1203), + [anon_sym_LBRACK] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1205), + [anon_sym_auto] = ACTIONS(1205), + [anon_sym_register] = ACTIONS(1205), + [anon_sym_inline] = ACTIONS(1205), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1205), + [anon_sym_const] = ACTIONS(1205), + [anon_sym_volatile] = ACTIONS(1205), + [anon_sym_restrict] = ACTIONS(1205), + [anon_sym__Atomic] = ACTIONS(1205), + [anon_sym_in] = ACTIONS(1205), + [anon_sym_out] = ACTIONS(1205), + [anon_sym_inout] = ACTIONS(1205), + [anon_sym_bycopy] = ACTIONS(1205), + [anon_sym_byref] = ACTIONS(1205), + [anon_sym_oneway] = ACTIONS(1205), + [anon_sym__Nullable] = ACTIONS(1205), + [anon_sym__Nonnull] = ACTIONS(1205), + [anon_sym__Nullable_result] = ACTIONS(1205), + [anon_sym__Null_unspecified] = ACTIONS(1205), + [anon_sym___autoreleasing] = ACTIONS(1205), + [anon_sym___nullable] = ACTIONS(1205), + [anon_sym___nonnull] = ACTIONS(1205), + [anon_sym___strong] = ACTIONS(1205), + [anon_sym___weak] = ACTIONS(1205), + [anon_sym___bridge] = ACTIONS(1205), + [anon_sym___bridge_transfer] = ACTIONS(1205), + [anon_sym___bridge_retained] = ACTIONS(1205), + [anon_sym___unsafe_unretained] = ACTIONS(1205), + [anon_sym___block] = ACTIONS(1205), + [anon_sym___kindof] = ACTIONS(1205), + [anon_sym___unused] = ACTIONS(1205), + [anon_sym__Complex] = ACTIONS(1205), + [anon_sym___complex] = ACTIONS(1205), + [anon_sym_IBOutlet] = ACTIONS(1205), + [anon_sym_IBInspectable] = ACTIONS(1205), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1205), + [anon_sym_unsigned] = ACTIONS(1205), + [anon_sym_long] = ACTIONS(1205), + [anon_sym_short] = ACTIONS(1205), + [sym_primitive_type] = ACTIONS(1205), + [anon_sym_enum] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1205), + [anon_sym_union] = ACTIONS(1205), + [anon_sym_if] = ACTIONS(1205), + [anon_sym_else] = ACTIONS(1205), + [anon_sym_switch] = ACTIONS(1205), + [anon_sym_case] = ACTIONS(1205), + [anon_sym_default] = ACTIONS(1205), + [anon_sym_while] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(1205), + [anon_sym_for] = ACTIONS(1205), + [anon_sym_return] = ACTIONS(1205), + [anon_sym_break] = ACTIONS(1205), + [anon_sym_continue] = ACTIONS(1205), + [anon_sym_goto] = ACTIONS(1205), + [anon_sym_DASH_DASH] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1203), + [anon_sym_sizeof] = ACTIONS(1205), + [sym_number_literal] = ACTIONS(1203), + [anon_sym_L_SQUOTE] = ACTIONS(1203), + [anon_sym_u_SQUOTE] = ACTIONS(1203), + [anon_sym_U_SQUOTE] = ACTIONS(1203), + [anon_sym_u8_SQUOTE] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1203), + [anon_sym_L_DQUOTE] = ACTIONS(1203), + [anon_sym_u_DQUOTE] = ACTIONS(1203), + [anon_sym_U_DQUOTE] = ACTIONS(1203), + [anon_sym_u8_DQUOTE] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1203), + [sym_true] = ACTIONS(1205), + [sym_false] = ACTIONS(1205), + [sym_null] = ACTIONS(1205), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1203), + [anon_sym_ATimport] = ACTIONS(1203), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1205), + [anon_sym_ATcompatibility_alias] = ACTIONS(1203), + [anon_sym_ATprotocol] = ACTIONS(1203), + [anon_sym_ATclass] = ACTIONS(1203), + [anon_sym_ATinterface] = ACTIONS(1203), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1205), + [sym_method_attribute_specifier] = ACTIONS(1205), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1205), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1205), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1205), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1205), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1205), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1205), + [anon_sym_NS_AVAILABLE] = ACTIONS(1205), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1205), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1205), + [anon_sym_API_AVAILABLE] = ACTIONS(1205), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1205), + [anon_sym_API_DEPRECATED] = ACTIONS(1205), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1205), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1205), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1205), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1205), + [anon_sym___deprecated_msg] = ACTIONS(1205), + [anon_sym___deprecated_enum_msg] = ACTIONS(1205), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1205), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1205), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1205), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1205), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1205), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1205), + [anon_sym_ATimplementation] = ACTIONS(1203), + [anon_sym_NS_ENUM] = ACTIONS(1205), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1205), + [anon_sym_NS_OPTIONS] = ACTIONS(1205), + [anon_sym_typeof] = ACTIONS(1205), + [anon_sym___typeof] = ACTIONS(1205), + [anon_sym___typeof__] = ACTIONS(1205), + [sym_self] = ACTIONS(1205), + [sym_super] = ACTIONS(1205), + [sym_nil] = ACTIONS(1205), + [sym_id] = ACTIONS(1205), + [sym_instancetype] = ACTIONS(1205), + [sym_Class] = ACTIONS(1205), + [sym_SEL] = ACTIONS(1205), + [sym_IMP] = ACTIONS(1205), + [sym_BOOL] = ACTIONS(1205), + [sym_auto] = ACTIONS(1205), + [anon_sym_ATautoreleasepool] = ACTIONS(1203), + [anon_sym_ATsynchronized] = ACTIONS(1203), + [anon_sym_ATtry] = ACTIONS(1203), + [anon_sym_ATcatch] = ACTIONS(1203), + [anon_sym_ATfinally] = ACTIONS(1203), + [anon_sym_ATthrow] = ACTIONS(1203), + [anon_sym_ATselector] = ACTIONS(1203), + [anon_sym_ATencode] = ACTIONS(1203), + [anon_sym_AT] = ACTIONS(1205), + [sym_YES] = ACTIONS(1205), + [sym_NO] = ACTIONS(1205), + [anon_sym___builtin_available] = ACTIONS(1205), + [anon_sym_ATavailable] = ACTIONS(1203), + [anon_sym_va_arg] = ACTIONS(1205), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [451] = { + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_include_token1] = ACTIONS(1207), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [aux_sym_preproc_if_token1] = ACTIONS(1209), + [aux_sym_preproc_if_token2] = ACTIONS(1209), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1209), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1209), + [anon_sym_LPAREN2] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1207), + [anon_sym_AMP] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(1209), + [anon_sym___attribute] = ACTIONS(1209), + [anon_sym___attribute__] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1209), + [anon_sym___cdecl] = ACTIONS(1209), + [anon_sym___clrcall] = ACTIONS(1209), + [anon_sym___stdcall] = ACTIONS(1209), + [anon_sym___fastcall] = ACTIONS(1209), + [anon_sym___thiscall] = ACTIONS(1209), + [anon_sym___vectorcall] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_static] = ACTIONS(1209), + [anon_sym_auto] = ACTIONS(1209), + [anon_sym_register] = ACTIONS(1209), + [anon_sym_inline] = ACTIONS(1209), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1209), + [anon_sym_volatile] = ACTIONS(1209), + [anon_sym_restrict] = ACTIONS(1209), + [anon_sym__Atomic] = ACTIONS(1209), + [anon_sym_in] = ACTIONS(1209), + [anon_sym_out] = ACTIONS(1209), + [anon_sym_inout] = ACTIONS(1209), + [anon_sym_bycopy] = ACTIONS(1209), + [anon_sym_byref] = ACTIONS(1209), + [anon_sym_oneway] = ACTIONS(1209), + [anon_sym__Nullable] = ACTIONS(1209), + [anon_sym__Nonnull] = ACTIONS(1209), + [anon_sym__Nullable_result] = ACTIONS(1209), + [anon_sym__Null_unspecified] = ACTIONS(1209), + [anon_sym___autoreleasing] = ACTIONS(1209), + [anon_sym___nullable] = ACTIONS(1209), + [anon_sym___nonnull] = ACTIONS(1209), + [anon_sym___strong] = ACTIONS(1209), + [anon_sym___weak] = ACTIONS(1209), + [anon_sym___bridge] = ACTIONS(1209), + [anon_sym___bridge_transfer] = ACTIONS(1209), + [anon_sym___bridge_retained] = ACTIONS(1209), + [anon_sym___unsafe_unretained] = ACTIONS(1209), + [anon_sym___block] = ACTIONS(1209), + [anon_sym___kindof] = ACTIONS(1209), + [anon_sym___unused] = ACTIONS(1209), + [anon_sym__Complex] = ACTIONS(1209), + [anon_sym___complex] = ACTIONS(1209), + [anon_sym_IBOutlet] = ACTIONS(1209), + [anon_sym_IBInspectable] = ACTIONS(1209), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1209), + [anon_sym_unsigned] = ACTIONS(1209), + [anon_sym_long] = ACTIONS(1209), + [anon_sym_short] = ACTIONS(1209), + [sym_primitive_type] = ACTIONS(1209), + [anon_sym_enum] = ACTIONS(1209), + [anon_sym_struct] = ACTIONS(1209), + [anon_sym_union] = ACTIONS(1209), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_else] = ACTIONS(1209), + [anon_sym_switch] = ACTIONS(1209), + [anon_sym_case] = ACTIONS(1209), + [anon_sym_default] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1209), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_for] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1209), + [anon_sym_break] = ACTIONS(1209), + [anon_sym_continue] = ACTIONS(1209), + [anon_sym_goto] = ACTIONS(1209), + [anon_sym_DASH_DASH] = ACTIONS(1207), + [anon_sym_PLUS_PLUS] = ACTIONS(1207), + [anon_sym_sizeof] = ACTIONS(1209), + [sym_number_literal] = ACTIONS(1207), + [anon_sym_L_SQUOTE] = ACTIONS(1207), + [anon_sym_u_SQUOTE] = ACTIONS(1207), + [anon_sym_U_SQUOTE] = ACTIONS(1207), + [anon_sym_u8_SQUOTE] = ACTIONS(1207), + [anon_sym_SQUOTE] = ACTIONS(1207), + [anon_sym_L_DQUOTE] = ACTIONS(1207), + [anon_sym_u_DQUOTE] = ACTIONS(1207), + [anon_sym_U_DQUOTE] = ACTIONS(1207), + [anon_sym_u8_DQUOTE] = ACTIONS(1207), + [anon_sym_DQUOTE] = ACTIONS(1207), + [sym_true] = ACTIONS(1209), + [sym_false] = ACTIONS(1209), + [sym_null] = ACTIONS(1209), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1207), + [anon_sym_ATimport] = ACTIONS(1207), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1209), + [anon_sym_ATcompatibility_alias] = ACTIONS(1207), + [anon_sym_ATprotocol] = ACTIONS(1207), + [anon_sym_ATclass] = ACTIONS(1207), + [anon_sym_ATinterface] = ACTIONS(1207), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1209), + [sym_method_attribute_specifier] = ACTIONS(1209), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1209), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1209), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1209), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1209), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1209), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1209), + [anon_sym_NS_AVAILABLE] = ACTIONS(1209), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1209), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1209), + [anon_sym_API_AVAILABLE] = ACTIONS(1209), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1209), + [anon_sym_API_DEPRECATED] = ACTIONS(1209), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1209), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1209), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1209), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1209), + [anon_sym___deprecated_msg] = ACTIONS(1209), + [anon_sym___deprecated_enum_msg] = ACTIONS(1209), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1209), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1209), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1209), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1209), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1209), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1209), + [anon_sym_ATimplementation] = ACTIONS(1207), + [anon_sym_NS_ENUM] = ACTIONS(1209), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1209), + [anon_sym_NS_OPTIONS] = ACTIONS(1209), + [anon_sym_typeof] = ACTIONS(1209), + [anon_sym___typeof] = ACTIONS(1209), + [anon_sym___typeof__] = ACTIONS(1209), + [sym_self] = ACTIONS(1209), + [sym_super] = ACTIONS(1209), + [sym_nil] = ACTIONS(1209), + [sym_id] = ACTIONS(1209), + [sym_instancetype] = ACTIONS(1209), + [sym_Class] = ACTIONS(1209), + [sym_SEL] = ACTIONS(1209), + [sym_IMP] = ACTIONS(1209), + [sym_BOOL] = ACTIONS(1209), + [sym_auto] = ACTIONS(1209), + [anon_sym_ATautoreleasepool] = ACTIONS(1207), + [anon_sym_ATsynchronized] = ACTIONS(1207), + [anon_sym_ATtry] = ACTIONS(1207), + [anon_sym_ATcatch] = ACTIONS(1207), + [anon_sym_ATfinally] = ACTIONS(1207), + [anon_sym_ATthrow] = ACTIONS(1207), + [anon_sym_ATselector] = ACTIONS(1207), + [anon_sym_ATencode] = ACTIONS(1207), + [anon_sym_AT] = ACTIONS(1209), + [sym_YES] = ACTIONS(1209), + [sym_NO] = ACTIONS(1209), + [anon_sym___builtin_available] = ACTIONS(1209), + [anon_sym_ATavailable] = ACTIONS(1207), + [anon_sym_va_arg] = ACTIONS(1209), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [452] = { + [sym_identifier] = ACTIONS(1213), + [aux_sym_preproc_include_token1] = ACTIONS(1211), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [aux_sym_preproc_if_token1] = ACTIONS(1213), + [aux_sym_preproc_if_token2] = ACTIONS(1213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1213), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1213), + [anon_sym_LPAREN2] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_typedef] = ACTIONS(1213), + [anon_sym_extern] = ACTIONS(1213), + [anon_sym___attribute] = ACTIONS(1213), + [anon_sym___attribute__] = ACTIONS(1213), + [anon_sym___declspec] = ACTIONS(1213), + [anon_sym___cdecl] = ACTIONS(1213), + [anon_sym___clrcall] = ACTIONS(1213), + [anon_sym___stdcall] = ACTIONS(1213), + [anon_sym___fastcall] = ACTIONS(1213), + [anon_sym___thiscall] = ACTIONS(1213), + [anon_sym___vectorcall] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1213), + [anon_sym_auto] = ACTIONS(1213), + [anon_sym_register] = ACTIONS(1213), + [anon_sym_inline] = ACTIONS(1213), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1213), + [anon_sym_const] = ACTIONS(1213), + [anon_sym_volatile] = ACTIONS(1213), + [anon_sym_restrict] = ACTIONS(1213), + [anon_sym__Atomic] = ACTIONS(1213), + [anon_sym_in] = ACTIONS(1213), + [anon_sym_out] = ACTIONS(1213), + [anon_sym_inout] = ACTIONS(1213), + [anon_sym_bycopy] = ACTIONS(1213), + [anon_sym_byref] = ACTIONS(1213), + [anon_sym_oneway] = ACTIONS(1213), + [anon_sym__Nullable] = ACTIONS(1213), + [anon_sym__Nonnull] = ACTIONS(1213), + [anon_sym__Nullable_result] = ACTIONS(1213), + [anon_sym__Null_unspecified] = ACTIONS(1213), + [anon_sym___autoreleasing] = ACTIONS(1213), + [anon_sym___nullable] = ACTIONS(1213), + [anon_sym___nonnull] = ACTIONS(1213), + [anon_sym___strong] = ACTIONS(1213), + [anon_sym___weak] = ACTIONS(1213), + [anon_sym___bridge] = ACTIONS(1213), + [anon_sym___bridge_transfer] = ACTIONS(1213), + [anon_sym___bridge_retained] = ACTIONS(1213), + [anon_sym___unsafe_unretained] = ACTIONS(1213), + [anon_sym___block] = ACTIONS(1213), + [anon_sym___kindof] = ACTIONS(1213), + [anon_sym___unused] = ACTIONS(1213), + [anon_sym__Complex] = ACTIONS(1213), + [anon_sym___complex] = ACTIONS(1213), + [anon_sym_IBOutlet] = ACTIONS(1213), + [anon_sym_IBInspectable] = ACTIONS(1213), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1213), + [anon_sym_signed] = ACTIONS(1213), + [anon_sym_unsigned] = ACTIONS(1213), + [anon_sym_long] = ACTIONS(1213), + [anon_sym_short] = ACTIONS(1213), + [sym_primitive_type] = ACTIONS(1213), + [anon_sym_enum] = ACTIONS(1213), + [anon_sym_struct] = ACTIONS(1213), + [anon_sym_union] = ACTIONS(1213), + [anon_sym_if] = ACTIONS(1213), + [anon_sym_else] = ACTIONS(1213), + [anon_sym_switch] = ACTIONS(1213), + [anon_sym_case] = ACTIONS(1213), + [anon_sym_default] = ACTIONS(1213), + [anon_sym_while] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_for] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_break] = ACTIONS(1213), + [anon_sym_continue] = ACTIONS(1213), + [anon_sym_goto] = ACTIONS(1213), + [anon_sym_DASH_DASH] = ACTIONS(1211), + [anon_sym_PLUS_PLUS] = ACTIONS(1211), + [anon_sym_sizeof] = ACTIONS(1213), + [sym_number_literal] = ACTIONS(1211), + [anon_sym_L_SQUOTE] = ACTIONS(1211), + [anon_sym_u_SQUOTE] = ACTIONS(1211), + [anon_sym_U_SQUOTE] = ACTIONS(1211), + [anon_sym_u8_SQUOTE] = ACTIONS(1211), + [anon_sym_SQUOTE] = ACTIONS(1211), + [anon_sym_L_DQUOTE] = ACTIONS(1211), + [anon_sym_u_DQUOTE] = ACTIONS(1211), + [anon_sym_U_DQUOTE] = ACTIONS(1211), + [anon_sym_u8_DQUOTE] = ACTIONS(1211), + [anon_sym_DQUOTE] = ACTIONS(1211), + [sym_true] = ACTIONS(1213), + [sym_false] = ACTIONS(1213), + [sym_null] = ACTIONS(1213), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1211), + [anon_sym_ATimport] = ACTIONS(1211), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1213), + [anon_sym_ATcompatibility_alias] = ACTIONS(1211), + [anon_sym_ATprotocol] = ACTIONS(1211), + [anon_sym_ATclass] = ACTIONS(1211), + [anon_sym_ATinterface] = ACTIONS(1211), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1213), + [sym_method_attribute_specifier] = ACTIONS(1213), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1213), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1213), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1213), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1213), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1213), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1213), + [anon_sym_NS_AVAILABLE] = ACTIONS(1213), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1213), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1213), + [anon_sym_API_AVAILABLE] = ACTIONS(1213), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1213), + [anon_sym_API_DEPRECATED] = ACTIONS(1213), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1213), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1213), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1213), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1213), + [anon_sym___deprecated_msg] = ACTIONS(1213), + [anon_sym___deprecated_enum_msg] = ACTIONS(1213), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1213), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1213), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1213), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1213), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1213), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1213), + [anon_sym_ATimplementation] = ACTIONS(1211), + [anon_sym_NS_ENUM] = ACTIONS(1213), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1213), + [anon_sym_NS_OPTIONS] = ACTIONS(1213), + [anon_sym_typeof] = ACTIONS(1213), + [anon_sym___typeof] = ACTIONS(1213), + [anon_sym___typeof__] = ACTIONS(1213), + [sym_self] = ACTIONS(1213), + [sym_super] = ACTIONS(1213), + [sym_nil] = ACTIONS(1213), + [sym_id] = ACTIONS(1213), + [sym_instancetype] = ACTIONS(1213), + [sym_Class] = ACTIONS(1213), + [sym_SEL] = ACTIONS(1213), + [sym_IMP] = ACTIONS(1213), + [sym_BOOL] = ACTIONS(1213), + [sym_auto] = ACTIONS(1213), + [anon_sym_ATautoreleasepool] = ACTIONS(1211), + [anon_sym_ATsynchronized] = ACTIONS(1211), + [anon_sym_ATtry] = ACTIONS(1211), + [anon_sym_ATcatch] = ACTIONS(1211), + [anon_sym_ATfinally] = ACTIONS(1211), + [anon_sym_ATthrow] = ACTIONS(1211), + [anon_sym_ATselector] = ACTIONS(1211), + [anon_sym_ATencode] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(1213), + [sym_YES] = ACTIONS(1213), + [sym_NO] = ACTIONS(1213), + [anon_sym___builtin_available] = ACTIONS(1213), + [anon_sym_ATavailable] = ACTIONS(1211), + [anon_sym_va_arg] = ACTIONS(1213), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [453] = { + [sym_identifier] = ACTIONS(1217), + [aux_sym_preproc_include_token1] = ACTIONS(1215), + [aux_sym_preproc_def_token1] = ACTIONS(1215), + [aux_sym_preproc_if_token1] = ACTIONS(1217), + [aux_sym_preproc_if_token2] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1217), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1217), + [anon_sym_LPAREN2] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_TILDE] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_AMP] = ACTIONS(1215), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_typedef] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym___attribute] = ACTIONS(1217), + [anon_sym___attribute__] = ACTIONS(1217), + [anon_sym___declspec] = ACTIONS(1217), + [anon_sym___cdecl] = ACTIONS(1217), + [anon_sym___clrcall] = ACTIONS(1217), + [anon_sym___stdcall] = ACTIONS(1217), + [anon_sym___fastcall] = ACTIONS(1217), + [anon_sym___thiscall] = ACTIONS(1217), + [anon_sym___vectorcall] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1215), + [anon_sym_static] = ACTIONS(1217), + [anon_sym_auto] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_inline] = ACTIONS(1217), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_volatile] = ACTIONS(1217), + [anon_sym_restrict] = ACTIONS(1217), + [anon_sym__Atomic] = ACTIONS(1217), + [anon_sym_in] = ACTIONS(1217), + [anon_sym_out] = ACTIONS(1217), + [anon_sym_inout] = ACTIONS(1217), + [anon_sym_bycopy] = ACTIONS(1217), + [anon_sym_byref] = ACTIONS(1217), + [anon_sym_oneway] = ACTIONS(1217), + [anon_sym__Nullable] = ACTIONS(1217), + [anon_sym__Nonnull] = ACTIONS(1217), + [anon_sym__Nullable_result] = ACTIONS(1217), + [anon_sym__Null_unspecified] = ACTIONS(1217), + [anon_sym___autoreleasing] = ACTIONS(1217), + [anon_sym___nullable] = ACTIONS(1217), + [anon_sym___nonnull] = ACTIONS(1217), + [anon_sym___strong] = ACTIONS(1217), + [anon_sym___weak] = ACTIONS(1217), + [anon_sym___bridge] = ACTIONS(1217), + [anon_sym___bridge_transfer] = ACTIONS(1217), + [anon_sym___bridge_retained] = ACTIONS(1217), + [anon_sym___unsafe_unretained] = ACTIONS(1217), + [anon_sym___block] = ACTIONS(1217), + [anon_sym___kindof] = ACTIONS(1217), + [anon_sym___unused] = ACTIONS(1217), + [anon_sym__Complex] = ACTIONS(1217), + [anon_sym___complex] = ACTIONS(1217), + [anon_sym_IBOutlet] = ACTIONS(1217), + [anon_sym_IBInspectable] = ACTIONS(1217), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1217), + [anon_sym_signed] = ACTIONS(1217), + [anon_sym_unsigned] = ACTIONS(1217), + [anon_sym_long] = ACTIONS(1217), + [anon_sym_short] = ACTIONS(1217), + [sym_primitive_type] = ACTIONS(1217), + [anon_sym_enum] = ACTIONS(1217), + [anon_sym_struct] = ACTIONS(1217), + [anon_sym_union] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_switch] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1217), + [anon_sym_default] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_goto] = ACTIONS(1217), + [anon_sym_DASH_DASH] = ACTIONS(1215), + [anon_sym_PLUS_PLUS] = ACTIONS(1215), + [anon_sym_sizeof] = ACTIONS(1217), + [sym_number_literal] = ACTIONS(1215), + [anon_sym_L_SQUOTE] = ACTIONS(1215), + [anon_sym_u_SQUOTE] = ACTIONS(1215), + [anon_sym_U_SQUOTE] = ACTIONS(1215), + [anon_sym_u8_SQUOTE] = ACTIONS(1215), + [anon_sym_SQUOTE] = ACTIONS(1215), + [anon_sym_L_DQUOTE] = ACTIONS(1215), + [anon_sym_u_DQUOTE] = ACTIONS(1215), + [anon_sym_U_DQUOTE] = ACTIONS(1215), + [anon_sym_u8_DQUOTE] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_null] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1215), + [anon_sym_ATimport] = ACTIONS(1215), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1217), + [anon_sym_ATcompatibility_alias] = ACTIONS(1215), + [anon_sym_ATprotocol] = ACTIONS(1215), + [anon_sym_ATclass] = ACTIONS(1215), + [anon_sym_ATinterface] = ACTIONS(1215), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1217), + [sym_method_attribute_specifier] = ACTIONS(1217), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1217), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1217), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1217), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1217), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1217), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1217), + [anon_sym_NS_AVAILABLE] = ACTIONS(1217), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1217), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1217), + [anon_sym_API_AVAILABLE] = ACTIONS(1217), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1217), + [anon_sym_API_DEPRECATED] = ACTIONS(1217), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1217), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1217), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1217), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1217), + [anon_sym___deprecated_msg] = ACTIONS(1217), + [anon_sym___deprecated_enum_msg] = ACTIONS(1217), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1217), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1217), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1217), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1217), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1217), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1217), + [anon_sym_ATimplementation] = ACTIONS(1215), + [anon_sym_NS_ENUM] = ACTIONS(1217), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1217), + [anon_sym_NS_OPTIONS] = ACTIONS(1217), + [anon_sym_typeof] = ACTIONS(1217), + [anon_sym___typeof] = ACTIONS(1217), + [anon_sym___typeof__] = ACTIONS(1217), + [sym_self] = ACTIONS(1217), + [sym_super] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [sym_id] = ACTIONS(1217), + [sym_instancetype] = ACTIONS(1217), + [sym_Class] = ACTIONS(1217), + [sym_SEL] = ACTIONS(1217), + [sym_IMP] = ACTIONS(1217), + [sym_BOOL] = ACTIONS(1217), + [sym_auto] = ACTIONS(1217), + [anon_sym_ATautoreleasepool] = ACTIONS(1215), + [anon_sym_ATsynchronized] = ACTIONS(1215), + [anon_sym_ATtry] = ACTIONS(1215), + [anon_sym_ATcatch] = ACTIONS(1215), + [anon_sym_ATfinally] = ACTIONS(1215), + [anon_sym_ATthrow] = ACTIONS(1215), + [anon_sym_ATselector] = ACTIONS(1215), + [anon_sym_ATencode] = ACTIONS(1215), + [anon_sym_AT] = ACTIONS(1217), + [sym_YES] = ACTIONS(1217), + [sym_NO] = ACTIONS(1217), + [anon_sym___builtin_available] = ACTIONS(1217), + [anon_sym_ATavailable] = ACTIONS(1215), + [anon_sym_va_arg] = ACTIONS(1217), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [454] = { + [sym_identifier] = ACTIONS(1221), + [aux_sym_preproc_include_token1] = ACTIONS(1219), + [aux_sym_preproc_def_token1] = ACTIONS(1219), + [aux_sym_preproc_if_token1] = ACTIONS(1221), + [aux_sym_preproc_if_token2] = ACTIONS(1221), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1221), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1221), + [anon_sym_LPAREN2] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1219), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_SEMI] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym___attribute] = ACTIONS(1221), + [anon_sym___attribute__] = ACTIONS(1221), + [anon_sym___declspec] = ACTIONS(1221), + [anon_sym___cdecl] = ACTIONS(1221), + [anon_sym___clrcall] = ACTIONS(1221), + [anon_sym___stdcall] = ACTIONS(1221), + [anon_sym___fastcall] = ACTIONS(1221), + [anon_sym___thiscall] = ACTIONS(1221), + [anon_sym___vectorcall] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_static] = ACTIONS(1221), + [anon_sym_auto] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_inline] = ACTIONS(1221), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_volatile] = ACTIONS(1221), + [anon_sym_restrict] = ACTIONS(1221), + [anon_sym__Atomic] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_out] = ACTIONS(1221), + [anon_sym_inout] = ACTIONS(1221), + [anon_sym_bycopy] = ACTIONS(1221), + [anon_sym_byref] = ACTIONS(1221), + [anon_sym_oneway] = ACTIONS(1221), + [anon_sym__Nullable] = ACTIONS(1221), + [anon_sym__Nonnull] = ACTIONS(1221), + [anon_sym__Nullable_result] = ACTIONS(1221), + [anon_sym__Null_unspecified] = ACTIONS(1221), + [anon_sym___autoreleasing] = ACTIONS(1221), + [anon_sym___nullable] = ACTIONS(1221), + [anon_sym___nonnull] = ACTIONS(1221), + [anon_sym___strong] = ACTIONS(1221), + [anon_sym___weak] = ACTIONS(1221), + [anon_sym___bridge] = ACTIONS(1221), + [anon_sym___bridge_transfer] = ACTIONS(1221), + [anon_sym___bridge_retained] = ACTIONS(1221), + [anon_sym___unsafe_unretained] = ACTIONS(1221), + [anon_sym___block] = ACTIONS(1221), + [anon_sym___kindof] = ACTIONS(1221), + [anon_sym___unused] = ACTIONS(1221), + [anon_sym__Complex] = ACTIONS(1221), + [anon_sym___complex] = ACTIONS(1221), + [anon_sym_IBOutlet] = ACTIONS(1221), + [anon_sym_IBInspectable] = ACTIONS(1221), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1221), + [anon_sym_signed] = ACTIONS(1221), + [anon_sym_unsigned] = ACTIONS(1221), + [anon_sym_long] = ACTIONS(1221), + [anon_sym_short] = ACTIONS(1221), + [sym_primitive_type] = ACTIONS(1221), + [anon_sym_enum] = ACTIONS(1221), + [anon_sym_struct] = ACTIONS(1221), + [anon_sym_union] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_else] = ACTIONS(1221), + [anon_sym_switch] = ACTIONS(1221), + [anon_sym_case] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [anon_sym_do] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_goto] = ACTIONS(1221), + [anon_sym_DASH_DASH] = ACTIONS(1219), + [anon_sym_PLUS_PLUS] = ACTIONS(1219), + [anon_sym_sizeof] = ACTIONS(1221), + [sym_number_literal] = ACTIONS(1219), + [anon_sym_L_SQUOTE] = ACTIONS(1219), + [anon_sym_u_SQUOTE] = ACTIONS(1219), + [anon_sym_U_SQUOTE] = ACTIONS(1219), + [anon_sym_u8_SQUOTE] = ACTIONS(1219), + [anon_sym_SQUOTE] = ACTIONS(1219), + [anon_sym_L_DQUOTE] = ACTIONS(1219), + [anon_sym_u_DQUOTE] = ACTIONS(1219), + [anon_sym_U_DQUOTE] = ACTIONS(1219), + [anon_sym_u8_DQUOTE] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_true] = ACTIONS(1221), + [sym_false] = ACTIONS(1221), + [sym_null] = ACTIONS(1221), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1219), + [anon_sym_ATimport] = ACTIONS(1219), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1221), + [anon_sym_ATcompatibility_alias] = ACTIONS(1219), + [anon_sym_ATprotocol] = ACTIONS(1219), + [anon_sym_ATclass] = ACTIONS(1219), + [anon_sym_ATinterface] = ACTIONS(1219), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1221), + [sym_method_attribute_specifier] = ACTIONS(1221), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1221), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1221), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1221), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1221), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1221), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1221), + [anon_sym_NS_AVAILABLE] = ACTIONS(1221), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1221), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1221), + [anon_sym_API_AVAILABLE] = ACTIONS(1221), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1221), + [anon_sym_API_DEPRECATED] = ACTIONS(1221), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1221), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1221), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1221), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1221), + [anon_sym___deprecated_msg] = ACTIONS(1221), + [anon_sym___deprecated_enum_msg] = ACTIONS(1221), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1221), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1221), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1221), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1221), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1221), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1221), + [anon_sym_ATimplementation] = ACTIONS(1219), + [anon_sym_NS_ENUM] = ACTIONS(1221), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1221), + [anon_sym_NS_OPTIONS] = ACTIONS(1221), + [anon_sym_typeof] = ACTIONS(1221), + [anon_sym___typeof] = ACTIONS(1221), + [anon_sym___typeof__] = ACTIONS(1221), + [sym_self] = ACTIONS(1221), + [sym_super] = ACTIONS(1221), + [sym_nil] = ACTIONS(1221), + [sym_id] = ACTIONS(1221), + [sym_instancetype] = ACTIONS(1221), + [sym_Class] = ACTIONS(1221), + [sym_SEL] = ACTIONS(1221), + [sym_IMP] = ACTIONS(1221), + [sym_BOOL] = ACTIONS(1221), + [sym_auto] = ACTIONS(1221), + [anon_sym_ATautoreleasepool] = ACTIONS(1219), + [anon_sym_ATsynchronized] = ACTIONS(1219), + [anon_sym_ATtry] = ACTIONS(1219), + [anon_sym_ATcatch] = ACTIONS(1219), + [anon_sym_ATfinally] = ACTIONS(1219), + [anon_sym_ATthrow] = ACTIONS(1219), + [anon_sym_ATselector] = ACTIONS(1219), + [anon_sym_ATencode] = ACTIONS(1219), + [anon_sym_AT] = ACTIONS(1221), + [sym_YES] = ACTIONS(1221), + [sym_NO] = ACTIONS(1221), + [anon_sym___builtin_available] = ACTIONS(1221), + [anon_sym_ATavailable] = ACTIONS(1219), + [anon_sym_va_arg] = ACTIONS(1221), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [455] = { + [sym_identifier] = ACTIONS(1229), + [aux_sym_preproc_include_token1] = ACTIONS(1227), + [aux_sym_preproc_def_token1] = ACTIONS(1227), + [aux_sym_preproc_if_token1] = ACTIONS(1229), + [aux_sym_preproc_if_token2] = ACTIONS(1229), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1229), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1229), + [anon_sym_LPAREN2] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1227), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_typedef] = ACTIONS(1229), + [anon_sym_extern] = ACTIONS(1229), + [anon_sym___attribute] = ACTIONS(1229), + [anon_sym___attribute__] = ACTIONS(1229), + [anon_sym___declspec] = ACTIONS(1229), + [anon_sym___cdecl] = ACTIONS(1229), + [anon_sym___clrcall] = ACTIONS(1229), + [anon_sym___stdcall] = ACTIONS(1229), + [anon_sym___fastcall] = ACTIONS(1229), + [anon_sym___thiscall] = ACTIONS(1229), + [anon_sym___vectorcall] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_static] = ACTIONS(1229), + [anon_sym_auto] = ACTIONS(1229), + [anon_sym_register] = ACTIONS(1229), + [anon_sym_inline] = ACTIONS(1229), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [anon_sym_volatile] = ACTIONS(1229), + [anon_sym_restrict] = ACTIONS(1229), + [anon_sym__Atomic] = ACTIONS(1229), + [anon_sym_in] = ACTIONS(1229), + [anon_sym_out] = ACTIONS(1229), + [anon_sym_inout] = ACTIONS(1229), + [anon_sym_bycopy] = ACTIONS(1229), + [anon_sym_byref] = ACTIONS(1229), + [anon_sym_oneway] = ACTIONS(1229), + [anon_sym__Nullable] = ACTIONS(1229), + [anon_sym__Nonnull] = ACTIONS(1229), + [anon_sym__Nullable_result] = ACTIONS(1229), + [anon_sym__Null_unspecified] = ACTIONS(1229), + [anon_sym___autoreleasing] = ACTIONS(1229), + [anon_sym___nullable] = ACTIONS(1229), + [anon_sym___nonnull] = ACTIONS(1229), + [anon_sym___strong] = ACTIONS(1229), + [anon_sym___weak] = ACTIONS(1229), + [anon_sym___bridge] = ACTIONS(1229), + [anon_sym___bridge_transfer] = ACTIONS(1229), + [anon_sym___bridge_retained] = ACTIONS(1229), + [anon_sym___unsafe_unretained] = ACTIONS(1229), + [anon_sym___block] = ACTIONS(1229), + [anon_sym___kindof] = ACTIONS(1229), + [anon_sym___unused] = ACTIONS(1229), + [anon_sym__Complex] = ACTIONS(1229), + [anon_sym___complex] = ACTIONS(1229), + [anon_sym_IBOutlet] = ACTIONS(1229), + [anon_sym_IBInspectable] = ACTIONS(1229), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1229), + [anon_sym_signed] = ACTIONS(1229), + [anon_sym_unsigned] = ACTIONS(1229), + [anon_sym_long] = ACTIONS(1229), + [anon_sym_short] = ACTIONS(1229), + [sym_primitive_type] = ACTIONS(1229), + [anon_sym_enum] = ACTIONS(1229), + [anon_sym_struct] = ACTIONS(1229), + [anon_sym_union] = ACTIONS(1229), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_else] = ACTIONS(1229), + [anon_sym_switch] = ACTIONS(1229), + [anon_sym_case] = ACTIONS(1229), + [anon_sym_default] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1229), + [anon_sym_do] = ACTIONS(1229), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_continue] = ACTIONS(1229), + [anon_sym_goto] = ACTIONS(1229), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_sizeof] = ACTIONS(1229), + [sym_number_literal] = ACTIONS(1227), + [anon_sym_L_SQUOTE] = ACTIONS(1227), + [anon_sym_u_SQUOTE] = ACTIONS(1227), + [anon_sym_U_SQUOTE] = ACTIONS(1227), + [anon_sym_u8_SQUOTE] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1227), + [anon_sym_L_DQUOTE] = ACTIONS(1227), + [anon_sym_u_DQUOTE] = ACTIONS(1227), + [anon_sym_U_DQUOTE] = ACTIONS(1227), + [anon_sym_u8_DQUOTE] = ACTIONS(1227), + [anon_sym_DQUOTE] = ACTIONS(1227), + [sym_true] = ACTIONS(1229), + [sym_false] = ACTIONS(1229), + [sym_null] = ACTIONS(1229), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1227), + [anon_sym_ATimport] = ACTIONS(1227), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1229), + [anon_sym_ATcompatibility_alias] = ACTIONS(1227), + [anon_sym_ATprotocol] = ACTIONS(1227), + [anon_sym_ATclass] = ACTIONS(1227), + [anon_sym_ATinterface] = ACTIONS(1227), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1229), + [sym_method_attribute_specifier] = ACTIONS(1229), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1229), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1229), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1229), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1229), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1229), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1229), + [anon_sym_NS_AVAILABLE] = ACTIONS(1229), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1229), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1229), + [anon_sym_API_AVAILABLE] = ACTIONS(1229), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1229), + [anon_sym_API_DEPRECATED] = ACTIONS(1229), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1229), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1229), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1229), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1229), + [anon_sym___deprecated_msg] = ACTIONS(1229), + [anon_sym___deprecated_enum_msg] = ACTIONS(1229), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1229), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1229), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1229), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1229), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1229), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1229), + [anon_sym_ATimplementation] = ACTIONS(1227), + [anon_sym_NS_ENUM] = ACTIONS(1229), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1229), + [anon_sym_NS_OPTIONS] = ACTIONS(1229), + [anon_sym_typeof] = ACTIONS(1229), + [anon_sym___typeof] = ACTIONS(1229), + [anon_sym___typeof__] = ACTIONS(1229), + [sym_self] = ACTIONS(1229), + [sym_super] = ACTIONS(1229), + [sym_nil] = ACTIONS(1229), + [sym_id] = ACTIONS(1229), + [sym_instancetype] = ACTIONS(1229), + [sym_Class] = ACTIONS(1229), + [sym_SEL] = ACTIONS(1229), + [sym_IMP] = ACTIONS(1229), + [sym_BOOL] = ACTIONS(1229), + [sym_auto] = ACTIONS(1229), + [anon_sym_ATautoreleasepool] = ACTIONS(1227), + [anon_sym_ATsynchronized] = ACTIONS(1227), + [anon_sym_ATtry] = ACTIONS(1227), + [anon_sym_ATcatch] = ACTIONS(1227), + [anon_sym_ATfinally] = ACTIONS(1227), + [anon_sym_ATthrow] = ACTIONS(1227), + [anon_sym_ATselector] = ACTIONS(1227), + [anon_sym_ATencode] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(1229), + [sym_YES] = ACTIONS(1229), + [sym_NO] = ACTIONS(1229), + [anon_sym___builtin_available] = ACTIONS(1229), + [anon_sym_ATavailable] = ACTIONS(1227), + [anon_sym_va_arg] = ACTIONS(1229), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [456] = { + [sym_identifier] = ACTIONS(1645), + [aux_sym_preproc_include_token1] = ACTIONS(1647), + [aux_sym_preproc_def_token1] = ACTIONS(1647), + [aux_sym_preproc_if_token1] = ACTIONS(1645), + [aux_sym_preproc_if_token2] = ACTIONS(1645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1645), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1645), + [anon_sym_LPAREN2] = ACTIONS(1647), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_CARET] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_typedef] = ACTIONS(1645), + [anon_sym_extern] = ACTIONS(1645), + [anon_sym___attribute] = ACTIONS(1645), + [anon_sym___attribute__] = ACTIONS(1645), + [anon_sym___declspec] = ACTIONS(1645), + [anon_sym___cdecl] = ACTIONS(1645), + [anon_sym___clrcall] = ACTIONS(1645), + [anon_sym___stdcall] = ACTIONS(1645), + [anon_sym___fastcall] = ACTIONS(1645), + [anon_sym___thiscall] = ACTIONS(1645), + [anon_sym___vectorcall] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1647), + [anon_sym_static] = ACTIONS(1645), + [anon_sym_auto] = ACTIONS(1645), + [anon_sym_register] = ACTIONS(1645), + [anon_sym_inline] = ACTIONS(1645), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1645), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_volatile] = ACTIONS(1645), + [anon_sym_restrict] = ACTIONS(1645), + [anon_sym__Atomic] = ACTIONS(1645), + [anon_sym_in] = ACTIONS(1645), + [anon_sym_out] = ACTIONS(1645), + [anon_sym_inout] = ACTIONS(1645), + [anon_sym_bycopy] = ACTIONS(1645), + [anon_sym_byref] = ACTIONS(1645), + [anon_sym_oneway] = ACTIONS(1645), + [anon_sym__Nullable] = ACTIONS(1645), + [anon_sym__Nonnull] = ACTIONS(1645), + [anon_sym__Nullable_result] = ACTIONS(1645), + [anon_sym__Null_unspecified] = ACTIONS(1645), + [anon_sym___autoreleasing] = ACTIONS(1645), + [anon_sym___nullable] = ACTIONS(1645), + [anon_sym___nonnull] = ACTIONS(1645), + [anon_sym___strong] = ACTIONS(1645), + [anon_sym___weak] = ACTIONS(1645), + [anon_sym___bridge] = ACTIONS(1645), + [anon_sym___bridge_transfer] = ACTIONS(1645), + [anon_sym___bridge_retained] = ACTIONS(1645), + [anon_sym___unsafe_unretained] = ACTIONS(1645), + [anon_sym___block] = ACTIONS(1645), + [anon_sym___kindof] = ACTIONS(1645), + [anon_sym___unused] = ACTIONS(1645), + [anon_sym__Complex] = ACTIONS(1645), + [anon_sym___complex] = ACTIONS(1645), + [anon_sym_IBOutlet] = ACTIONS(1645), + [anon_sym_IBInspectable] = ACTIONS(1645), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1645), + [anon_sym_signed] = ACTIONS(1645), + [anon_sym_unsigned] = ACTIONS(1645), + [anon_sym_long] = ACTIONS(1645), + [anon_sym_short] = ACTIONS(1645), + [sym_primitive_type] = ACTIONS(1645), + [anon_sym_enum] = ACTIONS(1645), + [anon_sym_struct] = ACTIONS(1645), + [anon_sym_union] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1645), + [anon_sym_else] = ACTIONS(1645), + [anon_sym_switch] = ACTIONS(1645), + [anon_sym_case] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1645), + [anon_sym_while] = ACTIONS(1645), + [anon_sym_do] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_return] = ACTIONS(1645), + [anon_sym_break] = ACTIONS(1645), + [anon_sym_continue] = ACTIONS(1645), + [anon_sym_goto] = ACTIONS(1645), + [anon_sym_DASH_DASH] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1647), + [anon_sym_sizeof] = ACTIONS(1645), + [sym_number_literal] = ACTIONS(1647), + [anon_sym_L_SQUOTE] = ACTIONS(1647), + [anon_sym_u_SQUOTE] = ACTIONS(1647), + [anon_sym_U_SQUOTE] = ACTIONS(1647), + [anon_sym_u8_SQUOTE] = ACTIONS(1647), + [anon_sym_SQUOTE] = ACTIONS(1647), + [anon_sym_L_DQUOTE] = ACTIONS(1647), + [anon_sym_u_DQUOTE] = ACTIONS(1647), + [anon_sym_U_DQUOTE] = ACTIONS(1647), + [anon_sym_u8_DQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [sym_true] = ACTIONS(1645), + [sym_false] = ACTIONS(1645), + [sym_null] = ACTIONS(1645), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1647), + [anon_sym_ATimport] = ACTIONS(1647), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1645), + [anon_sym_ATcompatibility_alias] = ACTIONS(1647), + [anon_sym_ATprotocol] = ACTIONS(1647), + [anon_sym_ATclass] = ACTIONS(1647), + [anon_sym_ATinterface] = ACTIONS(1647), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1645), + [sym_method_attribute_specifier] = ACTIONS(1645), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1645), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1645), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1645), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1645), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1645), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1645), + [anon_sym_NS_AVAILABLE] = ACTIONS(1645), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1645), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1645), + [anon_sym_API_AVAILABLE] = ACTIONS(1645), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1645), + [anon_sym_API_DEPRECATED] = ACTIONS(1645), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1645), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1645), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1645), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1645), + [anon_sym___deprecated_msg] = ACTIONS(1645), + [anon_sym___deprecated_enum_msg] = ACTIONS(1645), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1645), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1645), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1645), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1645), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1645), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1645), + [anon_sym_ATimplementation] = ACTIONS(1647), + [anon_sym_NS_ENUM] = ACTIONS(1645), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1645), + [anon_sym_NS_OPTIONS] = ACTIONS(1645), + [anon_sym_typeof] = ACTIONS(1645), + [anon_sym___typeof] = ACTIONS(1645), + [anon_sym___typeof__] = ACTIONS(1645), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_nil] = ACTIONS(1645), + [sym_id] = ACTIONS(1645), + [sym_instancetype] = ACTIONS(1645), + [sym_Class] = ACTIONS(1645), + [sym_SEL] = ACTIONS(1645), + [sym_IMP] = ACTIONS(1645), + [sym_BOOL] = ACTIONS(1645), + [sym_auto] = ACTIONS(1645), + [anon_sym_ATautoreleasepool] = ACTIONS(1647), + [anon_sym_ATsynchronized] = ACTIONS(1647), + [anon_sym_ATtry] = ACTIONS(1647), + [anon_sym_ATcatch] = ACTIONS(1647), + [anon_sym_ATfinally] = ACTIONS(1647), + [anon_sym_ATthrow] = ACTIONS(1647), + [anon_sym_ATselector] = ACTIONS(1647), + [anon_sym_ATencode] = ACTIONS(1647), + [anon_sym_AT] = ACTIONS(1645), + [sym_YES] = ACTIONS(1645), + [sym_NO] = ACTIONS(1645), + [anon_sym___builtin_available] = ACTIONS(1645), + [anon_sym_ATavailable] = ACTIONS(1647), + [anon_sym_va_arg] = ACTIONS(1645), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [457] = { + [sym_identifier] = ACTIONS(1581), + [aux_sym_preproc_include_token1] = ACTIONS(1579), + [aux_sym_preproc_def_token1] = ACTIONS(1579), + [aux_sym_preproc_if_token1] = ACTIONS(1581), + [aux_sym_preproc_if_token2] = ACTIONS(1581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1581), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1581), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_CARET] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_typedef] = ACTIONS(1581), + [anon_sym_extern] = ACTIONS(1581), + [anon_sym___attribute] = ACTIONS(1581), + [anon_sym___attribute__] = ACTIONS(1581), + [anon_sym___declspec] = ACTIONS(1581), + [anon_sym___cdecl] = ACTIONS(1581), + [anon_sym___clrcall] = ACTIONS(1581), + [anon_sym___stdcall] = ACTIONS(1581), + [anon_sym___fastcall] = ACTIONS(1581), + [anon_sym___thiscall] = ACTIONS(1581), + [anon_sym___vectorcall] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_auto] = ACTIONS(1581), + [anon_sym_register] = ACTIONS(1581), + [anon_sym_inline] = ACTIONS(1581), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_volatile] = ACTIONS(1581), + [anon_sym_restrict] = ACTIONS(1581), + [anon_sym__Atomic] = ACTIONS(1581), + [anon_sym_in] = ACTIONS(1581), + [anon_sym_out] = ACTIONS(1581), + [anon_sym_inout] = ACTIONS(1581), + [anon_sym_bycopy] = ACTIONS(1581), + [anon_sym_byref] = ACTIONS(1581), + [anon_sym_oneway] = ACTIONS(1581), + [anon_sym__Nullable] = ACTIONS(1581), + [anon_sym__Nonnull] = ACTIONS(1581), + [anon_sym__Nullable_result] = ACTIONS(1581), + [anon_sym__Null_unspecified] = ACTIONS(1581), + [anon_sym___autoreleasing] = ACTIONS(1581), + [anon_sym___nullable] = ACTIONS(1581), + [anon_sym___nonnull] = ACTIONS(1581), + [anon_sym___strong] = ACTIONS(1581), + [anon_sym___weak] = ACTIONS(1581), + [anon_sym___bridge] = ACTIONS(1581), + [anon_sym___bridge_transfer] = ACTIONS(1581), + [anon_sym___bridge_retained] = ACTIONS(1581), + [anon_sym___unsafe_unretained] = ACTIONS(1581), + [anon_sym___block] = ACTIONS(1581), + [anon_sym___kindof] = ACTIONS(1581), + [anon_sym___unused] = ACTIONS(1581), + [anon_sym__Complex] = ACTIONS(1581), + [anon_sym___complex] = ACTIONS(1581), + [anon_sym_IBOutlet] = ACTIONS(1581), + [anon_sym_IBInspectable] = ACTIONS(1581), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1581), + [anon_sym_signed] = ACTIONS(1581), + [anon_sym_unsigned] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [sym_primitive_type] = ACTIONS(1581), + [anon_sym_enum] = ACTIONS(1581), + [anon_sym_struct] = ACTIONS(1581), + [anon_sym_union] = ACTIONS(1581), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_else] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_case] = ACTIONS(1581), + [anon_sym_default] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_goto] = ACTIONS(1581), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_sizeof] = ACTIONS(1581), + [sym_number_literal] = ACTIONS(1579), + [anon_sym_L_SQUOTE] = ACTIONS(1579), + [anon_sym_u_SQUOTE] = ACTIONS(1579), + [anon_sym_U_SQUOTE] = ACTIONS(1579), + [anon_sym_u8_SQUOTE] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_L_DQUOTE] = ACTIONS(1579), + [anon_sym_u_DQUOTE] = ACTIONS(1579), + [anon_sym_U_DQUOTE] = ACTIONS(1579), + [anon_sym_u8_DQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_true] = ACTIONS(1581), + [sym_false] = ACTIONS(1581), + [sym_null] = ACTIONS(1581), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1579), + [anon_sym_ATimport] = ACTIONS(1579), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1581), + [anon_sym_ATcompatibility_alias] = ACTIONS(1579), + [anon_sym_ATprotocol] = ACTIONS(1579), + [anon_sym_ATclass] = ACTIONS(1579), + [anon_sym_ATinterface] = ACTIONS(1579), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1581), + [sym_method_attribute_specifier] = ACTIONS(1581), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1581), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1581), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1581), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1581), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1581), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1581), + [anon_sym_NS_AVAILABLE] = ACTIONS(1581), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1581), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1581), + [anon_sym_API_AVAILABLE] = ACTIONS(1581), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1581), + [anon_sym_API_DEPRECATED] = ACTIONS(1581), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1581), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1581), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1581), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1581), + [anon_sym___deprecated_msg] = ACTIONS(1581), + [anon_sym___deprecated_enum_msg] = ACTIONS(1581), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1581), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1581), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1581), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1581), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1581), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1581), + [anon_sym_ATimplementation] = ACTIONS(1579), + [anon_sym_NS_ENUM] = ACTIONS(1581), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1581), + [anon_sym_NS_OPTIONS] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1581), + [anon_sym___typeof] = ACTIONS(1581), + [anon_sym___typeof__] = ACTIONS(1581), + [sym_self] = ACTIONS(1581), + [sym_super] = ACTIONS(1581), + [sym_nil] = ACTIONS(1581), + [sym_id] = ACTIONS(1581), + [sym_instancetype] = ACTIONS(1581), + [sym_Class] = ACTIONS(1581), + [sym_SEL] = ACTIONS(1581), + [sym_IMP] = ACTIONS(1581), + [sym_BOOL] = ACTIONS(1581), + [sym_auto] = ACTIONS(1581), + [anon_sym_ATautoreleasepool] = ACTIONS(1579), + [anon_sym_ATsynchronized] = ACTIONS(1579), + [anon_sym_ATtry] = ACTIONS(1579), + [anon_sym_ATcatch] = ACTIONS(1579), + [anon_sym_ATfinally] = ACTIONS(1579), + [anon_sym_ATthrow] = ACTIONS(1579), + [anon_sym_ATselector] = ACTIONS(1579), + [anon_sym_ATencode] = ACTIONS(1579), + [anon_sym_AT] = ACTIONS(1581), + [sym_YES] = ACTIONS(1581), + [sym_NO] = ACTIONS(1581), + [anon_sym___builtin_available] = ACTIONS(1581), + [anon_sym_ATavailable] = ACTIONS(1579), + [anon_sym_va_arg] = ACTIONS(1581), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [458] = { + [sym_identifier] = ACTIONS(1237), + [aux_sym_preproc_include_token1] = ACTIONS(1235), + [aux_sym_preproc_def_token1] = ACTIONS(1235), + [aux_sym_preproc_if_token1] = ACTIONS(1237), + [aux_sym_preproc_if_token2] = ACTIONS(1237), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1237), + [anon_sym_LPAREN2] = ACTIONS(1235), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_TILDE] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_SEMI] = ACTIONS(1235), + [anon_sym_typedef] = ACTIONS(1237), + [anon_sym_extern] = ACTIONS(1237), + [anon_sym___attribute] = ACTIONS(1237), + [anon_sym___attribute__] = ACTIONS(1237), + [anon_sym___declspec] = ACTIONS(1237), + [anon_sym___cdecl] = ACTIONS(1237), + [anon_sym___clrcall] = ACTIONS(1237), + [anon_sym___stdcall] = ACTIONS(1237), + [anon_sym___fastcall] = ACTIONS(1237), + [anon_sym___thiscall] = ACTIONS(1237), + [anon_sym___vectorcall] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1235), + [anon_sym_LBRACK] = ACTIONS(1235), + [anon_sym_static] = ACTIONS(1237), + [anon_sym_auto] = ACTIONS(1237), + [anon_sym_register] = ACTIONS(1237), + [anon_sym_inline] = ACTIONS(1237), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [anon_sym_volatile] = ACTIONS(1237), + [anon_sym_restrict] = ACTIONS(1237), + [anon_sym__Atomic] = ACTIONS(1237), + [anon_sym_in] = ACTIONS(1237), + [anon_sym_out] = ACTIONS(1237), + [anon_sym_inout] = ACTIONS(1237), + [anon_sym_bycopy] = ACTIONS(1237), + [anon_sym_byref] = ACTIONS(1237), + [anon_sym_oneway] = ACTIONS(1237), + [anon_sym__Nullable] = ACTIONS(1237), + [anon_sym__Nonnull] = ACTIONS(1237), + [anon_sym__Nullable_result] = ACTIONS(1237), + [anon_sym__Null_unspecified] = ACTIONS(1237), + [anon_sym___autoreleasing] = ACTIONS(1237), + [anon_sym___nullable] = ACTIONS(1237), + [anon_sym___nonnull] = ACTIONS(1237), + [anon_sym___strong] = ACTIONS(1237), + [anon_sym___weak] = ACTIONS(1237), + [anon_sym___bridge] = ACTIONS(1237), + [anon_sym___bridge_transfer] = ACTIONS(1237), + [anon_sym___bridge_retained] = ACTIONS(1237), + [anon_sym___unsafe_unretained] = ACTIONS(1237), + [anon_sym___block] = ACTIONS(1237), + [anon_sym___kindof] = ACTIONS(1237), + [anon_sym___unused] = ACTIONS(1237), + [anon_sym__Complex] = ACTIONS(1237), + [anon_sym___complex] = ACTIONS(1237), + [anon_sym_IBOutlet] = ACTIONS(1237), + [anon_sym_IBInspectable] = ACTIONS(1237), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1237), + [anon_sym_signed] = ACTIONS(1237), + [anon_sym_unsigned] = ACTIONS(1237), + [anon_sym_long] = ACTIONS(1237), + [anon_sym_short] = ACTIONS(1237), + [sym_primitive_type] = ACTIONS(1237), + [anon_sym_enum] = ACTIONS(1237), + [anon_sym_struct] = ACTIONS(1237), + [anon_sym_union] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_else] = ACTIONS(1237), + [anon_sym_switch] = ACTIONS(1237), + [anon_sym_case] = ACTIONS(1237), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_while] = ACTIONS(1237), + [anon_sym_do] = ACTIONS(1237), + [anon_sym_for] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1237), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_goto] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1235), + [anon_sym_sizeof] = ACTIONS(1237), + [sym_number_literal] = ACTIONS(1235), + [anon_sym_L_SQUOTE] = ACTIONS(1235), + [anon_sym_u_SQUOTE] = ACTIONS(1235), + [anon_sym_U_SQUOTE] = ACTIONS(1235), + [anon_sym_u8_SQUOTE] = ACTIONS(1235), + [anon_sym_SQUOTE] = ACTIONS(1235), + [anon_sym_L_DQUOTE] = ACTIONS(1235), + [anon_sym_u_DQUOTE] = ACTIONS(1235), + [anon_sym_U_DQUOTE] = ACTIONS(1235), + [anon_sym_u8_DQUOTE] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(1235), + [sym_true] = ACTIONS(1237), + [sym_false] = ACTIONS(1237), + [sym_null] = ACTIONS(1237), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1235), + [anon_sym_ATimport] = ACTIONS(1235), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1237), + [anon_sym_ATcompatibility_alias] = ACTIONS(1235), + [anon_sym_ATprotocol] = ACTIONS(1235), + [anon_sym_ATclass] = ACTIONS(1235), + [anon_sym_ATinterface] = ACTIONS(1235), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1237), + [sym_method_attribute_specifier] = ACTIONS(1237), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1237), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1237), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1237), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1237), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1237), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1237), + [anon_sym_NS_AVAILABLE] = ACTIONS(1237), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1237), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1237), + [anon_sym_API_AVAILABLE] = ACTIONS(1237), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1237), + [anon_sym_API_DEPRECATED] = ACTIONS(1237), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1237), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1237), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1237), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1237), + [anon_sym___deprecated_msg] = ACTIONS(1237), + [anon_sym___deprecated_enum_msg] = ACTIONS(1237), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1237), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1237), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1237), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1237), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1237), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1237), + [anon_sym_ATimplementation] = ACTIONS(1235), + [anon_sym_NS_ENUM] = ACTIONS(1237), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1237), + [anon_sym_NS_OPTIONS] = ACTIONS(1237), + [anon_sym_typeof] = ACTIONS(1237), + [anon_sym___typeof] = ACTIONS(1237), + [anon_sym___typeof__] = ACTIONS(1237), + [sym_self] = ACTIONS(1237), + [sym_super] = ACTIONS(1237), + [sym_nil] = ACTIONS(1237), + [sym_id] = ACTIONS(1237), + [sym_instancetype] = ACTIONS(1237), + [sym_Class] = ACTIONS(1237), + [sym_SEL] = ACTIONS(1237), + [sym_IMP] = ACTIONS(1237), + [sym_BOOL] = ACTIONS(1237), + [sym_auto] = ACTIONS(1237), + [anon_sym_ATautoreleasepool] = ACTIONS(1235), + [anon_sym_ATsynchronized] = ACTIONS(1235), + [anon_sym_ATtry] = ACTIONS(1235), + [anon_sym_ATcatch] = ACTIONS(1235), + [anon_sym_ATfinally] = ACTIONS(1235), + [anon_sym_ATthrow] = ACTIONS(1235), + [anon_sym_ATselector] = ACTIONS(1235), + [anon_sym_ATencode] = ACTIONS(1235), + [anon_sym_AT] = ACTIONS(1237), + [sym_YES] = ACTIONS(1237), + [sym_NO] = ACTIONS(1237), + [anon_sym___builtin_available] = ACTIONS(1237), + [anon_sym_ATavailable] = ACTIONS(1235), + [anon_sym_va_arg] = ACTIONS(1237), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [459] = { + [sym_identifier] = ACTIONS(1577), + [aux_sym_preproc_include_token1] = ACTIONS(1575), + [aux_sym_preproc_def_token1] = ACTIONS(1575), + [aux_sym_preproc_if_token1] = ACTIONS(1577), + [aux_sym_preproc_if_token2] = ACTIONS(1577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1577), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1577), + [anon_sym_LPAREN2] = ACTIONS(1575), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_CARET] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_typedef] = ACTIONS(1577), + [anon_sym_extern] = ACTIONS(1577), + [anon_sym___attribute] = ACTIONS(1577), + [anon_sym___attribute__] = ACTIONS(1577), + [anon_sym___declspec] = ACTIONS(1577), + [anon_sym___cdecl] = ACTIONS(1577), + [anon_sym___clrcall] = ACTIONS(1577), + [anon_sym___stdcall] = ACTIONS(1577), + [anon_sym___fastcall] = ACTIONS(1577), + [anon_sym___thiscall] = ACTIONS(1577), + [anon_sym___vectorcall] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_auto] = ACTIONS(1577), + [anon_sym_register] = ACTIONS(1577), + [anon_sym_inline] = ACTIONS(1577), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_volatile] = ACTIONS(1577), + [anon_sym_restrict] = ACTIONS(1577), + [anon_sym__Atomic] = ACTIONS(1577), + [anon_sym_in] = ACTIONS(1577), + [anon_sym_out] = ACTIONS(1577), + [anon_sym_inout] = ACTIONS(1577), + [anon_sym_bycopy] = ACTIONS(1577), + [anon_sym_byref] = ACTIONS(1577), + [anon_sym_oneway] = ACTIONS(1577), + [anon_sym__Nullable] = ACTIONS(1577), + [anon_sym__Nonnull] = ACTIONS(1577), + [anon_sym__Nullable_result] = ACTIONS(1577), + [anon_sym__Null_unspecified] = ACTIONS(1577), + [anon_sym___autoreleasing] = ACTIONS(1577), + [anon_sym___nullable] = ACTIONS(1577), + [anon_sym___nonnull] = ACTIONS(1577), + [anon_sym___strong] = ACTIONS(1577), + [anon_sym___weak] = ACTIONS(1577), + [anon_sym___bridge] = ACTIONS(1577), + [anon_sym___bridge_transfer] = ACTIONS(1577), + [anon_sym___bridge_retained] = ACTIONS(1577), + [anon_sym___unsafe_unretained] = ACTIONS(1577), + [anon_sym___block] = ACTIONS(1577), + [anon_sym___kindof] = ACTIONS(1577), + [anon_sym___unused] = ACTIONS(1577), + [anon_sym__Complex] = ACTIONS(1577), + [anon_sym___complex] = ACTIONS(1577), + [anon_sym_IBOutlet] = ACTIONS(1577), + [anon_sym_IBInspectable] = ACTIONS(1577), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1577), + [anon_sym_signed] = ACTIONS(1577), + [anon_sym_unsigned] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [sym_primitive_type] = ACTIONS(1577), + [anon_sym_enum] = ACTIONS(1577), + [anon_sym_struct] = ACTIONS(1577), + [anon_sym_union] = ACTIONS(1577), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_else] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_case] = ACTIONS(1577), + [anon_sym_default] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_goto] = ACTIONS(1577), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_sizeof] = ACTIONS(1577), + [sym_number_literal] = ACTIONS(1575), + [anon_sym_L_SQUOTE] = ACTIONS(1575), + [anon_sym_u_SQUOTE] = ACTIONS(1575), + [anon_sym_U_SQUOTE] = ACTIONS(1575), + [anon_sym_u8_SQUOTE] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_L_DQUOTE] = ACTIONS(1575), + [anon_sym_u_DQUOTE] = ACTIONS(1575), + [anon_sym_U_DQUOTE] = ACTIONS(1575), + [anon_sym_u8_DQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym_true] = ACTIONS(1577), + [sym_false] = ACTIONS(1577), + [sym_null] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1575), + [anon_sym_ATimport] = ACTIONS(1575), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1577), + [anon_sym_ATcompatibility_alias] = ACTIONS(1575), + [anon_sym_ATprotocol] = ACTIONS(1575), + [anon_sym_ATclass] = ACTIONS(1575), + [anon_sym_ATinterface] = ACTIONS(1575), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1577), + [sym_method_attribute_specifier] = ACTIONS(1577), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1577), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1577), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1577), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1577), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1577), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1577), + [anon_sym_NS_AVAILABLE] = ACTIONS(1577), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1577), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1577), + [anon_sym_API_AVAILABLE] = ACTIONS(1577), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1577), + [anon_sym_API_DEPRECATED] = ACTIONS(1577), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1577), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1577), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1577), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1577), + [anon_sym___deprecated_msg] = ACTIONS(1577), + [anon_sym___deprecated_enum_msg] = ACTIONS(1577), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1577), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1577), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1577), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1577), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1577), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1577), + [anon_sym_ATimplementation] = ACTIONS(1575), + [anon_sym_NS_ENUM] = ACTIONS(1577), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1577), + [anon_sym_NS_OPTIONS] = ACTIONS(1577), + [anon_sym_typeof] = ACTIONS(1577), + [anon_sym___typeof] = ACTIONS(1577), + [anon_sym___typeof__] = ACTIONS(1577), + [sym_self] = ACTIONS(1577), + [sym_super] = ACTIONS(1577), + [sym_nil] = ACTIONS(1577), + [sym_id] = ACTIONS(1577), + [sym_instancetype] = ACTIONS(1577), + [sym_Class] = ACTIONS(1577), + [sym_SEL] = ACTIONS(1577), + [sym_IMP] = ACTIONS(1577), + [sym_BOOL] = ACTIONS(1577), + [sym_auto] = ACTIONS(1577), + [anon_sym_ATautoreleasepool] = ACTIONS(1575), + [anon_sym_ATsynchronized] = ACTIONS(1575), + [anon_sym_ATtry] = ACTIONS(1575), + [anon_sym_ATcatch] = ACTIONS(1575), + [anon_sym_ATfinally] = ACTIONS(1575), + [anon_sym_ATthrow] = ACTIONS(1575), + [anon_sym_ATselector] = ACTIONS(1575), + [anon_sym_ATencode] = ACTIONS(1575), + [anon_sym_AT] = ACTIONS(1577), + [sym_YES] = ACTIONS(1577), + [sym_NO] = ACTIONS(1577), + [anon_sym___builtin_available] = ACTIONS(1577), + [anon_sym_ATavailable] = ACTIONS(1575), + [anon_sym_va_arg] = ACTIONS(1577), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [460] = { + [sym_identifier] = ACTIONS(1241), + [aux_sym_preproc_include_token1] = ACTIONS(1239), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [aux_sym_preproc_if_token1] = ACTIONS(1241), + [aux_sym_preproc_if_token2] = ACTIONS(1241), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1241), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1241), + [anon_sym_LPAREN2] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_TILDE] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_SEMI] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1241), + [anon_sym_extern] = ACTIONS(1241), + [anon_sym___attribute] = ACTIONS(1241), + [anon_sym___attribute__] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1241), + [anon_sym___cdecl] = ACTIONS(1241), + [anon_sym___clrcall] = ACTIONS(1241), + [anon_sym___stdcall] = ACTIONS(1241), + [anon_sym___fastcall] = ACTIONS(1241), + [anon_sym___thiscall] = ACTIONS(1241), + [anon_sym___vectorcall] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_static] = ACTIONS(1241), + [anon_sym_auto] = ACTIONS(1241), + [anon_sym_register] = ACTIONS(1241), + [anon_sym_inline] = ACTIONS(1241), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1241), + [anon_sym_const] = ACTIONS(1241), + [anon_sym_volatile] = ACTIONS(1241), + [anon_sym_restrict] = ACTIONS(1241), + [anon_sym__Atomic] = ACTIONS(1241), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_out] = ACTIONS(1241), + [anon_sym_inout] = ACTIONS(1241), + [anon_sym_bycopy] = ACTIONS(1241), + [anon_sym_byref] = ACTIONS(1241), + [anon_sym_oneway] = ACTIONS(1241), + [anon_sym__Nullable] = ACTIONS(1241), + [anon_sym__Nonnull] = ACTIONS(1241), + [anon_sym__Nullable_result] = ACTIONS(1241), + [anon_sym__Null_unspecified] = ACTIONS(1241), + [anon_sym___autoreleasing] = ACTIONS(1241), + [anon_sym___nullable] = ACTIONS(1241), + [anon_sym___nonnull] = ACTIONS(1241), + [anon_sym___strong] = ACTIONS(1241), + [anon_sym___weak] = ACTIONS(1241), + [anon_sym___bridge] = ACTIONS(1241), + [anon_sym___bridge_transfer] = ACTIONS(1241), + [anon_sym___bridge_retained] = ACTIONS(1241), + [anon_sym___unsafe_unretained] = ACTIONS(1241), + [anon_sym___block] = ACTIONS(1241), + [anon_sym___kindof] = ACTIONS(1241), + [anon_sym___unused] = ACTIONS(1241), + [anon_sym__Complex] = ACTIONS(1241), + [anon_sym___complex] = ACTIONS(1241), + [anon_sym_IBOutlet] = ACTIONS(1241), + [anon_sym_IBInspectable] = ACTIONS(1241), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1241), + [anon_sym_unsigned] = ACTIONS(1241), + [anon_sym_long] = ACTIONS(1241), + [anon_sym_short] = ACTIONS(1241), + [sym_primitive_type] = ACTIONS(1241), + [anon_sym_enum] = ACTIONS(1241), + [anon_sym_struct] = ACTIONS(1241), + [anon_sym_union] = ACTIONS(1241), + [anon_sym_if] = ACTIONS(1241), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_switch] = ACTIONS(1241), + [anon_sym_case] = ACTIONS(1241), + [anon_sym_default] = ACTIONS(1241), + [anon_sym_while] = ACTIONS(1241), + [anon_sym_do] = ACTIONS(1241), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1241), + [anon_sym_break] = ACTIONS(1241), + [anon_sym_continue] = ACTIONS(1241), + [anon_sym_goto] = ACTIONS(1241), + [anon_sym_DASH_DASH] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1239), + [anon_sym_sizeof] = ACTIONS(1241), + [sym_number_literal] = ACTIONS(1239), + [anon_sym_L_SQUOTE] = ACTIONS(1239), + [anon_sym_u_SQUOTE] = ACTIONS(1239), + [anon_sym_U_SQUOTE] = ACTIONS(1239), + [anon_sym_u8_SQUOTE] = ACTIONS(1239), + [anon_sym_SQUOTE] = ACTIONS(1239), + [anon_sym_L_DQUOTE] = ACTIONS(1239), + [anon_sym_u_DQUOTE] = ACTIONS(1239), + [anon_sym_U_DQUOTE] = ACTIONS(1239), + [anon_sym_u8_DQUOTE] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(1239), + [sym_true] = ACTIONS(1241), + [sym_false] = ACTIONS(1241), + [sym_null] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1239), + [anon_sym_ATimport] = ACTIONS(1239), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1241), + [anon_sym_ATcompatibility_alias] = ACTIONS(1239), + [anon_sym_ATprotocol] = ACTIONS(1239), + [anon_sym_ATclass] = ACTIONS(1239), + [anon_sym_ATinterface] = ACTIONS(1239), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1241), + [sym_method_attribute_specifier] = ACTIONS(1241), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1241), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1241), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1241), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1241), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1241), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1241), + [anon_sym_NS_AVAILABLE] = ACTIONS(1241), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1241), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1241), + [anon_sym_API_AVAILABLE] = ACTIONS(1241), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1241), + [anon_sym_API_DEPRECATED] = ACTIONS(1241), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1241), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1241), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1241), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1241), + [anon_sym___deprecated_msg] = ACTIONS(1241), + [anon_sym___deprecated_enum_msg] = ACTIONS(1241), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1241), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1241), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1241), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1241), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1241), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1241), + [anon_sym_ATimplementation] = ACTIONS(1239), + [anon_sym_NS_ENUM] = ACTIONS(1241), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1241), + [anon_sym_NS_OPTIONS] = ACTIONS(1241), + [anon_sym_typeof] = ACTIONS(1241), + [anon_sym___typeof] = ACTIONS(1241), + [anon_sym___typeof__] = ACTIONS(1241), + [sym_self] = ACTIONS(1241), + [sym_super] = ACTIONS(1241), + [sym_nil] = ACTIONS(1241), + [sym_id] = ACTIONS(1241), + [sym_instancetype] = ACTIONS(1241), + [sym_Class] = ACTIONS(1241), + [sym_SEL] = ACTIONS(1241), + [sym_IMP] = ACTIONS(1241), + [sym_BOOL] = ACTIONS(1241), + [sym_auto] = ACTIONS(1241), + [anon_sym_ATautoreleasepool] = ACTIONS(1239), + [anon_sym_ATsynchronized] = ACTIONS(1239), + [anon_sym_ATtry] = ACTIONS(1239), + [anon_sym_ATcatch] = ACTIONS(1239), + [anon_sym_ATfinally] = ACTIONS(1239), + [anon_sym_ATthrow] = ACTIONS(1239), + [anon_sym_ATselector] = ACTIONS(1239), + [anon_sym_ATencode] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(1241), + [sym_YES] = ACTIONS(1241), + [sym_NO] = ACTIONS(1241), + [anon_sym___builtin_available] = ACTIONS(1241), + [anon_sym_ATavailable] = ACTIONS(1239), + [anon_sym_va_arg] = ACTIONS(1241), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [461] = { + [sym_identifier] = ACTIONS(1383), + [aux_sym_preproc_include_token1] = ACTIONS(1385), + [aux_sym_preproc_def_token1] = ACTIONS(1385), + [aux_sym_preproc_if_token1] = ACTIONS(1383), + [aux_sym_preproc_if_token2] = ACTIONS(1383), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1383), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1383), + [anon_sym_LPAREN2] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_TILDE] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_CARET] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_typedef] = ACTIONS(1383), + [anon_sym_extern] = ACTIONS(1383), + [anon_sym___attribute] = ACTIONS(1383), + [anon_sym___attribute__] = ACTIONS(1383), + [anon_sym___declspec] = ACTIONS(1383), + [anon_sym___cdecl] = ACTIONS(1383), + [anon_sym___clrcall] = ACTIONS(1383), + [anon_sym___stdcall] = ACTIONS(1383), + [anon_sym___fastcall] = ACTIONS(1383), + [anon_sym___thiscall] = ACTIONS(1383), + [anon_sym___vectorcall] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1383), + [anon_sym_auto] = ACTIONS(1383), + [anon_sym_register] = ACTIONS(1383), + [anon_sym_inline] = ACTIONS(1383), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1383), + [anon_sym_const] = ACTIONS(1383), + [anon_sym_volatile] = ACTIONS(1383), + [anon_sym_restrict] = ACTIONS(1383), + [anon_sym__Atomic] = ACTIONS(1383), + [anon_sym_in] = ACTIONS(1383), + [anon_sym_out] = ACTIONS(1383), + [anon_sym_inout] = ACTIONS(1383), + [anon_sym_bycopy] = ACTIONS(1383), + [anon_sym_byref] = ACTIONS(1383), + [anon_sym_oneway] = ACTIONS(1383), + [anon_sym__Nullable] = ACTIONS(1383), + [anon_sym__Nonnull] = ACTIONS(1383), + [anon_sym__Nullable_result] = ACTIONS(1383), + [anon_sym__Null_unspecified] = ACTIONS(1383), + [anon_sym___autoreleasing] = ACTIONS(1383), + [anon_sym___nullable] = ACTIONS(1383), + [anon_sym___nonnull] = ACTIONS(1383), + [anon_sym___strong] = ACTIONS(1383), + [anon_sym___weak] = ACTIONS(1383), + [anon_sym___bridge] = ACTIONS(1383), + [anon_sym___bridge_transfer] = ACTIONS(1383), + [anon_sym___bridge_retained] = ACTIONS(1383), + [anon_sym___unsafe_unretained] = ACTIONS(1383), + [anon_sym___block] = ACTIONS(1383), + [anon_sym___kindof] = ACTIONS(1383), + [anon_sym___unused] = ACTIONS(1383), + [anon_sym__Complex] = ACTIONS(1383), + [anon_sym___complex] = ACTIONS(1383), + [anon_sym_IBOutlet] = ACTIONS(1383), + [anon_sym_IBInspectable] = ACTIONS(1383), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1383), + [anon_sym_signed] = ACTIONS(1383), + [anon_sym_unsigned] = ACTIONS(1383), + [anon_sym_long] = ACTIONS(1383), + [anon_sym_short] = ACTIONS(1383), + [sym_primitive_type] = ACTIONS(1383), + [anon_sym_enum] = ACTIONS(1383), + [anon_sym_struct] = ACTIONS(1383), + [anon_sym_union] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1383), + [anon_sym_else] = ACTIONS(1383), + [anon_sym_switch] = ACTIONS(1383), + [anon_sym_case] = ACTIONS(1383), + [anon_sym_default] = ACTIONS(1383), + [anon_sym_while] = ACTIONS(1383), + [anon_sym_do] = ACTIONS(1383), + [anon_sym_for] = ACTIONS(1383), + [anon_sym_return] = ACTIONS(1383), + [anon_sym_break] = ACTIONS(1383), + [anon_sym_continue] = ACTIONS(1383), + [anon_sym_goto] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1385), + [anon_sym_sizeof] = ACTIONS(1383), + [sym_number_literal] = ACTIONS(1385), + [anon_sym_L_SQUOTE] = ACTIONS(1385), + [anon_sym_u_SQUOTE] = ACTIONS(1385), + [anon_sym_U_SQUOTE] = ACTIONS(1385), + [anon_sym_u8_SQUOTE] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1385), + [anon_sym_L_DQUOTE] = ACTIONS(1385), + [anon_sym_u_DQUOTE] = ACTIONS(1385), + [anon_sym_U_DQUOTE] = ACTIONS(1385), + [anon_sym_u8_DQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE] = ACTIONS(1385), + [sym_true] = ACTIONS(1383), + [sym_false] = ACTIONS(1383), + [sym_null] = ACTIONS(1383), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1385), + [anon_sym_ATimport] = ACTIONS(1385), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1383), + [anon_sym_ATcompatibility_alias] = ACTIONS(1385), + [anon_sym_ATprotocol] = ACTIONS(1385), + [anon_sym_ATclass] = ACTIONS(1385), + [anon_sym_ATinterface] = ACTIONS(1385), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1383), + [sym_method_attribute_specifier] = ACTIONS(1383), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1383), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1383), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1383), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1383), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1383), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1383), + [anon_sym_NS_AVAILABLE] = ACTIONS(1383), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1383), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1383), + [anon_sym_API_AVAILABLE] = ACTIONS(1383), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1383), + [anon_sym_API_DEPRECATED] = ACTIONS(1383), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1383), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1383), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1383), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1383), + [anon_sym___deprecated_msg] = ACTIONS(1383), + [anon_sym___deprecated_enum_msg] = ACTIONS(1383), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1383), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1383), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1383), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1383), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1383), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1383), + [anon_sym_ATimplementation] = ACTIONS(1385), + [anon_sym_NS_ENUM] = ACTIONS(1383), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1383), + [anon_sym_NS_OPTIONS] = ACTIONS(1383), + [anon_sym_typeof] = ACTIONS(1383), + [anon_sym___typeof] = ACTIONS(1383), + [anon_sym___typeof__] = ACTIONS(1383), + [sym_self] = ACTIONS(1383), + [sym_super] = ACTIONS(1383), + [sym_nil] = ACTIONS(1383), + [sym_id] = ACTIONS(1383), + [sym_instancetype] = ACTIONS(1383), + [sym_Class] = ACTIONS(1383), + [sym_SEL] = ACTIONS(1383), + [sym_IMP] = ACTIONS(1383), + [sym_BOOL] = ACTIONS(1383), + [sym_auto] = ACTIONS(1383), + [anon_sym_ATautoreleasepool] = ACTIONS(1385), + [anon_sym_ATsynchronized] = ACTIONS(1385), + [anon_sym_ATtry] = ACTIONS(1385), + [anon_sym_ATcatch] = ACTIONS(1385), + [anon_sym_ATfinally] = ACTIONS(1385), + [anon_sym_ATthrow] = ACTIONS(1385), + [anon_sym_ATselector] = ACTIONS(1385), + [anon_sym_ATencode] = ACTIONS(1385), + [anon_sym_AT] = ACTIONS(1383), + [sym_YES] = ACTIONS(1383), + [sym_NO] = ACTIONS(1383), + [anon_sym___builtin_available] = ACTIONS(1383), + [anon_sym_ATavailable] = ACTIONS(1385), + [anon_sym_va_arg] = ACTIONS(1383), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [462] = { + [sym_identifier] = ACTIONS(1379), + [aux_sym_preproc_include_token1] = ACTIONS(1381), + [aux_sym_preproc_def_token1] = ACTIONS(1381), + [aux_sym_preproc_if_token1] = ACTIONS(1379), + [aux_sym_preproc_if_token2] = ACTIONS(1379), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1379), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1379), + [anon_sym_LPAREN2] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1379), + [anon_sym_PLUS] = ACTIONS(1379), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_typedef] = ACTIONS(1379), + [anon_sym_extern] = ACTIONS(1379), + [anon_sym___attribute] = ACTIONS(1379), + [anon_sym___attribute__] = ACTIONS(1379), + [anon_sym___declspec] = ACTIONS(1379), + [anon_sym___cdecl] = ACTIONS(1379), + [anon_sym___clrcall] = ACTIONS(1379), + [anon_sym___stdcall] = ACTIONS(1379), + [anon_sym___fastcall] = ACTIONS(1379), + [anon_sym___thiscall] = ACTIONS(1379), + [anon_sym___vectorcall] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1379), + [anon_sym_auto] = ACTIONS(1379), + [anon_sym_register] = ACTIONS(1379), + [anon_sym_inline] = ACTIONS(1379), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_volatile] = ACTIONS(1379), + [anon_sym_restrict] = ACTIONS(1379), + [anon_sym__Atomic] = ACTIONS(1379), + [anon_sym_in] = ACTIONS(1379), + [anon_sym_out] = ACTIONS(1379), + [anon_sym_inout] = ACTIONS(1379), + [anon_sym_bycopy] = ACTIONS(1379), + [anon_sym_byref] = ACTIONS(1379), + [anon_sym_oneway] = ACTIONS(1379), + [anon_sym__Nullable] = ACTIONS(1379), + [anon_sym__Nonnull] = ACTIONS(1379), + [anon_sym__Nullable_result] = ACTIONS(1379), + [anon_sym__Null_unspecified] = ACTIONS(1379), + [anon_sym___autoreleasing] = ACTIONS(1379), + [anon_sym___nullable] = ACTIONS(1379), + [anon_sym___nonnull] = ACTIONS(1379), + [anon_sym___strong] = ACTIONS(1379), + [anon_sym___weak] = ACTIONS(1379), + [anon_sym___bridge] = ACTIONS(1379), + [anon_sym___bridge_transfer] = ACTIONS(1379), + [anon_sym___bridge_retained] = ACTIONS(1379), + [anon_sym___unsafe_unretained] = ACTIONS(1379), + [anon_sym___block] = ACTIONS(1379), + [anon_sym___kindof] = ACTIONS(1379), + [anon_sym___unused] = ACTIONS(1379), + [anon_sym__Complex] = ACTIONS(1379), + [anon_sym___complex] = ACTIONS(1379), + [anon_sym_IBOutlet] = ACTIONS(1379), + [anon_sym_IBInspectable] = ACTIONS(1379), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1379), + [anon_sym_signed] = ACTIONS(1379), + [anon_sym_unsigned] = ACTIONS(1379), + [anon_sym_long] = ACTIONS(1379), + [anon_sym_short] = ACTIONS(1379), + [sym_primitive_type] = ACTIONS(1379), + [anon_sym_enum] = ACTIONS(1379), + [anon_sym_struct] = ACTIONS(1379), + [anon_sym_union] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_else] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_case] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(1379), + [anon_sym_while] = ACTIONS(1379), + [anon_sym_do] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1379), + [anon_sym_return] = ACTIONS(1379), + [anon_sym_break] = ACTIONS(1379), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1381), + [anon_sym_sizeof] = ACTIONS(1379), + [sym_number_literal] = ACTIONS(1381), + [anon_sym_L_SQUOTE] = ACTIONS(1381), + [anon_sym_u_SQUOTE] = ACTIONS(1381), + [anon_sym_U_SQUOTE] = ACTIONS(1381), + [anon_sym_u8_SQUOTE] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1381), + [anon_sym_L_DQUOTE] = ACTIONS(1381), + [anon_sym_u_DQUOTE] = ACTIONS(1381), + [anon_sym_U_DQUOTE] = ACTIONS(1381), + [anon_sym_u8_DQUOTE] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [sym_true] = ACTIONS(1379), + [sym_false] = ACTIONS(1379), + [sym_null] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1381), + [anon_sym_ATimport] = ACTIONS(1381), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1379), + [anon_sym_ATcompatibility_alias] = ACTIONS(1381), + [anon_sym_ATprotocol] = ACTIONS(1381), + [anon_sym_ATclass] = ACTIONS(1381), + [anon_sym_ATinterface] = ACTIONS(1381), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1379), + [sym_method_attribute_specifier] = ACTIONS(1379), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1379), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1379), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1379), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1379), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1379), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1379), + [anon_sym_NS_AVAILABLE] = ACTIONS(1379), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1379), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1379), + [anon_sym_API_AVAILABLE] = ACTIONS(1379), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1379), + [anon_sym_API_DEPRECATED] = ACTIONS(1379), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1379), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1379), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1379), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1379), + [anon_sym___deprecated_msg] = ACTIONS(1379), + [anon_sym___deprecated_enum_msg] = ACTIONS(1379), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1379), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1379), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1379), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1379), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1379), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1379), + [anon_sym_ATimplementation] = ACTIONS(1381), + [anon_sym_NS_ENUM] = ACTIONS(1379), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1379), + [anon_sym_NS_OPTIONS] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1379), + [anon_sym___typeof] = ACTIONS(1379), + [anon_sym___typeof__] = ACTIONS(1379), + [sym_self] = ACTIONS(1379), + [sym_super] = ACTIONS(1379), + [sym_nil] = ACTIONS(1379), + [sym_id] = ACTIONS(1379), + [sym_instancetype] = ACTIONS(1379), + [sym_Class] = ACTIONS(1379), + [sym_SEL] = ACTIONS(1379), + [sym_IMP] = ACTIONS(1379), + [sym_BOOL] = ACTIONS(1379), + [sym_auto] = ACTIONS(1379), + [anon_sym_ATautoreleasepool] = ACTIONS(1381), + [anon_sym_ATsynchronized] = ACTIONS(1381), + [anon_sym_ATtry] = ACTIONS(1381), + [anon_sym_ATcatch] = ACTIONS(1381), + [anon_sym_ATfinally] = ACTIONS(1381), + [anon_sym_ATthrow] = ACTIONS(1381), + [anon_sym_ATselector] = ACTIONS(1381), + [anon_sym_ATencode] = ACTIONS(1381), + [anon_sym_AT] = ACTIONS(1379), + [sym_YES] = ACTIONS(1379), + [sym_NO] = ACTIONS(1379), + [anon_sym___builtin_available] = ACTIONS(1379), + [anon_sym_ATavailable] = ACTIONS(1381), + [anon_sym_va_arg] = ACTIONS(1379), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [463] = { + [sym_identifier] = ACTIONS(1357), + [aux_sym_preproc_include_token1] = ACTIONS(1355), + [aux_sym_preproc_def_token1] = ACTIONS(1355), + [aux_sym_preproc_if_token1] = ACTIONS(1357), + [aux_sym_preproc_if_token2] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1357), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_CARET] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_typedef] = ACTIONS(1357), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym___attribute] = ACTIONS(1357), + [anon_sym___attribute__] = ACTIONS(1357), + [anon_sym___declspec] = ACTIONS(1357), + [anon_sym___cdecl] = ACTIONS(1357), + [anon_sym___clrcall] = ACTIONS(1357), + [anon_sym___stdcall] = ACTIONS(1357), + [anon_sym___fastcall] = ACTIONS(1357), + [anon_sym___thiscall] = ACTIONS(1357), + [anon_sym___vectorcall] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_auto] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_inline] = ACTIONS(1357), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_volatile] = ACTIONS(1357), + [anon_sym_restrict] = ACTIONS(1357), + [anon_sym__Atomic] = ACTIONS(1357), + [anon_sym_in] = ACTIONS(1357), + [anon_sym_out] = ACTIONS(1357), + [anon_sym_inout] = ACTIONS(1357), + [anon_sym_bycopy] = ACTIONS(1357), + [anon_sym_byref] = ACTIONS(1357), + [anon_sym_oneway] = ACTIONS(1357), + [anon_sym__Nullable] = ACTIONS(1357), + [anon_sym__Nonnull] = ACTIONS(1357), + [anon_sym__Nullable_result] = ACTIONS(1357), + [anon_sym__Null_unspecified] = ACTIONS(1357), + [anon_sym___autoreleasing] = ACTIONS(1357), + [anon_sym___nullable] = ACTIONS(1357), + [anon_sym___nonnull] = ACTIONS(1357), + [anon_sym___strong] = ACTIONS(1357), + [anon_sym___weak] = ACTIONS(1357), + [anon_sym___bridge] = ACTIONS(1357), + [anon_sym___bridge_transfer] = ACTIONS(1357), + [anon_sym___bridge_retained] = ACTIONS(1357), + [anon_sym___unsafe_unretained] = ACTIONS(1357), + [anon_sym___block] = ACTIONS(1357), + [anon_sym___kindof] = ACTIONS(1357), + [anon_sym___unused] = ACTIONS(1357), + [anon_sym__Complex] = ACTIONS(1357), + [anon_sym___complex] = ACTIONS(1357), + [anon_sym_IBOutlet] = ACTIONS(1357), + [anon_sym_IBInspectable] = ACTIONS(1357), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1357), + [anon_sym_signed] = ACTIONS(1357), + [anon_sym_unsigned] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [sym_primitive_type] = ACTIONS(1357), + [anon_sym_enum] = ACTIONS(1357), + [anon_sym_struct] = ACTIONS(1357), + [anon_sym_union] = ACTIONS(1357), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_case] = ACTIONS(1357), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_goto] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_sizeof] = ACTIONS(1357), + [sym_number_literal] = ACTIONS(1355), + [anon_sym_L_SQUOTE] = ACTIONS(1355), + [anon_sym_u_SQUOTE] = ACTIONS(1355), + [anon_sym_U_SQUOTE] = ACTIONS(1355), + [anon_sym_u8_SQUOTE] = ACTIONS(1355), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_L_DQUOTE] = ACTIONS(1355), + [anon_sym_u_DQUOTE] = ACTIONS(1355), + [anon_sym_U_DQUOTE] = ACTIONS(1355), + [anon_sym_u8_DQUOTE] = ACTIONS(1355), + [anon_sym_DQUOTE] = ACTIONS(1355), + [sym_true] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [sym_null] = ACTIONS(1357), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1355), + [anon_sym_ATimport] = ACTIONS(1355), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1357), + [anon_sym_ATcompatibility_alias] = ACTIONS(1355), + [anon_sym_ATprotocol] = ACTIONS(1355), + [anon_sym_ATclass] = ACTIONS(1355), + [anon_sym_ATinterface] = ACTIONS(1355), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1357), + [sym_method_attribute_specifier] = ACTIONS(1357), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1357), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1357), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1357), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1357), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1357), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1357), + [anon_sym_NS_AVAILABLE] = ACTIONS(1357), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1357), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1357), + [anon_sym_API_AVAILABLE] = ACTIONS(1357), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1357), + [anon_sym_API_DEPRECATED] = ACTIONS(1357), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1357), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1357), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1357), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1357), + [anon_sym___deprecated_msg] = ACTIONS(1357), + [anon_sym___deprecated_enum_msg] = ACTIONS(1357), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1357), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1357), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1357), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1357), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1357), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1357), + [anon_sym_ATimplementation] = ACTIONS(1355), + [anon_sym_NS_ENUM] = ACTIONS(1357), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1357), + [anon_sym_NS_OPTIONS] = ACTIONS(1357), + [anon_sym_typeof] = ACTIONS(1357), + [anon_sym___typeof] = ACTIONS(1357), + [anon_sym___typeof__] = ACTIONS(1357), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1357), + [sym_nil] = ACTIONS(1357), + [sym_id] = ACTIONS(1357), + [sym_instancetype] = ACTIONS(1357), + [sym_Class] = ACTIONS(1357), + [sym_SEL] = ACTIONS(1357), + [sym_IMP] = ACTIONS(1357), + [sym_BOOL] = ACTIONS(1357), + [sym_auto] = ACTIONS(1357), + [anon_sym_ATautoreleasepool] = ACTIONS(1355), + [anon_sym_ATsynchronized] = ACTIONS(1355), + [anon_sym_ATtry] = ACTIONS(1355), + [anon_sym_ATcatch] = ACTIONS(1355), + [anon_sym_ATfinally] = ACTIONS(1355), + [anon_sym_ATthrow] = ACTIONS(1355), + [anon_sym_ATselector] = ACTIONS(1355), + [anon_sym_ATencode] = ACTIONS(1355), + [anon_sym_AT] = ACTIONS(1357), + [sym_YES] = ACTIONS(1357), + [sym_NO] = ACTIONS(1357), + [anon_sym___builtin_available] = ACTIONS(1357), + [anon_sym_ATavailable] = ACTIONS(1355), + [anon_sym_va_arg] = ACTIONS(1357), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [464] = { + [sym_identifier] = ACTIONS(1353), + [aux_sym_preproc_include_token1] = ACTIONS(1351), + [aux_sym_preproc_def_token1] = ACTIONS(1351), + [aux_sym_preproc_if_token1] = ACTIONS(1353), + [aux_sym_preproc_if_token2] = ACTIONS(1353), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1353), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1353), + [anon_sym_LPAREN2] = ACTIONS(1351), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_typedef] = ACTIONS(1353), + [anon_sym_extern] = ACTIONS(1353), + [anon_sym___attribute] = ACTIONS(1353), + [anon_sym___attribute__] = ACTIONS(1353), + [anon_sym___declspec] = ACTIONS(1353), + [anon_sym___cdecl] = ACTIONS(1353), + [anon_sym___clrcall] = ACTIONS(1353), + [anon_sym___stdcall] = ACTIONS(1353), + [anon_sym___fastcall] = ACTIONS(1353), + [anon_sym___thiscall] = ACTIONS(1353), + [anon_sym___vectorcall] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1353), + [anon_sym_auto] = ACTIONS(1353), + [anon_sym_register] = ACTIONS(1353), + [anon_sym_inline] = ACTIONS(1353), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1353), + [anon_sym_const] = ACTIONS(1353), + [anon_sym_volatile] = ACTIONS(1353), + [anon_sym_restrict] = ACTIONS(1353), + [anon_sym__Atomic] = ACTIONS(1353), + [anon_sym_in] = ACTIONS(1353), + [anon_sym_out] = ACTIONS(1353), + [anon_sym_inout] = ACTIONS(1353), + [anon_sym_bycopy] = ACTIONS(1353), + [anon_sym_byref] = ACTIONS(1353), + [anon_sym_oneway] = ACTIONS(1353), + [anon_sym__Nullable] = ACTIONS(1353), + [anon_sym__Nonnull] = ACTIONS(1353), + [anon_sym__Nullable_result] = ACTIONS(1353), + [anon_sym__Null_unspecified] = ACTIONS(1353), + [anon_sym___autoreleasing] = ACTIONS(1353), + [anon_sym___nullable] = ACTIONS(1353), + [anon_sym___nonnull] = ACTIONS(1353), + [anon_sym___strong] = ACTIONS(1353), + [anon_sym___weak] = ACTIONS(1353), + [anon_sym___bridge] = ACTIONS(1353), + [anon_sym___bridge_transfer] = ACTIONS(1353), + [anon_sym___bridge_retained] = ACTIONS(1353), + [anon_sym___unsafe_unretained] = ACTIONS(1353), + [anon_sym___block] = ACTIONS(1353), + [anon_sym___kindof] = ACTIONS(1353), + [anon_sym___unused] = ACTIONS(1353), + [anon_sym__Complex] = ACTIONS(1353), + [anon_sym___complex] = ACTIONS(1353), + [anon_sym_IBOutlet] = ACTIONS(1353), + [anon_sym_IBInspectable] = ACTIONS(1353), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1353), + [anon_sym_signed] = ACTIONS(1353), + [anon_sym_unsigned] = ACTIONS(1353), + [anon_sym_long] = ACTIONS(1353), + [anon_sym_short] = ACTIONS(1353), + [sym_primitive_type] = ACTIONS(1353), + [anon_sym_enum] = ACTIONS(1353), + [anon_sym_struct] = ACTIONS(1353), + [anon_sym_union] = ACTIONS(1353), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_else] = ACTIONS(1353), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_case] = ACTIONS(1353), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_while] = ACTIONS(1353), + [anon_sym_do] = ACTIONS(1353), + [anon_sym_for] = ACTIONS(1353), + [anon_sym_return] = ACTIONS(1353), + [anon_sym_break] = ACTIONS(1353), + [anon_sym_continue] = ACTIONS(1353), + [anon_sym_goto] = ACTIONS(1353), + [anon_sym_DASH_DASH] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(1351), + [anon_sym_sizeof] = ACTIONS(1353), + [sym_number_literal] = ACTIONS(1351), + [anon_sym_L_SQUOTE] = ACTIONS(1351), + [anon_sym_u_SQUOTE] = ACTIONS(1351), + [anon_sym_U_SQUOTE] = ACTIONS(1351), + [anon_sym_u8_SQUOTE] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_L_DQUOTE] = ACTIONS(1351), + [anon_sym_u_DQUOTE] = ACTIONS(1351), + [anon_sym_U_DQUOTE] = ACTIONS(1351), + [anon_sym_u8_DQUOTE] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1351), + [sym_true] = ACTIONS(1353), + [sym_false] = ACTIONS(1353), + [sym_null] = ACTIONS(1353), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1351), + [anon_sym_ATimport] = ACTIONS(1351), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1353), + [anon_sym_ATcompatibility_alias] = ACTIONS(1351), + [anon_sym_ATprotocol] = ACTIONS(1351), + [anon_sym_ATclass] = ACTIONS(1351), + [anon_sym_ATinterface] = ACTIONS(1351), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1353), + [sym_method_attribute_specifier] = ACTIONS(1353), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1353), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1353), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1353), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1353), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1353), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1353), + [anon_sym_NS_AVAILABLE] = ACTIONS(1353), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1353), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1353), + [anon_sym_API_AVAILABLE] = ACTIONS(1353), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1353), + [anon_sym_API_DEPRECATED] = ACTIONS(1353), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1353), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1353), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1353), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1353), + [anon_sym___deprecated_msg] = ACTIONS(1353), + [anon_sym___deprecated_enum_msg] = ACTIONS(1353), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1353), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1353), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1353), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1353), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1353), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1353), + [anon_sym_ATimplementation] = ACTIONS(1351), + [anon_sym_NS_ENUM] = ACTIONS(1353), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1353), + [anon_sym_NS_OPTIONS] = ACTIONS(1353), + [anon_sym_typeof] = ACTIONS(1353), + [anon_sym___typeof] = ACTIONS(1353), + [anon_sym___typeof__] = ACTIONS(1353), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1353), + [sym_nil] = ACTIONS(1353), + [sym_id] = ACTIONS(1353), + [sym_instancetype] = ACTIONS(1353), + [sym_Class] = ACTIONS(1353), + [sym_SEL] = ACTIONS(1353), + [sym_IMP] = ACTIONS(1353), + [sym_BOOL] = ACTIONS(1353), + [sym_auto] = ACTIONS(1353), + [anon_sym_ATautoreleasepool] = ACTIONS(1351), + [anon_sym_ATsynchronized] = ACTIONS(1351), + [anon_sym_ATtry] = ACTIONS(1351), + [anon_sym_ATcatch] = ACTIONS(1351), + [anon_sym_ATfinally] = ACTIONS(1351), + [anon_sym_ATthrow] = ACTIONS(1351), + [anon_sym_ATselector] = ACTIONS(1351), + [anon_sym_ATencode] = ACTIONS(1351), + [anon_sym_AT] = ACTIONS(1353), + [sym_YES] = ACTIONS(1353), + [sym_NO] = ACTIONS(1353), + [anon_sym___builtin_available] = ACTIONS(1353), + [anon_sym_ATavailable] = ACTIONS(1351), + [anon_sym_va_arg] = ACTIONS(1353), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [465] = { + [sym_identifier] = ACTIONS(1375), + [aux_sym_preproc_include_token1] = ACTIONS(1377), + [aux_sym_preproc_def_token1] = ACTIONS(1377), + [aux_sym_preproc_if_token1] = ACTIONS(1375), + [aux_sym_preproc_if_token2] = ACTIONS(1375), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1375), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1375), + [anon_sym_LPAREN2] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_TILDE] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_typedef] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym___attribute] = ACTIONS(1375), + [anon_sym___attribute__] = ACTIONS(1375), + [anon_sym___declspec] = ACTIONS(1375), + [anon_sym___cdecl] = ACTIONS(1375), + [anon_sym___clrcall] = ACTIONS(1375), + [anon_sym___stdcall] = ACTIONS(1375), + [anon_sym___fastcall] = ACTIONS(1375), + [anon_sym___thiscall] = ACTIONS(1375), + [anon_sym___vectorcall] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_auto] = ACTIONS(1375), + [anon_sym_register] = ACTIONS(1375), + [anon_sym_inline] = ACTIONS(1375), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_volatile] = ACTIONS(1375), + [anon_sym_restrict] = ACTIONS(1375), + [anon_sym__Atomic] = ACTIONS(1375), + [anon_sym_in] = ACTIONS(1375), + [anon_sym_out] = ACTIONS(1375), + [anon_sym_inout] = ACTIONS(1375), + [anon_sym_bycopy] = ACTIONS(1375), + [anon_sym_byref] = ACTIONS(1375), + [anon_sym_oneway] = ACTIONS(1375), + [anon_sym__Nullable] = ACTIONS(1375), + [anon_sym__Nonnull] = ACTIONS(1375), + [anon_sym__Nullable_result] = ACTIONS(1375), + [anon_sym__Null_unspecified] = ACTIONS(1375), + [anon_sym___autoreleasing] = ACTIONS(1375), + [anon_sym___nullable] = ACTIONS(1375), + [anon_sym___nonnull] = ACTIONS(1375), + [anon_sym___strong] = ACTIONS(1375), + [anon_sym___weak] = ACTIONS(1375), + [anon_sym___bridge] = ACTIONS(1375), + [anon_sym___bridge_transfer] = ACTIONS(1375), + [anon_sym___bridge_retained] = ACTIONS(1375), + [anon_sym___unsafe_unretained] = ACTIONS(1375), + [anon_sym___block] = ACTIONS(1375), + [anon_sym___kindof] = ACTIONS(1375), + [anon_sym___unused] = ACTIONS(1375), + [anon_sym__Complex] = ACTIONS(1375), + [anon_sym___complex] = ACTIONS(1375), + [anon_sym_IBOutlet] = ACTIONS(1375), + [anon_sym_IBInspectable] = ACTIONS(1375), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1375), + [anon_sym_signed] = ACTIONS(1375), + [anon_sym_unsigned] = ACTIONS(1375), + [anon_sym_long] = ACTIONS(1375), + [anon_sym_short] = ACTIONS(1375), + [sym_primitive_type] = ACTIONS(1375), + [anon_sym_enum] = ACTIONS(1375), + [anon_sym_struct] = ACTIONS(1375), + [anon_sym_union] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_default] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_goto] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1377), + [anon_sym_PLUS_PLUS] = ACTIONS(1377), + [anon_sym_sizeof] = ACTIONS(1375), + [sym_number_literal] = ACTIONS(1377), + [anon_sym_L_SQUOTE] = ACTIONS(1377), + [anon_sym_u_SQUOTE] = ACTIONS(1377), + [anon_sym_U_SQUOTE] = ACTIONS(1377), + [anon_sym_u8_SQUOTE] = ACTIONS(1377), + [anon_sym_SQUOTE] = ACTIONS(1377), + [anon_sym_L_DQUOTE] = ACTIONS(1377), + [anon_sym_u_DQUOTE] = ACTIONS(1377), + [anon_sym_U_DQUOTE] = ACTIONS(1377), + [anon_sym_u8_DQUOTE] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(1377), + [sym_true] = ACTIONS(1375), + [sym_false] = ACTIONS(1375), + [sym_null] = ACTIONS(1375), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1377), + [anon_sym_ATimport] = ACTIONS(1377), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1375), + [anon_sym_ATcompatibility_alias] = ACTIONS(1377), + [anon_sym_ATprotocol] = ACTIONS(1377), + [anon_sym_ATclass] = ACTIONS(1377), + [anon_sym_ATinterface] = ACTIONS(1377), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1375), + [sym_method_attribute_specifier] = ACTIONS(1375), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1375), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1375), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1375), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1375), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1375), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1375), + [anon_sym_NS_AVAILABLE] = ACTIONS(1375), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1375), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1375), + [anon_sym_API_AVAILABLE] = ACTIONS(1375), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1375), + [anon_sym_API_DEPRECATED] = ACTIONS(1375), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1375), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1375), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1375), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1375), + [anon_sym___deprecated_msg] = ACTIONS(1375), + [anon_sym___deprecated_enum_msg] = ACTIONS(1375), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1375), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1375), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1375), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1375), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1375), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1375), + [anon_sym_ATimplementation] = ACTIONS(1377), + [anon_sym_NS_ENUM] = ACTIONS(1375), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1375), + [anon_sym_NS_OPTIONS] = ACTIONS(1375), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym___typeof] = ACTIONS(1375), + [anon_sym___typeof__] = ACTIONS(1375), + [sym_self] = ACTIONS(1375), + [sym_super] = ACTIONS(1375), + [sym_nil] = ACTIONS(1375), + [sym_id] = ACTIONS(1375), + [sym_instancetype] = ACTIONS(1375), + [sym_Class] = ACTIONS(1375), + [sym_SEL] = ACTIONS(1375), + [sym_IMP] = ACTIONS(1375), + [sym_BOOL] = ACTIONS(1375), + [sym_auto] = ACTIONS(1375), + [anon_sym_ATautoreleasepool] = ACTIONS(1377), + [anon_sym_ATsynchronized] = ACTIONS(1377), + [anon_sym_ATtry] = ACTIONS(1377), + [anon_sym_ATcatch] = ACTIONS(1377), + [anon_sym_ATfinally] = ACTIONS(1377), + [anon_sym_ATthrow] = ACTIONS(1377), + [anon_sym_ATselector] = ACTIONS(1377), + [anon_sym_ATencode] = ACTIONS(1377), + [anon_sym_AT] = ACTIONS(1375), + [sym_YES] = ACTIONS(1375), + [sym_NO] = ACTIONS(1375), + [anon_sym___builtin_available] = ACTIONS(1375), + [anon_sym_ATavailable] = ACTIONS(1377), + [anon_sym_va_arg] = ACTIONS(1375), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [466] = { + [sym_identifier] = ACTIONS(1371), + [aux_sym_preproc_include_token1] = ACTIONS(1373), + [aux_sym_preproc_def_token1] = ACTIONS(1373), + [aux_sym_preproc_if_token1] = ACTIONS(1371), + [aux_sym_preproc_if_token2] = ACTIONS(1371), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1371), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1371), + [anon_sym_LPAREN2] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1373), + [anon_sym_TILDE] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_CARET] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_typedef] = ACTIONS(1371), + [anon_sym_extern] = ACTIONS(1371), + [anon_sym___attribute] = ACTIONS(1371), + [anon_sym___attribute__] = ACTIONS(1371), + [anon_sym___declspec] = ACTIONS(1371), + [anon_sym___cdecl] = ACTIONS(1371), + [anon_sym___clrcall] = ACTIONS(1371), + [anon_sym___stdcall] = ACTIONS(1371), + [anon_sym___fastcall] = ACTIONS(1371), + [anon_sym___thiscall] = ACTIONS(1371), + [anon_sym___vectorcall] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1371), + [anon_sym_auto] = ACTIONS(1371), + [anon_sym_register] = ACTIONS(1371), + [anon_sym_inline] = ACTIONS(1371), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_volatile] = ACTIONS(1371), + [anon_sym_restrict] = ACTIONS(1371), + [anon_sym__Atomic] = ACTIONS(1371), + [anon_sym_in] = ACTIONS(1371), + [anon_sym_out] = ACTIONS(1371), + [anon_sym_inout] = ACTIONS(1371), + [anon_sym_bycopy] = ACTIONS(1371), + [anon_sym_byref] = ACTIONS(1371), + [anon_sym_oneway] = ACTIONS(1371), + [anon_sym__Nullable] = ACTIONS(1371), + [anon_sym__Nonnull] = ACTIONS(1371), + [anon_sym__Nullable_result] = ACTIONS(1371), + [anon_sym__Null_unspecified] = ACTIONS(1371), + [anon_sym___autoreleasing] = ACTIONS(1371), + [anon_sym___nullable] = ACTIONS(1371), + [anon_sym___nonnull] = ACTIONS(1371), + [anon_sym___strong] = ACTIONS(1371), + [anon_sym___weak] = ACTIONS(1371), + [anon_sym___bridge] = ACTIONS(1371), + [anon_sym___bridge_transfer] = ACTIONS(1371), + [anon_sym___bridge_retained] = ACTIONS(1371), + [anon_sym___unsafe_unretained] = ACTIONS(1371), + [anon_sym___block] = ACTIONS(1371), + [anon_sym___kindof] = ACTIONS(1371), + [anon_sym___unused] = ACTIONS(1371), + [anon_sym__Complex] = ACTIONS(1371), + [anon_sym___complex] = ACTIONS(1371), + [anon_sym_IBOutlet] = ACTIONS(1371), + [anon_sym_IBInspectable] = ACTIONS(1371), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1371), + [anon_sym_signed] = ACTIONS(1371), + [anon_sym_unsigned] = ACTIONS(1371), + [anon_sym_long] = ACTIONS(1371), + [anon_sym_short] = ACTIONS(1371), + [sym_primitive_type] = ACTIONS(1371), + [anon_sym_enum] = ACTIONS(1371), + [anon_sym_struct] = ACTIONS(1371), + [anon_sym_union] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1371), + [anon_sym_else] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1371), + [anon_sym_case] = ACTIONS(1371), + [anon_sym_default] = ACTIONS(1371), + [anon_sym_while] = ACTIONS(1371), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(1371), + [anon_sym_continue] = ACTIONS(1371), + [anon_sym_goto] = ACTIONS(1371), + [anon_sym_DASH_DASH] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(1373), + [anon_sym_sizeof] = ACTIONS(1371), + [sym_number_literal] = ACTIONS(1373), + [anon_sym_L_SQUOTE] = ACTIONS(1373), + [anon_sym_u_SQUOTE] = ACTIONS(1373), + [anon_sym_U_SQUOTE] = ACTIONS(1373), + [anon_sym_u8_SQUOTE] = ACTIONS(1373), + [anon_sym_SQUOTE] = ACTIONS(1373), + [anon_sym_L_DQUOTE] = ACTIONS(1373), + [anon_sym_u_DQUOTE] = ACTIONS(1373), + [anon_sym_U_DQUOTE] = ACTIONS(1373), + [anon_sym_u8_DQUOTE] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(1373), + [sym_true] = ACTIONS(1371), + [sym_false] = ACTIONS(1371), + [sym_null] = ACTIONS(1371), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1373), + [anon_sym_ATimport] = ACTIONS(1373), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1371), + [anon_sym_ATcompatibility_alias] = ACTIONS(1373), + [anon_sym_ATprotocol] = ACTIONS(1373), + [anon_sym_ATclass] = ACTIONS(1373), + [anon_sym_ATinterface] = ACTIONS(1373), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1371), + [sym_method_attribute_specifier] = ACTIONS(1371), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1371), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1371), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1371), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1371), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1371), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1371), + [anon_sym_NS_AVAILABLE] = ACTIONS(1371), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1371), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_API_AVAILABLE] = ACTIONS(1371), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1371), + [anon_sym_API_DEPRECATED] = ACTIONS(1371), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1371), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1371), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1371), + [anon_sym___deprecated_msg] = ACTIONS(1371), + [anon_sym___deprecated_enum_msg] = ACTIONS(1371), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1371), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1371), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1371), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1371), + [anon_sym_ATimplementation] = ACTIONS(1373), + [anon_sym_NS_ENUM] = ACTIONS(1371), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1371), + [anon_sym_NS_OPTIONS] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym___typeof] = ACTIONS(1371), + [anon_sym___typeof__] = ACTIONS(1371), + [sym_self] = ACTIONS(1371), + [sym_super] = ACTIONS(1371), + [sym_nil] = ACTIONS(1371), + [sym_id] = ACTIONS(1371), + [sym_instancetype] = ACTIONS(1371), + [sym_Class] = ACTIONS(1371), + [sym_SEL] = ACTIONS(1371), + [sym_IMP] = ACTIONS(1371), + [sym_BOOL] = ACTIONS(1371), + [sym_auto] = ACTIONS(1371), + [anon_sym_ATautoreleasepool] = ACTIONS(1373), + [anon_sym_ATsynchronized] = ACTIONS(1373), + [anon_sym_ATtry] = ACTIONS(1373), + [anon_sym_ATcatch] = ACTIONS(1373), + [anon_sym_ATfinally] = ACTIONS(1373), + [anon_sym_ATthrow] = ACTIONS(1373), + [anon_sym_ATselector] = ACTIONS(1373), + [anon_sym_ATencode] = ACTIONS(1373), + [anon_sym_AT] = ACTIONS(1371), + [sym_YES] = ACTIONS(1371), + [sym_NO] = ACTIONS(1371), + [anon_sym___builtin_available] = ACTIONS(1371), + [anon_sym_ATavailable] = ACTIONS(1373), + [anon_sym_va_arg] = ACTIONS(1371), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [467] = { + [sym_identifier] = ACTIONS(1359), + [aux_sym_preproc_include_token1] = ACTIONS(1361), + [aux_sym_preproc_def_token1] = ACTIONS(1361), + [aux_sym_preproc_if_token1] = ACTIONS(1359), + [aux_sym_preproc_if_token2] = ACTIONS(1359), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1359), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1359), + [anon_sym_LPAREN2] = ACTIONS(1361), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_TILDE] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_CARET] = ACTIONS(1361), + [anon_sym_AMP] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_typedef] = ACTIONS(1359), + [anon_sym_extern] = ACTIONS(1359), + [anon_sym___attribute] = ACTIONS(1359), + [anon_sym___attribute__] = ACTIONS(1359), + [anon_sym___declspec] = ACTIONS(1359), + [anon_sym___cdecl] = ACTIONS(1359), + [anon_sym___clrcall] = ACTIONS(1359), + [anon_sym___stdcall] = ACTIONS(1359), + [anon_sym___fastcall] = ACTIONS(1359), + [anon_sym___thiscall] = ACTIONS(1359), + [anon_sym___vectorcall] = ACTIONS(1359), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_static] = ACTIONS(1359), + [anon_sym_auto] = ACTIONS(1359), + [anon_sym_register] = ACTIONS(1359), + [anon_sym_inline] = ACTIONS(1359), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1359), + [anon_sym_volatile] = ACTIONS(1359), + [anon_sym_restrict] = ACTIONS(1359), + [anon_sym__Atomic] = ACTIONS(1359), + [anon_sym_in] = ACTIONS(1359), + [anon_sym_out] = ACTIONS(1359), + [anon_sym_inout] = ACTIONS(1359), + [anon_sym_bycopy] = ACTIONS(1359), + [anon_sym_byref] = ACTIONS(1359), + [anon_sym_oneway] = ACTIONS(1359), + [anon_sym__Nullable] = ACTIONS(1359), + [anon_sym__Nonnull] = ACTIONS(1359), + [anon_sym__Nullable_result] = ACTIONS(1359), + [anon_sym__Null_unspecified] = ACTIONS(1359), + [anon_sym___autoreleasing] = ACTIONS(1359), + [anon_sym___nullable] = ACTIONS(1359), + [anon_sym___nonnull] = ACTIONS(1359), + [anon_sym___strong] = ACTIONS(1359), + [anon_sym___weak] = ACTIONS(1359), + [anon_sym___bridge] = ACTIONS(1359), + [anon_sym___bridge_transfer] = ACTIONS(1359), + [anon_sym___bridge_retained] = ACTIONS(1359), + [anon_sym___unsafe_unretained] = ACTIONS(1359), + [anon_sym___block] = ACTIONS(1359), + [anon_sym___kindof] = ACTIONS(1359), + [anon_sym___unused] = ACTIONS(1359), + [anon_sym__Complex] = ACTIONS(1359), + [anon_sym___complex] = ACTIONS(1359), + [anon_sym_IBOutlet] = ACTIONS(1359), + [anon_sym_IBInspectable] = ACTIONS(1359), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1359), + [anon_sym_signed] = ACTIONS(1359), + [anon_sym_unsigned] = ACTIONS(1359), + [anon_sym_long] = ACTIONS(1359), + [anon_sym_short] = ACTIONS(1359), + [sym_primitive_type] = ACTIONS(1359), + [anon_sym_enum] = ACTIONS(1359), + [anon_sym_struct] = ACTIONS(1359), + [anon_sym_union] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1359), + [anon_sym_else] = ACTIONS(1359), + [anon_sym_switch] = ACTIONS(1359), + [anon_sym_case] = ACTIONS(1359), + [anon_sym_default] = ACTIONS(1359), + [anon_sym_while] = ACTIONS(1359), + [anon_sym_do] = ACTIONS(1359), + [anon_sym_for] = ACTIONS(1359), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_break] = ACTIONS(1359), + [anon_sym_continue] = ACTIONS(1359), + [anon_sym_goto] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_sizeof] = ACTIONS(1359), + [sym_number_literal] = ACTIONS(1361), + [anon_sym_L_SQUOTE] = ACTIONS(1361), + [anon_sym_u_SQUOTE] = ACTIONS(1361), + [anon_sym_U_SQUOTE] = ACTIONS(1361), + [anon_sym_u8_SQUOTE] = ACTIONS(1361), + [anon_sym_SQUOTE] = ACTIONS(1361), + [anon_sym_L_DQUOTE] = ACTIONS(1361), + [anon_sym_u_DQUOTE] = ACTIONS(1361), + [anon_sym_U_DQUOTE] = ACTIONS(1361), + [anon_sym_u8_DQUOTE] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(1361), + [sym_true] = ACTIONS(1359), + [sym_false] = ACTIONS(1359), + [sym_null] = ACTIONS(1359), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1361), + [anon_sym_ATimport] = ACTIONS(1361), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1359), + [anon_sym_ATcompatibility_alias] = ACTIONS(1361), + [anon_sym_ATprotocol] = ACTIONS(1361), + [anon_sym_ATclass] = ACTIONS(1361), + [anon_sym_ATinterface] = ACTIONS(1361), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1359), + [sym_method_attribute_specifier] = ACTIONS(1359), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1359), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1359), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1359), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1359), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1359), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1359), + [anon_sym_NS_AVAILABLE] = ACTIONS(1359), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1359), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_API_AVAILABLE] = ACTIONS(1359), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1359), + [anon_sym_API_DEPRECATED] = ACTIONS(1359), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1359), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1359), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1359), + [anon_sym___deprecated_msg] = ACTIONS(1359), + [anon_sym___deprecated_enum_msg] = ACTIONS(1359), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1359), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1359), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1359), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1359), + [anon_sym_ATimplementation] = ACTIONS(1361), + [anon_sym_NS_ENUM] = ACTIONS(1359), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1359), + [anon_sym_NS_OPTIONS] = ACTIONS(1359), + [anon_sym_typeof] = ACTIONS(1359), + [anon_sym___typeof] = ACTIONS(1359), + [anon_sym___typeof__] = ACTIONS(1359), + [sym_self] = ACTIONS(1359), + [sym_super] = ACTIONS(1359), + [sym_nil] = ACTIONS(1359), + [sym_id] = ACTIONS(1359), + [sym_instancetype] = ACTIONS(1359), + [sym_Class] = ACTIONS(1359), + [sym_SEL] = ACTIONS(1359), + [sym_IMP] = ACTIONS(1359), + [sym_BOOL] = ACTIONS(1359), + [sym_auto] = ACTIONS(1359), + [anon_sym_ATautoreleasepool] = ACTIONS(1361), + [anon_sym_ATsynchronized] = ACTIONS(1361), + [anon_sym_ATtry] = ACTIONS(1361), + [anon_sym_ATcatch] = ACTIONS(1361), + [anon_sym_ATfinally] = ACTIONS(1361), + [anon_sym_ATthrow] = ACTIONS(1361), + [anon_sym_ATselector] = ACTIONS(1361), + [anon_sym_ATencode] = ACTIONS(1361), + [anon_sym_AT] = ACTIONS(1359), + [sym_YES] = ACTIONS(1359), + [sym_NO] = ACTIONS(1359), + [anon_sym___builtin_available] = ACTIONS(1359), + [anon_sym_ATavailable] = ACTIONS(1361), + [anon_sym_va_arg] = ACTIONS(1359), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [468] = { + [sym_identifier] = ACTIONS(1329), + [aux_sym_preproc_include_token1] = ACTIONS(1327), + [aux_sym_preproc_def_token1] = ACTIONS(1327), + [aux_sym_preproc_if_token1] = ACTIONS(1329), + [aux_sym_preproc_if_token2] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1329), + [anon_sym_LPAREN2] = ACTIONS(1327), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1327), + [anon_sym_DASH] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1329), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_CARET] = ACTIONS(1327), + [anon_sym_AMP] = ACTIONS(1327), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_typedef] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1329), + [anon_sym___attribute] = ACTIONS(1329), + [anon_sym___attribute__] = ACTIONS(1329), + [anon_sym___declspec] = ACTIONS(1329), + [anon_sym___cdecl] = ACTIONS(1329), + [anon_sym___clrcall] = ACTIONS(1329), + [anon_sym___stdcall] = ACTIONS(1329), + [anon_sym___fastcall] = ACTIONS(1329), + [anon_sym___thiscall] = ACTIONS(1329), + [anon_sym___vectorcall] = ACTIONS(1329), + [anon_sym_LBRACE] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(1329), + [anon_sym_auto] = ACTIONS(1329), + [anon_sym_register] = ACTIONS(1329), + [anon_sym_inline] = ACTIONS(1329), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_volatile] = ACTIONS(1329), + [anon_sym_restrict] = ACTIONS(1329), + [anon_sym__Atomic] = ACTIONS(1329), + [anon_sym_in] = ACTIONS(1329), + [anon_sym_out] = ACTIONS(1329), + [anon_sym_inout] = ACTIONS(1329), + [anon_sym_bycopy] = ACTIONS(1329), + [anon_sym_byref] = ACTIONS(1329), + [anon_sym_oneway] = ACTIONS(1329), + [anon_sym__Nullable] = ACTIONS(1329), + [anon_sym__Nonnull] = ACTIONS(1329), + [anon_sym__Nullable_result] = ACTIONS(1329), + [anon_sym__Null_unspecified] = ACTIONS(1329), + [anon_sym___autoreleasing] = ACTIONS(1329), + [anon_sym___nullable] = ACTIONS(1329), + [anon_sym___nonnull] = ACTIONS(1329), + [anon_sym___strong] = ACTIONS(1329), + [anon_sym___weak] = ACTIONS(1329), + [anon_sym___bridge] = ACTIONS(1329), + [anon_sym___bridge_transfer] = ACTIONS(1329), + [anon_sym___bridge_retained] = ACTIONS(1329), + [anon_sym___unsafe_unretained] = ACTIONS(1329), + [anon_sym___block] = ACTIONS(1329), + [anon_sym___kindof] = ACTIONS(1329), + [anon_sym___unused] = ACTIONS(1329), + [anon_sym__Complex] = ACTIONS(1329), + [anon_sym___complex] = ACTIONS(1329), + [anon_sym_IBOutlet] = ACTIONS(1329), + [anon_sym_IBInspectable] = ACTIONS(1329), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1329), + [anon_sym_signed] = ACTIONS(1329), + [anon_sym_unsigned] = ACTIONS(1329), + [anon_sym_long] = ACTIONS(1329), + [anon_sym_short] = ACTIONS(1329), + [sym_primitive_type] = ACTIONS(1329), + [anon_sym_enum] = ACTIONS(1329), + [anon_sym_struct] = ACTIONS(1329), + [anon_sym_union] = ACTIONS(1329), + [anon_sym_if] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_switch] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1329), + [anon_sym_while] = ACTIONS(1329), + [anon_sym_do] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1329), + [anon_sym_return] = ACTIONS(1329), + [anon_sym_break] = ACTIONS(1329), + [anon_sym_continue] = ACTIONS(1329), + [anon_sym_goto] = ACTIONS(1329), + [anon_sym_DASH_DASH] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(1327), + [anon_sym_sizeof] = ACTIONS(1329), + [sym_number_literal] = ACTIONS(1327), + [anon_sym_L_SQUOTE] = ACTIONS(1327), + [anon_sym_u_SQUOTE] = ACTIONS(1327), + [anon_sym_U_SQUOTE] = ACTIONS(1327), + [anon_sym_u8_SQUOTE] = ACTIONS(1327), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_L_DQUOTE] = ACTIONS(1327), + [anon_sym_u_DQUOTE] = ACTIONS(1327), + [anon_sym_U_DQUOTE] = ACTIONS(1327), + [anon_sym_u8_DQUOTE] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1327), + [sym_true] = ACTIONS(1329), + [sym_false] = ACTIONS(1329), + [sym_null] = ACTIONS(1329), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1327), + [anon_sym_ATimport] = ACTIONS(1327), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1329), + [anon_sym_ATcompatibility_alias] = ACTIONS(1327), + [anon_sym_ATprotocol] = ACTIONS(1327), + [anon_sym_ATclass] = ACTIONS(1327), + [anon_sym_ATinterface] = ACTIONS(1327), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1329), + [sym_method_attribute_specifier] = ACTIONS(1329), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1329), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1329), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1329), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1329), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1329), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1329), + [anon_sym_NS_AVAILABLE] = ACTIONS(1329), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1329), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1329), + [anon_sym_API_AVAILABLE] = ACTIONS(1329), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1329), + [anon_sym_API_DEPRECATED] = ACTIONS(1329), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1329), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1329), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1329), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1329), + [anon_sym___deprecated_msg] = ACTIONS(1329), + [anon_sym___deprecated_enum_msg] = ACTIONS(1329), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1329), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1329), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1329), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1329), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1329), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1329), + [anon_sym_ATimplementation] = ACTIONS(1327), + [anon_sym_NS_ENUM] = ACTIONS(1329), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1329), + [anon_sym_NS_OPTIONS] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1329), + [anon_sym___typeof] = ACTIONS(1329), + [anon_sym___typeof__] = ACTIONS(1329), + [sym_self] = ACTIONS(1329), + [sym_super] = ACTIONS(1329), + [sym_nil] = ACTIONS(1329), + [sym_id] = ACTIONS(1329), + [sym_instancetype] = ACTIONS(1329), + [sym_Class] = ACTIONS(1329), + [sym_SEL] = ACTIONS(1329), + [sym_IMP] = ACTIONS(1329), + [sym_BOOL] = ACTIONS(1329), + [sym_auto] = ACTIONS(1329), + [anon_sym_ATautoreleasepool] = ACTIONS(1327), + [anon_sym_ATsynchronized] = ACTIONS(1327), + [anon_sym_ATtry] = ACTIONS(1327), + [anon_sym_ATcatch] = ACTIONS(1327), + [anon_sym_ATfinally] = ACTIONS(1327), + [anon_sym_ATthrow] = ACTIONS(1327), + [anon_sym_ATselector] = ACTIONS(1327), + [anon_sym_ATencode] = ACTIONS(1327), + [anon_sym_AT] = ACTIONS(1329), + [sym_YES] = ACTIONS(1329), + [sym_NO] = ACTIONS(1329), + [anon_sym___builtin_available] = ACTIONS(1329), + [anon_sym_ATavailable] = ACTIONS(1327), + [anon_sym_va_arg] = ACTIONS(1329), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [469] = { + [sym_identifier] = ACTIONS(1337), + [aux_sym_preproc_include_token1] = ACTIONS(1335), + [aux_sym_preproc_def_token1] = ACTIONS(1335), + [aux_sym_preproc_if_token1] = ACTIONS(1337), + [aux_sym_preproc_if_token2] = ACTIONS(1337), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1337), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1337), + [anon_sym_LPAREN2] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_TILDE] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_typedef] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1337), + [anon_sym___attribute] = ACTIONS(1337), + [anon_sym___attribute__] = ACTIONS(1337), + [anon_sym___declspec] = ACTIONS(1337), + [anon_sym___cdecl] = ACTIONS(1337), + [anon_sym___clrcall] = ACTIONS(1337), + [anon_sym___stdcall] = ACTIONS(1337), + [anon_sym___fastcall] = ACTIONS(1337), + [anon_sym___thiscall] = ACTIONS(1337), + [anon_sym___vectorcall] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1337), + [anon_sym_auto] = ACTIONS(1337), + [anon_sym_register] = ACTIONS(1337), + [anon_sym_inline] = ACTIONS(1337), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1337), + [anon_sym_volatile] = ACTIONS(1337), + [anon_sym_restrict] = ACTIONS(1337), + [anon_sym__Atomic] = ACTIONS(1337), + [anon_sym_in] = ACTIONS(1337), + [anon_sym_out] = ACTIONS(1337), + [anon_sym_inout] = ACTIONS(1337), + [anon_sym_bycopy] = ACTIONS(1337), + [anon_sym_byref] = ACTIONS(1337), + [anon_sym_oneway] = ACTIONS(1337), + [anon_sym__Nullable] = ACTIONS(1337), + [anon_sym__Nonnull] = ACTIONS(1337), + [anon_sym__Nullable_result] = ACTIONS(1337), + [anon_sym__Null_unspecified] = ACTIONS(1337), + [anon_sym___autoreleasing] = ACTIONS(1337), + [anon_sym___nullable] = ACTIONS(1337), + [anon_sym___nonnull] = ACTIONS(1337), + [anon_sym___strong] = ACTIONS(1337), + [anon_sym___weak] = ACTIONS(1337), + [anon_sym___bridge] = ACTIONS(1337), + [anon_sym___bridge_transfer] = ACTIONS(1337), + [anon_sym___bridge_retained] = ACTIONS(1337), + [anon_sym___unsafe_unretained] = ACTIONS(1337), + [anon_sym___block] = ACTIONS(1337), + [anon_sym___kindof] = ACTIONS(1337), + [anon_sym___unused] = ACTIONS(1337), + [anon_sym__Complex] = ACTIONS(1337), + [anon_sym___complex] = ACTIONS(1337), + [anon_sym_IBOutlet] = ACTIONS(1337), + [anon_sym_IBInspectable] = ACTIONS(1337), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1337), + [anon_sym_signed] = ACTIONS(1337), + [anon_sym_unsigned] = ACTIONS(1337), + [anon_sym_long] = ACTIONS(1337), + [anon_sym_short] = ACTIONS(1337), + [sym_primitive_type] = ACTIONS(1337), + [anon_sym_enum] = ACTIONS(1337), + [anon_sym_struct] = ACTIONS(1337), + [anon_sym_union] = ACTIONS(1337), + [anon_sym_if] = ACTIONS(1337), + [anon_sym_else] = ACTIONS(1337), + [anon_sym_switch] = ACTIONS(1337), + [anon_sym_case] = ACTIONS(1337), + [anon_sym_default] = ACTIONS(1337), + [anon_sym_while] = ACTIONS(1337), + [anon_sym_do] = ACTIONS(1337), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_return] = ACTIONS(1337), + [anon_sym_break] = ACTIONS(1337), + [anon_sym_continue] = ACTIONS(1337), + [anon_sym_goto] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1335), + [anon_sym_PLUS_PLUS] = ACTIONS(1335), + [anon_sym_sizeof] = ACTIONS(1337), + [sym_number_literal] = ACTIONS(1335), + [anon_sym_L_SQUOTE] = ACTIONS(1335), + [anon_sym_u_SQUOTE] = ACTIONS(1335), + [anon_sym_U_SQUOTE] = ACTIONS(1335), + [anon_sym_u8_SQUOTE] = ACTIONS(1335), + [anon_sym_SQUOTE] = ACTIONS(1335), + [anon_sym_L_DQUOTE] = ACTIONS(1335), + [anon_sym_u_DQUOTE] = ACTIONS(1335), + [anon_sym_U_DQUOTE] = ACTIONS(1335), + [anon_sym_u8_DQUOTE] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1335), + [sym_true] = ACTIONS(1337), + [sym_false] = ACTIONS(1337), + [sym_null] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1335), + [anon_sym_ATimport] = ACTIONS(1335), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1337), + [anon_sym_ATcompatibility_alias] = ACTIONS(1335), + [anon_sym_ATprotocol] = ACTIONS(1335), + [anon_sym_ATclass] = ACTIONS(1335), + [anon_sym_ATinterface] = ACTIONS(1335), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1337), + [sym_method_attribute_specifier] = ACTIONS(1337), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1337), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1337), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1337), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1337), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1337), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1337), + [anon_sym_NS_AVAILABLE] = ACTIONS(1337), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1337), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1337), + [anon_sym_API_AVAILABLE] = ACTIONS(1337), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1337), + [anon_sym_API_DEPRECATED] = ACTIONS(1337), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1337), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1337), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1337), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1337), + [anon_sym___deprecated_msg] = ACTIONS(1337), + [anon_sym___deprecated_enum_msg] = ACTIONS(1337), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1337), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1337), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1337), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1337), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1337), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1337), + [anon_sym_ATimplementation] = ACTIONS(1335), + [anon_sym_NS_ENUM] = ACTIONS(1337), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1337), + [anon_sym_NS_OPTIONS] = ACTIONS(1337), + [anon_sym_typeof] = ACTIONS(1337), + [anon_sym___typeof] = ACTIONS(1337), + [anon_sym___typeof__] = ACTIONS(1337), + [sym_self] = ACTIONS(1337), + [sym_super] = ACTIONS(1337), + [sym_nil] = ACTIONS(1337), + [sym_id] = ACTIONS(1337), + [sym_instancetype] = ACTIONS(1337), + [sym_Class] = ACTIONS(1337), + [sym_SEL] = ACTIONS(1337), + [sym_IMP] = ACTIONS(1337), + [sym_BOOL] = ACTIONS(1337), + [sym_auto] = ACTIONS(1337), + [anon_sym_ATautoreleasepool] = ACTIONS(1335), + [anon_sym_ATsynchronized] = ACTIONS(1335), + [anon_sym_ATtry] = ACTIONS(1335), + [anon_sym_ATcatch] = ACTIONS(1335), + [anon_sym_ATfinally] = ACTIONS(1335), + [anon_sym_ATthrow] = ACTIONS(1335), + [anon_sym_ATselector] = ACTIONS(1335), + [anon_sym_ATencode] = ACTIONS(1335), + [anon_sym_AT] = ACTIONS(1337), + [sym_YES] = ACTIONS(1337), + [sym_NO] = ACTIONS(1337), + [anon_sym___builtin_available] = ACTIONS(1337), + [anon_sym_ATavailable] = ACTIONS(1335), + [anon_sym_va_arg] = ACTIONS(1337), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [470] = { + [sym_identifier] = ACTIONS(1345), + [aux_sym_preproc_include_token1] = ACTIONS(1343), + [aux_sym_preproc_def_token1] = ACTIONS(1343), + [aux_sym_preproc_if_token1] = ACTIONS(1345), + [aux_sym_preproc_if_token2] = ACTIONS(1345), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1345), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1345), + [anon_sym_LPAREN2] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_typedef] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym___attribute] = ACTIONS(1345), + [anon_sym___attribute__] = ACTIONS(1345), + [anon_sym___declspec] = ACTIONS(1345), + [anon_sym___cdecl] = ACTIONS(1345), + [anon_sym___clrcall] = ACTIONS(1345), + [anon_sym___stdcall] = ACTIONS(1345), + [anon_sym___fastcall] = ACTIONS(1345), + [anon_sym___thiscall] = ACTIONS(1345), + [anon_sym___vectorcall] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_static] = ACTIONS(1345), + [anon_sym_auto] = ACTIONS(1345), + [anon_sym_register] = ACTIONS(1345), + [anon_sym_inline] = ACTIONS(1345), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1345), + [anon_sym_const] = ACTIONS(1345), + [anon_sym_volatile] = ACTIONS(1345), + [anon_sym_restrict] = ACTIONS(1345), + [anon_sym__Atomic] = ACTIONS(1345), + [anon_sym_in] = ACTIONS(1345), + [anon_sym_out] = ACTIONS(1345), + [anon_sym_inout] = ACTIONS(1345), + [anon_sym_bycopy] = ACTIONS(1345), + [anon_sym_byref] = ACTIONS(1345), + [anon_sym_oneway] = ACTIONS(1345), + [anon_sym__Nullable] = ACTIONS(1345), + [anon_sym__Nonnull] = ACTIONS(1345), + [anon_sym__Nullable_result] = ACTIONS(1345), + [anon_sym__Null_unspecified] = ACTIONS(1345), + [anon_sym___autoreleasing] = ACTIONS(1345), + [anon_sym___nullable] = ACTIONS(1345), + [anon_sym___nonnull] = ACTIONS(1345), + [anon_sym___strong] = ACTIONS(1345), + [anon_sym___weak] = ACTIONS(1345), + [anon_sym___bridge] = ACTIONS(1345), + [anon_sym___bridge_transfer] = ACTIONS(1345), + [anon_sym___bridge_retained] = ACTIONS(1345), + [anon_sym___unsafe_unretained] = ACTIONS(1345), + [anon_sym___block] = ACTIONS(1345), + [anon_sym___kindof] = ACTIONS(1345), + [anon_sym___unused] = ACTIONS(1345), + [anon_sym__Complex] = ACTIONS(1345), + [anon_sym___complex] = ACTIONS(1345), + [anon_sym_IBOutlet] = ACTIONS(1345), + [anon_sym_IBInspectable] = ACTIONS(1345), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1345), + [anon_sym_signed] = ACTIONS(1345), + [anon_sym_unsigned] = ACTIONS(1345), + [anon_sym_long] = ACTIONS(1345), + [anon_sym_short] = ACTIONS(1345), + [sym_primitive_type] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1345), + [anon_sym_struct] = ACTIONS(1345), + [anon_sym_union] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_switch] = ACTIONS(1345), + [anon_sym_case] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_goto] = ACTIONS(1345), + [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_sizeof] = ACTIONS(1345), + [sym_number_literal] = ACTIONS(1343), + [anon_sym_L_SQUOTE] = ACTIONS(1343), + [anon_sym_u_SQUOTE] = ACTIONS(1343), + [anon_sym_U_SQUOTE] = ACTIONS(1343), + [anon_sym_u8_SQUOTE] = ACTIONS(1343), + [anon_sym_SQUOTE] = ACTIONS(1343), + [anon_sym_L_DQUOTE] = ACTIONS(1343), + [anon_sym_u_DQUOTE] = ACTIONS(1343), + [anon_sym_U_DQUOTE] = ACTIONS(1343), + [anon_sym_u8_DQUOTE] = ACTIONS(1343), + [anon_sym_DQUOTE] = ACTIONS(1343), + [sym_true] = ACTIONS(1345), + [sym_false] = ACTIONS(1345), + [sym_null] = ACTIONS(1345), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1343), + [anon_sym_ATimport] = ACTIONS(1343), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1345), + [anon_sym_ATcompatibility_alias] = ACTIONS(1343), + [anon_sym_ATprotocol] = ACTIONS(1343), + [anon_sym_ATclass] = ACTIONS(1343), + [anon_sym_ATinterface] = ACTIONS(1343), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1345), + [sym_method_attribute_specifier] = ACTIONS(1345), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1345), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1345), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1345), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1345), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1345), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1345), + [anon_sym_NS_AVAILABLE] = ACTIONS(1345), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1345), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1345), + [anon_sym_API_AVAILABLE] = ACTIONS(1345), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1345), + [anon_sym_API_DEPRECATED] = ACTIONS(1345), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1345), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1345), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1345), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1345), + [anon_sym___deprecated_msg] = ACTIONS(1345), + [anon_sym___deprecated_enum_msg] = ACTIONS(1345), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1345), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1345), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1345), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1345), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1345), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1345), + [anon_sym_ATimplementation] = ACTIONS(1343), + [anon_sym_NS_ENUM] = ACTIONS(1345), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1345), + [anon_sym_NS_OPTIONS] = ACTIONS(1345), + [anon_sym_typeof] = ACTIONS(1345), + [anon_sym___typeof] = ACTIONS(1345), + [anon_sym___typeof__] = ACTIONS(1345), + [sym_self] = ACTIONS(1345), + [sym_super] = ACTIONS(1345), + [sym_nil] = ACTIONS(1345), + [sym_id] = ACTIONS(1345), + [sym_instancetype] = ACTIONS(1345), + [sym_Class] = ACTIONS(1345), + [sym_SEL] = ACTIONS(1345), + [sym_IMP] = ACTIONS(1345), + [sym_BOOL] = ACTIONS(1345), + [sym_auto] = ACTIONS(1345), + [anon_sym_ATautoreleasepool] = ACTIONS(1343), + [anon_sym_ATsynchronized] = ACTIONS(1343), + [anon_sym_ATtry] = ACTIONS(1343), + [anon_sym_ATcatch] = ACTIONS(1343), + [anon_sym_ATfinally] = ACTIONS(1343), + [anon_sym_ATthrow] = ACTIONS(1343), + [anon_sym_ATselector] = ACTIONS(1343), + [anon_sym_ATencode] = ACTIONS(1343), + [anon_sym_AT] = ACTIONS(1345), + [sym_YES] = ACTIONS(1345), + [sym_NO] = ACTIONS(1345), + [anon_sym___builtin_available] = ACTIONS(1345), + [anon_sym_ATavailable] = ACTIONS(1343), + [anon_sym_va_arg] = ACTIONS(1345), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [471] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [aux_sym_preproc_else_token1] = ACTIONS(1672), + [aux_sym_preproc_elif_token1] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [472] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [aux_sym_preproc_else_token1] = ACTIONS(1676), + [aux_sym_preproc_elif_token1] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [473] = { + [sym_identifier] = ACTIONS(1680), + [aux_sym_preproc_include_token1] = ACTIONS(1682), + [aux_sym_preproc_def_token1] = ACTIONS(1682), + [aux_sym_preproc_if_token1] = ACTIONS(1680), + [aux_sym_preproc_if_token2] = ACTIONS(1680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1680), + [aux_sym_preproc_else_token1] = ACTIONS(1680), + [aux_sym_preproc_elif_token1] = ACTIONS(1680), + [anon_sym_LPAREN2] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_TILDE] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_CARET] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_typedef] = ACTIONS(1680), + [anon_sym_extern] = ACTIONS(1680), + [anon_sym___attribute] = ACTIONS(1680), + [anon_sym___attribute__] = ACTIONS(1680), + [anon_sym___declspec] = ACTIONS(1680), + [anon_sym___cdecl] = ACTIONS(1680), + [anon_sym___clrcall] = ACTIONS(1680), + [anon_sym___stdcall] = ACTIONS(1680), + [anon_sym___fastcall] = ACTIONS(1680), + [anon_sym___thiscall] = ACTIONS(1680), + [anon_sym___vectorcall] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_static] = ACTIONS(1680), + [anon_sym_auto] = ACTIONS(1680), + [anon_sym_register] = ACTIONS(1680), + [anon_sym_inline] = ACTIONS(1680), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1680), + [anon_sym_const] = ACTIONS(1680), + [anon_sym_volatile] = ACTIONS(1680), + [anon_sym_restrict] = ACTIONS(1680), + [anon_sym__Atomic] = ACTIONS(1680), + [anon_sym_in] = ACTIONS(1680), + [anon_sym_out] = ACTIONS(1680), + [anon_sym_inout] = ACTIONS(1680), + [anon_sym_bycopy] = ACTIONS(1680), + [anon_sym_byref] = ACTIONS(1680), + [anon_sym_oneway] = ACTIONS(1680), + [anon_sym__Nullable] = ACTIONS(1680), + [anon_sym__Nonnull] = ACTIONS(1680), + [anon_sym__Nullable_result] = ACTIONS(1680), + [anon_sym__Null_unspecified] = ACTIONS(1680), + [anon_sym___autoreleasing] = ACTIONS(1680), + [anon_sym___nullable] = ACTIONS(1680), + [anon_sym___nonnull] = ACTIONS(1680), + [anon_sym___strong] = ACTIONS(1680), + [anon_sym___weak] = ACTIONS(1680), + [anon_sym___bridge] = ACTIONS(1680), + [anon_sym___bridge_transfer] = ACTIONS(1680), + [anon_sym___bridge_retained] = ACTIONS(1680), + [anon_sym___unsafe_unretained] = ACTIONS(1680), + [anon_sym___block] = ACTIONS(1680), + [anon_sym___kindof] = ACTIONS(1680), + [anon_sym___unused] = ACTIONS(1680), + [anon_sym__Complex] = ACTIONS(1680), + [anon_sym___complex] = ACTIONS(1680), + [anon_sym_IBOutlet] = ACTIONS(1680), + [anon_sym_IBInspectable] = ACTIONS(1680), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1680), + [anon_sym_signed] = ACTIONS(1680), + [anon_sym_unsigned] = ACTIONS(1680), + [anon_sym_long] = ACTIONS(1680), + [anon_sym_short] = ACTIONS(1680), + [sym_primitive_type] = ACTIONS(1680), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(1680), + [anon_sym_union] = ACTIONS(1680), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_switch] = ACTIONS(1680), + [anon_sym_case] = ACTIONS(1680), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1680), + [anon_sym_do] = ACTIONS(1680), + [anon_sym_for] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1680), + [anon_sym_continue] = ACTIONS(1680), + [anon_sym_goto] = ACTIONS(1680), + [anon_sym_DASH_DASH] = ACTIONS(1682), + [anon_sym_PLUS_PLUS] = ACTIONS(1682), + [anon_sym_sizeof] = ACTIONS(1680), + [sym_number_literal] = ACTIONS(1682), + [anon_sym_L_SQUOTE] = ACTIONS(1682), + [anon_sym_u_SQUOTE] = ACTIONS(1682), + [anon_sym_U_SQUOTE] = ACTIONS(1682), + [anon_sym_u8_SQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1682), + [anon_sym_L_DQUOTE] = ACTIONS(1682), + [anon_sym_u_DQUOTE] = ACTIONS(1682), + [anon_sym_U_DQUOTE] = ACTIONS(1682), + [anon_sym_u8_DQUOTE] = ACTIONS(1682), + [anon_sym_DQUOTE] = ACTIONS(1682), + [sym_true] = ACTIONS(1680), + [sym_false] = ACTIONS(1680), + [sym_null] = ACTIONS(1680), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1682), + [anon_sym_ATimport] = ACTIONS(1682), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1680), + [anon_sym_ATcompatibility_alias] = ACTIONS(1682), + [anon_sym_ATprotocol] = ACTIONS(1682), + [anon_sym_ATclass] = ACTIONS(1682), + [anon_sym_ATinterface] = ACTIONS(1682), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1680), + [sym_method_attribute_specifier] = ACTIONS(1680), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1680), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1680), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1680), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1680), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1680), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1680), + [anon_sym_NS_AVAILABLE] = ACTIONS(1680), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1680), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_API_AVAILABLE] = ACTIONS(1680), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1680), + [anon_sym_API_DEPRECATED] = ACTIONS(1680), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1680), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1680), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1680), + [anon_sym___deprecated_msg] = ACTIONS(1680), + [anon_sym___deprecated_enum_msg] = ACTIONS(1680), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1680), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1680), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1680), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1680), + [anon_sym_ATimplementation] = ACTIONS(1682), + [anon_sym_NS_ENUM] = ACTIONS(1680), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1680), + [anon_sym_NS_OPTIONS] = ACTIONS(1680), + [anon_sym_typeof] = ACTIONS(1680), + [anon_sym___typeof] = ACTIONS(1680), + [anon_sym___typeof__] = ACTIONS(1680), + [sym_self] = ACTIONS(1680), + [sym_super] = ACTIONS(1680), + [sym_nil] = ACTIONS(1680), + [sym_id] = ACTIONS(1680), + [sym_instancetype] = ACTIONS(1680), + [sym_Class] = ACTIONS(1680), + [sym_SEL] = ACTIONS(1680), + [sym_IMP] = ACTIONS(1680), + [sym_BOOL] = ACTIONS(1680), + [sym_auto] = ACTIONS(1680), + [anon_sym_ATautoreleasepool] = ACTIONS(1682), + [anon_sym_ATsynchronized] = ACTIONS(1682), + [anon_sym_ATtry] = ACTIONS(1682), + [anon_sym_ATthrow] = ACTIONS(1682), + [anon_sym_ATselector] = ACTIONS(1682), + [anon_sym_ATencode] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(1680), + [sym_YES] = ACTIONS(1680), + [sym_NO] = ACTIONS(1680), + [anon_sym___builtin_available] = ACTIONS(1680), + [anon_sym_ATavailable] = ACTIONS(1682), + [anon_sym_va_arg] = ACTIONS(1680), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [474] = { + [sym_identifier] = ACTIONS(1684), + [aux_sym_preproc_include_token1] = ACTIONS(1686), + [aux_sym_preproc_def_token1] = ACTIONS(1686), + [aux_sym_preproc_if_token1] = ACTIONS(1684), + [aux_sym_preproc_if_token2] = ACTIONS(1684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1684), + [aux_sym_preproc_else_token1] = ACTIONS(1684), + [aux_sym_preproc_elif_token1] = ACTIONS(1684), + [anon_sym_LPAREN2] = ACTIONS(1686), + [anon_sym_BANG] = ACTIONS(1686), + [anon_sym_TILDE] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_STAR] = ACTIONS(1686), + [anon_sym_CARET] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_typedef] = ACTIONS(1684), + [anon_sym_extern] = ACTIONS(1684), + [anon_sym___attribute] = ACTIONS(1684), + [anon_sym___attribute__] = ACTIONS(1684), + [anon_sym___declspec] = ACTIONS(1684), + [anon_sym___cdecl] = ACTIONS(1684), + [anon_sym___clrcall] = ACTIONS(1684), + [anon_sym___stdcall] = ACTIONS(1684), + [anon_sym___fastcall] = ACTIONS(1684), + [anon_sym___thiscall] = ACTIONS(1684), + [anon_sym___vectorcall] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_static] = ACTIONS(1684), + [anon_sym_auto] = ACTIONS(1684), + [anon_sym_register] = ACTIONS(1684), + [anon_sym_inline] = ACTIONS(1684), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1684), + [anon_sym_const] = ACTIONS(1684), + [anon_sym_volatile] = ACTIONS(1684), + [anon_sym_restrict] = ACTIONS(1684), + [anon_sym__Atomic] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1684), + [anon_sym_out] = ACTIONS(1684), + [anon_sym_inout] = ACTIONS(1684), + [anon_sym_bycopy] = ACTIONS(1684), + [anon_sym_byref] = ACTIONS(1684), + [anon_sym_oneway] = ACTIONS(1684), + [anon_sym__Nullable] = ACTIONS(1684), + [anon_sym__Nonnull] = ACTIONS(1684), + [anon_sym__Nullable_result] = ACTIONS(1684), + [anon_sym__Null_unspecified] = ACTIONS(1684), + [anon_sym___autoreleasing] = ACTIONS(1684), + [anon_sym___nullable] = ACTIONS(1684), + [anon_sym___nonnull] = ACTIONS(1684), + [anon_sym___strong] = ACTIONS(1684), + [anon_sym___weak] = ACTIONS(1684), + [anon_sym___bridge] = ACTIONS(1684), + [anon_sym___bridge_transfer] = ACTIONS(1684), + [anon_sym___bridge_retained] = ACTIONS(1684), + [anon_sym___unsafe_unretained] = ACTIONS(1684), + [anon_sym___block] = ACTIONS(1684), + [anon_sym___kindof] = ACTIONS(1684), + [anon_sym___unused] = ACTIONS(1684), + [anon_sym__Complex] = ACTIONS(1684), + [anon_sym___complex] = ACTIONS(1684), + [anon_sym_IBOutlet] = ACTIONS(1684), + [anon_sym_IBInspectable] = ACTIONS(1684), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1684), + [anon_sym_signed] = ACTIONS(1684), + [anon_sym_unsigned] = ACTIONS(1684), + [anon_sym_long] = ACTIONS(1684), + [anon_sym_short] = ACTIONS(1684), + [sym_primitive_type] = ACTIONS(1684), + [anon_sym_enum] = ACTIONS(1684), + [anon_sym_struct] = ACTIONS(1684), + [anon_sym_union] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1684), + [anon_sym_switch] = ACTIONS(1684), + [anon_sym_case] = ACTIONS(1684), + [anon_sym_default] = ACTIONS(1684), + [anon_sym_while] = ACTIONS(1684), + [anon_sym_do] = ACTIONS(1684), + [anon_sym_for] = ACTIONS(1684), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_break] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_sizeof] = ACTIONS(1684), + [sym_number_literal] = ACTIONS(1686), + [anon_sym_L_SQUOTE] = ACTIONS(1686), + [anon_sym_u_SQUOTE] = ACTIONS(1686), + [anon_sym_U_SQUOTE] = ACTIONS(1686), + [anon_sym_u8_SQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE] = ACTIONS(1686), + [anon_sym_L_DQUOTE] = ACTIONS(1686), + [anon_sym_u_DQUOTE] = ACTIONS(1686), + [anon_sym_U_DQUOTE] = ACTIONS(1686), + [anon_sym_u8_DQUOTE] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1686), + [sym_true] = ACTIONS(1684), + [sym_false] = ACTIONS(1684), + [sym_null] = ACTIONS(1684), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1686), + [anon_sym_ATimport] = ACTIONS(1686), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1684), + [anon_sym_ATcompatibility_alias] = ACTIONS(1686), + [anon_sym_ATprotocol] = ACTIONS(1686), + [anon_sym_ATclass] = ACTIONS(1686), + [anon_sym_ATinterface] = ACTIONS(1686), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1684), + [sym_method_attribute_specifier] = ACTIONS(1684), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1684), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1684), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1684), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1684), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1684), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1684), + [anon_sym_NS_AVAILABLE] = ACTIONS(1684), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1684), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_API_AVAILABLE] = ACTIONS(1684), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1684), + [anon_sym_API_DEPRECATED] = ACTIONS(1684), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1684), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1684), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1684), + [anon_sym___deprecated_msg] = ACTIONS(1684), + [anon_sym___deprecated_enum_msg] = ACTIONS(1684), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1684), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1684), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1684), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1684), + [anon_sym_ATimplementation] = ACTIONS(1686), + [anon_sym_NS_ENUM] = ACTIONS(1684), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1684), + [anon_sym_NS_OPTIONS] = ACTIONS(1684), + [anon_sym_typeof] = ACTIONS(1684), + [anon_sym___typeof] = ACTIONS(1684), + [anon_sym___typeof__] = ACTIONS(1684), + [sym_self] = ACTIONS(1684), + [sym_super] = ACTIONS(1684), + [sym_nil] = ACTIONS(1684), + [sym_id] = ACTIONS(1684), + [sym_instancetype] = ACTIONS(1684), + [sym_Class] = ACTIONS(1684), + [sym_SEL] = ACTIONS(1684), + [sym_IMP] = ACTIONS(1684), + [sym_BOOL] = ACTIONS(1684), + [sym_auto] = ACTIONS(1684), + [anon_sym_ATautoreleasepool] = ACTIONS(1686), + [anon_sym_ATsynchronized] = ACTIONS(1686), + [anon_sym_ATtry] = ACTIONS(1686), + [anon_sym_ATthrow] = ACTIONS(1686), + [anon_sym_ATselector] = ACTIONS(1686), + [anon_sym_ATencode] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1684), + [sym_YES] = ACTIONS(1684), + [sym_NO] = ACTIONS(1684), + [anon_sym___builtin_available] = ACTIONS(1684), + [anon_sym_ATavailable] = ACTIONS(1686), + [anon_sym_va_arg] = ACTIONS(1684), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [475] = { + [sym_identifier] = ACTIONS(1688), + [aux_sym_preproc_include_token1] = ACTIONS(1690), + [aux_sym_preproc_def_token1] = ACTIONS(1690), + [aux_sym_preproc_if_token1] = ACTIONS(1688), + [aux_sym_preproc_if_token2] = ACTIONS(1688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1688), + [aux_sym_preproc_else_token1] = ACTIONS(1688), + [aux_sym_preproc_elif_token1] = ACTIONS(1688), + [anon_sym_LPAREN2] = ACTIONS(1690), + [anon_sym_BANG] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1688), + [anon_sym_STAR] = ACTIONS(1690), + [anon_sym_CARET] = ACTIONS(1690), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1690), + [anon_sym_typedef] = ACTIONS(1688), + [anon_sym_extern] = ACTIONS(1688), + [anon_sym___attribute] = ACTIONS(1688), + [anon_sym___attribute__] = ACTIONS(1688), + [anon_sym___declspec] = ACTIONS(1688), + [anon_sym___cdecl] = ACTIONS(1688), + [anon_sym___clrcall] = ACTIONS(1688), + [anon_sym___stdcall] = ACTIONS(1688), + [anon_sym___fastcall] = ACTIONS(1688), + [anon_sym___thiscall] = ACTIONS(1688), + [anon_sym___vectorcall] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_static] = ACTIONS(1688), + [anon_sym_auto] = ACTIONS(1688), + [anon_sym_register] = ACTIONS(1688), + [anon_sym_inline] = ACTIONS(1688), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1688), + [anon_sym_const] = ACTIONS(1688), + [anon_sym_volatile] = ACTIONS(1688), + [anon_sym_restrict] = ACTIONS(1688), + [anon_sym__Atomic] = ACTIONS(1688), + [anon_sym_in] = ACTIONS(1688), + [anon_sym_out] = ACTIONS(1688), + [anon_sym_inout] = ACTIONS(1688), + [anon_sym_bycopy] = ACTIONS(1688), + [anon_sym_byref] = ACTIONS(1688), + [anon_sym_oneway] = ACTIONS(1688), + [anon_sym__Nullable] = ACTIONS(1688), + [anon_sym__Nonnull] = ACTIONS(1688), + [anon_sym__Nullable_result] = ACTIONS(1688), + [anon_sym__Null_unspecified] = ACTIONS(1688), + [anon_sym___autoreleasing] = ACTIONS(1688), + [anon_sym___nullable] = ACTIONS(1688), + [anon_sym___nonnull] = ACTIONS(1688), + [anon_sym___strong] = ACTIONS(1688), + [anon_sym___weak] = ACTIONS(1688), + [anon_sym___bridge] = ACTIONS(1688), + [anon_sym___bridge_transfer] = ACTIONS(1688), + [anon_sym___bridge_retained] = ACTIONS(1688), + [anon_sym___unsafe_unretained] = ACTIONS(1688), + [anon_sym___block] = ACTIONS(1688), + [anon_sym___kindof] = ACTIONS(1688), + [anon_sym___unused] = ACTIONS(1688), + [anon_sym__Complex] = ACTIONS(1688), + [anon_sym___complex] = ACTIONS(1688), + [anon_sym_IBOutlet] = ACTIONS(1688), + [anon_sym_IBInspectable] = ACTIONS(1688), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1688), + [anon_sym_signed] = ACTIONS(1688), + [anon_sym_unsigned] = ACTIONS(1688), + [anon_sym_long] = ACTIONS(1688), + [anon_sym_short] = ACTIONS(1688), + [sym_primitive_type] = ACTIONS(1688), + [anon_sym_enum] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(1688), + [anon_sym_union] = ACTIONS(1688), + [anon_sym_if] = ACTIONS(1688), + [anon_sym_switch] = ACTIONS(1688), + [anon_sym_case] = ACTIONS(1688), + [anon_sym_default] = ACTIONS(1688), + [anon_sym_while] = ACTIONS(1688), + [anon_sym_do] = ACTIONS(1688), + [anon_sym_for] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1688), + [anon_sym_break] = ACTIONS(1688), + [anon_sym_continue] = ACTIONS(1688), + [anon_sym_goto] = ACTIONS(1688), + [anon_sym_DASH_DASH] = ACTIONS(1690), + [anon_sym_PLUS_PLUS] = ACTIONS(1690), + [anon_sym_sizeof] = ACTIONS(1688), + [sym_number_literal] = ACTIONS(1690), + [anon_sym_L_SQUOTE] = ACTIONS(1690), + [anon_sym_u_SQUOTE] = ACTIONS(1690), + [anon_sym_U_SQUOTE] = ACTIONS(1690), + [anon_sym_u8_SQUOTE] = ACTIONS(1690), + [anon_sym_SQUOTE] = ACTIONS(1690), + [anon_sym_L_DQUOTE] = ACTIONS(1690), + [anon_sym_u_DQUOTE] = ACTIONS(1690), + [anon_sym_U_DQUOTE] = ACTIONS(1690), + [anon_sym_u8_DQUOTE] = ACTIONS(1690), + [anon_sym_DQUOTE] = ACTIONS(1690), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1690), + [anon_sym_ATimport] = ACTIONS(1690), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1688), + [anon_sym_ATcompatibility_alias] = ACTIONS(1690), + [anon_sym_ATprotocol] = ACTIONS(1690), + [anon_sym_ATclass] = ACTIONS(1690), + [anon_sym_ATinterface] = ACTIONS(1690), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1688), + [sym_method_attribute_specifier] = ACTIONS(1688), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1688), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1688), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1688), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1688), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1688), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1688), + [anon_sym_NS_AVAILABLE] = ACTIONS(1688), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1688), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1688), + [anon_sym_API_AVAILABLE] = ACTIONS(1688), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1688), + [anon_sym_API_DEPRECATED] = ACTIONS(1688), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1688), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1688), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1688), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1688), + [anon_sym___deprecated_msg] = ACTIONS(1688), + [anon_sym___deprecated_enum_msg] = ACTIONS(1688), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1688), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1688), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1688), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1688), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1688), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1688), + [anon_sym_ATimplementation] = ACTIONS(1690), + [anon_sym_NS_ENUM] = ACTIONS(1688), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1688), + [anon_sym_NS_OPTIONS] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1688), + [anon_sym___typeof] = ACTIONS(1688), + [anon_sym___typeof__] = ACTIONS(1688), + [sym_self] = ACTIONS(1688), + [sym_super] = ACTIONS(1688), + [sym_nil] = ACTIONS(1688), + [sym_id] = ACTIONS(1688), + [sym_instancetype] = ACTIONS(1688), + [sym_Class] = ACTIONS(1688), + [sym_SEL] = ACTIONS(1688), + [sym_IMP] = ACTIONS(1688), + [sym_BOOL] = ACTIONS(1688), + [sym_auto] = ACTIONS(1688), + [anon_sym_ATautoreleasepool] = ACTIONS(1690), + [anon_sym_ATsynchronized] = ACTIONS(1690), + [anon_sym_ATtry] = ACTIONS(1690), + [anon_sym_ATthrow] = ACTIONS(1690), + [anon_sym_ATselector] = ACTIONS(1690), + [anon_sym_ATencode] = ACTIONS(1690), + [anon_sym_AT] = ACTIONS(1688), + [sym_YES] = ACTIONS(1688), + [sym_NO] = ACTIONS(1688), + [anon_sym___builtin_available] = ACTIONS(1688), + [anon_sym_ATavailable] = ACTIONS(1690), + [anon_sym_va_arg] = ACTIONS(1688), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [476] = { + [sym_identifier] = ACTIONS(1692), + [aux_sym_preproc_include_token1] = ACTIONS(1694), + [aux_sym_preproc_def_token1] = ACTIONS(1694), + [aux_sym_preproc_if_token1] = ACTIONS(1692), + [aux_sym_preproc_if_token2] = ACTIONS(1692), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1692), + [aux_sym_preproc_else_token1] = ACTIONS(1692), + [aux_sym_preproc_elif_token1] = ACTIONS(1692), + [anon_sym_LPAREN2] = ACTIONS(1694), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_TILDE] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_PLUS] = ACTIONS(1692), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_CARET] = ACTIONS(1694), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1694), + [anon_sym_typedef] = ACTIONS(1692), + [anon_sym_extern] = ACTIONS(1692), + [anon_sym___attribute] = ACTIONS(1692), + [anon_sym___attribute__] = ACTIONS(1692), + [anon_sym___declspec] = ACTIONS(1692), + [anon_sym___cdecl] = ACTIONS(1692), + [anon_sym___clrcall] = ACTIONS(1692), + [anon_sym___stdcall] = ACTIONS(1692), + [anon_sym___fastcall] = ACTIONS(1692), + [anon_sym___thiscall] = ACTIONS(1692), + [anon_sym___vectorcall] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_auto] = ACTIONS(1692), + [anon_sym_register] = ACTIONS(1692), + [anon_sym_inline] = ACTIONS(1692), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1692), + [anon_sym_volatile] = ACTIONS(1692), + [anon_sym_restrict] = ACTIONS(1692), + [anon_sym__Atomic] = ACTIONS(1692), + [anon_sym_in] = ACTIONS(1692), + [anon_sym_out] = ACTIONS(1692), + [anon_sym_inout] = ACTIONS(1692), + [anon_sym_bycopy] = ACTIONS(1692), + [anon_sym_byref] = ACTIONS(1692), + [anon_sym_oneway] = ACTIONS(1692), + [anon_sym__Nullable] = ACTIONS(1692), + [anon_sym__Nonnull] = ACTIONS(1692), + [anon_sym__Nullable_result] = ACTIONS(1692), + [anon_sym__Null_unspecified] = ACTIONS(1692), + [anon_sym___autoreleasing] = ACTIONS(1692), + [anon_sym___nullable] = ACTIONS(1692), + [anon_sym___nonnull] = ACTIONS(1692), + [anon_sym___strong] = ACTIONS(1692), + [anon_sym___weak] = ACTIONS(1692), + [anon_sym___bridge] = ACTIONS(1692), + [anon_sym___bridge_transfer] = ACTIONS(1692), + [anon_sym___bridge_retained] = ACTIONS(1692), + [anon_sym___unsafe_unretained] = ACTIONS(1692), + [anon_sym___block] = ACTIONS(1692), + [anon_sym___kindof] = ACTIONS(1692), + [anon_sym___unused] = ACTIONS(1692), + [anon_sym__Complex] = ACTIONS(1692), + [anon_sym___complex] = ACTIONS(1692), + [anon_sym_IBOutlet] = ACTIONS(1692), + [anon_sym_IBInspectable] = ACTIONS(1692), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1692), + [anon_sym_signed] = ACTIONS(1692), + [anon_sym_unsigned] = ACTIONS(1692), + [anon_sym_long] = ACTIONS(1692), + [anon_sym_short] = ACTIONS(1692), + [sym_primitive_type] = ACTIONS(1692), + [anon_sym_enum] = ACTIONS(1692), + [anon_sym_struct] = ACTIONS(1692), + [anon_sym_union] = ACTIONS(1692), + [anon_sym_if] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1692), + [anon_sym_case] = ACTIONS(1692), + [anon_sym_default] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1692), + [anon_sym_do] = ACTIONS(1692), + [anon_sym_for] = ACTIONS(1692), + [anon_sym_return] = ACTIONS(1692), + [anon_sym_break] = ACTIONS(1692), + [anon_sym_continue] = ACTIONS(1692), + [anon_sym_goto] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1694), + [anon_sym_PLUS_PLUS] = ACTIONS(1694), + [anon_sym_sizeof] = ACTIONS(1692), + [sym_number_literal] = ACTIONS(1694), + [anon_sym_L_SQUOTE] = ACTIONS(1694), + [anon_sym_u_SQUOTE] = ACTIONS(1694), + [anon_sym_U_SQUOTE] = ACTIONS(1694), + [anon_sym_u8_SQUOTE] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1694), + [anon_sym_L_DQUOTE] = ACTIONS(1694), + [anon_sym_u_DQUOTE] = ACTIONS(1694), + [anon_sym_U_DQUOTE] = ACTIONS(1694), + [anon_sym_u8_DQUOTE] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [sym_true] = ACTIONS(1692), + [sym_false] = ACTIONS(1692), + [sym_null] = ACTIONS(1692), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1694), + [anon_sym_ATimport] = ACTIONS(1694), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1692), + [anon_sym_ATcompatibility_alias] = ACTIONS(1694), + [anon_sym_ATprotocol] = ACTIONS(1694), + [anon_sym_ATclass] = ACTIONS(1694), + [anon_sym_ATinterface] = ACTIONS(1694), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1692), + [sym_method_attribute_specifier] = ACTIONS(1692), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1692), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1692), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1692), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1692), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1692), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1692), + [anon_sym_NS_AVAILABLE] = ACTIONS(1692), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1692), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1692), + [anon_sym_API_AVAILABLE] = ACTIONS(1692), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1692), + [anon_sym_API_DEPRECATED] = ACTIONS(1692), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1692), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1692), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1692), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1692), + [anon_sym___deprecated_msg] = ACTIONS(1692), + [anon_sym___deprecated_enum_msg] = ACTIONS(1692), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1692), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1692), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1692), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1692), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1692), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1692), + [anon_sym_ATimplementation] = ACTIONS(1694), + [anon_sym_NS_ENUM] = ACTIONS(1692), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1692), + [anon_sym_NS_OPTIONS] = ACTIONS(1692), + [anon_sym_typeof] = ACTIONS(1692), + [anon_sym___typeof] = ACTIONS(1692), + [anon_sym___typeof__] = ACTIONS(1692), + [sym_self] = ACTIONS(1692), + [sym_super] = ACTIONS(1692), + [sym_nil] = ACTIONS(1692), + [sym_id] = ACTIONS(1692), + [sym_instancetype] = ACTIONS(1692), + [sym_Class] = ACTIONS(1692), + [sym_SEL] = ACTIONS(1692), + [sym_IMP] = ACTIONS(1692), + [sym_BOOL] = ACTIONS(1692), + [sym_auto] = ACTIONS(1692), + [anon_sym_ATautoreleasepool] = ACTIONS(1694), + [anon_sym_ATsynchronized] = ACTIONS(1694), + [anon_sym_ATtry] = ACTIONS(1694), + [anon_sym_ATthrow] = ACTIONS(1694), + [anon_sym_ATselector] = ACTIONS(1694), + [anon_sym_ATencode] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(1692), + [sym_YES] = ACTIONS(1692), + [sym_NO] = ACTIONS(1692), + [anon_sym___builtin_available] = ACTIONS(1692), + [anon_sym_ATavailable] = ACTIONS(1694), + [anon_sym_va_arg] = ACTIONS(1692), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [477] = { + [sym_identifier] = ACTIONS(1696), + [aux_sym_preproc_include_token1] = ACTIONS(1698), + [aux_sym_preproc_def_token1] = ACTIONS(1698), + [aux_sym_preproc_if_token1] = ACTIONS(1696), + [aux_sym_preproc_if_token2] = ACTIONS(1696), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1696), + [aux_sym_preproc_else_token1] = ACTIONS(1696), + [aux_sym_preproc_elif_token1] = ACTIONS(1696), + [anon_sym_LPAREN2] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1698), + [anon_sym_TILDE] = ACTIONS(1698), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1698), + [anon_sym_CARET] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_typedef] = ACTIONS(1696), + [anon_sym_extern] = ACTIONS(1696), + [anon_sym___attribute] = ACTIONS(1696), + [anon_sym___attribute__] = ACTIONS(1696), + [anon_sym___declspec] = ACTIONS(1696), + [anon_sym___cdecl] = ACTIONS(1696), + [anon_sym___clrcall] = ACTIONS(1696), + [anon_sym___stdcall] = ACTIONS(1696), + [anon_sym___fastcall] = ACTIONS(1696), + [anon_sym___thiscall] = ACTIONS(1696), + [anon_sym___vectorcall] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_static] = ACTIONS(1696), + [anon_sym_auto] = ACTIONS(1696), + [anon_sym_register] = ACTIONS(1696), + [anon_sym_inline] = ACTIONS(1696), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1696), + [anon_sym_volatile] = ACTIONS(1696), + [anon_sym_restrict] = ACTIONS(1696), + [anon_sym__Atomic] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1696), + [anon_sym_out] = ACTIONS(1696), + [anon_sym_inout] = ACTIONS(1696), + [anon_sym_bycopy] = ACTIONS(1696), + [anon_sym_byref] = ACTIONS(1696), + [anon_sym_oneway] = ACTIONS(1696), + [anon_sym__Nullable] = ACTIONS(1696), + [anon_sym__Nonnull] = ACTIONS(1696), + [anon_sym__Nullable_result] = ACTIONS(1696), + [anon_sym__Null_unspecified] = ACTIONS(1696), + [anon_sym___autoreleasing] = ACTIONS(1696), + [anon_sym___nullable] = ACTIONS(1696), + [anon_sym___nonnull] = ACTIONS(1696), + [anon_sym___strong] = ACTIONS(1696), + [anon_sym___weak] = ACTIONS(1696), + [anon_sym___bridge] = ACTIONS(1696), + [anon_sym___bridge_transfer] = ACTIONS(1696), + [anon_sym___bridge_retained] = ACTIONS(1696), + [anon_sym___unsafe_unretained] = ACTIONS(1696), + [anon_sym___block] = ACTIONS(1696), + [anon_sym___kindof] = ACTIONS(1696), + [anon_sym___unused] = ACTIONS(1696), + [anon_sym__Complex] = ACTIONS(1696), + [anon_sym___complex] = ACTIONS(1696), + [anon_sym_IBOutlet] = ACTIONS(1696), + [anon_sym_IBInspectable] = ACTIONS(1696), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1696), + [anon_sym_signed] = ACTIONS(1696), + [anon_sym_unsigned] = ACTIONS(1696), + [anon_sym_long] = ACTIONS(1696), + [anon_sym_short] = ACTIONS(1696), + [sym_primitive_type] = ACTIONS(1696), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1696), + [anon_sym_switch] = ACTIONS(1696), + [anon_sym_case] = ACTIONS(1696), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1696), + [anon_sym_do] = ACTIONS(1696), + [anon_sym_for] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1696), + [anon_sym_break] = ACTIONS(1696), + [anon_sym_continue] = ACTIONS(1696), + [anon_sym_goto] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1698), + [anon_sym_PLUS_PLUS] = ACTIONS(1698), + [anon_sym_sizeof] = ACTIONS(1696), + [sym_number_literal] = ACTIONS(1698), + [anon_sym_L_SQUOTE] = ACTIONS(1698), + [anon_sym_u_SQUOTE] = ACTIONS(1698), + [anon_sym_U_SQUOTE] = ACTIONS(1698), + [anon_sym_u8_SQUOTE] = ACTIONS(1698), + [anon_sym_SQUOTE] = ACTIONS(1698), + [anon_sym_L_DQUOTE] = ACTIONS(1698), + [anon_sym_u_DQUOTE] = ACTIONS(1698), + [anon_sym_U_DQUOTE] = ACTIONS(1698), + [anon_sym_u8_DQUOTE] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [sym_null] = ACTIONS(1696), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1698), + [anon_sym_ATimport] = ACTIONS(1698), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1696), + [anon_sym_ATcompatibility_alias] = ACTIONS(1698), + [anon_sym_ATprotocol] = ACTIONS(1698), + [anon_sym_ATclass] = ACTIONS(1698), + [anon_sym_ATinterface] = ACTIONS(1698), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1696), + [sym_method_attribute_specifier] = ACTIONS(1696), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1696), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1696), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1696), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1696), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1696), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1696), + [anon_sym_NS_AVAILABLE] = ACTIONS(1696), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1696), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1696), + [anon_sym_API_AVAILABLE] = ACTIONS(1696), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1696), + [anon_sym_API_DEPRECATED] = ACTIONS(1696), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1696), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1696), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1696), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1696), + [anon_sym___deprecated_msg] = ACTIONS(1696), + [anon_sym___deprecated_enum_msg] = ACTIONS(1696), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1696), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1696), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1696), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1696), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1696), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1696), + [anon_sym_ATimplementation] = ACTIONS(1698), + [anon_sym_NS_ENUM] = ACTIONS(1696), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1696), + [anon_sym_NS_OPTIONS] = ACTIONS(1696), + [anon_sym_typeof] = ACTIONS(1696), + [anon_sym___typeof] = ACTIONS(1696), + [anon_sym___typeof__] = ACTIONS(1696), + [sym_self] = ACTIONS(1696), + [sym_super] = ACTIONS(1696), + [sym_nil] = ACTIONS(1696), + [sym_id] = ACTIONS(1696), + [sym_instancetype] = ACTIONS(1696), + [sym_Class] = ACTIONS(1696), + [sym_SEL] = ACTIONS(1696), + [sym_IMP] = ACTIONS(1696), + [sym_BOOL] = ACTIONS(1696), + [sym_auto] = ACTIONS(1696), + [anon_sym_ATautoreleasepool] = ACTIONS(1698), + [anon_sym_ATsynchronized] = ACTIONS(1698), + [anon_sym_ATtry] = ACTIONS(1698), + [anon_sym_ATthrow] = ACTIONS(1698), + [anon_sym_ATselector] = ACTIONS(1698), + [anon_sym_ATencode] = ACTIONS(1698), + [anon_sym_AT] = ACTIONS(1696), + [sym_YES] = ACTIONS(1696), + [sym_NO] = ACTIONS(1696), + [anon_sym___builtin_available] = ACTIONS(1696), + [anon_sym_ATavailable] = ACTIONS(1698), + [anon_sym_va_arg] = ACTIONS(1696), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [478] = { + [sym_identifier] = ACTIONS(1700), + [aux_sym_preproc_include_token1] = ACTIONS(1702), + [aux_sym_preproc_def_token1] = ACTIONS(1702), + [aux_sym_preproc_if_token1] = ACTIONS(1700), + [aux_sym_preproc_if_token2] = ACTIONS(1700), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1700), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1700), + [aux_sym_preproc_else_token1] = ACTIONS(1700), + [aux_sym_preproc_elif_token1] = ACTIONS(1700), + [anon_sym_LPAREN2] = ACTIONS(1702), + [anon_sym_BANG] = ACTIONS(1702), + [anon_sym_TILDE] = ACTIONS(1702), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_STAR] = ACTIONS(1702), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_typedef] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym___attribute] = ACTIONS(1700), + [anon_sym___attribute__] = ACTIONS(1700), + [anon_sym___declspec] = ACTIONS(1700), + [anon_sym___cdecl] = ACTIONS(1700), + [anon_sym___clrcall] = ACTIONS(1700), + [anon_sym___stdcall] = ACTIONS(1700), + [anon_sym___fastcall] = ACTIONS(1700), + [anon_sym___thiscall] = ACTIONS(1700), + [anon_sym___vectorcall] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_inline] = ACTIONS(1700), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym__Atomic] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1700), + [anon_sym_out] = ACTIONS(1700), + [anon_sym_inout] = ACTIONS(1700), + [anon_sym_bycopy] = ACTIONS(1700), + [anon_sym_byref] = ACTIONS(1700), + [anon_sym_oneway] = ACTIONS(1700), + [anon_sym__Nullable] = ACTIONS(1700), + [anon_sym__Nonnull] = ACTIONS(1700), + [anon_sym__Nullable_result] = ACTIONS(1700), + [anon_sym__Null_unspecified] = ACTIONS(1700), + [anon_sym___autoreleasing] = ACTIONS(1700), + [anon_sym___nullable] = ACTIONS(1700), + [anon_sym___nonnull] = ACTIONS(1700), + [anon_sym___strong] = ACTIONS(1700), + [anon_sym___weak] = ACTIONS(1700), + [anon_sym___bridge] = ACTIONS(1700), + [anon_sym___bridge_transfer] = ACTIONS(1700), + [anon_sym___bridge_retained] = ACTIONS(1700), + [anon_sym___unsafe_unretained] = ACTIONS(1700), + [anon_sym___block] = ACTIONS(1700), + [anon_sym___kindof] = ACTIONS(1700), + [anon_sym___unused] = ACTIONS(1700), + [anon_sym__Complex] = ACTIONS(1700), + [anon_sym___complex] = ACTIONS(1700), + [anon_sym_IBOutlet] = ACTIONS(1700), + [anon_sym_IBInspectable] = ACTIONS(1700), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1700), + [anon_sym_signed] = ACTIONS(1700), + [anon_sym_unsigned] = ACTIONS(1700), + [anon_sym_long] = ACTIONS(1700), + [anon_sym_short] = ACTIONS(1700), + [sym_primitive_type] = ACTIONS(1700), + [anon_sym_enum] = ACTIONS(1700), + [anon_sym_struct] = ACTIONS(1700), + [anon_sym_union] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1700), + [anon_sym_case] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_goto] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_sizeof] = ACTIONS(1700), + [sym_number_literal] = ACTIONS(1702), + [anon_sym_L_SQUOTE] = ACTIONS(1702), + [anon_sym_u_SQUOTE] = ACTIONS(1702), + [anon_sym_U_SQUOTE] = ACTIONS(1702), + [anon_sym_u8_SQUOTE] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_L_DQUOTE] = ACTIONS(1702), + [anon_sym_u_DQUOTE] = ACTIONS(1702), + [anon_sym_U_DQUOTE] = ACTIONS(1702), + [anon_sym_u8_DQUOTE] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [sym_true] = ACTIONS(1700), + [sym_false] = ACTIONS(1700), + [sym_null] = ACTIONS(1700), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1702), + [anon_sym_ATimport] = ACTIONS(1702), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1700), + [anon_sym_ATcompatibility_alias] = ACTIONS(1702), + [anon_sym_ATprotocol] = ACTIONS(1702), + [anon_sym_ATclass] = ACTIONS(1702), + [anon_sym_ATinterface] = ACTIONS(1702), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1700), + [sym_method_attribute_specifier] = ACTIONS(1700), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1700), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1700), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1700), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1700), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1700), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1700), + [anon_sym_NS_AVAILABLE] = ACTIONS(1700), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1700), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1700), + [anon_sym_API_AVAILABLE] = ACTIONS(1700), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1700), + [anon_sym_API_DEPRECATED] = ACTIONS(1700), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1700), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1700), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1700), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1700), + [anon_sym___deprecated_msg] = ACTIONS(1700), + [anon_sym___deprecated_enum_msg] = ACTIONS(1700), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1700), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1700), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1700), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1700), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1700), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1700), + [anon_sym_ATimplementation] = ACTIONS(1702), + [anon_sym_NS_ENUM] = ACTIONS(1700), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1700), + [anon_sym_NS_OPTIONS] = ACTIONS(1700), + [anon_sym_typeof] = ACTIONS(1700), + [anon_sym___typeof] = ACTIONS(1700), + [anon_sym___typeof__] = ACTIONS(1700), + [sym_self] = ACTIONS(1700), + [sym_super] = ACTIONS(1700), + [sym_nil] = ACTIONS(1700), + [sym_id] = ACTIONS(1700), + [sym_instancetype] = ACTIONS(1700), + [sym_Class] = ACTIONS(1700), + [sym_SEL] = ACTIONS(1700), + [sym_IMP] = ACTIONS(1700), + [sym_BOOL] = ACTIONS(1700), + [sym_auto] = ACTIONS(1700), + [anon_sym_ATautoreleasepool] = ACTIONS(1702), + [anon_sym_ATsynchronized] = ACTIONS(1702), + [anon_sym_ATtry] = ACTIONS(1702), + [anon_sym_ATthrow] = ACTIONS(1702), + [anon_sym_ATselector] = ACTIONS(1702), + [anon_sym_ATencode] = ACTIONS(1702), + [anon_sym_AT] = ACTIONS(1700), + [sym_YES] = ACTIONS(1700), + [sym_NO] = ACTIONS(1700), + [anon_sym___builtin_available] = ACTIONS(1700), + [anon_sym_ATavailable] = ACTIONS(1702), + [anon_sym_va_arg] = ACTIONS(1700), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [479] = { + [sym_identifier] = ACTIONS(1704), + [aux_sym_preproc_include_token1] = ACTIONS(1706), + [aux_sym_preproc_def_token1] = ACTIONS(1706), + [aux_sym_preproc_if_token1] = ACTIONS(1704), + [aux_sym_preproc_if_token2] = ACTIONS(1704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1704), + [aux_sym_preproc_else_token1] = ACTIONS(1704), + [aux_sym_preproc_elif_token1] = ACTIONS(1704), + [anon_sym_LPAREN2] = ACTIONS(1706), + [anon_sym_BANG] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_STAR] = ACTIONS(1706), + [anon_sym_CARET] = ACTIONS(1706), + [anon_sym_AMP] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_typedef] = ACTIONS(1704), + [anon_sym_extern] = ACTIONS(1704), + [anon_sym___attribute] = ACTIONS(1704), + [anon_sym___attribute__] = ACTIONS(1704), + [anon_sym___declspec] = ACTIONS(1704), + [anon_sym___cdecl] = ACTIONS(1704), + [anon_sym___clrcall] = ACTIONS(1704), + [anon_sym___stdcall] = ACTIONS(1704), + [anon_sym___fastcall] = ACTIONS(1704), + [anon_sym___thiscall] = ACTIONS(1704), + [anon_sym___vectorcall] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_auto] = ACTIONS(1704), + [anon_sym_register] = ACTIONS(1704), + [anon_sym_inline] = ACTIONS(1704), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_volatile] = ACTIONS(1704), + [anon_sym_restrict] = ACTIONS(1704), + [anon_sym__Atomic] = ACTIONS(1704), + [anon_sym_in] = ACTIONS(1704), + [anon_sym_out] = ACTIONS(1704), + [anon_sym_inout] = ACTIONS(1704), + [anon_sym_bycopy] = ACTIONS(1704), + [anon_sym_byref] = ACTIONS(1704), + [anon_sym_oneway] = ACTIONS(1704), + [anon_sym__Nullable] = ACTIONS(1704), + [anon_sym__Nonnull] = ACTIONS(1704), + [anon_sym__Nullable_result] = ACTIONS(1704), + [anon_sym__Null_unspecified] = ACTIONS(1704), + [anon_sym___autoreleasing] = ACTIONS(1704), + [anon_sym___nullable] = ACTIONS(1704), + [anon_sym___nonnull] = ACTIONS(1704), + [anon_sym___strong] = ACTIONS(1704), + [anon_sym___weak] = ACTIONS(1704), + [anon_sym___bridge] = ACTIONS(1704), + [anon_sym___bridge_transfer] = ACTIONS(1704), + [anon_sym___bridge_retained] = ACTIONS(1704), + [anon_sym___unsafe_unretained] = ACTIONS(1704), + [anon_sym___block] = ACTIONS(1704), + [anon_sym___kindof] = ACTIONS(1704), + [anon_sym___unused] = ACTIONS(1704), + [anon_sym__Complex] = ACTIONS(1704), + [anon_sym___complex] = ACTIONS(1704), + [anon_sym_IBOutlet] = ACTIONS(1704), + [anon_sym_IBInspectable] = ACTIONS(1704), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1704), + [anon_sym_signed] = ACTIONS(1704), + [anon_sym_unsigned] = ACTIONS(1704), + [anon_sym_long] = ACTIONS(1704), + [anon_sym_short] = ACTIONS(1704), + [sym_primitive_type] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(1704), + [anon_sym_struct] = ACTIONS(1704), + [anon_sym_union] = ACTIONS(1704), + [anon_sym_if] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1704), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1704), + [anon_sym_do] = ACTIONS(1704), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1704), + [anon_sym_break] = ACTIONS(1704), + [anon_sym_continue] = ACTIONS(1704), + [anon_sym_goto] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1706), + [anon_sym_PLUS_PLUS] = ACTIONS(1706), + [anon_sym_sizeof] = ACTIONS(1704), + [sym_number_literal] = ACTIONS(1706), + [anon_sym_L_SQUOTE] = ACTIONS(1706), + [anon_sym_u_SQUOTE] = ACTIONS(1706), + [anon_sym_U_SQUOTE] = ACTIONS(1706), + [anon_sym_u8_SQUOTE] = ACTIONS(1706), + [anon_sym_SQUOTE] = ACTIONS(1706), + [anon_sym_L_DQUOTE] = ACTIONS(1706), + [anon_sym_u_DQUOTE] = ACTIONS(1706), + [anon_sym_U_DQUOTE] = ACTIONS(1706), + [anon_sym_u8_DQUOTE] = ACTIONS(1706), + [anon_sym_DQUOTE] = ACTIONS(1706), + [sym_true] = ACTIONS(1704), + [sym_false] = ACTIONS(1704), + [sym_null] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1706), + [anon_sym_ATimport] = ACTIONS(1706), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1704), + [anon_sym_ATcompatibility_alias] = ACTIONS(1706), + [anon_sym_ATprotocol] = ACTIONS(1706), + [anon_sym_ATclass] = ACTIONS(1706), + [anon_sym_ATinterface] = ACTIONS(1706), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1704), + [sym_method_attribute_specifier] = ACTIONS(1704), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1704), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1704), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1704), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1704), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1704), + [anon_sym_NS_AVAILABLE] = ACTIONS(1704), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1704), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_API_AVAILABLE] = ACTIONS(1704), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_API_DEPRECATED] = ACTIONS(1704), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1704), + [anon_sym___deprecated_msg] = ACTIONS(1704), + [anon_sym___deprecated_enum_msg] = ACTIONS(1704), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1704), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1704), + [anon_sym_ATimplementation] = ACTIONS(1706), + [anon_sym_NS_ENUM] = ACTIONS(1704), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1704), + [anon_sym_NS_OPTIONS] = ACTIONS(1704), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym___typeof] = ACTIONS(1704), + [anon_sym___typeof__] = ACTIONS(1704), + [sym_self] = ACTIONS(1704), + [sym_super] = ACTIONS(1704), + [sym_nil] = ACTIONS(1704), + [sym_id] = ACTIONS(1704), + [sym_instancetype] = ACTIONS(1704), + [sym_Class] = ACTIONS(1704), + [sym_SEL] = ACTIONS(1704), + [sym_IMP] = ACTIONS(1704), + [sym_BOOL] = ACTIONS(1704), + [sym_auto] = ACTIONS(1704), + [anon_sym_ATautoreleasepool] = ACTIONS(1706), + [anon_sym_ATsynchronized] = ACTIONS(1706), + [anon_sym_ATtry] = ACTIONS(1706), + [anon_sym_ATthrow] = ACTIONS(1706), + [anon_sym_ATselector] = ACTIONS(1706), + [anon_sym_ATencode] = ACTIONS(1706), + [anon_sym_AT] = ACTIONS(1704), + [sym_YES] = ACTIONS(1704), + [sym_NO] = ACTIONS(1704), + [anon_sym___builtin_available] = ACTIONS(1704), + [anon_sym_ATavailable] = ACTIONS(1706), + [anon_sym_va_arg] = ACTIONS(1704), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [480] = { + [sym_identifier] = ACTIONS(1708), + [aux_sym_preproc_include_token1] = ACTIONS(1710), + [aux_sym_preproc_def_token1] = ACTIONS(1710), + [aux_sym_preproc_if_token1] = ACTIONS(1708), + [aux_sym_preproc_if_token2] = ACTIONS(1708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1708), + [aux_sym_preproc_else_token1] = ACTIONS(1708), + [aux_sym_preproc_elif_token1] = ACTIONS(1708), + [anon_sym_LPAREN2] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_CARET] = ACTIONS(1710), + [anon_sym_AMP] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_typedef] = ACTIONS(1708), + [anon_sym_extern] = ACTIONS(1708), + [anon_sym___attribute] = ACTIONS(1708), + [anon_sym___attribute__] = ACTIONS(1708), + [anon_sym___declspec] = ACTIONS(1708), + [anon_sym___cdecl] = ACTIONS(1708), + [anon_sym___clrcall] = ACTIONS(1708), + [anon_sym___stdcall] = ACTIONS(1708), + [anon_sym___fastcall] = ACTIONS(1708), + [anon_sym___thiscall] = ACTIONS(1708), + [anon_sym___vectorcall] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_static] = ACTIONS(1708), + [anon_sym_auto] = ACTIONS(1708), + [anon_sym_register] = ACTIONS(1708), + [anon_sym_inline] = ACTIONS(1708), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_volatile] = ACTIONS(1708), + [anon_sym_restrict] = ACTIONS(1708), + [anon_sym__Atomic] = ACTIONS(1708), + [anon_sym_in] = ACTIONS(1708), + [anon_sym_out] = ACTIONS(1708), + [anon_sym_inout] = ACTIONS(1708), + [anon_sym_bycopy] = ACTIONS(1708), + [anon_sym_byref] = ACTIONS(1708), + [anon_sym_oneway] = ACTIONS(1708), + [anon_sym__Nullable] = ACTIONS(1708), + [anon_sym__Nonnull] = ACTIONS(1708), + [anon_sym__Nullable_result] = ACTIONS(1708), + [anon_sym__Null_unspecified] = ACTIONS(1708), + [anon_sym___autoreleasing] = ACTIONS(1708), + [anon_sym___nullable] = ACTIONS(1708), + [anon_sym___nonnull] = ACTIONS(1708), + [anon_sym___strong] = ACTIONS(1708), + [anon_sym___weak] = ACTIONS(1708), + [anon_sym___bridge] = ACTIONS(1708), + [anon_sym___bridge_transfer] = ACTIONS(1708), + [anon_sym___bridge_retained] = ACTIONS(1708), + [anon_sym___unsafe_unretained] = ACTIONS(1708), + [anon_sym___block] = ACTIONS(1708), + [anon_sym___kindof] = ACTIONS(1708), + [anon_sym___unused] = ACTIONS(1708), + [anon_sym__Complex] = ACTIONS(1708), + [anon_sym___complex] = ACTIONS(1708), + [anon_sym_IBOutlet] = ACTIONS(1708), + [anon_sym_IBInspectable] = ACTIONS(1708), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1708), + [anon_sym_signed] = ACTIONS(1708), + [anon_sym_unsigned] = ACTIONS(1708), + [anon_sym_long] = ACTIONS(1708), + [anon_sym_short] = ACTIONS(1708), + [sym_primitive_type] = ACTIONS(1708), + [anon_sym_enum] = ACTIONS(1708), + [anon_sym_struct] = ACTIONS(1708), + [anon_sym_union] = ACTIONS(1708), + [anon_sym_if] = ACTIONS(1708), + [anon_sym_switch] = ACTIONS(1708), + [anon_sym_case] = ACTIONS(1708), + [anon_sym_default] = ACTIONS(1708), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(1708), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1708), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_goto] = ACTIONS(1708), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1708), + [sym_number_literal] = ACTIONS(1710), + [anon_sym_L_SQUOTE] = ACTIONS(1710), + [anon_sym_u_SQUOTE] = ACTIONS(1710), + [anon_sym_U_SQUOTE] = ACTIONS(1710), + [anon_sym_u8_SQUOTE] = ACTIONS(1710), + [anon_sym_SQUOTE] = ACTIONS(1710), + [anon_sym_L_DQUOTE] = ACTIONS(1710), + [anon_sym_u_DQUOTE] = ACTIONS(1710), + [anon_sym_U_DQUOTE] = ACTIONS(1710), + [anon_sym_u8_DQUOTE] = ACTIONS(1710), + [anon_sym_DQUOTE] = ACTIONS(1710), + [sym_true] = ACTIONS(1708), + [sym_false] = ACTIONS(1708), + [sym_null] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1710), + [anon_sym_ATimport] = ACTIONS(1710), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1708), + [anon_sym_ATcompatibility_alias] = ACTIONS(1710), + [anon_sym_ATprotocol] = ACTIONS(1710), + [anon_sym_ATclass] = ACTIONS(1710), + [anon_sym_ATinterface] = ACTIONS(1710), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1708), + [sym_method_attribute_specifier] = ACTIONS(1708), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1708), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1708), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1708), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1708), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1708), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1708), + [anon_sym_NS_AVAILABLE] = ACTIONS(1708), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1708), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1708), + [anon_sym_API_AVAILABLE] = ACTIONS(1708), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1708), + [anon_sym_API_DEPRECATED] = ACTIONS(1708), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1708), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1708), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1708), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1708), + [anon_sym___deprecated_msg] = ACTIONS(1708), + [anon_sym___deprecated_enum_msg] = ACTIONS(1708), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1708), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1708), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1708), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1708), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1708), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1708), + [anon_sym_ATimplementation] = ACTIONS(1710), + [anon_sym_NS_ENUM] = ACTIONS(1708), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1708), + [anon_sym_NS_OPTIONS] = ACTIONS(1708), + [anon_sym_typeof] = ACTIONS(1708), + [anon_sym___typeof] = ACTIONS(1708), + [anon_sym___typeof__] = ACTIONS(1708), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_nil] = ACTIONS(1708), + [sym_id] = ACTIONS(1708), + [sym_instancetype] = ACTIONS(1708), + [sym_Class] = ACTIONS(1708), + [sym_SEL] = ACTIONS(1708), + [sym_IMP] = ACTIONS(1708), + [sym_BOOL] = ACTIONS(1708), + [sym_auto] = ACTIONS(1708), + [anon_sym_ATautoreleasepool] = ACTIONS(1710), + [anon_sym_ATsynchronized] = ACTIONS(1710), + [anon_sym_ATtry] = ACTIONS(1710), + [anon_sym_ATthrow] = ACTIONS(1710), + [anon_sym_ATselector] = ACTIONS(1710), + [anon_sym_ATencode] = ACTIONS(1710), + [anon_sym_AT] = ACTIONS(1708), + [sym_YES] = ACTIONS(1708), + [sym_NO] = ACTIONS(1708), + [anon_sym___builtin_available] = ACTIONS(1708), + [anon_sym_ATavailable] = ACTIONS(1710), + [anon_sym_va_arg] = ACTIONS(1708), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [481] = { + [sym_identifier] = ACTIONS(1712), + [aux_sym_preproc_include_token1] = ACTIONS(1714), + [aux_sym_preproc_def_token1] = ACTIONS(1714), + [aux_sym_preproc_if_token1] = ACTIONS(1712), + [aux_sym_preproc_if_token2] = ACTIONS(1712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1712), + [aux_sym_preproc_else_token1] = ACTIONS(1712), + [aux_sym_preproc_elif_token1] = ACTIONS(1712), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_STAR] = ACTIONS(1714), + [anon_sym_CARET] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_typedef] = ACTIONS(1712), + [anon_sym_extern] = ACTIONS(1712), + [anon_sym___attribute] = ACTIONS(1712), + [anon_sym___attribute__] = ACTIONS(1712), + [anon_sym___declspec] = ACTIONS(1712), + [anon_sym___cdecl] = ACTIONS(1712), + [anon_sym___clrcall] = ACTIONS(1712), + [anon_sym___stdcall] = ACTIONS(1712), + [anon_sym___fastcall] = ACTIONS(1712), + [anon_sym___thiscall] = ACTIONS(1712), + [anon_sym___vectorcall] = ACTIONS(1712), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_static] = ACTIONS(1712), + [anon_sym_auto] = ACTIONS(1712), + [anon_sym_register] = ACTIONS(1712), + [anon_sym_inline] = ACTIONS(1712), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1712), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_volatile] = ACTIONS(1712), + [anon_sym_restrict] = ACTIONS(1712), + [anon_sym__Atomic] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1712), + [anon_sym_out] = ACTIONS(1712), + [anon_sym_inout] = ACTIONS(1712), + [anon_sym_bycopy] = ACTIONS(1712), + [anon_sym_byref] = ACTIONS(1712), + [anon_sym_oneway] = ACTIONS(1712), + [anon_sym__Nullable] = ACTIONS(1712), + [anon_sym__Nonnull] = ACTIONS(1712), + [anon_sym__Nullable_result] = ACTIONS(1712), + [anon_sym__Null_unspecified] = ACTIONS(1712), + [anon_sym___autoreleasing] = ACTIONS(1712), + [anon_sym___nullable] = ACTIONS(1712), + [anon_sym___nonnull] = ACTIONS(1712), + [anon_sym___strong] = ACTIONS(1712), + [anon_sym___weak] = ACTIONS(1712), + [anon_sym___bridge] = ACTIONS(1712), + [anon_sym___bridge_transfer] = ACTIONS(1712), + [anon_sym___bridge_retained] = ACTIONS(1712), + [anon_sym___unsafe_unretained] = ACTIONS(1712), + [anon_sym___block] = ACTIONS(1712), + [anon_sym___kindof] = ACTIONS(1712), + [anon_sym___unused] = ACTIONS(1712), + [anon_sym__Complex] = ACTIONS(1712), + [anon_sym___complex] = ACTIONS(1712), + [anon_sym_IBOutlet] = ACTIONS(1712), + [anon_sym_IBInspectable] = ACTIONS(1712), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1712), + [anon_sym_signed] = ACTIONS(1712), + [anon_sym_unsigned] = ACTIONS(1712), + [anon_sym_long] = ACTIONS(1712), + [anon_sym_short] = ACTIONS(1712), + [sym_primitive_type] = ACTIONS(1712), + [anon_sym_enum] = ACTIONS(1712), + [anon_sym_struct] = ACTIONS(1712), + [anon_sym_union] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1712), + [anon_sym_default] = ACTIONS(1712), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_do] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_continue] = ACTIONS(1712), + [anon_sym_goto] = ACTIONS(1712), + [anon_sym_DASH_DASH] = ACTIONS(1714), + [anon_sym_PLUS_PLUS] = ACTIONS(1714), + [anon_sym_sizeof] = ACTIONS(1712), + [sym_number_literal] = ACTIONS(1714), + [anon_sym_L_SQUOTE] = ACTIONS(1714), + [anon_sym_u_SQUOTE] = ACTIONS(1714), + [anon_sym_U_SQUOTE] = ACTIONS(1714), + [anon_sym_u8_SQUOTE] = ACTIONS(1714), + [anon_sym_SQUOTE] = ACTIONS(1714), + [anon_sym_L_DQUOTE] = ACTIONS(1714), + [anon_sym_u_DQUOTE] = ACTIONS(1714), + [anon_sym_U_DQUOTE] = ACTIONS(1714), + [anon_sym_u8_DQUOTE] = ACTIONS(1714), + [anon_sym_DQUOTE] = ACTIONS(1714), + [sym_true] = ACTIONS(1712), + [sym_false] = ACTIONS(1712), + [sym_null] = ACTIONS(1712), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1714), + [anon_sym_ATimport] = ACTIONS(1714), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1712), + [anon_sym_ATcompatibility_alias] = ACTIONS(1714), + [anon_sym_ATprotocol] = ACTIONS(1714), + [anon_sym_ATclass] = ACTIONS(1714), + [anon_sym_ATinterface] = ACTIONS(1714), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1712), + [sym_method_attribute_specifier] = ACTIONS(1712), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1712), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1712), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1712), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1712), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1712), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1712), + [anon_sym_NS_AVAILABLE] = ACTIONS(1712), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1712), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1712), + [anon_sym_API_AVAILABLE] = ACTIONS(1712), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1712), + [anon_sym_API_DEPRECATED] = ACTIONS(1712), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1712), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1712), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1712), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1712), + [anon_sym___deprecated_msg] = ACTIONS(1712), + [anon_sym___deprecated_enum_msg] = ACTIONS(1712), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1712), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1712), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1712), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1712), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1712), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1712), + [anon_sym_ATimplementation] = ACTIONS(1714), + [anon_sym_NS_ENUM] = ACTIONS(1712), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1712), + [anon_sym_NS_OPTIONS] = ACTIONS(1712), + [anon_sym_typeof] = ACTIONS(1712), + [anon_sym___typeof] = ACTIONS(1712), + [anon_sym___typeof__] = ACTIONS(1712), + [sym_self] = ACTIONS(1712), + [sym_super] = ACTIONS(1712), + [sym_nil] = ACTIONS(1712), + [sym_id] = ACTIONS(1712), + [sym_instancetype] = ACTIONS(1712), + [sym_Class] = ACTIONS(1712), + [sym_SEL] = ACTIONS(1712), + [sym_IMP] = ACTIONS(1712), + [sym_BOOL] = ACTIONS(1712), + [sym_auto] = ACTIONS(1712), + [anon_sym_ATautoreleasepool] = ACTIONS(1714), + [anon_sym_ATsynchronized] = ACTIONS(1714), + [anon_sym_ATtry] = ACTIONS(1714), + [anon_sym_ATthrow] = ACTIONS(1714), + [anon_sym_ATselector] = ACTIONS(1714), + [anon_sym_ATencode] = ACTIONS(1714), + [anon_sym_AT] = ACTIONS(1712), + [sym_YES] = ACTIONS(1712), + [sym_NO] = ACTIONS(1712), + [anon_sym___builtin_available] = ACTIONS(1712), + [anon_sym_ATavailable] = ACTIONS(1714), + [anon_sym_va_arg] = ACTIONS(1712), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [482] = { + [sym_identifier] = ACTIONS(1716), + [aux_sym_preproc_include_token1] = ACTIONS(1718), + [aux_sym_preproc_def_token1] = ACTIONS(1718), + [aux_sym_preproc_if_token1] = ACTIONS(1716), + [aux_sym_preproc_if_token2] = ACTIONS(1716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1716), + [aux_sym_preproc_else_token1] = ACTIONS(1716), + [aux_sym_preproc_elif_token1] = ACTIONS(1716), + [anon_sym_LPAREN2] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_typedef] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym_in] = ACTIONS(1716), + [anon_sym_out] = ACTIONS(1716), + [anon_sym_inout] = ACTIONS(1716), + [anon_sym_bycopy] = ACTIONS(1716), + [anon_sym_byref] = ACTIONS(1716), + [anon_sym_oneway] = ACTIONS(1716), + [anon_sym__Nullable] = ACTIONS(1716), + [anon_sym__Nonnull] = ACTIONS(1716), + [anon_sym__Nullable_result] = ACTIONS(1716), + [anon_sym__Null_unspecified] = ACTIONS(1716), + [anon_sym___autoreleasing] = ACTIONS(1716), + [anon_sym___nullable] = ACTIONS(1716), + [anon_sym___nonnull] = ACTIONS(1716), + [anon_sym___strong] = ACTIONS(1716), + [anon_sym___weak] = ACTIONS(1716), + [anon_sym___bridge] = ACTIONS(1716), + [anon_sym___bridge_transfer] = ACTIONS(1716), + [anon_sym___bridge_retained] = ACTIONS(1716), + [anon_sym___unsafe_unretained] = ACTIONS(1716), + [anon_sym___block] = ACTIONS(1716), + [anon_sym___kindof] = ACTIONS(1716), + [anon_sym___unused] = ACTIONS(1716), + [anon_sym__Complex] = ACTIONS(1716), + [anon_sym___complex] = ACTIONS(1716), + [anon_sym_IBOutlet] = ACTIONS(1716), + [anon_sym_IBInspectable] = ACTIONS(1716), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1716), + [anon_sym_unsigned] = ACTIONS(1716), + [anon_sym_long] = ACTIONS(1716), + [anon_sym_short] = ACTIONS(1716), + [sym_primitive_type] = ACTIONS(1716), + [anon_sym_enum] = ACTIONS(1716), + [anon_sym_struct] = ACTIONS(1716), + [anon_sym_union] = ACTIONS(1716), + [anon_sym_if] = ACTIONS(1716), + [anon_sym_switch] = ACTIONS(1716), + [anon_sym_case] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1716), + [anon_sym_while] = ACTIONS(1716), + [anon_sym_do] = ACTIONS(1716), + [anon_sym_for] = ACTIONS(1716), + [anon_sym_return] = ACTIONS(1716), + [anon_sym_break] = ACTIONS(1716), + [anon_sym_continue] = ACTIONS(1716), + [anon_sym_goto] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_sizeof] = ACTIONS(1716), + [sym_number_literal] = ACTIONS(1718), + [anon_sym_L_SQUOTE] = ACTIONS(1718), + [anon_sym_u_SQUOTE] = ACTIONS(1718), + [anon_sym_U_SQUOTE] = ACTIONS(1718), + [anon_sym_u8_SQUOTE] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(1718), + [anon_sym_L_DQUOTE] = ACTIONS(1718), + [anon_sym_u_DQUOTE] = ACTIONS(1718), + [anon_sym_U_DQUOTE] = ACTIONS(1718), + [anon_sym_u8_DQUOTE] = ACTIONS(1718), + [anon_sym_DQUOTE] = ACTIONS(1718), + [sym_true] = ACTIONS(1716), + [sym_false] = ACTIONS(1716), + [sym_null] = ACTIONS(1716), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1718), + [anon_sym_ATimport] = ACTIONS(1718), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1716), + [anon_sym_ATcompatibility_alias] = ACTIONS(1718), + [anon_sym_ATprotocol] = ACTIONS(1718), + [anon_sym_ATclass] = ACTIONS(1718), + [anon_sym_ATinterface] = ACTIONS(1718), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1716), + [sym_method_attribute_specifier] = ACTIONS(1716), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1716), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1716), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1716), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1716), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1716), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1716), + [anon_sym_NS_AVAILABLE] = ACTIONS(1716), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1716), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1716), + [anon_sym_API_AVAILABLE] = ACTIONS(1716), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1716), + [anon_sym_API_DEPRECATED] = ACTIONS(1716), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1716), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1716), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1716), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1716), + [anon_sym___deprecated_msg] = ACTIONS(1716), + [anon_sym___deprecated_enum_msg] = ACTIONS(1716), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1716), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1716), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1716), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1716), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1716), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1716), + [anon_sym_ATimplementation] = ACTIONS(1718), + [anon_sym_NS_ENUM] = ACTIONS(1716), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1716), + [anon_sym_NS_OPTIONS] = ACTIONS(1716), + [anon_sym_typeof] = ACTIONS(1716), + [anon_sym___typeof] = ACTIONS(1716), + [anon_sym___typeof__] = ACTIONS(1716), + [sym_self] = ACTIONS(1716), + [sym_super] = ACTIONS(1716), + [sym_nil] = ACTIONS(1716), + [sym_id] = ACTIONS(1716), + [sym_instancetype] = ACTIONS(1716), + [sym_Class] = ACTIONS(1716), + [sym_SEL] = ACTIONS(1716), + [sym_IMP] = ACTIONS(1716), + [sym_BOOL] = ACTIONS(1716), + [sym_auto] = ACTIONS(1716), + [anon_sym_ATautoreleasepool] = ACTIONS(1718), + [anon_sym_ATsynchronized] = ACTIONS(1718), + [anon_sym_ATtry] = ACTIONS(1718), + [anon_sym_ATthrow] = ACTIONS(1718), + [anon_sym_ATselector] = ACTIONS(1718), + [anon_sym_ATencode] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1716), + [sym_YES] = ACTIONS(1716), + [sym_NO] = ACTIONS(1716), + [anon_sym___builtin_available] = ACTIONS(1716), + [anon_sym_ATavailable] = ACTIONS(1718), + [anon_sym_va_arg] = ACTIONS(1716), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [483] = { + [sym_identifier] = ACTIONS(1720), + [aux_sym_preproc_include_token1] = ACTIONS(1722), + [aux_sym_preproc_def_token1] = ACTIONS(1722), + [aux_sym_preproc_if_token1] = ACTIONS(1720), + [aux_sym_preproc_if_token2] = ACTIONS(1720), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1720), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1720), + [aux_sym_preproc_else_token1] = ACTIONS(1720), + [aux_sym_preproc_elif_token1] = ACTIONS(1720), + [anon_sym_LPAREN2] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_CARET] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_typedef] = ACTIONS(1720), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym___attribute] = ACTIONS(1720), + [anon_sym___attribute__] = ACTIONS(1720), + [anon_sym___declspec] = ACTIONS(1720), + [anon_sym___cdecl] = ACTIONS(1720), + [anon_sym___clrcall] = ACTIONS(1720), + [anon_sym___stdcall] = ACTIONS(1720), + [anon_sym___fastcall] = ACTIONS(1720), + [anon_sym___thiscall] = ACTIONS(1720), + [anon_sym___vectorcall] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_static] = ACTIONS(1720), + [anon_sym_auto] = ACTIONS(1720), + [anon_sym_register] = ACTIONS(1720), + [anon_sym_inline] = ACTIONS(1720), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_volatile] = ACTIONS(1720), + [anon_sym_restrict] = ACTIONS(1720), + [anon_sym__Atomic] = ACTIONS(1720), + [anon_sym_in] = ACTIONS(1720), + [anon_sym_out] = ACTIONS(1720), + [anon_sym_inout] = ACTIONS(1720), + [anon_sym_bycopy] = ACTIONS(1720), + [anon_sym_byref] = ACTIONS(1720), + [anon_sym_oneway] = ACTIONS(1720), + [anon_sym__Nullable] = ACTIONS(1720), + [anon_sym__Nonnull] = ACTIONS(1720), + [anon_sym__Nullable_result] = ACTIONS(1720), + [anon_sym__Null_unspecified] = ACTIONS(1720), + [anon_sym___autoreleasing] = ACTIONS(1720), + [anon_sym___nullable] = ACTIONS(1720), + [anon_sym___nonnull] = ACTIONS(1720), + [anon_sym___strong] = ACTIONS(1720), + [anon_sym___weak] = ACTIONS(1720), + [anon_sym___bridge] = ACTIONS(1720), + [anon_sym___bridge_transfer] = ACTIONS(1720), + [anon_sym___bridge_retained] = ACTIONS(1720), + [anon_sym___unsafe_unretained] = ACTIONS(1720), + [anon_sym___block] = ACTIONS(1720), + [anon_sym___kindof] = ACTIONS(1720), + [anon_sym___unused] = ACTIONS(1720), + [anon_sym__Complex] = ACTIONS(1720), + [anon_sym___complex] = ACTIONS(1720), + [anon_sym_IBOutlet] = ACTIONS(1720), + [anon_sym_IBInspectable] = ACTIONS(1720), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1720), + [anon_sym_signed] = ACTIONS(1720), + [anon_sym_unsigned] = ACTIONS(1720), + [anon_sym_long] = ACTIONS(1720), + [anon_sym_short] = ACTIONS(1720), + [sym_primitive_type] = ACTIONS(1720), + [anon_sym_enum] = ACTIONS(1720), + [anon_sym_struct] = ACTIONS(1720), + [anon_sym_union] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_case] = ACTIONS(1720), + [anon_sym_default] = ACTIONS(1720), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_continue] = ACTIONS(1720), + [anon_sym_goto] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_sizeof] = ACTIONS(1720), + [sym_number_literal] = ACTIONS(1722), + [anon_sym_L_SQUOTE] = ACTIONS(1722), + [anon_sym_u_SQUOTE] = ACTIONS(1722), + [anon_sym_U_SQUOTE] = ACTIONS(1722), + [anon_sym_u8_SQUOTE] = ACTIONS(1722), + [anon_sym_SQUOTE] = ACTIONS(1722), + [anon_sym_L_DQUOTE] = ACTIONS(1722), + [anon_sym_u_DQUOTE] = ACTIONS(1722), + [anon_sym_U_DQUOTE] = ACTIONS(1722), + [anon_sym_u8_DQUOTE] = ACTIONS(1722), + [anon_sym_DQUOTE] = ACTIONS(1722), + [sym_true] = ACTIONS(1720), + [sym_false] = ACTIONS(1720), + [sym_null] = ACTIONS(1720), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1722), + [anon_sym_ATimport] = ACTIONS(1722), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1720), + [anon_sym_ATcompatibility_alias] = ACTIONS(1722), + [anon_sym_ATprotocol] = ACTIONS(1722), + [anon_sym_ATclass] = ACTIONS(1722), + [anon_sym_ATinterface] = ACTIONS(1722), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1720), + [sym_method_attribute_specifier] = ACTIONS(1720), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1720), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1720), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1720), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1720), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1720), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1720), + [anon_sym_NS_AVAILABLE] = ACTIONS(1720), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1720), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1720), + [anon_sym_API_AVAILABLE] = ACTIONS(1720), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1720), + [anon_sym_API_DEPRECATED] = ACTIONS(1720), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1720), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1720), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1720), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1720), + [anon_sym___deprecated_msg] = ACTIONS(1720), + [anon_sym___deprecated_enum_msg] = ACTIONS(1720), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1720), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1720), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1720), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1720), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1720), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1720), + [anon_sym_ATimplementation] = ACTIONS(1722), + [anon_sym_NS_ENUM] = ACTIONS(1720), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1720), + [anon_sym_NS_OPTIONS] = ACTIONS(1720), + [anon_sym_typeof] = ACTIONS(1720), + [anon_sym___typeof] = ACTIONS(1720), + [anon_sym___typeof__] = ACTIONS(1720), + [sym_self] = ACTIONS(1720), + [sym_super] = ACTIONS(1720), + [sym_nil] = ACTIONS(1720), + [sym_id] = ACTIONS(1720), + [sym_instancetype] = ACTIONS(1720), + [sym_Class] = ACTIONS(1720), + [sym_SEL] = ACTIONS(1720), + [sym_IMP] = ACTIONS(1720), + [sym_BOOL] = ACTIONS(1720), + [sym_auto] = ACTIONS(1720), + [anon_sym_ATautoreleasepool] = ACTIONS(1722), + [anon_sym_ATsynchronized] = ACTIONS(1722), + [anon_sym_ATtry] = ACTIONS(1722), + [anon_sym_ATthrow] = ACTIONS(1722), + [anon_sym_ATselector] = ACTIONS(1722), + [anon_sym_ATencode] = ACTIONS(1722), + [anon_sym_AT] = ACTIONS(1720), + [sym_YES] = ACTIONS(1720), + [sym_NO] = ACTIONS(1720), + [anon_sym___builtin_available] = ACTIONS(1720), + [anon_sym_ATavailable] = ACTIONS(1722), + [anon_sym_va_arg] = ACTIONS(1720), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [484] = { + [sym_identifier] = ACTIONS(1724), + [aux_sym_preproc_include_token1] = ACTIONS(1726), + [aux_sym_preproc_def_token1] = ACTIONS(1726), + [aux_sym_preproc_if_token1] = ACTIONS(1724), + [aux_sym_preproc_if_token2] = ACTIONS(1724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1724), + [aux_sym_preproc_else_token1] = ACTIONS(1724), + [aux_sym_preproc_elif_token1] = ACTIONS(1724), + [anon_sym_LPAREN2] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_CARET] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_typedef] = ACTIONS(1724), + [anon_sym_extern] = ACTIONS(1724), + [anon_sym___attribute] = ACTIONS(1724), + [anon_sym___attribute__] = ACTIONS(1724), + [anon_sym___declspec] = ACTIONS(1724), + [anon_sym___cdecl] = ACTIONS(1724), + [anon_sym___clrcall] = ACTIONS(1724), + [anon_sym___stdcall] = ACTIONS(1724), + [anon_sym___fastcall] = ACTIONS(1724), + [anon_sym___thiscall] = ACTIONS(1724), + [anon_sym___vectorcall] = ACTIONS(1724), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_static] = ACTIONS(1724), + [anon_sym_auto] = ACTIONS(1724), + [anon_sym_register] = ACTIONS(1724), + [anon_sym_inline] = ACTIONS(1724), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1724), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_volatile] = ACTIONS(1724), + [anon_sym_restrict] = ACTIONS(1724), + [anon_sym__Atomic] = ACTIONS(1724), + [anon_sym_in] = ACTIONS(1724), + [anon_sym_out] = ACTIONS(1724), + [anon_sym_inout] = ACTIONS(1724), + [anon_sym_bycopy] = ACTIONS(1724), + [anon_sym_byref] = ACTIONS(1724), + [anon_sym_oneway] = ACTIONS(1724), + [anon_sym__Nullable] = ACTIONS(1724), + [anon_sym__Nonnull] = ACTIONS(1724), + [anon_sym__Nullable_result] = ACTIONS(1724), + [anon_sym__Null_unspecified] = ACTIONS(1724), + [anon_sym___autoreleasing] = ACTIONS(1724), + [anon_sym___nullable] = ACTIONS(1724), + [anon_sym___nonnull] = ACTIONS(1724), + [anon_sym___strong] = ACTIONS(1724), + [anon_sym___weak] = ACTIONS(1724), + [anon_sym___bridge] = ACTIONS(1724), + [anon_sym___bridge_transfer] = ACTIONS(1724), + [anon_sym___bridge_retained] = ACTIONS(1724), + [anon_sym___unsafe_unretained] = ACTIONS(1724), + [anon_sym___block] = ACTIONS(1724), + [anon_sym___kindof] = ACTIONS(1724), + [anon_sym___unused] = ACTIONS(1724), + [anon_sym__Complex] = ACTIONS(1724), + [anon_sym___complex] = ACTIONS(1724), + [anon_sym_IBOutlet] = ACTIONS(1724), + [anon_sym_IBInspectable] = ACTIONS(1724), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1724), + [anon_sym_unsigned] = ACTIONS(1724), + [anon_sym_long] = ACTIONS(1724), + [anon_sym_short] = ACTIONS(1724), + [sym_primitive_type] = ACTIONS(1724), + [anon_sym_enum] = ACTIONS(1724), + [anon_sym_struct] = ACTIONS(1724), + [anon_sym_union] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_case] = ACTIONS(1724), + [anon_sym_default] = ACTIONS(1724), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_do] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_continue] = ACTIONS(1724), + [anon_sym_goto] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_sizeof] = ACTIONS(1724), + [sym_number_literal] = ACTIONS(1726), + [anon_sym_L_SQUOTE] = ACTIONS(1726), + [anon_sym_u_SQUOTE] = ACTIONS(1726), + [anon_sym_U_SQUOTE] = ACTIONS(1726), + [anon_sym_u8_SQUOTE] = ACTIONS(1726), + [anon_sym_SQUOTE] = ACTIONS(1726), + [anon_sym_L_DQUOTE] = ACTIONS(1726), + [anon_sym_u_DQUOTE] = ACTIONS(1726), + [anon_sym_U_DQUOTE] = ACTIONS(1726), + [anon_sym_u8_DQUOTE] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [sym_true] = ACTIONS(1724), + [sym_false] = ACTIONS(1724), + [sym_null] = ACTIONS(1724), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1726), + [anon_sym_ATimport] = ACTIONS(1726), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1724), + [anon_sym_ATcompatibility_alias] = ACTIONS(1726), + [anon_sym_ATprotocol] = ACTIONS(1726), + [anon_sym_ATclass] = ACTIONS(1726), + [anon_sym_ATinterface] = ACTIONS(1726), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1724), + [sym_method_attribute_specifier] = ACTIONS(1724), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1724), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1724), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1724), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1724), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1724), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1724), + [anon_sym_NS_AVAILABLE] = ACTIONS(1724), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1724), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1724), + [anon_sym_API_AVAILABLE] = ACTIONS(1724), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1724), + [anon_sym_API_DEPRECATED] = ACTIONS(1724), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1724), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1724), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1724), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1724), + [anon_sym___deprecated_msg] = ACTIONS(1724), + [anon_sym___deprecated_enum_msg] = ACTIONS(1724), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1724), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1724), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1724), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1724), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1724), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1724), + [anon_sym_ATimplementation] = ACTIONS(1726), + [anon_sym_NS_ENUM] = ACTIONS(1724), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1724), + [anon_sym_NS_OPTIONS] = ACTIONS(1724), + [anon_sym_typeof] = ACTIONS(1724), + [anon_sym___typeof] = ACTIONS(1724), + [anon_sym___typeof__] = ACTIONS(1724), + [sym_self] = ACTIONS(1724), + [sym_super] = ACTIONS(1724), + [sym_nil] = ACTIONS(1724), + [sym_id] = ACTIONS(1724), + [sym_instancetype] = ACTIONS(1724), + [sym_Class] = ACTIONS(1724), + [sym_SEL] = ACTIONS(1724), + [sym_IMP] = ACTIONS(1724), + [sym_BOOL] = ACTIONS(1724), + [sym_auto] = ACTIONS(1724), + [anon_sym_ATautoreleasepool] = ACTIONS(1726), + [anon_sym_ATsynchronized] = ACTIONS(1726), + [anon_sym_ATtry] = ACTIONS(1726), + [anon_sym_ATthrow] = ACTIONS(1726), + [anon_sym_ATselector] = ACTIONS(1726), + [anon_sym_ATencode] = ACTIONS(1726), + [anon_sym_AT] = ACTIONS(1724), + [sym_YES] = ACTIONS(1724), + [sym_NO] = ACTIONS(1724), + [anon_sym___builtin_available] = ACTIONS(1724), + [anon_sym_ATavailable] = ACTIONS(1726), + [anon_sym_va_arg] = ACTIONS(1724), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [485] = { + [sym_identifier] = ACTIONS(1728), + [aux_sym_preproc_include_token1] = ACTIONS(1730), + [aux_sym_preproc_def_token1] = ACTIONS(1730), + [aux_sym_preproc_if_token1] = ACTIONS(1728), + [aux_sym_preproc_if_token2] = ACTIONS(1728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1728), + [aux_sym_preproc_else_token1] = ACTIONS(1728), + [aux_sym_preproc_elif_token1] = ACTIONS(1728), + [anon_sym_LPAREN2] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_STAR] = ACTIONS(1730), + [anon_sym_CARET] = ACTIONS(1730), + [anon_sym_AMP] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_typedef] = ACTIONS(1728), + [anon_sym_extern] = ACTIONS(1728), + [anon_sym___attribute] = ACTIONS(1728), + [anon_sym___attribute__] = ACTIONS(1728), + [anon_sym___declspec] = ACTIONS(1728), + [anon_sym___cdecl] = ACTIONS(1728), + [anon_sym___clrcall] = ACTIONS(1728), + [anon_sym___stdcall] = ACTIONS(1728), + [anon_sym___fastcall] = ACTIONS(1728), + [anon_sym___thiscall] = ACTIONS(1728), + [anon_sym___vectorcall] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(1728), + [anon_sym_auto] = ACTIONS(1728), + [anon_sym_register] = ACTIONS(1728), + [anon_sym_inline] = ACTIONS(1728), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1728), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_volatile] = ACTIONS(1728), + [anon_sym_restrict] = ACTIONS(1728), + [anon_sym__Atomic] = ACTIONS(1728), + [anon_sym_in] = ACTIONS(1728), + [anon_sym_out] = ACTIONS(1728), + [anon_sym_inout] = ACTIONS(1728), + [anon_sym_bycopy] = ACTIONS(1728), + [anon_sym_byref] = ACTIONS(1728), + [anon_sym_oneway] = ACTIONS(1728), + [anon_sym__Nullable] = ACTIONS(1728), + [anon_sym__Nonnull] = ACTIONS(1728), + [anon_sym__Nullable_result] = ACTIONS(1728), + [anon_sym__Null_unspecified] = ACTIONS(1728), + [anon_sym___autoreleasing] = ACTIONS(1728), + [anon_sym___nullable] = ACTIONS(1728), + [anon_sym___nonnull] = ACTIONS(1728), + [anon_sym___strong] = ACTIONS(1728), + [anon_sym___weak] = ACTIONS(1728), + [anon_sym___bridge] = ACTIONS(1728), + [anon_sym___bridge_transfer] = ACTIONS(1728), + [anon_sym___bridge_retained] = ACTIONS(1728), + [anon_sym___unsafe_unretained] = ACTIONS(1728), + [anon_sym___block] = ACTIONS(1728), + [anon_sym___kindof] = ACTIONS(1728), + [anon_sym___unused] = ACTIONS(1728), + [anon_sym__Complex] = ACTIONS(1728), + [anon_sym___complex] = ACTIONS(1728), + [anon_sym_IBOutlet] = ACTIONS(1728), + [anon_sym_IBInspectable] = ACTIONS(1728), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1728), + [anon_sym_signed] = ACTIONS(1728), + [anon_sym_unsigned] = ACTIONS(1728), + [anon_sym_long] = ACTIONS(1728), + [anon_sym_short] = ACTIONS(1728), + [sym_primitive_type] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1728), + [anon_sym_struct] = ACTIONS(1728), + [anon_sym_union] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_case] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1728), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_do] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_continue] = ACTIONS(1728), + [anon_sym_goto] = ACTIONS(1728), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_sizeof] = ACTIONS(1728), + [sym_number_literal] = ACTIONS(1730), + [anon_sym_L_SQUOTE] = ACTIONS(1730), + [anon_sym_u_SQUOTE] = ACTIONS(1730), + [anon_sym_U_SQUOTE] = ACTIONS(1730), + [anon_sym_u8_SQUOTE] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [anon_sym_L_DQUOTE] = ACTIONS(1730), + [anon_sym_u_DQUOTE] = ACTIONS(1730), + [anon_sym_U_DQUOTE] = ACTIONS(1730), + [anon_sym_u8_DQUOTE] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1730), + [sym_true] = ACTIONS(1728), + [sym_false] = ACTIONS(1728), + [sym_null] = ACTIONS(1728), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1730), + [anon_sym_ATimport] = ACTIONS(1730), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1728), + [anon_sym_ATcompatibility_alias] = ACTIONS(1730), + [anon_sym_ATprotocol] = ACTIONS(1730), + [anon_sym_ATclass] = ACTIONS(1730), + [anon_sym_ATinterface] = ACTIONS(1730), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1728), + [sym_method_attribute_specifier] = ACTIONS(1728), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1728), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1728), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1728), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1728), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1728), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1728), + [anon_sym_NS_AVAILABLE] = ACTIONS(1728), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1728), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1728), + [anon_sym_API_AVAILABLE] = ACTIONS(1728), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1728), + [anon_sym_API_DEPRECATED] = ACTIONS(1728), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1728), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1728), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1728), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1728), + [anon_sym___deprecated_msg] = ACTIONS(1728), + [anon_sym___deprecated_enum_msg] = ACTIONS(1728), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1728), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1728), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1728), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1728), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1728), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1728), + [anon_sym_ATimplementation] = ACTIONS(1730), + [anon_sym_NS_ENUM] = ACTIONS(1728), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1728), + [anon_sym_NS_OPTIONS] = ACTIONS(1728), + [anon_sym_typeof] = ACTIONS(1728), + [anon_sym___typeof] = ACTIONS(1728), + [anon_sym___typeof__] = ACTIONS(1728), + [sym_self] = ACTIONS(1728), + [sym_super] = ACTIONS(1728), + [sym_nil] = ACTIONS(1728), + [sym_id] = ACTIONS(1728), + [sym_instancetype] = ACTIONS(1728), + [sym_Class] = ACTIONS(1728), + [sym_SEL] = ACTIONS(1728), + [sym_IMP] = ACTIONS(1728), + [sym_BOOL] = ACTIONS(1728), + [sym_auto] = ACTIONS(1728), + [anon_sym_ATautoreleasepool] = ACTIONS(1730), + [anon_sym_ATsynchronized] = ACTIONS(1730), + [anon_sym_ATtry] = ACTIONS(1730), + [anon_sym_ATthrow] = ACTIONS(1730), + [anon_sym_ATselector] = ACTIONS(1730), + [anon_sym_ATencode] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(1728), + [sym_YES] = ACTIONS(1728), + [sym_NO] = ACTIONS(1728), + [anon_sym___builtin_available] = ACTIONS(1728), + [anon_sym_ATavailable] = ACTIONS(1730), + [anon_sym_va_arg] = ACTIONS(1728), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [486] = { + [sym_identifier] = ACTIONS(1732), + [aux_sym_preproc_include_token1] = ACTIONS(1734), + [aux_sym_preproc_def_token1] = ACTIONS(1734), + [aux_sym_preproc_if_token1] = ACTIONS(1732), + [aux_sym_preproc_if_token2] = ACTIONS(1732), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1732), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1732), + [aux_sym_preproc_else_token1] = ACTIONS(1732), + [aux_sym_preproc_elif_token1] = ACTIONS(1732), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_TILDE] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_CARET] = ACTIONS(1734), + [anon_sym_AMP] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_typedef] = ACTIONS(1732), + [anon_sym_extern] = ACTIONS(1732), + [anon_sym___attribute] = ACTIONS(1732), + [anon_sym___attribute__] = ACTIONS(1732), + [anon_sym___declspec] = ACTIONS(1732), + [anon_sym___cdecl] = ACTIONS(1732), + [anon_sym___clrcall] = ACTIONS(1732), + [anon_sym___stdcall] = ACTIONS(1732), + [anon_sym___fastcall] = ACTIONS(1732), + [anon_sym___thiscall] = ACTIONS(1732), + [anon_sym___vectorcall] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1732), + [anon_sym_auto] = ACTIONS(1732), + [anon_sym_register] = ACTIONS(1732), + [anon_sym_inline] = ACTIONS(1732), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1732), + [anon_sym_volatile] = ACTIONS(1732), + [anon_sym_restrict] = ACTIONS(1732), + [anon_sym__Atomic] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_out] = ACTIONS(1732), + [anon_sym_inout] = ACTIONS(1732), + [anon_sym_bycopy] = ACTIONS(1732), + [anon_sym_byref] = ACTIONS(1732), + [anon_sym_oneway] = ACTIONS(1732), + [anon_sym__Nullable] = ACTIONS(1732), + [anon_sym__Nonnull] = ACTIONS(1732), + [anon_sym__Nullable_result] = ACTIONS(1732), + [anon_sym__Null_unspecified] = ACTIONS(1732), + [anon_sym___autoreleasing] = ACTIONS(1732), + [anon_sym___nullable] = ACTIONS(1732), + [anon_sym___nonnull] = ACTIONS(1732), + [anon_sym___strong] = ACTIONS(1732), + [anon_sym___weak] = ACTIONS(1732), + [anon_sym___bridge] = ACTIONS(1732), + [anon_sym___bridge_transfer] = ACTIONS(1732), + [anon_sym___bridge_retained] = ACTIONS(1732), + [anon_sym___unsafe_unretained] = ACTIONS(1732), + [anon_sym___block] = ACTIONS(1732), + [anon_sym___kindof] = ACTIONS(1732), + [anon_sym___unused] = ACTIONS(1732), + [anon_sym__Complex] = ACTIONS(1732), + [anon_sym___complex] = ACTIONS(1732), + [anon_sym_IBOutlet] = ACTIONS(1732), + [anon_sym_IBInspectable] = ACTIONS(1732), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1732), + [anon_sym_signed] = ACTIONS(1732), + [anon_sym_unsigned] = ACTIONS(1732), + [anon_sym_long] = ACTIONS(1732), + [anon_sym_short] = ACTIONS(1732), + [sym_primitive_type] = ACTIONS(1732), + [anon_sym_enum] = ACTIONS(1732), + [anon_sym_struct] = ACTIONS(1732), + [anon_sym_union] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1732), + [anon_sym_case] = ACTIONS(1732), + [anon_sym_default] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_do] = ACTIONS(1732), + [anon_sym_for] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_goto] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_sizeof] = ACTIONS(1732), + [sym_number_literal] = ACTIONS(1734), + [anon_sym_L_SQUOTE] = ACTIONS(1734), + [anon_sym_u_SQUOTE] = ACTIONS(1734), + [anon_sym_U_SQUOTE] = ACTIONS(1734), + [anon_sym_u8_SQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_L_DQUOTE] = ACTIONS(1734), + [anon_sym_u_DQUOTE] = ACTIONS(1734), + [anon_sym_U_DQUOTE] = ACTIONS(1734), + [anon_sym_u8_DQUOTE] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [sym_true] = ACTIONS(1732), + [sym_false] = ACTIONS(1732), + [sym_null] = ACTIONS(1732), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1734), + [anon_sym_ATimport] = ACTIONS(1734), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1732), + [anon_sym_ATcompatibility_alias] = ACTIONS(1734), + [anon_sym_ATprotocol] = ACTIONS(1734), + [anon_sym_ATclass] = ACTIONS(1734), + [anon_sym_ATinterface] = ACTIONS(1734), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1732), + [sym_method_attribute_specifier] = ACTIONS(1732), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1732), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1732), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1732), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1732), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1732), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1732), + [anon_sym_NS_AVAILABLE] = ACTIONS(1732), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1732), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1732), + [anon_sym_API_AVAILABLE] = ACTIONS(1732), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1732), + [anon_sym_API_DEPRECATED] = ACTIONS(1732), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1732), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1732), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1732), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1732), + [anon_sym___deprecated_msg] = ACTIONS(1732), + [anon_sym___deprecated_enum_msg] = ACTIONS(1732), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1732), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1732), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1732), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1732), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1732), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1732), + [anon_sym_ATimplementation] = ACTIONS(1734), + [anon_sym_NS_ENUM] = ACTIONS(1732), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1732), + [anon_sym_NS_OPTIONS] = ACTIONS(1732), + [anon_sym_typeof] = ACTIONS(1732), + [anon_sym___typeof] = ACTIONS(1732), + [anon_sym___typeof__] = ACTIONS(1732), + [sym_self] = ACTIONS(1732), + [sym_super] = ACTIONS(1732), + [sym_nil] = ACTIONS(1732), + [sym_id] = ACTIONS(1732), + [sym_instancetype] = ACTIONS(1732), + [sym_Class] = ACTIONS(1732), + [sym_SEL] = ACTIONS(1732), + [sym_IMP] = ACTIONS(1732), + [sym_BOOL] = ACTIONS(1732), + [sym_auto] = ACTIONS(1732), + [anon_sym_ATautoreleasepool] = ACTIONS(1734), + [anon_sym_ATsynchronized] = ACTIONS(1734), + [anon_sym_ATtry] = ACTIONS(1734), + [anon_sym_ATthrow] = ACTIONS(1734), + [anon_sym_ATselector] = ACTIONS(1734), + [anon_sym_ATencode] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(1732), + [sym_YES] = ACTIONS(1732), + [sym_NO] = ACTIONS(1732), + [anon_sym___builtin_available] = ACTIONS(1732), + [anon_sym_ATavailable] = ACTIONS(1734), + [anon_sym_va_arg] = ACTIONS(1732), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [487] = { + [sym_identifier] = ACTIONS(1736), + [aux_sym_preproc_include_token1] = ACTIONS(1738), + [aux_sym_preproc_def_token1] = ACTIONS(1738), + [aux_sym_preproc_if_token1] = ACTIONS(1736), + [aux_sym_preproc_if_token2] = ACTIONS(1736), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1736), + [aux_sym_preproc_else_token1] = ACTIONS(1736), + [aux_sym_preproc_elif_token1] = ACTIONS(1736), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_TILDE] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1736), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_CARET] = ACTIONS(1738), + [anon_sym_AMP] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_typedef] = ACTIONS(1736), + [anon_sym_extern] = ACTIONS(1736), + [anon_sym___attribute] = ACTIONS(1736), + [anon_sym___attribute__] = ACTIONS(1736), + [anon_sym___declspec] = ACTIONS(1736), + [anon_sym___cdecl] = ACTIONS(1736), + [anon_sym___clrcall] = ACTIONS(1736), + [anon_sym___stdcall] = ACTIONS(1736), + [anon_sym___fastcall] = ACTIONS(1736), + [anon_sym___thiscall] = ACTIONS(1736), + [anon_sym___vectorcall] = ACTIONS(1736), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_LBRACK] = ACTIONS(1738), + [anon_sym_static] = ACTIONS(1736), + [anon_sym_auto] = ACTIONS(1736), + [anon_sym_register] = ACTIONS(1736), + [anon_sym_inline] = ACTIONS(1736), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1736), + [anon_sym_volatile] = ACTIONS(1736), + [anon_sym_restrict] = ACTIONS(1736), + [anon_sym__Atomic] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1736), + [anon_sym_out] = ACTIONS(1736), + [anon_sym_inout] = ACTIONS(1736), + [anon_sym_bycopy] = ACTIONS(1736), + [anon_sym_byref] = ACTIONS(1736), + [anon_sym_oneway] = ACTIONS(1736), + [anon_sym__Nullable] = ACTIONS(1736), + [anon_sym__Nonnull] = ACTIONS(1736), + [anon_sym__Nullable_result] = ACTIONS(1736), + [anon_sym__Null_unspecified] = ACTIONS(1736), + [anon_sym___autoreleasing] = ACTIONS(1736), + [anon_sym___nullable] = ACTIONS(1736), + [anon_sym___nonnull] = ACTIONS(1736), + [anon_sym___strong] = ACTIONS(1736), + [anon_sym___weak] = ACTIONS(1736), + [anon_sym___bridge] = ACTIONS(1736), + [anon_sym___bridge_transfer] = ACTIONS(1736), + [anon_sym___bridge_retained] = ACTIONS(1736), + [anon_sym___unsafe_unretained] = ACTIONS(1736), + [anon_sym___block] = ACTIONS(1736), + [anon_sym___kindof] = ACTIONS(1736), + [anon_sym___unused] = ACTIONS(1736), + [anon_sym__Complex] = ACTIONS(1736), + [anon_sym___complex] = ACTIONS(1736), + [anon_sym_IBOutlet] = ACTIONS(1736), + [anon_sym_IBInspectable] = ACTIONS(1736), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1736), + [anon_sym_signed] = ACTIONS(1736), + [anon_sym_unsigned] = ACTIONS(1736), + [anon_sym_long] = ACTIONS(1736), + [anon_sym_short] = ACTIONS(1736), + [sym_primitive_type] = ACTIONS(1736), + [anon_sym_enum] = ACTIONS(1736), + [anon_sym_struct] = ACTIONS(1736), + [anon_sym_union] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(1736), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(1736), + [anon_sym_default] = ACTIONS(1736), + [anon_sym_while] = ACTIONS(1736), + [anon_sym_do] = ACTIONS(1736), + [anon_sym_for] = ACTIONS(1736), + [anon_sym_return] = ACTIONS(1736), + [anon_sym_break] = ACTIONS(1736), + [anon_sym_continue] = ACTIONS(1736), + [anon_sym_goto] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1738), + [anon_sym_PLUS_PLUS] = ACTIONS(1738), + [anon_sym_sizeof] = ACTIONS(1736), + [sym_number_literal] = ACTIONS(1738), + [anon_sym_L_SQUOTE] = ACTIONS(1738), + [anon_sym_u_SQUOTE] = ACTIONS(1738), + [anon_sym_U_SQUOTE] = ACTIONS(1738), + [anon_sym_u8_SQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1738), + [anon_sym_L_DQUOTE] = ACTIONS(1738), + [anon_sym_u_DQUOTE] = ACTIONS(1738), + [anon_sym_U_DQUOTE] = ACTIONS(1738), + [anon_sym_u8_DQUOTE] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1738), + [sym_true] = ACTIONS(1736), + [sym_false] = ACTIONS(1736), + [sym_null] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1738), + [anon_sym_ATimport] = ACTIONS(1738), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1736), + [anon_sym_ATcompatibility_alias] = ACTIONS(1738), + [anon_sym_ATprotocol] = ACTIONS(1738), + [anon_sym_ATclass] = ACTIONS(1738), + [anon_sym_ATinterface] = ACTIONS(1738), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1736), + [sym_method_attribute_specifier] = ACTIONS(1736), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1736), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1736), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1736), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1736), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1736), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1736), + [anon_sym_NS_AVAILABLE] = ACTIONS(1736), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1736), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1736), + [anon_sym_API_AVAILABLE] = ACTIONS(1736), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1736), + [anon_sym_API_DEPRECATED] = ACTIONS(1736), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1736), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1736), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1736), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1736), + [anon_sym___deprecated_msg] = ACTIONS(1736), + [anon_sym___deprecated_enum_msg] = ACTIONS(1736), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1736), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1736), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1736), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1736), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1736), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1736), + [anon_sym_ATimplementation] = ACTIONS(1738), + [anon_sym_NS_ENUM] = ACTIONS(1736), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1736), + [anon_sym_NS_OPTIONS] = ACTIONS(1736), + [anon_sym_typeof] = ACTIONS(1736), + [anon_sym___typeof] = ACTIONS(1736), + [anon_sym___typeof__] = ACTIONS(1736), + [sym_self] = ACTIONS(1736), + [sym_super] = ACTIONS(1736), + [sym_nil] = ACTIONS(1736), + [sym_id] = ACTIONS(1736), + [sym_instancetype] = ACTIONS(1736), + [sym_Class] = ACTIONS(1736), + [sym_SEL] = ACTIONS(1736), + [sym_IMP] = ACTIONS(1736), + [sym_BOOL] = ACTIONS(1736), + [sym_auto] = ACTIONS(1736), + [anon_sym_ATautoreleasepool] = ACTIONS(1738), + [anon_sym_ATsynchronized] = ACTIONS(1738), + [anon_sym_ATtry] = ACTIONS(1738), + [anon_sym_ATthrow] = ACTIONS(1738), + [anon_sym_ATselector] = ACTIONS(1738), + [anon_sym_ATencode] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(1736), + [sym_YES] = ACTIONS(1736), + [sym_NO] = ACTIONS(1736), + [anon_sym___builtin_available] = ACTIONS(1736), + [anon_sym_ATavailable] = ACTIONS(1738), + [anon_sym_va_arg] = ACTIONS(1736), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [488] = { + [sym_identifier] = ACTIONS(1740), + [aux_sym_preproc_include_token1] = ACTIONS(1742), + [aux_sym_preproc_def_token1] = ACTIONS(1742), + [aux_sym_preproc_if_token1] = ACTIONS(1740), + [aux_sym_preproc_if_token2] = ACTIONS(1740), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1740), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1740), + [aux_sym_preproc_else_token1] = ACTIONS(1740), + [aux_sym_preproc_elif_token1] = ACTIONS(1740), + [anon_sym_LPAREN2] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_CARET] = ACTIONS(1742), + [anon_sym_AMP] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_typedef] = ACTIONS(1740), + [anon_sym_extern] = ACTIONS(1740), + [anon_sym___attribute] = ACTIONS(1740), + [anon_sym___attribute__] = ACTIONS(1740), + [anon_sym___declspec] = ACTIONS(1740), + [anon_sym___cdecl] = ACTIONS(1740), + [anon_sym___clrcall] = ACTIONS(1740), + [anon_sym___stdcall] = ACTIONS(1740), + [anon_sym___fastcall] = ACTIONS(1740), + [anon_sym___thiscall] = ACTIONS(1740), + [anon_sym___vectorcall] = ACTIONS(1740), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_static] = ACTIONS(1740), + [anon_sym_auto] = ACTIONS(1740), + [anon_sym_register] = ACTIONS(1740), + [anon_sym_inline] = ACTIONS(1740), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1740), + [anon_sym_const] = ACTIONS(1740), + [anon_sym_volatile] = ACTIONS(1740), + [anon_sym_restrict] = ACTIONS(1740), + [anon_sym__Atomic] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1740), + [anon_sym_out] = ACTIONS(1740), + [anon_sym_inout] = ACTIONS(1740), + [anon_sym_bycopy] = ACTIONS(1740), + [anon_sym_byref] = ACTIONS(1740), + [anon_sym_oneway] = ACTIONS(1740), + [anon_sym__Nullable] = ACTIONS(1740), + [anon_sym__Nonnull] = ACTIONS(1740), + [anon_sym__Nullable_result] = ACTIONS(1740), + [anon_sym__Null_unspecified] = ACTIONS(1740), + [anon_sym___autoreleasing] = ACTIONS(1740), + [anon_sym___nullable] = ACTIONS(1740), + [anon_sym___nonnull] = ACTIONS(1740), + [anon_sym___strong] = ACTIONS(1740), + [anon_sym___weak] = ACTIONS(1740), + [anon_sym___bridge] = ACTIONS(1740), + [anon_sym___bridge_transfer] = ACTIONS(1740), + [anon_sym___bridge_retained] = ACTIONS(1740), + [anon_sym___unsafe_unretained] = ACTIONS(1740), + [anon_sym___block] = ACTIONS(1740), + [anon_sym___kindof] = ACTIONS(1740), + [anon_sym___unused] = ACTIONS(1740), + [anon_sym__Complex] = ACTIONS(1740), + [anon_sym___complex] = ACTIONS(1740), + [anon_sym_IBOutlet] = ACTIONS(1740), + [anon_sym_IBInspectable] = ACTIONS(1740), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1740), + [anon_sym_signed] = ACTIONS(1740), + [anon_sym_unsigned] = ACTIONS(1740), + [anon_sym_long] = ACTIONS(1740), + [anon_sym_short] = ACTIONS(1740), + [sym_primitive_type] = ACTIONS(1740), + [anon_sym_enum] = ACTIONS(1740), + [anon_sym_struct] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_if] = ACTIONS(1740), + [anon_sym_switch] = ACTIONS(1740), + [anon_sym_case] = ACTIONS(1740), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_while] = ACTIONS(1740), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1740), + [anon_sym_return] = ACTIONS(1740), + [anon_sym_break] = ACTIONS(1740), + [anon_sym_continue] = ACTIONS(1740), + [anon_sym_goto] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_sizeof] = ACTIONS(1740), + [sym_number_literal] = ACTIONS(1742), + [anon_sym_L_SQUOTE] = ACTIONS(1742), + [anon_sym_u_SQUOTE] = ACTIONS(1742), + [anon_sym_U_SQUOTE] = ACTIONS(1742), + [anon_sym_u8_SQUOTE] = ACTIONS(1742), + [anon_sym_SQUOTE] = ACTIONS(1742), + [anon_sym_L_DQUOTE] = ACTIONS(1742), + [anon_sym_u_DQUOTE] = ACTIONS(1742), + [anon_sym_U_DQUOTE] = ACTIONS(1742), + [anon_sym_u8_DQUOTE] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(1742), + [sym_true] = ACTIONS(1740), + [sym_false] = ACTIONS(1740), + [sym_null] = ACTIONS(1740), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1742), + [anon_sym_ATimport] = ACTIONS(1742), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1740), + [anon_sym_ATcompatibility_alias] = ACTIONS(1742), + [anon_sym_ATprotocol] = ACTIONS(1742), + [anon_sym_ATclass] = ACTIONS(1742), + [anon_sym_ATinterface] = ACTIONS(1742), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1740), + [sym_method_attribute_specifier] = ACTIONS(1740), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1740), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1740), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1740), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1740), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1740), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1740), + [anon_sym_NS_AVAILABLE] = ACTIONS(1740), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1740), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1740), + [anon_sym_API_AVAILABLE] = ACTIONS(1740), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1740), + [anon_sym_API_DEPRECATED] = ACTIONS(1740), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1740), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1740), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1740), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1740), + [anon_sym___deprecated_msg] = ACTIONS(1740), + [anon_sym___deprecated_enum_msg] = ACTIONS(1740), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1740), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1740), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1740), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1740), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1740), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1740), + [anon_sym_ATimplementation] = ACTIONS(1742), + [anon_sym_NS_ENUM] = ACTIONS(1740), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1740), + [anon_sym_NS_OPTIONS] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(1740), + [anon_sym___typeof] = ACTIONS(1740), + [anon_sym___typeof__] = ACTIONS(1740), + [sym_self] = ACTIONS(1740), + [sym_super] = ACTIONS(1740), + [sym_nil] = ACTIONS(1740), + [sym_id] = ACTIONS(1740), + [sym_instancetype] = ACTIONS(1740), + [sym_Class] = ACTIONS(1740), + [sym_SEL] = ACTIONS(1740), + [sym_IMP] = ACTIONS(1740), + [sym_BOOL] = ACTIONS(1740), + [sym_auto] = ACTIONS(1740), + [anon_sym_ATautoreleasepool] = ACTIONS(1742), + [anon_sym_ATsynchronized] = ACTIONS(1742), + [anon_sym_ATtry] = ACTIONS(1742), + [anon_sym_ATthrow] = ACTIONS(1742), + [anon_sym_ATselector] = ACTIONS(1742), + [anon_sym_ATencode] = ACTIONS(1742), + [anon_sym_AT] = ACTIONS(1740), + [sym_YES] = ACTIONS(1740), + [sym_NO] = ACTIONS(1740), + [anon_sym___builtin_available] = ACTIONS(1740), + [anon_sym_ATavailable] = ACTIONS(1742), + [anon_sym_va_arg] = ACTIONS(1740), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [489] = { + [sym_identifier] = ACTIONS(1744), + [aux_sym_preproc_include_token1] = ACTIONS(1746), + [aux_sym_preproc_def_token1] = ACTIONS(1746), + [aux_sym_preproc_if_token1] = ACTIONS(1744), + [aux_sym_preproc_if_token2] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1744), + [aux_sym_preproc_else_token1] = ACTIONS(1744), + [aux_sym_preproc_elif_token1] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1746), + [anon_sym_TILDE] = ACTIONS(1746), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [anon_sym_CARET] = ACTIONS(1746), + [anon_sym_AMP] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_typedef] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1744), + [anon_sym___attribute] = ACTIONS(1744), + [anon_sym___attribute__] = ACTIONS(1744), + [anon_sym___declspec] = ACTIONS(1744), + [anon_sym___cdecl] = ACTIONS(1744), + [anon_sym___clrcall] = ACTIONS(1744), + [anon_sym___stdcall] = ACTIONS(1744), + [anon_sym___fastcall] = ACTIONS(1744), + [anon_sym___thiscall] = ACTIONS(1744), + [anon_sym___vectorcall] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(1744), + [anon_sym_auto] = ACTIONS(1744), + [anon_sym_register] = ACTIONS(1744), + [anon_sym_inline] = ACTIONS(1744), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym__Atomic] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_out] = ACTIONS(1744), + [anon_sym_inout] = ACTIONS(1744), + [anon_sym_bycopy] = ACTIONS(1744), + [anon_sym_byref] = ACTIONS(1744), + [anon_sym_oneway] = ACTIONS(1744), + [anon_sym__Nullable] = ACTIONS(1744), + [anon_sym__Nonnull] = ACTIONS(1744), + [anon_sym__Nullable_result] = ACTIONS(1744), + [anon_sym__Null_unspecified] = ACTIONS(1744), + [anon_sym___autoreleasing] = ACTIONS(1744), + [anon_sym___nullable] = ACTIONS(1744), + [anon_sym___nonnull] = ACTIONS(1744), + [anon_sym___strong] = ACTIONS(1744), + [anon_sym___weak] = ACTIONS(1744), + [anon_sym___bridge] = ACTIONS(1744), + [anon_sym___bridge_transfer] = ACTIONS(1744), + [anon_sym___bridge_retained] = ACTIONS(1744), + [anon_sym___unsafe_unretained] = ACTIONS(1744), + [anon_sym___block] = ACTIONS(1744), + [anon_sym___kindof] = ACTIONS(1744), + [anon_sym___unused] = ACTIONS(1744), + [anon_sym__Complex] = ACTIONS(1744), + [anon_sym___complex] = ACTIONS(1744), + [anon_sym_IBOutlet] = ACTIONS(1744), + [anon_sym_IBInspectable] = ACTIONS(1744), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1744), + [anon_sym_signed] = ACTIONS(1744), + [anon_sym_unsigned] = ACTIONS(1744), + [anon_sym_long] = ACTIONS(1744), + [anon_sym_short] = ACTIONS(1744), + [sym_primitive_type] = ACTIONS(1744), + [anon_sym_enum] = ACTIONS(1744), + [anon_sym_struct] = ACTIONS(1744), + [anon_sym_union] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_case] = ACTIONS(1744), + [anon_sym_default] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_do] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_goto] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_sizeof] = ACTIONS(1744), + [sym_number_literal] = ACTIONS(1746), + [anon_sym_L_SQUOTE] = ACTIONS(1746), + [anon_sym_u_SQUOTE] = ACTIONS(1746), + [anon_sym_U_SQUOTE] = ACTIONS(1746), + [anon_sym_u8_SQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1746), + [anon_sym_L_DQUOTE] = ACTIONS(1746), + [anon_sym_u_DQUOTE] = ACTIONS(1746), + [anon_sym_U_DQUOTE] = ACTIONS(1746), + [anon_sym_u8_DQUOTE] = ACTIONS(1746), + [anon_sym_DQUOTE] = ACTIONS(1746), + [sym_true] = ACTIONS(1744), + [sym_false] = ACTIONS(1744), + [sym_null] = ACTIONS(1744), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1746), + [anon_sym_ATimport] = ACTIONS(1746), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1744), + [anon_sym_ATcompatibility_alias] = ACTIONS(1746), + [anon_sym_ATprotocol] = ACTIONS(1746), + [anon_sym_ATclass] = ACTIONS(1746), + [anon_sym_ATinterface] = ACTIONS(1746), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1744), + [sym_method_attribute_specifier] = ACTIONS(1744), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1744), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1744), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1744), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1744), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1744), + [anon_sym_NS_AVAILABLE] = ACTIONS(1744), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1744), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_API_AVAILABLE] = ACTIONS(1744), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_API_DEPRECATED] = ACTIONS(1744), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1744), + [anon_sym___deprecated_msg] = ACTIONS(1744), + [anon_sym___deprecated_enum_msg] = ACTIONS(1744), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1744), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1744), + [anon_sym_ATimplementation] = ACTIONS(1746), + [anon_sym_NS_ENUM] = ACTIONS(1744), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1744), + [anon_sym_NS_OPTIONS] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(1744), + [anon_sym___typeof] = ACTIONS(1744), + [anon_sym___typeof__] = ACTIONS(1744), + [sym_self] = ACTIONS(1744), + [sym_super] = ACTIONS(1744), + [sym_nil] = ACTIONS(1744), + [sym_id] = ACTIONS(1744), + [sym_instancetype] = ACTIONS(1744), + [sym_Class] = ACTIONS(1744), + [sym_SEL] = ACTIONS(1744), + [sym_IMP] = ACTIONS(1744), + [sym_BOOL] = ACTIONS(1744), + [sym_auto] = ACTIONS(1744), + [anon_sym_ATautoreleasepool] = ACTIONS(1746), + [anon_sym_ATsynchronized] = ACTIONS(1746), + [anon_sym_ATtry] = ACTIONS(1746), + [anon_sym_ATthrow] = ACTIONS(1746), + [anon_sym_ATselector] = ACTIONS(1746), + [anon_sym_ATencode] = ACTIONS(1746), + [anon_sym_AT] = ACTIONS(1744), + [sym_YES] = ACTIONS(1744), + [sym_NO] = ACTIONS(1744), + [anon_sym___builtin_available] = ACTIONS(1744), + [anon_sym_ATavailable] = ACTIONS(1746), + [anon_sym_va_arg] = ACTIONS(1744), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [490] = { + [sym_identifier] = ACTIONS(1748), + [aux_sym_preproc_include_token1] = ACTIONS(1750), + [aux_sym_preproc_def_token1] = ACTIONS(1750), + [aux_sym_preproc_if_token1] = ACTIONS(1748), + [aux_sym_preproc_if_token2] = ACTIONS(1748), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1748), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1748), + [aux_sym_preproc_else_token1] = ACTIONS(1748), + [aux_sym_preproc_elif_token1] = ACTIONS(1748), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1750), + [anon_sym_CARET] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_typedef] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym___attribute] = ACTIONS(1748), + [anon_sym___attribute__] = ACTIONS(1748), + [anon_sym___declspec] = ACTIONS(1748), + [anon_sym___cdecl] = ACTIONS(1748), + [anon_sym___clrcall] = ACTIONS(1748), + [anon_sym___stdcall] = ACTIONS(1748), + [anon_sym___fastcall] = ACTIONS(1748), + [anon_sym___thiscall] = ACTIONS(1748), + [anon_sym___vectorcall] = ACTIONS(1748), + [anon_sym_LBRACE] = ACTIONS(1750), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_auto] = ACTIONS(1748), + [anon_sym_register] = ACTIONS(1748), + [anon_sym_inline] = ACTIONS(1748), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_volatile] = ACTIONS(1748), + [anon_sym_restrict] = ACTIONS(1748), + [anon_sym__Atomic] = ACTIONS(1748), + [anon_sym_in] = ACTIONS(1748), + [anon_sym_out] = ACTIONS(1748), + [anon_sym_inout] = ACTIONS(1748), + [anon_sym_bycopy] = ACTIONS(1748), + [anon_sym_byref] = ACTIONS(1748), + [anon_sym_oneway] = ACTIONS(1748), + [anon_sym__Nullable] = ACTIONS(1748), + [anon_sym__Nonnull] = ACTIONS(1748), + [anon_sym__Nullable_result] = ACTIONS(1748), + [anon_sym__Null_unspecified] = ACTIONS(1748), + [anon_sym___autoreleasing] = ACTIONS(1748), + [anon_sym___nullable] = ACTIONS(1748), + [anon_sym___nonnull] = ACTIONS(1748), + [anon_sym___strong] = ACTIONS(1748), + [anon_sym___weak] = ACTIONS(1748), + [anon_sym___bridge] = ACTIONS(1748), + [anon_sym___bridge_transfer] = ACTIONS(1748), + [anon_sym___bridge_retained] = ACTIONS(1748), + [anon_sym___unsafe_unretained] = ACTIONS(1748), + [anon_sym___block] = ACTIONS(1748), + [anon_sym___kindof] = ACTIONS(1748), + [anon_sym___unused] = ACTIONS(1748), + [anon_sym__Complex] = ACTIONS(1748), + [anon_sym___complex] = ACTIONS(1748), + [anon_sym_IBOutlet] = ACTIONS(1748), + [anon_sym_IBInspectable] = ACTIONS(1748), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1748), + [anon_sym_signed] = ACTIONS(1748), + [anon_sym_unsigned] = ACTIONS(1748), + [anon_sym_long] = ACTIONS(1748), + [anon_sym_short] = ACTIONS(1748), + [sym_primitive_type] = ACTIONS(1748), + [anon_sym_enum] = ACTIONS(1748), + [anon_sym_struct] = ACTIONS(1748), + [anon_sym_union] = ACTIONS(1748), + [anon_sym_if] = ACTIONS(1748), + [anon_sym_switch] = ACTIONS(1748), + [anon_sym_case] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1748), + [anon_sym_while] = ACTIONS(1748), + [anon_sym_do] = ACTIONS(1748), + [anon_sym_for] = ACTIONS(1748), + [anon_sym_return] = ACTIONS(1748), + [anon_sym_break] = ACTIONS(1748), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1748), + [anon_sym_DASH_DASH] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1750), + [anon_sym_sizeof] = ACTIONS(1748), + [sym_number_literal] = ACTIONS(1750), + [anon_sym_L_SQUOTE] = ACTIONS(1750), + [anon_sym_u_SQUOTE] = ACTIONS(1750), + [anon_sym_U_SQUOTE] = ACTIONS(1750), + [anon_sym_u8_SQUOTE] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1750), + [anon_sym_L_DQUOTE] = ACTIONS(1750), + [anon_sym_u_DQUOTE] = ACTIONS(1750), + [anon_sym_U_DQUOTE] = ACTIONS(1750), + [anon_sym_u8_DQUOTE] = ACTIONS(1750), + [anon_sym_DQUOTE] = ACTIONS(1750), + [sym_true] = ACTIONS(1748), + [sym_false] = ACTIONS(1748), + [sym_null] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1750), + [anon_sym_ATimport] = ACTIONS(1750), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1748), + [anon_sym_ATcompatibility_alias] = ACTIONS(1750), + [anon_sym_ATprotocol] = ACTIONS(1750), + [anon_sym_ATclass] = ACTIONS(1750), + [anon_sym_ATinterface] = ACTIONS(1750), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1748), + [sym_method_attribute_specifier] = ACTIONS(1748), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1748), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1748), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1748), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1748), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1748), + [anon_sym_NS_AVAILABLE] = ACTIONS(1748), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1748), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_API_AVAILABLE] = ACTIONS(1748), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_API_DEPRECATED] = ACTIONS(1748), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1748), + [anon_sym___deprecated_msg] = ACTIONS(1748), + [anon_sym___deprecated_enum_msg] = ACTIONS(1748), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1748), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1748), + [anon_sym_ATimplementation] = ACTIONS(1750), + [anon_sym_NS_ENUM] = ACTIONS(1748), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1748), + [anon_sym_NS_OPTIONS] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(1748), + [anon_sym___typeof] = ACTIONS(1748), + [anon_sym___typeof__] = ACTIONS(1748), + [sym_self] = ACTIONS(1748), + [sym_super] = ACTIONS(1748), + [sym_nil] = ACTIONS(1748), + [sym_id] = ACTIONS(1748), + [sym_instancetype] = ACTIONS(1748), + [sym_Class] = ACTIONS(1748), + [sym_SEL] = ACTIONS(1748), + [sym_IMP] = ACTIONS(1748), + [sym_BOOL] = ACTIONS(1748), + [sym_auto] = ACTIONS(1748), + [anon_sym_ATautoreleasepool] = ACTIONS(1750), + [anon_sym_ATsynchronized] = ACTIONS(1750), + [anon_sym_ATtry] = ACTIONS(1750), + [anon_sym_ATthrow] = ACTIONS(1750), + [anon_sym_ATselector] = ACTIONS(1750), + [anon_sym_ATencode] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(1748), + [sym_YES] = ACTIONS(1748), + [sym_NO] = ACTIONS(1748), + [anon_sym___builtin_available] = ACTIONS(1748), + [anon_sym_ATavailable] = ACTIONS(1750), + [anon_sym_va_arg] = ACTIONS(1748), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [491] = { + [sym_identifier] = ACTIONS(1752), + [aux_sym_preproc_include_token1] = ACTIONS(1754), + [aux_sym_preproc_def_token1] = ACTIONS(1754), + [aux_sym_preproc_if_token1] = ACTIONS(1752), + [aux_sym_preproc_if_token2] = ACTIONS(1752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1752), + [aux_sym_preproc_else_token1] = ACTIONS(1752), + [aux_sym_preproc_elif_token1] = ACTIONS(1752), + [anon_sym_LPAREN2] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_typedef] = ACTIONS(1752), + [anon_sym_extern] = ACTIONS(1752), + [anon_sym___attribute] = ACTIONS(1752), + [anon_sym___attribute__] = ACTIONS(1752), + [anon_sym___declspec] = ACTIONS(1752), + [anon_sym___cdecl] = ACTIONS(1752), + [anon_sym___clrcall] = ACTIONS(1752), + [anon_sym___stdcall] = ACTIONS(1752), + [anon_sym___fastcall] = ACTIONS(1752), + [anon_sym___thiscall] = ACTIONS(1752), + [anon_sym___vectorcall] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1752), + [anon_sym_auto] = ACTIONS(1752), + [anon_sym_register] = ACTIONS(1752), + [anon_sym_inline] = ACTIONS(1752), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1752), + [anon_sym_const] = ACTIONS(1752), + [anon_sym_volatile] = ACTIONS(1752), + [anon_sym_restrict] = ACTIONS(1752), + [anon_sym__Atomic] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_out] = ACTIONS(1752), + [anon_sym_inout] = ACTIONS(1752), + [anon_sym_bycopy] = ACTIONS(1752), + [anon_sym_byref] = ACTIONS(1752), + [anon_sym_oneway] = ACTIONS(1752), + [anon_sym__Nullable] = ACTIONS(1752), + [anon_sym__Nonnull] = ACTIONS(1752), + [anon_sym__Nullable_result] = ACTIONS(1752), + [anon_sym__Null_unspecified] = ACTIONS(1752), + [anon_sym___autoreleasing] = ACTIONS(1752), + [anon_sym___nullable] = ACTIONS(1752), + [anon_sym___nonnull] = ACTIONS(1752), + [anon_sym___strong] = ACTIONS(1752), + [anon_sym___weak] = ACTIONS(1752), + [anon_sym___bridge] = ACTIONS(1752), + [anon_sym___bridge_transfer] = ACTIONS(1752), + [anon_sym___bridge_retained] = ACTIONS(1752), + [anon_sym___unsafe_unretained] = ACTIONS(1752), + [anon_sym___block] = ACTIONS(1752), + [anon_sym___kindof] = ACTIONS(1752), + [anon_sym___unused] = ACTIONS(1752), + [anon_sym__Complex] = ACTIONS(1752), + [anon_sym___complex] = ACTIONS(1752), + [anon_sym_IBOutlet] = ACTIONS(1752), + [anon_sym_IBInspectable] = ACTIONS(1752), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1752), + [anon_sym_signed] = ACTIONS(1752), + [anon_sym_unsigned] = ACTIONS(1752), + [anon_sym_long] = ACTIONS(1752), + [anon_sym_short] = ACTIONS(1752), + [sym_primitive_type] = ACTIONS(1752), + [anon_sym_enum] = ACTIONS(1752), + [anon_sym_struct] = ACTIONS(1752), + [anon_sym_union] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_switch] = ACTIONS(1752), + [anon_sym_case] = ACTIONS(1752), + [anon_sym_default] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_do] = ACTIONS(1752), + [anon_sym_for] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_goto] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_sizeof] = ACTIONS(1752), + [sym_number_literal] = ACTIONS(1754), + [anon_sym_L_SQUOTE] = ACTIONS(1754), + [anon_sym_u_SQUOTE] = ACTIONS(1754), + [anon_sym_U_SQUOTE] = ACTIONS(1754), + [anon_sym_u8_SQUOTE] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1754), + [anon_sym_L_DQUOTE] = ACTIONS(1754), + [anon_sym_u_DQUOTE] = ACTIONS(1754), + [anon_sym_U_DQUOTE] = ACTIONS(1754), + [anon_sym_u8_DQUOTE] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [sym_true] = ACTIONS(1752), + [sym_false] = ACTIONS(1752), + [sym_null] = ACTIONS(1752), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1754), + [anon_sym_ATimport] = ACTIONS(1754), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1752), + [anon_sym_ATcompatibility_alias] = ACTIONS(1754), + [anon_sym_ATprotocol] = ACTIONS(1754), + [anon_sym_ATclass] = ACTIONS(1754), + [anon_sym_ATinterface] = ACTIONS(1754), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1752), + [sym_method_attribute_specifier] = ACTIONS(1752), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1752), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1752), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1752), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1752), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1752), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1752), + [anon_sym_NS_AVAILABLE] = ACTIONS(1752), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1752), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1752), + [anon_sym_API_AVAILABLE] = ACTIONS(1752), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1752), + [anon_sym_API_DEPRECATED] = ACTIONS(1752), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1752), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1752), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1752), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1752), + [anon_sym___deprecated_msg] = ACTIONS(1752), + [anon_sym___deprecated_enum_msg] = ACTIONS(1752), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1752), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1752), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1752), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1752), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1752), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1752), + [anon_sym_ATimplementation] = ACTIONS(1754), + [anon_sym_NS_ENUM] = ACTIONS(1752), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1752), + [anon_sym_NS_OPTIONS] = ACTIONS(1752), + [anon_sym_typeof] = ACTIONS(1752), + [anon_sym___typeof] = ACTIONS(1752), + [anon_sym___typeof__] = ACTIONS(1752), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_nil] = ACTIONS(1752), + [sym_id] = ACTIONS(1752), + [sym_instancetype] = ACTIONS(1752), + [sym_Class] = ACTIONS(1752), + [sym_SEL] = ACTIONS(1752), + [sym_IMP] = ACTIONS(1752), + [sym_BOOL] = ACTIONS(1752), + [sym_auto] = ACTIONS(1752), + [anon_sym_ATautoreleasepool] = ACTIONS(1754), + [anon_sym_ATsynchronized] = ACTIONS(1754), + [anon_sym_ATtry] = ACTIONS(1754), + [anon_sym_ATthrow] = ACTIONS(1754), + [anon_sym_ATselector] = ACTIONS(1754), + [anon_sym_ATencode] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(1752), + [sym_YES] = ACTIONS(1752), + [sym_NO] = ACTIONS(1752), + [anon_sym___builtin_available] = ACTIONS(1752), + [anon_sym_ATavailable] = ACTIONS(1754), + [anon_sym_va_arg] = ACTIONS(1752), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [492] = { + [sym_identifier] = ACTIONS(1756), + [aux_sym_preproc_include_token1] = ACTIONS(1758), + [aux_sym_preproc_def_token1] = ACTIONS(1758), + [aux_sym_preproc_if_token1] = ACTIONS(1756), + [aux_sym_preproc_if_token2] = ACTIONS(1756), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1756), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1756), + [aux_sym_preproc_else_token1] = ACTIONS(1756), + [aux_sym_preproc_elif_token1] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1758), + [anon_sym_BANG] = ACTIONS(1758), + [anon_sym_TILDE] = ACTIONS(1758), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1758), + [anon_sym_AMP] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_typedef] = ACTIONS(1756), + [anon_sym_extern] = ACTIONS(1756), + [anon_sym___attribute] = ACTIONS(1756), + [anon_sym___attribute__] = ACTIONS(1756), + [anon_sym___declspec] = ACTIONS(1756), + [anon_sym___cdecl] = ACTIONS(1756), + [anon_sym___clrcall] = ACTIONS(1756), + [anon_sym___stdcall] = ACTIONS(1756), + [anon_sym___fastcall] = ACTIONS(1756), + [anon_sym___thiscall] = ACTIONS(1756), + [anon_sym___vectorcall] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_static] = ACTIONS(1756), + [anon_sym_auto] = ACTIONS(1756), + [anon_sym_register] = ACTIONS(1756), + [anon_sym_inline] = ACTIONS(1756), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1756), + [anon_sym_volatile] = ACTIONS(1756), + [anon_sym_restrict] = ACTIONS(1756), + [anon_sym__Atomic] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1756), + [anon_sym_out] = ACTIONS(1756), + [anon_sym_inout] = ACTIONS(1756), + [anon_sym_bycopy] = ACTIONS(1756), + [anon_sym_byref] = ACTIONS(1756), + [anon_sym_oneway] = ACTIONS(1756), + [anon_sym__Nullable] = ACTIONS(1756), + [anon_sym__Nonnull] = ACTIONS(1756), + [anon_sym__Nullable_result] = ACTIONS(1756), + [anon_sym__Null_unspecified] = ACTIONS(1756), + [anon_sym___autoreleasing] = ACTIONS(1756), + [anon_sym___nullable] = ACTIONS(1756), + [anon_sym___nonnull] = ACTIONS(1756), + [anon_sym___strong] = ACTIONS(1756), + [anon_sym___weak] = ACTIONS(1756), + [anon_sym___bridge] = ACTIONS(1756), + [anon_sym___bridge_transfer] = ACTIONS(1756), + [anon_sym___bridge_retained] = ACTIONS(1756), + [anon_sym___unsafe_unretained] = ACTIONS(1756), + [anon_sym___block] = ACTIONS(1756), + [anon_sym___kindof] = ACTIONS(1756), + [anon_sym___unused] = ACTIONS(1756), + [anon_sym__Complex] = ACTIONS(1756), + [anon_sym___complex] = ACTIONS(1756), + [anon_sym_IBOutlet] = ACTIONS(1756), + [anon_sym_IBInspectable] = ACTIONS(1756), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1756), + [anon_sym_signed] = ACTIONS(1756), + [anon_sym_unsigned] = ACTIONS(1756), + [anon_sym_long] = ACTIONS(1756), + [anon_sym_short] = ACTIONS(1756), + [sym_primitive_type] = ACTIONS(1756), + [anon_sym_enum] = ACTIONS(1756), + [anon_sym_struct] = ACTIONS(1756), + [anon_sym_union] = ACTIONS(1756), + [anon_sym_if] = ACTIONS(1756), + [anon_sym_switch] = ACTIONS(1756), + [anon_sym_case] = ACTIONS(1756), + [anon_sym_default] = ACTIONS(1756), + [anon_sym_while] = ACTIONS(1756), + [anon_sym_do] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1756), + [anon_sym_return] = ACTIONS(1756), + [anon_sym_break] = ACTIONS(1756), + [anon_sym_continue] = ACTIONS(1756), + [anon_sym_goto] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1758), + [anon_sym_PLUS_PLUS] = ACTIONS(1758), + [anon_sym_sizeof] = ACTIONS(1756), + [sym_number_literal] = ACTIONS(1758), + [anon_sym_L_SQUOTE] = ACTIONS(1758), + [anon_sym_u_SQUOTE] = ACTIONS(1758), + [anon_sym_U_SQUOTE] = ACTIONS(1758), + [anon_sym_u8_SQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [anon_sym_L_DQUOTE] = ACTIONS(1758), + [anon_sym_u_DQUOTE] = ACTIONS(1758), + [anon_sym_U_DQUOTE] = ACTIONS(1758), + [anon_sym_u8_DQUOTE] = ACTIONS(1758), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym_true] = ACTIONS(1756), + [sym_false] = ACTIONS(1756), + [sym_null] = ACTIONS(1756), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1758), + [anon_sym_ATimport] = ACTIONS(1758), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1756), + [anon_sym_ATcompatibility_alias] = ACTIONS(1758), + [anon_sym_ATprotocol] = ACTIONS(1758), + [anon_sym_ATclass] = ACTIONS(1758), + [anon_sym_ATinterface] = ACTIONS(1758), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1756), + [sym_method_attribute_specifier] = ACTIONS(1756), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1756), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1756), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1756), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1756), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1756), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1756), + [anon_sym_NS_AVAILABLE] = ACTIONS(1756), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1756), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1756), + [anon_sym_API_AVAILABLE] = ACTIONS(1756), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1756), + [anon_sym_API_DEPRECATED] = ACTIONS(1756), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1756), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1756), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1756), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1756), + [anon_sym___deprecated_msg] = ACTIONS(1756), + [anon_sym___deprecated_enum_msg] = ACTIONS(1756), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1756), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1756), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1756), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1756), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1756), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1756), + [anon_sym_ATimplementation] = ACTIONS(1758), + [anon_sym_NS_ENUM] = ACTIONS(1756), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1756), + [anon_sym_NS_OPTIONS] = ACTIONS(1756), + [anon_sym_typeof] = ACTIONS(1756), + [anon_sym___typeof] = ACTIONS(1756), + [anon_sym___typeof__] = ACTIONS(1756), + [sym_self] = ACTIONS(1756), + [sym_super] = ACTIONS(1756), + [sym_nil] = ACTIONS(1756), + [sym_id] = ACTIONS(1756), + [sym_instancetype] = ACTIONS(1756), + [sym_Class] = ACTIONS(1756), + [sym_SEL] = ACTIONS(1756), + [sym_IMP] = ACTIONS(1756), + [sym_BOOL] = ACTIONS(1756), + [sym_auto] = ACTIONS(1756), + [anon_sym_ATautoreleasepool] = ACTIONS(1758), + [anon_sym_ATsynchronized] = ACTIONS(1758), + [anon_sym_ATtry] = ACTIONS(1758), + [anon_sym_ATthrow] = ACTIONS(1758), + [anon_sym_ATselector] = ACTIONS(1758), + [anon_sym_ATencode] = ACTIONS(1758), + [anon_sym_AT] = ACTIONS(1756), + [sym_YES] = ACTIONS(1756), + [sym_NO] = ACTIONS(1756), + [anon_sym___builtin_available] = ACTIONS(1756), + [anon_sym_ATavailable] = ACTIONS(1758), + [anon_sym_va_arg] = ACTIONS(1756), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [493] = { + [sym_identifier] = ACTIONS(1760), + [aux_sym_preproc_include_token1] = ACTIONS(1762), + [aux_sym_preproc_def_token1] = ACTIONS(1762), + [aux_sym_preproc_if_token1] = ACTIONS(1760), + [aux_sym_preproc_if_token2] = ACTIONS(1760), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1760), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1760), + [aux_sym_preproc_else_token1] = ACTIONS(1760), + [aux_sym_preproc_elif_token1] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_TILDE] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_CARET] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_typedef] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym___attribute] = ACTIONS(1760), + [anon_sym___attribute__] = ACTIONS(1760), + [anon_sym___declspec] = ACTIONS(1760), + [anon_sym___cdecl] = ACTIONS(1760), + [anon_sym___clrcall] = ACTIONS(1760), + [anon_sym___stdcall] = ACTIONS(1760), + [anon_sym___fastcall] = ACTIONS(1760), + [anon_sym___thiscall] = ACTIONS(1760), + [anon_sym___vectorcall] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_auto] = ACTIONS(1760), + [anon_sym_register] = ACTIONS(1760), + [anon_sym_inline] = ACTIONS(1760), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [anon_sym_volatile] = ACTIONS(1760), + [anon_sym_restrict] = ACTIONS(1760), + [anon_sym__Atomic] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_out] = ACTIONS(1760), + [anon_sym_inout] = ACTIONS(1760), + [anon_sym_bycopy] = ACTIONS(1760), + [anon_sym_byref] = ACTIONS(1760), + [anon_sym_oneway] = ACTIONS(1760), + [anon_sym__Nullable] = ACTIONS(1760), + [anon_sym__Nonnull] = ACTIONS(1760), + [anon_sym__Nullable_result] = ACTIONS(1760), + [anon_sym__Null_unspecified] = ACTIONS(1760), + [anon_sym___autoreleasing] = ACTIONS(1760), + [anon_sym___nullable] = ACTIONS(1760), + [anon_sym___nonnull] = ACTIONS(1760), + [anon_sym___strong] = ACTIONS(1760), + [anon_sym___weak] = ACTIONS(1760), + [anon_sym___bridge] = ACTIONS(1760), + [anon_sym___bridge_transfer] = ACTIONS(1760), + [anon_sym___bridge_retained] = ACTIONS(1760), + [anon_sym___unsafe_unretained] = ACTIONS(1760), + [anon_sym___block] = ACTIONS(1760), + [anon_sym___kindof] = ACTIONS(1760), + [anon_sym___unused] = ACTIONS(1760), + [anon_sym__Complex] = ACTIONS(1760), + [anon_sym___complex] = ACTIONS(1760), + [anon_sym_IBOutlet] = ACTIONS(1760), + [anon_sym_IBInspectable] = ACTIONS(1760), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1760), + [anon_sym_signed] = ACTIONS(1760), + [anon_sym_unsigned] = ACTIONS(1760), + [anon_sym_long] = ACTIONS(1760), + [anon_sym_short] = ACTIONS(1760), + [sym_primitive_type] = ACTIONS(1760), + [anon_sym_enum] = ACTIONS(1760), + [anon_sym_struct] = ACTIONS(1760), + [anon_sym_union] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_switch] = ACTIONS(1760), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_goto] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_sizeof] = ACTIONS(1760), + [sym_number_literal] = ACTIONS(1762), + [anon_sym_L_SQUOTE] = ACTIONS(1762), + [anon_sym_u_SQUOTE] = ACTIONS(1762), + [anon_sym_U_SQUOTE] = ACTIONS(1762), + [anon_sym_u8_SQUOTE] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1762), + [anon_sym_L_DQUOTE] = ACTIONS(1762), + [anon_sym_u_DQUOTE] = ACTIONS(1762), + [anon_sym_U_DQUOTE] = ACTIONS(1762), + [anon_sym_u8_DQUOTE] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_null] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1762), + [anon_sym_ATimport] = ACTIONS(1762), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1760), + [anon_sym_ATcompatibility_alias] = ACTIONS(1762), + [anon_sym_ATprotocol] = ACTIONS(1762), + [anon_sym_ATclass] = ACTIONS(1762), + [anon_sym_ATinterface] = ACTIONS(1762), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1760), + [sym_method_attribute_specifier] = ACTIONS(1760), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1760), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1760), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1760), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1760), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1760), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1760), + [anon_sym_NS_AVAILABLE] = ACTIONS(1760), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1760), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1760), + [anon_sym_API_AVAILABLE] = ACTIONS(1760), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1760), + [anon_sym_API_DEPRECATED] = ACTIONS(1760), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1760), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1760), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1760), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1760), + [anon_sym___deprecated_msg] = ACTIONS(1760), + [anon_sym___deprecated_enum_msg] = ACTIONS(1760), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1760), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1760), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1760), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1760), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1760), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1760), + [anon_sym_ATimplementation] = ACTIONS(1762), + [anon_sym_NS_ENUM] = ACTIONS(1760), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1760), + [anon_sym_NS_OPTIONS] = ACTIONS(1760), + [anon_sym_typeof] = ACTIONS(1760), + [anon_sym___typeof] = ACTIONS(1760), + [anon_sym___typeof__] = ACTIONS(1760), + [sym_self] = ACTIONS(1760), + [sym_super] = ACTIONS(1760), + [sym_nil] = ACTIONS(1760), + [sym_id] = ACTIONS(1760), + [sym_instancetype] = ACTIONS(1760), + [sym_Class] = ACTIONS(1760), + [sym_SEL] = ACTIONS(1760), + [sym_IMP] = ACTIONS(1760), + [sym_BOOL] = ACTIONS(1760), + [sym_auto] = ACTIONS(1760), + [anon_sym_ATautoreleasepool] = ACTIONS(1762), + [anon_sym_ATsynchronized] = ACTIONS(1762), + [anon_sym_ATtry] = ACTIONS(1762), + [anon_sym_ATthrow] = ACTIONS(1762), + [anon_sym_ATselector] = ACTIONS(1762), + [anon_sym_ATencode] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(1760), + [sym_YES] = ACTIONS(1760), + [sym_NO] = ACTIONS(1760), + [anon_sym___builtin_available] = ACTIONS(1760), + [anon_sym_ATavailable] = ACTIONS(1762), + [anon_sym_va_arg] = ACTIONS(1760), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [494] = { + [sym_identifier] = ACTIONS(1764), + [aux_sym_preproc_include_token1] = ACTIONS(1766), + [aux_sym_preproc_def_token1] = ACTIONS(1766), + [aux_sym_preproc_if_token1] = ACTIONS(1764), + [aux_sym_preproc_if_token2] = ACTIONS(1764), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1764), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1764), + [aux_sym_preproc_else_token1] = ACTIONS(1764), + [aux_sym_preproc_elif_token1] = ACTIONS(1764), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_typedef] = ACTIONS(1764), + [anon_sym_extern] = ACTIONS(1764), + [anon_sym___attribute] = ACTIONS(1764), + [anon_sym___attribute__] = ACTIONS(1764), + [anon_sym___declspec] = ACTIONS(1764), + [anon_sym___cdecl] = ACTIONS(1764), + [anon_sym___clrcall] = ACTIONS(1764), + [anon_sym___stdcall] = ACTIONS(1764), + [anon_sym___fastcall] = ACTIONS(1764), + [anon_sym___thiscall] = ACTIONS(1764), + [anon_sym___vectorcall] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_static] = ACTIONS(1764), + [anon_sym_auto] = ACTIONS(1764), + [anon_sym_register] = ACTIONS(1764), + [anon_sym_inline] = ACTIONS(1764), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1764), + [anon_sym_const] = ACTIONS(1764), + [anon_sym_volatile] = ACTIONS(1764), + [anon_sym_restrict] = ACTIONS(1764), + [anon_sym__Atomic] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1764), + [anon_sym_out] = ACTIONS(1764), + [anon_sym_inout] = ACTIONS(1764), + [anon_sym_bycopy] = ACTIONS(1764), + [anon_sym_byref] = ACTIONS(1764), + [anon_sym_oneway] = ACTIONS(1764), + [anon_sym__Nullable] = ACTIONS(1764), + [anon_sym__Nonnull] = ACTIONS(1764), + [anon_sym__Nullable_result] = ACTIONS(1764), + [anon_sym__Null_unspecified] = ACTIONS(1764), + [anon_sym___autoreleasing] = ACTIONS(1764), + [anon_sym___nullable] = ACTIONS(1764), + [anon_sym___nonnull] = ACTIONS(1764), + [anon_sym___strong] = ACTIONS(1764), + [anon_sym___weak] = ACTIONS(1764), + [anon_sym___bridge] = ACTIONS(1764), + [anon_sym___bridge_transfer] = ACTIONS(1764), + [anon_sym___bridge_retained] = ACTIONS(1764), + [anon_sym___unsafe_unretained] = ACTIONS(1764), + [anon_sym___block] = ACTIONS(1764), + [anon_sym___kindof] = ACTIONS(1764), + [anon_sym___unused] = ACTIONS(1764), + [anon_sym__Complex] = ACTIONS(1764), + [anon_sym___complex] = ACTIONS(1764), + [anon_sym_IBOutlet] = ACTIONS(1764), + [anon_sym_IBInspectable] = ACTIONS(1764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1764), + [anon_sym_signed] = ACTIONS(1764), + [anon_sym_unsigned] = ACTIONS(1764), + [anon_sym_long] = ACTIONS(1764), + [anon_sym_short] = ACTIONS(1764), + [sym_primitive_type] = ACTIONS(1764), + [anon_sym_enum] = ACTIONS(1764), + [anon_sym_struct] = ACTIONS(1764), + [anon_sym_union] = ACTIONS(1764), + [anon_sym_if] = ACTIONS(1764), + [anon_sym_switch] = ACTIONS(1764), + [anon_sym_case] = ACTIONS(1764), + [anon_sym_default] = ACTIONS(1764), + [anon_sym_while] = ACTIONS(1764), + [anon_sym_do] = ACTIONS(1764), + [anon_sym_for] = ACTIONS(1764), + [anon_sym_return] = ACTIONS(1764), + [anon_sym_break] = ACTIONS(1764), + [anon_sym_continue] = ACTIONS(1764), + [anon_sym_goto] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_sizeof] = ACTIONS(1764), + [sym_number_literal] = ACTIONS(1766), + [anon_sym_L_SQUOTE] = ACTIONS(1766), + [anon_sym_u_SQUOTE] = ACTIONS(1766), + [anon_sym_U_SQUOTE] = ACTIONS(1766), + [anon_sym_u8_SQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_L_DQUOTE] = ACTIONS(1766), + [anon_sym_u_DQUOTE] = ACTIONS(1766), + [anon_sym_U_DQUOTE] = ACTIONS(1766), + [anon_sym_u8_DQUOTE] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [sym_true] = ACTIONS(1764), + [sym_false] = ACTIONS(1764), + [sym_null] = ACTIONS(1764), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1766), + [anon_sym_ATimport] = ACTIONS(1766), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1764), + [anon_sym_ATcompatibility_alias] = ACTIONS(1766), + [anon_sym_ATprotocol] = ACTIONS(1766), + [anon_sym_ATclass] = ACTIONS(1766), + [anon_sym_ATinterface] = ACTIONS(1766), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1764), + [sym_method_attribute_specifier] = ACTIONS(1764), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1764), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1764), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1764), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1764), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1764), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1764), + [anon_sym_NS_AVAILABLE] = ACTIONS(1764), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1764), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1764), + [anon_sym_API_AVAILABLE] = ACTIONS(1764), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1764), + [anon_sym_API_DEPRECATED] = ACTIONS(1764), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1764), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1764), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1764), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1764), + [anon_sym___deprecated_msg] = ACTIONS(1764), + [anon_sym___deprecated_enum_msg] = ACTIONS(1764), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1764), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1764), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1764), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1764), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1764), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1764), + [anon_sym_ATimplementation] = ACTIONS(1766), + [anon_sym_NS_ENUM] = ACTIONS(1764), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1764), + [anon_sym_NS_OPTIONS] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(1764), + [anon_sym___typeof] = ACTIONS(1764), + [anon_sym___typeof__] = ACTIONS(1764), + [sym_self] = ACTIONS(1764), + [sym_super] = ACTIONS(1764), + [sym_nil] = ACTIONS(1764), + [sym_id] = ACTIONS(1764), + [sym_instancetype] = ACTIONS(1764), + [sym_Class] = ACTIONS(1764), + [sym_SEL] = ACTIONS(1764), + [sym_IMP] = ACTIONS(1764), + [sym_BOOL] = ACTIONS(1764), + [sym_auto] = ACTIONS(1764), + [anon_sym_ATautoreleasepool] = ACTIONS(1766), + [anon_sym_ATsynchronized] = ACTIONS(1766), + [anon_sym_ATtry] = ACTIONS(1766), + [anon_sym_ATthrow] = ACTIONS(1766), + [anon_sym_ATselector] = ACTIONS(1766), + [anon_sym_ATencode] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1764), + [sym_YES] = ACTIONS(1764), + [sym_NO] = ACTIONS(1764), + [anon_sym___builtin_available] = ACTIONS(1764), + [anon_sym_ATavailable] = ACTIONS(1766), + [anon_sym_va_arg] = ACTIONS(1764), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [495] = { + [sym_identifier] = ACTIONS(1768), + [aux_sym_preproc_include_token1] = ACTIONS(1770), + [aux_sym_preproc_def_token1] = ACTIONS(1770), + [aux_sym_preproc_if_token1] = ACTIONS(1768), + [aux_sym_preproc_if_token2] = ACTIONS(1768), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1768), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1768), + [aux_sym_preproc_else_token1] = ACTIONS(1768), + [aux_sym_preproc_elif_token1] = ACTIONS(1768), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_typedef] = ACTIONS(1768), + [anon_sym_extern] = ACTIONS(1768), + [anon_sym___attribute] = ACTIONS(1768), + [anon_sym___attribute__] = ACTIONS(1768), + [anon_sym___declspec] = ACTIONS(1768), + [anon_sym___cdecl] = ACTIONS(1768), + [anon_sym___clrcall] = ACTIONS(1768), + [anon_sym___stdcall] = ACTIONS(1768), + [anon_sym___fastcall] = ACTIONS(1768), + [anon_sym___thiscall] = ACTIONS(1768), + [anon_sym___vectorcall] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1768), + [anon_sym_auto] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1768), + [anon_sym_inline] = ACTIONS(1768), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1768), + [anon_sym_const] = ACTIONS(1768), + [anon_sym_volatile] = ACTIONS(1768), + [anon_sym_restrict] = ACTIONS(1768), + [anon_sym__Atomic] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_out] = ACTIONS(1768), + [anon_sym_inout] = ACTIONS(1768), + [anon_sym_bycopy] = ACTIONS(1768), + [anon_sym_byref] = ACTIONS(1768), + [anon_sym_oneway] = ACTIONS(1768), + [anon_sym__Nullable] = ACTIONS(1768), + [anon_sym__Nonnull] = ACTIONS(1768), + [anon_sym__Nullable_result] = ACTIONS(1768), + [anon_sym__Null_unspecified] = ACTIONS(1768), + [anon_sym___autoreleasing] = ACTIONS(1768), + [anon_sym___nullable] = ACTIONS(1768), + [anon_sym___nonnull] = ACTIONS(1768), + [anon_sym___strong] = ACTIONS(1768), + [anon_sym___weak] = ACTIONS(1768), + [anon_sym___bridge] = ACTIONS(1768), + [anon_sym___bridge_transfer] = ACTIONS(1768), + [anon_sym___bridge_retained] = ACTIONS(1768), + [anon_sym___unsafe_unretained] = ACTIONS(1768), + [anon_sym___block] = ACTIONS(1768), + [anon_sym___kindof] = ACTIONS(1768), + [anon_sym___unused] = ACTIONS(1768), + [anon_sym__Complex] = ACTIONS(1768), + [anon_sym___complex] = ACTIONS(1768), + [anon_sym_IBOutlet] = ACTIONS(1768), + [anon_sym_IBInspectable] = ACTIONS(1768), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1768), + [anon_sym_signed] = ACTIONS(1768), + [anon_sym_unsigned] = ACTIONS(1768), + [anon_sym_long] = ACTIONS(1768), + [anon_sym_short] = ACTIONS(1768), + [sym_primitive_type] = ACTIONS(1768), + [anon_sym_enum] = ACTIONS(1768), + [anon_sym_struct] = ACTIONS(1768), + [anon_sym_union] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_switch] = ACTIONS(1768), + [anon_sym_case] = ACTIONS(1768), + [anon_sym_default] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_do] = ACTIONS(1768), + [anon_sym_for] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_goto] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_sizeof] = ACTIONS(1768), + [sym_number_literal] = ACTIONS(1770), + [anon_sym_L_SQUOTE] = ACTIONS(1770), + [anon_sym_u_SQUOTE] = ACTIONS(1770), + [anon_sym_U_SQUOTE] = ACTIONS(1770), + [anon_sym_u8_SQUOTE] = ACTIONS(1770), + [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_L_DQUOTE] = ACTIONS(1770), + [anon_sym_u_DQUOTE] = ACTIONS(1770), + [anon_sym_U_DQUOTE] = ACTIONS(1770), + [anon_sym_u8_DQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [sym_true] = ACTIONS(1768), + [sym_false] = ACTIONS(1768), + [sym_null] = ACTIONS(1768), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1770), + [anon_sym_ATimport] = ACTIONS(1770), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1768), + [anon_sym_ATcompatibility_alias] = ACTIONS(1770), + [anon_sym_ATprotocol] = ACTIONS(1770), + [anon_sym_ATclass] = ACTIONS(1770), + [anon_sym_ATinterface] = ACTIONS(1770), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1768), + [sym_method_attribute_specifier] = ACTIONS(1768), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1768), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1768), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1768), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1768), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1768), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1768), + [anon_sym_NS_AVAILABLE] = ACTIONS(1768), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1768), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1768), + [anon_sym_API_AVAILABLE] = ACTIONS(1768), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1768), + [anon_sym_API_DEPRECATED] = ACTIONS(1768), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1768), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1768), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1768), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1768), + [anon_sym___deprecated_msg] = ACTIONS(1768), + [anon_sym___deprecated_enum_msg] = ACTIONS(1768), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1768), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1768), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1768), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1768), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1768), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1768), + [anon_sym_ATimplementation] = ACTIONS(1770), + [anon_sym_NS_ENUM] = ACTIONS(1768), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1768), + [anon_sym_NS_OPTIONS] = ACTIONS(1768), + [anon_sym_typeof] = ACTIONS(1768), + [anon_sym___typeof] = ACTIONS(1768), + [anon_sym___typeof__] = ACTIONS(1768), + [sym_self] = ACTIONS(1768), + [sym_super] = ACTIONS(1768), + [sym_nil] = ACTIONS(1768), + [sym_id] = ACTIONS(1768), + [sym_instancetype] = ACTIONS(1768), + [sym_Class] = ACTIONS(1768), + [sym_SEL] = ACTIONS(1768), + [sym_IMP] = ACTIONS(1768), + [sym_BOOL] = ACTIONS(1768), + [sym_auto] = ACTIONS(1768), + [anon_sym_ATautoreleasepool] = ACTIONS(1770), + [anon_sym_ATsynchronized] = ACTIONS(1770), + [anon_sym_ATtry] = ACTIONS(1770), + [anon_sym_ATthrow] = ACTIONS(1770), + [anon_sym_ATselector] = ACTIONS(1770), + [anon_sym_ATencode] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(1768), + [sym_YES] = ACTIONS(1768), + [sym_NO] = ACTIONS(1768), + [anon_sym___builtin_available] = ACTIONS(1768), + [anon_sym_ATavailable] = ACTIONS(1770), + [anon_sym_va_arg] = ACTIONS(1768), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [496] = { + [sym_identifier] = ACTIONS(1772), + [aux_sym_preproc_include_token1] = ACTIONS(1774), + [aux_sym_preproc_def_token1] = ACTIONS(1774), + [aux_sym_preproc_if_token1] = ACTIONS(1772), + [aux_sym_preproc_if_token2] = ACTIONS(1772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1772), + [aux_sym_preproc_else_token1] = ACTIONS(1772), + [aux_sym_preproc_elif_token1] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_CARET] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_typedef] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym___attribute] = ACTIONS(1772), + [anon_sym___attribute__] = ACTIONS(1772), + [anon_sym___declspec] = ACTIONS(1772), + [anon_sym___cdecl] = ACTIONS(1772), + [anon_sym___clrcall] = ACTIONS(1772), + [anon_sym___stdcall] = ACTIONS(1772), + [anon_sym___fastcall] = ACTIONS(1772), + [anon_sym___thiscall] = ACTIONS(1772), + [anon_sym___vectorcall] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1772), + [anon_sym_auto] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_inline] = ACTIONS(1772), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_volatile] = ACTIONS(1772), + [anon_sym_restrict] = ACTIONS(1772), + [anon_sym__Atomic] = ACTIONS(1772), + [anon_sym_in] = ACTIONS(1772), + [anon_sym_out] = ACTIONS(1772), + [anon_sym_inout] = ACTIONS(1772), + [anon_sym_bycopy] = ACTIONS(1772), + [anon_sym_byref] = ACTIONS(1772), + [anon_sym_oneway] = ACTIONS(1772), + [anon_sym__Nullable] = ACTIONS(1772), + [anon_sym__Nonnull] = ACTIONS(1772), + [anon_sym__Nullable_result] = ACTIONS(1772), + [anon_sym__Null_unspecified] = ACTIONS(1772), + [anon_sym___autoreleasing] = ACTIONS(1772), + [anon_sym___nullable] = ACTIONS(1772), + [anon_sym___nonnull] = ACTIONS(1772), + [anon_sym___strong] = ACTIONS(1772), + [anon_sym___weak] = ACTIONS(1772), + [anon_sym___bridge] = ACTIONS(1772), + [anon_sym___bridge_transfer] = ACTIONS(1772), + [anon_sym___bridge_retained] = ACTIONS(1772), + [anon_sym___unsafe_unretained] = ACTIONS(1772), + [anon_sym___block] = ACTIONS(1772), + [anon_sym___kindof] = ACTIONS(1772), + [anon_sym___unused] = ACTIONS(1772), + [anon_sym__Complex] = ACTIONS(1772), + [anon_sym___complex] = ACTIONS(1772), + [anon_sym_IBOutlet] = ACTIONS(1772), + [anon_sym_IBInspectable] = ACTIONS(1772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1772), + [anon_sym_signed] = ACTIONS(1772), + [anon_sym_unsigned] = ACTIONS(1772), + [anon_sym_long] = ACTIONS(1772), + [anon_sym_short] = ACTIONS(1772), + [sym_primitive_type] = ACTIONS(1772), + [anon_sym_enum] = ACTIONS(1772), + [anon_sym_struct] = ACTIONS(1772), + [anon_sym_union] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1772), + [anon_sym_default] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_goto] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_PLUS_PLUS] = ACTIONS(1774), + [anon_sym_sizeof] = ACTIONS(1772), + [sym_number_literal] = ACTIONS(1774), + [anon_sym_L_SQUOTE] = ACTIONS(1774), + [anon_sym_u_SQUOTE] = ACTIONS(1774), + [anon_sym_U_SQUOTE] = ACTIONS(1774), + [anon_sym_u8_SQUOTE] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_L_DQUOTE] = ACTIONS(1774), + [anon_sym_u_DQUOTE] = ACTIONS(1774), + [anon_sym_U_DQUOTE] = ACTIONS(1774), + [anon_sym_u8_DQUOTE] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym_true] = ACTIONS(1772), + [sym_false] = ACTIONS(1772), + [sym_null] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1774), + [anon_sym_ATimport] = ACTIONS(1774), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1772), + [anon_sym_ATcompatibility_alias] = ACTIONS(1774), + [anon_sym_ATprotocol] = ACTIONS(1774), + [anon_sym_ATclass] = ACTIONS(1774), + [anon_sym_ATinterface] = ACTIONS(1774), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1772), + [sym_method_attribute_specifier] = ACTIONS(1772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1772), + [anon_sym_NS_AVAILABLE] = ACTIONS(1772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_API_AVAILABLE] = ACTIONS(1772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1772), + [anon_sym_API_DEPRECATED] = ACTIONS(1772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1772), + [anon_sym___deprecated_msg] = ACTIONS(1772), + [anon_sym___deprecated_enum_msg] = ACTIONS(1772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1772), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1772), + [anon_sym_ATimplementation] = ACTIONS(1774), + [anon_sym_NS_ENUM] = ACTIONS(1772), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1772), + [anon_sym_NS_OPTIONS] = ACTIONS(1772), + [anon_sym_typeof] = ACTIONS(1772), + [anon_sym___typeof] = ACTIONS(1772), + [anon_sym___typeof__] = ACTIONS(1772), + [sym_self] = ACTIONS(1772), + [sym_super] = ACTIONS(1772), + [sym_nil] = ACTIONS(1772), + [sym_id] = ACTIONS(1772), + [sym_instancetype] = ACTIONS(1772), + [sym_Class] = ACTIONS(1772), + [sym_SEL] = ACTIONS(1772), + [sym_IMP] = ACTIONS(1772), + [sym_BOOL] = ACTIONS(1772), + [sym_auto] = ACTIONS(1772), + [anon_sym_ATautoreleasepool] = ACTIONS(1774), + [anon_sym_ATsynchronized] = ACTIONS(1774), + [anon_sym_ATtry] = ACTIONS(1774), + [anon_sym_ATthrow] = ACTIONS(1774), + [anon_sym_ATselector] = ACTIONS(1774), + [anon_sym_ATencode] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1772), + [sym_YES] = ACTIONS(1772), + [sym_NO] = ACTIONS(1772), + [anon_sym___builtin_available] = ACTIONS(1772), + [anon_sym_ATavailable] = ACTIONS(1774), + [anon_sym_va_arg] = ACTIONS(1772), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [497] = { + [sym_identifier] = ACTIONS(1772), + [aux_sym_preproc_include_token1] = ACTIONS(1774), + [aux_sym_preproc_def_token1] = ACTIONS(1774), + [aux_sym_preproc_if_token1] = ACTIONS(1772), + [aux_sym_preproc_if_token2] = ACTIONS(1772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1772), + [aux_sym_preproc_else_token1] = ACTIONS(1772), + [aux_sym_preproc_elif_token1] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_CARET] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_typedef] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym___attribute] = ACTIONS(1772), + [anon_sym___attribute__] = ACTIONS(1772), + [anon_sym___declspec] = ACTIONS(1772), + [anon_sym___cdecl] = ACTIONS(1772), + [anon_sym___clrcall] = ACTIONS(1772), + [anon_sym___stdcall] = ACTIONS(1772), + [anon_sym___fastcall] = ACTIONS(1772), + [anon_sym___thiscall] = ACTIONS(1772), + [anon_sym___vectorcall] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1772), + [anon_sym_auto] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_inline] = ACTIONS(1772), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_volatile] = ACTIONS(1772), + [anon_sym_restrict] = ACTIONS(1772), + [anon_sym__Atomic] = ACTIONS(1772), + [anon_sym_in] = ACTIONS(1772), + [anon_sym_out] = ACTIONS(1772), + [anon_sym_inout] = ACTIONS(1772), + [anon_sym_bycopy] = ACTIONS(1772), + [anon_sym_byref] = ACTIONS(1772), + [anon_sym_oneway] = ACTIONS(1772), + [anon_sym__Nullable] = ACTIONS(1772), + [anon_sym__Nonnull] = ACTIONS(1772), + [anon_sym__Nullable_result] = ACTIONS(1772), + [anon_sym__Null_unspecified] = ACTIONS(1772), + [anon_sym___autoreleasing] = ACTIONS(1772), + [anon_sym___nullable] = ACTIONS(1772), + [anon_sym___nonnull] = ACTIONS(1772), + [anon_sym___strong] = ACTIONS(1772), + [anon_sym___weak] = ACTIONS(1772), + [anon_sym___bridge] = ACTIONS(1772), + [anon_sym___bridge_transfer] = ACTIONS(1772), + [anon_sym___bridge_retained] = ACTIONS(1772), + [anon_sym___unsafe_unretained] = ACTIONS(1772), + [anon_sym___block] = ACTIONS(1772), + [anon_sym___kindof] = ACTIONS(1772), + [anon_sym___unused] = ACTIONS(1772), + [anon_sym__Complex] = ACTIONS(1772), + [anon_sym___complex] = ACTIONS(1772), + [anon_sym_IBOutlet] = ACTIONS(1772), + [anon_sym_IBInspectable] = ACTIONS(1772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1772), + [anon_sym_signed] = ACTIONS(1772), + [anon_sym_unsigned] = ACTIONS(1772), + [anon_sym_long] = ACTIONS(1772), + [anon_sym_short] = ACTIONS(1772), + [sym_primitive_type] = ACTIONS(1772), + [anon_sym_enum] = ACTIONS(1772), + [anon_sym_struct] = ACTIONS(1772), + [anon_sym_union] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1772), + [anon_sym_default] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_goto] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_PLUS_PLUS] = ACTIONS(1774), + [anon_sym_sizeof] = ACTIONS(1772), + [sym_number_literal] = ACTIONS(1774), + [anon_sym_L_SQUOTE] = ACTIONS(1774), + [anon_sym_u_SQUOTE] = ACTIONS(1774), + [anon_sym_U_SQUOTE] = ACTIONS(1774), + [anon_sym_u8_SQUOTE] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_L_DQUOTE] = ACTIONS(1774), + [anon_sym_u_DQUOTE] = ACTIONS(1774), + [anon_sym_U_DQUOTE] = ACTIONS(1774), + [anon_sym_u8_DQUOTE] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym_true] = ACTIONS(1772), + [sym_false] = ACTIONS(1772), + [sym_null] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1774), + [anon_sym_ATimport] = ACTIONS(1774), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1772), + [anon_sym_ATcompatibility_alias] = ACTIONS(1774), + [anon_sym_ATprotocol] = ACTIONS(1774), + [anon_sym_ATclass] = ACTIONS(1774), + [anon_sym_ATinterface] = ACTIONS(1774), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1772), + [sym_method_attribute_specifier] = ACTIONS(1772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1772), + [anon_sym_NS_AVAILABLE] = ACTIONS(1772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_API_AVAILABLE] = ACTIONS(1772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1772), + [anon_sym_API_DEPRECATED] = ACTIONS(1772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1772), + [anon_sym___deprecated_msg] = ACTIONS(1772), + [anon_sym___deprecated_enum_msg] = ACTIONS(1772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1772), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1772), + [anon_sym_ATimplementation] = ACTIONS(1774), + [anon_sym_NS_ENUM] = ACTIONS(1772), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1772), + [anon_sym_NS_OPTIONS] = ACTIONS(1772), + [anon_sym_typeof] = ACTIONS(1772), + [anon_sym___typeof] = ACTIONS(1772), + [anon_sym___typeof__] = ACTIONS(1772), + [sym_self] = ACTIONS(1772), + [sym_super] = ACTIONS(1772), + [sym_nil] = ACTIONS(1772), + [sym_id] = ACTIONS(1772), + [sym_instancetype] = ACTIONS(1772), + [sym_Class] = ACTIONS(1772), + [sym_SEL] = ACTIONS(1772), + [sym_IMP] = ACTIONS(1772), + [sym_BOOL] = ACTIONS(1772), + [sym_auto] = ACTIONS(1772), + [anon_sym_ATautoreleasepool] = ACTIONS(1774), + [anon_sym_ATsynchronized] = ACTIONS(1774), + [anon_sym_ATtry] = ACTIONS(1774), + [anon_sym_ATthrow] = ACTIONS(1774), + [anon_sym_ATselector] = ACTIONS(1774), + [anon_sym_ATencode] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1772), + [sym_YES] = ACTIONS(1772), + [sym_NO] = ACTIONS(1772), + [anon_sym___builtin_available] = ACTIONS(1772), + [anon_sym_ATavailable] = ACTIONS(1774), + [anon_sym_va_arg] = ACTIONS(1772), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [498] = { + [sym_identifier] = ACTIONS(1776), + [aux_sym_preproc_include_token1] = ACTIONS(1778), + [aux_sym_preproc_def_token1] = ACTIONS(1778), + [aux_sym_preproc_if_token1] = ACTIONS(1776), + [aux_sym_preproc_if_token2] = ACTIONS(1776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1776), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1776), + [aux_sym_preproc_else_token1] = ACTIONS(1776), + [aux_sym_preproc_elif_token1] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1776), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_typedef] = ACTIONS(1776), + [anon_sym_extern] = ACTIONS(1776), + [anon_sym___attribute] = ACTIONS(1776), + [anon_sym___attribute__] = ACTIONS(1776), + [anon_sym___declspec] = ACTIONS(1776), + [anon_sym___cdecl] = ACTIONS(1776), + [anon_sym___clrcall] = ACTIONS(1776), + [anon_sym___stdcall] = ACTIONS(1776), + [anon_sym___fastcall] = ACTIONS(1776), + [anon_sym___thiscall] = ACTIONS(1776), + [anon_sym___vectorcall] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_static] = ACTIONS(1776), + [anon_sym_auto] = ACTIONS(1776), + [anon_sym_register] = ACTIONS(1776), + [anon_sym_inline] = ACTIONS(1776), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1776), + [anon_sym_volatile] = ACTIONS(1776), + [anon_sym_restrict] = ACTIONS(1776), + [anon_sym__Atomic] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1776), + [anon_sym_out] = ACTIONS(1776), + [anon_sym_inout] = ACTIONS(1776), + [anon_sym_bycopy] = ACTIONS(1776), + [anon_sym_byref] = ACTIONS(1776), + [anon_sym_oneway] = ACTIONS(1776), + [anon_sym__Nullable] = ACTIONS(1776), + [anon_sym__Nonnull] = ACTIONS(1776), + [anon_sym__Nullable_result] = ACTIONS(1776), + [anon_sym__Null_unspecified] = ACTIONS(1776), + [anon_sym___autoreleasing] = ACTIONS(1776), + [anon_sym___nullable] = ACTIONS(1776), + [anon_sym___nonnull] = ACTIONS(1776), + [anon_sym___strong] = ACTIONS(1776), + [anon_sym___weak] = ACTIONS(1776), + [anon_sym___bridge] = ACTIONS(1776), + [anon_sym___bridge_transfer] = ACTIONS(1776), + [anon_sym___bridge_retained] = ACTIONS(1776), + [anon_sym___unsafe_unretained] = ACTIONS(1776), + [anon_sym___block] = ACTIONS(1776), + [anon_sym___kindof] = ACTIONS(1776), + [anon_sym___unused] = ACTIONS(1776), + [anon_sym__Complex] = ACTIONS(1776), + [anon_sym___complex] = ACTIONS(1776), + [anon_sym_IBOutlet] = ACTIONS(1776), + [anon_sym_IBInspectable] = ACTIONS(1776), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1776), + [anon_sym_signed] = ACTIONS(1776), + [anon_sym_unsigned] = ACTIONS(1776), + [anon_sym_long] = ACTIONS(1776), + [anon_sym_short] = ACTIONS(1776), + [sym_primitive_type] = ACTIONS(1776), + [anon_sym_enum] = ACTIONS(1776), + [anon_sym_struct] = ACTIONS(1776), + [anon_sym_union] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1776), + [anon_sym_switch] = ACTIONS(1776), + [anon_sym_case] = ACTIONS(1776), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1776), + [anon_sym_do] = ACTIONS(1776), + [anon_sym_for] = ACTIONS(1776), + [anon_sym_return] = ACTIONS(1776), + [anon_sym_break] = ACTIONS(1776), + [anon_sym_continue] = ACTIONS(1776), + [anon_sym_goto] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_sizeof] = ACTIONS(1776), + [sym_number_literal] = ACTIONS(1778), + [anon_sym_L_SQUOTE] = ACTIONS(1778), + [anon_sym_u_SQUOTE] = ACTIONS(1778), + [anon_sym_U_SQUOTE] = ACTIONS(1778), + [anon_sym_u8_SQUOTE] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(1778), + [anon_sym_L_DQUOTE] = ACTIONS(1778), + [anon_sym_u_DQUOTE] = ACTIONS(1778), + [anon_sym_U_DQUOTE] = ACTIONS(1778), + [anon_sym_u8_DQUOTE] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(1778), + [sym_true] = ACTIONS(1776), + [sym_false] = ACTIONS(1776), + [sym_null] = ACTIONS(1776), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1778), + [anon_sym_ATimport] = ACTIONS(1778), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1776), + [anon_sym_ATcompatibility_alias] = ACTIONS(1778), + [anon_sym_ATprotocol] = ACTIONS(1778), + [anon_sym_ATclass] = ACTIONS(1778), + [anon_sym_ATinterface] = ACTIONS(1778), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1776), + [sym_method_attribute_specifier] = ACTIONS(1776), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1776), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1776), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1776), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1776), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1776), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1776), + [anon_sym_NS_AVAILABLE] = ACTIONS(1776), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1776), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1776), + [anon_sym_API_AVAILABLE] = ACTIONS(1776), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1776), + [anon_sym_API_DEPRECATED] = ACTIONS(1776), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1776), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1776), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1776), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1776), + [anon_sym___deprecated_msg] = ACTIONS(1776), + [anon_sym___deprecated_enum_msg] = ACTIONS(1776), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1776), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1776), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1776), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1776), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1776), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1776), + [anon_sym_ATimplementation] = ACTIONS(1778), + [anon_sym_NS_ENUM] = ACTIONS(1776), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1776), + [anon_sym_NS_OPTIONS] = ACTIONS(1776), + [anon_sym_typeof] = ACTIONS(1776), + [anon_sym___typeof] = ACTIONS(1776), + [anon_sym___typeof__] = ACTIONS(1776), + [sym_self] = ACTIONS(1776), + [sym_super] = ACTIONS(1776), + [sym_nil] = ACTIONS(1776), + [sym_id] = ACTIONS(1776), + [sym_instancetype] = ACTIONS(1776), + [sym_Class] = ACTIONS(1776), + [sym_SEL] = ACTIONS(1776), + [sym_IMP] = ACTIONS(1776), + [sym_BOOL] = ACTIONS(1776), + [sym_auto] = ACTIONS(1776), + [anon_sym_ATautoreleasepool] = ACTIONS(1778), + [anon_sym_ATsynchronized] = ACTIONS(1778), + [anon_sym_ATtry] = ACTIONS(1778), + [anon_sym_ATthrow] = ACTIONS(1778), + [anon_sym_ATselector] = ACTIONS(1778), + [anon_sym_ATencode] = ACTIONS(1778), + [anon_sym_AT] = ACTIONS(1776), + [sym_YES] = ACTIONS(1776), + [sym_NO] = ACTIONS(1776), + [anon_sym___builtin_available] = ACTIONS(1776), + [anon_sym_ATavailable] = ACTIONS(1778), + [anon_sym_va_arg] = ACTIONS(1776), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [499] = { + [sym_identifier] = ACTIONS(1780), + [aux_sym_preproc_include_token1] = ACTIONS(1782), + [aux_sym_preproc_def_token1] = ACTIONS(1782), + [aux_sym_preproc_if_token1] = ACTIONS(1780), + [aux_sym_preproc_if_token2] = ACTIONS(1780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1780), + [aux_sym_preproc_else_token1] = ACTIONS(1780), + [aux_sym_preproc_elif_token1] = ACTIONS(1780), + [anon_sym_LPAREN2] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_CARET] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_typedef] = ACTIONS(1780), + [anon_sym_extern] = ACTIONS(1780), + [anon_sym___attribute] = ACTIONS(1780), + [anon_sym___attribute__] = ACTIONS(1780), + [anon_sym___declspec] = ACTIONS(1780), + [anon_sym___cdecl] = ACTIONS(1780), + [anon_sym___clrcall] = ACTIONS(1780), + [anon_sym___stdcall] = ACTIONS(1780), + [anon_sym___fastcall] = ACTIONS(1780), + [anon_sym___thiscall] = ACTIONS(1780), + [anon_sym___vectorcall] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1780), + [anon_sym_auto] = ACTIONS(1780), + [anon_sym_register] = ACTIONS(1780), + [anon_sym_inline] = ACTIONS(1780), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1780), + [anon_sym_const] = ACTIONS(1780), + [anon_sym_volatile] = ACTIONS(1780), + [anon_sym_restrict] = ACTIONS(1780), + [anon_sym__Atomic] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_out] = ACTIONS(1780), + [anon_sym_inout] = ACTIONS(1780), + [anon_sym_bycopy] = ACTIONS(1780), + [anon_sym_byref] = ACTIONS(1780), + [anon_sym_oneway] = ACTIONS(1780), + [anon_sym__Nullable] = ACTIONS(1780), + [anon_sym__Nonnull] = ACTIONS(1780), + [anon_sym__Nullable_result] = ACTIONS(1780), + [anon_sym__Null_unspecified] = ACTIONS(1780), + [anon_sym___autoreleasing] = ACTIONS(1780), + [anon_sym___nullable] = ACTIONS(1780), + [anon_sym___nonnull] = ACTIONS(1780), + [anon_sym___strong] = ACTIONS(1780), + [anon_sym___weak] = ACTIONS(1780), + [anon_sym___bridge] = ACTIONS(1780), + [anon_sym___bridge_transfer] = ACTIONS(1780), + [anon_sym___bridge_retained] = ACTIONS(1780), + [anon_sym___unsafe_unretained] = ACTIONS(1780), + [anon_sym___block] = ACTIONS(1780), + [anon_sym___kindof] = ACTIONS(1780), + [anon_sym___unused] = ACTIONS(1780), + [anon_sym__Complex] = ACTIONS(1780), + [anon_sym___complex] = ACTIONS(1780), + [anon_sym_IBOutlet] = ACTIONS(1780), + [anon_sym_IBInspectable] = ACTIONS(1780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1780), + [anon_sym_signed] = ACTIONS(1780), + [anon_sym_unsigned] = ACTIONS(1780), + [anon_sym_long] = ACTIONS(1780), + [anon_sym_short] = ACTIONS(1780), + [sym_primitive_type] = ACTIONS(1780), + [anon_sym_enum] = ACTIONS(1780), + [anon_sym_struct] = ACTIONS(1780), + [anon_sym_union] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_case] = ACTIONS(1780), + [anon_sym_default] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_goto] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1780), + [sym_number_literal] = ACTIONS(1782), + [anon_sym_L_SQUOTE] = ACTIONS(1782), + [anon_sym_u_SQUOTE] = ACTIONS(1782), + [anon_sym_U_SQUOTE] = ACTIONS(1782), + [anon_sym_u8_SQUOTE] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [anon_sym_L_DQUOTE] = ACTIONS(1782), + [anon_sym_u_DQUOTE] = ACTIONS(1782), + [anon_sym_U_DQUOTE] = ACTIONS(1782), + [anon_sym_u8_DQUOTE] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [sym_true] = ACTIONS(1780), + [sym_false] = ACTIONS(1780), + [sym_null] = ACTIONS(1780), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1782), + [anon_sym_ATimport] = ACTIONS(1782), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1780), + [anon_sym_ATcompatibility_alias] = ACTIONS(1782), + [anon_sym_ATprotocol] = ACTIONS(1782), + [anon_sym_ATclass] = ACTIONS(1782), + [anon_sym_ATinterface] = ACTIONS(1782), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1780), + [sym_method_attribute_specifier] = ACTIONS(1780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1780), + [anon_sym_NS_AVAILABLE] = ACTIONS(1780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_API_AVAILABLE] = ACTIONS(1780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1780), + [anon_sym_API_DEPRECATED] = ACTIONS(1780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1780), + [anon_sym___deprecated_msg] = ACTIONS(1780), + [anon_sym___deprecated_enum_msg] = ACTIONS(1780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1780), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1780), + [anon_sym_ATimplementation] = ACTIONS(1782), + [anon_sym_NS_ENUM] = ACTIONS(1780), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1780), + [anon_sym_NS_OPTIONS] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(1780), + [anon_sym___typeof] = ACTIONS(1780), + [anon_sym___typeof__] = ACTIONS(1780), + [sym_self] = ACTIONS(1780), + [sym_super] = ACTIONS(1780), + [sym_nil] = ACTIONS(1780), + [sym_id] = ACTIONS(1780), + [sym_instancetype] = ACTIONS(1780), + [sym_Class] = ACTIONS(1780), + [sym_SEL] = ACTIONS(1780), + [sym_IMP] = ACTIONS(1780), + [sym_BOOL] = ACTIONS(1780), + [sym_auto] = ACTIONS(1780), + [anon_sym_ATautoreleasepool] = ACTIONS(1782), + [anon_sym_ATsynchronized] = ACTIONS(1782), + [anon_sym_ATtry] = ACTIONS(1782), + [anon_sym_ATthrow] = ACTIONS(1782), + [anon_sym_ATselector] = ACTIONS(1782), + [anon_sym_ATencode] = ACTIONS(1782), + [anon_sym_AT] = ACTIONS(1780), + [sym_YES] = ACTIONS(1780), + [sym_NO] = ACTIONS(1780), + [anon_sym___builtin_available] = ACTIONS(1780), + [anon_sym_ATavailable] = ACTIONS(1782), + [anon_sym_va_arg] = ACTIONS(1780), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [500] = { + [sym_identifier] = ACTIONS(1780), + [aux_sym_preproc_include_token1] = ACTIONS(1782), + [aux_sym_preproc_def_token1] = ACTIONS(1782), + [aux_sym_preproc_if_token1] = ACTIONS(1780), + [aux_sym_preproc_if_token2] = ACTIONS(1780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1780), + [aux_sym_preproc_else_token1] = ACTIONS(1780), + [aux_sym_preproc_elif_token1] = ACTIONS(1780), + [anon_sym_LPAREN2] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_CARET] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_typedef] = ACTIONS(1780), + [anon_sym_extern] = ACTIONS(1780), + [anon_sym___attribute] = ACTIONS(1780), + [anon_sym___attribute__] = ACTIONS(1780), + [anon_sym___declspec] = ACTIONS(1780), + [anon_sym___cdecl] = ACTIONS(1780), + [anon_sym___clrcall] = ACTIONS(1780), + [anon_sym___stdcall] = ACTIONS(1780), + [anon_sym___fastcall] = ACTIONS(1780), + [anon_sym___thiscall] = ACTIONS(1780), + [anon_sym___vectorcall] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1780), + [anon_sym_auto] = ACTIONS(1780), + [anon_sym_register] = ACTIONS(1780), + [anon_sym_inline] = ACTIONS(1780), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1780), + [anon_sym_const] = ACTIONS(1780), + [anon_sym_volatile] = ACTIONS(1780), + [anon_sym_restrict] = ACTIONS(1780), + [anon_sym__Atomic] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_out] = ACTIONS(1780), + [anon_sym_inout] = ACTIONS(1780), + [anon_sym_bycopy] = ACTIONS(1780), + [anon_sym_byref] = ACTIONS(1780), + [anon_sym_oneway] = ACTIONS(1780), + [anon_sym__Nullable] = ACTIONS(1780), + [anon_sym__Nonnull] = ACTIONS(1780), + [anon_sym__Nullable_result] = ACTIONS(1780), + [anon_sym__Null_unspecified] = ACTIONS(1780), + [anon_sym___autoreleasing] = ACTIONS(1780), + [anon_sym___nullable] = ACTIONS(1780), + [anon_sym___nonnull] = ACTIONS(1780), + [anon_sym___strong] = ACTIONS(1780), + [anon_sym___weak] = ACTIONS(1780), + [anon_sym___bridge] = ACTIONS(1780), + [anon_sym___bridge_transfer] = ACTIONS(1780), + [anon_sym___bridge_retained] = ACTIONS(1780), + [anon_sym___unsafe_unretained] = ACTIONS(1780), + [anon_sym___block] = ACTIONS(1780), + [anon_sym___kindof] = ACTIONS(1780), + [anon_sym___unused] = ACTIONS(1780), + [anon_sym__Complex] = ACTIONS(1780), + [anon_sym___complex] = ACTIONS(1780), + [anon_sym_IBOutlet] = ACTIONS(1780), + [anon_sym_IBInspectable] = ACTIONS(1780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1780), + [anon_sym_signed] = ACTIONS(1780), + [anon_sym_unsigned] = ACTIONS(1780), + [anon_sym_long] = ACTIONS(1780), + [anon_sym_short] = ACTIONS(1780), + [sym_primitive_type] = ACTIONS(1780), + [anon_sym_enum] = ACTIONS(1780), + [anon_sym_struct] = ACTIONS(1780), + [anon_sym_union] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_case] = ACTIONS(1780), + [anon_sym_default] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_goto] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1780), + [sym_number_literal] = ACTIONS(1782), + [anon_sym_L_SQUOTE] = ACTIONS(1782), + [anon_sym_u_SQUOTE] = ACTIONS(1782), + [anon_sym_U_SQUOTE] = ACTIONS(1782), + [anon_sym_u8_SQUOTE] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [anon_sym_L_DQUOTE] = ACTIONS(1782), + [anon_sym_u_DQUOTE] = ACTIONS(1782), + [anon_sym_U_DQUOTE] = ACTIONS(1782), + [anon_sym_u8_DQUOTE] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [sym_true] = ACTIONS(1780), + [sym_false] = ACTIONS(1780), + [sym_null] = ACTIONS(1780), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1782), + [anon_sym_ATimport] = ACTIONS(1782), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1780), + [anon_sym_ATcompatibility_alias] = ACTIONS(1782), + [anon_sym_ATprotocol] = ACTIONS(1782), + [anon_sym_ATclass] = ACTIONS(1782), + [anon_sym_ATinterface] = ACTIONS(1782), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1780), + [sym_method_attribute_specifier] = ACTIONS(1780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1780), + [anon_sym_NS_AVAILABLE] = ACTIONS(1780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_API_AVAILABLE] = ACTIONS(1780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1780), + [anon_sym_API_DEPRECATED] = ACTIONS(1780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1780), + [anon_sym___deprecated_msg] = ACTIONS(1780), + [anon_sym___deprecated_enum_msg] = ACTIONS(1780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1780), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1780), + [anon_sym_ATimplementation] = ACTIONS(1782), + [anon_sym_NS_ENUM] = ACTIONS(1780), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1780), + [anon_sym_NS_OPTIONS] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(1780), + [anon_sym___typeof] = ACTIONS(1780), + [anon_sym___typeof__] = ACTIONS(1780), + [sym_self] = ACTIONS(1780), + [sym_super] = ACTIONS(1780), + [sym_nil] = ACTIONS(1780), + [sym_id] = ACTIONS(1780), + [sym_instancetype] = ACTIONS(1780), + [sym_Class] = ACTIONS(1780), + [sym_SEL] = ACTIONS(1780), + [sym_IMP] = ACTIONS(1780), + [sym_BOOL] = ACTIONS(1780), + [sym_auto] = ACTIONS(1780), + [anon_sym_ATautoreleasepool] = ACTIONS(1782), + [anon_sym_ATsynchronized] = ACTIONS(1782), + [anon_sym_ATtry] = ACTIONS(1782), + [anon_sym_ATthrow] = ACTIONS(1782), + [anon_sym_ATselector] = ACTIONS(1782), + [anon_sym_ATencode] = ACTIONS(1782), + [anon_sym_AT] = ACTIONS(1780), + [sym_YES] = ACTIONS(1780), + [sym_NO] = ACTIONS(1780), + [anon_sym___builtin_available] = ACTIONS(1780), + [anon_sym_ATavailable] = ACTIONS(1782), + [anon_sym_va_arg] = ACTIONS(1780), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [501] = { + [sym_identifier] = ACTIONS(1784), + [aux_sym_preproc_include_token1] = ACTIONS(1786), + [aux_sym_preproc_def_token1] = ACTIONS(1786), + [aux_sym_preproc_if_token1] = ACTIONS(1784), + [aux_sym_preproc_if_token2] = ACTIONS(1784), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1784), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1784), + [aux_sym_preproc_else_token1] = ACTIONS(1784), + [aux_sym_preproc_elif_token1] = ACTIONS(1784), + [anon_sym_LPAREN2] = ACTIONS(1786), + [anon_sym_BANG] = ACTIONS(1786), + [anon_sym_TILDE] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1786), + [anon_sym_CARET] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_typedef] = ACTIONS(1784), + [anon_sym_extern] = ACTIONS(1784), + [anon_sym___attribute] = ACTIONS(1784), + [anon_sym___attribute__] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(1784), + [anon_sym___cdecl] = ACTIONS(1784), + [anon_sym___clrcall] = ACTIONS(1784), + [anon_sym___stdcall] = ACTIONS(1784), + [anon_sym___fastcall] = ACTIONS(1784), + [anon_sym___thiscall] = ACTIONS(1784), + [anon_sym___vectorcall] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_static] = ACTIONS(1784), + [anon_sym_auto] = ACTIONS(1784), + [anon_sym_register] = ACTIONS(1784), + [anon_sym_inline] = ACTIONS(1784), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1784), + [anon_sym_const] = ACTIONS(1784), + [anon_sym_volatile] = ACTIONS(1784), + [anon_sym_restrict] = ACTIONS(1784), + [anon_sym__Atomic] = ACTIONS(1784), + [anon_sym_in] = ACTIONS(1784), + [anon_sym_out] = ACTIONS(1784), + [anon_sym_inout] = ACTIONS(1784), + [anon_sym_bycopy] = ACTIONS(1784), + [anon_sym_byref] = ACTIONS(1784), + [anon_sym_oneway] = ACTIONS(1784), + [anon_sym__Nullable] = ACTIONS(1784), + [anon_sym__Nonnull] = ACTIONS(1784), + [anon_sym__Nullable_result] = ACTIONS(1784), + [anon_sym__Null_unspecified] = ACTIONS(1784), + [anon_sym___autoreleasing] = ACTIONS(1784), + [anon_sym___nullable] = ACTIONS(1784), + [anon_sym___nonnull] = ACTIONS(1784), + [anon_sym___strong] = ACTIONS(1784), + [anon_sym___weak] = ACTIONS(1784), + [anon_sym___bridge] = ACTIONS(1784), + [anon_sym___bridge_transfer] = ACTIONS(1784), + [anon_sym___bridge_retained] = ACTIONS(1784), + [anon_sym___unsafe_unretained] = ACTIONS(1784), + [anon_sym___block] = ACTIONS(1784), + [anon_sym___kindof] = ACTIONS(1784), + [anon_sym___unused] = ACTIONS(1784), + [anon_sym__Complex] = ACTIONS(1784), + [anon_sym___complex] = ACTIONS(1784), + [anon_sym_IBOutlet] = ACTIONS(1784), + [anon_sym_IBInspectable] = ACTIONS(1784), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1784), + [anon_sym_signed] = ACTIONS(1784), + [anon_sym_unsigned] = ACTIONS(1784), + [anon_sym_long] = ACTIONS(1784), + [anon_sym_short] = ACTIONS(1784), + [sym_primitive_type] = ACTIONS(1784), + [anon_sym_enum] = ACTIONS(1784), + [anon_sym_struct] = ACTIONS(1784), + [anon_sym_union] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_switch] = ACTIONS(1784), + [anon_sym_case] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_goto] = ACTIONS(1784), + [anon_sym_DASH_DASH] = ACTIONS(1786), + [anon_sym_PLUS_PLUS] = ACTIONS(1786), + [anon_sym_sizeof] = ACTIONS(1784), + [sym_number_literal] = ACTIONS(1786), + [anon_sym_L_SQUOTE] = ACTIONS(1786), + [anon_sym_u_SQUOTE] = ACTIONS(1786), + [anon_sym_U_SQUOTE] = ACTIONS(1786), + [anon_sym_u8_SQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1786), + [anon_sym_L_DQUOTE] = ACTIONS(1786), + [anon_sym_u_DQUOTE] = ACTIONS(1786), + [anon_sym_U_DQUOTE] = ACTIONS(1786), + [anon_sym_u8_DQUOTE] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym_true] = ACTIONS(1784), + [sym_false] = ACTIONS(1784), + [sym_null] = ACTIONS(1784), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1786), + [anon_sym_ATimport] = ACTIONS(1786), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1784), + [anon_sym_ATcompatibility_alias] = ACTIONS(1786), + [anon_sym_ATprotocol] = ACTIONS(1786), + [anon_sym_ATclass] = ACTIONS(1786), + [anon_sym_ATinterface] = ACTIONS(1786), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1784), + [sym_method_attribute_specifier] = ACTIONS(1784), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1784), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1784), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1784), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1784), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1784), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1784), + [anon_sym_NS_AVAILABLE] = ACTIONS(1784), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1784), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1784), + [anon_sym_API_AVAILABLE] = ACTIONS(1784), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1784), + [anon_sym_API_DEPRECATED] = ACTIONS(1784), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1784), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1784), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1784), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1784), + [anon_sym___deprecated_msg] = ACTIONS(1784), + [anon_sym___deprecated_enum_msg] = ACTIONS(1784), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1784), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1784), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1784), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1784), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1784), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1784), + [anon_sym_ATimplementation] = ACTIONS(1786), + [anon_sym_NS_ENUM] = ACTIONS(1784), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1784), + [anon_sym_NS_OPTIONS] = ACTIONS(1784), + [anon_sym_typeof] = ACTIONS(1784), + [anon_sym___typeof] = ACTIONS(1784), + [anon_sym___typeof__] = ACTIONS(1784), + [sym_self] = ACTIONS(1784), + [sym_super] = ACTIONS(1784), + [sym_nil] = ACTIONS(1784), + [sym_id] = ACTIONS(1784), + [sym_instancetype] = ACTIONS(1784), + [sym_Class] = ACTIONS(1784), + [sym_SEL] = ACTIONS(1784), + [sym_IMP] = ACTIONS(1784), + [sym_BOOL] = ACTIONS(1784), + [sym_auto] = ACTIONS(1784), + [anon_sym_ATautoreleasepool] = ACTIONS(1786), + [anon_sym_ATsynchronized] = ACTIONS(1786), + [anon_sym_ATtry] = ACTIONS(1786), + [anon_sym_ATthrow] = ACTIONS(1786), + [anon_sym_ATselector] = ACTIONS(1786), + [anon_sym_ATencode] = ACTIONS(1786), + [anon_sym_AT] = ACTIONS(1784), + [sym_YES] = ACTIONS(1784), + [sym_NO] = ACTIONS(1784), + [anon_sym___builtin_available] = ACTIONS(1784), + [anon_sym_ATavailable] = ACTIONS(1786), + [anon_sym_va_arg] = ACTIONS(1784), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [502] = { + [sym_identifier] = ACTIONS(1788), + [aux_sym_preproc_include_token1] = ACTIONS(1790), + [aux_sym_preproc_def_token1] = ACTIONS(1790), + [aux_sym_preproc_if_token1] = ACTIONS(1788), + [aux_sym_preproc_if_token2] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1788), + [aux_sym_preproc_else_token1] = ACTIONS(1788), + [aux_sym_preproc_elif_token1] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_CARET] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_typedef] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym___attribute] = ACTIONS(1788), + [anon_sym___attribute__] = ACTIONS(1788), + [anon_sym___declspec] = ACTIONS(1788), + [anon_sym___cdecl] = ACTIONS(1788), + [anon_sym___clrcall] = ACTIONS(1788), + [anon_sym___stdcall] = ACTIONS(1788), + [anon_sym___fastcall] = ACTIONS(1788), + [anon_sym___thiscall] = ACTIONS(1788), + [anon_sym___vectorcall] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_auto] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_inline] = ACTIONS(1788), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_volatile] = ACTIONS(1788), + [anon_sym_restrict] = ACTIONS(1788), + [anon_sym__Atomic] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_out] = ACTIONS(1788), + [anon_sym_inout] = ACTIONS(1788), + [anon_sym_bycopy] = ACTIONS(1788), + [anon_sym_byref] = ACTIONS(1788), + [anon_sym_oneway] = ACTIONS(1788), + [anon_sym__Nullable] = ACTIONS(1788), + [anon_sym__Nonnull] = ACTIONS(1788), + [anon_sym__Nullable_result] = ACTIONS(1788), + [anon_sym__Null_unspecified] = ACTIONS(1788), + [anon_sym___autoreleasing] = ACTIONS(1788), + [anon_sym___nullable] = ACTIONS(1788), + [anon_sym___nonnull] = ACTIONS(1788), + [anon_sym___strong] = ACTIONS(1788), + [anon_sym___weak] = ACTIONS(1788), + [anon_sym___bridge] = ACTIONS(1788), + [anon_sym___bridge_transfer] = ACTIONS(1788), + [anon_sym___bridge_retained] = ACTIONS(1788), + [anon_sym___unsafe_unretained] = ACTIONS(1788), + [anon_sym___block] = ACTIONS(1788), + [anon_sym___kindof] = ACTIONS(1788), + [anon_sym___unused] = ACTIONS(1788), + [anon_sym__Complex] = ACTIONS(1788), + [anon_sym___complex] = ACTIONS(1788), + [anon_sym_IBOutlet] = ACTIONS(1788), + [anon_sym_IBInspectable] = ACTIONS(1788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1788), + [anon_sym_signed] = ACTIONS(1788), + [anon_sym_unsigned] = ACTIONS(1788), + [anon_sym_long] = ACTIONS(1788), + [anon_sym_short] = ACTIONS(1788), + [sym_primitive_type] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_goto] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_sizeof] = ACTIONS(1788), + [sym_number_literal] = ACTIONS(1790), + [anon_sym_L_SQUOTE] = ACTIONS(1790), + [anon_sym_u_SQUOTE] = ACTIONS(1790), + [anon_sym_U_SQUOTE] = ACTIONS(1790), + [anon_sym_u8_SQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_L_DQUOTE] = ACTIONS(1790), + [anon_sym_u_DQUOTE] = ACTIONS(1790), + [anon_sym_U_DQUOTE] = ACTIONS(1790), + [anon_sym_u8_DQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1790), + [anon_sym_ATimport] = ACTIONS(1790), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1788), + [anon_sym_ATcompatibility_alias] = ACTIONS(1790), + [anon_sym_ATprotocol] = ACTIONS(1790), + [anon_sym_ATclass] = ACTIONS(1790), + [anon_sym_ATinterface] = ACTIONS(1790), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1788), + [sym_method_attribute_specifier] = ACTIONS(1788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE] = ACTIONS(1788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_API_AVAILABLE] = ACTIONS(1788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_API_DEPRECATED] = ACTIONS(1788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1788), + [anon_sym___deprecated_msg] = ACTIONS(1788), + [anon_sym___deprecated_enum_msg] = ACTIONS(1788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1788), + [anon_sym_ATimplementation] = ACTIONS(1790), + [anon_sym_NS_ENUM] = ACTIONS(1788), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1788), + [anon_sym_NS_OPTIONS] = ACTIONS(1788), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym___typeof] = ACTIONS(1788), + [anon_sym___typeof__] = ACTIONS(1788), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_nil] = ACTIONS(1788), + [sym_id] = ACTIONS(1788), + [sym_instancetype] = ACTIONS(1788), + [sym_Class] = ACTIONS(1788), + [sym_SEL] = ACTIONS(1788), + [sym_IMP] = ACTIONS(1788), + [sym_BOOL] = ACTIONS(1788), + [sym_auto] = ACTIONS(1788), + [anon_sym_ATautoreleasepool] = ACTIONS(1790), + [anon_sym_ATsynchronized] = ACTIONS(1790), + [anon_sym_ATtry] = ACTIONS(1790), + [anon_sym_ATthrow] = ACTIONS(1790), + [anon_sym_ATselector] = ACTIONS(1790), + [anon_sym_ATencode] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1788), + [sym_YES] = ACTIONS(1788), + [sym_NO] = ACTIONS(1788), + [anon_sym___builtin_available] = ACTIONS(1788), + [anon_sym_ATavailable] = ACTIONS(1790), + [anon_sym_va_arg] = ACTIONS(1788), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [503] = { + [sym_identifier] = ACTIONS(1788), + [aux_sym_preproc_include_token1] = ACTIONS(1790), + [aux_sym_preproc_def_token1] = ACTIONS(1790), + [aux_sym_preproc_if_token1] = ACTIONS(1788), + [aux_sym_preproc_if_token2] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1788), + [aux_sym_preproc_else_token1] = ACTIONS(1788), + [aux_sym_preproc_elif_token1] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_CARET] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_typedef] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym___attribute] = ACTIONS(1788), + [anon_sym___attribute__] = ACTIONS(1788), + [anon_sym___declspec] = ACTIONS(1788), + [anon_sym___cdecl] = ACTIONS(1788), + [anon_sym___clrcall] = ACTIONS(1788), + [anon_sym___stdcall] = ACTIONS(1788), + [anon_sym___fastcall] = ACTIONS(1788), + [anon_sym___thiscall] = ACTIONS(1788), + [anon_sym___vectorcall] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_auto] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_inline] = ACTIONS(1788), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_volatile] = ACTIONS(1788), + [anon_sym_restrict] = ACTIONS(1788), + [anon_sym__Atomic] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_out] = ACTIONS(1788), + [anon_sym_inout] = ACTIONS(1788), + [anon_sym_bycopy] = ACTIONS(1788), + [anon_sym_byref] = ACTIONS(1788), + [anon_sym_oneway] = ACTIONS(1788), + [anon_sym__Nullable] = ACTIONS(1788), + [anon_sym__Nonnull] = ACTIONS(1788), + [anon_sym__Nullable_result] = ACTIONS(1788), + [anon_sym__Null_unspecified] = ACTIONS(1788), + [anon_sym___autoreleasing] = ACTIONS(1788), + [anon_sym___nullable] = ACTIONS(1788), + [anon_sym___nonnull] = ACTIONS(1788), + [anon_sym___strong] = ACTIONS(1788), + [anon_sym___weak] = ACTIONS(1788), + [anon_sym___bridge] = ACTIONS(1788), + [anon_sym___bridge_transfer] = ACTIONS(1788), + [anon_sym___bridge_retained] = ACTIONS(1788), + [anon_sym___unsafe_unretained] = ACTIONS(1788), + [anon_sym___block] = ACTIONS(1788), + [anon_sym___kindof] = ACTIONS(1788), + [anon_sym___unused] = ACTIONS(1788), + [anon_sym__Complex] = ACTIONS(1788), + [anon_sym___complex] = ACTIONS(1788), + [anon_sym_IBOutlet] = ACTIONS(1788), + [anon_sym_IBInspectable] = ACTIONS(1788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1788), + [anon_sym_signed] = ACTIONS(1788), + [anon_sym_unsigned] = ACTIONS(1788), + [anon_sym_long] = ACTIONS(1788), + [anon_sym_short] = ACTIONS(1788), + [sym_primitive_type] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_goto] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_sizeof] = ACTIONS(1788), + [sym_number_literal] = ACTIONS(1790), + [anon_sym_L_SQUOTE] = ACTIONS(1790), + [anon_sym_u_SQUOTE] = ACTIONS(1790), + [anon_sym_U_SQUOTE] = ACTIONS(1790), + [anon_sym_u8_SQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_L_DQUOTE] = ACTIONS(1790), + [anon_sym_u_DQUOTE] = ACTIONS(1790), + [anon_sym_U_DQUOTE] = ACTIONS(1790), + [anon_sym_u8_DQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1790), + [anon_sym_ATimport] = ACTIONS(1790), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1788), + [anon_sym_ATcompatibility_alias] = ACTIONS(1790), + [anon_sym_ATprotocol] = ACTIONS(1790), + [anon_sym_ATclass] = ACTIONS(1790), + [anon_sym_ATinterface] = ACTIONS(1790), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1788), + [sym_method_attribute_specifier] = ACTIONS(1788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE] = ACTIONS(1788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_API_AVAILABLE] = ACTIONS(1788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_API_DEPRECATED] = ACTIONS(1788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1788), + [anon_sym___deprecated_msg] = ACTIONS(1788), + [anon_sym___deprecated_enum_msg] = ACTIONS(1788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1788), + [anon_sym_ATimplementation] = ACTIONS(1790), + [anon_sym_NS_ENUM] = ACTIONS(1788), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1788), + [anon_sym_NS_OPTIONS] = ACTIONS(1788), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym___typeof] = ACTIONS(1788), + [anon_sym___typeof__] = ACTIONS(1788), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_nil] = ACTIONS(1788), + [sym_id] = ACTIONS(1788), + [sym_instancetype] = ACTIONS(1788), + [sym_Class] = ACTIONS(1788), + [sym_SEL] = ACTIONS(1788), + [sym_IMP] = ACTIONS(1788), + [sym_BOOL] = ACTIONS(1788), + [sym_auto] = ACTIONS(1788), + [anon_sym_ATautoreleasepool] = ACTIONS(1790), + [anon_sym_ATsynchronized] = ACTIONS(1790), + [anon_sym_ATtry] = ACTIONS(1790), + [anon_sym_ATthrow] = ACTIONS(1790), + [anon_sym_ATselector] = ACTIONS(1790), + [anon_sym_ATencode] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1788), + [sym_YES] = ACTIONS(1788), + [sym_NO] = ACTIONS(1788), + [anon_sym___builtin_available] = ACTIONS(1788), + [anon_sym_ATavailable] = ACTIONS(1790), + [anon_sym_va_arg] = ACTIONS(1788), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [504] = { + [sym_identifier] = ACTIONS(1788), + [aux_sym_preproc_include_token1] = ACTIONS(1790), + [aux_sym_preproc_def_token1] = ACTIONS(1790), + [aux_sym_preproc_if_token1] = ACTIONS(1788), + [aux_sym_preproc_if_token2] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1788), + [aux_sym_preproc_else_token1] = ACTIONS(1788), + [aux_sym_preproc_elif_token1] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_CARET] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_typedef] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym___attribute] = ACTIONS(1788), + [anon_sym___attribute__] = ACTIONS(1788), + [anon_sym___declspec] = ACTIONS(1788), + [anon_sym___cdecl] = ACTIONS(1788), + [anon_sym___clrcall] = ACTIONS(1788), + [anon_sym___stdcall] = ACTIONS(1788), + [anon_sym___fastcall] = ACTIONS(1788), + [anon_sym___thiscall] = ACTIONS(1788), + [anon_sym___vectorcall] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_auto] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_inline] = ACTIONS(1788), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_volatile] = ACTIONS(1788), + [anon_sym_restrict] = ACTIONS(1788), + [anon_sym__Atomic] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_out] = ACTIONS(1788), + [anon_sym_inout] = ACTIONS(1788), + [anon_sym_bycopy] = ACTIONS(1788), + [anon_sym_byref] = ACTIONS(1788), + [anon_sym_oneway] = ACTIONS(1788), + [anon_sym__Nullable] = ACTIONS(1788), + [anon_sym__Nonnull] = ACTIONS(1788), + [anon_sym__Nullable_result] = ACTIONS(1788), + [anon_sym__Null_unspecified] = ACTIONS(1788), + [anon_sym___autoreleasing] = ACTIONS(1788), + [anon_sym___nullable] = ACTIONS(1788), + [anon_sym___nonnull] = ACTIONS(1788), + [anon_sym___strong] = ACTIONS(1788), + [anon_sym___weak] = ACTIONS(1788), + [anon_sym___bridge] = ACTIONS(1788), + [anon_sym___bridge_transfer] = ACTIONS(1788), + [anon_sym___bridge_retained] = ACTIONS(1788), + [anon_sym___unsafe_unretained] = ACTIONS(1788), + [anon_sym___block] = ACTIONS(1788), + [anon_sym___kindof] = ACTIONS(1788), + [anon_sym___unused] = ACTIONS(1788), + [anon_sym__Complex] = ACTIONS(1788), + [anon_sym___complex] = ACTIONS(1788), + [anon_sym_IBOutlet] = ACTIONS(1788), + [anon_sym_IBInspectable] = ACTIONS(1788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1788), + [anon_sym_signed] = ACTIONS(1788), + [anon_sym_unsigned] = ACTIONS(1788), + [anon_sym_long] = ACTIONS(1788), + [anon_sym_short] = ACTIONS(1788), + [sym_primitive_type] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_goto] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_sizeof] = ACTIONS(1788), + [sym_number_literal] = ACTIONS(1790), + [anon_sym_L_SQUOTE] = ACTIONS(1790), + [anon_sym_u_SQUOTE] = ACTIONS(1790), + [anon_sym_U_SQUOTE] = ACTIONS(1790), + [anon_sym_u8_SQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_L_DQUOTE] = ACTIONS(1790), + [anon_sym_u_DQUOTE] = ACTIONS(1790), + [anon_sym_U_DQUOTE] = ACTIONS(1790), + [anon_sym_u8_DQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1790), + [anon_sym_ATimport] = ACTIONS(1790), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1788), + [anon_sym_ATcompatibility_alias] = ACTIONS(1790), + [anon_sym_ATprotocol] = ACTIONS(1790), + [anon_sym_ATclass] = ACTIONS(1790), + [anon_sym_ATinterface] = ACTIONS(1790), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1788), + [sym_method_attribute_specifier] = ACTIONS(1788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE] = ACTIONS(1788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_API_AVAILABLE] = ACTIONS(1788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_API_DEPRECATED] = ACTIONS(1788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1788), + [anon_sym___deprecated_msg] = ACTIONS(1788), + [anon_sym___deprecated_enum_msg] = ACTIONS(1788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1788), + [anon_sym_ATimplementation] = ACTIONS(1790), + [anon_sym_NS_ENUM] = ACTIONS(1788), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1788), + [anon_sym_NS_OPTIONS] = ACTIONS(1788), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym___typeof] = ACTIONS(1788), + [anon_sym___typeof__] = ACTIONS(1788), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_nil] = ACTIONS(1788), + [sym_id] = ACTIONS(1788), + [sym_instancetype] = ACTIONS(1788), + [sym_Class] = ACTIONS(1788), + [sym_SEL] = ACTIONS(1788), + [sym_IMP] = ACTIONS(1788), + [sym_BOOL] = ACTIONS(1788), + [sym_auto] = ACTIONS(1788), + [anon_sym_ATautoreleasepool] = ACTIONS(1790), + [anon_sym_ATsynchronized] = ACTIONS(1790), + [anon_sym_ATtry] = ACTIONS(1790), + [anon_sym_ATthrow] = ACTIONS(1790), + [anon_sym_ATselector] = ACTIONS(1790), + [anon_sym_ATencode] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1788), + [sym_YES] = ACTIONS(1788), + [sym_NO] = ACTIONS(1788), + [anon_sym___builtin_available] = ACTIONS(1788), + [anon_sym_ATavailable] = ACTIONS(1790), + [anon_sym_va_arg] = ACTIONS(1788), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [505] = { + [sym_identifier] = ACTIONS(1788), + [aux_sym_preproc_include_token1] = ACTIONS(1790), + [aux_sym_preproc_def_token1] = ACTIONS(1790), + [aux_sym_preproc_if_token1] = ACTIONS(1788), + [aux_sym_preproc_if_token2] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1788), + [aux_sym_preproc_else_token1] = ACTIONS(1788), + [aux_sym_preproc_elif_token1] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_CARET] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_typedef] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym___attribute] = ACTIONS(1788), + [anon_sym___attribute__] = ACTIONS(1788), + [anon_sym___declspec] = ACTIONS(1788), + [anon_sym___cdecl] = ACTIONS(1788), + [anon_sym___clrcall] = ACTIONS(1788), + [anon_sym___stdcall] = ACTIONS(1788), + [anon_sym___fastcall] = ACTIONS(1788), + [anon_sym___thiscall] = ACTIONS(1788), + [anon_sym___vectorcall] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_auto] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_inline] = ACTIONS(1788), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_volatile] = ACTIONS(1788), + [anon_sym_restrict] = ACTIONS(1788), + [anon_sym__Atomic] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_out] = ACTIONS(1788), + [anon_sym_inout] = ACTIONS(1788), + [anon_sym_bycopy] = ACTIONS(1788), + [anon_sym_byref] = ACTIONS(1788), + [anon_sym_oneway] = ACTIONS(1788), + [anon_sym__Nullable] = ACTIONS(1788), + [anon_sym__Nonnull] = ACTIONS(1788), + [anon_sym__Nullable_result] = ACTIONS(1788), + [anon_sym__Null_unspecified] = ACTIONS(1788), + [anon_sym___autoreleasing] = ACTIONS(1788), + [anon_sym___nullable] = ACTIONS(1788), + [anon_sym___nonnull] = ACTIONS(1788), + [anon_sym___strong] = ACTIONS(1788), + [anon_sym___weak] = ACTIONS(1788), + [anon_sym___bridge] = ACTIONS(1788), + [anon_sym___bridge_transfer] = ACTIONS(1788), + [anon_sym___bridge_retained] = ACTIONS(1788), + [anon_sym___unsafe_unretained] = ACTIONS(1788), + [anon_sym___block] = ACTIONS(1788), + [anon_sym___kindof] = ACTIONS(1788), + [anon_sym___unused] = ACTIONS(1788), + [anon_sym__Complex] = ACTIONS(1788), + [anon_sym___complex] = ACTIONS(1788), + [anon_sym_IBOutlet] = ACTIONS(1788), + [anon_sym_IBInspectable] = ACTIONS(1788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1788), + [anon_sym_signed] = ACTIONS(1788), + [anon_sym_unsigned] = ACTIONS(1788), + [anon_sym_long] = ACTIONS(1788), + [anon_sym_short] = ACTIONS(1788), + [sym_primitive_type] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_goto] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_sizeof] = ACTIONS(1788), + [sym_number_literal] = ACTIONS(1790), + [anon_sym_L_SQUOTE] = ACTIONS(1790), + [anon_sym_u_SQUOTE] = ACTIONS(1790), + [anon_sym_U_SQUOTE] = ACTIONS(1790), + [anon_sym_u8_SQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_L_DQUOTE] = ACTIONS(1790), + [anon_sym_u_DQUOTE] = ACTIONS(1790), + [anon_sym_U_DQUOTE] = ACTIONS(1790), + [anon_sym_u8_DQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1790), + [anon_sym_ATimport] = ACTIONS(1790), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1788), + [anon_sym_ATcompatibility_alias] = ACTIONS(1790), + [anon_sym_ATprotocol] = ACTIONS(1790), + [anon_sym_ATclass] = ACTIONS(1790), + [anon_sym_ATinterface] = ACTIONS(1790), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1788), + [sym_method_attribute_specifier] = ACTIONS(1788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE] = ACTIONS(1788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_API_AVAILABLE] = ACTIONS(1788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_API_DEPRECATED] = ACTIONS(1788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1788), + [anon_sym___deprecated_msg] = ACTIONS(1788), + [anon_sym___deprecated_enum_msg] = ACTIONS(1788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1788), + [anon_sym_ATimplementation] = ACTIONS(1790), + [anon_sym_NS_ENUM] = ACTIONS(1788), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1788), + [anon_sym_NS_OPTIONS] = ACTIONS(1788), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym___typeof] = ACTIONS(1788), + [anon_sym___typeof__] = ACTIONS(1788), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_nil] = ACTIONS(1788), + [sym_id] = ACTIONS(1788), + [sym_instancetype] = ACTIONS(1788), + [sym_Class] = ACTIONS(1788), + [sym_SEL] = ACTIONS(1788), + [sym_IMP] = ACTIONS(1788), + [sym_BOOL] = ACTIONS(1788), + [sym_auto] = ACTIONS(1788), + [anon_sym_ATautoreleasepool] = ACTIONS(1790), + [anon_sym_ATsynchronized] = ACTIONS(1790), + [anon_sym_ATtry] = ACTIONS(1790), + [anon_sym_ATthrow] = ACTIONS(1790), + [anon_sym_ATselector] = ACTIONS(1790), + [anon_sym_ATencode] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1788), + [sym_YES] = ACTIONS(1788), + [sym_NO] = ACTIONS(1788), + [anon_sym___builtin_available] = ACTIONS(1788), + [anon_sym_ATavailable] = ACTIONS(1790), + [anon_sym_va_arg] = ACTIONS(1788), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [506] = { + [sym_identifier] = ACTIONS(1788), + [aux_sym_preproc_include_token1] = ACTIONS(1790), + [aux_sym_preproc_def_token1] = ACTIONS(1790), + [aux_sym_preproc_if_token1] = ACTIONS(1788), + [aux_sym_preproc_if_token2] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1788), + [aux_sym_preproc_else_token1] = ACTIONS(1788), + [aux_sym_preproc_elif_token1] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_CARET] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_typedef] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym___attribute] = ACTIONS(1788), + [anon_sym___attribute__] = ACTIONS(1788), + [anon_sym___declspec] = ACTIONS(1788), + [anon_sym___cdecl] = ACTIONS(1788), + [anon_sym___clrcall] = ACTIONS(1788), + [anon_sym___stdcall] = ACTIONS(1788), + [anon_sym___fastcall] = ACTIONS(1788), + [anon_sym___thiscall] = ACTIONS(1788), + [anon_sym___vectorcall] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_auto] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_inline] = ACTIONS(1788), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_volatile] = ACTIONS(1788), + [anon_sym_restrict] = ACTIONS(1788), + [anon_sym__Atomic] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_out] = ACTIONS(1788), + [anon_sym_inout] = ACTIONS(1788), + [anon_sym_bycopy] = ACTIONS(1788), + [anon_sym_byref] = ACTIONS(1788), + [anon_sym_oneway] = ACTIONS(1788), + [anon_sym__Nullable] = ACTIONS(1788), + [anon_sym__Nonnull] = ACTIONS(1788), + [anon_sym__Nullable_result] = ACTIONS(1788), + [anon_sym__Null_unspecified] = ACTIONS(1788), + [anon_sym___autoreleasing] = ACTIONS(1788), + [anon_sym___nullable] = ACTIONS(1788), + [anon_sym___nonnull] = ACTIONS(1788), + [anon_sym___strong] = ACTIONS(1788), + [anon_sym___weak] = ACTIONS(1788), + [anon_sym___bridge] = ACTIONS(1788), + [anon_sym___bridge_transfer] = ACTIONS(1788), + [anon_sym___bridge_retained] = ACTIONS(1788), + [anon_sym___unsafe_unretained] = ACTIONS(1788), + [anon_sym___block] = ACTIONS(1788), + [anon_sym___kindof] = ACTIONS(1788), + [anon_sym___unused] = ACTIONS(1788), + [anon_sym__Complex] = ACTIONS(1788), + [anon_sym___complex] = ACTIONS(1788), + [anon_sym_IBOutlet] = ACTIONS(1788), + [anon_sym_IBInspectable] = ACTIONS(1788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1788), + [anon_sym_signed] = ACTIONS(1788), + [anon_sym_unsigned] = ACTIONS(1788), + [anon_sym_long] = ACTIONS(1788), + [anon_sym_short] = ACTIONS(1788), + [sym_primitive_type] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_goto] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_sizeof] = ACTIONS(1788), + [sym_number_literal] = ACTIONS(1790), + [anon_sym_L_SQUOTE] = ACTIONS(1790), + [anon_sym_u_SQUOTE] = ACTIONS(1790), + [anon_sym_U_SQUOTE] = ACTIONS(1790), + [anon_sym_u8_SQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_L_DQUOTE] = ACTIONS(1790), + [anon_sym_u_DQUOTE] = ACTIONS(1790), + [anon_sym_U_DQUOTE] = ACTIONS(1790), + [anon_sym_u8_DQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1790), + [anon_sym_ATimport] = ACTIONS(1790), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1788), + [anon_sym_ATcompatibility_alias] = ACTIONS(1790), + [anon_sym_ATprotocol] = ACTIONS(1790), + [anon_sym_ATclass] = ACTIONS(1790), + [anon_sym_ATinterface] = ACTIONS(1790), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1788), + [sym_method_attribute_specifier] = ACTIONS(1788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE] = ACTIONS(1788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_API_AVAILABLE] = ACTIONS(1788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_API_DEPRECATED] = ACTIONS(1788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1788), + [anon_sym___deprecated_msg] = ACTIONS(1788), + [anon_sym___deprecated_enum_msg] = ACTIONS(1788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1788), + [anon_sym_ATimplementation] = ACTIONS(1790), + [anon_sym_NS_ENUM] = ACTIONS(1788), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1788), + [anon_sym_NS_OPTIONS] = ACTIONS(1788), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym___typeof] = ACTIONS(1788), + [anon_sym___typeof__] = ACTIONS(1788), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_nil] = ACTIONS(1788), + [sym_id] = ACTIONS(1788), + [sym_instancetype] = ACTIONS(1788), + [sym_Class] = ACTIONS(1788), + [sym_SEL] = ACTIONS(1788), + [sym_IMP] = ACTIONS(1788), + [sym_BOOL] = ACTIONS(1788), + [sym_auto] = ACTIONS(1788), + [anon_sym_ATautoreleasepool] = ACTIONS(1790), + [anon_sym_ATsynchronized] = ACTIONS(1790), + [anon_sym_ATtry] = ACTIONS(1790), + [anon_sym_ATthrow] = ACTIONS(1790), + [anon_sym_ATselector] = ACTIONS(1790), + [anon_sym_ATencode] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1788), + [sym_YES] = ACTIONS(1788), + [sym_NO] = ACTIONS(1788), + [anon_sym___builtin_available] = ACTIONS(1788), + [anon_sym_ATavailable] = ACTIONS(1790), + [anon_sym_va_arg] = ACTIONS(1788), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [507] = { + [sym_identifier] = ACTIONS(1792), + [aux_sym_preproc_include_token1] = ACTIONS(1794), + [aux_sym_preproc_def_token1] = ACTIONS(1794), + [aux_sym_preproc_if_token1] = ACTIONS(1792), + [aux_sym_preproc_if_token2] = ACTIONS(1792), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1792), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1792), + [aux_sym_preproc_else_token1] = ACTIONS(1792), + [aux_sym_preproc_elif_token1] = ACTIONS(1792), + [anon_sym_LPAREN2] = ACTIONS(1794), + [anon_sym_BANG] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(1794), + [anon_sym_CARET] = ACTIONS(1794), + [anon_sym_AMP] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_typedef] = ACTIONS(1792), + [anon_sym_extern] = ACTIONS(1792), + [anon_sym___attribute] = ACTIONS(1792), + [anon_sym___attribute__] = ACTIONS(1792), + [anon_sym___declspec] = ACTIONS(1792), + [anon_sym___cdecl] = ACTIONS(1792), + [anon_sym___clrcall] = ACTIONS(1792), + [anon_sym___stdcall] = ACTIONS(1792), + [anon_sym___fastcall] = ACTIONS(1792), + [anon_sym___thiscall] = ACTIONS(1792), + [anon_sym___vectorcall] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_auto] = ACTIONS(1792), + [anon_sym_register] = ACTIONS(1792), + [anon_sym_inline] = ACTIONS(1792), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1792), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_volatile] = ACTIONS(1792), + [anon_sym_restrict] = ACTIONS(1792), + [anon_sym__Atomic] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1792), + [anon_sym_out] = ACTIONS(1792), + [anon_sym_inout] = ACTIONS(1792), + [anon_sym_bycopy] = ACTIONS(1792), + [anon_sym_byref] = ACTIONS(1792), + [anon_sym_oneway] = ACTIONS(1792), + [anon_sym__Nullable] = ACTIONS(1792), + [anon_sym__Nonnull] = ACTIONS(1792), + [anon_sym__Nullable_result] = ACTIONS(1792), + [anon_sym__Null_unspecified] = ACTIONS(1792), + [anon_sym___autoreleasing] = ACTIONS(1792), + [anon_sym___nullable] = ACTIONS(1792), + [anon_sym___nonnull] = ACTIONS(1792), + [anon_sym___strong] = ACTIONS(1792), + [anon_sym___weak] = ACTIONS(1792), + [anon_sym___bridge] = ACTIONS(1792), + [anon_sym___bridge_transfer] = ACTIONS(1792), + [anon_sym___bridge_retained] = ACTIONS(1792), + [anon_sym___unsafe_unretained] = ACTIONS(1792), + [anon_sym___block] = ACTIONS(1792), + [anon_sym___kindof] = ACTIONS(1792), + [anon_sym___unused] = ACTIONS(1792), + [anon_sym__Complex] = ACTIONS(1792), + [anon_sym___complex] = ACTIONS(1792), + [anon_sym_IBOutlet] = ACTIONS(1792), + [anon_sym_IBInspectable] = ACTIONS(1792), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1792), + [anon_sym_signed] = ACTIONS(1792), + [anon_sym_unsigned] = ACTIONS(1792), + [anon_sym_long] = ACTIONS(1792), + [anon_sym_short] = ACTIONS(1792), + [sym_primitive_type] = ACTIONS(1792), + [anon_sym_enum] = ACTIONS(1792), + [anon_sym_struct] = ACTIONS(1792), + [anon_sym_union] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1792), + [anon_sym_case] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1792), + [anon_sym_while] = ACTIONS(1792), + [anon_sym_do] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_return] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_goto] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1794), + [anon_sym_PLUS_PLUS] = ACTIONS(1794), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_number_literal] = ACTIONS(1794), + [anon_sym_L_SQUOTE] = ACTIONS(1794), + [anon_sym_u_SQUOTE] = ACTIONS(1794), + [anon_sym_U_SQUOTE] = ACTIONS(1794), + [anon_sym_u8_SQUOTE] = ACTIONS(1794), + [anon_sym_SQUOTE] = ACTIONS(1794), + [anon_sym_L_DQUOTE] = ACTIONS(1794), + [anon_sym_u_DQUOTE] = ACTIONS(1794), + [anon_sym_U_DQUOTE] = ACTIONS(1794), + [anon_sym_u8_DQUOTE] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1794), + [sym_true] = ACTIONS(1792), + [sym_false] = ACTIONS(1792), + [sym_null] = ACTIONS(1792), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1794), + [anon_sym_ATimport] = ACTIONS(1794), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1792), + [anon_sym_ATcompatibility_alias] = ACTIONS(1794), + [anon_sym_ATprotocol] = ACTIONS(1794), + [anon_sym_ATclass] = ACTIONS(1794), + [anon_sym_ATinterface] = ACTIONS(1794), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1792), + [sym_method_attribute_specifier] = ACTIONS(1792), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1792), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1792), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1792), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1792), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1792), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1792), + [anon_sym_NS_AVAILABLE] = ACTIONS(1792), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1792), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1792), + [anon_sym_API_AVAILABLE] = ACTIONS(1792), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1792), + [anon_sym_API_DEPRECATED] = ACTIONS(1792), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1792), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1792), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1792), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1792), + [anon_sym___deprecated_msg] = ACTIONS(1792), + [anon_sym___deprecated_enum_msg] = ACTIONS(1792), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1792), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1792), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1792), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1792), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1792), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1792), + [anon_sym_ATimplementation] = ACTIONS(1794), + [anon_sym_NS_ENUM] = ACTIONS(1792), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1792), + [anon_sym_NS_OPTIONS] = ACTIONS(1792), + [anon_sym_typeof] = ACTIONS(1792), + [anon_sym___typeof] = ACTIONS(1792), + [anon_sym___typeof__] = ACTIONS(1792), + [sym_self] = ACTIONS(1792), + [sym_super] = ACTIONS(1792), + [sym_nil] = ACTIONS(1792), + [sym_id] = ACTIONS(1792), + [sym_instancetype] = ACTIONS(1792), + [sym_Class] = ACTIONS(1792), + [sym_SEL] = ACTIONS(1792), + [sym_IMP] = ACTIONS(1792), + [sym_BOOL] = ACTIONS(1792), + [sym_auto] = ACTIONS(1792), + [anon_sym_ATautoreleasepool] = ACTIONS(1794), + [anon_sym_ATsynchronized] = ACTIONS(1794), + [anon_sym_ATtry] = ACTIONS(1794), + [anon_sym_ATthrow] = ACTIONS(1794), + [anon_sym_ATselector] = ACTIONS(1794), + [anon_sym_ATencode] = ACTIONS(1794), + [anon_sym_AT] = ACTIONS(1792), + [sym_YES] = ACTIONS(1792), + [sym_NO] = ACTIONS(1792), + [anon_sym___builtin_available] = ACTIONS(1792), + [anon_sym_ATavailable] = ACTIONS(1794), + [anon_sym_va_arg] = ACTIONS(1792), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [508] = { + [sym_identifier] = ACTIONS(1796), + [aux_sym_preproc_include_token1] = ACTIONS(1798), + [aux_sym_preproc_def_token1] = ACTIONS(1798), + [aux_sym_preproc_if_token1] = ACTIONS(1796), + [aux_sym_preproc_if_token2] = ACTIONS(1796), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1796), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1796), + [aux_sym_preproc_else_token1] = ACTIONS(1796), + [aux_sym_preproc_elif_token1] = ACTIONS(1796), + [anon_sym_LPAREN2] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_typedef] = ACTIONS(1796), + [anon_sym_extern] = ACTIONS(1796), + [anon_sym___attribute] = ACTIONS(1796), + [anon_sym___attribute__] = ACTIONS(1796), + [anon_sym___declspec] = ACTIONS(1796), + [anon_sym___cdecl] = ACTIONS(1796), + [anon_sym___clrcall] = ACTIONS(1796), + [anon_sym___stdcall] = ACTIONS(1796), + [anon_sym___fastcall] = ACTIONS(1796), + [anon_sym___thiscall] = ACTIONS(1796), + [anon_sym___vectorcall] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_static] = ACTIONS(1796), + [anon_sym_auto] = ACTIONS(1796), + [anon_sym_register] = ACTIONS(1796), + [anon_sym_inline] = ACTIONS(1796), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1796), + [anon_sym_const] = ACTIONS(1796), + [anon_sym_volatile] = ACTIONS(1796), + [anon_sym_restrict] = ACTIONS(1796), + [anon_sym__Atomic] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_out] = ACTIONS(1796), + [anon_sym_inout] = ACTIONS(1796), + [anon_sym_bycopy] = ACTIONS(1796), + [anon_sym_byref] = ACTIONS(1796), + [anon_sym_oneway] = ACTIONS(1796), + [anon_sym__Nullable] = ACTIONS(1796), + [anon_sym__Nonnull] = ACTIONS(1796), + [anon_sym__Nullable_result] = ACTIONS(1796), + [anon_sym__Null_unspecified] = ACTIONS(1796), + [anon_sym___autoreleasing] = ACTIONS(1796), + [anon_sym___nullable] = ACTIONS(1796), + [anon_sym___nonnull] = ACTIONS(1796), + [anon_sym___strong] = ACTIONS(1796), + [anon_sym___weak] = ACTIONS(1796), + [anon_sym___bridge] = ACTIONS(1796), + [anon_sym___bridge_transfer] = ACTIONS(1796), + [anon_sym___bridge_retained] = ACTIONS(1796), + [anon_sym___unsafe_unretained] = ACTIONS(1796), + [anon_sym___block] = ACTIONS(1796), + [anon_sym___kindof] = ACTIONS(1796), + [anon_sym___unused] = ACTIONS(1796), + [anon_sym__Complex] = ACTIONS(1796), + [anon_sym___complex] = ACTIONS(1796), + [anon_sym_IBOutlet] = ACTIONS(1796), + [anon_sym_IBInspectable] = ACTIONS(1796), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1796), + [anon_sym_signed] = ACTIONS(1796), + [anon_sym_unsigned] = ACTIONS(1796), + [anon_sym_long] = ACTIONS(1796), + [anon_sym_short] = ACTIONS(1796), + [sym_primitive_type] = ACTIONS(1796), + [anon_sym_enum] = ACTIONS(1796), + [anon_sym_struct] = ACTIONS(1796), + [anon_sym_union] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_switch] = ACTIONS(1796), + [anon_sym_case] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_do] = ACTIONS(1796), + [anon_sym_for] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_goto] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1796), + [sym_number_literal] = ACTIONS(1798), + [anon_sym_L_SQUOTE] = ACTIONS(1798), + [anon_sym_u_SQUOTE] = ACTIONS(1798), + [anon_sym_U_SQUOTE] = ACTIONS(1798), + [anon_sym_u8_SQUOTE] = ACTIONS(1798), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_L_DQUOTE] = ACTIONS(1798), + [anon_sym_u_DQUOTE] = ACTIONS(1798), + [anon_sym_U_DQUOTE] = ACTIONS(1798), + [anon_sym_u8_DQUOTE] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [sym_true] = ACTIONS(1796), + [sym_false] = ACTIONS(1796), + [sym_null] = ACTIONS(1796), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1798), + [anon_sym_ATimport] = ACTIONS(1798), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1796), + [anon_sym_ATcompatibility_alias] = ACTIONS(1798), + [anon_sym_ATprotocol] = ACTIONS(1798), + [anon_sym_ATclass] = ACTIONS(1798), + [anon_sym_ATinterface] = ACTIONS(1798), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1796), + [sym_method_attribute_specifier] = ACTIONS(1796), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1796), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1796), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1796), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1796), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1796), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1796), + [anon_sym_NS_AVAILABLE] = ACTIONS(1796), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1796), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1796), + [anon_sym_API_AVAILABLE] = ACTIONS(1796), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1796), + [anon_sym_API_DEPRECATED] = ACTIONS(1796), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1796), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1796), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1796), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1796), + [anon_sym___deprecated_msg] = ACTIONS(1796), + [anon_sym___deprecated_enum_msg] = ACTIONS(1796), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1796), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1796), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1796), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1796), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1796), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1796), + [anon_sym_ATimplementation] = ACTIONS(1798), + [anon_sym_NS_ENUM] = ACTIONS(1796), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1796), + [anon_sym_NS_OPTIONS] = ACTIONS(1796), + [anon_sym_typeof] = ACTIONS(1796), + [anon_sym___typeof] = ACTIONS(1796), + [anon_sym___typeof__] = ACTIONS(1796), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_nil] = ACTIONS(1796), + [sym_id] = ACTIONS(1796), + [sym_instancetype] = ACTIONS(1796), + [sym_Class] = ACTIONS(1796), + [sym_SEL] = ACTIONS(1796), + [sym_IMP] = ACTIONS(1796), + [sym_BOOL] = ACTIONS(1796), + [sym_auto] = ACTIONS(1796), + [anon_sym_ATautoreleasepool] = ACTIONS(1798), + [anon_sym_ATsynchronized] = ACTIONS(1798), + [anon_sym_ATtry] = ACTIONS(1798), + [anon_sym_ATthrow] = ACTIONS(1798), + [anon_sym_ATselector] = ACTIONS(1798), + [anon_sym_ATencode] = ACTIONS(1798), + [anon_sym_AT] = ACTIONS(1796), + [sym_YES] = ACTIONS(1796), + [sym_NO] = ACTIONS(1796), + [anon_sym___builtin_available] = ACTIONS(1796), + [anon_sym_ATavailable] = ACTIONS(1798), + [anon_sym_va_arg] = ACTIONS(1796), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [509] = { + [sym_identifier] = ACTIONS(1800), + [aux_sym_preproc_include_token1] = ACTIONS(1802), + [aux_sym_preproc_def_token1] = ACTIONS(1802), + [aux_sym_preproc_if_token1] = ACTIONS(1800), + [aux_sym_preproc_if_token2] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1800), + [aux_sym_preproc_else_token1] = ACTIONS(1800), + [aux_sym_preproc_elif_token1] = ACTIONS(1800), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_CARET] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_typedef] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1800), + [anon_sym___attribute] = ACTIONS(1800), + [anon_sym___attribute__] = ACTIONS(1800), + [anon_sym___declspec] = ACTIONS(1800), + [anon_sym___cdecl] = ACTIONS(1800), + [anon_sym___clrcall] = ACTIONS(1800), + [anon_sym___stdcall] = ACTIONS(1800), + [anon_sym___fastcall] = ACTIONS(1800), + [anon_sym___thiscall] = ACTIONS(1800), + [anon_sym___vectorcall] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1800), + [anon_sym_auto] = ACTIONS(1800), + [anon_sym_register] = ACTIONS(1800), + [anon_sym_inline] = ACTIONS(1800), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_volatile] = ACTIONS(1800), + [anon_sym_restrict] = ACTIONS(1800), + [anon_sym__Atomic] = ACTIONS(1800), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_out] = ACTIONS(1800), + [anon_sym_inout] = ACTIONS(1800), + [anon_sym_bycopy] = ACTIONS(1800), + [anon_sym_byref] = ACTIONS(1800), + [anon_sym_oneway] = ACTIONS(1800), + [anon_sym__Nullable] = ACTIONS(1800), + [anon_sym__Nonnull] = ACTIONS(1800), + [anon_sym__Nullable_result] = ACTIONS(1800), + [anon_sym__Null_unspecified] = ACTIONS(1800), + [anon_sym___autoreleasing] = ACTIONS(1800), + [anon_sym___nullable] = ACTIONS(1800), + [anon_sym___nonnull] = ACTIONS(1800), + [anon_sym___strong] = ACTIONS(1800), + [anon_sym___weak] = ACTIONS(1800), + [anon_sym___bridge] = ACTIONS(1800), + [anon_sym___bridge_transfer] = ACTIONS(1800), + [anon_sym___bridge_retained] = ACTIONS(1800), + [anon_sym___unsafe_unretained] = ACTIONS(1800), + [anon_sym___block] = ACTIONS(1800), + [anon_sym___kindof] = ACTIONS(1800), + [anon_sym___unused] = ACTIONS(1800), + [anon_sym__Complex] = ACTIONS(1800), + [anon_sym___complex] = ACTIONS(1800), + [anon_sym_IBOutlet] = ACTIONS(1800), + [anon_sym_IBInspectable] = ACTIONS(1800), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1800), + [anon_sym_signed] = ACTIONS(1800), + [anon_sym_unsigned] = ACTIONS(1800), + [anon_sym_long] = ACTIONS(1800), + [anon_sym_short] = ACTIONS(1800), + [sym_primitive_type] = ACTIONS(1800), + [anon_sym_enum] = ACTIONS(1800), + [anon_sym_struct] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_do] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_goto] = ACTIONS(1800), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1802), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(1802), + [anon_sym_L_SQUOTE] = ACTIONS(1802), + [anon_sym_u_SQUOTE] = ACTIONS(1802), + [anon_sym_U_SQUOTE] = ACTIONS(1802), + [anon_sym_u8_SQUOTE] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_L_DQUOTE] = ACTIONS(1802), + [anon_sym_u_DQUOTE] = ACTIONS(1802), + [anon_sym_U_DQUOTE] = ACTIONS(1802), + [anon_sym_u8_DQUOTE] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym_true] = ACTIONS(1800), + [sym_false] = ACTIONS(1800), + [sym_null] = ACTIONS(1800), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1802), + [anon_sym_ATimport] = ACTIONS(1802), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1800), + [anon_sym_ATcompatibility_alias] = ACTIONS(1802), + [anon_sym_ATprotocol] = ACTIONS(1802), + [anon_sym_ATclass] = ACTIONS(1802), + [anon_sym_ATinterface] = ACTIONS(1802), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1800), + [sym_method_attribute_specifier] = ACTIONS(1800), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1800), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE] = ACTIONS(1800), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_API_AVAILABLE] = ACTIONS(1800), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_API_DEPRECATED] = ACTIONS(1800), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1800), + [anon_sym___deprecated_msg] = ACTIONS(1800), + [anon_sym___deprecated_enum_msg] = ACTIONS(1800), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1800), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1800), + [anon_sym_ATimplementation] = ACTIONS(1802), + [anon_sym_NS_ENUM] = ACTIONS(1800), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1800), + [anon_sym_NS_OPTIONS] = ACTIONS(1800), + [anon_sym_typeof] = ACTIONS(1800), + [anon_sym___typeof] = ACTIONS(1800), + [anon_sym___typeof__] = ACTIONS(1800), + [sym_self] = ACTIONS(1800), + [sym_super] = ACTIONS(1800), + [sym_nil] = ACTIONS(1800), + [sym_id] = ACTIONS(1800), + [sym_instancetype] = ACTIONS(1800), + [sym_Class] = ACTIONS(1800), + [sym_SEL] = ACTIONS(1800), + [sym_IMP] = ACTIONS(1800), + [sym_BOOL] = ACTIONS(1800), + [sym_auto] = ACTIONS(1800), + [anon_sym_ATautoreleasepool] = ACTIONS(1802), + [anon_sym_ATsynchronized] = ACTIONS(1802), + [anon_sym_ATtry] = ACTIONS(1802), + [anon_sym_ATthrow] = ACTIONS(1802), + [anon_sym_ATselector] = ACTIONS(1802), + [anon_sym_ATencode] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1800), + [sym_YES] = ACTIONS(1800), + [sym_NO] = ACTIONS(1800), + [anon_sym___builtin_available] = ACTIONS(1800), + [anon_sym_ATavailable] = ACTIONS(1802), + [anon_sym_va_arg] = ACTIONS(1800), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [510] = { + [sym_identifier] = ACTIONS(1800), + [aux_sym_preproc_include_token1] = ACTIONS(1802), + [aux_sym_preproc_def_token1] = ACTIONS(1802), + [aux_sym_preproc_if_token1] = ACTIONS(1800), + [aux_sym_preproc_if_token2] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1800), + [aux_sym_preproc_else_token1] = ACTIONS(1800), + [aux_sym_preproc_elif_token1] = ACTIONS(1800), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_CARET] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_typedef] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1800), + [anon_sym___attribute] = ACTIONS(1800), + [anon_sym___attribute__] = ACTIONS(1800), + [anon_sym___declspec] = ACTIONS(1800), + [anon_sym___cdecl] = ACTIONS(1800), + [anon_sym___clrcall] = ACTIONS(1800), + [anon_sym___stdcall] = ACTIONS(1800), + [anon_sym___fastcall] = ACTIONS(1800), + [anon_sym___thiscall] = ACTIONS(1800), + [anon_sym___vectorcall] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1800), + [anon_sym_auto] = ACTIONS(1800), + [anon_sym_register] = ACTIONS(1800), + [anon_sym_inline] = ACTIONS(1800), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_volatile] = ACTIONS(1800), + [anon_sym_restrict] = ACTIONS(1800), + [anon_sym__Atomic] = ACTIONS(1800), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_out] = ACTIONS(1800), + [anon_sym_inout] = ACTIONS(1800), + [anon_sym_bycopy] = ACTIONS(1800), + [anon_sym_byref] = ACTIONS(1800), + [anon_sym_oneway] = ACTIONS(1800), + [anon_sym__Nullable] = ACTIONS(1800), + [anon_sym__Nonnull] = ACTIONS(1800), + [anon_sym__Nullable_result] = ACTIONS(1800), + [anon_sym__Null_unspecified] = ACTIONS(1800), + [anon_sym___autoreleasing] = ACTIONS(1800), + [anon_sym___nullable] = ACTIONS(1800), + [anon_sym___nonnull] = ACTIONS(1800), + [anon_sym___strong] = ACTIONS(1800), + [anon_sym___weak] = ACTIONS(1800), + [anon_sym___bridge] = ACTIONS(1800), + [anon_sym___bridge_transfer] = ACTIONS(1800), + [anon_sym___bridge_retained] = ACTIONS(1800), + [anon_sym___unsafe_unretained] = ACTIONS(1800), + [anon_sym___block] = ACTIONS(1800), + [anon_sym___kindof] = ACTIONS(1800), + [anon_sym___unused] = ACTIONS(1800), + [anon_sym__Complex] = ACTIONS(1800), + [anon_sym___complex] = ACTIONS(1800), + [anon_sym_IBOutlet] = ACTIONS(1800), + [anon_sym_IBInspectable] = ACTIONS(1800), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1800), + [anon_sym_signed] = ACTIONS(1800), + [anon_sym_unsigned] = ACTIONS(1800), + [anon_sym_long] = ACTIONS(1800), + [anon_sym_short] = ACTIONS(1800), + [sym_primitive_type] = ACTIONS(1800), + [anon_sym_enum] = ACTIONS(1800), + [anon_sym_struct] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_do] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_goto] = ACTIONS(1800), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1802), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(1802), + [anon_sym_L_SQUOTE] = ACTIONS(1802), + [anon_sym_u_SQUOTE] = ACTIONS(1802), + [anon_sym_U_SQUOTE] = ACTIONS(1802), + [anon_sym_u8_SQUOTE] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_L_DQUOTE] = ACTIONS(1802), + [anon_sym_u_DQUOTE] = ACTIONS(1802), + [anon_sym_U_DQUOTE] = ACTIONS(1802), + [anon_sym_u8_DQUOTE] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym_true] = ACTIONS(1800), + [sym_false] = ACTIONS(1800), + [sym_null] = ACTIONS(1800), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1802), + [anon_sym_ATimport] = ACTIONS(1802), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1800), + [anon_sym_ATcompatibility_alias] = ACTIONS(1802), + [anon_sym_ATprotocol] = ACTIONS(1802), + [anon_sym_ATclass] = ACTIONS(1802), + [anon_sym_ATinterface] = ACTIONS(1802), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1800), + [sym_method_attribute_specifier] = ACTIONS(1800), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1800), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE] = ACTIONS(1800), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_API_AVAILABLE] = ACTIONS(1800), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_API_DEPRECATED] = ACTIONS(1800), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1800), + [anon_sym___deprecated_msg] = ACTIONS(1800), + [anon_sym___deprecated_enum_msg] = ACTIONS(1800), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1800), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1800), + [anon_sym_ATimplementation] = ACTIONS(1802), + [anon_sym_NS_ENUM] = ACTIONS(1800), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1800), + [anon_sym_NS_OPTIONS] = ACTIONS(1800), + [anon_sym_typeof] = ACTIONS(1800), + [anon_sym___typeof] = ACTIONS(1800), + [anon_sym___typeof__] = ACTIONS(1800), + [sym_self] = ACTIONS(1800), + [sym_super] = ACTIONS(1800), + [sym_nil] = ACTIONS(1800), + [sym_id] = ACTIONS(1800), + [sym_instancetype] = ACTIONS(1800), + [sym_Class] = ACTIONS(1800), + [sym_SEL] = ACTIONS(1800), + [sym_IMP] = ACTIONS(1800), + [sym_BOOL] = ACTIONS(1800), + [sym_auto] = ACTIONS(1800), + [anon_sym_ATautoreleasepool] = ACTIONS(1802), + [anon_sym_ATsynchronized] = ACTIONS(1802), + [anon_sym_ATtry] = ACTIONS(1802), + [anon_sym_ATthrow] = ACTIONS(1802), + [anon_sym_ATselector] = ACTIONS(1802), + [anon_sym_ATencode] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1800), + [sym_YES] = ACTIONS(1800), + [sym_NO] = ACTIONS(1800), + [anon_sym___builtin_available] = ACTIONS(1800), + [anon_sym_ATavailable] = ACTIONS(1802), + [anon_sym_va_arg] = ACTIONS(1800), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [511] = { + [sym_identifier] = ACTIONS(1800), + [aux_sym_preproc_include_token1] = ACTIONS(1802), + [aux_sym_preproc_def_token1] = ACTIONS(1802), + [aux_sym_preproc_if_token1] = ACTIONS(1800), + [aux_sym_preproc_if_token2] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1800), + [aux_sym_preproc_else_token1] = ACTIONS(1800), + [aux_sym_preproc_elif_token1] = ACTIONS(1800), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_CARET] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_typedef] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1800), + [anon_sym___attribute] = ACTIONS(1800), + [anon_sym___attribute__] = ACTIONS(1800), + [anon_sym___declspec] = ACTIONS(1800), + [anon_sym___cdecl] = ACTIONS(1800), + [anon_sym___clrcall] = ACTIONS(1800), + [anon_sym___stdcall] = ACTIONS(1800), + [anon_sym___fastcall] = ACTIONS(1800), + [anon_sym___thiscall] = ACTIONS(1800), + [anon_sym___vectorcall] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1800), + [anon_sym_auto] = ACTIONS(1800), + [anon_sym_register] = ACTIONS(1800), + [anon_sym_inline] = ACTIONS(1800), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_volatile] = ACTIONS(1800), + [anon_sym_restrict] = ACTIONS(1800), + [anon_sym__Atomic] = ACTIONS(1800), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_out] = ACTIONS(1800), + [anon_sym_inout] = ACTIONS(1800), + [anon_sym_bycopy] = ACTIONS(1800), + [anon_sym_byref] = ACTIONS(1800), + [anon_sym_oneway] = ACTIONS(1800), + [anon_sym__Nullable] = ACTIONS(1800), + [anon_sym__Nonnull] = ACTIONS(1800), + [anon_sym__Nullable_result] = ACTIONS(1800), + [anon_sym__Null_unspecified] = ACTIONS(1800), + [anon_sym___autoreleasing] = ACTIONS(1800), + [anon_sym___nullable] = ACTIONS(1800), + [anon_sym___nonnull] = ACTIONS(1800), + [anon_sym___strong] = ACTIONS(1800), + [anon_sym___weak] = ACTIONS(1800), + [anon_sym___bridge] = ACTIONS(1800), + [anon_sym___bridge_transfer] = ACTIONS(1800), + [anon_sym___bridge_retained] = ACTIONS(1800), + [anon_sym___unsafe_unretained] = ACTIONS(1800), + [anon_sym___block] = ACTIONS(1800), + [anon_sym___kindof] = ACTIONS(1800), + [anon_sym___unused] = ACTIONS(1800), + [anon_sym__Complex] = ACTIONS(1800), + [anon_sym___complex] = ACTIONS(1800), + [anon_sym_IBOutlet] = ACTIONS(1800), + [anon_sym_IBInspectable] = ACTIONS(1800), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1800), + [anon_sym_signed] = ACTIONS(1800), + [anon_sym_unsigned] = ACTIONS(1800), + [anon_sym_long] = ACTIONS(1800), + [anon_sym_short] = ACTIONS(1800), + [sym_primitive_type] = ACTIONS(1800), + [anon_sym_enum] = ACTIONS(1800), + [anon_sym_struct] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_do] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_goto] = ACTIONS(1800), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1802), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(1802), + [anon_sym_L_SQUOTE] = ACTIONS(1802), + [anon_sym_u_SQUOTE] = ACTIONS(1802), + [anon_sym_U_SQUOTE] = ACTIONS(1802), + [anon_sym_u8_SQUOTE] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_L_DQUOTE] = ACTIONS(1802), + [anon_sym_u_DQUOTE] = ACTIONS(1802), + [anon_sym_U_DQUOTE] = ACTIONS(1802), + [anon_sym_u8_DQUOTE] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym_true] = ACTIONS(1800), + [sym_false] = ACTIONS(1800), + [sym_null] = ACTIONS(1800), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1802), + [anon_sym_ATimport] = ACTIONS(1802), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1800), + [anon_sym_ATcompatibility_alias] = ACTIONS(1802), + [anon_sym_ATprotocol] = ACTIONS(1802), + [anon_sym_ATclass] = ACTIONS(1802), + [anon_sym_ATinterface] = ACTIONS(1802), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1800), + [sym_method_attribute_specifier] = ACTIONS(1800), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1800), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE] = ACTIONS(1800), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_API_AVAILABLE] = ACTIONS(1800), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_API_DEPRECATED] = ACTIONS(1800), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1800), + [anon_sym___deprecated_msg] = ACTIONS(1800), + [anon_sym___deprecated_enum_msg] = ACTIONS(1800), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1800), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1800), + [anon_sym_ATimplementation] = ACTIONS(1802), + [anon_sym_NS_ENUM] = ACTIONS(1800), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1800), + [anon_sym_NS_OPTIONS] = ACTIONS(1800), + [anon_sym_typeof] = ACTIONS(1800), + [anon_sym___typeof] = ACTIONS(1800), + [anon_sym___typeof__] = ACTIONS(1800), + [sym_self] = ACTIONS(1800), + [sym_super] = ACTIONS(1800), + [sym_nil] = ACTIONS(1800), + [sym_id] = ACTIONS(1800), + [sym_instancetype] = ACTIONS(1800), + [sym_Class] = ACTIONS(1800), + [sym_SEL] = ACTIONS(1800), + [sym_IMP] = ACTIONS(1800), + [sym_BOOL] = ACTIONS(1800), + [sym_auto] = ACTIONS(1800), + [anon_sym_ATautoreleasepool] = ACTIONS(1802), + [anon_sym_ATsynchronized] = ACTIONS(1802), + [anon_sym_ATtry] = ACTIONS(1802), + [anon_sym_ATthrow] = ACTIONS(1802), + [anon_sym_ATselector] = ACTIONS(1802), + [anon_sym_ATencode] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1800), + [sym_YES] = ACTIONS(1800), + [sym_NO] = ACTIONS(1800), + [anon_sym___builtin_available] = ACTIONS(1800), + [anon_sym_ATavailable] = ACTIONS(1802), + [anon_sym_va_arg] = ACTIONS(1800), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [512] = { + [sym_identifier] = ACTIONS(1800), + [aux_sym_preproc_include_token1] = ACTIONS(1802), + [aux_sym_preproc_def_token1] = ACTIONS(1802), + [aux_sym_preproc_if_token1] = ACTIONS(1800), + [aux_sym_preproc_if_token2] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1800), + [aux_sym_preproc_else_token1] = ACTIONS(1800), + [aux_sym_preproc_elif_token1] = ACTIONS(1800), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_CARET] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_typedef] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1800), + [anon_sym___attribute] = ACTIONS(1800), + [anon_sym___attribute__] = ACTIONS(1800), + [anon_sym___declspec] = ACTIONS(1800), + [anon_sym___cdecl] = ACTIONS(1800), + [anon_sym___clrcall] = ACTIONS(1800), + [anon_sym___stdcall] = ACTIONS(1800), + [anon_sym___fastcall] = ACTIONS(1800), + [anon_sym___thiscall] = ACTIONS(1800), + [anon_sym___vectorcall] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1800), + [anon_sym_auto] = ACTIONS(1800), + [anon_sym_register] = ACTIONS(1800), + [anon_sym_inline] = ACTIONS(1800), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_volatile] = ACTIONS(1800), + [anon_sym_restrict] = ACTIONS(1800), + [anon_sym__Atomic] = ACTIONS(1800), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_out] = ACTIONS(1800), + [anon_sym_inout] = ACTIONS(1800), + [anon_sym_bycopy] = ACTIONS(1800), + [anon_sym_byref] = ACTIONS(1800), + [anon_sym_oneway] = ACTIONS(1800), + [anon_sym__Nullable] = ACTIONS(1800), + [anon_sym__Nonnull] = ACTIONS(1800), + [anon_sym__Nullable_result] = ACTIONS(1800), + [anon_sym__Null_unspecified] = ACTIONS(1800), + [anon_sym___autoreleasing] = ACTIONS(1800), + [anon_sym___nullable] = ACTIONS(1800), + [anon_sym___nonnull] = ACTIONS(1800), + [anon_sym___strong] = ACTIONS(1800), + [anon_sym___weak] = ACTIONS(1800), + [anon_sym___bridge] = ACTIONS(1800), + [anon_sym___bridge_transfer] = ACTIONS(1800), + [anon_sym___bridge_retained] = ACTIONS(1800), + [anon_sym___unsafe_unretained] = ACTIONS(1800), + [anon_sym___block] = ACTIONS(1800), + [anon_sym___kindof] = ACTIONS(1800), + [anon_sym___unused] = ACTIONS(1800), + [anon_sym__Complex] = ACTIONS(1800), + [anon_sym___complex] = ACTIONS(1800), + [anon_sym_IBOutlet] = ACTIONS(1800), + [anon_sym_IBInspectable] = ACTIONS(1800), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1800), + [anon_sym_signed] = ACTIONS(1800), + [anon_sym_unsigned] = ACTIONS(1800), + [anon_sym_long] = ACTIONS(1800), + [anon_sym_short] = ACTIONS(1800), + [sym_primitive_type] = ACTIONS(1800), + [anon_sym_enum] = ACTIONS(1800), + [anon_sym_struct] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_do] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_goto] = ACTIONS(1800), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1802), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(1802), + [anon_sym_L_SQUOTE] = ACTIONS(1802), + [anon_sym_u_SQUOTE] = ACTIONS(1802), + [anon_sym_U_SQUOTE] = ACTIONS(1802), + [anon_sym_u8_SQUOTE] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_L_DQUOTE] = ACTIONS(1802), + [anon_sym_u_DQUOTE] = ACTIONS(1802), + [anon_sym_U_DQUOTE] = ACTIONS(1802), + [anon_sym_u8_DQUOTE] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym_true] = ACTIONS(1800), + [sym_false] = ACTIONS(1800), + [sym_null] = ACTIONS(1800), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1802), + [anon_sym_ATimport] = ACTIONS(1802), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1800), + [anon_sym_ATcompatibility_alias] = ACTIONS(1802), + [anon_sym_ATprotocol] = ACTIONS(1802), + [anon_sym_ATclass] = ACTIONS(1802), + [anon_sym_ATinterface] = ACTIONS(1802), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1800), + [sym_method_attribute_specifier] = ACTIONS(1800), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1800), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE] = ACTIONS(1800), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_API_AVAILABLE] = ACTIONS(1800), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_API_DEPRECATED] = ACTIONS(1800), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1800), + [anon_sym___deprecated_msg] = ACTIONS(1800), + [anon_sym___deprecated_enum_msg] = ACTIONS(1800), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1800), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1800), + [anon_sym_ATimplementation] = ACTIONS(1802), + [anon_sym_NS_ENUM] = ACTIONS(1800), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1800), + [anon_sym_NS_OPTIONS] = ACTIONS(1800), + [anon_sym_typeof] = ACTIONS(1800), + [anon_sym___typeof] = ACTIONS(1800), + [anon_sym___typeof__] = ACTIONS(1800), + [sym_self] = ACTIONS(1800), + [sym_super] = ACTIONS(1800), + [sym_nil] = ACTIONS(1800), + [sym_id] = ACTIONS(1800), + [sym_instancetype] = ACTIONS(1800), + [sym_Class] = ACTIONS(1800), + [sym_SEL] = ACTIONS(1800), + [sym_IMP] = ACTIONS(1800), + [sym_BOOL] = ACTIONS(1800), + [sym_auto] = ACTIONS(1800), + [anon_sym_ATautoreleasepool] = ACTIONS(1802), + [anon_sym_ATsynchronized] = ACTIONS(1802), + [anon_sym_ATtry] = ACTIONS(1802), + [anon_sym_ATthrow] = ACTIONS(1802), + [anon_sym_ATselector] = ACTIONS(1802), + [anon_sym_ATencode] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1800), + [sym_YES] = ACTIONS(1800), + [sym_NO] = ACTIONS(1800), + [anon_sym___builtin_available] = ACTIONS(1800), + [anon_sym_ATavailable] = ACTIONS(1802), + [anon_sym_va_arg] = ACTIONS(1800), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [513] = { + [sym_identifier] = ACTIONS(1804), + [aux_sym_preproc_include_token1] = ACTIONS(1806), + [aux_sym_preproc_def_token1] = ACTIONS(1806), + [aux_sym_preproc_if_token1] = ACTIONS(1804), + [aux_sym_preproc_if_token2] = ACTIONS(1804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1804), + [aux_sym_preproc_else_token1] = ACTIONS(1804), + [aux_sym_preproc_elif_token1] = ACTIONS(1804), + [anon_sym_LPAREN2] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1804), + [anon_sym_STAR] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_typedef] = ACTIONS(1804), + [anon_sym_extern] = ACTIONS(1804), + [anon_sym___attribute] = ACTIONS(1804), + [anon_sym___attribute__] = ACTIONS(1804), + [anon_sym___declspec] = ACTIONS(1804), + [anon_sym___cdecl] = ACTIONS(1804), + [anon_sym___clrcall] = ACTIONS(1804), + [anon_sym___stdcall] = ACTIONS(1804), + [anon_sym___fastcall] = ACTIONS(1804), + [anon_sym___thiscall] = ACTIONS(1804), + [anon_sym___vectorcall] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1806), + [anon_sym_LBRACK] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1804), + [anon_sym_auto] = ACTIONS(1804), + [anon_sym_register] = ACTIONS(1804), + [anon_sym_inline] = ACTIONS(1804), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_volatile] = ACTIONS(1804), + [anon_sym_restrict] = ACTIONS(1804), + [anon_sym__Atomic] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1804), + [anon_sym_out] = ACTIONS(1804), + [anon_sym_inout] = ACTIONS(1804), + [anon_sym_bycopy] = ACTIONS(1804), + [anon_sym_byref] = ACTIONS(1804), + [anon_sym_oneway] = ACTIONS(1804), + [anon_sym__Nullable] = ACTIONS(1804), + [anon_sym__Nonnull] = ACTIONS(1804), + [anon_sym__Nullable_result] = ACTIONS(1804), + [anon_sym__Null_unspecified] = ACTIONS(1804), + [anon_sym___autoreleasing] = ACTIONS(1804), + [anon_sym___nullable] = ACTIONS(1804), + [anon_sym___nonnull] = ACTIONS(1804), + [anon_sym___strong] = ACTIONS(1804), + [anon_sym___weak] = ACTIONS(1804), + [anon_sym___bridge] = ACTIONS(1804), + [anon_sym___bridge_transfer] = ACTIONS(1804), + [anon_sym___bridge_retained] = ACTIONS(1804), + [anon_sym___unsafe_unretained] = ACTIONS(1804), + [anon_sym___block] = ACTIONS(1804), + [anon_sym___kindof] = ACTIONS(1804), + [anon_sym___unused] = ACTIONS(1804), + [anon_sym__Complex] = ACTIONS(1804), + [anon_sym___complex] = ACTIONS(1804), + [anon_sym_IBOutlet] = ACTIONS(1804), + [anon_sym_IBInspectable] = ACTIONS(1804), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1804), + [anon_sym_signed] = ACTIONS(1804), + [anon_sym_unsigned] = ACTIONS(1804), + [anon_sym_long] = ACTIONS(1804), + [anon_sym_short] = ACTIONS(1804), + [sym_primitive_type] = ACTIONS(1804), + [anon_sym_enum] = ACTIONS(1804), + [anon_sym_struct] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_if] = ACTIONS(1804), + [anon_sym_switch] = ACTIONS(1804), + [anon_sym_case] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_while] = ACTIONS(1804), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1804), + [anon_sym_return] = ACTIONS(1804), + [anon_sym_break] = ACTIONS(1804), + [anon_sym_continue] = ACTIONS(1804), + [anon_sym_goto] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1806), + [anon_sym_PLUS_PLUS] = ACTIONS(1806), + [anon_sym_sizeof] = ACTIONS(1804), + [sym_number_literal] = ACTIONS(1806), + [anon_sym_L_SQUOTE] = ACTIONS(1806), + [anon_sym_u_SQUOTE] = ACTIONS(1806), + [anon_sym_U_SQUOTE] = ACTIONS(1806), + [anon_sym_u8_SQUOTE] = ACTIONS(1806), + [anon_sym_SQUOTE] = ACTIONS(1806), + [anon_sym_L_DQUOTE] = ACTIONS(1806), + [anon_sym_u_DQUOTE] = ACTIONS(1806), + [anon_sym_U_DQUOTE] = ACTIONS(1806), + [anon_sym_u8_DQUOTE] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1806), + [sym_true] = ACTIONS(1804), + [sym_false] = ACTIONS(1804), + [sym_null] = ACTIONS(1804), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1806), + [anon_sym_ATimport] = ACTIONS(1806), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1804), + [anon_sym_ATcompatibility_alias] = ACTIONS(1806), + [anon_sym_ATprotocol] = ACTIONS(1806), + [anon_sym_ATclass] = ACTIONS(1806), + [anon_sym_ATinterface] = ACTIONS(1806), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1804), + [sym_method_attribute_specifier] = ACTIONS(1804), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1804), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1804), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1804), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1804), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1804), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1804), + [anon_sym_NS_AVAILABLE] = ACTIONS(1804), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1804), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1804), + [anon_sym_API_AVAILABLE] = ACTIONS(1804), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1804), + [anon_sym_API_DEPRECATED] = ACTIONS(1804), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1804), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1804), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1804), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1804), + [anon_sym___deprecated_msg] = ACTIONS(1804), + [anon_sym___deprecated_enum_msg] = ACTIONS(1804), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1804), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1804), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1804), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1804), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1804), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1804), + [anon_sym_ATimplementation] = ACTIONS(1806), + [anon_sym_NS_ENUM] = ACTIONS(1804), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1804), + [anon_sym_NS_OPTIONS] = ACTIONS(1804), + [anon_sym_typeof] = ACTIONS(1804), + [anon_sym___typeof] = ACTIONS(1804), + [anon_sym___typeof__] = ACTIONS(1804), + [sym_self] = ACTIONS(1804), + [sym_super] = ACTIONS(1804), + [sym_nil] = ACTIONS(1804), + [sym_id] = ACTIONS(1804), + [sym_instancetype] = ACTIONS(1804), + [sym_Class] = ACTIONS(1804), + [sym_SEL] = ACTIONS(1804), + [sym_IMP] = ACTIONS(1804), + [sym_BOOL] = ACTIONS(1804), + [sym_auto] = ACTIONS(1804), + [anon_sym_ATautoreleasepool] = ACTIONS(1806), + [anon_sym_ATsynchronized] = ACTIONS(1806), + [anon_sym_ATtry] = ACTIONS(1806), + [anon_sym_ATthrow] = ACTIONS(1806), + [anon_sym_ATselector] = ACTIONS(1806), + [anon_sym_ATencode] = ACTIONS(1806), + [anon_sym_AT] = ACTIONS(1804), + [sym_YES] = ACTIONS(1804), + [sym_NO] = ACTIONS(1804), + [anon_sym___builtin_available] = ACTIONS(1804), + [anon_sym_ATavailable] = ACTIONS(1806), + [anon_sym_va_arg] = ACTIONS(1804), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [514] = { + [sym_identifier] = ACTIONS(1808), + [aux_sym_preproc_include_token1] = ACTIONS(1810), + [aux_sym_preproc_def_token1] = ACTIONS(1810), + [aux_sym_preproc_if_token1] = ACTIONS(1808), + [aux_sym_preproc_if_token2] = ACTIONS(1808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1808), + [aux_sym_preproc_else_token1] = ACTIONS(1808), + [aux_sym_preproc_elif_token1] = ACTIONS(1808), + [anon_sym_LPAREN2] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_CARET] = ACTIONS(1810), + [anon_sym_AMP] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_typedef] = ACTIONS(1808), + [anon_sym_extern] = ACTIONS(1808), + [anon_sym___attribute] = ACTIONS(1808), + [anon_sym___attribute__] = ACTIONS(1808), + [anon_sym___declspec] = ACTIONS(1808), + [anon_sym___cdecl] = ACTIONS(1808), + [anon_sym___clrcall] = ACTIONS(1808), + [anon_sym___stdcall] = ACTIONS(1808), + [anon_sym___fastcall] = ACTIONS(1808), + [anon_sym___thiscall] = ACTIONS(1808), + [anon_sym___vectorcall] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_static] = ACTIONS(1808), + [anon_sym_auto] = ACTIONS(1808), + [anon_sym_register] = ACTIONS(1808), + [anon_sym_inline] = ACTIONS(1808), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1808), + [anon_sym_const] = ACTIONS(1808), + [anon_sym_volatile] = ACTIONS(1808), + [anon_sym_restrict] = ACTIONS(1808), + [anon_sym__Atomic] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_out] = ACTIONS(1808), + [anon_sym_inout] = ACTIONS(1808), + [anon_sym_bycopy] = ACTIONS(1808), + [anon_sym_byref] = ACTIONS(1808), + [anon_sym_oneway] = ACTIONS(1808), + [anon_sym__Nullable] = ACTIONS(1808), + [anon_sym__Nonnull] = ACTIONS(1808), + [anon_sym__Nullable_result] = ACTIONS(1808), + [anon_sym__Null_unspecified] = ACTIONS(1808), + [anon_sym___autoreleasing] = ACTIONS(1808), + [anon_sym___nullable] = ACTIONS(1808), + [anon_sym___nonnull] = ACTIONS(1808), + [anon_sym___strong] = ACTIONS(1808), + [anon_sym___weak] = ACTIONS(1808), + [anon_sym___bridge] = ACTIONS(1808), + [anon_sym___bridge_transfer] = ACTIONS(1808), + [anon_sym___bridge_retained] = ACTIONS(1808), + [anon_sym___unsafe_unretained] = ACTIONS(1808), + [anon_sym___block] = ACTIONS(1808), + [anon_sym___kindof] = ACTIONS(1808), + [anon_sym___unused] = ACTIONS(1808), + [anon_sym__Complex] = ACTIONS(1808), + [anon_sym___complex] = ACTIONS(1808), + [anon_sym_IBOutlet] = ACTIONS(1808), + [anon_sym_IBInspectable] = ACTIONS(1808), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1808), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), + [sym_primitive_type] = ACTIONS(1808), + [anon_sym_enum] = ACTIONS(1808), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_switch] = ACTIONS(1808), + [anon_sym_case] = ACTIONS(1808), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_do] = ACTIONS(1808), + [anon_sym_for] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_goto] = ACTIONS(1808), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_sizeof] = ACTIONS(1808), + [sym_number_literal] = ACTIONS(1810), + [anon_sym_L_SQUOTE] = ACTIONS(1810), + [anon_sym_u_SQUOTE] = ACTIONS(1810), + [anon_sym_U_SQUOTE] = ACTIONS(1810), + [anon_sym_u8_SQUOTE] = ACTIONS(1810), + [anon_sym_SQUOTE] = ACTIONS(1810), + [anon_sym_L_DQUOTE] = ACTIONS(1810), + [anon_sym_u_DQUOTE] = ACTIONS(1810), + [anon_sym_U_DQUOTE] = ACTIONS(1810), + [anon_sym_u8_DQUOTE] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1810), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_null] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1810), + [anon_sym_ATimport] = ACTIONS(1810), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1808), + [anon_sym_ATcompatibility_alias] = ACTIONS(1810), + [anon_sym_ATprotocol] = ACTIONS(1810), + [anon_sym_ATclass] = ACTIONS(1810), + [anon_sym_ATinterface] = ACTIONS(1810), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1808), + [sym_method_attribute_specifier] = ACTIONS(1808), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1808), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1808), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1808), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1808), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1808), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1808), + [anon_sym_NS_AVAILABLE] = ACTIONS(1808), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1808), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1808), + [anon_sym_API_AVAILABLE] = ACTIONS(1808), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1808), + [anon_sym_API_DEPRECATED] = ACTIONS(1808), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1808), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1808), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1808), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1808), + [anon_sym___deprecated_msg] = ACTIONS(1808), + [anon_sym___deprecated_enum_msg] = ACTIONS(1808), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1808), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1808), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1808), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1808), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1808), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1808), + [anon_sym_ATimplementation] = ACTIONS(1810), + [anon_sym_NS_ENUM] = ACTIONS(1808), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1808), + [anon_sym_NS_OPTIONS] = ACTIONS(1808), + [anon_sym_typeof] = ACTIONS(1808), + [anon_sym___typeof] = ACTIONS(1808), + [anon_sym___typeof__] = ACTIONS(1808), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_nil] = ACTIONS(1808), + [sym_id] = ACTIONS(1808), + [sym_instancetype] = ACTIONS(1808), + [sym_Class] = ACTIONS(1808), + [sym_SEL] = ACTIONS(1808), + [sym_IMP] = ACTIONS(1808), + [sym_BOOL] = ACTIONS(1808), + [sym_auto] = ACTIONS(1808), + [anon_sym_ATautoreleasepool] = ACTIONS(1810), + [anon_sym_ATsynchronized] = ACTIONS(1810), + [anon_sym_ATtry] = ACTIONS(1810), + [anon_sym_ATthrow] = ACTIONS(1810), + [anon_sym_ATselector] = ACTIONS(1810), + [anon_sym_ATencode] = ACTIONS(1810), + [anon_sym_AT] = ACTIONS(1808), + [sym_YES] = ACTIONS(1808), + [sym_NO] = ACTIONS(1808), + [anon_sym___builtin_available] = ACTIONS(1808), + [anon_sym_ATavailable] = ACTIONS(1810), + [anon_sym_va_arg] = ACTIONS(1808), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [515] = { + [sym_identifier] = ACTIONS(1812), + [aux_sym_preproc_include_token1] = ACTIONS(1814), + [aux_sym_preproc_def_token1] = ACTIONS(1814), + [aux_sym_preproc_if_token1] = ACTIONS(1812), + [aux_sym_preproc_if_token2] = ACTIONS(1812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1812), + [aux_sym_preproc_else_token1] = ACTIONS(1812), + [aux_sym_preproc_elif_token1] = ACTIONS(1812), + [anon_sym_LPAREN2] = ACTIONS(1814), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1812), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_CARET] = ACTIONS(1814), + [anon_sym_AMP] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1814), + [anon_sym_typedef] = ACTIONS(1812), + [anon_sym_extern] = ACTIONS(1812), + [anon_sym___attribute] = ACTIONS(1812), + [anon_sym___attribute__] = ACTIONS(1812), + [anon_sym___declspec] = ACTIONS(1812), + [anon_sym___cdecl] = ACTIONS(1812), + [anon_sym___clrcall] = ACTIONS(1812), + [anon_sym___stdcall] = ACTIONS(1812), + [anon_sym___fastcall] = ACTIONS(1812), + [anon_sym___thiscall] = ACTIONS(1812), + [anon_sym___vectorcall] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1814), + [anon_sym_LBRACK] = ACTIONS(1814), + [anon_sym_static] = ACTIONS(1812), + [anon_sym_auto] = ACTIONS(1812), + [anon_sym_register] = ACTIONS(1812), + [anon_sym_inline] = ACTIONS(1812), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1812), + [anon_sym_const] = ACTIONS(1812), + [anon_sym_volatile] = ACTIONS(1812), + [anon_sym_restrict] = ACTIONS(1812), + [anon_sym__Atomic] = ACTIONS(1812), + [anon_sym_in] = ACTIONS(1812), + [anon_sym_out] = ACTIONS(1812), + [anon_sym_inout] = ACTIONS(1812), + [anon_sym_bycopy] = ACTIONS(1812), + [anon_sym_byref] = ACTIONS(1812), + [anon_sym_oneway] = ACTIONS(1812), + [anon_sym__Nullable] = ACTIONS(1812), + [anon_sym__Nonnull] = ACTIONS(1812), + [anon_sym__Nullable_result] = ACTIONS(1812), + [anon_sym__Null_unspecified] = ACTIONS(1812), + [anon_sym___autoreleasing] = ACTIONS(1812), + [anon_sym___nullable] = ACTIONS(1812), + [anon_sym___nonnull] = ACTIONS(1812), + [anon_sym___strong] = ACTIONS(1812), + [anon_sym___weak] = ACTIONS(1812), + [anon_sym___bridge] = ACTIONS(1812), + [anon_sym___bridge_transfer] = ACTIONS(1812), + [anon_sym___bridge_retained] = ACTIONS(1812), + [anon_sym___unsafe_unretained] = ACTIONS(1812), + [anon_sym___block] = ACTIONS(1812), + [anon_sym___kindof] = ACTIONS(1812), + [anon_sym___unused] = ACTIONS(1812), + [anon_sym__Complex] = ACTIONS(1812), + [anon_sym___complex] = ACTIONS(1812), + [anon_sym_IBOutlet] = ACTIONS(1812), + [anon_sym_IBInspectable] = ACTIONS(1812), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1812), + [anon_sym_signed] = ACTIONS(1812), + [anon_sym_unsigned] = ACTIONS(1812), + [anon_sym_long] = ACTIONS(1812), + [anon_sym_short] = ACTIONS(1812), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1812), + [anon_sym_struct] = ACTIONS(1812), + [anon_sym_union] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1812), + [anon_sym_switch] = ACTIONS(1812), + [anon_sym_case] = ACTIONS(1812), + [anon_sym_default] = ACTIONS(1812), + [anon_sym_while] = ACTIONS(1812), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1812), + [anon_sym_return] = ACTIONS(1812), + [anon_sym_break] = ACTIONS(1812), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_goto] = ACTIONS(1812), + [anon_sym_DASH_DASH] = ACTIONS(1814), + [anon_sym_PLUS_PLUS] = ACTIONS(1814), + [anon_sym_sizeof] = ACTIONS(1812), + [sym_number_literal] = ACTIONS(1814), + [anon_sym_L_SQUOTE] = ACTIONS(1814), + [anon_sym_u_SQUOTE] = ACTIONS(1814), + [anon_sym_U_SQUOTE] = ACTIONS(1814), + [anon_sym_u8_SQUOTE] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1814), + [anon_sym_L_DQUOTE] = ACTIONS(1814), + [anon_sym_u_DQUOTE] = ACTIONS(1814), + [anon_sym_U_DQUOTE] = ACTIONS(1814), + [anon_sym_u8_DQUOTE] = ACTIONS(1814), + [anon_sym_DQUOTE] = ACTIONS(1814), + [sym_true] = ACTIONS(1812), + [sym_false] = ACTIONS(1812), + [sym_null] = ACTIONS(1812), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1814), + [anon_sym_ATimport] = ACTIONS(1814), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1812), + [anon_sym_ATcompatibility_alias] = ACTIONS(1814), + [anon_sym_ATprotocol] = ACTIONS(1814), + [anon_sym_ATclass] = ACTIONS(1814), + [anon_sym_ATinterface] = ACTIONS(1814), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1812), + [sym_method_attribute_specifier] = ACTIONS(1812), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1812), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1812), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1812), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1812), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1812), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1812), + [anon_sym_NS_AVAILABLE] = ACTIONS(1812), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1812), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1812), + [anon_sym_API_AVAILABLE] = ACTIONS(1812), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1812), + [anon_sym_API_DEPRECATED] = ACTIONS(1812), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1812), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1812), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1812), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1812), + [anon_sym___deprecated_msg] = ACTIONS(1812), + [anon_sym___deprecated_enum_msg] = ACTIONS(1812), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1812), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1812), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1812), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1812), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1812), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1812), + [anon_sym_ATimplementation] = ACTIONS(1814), + [anon_sym_NS_ENUM] = ACTIONS(1812), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1812), + [anon_sym_NS_OPTIONS] = ACTIONS(1812), + [anon_sym_typeof] = ACTIONS(1812), + [anon_sym___typeof] = ACTIONS(1812), + [anon_sym___typeof__] = ACTIONS(1812), + [sym_self] = ACTIONS(1812), + [sym_super] = ACTIONS(1812), + [sym_nil] = ACTIONS(1812), + [sym_id] = ACTIONS(1812), + [sym_instancetype] = ACTIONS(1812), + [sym_Class] = ACTIONS(1812), + [sym_SEL] = ACTIONS(1812), + [sym_IMP] = ACTIONS(1812), + [sym_BOOL] = ACTIONS(1812), + [sym_auto] = ACTIONS(1812), + [anon_sym_ATautoreleasepool] = ACTIONS(1814), + [anon_sym_ATsynchronized] = ACTIONS(1814), + [anon_sym_ATtry] = ACTIONS(1814), + [anon_sym_ATthrow] = ACTIONS(1814), + [anon_sym_ATselector] = ACTIONS(1814), + [anon_sym_ATencode] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(1812), + [sym_YES] = ACTIONS(1812), + [sym_NO] = ACTIONS(1812), + [anon_sym___builtin_available] = ACTIONS(1812), + [anon_sym_ATavailable] = ACTIONS(1814), + [anon_sym_va_arg] = ACTIONS(1812), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [516] = { + [sym_identifier] = ACTIONS(1816), + [aux_sym_preproc_include_token1] = ACTIONS(1818), + [aux_sym_preproc_def_token1] = ACTIONS(1818), + [aux_sym_preproc_if_token1] = ACTIONS(1816), + [aux_sym_preproc_if_token2] = ACTIONS(1816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1816), + [aux_sym_preproc_else_token1] = ACTIONS(1816), + [aux_sym_preproc_elif_token1] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_BANG] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1816), + [anon_sym_STAR] = ACTIONS(1818), + [anon_sym_CARET] = ACTIONS(1818), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_typedef] = ACTIONS(1816), + [anon_sym_extern] = ACTIONS(1816), + [anon_sym___attribute] = ACTIONS(1816), + [anon_sym___attribute__] = ACTIONS(1816), + [anon_sym___declspec] = ACTIONS(1816), + [anon_sym___cdecl] = ACTIONS(1816), + [anon_sym___clrcall] = ACTIONS(1816), + [anon_sym___stdcall] = ACTIONS(1816), + [anon_sym___fastcall] = ACTIONS(1816), + [anon_sym___thiscall] = ACTIONS(1816), + [anon_sym___vectorcall] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(1818), + [anon_sym_static] = ACTIONS(1816), + [anon_sym_auto] = ACTIONS(1816), + [anon_sym_register] = ACTIONS(1816), + [anon_sym_inline] = ACTIONS(1816), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1816), + [anon_sym_const] = ACTIONS(1816), + [anon_sym_volatile] = ACTIONS(1816), + [anon_sym_restrict] = ACTIONS(1816), + [anon_sym__Atomic] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1816), + [anon_sym_out] = ACTIONS(1816), + [anon_sym_inout] = ACTIONS(1816), + [anon_sym_bycopy] = ACTIONS(1816), + [anon_sym_byref] = ACTIONS(1816), + [anon_sym_oneway] = ACTIONS(1816), + [anon_sym__Nullable] = ACTIONS(1816), + [anon_sym__Nonnull] = ACTIONS(1816), + [anon_sym__Nullable_result] = ACTIONS(1816), + [anon_sym__Null_unspecified] = ACTIONS(1816), + [anon_sym___autoreleasing] = ACTIONS(1816), + [anon_sym___nullable] = ACTIONS(1816), + [anon_sym___nonnull] = ACTIONS(1816), + [anon_sym___strong] = ACTIONS(1816), + [anon_sym___weak] = ACTIONS(1816), + [anon_sym___bridge] = ACTIONS(1816), + [anon_sym___bridge_transfer] = ACTIONS(1816), + [anon_sym___bridge_retained] = ACTIONS(1816), + [anon_sym___unsafe_unretained] = ACTIONS(1816), + [anon_sym___block] = ACTIONS(1816), + [anon_sym___kindof] = ACTIONS(1816), + [anon_sym___unused] = ACTIONS(1816), + [anon_sym__Complex] = ACTIONS(1816), + [anon_sym___complex] = ACTIONS(1816), + [anon_sym_IBOutlet] = ACTIONS(1816), + [anon_sym_IBInspectable] = ACTIONS(1816), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1816), + [anon_sym_signed] = ACTIONS(1816), + [anon_sym_unsigned] = ACTIONS(1816), + [anon_sym_long] = ACTIONS(1816), + [anon_sym_short] = ACTIONS(1816), + [sym_primitive_type] = ACTIONS(1816), + [anon_sym_enum] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1816), + [anon_sym_union] = ACTIONS(1816), + [anon_sym_if] = ACTIONS(1816), + [anon_sym_switch] = ACTIONS(1816), + [anon_sym_case] = ACTIONS(1816), + [anon_sym_default] = ACTIONS(1816), + [anon_sym_while] = ACTIONS(1816), + [anon_sym_do] = ACTIONS(1816), + [anon_sym_for] = ACTIONS(1816), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1816), + [anon_sym_continue] = ACTIONS(1816), + [anon_sym_goto] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1818), + [anon_sym_PLUS_PLUS] = ACTIONS(1818), + [anon_sym_sizeof] = ACTIONS(1816), + [sym_number_literal] = ACTIONS(1818), + [anon_sym_L_SQUOTE] = ACTIONS(1818), + [anon_sym_u_SQUOTE] = ACTIONS(1818), + [anon_sym_U_SQUOTE] = ACTIONS(1818), + [anon_sym_u8_SQUOTE] = ACTIONS(1818), + [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_L_DQUOTE] = ACTIONS(1818), + [anon_sym_u_DQUOTE] = ACTIONS(1818), + [anon_sym_U_DQUOTE] = ACTIONS(1818), + [anon_sym_u8_DQUOTE] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [sym_true] = ACTIONS(1816), + [sym_false] = ACTIONS(1816), + [sym_null] = ACTIONS(1816), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1818), + [anon_sym_ATimport] = ACTIONS(1818), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1816), + [anon_sym_ATcompatibility_alias] = ACTIONS(1818), + [anon_sym_ATprotocol] = ACTIONS(1818), + [anon_sym_ATclass] = ACTIONS(1818), + [anon_sym_ATinterface] = ACTIONS(1818), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1816), + [sym_method_attribute_specifier] = ACTIONS(1816), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1816), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1816), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1816), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1816), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1816), + [anon_sym_NS_AVAILABLE] = ACTIONS(1816), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1816), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_API_AVAILABLE] = ACTIONS(1816), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_API_DEPRECATED] = ACTIONS(1816), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1816), + [anon_sym___deprecated_msg] = ACTIONS(1816), + [anon_sym___deprecated_enum_msg] = ACTIONS(1816), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1816), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1816), + [anon_sym_ATimplementation] = ACTIONS(1818), + [anon_sym_NS_ENUM] = ACTIONS(1816), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1816), + [anon_sym_NS_OPTIONS] = ACTIONS(1816), + [anon_sym_typeof] = ACTIONS(1816), + [anon_sym___typeof] = ACTIONS(1816), + [anon_sym___typeof__] = ACTIONS(1816), + [sym_self] = ACTIONS(1816), + [sym_super] = ACTIONS(1816), + [sym_nil] = ACTIONS(1816), + [sym_id] = ACTIONS(1816), + [sym_instancetype] = ACTIONS(1816), + [sym_Class] = ACTIONS(1816), + [sym_SEL] = ACTIONS(1816), + [sym_IMP] = ACTIONS(1816), + [sym_BOOL] = ACTIONS(1816), + [sym_auto] = ACTIONS(1816), + [anon_sym_ATautoreleasepool] = ACTIONS(1818), + [anon_sym_ATsynchronized] = ACTIONS(1818), + [anon_sym_ATtry] = ACTIONS(1818), + [anon_sym_ATthrow] = ACTIONS(1818), + [anon_sym_ATselector] = ACTIONS(1818), + [anon_sym_ATencode] = ACTIONS(1818), + [anon_sym_AT] = ACTIONS(1816), + [sym_YES] = ACTIONS(1816), + [sym_NO] = ACTIONS(1816), + [anon_sym___builtin_available] = ACTIONS(1816), + [anon_sym_ATavailable] = ACTIONS(1818), + [anon_sym_va_arg] = ACTIONS(1816), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [517] = { + [sym_identifier] = ACTIONS(1820), + [aux_sym_preproc_include_token1] = ACTIONS(1822), + [aux_sym_preproc_def_token1] = ACTIONS(1822), + [aux_sym_preproc_if_token1] = ACTIONS(1820), + [aux_sym_preproc_if_token2] = ACTIONS(1820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1820), + [aux_sym_preproc_else_token1] = ACTIONS(1820), + [aux_sym_preproc_elif_token1] = ACTIONS(1820), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_CARET] = ACTIONS(1822), + [anon_sym_AMP] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_typedef] = ACTIONS(1820), + [anon_sym_extern] = ACTIONS(1820), + [anon_sym___attribute] = ACTIONS(1820), + [anon_sym___attribute__] = ACTIONS(1820), + [anon_sym___declspec] = ACTIONS(1820), + [anon_sym___cdecl] = ACTIONS(1820), + [anon_sym___clrcall] = ACTIONS(1820), + [anon_sym___stdcall] = ACTIONS(1820), + [anon_sym___fastcall] = ACTIONS(1820), + [anon_sym___thiscall] = ACTIONS(1820), + [anon_sym___vectorcall] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_static] = ACTIONS(1820), + [anon_sym_auto] = ACTIONS(1820), + [anon_sym_register] = ACTIONS(1820), + [anon_sym_inline] = ACTIONS(1820), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1820), + [anon_sym_const] = ACTIONS(1820), + [anon_sym_volatile] = ACTIONS(1820), + [anon_sym_restrict] = ACTIONS(1820), + [anon_sym__Atomic] = ACTIONS(1820), + [anon_sym_in] = ACTIONS(1820), + [anon_sym_out] = ACTIONS(1820), + [anon_sym_inout] = ACTIONS(1820), + [anon_sym_bycopy] = ACTIONS(1820), + [anon_sym_byref] = ACTIONS(1820), + [anon_sym_oneway] = ACTIONS(1820), + [anon_sym__Nullable] = ACTIONS(1820), + [anon_sym__Nonnull] = ACTIONS(1820), + [anon_sym__Nullable_result] = ACTIONS(1820), + [anon_sym__Null_unspecified] = ACTIONS(1820), + [anon_sym___autoreleasing] = ACTIONS(1820), + [anon_sym___nullable] = ACTIONS(1820), + [anon_sym___nonnull] = ACTIONS(1820), + [anon_sym___strong] = ACTIONS(1820), + [anon_sym___weak] = ACTIONS(1820), + [anon_sym___bridge] = ACTIONS(1820), + [anon_sym___bridge_transfer] = ACTIONS(1820), + [anon_sym___bridge_retained] = ACTIONS(1820), + [anon_sym___unsafe_unretained] = ACTIONS(1820), + [anon_sym___block] = ACTIONS(1820), + [anon_sym___kindof] = ACTIONS(1820), + [anon_sym___unused] = ACTIONS(1820), + [anon_sym__Complex] = ACTIONS(1820), + [anon_sym___complex] = ACTIONS(1820), + [anon_sym_IBOutlet] = ACTIONS(1820), + [anon_sym_IBInspectable] = ACTIONS(1820), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1820), + [anon_sym_signed] = ACTIONS(1820), + [anon_sym_unsigned] = ACTIONS(1820), + [anon_sym_long] = ACTIONS(1820), + [anon_sym_short] = ACTIONS(1820), + [sym_primitive_type] = ACTIONS(1820), + [anon_sym_enum] = ACTIONS(1820), + [anon_sym_struct] = ACTIONS(1820), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_if] = ACTIONS(1820), + [anon_sym_switch] = ACTIONS(1820), + [anon_sym_case] = ACTIONS(1820), + [anon_sym_default] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1820), + [anon_sym_do] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1820), + [anon_sym_return] = ACTIONS(1820), + [anon_sym_break] = ACTIONS(1820), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_goto] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1820), + [sym_number_literal] = ACTIONS(1822), + [anon_sym_L_SQUOTE] = ACTIONS(1822), + [anon_sym_u_SQUOTE] = ACTIONS(1822), + [anon_sym_U_SQUOTE] = ACTIONS(1822), + [anon_sym_u8_SQUOTE] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_L_DQUOTE] = ACTIONS(1822), + [anon_sym_u_DQUOTE] = ACTIONS(1822), + [anon_sym_U_DQUOTE] = ACTIONS(1822), + [anon_sym_u8_DQUOTE] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [sym_true] = ACTIONS(1820), + [sym_false] = ACTIONS(1820), + [sym_null] = ACTIONS(1820), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1822), + [anon_sym_ATimport] = ACTIONS(1822), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1820), + [anon_sym_ATcompatibility_alias] = ACTIONS(1822), + [anon_sym_ATprotocol] = ACTIONS(1822), + [anon_sym_ATclass] = ACTIONS(1822), + [anon_sym_ATinterface] = ACTIONS(1822), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1820), + [sym_method_attribute_specifier] = ACTIONS(1820), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1820), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1820), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1820), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1820), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1820), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1820), + [anon_sym_NS_AVAILABLE] = ACTIONS(1820), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1820), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1820), + [anon_sym_API_AVAILABLE] = ACTIONS(1820), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1820), + [anon_sym_API_DEPRECATED] = ACTIONS(1820), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1820), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1820), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1820), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1820), + [anon_sym___deprecated_msg] = ACTIONS(1820), + [anon_sym___deprecated_enum_msg] = ACTIONS(1820), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1820), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1820), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1820), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1820), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1820), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1820), + [anon_sym_ATimplementation] = ACTIONS(1822), + [anon_sym_NS_ENUM] = ACTIONS(1820), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1820), + [anon_sym_NS_OPTIONS] = ACTIONS(1820), + [anon_sym_typeof] = ACTIONS(1820), + [anon_sym___typeof] = ACTIONS(1820), + [anon_sym___typeof__] = ACTIONS(1820), + [sym_self] = ACTIONS(1820), + [sym_super] = ACTIONS(1820), + [sym_nil] = ACTIONS(1820), + [sym_id] = ACTIONS(1820), + [sym_instancetype] = ACTIONS(1820), + [sym_Class] = ACTIONS(1820), + [sym_SEL] = ACTIONS(1820), + [sym_IMP] = ACTIONS(1820), + [sym_BOOL] = ACTIONS(1820), + [sym_auto] = ACTIONS(1820), + [anon_sym_ATautoreleasepool] = ACTIONS(1822), + [anon_sym_ATsynchronized] = ACTIONS(1822), + [anon_sym_ATtry] = ACTIONS(1822), + [anon_sym_ATthrow] = ACTIONS(1822), + [anon_sym_ATselector] = ACTIONS(1822), + [anon_sym_ATencode] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1820), + [sym_YES] = ACTIONS(1820), + [sym_NO] = ACTIONS(1820), + [anon_sym___builtin_available] = ACTIONS(1820), + [anon_sym_ATavailable] = ACTIONS(1822), + [anon_sym_va_arg] = ACTIONS(1820), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [518] = { + [sym_identifier] = ACTIONS(1824), + [aux_sym_preproc_include_token1] = ACTIONS(1826), + [aux_sym_preproc_def_token1] = ACTIONS(1826), + [aux_sym_preproc_if_token1] = ACTIONS(1824), + [aux_sym_preproc_if_token2] = ACTIONS(1824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1824), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1824), + [aux_sym_preproc_else_token1] = ACTIONS(1824), + [aux_sym_preproc_elif_token1] = ACTIONS(1824), + [anon_sym_LPAREN2] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_STAR] = ACTIONS(1826), + [anon_sym_CARET] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_typedef] = ACTIONS(1824), + [anon_sym_extern] = ACTIONS(1824), + [anon_sym___attribute] = ACTIONS(1824), + [anon_sym___attribute__] = ACTIONS(1824), + [anon_sym___declspec] = ACTIONS(1824), + [anon_sym___cdecl] = ACTIONS(1824), + [anon_sym___clrcall] = ACTIONS(1824), + [anon_sym___stdcall] = ACTIONS(1824), + [anon_sym___fastcall] = ACTIONS(1824), + [anon_sym___thiscall] = ACTIONS(1824), + [anon_sym___vectorcall] = ACTIONS(1824), + [anon_sym_LBRACE] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1826), + [anon_sym_static] = ACTIONS(1824), + [anon_sym_auto] = ACTIONS(1824), + [anon_sym_register] = ACTIONS(1824), + [anon_sym_inline] = ACTIONS(1824), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1824), + [anon_sym_const] = ACTIONS(1824), + [anon_sym_volatile] = ACTIONS(1824), + [anon_sym_restrict] = ACTIONS(1824), + [anon_sym__Atomic] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1824), + [anon_sym_out] = ACTIONS(1824), + [anon_sym_inout] = ACTIONS(1824), + [anon_sym_bycopy] = ACTIONS(1824), + [anon_sym_byref] = ACTIONS(1824), + [anon_sym_oneway] = ACTIONS(1824), + [anon_sym__Nullable] = ACTIONS(1824), + [anon_sym__Nonnull] = ACTIONS(1824), + [anon_sym__Nullable_result] = ACTIONS(1824), + [anon_sym__Null_unspecified] = ACTIONS(1824), + [anon_sym___autoreleasing] = ACTIONS(1824), + [anon_sym___nullable] = ACTIONS(1824), + [anon_sym___nonnull] = ACTIONS(1824), + [anon_sym___strong] = ACTIONS(1824), + [anon_sym___weak] = ACTIONS(1824), + [anon_sym___bridge] = ACTIONS(1824), + [anon_sym___bridge_transfer] = ACTIONS(1824), + [anon_sym___bridge_retained] = ACTIONS(1824), + [anon_sym___unsafe_unretained] = ACTIONS(1824), + [anon_sym___block] = ACTIONS(1824), + [anon_sym___kindof] = ACTIONS(1824), + [anon_sym___unused] = ACTIONS(1824), + [anon_sym__Complex] = ACTIONS(1824), + [anon_sym___complex] = ACTIONS(1824), + [anon_sym_IBOutlet] = ACTIONS(1824), + [anon_sym_IBInspectable] = ACTIONS(1824), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1824), + [anon_sym_signed] = ACTIONS(1824), + [anon_sym_unsigned] = ACTIONS(1824), + [anon_sym_long] = ACTIONS(1824), + [anon_sym_short] = ACTIONS(1824), + [sym_primitive_type] = ACTIONS(1824), + [anon_sym_enum] = ACTIONS(1824), + [anon_sym_struct] = ACTIONS(1824), + [anon_sym_union] = ACTIONS(1824), + [anon_sym_if] = ACTIONS(1824), + [anon_sym_switch] = ACTIONS(1824), + [anon_sym_case] = ACTIONS(1824), + [anon_sym_default] = ACTIONS(1824), + [anon_sym_while] = ACTIONS(1824), + [anon_sym_do] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(1824), + [anon_sym_return] = ACTIONS(1824), + [anon_sym_break] = ACTIONS(1824), + [anon_sym_continue] = ACTIONS(1824), + [anon_sym_goto] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1826), + [anon_sym_PLUS_PLUS] = ACTIONS(1826), + [anon_sym_sizeof] = ACTIONS(1824), + [sym_number_literal] = ACTIONS(1826), + [anon_sym_L_SQUOTE] = ACTIONS(1826), + [anon_sym_u_SQUOTE] = ACTIONS(1826), + [anon_sym_U_SQUOTE] = ACTIONS(1826), + [anon_sym_u8_SQUOTE] = ACTIONS(1826), + [anon_sym_SQUOTE] = ACTIONS(1826), + [anon_sym_L_DQUOTE] = ACTIONS(1826), + [anon_sym_u_DQUOTE] = ACTIONS(1826), + [anon_sym_U_DQUOTE] = ACTIONS(1826), + [anon_sym_u8_DQUOTE] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [sym_true] = ACTIONS(1824), + [sym_false] = ACTIONS(1824), + [sym_null] = ACTIONS(1824), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1826), + [anon_sym_ATimport] = ACTIONS(1826), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1824), + [anon_sym_ATcompatibility_alias] = ACTIONS(1826), + [anon_sym_ATprotocol] = ACTIONS(1826), + [anon_sym_ATclass] = ACTIONS(1826), + [anon_sym_ATinterface] = ACTIONS(1826), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1824), + [sym_method_attribute_specifier] = ACTIONS(1824), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1824), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1824), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1824), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1824), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1824), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1824), + [anon_sym_NS_AVAILABLE] = ACTIONS(1824), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1824), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1824), + [anon_sym_API_AVAILABLE] = ACTIONS(1824), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1824), + [anon_sym_API_DEPRECATED] = ACTIONS(1824), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1824), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1824), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1824), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1824), + [anon_sym___deprecated_msg] = ACTIONS(1824), + [anon_sym___deprecated_enum_msg] = ACTIONS(1824), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1824), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1824), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1824), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1824), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1824), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1824), + [anon_sym_ATimplementation] = ACTIONS(1826), + [anon_sym_NS_ENUM] = ACTIONS(1824), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1824), + [anon_sym_NS_OPTIONS] = ACTIONS(1824), + [anon_sym_typeof] = ACTIONS(1824), + [anon_sym___typeof] = ACTIONS(1824), + [anon_sym___typeof__] = ACTIONS(1824), + [sym_self] = ACTIONS(1824), + [sym_super] = ACTIONS(1824), + [sym_nil] = ACTIONS(1824), + [sym_id] = ACTIONS(1824), + [sym_instancetype] = ACTIONS(1824), + [sym_Class] = ACTIONS(1824), + [sym_SEL] = ACTIONS(1824), + [sym_IMP] = ACTIONS(1824), + [sym_BOOL] = ACTIONS(1824), + [sym_auto] = ACTIONS(1824), + [anon_sym_ATautoreleasepool] = ACTIONS(1826), + [anon_sym_ATsynchronized] = ACTIONS(1826), + [anon_sym_ATtry] = ACTIONS(1826), + [anon_sym_ATthrow] = ACTIONS(1826), + [anon_sym_ATselector] = ACTIONS(1826), + [anon_sym_ATencode] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(1824), + [sym_YES] = ACTIONS(1824), + [sym_NO] = ACTIONS(1824), + [anon_sym___builtin_available] = ACTIONS(1824), + [anon_sym_ATavailable] = ACTIONS(1826), + [anon_sym_va_arg] = ACTIONS(1824), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [519] = { + [sym_identifier] = ACTIONS(1828), + [aux_sym_preproc_include_token1] = ACTIONS(1830), + [aux_sym_preproc_def_token1] = ACTIONS(1830), + [aux_sym_preproc_if_token1] = ACTIONS(1828), + [aux_sym_preproc_if_token2] = ACTIONS(1828), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1828), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1828), + [aux_sym_preproc_else_token1] = ACTIONS(1828), + [aux_sym_preproc_elif_token1] = ACTIONS(1828), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1828), + [anon_sym_STAR] = ACTIONS(1830), + [anon_sym_CARET] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_typedef] = ACTIONS(1828), + [anon_sym_extern] = ACTIONS(1828), + [anon_sym___attribute] = ACTIONS(1828), + [anon_sym___attribute__] = ACTIONS(1828), + [anon_sym___declspec] = ACTIONS(1828), + [anon_sym___cdecl] = ACTIONS(1828), + [anon_sym___clrcall] = ACTIONS(1828), + [anon_sym___stdcall] = ACTIONS(1828), + [anon_sym___fastcall] = ACTIONS(1828), + [anon_sym___thiscall] = ACTIONS(1828), + [anon_sym___vectorcall] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1828), + [anon_sym_auto] = ACTIONS(1828), + [anon_sym_register] = ACTIONS(1828), + [anon_sym_inline] = ACTIONS(1828), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1828), + [anon_sym_const] = ACTIONS(1828), + [anon_sym_volatile] = ACTIONS(1828), + [anon_sym_restrict] = ACTIONS(1828), + [anon_sym__Atomic] = ACTIONS(1828), + [anon_sym_in] = ACTIONS(1828), + [anon_sym_out] = ACTIONS(1828), + [anon_sym_inout] = ACTIONS(1828), + [anon_sym_bycopy] = ACTIONS(1828), + [anon_sym_byref] = ACTIONS(1828), + [anon_sym_oneway] = ACTIONS(1828), + [anon_sym__Nullable] = ACTIONS(1828), + [anon_sym__Nonnull] = ACTIONS(1828), + [anon_sym__Nullable_result] = ACTIONS(1828), + [anon_sym__Null_unspecified] = ACTIONS(1828), + [anon_sym___autoreleasing] = ACTIONS(1828), + [anon_sym___nullable] = ACTIONS(1828), + [anon_sym___nonnull] = ACTIONS(1828), + [anon_sym___strong] = ACTIONS(1828), + [anon_sym___weak] = ACTIONS(1828), + [anon_sym___bridge] = ACTIONS(1828), + [anon_sym___bridge_transfer] = ACTIONS(1828), + [anon_sym___bridge_retained] = ACTIONS(1828), + [anon_sym___unsafe_unretained] = ACTIONS(1828), + [anon_sym___block] = ACTIONS(1828), + [anon_sym___kindof] = ACTIONS(1828), + [anon_sym___unused] = ACTIONS(1828), + [anon_sym__Complex] = ACTIONS(1828), + [anon_sym___complex] = ACTIONS(1828), + [anon_sym_IBOutlet] = ACTIONS(1828), + [anon_sym_IBInspectable] = ACTIONS(1828), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1828), + [anon_sym_signed] = ACTIONS(1828), + [anon_sym_unsigned] = ACTIONS(1828), + [anon_sym_long] = ACTIONS(1828), + [anon_sym_short] = ACTIONS(1828), + [sym_primitive_type] = ACTIONS(1828), + [anon_sym_enum] = ACTIONS(1828), + [anon_sym_struct] = ACTIONS(1828), + [anon_sym_union] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(1828), + [anon_sym_switch] = ACTIONS(1828), + [anon_sym_case] = ACTIONS(1828), + [anon_sym_default] = ACTIONS(1828), + [anon_sym_while] = ACTIONS(1828), + [anon_sym_do] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_return] = ACTIONS(1828), + [anon_sym_break] = ACTIONS(1828), + [anon_sym_continue] = ACTIONS(1828), + [anon_sym_goto] = ACTIONS(1828), + [anon_sym_DASH_DASH] = ACTIONS(1830), + [anon_sym_PLUS_PLUS] = ACTIONS(1830), + [anon_sym_sizeof] = ACTIONS(1828), + [sym_number_literal] = ACTIONS(1830), + [anon_sym_L_SQUOTE] = ACTIONS(1830), + [anon_sym_u_SQUOTE] = ACTIONS(1830), + [anon_sym_U_SQUOTE] = ACTIONS(1830), + [anon_sym_u8_SQUOTE] = ACTIONS(1830), + [anon_sym_SQUOTE] = ACTIONS(1830), + [anon_sym_L_DQUOTE] = ACTIONS(1830), + [anon_sym_u_DQUOTE] = ACTIONS(1830), + [anon_sym_U_DQUOTE] = ACTIONS(1830), + [anon_sym_u8_DQUOTE] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [sym_true] = ACTIONS(1828), + [sym_false] = ACTIONS(1828), + [sym_null] = ACTIONS(1828), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1830), + [anon_sym_ATimport] = ACTIONS(1830), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1828), + [anon_sym_ATcompatibility_alias] = ACTIONS(1830), + [anon_sym_ATprotocol] = ACTIONS(1830), + [anon_sym_ATclass] = ACTIONS(1830), + [anon_sym_ATinterface] = ACTIONS(1830), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1828), + [sym_method_attribute_specifier] = ACTIONS(1828), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1828), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1828), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1828), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1828), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1828), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1828), + [anon_sym_NS_AVAILABLE] = ACTIONS(1828), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1828), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1828), + [anon_sym_API_AVAILABLE] = ACTIONS(1828), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1828), + [anon_sym_API_DEPRECATED] = ACTIONS(1828), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1828), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1828), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1828), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1828), + [anon_sym___deprecated_msg] = ACTIONS(1828), + [anon_sym___deprecated_enum_msg] = ACTIONS(1828), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1828), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1828), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1828), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1828), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1828), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1828), + [anon_sym_ATimplementation] = ACTIONS(1830), + [anon_sym_NS_ENUM] = ACTIONS(1828), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1828), + [anon_sym_NS_OPTIONS] = ACTIONS(1828), + [anon_sym_typeof] = ACTIONS(1828), + [anon_sym___typeof] = ACTIONS(1828), + [anon_sym___typeof__] = ACTIONS(1828), + [sym_self] = ACTIONS(1828), + [sym_super] = ACTIONS(1828), + [sym_nil] = ACTIONS(1828), + [sym_id] = ACTIONS(1828), + [sym_instancetype] = ACTIONS(1828), + [sym_Class] = ACTIONS(1828), + [sym_SEL] = ACTIONS(1828), + [sym_IMP] = ACTIONS(1828), + [sym_BOOL] = ACTIONS(1828), + [sym_auto] = ACTIONS(1828), + [anon_sym_ATautoreleasepool] = ACTIONS(1830), + [anon_sym_ATsynchronized] = ACTIONS(1830), + [anon_sym_ATtry] = ACTIONS(1830), + [anon_sym_ATthrow] = ACTIONS(1830), + [anon_sym_ATselector] = ACTIONS(1830), + [anon_sym_ATencode] = ACTIONS(1830), + [anon_sym_AT] = ACTIONS(1828), + [sym_YES] = ACTIONS(1828), + [sym_NO] = ACTIONS(1828), + [anon_sym___builtin_available] = ACTIONS(1828), + [anon_sym_ATavailable] = ACTIONS(1830), + [anon_sym_va_arg] = ACTIONS(1828), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [520] = { + [sym_identifier] = ACTIONS(1832), + [aux_sym_preproc_include_token1] = ACTIONS(1834), + [aux_sym_preproc_def_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token1] = ACTIONS(1832), + [aux_sym_preproc_if_token2] = ACTIONS(1832), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1832), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1832), + [aux_sym_preproc_else_token1] = ACTIONS(1832), + [aux_sym_preproc_elif_token1] = ACTIONS(1832), + [anon_sym_LPAREN2] = ACTIONS(1834), + [anon_sym_BANG] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1832), + [anon_sym_STAR] = ACTIONS(1834), + [anon_sym_CARET] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_typedef] = ACTIONS(1832), + [anon_sym_extern] = ACTIONS(1832), + [anon_sym___attribute] = ACTIONS(1832), + [anon_sym___attribute__] = ACTIONS(1832), + [anon_sym___declspec] = ACTIONS(1832), + [anon_sym___cdecl] = ACTIONS(1832), + [anon_sym___clrcall] = ACTIONS(1832), + [anon_sym___stdcall] = ACTIONS(1832), + [anon_sym___fastcall] = ACTIONS(1832), + [anon_sym___thiscall] = ACTIONS(1832), + [anon_sym___vectorcall] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LBRACK] = ACTIONS(1834), + [anon_sym_static] = ACTIONS(1832), + [anon_sym_auto] = ACTIONS(1832), + [anon_sym_register] = ACTIONS(1832), + [anon_sym_inline] = ACTIONS(1832), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1832), + [anon_sym_const] = ACTIONS(1832), + [anon_sym_volatile] = ACTIONS(1832), + [anon_sym_restrict] = ACTIONS(1832), + [anon_sym__Atomic] = ACTIONS(1832), + [anon_sym_in] = ACTIONS(1832), + [anon_sym_out] = ACTIONS(1832), + [anon_sym_inout] = ACTIONS(1832), + [anon_sym_bycopy] = ACTIONS(1832), + [anon_sym_byref] = ACTIONS(1832), + [anon_sym_oneway] = ACTIONS(1832), + [anon_sym__Nullable] = ACTIONS(1832), + [anon_sym__Nonnull] = ACTIONS(1832), + [anon_sym__Nullable_result] = ACTIONS(1832), + [anon_sym__Null_unspecified] = ACTIONS(1832), + [anon_sym___autoreleasing] = ACTIONS(1832), + [anon_sym___nullable] = ACTIONS(1832), + [anon_sym___nonnull] = ACTIONS(1832), + [anon_sym___strong] = ACTIONS(1832), + [anon_sym___weak] = ACTIONS(1832), + [anon_sym___bridge] = ACTIONS(1832), + [anon_sym___bridge_transfer] = ACTIONS(1832), + [anon_sym___bridge_retained] = ACTIONS(1832), + [anon_sym___unsafe_unretained] = ACTIONS(1832), + [anon_sym___block] = ACTIONS(1832), + [anon_sym___kindof] = ACTIONS(1832), + [anon_sym___unused] = ACTIONS(1832), + [anon_sym__Complex] = ACTIONS(1832), + [anon_sym___complex] = ACTIONS(1832), + [anon_sym_IBOutlet] = ACTIONS(1832), + [anon_sym_IBInspectable] = ACTIONS(1832), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1832), + [anon_sym_signed] = ACTIONS(1832), + [anon_sym_unsigned] = ACTIONS(1832), + [anon_sym_long] = ACTIONS(1832), + [anon_sym_short] = ACTIONS(1832), + [sym_primitive_type] = ACTIONS(1832), + [anon_sym_enum] = ACTIONS(1832), + [anon_sym_struct] = ACTIONS(1832), + [anon_sym_union] = ACTIONS(1832), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(1832), + [anon_sym_case] = ACTIONS(1832), + [anon_sym_default] = ACTIONS(1832), + [anon_sym_while] = ACTIONS(1832), + [anon_sym_do] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1832), + [anon_sym_break] = ACTIONS(1832), + [anon_sym_continue] = ACTIONS(1832), + [anon_sym_goto] = ACTIONS(1832), + [anon_sym_DASH_DASH] = ACTIONS(1834), + [anon_sym_PLUS_PLUS] = ACTIONS(1834), + [anon_sym_sizeof] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1834), + [anon_sym_u_SQUOTE] = ACTIONS(1834), + [anon_sym_U_SQUOTE] = ACTIONS(1834), + [anon_sym_u8_SQUOTE] = ACTIONS(1834), + [anon_sym_SQUOTE] = ACTIONS(1834), + [anon_sym_L_DQUOTE] = ACTIONS(1834), + [anon_sym_u_DQUOTE] = ACTIONS(1834), + [anon_sym_U_DQUOTE] = ACTIONS(1834), + [anon_sym_u8_DQUOTE] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [sym_true] = ACTIONS(1832), + [sym_false] = ACTIONS(1832), + [sym_null] = ACTIONS(1832), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1834), + [anon_sym_ATimport] = ACTIONS(1834), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1832), + [anon_sym_ATcompatibility_alias] = ACTIONS(1834), + [anon_sym_ATprotocol] = ACTIONS(1834), + [anon_sym_ATclass] = ACTIONS(1834), + [anon_sym_ATinterface] = ACTIONS(1834), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1832), + [sym_method_attribute_specifier] = ACTIONS(1832), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1832), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1832), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1832), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1832), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1832), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1832), + [anon_sym_NS_AVAILABLE] = ACTIONS(1832), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1832), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1832), + [anon_sym_API_AVAILABLE] = ACTIONS(1832), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1832), + [anon_sym_API_DEPRECATED] = ACTIONS(1832), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1832), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1832), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1832), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1832), + [anon_sym___deprecated_msg] = ACTIONS(1832), + [anon_sym___deprecated_enum_msg] = ACTIONS(1832), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1832), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1832), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1832), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1832), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1832), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1832), + [anon_sym_ATimplementation] = ACTIONS(1834), + [anon_sym_NS_ENUM] = ACTIONS(1832), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1832), + [anon_sym_NS_OPTIONS] = ACTIONS(1832), + [anon_sym_typeof] = ACTIONS(1832), + [anon_sym___typeof] = ACTIONS(1832), + [anon_sym___typeof__] = ACTIONS(1832), + [sym_self] = ACTIONS(1832), + [sym_super] = ACTIONS(1832), + [sym_nil] = ACTIONS(1832), + [sym_id] = ACTIONS(1832), + [sym_instancetype] = ACTIONS(1832), + [sym_Class] = ACTIONS(1832), + [sym_SEL] = ACTIONS(1832), + [sym_IMP] = ACTIONS(1832), + [sym_BOOL] = ACTIONS(1832), + [sym_auto] = ACTIONS(1832), + [anon_sym_ATautoreleasepool] = ACTIONS(1834), + [anon_sym_ATsynchronized] = ACTIONS(1834), + [anon_sym_ATtry] = ACTIONS(1834), + [anon_sym_ATthrow] = ACTIONS(1834), + [anon_sym_ATselector] = ACTIONS(1834), + [anon_sym_ATencode] = ACTIONS(1834), + [anon_sym_AT] = ACTIONS(1832), + [sym_YES] = ACTIONS(1832), + [sym_NO] = ACTIONS(1832), + [anon_sym___builtin_available] = ACTIONS(1832), + [anon_sym_ATavailable] = ACTIONS(1834), + [anon_sym_va_arg] = ACTIONS(1832), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [521] = { + [sym_identifier] = ACTIONS(1836), + [aux_sym_preproc_include_token1] = ACTIONS(1838), + [aux_sym_preproc_def_token1] = ACTIONS(1838), + [aux_sym_preproc_if_token1] = ACTIONS(1836), + [aux_sym_preproc_if_token2] = ACTIONS(1836), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1836), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1836), + [aux_sym_preproc_else_token1] = ACTIONS(1836), + [aux_sym_preproc_elif_token1] = ACTIONS(1836), + [anon_sym_LPAREN2] = ACTIONS(1838), + [anon_sym_BANG] = ACTIONS(1838), + [anon_sym_TILDE] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_STAR] = ACTIONS(1838), + [anon_sym_CARET] = ACTIONS(1838), + [anon_sym_AMP] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_typedef] = ACTIONS(1836), + [anon_sym_extern] = ACTIONS(1836), + [anon_sym___attribute] = ACTIONS(1836), + [anon_sym___attribute__] = ACTIONS(1836), + [anon_sym___declspec] = ACTIONS(1836), + [anon_sym___cdecl] = ACTIONS(1836), + [anon_sym___clrcall] = ACTIONS(1836), + [anon_sym___stdcall] = ACTIONS(1836), + [anon_sym___fastcall] = ACTIONS(1836), + [anon_sym___thiscall] = ACTIONS(1836), + [anon_sym___vectorcall] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_static] = ACTIONS(1836), + [anon_sym_auto] = ACTIONS(1836), + [anon_sym_register] = ACTIONS(1836), + [anon_sym_inline] = ACTIONS(1836), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1836), + [anon_sym_const] = ACTIONS(1836), + [anon_sym_volatile] = ACTIONS(1836), + [anon_sym_restrict] = ACTIONS(1836), + [anon_sym__Atomic] = ACTIONS(1836), + [anon_sym_in] = ACTIONS(1836), + [anon_sym_out] = ACTIONS(1836), + [anon_sym_inout] = ACTIONS(1836), + [anon_sym_bycopy] = ACTIONS(1836), + [anon_sym_byref] = ACTIONS(1836), + [anon_sym_oneway] = ACTIONS(1836), + [anon_sym__Nullable] = ACTIONS(1836), + [anon_sym__Nonnull] = ACTIONS(1836), + [anon_sym__Nullable_result] = ACTIONS(1836), + [anon_sym__Null_unspecified] = ACTIONS(1836), + [anon_sym___autoreleasing] = ACTIONS(1836), + [anon_sym___nullable] = ACTIONS(1836), + [anon_sym___nonnull] = ACTIONS(1836), + [anon_sym___strong] = ACTIONS(1836), + [anon_sym___weak] = ACTIONS(1836), + [anon_sym___bridge] = ACTIONS(1836), + [anon_sym___bridge_transfer] = ACTIONS(1836), + [anon_sym___bridge_retained] = ACTIONS(1836), + [anon_sym___unsafe_unretained] = ACTIONS(1836), + [anon_sym___block] = ACTIONS(1836), + [anon_sym___kindof] = ACTIONS(1836), + [anon_sym___unused] = ACTIONS(1836), + [anon_sym__Complex] = ACTIONS(1836), + [anon_sym___complex] = ACTIONS(1836), + [anon_sym_IBOutlet] = ACTIONS(1836), + [anon_sym_IBInspectable] = ACTIONS(1836), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1836), + [anon_sym_signed] = ACTIONS(1836), + [anon_sym_unsigned] = ACTIONS(1836), + [anon_sym_long] = ACTIONS(1836), + [anon_sym_short] = ACTIONS(1836), + [sym_primitive_type] = ACTIONS(1836), + [anon_sym_enum] = ACTIONS(1836), + [anon_sym_struct] = ACTIONS(1836), + [anon_sym_union] = ACTIONS(1836), + [anon_sym_if] = ACTIONS(1836), + [anon_sym_switch] = ACTIONS(1836), + [anon_sym_case] = ACTIONS(1836), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1836), + [anon_sym_do] = ACTIONS(1836), + [anon_sym_for] = ACTIONS(1836), + [anon_sym_return] = ACTIONS(1836), + [anon_sym_break] = ACTIONS(1836), + [anon_sym_continue] = ACTIONS(1836), + [anon_sym_goto] = ACTIONS(1836), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_PLUS_PLUS] = ACTIONS(1838), + [anon_sym_sizeof] = ACTIONS(1836), + [sym_number_literal] = ACTIONS(1838), + [anon_sym_L_SQUOTE] = ACTIONS(1838), + [anon_sym_u_SQUOTE] = ACTIONS(1838), + [anon_sym_U_SQUOTE] = ACTIONS(1838), + [anon_sym_u8_SQUOTE] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1836), + [sym_false] = ACTIONS(1836), + [sym_null] = ACTIONS(1836), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1838), + [anon_sym_ATimport] = ACTIONS(1838), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1836), + [anon_sym_ATcompatibility_alias] = ACTIONS(1838), + [anon_sym_ATprotocol] = ACTIONS(1838), + [anon_sym_ATclass] = ACTIONS(1838), + [anon_sym_ATinterface] = ACTIONS(1838), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1836), + [sym_method_attribute_specifier] = ACTIONS(1836), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1836), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1836), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1836), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1836), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1836), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1836), + [anon_sym_NS_AVAILABLE] = ACTIONS(1836), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1836), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1836), + [anon_sym_API_AVAILABLE] = ACTIONS(1836), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1836), + [anon_sym_API_DEPRECATED] = ACTIONS(1836), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1836), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1836), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1836), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1836), + [anon_sym___deprecated_msg] = ACTIONS(1836), + [anon_sym___deprecated_enum_msg] = ACTIONS(1836), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1836), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1836), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1836), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1836), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1836), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1836), + [anon_sym_ATimplementation] = ACTIONS(1838), + [anon_sym_NS_ENUM] = ACTIONS(1836), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1836), + [anon_sym_NS_OPTIONS] = ACTIONS(1836), + [anon_sym_typeof] = ACTIONS(1836), + [anon_sym___typeof] = ACTIONS(1836), + [anon_sym___typeof__] = ACTIONS(1836), + [sym_self] = ACTIONS(1836), + [sym_super] = ACTIONS(1836), + [sym_nil] = ACTIONS(1836), + [sym_id] = ACTIONS(1836), + [sym_instancetype] = ACTIONS(1836), + [sym_Class] = ACTIONS(1836), + [sym_SEL] = ACTIONS(1836), + [sym_IMP] = ACTIONS(1836), + [sym_BOOL] = ACTIONS(1836), + [sym_auto] = ACTIONS(1836), + [anon_sym_ATautoreleasepool] = ACTIONS(1838), + [anon_sym_ATsynchronized] = ACTIONS(1838), + [anon_sym_ATtry] = ACTIONS(1838), + [anon_sym_ATthrow] = ACTIONS(1838), + [anon_sym_ATselector] = ACTIONS(1838), + [anon_sym_ATencode] = ACTIONS(1838), + [anon_sym_AT] = ACTIONS(1836), + [sym_YES] = ACTIONS(1836), + [sym_NO] = ACTIONS(1836), + [anon_sym___builtin_available] = ACTIONS(1836), + [anon_sym_ATavailable] = ACTIONS(1838), + [anon_sym_va_arg] = ACTIONS(1836), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [522] = { + [sym_identifier] = ACTIONS(1840), + [aux_sym_preproc_include_token1] = ACTIONS(1842), + [aux_sym_preproc_def_token1] = ACTIONS(1842), + [aux_sym_preproc_if_token1] = ACTIONS(1840), + [aux_sym_preproc_if_token2] = ACTIONS(1840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1840), + [aux_sym_preproc_else_token1] = ACTIONS(1840), + [aux_sym_preproc_elif_token1] = ACTIONS(1840), + [anon_sym_LPAREN2] = ACTIONS(1842), + [anon_sym_BANG] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_PLUS] = ACTIONS(1840), + [anon_sym_STAR] = ACTIONS(1842), + [anon_sym_CARET] = ACTIONS(1842), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_typedef] = ACTIONS(1840), + [anon_sym_extern] = ACTIONS(1840), + [anon_sym___attribute] = ACTIONS(1840), + [anon_sym___attribute__] = ACTIONS(1840), + [anon_sym___declspec] = ACTIONS(1840), + [anon_sym___cdecl] = ACTIONS(1840), + [anon_sym___clrcall] = ACTIONS(1840), + [anon_sym___stdcall] = ACTIONS(1840), + [anon_sym___fastcall] = ACTIONS(1840), + [anon_sym___thiscall] = ACTIONS(1840), + [anon_sym___vectorcall] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_static] = ACTIONS(1840), + [anon_sym_auto] = ACTIONS(1840), + [anon_sym_register] = ACTIONS(1840), + [anon_sym_inline] = ACTIONS(1840), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [anon_sym_volatile] = ACTIONS(1840), + [anon_sym_restrict] = ACTIONS(1840), + [anon_sym__Atomic] = ACTIONS(1840), + [anon_sym_in] = ACTIONS(1840), + [anon_sym_out] = ACTIONS(1840), + [anon_sym_inout] = ACTIONS(1840), + [anon_sym_bycopy] = ACTIONS(1840), + [anon_sym_byref] = ACTIONS(1840), + [anon_sym_oneway] = ACTIONS(1840), + [anon_sym__Nullable] = ACTIONS(1840), + [anon_sym__Nonnull] = ACTIONS(1840), + [anon_sym__Nullable_result] = ACTIONS(1840), + [anon_sym__Null_unspecified] = ACTIONS(1840), + [anon_sym___autoreleasing] = ACTIONS(1840), + [anon_sym___nullable] = ACTIONS(1840), + [anon_sym___nonnull] = ACTIONS(1840), + [anon_sym___strong] = ACTIONS(1840), + [anon_sym___weak] = ACTIONS(1840), + [anon_sym___bridge] = ACTIONS(1840), + [anon_sym___bridge_transfer] = ACTIONS(1840), + [anon_sym___bridge_retained] = ACTIONS(1840), + [anon_sym___unsafe_unretained] = ACTIONS(1840), + [anon_sym___block] = ACTIONS(1840), + [anon_sym___kindof] = ACTIONS(1840), + [anon_sym___unused] = ACTIONS(1840), + [anon_sym__Complex] = ACTIONS(1840), + [anon_sym___complex] = ACTIONS(1840), + [anon_sym_IBOutlet] = ACTIONS(1840), + [anon_sym_IBInspectable] = ACTIONS(1840), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1840), + [anon_sym_signed] = ACTIONS(1840), + [anon_sym_unsigned] = ACTIONS(1840), + [anon_sym_long] = ACTIONS(1840), + [anon_sym_short] = ACTIONS(1840), + [sym_primitive_type] = ACTIONS(1840), + [anon_sym_enum] = ACTIONS(1840), + [anon_sym_struct] = ACTIONS(1840), + [anon_sym_union] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_switch] = ACTIONS(1840), + [anon_sym_case] = ACTIONS(1840), + [anon_sym_default] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_do] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_goto] = ACTIONS(1840), + [anon_sym_DASH_DASH] = ACTIONS(1842), + [anon_sym_PLUS_PLUS] = ACTIONS(1842), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_number_literal] = ACTIONS(1842), + [anon_sym_L_SQUOTE] = ACTIONS(1842), + [anon_sym_u_SQUOTE] = ACTIONS(1842), + [anon_sym_U_SQUOTE] = ACTIONS(1842), + [anon_sym_u8_SQUOTE] = ACTIONS(1842), + [anon_sym_SQUOTE] = ACTIONS(1842), + [anon_sym_L_DQUOTE] = ACTIONS(1842), + [anon_sym_u_DQUOTE] = ACTIONS(1842), + [anon_sym_U_DQUOTE] = ACTIONS(1842), + [anon_sym_u8_DQUOTE] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [sym_null] = ACTIONS(1840), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1842), + [anon_sym_ATimport] = ACTIONS(1842), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1840), + [anon_sym_ATcompatibility_alias] = ACTIONS(1842), + [anon_sym_ATprotocol] = ACTIONS(1842), + [anon_sym_ATclass] = ACTIONS(1842), + [anon_sym_ATinterface] = ACTIONS(1842), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1840), + [sym_method_attribute_specifier] = ACTIONS(1840), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1840), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1840), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1840), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1840), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1840), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1840), + [anon_sym_NS_AVAILABLE] = ACTIONS(1840), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1840), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_API_AVAILABLE] = ACTIONS(1840), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1840), + [anon_sym_API_DEPRECATED] = ACTIONS(1840), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1840), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1840), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1840), + [anon_sym___deprecated_msg] = ACTIONS(1840), + [anon_sym___deprecated_enum_msg] = ACTIONS(1840), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1840), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1840), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1840), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1840), + [anon_sym_ATimplementation] = ACTIONS(1842), + [anon_sym_NS_ENUM] = ACTIONS(1840), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1840), + [anon_sym_NS_OPTIONS] = ACTIONS(1840), + [anon_sym_typeof] = ACTIONS(1840), + [anon_sym___typeof] = ACTIONS(1840), + [anon_sym___typeof__] = ACTIONS(1840), + [sym_self] = ACTIONS(1840), + [sym_super] = ACTIONS(1840), + [sym_nil] = ACTIONS(1840), + [sym_id] = ACTIONS(1840), + [sym_instancetype] = ACTIONS(1840), + [sym_Class] = ACTIONS(1840), + [sym_SEL] = ACTIONS(1840), + [sym_IMP] = ACTIONS(1840), + [sym_BOOL] = ACTIONS(1840), + [sym_auto] = ACTIONS(1840), + [anon_sym_ATautoreleasepool] = ACTIONS(1842), + [anon_sym_ATsynchronized] = ACTIONS(1842), + [anon_sym_ATtry] = ACTIONS(1842), + [anon_sym_ATthrow] = ACTIONS(1842), + [anon_sym_ATselector] = ACTIONS(1842), + [anon_sym_ATencode] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(1840), + [sym_YES] = ACTIONS(1840), + [sym_NO] = ACTIONS(1840), + [anon_sym___builtin_available] = ACTIONS(1840), + [anon_sym_ATavailable] = ACTIONS(1842), + [anon_sym_va_arg] = ACTIONS(1840), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [523] = { + [sym_identifier] = ACTIONS(1840), + [aux_sym_preproc_include_token1] = ACTIONS(1842), + [aux_sym_preproc_def_token1] = ACTIONS(1842), + [aux_sym_preproc_if_token1] = ACTIONS(1840), + [aux_sym_preproc_if_token2] = ACTIONS(1840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1840), + [aux_sym_preproc_else_token1] = ACTIONS(1840), + [aux_sym_preproc_elif_token1] = ACTIONS(1840), + [anon_sym_LPAREN2] = ACTIONS(1842), + [anon_sym_BANG] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_PLUS] = ACTIONS(1840), + [anon_sym_STAR] = ACTIONS(1842), + [anon_sym_CARET] = ACTIONS(1842), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_typedef] = ACTIONS(1840), + [anon_sym_extern] = ACTIONS(1840), + [anon_sym___attribute] = ACTIONS(1840), + [anon_sym___attribute__] = ACTIONS(1840), + [anon_sym___declspec] = ACTIONS(1840), + [anon_sym___cdecl] = ACTIONS(1840), + [anon_sym___clrcall] = ACTIONS(1840), + [anon_sym___stdcall] = ACTIONS(1840), + [anon_sym___fastcall] = ACTIONS(1840), + [anon_sym___thiscall] = ACTIONS(1840), + [anon_sym___vectorcall] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_static] = ACTIONS(1840), + [anon_sym_auto] = ACTIONS(1840), + [anon_sym_register] = ACTIONS(1840), + [anon_sym_inline] = ACTIONS(1840), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [anon_sym_volatile] = ACTIONS(1840), + [anon_sym_restrict] = ACTIONS(1840), + [anon_sym__Atomic] = ACTIONS(1840), + [anon_sym_in] = ACTIONS(1840), + [anon_sym_out] = ACTIONS(1840), + [anon_sym_inout] = ACTIONS(1840), + [anon_sym_bycopy] = ACTIONS(1840), + [anon_sym_byref] = ACTIONS(1840), + [anon_sym_oneway] = ACTIONS(1840), + [anon_sym__Nullable] = ACTIONS(1840), + [anon_sym__Nonnull] = ACTIONS(1840), + [anon_sym__Nullable_result] = ACTIONS(1840), + [anon_sym__Null_unspecified] = ACTIONS(1840), + [anon_sym___autoreleasing] = ACTIONS(1840), + [anon_sym___nullable] = ACTIONS(1840), + [anon_sym___nonnull] = ACTIONS(1840), + [anon_sym___strong] = ACTIONS(1840), + [anon_sym___weak] = ACTIONS(1840), + [anon_sym___bridge] = ACTIONS(1840), + [anon_sym___bridge_transfer] = ACTIONS(1840), + [anon_sym___bridge_retained] = ACTIONS(1840), + [anon_sym___unsafe_unretained] = ACTIONS(1840), + [anon_sym___block] = ACTIONS(1840), + [anon_sym___kindof] = ACTIONS(1840), + [anon_sym___unused] = ACTIONS(1840), + [anon_sym__Complex] = ACTIONS(1840), + [anon_sym___complex] = ACTIONS(1840), + [anon_sym_IBOutlet] = ACTIONS(1840), + [anon_sym_IBInspectable] = ACTIONS(1840), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1840), + [anon_sym_signed] = ACTIONS(1840), + [anon_sym_unsigned] = ACTIONS(1840), + [anon_sym_long] = ACTIONS(1840), + [anon_sym_short] = ACTIONS(1840), + [sym_primitive_type] = ACTIONS(1840), + [anon_sym_enum] = ACTIONS(1840), + [anon_sym_struct] = ACTIONS(1840), + [anon_sym_union] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_switch] = ACTIONS(1840), + [anon_sym_case] = ACTIONS(1840), + [anon_sym_default] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_do] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_goto] = ACTIONS(1840), + [anon_sym_DASH_DASH] = ACTIONS(1842), + [anon_sym_PLUS_PLUS] = ACTIONS(1842), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_number_literal] = ACTIONS(1842), + [anon_sym_L_SQUOTE] = ACTIONS(1842), + [anon_sym_u_SQUOTE] = ACTIONS(1842), + [anon_sym_U_SQUOTE] = ACTIONS(1842), + [anon_sym_u8_SQUOTE] = ACTIONS(1842), + [anon_sym_SQUOTE] = ACTIONS(1842), + [anon_sym_L_DQUOTE] = ACTIONS(1842), + [anon_sym_u_DQUOTE] = ACTIONS(1842), + [anon_sym_U_DQUOTE] = ACTIONS(1842), + [anon_sym_u8_DQUOTE] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [sym_null] = ACTIONS(1840), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1842), + [anon_sym_ATimport] = ACTIONS(1842), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1840), + [anon_sym_ATcompatibility_alias] = ACTIONS(1842), + [anon_sym_ATprotocol] = ACTIONS(1842), + [anon_sym_ATclass] = ACTIONS(1842), + [anon_sym_ATinterface] = ACTIONS(1842), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1840), + [sym_method_attribute_specifier] = ACTIONS(1840), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1840), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1840), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1840), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1840), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1840), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1840), + [anon_sym_NS_AVAILABLE] = ACTIONS(1840), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1840), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_API_AVAILABLE] = ACTIONS(1840), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1840), + [anon_sym_API_DEPRECATED] = ACTIONS(1840), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1840), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1840), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1840), + [anon_sym___deprecated_msg] = ACTIONS(1840), + [anon_sym___deprecated_enum_msg] = ACTIONS(1840), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1840), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1840), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1840), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1840), + [anon_sym_ATimplementation] = ACTIONS(1842), + [anon_sym_NS_ENUM] = ACTIONS(1840), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1840), + [anon_sym_NS_OPTIONS] = ACTIONS(1840), + [anon_sym_typeof] = ACTIONS(1840), + [anon_sym___typeof] = ACTIONS(1840), + [anon_sym___typeof__] = ACTIONS(1840), + [sym_self] = ACTIONS(1840), + [sym_super] = ACTIONS(1840), + [sym_nil] = ACTIONS(1840), + [sym_id] = ACTIONS(1840), + [sym_instancetype] = ACTIONS(1840), + [sym_Class] = ACTIONS(1840), + [sym_SEL] = ACTIONS(1840), + [sym_IMP] = ACTIONS(1840), + [sym_BOOL] = ACTIONS(1840), + [sym_auto] = ACTIONS(1840), + [anon_sym_ATautoreleasepool] = ACTIONS(1842), + [anon_sym_ATsynchronized] = ACTIONS(1842), + [anon_sym_ATtry] = ACTIONS(1842), + [anon_sym_ATthrow] = ACTIONS(1842), + [anon_sym_ATselector] = ACTIONS(1842), + [anon_sym_ATencode] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(1840), + [sym_YES] = ACTIONS(1840), + [sym_NO] = ACTIONS(1840), + [anon_sym___builtin_available] = ACTIONS(1840), + [anon_sym_ATavailable] = ACTIONS(1842), + [anon_sym_va_arg] = ACTIONS(1840), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [524] = { + [sym_identifier] = ACTIONS(1844), + [aux_sym_preproc_include_token1] = ACTIONS(1846), + [aux_sym_preproc_def_token1] = ACTIONS(1846), + [aux_sym_preproc_if_token1] = ACTIONS(1844), + [aux_sym_preproc_if_token2] = ACTIONS(1844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1844), + [aux_sym_preproc_else_token1] = ACTIONS(1844), + [aux_sym_preproc_elif_token1] = ACTIONS(1844), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_typedef] = ACTIONS(1844), + [anon_sym_extern] = ACTIONS(1844), + [anon_sym___attribute] = ACTIONS(1844), + [anon_sym___attribute__] = ACTIONS(1844), + [anon_sym___declspec] = ACTIONS(1844), + [anon_sym___cdecl] = ACTIONS(1844), + [anon_sym___clrcall] = ACTIONS(1844), + [anon_sym___stdcall] = ACTIONS(1844), + [anon_sym___fastcall] = ACTIONS(1844), + [anon_sym___thiscall] = ACTIONS(1844), + [anon_sym___vectorcall] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1846), + [anon_sym_static] = ACTIONS(1844), + [anon_sym_auto] = ACTIONS(1844), + [anon_sym_register] = ACTIONS(1844), + [anon_sym_inline] = ACTIONS(1844), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1844), + [anon_sym_const] = ACTIONS(1844), + [anon_sym_volatile] = ACTIONS(1844), + [anon_sym_restrict] = ACTIONS(1844), + [anon_sym__Atomic] = ACTIONS(1844), + [anon_sym_in] = ACTIONS(1844), + [anon_sym_out] = ACTIONS(1844), + [anon_sym_inout] = ACTIONS(1844), + [anon_sym_bycopy] = ACTIONS(1844), + [anon_sym_byref] = ACTIONS(1844), + [anon_sym_oneway] = ACTIONS(1844), + [anon_sym__Nullable] = ACTIONS(1844), + [anon_sym__Nonnull] = ACTIONS(1844), + [anon_sym__Nullable_result] = ACTIONS(1844), + [anon_sym__Null_unspecified] = ACTIONS(1844), + [anon_sym___autoreleasing] = ACTIONS(1844), + [anon_sym___nullable] = ACTIONS(1844), + [anon_sym___nonnull] = ACTIONS(1844), + [anon_sym___strong] = ACTIONS(1844), + [anon_sym___weak] = ACTIONS(1844), + [anon_sym___bridge] = ACTIONS(1844), + [anon_sym___bridge_transfer] = ACTIONS(1844), + [anon_sym___bridge_retained] = ACTIONS(1844), + [anon_sym___unsafe_unretained] = ACTIONS(1844), + [anon_sym___block] = ACTIONS(1844), + [anon_sym___kindof] = ACTIONS(1844), + [anon_sym___unused] = ACTIONS(1844), + [anon_sym__Complex] = ACTIONS(1844), + [anon_sym___complex] = ACTIONS(1844), + [anon_sym_IBOutlet] = ACTIONS(1844), + [anon_sym_IBInspectable] = ACTIONS(1844), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1844), + [anon_sym_signed] = ACTIONS(1844), + [anon_sym_unsigned] = ACTIONS(1844), + [anon_sym_long] = ACTIONS(1844), + [anon_sym_short] = ACTIONS(1844), + [sym_primitive_type] = ACTIONS(1844), + [anon_sym_enum] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1844), + [anon_sym_union] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1844), + [anon_sym_switch] = ACTIONS(1844), + [anon_sym_case] = ACTIONS(1844), + [anon_sym_default] = ACTIONS(1844), + [anon_sym_while] = ACTIONS(1844), + [anon_sym_do] = ACTIONS(1844), + [anon_sym_for] = ACTIONS(1844), + [anon_sym_return] = ACTIONS(1844), + [anon_sym_break] = ACTIONS(1844), + [anon_sym_continue] = ACTIONS(1844), + [anon_sym_goto] = ACTIONS(1844), + [anon_sym_DASH_DASH] = ACTIONS(1846), + [anon_sym_PLUS_PLUS] = ACTIONS(1846), + [anon_sym_sizeof] = ACTIONS(1844), + [sym_number_literal] = ACTIONS(1846), + [anon_sym_L_SQUOTE] = ACTIONS(1846), + [anon_sym_u_SQUOTE] = ACTIONS(1846), + [anon_sym_U_SQUOTE] = ACTIONS(1846), + [anon_sym_u8_SQUOTE] = ACTIONS(1846), + [anon_sym_SQUOTE] = ACTIONS(1846), + [anon_sym_L_DQUOTE] = ACTIONS(1846), + [anon_sym_u_DQUOTE] = ACTIONS(1846), + [anon_sym_U_DQUOTE] = ACTIONS(1846), + [anon_sym_u8_DQUOTE] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1846), + [sym_true] = ACTIONS(1844), + [sym_false] = ACTIONS(1844), + [sym_null] = ACTIONS(1844), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1846), + [anon_sym_ATimport] = ACTIONS(1846), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1844), + [anon_sym_ATcompatibility_alias] = ACTIONS(1846), + [anon_sym_ATprotocol] = ACTIONS(1846), + [anon_sym_ATclass] = ACTIONS(1846), + [anon_sym_ATinterface] = ACTIONS(1846), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1844), + [sym_method_attribute_specifier] = ACTIONS(1844), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1844), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1844), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1844), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1844), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1844), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1844), + [anon_sym_NS_AVAILABLE] = ACTIONS(1844), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1844), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1844), + [anon_sym_API_AVAILABLE] = ACTIONS(1844), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1844), + [anon_sym_API_DEPRECATED] = ACTIONS(1844), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1844), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1844), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1844), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1844), + [anon_sym___deprecated_msg] = ACTIONS(1844), + [anon_sym___deprecated_enum_msg] = ACTIONS(1844), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1844), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1844), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1844), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1844), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1844), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1844), + [anon_sym_ATimplementation] = ACTIONS(1846), + [anon_sym_NS_ENUM] = ACTIONS(1844), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1844), + [anon_sym_NS_OPTIONS] = ACTIONS(1844), + [anon_sym_typeof] = ACTIONS(1844), + [anon_sym___typeof] = ACTIONS(1844), + [anon_sym___typeof__] = ACTIONS(1844), + [sym_self] = ACTIONS(1844), + [sym_super] = ACTIONS(1844), + [sym_nil] = ACTIONS(1844), + [sym_id] = ACTIONS(1844), + [sym_instancetype] = ACTIONS(1844), + [sym_Class] = ACTIONS(1844), + [sym_SEL] = ACTIONS(1844), + [sym_IMP] = ACTIONS(1844), + [sym_BOOL] = ACTIONS(1844), + [sym_auto] = ACTIONS(1844), + [anon_sym_ATautoreleasepool] = ACTIONS(1846), + [anon_sym_ATsynchronized] = ACTIONS(1846), + [anon_sym_ATtry] = ACTIONS(1846), + [anon_sym_ATthrow] = ACTIONS(1846), + [anon_sym_ATselector] = ACTIONS(1846), + [anon_sym_ATencode] = ACTIONS(1846), + [anon_sym_AT] = ACTIONS(1844), + [sym_YES] = ACTIONS(1844), + [sym_NO] = ACTIONS(1844), + [anon_sym___builtin_available] = ACTIONS(1844), + [anon_sym_ATavailable] = ACTIONS(1846), + [anon_sym_va_arg] = ACTIONS(1844), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [525] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [aux_sym_preproc_else_token1] = ACTIONS(1848), + [aux_sym_preproc_elif_token1] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [526] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [aux_sym_preproc_else_token1] = ACTIONS(1848), + [aux_sym_preproc_elif_token1] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [527] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [aux_sym_preproc_else_token1] = ACTIONS(1848), + [aux_sym_preproc_elif_token1] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [528] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [aux_sym_preproc_else_token1] = ACTIONS(1848), + [aux_sym_preproc_elif_token1] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [529] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [aux_sym_preproc_else_token1] = ACTIONS(1848), + [aux_sym_preproc_elif_token1] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [530] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [aux_sym_preproc_else_token1] = ACTIONS(1848), + [aux_sym_preproc_elif_token1] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [531] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [aux_sym_preproc_else_token1] = ACTIONS(1848), + [aux_sym_preproc_elif_token1] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [532] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [aux_sym_preproc_else_token1] = ACTIONS(1848), + [aux_sym_preproc_elif_token1] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [533] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [aux_sym_preproc_else_token1] = ACTIONS(1848), + [aux_sym_preproc_elif_token1] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [534] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [aux_sym_preproc_else_token1] = ACTIONS(1848), + [aux_sym_preproc_elif_token1] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [535] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [aux_sym_preproc_else_token1] = ACTIONS(1848), + [aux_sym_preproc_elif_token1] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [536] = { + [sym_identifier] = ACTIONS(1852), + [aux_sym_preproc_include_token1] = ACTIONS(1854), + [aux_sym_preproc_def_token1] = ACTIONS(1854), + [aux_sym_preproc_if_token1] = ACTIONS(1852), + [aux_sym_preproc_if_token2] = ACTIONS(1852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1852), + [aux_sym_preproc_else_token1] = ACTIONS(1852), + [aux_sym_preproc_elif_token1] = ACTIONS(1852), + [anon_sym_LPAREN2] = ACTIONS(1854), + [anon_sym_BANG] = ACTIONS(1854), + [anon_sym_TILDE] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_STAR] = ACTIONS(1854), + [anon_sym_CARET] = ACTIONS(1854), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_extern] = ACTIONS(1852), + [anon_sym___attribute] = ACTIONS(1852), + [anon_sym___attribute__] = ACTIONS(1852), + [anon_sym___declspec] = ACTIONS(1852), + [anon_sym___cdecl] = ACTIONS(1852), + [anon_sym___clrcall] = ACTIONS(1852), + [anon_sym___stdcall] = ACTIONS(1852), + [anon_sym___fastcall] = ACTIONS(1852), + [anon_sym___thiscall] = ACTIONS(1852), + [anon_sym___vectorcall] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LBRACK] = ACTIONS(1854), + [anon_sym_static] = ACTIONS(1852), + [anon_sym_auto] = ACTIONS(1852), + [anon_sym_register] = ACTIONS(1852), + [anon_sym_inline] = ACTIONS(1852), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1852), + [anon_sym_volatile] = ACTIONS(1852), + [anon_sym_restrict] = ACTIONS(1852), + [anon_sym__Atomic] = ACTIONS(1852), + [anon_sym_in] = ACTIONS(1852), + [anon_sym_out] = ACTIONS(1852), + [anon_sym_inout] = ACTIONS(1852), + [anon_sym_bycopy] = ACTIONS(1852), + [anon_sym_byref] = ACTIONS(1852), + [anon_sym_oneway] = ACTIONS(1852), + [anon_sym__Nullable] = ACTIONS(1852), + [anon_sym__Nonnull] = ACTIONS(1852), + [anon_sym__Nullable_result] = ACTIONS(1852), + [anon_sym__Null_unspecified] = ACTIONS(1852), + [anon_sym___autoreleasing] = ACTIONS(1852), + [anon_sym___nullable] = ACTIONS(1852), + [anon_sym___nonnull] = ACTIONS(1852), + [anon_sym___strong] = ACTIONS(1852), + [anon_sym___weak] = ACTIONS(1852), + [anon_sym___bridge] = ACTIONS(1852), + [anon_sym___bridge_transfer] = ACTIONS(1852), + [anon_sym___bridge_retained] = ACTIONS(1852), + [anon_sym___unsafe_unretained] = ACTIONS(1852), + [anon_sym___block] = ACTIONS(1852), + [anon_sym___kindof] = ACTIONS(1852), + [anon_sym___unused] = ACTIONS(1852), + [anon_sym__Complex] = ACTIONS(1852), + [anon_sym___complex] = ACTIONS(1852), + [anon_sym_IBOutlet] = ACTIONS(1852), + [anon_sym_IBInspectable] = ACTIONS(1852), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1852), + [anon_sym_signed] = ACTIONS(1852), + [anon_sym_unsigned] = ACTIONS(1852), + [anon_sym_long] = ACTIONS(1852), + [anon_sym_short] = ACTIONS(1852), + [sym_primitive_type] = ACTIONS(1852), + [anon_sym_enum] = ACTIONS(1852), + [anon_sym_struct] = ACTIONS(1852), + [anon_sym_union] = ACTIONS(1852), + [anon_sym_if] = ACTIONS(1852), + [anon_sym_switch] = ACTIONS(1852), + [anon_sym_case] = ACTIONS(1852), + [anon_sym_default] = ACTIONS(1852), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_do] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1852), + [anon_sym_return] = ACTIONS(1852), + [anon_sym_break] = ACTIONS(1852), + [anon_sym_continue] = ACTIONS(1852), + [anon_sym_goto] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_sizeof] = ACTIONS(1852), + [sym_number_literal] = ACTIONS(1854), + [anon_sym_L_SQUOTE] = ACTIONS(1854), + [anon_sym_u_SQUOTE] = ACTIONS(1854), + [anon_sym_U_SQUOTE] = ACTIONS(1854), + [anon_sym_u8_SQUOTE] = ACTIONS(1854), + [anon_sym_SQUOTE] = ACTIONS(1854), + [anon_sym_L_DQUOTE] = ACTIONS(1854), + [anon_sym_u_DQUOTE] = ACTIONS(1854), + [anon_sym_U_DQUOTE] = ACTIONS(1854), + [anon_sym_u8_DQUOTE] = ACTIONS(1854), + [anon_sym_DQUOTE] = ACTIONS(1854), + [sym_true] = ACTIONS(1852), + [sym_false] = ACTIONS(1852), + [sym_null] = ACTIONS(1852), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1854), + [anon_sym_ATimport] = ACTIONS(1854), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1852), + [anon_sym_ATcompatibility_alias] = ACTIONS(1854), + [anon_sym_ATprotocol] = ACTIONS(1854), + [anon_sym_ATclass] = ACTIONS(1854), + [anon_sym_ATinterface] = ACTIONS(1854), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1852), + [sym_method_attribute_specifier] = ACTIONS(1852), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1852), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1852), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1852), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1852), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1852), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1852), + [anon_sym_NS_AVAILABLE] = ACTIONS(1852), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1852), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1852), + [anon_sym_API_AVAILABLE] = ACTIONS(1852), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1852), + [anon_sym_API_DEPRECATED] = ACTIONS(1852), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1852), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1852), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1852), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1852), + [anon_sym___deprecated_msg] = ACTIONS(1852), + [anon_sym___deprecated_enum_msg] = ACTIONS(1852), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1852), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1852), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1852), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1852), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1852), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1852), + [anon_sym_ATimplementation] = ACTIONS(1854), + [anon_sym_NS_ENUM] = ACTIONS(1852), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1852), + [anon_sym_NS_OPTIONS] = ACTIONS(1852), + [anon_sym_typeof] = ACTIONS(1852), + [anon_sym___typeof] = ACTIONS(1852), + [anon_sym___typeof__] = ACTIONS(1852), + [sym_self] = ACTIONS(1852), + [sym_super] = ACTIONS(1852), + [sym_nil] = ACTIONS(1852), + [sym_id] = ACTIONS(1852), + [sym_instancetype] = ACTIONS(1852), + [sym_Class] = ACTIONS(1852), + [sym_SEL] = ACTIONS(1852), + [sym_IMP] = ACTIONS(1852), + [sym_BOOL] = ACTIONS(1852), + [sym_auto] = ACTIONS(1852), + [anon_sym_ATautoreleasepool] = ACTIONS(1854), + [anon_sym_ATsynchronized] = ACTIONS(1854), + [anon_sym_ATtry] = ACTIONS(1854), + [anon_sym_ATthrow] = ACTIONS(1854), + [anon_sym_ATselector] = ACTIONS(1854), + [anon_sym_ATencode] = ACTIONS(1854), + [anon_sym_AT] = ACTIONS(1852), + [sym_YES] = ACTIONS(1852), + [sym_NO] = ACTIONS(1852), + [anon_sym___builtin_available] = ACTIONS(1852), + [anon_sym_ATavailable] = ACTIONS(1854), + [anon_sym_va_arg] = ACTIONS(1852), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [537] = { + [sym_identifier] = ACTIONS(1856), + [aux_sym_preproc_include_token1] = ACTIONS(1858), + [aux_sym_preproc_def_token1] = ACTIONS(1858), + [aux_sym_preproc_if_token1] = ACTIONS(1856), + [aux_sym_preproc_if_token2] = ACTIONS(1856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1856), + [aux_sym_preproc_else_token1] = ACTIONS(1856), + [aux_sym_preproc_elif_token1] = ACTIONS(1856), + [anon_sym_LPAREN2] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1856), + [anon_sym_PLUS] = ACTIONS(1856), + [anon_sym_STAR] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_AMP] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1858), + [anon_sym_typedef] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(1856), + [anon_sym___attribute] = ACTIONS(1856), + [anon_sym___attribute__] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(1856), + [anon_sym___cdecl] = ACTIONS(1856), + [anon_sym___clrcall] = ACTIONS(1856), + [anon_sym___stdcall] = ACTIONS(1856), + [anon_sym___fastcall] = ACTIONS(1856), + [anon_sym___thiscall] = ACTIONS(1856), + [anon_sym___vectorcall] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACK] = ACTIONS(1858), + [anon_sym_static] = ACTIONS(1856), + [anon_sym_auto] = ACTIONS(1856), + [anon_sym_register] = ACTIONS(1856), + [anon_sym_inline] = ACTIONS(1856), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1856), + [anon_sym_const] = ACTIONS(1856), + [anon_sym_volatile] = ACTIONS(1856), + [anon_sym_restrict] = ACTIONS(1856), + [anon_sym__Atomic] = ACTIONS(1856), + [anon_sym_in] = ACTIONS(1856), + [anon_sym_out] = ACTIONS(1856), + [anon_sym_inout] = ACTIONS(1856), + [anon_sym_bycopy] = ACTIONS(1856), + [anon_sym_byref] = ACTIONS(1856), + [anon_sym_oneway] = ACTIONS(1856), + [anon_sym__Nullable] = ACTIONS(1856), + [anon_sym__Nonnull] = ACTIONS(1856), + [anon_sym__Nullable_result] = ACTIONS(1856), + [anon_sym__Null_unspecified] = ACTIONS(1856), + [anon_sym___autoreleasing] = ACTIONS(1856), + [anon_sym___nullable] = ACTIONS(1856), + [anon_sym___nonnull] = ACTIONS(1856), + [anon_sym___strong] = ACTIONS(1856), + [anon_sym___weak] = ACTIONS(1856), + [anon_sym___bridge] = ACTIONS(1856), + [anon_sym___bridge_transfer] = ACTIONS(1856), + [anon_sym___bridge_retained] = ACTIONS(1856), + [anon_sym___unsafe_unretained] = ACTIONS(1856), + [anon_sym___block] = ACTIONS(1856), + [anon_sym___kindof] = ACTIONS(1856), + [anon_sym___unused] = ACTIONS(1856), + [anon_sym__Complex] = ACTIONS(1856), + [anon_sym___complex] = ACTIONS(1856), + [anon_sym_IBOutlet] = ACTIONS(1856), + [anon_sym_IBInspectable] = ACTIONS(1856), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1856), + [anon_sym_signed] = ACTIONS(1856), + [anon_sym_unsigned] = ACTIONS(1856), + [anon_sym_long] = ACTIONS(1856), + [anon_sym_short] = ACTIONS(1856), + [sym_primitive_type] = ACTIONS(1856), + [anon_sym_enum] = ACTIONS(1856), + [anon_sym_struct] = ACTIONS(1856), + [anon_sym_union] = ACTIONS(1856), + [anon_sym_if] = ACTIONS(1856), + [anon_sym_switch] = ACTIONS(1856), + [anon_sym_case] = ACTIONS(1856), + [anon_sym_default] = ACTIONS(1856), + [anon_sym_while] = ACTIONS(1856), + [anon_sym_do] = ACTIONS(1856), + [anon_sym_for] = ACTIONS(1856), + [anon_sym_return] = ACTIONS(1856), + [anon_sym_break] = ACTIONS(1856), + [anon_sym_continue] = ACTIONS(1856), + [anon_sym_goto] = ACTIONS(1856), + [anon_sym_DASH_DASH] = ACTIONS(1858), + [anon_sym_PLUS_PLUS] = ACTIONS(1858), + [anon_sym_sizeof] = ACTIONS(1856), + [sym_number_literal] = ACTIONS(1858), + [anon_sym_L_SQUOTE] = ACTIONS(1858), + [anon_sym_u_SQUOTE] = ACTIONS(1858), + [anon_sym_U_SQUOTE] = ACTIONS(1858), + [anon_sym_u8_SQUOTE] = ACTIONS(1858), + [anon_sym_SQUOTE] = ACTIONS(1858), + [anon_sym_L_DQUOTE] = ACTIONS(1858), + [anon_sym_u_DQUOTE] = ACTIONS(1858), + [anon_sym_U_DQUOTE] = ACTIONS(1858), + [anon_sym_u8_DQUOTE] = ACTIONS(1858), + [anon_sym_DQUOTE] = ACTIONS(1858), + [sym_true] = ACTIONS(1856), + [sym_false] = ACTIONS(1856), + [sym_null] = ACTIONS(1856), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1858), + [anon_sym_ATimport] = ACTIONS(1858), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1856), + [anon_sym_ATcompatibility_alias] = ACTIONS(1858), + [anon_sym_ATprotocol] = ACTIONS(1858), + [anon_sym_ATclass] = ACTIONS(1858), + [anon_sym_ATinterface] = ACTIONS(1858), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1856), + [sym_method_attribute_specifier] = ACTIONS(1856), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1856), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1856), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1856), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1856), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1856), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1856), + [anon_sym_NS_AVAILABLE] = ACTIONS(1856), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1856), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1856), + [anon_sym_API_AVAILABLE] = ACTIONS(1856), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1856), + [anon_sym_API_DEPRECATED] = ACTIONS(1856), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1856), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1856), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1856), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1856), + [anon_sym___deprecated_msg] = ACTIONS(1856), + [anon_sym___deprecated_enum_msg] = ACTIONS(1856), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1856), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1856), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1856), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1856), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1856), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1856), + [anon_sym_ATimplementation] = ACTIONS(1858), + [anon_sym_NS_ENUM] = ACTIONS(1856), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1856), + [anon_sym_NS_OPTIONS] = ACTIONS(1856), + [anon_sym_typeof] = ACTIONS(1856), + [anon_sym___typeof] = ACTIONS(1856), + [anon_sym___typeof__] = ACTIONS(1856), + [sym_self] = ACTIONS(1856), + [sym_super] = ACTIONS(1856), + [sym_nil] = ACTIONS(1856), + [sym_id] = ACTIONS(1856), + [sym_instancetype] = ACTIONS(1856), + [sym_Class] = ACTIONS(1856), + [sym_SEL] = ACTIONS(1856), + [sym_IMP] = ACTIONS(1856), + [sym_BOOL] = ACTIONS(1856), + [sym_auto] = ACTIONS(1856), + [anon_sym_ATautoreleasepool] = ACTIONS(1858), + [anon_sym_ATsynchronized] = ACTIONS(1858), + [anon_sym_ATtry] = ACTIONS(1858), + [anon_sym_ATthrow] = ACTIONS(1858), + [anon_sym_ATselector] = ACTIONS(1858), + [anon_sym_ATencode] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(1856), + [sym_YES] = ACTIONS(1856), + [sym_NO] = ACTIONS(1856), + [anon_sym___builtin_available] = ACTIONS(1856), + [anon_sym_ATavailable] = ACTIONS(1858), + [anon_sym_va_arg] = ACTIONS(1856), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [538] = { + [sym_identifier] = ACTIONS(1860), + [aux_sym_preproc_include_token1] = ACTIONS(1862), + [aux_sym_preproc_def_token1] = ACTIONS(1862), + [aux_sym_preproc_if_token1] = ACTIONS(1860), + [aux_sym_preproc_if_token2] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1860), + [aux_sym_preproc_else_token1] = ACTIONS(1860), + [aux_sym_preproc_elif_token1] = ACTIONS(1860), + [anon_sym_LPAREN2] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_typedef] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym___attribute] = ACTIONS(1860), + [anon_sym___attribute__] = ACTIONS(1860), + [anon_sym___declspec] = ACTIONS(1860), + [anon_sym___cdecl] = ACTIONS(1860), + [anon_sym___clrcall] = ACTIONS(1860), + [anon_sym___stdcall] = ACTIONS(1860), + [anon_sym___fastcall] = ACTIONS(1860), + [anon_sym___thiscall] = ACTIONS(1860), + [anon_sym___vectorcall] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_auto] = ACTIONS(1860), + [anon_sym_register] = ACTIONS(1860), + [anon_sym_inline] = ACTIONS(1860), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_volatile] = ACTIONS(1860), + [anon_sym_restrict] = ACTIONS(1860), + [anon_sym__Atomic] = ACTIONS(1860), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_out] = ACTIONS(1860), + [anon_sym_inout] = ACTIONS(1860), + [anon_sym_bycopy] = ACTIONS(1860), + [anon_sym_byref] = ACTIONS(1860), + [anon_sym_oneway] = ACTIONS(1860), + [anon_sym__Nullable] = ACTIONS(1860), + [anon_sym__Nonnull] = ACTIONS(1860), + [anon_sym__Nullable_result] = ACTIONS(1860), + [anon_sym__Null_unspecified] = ACTIONS(1860), + [anon_sym___autoreleasing] = ACTIONS(1860), + [anon_sym___nullable] = ACTIONS(1860), + [anon_sym___nonnull] = ACTIONS(1860), + [anon_sym___strong] = ACTIONS(1860), + [anon_sym___weak] = ACTIONS(1860), + [anon_sym___bridge] = ACTIONS(1860), + [anon_sym___bridge_transfer] = ACTIONS(1860), + [anon_sym___bridge_retained] = ACTIONS(1860), + [anon_sym___unsafe_unretained] = ACTIONS(1860), + [anon_sym___block] = ACTIONS(1860), + [anon_sym___kindof] = ACTIONS(1860), + [anon_sym___unused] = ACTIONS(1860), + [anon_sym__Complex] = ACTIONS(1860), + [anon_sym___complex] = ACTIONS(1860), + [anon_sym_IBOutlet] = ACTIONS(1860), + [anon_sym_IBInspectable] = ACTIONS(1860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1860), + [anon_sym_signed] = ACTIONS(1860), + [anon_sym_unsigned] = ACTIONS(1860), + [anon_sym_long] = ACTIONS(1860), + [anon_sym_short] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_union] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_switch] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_goto] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_sizeof] = ACTIONS(1860), + [sym_number_literal] = ACTIONS(1862), + [anon_sym_L_SQUOTE] = ACTIONS(1862), + [anon_sym_u_SQUOTE] = ACTIONS(1862), + [anon_sym_U_SQUOTE] = ACTIONS(1862), + [anon_sym_u8_SQUOTE] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_L_DQUOTE] = ACTIONS(1862), + [anon_sym_u_DQUOTE] = ACTIONS(1862), + [anon_sym_U_DQUOTE] = ACTIONS(1862), + [anon_sym_u8_DQUOTE] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [sym_true] = ACTIONS(1860), + [sym_false] = ACTIONS(1860), + [sym_null] = ACTIONS(1860), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1862), + [anon_sym_ATimport] = ACTIONS(1862), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1860), + [anon_sym_ATcompatibility_alias] = ACTIONS(1862), + [anon_sym_ATprotocol] = ACTIONS(1862), + [anon_sym_ATclass] = ACTIONS(1862), + [anon_sym_ATinterface] = ACTIONS(1862), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1860), + [sym_method_attribute_specifier] = ACTIONS(1860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE] = ACTIONS(1860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_API_AVAILABLE] = ACTIONS(1860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_API_DEPRECATED] = ACTIONS(1860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1860), + [anon_sym___deprecated_msg] = ACTIONS(1860), + [anon_sym___deprecated_enum_msg] = ACTIONS(1860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1860), + [anon_sym_ATimplementation] = ACTIONS(1862), + [anon_sym_NS_ENUM] = ACTIONS(1860), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1860), + [anon_sym_NS_OPTIONS] = ACTIONS(1860), + [anon_sym_typeof] = ACTIONS(1860), + [anon_sym___typeof] = ACTIONS(1860), + [anon_sym___typeof__] = ACTIONS(1860), + [sym_self] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_nil] = ACTIONS(1860), + [sym_id] = ACTIONS(1860), + [sym_instancetype] = ACTIONS(1860), + [sym_Class] = ACTIONS(1860), + [sym_SEL] = ACTIONS(1860), + [sym_IMP] = ACTIONS(1860), + [sym_BOOL] = ACTIONS(1860), + [sym_auto] = ACTIONS(1860), + [anon_sym_ATautoreleasepool] = ACTIONS(1862), + [anon_sym_ATsynchronized] = ACTIONS(1862), + [anon_sym_ATtry] = ACTIONS(1862), + [anon_sym_ATthrow] = ACTIONS(1862), + [anon_sym_ATselector] = ACTIONS(1862), + [anon_sym_ATencode] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1860), + [sym_YES] = ACTIONS(1860), + [sym_NO] = ACTIONS(1860), + [anon_sym___builtin_available] = ACTIONS(1860), + [anon_sym_ATavailable] = ACTIONS(1862), + [anon_sym_va_arg] = ACTIONS(1860), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [539] = { + [sym_identifier] = ACTIONS(1860), + [aux_sym_preproc_include_token1] = ACTIONS(1862), + [aux_sym_preproc_def_token1] = ACTIONS(1862), + [aux_sym_preproc_if_token1] = ACTIONS(1860), + [aux_sym_preproc_if_token2] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1860), + [aux_sym_preproc_else_token1] = ACTIONS(1860), + [aux_sym_preproc_elif_token1] = ACTIONS(1860), + [anon_sym_LPAREN2] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_typedef] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym___attribute] = ACTIONS(1860), + [anon_sym___attribute__] = ACTIONS(1860), + [anon_sym___declspec] = ACTIONS(1860), + [anon_sym___cdecl] = ACTIONS(1860), + [anon_sym___clrcall] = ACTIONS(1860), + [anon_sym___stdcall] = ACTIONS(1860), + [anon_sym___fastcall] = ACTIONS(1860), + [anon_sym___thiscall] = ACTIONS(1860), + [anon_sym___vectorcall] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_auto] = ACTIONS(1860), + [anon_sym_register] = ACTIONS(1860), + [anon_sym_inline] = ACTIONS(1860), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_volatile] = ACTIONS(1860), + [anon_sym_restrict] = ACTIONS(1860), + [anon_sym__Atomic] = ACTIONS(1860), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_out] = ACTIONS(1860), + [anon_sym_inout] = ACTIONS(1860), + [anon_sym_bycopy] = ACTIONS(1860), + [anon_sym_byref] = ACTIONS(1860), + [anon_sym_oneway] = ACTIONS(1860), + [anon_sym__Nullable] = ACTIONS(1860), + [anon_sym__Nonnull] = ACTIONS(1860), + [anon_sym__Nullable_result] = ACTIONS(1860), + [anon_sym__Null_unspecified] = ACTIONS(1860), + [anon_sym___autoreleasing] = ACTIONS(1860), + [anon_sym___nullable] = ACTIONS(1860), + [anon_sym___nonnull] = ACTIONS(1860), + [anon_sym___strong] = ACTIONS(1860), + [anon_sym___weak] = ACTIONS(1860), + [anon_sym___bridge] = ACTIONS(1860), + [anon_sym___bridge_transfer] = ACTIONS(1860), + [anon_sym___bridge_retained] = ACTIONS(1860), + [anon_sym___unsafe_unretained] = ACTIONS(1860), + [anon_sym___block] = ACTIONS(1860), + [anon_sym___kindof] = ACTIONS(1860), + [anon_sym___unused] = ACTIONS(1860), + [anon_sym__Complex] = ACTIONS(1860), + [anon_sym___complex] = ACTIONS(1860), + [anon_sym_IBOutlet] = ACTIONS(1860), + [anon_sym_IBInspectable] = ACTIONS(1860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1860), + [anon_sym_signed] = ACTIONS(1860), + [anon_sym_unsigned] = ACTIONS(1860), + [anon_sym_long] = ACTIONS(1860), + [anon_sym_short] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_union] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_switch] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_goto] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_sizeof] = ACTIONS(1860), + [sym_number_literal] = ACTIONS(1862), + [anon_sym_L_SQUOTE] = ACTIONS(1862), + [anon_sym_u_SQUOTE] = ACTIONS(1862), + [anon_sym_U_SQUOTE] = ACTIONS(1862), + [anon_sym_u8_SQUOTE] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_L_DQUOTE] = ACTIONS(1862), + [anon_sym_u_DQUOTE] = ACTIONS(1862), + [anon_sym_U_DQUOTE] = ACTIONS(1862), + [anon_sym_u8_DQUOTE] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [sym_true] = ACTIONS(1860), + [sym_false] = ACTIONS(1860), + [sym_null] = ACTIONS(1860), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1862), + [anon_sym_ATimport] = ACTIONS(1862), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1860), + [anon_sym_ATcompatibility_alias] = ACTIONS(1862), + [anon_sym_ATprotocol] = ACTIONS(1862), + [anon_sym_ATclass] = ACTIONS(1862), + [anon_sym_ATinterface] = ACTIONS(1862), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1860), + [sym_method_attribute_specifier] = ACTIONS(1860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE] = ACTIONS(1860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_API_AVAILABLE] = ACTIONS(1860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_API_DEPRECATED] = ACTIONS(1860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1860), + [anon_sym___deprecated_msg] = ACTIONS(1860), + [anon_sym___deprecated_enum_msg] = ACTIONS(1860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1860), + [anon_sym_ATimplementation] = ACTIONS(1862), + [anon_sym_NS_ENUM] = ACTIONS(1860), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1860), + [anon_sym_NS_OPTIONS] = ACTIONS(1860), + [anon_sym_typeof] = ACTIONS(1860), + [anon_sym___typeof] = ACTIONS(1860), + [anon_sym___typeof__] = ACTIONS(1860), + [sym_self] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_nil] = ACTIONS(1860), + [sym_id] = ACTIONS(1860), + [sym_instancetype] = ACTIONS(1860), + [sym_Class] = ACTIONS(1860), + [sym_SEL] = ACTIONS(1860), + [sym_IMP] = ACTIONS(1860), + [sym_BOOL] = ACTIONS(1860), + [sym_auto] = ACTIONS(1860), + [anon_sym_ATautoreleasepool] = ACTIONS(1862), + [anon_sym_ATsynchronized] = ACTIONS(1862), + [anon_sym_ATtry] = ACTIONS(1862), + [anon_sym_ATthrow] = ACTIONS(1862), + [anon_sym_ATselector] = ACTIONS(1862), + [anon_sym_ATencode] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1860), + [sym_YES] = ACTIONS(1860), + [sym_NO] = ACTIONS(1860), + [anon_sym___builtin_available] = ACTIONS(1860), + [anon_sym_ATavailable] = ACTIONS(1862), + [anon_sym_va_arg] = ACTIONS(1860), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [540] = { + [sym_identifier] = ACTIONS(1860), + [aux_sym_preproc_include_token1] = ACTIONS(1862), + [aux_sym_preproc_def_token1] = ACTIONS(1862), + [aux_sym_preproc_if_token1] = ACTIONS(1860), + [aux_sym_preproc_if_token2] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1860), + [aux_sym_preproc_else_token1] = ACTIONS(1860), + [aux_sym_preproc_elif_token1] = ACTIONS(1860), + [anon_sym_LPAREN2] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_typedef] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym___attribute] = ACTIONS(1860), + [anon_sym___attribute__] = ACTIONS(1860), + [anon_sym___declspec] = ACTIONS(1860), + [anon_sym___cdecl] = ACTIONS(1860), + [anon_sym___clrcall] = ACTIONS(1860), + [anon_sym___stdcall] = ACTIONS(1860), + [anon_sym___fastcall] = ACTIONS(1860), + [anon_sym___thiscall] = ACTIONS(1860), + [anon_sym___vectorcall] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_auto] = ACTIONS(1860), + [anon_sym_register] = ACTIONS(1860), + [anon_sym_inline] = ACTIONS(1860), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_volatile] = ACTIONS(1860), + [anon_sym_restrict] = ACTIONS(1860), + [anon_sym__Atomic] = ACTIONS(1860), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_out] = ACTIONS(1860), + [anon_sym_inout] = ACTIONS(1860), + [anon_sym_bycopy] = ACTIONS(1860), + [anon_sym_byref] = ACTIONS(1860), + [anon_sym_oneway] = ACTIONS(1860), + [anon_sym__Nullable] = ACTIONS(1860), + [anon_sym__Nonnull] = ACTIONS(1860), + [anon_sym__Nullable_result] = ACTIONS(1860), + [anon_sym__Null_unspecified] = ACTIONS(1860), + [anon_sym___autoreleasing] = ACTIONS(1860), + [anon_sym___nullable] = ACTIONS(1860), + [anon_sym___nonnull] = ACTIONS(1860), + [anon_sym___strong] = ACTIONS(1860), + [anon_sym___weak] = ACTIONS(1860), + [anon_sym___bridge] = ACTIONS(1860), + [anon_sym___bridge_transfer] = ACTIONS(1860), + [anon_sym___bridge_retained] = ACTIONS(1860), + [anon_sym___unsafe_unretained] = ACTIONS(1860), + [anon_sym___block] = ACTIONS(1860), + [anon_sym___kindof] = ACTIONS(1860), + [anon_sym___unused] = ACTIONS(1860), + [anon_sym__Complex] = ACTIONS(1860), + [anon_sym___complex] = ACTIONS(1860), + [anon_sym_IBOutlet] = ACTIONS(1860), + [anon_sym_IBInspectable] = ACTIONS(1860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1860), + [anon_sym_signed] = ACTIONS(1860), + [anon_sym_unsigned] = ACTIONS(1860), + [anon_sym_long] = ACTIONS(1860), + [anon_sym_short] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_union] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_switch] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_goto] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_sizeof] = ACTIONS(1860), + [sym_number_literal] = ACTIONS(1862), + [anon_sym_L_SQUOTE] = ACTIONS(1862), + [anon_sym_u_SQUOTE] = ACTIONS(1862), + [anon_sym_U_SQUOTE] = ACTIONS(1862), + [anon_sym_u8_SQUOTE] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_L_DQUOTE] = ACTIONS(1862), + [anon_sym_u_DQUOTE] = ACTIONS(1862), + [anon_sym_U_DQUOTE] = ACTIONS(1862), + [anon_sym_u8_DQUOTE] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [sym_true] = ACTIONS(1860), + [sym_false] = ACTIONS(1860), + [sym_null] = ACTIONS(1860), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1862), + [anon_sym_ATimport] = ACTIONS(1862), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1860), + [anon_sym_ATcompatibility_alias] = ACTIONS(1862), + [anon_sym_ATprotocol] = ACTIONS(1862), + [anon_sym_ATclass] = ACTIONS(1862), + [anon_sym_ATinterface] = ACTIONS(1862), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1860), + [sym_method_attribute_specifier] = ACTIONS(1860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE] = ACTIONS(1860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_API_AVAILABLE] = ACTIONS(1860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_API_DEPRECATED] = ACTIONS(1860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1860), + [anon_sym___deprecated_msg] = ACTIONS(1860), + [anon_sym___deprecated_enum_msg] = ACTIONS(1860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1860), + [anon_sym_ATimplementation] = ACTIONS(1862), + [anon_sym_NS_ENUM] = ACTIONS(1860), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1860), + [anon_sym_NS_OPTIONS] = ACTIONS(1860), + [anon_sym_typeof] = ACTIONS(1860), + [anon_sym___typeof] = ACTIONS(1860), + [anon_sym___typeof__] = ACTIONS(1860), + [sym_self] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_nil] = ACTIONS(1860), + [sym_id] = ACTIONS(1860), + [sym_instancetype] = ACTIONS(1860), + [sym_Class] = ACTIONS(1860), + [sym_SEL] = ACTIONS(1860), + [sym_IMP] = ACTIONS(1860), + [sym_BOOL] = ACTIONS(1860), + [sym_auto] = ACTIONS(1860), + [anon_sym_ATautoreleasepool] = ACTIONS(1862), + [anon_sym_ATsynchronized] = ACTIONS(1862), + [anon_sym_ATtry] = ACTIONS(1862), + [anon_sym_ATthrow] = ACTIONS(1862), + [anon_sym_ATselector] = ACTIONS(1862), + [anon_sym_ATencode] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1860), + [sym_YES] = ACTIONS(1860), + [sym_NO] = ACTIONS(1860), + [anon_sym___builtin_available] = ACTIONS(1860), + [anon_sym_ATavailable] = ACTIONS(1862), + [anon_sym_va_arg] = ACTIONS(1860), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [541] = { + [sym_identifier] = ACTIONS(1860), + [aux_sym_preproc_include_token1] = ACTIONS(1862), + [aux_sym_preproc_def_token1] = ACTIONS(1862), + [aux_sym_preproc_if_token1] = ACTIONS(1860), + [aux_sym_preproc_if_token2] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1860), + [aux_sym_preproc_else_token1] = ACTIONS(1860), + [aux_sym_preproc_elif_token1] = ACTIONS(1860), + [anon_sym_LPAREN2] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_typedef] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym___attribute] = ACTIONS(1860), + [anon_sym___attribute__] = ACTIONS(1860), + [anon_sym___declspec] = ACTIONS(1860), + [anon_sym___cdecl] = ACTIONS(1860), + [anon_sym___clrcall] = ACTIONS(1860), + [anon_sym___stdcall] = ACTIONS(1860), + [anon_sym___fastcall] = ACTIONS(1860), + [anon_sym___thiscall] = ACTIONS(1860), + [anon_sym___vectorcall] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_auto] = ACTIONS(1860), + [anon_sym_register] = ACTIONS(1860), + [anon_sym_inline] = ACTIONS(1860), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_volatile] = ACTIONS(1860), + [anon_sym_restrict] = ACTIONS(1860), + [anon_sym__Atomic] = ACTIONS(1860), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_out] = ACTIONS(1860), + [anon_sym_inout] = ACTIONS(1860), + [anon_sym_bycopy] = ACTIONS(1860), + [anon_sym_byref] = ACTIONS(1860), + [anon_sym_oneway] = ACTIONS(1860), + [anon_sym__Nullable] = ACTIONS(1860), + [anon_sym__Nonnull] = ACTIONS(1860), + [anon_sym__Nullable_result] = ACTIONS(1860), + [anon_sym__Null_unspecified] = ACTIONS(1860), + [anon_sym___autoreleasing] = ACTIONS(1860), + [anon_sym___nullable] = ACTIONS(1860), + [anon_sym___nonnull] = ACTIONS(1860), + [anon_sym___strong] = ACTIONS(1860), + [anon_sym___weak] = ACTIONS(1860), + [anon_sym___bridge] = ACTIONS(1860), + [anon_sym___bridge_transfer] = ACTIONS(1860), + [anon_sym___bridge_retained] = ACTIONS(1860), + [anon_sym___unsafe_unretained] = ACTIONS(1860), + [anon_sym___block] = ACTIONS(1860), + [anon_sym___kindof] = ACTIONS(1860), + [anon_sym___unused] = ACTIONS(1860), + [anon_sym__Complex] = ACTIONS(1860), + [anon_sym___complex] = ACTIONS(1860), + [anon_sym_IBOutlet] = ACTIONS(1860), + [anon_sym_IBInspectable] = ACTIONS(1860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1860), + [anon_sym_signed] = ACTIONS(1860), + [anon_sym_unsigned] = ACTIONS(1860), + [anon_sym_long] = ACTIONS(1860), + [anon_sym_short] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_union] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_switch] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_goto] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_sizeof] = ACTIONS(1860), + [sym_number_literal] = ACTIONS(1862), + [anon_sym_L_SQUOTE] = ACTIONS(1862), + [anon_sym_u_SQUOTE] = ACTIONS(1862), + [anon_sym_U_SQUOTE] = ACTIONS(1862), + [anon_sym_u8_SQUOTE] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_L_DQUOTE] = ACTIONS(1862), + [anon_sym_u_DQUOTE] = ACTIONS(1862), + [anon_sym_U_DQUOTE] = ACTIONS(1862), + [anon_sym_u8_DQUOTE] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [sym_true] = ACTIONS(1860), + [sym_false] = ACTIONS(1860), + [sym_null] = ACTIONS(1860), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1862), + [anon_sym_ATimport] = ACTIONS(1862), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1860), + [anon_sym_ATcompatibility_alias] = ACTIONS(1862), + [anon_sym_ATprotocol] = ACTIONS(1862), + [anon_sym_ATclass] = ACTIONS(1862), + [anon_sym_ATinterface] = ACTIONS(1862), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1860), + [sym_method_attribute_specifier] = ACTIONS(1860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE] = ACTIONS(1860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_API_AVAILABLE] = ACTIONS(1860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_API_DEPRECATED] = ACTIONS(1860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1860), + [anon_sym___deprecated_msg] = ACTIONS(1860), + [anon_sym___deprecated_enum_msg] = ACTIONS(1860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1860), + [anon_sym_ATimplementation] = ACTIONS(1862), + [anon_sym_NS_ENUM] = ACTIONS(1860), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1860), + [anon_sym_NS_OPTIONS] = ACTIONS(1860), + [anon_sym_typeof] = ACTIONS(1860), + [anon_sym___typeof] = ACTIONS(1860), + [anon_sym___typeof__] = ACTIONS(1860), + [sym_self] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_nil] = ACTIONS(1860), + [sym_id] = ACTIONS(1860), + [sym_instancetype] = ACTIONS(1860), + [sym_Class] = ACTIONS(1860), + [sym_SEL] = ACTIONS(1860), + [sym_IMP] = ACTIONS(1860), + [sym_BOOL] = ACTIONS(1860), + [sym_auto] = ACTIONS(1860), + [anon_sym_ATautoreleasepool] = ACTIONS(1862), + [anon_sym_ATsynchronized] = ACTIONS(1862), + [anon_sym_ATtry] = ACTIONS(1862), + [anon_sym_ATthrow] = ACTIONS(1862), + [anon_sym_ATselector] = ACTIONS(1862), + [anon_sym_ATencode] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1860), + [sym_YES] = ACTIONS(1860), + [sym_NO] = ACTIONS(1860), + [anon_sym___builtin_available] = ACTIONS(1860), + [anon_sym_ATavailable] = ACTIONS(1862), + [anon_sym_va_arg] = ACTIONS(1860), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [542] = { + [sym_identifier] = ACTIONS(1860), + [aux_sym_preproc_include_token1] = ACTIONS(1862), + [aux_sym_preproc_def_token1] = ACTIONS(1862), + [aux_sym_preproc_if_token1] = ACTIONS(1860), + [aux_sym_preproc_if_token2] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1860), + [aux_sym_preproc_else_token1] = ACTIONS(1860), + [aux_sym_preproc_elif_token1] = ACTIONS(1860), + [anon_sym_LPAREN2] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_typedef] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym___attribute] = ACTIONS(1860), + [anon_sym___attribute__] = ACTIONS(1860), + [anon_sym___declspec] = ACTIONS(1860), + [anon_sym___cdecl] = ACTIONS(1860), + [anon_sym___clrcall] = ACTIONS(1860), + [anon_sym___stdcall] = ACTIONS(1860), + [anon_sym___fastcall] = ACTIONS(1860), + [anon_sym___thiscall] = ACTIONS(1860), + [anon_sym___vectorcall] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_auto] = ACTIONS(1860), + [anon_sym_register] = ACTIONS(1860), + [anon_sym_inline] = ACTIONS(1860), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_volatile] = ACTIONS(1860), + [anon_sym_restrict] = ACTIONS(1860), + [anon_sym__Atomic] = ACTIONS(1860), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_out] = ACTIONS(1860), + [anon_sym_inout] = ACTIONS(1860), + [anon_sym_bycopy] = ACTIONS(1860), + [anon_sym_byref] = ACTIONS(1860), + [anon_sym_oneway] = ACTIONS(1860), + [anon_sym__Nullable] = ACTIONS(1860), + [anon_sym__Nonnull] = ACTIONS(1860), + [anon_sym__Nullable_result] = ACTIONS(1860), + [anon_sym__Null_unspecified] = ACTIONS(1860), + [anon_sym___autoreleasing] = ACTIONS(1860), + [anon_sym___nullable] = ACTIONS(1860), + [anon_sym___nonnull] = ACTIONS(1860), + [anon_sym___strong] = ACTIONS(1860), + [anon_sym___weak] = ACTIONS(1860), + [anon_sym___bridge] = ACTIONS(1860), + [anon_sym___bridge_transfer] = ACTIONS(1860), + [anon_sym___bridge_retained] = ACTIONS(1860), + [anon_sym___unsafe_unretained] = ACTIONS(1860), + [anon_sym___block] = ACTIONS(1860), + [anon_sym___kindof] = ACTIONS(1860), + [anon_sym___unused] = ACTIONS(1860), + [anon_sym__Complex] = ACTIONS(1860), + [anon_sym___complex] = ACTIONS(1860), + [anon_sym_IBOutlet] = ACTIONS(1860), + [anon_sym_IBInspectable] = ACTIONS(1860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1860), + [anon_sym_signed] = ACTIONS(1860), + [anon_sym_unsigned] = ACTIONS(1860), + [anon_sym_long] = ACTIONS(1860), + [anon_sym_short] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_union] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_switch] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_goto] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_sizeof] = ACTIONS(1860), + [sym_number_literal] = ACTIONS(1862), + [anon_sym_L_SQUOTE] = ACTIONS(1862), + [anon_sym_u_SQUOTE] = ACTIONS(1862), + [anon_sym_U_SQUOTE] = ACTIONS(1862), + [anon_sym_u8_SQUOTE] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_L_DQUOTE] = ACTIONS(1862), + [anon_sym_u_DQUOTE] = ACTIONS(1862), + [anon_sym_U_DQUOTE] = ACTIONS(1862), + [anon_sym_u8_DQUOTE] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [sym_true] = ACTIONS(1860), + [sym_false] = ACTIONS(1860), + [sym_null] = ACTIONS(1860), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1862), + [anon_sym_ATimport] = ACTIONS(1862), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1860), + [anon_sym_ATcompatibility_alias] = ACTIONS(1862), + [anon_sym_ATprotocol] = ACTIONS(1862), + [anon_sym_ATclass] = ACTIONS(1862), + [anon_sym_ATinterface] = ACTIONS(1862), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1860), + [sym_method_attribute_specifier] = ACTIONS(1860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE] = ACTIONS(1860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_API_AVAILABLE] = ACTIONS(1860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_API_DEPRECATED] = ACTIONS(1860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1860), + [anon_sym___deprecated_msg] = ACTIONS(1860), + [anon_sym___deprecated_enum_msg] = ACTIONS(1860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1860), + [anon_sym_ATimplementation] = ACTIONS(1862), + [anon_sym_NS_ENUM] = ACTIONS(1860), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1860), + [anon_sym_NS_OPTIONS] = ACTIONS(1860), + [anon_sym_typeof] = ACTIONS(1860), + [anon_sym___typeof] = ACTIONS(1860), + [anon_sym___typeof__] = ACTIONS(1860), + [sym_self] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_nil] = ACTIONS(1860), + [sym_id] = ACTIONS(1860), + [sym_instancetype] = ACTIONS(1860), + [sym_Class] = ACTIONS(1860), + [sym_SEL] = ACTIONS(1860), + [sym_IMP] = ACTIONS(1860), + [sym_BOOL] = ACTIONS(1860), + [sym_auto] = ACTIONS(1860), + [anon_sym_ATautoreleasepool] = ACTIONS(1862), + [anon_sym_ATsynchronized] = ACTIONS(1862), + [anon_sym_ATtry] = ACTIONS(1862), + [anon_sym_ATthrow] = ACTIONS(1862), + [anon_sym_ATselector] = ACTIONS(1862), + [anon_sym_ATencode] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1860), + [sym_YES] = ACTIONS(1860), + [sym_NO] = ACTIONS(1860), + [anon_sym___builtin_available] = ACTIONS(1860), + [anon_sym_ATavailable] = ACTIONS(1862), + [anon_sym_va_arg] = ACTIONS(1860), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [543] = { + [sym_identifier] = ACTIONS(1864), + [aux_sym_preproc_include_token1] = ACTIONS(1866), + [aux_sym_preproc_def_token1] = ACTIONS(1866), + [aux_sym_preproc_if_token1] = ACTIONS(1864), + [aux_sym_preproc_if_token2] = ACTIONS(1864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1864), + [aux_sym_preproc_else_token1] = ACTIONS(1864), + [aux_sym_preproc_elif_token1] = ACTIONS(1864), + [anon_sym_LPAREN2] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1864), + [anon_sym_PLUS] = ACTIONS(1864), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym_AMP] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_typedef] = ACTIONS(1864), + [anon_sym_extern] = ACTIONS(1864), + [anon_sym___attribute] = ACTIONS(1864), + [anon_sym___attribute__] = ACTIONS(1864), + [anon_sym___declspec] = ACTIONS(1864), + [anon_sym___cdecl] = ACTIONS(1864), + [anon_sym___clrcall] = ACTIONS(1864), + [anon_sym___stdcall] = ACTIONS(1864), + [anon_sym___fastcall] = ACTIONS(1864), + [anon_sym___thiscall] = ACTIONS(1864), + [anon_sym___vectorcall] = ACTIONS(1864), + [anon_sym_LBRACE] = ACTIONS(1866), + [anon_sym_LBRACK] = ACTIONS(1866), + [anon_sym_static] = ACTIONS(1864), + [anon_sym_auto] = ACTIONS(1864), + [anon_sym_register] = ACTIONS(1864), + [anon_sym_inline] = ACTIONS(1864), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1864), + [anon_sym_const] = ACTIONS(1864), + [anon_sym_volatile] = ACTIONS(1864), + [anon_sym_restrict] = ACTIONS(1864), + [anon_sym__Atomic] = ACTIONS(1864), + [anon_sym_in] = ACTIONS(1864), + [anon_sym_out] = ACTIONS(1864), + [anon_sym_inout] = ACTIONS(1864), + [anon_sym_bycopy] = ACTIONS(1864), + [anon_sym_byref] = ACTIONS(1864), + [anon_sym_oneway] = ACTIONS(1864), + [anon_sym__Nullable] = ACTIONS(1864), + [anon_sym__Nonnull] = ACTIONS(1864), + [anon_sym__Nullable_result] = ACTIONS(1864), + [anon_sym__Null_unspecified] = ACTIONS(1864), + [anon_sym___autoreleasing] = ACTIONS(1864), + [anon_sym___nullable] = ACTIONS(1864), + [anon_sym___nonnull] = ACTIONS(1864), + [anon_sym___strong] = ACTIONS(1864), + [anon_sym___weak] = ACTIONS(1864), + [anon_sym___bridge] = ACTIONS(1864), + [anon_sym___bridge_transfer] = ACTIONS(1864), + [anon_sym___bridge_retained] = ACTIONS(1864), + [anon_sym___unsafe_unretained] = ACTIONS(1864), + [anon_sym___block] = ACTIONS(1864), + [anon_sym___kindof] = ACTIONS(1864), + [anon_sym___unused] = ACTIONS(1864), + [anon_sym__Complex] = ACTIONS(1864), + [anon_sym___complex] = ACTIONS(1864), + [anon_sym_IBOutlet] = ACTIONS(1864), + [anon_sym_IBInspectable] = ACTIONS(1864), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1864), + [anon_sym_signed] = ACTIONS(1864), + [anon_sym_unsigned] = ACTIONS(1864), + [anon_sym_long] = ACTIONS(1864), + [anon_sym_short] = ACTIONS(1864), + [sym_primitive_type] = ACTIONS(1864), + [anon_sym_enum] = ACTIONS(1864), + [anon_sym_struct] = ACTIONS(1864), + [anon_sym_union] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_switch] = ACTIONS(1864), + [anon_sym_case] = ACTIONS(1864), + [anon_sym_default] = ACTIONS(1864), + [anon_sym_while] = ACTIONS(1864), + [anon_sym_do] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_break] = ACTIONS(1864), + [anon_sym_continue] = ACTIONS(1864), + [anon_sym_goto] = ACTIONS(1864), + [anon_sym_DASH_DASH] = ACTIONS(1866), + [anon_sym_PLUS_PLUS] = ACTIONS(1866), + [anon_sym_sizeof] = ACTIONS(1864), + [sym_number_literal] = ACTIONS(1866), + [anon_sym_L_SQUOTE] = ACTIONS(1866), + [anon_sym_u_SQUOTE] = ACTIONS(1866), + [anon_sym_U_SQUOTE] = ACTIONS(1866), + [anon_sym_u8_SQUOTE] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_L_DQUOTE] = ACTIONS(1866), + [anon_sym_u_DQUOTE] = ACTIONS(1866), + [anon_sym_U_DQUOTE] = ACTIONS(1866), + [anon_sym_u8_DQUOTE] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [sym_true] = ACTIONS(1864), + [sym_false] = ACTIONS(1864), + [sym_null] = ACTIONS(1864), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1866), + [anon_sym_ATimport] = ACTIONS(1866), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1864), + [anon_sym_ATcompatibility_alias] = ACTIONS(1866), + [anon_sym_ATprotocol] = ACTIONS(1866), + [anon_sym_ATclass] = ACTIONS(1866), + [anon_sym_ATinterface] = ACTIONS(1866), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1864), + [sym_method_attribute_specifier] = ACTIONS(1864), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1864), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1864), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1864), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1864), + [anon_sym_NS_AVAILABLE] = ACTIONS(1864), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1864), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1864), + [anon_sym_API_AVAILABLE] = ACTIONS(1864), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1864), + [anon_sym_API_DEPRECATED] = ACTIONS(1864), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1864), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1864), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1864), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1864), + [anon_sym___deprecated_msg] = ACTIONS(1864), + [anon_sym___deprecated_enum_msg] = ACTIONS(1864), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1864), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1864), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1864), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1864), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1864), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1864), + [anon_sym_ATimplementation] = ACTIONS(1866), + [anon_sym_NS_ENUM] = ACTIONS(1864), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1864), + [anon_sym_NS_OPTIONS] = ACTIONS(1864), + [anon_sym_typeof] = ACTIONS(1864), + [anon_sym___typeof] = ACTIONS(1864), + [anon_sym___typeof__] = ACTIONS(1864), + [sym_self] = ACTIONS(1864), + [sym_super] = ACTIONS(1864), + [sym_nil] = ACTIONS(1864), + [sym_id] = ACTIONS(1864), + [sym_instancetype] = ACTIONS(1864), + [sym_Class] = ACTIONS(1864), + [sym_SEL] = ACTIONS(1864), + [sym_IMP] = ACTIONS(1864), + [sym_BOOL] = ACTIONS(1864), + [sym_auto] = ACTIONS(1864), + [anon_sym_ATautoreleasepool] = ACTIONS(1866), + [anon_sym_ATsynchronized] = ACTIONS(1866), + [anon_sym_ATtry] = ACTIONS(1866), + [anon_sym_ATthrow] = ACTIONS(1866), + [anon_sym_ATselector] = ACTIONS(1866), + [anon_sym_ATencode] = ACTIONS(1866), + [anon_sym_AT] = ACTIONS(1864), + [sym_YES] = ACTIONS(1864), + [sym_NO] = ACTIONS(1864), + [anon_sym___builtin_available] = ACTIONS(1864), + [anon_sym_ATavailable] = ACTIONS(1866), + [anon_sym_va_arg] = ACTIONS(1864), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [544] = { + [sym_identifier] = ACTIONS(1868), + [aux_sym_preproc_include_token1] = ACTIONS(1870), + [aux_sym_preproc_def_token1] = ACTIONS(1870), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_if_token2] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [aux_sym_preproc_else_token1] = ACTIONS(1868), + [aux_sym_preproc_elif_token1] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym___attribute] = ACTIONS(1868), + [anon_sym___attribute__] = ACTIONS(1868), + [anon_sym___declspec] = ACTIONS(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_auto] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_inline] = ACTIONS(1868), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_volatile] = ACTIONS(1868), + [anon_sym_restrict] = ACTIONS(1868), + [anon_sym__Atomic] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_out] = ACTIONS(1868), + [anon_sym_inout] = ACTIONS(1868), + [anon_sym_bycopy] = ACTIONS(1868), + [anon_sym_byref] = ACTIONS(1868), + [anon_sym_oneway] = ACTIONS(1868), + [anon_sym__Nullable] = ACTIONS(1868), + [anon_sym__Nonnull] = ACTIONS(1868), + [anon_sym__Nullable_result] = ACTIONS(1868), + [anon_sym__Null_unspecified] = ACTIONS(1868), + [anon_sym___autoreleasing] = ACTIONS(1868), + [anon_sym___nullable] = ACTIONS(1868), + [anon_sym___nonnull] = ACTIONS(1868), + [anon_sym___strong] = ACTIONS(1868), + [anon_sym___weak] = ACTIONS(1868), + [anon_sym___bridge] = ACTIONS(1868), + [anon_sym___bridge_transfer] = ACTIONS(1868), + [anon_sym___bridge_retained] = ACTIONS(1868), + [anon_sym___unsafe_unretained] = ACTIONS(1868), + [anon_sym___block] = ACTIONS(1868), + [anon_sym___kindof] = ACTIONS(1868), + [anon_sym___unused] = ACTIONS(1868), + [anon_sym__Complex] = ACTIONS(1868), + [anon_sym___complex] = ACTIONS(1868), + [anon_sym_IBOutlet] = ACTIONS(1868), + [anon_sym_IBInspectable] = ACTIONS(1868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1868), + [anon_sym_signed] = ACTIONS(1868), + [anon_sym_unsigned] = ACTIONS(1868), + [anon_sym_long] = ACTIONS(1868), + [anon_sym_short] = ACTIONS(1868), + [sym_primitive_type] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_sizeof] = ACTIONS(1868), + [sym_number_literal] = ACTIONS(1870), + [anon_sym_L_SQUOTE] = ACTIONS(1870), + [anon_sym_u_SQUOTE] = ACTIONS(1870), + [anon_sym_U_SQUOTE] = ACTIONS(1870), + [anon_sym_u8_SQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_L_DQUOTE] = ACTIONS(1870), + [anon_sym_u_DQUOTE] = ACTIONS(1870), + [anon_sym_U_DQUOTE] = ACTIONS(1870), + [anon_sym_u8_DQUOTE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1870), + [anon_sym_ATimport] = ACTIONS(1870), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1868), + [anon_sym_ATcompatibility_alias] = ACTIONS(1870), + [anon_sym_ATprotocol] = ACTIONS(1870), + [anon_sym_ATclass] = ACTIONS(1870), + [anon_sym_ATinterface] = ACTIONS(1870), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1868), + [sym_method_attribute_specifier] = ACTIONS(1868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE] = ACTIONS(1868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_API_AVAILABLE] = ACTIONS(1868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_API_DEPRECATED] = ACTIONS(1868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1868), + [anon_sym___deprecated_msg] = ACTIONS(1868), + [anon_sym___deprecated_enum_msg] = ACTIONS(1868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1868), + [anon_sym_ATimplementation] = ACTIONS(1870), + [anon_sym_NS_ENUM] = ACTIONS(1868), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1868), + [anon_sym_NS_OPTIONS] = ACTIONS(1868), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym___typeof] = ACTIONS(1868), + [anon_sym___typeof__] = ACTIONS(1868), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [sym_id] = ACTIONS(1868), + [sym_instancetype] = ACTIONS(1868), + [sym_Class] = ACTIONS(1868), + [sym_SEL] = ACTIONS(1868), + [sym_IMP] = ACTIONS(1868), + [sym_BOOL] = ACTIONS(1868), + [sym_auto] = ACTIONS(1868), + [anon_sym_ATautoreleasepool] = ACTIONS(1870), + [anon_sym_ATsynchronized] = ACTIONS(1870), + [anon_sym_ATtry] = ACTIONS(1870), + [anon_sym_ATthrow] = ACTIONS(1870), + [anon_sym_ATselector] = ACTIONS(1870), + [anon_sym_ATencode] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1868), + [sym_YES] = ACTIONS(1868), + [sym_NO] = ACTIONS(1868), + [anon_sym___builtin_available] = ACTIONS(1868), + [anon_sym_ATavailable] = ACTIONS(1870), + [anon_sym_va_arg] = ACTIONS(1868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [545] = { + [sym_identifier] = ACTIONS(1868), + [aux_sym_preproc_include_token1] = ACTIONS(1870), + [aux_sym_preproc_def_token1] = ACTIONS(1870), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_if_token2] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [aux_sym_preproc_else_token1] = ACTIONS(1868), + [aux_sym_preproc_elif_token1] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym___attribute] = ACTIONS(1868), + [anon_sym___attribute__] = ACTIONS(1868), + [anon_sym___declspec] = ACTIONS(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_auto] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_inline] = ACTIONS(1868), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_volatile] = ACTIONS(1868), + [anon_sym_restrict] = ACTIONS(1868), + [anon_sym__Atomic] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_out] = ACTIONS(1868), + [anon_sym_inout] = ACTIONS(1868), + [anon_sym_bycopy] = ACTIONS(1868), + [anon_sym_byref] = ACTIONS(1868), + [anon_sym_oneway] = ACTIONS(1868), + [anon_sym__Nullable] = ACTIONS(1868), + [anon_sym__Nonnull] = ACTIONS(1868), + [anon_sym__Nullable_result] = ACTIONS(1868), + [anon_sym__Null_unspecified] = ACTIONS(1868), + [anon_sym___autoreleasing] = ACTIONS(1868), + [anon_sym___nullable] = ACTIONS(1868), + [anon_sym___nonnull] = ACTIONS(1868), + [anon_sym___strong] = ACTIONS(1868), + [anon_sym___weak] = ACTIONS(1868), + [anon_sym___bridge] = ACTIONS(1868), + [anon_sym___bridge_transfer] = ACTIONS(1868), + [anon_sym___bridge_retained] = ACTIONS(1868), + [anon_sym___unsafe_unretained] = ACTIONS(1868), + [anon_sym___block] = ACTIONS(1868), + [anon_sym___kindof] = ACTIONS(1868), + [anon_sym___unused] = ACTIONS(1868), + [anon_sym__Complex] = ACTIONS(1868), + [anon_sym___complex] = ACTIONS(1868), + [anon_sym_IBOutlet] = ACTIONS(1868), + [anon_sym_IBInspectable] = ACTIONS(1868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1868), + [anon_sym_signed] = ACTIONS(1868), + [anon_sym_unsigned] = ACTIONS(1868), + [anon_sym_long] = ACTIONS(1868), + [anon_sym_short] = ACTIONS(1868), + [sym_primitive_type] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_sizeof] = ACTIONS(1868), + [sym_number_literal] = ACTIONS(1870), + [anon_sym_L_SQUOTE] = ACTIONS(1870), + [anon_sym_u_SQUOTE] = ACTIONS(1870), + [anon_sym_U_SQUOTE] = ACTIONS(1870), + [anon_sym_u8_SQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_L_DQUOTE] = ACTIONS(1870), + [anon_sym_u_DQUOTE] = ACTIONS(1870), + [anon_sym_U_DQUOTE] = ACTIONS(1870), + [anon_sym_u8_DQUOTE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1870), + [anon_sym_ATimport] = ACTIONS(1870), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1868), + [anon_sym_ATcompatibility_alias] = ACTIONS(1870), + [anon_sym_ATprotocol] = ACTIONS(1870), + [anon_sym_ATclass] = ACTIONS(1870), + [anon_sym_ATinterface] = ACTIONS(1870), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1868), + [sym_method_attribute_specifier] = ACTIONS(1868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE] = ACTIONS(1868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_API_AVAILABLE] = ACTIONS(1868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_API_DEPRECATED] = ACTIONS(1868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1868), + [anon_sym___deprecated_msg] = ACTIONS(1868), + [anon_sym___deprecated_enum_msg] = ACTIONS(1868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1868), + [anon_sym_ATimplementation] = ACTIONS(1870), + [anon_sym_NS_ENUM] = ACTIONS(1868), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1868), + [anon_sym_NS_OPTIONS] = ACTIONS(1868), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym___typeof] = ACTIONS(1868), + [anon_sym___typeof__] = ACTIONS(1868), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [sym_id] = ACTIONS(1868), + [sym_instancetype] = ACTIONS(1868), + [sym_Class] = ACTIONS(1868), + [sym_SEL] = ACTIONS(1868), + [sym_IMP] = ACTIONS(1868), + [sym_BOOL] = ACTIONS(1868), + [sym_auto] = ACTIONS(1868), + [anon_sym_ATautoreleasepool] = ACTIONS(1870), + [anon_sym_ATsynchronized] = ACTIONS(1870), + [anon_sym_ATtry] = ACTIONS(1870), + [anon_sym_ATthrow] = ACTIONS(1870), + [anon_sym_ATselector] = ACTIONS(1870), + [anon_sym_ATencode] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1868), + [sym_YES] = ACTIONS(1868), + [sym_NO] = ACTIONS(1868), + [anon_sym___builtin_available] = ACTIONS(1868), + [anon_sym_ATavailable] = ACTIONS(1870), + [anon_sym_va_arg] = ACTIONS(1868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [546] = { + [sym_identifier] = ACTIONS(1868), + [aux_sym_preproc_include_token1] = ACTIONS(1870), + [aux_sym_preproc_def_token1] = ACTIONS(1870), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_if_token2] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [aux_sym_preproc_else_token1] = ACTIONS(1868), + [aux_sym_preproc_elif_token1] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym___attribute] = ACTIONS(1868), + [anon_sym___attribute__] = ACTIONS(1868), + [anon_sym___declspec] = ACTIONS(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_auto] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_inline] = ACTIONS(1868), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_volatile] = ACTIONS(1868), + [anon_sym_restrict] = ACTIONS(1868), + [anon_sym__Atomic] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_out] = ACTIONS(1868), + [anon_sym_inout] = ACTIONS(1868), + [anon_sym_bycopy] = ACTIONS(1868), + [anon_sym_byref] = ACTIONS(1868), + [anon_sym_oneway] = ACTIONS(1868), + [anon_sym__Nullable] = ACTIONS(1868), + [anon_sym__Nonnull] = ACTIONS(1868), + [anon_sym__Nullable_result] = ACTIONS(1868), + [anon_sym__Null_unspecified] = ACTIONS(1868), + [anon_sym___autoreleasing] = ACTIONS(1868), + [anon_sym___nullable] = ACTIONS(1868), + [anon_sym___nonnull] = ACTIONS(1868), + [anon_sym___strong] = ACTIONS(1868), + [anon_sym___weak] = ACTIONS(1868), + [anon_sym___bridge] = ACTIONS(1868), + [anon_sym___bridge_transfer] = ACTIONS(1868), + [anon_sym___bridge_retained] = ACTIONS(1868), + [anon_sym___unsafe_unretained] = ACTIONS(1868), + [anon_sym___block] = ACTIONS(1868), + [anon_sym___kindof] = ACTIONS(1868), + [anon_sym___unused] = ACTIONS(1868), + [anon_sym__Complex] = ACTIONS(1868), + [anon_sym___complex] = ACTIONS(1868), + [anon_sym_IBOutlet] = ACTIONS(1868), + [anon_sym_IBInspectable] = ACTIONS(1868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1868), + [anon_sym_signed] = ACTIONS(1868), + [anon_sym_unsigned] = ACTIONS(1868), + [anon_sym_long] = ACTIONS(1868), + [anon_sym_short] = ACTIONS(1868), + [sym_primitive_type] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_sizeof] = ACTIONS(1868), + [sym_number_literal] = ACTIONS(1870), + [anon_sym_L_SQUOTE] = ACTIONS(1870), + [anon_sym_u_SQUOTE] = ACTIONS(1870), + [anon_sym_U_SQUOTE] = ACTIONS(1870), + [anon_sym_u8_SQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_L_DQUOTE] = ACTIONS(1870), + [anon_sym_u_DQUOTE] = ACTIONS(1870), + [anon_sym_U_DQUOTE] = ACTIONS(1870), + [anon_sym_u8_DQUOTE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1870), + [anon_sym_ATimport] = ACTIONS(1870), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1868), + [anon_sym_ATcompatibility_alias] = ACTIONS(1870), + [anon_sym_ATprotocol] = ACTIONS(1870), + [anon_sym_ATclass] = ACTIONS(1870), + [anon_sym_ATinterface] = ACTIONS(1870), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1868), + [sym_method_attribute_specifier] = ACTIONS(1868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE] = ACTIONS(1868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_API_AVAILABLE] = ACTIONS(1868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_API_DEPRECATED] = ACTIONS(1868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1868), + [anon_sym___deprecated_msg] = ACTIONS(1868), + [anon_sym___deprecated_enum_msg] = ACTIONS(1868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1868), + [anon_sym_ATimplementation] = ACTIONS(1870), + [anon_sym_NS_ENUM] = ACTIONS(1868), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1868), + [anon_sym_NS_OPTIONS] = ACTIONS(1868), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym___typeof] = ACTIONS(1868), + [anon_sym___typeof__] = ACTIONS(1868), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [sym_id] = ACTIONS(1868), + [sym_instancetype] = ACTIONS(1868), + [sym_Class] = ACTIONS(1868), + [sym_SEL] = ACTIONS(1868), + [sym_IMP] = ACTIONS(1868), + [sym_BOOL] = ACTIONS(1868), + [sym_auto] = ACTIONS(1868), + [anon_sym_ATautoreleasepool] = ACTIONS(1870), + [anon_sym_ATsynchronized] = ACTIONS(1870), + [anon_sym_ATtry] = ACTIONS(1870), + [anon_sym_ATthrow] = ACTIONS(1870), + [anon_sym_ATselector] = ACTIONS(1870), + [anon_sym_ATencode] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1868), + [sym_YES] = ACTIONS(1868), + [sym_NO] = ACTIONS(1868), + [anon_sym___builtin_available] = ACTIONS(1868), + [anon_sym_ATavailable] = ACTIONS(1870), + [anon_sym_va_arg] = ACTIONS(1868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [547] = { + [sym_identifier] = ACTIONS(1868), + [aux_sym_preproc_include_token1] = ACTIONS(1870), + [aux_sym_preproc_def_token1] = ACTIONS(1870), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_if_token2] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [aux_sym_preproc_else_token1] = ACTIONS(1868), + [aux_sym_preproc_elif_token1] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym___attribute] = ACTIONS(1868), + [anon_sym___attribute__] = ACTIONS(1868), + [anon_sym___declspec] = ACTIONS(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_auto] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_inline] = ACTIONS(1868), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_volatile] = ACTIONS(1868), + [anon_sym_restrict] = ACTIONS(1868), + [anon_sym__Atomic] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_out] = ACTIONS(1868), + [anon_sym_inout] = ACTIONS(1868), + [anon_sym_bycopy] = ACTIONS(1868), + [anon_sym_byref] = ACTIONS(1868), + [anon_sym_oneway] = ACTIONS(1868), + [anon_sym__Nullable] = ACTIONS(1868), + [anon_sym__Nonnull] = ACTIONS(1868), + [anon_sym__Nullable_result] = ACTIONS(1868), + [anon_sym__Null_unspecified] = ACTIONS(1868), + [anon_sym___autoreleasing] = ACTIONS(1868), + [anon_sym___nullable] = ACTIONS(1868), + [anon_sym___nonnull] = ACTIONS(1868), + [anon_sym___strong] = ACTIONS(1868), + [anon_sym___weak] = ACTIONS(1868), + [anon_sym___bridge] = ACTIONS(1868), + [anon_sym___bridge_transfer] = ACTIONS(1868), + [anon_sym___bridge_retained] = ACTIONS(1868), + [anon_sym___unsafe_unretained] = ACTIONS(1868), + [anon_sym___block] = ACTIONS(1868), + [anon_sym___kindof] = ACTIONS(1868), + [anon_sym___unused] = ACTIONS(1868), + [anon_sym__Complex] = ACTIONS(1868), + [anon_sym___complex] = ACTIONS(1868), + [anon_sym_IBOutlet] = ACTIONS(1868), + [anon_sym_IBInspectable] = ACTIONS(1868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1868), + [anon_sym_signed] = ACTIONS(1868), + [anon_sym_unsigned] = ACTIONS(1868), + [anon_sym_long] = ACTIONS(1868), + [anon_sym_short] = ACTIONS(1868), + [sym_primitive_type] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_sizeof] = ACTIONS(1868), + [sym_number_literal] = ACTIONS(1870), + [anon_sym_L_SQUOTE] = ACTIONS(1870), + [anon_sym_u_SQUOTE] = ACTIONS(1870), + [anon_sym_U_SQUOTE] = ACTIONS(1870), + [anon_sym_u8_SQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_L_DQUOTE] = ACTIONS(1870), + [anon_sym_u_DQUOTE] = ACTIONS(1870), + [anon_sym_U_DQUOTE] = ACTIONS(1870), + [anon_sym_u8_DQUOTE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1870), + [anon_sym_ATimport] = ACTIONS(1870), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1868), + [anon_sym_ATcompatibility_alias] = ACTIONS(1870), + [anon_sym_ATprotocol] = ACTIONS(1870), + [anon_sym_ATclass] = ACTIONS(1870), + [anon_sym_ATinterface] = ACTIONS(1870), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1868), + [sym_method_attribute_specifier] = ACTIONS(1868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE] = ACTIONS(1868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_API_AVAILABLE] = ACTIONS(1868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_API_DEPRECATED] = ACTIONS(1868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1868), + [anon_sym___deprecated_msg] = ACTIONS(1868), + [anon_sym___deprecated_enum_msg] = ACTIONS(1868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1868), + [anon_sym_ATimplementation] = ACTIONS(1870), + [anon_sym_NS_ENUM] = ACTIONS(1868), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1868), + [anon_sym_NS_OPTIONS] = ACTIONS(1868), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym___typeof] = ACTIONS(1868), + [anon_sym___typeof__] = ACTIONS(1868), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [sym_id] = ACTIONS(1868), + [sym_instancetype] = ACTIONS(1868), + [sym_Class] = ACTIONS(1868), + [sym_SEL] = ACTIONS(1868), + [sym_IMP] = ACTIONS(1868), + [sym_BOOL] = ACTIONS(1868), + [sym_auto] = ACTIONS(1868), + [anon_sym_ATautoreleasepool] = ACTIONS(1870), + [anon_sym_ATsynchronized] = ACTIONS(1870), + [anon_sym_ATtry] = ACTIONS(1870), + [anon_sym_ATthrow] = ACTIONS(1870), + [anon_sym_ATselector] = ACTIONS(1870), + [anon_sym_ATencode] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1868), + [sym_YES] = ACTIONS(1868), + [sym_NO] = ACTIONS(1868), + [anon_sym___builtin_available] = ACTIONS(1868), + [anon_sym_ATavailable] = ACTIONS(1870), + [anon_sym_va_arg] = ACTIONS(1868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [548] = { + [sym_identifier] = ACTIONS(1868), + [aux_sym_preproc_include_token1] = ACTIONS(1870), + [aux_sym_preproc_def_token1] = ACTIONS(1870), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_if_token2] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [aux_sym_preproc_else_token1] = ACTIONS(1868), + [aux_sym_preproc_elif_token1] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym___attribute] = ACTIONS(1868), + [anon_sym___attribute__] = ACTIONS(1868), + [anon_sym___declspec] = ACTIONS(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_auto] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_inline] = ACTIONS(1868), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_volatile] = ACTIONS(1868), + [anon_sym_restrict] = ACTIONS(1868), + [anon_sym__Atomic] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_out] = ACTIONS(1868), + [anon_sym_inout] = ACTIONS(1868), + [anon_sym_bycopy] = ACTIONS(1868), + [anon_sym_byref] = ACTIONS(1868), + [anon_sym_oneway] = ACTIONS(1868), + [anon_sym__Nullable] = ACTIONS(1868), + [anon_sym__Nonnull] = ACTIONS(1868), + [anon_sym__Nullable_result] = ACTIONS(1868), + [anon_sym__Null_unspecified] = ACTIONS(1868), + [anon_sym___autoreleasing] = ACTIONS(1868), + [anon_sym___nullable] = ACTIONS(1868), + [anon_sym___nonnull] = ACTIONS(1868), + [anon_sym___strong] = ACTIONS(1868), + [anon_sym___weak] = ACTIONS(1868), + [anon_sym___bridge] = ACTIONS(1868), + [anon_sym___bridge_transfer] = ACTIONS(1868), + [anon_sym___bridge_retained] = ACTIONS(1868), + [anon_sym___unsafe_unretained] = ACTIONS(1868), + [anon_sym___block] = ACTIONS(1868), + [anon_sym___kindof] = ACTIONS(1868), + [anon_sym___unused] = ACTIONS(1868), + [anon_sym__Complex] = ACTIONS(1868), + [anon_sym___complex] = ACTIONS(1868), + [anon_sym_IBOutlet] = ACTIONS(1868), + [anon_sym_IBInspectable] = ACTIONS(1868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1868), + [anon_sym_signed] = ACTIONS(1868), + [anon_sym_unsigned] = ACTIONS(1868), + [anon_sym_long] = ACTIONS(1868), + [anon_sym_short] = ACTIONS(1868), + [sym_primitive_type] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_sizeof] = ACTIONS(1868), + [sym_number_literal] = ACTIONS(1870), + [anon_sym_L_SQUOTE] = ACTIONS(1870), + [anon_sym_u_SQUOTE] = ACTIONS(1870), + [anon_sym_U_SQUOTE] = ACTIONS(1870), + [anon_sym_u8_SQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_L_DQUOTE] = ACTIONS(1870), + [anon_sym_u_DQUOTE] = ACTIONS(1870), + [anon_sym_U_DQUOTE] = ACTIONS(1870), + [anon_sym_u8_DQUOTE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1870), + [anon_sym_ATimport] = ACTIONS(1870), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1868), + [anon_sym_ATcompatibility_alias] = ACTIONS(1870), + [anon_sym_ATprotocol] = ACTIONS(1870), + [anon_sym_ATclass] = ACTIONS(1870), + [anon_sym_ATinterface] = ACTIONS(1870), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1868), + [sym_method_attribute_specifier] = ACTIONS(1868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE] = ACTIONS(1868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_API_AVAILABLE] = ACTIONS(1868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_API_DEPRECATED] = ACTIONS(1868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1868), + [anon_sym___deprecated_msg] = ACTIONS(1868), + [anon_sym___deprecated_enum_msg] = ACTIONS(1868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1868), + [anon_sym_ATimplementation] = ACTIONS(1870), + [anon_sym_NS_ENUM] = ACTIONS(1868), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1868), + [anon_sym_NS_OPTIONS] = ACTIONS(1868), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym___typeof] = ACTIONS(1868), + [anon_sym___typeof__] = ACTIONS(1868), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [sym_id] = ACTIONS(1868), + [sym_instancetype] = ACTIONS(1868), + [sym_Class] = ACTIONS(1868), + [sym_SEL] = ACTIONS(1868), + [sym_IMP] = ACTIONS(1868), + [sym_BOOL] = ACTIONS(1868), + [sym_auto] = ACTIONS(1868), + [anon_sym_ATautoreleasepool] = ACTIONS(1870), + [anon_sym_ATsynchronized] = ACTIONS(1870), + [anon_sym_ATtry] = ACTIONS(1870), + [anon_sym_ATthrow] = ACTIONS(1870), + [anon_sym_ATselector] = ACTIONS(1870), + [anon_sym_ATencode] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1868), + [sym_YES] = ACTIONS(1868), + [sym_NO] = ACTIONS(1868), + [anon_sym___builtin_available] = ACTIONS(1868), + [anon_sym_ATavailable] = ACTIONS(1870), + [anon_sym_va_arg] = ACTIONS(1868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [549] = { + [sym_identifier] = ACTIONS(1868), + [aux_sym_preproc_include_token1] = ACTIONS(1870), + [aux_sym_preproc_def_token1] = ACTIONS(1870), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_if_token2] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [aux_sym_preproc_else_token1] = ACTIONS(1868), + [aux_sym_preproc_elif_token1] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym___attribute] = ACTIONS(1868), + [anon_sym___attribute__] = ACTIONS(1868), + [anon_sym___declspec] = ACTIONS(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_auto] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_inline] = ACTIONS(1868), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_volatile] = ACTIONS(1868), + [anon_sym_restrict] = ACTIONS(1868), + [anon_sym__Atomic] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_out] = ACTIONS(1868), + [anon_sym_inout] = ACTIONS(1868), + [anon_sym_bycopy] = ACTIONS(1868), + [anon_sym_byref] = ACTIONS(1868), + [anon_sym_oneway] = ACTIONS(1868), + [anon_sym__Nullable] = ACTIONS(1868), + [anon_sym__Nonnull] = ACTIONS(1868), + [anon_sym__Nullable_result] = ACTIONS(1868), + [anon_sym__Null_unspecified] = ACTIONS(1868), + [anon_sym___autoreleasing] = ACTIONS(1868), + [anon_sym___nullable] = ACTIONS(1868), + [anon_sym___nonnull] = ACTIONS(1868), + [anon_sym___strong] = ACTIONS(1868), + [anon_sym___weak] = ACTIONS(1868), + [anon_sym___bridge] = ACTIONS(1868), + [anon_sym___bridge_transfer] = ACTIONS(1868), + [anon_sym___bridge_retained] = ACTIONS(1868), + [anon_sym___unsafe_unretained] = ACTIONS(1868), + [anon_sym___block] = ACTIONS(1868), + [anon_sym___kindof] = ACTIONS(1868), + [anon_sym___unused] = ACTIONS(1868), + [anon_sym__Complex] = ACTIONS(1868), + [anon_sym___complex] = ACTIONS(1868), + [anon_sym_IBOutlet] = ACTIONS(1868), + [anon_sym_IBInspectable] = ACTIONS(1868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1868), + [anon_sym_signed] = ACTIONS(1868), + [anon_sym_unsigned] = ACTIONS(1868), + [anon_sym_long] = ACTIONS(1868), + [anon_sym_short] = ACTIONS(1868), + [sym_primitive_type] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_sizeof] = ACTIONS(1868), + [sym_number_literal] = ACTIONS(1870), + [anon_sym_L_SQUOTE] = ACTIONS(1870), + [anon_sym_u_SQUOTE] = ACTIONS(1870), + [anon_sym_U_SQUOTE] = ACTIONS(1870), + [anon_sym_u8_SQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_L_DQUOTE] = ACTIONS(1870), + [anon_sym_u_DQUOTE] = ACTIONS(1870), + [anon_sym_U_DQUOTE] = ACTIONS(1870), + [anon_sym_u8_DQUOTE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1870), + [anon_sym_ATimport] = ACTIONS(1870), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1868), + [anon_sym_ATcompatibility_alias] = ACTIONS(1870), + [anon_sym_ATprotocol] = ACTIONS(1870), + [anon_sym_ATclass] = ACTIONS(1870), + [anon_sym_ATinterface] = ACTIONS(1870), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1868), + [sym_method_attribute_specifier] = ACTIONS(1868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE] = ACTIONS(1868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_API_AVAILABLE] = ACTIONS(1868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_API_DEPRECATED] = ACTIONS(1868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1868), + [anon_sym___deprecated_msg] = ACTIONS(1868), + [anon_sym___deprecated_enum_msg] = ACTIONS(1868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1868), + [anon_sym_ATimplementation] = ACTIONS(1870), + [anon_sym_NS_ENUM] = ACTIONS(1868), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1868), + [anon_sym_NS_OPTIONS] = ACTIONS(1868), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym___typeof] = ACTIONS(1868), + [anon_sym___typeof__] = ACTIONS(1868), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [sym_id] = ACTIONS(1868), + [sym_instancetype] = ACTIONS(1868), + [sym_Class] = ACTIONS(1868), + [sym_SEL] = ACTIONS(1868), + [sym_IMP] = ACTIONS(1868), + [sym_BOOL] = ACTIONS(1868), + [sym_auto] = ACTIONS(1868), + [anon_sym_ATautoreleasepool] = ACTIONS(1870), + [anon_sym_ATsynchronized] = ACTIONS(1870), + [anon_sym_ATtry] = ACTIONS(1870), + [anon_sym_ATthrow] = ACTIONS(1870), + [anon_sym_ATselector] = ACTIONS(1870), + [anon_sym_ATencode] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1868), + [sym_YES] = ACTIONS(1868), + [sym_NO] = ACTIONS(1868), + [anon_sym___builtin_available] = ACTIONS(1868), + [anon_sym_ATavailable] = ACTIONS(1870), + [anon_sym_va_arg] = ACTIONS(1868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [550] = { + [sym_identifier] = ACTIONS(1872), + [aux_sym_preproc_include_token1] = ACTIONS(1874), + [aux_sym_preproc_def_token1] = ACTIONS(1874), + [aux_sym_preproc_if_token1] = ACTIONS(1872), + [aux_sym_preproc_if_token2] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1872), + [aux_sym_preproc_else_token1] = ACTIONS(1872), + [aux_sym_preproc_elif_token1] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1874), + [anon_sym_TILDE] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1874), + [anon_sym_CARET] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_typedef] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym___attribute] = ACTIONS(1872), + [anon_sym___attribute__] = ACTIONS(1872), + [anon_sym___declspec] = ACTIONS(1872), + [anon_sym___cdecl] = ACTIONS(1872), + [anon_sym___clrcall] = ACTIONS(1872), + [anon_sym___stdcall] = ACTIONS(1872), + [anon_sym___fastcall] = ACTIONS(1872), + [anon_sym___thiscall] = ACTIONS(1872), + [anon_sym___vectorcall] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_static] = ACTIONS(1872), + [anon_sym_auto] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_inline] = ACTIONS(1872), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [anon_sym_volatile] = ACTIONS(1872), + [anon_sym_restrict] = ACTIONS(1872), + [anon_sym__Atomic] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1872), + [anon_sym_out] = ACTIONS(1872), + [anon_sym_inout] = ACTIONS(1872), + [anon_sym_bycopy] = ACTIONS(1872), + [anon_sym_byref] = ACTIONS(1872), + [anon_sym_oneway] = ACTIONS(1872), + [anon_sym__Nullable] = ACTIONS(1872), + [anon_sym__Nonnull] = ACTIONS(1872), + [anon_sym__Nullable_result] = ACTIONS(1872), + [anon_sym__Null_unspecified] = ACTIONS(1872), + [anon_sym___autoreleasing] = ACTIONS(1872), + [anon_sym___nullable] = ACTIONS(1872), + [anon_sym___nonnull] = ACTIONS(1872), + [anon_sym___strong] = ACTIONS(1872), + [anon_sym___weak] = ACTIONS(1872), + [anon_sym___bridge] = ACTIONS(1872), + [anon_sym___bridge_transfer] = ACTIONS(1872), + [anon_sym___bridge_retained] = ACTIONS(1872), + [anon_sym___unsafe_unretained] = ACTIONS(1872), + [anon_sym___block] = ACTIONS(1872), + [anon_sym___kindof] = ACTIONS(1872), + [anon_sym___unused] = ACTIONS(1872), + [anon_sym__Complex] = ACTIONS(1872), + [anon_sym___complex] = ACTIONS(1872), + [anon_sym_IBOutlet] = ACTIONS(1872), + [anon_sym_IBInspectable] = ACTIONS(1872), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1872), + [anon_sym_signed] = ACTIONS(1872), + [anon_sym_unsigned] = ACTIONS(1872), + [anon_sym_long] = ACTIONS(1872), + [anon_sym_short] = ACTIONS(1872), + [sym_primitive_type] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_union] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_switch] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_goto] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_PLUS_PLUS] = ACTIONS(1874), + [anon_sym_sizeof] = ACTIONS(1872), + [sym_number_literal] = ACTIONS(1874), + [anon_sym_L_SQUOTE] = ACTIONS(1874), + [anon_sym_u_SQUOTE] = ACTIONS(1874), + [anon_sym_U_SQUOTE] = ACTIONS(1874), + [anon_sym_u8_SQUOTE] = ACTIONS(1874), + [anon_sym_SQUOTE] = ACTIONS(1874), + [anon_sym_L_DQUOTE] = ACTIONS(1874), + [anon_sym_u_DQUOTE] = ACTIONS(1874), + [anon_sym_U_DQUOTE] = ACTIONS(1874), + [anon_sym_u8_DQUOTE] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [sym_null] = ACTIONS(1872), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1874), + [anon_sym_ATimport] = ACTIONS(1874), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1872), + [anon_sym_ATcompatibility_alias] = ACTIONS(1874), + [anon_sym_ATprotocol] = ACTIONS(1874), + [anon_sym_ATclass] = ACTIONS(1874), + [anon_sym_ATinterface] = ACTIONS(1874), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1872), + [sym_method_attribute_specifier] = ACTIONS(1872), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1872), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1872), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1872), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1872), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1872), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1872), + [anon_sym_NS_AVAILABLE] = ACTIONS(1872), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1872), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_API_AVAILABLE] = ACTIONS(1872), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1872), + [anon_sym_API_DEPRECATED] = ACTIONS(1872), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1872), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1872), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1872), + [anon_sym___deprecated_msg] = ACTIONS(1872), + [anon_sym___deprecated_enum_msg] = ACTIONS(1872), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1872), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1872), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1872), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1872), + [anon_sym_ATimplementation] = ACTIONS(1874), + [anon_sym_NS_ENUM] = ACTIONS(1872), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1872), + [anon_sym_NS_OPTIONS] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym___typeof] = ACTIONS(1872), + [anon_sym___typeof__] = ACTIONS(1872), + [sym_self] = ACTIONS(1872), + [sym_super] = ACTIONS(1872), + [sym_nil] = ACTIONS(1872), + [sym_id] = ACTIONS(1872), + [sym_instancetype] = ACTIONS(1872), + [sym_Class] = ACTIONS(1872), + [sym_SEL] = ACTIONS(1872), + [sym_IMP] = ACTIONS(1872), + [sym_BOOL] = ACTIONS(1872), + [sym_auto] = ACTIONS(1872), + [anon_sym_ATautoreleasepool] = ACTIONS(1874), + [anon_sym_ATsynchronized] = ACTIONS(1874), + [anon_sym_ATtry] = ACTIONS(1874), + [anon_sym_ATthrow] = ACTIONS(1874), + [anon_sym_ATselector] = ACTIONS(1874), + [anon_sym_ATencode] = ACTIONS(1874), + [anon_sym_AT] = ACTIONS(1872), + [sym_YES] = ACTIONS(1872), + [sym_NO] = ACTIONS(1872), + [anon_sym___builtin_available] = ACTIONS(1872), + [anon_sym_ATavailable] = ACTIONS(1874), + [anon_sym_va_arg] = ACTIONS(1872), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [551] = { + [sym_identifier] = ACTIONS(1872), + [aux_sym_preproc_include_token1] = ACTIONS(1874), + [aux_sym_preproc_def_token1] = ACTIONS(1874), + [aux_sym_preproc_if_token1] = ACTIONS(1872), + [aux_sym_preproc_if_token2] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1872), + [aux_sym_preproc_else_token1] = ACTIONS(1872), + [aux_sym_preproc_elif_token1] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1874), + [anon_sym_TILDE] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1874), + [anon_sym_CARET] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_typedef] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym___attribute] = ACTIONS(1872), + [anon_sym___attribute__] = ACTIONS(1872), + [anon_sym___declspec] = ACTIONS(1872), + [anon_sym___cdecl] = ACTIONS(1872), + [anon_sym___clrcall] = ACTIONS(1872), + [anon_sym___stdcall] = ACTIONS(1872), + [anon_sym___fastcall] = ACTIONS(1872), + [anon_sym___thiscall] = ACTIONS(1872), + [anon_sym___vectorcall] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_static] = ACTIONS(1872), + [anon_sym_auto] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_inline] = ACTIONS(1872), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [anon_sym_volatile] = ACTIONS(1872), + [anon_sym_restrict] = ACTIONS(1872), + [anon_sym__Atomic] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1872), + [anon_sym_out] = ACTIONS(1872), + [anon_sym_inout] = ACTIONS(1872), + [anon_sym_bycopy] = ACTIONS(1872), + [anon_sym_byref] = ACTIONS(1872), + [anon_sym_oneway] = ACTIONS(1872), + [anon_sym__Nullable] = ACTIONS(1872), + [anon_sym__Nonnull] = ACTIONS(1872), + [anon_sym__Nullable_result] = ACTIONS(1872), + [anon_sym__Null_unspecified] = ACTIONS(1872), + [anon_sym___autoreleasing] = ACTIONS(1872), + [anon_sym___nullable] = ACTIONS(1872), + [anon_sym___nonnull] = ACTIONS(1872), + [anon_sym___strong] = ACTIONS(1872), + [anon_sym___weak] = ACTIONS(1872), + [anon_sym___bridge] = ACTIONS(1872), + [anon_sym___bridge_transfer] = ACTIONS(1872), + [anon_sym___bridge_retained] = ACTIONS(1872), + [anon_sym___unsafe_unretained] = ACTIONS(1872), + [anon_sym___block] = ACTIONS(1872), + [anon_sym___kindof] = ACTIONS(1872), + [anon_sym___unused] = ACTIONS(1872), + [anon_sym__Complex] = ACTIONS(1872), + [anon_sym___complex] = ACTIONS(1872), + [anon_sym_IBOutlet] = ACTIONS(1872), + [anon_sym_IBInspectable] = ACTIONS(1872), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1872), + [anon_sym_signed] = ACTIONS(1872), + [anon_sym_unsigned] = ACTIONS(1872), + [anon_sym_long] = ACTIONS(1872), + [anon_sym_short] = ACTIONS(1872), + [sym_primitive_type] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_union] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_switch] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_goto] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_PLUS_PLUS] = ACTIONS(1874), + [anon_sym_sizeof] = ACTIONS(1872), + [sym_number_literal] = ACTIONS(1874), + [anon_sym_L_SQUOTE] = ACTIONS(1874), + [anon_sym_u_SQUOTE] = ACTIONS(1874), + [anon_sym_U_SQUOTE] = ACTIONS(1874), + [anon_sym_u8_SQUOTE] = ACTIONS(1874), + [anon_sym_SQUOTE] = ACTIONS(1874), + [anon_sym_L_DQUOTE] = ACTIONS(1874), + [anon_sym_u_DQUOTE] = ACTIONS(1874), + [anon_sym_U_DQUOTE] = ACTIONS(1874), + [anon_sym_u8_DQUOTE] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [sym_null] = ACTIONS(1872), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1874), + [anon_sym_ATimport] = ACTIONS(1874), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1872), + [anon_sym_ATcompatibility_alias] = ACTIONS(1874), + [anon_sym_ATprotocol] = ACTIONS(1874), + [anon_sym_ATclass] = ACTIONS(1874), + [anon_sym_ATinterface] = ACTIONS(1874), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1872), + [sym_method_attribute_specifier] = ACTIONS(1872), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1872), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1872), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1872), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1872), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1872), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1872), + [anon_sym_NS_AVAILABLE] = ACTIONS(1872), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1872), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_API_AVAILABLE] = ACTIONS(1872), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1872), + [anon_sym_API_DEPRECATED] = ACTIONS(1872), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1872), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1872), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1872), + [anon_sym___deprecated_msg] = ACTIONS(1872), + [anon_sym___deprecated_enum_msg] = ACTIONS(1872), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1872), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1872), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1872), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1872), + [anon_sym_ATimplementation] = ACTIONS(1874), + [anon_sym_NS_ENUM] = ACTIONS(1872), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1872), + [anon_sym_NS_OPTIONS] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym___typeof] = ACTIONS(1872), + [anon_sym___typeof__] = ACTIONS(1872), + [sym_self] = ACTIONS(1872), + [sym_super] = ACTIONS(1872), + [sym_nil] = ACTIONS(1872), + [sym_id] = ACTIONS(1872), + [sym_instancetype] = ACTIONS(1872), + [sym_Class] = ACTIONS(1872), + [sym_SEL] = ACTIONS(1872), + [sym_IMP] = ACTIONS(1872), + [sym_BOOL] = ACTIONS(1872), + [sym_auto] = ACTIONS(1872), + [anon_sym_ATautoreleasepool] = ACTIONS(1874), + [anon_sym_ATsynchronized] = ACTIONS(1874), + [anon_sym_ATtry] = ACTIONS(1874), + [anon_sym_ATthrow] = ACTIONS(1874), + [anon_sym_ATselector] = ACTIONS(1874), + [anon_sym_ATencode] = ACTIONS(1874), + [anon_sym_AT] = ACTIONS(1872), + [sym_YES] = ACTIONS(1872), + [sym_NO] = ACTIONS(1872), + [anon_sym___builtin_available] = ACTIONS(1872), + [anon_sym_ATavailable] = ACTIONS(1874), + [anon_sym_va_arg] = ACTIONS(1872), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [552] = { + [sym_identifier] = ACTIONS(1876), + [aux_sym_preproc_include_token1] = ACTIONS(1878), + [aux_sym_preproc_def_token1] = ACTIONS(1878), + [aux_sym_preproc_if_token1] = ACTIONS(1876), + [aux_sym_preproc_if_token2] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1876), + [aux_sym_preproc_else_token1] = ACTIONS(1876), + [aux_sym_preproc_elif_token1] = ACTIONS(1876), + [anon_sym_LPAREN2] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1878), + [anon_sym_CARET] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_typedef] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [anon_sym_out] = ACTIONS(1876), + [anon_sym_inout] = ACTIONS(1876), + [anon_sym_bycopy] = ACTIONS(1876), + [anon_sym_byref] = ACTIONS(1876), + [anon_sym_oneway] = ACTIONS(1876), + [anon_sym__Nullable] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym__Nullable_result] = ACTIONS(1876), + [anon_sym__Null_unspecified] = ACTIONS(1876), + [anon_sym___autoreleasing] = ACTIONS(1876), + [anon_sym___nullable] = ACTIONS(1876), + [anon_sym___nonnull] = ACTIONS(1876), + [anon_sym___strong] = ACTIONS(1876), + [anon_sym___weak] = ACTIONS(1876), + [anon_sym___bridge] = ACTIONS(1876), + [anon_sym___bridge_transfer] = ACTIONS(1876), + [anon_sym___bridge_retained] = ACTIONS(1876), + [anon_sym___unsafe_unretained] = ACTIONS(1876), + [anon_sym___block] = ACTIONS(1876), + [anon_sym___kindof] = ACTIONS(1876), + [anon_sym___unused] = ACTIONS(1876), + [anon_sym__Complex] = ACTIONS(1876), + [anon_sym___complex] = ACTIONS(1876), + [anon_sym_IBOutlet] = ACTIONS(1876), + [anon_sym_IBInspectable] = ACTIONS(1876), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1876), + [anon_sym_unsigned] = ACTIONS(1876), + [anon_sym_long] = ACTIONS(1876), + [anon_sym_short] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(1876), + [anon_sym_enum] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1876), + [anon_sym_union] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1876), + [anon_sym_case] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_do] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_goto] = ACTIONS(1876), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_sizeof] = ACTIONS(1876), + [sym_number_literal] = ACTIONS(1878), + [anon_sym_L_SQUOTE] = ACTIONS(1878), + [anon_sym_u_SQUOTE] = ACTIONS(1878), + [anon_sym_U_SQUOTE] = ACTIONS(1878), + [anon_sym_u8_SQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(1878), + [anon_sym_u_DQUOTE] = ACTIONS(1878), + [anon_sym_U_DQUOTE] = ACTIONS(1878), + [anon_sym_u8_DQUOTE] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [sym_true] = ACTIONS(1876), + [sym_false] = ACTIONS(1876), + [sym_null] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1878), + [anon_sym_ATimport] = ACTIONS(1878), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1876), + [anon_sym_ATcompatibility_alias] = ACTIONS(1878), + [anon_sym_ATprotocol] = ACTIONS(1878), + [anon_sym_ATclass] = ACTIONS(1878), + [anon_sym_ATinterface] = ACTIONS(1878), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1876), + [sym_method_attribute_specifier] = ACTIONS(1876), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1876), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE] = ACTIONS(1876), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_API_AVAILABLE] = ACTIONS(1876), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_API_DEPRECATED] = ACTIONS(1876), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1876), + [anon_sym___deprecated_msg] = ACTIONS(1876), + [anon_sym___deprecated_enum_msg] = ACTIONS(1876), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1876), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1876), + [anon_sym_ATimplementation] = ACTIONS(1878), + [anon_sym_NS_ENUM] = ACTIONS(1876), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1876), + [anon_sym_NS_OPTIONS] = ACTIONS(1876), + [anon_sym_typeof] = ACTIONS(1876), + [anon_sym___typeof] = ACTIONS(1876), + [anon_sym___typeof__] = ACTIONS(1876), + [sym_self] = ACTIONS(1876), + [sym_super] = ACTIONS(1876), + [sym_nil] = ACTIONS(1876), + [sym_id] = ACTIONS(1876), + [sym_instancetype] = ACTIONS(1876), + [sym_Class] = ACTIONS(1876), + [sym_SEL] = ACTIONS(1876), + [sym_IMP] = ACTIONS(1876), + [sym_BOOL] = ACTIONS(1876), + [sym_auto] = ACTIONS(1876), + [anon_sym_ATautoreleasepool] = ACTIONS(1878), + [anon_sym_ATsynchronized] = ACTIONS(1878), + [anon_sym_ATtry] = ACTIONS(1878), + [anon_sym_ATthrow] = ACTIONS(1878), + [anon_sym_ATselector] = ACTIONS(1878), + [anon_sym_ATencode] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1876), + [sym_YES] = ACTIONS(1876), + [sym_NO] = ACTIONS(1876), + [anon_sym___builtin_available] = ACTIONS(1876), + [anon_sym_ATavailable] = ACTIONS(1878), + [anon_sym_va_arg] = ACTIONS(1876), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [553] = { + [sym_identifier] = ACTIONS(1876), + [aux_sym_preproc_include_token1] = ACTIONS(1878), + [aux_sym_preproc_def_token1] = ACTIONS(1878), + [aux_sym_preproc_if_token1] = ACTIONS(1876), + [aux_sym_preproc_if_token2] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1876), + [aux_sym_preproc_else_token1] = ACTIONS(1876), + [aux_sym_preproc_elif_token1] = ACTIONS(1876), + [anon_sym_LPAREN2] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1878), + [anon_sym_CARET] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_typedef] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [anon_sym_out] = ACTIONS(1876), + [anon_sym_inout] = ACTIONS(1876), + [anon_sym_bycopy] = ACTIONS(1876), + [anon_sym_byref] = ACTIONS(1876), + [anon_sym_oneway] = ACTIONS(1876), + [anon_sym__Nullable] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym__Nullable_result] = ACTIONS(1876), + [anon_sym__Null_unspecified] = ACTIONS(1876), + [anon_sym___autoreleasing] = ACTIONS(1876), + [anon_sym___nullable] = ACTIONS(1876), + [anon_sym___nonnull] = ACTIONS(1876), + [anon_sym___strong] = ACTIONS(1876), + [anon_sym___weak] = ACTIONS(1876), + [anon_sym___bridge] = ACTIONS(1876), + [anon_sym___bridge_transfer] = ACTIONS(1876), + [anon_sym___bridge_retained] = ACTIONS(1876), + [anon_sym___unsafe_unretained] = ACTIONS(1876), + [anon_sym___block] = ACTIONS(1876), + [anon_sym___kindof] = ACTIONS(1876), + [anon_sym___unused] = ACTIONS(1876), + [anon_sym__Complex] = ACTIONS(1876), + [anon_sym___complex] = ACTIONS(1876), + [anon_sym_IBOutlet] = ACTIONS(1876), + [anon_sym_IBInspectable] = ACTIONS(1876), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1876), + [anon_sym_unsigned] = ACTIONS(1876), + [anon_sym_long] = ACTIONS(1876), + [anon_sym_short] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(1876), + [anon_sym_enum] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1876), + [anon_sym_union] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1876), + [anon_sym_case] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_do] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_goto] = ACTIONS(1876), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_sizeof] = ACTIONS(1876), + [sym_number_literal] = ACTIONS(1878), + [anon_sym_L_SQUOTE] = ACTIONS(1878), + [anon_sym_u_SQUOTE] = ACTIONS(1878), + [anon_sym_U_SQUOTE] = ACTIONS(1878), + [anon_sym_u8_SQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(1878), + [anon_sym_u_DQUOTE] = ACTIONS(1878), + [anon_sym_U_DQUOTE] = ACTIONS(1878), + [anon_sym_u8_DQUOTE] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [sym_true] = ACTIONS(1876), + [sym_false] = ACTIONS(1876), + [sym_null] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1878), + [anon_sym_ATimport] = ACTIONS(1878), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1876), + [anon_sym_ATcompatibility_alias] = ACTIONS(1878), + [anon_sym_ATprotocol] = ACTIONS(1878), + [anon_sym_ATclass] = ACTIONS(1878), + [anon_sym_ATinterface] = ACTIONS(1878), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1876), + [sym_method_attribute_specifier] = ACTIONS(1876), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1876), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE] = ACTIONS(1876), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_API_AVAILABLE] = ACTIONS(1876), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_API_DEPRECATED] = ACTIONS(1876), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1876), + [anon_sym___deprecated_msg] = ACTIONS(1876), + [anon_sym___deprecated_enum_msg] = ACTIONS(1876), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1876), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1876), + [anon_sym_ATimplementation] = ACTIONS(1878), + [anon_sym_NS_ENUM] = ACTIONS(1876), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1876), + [anon_sym_NS_OPTIONS] = ACTIONS(1876), + [anon_sym_typeof] = ACTIONS(1876), + [anon_sym___typeof] = ACTIONS(1876), + [anon_sym___typeof__] = ACTIONS(1876), + [sym_self] = ACTIONS(1876), + [sym_super] = ACTIONS(1876), + [sym_nil] = ACTIONS(1876), + [sym_id] = ACTIONS(1876), + [sym_instancetype] = ACTIONS(1876), + [sym_Class] = ACTIONS(1876), + [sym_SEL] = ACTIONS(1876), + [sym_IMP] = ACTIONS(1876), + [sym_BOOL] = ACTIONS(1876), + [sym_auto] = ACTIONS(1876), + [anon_sym_ATautoreleasepool] = ACTIONS(1878), + [anon_sym_ATsynchronized] = ACTIONS(1878), + [anon_sym_ATtry] = ACTIONS(1878), + [anon_sym_ATthrow] = ACTIONS(1878), + [anon_sym_ATselector] = ACTIONS(1878), + [anon_sym_ATencode] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1876), + [sym_YES] = ACTIONS(1876), + [sym_NO] = ACTIONS(1876), + [anon_sym___builtin_available] = ACTIONS(1876), + [anon_sym_ATavailable] = ACTIONS(1878), + [anon_sym_va_arg] = ACTIONS(1876), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [554] = { + [sym_identifier] = ACTIONS(1876), + [aux_sym_preproc_include_token1] = ACTIONS(1878), + [aux_sym_preproc_def_token1] = ACTIONS(1878), + [aux_sym_preproc_if_token1] = ACTIONS(1876), + [aux_sym_preproc_if_token2] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1876), + [aux_sym_preproc_else_token1] = ACTIONS(1876), + [aux_sym_preproc_elif_token1] = ACTIONS(1876), + [anon_sym_LPAREN2] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1878), + [anon_sym_CARET] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_typedef] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [anon_sym_out] = ACTIONS(1876), + [anon_sym_inout] = ACTIONS(1876), + [anon_sym_bycopy] = ACTIONS(1876), + [anon_sym_byref] = ACTIONS(1876), + [anon_sym_oneway] = ACTIONS(1876), + [anon_sym__Nullable] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym__Nullable_result] = ACTIONS(1876), + [anon_sym__Null_unspecified] = ACTIONS(1876), + [anon_sym___autoreleasing] = ACTIONS(1876), + [anon_sym___nullable] = ACTIONS(1876), + [anon_sym___nonnull] = ACTIONS(1876), + [anon_sym___strong] = ACTIONS(1876), + [anon_sym___weak] = ACTIONS(1876), + [anon_sym___bridge] = ACTIONS(1876), + [anon_sym___bridge_transfer] = ACTIONS(1876), + [anon_sym___bridge_retained] = ACTIONS(1876), + [anon_sym___unsafe_unretained] = ACTIONS(1876), + [anon_sym___block] = ACTIONS(1876), + [anon_sym___kindof] = ACTIONS(1876), + [anon_sym___unused] = ACTIONS(1876), + [anon_sym__Complex] = ACTIONS(1876), + [anon_sym___complex] = ACTIONS(1876), + [anon_sym_IBOutlet] = ACTIONS(1876), + [anon_sym_IBInspectable] = ACTIONS(1876), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1876), + [anon_sym_unsigned] = ACTIONS(1876), + [anon_sym_long] = ACTIONS(1876), + [anon_sym_short] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(1876), + [anon_sym_enum] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1876), + [anon_sym_union] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1876), + [anon_sym_case] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_do] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_goto] = ACTIONS(1876), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_sizeof] = ACTIONS(1876), + [sym_number_literal] = ACTIONS(1878), + [anon_sym_L_SQUOTE] = ACTIONS(1878), + [anon_sym_u_SQUOTE] = ACTIONS(1878), + [anon_sym_U_SQUOTE] = ACTIONS(1878), + [anon_sym_u8_SQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(1878), + [anon_sym_u_DQUOTE] = ACTIONS(1878), + [anon_sym_U_DQUOTE] = ACTIONS(1878), + [anon_sym_u8_DQUOTE] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [sym_true] = ACTIONS(1876), + [sym_false] = ACTIONS(1876), + [sym_null] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1878), + [anon_sym_ATimport] = ACTIONS(1878), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1876), + [anon_sym_ATcompatibility_alias] = ACTIONS(1878), + [anon_sym_ATprotocol] = ACTIONS(1878), + [anon_sym_ATclass] = ACTIONS(1878), + [anon_sym_ATinterface] = ACTIONS(1878), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1876), + [sym_method_attribute_specifier] = ACTIONS(1876), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1876), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE] = ACTIONS(1876), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_API_AVAILABLE] = ACTIONS(1876), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_API_DEPRECATED] = ACTIONS(1876), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1876), + [anon_sym___deprecated_msg] = ACTIONS(1876), + [anon_sym___deprecated_enum_msg] = ACTIONS(1876), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1876), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1876), + [anon_sym_ATimplementation] = ACTIONS(1878), + [anon_sym_NS_ENUM] = ACTIONS(1876), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1876), + [anon_sym_NS_OPTIONS] = ACTIONS(1876), + [anon_sym_typeof] = ACTIONS(1876), + [anon_sym___typeof] = ACTIONS(1876), + [anon_sym___typeof__] = ACTIONS(1876), + [sym_self] = ACTIONS(1876), + [sym_super] = ACTIONS(1876), + [sym_nil] = ACTIONS(1876), + [sym_id] = ACTIONS(1876), + [sym_instancetype] = ACTIONS(1876), + [sym_Class] = ACTIONS(1876), + [sym_SEL] = ACTIONS(1876), + [sym_IMP] = ACTIONS(1876), + [sym_BOOL] = ACTIONS(1876), + [sym_auto] = ACTIONS(1876), + [anon_sym_ATautoreleasepool] = ACTIONS(1878), + [anon_sym_ATsynchronized] = ACTIONS(1878), + [anon_sym_ATtry] = ACTIONS(1878), + [anon_sym_ATthrow] = ACTIONS(1878), + [anon_sym_ATselector] = ACTIONS(1878), + [anon_sym_ATencode] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1876), + [sym_YES] = ACTIONS(1876), + [sym_NO] = ACTIONS(1876), + [anon_sym___builtin_available] = ACTIONS(1876), + [anon_sym_ATavailable] = ACTIONS(1878), + [anon_sym_va_arg] = ACTIONS(1876), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [555] = { + [sym_identifier] = ACTIONS(1876), + [aux_sym_preproc_include_token1] = ACTIONS(1878), + [aux_sym_preproc_def_token1] = ACTIONS(1878), + [aux_sym_preproc_if_token1] = ACTIONS(1876), + [aux_sym_preproc_if_token2] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1876), + [aux_sym_preproc_else_token1] = ACTIONS(1876), + [aux_sym_preproc_elif_token1] = ACTIONS(1876), + [anon_sym_LPAREN2] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1878), + [anon_sym_CARET] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_typedef] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [anon_sym_out] = ACTIONS(1876), + [anon_sym_inout] = ACTIONS(1876), + [anon_sym_bycopy] = ACTIONS(1876), + [anon_sym_byref] = ACTIONS(1876), + [anon_sym_oneway] = ACTIONS(1876), + [anon_sym__Nullable] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym__Nullable_result] = ACTIONS(1876), + [anon_sym__Null_unspecified] = ACTIONS(1876), + [anon_sym___autoreleasing] = ACTIONS(1876), + [anon_sym___nullable] = ACTIONS(1876), + [anon_sym___nonnull] = ACTIONS(1876), + [anon_sym___strong] = ACTIONS(1876), + [anon_sym___weak] = ACTIONS(1876), + [anon_sym___bridge] = ACTIONS(1876), + [anon_sym___bridge_transfer] = ACTIONS(1876), + [anon_sym___bridge_retained] = ACTIONS(1876), + [anon_sym___unsafe_unretained] = ACTIONS(1876), + [anon_sym___block] = ACTIONS(1876), + [anon_sym___kindof] = ACTIONS(1876), + [anon_sym___unused] = ACTIONS(1876), + [anon_sym__Complex] = ACTIONS(1876), + [anon_sym___complex] = ACTIONS(1876), + [anon_sym_IBOutlet] = ACTIONS(1876), + [anon_sym_IBInspectable] = ACTIONS(1876), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1876), + [anon_sym_unsigned] = ACTIONS(1876), + [anon_sym_long] = ACTIONS(1876), + [anon_sym_short] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(1876), + [anon_sym_enum] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1876), + [anon_sym_union] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1876), + [anon_sym_case] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_do] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_goto] = ACTIONS(1876), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_sizeof] = ACTIONS(1876), + [sym_number_literal] = ACTIONS(1878), + [anon_sym_L_SQUOTE] = ACTIONS(1878), + [anon_sym_u_SQUOTE] = ACTIONS(1878), + [anon_sym_U_SQUOTE] = ACTIONS(1878), + [anon_sym_u8_SQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(1878), + [anon_sym_u_DQUOTE] = ACTIONS(1878), + [anon_sym_U_DQUOTE] = ACTIONS(1878), + [anon_sym_u8_DQUOTE] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [sym_true] = ACTIONS(1876), + [sym_false] = ACTIONS(1876), + [sym_null] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1878), + [anon_sym_ATimport] = ACTIONS(1878), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1876), + [anon_sym_ATcompatibility_alias] = ACTIONS(1878), + [anon_sym_ATprotocol] = ACTIONS(1878), + [anon_sym_ATclass] = ACTIONS(1878), + [anon_sym_ATinterface] = ACTIONS(1878), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1876), + [sym_method_attribute_specifier] = ACTIONS(1876), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1876), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE] = ACTIONS(1876), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_API_AVAILABLE] = ACTIONS(1876), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_API_DEPRECATED] = ACTIONS(1876), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1876), + [anon_sym___deprecated_msg] = ACTIONS(1876), + [anon_sym___deprecated_enum_msg] = ACTIONS(1876), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1876), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1876), + [anon_sym_ATimplementation] = ACTIONS(1878), + [anon_sym_NS_ENUM] = ACTIONS(1876), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1876), + [anon_sym_NS_OPTIONS] = ACTIONS(1876), + [anon_sym_typeof] = ACTIONS(1876), + [anon_sym___typeof] = ACTIONS(1876), + [anon_sym___typeof__] = ACTIONS(1876), + [sym_self] = ACTIONS(1876), + [sym_super] = ACTIONS(1876), + [sym_nil] = ACTIONS(1876), + [sym_id] = ACTIONS(1876), + [sym_instancetype] = ACTIONS(1876), + [sym_Class] = ACTIONS(1876), + [sym_SEL] = ACTIONS(1876), + [sym_IMP] = ACTIONS(1876), + [sym_BOOL] = ACTIONS(1876), + [sym_auto] = ACTIONS(1876), + [anon_sym_ATautoreleasepool] = ACTIONS(1878), + [anon_sym_ATsynchronized] = ACTIONS(1878), + [anon_sym_ATtry] = ACTIONS(1878), + [anon_sym_ATthrow] = ACTIONS(1878), + [anon_sym_ATselector] = ACTIONS(1878), + [anon_sym_ATencode] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1876), + [sym_YES] = ACTIONS(1876), + [sym_NO] = ACTIONS(1876), + [anon_sym___builtin_available] = ACTIONS(1876), + [anon_sym_ATavailable] = ACTIONS(1878), + [anon_sym_va_arg] = ACTIONS(1876), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [556] = { + [sym_identifier] = ACTIONS(1880), + [aux_sym_preproc_include_token1] = ACTIONS(1882), + [aux_sym_preproc_def_token1] = ACTIONS(1882), + [aux_sym_preproc_if_token1] = ACTIONS(1880), + [aux_sym_preproc_if_token2] = ACTIONS(1880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1880), + [aux_sym_preproc_else_token1] = ACTIONS(1880), + [aux_sym_preproc_elif_token1] = ACTIONS(1880), + [anon_sym_LPAREN2] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1882), + [anon_sym_TILDE] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_PLUS] = ACTIONS(1880), + [anon_sym_STAR] = ACTIONS(1882), + [anon_sym_CARET] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_typedef] = ACTIONS(1880), + [anon_sym_extern] = ACTIONS(1880), + [anon_sym___attribute] = ACTIONS(1880), + [anon_sym___attribute__] = ACTIONS(1880), + [anon_sym___declspec] = ACTIONS(1880), + [anon_sym___cdecl] = ACTIONS(1880), + [anon_sym___clrcall] = ACTIONS(1880), + [anon_sym___stdcall] = ACTIONS(1880), + [anon_sym___fastcall] = ACTIONS(1880), + [anon_sym___thiscall] = ACTIONS(1880), + [anon_sym___vectorcall] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_static] = ACTIONS(1880), + [anon_sym_auto] = ACTIONS(1880), + [anon_sym_register] = ACTIONS(1880), + [anon_sym_inline] = ACTIONS(1880), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [anon_sym_volatile] = ACTIONS(1880), + [anon_sym_restrict] = ACTIONS(1880), + [anon_sym__Atomic] = ACTIONS(1880), + [anon_sym_in] = ACTIONS(1880), + [anon_sym_out] = ACTIONS(1880), + [anon_sym_inout] = ACTIONS(1880), + [anon_sym_bycopy] = ACTIONS(1880), + [anon_sym_byref] = ACTIONS(1880), + [anon_sym_oneway] = ACTIONS(1880), + [anon_sym__Nullable] = ACTIONS(1880), + [anon_sym__Nonnull] = ACTIONS(1880), + [anon_sym__Nullable_result] = ACTIONS(1880), + [anon_sym__Null_unspecified] = ACTIONS(1880), + [anon_sym___autoreleasing] = ACTIONS(1880), + [anon_sym___nullable] = ACTIONS(1880), + [anon_sym___nonnull] = ACTIONS(1880), + [anon_sym___strong] = ACTIONS(1880), + [anon_sym___weak] = ACTIONS(1880), + [anon_sym___bridge] = ACTIONS(1880), + [anon_sym___bridge_transfer] = ACTIONS(1880), + [anon_sym___bridge_retained] = ACTIONS(1880), + [anon_sym___unsafe_unretained] = ACTIONS(1880), + [anon_sym___block] = ACTIONS(1880), + [anon_sym___kindof] = ACTIONS(1880), + [anon_sym___unused] = ACTIONS(1880), + [anon_sym__Complex] = ACTIONS(1880), + [anon_sym___complex] = ACTIONS(1880), + [anon_sym_IBOutlet] = ACTIONS(1880), + [anon_sym_IBInspectable] = ACTIONS(1880), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1880), + [anon_sym_signed] = ACTIONS(1880), + [anon_sym_unsigned] = ACTIONS(1880), + [anon_sym_long] = ACTIONS(1880), + [anon_sym_short] = ACTIONS(1880), + [sym_primitive_type] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(1880), + [anon_sym_struct] = ACTIONS(1880), + [anon_sym_union] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_switch] = ACTIONS(1880), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_do] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_goto] = ACTIONS(1880), + [anon_sym_DASH_DASH] = ACTIONS(1882), + [anon_sym_PLUS_PLUS] = ACTIONS(1882), + [anon_sym_sizeof] = ACTIONS(1880), + [sym_number_literal] = ACTIONS(1882), + [anon_sym_L_SQUOTE] = ACTIONS(1882), + [anon_sym_u_SQUOTE] = ACTIONS(1882), + [anon_sym_U_SQUOTE] = ACTIONS(1882), + [anon_sym_u8_SQUOTE] = ACTIONS(1882), + [anon_sym_SQUOTE] = ACTIONS(1882), + [anon_sym_L_DQUOTE] = ACTIONS(1882), + [anon_sym_u_DQUOTE] = ACTIONS(1882), + [anon_sym_U_DQUOTE] = ACTIONS(1882), + [anon_sym_u8_DQUOTE] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [sym_true] = ACTIONS(1880), + [sym_false] = ACTIONS(1880), + [sym_null] = ACTIONS(1880), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1882), + [anon_sym_ATimport] = ACTIONS(1882), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1880), + [anon_sym_ATcompatibility_alias] = ACTIONS(1882), + [anon_sym_ATprotocol] = ACTIONS(1882), + [anon_sym_ATclass] = ACTIONS(1882), + [anon_sym_ATinterface] = ACTIONS(1882), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1880), + [sym_method_attribute_specifier] = ACTIONS(1880), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1880), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1880), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1880), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1880), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1880), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1880), + [anon_sym_NS_AVAILABLE] = ACTIONS(1880), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1880), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1880), + [anon_sym_API_AVAILABLE] = ACTIONS(1880), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1880), + [anon_sym_API_DEPRECATED] = ACTIONS(1880), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1880), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1880), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1880), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1880), + [anon_sym___deprecated_msg] = ACTIONS(1880), + [anon_sym___deprecated_enum_msg] = ACTIONS(1880), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1880), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1880), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1880), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1880), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1880), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1880), + [anon_sym_ATimplementation] = ACTIONS(1882), + [anon_sym_NS_ENUM] = ACTIONS(1880), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1880), + [anon_sym_NS_OPTIONS] = ACTIONS(1880), + [anon_sym_typeof] = ACTIONS(1880), + [anon_sym___typeof] = ACTIONS(1880), + [anon_sym___typeof__] = ACTIONS(1880), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_nil] = ACTIONS(1880), + [sym_id] = ACTIONS(1880), + [sym_instancetype] = ACTIONS(1880), + [sym_Class] = ACTIONS(1880), + [sym_SEL] = ACTIONS(1880), + [sym_IMP] = ACTIONS(1880), + [sym_BOOL] = ACTIONS(1880), + [sym_auto] = ACTIONS(1880), + [anon_sym_ATautoreleasepool] = ACTIONS(1882), + [anon_sym_ATsynchronized] = ACTIONS(1882), + [anon_sym_ATtry] = ACTIONS(1882), + [anon_sym_ATthrow] = ACTIONS(1882), + [anon_sym_ATselector] = ACTIONS(1882), + [anon_sym_ATencode] = ACTIONS(1882), + [anon_sym_AT] = ACTIONS(1880), + [sym_YES] = ACTIONS(1880), + [sym_NO] = ACTIONS(1880), + [anon_sym___builtin_available] = ACTIONS(1880), + [anon_sym_ATavailable] = ACTIONS(1882), + [anon_sym_va_arg] = ACTIONS(1880), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [557] = { + [sym_identifier] = ACTIONS(1884), + [aux_sym_preproc_include_token1] = ACTIONS(1886), + [aux_sym_preproc_def_token1] = ACTIONS(1886), + [aux_sym_preproc_if_token1] = ACTIONS(1884), + [aux_sym_preproc_if_token2] = ACTIONS(1884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1884), + [aux_sym_preproc_else_token1] = ACTIONS(1884), + [aux_sym_preproc_elif_token1] = ACTIONS(1884), + [anon_sym_LPAREN2] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_CARET] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_typedef] = ACTIONS(1884), + [anon_sym_extern] = ACTIONS(1884), + [anon_sym___attribute] = ACTIONS(1884), + [anon_sym___attribute__] = ACTIONS(1884), + [anon_sym___declspec] = ACTIONS(1884), + [anon_sym___cdecl] = ACTIONS(1884), + [anon_sym___clrcall] = ACTIONS(1884), + [anon_sym___stdcall] = ACTIONS(1884), + [anon_sym___fastcall] = ACTIONS(1884), + [anon_sym___thiscall] = ACTIONS(1884), + [anon_sym___vectorcall] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1886), + [anon_sym_static] = ACTIONS(1884), + [anon_sym_auto] = ACTIONS(1884), + [anon_sym_register] = ACTIONS(1884), + [anon_sym_inline] = ACTIONS(1884), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1884), + [anon_sym_const] = ACTIONS(1884), + [anon_sym_volatile] = ACTIONS(1884), + [anon_sym_restrict] = ACTIONS(1884), + [anon_sym__Atomic] = ACTIONS(1884), + [anon_sym_in] = ACTIONS(1884), + [anon_sym_out] = ACTIONS(1884), + [anon_sym_inout] = ACTIONS(1884), + [anon_sym_bycopy] = ACTIONS(1884), + [anon_sym_byref] = ACTIONS(1884), + [anon_sym_oneway] = ACTIONS(1884), + [anon_sym__Nullable] = ACTIONS(1884), + [anon_sym__Nonnull] = ACTIONS(1884), + [anon_sym__Nullable_result] = ACTIONS(1884), + [anon_sym__Null_unspecified] = ACTIONS(1884), + [anon_sym___autoreleasing] = ACTIONS(1884), + [anon_sym___nullable] = ACTIONS(1884), + [anon_sym___nonnull] = ACTIONS(1884), + [anon_sym___strong] = ACTIONS(1884), + [anon_sym___weak] = ACTIONS(1884), + [anon_sym___bridge] = ACTIONS(1884), + [anon_sym___bridge_transfer] = ACTIONS(1884), + [anon_sym___bridge_retained] = ACTIONS(1884), + [anon_sym___unsafe_unretained] = ACTIONS(1884), + [anon_sym___block] = ACTIONS(1884), + [anon_sym___kindof] = ACTIONS(1884), + [anon_sym___unused] = ACTIONS(1884), + [anon_sym__Complex] = ACTIONS(1884), + [anon_sym___complex] = ACTIONS(1884), + [anon_sym_IBOutlet] = ACTIONS(1884), + [anon_sym_IBInspectable] = ACTIONS(1884), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1884), + [anon_sym_signed] = ACTIONS(1884), + [anon_sym_unsigned] = ACTIONS(1884), + [anon_sym_long] = ACTIONS(1884), + [anon_sym_short] = ACTIONS(1884), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1884), + [anon_sym_struct] = ACTIONS(1884), + [anon_sym_union] = ACTIONS(1884), + [anon_sym_if] = ACTIONS(1884), + [anon_sym_switch] = ACTIONS(1884), + [anon_sym_case] = ACTIONS(1884), + [anon_sym_default] = ACTIONS(1884), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(1884), + [anon_sym_for] = ACTIONS(1884), + [anon_sym_return] = ACTIONS(1884), + [anon_sym_break] = ACTIONS(1884), + [anon_sym_continue] = ACTIONS(1884), + [anon_sym_goto] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1886), + [anon_sym_PLUS_PLUS] = ACTIONS(1886), + [anon_sym_sizeof] = ACTIONS(1884), + [sym_number_literal] = ACTIONS(1886), + [anon_sym_L_SQUOTE] = ACTIONS(1886), + [anon_sym_u_SQUOTE] = ACTIONS(1886), + [anon_sym_U_SQUOTE] = ACTIONS(1886), + [anon_sym_u8_SQUOTE] = ACTIONS(1886), + [anon_sym_SQUOTE] = ACTIONS(1886), + [anon_sym_L_DQUOTE] = ACTIONS(1886), + [anon_sym_u_DQUOTE] = ACTIONS(1886), + [anon_sym_U_DQUOTE] = ACTIONS(1886), + [anon_sym_u8_DQUOTE] = ACTIONS(1886), + [anon_sym_DQUOTE] = ACTIONS(1886), + [sym_true] = ACTIONS(1884), + [sym_false] = ACTIONS(1884), + [sym_null] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1886), + [anon_sym_ATimport] = ACTIONS(1886), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1884), + [anon_sym_ATcompatibility_alias] = ACTIONS(1886), + [anon_sym_ATprotocol] = ACTIONS(1886), + [anon_sym_ATclass] = ACTIONS(1886), + [anon_sym_ATinterface] = ACTIONS(1886), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1884), + [sym_method_attribute_specifier] = ACTIONS(1884), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1884), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1884), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1884), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1884), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1884), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1884), + [anon_sym_NS_AVAILABLE] = ACTIONS(1884), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1884), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1884), + [anon_sym_API_AVAILABLE] = ACTIONS(1884), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1884), + [anon_sym_API_DEPRECATED] = ACTIONS(1884), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1884), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1884), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1884), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1884), + [anon_sym___deprecated_msg] = ACTIONS(1884), + [anon_sym___deprecated_enum_msg] = ACTIONS(1884), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1884), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1884), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1884), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1884), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1884), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1884), + [anon_sym_ATimplementation] = ACTIONS(1886), + [anon_sym_NS_ENUM] = ACTIONS(1884), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1884), + [anon_sym_NS_OPTIONS] = ACTIONS(1884), + [anon_sym_typeof] = ACTIONS(1884), + [anon_sym___typeof] = ACTIONS(1884), + [anon_sym___typeof__] = ACTIONS(1884), + [sym_self] = ACTIONS(1884), + [sym_super] = ACTIONS(1884), + [sym_nil] = ACTIONS(1884), + [sym_id] = ACTIONS(1884), + [sym_instancetype] = ACTIONS(1884), + [sym_Class] = ACTIONS(1884), + [sym_SEL] = ACTIONS(1884), + [sym_IMP] = ACTIONS(1884), + [sym_BOOL] = ACTIONS(1884), + [sym_auto] = ACTIONS(1884), + [anon_sym_ATautoreleasepool] = ACTIONS(1886), + [anon_sym_ATsynchronized] = ACTIONS(1886), + [anon_sym_ATtry] = ACTIONS(1886), + [anon_sym_ATthrow] = ACTIONS(1886), + [anon_sym_ATselector] = ACTIONS(1886), + [anon_sym_ATencode] = ACTIONS(1886), + [anon_sym_AT] = ACTIONS(1884), + [sym_YES] = ACTIONS(1884), + [sym_NO] = ACTIONS(1884), + [anon_sym___builtin_available] = ACTIONS(1884), + [anon_sym_ATavailable] = ACTIONS(1886), + [anon_sym_va_arg] = ACTIONS(1884), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [558] = { + [sym_identifier] = ACTIONS(1888), + [aux_sym_preproc_include_token1] = ACTIONS(1890), + [aux_sym_preproc_def_token1] = ACTIONS(1890), + [aux_sym_preproc_if_token1] = ACTIONS(1888), + [aux_sym_preproc_if_token2] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1888), + [aux_sym_preproc_else_token1] = ACTIONS(1888), + [aux_sym_preproc_elif_token1] = ACTIONS(1888), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym___attribute] = ACTIONS(1888), + [anon_sym___attribute__] = ACTIONS(1888), + [anon_sym___declspec] = ACTIONS(1888), + [anon_sym___cdecl] = ACTIONS(1888), + [anon_sym___clrcall] = ACTIONS(1888), + [anon_sym___stdcall] = ACTIONS(1888), + [anon_sym___fastcall] = ACTIONS(1888), + [anon_sym___thiscall] = ACTIONS(1888), + [anon_sym___vectorcall] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_auto] = ACTIONS(1888), + [anon_sym_register] = ACTIONS(1888), + [anon_sym_inline] = ACTIONS(1888), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_volatile] = ACTIONS(1888), + [anon_sym_restrict] = ACTIONS(1888), + [anon_sym__Atomic] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_out] = ACTIONS(1888), + [anon_sym_inout] = ACTIONS(1888), + [anon_sym_bycopy] = ACTIONS(1888), + [anon_sym_byref] = ACTIONS(1888), + [anon_sym_oneway] = ACTIONS(1888), + [anon_sym__Nullable] = ACTIONS(1888), + [anon_sym__Nonnull] = ACTIONS(1888), + [anon_sym__Nullable_result] = ACTIONS(1888), + [anon_sym__Null_unspecified] = ACTIONS(1888), + [anon_sym___autoreleasing] = ACTIONS(1888), + [anon_sym___nullable] = ACTIONS(1888), + [anon_sym___nonnull] = ACTIONS(1888), + [anon_sym___strong] = ACTIONS(1888), + [anon_sym___weak] = ACTIONS(1888), + [anon_sym___bridge] = ACTIONS(1888), + [anon_sym___bridge_transfer] = ACTIONS(1888), + [anon_sym___bridge_retained] = ACTIONS(1888), + [anon_sym___unsafe_unretained] = ACTIONS(1888), + [anon_sym___block] = ACTIONS(1888), + [anon_sym___kindof] = ACTIONS(1888), + [anon_sym___unused] = ACTIONS(1888), + [anon_sym__Complex] = ACTIONS(1888), + [anon_sym___complex] = ACTIONS(1888), + [anon_sym_IBOutlet] = ACTIONS(1888), + [anon_sym_IBInspectable] = ACTIONS(1888), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1888), + [anon_sym_signed] = ACTIONS(1888), + [anon_sym_unsigned] = ACTIONS(1888), + [anon_sym_long] = ACTIONS(1888), + [anon_sym_short] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_switch] = ACTIONS(1888), + [anon_sym_case] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_goto] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_sizeof] = ACTIONS(1888), + [sym_number_literal] = ACTIONS(1890), + [anon_sym_L_SQUOTE] = ACTIONS(1890), + [anon_sym_u_SQUOTE] = ACTIONS(1890), + [anon_sym_U_SQUOTE] = ACTIONS(1890), + [anon_sym_u8_SQUOTE] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_L_DQUOTE] = ACTIONS(1890), + [anon_sym_u_DQUOTE] = ACTIONS(1890), + [anon_sym_U_DQUOTE] = ACTIONS(1890), + [anon_sym_u8_DQUOTE] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_true] = ACTIONS(1888), + [sym_false] = ACTIONS(1888), + [sym_null] = ACTIONS(1888), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1890), + [anon_sym_ATimport] = ACTIONS(1890), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1888), + [anon_sym_ATcompatibility_alias] = ACTIONS(1890), + [anon_sym_ATprotocol] = ACTIONS(1890), + [anon_sym_ATclass] = ACTIONS(1890), + [anon_sym_ATinterface] = ACTIONS(1890), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1888), + [sym_method_attribute_specifier] = ACTIONS(1888), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1888), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE] = ACTIONS(1888), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_API_AVAILABLE] = ACTIONS(1888), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_API_DEPRECATED] = ACTIONS(1888), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1888), + [anon_sym___deprecated_msg] = ACTIONS(1888), + [anon_sym___deprecated_enum_msg] = ACTIONS(1888), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1888), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1888), + [anon_sym_ATimplementation] = ACTIONS(1890), + [anon_sym_NS_ENUM] = ACTIONS(1888), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1888), + [anon_sym_NS_OPTIONS] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym___typeof] = ACTIONS(1888), + [anon_sym___typeof__] = ACTIONS(1888), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_nil] = ACTIONS(1888), + [sym_id] = ACTIONS(1888), + [sym_instancetype] = ACTIONS(1888), + [sym_Class] = ACTIONS(1888), + [sym_SEL] = ACTIONS(1888), + [sym_IMP] = ACTIONS(1888), + [sym_BOOL] = ACTIONS(1888), + [sym_auto] = ACTIONS(1888), + [anon_sym_ATautoreleasepool] = ACTIONS(1890), + [anon_sym_ATsynchronized] = ACTIONS(1890), + [anon_sym_ATtry] = ACTIONS(1890), + [anon_sym_ATthrow] = ACTIONS(1890), + [anon_sym_ATselector] = ACTIONS(1890), + [anon_sym_ATencode] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [sym_YES] = ACTIONS(1888), + [sym_NO] = ACTIONS(1888), + [anon_sym___builtin_available] = ACTIONS(1888), + [anon_sym_ATavailable] = ACTIONS(1890), + [anon_sym_va_arg] = ACTIONS(1888), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [559] = { + [sym_identifier] = ACTIONS(1888), + [aux_sym_preproc_include_token1] = ACTIONS(1890), + [aux_sym_preproc_def_token1] = ACTIONS(1890), + [aux_sym_preproc_if_token1] = ACTIONS(1888), + [aux_sym_preproc_if_token2] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1888), + [aux_sym_preproc_else_token1] = ACTIONS(1888), + [aux_sym_preproc_elif_token1] = ACTIONS(1888), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym___attribute] = ACTIONS(1888), + [anon_sym___attribute__] = ACTIONS(1888), + [anon_sym___declspec] = ACTIONS(1888), + [anon_sym___cdecl] = ACTIONS(1888), + [anon_sym___clrcall] = ACTIONS(1888), + [anon_sym___stdcall] = ACTIONS(1888), + [anon_sym___fastcall] = ACTIONS(1888), + [anon_sym___thiscall] = ACTIONS(1888), + [anon_sym___vectorcall] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_auto] = ACTIONS(1888), + [anon_sym_register] = ACTIONS(1888), + [anon_sym_inline] = ACTIONS(1888), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_volatile] = ACTIONS(1888), + [anon_sym_restrict] = ACTIONS(1888), + [anon_sym__Atomic] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_out] = ACTIONS(1888), + [anon_sym_inout] = ACTIONS(1888), + [anon_sym_bycopy] = ACTIONS(1888), + [anon_sym_byref] = ACTIONS(1888), + [anon_sym_oneway] = ACTIONS(1888), + [anon_sym__Nullable] = ACTIONS(1888), + [anon_sym__Nonnull] = ACTIONS(1888), + [anon_sym__Nullable_result] = ACTIONS(1888), + [anon_sym__Null_unspecified] = ACTIONS(1888), + [anon_sym___autoreleasing] = ACTIONS(1888), + [anon_sym___nullable] = ACTIONS(1888), + [anon_sym___nonnull] = ACTIONS(1888), + [anon_sym___strong] = ACTIONS(1888), + [anon_sym___weak] = ACTIONS(1888), + [anon_sym___bridge] = ACTIONS(1888), + [anon_sym___bridge_transfer] = ACTIONS(1888), + [anon_sym___bridge_retained] = ACTIONS(1888), + [anon_sym___unsafe_unretained] = ACTIONS(1888), + [anon_sym___block] = ACTIONS(1888), + [anon_sym___kindof] = ACTIONS(1888), + [anon_sym___unused] = ACTIONS(1888), + [anon_sym__Complex] = ACTIONS(1888), + [anon_sym___complex] = ACTIONS(1888), + [anon_sym_IBOutlet] = ACTIONS(1888), + [anon_sym_IBInspectable] = ACTIONS(1888), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1888), + [anon_sym_signed] = ACTIONS(1888), + [anon_sym_unsigned] = ACTIONS(1888), + [anon_sym_long] = ACTIONS(1888), + [anon_sym_short] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_switch] = ACTIONS(1888), + [anon_sym_case] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_goto] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_sizeof] = ACTIONS(1888), + [sym_number_literal] = ACTIONS(1890), + [anon_sym_L_SQUOTE] = ACTIONS(1890), + [anon_sym_u_SQUOTE] = ACTIONS(1890), + [anon_sym_U_SQUOTE] = ACTIONS(1890), + [anon_sym_u8_SQUOTE] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_L_DQUOTE] = ACTIONS(1890), + [anon_sym_u_DQUOTE] = ACTIONS(1890), + [anon_sym_U_DQUOTE] = ACTIONS(1890), + [anon_sym_u8_DQUOTE] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_true] = ACTIONS(1888), + [sym_false] = ACTIONS(1888), + [sym_null] = ACTIONS(1888), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1890), + [anon_sym_ATimport] = ACTIONS(1890), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1888), + [anon_sym_ATcompatibility_alias] = ACTIONS(1890), + [anon_sym_ATprotocol] = ACTIONS(1890), + [anon_sym_ATclass] = ACTIONS(1890), + [anon_sym_ATinterface] = ACTIONS(1890), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1888), + [sym_method_attribute_specifier] = ACTIONS(1888), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1888), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE] = ACTIONS(1888), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_API_AVAILABLE] = ACTIONS(1888), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_API_DEPRECATED] = ACTIONS(1888), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1888), + [anon_sym___deprecated_msg] = ACTIONS(1888), + [anon_sym___deprecated_enum_msg] = ACTIONS(1888), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1888), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1888), + [anon_sym_ATimplementation] = ACTIONS(1890), + [anon_sym_NS_ENUM] = ACTIONS(1888), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1888), + [anon_sym_NS_OPTIONS] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym___typeof] = ACTIONS(1888), + [anon_sym___typeof__] = ACTIONS(1888), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_nil] = ACTIONS(1888), + [sym_id] = ACTIONS(1888), + [sym_instancetype] = ACTIONS(1888), + [sym_Class] = ACTIONS(1888), + [sym_SEL] = ACTIONS(1888), + [sym_IMP] = ACTIONS(1888), + [sym_BOOL] = ACTIONS(1888), + [sym_auto] = ACTIONS(1888), + [anon_sym_ATautoreleasepool] = ACTIONS(1890), + [anon_sym_ATsynchronized] = ACTIONS(1890), + [anon_sym_ATtry] = ACTIONS(1890), + [anon_sym_ATthrow] = ACTIONS(1890), + [anon_sym_ATselector] = ACTIONS(1890), + [anon_sym_ATencode] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [sym_YES] = ACTIONS(1888), + [sym_NO] = ACTIONS(1888), + [anon_sym___builtin_available] = ACTIONS(1888), + [anon_sym_ATavailable] = ACTIONS(1890), + [anon_sym_va_arg] = ACTIONS(1888), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [560] = { + [sym_identifier] = ACTIONS(1888), + [aux_sym_preproc_include_token1] = ACTIONS(1890), + [aux_sym_preproc_def_token1] = ACTIONS(1890), + [aux_sym_preproc_if_token1] = ACTIONS(1888), + [aux_sym_preproc_if_token2] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1888), + [aux_sym_preproc_else_token1] = ACTIONS(1888), + [aux_sym_preproc_elif_token1] = ACTIONS(1888), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym___attribute] = ACTIONS(1888), + [anon_sym___attribute__] = ACTIONS(1888), + [anon_sym___declspec] = ACTIONS(1888), + [anon_sym___cdecl] = ACTIONS(1888), + [anon_sym___clrcall] = ACTIONS(1888), + [anon_sym___stdcall] = ACTIONS(1888), + [anon_sym___fastcall] = ACTIONS(1888), + [anon_sym___thiscall] = ACTIONS(1888), + [anon_sym___vectorcall] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_auto] = ACTIONS(1888), + [anon_sym_register] = ACTIONS(1888), + [anon_sym_inline] = ACTIONS(1888), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_volatile] = ACTIONS(1888), + [anon_sym_restrict] = ACTIONS(1888), + [anon_sym__Atomic] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_out] = ACTIONS(1888), + [anon_sym_inout] = ACTIONS(1888), + [anon_sym_bycopy] = ACTIONS(1888), + [anon_sym_byref] = ACTIONS(1888), + [anon_sym_oneway] = ACTIONS(1888), + [anon_sym__Nullable] = ACTIONS(1888), + [anon_sym__Nonnull] = ACTIONS(1888), + [anon_sym__Nullable_result] = ACTIONS(1888), + [anon_sym__Null_unspecified] = ACTIONS(1888), + [anon_sym___autoreleasing] = ACTIONS(1888), + [anon_sym___nullable] = ACTIONS(1888), + [anon_sym___nonnull] = ACTIONS(1888), + [anon_sym___strong] = ACTIONS(1888), + [anon_sym___weak] = ACTIONS(1888), + [anon_sym___bridge] = ACTIONS(1888), + [anon_sym___bridge_transfer] = ACTIONS(1888), + [anon_sym___bridge_retained] = ACTIONS(1888), + [anon_sym___unsafe_unretained] = ACTIONS(1888), + [anon_sym___block] = ACTIONS(1888), + [anon_sym___kindof] = ACTIONS(1888), + [anon_sym___unused] = ACTIONS(1888), + [anon_sym__Complex] = ACTIONS(1888), + [anon_sym___complex] = ACTIONS(1888), + [anon_sym_IBOutlet] = ACTIONS(1888), + [anon_sym_IBInspectable] = ACTIONS(1888), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1888), + [anon_sym_signed] = ACTIONS(1888), + [anon_sym_unsigned] = ACTIONS(1888), + [anon_sym_long] = ACTIONS(1888), + [anon_sym_short] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_switch] = ACTIONS(1888), + [anon_sym_case] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_goto] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_sizeof] = ACTIONS(1888), + [sym_number_literal] = ACTIONS(1890), + [anon_sym_L_SQUOTE] = ACTIONS(1890), + [anon_sym_u_SQUOTE] = ACTIONS(1890), + [anon_sym_U_SQUOTE] = ACTIONS(1890), + [anon_sym_u8_SQUOTE] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_L_DQUOTE] = ACTIONS(1890), + [anon_sym_u_DQUOTE] = ACTIONS(1890), + [anon_sym_U_DQUOTE] = ACTIONS(1890), + [anon_sym_u8_DQUOTE] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_true] = ACTIONS(1888), + [sym_false] = ACTIONS(1888), + [sym_null] = ACTIONS(1888), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1890), + [anon_sym_ATimport] = ACTIONS(1890), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1888), + [anon_sym_ATcompatibility_alias] = ACTIONS(1890), + [anon_sym_ATprotocol] = ACTIONS(1890), + [anon_sym_ATclass] = ACTIONS(1890), + [anon_sym_ATinterface] = ACTIONS(1890), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1888), + [sym_method_attribute_specifier] = ACTIONS(1888), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1888), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE] = ACTIONS(1888), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_API_AVAILABLE] = ACTIONS(1888), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_API_DEPRECATED] = ACTIONS(1888), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1888), + [anon_sym___deprecated_msg] = ACTIONS(1888), + [anon_sym___deprecated_enum_msg] = ACTIONS(1888), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1888), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1888), + [anon_sym_ATimplementation] = ACTIONS(1890), + [anon_sym_NS_ENUM] = ACTIONS(1888), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1888), + [anon_sym_NS_OPTIONS] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym___typeof] = ACTIONS(1888), + [anon_sym___typeof__] = ACTIONS(1888), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_nil] = ACTIONS(1888), + [sym_id] = ACTIONS(1888), + [sym_instancetype] = ACTIONS(1888), + [sym_Class] = ACTIONS(1888), + [sym_SEL] = ACTIONS(1888), + [sym_IMP] = ACTIONS(1888), + [sym_BOOL] = ACTIONS(1888), + [sym_auto] = ACTIONS(1888), + [anon_sym_ATautoreleasepool] = ACTIONS(1890), + [anon_sym_ATsynchronized] = ACTIONS(1890), + [anon_sym_ATtry] = ACTIONS(1890), + [anon_sym_ATthrow] = ACTIONS(1890), + [anon_sym_ATselector] = ACTIONS(1890), + [anon_sym_ATencode] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [sym_YES] = ACTIONS(1888), + [sym_NO] = ACTIONS(1888), + [anon_sym___builtin_available] = ACTIONS(1888), + [anon_sym_ATavailable] = ACTIONS(1890), + [anon_sym_va_arg] = ACTIONS(1888), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [561] = { + [sym_identifier] = ACTIONS(1892), + [aux_sym_preproc_include_token1] = ACTIONS(1894), + [aux_sym_preproc_def_token1] = ACTIONS(1894), + [aux_sym_preproc_if_token1] = ACTIONS(1892), + [aux_sym_preproc_if_token2] = ACTIONS(1892), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1892), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1892), + [aux_sym_preproc_else_token1] = ACTIONS(1892), + [aux_sym_preproc_elif_token1] = ACTIONS(1892), + [anon_sym_LPAREN2] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_TILDE] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_typedef] = ACTIONS(1892), + [anon_sym_extern] = ACTIONS(1892), + [anon_sym___attribute] = ACTIONS(1892), + [anon_sym___attribute__] = ACTIONS(1892), + [anon_sym___declspec] = ACTIONS(1892), + [anon_sym___cdecl] = ACTIONS(1892), + [anon_sym___clrcall] = ACTIONS(1892), + [anon_sym___stdcall] = ACTIONS(1892), + [anon_sym___fastcall] = ACTIONS(1892), + [anon_sym___thiscall] = ACTIONS(1892), + [anon_sym___vectorcall] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_static] = ACTIONS(1892), + [anon_sym_auto] = ACTIONS(1892), + [anon_sym_register] = ACTIONS(1892), + [anon_sym_inline] = ACTIONS(1892), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1892), + [anon_sym_const] = ACTIONS(1892), + [anon_sym_volatile] = ACTIONS(1892), + [anon_sym_restrict] = ACTIONS(1892), + [anon_sym__Atomic] = ACTIONS(1892), + [anon_sym_in] = ACTIONS(1892), + [anon_sym_out] = ACTIONS(1892), + [anon_sym_inout] = ACTIONS(1892), + [anon_sym_bycopy] = ACTIONS(1892), + [anon_sym_byref] = ACTIONS(1892), + [anon_sym_oneway] = ACTIONS(1892), + [anon_sym__Nullable] = ACTIONS(1892), + [anon_sym__Nonnull] = ACTIONS(1892), + [anon_sym__Nullable_result] = ACTIONS(1892), + [anon_sym__Null_unspecified] = ACTIONS(1892), + [anon_sym___autoreleasing] = ACTIONS(1892), + [anon_sym___nullable] = ACTIONS(1892), + [anon_sym___nonnull] = ACTIONS(1892), + [anon_sym___strong] = ACTIONS(1892), + [anon_sym___weak] = ACTIONS(1892), + [anon_sym___bridge] = ACTIONS(1892), + [anon_sym___bridge_transfer] = ACTIONS(1892), + [anon_sym___bridge_retained] = ACTIONS(1892), + [anon_sym___unsafe_unretained] = ACTIONS(1892), + [anon_sym___block] = ACTIONS(1892), + [anon_sym___kindof] = ACTIONS(1892), + [anon_sym___unused] = ACTIONS(1892), + [anon_sym__Complex] = ACTIONS(1892), + [anon_sym___complex] = ACTIONS(1892), + [anon_sym_IBOutlet] = ACTIONS(1892), + [anon_sym_IBInspectable] = ACTIONS(1892), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1892), + [anon_sym_signed] = ACTIONS(1892), + [anon_sym_unsigned] = ACTIONS(1892), + [anon_sym_long] = ACTIONS(1892), + [anon_sym_short] = ACTIONS(1892), + [sym_primitive_type] = ACTIONS(1892), + [anon_sym_enum] = ACTIONS(1892), + [anon_sym_struct] = ACTIONS(1892), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_if] = ACTIONS(1892), + [anon_sym_switch] = ACTIONS(1892), + [anon_sym_case] = ACTIONS(1892), + [anon_sym_default] = ACTIONS(1892), + [anon_sym_while] = ACTIONS(1892), + [anon_sym_do] = ACTIONS(1892), + [anon_sym_for] = ACTIONS(1892), + [anon_sym_return] = ACTIONS(1892), + [anon_sym_break] = ACTIONS(1892), + [anon_sym_continue] = ACTIONS(1892), + [anon_sym_goto] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1892), + [sym_number_literal] = ACTIONS(1894), + [anon_sym_L_SQUOTE] = ACTIONS(1894), + [anon_sym_u_SQUOTE] = ACTIONS(1894), + [anon_sym_U_SQUOTE] = ACTIONS(1894), + [anon_sym_u8_SQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_L_DQUOTE] = ACTIONS(1894), + [anon_sym_u_DQUOTE] = ACTIONS(1894), + [anon_sym_U_DQUOTE] = ACTIONS(1894), + [anon_sym_u8_DQUOTE] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [sym_true] = ACTIONS(1892), + [sym_false] = ACTIONS(1892), + [sym_null] = ACTIONS(1892), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1894), + [anon_sym_ATimport] = ACTIONS(1894), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1892), + [anon_sym_ATcompatibility_alias] = ACTIONS(1894), + [anon_sym_ATprotocol] = ACTIONS(1894), + [anon_sym_ATclass] = ACTIONS(1894), + [anon_sym_ATinterface] = ACTIONS(1894), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1892), + [sym_method_attribute_specifier] = ACTIONS(1892), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1892), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1892), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1892), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1892), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1892), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1892), + [anon_sym_NS_AVAILABLE] = ACTIONS(1892), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1892), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1892), + [anon_sym_API_AVAILABLE] = ACTIONS(1892), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1892), + [anon_sym_API_DEPRECATED] = ACTIONS(1892), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1892), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1892), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1892), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1892), + [anon_sym___deprecated_msg] = ACTIONS(1892), + [anon_sym___deprecated_enum_msg] = ACTIONS(1892), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1892), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1892), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1892), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1892), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1892), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1892), + [anon_sym_ATimplementation] = ACTIONS(1894), + [anon_sym_NS_ENUM] = ACTIONS(1892), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1892), + [anon_sym_NS_OPTIONS] = ACTIONS(1892), + [anon_sym_typeof] = ACTIONS(1892), + [anon_sym___typeof] = ACTIONS(1892), + [anon_sym___typeof__] = ACTIONS(1892), + [sym_self] = ACTIONS(1892), + [sym_super] = ACTIONS(1892), + [sym_nil] = ACTIONS(1892), + [sym_id] = ACTIONS(1892), + [sym_instancetype] = ACTIONS(1892), + [sym_Class] = ACTIONS(1892), + [sym_SEL] = ACTIONS(1892), + [sym_IMP] = ACTIONS(1892), + [sym_BOOL] = ACTIONS(1892), + [sym_auto] = ACTIONS(1892), + [anon_sym_ATautoreleasepool] = ACTIONS(1894), + [anon_sym_ATsynchronized] = ACTIONS(1894), + [anon_sym_ATtry] = ACTIONS(1894), + [anon_sym_ATthrow] = ACTIONS(1894), + [anon_sym_ATselector] = ACTIONS(1894), + [anon_sym_ATencode] = ACTIONS(1894), + [anon_sym_AT] = ACTIONS(1892), + [sym_YES] = ACTIONS(1892), + [sym_NO] = ACTIONS(1892), + [anon_sym___builtin_available] = ACTIONS(1892), + [anon_sym_ATavailable] = ACTIONS(1894), + [anon_sym_va_arg] = ACTIONS(1892), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [562] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [aux_sym_preproc_else_token1] = ACTIONS(1676), + [aux_sym_preproc_elif_token1] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [563] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [aux_sym_preproc_else_token1] = ACTIONS(1676), + [aux_sym_preproc_elif_token1] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [564] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [aux_sym_preproc_else_token1] = ACTIONS(1676), + [aux_sym_preproc_elif_token1] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [565] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [aux_sym_preproc_else_token1] = ACTIONS(1676), + [aux_sym_preproc_elif_token1] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [566] = { + [sym_identifier] = ACTIONS(1888), + [aux_sym_preproc_include_token1] = ACTIONS(1890), + [aux_sym_preproc_def_token1] = ACTIONS(1890), + [aux_sym_preproc_if_token1] = ACTIONS(1888), + [aux_sym_preproc_if_token2] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1888), + [aux_sym_preproc_else_token1] = ACTIONS(1888), + [aux_sym_preproc_elif_token1] = ACTIONS(1888), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym___attribute] = ACTIONS(1888), + [anon_sym___attribute__] = ACTIONS(1888), + [anon_sym___declspec] = ACTIONS(1888), + [anon_sym___cdecl] = ACTIONS(1888), + [anon_sym___clrcall] = ACTIONS(1888), + [anon_sym___stdcall] = ACTIONS(1888), + [anon_sym___fastcall] = ACTIONS(1888), + [anon_sym___thiscall] = ACTIONS(1888), + [anon_sym___vectorcall] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_auto] = ACTIONS(1888), + [anon_sym_register] = ACTIONS(1888), + [anon_sym_inline] = ACTIONS(1888), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_volatile] = ACTIONS(1888), + [anon_sym_restrict] = ACTIONS(1888), + [anon_sym__Atomic] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_out] = ACTIONS(1888), + [anon_sym_inout] = ACTIONS(1888), + [anon_sym_bycopy] = ACTIONS(1888), + [anon_sym_byref] = ACTIONS(1888), + [anon_sym_oneway] = ACTIONS(1888), + [anon_sym__Nullable] = ACTIONS(1888), + [anon_sym__Nonnull] = ACTIONS(1888), + [anon_sym__Nullable_result] = ACTIONS(1888), + [anon_sym__Null_unspecified] = ACTIONS(1888), + [anon_sym___autoreleasing] = ACTIONS(1888), + [anon_sym___nullable] = ACTIONS(1888), + [anon_sym___nonnull] = ACTIONS(1888), + [anon_sym___strong] = ACTIONS(1888), + [anon_sym___weak] = ACTIONS(1888), + [anon_sym___bridge] = ACTIONS(1888), + [anon_sym___bridge_transfer] = ACTIONS(1888), + [anon_sym___bridge_retained] = ACTIONS(1888), + [anon_sym___unsafe_unretained] = ACTIONS(1888), + [anon_sym___block] = ACTIONS(1888), + [anon_sym___kindof] = ACTIONS(1888), + [anon_sym___unused] = ACTIONS(1888), + [anon_sym__Complex] = ACTIONS(1888), + [anon_sym___complex] = ACTIONS(1888), + [anon_sym_IBOutlet] = ACTIONS(1888), + [anon_sym_IBInspectable] = ACTIONS(1888), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1888), + [anon_sym_signed] = ACTIONS(1888), + [anon_sym_unsigned] = ACTIONS(1888), + [anon_sym_long] = ACTIONS(1888), + [anon_sym_short] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_switch] = ACTIONS(1888), + [anon_sym_case] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_goto] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_sizeof] = ACTIONS(1888), + [sym_number_literal] = ACTIONS(1890), + [anon_sym_L_SQUOTE] = ACTIONS(1890), + [anon_sym_u_SQUOTE] = ACTIONS(1890), + [anon_sym_U_SQUOTE] = ACTIONS(1890), + [anon_sym_u8_SQUOTE] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_L_DQUOTE] = ACTIONS(1890), + [anon_sym_u_DQUOTE] = ACTIONS(1890), + [anon_sym_U_DQUOTE] = ACTIONS(1890), + [anon_sym_u8_DQUOTE] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_true] = ACTIONS(1888), + [sym_false] = ACTIONS(1888), + [sym_null] = ACTIONS(1888), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1890), + [anon_sym_ATimport] = ACTIONS(1890), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1888), + [anon_sym_ATcompatibility_alias] = ACTIONS(1890), + [anon_sym_ATprotocol] = ACTIONS(1890), + [anon_sym_ATclass] = ACTIONS(1890), + [anon_sym_ATinterface] = ACTIONS(1890), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1888), + [sym_method_attribute_specifier] = ACTIONS(1888), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1888), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE] = ACTIONS(1888), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_API_AVAILABLE] = ACTIONS(1888), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_API_DEPRECATED] = ACTIONS(1888), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1888), + [anon_sym___deprecated_msg] = ACTIONS(1888), + [anon_sym___deprecated_enum_msg] = ACTIONS(1888), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1888), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1888), + [anon_sym_ATimplementation] = ACTIONS(1890), + [anon_sym_NS_ENUM] = ACTIONS(1888), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1888), + [anon_sym_NS_OPTIONS] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym___typeof] = ACTIONS(1888), + [anon_sym___typeof__] = ACTIONS(1888), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_nil] = ACTIONS(1888), + [sym_id] = ACTIONS(1888), + [sym_instancetype] = ACTIONS(1888), + [sym_Class] = ACTIONS(1888), + [sym_SEL] = ACTIONS(1888), + [sym_IMP] = ACTIONS(1888), + [sym_BOOL] = ACTIONS(1888), + [sym_auto] = ACTIONS(1888), + [anon_sym_ATautoreleasepool] = ACTIONS(1890), + [anon_sym_ATsynchronized] = ACTIONS(1890), + [anon_sym_ATtry] = ACTIONS(1890), + [anon_sym_ATthrow] = ACTIONS(1890), + [anon_sym_ATselector] = ACTIONS(1890), + [anon_sym_ATencode] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [sym_YES] = ACTIONS(1888), + [sym_NO] = ACTIONS(1888), + [anon_sym___builtin_available] = ACTIONS(1888), + [anon_sym_ATavailable] = ACTIONS(1890), + [anon_sym_va_arg] = ACTIONS(1888), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [567] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [aux_sym_preproc_else_token1] = ACTIONS(1676), + [aux_sym_preproc_elif_token1] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [568] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [aux_sym_preproc_else_token1] = ACTIONS(1676), + [aux_sym_preproc_elif_token1] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [569] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [aux_sym_preproc_else_token1] = ACTIONS(1676), + [aux_sym_preproc_elif_token1] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [570] = { + [sym_identifier] = ACTIONS(1888), + [aux_sym_preproc_include_token1] = ACTIONS(1890), + [aux_sym_preproc_def_token1] = ACTIONS(1890), + [aux_sym_preproc_if_token1] = ACTIONS(1888), + [aux_sym_preproc_if_token2] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1888), + [aux_sym_preproc_else_token1] = ACTIONS(1888), + [aux_sym_preproc_elif_token1] = ACTIONS(1888), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym___attribute] = ACTIONS(1888), + [anon_sym___attribute__] = ACTIONS(1888), + [anon_sym___declspec] = ACTIONS(1888), + [anon_sym___cdecl] = ACTIONS(1888), + [anon_sym___clrcall] = ACTIONS(1888), + [anon_sym___stdcall] = ACTIONS(1888), + [anon_sym___fastcall] = ACTIONS(1888), + [anon_sym___thiscall] = ACTIONS(1888), + [anon_sym___vectorcall] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_auto] = ACTIONS(1888), + [anon_sym_register] = ACTIONS(1888), + [anon_sym_inline] = ACTIONS(1888), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_volatile] = ACTIONS(1888), + [anon_sym_restrict] = ACTIONS(1888), + [anon_sym__Atomic] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_out] = ACTIONS(1888), + [anon_sym_inout] = ACTIONS(1888), + [anon_sym_bycopy] = ACTIONS(1888), + [anon_sym_byref] = ACTIONS(1888), + [anon_sym_oneway] = ACTIONS(1888), + [anon_sym__Nullable] = ACTIONS(1888), + [anon_sym__Nonnull] = ACTIONS(1888), + [anon_sym__Nullable_result] = ACTIONS(1888), + [anon_sym__Null_unspecified] = ACTIONS(1888), + [anon_sym___autoreleasing] = ACTIONS(1888), + [anon_sym___nullable] = ACTIONS(1888), + [anon_sym___nonnull] = ACTIONS(1888), + [anon_sym___strong] = ACTIONS(1888), + [anon_sym___weak] = ACTIONS(1888), + [anon_sym___bridge] = ACTIONS(1888), + [anon_sym___bridge_transfer] = ACTIONS(1888), + [anon_sym___bridge_retained] = ACTIONS(1888), + [anon_sym___unsafe_unretained] = ACTIONS(1888), + [anon_sym___block] = ACTIONS(1888), + [anon_sym___kindof] = ACTIONS(1888), + [anon_sym___unused] = ACTIONS(1888), + [anon_sym__Complex] = ACTIONS(1888), + [anon_sym___complex] = ACTIONS(1888), + [anon_sym_IBOutlet] = ACTIONS(1888), + [anon_sym_IBInspectable] = ACTIONS(1888), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1888), + [anon_sym_signed] = ACTIONS(1888), + [anon_sym_unsigned] = ACTIONS(1888), + [anon_sym_long] = ACTIONS(1888), + [anon_sym_short] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_switch] = ACTIONS(1888), + [anon_sym_case] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_goto] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_sizeof] = ACTIONS(1888), + [sym_number_literal] = ACTIONS(1890), + [anon_sym_L_SQUOTE] = ACTIONS(1890), + [anon_sym_u_SQUOTE] = ACTIONS(1890), + [anon_sym_U_SQUOTE] = ACTIONS(1890), + [anon_sym_u8_SQUOTE] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_L_DQUOTE] = ACTIONS(1890), + [anon_sym_u_DQUOTE] = ACTIONS(1890), + [anon_sym_U_DQUOTE] = ACTIONS(1890), + [anon_sym_u8_DQUOTE] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_true] = ACTIONS(1888), + [sym_false] = ACTIONS(1888), + [sym_null] = ACTIONS(1888), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1890), + [anon_sym_ATimport] = ACTIONS(1890), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1888), + [anon_sym_ATcompatibility_alias] = ACTIONS(1890), + [anon_sym_ATprotocol] = ACTIONS(1890), + [anon_sym_ATclass] = ACTIONS(1890), + [anon_sym_ATinterface] = ACTIONS(1890), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1888), + [sym_method_attribute_specifier] = ACTIONS(1888), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1888), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE] = ACTIONS(1888), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_API_AVAILABLE] = ACTIONS(1888), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_API_DEPRECATED] = ACTIONS(1888), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1888), + [anon_sym___deprecated_msg] = ACTIONS(1888), + [anon_sym___deprecated_enum_msg] = ACTIONS(1888), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1888), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1888), + [anon_sym_ATimplementation] = ACTIONS(1890), + [anon_sym_NS_ENUM] = ACTIONS(1888), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1888), + [anon_sym_NS_OPTIONS] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym___typeof] = ACTIONS(1888), + [anon_sym___typeof__] = ACTIONS(1888), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_nil] = ACTIONS(1888), + [sym_id] = ACTIONS(1888), + [sym_instancetype] = ACTIONS(1888), + [sym_Class] = ACTIONS(1888), + [sym_SEL] = ACTIONS(1888), + [sym_IMP] = ACTIONS(1888), + [sym_BOOL] = ACTIONS(1888), + [sym_auto] = ACTIONS(1888), + [anon_sym_ATautoreleasepool] = ACTIONS(1890), + [anon_sym_ATsynchronized] = ACTIONS(1890), + [anon_sym_ATtry] = ACTIONS(1890), + [anon_sym_ATthrow] = ACTIONS(1890), + [anon_sym_ATselector] = ACTIONS(1890), + [anon_sym_ATencode] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [sym_YES] = ACTIONS(1888), + [sym_NO] = ACTIONS(1888), + [anon_sym___builtin_available] = ACTIONS(1888), + [anon_sym_ATavailable] = ACTIONS(1890), + [anon_sym_va_arg] = ACTIONS(1888), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [571] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [aux_sym_preproc_else_token1] = ACTIONS(1676), + [aux_sym_preproc_elif_token1] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [572] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [aux_sym_preproc_else_token1] = ACTIONS(1676), + [aux_sym_preproc_elif_token1] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [573] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [aux_sym_preproc_else_token1] = ACTIONS(1676), + [aux_sym_preproc_elif_token1] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [574] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [aux_sym_preproc_else_token1] = ACTIONS(1676), + [aux_sym_preproc_elif_token1] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [575] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [aux_sym_preproc_else_token1] = ACTIONS(1676), + [aux_sym_preproc_elif_token1] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [576] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [aux_sym_preproc_else_token1] = ACTIONS(1676), + [aux_sym_preproc_elif_token1] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [577] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [aux_sym_preproc_else_token1] = ACTIONS(1676), + [aux_sym_preproc_elif_token1] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [578] = { + [sym_identifier] = ACTIONS(1896), + [aux_sym_preproc_include_token1] = ACTIONS(1898), + [aux_sym_preproc_def_token1] = ACTIONS(1898), + [aux_sym_preproc_if_token1] = ACTIONS(1896), + [aux_sym_preproc_if_token2] = ACTIONS(1896), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1896), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1896), + [aux_sym_preproc_else_token1] = ACTIONS(1896), + [aux_sym_preproc_elif_token1] = ACTIONS(1896), + [anon_sym_LPAREN2] = ACTIONS(1898), + [anon_sym_BANG] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1898), + [anon_sym_CARET] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_typedef] = ACTIONS(1896), + [anon_sym_extern] = ACTIONS(1896), + [anon_sym___attribute] = ACTIONS(1896), + [anon_sym___attribute__] = ACTIONS(1896), + [anon_sym___declspec] = ACTIONS(1896), + [anon_sym___cdecl] = ACTIONS(1896), + [anon_sym___clrcall] = ACTIONS(1896), + [anon_sym___stdcall] = ACTIONS(1896), + [anon_sym___fastcall] = ACTIONS(1896), + [anon_sym___thiscall] = ACTIONS(1896), + [anon_sym___vectorcall] = ACTIONS(1896), + [anon_sym_LBRACE] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_static] = ACTIONS(1896), + [anon_sym_auto] = ACTIONS(1896), + [anon_sym_register] = ACTIONS(1896), + [anon_sym_inline] = ACTIONS(1896), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1896), + [anon_sym_const] = ACTIONS(1896), + [anon_sym_volatile] = ACTIONS(1896), + [anon_sym_restrict] = ACTIONS(1896), + [anon_sym__Atomic] = ACTIONS(1896), + [anon_sym_in] = ACTIONS(1896), + [anon_sym_out] = ACTIONS(1896), + [anon_sym_inout] = ACTIONS(1896), + [anon_sym_bycopy] = ACTIONS(1896), + [anon_sym_byref] = ACTIONS(1896), + [anon_sym_oneway] = ACTIONS(1896), + [anon_sym__Nullable] = ACTIONS(1896), + [anon_sym__Nonnull] = ACTIONS(1896), + [anon_sym__Nullable_result] = ACTIONS(1896), + [anon_sym__Null_unspecified] = ACTIONS(1896), + [anon_sym___autoreleasing] = ACTIONS(1896), + [anon_sym___nullable] = ACTIONS(1896), + [anon_sym___nonnull] = ACTIONS(1896), + [anon_sym___strong] = ACTIONS(1896), + [anon_sym___weak] = ACTIONS(1896), + [anon_sym___bridge] = ACTIONS(1896), + [anon_sym___bridge_transfer] = ACTIONS(1896), + [anon_sym___bridge_retained] = ACTIONS(1896), + [anon_sym___unsafe_unretained] = ACTIONS(1896), + [anon_sym___block] = ACTIONS(1896), + [anon_sym___kindof] = ACTIONS(1896), + [anon_sym___unused] = ACTIONS(1896), + [anon_sym__Complex] = ACTIONS(1896), + [anon_sym___complex] = ACTIONS(1896), + [anon_sym_IBOutlet] = ACTIONS(1896), + [anon_sym_IBInspectable] = ACTIONS(1896), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1896), + [anon_sym_signed] = ACTIONS(1896), + [anon_sym_unsigned] = ACTIONS(1896), + [anon_sym_long] = ACTIONS(1896), + [anon_sym_short] = ACTIONS(1896), + [sym_primitive_type] = ACTIONS(1896), + [anon_sym_enum] = ACTIONS(1896), + [anon_sym_struct] = ACTIONS(1896), + [anon_sym_union] = ACTIONS(1896), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_switch] = ACTIONS(1896), + [anon_sym_case] = ACTIONS(1896), + [anon_sym_default] = ACTIONS(1896), + [anon_sym_while] = ACTIONS(1896), + [anon_sym_do] = ACTIONS(1896), + [anon_sym_for] = ACTIONS(1896), + [anon_sym_return] = ACTIONS(1896), + [anon_sym_break] = ACTIONS(1896), + [anon_sym_continue] = ACTIONS(1896), + [anon_sym_goto] = ACTIONS(1896), + [anon_sym_DASH_DASH] = ACTIONS(1898), + [anon_sym_PLUS_PLUS] = ACTIONS(1898), + [anon_sym_sizeof] = ACTIONS(1896), + [sym_number_literal] = ACTIONS(1898), + [anon_sym_L_SQUOTE] = ACTIONS(1898), + [anon_sym_u_SQUOTE] = ACTIONS(1898), + [anon_sym_U_SQUOTE] = ACTIONS(1898), + [anon_sym_u8_SQUOTE] = ACTIONS(1898), + [anon_sym_SQUOTE] = ACTIONS(1898), + [anon_sym_L_DQUOTE] = ACTIONS(1898), + [anon_sym_u_DQUOTE] = ACTIONS(1898), + [anon_sym_U_DQUOTE] = ACTIONS(1898), + [anon_sym_u8_DQUOTE] = ACTIONS(1898), + [anon_sym_DQUOTE] = ACTIONS(1898), + [sym_true] = ACTIONS(1896), + [sym_false] = ACTIONS(1896), + [sym_null] = ACTIONS(1896), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1898), + [anon_sym_ATimport] = ACTIONS(1898), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1896), + [anon_sym_ATcompatibility_alias] = ACTIONS(1898), + [anon_sym_ATprotocol] = ACTIONS(1898), + [anon_sym_ATclass] = ACTIONS(1898), + [anon_sym_ATinterface] = ACTIONS(1898), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1896), + [sym_method_attribute_specifier] = ACTIONS(1896), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1896), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1896), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1896), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1896), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1896), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1896), + [anon_sym_NS_AVAILABLE] = ACTIONS(1896), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1896), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1896), + [anon_sym_API_AVAILABLE] = ACTIONS(1896), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1896), + [anon_sym_API_DEPRECATED] = ACTIONS(1896), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1896), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1896), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1896), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1896), + [anon_sym___deprecated_msg] = ACTIONS(1896), + [anon_sym___deprecated_enum_msg] = ACTIONS(1896), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1896), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1896), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1896), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1896), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1896), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1896), + [anon_sym_ATimplementation] = ACTIONS(1898), + [anon_sym_NS_ENUM] = ACTIONS(1896), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1896), + [anon_sym_NS_OPTIONS] = ACTIONS(1896), + [anon_sym_typeof] = ACTIONS(1896), + [anon_sym___typeof] = ACTIONS(1896), + [anon_sym___typeof__] = ACTIONS(1896), + [sym_self] = ACTIONS(1896), + [sym_super] = ACTIONS(1896), + [sym_nil] = ACTIONS(1896), + [sym_id] = ACTIONS(1896), + [sym_instancetype] = ACTIONS(1896), + [sym_Class] = ACTIONS(1896), + [sym_SEL] = ACTIONS(1896), + [sym_IMP] = ACTIONS(1896), + [sym_BOOL] = ACTIONS(1896), + [sym_auto] = ACTIONS(1896), + [anon_sym_ATautoreleasepool] = ACTIONS(1898), + [anon_sym_ATsynchronized] = ACTIONS(1898), + [anon_sym_ATtry] = ACTIONS(1898), + [anon_sym_ATthrow] = ACTIONS(1898), + [anon_sym_ATselector] = ACTIONS(1898), + [anon_sym_ATencode] = ACTIONS(1898), + [anon_sym_AT] = ACTIONS(1896), + [sym_YES] = ACTIONS(1896), + [sym_NO] = ACTIONS(1896), + [anon_sym___builtin_available] = ACTIONS(1896), + [anon_sym_ATavailable] = ACTIONS(1898), + [anon_sym_va_arg] = ACTIONS(1896), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [579] = { + [sym_identifier] = ACTIONS(1900), + [aux_sym_preproc_include_token1] = ACTIONS(1902), + [aux_sym_preproc_def_token1] = ACTIONS(1902), + [aux_sym_preproc_if_token1] = ACTIONS(1900), + [aux_sym_preproc_if_token2] = ACTIONS(1900), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1900), + [aux_sym_preproc_else_token1] = ACTIONS(1900), + [aux_sym_preproc_elif_token1] = ACTIONS(1900), + [anon_sym_LPAREN2] = ACTIONS(1902), + [anon_sym_BANG] = ACTIONS(1902), + [anon_sym_TILDE] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1902), + [anon_sym_CARET] = ACTIONS(1902), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_typedef] = ACTIONS(1900), + [anon_sym_extern] = ACTIONS(1900), + [anon_sym___attribute] = ACTIONS(1900), + [anon_sym___attribute__] = ACTIONS(1900), + [anon_sym___declspec] = ACTIONS(1900), + [anon_sym___cdecl] = ACTIONS(1900), + [anon_sym___clrcall] = ACTIONS(1900), + [anon_sym___stdcall] = ACTIONS(1900), + [anon_sym___fastcall] = ACTIONS(1900), + [anon_sym___thiscall] = ACTIONS(1900), + [anon_sym___vectorcall] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_LBRACK] = ACTIONS(1902), + [anon_sym_static] = ACTIONS(1900), + [anon_sym_auto] = ACTIONS(1900), + [anon_sym_register] = ACTIONS(1900), + [anon_sym_inline] = ACTIONS(1900), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1900), + [anon_sym_volatile] = ACTIONS(1900), + [anon_sym_restrict] = ACTIONS(1900), + [anon_sym__Atomic] = ACTIONS(1900), + [anon_sym_in] = ACTIONS(1900), + [anon_sym_out] = ACTIONS(1900), + [anon_sym_inout] = ACTIONS(1900), + [anon_sym_bycopy] = ACTIONS(1900), + [anon_sym_byref] = ACTIONS(1900), + [anon_sym_oneway] = ACTIONS(1900), + [anon_sym__Nullable] = ACTIONS(1900), + [anon_sym__Nonnull] = ACTIONS(1900), + [anon_sym__Nullable_result] = ACTIONS(1900), + [anon_sym__Null_unspecified] = ACTIONS(1900), + [anon_sym___autoreleasing] = ACTIONS(1900), + [anon_sym___nullable] = ACTIONS(1900), + [anon_sym___nonnull] = ACTIONS(1900), + [anon_sym___strong] = ACTIONS(1900), + [anon_sym___weak] = ACTIONS(1900), + [anon_sym___bridge] = ACTIONS(1900), + [anon_sym___bridge_transfer] = ACTIONS(1900), + [anon_sym___bridge_retained] = ACTIONS(1900), + [anon_sym___unsafe_unretained] = ACTIONS(1900), + [anon_sym___block] = ACTIONS(1900), + [anon_sym___kindof] = ACTIONS(1900), + [anon_sym___unused] = ACTIONS(1900), + [anon_sym__Complex] = ACTIONS(1900), + [anon_sym___complex] = ACTIONS(1900), + [anon_sym_IBOutlet] = ACTIONS(1900), + [anon_sym_IBInspectable] = ACTIONS(1900), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1900), + [anon_sym_signed] = ACTIONS(1900), + [anon_sym_unsigned] = ACTIONS(1900), + [anon_sym_long] = ACTIONS(1900), + [anon_sym_short] = ACTIONS(1900), + [sym_primitive_type] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1900), + [anon_sym_struct] = ACTIONS(1900), + [anon_sym_union] = ACTIONS(1900), + [anon_sym_if] = ACTIONS(1900), + [anon_sym_switch] = ACTIONS(1900), + [anon_sym_case] = ACTIONS(1900), + [anon_sym_default] = ACTIONS(1900), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_do] = ACTIONS(1900), + [anon_sym_for] = ACTIONS(1900), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(1900), + [anon_sym_goto] = ACTIONS(1900), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1900), + [sym_number_literal] = ACTIONS(1902), + [anon_sym_L_SQUOTE] = ACTIONS(1902), + [anon_sym_u_SQUOTE] = ACTIONS(1902), + [anon_sym_U_SQUOTE] = ACTIONS(1902), + [anon_sym_u8_SQUOTE] = ACTIONS(1902), + [anon_sym_SQUOTE] = ACTIONS(1902), + [anon_sym_L_DQUOTE] = ACTIONS(1902), + [anon_sym_u_DQUOTE] = ACTIONS(1902), + [anon_sym_U_DQUOTE] = ACTIONS(1902), + [anon_sym_u8_DQUOTE] = ACTIONS(1902), + [anon_sym_DQUOTE] = ACTIONS(1902), + [sym_true] = ACTIONS(1900), + [sym_false] = ACTIONS(1900), + [sym_null] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1902), + [anon_sym_ATimport] = ACTIONS(1902), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1900), + [anon_sym_ATcompatibility_alias] = ACTIONS(1902), + [anon_sym_ATprotocol] = ACTIONS(1902), + [anon_sym_ATclass] = ACTIONS(1902), + [anon_sym_ATinterface] = ACTIONS(1902), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1900), + [sym_method_attribute_specifier] = ACTIONS(1900), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1900), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1900), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1900), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1900), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1900), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1900), + [anon_sym_NS_AVAILABLE] = ACTIONS(1900), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1900), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1900), + [anon_sym_API_AVAILABLE] = ACTIONS(1900), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1900), + [anon_sym_API_DEPRECATED] = ACTIONS(1900), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1900), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1900), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1900), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1900), + [anon_sym___deprecated_msg] = ACTIONS(1900), + [anon_sym___deprecated_enum_msg] = ACTIONS(1900), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1900), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1900), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1900), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1900), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1900), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1900), + [anon_sym_ATimplementation] = ACTIONS(1902), + [anon_sym_NS_ENUM] = ACTIONS(1900), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1900), + [anon_sym_NS_OPTIONS] = ACTIONS(1900), + [anon_sym_typeof] = ACTIONS(1900), + [anon_sym___typeof] = ACTIONS(1900), + [anon_sym___typeof__] = ACTIONS(1900), + [sym_self] = ACTIONS(1900), + [sym_super] = ACTIONS(1900), + [sym_nil] = ACTIONS(1900), + [sym_id] = ACTIONS(1900), + [sym_instancetype] = ACTIONS(1900), + [sym_Class] = ACTIONS(1900), + [sym_SEL] = ACTIONS(1900), + [sym_IMP] = ACTIONS(1900), + [sym_BOOL] = ACTIONS(1900), + [sym_auto] = ACTIONS(1900), + [anon_sym_ATautoreleasepool] = ACTIONS(1902), + [anon_sym_ATsynchronized] = ACTIONS(1902), + [anon_sym_ATtry] = ACTIONS(1902), + [anon_sym_ATthrow] = ACTIONS(1902), + [anon_sym_ATselector] = ACTIONS(1902), + [anon_sym_ATencode] = ACTIONS(1902), + [anon_sym_AT] = ACTIONS(1900), + [sym_YES] = ACTIONS(1900), + [sym_NO] = ACTIONS(1900), + [anon_sym___builtin_available] = ACTIONS(1900), + [anon_sym_ATavailable] = ACTIONS(1902), + [anon_sym_va_arg] = ACTIONS(1900), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [580] = { + [sym_identifier] = ACTIONS(1904), + [aux_sym_preproc_include_token1] = ACTIONS(1906), + [aux_sym_preproc_def_token1] = ACTIONS(1906), + [aux_sym_preproc_if_token1] = ACTIONS(1904), + [aux_sym_preproc_if_token2] = ACTIONS(1904), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1904), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1904), + [aux_sym_preproc_else_token1] = ACTIONS(1904), + [aux_sym_preproc_elif_token1] = ACTIONS(1904), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1906), + [anon_sym_TILDE] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_PLUS] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1906), + [anon_sym_CARET] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_typedef] = ACTIONS(1904), + [anon_sym_extern] = ACTIONS(1904), + [anon_sym___attribute] = ACTIONS(1904), + [anon_sym___attribute__] = ACTIONS(1904), + [anon_sym___declspec] = ACTIONS(1904), + [anon_sym___cdecl] = ACTIONS(1904), + [anon_sym___clrcall] = ACTIONS(1904), + [anon_sym___stdcall] = ACTIONS(1904), + [anon_sym___fastcall] = ACTIONS(1904), + [anon_sym___thiscall] = ACTIONS(1904), + [anon_sym___vectorcall] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_static] = ACTIONS(1904), + [anon_sym_auto] = ACTIONS(1904), + [anon_sym_register] = ACTIONS(1904), + [anon_sym_inline] = ACTIONS(1904), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1904), + [anon_sym_const] = ACTIONS(1904), + [anon_sym_volatile] = ACTIONS(1904), + [anon_sym_restrict] = ACTIONS(1904), + [anon_sym__Atomic] = ACTIONS(1904), + [anon_sym_in] = ACTIONS(1904), + [anon_sym_out] = ACTIONS(1904), + [anon_sym_inout] = ACTIONS(1904), + [anon_sym_bycopy] = ACTIONS(1904), + [anon_sym_byref] = ACTIONS(1904), + [anon_sym_oneway] = ACTIONS(1904), + [anon_sym__Nullable] = ACTIONS(1904), + [anon_sym__Nonnull] = ACTIONS(1904), + [anon_sym__Nullable_result] = ACTIONS(1904), + [anon_sym__Null_unspecified] = ACTIONS(1904), + [anon_sym___autoreleasing] = ACTIONS(1904), + [anon_sym___nullable] = ACTIONS(1904), + [anon_sym___nonnull] = ACTIONS(1904), + [anon_sym___strong] = ACTIONS(1904), + [anon_sym___weak] = ACTIONS(1904), + [anon_sym___bridge] = ACTIONS(1904), + [anon_sym___bridge_transfer] = ACTIONS(1904), + [anon_sym___bridge_retained] = ACTIONS(1904), + [anon_sym___unsafe_unretained] = ACTIONS(1904), + [anon_sym___block] = ACTIONS(1904), + [anon_sym___kindof] = ACTIONS(1904), + [anon_sym___unused] = ACTIONS(1904), + [anon_sym__Complex] = ACTIONS(1904), + [anon_sym___complex] = ACTIONS(1904), + [anon_sym_IBOutlet] = ACTIONS(1904), + [anon_sym_IBInspectable] = ACTIONS(1904), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1904), + [anon_sym_signed] = ACTIONS(1904), + [anon_sym_unsigned] = ACTIONS(1904), + [anon_sym_long] = ACTIONS(1904), + [anon_sym_short] = ACTIONS(1904), + [sym_primitive_type] = ACTIONS(1904), + [anon_sym_enum] = ACTIONS(1904), + [anon_sym_struct] = ACTIONS(1904), + [anon_sym_union] = ACTIONS(1904), + [anon_sym_if] = ACTIONS(1904), + [anon_sym_switch] = ACTIONS(1904), + [anon_sym_case] = ACTIONS(1904), + [anon_sym_default] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1904), + [anon_sym_do] = ACTIONS(1904), + [anon_sym_for] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1904), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_goto] = ACTIONS(1904), + [anon_sym_DASH_DASH] = ACTIONS(1906), + [anon_sym_PLUS_PLUS] = ACTIONS(1906), + [anon_sym_sizeof] = ACTIONS(1904), + [sym_number_literal] = ACTIONS(1906), + [anon_sym_L_SQUOTE] = ACTIONS(1906), + [anon_sym_u_SQUOTE] = ACTIONS(1906), + [anon_sym_U_SQUOTE] = ACTIONS(1906), + [anon_sym_u8_SQUOTE] = ACTIONS(1906), + [anon_sym_SQUOTE] = ACTIONS(1906), + [anon_sym_L_DQUOTE] = ACTIONS(1906), + [anon_sym_u_DQUOTE] = ACTIONS(1906), + [anon_sym_U_DQUOTE] = ACTIONS(1906), + [anon_sym_u8_DQUOTE] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [sym_true] = ACTIONS(1904), + [sym_false] = ACTIONS(1904), + [sym_null] = ACTIONS(1904), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1906), + [anon_sym_ATimport] = ACTIONS(1906), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1904), + [anon_sym_ATcompatibility_alias] = ACTIONS(1906), + [anon_sym_ATprotocol] = ACTIONS(1906), + [anon_sym_ATclass] = ACTIONS(1906), + [anon_sym_ATinterface] = ACTIONS(1906), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1904), + [sym_method_attribute_specifier] = ACTIONS(1904), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1904), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1904), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1904), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1904), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1904), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1904), + [anon_sym_NS_AVAILABLE] = ACTIONS(1904), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1904), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1904), + [anon_sym_API_AVAILABLE] = ACTIONS(1904), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1904), + [anon_sym_API_DEPRECATED] = ACTIONS(1904), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1904), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1904), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1904), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1904), + [anon_sym___deprecated_msg] = ACTIONS(1904), + [anon_sym___deprecated_enum_msg] = ACTIONS(1904), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1904), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1904), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1904), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1904), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1904), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1904), + [anon_sym_ATimplementation] = ACTIONS(1906), + [anon_sym_NS_ENUM] = ACTIONS(1904), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1904), + [anon_sym_NS_OPTIONS] = ACTIONS(1904), + [anon_sym_typeof] = ACTIONS(1904), + [anon_sym___typeof] = ACTIONS(1904), + [anon_sym___typeof__] = ACTIONS(1904), + [sym_self] = ACTIONS(1904), + [sym_super] = ACTIONS(1904), + [sym_nil] = ACTIONS(1904), + [sym_id] = ACTIONS(1904), + [sym_instancetype] = ACTIONS(1904), + [sym_Class] = ACTIONS(1904), + [sym_SEL] = ACTIONS(1904), + [sym_IMP] = ACTIONS(1904), + [sym_BOOL] = ACTIONS(1904), + [sym_auto] = ACTIONS(1904), + [anon_sym_ATautoreleasepool] = ACTIONS(1906), + [anon_sym_ATsynchronized] = ACTIONS(1906), + [anon_sym_ATtry] = ACTIONS(1906), + [anon_sym_ATthrow] = ACTIONS(1906), + [anon_sym_ATselector] = ACTIONS(1906), + [anon_sym_ATencode] = ACTIONS(1906), + [anon_sym_AT] = ACTIONS(1904), + [sym_YES] = ACTIONS(1904), + [sym_NO] = ACTIONS(1904), + [anon_sym___builtin_available] = ACTIONS(1904), + [anon_sym_ATavailable] = ACTIONS(1906), + [anon_sym_va_arg] = ACTIONS(1904), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [581] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [aux_sym_preproc_else_token1] = ACTIONS(1908), + [aux_sym_preproc_elif_token1] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [582] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [aux_sym_preproc_else_token1] = ACTIONS(1908), + [aux_sym_preproc_elif_token1] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [583] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [aux_sym_preproc_else_token1] = ACTIONS(1908), + [aux_sym_preproc_elif_token1] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [584] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [aux_sym_preproc_else_token1] = ACTIONS(1908), + [aux_sym_preproc_elif_token1] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [585] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [aux_sym_preproc_else_token1] = ACTIONS(1908), + [aux_sym_preproc_elif_token1] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [586] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [aux_sym_preproc_else_token1] = ACTIONS(1908), + [aux_sym_preproc_elif_token1] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [587] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [aux_sym_preproc_else_token1] = ACTIONS(1908), + [aux_sym_preproc_elif_token1] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [588] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [aux_sym_preproc_else_token1] = ACTIONS(1908), + [aux_sym_preproc_elif_token1] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [589] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [aux_sym_preproc_else_token1] = ACTIONS(1908), + [aux_sym_preproc_elif_token1] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [590] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [aux_sym_preproc_else_token1] = ACTIONS(1908), + [aux_sym_preproc_elif_token1] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [591] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [aux_sym_preproc_else_token1] = ACTIONS(1908), + [aux_sym_preproc_elif_token1] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [592] = { + [sym_identifier] = ACTIONS(1912), + [aux_sym_preproc_include_token1] = ACTIONS(1914), + [aux_sym_preproc_def_token1] = ACTIONS(1914), + [aux_sym_preproc_if_token1] = ACTIONS(1912), + [aux_sym_preproc_if_token2] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1912), + [aux_sym_preproc_else_token1] = ACTIONS(1912), + [aux_sym_preproc_elif_token1] = ACTIONS(1912), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_CARET] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym___attribute] = ACTIONS(1912), + [anon_sym___attribute__] = ACTIONS(1912), + [anon_sym___declspec] = ACTIONS(1912), + [anon_sym___cdecl] = ACTIONS(1912), + [anon_sym___clrcall] = ACTIONS(1912), + [anon_sym___stdcall] = ACTIONS(1912), + [anon_sym___fastcall] = ACTIONS(1912), + [anon_sym___thiscall] = ACTIONS(1912), + [anon_sym___vectorcall] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_auto] = ACTIONS(1912), + [anon_sym_register] = ACTIONS(1912), + [anon_sym_inline] = ACTIONS(1912), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_volatile] = ACTIONS(1912), + [anon_sym_restrict] = ACTIONS(1912), + [anon_sym__Atomic] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1912), + [anon_sym_out] = ACTIONS(1912), + [anon_sym_inout] = ACTIONS(1912), + [anon_sym_bycopy] = ACTIONS(1912), + [anon_sym_byref] = ACTIONS(1912), + [anon_sym_oneway] = ACTIONS(1912), + [anon_sym__Nullable] = ACTIONS(1912), + [anon_sym__Nonnull] = ACTIONS(1912), + [anon_sym__Nullable_result] = ACTIONS(1912), + [anon_sym__Null_unspecified] = ACTIONS(1912), + [anon_sym___autoreleasing] = ACTIONS(1912), + [anon_sym___nullable] = ACTIONS(1912), + [anon_sym___nonnull] = ACTIONS(1912), + [anon_sym___strong] = ACTIONS(1912), + [anon_sym___weak] = ACTIONS(1912), + [anon_sym___bridge] = ACTIONS(1912), + [anon_sym___bridge_transfer] = ACTIONS(1912), + [anon_sym___bridge_retained] = ACTIONS(1912), + [anon_sym___unsafe_unretained] = ACTIONS(1912), + [anon_sym___block] = ACTIONS(1912), + [anon_sym___kindof] = ACTIONS(1912), + [anon_sym___unused] = ACTIONS(1912), + [anon_sym__Complex] = ACTIONS(1912), + [anon_sym___complex] = ACTIONS(1912), + [anon_sym_IBOutlet] = ACTIONS(1912), + [anon_sym_IBInspectable] = ACTIONS(1912), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1912), + [anon_sym_signed] = ACTIONS(1912), + [anon_sym_unsigned] = ACTIONS(1912), + [anon_sym_long] = ACTIONS(1912), + [anon_sym_short] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_switch] = ACTIONS(1912), + [anon_sym_case] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_do] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_goto] = ACTIONS(1912), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_sizeof] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1914), + [anon_sym_u_SQUOTE] = ACTIONS(1914), + [anon_sym_U_SQUOTE] = ACTIONS(1914), + [anon_sym_u8_SQUOTE] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_L_DQUOTE] = ACTIONS(1914), + [anon_sym_u_DQUOTE] = ACTIONS(1914), + [anon_sym_U_DQUOTE] = ACTIONS(1914), + [anon_sym_u8_DQUOTE] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_true] = ACTIONS(1912), + [sym_false] = ACTIONS(1912), + [sym_null] = ACTIONS(1912), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1914), + [anon_sym_ATimport] = ACTIONS(1914), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1912), + [anon_sym_ATcompatibility_alias] = ACTIONS(1914), + [anon_sym_ATprotocol] = ACTIONS(1914), + [anon_sym_ATclass] = ACTIONS(1914), + [anon_sym_ATinterface] = ACTIONS(1914), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1912), + [sym_method_attribute_specifier] = ACTIONS(1912), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1912), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE] = ACTIONS(1912), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_API_AVAILABLE] = ACTIONS(1912), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_API_DEPRECATED] = ACTIONS(1912), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1912), + [anon_sym___deprecated_msg] = ACTIONS(1912), + [anon_sym___deprecated_enum_msg] = ACTIONS(1912), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1912), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1912), + [anon_sym_ATimplementation] = ACTIONS(1914), + [anon_sym_NS_ENUM] = ACTIONS(1912), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1912), + [anon_sym_NS_OPTIONS] = ACTIONS(1912), + [anon_sym_typeof] = ACTIONS(1912), + [anon_sym___typeof] = ACTIONS(1912), + [anon_sym___typeof__] = ACTIONS(1912), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_nil] = ACTIONS(1912), + [sym_id] = ACTIONS(1912), + [sym_instancetype] = ACTIONS(1912), + [sym_Class] = ACTIONS(1912), + [sym_SEL] = ACTIONS(1912), + [sym_IMP] = ACTIONS(1912), + [sym_BOOL] = ACTIONS(1912), + [sym_auto] = ACTIONS(1912), + [anon_sym_ATautoreleasepool] = ACTIONS(1914), + [anon_sym_ATsynchronized] = ACTIONS(1914), + [anon_sym_ATtry] = ACTIONS(1914), + [anon_sym_ATthrow] = ACTIONS(1914), + [anon_sym_ATselector] = ACTIONS(1914), + [anon_sym_ATencode] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1912), + [sym_YES] = ACTIONS(1912), + [sym_NO] = ACTIONS(1912), + [anon_sym___builtin_available] = ACTIONS(1912), + [anon_sym_ATavailable] = ACTIONS(1914), + [anon_sym_va_arg] = ACTIONS(1912), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [593] = { + [sym_identifier] = ACTIONS(1912), + [aux_sym_preproc_include_token1] = ACTIONS(1914), + [aux_sym_preproc_def_token1] = ACTIONS(1914), + [aux_sym_preproc_if_token1] = ACTIONS(1912), + [aux_sym_preproc_if_token2] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1912), + [aux_sym_preproc_else_token1] = ACTIONS(1912), + [aux_sym_preproc_elif_token1] = ACTIONS(1912), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_CARET] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym___attribute] = ACTIONS(1912), + [anon_sym___attribute__] = ACTIONS(1912), + [anon_sym___declspec] = ACTIONS(1912), + [anon_sym___cdecl] = ACTIONS(1912), + [anon_sym___clrcall] = ACTIONS(1912), + [anon_sym___stdcall] = ACTIONS(1912), + [anon_sym___fastcall] = ACTIONS(1912), + [anon_sym___thiscall] = ACTIONS(1912), + [anon_sym___vectorcall] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_auto] = ACTIONS(1912), + [anon_sym_register] = ACTIONS(1912), + [anon_sym_inline] = ACTIONS(1912), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_volatile] = ACTIONS(1912), + [anon_sym_restrict] = ACTIONS(1912), + [anon_sym__Atomic] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1912), + [anon_sym_out] = ACTIONS(1912), + [anon_sym_inout] = ACTIONS(1912), + [anon_sym_bycopy] = ACTIONS(1912), + [anon_sym_byref] = ACTIONS(1912), + [anon_sym_oneway] = ACTIONS(1912), + [anon_sym__Nullable] = ACTIONS(1912), + [anon_sym__Nonnull] = ACTIONS(1912), + [anon_sym__Nullable_result] = ACTIONS(1912), + [anon_sym__Null_unspecified] = ACTIONS(1912), + [anon_sym___autoreleasing] = ACTIONS(1912), + [anon_sym___nullable] = ACTIONS(1912), + [anon_sym___nonnull] = ACTIONS(1912), + [anon_sym___strong] = ACTIONS(1912), + [anon_sym___weak] = ACTIONS(1912), + [anon_sym___bridge] = ACTIONS(1912), + [anon_sym___bridge_transfer] = ACTIONS(1912), + [anon_sym___bridge_retained] = ACTIONS(1912), + [anon_sym___unsafe_unretained] = ACTIONS(1912), + [anon_sym___block] = ACTIONS(1912), + [anon_sym___kindof] = ACTIONS(1912), + [anon_sym___unused] = ACTIONS(1912), + [anon_sym__Complex] = ACTIONS(1912), + [anon_sym___complex] = ACTIONS(1912), + [anon_sym_IBOutlet] = ACTIONS(1912), + [anon_sym_IBInspectable] = ACTIONS(1912), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1912), + [anon_sym_signed] = ACTIONS(1912), + [anon_sym_unsigned] = ACTIONS(1912), + [anon_sym_long] = ACTIONS(1912), + [anon_sym_short] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_switch] = ACTIONS(1912), + [anon_sym_case] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_do] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_goto] = ACTIONS(1912), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_sizeof] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1914), + [anon_sym_u_SQUOTE] = ACTIONS(1914), + [anon_sym_U_SQUOTE] = ACTIONS(1914), + [anon_sym_u8_SQUOTE] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_L_DQUOTE] = ACTIONS(1914), + [anon_sym_u_DQUOTE] = ACTIONS(1914), + [anon_sym_U_DQUOTE] = ACTIONS(1914), + [anon_sym_u8_DQUOTE] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_true] = ACTIONS(1912), + [sym_false] = ACTIONS(1912), + [sym_null] = ACTIONS(1912), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1914), + [anon_sym_ATimport] = ACTIONS(1914), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1912), + [anon_sym_ATcompatibility_alias] = ACTIONS(1914), + [anon_sym_ATprotocol] = ACTIONS(1914), + [anon_sym_ATclass] = ACTIONS(1914), + [anon_sym_ATinterface] = ACTIONS(1914), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1912), + [sym_method_attribute_specifier] = ACTIONS(1912), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1912), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE] = ACTIONS(1912), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_API_AVAILABLE] = ACTIONS(1912), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_API_DEPRECATED] = ACTIONS(1912), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1912), + [anon_sym___deprecated_msg] = ACTIONS(1912), + [anon_sym___deprecated_enum_msg] = ACTIONS(1912), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1912), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1912), + [anon_sym_ATimplementation] = ACTIONS(1914), + [anon_sym_NS_ENUM] = ACTIONS(1912), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1912), + [anon_sym_NS_OPTIONS] = ACTIONS(1912), + [anon_sym_typeof] = ACTIONS(1912), + [anon_sym___typeof] = ACTIONS(1912), + [anon_sym___typeof__] = ACTIONS(1912), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_nil] = ACTIONS(1912), + [sym_id] = ACTIONS(1912), + [sym_instancetype] = ACTIONS(1912), + [sym_Class] = ACTIONS(1912), + [sym_SEL] = ACTIONS(1912), + [sym_IMP] = ACTIONS(1912), + [sym_BOOL] = ACTIONS(1912), + [sym_auto] = ACTIONS(1912), + [anon_sym_ATautoreleasepool] = ACTIONS(1914), + [anon_sym_ATsynchronized] = ACTIONS(1914), + [anon_sym_ATtry] = ACTIONS(1914), + [anon_sym_ATthrow] = ACTIONS(1914), + [anon_sym_ATselector] = ACTIONS(1914), + [anon_sym_ATencode] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1912), + [sym_YES] = ACTIONS(1912), + [sym_NO] = ACTIONS(1912), + [anon_sym___builtin_available] = ACTIONS(1912), + [anon_sym_ATavailable] = ACTIONS(1914), + [anon_sym_va_arg] = ACTIONS(1912), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [594] = { + [sym_identifier] = ACTIONS(1912), + [aux_sym_preproc_include_token1] = ACTIONS(1914), + [aux_sym_preproc_def_token1] = ACTIONS(1914), + [aux_sym_preproc_if_token1] = ACTIONS(1912), + [aux_sym_preproc_if_token2] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1912), + [aux_sym_preproc_else_token1] = ACTIONS(1912), + [aux_sym_preproc_elif_token1] = ACTIONS(1912), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_CARET] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym___attribute] = ACTIONS(1912), + [anon_sym___attribute__] = ACTIONS(1912), + [anon_sym___declspec] = ACTIONS(1912), + [anon_sym___cdecl] = ACTIONS(1912), + [anon_sym___clrcall] = ACTIONS(1912), + [anon_sym___stdcall] = ACTIONS(1912), + [anon_sym___fastcall] = ACTIONS(1912), + [anon_sym___thiscall] = ACTIONS(1912), + [anon_sym___vectorcall] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_auto] = ACTIONS(1912), + [anon_sym_register] = ACTIONS(1912), + [anon_sym_inline] = ACTIONS(1912), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_volatile] = ACTIONS(1912), + [anon_sym_restrict] = ACTIONS(1912), + [anon_sym__Atomic] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1912), + [anon_sym_out] = ACTIONS(1912), + [anon_sym_inout] = ACTIONS(1912), + [anon_sym_bycopy] = ACTIONS(1912), + [anon_sym_byref] = ACTIONS(1912), + [anon_sym_oneway] = ACTIONS(1912), + [anon_sym__Nullable] = ACTIONS(1912), + [anon_sym__Nonnull] = ACTIONS(1912), + [anon_sym__Nullable_result] = ACTIONS(1912), + [anon_sym__Null_unspecified] = ACTIONS(1912), + [anon_sym___autoreleasing] = ACTIONS(1912), + [anon_sym___nullable] = ACTIONS(1912), + [anon_sym___nonnull] = ACTIONS(1912), + [anon_sym___strong] = ACTIONS(1912), + [anon_sym___weak] = ACTIONS(1912), + [anon_sym___bridge] = ACTIONS(1912), + [anon_sym___bridge_transfer] = ACTIONS(1912), + [anon_sym___bridge_retained] = ACTIONS(1912), + [anon_sym___unsafe_unretained] = ACTIONS(1912), + [anon_sym___block] = ACTIONS(1912), + [anon_sym___kindof] = ACTIONS(1912), + [anon_sym___unused] = ACTIONS(1912), + [anon_sym__Complex] = ACTIONS(1912), + [anon_sym___complex] = ACTIONS(1912), + [anon_sym_IBOutlet] = ACTIONS(1912), + [anon_sym_IBInspectable] = ACTIONS(1912), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1912), + [anon_sym_signed] = ACTIONS(1912), + [anon_sym_unsigned] = ACTIONS(1912), + [anon_sym_long] = ACTIONS(1912), + [anon_sym_short] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_switch] = ACTIONS(1912), + [anon_sym_case] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_do] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_goto] = ACTIONS(1912), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_sizeof] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1914), + [anon_sym_u_SQUOTE] = ACTIONS(1914), + [anon_sym_U_SQUOTE] = ACTIONS(1914), + [anon_sym_u8_SQUOTE] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_L_DQUOTE] = ACTIONS(1914), + [anon_sym_u_DQUOTE] = ACTIONS(1914), + [anon_sym_U_DQUOTE] = ACTIONS(1914), + [anon_sym_u8_DQUOTE] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_true] = ACTIONS(1912), + [sym_false] = ACTIONS(1912), + [sym_null] = ACTIONS(1912), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1914), + [anon_sym_ATimport] = ACTIONS(1914), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1912), + [anon_sym_ATcompatibility_alias] = ACTIONS(1914), + [anon_sym_ATprotocol] = ACTIONS(1914), + [anon_sym_ATclass] = ACTIONS(1914), + [anon_sym_ATinterface] = ACTIONS(1914), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1912), + [sym_method_attribute_specifier] = ACTIONS(1912), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1912), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE] = ACTIONS(1912), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_API_AVAILABLE] = ACTIONS(1912), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_API_DEPRECATED] = ACTIONS(1912), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1912), + [anon_sym___deprecated_msg] = ACTIONS(1912), + [anon_sym___deprecated_enum_msg] = ACTIONS(1912), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1912), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1912), + [anon_sym_ATimplementation] = ACTIONS(1914), + [anon_sym_NS_ENUM] = ACTIONS(1912), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1912), + [anon_sym_NS_OPTIONS] = ACTIONS(1912), + [anon_sym_typeof] = ACTIONS(1912), + [anon_sym___typeof] = ACTIONS(1912), + [anon_sym___typeof__] = ACTIONS(1912), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_nil] = ACTIONS(1912), + [sym_id] = ACTIONS(1912), + [sym_instancetype] = ACTIONS(1912), + [sym_Class] = ACTIONS(1912), + [sym_SEL] = ACTIONS(1912), + [sym_IMP] = ACTIONS(1912), + [sym_BOOL] = ACTIONS(1912), + [sym_auto] = ACTIONS(1912), + [anon_sym_ATautoreleasepool] = ACTIONS(1914), + [anon_sym_ATsynchronized] = ACTIONS(1914), + [anon_sym_ATtry] = ACTIONS(1914), + [anon_sym_ATthrow] = ACTIONS(1914), + [anon_sym_ATselector] = ACTIONS(1914), + [anon_sym_ATencode] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1912), + [sym_YES] = ACTIONS(1912), + [sym_NO] = ACTIONS(1912), + [anon_sym___builtin_available] = ACTIONS(1912), + [anon_sym_ATavailable] = ACTIONS(1914), + [anon_sym_va_arg] = ACTIONS(1912), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [595] = { + [sym_identifier] = ACTIONS(1912), + [aux_sym_preproc_include_token1] = ACTIONS(1914), + [aux_sym_preproc_def_token1] = ACTIONS(1914), + [aux_sym_preproc_if_token1] = ACTIONS(1912), + [aux_sym_preproc_if_token2] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1912), + [aux_sym_preproc_else_token1] = ACTIONS(1912), + [aux_sym_preproc_elif_token1] = ACTIONS(1912), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_CARET] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym___attribute] = ACTIONS(1912), + [anon_sym___attribute__] = ACTIONS(1912), + [anon_sym___declspec] = ACTIONS(1912), + [anon_sym___cdecl] = ACTIONS(1912), + [anon_sym___clrcall] = ACTIONS(1912), + [anon_sym___stdcall] = ACTIONS(1912), + [anon_sym___fastcall] = ACTIONS(1912), + [anon_sym___thiscall] = ACTIONS(1912), + [anon_sym___vectorcall] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_auto] = ACTIONS(1912), + [anon_sym_register] = ACTIONS(1912), + [anon_sym_inline] = ACTIONS(1912), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_volatile] = ACTIONS(1912), + [anon_sym_restrict] = ACTIONS(1912), + [anon_sym__Atomic] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1912), + [anon_sym_out] = ACTIONS(1912), + [anon_sym_inout] = ACTIONS(1912), + [anon_sym_bycopy] = ACTIONS(1912), + [anon_sym_byref] = ACTIONS(1912), + [anon_sym_oneway] = ACTIONS(1912), + [anon_sym__Nullable] = ACTIONS(1912), + [anon_sym__Nonnull] = ACTIONS(1912), + [anon_sym__Nullable_result] = ACTIONS(1912), + [anon_sym__Null_unspecified] = ACTIONS(1912), + [anon_sym___autoreleasing] = ACTIONS(1912), + [anon_sym___nullable] = ACTIONS(1912), + [anon_sym___nonnull] = ACTIONS(1912), + [anon_sym___strong] = ACTIONS(1912), + [anon_sym___weak] = ACTIONS(1912), + [anon_sym___bridge] = ACTIONS(1912), + [anon_sym___bridge_transfer] = ACTIONS(1912), + [anon_sym___bridge_retained] = ACTIONS(1912), + [anon_sym___unsafe_unretained] = ACTIONS(1912), + [anon_sym___block] = ACTIONS(1912), + [anon_sym___kindof] = ACTIONS(1912), + [anon_sym___unused] = ACTIONS(1912), + [anon_sym__Complex] = ACTIONS(1912), + [anon_sym___complex] = ACTIONS(1912), + [anon_sym_IBOutlet] = ACTIONS(1912), + [anon_sym_IBInspectable] = ACTIONS(1912), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1912), + [anon_sym_signed] = ACTIONS(1912), + [anon_sym_unsigned] = ACTIONS(1912), + [anon_sym_long] = ACTIONS(1912), + [anon_sym_short] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_switch] = ACTIONS(1912), + [anon_sym_case] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_do] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_goto] = ACTIONS(1912), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_sizeof] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1914), + [anon_sym_u_SQUOTE] = ACTIONS(1914), + [anon_sym_U_SQUOTE] = ACTIONS(1914), + [anon_sym_u8_SQUOTE] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_L_DQUOTE] = ACTIONS(1914), + [anon_sym_u_DQUOTE] = ACTIONS(1914), + [anon_sym_U_DQUOTE] = ACTIONS(1914), + [anon_sym_u8_DQUOTE] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_true] = ACTIONS(1912), + [sym_false] = ACTIONS(1912), + [sym_null] = ACTIONS(1912), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1914), + [anon_sym_ATimport] = ACTIONS(1914), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1912), + [anon_sym_ATcompatibility_alias] = ACTIONS(1914), + [anon_sym_ATprotocol] = ACTIONS(1914), + [anon_sym_ATclass] = ACTIONS(1914), + [anon_sym_ATinterface] = ACTIONS(1914), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1912), + [sym_method_attribute_specifier] = ACTIONS(1912), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1912), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE] = ACTIONS(1912), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_API_AVAILABLE] = ACTIONS(1912), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_API_DEPRECATED] = ACTIONS(1912), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1912), + [anon_sym___deprecated_msg] = ACTIONS(1912), + [anon_sym___deprecated_enum_msg] = ACTIONS(1912), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1912), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1912), + [anon_sym_ATimplementation] = ACTIONS(1914), + [anon_sym_NS_ENUM] = ACTIONS(1912), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1912), + [anon_sym_NS_OPTIONS] = ACTIONS(1912), + [anon_sym_typeof] = ACTIONS(1912), + [anon_sym___typeof] = ACTIONS(1912), + [anon_sym___typeof__] = ACTIONS(1912), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_nil] = ACTIONS(1912), + [sym_id] = ACTIONS(1912), + [sym_instancetype] = ACTIONS(1912), + [sym_Class] = ACTIONS(1912), + [sym_SEL] = ACTIONS(1912), + [sym_IMP] = ACTIONS(1912), + [sym_BOOL] = ACTIONS(1912), + [sym_auto] = ACTIONS(1912), + [anon_sym_ATautoreleasepool] = ACTIONS(1914), + [anon_sym_ATsynchronized] = ACTIONS(1914), + [anon_sym_ATtry] = ACTIONS(1914), + [anon_sym_ATthrow] = ACTIONS(1914), + [anon_sym_ATselector] = ACTIONS(1914), + [anon_sym_ATencode] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1912), + [sym_YES] = ACTIONS(1912), + [sym_NO] = ACTIONS(1912), + [anon_sym___builtin_available] = ACTIONS(1912), + [anon_sym_ATavailable] = ACTIONS(1914), + [anon_sym_va_arg] = ACTIONS(1912), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [596] = { + [sym_identifier] = ACTIONS(1912), + [aux_sym_preproc_include_token1] = ACTIONS(1914), + [aux_sym_preproc_def_token1] = ACTIONS(1914), + [aux_sym_preproc_if_token1] = ACTIONS(1912), + [aux_sym_preproc_if_token2] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1912), + [aux_sym_preproc_else_token1] = ACTIONS(1912), + [aux_sym_preproc_elif_token1] = ACTIONS(1912), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_CARET] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym___attribute] = ACTIONS(1912), + [anon_sym___attribute__] = ACTIONS(1912), + [anon_sym___declspec] = ACTIONS(1912), + [anon_sym___cdecl] = ACTIONS(1912), + [anon_sym___clrcall] = ACTIONS(1912), + [anon_sym___stdcall] = ACTIONS(1912), + [anon_sym___fastcall] = ACTIONS(1912), + [anon_sym___thiscall] = ACTIONS(1912), + [anon_sym___vectorcall] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_auto] = ACTIONS(1912), + [anon_sym_register] = ACTIONS(1912), + [anon_sym_inline] = ACTIONS(1912), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_volatile] = ACTIONS(1912), + [anon_sym_restrict] = ACTIONS(1912), + [anon_sym__Atomic] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1912), + [anon_sym_out] = ACTIONS(1912), + [anon_sym_inout] = ACTIONS(1912), + [anon_sym_bycopy] = ACTIONS(1912), + [anon_sym_byref] = ACTIONS(1912), + [anon_sym_oneway] = ACTIONS(1912), + [anon_sym__Nullable] = ACTIONS(1912), + [anon_sym__Nonnull] = ACTIONS(1912), + [anon_sym__Nullable_result] = ACTIONS(1912), + [anon_sym__Null_unspecified] = ACTIONS(1912), + [anon_sym___autoreleasing] = ACTIONS(1912), + [anon_sym___nullable] = ACTIONS(1912), + [anon_sym___nonnull] = ACTIONS(1912), + [anon_sym___strong] = ACTIONS(1912), + [anon_sym___weak] = ACTIONS(1912), + [anon_sym___bridge] = ACTIONS(1912), + [anon_sym___bridge_transfer] = ACTIONS(1912), + [anon_sym___bridge_retained] = ACTIONS(1912), + [anon_sym___unsafe_unretained] = ACTIONS(1912), + [anon_sym___block] = ACTIONS(1912), + [anon_sym___kindof] = ACTIONS(1912), + [anon_sym___unused] = ACTIONS(1912), + [anon_sym__Complex] = ACTIONS(1912), + [anon_sym___complex] = ACTIONS(1912), + [anon_sym_IBOutlet] = ACTIONS(1912), + [anon_sym_IBInspectable] = ACTIONS(1912), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1912), + [anon_sym_signed] = ACTIONS(1912), + [anon_sym_unsigned] = ACTIONS(1912), + [anon_sym_long] = ACTIONS(1912), + [anon_sym_short] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_switch] = ACTIONS(1912), + [anon_sym_case] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_do] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_goto] = ACTIONS(1912), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_sizeof] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1914), + [anon_sym_u_SQUOTE] = ACTIONS(1914), + [anon_sym_U_SQUOTE] = ACTIONS(1914), + [anon_sym_u8_SQUOTE] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_L_DQUOTE] = ACTIONS(1914), + [anon_sym_u_DQUOTE] = ACTIONS(1914), + [anon_sym_U_DQUOTE] = ACTIONS(1914), + [anon_sym_u8_DQUOTE] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_true] = ACTIONS(1912), + [sym_false] = ACTIONS(1912), + [sym_null] = ACTIONS(1912), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1914), + [anon_sym_ATimport] = ACTIONS(1914), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1912), + [anon_sym_ATcompatibility_alias] = ACTIONS(1914), + [anon_sym_ATprotocol] = ACTIONS(1914), + [anon_sym_ATclass] = ACTIONS(1914), + [anon_sym_ATinterface] = ACTIONS(1914), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1912), + [sym_method_attribute_specifier] = ACTIONS(1912), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1912), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE] = ACTIONS(1912), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_API_AVAILABLE] = ACTIONS(1912), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_API_DEPRECATED] = ACTIONS(1912), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1912), + [anon_sym___deprecated_msg] = ACTIONS(1912), + [anon_sym___deprecated_enum_msg] = ACTIONS(1912), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1912), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1912), + [anon_sym_ATimplementation] = ACTIONS(1914), + [anon_sym_NS_ENUM] = ACTIONS(1912), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1912), + [anon_sym_NS_OPTIONS] = ACTIONS(1912), + [anon_sym_typeof] = ACTIONS(1912), + [anon_sym___typeof] = ACTIONS(1912), + [anon_sym___typeof__] = ACTIONS(1912), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_nil] = ACTIONS(1912), + [sym_id] = ACTIONS(1912), + [sym_instancetype] = ACTIONS(1912), + [sym_Class] = ACTIONS(1912), + [sym_SEL] = ACTIONS(1912), + [sym_IMP] = ACTIONS(1912), + [sym_BOOL] = ACTIONS(1912), + [sym_auto] = ACTIONS(1912), + [anon_sym_ATautoreleasepool] = ACTIONS(1914), + [anon_sym_ATsynchronized] = ACTIONS(1914), + [anon_sym_ATtry] = ACTIONS(1914), + [anon_sym_ATthrow] = ACTIONS(1914), + [anon_sym_ATselector] = ACTIONS(1914), + [anon_sym_ATencode] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1912), + [sym_YES] = ACTIONS(1912), + [sym_NO] = ACTIONS(1912), + [anon_sym___builtin_available] = ACTIONS(1912), + [anon_sym_ATavailable] = ACTIONS(1914), + [anon_sym_va_arg] = ACTIONS(1912), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [597] = { + [sym_identifier] = ACTIONS(1916), + [aux_sym_preproc_include_token1] = ACTIONS(1918), + [aux_sym_preproc_def_token1] = ACTIONS(1918), + [aux_sym_preproc_if_token1] = ACTIONS(1916), + [aux_sym_preproc_if_token2] = ACTIONS(1916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1916), + [aux_sym_preproc_else_token1] = ACTIONS(1916), + [aux_sym_preproc_elif_token1] = ACTIONS(1916), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_TILDE] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_typedef] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1916), + [anon_sym___attribute] = ACTIONS(1916), + [anon_sym___attribute__] = ACTIONS(1916), + [anon_sym___declspec] = ACTIONS(1916), + [anon_sym___cdecl] = ACTIONS(1916), + [anon_sym___clrcall] = ACTIONS(1916), + [anon_sym___stdcall] = ACTIONS(1916), + [anon_sym___fastcall] = ACTIONS(1916), + [anon_sym___thiscall] = ACTIONS(1916), + [anon_sym___vectorcall] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_auto] = ACTIONS(1916), + [anon_sym_register] = ACTIONS(1916), + [anon_sym_inline] = ACTIONS(1916), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1916), + [anon_sym_const] = ACTIONS(1916), + [anon_sym_volatile] = ACTIONS(1916), + [anon_sym_restrict] = ACTIONS(1916), + [anon_sym__Atomic] = ACTIONS(1916), + [anon_sym_in] = ACTIONS(1916), + [anon_sym_out] = ACTIONS(1916), + [anon_sym_inout] = ACTIONS(1916), + [anon_sym_bycopy] = ACTIONS(1916), + [anon_sym_byref] = ACTIONS(1916), + [anon_sym_oneway] = ACTIONS(1916), + [anon_sym__Nullable] = ACTIONS(1916), + [anon_sym__Nonnull] = ACTIONS(1916), + [anon_sym__Nullable_result] = ACTIONS(1916), + [anon_sym__Null_unspecified] = ACTIONS(1916), + [anon_sym___autoreleasing] = ACTIONS(1916), + [anon_sym___nullable] = ACTIONS(1916), + [anon_sym___nonnull] = ACTIONS(1916), + [anon_sym___strong] = ACTIONS(1916), + [anon_sym___weak] = ACTIONS(1916), + [anon_sym___bridge] = ACTIONS(1916), + [anon_sym___bridge_transfer] = ACTIONS(1916), + [anon_sym___bridge_retained] = ACTIONS(1916), + [anon_sym___unsafe_unretained] = ACTIONS(1916), + [anon_sym___block] = ACTIONS(1916), + [anon_sym___kindof] = ACTIONS(1916), + [anon_sym___unused] = ACTIONS(1916), + [anon_sym__Complex] = ACTIONS(1916), + [anon_sym___complex] = ACTIONS(1916), + [anon_sym_IBOutlet] = ACTIONS(1916), + [anon_sym_IBInspectable] = ACTIONS(1916), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1916), + [anon_sym_signed] = ACTIONS(1916), + [anon_sym_unsigned] = ACTIONS(1916), + [anon_sym_long] = ACTIONS(1916), + [anon_sym_short] = ACTIONS(1916), + [sym_primitive_type] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1916), + [anon_sym_struct] = ACTIONS(1916), + [anon_sym_union] = ACTIONS(1916), + [anon_sym_if] = ACTIONS(1916), + [anon_sym_switch] = ACTIONS(1916), + [anon_sym_case] = ACTIONS(1916), + [anon_sym_default] = ACTIONS(1916), + [anon_sym_while] = ACTIONS(1916), + [anon_sym_do] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1916), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_break] = ACTIONS(1916), + [anon_sym_continue] = ACTIONS(1916), + [anon_sym_goto] = ACTIONS(1916), + [anon_sym_DASH_DASH] = ACTIONS(1918), + [anon_sym_PLUS_PLUS] = ACTIONS(1918), + [anon_sym_sizeof] = ACTIONS(1916), + [sym_number_literal] = ACTIONS(1918), + [anon_sym_L_SQUOTE] = ACTIONS(1918), + [anon_sym_u_SQUOTE] = ACTIONS(1918), + [anon_sym_U_SQUOTE] = ACTIONS(1918), + [anon_sym_u8_SQUOTE] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1916), + [sym_false] = ACTIONS(1916), + [sym_null] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1918), + [anon_sym_ATimport] = ACTIONS(1918), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1916), + [anon_sym_ATcompatibility_alias] = ACTIONS(1918), + [anon_sym_ATprotocol] = ACTIONS(1918), + [anon_sym_ATclass] = ACTIONS(1918), + [anon_sym_ATinterface] = ACTIONS(1918), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1916), + [sym_method_attribute_specifier] = ACTIONS(1916), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1916), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1916), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1916), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1916), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1916), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1916), + [anon_sym_NS_AVAILABLE] = ACTIONS(1916), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1916), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1916), + [anon_sym_API_AVAILABLE] = ACTIONS(1916), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1916), + [anon_sym_API_DEPRECATED] = ACTIONS(1916), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1916), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1916), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1916), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1916), + [anon_sym___deprecated_msg] = ACTIONS(1916), + [anon_sym___deprecated_enum_msg] = ACTIONS(1916), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1916), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1916), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1916), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1916), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1916), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1916), + [anon_sym_ATimplementation] = ACTIONS(1918), + [anon_sym_NS_ENUM] = ACTIONS(1916), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1916), + [anon_sym_NS_OPTIONS] = ACTIONS(1916), + [anon_sym_typeof] = ACTIONS(1916), + [anon_sym___typeof] = ACTIONS(1916), + [anon_sym___typeof__] = ACTIONS(1916), + [sym_self] = ACTIONS(1916), + [sym_super] = ACTIONS(1916), + [sym_nil] = ACTIONS(1916), + [sym_id] = ACTIONS(1916), + [sym_instancetype] = ACTIONS(1916), + [sym_Class] = ACTIONS(1916), + [sym_SEL] = ACTIONS(1916), + [sym_IMP] = ACTIONS(1916), + [sym_BOOL] = ACTIONS(1916), + [sym_auto] = ACTIONS(1916), + [anon_sym_ATautoreleasepool] = ACTIONS(1918), + [anon_sym_ATsynchronized] = ACTIONS(1918), + [anon_sym_ATtry] = ACTIONS(1918), + [anon_sym_ATthrow] = ACTIONS(1918), + [anon_sym_ATselector] = ACTIONS(1918), + [anon_sym_ATencode] = ACTIONS(1918), + [anon_sym_AT] = ACTIONS(1916), + [sym_YES] = ACTIONS(1916), + [sym_NO] = ACTIONS(1916), + [anon_sym___builtin_available] = ACTIONS(1916), + [anon_sym_ATavailable] = ACTIONS(1918), + [anon_sym_va_arg] = ACTIONS(1916), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [598] = { + [sym_identifier] = ACTIONS(1920), + [aux_sym_preproc_include_token1] = ACTIONS(1922), + [aux_sym_preproc_def_token1] = ACTIONS(1922), + [aux_sym_preproc_if_token1] = ACTIONS(1920), + [aux_sym_preproc_if_token2] = ACTIONS(1920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1920), + [aux_sym_preproc_else_token1] = ACTIONS(1920), + [aux_sym_preproc_elif_token1] = ACTIONS(1920), + [anon_sym_LPAREN2] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(1922), + [anon_sym_TILDE] = ACTIONS(1922), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(1922), + [anon_sym_CARET] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_typedef] = ACTIONS(1920), + [anon_sym_extern] = ACTIONS(1920), + [anon_sym___attribute] = ACTIONS(1920), + [anon_sym___attribute__] = ACTIONS(1920), + [anon_sym___declspec] = ACTIONS(1920), + [anon_sym___cdecl] = ACTIONS(1920), + [anon_sym___clrcall] = ACTIONS(1920), + [anon_sym___stdcall] = ACTIONS(1920), + [anon_sym___fastcall] = ACTIONS(1920), + [anon_sym___thiscall] = ACTIONS(1920), + [anon_sym___vectorcall] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_static] = ACTIONS(1920), + [anon_sym_auto] = ACTIONS(1920), + [anon_sym_register] = ACTIONS(1920), + [anon_sym_inline] = ACTIONS(1920), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1920), + [anon_sym_const] = ACTIONS(1920), + [anon_sym_volatile] = ACTIONS(1920), + [anon_sym_restrict] = ACTIONS(1920), + [anon_sym__Atomic] = ACTIONS(1920), + [anon_sym_in] = ACTIONS(1920), + [anon_sym_out] = ACTIONS(1920), + [anon_sym_inout] = ACTIONS(1920), + [anon_sym_bycopy] = ACTIONS(1920), + [anon_sym_byref] = ACTIONS(1920), + [anon_sym_oneway] = ACTIONS(1920), + [anon_sym__Nullable] = ACTIONS(1920), + [anon_sym__Nonnull] = ACTIONS(1920), + [anon_sym__Nullable_result] = ACTIONS(1920), + [anon_sym__Null_unspecified] = ACTIONS(1920), + [anon_sym___autoreleasing] = ACTIONS(1920), + [anon_sym___nullable] = ACTIONS(1920), + [anon_sym___nonnull] = ACTIONS(1920), + [anon_sym___strong] = ACTIONS(1920), + [anon_sym___weak] = ACTIONS(1920), + [anon_sym___bridge] = ACTIONS(1920), + [anon_sym___bridge_transfer] = ACTIONS(1920), + [anon_sym___bridge_retained] = ACTIONS(1920), + [anon_sym___unsafe_unretained] = ACTIONS(1920), + [anon_sym___block] = ACTIONS(1920), + [anon_sym___kindof] = ACTIONS(1920), + [anon_sym___unused] = ACTIONS(1920), + [anon_sym__Complex] = ACTIONS(1920), + [anon_sym___complex] = ACTIONS(1920), + [anon_sym_IBOutlet] = ACTIONS(1920), + [anon_sym_IBInspectable] = ACTIONS(1920), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1920), + [anon_sym_signed] = ACTIONS(1920), + [anon_sym_unsigned] = ACTIONS(1920), + [anon_sym_long] = ACTIONS(1920), + [anon_sym_short] = ACTIONS(1920), + [sym_primitive_type] = ACTIONS(1920), + [anon_sym_enum] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1920), + [anon_sym_union] = ACTIONS(1920), + [anon_sym_if] = ACTIONS(1920), + [anon_sym_switch] = ACTIONS(1920), + [anon_sym_case] = ACTIONS(1920), + [anon_sym_default] = ACTIONS(1920), + [anon_sym_while] = ACTIONS(1920), + [anon_sym_do] = ACTIONS(1920), + [anon_sym_for] = ACTIONS(1920), + [anon_sym_return] = ACTIONS(1920), + [anon_sym_break] = ACTIONS(1920), + [anon_sym_continue] = ACTIONS(1920), + [anon_sym_goto] = ACTIONS(1920), + [anon_sym_DASH_DASH] = ACTIONS(1922), + [anon_sym_PLUS_PLUS] = ACTIONS(1922), + [anon_sym_sizeof] = ACTIONS(1920), + [sym_number_literal] = ACTIONS(1922), + [anon_sym_L_SQUOTE] = ACTIONS(1922), + [anon_sym_u_SQUOTE] = ACTIONS(1922), + [anon_sym_U_SQUOTE] = ACTIONS(1922), + [anon_sym_u8_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_L_DQUOTE] = ACTIONS(1922), + [anon_sym_u_DQUOTE] = ACTIONS(1922), + [anon_sym_U_DQUOTE] = ACTIONS(1922), + [anon_sym_u8_DQUOTE] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1922), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [sym_null] = ACTIONS(1920), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1922), + [anon_sym_ATimport] = ACTIONS(1922), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1920), + [anon_sym_ATcompatibility_alias] = ACTIONS(1922), + [anon_sym_ATprotocol] = ACTIONS(1922), + [anon_sym_ATclass] = ACTIONS(1922), + [anon_sym_ATinterface] = ACTIONS(1922), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1920), + [sym_method_attribute_specifier] = ACTIONS(1920), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1920), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1920), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1920), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1920), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1920), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1920), + [anon_sym_NS_AVAILABLE] = ACTIONS(1920), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1920), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1920), + [anon_sym_API_AVAILABLE] = ACTIONS(1920), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1920), + [anon_sym_API_DEPRECATED] = ACTIONS(1920), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1920), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1920), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1920), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1920), + [anon_sym___deprecated_msg] = ACTIONS(1920), + [anon_sym___deprecated_enum_msg] = ACTIONS(1920), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1920), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1920), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1920), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1920), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1920), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1920), + [anon_sym_ATimplementation] = ACTIONS(1922), + [anon_sym_NS_ENUM] = ACTIONS(1920), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1920), + [anon_sym_NS_OPTIONS] = ACTIONS(1920), + [anon_sym_typeof] = ACTIONS(1920), + [anon_sym___typeof] = ACTIONS(1920), + [anon_sym___typeof__] = ACTIONS(1920), + [sym_self] = ACTIONS(1920), + [sym_super] = ACTIONS(1920), + [sym_nil] = ACTIONS(1920), + [sym_id] = ACTIONS(1920), + [sym_instancetype] = ACTIONS(1920), + [sym_Class] = ACTIONS(1920), + [sym_SEL] = ACTIONS(1920), + [sym_IMP] = ACTIONS(1920), + [sym_BOOL] = ACTIONS(1920), + [sym_auto] = ACTIONS(1920), + [anon_sym_ATautoreleasepool] = ACTIONS(1922), + [anon_sym_ATsynchronized] = ACTIONS(1922), + [anon_sym_ATtry] = ACTIONS(1922), + [anon_sym_ATthrow] = ACTIONS(1922), + [anon_sym_ATselector] = ACTIONS(1922), + [anon_sym_ATencode] = ACTIONS(1922), + [anon_sym_AT] = ACTIONS(1920), + [sym_YES] = ACTIONS(1920), + [sym_NO] = ACTIONS(1920), + [anon_sym___builtin_available] = ACTIONS(1920), + [anon_sym_ATavailable] = ACTIONS(1922), + [anon_sym_va_arg] = ACTIONS(1920), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [599] = { + [sym_identifier] = ACTIONS(1924), + [aux_sym_preproc_include_token1] = ACTIONS(1926), + [aux_sym_preproc_def_token1] = ACTIONS(1926), + [aux_sym_preproc_if_token1] = ACTIONS(1924), + [aux_sym_preproc_if_token2] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [aux_sym_preproc_else_token1] = ACTIONS(1924), + [aux_sym_preproc_elif_token1] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_CARET] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym___cdecl] = ACTIONS(1924), + [anon_sym___clrcall] = ACTIONS(1924), + [anon_sym___stdcall] = ACTIONS(1924), + [anon_sym___fastcall] = ACTIONS(1924), + [anon_sym___thiscall] = ACTIONS(1924), + [anon_sym___vectorcall] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_auto] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(1924), + [anon_sym_out] = ACTIONS(1924), + [anon_sym_inout] = ACTIONS(1924), + [anon_sym_bycopy] = ACTIONS(1924), + [anon_sym_byref] = ACTIONS(1924), + [anon_sym_oneway] = ACTIONS(1924), + [anon_sym__Nullable] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym__Nullable_result] = ACTIONS(1924), + [anon_sym__Null_unspecified] = ACTIONS(1924), + [anon_sym___autoreleasing] = ACTIONS(1924), + [anon_sym___nullable] = ACTIONS(1924), + [anon_sym___nonnull] = ACTIONS(1924), + [anon_sym___strong] = ACTIONS(1924), + [anon_sym___weak] = ACTIONS(1924), + [anon_sym___bridge] = ACTIONS(1924), + [anon_sym___bridge_transfer] = ACTIONS(1924), + [anon_sym___bridge_retained] = ACTIONS(1924), + [anon_sym___unsafe_unretained] = ACTIONS(1924), + [anon_sym___block] = ACTIONS(1924), + [anon_sym___kindof] = ACTIONS(1924), + [anon_sym___unused] = ACTIONS(1924), + [anon_sym__Complex] = ACTIONS(1924), + [anon_sym___complex] = ACTIONS(1924), + [anon_sym_IBOutlet] = ACTIONS(1924), + [anon_sym_IBInspectable] = ACTIONS(1924), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1924), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_switch] = ACTIONS(1924), + [anon_sym_case] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_do] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1924), + [sym_number_literal] = ACTIONS(1926), + [anon_sym_L_SQUOTE] = ACTIONS(1926), + [anon_sym_u_SQUOTE] = ACTIONS(1926), + [anon_sym_U_SQUOTE] = ACTIONS(1926), + [anon_sym_u8_SQUOTE] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_L_DQUOTE] = ACTIONS(1926), + [anon_sym_u_DQUOTE] = ACTIONS(1926), + [anon_sym_U_DQUOTE] = ACTIONS(1926), + [anon_sym_u8_DQUOTE] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [sym_true] = ACTIONS(1924), + [sym_false] = ACTIONS(1924), + [sym_null] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1926), + [anon_sym_ATimport] = ACTIONS(1926), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1924), + [anon_sym_ATcompatibility_alias] = ACTIONS(1926), + [anon_sym_ATprotocol] = ACTIONS(1926), + [anon_sym_ATclass] = ACTIONS(1926), + [anon_sym_ATinterface] = ACTIONS(1926), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1924), + [sym_method_attribute_specifier] = ACTIONS(1924), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1924), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE] = ACTIONS(1924), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_API_AVAILABLE] = ACTIONS(1924), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_API_DEPRECATED] = ACTIONS(1924), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1924), + [anon_sym___deprecated_msg] = ACTIONS(1924), + [anon_sym___deprecated_enum_msg] = ACTIONS(1924), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1924), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1924), + [anon_sym_ATimplementation] = ACTIONS(1926), + [anon_sym_NS_ENUM] = ACTIONS(1924), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1924), + [anon_sym_NS_OPTIONS] = ACTIONS(1924), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym___typeof] = ACTIONS(1924), + [anon_sym___typeof__] = ACTIONS(1924), + [sym_self] = ACTIONS(1924), + [sym_super] = ACTIONS(1924), + [sym_nil] = ACTIONS(1924), + [sym_id] = ACTIONS(1924), + [sym_instancetype] = ACTIONS(1924), + [sym_Class] = ACTIONS(1924), + [sym_SEL] = ACTIONS(1924), + [sym_IMP] = ACTIONS(1924), + [sym_BOOL] = ACTIONS(1924), + [sym_auto] = ACTIONS(1924), + [anon_sym_ATautoreleasepool] = ACTIONS(1926), + [anon_sym_ATsynchronized] = ACTIONS(1926), + [anon_sym_ATtry] = ACTIONS(1926), + [anon_sym_ATthrow] = ACTIONS(1926), + [anon_sym_ATselector] = ACTIONS(1926), + [anon_sym_ATencode] = ACTIONS(1926), + [anon_sym_AT] = ACTIONS(1924), + [sym_YES] = ACTIONS(1924), + [sym_NO] = ACTIONS(1924), + [anon_sym___builtin_available] = ACTIONS(1924), + [anon_sym_ATavailable] = ACTIONS(1926), + [anon_sym_va_arg] = ACTIONS(1924), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [600] = { + [sym_identifier] = ACTIONS(1924), + [aux_sym_preproc_include_token1] = ACTIONS(1926), + [aux_sym_preproc_def_token1] = ACTIONS(1926), + [aux_sym_preproc_if_token1] = ACTIONS(1924), + [aux_sym_preproc_if_token2] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [aux_sym_preproc_else_token1] = ACTIONS(1924), + [aux_sym_preproc_elif_token1] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_CARET] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym___cdecl] = ACTIONS(1924), + [anon_sym___clrcall] = ACTIONS(1924), + [anon_sym___stdcall] = ACTIONS(1924), + [anon_sym___fastcall] = ACTIONS(1924), + [anon_sym___thiscall] = ACTIONS(1924), + [anon_sym___vectorcall] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_auto] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(1924), + [anon_sym_out] = ACTIONS(1924), + [anon_sym_inout] = ACTIONS(1924), + [anon_sym_bycopy] = ACTIONS(1924), + [anon_sym_byref] = ACTIONS(1924), + [anon_sym_oneway] = ACTIONS(1924), + [anon_sym__Nullable] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym__Nullable_result] = ACTIONS(1924), + [anon_sym__Null_unspecified] = ACTIONS(1924), + [anon_sym___autoreleasing] = ACTIONS(1924), + [anon_sym___nullable] = ACTIONS(1924), + [anon_sym___nonnull] = ACTIONS(1924), + [anon_sym___strong] = ACTIONS(1924), + [anon_sym___weak] = ACTIONS(1924), + [anon_sym___bridge] = ACTIONS(1924), + [anon_sym___bridge_transfer] = ACTIONS(1924), + [anon_sym___bridge_retained] = ACTIONS(1924), + [anon_sym___unsafe_unretained] = ACTIONS(1924), + [anon_sym___block] = ACTIONS(1924), + [anon_sym___kindof] = ACTIONS(1924), + [anon_sym___unused] = ACTIONS(1924), + [anon_sym__Complex] = ACTIONS(1924), + [anon_sym___complex] = ACTIONS(1924), + [anon_sym_IBOutlet] = ACTIONS(1924), + [anon_sym_IBInspectable] = ACTIONS(1924), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1924), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_switch] = ACTIONS(1924), + [anon_sym_case] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_do] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1924), + [sym_number_literal] = ACTIONS(1926), + [anon_sym_L_SQUOTE] = ACTIONS(1926), + [anon_sym_u_SQUOTE] = ACTIONS(1926), + [anon_sym_U_SQUOTE] = ACTIONS(1926), + [anon_sym_u8_SQUOTE] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_L_DQUOTE] = ACTIONS(1926), + [anon_sym_u_DQUOTE] = ACTIONS(1926), + [anon_sym_U_DQUOTE] = ACTIONS(1926), + [anon_sym_u8_DQUOTE] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [sym_true] = ACTIONS(1924), + [sym_false] = ACTIONS(1924), + [sym_null] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1926), + [anon_sym_ATimport] = ACTIONS(1926), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1924), + [anon_sym_ATcompatibility_alias] = ACTIONS(1926), + [anon_sym_ATprotocol] = ACTIONS(1926), + [anon_sym_ATclass] = ACTIONS(1926), + [anon_sym_ATinterface] = ACTIONS(1926), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1924), + [sym_method_attribute_specifier] = ACTIONS(1924), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1924), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE] = ACTIONS(1924), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_API_AVAILABLE] = ACTIONS(1924), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_API_DEPRECATED] = ACTIONS(1924), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1924), + [anon_sym___deprecated_msg] = ACTIONS(1924), + [anon_sym___deprecated_enum_msg] = ACTIONS(1924), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1924), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1924), + [anon_sym_ATimplementation] = ACTIONS(1926), + [anon_sym_NS_ENUM] = ACTIONS(1924), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1924), + [anon_sym_NS_OPTIONS] = ACTIONS(1924), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym___typeof] = ACTIONS(1924), + [anon_sym___typeof__] = ACTIONS(1924), + [sym_self] = ACTIONS(1924), + [sym_super] = ACTIONS(1924), + [sym_nil] = ACTIONS(1924), + [sym_id] = ACTIONS(1924), + [sym_instancetype] = ACTIONS(1924), + [sym_Class] = ACTIONS(1924), + [sym_SEL] = ACTIONS(1924), + [sym_IMP] = ACTIONS(1924), + [sym_BOOL] = ACTIONS(1924), + [sym_auto] = ACTIONS(1924), + [anon_sym_ATautoreleasepool] = ACTIONS(1926), + [anon_sym_ATsynchronized] = ACTIONS(1926), + [anon_sym_ATtry] = ACTIONS(1926), + [anon_sym_ATthrow] = ACTIONS(1926), + [anon_sym_ATselector] = ACTIONS(1926), + [anon_sym_ATencode] = ACTIONS(1926), + [anon_sym_AT] = ACTIONS(1924), + [sym_YES] = ACTIONS(1924), + [sym_NO] = ACTIONS(1924), + [anon_sym___builtin_available] = ACTIONS(1924), + [anon_sym_ATavailable] = ACTIONS(1926), + [anon_sym_va_arg] = ACTIONS(1924), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [601] = { + [sym_identifier] = ACTIONS(1924), + [aux_sym_preproc_include_token1] = ACTIONS(1926), + [aux_sym_preproc_def_token1] = ACTIONS(1926), + [aux_sym_preproc_if_token1] = ACTIONS(1924), + [aux_sym_preproc_if_token2] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [aux_sym_preproc_else_token1] = ACTIONS(1924), + [aux_sym_preproc_elif_token1] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_CARET] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym___cdecl] = ACTIONS(1924), + [anon_sym___clrcall] = ACTIONS(1924), + [anon_sym___stdcall] = ACTIONS(1924), + [anon_sym___fastcall] = ACTIONS(1924), + [anon_sym___thiscall] = ACTIONS(1924), + [anon_sym___vectorcall] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_auto] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(1924), + [anon_sym_out] = ACTIONS(1924), + [anon_sym_inout] = ACTIONS(1924), + [anon_sym_bycopy] = ACTIONS(1924), + [anon_sym_byref] = ACTIONS(1924), + [anon_sym_oneway] = ACTIONS(1924), + [anon_sym__Nullable] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym__Nullable_result] = ACTIONS(1924), + [anon_sym__Null_unspecified] = ACTIONS(1924), + [anon_sym___autoreleasing] = ACTIONS(1924), + [anon_sym___nullable] = ACTIONS(1924), + [anon_sym___nonnull] = ACTIONS(1924), + [anon_sym___strong] = ACTIONS(1924), + [anon_sym___weak] = ACTIONS(1924), + [anon_sym___bridge] = ACTIONS(1924), + [anon_sym___bridge_transfer] = ACTIONS(1924), + [anon_sym___bridge_retained] = ACTIONS(1924), + [anon_sym___unsafe_unretained] = ACTIONS(1924), + [anon_sym___block] = ACTIONS(1924), + [anon_sym___kindof] = ACTIONS(1924), + [anon_sym___unused] = ACTIONS(1924), + [anon_sym__Complex] = ACTIONS(1924), + [anon_sym___complex] = ACTIONS(1924), + [anon_sym_IBOutlet] = ACTIONS(1924), + [anon_sym_IBInspectable] = ACTIONS(1924), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1924), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_switch] = ACTIONS(1924), + [anon_sym_case] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_do] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1924), + [sym_number_literal] = ACTIONS(1926), + [anon_sym_L_SQUOTE] = ACTIONS(1926), + [anon_sym_u_SQUOTE] = ACTIONS(1926), + [anon_sym_U_SQUOTE] = ACTIONS(1926), + [anon_sym_u8_SQUOTE] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_L_DQUOTE] = ACTIONS(1926), + [anon_sym_u_DQUOTE] = ACTIONS(1926), + [anon_sym_U_DQUOTE] = ACTIONS(1926), + [anon_sym_u8_DQUOTE] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [sym_true] = ACTIONS(1924), + [sym_false] = ACTIONS(1924), + [sym_null] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1926), + [anon_sym_ATimport] = ACTIONS(1926), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1924), + [anon_sym_ATcompatibility_alias] = ACTIONS(1926), + [anon_sym_ATprotocol] = ACTIONS(1926), + [anon_sym_ATclass] = ACTIONS(1926), + [anon_sym_ATinterface] = ACTIONS(1926), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1924), + [sym_method_attribute_specifier] = ACTIONS(1924), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1924), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE] = ACTIONS(1924), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_API_AVAILABLE] = ACTIONS(1924), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_API_DEPRECATED] = ACTIONS(1924), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1924), + [anon_sym___deprecated_msg] = ACTIONS(1924), + [anon_sym___deprecated_enum_msg] = ACTIONS(1924), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1924), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1924), + [anon_sym_ATimplementation] = ACTIONS(1926), + [anon_sym_NS_ENUM] = ACTIONS(1924), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1924), + [anon_sym_NS_OPTIONS] = ACTIONS(1924), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym___typeof] = ACTIONS(1924), + [anon_sym___typeof__] = ACTIONS(1924), + [sym_self] = ACTIONS(1924), + [sym_super] = ACTIONS(1924), + [sym_nil] = ACTIONS(1924), + [sym_id] = ACTIONS(1924), + [sym_instancetype] = ACTIONS(1924), + [sym_Class] = ACTIONS(1924), + [sym_SEL] = ACTIONS(1924), + [sym_IMP] = ACTIONS(1924), + [sym_BOOL] = ACTIONS(1924), + [sym_auto] = ACTIONS(1924), + [anon_sym_ATautoreleasepool] = ACTIONS(1926), + [anon_sym_ATsynchronized] = ACTIONS(1926), + [anon_sym_ATtry] = ACTIONS(1926), + [anon_sym_ATthrow] = ACTIONS(1926), + [anon_sym_ATselector] = ACTIONS(1926), + [anon_sym_ATencode] = ACTIONS(1926), + [anon_sym_AT] = ACTIONS(1924), + [sym_YES] = ACTIONS(1924), + [sym_NO] = ACTIONS(1924), + [anon_sym___builtin_available] = ACTIONS(1924), + [anon_sym_ATavailable] = ACTIONS(1926), + [anon_sym_va_arg] = ACTIONS(1924), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [602] = { + [sym_identifier] = ACTIONS(1924), + [aux_sym_preproc_include_token1] = ACTIONS(1926), + [aux_sym_preproc_def_token1] = ACTIONS(1926), + [aux_sym_preproc_if_token1] = ACTIONS(1924), + [aux_sym_preproc_if_token2] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [aux_sym_preproc_else_token1] = ACTIONS(1924), + [aux_sym_preproc_elif_token1] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_CARET] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym___cdecl] = ACTIONS(1924), + [anon_sym___clrcall] = ACTIONS(1924), + [anon_sym___stdcall] = ACTIONS(1924), + [anon_sym___fastcall] = ACTIONS(1924), + [anon_sym___thiscall] = ACTIONS(1924), + [anon_sym___vectorcall] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_auto] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(1924), + [anon_sym_out] = ACTIONS(1924), + [anon_sym_inout] = ACTIONS(1924), + [anon_sym_bycopy] = ACTIONS(1924), + [anon_sym_byref] = ACTIONS(1924), + [anon_sym_oneway] = ACTIONS(1924), + [anon_sym__Nullable] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym__Nullable_result] = ACTIONS(1924), + [anon_sym__Null_unspecified] = ACTIONS(1924), + [anon_sym___autoreleasing] = ACTIONS(1924), + [anon_sym___nullable] = ACTIONS(1924), + [anon_sym___nonnull] = ACTIONS(1924), + [anon_sym___strong] = ACTIONS(1924), + [anon_sym___weak] = ACTIONS(1924), + [anon_sym___bridge] = ACTIONS(1924), + [anon_sym___bridge_transfer] = ACTIONS(1924), + [anon_sym___bridge_retained] = ACTIONS(1924), + [anon_sym___unsafe_unretained] = ACTIONS(1924), + [anon_sym___block] = ACTIONS(1924), + [anon_sym___kindof] = ACTIONS(1924), + [anon_sym___unused] = ACTIONS(1924), + [anon_sym__Complex] = ACTIONS(1924), + [anon_sym___complex] = ACTIONS(1924), + [anon_sym_IBOutlet] = ACTIONS(1924), + [anon_sym_IBInspectable] = ACTIONS(1924), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1924), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_switch] = ACTIONS(1924), + [anon_sym_case] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_do] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1924), + [sym_number_literal] = ACTIONS(1926), + [anon_sym_L_SQUOTE] = ACTIONS(1926), + [anon_sym_u_SQUOTE] = ACTIONS(1926), + [anon_sym_U_SQUOTE] = ACTIONS(1926), + [anon_sym_u8_SQUOTE] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_L_DQUOTE] = ACTIONS(1926), + [anon_sym_u_DQUOTE] = ACTIONS(1926), + [anon_sym_U_DQUOTE] = ACTIONS(1926), + [anon_sym_u8_DQUOTE] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [sym_true] = ACTIONS(1924), + [sym_false] = ACTIONS(1924), + [sym_null] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1926), + [anon_sym_ATimport] = ACTIONS(1926), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1924), + [anon_sym_ATcompatibility_alias] = ACTIONS(1926), + [anon_sym_ATprotocol] = ACTIONS(1926), + [anon_sym_ATclass] = ACTIONS(1926), + [anon_sym_ATinterface] = ACTIONS(1926), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1924), + [sym_method_attribute_specifier] = ACTIONS(1924), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1924), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE] = ACTIONS(1924), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_API_AVAILABLE] = ACTIONS(1924), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_API_DEPRECATED] = ACTIONS(1924), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1924), + [anon_sym___deprecated_msg] = ACTIONS(1924), + [anon_sym___deprecated_enum_msg] = ACTIONS(1924), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1924), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1924), + [anon_sym_ATimplementation] = ACTIONS(1926), + [anon_sym_NS_ENUM] = ACTIONS(1924), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1924), + [anon_sym_NS_OPTIONS] = ACTIONS(1924), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym___typeof] = ACTIONS(1924), + [anon_sym___typeof__] = ACTIONS(1924), + [sym_self] = ACTIONS(1924), + [sym_super] = ACTIONS(1924), + [sym_nil] = ACTIONS(1924), + [sym_id] = ACTIONS(1924), + [sym_instancetype] = ACTIONS(1924), + [sym_Class] = ACTIONS(1924), + [sym_SEL] = ACTIONS(1924), + [sym_IMP] = ACTIONS(1924), + [sym_BOOL] = ACTIONS(1924), + [sym_auto] = ACTIONS(1924), + [anon_sym_ATautoreleasepool] = ACTIONS(1926), + [anon_sym_ATsynchronized] = ACTIONS(1926), + [anon_sym_ATtry] = ACTIONS(1926), + [anon_sym_ATthrow] = ACTIONS(1926), + [anon_sym_ATselector] = ACTIONS(1926), + [anon_sym_ATencode] = ACTIONS(1926), + [anon_sym_AT] = ACTIONS(1924), + [sym_YES] = ACTIONS(1924), + [sym_NO] = ACTIONS(1924), + [anon_sym___builtin_available] = ACTIONS(1924), + [anon_sym_ATavailable] = ACTIONS(1926), + [anon_sym_va_arg] = ACTIONS(1924), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [603] = { + [sym_identifier] = ACTIONS(1928), + [aux_sym_preproc_include_token1] = ACTIONS(1930), + [aux_sym_preproc_def_token1] = ACTIONS(1930), + [aux_sym_preproc_if_token1] = ACTIONS(1928), + [aux_sym_preproc_if_token2] = ACTIONS(1928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1928), + [aux_sym_preproc_else_token1] = ACTIONS(1928), + [aux_sym_preproc_elif_token1] = ACTIONS(1928), + [anon_sym_LPAREN2] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1930), + [anon_sym_TILDE] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_STAR] = ACTIONS(1930), + [anon_sym_CARET] = ACTIONS(1930), + [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_typedef] = ACTIONS(1928), + [anon_sym_extern] = ACTIONS(1928), + [anon_sym___attribute] = ACTIONS(1928), + [anon_sym___attribute__] = ACTIONS(1928), + [anon_sym___declspec] = ACTIONS(1928), + [anon_sym___cdecl] = ACTIONS(1928), + [anon_sym___clrcall] = ACTIONS(1928), + [anon_sym___stdcall] = ACTIONS(1928), + [anon_sym___fastcall] = ACTIONS(1928), + [anon_sym___thiscall] = ACTIONS(1928), + [anon_sym___vectorcall] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LBRACK] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1928), + [anon_sym_auto] = ACTIONS(1928), + [anon_sym_register] = ACTIONS(1928), + [anon_sym_inline] = ACTIONS(1928), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1928), + [anon_sym_const] = ACTIONS(1928), + [anon_sym_volatile] = ACTIONS(1928), + [anon_sym_restrict] = ACTIONS(1928), + [anon_sym__Atomic] = ACTIONS(1928), + [anon_sym_in] = ACTIONS(1928), + [anon_sym_out] = ACTIONS(1928), + [anon_sym_inout] = ACTIONS(1928), + [anon_sym_bycopy] = ACTIONS(1928), + [anon_sym_byref] = ACTIONS(1928), + [anon_sym_oneway] = ACTIONS(1928), + [anon_sym__Nullable] = ACTIONS(1928), + [anon_sym__Nonnull] = ACTIONS(1928), + [anon_sym__Nullable_result] = ACTIONS(1928), + [anon_sym__Null_unspecified] = ACTIONS(1928), + [anon_sym___autoreleasing] = ACTIONS(1928), + [anon_sym___nullable] = ACTIONS(1928), + [anon_sym___nonnull] = ACTIONS(1928), + [anon_sym___strong] = ACTIONS(1928), + [anon_sym___weak] = ACTIONS(1928), + [anon_sym___bridge] = ACTIONS(1928), + [anon_sym___bridge_transfer] = ACTIONS(1928), + [anon_sym___bridge_retained] = ACTIONS(1928), + [anon_sym___unsafe_unretained] = ACTIONS(1928), + [anon_sym___block] = ACTIONS(1928), + [anon_sym___kindof] = ACTIONS(1928), + [anon_sym___unused] = ACTIONS(1928), + [anon_sym__Complex] = ACTIONS(1928), + [anon_sym___complex] = ACTIONS(1928), + [anon_sym_IBOutlet] = ACTIONS(1928), + [anon_sym_IBInspectable] = ACTIONS(1928), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1928), + [anon_sym_signed] = ACTIONS(1928), + [anon_sym_unsigned] = ACTIONS(1928), + [anon_sym_long] = ACTIONS(1928), + [anon_sym_short] = ACTIONS(1928), + [sym_primitive_type] = ACTIONS(1928), + [anon_sym_enum] = ACTIONS(1928), + [anon_sym_struct] = ACTIONS(1928), + [anon_sym_union] = ACTIONS(1928), + [anon_sym_if] = ACTIONS(1928), + [anon_sym_switch] = ACTIONS(1928), + [anon_sym_case] = ACTIONS(1928), + [anon_sym_default] = ACTIONS(1928), + [anon_sym_while] = ACTIONS(1928), + [anon_sym_do] = ACTIONS(1928), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(1928), + [anon_sym_break] = ACTIONS(1928), + [anon_sym_continue] = ACTIONS(1928), + [anon_sym_goto] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1928), + [sym_number_literal] = ACTIONS(1930), + [anon_sym_L_SQUOTE] = ACTIONS(1930), + [anon_sym_u_SQUOTE] = ACTIONS(1930), + [anon_sym_U_SQUOTE] = ACTIONS(1930), + [anon_sym_u8_SQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1930), + [anon_sym_L_DQUOTE] = ACTIONS(1930), + [anon_sym_u_DQUOTE] = ACTIONS(1930), + [anon_sym_U_DQUOTE] = ACTIONS(1930), + [anon_sym_u8_DQUOTE] = ACTIONS(1930), + [anon_sym_DQUOTE] = ACTIONS(1930), + [sym_true] = ACTIONS(1928), + [sym_false] = ACTIONS(1928), + [sym_null] = ACTIONS(1928), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1930), + [anon_sym_ATimport] = ACTIONS(1930), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1928), + [anon_sym_ATcompatibility_alias] = ACTIONS(1930), + [anon_sym_ATprotocol] = ACTIONS(1930), + [anon_sym_ATclass] = ACTIONS(1930), + [anon_sym_ATinterface] = ACTIONS(1930), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1928), + [sym_method_attribute_specifier] = ACTIONS(1928), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1928), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1928), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1928), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1928), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1928), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1928), + [anon_sym_NS_AVAILABLE] = ACTIONS(1928), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1928), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1928), + [anon_sym_API_AVAILABLE] = ACTIONS(1928), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1928), + [anon_sym_API_DEPRECATED] = ACTIONS(1928), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1928), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1928), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1928), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1928), + [anon_sym___deprecated_msg] = ACTIONS(1928), + [anon_sym___deprecated_enum_msg] = ACTIONS(1928), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1928), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1928), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1928), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1928), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1928), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1928), + [anon_sym_ATimplementation] = ACTIONS(1930), + [anon_sym_NS_ENUM] = ACTIONS(1928), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1928), + [anon_sym_NS_OPTIONS] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(1928), + [anon_sym___typeof] = ACTIONS(1928), + [anon_sym___typeof__] = ACTIONS(1928), + [sym_self] = ACTIONS(1928), + [sym_super] = ACTIONS(1928), + [sym_nil] = ACTIONS(1928), + [sym_id] = ACTIONS(1928), + [sym_instancetype] = ACTIONS(1928), + [sym_Class] = ACTIONS(1928), + [sym_SEL] = ACTIONS(1928), + [sym_IMP] = ACTIONS(1928), + [sym_BOOL] = ACTIONS(1928), + [sym_auto] = ACTIONS(1928), + [anon_sym_ATautoreleasepool] = ACTIONS(1930), + [anon_sym_ATsynchronized] = ACTIONS(1930), + [anon_sym_ATtry] = ACTIONS(1930), + [anon_sym_ATthrow] = ACTIONS(1930), + [anon_sym_ATselector] = ACTIONS(1930), + [anon_sym_ATencode] = ACTIONS(1930), + [anon_sym_AT] = ACTIONS(1928), + [sym_YES] = ACTIONS(1928), + [sym_NO] = ACTIONS(1928), + [anon_sym___builtin_available] = ACTIONS(1928), + [anon_sym_ATavailable] = ACTIONS(1930), + [anon_sym_va_arg] = ACTIONS(1928), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [604] = { + [sym_identifier] = ACTIONS(1932), + [aux_sym_preproc_include_token1] = ACTIONS(1934), + [aux_sym_preproc_def_token1] = ACTIONS(1934), + [aux_sym_preproc_if_token1] = ACTIONS(1932), + [aux_sym_preproc_if_token2] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1932), + [aux_sym_preproc_else_token1] = ACTIONS(1932), + [aux_sym_preproc_elif_token1] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_CARET] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym___attribute] = ACTIONS(1932), + [anon_sym___attribute__] = ACTIONS(1932), + [anon_sym___declspec] = ACTIONS(1932), + [anon_sym___cdecl] = ACTIONS(1932), + [anon_sym___clrcall] = ACTIONS(1932), + [anon_sym___stdcall] = ACTIONS(1932), + [anon_sym___fastcall] = ACTIONS(1932), + [anon_sym___thiscall] = ACTIONS(1932), + [anon_sym___vectorcall] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_auto] = ACTIONS(1932), + [anon_sym_register] = ACTIONS(1932), + [anon_sym_inline] = ACTIONS(1932), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym_in] = ACTIONS(1932), + [anon_sym_out] = ACTIONS(1932), + [anon_sym_inout] = ACTIONS(1932), + [anon_sym_bycopy] = ACTIONS(1932), + [anon_sym_byref] = ACTIONS(1932), + [anon_sym_oneway] = ACTIONS(1932), + [anon_sym__Nullable] = ACTIONS(1932), + [anon_sym__Nonnull] = ACTIONS(1932), + [anon_sym__Nullable_result] = ACTIONS(1932), + [anon_sym__Null_unspecified] = ACTIONS(1932), + [anon_sym___autoreleasing] = ACTIONS(1932), + [anon_sym___nullable] = ACTIONS(1932), + [anon_sym___nonnull] = ACTIONS(1932), + [anon_sym___strong] = ACTIONS(1932), + [anon_sym___weak] = ACTIONS(1932), + [anon_sym___bridge] = ACTIONS(1932), + [anon_sym___bridge_transfer] = ACTIONS(1932), + [anon_sym___bridge_retained] = ACTIONS(1932), + [anon_sym___unsafe_unretained] = ACTIONS(1932), + [anon_sym___block] = ACTIONS(1932), + [anon_sym___kindof] = ACTIONS(1932), + [anon_sym___unused] = ACTIONS(1932), + [anon_sym__Complex] = ACTIONS(1932), + [anon_sym___complex] = ACTIONS(1932), + [anon_sym_IBOutlet] = ACTIONS(1932), + [anon_sym_IBInspectable] = ACTIONS(1932), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1932), + [anon_sym_signed] = ACTIONS(1932), + [anon_sym_unsigned] = ACTIONS(1932), + [anon_sym_long] = ACTIONS(1932), + [anon_sym_short] = ACTIONS(1932), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_goto] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [sym_null] = ACTIONS(1932), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1934), + [anon_sym_ATimport] = ACTIONS(1934), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1932), + [anon_sym_ATcompatibility_alias] = ACTIONS(1934), + [anon_sym_ATprotocol] = ACTIONS(1934), + [anon_sym_ATclass] = ACTIONS(1934), + [anon_sym_ATinterface] = ACTIONS(1934), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1932), + [sym_method_attribute_specifier] = ACTIONS(1932), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1932), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE] = ACTIONS(1932), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_API_AVAILABLE] = ACTIONS(1932), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_API_DEPRECATED] = ACTIONS(1932), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1932), + [anon_sym___deprecated_msg] = ACTIONS(1932), + [anon_sym___deprecated_enum_msg] = ACTIONS(1932), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1932), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1932), + [anon_sym_ATimplementation] = ACTIONS(1934), + [anon_sym_NS_ENUM] = ACTIONS(1932), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1932), + [anon_sym_NS_OPTIONS] = ACTIONS(1932), + [anon_sym_typeof] = ACTIONS(1932), + [anon_sym___typeof] = ACTIONS(1932), + [anon_sym___typeof__] = ACTIONS(1932), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_nil] = ACTIONS(1932), + [sym_id] = ACTIONS(1932), + [sym_instancetype] = ACTIONS(1932), + [sym_Class] = ACTIONS(1932), + [sym_SEL] = ACTIONS(1932), + [sym_IMP] = ACTIONS(1932), + [sym_BOOL] = ACTIONS(1932), + [sym_auto] = ACTIONS(1932), + [anon_sym_ATautoreleasepool] = ACTIONS(1934), + [anon_sym_ATsynchronized] = ACTIONS(1934), + [anon_sym_ATtry] = ACTIONS(1934), + [anon_sym_ATthrow] = ACTIONS(1934), + [anon_sym_ATselector] = ACTIONS(1934), + [anon_sym_ATencode] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1932), + [sym_YES] = ACTIONS(1932), + [sym_NO] = ACTIONS(1932), + [anon_sym___builtin_available] = ACTIONS(1932), + [anon_sym_ATavailable] = ACTIONS(1934), + [anon_sym_va_arg] = ACTIONS(1932), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [605] = { + [sym_identifier] = ACTIONS(1932), + [aux_sym_preproc_include_token1] = ACTIONS(1934), + [aux_sym_preproc_def_token1] = ACTIONS(1934), + [aux_sym_preproc_if_token1] = ACTIONS(1932), + [aux_sym_preproc_if_token2] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1932), + [aux_sym_preproc_else_token1] = ACTIONS(1932), + [aux_sym_preproc_elif_token1] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_CARET] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym___attribute] = ACTIONS(1932), + [anon_sym___attribute__] = ACTIONS(1932), + [anon_sym___declspec] = ACTIONS(1932), + [anon_sym___cdecl] = ACTIONS(1932), + [anon_sym___clrcall] = ACTIONS(1932), + [anon_sym___stdcall] = ACTIONS(1932), + [anon_sym___fastcall] = ACTIONS(1932), + [anon_sym___thiscall] = ACTIONS(1932), + [anon_sym___vectorcall] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_auto] = ACTIONS(1932), + [anon_sym_register] = ACTIONS(1932), + [anon_sym_inline] = ACTIONS(1932), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym_in] = ACTIONS(1932), + [anon_sym_out] = ACTIONS(1932), + [anon_sym_inout] = ACTIONS(1932), + [anon_sym_bycopy] = ACTIONS(1932), + [anon_sym_byref] = ACTIONS(1932), + [anon_sym_oneway] = ACTIONS(1932), + [anon_sym__Nullable] = ACTIONS(1932), + [anon_sym__Nonnull] = ACTIONS(1932), + [anon_sym__Nullable_result] = ACTIONS(1932), + [anon_sym__Null_unspecified] = ACTIONS(1932), + [anon_sym___autoreleasing] = ACTIONS(1932), + [anon_sym___nullable] = ACTIONS(1932), + [anon_sym___nonnull] = ACTIONS(1932), + [anon_sym___strong] = ACTIONS(1932), + [anon_sym___weak] = ACTIONS(1932), + [anon_sym___bridge] = ACTIONS(1932), + [anon_sym___bridge_transfer] = ACTIONS(1932), + [anon_sym___bridge_retained] = ACTIONS(1932), + [anon_sym___unsafe_unretained] = ACTIONS(1932), + [anon_sym___block] = ACTIONS(1932), + [anon_sym___kindof] = ACTIONS(1932), + [anon_sym___unused] = ACTIONS(1932), + [anon_sym__Complex] = ACTIONS(1932), + [anon_sym___complex] = ACTIONS(1932), + [anon_sym_IBOutlet] = ACTIONS(1932), + [anon_sym_IBInspectable] = ACTIONS(1932), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1932), + [anon_sym_signed] = ACTIONS(1932), + [anon_sym_unsigned] = ACTIONS(1932), + [anon_sym_long] = ACTIONS(1932), + [anon_sym_short] = ACTIONS(1932), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_goto] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [sym_null] = ACTIONS(1932), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1934), + [anon_sym_ATimport] = ACTIONS(1934), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1932), + [anon_sym_ATcompatibility_alias] = ACTIONS(1934), + [anon_sym_ATprotocol] = ACTIONS(1934), + [anon_sym_ATclass] = ACTIONS(1934), + [anon_sym_ATinterface] = ACTIONS(1934), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1932), + [sym_method_attribute_specifier] = ACTIONS(1932), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1932), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE] = ACTIONS(1932), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_API_AVAILABLE] = ACTIONS(1932), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_API_DEPRECATED] = ACTIONS(1932), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1932), + [anon_sym___deprecated_msg] = ACTIONS(1932), + [anon_sym___deprecated_enum_msg] = ACTIONS(1932), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1932), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1932), + [anon_sym_ATimplementation] = ACTIONS(1934), + [anon_sym_NS_ENUM] = ACTIONS(1932), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1932), + [anon_sym_NS_OPTIONS] = ACTIONS(1932), + [anon_sym_typeof] = ACTIONS(1932), + [anon_sym___typeof] = ACTIONS(1932), + [anon_sym___typeof__] = ACTIONS(1932), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_nil] = ACTIONS(1932), + [sym_id] = ACTIONS(1932), + [sym_instancetype] = ACTIONS(1932), + [sym_Class] = ACTIONS(1932), + [sym_SEL] = ACTIONS(1932), + [sym_IMP] = ACTIONS(1932), + [sym_BOOL] = ACTIONS(1932), + [sym_auto] = ACTIONS(1932), + [anon_sym_ATautoreleasepool] = ACTIONS(1934), + [anon_sym_ATsynchronized] = ACTIONS(1934), + [anon_sym_ATtry] = ACTIONS(1934), + [anon_sym_ATthrow] = ACTIONS(1934), + [anon_sym_ATselector] = ACTIONS(1934), + [anon_sym_ATencode] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1932), + [sym_YES] = ACTIONS(1932), + [sym_NO] = ACTIONS(1932), + [anon_sym___builtin_available] = ACTIONS(1932), + [anon_sym_ATavailable] = ACTIONS(1934), + [anon_sym_va_arg] = ACTIONS(1932), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [606] = { + [sym_identifier] = ACTIONS(1932), + [aux_sym_preproc_include_token1] = ACTIONS(1934), + [aux_sym_preproc_def_token1] = ACTIONS(1934), + [aux_sym_preproc_if_token1] = ACTIONS(1932), + [aux_sym_preproc_if_token2] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1932), + [aux_sym_preproc_else_token1] = ACTIONS(1932), + [aux_sym_preproc_elif_token1] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_CARET] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym___attribute] = ACTIONS(1932), + [anon_sym___attribute__] = ACTIONS(1932), + [anon_sym___declspec] = ACTIONS(1932), + [anon_sym___cdecl] = ACTIONS(1932), + [anon_sym___clrcall] = ACTIONS(1932), + [anon_sym___stdcall] = ACTIONS(1932), + [anon_sym___fastcall] = ACTIONS(1932), + [anon_sym___thiscall] = ACTIONS(1932), + [anon_sym___vectorcall] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_auto] = ACTIONS(1932), + [anon_sym_register] = ACTIONS(1932), + [anon_sym_inline] = ACTIONS(1932), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym_in] = ACTIONS(1932), + [anon_sym_out] = ACTIONS(1932), + [anon_sym_inout] = ACTIONS(1932), + [anon_sym_bycopy] = ACTIONS(1932), + [anon_sym_byref] = ACTIONS(1932), + [anon_sym_oneway] = ACTIONS(1932), + [anon_sym__Nullable] = ACTIONS(1932), + [anon_sym__Nonnull] = ACTIONS(1932), + [anon_sym__Nullable_result] = ACTIONS(1932), + [anon_sym__Null_unspecified] = ACTIONS(1932), + [anon_sym___autoreleasing] = ACTIONS(1932), + [anon_sym___nullable] = ACTIONS(1932), + [anon_sym___nonnull] = ACTIONS(1932), + [anon_sym___strong] = ACTIONS(1932), + [anon_sym___weak] = ACTIONS(1932), + [anon_sym___bridge] = ACTIONS(1932), + [anon_sym___bridge_transfer] = ACTIONS(1932), + [anon_sym___bridge_retained] = ACTIONS(1932), + [anon_sym___unsafe_unretained] = ACTIONS(1932), + [anon_sym___block] = ACTIONS(1932), + [anon_sym___kindof] = ACTIONS(1932), + [anon_sym___unused] = ACTIONS(1932), + [anon_sym__Complex] = ACTIONS(1932), + [anon_sym___complex] = ACTIONS(1932), + [anon_sym_IBOutlet] = ACTIONS(1932), + [anon_sym_IBInspectable] = ACTIONS(1932), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1932), + [anon_sym_signed] = ACTIONS(1932), + [anon_sym_unsigned] = ACTIONS(1932), + [anon_sym_long] = ACTIONS(1932), + [anon_sym_short] = ACTIONS(1932), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_goto] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [sym_null] = ACTIONS(1932), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1934), + [anon_sym_ATimport] = ACTIONS(1934), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1932), + [anon_sym_ATcompatibility_alias] = ACTIONS(1934), + [anon_sym_ATprotocol] = ACTIONS(1934), + [anon_sym_ATclass] = ACTIONS(1934), + [anon_sym_ATinterface] = ACTIONS(1934), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1932), + [sym_method_attribute_specifier] = ACTIONS(1932), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1932), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE] = ACTIONS(1932), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_API_AVAILABLE] = ACTIONS(1932), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_API_DEPRECATED] = ACTIONS(1932), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1932), + [anon_sym___deprecated_msg] = ACTIONS(1932), + [anon_sym___deprecated_enum_msg] = ACTIONS(1932), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1932), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1932), + [anon_sym_ATimplementation] = ACTIONS(1934), + [anon_sym_NS_ENUM] = ACTIONS(1932), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1932), + [anon_sym_NS_OPTIONS] = ACTIONS(1932), + [anon_sym_typeof] = ACTIONS(1932), + [anon_sym___typeof] = ACTIONS(1932), + [anon_sym___typeof__] = ACTIONS(1932), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_nil] = ACTIONS(1932), + [sym_id] = ACTIONS(1932), + [sym_instancetype] = ACTIONS(1932), + [sym_Class] = ACTIONS(1932), + [sym_SEL] = ACTIONS(1932), + [sym_IMP] = ACTIONS(1932), + [sym_BOOL] = ACTIONS(1932), + [sym_auto] = ACTIONS(1932), + [anon_sym_ATautoreleasepool] = ACTIONS(1934), + [anon_sym_ATsynchronized] = ACTIONS(1934), + [anon_sym_ATtry] = ACTIONS(1934), + [anon_sym_ATthrow] = ACTIONS(1934), + [anon_sym_ATselector] = ACTIONS(1934), + [anon_sym_ATencode] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1932), + [sym_YES] = ACTIONS(1932), + [sym_NO] = ACTIONS(1932), + [anon_sym___builtin_available] = ACTIONS(1932), + [anon_sym_ATavailable] = ACTIONS(1934), + [anon_sym_va_arg] = ACTIONS(1932), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [607] = { + [sym_identifier] = ACTIONS(1932), + [aux_sym_preproc_include_token1] = ACTIONS(1934), + [aux_sym_preproc_def_token1] = ACTIONS(1934), + [aux_sym_preproc_if_token1] = ACTIONS(1932), + [aux_sym_preproc_if_token2] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1932), + [aux_sym_preproc_else_token1] = ACTIONS(1932), + [aux_sym_preproc_elif_token1] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_CARET] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym___attribute] = ACTIONS(1932), + [anon_sym___attribute__] = ACTIONS(1932), + [anon_sym___declspec] = ACTIONS(1932), + [anon_sym___cdecl] = ACTIONS(1932), + [anon_sym___clrcall] = ACTIONS(1932), + [anon_sym___stdcall] = ACTIONS(1932), + [anon_sym___fastcall] = ACTIONS(1932), + [anon_sym___thiscall] = ACTIONS(1932), + [anon_sym___vectorcall] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_auto] = ACTIONS(1932), + [anon_sym_register] = ACTIONS(1932), + [anon_sym_inline] = ACTIONS(1932), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym_in] = ACTIONS(1932), + [anon_sym_out] = ACTIONS(1932), + [anon_sym_inout] = ACTIONS(1932), + [anon_sym_bycopy] = ACTIONS(1932), + [anon_sym_byref] = ACTIONS(1932), + [anon_sym_oneway] = ACTIONS(1932), + [anon_sym__Nullable] = ACTIONS(1932), + [anon_sym__Nonnull] = ACTIONS(1932), + [anon_sym__Nullable_result] = ACTIONS(1932), + [anon_sym__Null_unspecified] = ACTIONS(1932), + [anon_sym___autoreleasing] = ACTIONS(1932), + [anon_sym___nullable] = ACTIONS(1932), + [anon_sym___nonnull] = ACTIONS(1932), + [anon_sym___strong] = ACTIONS(1932), + [anon_sym___weak] = ACTIONS(1932), + [anon_sym___bridge] = ACTIONS(1932), + [anon_sym___bridge_transfer] = ACTIONS(1932), + [anon_sym___bridge_retained] = ACTIONS(1932), + [anon_sym___unsafe_unretained] = ACTIONS(1932), + [anon_sym___block] = ACTIONS(1932), + [anon_sym___kindof] = ACTIONS(1932), + [anon_sym___unused] = ACTIONS(1932), + [anon_sym__Complex] = ACTIONS(1932), + [anon_sym___complex] = ACTIONS(1932), + [anon_sym_IBOutlet] = ACTIONS(1932), + [anon_sym_IBInspectable] = ACTIONS(1932), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1932), + [anon_sym_signed] = ACTIONS(1932), + [anon_sym_unsigned] = ACTIONS(1932), + [anon_sym_long] = ACTIONS(1932), + [anon_sym_short] = ACTIONS(1932), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_goto] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [sym_null] = ACTIONS(1932), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1934), + [anon_sym_ATimport] = ACTIONS(1934), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1932), + [anon_sym_ATcompatibility_alias] = ACTIONS(1934), + [anon_sym_ATprotocol] = ACTIONS(1934), + [anon_sym_ATclass] = ACTIONS(1934), + [anon_sym_ATinterface] = ACTIONS(1934), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1932), + [sym_method_attribute_specifier] = ACTIONS(1932), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1932), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE] = ACTIONS(1932), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_API_AVAILABLE] = ACTIONS(1932), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_API_DEPRECATED] = ACTIONS(1932), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1932), + [anon_sym___deprecated_msg] = ACTIONS(1932), + [anon_sym___deprecated_enum_msg] = ACTIONS(1932), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1932), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1932), + [anon_sym_ATimplementation] = ACTIONS(1934), + [anon_sym_NS_ENUM] = ACTIONS(1932), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1932), + [anon_sym_NS_OPTIONS] = ACTIONS(1932), + [anon_sym_typeof] = ACTIONS(1932), + [anon_sym___typeof] = ACTIONS(1932), + [anon_sym___typeof__] = ACTIONS(1932), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_nil] = ACTIONS(1932), + [sym_id] = ACTIONS(1932), + [sym_instancetype] = ACTIONS(1932), + [sym_Class] = ACTIONS(1932), + [sym_SEL] = ACTIONS(1932), + [sym_IMP] = ACTIONS(1932), + [sym_BOOL] = ACTIONS(1932), + [sym_auto] = ACTIONS(1932), + [anon_sym_ATautoreleasepool] = ACTIONS(1934), + [anon_sym_ATsynchronized] = ACTIONS(1934), + [anon_sym_ATtry] = ACTIONS(1934), + [anon_sym_ATthrow] = ACTIONS(1934), + [anon_sym_ATselector] = ACTIONS(1934), + [anon_sym_ATencode] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1932), + [sym_YES] = ACTIONS(1932), + [sym_NO] = ACTIONS(1932), + [anon_sym___builtin_available] = ACTIONS(1932), + [anon_sym_ATavailable] = ACTIONS(1934), + [anon_sym_va_arg] = ACTIONS(1932), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [608] = { + [sym_identifier] = ACTIONS(1932), + [aux_sym_preproc_include_token1] = ACTIONS(1934), + [aux_sym_preproc_def_token1] = ACTIONS(1934), + [aux_sym_preproc_if_token1] = ACTIONS(1932), + [aux_sym_preproc_if_token2] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1932), + [aux_sym_preproc_else_token1] = ACTIONS(1932), + [aux_sym_preproc_elif_token1] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_CARET] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym___attribute] = ACTIONS(1932), + [anon_sym___attribute__] = ACTIONS(1932), + [anon_sym___declspec] = ACTIONS(1932), + [anon_sym___cdecl] = ACTIONS(1932), + [anon_sym___clrcall] = ACTIONS(1932), + [anon_sym___stdcall] = ACTIONS(1932), + [anon_sym___fastcall] = ACTIONS(1932), + [anon_sym___thiscall] = ACTIONS(1932), + [anon_sym___vectorcall] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_auto] = ACTIONS(1932), + [anon_sym_register] = ACTIONS(1932), + [anon_sym_inline] = ACTIONS(1932), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym_in] = ACTIONS(1932), + [anon_sym_out] = ACTIONS(1932), + [anon_sym_inout] = ACTIONS(1932), + [anon_sym_bycopy] = ACTIONS(1932), + [anon_sym_byref] = ACTIONS(1932), + [anon_sym_oneway] = ACTIONS(1932), + [anon_sym__Nullable] = ACTIONS(1932), + [anon_sym__Nonnull] = ACTIONS(1932), + [anon_sym__Nullable_result] = ACTIONS(1932), + [anon_sym__Null_unspecified] = ACTIONS(1932), + [anon_sym___autoreleasing] = ACTIONS(1932), + [anon_sym___nullable] = ACTIONS(1932), + [anon_sym___nonnull] = ACTIONS(1932), + [anon_sym___strong] = ACTIONS(1932), + [anon_sym___weak] = ACTIONS(1932), + [anon_sym___bridge] = ACTIONS(1932), + [anon_sym___bridge_transfer] = ACTIONS(1932), + [anon_sym___bridge_retained] = ACTIONS(1932), + [anon_sym___unsafe_unretained] = ACTIONS(1932), + [anon_sym___block] = ACTIONS(1932), + [anon_sym___kindof] = ACTIONS(1932), + [anon_sym___unused] = ACTIONS(1932), + [anon_sym__Complex] = ACTIONS(1932), + [anon_sym___complex] = ACTIONS(1932), + [anon_sym_IBOutlet] = ACTIONS(1932), + [anon_sym_IBInspectable] = ACTIONS(1932), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1932), + [anon_sym_signed] = ACTIONS(1932), + [anon_sym_unsigned] = ACTIONS(1932), + [anon_sym_long] = ACTIONS(1932), + [anon_sym_short] = ACTIONS(1932), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_goto] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [sym_null] = ACTIONS(1932), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1934), + [anon_sym_ATimport] = ACTIONS(1934), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1932), + [anon_sym_ATcompatibility_alias] = ACTIONS(1934), + [anon_sym_ATprotocol] = ACTIONS(1934), + [anon_sym_ATclass] = ACTIONS(1934), + [anon_sym_ATinterface] = ACTIONS(1934), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1932), + [sym_method_attribute_specifier] = ACTIONS(1932), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1932), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE] = ACTIONS(1932), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_API_AVAILABLE] = ACTIONS(1932), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_API_DEPRECATED] = ACTIONS(1932), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1932), + [anon_sym___deprecated_msg] = ACTIONS(1932), + [anon_sym___deprecated_enum_msg] = ACTIONS(1932), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1932), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1932), + [anon_sym_ATimplementation] = ACTIONS(1934), + [anon_sym_NS_ENUM] = ACTIONS(1932), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1932), + [anon_sym_NS_OPTIONS] = ACTIONS(1932), + [anon_sym_typeof] = ACTIONS(1932), + [anon_sym___typeof] = ACTIONS(1932), + [anon_sym___typeof__] = ACTIONS(1932), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_nil] = ACTIONS(1932), + [sym_id] = ACTIONS(1932), + [sym_instancetype] = ACTIONS(1932), + [sym_Class] = ACTIONS(1932), + [sym_SEL] = ACTIONS(1932), + [sym_IMP] = ACTIONS(1932), + [sym_BOOL] = ACTIONS(1932), + [sym_auto] = ACTIONS(1932), + [anon_sym_ATautoreleasepool] = ACTIONS(1934), + [anon_sym_ATsynchronized] = ACTIONS(1934), + [anon_sym_ATtry] = ACTIONS(1934), + [anon_sym_ATthrow] = ACTIONS(1934), + [anon_sym_ATselector] = ACTIONS(1934), + [anon_sym_ATencode] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1932), + [sym_YES] = ACTIONS(1932), + [sym_NO] = ACTIONS(1932), + [anon_sym___builtin_available] = ACTIONS(1932), + [anon_sym_ATavailable] = ACTIONS(1934), + [anon_sym_va_arg] = ACTIONS(1932), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [609] = { + [sym_identifier] = ACTIONS(1932), + [aux_sym_preproc_include_token1] = ACTIONS(1934), + [aux_sym_preproc_def_token1] = ACTIONS(1934), + [aux_sym_preproc_if_token1] = ACTIONS(1932), + [aux_sym_preproc_if_token2] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1932), + [aux_sym_preproc_else_token1] = ACTIONS(1932), + [aux_sym_preproc_elif_token1] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_CARET] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym___attribute] = ACTIONS(1932), + [anon_sym___attribute__] = ACTIONS(1932), + [anon_sym___declspec] = ACTIONS(1932), + [anon_sym___cdecl] = ACTIONS(1932), + [anon_sym___clrcall] = ACTIONS(1932), + [anon_sym___stdcall] = ACTIONS(1932), + [anon_sym___fastcall] = ACTIONS(1932), + [anon_sym___thiscall] = ACTIONS(1932), + [anon_sym___vectorcall] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_auto] = ACTIONS(1932), + [anon_sym_register] = ACTIONS(1932), + [anon_sym_inline] = ACTIONS(1932), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym_in] = ACTIONS(1932), + [anon_sym_out] = ACTIONS(1932), + [anon_sym_inout] = ACTIONS(1932), + [anon_sym_bycopy] = ACTIONS(1932), + [anon_sym_byref] = ACTIONS(1932), + [anon_sym_oneway] = ACTIONS(1932), + [anon_sym__Nullable] = ACTIONS(1932), + [anon_sym__Nonnull] = ACTIONS(1932), + [anon_sym__Nullable_result] = ACTIONS(1932), + [anon_sym__Null_unspecified] = ACTIONS(1932), + [anon_sym___autoreleasing] = ACTIONS(1932), + [anon_sym___nullable] = ACTIONS(1932), + [anon_sym___nonnull] = ACTIONS(1932), + [anon_sym___strong] = ACTIONS(1932), + [anon_sym___weak] = ACTIONS(1932), + [anon_sym___bridge] = ACTIONS(1932), + [anon_sym___bridge_transfer] = ACTIONS(1932), + [anon_sym___bridge_retained] = ACTIONS(1932), + [anon_sym___unsafe_unretained] = ACTIONS(1932), + [anon_sym___block] = ACTIONS(1932), + [anon_sym___kindof] = ACTIONS(1932), + [anon_sym___unused] = ACTIONS(1932), + [anon_sym__Complex] = ACTIONS(1932), + [anon_sym___complex] = ACTIONS(1932), + [anon_sym_IBOutlet] = ACTIONS(1932), + [anon_sym_IBInspectable] = ACTIONS(1932), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1932), + [anon_sym_signed] = ACTIONS(1932), + [anon_sym_unsigned] = ACTIONS(1932), + [anon_sym_long] = ACTIONS(1932), + [anon_sym_short] = ACTIONS(1932), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_goto] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [sym_null] = ACTIONS(1932), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1934), + [anon_sym_ATimport] = ACTIONS(1934), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1932), + [anon_sym_ATcompatibility_alias] = ACTIONS(1934), + [anon_sym_ATprotocol] = ACTIONS(1934), + [anon_sym_ATclass] = ACTIONS(1934), + [anon_sym_ATinterface] = ACTIONS(1934), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1932), + [sym_method_attribute_specifier] = ACTIONS(1932), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1932), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE] = ACTIONS(1932), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_API_AVAILABLE] = ACTIONS(1932), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_API_DEPRECATED] = ACTIONS(1932), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1932), + [anon_sym___deprecated_msg] = ACTIONS(1932), + [anon_sym___deprecated_enum_msg] = ACTIONS(1932), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1932), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1932), + [anon_sym_ATimplementation] = ACTIONS(1934), + [anon_sym_NS_ENUM] = ACTIONS(1932), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1932), + [anon_sym_NS_OPTIONS] = ACTIONS(1932), + [anon_sym_typeof] = ACTIONS(1932), + [anon_sym___typeof] = ACTIONS(1932), + [anon_sym___typeof__] = ACTIONS(1932), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_nil] = ACTIONS(1932), + [sym_id] = ACTIONS(1932), + [sym_instancetype] = ACTIONS(1932), + [sym_Class] = ACTIONS(1932), + [sym_SEL] = ACTIONS(1932), + [sym_IMP] = ACTIONS(1932), + [sym_BOOL] = ACTIONS(1932), + [sym_auto] = ACTIONS(1932), + [anon_sym_ATautoreleasepool] = ACTIONS(1934), + [anon_sym_ATsynchronized] = ACTIONS(1934), + [anon_sym_ATtry] = ACTIONS(1934), + [anon_sym_ATthrow] = ACTIONS(1934), + [anon_sym_ATselector] = ACTIONS(1934), + [anon_sym_ATencode] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1932), + [sym_YES] = ACTIONS(1932), + [sym_NO] = ACTIONS(1932), + [anon_sym___builtin_available] = ACTIONS(1932), + [anon_sym_ATavailable] = ACTIONS(1934), + [anon_sym_va_arg] = ACTIONS(1932), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [610] = { + [sym_identifier] = ACTIONS(1936), + [aux_sym_preproc_include_token1] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1938), + [aux_sym_preproc_if_token1] = ACTIONS(1936), + [aux_sym_preproc_if_token2] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1936), + [aux_sym_preproc_else_token1] = ACTIONS(1936), + [aux_sym_preproc_elif_token1] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_CARET] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_typedef] = ACTIONS(1936), + [anon_sym_extern] = ACTIONS(1936), + [anon_sym___attribute] = ACTIONS(1936), + [anon_sym___attribute__] = ACTIONS(1936), + [anon_sym___declspec] = ACTIONS(1936), + [anon_sym___cdecl] = ACTIONS(1936), + [anon_sym___clrcall] = ACTIONS(1936), + [anon_sym___stdcall] = ACTIONS(1936), + [anon_sym___fastcall] = ACTIONS(1936), + [anon_sym___thiscall] = ACTIONS(1936), + [anon_sym___vectorcall] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_auto] = ACTIONS(1936), + [anon_sym_register] = ACTIONS(1936), + [anon_sym_inline] = ACTIONS(1936), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym_in] = ACTIONS(1936), + [anon_sym_out] = ACTIONS(1936), + [anon_sym_inout] = ACTIONS(1936), + [anon_sym_bycopy] = ACTIONS(1936), + [anon_sym_byref] = ACTIONS(1936), + [anon_sym_oneway] = ACTIONS(1936), + [anon_sym__Nullable] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym__Nullable_result] = ACTIONS(1936), + [anon_sym__Null_unspecified] = ACTIONS(1936), + [anon_sym___autoreleasing] = ACTIONS(1936), + [anon_sym___nullable] = ACTIONS(1936), + [anon_sym___nonnull] = ACTIONS(1936), + [anon_sym___strong] = ACTIONS(1936), + [anon_sym___weak] = ACTIONS(1936), + [anon_sym___bridge] = ACTIONS(1936), + [anon_sym___bridge_transfer] = ACTIONS(1936), + [anon_sym___bridge_retained] = ACTIONS(1936), + [anon_sym___unsafe_unretained] = ACTIONS(1936), + [anon_sym___block] = ACTIONS(1936), + [anon_sym___kindof] = ACTIONS(1936), + [anon_sym___unused] = ACTIONS(1936), + [anon_sym__Complex] = ACTIONS(1936), + [anon_sym___complex] = ACTIONS(1936), + [anon_sym_IBOutlet] = ACTIONS(1936), + [anon_sym_IBInspectable] = ACTIONS(1936), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1936), + [anon_sym_signed] = ACTIONS(1936), + [anon_sym_unsigned] = ACTIONS(1936), + [anon_sym_long] = ACTIONS(1936), + [anon_sym_short] = ACTIONS(1936), + [sym_primitive_type] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1936), + [anon_sym_struct] = ACTIONS(1936), + [anon_sym_union] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_switch] = ACTIONS(1936), + [anon_sym_case] = ACTIONS(1936), + [anon_sym_default] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_do] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_break] = ACTIONS(1936), + [anon_sym_continue] = ACTIONS(1936), + [anon_sym_goto] = ACTIONS(1936), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_sizeof] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [anon_sym_L_SQUOTE] = ACTIONS(1938), + [anon_sym_u_SQUOTE] = ACTIONS(1938), + [anon_sym_U_SQUOTE] = ACTIONS(1938), + [anon_sym_u8_SQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_L_DQUOTE] = ACTIONS(1938), + [anon_sym_u_DQUOTE] = ACTIONS(1938), + [anon_sym_U_DQUOTE] = ACTIONS(1938), + [anon_sym_u8_DQUOTE] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [sym_null] = ACTIONS(1936), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1938), + [anon_sym_ATimport] = ACTIONS(1938), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1936), + [anon_sym_ATcompatibility_alias] = ACTIONS(1938), + [anon_sym_ATprotocol] = ACTIONS(1938), + [anon_sym_ATclass] = ACTIONS(1938), + [anon_sym_ATinterface] = ACTIONS(1938), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1936), + [sym_method_attribute_specifier] = ACTIONS(1936), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1936), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1936), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1936), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1936), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1936), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1936), + [anon_sym_NS_AVAILABLE] = ACTIONS(1936), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1936), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_API_AVAILABLE] = ACTIONS(1936), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1936), + [anon_sym_API_DEPRECATED] = ACTIONS(1936), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1936), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1936), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1936), + [anon_sym___deprecated_msg] = ACTIONS(1936), + [anon_sym___deprecated_enum_msg] = ACTIONS(1936), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1936), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1936), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1936), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1936), + [anon_sym_ATimplementation] = ACTIONS(1938), + [anon_sym_NS_ENUM] = ACTIONS(1936), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1936), + [anon_sym_NS_OPTIONS] = ACTIONS(1936), + [anon_sym_typeof] = ACTIONS(1936), + [anon_sym___typeof] = ACTIONS(1936), + [anon_sym___typeof__] = ACTIONS(1936), + [sym_self] = ACTIONS(1936), + [sym_super] = ACTIONS(1936), + [sym_nil] = ACTIONS(1936), + [sym_id] = ACTIONS(1936), + [sym_instancetype] = ACTIONS(1936), + [sym_Class] = ACTIONS(1936), + [sym_SEL] = ACTIONS(1936), + [sym_IMP] = ACTIONS(1936), + [sym_BOOL] = ACTIONS(1936), + [sym_auto] = ACTIONS(1936), + [anon_sym_ATautoreleasepool] = ACTIONS(1938), + [anon_sym_ATsynchronized] = ACTIONS(1938), + [anon_sym_ATtry] = ACTIONS(1938), + [anon_sym_ATthrow] = ACTIONS(1938), + [anon_sym_ATselector] = ACTIONS(1938), + [anon_sym_ATencode] = ACTIONS(1938), + [anon_sym_AT] = ACTIONS(1936), + [sym_YES] = ACTIONS(1936), + [sym_NO] = ACTIONS(1936), + [anon_sym___builtin_available] = ACTIONS(1936), + [anon_sym_ATavailable] = ACTIONS(1938), + [anon_sym_va_arg] = ACTIONS(1936), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [611] = { + [sym_identifier] = ACTIONS(1936), + [aux_sym_preproc_include_token1] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1938), + [aux_sym_preproc_if_token1] = ACTIONS(1936), + [aux_sym_preproc_if_token2] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1936), + [aux_sym_preproc_else_token1] = ACTIONS(1936), + [aux_sym_preproc_elif_token1] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_CARET] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_typedef] = ACTIONS(1936), + [anon_sym_extern] = ACTIONS(1936), + [anon_sym___attribute] = ACTIONS(1936), + [anon_sym___attribute__] = ACTIONS(1936), + [anon_sym___declspec] = ACTIONS(1936), + [anon_sym___cdecl] = ACTIONS(1936), + [anon_sym___clrcall] = ACTIONS(1936), + [anon_sym___stdcall] = ACTIONS(1936), + [anon_sym___fastcall] = ACTIONS(1936), + [anon_sym___thiscall] = ACTIONS(1936), + [anon_sym___vectorcall] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_auto] = ACTIONS(1936), + [anon_sym_register] = ACTIONS(1936), + [anon_sym_inline] = ACTIONS(1936), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym_in] = ACTIONS(1936), + [anon_sym_out] = ACTIONS(1936), + [anon_sym_inout] = ACTIONS(1936), + [anon_sym_bycopy] = ACTIONS(1936), + [anon_sym_byref] = ACTIONS(1936), + [anon_sym_oneway] = ACTIONS(1936), + [anon_sym__Nullable] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym__Nullable_result] = ACTIONS(1936), + [anon_sym__Null_unspecified] = ACTIONS(1936), + [anon_sym___autoreleasing] = ACTIONS(1936), + [anon_sym___nullable] = ACTIONS(1936), + [anon_sym___nonnull] = ACTIONS(1936), + [anon_sym___strong] = ACTIONS(1936), + [anon_sym___weak] = ACTIONS(1936), + [anon_sym___bridge] = ACTIONS(1936), + [anon_sym___bridge_transfer] = ACTIONS(1936), + [anon_sym___bridge_retained] = ACTIONS(1936), + [anon_sym___unsafe_unretained] = ACTIONS(1936), + [anon_sym___block] = ACTIONS(1936), + [anon_sym___kindof] = ACTIONS(1936), + [anon_sym___unused] = ACTIONS(1936), + [anon_sym__Complex] = ACTIONS(1936), + [anon_sym___complex] = ACTIONS(1936), + [anon_sym_IBOutlet] = ACTIONS(1936), + [anon_sym_IBInspectable] = ACTIONS(1936), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1936), + [anon_sym_signed] = ACTIONS(1936), + [anon_sym_unsigned] = ACTIONS(1936), + [anon_sym_long] = ACTIONS(1936), + [anon_sym_short] = ACTIONS(1936), + [sym_primitive_type] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1936), + [anon_sym_struct] = ACTIONS(1936), + [anon_sym_union] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_switch] = ACTIONS(1936), + [anon_sym_case] = ACTIONS(1936), + [anon_sym_default] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_do] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_break] = ACTIONS(1936), + [anon_sym_continue] = ACTIONS(1936), + [anon_sym_goto] = ACTIONS(1936), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_sizeof] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [anon_sym_L_SQUOTE] = ACTIONS(1938), + [anon_sym_u_SQUOTE] = ACTIONS(1938), + [anon_sym_U_SQUOTE] = ACTIONS(1938), + [anon_sym_u8_SQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_L_DQUOTE] = ACTIONS(1938), + [anon_sym_u_DQUOTE] = ACTIONS(1938), + [anon_sym_U_DQUOTE] = ACTIONS(1938), + [anon_sym_u8_DQUOTE] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [sym_null] = ACTIONS(1936), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1938), + [anon_sym_ATimport] = ACTIONS(1938), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1936), + [anon_sym_ATcompatibility_alias] = ACTIONS(1938), + [anon_sym_ATprotocol] = ACTIONS(1938), + [anon_sym_ATclass] = ACTIONS(1938), + [anon_sym_ATinterface] = ACTIONS(1938), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1936), + [sym_method_attribute_specifier] = ACTIONS(1936), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1936), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1936), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1936), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1936), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1936), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1936), + [anon_sym_NS_AVAILABLE] = ACTIONS(1936), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1936), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_API_AVAILABLE] = ACTIONS(1936), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1936), + [anon_sym_API_DEPRECATED] = ACTIONS(1936), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1936), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1936), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1936), + [anon_sym___deprecated_msg] = ACTIONS(1936), + [anon_sym___deprecated_enum_msg] = ACTIONS(1936), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1936), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1936), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1936), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1936), + [anon_sym_ATimplementation] = ACTIONS(1938), + [anon_sym_NS_ENUM] = ACTIONS(1936), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1936), + [anon_sym_NS_OPTIONS] = ACTIONS(1936), + [anon_sym_typeof] = ACTIONS(1936), + [anon_sym___typeof] = ACTIONS(1936), + [anon_sym___typeof__] = ACTIONS(1936), + [sym_self] = ACTIONS(1936), + [sym_super] = ACTIONS(1936), + [sym_nil] = ACTIONS(1936), + [sym_id] = ACTIONS(1936), + [sym_instancetype] = ACTIONS(1936), + [sym_Class] = ACTIONS(1936), + [sym_SEL] = ACTIONS(1936), + [sym_IMP] = ACTIONS(1936), + [sym_BOOL] = ACTIONS(1936), + [sym_auto] = ACTIONS(1936), + [anon_sym_ATautoreleasepool] = ACTIONS(1938), + [anon_sym_ATsynchronized] = ACTIONS(1938), + [anon_sym_ATtry] = ACTIONS(1938), + [anon_sym_ATthrow] = ACTIONS(1938), + [anon_sym_ATselector] = ACTIONS(1938), + [anon_sym_ATencode] = ACTIONS(1938), + [anon_sym_AT] = ACTIONS(1936), + [sym_YES] = ACTIONS(1936), + [sym_NO] = ACTIONS(1936), + [anon_sym___builtin_available] = ACTIONS(1936), + [anon_sym_ATavailable] = ACTIONS(1938), + [anon_sym_va_arg] = ACTIONS(1936), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [612] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [aux_sym_preproc_else_token1] = ACTIONS(1940), + [aux_sym_preproc_elif_token1] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [613] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [aux_sym_preproc_else_token1] = ACTIONS(1940), + [aux_sym_preproc_elif_token1] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [614] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [aux_sym_preproc_else_token1] = ACTIONS(1940), + [aux_sym_preproc_elif_token1] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [615] = { + [sym_identifier] = ACTIONS(1944), + [aux_sym_preproc_include_token1] = ACTIONS(1946), + [aux_sym_preproc_def_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token2] = ACTIONS(1944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1944), + [aux_sym_preproc_else_token1] = ACTIONS(1944), + [aux_sym_preproc_elif_token1] = ACTIONS(1944), + [anon_sym_LPAREN2] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_TILDE] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1944), + [anon_sym_PLUS] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(1946), + [anon_sym_CARET] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_typedef] = ACTIONS(1944), + [anon_sym_extern] = ACTIONS(1944), + [anon_sym___attribute] = ACTIONS(1944), + [anon_sym___attribute__] = ACTIONS(1944), + [anon_sym___declspec] = ACTIONS(1944), + [anon_sym___cdecl] = ACTIONS(1944), + [anon_sym___clrcall] = ACTIONS(1944), + [anon_sym___stdcall] = ACTIONS(1944), + [anon_sym___fastcall] = ACTIONS(1944), + [anon_sym___thiscall] = ACTIONS(1944), + [anon_sym___vectorcall] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1944), + [anon_sym_auto] = ACTIONS(1944), + [anon_sym_register] = ACTIONS(1944), + [anon_sym_inline] = ACTIONS(1944), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1944), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_volatile] = ACTIONS(1944), + [anon_sym_restrict] = ACTIONS(1944), + [anon_sym__Atomic] = ACTIONS(1944), + [anon_sym_in] = ACTIONS(1944), + [anon_sym_out] = ACTIONS(1944), + [anon_sym_inout] = ACTIONS(1944), + [anon_sym_bycopy] = ACTIONS(1944), + [anon_sym_byref] = ACTIONS(1944), + [anon_sym_oneway] = ACTIONS(1944), + [anon_sym__Nullable] = ACTIONS(1944), + [anon_sym__Nonnull] = ACTIONS(1944), + [anon_sym__Nullable_result] = ACTIONS(1944), + [anon_sym__Null_unspecified] = ACTIONS(1944), + [anon_sym___autoreleasing] = ACTIONS(1944), + [anon_sym___nullable] = ACTIONS(1944), + [anon_sym___nonnull] = ACTIONS(1944), + [anon_sym___strong] = ACTIONS(1944), + [anon_sym___weak] = ACTIONS(1944), + [anon_sym___bridge] = ACTIONS(1944), + [anon_sym___bridge_transfer] = ACTIONS(1944), + [anon_sym___bridge_retained] = ACTIONS(1944), + [anon_sym___unsafe_unretained] = ACTIONS(1944), + [anon_sym___block] = ACTIONS(1944), + [anon_sym___kindof] = ACTIONS(1944), + [anon_sym___unused] = ACTIONS(1944), + [anon_sym__Complex] = ACTIONS(1944), + [anon_sym___complex] = ACTIONS(1944), + [anon_sym_IBOutlet] = ACTIONS(1944), + [anon_sym_IBInspectable] = ACTIONS(1944), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1944), + [anon_sym_signed] = ACTIONS(1944), + [anon_sym_unsigned] = ACTIONS(1944), + [anon_sym_long] = ACTIONS(1944), + [anon_sym_short] = ACTIONS(1944), + [sym_primitive_type] = ACTIONS(1944), + [anon_sym_enum] = ACTIONS(1944), + [anon_sym_struct] = ACTIONS(1944), + [anon_sym_union] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_switch] = ACTIONS(1944), + [anon_sym_case] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_goto] = ACTIONS(1944), + [anon_sym_DASH_DASH] = ACTIONS(1946), + [anon_sym_PLUS_PLUS] = ACTIONS(1946), + [anon_sym_sizeof] = ACTIONS(1944), + [sym_number_literal] = ACTIONS(1946), + [anon_sym_L_SQUOTE] = ACTIONS(1946), + [anon_sym_u_SQUOTE] = ACTIONS(1946), + [anon_sym_U_SQUOTE] = ACTIONS(1946), + [anon_sym_u8_SQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1946), + [anon_sym_L_DQUOTE] = ACTIONS(1946), + [anon_sym_u_DQUOTE] = ACTIONS(1946), + [anon_sym_U_DQUOTE] = ACTIONS(1946), + [anon_sym_u8_DQUOTE] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1946), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [sym_null] = ACTIONS(1944), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1946), + [anon_sym_ATimport] = ACTIONS(1946), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1944), + [anon_sym_ATcompatibility_alias] = ACTIONS(1946), + [anon_sym_ATprotocol] = ACTIONS(1946), + [anon_sym_ATclass] = ACTIONS(1946), + [anon_sym_ATinterface] = ACTIONS(1946), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1944), + [sym_method_attribute_specifier] = ACTIONS(1944), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1944), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1944), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1944), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1944), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1944), + [anon_sym_NS_AVAILABLE] = ACTIONS(1944), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1944), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_API_AVAILABLE] = ACTIONS(1944), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_API_DEPRECATED] = ACTIONS(1944), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1944), + [anon_sym___deprecated_msg] = ACTIONS(1944), + [anon_sym___deprecated_enum_msg] = ACTIONS(1944), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1944), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1944), + [anon_sym_ATimplementation] = ACTIONS(1946), + [anon_sym_NS_ENUM] = ACTIONS(1944), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1944), + [anon_sym_NS_OPTIONS] = ACTIONS(1944), + [anon_sym_typeof] = ACTIONS(1944), + [anon_sym___typeof] = ACTIONS(1944), + [anon_sym___typeof__] = ACTIONS(1944), + [sym_self] = ACTIONS(1944), + [sym_super] = ACTIONS(1944), + [sym_nil] = ACTIONS(1944), + [sym_id] = ACTIONS(1944), + [sym_instancetype] = ACTIONS(1944), + [sym_Class] = ACTIONS(1944), + [sym_SEL] = ACTIONS(1944), + [sym_IMP] = ACTIONS(1944), + [sym_BOOL] = ACTIONS(1944), + [sym_auto] = ACTIONS(1944), + [anon_sym_ATautoreleasepool] = ACTIONS(1946), + [anon_sym_ATsynchronized] = ACTIONS(1946), + [anon_sym_ATtry] = ACTIONS(1946), + [anon_sym_ATthrow] = ACTIONS(1946), + [anon_sym_ATselector] = ACTIONS(1946), + [anon_sym_ATencode] = ACTIONS(1946), + [anon_sym_AT] = ACTIONS(1944), + [sym_YES] = ACTIONS(1944), + [sym_NO] = ACTIONS(1944), + [anon_sym___builtin_available] = ACTIONS(1944), + [anon_sym_ATavailable] = ACTIONS(1946), + [anon_sym_va_arg] = ACTIONS(1944), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [616] = { + [sym_identifier] = ACTIONS(1944), + [aux_sym_preproc_include_token1] = ACTIONS(1946), + [aux_sym_preproc_def_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token2] = ACTIONS(1944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1944), + [aux_sym_preproc_else_token1] = ACTIONS(1944), + [aux_sym_preproc_elif_token1] = ACTIONS(1944), + [anon_sym_LPAREN2] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_TILDE] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1944), + [anon_sym_PLUS] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(1946), + [anon_sym_CARET] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_typedef] = ACTIONS(1944), + [anon_sym_extern] = ACTIONS(1944), + [anon_sym___attribute] = ACTIONS(1944), + [anon_sym___attribute__] = ACTIONS(1944), + [anon_sym___declspec] = ACTIONS(1944), + [anon_sym___cdecl] = ACTIONS(1944), + [anon_sym___clrcall] = ACTIONS(1944), + [anon_sym___stdcall] = ACTIONS(1944), + [anon_sym___fastcall] = ACTIONS(1944), + [anon_sym___thiscall] = ACTIONS(1944), + [anon_sym___vectorcall] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1944), + [anon_sym_auto] = ACTIONS(1944), + [anon_sym_register] = ACTIONS(1944), + [anon_sym_inline] = ACTIONS(1944), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1944), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_volatile] = ACTIONS(1944), + [anon_sym_restrict] = ACTIONS(1944), + [anon_sym__Atomic] = ACTIONS(1944), + [anon_sym_in] = ACTIONS(1944), + [anon_sym_out] = ACTIONS(1944), + [anon_sym_inout] = ACTIONS(1944), + [anon_sym_bycopy] = ACTIONS(1944), + [anon_sym_byref] = ACTIONS(1944), + [anon_sym_oneway] = ACTIONS(1944), + [anon_sym__Nullable] = ACTIONS(1944), + [anon_sym__Nonnull] = ACTIONS(1944), + [anon_sym__Nullable_result] = ACTIONS(1944), + [anon_sym__Null_unspecified] = ACTIONS(1944), + [anon_sym___autoreleasing] = ACTIONS(1944), + [anon_sym___nullable] = ACTIONS(1944), + [anon_sym___nonnull] = ACTIONS(1944), + [anon_sym___strong] = ACTIONS(1944), + [anon_sym___weak] = ACTIONS(1944), + [anon_sym___bridge] = ACTIONS(1944), + [anon_sym___bridge_transfer] = ACTIONS(1944), + [anon_sym___bridge_retained] = ACTIONS(1944), + [anon_sym___unsafe_unretained] = ACTIONS(1944), + [anon_sym___block] = ACTIONS(1944), + [anon_sym___kindof] = ACTIONS(1944), + [anon_sym___unused] = ACTIONS(1944), + [anon_sym__Complex] = ACTIONS(1944), + [anon_sym___complex] = ACTIONS(1944), + [anon_sym_IBOutlet] = ACTIONS(1944), + [anon_sym_IBInspectable] = ACTIONS(1944), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1944), + [anon_sym_signed] = ACTIONS(1944), + [anon_sym_unsigned] = ACTIONS(1944), + [anon_sym_long] = ACTIONS(1944), + [anon_sym_short] = ACTIONS(1944), + [sym_primitive_type] = ACTIONS(1944), + [anon_sym_enum] = ACTIONS(1944), + [anon_sym_struct] = ACTIONS(1944), + [anon_sym_union] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_switch] = ACTIONS(1944), + [anon_sym_case] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_goto] = ACTIONS(1944), + [anon_sym_DASH_DASH] = ACTIONS(1946), + [anon_sym_PLUS_PLUS] = ACTIONS(1946), + [anon_sym_sizeof] = ACTIONS(1944), + [sym_number_literal] = ACTIONS(1946), + [anon_sym_L_SQUOTE] = ACTIONS(1946), + [anon_sym_u_SQUOTE] = ACTIONS(1946), + [anon_sym_U_SQUOTE] = ACTIONS(1946), + [anon_sym_u8_SQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1946), + [anon_sym_L_DQUOTE] = ACTIONS(1946), + [anon_sym_u_DQUOTE] = ACTIONS(1946), + [anon_sym_U_DQUOTE] = ACTIONS(1946), + [anon_sym_u8_DQUOTE] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1946), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [sym_null] = ACTIONS(1944), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1946), + [anon_sym_ATimport] = ACTIONS(1946), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1944), + [anon_sym_ATcompatibility_alias] = ACTIONS(1946), + [anon_sym_ATprotocol] = ACTIONS(1946), + [anon_sym_ATclass] = ACTIONS(1946), + [anon_sym_ATinterface] = ACTIONS(1946), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1944), + [sym_method_attribute_specifier] = ACTIONS(1944), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1944), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1944), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1944), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1944), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1944), + [anon_sym_NS_AVAILABLE] = ACTIONS(1944), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1944), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_API_AVAILABLE] = ACTIONS(1944), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_API_DEPRECATED] = ACTIONS(1944), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1944), + [anon_sym___deprecated_msg] = ACTIONS(1944), + [anon_sym___deprecated_enum_msg] = ACTIONS(1944), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1944), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1944), + [anon_sym_ATimplementation] = ACTIONS(1946), + [anon_sym_NS_ENUM] = ACTIONS(1944), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1944), + [anon_sym_NS_OPTIONS] = ACTIONS(1944), + [anon_sym_typeof] = ACTIONS(1944), + [anon_sym___typeof] = ACTIONS(1944), + [anon_sym___typeof__] = ACTIONS(1944), + [sym_self] = ACTIONS(1944), + [sym_super] = ACTIONS(1944), + [sym_nil] = ACTIONS(1944), + [sym_id] = ACTIONS(1944), + [sym_instancetype] = ACTIONS(1944), + [sym_Class] = ACTIONS(1944), + [sym_SEL] = ACTIONS(1944), + [sym_IMP] = ACTIONS(1944), + [sym_BOOL] = ACTIONS(1944), + [sym_auto] = ACTIONS(1944), + [anon_sym_ATautoreleasepool] = ACTIONS(1946), + [anon_sym_ATsynchronized] = ACTIONS(1946), + [anon_sym_ATtry] = ACTIONS(1946), + [anon_sym_ATthrow] = ACTIONS(1946), + [anon_sym_ATselector] = ACTIONS(1946), + [anon_sym_ATencode] = ACTIONS(1946), + [anon_sym_AT] = ACTIONS(1944), + [sym_YES] = ACTIONS(1944), + [sym_NO] = ACTIONS(1944), + [anon_sym___builtin_available] = ACTIONS(1944), + [anon_sym_ATavailable] = ACTIONS(1946), + [anon_sym_va_arg] = ACTIONS(1944), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [617] = { + [sym_identifier] = ACTIONS(1944), + [aux_sym_preproc_include_token1] = ACTIONS(1946), + [aux_sym_preproc_def_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token2] = ACTIONS(1944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1944), + [aux_sym_preproc_else_token1] = ACTIONS(1944), + [aux_sym_preproc_elif_token1] = ACTIONS(1944), + [anon_sym_LPAREN2] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_TILDE] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1944), + [anon_sym_PLUS] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(1946), + [anon_sym_CARET] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_typedef] = ACTIONS(1944), + [anon_sym_extern] = ACTIONS(1944), + [anon_sym___attribute] = ACTIONS(1944), + [anon_sym___attribute__] = ACTIONS(1944), + [anon_sym___declspec] = ACTIONS(1944), + [anon_sym___cdecl] = ACTIONS(1944), + [anon_sym___clrcall] = ACTIONS(1944), + [anon_sym___stdcall] = ACTIONS(1944), + [anon_sym___fastcall] = ACTIONS(1944), + [anon_sym___thiscall] = ACTIONS(1944), + [anon_sym___vectorcall] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1944), + [anon_sym_auto] = ACTIONS(1944), + [anon_sym_register] = ACTIONS(1944), + [anon_sym_inline] = ACTIONS(1944), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1944), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_volatile] = ACTIONS(1944), + [anon_sym_restrict] = ACTIONS(1944), + [anon_sym__Atomic] = ACTIONS(1944), + [anon_sym_in] = ACTIONS(1944), + [anon_sym_out] = ACTIONS(1944), + [anon_sym_inout] = ACTIONS(1944), + [anon_sym_bycopy] = ACTIONS(1944), + [anon_sym_byref] = ACTIONS(1944), + [anon_sym_oneway] = ACTIONS(1944), + [anon_sym__Nullable] = ACTIONS(1944), + [anon_sym__Nonnull] = ACTIONS(1944), + [anon_sym__Nullable_result] = ACTIONS(1944), + [anon_sym__Null_unspecified] = ACTIONS(1944), + [anon_sym___autoreleasing] = ACTIONS(1944), + [anon_sym___nullable] = ACTIONS(1944), + [anon_sym___nonnull] = ACTIONS(1944), + [anon_sym___strong] = ACTIONS(1944), + [anon_sym___weak] = ACTIONS(1944), + [anon_sym___bridge] = ACTIONS(1944), + [anon_sym___bridge_transfer] = ACTIONS(1944), + [anon_sym___bridge_retained] = ACTIONS(1944), + [anon_sym___unsafe_unretained] = ACTIONS(1944), + [anon_sym___block] = ACTIONS(1944), + [anon_sym___kindof] = ACTIONS(1944), + [anon_sym___unused] = ACTIONS(1944), + [anon_sym__Complex] = ACTIONS(1944), + [anon_sym___complex] = ACTIONS(1944), + [anon_sym_IBOutlet] = ACTIONS(1944), + [anon_sym_IBInspectable] = ACTIONS(1944), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1944), + [anon_sym_signed] = ACTIONS(1944), + [anon_sym_unsigned] = ACTIONS(1944), + [anon_sym_long] = ACTIONS(1944), + [anon_sym_short] = ACTIONS(1944), + [sym_primitive_type] = ACTIONS(1944), + [anon_sym_enum] = ACTIONS(1944), + [anon_sym_struct] = ACTIONS(1944), + [anon_sym_union] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_switch] = ACTIONS(1944), + [anon_sym_case] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_goto] = ACTIONS(1944), + [anon_sym_DASH_DASH] = ACTIONS(1946), + [anon_sym_PLUS_PLUS] = ACTIONS(1946), + [anon_sym_sizeof] = ACTIONS(1944), + [sym_number_literal] = ACTIONS(1946), + [anon_sym_L_SQUOTE] = ACTIONS(1946), + [anon_sym_u_SQUOTE] = ACTIONS(1946), + [anon_sym_U_SQUOTE] = ACTIONS(1946), + [anon_sym_u8_SQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1946), + [anon_sym_L_DQUOTE] = ACTIONS(1946), + [anon_sym_u_DQUOTE] = ACTIONS(1946), + [anon_sym_U_DQUOTE] = ACTIONS(1946), + [anon_sym_u8_DQUOTE] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1946), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [sym_null] = ACTIONS(1944), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1946), + [anon_sym_ATimport] = ACTIONS(1946), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1944), + [anon_sym_ATcompatibility_alias] = ACTIONS(1946), + [anon_sym_ATprotocol] = ACTIONS(1946), + [anon_sym_ATclass] = ACTIONS(1946), + [anon_sym_ATinterface] = ACTIONS(1946), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1944), + [sym_method_attribute_specifier] = ACTIONS(1944), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1944), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1944), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1944), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1944), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1944), + [anon_sym_NS_AVAILABLE] = ACTIONS(1944), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1944), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_API_AVAILABLE] = ACTIONS(1944), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_API_DEPRECATED] = ACTIONS(1944), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1944), + [anon_sym___deprecated_msg] = ACTIONS(1944), + [anon_sym___deprecated_enum_msg] = ACTIONS(1944), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1944), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1944), + [anon_sym_ATimplementation] = ACTIONS(1946), + [anon_sym_NS_ENUM] = ACTIONS(1944), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1944), + [anon_sym_NS_OPTIONS] = ACTIONS(1944), + [anon_sym_typeof] = ACTIONS(1944), + [anon_sym___typeof] = ACTIONS(1944), + [anon_sym___typeof__] = ACTIONS(1944), + [sym_self] = ACTIONS(1944), + [sym_super] = ACTIONS(1944), + [sym_nil] = ACTIONS(1944), + [sym_id] = ACTIONS(1944), + [sym_instancetype] = ACTIONS(1944), + [sym_Class] = ACTIONS(1944), + [sym_SEL] = ACTIONS(1944), + [sym_IMP] = ACTIONS(1944), + [sym_BOOL] = ACTIONS(1944), + [sym_auto] = ACTIONS(1944), + [anon_sym_ATautoreleasepool] = ACTIONS(1946), + [anon_sym_ATsynchronized] = ACTIONS(1946), + [anon_sym_ATtry] = ACTIONS(1946), + [anon_sym_ATthrow] = ACTIONS(1946), + [anon_sym_ATselector] = ACTIONS(1946), + [anon_sym_ATencode] = ACTIONS(1946), + [anon_sym_AT] = ACTIONS(1944), + [sym_YES] = ACTIONS(1944), + [sym_NO] = ACTIONS(1944), + [anon_sym___builtin_available] = ACTIONS(1944), + [anon_sym_ATavailable] = ACTIONS(1946), + [anon_sym_va_arg] = ACTIONS(1944), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [618] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [aux_sym_preproc_else_token1] = ACTIONS(1948), + [aux_sym_preproc_elif_token1] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [619] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [aux_sym_preproc_else_token1] = ACTIONS(1948), + [aux_sym_preproc_elif_token1] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [620] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [aux_sym_preproc_else_token1] = ACTIONS(1948), + [aux_sym_preproc_elif_token1] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [621] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [aux_sym_preproc_else_token1] = ACTIONS(1940), + [aux_sym_preproc_elif_token1] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [622] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [aux_sym_preproc_else_token1] = ACTIONS(1940), + [aux_sym_preproc_elif_token1] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [623] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [aux_sym_preproc_else_token1] = ACTIONS(1940), + [aux_sym_preproc_elif_token1] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [624] = { + [sym_identifier] = ACTIONS(1952), + [aux_sym_preproc_include_token1] = ACTIONS(1954), + [aux_sym_preproc_def_token1] = ACTIONS(1954), + [aux_sym_preproc_if_token1] = ACTIONS(1952), + [aux_sym_preproc_if_token2] = ACTIONS(1952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1952), + [aux_sym_preproc_else_token1] = ACTIONS(1952), + [aux_sym_preproc_elif_token1] = ACTIONS(1952), + [anon_sym_LPAREN2] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_TILDE] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_typedef] = ACTIONS(1952), + [anon_sym_extern] = ACTIONS(1952), + [anon_sym___attribute] = ACTIONS(1952), + [anon_sym___attribute__] = ACTIONS(1952), + [anon_sym___declspec] = ACTIONS(1952), + [anon_sym___cdecl] = ACTIONS(1952), + [anon_sym___clrcall] = ACTIONS(1952), + [anon_sym___stdcall] = ACTIONS(1952), + [anon_sym___fastcall] = ACTIONS(1952), + [anon_sym___thiscall] = ACTIONS(1952), + [anon_sym___vectorcall] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_LBRACK] = ACTIONS(1954), + [anon_sym_static] = ACTIONS(1952), + [anon_sym_auto] = ACTIONS(1952), + [anon_sym_register] = ACTIONS(1952), + [anon_sym_inline] = ACTIONS(1952), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1952), + [anon_sym_const] = ACTIONS(1952), + [anon_sym_volatile] = ACTIONS(1952), + [anon_sym_restrict] = ACTIONS(1952), + [anon_sym__Atomic] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_out] = ACTIONS(1952), + [anon_sym_inout] = ACTIONS(1952), + [anon_sym_bycopy] = ACTIONS(1952), + [anon_sym_byref] = ACTIONS(1952), + [anon_sym_oneway] = ACTIONS(1952), + [anon_sym__Nullable] = ACTIONS(1952), + [anon_sym__Nonnull] = ACTIONS(1952), + [anon_sym__Nullable_result] = ACTIONS(1952), + [anon_sym__Null_unspecified] = ACTIONS(1952), + [anon_sym___autoreleasing] = ACTIONS(1952), + [anon_sym___nullable] = ACTIONS(1952), + [anon_sym___nonnull] = ACTIONS(1952), + [anon_sym___strong] = ACTIONS(1952), + [anon_sym___weak] = ACTIONS(1952), + [anon_sym___bridge] = ACTIONS(1952), + [anon_sym___bridge_transfer] = ACTIONS(1952), + [anon_sym___bridge_retained] = ACTIONS(1952), + [anon_sym___unsafe_unretained] = ACTIONS(1952), + [anon_sym___block] = ACTIONS(1952), + [anon_sym___kindof] = ACTIONS(1952), + [anon_sym___unused] = ACTIONS(1952), + [anon_sym__Complex] = ACTIONS(1952), + [anon_sym___complex] = ACTIONS(1952), + [anon_sym_IBOutlet] = ACTIONS(1952), + [anon_sym_IBInspectable] = ACTIONS(1952), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1952), + [anon_sym_signed] = ACTIONS(1952), + [anon_sym_unsigned] = ACTIONS(1952), + [anon_sym_long] = ACTIONS(1952), + [anon_sym_short] = ACTIONS(1952), + [sym_primitive_type] = ACTIONS(1952), + [anon_sym_enum] = ACTIONS(1952), + [anon_sym_struct] = ACTIONS(1952), + [anon_sym_union] = ACTIONS(1952), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1952), + [anon_sym_case] = ACTIONS(1952), + [anon_sym_default] = ACTIONS(1952), + [anon_sym_while] = ACTIONS(1952), + [anon_sym_do] = ACTIONS(1952), + [anon_sym_for] = ACTIONS(1952), + [anon_sym_return] = ACTIONS(1952), + [anon_sym_break] = ACTIONS(1952), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_goto] = ACTIONS(1952), + [anon_sym_DASH_DASH] = ACTIONS(1954), + [anon_sym_PLUS_PLUS] = ACTIONS(1954), + [anon_sym_sizeof] = ACTIONS(1952), + [sym_number_literal] = ACTIONS(1954), + [anon_sym_L_SQUOTE] = ACTIONS(1954), + [anon_sym_u_SQUOTE] = ACTIONS(1954), + [anon_sym_U_SQUOTE] = ACTIONS(1954), + [anon_sym_u8_SQUOTE] = ACTIONS(1954), + [anon_sym_SQUOTE] = ACTIONS(1954), + [anon_sym_L_DQUOTE] = ACTIONS(1954), + [anon_sym_u_DQUOTE] = ACTIONS(1954), + [anon_sym_U_DQUOTE] = ACTIONS(1954), + [anon_sym_u8_DQUOTE] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(1954), + [sym_true] = ACTIONS(1952), + [sym_false] = ACTIONS(1952), + [sym_null] = ACTIONS(1952), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1954), + [anon_sym_ATimport] = ACTIONS(1954), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1952), + [anon_sym_ATcompatibility_alias] = ACTIONS(1954), + [anon_sym_ATprotocol] = ACTIONS(1954), + [anon_sym_ATclass] = ACTIONS(1954), + [anon_sym_ATinterface] = ACTIONS(1954), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1952), + [sym_method_attribute_specifier] = ACTIONS(1952), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1952), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1952), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1952), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1952), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1952), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1952), + [anon_sym_NS_AVAILABLE] = ACTIONS(1952), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1952), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_API_AVAILABLE] = ACTIONS(1952), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1952), + [anon_sym_API_DEPRECATED] = ACTIONS(1952), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1952), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1952), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1952), + [anon_sym___deprecated_msg] = ACTIONS(1952), + [anon_sym___deprecated_enum_msg] = ACTIONS(1952), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1952), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1952), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1952), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1952), + [anon_sym_ATimplementation] = ACTIONS(1954), + [anon_sym_NS_ENUM] = ACTIONS(1952), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1952), + [anon_sym_NS_OPTIONS] = ACTIONS(1952), + [anon_sym_typeof] = ACTIONS(1952), + [anon_sym___typeof] = ACTIONS(1952), + [anon_sym___typeof__] = ACTIONS(1952), + [sym_self] = ACTIONS(1952), + [sym_super] = ACTIONS(1952), + [sym_nil] = ACTIONS(1952), + [sym_id] = ACTIONS(1952), + [sym_instancetype] = ACTIONS(1952), + [sym_Class] = ACTIONS(1952), + [sym_SEL] = ACTIONS(1952), + [sym_IMP] = ACTIONS(1952), + [sym_BOOL] = ACTIONS(1952), + [sym_auto] = ACTIONS(1952), + [anon_sym_ATautoreleasepool] = ACTIONS(1954), + [anon_sym_ATsynchronized] = ACTIONS(1954), + [anon_sym_ATtry] = ACTIONS(1954), + [anon_sym_ATthrow] = ACTIONS(1954), + [anon_sym_ATselector] = ACTIONS(1954), + [anon_sym_ATencode] = ACTIONS(1954), + [anon_sym_AT] = ACTIONS(1952), + [sym_YES] = ACTIONS(1952), + [sym_NO] = ACTIONS(1952), + [anon_sym___builtin_available] = ACTIONS(1952), + [anon_sym_ATavailable] = ACTIONS(1954), + [anon_sym_va_arg] = ACTIONS(1952), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [625] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [aux_sym_preproc_else_token1] = ACTIONS(1948), + [aux_sym_preproc_elif_token1] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [626] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [aux_sym_preproc_else_token1] = ACTIONS(1940), + [aux_sym_preproc_elif_token1] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [627] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [aux_sym_preproc_else_token1] = ACTIONS(1940), + [aux_sym_preproc_elif_token1] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [628] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [aux_sym_preproc_else_token1] = ACTIONS(1940), + [aux_sym_preproc_elif_token1] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [629] = { + [sym_identifier] = ACTIONS(1952), + [aux_sym_preproc_include_token1] = ACTIONS(1954), + [aux_sym_preproc_def_token1] = ACTIONS(1954), + [aux_sym_preproc_if_token1] = ACTIONS(1952), + [aux_sym_preproc_if_token2] = ACTIONS(1952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1952), + [aux_sym_preproc_else_token1] = ACTIONS(1952), + [aux_sym_preproc_elif_token1] = ACTIONS(1952), + [anon_sym_LPAREN2] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_TILDE] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_typedef] = ACTIONS(1952), + [anon_sym_extern] = ACTIONS(1952), + [anon_sym___attribute] = ACTIONS(1952), + [anon_sym___attribute__] = ACTIONS(1952), + [anon_sym___declspec] = ACTIONS(1952), + [anon_sym___cdecl] = ACTIONS(1952), + [anon_sym___clrcall] = ACTIONS(1952), + [anon_sym___stdcall] = ACTIONS(1952), + [anon_sym___fastcall] = ACTIONS(1952), + [anon_sym___thiscall] = ACTIONS(1952), + [anon_sym___vectorcall] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_LBRACK] = ACTIONS(1954), + [anon_sym_static] = ACTIONS(1952), + [anon_sym_auto] = ACTIONS(1952), + [anon_sym_register] = ACTIONS(1952), + [anon_sym_inline] = ACTIONS(1952), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1952), + [anon_sym_const] = ACTIONS(1952), + [anon_sym_volatile] = ACTIONS(1952), + [anon_sym_restrict] = ACTIONS(1952), + [anon_sym__Atomic] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_out] = ACTIONS(1952), + [anon_sym_inout] = ACTIONS(1952), + [anon_sym_bycopy] = ACTIONS(1952), + [anon_sym_byref] = ACTIONS(1952), + [anon_sym_oneway] = ACTIONS(1952), + [anon_sym__Nullable] = ACTIONS(1952), + [anon_sym__Nonnull] = ACTIONS(1952), + [anon_sym__Nullable_result] = ACTIONS(1952), + [anon_sym__Null_unspecified] = ACTIONS(1952), + [anon_sym___autoreleasing] = ACTIONS(1952), + [anon_sym___nullable] = ACTIONS(1952), + [anon_sym___nonnull] = ACTIONS(1952), + [anon_sym___strong] = ACTIONS(1952), + [anon_sym___weak] = ACTIONS(1952), + [anon_sym___bridge] = ACTIONS(1952), + [anon_sym___bridge_transfer] = ACTIONS(1952), + [anon_sym___bridge_retained] = ACTIONS(1952), + [anon_sym___unsafe_unretained] = ACTIONS(1952), + [anon_sym___block] = ACTIONS(1952), + [anon_sym___kindof] = ACTIONS(1952), + [anon_sym___unused] = ACTIONS(1952), + [anon_sym__Complex] = ACTIONS(1952), + [anon_sym___complex] = ACTIONS(1952), + [anon_sym_IBOutlet] = ACTIONS(1952), + [anon_sym_IBInspectable] = ACTIONS(1952), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1952), + [anon_sym_signed] = ACTIONS(1952), + [anon_sym_unsigned] = ACTIONS(1952), + [anon_sym_long] = ACTIONS(1952), + [anon_sym_short] = ACTIONS(1952), + [sym_primitive_type] = ACTIONS(1952), + [anon_sym_enum] = ACTIONS(1952), + [anon_sym_struct] = ACTIONS(1952), + [anon_sym_union] = ACTIONS(1952), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1952), + [anon_sym_case] = ACTIONS(1952), + [anon_sym_default] = ACTIONS(1952), + [anon_sym_while] = ACTIONS(1952), + [anon_sym_do] = ACTIONS(1952), + [anon_sym_for] = ACTIONS(1952), + [anon_sym_return] = ACTIONS(1952), + [anon_sym_break] = ACTIONS(1952), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_goto] = ACTIONS(1952), + [anon_sym_DASH_DASH] = ACTIONS(1954), + [anon_sym_PLUS_PLUS] = ACTIONS(1954), + [anon_sym_sizeof] = ACTIONS(1952), + [sym_number_literal] = ACTIONS(1954), + [anon_sym_L_SQUOTE] = ACTIONS(1954), + [anon_sym_u_SQUOTE] = ACTIONS(1954), + [anon_sym_U_SQUOTE] = ACTIONS(1954), + [anon_sym_u8_SQUOTE] = ACTIONS(1954), + [anon_sym_SQUOTE] = ACTIONS(1954), + [anon_sym_L_DQUOTE] = ACTIONS(1954), + [anon_sym_u_DQUOTE] = ACTIONS(1954), + [anon_sym_U_DQUOTE] = ACTIONS(1954), + [anon_sym_u8_DQUOTE] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(1954), + [sym_true] = ACTIONS(1952), + [sym_false] = ACTIONS(1952), + [sym_null] = ACTIONS(1952), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1954), + [anon_sym_ATimport] = ACTIONS(1954), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1952), + [anon_sym_ATcompatibility_alias] = ACTIONS(1954), + [anon_sym_ATprotocol] = ACTIONS(1954), + [anon_sym_ATclass] = ACTIONS(1954), + [anon_sym_ATinterface] = ACTIONS(1954), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1952), + [sym_method_attribute_specifier] = ACTIONS(1952), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1952), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1952), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1952), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1952), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1952), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1952), + [anon_sym_NS_AVAILABLE] = ACTIONS(1952), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1952), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_API_AVAILABLE] = ACTIONS(1952), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1952), + [anon_sym_API_DEPRECATED] = ACTIONS(1952), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1952), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1952), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1952), + [anon_sym___deprecated_msg] = ACTIONS(1952), + [anon_sym___deprecated_enum_msg] = ACTIONS(1952), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1952), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1952), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1952), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1952), + [anon_sym_ATimplementation] = ACTIONS(1954), + [anon_sym_NS_ENUM] = ACTIONS(1952), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1952), + [anon_sym_NS_OPTIONS] = ACTIONS(1952), + [anon_sym_typeof] = ACTIONS(1952), + [anon_sym___typeof] = ACTIONS(1952), + [anon_sym___typeof__] = ACTIONS(1952), + [sym_self] = ACTIONS(1952), + [sym_super] = ACTIONS(1952), + [sym_nil] = ACTIONS(1952), + [sym_id] = ACTIONS(1952), + [sym_instancetype] = ACTIONS(1952), + [sym_Class] = ACTIONS(1952), + [sym_SEL] = ACTIONS(1952), + [sym_IMP] = ACTIONS(1952), + [sym_BOOL] = ACTIONS(1952), + [sym_auto] = ACTIONS(1952), + [anon_sym_ATautoreleasepool] = ACTIONS(1954), + [anon_sym_ATsynchronized] = ACTIONS(1954), + [anon_sym_ATtry] = ACTIONS(1954), + [anon_sym_ATthrow] = ACTIONS(1954), + [anon_sym_ATselector] = ACTIONS(1954), + [anon_sym_ATencode] = ACTIONS(1954), + [anon_sym_AT] = ACTIONS(1952), + [sym_YES] = ACTIONS(1952), + [sym_NO] = ACTIONS(1952), + [anon_sym___builtin_available] = ACTIONS(1952), + [anon_sym_ATavailable] = ACTIONS(1954), + [anon_sym_va_arg] = ACTIONS(1952), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [630] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [aux_sym_preproc_else_token1] = ACTIONS(1948), + [aux_sym_preproc_elif_token1] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [631] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [aux_sym_preproc_else_token1] = ACTIONS(1948), + [aux_sym_preproc_elif_token1] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [632] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [aux_sym_preproc_else_token1] = ACTIONS(1948), + [aux_sym_preproc_elif_token1] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [633] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [aux_sym_preproc_else_token1] = ACTIONS(1948), + [aux_sym_preproc_elif_token1] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [634] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [aux_sym_preproc_else_token1] = ACTIONS(1940), + [aux_sym_preproc_elif_token1] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [635] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [aux_sym_preproc_else_token1] = ACTIONS(1948), + [aux_sym_preproc_elif_token1] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [636] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [aux_sym_preproc_else_token1] = ACTIONS(1948), + [aux_sym_preproc_elif_token1] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [637] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [aux_sym_preproc_else_token1] = ACTIONS(1948), + [aux_sym_preproc_elif_token1] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [638] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [aux_sym_preproc_else_token1] = ACTIONS(1948), + [aux_sym_preproc_elif_token1] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [639] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [aux_sym_preproc_else_token1] = ACTIONS(1948), + [aux_sym_preproc_elif_token1] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [640] = { + [sym_identifier] = ACTIONS(1956), + [aux_sym_preproc_include_token1] = ACTIONS(1958), + [aux_sym_preproc_def_token1] = ACTIONS(1958), + [aux_sym_preproc_if_token1] = ACTIONS(1956), + [aux_sym_preproc_if_token2] = ACTIONS(1956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1956), + [aux_sym_preproc_else_token1] = ACTIONS(1956), + [aux_sym_preproc_elif_token1] = ACTIONS(1956), + [anon_sym_LPAREN2] = ACTIONS(1958), + [anon_sym_BANG] = ACTIONS(1958), + [anon_sym_TILDE] = ACTIONS(1958), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_STAR] = ACTIONS(1958), + [anon_sym_CARET] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1958), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_typedef] = ACTIONS(1956), + [anon_sym_extern] = ACTIONS(1956), + [anon_sym___attribute] = ACTIONS(1956), + [anon_sym___attribute__] = ACTIONS(1956), + [anon_sym___declspec] = ACTIONS(1956), + [anon_sym___cdecl] = ACTIONS(1956), + [anon_sym___clrcall] = ACTIONS(1956), + [anon_sym___stdcall] = ACTIONS(1956), + [anon_sym___fastcall] = ACTIONS(1956), + [anon_sym___thiscall] = ACTIONS(1956), + [anon_sym___vectorcall] = ACTIONS(1956), + [anon_sym_LBRACE] = ACTIONS(1958), + [anon_sym_LBRACK] = ACTIONS(1958), + [anon_sym_static] = ACTIONS(1956), + [anon_sym_auto] = ACTIONS(1956), + [anon_sym_register] = ACTIONS(1956), + [anon_sym_inline] = ACTIONS(1956), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1956), + [anon_sym_const] = ACTIONS(1956), + [anon_sym_volatile] = ACTIONS(1956), + [anon_sym_restrict] = ACTIONS(1956), + [anon_sym__Atomic] = ACTIONS(1956), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_out] = ACTIONS(1956), + [anon_sym_inout] = ACTIONS(1956), + [anon_sym_bycopy] = ACTIONS(1956), + [anon_sym_byref] = ACTIONS(1956), + [anon_sym_oneway] = ACTIONS(1956), + [anon_sym__Nullable] = ACTIONS(1956), + [anon_sym__Nonnull] = ACTIONS(1956), + [anon_sym__Nullable_result] = ACTIONS(1956), + [anon_sym__Null_unspecified] = ACTIONS(1956), + [anon_sym___autoreleasing] = ACTIONS(1956), + [anon_sym___nullable] = ACTIONS(1956), + [anon_sym___nonnull] = ACTIONS(1956), + [anon_sym___strong] = ACTIONS(1956), + [anon_sym___weak] = ACTIONS(1956), + [anon_sym___bridge] = ACTIONS(1956), + [anon_sym___bridge_transfer] = ACTIONS(1956), + [anon_sym___bridge_retained] = ACTIONS(1956), + [anon_sym___unsafe_unretained] = ACTIONS(1956), + [anon_sym___block] = ACTIONS(1956), + [anon_sym___kindof] = ACTIONS(1956), + [anon_sym___unused] = ACTIONS(1956), + [anon_sym__Complex] = ACTIONS(1956), + [anon_sym___complex] = ACTIONS(1956), + [anon_sym_IBOutlet] = ACTIONS(1956), + [anon_sym_IBInspectable] = ACTIONS(1956), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1956), + [anon_sym_signed] = ACTIONS(1956), + [anon_sym_unsigned] = ACTIONS(1956), + [anon_sym_long] = ACTIONS(1956), + [anon_sym_short] = ACTIONS(1956), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_enum] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1956), + [anon_sym_union] = ACTIONS(1956), + [anon_sym_if] = ACTIONS(1956), + [anon_sym_switch] = ACTIONS(1956), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1956), + [anon_sym_while] = ACTIONS(1956), + [anon_sym_do] = ACTIONS(1956), + [anon_sym_for] = ACTIONS(1956), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_break] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(1956), + [anon_sym_goto] = ACTIONS(1956), + [anon_sym_DASH_DASH] = ACTIONS(1958), + [anon_sym_PLUS_PLUS] = ACTIONS(1958), + [anon_sym_sizeof] = ACTIONS(1956), + [sym_number_literal] = ACTIONS(1958), + [anon_sym_L_SQUOTE] = ACTIONS(1958), + [anon_sym_u_SQUOTE] = ACTIONS(1958), + [anon_sym_U_SQUOTE] = ACTIONS(1958), + [anon_sym_u8_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_L_DQUOTE] = ACTIONS(1958), + [anon_sym_u_DQUOTE] = ACTIONS(1958), + [anon_sym_U_DQUOTE] = ACTIONS(1958), + [anon_sym_u8_DQUOTE] = ACTIONS(1958), + [anon_sym_DQUOTE] = ACTIONS(1958), + [sym_true] = ACTIONS(1956), + [sym_false] = ACTIONS(1956), + [sym_null] = ACTIONS(1956), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1958), + [anon_sym_ATimport] = ACTIONS(1958), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1956), + [anon_sym_ATcompatibility_alias] = ACTIONS(1958), + [anon_sym_ATprotocol] = ACTIONS(1958), + [anon_sym_ATclass] = ACTIONS(1958), + [anon_sym_ATinterface] = ACTIONS(1958), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1956), + [sym_method_attribute_specifier] = ACTIONS(1956), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1956), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1956), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1956), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1956), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1956), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1956), + [anon_sym_NS_AVAILABLE] = ACTIONS(1956), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1956), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1956), + [anon_sym_API_AVAILABLE] = ACTIONS(1956), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1956), + [anon_sym_API_DEPRECATED] = ACTIONS(1956), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1956), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1956), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1956), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1956), + [anon_sym___deprecated_msg] = ACTIONS(1956), + [anon_sym___deprecated_enum_msg] = ACTIONS(1956), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1956), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1956), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1956), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1956), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1956), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1956), + [anon_sym_ATimplementation] = ACTIONS(1958), + [anon_sym_NS_ENUM] = ACTIONS(1956), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1956), + [anon_sym_NS_OPTIONS] = ACTIONS(1956), + [anon_sym_typeof] = ACTIONS(1956), + [anon_sym___typeof] = ACTIONS(1956), + [anon_sym___typeof__] = ACTIONS(1956), + [sym_self] = ACTIONS(1956), + [sym_super] = ACTIONS(1956), + [sym_nil] = ACTIONS(1956), + [sym_id] = ACTIONS(1956), + [sym_instancetype] = ACTIONS(1956), + [sym_Class] = ACTIONS(1956), + [sym_SEL] = ACTIONS(1956), + [sym_IMP] = ACTIONS(1956), + [sym_BOOL] = ACTIONS(1956), + [sym_auto] = ACTIONS(1956), + [anon_sym_ATautoreleasepool] = ACTIONS(1958), + [anon_sym_ATsynchronized] = ACTIONS(1958), + [anon_sym_ATtry] = ACTIONS(1958), + [anon_sym_ATthrow] = ACTIONS(1958), + [anon_sym_ATselector] = ACTIONS(1958), + [anon_sym_ATencode] = ACTIONS(1958), + [anon_sym_AT] = ACTIONS(1956), + [sym_YES] = ACTIONS(1956), + [sym_NO] = ACTIONS(1956), + [anon_sym___builtin_available] = ACTIONS(1956), + [anon_sym_ATavailable] = ACTIONS(1958), + [anon_sym_va_arg] = ACTIONS(1956), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [641] = { + [sym_identifier] = ACTIONS(1960), + [aux_sym_preproc_include_token1] = ACTIONS(1962), + [aux_sym_preproc_def_token1] = ACTIONS(1962), + [aux_sym_preproc_if_token1] = ACTIONS(1960), + [aux_sym_preproc_if_token2] = ACTIONS(1960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1960), + [aux_sym_preproc_else_token1] = ACTIONS(1960), + [aux_sym_preproc_elif_token1] = ACTIONS(1960), + [anon_sym_LPAREN2] = ACTIONS(1962), + [anon_sym_BANG] = ACTIONS(1962), + [anon_sym_TILDE] = ACTIONS(1962), + [anon_sym_DASH] = ACTIONS(1960), + [anon_sym_PLUS] = ACTIONS(1960), + [anon_sym_STAR] = ACTIONS(1962), + [anon_sym_CARET] = ACTIONS(1962), + [anon_sym_AMP] = ACTIONS(1962), + [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_typedef] = ACTIONS(1960), + [anon_sym_extern] = ACTIONS(1960), + [anon_sym___attribute] = ACTIONS(1960), + [anon_sym___attribute__] = ACTIONS(1960), + [anon_sym___declspec] = ACTIONS(1960), + [anon_sym___cdecl] = ACTIONS(1960), + [anon_sym___clrcall] = ACTIONS(1960), + [anon_sym___stdcall] = ACTIONS(1960), + [anon_sym___fastcall] = ACTIONS(1960), + [anon_sym___thiscall] = ACTIONS(1960), + [anon_sym___vectorcall] = ACTIONS(1960), + [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1962), + [anon_sym_static] = ACTIONS(1960), + [anon_sym_auto] = ACTIONS(1960), + [anon_sym_register] = ACTIONS(1960), + [anon_sym_inline] = ACTIONS(1960), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1960), + [anon_sym_const] = ACTIONS(1960), + [anon_sym_volatile] = ACTIONS(1960), + [anon_sym_restrict] = ACTIONS(1960), + [anon_sym__Atomic] = ACTIONS(1960), + [anon_sym_in] = ACTIONS(1960), + [anon_sym_out] = ACTIONS(1960), + [anon_sym_inout] = ACTIONS(1960), + [anon_sym_bycopy] = ACTIONS(1960), + [anon_sym_byref] = ACTIONS(1960), + [anon_sym_oneway] = ACTIONS(1960), + [anon_sym__Nullable] = ACTIONS(1960), + [anon_sym__Nonnull] = ACTIONS(1960), + [anon_sym__Nullable_result] = ACTIONS(1960), + [anon_sym__Null_unspecified] = ACTIONS(1960), + [anon_sym___autoreleasing] = ACTIONS(1960), + [anon_sym___nullable] = ACTIONS(1960), + [anon_sym___nonnull] = ACTIONS(1960), + [anon_sym___strong] = ACTIONS(1960), + [anon_sym___weak] = ACTIONS(1960), + [anon_sym___bridge] = ACTIONS(1960), + [anon_sym___bridge_transfer] = ACTIONS(1960), + [anon_sym___bridge_retained] = ACTIONS(1960), + [anon_sym___unsafe_unretained] = ACTIONS(1960), + [anon_sym___block] = ACTIONS(1960), + [anon_sym___kindof] = ACTIONS(1960), + [anon_sym___unused] = ACTIONS(1960), + [anon_sym__Complex] = ACTIONS(1960), + [anon_sym___complex] = ACTIONS(1960), + [anon_sym_IBOutlet] = ACTIONS(1960), + [anon_sym_IBInspectable] = ACTIONS(1960), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1960), + [anon_sym_signed] = ACTIONS(1960), + [anon_sym_unsigned] = ACTIONS(1960), + [anon_sym_long] = ACTIONS(1960), + [anon_sym_short] = ACTIONS(1960), + [sym_primitive_type] = ACTIONS(1960), + [anon_sym_enum] = ACTIONS(1960), + [anon_sym_struct] = ACTIONS(1960), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_if] = ACTIONS(1960), + [anon_sym_switch] = ACTIONS(1960), + [anon_sym_case] = ACTIONS(1960), + [anon_sym_default] = ACTIONS(1960), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1960), + [anon_sym_for] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1960), + [anon_sym_break] = ACTIONS(1960), + [anon_sym_continue] = ACTIONS(1960), + [anon_sym_goto] = ACTIONS(1960), + [anon_sym_DASH_DASH] = ACTIONS(1962), + [anon_sym_PLUS_PLUS] = ACTIONS(1962), + [anon_sym_sizeof] = ACTIONS(1960), + [sym_number_literal] = ACTIONS(1962), + [anon_sym_L_SQUOTE] = ACTIONS(1962), + [anon_sym_u_SQUOTE] = ACTIONS(1962), + [anon_sym_U_SQUOTE] = ACTIONS(1962), + [anon_sym_u8_SQUOTE] = ACTIONS(1962), + [anon_sym_SQUOTE] = ACTIONS(1962), + [anon_sym_L_DQUOTE] = ACTIONS(1962), + [anon_sym_u_DQUOTE] = ACTIONS(1962), + [anon_sym_U_DQUOTE] = ACTIONS(1962), + [anon_sym_u8_DQUOTE] = ACTIONS(1962), + [anon_sym_DQUOTE] = ACTIONS(1962), + [sym_true] = ACTIONS(1960), + [sym_false] = ACTIONS(1960), + [sym_null] = ACTIONS(1960), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1962), + [anon_sym_ATimport] = ACTIONS(1962), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1960), + [anon_sym_ATcompatibility_alias] = ACTIONS(1962), + [anon_sym_ATprotocol] = ACTIONS(1962), + [anon_sym_ATclass] = ACTIONS(1962), + [anon_sym_ATinterface] = ACTIONS(1962), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1960), + [sym_method_attribute_specifier] = ACTIONS(1960), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1960), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1960), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1960), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1960), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1960), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1960), + [anon_sym_NS_AVAILABLE] = ACTIONS(1960), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1960), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1960), + [anon_sym_API_AVAILABLE] = ACTIONS(1960), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1960), + [anon_sym_API_DEPRECATED] = ACTIONS(1960), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1960), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1960), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1960), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1960), + [anon_sym___deprecated_msg] = ACTIONS(1960), + [anon_sym___deprecated_enum_msg] = ACTIONS(1960), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1960), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1960), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1960), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1960), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1960), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1960), + [anon_sym_ATimplementation] = ACTIONS(1962), + [anon_sym_NS_ENUM] = ACTIONS(1960), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1960), + [anon_sym_NS_OPTIONS] = ACTIONS(1960), + [anon_sym_typeof] = ACTIONS(1960), + [anon_sym___typeof] = ACTIONS(1960), + [anon_sym___typeof__] = ACTIONS(1960), + [sym_self] = ACTIONS(1960), + [sym_super] = ACTIONS(1960), + [sym_nil] = ACTIONS(1960), + [sym_id] = ACTIONS(1960), + [sym_instancetype] = ACTIONS(1960), + [sym_Class] = ACTIONS(1960), + [sym_SEL] = ACTIONS(1960), + [sym_IMP] = ACTIONS(1960), + [sym_BOOL] = ACTIONS(1960), + [sym_auto] = ACTIONS(1960), + [anon_sym_ATautoreleasepool] = ACTIONS(1962), + [anon_sym_ATsynchronized] = ACTIONS(1962), + [anon_sym_ATtry] = ACTIONS(1962), + [anon_sym_ATthrow] = ACTIONS(1962), + [anon_sym_ATselector] = ACTIONS(1962), + [anon_sym_ATencode] = ACTIONS(1962), + [anon_sym_AT] = ACTIONS(1960), + [sym_YES] = ACTIONS(1960), + [sym_NO] = ACTIONS(1960), + [anon_sym___builtin_available] = ACTIONS(1960), + [anon_sym_ATavailable] = ACTIONS(1962), + [anon_sym_va_arg] = ACTIONS(1960), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [642] = { + [sym_identifier] = ACTIONS(1964), + [aux_sym_preproc_include_token1] = ACTIONS(1966), + [aux_sym_preproc_def_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token1] = ACTIONS(1964), + [aux_sym_preproc_if_token2] = ACTIONS(1964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1964), + [aux_sym_preproc_else_token1] = ACTIONS(1964), + [aux_sym_preproc_elif_token1] = ACTIONS(1964), + [anon_sym_LPAREN2] = ACTIONS(1966), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_TILDE] = ACTIONS(1966), + [anon_sym_DASH] = ACTIONS(1964), + [anon_sym_PLUS] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_CARET] = ACTIONS(1966), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1964), + [anon_sym_extern] = ACTIONS(1964), + [anon_sym___attribute] = ACTIONS(1964), + [anon_sym___attribute__] = ACTIONS(1964), + [anon_sym___declspec] = ACTIONS(1964), + [anon_sym___cdecl] = ACTIONS(1964), + [anon_sym___clrcall] = ACTIONS(1964), + [anon_sym___stdcall] = ACTIONS(1964), + [anon_sym___fastcall] = ACTIONS(1964), + [anon_sym___thiscall] = ACTIONS(1964), + [anon_sym___vectorcall] = ACTIONS(1964), + [anon_sym_LBRACE] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1964), + [anon_sym_auto] = ACTIONS(1964), + [anon_sym_register] = ACTIONS(1964), + [anon_sym_inline] = ACTIONS(1964), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1964), + [anon_sym_const] = ACTIONS(1964), + [anon_sym_volatile] = ACTIONS(1964), + [anon_sym_restrict] = ACTIONS(1964), + [anon_sym__Atomic] = ACTIONS(1964), + [anon_sym_in] = ACTIONS(1964), + [anon_sym_out] = ACTIONS(1964), + [anon_sym_inout] = ACTIONS(1964), + [anon_sym_bycopy] = ACTIONS(1964), + [anon_sym_byref] = ACTIONS(1964), + [anon_sym_oneway] = ACTIONS(1964), + [anon_sym__Nullable] = ACTIONS(1964), + [anon_sym__Nonnull] = ACTIONS(1964), + [anon_sym__Nullable_result] = ACTIONS(1964), + [anon_sym__Null_unspecified] = ACTIONS(1964), + [anon_sym___autoreleasing] = ACTIONS(1964), + [anon_sym___nullable] = ACTIONS(1964), + [anon_sym___nonnull] = ACTIONS(1964), + [anon_sym___strong] = ACTIONS(1964), + [anon_sym___weak] = ACTIONS(1964), + [anon_sym___bridge] = ACTIONS(1964), + [anon_sym___bridge_transfer] = ACTIONS(1964), + [anon_sym___bridge_retained] = ACTIONS(1964), + [anon_sym___unsafe_unretained] = ACTIONS(1964), + [anon_sym___block] = ACTIONS(1964), + [anon_sym___kindof] = ACTIONS(1964), + [anon_sym___unused] = ACTIONS(1964), + [anon_sym__Complex] = ACTIONS(1964), + [anon_sym___complex] = ACTIONS(1964), + [anon_sym_IBOutlet] = ACTIONS(1964), + [anon_sym_IBInspectable] = ACTIONS(1964), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1964), + [anon_sym_signed] = ACTIONS(1964), + [anon_sym_unsigned] = ACTIONS(1964), + [anon_sym_long] = ACTIONS(1964), + [anon_sym_short] = ACTIONS(1964), + [sym_primitive_type] = ACTIONS(1964), + [anon_sym_enum] = ACTIONS(1964), + [anon_sym_struct] = ACTIONS(1964), + [anon_sym_union] = ACTIONS(1964), + [anon_sym_if] = ACTIONS(1964), + [anon_sym_switch] = ACTIONS(1964), + [anon_sym_case] = ACTIONS(1964), + [anon_sym_default] = ACTIONS(1964), + [anon_sym_while] = ACTIONS(1964), + [anon_sym_do] = ACTIONS(1964), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1964), + [anon_sym_break] = ACTIONS(1964), + [anon_sym_continue] = ACTIONS(1964), + [anon_sym_goto] = ACTIONS(1964), + [anon_sym_DASH_DASH] = ACTIONS(1966), + [anon_sym_PLUS_PLUS] = ACTIONS(1966), + [anon_sym_sizeof] = ACTIONS(1964), + [sym_number_literal] = ACTIONS(1966), + [anon_sym_L_SQUOTE] = ACTIONS(1966), + [anon_sym_u_SQUOTE] = ACTIONS(1966), + [anon_sym_U_SQUOTE] = ACTIONS(1966), + [anon_sym_u8_SQUOTE] = ACTIONS(1966), + [anon_sym_SQUOTE] = ACTIONS(1966), + [anon_sym_L_DQUOTE] = ACTIONS(1966), + [anon_sym_u_DQUOTE] = ACTIONS(1966), + [anon_sym_U_DQUOTE] = ACTIONS(1966), + [anon_sym_u8_DQUOTE] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(1966), + [sym_true] = ACTIONS(1964), + [sym_false] = ACTIONS(1964), + [sym_null] = ACTIONS(1964), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1966), + [anon_sym_ATimport] = ACTIONS(1966), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1964), + [anon_sym_ATcompatibility_alias] = ACTIONS(1966), + [anon_sym_ATprotocol] = ACTIONS(1966), + [anon_sym_ATclass] = ACTIONS(1966), + [anon_sym_ATinterface] = ACTIONS(1966), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1964), + [sym_method_attribute_specifier] = ACTIONS(1964), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1964), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1964), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1964), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1964), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1964), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1964), + [anon_sym_NS_AVAILABLE] = ACTIONS(1964), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1964), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1964), + [anon_sym_API_AVAILABLE] = ACTIONS(1964), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1964), + [anon_sym_API_DEPRECATED] = ACTIONS(1964), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1964), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1964), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1964), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1964), + [anon_sym___deprecated_msg] = ACTIONS(1964), + [anon_sym___deprecated_enum_msg] = ACTIONS(1964), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1964), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1964), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1964), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1964), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1964), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1964), + [anon_sym_ATimplementation] = ACTIONS(1966), + [anon_sym_NS_ENUM] = ACTIONS(1964), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1964), + [anon_sym_NS_OPTIONS] = ACTIONS(1964), + [anon_sym_typeof] = ACTIONS(1964), + [anon_sym___typeof] = ACTIONS(1964), + [anon_sym___typeof__] = ACTIONS(1964), + [sym_self] = ACTIONS(1964), + [sym_super] = ACTIONS(1964), + [sym_nil] = ACTIONS(1964), + [sym_id] = ACTIONS(1964), + [sym_instancetype] = ACTIONS(1964), + [sym_Class] = ACTIONS(1964), + [sym_SEL] = ACTIONS(1964), + [sym_IMP] = ACTIONS(1964), + [sym_BOOL] = ACTIONS(1964), + [sym_auto] = ACTIONS(1964), + [anon_sym_ATautoreleasepool] = ACTIONS(1966), + [anon_sym_ATsynchronized] = ACTIONS(1966), + [anon_sym_ATtry] = ACTIONS(1966), + [anon_sym_ATthrow] = ACTIONS(1966), + [anon_sym_ATselector] = ACTIONS(1966), + [anon_sym_ATencode] = ACTIONS(1966), + [anon_sym_AT] = ACTIONS(1964), + [sym_YES] = ACTIONS(1964), + [sym_NO] = ACTIONS(1964), + [anon_sym___builtin_available] = ACTIONS(1964), + [anon_sym_ATavailable] = ACTIONS(1966), + [anon_sym_va_arg] = ACTIONS(1964), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [643] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [aux_sym_preproc_else_token1] = ACTIONS(1968), + [aux_sym_preproc_elif_token1] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [644] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [aux_sym_preproc_else_token1] = ACTIONS(1968), + [aux_sym_preproc_elif_token1] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [645] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [aux_sym_preproc_else_token1] = ACTIONS(1968), + [aux_sym_preproc_elif_token1] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [646] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [aux_sym_preproc_else_token1] = ACTIONS(1968), + [aux_sym_preproc_elif_token1] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [647] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [aux_sym_preproc_else_token1] = ACTIONS(1968), + [aux_sym_preproc_elif_token1] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [648] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [aux_sym_preproc_else_token1] = ACTIONS(1968), + [aux_sym_preproc_elif_token1] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [649] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [aux_sym_preproc_else_token1] = ACTIONS(1968), + [aux_sym_preproc_elif_token1] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [650] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [aux_sym_preproc_else_token1] = ACTIONS(1968), + [aux_sym_preproc_elif_token1] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [651] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [aux_sym_preproc_else_token1] = ACTIONS(1968), + [aux_sym_preproc_elif_token1] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [652] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [aux_sym_preproc_else_token1] = ACTIONS(1968), + [aux_sym_preproc_elif_token1] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [653] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [aux_sym_preproc_else_token1] = ACTIONS(1968), + [aux_sym_preproc_elif_token1] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [654] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [aux_sym_preproc_else_token1] = ACTIONS(1968), + [aux_sym_preproc_elif_token1] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [655] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [aux_sym_preproc_else_token1] = ACTIONS(1968), + [aux_sym_preproc_elif_token1] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [656] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [aux_sym_preproc_else_token1] = ACTIONS(1968), + [aux_sym_preproc_elif_token1] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [657] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [aux_sym_preproc_else_token1] = ACTIONS(1968), + [aux_sym_preproc_elif_token1] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [658] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [aux_sym_preproc_else_token1] = ACTIONS(1972), + [aux_sym_preproc_elif_token1] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [659] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [aux_sym_preproc_else_token1] = ACTIONS(1972), + [aux_sym_preproc_elif_token1] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [660] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [aux_sym_preproc_else_token1] = ACTIONS(1972), + [aux_sym_preproc_elif_token1] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [661] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [aux_sym_preproc_else_token1] = ACTIONS(1972), + [aux_sym_preproc_elif_token1] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [662] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [aux_sym_preproc_else_token1] = ACTIONS(1972), + [aux_sym_preproc_elif_token1] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [663] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [aux_sym_preproc_else_token1] = ACTIONS(1972), + [aux_sym_preproc_elif_token1] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [664] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [aux_sym_preproc_else_token1] = ACTIONS(1972), + [aux_sym_preproc_elif_token1] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [665] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [aux_sym_preproc_else_token1] = ACTIONS(1972), + [aux_sym_preproc_elif_token1] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [666] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [aux_sym_preproc_else_token1] = ACTIONS(1972), + [aux_sym_preproc_elif_token1] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [667] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [aux_sym_preproc_else_token1] = ACTIONS(1972), + [aux_sym_preproc_elif_token1] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [668] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [aux_sym_preproc_else_token1] = ACTIONS(1972), + [aux_sym_preproc_elif_token1] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [669] = { + [sym_identifier] = ACTIONS(1976), + [aux_sym_preproc_include_token1] = ACTIONS(1978), + [aux_sym_preproc_def_token1] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1976), + [aux_sym_preproc_if_token2] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1976), + [aux_sym_preproc_else_token1] = ACTIONS(1976), + [aux_sym_preproc_elif_token1] = ACTIONS(1976), + [anon_sym_LPAREN2] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_TILDE] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_CARET] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_typedef] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym___attribute] = ACTIONS(1976), + [anon_sym___attribute__] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1976), + [anon_sym___cdecl] = ACTIONS(1976), + [anon_sym___clrcall] = ACTIONS(1976), + [anon_sym___stdcall] = ACTIONS(1976), + [anon_sym___fastcall] = ACTIONS(1976), + [anon_sym___thiscall] = ACTIONS(1976), + [anon_sym___vectorcall] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_auto] = ACTIONS(1976), + [anon_sym_register] = ACTIONS(1976), + [anon_sym_inline] = ACTIONS(1976), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_volatile] = ACTIONS(1976), + [anon_sym_restrict] = ACTIONS(1976), + [anon_sym__Atomic] = ACTIONS(1976), + [anon_sym_in] = ACTIONS(1976), + [anon_sym_out] = ACTIONS(1976), + [anon_sym_inout] = ACTIONS(1976), + [anon_sym_bycopy] = ACTIONS(1976), + [anon_sym_byref] = ACTIONS(1976), + [anon_sym_oneway] = ACTIONS(1976), + [anon_sym__Nullable] = ACTIONS(1976), + [anon_sym__Nonnull] = ACTIONS(1976), + [anon_sym__Nullable_result] = ACTIONS(1976), + [anon_sym__Null_unspecified] = ACTIONS(1976), + [anon_sym___autoreleasing] = ACTIONS(1976), + [anon_sym___nullable] = ACTIONS(1976), + [anon_sym___nonnull] = ACTIONS(1976), + [anon_sym___strong] = ACTIONS(1976), + [anon_sym___weak] = ACTIONS(1976), + [anon_sym___bridge] = ACTIONS(1976), + [anon_sym___bridge_transfer] = ACTIONS(1976), + [anon_sym___bridge_retained] = ACTIONS(1976), + [anon_sym___unsafe_unretained] = ACTIONS(1976), + [anon_sym___block] = ACTIONS(1976), + [anon_sym___kindof] = ACTIONS(1976), + [anon_sym___unused] = ACTIONS(1976), + [anon_sym__Complex] = ACTIONS(1976), + [anon_sym___complex] = ACTIONS(1976), + [anon_sym_IBOutlet] = ACTIONS(1976), + [anon_sym_IBInspectable] = ACTIONS(1976), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1976), + [anon_sym_unsigned] = ACTIONS(1976), + [anon_sym_long] = ACTIONS(1976), + [anon_sym_short] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_switch] = ACTIONS(1976), + [anon_sym_case] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_goto] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_PLUS_PLUS] = ACTIONS(1978), + [anon_sym_sizeof] = ACTIONS(1976), + [sym_number_literal] = ACTIONS(1978), + [anon_sym_L_SQUOTE] = ACTIONS(1978), + [anon_sym_u_SQUOTE] = ACTIONS(1978), + [anon_sym_U_SQUOTE] = ACTIONS(1978), + [anon_sym_u8_SQUOTE] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_L_DQUOTE] = ACTIONS(1978), + [anon_sym_u_DQUOTE] = ACTIONS(1978), + [anon_sym_U_DQUOTE] = ACTIONS(1978), + [anon_sym_u8_DQUOTE] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1978), + [anon_sym_ATimport] = ACTIONS(1978), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1976), + [anon_sym_ATcompatibility_alias] = ACTIONS(1978), + [anon_sym_ATprotocol] = ACTIONS(1978), + [anon_sym_ATclass] = ACTIONS(1978), + [anon_sym_ATinterface] = ACTIONS(1978), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1976), + [sym_method_attribute_specifier] = ACTIONS(1976), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1976), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE] = ACTIONS(1976), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_API_AVAILABLE] = ACTIONS(1976), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_API_DEPRECATED] = ACTIONS(1976), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1976), + [anon_sym___deprecated_msg] = ACTIONS(1976), + [anon_sym___deprecated_enum_msg] = ACTIONS(1976), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1976), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1976), + [anon_sym_ATimplementation] = ACTIONS(1978), + [anon_sym_NS_ENUM] = ACTIONS(1976), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1976), + [anon_sym_NS_OPTIONS] = ACTIONS(1976), + [anon_sym_typeof] = ACTIONS(1976), + [anon_sym___typeof] = ACTIONS(1976), + [anon_sym___typeof__] = ACTIONS(1976), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_nil] = ACTIONS(1976), + [sym_id] = ACTIONS(1976), + [sym_instancetype] = ACTIONS(1976), + [sym_Class] = ACTIONS(1976), + [sym_SEL] = ACTIONS(1976), + [sym_IMP] = ACTIONS(1976), + [sym_BOOL] = ACTIONS(1976), + [sym_auto] = ACTIONS(1976), + [anon_sym_ATautoreleasepool] = ACTIONS(1978), + [anon_sym_ATsynchronized] = ACTIONS(1978), + [anon_sym_ATtry] = ACTIONS(1978), + [anon_sym_ATthrow] = ACTIONS(1978), + [anon_sym_ATselector] = ACTIONS(1978), + [anon_sym_ATencode] = ACTIONS(1978), + [anon_sym_AT] = ACTIONS(1976), + [sym_YES] = ACTIONS(1976), + [sym_NO] = ACTIONS(1976), + [anon_sym___builtin_available] = ACTIONS(1976), + [anon_sym_ATavailable] = ACTIONS(1978), + [anon_sym_va_arg] = ACTIONS(1976), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [670] = { + [sym_identifier] = ACTIONS(1976), + [aux_sym_preproc_include_token1] = ACTIONS(1978), + [aux_sym_preproc_def_token1] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1976), + [aux_sym_preproc_if_token2] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1976), + [aux_sym_preproc_else_token1] = ACTIONS(1976), + [aux_sym_preproc_elif_token1] = ACTIONS(1976), + [anon_sym_LPAREN2] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_TILDE] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_CARET] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_typedef] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym___attribute] = ACTIONS(1976), + [anon_sym___attribute__] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1976), + [anon_sym___cdecl] = ACTIONS(1976), + [anon_sym___clrcall] = ACTIONS(1976), + [anon_sym___stdcall] = ACTIONS(1976), + [anon_sym___fastcall] = ACTIONS(1976), + [anon_sym___thiscall] = ACTIONS(1976), + [anon_sym___vectorcall] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_auto] = ACTIONS(1976), + [anon_sym_register] = ACTIONS(1976), + [anon_sym_inline] = ACTIONS(1976), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_volatile] = ACTIONS(1976), + [anon_sym_restrict] = ACTIONS(1976), + [anon_sym__Atomic] = ACTIONS(1976), + [anon_sym_in] = ACTIONS(1976), + [anon_sym_out] = ACTIONS(1976), + [anon_sym_inout] = ACTIONS(1976), + [anon_sym_bycopy] = ACTIONS(1976), + [anon_sym_byref] = ACTIONS(1976), + [anon_sym_oneway] = ACTIONS(1976), + [anon_sym__Nullable] = ACTIONS(1976), + [anon_sym__Nonnull] = ACTIONS(1976), + [anon_sym__Nullable_result] = ACTIONS(1976), + [anon_sym__Null_unspecified] = ACTIONS(1976), + [anon_sym___autoreleasing] = ACTIONS(1976), + [anon_sym___nullable] = ACTIONS(1976), + [anon_sym___nonnull] = ACTIONS(1976), + [anon_sym___strong] = ACTIONS(1976), + [anon_sym___weak] = ACTIONS(1976), + [anon_sym___bridge] = ACTIONS(1976), + [anon_sym___bridge_transfer] = ACTIONS(1976), + [anon_sym___bridge_retained] = ACTIONS(1976), + [anon_sym___unsafe_unretained] = ACTIONS(1976), + [anon_sym___block] = ACTIONS(1976), + [anon_sym___kindof] = ACTIONS(1976), + [anon_sym___unused] = ACTIONS(1976), + [anon_sym__Complex] = ACTIONS(1976), + [anon_sym___complex] = ACTIONS(1976), + [anon_sym_IBOutlet] = ACTIONS(1976), + [anon_sym_IBInspectable] = ACTIONS(1976), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1976), + [anon_sym_unsigned] = ACTIONS(1976), + [anon_sym_long] = ACTIONS(1976), + [anon_sym_short] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_switch] = ACTIONS(1976), + [anon_sym_case] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_goto] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_PLUS_PLUS] = ACTIONS(1978), + [anon_sym_sizeof] = ACTIONS(1976), + [sym_number_literal] = ACTIONS(1978), + [anon_sym_L_SQUOTE] = ACTIONS(1978), + [anon_sym_u_SQUOTE] = ACTIONS(1978), + [anon_sym_U_SQUOTE] = ACTIONS(1978), + [anon_sym_u8_SQUOTE] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_L_DQUOTE] = ACTIONS(1978), + [anon_sym_u_DQUOTE] = ACTIONS(1978), + [anon_sym_U_DQUOTE] = ACTIONS(1978), + [anon_sym_u8_DQUOTE] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1978), + [anon_sym_ATimport] = ACTIONS(1978), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1976), + [anon_sym_ATcompatibility_alias] = ACTIONS(1978), + [anon_sym_ATprotocol] = ACTIONS(1978), + [anon_sym_ATclass] = ACTIONS(1978), + [anon_sym_ATinterface] = ACTIONS(1978), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1976), + [sym_method_attribute_specifier] = ACTIONS(1976), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1976), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE] = ACTIONS(1976), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_API_AVAILABLE] = ACTIONS(1976), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_API_DEPRECATED] = ACTIONS(1976), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1976), + [anon_sym___deprecated_msg] = ACTIONS(1976), + [anon_sym___deprecated_enum_msg] = ACTIONS(1976), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1976), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1976), + [anon_sym_ATimplementation] = ACTIONS(1978), + [anon_sym_NS_ENUM] = ACTIONS(1976), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1976), + [anon_sym_NS_OPTIONS] = ACTIONS(1976), + [anon_sym_typeof] = ACTIONS(1976), + [anon_sym___typeof] = ACTIONS(1976), + [anon_sym___typeof__] = ACTIONS(1976), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_nil] = ACTIONS(1976), + [sym_id] = ACTIONS(1976), + [sym_instancetype] = ACTIONS(1976), + [sym_Class] = ACTIONS(1976), + [sym_SEL] = ACTIONS(1976), + [sym_IMP] = ACTIONS(1976), + [sym_BOOL] = ACTIONS(1976), + [sym_auto] = ACTIONS(1976), + [anon_sym_ATautoreleasepool] = ACTIONS(1978), + [anon_sym_ATsynchronized] = ACTIONS(1978), + [anon_sym_ATtry] = ACTIONS(1978), + [anon_sym_ATthrow] = ACTIONS(1978), + [anon_sym_ATselector] = ACTIONS(1978), + [anon_sym_ATencode] = ACTIONS(1978), + [anon_sym_AT] = ACTIONS(1976), + [sym_YES] = ACTIONS(1976), + [sym_NO] = ACTIONS(1976), + [anon_sym___builtin_available] = ACTIONS(1976), + [anon_sym_ATavailable] = ACTIONS(1978), + [anon_sym_va_arg] = ACTIONS(1976), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [671] = { + [sym_identifier] = ACTIONS(1976), + [aux_sym_preproc_include_token1] = ACTIONS(1978), + [aux_sym_preproc_def_token1] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1976), + [aux_sym_preproc_if_token2] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1976), + [aux_sym_preproc_else_token1] = ACTIONS(1976), + [aux_sym_preproc_elif_token1] = ACTIONS(1976), + [anon_sym_LPAREN2] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_TILDE] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_CARET] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_typedef] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym___attribute] = ACTIONS(1976), + [anon_sym___attribute__] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1976), + [anon_sym___cdecl] = ACTIONS(1976), + [anon_sym___clrcall] = ACTIONS(1976), + [anon_sym___stdcall] = ACTIONS(1976), + [anon_sym___fastcall] = ACTIONS(1976), + [anon_sym___thiscall] = ACTIONS(1976), + [anon_sym___vectorcall] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_auto] = ACTIONS(1976), + [anon_sym_register] = ACTIONS(1976), + [anon_sym_inline] = ACTIONS(1976), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_volatile] = ACTIONS(1976), + [anon_sym_restrict] = ACTIONS(1976), + [anon_sym__Atomic] = ACTIONS(1976), + [anon_sym_in] = ACTIONS(1976), + [anon_sym_out] = ACTIONS(1976), + [anon_sym_inout] = ACTIONS(1976), + [anon_sym_bycopy] = ACTIONS(1976), + [anon_sym_byref] = ACTIONS(1976), + [anon_sym_oneway] = ACTIONS(1976), + [anon_sym__Nullable] = ACTIONS(1976), + [anon_sym__Nonnull] = ACTIONS(1976), + [anon_sym__Nullable_result] = ACTIONS(1976), + [anon_sym__Null_unspecified] = ACTIONS(1976), + [anon_sym___autoreleasing] = ACTIONS(1976), + [anon_sym___nullable] = ACTIONS(1976), + [anon_sym___nonnull] = ACTIONS(1976), + [anon_sym___strong] = ACTIONS(1976), + [anon_sym___weak] = ACTIONS(1976), + [anon_sym___bridge] = ACTIONS(1976), + [anon_sym___bridge_transfer] = ACTIONS(1976), + [anon_sym___bridge_retained] = ACTIONS(1976), + [anon_sym___unsafe_unretained] = ACTIONS(1976), + [anon_sym___block] = ACTIONS(1976), + [anon_sym___kindof] = ACTIONS(1976), + [anon_sym___unused] = ACTIONS(1976), + [anon_sym__Complex] = ACTIONS(1976), + [anon_sym___complex] = ACTIONS(1976), + [anon_sym_IBOutlet] = ACTIONS(1976), + [anon_sym_IBInspectable] = ACTIONS(1976), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1976), + [anon_sym_unsigned] = ACTIONS(1976), + [anon_sym_long] = ACTIONS(1976), + [anon_sym_short] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_switch] = ACTIONS(1976), + [anon_sym_case] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_goto] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_PLUS_PLUS] = ACTIONS(1978), + [anon_sym_sizeof] = ACTIONS(1976), + [sym_number_literal] = ACTIONS(1978), + [anon_sym_L_SQUOTE] = ACTIONS(1978), + [anon_sym_u_SQUOTE] = ACTIONS(1978), + [anon_sym_U_SQUOTE] = ACTIONS(1978), + [anon_sym_u8_SQUOTE] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_L_DQUOTE] = ACTIONS(1978), + [anon_sym_u_DQUOTE] = ACTIONS(1978), + [anon_sym_U_DQUOTE] = ACTIONS(1978), + [anon_sym_u8_DQUOTE] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1978), + [anon_sym_ATimport] = ACTIONS(1978), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1976), + [anon_sym_ATcompatibility_alias] = ACTIONS(1978), + [anon_sym_ATprotocol] = ACTIONS(1978), + [anon_sym_ATclass] = ACTIONS(1978), + [anon_sym_ATinterface] = ACTIONS(1978), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1976), + [sym_method_attribute_specifier] = ACTIONS(1976), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1976), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE] = ACTIONS(1976), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_API_AVAILABLE] = ACTIONS(1976), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_API_DEPRECATED] = ACTIONS(1976), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1976), + [anon_sym___deprecated_msg] = ACTIONS(1976), + [anon_sym___deprecated_enum_msg] = ACTIONS(1976), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1976), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1976), + [anon_sym_ATimplementation] = ACTIONS(1978), + [anon_sym_NS_ENUM] = ACTIONS(1976), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1976), + [anon_sym_NS_OPTIONS] = ACTIONS(1976), + [anon_sym_typeof] = ACTIONS(1976), + [anon_sym___typeof] = ACTIONS(1976), + [anon_sym___typeof__] = ACTIONS(1976), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_nil] = ACTIONS(1976), + [sym_id] = ACTIONS(1976), + [sym_instancetype] = ACTIONS(1976), + [sym_Class] = ACTIONS(1976), + [sym_SEL] = ACTIONS(1976), + [sym_IMP] = ACTIONS(1976), + [sym_BOOL] = ACTIONS(1976), + [sym_auto] = ACTIONS(1976), + [anon_sym_ATautoreleasepool] = ACTIONS(1978), + [anon_sym_ATsynchronized] = ACTIONS(1978), + [anon_sym_ATtry] = ACTIONS(1978), + [anon_sym_ATthrow] = ACTIONS(1978), + [anon_sym_ATselector] = ACTIONS(1978), + [anon_sym_ATencode] = ACTIONS(1978), + [anon_sym_AT] = ACTIONS(1976), + [sym_YES] = ACTIONS(1976), + [sym_NO] = ACTIONS(1976), + [anon_sym___builtin_available] = ACTIONS(1976), + [anon_sym_ATavailable] = ACTIONS(1978), + [anon_sym_va_arg] = ACTIONS(1976), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [672] = { + [sym_identifier] = ACTIONS(1976), + [aux_sym_preproc_include_token1] = ACTIONS(1978), + [aux_sym_preproc_def_token1] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1976), + [aux_sym_preproc_if_token2] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1976), + [aux_sym_preproc_else_token1] = ACTIONS(1976), + [aux_sym_preproc_elif_token1] = ACTIONS(1976), + [anon_sym_LPAREN2] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_TILDE] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_CARET] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_typedef] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym___attribute] = ACTIONS(1976), + [anon_sym___attribute__] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1976), + [anon_sym___cdecl] = ACTIONS(1976), + [anon_sym___clrcall] = ACTIONS(1976), + [anon_sym___stdcall] = ACTIONS(1976), + [anon_sym___fastcall] = ACTIONS(1976), + [anon_sym___thiscall] = ACTIONS(1976), + [anon_sym___vectorcall] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_auto] = ACTIONS(1976), + [anon_sym_register] = ACTIONS(1976), + [anon_sym_inline] = ACTIONS(1976), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_volatile] = ACTIONS(1976), + [anon_sym_restrict] = ACTIONS(1976), + [anon_sym__Atomic] = ACTIONS(1976), + [anon_sym_in] = ACTIONS(1976), + [anon_sym_out] = ACTIONS(1976), + [anon_sym_inout] = ACTIONS(1976), + [anon_sym_bycopy] = ACTIONS(1976), + [anon_sym_byref] = ACTIONS(1976), + [anon_sym_oneway] = ACTIONS(1976), + [anon_sym__Nullable] = ACTIONS(1976), + [anon_sym__Nonnull] = ACTIONS(1976), + [anon_sym__Nullable_result] = ACTIONS(1976), + [anon_sym__Null_unspecified] = ACTIONS(1976), + [anon_sym___autoreleasing] = ACTIONS(1976), + [anon_sym___nullable] = ACTIONS(1976), + [anon_sym___nonnull] = ACTIONS(1976), + [anon_sym___strong] = ACTIONS(1976), + [anon_sym___weak] = ACTIONS(1976), + [anon_sym___bridge] = ACTIONS(1976), + [anon_sym___bridge_transfer] = ACTIONS(1976), + [anon_sym___bridge_retained] = ACTIONS(1976), + [anon_sym___unsafe_unretained] = ACTIONS(1976), + [anon_sym___block] = ACTIONS(1976), + [anon_sym___kindof] = ACTIONS(1976), + [anon_sym___unused] = ACTIONS(1976), + [anon_sym__Complex] = ACTIONS(1976), + [anon_sym___complex] = ACTIONS(1976), + [anon_sym_IBOutlet] = ACTIONS(1976), + [anon_sym_IBInspectable] = ACTIONS(1976), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1976), + [anon_sym_unsigned] = ACTIONS(1976), + [anon_sym_long] = ACTIONS(1976), + [anon_sym_short] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_switch] = ACTIONS(1976), + [anon_sym_case] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_goto] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_PLUS_PLUS] = ACTIONS(1978), + [anon_sym_sizeof] = ACTIONS(1976), + [sym_number_literal] = ACTIONS(1978), + [anon_sym_L_SQUOTE] = ACTIONS(1978), + [anon_sym_u_SQUOTE] = ACTIONS(1978), + [anon_sym_U_SQUOTE] = ACTIONS(1978), + [anon_sym_u8_SQUOTE] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_L_DQUOTE] = ACTIONS(1978), + [anon_sym_u_DQUOTE] = ACTIONS(1978), + [anon_sym_U_DQUOTE] = ACTIONS(1978), + [anon_sym_u8_DQUOTE] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1978), + [anon_sym_ATimport] = ACTIONS(1978), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1976), + [anon_sym_ATcompatibility_alias] = ACTIONS(1978), + [anon_sym_ATprotocol] = ACTIONS(1978), + [anon_sym_ATclass] = ACTIONS(1978), + [anon_sym_ATinterface] = ACTIONS(1978), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1976), + [sym_method_attribute_specifier] = ACTIONS(1976), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1976), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE] = ACTIONS(1976), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_API_AVAILABLE] = ACTIONS(1976), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_API_DEPRECATED] = ACTIONS(1976), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1976), + [anon_sym___deprecated_msg] = ACTIONS(1976), + [anon_sym___deprecated_enum_msg] = ACTIONS(1976), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1976), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1976), + [anon_sym_ATimplementation] = ACTIONS(1978), + [anon_sym_NS_ENUM] = ACTIONS(1976), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1976), + [anon_sym_NS_OPTIONS] = ACTIONS(1976), + [anon_sym_typeof] = ACTIONS(1976), + [anon_sym___typeof] = ACTIONS(1976), + [anon_sym___typeof__] = ACTIONS(1976), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_nil] = ACTIONS(1976), + [sym_id] = ACTIONS(1976), + [sym_instancetype] = ACTIONS(1976), + [sym_Class] = ACTIONS(1976), + [sym_SEL] = ACTIONS(1976), + [sym_IMP] = ACTIONS(1976), + [sym_BOOL] = ACTIONS(1976), + [sym_auto] = ACTIONS(1976), + [anon_sym_ATautoreleasepool] = ACTIONS(1978), + [anon_sym_ATsynchronized] = ACTIONS(1978), + [anon_sym_ATtry] = ACTIONS(1978), + [anon_sym_ATthrow] = ACTIONS(1978), + [anon_sym_ATselector] = ACTIONS(1978), + [anon_sym_ATencode] = ACTIONS(1978), + [anon_sym_AT] = ACTIONS(1976), + [sym_YES] = ACTIONS(1976), + [sym_NO] = ACTIONS(1976), + [anon_sym___builtin_available] = ACTIONS(1976), + [anon_sym_ATavailable] = ACTIONS(1978), + [anon_sym_va_arg] = ACTIONS(1976), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [673] = { + [sym_identifier] = ACTIONS(1976), + [aux_sym_preproc_include_token1] = ACTIONS(1978), + [aux_sym_preproc_def_token1] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1976), + [aux_sym_preproc_if_token2] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1976), + [aux_sym_preproc_else_token1] = ACTIONS(1976), + [aux_sym_preproc_elif_token1] = ACTIONS(1976), + [anon_sym_LPAREN2] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_TILDE] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_CARET] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_typedef] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym___attribute] = ACTIONS(1976), + [anon_sym___attribute__] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1976), + [anon_sym___cdecl] = ACTIONS(1976), + [anon_sym___clrcall] = ACTIONS(1976), + [anon_sym___stdcall] = ACTIONS(1976), + [anon_sym___fastcall] = ACTIONS(1976), + [anon_sym___thiscall] = ACTIONS(1976), + [anon_sym___vectorcall] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_auto] = ACTIONS(1976), + [anon_sym_register] = ACTIONS(1976), + [anon_sym_inline] = ACTIONS(1976), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_volatile] = ACTIONS(1976), + [anon_sym_restrict] = ACTIONS(1976), + [anon_sym__Atomic] = ACTIONS(1976), + [anon_sym_in] = ACTIONS(1976), + [anon_sym_out] = ACTIONS(1976), + [anon_sym_inout] = ACTIONS(1976), + [anon_sym_bycopy] = ACTIONS(1976), + [anon_sym_byref] = ACTIONS(1976), + [anon_sym_oneway] = ACTIONS(1976), + [anon_sym__Nullable] = ACTIONS(1976), + [anon_sym__Nonnull] = ACTIONS(1976), + [anon_sym__Nullable_result] = ACTIONS(1976), + [anon_sym__Null_unspecified] = ACTIONS(1976), + [anon_sym___autoreleasing] = ACTIONS(1976), + [anon_sym___nullable] = ACTIONS(1976), + [anon_sym___nonnull] = ACTIONS(1976), + [anon_sym___strong] = ACTIONS(1976), + [anon_sym___weak] = ACTIONS(1976), + [anon_sym___bridge] = ACTIONS(1976), + [anon_sym___bridge_transfer] = ACTIONS(1976), + [anon_sym___bridge_retained] = ACTIONS(1976), + [anon_sym___unsafe_unretained] = ACTIONS(1976), + [anon_sym___block] = ACTIONS(1976), + [anon_sym___kindof] = ACTIONS(1976), + [anon_sym___unused] = ACTIONS(1976), + [anon_sym__Complex] = ACTIONS(1976), + [anon_sym___complex] = ACTIONS(1976), + [anon_sym_IBOutlet] = ACTIONS(1976), + [anon_sym_IBInspectable] = ACTIONS(1976), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1976), + [anon_sym_unsigned] = ACTIONS(1976), + [anon_sym_long] = ACTIONS(1976), + [anon_sym_short] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_switch] = ACTIONS(1976), + [anon_sym_case] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_goto] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_PLUS_PLUS] = ACTIONS(1978), + [anon_sym_sizeof] = ACTIONS(1976), + [sym_number_literal] = ACTIONS(1978), + [anon_sym_L_SQUOTE] = ACTIONS(1978), + [anon_sym_u_SQUOTE] = ACTIONS(1978), + [anon_sym_U_SQUOTE] = ACTIONS(1978), + [anon_sym_u8_SQUOTE] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_L_DQUOTE] = ACTIONS(1978), + [anon_sym_u_DQUOTE] = ACTIONS(1978), + [anon_sym_U_DQUOTE] = ACTIONS(1978), + [anon_sym_u8_DQUOTE] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1978), + [anon_sym_ATimport] = ACTIONS(1978), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1976), + [anon_sym_ATcompatibility_alias] = ACTIONS(1978), + [anon_sym_ATprotocol] = ACTIONS(1978), + [anon_sym_ATclass] = ACTIONS(1978), + [anon_sym_ATinterface] = ACTIONS(1978), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1976), + [sym_method_attribute_specifier] = ACTIONS(1976), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1976), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE] = ACTIONS(1976), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_API_AVAILABLE] = ACTIONS(1976), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_API_DEPRECATED] = ACTIONS(1976), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1976), + [anon_sym___deprecated_msg] = ACTIONS(1976), + [anon_sym___deprecated_enum_msg] = ACTIONS(1976), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1976), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1976), + [anon_sym_ATimplementation] = ACTIONS(1978), + [anon_sym_NS_ENUM] = ACTIONS(1976), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1976), + [anon_sym_NS_OPTIONS] = ACTIONS(1976), + [anon_sym_typeof] = ACTIONS(1976), + [anon_sym___typeof] = ACTIONS(1976), + [anon_sym___typeof__] = ACTIONS(1976), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_nil] = ACTIONS(1976), + [sym_id] = ACTIONS(1976), + [sym_instancetype] = ACTIONS(1976), + [sym_Class] = ACTIONS(1976), + [sym_SEL] = ACTIONS(1976), + [sym_IMP] = ACTIONS(1976), + [sym_BOOL] = ACTIONS(1976), + [sym_auto] = ACTIONS(1976), + [anon_sym_ATautoreleasepool] = ACTIONS(1978), + [anon_sym_ATsynchronized] = ACTIONS(1978), + [anon_sym_ATtry] = ACTIONS(1978), + [anon_sym_ATthrow] = ACTIONS(1978), + [anon_sym_ATselector] = ACTIONS(1978), + [anon_sym_ATencode] = ACTIONS(1978), + [anon_sym_AT] = ACTIONS(1976), + [sym_YES] = ACTIONS(1976), + [sym_NO] = ACTIONS(1976), + [anon_sym___builtin_available] = ACTIONS(1976), + [anon_sym_ATavailable] = ACTIONS(1978), + [anon_sym_va_arg] = ACTIONS(1976), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [674] = { + [sym_identifier] = ACTIONS(1980), + [aux_sym_preproc_include_token1] = ACTIONS(1982), + [aux_sym_preproc_def_token1] = ACTIONS(1982), + [aux_sym_preproc_if_token1] = ACTIONS(1980), + [aux_sym_preproc_if_token2] = ACTIONS(1980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1980), + [aux_sym_preproc_else_token1] = ACTIONS(1980), + [aux_sym_preproc_elif_token1] = ACTIONS(1980), + [anon_sym_LPAREN2] = ACTIONS(1982), + [anon_sym_BANG] = ACTIONS(1982), + [anon_sym_TILDE] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(1980), + [anon_sym_STAR] = ACTIONS(1982), + [anon_sym_CARET] = ACTIONS(1982), + [anon_sym_AMP] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_typedef] = ACTIONS(1980), + [anon_sym_extern] = ACTIONS(1980), + [anon_sym___attribute] = ACTIONS(1980), + [anon_sym___attribute__] = ACTIONS(1980), + [anon_sym___declspec] = ACTIONS(1980), + [anon_sym___cdecl] = ACTIONS(1980), + [anon_sym___clrcall] = ACTIONS(1980), + [anon_sym___stdcall] = ACTIONS(1980), + [anon_sym___fastcall] = ACTIONS(1980), + [anon_sym___thiscall] = ACTIONS(1980), + [anon_sym___vectorcall] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1982), + [anon_sym_static] = ACTIONS(1980), + [anon_sym_auto] = ACTIONS(1980), + [anon_sym_register] = ACTIONS(1980), + [anon_sym_inline] = ACTIONS(1980), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1980), + [anon_sym_const] = ACTIONS(1980), + [anon_sym_volatile] = ACTIONS(1980), + [anon_sym_restrict] = ACTIONS(1980), + [anon_sym__Atomic] = ACTIONS(1980), + [anon_sym_in] = ACTIONS(1980), + [anon_sym_out] = ACTIONS(1980), + [anon_sym_inout] = ACTIONS(1980), + [anon_sym_bycopy] = ACTIONS(1980), + [anon_sym_byref] = ACTIONS(1980), + [anon_sym_oneway] = ACTIONS(1980), + [anon_sym__Nullable] = ACTIONS(1980), + [anon_sym__Nonnull] = ACTIONS(1980), + [anon_sym__Nullable_result] = ACTIONS(1980), + [anon_sym__Null_unspecified] = ACTIONS(1980), + [anon_sym___autoreleasing] = ACTIONS(1980), + [anon_sym___nullable] = ACTIONS(1980), + [anon_sym___nonnull] = ACTIONS(1980), + [anon_sym___strong] = ACTIONS(1980), + [anon_sym___weak] = ACTIONS(1980), + [anon_sym___bridge] = ACTIONS(1980), + [anon_sym___bridge_transfer] = ACTIONS(1980), + [anon_sym___bridge_retained] = ACTIONS(1980), + [anon_sym___unsafe_unretained] = ACTIONS(1980), + [anon_sym___block] = ACTIONS(1980), + [anon_sym___kindof] = ACTIONS(1980), + [anon_sym___unused] = ACTIONS(1980), + [anon_sym__Complex] = ACTIONS(1980), + [anon_sym___complex] = ACTIONS(1980), + [anon_sym_IBOutlet] = ACTIONS(1980), + [anon_sym_IBInspectable] = ACTIONS(1980), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1980), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [sym_primitive_type] = ACTIONS(1980), + [anon_sym_enum] = ACTIONS(1980), + [anon_sym_struct] = ACTIONS(1980), + [anon_sym_union] = ACTIONS(1980), + [anon_sym_if] = ACTIONS(1980), + [anon_sym_switch] = ACTIONS(1980), + [anon_sym_case] = ACTIONS(1980), + [anon_sym_default] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_do] = ACTIONS(1980), + [anon_sym_for] = ACTIONS(1980), + [anon_sym_return] = ACTIONS(1980), + [anon_sym_break] = ACTIONS(1980), + [anon_sym_continue] = ACTIONS(1980), + [anon_sym_goto] = ACTIONS(1980), + [anon_sym_DASH_DASH] = ACTIONS(1982), + [anon_sym_PLUS_PLUS] = ACTIONS(1982), + [anon_sym_sizeof] = ACTIONS(1980), + [sym_number_literal] = ACTIONS(1982), + [anon_sym_L_SQUOTE] = ACTIONS(1982), + [anon_sym_u_SQUOTE] = ACTIONS(1982), + [anon_sym_U_SQUOTE] = ACTIONS(1982), + [anon_sym_u8_SQUOTE] = ACTIONS(1982), + [anon_sym_SQUOTE] = ACTIONS(1982), + [anon_sym_L_DQUOTE] = ACTIONS(1982), + [anon_sym_u_DQUOTE] = ACTIONS(1982), + [anon_sym_U_DQUOTE] = ACTIONS(1982), + [anon_sym_u8_DQUOTE] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(1982), + [sym_true] = ACTIONS(1980), + [sym_false] = ACTIONS(1980), + [sym_null] = ACTIONS(1980), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1982), + [anon_sym_ATimport] = ACTIONS(1982), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1980), + [anon_sym_ATcompatibility_alias] = ACTIONS(1982), + [anon_sym_ATprotocol] = ACTIONS(1982), + [anon_sym_ATclass] = ACTIONS(1982), + [anon_sym_ATinterface] = ACTIONS(1982), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1980), + [sym_method_attribute_specifier] = ACTIONS(1980), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1980), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1980), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1980), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1980), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1980), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1980), + [anon_sym_NS_AVAILABLE] = ACTIONS(1980), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1980), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1980), + [anon_sym_API_AVAILABLE] = ACTIONS(1980), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1980), + [anon_sym_API_DEPRECATED] = ACTIONS(1980), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1980), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1980), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1980), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1980), + [anon_sym___deprecated_msg] = ACTIONS(1980), + [anon_sym___deprecated_enum_msg] = ACTIONS(1980), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1980), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1980), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1980), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1980), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1980), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1980), + [anon_sym_ATimplementation] = ACTIONS(1982), + [anon_sym_NS_ENUM] = ACTIONS(1980), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1980), + [anon_sym_NS_OPTIONS] = ACTIONS(1980), + [anon_sym_typeof] = ACTIONS(1980), + [anon_sym___typeof] = ACTIONS(1980), + [anon_sym___typeof__] = ACTIONS(1980), + [sym_self] = ACTIONS(1980), + [sym_super] = ACTIONS(1980), + [sym_nil] = ACTIONS(1980), + [sym_id] = ACTIONS(1980), + [sym_instancetype] = ACTIONS(1980), + [sym_Class] = ACTIONS(1980), + [sym_SEL] = ACTIONS(1980), + [sym_IMP] = ACTIONS(1980), + [sym_BOOL] = ACTIONS(1980), + [sym_auto] = ACTIONS(1980), + [anon_sym_ATautoreleasepool] = ACTIONS(1982), + [anon_sym_ATsynchronized] = ACTIONS(1982), + [anon_sym_ATtry] = ACTIONS(1982), + [anon_sym_ATthrow] = ACTIONS(1982), + [anon_sym_ATselector] = ACTIONS(1982), + [anon_sym_ATencode] = ACTIONS(1982), + [anon_sym_AT] = ACTIONS(1980), + [sym_YES] = ACTIONS(1980), + [sym_NO] = ACTIONS(1980), + [anon_sym___builtin_available] = ACTIONS(1980), + [anon_sym_ATavailable] = ACTIONS(1982), + [anon_sym_va_arg] = ACTIONS(1980), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [675] = { + [sym_identifier] = ACTIONS(1984), + [aux_sym_preproc_include_token1] = ACTIONS(1986), + [aux_sym_preproc_def_token1] = ACTIONS(1986), + [aux_sym_preproc_if_token1] = ACTIONS(1984), + [aux_sym_preproc_if_token2] = ACTIONS(1984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1984), + [aux_sym_preproc_else_token1] = ACTIONS(1984), + [aux_sym_preproc_elif_token1] = ACTIONS(1984), + [anon_sym_LPAREN2] = ACTIONS(1986), + [anon_sym_BANG] = ACTIONS(1986), + [anon_sym_TILDE] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(1986), + [anon_sym_CARET] = ACTIONS(1986), + [anon_sym_AMP] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_typedef] = ACTIONS(1984), + [anon_sym_extern] = ACTIONS(1984), + [anon_sym___attribute] = ACTIONS(1984), + [anon_sym___attribute__] = ACTIONS(1984), + [anon_sym___declspec] = ACTIONS(1984), + [anon_sym___cdecl] = ACTIONS(1984), + [anon_sym___clrcall] = ACTIONS(1984), + [anon_sym___stdcall] = ACTIONS(1984), + [anon_sym___fastcall] = ACTIONS(1984), + [anon_sym___thiscall] = ACTIONS(1984), + [anon_sym___vectorcall] = ACTIONS(1984), + [anon_sym_LBRACE] = ACTIONS(1986), + [anon_sym_LBRACK] = ACTIONS(1986), + [anon_sym_static] = ACTIONS(1984), + [anon_sym_auto] = ACTIONS(1984), + [anon_sym_register] = ACTIONS(1984), + [anon_sym_inline] = ACTIONS(1984), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1984), + [anon_sym_const] = ACTIONS(1984), + [anon_sym_volatile] = ACTIONS(1984), + [anon_sym_restrict] = ACTIONS(1984), + [anon_sym__Atomic] = ACTIONS(1984), + [anon_sym_in] = ACTIONS(1984), + [anon_sym_out] = ACTIONS(1984), + [anon_sym_inout] = ACTIONS(1984), + [anon_sym_bycopy] = ACTIONS(1984), + [anon_sym_byref] = ACTIONS(1984), + [anon_sym_oneway] = ACTIONS(1984), + [anon_sym__Nullable] = ACTIONS(1984), + [anon_sym__Nonnull] = ACTIONS(1984), + [anon_sym__Nullable_result] = ACTIONS(1984), + [anon_sym__Null_unspecified] = ACTIONS(1984), + [anon_sym___autoreleasing] = ACTIONS(1984), + [anon_sym___nullable] = ACTIONS(1984), + [anon_sym___nonnull] = ACTIONS(1984), + [anon_sym___strong] = ACTIONS(1984), + [anon_sym___weak] = ACTIONS(1984), + [anon_sym___bridge] = ACTIONS(1984), + [anon_sym___bridge_transfer] = ACTIONS(1984), + [anon_sym___bridge_retained] = ACTIONS(1984), + [anon_sym___unsafe_unretained] = ACTIONS(1984), + [anon_sym___block] = ACTIONS(1984), + [anon_sym___kindof] = ACTIONS(1984), + [anon_sym___unused] = ACTIONS(1984), + [anon_sym__Complex] = ACTIONS(1984), + [anon_sym___complex] = ACTIONS(1984), + [anon_sym_IBOutlet] = ACTIONS(1984), + [anon_sym_IBInspectable] = ACTIONS(1984), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1984), + [anon_sym_signed] = ACTIONS(1984), + [anon_sym_unsigned] = ACTIONS(1984), + [anon_sym_long] = ACTIONS(1984), + [anon_sym_short] = ACTIONS(1984), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1984), + [anon_sym_struct] = ACTIONS(1984), + [anon_sym_union] = ACTIONS(1984), + [anon_sym_if] = ACTIONS(1984), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1984), + [anon_sym_default] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1984), + [anon_sym_do] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1984), + [anon_sym_return] = ACTIONS(1984), + [anon_sym_break] = ACTIONS(1984), + [anon_sym_continue] = ACTIONS(1984), + [anon_sym_goto] = ACTIONS(1984), + [anon_sym_DASH_DASH] = ACTIONS(1986), + [anon_sym_PLUS_PLUS] = ACTIONS(1986), + [anon_sym_sizeof] = ACTIONS(1984), + [sym_number_literal] = ACTIONS(1986), + [anon_sym_L_SQUOTE] = ACTIONS(1986), + [anon_sym_u_SQUOTE] = ACTIONS(1986), + [anon_sym_U_SQUOTE] = ACTIONS(1986), + [anon_sym_u8_SQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1986), + [anon_sym_L_DQUOTE] = ACTIONS(1986), + [anon_sym_u_DQUOTE] = ACTIONS(1986), + [anon_sym_U_DQUOTE] = ACTIONS(1986), + [anon_sym_u8_DQUOTE] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1986), + [anon_sym_ATimport] = ACTIONS(1986), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1984), + [anon_sym_ATcompatibility_alias] = ACTIONS(1986), + [anon_sym_ATprotocol] = ACTIONS(1986), + [anon_sym_ATclass] = ACTIONS(1986), + [anon_sym_ATinterface] = ACTIONS(1986), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1984), + [sym_method_attribute_specifier] = ACTIONS(1984), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1984), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1984), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1984), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1984), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1984), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1984), + [anon_sym_NS_AVAILABLE] = ACTIONS(1984), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1984), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1984), + [anon_sym_API_AVAILABLE] = ACTIONS(1984), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1984), + [anon_sym_API_DEPRECATED] = ACTIONS(1984), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1984), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1984), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1984), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1984), + [anon_sym___deprecated_msg] = ACTIONS(1984), + [anon_sym___deprecated_enum_msg] = ACTIONS(1984), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1984), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1984), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1984), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1984), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1984), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1984), + [anon_sym_ATimplementation] = ACTIONS(1986), + [anon_sym_NS_ENUM] = ACTIONS(1984), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1984), + [anon_sym_NS_OPTIONS] = ACTIONS(1984), + [anon_sym_typeof] = ACTIONS(1984), + [anon_sym___typeof] = ACTIONS(1984), + [anon_sym___typeof__] = ACTIONS(1984), + [sym_self] = ACTIONS(1984), + [sym_super] = ACTIONS(1984), + [sym_nil] = ACTIONS(1984), + [sym_id] = ACTIONS(1984), + [sym_instancetype] = ACTIONS(1984), + [sym_Class] = ACTIONS(1984), + [sym_SEL] = ACTIONS(1984), + [sym_IMP] = ACTIONS(1984), + [sym_BOOL] = ACTIONS(1984), + [sym_auto] = ACTIONS(1984), + [anon_sym_ATautoreleasepool] = ACTIONS(1986), + [anon_sym_ATsynchronized] = ACTIONS(1986), + [anon_sym_ATtry] = ACTIONS(1986), + [anon_sym_ATthrow] = ACTIONS(1986), + [anon_sym_ATselector] = ACTIONS(1986), + [anon_sym_ATencode] = ACTIONS(1986), + [anon_sym_AT] = ACTIONS(1984), + [sym_YES] = ACTIONS(1984), + [sym_NO] = ACTIONS(1984), + [anon_sym___builtin_available] = ACTIONS(1984), + [anon_sym_ATavailable] = ACTIONS(1986), + [anon_sym_va_arg] = ACTIONS(1984), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [676] = { + [sym_identifier] = ACTIONS(1988), + [aux_sym_preproc_include_token1] = ACTIONS(1990), + [aux_sym_preproc_def_token1] = ACTIONS(1990), + [aux_sym_preproc_if_token1] = ACTIONS(1988), + [aux_sym_preproc_if_token2] = ACTIONS(1988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1988), + [aux_sym_preproc_else_token1] = ACTIONS(1988), + [aux_sym_preproc_elif_token1] = ACTIONS(1988), + [anon_sym_LPAREN2] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_TILDE] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_CARET] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_typedef] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1988), + [anon_sym___attribute] = ACTIONS(1988), + [anon_sym___attribute__] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(1988), + [anon_sym___cdecl] = ACTIONS(1988), + [anon_sym___clrcall] = ACTIONS(1988), + [anon_sym___stdcall] = ACTIONS(1988), + [anon_sym___fastcall] = ACTIONS(1988), + [anon_sym___thiscall] = ACTIONS(1988), + [anon_sym___vectorcall] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1988), + [anon_sym_auto] = ACTIONS(1988), + [anon_sym_register] = ACTIONS(1988), + [anon_sym_inline] = ACTIONS(1988), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1988), + [anon_sym_const] = ACTIONS(1988), + [anon_sym_volatile] = ACTIONS(1988), + [anon_sym_restrict] = ACTIONS(1988), + [anon_sym__Atomic] = ACTIONS(1988), + [anon_sym_in] = ACTIONS(1988), + [anon_sym_out] = ACTIONS(1988), + [anon_sym_inout] = ACTIONS(1988), + [anon_sym_bycopy] = ACTIONS(1988), + [anon_sym_byref] = ACTIONS(1988), + [anon_sym_oneway] = ACTIONS(1988), + [anon_sym__Nullable] = ACTIONS(1988), + [anon_sym__Nonnull] = ACTIONS(1988), + [anon_sym__Nullable_result] = ACTIONS(1988), + [anon_sym__Null_unspecified] = ACTIONS(1988), + [anon_sym___autoreleasing] = ACTIONS(1988), + [anon_sym___nullable] = ACTIONS(1988), + [anon_sym___nonnull] = ACTIONS(1988), + [anon_sym___strong] = ACTIONS(1988), + [anon_sym___weak] = ACTIONS(1988), + [anon_sym___bridge] = ACTIONS(1988), + [anon_sym___bridge_transfer] = ACTIONS(1988), + [anon_sym___bridge_retained] = ACTIONS(1988), + [anon_sym___unsafe_unretained] = ACTIONS(1988), + [anon_sym___block] = ACTIONS(1988), + [anon_sym___kindof] = ACTIONS(1988), + [anon_sym___unused] = ACTIONS(1988), + [anon_sym__Complex] = ACTIONS(1988), + [anon_sym___complex] = ACTIONS(1988), + [anon_sym_IBOutlet] = ACTIONS(1988), + [anon_sym_IBInspectable] = ACTIONS(1988), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1988), + [anon_sym_signed] = ACTIONS(1988), + [anon_sym_unsigned] = ACTIONS(1988), + [anon_sym_long] = ACTIONS(1988), + [anon_sym_short] = ACTIONS(1988), + [sym_primitive_type] = ACTIONS(1988), + [anon_sym_enum] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1988), + [anon_sym_union] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_do] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_return] = ACTIONS(1988), + [anon_sym_break] = ACTIONS(1988), + [anon_sym_continue] = ACTIONS(1988), + [anon_sym_goto] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1990), + [anon_sym_PLUS_PLUS] = ACTIONS(1990), + [anon_sym_sizeof] = ACTIONS(1988), + [sym_number_literal] = ACTIONS(1990), + [anon_sym_L_SQUOTE] = ACTIONS(1990), + [anon_sym_u_SQUOTE] = ACTIONS(1990), + [anon_sym_U_SQUOTE] = ACTIONS(1990), + [anon_sym_u8_SQUOTE] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_L_DQUOTE] = ACTIONS(1990), + [anon_sym_u_DQUOTE] = ACTIONS(1990), + [anon_sym_U_DQUOTE] = ACTIONS(1990), + [anon_sym_u8_DQUOTE] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1990), + [sym_true] = ACTIONS(1988), + [sym_false] = ACTIONS(1988), + [sym_null] = ACTIONS(1988), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1990), + [anon_sym_ATimport] = ACTIONS(1990), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1988), + [anon_sym_ATcompatibility_alias] = ACTIONS(1990), + [anon_sym_ATprotocol] = ACTIONS(1990), + [anon_sym_ATclass] = ACTIONS(1990), + [anon_sym_ATinterface] = ACTIONS(1990), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1988), + [sym_method_attribute_specifier] = ACTIONS(1988), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1988), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1988), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1988), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1988), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1988), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1988), + [anon_sym_NS_AVAILABLE] = ACTIONS(1988), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1988), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1988), + [anon_sym_API_AVAILABLE] = ACTIONS(1988), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1988), + [anon_sym_API_DEPRECATED] = ACTIONS(1988), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1988), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1988), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1988), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1988), + [anon_sym___deprecated_msg] = ACTIONS(1988), + [anon_sym___deprecated_enum_msg] = ACTIONS(1988), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1988), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1988), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1988), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1988), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1988), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1988), + [anon_sym_ATimplementation] = ACTIONS(1990), + [anon_sym_NS_ENUM] = ACTIONS(1988), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1988), + [anon_sym_NS_OPTIONS] = ACTIONS(1988), + [anon_sym_typeof] = ACTIONS(1988), + [anon_sym___typeof] = ACTIONS(1988), + [anon_sym___typeof__] = ACTIONS(1988), + [sym_self] = ACTIONS(1988), + [sym_super] = ACTIONS(1988), + [sym_nil] = ACTIONS(1988), + [sym_id] = ACTIONS(1988), + [sym_instancetype] = ACTIONS(1988), + [sym_Class] = ACTIONS(1988), + [sym_SEL] = ACTIONS(1988), + [sym_IMP] = ACTIONS(1988), + [sym_BOOL] = ACTIONS(1988), + [sym_auto] = ACTIONS(1988), + [anon_sym_ATautoreleasepool] = ACTIONS(1990), + [anon_sym_ATsynchronized] = ACTIONS(1990), + [anon_sym_ATtry] = ACTIONS(1990), + [anon_sym_ATthrow] = ACTIONS(1990), + [anon_sym_ATselector] = ACTIONS(1990), + [anon_sym_ATencode] = ACTIONS(1990), + [anon_sym_AT] = ACTIONS(1988), + [sym_YES] = ACTIONS(1988), + [sym_NO] = ACTIONS(1988), + [anon_sym___builtin_available] = ACTIONS(1988), + [anon_sym_ATavailable] = ACTIONS(1990), + [anon_sym_va_arg] = ACTIONS(1988), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [677] = { + [sym_identifier] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1994), + [aux_sym_preproc_def_token1] = ACTIONS(1994), + [aux_sym_preproc_if_token1] = ACTIONS(1992), + [aux_sym_preproc_if_token2] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), + [aux_sym_preproc_else_token1] = ACTIONS(1992), + [aux_sym_preproc_elif_token1] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_CARET] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_typedef] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym___attribute] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1992), + [anon_sym___declspec] = ACTIONS(1992), + [anon_sym___cdecl] = ACTIONS(1992), + [anon_sym___clrcall] = ACTIONS(1992), + [anon_sym___stdcall] = ACTIONS(1992), + [anon_sym___fastcall] = ACTIONS(1992), + [anon_sym___thiscall] = ACTIONS(1992), + [anon_sym___vectorcall] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_auto] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_inline] = ACTIONS(1992), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1992), + [anon_sym_restrict] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1992), + [anon_sym_in] = ACTIONS(1992), + [anon_sym_out] = ACTIONS(1992), + [anon_sym_inout] = ACTIONS(1992), + [anon_sym_bycopy] = ACTIONS(1992), + [anon_sym_byref] = ACTIONS(1992), + [anon_sym_oneway] = ACTIONS(1992), + [anon_sym__Nullable] = ACTIONS(1992), + [anon_sym__Nonnull] = ACTIONS(1992), + [anon_sym__Nullable_result] = ACTIONS(1992), + [anon_sym__Null_unspecified] = ACTIONS(1992), + [anon_sym___autoreleasing] = ACTIONS(1992), + [anon_sym___nullable] = ACTIONS(1992), + [anon_sym___nonnull] = ACTIONS(1992), + [anon_sym___strong] = ACTIONS(1992), + [anon_sym___weak] = ACTIONS(1992), + [anon_sym___bridge] = ACTIONS(1992), + [anon_sym___bridge_transfer] = ACTIONS(1992), + [anon_sym___bridge_retained] = ACTIONS(1992), + [anon_sym___unsafe_unretained] = ACTIONS(1992), + [anon_sym___block] = ACTIONS(1992), + [anon_sym___kindof] = ACTIONS(1992), + [anon_sym___unused] = ACTIONS(1992), + [anon_sym__Complex] = ACTIONS(1992), + [anon_sym___complex] = ACTIONS(1992), + [anon_sym_IBOutlet] = ACTIONS(1992), + [anon_sym_IBInspectable] = ACTIONS(1992), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1992), + [anon_sym_signed] = ACTIONS(1992), + [anon_sym_unsigned] = ACTIONS(1992), + [anon_sym_long] = ACTIONS(1992), + [anon_sym_short] = ACTIONS(1992), + [sym_primitive_type] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_switch] = ACTIONS(1992), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1992), + [sym_number_literal] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1994), + [anon_sym_u_SQUOTE] = ACTIONS(1994), + [anon_sym_U_SQUOTE] = ACTIONS(1994), + [anon_sym_u8_SQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_L_DQUOTE] = ACTIONS(1994), + [anon_sym_u_DQUOTE] = ACTIONS(1994), + [anon_sym_U_DQUOTE] = ACTIONS(1994), + [anon_sym_u8_DQUOTE] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym_true] = ACTIONS(1992), + [sym_false] = ACTIONS(1992), + [sym_null] = ACTIONS(1992), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1994), + [anon_sym_ATimport] = ACTIONS(1994), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1992), + [anon_sym_ATcompatibility_alias] = ACTIONS(1994), + [anon_sym_ATprotocol] = ACTIONS(1994), + [anon_sym_ATclass] = ACTIONS(1994), + [anon_sym_ATinterface] = ACTIONS(1994), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1992), + [sym_method_attribute_specifier] = ACTIONS(1992), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1992), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE] = ACTIONS(1992), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_API_AVAILABLE] = ACTIONS(1992), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_API_DEPRECATED] = ACTIONS(1992), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1992), + [anon_sym___deprecated_msg] = ACTIONS(1992), + [anon_sym___deprecated_enum_msg] = ACTIONS(1992), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1992), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1992), + [anon_sym_ATimplementation] = ACTIONS(1994), + [anon_sym_NS_ENUM] = ACTIONS(1992), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1992), + [anon_sym_NS_OPTIONS] = ACTIONS(1992), + [anon_sym_typeof] = ACTIONS(1992), + [anon_sym___typeof] = ACTIONS(1992), + [anon_sym___typeof__] = ACTIONS(1992), + [sym_self] = ACTIONS(1992), + [sym_super] = ACTIONS(1992), + [sym_nil] = ACTIONS(1992), + [sym_id] = ACTIONS(1992), + [sym_instancetype] = ACTIONS(1992), + [sym_Class] = ACTIONS(1992), + [sym_SEL] = ACTIONS(1992), + [sym_IMP] = ACTIONS(1992), + [sym_BOOL] = ACTIONS(1992), + [sym_auto] = ACTIONS(1992), + [anon_sym_ATautoreleasepool] = ACTIONS(1994), + [anon_sym_ATsynchronized] = ACTIONS(1994), + [anon_sym_ATtry] = ACTIONS(1994), + [anon_sym_ATthrow] = ACTIONS(1994), + [anon_sym_ATselector] = ACTIONS(1994), + [anon_sym_ATencode] = ACTIONS(1994), + [anon_sym_AT] = ACTIONS(1992), + [sym_YES] = ACTIONS(1992), + [sym_NO] = ACTIONS(1992), + [anon_sym___builtin_available] = ACTIONS(1992), + [anon_sym_ATavailable] = ACTIONS(1994), + [anon_sym_va_arg] = ACTIONS(1992), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [678] = { + [sym_identifier] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1994), + [aux_sym_preproc_def_token1] = ACTIONS(1994), + [aux_sym_preproc_if_token1] = ACTIONS(1992), + [aux_sym_preproc_if_token2] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), + [aux_sym_preproc_else_token1] = ACTIONS(1992), + [aux_sym_preproc_elif_token1] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_CARET] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_typedef] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym___attribute] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1992), + [anon_sym___declspec] = ACTIONS(1992), + [anon_sym___cdecl] = ACTIONS(1992), + [anon_sym___clrcall] = ACTIONS(1992), + [anon_sym___stdcall] = ACTIONS(1992), + [anon_sym___fastcall] = ACTIONS(1992), + [anon_sym___thiscall] = ACTIONS(1992), + [anon_sym___vectorcall] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_auto] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_inline] = ACTIONS(1992), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1992), + [anon_sym_restrict] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1992), + [anon_sym_in] = ACTIONS(1992), + [anon_sym_out] = ACTIONS(1992), + [anon_sym_inout] = ACTIONS(1992), + [anon_sym_bycopy] = ACTIONS(1992), + [anon_sym_byref] = ACTIONS(1992), + [anon_sym_oneway] = ACTIONS(1992), + [anon_sym__Nullable] = ACTIONS(1992), + [anon_sym__Nonnull] = ACTIONS(1992), + [anon_sym__Nullable_result] = ACTIONS(1992), + [anon_sym__Null_unspecified] = ACTIONS(1992), + [anon_sym___autoreleasing] = ACTIONS(1992), + [anon_sym___nullable] = ACTIONS(1992), + [anon_sym___nonnull] = ACTIONS(1992), + [anon_sym___strong] = ACTIONS(1992), + [anon_sym___weak] = ACTIONS(1992), + [anon_sym___bridge] = ACTIONS(1992), + [anon_sym___bridge_transfer] = ACTIONS(1992), + [anon_sym___bridge_retained] = ACTIONS(1992), + [anon_sym___unsafe_unretained] = ACTIONS(1992), + [anon_sym___block] = ACTIONS(1992), + [anon_sym___kindof] = ACTIONS(1992), + [anon_sym___unused] = ACTIONS(1992), + [anon_sym__Complex] = ACTIONS(1992), + [anon_sym___complex] = ACTIONS(1992), + [anon_sym_IBOutlet] = ACTIONS(1992), + [anon_sym_IBInspectable] = ACTIONS(1992), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1992), + [anon_sym_signed] = ACTIONS(1992), + [anon_sym_unsigned] = ACTIONS(1992), + [anon_sym_long] = ACTIONS(1992), + [anon_sym_short] = ACTIONS(1992), + [sym_primitive_type] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_switch] = ACTIONS(1992), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1992), + [sym_number_literal] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1994), + [anon_sym_u_SQUOTE] = ACTIONS(1994), + [anon_sym_U_SQUOTE] = ACTIONS(1994), + [anon_sym_u8_SQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_L_DQUOTE] = ACTIONS(1994), + [anon_sym_u_DQUOTE] = ACTIONS(1994), + [anon_sym_U_DQUOTE] = ACTIONS(1994), + [anon_sym_u8_DQUOTE] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym_true] = ACTIONS(1992), + [sym_false] = ACTIONS(1992), + [sym_null] = ACTIONS(1992), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1994), + [anon_sym_ATimport] = ACTIONS(1994), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1992), + [anon_sym_ATcompatibility_alias] = ACTIONS(1994), + [anon_sym_ATprotocol] = ACTIONS(1994), + [anon_sym_ATclass] = ACTIONS(1994), + [anon_sym_ATinterface] = ACTIONS(1994), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1992), + [sym_method_attribute_specifier] = ACTIONS(1992), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1992), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE] = ACTIONS(1992), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_API_AVAILABLE] = ACTIONS(1992), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_API_DEPRECATED] = ACTIONS(1992), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1992), + [anon_sym___deprecated_msg] = ACTIONS(1992), + [anon_sym___deprecated_enum_msg] = ACTIONS(1992), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1992), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1992), + [anon_sym_ATimplementation] = ACTIONS(1994), + [anon_sym_NS_ENUM] = ACTIONS(1992), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1992), + [anon_sym_NS_OPTIONS] = ACTIONS(1992), + [anon_sym_typeof] = ACTIONS(1992), + [anon_sym___typeof] = ACTIONS(1992), + [anon_sym___typeof__] = ACTIONS(1992), + [sym_self] = ACTIONS(1992), + [sym_super] = ACTIONS(1992), + [sym_nil] = ACTIONS(1992), + [sym_id] = ACTIONS(1992), + [sym_instancetype] = ACTIONS(1992), + [sym_Class] = ACTIONS(1992), + [sym_SEL] = ACTIONS(1992), + [sym_IMP] = ACTIONS(1992), + [sym_BOOL] = ACTIONS(1992), + [sym_auto] = ACTIONS(1992), + [anon_sym_ATautoreleasepool] = ACTIONS(1994), + [anon_sym_ATsynchronized] = ACTIONS(1994), + [anon_sym_ATtry] = ACTIONS(1994), + [anon_sym_ATthrow] = ACTIONS(1994), + [anon_sym_ATselector] = ACTIONS(1994), + [anon_sym_ATencode] = ACTIONS(1994), + [anon_sym_AT] = ACTIONS(1992), + [sym_YES] = ACTIONS(1992), + [sym_NO] = ACTIONS(1992), + [anon_sym___builtin_available] = ACTIONS(1992), + [anon_sym_ATavailable] = ACTIONS(1994), + [anon_sym_va_arg] = ACTIONS(1992), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [679] = { + [sym_identifier] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1994), + [aux_sym_preproc_def_token1] = ACTIONS(1994), + [aux_sym_preproc_if_token1] = ACTIONS(1992), + [aux_sym_preproc_if_token2] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), + [aux_sym_preproc_else_token1] = ACTIONS(1992), + [aux_sym_preproc_elif_token1] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_CARET] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_typedef] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym___attribute] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1992), + [anon_sym___declspec] = ACTIONS(1992), + [anon_sym___cdecl] = ACTIONS(1992), + [anon_sym___clrcall] = ACTIONS(1992), + [anon_sym___stdcall] = ACTIONS(1992), + [anon_sym___fastcall] = ACTIONS(1992), + [anon_sym___thiscall] = ACTIONS(1992), + [anon_sym___vectorcall] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_auto] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_inline] = ACTIONS(1992), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1992), + [anon_sym_restrict] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1992), + [anon_sym_in] = ACTIONS(1992), + [anon_sym_out] = ACTIONS(1992), + [anon_sym_inout] = ACTIONS(1992), + [anon_sym_bycopy] = ACTIONS(1992), + [anon_sym_byref] = ACTIONS(1992), + [anon_sym_oneway] = ACTIONS(1992), + [anon_sym__Nullable] = ACTIONS(1992), + [anon_sym__Nonnull] = ACTIONS(1992), + [anon_sym__Nullable_result] = ACTIONS(1992), + [anon_sym__Null_unspecified] = ACTIONS(1992), + [anon_sym___autoreleasing] = ACTIONS(1992), + [anon_sym___nullable] = ACTIONS(1992), + [anon_sym___nonnull] = ACTIONS(1992), + [anon_sym___strong] = ACTIONS(1992), + [anon_sym___weak] = ACTIONS(1992), + [anon_sym___bridge] = ACTIONS(1992), + [anon_sym___bridge_transfer] = ACTIONS(1992), + [anon_sym___bridge_retained] = ACTIONS(1992), + [anon_sym___unsafe_unretained] = ACTIONS(1992), + [anon_sym___block] = ACTIONS(1992), + [anon_sym___kindof] = ACTIONS(1992), + [anon_sym___unused] = ACTIONS(1992), + [anon_sym__Complex] = ACTIONS(1992), + [anon_sym___complex] = ACTIONS(1992), + [anon_sym_IBOutlet] = ACTIONS(1992), + [anon_sym_IBInspectable] = ACTIONS(1992), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1992), + [anon_sym_signed] = ACTIONS(1992), + [anon_sym_unsigned] = ACTIONS(1992), + [anon_sym_long] = ACTIONS(1992), + [anon_sym_short] = ACTIONS(1992), + [sym_primitive_type] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_switch] = ACTIONS(1992), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1992), + [sym_number_literal] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1994), + [anon_sym_u_SQUOTE] = ACTIONS(1994), + [anon_sym_U_SQUOTE] = ACTIONS(1994), + [anon_sym_u8_SQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_L_DQUOTE] = ACTIONS(1994), + [anon_sym_u_DQUOTE] = ACTIONS(1994), + [anon_sym_U_DQUOTE] = ACTIONS(1994), + [anon_sym_u8_DQUOTE] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym_true] = ACTIONS(1992), + [sym_false] = ACTIONS(1992), + [sym_null] = ACTIONS(1992), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1994), + [anon_sym_ATimport] = ACTIONS(1994), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1992), + [anon_sym_ATcompatibility_alias] = ACTIONS(1994), + [anon_sym_ATprotocol] = ACTIONS(1994), + [anon_sym_ATclass] = ACTIONS(1994), + [anon_sym_ATinterface] = ACTIONS(1994), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1992), + [sym_method_attribute_specifier] = ACTIONS(1992), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1992), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE] = ACTIONS(1992), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_API_AVAILABLE] = ACTIONS(1992), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_API_DEPRECATED] = ACTIONS(1992), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1992), + [anon_sym___deprecated_msg] = ACTIONS(1992), + [anon_sym___deprecated_enum_msg] = ACTIONS(1992), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1992), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1992), + [anon_sym_ATimplementation] = ACTIONS(1994), + [anon_sym_NS_ENUM] = ACTIONS(1992), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1992), + [anon_sym_NS_OPTIONS] = ACTIONS(1992), + [anon_sym_typeof] = ACTIONS(1992), + [anon_sym___typeof] = ACTIONS(1992), + [anon_sym___typeof__] = ACTIONS(1992), + [sym_self] = ACTIONS(1992), + [sym_super] = ACTIONS(1992), + [sym_nil] = ACTIONS(1992), + [sym_id] = ACTIONS(1992), + [sym_instancetype] = ACTIONS(1992), + [sym_Class] = ACTIONS(1992), + [sym_SEL] = ACTIONS(1992), + [sym_IMP] = ACTIONS(1992), + [sym_BOOL] = ACTIONS(1992), + [sym_auto] = ACTIONS(1992), + [anon_sym_ATautoreleasepool] = ACTIONS(1994), + [anon_sym_ATsynchronized] = ACTIONS(1994), + [anon_sym_ATtry] = ACTIONS(1994), + [anon_sym_ATthrow] = ACTIONS(1994), + [anon_sym_ATselector] = ACTIONS(1994), + [anon_sym_ATencode] = ACTIONS(1994), + [anon_sym_AT] = ACTIONS(1992), + [sym_YES] = ACTIONS(1992), + [sym_NO] = ACTIONS(1992), + [anon_sym___builtin_available] = ACTIONS(1992), + [anon_sym_ATavailable] = ACTIONS(1994), + [anon_sym_va_arg] = ACTIONS(1992), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [680] = { + [sym_identifier] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1994), + [aux_sym_preproc_def_token1] = ACTIONS(1994), + [aux_sym_preproc_if_token1] = ACTIONS(1992), + [aux_sym_preproc_if_token2] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), + [aux_sym_preproc_else_token1] = ACTIONS(1992), + [aux_sym_preproc_elif_token1] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_CARET] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_typedef] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym___attribute] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1992), + [anon_sym___declspec] = ACTIONS(1992), + [anon_sym___cdecl] = ACTIONS(1992), + [anon_sym___clrcall] = ACTIONS(1992), + [anon_sym___stdcall] = ACTIONS(1992), + [anon_sym___fastcall] = ACTIONS(1992), + [anon_sym___thiscall] = ACTIONS(1992), + [anon_sym___vectorcall] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_auto] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_inline] = ACTIONS(1992), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1992), + [anon_sym_restrict] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1992), + [anon_sym_in] = ACTIONS(1992), + [anon_sym_out] = ACTIONS(1992), + [anon_sym_inout] = ACTIONS(1992), + [anon_sym_bycopy] = ACTIONS(1992), + [anon_sym_byref] = ACTIONS(1992), + [anon_sym_oneway] = ACTIONS(1992), + [anon_sym__Nullable] = ACTIONS(1992), + [anon_sym__Nonnull] = ACTIONS(1992), + [anon_sym__Nullable_result] = ACTIONS(1992), + [anon_sym__Null_unspecified] = ACTIONS(1992), + [anon_sym___autoreleasing] = ACTIONS(1992), + [anon_sym___nullable] = ACTIONS(1992), + [anon_sym___nonnull] = ACTIONS(1992), + [anon_sym___strong] = ACTIONS(1992), + [anon_sym___weak] = ACTIONS(1992), + [anon_sym___bridge] = ACTIONS(1992), + [anon_sym___bridge_transfer] = ACTIONS(1992), + [anon_sym___bridge_retained] = ACTIONS(1992), + [anon_sym___unsafe_unretained] = ACTIONS(1992), + [anon_sym___block] = ACTIONS(1992), + [anon_sym___kindof] = ACTIONS(1992), + [anon_sym___unused] = ACTIONS(1992), + [anon_sym__Complex] = ACTIONS(1992), + [anon_sym___complex] = ACTIONS(1992), + [anon_sym_IBOutlet] = ACTIONS(1992), + [anon_sym_IBInspectable] = ACTIONS(1992), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1992), + [anon_sym_signed] = ACTIONS(1992), + [anon_sym_unsigned] = ACTIONS(1992), + [anon_sym_long] = ACTIONS(1992), + [anon_sym_short] = ACTIONS(1992), + [sym_primitive_type] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_switch] = ACTIONS(1992), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1992), + [sym_number_literal] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1994), + [anon_sym_u_SQUOTE] = ACTIONS(1994), + [anon_sym_U_SQUOTE] = ACTIONS(1994), + [anon_sym_u8_SQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_L_DQUOTE] = ACTIONS(1994), + [anon_sym_u_DQUOTE] = ACTIONS(1994), + [anon_sym_U_DQUOTE] = ACTIONS(1994), + [anon_sym_u8_DQUOTE] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym_true] = ACTIONS(1992), + [sym_false] = ACTIONS(1992), + [sym_null] = ACTIONS(1992), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1994), + [anon_sym_ATimport] = ACTIONS(1994), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1992), + [anon_sym_ATcompatibility_alias] = ACTIONS(1994), + [anon_sym_ATprotocol] = ACTIONS(1994), + [anon_sym_ATclass] = ACTIONS(1994), + [anon_sym_ATinterface] = ACTIONS(1994), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1992), + [sym_method_attribute_specifier] = ACTIONS(1992), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1992), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE] = ACTIONS(1992), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_API_AVAILABLE] = ACTIONS(1992), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_API_DEPRECATED] = ACTIONS(1992), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1992), + [anon_sym___deprecated_msg] = ACTIONS(1992), + [anon_sym___deprecated_enum_msg] = ACTIONS(1992), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1992), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1992), + [anon_sym_ATimplementation] = ACTIONS(1994), + [anon_sym_NS_ENUM] = ACTIONS(1992), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1992), + [anon_sym_NS_OPTIONS] = ACTIONS(1992), + [anon_sym_typeof] = ACTIONS(1992), + [anon_sym___typeof] = ACTIONS(1992), + [anon_sym___typeof__] = ACTIONS(1992), + [sym_self] = ACTIONS(1992), + [sym_super] = ACTIONS(1992), + [sym_nil] = ACTIONS(1992), + [sym_id] = ACTIONS(1992), + [sym_instancetype] = ACTIONS(1992), + [sym_Class] = ACTIONS(1992), + [sym_SEL] = ACTIONS(1992), + [sym_IMP] = ACTIONS(1992), + [sym_BOOL] = ACTIONS(1992), + [sym_auto] = ACTIONS(1992), + [anon_sym_ATautoreleasepool] = ACTIONS(1994), + [anon_sym_ATsynchronized] = ACTIONS(1994), + [anon_sym_ATtry] = ACTIONS(1994), + [anon_sym_ATthrow] = ACTIONS(1994), + [anon_sym_ATselector] = ACTIONS(1994), + [anon_sym_ATencode] = ACTIONS(1994), + [anon_sym_AT] = ACTIONS(1992), + [sym_YES] = ACTIONS(1992), + [sym_NO] = ACTIONS(1992), + [anon_sym___builtin_available] = ACTIONS(1992), + [anon_sym_ATavailable] = ACTIONS(1994), + [anon_sym_va_arg] = ACTIONS(1992), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [681] = { + [sym_identifier] = ACTIONS(1996), + [aux_sym_preproc_include_token1] = ACTIONS(1998), + [aux_sym_preproc_def_token1] = ACTIONS(1998), + [aux_sym_preproc_if_token1] = ACTIONS(1996), + [aux_sym_preproc_if_token2] = ACTIONS(1996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1996), + [aux_sym_preproc_else_token1] = ACTIONS(1996), + [aux_sym_preproc_elif_token1] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(1998), + [anon_sym_BANG] = ACTIONS(1998), + [anon_sym_TILDE] = ACTIONS(1998), + [anon_sym_DASH] = ACTIONS(1996), + [anon_sym_PLUS] = ACTIONS(1996), + [anon_sym_STAR] = ACTIONS(1998), + [anon_sym_CARET] = ACTIONS(1998), + [anon_sym_AMP] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym_typedef] = ACTIONS(1996), + [anon_sym_extern] = ACTIONS(1996), + [anon_sym___attribute] = ACTIONS(1996), + [anon_sym___attribute__] = ACTIONS(1996), + [anon_sym___declspec] = ACTIONS(1996), + [anon_sym___cdecl] = ACTIONS(1996), + [anon_sym___clrcall] = ACTIONS(1996), + [anon_sym___stdcall] = ACTIONS(1996), + [anon_sym___fastcall] = ACTIONS(1996), + [anon_sym___thiscall] = ACTIONS(1996), + [anon_sym___vectorcall] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1998), + [anon_sym_static] = ACTIONS(1996), + [anon_sym_auto] = ACTIONS(1996), + [anon_sym_register] = ACTIONS(1996), + [anon_sym_inline] = ACTIONS(1996), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1996), + [anon_sym_const] = ACTIONS(1996), + [anon_sym_volatile] = ACTIONS(1996), + [anon_sym_restrict] = ACTIONS(1996), + [anon_sym__Atomic] = ACTIONS(1996), + [anon_sym_in] = ACTIONS(1996), + [anon_sym_out] = ACTIONS(1996), + [anon_sym_inout] = ACTIONS(1996), + [anon_sym_bycopy] = ACTIONS(1996), + [anon_sym_byref] = ACTIONS(1996), + [anon_sym_oneway] = ACTIONS(1996), + [anon_sym__Nullable] = ACTIONS(1996), + [anon_sym__Nonnull] = ACTIONS(1996), + [anon_sym__Nullable_result] = ACTIONS(1996), + [anon_sym__Null_unspecified] = ACTIONS(1996), + [anon_sym___autoreleasing] = ACTIONS(1996), + [anon_sym___nullable] = ACTIONS(1996), + [anon_sym___nonnull] = ACTIONS(1996), + [anon_sym___strong] = ACTIONS(1996), + [anon_sym___weak] = ACTIONS(1996), + [anon_sym___bridge] = ACTIONS(1996), + [anon_sym___bridge_transfer] = ACTIONS(1996), + [anon_sym___bridge_retained] = ACTIONS(1996), + [anon_sym___unsafe_unretained] = ACTIONS(1996), + [anon_sym___block] = ACTIONS(1996), + [anon_sym___kindof] = ACTIONS(1996), + [anon_sym___unused] = ACTIONS(1996), + [anon_sym__Complex] = ACTIONS(1996), + [anon_sym___complex] = ACTIONS(1996), + [anon_sym_IBOutlet] = ACTIONS(1996), + [anon_sym_IBInspectable] = ACTIONS(1996), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1996), + [anon_sym_signed] = ACTIONS(1996), + [anon_sym_unsigned] = ACTIONS(1996), + [anon_sym_long] = ACTIONS(1996), + [anon_sym_short] = ACTIONS(1996), + [sym_primitive_type] = ACTIONS(1996), + [anon_sym_enum] = ACTIONS(1996), + [anon_sym_struct] = ACTIONS(1996), + [anon_sym_union] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1996), + [anon_sym_switch] = ACTIONS(1996), + [anon_sym_case] = ACTIONS(1996), + [anon_sym_default] = ACTIONS(1996), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(1996), + [anon_sym_for] = ACTIONS(1996), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_break] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(1996), + [anon_sym_goto] = ACTIONS(1996), + [anon_sym_DASH_DASH] = ACTIONS(1998), + [anon_sym_PLUS_PLUS] = ACTIONS(1998), + [anon_sym_sizeof] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(1998), + [anon_sym_u_SQUOTE] = ACTIONS(1998), + [anon_sym_U_SQUOTE] = ACTIONS(1998), + [anon_sym_u8_SQUOTE] = ACTIONS(1998), + [anon_sym_SQUOTE] = ACTIONS(1998), + [anon_sym_L_DQUOTE] = ACTIONS(1998), + [anon_sym_u_DQUOTE] = ACTIONS(1998), + [anon_sym_U_DQUOTE] = ACTIONS(1998), + [anon_sym_u8_DQUOTE] = ACTIONS(1998), + [anon_sym_DQUOTE] = ACTIONS(1998), + [sym_true] = ACTIONS(1996), + [sym_false] = ACTIONS(1996), + [sym_null] = ACTIONS(1996), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1998), + [anon_sym_ATimport] = ACTIONS(1998), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1996), + [anon_sym_ATcompatibility_alias] = ACTIONS(1998), + [anon_sym_ATprotocol] = ACTIONS(1998), + [anon_sym_ATclass] = ACTIONS(1998), + [anon_sym_ATinterface] = ACTIONS(1998), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1996), + [sym_method_attribute_specifier] = ACTIONS(1996), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1996), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1996), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1996), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1996), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1996), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1996), + [anon_sym_NS_AVAILABLE] = ACTIONS(1996), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1996), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1996), + [anon_sym_API_AVAILABLE] = ACTIONS(1996), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1996), + [anon_sym_API_DEPRECATED] = ACTIONS(1996), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1996), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1996), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1996), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1996), + [anon_sym___deprecated_msg] = ACTIONS(1996), + [anon_sym___deprecated_enum_msg] = ACTIONS(1996), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1996), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1996), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1996), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1996), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1996), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1996), + [anon_sym_ATimplementation] = ACTIONS(1998), + [anon_sym_NS_ENUM] = ACTIONS(1996), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1996), + [anon_sym_NS_OPTIONS] = ACTIONS(1996), + [anon_sym_typeof] = ACTIONS(1996), + [anon_sym___typeof] = ACTIONS(1996), + [anon_sym___typeof__] = ACTIONS(1996), + [sym_self] = ACTIONS(1996), + [sym_super] = ACTIONS(1996), + [sym_nil] = ACTIONS(1996), + [sym_id] = ACTIONS(1996), + [sym_instancetype] = ACTIONS(1996), + [sym_Class] = ACTIONS(1996), + [sym_SEL] = ACTIONS(1996), + [sym_IMP] = ACTIONS(1996), + [sym_BOOL] = ACTIONS(1996), + [sym_auto] = ACTIONS(1996), + [anon_sym_ATautoreleasepool] = ACTIONS(1998), + [anon_sym_ATsynchronized] = ACTIONS(1998), + [anon_sym_ATtry] = ACTIONS(1998), + [anon_sym_ATthrow] = ACTIONS(1998), + [anon_sym_ATselector] = ACTIONS(1998), + [anon_sym_ATencode] = ACTIONS(1998), + [anon_sym_AT] = ACTIONS(1996), + [sym_YES] = ACTIONS(1996), + [sym_NO] = ACTIONS(1996), + [anon_sym___builtin_available] = ACTIONS(1996), + [anon_sym_ATavailable] = ACTIONS(1998), + [anon_sym_va_arg] = ACTIONS(1996), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [682] = { + [sym_identifier] = ACTIONS(2000), + [aux_sym_preproc_include_token1] = ACTIONS(2002), + [aux_sym_preproc_def_token1] = ACTIONS(2002), + [aux_sym_preproc_if_token1] = ACTIONS(2000), + [aux_sym_preproc_if_token2] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2000), + [aux_sym_preproc_else_token1] = ACTIONS(2000), + [aux_sym_preproc_elif_token1] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(2002), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_PLUS] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_CARET] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_typedef] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym___attribute] = ACTIONS(2000), + [anon_sym___attribute__] = ACTIONS(2000), + [anon_sym___declspec] = ACTIONS(2000), + [anon_sym___cdecl] = ACTIONS(2000), + [anon_sym___clrcall] = ACTIONS(2000), + [anon_sym___stdcall] = ACTIONS(2000), + [anon_sym___fastcall] = ACTIONS(2000), + [anon_sym___thiscall] = ACTIONS(2000), + [anon_sym___vectorcall] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym_static] = ACTIONS(2000), + [anon_sym_auto] = ACTIONS(2000), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_inline] = ACTIONS(2000), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [anon_sym_volatile] = ACTIONS(2000), + [anon_sym_restrict] = ACTIONS(2000), + [anon_sym__Atomic] = ACTIONS(2000), + [anon_sym_in] = ACTIONS(2000), + [anon_sym_out] = ACTIONS(2000), + [anon_sym_inout] = ACTIONS(2000), + [anon_sym_bycopy] = ACTIONS(2000), + [anon_sym_byref] = ACTIONS(2000), + [anon_sym_oneway] = ACTIONS(2000), + [anon_sym__Nullable] = ACTIONS(2000), + [anon_sym__Nonnull] = ACTIONS(2000), + [anon_sym__Nullable_result] = ACTIONS(2000), + [anon_sym__Null_unspecified] = ACTIONS(2000), + [anon_sym___autoreleasing] = ACTIONS(2000), + [anon_sym___nullable] = ACTIONS(2000), + [anon_sym___nonnull] = ACTIONS(2000), + [anon_sym___strong] = ACTIONS(2000), + [anon_sym___weak] = ACTIONS(2000), + [anon_sym___bridge] = ACTIONS(2000), + [anon_sym___bridge_transfer] = ACTIONS(2000), + [anon_sym___bridge_retained] = ACTIONS(2000), + [anon_sym___unsafe_unretained] = ACTIONS(2000), + [anon_sym___block] = ACTIONS(2000), + [anon_sym___kindof] = ACTIONS(2000), + [anon_sym___unused] = ACTIONS(2000), + [anon_sym__Complex] = ACTIONS(2000), + [anon_sym___complex] = ACTIONS(2000), + [anon_sym_IBOutlet] = ACTIONS(2000), + [anon_sym_IBInspectable] = ACTIONS(2000), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2000), + [anon_sym_signed] = ACTIONS(2000), + [anon_sym_unsigned] = ACTIONS(2000), + [anon_sym_long] = ACTIONS(2000), + [anon_sym_short] = ACTIONS(2000), + [sym_primitive_type] = ACTIONS(2000), + [anon_sym_enum] = ACTIONS(2000), + [anon_sym_struct] = ACTIONS(2000), + [anon_sym_union] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_switch] = ACTIONS(2000), + [anon_sym_case] = ACTIONS(2000), + [anon_sym_default] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_goto] = ACTIONS(2000), + [anon_sym_DASH_DASH] = ACTIONS(2002), + [anon_sym_PLUS_PLUS] = ACTIONS(2002), + [anon_sym_sizeof] = ACTIONS(2000), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2002), + [anon_sym_u_SQUOTE] = ACTIONS(2002), + [anon_sym_U_SQUOTE] = ACTIONS(2002), + [anon_sym_u8_SQUOTE] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2000), + [sym_false] = ACTIONS(2000), + [sym_null] = ACTIONS(2000), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2002), + [anon_sym_ATimport] = ACTIONS(2002), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2000), + [anon_sym_ATcompatibility_alias] = ACTIONS(2002), + [anon_sym_ATprotocol] = ACTIONS(2002), + [anon_sym_ATclass] = ACTIONS(2002), + [anon_sym_ATinterface] = ACTIONS(2002), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2000), + [sym_method_attribute_specifier] = ACTIONS(2000), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2000), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2000), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2000), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2000), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2000), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2000), + [anon_sym_NS_AVAILABLE] = ACTIONS(2000), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2000), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2000), + [anon_sym_API_AVAILABLE] = ACTIONS(2000), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2000), + [anon_sym_API_DEPRECATED] = ACTIONS(2000), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2000), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2000), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2000), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2000), + [anon_sym___deprecated_msg] = ACTIONS(2000), + [anon_sym___deprecated_enum_msg] = ACTIONS(2000), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2000), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2000), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2000), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2000), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2000), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2000), + [anon_sym_ATimplementation] = ACTIONS(2002), + [anon_sym_NS_ENUM] = ACTIONS(2000), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2000), + [anon_sym_NS_OPTIONS] = ACTIONS(2000), + [anon_sym_typeof] = ACTIONS(2000), + [anon_sym___typeof] = ACTIONS(2000), + [anon_sym___typeof__] = ACTIONS(2000), + [sym_self] = ACTIONS(2000), + [sym_super] = ACTIONS(2000), + [sym_nil] = ACTIONS(2000), + [sym_id] = ACTIONS(2000), + [sym_instancetype] = ACTIONS(2000), + [sym_Class] = ACTIONS(2000), + [sym_SEL] = ACTIONS(2000), + [sym_IMP] = ACTIONS(2000), + [sym_BOOL] = ACTIONS(2000), + [sym_auto] = ACTIONS(2000), + [anon_sym_ATautoreleasepool] = ACTIONS(2002), + [anon_sym_ATsynchronized] = ACTIONS(2002), + [anon_sym_ATtry] = ACTIONS(2002), + [anon_sym_ATthrow] = ACTIONS(2002), + [anon_sym_ATselector] = ACTIONS(2002), + [anon_sym_ATencode] = ACTIONS(2002), + [anon_sym_AT] = ACTIONS(2000), + [sym_YES] = ACTIONS(2000), + [sym_NO] = ACTIONS(2000), + [anon_sym___builtin_available] = ACTIONS(2000), + [anon_sym_ATavailable] = ACTIONS(2002), + [anon_sym_va_arg] = ACTIONS(2000), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [683] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [aux_sym_preproc_else_token1] = ACTIONS(2004), + [aux_sym_preproc_elif_token1] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [684] = { + [sym_identifier] = ACTIONS(2008), + [aux_sym_preproc_include_token1] = ACTIONS(2010), + [aux_sym_preproc_def_token1] = ACTIONS(2010), + [aux_sym_preproc_if_token1] = ACTIONS(2008), + [aux_sym_preproc_if_token2] = ACTIONS(2008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2008), + [aux_sym_preproc_else_token1] = ACTIONS(2008), + [aux_sym_preproc_elif_token1] = ACTIONS(2008), + [anon_sym_LPAREN2] = ACTIONS(2010), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(2010), + [anon_sym_CARET] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2010), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_typedef] = ACTIONS(2008), + [anon_sym_extern] = ACTIONS(2008), + [anon_sym___attribute] = ACTIONS(2008), + [anon_sym___attribute__] = ACTIONS(2008), + [anon_sym___declspec] = ACTIONS(2008), + [anon_sym___cdecl] = ACTIONS(2008), + [anon_sym___clrcall] = ACTIONS(2008), + [anon_sym___stdcall] = ACTIONS(2008), + [anon_sym___fastcall] = ACTIONS(2008), + [anon_sym___thiscall] = ACTIONS(2008), + [anon_sym___vectorcall] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_static] = ACTIONS(2008), + [anon_sym_auto] = ACTIONS(2008), + [anon_sym_register] = ACTIONS(2008), + [anon_sym_inline] = ACTIONS(2008), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2008), + [anon_sym_const] = ACTIONS(2008), + [anon_sym_volatile] = ACTIONS(2008), + [anon_sym_restrict] = ACTIONS(2008), + [anon_sym__Atomic] = ACTIONS(2008), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_out] = ACTIONS(2008), + [anon_sym_inout] = ACTIONS(2008), + [anon_sym_bycopy] = ACTIONS(2008), + [anon_sym_byref] = ACTIONS(2008), + [anon_sym_oneway] = ACTIONS(2008), + [anon_sym__Nullable] = ACTIONS(2008), + [anon_sym__Nonnull] = ACTIONS(2008), + [anon_sym__Nullable_result] = ACTIONS(2008), + [anon_sym__Null_unspecified] = ACTIONS(2008), + [anon_sym___autoreleasing] = ACTIONS(2008), + [anon_sym___nullable] = ACTIONS(2008), + [anon_sym___nonnull] = ACTIONS(2008), + [anon_sym___strong] = ACTIONS(2008), + [anon_sym___weak] = ACTIONS(2008), + [anon_sym___bridge] = ACTIONS(2008), + [anon_sym___bridge_transfer] = ACTIONS(2008), + [anon_sym___bridge_retained] = ACTIONS(2008), + [anon_sym___unsafe_unretained] = ACTIONS(2008), + [anon_sym___block] = ACTIONS(2008), + [anon_sym___kindof] = ACTIONS(2008), + [anon_sym___unused] = ACTIONS(2008), + [anon_sym__Complex] = ACTIONS(2008), + [anon_sym___complex] = ACTIONS(2008), + [anon_sym_IBOutlet] = ACTIONS(2008), + [anon_sym_IBInspectable] = ACTIONS(2008), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2008), + [anon_sym_signed] = ACTIONS(2008), + [anon_sym_unsigned] = ACTIONS(2008), + [anon_sym_long] = ACTIONS(2008), + [anon_sym_short] = ACTIONS(2008), + [sym_primitive_type] = ACTIONS(2008), + [anon_sym_enum] = ACTIONS(2008), + [anon_sym_struct] = ACTIONS(2008), + [anon_sym_union] = ACTIONS(2008), + [anon_sym_if] = ACTIONS(2008), + [anon_sym_switch] = ACTIONS(2008), + [anon_sym_case] = ACTIONS(2008), + [anon_sym_default] = ACTIONS(2008), + [anon_sym_while] = ACTIONS(2008), + [anon_sym_do] = ACTIONS(2008), + [anon_sym_for] = ACTIONS(2008), + [anon_sym_return] = ACTIONS(2008), + [anon_sym_break] = ACTIONS(2008), + [anon_sym_continue] = ACTIONS(2008), + [anon_sym_goto] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2010), + [anon_sym_PLUS_PLUS] = ACTIONS(2010), + [anon_sym_sizeof] = ACTIONS(2008), + [sym_number_literal] = ACTIONS(2010), + [anon_sym_L_SQUOTE] = ACTIONS(2010), + [anon_sym_u_SQUOTE] = ACTIONS(2010), + [anon_sym_U_SQUOTE] = ACTIONS(2010), + [anon_sym_u8_SQUOTE] = ACTIONS(2010), + [anon_sym_SQUOTE] = ACTIONS(2010), + [anon_sym_L_DQUOTE] = ACTIONS(2010), + [anon_sym_u_DQUOTE] = ACTIONS(2010), + [anon_sym_U_DQUOTE] = ACTIONS(2010), + [anon_sym_u8_DQUOTE] = ACTIONS(2010), + [anon_sym_DQUOTE] = ACTIONS(2010), + [sym_true] = ACTIONS(2008), + [sym_false] = ACTIONS(2008), + [sym_null] = ACTIONS(2008), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2010), + [anon_sym_ATimport] = ACTIONS(2010), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2008), + [anon_sym_ATcompatibility_alias] = ACTIONS(2010), + [anon_sym_ATprotocol] = ACTIONS(2010), + [anon_sym_ATclass] = ACTIONS(2010), + [anon_sym_ATinterface] = ACTIONS(2010), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2008), + [sym_method_attribute_specifier] = ACTIONS(2008), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2008), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2008), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2008), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2008), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2008), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2008), + [anon_sym_NS_AVAILABLE] = ACTIONS(2008), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2008), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2008), + [anon_sym_API_AVAILABLE] = ACTIONS(2008), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2008), + [anon_sym_API_DEPRECATED] = ACTIONS(2008), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2008), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2008), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2008), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2008), + [anon_sym___deprecated_msg] = ACTIONS(2008), + [anon_sym___deprecated_enum_msg] = ACTIONS(2008), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2008), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2008), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2008), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2008), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2008), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2008), + [anon_sym_ATimplementation] = ACTIONS(2010), + [anon_sym_NS_ENUM] = ACTIONS(2008), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2008), + [anon_sym_NS_OPTIONS] = ACTIONS(2008), + [anon_sym_typeof] = ACTIONS(2008), + [anon_sym___typeof] = ACTIONS(2008), + [anon_sym___typeof__] = ACTIONS(2008), + [sym_self] = ACTIONS(2008), + [sym_super] = ACTIONS(2008), + [sym_nil] = ACTIONS(2008), + [sym_id] = ACTIONS(2008), + [sym_instancetype] = ACTIONS(2008), + [sym_Class] = ACTIONS(2008), + [sym_SEL] = ACTIONS(2008), + [sym_IMP] = ACTIONS(2008), + [sym_BOOL] = ACTIONS(2008), + [sym_auto] = ACTIONS(2008), + [anon_sym_ATautoreleasepool] = ACTIONS(2010), + [anon_sym_ATsynchronized] = ACTIONS(2010), + [anon_sym_ATtry] = ACTIONS(2010), + [anon_sym_ATthrow] = ACTIONS(2010), + [anon_sym_ATselector] = ACTIONS(2010), + [anon_sym_ATencode] = ACTIONS(2010), + [anon_sym_AT] = ACTIONS(2008), + [sym_YES] = ACTIONS(2008), + [sym_NO] = ACTIONS(2008), + [anon_sym___builtin_available] = ACTIONS(2008), + [anon_sym_ATavailable] = ACTIONS(2010), + [anon_sym_va_arg] = ACTIONS(2008), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [685] = { + [sym_identifier] = ACTIONS(2012), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2014), + [aux_sym_preproc_if_token1] = ACTIONS(2012), + [aux_sym_preproc_if_token2] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2012), + [aux_sym_preproc_else_token1] = ACTIONS(2012), + [aux_sym_preproc_elif_token1] = ACTIONS(2012), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_PLUS] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_CARET] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_typedef] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym___attribute] = ACTIONS(2012), + [anon_sym___attribute__] = ACTIONS(2012), + [anon_sym___declspec] = ACTIONS(2012), + [anon_sym___cdecl] = ACTIONS(2012), + [anon_sym___clrcall] = ACTIONS(2012), + [anon_sym___stdcall] = ACTIONS(2012), + [anon_sym___fastcall] = ACTIONS(2012), + [anon_sym___thiscall] = ACTIONS(2012), + [anon_sym___vectorcall] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_auto] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_inline] = ACTIONS(2012), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_volatile] = ACTIONS(2012), + [anon_sym_restrict] = ACTIONS(2012), + [anon_sym__Atomic] = ACTIONS(2012), + [anon_sym_in] = ACTIONS(2012), + [anon_sym_out] = ACTIONS(2012), + [anon_sym_inout] = ACTIONS(2012), + [anon_sym_bycopy] = ACTIONS(2012), + [anon_sym_byref] = ACTIONS(2012), + [anon_sym_oneway] = ACTIONS(2012), + [anon_sym__Nullable] = ACTIONS(2012), + [anon_sym__Nonnull] = ACTIONS(2012), + [anon_sym__Nullable_result] = ACTIONS(2012), + [anon_sym__Null_unspecified] = ACTIONS(2012), + [anon_sym___autoreleasing] = ACTIONS(2012), + [anon_sym___nullable] = ACTIONS(2012), + [anon_sym___nonnull] = ACTIONS(2012), + [anon_sym___strong] = ACTIONS(2012), + [anon_sym___weak] = ACTIONS(2012), + [anon_sym___bridge] = ACTIONS(2012), + [anon_sym___bridge_transfer] = ACTIONS(2012), + [anon_sym___bridge_retained] = ACTIONS(2012), + [anon_sym___unsafe_unretained] = ACTIONS(2012), + [anon_sym___block] = ACTIONS(2012), + [anon_sym___kindof] = ACTIONS(2012), + [anon_sym___unused] = ACTIONS(2012), + [anon_sym__Complex] = ACTIONS(2012), + [anon_sym___complex] = ACTIONS(2012), + [anon_sym_IBOutlet] = ACTIONS(2012), + [anon_sym_IBInspectable] = ACTIONS(2012), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2012), + [anon_sym_signed] = ACTIONS(2012), + [anon_sym_unsigned] = ACTIONS(2012), + [anon_sym_long] = ACTIONS(2012), + [anon_sym_short] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_switch] = ACTIONS(2012), + [anon_sym_case] = ACTIONS(2012), + [anon_sym_default] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_goto] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2014), + [anon_sym_PLUS_PLUS] = ACTIONS(2014), + [anon_sym_sizeof] = ACTIONS(2012), + [sym_number_literal] = ACTIONS(2014), + [anon_sym_L_SQUOTE] = ACTIONS(2014), + [anon_sym_u_SQUOTE] = ACTIONS(2014), + [anon_sym_U_SQUOTE] = ACTIONS(2014), + [anon_sym_u8_SQUOTE] = ACTIONS(2014), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_L_DQUOTE] = ACTIONS(2014), + [anon_sym_u_DQUOTE] = ACTIONS(2014), + [anon_sym_U_DQUOTE] = ACTIONS(2014), + [anon_sym_u8_DQUOTE] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym_true] = ACTIONS(2012), + [sym_false] = ACTIONS(2012), + [sym_null] = ACTIONS(2012), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2014), + [anon_sym_ATimport] = ACTIONS(2014), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2012), + [anon_sym_ATcompatibility_alias] = ACTIONS(2014), + [anon_sym_ATprotocol] = ACTIONS(2014), + [anon_sym_ATclass] = ACTIONS(2014), + [anon_sym_ATinterface] = ACTIONS(2014), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2012), + [sym_method_attribute_specifier] = ACTIONS(2012), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2012), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2012), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2012), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_NS_AVAILABLE] = ACTIONS(2012), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2012), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_API_AVAILABLE] = ACTIONS(2012), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_API_DEPRECATED] = ACTIONS(2012), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2012), + [anon_sym___deprecated_msg] = ACTIONS(2012), + [anon_sym___deprecated_enum_msg] = ACTIONS(2012), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2012), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2012), + [anon_sym_ATimplementation] = ACTIONS(2014), + [anon_sym_NS_ENUM] = ACTIONS(2012), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2012), + [anon_sym_NS_OPTIONS] = ACTIONS(2012), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym___typeof] = ACTIONS(2012), + [anon_sym___typeof__] = ACTIONS(2012), + [sym_self] = ACTIONS(2012), + [sym_super] = ACTIONS(2012), + [sym_nil] = ACTIONS(2012), + [sym_id] = ACTIONS(2012), + [sym_instancetype] = ACTIONS(2012), + [sym_Class] = ACTIONS(2012), + [sym_SEL] = ACTIONS(2012), + [sym_IMP] = ACTIONS(2012), + [sym_BOOL] = ACTIONS(2012), + [sym_auto] = ACTIONS(2012), + [anon_sym_ATautoreleasepool] = ACTIONS(2014), + [anon_sym_ATsynchronized] = ACTIONS(2014), + [anon_sym_ATtry] = ACTIONS(2014), + [anon_sym_ATthrow] = ACTIONS(2014), + [anon_sym_ATselector] = ACTIONS(2014), + [anon_sym_ATencode] = ACTIONS(2014), + [anon_sym_AT] = ACTIONS(2012), + [sym_YES] = ACTIONS(2012), + [sym_NO] = ACTIONS(2012), + [anon_sym___builtin_available] = ACTIONS(2012), + [anon_sym_ATavailable] = ACTIONS(2014), + [anon_sym_va_arg] = ACTIONS(2012), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [686] = { + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2018), + [aux_sym_preproc_def_token1] = ACTIONS(2018), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token2] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [aux_sym_preproc_else_token1] = ACTIONS(2016), + [aux_sym_preproc_elif_token1] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_auto] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym_in] = ACTIONS(2016), + [anon_sym_out] = ACTIONS(2016), + [anon_sym_inout] = ACTIONS(2016), + [anon_sym_bycopy] = ACTIONS(2016), + [anon_sym_byref] = ACTIONS(2016), + [anon_sym_oneway] = ACTIONS(2016), + [anon_sym__Nullable] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym__Nullable_result] = ACTIONS(2016), + [anon_sym__Null_unspecified] = ACTIONS(2016), + [anon_sym___autoreleasing] = ACTIONS(2016), + [anon_sym___nullable] = ACTIONS(2016), + [anon_sym___nonnull] = ACTIONS(2016), + [anon_sym___strong] = ACTIONS(2016), + [anon_sym___weak] = ACTIONS(2016), + [anon_sym___bridge] = ACTIONS(2016), + [anon_sym___bridge_transfer] = ACTIONS(2016), + [anon_sym___bridge_retained] = ACTIONS(2016), + [anon_sym___unsafe_unretained] = ACTIONS(2016), + [anon_sym___block] = ACTIONS(2016), + [anon_sym___kindof] = ACTIONS(2016), + [anon_sym___unused] = ACTIONS(2016), + [anon_sym__Complex] = ACTIONS(2016), + [anon_sym___complex] = ACTIONS(2016), + [anon_sym_IBOutlet] = ACTIONS(2016), + [anon_sym_IBInspectable] = ACTIONS(2016), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2016), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [sym_null] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2018), + [anon_sym_ATimport] = ACTIONS(2018), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2016), + [anon_sym_ATcompatibility_alias] = ACTIONS(2018), + [anon_sym_ATprotocol] = ACTIONS(2018), + [anon_sym_ATclass] = ACTIONS(2018), + [anon_sym_ATinterface] = ACTIONS(2018), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2016), + [sym_method_attribute_specifier] = ACTIONS(2016), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2016), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE] = ACTIONS(2016), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_API_AVAILABLE] = ACTIONS(2016), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_API_DEPRECATED] = ACTIONS(2016), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2016), + [anon_sym___deprecated_msg] = ACTIONS(2016), + [anon_sym___deprecated_enum_msg] = ACTIONS(2016), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2016), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2016), + [anon_sym_ATimplementation] = ACTIONS(2018), + [anon_sym_NS_ENUM] = ACTIONS(2016), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2016), + [anon_sym_NS_OPTIONS] = ACTIONS(2016), + [anon_sym_typeof] = ACTIONS(2016), + [anon_sym___typeof] = ACTIONS(2016), + [anon_sym___typeof__] = ACTIONS(2016), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_nil] = ACTIONS(2016), + [sym_id] = ACTIONS(2016), + [sym_instancetype] = ACTIONS(2016), + [sym_Class] = ACTIONS(2016), + [sym_SEL] = ACTIONS(2016), + [sym_IMP] = ACTIONS(2016), + [sym_BOOL] = ACTIONS(2016), + [sym_auto] = ACTIONS(2016), + [anon_sym_ATautoreleasepool] = ACTIONS(2018), + [anon_sym_ATsynchronized] = ACTIONS(2018), + [anon_sym_ATtry] = ACTIONS(2018), + [anon_sym_ATthrow] = ACTIONS(2018), + [anon_sym_ATselector] = ACTIONS(2018), + [anon_sym_ATencode] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2016), + [sym_YES] = ACTIONS(2016), + [sym_NO] = ACTIONS(2016), + [anon_sym___builtin_available] = ACTIONS(2016), + [anon_sym_ATavailable] = ACTIONS(2018), + [anon_sym_va_arg] = ACTIONS(2016), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [687] = { + [sym_identifier] = ACTIONS(2012), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2014), + [aux_sym_preproc_if_token1] = ACTIONS(2012), + [aux_sym_preproc_if_token2] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2012), + [aux_sym_preproc_else_token1] = ACTIONS(2012), + [aux_sym_preproc_elif_token1] = ACTIONS(2012), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_PLUS] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_CARET] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_typedef] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym___attribute] = ACTIONS(2012), + [anon_sym___attribute__] = ACTIONS(2012), + [anon_sym___declspec] = ACTIONS(2012), + [anon_sym___cdecl] = ACTIONS(2012), + [anon_sym___clrcall] = ACTIONS(2012), + [anon_sym___stdcall] = ACTIONS(2012), + [anon_sym___fastcall] = ACTIONS(2012), + [anon_sym___thiscall] = ACTIONS(2012), + [anon_sym___vectorcall] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_auto] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_inline] = ACTIONS(2012), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_volatile] = ACTIONS(2012), + [anon_sym_restrict] = ACTIONS(2012), + [anon_sym__Atomic] = ACTIONS(2012), + [anon_sym_in] = ACTIONS(2012), + [anon_sym_out] = ACTIONS(2012), + [anon_sym_inout] = ACTIONS(2012), + [anon_sym_bycopy] = ACTIONS(2012), + [anon_sym_byref] = ACTIONS(2012), + [anon_sym_oneway] = ACTIONS(2012), + [anon_sym__Nullable] = ACTIONS(2012), + [anon_sym__Nonnull] = ACTIONS(2012), + [anon_sym__Nullable_result] = ACTIONS(2012), + [anon_sym__Null_unspecified] = ACTIONS(2012), + [anon_sym___autoreleasing] = ACTIONS(2012), + [anon_sym___nullable] = ACTIONS(2012), + [anon_sym___nonnull] = ACTIONS(2012), + [anon_sym___strong] = ACTIONS(2012), + [anon_sym___weak] = ACTIONS(2012), + [anon_sym___bridge] = ACTIONS(2012), + [anon_sym___bridge_transfer] = ACTIONS(2012), + [anon_sym___bridge_retained] = ACTIONS(2012), + [anon_sym___unsafe_unretained] = ACTIONS(2012), + [anon_sym___block] = ACTIONS(2012), + [anon_sym___kindof] = ACTIONS(2012), + [anon_sym___unused] = ACTIONS(2012), + [anon_sym__Complex] = ACTIONS(2012), + [anon_sym___complex] = ACTIONS(2012), + [anon_sym_IBOutlet] = ACTIONS(2012), + [anon_sym_IBInspectable] = ACTIONS(2012), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2012), + [anon_sym_signed] = ACTIONS(2012), + [anon_sym_unsigned] = ACTIONS(2012), + [anon_sym_long] = ACTIONS(2012), + [anon_sym_short] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_switch] = ACTIONS(2012), + [anon_sym_case] = ACTIONS(2012), + [anon_sym_default] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_goto] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2014), + [anon_sym_PLUS_PLUS] = ACTIONS(2014), + [anon_sym_sizeof] = ACTIONS(2012), + [sym_number_literal] = ACTIONS(2014), + [anon_sym_L_SQUOTE] = ACTIONS(2014), + [anon_sym_u_SQUOTE] = ACTIONS(2014), + [anon_sym_U_SQUOTE] = ACTIONS(2014), + [anon_sym_u8_SQUOTE] = ACTIONS(2014), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_L_DQUOTE] = ACTIONS(2014), + [anon_sym_u_DQUOTE] = ACTIONS(2014), + [anon_sym_U_DQUOTE] = ACTIONS(2014), + [anon_sym_u8_DQUOTE] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym_true] = ACTIONS(2012), + [sym_false] = ACTIONS(2012), + [sym_null] = ACTIONS(2012), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2014), + [anon_sym_ATimport] = ACTIONS(2014), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2012), + [anon_sym_ATcompatibility_alias] = ACTIONS(2014), + [anon_sym_ATprotocol] = ACTIONS(2014), + [anon_sym_ATclass] = ACTIONS(2014), + [anon_sym_ATinterface] = ACTIONS(2014), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2012), + [sym_method_attribute_specifier] = ACTIONS(2012), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2012), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2012), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2012), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_NS_AVAILABLE] = ACTIONS(2012), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2012), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_API_AVAILABLE] = ACTIONS(2012), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_API_DEPRECATED] = ACTIONS(2012), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2012), + [anon_sym___deprecated_msg] = ACTIONS(2012), + [anon_sym___deprecated_enum_msg] = ACTIONS(2012), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2012), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2012), + [anon_sym_ATimplementation] = ACTIONS(2014), + [anon_sym_NS_ENUM] = ACTIONS(2012), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2012), + [anon_sym_NS_OPTIONS] = ACTIONS(2012), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym___typeof] = ACTIONS(2012), + [anon_sym___typeof__] = ACTIONS(2012), + [sym_self] = ACTIONS(2012), + [sym_super] = ACTIONS(2012), + [sym_nil] = ACTIONS(2012), + [sym_id] = ACTIONS(2012), + [sym_instancetype] = ACTIONS(2012), + [sym_Class] = ACTIONS(2012), + [sym_SEL] = ACTIONS(2012), + [sym_IMP] = ACTIONS(2012), + [sym_BOOL] = ACTIONS(2012), + [sym_auto] = ACTIONS(2012), + [anon_sym_ATautoreleasepool] = ACTIONS(2014), + [anon_sym_ATsynchronized] = ACTIONS(2014), + [anon_sym_ATtry] = ACTIONS(2014), + [anon_sym_ATthrow] = ACTIONS(2014), + [anon_sym_ATselector] = ACTIONS(2014), + [anon_sym_ATencode] = ACTIONS(2014), + [anon_sym_AT] = ACTIONS(2012), + [sym_YES] = ACTIONS(2012), + [sym_NO] = ACTIONS(2012), + [anon_sym___builtin_available] = ACTIONS(2012), + [anon_sym_ATavailable] = ACTIONS(2014), + [anon_sym_va_arg] = ACTIONS(2012), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [688] = { + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2018), + [aux_sym_preproc_def_token1] = ACTIONS(2018), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token2] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [aux_sym_preproc_else_token1] = ACTIONS(2016), + [aux_sym_preproc_elif_token1] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_auto] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym_in] = ACTIONS(2016), + [anon_sym_out] = ACTIONS(2016), + [anon_sym_inout] = ACTIONS(2016), + [anon_sym_bycopy] = ACTIONS(2016), + [anon_sym_byref] = ACTIONS(2016), + [anon_sym_oneway] = ACTIONS(2016), + [anon_sym__Nullable] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym__Nullable_result] = ACTIONS(2016), + [anon_sym__Null_unspecified] = ACTIONS(2016), + [anon_sym___autoreleasing] = ACTIONS(2016), + [anon_sym___nullable] = ACTIONS(2016), + [anon_sym___nonnull] = ACTIONS(2016), + [anon_sym___strong] = ACTIONS(2016), + [anon_sym___weak] = ACTIONS(2016), + [anon_sym___bridge] = ACTIONS(2016), + [anon_sym___bridge_transfer] = ACTIONS(2016), + [anon_sym___bridge_retained] = ACTIONS(2016), + [anon_sym___unsafe_unretained] = ACTIONS(2016), + [anon_sym___block] = ACTIONS(2016), + [anon_sym___kindof] = ACTIONS(2016), + [anon_sym___unused] = ACTIONS(2016), + [anon_sym__Complex] = ACTIONS(2016), + [anon_sym___complex] = ACTIONS(2016), + [anon_sym_IBOutlet] = ACTIONS(2016), + [anon_sym_IBInspectable] = ACTIONS(2016), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2016), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [sym_null] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2018), + [anon_sym_ATimport] = ACTIONS(2018), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2016), + [anon_sym_ATcompatibility_alias] = ACTIONS(2018), + [anon_sym_ATprotocol] = ACTIONS(2018), + [anon_sym_ATclass] = ACTIONS(2018), + [anon_sym_ATinterface] = ACTIONS(2018), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2016), + [sym_method_attribute_specifier] = ACTIONS(2016), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2016), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE] = ACTIONS(2016), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_API_AVAILABLE] = ACTIONS(2016), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_API_DEPRECATED] = ACTIONS(2016), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2016), + [anon_sym___deprecated_msg] = ACTIONS(2016), + [anon_sym___deprecated_enum_msg] = ACTIONS(2016), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2016), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2016), + [anon_sym_ATimplementation] = ACTIONS(2018), + [anon_sym_NS_ENUM] = ACTIONS(2016), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2016), + [anon_sym_NS_OPTIONS] = ACTIONS(2016), + [anon_sym_typeof] = ACTIONS(2016), + [anon_sym___typeof] = ACTIONS(2016), + [anon_sym___typeof__] = ACTIONS(2016), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_nil] = ACTIONS(2016), + [sym_id] = ACTIONS(2016), + [sym_instancetype] = ACTIONS(2016), + [sym_Class] = ACTIONS(2016), + [sym_SEL] = ACTIONS(2016), + [sym_IMP] = ACTIONS(2016), + [sym_BOOL] = ACTIONS(2016), + [sym_auto] = ACTIONS(2016), + [anon_sym_ATautoreleasepool] = ACTIONS(2018), + [anon_sym_ATsynchronized] = ACTIONS(2018), + [anon_sym_ATtry] = ACTIONS(2018), + [anon_sym_ATthrow] = ACTIONS(2018), + [anon_sym_ATselector] = ACTIONS(2018), + [anon_sym_ATencode] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2016), + [sym_YES] = ACTIONS(2016), + [sym_NO] = ACTIONS(2016), + [anon_sym___builtin_available] = ACTIONS(2016), + [anon_sym_ATavailable] = ACTIONS(2018), + [anon_sym_va_arg] = ACTIONS(2016), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [689] = { + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2018), + [aux_sym_preproc_def_token1] = ACTIONS(2018), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token2] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [aux_sym_preproc_else_token1] = ACTIONS(2016), + [aux_sym_preproc_elif_token1] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_auto] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym_in] = ACTIONS(2016), + [anon_sym_out] = ACTIONS(2016), + [anon_sym_inout] = ACTIONS(2016), + [anon_sym_bycopy] = ACTIONS(2016), + [anon_sym_byref] = ACTIONS(2016), + [anon_sym_oneway] = ACTIONS(2016), + [anon_sym__Nullable] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym__Nullable_result] = ACTIONS(2016), + [anon_sym__Null_unspecified] = ACTIONS(2016), + [anon_sym___autoreleasing] = ACTIONS(2016), + [anon_sym___nullable] = ACTIONS(2016), + [anon_sym___nonnull] = ACTIONS(2016), + [anon_sym___strong] = ACTIONS(2016), + [anon_sym___weak] = ACTIONS(2016), + [anon_sym___bridge] = ACTIONS(2016), + [anon_sym___bridge_transfer] = ACTIONS(2016), + [anon_sym___bridge_retained] = ACTIONS(2016), + [anon_sym___unsafe_unretained] = ACTIONS(2016), + [anon_sym___block] = ACTIONS(2016), + [anon_sym___kindof] = ACTIONS(2016), + [anon_sym___unused] = ACTIONS(2016), + [anon_sym__Complex] = ACTIONS(2016), + [anon_sym___complex] = ACTIONS(2016), + [anon_sym_IBOutlet] = ACTIONS(2016), + [anon_sym_IBInspectable] = ACTIONS(2016), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2016), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [sym_null] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2018), + [anon_sym_ATimport] = ACTIONS(2018), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2016), + [anon_sym_ATcompatibility_alias] = ACTIONS(2018), + [anon_sym_ATprotocol] = ACTIONS(2018), + [anon_sym_ATclass] = ACTIONS(2018), + [anon_sym_ATinterface] = ACTIONS(2018), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2016), + [sym_method_attribute_specifier] = ACTIONS(2016), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2016), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE] = ACTIONS(2016), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_API_AVAILABLE] = ACTIONS(2016), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_API_DEPRECATED] = ACTIONS(2016), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2016), + [anon_sym___deprecated_msg] = ACTIONS(2016), + [anon_sym___deprecated_enum_msg] = ACTIONS(2016), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2016), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2016), + [anon_sym_ATimplementation] = ACTIONS(2018), + [anon_sym_NS_ENUM] = ACTIONS(2016), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2016), + [anon_sym_NS_OPTIONS] = ACTIONS(2016), + [anon_sym_typeof] = ACTIONS(2016), + [anon_sym___typeof] = ACTIONS(2016), + [anon_sym___typeof__] = ACTIONS(2016), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_nil] = ACTIONS(2016), + [sym_id] = ACTIONS(2016), + [sym_instancetype] = ACTIONS(2016), + [sym_Class] = ACTIONS(2016), + [sym_SEL] = ACTIONS(2016), + [sym_IMP] = ACTIONS(2016), + [sym_BOOL] = ACTIONS(2016), + [sym_auto] = ACTIONS(2016), + [anon_sym_ATautoreleasepool] = ACTIONS(2018), + [anon_sym_ATsynchronized] = ACTIONS(2018), + [anon_sym_ATtry] = ACTIONS(2018), + [anon_sym_ATthrow] = ACTIONS(2018), + [anon_sym_ATselector] = ACTIONS(2018), + [anon_sym_ATencode] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2016), + [sym_YES] = ACTIONS(2016), + [sym_NO] = ACTIONS(2016), + [anon_sym___builtin_available] = ACTIONS(2016), + [anon_sym_ATavailable] = ACTIONS(2018), + [anon_sym_va_arg] = ACTIONS(2016), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [690] = { + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2018), + [aux_sym_preproc_def_token1] = ACTIONS(2018), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token2] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [aux_sym_preproc_else_token1] = ACTIONS(2016), + [aux_sym_preproc_elif_token1] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_auto] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym_in] = ACTIONS(2016), + [anon_sym_out] = ACTIONS(2016), + [anon_sym_inout] = ACTIONS(2016), + [anon_sym_bycopy] = ACTIONS(2016), + [anon_sym_byref] = ACTIONS(2016), + [anon_sym_oneway] = ACTIONS(2016), + [anon_sym__Nullable] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym__Nullable_result] = ACTIONS(2016), + [anon_sym__Null_unspecified] = ACTIONS(2016), + [anon_sym___autoreleasing] = ACTIONS(2016), + [anon_sym___nullable] = ACTIONS(2016), + [anon_sym___nonnull] = ACTIONS(2016), + [anon_sym___strong] = ACTIONS(2016), + [anon_sym___weak] = ACTIONS(2016), + [anon_sym___bridge] = ACTIONS(2016), + [anon_sym___bridge_transfer] = ACTIONS(2016), + [anon_sym___bridge_retained] = ACTIONS(2016), + [anon_sym___unsafe_unretained] = ACTIONS(2016), + [anon_sym___block] = ACTIONS(2016), + [anon_sym___kindof] = ACTIONS(2016), + [anon_sym___unused] = ACTIONS(2016), + [anon_sym__Complex] = ACTIONS(2016), + [anon_sym___complex] = ACTIONS(2016), + [anon_sym_IBOutlet] = ACTIONS(2016), + [anon_sym_IBInspectable] = ACTIONS(2016), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2016), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [sym_null] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2018), + [anon_sym_ATimport] = ACTIONS(2018), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2016), + [anon_sym_ATcompatibility_alias] = ACTIONS(2018), + [anon_sym_ATprotocol] = ACTIONS(2018), + [anon_sym_ATclass] = ACTIONS(2018), + [anon_sym_ATinterface] = ACTIONS(2018), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2016), + [sym_method_attribute_specifier] = ACTIONS(2016), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2016), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE] = ACTIONS(2016), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_API_AVAILABLE] = ACTIONS(2016), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_API_DEPRECATED] = ACTIONS(2016), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2016), + [anon_sym___deprecated_msg] = ACTIONS(2016), + [anon_sym___deprecated_enum_msg] = ACTIONS(2016), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2016), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2016), + [anon_sym_ATimplementation] = ACTIONS(2018), + [anon_sym_NS_ENUM] = ACTIONS(2016), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2016), + [anon_sym_NS_OPTIONS] = ACTIONS(2016), + [anon_sym_typeof] = ACTIONS(2016), + [anon_sym___typeof] = ACTIONS(2016), + [anon_sym___typeof__] = ACTIONS(2016), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_nil] = ACTIONS(2016), + [sym_id] = ACTIONS(2016), + [sym_instancetype] = ACTIONS(2016), + [sym_Class] = ACTIONS(2016), + [sym_SEL] = ACTIONS(2016), + [sym_IMP] = ACTIONS(2016), + [sym_BOOL] = ACTIONS(2016), + [sym_auto] = ACTIONS(2016), + [anon_sym_ATautoreleasepool] = ACTIONS(2018), + [anon_sym_ATsynchronized] = ACTIONS(2018), + [anon_sym_ATtry] = ACTIONS(2018), + [anon_sym_ATthrow] = ACTIONS(2018), + [anon_sym_ATselector] = ACTIONS(2018), + [anon_sym_ATencode] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2016), + [sym_YES] = ACTIONS(2016), + [sym_NO] = ACTIONS(2016), + [anon_sym___builtin_available] = ACTIONS(2016), + [anon_sym_ATavailable] = ACTIONS(2018), + [anon_sym_va_arg] = ACTIONS(2016), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [691] = { + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2018), + [aux_sym_preproc_def_token1] = ACTIONS(2018), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token2] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [aux_sym_preproc_else_token1] = ACTIONS(2016), + [aux_sym_preproc_elif_token1] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_auto] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym_in] = ACTIONS(2016), + [anon_sym_out] = ACTIONS(2016), + [anon_sym_inout] = ACTIONS(2016), + [anon_sym_bycopy] = ACTIONS(2016), + [anon_sym_byref] = ACTIONS(2016), + [anon_sym_oneway] = ACTIONS(2016), + [anon_sym__Nullable] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym__Nullable_result] = ACTIONS(2016), + [anon_sym__Null_unspecified] = ACTIONS(2016), + [anon_sym___autoreleasing] = ACTIONS(2016), + [anon_sym___nullable] = ACTIONS(2016), + [anon_sym___nonnull] = ACTIONS(2016), + [anon_sym___strong] = ACTIONS(2016), + [anon_sym___weak] = ACTIONS(2016), + [anon_sym___bridge] = ACTIONS(2016), + [anon_sym___bridge_transfer] = ACTIONS(2016), + [anon_sym___bridge_retained] = ACTIONS(2016), + [anon_sym___unsafe_unretained] = ACTIONS(2016), + [anon_sym___block] = ACTIONS(2016), + [anon_sym___kindof] = ACTIONS(2016), + [anon_sym___unused] = ACTIONS(2016), + [anon_sym__Complex] = ACTIONS(2016), + [anon_sym___complex] = ACTIONS(2016), + [anon_sym_IBOutlet] = ACTIONS(2016), + [anon_sym_IBInspectable] = ACTIONS(2016), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2016), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [sym_null] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2018), + [anon_sym_ATimport] = ACTIONS(2018), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2016), + [anon_sym_ATcompatibility_alias] = ACTIONS(2018), + [anon_sym_ATprotocol] = ACTIONS(2018), + [anon_sym_ATclass] = ACTIONS(2018), + [anon_sym_ATinterface] = ACTIONS(2018), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2016), + [sym_method_attribute_specifier] = ACTIONS(2016), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2016), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE] = ACTIONS(2016), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_API_AVAILABLE] = ACTIONS(2016), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_API_DEPRECATED] = ACTIONS(2016), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2016), + [anon_sym___deprecated_msg] = ACTIONS(2016), + [anon_sym___deprecated_enum_msg] = ACTIONS(2016), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2016), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2016), + [anon_sym_ATimplementation] = ACTIONS(2018), + [anon_sym_NS_ENUM] = ACTIONS(2016), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2016), + [anon_sym_NS_OPTIONS] = ACTIONS(2016), + [anon_sym_typeof] = ACTIONS(2016), + [anon_sym___typeof] = ACTIONS(2016), + [anon_sym___typeof__] = ACTIONS(2016), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_nil] = ACTIONS(2016), + [sym_id] = ACTIONS(2016), + [sym_instancetype] = ACTIONS(2016), + [sym_Class] = ACTIONS(2016), + [sym_SEL] = ACTIONS(2016), + [sym_IMP] = ACTIONS(2016), + [sym_BOOL] = ACTIONS(2016), + [sym_auto] = ACTIONS(2016), + [anon_sym_ATautoreleasepool] = ACTIONS(2018), + [anon_sym_ATsynchronized] = ACTIONS(2018), + [anon_sym_ATtry] = ACTIONS(2018), + [anon_sym_ATthrow] = ACTIONS(2018), + [anon_sym_ATselector] = ACTIONS(2018), + [anon_sym_ATencode] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2016), + [sym_YES] = ACTIONS(2016), + [sym_NO] = ACTIONS(2016), + [anon_sym___builtin_available] = ACTIONS(2016), + [anon_sym_ATavailable] = ACTIONS(2018), + [anon_sym_va_arg] = ACTIONS(2016), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [692] = { + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2018), + [aux_sym_preproc_def_token1] = ACTIONS(2018), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token2] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [aux_sym_preproc_else_token1] = ACTIONS(2016), + [aux_sym_preproc_elif_token1] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_auto] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym_in] = ACTIONS(2016), + [anon_sym_out] = ACTIONS(2016), + [anon_sym_inout] = ACTIONS(2016), + [anon_sym_bycopy] = ACTIONS(2016), + [anon_sym_byref] = ACTIONS(2016), + [anon_sym_oneway] = ACTIONS(2016), + [anon_sym__Nullable] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym__Nullable_result] = ACTIONS(2016), + [anon_sym__Null_unspecified] = ACTIONS(2016), + [anon_sym___autoreleasing] = ACTIONS(2016), + [anon_sym___nullable] = ACTIONS(2016), + [anon_sym___nonnull] = ACTIONS(2016), + [anon_sym___strong] = ACTIONS(2016), + [anon_sym___weak] = ACTIONS(2016), + [anon_sym___bridge] = ACTIONS(2016), + [anon_sym___bridge_transfer] = ACTIONS(2016), + [anon_sym___bridge_retained] = ACTIONS(2016), + [anon_sym___unsafe_unretained] = ACTIONS(2016), + [anon_sym___block] = ACTIONS(2016), + [anon_sym___kindof] = ACTIONS(2016), + [anon_sym___unused] = ACTIONS(2016), + [anon_sym__Complex] = ACTIONS(2016), + [anon_sym___complex] = ACTIONS(2016), + [anon_sym_IBOutlet] = ACTIONS(2016), + [anon_sym_IBInspectable] = ACTIONS(2016), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2016), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [sym_null] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2018), + [anon_sym_ATimport] = ACTIONS(2018), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2016), + [anon_sym_ATcompatibility_alias] = ACTIONS(2018), + [anon_sym_ATprotocol] = ACTIONS(2018), + [anon_sym_ATclass] = ACTIONS(2018), + [anon_sym_ATinterface] = ACTIONS(2018), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2016), + [sym_method_attribute_specifier] = ACTIONS(2016), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2016), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE] = ACTIONS(2016), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_API_AVAILABLE] = ACTIONS(2016), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_API_DEPRECATED] = ACTIONS(2016), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2016), + [anon_sym___deprecated_msg] = ACTIONS(2016), + [anon_sym___deprecated_enum_msg] = ACTIONS(2016), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2016), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2016), + [anon_sym_ATimplementation] = ACTIONS(2018), + [anon_sym_NS_ENUM] = ACTIONS(2016), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2016), + [anon_sym_NS_OPTIONS] = ACTIONS(2016), + [anon_sym_typeof] = ACTIONS(2016), + [anon_sym___typeof] = ACTIONS(2016), + [anon_sym___typeof__] = ACTIONS(2016), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_nil] = ACTIONS(2016), + [sym_id] = ACTIONS(2016), + [sym_instancetype] = ACTIONS(2016), + [sym_Class] = ACTIONS(2016), + [sym_SEL] = ACTIONS(2016), + [sym_IMP] = ACTIONS(2016), + [sym_BOOL] = ACTIONS(2016), + [sym_auto] = ACTIONS(2016), + [anon_sym_ATautoreleasepool] = ACTIONS(2018), + [anon_sym_ATsynchronized] = ACTIONS(2018), + [anon_sym_ATtry] = ACTIONS(2018), + [anon_sym_ATthrow] = ACTIONS(2018), + [anon_sym_ATselector] = ACTIONS(2018), + [anon_sym_ATencode] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2016), + [sym_YES] = ACTIONS(2016), + [sym_NO] = ACTIONS(2016), + [anon_sym___builtin_available] = ACTIONS(2016), + [anon_sym_ATavailable] = ACTIONS(2018), + [anon_sym_va_arg] = ACTIONS(2016), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [693] = { + [sym_identifier] = ACTIONS(2020), + [aux_sym_preproc_include_token1] = ACTIONS(2022), + [aux_sym_preproc_def_token1] = ACTIONS(2022), + [aux_sym_preproc_if_token1] = ACTIONS(2020), + [aux_sym_preproc_if_token2] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [aux_sym_preproc_else_token1] = ACTIONS(2020), + [aux_sym_preproc_elif_token1] = ACTIONS(2020), + [anon_sym_LPAREN2] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2022), + [anon_sym_TILDE] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2020), + [anon_sym_PLUS] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(2022), + [anon_sym_CARET] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2022), + [anon_sym_typedef] = ACTIONS(2020), + [anon_sym_extern] = ACTIONS(2020), + [anon_sym___attribute] = ACTIONS(2020), + [anon_sym___attribute__] = ACTIONS(2020), + [anon_sym___declspec] = ACTIONS(2020), + [anon_sym___cdecl] = ACTIONS(2020), + [anon_sym___clrcall] = ACTIONS(2020), + [anon_sym___stdcall] = ACTIONS(2020), + [anon_sym___fastcall] = ACTIONS(2020), + [anon_sym___thiscall] = ACTIONS(2020), + [anon_sym___vectorcall] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(2022), + [anon_sym_static] = ACTIONS(2020), + [anon_sym_auto] = ACTIONS(2020), + [anon_sym_register] = ACTIONS(2020), + [anon_sym_inline] = ACTIONS(2020), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_volatile] = ACTIONS(2020), + [anon_sym_restrict] = ACTIONS(2020), + [anon_sym__Atomic] = ACTIONS(2020), + [anon_sym_in] = ACTIONS(2020), + [anon_sym_out] = ACTIONS(2020), + [anon_sym_inout] = ACTIONS(2020), + [anon_sym_bycopy] = ACTIONS(2020), + [anon_sym_byref] = ACTIONS(2020), + [anon_sym_oneway] = ACTIONS(2020), + [anon_sym__Nullable] = ACTIONS(2020), + [anon_sym__Nonnull] = ACTIONS(2020), + [anon_sym__Nullable_result] = ACTIONS(2020), + [anon_sym__Null_unspecified] = ACTIONS(2020), + [anon_sym___autoreleasing] = ACTIONS(2020), + [anon_sym___nullable] = ACTIONS(2020), + [anon_sym___nonnull] = ACTIONS(2020), + [anon_sym___strong] = ACTIONS(2020), + [anon_sym___weak] = ACTIONS(2020), + [anon_sym___bridge] = ACTIONS(2020), + [anon_sym___bridge_transfer] = ACTIONS(2020), + [anon_sym___bridge_retained] = ACTIONS(2020), + [anon_sym___unsafe_unretained] = ACTIONS(2020), + [anon_sym___block] = ACTIONS(2020), + [anon_sym___kindof] = ACTIONS(2020), + [anon_sym___unused] = ACTIONS(2020), + [anon_sym__Complex] = ACTIONS(2020), + [anon_sym___complex] = ACTIONS(2020), + [anon_sym_IBOutlet] = ACTIONS(2020), + [anon_sym_IBInspectable] = ACTIONS(2020), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2020), + [anon_sym_signed] = ACTIONS(2020), + [anon_sym_unsigned] = ACTIONS(2020), + [anon_sym_long] = ACTIONS(2020), + [anon_sym_short] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_enum] = ACTIONS(2020), + [anon_sym_struct] = ACTIONS(2020), + [anon_sym_union] = ACTIONS(2020), + [anon_sym_if] = ACTIONS(2020), + [anon_sym_switch] = ACTIONS(2020), + [anon_sym_case] = ACTIONS(2020), + [anon_sym_default] = ACTIONS(2020), + [anon_sym_while] = ACTIONS(2020), + [anon_sym_do] = ACTIONS(2020), + [anon_sym_for] = ACTIONS(2020), + [anon_sym_return] = ACTIONS(2020), + [anon_sym_break] = ACTIONS(2020), + [anon_sym_continue] = ACTIONS(2020), + [anon_sym_goto] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2020), + [sym_number_literal] = ACTIONS(2022), + [anon_sym_L_SQUOTE] = ACTIONS(2022), + [anon_sym_u_SQUOTE] = ACTIONS(2022), + [anon_sym_U_SQUOTE] = ACTIONS(2022), + [anon_sym_u8_SQUOTE] = ACTIONS(2022), + [anon_sym_SQUOTE] = ACTIONS(2022), + [anon_sym_L_DQUOTE] = ACTIONS(2022), + [anon_sym_u_DQUOTE] = ACTIONS(2022), + [anon_sym_U_DQUOTE] = ACTIONS(2022), + [anon_sym_u8_DQUOTE] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2022), + [sym_true] = ACTIONS(2020), + [sym_false] = ACTIONS(2020), + [sym_null] = ACTIONS(2020), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2022), + [anon_sym_ATimport] = ACTIONS(2022), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2020), + [anon_sym_ATcompatibility_alias] = ACTIONS(2022), + [anon_sym_ATprotocol] = ACTIONS(2022), + [anon_sym_ATclass] = ACTIONS(2022), + [anon_sym_ATinterface] = ACTIONS(2022), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2020), + [sym_method_attribute_specifier] = ACTIONS(2020), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2020), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2020), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2020), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2020), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2020), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2020), + [anon_sym_NS_AVAILABLE] = ACTIONS(2020), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2020), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2020), + [anon_sym_API_AVAILABLE] = ACTIONS(2020), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2020), + [anon_sym_API_DEPRECATED] = ACTIONS(2020), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2020), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2020), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2020), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2020), + [anon_sym___deprecated_msg] = ACTIONS(2020), + [anon_sym___deprecated_enum_msg] = ACTIONS(2020), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2020), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2020), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2020), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2020), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2020), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2020), + [anon_sym_ATimplementation] = ACTIONS(2022), + [anon_sym_NS_ENUM] = ACTIONS(2020), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2020), + [anon_sym_NS_OPTIONS] = ACTIONS(2020), + [anon_sym_typeof] = ACTIONS(2020), + [anon_sym___typeof] = ACTIONS(2020), + [anon_sym___typeof__] = ACTIONS(2020), + [sym_self] = ACTIONS(2020), + [sym_super] = ACTIONS(2020), + [sym_nil] = ACTIONS(2020), + [sym_id] = ACTIONS(2020), + [sym_instancetype] = ACTIONS(2020), + [sym_Class] = ACTIONS(2020), + [sym_SEL] = ACTIONS(2020), + [sym_IMP] = ACTIONS(2020), + [sym_BOOL] = ACTIONS(2020), + [sym_auto] = ACTIONS(2020), + [anon_sym_ATautoreleasepool] = ACTIONS(2022), + [anon_sym_ATsynchronized] = ACTIONS(2022), + [anon_sym_ATtry] = ACTIONS(2022), + [anon_sym_ATthrow] = ACTIONS(2022), + [anon_sym_ATselector] = ACTIONS(2022), + [anon_sym_ATencode] = ACTIONS(2022), + [anon_sym_AT] = ACTIONS(2020), + [sym_YES] = ACTIONS(2020), + [sym_NO] = ACTIONS(2020), + [anon_sym___builtin_available] = ACTIONS(2020), + [anon_sym_ATavailable] = ACTIONS(2022), + [anon_sym_va_arg] = ACTIONS(2020), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [694] = { + [sym_identifier] = ACTIONS(2012), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2014), + [aux_sym_preproc_if_token1] = ACTIONS(2012), + [aux_sym_preproc_if_token2] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2012), + [aux_sym_preproc_else_token1] = ACTIONS(2012), + [aux_sym_preproc_elif_token1] = ACTIONS(2012), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_PLUS] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_CARET] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_typedef] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym___attribute] = ACTIONS(2012), + [anon_sym___attribute__] = ACTIONS(2012), + [anon_sym___declspec] = ACTIONS(2012), + [anon_sym___cdecl] = ACTIONS(2012), + [anon_sym___clrcall] = ACTIONS(2012), + [anon_sym___stdcall] = ACTIONS(2012), + [anon_sym___fastcall] = ACTIONS(2012), + [anon_sym___thiscall] = ACTIONS(2012), + [anon_sym___vectorcall] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_auto] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_inline] = ACTIONS(2012), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_volatile] = ACTIONS(2012), + [anon_sym_restrict] = ACTIONS(2012), + [anon_sym__Atomic] = ACTIONS(2012), + [anon_sym_in] = ACTIONS(2012), + [anon_sym_out] = ACTIONS(2012), + [anon_sym_inout] = ACTIONS(2012), + [anon_sym_bycopy] = ACTIONS(2012), + [anon_sym_byref] = ACTIONS(2012), + [anon_sym_oneway] = ACTIONS(2012), + [anon_sym__Nullable] = ACTIONS(2012), + [anon_sym__Nonnull] = ACTIONS(2012), + [anon_sym__Nullable_result] = ACTIONS(2012), + [anon_sym__Null_unspecified] = ACTIONS(2012), + [anon_sym___autoreleasing] = ACTIONS(2012), + [anon_sym___nullable] = ACTIONS(2012), + [anon_sym___nonnull] = ACTIONS(2012), + [anon_sym___strong] = ACTIONS(2012), + [anon_sym___weak] = ACTIONS(2012), + [anon_sym___bridge] = ACTIONS(2012), + [anon_sym___bridge_transfer] = ACTIONS(2012), + [anon_sym___bridge_retained] = ACTIONS(2012), + [anon_sym___unsafe_unretained] = ACTIONS(2012), + [anon_sym___block] = ACTIONS(2012), + [anon_sym___kindof] = ACTIONS(2012), + [anon_sym___unused] = ACTIONS(2012), + [anon_sym__Complex] = ACTIONS(2012), + [anon_sym___complex] = ACTIONS(2012), + [anon_sym_IBOutlet] = ACTIONS(2012), + [anon_sym_IBInspectable] = ACTIONS(2012), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2012), + [anon_sym_signed] = ACTIONS(2012), + [anon_sym_unsigned] = ACTIONS(2012), + [anon_sym_long] = ACTIONS(2012), + [anon_sym_short] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_switch] = ACTIONS(2012), + [anon_sym_case] = ACTIONS(2012), + [anon_sym_default] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_goto] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2014), + [anon_sym_PLUS_PLUS] = ACTIONS(2014), + [anon_sym_sizeof] = ACTIONS(2012), + [sym_number_literal] = ACTIONS(2014), + [anon_sym_L_SQUOTE] = ACTIONS(2014), + [anon_sym_u_SQUOTE] = ACTIONS(2014), + [anon_sym_U_SQUOTE] = ACTIONS(2014), + [anon_sym_u8_SQUOTE] = ACTIONS(2014), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_L_DQUOTE] = ACTIONS(2014), + [anon_sym_u_DQUOTE] = ACTIONS(2014), + [anon_sym_U_DQUOTE] = ACTIONS(2014), + [anon_sym_u8_DQUOTE] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym_true] = ACTIONS(2012), + [sym_false] = ACTIONS(2012), + [sym_null] = ACTIONS(2012), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2014), + [anon_sym_ATimport] = ACTIONS(2014), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2012), + [anon_sym_ATcompatibility_alias] = ACTIONS(2014), + [anon_sym_ATprotocol] = ACTIONS(2014), + [anon_sym_ATclass] = ACTIONS(2014), + [anon_sym_ATinterface] = ACTIONS(2014), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2012), + [sym_method_attribute_specifier] = ACTIONS(2012), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2012), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2012), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2012), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_NS_AVAILABLE] = ACTIONS(2012), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2012), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_API_AVAILABLE] = ACTIONS(2012), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_API_DEPRECATED] = ACTIONS(2012), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2012), + [anon_sym___deprecated_msg] = ACTIONS(2012), + [anon_sym___deprecated_enum_msg] = ACTIONS(2012), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2012), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2012), + [anon_sym_ATimplementation] = ACTIONS(2014), + [anon_sym_NS_ENUM] = ACTIONS(2012), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2012), + [anon_sym_NS_OPTIONS] = ACTIONS(2012), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym___typeof] = ACTIONS(2012), + [anon_sym___typeof__] = ACTIONS(2012), + [sym_self] = ACTIONS(2012), + [sym_super] = ACTIONS(2012), + [sym_nil] = ACTIONS(2012), + [sym_id] = ACTIONS(2012), + [sym_instancetype] = ACTIONS(2012), + [sym_Class] = ACTIONS(2012), + [sym_SEL] = ACTIONS(2012), + [sym_IMP] = ACTIONS(2012), + [sym_BOOL] = ACTIONS(2012), + [sym_auto] = ACTIONS(2012), + [anon_sym_ATautoreleasepool] = ACTIONS(2014), + [anon_sym_ATsynchronized] = ACTIONS(2014), + [anon_sym_ATtry] = ACTIONS(2014), + [anon_sym_ATthrow] = ACTIONS(2014), + [anon_sym_ATselector] = ACTIONS(2014), + [anon_sym_ATencode] = ACTIONS(2014), + [anon_sym_AT] = ACTIONS(2012), + [sym_YES] = ACTIONS(2012), + [sym_NO] = ACTIONS(2012), + [anon_sym___builtin_available] = ACTIONS(2012), + [anon_sym_ATavailable] = ACTIONS(2014), + [anon_sym_va_arg] = ACTIONS(2012), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [695] = { + [sym_identifier] = ACTIONS(2024), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2026), + [aux_sym_preproc_if_token1] = ACTIONS(2024), + [aux_sym_preproc_if_token2] = ACTIONS(2024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2024), + [aux_sym_preproc_else_token1] = ACTIONS(2024), + [aux_sym_preproc_elif_token1] = ACTIONS(2024), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2026), + [anon_sym_TILDE] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_CARET] = ACTIONS(2026), + [anon_sym_AMP] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym_typedef] = ACTIONS(2024), + [anon_sym_extern] = ACTIONS(2024), + [anon_sym___attribute] = ACTIONS(2024), + [anon_sym___attribute__] = ACTIONS(2024), + [anon_sym___declspec] = ACTIONS(2024), + [anon_sym___cdecl] = ACTIONS(2024), + [anon_sym___clrcall] = ACTIONS(2024), + [anon_sym___stdcall] = ACTIONS(2024), + [anon_sym___fastcall] = ACTIONS(2024), + [anon_sym___thiscall] = ACTIONS(2024), + [anon_sym___vectorcall] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_static] = ACTIONS(2024), + [anon_sym_auto] = ACTIONS(2024), + [anon_sym_register] = ACTIONS(2024), + [anon_sym_inline] = ACTIONS(2024), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2024), + [anon_sym_const] = ACTIONS(2024), + [anon_sym_volatile] = ACTIONS(2024), + [anon_sym_restrict] = ACTIONS(2024), + [anon_sym__Atomic] = ACTIONS(2024), + [anon_sym_in] = ACTIONS(2024), + [anon_sym_out] = ACTIONS(2024), + [anon_sym_inout] = ACTIONS(2024), + [anon_sym_bycopy] = ACTIONS(2024), + [anon_sym_byref] = ACTIONS(2024), + [anon_sym_oneway] = ACTIONS(2024), + [anon_sym__Nullable] = ACTIONS(2024), + [anon_sym__Nonnull] = ACTIONS(2024), + [anon_sym__Nullable_result] = ACTIONS(2024), + [anon_sym__Null_unspecified] = ACTIONS(2024), + [anon_sym___autoreleasing] = ACTIONS(2024), + [anon_sym___nullable] = ACTIONS(2024), + [anon_sym___nonnull] = ACTIONS(2024), + [anon_sym___strong] = ACTIONS(2024), + [anon_sym___weak] = ACTIONS(2024), + [anon_sym___bridge] = ACTIONS(2024), + [anon_sym___bridge_transfer] = ACTIONS(2024), + [anon_sym___bridge_retained] = ACTIONS(2024), + [anon_sym___unsafe_unretained] = ACTIONS(2024), + [anon_sym___block] = ACTIONS(2024), + [anon_sym___kindof] = ACTIONS(2024), + [anon_sym___unused] = ACTIONS(2024), + [anon_sym__Complex] = ACTIONS(2024), + [anon_sym___complex] = ACTIONS(2024), + [anon_sym_IBOutlet] = ACTIONS(2024), + [anon_sym_IBInspectable] = ACTIONS(2024), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2024), + [anon_sym_signed] = ACTIONS(2024), + [anon_sym_unsigned] = ACTIONS(2024), + [anon_sym_long] = ACTIONS(2024), + [anon_sym_short] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2024), + [anon_sym_enum] = ACTIONS(2024), + [anon_sym_struct] = ACTIONS(2024), + [anon_sym_union] = ACTIONS(2024), + [anon_sym_if] = ACTIONS(2024), + [anon_sym_switch] = ACTIONS(2024), + [anon_sym_case] = ACTIONS(2024), + [anon_sym_default] = ACTIONS(2024), + [anon_sym_while] = ACTIONS(2024), + [anon_sym_do] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2024), + [anon_sym_break] = ACTIONS(2024), + [anon_sym_continue] = ACTIONS(2024), + [anon_sym_goto] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(2024), + [sym_number_literal] = ACTIONS(2026), + [anon_sym_L_SQUOTE] = ACTIONS(2026), + [anon_sym_u_SQUOTE] = ACTIONS(2026), + [anon_sym_U_SQUOTE] = ACTIONS(2026), + [anon_sym_u8_SQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2026), + [anon_sym_L_DQUOTE] = ACTIONS(2026), + [anon_sym_u_DQUOTE] = ACTIONS(2026), + [anon_sym_U_DQUOTE] = ACTIONS(2026), + [anon_sym_u8_DQUOTE] = ACTIONS(2026), + [anon_sym_DQUOTE] = ACTIONS(2026), + [sym_true] = ACTIONS(2024), + [sym_false] = ACTIONS(2024), + [sym_null] = ACTIONS(2024), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2026), + [anon_sym_ATimport] = ACTIONS(2026), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2024), + [anon_sym_ATcompatibility_alias] = ACTIONS(2026), + [anon_sym_ATprotocol] = ACTIONS(2026), + [anon_sym_ATclass] = ACTIONS(2026), + [anon_sym_ATinterface] = ACTIONS(2026), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2024), + [sym_method_attribute_specifier] = ACTIONS(2024), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2024), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2024), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2024), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2024), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2024), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2024), + [anon_sym_NS_AVAILABLE] = ACTIONS(2024), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2024), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2024), + [anon_sym_API_AVAILABLE] = ACTIONS(2024), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2024), + [anon_sym_API_DEPRECATED] = ACTIONS(2024), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2024), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2024), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2024), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2024), + [anon_sym___deprecated_msg] = ACTIONS(2024), + [anon_sym___deprecated_enum_msg] = ACTIONS(2024), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2024), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2024), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2024), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2024), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2024), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2024), + [anon_sym_ATimplementation] = ACTIONS(2026), + [anon_sym_NS_ENUM] = ACTIONS(2024), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2024), + [anon_sym_NS_OPTIONS] = ACTIONS(2024), + [anon_sym_typeof] = ACTIONS(2024), + [anon_sym___typeof] = ACTIONS(2024), + [anon_sym___typeof__] = ACTIONS(2024), + [sym_self] = ACTIONS(2024), + [sym_super] = ACTIONS(2024), + [sym_nil] = ACTIONS(2024), + [sym_id] = ACTIONS(2024), + [sym_instancetype] = ACTIONS(2024), + [sym_Class] = ACTIONS(2024), + [sym_SEL] = ACTIONS(2024), + [sym_IMP] = ACTIONS(2024), + [sym_BOOL] = ACTIONS(2024), + [sym_auto] = ACTIONS(2024), + [anon_sym_ATautoreleasepool] = ACTIONS(2026), + [anon_sym_ATsynchronized] = ACTIONS(2026), + [anon_sym_ATtry] = ACTIONS(2026), + [anon_sym_ATthrow] = ACTIONS(2026), + [anon_sym_ATselector] = ACTIONS(2026), + [anon_sym_ATencode] = ACTIONS(2026), + [anon_sym_AT] = ACTIONS(2024), + [sym_YES] = ACTIONS(2024), + [sym_NO] = ACTIONS(2024), + [anon_sym___builtin_available] = ACTIONS(2024), + [anon_sym_ATavailable] = ACTIONS(2026), + [anon_sym_va_arg] = ACTIONS(2024), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [696] = { + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2030), + [aux_sym_preproc_def_token1] = ACTIONS(2030), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token2] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [aux_sym_preproc_else_token1] = ACTIONS(2028), + [aux_sym_preproc_elif_token1] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_auto] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_out] = ACTIONS(2028), + [anon_sym_inout] = ACTIONS(2028), + [anon_sym_bycopy] = ACTIONS(2028), + [anon_sym_byref] = ACTIONS(2028), + [anon_sym_oneway] = ACTIONS(2028), + [anon_sym__Nullable] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym__Nullable_result] = ACTIONS(2028), + [anon_sym__Null_unspecified] = ACTIONS(2028), + [anon_sym___autoreleasing] = ACTIONS(2028), + [anon_sym___nullable] = ACTIONS(2028), + [anon_sym___nonnull] = ACTIONS(2028), + [anon_sym___strong] = ACTIONS(2028), + [anon_sym___weak] = ACTIONS(2028), + [anon_sym___bridge] = ACTIONS(2028), + [anon_sym___bridge_transfer] = ACTIONS(2028), + [anon_sym___bridge_retained] = ACTIONS(2028), + [anon_sym___unsafe_unretained] = ACTIONS(2028), + [anon_sym___block] = ACTIONS(2028), + [anon_sym___kindof] = ACTIONS(2028), + [anon_sym___unused] = ACTIONS(2028), + [anon_sym__Complex] = ACTIONS(2028), + [anon_sym___complex] = ACTIONS(2028), + [anon_sym_IBOutlet] = ACTIONS(2028), + [anon_sym_IBInspectable] = ACTIONS(2028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2028), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2030), + [anon_sym_ATimport] = ACTIONS(2030), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2028), + [anon_sym_ATcompatibility_alias] = ACTIONS(2030), + [anon_sym_ATprotocol] = ACTIONS(2030), + [anon_sym_ATclass] = ACTIONS(2030), + [anon_sym_ATinterface] = ACTIONS(2030), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2028), + [sym_method_attribute_specifier] = ACTIONS(2028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE] = ACTIONS(2028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_API_AVAILABLE] = ACTIONS(2028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_API_DEPRECATED] = ACTIONS(2028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2028), + [anon_sym___deprecated_msg] = ACTIONS(2028), + [anon_sym___deprecated_enum_msg] = ACTIONS(2028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2028), + [anon_sym_ATimplementation] = ACTIONS(2030), + [anon_sym_NS_ENUM] = ACTIONS(2028), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2028), + [anon_sym_NS_OPTIONS] = ACTIONS(2028), + [anon_sym_typeof] = ACTIONS(2028), + [anon_sym___typeof] = ACTIONS(2028), + [anon_sym___typeof__] = ACTIONS(2028), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_nil] = ACTIONS(2028), + [sym_id] = ACTIONS(2028), + [sym_instancetype] = ACTIONS(2028), + [sym_Class] = ACTIONS(2028), + [sym_SEL] = ACTIONS(2028), + [sym_IMP] = ACTIONS(2028), + [sym_BOOL] = ACTIONS(2028), + [sym_auto] = ACTIONS(2028), + [anon_sym_ATautoreleasepool] = ACTIONS(2030), + [anon_sym_ATsynchronized] = ACTIONS(2030), + [anon_sym_ATtry] = ACTIONS(2030), + [anon_sym_ATthrow] = ACTIONS(2030), + [anon_sym_ATselector] = ACTIONS(2030), + [anon_sym_ATencode] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2028), + [sym_YES] = ACTIONS(2028), + [sym_NO] = ACTIONS(2028), + [anon_sym___builtin_available] = ACTIONS(2028), + [anon_sym_ATavailable] = ACTIONS(2030), + [anon_sym_va_arg] = ACTIONS(2028), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [697] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [aux_sym_preproc_else_token1] = ACTIONS(2004), + [aux_sym_preproc_elif_token1] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [698] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [aux_sym_preproc_else_token1] = ACTIONS(2004), + [aux_sym_preproc_elif_token1] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [699] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [aux_sym_preproc_else_token1] = ACTIONS(2004), + [aux_sym_preproc_elif_token1] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [700] = { + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2034), + [aux_sym_preproc_def_token1] = ACTIONS(2034), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_if_token2] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [aux_sym_preproc_else_token1] = ACTIONS(2032), + [aux_sym_preproc_elif_token1] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_auto] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_out] = ACTIONS(2032), + [anon_sym_inout] = ACTIONS(2032), + [anon_sym_bycopy] = ACTIONS(2032), + [anon_sym_byref] = ACTIONS(2032), + [anon_sym_oneway] = ACTIONS(2032), + [anon_sym__Nullable] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym__Nullable_result] = ACTIONS(2032), + [anon_sym__Null_unspecified] = ACTIONS(2032), + [anon_sym___autoreleasing] = ACTIONS(2032), + [anon_sym___nullable] = ACTIONS(2032), + [anon_sym___nonnull] = ACTIONS(2032), + [anon_sym___strong] = ACTIONS(2032), + [anon_sym___weak] = ACTIONS(2032), + [anon_sym___bridge] = ACTIONS(2032), + [anon_sym___bridge_transfer] = ACTIONS(2032), + [anon_sym___bridge_retained] = ACTIONS(2032), + [anon_sym___unsafe_unretained] = ACTIONS(2032), + [anon_sym___block] = ACTIONS(2032), + [anon_sym___kindof] = ACTIONS(2032), + [anon_sym___unused] = ACTIONS(2032), + [anon_sym__Complex] = ACTIONS(2032), + [anon_sym___complex] = ACTIONS(2032), + [anon_sym_IBOutlet] = ACTIONS(2032), + [anon_sym_IBInspectable] = ACTIONS(2032), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2032), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [sym_null] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2034), + [anon_sym_ATimport] = ACTIONS(2034), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2032), + [anon_sym_ATcompatibility_alias] = ACTIONS(2034), + [anon_sym_ATprotocol] = ACTIONS(2034), + [anon_sym_ATclass] = ACTIONS(2034), + [anon_sym_ATinterface] = ACTIONS(2034), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2032), + [sym_method_attribute_specifier] = ACTIONS(2032), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2032), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE] = ACTIONS(2032), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_API_AVAILABLE] = ACTIONS(2032), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_API_DEPRECATED] = ACTIONS(2032), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2032), + [anon_sym___deprecated_msg] = ACTIONS(2032), + [anon_sym___deprecated_enum_msg] = ACTIONS(2032), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2032), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2032), + [anon_sym_ATimplementation] = ACTIONS(2034), + [anon_sym_NS_ENUM] = ACTIONS(2032), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2032), + [anon_sym_NS_OPTIONS] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(2032), + [anon_sym___typeof] = ACTIONS(2032), + [anon_sym___typeof__] = ACTIONS(2032), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_nil] = ACTIONS(2032), + [sym_id] = ACTIONS(2032), + [sym_instancetype] = ACTIONS(2032), + [sym_Class] = ACTIONS(2032), + [sym_SEL] = ACTIONS(2032), + [sym_IMP] = ACTIONS(2032), + [sym_BOOL] = ACTIONS(2032), + [sym_auto] = ACTIONS(2032), + [anon_sym_ATautoreleasepool] = ACTIONS(2034), + [anon_sym_ATsynchronized] = ACTIONS(2034), + [anon_sym_ATtry] = ACTIONS(2034), + [anon_sym_ATthrow] = ACTIONS(2034), + [anon_sym_ATselector] = ACTIONS(2034), + [anon_sym_ATencode] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2032), + [sym_YES] = ACTIONS(2032), + [sym_NO] = ACTIONS(2032), + [anon_sym___builtin_available] = ACTIONS(2032), + [anon_sym_ATavailable] = ACTIONS(2034), + [anon_sym_va_arg] = ACTIONS(2032), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [701] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [aux_sym_preproc_else_token1] = ACTIONS(2036), + [aux_sym_preproc_elif_token1] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [702] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [aux_sym_preproc_else_token1] = ACTIONS(2036), + [aux_sym_preproc_elif_token1] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [703] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [aux_sym_preproc_else_token1] = ACTIONS(2036), + [aux_sym_preproc_elif_token1] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [704] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [aux_sym_preproc_else_token1] = ACTIONS(2036), + [aux_sym_preproc_elif_token1] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [705] = { + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2034), + [aux_sym_preproc_def_token1] = ACTIONS(2034), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_if_token2] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [aux_sym_preproc_else_token1] = ACTIONS(2032), + [aux_sym_preproc_elif_token1] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_auto] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_out] = ACTIONS(2032), + [anon_sym_inout] = ACTIONS(2032), + [anon_sym_bycopy] = ACTIONS(2032), + [anon_sym_byref] = ACTIONS(2032), + [anon_sym_oneway] = ACTIONS(2032), + [anon_sym__Nullable] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym__Nullable_result] = ACTIONS(2032), + [anon_sym__Null_unspecified] = ACTIONS(2032), + [anon_sym___autoreleasing] = ACTIONS(2032), + [anon_sym___nullable] = ACTIONS(2032), + [anon_sym___nonnull] = ACTIONS(2032), + [anon_sym___strong] = ACTIONS(2032), + [anon_sym___weak] = ACTIONS(2032), + [anon_sym___bridge] = ACTIONS(2032), + [anon_sym___bridge_transfer] = ACTIONS(2032), + [anon_sym___bridge_retained] = ACTIONS(2032), + [anon_sym___unsafe_unretained] = ACTIONS(2032), + [anon_sym___block] = ACTIONS(2032), + [anon_sym___kindof] = ACTIONS(2032), + [anon_sym___unused] = ACTIONS(2032), + [anon_sym__Complex] = ACTIONS(2032), + [anon_sym___complex] = ACTIONS(2032), + [anon_sym_IBOutlet] = ACTIONS(2032), + [anon_sym_IBInspectable] = ACTIONS(2032), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2032), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [sym_null] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2034), + [anon_sym_ATimport] = ACTIONS(2034), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2032), + [anon_sym_ATcompatibility_alias] = ACTIONS(2034), + [anon_sym_ATprotocol] = ACTIONS(2034), + [anon_sym_ATclass] = ACTIONS(2034), + [anon_sym_ATinterface] = ACTIONS(2034), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2032), + [sym_method_attribute_specifier] = ACTIONS(2032), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2032), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE] = ACTIONS(2032), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_API_AVAILABLE] = ACTIONS(2032), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_API_DEPRECATED] = ACTIONS(2032), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2032), + [anon_sym___deprecated_msg] = ACTIONS(2032), + [anon_sym___deprecated_enum_msg] = ACTIONS(2032), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2032), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2032), + [anon_sym_ATimplementation] = ACTIONS(2034), + [anon_sym_NS_ENUM] = ACTIONS(2032), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2032), + [anon_sym_NS_OPTIONS] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(2032), + [anon_sym___typeof] = ACTIONS(2032), + [anon_sym___typeof__] = ACTIONS(2032), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_nil] = ACTIONS(2032), + [sym_id] = ACTIONS(2032), + [sym_instancetype] = ACTIONS(2032), + [sym_Class] = ACTIONS(2032), + [sym_SEL] = ACTIONS(2032), + [sym_IMP] = ACTIONS(2032), + [sym_BOOL] = ACTIONS(2032), + [sym_auto] = ACTIONS(2032), + [anon_sym_ATautoreleasepool] = ACTIONS(2034), + [anon_sym_ATsynchronized] = ACTIONS(2034), + [anon_sym_ATtry] = ACTIONS(2034), + [anon_sym_ATthrow] = ACTIONS(2034), + [anon_sym_ATselector] = ACTIONS(2034), + [anon_sym_ATencode] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2032), + [sym_YES] = ACTIONS(2032), + [sym_NO] = ACTIONS(2032), + [anon_sym___builtin_available] = ACTIONS(2032), + [anon_sym_ATavailable] = ACTIONS(2034), + [anon_sym_va_arg] = ACTIONS(2032), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [706] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [aux_sym_preproc_else_token1] = ACTIONS(2036), + [aux_sym_preproc_elif_token1] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [707] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [aux_sym_preproc_else_token1] = ACTIONS(2036), + [aux_sym_preproc_elif_token1] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [708] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [aux_sym_preproc_else_token1] = ACTIONS(2036), + [aux_sym_preproc_elif_token1] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [709] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [aux_sym_preproc_else_token1] = ACTIONS(2036), + [aux_sym_preproc_elif_token1] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [710] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [aux_sym_preproc_else_token1] = ACTIONS(2036), + [aux_sym_preproc_elif_token1] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [711] = { + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2034), + [aux_sym_preproc_def_token1] = ACTIONS(2034), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_if_token2] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [aux_sym_preproc_else_token1] = ACTIONS(2032), + [aux_sym_preproc_elif_token1] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_auto] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_out] = ACTIONS(2032), + [anon_sym_inout] = ACTIONS(2032), + [anon_sym_bycopy] = ACTIONS(2032), + [anon_sym_byref] = ACTIONS(2032), + [anon_sym_oneway] = ACTIONS(2032), + [anon_sym__Nullable] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym__Nullable_result] = ACTIONS(2032), + [anon_sym__Null_unspecified] = ACTIONS(2032), + [anon_sym___autoreleasing] = ACTIONS(2032), + [anon_sym___nullable] = ACTIONS(2032), + [anon_sym___nonnull] = ACTIONS(2032), + [anon_sym___strong] = ACTIONS(2032), + [anon_sym___weak] = ACTIONS(2032), + [anon_sym___bridge] = ACTIONS(2032), + [anon_sym___bridge_transfer] = ACTIONS(2032), + [anon_sym___bridge_retained] = ACTIONS(2032), + [anon_sym___unsafe_unretained] = ACTIONS(2032), + [anon_sym___block] = ACTIONS(2032), + [anon_sym___kindof] = ACTIONS(2032), + [anon_sym___unused] = ACTIONS(2032), + [anon_sym__Complex] = ACTIONS(2032), + [anon_sym___complex] = ACTIONS(2032), + [anon_sym_IBOutlet] = ACTIONS(2032), + [anon_sym_IBInspectable] = ACTIONS(2032), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2032), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [sym_null] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2034), + [anon_sym_ATimport] = ACTIONS(2034), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2032), + [anon_sym_ATcompatibility_alias] = ACTIONS(2034), + [anon_sym_ATprotocol] = ACTIONS(2034), + [anon_sym_ATclass] = ACTIONS(2034), + [anon_sym_ATinterface] = ACTIONS(2034), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2032), + [sym_method_attribute_specifier] = ACTIONS(2032), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2032), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE] = ACTIONS(2032), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_API_AVAILABLE] = ACTIONS(2032), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_API_DEPRECATED] = ACTIONS(2032), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2032), + [anon_sym___deprecated_msg] = ACTIONS(2032), + [anon_sym___deprecated_enum_msg] = ACTIONS(2032), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2032), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2032), + [anon_sym_ATimplementation] = ACTIONS(2034), + [anon_sym_NS_ENUM] = ACTIONS(2032), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2032), + [anon_sym_NS_OPTIONS] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(2032), + [anon_sym___typeof] = ACTIONS(2032), + [anon_sym___typeof__] = ACTIONS(2032), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_nil] = ACTIONS(2032), + [sym_id] = ACTIONS(2032), + [sym_instancetype] = ACTIONS(2032), + [sym_Class] = ACTIONS(2032), + [sym_SEL] = ACTIONS(2032), + [sym_IMP] = ACTIONS(2032), + [sym_BOOL] = ACTIONS(2032), + [sym_auto] = ACTIONS(2032), + [anon_sym_ATautoreleasepool] = ACTIONS(2034), + [anon_sym_ATsynchronized] = ACTIONS(2034), + [anon_sym_ATtry] = ACTIONS(2034), + [anon_sym_ATthrow] = ACTIONS(2034), + [anon_sym_ATselector] = ACTIONS(2034), + [anon_sym_ATencode] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2032), + [sym_YES] = ACTIONS(2032), + [sym_NO] = ACTIONS(2032), + [anon_sym___builtin_available] = ACTIONS(2032), + [anon_sym_ATavailable] = ACTIONS(2034), + [anon_sym_va_arg] = ACTIONS(2032), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [712] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [aux_sym_preproc_else_token1] = ACTIONS(2036), + [aux_sym_preproc_elif_token1] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [713] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [aux_sym_preproc_else_token1] = ACTIONS(2004), + [aux_sym_preproc_elif_token1] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [714] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [aux_sym_preproc_else_token1] = ACTIONS(2036), + [aux_sym_preproc_elif_token1] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [715] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [aux_sym_preproc_else_token1] = ACTIONS(2036), + [aux_sym_preproc_elif_token1] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [716] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [aux_sym_preproc_else_token1] = ACTIONS(2004), + [aux_sym_preproc_elif_token1] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [717] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [aux_sym_preproc_else_token1] = ACTIONS(2036), + [aux_sym_preproc_elif_token1] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [718] = { + [sym_identifier] = ACTIONS(2040), + [aux_sym_preproc_include_token1] = ACTIONS(2042), + [aux_sym_preproc_def_token1] = ACTIONS(2042), + [aux_sym_preproc_if_token1] = ACTIONS(2040), + [aux_sym_preproc_if_token2] = ACTIONS(2040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2040), + [aux_sym_preproc_else_token1] = ACTIONS(2040), + [aux_sym_preproc_elif_token1] = ACTIONS(2040), + [anon_sym_LPAREN2] = ACTIONS(2042), + [anon_sym_BANG] = ACTIONS(2042), + [anon_sym_TILDE] = ACTIONS(2042), + [anon_sym_DASH] = ACTIONS(2040), + [anon_sym_PLUS] = ACTIONS(2040), + [anon_sym_STAR] = ACTIONS(2042), + [anon_sym_CARET] = ACTIONS(2042), + [anon_sym_AMP] = ACTIONS(2042), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym_typedef] = ACTIONS(2040), + [anon_sym_extern] = ACTIONS(2040), + [anon_sym___attribute] = ACTIONS(2040), + [anon_sym___attribute__] = ACTIONS(2040), + [anon_sym___declspec] = ACTIONS(2040), + [anon_sym___cdecl] = ACTIONS(2040), + [anon_sym___clrcall] = ACTIONS(2040), + [anon_sym___stdcall] = ACTIONS(2040), + [anon_sym___fastcall] = ACTIONS(2040), + [anon_sym___thiscall] = ACTIONS(2040), + [anon_sym___vectorcall] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2042), + [anon_sym_LBRACK] = ACTIONS(2042), + [anon_sym_static] = ACTIONS(2040), + [anon_sym_auto] = ACTIONS(2040), + [anon_sym_register] = ACTIONS(2040), + [anon_sym_inline] = ACTIONS(2040), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2040), + [anon_sym_const] = ACTIONS(2040), + [anon_sym_volatile] = ACTIONS(2040), + [anon_sym_restrict] = ACTIONS(2040), + [anon_sym__Atomic] = ACTIONS(2040), + [anon_sym_in] = ACTIONS(2040), + [anon_sym_out] = ACTIONS(2040), + [anon_sym_inout] = ACTIONS(2040), + [anon_sym_bycopy] = ACTIONS(2040), + [anon_sym_byref] = ACTIONS(2040), + [anon_sym_oneway] = ACTIONS(2040), + [anon_sym__Nullable] = ACTIONS(2040), + [anon_sym__Nonnull] = ACTIONS(2040), + [anon_sym__Nullable_result] = ACTIONS(2040), + [anon_sym__Null_unspecified] = ACTIONS(2040), + [anon_sym___autoreleasing] = ACTIONS(2040), + [anon_sym___nullable] = ACTIONS(2040), + [anon_sym___nonnull] = ACTIONS(2040), + [anon_sym___strong] = ACTIONS(2040), + [anon_sym___weak] = ACTIONS(2040), + [anon_sym___bridge] = ACTIONS(2040), + [anon_sym___bridge_transfer] = ACTIONS(2040), + [anon_sym___bridge_retained] = ACTIONS(2040), + [anon_sym___unsafe_unretained] = ACTIONS(2040), + [anon_sym___block] = ACTIONS(2040), + [anon_sym___kindof] = ACTIONS(2040), + [anon_sym___unused] = ACTIONS(2040), + [anon_sym__Complex] = ACTIONS(2040), + [anon_sym___complex] = ACTIONS(2040), + [anon_sym_IBOutlet] = ACTIONS(2040), + [anon_sym_IBInspectable] = ACTIONS(2040), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2040), + [anon_sym_signed] = ACTIONS(2040), + [anon_sym_unsigned] = ACTIONS(2040), + [anon_sym_long] = ACTIONS(2040), + [anon_sym_short] = ACTIONS(2040), + [sym_primitive_type] = ACTIONS(2040), + [anon_sym_enum] = ACTIONS(2040), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2040), + [anon_sym_if] = ACTIONS(2040), + [anon_sym_switch] = ACTIONS(2040), + [anon_sym_case] = ACTIONS(2040), + [anon_sym_default] = ACTIONS(2040), + [anon_sym_while] = ACTIONS(2040), + [anon_sym_do] = ACTIONS(2040), + [anon_sym_for] = ACTIONS(2040), + [anon_sym_return] = ACTIONS(2040), + [anon_sym_break] = ACTIONS(2040), + [anon_sym_continue] = ACTIONS(2040), + [anon_sym_goto] = ACTIONS(2040), + [anon_sym_DASH_DASH] = ACTIONS(2042), + [anon_sym_PLUS_PLUS] = ACTIONS(2042), + [anon_sym_sizeof] = ACTIONS(2040), + [sym_number_literal] = ACTIONS(2042), + [anon_sym_L_SQUOTE] = ACTIONS(2042), + [anon_sym_u_SQUOTE] = ACTIONS(2042), + [anon_sym_U_SQUOTE] = ACTIONS(2042), + [anon_sym_u8_SQUOTE] = ACTIONS(2042), + [anon_sym_SQUOTE] = ACTIONS(2042), + [anon_sym_L_DQUOTE] = ACTIONS(2042), + [anon_sym_u_DQUOTE] = ACTIONS(2042), + [anon_sym_U_DQUOTE] = ACTIONS(2042), + [anon_sym_u8_DQUOTE] = ACTIONS(2042), + [anon_sym_DQUOTE] = ACTIONS(2042), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [sym_null] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2042), + [anon_sym_ATimport] = ACTIONS(2042), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2040), + [anon_sym_ATcompatibility_alias] = ACTIONS(2042), + [anon_sym_ATprotocol] = ACTIONS(2042), + [anon_sym_ATclass] = ACTIONS(2042), + [anon_sym_ATinterface] = ACTIONS(2042), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2040), + [sym_method_attribute_specifier] = ACTIONS(2040), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2040), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2040), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2040), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2040), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2040), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2040), + [anon_sym_NS_AVAILABLE] = ACTIONS(2040), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2040), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2040), + [anon_sym_API_AVAILABLE] = ACTIONS(2040), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2040), + [anon_sym_API_DEPRECATED] = ACTIONS(2040), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2040), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2040), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2040), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2040), + [anon_sym___deprecated_msg] = ACTIONS(2040), + [anon_sym___deprecated_enum_msg] = ACTIONS(2040), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2040), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2040), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2040), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2040), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2040), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2040), + [anon_sym_ATimplementation] = ACTIONS(2042), + [anon_sym_NS_ENUM] = ACTIONS(2040), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2040), + [anon_sym_NS_OPTIONS] = ACTIONS(2040), + [anon_sym_typeof] = ACTIONS(2040), + [anon_sym___typeof] = ACTIONS(2040), + [anon_sym___typeof__] = ACTIONS(2040), + [sym_self] = ACTIONS(2040), + [sym_super] = ACTIONS(2040), + [sym_nil] = ACTIONS(2040), + [sym_id] = ACTIONS(2040), + [sym_instancetype] = ACTIONS(2040), + [sym_Class] = ACTIONS(2040), + [sym_SEL] = ACTIONS(2040), + [sym_IMP] = ACTIONS(2040), + [sym_BOOL] = ACTIONS(2040), + [sym_auto] = ACTIONS(2040), + [anon_sym_ATautoreleasepool] = ACTIONS(2042), + [anon_sym_ATsynchronized] = ACTIONS(2042), + [anon_sym_ATtry] = ACTIONS(2042), + [anon_sym_ATthrow] = ACTIONS(2042), + [anon_sym_ATselector] = ACTIONS(2042), + [anon_sym_ATencode] = ACTIONS(2042), + [anon_sym_AT] = ACTIONS(2040), + [sym_YES] = ACTIONS(2040), + [sym_NO] = ACTIONS(2040), + [anon_sym___builtin_available] = ACTIONS(2040), + [anon_sym_ATavailable] = ACTIONS(2042), + [anon_sym_va_arg] = ACTIONS(2040), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [719] = { + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2046), + [aux_sym_preproc_def_token1] = ACTIONS(2046), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_if_token2] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [aux_sym_preproc_else_token1] = ACTIONS(2044), + [aux_sym_preproc_elif_token1] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_auto] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym_in] = ACTIONS(2044), + [anon_sym_out] = ACTIONS(2044), + [anon_sym_inout] = ACTIONS(2044), + [anon_sym_bycopy] = ACTIONS(2044), + [anon_sym_byref] = ACTIONS(2044), + [anon_sym_oneway] = ACTIONS(2044), + [anon_sym__Nullable] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym__Nullable_result] = ACTIONS(2044), + [anon_sym__Null_unspecified] = ACTIONS(2044), + [anon_sym___autoreleasing] = ACTIONS(2044), + [anon_sym___nullable] = ACTIONS(2044), + [anon_sym___nonnull] = ACTIONS(2044), + [anon_sym___strong] = ACTIONS(2044), + [anon_sym___weak] = ACTIONS(2044), + [anon_sym___bridge] = ACTIONS(2044), + [anon_sym___bridge_transfer] = ACTIONS(2044), + [anon_sym___bridge_retained] = ACTIONS(2044), + [anon_sym___unsafe_unretained] = ACTIONS(2044), + [anon_sym___block] = ACTIONS(2044), + [anon_sym___kindof] = ACTIONS(2044), + [anon_sym___unused] = ACTIONS(2044), + [anon_sym__Complex] = ACTIONS(2044), + [anon_sym___complex] = ACTIONS(2044), + [anon_sym_IBOutlet] = ACTIONS(2044), + [anon_sym_IBInspectable] = ACTIONS(2044), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2044), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [sym_null] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2046), + [anon_sym_ATimport] = ACTIONS(2046), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2044), + [anon_sym_ATcompatibility_alias] = ACTIONS(2046), + [anon_sym_ATprotocol] = ACTIONS(2046), + [anon_sym_ATclass] = ACTIONS(2046), + [anon_sym_ATinterface] = ACTIONS(2046), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2044), + [sym_method_attribute_specifier] = ACTIONS(2044), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2044), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE] = ACTIONS(2044), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_API_AVAILABLE] = ACTIONS(2044), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_API_DEPRECATED] = ACTIONS(2044), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2044), + [anon_sym___deprecated_msg] = ACTIONS(2044), + [anon_sym___deprecated_enum_msg] = ACTIONS(2044), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2044), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2044), + [anon_sym_ATimplementation] = ACTIONS(2046), + [anon_sym_NS_ENUM] = ACTIONS(2044), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2044), + [anon_sym_NS_OPTIONS] = ACTIONS(2044), + [anon_sym_typeof] = ACTIONS(2044), + [anon_sym___typeof] = ACTIONS(2044), + [anon_sym___typeof__] = ACTIONS(2044), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_nil] = ACTIONS(2044), + [sym_id] = ACTIONS(2044), + [sym_instancetype] = ACTIONS(2044), + [sym_Class] = ACTIONS(2044), + [sym_SEL] = ACTIONS(2044), + [sym_IMP] = ACTIONS(2044), + [sym_BOOL] = ACTIONS(2044), + [sym_auto] = ACTIONS(2044), + [anon_sym_ATautoreleasepool] = ACTIONS(2046), + [anon_sym_ATsynchronized] = ACTIONS(2046), + [anon_sym_ATtry] = ACTIONS(2046), + [anon_sym_ATthrow] = ACTIONS(2046), + [anon_sym_ATselector] = ACTIONS(2046), + [anon_sym_ATencode] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2044), + [sym_YES] = ACTIONS(2044), + [sym_NO] = ACTIONS(2044), + [anon_sym___builtin_available] = ACTIONS(2044), + [anon_sym_ATavailable] = ACTIONS(2046), + [anon_sym_va_arg] = ACTIONS(2044), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [720] = { + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2046), + [aux_sym_preproc_def_token1] = ACTIONS(2046), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_if_token2] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [aux_sym_preproc_else_token1] = ACTIONS(2044), + [aux_sym_preproc_elif_token1] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_auto] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym_in] = ACTIONS(2044), + [anon_sym_out] = ACTIONS(2044), + [anon_sym_inout] = ACTIONS(2044), + [anon_sym_bycopy] = ACTIONS(2044), + [anon_sym_byref] = ACTIONS(2044), + [anon_sym_oneway] = ACTIONS(2044), + [anon_sym__Nullable] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym__Nullable_result] = ACTIONS(2044), + [anon_sym__Null_unspecified] = ACTIONS(2044), + [anon_sym___autoreleasing] = ACTIONS(2044), + [anon_sym___nullable] = ACTIONS(2044), + [anon_sym___nonnull] = ACTIONS(2044), + [anon_sym___strong] = ACTIONS(2044), + [anon_sym___weak] = ACTIONS(2044), + [anon_sym___bridge] = ACTIONS(2044), + [anon_sym___bridge_transfer] = ACTIONS(2044), + [anon_sym___bridge_retained] = ACTIONS(2044), + [anon_sym___unsafe_unretained] = ACTIONS(2044), + [anon_sym___block] = ACTIONS(2044), + [anon_sym___kindof] = ACTIONS(2044), + [anon_sym___unused] = ACTIONS(2044), + [anon_sym__Complex] = ACTIONS(2044), + [anon_sym___complex] = ACTIONS(2044), + [anon_sym_IBOutlet] = ACTIONS(2044), + [anon_sym_IBInspectable] = ACTIONS(2044), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2044), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [sym_null] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2046), + [anon_sym_ATimport] = ACTIONS(2046), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2044), + [anon_sym_ATcompatibility_alias] = ACTIONS(2046), + [anon_sym_ATprotocol] = ACTIONS(2046), + [anon_sym_ATclass] = ACTIONS(2046), + [anon_sym_ATinterface] = ACTIONS(2046), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2044), + [sym_method_attribute_specifier] = ACTIONS(2044), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2044), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE] = ACTIONS(2044), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_API_AVAILABLE] = ACTIONS(2044), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_API_DEPRECATED] = ACTIONS(2044), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2044), + [anon_sym___deprecated_msg] = ACTIONS(2044), + [anon_sym___deprecated_enum_msg] = ACTIONS(2044), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2044), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2044), + [anon_sym_ATimplementation] = ACTIONS(2046), + [anon_sym_NS_ENUM] = ACTIONS(2044), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2044), + [anon_sym_NS_OPTIONS] = ACTIONS(2044), + [anon_sym_typeof] = ACTIONS(2044), + [anon_sym___typeof] = ACTIONS(2044), + [anon_sym___typeof__] = ACTIONS(2044), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_nil] = ACTIONS(2044), + [sym_id] = ACTIONS(2044), + [sym_instancetype] = ACTIONS(2044), + [sym_Class] = ACTIONS(2044), + [sym_SEL] = ACTIONS(2044), + [sym_IMP] = ACTIONS(2044), + [sym_BOOL] = ACTIONS(2044), + [sym_auto] = ACTIONS(2044), + [anon_sym_ATautoreleasepool] = ACTIONS(2046), + [anon_sym_ATsynchronized] = ACTIONS(2046), + [anon_sym_ATtry] = ACTIONS(2046), + [anon_sym_ATthrow] = ACTIONS(2046), + [anon_sym_ATselector] = ACTIONS(2046), + [anon_sym_ATencode] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2044), + [sym_YES] = ACTIONS(2044), + [sym_NO] = ACTIONS(2044), + [anon_sym___builtin_available] = ACTIONS(2044), + [anon_sym_ATavailable] = ACTIONS(2046), + [anon_sym_va_arg] = ACTIONS(2044), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [721] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [aux_sym_preproc_else_token1] = ACTIONS(2004), + [aux_sym_preproc_elif_token1] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [722] = { + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2046), + [aux_sym_preproc_def_token1] = ACTIONS(2046), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_if_token2] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [aux_sym_preproc_else_token1] = ACTIONS(2044), + [aux_sym_preproc_elif_token1] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_auto] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym_in] = ACTIONS(2044), + [anon_sym_out] = ACTIONS(2044), + [anon_sym_inout] = ACTIONS(2044), + [anon_sym_bycopy] = ACTIONS(2044), + [anon_sym_byref] = ACTIONS(2044), + [anon_sym_oneway] = ACTIONS(2044), + [anon_sym__Nullable] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym__Nullable_result] = ACTIONS(2044), + [anon_sym__Null_unspecified] = ACTIONS(2044), + [anon_sym___autoreleasing] = ACTIONS(2044), + [anon_sym___nullable] = ACTIONS(2044), + [anon_sym___nonnull] = ACTIONS(2044), + [anon_sym___strong] = ACTIONS(2044), + [anon_sym___weak] = ACTIONS(2044), + [anon_sym___bridge] = ACTIONS(2044), + [anon_sym___bridge_transfer] = ACTIONS(2044), + [anon_sym___bridge_retained] = ACTIONS(2044), + [anon_sym___unsafe_unretained] = ACTIONS(2044), + [anon_sym___block] = ACTIONS(2044), + [anon_sym___kindof] = ACTIONS(2044), + [anon_sym___unused] = ACTIONS(2044), + [anon_sym__Complex] = ACTIONS(2044), + [anon_sym___complex] = ACTIONS(2044), + [anon_sym_IBOutlet] = ACTIONS(2044), + [anon_sym_IBInspectable] = ACTIONS(2044), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2044), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [sym_null] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2046), + [anon_sym_ATimport] = ACTIONS(2046), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2044), + [anon_sym_ATcompatibility_alias] = ACTIONS(2046), + [anon_sym_ATprotocol] = ACTIONS(2046), + [anon_sym_ATclass] = ACTIONS(2046), + [anon_sym_ATinterface] = ACTIONS(2046), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2044), + [sym_method_attribute_specifier] = ACTIONS(2044), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2044), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE] = ACTIONS(2044), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_API_AVAILABLE] = ACTIONS(2044), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_API_DEPRECATED] = ACTIONS(2044), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2044), + [anon_sym___deprecated_msg] = ACTIONS(2044), + [anon_sym___deprecated_enum_msg] = ACTIONS(2044), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2044), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2044), + [anon_sym_ATimplementation] = ACTIONS(2046), + [anon_sym_NS_ENUM] = ACTIONS(2044), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2044), + [anon_sym_NS_OPTIONS] = ACTIONS(2044), + [anon_sym_typeof] = ACTIONS(2044), + [anon_sym___typeof] = ACTIONS(2044), + [anon_sym___typeof__] = ACTIONS(2044), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_nil] = ACTIONS(2044), + [sym_id] = ACTIONS(2044), + [sym_instancetype] = ACTIONS(2044), + [sym_Class] = ACTIONS(2044), + [sym_SEL] = ACTIONS(2044), + [sym_IMP] = ACTIONS(2044), + [sym_BOOL] = ACTIONS(2044), + [sym_auto] = ACTIONS(2044), + [anon_sym_ATautoreleasepool] = ACTIONS(2046), + [anon_sym_ATsynchronized] = ACTIONS(2046), + [anon_sym_ATtry] = ACTIONS(2046), + [anon_sym_ATthrow] = ACTIONS(2046), + [anon_sym_ATselector] = ACTIONS(2046), + [anon_sym_ATencode] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2044), + [sym_YES] = ACTIONS(2044), + [sym_NO] = ACTIONS(2044), + [anon_sym___builtin_available] = ACTIONS(2044), + [anon_sym_ATavailable] = ACTIONS(2046), + [anon_sym_va_arg] = ACTIONS(2044), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [723] = { + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2046), + [aux_sym_preproc_def_token1] = ACTIONS(2046), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_if_token2] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [aux_sym_preproc_else_token1] = ACTIONS(2044), + [aux_sym_preproc_elif_token1] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_auto] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym_in] = ACTIONS(2044), + [anon_sym_out] = ACTIONS(2044), + [anon_sym_inout] = ACTIONS(2044), + [anon_sym_bycopy] = ACTIONS(2044), + [anon_sym_byref] = ACTIONS(2044), + [anon_sym_oneway] = ACTIONS(2044), + [anon_sym__Nullable] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym__Nullable_result] = ACTIONS(2044), + [anon_sym__Null_unspecified] = ACTIONS(2044), + [anon_sym___autoreleasing] = ACTIONS(2044), + [anon_sym___nullable] = ACTIONS(2044), + [anon_sym___nonnull] = ACTIONS(2044), + [anon_sym___strong] = ACTIONS(2044), + [anon_sym___weak] = ACTIONS(2044), + [anon_sym___bridge] = ACTIONS(2044), + [anon_sym___bridge_transfer] = ACTIONS(2044), + [anon_sym___bridge_retained] = ACTIONS(2044), + [anon_sym___unsafe_unretained] = ACTIONS(2044), + [anon_sym___block] = ACTIONS(2044), + [anon_sym___kindof] = ACTIONS(2044), + [anon_sym___unused] = ACTIONS(2044), + [anon_sym__Complex] = ACTIONS(2044), + [anon_sym___complex] = ACTIONS(2044), + [anon_sym_IBOutlet] = ACTIONS(2044), + [anon_sym_IBInspectable] = ACTIONS(2044), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2044), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [sym_null] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2046), + [anon_sym_ATimport] = ACTIONS(2046), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2044), + [anon_sym_ATcompatibility_alias] = ACTIONS(2046), + [anon_sym_ATprotocol] = ACTIONS(2046), + [anon_sym_ATclass] = ACTIONS(2046), + [anon_sym_ATinterface] = ACTIONS(2046), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2044), + [sym_method_attribute_specifier] = ACTIONS(2044), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2044), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE] = ACTIONS(2044), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_API_AVAILABLE] = ACTIONS(2044), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_API_DEPRECATED] = ACTIONS(2044), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2044), + [anon_sym___deprecated_msg] = ACTIONS(2044), + [anon_sym___deprecated_enum_msg] = ACTIONS(2044), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2044), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2044), + [anon_sym_ATimplementation] = ACTIONS(2046), + [anon_sym_NS_ENUM] = ACTIONS(2044), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2044), + [anon_sym_NS_OPTIONS] = ACTIONS(2044), + [anon_sym_typeof] = ACTIONS(2044), + [anon_sym___typeof] = ACTIONS(2044), + [anon_sym___typeof__] = ACTIONS(2044), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_nil] = ACTIONS(2044), + [sym_id] = ACTIONS(2044), + [sym_instancetype] = ACTIONS(2044), + [sym_Class] = ACTIONS(2044), + [sym_SEL] = ACTIONS(2044), + [sym_IMP] = ACTIONS(2044), + [sym_BOOL] = ACTIONS(2044), + [sym_auto] = ACTIONS(2044), + [anon_sym_ATautoreleasepool] = ACTIONS(2046), + [anon_sym_ATsynchronized] = ACTIONS(2046), + [anon_sym_ATtry] = ACTIONS(2046), + [anon_sym_ATthrow] = ACTIONS(2046), + [anon_sym_ATselector] = ACTIONS(2046), + [anon_sym_ATencode] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2044), + [sym_YES] = ACTIONS(2044), + [sym_NO] = ACTIONS(2044), + [anon_sym___builtin_available] = ACTIONS(2044), + [anon_sym_ATavailable] = ACTIONS(2046), + [anon_sym_va_arg] = ACTIONS(2044), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [724] = { + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2034), + [aux_sym_preproc_def_token1] = ACTIONS(2034), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_if_token2] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [aux_sym_preproc_else_token1] = ACTIONS(2032), + [aux_sym_preproc_elif_token1] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_auto] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_out] = ACTIONS(2032), + [anon_sym_inout] = ACTIONS(2032), + [anon_sym_bycopy] = ACTIONS(2032), + [anon_sym_byref] = ACTIONS(2032), + [anon_sym_oneway] = ACTIONS(2032), + [anon_sym__Nullable] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym__Nullable_result] = ACTIONS(2032), + [anon_sym__Null_unspecified] = ACTIONS(2032), + [anon_sym___autoreleasing] = ACTIONS(2032), + [anon_sym___nullable] = ACTIONS(2032), + [anon_sym___nonnull] = ACTIONS(2032), + [anon_sym___strong] = ACTIONS(2032), + [anon_sym___weak] = ACTIONS(2032), + [anon_sym___bridge] = ACTIONS(2032), + [anon_sym___bridge_transfer] = ACTIONS(2032), + [anon_sym___bridge_retained] = ACTIONS(2032), + [anon_sym___unsafe_unretained] = ACTIONS(2032), + [anon_sym___block] = ACTIONS(2032), + [anon_sym___kindof] = ACTIONS(2032), + [anon_sym___unused] = ACTIONS(2032), + [anon_sym__Complex] = ACTIONS(2032), + [anon_sym___complex] = ACTIONS(2032), + [anon_sym_IBOutlet] = ACTIONS(2032), + [anon_sym_IBInspectable] = ACTIONS(2032), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2032), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [sym_null] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2034), + [anon_sym_ATimport] = ACTIONS(2034), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2032), + [anon_sym_ATcompatibility_alias] = ACTIONS(2034), + [anon_sym_ATprotocol] = ACTIONS(2034), + [anon_sym_ATclass] = ACTIONS(2034), + [anon_sym_ATinterface] = ACTIONS(2034), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2032), + [sym_method_attribute_specifier] = ACTIONS(2032), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2032), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE] = ACTIONS(2032), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_API_AVAILABLE] = ACTIONS(2032), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_API_DEPRECATED] = ACTIONS(2032), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2032), + [anon_sym___deprecated_msg] = ACTIONS(2032), + [anon_sym___deprecated_enum_msg] = ACTIONS(2032), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2032), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2032), + [anon_sym_ATimplementation] = ACTIONS(2034), + [anon_sym_NS_ENUM] = ACTIONS(2032), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2032), + [anon_sym_NS_OPTIONS] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(2032), + [anon_sym___typeof] = ACTIONS(2032), + [anon_sym___typeof__] = ACTIONS(2032), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_nil] = ACTIONS(2032), + [sym_id] = ACTIONS(2032), + [sym_instancetype] = ACTIONS(2032), + [sym_Class] = ACTIONS(2032), + [sym_SEL] = ACTIONS(2032), + [sym_IMP] = ACTIONS(2032), + [sym_BOOL] = ACTIONS(2032), + [sym_auto] = ACTIONS(2032), + [anon_sym_ATautoreleasepool] = ACTIONS(2034), + [anon_sym_ATsynchronized] = ACTIONS(2034), + [anon_sym_ATtry] = ACTIONS(2034), + [anon_sym_ATthrow] = ACTIONS(2034), + [anon_sym_ATselector] = ACTIONS(2034), + [anon_sym_ATencode] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2032), + [sym_YES] = ACTIONS(2032), + [sym_NO] = ACTIONS(2032), + [anon_sym___builtin_available] = ACTIONS(2032), + [anon_sym_ATavailable] = ACTIONS(2034), + [anon_sym_va_arg] = ACTIONS(2032), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [725] = { + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2046), + [aux_sym_preproc_def_token1] = ACTIONS(2046), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_if_token2] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [aux_sym_preproc_else_token1] = ACTIONS(2044), + [aux_sym_preproc_elif_token1] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_auto] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym_in] = ACTIONS(2044), + [anon_sym_out] = ACTIONS(2044), + [anon_sym_inout] = ACTIONS(2044), + [anon_sym_bycopy] = ACTIONS(2044), + [anon_sym_byref] = ACTIONS(2044), + [anon_sym_oneway] = ACTIONS(2044), + [anon_sym__Nullable] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym__Nullable_result] = ACTIONS(2044), + [anon_sym__Null_unspecified] = ACTIONS(2044), + [anon_sym___autoreleasing] = ACTIONS(2044), + [anon_sym___nullable] = ACTIONS(2044), + [anon_sym___nonnull] = ACTIONS(2044), + [anon_sym___strong] = ACTIONS(2044), + [anon_sym___weak] = ACTIONS(2044), + [anon_sym___bridge] = ACTIONS(2044), + [anon_sym___bridge_transfer] = ACTIONS(2044), + [anon_sym___bridge_retained] = ACTIONS(2044), + [anon_sym___unsafe_unretained] = ACTIONS(2044), + [anon_sym___block] = ACTIONS(2044), + [anon_sym___kindof] = ACTIONS(2044), + [anon_sym___unused] = ACTIONS(2044), + [anon_sym__Complex] = ACTIONS(2044), + [anon_sym___complex] = ACTIONS(2044), + [anon_sym_IBOutlet] = ACTIONS(2044), + [anon_sym_IBInspectable] = ACTIONS(2044), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2044), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [sym_null] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2046), + [anon_sym_ATimport] = ACTIONS(2046), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2044), + [anon_sym_ATcompatibility_alias] = ACTIONS(2046), + [anon_sym_ATprotocol] = ACTIONS(2046), + [anon_sym_ATclass] = ACTIONS(2046), + [anon_sym_ATinterface] = ACTIONS(2046), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2044), + [sym_method_attribute_specifier] = ACTIONS(2044), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2044), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE] = ACTIONS(2044), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_API_AVAILABLE] = ACTIONS(2044), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_API_DEPRECATED] = ACTIONS(2044), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2044), + [anon_sym___deprecated_msg] = ACTIONS(2044), + [anon_sym___deprecated_enum_msg] = ACTIONS(2044), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2044), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2044), + [anon_sym_ATimplementation] = ACTIONS(2046), + [anon_sym_NS_ENUM] = ACTIONS(2044), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2044), + [anon_sym_NS_OPTIONS] = ACTIONS(2044), + [anon_sym_typeof] = ACTIONS(2044), + [anon_sym___typeof] = ACTIONS(2044), + [anon_sym___typeof__] = ACTIONS(2044), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_nil] = ACTIONS(2044), + [sym_id] = ACTIONS(2044), + [sym_instancetype] = ACTIONS(2044), + [sym_Class] = ACTIONS(2044), + [sym_SEL] = ACTIONS(2044), + [sym_IMP] = ACTIONS(2044), + [sym_BOOL] = ACTIONS(2044), + [sym_auto] = ACTIONS(2044), + [anon_sym_ATautoreleasepool] = ACTIONS(2046), + [anon_sym_ATsynchronized] = ACTIONS(2046), + [anon_sym_ATtry] = ACTIONS(2046), + [anon_sym_ATthrow] = ACTIONS(2046), + [anon_sym_ATselector] = ACTIONS(2046), + [anon_sym_ATencode] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2044), + [sym_YES] = ACTIONS(2044), + [sym_NO] = ACTIONS(2044), + [anon_sym___builtin_available] = ACTIONS(2044), + [anon_sym_ATavailable] = ACTIONS(2046), + [anon_sym_va_arg] = ACTIONS(2044), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [726] = { + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2046), + [aux_sym_preproc_def_token1] = ACTIONS(2046), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_if_token2] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [aux_sym_preproc_else_token1] = ACTIONS(2044), + [aux_sym_preproc_elif_token1] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_auto] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym_in] = ACTIONS(2044), + [anon_sym_out] = ACTIONS(2044), + [anon_sym_inout] = ACTIONS(2044), + [anon_sym_bycopy] = ACTIONS(2044), + [anon_sym_byref] = ACTIONS(2044), + [anon_sym_oneway] = ACTIONS(2044), + [anon_sym__Nullable] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym__Nullable_result] = ACTIONS(2044), + [anon_sym__Null_unspecified] = ACTIONS(2044), + [anon_sym___autoreleasing] = ACTIONS(2044), + [anon_sym___nullable] = ACTIONS(2044), + [anon_sym___nonnull] = ACTIONS(2044), + [anon_sym___strong] = ACTIONS(2044), + [anon_sym___weak] = ACTIONS(2044), + [anon_sym___bridge] = ACTIONS(2044), + [anon_sym___bridge_transfer] = ACTIONS(2044), + [anon_sym___bridge_retained] = ACTIONS(2044), + [anon_sym___unsafe_unretained] = ACTIONS(2044), + [anon_sym___block] = ACTIONS(2044), + [anon_sym___kindof] = ACTIONS(2044), + [anon_sym___unused] = ACTIONS(2044), + [anon_sym__Complex] = ACTIONS(2044), + [anon_sym___complex] = ACTIONS(2044), + [anon_sym_IBOutlet] = ACTIONS(2044), + [anon_sym_IBInspectable] = ACTIONS(2044), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2044), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [sym_null] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2046), + [anon_sym_ATimport] = ACTIONS(2046), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2044), + [anon_sym_ATcompatibility_alias] = ACTIONS(2046), + [anon_sym_ATprotocol] = ACTIONS(2046), + [anon_sym_ATclass] = ACTIONS(2046), + [anon_sym_ATinterface] = ACTIONS(2046), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2044), + [sym_method_attribute_specifier] = ACTIONS(2044), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2044), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE] = ACTIONS(2044), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_API_AVAILABLE] = ACTIONS(2044), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_API_DEPRECATED] = ACTIONS(2044), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2044), + [anon_sym___deprecated_msg] = ACTIONS(2044), + [anon_sym___deprecated_enum_msg] = ACTIONS(2044), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2044), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2044), + [anon_sym_ATimplementation] = ACTIONS(2046), + [anon_sym_NS_ENUM] = ACTIONS(2044), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2044), + [anon_sym_NS_OPTIONS] = ACTIONS(2044), + [anon_sym_typeof] = ACTIONS(2044), + [anon_sym___typeof] = ACTIONS(2044), + [anon_sym___typeof__] = ACTIONS(2044), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_nil] = ACTIONS(2044), + [sym_id] = ACTIONS(2044), + [sym_instancetype] = ACTIONS(2044), + [sym_Class] = ACTIONS(2044), + [sym_SEL] = ACTIONS(2044), + [sym_IMP] = ACTIONS(2044), + [sym_BOOL] = ACTIONS(2044), + [sym_auto] = ACTIONS(2044), + [anon_sym_ATautoreleasepool] = ACTIONS(2046), + [anon_sym_ATsynchronized] = ACTIONS(2046), + [anon_sym_ATtry] = ACTIONS(2046), + [anon_sym_ATthrow] = ACTIONS(2046), + [anon_sym_ATselector] = ACTIONS(2046), + [anon_sym_ATencode] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2044), + [sym_YES] = ACTIONS(2044), + [sym_NO] = ACTIONS(2044), + [anon_sym___builtin_available] = ACTIONS(2044), + [anon_sym_ATavailable] = ACTIONS(2046), + [anon_sym_va_arg] = ACTIONS(2044), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [727] = { + [sym_identifier] = ACTIONS(2048), + [aux_sym_preproc_include_token1] = ACTIONS(2050), + [aux_sym_preproc_def_token1] = ACTIONS(2050), + [aux_sym_preproc_if_token1] = ACTIONS(2048), + [aux_sym_preproc_if_token2] = ACTIONS(2048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2048), + [aux_sym_preproc_else_token1] = ACTIONS(2048), + [aux_sym_preproc_elif_token1] = ACTIONS(2048), + [anon_sym_LPAREN2] = ACTIONS(2050), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_TILDE] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2048), + [anon_sym_PLUS] = ACTIONS(2048), + [anon_sym_STAR] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2050), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym_typedef] = ACTIONS(2048), + [anon_sym_extern] = ACTIONS(2048), + [anon_sym___attribute] = ACTIONS(2048), + [anon_sym___attribute__] = ACTIONS(2048), + [anon_sym___declspec] = ACTIONS(2048), + [anon_sym___cdecl] = ACTIONS(2048), + [anon_sym___clrcall] = ACTIONS(2048), + [anon_sym___stdcall] = ACTIONS(2048), + [anon_sym___fastcall] = ACTIONS(2048), + [anon_sym___thiscall] = ACTIONS(2048), + [anon_sym___vectorcall] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2050), + [anon_sym_LBRACK] = ACTIONS(2050), + [anon_sym_static] = ACTIONS(2048), + [anon_sym_auto] = ACTIONS(2048), + [anon_sym_register] = ACTIONS(2048), + [anon_sym_inline] = ACTIONS(2048), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2048), + [anon_sym_const] = ACTIONS(2048), + [anon_sym_volatile] = ACTIONS(2048), + [anon_sym_restrict] = ACTIONS(2048), + [anon_sym__Atomic] = ACTIONS(2048), + [anon_sym_in] = ACTIONS(2048), + [anon_sym_out] = ACTIONS(2048), + [anon_sym_inout] = ACTIONS(2048), + [anon_sym_bycopy] = ACTIONS(2048), + [anon_sym_byref] = ACTIONS(2048), + [anon_sym_oneway] = ACTIONS(2048), + [anon_sym__Nullable] = ACTIONS(2048), + [anon_sym__Nonnull] = ACTIONS(2048), + [anon_sym__Nullable_result] = ACTIONS(2048), + [anon_sym__Null_unspecified] = ACTIONS(2048), + [anon_sym___autoreleasing] = ACTIONS(2048), + [anon_sym___nullable] = ACTIONS(2048), + [anon_sym___nonnull] = ACTIONS(2048), + [anon_sym___strong] = ACTIONS(2048), + [anon_sym___weak] = ACTIONS(2048), + [anon_sym___bridge] = ACTIONS(2048), + [anon_sym___bridge_transfer] = ACTIONS(2048), + [anon_sym___bridge_retained] = ACTIONS(2048), + [anon_sym___unsafe_unretained] = ACTIONS(2048), + [anon_sym___block] = ACTIONS(2048), + [anon_sym___kindof] = ACTIONS(2048), + [anon_sym___unused] = ACTIONS(2048), + [anon_sym__Complex] = ACTIONS(2048), + [anon_sym___complex] = ACTIONS(2048), + [anon_sym_IBOutlet] = ACTIONS(2048), + [anon_sym_IBInspectable] = ACTIONS(2048), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2048), + [anon_sym_signed] = ACTIONS(2048), + [anon_sym_unsigned] = ACTIONS(2048), + [anon_sym_long] = ACTIONS(2048), + [anon_sym_short] = ACTIONS(2048), + [sym_primitive_type] = ACTIONS(2048), + [anon_sym_enum] = ACTIONS(2048), + [anon_sym_struct] = ACTIONS(2048), + [anon_sym_union] = ACTIONS(2048), + [anon_sym_if] = ACTIONS(2048), + [anon_sym_switch] = ACTIONS(2048), + [anon_sym_case] = ACTIONS(2048), + [anon_sym_default] = ACTIONS(2048), + [anon_sym_while] = ACTIONS(2048), + [anon_sym_do] = ACTIONS(2048), + [anon_sym_for] = ACTIONS(2048), + [anon_sym_return] = ACTIONS(2048), + [anon_sym_break] = ACTIONS(2048), + [anon_sym_continue] = ACTIONS(2048), + [anon_sym_goto] = ACTIONS(2048), + [anon_sym_DASH_DASH] = ACTIONS(2050), + [anon_sym_PLUS_PLUS] = ACTIONS(2050), + [anon_sym_sizeof] = ACTIONS(2048), + [sym_number_literal] = ACTIONS(2050), + [anon_sym_L_SQUOTE] = ACTIONS(2050), + [anon_sym_u_SQUOTE] = ACTIONS(2050), + [anon_sym_U_SQUOTE] = ACTIONS(2050), + [anon_sym_u8_SQUOTE] = ACTIONS(2050), + [anon_sym_SQUOTE] = ACTIONS(2050), + [anon_sym_L_DQUOTE] = ACTIONS(2050), + [anon_sym_u_DQUOTE] = ACTIONS(2050), + [anon_sym_U_DQUOTE] = ACTIONS(2050), + [anon_sym_u8_DQUOTE] = ACTIONS(2050), + [anon_sym_DQUOTE] = ACTIONS(2050), + [sym_true] = ACTIONS(2048), + [sym_false] = ACTIONS(2048), + [sym_null] = ACTIONS(2048), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2050), + [anon_sym_ATimport] = ACTIONS(2050), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2048), + [anon_sym_ATcompatibility_alias] = ACTIONS(2050), + [anon_sym_ATprotocol] = ACTIONS(2050), + [anon_sym_ATclass] = ACTIONS(2050), + [anon_sym_ATinterface] = ACTIONS(2050), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2048), + [sym_method_attribute_specifier] = ACTIONS(2048), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2048), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2048), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2048), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2048), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2048), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2048), + [anon_sym_NS_AVAILABLE] = ACTIONS(2048), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2048), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2048), + [anon_sym_API_AVAILABLE] = ACTIONS(2048), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2048), + [anon_sym_API_DEPRECATED] = ACTIONS(2048), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2048), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2048), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2048), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2048), + [anon_sym___deprecated_msg] = ACTIONS(2048), + [anon_sym___deprecated_enum_msg] = ACTIONS(2048), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2048), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2048), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2048), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2048), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2048), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2048), + [anon_sym_ATimplementation] = ACTIONS(2050), + [anon_sym_NS_ENUM] = ACTIONS(2048), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2048), + [anon_sym_NS_OPTIONS] = ACTIONS(2048), + [anon_sym_typeof] = ACTIONS(2048), + [anon_sym___typeof] = ACTIONS(2048), + [anon_sym___typeof__] = ACTIONS(2048), + [sym_self] = ACTIONS(2048), + [sym_super] = ACTIONS(2048), + [sym_nil] = ACTIONS(2048), + [sym_id] = ACTIONS(2048), + [sym_instancetype] = ACTIONS(2048), + [sym_Class] = ACTIONS(2048), + [sym_SEL] = ACTIONS(2048), + [sym_IMP] = ACTIONS(2048), + [sym_BOOL] = ACTIONS(2048), + [sym_auto] = ACTIONS(2048), + [anon_sym_ATautoreleasepool] = ACTIONS(2050), + [anon_sym_ATsynchronized] = ACTIONS(2050), + [anon_sym_ATtry] = ACTIONS(2050), + [anon_sym_ATthrow] = ACTIONS(2050), + [anon_sym_ATselector] = ACTIONS(2050), + [anon_sym_ATencode] = ACTIONS(2050), + [anon_sym_AT] = ACTIONS(2048), + [sym_YES] = ACTIONS(2048), + [sym_NO] = ACTIONS(2048), + [anon_sym___builtin_available] = ACTIONS(2048), + [anon_sym_ATavailable] = ACTIONS(2050), + [anon_sym_va_arg] = ACTIONS(2048), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [728] = { + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2034), + [aux_sym_preproc_def_token1] = ACTIONS(2034), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_if_token2] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [aux_sym_preproc_else_token1] = ACTIONS(2032), + [aux_sym_preproc_elif_token1] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_auto] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_out] = ACTIONS(2032), + [anon_sym_inout] = ACTIONS(2032), + [anon_sym_bycopy] = ACTIONS(2032), + [anon_sym_byref] = ACTIONS(2032), + [anon_sym_oneway] = ACTIONS(2032), + [anon_sym__Nullable] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym__Nullable_result] = ACTIONS(2032), + [anon_sym__Null_unspecified] = ACTIONS(2032), + [anon_sym___autoreleasing] = ACTIONS(2032), + [anon_sym___nullable] = ACTIONS(2032), + [anon_sym___nonnull] = ACTIONS(2032), + [anon_sym___strong] = ACTIONS(2032), + [anon_sym___weak] = ACTIONS(2032), + [anon_sym___bridge] = ACTIONS(2032), + [anon_sym___bridge_transfer] = ACTIONS(2032), + [anon_sym___bridge_retained] = ACTIONS(2032), + [anon_sym___unsafe_unretained] = ACTIONS(2032), + [anon_sym___block] = ACTIONS(2032), + [anon_sym___kindof] = ACTIONS(2032), + [anon_sym___unused] = ACTIONS(2032), + [anon_sym__Complex] = ACTIONS(2032), + [anon_sym___complex] = ACTIONS(2032), + [anon_sym_IBOutlet] = ACTIONS(2032), + [anon_sym_IBInspectable] = ACTIONS(2032), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2032), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [sym_null] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2034), + [anon_sym_ATimport] = ACTIONS(2034), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2032), + [anon_sym_ATcompatibility_alias] = ACTIONS(2034), + [anon_sym_ATprotocol] = ACTIONS(2034), + [anon_sym_ATclass] = ACTIONS(2034), + [anon_sym_ATinterface] = ACTIONS(2034), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2032), + [sym_method_attribute_specifier] = ACTIONS(2032), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2032), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE] = ACTIONS(2032), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_API_AVAILABLE] = ACTIONS(2032), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_API_DEPRECATED] = ACTIONS(2032), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2032), + [anon_sym___deprecated_msg] = ACTIONS(2032), + [anon_sym___deprecated_enum_msg] = ACTIONS(2032), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2032), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2032), + [anon_sym_ATimplementation] = ACTIONS(2034), + [anon_sym_NS_ENUM] = ACTIONS(2032), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2032), + [anon_sym_NS_OPTIONS] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(2032), + [anon_sym___typeof] = ACTIONS(2032), + [anon_sym___typeof__] = ACTIONS(2032), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_nil] = ACTIONS(2032), + [sym_id] = ACTIONS(2032), + [sym_instancetype] = ACTIONS(2032), + [sym_Class] = ACTIONS(2032), + [sym_SEL] = ACTIONS(2032), + [sym_IMP] = ACTIONS(2032), + [sym_BOOL] = ACTIONS(2032), + [sym_auto] = ACTIONS(2032), + [anon_sym_ATautoreleasepool] = ACTIONS(2034), + [anon_sym_ATsynchronized] = ACTIONS(2034), + [anon_sym_ATtry] = ACTIONS(2034), + [anon_sym_ATthrow] = ACTIONS(2034), + [anon_sym_ATselector] = ACTIONS(2034), + [anon_sym_ATencode] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2032), + [sym_YES] = ACTIONS(2032), + [sym_NO] = ACTIONS(2032), + [anon_sym___builtin_available] = ACTIONS(2032), + [anon_sym_ATavailable] = ACTIONS(2034), + [anon_sym_va_arg] = ACTIONS(2032), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [729] = { + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2034), + [aux_sym_preproc_def_token1] = ACTIONS(2034), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_if_token2] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [aux_sym_preproc_else_token1] = ACTIONS(2032), + [aux_sym_preproc_elif_token1] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_auto] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_out] = ACTIONS(2032), + [anon_sym_inout] = ACTIONS(2032), + [anon_sym_bycopy] = ACTIONS(2032), + [anon_sym_byref] = ACTIONS(2032), + [anon_sym_oneway] = ACTIONS(2032), + [anon_sym__Nullable] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym__Nullable_result] = ACTIONS(2032), + [anon_sym__Null_unspecified] = ACTIONS(2032), + [anon_sym___autoreleasing] = ACTIONS(2032), + [anon_sym___nullable] = ACTIONS(2032), + [anon_sym___nonnull] = ACTIONS(2032), + [anon_sym___strong] = ACTIONS(2032), + [anon_sym___weak] = ACTIONS(2032), + [anon_sym___bridge] = ACTIONS(2032), + [anon_sym___bridge_transfer] = ACTIONS(2032), + [anon_sym___bridge_retained] = ACTIONS(2032), + [anon_sym___unsafe_unretained] = ACTIONS(2032), + [anon_sym___block] = ACTIONS(2032), + [anon_sym___kindof] = ACTIONS(2032), + [anon_sym___unused] = ACTIONS(2032), + [anon_sym__Complex] = ACTIONS(2032), + [anon_sym___complex] = ACTIONS(2032), + [anon_sym_IBOutlet] = ACTIONS(2032), + [anon_sym_IBInspectable] = ACTIONS(2032), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2032), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [sym_null] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2034), + [anon_sym_ATimport] = ACTIONS(2034), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2032), + [anon_sym_ATcompatibility_alias] = ACTIONS(2034), + [anon_sym_ATprotocol] = ACTIONS(2034), + [anon_sym_ATclass] = ACTIONS(2034), + [anon_sym_ATinterface] = ACTIONS(2034), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2032), + [sym_method_attribute_specifier] = ACTIONS(2032), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2032), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE] = ACTIONS(2032), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_API_AVAILABLE] = ACTIONS(2032), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_API_DEPRECATED] = ACTIONS(2032), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2032), + [anon_sym___deprecated_msg] = ACTIONS(2032), + [anon_sym___deprecated_enum_msg] = ACTIONS(2032), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2032), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2032), + [anon_sym_ATimplementation] = ACTIONS(2034), + [anon_sym_NS_ENUM] = ACTIONS(2032), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2032), + [anon_sym_NS_OPTIONS] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(2032), + [anon_sym___typeof] = ACTIONS(2032), + [anon_sym___typeof__] = ACTIONS(2032), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_nil] = ACTIONS(2032), + [sym_id] = ACTIONS(2032), + [sym_instancetype] = ACTIONS(2032), + [sym_Class] = ACTIONS(2032), + [sym_SEL] = ACTIONS(2032), + [sym_IMP] = ACTIONS(2032), + [sym_BOOL] = ACTIONS(2032), + [sym_auto] = ACTIONS(2032), + [anon_sym_ATautoreleasepool] = ACTIONS(2034), + [anon_sym_ATsynchronized] = ACTIONS(2034), + [anon_sym_ATtry] = ACTIONS(2034), + [anon_sym_ATthrow] = ACTIONS(2034), + [anon_sym_ATselector] = ACTIONS(2034), + [anon_sym_ATencode] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2032), + [sym_YES] = ACTIONS(2032), + [sym_NO] = ACTIONS(2032), + [anon_sym___builtin_available] = ACTIONS(2032), + [anon_sym_ATavailable] = ACTIONS(2034), + [anon_sym_va_arg] = ACTIONS(2032), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [730] = { + [sym_identifier] = ACTIONS(2052), + [aux_sym_preproc_include_token1] = ACTIONS(2054), + [aux_sym_preproc_def_token1] = ACTIONS(2054), + [aux_sym_preproc_if_token1] = ACTIONS(2052), + [aux_sym_preproc_if_token2] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2052), + [aux_sym_preproc_else_token1] = ACTIONS(2052), + [aux_sym_preproc_elif_token1] = ACTIONS(2052), + [anon_sym_LPAREN2] = ACTIONS(2054), + [anon_sym_BANG] = ACTIONS(2054), + [anon_sym_TILDE] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2052), + [anon_sym_PLUS] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_CARET] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_typedef] = ACTIONS(2052), + [anon_sym_extern] = ACTIONS(2052), + [anon_sym___attribute] = ACTIONS(2052), + [anon_sym___attribute__] = ACTIONS(2052), + [anon_sym___declspec] = ACTIONS(2052), + [anon_sym___cdecl] = ACTIONS(2052), + [anon_sym___clrcall] = ACTIONS(2052), + [anon_sym___stdcall] = ACTIONS(2052), + [anon_sym___fastcall] = ACTIONS(2052), + [anon_sym___thiscall] = ACTIONS(2052), + [anon_sym___vectorcall] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_auto] = ACTIONS(2052), + [anon_sym_register] = ACTIONS(2052), + [anon_sym_inline] = ACTIONS(2052), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_volatile] = ACTIONS(2052), + [anon_sym_restrict] = ACTIONS(2052), + [anon_sym__Atomic] = ACTIONS(2052), + [anon_sym_in] = ACTIONS(2052), + [anon_sym_out] = ACTIONS(2052), + [anon_sym_inout] = ACTIONS(2052), + [anon_sym_bycopy] = ACTIONS(2052), + [anon_sym_byref] = ACTIONS(2052), + [anon_sym_oneway] = ACTIONS(2052), + [anon_sym__Nullable] = ACTIONS(2052), + [anon_sym__Nonnull] = ACTIONS(2052), + [anon_sym__Nullable_result] = ACTIONS(2052), + [anon_sym__Null_unspecified] = ACTIONS(2052), + [anon_sym___autoreleasing] = ACTIONS(2052), + [anon_sym___nullable] = ACTIONS(2052), + [anon_sym___nonnull] = ACTIONS(2052), + [anon_sym___strong] = ACTIONS(2052), + [anon_sym___weak] = ACTIONS(2052), + [anon_sym___bridge] = ACTIONS(2052), + [anon_sym___bridge_transfer] = ACTIONS(2052), + [anon_sym___bridge_retained] = ACTIONS(2052), + [anon_sym___unsafe_unretained] = ACTIONS(2052), + [anon_sym___block] = ACTIONS(2052), + [anon_sym___kindof] = ACTIONS(2052), + [anon_sym___unused] = ACTIONS(2052), + [anon_sym__Complex] = ACTIONS(2052), + [anon_sym___complex] = ACTIONS(2052), + [anon_sym_IBOutlet] = ACTIONS(2052), + [anon_sym_IBInspectable] = ACTIONS(2052), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2052), + [anon_sym_signed] = ACTIONS(2052), + [anon_sym_unsigned] = ACTIONS(2052), + [anon_sym_long] = ACTIONS(2052), + [anon_sym_short] = ACTIONS(2052), + [sym_primitive_type] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_switch] = ACTIONS(2052), + [anon_sym_case] = ACTIONS(2052), + [anon_sym_default] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [anon_sym_do] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_goto] = ACTIONS(2052), + [anon_sym_DASH_DASH] = ACTIONS(2054), + [anon_sym_PLUS_PLUS] = ACTIONS(2054), + [anon_sym_sizeof] = ACTIONS(2052), + [sym_number_literal] = ACTIONS(2054), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2054), + [anon_sym_u_DQUOTE] = ACTIONS(2054), + [anon_sym_U_DQUOTE] = ACTIONS(2054), + [anon_sym_u8_DQUOTE] = ACTIONS(2054), + [anon_sym_DQUOTE] = ACTIONS(2054), + [sym_true] = ACTIONS(2052), + [sym_false] = ACTIONS(2052), + [sym_null] = ACTIONS(2052), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2054), + [anon_sym_ATimport] = ACTIONS(2054), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2052), + [anon_sym_ATcompatibility_alias] = ACTIONS(2054), + [anon_sym_ATprotocol] = ACTIONS(2054), + [anon_sym_ATclass] = ACTIONS(2054), + [anon_sym_ATinterface] = ACTIONS(2054), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2052), + [sym_method_attribute_specifier] = ACTIONS(2052), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2052), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2052), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2052), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2052), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2052), + [anon_sym_NS_AVAILABLE] = ACTIONS(2052), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2052), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_API_AVAILABLE] = ACTIONS(2052), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_API_DEPRECATED] = ACTIONS(2052), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2052), + [anon_sym___deprecated_msg] = ACTIONS(2052), + [anon_sym___deprecated_enum_msg] = ACTIONS(2052), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2052), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2052), + [anon_sym_ATimplementation] = ACTIONS(2054), + [anon_sym_NS_ENUM] = ACTIONS(2052), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2052), + [anon_sym_NS_OPTIONS] = ACTIONS(2052), + [anon_sym_typeof] = ACTIONS(2052), + [anon_sym___typeof] = ACTIONS(2052), + [anon_sym___typeof__] = ACTIONS(2052), + [sym_self] = ACTIONS(2052), + [sym_super] = ACTIONS(2052), + [sym_nil] = ACTIONS(2052), + [sym_id] = ACTIONS(2052), + [sym_instancetype] = ACTIONS(2052), + [sym_Class] = ACTIONS(2052), + [sym_SEL] = ACTIONS(2052), + [sym_IMP] = ACTIONS(2052), + [sym_BOOL] = ACTIONS(2052), + [sym_auto] = ACTIONS(2052), + [anon_sym_ATautoreleasepool] = ACTIONS(2054), + [anon_sym_ATsynchronized] = ACTIONS(2054), + [anon_sym_ATtry] = ACTIONS(2054), + [anon_sym_ATthrow] = ACTIONS(2054), + [anon_sym_ATselector] = ACTIONS(2054), + [anon_sym_ATencode] = ACTIONS(2054), + [anon_sym_AT] = ACTIONS(2052), + [sym_YES] = ACTIONS(2052), + [sym_NO] = ACTIONS(2052), + [anon_sym___builtin_available] = ACTIONS(2052), + [anon_sym_ATavailable] = ACTIONS(2054), + [anon_sym_va_arg] = ACTIONS(2052), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [731] = { + [sym_identifier] = ACTIONS(2052), + [aux_sym_preproc_include_token1] = ACTIONS(2054), + [aux_sym_preproc_def_token1] = ACTIONS(2054), + [aux_sym_preproc_if_token1] = ACTIONS(2052), + [aux_sym_preproc_if_token2] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2052), + [aux_sym_preproc_else_token1] = ACTIONS(2052), + [aux_sym_preproc_elif_token1] = ACTIONS(2052), + [anon_sym_LPAREN2] = ACTIONS(2054), + [anon_sym_BANG] = ACTIONS(2054), + [anon_sym_TILDE] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2052), + [anon_sym_PLUS] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_CARET] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_typedef] = ACTIONS(2052), + [anon_sym_extern] = ACTIONS(2052), + [anon_sym___attribute] = ACTIONS(2052), + [anon_sym___attribute__] = ACTIONS(2052), + [anon_sym___declspec] = ACTIONS(2052), + [anon_sym___cdecl] = ACTIONS(2052), + [anon_sym___clrcall] = ACTIONS(2052), + [anon_sym___stdcall] = ACTIONS(2052), + [anon_sym___fastcall] = ACTIONS(2052), + [anon_sym___thiscall] = ACTIONS(2052), + [anon_sym___vectorcall] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_auto] = ACTIONS(2052), + [anon_sym_register] = ACTIONS(2052), + [anon_sym_inline] = ACTIONS(2052), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_volatile] = ACTIONS(2052), + [anon_sym_restrict] = ACTIONS(2052), + [anon_sym__Atomic] = ACTIONS(2052), + [anon_sym_in] = ACTIONS(2052), + [anon_sym_out] = ACTIONS(2052), + [anon_sym_inout] = ACTIONS(2052), + [anon_sym_bycopy] = ACTIONS(2052), + [anon_sym_byref] = ACTIONS(2052), + [anon_sym_oneway] = ACTIONS(2052), + [anon_sym__Nullable] = ACTIONS(2052), + [anon_sym__Nonnull] = ACTIONS(2052), + [anon_sym__Nullable_result] = ACTIONS(2052), + [anon_sym__Null_unspecified] = ACTIONS(2052), + [anon_sym___autoreleasing] = ACTIONS(2052), + [anon_sym___nullable] = ACTIONS(2052), + [anon_sym___nonnull] = ACTIONS(2052), + [anon_sym___strong] = ACTIONS(2052), + [anon_sym___weak] = ACTIONS(2052), + [anon_sym___bridge] = ACTIONS(2052), + [anon_sym___bridge_transfer] = ACTIONS(2052), + [anon_sym___bridge_retained] = ACTIONS(2052), + [anon_sym___unsafe_unretained] = ACTIONS(2052), + [anon_sym___block] = ACTIONS(2052), + [anon_sym___kindof] = ACTIONS(2052), + [anon_sym___unused] = ACTIONS(2052), + [anon_sym__Complex] = ACTIONS(2052), + [anon_sym___complex] = ACTIONS(2052), + [anon_sym_IBOutlet] = ACTIONS(2052), + [anon_sym_IBInspectable] = ACTIONS(2052), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2052), + [anon_sym_signed] = ACTIONS(2052), + [anon_sym_unsigned] = ACTIONS(2052), + [anon_sym_long] = ACTIONS(2052), + [anon_sym_short] = ACTIONS(2052), + [sym_primitive_type] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_switch] = ACTIONS(2052), + [anon_sym_case] = ACTIONS(2052), + [anon_sym_default] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [anon_sym_do] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_goto] = ACTIONS(2052), + [anon_sym_DASH_DASH] = ACTIONS(2054), + [anon_sym_PLUS_PLUS] = ACTIONS(2054), + [anon_sym_sizeof] = ACTIONS(2052), + [sym_number_literal] = ACTIONS(2054), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2054), + [anon_sym_u_DQUOTE] = ACTIONS(2054), + [anon_sym_U_DQUOTE] = ACTIONS(2054), + [anon_sym_u8_DQUOTE] = ACTIONS(2054), + [anon_sym_DQUOTE] = ACTIONS(2054), + [sym_true] = ACTIONS(2052), + [sym_false] = ACTIONS(2052), + [sym_null] = ACTIONS(2052), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2054), + [anon_sym_ATimport] = ACTIONS(2054), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2052), + [anon_sym_ATcompatibility_alias] = ACTIONS(2054), + [anon_sym_ATprotocol] = ACTIONS(2054), + [anon_sym_ATclass] = ACTIONS(2054), + [anon_sym_ATinterface] = ACTIONS(2054), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2052), + [sym_method_attribute_specifier] = ACTIONS(2052), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2052), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2052), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2052), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2052), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2052), + [anon_sym_NS_AVAILABLE] = ACTIONS(2052), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2052), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_API_AVAILABLE] = ACTIONS(2052), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_API_DEPRECATED] = ACTIONS(2052), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2052), + [anon_sym___deprecated_msg] = ACTIONS(2052), + [anon_sym___deprecated_enum_msg] = ACTIONS(2052), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2052), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2052), + [anon_sym_ATimplementation] = ACTIONS(2054), + [anon_sym_NS_ENUM] = ACTIONS(2052), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2052), + [anon_sym_NS_OPTIONS] = ACTIONS(2052), + [anon_sym_typeof] = ACTIONS(2052), + [anon_sym___typeof] = ACTIONS(2052), + [anon_sym___typeof__] = ACTIONS(2052), + [sym_self] = ACTIONS(2052), + [sym_super] = ACTIONS(2052), + [sym_nil] = ACTIONS(2052), + [sym_id] = ACTIONS(2052), + [sym_instancetype] = ACTIONS(2052), + [sym_Class] = ACTIONS(2052), + [sym_SEL] = ACTIONS(2052), + [sym_IMP] = ACTIONS(2052), + [sym_BOOL] = ACTIONS(2052), + [sym_auto] = ACTIONS(2052), + [anon_sym_ATautoreleasepool] = ACTIONS(2054), + [anon_sym_ATsynchronized] = ACTIONS(2054), + [anon_sym_ATtry] = ACTIONS(2054), + [anon_sym_ATthrow] = ACTIONS(2054), + [anon_sym_ATselector] = ACTIONS(2054), + [anon_sym_ATencode] = ACTIONS(2054), + [anon_sym_AT] = ACTIONS(2052), + [sym_YES] = ACTIONS(2052), + [sym_NO] = ACTIONS(2052), + [anon_sym___builtin_available] = ACTIONS(2052), + [anon_sym_ATavailable] = ACTIONS(2054), + [anon_sym_va_arg] = ACTIONS(2052), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [732] = { + [sym_identifier] = ACTIONS(2052), + [aux_sym_preproc_include_token1] = ACTIONS(2054), + [aux_sym_preproc_def_token1] = ACTIONS(2054), + [aux_sym_preproc_if_token1] = ACTIONS(2052), + [aux_sym_preproc_if_token2] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2052), + [aux_sym_preproc_else_token1] = ACTIONS(2052), + [aux_sym_preproc_elif_token1] = ACTIONS(2052), + [anon_sym_LPAREN2] = ACTIONS(2054), + [anon_sym_BANG] = ACTIONS(2054), + [anon_sym_TILDE] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2052), + [anon_sym_PLUS] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_CARET] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_typedef] = ACTIONS(2052), + [anon_sym_extern] = ACTIONS(2052), + [anon_sym___attribute] = ACTIONS(2052), + [anon_sym___attribute__] = ACTIONS(2052), + [anon_sym___declspec] = ACTIONS(2052), + [anon_sym___cdecl] = ACTIONS(2052), + [anon_sym___clrcall] = ACTIONS(2052), + [anon_sym___stdcall] = ACTIONS(2052), + [anon_sym___fastcall] = ACTIONS(2052), + [anon_sym___thiscall] = ACTIONS(2052), + [anon_sym___vectorcall] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_auto] = ACTIONS(2052), + [anon_sym_register] = ACTIONS(2052), + [anon_sym_inline] = ACTIONS(2052), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_volatile] = ACTIONS(2052), + [anon_sym_restrict] = ACTIONS(2052), + [anon_sym__Atomic] = ACTIONS(2052), + [anon_sym_in] = ACTIONS(2052), + [anon_sym_out] = ACTIONS(2052), + [anon_sym_inout] = ACTIONS(2052), + [anon_sym_bycopy] = ACTIONS(2052), + [anon_sym_byref] = ACTIONS(2052), + [anon_sym_oneway] = ACTIONS(2052), + [anon_sym__Nullable] = ACTIONS(2052), + [anon_sym__Nonnull] = ACTIONS(2052), + [anon_sym__Nullable_result] = ACTIONS(2052), + [anon_sym__Null_unspecified] = ACTIONS(2052), + [anon_sym___autoreleasing] = ACTIONS(2052), + [anon_sym___nullable] = ACTIONS(2052), + [anon_sym___nonnull] = ACTIONS(2052), + [anon_sym___strong] = ACTIONS(2052), + [anon_sym___weak] = ACTIONS(2052), + [anon_sym___bridge] = ACTIONS(2052), + [anon_sym___bridge_transfer] = ACTIONS(2052), + [anon_sym___bridge_retained] = ACTIONS(2052), + [anon_sym___unsafe_unretained] = ACTIONS(2052), + [anon_sym___block] = ACTIONS(2052), + [anon_sym___kindof] = ACTIONS(2052), + [anon_sym___unused] = ACTIONS(2052), + [anon_sym__Complex] = ACTIONS(2052), + [anon_sym___complex] = ACTIONS(2052), + [anon_sym_IBOutlet] = ACTIONS(2052), + [anon_sym_IBInspectable] = ACTIONS(2052), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2052), + [anon_sym_signed] = ACTIONS(2052), + [anon_sym_unsigned] = ACTIONS(2052), + [anon_sym_long] = ACTIONS(2052), + [anon_sym_short] = ACTIONS(2052), + [sym_primitive_type] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_switch] = ACTIONS(2052), + [anon_sym_case] = ACTIONS(2052), + [anon_sym_default] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [anon_sym_do] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_goto] = ACTIONS(2052), + [anon_sym_DASH_DASH] = ACTIONS(2054), + [anon_sym_PLUS_PLUS] = ACTIONS(2054), + [anon_sym_sizeof] = ACTIONS(2052), + [sym_number_literal] = ACTIONS(2054), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2054), + [anon_sym_u_DQUOTE] = ACTIONS(2054), + [anon_sym_U_DQUOTE] = ACTIONS(2054), + [anon_sym_u8_DQUOTE] = ACTIONS(2054), + [anon_sym_DQUOTE] = ACTIONS(2054), + [sym_true] = ACTIONS(2052), + [sym_false] = ACTIONS(2052), + [sym_null] = ACTIONS(2052), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2054), + [anon_sym_ATimport] = ACTIONS(2054), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2052), + [anon_sym_ATcompatibility_alias] = ACTIONS(2054), + [anon_sym_ATprotocol] = ACTIONS(2054), + [anon_sym_ATclass] = ACTIONS(2054), + [anon_sym_ATinterface] = ACTIONS(2054), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2052), + [sym_method_attribute_specifier] = ACTIONS(2052), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2052), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2052), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2052), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2052), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2052), + [anon_sym_NS_AVAILABLE] = ACTIONS(2052), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2052), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_API_AVAILABLE] = ACTIONS(2052), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_API_DEPRECATED] = ACTIONS(2052), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2052), + [anon_sym___deprecated_msg] = ACTIONS(2052), + [anon_sym___deprecated_enum_msg] = ACTIONS(2052), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2052), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2052), + [anon_sym_ATimplementation] = ACTIONS(2054), + [anon_sym_NS_ENUM] = ACTIONS(2052), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2052), + [anon_sym_NS_OPTIONS] = ACTIONS(2052), + [anon_sym_typeof] = ACTIONS(2052), + [anon_sym___typeof] = ACTIONS(2052), + [anon_sym___typeof__] = ACTIONS(2052), + [sym_self] = ACTIONS(2052), + [sym_super] = ACTIONS(2052), + [sym_nil] = ACTIONS(2052), + [sym_id] = ACTIONS(2052), + [sym_instancetype] = ACTIONS(2052), + [sym_Class] = ACTIONS(2052), + [sym_SEL] = ACTIONS(2052), + [sym_IMP] = ACTIONS(2052), + [sym_BOOL] = ACTIONS(2052), + [sym_auto] = ACTIONS(2052), + [anon_sym_ATautoreleasepool] = ACTIONS(2054), + [anon_sym_ATsynchronized] = ACTIONS(2054), + [anon_sym_ATtry] = ACTIONS(2054), + [anon_sym_ATthrow] = ACTIONS(2054), + [anon_sym_ATselector] = ACTIONS(2054), + [anon_sym_ATencode] = ACTIONS(2054), + [anon_sym_AT] = ACTIONS(2052), + [sym_YES] = ACTIONS(2052), + [sym_NO] = ACTIONS(2052), + [anon_sym___builtin_available] = ACTIONS(2052), + [anon_sym_ATavailable] = ACTIONS(2054), + [anon_sym_va_arg] = ACTIONS(2052), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [733] = { + [sym_identifier] = ACTIONS(2056), + [aux_sym_preproc_include_token1] = ACTIONS(2058), + [aux_sym_preproc_def_token1] = ACTIONS(2058), + [aux_sym_preproc_if_token1] = ACTIONS(2056), + [aux_sym_preproc_if_token2] = ACTIONS(2056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2056), + [aux_sym_preproc_else_token1] = ACTIONS(2056), + [aux_sym_preproc_elif_token1] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2058), + [anon_sym_TILDE] = ACTIONS(2058), + [anon_sym_DASH] = ACTIONS(2056), + [anon_sym_PLUS] = ACTIONS(2056), + [anon_sym_STAR] = ACTIONS(2058), + [anon_sym_CARET] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2058), + [anon_sym_typedef] = ACTIONS(2056), + [anon_sym_extern] = ACTIONS(2056), + [anon_sym___attribute] = ACTIONS(2056), + [anon_sym___attribute__] = ACTIONS(2056), + [anon_sym___declspec] = ACTIONS(2056), + [anon_sym___cdecl] = ACTIONS(2056), + [anon_sym___clrcall] = ACTIONS(2056), + [anon_sym___stdcall] = ACTIONS(2056), + [anon_sym___fastcall] = ACTIONS(2056), + [anon_sym___thiscall] = ACTIONS(2056), + [anon_sym___vectorcall] = ACTIONS(2056), + [anon_sym_LBRACE] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(2058), + [anon_sym_static] = ACTIONS(2056), + [anon_sym_auto] = ACTIONS(2056), + [anon_sym_register] = ACTIONS(2056), + [anon_sym_inline] = ACTIONS(2056), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2056), + [anon_sym_const] = ACTIONS(2056), + [anon_sym_volatile] = ACTIONS(2056), + [anon_sym_restrict] = ACTIONS(2056), + [anon_sym__Atomic] = ACTIONS(2056), + [anon_sym_in] = ACTIONS(2056), + [anon_sym_out] = ACTIONS(2056), + [anon_sym_inout] = ACTIONS(2056), + [anon_sym_bycopy] = ACTIONS(2056), + [anon_sym_byref] = ACTIONS(2056), + [anon_sym_oneway] = ACTIONS(2056), + [anon_sym__Nullable] = ACTIONS(2056), + [anon_sym__Nonnull] = ACTIONS(2056), + [anon_sym__Nullable_result] = ACTIONS(2056), + [anon_sym__Null_unspecified] = ACTIONS(2056), + [anon_sym___autoreleasing] = ACTIONS(2056), + [anon_sym___nullable] = ACTIONS(2056), + [anon_sym___nonnull] = ACTIONS(2056), + [anon_sym___strong] = ACTIONS(2056), + [anon_sym___weak] = ACTIONS(2056), + [anon_sym___bridge] = ACTIONS(2056), + [anon_sym___bridge_transfer] = ACTIONS(2056), + [anon_sym___bridge_retained] = ACTIONS(2056), + [anon_sym___unsafe_unretained] = ACTIONS(2056), + [anon_sym___block] = ACTIONS(2056), + [anon_sym___kindof] = ACTIONS(2056), + [anon_sym___unused] = ACTIONS(2056), + [anon_sym__Complex] = ACTIONS(2056), + [anon_sym___complex] = ACTIONS(2056), + [anon_sym_IBOutlet] = ACTIONS(2056), + [anon_sym_IBInspectable] = ACTIONS(2056), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2056), + [anon_sym_signed] = ACTIONS(2056), + [anon_sym_unsigned] = ACTIONS(2056), + [anon_sym_long] = ACTIONS(2056), + [anon_sym_short] = ACTIONS(2056), + [sym_primitive_type] = ACTIONS(2056), + [anon_sym_enum] = ACTIONS(2056), + [anon_sym_struct] = ACTIONS(2056), + [anon_sym_union] = ACTIONS(2056), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_switch] = ACTIONS(2056), + [anon_sym_case] = ACTIONS(2056), + [anon_sym_default] = ACTIONS(2056), + [anon_sym_while] = ACTIONS(2056), + [anon_sym_do] = ACTIONS(2056), + [anon_sym_for] = ACTIONS(2056), + [anon_sym_return] = ACTIONS(2056), + [anon_sym_break] = ACTIONS(2056), + [anon_sym_continue] = ACTIONS(2056), + [anon_sym_goto] = ACTIONS(2056), + [anon_sym_DASH_DASH] = ACTIONS(2058), + [anon_sym_PLUS_PLUS] = ACTIONS(2058), + [anon_sym_sizeof] = ACTIONS(2056), + [sym_number_literal] = ACTIONS(2058), + [anon_sym_L_SQUOTE] = ACTIONS(2058), + [anon_sym_u_SQUOTE] = ACTIONS(2058), + [anon_sym_U_SQUOTE] = ACTIONS(2058), + [anon_sym_u8_SQUOTE] = ACTIONS(2058), + [anon_sym_SQUOTE] = ACTIONS(2058), + [anon_sym_L_DQUOTE] = ACTIONS(2058), + [anon_sym_u_DQUOTE] = ACTIONS(2058), + [anon_sym_U_DQUOTE] = ACTIONS(2058), + [anon_sym_u8_DQUOTE] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(2058), + [sym_true] = ACTIONS(2056), + [sym_false] = ACTIONS(2056), + [sym_null] = ACTIONS(2056), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2058), + [anon_sym_ATimport] = ACTIONS(2058), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2056), + [anon_sym_ATcompatibility_alias] = ACTIONS(2058), + [anon_sym_ATprotocol] = ACTIONS(2058), + [anon_sym_ATclass] = ACTIONS(2058), + [anon_sym_ATinterface] = ACTIONS(2058), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2056), + [sym_method_attribute_specifier] = ACTIONS(2056), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2056), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2056), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2056), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2056), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2056), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2056), + [anon_sym_NS_AVAILABLE] = ACTIONS(2056), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2056), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2056), + [anon_sym_API_AVAILABLE] = ACTIONS(2056), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2056), + [anon_sym_API_DEPRECATED] = ACTIONS(2056), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2056), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2056), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2056), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2056), + [anon_sym___deprecated_msg] = ACTIONS(2056), + [anon_sym___deprecated_enum_msg] = ACTIONS(2056), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2056), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2056), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2056), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2056), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2056), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2056), + [anon_sym_ATimplementation] = ACTIONS(2058), + [anon_sym_NS_ENUM] = ACTIONS(2056), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2056), + [anon_sym_NS_OPTIONS] = ACTIONS(2056), + [anon_sym_typeof] = ACTIONS(2056), + [anon_sym___typeof] = ACTIONS(2056), + [anon_sym___typeof__] = ACTIONS(2056), + [sym_self] = ACTIONS(2056), + [sym_super] = ACTIONS(2056), + [sym_nil] = ACTIONS(2056), + [sym_id] = ACTIONS(2056), + [sym_instancetype] = ACTIONS(2056), + [sym_Class] = ACTIONS(2056), + [sym_SEL] = ACTIONS(2056), + [sym_IMP] = ACTIONS(2056), + [sym_BOOL] = ACTIONS(2056), + [sym_auto] = ACTIONS(2056), + [anon_sym_ATautoreleasepool] = ACTIONS(2058), + [anon_sym_ATsynchronized] = ACTIONS(2058), + [anon_sym_ATtry] = ACTIONS(2058), + [anon_sym_ATthrow] = ACTIONS(2058), + [anon_sym_ATselector] = ACTIONS(2058), + [anon_sym_ATencode] = ACTIONS(2058), + [anon_sym_AT] = ACTIONS(2056), + [sym_YES] = ACTIONS(2056), + [sym_NO] = ACTIONS(2056), + [anon_sym___builtin_available] = ACTIONS(2056), + [anon_sym_ATavailable] = ACTIONS(2058), + [anon_sym_va_arg] = ACTIONS(2056), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [734] = { + [sym_identifier] = ACTIONS(2060), + [aux_sym_preproc_include_token1] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2062), + [aux_sym_preproc_if_token1] = ACTIONS(2060), + [aux_sym_preproc_if_token2] = ACTIONS(2060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2060), + [aux_sym_preproc_else_token1] = ACTIONS(2060), + [aux_sym_preproc_elif_token1] = ACTIONS(2060), + [anon_sym_LPAREN2] = ACTIONS(2062), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_typedef] = ACTIONS(2060), + [anon_sym_extern] = ACTIONS(2060), + [anon_sym___attribute] = ACTIONS(2060), + [anon_sym___attribute__] = ACTIONS(2060), + [anon_sym___declspec] = ACTIONS(2060), + [anon_sym___cdecl] = ACTIONS(2060), + [anon_sym___clrcall] = ACTIONS(2060), + [anon_sym___stdcall] = ACTIONS(2060), + [anon_sym___fastcall] = ACTIONS(2060), + [anon_sym___thiscall] = ACTIONS(2060), + [anon_sym___vectorcall] = ACTIONS(2060), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2062), + [anon_sym_static] = ACTIONS(2060), + [anon_sym_auto] = ACTIONS(2060), + [anon_sym_register] = ACTIONS(2060), + [anon_sym_inline] = ACTIONS(2060), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2060), + [anon_sym_const] = ACTIONS(2060), + [anon_sym_volatile] = ACTIONS(2060), + [anon_sym_restrict] = ACTIONS(2060), + [anon_sym__Atomic] = ACTIONS(2060), + [anon_sym_in] = ACTIONS(2060), + [anon_sym_out] = ACTIONS(2060), + [anon_sym_inout] = ACTIONS(2060), + [anon_sym_bycopy] = ACTIONS(2060), + [anon_sym_byref] = ACTIONS(2060), + [anon_sym_oneway] = ACTIONS(2060), + [anon_sym__Nullable] = ACTIONS(2060), + [anon_sym__Nonnull] = ACTIONS(2060), + [anon_sym__Nullable_result] = ACTIONS(2060), + [anon_sym__Null_unspecified] = ACTIONS(2060), + [anon_sym___autoreleasing] = ACTIONS(2060), + [anon_sym___nullable] = ACTIONS(2060), + [anon_sym___nonnull] = ACTIONS(2060), + [anon_sym___strong] = ACTIONS(2060), + [anon_sym___weak] = ACTIONS(2060), + [anon_sym___bridge] = ACTIONS(2060), + [anon_sym___bridge_transfer] = ACTIONS(2060), + [anon_sym___bridge_retained] = ACTIONS(2060), + [anon_sym___unsafe_unretained] = ACTIONS(2060), + [anon_sym___block] = ACTIONS(2060), + [anon_sym___kindof] = ACTIONS(2060), + [anon_sym___unused] = ACTIONS(2060), + [anon_sym__Complex] = ACTIONS(2060), + [anon_sym___complex] = ACTIONS(2060), + [anon_sym_IBOutlet] = ACTIONS(2060), + [anon_sym_IBInspectable] = ACTIONS(2060), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2060), + [anon_sym_signed] = ACTIONS(2060), + [anon_sym_unsigned] = ACTIONS(2060), + [anon_sym_long] = ACTIONS(2060), + [anon_sym_short] = ACTIONS(2060), + [sym_primitive_type] = ACTIONS(2060), + [anon_sym_enum] = ACTIONS(2060), + [anon_sym_struct] = ACTIONS(2060), + [anon_sym_union] = ACTIONS(2060), + [anon_sym_if] = ACTIONS(2060), + [anon_sym_switch] = ACTIONS(2060), + [anon_sym_case] = ACTIONS(2060), + [anon_sym_default] = ACTIONS(2060), + [anon_sym_while] = ACTIONS(2060), + [anon_sym_do] = ACTIONS(2060), + [anon_sym_for] = ACTIONS(2060), + [anon_sym_return] = ACTIONS(2060), + [anon_sym_break] = ACTIONS(2060), + [anon_sym_continue] = ACTIONS(2060), + [anon_sym_goto] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2062), + [anon_sym_PLUS_PLUS] = ACTIONS(2062), + [anon_sym_sizeof] = ACTIONS(2060), + [sym_number_literal] = ACTIONS(2062), + [anon_sym_L_SQUOTE] = ACTIONS(2062), + [anon_sym_u_SQUOTE] = ACTIONS(2062), + [anon_sym_U_SQUOTE] = ACTIONS(2062), + [anon_sym_u8_SQUOTE] = ACTIONS(2062), + [anon_sym_SQUOTE] = ACTIONS(2062), + [anon_sym_L_DQUOTE] = ACTIONS(2062), + [anon_sym_u_DQUOTE] = ACTIONS(2062), + [anon_sym_U_DQUOTE] = ACTIONS(2062), + [anon_sym_u8_DQUOTE] = ACTIONS(2062), + [anon_sym_DQUOTE] = ACTIONS(2062), + [sym_true] = ACTIONS(2060), + [sym_false] = ACTIONS(2060), + [sym_null] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2062), + [anon_sym_ATimport] = ACTIONS(2062), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2060), + [anon_sym_ATcompatibility_alias] = ACTIONS(2062), + [anon_sym_ATprotocol] = ACTIONS(2062), + [anon_sym_ATclass] = ACTIONS(2062), + [anon_sym_ATinterface] = ACTIONS(2062), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2060), + [sym_method_attribute_specifier] = ACTIONS(2060), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2060), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2060), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2060), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2060), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2060), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2060), + [anon_sym_NS_AVAILABLE] = ACTIONS(2060), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2060), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_API_AVAILABLE] = ACTIONS(2060), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2060), + [anon_sym_API_DEPRECATED] = ACTIONS(2060), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2060), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2060), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2060), + [anon_sym___deprecated_msg] = ACTIONS(2060), + [anon_sym___deprecated_enum_msg] = ACTIONS(2060), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2060), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2060), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2060), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2060), + [anon_sym_ATimplementation] = ACTIONS(2062), + [anon_sym_NS_ENUM] = ACTIONS(2060), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2060), + [anon_sym_NS_OPTIONS] = ACTIONS(2060), + [anon_sym_typeof] = ACTIONS(2060), + [anon_sym___typeof] = ACTIONS(2060), + [anon_sym___typeof__] = ACTIONS(2060), + [sym_self] = ACTIONS(2060), + [sym_super] = ACTIONS(2060), + [sym_nil] = ACTIONS(2060), + [sym_id] = ACTIONS(2060), + [sym_instancetype] = ACTIONS(2060), + [sym_Class] = ACTIONS(2060), + [sym_SEL] = ACTIONS(2060), + [sym_IMP] = ACTIONS(2060), + [sym_BOOL] = ACTIONS(2060), + [sym_auto] = ACTIONS(2060), + [anon_sym_ATautoreleasepool] = ACTIONS(2062), + [anon_sym_ATsynchronized] = ACTIONS(2062), + [anon_sym_ATtry] = ACTIONS(2062), + [anon_sym_ATthrow] = ACTIONS(2062), + [anon_sym_ATselector] = ACTIONS(2062), + [anon_sym_ATencode] = ACTIONS(2062), + [anon_sym_AT] = ACTIONS(2060), + [sym_YES] = ACTIONS(2060), + [sym_NO] = ACTIONS(2060), + [anon_sym___builtin_available] = ACTIONS(2060), + [anon_sym_ATavailable] = ACTIONS(2062), + [anon_sym_va_arg] = ACTIONS(2060), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [735] = { + [sym_identifier] = ACTIONS(2060), + [aux_sym_preproc_include_token1] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2062), + [aux_sym_preproc_if_token1] = ACTIONS(2060), + [aux_sym_preproc_if_token2] = ACTIONS(2060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2060), + [aux_sym_preproc_else_token1] = ACTIONS(2060), + [aux_sym_preproc_elif_token1] = ACTIONS(2060), + [anon_sym_LPAREN2] = ACTIONS(2062), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_typedef] = ACTIONS(2060), + [anon_sym_extern] = ACTIONS(2060), + [anon_sym___attribute] = ACTIONS(2060), + [anon_sym___attribute__] = ACTIONS(2060), + [anon_sym___declspec] = ACTIONS(2060), + [anon_sym___cdecl] = ACTIONS(2060), + [anon_sym___clrcall] = ACTIONS(2060), + [anon_sym___stdcall] = ACTIONS(2060), + [anon_sym___fastcall] = ACTIONS(2060), + [anon_sym___thiscall] = ACTIONS(2060), + [anon_sym___vectorcall] = ACTIONS(2060), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2062), + [anon_sym_static] = ACTIONS(2060), + [anon_sym_auto] = ACTIONS(2060), + [anon_sym_register] = ACTIONS(2060), + [anon_sym_inline] = ACTIONS(2060), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2060), + [anon_sym_const] = ACTIONS(2060), + [anon_sym_volatile] = ACTIONS(2060), + [anon_sym_restrict] = ACTIONS(2060), + [anon_sym__Atomic] = ACTIONS(2060), + [anon_sym_in] = ACTIONS(2060), + [anon_sym_out] = ACTIONS(2060), + [anon_sym_inout] = ACTIONS(2060), + [anon_sym_bycopy] = ACTIONS(2060), + [anon_sym_byref] = ACTIONS(2060), + [anon_sym_oneway] = ACTIONS(2060), + [anon_sym__Nullable] = ACTIONS(2060), + [anon_sym__Nonnull] = ACTIONS(2060), + [anon_sym__Nullable_result] = ACTIONS(2060), + [anon_sym__Null_unspecified] = ACTIONS(2060), + [anon_sym___autoreleasing] = ACTIONS(2060), + [anon_sym___nullable] = ACTIONS(2060), + [anon_sym___nonnull] = ACTIONS(2060), + [anon_sym___strong] = ACTIONS(2060), + [anon_sym___weak] = ACTIONS(2060), + [anon_sym___bridge] = ACTIONS(2060), + [anon_sym___bridge_transfer] = ACTIONS(2060), + [anon_sym___bridge_retained] = ACTIONS(2060), + [anon_sym___unsafe_unretained] = ACTIONS(2060), + [anon_sym___block] = ACTIONS(2060), + [anon_sym___kindof] = ACTIONS(2060), + [anon_sym___unused] = ACTIONS(2060), + [anon_sym__Complex] = ACTIONS(2060), + [anon_sym___complex] = ACTIONS(2060), + [anon_sym_IBOutlet] = ACTIONS(2060), + [anon_sym_IBInspectable] = ACTIONS(2060), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2060), + [anon_sym_signed] = ACTIONS(2060), + [anon_sym_unsigned] = ACTIONS(2060), + [anon_sym_long] = ACTIONS(2060), + [anon_sym_short] = ACTIONS(2060), + [sym_primitive_type] = ACTIONS(2060), + [anon_sym_enum] = ACTIONS(2060), + [anon_sym_struct] = ACTIONS(2060), + [anon_sym_union] = ACTIONS(2060), + [anon_sym_if] = ACTIONS(2060), + [anon_sym_switch] = ACTIONS(2060), + [anon_sym_case] = ACTIONS(2060), + [anon_sym_default] = ACTIONS(2060), + [anon_sym_while] = ACTIONS(2060), + [anon_sym_do] = ACTIONS(2060), + [anon_sym_for] = ACTIONS(2060), + [anon_sym_return] = ACTIONS(2060), + [anon_sym_break] = ACTIONS(2060), + [anon_sym_continue] = ACTIONS(2060), + [anon_sym_goto] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2062), + [anon_sym_PLUS_PLUS] = ACTIONS(2062), + [anon_sym_sizeof] = ACTIONS(2060), + [sym_number_literal] = ACTIONS(2062), + [anon_sym_L_SQUOTE] = ACTIONS(2062), + [anon_sym_u_SQUOTE] = ACTIONS(2062), + [anon_sym_U_SQUOTE] = ACTIONS(2062), + [anon_sym_u8_SQUOTE] = ACTIONS(2062), + [anon_sym_SQUOTE] = ACTIONS(2062), + [anon_sym_L_DQUOTE] = ACTIONS(2062), + [anon_sym_u_DQUOTE] = ACTIONS(2062), + [anon_sym_U_DQUOTE] = ACTIONS(2062), + [anon_sym_u8_DQUOTE] = ACTIONS(2062), + [anon_sym_DQUOTE] = ACTIONS(2062), + [sym_true] = ACTIONS(2060), + [sym_false] = ACTIONS(2060), + [sym_null] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2062), + [anon_sym_ATimport] = ACTIONS(2062), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2060), + [anon_sym_ATcompatibility_alias] = ACTIONS(2062), + [anon_sym_ATprotocol] = ACTIONS(2062), + [anon_sym_ATclass] = ACTIONS(2062), + [anon_sym_ATinterface] = ACTIONS(2062), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2060), + [sym_method_attribute_specifier] = ACTIONS(2060), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2060), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2060), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2060), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2060), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2060), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2060), + [anon_sym_NS_AVAILABLE] = ACTIONS(2060), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2060), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_API_AVAILABLE] = ACTIONS(2060), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2060), + [anon_sym_API_DEPRECATED] = ACTIONS(2060), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2060), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2060), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2060), + [anon_sym___deprecated_msg] = ACTIONS(2060), + [anon_sym___deprecated_enum_msg] = ACTIONS(2060), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2060), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2060), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2060), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2060), + [anon_sym_ATimplementation] = ACTIONS(2062), + [anon_sym_NS_ENUM] = ACTIONS(2060), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2060), + [anon_sym_NS_OPTIONS] = ACTIONS(2060), + [anon_sym_typeof] = ACTIONS(2060), + [anon_sym___typeof] = ACTIONS(2060), + [anon_sym___typeof__] = ACTIONS(2060), + [sym_self] = ACTIONS(2060), + [sym_super] = ACTIONS(2060), + [sym_nil] = ACTIONS(2060), + [sym_id] = ACTIONS(2060), + [sym_instancetype] = ACTIONS(2060), + [sym_Class] = ACTIONS(2060), + [sym_SEL] = ACTIONS(2060), + [sym_IMP] = ACTIONS(2060), + [sym_BOOL] = ACTIONS(2060), + [sym_auto] = ACTIONS(2060), + [anon_sym_ATautoreleasepool] = ACTIONS(2062), + [anon_sym_ATsynchronized] = ACTIONS(2062), + [anon_sym_ATtry] = ACTIONS(2062), + [anon_sym_ATthrow] = ACTIONS(2062), + [anon_sym_ATselector] = ACTIONS(2062), + [anon_sym_ATencode] = ACTIONS(2062), + [anon_sym_AT] = ACTIONS(2060), + [sym_YES] = ACTIONS(2060), + [sym_NO] = ACTIONS(2060), + [anon_sym___builtin_available] = ACTIONS(2060), + [anon_sym_ATavailable] = ACTIONS(2062), + [anon_sym_va_arg] = ACTIONS(2060), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [736] = { + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2030), + [aux_sym_preproc_def_token1] = ACTIONS(2030), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token2] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [aux_sym_preproc_else_token1] = ACTIONS(2028), + [aux_sym_preproc_elif_token1] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_auto] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_out] = ACTIONS(2028), + [anon_sym_inout] = ACTIONS(2028), + [anon_sym_bycopy] = ACTIONS(2028), + [anon_sym_byref] = ACTIONS(2028), + [anon_sym_oneway] = ACTIONS(2028), + [anon_sym__Nullable] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym__Nullable_result] = ACTIONS(2028), + [anon_sym__Null_unspecified] = ACTIONS(2028), + [anon_sym___autoreleasing] = ACTIONS(2028), + [anon_sym___nullable] = ACTIONS(2028), + [anon_sym___nonnull] = ACTIONS(2028), + [anon_sym___strong] = ACTIONS(2028), + [anon_sym___weak] = ACTIONS(2028), + [anon_sym___bridge] = ACTIONS(2028), + [anon_sym___bridge_transfer] = ACTIONS(2028), + [anon_sym___bridge_retained] = ACTIONS(2028), + [anon_sym___unsafe_unretained] = ACTIONS(2028), + [anon_sym___block] = ACTIONS(2028), + [anon_sym___kindof] = ACTIONS(2028), + [anon_sym___unused] = ACTIONS(2028), + [anon_sym__Complex] = ACTIONS(2028), + [anon_sym___complex] = ACTIONS(2028), + [anon_sym_IBOutlet] = ACTIONS(2028), + [anon_sym_IBInspectable] = ACTIONS(2028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2028), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2030), + [anon_sym_ATimport] = ACTIONS(2030), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2028), + [anon_sym_ATcompatibility_alias] = ACTIONS(2030), + [anon_sym_ATprotocol] = ACTIONS(2030), + [anon_sym_ATclass] = ACTIONS(2030), + [anon_sym_ATinterface] = ACTIONS(2030), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2028), + [sym_method_attribute_specifier] = ACTIONS(2028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE] = ACTIONS(2028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_API_AVAILABLE] = ACTIONS(2028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_API_DEPRECATED] = ACTIONS(2028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2028), + [anon_sym___deprecated_msg] = ACTIONS(2028), + [anon_sym___deprecated_enum_msg] = ACTIONS(2028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2028), + [anon_sym_ATimplementation] = ACTIONS(2030), + [anon_sym_NS_ENUM] = ACTIONS(2028), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2028), + [anon_sym_NS_OPTIONS] = ACTIONS(2028), + [anon_sym_typeof] = ACTIONS(2028), + [anon_sym___typeof] = ACTIONS(2028), + [anon_sym___typeof__] = ACTIONS(2028), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_nil] = ACTIONS(2028), + [sym_id] = ACTIONS(2028), + [sym_instancetype] = ACTIONS(2028), + [sym_Class] = ACTIONS(2028), + [sym_SEL] = ACTIONS(2028), + [sym_IMP] = ACTIONS(2028), + [sym_BOOL] = ACTIONS(2028), + [sym_auto] = ACTIONS(2028), + [anon_sym_ATautoreleasepool] = ACTIONS(2030), + [anon_sym_ATsynchronized] = ACTIONS(2030), + [anon_sym_ATtry] = ACTIONS(2030), + [anon_sym_ATthrow] = ACTIONS(2030), + [anon_sym_ATselector] = ACTIONS(2030), + [anon_sym_ATencode] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2028), + [sym_YES] = ACTIONS(2028), + [sym_NO] = ACTIONS(2028), + [anon_sym___builtin_available] = ACTIONS(2028), + [anon_sym_ATavailable] = ACTIONS(2030), + [anon_sym_va_arg] = ACTIONS(2028), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [737] = { + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2030), + [aux_sym_preproc_def_token1] = ACTIONS(2030), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token2] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [aux_sym_preproc_else_token1] = ACTIONS(2028), + [aux_sym_preproc_elif_token1] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_auto] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_out] = ACTIONS(2028), + [anon_sym_inout] = ACTIONS(2028), + [anon_sym_bycopy] = ACTIONS(2028), + [anon_sym_byref] = ACTIONS(2028), + [anon_sym_oneway] = ACTIONS(2028), + [anon_sym__Nullable] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym__Nullable_result] = ACTIONS(2028), + [anon_sym__Null_unspecified] = ACTIONS(2028), + [anon_sym___autoreleasing] = ACTIONS(2028), + [anon_sym___nullable] = ACTIONS(2028), + [anon_sym___nonnull] = ACTIONS(2028), + [anon_sym___strong] = ACTIONS(2028), + [anon_sym___weak] = ACTIONS(2028), + [anon_sym___bridge] = ACTIONS(2028), + [anon_sym___bridge_transfer] = ACTIONS(2028), + [anon_sym___bridge_retained] = ACTIONS(2028), + [anon_sym___unsafe_unretained] = ACTIONS(2028), + [anon_sym___block] = ACTIONS(2028), + [anon_sym___kindof] = ACTIONS(2028), + [anon_sym___unused] = ACTIONS(2028), + [anon_sym__Complex] = ACTIONS(2028), + [anon_sym___complex] = ACTIONS(2028), + [anon_sym_IBOutlet] = ACTIONS(2028), + [anon_sym_IBInspectable] = ACTIONS(2028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2028), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2030), + [anon_sym_ATimport] = ACTIONS(2030), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2028), + [anon_sym_ATcompatibility_alias] = ACTIONS(2030), + [anon_sym_ATprotocol] = ACTIONS(2030), + [anon_sym_ATclass] = ACTIONS(2030), + [anon_sym_ATinterface] = ACTIONS(2030), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2028), + [sym_method_attribute_specifier] = ACTIONS(2028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE] = ACTIONS(2028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_API_AVAILABLE] = ACTIONS(2028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_API_DEPRECATED] = ACTIONS(2028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2028), + [anon_sym___deprecated_msg] = ACTIONS(2028), + [anon_sym___deprecated_enum_msg] = ACTIONS(2028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2028), + [anon_sym_ATimplementation] = ACTIONS(2030), + [anon_sym_NS_ENUM] = ACTIONS(2028), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2028), + [anon_sym_NS_OPTIONS] = ACTIONS(2028), + [anon_sym_typeof] = ACTIONS(2028), + [anon_sym___typeof] = ACTIONS(2028), + [anon_sym___typeof__] = ACTIONS(2028), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_nil] = ACTIONS(2028), + [sym_id] = ACTIONS(2028), + [sym_instancetype] = ACTIONS(2028), + [sym_Class] = ACTIONS(2028), + [sym_SEL] = ACTIONS(2028), + [sym_IMP] = ACTIONS(2028), + [sym_BOOL] = ACTIONS(2028), + [sym_auto] = ACTIONS(2028), + [anon_sym_ATautoreleasepool] = ACTIONS(2030), + [anon_sym_ATsynchronized] = ACTIONS(2030), + [anon_sym_ATtry] = ACTIONS(2030), + [anon_sym_ATthrow] = ACTIONS(2030), + [anon_sym_ATselector] = ACTIONS(2030), + [anon_sym_ATencode] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2028), + [sym_YES] = ACTIONS(2028), + [sym_NO] = ACTIONS(2028), + [anon_sym___builtin_available] = ACTIONS(2028), + [anon_sym_ATavailable] = ACTIONS(2030), + [anon_sym_va_arg] = ACTIONS(2028), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [738] = { + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2030), + [aux_sym_preproc_def_token1] = ACTIONS(2030), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token2] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [aux_sym_preproc_else_token1] = ACTIONS(2028), + [aux_sym_preproc_elif_token1] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_auto] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_out] = ACTIONS(2028), + [anon_sym_inout] = ACTIONS(2028), + [anon_sym_bycopy] = ACTIONS(2028), + [anon_sym_byref] = ACTIONS(2028), + [anon_sym_oneway] = ACTIONS(2028), + [anon_sym__Nullable] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym__Nullable_result] = ACTIONS(2028), + [anon_sym__Null_unspecified] = ACTIONS(2028), + [anon_sym___autoreleasing] = ACTIONS(2028), + [anon_sym___nullable] = ACTIONS(2028), + [anon_sym___nonnull] = ACTIONS(2028), + [anon_sym___strong] = ACTIONS(2028), + [anon_sym___weak] = ACTIONS(2028), + [anon_sym___bridge] = ACTIONS(2028), + [anon_sym___bridge_transfer] = ACTIONS(2028), + [anon_sym___bridge_retained] = ACTIONS(2028), + [anon_sym___unsafe_unretained] = ACTIONS(2028), + [anon_sym___block] = ACTIONS(2028), + [anon_sym___kindof] = ACTIONS(2028), + [anon_sym___unused] = ACTIONS(2028), + [anon_sym__Complex] = ACTIONS(2028), + [anon_sym___complex] = ACTIONS(2028), + [anon_sym_IBOutlet] = ACTIONS(2028), + [anon_sym_IBInspectable] = ACTIONS(2028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2028), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2030), + [anon_sym_ATimport] = ACTIONS(2030), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2028), + [anon_sym_ATcompatibility_alias] = ACTIONS(2030), + [anon_sym_ATprotocol] = ACTIONS(2030), + [anon_sym_ATclass] = ACTIONS(2030), + [anon_sym_ATinterface] = ACTIONS(2030), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2028), + [sym_method_attribute_specifier] = ACTIONS(2028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE] = ACTIONS(2028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_API_AVAILABLE] = ACTIONS(2028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_API_DEPRECATED] = ACTIONS(2028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2028), + [anon_sym___deprecated_msg] = ACTIONS(2028), + [anon_sym___deprecated_enum_msg] = ACTIONS(2028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2028), + [anon_sym_ATimplementation] = ACTIONS(2030), + [anon_sym_NS_ENUM] = ACTIONS(2028), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2028), + [anon_sym_NS_OPTIONS] = ACTIONS(2028), + [anon_sym_typeof] = ACTIONS(2028), + [anon_sym___typeof] = ACTIONS(2028), + [anon_sym___typeof__] = ACTIONS(2028), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_nil] = ACTIONS(2028), + [sym_id] = ACTIONS(2028), + [sym_instancetype] = ACTIONS(2028), + [sym_Class] = ACTIONS(2028), + [sym_SEL] = ACTIONS(2028), + [sym_IMP] = ACTIONS(2028), + [sym_BOOL] = ACTIONS(2028), + [sym_auto] = ACTIONS(2028), + [anon_sym_ATautoreleasepool] = ACTIONS(2030), + [anon_sym_ATsynchronized] = ACTIONS(2030), + [anon_sym_ATtry] = ACTIONS(2030), + [anon_sym_ATthrow] = ACTIONS(2030), + [anon_sym_ATselector] = ACTIONS(2030), + [anon_sym_ATencode] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2028), + [sym_YES] = ACTIONS(2028), + [sym_NO] = ACTIONS(2028), + [anon_sym___builtin_available] = ACTIONS(2028), + [anon_sym_ATavailable] = ACTIONS(2030), + [anon_sym_va_arg] = ACTIONS(2028), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [739] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [aux_sym_preproc_else_token1] = ACTIONS(2004), + [aux_sym_preproc_elif_token1] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [740] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [aux_sym_preproc_else_token1] = ACTIONS(2004), + [aux_sym_preproc_elif_token1] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [741] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [aux_sym_preproc_else_token1] = ACTIONS(2004), + [aux_sym_preproc_elif_token1] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [742] = { + [sym_identifier] = ACTIONS(2064), + [aux_sym_preproc_include_token1] = ACTIONS(2066), + [aux_sym_preproc_def_token1] = ACTIONS(2066), + [aux_sym_preproc_if_token1] = ACTIONS(2064), + [aux_sym_preproc_if_token2] = ACTIONS(2064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2064), + [aux_sym_preproc_else_token1] = ACTIONS(2064), + [aux_sym_preproc_elif_token1] = ACTIONS(2064), + [anon_sym_LPAREN2] = ACTIONS(2066), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_TILDE] = ACTIONS(2066), + [anon_sym_DASH] = ACTIONS(2064), + [anon_sym_PLUS] = ACTIONS(2064), + [anon_sym_STAR] = ACTIONS(2066), + [anon_sym_CARET] = ACTIONS(2066), + [anon_sym_AMP] = ACTIONS(2066), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_typedef] = ACTIONS(2064), + [anon_sym_extern] = ACTIONS(2064), + [anon_sym___attribute] = ACTIONS(2064), + [anon_sym___attribute__] = ACTIONS(2064), + [anon_sym___declspec] = ACTIONS(2064), + [anon_sym___cdecl] = ACTIONS(2064), + [anon_sym___clrcall] = ACTIONS(2064), + [anon_sym___stdcall] = ACTIONS(2064), + [anon_sym___fastcall] = ACTIONS(2064), + [anon_sym___thiscall] = ACTIONS(2064), + [anon_sym___vectorcall] = ACTIONS(2064), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2066), + [anon_sym_static] = ACTIONS(2064), + [anon_sym_auto] = ACTIONS(2064), + [anon_sym_register] = ACTIONS(2064), + [anon_sym_inline] = ACTIONS(2064), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2064), + [anon_sym_const] = ACTIONS(2064), + [anon_sym_volatile] = ACTIONS(2064), + [anon_sym_restrict] = ACTIONS(2064), + [anon_sym__Atomic] = ACTIONS(2064), + [anon_sym_in] = ACTIONS(2064), + [anon_sym_out] = ACTIONS(2064), + [anon_sym_inout] = ACTIONS(2064), + [anon_sym_bycopy] = ACTIONS(2064), + [anon_sym_byref] = ACTIONS(2064), + [anon_sym_oneway] = ACTIONS(2064), + [anon_sym__Nullable] = ACTIONS(2064), + [anon_sym__Nonnull] = ACTIONS(2064), + [anon_sym__Nullable_result] = ACTIONS(2064), + [anon_sym__Null_unspecified] = ACTIONS(2064), + [anon_sym___autoreleasing] = ACTIONS(2064), + [anon_sym___nullable] = ACTIONS(2064), + [anon_sym___nonnull] = ACTIONS(2064), + [anon_sym___strong] = ACTIONS(2064), + [anon_sym___weak] = ACTIONS(2064), + [anon_sym___bridge] = ACTIONS(2064), + [anon_sym___bridge_transfer] = ACTIONS(2064), + [anon_sym___bridge_retained] = ACTIONS(2064), + [anon_sym___unsafe_unretained] = ACTIONS(2064), + [anon_sym___block] = ACTIONS(2064), + [anon_sym___kindof] = ACTIONS(2064), + [anon_sym___unused] = ACTIONS(2064), + [anon_sym__Complex] = ACTIONS(2064), + [anon_sym___complex] = ACTIONS(2064), + [anon_sym_IBOutlet] = ACTIONS(2064), + [anon_sym_IBInspectable] = ACTIONS(2064), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2064), + [anon_sym_signed] = ACTIONS(2064), + [anon_sym_unsigned] = ACTIONS(2064), + [anon_sym_long] = ACTIONS(2064), + [anon_sym_short] = ACTIONS(2064), + [sym_primitive_type] = ACTIONS(2064), + [anon_sym_enum] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(2064), + [anon_sym_union] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2064), + [anon_sym_switch] = ACTIONS(2064), + [anon_sym_case] = ACTIONS(2064), + [anon_sym_default] = ACTIONS(2064), + [anon_sym_while] = ACTIONS(2064), + [anon_sym_do] = ACTIONS(2064), + [anon_sym_for] = ACTIONS(2064), + [anon_sym_return] = ACTIONS(2064), + [anon_sym_break] = ACTIONS(2064), + [anon_sym_continue] = ACTIONS(2064), + [anon_sym_goto] = ACTIONS(2064), + [anon_sym_DASH_DASH] = ACTIONS(2066), + [anon_sym_PLUS_PLUS] = ACTIONS(2066), + [anon_sym_sizeof] = ACTIONS(2064), + [sym_number_literal] = ACTIONS(2066), + [anon_sym_L_SQUOTE] = ACTIONS(2066), + [anon_sym_u_SQUOTE] = ACTIONS(2066), + [anon_sym_U_SQUOTE] = ACTIONS(2066), + [anon_sym_u8_SQUOTE] = ACTIONS(2066), + [anon_sym_SQUOTE] = ACTIONS(2066), + [anon_sym_L_DQUOTE] = ACTIONS(2066), + [anon_sym_u_DQUOTE] = ACTIONS(2066), + [anon_sym_U_DQUOTE] = ACTIONS(2066), + [anon_sym_u8_DQUOTE] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(2066), + [sym_true] = ACTIONS(2064), + [sym_false] = ACTIONS(2064), + [sym_null] = ACTIONS(2064), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2066), + [anon_sym_ATimport] = ACTIONS(2066), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2064), + [anon_sym_ATcompatibility_alias] = ACTIONS(2066), + [anon_sym_ATprotocol] = ACTIONS(2066), + [anon_sym_ATclass] = ACTIONS(2066), + [anon_sym_ATinterface] = ACTIONS(2066), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2064), + [sym_method_attribute_specifier] = ACTIONS(2064), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2064), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2064), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2064), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2064), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2064), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2064), + [anon_sym_NS_AVAILABLE] = ACTIONS(2064), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2064), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2064), + [anon_sym_API_AVAILABLE] = ACTIONS(2064), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2064), + [anon_sym_API_DEPRECATED] = ACTIONS(2064), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2064), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2064), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2064), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2064), + [anon_sym___deprecated_msg] = ACTIONS(2064), + [anon_sym___deprecated_enum_msg] = ACTIONS(2064), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2064), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2064), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2064), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2064), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2064), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2064), + [anon_sym_ATimplementation] = ACTIONS(2066), + [anon_sym_NS_ENUM] = ACTIONS(2064), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2064), + [anon_sym_NS_OPTIONS] = ACTIONS(2064), + [anon_sym_typeof] = ACTIONS(2064), + [anon_sym___typeof] = ACTIONS(2064), + [anon_sym___typeof__] = ACTIONS(2064), + [sym_self] = ACTIONS(2064), + [sym_super] = ACTIONS(2064), + [sym_nil] = ACTIONS(2064), + [sym_id] = ACTIONS(2064), + [sym_instancetype] = ACTIONS(2064), + [sym_Class] = ACTIONS(2064), + [sym_SEL] = ACTIONS(2064), + [sym_IMP] = ACTIONS(2064), + [sym_BOOL] = ACTIONS(2064), + [sym_auto] = ACTIONS(2064), + [anon_sym_ATautoreleasepool] = ACTIONS(2066), + [anon_sym_ATsynchronized] = ACTIONS(2066), + [anon_sym_ATtry] = ACTIONS(2066), + [anon_sym_ATthrow] = ACTIONS(2066), + [anon_sym_ATselector] = ACTIONS(2066), + [anon_sym_ATencode] = ACTIONS(2066), + [anon_sym_AT] = ACTIONS(2064), + [sym_YES] = ACTIONS(2064), + [sym_NO] = ACTIONS(2064), + [anon_sym___builtin_available] = ACTIONS(2064), + [anon_sym_ATavailable] = ACTIONS(2066), + [anon_sym_va_arg] = ACTIONS(2064), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [743] = { + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2030), + [aux_sym_preproc_def_token1] = ACTIONS(2030), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token2] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [aux_sym_preproc_else_token1] = ACTIONS(2028), + [aux_sym_preproc_elif_token1] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_auto] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_out] = ACTIONS(2028), + [anon_sym_inout] = ACTIONS(2028), + [anon_sym_bycopy] = ACTIONS(2028), + [anon_sym_byref] = ACTIONS(2028), + [anon_sym_oneway] = ACTIONS(2028), + [anon_sym__Nullable] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym__Nullable_result] = ACTIONS(2028), + [anon_sym__Null_unspecified] = ACTIONS(2028), + [anon_sym___autoreleasing] = ACTIONS(2028), + [anon_sym___nullable] = ACTIONS(2028), + [anon_sym___nonnull] = ACTIONS(2028), + [anon_sym___strong] = ACTIONS(2028), + [anon_sym___weak] = ACTIONS(2028), + [anon_sym___bridge] = ACTIONS(2028), + [anon_sym___bridge_transfer] = ACTIONS(2028), + [anon_sym___bridge_retained] = ACTIONS(2028), + [anon_sym___unsafe_unretained] = ACTIONS(2028), + [anon_sym___block] = ACTIONS(2028), + [anon_sym___kindof] = ACTIONS(2028), + [anon_sym___unused] = ACTIONS(2028), + [anon_sym__Complex] = ACTIONS(2028), + [anon_sym___complex] = ACTIONS(2028), + [anon_sym_IBOutlet] = ACTIONS(2028), + [anon_sym_IBInspectable] = ACTIONS(2028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2028), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2030), + [anon_sym_ATimport] = ACTIONS(2030), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2028), + [anon_sym_ATcompatibility_alias] = ACTIONS(2030), + [anon_sym_ATprotocol] = ACTIONS(2030), + [anon_sym_ATclass] = ACTIONS(2030), + [anon_sym_ATinterface] = ACTIONS(2030), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2028), + [sym_method_attribute_specifier] = ACTIONS(2028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE] = ACTIONS(2028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_API_AVAILABLE] = ACTIONS(2028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_API_DEPRECATED] = ACTIONS(2028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2028), + [anon_sym___deprecated_msg] = ACTIONS(2028), + [anon_sym___deprecated_enum_msg] = ACTIONS(2028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2028), + [anon_sym_ATimplementation] = ACTIONS(2030), + [anon_sym_NS_ENUM] = ACTIONS(2028), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2028), + [anon_sym_NS_OPTIONS] = ACTIONS(2028), + [anon_sym_typeof] = ACTIONS(2028), + [anon_sym___typeof] = ACTIONS(2028), + [anon_sym___typeof__] = ACTIONS(2028), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_nil] = ACTIONS(2028), + [sym_id] = ACTIONS(2028), + [sym_instancetype] = ACTIONS(2028), + [sym_Class] = ACTIONS(2028), + [sym_SEL] = ACTIONS(2028), + [sym_IMP] = ACTIONS(2028), + [sym_BOOL] = ACTIONS(2028), + [sym_auto] = ACTIONS(2028), + [anon_sym_ATautoreleasepool] = ACTIONS(2030), + [anon_sym_ATsynchronized] = ACTIONS(2030), + [anon_sym_ATtry] = ACTIONS(2030), + [anon_sym_ATthrow] = ACTIONS(2030), + [anon_sym_ATselector] = ACTIONS(2030), + [anon_sym_ATencode] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2028), + [sym_YES] = ACTIONS(2028), + [sym_NO] = ACTIONS(2028), + [anon_sym___builtin_available] = ACTIONS(2028), + [anon_sym_ATavailable] = ACTIONS(2030), + [anon_sym_va_arg] = ACTIONS(2028), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [744] = { + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2030), + [aux_sym_preproc_def_token1] = ACTIONS(2030), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token2] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [aux_sym_preproc_else_token1] = ACTIONS(2028), + [aux_sym_preproc_elif_token1] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_auto] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_out] = ACTIONS(2028), + [anon_sym_inout] = ACTIONS(2028), + [anon_sym_bycopy] = ACTIONS(2028), + [anon_sym_byref] = ACTIONS(2028), + [anon_sym_oneway] = ACTIONS(2028), + [anon_sym__Nullable] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym__Nullable_result] = ACTIONS(2028), + [anon_sym__Null_unspecified] = ACTIONS(2028), + [anon_sym___autoreleasing] = ACTIONS(2028), + [anon_sym___nullable] = ACTIONS(2028), + [anon_sym___nonnull] = ACTIONS(2028), + [anon_sym___strong] = ACTIONS(2028), + [anon_sym___weak] = ACTIONS(2028), + [anon_sym___bridge] = ACTIONS(2028), + [anon_sym___bridge_transfer] = ACTIONS(2028), + [anon_sym___bridge_retained] = ACTIONS(2028), + [anon_sym___unsafe_unretained] = ACTIONS(2028), + [anon_sym___block] = ACTIONS(2028), + [anon_sym___kindof] = ACTIONS(2028), + [anon_sym___unused] = ACTIONS(2028), + [anon_sym__Complex] = ACTIONS(2028), + [anon_sym___complex] = ACTIONS(2028), + [anon_sym_IBOutlet] = ACTIONS(2028), + [anon_sym_IBInspectable] = ACTIONS(2028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2028), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2030), + [anon_sym_ATimport] = ACTIONS(2030), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2028), + [anon_sym_ATcompatibility_alias] = ACTIONS(2030), + [anon_sym_ATprotocol] = ACTIONS(2030), + [anon_sym_ATclass] = ACTIONS(2030), + [anon_sym_ATinterface] = ACTIONS(2030), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2028), + [sym_method_attribute_specifier] = ACTIONS(2028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE] = ACTIONS(2028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_API_AVAILABLE] = ACTIONS(2028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_API_DEPRECATED] = ACTIONS(2028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2028), + [anon_sym___deprecated_msg] = ACTIONS(2028), + [anon_sym___deprecated_enum_msg] = ACTIONS(2028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2028), + [anon_sym_ATimplementation] = ACTIONS(2030), + [anon_sym_NS_ENUM] = ACTIONS(2028), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2028), + [anon_sym_NS_OPTIONS] = ACTIONS(2028), + [anon_sym_typeof] = ACTIONS(2028), + [anon_sym___typeof] = ACTIONS(2028), + [anon_sym___typeof__] = ACTIONS(2028), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_nil] = ACTIONS(2028), + [sym_id] = ACTIONS(2028), + [sym_instancetype] = ACTIONS(2028), + [sym_Class] = ACTIONS(2028), + [sym_SEL] = ACTIONS(2028), + [sym_IMP] = ACTIONS(2028), + [sym_BOOL] = ACTIONS(2028), + [sym_auto] = ACTIONS(2028), + [anon_sym_ATautoreleasepool] = ACTIONS(2030), + [anon_sym_ATsynchronized] = ACTIONS(2030), + [anon_sym_ATtry] = ACTIONS(2030), + [anon_sym_ATthrow] = ACTIONS(2030), + [anon_sym_ATselector] = ACTIONS(2030), + [anon_sym_ATencode] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2028), + [sym_YES] = ACTIONS(2028), + [sym_NO] = ACTIONS(2028), + [anon_sym___builtin_available] = ACTIONS(2028), + [anon_sym_ATavailable] = ACTIONS(2030), + [anon_sym_va_arg] = ACTIONS(2028), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [745] = { + [sym_identifier] = ACTIONS(2068), + [aux_sym_preproc_include_token1] = ACTIONS(2070), + [aux_sym_preproc_def_token1] = ACTIONS(2070), + [aux_sym_preproc_if_token1] = ACTIONS(2068), + [aux_sym_preproc_if_token2] = ACTIONS(2068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2068), + [aux_sym_preproc_else_token1] = ACTIONS(2068), + [aux_sym_preproc_elif_token1] = ACTIONS(2068), + [anon_sym_LPAREN2] = ACTIONS(2070), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2070), + [anon_sym_CARET] = ACTIONS(2070), + [anon_sym_AMP] = ACTIONS(2070), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_typedef] = ACTIONS(2068), + [anon_sym_extern] = ACTIONS(2068), + [anon_sym___attribute] = ACTIONS(2068), + [anon_sym___attribute__] = ACTIONS(2068), + [anon_sym___declspec] = ACTIONS(2068), + [anon_sym___cdecl] = ACTIONS(2068), + [anon_sym___clrcall] = ACTIONS(2068), + [anon_sym___stdcall] = ACTIONS(2068), + [anon_sym___fastcall] = ACTIONS(2068), + [anon_sym___thiscall] = ACTIONS(2068), + [anon_sym___vectorcall] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_auto] = ACTIONS(2068), + [anon_sym_register] = ACTIONS(2068), + [anon_sym_inline] = ACTIONS(2068), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_volatile] = ACTIONS(2068), + [anon_sym_restrict] = ACTIONS(2068), + [anon_sym__Atomic] = ACTIONS(2068), + [anon_sym_in] = ACTIONS(2068), + [anon_sym_out] = ACTIONS(2068), + [anon_sym_inout] = ACTIONS(2068), + [anon_sym_bycopy] = ACTIONS(2068), + [anon_sym_byref] = ACTIONS(2068), + [anon_sym_oneway] = ACTIONS(2068), + [anon_sym__Nullable] = ACTIONS(2068), + [anon_sym__Nonnull] = ACTIONS(2068), + [anon_sym__Nullable_result] = ACTIONS(2068), + [anon_sym__Null_unspecified] = ACTIONS(2068), + [anon_sym___autoreleasing] = ACTIONS(2068), + [anon_sym___nullable] = ACTIONS(2068), + [anon_sym___nonnull] = ACTIONS(2068), + [anon_sym___strong] = ACTIONS(2068), + [anon_sym___weak] = ACTIONS(2068), + [anon_sym___bridge] = ACTIONS(2068), + [anon_sym___bridge_transfer] = ACTIONS(2068), + [anon_sym___bridge_retained] = ACTIONS(2068), + [anon_sym___unsafe_unretained] = ACTIONS(2068), + [anon_sym___block] = ACTIONS(2068), + [anon_sym___kindof] = ACTIONS(2068), + [anon_sym___unused] = ACTIONS(2068), + [anon_sym__Complex] = ACTIONS(2068), + [anon_sym___complex] = ACTIONS(2068), + [anon_sym_IBOutlet] = ACTIONS(2068), + [anon_sym_IBInspectable] = ACTIONS(2068), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2068), + [anon_sym_signed] = ACTIONS(2068), + [anon_sym_unsigned] = ACTIONS(2068), + [anon_sym_long] = ACTIONS(2068), + [anon_sym_short] = ACTIONS(2068), + [sym_primitive_type] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [anon_sym_struct] = ACTIONS(2068), + [anon_sym_union] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_case] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_goto] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_sizeof] = ACTIONS(2068), + [sym_number_literal] = ACTIONS(2070), + [anon_sym_L_SQUOTE] = ACTIONS(2070), + [anon_sym_u_SQUOTE] = ACTIONS(2070), + [anon_sym_U_SQUOTE] = ACTIONS(2070), + [anon_sym_u8_SQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), + [anon_sym_L_DQUOTE] = ACTIONS(2070), + [anon_sym_u_DQUOTE] = ACTIONS(2070), + [anon_sym_U_DQUOTE] = ACTIONS(2070), + [anon_sym_u8_DQUOTE] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2070), + [anon_sym_ATimport] = ACTIONS(2070), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2068), + [anon_sym_ATcompatibility_alias] = ACTIONS(2070), + [anon_sym_ATprotocol] = ACTIONS(2070), + [anon_sym_ATclass] = ACTIONS(2070), + [anon_sym_ATinterface] = ACTIONS(2070), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2068), + [sym_method_attribute_specifier] = ACTIONS(2068), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2068), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2068), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2068), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2068), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2068), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2068), + [anon_sym_NS_AVAILABLE] = ACTIONS(2068), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2068), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2068), + [anon_sym_API_AVAILABLE] = ACTIONS(2068), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2068), + [anon_sym_API_DEPRECATED] = ACTIONS(2068), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2068), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2068), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2068), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2068), + [anon_sym___deprecated_msg] = ACTIONS(2068), + [anon_sym___deprecated_enum_msg] = ACTIONS(2068), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2068), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2068), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2068), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2068), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2068), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2068), + [anon_sym_ATimplementation] = ACTIONS(2070), + [anon_sym_NS_ENUM] = ACTIONS(2068), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2068), + [anon_sym_NS_OPTIONS] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym___typeof] = ACTIONS(2068), + [anon_sym___typeof__] = ACTIONS(2068), + [sym_self] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_nil] = ACTIONS(2068), + [sym_id] = ACTIONS(2068), + [sym_instancetype] = ACTIONS(2068), + [sym_Class] = ACTIONS(2068), + [sym_SEL] = ACTIONS(2068), + [sym_IMP] = ACTIONS(2068), + [sym_BOOL] = ACTIONS(2068), + [sym_auto] = ACTIONS(2068), + [anon_sym_ATautoreleasepool] = ACTIONS(2070), + [anon_sym_ATsynchronized] = ACTIONS(2070), + [anon_sym_ATtry] = ACTIONS(2070), + [anon_sym_ATthrow] = ACTIONS(2070), + [anon_sym_ATselector] = ACTIONS(2070), + [anon_sym_ATencode] = ACTIONS(2070), + [anon_sym_AT] = ACTIONS(2068), + [sym_YES] = ACTIONS(2068), + [sym_NO] = ACTIONS(2068), + [anon_sym___builtin_available] = ACTIONS(2068), + [anon_sym_ATavailable] = ACTIONS(2070), + [anon_sym_va_arg] = ACTIONS(2068), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [746] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [aux_sym_preproc_else_token1] = ACTIONS(2072), + [aux_sym_preproc_elif_token1] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [747] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [aux_sym_preproc_else_token1] = ACTIONS(2072), + [aux_sym_preproc_elif_token1] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [748] = { + [sym_identifier] = ACTIONS(2076), + [aux_sym_preproc_include_token1] = ACTIONS(2078), + [aux_sym_preproc_def_token1] = ACTIONS(2078), + [aux_sym_preproc_if_token1] = ACTIONS(2076), + [aux_sym_preproc_if_token2] = ACTIONS(2076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2076), + [aux_sym_preproc_else_token1] = ACTIONS(2076), + [aux_sym_preproc_elif_token1] = ACTIONS(2076), + [anon_sym_LPAREN2] = ACTIONS(2078), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2076), + [anon_sym_PLUS] = ACTIONS(2076), + [anon_sym_STAR] = ACTIONS(2078), + [anon_sym_CARET] = ACTIONS(2078), + [anon_sym_AMP] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_typedef] = ACTIONS(2076), + [anon_sym_extern] = ACTIONS(2076), + [anon_sym___attribute] = ACTIONS(2076), + [anon_sym___attribute__] = ACTIONS(2076), + [anon_sym___declspec] = ACTIONS(2076), + [anon_sym___cdecl] = ACTIONS(2076), + [anon_sym___clrcall] = ACTIONS(2076), + [anon_sym___stdcall] = ACTIONS(2076), + [anon_sym___fastcall] = ACTIONS(2076), + [anon_sym___thiscall] = ACTIONS(2076), + [anon_sym___vectorcall] = ACTIONS(2076), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2076), + [anon_sym_auto] = ACTIONS(2076), + [anon_sym_register] = ACTIONS(2076), + [anon_sym_inline] = ACTIONS(2076), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2076), + [anon_sym_const] = ACTIONS(2076), + [anon_sym_volatile] = ACTIONS(2076), + [anon_sym_restrict] = ACTIONS(2076), + [anon_sym__Atomic] = ACTIONS(2076), + [anon_sym_in] = ACTIONS(2076), + [anon_sym_out] = ACTIONS(2076), + [anon_sym_inout] = ACTIONS(2076), + [anon_sym_bycopy] = ACTIONS(2076), + [anon_sym_byref] = ACTIONS(2076), + [anon_sym_oneway] = ACTIONS(2076), + [anon_sym__Nullable] = ACTIONS(2076), + [anon_sym__Nonnull] = ACTIONS(2076), + [anon_sym__Nullable_result] = ACTIONS(2076), + [anon_sym__Null_unspecified] = ACTIONS(2076), + [anon_sym___autoreleasing] = ACTIONS(2076), + [anon_sym___nullable] = ACTIONS(2076), + [anon_sym___nonnull] = ACTIONS(2076), + [anon_sym___strong] = ACTIONS(2076), + [anon_sym___weak] = ACTIONS(2076), + [anon_sym___bridge] = ACTIONS(2076), + [anon_sym___bridge_transfer] = ACTIONS(2076), + [anon_sym___bridge_retained] = ACTIONS(2076), + [anon_sym___unsafe_unretained] = ACTIONS(2076), + [anon_sym___block] = ACTIONS(2076), + [anon_sym___kindof] = ACTIONS(2076), + [anon_sym___unused] = ACTIONS(2076), + [anon_sym__Complex] = ACTIONS(2076), + [anon_sym___complex] = ACTIONS(2076), + [anon_sym_IBOutlet] = ACTIONS(2076), + [anon_sym_IBInspectable] = ACTIONS(2076), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2076), + [anon_sym_signed] = ACTIONS(2076), + [anon_sym_unsigned] = ACTIONS(2076), + [anon_sym_long] = ACTIONS(2076), + [anon_sym_short] = ACTIONS(2076), + [sym_primitive_type] = ACTIONS(2076), + [anon_sym_enum] = ACTIONS(2076), + [anon_sym_struct] = ACTIONS(2076), + [anon_sym_union] = ACTIONS(2076), + [anon_sym_if] = ACTIONS(2076), + [anon_sym_switch] = ACTIONS(2076), + [anon_sym_case] = ACTIONS(2076), + [anon_sym_default] = ACTIONS(2076), + [anon_sym_while] = ACTIONS(2076), + [anon_sym_do] = ACTIONS(2076), + [anon_sym_for] = ACTIONS(2076), + [anon_sym_return] = ACTIONS(2076), + [anon_sym_break] = ACTIONS(2076), + [anon_sym_continue] = ACTIONS(2076), + [anon_sym_goto] = ACTIONS(2076), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_PLUS_PLUS] = ACTIONS(2078), + [anon_sym_sizeof] = ACTIONS(2076), + [sym_number_literal] = ACTIONS(2078), + [anon_sym_L_SQUOTE] = ACTIONS(2078), + [anon_sym_u_SQUOTE] = ACTIONS(2078), + [anon_sym_U_SQUOTE] = ACTIONS(2078), + [anon_sym_u8_SQUOTE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2078), + [anon_sym_L_DQUOTE] = ACTIONS(2078), + [anon_sym_u_DQUOTE] = ACTIONS(2078), + [anon_sym_U_DQUOTE] = ACTIONS(2078), + [anon_sym_u8_DQUOTE] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [sym_true] = ACTIONS(2076), + [sym_false] = ACTIONS(2076), + [sym_null] = ACTIONS(2076), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2078), + [anon_sym_ATimport] = ACTIONS(2078), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2076), + [anon_sym_ATcompatibility_alias] = ACTIONS(2078), + [anon_sym_ATprotocol] = ACTIONS(2078), + [anon_sym_ATclass] = ACTIONS(2078), + [anon_sym_ATinterface] = ACTIONS(2078), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2076), + [sym_method_attribute_specifier] = ACTIONS(2076), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2076), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2076), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2076), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2076), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2076), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2076), + [anon_sym_NS_AVAILABLE] = ACTIONS(2076), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2076), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2076), + [anon_sym_API_AVAILABLE] = ACTIONS(2076), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2076), + [anon_sym_API_DEPRECATED] = ACTIONS(2076), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2076), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2076), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2076), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2076), + [anon_sym___deprecated_msg] = ACTIONS(2076), + [anon_sym___deprecated_enum_msg] = ACTIONS(2076), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2076), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2076), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2076), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2076), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2076), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2076), + [anon_sym_ATimplementation] = ACTIONS(2078), + [anon_sym_NS_ENUM] = ACTIONS(2076), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2076), + [anon_sym_NS_OPTIONS] = ACTIONS(2076), + [anon_sym_typeof] = ACTIONS(2076), + [anon_sym___typeof] = ACTIONS(2076), + [anon_sym___typeof__] = ACTIONS(2076), + [sym_self] = ACTIONS(2076), + [sym_super] = ACTIONS(2076), + [sym_nil] = ACTIONS(2076), + [sym_id] = ACTIONS(2076), + [sym_instancetype] = ACTIONS(2076), + [sym_Class] = ACTIONS(2076), + [sym_SEL] = ACTIONS(2076), + [sym_IMP] = ACTIONS(2076), + [sym_BOOL] = ACTIONS(2076), + [sym_auto] = ACTIONS(2076), + [anon_sym_ATautoreleasepool] = ACTIONS(2078), + [anon_sym_ATsynchronized] = ACTIONS(2078), + [anon_sym_ATtry] = ACTIONS(2078), + [anon_sym_ATthrow] = ACTIONS(2078), + [anon_sym_ATselector] = ACTIONS(2078), + [anon_sym_ATencode] = ACTIONS(2078), + [anon_sym_AT] = ACTIONS(2076), + [sym_YES] = ACTIONS(2076), + [sym_NO] = ACTIONS(2076), + [anon_sym___builtin_available] = ACTIONS(2076), + [anon_sym_ATavailable] = ACTIONS(2078), + [anon_sym_va_arg] = ACTIONS(2076), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [749] = { + [sym_identifier] = ACTIONS(2080), + [aux_sym_preproc_include_token1] = ACTIONS(2082), + [aux_sym_preproc_def_token1] = ACTIONS(2082), + [aux_sym_preproc_if_token1] = ACTIONS(2080), + [aux_sym_preproc_if_token2] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), + [aux_sym_preproc_else_token1] = ACTIONS(2080), + [aux_sym_preproc_elif_token1] = ACTIONS(2080), + [anon_sym_LPAREN2] = ACTIONS(2082), + [anon_sym_BANG] = ACTIONS(2082), + [anon_sym_TILDE] = ACTIONS(2082), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(2082), + [anon_sym_CARET] = ACTIONS(2082), + [anon_sym_AMP] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_typedef] = ACTIONS(2080), + [anon_sym_extern] = ACTIONS(2080), + [anon_sym___attribute] = ACTIONS(2080), + [anon_sym___attribute__] = ACTIONS(2080), + [anon_sym___declspec] = ACTIONS(2080), + [anon_sym___cdecl] = ACTIONS(2080), + [anon_sym___clrcall] = ACTIONS(2080), + [anon_sym___stdcall] = ACTIONS(2080), + [anon_sym___fastcall] = ACTIONS(2080), + [anon_sym___thiscall] = ACTIONS(2080), + [anon_sym___vectorcall] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_auto] = ACTIONS(2080), + [anon_sym_register] = ACTIONS(2080), + [anon_sym_inline] = ACTIONS(2080), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_volatile] = ACTIONS(2080), + [anon_sym_restrict] = ACTIONS(2080), + [anon_sym__Atomic] = ACTIONS(2080), + [anon_sym_in] = ACTIONS(2080), + [anon_sym_out] = ACTIONS(2080), + [anon_sym_inout] = ACTIONS(2080), + [anon_sym_bycopy] = ACTIONS(2080), + [anon_sym_byref] = ACTIONS(2080), + [anon_sym_oneway] = ACTIONS(2080), + [anon_sym__Nullable] = ACTIONS(2080), + [anon_sym__Nonnull] = ACTIONS(2080), + [anon_sym__Nullable_result] = ACTIONS(2080), + [anon_sym__Null_unspecified] = ACTIONS(2080), + [anon_sym___autoreleasing] = ACTIONS(2080), + [anon_sym___nullable] = ACTIONS(2080), + [anon_sym___nonnull] = ACTIONS(2080), + [anon_sym___strong] = ACTIONS(2080), + [anon_sym___weak] = ACTIONS(2080), + [anon_sym___bridge] = ACTIONS(2080), + [anon_sym___bridge_transfer] = ACTIONS(2080), + [anon_sym___bridge_retained] = ACTIONS(2080), + [anon_sym___unsafe_unretained] = ACTIONS(2080), + [anon_sym___block] = ACTIONS(2080), + [anon_sym___kindof] = ACTIONS(2080), + [anon_sym___unused] = ACTIONS(2080), + [anon_sym__Complex] = ACTIONS(2080), + [anon_sym___complex] = ACTIONS(2080), + [anon_sym_IBOutlet] = ACTIONS(2080), + [anon_sym_IBInspectable] = ACTIONS(2080), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2080), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [sym_primitive_type] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), + [anon_sym_struct] = ACTIONS(2080), + [anon_sym_union] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2080), + [anon_sym_case] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_goto] = ACTIONS(2080), + [anon_sym_DASH_DASH] = ACTIONS(2082), + [anon_sym_PLUS_PLUS] = ACTIONS(2082), + [anon_sym_sizeof] = ACTIONS(2080), + [sym_number_literal] = ACTIONS(2082), + [anon_sym_L_SQUOTE] = ACTIONS(2082), + [anon_sym_u_SQUOTE] = ACTIONS(2082), + [anon_sym_U_SQUOTE] = ACTIONS(2082), + [anon_sym_u8_SQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2082), + [anon_sym_L_DQUOTE] = ACTIONS(2082), + [anon_sym_u_DQUOTE] = ACTIONS(2082), + [anon_sym_U_DQUOTE] = ACTIONS(2082), + [anon_sym_u8_DQUOTE] = ACTIONS(2082), + [anon_sym_DQUOTE] = ACTIONS(2082), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2082), + [anon_sym_ATimport] = ACTIONS(2082), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2080), + [anon_sym_ATcompatibility_alias] = ACTIONS(2082), + [anon_sym_ATprotocol] = ACTIONS(2082), + [anon_sym_ATclass] = ACTIONS(2082), + [anon_sym_ATinterface] = ACTIONS(2082), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2080), + [sym_method_attribute_specifier] = ACTIONS(2080), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2080), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2080), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2080), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2080), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2080), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2080), + [anon_sym_NS_AVAILABLE] = ACTIONS(2080), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2080), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2080), + [anon_sym_API_AVAILABLE] = ACTIONS(2080), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2080), + [anon_sym_API_DEPRECATED] = ACTIONS(2080), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2080), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2080), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2080), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2080), + [anon_sym___deprecated_msg] = ACTIONS(2080), + [anon_sym___deprecated_enum_msg] = ACTIONS(2080), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2080), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2080), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2080), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2080), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2080), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2080), + [anon_sym_ATimplementation] = ACTIONS(2082), + [anon_sym_NS_ENUM] = ACTIONS(2080), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2080), + [anon_sym_NS_OPTIONS] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(2080), + [anon_sym___typeof] = ACTIONS(2080), + [anon_sym___typeof__] = ACTIONS(2080), + [sym_self] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_nil] = ACTIONS(2080), + [sym_id] = ACTIONS(2080), + [sym_instancetype] = ACTIONS(2080), + [sym_Class] = ACTIONS(2080), + [sym_SEL] = ACTIONS(2080), + [sym_IMP] = ACTIONS(2080), + [sym_BOOL] = ACTIONS(2080), + [sym_auto] = ACTIONS(2080), + [anon_sym_ATautoreleasepool] = ACTIONS(2082), + [anon_sym_ATsynchronized] = ACTIONS(2082), + [anon_sym_ATtry] = ACTIONS(2082), + [anon_sym_ATthrow] = ACTIONS(2082), + [anon_sym_ATselector] = ACTIONS(2082), + [anon_sym_ATencode] = ACTIONS(2082), + [anon_sym_AT] = ACTIONS(2080), + [sym_YES] = ACTIONS(2080), + [sym_NO] = ACTIONS(2080), + [anon_sym___builtin_available] = ACTIONS(2080), + [anon_sym_ATavailable] = ACTIONS(2082), + [anon_sym_va_arg] = ACTIONS(2080), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [750] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [aux_sym_preproc_else_token1] = ACTIONS(2084), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [751] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [aux_sym_preproc_else_token1] = ACTIONS(2084), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [752] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [aux_sym_preproc_else_token1] = ACTIONS(2084), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [753] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [aux_sym_preproc_else_token1] = ACTIONS(2084), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [754] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [aux_sym_preproc_else_token1] = ACTIONS(2072), + [aux_sym_preproc_elif_token1] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [755] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [aux_sym_preproc_else_token1] = ACTIONS(2072), + [aux_sym_preproc_elif_token1] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [756] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [aux_sym_preproc_else_token1] = ACTIONS(2084), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [757] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [aux_sym_preproc_else_token1] = ACTIONS(2084), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [758] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [aux_sym_preproc_else_token1] = ACTIONS(2072), + [aux_sym_preproc_elif_token1] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [759] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [aux_sym_preproc_else_token1] = ACTIONS(2072), + [aux_sym_preproc_elif_token1] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [760] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [aux_sym_preproc_else_token1] = ACTIONS(2072), + [aux_sym_preproc_elif_token1] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [761] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [aux_sym_preproc_else_token1] = ACTIONS(2072), + [aux_sym_preproc_elif_token1] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [762] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [aux_sym_preproc_else_token1] = ACTIONS(2084), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [763] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [aux_sym_preproc_else_token1] = ACTIONS(2072), + [aux_sym_preproc_elif_token1] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [764] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [aux_sym_preproc_else_token1] = ACTIONS(2084), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [765] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [aux_sym_preproc_else_token1] = ACTIONS(2072), + [aux_sym_preproc_elif_token1] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [766] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [aux_sym_preproc_else_token1] = ACTIONS(2072), + [aux_sym_preproc_elif_token1] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [767] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [aux_sym_preproc_else_token1] = ACTIONS(2072), + [aux_sym_preproc_elif_token1] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [768] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [aux_sym_preproc_else_token1] = ACTIONS(2072), + [aux_sym_preproc_elif_token1] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [769] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [aux_sym_preproc_else_token1] = ACTIONS(2072), + [aux_sym_preproc_elif_token1] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [770] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [aux_sym_preproc_else_token1] = ACTIONS(2072), + [aux_sym_preproc_elif_token1] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [771] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [aux_sym_preproc_else_token1] = ACTIONS(2088), + [aux_sym_preproc_elif_token1] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [772] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [aux_sym_preproc_else_token1] = ACTIONS(2088), + [aux_sym_preproc_elif_token1] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [773] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [aux_sym_preproc_else_token1] = ACTIONS(2088), + [aux_sym_preproc_elif_token1] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [774] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [aux_sym_preproc_else_token1] = ACTIONS(2088), + [aux_sym_preproc_elif_token1] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [775] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [aux_sym_preproc_else_token1] = ACTIONS(2088), + [aux_sym_preproc_elif_token1] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [776] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [aux_sym_preproc_else_token1] = ACTIONS(2088), + [aux_sym_preproc_elif_token1] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [777] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [aux_sym_preproc_else_token1] = ACTIONS(2088), + [aux_sym_preproc_elif_token1] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [778] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [aux_sym_preproc_else_token1] = ACTIONS(2088), + [aux_sym_preproc_elif_token1] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [779] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [aux_sym_preproc_else_token1] = ACTIONS(2088), + [aux_sym_preproc_elif_token1] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [780] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [aux_sym_preproc_else_token1] = ACTIONS(2088), + [aux_sym_preproc_elif_token1] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [781] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [aux_sym_preproc_else_token1] = ACTIONS(2088), + [aux_sym_preproc_elif_token1] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [782] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [aux_sym_preproc_else_token1] = ACTIONS(2088), + [aux_sym_preproc_elif_token1] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [783] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [aux_sym_preproc_else_token1] = ACTIONS(2088), + [aux_sym_preproc_elif_token1] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [784] = { + [sym_identifier] = ACTIONS(2092), + [aux_sym_preproc_include_token1] = ACTIONS(2094), + [aux_sym_preproc_def_token1] = ACTIONS(2094), + [aux_sym_preproc_if_token1] = ACTIONS(2092), + [aux_sym_preproc_if_token2] = ACTIONS(2092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2092), + [aux_sym_preproc_else_token1] = ACTIONS(2092), + [aux_sym_preproc_elif_token1] = ACTIONS(2092), + [anon_sym_LPAREN2] = ACTIONS(2094), + [anon_sym_BANG] = ACTIONS(2094), + [anon_sym_TILDE] = ACTIONS(2094), + [anon_sym_DASH] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(2092), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_CARET] = ACTIONS(2094), + [anon_sym_AMP] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2094), + [anon_sym_typedef] = ACTIONS(2092), + [anon_sym_extern] = ACTIONS(2092), + [anon_sym___attribute] = ACTIONS(2092), + [anon_sym___attribute__] = ACTIONS(2092), + [anon_sym___declspec] = ACTIONS(2092), + [anon_sym___cdecl] = ACTIONS(2092), + [anon_sym___clrcall] = ACTIONS(2092), + [anon_sym___stdcall] = ACTIONS(2092), + [anon_sym___fastcall] = ACTIONS(2092), + [anon_sym___thiscall] = ACTIONS(2092), + [anon_sym___vectorcall] = ACTIONS(2092), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_LBRACK] = ACTIONS(2094), + [anon_sym_static] = ACTIONS(2092), + [anon_sym_auto] = ACTIONS(2092), + [anon_sym_register] = ACTIONS(2092), + [anon_sym_inline] = ACTIONS(2092), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2092), + [anon_sym_const] = ACTIONS(2092), + [anon_sym_volatile] = ACTIONS(2092), + [anon_sym_restrict] = ACTIONS(2092), + [anon_sym__Atomic] = ACTIONS(2092), + [anon_sym_in] = ACTIONS(2092), + [anon_sym_out] = ACTIONS(2092), + [anon_sym_inout] = ACTIONS(2092), + [anon_sym_bycopy] = ACTIONS(2092), + [anon_sym_byref] = ACTIONS(2092), + [anon_sym_oneway] = ACTIONS(2092), + [anon_sym__Nullable] = ACTIONS(2092), + [anon_sym__Nonnull] = ACTIONS(2092), + [anon_sym__Nullable_result] = ACTIONS(2092), + [anon_sym__Null_unspecified] = ACTIONS(2092), + [anon_sym___autoreleasing] = ACTIONS(2092), + [anon_sym___nullable] = ACTIONS(2092), + [anon_sym___nonnull] = ACTIONS(2092), + [anon_sym___strong] = ACTIONS(2092), + [anon_sym___weak] = ACTIONS(2092), + [anon_sym___bridge] = ACTIONS(2092), + [anon_sym___bridge_transfer] = ACTIONS(2092), + [anon_sym___bridge_retained] = ACTIONS(2092), + [anon_sym___unsafe_unretained] = ACTIONS(2092), + [anon_sym___block] = ACTIONS(2092), + [anon_sym___kindof] = ACTIONS(2092), + [anon_sym___unused] = ACTIONS(2092), + [anon_sym__Complex] = ACTIONS(2092), + [anon_sym___complex] = ACTIONS(2092), + [anon_sym_IBOutlet] = ACTIONS(2092), + [anon_sym_IBInspectable] = ACTIONS(2092), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2092), + [anon_sym_signed] = ACTIONS(2092), + [anon_sym_unsigned] = ACTIONS(2092), + [anon_sym_long] = ACTIONS(2092), + [anon_sym_short] = ACTIONS(2092), + [sym_primitive_type] = ACTIONS(2092), + [anon_sym_enum] = ACTIONS(2092), + [anon_sym_struct] = ACTIONS(2092), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_if] = ACTIONS(2092), + [anon_sym_switch] = ACTIONS(2092), + [anon_sym_case] = ACTIONS(2092), + [anon_sym_default] = ACTIONS(2092), + [anon_sym_while] = ACTIONS(2092), + [anon_sym_do] = ACTIONS(2092), + [anon_sym_for] = ACTIONS(2092), + [anon_sym_return] = ACTIONS(2092), + [anon_sym_break] = ACTIONS(2092), + [anon_sym_continue] = ACTIONS(2092), + [anon_sym_goto] = ACTIONS(2092), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2092), + [sym_number_literal] = ACTIONS(2094), + [anon_sym_L_SQUOTE] = ACTIONS(2094), + [anon_sym_u_SQUOTE] = ACTIONS(2094), + [anon_sym_U_SQUOTE] = ACTIONS(2094), + [anon_sym_u8_SQUOTE] = ACTIONS(2094), + [anon_sym_SQUOTE] = ACTIONS(2094), + [anon_sym_L_DQUOTE] = ACTIONS(2094), + [anon_sym_u_DQUOTE] = ACTIONS(2094), + [anon_sym_U_DQUOTE] = ACTIONS(2094), + [anon_sym_u8_DQUOTE] = ACTIONS(2094), + [anon_sym_DQUOTE] = ACTIONS(2094), + [sym_true] = ACTIONS(2092), + [sym_false] = ACTIONS(2092), + [sym_null] = ACTIONS(2092), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2094), + [anon_sym_ATimport] = ACTIONS(2094), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2092), + [anon_sym_ATcompatibility_alias] = ACTIONS(2094), + [anon_sym_ATprotocol] = ACTIONS(2094), + [anon_sym_ATclass] = ACTIONS(2094), + [anon_sym_ATinterface] = ACTIONS(2094), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2092), + [sym_method_attribute_specifier] = ACTIONS(2092), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2092), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2092), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2092), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2092), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2092), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2092), + [anon_sym_NS_AVAILABLE] = ACTIONS(2092), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2092), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2092), + [anon_sym_API_AVAILABLE] = ACTIONS(2092), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2092), + [anon_sym_API_DEPRECATED] = ACTIONS(2092), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2092), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2092), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2092), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2092), + [anon_sym___deprecated_msg] = ACTIONS(2092), + [anon_sym___deprecated_enum_msg] = ACTIONS(2092), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2092), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2092), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2092), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2092), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2092), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2092), + [anon_sym_ATimplementation] = ACTIONS(2094), + [anon_sym_NS_ENUM] = ACTIONS(2092), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2092), + [anon_sym_NS_OPTIONS] = ACTIONS(2092), + [anon_sym_typeof] = ACTIONS(2092), + [anon_sym___typeof] = ACTIONS(2092), + [anon_sym___typeof__] = ACTIONS(2092), + [sym_self] = ACTIONS(2092), + [sym_super] = ACTIONS(2092), + [sym_nil] = ACTIONS(2092), + [sym_id] = ACTIONS(2092), + [sym_instancetype] = ACTIONS(2092), + [sym_Class] = ACTIONS(2092), + [sym_SEL] = ACTIONS(2092), + [sym_IMP] = ACTIONS(2092), + [sym_BOOL] = ACTIONS(2092), + [sym_auto] = ACTIONS(2092), + [anon_sym_ATautoreleasepool] = ACTIONS(2094), + [anon_sym_ATsynchronized] = ACTIONS(2094), + [anon_sym_ATtry] = ACTIONS(2094), + [anon_sym_ATthrow] = ACTIONS(2094), + [anon_sym_ATselector] = ACTIONS(2094), + [anon_sym_ATencode] = ACTIONS(2094), + [anon_sym_AT] = ACTIONS(2092), + [sym_YES] = ACTIONS(2092), + [sym_NO] = ACTIONS(2092), + [anon_sym___builtin_available] = ACTIONS(2092), + [anon_sym_ATavailable] = ACTIONS(2094), + [anon_sym_va_arg] = ACTIONS(2092), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [785] = { + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2098), + [aux_sym_preproc_def_token1] = ACTIONS(2098), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_if_token2] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [aux_sym_preproc_else_token1] = ACTIONS(2096), + [aux_sym_preproc_elif_token1] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2096), + [anon_sym_out] = ACTIONS(2096), + [anon_sym_inout] = ACTIONS(2096), + [anon_sym_bycopy] = ACTIONS(2096), + [anon_sym_byref] = ACTIONS(2096), + [anon_sym_oneway] = ACTIONS(2096), + [anon_sym__Nullable] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym__Nullable_result] = ACTIONS(2096), + [anon_sym__Null_unspecified] = ACTIONS(2096), + [anon_sym___autoreleasing] = ACTIONS(2096), + [anon_sym___nullable] = ACTIONS(2096), + [anon_sym___nonnull] = ACTIONS(2096), + [anon_sym___strong] = ACTIONS(2096), + [anon_sym___weak] = ACTIONS(2096), + [anon_sym___bridge] = ACTIONS(2096), + [anon_sym___bridge_transfer] = ACTIONS(2096), + [anon_sym___bridge_retained] = ACTIONS(2096), + [anon_sym___unsafe_unretained] = ACTIONS(2096), + [anon_sym___block] = ACTIONS(2096), + [anon_sym___kindof] = ACTIONS(2096), + [anon_sym___unused] = ACTIONS(2096), + [anon_sym__Complex] = ACTIONS(2096), + [anon_sym___complex] = ACTIONS(2096), + [anon_sym_IBOutlet] = ACTIONS(2096), + [anon_sym_IBInspectable] = ACTIONS(2096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2096), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [sym_null] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2098), + [anon_sym_ATimport] = ACTIONS(2098), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2096), + [anon_sym_ATcompatibility_alias] = ACTIONS(2098), + [anon_sym_ATprotocol] = ACTIONS(2098), + [anon_sym_ATclass] = ACTIONS(2098), + [anon_sym_ATinterface] = ACTIONS(2098), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2096), + [sym_method_attribute_specifier] = ACTIONS(2096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE] = ACTIONS(2096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_API_AVAILABLE] = ACTIONS(2096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_API_DEPRECATED] = ACTIONS(2096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2096), + [anon_sym___deprecated_msg] = ACTIONS(2096), + [anon_sym___deprecated_enum_msg] = ACTIONS(2096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2096), + [anon_sym_ATimplementation] = ACTIONS(2098), + [anon_sym_NS_ENUM] = ACTIONS(2096), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2096), + [anon_sym_NS_OPTIONS] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(2096), + [anon_sym___typeof] = ACTIONS(2096), + [anon_sym___typeof__] = ACTIONS(2096), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_nil] = ACTIONS(2096), + [sym_id] = ACTIONS(2096), + [sym_instancetype] = ACTIONS(2096), + [sym_Class] = ACTIONS(2096), + [sym_SEL] = ACTIONS(2096), + [sym_IMP] = ACTIONS(2096), + [sym_BOOL] = ACTIONS(2096), + [sym_auto] = ACTIONS(2096), + [anon_sym_ATautoreleasepool] = ACTIONS(2098), + [anon_sym_ATsynchronized] = ACTIONS(2098), + [anon_sym_ATtry] = ACTIONS(2098), + [anon_sym_ATthrow] = ACTIONS(2098), + [anon_sym_ATselector] = ACTIONS(2098), + [anon_sym_ATencode] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2096), + [sym_YES] = ACTIONS(2096), + [sym_NO] = ACTIONS(2096), + [anon_sym___builtin_available] = ACTIONS(2096), + [anon_sym_ATavailable] = ACTIONS(2098), + [anon_sym_va_arg] = ACTIONS(2096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [786] = { + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2098), + [aux_sym_preproc_def_token1] = ACTIONS(2098), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_if_token2] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [aux_sym_preproc_else_token1] = ACTIONS(2096), + [aux_sym_preproc_elif_token1] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2096), + [anon_sym_out] = ACTIONS(2096), + [anon_sym_inout] = ACTIONS(2096), + [anon_sym_bycopy] = ACTIONS(2096), + [anon_sym_byref] = ACTIONS(2096), + [anon_sym_oneway] = ACTIONS(2096), + [anon_sym__Nullable] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym__Nullable_result] = ACTIONS(2096), + [anon_sym__Null_unspecified] = ACTIONS(2096), + [anon_sym___autoreleasing] = ACTIONS(2096), + [anon_sym___nullable] = ACTIONS(2096), + [anon_sym___nonnull] = ACTIONS(2096), + [anon_sym___strong] = ACTIONS(2096), + [anon_sym___weak] = ACTIONS(2096), + [anon_sym___bridge] = ACTIONS(2096), + [anon_sym___bridge_transfer] = ACTIONS(2096), + [anon_sym___bridge_retained] = ACTIONS(2096), + [anon_sym___unsafe_unretained] = ACTIONS(2096), + [anon_sym___block] = ACTIONS(2096), + [anon_sym___kindof] = ACTIONS(2096), + [anon_sym___unused] = ACTIONS(2096), + [anon_sym__Complex] = ACTIONS(2096), + [anon_sym___complex] = ACTIONS(2096), + [anon_sym_IBOutlet] = ACTIONS(2096), + [anon_sym_IBInspectable] = ACTIONS(2096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2096), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [sym_null] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2098), + [anon_sym_ATimport] = ACTIONS(2098), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2096), + [anon_sym_ATcompatibility_alias] = ACTIONS(2098), + [anon_sym_ATprotocol] = ACTIONS(2098), + [anon_sym_ATclass] = ACTIONS(2098), + [anon_sym_ATinterface] = ACTIONS(2098), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2096), + [sym_method_attribute_specifier] = ACTIONS(2096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE] = ACTIONS(2096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_API_AVAILABLE] = ACTIONS(2096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_API_DEPRECATED] = ACTIONS(2096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2096), + [anon_sym___deprecated_msg] = ACTIONS(2096), + [anon_sym___deprecated_enum_msg] = ACTIONS(2096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2096), + [anon_sym_ATimplementation] = ACTIONS(2098), + [anon_sym_NS_ENUM] = ACTIONS(2096), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2096), + [anon_sym_NS_OPTIONS] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(2096), + [anon_sym___typeof] = ACTIONS(2096), + [anon_sym___typeof__] = ACTIONS(2096), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_nil] = ACTIONS(2096), + [sym_id] = ACTIONS(2096), + [sym_instancetype] = ACTIONS(2096), + [sym_Class] = ACTIONS(2096), + [sym_SEL] = ACTIONS(2096), + [sym_IMP] = ACTIONS(2096), + [sym_BOOL] = ACTIONS(2096), + [sym_auto] = ACTIONS(2096), + [anon_sym_ATautoreleasepool] = ACTIONS(2098), + [anon_sym_ATsynchronized] = ACTIONS(2098), + [anon_sym_ATtry] = ACTIONS(2098), + [anon_sym_ATthrow] = ACTIONS(2098), + [anon_sym_ATselector] = ACTIONS(2098), + [anon_sym_ATencode] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2096), + [sym_YES] = ACTIONS(2096), + [sym_NO] = ACTIONS(2096), + [anon_sym___builtin_available] = ACTIONS(2096), + [anon_sym_ATavailable] = ACTIONS(2098), + [anon_sym_va_arg] = ACTIONS(2096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [787] = { + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2098), + [aux_sym_preproc_def_token1] = ACTIONS(2098), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_if_token2] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [aux_sym_preproc_else_token1] = ACTIONS(2096), + [aux_sym_preproc_elif_token1] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2096), + [anon_sym_out] = ACTIONS(2096), + [anon_sym_inout] = ACTIONS(2096), + [anon_sym_bycopy] = ACTIONS(2096), + [anon_sym_byref] = ACTIONS(2096), + [anon_sym_oneway] = ACTIONS(2096), + [anon_sym__Nullable] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym__Nullable_result] = ACTIONS(2096), + [anon_sym__Null_unspecified] = ACTIONS(2096), + [anon_sym___autoreleasing] = ACTIONS(2096), + [anon_sym___nullable] = ACTIONS(2096), + [anon_sym___nonnull] = ACTIONS(2096), + [anon_sym___strong] = ACTIONS(2096), + [anon_sym___weak] = ACTIONS(2096), + [anon_sym___bridge] = ACTIONS(2096), + [anon_sym___bridge_transfer] = ACTIONS(2096), + [anon_sym___bridge_retained] = ACTIONS(2096), + [anon_sym___unsafe_unretained] = ACTIONS(2096), + [anon_sym___block] = ACTIONS(2096), + [anon_sym___kindof] = ACTIONS(2096), + [anon_sym___unused] = ACTIONS(2096), + [anon_sym__Complex] = ACTIONS(2096), + [anon_sym___complex] = ACTIONS(2096), + [anon_sym_IBOutlet] = ACTIONS(2096), + [anon_sym_IBInspectable] = ACTIONS(2096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2096), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [sym_null] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2098), + [anon_sym_ATimport] = ACTIONS(2098), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2096), + [anon_sym_ATcompatibility_alias] = ACTIONS(2098), + [anon_sym_ATprotocol] = ACTIONS(2098), + [anon_sym_ATclass] = ACTIONS(2098), + [anon_sym_ATinterface] = ACTIONS(2098), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2096), + [sym_method_attribute_specifier] = ACTIONS(2096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE] = ACTIONS(2096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_API_AVAILABLE] = ACTIONS(2096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_API_DEPRECATED] = ACTIONS(2096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2096), + [anon_sym___deprecated_msg] = ACTIONS(2096), + [anon_sym___deprecated_enum_msg] = ACTIONS(2096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2096), + [anon_sym_ATimplementation] = ACTIONS(2098), + [anon_sym_NS_ENUM] = ACTIONS(2096), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2096), + [anon_sym_NS_OPTIONS] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(2096), + [anon_sym___typeof] = ACTIONS(2096), + [anon_sym___typeof__] = ACTIONS(2096), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_nil] = ACTIONS(2096), + [sym_id] = ACTIONS(2096), + [sym_instancetype] = ACTIONS(2096), + [sym_Class] = ACTIONS(2096), + [sym_SEL] = ACTIONS(2096), + [sym_IMP] = ACTIONS(2096), + [sym_BOOL] = ACTIONS(2096), + [sym_auto] = ACTIONS(2096), + [anon_sym_ATautoreleasepool] = ACTIONS(2098), + [anon_sym_ATsynchronized] = ACTIONS(2098), + [anon_sym_ATtry] = ACTIONS(2098), + [anon_sym_ATthrow] = ACTIONS(2098), + [anon_sym_ATselector] = ACTIONS(2098), + [anon_sym_ATencode] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2096), + [sym_YES] = ACTIONS(2096), + [sym_NO] = ACTIONS(2096), + [anon_sym___builtin_available] = ACTIONS(2096), + [anon_sym_ATavailable] = ACTIONS(2098), + [anon_sym_va_arg] = ACTIONS(2096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [788] = { + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2098), + [aux_sym_preproc_def_token1] = ACTIONS(2098), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_if_token2] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [aux_sym_preproc_else_token1] = ACTIONS(2096), + [aux_sym_preproc_elif_token1] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2096), + [anon_sym_out] = ACTIONS(2096), + [anon_sym_inout] = ACTIONS(2096), + [anon_sym_bycopy] = ACTIONS(2096), + [anon_sym_byref] = ACTIONS(2096), + [anon_sym_oneway] = ACTIONS(2096), + [anon_sym__Nullable] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym__Nullable_result] = ACTIONS(2096), + [anon_sym__Null_unspecified] = ACTIONS(2096), + [anon_sym___autoreleasing] = ACTIONS(2096), + [anon_sym___nullable] = ACTIONS(2096), + [anon_sym___nonnull] = ACTIONS(2096), + [anon_sym___strong] = ACTIONS(2096), + [anon_sym___weak] = ACTIONS(2096), + [anon_sym___bridge] = ACTIONS(2096), + [anon_sym___bridge_transfer] = ACTIONS(2096), + [anon_sym___bridge_retained] = ACTIONS(2096), + [anon_sym___unsafe_unretained] = ACTIONS(2096), + [anon_sym___block] = ACTIONS(2096), + [anon_sym___kindof] = ACTIONS(2096), + [anon_sym___unused] = ACTIONS(2096), + [anon_sym__Complex] = ACTIONS(2096), + [anon_sym___complex] = ACTIONS(2096), + [anon_sym_IBOutlet] = ACTIONS(2096), + [anon_sym_IBInspectable] = ACTIONS(2096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2096), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [sym_null] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2098), + [anon_sym_ATimport] = ACTIONS(2098), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2096), + [anon_sym_ATcompatibility_alias] = ACTIONS(2098), + [anon_sym_ATprotocol] = ACTIONS(2098), + [anon_sym_ATclass] = ACTIONS(2098), + [anon_sym_ATinterface] = ACTIONS(2098), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2096), + [sym_method_attribute_specifier] = ACTIONS(2096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE] = ACTIONS(2096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_API_AVAILABLE] = ACTIONS(2096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_API_DEPRECATED] = ACTIONS(2096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2096), + [anon_sym___deprecated_msg] = ACTIONS(2096), + [anon_sym___deprecated_enum_msg] = ACTIONS(2096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2096), + [anon_sym_ATimplementation] = ACTIONS(2098), + [anon_sym_NS_ENUM] = ACTIONS(2096), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2096), + [anon_sym_NS_OPTIONS] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(2096), + [anon_sym___typeof] = ACTIONS(2096), + [anon_sym___typeof__] = ACTIONS(2096), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_nil] = ACTIONS(2096), + [sym_id] = ACTIONS(2096), + [sym_instancetype] = ACTIONS(2096), + [sym_Class] = ACTIONS(2096), + [sym_SEL] = ACTIONS(2096), + [sym_IMP] = ACTIONS(2096), + [sym_BOOL] = ACTIONS(2096), + [sym_auto] = ACTIONS(2096), + [anon_sym_ATautoreleasepool] = ACTIONS(2098), + [anon_sym_ATsynchronized] = ACTIONS(2098), + [anon_sym_ATtry] = ACTIONS(2098), + [anon_sym_ATthrow] = ACTIONS(2098), + [anon_sym_ATselector] = ACTIONS(2098), + [anon_sym_ATencode] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2096), + [sym_YES] = ACTIONS(2096), + [sym_NO] = ACTIONS(2096), + [anon_sym___builtin_available] = ACTIONS(2096), + [anon_sym_ATavailable] = ACTIONS(2098), + [anon_sym_va_arg] = ACTIONS(2096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [789] = { + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2098), + [aux_sym_preproc_def_token1] = ACTIONS(2098), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_if_token2] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [aux_sym_preproc_else_token1] = ACTIONS(2096), + [aux_sym_preproc_elif_token1] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2096), + [anon_sym_out] = ACTIONS(2096), + [anon_sym_inout] = ACTIONS(2096), + [anon_sym_bycopy] = ACTIONS(2096), + [anon_sym_byref] = ACTIONS(2096), + [anon_sym_oneway] = ACTIONS(2096), + [anon_sym__Nullable] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym__Nullable_result] = ACTIONS(2096), + [anon_sym__Null_unspecified] = ACTIONS(2096), + [anon_sym___autoreleasing] = ACTIONS(2096), + [anon_sym___nullable] = ACTIONS(2096), + [anon_sym___nonnull] = ACTIONS(2096), + [anon_sym___strong] = ACTIONS(2096), + [anon_sym___weak] = ACTIONS(2096), + [anon_sym___bridge] = ACTIONS(2096), + [anon_sym___bridge_transfer] = ACTIONS(2096), + [anon_sym___bridge_retained] = ACTIONS(2096), + [anon_sym___unsafe_unretained] = ACTIONS(2096), + [anon_sym___block] = ACTIONS(2096), + [anon_sym___kindof] = ACTIONS(2096), + [anon_sym___unused] = ACTIONS(2096), + [anon_sym__Complex] = ACTIONS(2096), + [anon_sym___complex] = ACTIONS(2096), + [anon_sym_IBOutlet] = ACTIONS(2096), + [anon_sym_IBInspectable] = ACTIONS(2096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2096), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [sym_null] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2098), + [anon_sym_ATimport] = ACTIONS(2098), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2096), + [anon_sym_ATcompatibility_alias] = ACTIONS(2098), + [anon_sym_ATprotocol] = ACTIONS(2098), + [anon_sym_ATclass] = ACTIONS(2098), + [anon_sym_ATinterface] = ACTIONS(2098), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2096), + [sym_method_attribute_specifier] = ACTIONS(2096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE] = ACTIONS(2096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_API_AVAILABLE] = ACTIONS(2096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_API_DEPRECATED] = ACTIONS(2096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2096), + [anon_sym___deprecated_msg] = ACTIONS(2096), + [anon_sym___deprecated_enum_msg] = ACTIONS(2096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2096), + [anon_sym_ATimplementation] = ACTIONS(2098), + [anon_sym_NS_ENUM] = ACTIONS(2096), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2096), + [anon_sym_NS_OPTIONS] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(2096), + [anon_sym___typeof] = ACTIONS(2096), + [anon_sym___typeof__] = ACTIONS(2096), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_nil] = ACTIONS(2096), + [sym_id] = ACTIONS(2096), + [sym_instancetype] = ACTIONS(2096), + [sym_Class] = ACTIONS(2096), + [sym_SEL] = ACTIONS(2096), + [sym_IMP] = ACTIONS(2096), + [sym_BOOL] = ACTIONS(2096), + [sym_auto] = ACTIONS(2096), + [anon_sym_ATautoreleasepool] = ACTIONS(2098), + [anon_sym_ATsynchronized] = ACTIONS(2098), + [anon_sym_ATtry] = ACTIONS(2098), + [anon_sym_ATthrow] = ACTIONS(2098), + [anon_sym_ATselector] = ACTIONS(2098), + [anon_sym_ATencode] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2096), + [sym_YES] = ACTIONS(2096), + [sym_NO] = ACTIONS(2096), + [anon_sym___builtin_available] = ACTIONS(2096), + [anon_sym_ATavailable] = ACTIONS(2098), + [anon_sym_va_arg] = ACTIONS(2096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [790] = { + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2098), + [aux_sym_preproc_def_token1] = ACTIONS(2098), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_if_token2] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [aux_sym_preproc_else_token1] = ACTIONS(2096), + [aux_sym_preproc_elif_token1] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2096), + [anon_sym_out] = ACTIONS(2096), + [anon_sym_inout] = ACTIONS(2096), + [anon_sym_bycopy] = ACTIONS(2096), + [anon_sym_byref] = ACTIONS(2096), + [anon_sym_oneway] = ACTIONS(2096), + [anon_sym__Nullable] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym__Nullable_result] = ACTIONS(2096), + [anon_sym__Null_unspecified] = ACTIONS(2096), + [anon_sym___autoreleasing] = ACTIONS(2096), + [anon_sym___nullable] = ACTIONS(2096), + [anon_sym___nonnull] = ACTIONS(2096), + [anon_sym___strong] = ACTIONS(2096), + [anon_sym___weak] = ACTIONS(2096), + [anon_sym___bridge] = ACTIONS(2096), + [anon_sym___bridge_transfer] = ACTIONS(2096), + [anon_sym___bridge_retained] = ACTIONS(2096), + [anon_sym___unsafe_unretained] = ACTIONS(2096), + [anon_sym___block] = ACTIONS(2096), + [anon_sym___kindof] = ACTIONS(2096), + [anon_sym___unused] = ACTIONS(2096), + [anon_sym__Complex] = ACTIONS(2096), + [anon_sym___complex] = ACTIONS(2096), + [anon_sym_IBOutlet] = ACTIONS(2096), + [anon_sym_IBInspectable] = ACTIONS(2096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2096), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [sym_null] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2098), + [anon_sym_ATimport] = ACTIONS(2098), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2096), + [anon_sym_ATcompatibility_alias] = ACTIONS(2098), + [anon_sym_ATprotocol] = ACTIONS(2098), + [anon_sym_ATclass] = ACTIONS(2098), + [anon_sym_ATinterface] = ACTIONS(2098), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2096), + [sym_method_attribute_specifier] = ACTIONS(2096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE] = ACTIONS(2096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_API_AVAILABLE] = ACTIONS(2096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_API_DEPRECATED] = ACTIONS(2096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2096), + [anon_sym___deprecated_msg] = ACTIONS(2096), + [anon_sym___deprecated_enum_msg] = ACTIONS(2096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2096), + [anon_sym_ATimplementation] = ACTIONS(2098), + [anon_sym_NS_ENUM] = ACTIONS(2096), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2096), + [anon_sym_NS_OPTIONS] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(2096), + [anon_sym___typeof] = ACTIONS(2096), + [anon_sym___typeof__] = ACTIONS(2096), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_nil] = ACTIONS(2096), + [sym_id] = ACTIONS(2096), + [sym_instancetype] = ACTIONS(2096), + [sym_Class] = ACTIONS(2096), + [sym_SEL] = ACTIONS(2096), + [sym_IMP] = ACTIONS(2096), + [sym_BOOL] = ACTIONS(2096), + [sym_auto] = ACTIONS(2096), + [anon_sym_ATautoreleasepool] = ACTIONS(2098), + [anon_sym_ATsynchronized] = ACTIONS(2098), + [anon_sym_ATtry] = ACTIONS(2098), + [anon_sym_ATthrow] = ACTIONS(2098), + [anon_sym_ATselector] = ACTIONS(2098), + [anon_sym_ATencode] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2096), + [sym_YES] = ACTIONS(2096), + [sym_NO] = ACTIONS(2096), + [anon_sym___builtin_available] = ACTIONS(2096), + [anon_sym_ATavailable] = ACTIONS(2098), + [anon_sym_va_arg] = ACTIONS(2096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [791] = { + [sym_identifier] = ACTIONS(2100), + [aux_sym_preproc_include_token1] = ACTIONS(2102), + [aux_sym_preproc_def_token1] = ACTIONS(2102), + [aux_sym_preproc_if_token1] = ACTIONS(2100), + [aux_sym_preproc_if_token2] = ACTIONS(2100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2100), + [aux_sym_preproc_else_token1] = ACTIONS(2100), + [aux_sym_preproc_elif_token1] = ACTIONS(2100), + [anon_sym_LPAREN2] = ACTIONS(2102), + [anon_sym_BANG] = ACTIONS(2102), + [anon_sym_TILDE] = ACTIONS(2102), + [anon_sym_DASH] = ACTIONS(2100), + [anon_sym_PLUS] = ACTIONS(2100), + [anon_sym_STAR] = ACTIONS(2102), + [anon_sym_CARET] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_typedef] = ACTIONS(2100), + [anon_sym_extern] = ACTIONS(2100), + [anon_sym___attribute] = ACTIONS(2100), + [anon_sym___attribute__] = ACTIONS(2100), + [anon_sym___declspec] = ACTIONS(2100), + [anon_sym___cdecl] = ACTIONS(2100), + [anon_sym___clrcall] = ACTIONS(2100), + [anon_sym___stdcall] = ACTIONS(2100), + [anon_sym___fastcall] = ACTIONS(2100), + [anon_sym___thiscall] = ACTIONS(2100), + [anon_sym___vectorcall] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_LBRACK] = ACTIONS(2102), + [anon_sym_static] = ACTIONS(2100), + [anon_sym_auto] = ACTIONS(2100), + [anon_sym_register] = ACTIONS(2100), + [anon_sym_inline] = ACTIONS(2100), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2100), + [anon_sym_const] = ACTIONS(2100), + [anon_sym_volatile] = ACTIONS(2100), + [anon_sym_restrict] = ACTIONS(2100), + [anon_sym__Atomic] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2100), + [anon_sym_out] = ACTIONS(2100), + [anon_sym_inout] = ACTIONS(2100), + [anon_sym_bycopy] = ACTIONS(2100), + [anon_sym_byref] = ACTIONS(2100), + [anon_sym_oneway] = ACTIONS(2100), + [anon_sym__Nullable] = ACTIONS(2100), + [anon_sym__Nonnull] = ACTIONS(2100), + [anon_sym__Nullable_result] = ACTIONS(2100), + [anon_sym__Null_unspecified] = ACTIONS(2100), + [anon_sym___autoreleasing] = ACTIONS(2100), + [anon_sym___nullable] = ACTIONS(2100), + [anon_sym___nonnull] = ACTIONS(2100), + [anon_sym___strong] = ACTIONS(2100), + [anon_sym___weak] = ACTIONS(2100), + [anon_sym___bridge] = ACTIONS(2100), + [anon_sym___bridge_transfer] = ACTIONS(2100), + [anon_sym___bridge_retained] = ACTIONS(2100), + [anon_sym___unsafe_unretained] = ACTIONS(2100), + [anon_sym___block] = ACTIONS(2100), + [anon_sym___kindof] = ACTIONS(2100), + [anon_sym___unused] = ACTIONS(2100), + [anon_sym__Complex] = ACTIONS(2100), + [anon_sym___complex] = ACTIONS(2100), + [anon_sym_IBOutlet] = ACTIONS(2100), + [anon_sym_IBInspectable] = ACTIONS(2100), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2100), + [anon_sym_signed] = ACTIONS(2100), + [anon_sym_unsigned] = ACTIONS(2100), + [anon_sym_long] = ACTIONS(2100), + [anon_sym_short] = ACTIONS(2100), + [sym_primitive_type] = ACTIONS(2100), + [anon_sym_enum] = ACTIONS(2100), + [anon_sym_struct] = ACTIONS(2100), + [anon_sym_union] = ACTIONS(2100), + [anon_sym_if] = ACTIONS(2100), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_case] = ACTIONS(2100), + [anon_sym_default] = ACTIONS(2100), + [anon_sym_while] = ACTIONS(2100), + [anon_sym_do] = ACTIONS(2100), + [anon_sym_for] = ACTIONS(2100), + [anon_sym_return] = ACTIONS(2100), + [anon_sym_break] = ACTIONS(2100), + [anon_sym_continue] = ACTIONS(2100), + [anon_sym_goto] = ACTIONS(2100), + [anon_sym_DASH_DASH] = ACTIONS(2102), + [anon_sym_PLUS_PLUS] = ACTIONS(2102), + [anon_sym_sizeof] = ACTIONS(2100), + [sym_number_literal] = ACTIONS(2102), + [anon_sym_L_SQUOTE] = ACTIONS(2102), + [anon_sym_u_SQUOTE] = ACTIONS(2102), + [anon_sym_U_SQUOTE] = ACTIONS(2102), + [anon_sym_u8_SQUOTE] = ACTIONS(2102), + [anon_sym_SQUOTE] = ACTIONS(2102), + [anon_sym_L_DQUOTE] = ACTIONS(2102), + [anon_sym_u_DQUOTE] = ACTIONS(2102), + [anon_sym_U_DQUOTE] = ACTIONS(2102), + [anon_sym_u8_DQUOTE] = ACTIONS(2102), + [anon_sym_DQUOTE] = ACTIONS(2102), + [sym_true] = ACTIONS(2100), + [sym_false] = ACTIONS(2100), + [sym_null] = ACTIONS(2100), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2102), + [anon_sym_ATimport] = ACTIONS(2102), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2100), + [anon_sym_ATcompatibility_alias] = ACTIONS(2102), + [anon_sym_ATprotocol] = ACTIONS(2102), + [anon_sym_ATclass] = ACTIONS(2102), + [anon_sym_ATinterface] = ACTIONS(2102), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2100), + [sym_method_attribute_specifier] = ACTIONS(2100), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2100), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2100), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2100), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2100), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2100), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2100), + [anon_sym_NS_AVAILABLE] = ACTIONS(2100), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2100), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2100), + [anon_sym_API_AVAILABLE] = ACTIONS(2100), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2100), + [anon_sym_API_DEPRECATED] = ACTIONS(2100), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2100), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2100), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2100), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2100), + [anon_sym___deprecated_msg] = ACTIONS(2100), + [anon_sym___deprecated_enum_msg] = ACTIONS(2100), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2100), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2100), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2100), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2100), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2100), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2100), + [anon_sym_ATimplementation] = ACTIONS(2102), + [anon_sym_NS_ENUM] = ACTIONS(2100), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2100), + [anon_sym_NS_OPTIONS] = ACTIONS(2100), + [anon_sym_typeof] = ACTIONS(2100), + [anon_sym___typeof] = ACTIONS(2100), + [anon_sym___typeof__] = ACTIONS(2100), + [sym_self] = ACTIONS(2100), + [sym_super] = ACTIONS(2100), + [sym_nil] = ACTIONS(2100), + [sym_id] = ACTIONS(2100), + [sym_instancetype] = ACTIONS(2100), + [sym_Class] = ACTIONS(2100), + [sym_SEL] = ACTIONS(2100), + [sym_IMP] = ACTIONS(2100), + [sym_BOOL] = ACTIONS(2100), + [sym_auto] = ACTIONS(2100), + [anon_sym_ATautoreleasepool] = ACTIONS(2102), + [anon_sym_ATsynchronized] = ACTIONS(2102), + [anon_sym_ATtry] = ACTIONS(2102), + [anon_sym_ATthrow] = ACTIONS(2102), + [anon_sym_ATselector] = ACTIONS(2102), + [anon_sym_ATencode] = ACTIONS(2102), + [anon_sym_AT] = ACTIONS(2100), + [sym_YES] = ACTIONS(2100), + [sym_NO] = ACTIONS(2100), + [anon_sym___builtin_available] = ACTIONS(2100), + [anon_sym_ATavailable] = ACTIONS(2102), + [anon_sym_va_arg] = ACTIONS(2100), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [792] = { + [sym_identifier] = ACTIONS(2104), + [aux_sym_preproc_include_token1] = ACTIONS(2106), + [aux_sym_preproc_def_token1] = ACTIONS(2106), + [aux_sym_preproc_if_token1] = ACTIONS(2104), + [aux_sym_preproc_if_token2] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2104), + [aux_sym_preproc_else_token1] = ACTIONS(2104), + [aux_sym_preproc_elif_token1] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_CARET] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_typedef] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2104), + [anon_sym___attribute] = ACTIONS(2104), + [anon_sym___attribute__] = ACTIONS(2104), + [anon_sym___declspec] = ACTIONS(2104), + [anon_sym___cdecl] = ACTIONS(2104), + [anon_sym___clrcall] = ACTIONS(2104), + [anon_sym___stdcall] = ACTIONS(2104), + [anon_sym___fastcall] = ACTIONS(2104), + [anon_sym___thiscall] = ACTIONS(2104), + [anon_sym___vectorcall] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_auto] = ACTIONS(2104), + [anon_sym_register] = ACTIONS(2104), + [anon_sym_inline] = ACTIONS(2104), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_volatile] = ACTIONS(2104), + [anon_sym_restrict] = ACTIONS(2104), + [anon_sym__Atomic] = ACTIONS(2104), + [anon_sym_in] = ACTIONS(2104), + [anon_sym_out] = ACTIONS(2104), + [anon_sym_inout] = ACTIONS(2104), + [anon_sym_bycopy] = ACTIONS(2104), + [anon_sym_byref] = ACTIONS(2104), + [anon_sym_oneway] = ACTIONS(2104), + [anon_sym__Nullable] = ACTIONS(2104), + [anon_sym__Nonnull] = ACTIONS(2104), + [anon_sym__Nullable_result] = ACTIONS(2104), + [anon_sym__Null_unspecified] = ACTIONS(2104), + [anon_sym___autoreleasing] = ACTIONS(2104), + [anon_sym___nullable] = ACTIONS(2104), + [anon_sym___nonnull] = ACTIONS(2104), + [anon_sym___strong] = ACTIONS(2104), + [anon_sym___weak] = ACTIONS(2104), + [anon_sym___bridge] = ACTIONS(2104), + [anon_sym___bridge_transfer] = ACTIONS(2104), + [anon_sym___bridge_retained] = ACTIONS(2104), + [anon_sym___unsafe_unretained] = ACTIONS(2104), + [anon_sym___block] = ACTIONS(2104), + [anon_sym___kindof] = ACTIONS(2104), + [anon_sym___unused] = ACTIONS(2104), + [anon_sym__Complex] = ACTIONS(2104), + [anon_sym___complex] = ACTIONS(2104), + [anon_sym_IBOutlet] = ACTIONS(2104), + [anon_sym_IBInspectable] = ACTIONS(2104), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2104), + [anon_sym_signed] = ACTIONS(2104), + [anon_sym_unsigned] = ACTIONS(2104), + [anon_sym_long] = ACTIONS(2104), + [anon_sym_short] = ACTIONS(2104), + [sym_primitive_type] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2104), + [anon_sym_struct] = ACTIONS(2104), + [anon_sym_union] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_switch] = ACTIONS(2104), + [anon_sym_case] = ACTIONS(2104), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_goto] = ACTIONS(2104), + [anon_sym_DASH_DASH] = ACTIONS(2106), + [anon_sym_PLUS_PLUS] = ACTIONS(2106), + [anon_sym_sizeof] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2106), + [anon_sym_u_SQUOTE] = ACTIONS(2106), + [anon_sym_U_SQUOTE] = ACTIONS(2106), + [anon_sym_u8_SQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_L_DQUOTE] = ACTIONS(2106), + [anon_sym_u_DQUOTE] = ACTIONS(2106), + [anon_sym_U_DQUOTE] = ACTIONS(2106), + [anon_sym_u8_DQUOTE] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2106), + [sym_true] = ACTIONS(2104), + [sym_false] = ACTIONS(2104), + [sym_null] = ACTIONS(2104), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2106), + [anon_sym_ATimport] = ACTIONS(2106), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2104), + [anon_sym_ATcompatibility_alias] = ACTIONS(2106), + [anon_sym_ATprotocol] = ACTIONS(2106), + [anon_sym_ATclass] = ACTIONS(2106), + [anon_sym_ATinterface] = ACTIONS(2106), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2104), + [sym_method_attribute_specifier] = ACTIONS(2104), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2104), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2104), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2104), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_NS_AVAILABLE] = ACTIONS(2104), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2104), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_API_AVAILABLE] = ACTIONS(2104), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_API_DEPRECATED] = ACTIONS(2104), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2104), + [anon_sym___deprecated_msg] = ACTIONS(2104), + [anon_sym___deprecated_enum_msg] = ACTIONS(2104), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2104), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2104), + [anon_sym_ATimplementation] = ACTIONS(2106), + [anon_sym_NS_ENUM] = ACTIONS(2104), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2104), + [anon_sym_NS_OPTIONS] = ACTIONS(2104), + [anon_sym_typeof] = ACTIONS(2104), + [anon_sym___typeof] = ACTIONS(2104), + [anon_sym___typeof__] = ACTIONS(2104), + [sym_self] = ACTIONS(2104), + [sym_super] = ACTIONS(2104), + [sym_nil] = ACTIONS(2104), + [sym_id] = ACTIONS(2104), + [sym_instancetype] = ACTIONS(2104), + [sym_Class] = ACTIONS(2104), + [sym_SEL] = ACTIONS(2104), + [sym_IMP] = ACTIONS(2104), + [sym_BOOL] = ACTIONS(2104), + [sym_auto] = ACTIONS(2104), + [anon_sym_ATautoreleasepool] = ACTIONS(2106), + [anon_sym_ATsynchronized] = ACTIONS(2106), + [anon_sym_ATtry] = ACTIONS(2106), + [anon_sym_ATthrow] = ACTIONS(2106), + [anon_sym_ATselector] = ACTIONS(2106), + [anon_sym_ATencode] = ACTIONS(2106), + [anon_sym_AT] = ACTIONS(2104), + [sym_YES] = ACTIONS(2104), + [sym_NO] = ACTIONS(2104), + [anon_sym___builtin_available] = ACTIONS(2104), + [anon_sym_ATavailable] = ACTIONS(2106), + [anon_sym_va_arg] = ACTIONS(2104), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [793] = { + [sym_identifier] = ACTIONS(2104), + [aux_sym_preproc_include_token1] = ACTIONS(2106), + [aux_sym_preproc_def_token1] = ACTIONS(2106), + [aux_sym_preproc_if_token1] = ACTIONS(2104), + [aux_sym_preproc_if_token2] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2104), + [aux_sym_preproc_else_token1] = ACTIONS(2104), + [aux_sym_preproc_elif_token1] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_CARET] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_typedef] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2104), + [anon_sym___attribute] = ACTIONS(2104), + [anon_sym___attribute__] = ACTIONS(2104), + [anon_sym___declspec] = ACTIONS(2104), + [anon_sym___cdecl] = ACTIONS(2104), + [anon_sym___clrcall] = ACTIONS(2104), + [anon_sym___stdcall] = ACTIONS(2104), + [anon_sym___fastcall] = ACTIONS(2104), + [anon_sym___thiscall] = ACTIONS(2104), + [anon_sym___vectorcall] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_auto] = ACTIONS(2104), + [anon_sym_register] = ACTIONS(2104), + [anon_sym_inline] = ACTIONS(2104), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_volatile] = ACTIONS(2104), + [anon_sym_restrict] = ACTIONS(2104), + [anon_sym__Atomic] = ACTIONS(2104), + [anon_sym_in] = ACTIONS(2104), + [anon_sym_out] = ACTIONS(2104), + [anon_sym_inout] = ACTIONS(2104), + [anon_sym_bycopy] = ACTIONS(2104), + [anon_sym_byref] = ACTIONS(2104), + [anon_sym_oneway] = ACTIONS(2104), + [anon_sym__Nullable] = ACTIONS(2104), + [anon_sym__Nonnull] = ACTIONS(2104), + [anon_sym__Nullable_result] = ACTIONS(2104), + [anon_sym__Null_unspecified] = ACTIONS(2104), + [anon_sym___autoreleasing] = ACTIONS(2104), + [anon_sym___nullable] = ACTIONS(2104), + [anon_sym___nonnull] = ACTIONS(2104), + [anon_sym___strong] = ACTIONS(2104), + [anon_sym___weak] = ACTIONS(2104), + [anon_sym___bridge] = ACTIONS(2104), + [anon_sym___bridge_transfer] = ACTIONS(2104), + [anon_sym___bridge_retained] = ACTIONS(2104), + [anon_sym___unsafe_unretained] = ACTIONS(2104), + [anon_sym___block] = ACTIONS(2104), + [anon_sym___kindof] = ACTIONS(2104), + [anon_sym___unused] = ACTIONS(2104), + [anon_sym__Complex] = ACTIONS(2104), + [anon_sym___complex] = ACTIONS(2104), + [anon_sym_IBOutlet] = ACTIONS(2104), + [anon_sym_IBInspectable] = ACTIONS(2104), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2104), + [anon_sym_signed] = ACTIONS(2104), + [anon_sym_unsigned] = ACTIONS(2104), + [anon_sym_long] = ACTIONS(2104), + [anon_sym_short] = ACTIONS(2104), + [sym_primitive_type] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2104), + [anon_sym_struct] = ACTIONS(2104), + [anon_sym_union] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_switch] = ACTIONS(2104), + [anon_sym_case] = ACTIONS(2104), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_goto] = ACTIONS(2104), + [anon_sym_DASH_DASH] = ACTIONS(2106), + [anon_sym_PLUS_PLUS] = ACTIONS(2106), + [anon_sym_sizeof] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2106), + [anon_sym_u_SQUOTE] = ACTIONS(2106), + [anon_sym_U_SQUOTE] = ACTIONS(2106), + [anon_sym_u8_SQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_L_DQUOTE] = ACTIONS(2106), + [anon_sym_u_DQUOTE] = ACTIONS(2106), + [anon_sym_U_DQUOTE] = ACTIONS(2106), + [anon_sym_u8_DQUOTE] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2106), + [sym_true] = ACTIONS(2104), + [sym_false] = ACTIONS(2104), + [sym_null] = ACTIONS(2104), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2106), + [anon_sym_ATimport] = ACTIONS(2106), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2104), + [anon_sym_ATcompatibility_alias] = ACTIONS(2106), + [anon_sym_ATprotocol] = ACTIONS(2106), + [anon_sym_ATclass] = ACTIONS(2106), + [anon_sym_ATinterface] = ACTIONS(2106), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2104), + [sym_method_attribute_specifier] = ACTIONS(2104), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2104), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2104), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2104), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_NS_AVAILABLE] = ACTIONS(2104), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2104), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_API_AVAILABLE] = ACTIONS(2104), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_API_DEPRECATED] = ACTIONS(2104), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2104), + [anon_sym___deprecated_msg] = ACTIONS(2104), + [anon_sym___deprecated_enum_msg] = ACTIONS(2104), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2104), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2104), + [anon_sym_ATimplementation] = ACTIONS(2106), + [anon_sym_NS_ENUM] = ACTIONS(2104), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2104), + [anon_sym_NS_OPTIONS] = ACTIONS(2104), + [anon_sym_typeof] = ACTIONS(2104), + [anon_sym___typeof] = ACTIONS(2104), + [anon_sym___typeof__] = ACTIONS(2104), + [sym_self] = ACTIONS(2104), + [sym_super] = ACTIONS(2104), + [sym_nil] = ACTIONS(2104), + [sym_id] = ACTIONS(2104), + [sym_instancetype] = ACTIONS(2104), + [sym_Class] = ACTIONS(2104), + [sym_SEL] = ACTIONS(2104), + [sym_IMP] = ACTIONS(2104), + [sym_BOOL] = ACTIONS(2104), + [sym_auto] = ACTIONS(2104), + [anon_sym_ATautoreleasepool] = ACTIONS(2106), + [anon_sym_ATsynchronized] = ACTIONS(2106), + [anon_sym_ATtry] = ACTIONS(2106), + [anon_sym_ATthrow] = ACTIONS(2106), + [anon_sym_ATselector] = ACTIONS(2106), + [anon_sym_ATencode] = ACTIONS(2106), + [anon_sym_AT] = ACTIONS(2104), + [sym_YES] = ACTIONS(2104), + [sym_NO] = ACTIONS(2104), + [anon_sym___builtin_available] = ACTIONS(2104), + [anon_sym_ATavailable] = ACTIONS(2106), + [anon_sym_va_arg] = ACTIONS(2104), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [794] = { + [sym_identifier] = ACTIONS(2104), + [aux_sym_preproc_include_token1] = ACTIONS(2106), + [aux_sym_preproc_def_token1] = ACTIONS(2106), + [aux_sym_preproc_if_token1] = ACTIONS(2104), + [aux_sym_preproc_if_token2] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2104), + [aux_sym_preproc_else_token1] = ACTIONS(2104), + [aux_sym_preproc_elif_token1] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_CARET] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_typedef] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2104), + [anon_sym___attribute] = ACTIONS(2104), + [anon_sym___attribute__] = ACTIONS(2104), + [anon_sym___declspec] = ACTIONS(2104), + [anon_sym___cdecl] = ACTIONS(2104), + [anon_sym___clrcall] = ACTIONS(2104), + [anon_sym___stdcall] = ACTIONS(2104), + [anon_sym___fastcall] = ACTIONS(2104), + [anon_sym___thiscall] = ACTIONS(2104), + [anon_sym___vectorcall] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_auto] = ACTIONS(2104), + [anon_sym_register] = ACTIONS(2104), + [anon_sym_inline] = ACTIONS(2104), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_volatile] = ACTIONS(2104), + [anon_sym_restrict] = ACTIONS(2104), + [anon_sym__Atomic] = ACTIONS(2104), + [anon_sym_in] = ACTIONS(2104), + [anon_sym_out] = ACTIONS(2104), + [anon_sym_inout] = ACTIONS(2104), + [anon_sym_bycopy] = ACTIONS(2104), + [anon_sym_byref] = ACTIONS(2104), + [anon_sym_oneway] = ACTIONS(2104), + [anon_sym__Nullable] = ACTIONS(2104), + [anon_sym__Nonnull] = ACTIONS(2104), + [anon_sym__Nullable_result] = ACTIONS(2104), + [anon_sym__Null_unspecified] = ACTIONS(2104), + [anon_sym___autoreleasing] = ACTIONS(2104), + [anon_sym___nullable] = ACTIONS(2104), + [anon_sym___nonnull] = ACTIONS(2104), + [anon_sym___strong] = ACTIONS(2104), + [anon_sym___weak] = ACTIONS(2104), + [anon_sym___bridge] = ACTIONS(2104), + [anon_sym___bridge_transfer] = ACTIONS(2104), + [anon_sym___bridge_retained] = ACTIONS(2104), + [anon_sym___unsafe_unretained] = ACTIONS(2104), + [anon_sym___block] = ACTIONS(2104), + [anon_sym___kindof] = ACTIONS(2104), + [anon_sym___unused] = ACTIONS(2104), + [anon_sym__Complex] = ACTIONS(2104), + [anon_sym___complex] = ACTIONS(2104), + [anon_sym_IBOutlet] = ACTIONS(2104), + [anon_sym_IBInspectable] = ACTIONS(2104), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2104), + [anon_sym_signed] = ACTIONS(2104), + [anon_sym_unsigned] = ACTIONS(2104), + [anon_sym_long] = ACTIONS(2104), + [anon_sym_short] = ACTIONS(2104), + [sym_primitive_type] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2104), + [anon_sym_struct] = ACTIONS(2104), + [anon_sym_union] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_switch] = ACTIONS(2104), + [anon_sym_case] = ACTIONS(2104), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_goto] = ACTIONS(2104), + [anon_sym_DASH_DASH] = ACTIONS(2106), + [anon_sym_PLUS_PLUS] = ACTIONS(2106), + [anon_sym_sizeof] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2106), + [anon_sym_u_SQUOTE] = ACTIONS(2106), + [anon_sym_U_SQUOTE] = ACTIONS(2106), + [anon_sym_u8_SQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_L_DQUOTE] = ACTIONS(2106), + [anon_sym_u_DQUOTE] = ACTIONS(2106), + [anon_sym_U_DQUOTE] = ACTIONS(2106), + [anon_sym_u8_DQUOTE] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2106), + [sym_true] = ACTIONS(2104), + [sym_false] = ACTIONS(2104), + [sym_null] = ACTIONS(2104), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2106), + [anon_sym_ATimport] = ACTIONS(2106), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2104), + [anon_sym_ATcompatibility_alias] = ACTIONS(2106), + [anon_sym_ATprotocol] = ACTIONS(2106), + [anon_sym_ATclass] = ACTIONS(2106), + [anon_sym_ATinterface] = ACTIONS(2106), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2104), + [sym_method_attribute_specifier] = ACTIONS(2104), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2104), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2104), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2104), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_NS_AVAILABLE] = ACTIONS(2104), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2104), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_API_AVAILABLE] = ACTIONS(2104), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_API_DEPRECATED] = ACTIONS(2104), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2104), + [anon_sym___deprecated_msg] = ACTIONS(2104), + [anon_sym___deprecated_enum_msg] = ACTIONS(2104), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2104), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2104), + [anon_sym_ATimplementation] = ACTIONS(2106), + [anon_sym_NS_ENUM] = ACTIONS(2104), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2104), + [anon_sym_NS_OPTIONS] = ACTIONS(2104), + [anon_sym_typeof] = ACTIONS(2104), + [anon_sym___typeof] = ACTIONS(2104), + [anon_sym___typeof__] = ACTIONS(2104), + [sym_self] = ACTIONS(2104), + [sym_super] = ACTIONS(2104), + [sym_nil] = ACTIONS(2104), + [sym_id] = ACTIONS(2104), + [sym_instancetype] = ACTIONS(2104), + [sym_Class] = ACTIONS(2104), + [sym_SEL] = ACTIONS(2104), + [sym_IMP] = ACTIONS(2104), + [sym_BOOL] = ACTIONS(2104), + [sym_auto] = ACTIONS(2104), + [anon_sym_ATautoreleasepool] = ACTIONS(2106), + [anon_sym_ATsynchronized] = ACTIONS(2106), + [anon_sym_ATtry] = ACTIONS(2106), + [anon_sym_ATthrow] = ACTIONS(2106), + [anon_sym_ATselector] = ACTIONS(2106), + [anon_sym_ATencode] = ACTIONS(2106), + [anon_sym_AT] = ACTIONS(2104), + [sym_YES] = ACTIONS(2104), + [sym_NO] = ACTIONS(2104), + [anon_sym___builtin_available] = ACTIONS(2104), + [anon_sym_ATavailable] = ACTIONS(2106), + [anon_sym_va_arg] = ACTIONS(2104), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [795] = { + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_include_token1] = ACTIONS(2110), + [aux_sym_preproc_def_token1] = ACTIONS(2110), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token2] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [aux_sym_preproc_else_token1] = ACTIONS(2108), + [aux_sym_preproc_elif_token1] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___cdecl] = ACTIONS(2108), + [anon_sym___clrcall] = ACTIONS(2108), + [anon_sym___stdcall] = ACTIONS(2108), + [anon_sym___fastcall] = ACTIONS(2108), + [anon_sym___thiscall] = ACTIONS(2108), + [anon_sym___vectorcall] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_auto] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2108), + [anon_sym_out] = ACTIONS(2108), + [anon_sym_inout] = ACTIONS(2108), + [anon_sym_bycopy] = ACTIONS(2108), + [anon_sym_byref] = ACTIONS(2108), + [anon_sym_oneway] = ACTIONS(2108), + [anon_sym__Nullable] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym__Nullable_result] = ACTIONS(2108), + [anon_sym__Null_unspecified] = ACTIONS(2108), + [anon_sym___autoreleasing] = ACTIONS(2108), + [anon_sym___nullable] = ACTIONS(2108), + [anon_sym___nonnull] = ACTIONS(2108), + [anon_sym___strong] = ACTIONS(2108), + [anon_sym___weak] = ACTIONS(2108), + [anon_sym___bridge] = ACTIONS(2108), + [anon_sym___bridge_transfer] = ACTIONS(2108), + [anon_sym___bridge_retained] = ACTIONS(2108), + [anon_sym___unsafe_unretained] = ACTIONS(2108), + [anon_sym___block] = ACTIONS(2108), + [anon_sym___kindof] = ACTIONS(2108), + [anon_sym___unused] = ACTIONS(2108), + [anon_sym__Complex] = ACTIONS(2108), + [anon_sym___complex] = ACTIONS(2108), + [anon_sym_IBOutlet] = ACTIONS(2108), + [anon_sym_IBInspectable] = ACTIONS(2108), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2108), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [sym_null] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2110), + [anon_sym_ATimport] = ACTIONS(2110), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2108), + [anon_sym_ATcompatibility_alias] = ACTIONS(2110), + [anon_sym_ATprotocol] = ACTIONS(2110), + [anon_sym_ATclass] = ACTIONS(2110), + [anon_sym_ATinterface] = ACTIONS(2110), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2108), + [sym_method_attribute_specifier] = ACTIONS(2108), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2108), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE] = ACTIONS(2108), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_API_AVAILABLE] = ACTIONS(2108), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_API_DEPRECATED] = ACTIONS(2108), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2108), + [anon_sym___deprecated_msg] = ACTIONS(2108), + [anon_sym___deprecated_enum_msg] = ACTIONS(2108), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2108), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2108), + [anon_sym_ATimplementation] = ACTIONS(2110), + [anon_sym_NS_ENUM] = ACTIONS(2108), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2108), + [anon_sym_NS_OPTIONS] = ACTIONS(2108), + [anon_sym_typeof] = ACTIONS(2108), + [anon_sym___typeof] = ACTIONS(2108), + [anon_sym___typeof__] = ACTIONS(2108), + [sym_self] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_nil] = ACTIONS(2108), + [sym_id] = ACTIONS(2108), + [sym_instancetype] = ACTIONS(2108), + [sym_Class] = ACTIONS(2108), + [sym_SEL] = ACTIONS(2108), + [sym_IMP] = ACTIONS(2108), + [sym_BOOL] = ACTIONS(2108), + [sym_auto] = ACTIONS(2108), + [anon_sym_ATautoreleasepool] = ACTIONS(2110), + [anon_sym_ATsynchronized] = ACTIONS(2110), + [anon_sym_ATtry] = ACTIONS(2110), + [anon_sym_ATthrow] = ACTIONS(2110), + [anon_sym_ATselector] = ACTIONS(2110), + [anon_sym_ATencode] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2108), + [sym_YES] = ACTIONS(2108), + [sym_NO] = ACTIONS(2108), + [anon_sym___builtin_available] = ACTIONS(2108), + [anon_sym_ATavailable] = ACTIONS(2110), + [anon_sym_va_arg] = ACTIONS(2108), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [796] = { + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_include_token1] = ACTIONS(2110), + [aux_sym_preproc_def_token1] = ACTIONS(2110), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token2] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [aux_sym_preproc_else_token1] = ACTIONS(2108), + [aux_sym_preproc_elif_token1] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___cdecl] = ACTIONS(2108), + [anon_sym___clrcall] = ACTIONS(2108), + [anon_sym___stdcall] = ACTIONS(2108), + [anon_sym___fastcall] = ACTIONS(2108), + [anon_sym___thiscall] = ACTIONS(2108), + [anon_sym___vectorcall] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_auto] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2108), + [anon_sym_out] = ACTIONS(2108), + [anon_sym_inout] = ACTIONS(2108), + [anon_sym_bycopy] = ACTIONS(2108), + [anon_sym_byref] = ACTIONS(2108), + [anon_sym_oneway] = ACTIONS(2108), + [anon_sym__Nullable] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym__Nullable_result] = ACTIONS(2108), + [anon_sym__Null_unspecified] = ACTIONS(2108), + [anon_sym___autoreleasing] = ACTIONS(2108), + [anon_sym___nullable] = ACTIONS(2108), + [anon_sym___nonnull] = ACTIONS(2108), + [anon_sym___strong] = ACTIONS(2108), + [anon_sym___weak] = ACTIONS(2108), + [anon_sym___bridge] = ACTIONS(2108), + [anon_sym___bridge_transfer] = ACTIONS(2108), + [anon_sym___bridge_retained] = ACTIONS(2108), + [anon_sym___unsafe_unretained] = ACTIONS(2108), + [anon_sym___block] = ACTIONS(2108), + [anon_sym___kindof] = ACTIONS(2108), + [anon_sym___unused] = ACTIONS(2108), + [anon_sym__Complex] = ACTIONS(2108), + [anon_sym___complex] = ACTIONS(2108), + [anon_sym_IBOutlet] = ACTIONS(2108), + [anon_sym_IBInspectable] = ACTIONS(2108), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2108), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [sym_null] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2110), + [anon_sym_ATimport] = ACTIONS(2110), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2108), + [anon_sym_ATcompatibility_alias] = ACTIONS(2110), + [anon_sym_ATprotocol] = ACTIONS(2110), + [anon_sym_ATclass] = ACTIONS(2110), + [anon_sym_ATinterface] = ACTIONS(2110), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2108), + [sym_method_attribute_specifier] = ACTIONS(2108), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2108), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE] = ACTIONS(2108), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_API_AVAILABLE] = ACTIONS(2108), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_API_DEPRECATED] = ACTIONS(2108), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2108), + [anon_sym___deprecated_msg] = ACTIONS(2108), + [anon_sym___deprecated_enum_msg] = ACTIONS(2108), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2108), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2108), + [anon_sym_ATimplementation] = ACTIONS(2110), + [anon_sym_NS_ENUM] = ACTIONS(2108), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2108), + [anon_sym_NS_OPTIONS] = ACTIONS(2108), + [anon_sym_typeof] = ACTIONS(2108), + [anon_sym___typeof] = ACTIONS(2108), + [anon_sym___typeof__] = ACTIONS(2108), + [sym_self] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_nil] = ACTIONS(2108), + [sym_id] = ACTIONS(2108), + [sym_instancetype] = ACTIONS(2108), + [sym_Class] = ACTIONS(2108), + [sym_SEL] = ACTIONS(2108), + [sym_IMP] = ACTIONS(2108), + [sym_BOOL] = ACTIONS(2108), + [sym_auto] = ACTIONS(2108), + [anon_sym_ATautoreleasepool] = ACTIONS(2110), + [anon_sym_ATsynchronized] = ACTIONS(2110), + [anon_sym_ATtry] = ACTIONS(2110), + [anon_sym_ATthrow] = ACTIONS(2110), + [anon_sym_ATselector] = ACTIONS(2110), + [anon_sym_ATencode] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2108), + [sym_YES] = ACTIONS(2108), + [sym_NO] = ACTIONS(2108), + [anon_sym___builtin_available] = ACTIONS(2108), + [anon_sym_ATavailable] = ACTIONS(2110), + [anon_sym_va_arg] = ACTIONS(2108), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [797] = { + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_include_token1] = ACTIONS(2110), + [aux_sym_preproc_def_token1] = ACTIONS(2110), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token2] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [aux_sym_preproc_else_token1] = ACTIONS(2108), + [aux_sym_preproc_elif_token1] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___cdecl] = ACTIONS(2108), + [anon_sym___clrcall] = ACTIONS(2108), + [anon_sym___stdcall] = ACTIONS(2108), + [anon_sym___fastcall] = ACTIONS(2108), + [anon_sym___thiscall] = ACTIONS(2108), + [anon_sym___vectorcall] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_auto] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2108), + [anon_sym_out] = ACTIONS(2108), + [anon_sym_inout] = ACTIONS(2108), + [anon_sym_bycopy] = ACTIONS(2108), + [anon_sym_byref] = ACTIONS(2108), + [anon_sym_oneway] = ACTIONS(2108), + [anon_sym__Nullable] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym__Nullable_result] = ACTIONS(2108), + [anon_sym__Null_unspecified] = ACTIONS(2108), + [anon_sym___autoreleasing] = ACTIONS(2108), + [anon_sym___nullable] = ACTIONS(2108), + [anon_sym___nonnull] = ACTIONS(2108), + [anon_sym___strong] = ACTIONS(2108), + [anon_sym___weak] = ACTIONS(2108), + [anon_sym___bridge] = ACTIONS(2108), + [anon_sym___bridge_transfer] = ACTIONS(2108), + [anon_sym___bridge_retained] = ACTIONS(2108), + [anon_sym___unsafe_unretained] = ACTIONS(2108), + [anon_sym___block] = ACTIONS(2108), + [anon_sym___kindof] = ACTIONS(2108), + [anon_sym___unused] = ACTIONS(2108), + [anon_sym__Complex] = ACTIONS(2108), + [anon_sym___complex] = ACTIONS(2108), + [anon_sym_IBOutlet] = ACTIONS(2108), + [anon_sym_IBInspectable] = ACTIONS(2108), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2108), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [sym_null] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2110), + [anon_sym_ATimport] = ACTIONS(2110), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2108), + [anon_sym_ATcompatibility_alias] = ACTIONS(2110), + [anon_sym_ATprotocol] = ACTIONS(2110), + [anon_sym_ATclass] = ACTIONS(2110), + [anon_sym_ATinterface] = ACTIONS(2110), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2108), + [sym_method_attribute_specifier] = ACTIONS(2108), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2108), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE] = ACTIONS(2108), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_API_AVAILABLE] = ACTIONS(2108), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_API_DEPRECATED] = ACTIONS(2108), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2108), + [anon_sym___deprecated_msg] = ACTIONS(2108), + [anon_sym___deprecated_enum_msg] = ACTIONS(2108), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2108), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2108), + [anon_sym_ATimplementation] = ACTIONS(2110), + [anon_sym_NS_ENUM] = ACTIONS(2108), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2108), + [anon_sym_NS_OPTIONS] = ACTIONS(2108), + [anon_sym_typeof] = ACTIONS(2108), + [anon_sym___typeof] = ACTIONS(2108), + [anon_sym___typeof__] = ACTIONS(2108), + [sym_self] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_nil] = ACTIONS(2108), + [sym_id] = ACTIONS(2108), + [sym_instancetype] = ACTIONS(2108), + [sym_Class] = ACTIONS(2108), + [sym_SEL] = ACTIONS(2108), + [sym_IMP] = ACTIONS(2108), + [sym_BOOL] = ACTIONS(2108), + [sym_auto] = ACTIONS(2108), + [anon_sym_ATautoreleasepool] = ACTIONS(2110), + [anon_sym_ATsynchronized] = ACTIONS(2110), + [anon_sym_ATtry] = ACTIONS(2110), + [anon_sym_ATthrow] = ACTIONS(2110), + [anon_sym_ATselector] = ACTIONS(2110), + [anon_sym_ATencode] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2108), + [sym_YES] = ACTIONS(2108), + [sym_NO] = ACTIONS(2108), + [anon_sym___builtin_available] = ACTIONS(2108), + [anon_sym_ATavailable] = ACTIONS(2110), + [anon_sym_va_arg] = ACTIONS(2108), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [798] = { + [sym_identifier] = ACTIONS(2112), + [aux_sym_preproc_include_token1] = ACTIONS(2114), + [aux_sym_preproc_def_token1] = ACTIONS(2114), + [aux_sym_preproc_if_token1] = ACTIONS(2112), + [aux_sym_preproc_if_token2] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2112), + [aux_sym_preproc_else_token1] = ACTIONS(2112), + [aux_sym_preproc_elif_token1] = ACTIONS(2112), + [anon_sym_LPAREN2] = ACTIONS(2114), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2112), + [anon_sym_PLUS] = ACTIONS(2112), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_CARET] = ACTIONS(2114), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_typedef] = ACTIONS(2112), + [anon_sym_extern] = ACTIONS(2112), + [anon_sym___attribute] = ACTIONS(2112), + [anon_sym___attribute__] = ACTIONS(2112), + [anon_sym___declspec] = ACTIONS(2112), + [anon_sym___cdecl] = ACTIONS(2112), + [anon_sym___clrcall] = ACTIONS(2112), + [anon_sym___stdcall] = ACTIONS(2112), + [anon_sym___fastcall] = ACTIONS(2112), + [anon_sym___thiscall] = ACTIONS(2112), + [anon_sym___vectorcall] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2112), + [anon_sym_auto] = ACTIONS(2112), + [anon_sym_register] = ACTIONS(2112), + [anon_sym_inline] = ACTIONS(2112), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2112), + [anon_sym_const] = ACTIONS(2112), + [anon_sym_volatile] = ACTIONS(2112), + [anon_sym_restrict] = ACTIONS(2112), + [anon_sym__Atomic] = ACTIONS(2112), + [anon_sym_in] = ACTIONS(2112), + [anon_sym_out] = ACTIONS(2112), + [anon_sym_inout] = ACTIONS(2112), + [anon_sym_bycopy] = ACTIONS(2112), + [anon_sym_byref] = ACTIONS(2112), + [anon_sym_oneway] = ACTIONS(2112), + [anon_sym__Nullable] = ACTIONS(2112), + [anon_sym__Nonnull] = ACTIONS(2112), + [anon_sym__Nullable_result] = ACTIONS(2112), + [anon_sym__Null_unspecified] = ACTIONS(2112), + [anon_sym___autoreleasing] = ACTIONS(2112), + [anon_sym___nullable] = ACTIONS(2112), + [anon_sym___nonnull] = ACTIONS(2112), + [anon_sym___strong] = ACTIONS(2112), + [anon_sym___weak] = ACTIONS(2112), + [anon_sym___bridge] = ACTIONS(2112), + [anon_sym___bridge_transfer] = ACTIONS(2112), + [anon_sym___bridge_retained] = ACTIONS(2112), + [anon_sym___unsafe_unretained] = ACTIONS(2112), + [anon_sym___block] = ACTIONS(2112), + [anon_sym___kindof] = ACTIONS(2112), + [anon_sym___unused] = ACTIONS(2112), + [anon_sym__Complex] = ACTIONS(2112), + [anon_sym___complex] = ACTIONS(2112), + [anon_sym_IBOutlet] = ACTIONS(2112), + [anon_sym_IBInspectable] = ACTIONS(2112), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2112), + [anon_sym_signed] = ACTIONS(2112), + [anon_sym_unsigned] = ACTIONS(2112), + [anon_sym_long] = ACTIONS(2112), + [anon_sym_short] = ACTIONS(2112), + [sym_primitive_type] = ACTIONS(2112), + [anon_sym_enum] = ACTIONS(2112), + [anon_sym_struct] = ACTIONS(2112), + [anon_sym_union] = ACTIONS(2112), + [anon_sym_if] = ACTIONS(2112), + [anon_sym_switch] = ACTIONS(2112), + [anon_sym_case] = ACTIONS(2112), + [anon_sym_default] = ACTIONS(2112), + [anon_sym_while] = ACTIONS(2112), + [anon_sym_do] = ACTIONS(2112), + [anon_sym_for] = ACTIONS(2112), + [anon_sym_return] = ACTIONS(2112), + [anon_sym_break] = ACTIONS(2112), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2112), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_sizeof] = ACTIONS(2112), + [sym_number_literal] = ACTIONS(2114), + [anon_sym_L_SQUOTE] = ACTIONS(2114), + [anon_sym_u_SQUOTE] = ACTIONS(2114), + [anon_sym_U_SQUOTE] = ACTIONS(2114), + [anon_sym_u8_SQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), + [anon_sym_L_DQUOTE] = ACTIONS(2114), + [anon_sym_u_DQUOTE] = ACTIONS(2114), + [anon_sym_U_DQUOTE] = ACTIONS(2114), + [anon_sym_u8_DQUOTE] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [sym_null] = ACTIONS(2112), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2114), + [anon_sym_ATimport] = ACTIONS(2114), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2112), + [anon_sym_ATcompatibility_alias] = ACTIONS(2114), + [anon_sym_ATprotocol] = ACTIONS(2114), + [anon_sym_ATclass] = ACTIONS(2114), + [anon_sym_ATinterface] = ACTIONS(2114), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2112), + [sym_method_attribute_specifier] = ACTIONS(2112), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2112), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2112), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2112), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2112), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2112), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2112), + [anon_sym_NS_AVAILABLE] = ACTIONS(2112), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2112), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2112), + [anon_sym_API_AVAILABLE] = ACTIONS(2112), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2112), + [anon_sym_API_DEPRECATED] = ACTIONS(2112), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2112), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2112), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2112), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2112), + [anon_sym___deprecated_msg] = ACTIONS(2112), + [anon_sym___deprecated_enum_msg] = ACTIONS(2112), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2112), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2112), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2112), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2112), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2112), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2112), + [anon_sym_ATimplementation] = ACTIONS(2114), + [anon_sym_NS_ENUM] = ACTIONS(2112), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2112), + [anon_sym_NS_OPTIONS] = ACTIONS(2112), + [anon_sym_typeof] = ACTIONS(2112), + [anon_sym___typeof] = ACTIONS(2112), + [anon_sym___typeof__] = ACTIONS(2112), + [sym_self] = ACTIONS(2112), + [sym_super] = ACTIONS(2112), + [sym_nil] = ACTIONS(2112), + [sym_id] = ACTIONS(2112), + [sym_instancetype] = ACTIONS(2112), + [sym_Class] = ACTIONS(2112), + [sym_SEL] = ACTIONS(2112), + [sym_IMP] = ACTIONS(2112), + [sym_BOOL] = ACTIONS(2112), + [sym_auto] = ACTIONS(2112), + [anon_sym_ATautoreleasepool] = ACTIONS(2114), + [anon_sym_ATsynchronized] = ACTIONS(2114), + [anon_sym_ATtry] = ACTIONS(2114), + [anon_sym_ATthrow] = ACTIONS(2114), + [anon_sym_ATselector] = ACTIONS(2114), + [anon_sym_ATencode] = ACTIONS(2114), + [anon_sym_AT] = ACTIONS(2112), + [sym_YES] = ACTIONS(2112), + [sym_NO] = ACTIONS(2112), + [anon_sym___builtin_available] = ACTIONS(2112), + [anon_sym_ATavailable] = ACTIONS(2114), + [anon_sym_va_arg] = ACTIONS(2112), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [799] = { + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2118), + [aux_sym_preproc_def_token1] = ACTIONS(2118), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_if_token2] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [aux_sym_preproc_else_token1] = ACTIONS(2116), + [aux_sym_preproc_elif_token1] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_auto] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [anon_sym_out] = ACTIONS(2116), + [anon_sym_inout] = ACTIONS(2116), + [anon_sym_bycopy] = ACTIONS(2116), + [anon_sym_byref] = ACTIONS(2116), + [anon_sym_oneway] = ACTIONS(2116), + [anon_sym__Nullable] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym__Nullable_result] = ACTIONS(2116), + [anon_sym__Null_unspecified] = ACTIONS(2116), + [anon_sym___autoreleasing] = ACTIONS(2116), + [anon_sym___nullable] = ACTIONS(2116), + [anon_sym___nonnull] = ACTIONS(2116), + [anon_sym___strong] = ACTIONS(2116), + [anon_sym___weak] = ACTIONS(2116), + [anon_sym___bridge] = ACTIONS(2116), + [anon_sym___bridge_transfer] = ACTIONS(2116), + [anon_sym___bridge_retained] = ACTIONS(2116), + [anon_sym___unsafe_unretained] = ACTIONS(2116), + [anon_sym___block] = ACTIONS(2116), + [anon_sym___kindof] = ACTIONS(2116), + [anon_sym___unused] = ACTIONS(2116), + [anon_sym__Complex] = ACTIONS(2116), + [anon_sym___complex] = ACTIONS(2116), + [anon_sym_IBOutlet] = ACTIONS(2116), + [anon_sym_IBInspectable] = ACTIONS(2116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2116), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2118), + [anon_sym_ATimport] = ACTIONS(2118), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2116), + [anon_sym_ATcompatibility_alias] = ACTIONS(2118), + [anon_sym_ATprotocol] = ACTIONS(2118), + [anon_sym_ATclass] = ACTIONS(2118), + [anon_sym_ATinterface] = ACTIONS(2118), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2116), + [sym_method_attribute_specifier] = ACTIONS(2116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE] = ACTIONS(2116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_API_AVAILABLE] = ACTIONS(2116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_API_DEPRECATED] = ACTIONS(2116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2116), + [anon_sym___deprecated_msg] = ACTIONS(2116), + [anon_sym___deprecated_enum_msg] = ACTIONS(2116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2116), + [anon_sym_ATimplementation] = ACTIONS(2118), + [anon_sym_NS_ENUM] = ACTIONS(2116), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2116), + [anon_sym_NS_OPTIONS] = ACTIONS(2116), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym___typeof] = ACTIONS(2116), + [anon_sym___typeof__] = ACTIONS(2116), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_nil] = ACTIONS(2116), + [sym_id] = ACTIONS(2116), + [sym_instancetype] = ACTIONS(2116), + [sym_Class] = ACTIONS(2116), + [sym_SEL] = ACTIONS(2116), + [sym_IMP] = ACTIONS(2116), + [sym_BOOL] = ACTIONS(2116), + [sym_auto] = ACTIONS(2116), + [anon_sym_ATautoreleasepool] = ACTIONS(2118), + [anon_sym_ATsynchronized] = ACTIONS(2118), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym_ATthrow] = ACTIONS(2118), + [anon_sym_ATselector] = ACTIONS(2118), + [anon_sym_ATencode] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2116), + [sym_YES] = ACTIONS(2116), + [sym_NO] = ACTIONS(2116), + [anon_sym___builtin_available] = ACTIONS(2116), + [anon_sym_ATavailable] = ACTIONS(2118), + [anon_sym_va_arg] = ACTIONS(2116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [800] = { + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2118), + [aux_sym_preproc_def_token1] = ACTIONS(2118), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_if_token2] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [aux_sym_preproc_else_token1] = ACTIONS(2116), + [aux_sym_preproc_elif_token1] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_auto] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [anon_sym_out] = ACTIONS(2116), + [anon_sym_inout] = ACTIONS(2116), + [anon_sym_bycopy] = ACTIONS(2116), + [anon_sym_byref] = ACTIONS(2116), + [anon_sym_oneway] = ACTIONS(2116), + [anon_sym__Nullable] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym__Nullable_result] = ACTIONS(2116), + [anon_sym__Null_unspecified] = ACTIONS(2116), + [anon_sym___autoreleasing] = ACTIONS(2116), + [anon_sym___nullable] = ACTIONS(2116), + [anon_sym___nonnull] = ACTIONS(2116), + [anon_sym___strong] = ACTIONS(2116), + [anon_sym___weak] = ACTIONS(2116), + [anon_sym___bridge] = ACTIONS(2116), + [anon_sym___bridge_transfer] = ACTIONS(2116), + [anon_sym___bridge_retained] = ACTIONS(2116), + [anon_sym___unsafe_unretained] = ACTIONS(2116), + [anon_sym___block] = ACTIONS(2116), + [anon_sym___kindof] = ACTIONS(2116), + [anon_sym___unused] = ACTIONS(2116), + [anon_sym__Complex] = ACTIONS(2116), + [anon_sym___complex] = ACTIONS(2116), + [anon_sym_IBOutlet] = ACTIONS(2116), + [anon_sym_IBInspectable] = ACTIONS(2116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2116), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2118), + [anon_sym_ATimport] = ACTIONS(2118), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2116), + [anon_sym_ATcompatibility_alias] = ACTIONS(2118), + [anon_sym_ATprotocol] = ACTIONS(2118), + [anon_sym_ATclass] = ACTIONS(2118), + [anon_sym_ATinterface] = ACTIONS(2118), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2116), + [sym_method_attribute_specifier] = ACTIONS(2116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE] = ACTIONS(2116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_API_AVAILABLE] = ACTIONS(2116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_API_DEPRECATED] = ACTIONS(2116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2116), + [anon_sym___deprecated_msg] = ACTIONS(2116), + [anon_sym___deprecated_enum_msg] = ACTIONS(2116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2116), + [anon_sym_ATimplementation] = ACTIONS(2118), + [anon_sym_NS_ENUM] = ACTIONS(2116), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2116), + [anon_sym_NS_OPTIONS] = ACTIONS(2116), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym___typeof] = ACTIONS(2116), + [anon_sym___typeof__] = ACTIONS(2116), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_nil] = ACTIONS(2116), + [sym_id] = ACTIONS(2116), + [sym_instancetype] = ACTIONS(2116), + [sym_Class] = ACTIONS(2116), + [sym_SEL] = ACTIONS(2116), + [sym_IMP] = ACTIONS(2116), + [sym_BOOL] = ACTIONS(2116), + [sym_auto] = ACTIONS(2116), + [anon_sym_ATautoreleasepool] = ACTIONS(2118), + [anon_sym_ATsynchronized] = ACTIONS(2118), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym_ATthrow] = ACTIONS(2118), + [anon_sym_ATselector] = ACTIONS(2118), + [anon_sym_ATencode] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2116), + [sym_YES] = ACTIONS(2116), + [sym_NO] = ACTIONS(2116), + [anon_sym___builtin_available] = ACTIONS(2116), + [anon_sym_ATavailable] = ACTIONS(2118), + [anon_sym_va_arg] = ACTIONS(2116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [801] = { + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2118), + [aux_sym_preproc_def_token1] = ACTIONS(2118), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_if_token2] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [aux_sym_preproc_else_token1] = ACTIONS(2116), + [aux_sym_preproc_elif_token1] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_auto] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [anon_sym_out] = ACTIONS(2116), + [anon_sym_inout] = ACTIONS(2116), + [anon_sym_bycopy] = ACTIONS(2116), + [anon_sym_byref] = ACTIONS(2116), + [anon_sym_oneway] = ACTIONS(2116), + [anon_sym__Nullable] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym__Nullable_result] = ACTIONS(2116), + [anon_sym__Null_unspecified] = ACTIONS(2116), + [anon_sym___autoreleasing] = ACTIONS(2116), + [anon_sym___nullable] = ACTIONS(2116), + [anon_sym___nonnull] = ACTIONS(2116), + [anon_sym___strong] = ACTIONS(2116), + [anon_sym___weak] = ACTIONS(2116), + [anon_sym___bridge] = ACTIONS(2116), + [anon_sym___bridge_transfer] = ACTIONS(2116), + [anon_sym___bridge_retained] = ACTIONS(2116), + [anon_sym___unsafe_unretained] = ACTIONS(2116), + [anon_sym___block] = ACTIONS(2116), + [anon_sym___kindof] = ACTIONS(2116), + [anon_sym___unused] = ACTIONS(2116), + [anon_sym__Complex] = ACTIONS(2116), + [anon_sym___complex] = ACTIONS(2116), + [anon_sym_IBOutlet] = ACTIONS(2116), + [anon_sym_IBInspectable] = ACTIONS(2116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2116), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2118), + [anon_sym_ATimport] = ACTIONS(2118), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2116), + [anon_sym_ATcompatibility_alias] = ACTIONS(2118), + [anon_sym_ATprotocol] = ACTIONS(2118), + [anon_sym_ATclass] = ACTIONS(2118), + [anon_sym_ATinterface] = ACTIONS(2118), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2116), + [sym_method_attribute_specifier] = ACTIONS(2116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE] = ACTIONS(2116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_API_AVAILABLE] = ACTIONS(2116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_API_DEPRECATED] = ACTIONS(2116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2116), + [anon_sym___deprecated_msg] = ACTIONS(2116), + [anon_sym___deprecated_enum_msg] = ACTIONS(2116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2116), + [anon_sym_ATimplementation] = ACTIONS(2118), + [anon_sym_NS_ENUM] = ACTIONS(2116), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2116), + [anon_sym_NS_OPTIONS] = ACTIONS(2116), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym___typeof] = ACTIONS(2116), + [anon_sym___typeof__] = ACTIONS(2116), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_nil] = ACTIONS(2116), + [sym_id] = ACTIONS(2116), + [sym_instancetype] = ACTIONS(2116), + [sym_Class] = ACTIONS(2116), + [sym_SEL] = ACTIONS(2116), + [sym_IMP] = ACTIONS(2116), + [sym_BOOL] = ACTIONS(2116), + [sym_auto] = ACTIONS(2116), + [anon_sym_ATautoreleasepool] = ACTIONS(2118), + [anon_sym_ATsynchronized] = ACTIONS(2118), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym_ATthrow] = ACTIONS(2118), + [anon_sym_ATselector] = ACTIONS(2118), + [anon_sym_ATencode] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2116), + [sym_YES] = ACTIONS(2116), + [sym_NO] = ACTIONS(2116), + [anon_sym___builtin_available] = ACTIONS(2116), + [anon_sym_ATavailable] = ACTIONS(2118), + [anon_sym_va_arg] = ACTIONS(2116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [802] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [aux_sym_preproc_else_token1] = ACTIONS(2084), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [803] = { + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_include_token1] = ACTIONS(2110), + [aux_sym_preproc_def_token1] = ACTIONS(2110), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token2] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [aux_sym_preproc_else_token1] = ACTIONS(2108), + [aux_sym_preproc_elif_token1] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___cdecl] = ACTIONS(2108), + [anon_sym___clrcall] = ACTIONS(2108), + [anon_sym___stdcall] = ACTIONS(2108), + [anon_sym___fastcall] = ACTIONS(2108), + [anon_sym___thiscall] = ACTIONS(2108), + [anon_sym___vectorcall] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_auto] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2108), + [anon_sym_out] = ACTIONS(2108), + [anon_sym_inout] = ACTIONS(2108), + [anon_sym_bycopy] = ACTIONS(2108), + [anon_sym_byref] = ACTIONS(2108), + [anon_sym_oneway] = ACTIONS(2108), + [anon_sym__Nullable] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym__Nullable_result] = ACTIONS(2108), + [anon_sym__Null_unspecified] = ACTIONS(2108), + [anon_sym___autoreleasing] = ACTIONS(2108), + [anon_sym___nullable] = ACTIONS(2108), + [anon_sym___nonnull] = ACTIONS(2108), + [anon_sym___strong] = ACTIONS(2108), + [anon_sym___weak] = ACTIONS(2108), + [anon_sym___bridge] = ACTIONS(2108), + [anon_sym___bridge_transfer] = ACTIONS(2108), + [anon_sym___bridge_retained] = ACTIONS(2108), + [anon_sym___unsafe_unretained] = ACTIONS(2108), + [anon_sym___block] = ACTIONS(2108), + [anon_sym___kindof] = ACTIONS(2108), + [anon_sym___unused] = ACTIONS(2108), + [anon_sym__Complex] = ACTIONS(2108), + [anon_sym___complex] = ACTIONS(2108), + [anon_sym_IBOutlet] = ACTIONS(2108), + [anon_sym_IBInspectable] = ACTIONS(2108), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2108), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [sym_null] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2110), + [anon_sym_ATimport] = ACTIONS(2110), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2108), + [anon_sym_ATcompatibility_alias] = ACTIONS(2110), + [anon_sym_ATprotocol] = ACTIONS(2110), + [anon_sym_ATclass] = ACTIONS(2110), + [anon_sym_ATinterface] = ACTIONS(2110), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2108), + [sym_method_attribute_specifier] = ACTIONS(2108), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2108), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE] = ACTIONS(2108), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_API_AVAILABLE] = ACTIONS(2108), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_API_DEPRECATED] = ACTIONS(2108), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2108), + [anon_sym___deprecated_msg] = ACTIONS(2108), + [anon_sym___deprecated_enum_msg] = ACTIONS(2108), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2108), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2108), + [anon_sym_ATimplementation] = ACTIONS(2110), + [anon_sym_NS_ENUM] = ACTIONS(2108), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2108), + [anon_sym_NS_OPTIONS] = ACTIONS(2108), + [anon_sym_typeof] = ACTIONS(2108), + [anon_sym___typeof] = ACTIONS(2108), + [anon_sym___typeof__] = ACTIONS(2108), + [sym_self] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_nil] = ACTIONS(2108), + [sym_id] = ACTIONS(2108), + [sym_instancetype] = ACTIONS(2108), + [sym_Class] = ACTIONS(2108), + [sym_SEL] = ACTIONS(2108), + [sym_IMP] = ACTIONS(2108), + [sym_BOOL] = ACTIONS(2108), + [sym_auto] = ACTIONS(2108), + [anon_sym_ATautoreleasepool] = ACTIONS(2110), + [anon_sym_ATsynchronized] = ACTIONS(2110), + [anon_sym_ATtry] = ACTIONS(2110), + [anon_sym_ATthrow] = ACTIONS(2110), + [anon_sym_ATselector] = ACTIONS(2110), + [anon_sym_ATencode] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2108), + [sym_YES] = ACTIONS(2108), + [sym_NO] = ACTIONS(2108), + [anon_sym___builtin_available] = ACTIONS(2108), + [anon_sym_ATavailable] = ACTIONS(2110), + [anon_sym_va_arg] = ACTIONS(2108), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [804] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [aux_sym_preproc_else_token1] = ACTIONS(2084), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [805] = { + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2118), + [aux_sym_preproc_def_token1] = ACTIONS(2118), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_if_token2] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [aux_sym_preproc_else_token1] = ACTIONS(2116), + [aux_sym_preproc_elif_token1] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_auto] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [anon_sym_out] = ACTIONS(2116), + [anon_sym_inout] = ACTIONS(2116), + [anon_sym_bycopy] = ACTIONS(2116), + [anon_sym_byref] = ACTIONS(2116), + [anon_sym_oneway] = ACTIONS(2116), + [anon_sym__Nullable] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym__Nullable_result] = ACTIONS(2116), + [anon_sym__Null_unspecified] = ACTIONS(2116), + [anon_sym___autoreleasing] = ACTIONS(2116), + [anon_sym___nullable] = ACTIONS(2116), + [anon_sym___nonnull] = ACTIONS(2116), + [anon_sym___strong] = ACTIONS(2116), + [anon_sym___weak] = ACTIONS(2116), + [anon_sym___bridge] = ACTIONS(2116), + [anon_sym___bridge_transfer] = ACTIONS(2116), + [anon_sym___bridge_retained] = ACTIONS(2116), + [anon_sym___unsafe_unretained] = ACTIONS(2116), + [anon_sym___block] = ACTIONS(2116), + [anon_sym___kindof] = ACTIONS(2116), + [anon_sym___unused] = ACTIONS(2116), + [anon_sym__Complex] = ACTIONS(2116), + [anon_sym___complex] = ACTIONS(2116), + [anon_sym_IBOutlet] = ACTIONS(2116), + [anon_sym_IBInspectable] = ACTIONS(2116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2116), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2118), + [anon_sym_ATimport] = ACTIONS(2118), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2116), + [anon_sym_ATcompatibility_alias] = ACTIONS(2118), + [anon_sym_ATprotocol] = ACTIONS(2118), + [anon_sym_ATclass] = ACTIONS(2118), + [anon_sym_ATinterface] = ACTIONS(2118), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2116), + [sym_method_attribute_specifier] = ACTIONS(2116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE] = ACTIONS(2116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_API_AVAILABLE] = ACTIONS(2116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_API_DEPRECATED] = ACTIONS(2116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2116), + [anon_sym___deprecated_msg] = ACTIONS(2116), + [anon_sym___deprecated_enum_msg] = ACTIONS(2116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2116), + [anon_sym_ATimplementation] = ACTIONS(2118), + [anon_sym_NS_ENUM] = ACTIONS(2116), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2116), + [anon_sym_NS_OPTIONS] = ACTIONS(2116), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym___typeof] = ACTIONS(2116), + [anon_sym___typeof__] = ACTIONS(2116), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_nil] = ACTIONS(2116), + [sym_id] = ACTIONS(2116), + [sym_instancetype] = ACTIONS(2116), + [sym_Class] = ACTIONS(2116), + [sym_SEL] = ACTIONS(2116), + [sym_IMP] = ACTIONS(2116), + [sym_BOOL] = ACTIONS(2116), + [sym_auto] = ACTIONS(2116), + [anon_sym_ATautoreleasepool] = ACTIONS(2118), + [anon_sym_ATsynchronized] = ACTIONS(2118), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym_ATthrow] = ACTIONS(2118), + [anon_sym_ATselector] = ACTIONS(2118), + [anon_sym_ATencode] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2116), + [sym_YES] = ACTIONS(2116), + [sym_NO] = ACTIONS(2116), + [anon_sym___builtin_available] = ACTIONS(2116), + [anon_sym_ATavailable] = ACTIONS(2118), + [anon_sym_va_arg] = ACTIONS(2116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [806] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [aux_sym_preproc_else_token1] = ACTIONS(2084), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [807] = { + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2118), + [aux_sym_preproc_def_token1] = ACTIONS(2118), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_if_token2] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [aux_sym_preproc_else_token1] = ACTIONS(2116), + [aux_sym_preproc_elif_token1] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_auto] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [anon_sym_out] = ACTIONS(2116), + [anon_sym_inout] = ACTIONS(2116), + [anon_sym_bycopy] = ACTIONS(2116), + [anon_sym_byref] = ACTIONS(2116), + [anon_sym_oneway] = ACTIONS(2116), + [anon_sym__Nullable] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym__Nullable_result] = ACTIONS(2116), + [anon_sym__Null_unspecified] = ACTIONS(2116), + [anon_sym___autoreleasing] = ACTIONS(2116), + [anon_sym___nullable] = ACTIONS(2116), + [anon_sym___nonnull] = ACTIONS(2116), + [anon_sym___strong] = ACTIONS(2116), + [anon_sym___weak] = ACTIONS(2116), + [anon_sym___bridge] = ACTIONS(2116), + [anon_sym___bridge_transfer] = ACTIONS(2116), + [anon_sym___bridge_retained] = ACTIONS(2116), + [anon_sym___unsafe_unretained] = ACTIONS(2116), + [anon_sym___block] = ACTIONS(2116), + [anon_sym___kindof] = ACTIONS(2116), + [anon_sym___unused] = ACTIONS(2116), + [anon_sym__Complex] = ACTIONS(2116), + [anon_sym___complex] = ACTIONS(2116), + [anon_sym_IBOutlet] = ACTIONS(2116), + [anon_sym_IBInspectable] = ACTIONS(2116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2116), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2118), + [anon_sym_ATimport] = ACTIONS(2118), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2116), + [anon_sym_ATcompatibility_alias] = ACTIONS(2118), + [anon_sym_ATprotocol] = ACTIONS(2118), + [anon_sym_ATclass] = ACTIONS(2118), + [anon_sym_ATinterface] = ACTIONS(2118), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2116), + [sym_method_attribute_specifier] = ACTIONS(2116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE] = ACTIONS(2116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_API_AVAILABLE] = ACTIONS(2116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_API_DEPRECATED] = ACTIONS(2116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2116), + [anon_sym___deprecated_msg] = ACTIONS(2116), + [anon_sym___deprecated_enum_msg] = ACTIONS(2116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2116), + [anon_sym_ATimplementation] = ACTIONS(2118), + [anon_sym_NS_ENUM] = ACTIONS(2116), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2116), + [anon_sym_NS_OPTIONS] = ACTIONS(2116), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym___typeof] = ACTIONS(2116), + [anon_sym___typeof__] = ACTIONS(2116), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_nil] = ACTIONS(2116), + [sym_id] = ACTIONS(2116), + [sym_instancetype] = ACTIONS(2116), + [sym_Class] = ACTIONS(2116), + [sym_SEL] = ACTIONS(2116), + [sym_IMP] = ACTIONS(2116), + [sym_BOOL] = ACTIONS(2116), + [sym_auto] = ACTIONS(2116), + [anon_sym_ATautoreleasepool] = ACTIONS(2118), + [anon_sym_ATsynchronized] = ACTIONS(2118), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym_ATthrow] = ACTIONS(2118), + [anon_sym_ATselector] = ACTIONS(2118), + [anon_sym_ATencode] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2116), + [sym_YES] = ACTIONS(2116), + [sym_NO] = ACTIONS(2116), + [anon_sym___builtin_available] = ACTIONS(2116), + [anon_sym_ATavailable] = ACTIONS(2118), + [anon_sym_va_arg] = ACTIONS(2116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [808] = { + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2118), + [aux_sym_preproc_def_token1] = ACTIONS(2118), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_if_token2] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [aux_sym_preproc_else_token1] = ACTIONS(2116), + [aux_sym_preproc_elif_token1] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_auto] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [anon_sym_out] = ACTIONS(2116), + [anon_sym_inout] = ACTIONS(2116), + [anon_sym_bycopy] = ACTIONS(2116), + [anon_sym_byref] = ACTIONS(2116), + [anon_sym_oneway] = ACTIONS(2116), + [anon_sym__Nullable] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym__Nullable_result] = ACTIONS(2116), + [anon_sym__Null_unspecified] = ACTIONS(2116), + [anon_sym___autoreleasing] = ACTIONS(2116), + [anon_sym___nullable] = ACTIONS(2116), + [anon_sym___nonnull] = ACTIONS(2116), + [anon_sym___strong] = ACTIONS(2116), + [anon_sym___weak] = ACTIONS(2116), + [anon_sym___bridge] = ACTIONS(2116), + [anon_sym___bridge_transfer] = ACTIONS(2116), + [anon_sym___bridge_retained] = ACTIONS(2116), + [anon_sym___unsafe_unretained] = ACTIONS(2116), + [anon_sym___block] = ACTIONS(2116), + [anon_sym___kindof] = ACTIONS(2116), + [anon_sym___unused] = ACTIONS(2116), + [anon_sym__Complex] = ACTIONS(2116), + [anon_sym___complex] = ACTIONS(2116), + [anon_sym_IBOutlet] = ACTIONS(2116), + [anon_sym_IBInspectable] = ACTIONS(2116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2116), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2118), + [anon_sym_ATimport] = ACTIONS(2118), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2116), + [anon_sym_ATcompatibility_alias] = ACTIONS(2118), + [anon_sym_ATprotocol] = ACTIONS(2118), + [anon_sym_ATclass] = ACTIONS(2118), + [anon_sym_ATinterface] = ACTIONS(2118), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2116), + [sym_method_attribute_specifier] = ACTIONS(2116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE] = ACTIONS(2116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_API_AVAILABLE] = ACTIONS(2116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_API_DEPRECATED] = ACTIONS(2116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2116), + [anon_sym___deprecated_msg] = ACTIONS(2116), + [anon_sym___deprecated_enum_msg] = ACTIONS(2116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2116), + [anon_sym_ATimplementation] = ACTIONS(2118), + [anon_sym_NS_ENUM] = ACTIONS(2116), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2116), + [anon_sym_NS_OPTIONS] = ACTIONS(2116), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym___typeof] = ACTIONS(2116), + [anon_sym___typeof__] = ACTIONS(2116), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_nil] = ACTIONS(2116), + [sym_id] = ACTIONS(2116), + [sym_instancetype] = ACTIONS(2116), + [sym_Class] = ACTIONS(2116), + [sym_SEL] = ACTIONS(2116), + [sym_IMP] = ACTIONS(2116), + [sym_BOOL] = ACTIONS(2116), + [sym_auto] = ACTIONS(2116), + [anon_sym_ATautoreleasepool] = ACTIONS(2118), + [anon_sym_ATsynchronized] = ACTIONS(2118), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym_ATthrow] = ACTIONS(2118), + [anon_sym_ATselector] = ACTIONS(2118), + [anon_sym_ATencode] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2116), + [sym_YES] = ACTIONS(2116), + [sym_NO] = ACTIONS(2116), + [anon_sym___builtin_available] = ACTIONS(2116), + [anon_sym_ATavailable] = ACTIONS(2118), + [anon_sym_va_arg] = ACTIONS(2116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [809] = { + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_include_token1] = ACTIONS(2110), + [aux_sym_preproc_def_token1] = ACTIONS(2110), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token2] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [aux_sym_preproc_else_token1] = ACTIONS(2108), + [aux_sym_preproc_elif_token1] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___cdecl] = ACTIONS(2108), + [anon_sym___clrcall] = ACTIONS(2108), + [anon_sym___stdcall] = ACTIONS(2108), + [anon_sym___fastcall] = ACTIONS(2108), + [anon_sym___thiscall] = ACTIONS(2108), + [anon_sym___vectorcall] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_auto] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2108), + [anon_sym_out] = ACTIONS(2108), + [anon_sym_inout] = ACTIONS(2108), + [anon_sym_bycopy] = ACTIONS(2108), + [anon_sym_byref] = ACTIONS(2108), + [anon_sym_oneway] = ACTIONS(2108), + [anon_sym__Nullable] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym__Nullable_result] = ACTIONS(2108), + [anon_sym__Null_unspecified] = ACTIONS(2108), + [anon_sym___autoreleasing] = ACTIONS(2108), + [anon_sym___nullable] = ACTIONS(2108), + [anon_sym___nonnull] = ACTIONS(2108), + [anon_sym___strong] = ACTIONS(2108), + [anon_sym___weak] = ACTIONS(2108), + [anon_sym___bridge] = ACTIONS(2108), + [anon_sym___bridge_transfer] = ACTIONS(2108), + [anon_sym___bridge_retained] = ACTIONS(2108), + [anon_sym___unsafe_unretained] = ACTIONS(2108), + [anon_sym___block] = ACTIONS(2108), + [anon_sym___kindof] = ACTIONS(2108), + [anon_sym___unused] = ACTIONS(2108), + [anon_sym__Complex] = ACTIONS(2108), + [anon_sym___complex] = ACTIONS(2108), + [anon_sym_IBOutlet] = ACTIONS(2108), + [anon_sym_IBInspectable] = ACTIONS(2108), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2108), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [sym_null] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2110), + [anon_sym_ATimport] = ACTIONS(2110), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2108), + [anon_sym_ATcompatibility_alias] = ACTIONS(2110), + [anon_sym_ATprotocol] = ACTIONS(2110), + [anon_sym_ATclass] = ACTIONS(2110), + [anon_sym_ATinterface] = ACTIONS(2110), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2108), + [sym_method_attribute_specifier] = ACTIONS(2108), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2108), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE] = ACTIONS(2108), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_API_AVAILABLE] = ACTIONS(2108), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_API_DEPRECATED] = ACTIONS(2108), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2108), + [anon_sym___deprecated_msg] = ACTIONS(2108), + [anon_sym___deprecated_enum_msg] = ACTIONS(2108), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2108), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2108), + [anon_sym_ATimplementation] = ACTIONS(2110), + [anon_sym_NS_ENUM] = ACTIONS(2108), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2108), + [anon_sym_NS_OPTIONS] = ACTIONS(2108), + [anon_sym_typeof] = ACTIONS(2108), + [anon_sym___typeof] = ACTIONS(2108), + [anon_sym___typeof__] = ACTIONS(2108), + [sym_self] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_nil] = ACTIONS(2108), + [sym_id] = ACTIONS(2108), + [sym_instancetype] = ACTIONS(2108), + [sym_Class] = ACTIONS(2108), + [sym_SEL] = ACTIONS(2108), + [sym_IMP] = ACTIONS(2108), + [sym_BOOL] = ACTIONS(2108), + [sym_auto] = ACTIONS(2108), + [anon_sym_ATautoreleasepool] = ACTIONS(2110), + [anon_sym_ATsynchronized] = ACTIONS(2110), + [anon_sym_ATtry] = ACTIONS(2110), + [anon_sym_ATthrow] = ACTIONS(2110), + [anon_sym_ATselector] = ACTIONS(2110), + [anon_sym_ATencode] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2108), + [sym_YES] = ACTIONS(2108), + [sym_NO] = ACTIONS(2108), + [anon_sym___builtin_available] = ACTIONS(2108), + [anon_sym_ATavailable] = ACTIONS(2110), + [anon_sym_va_arg] = ACTIONS(2108), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [810] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [aux_sym_preproc_else_token1] = ACTIONS(2084), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [811] = { + [sym_identifier] = ACTIONS(2120), + [aux_sym_preproc_include_token1] = ACTIONS(2122), + [aux_sym_preproc_def_token1] = ACTIONS(2122), + [aux_sym_preproc_if_token1] = ACTIONS(2120), + [aux_sym_preproc_if_token2] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), + [aux_sym_preproc_else_token1] = ACTIONS(2120), + [aux_sym_preproc_elif_token1] = ACTIONS(2120), + [anon_sym_LPAREN2] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_PLUS] = ACTIONS(2120), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_CARET] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_typedef] = ACTIONS(2120), + [anon_sym_extern] = ACTIONS(2120), + [anon_sym___attribute] = ACTIONS(2120), + [anon_sym___attribute__] = ACTIONS(2120), + [anon_sym___declspec] = ACTIONS(2120), + [anon_sym___cdecl] = ACTIONS(2120), + [anon_sym___clrcall] = ACTIONS(2120), + [anon_sym___stdcall] = ACTIONS(2120), + [anon_sym___fastcall] = ACTIONS(2120), + [anon_sym___thiscall] = ACTIONS(2120), + [anon_sym___vectorcall] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_auto] = ACTIONS(2120), + [anon_sym_register] = ACTIONS(2120), + [anon_sym_inline] = ACTIONS(2120), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_volatile] = ACTIONS(2120), + [anon_sym_restrict] = ACTIONS(2120), + [anon_sym__Atomic] = ACTIONS(2120), + [anon_sym_in] = ACTIONS(2120), + [anon_sym_out] = ACTIONS(2120), + [anon_sym_inout] = ACTIONS(2120), + [anon_sym_bycopy] = ACTIONS(2120), + [anon_sym_byref] = ACTIONS(2120), + [anon_sym_oneway] = ACTIONS(2120), + [anon_sym__Nullable] = ACTIONS(2120), + [anon_sym__Nonnull] = ACTIONS(2120), + [anon_sym__Nullable_result] = ACTIONS(2120), + [anon_sym__Null_unspecified] = ACTIONS(2120), + [anon_sym___autoreleasing] = ACTIONS(2120), + [anon_sym___nullable] = ACTIONS(2120), + [anon_sym___nonnull] = ACTIONS(2120), + [anon_sym___strong] = ACTIONS(2120), + [anon_sym___weak] = ACTIONS(2120), + [anon_sym___bridge] = ACTIONS(2120), + [anon_sym___bridge_transfer] = ACTIONS(2120), + [anon_sym___bridge_retained] = ACTIONS(2120), + [anon_sym___unsafe_unretained] = ACTIONS(2120), + [anon_sym___block] = ACTIONS(2120), + [anon_sym___kindof] = ACTIONS(2120), + [anon_sym___unused] = ACTIONS(2120), + [anon_sym__Complex] = ACTIONS(2120), + [anon_sym___complex] = ACTIONS(2120), + [anon_sym_IBOutlet] = ACTIONS(2120), + [anon_sym_IBInspectable] = ACTIONS(2120), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2120), + [anon_sym_signed] = ACTIONS(2120), + [anon_sym_unsigned] = ACTIONS(2120), + [anon_sym_long] = ACTIONS(2120), + [anon_sym_short] = ACTIONS(2120), + [sym_primitive_type] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_union] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_default] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_goto] = ACTIONS(2120), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_sizeof] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2122), + [anon_sym_u_DQUOTE] = ACTIONS(2122), + [anon_sym_U_DQUOTE] = ACTIONS(2122), + [anon_sym_u8_DQUOTE] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [sym_true] = ACTIONS(2120), + [sym_false] = ACTIONS(2120), + [sym_null] = ACTIONS(2120), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2122), + [anon_sym_ATimport] = ACTIONS(2122), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2120), + [anon_sym_ATcompatibility_alias] = ACTIONS(2122), + [anon_sym_ATprotocol] = ACTIONS(2122), + [anon_sym_ATclass] = ACTIONS(2122), + [anon_sym_ATinterface] = ACTIONS(2122), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2120), + [sym_method_attribute_specifier] = ACTIONS(2120), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2120), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2120), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2120), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2120), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2120), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2120), + [anon_sym_NS_AVAILABLE] = ACTIONS(2120), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2120), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2120), + [anon_sym_API_AVAILABLE] = ACTIONS(2120), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2120), + [anon_sym_API_DEPRECATED] = ACTIONS(2120), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2120), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2120), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2120), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2120), + [anon_sym___deprecated_msg] = ACTIONS(2120), + [anon_sym___deprecated_enum_msg] = ACTIONS(2120), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2120), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2120), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2120), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2120), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2120), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2120), + [anon_sym_ATimplementation] = ACTIONS(2122), + [anon_sym_NS_ENUM] = ACTIONS(2120), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2120), + [anon_sym_NS_OPTIONS] = ACTIONS(2120), + [anon_sym_typeof] = ACTIONS(2120), + [anon_sym___typeof] = ACTIONS(2120), + [anon_sym___typeof__] = ACTIONS(2120), + [sym_self] = ACTIONS(2120), + [sym_super] = ACTIONS(2120), + [sym_nil] = ACTIONS(2120), + [sym_id] = ACTIONS(2120), + [sym_instancetype] = ACTIONS(2120), + [sym_Class] = ACTIONS(2120), + [sym_SEL] = ACTIONS(2120), + [sym_IMP] = ACTIONS(2120), + [sym_BOOL] = ACTIONS(2120), + [sym_auto] = ACTIONS(2120), + [anon_sym_ATautoreleasepool] = ACTIONS(2122), + [anon_sym_ATsynchronized] = ACTIONS(2122), + [anon_sym_ATtry] = ACTIONS(2122), + [anon_sym_ATthrow] = ACTIONS(2122), + [anon_sym_ATselector] = ACTIONS(2122), + [anon_sym_ATencode] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2120), + [sym_YES] = ACTIONS(2120), + [sym_NO] = ACTIONS(2120), + [anon_sym___builtin_available] = ACTIONS(2120), + [anon_sym_ATavailable] = ACTIONS(2122), + [anon_sym_va_arg] = ACTIONS(2120), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [812] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [aux_sym_preproc_else_token1] = ACTIONS(2084), + [aux_sym_preproc_elif_token1] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [813] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [aux_sym_preproc_else_token1] = ACTIONS(1672), + [aux_sym_preproc_elif_token1] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [814] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [aux_sym_preproc_else_token1] = ACTIONS(1672), + [aux_sym_preproc_elif_token1] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [815] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [aux_sym_preproc_else_token1] = ACTIONS(1672), + [aux_sym_preproc_elif_token1] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [816] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [aux_sym_preproc_else_token1] = ACTIONS(1672), + [aux_sym_preproc_elif_token1] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [817] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [aux_sym_preproc_else_token1] = ACTIONS(1672), + [aux_sym_preproc_elif_token1] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [818] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [aux_sym_preproc_else_token1] = ACTIONS(1672), + [aux_sym_preproc_elif_token1] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [819] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [aux_sym_preproc_else_token1] = ACTIONS(1672), + [aux_sym_preproc_elif_token1] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [820] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [aux_sym_preproc_else_token1] = ACTIONS(1672), + [aux_sym_preproc_elif_token1] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [821] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [aux_sym_preproc_else_token1] = ACTIONS(1672), + [aux_sym_preproc_elif_token1] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [822] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [aux_sym_preproc_else_token1] = ACTIONS(1672), + [aux_sym_preproc_elif_token1] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [823] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [aux_sym_preproc_else_token1] = ACTIONS(1672), + [aux_sym_preproc_elif_token1] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [824] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [aux_sym_preproc_else_token1] = ACTIONS(1672), + [aux_sym_preproc_elif_token1] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [825] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [aux_sym_preproc_else_token1] = ACTIONS(1672), + [aux_sym_preproc_elif_token1] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [826] = { + [sym_identifier] = ACTIONS(2124), + [aux_sym_preproc_include_token1] = ACTIONS(2126), + [aux_sym_preproc_def_token1] = ACTIONS(2126), + [aux_sym_preproc_if_token1] = ACTIONS(2124), + [aux_sym_preproc_if_token2] = ACTIONS(2124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2124), + [aux_sym_preproc_else_token1] = ACTIONS(2124), + [aux_sym_preproc_elif_token1] = ACTIONS(2124), + [anon_sym_LPAREN2] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_typedef] = ACTIONS(2124), + [anon_sym_extern] = ACTIONS(2124), + [anon_sym___attribute] = ACTIONS(2124), + [anon_sym___attribute__] = ACTIONS(2124), + [anon_sym___declspec] = ACTIONS(2124), + [anon_sym___cdecl] = ACTIONS(2124), + [anon_sym___clrcall] = ACTIONS(2124), + [anon_sym___stdcall] = ACTIONS(2124), + [anon_sym___fastcall] = ACTIONS(2124), + [anon_sym___thiscall] = ACTIONS(2124), + [anon_sym___vectorcall] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_auto] = ACTIONS(2124), + [anon_sym_register] = ACTIONS(2124), + [anon_sym_inline] = ACTIONS(2124), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_volatile] = ACTIONS(2124), + [anon_sym_restrict] = ACTIONS(2124), + [anon_sym__Atomic] = ACTIONS(2124), + [anon_sym_in] = ACTIONS(2124), + [anon_sym_out] = ACTIONS(2124), + [anon_sym_inout] = ACTIONS(2124), + [anon_sym_bycopy] = ACTIONS(2124), + [anon_sym_byref] = ACTIONS(2124), + [anon_sym_oneway] = ACTIONS(2124), + [anon_sym__Nullable] = ACTIONS(2124), + [anon_sym__Nonnull] = ACTIONS(2124), + [anon_sym__Nullable_result] = ACTIONS(2124), + [anon_sym__Null_unspecified] = ACTIONS(2124), + [anon_sym___autoreleasing] = ACTIONS(2124), + [anon_sym___nullable] = ACTIONS(2124), + [anon_sym___nonnull] = ACTIONS(2124), + [anon_sym___strong] = ACTIONS(2124), + [anon_sym___weak] = ACTIONS(2124), + [anon_sym___bridge] = ACTIONS(2124), + [anon_sym___bridge_transfer] = ACTIONS(2124), + [anon_sym___bridge_retained] = ACTIONS(2124), + [anon_sym___unsafe_unretained] = ACTIONS(2124), + [anon_sym___block] = ACTIONS(2124), + [anon_sym___kindof] = ACTIONS(2124), + [anon_sym___unused] = ACTIONS(2124), + [anon_sym__Complex] = ACTIONS(2124), + [anon_sym___complex] = ACTIONS(2124), + [anon_sym_IBOutlet] = ACTIONS(2124), + [anon_sym_IBInspectable] = ACTIONS(2124), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2124), + [anon_sym_signed] = ACTIONS(2124), + [anon_sym_unsigned] = ACTIONS(2124), + [anon_sym_long] = ACTIONS(2124), + [anon_sym_short] = ACTIONS(2124), + [sym_primitive_type] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [anon_sym_struct] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_switch] = ACTIONS(2124), + [anon_sym_case] = ACTIONS(2124), + [anon_sym_default] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_goto] = ACTIONS(2124), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_sizeof] = ACTIONS(2124), + [sym_number_literal] = ACTIONS(2126), + [anon_sym_L_SQUOTE] = ACTIONS(2126), + [anon_sym_u_SQUOTE] = ACTIONS(2126), + [anon_sym_U_SQUOTE] = ACTIONS(2126), + [anon_sym_u8_SQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_L_DQUOTE] = ACTIONS(2126), + [anon_sym_u_DQUOTE] = ACTIONS(2126), + [anon_sym_U_DQUOTE] = ACTIONS(2126), + [anon_sym_u8_DQUOTE] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2126), + [sym_true] = ACTIONS(2124), + [sym_false] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2126), + [anon_sym_ATimport] = ACTIONS(2126), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2124), + [anon_sym_ATcompatibility_alias] = ACTIONS(2126), + [anon_sym_ATprotocol] = ACTIONS(2126), + [anon_sym_ATclass] = ACTIONS(2126), + [anon_sym_ATinterface] = ACTIONS(2126), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2124), + [sym_method_attribute_specifier] = ACTIONS(2124), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2124), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2124), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2124), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2124), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2124), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2124), + [anon_sym_NS_AVAILABLE] = ACTIONS(2124), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2124), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2124), + [anon_sym_API_AVAILABLE] = ACTIONS(2124), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2124), + [anon_sym_API_DEPRECATED] = ACTIONS(2124), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2124), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2124), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2124), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2124), + [anon_sym___deprecated_msg] = ACTIONS(2124), + [anon_sym___deprecated_enum_msg] = ACTIONS(2124), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2124), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2124), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2124), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2124), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2124), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2124), + [anon_sym_ATimplementation] = ACTIONS(2126), + [anon_sym_NS_ENUM] = ACTIONS(2124), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2124), + [anon_sym_NS_OPTIONS] = ACTIONS(2124), + [anon_sym_typeof] = ACTIONS(2124), + [anon_sym___typeof] = ACTIONS(2124), + [anon_sym___typeof__] = ACTIONS(2124), + [sym_self] = ACTIONS(2124), + [sym_super] = ACTIONS(2124), + [sym_nil] = ACTIONS(2124), + [sym_id] = ACTIONS(2124), + [sym_instancetype] = ACTIONS(2124), + [sym_Class] = ACTIONS(2124), + [sym_SEL] = ACTIONS(2124), + [sym_IMP] = ACTIONS(2124), + [sym_BOOL] = ACTIONS(2124), + [sym_auto] = ACTIONS(2124), + [anon_sym_ATautoreleasepool] = ACTIONS(2126), + [anon_sym_ATsynchronized] = ACTIONS(2126), + [anon_sym_ATtry] = ACTIONS(2126), + [anon_sym_ATthrow] = ACTIONS(2126), + [anon_sym_ATselector] = ACTIONS(2126), + [anon_sym_ATencode] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2124), + [sym_YES] = ACTIONS(2124), + [sym_NO] = ACTIONS(2124), + [anon_sym___builtin_available] = ACTIONS(2124), + [anon_sym_ATavailable] = ACTIONS(2126), + [anon_sym_va_arg] = ACTIONS(2124), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [827] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [aux_sym_preproc_else_token1] = ACTIONS(1672), + [aux_sym_preproc_elif_token1] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [828] = { + [sym_identifier] = ACTIONS(2128), + [aux_sym_preproc_include_token1] = ACTIONS(2130), + [aux_sym_preproc_def_token1] = ACTIONS(2130), + [aux_sym_preproc_if_token1] = ACTIONS(2128), + [aux_sym_preproc_if_token2] = ACTIONS(2128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2128), + [aux_sym_preproc_else_token1] = ACTIONS(2128), + [aux_sym_preproc_elif_token1] = ACTIONS(2128), + [anon_sym_LPAREN2] = ACTIONS(2130), + [anon_sym_BANG] = ACTIONS(2130), + [anon_sym_TILDE] = ACTIONS(2130), + [anon_sym_DASH] = ACTIONS(2128), + [anon_sym_PLUS] = ACTIONS(2128), + [anon_sym_STAR] = ACTIONS(2130), + [anon_sym_CARET] = ACTIONS(2130), + [anon_sym_AMP] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2130), + [anon_sym_typedef] = ACTIONS(2128), + [anon_sym_extern] = ACTIONS(2128), + [anon_sym___attribute] = ACTIONS(2128), + [anon_sym___attribute__] = ACTIONS(2128), + [anon_sym___declspec] = ACTIONS(2128), + [anon_sym___cdecl] = ACTIONS(2128), + [anon_sym___clrcall] = ACTIONS(2128), + [anon_sym___stdcall] = ACTIONS(2128), + [anon_sym___fastcall] = ACTIONS(2128), + [anon_sym___thiscall] = ACTIONS(2128), + [anon_sym___vectorcall] = ACTIONS(2128), + [anon_sym_LBRACE] = ACTIONS(2130), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_static] = ACTIONS(2128), + [anon_sym_auto] = ACTIONS(2128), + [anon_sym_register] = ACTIONS(2128), + [anon_sym_inline] = ACTIONS(2128), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2128), + [anon_sym_const] = ACTIONS(2128), + [anon_sym_volatile] = ACTIONS(2128), + [anon_sym_restrict] = ACTIONS(2128), + [anon_sym__Atomic] = ACTIONS(2128), + [anon_sym_in] = ACTIONS(2128), + [anon_sym_out] = ACTIONS(2128), + [anon_sym_inout] = ACTIONS(2128), + [anon_sym_bycopy] = ACTIONS(2128), + [anon_sym_byref] = ACTIONS(2128), + [anon_sym_oneway] = ACTIONS(2128), + [anon_sym__Nullable] = ACTIONS(2128), + [anon_sym__Nonnull] = ACTIONS(2128), + [anon_sym__Nullable_result] = ACTIONS(2128), + [anon_sym__Null_unspecified] = ACTIONS(2128), + [anon_sym___autoreleasing] = ACTIONS(2128), + [anon_sym___nullable] = ACTIONS(2128), + [anon_sym___nonnull] = ACTIONS(2128), + [anon_sym___strong] = ACTIONS(2128), + [anon_sym___weak] = ACTIONS(2128), + [anon_sym___bridge] = ACTIONS(2128), + [anon_sym___bridge_transfer] = ACTIONS(2128), + [anon_sym___bridge_retained] = ACTIONS(2128), + [anon_sym___unsafe_unretained] = ACTIONS(2128), + [anon_sym___block] = ACTIONS(2128), + [anon_sym___kindof] = ACTIONS(2128), + [anon_sym___unused] = ACTIONS(2128), + [anon_sym__Complex] = ACTIONS(2128), + [anon_sym___complex] = ACTIONS(2128), + [anon_sym_IBOutlet] = ACTIONS(2128), + [anon_sym_IBInspectable] = ACTIONS(2128), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2128), + [anon_sym_signed] = ACTIONS(2128), + [anon_sym_unsigned] = ACTIONS(2128), + [anon_sym_long] = ACTIONS(2128), + [anon_sym_short] = ACTIONS(2128), + [sym_primitive_type] = ACTIONS(2128), + [anon_sym_enum] = ACTIONS(2128), + [anon_sym_struct] = ACTIONS(2128), + [anon_sym_union] = ACTIONS(2128), + [anon_sym_if] = ACTIONS(2128), + [anon_sym_switch] = ACTIONS(2128), + [anon_sym_case] = ACTIONS(2128), + [anon_sym_default] = ACTIONS(2128), + [anon_sym_while] = ACTIONS(2128), + [anon_sym_do] = ACTIONS(2128), + [anon_sym_for] = ACTIONS(2128), + [anon_sym_return] = ACTIONS(2128), + [anon_sym_break] = ACTIONS(2128), + [anon_sym_continue] = ACTIONS(2128), + [anon_sym_goto] = ACTIONS(2128), + [anon_sym_DASH_DASH] = ACTIONS(2130), + [anon_sym_PLUS_PLUS] = ACTIONS(2130), + [anon_sym_sizeof] = ACTIONS(2128), + [sym_number_literal] = ACTIONS(2130), + [anon_sym_L_SQUOTE] = ACTIONS(2130), + [anon_sym_u_SQUOTE] = ACTIONS(2130), + [anon_sym_U_SQUOTE] = ACTIONS(2130), + [anon_sym_u8_SQUOTE] = ACTIONS(2130), + [anon_sym_SQUOTE] = ACTIONS(2130), + [anon_sym_L_DQUOTE] = ACTIONS(2130), + [anon_sym_u_DQUOTE] = ACTIONS(2130), + [anon_sym_U_DQUOTE] = ACTIONS(2130), + [anon_sym_u8_DQUOTE] = ACTIONS(2130), + [anon_sym_DQUOTE] = ACTIONS(2130), + [sym_true] = ACTIONS(2128), + [sym_false] = ACTIONS(2128), + [sym_null] = ACTIONS(2128), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2130), + [anon_sym_ATimport] = ACTIONS(2130), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2128), + [anon_sym_ATcompatibility_alias] = ACTIONS(2130), + [anon_sym_ATprotocol] = ACTIONS(2130), + [anon_sym_ATclass] = ACTIONS(2130), + [anon_sym_ATinterface] = ACTIONS(2130), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2128), + [sym_method_attribute_specifier] = ACTIONS(2128), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2128), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2128), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2128), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2128), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2128), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2128), + [anon_sym_NS_AVAILABLE] = ACTIONS(2128), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2128), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2128), + [anon_sym_API_AVAILABLE] = ACTIONS(2128), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2128), + [anon_sym_API_DEPRECATED] = ACTIONS(2128), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2128), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2128), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2128), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2128), + [anon_sym___deprecated_msg] = ACTIONS(2128), + [anon_sym___deprecated_enum_msg] = ACTIONS(2128), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2128), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2128), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2128), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2128), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2128), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2128), + [anon_sym_ATimplementation] = ACTIONS(2130), + [anon_sym_NS_ENUM] = ACTIONS(2128), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2128), + [anon_sym_NS_OPTIONS] = ACTIONS(2128), + [anon_sym_typeof] = ACTIONS(2128), + [anon_sym___typeof] = ACTIONS(2128), + [anon_sym___typeof__] = ACTIONS(2128), + [sym_self] = ACTIONS(2128), + [sym_super] = ACTIONS(2128), + [sym_nil] = ACTIONS(2128), + [sym_id] = ACTIONS(2128), + [sym_instancetype] = ACTIONS(2128), + [sym_Class] = ACTIONS(2128), + [sym_SEL] = ACTIONS(2128), + [sym_IMP] = ACTIONS(2128), + [sym_BOOL] = ACTIONS(2128), + [sym_auto] = ACTIONS(2128), + [anon_sym_ATautoreleasepool] = ACTIONS(2130), + [anon_sym_ATsynchronized] = ACTIONS(2130), + [anon_sym_ATtry] = ACTIONS(2130), + [anon_sym_ATthrow] = ACTIONS(2130), + [anon_sym_ATselector] = ACTIONS(2130), + [anon_sym_ATencode] = ACTIONS(2130), + [anon_sym_AT] = ACTIONS(2128), + [sym_YES] = ACTIONS(2128), + [sym_NO] = ACTIONS(2128), + [anon_sym___builtin_available] = ACTIONS(2128), + [anon_sym_ATavailable] = ACTIONS(2130), + [anon_sym_va_arg] = ACTIONS(2128), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [829] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [aux_sym_preproc_else_token1] = ACTIONS(2132), + [aux_sym_preproc_elif_token1] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [830] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [aux_sym_preproc_else_token1] = ACTIONS(2132), + [aux_sym_preproc_elif_token1] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [831] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [aux_sym_preproc_else_token1] = ACTIONS(2132), + [aux_sym_preproc_elif_token1] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [832] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [aux_sym_preproc_else_token1] = ACTIONS(2132), + [aux_sym_preproc_elif_token1] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [833] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [aux_sym_preproc_else_token1] = ACTIONS(2132), + [aux_sym_preproc_elif_token1] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [834] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [aux_sym_preproc_else_token1] = ACTIONS(2132), + [aux_sym_preproc_elif_token1] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [835] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [aux_sym_preproc_else_token1] = ACTIONS(2132), + [aux_sym_preproc_elif_token1] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [836] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [aux_sym_preproc_else_token1] = ACTIONS(2132), + [aux_sym_preproc_elif_token1] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [837] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [aux_sym_preproc_else_token1] = ACTIONS(2132), + [aux_sym_preproc_elif_token1] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [838] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [aux_sym_preproc_else_token1] = ACTIONS(2132), + [aux_sym_preproc_elif_token1] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [839] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [aux_sym_preproc_else_token1] = ACTIONS(2132), + [aux_sym_preproc_elif_token1] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [840] = { + [ts_builtin_sym_end] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1708), + [aux_sym_preproc_include_token1] = ACTIONS(1710), + [aux_sym_preproc_def_token1] = ACTIONS(1710), + [aux_sym_preproc_if_token1] = ACTIONS(1708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1708), + [anon_sym_LPAREN2] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_CARET] = ACTIONS(1710), + [anon_sym_AMP] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_typedef] = ACTIONS(1708), + [anon_sym_extern] = ACTIONS(1708), + [anon_sym___attribute] = ACTIONS(1708), + [anon_sym___attribute__] = ACTIONS(1708), + [anon_sym___declspec] = ACTIONS(1708), + [anon_sym___cdecl] = ACTIONS(1708), + [anon_sym___clrcall] = ACTIONS(1708), + [anon_sym___stdcall] = ACTIONS(1708), + [anon_sym___fastcall] = ACTIONS(1708), + [anon_sym___thiscall] = ACTIONS(1708), + [anon_sym___vectorcall] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_static] = ACTIONS(1708), + [anon_sym_auto] = ACTIONS(1708), + [anon_sym_register] = ACTIONS(1708), + [anon_sym_inline] = ACTIONS(1708), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_volatile] = ACTIONS(1708), + [anon_sym_restrict] = ACTIONS(1708), + [anon_sym__Atomic] = ACTIONS(1708), + [anon_sym_in] = ACTIONS(1708), + [anon_sym_out] = ACTIONS(1708), + [anon_sym_inout] = ACTIONS(1708), + [anon_sym_bycopy] = ACTIONS(1708), + [anon_sym_byref] = ACTIONS(1708), + [anon_sym_oneway] = ACTIONS(1708), + [anon_sym__Nullable] = ACTIONS(1708), + [anon_sym__Nonnull] = ACTIONS(1708), + [anon_sym__Nullable_result] = ACTIONS(1708), + [anon_sym__Null_unspecified] = ACTIONS(1708), + [anon_sym___autoreleasing] = ACTIONS(1708), + [anon_sym___nullable] = ACTIONS(1708), + [anon_sym___nonnull] = ACTIONS(1708), + [anon_sym___strong] = ACTIONS(1708), + [anon_sym___weak] = ACTIONS(1708), + [anon_sym___bridge] = ACTIONS(1708), + [anon_sym___bridge_transfer] = ACTIONS(1708), + [anon_sym___bridge_retained] = ACTIONS(1708), + [anon_sym___unsafe_unretained] = ACTIONS(1708), + [anon_sym___block] = ACTIONS(1708), + [anon_sym___kindof] = ACTIONS(1708), + [anon_sym___unused] = ACTIONS(1708), + [anon_sym__Complex] = ACTIONS(1708), + [anon_sym___complex] = ACTIONS(1708), + [anon_sym_IBOutlet] = ACTIONS(1708), + [anon_sym_IBInspectable] = ACTIONS(1708), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1708), + [anon_sym_signed] = ACTIONS(1708), + [anon_sym_unsigned] = ACTIONS(1708), + [anon_sym_long] = ACTIONS(1708), + [anon_sym_short] = ACTIONS(1708), + [sym_primitive_type] = ACTIONS(1708), + [anon_sym_enum] = ACTIONS(1708), + [anon_sym_struct] = ACTIONS(1708), + [anon_sym_union] = ACTIONS(1708), + [anon_sym_if] = ACTIONS(1708), + [anon_sym_switch] = ACTIONS(1708), + [anon_sym_case] = ACTIONS(1708), + [anon_sym_default] = ACTIONS(1708), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(1708), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1708), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_goto] = ACTIONS(1708), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1708), + [sym_number_literal] = ACTIONS(1710), + [anon_sym_L_SQUOTE] = ACTIONS(1710), + [anon_sym_u_SQUOTE] = ACTIONS(1710), + [anon_sym_U_SQUOTE] = ACTIONS(1710), + [anon_sym_u8_SQUOTE] = ACTIONS(1710), + [anon_sym_SQUOTE] = ACTIONS(1710), + [anon_sym_L_DQUOTE] = ACTIONS(1710), + [anon_sym_u_DQUOTE] = ACTIONS(1710), + [anon_sym_U_DQUOTE] = ACTIONS(1710), + [anon_sym_u8_DQUOTE] = ACTIONS(1710), + [anon_sym_DQUOTE] = ACTIONS(1710), + [sym_true] = ACTIONS(1708), + [sym_false] = ACTIONS(1708), + [sym_null] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1710), + [anon_sym_ATimport] = ACTIONS(1710), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1708), + [anon_sym_ATcompatibility_alias] = ACTIONS(1710), + [anon_sym_ATprotocol] = ACTIONS(1710), + [anon_sym_ATclass] = ACTIONS(1710), + [anon_sym_ATinterface] = ACTIONS(1710), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1708), + [sym_method_attribute_specifier] = ACTIONS(1708), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1708), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1708), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1708), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1708), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1708), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1708), + [anon_sym_NS_AVAILABLE] = ACTIONS(1708), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1708), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1708), + [anon_sym_API_AVAILABLE] = ACTIONS(1708), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1708), + [anon_sym_API_DEPRECATED] = ACTIONS(1708), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1708), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1708), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1708), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1708), + [anon_sym___deprecated_msg] = ACTIONS(1708), + [anon_sym___deprecated_enum_msg] = ACTIONS(1708), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1708), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1708), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1708), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1708), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1708), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1708), + [anon_sym_ATimplementation] = ACTIONS(1710), + [anon_sym_NS_ENUM] = ACTIONS(1708), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1708), + [anon_sym_NS_OPTIONS] = ACTIONS(1708), + [anon_sym_typeof] = ACTIONS(1708), + [anon_sym___typeof] = ACTIONS(1708), + [anon_sym___typeof__] = ACTIONS(1708), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_nil] = ACTIONS(1708), + [sym_id] = ACTIONS(1708), + [sym_instancetype] = ACTIONS(1708), + [sym_Class] = ACTIONS(1708), + [sym_SEL] = ACTIONS(1708), + [sym_IMP] = ACTIONS(1708), + [sym_BOOL] = ACTIONS(1708), + [sym_auto] = ACTIONS(1708), + [anon_sym_ATautoreleasepool] = ACTIONS(1710), + [anon_sym_ATsynchronized] = ACTIONS(1710), + [anon_sym_ATtry] = ACTIONS(1710), + [anon_sym_ATthrow] = ACTIONS(1710), + [anon_sym_ATselector] = ACTIONS(1710), + [anon_sym_ATencode] = ACTIONS(1710), + [anon_sym_AT] = ACTIONS(1708), + [sym_YES] = ACTIONS(1708), + [sym_NO] = ACTIONS(1708), + [anon_sym___builtin_available] = ACTIONS(1708), + [anon_sym_ATavailable] = ACTIONS(1710), + [anon_sym_va_arg] = ACTIONS(1708), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -477612,112 +172931,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2879] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_out] = ACTIONS(1197), - [anon_sym_inout] = ACTIONS(1197), - [anon_sym_bycopy] = ACTIONS(1197), - [anon_sym_byref] = ACTIONS(1197), - [anon_sym_oneway] = ACTIONS(1197), - [anon_sym__Nullable] = ACTIONS(1197), - [anon_sym__Nonnull] = ACTIONS(1197), - [anon_sym__Nullable_result] = ACTIONS(1197), - [anon_sym__Null_unspecified] = ACTIONS(1197), - [anon_sym___autoreleasing] = ACTIONS(1197), - [anon_sym___nullable] = ACTIONS(1197), - [anon_sym___nonnull] = ACTIONS(1197), - [anon_sym___strong] = ACTIONS(1197), - [anon_sym___weak] = ACTIONS(1197), - [anon_sym___bridge] = ACTIONS(1197), - [anon_sym___bridge_transfer] = ACTIONS(1197), - [anon_sym___bridge_retained] = ACTIONS(1197), - [anon_sym___unsafe_unretained] = ACTIONS(1197), - [anon_sym___block] = ACTIONS(1197), - [anon_sym___kindof] = ACTIONS(1197), - [anon_sym___unused] = ACTIONS(1197), - [anon_sym__Complex] = ACTIONS(1197), - [anon_sym___complex] = ACTIONS(1197), - [anon_sym_IBOutlet] = ACTIONS(1197), - [anon_sym_IBInspectable] = ACTIONS(1197), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_NS_ENUM] = ACTIONS(1197), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1197), - [anon_sym_NS_OPTIONS] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), + [841] = { + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1197), - [anon_sym_ATend] = ACTIONS(1195), - [sym_optional] = ACTIONS(1195), - [sym_required] = ACTIONS(1195), - [anon_sym_ATproperty] = ACTIONS(1195), - [sym_method_attribute_specifier] = ACTIONS(1197), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1197), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE] = ACTIONS(1197), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_API_AVAILABLE] = ACTIONS(1197), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_API_DEPRECATED] = ACTIONS(1197), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1197), - [anon_sym___deprecated_msg] = ACTIONS(1197), - [anon_sym___deprecated_enum_msg] = ACTIONS(1197), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1197), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1197), - [anon_sym_ATsynthesize] = ACTIONS(1195), - [anon_sym_ATdynamic] = ACTIONS(1195), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym___typeof] = ACTIONS(1197), - [anon_sym___typeof__] = ACTIONS(1197), - [sym_id] = ACTIONS(1197), - [sym_instancetype] = ACTIONS(1197), - [sym_Class] = ACTIONS(1197), - [sym_SEL] = ACTIONS(1197), - [sym_IMP] = ACTIONS(1197), - [sym_BOOL] = ACTIONS(1197), - [sym_auto] = ACTIONS(1197), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -477725,112 +173104,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2880] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_out] = ACTIONS(1197), - [anon_sym_inout] = ACTIONS(1197), - [anon_sym_bycopy] = ACTIONS(1197), - [anon_sym_byref] = ACTIONS(1197), - [anon_sym_oneway] = ACTIONS(1197), - [anon_sym__Nullable] = ACTIONS(1197), - [anon_sym__Nonnull] = ACTIONS(1197), - [anon_sym__Nullable_result] = ACTIONS(1197), - [anon_sym__Null_unspecified] = ACTIONS(1197), - [anon_sym___autoreleasing] = ACTIONS(1197), - [anon_sym___nullable] = ACTIONS(1197), - [anon_sym___nonnull] = ACTIONS(1197), - [anon_sym___strong] = ACTIONS(1197), - [anon_sym___weak] = ACTIONS(1197), - [anon_sym___bridge] = ACTIONS(1197), - [anon_sym___bridge_transfer] = ACTIONS(1197), - [anon_sym___bridge_retained] = ACTIONS(1197), - [anon_sym___unsafe_unretained] = ACTIONS(1197), - [anon_sym___block] = ACTIONS(1197), - [anon_sym___kindof] = ACTIONS(1197), - [anon_sym___unused] = ACTIONS(1197), - [anon_sym__Complex] = ACTIONS(1197), - [anon_sym___complex] = ACTIONS(1197), - [anon_sym_IBOutlet] = ACTIONS(1197), - [anon_sym_IBInspectable] = ACTIONS(1197), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_NS_ENUM] = ACTIONS(1197), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1197), - [anon_sym_NS_OPTIONS] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), + [842] = { + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1197), - [anon_sym_ATend] = ACTIONS(1195), - [sym_optional] = ACTIONS(1195), - [sym_required] = ACTIONS(1195), - [anon_sym_ATproperty] = ACTIONS(1195), - [sym_method_attribute_specifier] = ACTIONS(1197), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1197), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE] = ACTIONS(1197), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_API_AVAILABLE] = ACTIONS(1197), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_API_DEPRECATED] = ACTIONS(1197), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1197), - [anon_sym___deprecated_msg] = ACTIONS(1197), - [anon_sym___deprecated_enum_msg] = ACTIONS(1197), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1197), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1197), - [anon_sym_ATsynthesize] = ACTIONS(1195), - [anon_sym_ATdynamic] = ACTIONS(1195), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym___typeof] = ACTIONS(1197), - [anon_sym___typeof__] = ACTIONS(1197), - [sym_id] = ACTIONS(1197), - [sym_instancetype] = ACTIONS(1197), - [sym_Class] = ACTIONS(1197), - [sym_SEL] = ACTIONS(1197), - [sym_IMP] = ACTIONS(1197), - [sym_BOOL] = ACTIONS(1197), - [sym_auto] = ACTIONS(1197), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -477838,112 +173277,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2881] = { - [sym_identifier] = ACTIONS(1465), - [aux_sym_preproc_def_token1] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_typedef] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym___attribute] = ACTIONS(1465), - [anon_sym___attribute__] = ACTIONS(1465), - [anon_sym___declspec] = ACTIONS(1465), - [anon_sym___cdecl] = ACTIONS(1465), - [anon_sym___clrcall] = ACTIONS(1465), - [anon_sym___stdcall] = ACTIONS(1465), - [anon_sym___fastcall] = ACTIONS(1465), - [anon_sym___thiscall] = ACTIONS(1465), - [anon_sym___vectorcall] = ACTIONS(1465), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_auto] = ACTIONS(1465), - [anon_sym_register] = ACTIONS(1465), - [anon_sym_inline] = ACTIONS(1465), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_volatile] = ACTIONS(1465), - [anon_sym_restrict] = ACTIONS(1465), - [anon_sym__Atomic] = ACTIONS(1465), - [anon_sym_in] = ACTIONS(1465), - [anon_sym_out] = ACTIONS(1465), - [anon_sym_inout] = ACTIONS(1465), - [anon_sym_bycopy] = ACTIONS(1465), - [anon_sym_byref] = ACTIONS(1465), - [anon_sym_oneway] = ACTIONS(1465), - [anon_sym__Nullable] = ACTIONS(1465), - [anon_sym__Nonnull] = ACTIONS(1465), - [anon_sym__Nullable_result] = ACTIONS(1465), - [anon_sym__Null_unspecified] = ACTIONS(1465), - [anon_sym___autoreleasing] = ACTIONS(1465), - [anon_sym___nullable] = ACTIONS(1465), - [anon_sym___nonnull] = ACTIONS(1465), - [anon_sym___strong] = ACTIONS(1465), - [anon_sym___weak] = ACTIONS(1465), - [anon_sym___bridge] = ACTIONS(1465), - [anon_sym___bridge_transfer] = ACTIONS(1465), - [anon_sym___bridge_retained] = ACTIONS(1465), - [anon_sym___unsafe_unretained] = ACTIONS(1465), - [anon_sym___block] = ACTIONS(1465), - [anon_sym___kindof] = ACTIONS(1465), - [anon_sym___unused] = ACTIONS(1465), - [anon_sym__Complex] = ACTIONS(1465), - [anon_sym___complex] = ACTIONS(1465), - [anon_sym_IBOutlet] = ACTIONS(1465), - [anon_sym_IBInspectable] = ACTIONS(1465), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1465), - [anon_sym_signed] = ACTIONS(1465), - [anon_sym_unsigned] = ACTIONS(1465), - [anon_sym_long] = ACTIONS(1465), - [anon_sym_short] = ACTIONS(1465), - [sym_primitive_type] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_NS_ENUM] = ACTIONS(1465), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1465), - [anon_sym_NS_OPTIONS] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), + [843] = { + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1465), - [anon_sym_ATend] = ACTIONS(1467), - [sym_optional] = ACTIONS(1467), - [sym_required] = ACTIONS(1467), - [anon_sym_ATproperty] = ACTIONS(1467), - [sym_method_attribute_specifier] = ACTIONS(1465), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1465), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1465), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1465), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1465), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1465), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1465), - [anon_sym_NS_AVAILABLE] = ACTIONS(1465), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1465), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_API_AVAILABLE] = ACTIONS(1465), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1465), - [anon_sym_API_DEPRECATED] = ACTIONS(1465), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1465), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1465), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1465), - [anon_sym___deprecated_msg] = ACTIONS(1465), - [anon_sym___deprecated_enum_msg] = ACTIONS(1465), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1465), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1465), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1465), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1465), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1465), - [anon_sym_ATsynthesize] = ACTIONS(1467), - [anon_sym_ATdynamic] = ACTIONS(1467), - [anon_sym_typeof] = ACTIONS(1465), - [anon_sym___typeof] = ACTIONS(1465), - [anon_sym___typeof__] = ACTIONS(1465), - [sym_id] = ACTIONS(1465), - [sym_instancetype] = ACTIONS(1465), - [sym_Class] = ACTIONS(1465), - [sym_SEL] = ACTIONS(1465), - [sym_IMP] = ACTIONS(1465), - [sym_BOOL] = ACTIONS(1465), - [sym_auto] = ACTIONS(1465), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -477951,112 +173450,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2882] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_out] = ACTIONS(1197), - [anon_sym_inout] = ACTIONS(1197), - [anon_sym_bycopy] = ACTIONS(1197), - [anon_sym_byref] = ACTIONS(1197), - [anon_sym_oneway] = ACTIONS(1197), - [anon_sym__Nullable] = ACTIONS(1197), - [anon_sym__Nonnull] = ACTIONS(1197), - [anon_sym__Nullable_result] = ACTIONS(1197), - [anon_sym__Null_unspecified] = ACTIONS(1197), - [anon_sym___autoreleasing] = ACTIONS(1197), - [anon_sym___nullable] = ACTIONS(1197), - [anon_sym___nonnull] = ACTIONS(1197), - [anon_sym___strong] = ACTIONS(1197), - [anon_sym___weak] = ACTIONS(1197), - [anon_sym___bridge] = ACTIONS(1197), - [anon_sym___bridge_transfer] = ACTIONS(1197), - [anon_sym___bridge_retained] = ACTIONS(1197), - [anon_sym___unsafe_unretained] = ACTIONS(1197), - [anon_sym___block] = ACTIONS(1197), - [anon_sym___kindof] = ACTIONS(1197), - [anon_sym___unused] = ACTIONS(1197), - [anon_sym__Complex] = ACTIONS(1197), - [anon_sym___complex] = ACTIONS(1197), - [anon_sym_IBOutlet] = ACTIONS(1197), - [anon_sym_IBInspectable] = ACTIONS(1197), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_NS_ENUM] = ACTIONS(1197), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1197), - [anon_sym_NS_OPTIONS] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), + [844] = { + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1197), - [anon_sym_ATend] = ACTIONS(1195), - [sym_optional] = ACTIONS(1195), - [sym_required] = ACTIONS(1195), - [anon_sym_ATproperty] = ACTIONS(1195), - [sym_method_attribute_specifier] = ACTIONS(1197), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1197), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE] = ACTIONS(1197), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_API_AVAILABLE] = ACTIONS(1197), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_API_DEPRECATED] = ACTIONS(1197), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1197), - [anon_sym___deprecated_msg] = ACTIONS(1197), - [anon_sym___deprecated_enum_msg] = ACTIONS(1197), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1197), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1197), - [anon_sym_ATsynthesize] = ACTIONS(1195), - [anon_sym_ATdynamic] = ACTIONS(1195), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym___typeof] = ACTIONS(1197), - [anon_sym___typeof__] = ACTIONS(1197), - [sym_id] = ACTIONS(1197), - [sym_instancetype] = ACTIONS(1197), - [sym_Class] = ACTIONS(1197), - [sym_SEL] = ACTIONS(1197), - [sym_IMP] = ACTIONS(1197), - [sym_BOOL] = ACTIONS(1197), - [sym_auto] = ACTIONS(1197), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -478064,112 +173623,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2883] = { - [sym_identifier] = ACTIONS(1197), - [aux_sym_preproc_def_token1] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1195), - [anon_sym_PLUS] = ACTIONS(1195), - [anon_sym_typedef] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1197), - [anon_sym___attribute] = ACTIONS(1197), - [anon_sym___attribute__] = ACTIONS(1197), - [anon_sym___declspec] = ACTIONS(1197), - [anon_sym___cdecl] = ACTIONS(1197), - [anon_sym___clrcall] = ACTIONS(1197), - [anon_sym___stdcall] = ACTIONS(1197), - [anon_sym___fastcall] = ACTIONS(1197), - [anon_sym___thiscall] = ACTIONS(1197), - [anon_sym___vectorcall] = ACTIONS(1197), - [anon_sym_static] = ACTIONS(1197), - [anon_sym_auto] = ACTIONS(1197), - [anon_sym_register] = ACTIONS(1197), - [anon_sym_inline] = ACTIONS(1197), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1197), - [anon_sym_const] = ACTIONS(1197), - [anon_sym_volatile] = ACTIONS(1197), - [anon_sym_restrict] = ACTIONS(1197), - [anon_sym__Atomic] = ACTIONS(1197), - [anon_sym_in] = ACTIONS(1197), - [anon_sym_out] = ACTIONS(1197), - [anon_sym_inout] = ACTIONS(1197), - [anon_sym_bycopy] = ACTIONS(1197), - [anon_sym_byref] = ACTIONS(1197), - [anon_sym_oneway] = ACTIONS(1197), - [anon_sym__Nullable] = ACTIONS(1197), - [anon_sym__Nonnull] = ACTIONS(1197), - [anon_sym__Nullable_result] = ACTIONS(1197), - [anon_sym__Null_unspecified] = ACTIONS(1197), - [anon_sym___autoreleasing] = ACTIONS(1197), - [anon_sym___nullable] = ACTIONS(1197), - [anon_sym___nonnull] = ACTIONS(1197), - [anon_sym___strong] = ACTIONS(1197), - [anon_sym___weak] = ACTIONS(1197), - [anon_sym___bridge] = ACTIONS(1197), - [anon_sym___bridge_transfer] = ACTIONS(1197), - [anon_sym___bridge_retained] = ACTIONS(1197), - [anon_sym___unsafe_unretained] = ACTIONS(1197), - [anon_sym___block] = ACTIONS(1197), - [anon_sym___kindof] = ACTIONS(1197), - [anon_sym___unused] = ACTIONS(1197), - [anon_sym__Complex] = ACTIONS(1197), - [anon_sym___complex] = ACTIONS(1197), - [anon_sym_IBOutlet] = ACTIONS(1197), - [anon_sym_IBInspectable] = ACTIONS(1197), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1197), - [anon_sym_signed] = ACTIONS(1197), - [anon_sym_unsigned] = ACTIONS(1197), - [anon_sym_long] = ACTIONS(1197), - [anon_sym_short] = ACTIONS(1197), - [sym_primitive_type] = ACTIONS(1197), - [anon_sym_enum] = ACTIONS(1197), - [anon_sym_NS_ENUM] = ACTIONS(1197), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1197), - [anon_sym_NS_OPTIONS] = ACTIONS(1197), - [anon_sym_struct] = ACTIONS(1197), - [anon_sym_union] = ACTIONS(1197), + [845] = { + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1197), - [anon_sym_ATend] = ACTIONS(1195), - [sym_optional] = ACTIONS(1195), - [sym_required] = ACTIONS(1195), - [anon_sym_ATproperty] = ACTIONS(1195), - [sym_method_attribute_specifier] = ACTIONS(1197), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1197), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1197), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE] = ACTIONS(1197), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1197), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_API_AVAILABLE] = ACTIONS(1197), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_API_DEPRECATED] = ACTIONS(1197), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1197), - [anon_sym___deprecated_msg] = ACTIONS(1197), - [anon_sym___deprecated_enum_msg] = ACTIONS(1197), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1197), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1197), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1197), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1197), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1197), - [anon_sym_ATsynthesize] = ACTIONS(1195), - [anon_sym_ATdynamic] = ACTIONS(1195), - [anon_sym_typeof] = ACTIONS(1197), - [anon_sym___typeof] = ACTIONS(1197), - [anon_sym___typeof__] = ACTIONS(1197), - [sym_id] = ACTIONS(1197), - [sym_instancetype] = ACTIONS(1197), - [sym_Class] = ACTIONS(1197), - [sym_SEL] = ACTIONS(1197), - [sym_IMP] = ACTIONS(1197), - [sym_BOOL] = ACTIONS(1197), - [sym_auto] = ACTIONS(1197), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -478177,109 +173796,126596 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2884] = { - [sym_type_qualifier] = STATE(2939), - [sym__expression] = STATE(4501), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_type_definition_repeat1] = STATE(2939), + [846] = { + [ts_builtin_sym_end] = ACTIONS(1814), + [sym_identifier] = ACTIONS(1812), + [aux_sym_preproc_include_token1] = ACTIONS(1814), + [aux_sym_preproc_def_token1] = ACTIONS(1814), + [aux_sym_preproc_if_token1] = ACTIONS(1812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1812), + [anon_sym_LPAREN2] = ACTIONS(1814), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1812), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_CARET] = ACTIONS(1814), + [anon_sym_AMP] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1814), + [anon_sym_typedef] = ACTIONS(1812), + [anon_sym_extern] = ACTIONS(1812), + [anon_sym___attribute] = ACTIONS(1812), + [anon_sym___attribute__] = ACTIONS(1812), + [anon_sym___declspec] = ACTIONS(1812), + [anon_sym___cdecl] = ACTIONS(1812), + [anon_sym___clrcall] = ACTIONS(1812), + [anon_sym___stdcall] = ACTIONS(1812), + [anon_sym___fastcall] = ACTIONS(1812), + [anon_sym___thiscall] = ACTIONS(1812), + [anon_sym___vectorcall] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1814), + [anon_sym_RBRACE] = ACTIONS(1814), + [anon_sym_LBRACK] = ACTIONS(1814), + [anon_sym_static] = ACTIONS(1812), + [anon_sym_auto] = ACTIONS(1812), + [anon_sym_register] = ACTIONS(1812), + [anon_sym_inline] = ACTIONS(1812), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1812), + [anon_sym_const] = ACTIONS(1812), + [anon_sym_volatile] = ACTIONS(1812), + [anon_sym_restrict] = ACTIONS(1812), + [anon_sym__Atomic] = ACTIONS(1812), + [anon_sym_in] = ACTIONS(1812), + [anon_sym_out] = ACTIONS(1812), + [anon_sym_inout] = ACTIONS(1812), + [anon_sym_bycopy] = ACTIONS(1812), + [anon_sym_byref] = ACTIONS(1812), + [anon_sym_oneway] = ACTIONS(1812), + [anon_sym__Nullable] = ACTIONS(1812), + [anon_sym__Nonnull] = ACTIONS(1812), + [anon_sym__Nullable_result] = ACTIONS(1812), + [anon_sym__Null_unspecified] = ACTIONS(1812), + [anon_sym___autoreleasing] = ACTIONS(1812), + [anon_sym___nullable] = ACTIONS(1812), + [anon_sym___nonnull] = ACTIONS(1812), + [anon_sym___strong] = ACTIONS(1812), + [anon_sym___weak] = ACTIONS(1812), + [anon_sym___bridge] = ACTIONS(1812), + [anon_sym___bridge_transfer] = ACTIONS(1812), + [anon_sym___bridge_retained] = ACTIONS(1812), + [anon_sym___unsafe_unretained] = ACTIONS(1812), + [anon_sym___block] = ACTIONS(1812), + [anon_sym___kindof] = ACTIONS(1812), + [anon_sym___unused] = ACTIONS(1812), + [anon_sym__Complex] = ACTIONS(1812), + [anon_sym___complex] = ACTIONS(1812), + [anon_sym_IBOutlet] = ACTIONS(1812), + [anon_sym_IBInspectable] = ACTIONS(1812), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1812), + [anon_sym_signed] = ACTIONS(1812), + [anon_sym_unsigned] = ACTIONS(1812), + [anon_sym_long] = ACTIONS(1812), + [anon_sym_short] = ACTIONS(1812), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1812), + [anon_sym_struct] = ACTIONS(1812), + [anon_sym_union] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1812), + [anon_sym_switch] = ACTIONS(1812), + [anon_sym_case] = ACTIONS(1812), + [anon_sym_default] = ACTIONS(1812), + [anon_sym_while] = ACTIONS(1812), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1812), + [anon_sym_return] = ACTIONS(1812), + [anon_sym_break] = ACTIONS(1812), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_goto] = ACTIONS(1812), + [anon_sym_DASH_DASH] = ACTIONS(1814), + [anon_sym_PLUS_PLUS] = ACTIONS(1814), + [anon_sym_sizeof] = ACTIONS(1812), + [sym_number_literal] = ACTIONS(1814), + [anon_sym_L_SQUOTE] = ACTIONS(1814), + [anon_sym_u_SQUOTE] = ACTIONS(1814), + [anon_sym_U_SQUOTE] = ACTIONS(1814), + [anon_sym_u8_SQUOTE] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1814), + [anon_sym_L_DQUOTE] = ACTIONS(1814), + [anon_sym_u_DQUOTE] = ACTIONS(1814), + [anon_sym_U_DQUOTE] = ACTIONS(1814), + [anon_sym_u8_DQUOTE] = ACTIONS(1814), + [anon_sym_DQUOTE] = ACTIONS(1814), + [sym_true] = ACTIONS(1812), + [sym_false] = ACTIONS(1812), + [sym_null] = ACTIONS(1812), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1814), + [anon_sym_ATimport] = ACTIONS(1814), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1812), + [anon_sym_ATcompatibility_alias] = ACTIONS(1814), + [anon_sym_ATprotocol] = ACTIONS(1814), + [anon_sym_ATclass] = ACTIONS(1814), + [anon_sym_ATinterface] = ACTIONS(1814), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1812), + [sym_method_attribute_specifier] = ACTIONS(1812), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1812), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1812), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1812), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1812), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1812), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1812), + [anon_sym_NS_AVAILABLE] = ACTIONS(1812), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1812), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1812), + [anon_sym_API_AVAILABLE] = ACTIONS(1812), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1812), + [anon_sym_API_DEPRECATED] = ACTIONS(1812), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1812), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1812), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1812), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1812), + [anon_sym___deprecated_msg] = ACTIONS(1812), + [anon_sym___deprecated_enum_msg] = ACTIONS(1812), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1812), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1812), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1812), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1812), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1812), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1812), + [anon_sym_ATimplementation] = ACTIONS(1814), + [anon_sym_NS_ENUM] = ACTIONS(1812), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1812), + [anon_sym_NS_OPTIONS] = ACTIONS(1812), + [anon_sym_typeof] = ACTIONS(1812), + [anon_sym___typeof] = ACTIONS(1812), + [anon_sym___typeof__] = ACTIONS(1812), + [sym_self] = ACTIONS(1812), + [sym_super] = ACTIONS(1812), + [sym_nil] = ACTIONS(1812), + [sym_id] = ACTIONS(1812), + [sym_instancetype] = ACTIONS(1812), + [sym_Class] = ACTIONS(1812), + [sym_SEL] = ACTIONS(1812), + [sym_IMP] = ACTIONS(1812), + [sym_BOOL] = ACTIONS(1812), + [sym_auto] = ACTIONS(1812), + [anon_sym_ATautoreleasepool] = ACTIONS(1814), + [anon_sym_ATsynchronized] = ACTIONS(1814), + [anon_sym_ATtry] = ACTIONS(1814), + [anon_sym_ATthrow] = ACTIONS(1814), + [anon_sym_ATselector] = ACTIONS(1814), + [anon_sym_ATencode] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(1812), + [sym_YES] = ACTIONS(1812), + [sym_NO] = ACTIONS(1812), + [anon_sym___builtin_available] = ACTIONS(1812), + [anon_sym_ATavailable] = ACTIONS(1814), + [anon_sym_va_arg] = ACTIONS(1812), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [847] = { + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [848] = { + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [849] = { + [ts_builtin_sym_end] = ACTIONS(1818), + [sym_identifier] = ACTIONS(1816), + [aux_sym_preproc_include_token1] = ACTIONS(1818), + [aux_sym_preproc_def_token1] = ACTIONS(1818), + [aux_sym_preproc_if_token1] = ACTIONS(1816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_BANG] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1816), + [anon_sym_STAR] = ACTIONS(1818), + [anon_sym_CARET] = ACTIONS(1818), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_typedef] = ACTIONS(1816), + [anon_sym_extern] = ACTIONS(1816), + [anon_sym___attribute] = ACTIONS(1816), + [anon_sym___attribute__] = ACTIONS(1816), + [anon_sym___declspec] = ACTIONS(1816), + [anon_sym___cdecl] = ACTIONS(1816), + [anon_sym___clrcall] = ACTIONS(1816), + [anon_sym___stdcall] = ACTIONS(1816), + [anon_sym___fastcall] = ACTIONS(1816), + [anon_sym___thiscall] = ACTIONS(1816), + [anon_sym___vectorcall] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1818), + [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(1818), + [anon_sym_static] = ACTIONS(1816), + [anon_sym_auto] = ACTIONS(1816), + [anon_sym_register] = ACTIONS(1816), + [anon_sym_inline] = ACTIONS(1816), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1816), + [anon_sym_const] = ACTIONS(1816), + [anon_sym_volatile] = ACTIONS(1816), + [anon_sym_restrict] = ACTIONS(1816), + [anon_sym__Atomic] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1816), + [anon_sym_out] = ACTIONS(1816), + [anon_sym_inout] = ACTIONS(1816), + [anon_sym_bycopy] = ACTIONS(1816), + [anon_sym_byref] = ACTIONS(1816), + [anon_sym_oneway] = ACTIONS(1816), + [anon_sym__Nullable] = ACTIONS(1816), + [anon_sym__Nonnull] = ACTIONS(1816), + [anon_sym__Nullable_result] = ACTIONS(1816), + [anon_sym__Null_unspecified] = ACTIONS(1816), + [anon_sym___autoreleasing] = ACTIONS(1816), + [anon_sym___nullable] = ACTIONS(1816), + [anon_sym___nonnull] = ACTIONS(1816), + [anon_sym___strong] = ACTIONS(1816), + [anon_sym___weak] = ACTIONS(1816), + [anon_sym___bridge] = ACTIONS(1816), + [anon_sym___bridge_transfer] = ACTIONS(1816), + [anon_sym___bridge_retained] = ACTIONS(1816), + [anon_sym___unsafe_unretained] = ACTIONS(1816), + [anon_sym___block] = ACTIONS(1816), + [anon_sym___kindof] = ACTIONS(1816), + [anon_sym___unused] = ACTIONS(1816), + [anon_sym__Complex] = ACTIONS(1816), + [anon_sym___complex] = ACTIONS(1816), + [anon_sym_IBOutlet] = ACTIONS(1816), + [anon_sym_IBInspectable] = ACTIONS(1816), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1816), + [anon_sym_signed] = ACTIONS(1816), + [anon_sym_unsigned] = ACTIONS(1816), + [anon_sym_long] = ACTIONS(1816), + [anon_sym_short] = ACTIONS(1816), + [sym_primitive_type] = ACTIONS(1816), + [anon_sym_enum] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1816), + [anon_sym_union] = ACTIONS(1816), + [anon_sym_if] = ACTIONS(1816), + [anon_sym_switch] = ACTIONS(1816), + [anon_sym_case] = ACTIONS(1816), + [anon_sym_default] = ACTIONS(1816), + [anon_sym_while] = ACTIONS(1816), + [anon_sym_do] = ACTIONS(1816), + [anon_sym_for] = ACTIONS(1816), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1816), + [anon_sym_continue] = ACTIONS(1816), + [anon_sym_goto] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1818), + [anon_sym_PLUS_PLUS] = ACTIONS(1818), + [anon_sym_sizeof] = ACTIONS(1816), + [sym_number_literal] = ACTIONS(1818), + [anon_sym_L_SQUOTE] = ACTIONS(1818), + [anon_sym_u_SQUOTE] = ACTIONS(1818), + [anon_sym_U_SQUOTE] = ACTIONS(1818), + [anon_sym_u8_SQUOTE] = ACTIONS(1818), + [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_L_DQUOTE] = ACTIONS(1818), + [anon_sym_u_DQUOTE] = ACTIONS(1818), + [anon_sym_U_DQUOTE] = ACTIONS(1818), + [anon_sym_u8_DQUOTE] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [sym_true] = ACTIONS(1816), + [sym_false] = ACTIONS(1816), + [sym_null] = ACTIONS(1816), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1818), + [anon_sym_ATimport] = ACTIONS(1818), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1816), + [anon_sym_ATcompatibility_alias] = ACTIONS(1818), + [anon_sym_ATprotocol] = ACTIONS(1818), + [anon_sym_ATclass] = ACTIONS(1818), + [anon_sym_ATinterface] = ACTIONS(1818), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1816), + [sym_method_attribute_specifier] = ACTIONS(1816), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1816), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1816), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1816), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1816), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1816), + [anon_sym_NS_AVAILABLE] = ACTIONS(1816), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1816), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_API_AVAILABLE] = ACTIONS(1816), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_API_DEPRECATED] = ACTIONS(1816), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1816), + [anon_sym___deprecated_msg] = ACTIONS(1816), + [anon_sym___deprecated_enum_msg] = ACTIONS(1816), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1816), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1816), + [anon_sym_ATimplementation] = ACTIONS(1818), + [anon_sym_NS_ENUM] = ACTIONS(1816), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1816), + [anon_sym_NS_OPTIONS] = ACTIONS(1816), + [anon_sym_typeof] = ACTIONS(1816), + [anon_sym___typeof] = ACTIONS(1816), + [anon_sym___typeof__] = ACTIONS(1816), + [sym_self] = ACTIONS(1816), + [sym_super] = ACTIONS(1816), + [sym_nil] = ACTIONS(1816), + [sym_id] = ACTIONS(1816), + [sym_instancetype] = ACTIONS(1816), + [sym_Class] = ACTIONS(1816), + [sym_SEL] = ACTIONS(1816), + [sym_IMP] = ACTIONS(1816), + [sym_BOOL] = ACTIONS(1816), + [sym_auto] = ACTIONS(1816), + [anon_sym_ATautoreleasepool] = ACTIONS(1818), + [anon_sym_ATsynchronized] = ACTIONS(1818), + [anon_sym_ATtry] = ACTIONS(1818), + [anon_sym_ATthrow] = ACTIONS(1818), + [anon_sym_ATselector] = ACTIONS(1818), + [anon_sym_ATencode] = ACTIONS(1818), + [anon_sym_AT] = ACTIONS(1816), + [sym_YES] = ACTIONS(1816), + [sym_NO] = ACTIONS(1816), + [anon_sym___builtin_available] = ACTIONS(1816), + [anon_sym_ATavailable] = ACTIONS(1818), + [anon_sym_va_arg] = ACTIONS(1816), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [850] = { + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [851] = { + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [852] = { + [ts_builtin_sym_end] = ACTIONS(1822), + [sym_identifier] = ACTIONS(1820), + [aux_sym_preproc_include_token1] = ACTIONS(1822), + [aux_sym_preproc_def_token1] = ACTIONS(1822), + [aux_sym_preproc_if_token1] = ACTIONS(1820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1820), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_CARET] = ACTIONS(1822), + [anon_sym_AMP] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_typedef] = ACTIONS(1820), + [anon_sym_extern] = ACTIONS(1820), + [anon_sym___attribute] = ACTIONS(1820), + [anon_sym___attribute__] = ACTIONS(1820), + [anon_sym___declspec] = ACTIONS(1820), + [anon_sym___cdecl] = ACTIONS(1820), + [anon_sym___clrcall] = ACTIONS(1820), + [anon_sym___stdcall] = ACTIONS(1820), + [anon_sym___fastcall] = ACTIONS(1820), + [anon_sym___thiscall] = ACTIONS(1820), + [anon_sym___vectorcall] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_static] = ACTIONS(1820), + [anon_sym_auto] = ACTIONS(1820), + [anon_sym_register] = ACTIONS(1820), + [anon_sym_inline] = ACTIONS(1820), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1820), + [anon_sym_const] = ACTIONS(1820), + [anon_sym_volatile] = ACTIONS(1820), + [anon_sym_restrict] = ACTIONS(1820), + [anon_sym__Atomic] = ACTIONS(1820), + [anon_sym_in] = ACTIONS(1820), + [anon_sym_out] = ACTIONS(1820), + [anon_sym_inout] = ACTIONS(1820), + [anon_sym_bycopy] = ACTIONS(1820), + [anon_sym_byref] = ACTIONS(1820), + [anon_sym_oneway] = ACTIONS(1820), + [anon_sym__Nullable] = ACTIONS(1820), + [anon_sym__Nonnull] = ACTIONS(1820), + [anon_sym__Nullable_result] = ACTIONS(1820), + [anon_sym__Null_unspecified] = ACTIONS(1820), + [anon_sym___autoreleasing] = ACTIONS(1820), + [anon_sym___nullable] = ACTIONS(1820), + [anon_sym___nonnull] = ACTIONS(1820), + [anon_sym___strong] = ACTIONS(1820), + [anon_sym___weak] = ACTIONS(1820), + [anon_sym___bridge] = ACTIONS(1820), + [anon_sym___bridge_transfer] = ACTIONS(1820), + [anon_sym___bridge_retained] = ACTIONS(1820), + [anon_sym___unsafe_unretained] = ACTIONS(1820), + [anon_sym___block] = ACTIONS(1820), + [anon_sym___kindof] = ACTIONS(1820), + [anon_sym___unused] = ACTIONS(1820), + [anon_sym__Complex] = ACTIONS(1820), + [anon_sym___complex] = ACTIONS(1820), + [anon_sym_IBOutlet] = ACTIONS(1820), + [anon_sym_IBInspectable] = ACTIONS(1820), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1820), + [anon_sym_signed] = ACTIONS(1820), + [anon_sym_unsigned] = ACTIONS(1820), + [anon_sym_long] = ACTIONS(1820), + [anon_sym_short] = ACTIONS(1820), + [sym_primitive_type] = ACTIONS(1820), + [anon_sym_enum] = ACTIONS(1820), + [anon_sym_struct] = ACTIONS(1820), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_if] = ACTIONS(1820), + [anon_sym_switch] = ACTIONS(1820), + [anon_sym_case] = ACTIONS(1820), + [anon_sym_default] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1820), + [anon_sym_do] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1820), + [anon_sym_return] = ACTIONS(1820), + [anon_sym_break] = ACTIONS(1820), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_goto] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1820), + [sym_number_literal] = ACTIONS(1822), + [anon_sym_L_SQUOTE] = ACTIONS(1822), + [anon_sym_u_SQUOTE] = ACTIONS(1822), + [anon_sym_U_SQUOTE] = ACTIONS(1822), + [anon_sym_u8_SQUOTE] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_L_DQUOTE] = ACTIONS(1822), + [anon_sym_u_DQUOTE] = ACTIONS(1822), + [anon_sym_U_DQUOTE] = ACTIONS(1822), + [anon_sym_u8_DQUOTE] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [sym_true] = ACTIONS(1820), + [sym_false] = ACTIONS(1820), + [sym_null] = ACTIONS(1820), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1822), + [anon_sym_ATimport] = ACTIONS(1822), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1820), + [anon_sym_ATcompatibility_alias] = ACTIONS(1822), + [anon_sym_ATprotocol] = ACTIONS(1822), + [anon_sym_ATclass] = ACTIONS(1822), + [anon_sym_ATinterface] = ACTIONS(1822), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1820), + [sym_method_attribute_specifier] = ACTIONS(1820), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1820), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1820), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1820), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1820), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1820), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1820), + [anon_sym_NS_AVAILABLE] = ACTIONS(1820), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1820), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1820), + [anon_sym_API_AVAILABLE] = ACTIONS(1820), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1820), + [anon_sym_API_DEPRECATED] = ACTIONS(1820), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1820), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1820), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1820), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1820), + [anon_sym___deprecated_msg] = ACTIONS(1820), + [anon_sym___deprecated_enum_msg] = ACTIONS(1820), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1820), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1820), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1820), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1820), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1820), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1820), + [anon_sym_ATimplementation] = ACTIONS(1822), + [anon_sym_NS_ENUM] = ACTIONS(1820), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1820), + [anon_sym_NS_OPTIONS] = ACTIONS(1820), + [anon_sym_typeof] = ACTIONS(1820), + [anon_sym___typeof] = ACTIONS(1820), + [anon_sym___typeof__] = ACTIONS(1820), + [sym_self] = ACTIONS(1820), + [sym_super] = ACTIONS(1820), + [sym_nil] = ACTIONS(1820), + [sym_id] = ACTIONS(1820), + [sym_instancetype] = ACTIONS(1820), + [sym_Class] = ACTIONS(1820), + [sym_SEL] = ACTIONS(1820), + [sym_IMP] = ACTIONS(1820), + [sym_BOOL] = ACTIONS(1820), + [sym_auto] = ACTIONS(1820), + [anon_sym_ATautoreleasepool] = ACTIONS(1822), + [anon_sym_ATsynchronized] = ACTIONS(1822), + [anon_sym_ATtry] = ACTIONS(1822), + [anon_sym_ATthrow] = ACTIONS(1822), + [anon_sym_ATselector] = ACTIONS(1822), + [anon_sym_ATencode] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1820), + [sym_YES] = ACTIONS(1820), + [sym_NO] = ACTIONS(1820), + [anon_sym___builtin_available] = ACTIONS(1820), + [anon_sym_ATavailable] = ACTIONS(1822), + [anon_sym_va_arg] = ACTIONS(1820), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [853] = { + [ts_builtin_sym_end] = ACTIONS(1826), + [sym_identifier] = ACTIONS(1824), + [aux_sym_preproc_include_token1] = ACTIONS(1826), + [aux_sym_preproc_def_token1] = ACTIONS(1826), + [aux_sym_preproc_if_token1] = ACTIONS(1824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1824), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1824), + [anon_sym_LPAREN2] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_STAR] = ACTIONS(1826), + [anon_sym_CARET] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_typedef] = ACTIONS(1824), + [anon_sym_extern] = ACTIONS(1824), + [anon_sym___attribute] = ACTIONS(1824), + [anon_sym___attribute__] = ACTIONS(1824), + [anon_sym___declspec] = ACTIONS(1824), + [anon_sym___cdecl] = ACTIONS(1824), + [anon_sym___clrcall] = ACTIONS(1824), + [anon_sym___stdcall] = ACTIONS(1824), + [anon_sym___fastcall] = ACTIONS(1824), + [anon_sym___thiscall] = ACTIONS(1824), + [anon_sym___vectorcall] = ACTIONS(1824), + [anon_sym_LBRACE] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1826), + [anon_sym_static] = ACTIONS(1824), + [anon_sym_auto] = ACTIONS(1824), + [anon_sym_register] = ACTIONS(1824), + [anon_sym_inline] = ACTIONS(1824), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1824), + [anon_sym_const] = ACTIONS(1824), + [anon_sym_volatile] = ACTIONS(1824), + [anon_sym_restrict] = ACTIONS(1824), + [anon_sym__Atomic] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1824), + [anon_sym_out] = ACTIONS(1824), + [anon_sym_inout] = ACTIONS(1824), + [anon_sym_bycopy] = ACTIONS(1824), + [anon_sym_byref] = ACTIONS(1824), + [anon_sym_oneway] = ACTIONS(1824), + [anon_sym__Nullable] = ACTIONS(1824), + [anon_sym__Nonnull] = ACTIONS(1824), + [anon_sym__Nullable_result] = ACTIONS(1824), + [anon_sym__Null_unspecified] = ACTIONS(1824), + [anon_sym___autoreleasing] = ACTIONS(1824), + [anon_sym___nullable] = ACTIONS(1824), + [anon_sym___nonnull] = ACTIONS(1824), + [anon_sym___strong] = ACTIONS(1824), + [anon_sym___weak] = ACTIONS(1824), + [anon_sym___bridge] = ACTIONS(1824), + [anon_sym___bridge_transfer] = ACTIONS(1824), + [anon_sym___bridge_retained] = ACTIONS(1824), + [anon_sym___unsafe_unretained] = ACTIONS(1824), + [anon_sym___block] = ACTIONS(1824), + [anon_sym___kindof] = ACTIONS(1824), + [anon_sym___unused] = ACTIONS(1824), + [anon_sym__Complex] = ACTIONS(1824), + [anon_sym___complex] = ACTIONS(1824), + [anon_sym_IBOutlet] = ACTIONS(1824), + [anon_sym_IBInspectable] = ACTIONS(1824), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1824), + [anon_sym_signed] = ACTIONS(1824), + [anon_sym_unsigned] = ACTIONS(1824), + [anon_sym_long] = ACTIONS(1824), + [anon_sym_short] = ACTIONS(1824), + [sym_primitive_type] = ACTIONS(1824), + [anon_sym_enum] = ACTIONS(1824), + [anon_sym_struct] = ACTIONS(1824), + [anon_sym_union] = ACTIONS(1824), + [anon_sym_if] = ACTIONS(1824), + [anon_sym_switch] = ACTIONS(1824), + [anon_sym_case] = ACTIONS(1824), + [anon_sym_default] = ACTIONS(1824), + [anon_sym_while] = ACTIONS(1824), + [anon_sym_do] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(1824), + [anon_sym_return] = ACTIONS(1824), + [anon_sym_break] = ACTIONS(1824), + [anon_sym_continue] = ACTIONS(1824), + [anon_sym_goto] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1826), + [anon_sym_PLUS_PLUS] = ACTIONS(1826), + [anon_sym_sizeof] = ACTIONS(1824), + [sym_number_literal] = ACTIONS(1826), + [anon_sym_L_SQUOTE] = ACTIONS(1826), + [anon_sym_u_SQUOTE] = ACTIONS(1826), + [anon_sym_U_SQUOTE] = ACTIONS(1826), + [anon_sym_u8_SQUOTE] = ACTIONS(1826), + [anon_sym_SQUOTE] = ACTIONS(1826), + [anon_sym_L_DQUOTE] = ACTIONS(1826), + [anon_sym_u_DQUOTE] = ACTIONS(1826), + [anon_sym_U_DQUOTE] = ACTIONS(1826), + [anon_sym_u8_DQUOTE] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [sym_true] = ACTIONS(1824), + [sym_false] = ACTIONS(1824), + [sym_null] = ACTIONS(1824), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1826), + [anon_sym_ATimport] = ACTIONS(1826), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1824), + [anon_sym_ATcompatibility_alias] = ACTIONS(1826), + [anon_sym_ATprotocol] = ACTIONS(1826), + [anon_sym_ATclass] = ACTIONS(1826), + [anon_sym_ATinterface] = ACTIONS(1826), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1824), + [sym_method_attribute_specifier] = ACTIONS(1824), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1824), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1824), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1824), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1824), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1824), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1824), + [anon_sym_NS_AVAILABLE] = ACTIONS(1824), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1824), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1824), + [anon_sym_API_AVAILABLE] = ACTIONS(1824), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1824), + [anon_sym_API_DEPRECATED] = ACTIONS(1824), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1824), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1824), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1824), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1824), + [anon_sym___deprecated_msg] = ACTIONS(1824), + [anon_sym___deprecated_enum_msg] = ACTIONS(1824), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1824), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1824), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1824), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1824), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1824), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1824), + [anon_sym_ATimplementation] = ACTIONS(1826), + [anon_sym_NS_ENUM] = ACTIONS(1824), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1824), + [anon_sym_NS_OPTIONS] = ACTIONS(1824), + [anon_sym_typeof] = ACTIONS(1824), + [anon_sym___typeof] = ACTIONS(1824), + [anon_sym___typeof__] = ACTIONS(1824), + [sym_self] = ACTIONS(1824), + [sym_super] = ACTIONS(1824), + [sym_nil] = ACTIONS(1824), + [sym_id] = ACTIONS(1824), + [sym_instancetype] = ACTIONS(1824), + [sym_Class] = ACTIONS(1824), + [sym_SEL] = ACTIONS(1824), + [sym_IMP] = ACTIONS(1824), + [sym_BOOL] = ACTIONS(1824), + [sym_auto] = ACTIONS(1824), + [anon_sym_ATautoreleasepool] = ACTIONS(1826), + [anon_sym_ATsynchronized] = ACTIONS(1826), + [anon_sym_ATtry] = ACTIONS(1826), + [anon_sym_ATthrow] = ACTIONS(1826), + [anon_sym_ATselector] = ACTIONS(1826), + [anon_sym_ATencode] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(1824), + [sym_YES] = ACTIONS(1824), + [sym_NO] = ACTIONS(1824), + [anon_sym___builtin_available] = ACTIONS(1824), + [anon_sym_ATavailable] = ACTIONS(1826), + [anon_sym_va_arg] = ACTIONS(1824), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [854] = { + [ts_builtin_sym_end] = ACTIONS(1810), + [sym_identifier] = ACTIONS(1808), + [aux_sym_preproc_include_token1] = ACTIONS(1810), + [aux_sym_preproc_def_token1] = ACTIONS(1810), + [aux_sym_preproc_if_token1] = ACTIONS(1808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1808), + [anon_sym_LPAREN2] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_CARET] = ACTIONS(1810), + [anon_sym_AMP] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_typedef] = ACTIONS(1808), + [anon_sym_extern] = ACTIONS(1808), + [anon_sym___attribute] = ACTIONS(1808), + [anon_sym___attribute__] = ACTIONS(1808), + [anon_sym___declspec] = ACTIONS(1808), + [anon_sym___cdecl] = ACTIONS(1808), + [anon_sym___clrcall] = ACTIONS(1808), + [anon_sym___stdcall] = ACTIONS(1808), + [anon_sym___fastcall] = ACTIONS(1808), + [anon_sym___thiscall] = ACTIONS(1808), + [anon_sym___vectorcall] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_static] = ACTIONS(1808), + [anon_sym_auto] = ACTIONS(1808), + [anon_sym_register] = ACTIONS(1808), + [anon_sym_inline] = ACTIONS(1808), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1808), + [anon_sym_const] = ACTIONS(1808), + [anon_sym_volatile] = ACTIONS(1808), + [anon_sym_restrict] = ACTIONS(1808), + [anon_sym__Atomic] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_out] = ACTIONS(1808), + [anon_sym_inout] = ACTIONS(1808), + [anon_sym_bycopy] = ACTIONS(1808), + [anon_sym_byref] = ACTIONS(1808), + [anon_sym_oneway] = ACTIONS(1808), + [anon_sym__Nullable] = ACTIONS(1808), + [anon_sym__Nonnull] = ACTIONS(1808), + [anon_sym__Nullable_result] = ACTIONS(1808), + [anon_sym__Null_unspecified] = ACTIONS(1808), + [anon_sym___autoreleasing] = ACTIONS(1808), + [anon_sym___nullable] = ACTIONS(1808), + [anon_sym___nonnull] = ACTIONS(1808), + [anon_sym___strong] = ACTIONS(1808), + [anon_sym___weak] = ACTIONS(1808), + [anon_sym___bridge] = ACTIONS(1808), + [anon_sym___bridge_transfer] = ACTIONS(1808), + [anon_sym___bridge_retained] = ACTIONS(1808), + [anon_sym___unsafe_unretained] = ACTIONS(1808), + [anon_sym___block] = ACTIONS(1808), + [anon_sym___kindof] = ACTIONS(1808), + [anon_sym___unused] = ACTIONS(1808), + [anon_sym__Complex] = ACTIONS(1808), + [anon_sym___complex] = ACTIONS(1808), + [anon_sym_IBOutlet] = ACTIONS(1808), + [anon_sym_IBInspectable] = ACTIONS(1808), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1808), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), + [sym_primitive_type] = ACTIONS(1808), + [anon_sym_enum] = ACTIONS(1808), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_switch] = ACTIONS(1808), + [anon_sym_case] = ACTIONS(1808), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_do] = ACTIONS(1808), + [anon_sym_for] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_goto] = ACTIONS(1808), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_sizeof] = ACTIONS(1808), + [sym_number_literal] = ACTIONS(1810), + [anon_sym_L_SQUOTE] = ACTIONS(1810), + [anon_sym_u_SQUOTE] = ACTIONS(1810), + [anon_sym_U_SQUOTE] = ACTIONS(1810), + [anon_sym_u8_SQUOTE] = ACTIONS(1810), + [anon_sym_SQUOTE] = ACTIONS(1810), + [anon_sym_L_DQUOTE] = ACTIONS(1810), + [anon_sym_u_DQUOTE] = ACTIONS(1810), + [anon_sym_U_DQUOTE] = ACTIONS(1810), + [anon_sym_u8_DQUOTE] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1810), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_null] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1810), + [anon_sym_ATimport] = ACTIONS(1810), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1808), + [anon_sym_ATcompatibility_alias] = ACTIONS(1810), + [anon_sym_ATprotocol] = ACTIONS(1810), + [anon_sym_ATclass] = ACTIONS(1810), + [anon_sym_ATinterface] = ACTIONS(1810), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1808), + [sym_method_attribute_specifier] = ACTIONS(1808), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1808), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1808), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1808), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1808), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1808), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1808), + [anon_sym_NS_AVAILABLE] = ACTIONS(1808), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1808), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1808), + [anon_sym_API_AVAILABLE] = ACTIONS(1808), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1808), + [anon_sym_API_DEPRECATED] = ACTIONS(1808), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1808), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1808), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1808), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1808), + [anon_sym___deprecated_msg] = ACTIONS(1808), + [anon_sym___deprecated_enum_msg] = ACTIONS(1808), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1808), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1808), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1808), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1808), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1808), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1808), + [anon_sym_ATimplementation] = ACTIONS(1810), + [anon_sym_NS_ENUM] = ACTIONS(1808), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1808), + [anon_sym_NS_OPTIONS] = ACTIONS(1808), + [anon_sym_typeof] = ACTIONS(1808), + [anon_sym___typeof] = ACTIONS(1808), + [anon_sym___typeof__] = ACTIONS(1808), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_nil] = ACTIONS(1808), + [sym_id] = ACTIONS(1808), + [sym_instancetype] = ACTIONS(1808), + [sym_Class] = ACTIONS(1808), + [sym_SEL] = ACTIONS(1808), + [sym_IMP] = ACTIONS(1808), + [sym_BOOL] = ACTIONS(1808), + [sym_auto] = ACTIONS(1808), + [anon_sym_ATautoreleasepool] = ACTIONS(1810), + [anon_sym_ATsynchronized] = ACTIONS(1810), + [anon_sym_ATtry] = ACTIONS(1810), + [anon_sym_ATthrow] = ACTIONS(1810), + [anon_sym_ATselector] = ACTIONS(1810), + [anon_sym_ATencode] = ACTIONS(1810), + [anon_sym_AT] = ACTIONS(1808), + [sym_YES] = ACTIONS(1808), + [sym_NO] = ACTIONS(1808), + [anon_sym___builtin_available] = ACTIONS(1808), + [anon_sym_ATavailable] = ACTIONS(1810), + [anon_sym_va_arg] = ACTIONS(1808), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [855] = { + [ts_builtin_sym_end] = ACTIONS(1978), + [sym_identifier] = ACTIONS(1976), + [aux_sym_preproc_include_token1] = ACTIONS(1978), + [aux_sym_preproc_def_token1] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1976), + [anon_sym_LPAREN2] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_TILDE] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_CARET] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_typedef] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym___attribute] = ACTIONS(1976), + [anon_sym___attribute__] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1976), + [anon_sym___cdecl] = ACTIONS(1976), + [anon_sym___clrcall] = ACTIONS(1976), + [anon_sym___stdcall] = ACTIONS(1976), + [anon_sym___fastcall] = ACTIONS(1976), + [anon_sym___thiscall] = ACTIONS(1976), + [anon_sym___vectorcall] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_auto] = ACTIONS(1976), + [anon_sym_register] = ACTIONS(1976), + [anon_sym_inline] = ACTIONS(1976), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_volatile] = ACTIONS(1976), + [anon_sym_restrict] = ACTIONS(1976), + [anon_sym__Atomic] = ACTIONS(1976), + [anon_sym_in] = ACTIONS(1976), + [anon_sym_out] = ACTIONS(1976), + [anon_sym_inout] = ACTIONS(1976), + [anon_sym_bycopy] = ACTIONS(1976), + [anon_sym_byref] = ACTIONS(1976), + [anon_sym_oneway] = ACTIONS(1976), + [anon_sym__Nullable] = ACTIONS(1976), + [anon_sym__Nonnull] = ACTIONS(1976), + [anon_sym__Nullable_result] = ACTIONS(1976), + [anon_sym__Null_unspecified] = ACTIONS(1976), + [anon_sym___autoreleasing] = ACTIONS(1976), + [anon_sym___nullable] = ACTIONS(1976), + [anon_sym___nonnull] = ACTIONS(1976), + [anon_sym___strong] = ACTIONS(1976), + [anon_sym___weak] = ACTIONS(1976), + [anon_sym___bridge] = ACTIONS(1976), + [anon_sym___bridge_transfer] = ACTIONS(1976), + [anon_sym___bridge_retained] = ACTIONS(1976), + [anon_sym___unsafe_unretained] = ACTIONS(1976), + [anon_sym___block] = ACTIONS(1976), + [anon_sym___kindof] = ACTIONS(1976), + [anon_sym___unused] = ACTIONS(1976), + [anon_sym__Complex] = ACTIONS(1976), + [anon_sym___complex] = ACTIONS(1976), + [anon_sym_IBOutlet] = ACTIONS(1976), + [anon_sym_IBInspectable] = ACTIONS(1976), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1976), + [anon_sym_unsigned] = ACTIONS(1976), + [anon_sym_long] = ACTIONS(1976), + [anon_sym_short] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_switch] = ACTIONS(1976), + [anon_sym_case] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_goto] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_PLUS_PLUS] = ACTIONS(1978), + [anon_sym_sizeof] = ACTIONS(1976), + [sym_number_literal] = ACTIONS(1978), + [anon_sym_L_SQUOTE] = ACTIONS(1978), + [anon_sym_u_SQUOTE] = ACTIONS(1978), + [anon_sym_U_SQUOTE] = ACTIONS(1978), + [anon_sym_u8_SQUOTE] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_L_DQUOTE] = ACTIONS(1978), + [anon_sym_u_DQUOTE] = ACTIONS(1978), + [anon_sym_U_DQUOTE] = ACTIONS(1978), + [anon_sym_u8_DQUOTE] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1978), + [anon_sym_ATimport] = ACTIONS(1978), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1976), + [anon_sym_ATcompatibility_alias] = ACTIONS(1978), + [anon_sym_ATprotocol] = ACTIONS(1978), + [anon_sym_ATclass] = ACTIONS(1978), + [anon_sym_ATinterface] = ACTIONS(1978), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1976), + [sym_method_attribute_specifier] = ACTIONS(1976), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1976), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE] = ACTIONS(1976), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_API_AVAILABLE] = ACTIONS(1976), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_API_DEPRECATED] = ACTIONS(1976), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1976), + [anon_sym___deprecated_msg] = ACTIONS(1976), + [anon_sym___deprecated_enum_msg] = ACTIONS(1976), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1976), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1976), + [anon_sym_ATimplementation] = ACTIONS(1978), + [anon_sym_NS_ENUM] = ACTIONS(1976), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1976), + [anon_sym_NS_OPTIONS] = ACTIONS(1976), + [anon_sym_typeof] = ACTIONS(1976), + [anon_sym___typeof] = ACTIONS(1976), + [anon_sym___typeof__] = ACTIONS(1976), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_nil] = ACTIONS(1976), + [sym_id] = ACTIONS(1976), + [sym_instancetype] = ACTIONS(1976), + [sym_Class] = ACTIONS(1976), + [sym_SEL] = ACTIONS(1976), + [sym_IMP] = ACTIONS(1976), + [sym_BOOL] = ACTIONS(1976), + [sym_auto] = ACTIONS(1976), + [anon_sym_ATautoreleasepool] = ACTIONS(1978), + [anon_sym_ATsynchronized] = ACTIONS(1978), + [anon_sym_ATtry] = ACTIONS(1978), + [anon_sym_ATthrow] = ACTIONS(1978), + [anon_sym_ATselector] = ACTIONS(1978), + [anon_sym_ATencode] = ACTIONS(1978), + [anon_sym_AT] = ACTIONS(1976), + [sym_YES] = ACTIONS(1976), + [sym_NO] = ACTIONS(1976), + [anon_sym___builtin_available] = ACTIONS(1976), + [anon_sym_ATavailable] = ACTIONS(1978), + [anon_sym_va_arg] = ACTIONS(1976), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [856] = { + [ts_builtin_sym_end] = ACTIONS(1830), + [sym_identifier] = ACTIONS(1828), + [aux_sym_preproc_include_token1] = ACTIONS(1830), + [aux_sym_preproc_def_token1] = ACTIONS(1830), + [aux_sym_preproc_if_token1] = ACTIONS(1828), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1828), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1828), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1828), + [anon_sym_STAR] = ACTIONS(1830), + [anon_sym_CARET] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_typedef] = ACTIONS(1828), + [anon_sym_extern] = ACTIONS(1828), + [anon_sym___attribute] = ACTIONS(1828), + [anon_sym___attribute__] = ACTIONS(1828), + [anon_sym___declspec] = ACTIONS(1828), + [anon_sym___cdecl] = ACTIONS(1828), + [anon_sym___clrcall] = ACTIONS(1828), + [anon_sym___stdcall] = ACTIONS(1828), + [anon_sym___fastcall] = ACTIONS(1828), + [anon_sym___thiscall] = ACTIONS(1828), + [anon_sym___vectorcall] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1828), + [anon_sym_auto] = ACTIONS(1828), + [anon_sym_register] = ACTIONS(1828), + [anon_sym_inline] = ACTIONS(1828), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1828), + [anon_sym_const] = ACTIONS(1828), + [anon_sym_volatile] = ACTIONS(1828), + [anon_sym_restrict] = ACTIONS(1828), + [anon_sym__Atomic] = ACTIONS(1828), + [anon_sym_in] = ACTIONS(1828), + [anon_sym_out] = ACTIONS(1828), + [anon_sym_inout] = ACTIONS(1828), + [anon_sym_bycopy] = ACTIONS(1828), + [anon_sym_byref] = ACTIONS(1828), + [anon_sym_oneway] = ACTIONS(1828), + [anon_sym__Nullable] = ACTIONS(1828), + [anon_sym__Nonnull] = ACTIONS(1828), + [anon_sym__Nullable_result] = ACTIONS(1828), + [anon_sym__Null_unspecified] = ACTIONS(1828), + [anon_sym___autoreleasing] = ACTIONS(1828), + [anon_sym___nullable] = ACTIONS(1828), + [anon_sym___nonnull] = ACTIONS(1828), + [anon_sym___strong] = ACTIONS(1828), + [anon_sym___weak] = ACTIONS(1828), + [anon_sym___bridge] = ACTIONS(1828), + [anon_sym___bridge_transfer] = ACTIONS(1828), + [anon_sym___bridge_retained] = ACTIONS(1828), + [anon_sym___unsafe_unretained] = ACTIONS(1828), + [anon_sym___block] = ACTIONS(1828), + [anon_sym___kindof] = ACTIONS(1828), + [anon_sym___unused] = ACTIONS(1828), + [anon_sym__Complex] = ACTIONS(1828), + [anon_sym___complex] = ACTIONS(1828), + [anon_sym_IBOutlet] = ACTIONS(1828), + [anon_sym_IBInspectable] = ACTIONS(1828), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1828), + [anon_sym_signed] = ACTIONS(1828), + [anon_sym_unsigned] = ACTIONS(1828), + [anon_sym_long] = ACTIONS(1828), + [anon_sym_short] = ACTIONS(1828), + [sym_primitive_type] = ACTIONS(1828), + [anon_sym_enum] = ACTIONS(1828), + [anon_sym_struct] = ACTIONS(1828), + [anon_sym_union] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(1828), + [anon_sym_switch] = ACTIONS(1828), + [anon_sym_case] = ACTIONS(1828), + [anon_sym_default] = ACTIONS(1828), + [anon_sym_while] = ACTIONS(1828), + [anon_sym_do] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_return] = ACTIONS(1828), + [anon_sym_break] = ACTIONS(1828), + [anon_sym_continue] = ACTIONS(1828), + [anon_sym_goto] = ACTIONS(1828), + [anon_sym_DASH_DASH] = ACTIONS(1830), + [anon_sym_PLUS_PLUS] = ACTIONS(1830), + [anon_sym_sizeof] = ACTIONS(1828), + [sym_number_literal] = ACTIONS(1830), + [anon_sym_L_SQUOTE] = ACTIONS(1830), + [anon_sym_u_SQUOTE] = ACTIONS(1830), + [anon_sym_U_SQUOTE] = ACTIONS(1830), + [anon_sym_u8_SQUOTE] = ACTIONS(1830), + [anon_sym_SQUOTE] = ACTIONS(1830), + [anon_sym_L_DQUOTE] = ACTIONS(1830), + [anon_sym_u_DQUOTE] = ACTIONS(1830), + [anon_sym_U_DQUOTE] = ACTIONS(1830), + [anon_sym_u8_DQUOTE] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [sym_true] = ACTIONS(1828), + [sym_false] = ACTIONS(1828), + [sym_null] = ACTIONS(1828), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1830), + [anon_sym_ATimport] = ACTIONS(1830), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1828), + [anon_sym_ATcompatibility_alias] = ACTIONS(1830), + [anon_sym_ATprotocol] = ACTIONS(1830), + [anon_sym_ATclass] = ACTIONS(1830), + [anon_sym_ATinterface] = ACTIONS(1830), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1828), + [sym_method_attribute_specifier] = ACTIONS(1828), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1828), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1828), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1828), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1828), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1828), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1828), + [anon_sym_NS_AVAILABLE] = ACTIONS(1828), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1828), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1828), + [anon_sym_API_AVAILABLE] = ACTIONS(1828), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1828), + [anon_sym_API_DEPRECATED] = ACTIONS(1828), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1828), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1828), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1828), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1828), + [anon_sym___deprecated_msg] = ACTIONS(1828), + [anon_sym___deprecated_enum_msg] = ACTIONS(1828), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1828), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1828), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1828), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1828), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1828), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1828), + [anon_sym_ATimplementation] = ACTIONS(1830), + [anon_sym_NS_ENUM] = ACTIONS(1828), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1828), + [anon_sym_NS_OPTIONS] = ACTIONS(1828), + [anon_sym_typeof] = ACTIONS(1828), + [anon_sym___typeof] = ACTIONS(1828), + [anon_sym___typeof__] = ACTIONS(1828), + [sym_self] = ACTIONS(1828), + [sym_super] = ACTIONS(1828), + [sym_nil] = ACTIONS(1828), + [sym_id] = ACTIONS(1828), + [sym_instancetype] = ACTIONS(1828), + [sym_Class] = ACTIONS(1828), + [sym_SEL] = ACTIONS(1828), + [sym_IMP] = ACTIONS(1828), + [sym_BOOL] = ACTIONS(1828), + [sym_auto] = ACTIONS(1828), + [anon_sym_ATautoreleasepool] = ACTIONS(1830), + [anon_sym_ATsynchronized] = ACTIONS(1830), + [anon_sym_ATtry] = ACTIONS(1830), + [anon_sym_ATthrow] = ACTIONS(1830), + [anon_sym_ATselector] = ACTIONS(1830), + [anon_sym_ATencode] = ACTIONS(1830), + [anon_sym_AT] = ACTIONS(1828), + [sym_YES] = ACTIONS(1828), + [sym_NO] = ACTIONS(1828), + [anon_sym___builtin_available] = ACTIONS(1828), + [anon_sym_ATavailable] = ACTIONS(1830), + [anon_sym_va_arg] = ACTIONS(1828), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [857] = { + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [858] = { + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [859] = { + [ts_builtin_sym_end] = ACTIONS(1978), + [sym_identifier] = ACTIONS(1976), + [aux_sym_preproc_include_token1] = ACTIONS(1978), + [aux_sym_preproc_def_token1] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1976), + [anon_sym_LPAREN2] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_TILDE] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_CARET] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_typedef] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym___attribute] = ACTIONS(1976), + [anon_sym___attribute__] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1976), + [anon_sym___cdecl] = ACTIONS(1976), + [anon_sym___clrcall] = ACTIONS(1976), + [anon_sym___stdcall] = ACTIONS(1976), + [anon_sym___fastcall] = ACTIONS(1976), + [anon_sym___thiscall] = ACTIONS(1976), + [anon_sym___vectorcall] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_auto] = ACTIONS(1976), + [anon_sym_register] = ACTIONS(1976), + [anon_sym_inline] = ACTIONS(1976), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_volatile] = ACTIONS(1976), + [anon_sym_restrict] = ACTIONS(1976), + [anon_sym__Atomic] = ACTIONS(1976), + [anon_sym_in] = ACTIONS(1976), + [anon_sym_out] = ACTIONS(1976), + [anon_sym_inout] = ACTIONS(1976), + [anon_sym_bycopy] = ACTIONS(1976), + [anon_sym_byref] = ACTIONS(1976), + [anon_sym_oneway] = ACTIONS(1976), + [anon_sym__Nullable] = ACTIONS(1976), + [anon_sym__Nonnull] = ACTIONS(1976), + [anon_sym__Nullable_result] = ACTIONS(1976), + [anon_sym__Null_unspecified] = ACTIONS(1976), + [anon_sym___autoreleasing] = ACTIONS(1976), + [anon_sym___nullable] = ACTIONS(1976), + [anon_sym___nonnull] = ACTIONS(1976), + [anon_sym___strong] = ACTIONS(1976), + [anon_sym___weak] = ACTIONS(1976), + [anon_sym___bridge] = ACTIONS(1976), + [anon_sym___bridge_transfer] = ACTIONS(1976), + [anon_sym___bridge_retained] = ACTIONS(1976), + [anon_sym___unsafe_unretained] = ACTIONS(1976), + [anon_sym___block] = ACTIONS(1976), + [anon_sym___kindof] = ACTIONS(1976), + [anon_sym___unused] = ACTIONS(1976), + [anon_sym__Complex] = ACTIONS(1976), + [anon_sym___complex] = ACTIONS(1976), + [anon_sym_IBOutlet] = ACTIONS(1976), + [anon_sym_IBInspectable] = ACTIONS(1976), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1976), + [anon_sym_unsigned] = ACTIONS(1976), + [anon_sym_long] = ACTIONS(1976), + [anon_sym_short] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_switch] = ACTIONS(1976), + [anon_sym_case] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_goto] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_PLUS_PLUS] = ACTIONS(1978), + [anon_sym_sizeof] = ACTIONS(1976), + [sym_number_literal] = ACTIONS(1978), + [anon_sym_L_SQUOTE] = ACTIONS(1978), + [anon_sym_u_SQUOTE] = ACTIONS(1978), + [anon_sym_U_SQUOTE] = ACTIONS(1978), + [anon_sym_u8_SQUOTE] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_L_DQUOTE] = ACTIONS(1978), + [anon_sym_u_DQUOTE] = ACTIONS(1978), + [anon_sym_U_DQUOTE] = ACTIONS(1978), + [anon_sym_u8_DQUOTE] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1978), + [anon_sym_ATimport] = ACTIONS(1978), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1976), + [anon_sym_ATcompatibility_alias] = ACTIONS(1978), + [anon_sym_ATprotocol] = ACTIONS(1978), + [anon_sym_ATclass] = ACTIONS(1978), + [anon_sym_ATinterface] = ACTIONS(1978), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1976), + [sym_method_attribute_specifier] = ACTIONS(1976), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1976), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE] = ACTIONS(1976), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_API_AVAILABLE] = ACTIONS(1976), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_API_DEPRECATED] = ACTIONS(1976), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1976), + [anon_sym___deprecated_msg] = ACTIONS(1976), + [anon_sym___deprecated_enum_msg] = ACTIONS(1976), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1976), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1976), + [anon_sym_ATimplementation] = ACTIONS(1978), + [anon_sym_NS_ENUM] = ACTIONS(1976), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1976), + [anon_sym_NS_OPTIONS] = ACTIONS(1976), + [anon_sym_typeof] = ACTIONS(1976), + [anon_sym___typeof] = ACTIONS(1976), + [anon_sym___typeof__] = ACTIONS(1976), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_nil] = ACTIONS(1976), + [sym_id] = ACTIONS(1976), + [sym_instancetype] = ACTIONS(1976), + [sym_Class] = ACTIONS(1976), + [sym_SEL] = ACTIONS(1976), + [sym_IMP] = ACTIONS(1976), + [sym_BOOL] = ACTIONS(1976), + [sym_auto] = ACTIONS(1976), + [anon_sym_ATautoreleasepool] = ACTIONS(1978), + [anon_sym_ATsynchronized] = ACTIONS(1978), + [anon_sym_ATtry] = ACTIONS(1978), + [anon_sym_ATthrow] = ACTIONS(1978), + [anon_sym_ATselector] = ACTIONS(1978), + [anon_sym_ATencode] = ACTIONS(1978), + [anon_sym_AT] = ACTIONS(1976), + [sym_YES] = ACTIONS(1976), + [sym_NO] = ACTIONS(1976), + [anon_sym___builtin_available] = ACTIONS(1976), + [anon_sym_ATavailable] = ACTIONS(1978), + [anon_sym_va_arg] = ACTIONS(1976), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [860] = { + [ts_builtin_sym_end] = ACTIONS(1806), + [sym_identifier] = ACTIONS(1804), + [aux_sym_preproc_include_token1] = ACTIONS(1806), + [aux_sym_preproc_def_token1] = ACTIONS(1806), + [aux_sym_preproc_if_token1] = ACTIONS(1804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1804), + [anon_sym_LPAREN2] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1804), + [anon_sym_STAR] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_typedef] = ACTIONS(1804), + [anon_sym_extern] = ACTIONS(1804), + [anon_sym___attribute] = ACTIONS(1804), + [anon_sym___attribute__] = ACTIONS(1804), + [anon_sym___declspec] = ACTIONS(1804), + [anon_sym___cdecl] = ACTIONS(1804), + [anon_sym___clrcall] = ACTIONS(1804), + [anon_sym___stdcall] = ACTIONS(1804), + [anon_sym___fastcall] = ACTIONS(1804), + [anon_sym___thiscall] = ACTIONS(1804), + [anon_sym___vectorcall] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1806), + [anon_sym_LBRACK] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1804), + [anon_sym_auto] = ACTIONS(1804), + [anon_sym_register] = ACTIONS(1804), + [anon_sym_inline] = ACTIONS(1804), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_volatile] = ACTIONS(1804), + [anon_sym_restrict] = ACTIONS(1804), + [anon_sym__Atomic] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1804), + [anon_sym_out] = ACTIONS(1804), + [anon_sym_inout] = ACTIONS(1804), + [anon_sym_bycopy] = ACTIONS(1804), + [anon_sym_byref] = ACTIONS(1804), + [anon_sym_oneway] = ACTIONS(1804), + [anon_sym__Nullable] = ACTIONS(1804), + [anon_sym__Nonnull] = ACTIONS(1804), + [anon_sym__Nullable_result] = ACTIONS(1804), + [anon_sym__Null_unspecified] = ACTIONS(1804), + [anon_sym___autoreleasing] = ACTIONS(1804), + [anon_sym___nullable] = ACTIONS(1804), + [anon_sym___nonnull] = ACTIONS(1804), + [anon_sym___strong] = ACTIONS(1804), + [anon_sym___weak] = ACTIONS(1804), + [anon_sym___bridge] = ACTIONS(1804), + [anon_sym___bridge_transfer] = ACTIONS(1804), + [anon_sym___bridge_retained] = ACTIONS(1804), + [anon_sym___unsafe_unretained] = ACTIONS(1804), + [anon_sym___block] = ACTIONS(1804), + [anon_sym___kindof] = ACTIONS(1804), + [anon_sym___unused] = ACTIONS(1804), + [anon_sym__Complex] = ACTIONS(1804), + [anon_sym___complex] = ACTIONS(1804), + [anon_sym_IBOutlet] = ACTIONS(1804), + [anon_sym_IBInspectable] = ACTIONS(1804), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1804), + [anon_sym_signed] = ACTIONS(1804), + [anon_sym_unsigned] = ACTIONS(1804), + [anon_sym_long] = ACTIONS(1804), + [anon_sym_short] = ACTIONS(1804), + [sym_primitive_type] = ACTIONS(1804), + [anon_sym_enum] = ACTIONS(1804), + [anon_sym_struct] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_if] = ACTIONS(1804), + [anon_sym_switch] = ACTIONS(1804), + [anon_sym_case] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_while] = ACTIONS(1804), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1804), + [anon_sym_return] = ACTIONS(1804), + [anon_sym_break] = ACTIONS(1804), + [anon_sym_continue] = ACTIONS(1804), + [anon_sym_goto] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1806), + [anon_sym_PLUS_PLUS] = ACTIONS(1806), + [anon_sym_sizeof] = ACTIONS(1804), + [sym_number_literal] = ACTIONS(1806), + [anon_sym_L_SQUOTE] = ACTIONS(1806), + [anon_sym_u_SQUOTE] = ACTIONS(1806), + [anon_sym_U_SQUOTE] = ACTIONS(1806), + [anon_sym_u8_SQUOTE] = ACTIONS(1806), + [anon_sym_SQUOTE] = ACTIONS(1806), + [anon_sym_L_DQUOTE] = ACTIONS(1806), + [anon_sym_u_DQUOTE] = ACTIONS(1806), + [anon_sym_U_DQUOTE] = ACTIONS(1806), + [anon_sym_u8_DQUOTE] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1806), + [sym_true] = ACTIONS(1804), + [sym_false] = ACTIONS(1804), + [sym_null] = ACTIONS(1804), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1806), + [anon_sym_ATimport] = ACTIONS(1806), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1804), + [anon_sym_ATcompatibility_alias] = ACTIONS(1806), + [anon_sym_ATprotocol] = ACTIONS(1806), + [anon_sym_ATclass] = ACTIONS(1806), + [anon_sym_ATinterface] = ACTIONS(1806), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1804), + [sym_method_attribute_specifier] = ACTIONS(1804), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1804), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1804), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1804), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1804), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1804), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1804), + [anon_sym_NS_AVAILABLE] = ACTIONS(1804), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1804), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1804), + [anon_sym_API_AVAILABLE] = ACTIONS(1804), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1804), + [anon_sym_API_DEPRECATED] = ACTIONS(1804), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1804), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1804), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1804), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1804), + [anon_sym___deprecated_msg] = ACTIONS(1804), + [anon_sym___deprecated_enum_msg] = ACTIONS(1804), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1804), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1804), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1804), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1804), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1804), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1804), + [anon_sym_ATimplementation] = ACTIONS(1806), + [anon_sym_NS_ENUM] = ACTIONS(1804), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1804), + [anon_sym_NS_OPTIONS] = ACTIONS(1804), + [anon_sym_typeof] = ACTIONS(1804), + [anon_sym___typeof] = ACTIONS(1804), + [anon_sym___typeof__] = ACTIONS(1804), + [sym_self] = ACTIONS(1804), + [sym_super] = ACTIONS(1804), + [sym_nil] = ACTIONS(1804), + [sym_id] = ACTIONS(1804), + [sym_instancetype] = ACTIONS(1804), + [sym_Class] = ACTIONS(1804), + [sym_SEL] = ACTIONS(1804), + [sym_IMP] = ACTIONS(1804), + [sym_BOOL] = ACTIONS(1804), + [sym_auto] = ACTIONS(1804), + [anon_sym_ATautoreleasepool] = ACTIONS(1806), + [anon_sym_ATsynchronized] = ACTIONS(1806), + [anon_sym_ATtry] = ACTIONS(1806), + [anon_sym_ATthrow] = ACTIONS(1806), + [anon_sym_ATselector] = ACTIONS(1806), + [anon_sym_ATencode] = ACTIONS(1806), + [anon_sym_AT] = ACTIONS(1804), + [sym_YES] = ACTIONS(1804), + [sym_NO] = ACTIONS(1804), + [anon_sym___builtin_available] = ACTIONS(1804), + [anon_sym_ATavailable] = ACTIONS(1806), + [anon_sym_va_arg] = ACTIONS(1804), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [861] = { + [ts_builtin_sym_end] = ACTIONS(1718), + [sym_identifier] = ACTIONS(1716), + [aux_sym_preproc_include_token1] = ACTIONS(1718), + [aux_sym_preproc_def_token1] = ACTIONS(1718), + [aux_sym_preproc_if_token1] = ACTIONS(1716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1716), + [anon_sym_LPAREN2] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_typedef] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym_in] = ACTIONS(1716), + [anon_sym_out] = ACTIONS(1716), + [anon_sym_inout] = ACTIONS(1716), + [anon_sym_bycopy] = ACTIONS(1716), + [anon_sym_byref] = ACTIONS(1716), + [anon_sym_oneway] = ACTIONS(1716), + [anon_sym__Nullable] = ACTIONS(1716), + [anon_sym__Nonnull] = ACTIONS(1716), + [anon_sym__Nullable_result] = ACTIONS(1716), + [anon_sym__Null_unspecified] = ACTIONS(1716), + [anon_sym___autoreleasing] = ACTIONS(1716), + [anon_sym___nullable] = ACTIONS(1716), + [anon_sym___nonnull] = ACTIONS(1716), + [anon_sym___strong] = ACTIONS(1716), + [anon_sym___weak] = ACTIONS(1716), + [anon_sym___bridge] = ACTIONS(1716), + [anon_sym___bridge_transfer] = ACTIONS(1716), + [anon_sym___bridge_retained] = ACTIONS(1716), + [anon_sym___unsafe_unretained] = ACTIONS(1716), + [anon_sym___block] = ACTIONS(1716), + [anon_sym___kindof] = ACTIONS(1716), + [anon_sym___unused] = ACTIONS(1716), + [anon_sym__Complex] = ACTIONS(1716), + [anon_sym___complex] = ACTIONS(1716), + [anon_sym_IBOutlet] = ACTIONS(1716), + [anon_sym_IBInspectable] = ACTIONS(1716), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1716), + [anon_sym_unsigned] = ACTIONS(1716), + [anon_sym_long] = ACTIONS(1716), + [anon_sym_short] = ACTIONS(1716), + [sym_primitive_type] = ACTIONS(1716), + [anon_sym_enum] = ACTIONS(1716), + [anon_sym_struct] = ACTIONS(1716), + [anon_sym_union] = ACTIONS(1716), + [anon_sym_if] = ACTIONS(1716), + [anon_sym_switch] = ACTIONS(1716), + [anon_sym_case] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1716), + [anon_sym_while] = ACTIONS(1716), + [anon_sym_do] = ACTIONS(1716), + [anon_sym_for] = ACTIONS(1716), + [anon_sym_return] = ACTIONS(1716), + [anon_sym_break] = ACTIONS(1716), + [anon_sym_continue] = ACTIONS(1716), + [anon_sym_goto] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_sizeof] = ACTIONS(1716), + [sym_number_literal] = ACTIONS(1718), + [anon_sym_L_SQUOTE] = ACTIONS(1718), + [anon_sym_u_SQUOTE] = ACTIONS(1718), + [anon_sym_U_SQUOTE] = ACTIONS(1718), + [anon_sym_u8_SQUOTE] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(1718), + [anon_sym_L_DQUOTE] = ACTIONS(1718), + [anon_sym_u_DQUOTE] = ACTIONS(1718), + [anon_sym_U_DQUOTE] = ACTIONS(1718), + [anon_sym_u8_DQUOTE] = ACTIONS(1718), + [anon_sym_DQUOTE] = ACTIONS(1718), + [sym_true] = ACTIONS(1716), + [sym_false] = ACTIONS(1716), + [sym_null] = ACTIONS(1716), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1718), + [anon_sym_ATimport] = ACTIONS(1718), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1716), + [anon_sym_ATcompatibility_alias] = ACTIONS(1718), + [anon_sym_ATprotocol] = ACTIONS(1718), + [anon_sym_ATclass] = ACTIONS(1718), + [anon_sym_ATinterface] = ACTIONS(1718), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1716), + [sym_method_attribute_specifier] = ACTIONS(1716), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1716), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1716), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1716), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1716), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1716), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1716), + [anon_sym_NS_AVAILABLE] = ACTIONS(1716), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1716), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1716), + [anon_sym_API_AVAILABLE] = ACTIONS(1716), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1716), + [anon_sym_API_DEPRECATED] = ACTIONS(1716), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1716), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1716), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1716), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1716), + [anon_sym___deprecated_msg] = ACTIONS(1716), + [anon_sym___deprecated_enum_msg] = ACTIONS(1716), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1716), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1716), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1716), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1716), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1716), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1716), + [anon_sym_ATimplementation] = ACTIONS(1718), + [anon_sym_NS_ENUM] = ACTIONS(1716), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1716), + [anon_sym_NS_OPTIONS] = ACTIONS(1716), + [anon_sym_typeof] = ACTIONS(1716), + [anon_sym___typeof] = ACTIONS(1716), + [anon_sym___typeof__] = ACTIONS(1716), + [sym_self] = ACTIONS(1716), + [sym_super] = ACTIONS(1716), + [sym_nil] = ACTIONS(1716), + [sym_id] = ACTIONS(1716), + [sym_instancetype] = ACTIONS(1716), + [sym_Class] = ACTIONS(1716), + [sym_SEL] = ACTIONS(1716), + [sym_IMP] = ACTIONS(1716), + [sym_BOOL] = ACTIONS(1716), + [sym_auto] = ACTIONS(1716), + [anon_sym_ATautoreleasepool] = ACTIONS(1718), + [anon_sym_ATsynchronized] = ACTIONS(1718), + [anon_sym_ATtry] = ACTIONS(1718), + [anon_sym_ATthrow] = ACTIONS(1718), + [anon_sym_ATselector] = ACTIONS(1718), + [anon_sym_ATencode] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1716), + [sym_YES] = ACTIONS(1716), + [sym_NO] = ACTIONS(1716), + [anon_sym___builtin_available] = ACTIONS(1716), + [anon_sym_ATavailable] = ACTIONS(1718), + [anon_sym_va_arg] = ACTIONS(1716), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [862] = { + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [863] = { + [ts_builtin_sym_end] = ACTIONS(1722), + [sym_identifier] = ACTIONS(1720), + [aux_sym_preproc_include_token1] = ACTIONS(1722), + [aux_sym_preproc_def_token1] = ACTIONS(1722), + [aux_sym_preproc_if_token1] = ACTIONS(1720), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1720), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1720), + [anon_sym_LPAREN2] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_CARET] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_typedef] = ACTIONS(1720), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym___attribute] = ACTIONS(1720), + [anon_sym___attribute__] = ACTIONS(1720), + [anon_sym___declspec] = ACTIONS(1720), + [anon_sym___cdecl] = ACTIONS(1720), + [anon_sym___clrcall] = ACTIONS(1720), + [anon_sym___stdcall] = ACTIONS(1720), + [anon_sym___fastcall] = ACTIONS(1720), + [anon_sym___thiscall] = ACTIONS(1720), + [anon_sym___vectorcall] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_static] = ACTIONS(1720), + [anon_sym_auto] = ACTIONS(1720), + [anon_sym_register] = ACTIONS(1720), + [anon_sym_inline] = ACTIONS(1720), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_volatile] = ACTIONS(1720), + [anon_sym_restrict] = ACTIONS(1720), + [anon_sym__Atomic] = ACTIONS(1720), + [anon_sym_in] = ACTIONS(1720), + [anon_sym_out] = ACTIONS(1720), + [anon_sym_inout] = ACTIONS(1720), + [anon_sym_bycopy] = ACTIONS(1720), + [anon_sym_byref] = ACTIONS(1720), + [anon_sym_oneway] = ACTIONS(1720), + [anon_sym__Nullable] = ACTIONS(1720), + [anon_sym__Nonnull] = ACTIONS(1720), + [anon_sym__Nullable_result] = ACTIONS(1720), + [anon_sym__Null_unspecified] = ACTIONS(1720), + [anon_sym___autoreleasing] = ACTIONS(1720), + [anon_sym___nullable] = ACTIONS(1720), + [anon_sym___nonnull] = ACTIONS(1720), + [anon_sym___strong] = ACTIONS(1720), + [anon_sym___weak] = ACTIONS(1720), + [anon_sym___bridge] = ACTIONS(1720), + [anon_sym___bridge_transfer] = ACTIONS(1720), + [anon_sym___bridge_retained] = ACTIONS(1720), + [anon_sym___unsafe_unretained] = ACTIONS(1720), + [anon_sym___block] = ACTIONS(1720), + [anon_sym___kindof] = ACTIONS(1720), + [anon_sym___unused] = ACTIONS(1720), + [anon_sym__Complex] = ACTIONS(1720), + [anon_sym___complex] = ACTIONS(1720), + [anon_sym_IBOutlet] = ACTIONS(1720), + [anon_sym_IBInspectable] = ACTIONS(1720), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1720), + [anon_sym_signed] = ACTIONS(1720), + [anon_sym_unsigned] = ACTIONS(1720), + [anon_sym_long] = ACTIONS(1720), + [anon_sym_short] = ACTIONS(1720), + [sym_primitive_type] = ACTIONS(1720), + [anon_sym_enum] = ACTIONS(1720), + [anon_sym_struct] = ACTIONS(1720), + [anon_sym_union] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_case] = ACTIONS(1720), + [anon_sym_default] = ACTIONS(1720), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_continue] = ACTIONS(1720), + [anon_sym_goto] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_sizeof] = ACTIONS(1720), + [sym_number_literal] = ACTIONS(1722), + [anon_sym_L_SQUOTE] = ACTIONS(1722), + [anon_sym_u_SQUOTE] = ACTIONS(1722), + [anon_sym_U_SQUOTE] = ACTIONS(1722), + [anon_sym_u8_SQUOTE] = ACTIONS(1722), + [anon_sym_SQUOTE] = ACTIONS(1722), + [anon_sym_L_DQUOTE] = ACTIONS(1722), + [anon_sym_u_DQUOTE] = ACTIONS(1722), + [anon_sym_U_DQUOTE] = ACTIONS(1722), + [anon_sym_u8_DQUOTE] = ACTIONS(1722), + [anon_sym_DQUOTE] = ACTIONS(1722), + [sym_true] = ACTIONS(1720), + [sym_false] = ACTIONS(1720), + [sym_null] = ACTIONS(1720), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1722), + [anon_sym_ATimport] = ACTIONS(1722), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1720), + [anon_sym_ATcompatibility_alias] = ACTIONS(1722), + [anon_sym_ATprotocol] = ACTIONS(1722), + [anon_sym_ATclass] = ACTIONS(1722), + [anon_sym_ATinterface] = ACTIONS(1722), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1720), + [sym_method_attribute_specifier] = ACTIONS(1720), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1720), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1720), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1720), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1720), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1720), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1720), + [anon_sym_NS_AVAILABLE] = ACTIONS(1720), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1720), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1720), + [anon_sym_API_AVAILABLE] = ACTIONS(1720), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1720), + [anon_sym_API_DEPRECATED] = ACTIONS(1720), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1720), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1720), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1720), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1720), + [anon_sym___deprecated_msg] = ACTIONS(1720), + [anon_sym___deprecated_enum_msg] = ACTIONS(1720), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1720), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1720), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1720), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1720), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1720), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1720), + [anon_sym_ATimplementation] = ACTIONS(1722), + [anon_sym_NS_ENUM] = ACTIONS(1720), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1720), + [anon_sym_NS_OPTIONS] = ACTIONS(1720), + [anon_sym_typeof] = ACTIONS(1720), + [anon_sym___typeof] = ACTIONS(1720), + [anon_sym___typeof__] = ACTIONS(1720), + [sym_self] = ACTIONS(1720), + [sym_super] = ACTIONS(1720), + [sym_nil] = ACTIONS(1720), + [sym_id] = ACTIONS(1720), + [sym_instancetype] = ACTIONS(1720), + [sym_Class] = ACTIONS(1720), + [sym_SEL] = ACTIONS(1720), + [sym_IMP] = ACTIONS(1720), + [sym_BOOL] = ACTIONS(1720), + [sym_auto] = ACTIONS(1720), + [anon_sym_ATautoreleasepool] = ACTIONS(1722), + [anon_sym_ATsynchronized] = ACTIONS(1722), + [anon_sym_ATtry] = ACTIONS(1722), + [anon_sym_ATthrow] = ACTIONS(1722), + [anon_sym_ATselector] = ACTIONS(1722), + [anon_sym_ATencode] = ACTIONS(1722), + [anon_sym_AT] = ACTIONS(1720), + [sym_YES] = ACTIONS(1720), + [sym_NO] = ACTIONS(1720), + [anon_sym___builtin_available] = ACTIONS(1720), + [anon_sym_ATavailable] = ACTIONS(1722), + [anon_sym_va_arg] = ACTIONS(1720), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [864] = { + [ts_builtin_sym_end] = ACTIONS(1978), + [sym_identifier] = ACTIONS(1976), + [aux_sym_preproc_include_token1] = ACTIONS(1978), + [aux_sym_preproc_def_token1] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1976), + [anon_sym_LPAREN2] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_TILDE] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_CARET] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_typedef] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym___attribute] = ACTIONS(1976), + [anon_sym___attribute__] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1976), + [anon_sym___cdecl] = ACTIONS(1976), + [anon_sym___clrcall] = ACTIONS(1976), + [anon_sym___stdcall] = ACTIONS(1976), + [anon_sym___fastcall] = ACTIONS(1976), + [anon_sym___thiscall] = ACTIONS(1976), + [anon_sym___vectorcall] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_auto] = ACTIONS(1976), + [anon_sym_register] = ACTIONS(1976), + [anon_sym_inline] = ACTIONS(1976), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_volatile] = ACTIONS(1976), + [anon_sym_restrict] = ACTIONS(1976), + [anon_sym__Atomic] = ACTIONS(1976), + [anon_sym_in] = ACTIONS(1976), + [anon_sym_out] = ACTIONS(1976), + [anon_sym_inout] = ACTIONS(1976), + [anon_sym_bycopy] = ACTIONS(1976), + [anon_sym_byref] = ACTIONS(1976), + [anon_sym_oneway] = ACTIONS(1976), + [anon_sym__Nullable] = ACTIONS(1976), + [anon_sym__Nonnull] = ACTIONS(1976), + [anon_sym__Nullable_result] = ACTIONS(1976), + [anon_sym__Null_unspecified] = ACTIONS(1976), + [anon_sym___autoreleasing] = ACTIONS(1976), + [anon_sym___nullable] = ACTIONS(1976), + [anon_sym___nonnull] = ACTIONS(1976), + [anon_sym___strong] = ACTIONS(1976), + [anon_sym___weak] = ACTIONS(1976), + [anon_sym___bridge] = ACTIONS(1976), + [anon_sym___bridge_transfer] = ACTIONS(1976), + [anon_sym___bridge_retained] = ACTIONS(1976), + [anon_sym___unsafe_unretained] = ACTIONS(1976), + [anon_sym___block] = ACTIONS(1976), + [anon_sym___kindof] = ACTIONS(1976), + [anon_sym___unused] = ACTIONS(1976), + [anon_sym__Complex] = ACTIONS(1976), + [anon_sym___complex] = ACTIONS(1976), + [anon_sym_IBOutlet] = ACTIONS(1976), + [anon_sym_IBInspectable] = ACTIONS(1976), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1976), + [anon_sym_unsigned] = ACTIONS(1976), + [anon_sym_long] = ACTIONS(1976), + [anon_sym_short] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_switch] = ACTIONS(1976), + [anon_sym_case] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_goto] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_PLUS_PLUS] = ACTIONS(1978), + [anon_sym_sizeof] = ACTIONS(1976), + [sym_number_literal] = ACTIONS(1978), + [anon_sym_L_SQUOTE] = ACTIONS(1978), + [anon_sym_u_SQUOTE] = ACTIONS(1978), + [anon_sym_U_SQUOTE] = ACTIONS(1978), + [anon_sym_u8_SQUOTE] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_L_DQUOTE] = ACTIONS(1978), + [anon_sym_u_DQUOTE] = ACTIONS(1978), + [anon_sym_U_DQUOTE] = ACTIONS(1978), + [anon_sym_u8_DQUOTE] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1978), + [anon_sym_ATimport] = ACTIONS(1978), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1976), + [anon_sym_ATcompatibility_alias] = ACTIONS(1978), + [anon_sym_ATprotocol] = ACTIONS(1978), + [anon_sym_ATclass] = ACTIONS(1978), + [anon_sym_ATinterface] = ACTIONS(1978), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1976), + [sym_method_attribute_specifier] = ACTIONS(1976), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1976), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE] = ACTIONS(1976), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_API_AVAILABLE] = ACTIONS(1976), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_API_DEPRECATED] = ACTIONS(1976), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1976), + [anon_sym___deprecated_msg] = ACTIONS(1976), + [anon_sym___deprecated_enum_msg] = ACTIONS(1976), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1976), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1976), + [anon_sym_ATimplementation] = ACTIONS(1978), + [anon_sym_NS_ENUM] = ACTIONS(1976), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1976), + [anon_sym_NS_OPTIONS] = ACTIONS(1976), + [anon_sym_typeof] = ACTIONS(1976), + [anon_sym___typeof] = ACTIONS(1976), + [anon_sym___typeof__] = ACTIONS(1976), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_nil] = ACTIONS(1976), + [sym_id] = ACTIONS(1976), + [sym_instancetype] = ACTIONS(1976), + [sym_Class] = ACTIONS(1976), + [sym_SEL] = ACTIONS(1976), + [sym_IMP] = ACTIONS(1976), + [sym_BOOL] = ACTIONS(1976), + [sym_auto] = ACTIONS(1976), + [anon_sym_ATautoreleasepool] = ACTIONS(1978), + [anon_sym_ATsynchronized] = ACTIONS(1978), + [anon_sym_ATtry] = ACTIONS(1978), + [anon_sym_ATthrow] = ACTIONS(1978), + [anon_sym_ATselector] = ACTIONS(1978), + [anon_sym_ATencode] = ACTIONS(1978), + [anon_sym_AT] = ACTIONS(1976), + [sym_YES] = ACTIONS(1976), + [sym_NO] = ACTIONS(1976), + [anon_sym___builtin_available] = ACTIONS(1976), + [anon_sym_ATavailable] = ACTIONS(1978), + [anon_sym_va_arg] = ACTIONS(1976), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [865] = { + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [866] = { + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [867] = { + [ts_builtin_sym_end] = ACTIONS(1726), + [sym_identifier] = ACTIONS(1724), + [aux_sym_preproc_include_token1] = ACTIONS(1726), + [aux_sym_preproc_def_token1] = ACTIONS(1726), + [aux_sym_preproc_if_token1] = ACTIONS(1724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1724), + [anon_sym_LPAREN2] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_CARET] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_typedef] = ACTIONS(1724), + [anon_sym_extern] = ACTIONS(1724), + [anon_sym___attribute] = ACTIONS(1724), + [anon_sym___attribute__] = ACTIONS(1724), + [anon_sym___declspec] = ACTIONS(1724), + [anon_sym___cdecl] = ACTIONS(1724), + [anon_sym___clrcall] = ACTIONS(1724), + [anon_sym___stdcall] = ACTIONS(1724), + [anon_sym___fastcall] = ACTIONS(1724), + [anon_sym___thiscall] = ACTIONS(1724), + [anon_sym___vectorcall] = ACTIONS(1724), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_static] = ACTIONS(1724), + [anon_sym_auto] = ACTIONS(1724), + [anon_sym_register] = ACTIONS(1724), + [anon_sym_inline] = ACTIONS(1724), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1724), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_volatile] = ACTIONS(1724), + [anon_sym_restrict] = ACTIONS(1724), + [anon_sym__Atomic] = ACTIONS(1724), + [anon_sym_in] = ACTIONS(1724), + [anon_sym_out] = ACTIONS(1724), + [anon_sym_inout] = ACTIONS(1724), + [anon_sym_bycopy] = ACTIONS(1724), + [anon_sym_byref] = ACTIONS(1724), + [anon_sym_oneway] = ACTIONS(1724), + [anon_sym__Nullable] = ACTIONS(1724), + [anon_sym__Nonnull] = ACTIONS(1724), + [anon_sym__Nullable_result] = ACTIONS(1724), + [anon_sym__Null_unspecified] = ACTIONS(1724), + [anon_sym___autoreleasing] = ACTIONS(1724), + [anon_sym___nullable] = ACTIONS(1724), + [anon_sym___nonnull] = ACTIONS(1724), + [anon_sym___strong] = ACTIONS(1724), + [anon_sym___weak] = ACTIONS(1724), + [anon_sym___bridge] = ACTIONS(1724), + [anon_sym___bridge_transfer] = ACTIONS(1724), + [anon_sym___bridge_retained] = ACTIONS(1724), + [anon_sym___unsafe_unretained] = ACTIONS(1724), + [anon_sym___block] = ACTIONS(1724), + [anon_sym___kindof] = ACTIONS(1724), + [anon_sym___unused] = ACTIONS(1724), + [anon_sym__Complex] = ACTIONS(1724), + [anon_sym___complex] = ACTIONS(1724), + [anon_sym_IBOutlet] = ACTIONS(1724), + [anon_sym_IBInspectable] = ACTIONS(1724), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1724), + [anon_sym_unsigned] = ACTIONS(1724), + [anon_sym_long] = ACTIONS(1724), + [anon_sym_short] = ACTIONS(1724), + [sym_primitive_type] = ACTIONS(1724), + [anon_sym_enum] = ACTIONS(1724), + [anon_sym_struct] = ACTIONS(1724), + [anon_sym_union] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_case] = ACTIONS(1724), + [anon_sym_default] = ACTIONS(1724), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_do] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_continue] = ACTIONS(1724), + [anon_sym_goto] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_sizeof] = ACTIONS(1724), + [sym_number_literal] = ACTIONS(1726), + [anon_sym_L_SQUOTE] = ACTIONS(1726), + [anon_sym_u_SQUOTE] = ACTIONS(1726), + [anon_sym_U_SQUOTE] = ACTIONS(1726), + [anon_sym_u8_SQUOTE] = ACTIONS(1726), + [anon_sym_SQUOTE] = ACTIONS(1726), + [anon_sym_L_DQUOTE] = ACTIONS(1726), + [anon_sym_u_DQUOTE] = ACTIONS(1726), + [anon_sym_U_DQUOTE] = ACTIONS(1726), + [anon_sym_u8_DQUOTE] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [sym_true] = ACTIONS(1724), + [sym_false] = ACTIONS(1724), + [sym_null] = ACTIONS(1724), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1726), + [anon_sym_ATimport] = ACTIONS(1726), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1724), + [anon_sym_ATcompatibility_alias] = ACTIONS(1726), + [anon_sym_ATprotocol] = ACTIONS(1726), + [anon_sym_ATclass] = ACTIONS(1726), + [anon_sym_ATinterface] = ACTIONS(1726), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1724), + [sym_method_attribute_specifier] = ACTIONS(1724), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1724), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1724), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1724), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1724), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1724), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1724), + [anon_sym_NS_AVAILABLE] = ACTIONS(1724), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1724), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1724), + [anon_sym_API_AVAILABLE] = ACTIONS(1724), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1724), + [anon_sym_API_DEPRECATED] = ACTIONS(1724), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1724), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1724), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1724), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1724), + [anon_sym___deprecated_msg] = ACTIONS(1724), + [anon_sym___deprecated_enum_msg] = ACTIONS(1724), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1724), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1724), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1724), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1724), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1724), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1724), + [anon_sym_ATimplementation] = ACTIONS(1726), + [anon_sym_NS_ENUM] = ACTIONS(1724), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1724), + [anon_sym_NS_OPTIONS] = ACTIONS(1724), + [anon_sym_typeof] = ACTIONS(1724), + [anon_sym___typeof] = ACTIONS(1724), + [anon_sym___typeof__] = ACTIONS(1724), + [sym_self] = ACTIONS(1724), + [sym_super] = ACTIONS(1724), + [sym_nil] = ACTIONS(1724), + [sym_id] = ACTIONS(1724), + [sym_instancetype] = ACTIONS(1724), + [sym_Class] = ACTIONS(1724), + [sym_SEL] = ACTIONS(1724), + [sym_IMP] = ACTIONS(1724), + [sym_BOOL] = ACTIONS(1724), + [sym_auto] = ACTIONS(1724), + [anon_sym_ATautoreleasepool] = ACTIONS(1726), + [anon_sym_ATsynchronized] = ACTIONS(1726), + [anon_sym_ATtry] = ACTIONS(1726), + [anon_sym_ATthrow] = ACTIONS(1726), + [anon_sym_ATselector] = ACTIONS(1726), + [anon_sym_ATencode] = ACTIONS(1726), + [anon_sym_AT] = ACTIONS(1724), + [sym_YES] = ACTIONS(1724), + [sym_NO] = ACTIONS(1724), + [anon_sym___builtin_available] = ACTIONS(1724), + [anon_sym_ATavailable] = ACTIONS(1726), + [anon_sym_va_arg] = ACTIONS(1724), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [868] = { + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [869] = { + [ts_builtin_sym_end] = ACTIONS(1978), + [sym_identifier] = ACTIONS(1976), + [aux_sym_preproc_include_token1] = ACTIONS(1978), + [aux_sym_preproc_def_token1] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1976), + [anon_sym_LPAREN2] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_TILDE] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_CARET] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_typedef] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym___attribute] = ACTIONS(1976), + [anon_sym___attribute__] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1976), + [anon_sym___cdecl] = ACTIONS(1976), + [anon_sym___clrcall] = ACTIONS(1976), + [anon_sym___stdcall] = ACTIONS(1976), + [anon_sym___fastcall] = ACTIONS(1976), + [anon_sym___thiscall] = ACTIONS(1976), + [anon_sym___vectorcall] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_auto] = ACTIONS(1976), + [anon_sym_register] = ACTIONS(1976), + [anon_sym_inline] = ACTIONS(1976), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_volatile] = ACTIONS(1976), + [anon_sym_restrict] = ACTIONS(1976), + [anon_sym__Atomic] = ACTIONS(1976), + [anon_sym_in] = ACTIONS(1976), + [anon_sym_out] = ACTIONS(1976), + [anon_sym_inout] = ACTIONS(1976), + [anon_sym_bycopy] = ACTIONS(1976), + [anon_sym_byref] = ACTIONS(1976), + [anon_sym_oneway] = ACTIONS(1976), + [anon_sym__Nullable] = ACTIONS(1976), + [anon_sym__Nonnull] = ACTIONS(1976), + [anon_sym__Nullable_result] = ACTIONS(1976), + [anon_sym__Null_unspecified] = ACTIONS(1976), + [anon_sym___autoreleasing] = ACTIONS(1976), + [anon_sym___nullable] = ACTIONS(1976), + [anon_sym___nonnull] = ACTIONS(1976), + [anon_sym___strong] = ACTIONS(1976), + [anon_sym___weak] = ACTIONS(1976), + [anon_sym___bridge] = ACTIONS(1976), + [anon_sym___bridge_transfer] = ACTIONS(1976), + [anon_sym___bridge_retained] = ACTIONS(1976), + [anon_sym___unsafe_unretained] = ACTIONS(1976), + [anon_sym___block] = ACTIONS(1976), + [anon_sym___kindof] = ACTIONS(1976), + [anon_sym___unused] = ACTIONS(1976), + [anon_sym__Complex] = ACTIONS(1976), + [anon_sym___complex] = ACTIONS(1976), + [anon_sym_IBOutlet] = ACTIONS(1976), + [anon_sym_IBInspectable] = ACTIONS(1976), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1976), + [anon_sym_unsigned] = ACTIONS(1976), + [anon_sym_long] = ACTIONS(1976), + [anon_sym_short] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_switch] = ACTIONS(1976), + [anon_sym_case] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_goto] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_PLUS_PLUS] = ACTIONS(1978), + [anon_sym_sizeof] = ACTIONS(1976), + [sym_number_literal] = ACTIONS(1978), + [anon_sym_L_SQUOTE] = ACTIONS(1978), + [anon_sym_u_SQUOTE] = ACTIONS(1978), + [anon_sym_U_SQUOTE] = ACTIONS(1978), + [anon_sym_u8_SQUOTE] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_L_DQUOTE] = ACTIONS(1978), + [anon_sym_u_DQUOTE] = ACTIONS(1978), + [anon_sym_U_DQUOTE] = ACTIONS(1978), + [anon_sym_u8_DQUOTE] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1978), + [anon_sym_ATimport] = ACTIONS(1978), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1976), + [anon_sym_ATcompatibility_alias] = ACTIONS(1978), + [anon_sym_ATprotocol] = ACTIONS(1978), + [anon_sym_ATclass] = ACTIONS(1978), + [anon_sym_ATinterface] = ACTIONS(1978), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1976), + [sym_method_attribute_specifier] = ACTIONS(1976), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1976), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE] = ACTIONS(1976), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_API_AVAILABLE] = ACTIONS(1976), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_API_DEPRECATED] = ACTIONS(1976), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1976), + [anon_sym___deprecated_msg] = ACTIONS(1976), + [anon_sym___deprecated_enum_msg] = ACTIONS(1976), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1976), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1976), + [anon_sym_ATimplementation] = ACTIONS(1978), + [anon_sym_NS_ENUM] = ACTIONS(1976), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1976), + [anon_sym_NS_OPTIONS] = ACTIONS(1976), + [anon_sym_typeof] = ACTIONS(1976), + [anon_sym___typeof] = ACTIONS(1976), + [anon_sym___typeof__] = ACTIONS(1976), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_nil] = ACTIONS(1976), + [sym_id] = ACTIONS(1976), + [sym_instancetype] = ACTIONS(1976), + [sym_Class] = ACTIONS(1976), + [sym_SEL] = ACTIONS(1976), + [sym_IMP] = ACTIONS(1976), + [sym_BOOL] = ACTIONS(1976), + [sym_auto] = ACTIONS(1976), + [anon_sym_ATautoreleasepool] = ACTIONS(1978), + [anon_sym_ATsynchronized] = ACTIONS(1978), + [anon_sym_ATtry] = ACTIONS(1978), + [anon_sym_ATthrow] = ACTIONS(1978), + [anon_sym_ATselector] = ACTIONS(1978), + [anon_sym_ATencode] = ACTIONS(1978), + [anon_sym_AT] = ACTIONS(1976), + [sym_YES] = ACTIONS(1976), + [sym_NO] = ACTIONS(1976), + [anon_sym___builtin_available] = ACTIONS(1976), + [anon_sym_ATavailable] = ACTIONS(1978), + [anon_sym_va_arg] = ACTIONS(1976), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [870] = { + [ts_builtin_sym_end] = ACTIONS(1978), + [sym_identifier] = ACTIONS(1976), + [aux_sym_preproc_include_token1] = ACTIONS(1978), + [aux_sym_preproc_def_token1] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1976), + [anon_sym_LPAREN2] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_TILDE] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_CARET] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_typedef] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym___attribute] = ACTIONS(1976), + [anon_sym___attribute__] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1976), + [anon_sym___cdecl] = ACTIONS(1976), + [anon_sym___clrcall] = ACTIONS(1976), + [anon_sym___stdcall] = ACTIONS(1976), + [anon_sym___fastcall] = ACTIONS(1976), + [anon_sym___thiscall] = ACTIONS(1976), + [anon_sym___vectorcall] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_auto] = ACTIONS(1976), + [anon_sym_register] = ACTIONS(1976), + [anon_sym_inline] = ACTIONS(1976), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_volatile] = ACTIONS(1976), + [anon_sym_restrict] = ACTIONS(1976), + [anon_sym__Atomic] = ACTIONS(1976), + [anon_sym_in] = ACTIONS(1976), + [anon_sym_out] = ACTIONS(1976), + [anon_sym_inout] = ACTIONS(1976), + [anon_sym_bycopy] = ACTIONS(1976), + [anon_sym_byref] = ACTIONS(1976), + [anon_sym_oneway] = ACTIONS(1976), + [anon_sym__Nullable] = ACTIONS(1976), + [anon_sym__Nonnull] = ACTIONS(1976), + [anon_sym__Nullable_result] = ACTIONS(1976), + [anon_sym__Null_unspecified] = ACTIONS(1976), + [anon_sym___autoreleasing] = ACTIONS(1976), + [anon_sym___nullable] = ACTIONS(1976), + [anon_sym___nonnull] = ACTIONS(1976), + [anon_sym___strong] = ACTIONS(1976), + [anon_sym___weak] = ACTIONS(1976), + [anon_sym___bridge] = ACTIONS(1976), + [anon_sym___bridge_transfer] = ACTIONS(1976), + [anon_sym___bridge_retained] = ACTIONS(1976), + [anon_sym___unsafe_unretained] = ACTIONS(1976), + [anon_sym___block] = ACTIONS(1976), + [anon_sym___kindof] = ACTIONS(1976), + [anon_sym___unused] = ACTIONS(1976), + [anon_sym__Complex] = ACTIONS(1976), + [anon_sym___complex] = ACTIONS(1976), + [anon_sym_IBOutlet] = ACTIONS(1976), + [anon_sym_IBInspectable] = ACTIONS(1976), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1976), + [anon_sym_unsigned] = ACTIONS(1976), + [anon_sym_long] = ACTIONS(1976), + [anon_sym_short] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_switch] = ACTIONS(1976), + [anon_sym_case] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_goto] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_PLUS_PLUS] = ACTIONS(1978), + [anon_sym_sizeof] = ACTIONS(1976), + [sym_number_literal] = ACTIONS(1978), + [anon_sym_L_SQUOTE] = ACTIONS(1978), + [anon_sym_u_SQUOTE] = ACTIONS(1978), + [anon_sym_U_SQUOTE] = ACTIONS(1978), + [anon_sym_u8_SQUOTE] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_L_DQUOTE] = ACTIONS(1978), + [anon_sym_u_DQUOTE] = ACTIONS(1978), + [anon_sym_U_DQUOTE] = ACTIONS(1978), + [anon_sym_u8_DQUOTE] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1978), + [anon_sym_ATimport] = ACTIONS(1978), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1976), + [anon_sym_ATcompatibility_alias] = ACTIONS(1978), + [anon_sym_ATprotocol] = ACTIONS(1978), + [anon_sym_ATclass] = ACTIONS(1978), + [anon_sym_ATinterface] = ACTIONS(1978), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1976), + [sym_method_attribute_specifier] = ACTIONS(1976), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1976), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE] = ACTIONS(1976), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_API_AVAILABLE] = ACTIONS(1976), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_API_DEPRECATED] = ACTIONS(1976), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1976), + [anon_sym___deprecated_msg] = ACTIONS(1976), + [anon_sym___deprecated_enum_msg] = ACTIONS(1976), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1976), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1976), + [anon_sym_ATimplementation] = ACTIONS(1978), + [anon_sym_NS_ENUM] = ACTIONS(1976), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1976), + [anon_sym_NS_OPTIONS] = ACTIONS(1976), + [anon_sym_typeof] = ACTIONS(1976), + [anon_sym___typeof] = ACTIONS(1976), + [anon_sym___typeof__] = ACTIONS(1976), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_nil] = ACTIONS(1976), + [sym_id] = ACTIONS(1976), + [sym_instancetype] = ACTIONS(1976), + [sym_Class] = ACTIONS(1976), + [sym_SEL] = ACTIONS(1976), + [sym_IMP] = ACTIONS(1976), + [sym_BOOL] = ACTIONS(1976), + [sym_auto] = ACTIONS(1976), + [anon_sym_ATautoreleasepool] = ACTIONS(1978), + [anon_sym_ATsynchronized] = ACTIONS(1978), + [anon_sym_ATtry] = ACTIONS(1978), + [anon_sym_ATthrow] = ACTIONS(1978), + [anon_sym_ATselector] = ACTIONS(1978), + [anon_sym_ATencode] = ACTIONS(1978), + [anon_sym_AT] = ACTIONS(1976), + [sym_YES] = ACTIONS(1976), + [sym_NO] = ACTIONS(1976), + [anon_sym___builtin_available] = ACTIONS(1976), + [anon_sym_ATavailable] = ACTIONS(1978), + [anon_sym_va_arg] = ACTIONS(1976), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [871] = { + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [872] = { + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [873] = { + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [874] = { + [ts_builtin_sym_end] = ACTIONS(1802), + [sym_identifier] = ACTIONS(1800), + [aux_sym_preproc_include_token1] = ACTIONS(1802), + [aux_sym_preproc_def_token1] = ACTIONS(1802), + [aux_sym_preproc_if_token1] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1800), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_CARET] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_typedef] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1800), + [anon_sym___attribute] = ACTIONS(1800), + [anon_sym___attribute__] = ACTIONS(1800), + [anon_sym___declspec] = ACTIONS(1800), + [anon_sym___cdecl] = ACTIONS(1800), + [anon_sym___clrcall] = ACTIONS(1800), + [anon_sym___stdcall] = ACTIONS(1800), + [anon_sym___fastcall] = ACTIONS(1800), + [anon_sym___thiscall] = ACTIONS(1800), + [anon_sym___vectorcall] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1800), + [anon_sym_auto] = ACTIONS(1800), + [anon_sym_register] = ACTIONS(1800), + [anon_sym_inline] = ACTIONS(1800), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_volatile] = ACTIONS(1800), + [anon_sym_restrict] = ACTIONS(1800), + [anon_sym__Atomic] = ACTIONS(1800), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_out] = ACTIONS(1800), + [anon_sym_inout] = ACTIONS(1800), + [anon_sym_bycopy] = ACTIONS(1800), + [anon_sym_byref] = ACTIONS(1800), + [anon_sym_oneway] = ACTIONS(1800), + [anon_sym__Nullable] = ACTIONS(1800), + [anon_sym__Nonnull] = ACTIONS(1800), + [anon_sym__Nullable_result] = ACTIONS(1800), + [anon_sym__Null_unspecified] = ACTIONS(1800), + [anon_sym___autoreleasing] = ACTIONS(1800), + [anon_sym___nullable] = ACTIONS(1800), + [anon_sym___nonnull] = ACTIONS(1800), + [anon_sym___strong] = ACTIONS(1800), + [anon_sym___weak] = ACTIONS(1800), + [anon_sym___bridge] = ACTIONS(1800), + [anon_sym___bridge_transfer] = ACTIONS(1800), + [anon_sym___bridge_retained] = ACTIONS(1800), + [anon_sym___unsafe_unretained] = ACTIONS(1800), + [anon_sym___block] = ACTIONS(1800), + [anon_sym___kindof] = ACTIONS(1800), + [anon_sym___unused] = ACTIONS(1800), + [anon_sym__Complex] = ACTIONS(1800), + [anon_sym___complex] = ACTIONS(1800), + [anon_sym_IBOutlet] = ACTIONS(1800), + [anon_sym_IBInspectable] = ACTIONS(1800), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1800), + [anon_sym_signed] = ACTIONS(1800), + [anon_sym_unsigned] = ACTIONS(1800), + [anon_sym_long] = ACTIONS(1800), + [anon_sym_short] = ACTIONS(1800), + [sym_primitive_type] = ACTIONS(1800), + [anon_sym_enum] = ACTIONS(1800), + [anon_sym_struct] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_do] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_goto] = ACTIONS(1800), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1802), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(1802), + [anon_sym_L_SQUOTE] = ACTIONS(1802), + [anon_sym_u_SQUOTE] = ACTIONS(1802), + [anon_sym_U_SQUOTE] = ACTIONS(1802), + [anon_sym_u8_SQUOTE] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_L_DQUOTE] = ACTIONS(1802), + [anon_sym_u_DQUOTE] = ACTIONS(1802), + [anon_sym_U_DQUOTE] = ACTIONS(1802), + [anon_sym_u8_DQUOTE] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym_true] = ACTIONS(1800), + [sym_false] = ACTIONS(1800), + [sym_null] = ACTIONS(1800), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1802), + [anon_sym_ATimport] = ACTIONS(1802), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1800), + [anon_sym_ATcompatibility_alias] = ACTIONS(1802), + [anon_sym_ATprotocol] = ACTIONS(1802), + [anon_sym_ATclass] = ACTIONS(1802), + [anon_sym_ATinterface] = ACTIONS(1802), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1800), + [sym_method_attribute_specifier] = ACTIONS(1800), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1800), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE] = ACTIONS(1800), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_API_AVAILABLE] = ACTIONS(1800), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_API_DEPRECATED] = ACTIONS(1800), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1800), + [anon_sym___deprecated_msg] = ACTIONS(1800), + [anon_sym___deprecated_enum_msg] = ACTIONS(1800), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1800), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1800), + [anon_sym_ATimplementation] = ACTIONS(1802), + [anon_sym_NS_ENUM] = ACTIONS(1800), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1800), + [anon_sym_NS_OPTIONS] = ACTIONS(1800), + [anon_sym_typeof] = ACTIONS(1800), + [anon_sym___typeof] = ACTIONS(1800), + [anon_sym___typeof__] = ACTIONS(1800), + [sym_self] = ACTIONS(1800), + [sym_super] = ACTIONS(1800), + [sym_nil] = ACTIONS(1800), + [sym_id] = ACTIONS(1800), + [sym_instancetype] = ACTIONS(1800), + [sym_Class] = ACTIONS(1800), + [sym_SEL] = ACTIONS(1800), + [sym_IMP] = ACTIONS(1800), + [sym_BOOL] = ACTIONS(1800), + [sym_auto] = ACTIONS(1800), + [anon_sym_ATautoreleasepool] = ACTIONS(1802), + [anon_sym_ATsynchronized] = ACTIONS(1802), + [anon_sym_ATtry] = ACTIONS(1802), + [anon_sym_ATthrow] = ACTIONS(1802), + [anon_sym_ATselector] = ACTIONS(1802), + [anon_sym_ATencode] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1800), + [sym_YES] = ACTIONS(1800), + [sym_NO] = ACTIONS(1800), + [anon_sym___builtin_available] = ACTIONS(1800), + [anon_sym_ATavailable] = ACTIONS(1802), + [anon_sym_va_arg] = ACTIONS(1800), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [875] = { + [ts_builtin_sym_end] = ACTIONS(1982), + [sym_identifier] = ACTIONS(1980), + [aux_sym_preproc_include_token1] = ACTIONS(1982), + [aux_sym_preproc_def_token1] = ACTIONS(1982), + [aux_sym_preproc_if_token1] = ACTIONS(1980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1980), + [anon_sym_LPAREN2] = ACTIONS(1982), + [anon_sym_BANG] = ACTIONS(1982), + [anon_sym_TILDE] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(1980), + [anon_sym_STAR] = ACTIONS(1982), + [anon_sym_CARET] = ACTIONS(1982), + [anon_sym_AMP] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_typedef] = ACTIONS(1980), + [anon_sym_extern] = ACTIONS(1980), + [anon_sym___attribute] = ACTIONS(1980), + [anon_sym___attribute__] = ACTIONS(1980), + [anon_sym___declspec] = ACTIONS(1980), + [anon_sym___cdecl] = ACTIONS(1980), + [anon_sym___clrcall] = ACTIONS(1980), + [anon_sym___stdcall] = ACTIONS(1980), + [anon_sym___fastcall] = ACTIONS(1980), + [anon_sym___thiscall] = ACTIONS(1980), + [anon_sym___vectorcall] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(1982), + [anon_sym_RBRACE] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1982), + [anon_sym_static] = ACTIONS(1980), + [anon_sym_auto] = ACTIONS(1980), + [anon_sym_register] = ACTIONS(1980), + [anon_sym_inline] = ACTIONS(1980), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1980), + [anon_sym_const] = ACTIONS(1980), + [anon_sym_volatile] = ACTIONS(1980), + [anon_sym_restrict] = ACTIONS(1980), + [anon_sym__Atomic] = ACTIONS(1980), + [anon_sym_in] = ACTIONS(1980), + [anon_sym_out] = ACTIONS(1980), + [anon_sym_inout] = ACTIONS(1980), + [anon_sym_bycopy] = ACTIONS(1980), + [anon_sym_byref] = ACTIONS(1980), + [anon_sym_oneway] = ACTIONS(1980), + [anon_sym__Nullable] = ACTIONS(1980), + [anon_sym__Nonnull] = ACTIONS(1980), + [anon_sym__Nullable_result] = ACTIONS(1980), + [anon_sym__Null_unspecified] = ACTIONS(1980), + [anon_sym___autoreleasing] = ACTIONS(1980), + [anon_sym___nullable] = ACTIONS(1980), + [anon_sym___nonnull] = ACTIONS(1980), + [anon_sym___strong] = ACTIONS(1980), + [anon_sym___weak] = ACTIONS(1980), + [anon_sym___bridge] = ACTIONS(1980), + [anon_sym___bridge_transfer] = ACTIONS(1980), + [anon_sym___bridge_retained] = ACTIONS(1980), + [anon_sym___unsafe_unretained] = ACTIONS(1980), + [anon_sym___block] = ACTIONS(1980), + [anon_sym___kindof] = ACTIONS(1980), + [anon_sym___unused] = ACTIONS(1980), + [anon_sym__Complex] = ACTIONS(1980), + [anon_sym___complex] = ACTIONS(1980), + [anon_sym_IBOutlet] = ACTIONS(1980), + [anon_sym_IBInspectable] = ACTIONS(1980), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1980), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [sym_primitive_type] = ACTIONS(1980), + [anon_sym_enum] = ACTIONS(1980), + [anon_sym_struct] = ACTIONS(1980), + [anon_sym_union] = ACTIONS(1980), + [anon_sym_if] = ACTIONS(1980), + [anon_sym_switch] = ACTIONS(1980), + [anon_sym_case] = ACTIONS(1980), + [anon_sym_default] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_do] = ACTIONS(1980), + [anon_sym_for] = ACTIONS(1980), + [anon_sym_return] = ACTIONS(1980), + [anon_sym_break] = ACTIONS(1980), + [anon_sym_continue] = ACTIONS(1980), + [anon_sym_goto] = ACTIONS(1980), + [anon_sym_DASH_DASH] = ACTIONS(1982), + [anon_sym_PLUS_PLUS] = ACTIONS(1982), + [anon_sym_sizeof] = ACTIONS(1980), + [sym_number_literal] = ACTIONS(1982), + [anon_sym_L_SQUOTE] = ACTIONS(1982), + [anon_sym_u_SQUOTE] = ACTIONS(1982), + [anon_sym_U_SQUOTE] = ACTIONS(1982), + [anon_sym_u8_SQUOTE] = ACTIONS(1982), + [anon_sym_SQUOTE] = ACTIONS(1982), + [anon_sym_L_DQUOTE] = ACTIONS(1982), + [anon_sym_u_DQUOTE] = ACTIONS(1982), + [anon_sym_U_DQUOTE] = ACTIONS(1982), + [anon_sym_u8_DQUOTE] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(1982), + [sym_true] = ACTIONS(1980), + [sym_false] = ACTIONS(1980), + [sym_null] = ACTIONS(1980), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1982), + [anon_sym_ATimport] = ACTIONS(1982), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1980), + [anon_sym_ATcompatibility_alias] = ACTIONS(1982), + [anon_sym_ATprotocol] = ACTIONS(1982), + [anon_sym_ATclass] = ACTIONS(1982), + [anon_sym_ATinterface] = ACTIONS(1982), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1980), + [sym_method_attribute_specifier] = ACTIONS(1980), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1980), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1980), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1980), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1980), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1980), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1980), + [anon_sym_NS_AVAILABLE] = ACTIONS(1980), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1980), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1980), + [anon_sym_API_AVAILABLE] = ACTIONS(1980), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1980), + [anon_sym_API_DEPRECATED] = ACTIONS(1980), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1980), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1980), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1980), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1980), + [anon_sym___deprecated_msg] = ACTIONS(1980), + [anon_sym___deprecated_enum_msg] = ACTIONS(1980), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1980), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1980), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1980), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1980), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1980), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1980), + [anon_sym_ATimplementation] = ACTIONS(1982), + [anon_sym_NS_ENUM] = ACTIONS(1980), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1980), + [anon_sym_NS_OPTIONS] = ACTIONS(1980), + [anon_sym_typeof] = ACTIONS(1980), + [anon_sym___typeof] = ACTIONS(1980), + [anon_sym___typeof__] = ACTIONS(1980), + [sym_self] = ACTIONS(1980), + [sym_super] = ACTIONS(1980), + [sym_nil] = ACTIONS(1980), + [sym_id] = ACTIONS(1980), + [sym_instancetype] = ACTIONS(1980), + [sym_Class] = ACTIONS(1980), + [sym_SEL] = ACTIONS(1980), + [sym_IMP] = ACTIONS(1980), + [sym_BOOL] = ACTIONS(1980), + [sym_auto] = ACTIONS(1980), + [anon_sym_ATautoreleasepool] = ACTIONS(1982), + [anon_sym_ATsynchronized] = ACTIONS(1982), + [anon_sym_ATtry] = ACTIONS(1982), + [anon_sym_ATthrow] = ACTIONS(1982), + [anon_sym_ATselector] = ACTIONS(1982), + [anon_sym_ATencode] = ACTIONS(1982), + [anon_sym_AT] = ACTIONS(1980), + [sym_YES] = ACTIONS(1980), + [sym_NO] = ACTIONS(1980), + [anon_sym___builtin_available] = ACTIONS(1980), + [anon_sym_ATavailable] = ACTIONS(1982), + [anon_sym_va_arg] = ACTIONS(1980), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [876] = { + [ts_builtin_sym_end] = ACTIONS(1802), + [sym_identifier] = ACTIONS(1800), + [aux_sym_preproc_include_token1] = ACTIONS(1802), + [aux_sym_preproc_def_token1] = ACTIONS(1802), + [aux_sym_preproc_if_token1] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1800), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_CARET] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_typedef] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1800), + [anon_sym___attribute] = ACTIONS(1800), + [anon_sym___attribute__] = ACTIONS(1800), + [anon_sym___declspec] = ACTIONS(1800), + [anon_sym___cdecl] = ACTIONS(1800), + [anon_sym___clrcall] = ACTIONS(1800), + [anon_sym___stdcall] = ACTIONS(1800), + [anon_sym___fastcall] = ACTIONS(1800), + [anon_sym___thiscall] = ACTIONS(1800), + [anon_sym___vectorcall] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1800), + [anon_sym_auto] = ACTIONS(1800), + [anon_sym_register] = ACTIONS(1800), + [anon_sym_inline] = ACTIONS(1800), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_volatile] = ACTIONS(1800), + [anon_sym_restrict] = ACTIONS(1800), + [anon_sym__Atomic] = ACTIONS(1800), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_out] = ACTIONS(1800), + [anon_sym_inout] = ACTIONS(1800), + [anon_sym_bycopy] = ACTIONS(1800), + [anon_sym_byref] = ACTIONS(1800), + [anon_sym_oneway] = ACTIONS(1800), + [anon_sym__Nullable] = ACTIONS(1800), + [anon_sym__Nonnull] = ACTIONS(1800), + [anon_sym__Nullable_result] = ACTIONS(1800), + [anon_sym__Null_unspecified] = ACTIONS(1800), + [anon_sym___autoreleasing] = ACTIONS(1800), + [anon_sym___nullable] = ACTIONS(1800), + [anon_sym___nonnull] = ACTIONS(1800), + [anon_sym___strong] = ACTIONS(1800), + [anon_sym___weak] = ACTIONS(1800), + [anon_sym___bridge] = ACTIONS(1800), + [anon_sym___bridge_transfer] = ACTIONS(1800), + [anon_sym___bridge_retained] = ACTIONS(1800), + [anon_sym___unsafe_unretained] = ACTIONS(1800), + [anon_sym___block] = ACTIONS(1800), + [anon_sym___kindof] = ACTIONS(1800), + [anon_sym___unused] = ACTIONS(1800), + [anon_sym__Complex] = ACTIONS(1800), + [anon_sym___complex] = ACTIONS(1800), + [anon_sym_IBOutlet] = ACTIONS(1800), + [anon_sym_IBInspectable] = ACTIONS(1800), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1800), + [anon_sym_signed] = ACTIONS(1800), + [anon_sym_unsigned] = ACTIONS(1800), + [anon_sym_long] = ACTIONS(1800), + [anon_sym_short] = ACTIONS(1800), + [sym_primitive_type] = ACTIONS(1800), + [anon_sym_enum] = ACTIONS(1800), + [anon_sym_struct] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_do] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_goto] = ACTIONS(1800), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1802), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(1802), + [anon_sym_L_SQUOTE] = ACTIONS(1802), + [anon_sym_u_SQUOTE] = ACTIONS(1802), + [anon_sym_U_SQUOTE] = ACTIONS(1802), + [anon_sym_u8_SQUOTE] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_L_DQUOTE] = ACTIONS(1802), + [anon_sym_u_DQUOTE] = ACTIONS(1802), + [anon_sym_U_DQUOTE] = ACTIONS(1802), + [anon_sym_u8_DQUOTE] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym_true] = ACTIONS(1800), + [sym_false] = ACTIONS(1800), + [sym_null] = ACTIONS(1800), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1802), + [anon_sym_ATimport] = ACTIONS(1802), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1800), + [anon_sym_ATcompatibility_alias] = ACTIONS(1802), + [anon_sym_ATprotocol] = ACTIONS(1802), + [anon_sym_ATclass] = ACTIONS(1802), + [anon_sym_ATinterface] = ACTIONS(1802), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1800), + [sym_method_attribute_specifier] = ACTIONS(1800), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1800), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE] = ACTIONS(1800), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_API_AVAILABLE] = ACTIONS(1800), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_API_DEPRECATED] = ACTIONS(1800), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1800), + [anon_sym___deprecated_msg] = ACTIONS(1800), + [anon_sym___deprecated_enum_msg] = ACTIONS(1800), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1800), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1800), + [anon_sym_ATimplementation] = ACTIONS(1802), + [anon_sym_NS_ENUM] = ACTIONS(1800), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1800), + [anon_sym_NS_OPTIONS] = ACTIONS(1800), + [anon_sym_typeof] = ACTIONS(1800), + [anon_sym___typeof] = ACTIONS(1800), + [anon_sym___typeof__] = ACTIONS(1800), + [sym_self] = ACTIONS(1800), + [sym_super] = ACTIONS(1800), + [sym_nil] = ACTIONS(1800), + [sym_id] = ACTIONS(1800), + [sym_instancetype] = ACTIONS(1800), + [sym_Class] = ACTIONS(1800), + [sym_SEL] = ACTIONS(1800), + [sym_IMP] = ACTIONS(1800), + [sym_BOOL] = ACTIONS(1800), + [sym_auto] = ACTIONS(1800), + [anon_sym_ATautoreleasepool] = ACTIONS(1802), + [anon_sym_ATsynchronized] = ACTIONS(1802), + [anon_sym_ATtry] = ACTIONS(1802), + [anon_sym_ATthrow] = ACTIONS(1802), + [anon_sym_ATselector] = ACTIONS(1802), + [anon_sym_ATencode] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1800), + [sym_YES] = ACTIONS(1800), + [sym_NO] = ACTIONS(1800), + [anon_sym___builtin_available] = ACTIONS(1800), + [anon_sym_ATavailable] = ACTIONS(1802), + [anon_sym_va_arg] = ACTIONS(1800), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [877] = { + [ts_builtin_sym_end] = ACTIONS(1986), + [sym_identifier] = ACTIONS(1984), + [aux_sym_preproc_include_token1] = ACTIONS(1986), + [aux_sym_preproc_def_token1] = ACTIONS(1986), + [aux_sym_preproc_if_token1] = ACTIONS(1984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1984), + [anon_sym_LPAREN2] = ACTIONS(1986), + [anon_sym_BANG] = ACTIONS(1986), + [anon_sym_TILDE] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(1986), + [anon_sym_CARET] = ACTIONS(1986), + [anon_sym_AMP] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_typedef] = ACTIONS(1984), + [anon_sym_extern] = ACTIONS(1984), + [anon_sym___attribute] = ACTIONS(1984), + [anon_sym___attribute__] = ACTIONS(1984), + [anon_sym___declspec] = ACTIONS(1984), + [anon_sym___cdecl] = ACTIONS(1984), + [anon_sym___clrcall] = ACTIONS(1984), + [anon_sym___stdcall] = ACTIONS(1984), + [anon_sym___fastcall] = ACTIONS(1984), + [anon_sym___thiscall] = ACTIONS(1984), + [anon_sym___vectorcall] = ACTIONS(1984), + [anon_sym_LBRACE] = ACTIONS(1986), + [anon_sym_RBRACE] = ACTIONS(1986), + [anon_sym_LBRACK] = ACTIONS(1986), + [anon_sym_static] = ACTIONS(1984), + [anon_sym_auto] = ACTIONS(1984), + [anon_sym_register] = ACTIONS(1984), + [anon_sym_inline] = ACTIONS(1984), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1984), + [anon_sym_const] = ACTIONS(1984), + [anon_sym_volatile] = ACTIONS(1984), + [anon_sym_restrict] = ACTIONS(1984), + [anon_sym__Atomic] = ACTIONS(1984), + [anon_sym_in] = ACTIONS(1984), + [anon_sym_out] = ACTIONS(1984), + [anon_sym_inout] = ACTIONS(1984), + [anon_sym_bycopy] = ACTIONS(1984), + [anon_sym_byref] = ACTIONS(1984), + [anon_sym_oneway] = ACTIONS(1984), + [anon_sym__Nullable] = ACTIONS(1984), + [anon_sym__Nonnull] = ACTIONS(1984), + [anon_sym__Nullable_result] = ACTIONS(1984), + [anon_sym__Null_unspecified] = ACTIONS(1984), + [anon_sym___autoreleasing] = ACTIONS(1984), + [anon_sym___nullable] = ACTIONS(1984), + [anon_sym___nonnull] = ACTIONS(1984), + [anon_sym___strong] = ACTIONS(1984), + [anon_sym___weak] = ACTIONS(1984), + [anon_sym___bridge] = ACTIONS(1984), + [anon_sym___bridge_transfer] = ACTIONS(1984), + [anon_sym___bridge_retained] = ACTIONS(1984), + [anon_sym___unsafe_unretained] = ACTIONS(1984), + [anon_sym___block] = ACTIONS(1984), + [anon_sym___kindof] = ACTIONS(1984), + [anon_sym___unused] = ACTIONS(1984), + [anon_sym__Complex] = ACTIONS(1984), + [anon_sym___complex] = ACTIONS(1984), + [anon_sym_IBOutlet] = ACTIONS(1984), + [anon_sym_IBInspectable] = ACTIONS(1984), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1984), + [anon_sym_signed] = ACTIONS(1984), + [anon_sym_unsigned] = ACTIONS(1984), + [anon_sym_long] = ACTIONS(1984), + [anon_sym_short] = ACTIONS(1984), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1984), + [anon_sym_struct] = ACTIONS(1984), + [anon_sym_union] = ACTIONS(1984), + [anon_sym_if] = ACTIONS(1984), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1984), + [anon_sym_default] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1984), + [anon_sym_do] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1984), + [anon_sym_return] = ACTIONS(1984), + [anon_sym_break] = ACTIONS(1984), + [anon_sym_continue] = ACTIONS(1984), + [anon_sym_goto] = ACTIONS(1984), + [anon_sym_DASH_DASH] = ACTIONS(1986), + [anon_sym_PLUS_PLUS] = ACTIONS(1986), + [anon_sym_sizeof] = ACTIONS(1984), + [sym_number_literal] = ACTIONS(1986), + [anon_sym_L_SQUOTE] = ACTIONS(1986), + [anon_sym_u_SQUOTE] = ACTIONS(1986), + [anon_sym_U_SQUOTE] = ACTIONS(1986), + [anon_sym_u8_SQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1986), + [anon_sym_L_DQUOTE] = ACTIONS(1986), + [anon_sym_u_DQUOTE] = ACTIONS(1986), + [anon_sym_U_DQUOTE] = ACTIONS(1986), + [anon_sym_u8_DQUOTE] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1986), + [anon_sym_ATimport] = ACTIONS(1986), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1984), + [anon_sym_ATcompatibility_alias] = ACTIONS(1986), + [anon_sym_ATprotocol] = ACTIONS(1986), + [anon_sym_ATclass] = ACTIONS(1986), + [anon_sym_ATinterface] = ACTIONS(1986), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1984), + [sym_method_attribute_specifier] = ACTIONS(1984), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1984), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1984), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1984), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1984), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1984), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1984), + [anon_sym_NS_AVAILABLE] = ACTIONS(1984), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1984), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1984), + [anon_sym_API_AVAILABLE] = ACTIONS(1984), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1984), + [anon_sym_API_DEPRECATED] = ACTIONS(1984), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1984), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1984), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1984), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1984), + [anon_sym___deprecated_msg] = ACTIONS(1984), + [anon_sym___deprecated_enum_msg] = ACTIONS(1984), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1984), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1984), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1984), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1984), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1984), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1984), + [anon_sym_ATimplementation] = ACTIONS(1986), + [anon_sym_NS_ENUM] = ACTIONS(1984), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1984), + [anon_sym_NS_OPTIONS] = ACTIONS(1984), + [anon_sym_typeof] = ACTIONS(1984), + [anon_sym___typeof] = ACTIONS(1984), + [anon_sym___typeof__] = ACTIONS(1984), + [sym_self] = ACTIONS(1984), + [sym_super] = ACTIONS(1984), + [sym_nil] = ACTIONS(1984), + [sym_id] = ACTIONS(1984), + [sym_instancetype] = ACTIONS(1984), + [sym_Class] = ACTIONS(1984), + [sym_SEL] = ACTIONS(1984), + [sym_IMP] = ACTIONS(1984), + [sym_BOOL] = ACTIONS(1984), + [sym_auto] = ACTIONS(1984), + [anon_sym_ATautoreleasepool] = ACTIONS(1986), + [anon_sym_ATsynchronized] = ACTIONS(1986), + [anon_sym_ATtry] = ACTIONS(1986), + [anon_sym_ATthrow] = ACTIONS(1986), + [anon_sym_ATselector] = ACTIONS(1986), + [anon_sym_ATencode] = ACTIONS(1986), + [anon_sym_AT] = ACTIONS(1984), + [sym_YES] = ACTIONS(1984), + [sym_NO] = ACTIONS(1984), + [anon_sym___builtin_available] = ACTIONS(1984), + [anon_sym_ATavailable] = ACTIONS(1986), + [anon_sym_va_arg] = ACTIONS(1984), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [878] = { + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [879] = { + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [880] = { + [ts_builtin_sym_end] = ACTIONS(1802), + [sym_identifier] = ACTIONS(1800), + [aux_sym_preproc_include_token1] = ACTIONS(1802), + [aux_sym_preproc_def_token1] = ACTIONS(1802), + [aux_sym_preproc_if_token1] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1800), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_CARET] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_typedef] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1800), + [anon_sym___attribute] = ACTIONS(1800), + [anon_sym___attribute__] = ACTIONS(1800), + [anon_sym___declspec] = ACTIONS(1800), + [anon_sym___cdecl] = ACTIONS(1800), + [anon_sym___clrcall] = ACTIONS(1800), + [anon_sym___stdcall] = ACTIONS(1800), + [anon_sym___fastcall] = ACTIONS(1800), + [anon_sym___thiscall] = ACTIONS(1800), + [anon_sym___vectorcall] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1800), + [anon_sym_auto] = ACTIONS(1800), + [anon_sym_register] = ACTIONS(1800), + [anon_sym_inline] = ACTIONS(1800), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_volatile] = ACTIONS(1800), + [anon_sym_restrict] = ACTIONS(1800), + [anon_sym__Atomic] = ACTIONS(1800), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_out] = ACTIONS(1800), + [anon_sym_inout] = ACTIONS(1800), + [anon_sym_bycopy] = ACTIONS(1800), + [anon_sym_byref] = ACTIONS(1800), + [anon_sym_oneway] = ACTIONS(1800), + [anon_sym__Nullable] = ACTIONS(1800), + [anon_sym__Nonnull] = ACTIONS(1800), + [anon_sym__Nullable_result] = ACTIONS(1800), + [anon_sym__Null_unspecified] = ACTIONS(1800), + [anon_sym___autoreleasing] = ACTIONS(1800), + [anon_sym___nullable] = ACTIONS(1800), + [anon_sym___nonnull] = ACTIONS(1800), + [anon_sym___strong] = ACTIONS(1800), + [anon_sym___weak] = ACTIONS(1800), + [anon_sym___bridge] = ACTIONS(1800), + [anon_sym___bridge_transfer] = ACTIONS(1800), + [anon_sym___bridge_retained] = ACTIONS(1800), + [anon_sym___unsafe_unretained] = ACTIONS(1800), + [anon_sym___block] = ACTIONS(1800), + [anon_sym___kindof] = ACTIONS(1800), + [anon_sym___unused] = ACTIONS(1800), + [anon_sym__Complex] = ACTIONS(1800), + [anon_sym___complex] = ACTIONS(1800), + [anon_sym_IBOutlet] = ACTIONS(1800), + [anon_sym_IBInspectable] = ACTIONS(1800), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1800), + [anon_sym_signed] = ACTIONS(1800), + [anon_sym_unsigned] = ACTIONS(1800), + [anon_sym_long] = ACTIONS(1800), + [anon_sym_short] = ACTIONS(1800), + [sym_primitive_type] = ACTIONS(1800), + [anon_sym_enum] = ACTIONS(1800), + [anon_sym_struct] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_do] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_goto] = ACTIONS(1800), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1802), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(1802), + [anon_sym_L_SQUOTE] = ACTIONS(1802), + [anon_sym_u_SQUOTE] = ACTIONS(1802), + [anon_sym_U_SQUOTE] = ACTIONS(1802), + [anon_sym_u8_SQUOTE] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_L_DQUOTE] = ACTIONS(1802), + [anon_sym_u_DQUOTE] = ACTIONS(1802), + [anon_sym_U_DQUOTE] = ACTIONS(1802), + [anon_sym_u8_DQUOTE] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym_true] = ACTIONS(1800), + [sym_false] = ACTIONS(1800), + [sym_null] = ACTIONS(1800), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1802), + [anon_sym_ATimport] = ACTIONS(1802), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1800), + [anon_sym_ATcompatibility_alias] = ACTIONS(1802), + [anon_sym_ATprotocol] = ACTIONS(1802), + [anon_sym_ATclass] = ACTIONS(1802), + [anon_sym_ATinterface] = ACTIONS(1802), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1800), + [sym_method_attribute_specifier] = ACTIONS(1800), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1800), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE] = ACTIONS(1800), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_API_AVAILABLE] = ACTIONS(1800), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_API_DEPRECATED] = ACTIONS(1800), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1800), + [anon_sym___deprecated_msg] = ACTIONS(1800), + [anon_sym___deprecated_enum_msg] = ACTIONS(1800), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1800), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1800), + [anon_sym_ATimplementation] = ACTIONS(1802), + [anon_sym_NS_ENUM] = ACTIONS(1800), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1800), + [anon_sym_NS_OPTIONS] = ACTIONS(1800), + [anon_sym_typeof] = ACTIONS(1800), + [anon_sym___typeof] = ACTIONS(1800), + [anon_sym___typeof__] = ACTIONS(1800), + [sym_self] = ACTIONS(1800), + [sym_super] = ACTIONS(1800), + [sym_nil] = ACTIONS(1800), + [sym_id] = ACTIONS(1800), + [sym_instancetype] = ACTIONS(1800), + [sym_Class] = ACTIONS(1800), + [sym_SEL] = ACTIONS(1800), + [sym_IMP] = ACTIONS(1800), + [sym_BOOL] = ACTIONS(1800), + [sym_auto] = ACTIONS(1800), + [anon_sym_ATautoreleasepool] = ACTIONS(1802), + [anon_sym_ATsynchronized] = ACTIONS(1802), + [anon_sym_ATtry] = ACTIONS(1802), + [anon_sym_ATthrow] = ACTIONS(1802), + [anon_sym_ATselector] = ACTIONS(1802), + [anon_sym_ATencode] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1800), + [sym_YES] = ACTIONS(1800), + [sym_NO] = ACTIONS(1800), + [anon_sym___builtin_available] = ACTIONS(1800), + [anon_sym_ATavailable] = ACTIONS(1802), + [anon_sym_va_arg] = ACTIONS(1800), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [881] = { + [ts_builtin_sym_end] = ACTIONS(1730), + [sym_identifier] = ACTIONS(1728), + [aux_sym_preproc_include_token1] = ACTIONS(1730), + [aux_sym_preproc_def_token1] = ACTIONS(1730), + [aux_sym_preproc_if_token1] = ACTIONS(1728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1728), + [anon_sym_LPAREN2] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_STAR] = ACTIONS(1730), + [anon_sym_CARET] = ACTIONS(1730), + [anon_sym_AMP] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_typedef] = ACTIONS(1728), + [anon_sym_extern] = ACTIONS(1728), + [anon_sym___attribute] = ACTIONS(1728), + [anon_sym___attribute__] = ACTIONS(1728), + [anon_sym___declspec] = ACTIONS(1728), + [anon_sym___cdecl] = ACTIONS(1728), + [anon_sym___clrcall] = ACTIONS(1728), + [anon_sym___stdcall] = ACTIONS(1728), + [anon_sym___fastcall] = ACTIONS(1728), + [anon_sym___thiscall] = ACTIONS(1728), + [anon_sym___vectorcall] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(1728), + [anon_sym_auto] = ACTIONS(1728), + [anon_sym_register] = ACTIONS(1728), + [anon_sym_inline] = ACTIONS(1728), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1728), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_volatile] = ACTIONS(1728), + [anon_sym_restrict] = ACTIONS(1728), + [anon_sym__Atomic] = ACTIONS(1728), + [anon_sym_in] = ACTIONS(1728), + [anon_sym_out] = ACTIONS(1728), + [anon_sym_inout] = ACTIONS(1728), + [anon_sym_bycopy] = ACTIONS(1728), + [anon_sym_byref] = ACTIONS(1728), + [anon_sym_oneway] = ACTIONS(1728), + [anon_sym__Nullable] = ACTIONS(1728), + [anon_sym__Nonnull] = ACTIONS(1728), + [anon_sym__Nullable_result] = ACTIONS(1728), + [anon_sym__Null_unspecified] = ACTIONS(1728), + [anon_sym___autoreleasing] = ACTIONS(1728), + [anon_sym___nullable] = ACTIONS(1728), + [anon_sym___nonnull] = ACTIONS(1728), + [anon_sym___strong] = ACTIONS(1728), + [anon_sym___weak] = ACTIONS(1728), + [anon_sym___bridge] = ACTIONS(1728), + [anon_sym___bridge_transfer] = ACTIONS(1728), + [anon_sym___bridge_retained] = ACTIONS(1728), + [anon_sym___unsafe_unretained] = ACTIONS(1728), + [anon_sym___block] = ACTIONS(1728), + [anon_sym___kindof] = ACTIONS(1728), + [anon_sym___unused] = ACTIONS(1728), + [anon_sym__Complex] = ACTIONS(1728), + [anon_sym___complex] = ACTIONS(1728), + [anon_sym_IBOutlet] = ACTIONS(1728), + [anon_sym_IBInspectable] = ACTIONS(1728), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1728), + [anon_sym_signed] = ACTIONS(1728), + [anon_sym_unsigned] = ACTIONS(1728), + [anon_sym_long] = ACTIONS(1728), + [anon_sym_short] = ACTIONS(1728), + [sym_primitive_type] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1728), + [anon_sym_struct] = ACTIONS(1728), + [anon_sym_union] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_case] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1728), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_do] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_continue] = ACTIONS(1728), + [anon_sym_goto] = ACTIONS(1728), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_sizeof] = ACTIONS(1728), + [sym_number_literal] = ACTIONS(1730), + [anon_sym_L_SQUOTE] = ACTIONS(1730), + [anon_sym_u_SQUOTE] = ACTIONS(1730), + [anon_sym_U_SQUOTE] = ACTIONS(1730), + [anon_sym_u8_SQUOTE] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [anon_sym_L_DQUOTE] = ACTIONS(1730), + [anon_sym_u_DQUOTE] = ACTIONS(1730), + [anon_sym_U_DQUOTE] = ACTIONS(1730), + [anon_sym_u8_DQUOTE] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1730), + [sym_true] = ACTIONS(1728), + [sym_false] = ACTIONS(1728), + [sym_null] = ACTIONS(1728), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1730), + [anon_sym_ATimport] = ACTIONS(1730), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1728), + [anon_sym_ATcompatibility_alias] = ACTIONS(1730), + [anon_sym_ATprotocol] = ACTIONS(1730), + [anon_sym_ATclass] = ACTIONS(1730), + [anon_sym_ATinterface] = ACTIONS(1730), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1728), + [sym_method_attribute_specifier] = ACTIONS(1728), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1728), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1728), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1728), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1728), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1728), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1728), + [anon_sym_NS_AVAILABLE] = ACTIONS(1728), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1728), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1728), + [anon_sym_API_AVAILABLE] = ACTIONS(1728), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1728), + [anon_sym_API_DEPRECATED] = ACTIONS(1728), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1728), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1728), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1728), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1728), + [anon_sym___deprecated_msg] = ACTIONS(1728), + [anon_sym___deprecated_enum_msg] = ACTIONS(1728), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1728), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1728), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1728), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1728), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1728), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1728), + [anon_sym_ATimplementation] = ACTIONS(1730), + [anon_sym_NS_ENUM] = ACTIONS(1728), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1728), + [anon_sym_NS_OPTIONS] = ACTIONS(1728), + [anon_sym_typeof] = ACTIONS(1728), + [anon_sym___typeof] = ACTIONS(1728), + [anon_sym___typeof__] = ACTIONS(1728), + [sym_self] = ACTIONS(1728), + [sym_super] = ACTIONS(1728), + [sym_nil] = ACTIONS(1728), + [sym_id] = ACTIONS(1728), + [sym_instancetype] = ACTIONS(1728), + [sym_Class] = ACTIONS(1728), + [sym_SEL] = ACTIONS(1728), + [sym_IMP] = ACTIONS(1728), + [sym_BOOL] = ACTIONS(1728), + [sym_auto] = ACTIONS(1728), + [anon_sym_ATautoreleasepool] = ACTIONS(1730), + [anon_sym_ATsynchronized] = ACTIONS(1730), + [anon_sym_ATtry] = ACTIONS(1730), + [anon_sym_ATthrow] = ACTIONS(1730), + [anon_sym_ATselector] = ACTIONS(1730), + [anon_sym_ATencode] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(1728), + [sym_YES] = ACTIONS(1728), + [sym_NO] = ACTIONS(1728), + [anon_sym___builtin_available] = ACTIONS(1728), + [anon_sym_ATavailable] = ACTIONS(1730), + [anon_sym_va_arg] = ACTIONS(1728), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [882] = { + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [883] = { + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [884] = { + [ts_builtin_sym_end] = ACTIONS(1802), + [sym_identifier] = ACTIONS(1800), + [aux_sym_preproc_include_token1] = ACTIONS(1802), + [aux_sym_preproc_def_token1] = ACTIONS(1802), + [aux_sym_preproc_if_token1] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1800), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_CARET] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_typedef] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1800), + [anon_sym___attribute] = ACTIONS(1800), + [anon_sym___attribute__] = ACTIONS(1800), + [anon_sym___declspec] = ACTIONS(1800), + [anon_sym___cdecl] = ACTIONS(1800), + [anon_sym___clrcall] = ACTIONS(1800), + [anon_sym___stdcall] = ACTIONS(1800), + [anon_sym___fastcall] = ACTIONS(1800), + [anon_sym___thiscall] = ACTIONS(1800), + [anon_sym___vectorcall] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1800), + [anon_sym_auto] = ACTIONS(1800), + [anon_sym_register] = ACTIONS(1800), + [anon_sym_inline] = ACTIONS(1800), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_volatile] = ACTIONS(1800), + [anon_sym_restrict] = ACTIONS(1800), + [anon_sym__Atomic] = ACTIONS(1800), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_out] = ACTIONS(1800), + [anon_sym_inout] = ACTIONS(1800), + [anon_sym_bycopy] = ACTIONS(1800), + [anon_sym_byref] = ACTIONS(1800), + [anon_sym_oneway] = ACTIONS(1800), + [anon_sym__Nullable] = ACTIONS(1800), + [anon_sym__Nonnull] = ACTIONS(1800), + [anon_sym__Nullable_result] = ACTIONS(1800), + [anon_sym__Null_unspecified] = ACTIONS(1800), + [anon_sym___autoreleasing] = ACTIONS(1800), + [anon_sym___nullable] = ACTIONS(1800), + [anon_sym___nonnull] = ACTIONS(1800), + [anon_sym___strong] = ACTIONS(1800), + [anon_sym___weak] = ACTIONS(1800), + [anon_sym___bridge] = ACTIONS(1800), + [anon_sym___bridge_transfer] = ACTIONS(1800), + [anon_sym___bridge_retained] = ACTIONS(1800), + [anon_sym___unsafe_unretained] = ACTIONS(1800), + [anon_sym___block] = ACTIONS(1800), + [anon_sym___kindof] = ACTIONS(1800), + [anon_sym___unused] = ACTIONS(1800), + [anon_sym__Complex] = ACTIONS(1800), + [anon_sym___complex] = ACTIONS(1800), + [anon_sym_IBOutlet] = ACTIONS(1800), + [anon_sym_IBInspectable] = ACTIONS(1800), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1800), + [anon_sym_signed] = ACTIONS(1800), + [anon_sym_unsigned] = ACTIONS(1800), + [anon_sym_long] = ACTIONS(1800), + [anon_sym_short] = ACTIONS(1800), + [sym_primitive_type] = ACTIONS(1800), + [anon_sym_enum] = ACTIONS(1800), + [anon_sym_struct] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_do] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_goto] = ACTIONS(1800), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1802), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(1802), + [anon_sym_L_SQUOTE] = ACTIONS(1802), + [anon_sym_u_SQUOTE] = ACTIONS(1802), + [anon_sym_U_SQUOTE] = ACTIONS(1802), + [anon_sym_u8_SQUOTE] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_L_DQUOTE] = ACTIONS(1802), + [anon_sym_u_DQUOTE] = ACTIONS(1802), + [anon_sym_U_DQUOTE] = ACTIONS(1802), + [anon_sym_u8_DQUOTE] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym_true] = ACTIONS(1800), + [sym_false] = ACTIONS(1800), + [sym_null] = ACTIONS(1800), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1802), + [anon_sym_ATimport] = ACTIONS(1802), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1800), + [anon_sym_ATcompatibility_alias] = ACTIONS(1802), + [anon_sym_ATprotocol] = ACTIONS(1802), + [anon_sym_ATclass] = ACTIONS(1802), + [anon_sym_ATinterface] = ACTIONS(1802), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1800), + [sym_method_attribute_specifier] = ACTIONS(1800), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1800), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE] = ACTIONS(1800), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_API_AVAILABLE] = ACTIONS(1800), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_API_DEPRECATED] = ACTIONS(1800), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1800), + [anon_sym___deprecated_msg] = ACTIONS(1800), + [anon_sym___deprecated_enum_msg] = ACTIONS(1800), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1800), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1800), + [anon_sym_ATimplementation] = ACTIONS(1802), + [anon_sym_NS_ENUM] = ACTIONS(1800), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1800), + [anon_sym_NS_OPTIONS] = ACTIONS(1800), + [anon_sym_typeof] = ACTIONS(1800), + [anon_sym___typeof] = ACTIONS(1800), + [anon_sym___typeof__] = ACTIONS(1800), + [sym_self] = ACTIONS(1800), + [sym_super] = ACTIONS(1800), + [sym_nil] = ACTIONS(1800), + [sym_id] = ACTIONS(1800), + [sym_instancetype] = ACTIONS(1800), + [sym_Class] = ACTIONS(1800), + [sym_SEL] = ACTIONS(1800), + [sym_IMP] = ACTIONS(1800), + [sym_BOOL] = ACTIONS(1800), + [sym_auto] = ACTIONS(1800), + [anon_sym_ATautoreleasepool] = ACTIONS(1802), + [anon_sym_ATsynchronized] = ACTIONS(1802), + [anon_sym_ATtry] = ACTIONS(1802), + [anon_sym_ATthrow] = ACTIONS(1802), + [anon_sym_ATselector] = ACTIONS(1802), + [anon_sym_ATencode] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1800), + [sym_YES] = ACTIONS(1800), + [sym_NO] = ACTIONS(1800), + [anon_sym___builtin_available] = ACTIONS(1800), + [anon_sym_ATavailable] = ACTIONS(1802), + [anon_sym_va_arg] = ACTIONS(1800), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [885] = { + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [886] = { + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [887] = { + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [888] = { + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [889] = { + [ts_builtin_sym_end] = ACTIONS(1990), + [sym_identifier] = ACTIONS(1988), + [aux_sym_preproc_include_token1] = ACTIONS(1990), + [aux_sym_preproc_def_token1] = ACTIONS(1990), + [aux_sym_preproc_if_token1] = ACTIONS(1988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1988), + [anon_sym_LPAREN2] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_TILDE] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_CARET] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_typedef] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1988), + [anon_sym___attribute] = ACTIONS(1988), + [anon_sym___attribute__] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(1988), + [anon_sym___cdecl] = ACTIONS(1988), + [anon_sym___clrcall] = ACTIONS(1988), + [anon_sym___stdcall] = ACTIONS(1988), + [anon_sym___fastcall] = ACTIONS(1988), + [anon_sym___thiscall] = ACTIONS(1988), + [anon_sym___vectorcall] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_RBRACE] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1988), + [anon_sym_auto] = ACTIONS(1988), + [anon_sym_register] = ACTIONS(1988), + [anon_sym_inline] = ACTIONS(1988), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1988), + [anon_sym_const] = ACTIONS(1988), + [anon_sym_volatile] = ACTIONS(1988), + [anon_sym_restrict] = ACTIONS(1988), + [anon_sym__Atomic] = ACTIONS(1988), + [anon_sym_in] = ACTIONS(1988), + [anon_sym_out] = ACTIONS(1988), + [anon_sym_inout] = ACTIONS(1988), + [anon_sym_bycopy] = ACTIONS(1988), + [anon_sym_byref] = ACTIONS(1988), + [anon_sym_oneway] = ACTIONS(1988), + [anon_sym__Nullable] = ACTIONS(1988), + [anon_sym__Nonnull] = ACTIONS(1988), + [anon_sym__Nullable_result] = ACTIONS(1988), + [anon_sym__Null_unspecified] = ACTIONS(1988), + [anon_sym___autoreleasing] = ACTIONS(1988), + [anon_sym___nullable] = ACTIONS(1988), + [anon_sym___nonnull] = ACTIONS(1988), + [anon_sym___strong] = ACTIONS(1988), + [anon_sym___weak] = ACTIONS(1988), + [anon_sym___bridge] = ACTIONS(1988), + [anon_sym___bridge_transfer] = ACTIONS(1988), + [anon_sym___bridge_retained] = ACTIONS(1988), + [anon_sym___unsafe_unretained] = ACTIONS(1988), + [anon_sym___block] = ACTIONS(1988), + [anon_sym___kindof] = ACTIONS(1988), + [anon_sym___unused] = ACTIONS(1988), + [anon_sym__Complex] = ACTIONS(1988), + [anon_sym___complex] = ACTIONS(1988), + [anon_sym_IBOutlet] = ACTIONS(1988), + [anon_sym_IBInspectable] = ACTIONS(1988), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1988), + [anon_sym_signed] = ACTIONS(1988), + [anon_sym_unsigned] = ACTIONS(1988), + [anon_sym_long] = ACTIONS(1988), + [anon_sym_short] = ACTIONS(1988), + [sym_primitive_type] = ACTIONS(1988), + [anon_sym_enum] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1988), + [anon_sym_union] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_do] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_return] = ACTIONS(1988), + [anon_sym_break] = ACTIONS(1988), + [anon_sym_continue] = ACTIONS(1988), + [anon_sym_goto] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1990), + [anon_sym_PLUS_PLUS] = ACTIONS(1990), + [anon_sym_sizeof] = ACTIONS(1988), + [sym_number_literal] = ACTIONS(1990), + [anon_sym_L_SQUOTE] = ACTIONS(1990), + [anon_sym_u_SQUOTE] = ACTIONS(1990), + [anon_sym_U_SQUOTE] = ACTIONS(1990), + [anon_sym_u8_SQUOTE] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_L_DQUOTE] = ACTIONS(1990), + [anon_sym_u_DQUOTE] = ACTIONS(1990), + [anon_sym_U_DQUOTE] = ACTIONS(1990), + [anon_sym_u8_DQUOTE] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1990), + [sym_true] = ACTIONS(1988), + [sym_false] = ACTIONS(1988), + [sym_null] = ACTIONS(1988), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1990), + [anon_sym_ATimport] = ACTIONS(1990), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1988), + [anon_sym_ATcompatibility_alias] = ACTIONS(1990), + [anon_sym_ATprotocol] = ACTIONS(1990), + [anon_sym_ATclass] = ACTIONS(1990), + [anon_sym_ATinterface] = ACTIONS(1990), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1988), + [sym_method_attribute_specifier] = ACTIONS(1988), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1988), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1988), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1988), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1988), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1988), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1988), + [anon_sym_NS_AVAILABLE] = ACTIONS(1988), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1988), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1988), + [anon_sym_API_AVAILABLE] = ACTIONS(1988), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1988), + [anon_sym_API_DEPRECATED] = ACTIONS(1988), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1988), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1988), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1988), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1988), + [anon_sym___deprecated_msg] = ACTIONS(1988), + [anon_sym___deprecated_enum_msg] = ACTIONS(1988), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1988), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1988), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1988), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1988), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1988), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1988), + [anon_sym_ATimplementation] = ACTIONS(1990), + [anon_sym_NS_ENUM] = ACTIONS(1988), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1988), + [anon_sym_NS_OPTIONS] = ACTIONS(1988), + [anon_sym_typeof] = ACTIONS(1988), + [anon_sym___typeof] = ACTIONS(1988), + [anon_sym___typeof__] = ACTIONS(1988), + [sym_self] = ACTIONS(1988), + [sym_super] = ACTIONS(1988), + [sym_nil] = ACTIONS(1988), + [sym_id] = ACTIONS(1988), + [sym_instancetype] = ACTIONS(1988), + [sym_Class] = ACTIONS(1988), + [sym_SEL] = ACTIONS(1988), + [sym_IMP] = ACTIONS(1988), + [sym_BOOL] = ACTIONS(1988), + [sym_auto] = ACTIONS(1988), + [anon_sym_ATautoreleasepool] = ACTIONS(1990), + [anon_sym_ATsynchronized] = ACTIONS(1990), + [anon_sym_ATtry] = ACTIONS(1990), + [anon_sym_ATthrow] = ACTIONS(1990), + [anon_sym_ATselector] = ACTIONS(1990), + [anon_sym_ATencode] = ACTIONS(1990), + [anon_sym_AT] = ACTIONS(1988), + [sym_YES] = ACTIONS(1988), + [sym_NO] = ACTIONS(1988), + [anon_sym___builtin_available] = ACTIONS(1988), + [anon_sym_ATavailable] = ACTIONS(1990), + [anon_sym_va_arg] = ACTIONS(1988), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [890] = { + [ts_builtin_sym_end] = ACTIONS(1966), + [sym_identifier] = ACTIONS(1964), + [aux_sym_preproc_include_token1] = ACTIONS(1966), + [aux_sym_preproc_def_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token1] = ACTIONS(1964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1964), + [anon_sym_LPAREN2] = ACTIONS(1966), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_TILDE] = ACTIONS(1966), + [anon_sym_DASH] = ACTIONS(1964), + [anon_sym_PLUS] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_CARET] = ACTIONS(1966), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1964), + [anon_sym_extern] = ACTIONS(1964), + [anon_sym___attribute] = ACTIONS(1964), + [anon_sym___attribute__] = ACTIONS(1964), + [anon_sym___declspec] = ACTIONS(1964), + [anon_sym___cdecl] = ACTIONS(1964), + [anon_sym___clrcall] = ACTIONS(1964), + [anon_sym___stdcall] = ACTIONS(1964), + [anon_sym___fastcall] = ACTIONS(1964), + [anon_sym___thiscall] = ACTIONS(1964), + [anon_sym___vectorcall] = ACTIONS(1964), + [anon_sym_LBRACE] = ACTIONS(1966), + [anon_sym_RBRACE] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1964), + [anon_sym_auto] = ACTIONS(1964), + [anon_sym_register] = ACTIONS(1964), + [anon_sym_inline] = ACTIONS(1964), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1964), + [anon_sym_const] = ACTIONS(1964), + [anon_sym_volatile] = ACTIONS(1964), + [anon_sym_restrict] = ACTIONS(1964), + [anon_sym__Atomic] = ACTIONS(1964), + [anon_sym_in] = ACTIONS(1964), + [anon_sym_out] = ACTIONS(1964), + [anon_sym_inout] = ACTIONS(1964), + [anon_sym_bycopy] = ACTIONS(1964), + [anon_sym_byref] = ACTIONS(1964), + [anon_sym_oneway] = ACTIONS(1964), + [anon_sym__Nullable] = ACTIONS(1964), + [anon_sym__Nonnull] = ACTIONS(1964), + [anon_sym__Nullable_result] = ACTIONS(1964), + [anon_sym__Null_unspecified] = ACTIONS(1964), + [anon_sym___autoreleasing] = ACTIONS(1964), + [anon_sym___nullable] = ACTIONS(1964), + [anon_sym___nonnull] = ACTIONS(1964), + [anon_sym___strong] = ACTIONS(1964), + [anon_sym___weak] = ACTIONS(1964), + [anon_sym___bridge] = ACTIONS(1964), + [anon_sym___bridge_transfer] = ACTIONS(1964), + [anon_sym___bridge_retained] = ACTIONS(1964), + [anon_sym___unsafe_unretained] = ACTIONS(1964), + [anon_sym___block] = ACTIONS(1964), + [anon_sym___kindof] = ACTIONS(1964), + [anon_sym___unused] = ACTIONS(1964), + [anon_sym__Complex] = ACTIONS(1964), + [anon_sym___complex] = ACTIONS(1964), + [anon_sym_IBOutlet] = ACTIONS(1964), + [anon_sym_IBInspectable] = ACTIONS(1964), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1964), + [anon_sym_signed] = ACTIONS(1964), + [anon_sym_unsigned] = ACTIONS(1964), + [anon_sym_long] = ACTIONS(1964), + [anon_sym_short] = ACTIONS(1964), + [sym_primitive_type] = ACTIONS(1964), + [anon_sym_enum] = ACTIONS(1964), + [anon_sym_struct] = ACTIONS(1964), + [anon_sym_union] = ACTIONS(1964), + [anon_sym_if] = ACTIONS(1964), + [anon_sym_switch] = ACTIONS(1964), + [anon_sym_case] = ACTIONS(1964), + [anon_sym_default] = ACTIONS(1964), + [anon_sym_while] = ACTIONS(1964), + [anon_sym_do] = ACTIONS(1964), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1964), + [anon_sym_break] = ACTIONS(1964), + [anon_sym_continue] = ACTIONS(1964), + [anon_sym_goto] = ACTIONS(1964), + [anon_sym_DASH_DASH] = ACTIONS(1966), + [anon_sym_PLUS_PLUS] = ACTIONS(1966), + [anon_sym_sizeof] = ACTIONS(1964), + [sym_number_literal] = ACTIONS(1966), + [anon_sym_L_SQUOTE] = ACTIONS(1966), + [anon_sym_u_SQUOTE] = ACTIONS(1966), + [anon_sym_U_SQUOTE] = ACTIONS(1966), + [anon_sym_u8_SQUOTE] = ACTIONS(1966), + [anon_sym_SQUOTE] = ACTIONS(1966), + [anon_sym_L_DQUOTE] = ACTIONS(1966), + [anon_sym_u_DQUOTE] = ACTIONS(1966), + [anon_sym_U_DQUOTE] = ACTIONS(1966), + [anon_sym_u8_DQUOTE] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(1966), + [sym_true] = ACTIONS(1964), + [sym_false] = ACTIONS(1964), + [sym_null] = ACTIONS(1964), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1966), + [anon_sym_ATimport] = ACTIONS(1966), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1964), + [anon_sym_ATcompatibility_alias] = ACTIONS(1966), + [anon_sym_ATprotocol] = ACTIONS(1966), + [anon_sym_ATclass] = ACTIONS(1966), + [anon_sym_ATinterface] = ACTIONS(1966), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1964), + [sym_method_attribute_specifier] = ACTIONS(1964), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1964), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1964), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1964), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1964), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1964), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1964), + [anon_sym_NS_AVAILABLE] = ACTIONS(1964), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1964), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1964), + [anon_sym_API_AVAILABLE] = ACTIONS(1964), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1964), + [anon_sym_API_DEPRECATED] = ACTIONS(1964), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1964), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1964), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1964), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1964), + [anon_sym___deprecated_msg] = ACTIONS(1964), + [anon_sym___deprecated_enum_msg] = ACTIONS(1964), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1964), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1964), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1964), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1964), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1964), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1964), + [anon_sym_ATimplementation] = ACTIONS(1966), + [anon_sym_NS_ENUM] = ACTIONS(1964), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1964), + [anon_sym_NS_OPTIONS] = ACTIONS(1964), + [anon_sym_typeof] = ACTIONS(1964), + [anon_sym___typeof] = ACTIONS(1964), + [anon_sym___typeof__] = ACTIONS(1964), + [sym_self] = ACTIONS(1964), + [sym_super] = ACTIONS(1964), + [sym_nil] = ACTIONS(1964), + [sym_id] = ACTIONS(1964), + [sym_instancetype] = ACTIONS(1964), + [sym_Class] = ACTIONS(1964), + [sym_SEL] = ACTIONS(1964), + [sym_IMP] = ACTIONS(1964), + [sym_BOOL] = ACTIONS(1964), + [sym_auto] = ACTIONS(1964), + [anon_sym_ATautoreleasepool] = ACTIONS(1966), + [anon_sym_ATsynchronized] = ACTIONS(1966), + [anon_sym_ATtry] = ACTIONS(1966), + [anon_sym_ATthrow] = ACTIONS(1966), + [anon_sym_ATselector] = ACTIONS(1966), + [anon_sym_ATencode] = ACTIONS(1966), + [anon_sym_AT] = ACTIONS(1964), + [sym_YES] = ACTIONS(1964), + [sym_NO] = ACTIONS(1964), + [anon_sym___builtin_available] = ACTIONS(1964), + [anon_sym_ATavailable] = ACTIONS(1966), + [anon_sym_va_arg] = ACTIONS(1964), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [891] = { + [ts_builtin_sym_end] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1994), + [aux_sym_preproc_def_token1] = ACTIONS(1994), + [aux_sym_preproc_if_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_CARET] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_typedef] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym___attribute] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1992), + [anon_sym___declspec] = ACTIONS(1992), + [anon_sym___cdecl] = ACTIONS(1992), + [anon_sym___clrcall] = ACTIONS(1992), + [anon_sym___stdcall] = ACTIONS(1992), + [anon_sym___fastcall] = ACTIONS(1992), + [anon_sym___thiscall] = ACTIONS(1992), + [anon_sym___vectorcall] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_auto] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_inline] = ACTIONS(1992), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1992), + [anon_sym_restrict] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1992), + [anon_sym_in] = ACTIONS(1992), + [anon_sym_out] = ACTIONS(1992), + [anon_sym_inout] = ACTIONS(1992), + [anon_sym_bycopy] = ACTIONS(1992), + [anon_sym_byref] = ACTIONS(1992), + [anon_sym_oneway] = ACTIONS(1992), + [anon_sym__Nullable] = ACTIONS(1992), + [anon_sym__Nonnull] = ACTIONS(1992), + [anon_sym__Nullable_result] = ACTIONS(1992), + [anon_sym__Null_unspecified] = ACTIONS(1992), + [anon_sym___autoreleasing] = ACTIONS(1992), + [anon_sym___nullable] = ACTIONS(1992), + [anon_sym___nonnull] = ACTIONS(1992), + [anon_sym___strong] = ACTIONS(1992), + [anon_sym___weak] = ACTIONS(1992), + [anon_sym___bridge] = ACTIONS(1992), + [anon_sym___bridge_transfer] = ACTIONS(1992), + [anon_sym___bridge_retained] = ACTIONS(1992), + [anon_sym___unsafe_unretained] = ACTIONS(1992), + [anon_sym___block] = ACTIONS(1992), + [anon_sym___kindof] = ACTIONS(1992), + [anon_sym___unused] = ACTIONS(1992), + [anon_sym__Complex] = ACTIONS(1992), + [anon_sym___complex] = ACTIONS(1992), + [anon_sym_IBOutlet] = ACTIONS(1992), + [anon_sym_IBInspectable] = ACTIONS(1992), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1992), + [anon_sym_signed] = ACTIONS(1992), + [anon_sym_unsigned] = ACTIONS(1992), + [anon_sym_long] = ACTIONS(1992), + [anon_sym_short] = ACTIONS(1992), + [sym_primitive_type] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_switch] = ACTIONS(1992), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1992), + [sym_number_literal] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1994), + [anon_sym_u_SQUOTE] = ACTIONS(1994), + [anon_sym_U_SQUOTE] = ACTIONS(1994), + [anon_sym_u8_SQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_L_DQUOTE] = ACTIONS(1994), + [anon_sym_u_DQUOTE] = ACTIONS(1994), + [anon_sym_U_DQUOTE] = ACTIONS(1994), + [anon_sym_u8_DQUOTE] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym_true] = ACTIONS(1992), + [sym_false] = ACTIONS(1992), + [sym_null] = ACTIONS(1992), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1994), + [anon_sym_ATimport] = ACTIONS(1994), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1992), + [anon_sym_ATcompatibility_alias] = ACTIONS(1994), + [anon_sym_ATprotocol] = ACTIONS(1994), + [anon_sym_ATclass] = ACTIONS(1994), + [anon_sym_ATinterface] = ACTIONS(1994), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1992), + [sym_method_attribute_specifier] = ACTIONS(1992), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1992), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE] = ACTIONS(1992), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_API_AVAILABLE] = ACTIONS(1992), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_API_DEPRECATED] = ACTIONS(1992), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1992), + [anon_sym___deprecated_msg] = ACTIONS(1992), + [anon_sym___deprecated_enum_msg] = ACTIONS(1992), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1992), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1992), + [anon_sym_ATimplementation] = ACTIONS(1994), + [anon_sym_NS_ENUM] = ACTIONS(1992), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1992), + [anon_sym_NS_OPTIONS] = ACTIONS(1992), + [anon_sym_typeof] = ACTIONS(1992), + [anon_sym___typeof] = ACTIONS(1992), + [anon_sym___typeof__] = ACTIONS(1992), + [sym_self] = ACTIONS(1992), + [sym_super] = ACTIONS(1992), + [sym_nil] = ACTIONS(1992), + [sym_id] = ACTIONS(1992), + [sym_instancetype] = ACTIONS(1992), + [sym_Class] = ACTIONS(1992), + [sym_SEL] = ACTIONS(1992), + [sym_IMP] = ACTIONS(1992), + [sym_BOOL] = ACTIONS(1992), + [sym_auto] = ACTIONS(1992), + [anon_sym_ATautoreleasepool] = ACTIONS(1994), + [anon_sym_ATsynchronized] = ACTIONS(1994), + [anon_sym_ATtry] = ACTIONS(1994), + [anon_sym_ATthrow] = ACTIONS(1994), + [anon_sym_ATselector] = ACTIONS(1994), + [anon_sym_ATencode] = ACTIONS(1994), + [anon_sym_AT] = ACTIONS(1992), + [sym_YES] = ACTIONS(1992), + [sym_NO] = ACTIONS(1992), + [anon_sym___builtin_available] = ACTIONS(1992), + [anon_sym_ATavailable] = ACTIONS(1994), + [anon_sym_va_arg] = ACTIONS(1992), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [892] = { + [ts_builtin_sym_end] = ACTIONS(1962), + [sym_identifier] = ACTIONS(1960), + [aux_sym_preproc_include_token1] = ACTIONS(1962), + [aux_sym_preproc_def_token1] = ACTIONS(1962), + [aux_sym_preproc_if_token1] = ACTIONS(1960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1960), + [anon_sym_LPAREN2] = ACTIONS(1962), + [anon_sym_BANG] = ACTIONS(1962), + [anon_sym_TILDE] = ACTIONS(1962), + [anon_sym_DASH] = ACTIONS(1960), + [anon_sym_PLUS] = ACTIONS(1960), + [anon_sym_STAR] = ACTIONS(1962), + [anon_sym_CARET] = ACTIONS(1962), + [anon_sym_AMP] = ACTIONS(1962), + [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_typedef] = ACTIONS(1960), + [anon_sym_extern] = ACTIONS(1960), + [anon_sym___attribute] = ACTIONS(1960), + [anon_sym___attribute__] = ACTIONS(1960), + [anon_sym___declspec] = ACTIONS(1960), + [anon_sym___cdecl] = ACTIONS(1960), + [anon_sym___clrcall] = ACTIONS(1960), + [anon_sym___stdcall] = ACTIONS(1960), + [anon_sym___fastcall] = ACTIONS(1960), + [anon_sym___thiscall] = ACTIONS(1960), + [anon_sym___vectorcall] = ACTIONS(1960), + [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_RBRACE] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1962), + [anon_sym_static] = ACTIONS(1960), + [anon_sym_auto] = ACTIONS(1960), + [anon_sym_register] = ACTIONS(1960), + [anon_sym_inline] = ACTIONS(1960), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1960), + [anon_sym_const] = ACTIONS(1960), + [anon_sym_volatile] = ACTIONS(1960), + [anon_sym_restrict] = ACTIONS(1960), + [anon_sym__Atomic] = ACTIONS(1960), + [anon_sym_in] = ACTIONS(1960), + [anon_sym_out] = ACTIONS(1960), + [anon_sym_inout] = ACTIONS(1960), + [anon_sym_bycopy] = ACTIONS(1960), + [anon_sym_byref] = ACTIONS(1960), + [anon_sym_oneway] = ACTIONS(1960), + [anon_sym__Nullable] = ACTIONS(1960), + [anon_sym__Nonnull] = ACTIONS(1960), + [anon_sym__Nullable_result] = ACTIONS(1960), + [anon_sym__Null_unspecified] = ACTIONS(1960), + [anon_sym___autoreleasing] = ACTIONS(1960), + [anon_sym___nullable] = ACTIONS(1960), + [anon_sym___nonnull] = ACTIONS(1960), + [anon_sym___strong] = ACTIONS(1960), + [anon_sym___weak] = ACTIONS(1960), + [anon_sym___bridge] = ACTIONS(1960), + [anon_sym___bridge_transfer] = ACTIONS(1960), + [anon_sym___bridge_retained] = ACTIONS(1960), + [anon_sym___unsafe_unretained] = ACTIONS(1960), + [anon_sym___block] = ACTIONS(1960), + [anon_sym___kindof] = ACTIONS(1960), + [anon_sym___unused] = ACTIONS(1960), + [anon_sym__Complex] = ACTIONS(1960), + [anon_sym___complex] = ACTIONS(1960), + [anon_sym_IBOutlet] = ACTIONS(1960), + [anon_sym_IBInspectable] = ACTIONS(1960), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1960), + [anon_sym_signed] = ACTIONS(1960), + [anon_sym_unsigned] = ACTIONS(1960), + [anon_sym_long] = ACTIONS(1960), + [anon_sym_short] = ACTIONS(1960), + [sym_primitive_type] = ACTIONS(1960), + [anon_sym_enum] = ACTIONS(1960), + [anon_sym_struct] = ACTIONS(1960), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_if] = ACTIONS(1960), + [anon_sym_switch] = ACTIONS(1960), + [anon_sym_case] = ACTIONS(1960), + [anon_sym_default] = ACTIONS(1960), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1960), + [anon_sym_for] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1960), + [anon_sym_break] = ACTIONS(1960), + [anon_sym_continue] = ACTIONS(1960), + [anon_sym_goto] = ACTIONS(1960), + [anon_sym_DASH_DASH] = ACTIONS(1962), + [anon_sym_PLUS_PLUS] = ACTIONS(1962), + [anon_sym_sizeof] = ACTIONS(1960), + [sym_number_literal] = ACTIONS(1962), + [anon_sym_L_SQUOTE] = ACTIONS(1962), + [anon_sym_u_SQUOTE] = ACTIONS(1962), + [anon_sym_U_SQUOTE] = ACTIONS(1962), + [anon_sym_u8_SQUOTE] = ACTIONS(1962), + [anon_sym_SQUOTE] = ACTIONS(1962), + [anon_sym_L_DQUOTE] = ACTIONS(1962), + [anon_sym_u_DQUOTE] = ACTIONS(1962), + [anon_sym_U_DQUOTE] = ACTIONS(1962), + [anon_sym_u8_DQUOTE] = ACTIONS(1962), + [anon_sym_DQUOTE] = ACTIONS(1962), + [sym_true] = ACTIONS(1960), + [sym_false] = ACTIONS(1960), + [sym_null] = ACTIONS(1960), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1962), + [anon_sym_ATimport] = ACTIONS(1962), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1960), + [anon_sym_ATcompatibility_alias] = ACTIONS(1962), + [anon_sym_ATprotocol] = ACTIONS(1962), + [anon_sym_ATclass] = ACTIONS(1962), + [anon_sym_ATinterface] = ACTIONS(1962), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1960), + [sym_method_attribute_specifier] = ACTIONS(1960), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1960), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1960), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1960), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1960), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1960), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1960), + [anon_sym_NS_AVAILABLE] = ACTIONS(1960), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1960), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1960), + [anon_sym_API_AVAILABLE] = ACTIONS(1960), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1960), + [anon_sym_API_DEPRECATED] = ACTIONS(1960), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1960), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1960), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1960), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1960), + [anon_sym___deprecated_msg] = ACTIONS(1960), + [anon_sym___deprecated_enum_msg] = ACTIONS(1960), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1960), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1960), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1960), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1960), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1960), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1960), + [anon_sym_ATimplementation] = ACTIONS(1962), + [anon_sym_NS_ENUM] = ACTIONS(1960), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1960), + [anon_sym_NS_OPTIONS] = ACTIONS(1960), + [anon_sym_typeof] = ACTIONS(1960), + [anon_sym___typeof] = ACTIONS(1960), + [anon_sym___typeof__] = ACTIONS(1960), + [sym_self] = ACTIONS(1960), + [sym_super] = ACTIONS(1960), + [sym_nil] = ACTIONS(1960), + [sym_id] = ACTIONS(1960), + [sym_instancetype] = ACTIONS(1960), + [sym_Class] = ACTIONS(1960), + [sym_SEL] = ACTIONS(1960), + [sym_IMP] = ACTIONS(1960), + [sym_BOOL] = ACTIONS(1960), + [sym_auto] = ACTIONS(1960), + [anon_sym_ATautoreleasepool] = ACTIONS(1962), + [anon_sym_ATsynchronized] = ACTIONS(1962), + [anon_sym_ATtry] = ACTIONS(1962), + [anon_sym_ATthrow] = ACTIONS(1962), + [anon_sym_ATselector] = ACTIONS(1962), + [anon_sym_ATencode] = ACTIONS(1962), + [anon_sym_AT] = ACTIONS(1960), + [sym_YES] = ACTIONS(1960), + [sym_NO] = ACTIONS(1960), + [anon_sym___builtin_available] = ACTIONS(1960), + [anon_sym_ATavailable] = ACTIONS(1962), + [anon_sym_va_arg] = ACTIONS(1960), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [893] = { + [ts_builtin_sym_end] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1994), + [aux_sym_preproc_def_token1] = ACTIONS(1994), + [aux_sym_preproc_if_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_CARET] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_typedef] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym___attribute] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1992), + [anon_sym___declspec] = ACTIONS(1992), + [anon_sym___cdecl] = ACTIONS(1992), + [anon_sym___clrcall] = ACTIONS(1992), + [anon_sym___stdcall] = ACTIONS(1992), + [anon_sym___fastcall] = ACTIONS(1992), + [anon_sym___thiscall] = ACTIONS(1992), + [anon_sym___vectorcall] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_auto] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_inline] = ACTIONS(1992), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1992), + [anon_sym_restrict] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1992), + [anon_sym_in] = ACTIONS(1992), + [anon_sym_out] = ACTIONS(1992), + [anon_sym_inout] = ACTIONS(1992), + [anon_sym_bycopy] = ACTIONS(1992), + [anon_sym_byref] = ACTIONS(1992), + [anon_sym_oneway] = ACTIONS(1992), + [anon_sym__Nullable] = ACTIONS(1992), + [anon_sym__Nonnull] = ACTIONS(1992), + [anon_sym__Nullable_result] = ACTIONS(1992), + [anon_sym__Null_unspecified] = ACTIONS(1992), + [anon_sym___autoreleasing] = ACTIONS(1992), + [anon_sym___nullable] = ACTIONS(1992), + [anon_sym___nonnull] = ACTIONS(1992), + [anon_sym___strong] = ACTIONS(1992), + [anon_sym___weak] = ACTIONS(1992), + [anon_sym___bridge] = ACTIONS(1992), + [anon_sym___bridge_transfer] = ACTIONS(1992), + [anon_sym___bridge_retained] = ACTIONS(1992), + [anon_sym___unsafe_unretained] = ACTIONS(1992), + [anon_sym___block] = ACTIONS(1992), + [anon_sym___kindof] = ACTIONS(1992), + [anon_sym___unused] = ACTIONS(1992), + [anon_sym__Complex] = ACTIONS(1992), + [anon_sym___complex] = ACTIONS(1992), + [anon_sym_IBOutlet] = ACTIONS(1992), + [anon_sym_IBInspectable] = ACTIONS(1992), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1992), + [anon_sym_signed] = ACTIONS(1992), + [anon_sym_unsigned] = ACTIONS(1992), + [anon_sym_long] = ACTIONS(1992), + [anon_sym_short] = ACTIONS(1992), + [sym_primitive_type] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_switch] = ACTIONS(1992), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1992), + [sym_number_literal] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1994), + [anon_sym_u_SQUOTE] = ACTIONS(1994), + [anon_sym_U_SQUOTE] = ACTIONS(1994), + [anon_sym_u8_SQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_L_DQUOTE] = ACTIONS(1994), + [anon_sym_u_DQUOTE] = ACTIONS(1994), + [anon_sym_U_DQUOTE] = ACTIONS(1994), + [anon_sym_u8_DQUOTE] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym_true] = ACTIONS(1992), + [sym_false] = ACTIONS(1992), + [sym_null] = ACTIONS(1992), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1994), + [anon_sym_ATimport] = ACTIONS(1994), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1992), + [anon_sym_ATcompatibility_alias] = ACTIONS(1994), + [anon_sym_ATprotocol] = ACTIONS(1994), + [anon_sym_ATclass] = ACTIONS(1994), + [anon_sym_ATinterface] = ACTIONS(1994), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1992), + [sym_method_attribute_specifier] = ACTIONS(1992), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1992), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE] = ACTIONS(1992), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_API_AVAILABLE] = ACTIONS(1992), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_API_DEPRECATED] = ACTIONS(1992), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1992), + [anon_sym___deprecated_msg] = ACTIONS(1992), + [anon_sym___deprecated_enum_msg] = ACTIONS(1992), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1992), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1992), + [anon_sym_ATimplementation] = ACTIONS(1994), + [anon_sym_NS_ENUM] = ACTIONS(1992), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1992), + [anon_sym_NS_OPTIONS] = ACTIONS(1992), + [anon_sym_typeof] = ACTIONS(1992), + [anon_sym___typeof] = ACTIONS(1992), + [anon_sym___typeof__] = ACTIONS(1992), + [sym_self] = ACTIONS(1992), + [sym_super] = ACTIONS(1992), + [sym_nil] = ACTIONS(1992), + [sym_id] = ACTIONS(1992), + [sym_instancetype] = ACTIONS(1992), + [sym_Class] = ACTIONS(1992), + [sym_SEL] = ACTIONS(1992), + [sym_IMP] = ACTIONS(1992), + [sym_BOOL] = ACTIONS(1992), + [sym_auto] = ACTIONS(1992), + [anon_sym_ATautoreleasepool] = ACTIONS(1994), + [anon_sym_ATsynchronized] = ACTIONS(1994), + [anon_sym_ATtry] = ACTIONS(1994), + [anon_sym_ATthrow] = ACTIONS(1994), + [anon_sym_ATselector] = ACTIONS(1994), + [anon_sym_ATencode] = ACTIONS(1994), + [anon_sym_AT] = ACTIONS(1992), + [sym_YES] = ACTIONS(1992), + [sym_NO] = ACTIONS(1992), + [anon_sym___builtin_available] = ACTIONS(1992), + [anon_sym_ATavailable] = ACTIONS(1994), + [anon_sym_va_arg] = ACTIONS(1992), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [894] = { + [ts_builtin_sym_end] = ACTIONS(1958), + [sym_identifier] = ACTIONS(1956), + [aux_sym_preproc_include_token1] = ACTIONS(1958), + [aux_sym_preproc_def_token1] = ACTIONS(1958), + [aux_sym_preproc_if_token1] = ACTIONS(1956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1956), + [anon_sym_LPAREN2] = ACTIONS(1958), + [anon_sym_BANG] = ACTIONS(1958), + [anon_sym_TILDE] = ACTIONS(1958), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_STAR] = ACTIONS(1958), + [anon_sym_CARET] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1958), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_typedef] = ACTIONS(1956), + [anon_sym_extern] = ACTIONS(1956), + [anon_sym___attribute] = ACTIONS(1956), + [anon_sym___attribute__] = ACTIONS(1956), + [anon_sym___declspec] = ACTIONS(1956), + [anon_sym___cdecl] = ACTIONS(1956), + [anon_sym___clrcall] = ACTIONS(1956), + [anon_sym___stdcall] = ACTIONS(1956), + [anon_sym___fastcall] = ACTIONS(1956), + [anon_sym___thiscall] = ACTIONS(1956), + [anon_sym___vectorcall] = ACTIONS(1956), + [anon_sym_LBRACE] = ACTIONS(1958), + [anon_sym_RBRACE] = ACTIONS(1958), + [anon_sym_LBRACK] = ACTIONS(1958), + [anon_sym_static] = ACTIONS(1956), + [anon_sym_auto] = ACTIONS(1956), + [anon_sym_register] = ACTIONS(1956), + [anon_sym_inline] = ACTIONS(1956), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1956), + [anon_sym_const] = ACTIONS(1956), + [anon_sym_volatile] = ACTIONS(1956), + [anon_sym_restrict] = ACTIONS(1956), + [anon_sym__Atomic] = ACTIONS(1956), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_out] = ACTIONS(1956), + [anon_sym_inout] = ACTIONS(1956), + [anon_sym_bycopy] = ACTIONS(1956), + [anon_sym_byref] = ACTIONS(1956), + [anon_sym_oneway] = ACTIONS(1956), + [anon_sym__Nullable] = ACTIONS(1956), + [anon_sym__Nonnull] = ACTIONS(1956), + [anon_sym__Nullable_result] = ACTIONS(1956), + [anon_sym__Null_unspecified] = ACTIONS(1956), + [anon_sym___autoreleasing] = ACTIONS(1956), + [anon_sym___nullable] = ACTIONS(1956), + [anon_sym___nonnull] = ACTIONS(1956), + [anon_sym___strong] = ACTIONS(1956), + [anon_sym___weak] = ACTIONS(1956), + [anon_sym___bridge] = ACTIONS(1956), + [anon_sym___bridge_transfer] = ACTIONS(1956), + [anon_sym___bridge_retained] = ACTIONS(1956), + [anon_sym___unsafe_unretained] = ACTIONS(1956), + [anon_sym___block] = ACTIONS(1956), + [anon_sym___kindof] = ACTIONS(1956), + [anon_sym___unused] = ACTIONS(1956), + [anon_sym__Complex] = ACTIONS(1956), + [anon_sym___complex] = ACTIONS(1956), + [anon_sym_IBOutlet] = ACTIONS(1956), + [anon_sym_IBInspectable] = ACTIONS(1956), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1956), + [anon_sym_signed] = ACTIONS(1956), + [anon_sym_unsigned] = ACTIONS(1956), + [anon_sym_long] = ACTIONS(1956), + [anon_sym_short] = ACTIONS(1956), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_enum] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1956), + [anon_sym_union] = ACTIONS(1956), + [anon_sym_if] = ACTIONS(1956), + [anon_sym_switch] = ACTIONS(1956), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1956), + [anon_sym_while] = ACTIONS(1956), + [anon_sym_do] = ACTIONS(1956), + [anon_sym_for] = ACTIONS(1956), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_break] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(1956), + [anon_sym_goto] = ACTIONS(1956), + [anon_sym_DASH_DASH] = ACTIONS(1958), + [anon_sym_PLUS_PLUS] = ACTIONS(1958), + [anon_sym_sizeof] = ACTIONS(1956), + [sym_number_literal] = ACTIONS(1958), + [anon_sym_L_SQUOTE] = ACTIONS(1958), + [anon_sym_u_SQUOTE] = ACTIONS(1958), + [anon_sym_U_SQUOTE] = ACTIONS(1958), + [anon_sym_u8_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_L_DQUOTE] = ACTIONS(1958), + [anon_sym_u_DQUOTE] = ACTIONS(1958), + [anon_sym_U_DQUOTE] = ACTIONS(1958), + [anon_sym_u8_DQUOTE] = ACTIONS(1958), + [anon_sym_DQUOTE] = ACTIONS(1958), + [sym_true] = ACTIONS(1956), + [sym_false] = ACTIONS(1956), + [sym_null] = ACTIONS(1956), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1958), + [anon_sym_ATimport] = ACTIONS(1958), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1956), + [anon_sym_ATcompatibility_alias] = ACTIONS(1958), + [anon_sym_ATprotocol] = ACTIONS(1958), + [anon_sym_ATclass] = ACTIONS(1958), + [anon_sym_ATinterface] = ACTIONS(1958), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1956), + [sym_method_attribute_specifier] = ACTIONS(1956), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1956), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1956), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1956), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1956), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1956), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1956), + [anon_sym_NS_AVAILABLE] = ACTIONS(1956), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1956), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1956), + [anon_sym_API_AVAILABLE] = ACTIONS(1956), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1956), + [anon_sym_API_DEPRECATED] = ACTIONS(1956), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1956), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1956), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1956), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1956), + [anon_sym___deprecated_msg] = ACTIONS(1956), + [anon_sym___deprecated_enum_msg] = ACTIONS(1956), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1956), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1956), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1956), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1956), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1956), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1956), + [anon_sym_ATimplementation] = ACTIONS(1958), + [anon_sym_NS_ENUM] = ACTIONS(1956), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1956), + [anon_sym_NS_OPTIONS] = ACTIONS(1956), + [anon_sym_typeof] = ACTIONS(1956), + [anon_sym___typeof] = ACTIONS(1956), + [anon_sym___typeof__] = ACTIONS(1956), + [sym_self] = ACTIONS(1956), + [sym_super] = ACTIONS(1956), + [sym_nil] = ACTIONS(1956), + [sym_id] = ACTIONS(1956), + [sym_instancetype] = ACTIONS(1956), + [sym_Class] = ACTIONS(1956), + [sym_SEL] = ACTIONS(1956), + [sym_IMP] = ACTIONS(1956), + [sym_BOOL] = ACTIONS(1956), + [sym_auto] = ACTIONS(1956), + [anon_sym_ATautoreleasepool] = ACTIONS(1958), + [anon_sym_ATsynchronized] = ACTIONS(1958), + [anon_sym_ATtry] = ACTIONS(1958), + [anon_sym_ATthrow] = ACTIONS(1958), + [anon_sym_ATselector] = ACTIONS(1958), + [anon_sym_ATencode] = ACTIONS(1958), + [anon_sym_AT] = ACTIONS(1956), + [sym_YES] = ACTIONS(1956), + [sym_NO] = ACTIONS(1956), + [anon_sym___builtin_available] = ACTIONS(1956), + [anon_sym_ATavailable] = ACTIONS(1958), + [anon_sym_va_arg] = ACTIONS(1956), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [895] = { + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [896] = { + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [897] = { + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [898] = { + [ts_builtin_sym_end] = ACTIONS(1798), + [sym_identifier] = ACTIONS(1796), + [aux_sym_preproc_include_token1] = ACTIONS(1798), + [aux_sym_preproc_def_token1] = ACTIONS(1798), + [aux_sym_preproc_if_token1] = ACTIONS(1796), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1796), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1796), + [anon_sym_LPAREN2] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_typedef] = ACTIONS(1796), + [anon_sym_extern] = ACTIONS(1796), + [anon_sym___attribute] = ACTIONS(1796), + [anon_sym___attribute__] = ACTIONS(1796), + [anon_sym___declspec] = ACTIONS(1796), + [anon_sym___cdecl] = ACTIONS(1796), + [anon_sym___clrcall] = ACTIONS(1796), + [anon_sym___stdcall] = ACTIONS(1796), + [anon_sym___fastcall] = ACTIONS(1796), + [anon_sym___thiscall] = ACTIONS(1796), + [anon_sym___vectorcall] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_static] = ACTIONS(1796), + [anon_sym_auto] = ACTIONS(1796), + [anon_sym_register] = ACTIONS(1796), + [anon_sym_inline] = ACTIONS(1796), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1796), + [anon_sym_const] = ACTIONS(1796), + [anon_sym_volatile] = ACTIONS(1796), + [anon_sym_restrict] = ACTIONS(1796), + [anon_sym__Atomic] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_out] = ACTIONS(1796), + [anon_sym_inout] = ACTIONS(1796), + [anon_sym_bycopy] = ACTIONS(1796), + [anon_sym_byref] = ACTIONS(1796), + [anon_sym_oneway] = ACTIONS(1796), + [anon_sym__Nullable] = ACTIONS(1796), + [anon_sym__Nonnull] = ACTIONS(1796), + [anon_sym__Nullable_result] = ACTIONS(1796), + [anon_sym__Null_unspecified] = ACTIONS(1796), + [anon_sym___autoreleasing] = ACTIONS(1796), + [anon_sym___nullable] = ACTIONS(1796), + [anon_sym___nonnull] = ACTIONS(1796), + [anon_sym___strong] = ACTIONS(1796), + [anon_sym___weak] = ACTIONS(1796), + [anon_sym___bridge] = ACTIONS(1796), + [anon_sym___bridge_transfer] = ACTIONS(1796), + [anon_sym___bridge_retained] = ACTIONS(1796), + [anon_sym___unsafe_unretained] = ACTIONS(1796), + [anon_sym___block] = ACTIONS(1796), + [anon_sym___kindof] = ACTIONS(1796), + [anon_sym___unused] = ACTIONS(1796), + [anon_sym__Complex] = ACTIONS(1796), + [anon_sym___complex] = ACTIONS(1796), + [anon_sym_IBOutlet] = ACTIONS(1796), + [anon_sym_IBInspectable] = ACTIONS(1796), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1796), + [anon_sym_signed] = ACTIONS(1796), + [anon_sym_unsigned] = ACTIONS(1796), + [anon_sym_long] = ACTIONS(1796), + [anon_sym_short] = ACTIONS(1796), + [sym_primitive_type] = ACTIONS(1796), + [anon_sym_enum] = ACTIONS(1796), + [anon_sym_struct] = ACTIONS(1796), + [anon_sym_union] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_switch] = ACTIONS(1796), + [anon_sym_case] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_do] = ACTIONS(1796), + [anon_sym_for] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_goto] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1796), + [sym_number_literal] = ACTIONS(1798), + [anon_sym_L_SQUOTE] = ACTIONS(1798), + [anon_sym_u_SQUOTE] = ACTIONS(1798), + [anon_sym_U_SQUOTE] = ACTIONS(1798), + [anon_sym_u8_SQUOTE] = ACTIONS(1798), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_L_DQUOTE] = ACTIONS(1798), + [anon_sym_u_DQUOTE] = ACTIONS(1798), + [anon_sym_U_DQUOTE] = ACTIONS(1798), + [anon_sym_u8_DQUOTE] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [sym_true] = ACTIONS(1796), + [sym_false] = ACTIONS(1796), + [sym_null] = ACTIONS(1796), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1798), + [anon_sym_ATimport] = ACTIONS(1798), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1796), + [anon_sym_ATcompatibility_alias] = ACTIONS(1798), + [anon_sym_ATprotocol] = ACTIONS(1798), + [anon_sym_ATclass] = ACTIONS(1798), + [anon_sym_ATinterface] = ACTIONS(1798), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1796), + [sym_method_attribute_specifier] = ACTIONS(1796), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1796), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1796), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1796), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1796), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1796), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1796), + [anon_sym_NS_AVAILABLE] = ACTIONS(1796), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1796), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1796), + [anon_sym_API_AVAILABLE] = ACTIONS(1796), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1796), + [anon_sym_API_DEPRECATED] = ACTIONS(1796), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1796), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1796), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1796), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1796), + [anon_sym___deprecated_msg] = ACTIONS(1796), + [anon_sym___deprecated_enum_msg] = ACTIONS(1796), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1796), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1796), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1796), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1796), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1796), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1796), + [anon_sym_ATimplementation] = ACTIONS(1798), + [anon_sym_NS_ENUM] = ACTIONS(1796), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1796), + [anon_sym_NS_OPTIONS] = ACTIONS(1796), + [anon_sym_typeof] = ACTIONS(1796), + [anon_sym___typeof] = ACTIONS(1796), + [anon_sym___typeof__] = ACTIONS(1796), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_nil] = ACTIONS(1796), + [sym_id] = ACTIONS(1796), + [sym_instancetype] = ACTIONS(1796), + [sym_Class] = ACTIONS(1796), + [sym_SEL] = ACTIONS(1796), + [sym_IMP] = ACTIONS(1796), + [sym_BOOL] = ACTIONS(1796), + [sym_auto] = ACTIONS(1796), + [anon_sym_ATautoreleasepool] = ACTIONS(1798), + [anon_sym_ATsynchronized] = ACTIONS(1798), + [anon_sym_ATtry] = ACTIONS(1798), + [anon_sym_ATthrow] = ACTIONS(1798), + [anon_sym_ATselector] = ACTIONS(1798), + [anon_sym_ATencode] = ACTIONS(1798), + [anon_sym_AT] = ACTIONS(1796), + [sym_YES] = ACTIONS(1796), + [sym_NO] = ACTIONS(1796), + [anon_sym___builtin_available] = ACTIONS(1796), + [anon_sym_ATavailable] = ACTIONS(1798), + [anon_sym_va_arg] = ACTIONS(1796), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [899] = { + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [900] = { + [ts_builtin_sym_end] = ACTIONS(1794), + [sym_identifier] = ACTIONS(1792), + [aux_sym_preproc_include_token1] = ACTIONS(1794), + [aux_sym_preproc_def_token1] = ACTIONS(1794), + [aux_sym_preproc_if_token1] = ACTIONS(1792), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1792), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1792), + [anon_sym_LPAREN2] = ACTIONS(1794), + [anon_sym_BANG] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(1794), + [anon_sym_CARET] = ACTIONS(1794), + [anon_sym_AMP] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_typedef] = ACTIONS(1792), + [anon_sym_extern] = ACTIONS(1792), + [anon_sym___attribute] = ACTIONS(1792), + [anon_sym___attribute__] = ACTIONS(1792), + [anon_sym___declspec] = ACTIONS(1792), + [anon_sym___cdecl] = ACTIONS(1792), + [anon_sym___clrcall] = ACTIONS(1792), + [anon_sym___stdcall] = ACTIONS(1792), + [anon_sym___fastcall] = ACTIONS(1792), + [anon_sym___thiscall] = ACTIONS(1792), + [anon_sym___vectorcall] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_auto] = ACTIONS(1792), + [anon_sym_register] = ACTIONS(1792), + [anon_sym_inline] = ACTIONS(1792), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1792), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_volatile] = ACTIONS(1792), + [anon_sym_restrict] = ACTIONS(1792), + [anon_sym__Atomic] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1792), + [anon_sym_out] = ACTIONS(1792), + [anon_sym_inout] = ACTIONS(1792), + [anon_sym_bycopy] = ACTIONS(1792), + [anon_sym_byref] = ACTIONS(1792), + [anon_sym_oneway] = ACTIONS(1792), + [anon_sym__Nullable] = ACTIONS(1792), + [anon_sym__Nonnull] = ACTIONS(1792), + [anon_sym__Nullable_result] = ACTIONS(1792), + [anon_sym__Null_unspecified] = ACTIONS(1792), + [anon_sym___autoreleasing] = ACTIONS(1792), + [anon_sym___nullable] = ACTIONS(1792), + [anon_sym___nonnull] = ACTIONS(1792), + [anon_sym___strong] = ACTIONS(1792), + [anon_sym___weak] = ACTIONS(1792), + [anon_sym___bridge] = ACTIONS(1792), + [anon_sym___bridge_transfer] = ACTIONS(1792), + [anon_sym___bridge_retained] = ACTIONS(1792), + [anon_sym___unsafe_unretained] = ACTIONS(1792), + [anon_sym___block] = ACTIONS(1792), + [anon_sym___kindof] = ACTIONS(1792), + [anon_sym___unused] = ACTIONS(1792), + [anon_sym__Complex] = ACTIONS(1792), + [anon_sym___complex] = ACTIONS(1792), + [anon_sym_IBOutlet] = ACTIONS(1792), + [anon_sym_IBInspectable] = ACTIONS(1792), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1792), + [anon_sym_signed] = ACTIONS(1792), + [anon_sym_unsigned] = ACTIONS(1792), + [anon_sym_long] = ACTIONS(1792), + [anon_sym_short] = ACTIONS(1792), + [sym_primitive_type] = ACTIONS(1792), + [anon_sym_enum] = ACTIONS(1792), + [anon_sym_struct] = ACTIONS(1792), + [anon_sym_union] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1792), + [anon_sym_case] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1792), + [anon_sym_while] = ACTIONS(1792), + [anon_sym_do] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_return] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_goto] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1794), + [anon_sym_PLUS_PLUS] = ACTIONS(1794), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_number_literal] = ACTIONS(1794), + [anon_sym_L_SQUOTE] = ACTIONS(1794), + [anon_sym_u_SQUOTE] = ACTIONS(1794), + [anon_sym_U_SQUOTE] = ACTIONS(1794), + [anon_sym_u8_SQUOTE] = ACTIONS(1794), + [anon_sym_SQUOTE] = ACTIONS(1794), + [anon_sym_L_DQUOTE] = ACTIONS(1794), + [anon_sym_u_DQUOTE] = ACTIONS(1794), + [anon_sym_U_DQUOTE] = ACTIONS(1794), + [anon_sym_u8_DQUOTE] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1794), + [sym_true] = ACTIONS(1792), + [sym_false] = ACTIONS(1792), + [sym_null] = ACTIONS(1792), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1794), + [anon_sym_ATimport] = ACTIONS(1794), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1792), + [anon_sym_ATcompatibility_alias] = ACTIONS(1794), + [anon_sym_ATprotocol] = ACTIONS(1794), + [anon_sym_ATclass] = ACTIONS(1794), + [anon_sym_ATinterface] = ACTIONS(1794), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1792), + [sym_method_attribute_specifier] = ACTIONS(1792), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1792), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1792), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1792), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1792), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1792), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1792), + [anon_sym_NS_AVAILABLE] = ACTIONS(1792), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1792), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1792), + [anon_sym_API_AVAILABLE] = ACTIONS(1792), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1792), + [anon_sym_API_DEPRECATED] = ACTIONS(1792), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1792), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1792), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1792), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1792), + [anon_sym___deprecated_msg] = ACTIONS(1792), + [anon_sym___deprecated_enum_msg] = ACTIONS(1792), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1792), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1792), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1792), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1792), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1792), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1792), + [anon_sym_ATimplementation] = ACTIONS(1794), + [anon_sym_NS_ENUM] = ACTIONS(1792), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1792), + [anon_sym_NS_OPTIONS] = ACTIONS(1792), + [anon_sym_typeof] = ACTIONS(1792), + [anon_sym___typeof] = ACTIONS(1792), + [anon_sym___typeof__] = ACTIONS(1792), + [sym_self] = ACTIONS(1792), + [sym_super] = ACTIONS(1792), + [sym_nil] = ACTIONS(1792), + [sym_id] = ACTIONS(1792), + [sym_instancetype] = ACTIONS(1792), + [sym_Class] = ACTIONS(1792), + [sym_SEL] = ACTIONS(1792), + [sym_IMP] = ACTIONS(1792), + [sym_BOOL] = ACTIONS(1792), + [sym_auto] = ACTIONS(1792), + [anon_sym_ATautoreleasepool] = ACTIONS(1794), + [anon_sym_ATsynchronized] = ACTIONS(1794), + [anon_sym_ATtry] = ACTIONS(1794), + [anon_sym_ATthrow] = ACTIONS(1794), + [anon_sym_ATselector] = ACTIONS(1794), + [anon_sym_ATencode] = ACTIONS(1794), + [anon_sym_AT] = ACTIONS(1792), + [sym_YES] = ACTIONS(1792), + [sym_NO] = ACTIONS(1792), + [anon_sym___builtin_available] = ACTIONS(1792), + [anon_sym_ATavailable] = ACTIONS(1794), + [anon_sym_va_arg] = ACTIONS(1792), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [901] = { + [ts_builtin_sym_end] = ACTIONS(1790), + [sym_identifier] = ACTIONS(1788), + [aux_sym_preproc_include_token1] = ACTIONS(1790), + [aux_sym_preproc_def_token1] = ACTIONS(1790), + [aux_sym_preproc_if_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_CARET] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_typedef] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym___attribute] = ACTIONS(1788), + [anon_sym___attribute__] = ACTIONS(1788), + [anon_sym___declspec] = ACTIONS(1788), + [anon_sym___cdecl] = ACTIONS(1788), + [anon_sym___clrcall] = ACTIONS(1788), + [anon_sym___stdcall] = ACTIONS(1788), + [anon_sym___fastcall] = ACTIONS(1788), + [anon_sym___thiscall] = ACTIONS(1788), + [anon_sym___vectorcall] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_auto] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_inline] = ACTIONS(1788), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_volatile] = ACTIONS(1788), + [anon_sym_restrict] = ACTIONS(1788), + [anon_sym__Atomic] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_out] = ACTIONS(1788), + [anon_sym_inout] = ACTIONS(1788), + [anon_sym_bycopy] = ACTIONS(1788), + [anon_sym_byref] = ACTIONS(1788), + [anon_sym_oneway] = ACTIONS(1788), + [anon_sym__Nullable] = ACTIONS(1788), + [anon_sym__Nonnull] = ACTIONS(1788), + [anon_sym__Nullable_result] = ACTIONS(1788), + [anon_sym__Null_unspecified] = ACTIONS(1788), + [anon_sym___autoreleasing] = ACTIONS(1788), + [anon_sym___nullable] = ACTIONS(1788), + [anon_sym___nonnull] = ACTIONS(1788), + [anon_sym___strong] = ACTIONS(1788), + [anon_sym___weak] = ACTIONS(1788), + [anon_sym___bridge] = ACTIONS(1788), + [anon_sym___bridge_transfer] = ACTIONS(1788), + [anon_sym___bridge_retained] = ACTIONS(1788), + [anon_sym___unsafe_unretained] = ACTIONS(1788), + [anon_sym___block] = ACTIONS(1788), + [anon_sym___kindof] = ACTIONS(1788), + [anon_sym___unused] = ACTIONS(1788), + [anon_sym__Complex] = ACTIONS(1788), + [anon_sym___complex] = ACTIONS(1788), + [anon_sym_IBOutlet] = ACTIONS(1788), + [anon_sym_IBInspectable] = ACTIONS(1788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1788), + [anon_sym_signed] = ACTIONS(1788), + [anon_sym_unsigned] = ACTIONS(1788), + [anon_sym_long] = ACTIONS(1788), + [anon_sym_short] = ACTIONS(1788), + [sym_primitive_type] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_goto] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_sizeof] = ACTIONS(1788), + [sym_number_literal] = ACTIONS(1790), + [anon_sym_L_SQUOTE] = ACTIONS(1790), + [anon_sym_u_SQUOTE] = ACTIONS(1790), + [anon_sym_U_SQUOTE] = ACTIONS(1790), + [anon_sym_u8_SQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_L_DQUOTE] = ACTIONS(1790), + [anon_sym_u_DQUOTE] = ACTIONS(1790), + [anon_sym_U_DQUOTE] = ACTIONS(1790), + [anon_sym_u8_DQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1790), + [anon_sym_ATimport] = ACTIONS(1790), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1788), + [anon_sym_ATcompatibility_alias] = ACTIONS(1790), + [anon_sym_ATprotocol] = ACTIONS(1790), + [anon_sym_ATclass] = ACTIONS(1790), + [anon_sym_ATinterface] = ACTIONS(1790), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1788), + [sym_method_attribute_specifier] = ACTIONS(1788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE] = ACTIONS(1788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_API_AVAILABLE] = ACTIONS(1788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_API_DEPRECATED] = ACTIONS(1788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1788), + [anon_sym___deprecated_msg] = ACTIONS(1788), + [anon_sym___deprecated_enum_msg] = ACTIONS(1788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1788), + [anon_sym_ATimplementation] = ACTIONS(1790), + [anon_sym_NS_ENUM] = ACTIONS(1788), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1788), + [anon_sym_NS_OPTIONS] = ACTIONS(1788), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym___typeof] = ACTIONS(1788), + [anon_sym___typeof__] = ACTIONS(1788), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_nil] = ACTIONS(1788), + [sym_id] = ACTIONS(1788), + [sym_instancetype] = ACTIONS(1788), + [sym_Class] = ACTIONS(1788), + [sym_SEL] = ACTIONS(1788), + [sym_IMP] = ACTIONS(1788), + [sym_BOOL] = ACTIONS(1788), + [sym_auto] = ACTIONS(1788), + [anon_sym_ATautoreleasepool] = ACTIONS(1790), + [anon_sym_ATsynchronized] = ACTIONS(1790), + [anon_sym_ATtry] = ACTIONS(1790), + [anon_sym_ATthrow] = ACTIONS(1790), + [anon_sym_ATselector] = ACTIONS(1790), + [anon_sym_ATencode] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1788), + [sym_YES] = ACTIONS(1788), + [sym_NO] = ACTIONS(1788), + [anon_sym___builtin_available] = ACTIONS(1788), + [anon_sym_ATavailable] = ACTIONS(1790), + [anon_sym_va_arg] = ACTIONS(1788), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [902] = { + [ts_builtin_sym_end] = ACTIONS(1790), + [sym_identifier] = ACTIONS(1788), + [aux_sym_preproc_include_token1] = ACTIONS(1790), + [aux_sym_preproc_def_token1] = ACTIONS(1790), + [aux_sym_preproc_if_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_CARET] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_typedef] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym___attribute] = ACTIONS(1788), + [anon_sym___attribute__] = ACTIONS(1788), + [anon_sym___declspec] = ACTIONS(1788), + [anon_sym___cdecl] = ACTIONS(1788), + [anon_sym___clrcall] = ACTIONS(1788), + [anon_sym___stdcall] = ACTIONS(1788), + [anon_sym___fastcall] = ACTIONS(1788), + [anon_sym___thiscall] = ACTIONS(1788), + [anon_sym___vectorcall] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_auto] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_inline] = ACTIONS(1788), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_volatile] = ACTIONS(1788), + [anon_sym_restrict] = ACTIONS(1788), + [anon_sym__Atomic] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_out] = ACTIONS(1788), + [anon_sym_inout] = ACTIONS(1788), + [anon_sym_bycopy] = ACTIONS(1788), + [anon_sym_byref] = ACTIONS(1788), + [anon_sym_oneway] = ACTIONS(1788), + [anon_sym__Nullable] = ACTIONS(1788), + [anon_sym__Nonnull] = ACTIONS(1788), + [anon_sym__Nullable_result] = ACTIONS(1788), + [anon_sym__Null_unspecified] = ACTIONS(1788), + [anon_sym___autoreleasing] = ACTIONS(1788), + [anon_sym___nullable] = ACTIONS(1788), + [anon_sym___nonnull] = ACTIONS(1788), + [anon_sym___strong] = ACTIONS(1788), + [anon_sym___weak] = ACTIONS(1788), + [anon_sym___bridge] = ACTIONS(1788), + [anon_sym___bridge_transfer] = ACTIONS(1788), + [anon_sym___bridge_retained] = ACTIONS(1788), + [anon_sym___unsafe_unretained] = ACTIONS(1788), + [anon_sym___block] = ACTIONS(1788), + [anon_sym___kindof] = ACTIONS(1788), + [anon_sym___unused] = ACTIONS(1788), + [anon_sym__Complex] = ACTIONS(1788), + [anon_sym___complex] = ACTIONS(1788), + [anon_sym_IBOutlet] = ACTIONS(1788), + [anon_sym_IBInspectable] = ACTIONS(1788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1788), + [anon_sym_signed] = ACTIONS(1788), + [anon_sym_unsigned] = ACTIONS(1788), + [anon_sym_long] = ACTIONS(1788), + [anon_sym_short] = ACTIONS(1788), + [sym_primitive_type] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_goto] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_sizeof] = ACTIONS(1788), + [sym_number_literal] = ACTIONS(1790), + [anon_sym_L_SQUOTE] = ACTIONS(1790), + [anon_sym_u_SQUOTE] = ACTIONS(1790), + [anon_sym_U_SQUOTE] = ACTIONS(1790), + [anon_sym_u8_SQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_L_DQUOTE] = ACTIONS(1790), + [anon_sym_u_DQUOTE] = ACTIONS(1790), + [anon_sym_U_DQUOTE] = ACTIONS(1790), + [anon_sym_u8_DQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1790), + [anon_sym_ATimport] = ACTIONS(1790), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1788), + [anon_sym_ATcompatibility_alias] = ACTIONS(1790), + [anon_sym_ATprotocol] = ACTIONS(1790), + [anon_sym_ATclass] = ACTIONS(1790), + [anon_sym_ATinterface] = ACTIONS(1790), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1788), + [sym_method_attribute_specifier] = ACTIONS(1788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE] = ACTIONS(1788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_API_AVAILABLE] = ACTIONS(1788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_API_DEPRECATED] = ACTIONS(1788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1788), + [anon_sym___deprecated_msg] = ACTIONS(1788), + [anon_sym___deprecated_enum_msg] = ACTIONS(1788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1788), + [anon_sym_ATimplementation] = ACTIONS(1790), + [anon_sym_NS_ENUM] = ACTIONS(1788), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1788), + [anon_sym_NS_OPTIONS] = ACTIONS(1788), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym___typeof] = ACTIONS(1788), + [anon_sym___typeof__] = ACTIONS(1788), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_nil] = ACTIONS(1788), + [sym_id] = ACTIONS(1788), + [sym_instancetype] = ACTIONS(1788), + [sym_Class] = ACTIONS(1788), + [sym_SEL] = ACTIONS(1788), + [sym_IMP] = ACTIONS(1788), + [sym_BOOL] = ACTIONS(1788), + [sym_auto] = ACTIONS(1788), + [anon_sym_ATautoreleasepool] = ACTIONS(1790), + [anon_sym_ATsynchronized] = ACTIONS(1790), + [anon_sym_ATtry] = ACTIONS(1790), + [anon_sym_ATthrow] = ACTIONS(1790), + [anon_sym_ATselector] = ACTIONS(1790), + [anon_sym_ATencode] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1788), + [sym_YES] = ACTIONS(1788), + [sym_NO] = ACTIONS(1788), + [anon_sym___builtin_available] = ACTIONS(1788), + [anon_sym_ATavailable] = ACTIONS(1790), + [anon_sym_va_arg] = ACTIONS(1788), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [903] = { + [ts_builtin_sym_end] = ACTIONS(1790), + [sym_identifier] = ACTIONS(1788), + [aux_sym_preproc_include_token1] = ACTIONS(1790), + [aux_sym_preproc_def_token1] = ACTIONS(1790), + [aux_sym_preproc_if_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_CARET] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_typedef] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym___attribute] = ACTIONS(1788), + [anon_sym___attribute__] = ACTIONS(1788), + [anon_sym___declspec] = ACTIONS(1788), + [anon_sym___cdecl] = ACTIONS(1788), + [anon_sym___clrcall] = ACTIONS(1788), + [anon_sym___stdcall] = ACTIONS(1788), + [anon_sym___fastcall] = ACTIONS(1788), + [anon_sym___thiscall] = ACTIONS(1788), + [anon_sym___vectorcall] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_auto] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_inline] = ACTIONS(1788), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_volatile] = ACTIONS(1788), + [anon_sym_restrict] = ACTIONS(1788), + [anon_sym__Atomic] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_out] = ACTIONS(1788), + [anon_sym_inout] = ACTIONS(1788), + [anon_sym_bycopy] = ACTIONS(1788), + [anon_sym_byref] = ACTIONS(1788), + [anon_sym_oneway] = ACTIONS(1788), + [anon_sym__Nullable] = ACTIONS(1788), + [anon_sym__Nonnull] = ACTIONS(1788), + [anon_sym__Nullable_result] = ACTIONS(1788), + [anon_sym__Null_unspecified] = ACTIONS(1788), + [anon_sym___autoreleasing] = ACTIONS(1788), + [anon_sym___nullable] = ACTIONS(1788), + [anon_sym___nonnull] = ACTIONS(1788), + [anon_sym___strong] = ACTIONS(1788), + [anon_sym___weak] = ACTIONS(1788), + [anon_sym___bridge] = ACTIONS(1788), + [anon_sym___bridge_transfer] = ACTIONS(1788), + [anon_sym___bridge_retained] = ACTIONS(1788), + [anon_sym___unsafe_unretained] = ACTIONS(1788), + [anon_sym___block] = ACTIONS(1788), + [anon_sym___kindof] = ACTIONS(1788), + [anon_sym___unused] = ACTIONS(1788), + [anon_sym__Complex] = ACTIONS(1788), + [anon_sym___complex] = ACTIONS(1788), + [anon_sym_IBOutlet] = ACTIONS(1788), + [anon_sym_IBInspectable] = ACTIONS(1788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1788), + [anon_sym_signed] = ACTIONS(1788), + [anon_sym_unsigned] = ACTIONS(1788), + [anon_sym_long] = ACTIONS(1788), + [anon_sym_short] = ACTIONS(1788), + [sym_primitive_type] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_goto] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_sizeof] = ACTIONS(1788), + [sym_number_literal] = ACTIONS(1790), + [anon_sym_L_SQUOTE] = ACTIONS(1790), + [anon_sym_u_SQUOTE] = ACTIONS(1790), + [anon_sym_U_SQUOTE] = ACTIONS(1790), + [anon_sym_u8_SQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_L_DQUOTE] = ACTIONS(1790), + [anon_sym_u_DQUOTE] = ACTIONS(1790), + [anon_sym_U_DQUOTE] = ACTIONS(1790), + [anon_sym_u8_DQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1790), + [anon_sym_ATimport] = ACTIONS(1790), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1788), + [anon_sym_ATcompatibility_alias] = ACTIONS(1790), + [anon_sym_ATprotocol] = ACTIONS(1790), + [anon_sym_ATclass] = ACTIONS(1790), + [anon_sym_ATinterface] = ACTIONS(1790), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1788), + [sym_method_attribute_specifier] = ACTIONS(1788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE] = ACTIONS(1788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_API_AVAILABLE] = ACTIONS(1788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_API_DEPRECATED] = ACTIONS(1788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1788), + [anon_sym___deprecated_msg] = ACTIONS(1788), + [anon_sym___deprecated_enum_msg] = ACTIONS(1788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1788), + [anon_sym_ATimplementation] = ACTIONS(1790), + [anon_sym_NS_ENUM] = ACTIONS(1788), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1788), + [anon_sym_NS_OPTIONS] = ACTIONS(1788), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym___typeof] = ACTIONS(1788), + [anon_sym___typeof__] = ACTIONS(1788), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_nil] = ACTIONS(1788), + [sym_id] = ACTIONS(1788), + [sym_instancetype] = ACTIONS(1788), + [sym_Class] = ACTIONS(1788), + [sym_SEL] = ACTIONS(1788), + [sym_IMP] = ACTIONS(1788), + [sym_BOOL] = ACTIONS(1788), + [sym_auto] = ACTIONS(1788), + [anon_sym_ATautoreleasepool] = ACTIONS(1790), + [anon_sym_ATsynchronized] = ACTIONS(1790), + [anon_sym_ATtry] = ACTIONS(1790), + [anon_sym_ATthrow] = ACTIONS(1790), + [anon_sym_ATselector] = ACTIONS(1790), + [anon_sym_ATencode] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1788), + [sym_YES] = ACTIONS(1788), + [sym_NO] = ACTIONS(1788), + [anon_sym___builtin_available] = ACTIONS(1788), + [anon_sym_ATavailable] = ACTIONS(1790), + [anon_sym_va_arg] = ACTIONS(1788), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [904] = { + [ts_builtin_sym_end] = ACTIONS(1790), + [sym_identifier] = ACTIONS(1788), + [aux_sym_preproc_include_token1] = ACTIONS(1790), + [aux_sym_preproc_def_token1] = ACTIONS(1790), + [aux_sym_preproc_if_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_CARET] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_typedef] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym___attribute] = ACTIONS(1788), + [anon_sym___attribute__] = ACTIONS(1788), + [anon_sym___declspec] = ACTIONS(1788), + [anon_sym___cdecl] = ACTIONS(1788), + [anon_sym___clrcall] = ACTIONS(1788), + [anon_sym___stdcall] = ACTIONS(1788), + [anon_sym___fastcall] = ACTIONS(1788), + [anon_sym___thiscall] = ACTIONS(1788), + [anon_sym___vectorcall] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_auto] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_inline] = ACTIONS(1788), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_volatile] = ACTIONS(1788), + [anon_sym_restrict] = ACTIONS(1788), + [anon_sym__Atomic] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_out] = ACTIONS(1788), + [anon_sym_inout] = ACTIONS(1788), + [anon_sym_bycopy] = ACTIONS(1788), + [anon_sym_byref] = ACTIONS(1788), + [anon_sym_oneway] = ACTIONS(1788), + [anon_sym__Nullable] = ACTIONS(1788), + [anon_sym__Nonnull] = ACTIONS(1788), + [anon_sym__Nullable_result] = ACTIONS(1788), + [anon_sym__Null_unspecified] = ACTIONS(1788), + [anon_sym___autoreleasing] = ACTIONS(1788), + [anon_sym___nullable] = ACTIONS(1788), + [anon_sym___nonnull] = ACTIONS(1788), + [anon_sym___strong] = ACTIONS(1788), + [anon_sym___weak] = ACTIONS(1788), + [anon_sym___bridge] = ACTIONS(1788), + [anon_sym___bridge_transfer] = ACTIONS(1788), + [anon_sym___bridge_retained] = ACTIONS(1788), + [anon_sym___unsafe_unretained] = ACTIONS(1788), + [anon_sym___block] = ACTIONS(1788), + [anon_sym___kindof] = ACTIONS(1788), + [anon_sym___unused] = ACTIONS(1788), + [anon_sym__Complex] = ACTIONS(1788), + [anon_sym___complex] = ACTIONS(1788), + [anon_sym_IBOutlet] = ACTIONS(1788), + [anon_sym_IBInspectable] = ACTIONS(1788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1788), + [anon_sym_signed] = ACTIONS(1788), + [anon_sym_unsigned] = ACTIONS(1788), + [anon_sym_long] = ACTIONS(1788), + [anon_sym_short] = ACTIONS(1788), + [sym_primitive_type] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_goto] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_sizeof] = ACTIONS(1788), + [sym_number_literal] = ACTIONS(1790), + [anon_sym_L_SQUOTE] = ACTIONS(1790), + [anon_sym_u_SQUOTE] = ACTIONS(1790), + [anon_sym_U_SQUOTE] = ACTIONS(1790), + [anon_sym_u8_SQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_L_DQUOTE] = ACTIONS(1790), + [anon_sym_u_DQUOTE] = ACTIONS(1790), + [anon_sym_U_DQUOTE] = ACTIONS(1790), + [anon_sym_u8_DQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1790), + [anon_sym_ATimport] = ACTIONS(1790), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1788), + [anon_sym_ATcompatibility_alias] = ACTIONS(1790), + [anon_sym_ATprotocol] = ACTIONS(1790), + [anon_sym_ATclass] = ACTIONS(1790), + [anon_sym_ATinterface] = ACTIONS(1790), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1788), + [sym_method_attribute_specifier] = ACTIONS(1788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE] = ACTIONS(1788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_API_AVAILABLE] = ACTIONS(1788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_API_DEPRECATED] = ACTIONS(1788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1788), + [anon_sym___deprecated_msg] = ACTIONS(1788), + [anon_sym___deprecated_enum_msg] = ACTIONS(1788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1788), + [anon_sym_ATimplementation] = ACTIONS(1790), + [anon_sym_NS_ENUM] = ACTIONS(1788), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1788), + [anon_sym_NS_OPTIONS] = ACTIONS(1788), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym___typeof] = ACTIONS(1788), + [anon_sym___typeof__] = ACTIONS(1788), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_nil] = ACTIONS(1788), + [sym_id] = ACTIONS(1788), + [sym_instancetype] = ACTIONS(1788), + [sym_Class] = ACTIONS(1788), + [sym_SEL] = ACTIONS(1788), + [sym_IMP] = ACTIONS(1788), + [sym_BOOL] = ACTIONS(1788), + [sym_auto] = ACTIONS(1788), + [anon_sym_ATautoreleasepool] = ACTIONS(1790), + [anon_sym_ATsynchronized] = ACTIONS(1790), + [anon_sym_ATtry] = ACTIONS(1790), + [anon_sym_ATthrow] = ACTIONS(1790), + [anon_sym_ATselector] = ACTIONS(1790), + [anon_sym_ATencode] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1788), + [sym_YES] = ACTIONS(1788), + [sym_NO] = ACTIONS(1788), + [anon_sym___builtin_available] = ACTIONS(1788), + [anon_sym_ATavailable] = ACTIONS(1790), + [anon_sym_va_arg] = ACTIONS(1788), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [905] = { + [ts_builtin_sym_end] = ACTIONS(1734), + [sym_identifier] = ACTIONS(1732), + [aux_sym_preproc_include_token1] = ACTIONS(1734), + [aux_sym_preproc_def_token1] = ACTIONS(1734), + [aux_sym_preproc_if_token1] = ACTIONS(1732), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1732), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1732), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_TILDE] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_CARET] = ACTIONS(1734), + [anon_sym_AMP] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_typedef] = ACTIONS(1732), + [anon_sym_extern] = ACTIONS(1732), + [anon_sym___attribute] = ACTIONS(1732), + [anon_sym___attribute__] = ACTIONS(1732), + [anon_sym___declspec] = ACTIONS(1732), + [anon_sym___cdecl] = ACTIONS(1732), + [anon_sym___clrcall] = ACTIONS(1732), + [anon_sym___stdcall] = ACTIONS(1732), + [anon_sym___fastcall] = ACTIONS(1732), + [anon_sym___thiscall] = ACTIONS(1732), + [anon_sym___vectorcall] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1732), + [anon_sym_auto] = ACTIONS(1732), + [anon_sym_register] = ACTIONS(1732), + [anon_sym_inline] = ACTIONS(1732), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1732), + [anon_sym_volatile] = ACTIONS(1732), + [anon_sym_restrict] = ACTIONS(1732), + [anon_sym__Atomic] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_out] = ACTIONS(1732), + [anon_sym_inout] = ACTIONS(1732), + [anon_sym_bycopy] = ACTIONS(1732), + [anon_sym_byref] = ACTIONS(1732), + [anon_sym_oneway] = ACTIONS(1732), + [anon_sym__Nullable] = ACTIONS(1732), + [anon_sym__Nonnull] = ACTIONS(1732), + [anon_sym__Nullable_result] = ACTIONS(1732), + [anon_sym__Null_unspecified] = ACTIONS(1732), + [anon_sym___autoreleasing] = ACTIONS(1732), + [anon_sym___nullable] = ACTIONS(1732), + [anon_sym___nonnull] = ACTIONS(1732), + [anon_sym___strong] = ACTIONS(1732), + [anon_sym___weak] = ACTIONS(1732), + [anon_sym___bridge] = ACTIONS(1732), + [anon_sym___bridge_transfer] = ACTIONS(1732), + [anon_sym___bridge_retained] = ACTIONS(1732), + [anon_sym___unsafe_unretained] = ACTIONS(1732), + [anon_sym___block] = ACTIONS(1732), + [anon_sym___kindof] = ACTIONS(1732), + [anon_sym___unused] = ACTIONS(1732), + [anon_sym__Complex] = ACTIONS(1732), + [anon_sym___complex] = ACTIONS(1732), + [anon_sym_IBOutlet] = ACTIONS(1732), + [anon_sym_IBInspectable] = ACTIONS(1732), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1732), + [anon_sym_signed] = ACTIONS(1732), + [anon_sym_unsigned] = ACTIONS(1732), + [anon_sym_long] = ACTIONS(1732), + [anon_sym_short] = ACTIONS(1732), + [sym_primitive_type] = ACTIONS(1732), + [anon_sym_enum] = ACTIONS(1732), + [anon_sym_struct] = ACTIONS(1732), + [anon_sym_union] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1732), + [anon_sym_case] = ACTIONS(1732), + [anon_sym_default] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_do] = ACTIONS(1732), + [anon_sym_for] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_goto] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_sizeof] = ACTIONS(1732), + [sym_number_literal] = ACTIONS(1734), + [anon_sym_L_SQUOTE] = ACTIONS(1734), + [anon_sym_u_SQUOTE] = ACTIONS(1734), + [anon_sym_U_SQUOTE] = ACTIONS(1734), + [anon_sym_u8_SQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_L_DQUOTE] = ACTIONS(1734), + [anon_sym_u_DQUOTE] = ACTIONS(1734), + [anon_sym_U_DQUOTE] = ACTIONS(1734), + [anon_sym_u8_DQUOTE] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [sym_true] = ACTIONS(1732), + [sym_false] = ACTIONS(1732), + [sym_null] = ACTIONS(1732), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1734), + [anon_sym_ATimport] = ACTIONS(1734), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1732), + [anon_sym_ATcompatibility_alias] = ACTIONS(1734), + [anon_sym_ATprotocol] = ACTIONS(1734), + [anon_sym_ATclass] = ACTIONS(1734), + [anon_sym_ATinterface] = ACTIONS(1734), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1732), + [sym_method_attribute_specifier] = ACTIONS(1732), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1732), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1732), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1732), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1732), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1732), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1732), + [anon_sym_NS_AVAILABLE] = ACTIONS(1732), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1732), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1732), + [anon_sym_API_AVAILABLE] = ACTIONS(1732), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1732), + [anon_sym_API_DEPRECATED] = ACTIONS(1732), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1732), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1732), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1732), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1732), + [anon_sym___deprecated_msg] = ACTIONS(1732), + [anon_sym___deprecated_enum_msg] = ACTIONS(1732), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1732), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1732), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1732), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1732), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1732), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1732), + [anon_sym_ATimplementation] = ACTIONS(1734), + [anon_sym_NS_ENUM] = ACTIONS(1732), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1732), + [anon_sym_NS_OPTIONS] = ACTIONS(1732), + [anon_sym_typeof] = ACTIONS(1732), + [anon_sym___typeof] = ACTIONS(1732), + [anon_sym___typeof__] = ACTIONS(1732), + [sym_self] = ACTIONS(1732), + [sym_super] = ACTIONS(1732), + [sym_nil] = ACTIONS(1732), + [sym_id] = ACTIONS(1732), + [sym_instancetype] = ACTIONS(1732), + [sym_Class] = ACTIONS(1732), + [sym_SEL] = ACTIONS(1732), + [sym_IMP] = ACTIONS(1732), + [sym_BOOL] = ACTIONS(1732), + [sym_auto] = ACTIONS(1732), + [anon_sym_ATautoreleasepool] = ACTIONS(1734), + [anon_sym_ATsynchronized] = ACTIONS(1734), + [anon_sym_ATtry] = ACTIONS(1734), + [anon_sym_ATthrow] = ACTIONS(1734), + [anon_sym_ATselector] = ACTIONS(1734), + [anon_sym_ATencode] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(1732), + [sym_YES] = ACTIONS(1732), + [sym_NO] = ACTIONS(1732), + [anon_sym___builtin_available] = ACTIONS(1732), + [anon_sym_ATavailable] = ACTIONS(1734), + [anon_sym_va_arg] = ACTIONS(1732), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [906] = { + [ts_builtin_sym_end] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1994), + [aux_sym_preproc_def_token1] = ACTIONS(1994), + [aux_sym_preproc_if_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_CARET] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_typedef] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym___attribute] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1992), + [anon_sym___declspec] = ACTIONS(1992), + [anon_sym___cdecl] = ACTIONS(1992), + [anon_sym___clrcall] = ACTIONS(1992), + [anon_sym___stdcall] = ACTIONS(1992), + [anon_sym___fastcall] = ACTIONS(1992), + [anon_sym___thiscall] = ACTIONS(1992), + [anon_sym___vectorcall] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_auto] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_inline] = ACTIONS(1992), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1992), + [anon_sym_restrict] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1992), + [anon_sym_in] = ACTIONS(1992), + [anon_sym_out] = ACTIONS(1992), + [anon_sym_inout] = ACTIONS(1992), + [anon_sym_bycopy] = ACTIONS(1992), + [anon_sym_byref] = ACTIONS(1992), + [anon_sym_oneway] = ACTIONS(1992), + [anon_sym__Nullable] = ACTIONS(1992), + [anon_sym__Nonnull] = ACTIONS(1992), + [anon_sym__Nullable_result] = ACTIONS(1992), + [anon_sym__Null_unspecified] = ACTIONS(1992), + [anon_sym___autoreleasing] = ACTIONS(1992), + [anon_sym___nullable] = ACTIONS(1992), + [anon_sym___nonnull] = ACTIONS(1992), + [anon_sym___strong] = ACTIONS(1992), + [anon_sym___weak] = ACTIONS(1992), + [anon_sym___bridge] = ACTIONS(1992), + [anon_sym___bridge_transfer] = ACTIONS(1992), + [anon_sym___bridge_retained] = ACTIONS(1992), + [anon_sym___unsafe_unretained] = ACTIONS(1992), + [anon_sym___block] = ACTIONS(1992), + [anon_sym___kindof] = ACTIONS(1992), + [anon_sym___unused] = ACTIONS(1992), + [anon_sym__Complex] = ACTIONS(1992), + [anon_sym___complex] = ACTIONS(1992), + [anon_sym_IBOutlet] = ACTIONS(1992), + [anon_sym_IBInspectable] = ACTIONS(1992), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1992), + [anon_sym_signed] = ACTIONS(1992), + [anon_sym_unsigned] = ACTIONS(1992), + [anon_sym_long] = ACTIONS(1992), + [anon_sym_short] = ACTIONS(1992), + [sym_primitive_type] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_switch] = ACTIONS(1992), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1992), + [sym_number_literal] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1994), + [anon_sym_u_SQUOTE] = ACTIONS(1994), + [anon_sym_U_SQUOTE] = ACTIONS(1994), + [anon_sym_u8_SQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_L_DQUOTE] = ACTIONS(1994), + [anon_sym_u_DQUOTE] = ACTIONS(1994), + [anon_sym_U_DQUOTE] = ACTIONS(1994), + [anon_sym_u8_DQUOTE] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym_true] = ACTIONS(1992), + [sym_false] = ACTIONS(1992), + [sym_null] = ACTIONS(1992), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1994), + [anon_sym_ATimport] = ACTIONS(1994), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1992), + [anon_sym_ATcompatibility_alias] = ACTIONS(1994), + [anon_sym_ATprotocol] = ACTIONS(1994), + [anon_sym_ATclass] = ACTIONS(1994), + [anon_sym_ATinterface] = ACTIONS(1994), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1992), + [sym_method_attribute_specifier] = ACTIONS(1992), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1992), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE] = ACTIONS(1992), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_API_AVAILABLE] = ACTIONS(1992), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_API_DEPRECATED] = ACTIONS(1992), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1992), + [anon_sym___deprecated_msg] = ACTIONS(1992), + [anon_sym___deprecated_enum_msg] = ACTIONS(1992), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1992), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1992), + [anon_sym_ATimplementation] = ACTIONS(1994), + [anon_sym_NS_ENUM] = ACTIONS(1992), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1992), + [anon_sym_NS_OPTIONS] = ACTIONS(1992), + [anon_sym_typeof] = ACTIONS(1992), + [anon_sym___typeof] = ACTIONS(1992), + [anon_sym___typeof__] = ACTIONS(1992), + [sym_self] = ACTIONS(1992), + [sym_super] = ACTIONS(1992), + [sym_nil] = ACTIONS(1992), + [sym_id] = ACTIONS(1992), + [sym_instancetype] = ACTIONS(1992), + [sym_Class] = ACTIONS(1992), + [sym_SEL] = ACTIONS(1992), + [sym_IMP] = ACTIONS(1992), + [sym_BOOL] = ACTIONS(1992), + [sym_auto] = ACTIONS(1992), + [anon_sym_ATautoreleasepool] = ACTIONS(1994), + [anon_sym_ATsynchronized] = ACTIONS(1994), + [anon_sym_ATtry] = ACTIONS(1994), + [anon_sym_ATthrow] = ACTIONS(1994), + [anon_sym_ATselector] = ACTIONS(1994), + [anon_sym_ATencode] = ACTIONS(1994), + [anon_sym_AT] = ACTIONS(1992), + [sym_YES] = ACTIONS(1992), + [sym_NO] = ACTIONS(1992), + [anon_sym___builtin_available] = ACTIONS(1992), + [anon_sym_ATavailable] = ACTIONS(1994), + [anon_sym_va_arg] = ACTIONS(1992), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [907] = { + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [908] = { + [ts_builtin_sym_end] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1994), + [aux_sym_preproc_def_token1] = ACTIONS(1994), + [aux_sym_preproc_if_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_CARET] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_typedef] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym___attribute] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1992), + [anon_sym___declspec] = ACTIONS(1992), + [anon_sym___cdecl] = ACTIONS(1992), + [anon_sym___clrcall] = ACTIONS(1992), + [anon_sym___stdcall] = ACTIONS(1992), + [anon_sym___fastcall] = ACTIONS(1992), + [anon_sym___thiscall] = ACTIONS(1992), + [anon_sym___vectorcall] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_auto] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_inline] = ACTIONS(1992), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1992), + [anon_sym_restrict] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1992), + [anon_sym_in] = ACTIONS(1992), + [anon_sym_out] = ACTIONS(1992), + [anon_sym_inout] = ACTIONS(1992), + [anon_sym_bycopy] = ACTIONS(1992), + [anon_sym_byref] = ACTIONS(1992), + [anon_sym_oneway] = ACTIONS(1992), + [anon_sym__Nullable] = ACTIONS(1992), + [anon_sym__Nonnull] = ACTIONS(1992), + [anon_sym__Nullable_result] = ACTIONS(1992), + [anon_sym__Null_unspecified] = ACTIONS(1992), + [anon_sym___autoreleasing] = ACTIONS(1992), + [anon_sym___nullable] = ACTIONS(1992), + [anon_sym___nonnull] = ACTIONS(1992), + [anon_sym___strong] = ACTIONS(1992), + [anon_sym___weak] = ACTIONS(1992), + [anon_sym___bridge] = ACTIONS(1992), + [anon_sym___bridge_transfer] = ACTIONS(1992), + [anon_sym___bridge_retained] = ACTIONS(1992), + [anon_sym___unsafe_unretained] = ACTIONS(1992), + [anon_sym___block] = ACTIONS(1992), + [anon_sym___kindof] = ACTIONS(1992), + [anon_sym___unused] = ACTIONS(1992), + [anon_sym__Complex] = ACTIONS(1992), + [anon_sym___complex] = ACTIONS(1992), + [anon_sym_IBOutlet] = ACTIONS(1992), + [anon_sym_IBInspectable] = ACTIONS(1992), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1992), + [anon_sym_signed] = ACTIONS(1992), + [anon_sym_unsigned] = ACTIONS(1992), + [anon_sym_long] = ACTIONS(1992), + [anon_sym_short] = ACTIONS(1992), + [sym_primitive_type] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_switch] = ACTIONS(1992), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1992), + [sym_number_literal] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1994), + [anon_sym_u_SQUOTE] = ACTIONS(1994), + [anon_sym_U_SQUOTE] = ACTIONS(1994), + [anon_sym_u8_SQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_L_DQUOTE] = ACTIONS(1994), + [anon_sym_u_DQUOTE] = ACTIONS(1994), + [anon_sym_U_DQUOTE] = ACTIONS(1994), + [anon_sym_u8_DQUOTE] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym_true] = ACTIONS(1992), + [sym_false] = ACTIONS(1992), + [sym_null] = ACTIONS(1992), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1994), + [anon_sym_ATimport] = ACTIONS(1994), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1992), + [anon_sym_ATcompatibility_alias] = ACTIONS(1994), + [anon_sym_ATprotocol] = ACTIONS(1994), + [anon_sym_ATclass] = ACTIONS(1994), + [anon_sym_ATinterface] = ACTIONS(1994), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1992), + [sym_method_attribute_specifier] = ACTIONS(1992), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1992), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE] = ACTIONS(1992), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_API_AVAILABLE] = ACTIONS(1992), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_API_DEPRECATED] = ACTIONS(1992), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1992), + [anon_sym___deprecated_msg] = ACTIONS(1992), + [anon_sym___deprecated_enum_msg] = ACTIONS(1992), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1992), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1992), + [anon_sym_ATimplementation] = ACTIONS(1994), + [anon_sym_NS_ENUM] = ACTIONS(1992), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1992), + [anon_sym_NS_OPTIONS] = ACTIONS(1992), + [anon_sym_typeof] = ACTIONS(1992), + [anon_sym___typeof] = ACTIONS(1992), + [anon_sym___typeof__] = ACTIONS(1992), + [sym_self] = ACTIONS(1992), + [sym_super] = ACTIONS(1992), + [sym_nil] = ACTIONS(1992), + [sym_id] = ACTIONS(1992), + [sym_instancetype] = ACTIONS(1992), + [sym_Class] = ACTIONS(1992), + [sym_SEL] = ACTIONS(1992), + [sym_IMP] = ACTIONS(1992), + [sym_BOOL] = ACTIONS(1992), + [sym_auto] = ACTIONS(1992), + [anon_sym_ATautoreleasepool] = ACTIONS(1994), + [anon_sym_ATsynchronized] = ACTIONS(1994), + [anon_sym_ATtry] = ACTIONS(1994), + [anon_sym_ATthrow] = ACTIONS(1994), + [anon_sym_ATselector] = ACTIONS(1994), + [anon_sym_ATencode] = ACTIONS(1994), + [anon_sym_AT] = ACTIONS(1992), + [sym_YES] = ACTIONS(1992), + [sym_NO] = ACTIONS(1992), + [anon_sym___builtin_available] = ACTIONS(1992), + [anon_sym_ATavailable] = ACTIONS(1994), + [anon_sym_va_arg] = ACTIONS(1992), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [909] = { + [ts_builtin_sym_end] = ACTIONS(1942), + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [910] = { + [ts_builtin_sym_end] = ACTIONS(1790), + [sym_identifier] = ACTIONS(1788), + [aux_sym_preproc_include_token1] = ACTIONS(1790), + [aux_sym_preproc_def_token1] = ACTIONS(1790), + [aux_sym_preproc_if_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_CARET] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_typedef] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym___attribute] = ACTIONS(1788), + [anon_sym___attribute__] = ACTIONS(1788), + [anon_sym___declspec] = ACTIONS(1788), + [anon_sym___cdecl] = ACTIONS(1788), + [anon_sym___clrcall] = ACTIONS(1788), + [anon_sym___stdcall] = ACTIONS(1788), + [anon_sym___fastcall] = ACTIONS(1788), + [anon_sym___thiscall] = ACTIONS(1788), + [anon_sym___vectorcall] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_auto] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_inline] = ACTIONS(1788), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_volatile] = ACTIONS(1788), + [anon_sym_restrict] = ACTIONS(1788), + [anon_sym__Atomic] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_out] = ACTIONS(1788), + [anon_sym_inout] = ACTIONS(1788), + [anon_sym_bycopy] = ACTIONS(1788), + [anon_sym_byref] = ACTIONS(1788), + [anon_sym_oneway] = ACTIONS(1788), + [anon_sym__Nullable] = ACTIONS(1788), + [anon_sym__Nonnull] = ACTIONS(1788), + [anon_sym__Nullable_result] = ACTIONS(1788), + [anon_sym__Null_unspecified] = ACTIONS(1788), + [anon_sym___autoreleasing] = ACTIONS(1788), + [anon_sym___nullable] = ACTIONS(1788), + [anon_sym___nonnull] = ACTIONS(1788), + [anon_sym___strong] = ACTIONS(1788), + [anon_sym___weak] = ACTIONS(1788), + [anon_sym___bridge] = ACTIONS(1788), + [anon_sym___bridge_transfer] = ACTIONS(1788), + [anon_sym___bridge_retained] = ACTIONS(1788), + [anon_sym___unsafe_unretained] = ACTIONS(1788), + [anon_sym___block] = ACTIONS(1788), + [anon_sym___kindof] = ACTIONS(1788), + [anon_sym___unused] = ACTIONS(1788), + [anon_sym__Complex] = ACTIONS(1788), + [anon_sym___complex] = ACTIONS(1788), + [anon_sym_IBOutlet] = ACTIONS(1788), + [anon_sym_IBInspectable] = ACTIONS(1788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1788), + [anon_sym_signed] = ACTIONS(1788), + [anon_sym_unsigned] = ACTIONS(1788), + [anon_sym_long] = ACTIONS(1788), + [anon_sym_short] = ACTIONS(1788), + [sym_primitive_type] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_goto] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_sizeof] = ACTIONS(1788), + [sym_number_literal] = ACTIONS(1790), + [anon_sym_L_SQUOTE] = ACTIONS(1790), + [anon_sym_u_SQUOTE] = ACTIONS(1790), + [anon_sym_U_SQUOTE] = ACTIONS(1790), + [anon_sym_u8_SQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_L_DQUOTE] = ACTIONS(1790), + [anon_sym_u_DQUOTE] = ACTIONS(1790), + [anon_sym_U_DQUOTE] = ACTIONS(1790), + [anon_sym_u8_DQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1790), + [anon_sym_ATimport] = ACTIONS(1790), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1788), + [anon_sym_ATcompatibility_alias] = ACTIONS(1790), + [anon_sym_ATprotocol] = ACTIONS(1790), + [anon_sym_ATclass] = ACTIONS(1790), + [anon_sym_ATinterface] = ACTIONS(1790), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1788), + [sym_method_attribute_specifier] = ACTIONS(1788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE] = ACTIONS(1788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_API_AVAILABLE] = ACTIONS(1788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_API_DEPRECATED] = ACTIONS(1788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1788), + [anon_sym___deprecated_msg] = ACTIONS(1788), + [anon_sym___deprecated_enum_msg] = ACTIONS(1788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1788), + [anon_sym_ATimplementation] = ACTIONS(1790), + [anon_sym_NS_ENUM] = ACTIONS(1788), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1788), + [anon_sym_NS_OPTIONS] = ACTIONS(1788), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym___typeof] = ACTIONS(1788), + [anon_sym___typeof__] = ACTIONS(1788), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_nil] = ACTIONS(1788), + [sym_id] = ACTIONS(1788), + [sym_instancetype] = ACTIONS(1788), + [sym_Class] = ACTIONS(1788), + [sym_SEL] = ACTIONS(1788), + [sym_IMP] = ACTIONS(1788), + [sym_BOOL] = ACTIONS(1788), + [sym_auto] = ACTIONS(1788), + [anon_sym_ATautoreleasepool] = ACTIONS(1790), + [anon_sym_ATsynchronized] = ACTIONS(1790), + [anon_sym_ATtry] = ACTIONS(1790), + [anon_sym_ATthrow] = ACTIONS(1790), + [anon_sym_ATselector] = ACTIONS(1790), + [anon_sym_ATencode] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1788), + [sym_YES] = ACTIONS(1788), + [sym_NO] = ACTIONS(1788), + [anon_sym___builtin_available] = ACTIONS(1788), + [anon_sym_ATavailable] = ACTIONS(1790), + [anon_sym_va_arg] = ACTIONS(1788), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [911] = { + [ts_builtin_sym_end] = ACTIONS(1786), + [sym_identifier] = ACTIONS(1784), + [aux_sym_preproc_include_token1] = ACTIONS(1786), + [aux_sym_preproc_def_token1] = ACTIONS(1786), + [aux_sym_preproc_if_token1] = ACTIONS(1784), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1784), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1784), + [anon_sym_LPAREN2] = ACTIONS(1786), + [anon_sym_BANG] = ACTIONS(1786), + [anon_sym_TILDE] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1786), + [anon_sym_CARET] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_typedef] = ACTIONS(1784), + [anon_sym_extern] = ACTIONS(1784), + [anon_sym___attribute] = ACTIONS(1784), + [anon_sym___attribute__] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(1784), + [anon_sym___cdecl] = ACTIONS(1784), + [anon_sym___clrcall] = ACTIONS(1784), + [anon_sym___stdcall] = ACTIONS(1784), + [anon_sym___fastcall] = ACTIONS(1784), + [anon_sym___thiscall] = ACTIONS(1784), + [anon_sym___vectorcall] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_static] = ACTIONS(1784), + [anon_sym_auto] = ACTIONS(1784), + [anon_sym_register] = ACTIONS(1784), + [anon_sym_inline] = ACTIONS(1784), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1784), + [anon_sym_const] = ACTIONS(1784), + [anon_sym_volatile] = ACTIONS(1784), + [anon_sym_restrict] = ACTIONS(1784), + [anon_sym__Atomic] = ACTIONS(1784), + [anon_sym_in] = ACTIONS(1784), + [anon_sym_out] = ACTIONS(1784), + [anon_sym_inout] = ACTIONS(1784), + [anon_sym_bycopy] = ACTIONS(1784), + [anon_sym_byref] = ACTIONS(1784), + [anon_sym_oneway] = ACTIONS(1784), + [anon_sym__Nullable] = ACTIONS(1784), + [anon_sym__Nonnull] = ACTIONS(1784), + [anon_sym__Nullable_result] = ACTIONS(1784), + [anon_sym__Null_unspecified] = ACTIONS(1784), + [anon_sym___autoreleasing] = ACTIONS(1784), + [anon_sym___nullable] = ACTIONS(1784), + [anon_sym___nonnull] = ACTIONS(1784), + [anon_sym___strong] = ACTIONS(1784), + [anon_sym___weak] = ACTIONS(1784), + [anon_sym___bridge] = ACTIONS(1784), + [anon_sym___bridge_transfer] = ACTIONS(1784), + [anon_sym___bridge_retained] = ACTIONS(1784), + [anon_sym___unsafe_unretained] = ACTIONS(1784), + [anon_sym___block] = ACTIONS(1784), + [anon_sym___kindof] = ACTIONS(1784), + [anon_sym___unused] = ACTIONS(1784), + [anon_sym__Complex] = ACTIONS(1784), + [anon_sym___complex] = ACTIONS(1784), + [anon_sym_IBOutlet] = ACTIONS(1784), + [anon_sym_IBInspectable] = ACTIONS(1784), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1784), + [anon_sym_signed] = ACTIONS(1784), + [anon_sym_unsigned] = ACTIONS(1784), + [anon_sym_long] = ACTIONS(1784), + [anon_sym_short] = ACTIONS(1784), + [sym_primitive_type] = ACTIONS(1784), + [anon_sym_enum] = ACTIONS(1784), + [anon_sym_struct] = ACTIONS(1784), + [anon_sym_union] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_switch] = ACTIONS(1784), + [anon_sym_case] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_goto] = ACTIONS(1784), + [anon_sym_DASH_DASH] = ACTIONS(1786), + [anon_sym_PLUS_PLUS] = ACTIONS(1786), + [anon_sym_sizeof] = ACTIONS(1784), + [sym_number_literal] = ACTIONS(1786), + [anon_sym_L_SQUOTE] = ACTIONS(1786), + [anon_sym_u_SQUOTE] = ACTIONS(1786), + [anon_sym_U_SQUOTE] = ACTIONS(1786), + [anon_sym_u8_SQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1786), + [anon_sym_L_DQUOTE] = ACTIONS(1786), + [anon_sym_u_DQUOTE] = ACTIONS(1786), + [anon_sym_U_DQUOTE] = ACTIONS(1786), + [anon_sym_u8_DQUOTE] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym_true] = ACTIONS(1784), + [sym_false] = ACTIONS(1784), + [sym_null] = ACTIONS(1784), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1786), + [anon_sym_ATimport] = ACTIONS(1786), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1784), + [anon_sym_ATcompatibility_alias] = ACTIONS(1786), + [anon_sym_ATprotocol] = ACTIONS(1786), + [anon_sym_ATclass] = ACTIONS(1786), + [anon_sym_ATinterface] = ACTIONS(1786), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1784), + [sym_method_attribute_specifier] = ACTIONS(1784), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1784), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1784), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1784), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1784), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1784), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1784), + [anon_sym_NS_AVAILABLE] = ACTIONS(1784), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1784), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1784), + [anon_sym_API_AVAILABLE] = ACTIONS(1784), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1784), + [anon_sym_API_DEPRECATED] = ACTIONS(1784), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1784), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1784), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1784), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1784), + [anon_sym___deprecated_msg] = ACTIONS(1784), + [anon_sym___deprecated_enum_msg] = ACTIONS(1784), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1784), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1784), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1784), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1784), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1784), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1784), + [anon_sym_ATimplementation] = ACTIONS(1786), + [anon_sym_NS_ENUM] = ACTIONS(1784), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1784), + [anon_sym_NS_OPTIONS] = ACTIONS(1784), + [anon_sym_typeof] = ACTIONS(1784), + [anon_sym___typeof] = ACTIONS(1784), + [anon_sym___typeof__] = ACTIONS(1784), + [sym_self] = ACTIONS(1784), + [sym_super] = ACTIONS(1784), + [sym_nil] = ACTIONS(1784), + [sym_id] = ACTIONS(1784), + [sym_instancetype] = ACTIONS(1784), + [sym_Class] = ACTIONS(1784), + [sym_SEL] = ACTIONS(1784), + [sym_IMP] = ACTIONS(1784), + [sym_BOOL] = ACTIONS(1784), + [sym_auto] = ACTIONS(1784), + [anon_sym_ATautoreleasepool] = ACTIONS(1786), + [anon_sym_ATsynchronized] = ACTIONS(1786), + [anon_sym_ATtry] = ACTIONS(1786), + [anon_sym_ATthrow] = ACTIONS(1786), + [anon_sym_ATselector] = ACTIONS(1786), + [anon_sym_ATencode] = ACTIONS(1786), + [anon_sym_AT] = ACTIONS(1784), + [sym_YES] = ACTIONS(1784), + [sym_NO] = ACTIONS(1784), + [anon_sym___builtin_available] = ACTIONS(1784), + [anon_sym_ATavailable] = ACTIONS(1786), + [anon_sym_va_arg] = ACTIONS(1784), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [912] = { + [ts_builtin_sym_end] = ACTIONS(1782), + [sym_identifier] = ACTIONS(1780), + [aux_sym_preproc_include_token1] = ACTIONS(1782), + [aux_sym_preproc_def_token1] = ACTIONS(1782), + [aux_sym_preproc_if_token1] = ACTIONS(1780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1780), + [anon_sym_LPAREN2] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_CARET] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_typedef] = ACTIONS(1780), + [anon_sym_extern] = ACTIONS(1780), + [anon_sym___attribute] = ACTIONS(1780), + [anon_sym___attribute__] = ACTIONS(1780), + [anon_sym___declspec] = ACTIONS(1780), + [anon_sym___cdecl] = ACTIONS(1780), + [anon_sym___clrcall] = ACTIONS(1780), + [anon_sym___stdcall] = ACTIONS(1780), + [anon_sym___fastcall] = ACTIONS(1780), + [anon_sym___thiscall] = ACTIONS(1780), + [anon_sym___vectorcall] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1780), + [anon_sym_auto] = ACTIONS(1780), + [anon_sym_register] = ACTIONS(1780), + [anon_sym_inline] = ACTIONS(1780), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1780), + [anon_sym_const] = ACTIONS(1780), + [anon_sym_volatile] = ACTIONS(1780), + [anon_sym_restrict] = ACTIONS(1780), + [anon_sym__Atomic] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_out] = ACTIONS(1780), + [anon_sym_inout] = ACTIONS(1780), + [anon_sym_bycopy] = ACTIONS(1780), + [anon_sym_byref] = ACTIONS(1780), + [anon_sym_oneway] = ACTIONS(1780), + [anon_sym__Nullable] = ACTIONS(1780), + [anon_sym__Nonnull] = ACTIONS(1780), + [anon_sym__Nullable_result] = ACTIONS(1780), + [anon_sym__Null_unspecified] = ACTIONS(1780), + [anon_sym___autoreleasing] = ACTIONS(1780), + [anon_sym___nullable] = ACTIONS(1780), + [anon_sym___nonnull] = ACTIONS(1780), + [anon_sym___strong] = ACTIONS(1780), + [anon_sym___weak] = ACTIONS(1780), + [anon_sym___bridge] = ACTIONS(1780), + [anon_sym___bridge_transfer] = ACTIONS(1780), + [anon_sym___bridge_retained] = ACTIONS(1780), + [anon_sym___unsafe_unretained] = ACTIONS(1780), + [anon_sym___block] = ACTIONS(1780), + [anon_sym___kindof] = ACTIONS(1780), + [anon_sym___unused] = ACTIONS(1780), + [anon_sym__Complex] = ACTIONS(1780), + [anon_sym___complex] = ACTIONS(1780), + [anon_sym_IBOutlet] = ACTIONS(1780), + [anon_sym_IBInspectable] = ACTIONS(1780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1780), + [anon_sym_signed] = ACTIONS(1780), + [anon_sym_unsigned] = ACTIONS(1780), + [anon_sym_long] = ACTIONS(1780), + [anon_sym_short] = ACTIONS(1780), + [sym_primitive_type] = ACTIONS(1780), + [anon_sym_enum] = ACTIONS(1780), + [anon_sym_struct] = ACTIONS(1780), + [anon_sym_union] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_case] = ACTIONS(1780), + [anon_sym_default] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_goto] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1780), + [sym_number_literal] = ACTIONS(1782), + [anon_sym_L_SQUOTE] = ACTIONS(1782), + [anon_sym_u_SQUOTE] = ACTIONS(1782), + [anon_sym_U_SQUOTE] = ACTIONS(1782), + [anon_sym_u8_SQUOTE] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [anon_sym_L_DQUOTE] = ACTIONS(1782), + [anon_sym_u_DQUOTE] = ACTIONS(1782), + [anon_sym_U_DQUOTE] = ACTIONS(1782), + [anon_sym_u8_DQUOTE] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [sym_true] = ACTIONS(1780), + [sym_false] = ACTIONS(1780), + [sym_null] = ACTIONS(1780), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1782), + [anon_sym_ATimport] = ACTIONS(1782), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1780), + [anon_sym_ATcompatibility_alias] = ACTIONS(1782), + [anon_sym_ATprotocol] = ACTIONS(1782), + [anon_sym_ATclass] = ACTIONS(1782), + [anon_sym_ATinterface] = ACTIONS(1782), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1780), + [sym_method_attribute_specifier] = ACTIONS(1780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1780), + [anon_sym_NS_AVAILABLE] = ACTIONS(1780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_API_AVAILABLE] = ACTIONS(1780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1780), + [anon_sym_API_DEPRECATED] = ACTIONS(1780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1780), + [anon_sym___deprecated_msg] = ACTIONS(1780), + [anon_sym___deprecated_enum_msg] = ACTIONS(1780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1780), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1780), + [anon_sym_ATimplementation] = ACTIONS(1782), + [anon_sym_NS_ENUM] = ACTIONS(1780), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1780), + [anon_sym_NS_OPTIONS] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(1780), + [anon_sym___typeof] = ACTIONS(1780), + [anon_sym___typeof__] = ACTIONS(1780), + [sym_self] = ACTIONS(1780), + [sym_super] = ACTIONS(1780), + [sym_nil] = ACTIONS(1780), + [sym_id] = ACTIONS(1780), + [sym_instancetype] = ACTIONS(1780), + [sym_Class] = ACTIONS(1780), + [sym_SEL] = ACTIONS(1780), + [sym_IMP] = ACTIONS(1780), + [sym_BOOL] = ACTIONS(1780), + [sym_auto] = ACTIONS(1780), + [anon_sym_ATautoreleasepool] = ACTIONS(1782), + [anon_sym_ATsynchronized] = ACTIONS(1782), + [anon_sym_ATtry] = ACTIONS(1782), + [anon_sym_ATthrow] = ACTIONS(1782), + [anon_sym_ATselector] = ACTIONS(1782), + [anon_sym_ATencode] = ACTIONS(1782), + [anon_sym_AT] = ACTIONS(1780), + [sym_YES] = ACTIONS(1780), + [sym_NO] = ACTIONS(1780), + [anon_sym___builtin_available] = ACTIONS(1780), + [anon_sym_ATavailable] = ACTIONS(1782), + [anon_sym_va_arg] = ACTIONS(1780), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [913] = { + [ts_builtin_sym_end] = ACTIONS(1782), + [sym_identifier] = ACTIONS(1780), + [aux_sym_preproc_include_token1] = ACTIONS(1782), + [aux_sym_preproc_def_token1] = ACTIONS(1782), + [aux_sym_preproc_if_token1] = ACTIONS(1780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1780), + [anon_sym_LPAREN2] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_CARET] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_typedef] = ACTIONS(1780), + [anon_sym_extern] = ACTIONS(1780), + [anon_sym___attribute] = ACTIONS(1780), + [anon_sym___attribute__] = ACTIONS(1780), + [anon_sym___declspec] = ACTIONS(1780), + [anon_sym___cdecl] = ACTIONS(1780), + [anon_sym___clrcall] = ACTIONS(1780), + [anon_sym___stdcall] = ACTIONS(1780), + [anon_sym___fastcall] = ACTIONS(1780), + [anon_sym___thiscall] = ACTIONS(1780), + [anon_sym___vectorcall] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1780), + [anon_sym_auto] = ACTIONS(1780), + [anon_sym_register] = ACTIONS(1780), + [anon_sym_inline] = ACTIONS(1780), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1780), + [anon_sym_const] = ACTIONS(1780), + [anon_sym_volatile] = ACTIONS(1780), + [anon_sym_restrict] = ACTIONS(1780), + [anon_sym__Atomic] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_out] = ACTIONS(1780), + [anon_sym_inout] = ACTIONS(1780), + [anon_sym_bycopy] = ACTIONS(1780), + [anon_sym_byref] = ACTIONS(1780), + [anon_sym_oneway] = ACTIONS(1780), + [anon_sym__Nullable] = ACTIONS(1780), + [anon_sym__Nonnull] = ACTIONS(1780), + [anon_sym__Nullable_result] = ACTIONS(1780), + [anon_sym__Null_unspecified] = ACTIONS(1780), + [anon_sym___autoreleasing] = ACTIONS(1780), + [anon_sym___nullable] = ACTIONS(1780), + [anon_sym___nonnull] = ACTIONS(1780), + [anon_sym___strong] = ACTIONS(1780), + [anon_sym___weak] = ACTIONS(1780), + [anon_sym___bridge] = ACTIONS(1780), + [anon_sym___bridge_transfer] = ACTIONS(1780), + [anon_sym___bridge_retained] = ACTIONS(1780), + [anon_sym___unsafe_unretained] = ACTIONS(1780), + [anon_sym___block] = ACTIONS(1780), + [anon_sym___kindof] = ACTIONS(1780), + [anon_sym___unused] = ACTIONS(1780), + [anon_sym__Complex] = ACTIONS(1780), + [anon_sym___complex] = ACTIONS(1780), + [anon_sym_IBOutlet] = ACTIONS(1780), + [anon_sym_IBInspectable] = ACTIONS(1780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1780), + [anon_sym_signed] = ACTIONS(1780), + [anon_sym_unsigned] = ACTIONS(1780), + [anon_sym_long] = ACTIONS(1780), + [anon_sym_short] = ACTIONS(1780), + [sym_primitive_type] = ACTIONS(1780), + [anon_sym_enum] = ACTIONS(1780), + [anon_sym_struct] = ACTIONS(1780), + [anon_sym_union] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_case] = ACTIONS(1780), + [anon_sym_default] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_goto] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1780), + [sym_number_literal] = ACTIONS(1782), + [anon_sym_L_SQUOTE] = ACTIONS(1782), + [anon_sym_u_SQUOTE] = ACTIONS(1782), + [anon_sym_U_SQUOTE] = ACTIONS(1782), + [anon_sym_u8_SQUOTE] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [anon_sym_L_DQUOTE] = ACTIONS(1782), + [anon_sym_u_DQUOTE] = ACTIONS(1782), + [anon_sym_U_DQUOTE] = ACTIONS(1782), + [anon_sym_u8_DQUOTE] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [sym_true] = ACTIONS(1780), + [sym_false] = ACTIONS(1780), + [sym_null] = ACTIONS(1780), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1782), + [anon_sym_ATimport] = ACTIONS(1782), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1780), + [anon_sym_ATcompatibility_alias] = ACTIONS(1782), + [anon_sym_ATprotocol] = ACTIONS(1782), + [anon_sym_ATclass] = ACTIONS(1782), + [anon_sym_ATinterface] = ACTIONS(1782), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1780), + [sym_method_attribute_specifier] = ACTIONS(1780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1780), + [anon_sym_NS_AVAILABLE] = ACTIONS(1780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_API_AVAILABLE] = ACTIONS(1780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1780), + [anon_sym_API_DEPRECATED] = ACTIONS(1780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1780), + [anon_sym___deprecated_msg] = ACTIONS(1780), + [anon_sym___deprecated_enum_msg] = ACTIONS(1780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1780), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1780), + [anon_sym_ATimplementation] = ACTIONS(1782), + [anon_sym_NS_ENUM] = ACTIONS(1780), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1780), + [anon_sym_NS_OPTIONS] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(1780), + [anon_sym___typeof] = ACTIONS(1780), + [anon_sym___typeof__] = ACTIONS(1780), + [sym_self] = ACTIONS(1780), + [sym_super] = ACTIONS(1780), + [sym_nil] = ACTIONS(1780), + [sym_id] = ACTIONS(1780), + [sym_instancetype] = ACTIONS(1780), + [sym_Class] = ACTIONS(1780), + [sym_SEL] = ACTIONS(1780), + [sym_IMP] = ACTIONS(1780), + [sym_BOOL] = ACTIONS(1780), + [sym_auto] = ACTIONS(1780), + [anon_sym_ATautoreleasepool] = ACTIONS(1782), + [anon_sym_ATsynchronized] = ACTIONS(1782), + [anon_sym_ATtry] = ACTIONS(1782), + [anon_sym_ATthrow] = ACTIONS(1782), + [anon_sym_ATselector] = ACTIONS(1782), + [anon_sym_ATencode] = ACTIONS(1782), + [anon_sym_AT] = ACTIONS(1780), + [sym_YES] = ACTIONS(1780), + [sym_NO] = ACTIONS(1780), + [anon_sym___builtin_available] = ACTIONS(1780), + [anon_sym_ATavailable] = ACTIONS(1782), + [anon_sym_va_arg] = ACTIONS(1780), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [914] = { + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [915] = { + [ts_builtin_sym_end] = ACTIONS(2002), + [sym_identifier] = ACTIONS(2000), + [aux_sym_preproc_include_token1] = ACTIONS(2002), + [aux_sym_preproc_def_token1] = ACTIONS(2002), + [aux_sym_preproc_if_token1] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(2002), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_PLUS] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_CARET] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_typedef] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym___attribute] = ACTIONS(2000), + [anon_sym___attribute__] = ACTIONS(2000), + [anon_sym___declspec] = ACTIONS(2000), + [anon_sym___cdecl] = ACTIONS(2000), + [anon_sym___clrcall] = ACTIONS(2000), + [anon_sym___stdcall] = ACTIONS(2000), + [anon_sym___fastcall] = ACTIONS(2000), + [anon_sym___thiscall] = ACTIONS(2000), + [anon_sym___vectorcall] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_RBRACE] = ACTIONS(2002), + [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym_static] = ACTIONS(2000), + [anon_sym_auto] = ACTIONS(2000), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_inline] = ACTIONS(2000), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [anon_sym_volatile] = ACTIONS(2000), + [anon_sym_restrict] = ACTIONS(2000), + [anon_sym__Atomic] = ACTIONS(2000), + [anon_sym_in] = ACTIONS(2000), + [anon_sym_out] = ACTIONS(2000), + [anon_sym_inout] = ACTIONS(2000), + [anon_sym_bycopy] = ACTIONS(2000), + [anon_sym_byref] = ACTIONS(2000), + [anon_sym_oneway] = ACTIONS(2000), + [anon_sym__Nullable] = ACTIONS(2000), + [anon_sym__Nonnull] = ACTIONS(2000), + [anon_sym__Nullable_result] = ACTIONS(2000), + [anon_sym__Null_unspecified] = ACTIONS(2000), + [anon_sym___autoreleasing] = ACTIONS(2000), + [anon_sym___nullable] = ACTIONS(2000), + [anon_sym___nonnull] = ACTIONS(2000), + [anon_sym___strong] = ACTIONS(2000), + [anon_sym___weak] = ACTIONS(2000), + [anon_sym___bridge] = ACTIONS(2000), + [anon_sym___bridge_transfer] = ACTIONS(2000), + [anon_sym___bridge_retained] = ACTIONS(2000), + [anon_sym___unsafe_unretained] = ACTIONS(2000), + [anon_sym___block] = ACTIONS(2000), + [anon_sym___kindof] = ACTIONS(2000), + [anon_sym___unused] = ACTIONS(2000), + [anon_sym__Complex] = ACTIONS(2000), + [anon_sym___complex] = ACTIONS(2000), + [anon_sym_IBOutlet] = ACTIONS(2000), + [anon_sym_IBInspectable] = ACTIONS(2000), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2000), + [anon_sym_signed] = ACTIONS(2000), + [anon_sym_unsigned] = ACTIONS(2000), + [anon_sym_long] = ACTIONS(2000), + [anon_sym_short] = ACTIONS(2000), + [sym_primitive_type] = ACTIONS(2000), + [anon_sym_enum] = ACTIONS(2000), + [anon_sym_struct] = ACTIONS(2000), + [anon_sym_union] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_switch] = ACTIONS(2000), + [anon_sym_case] = ACTIONS(2000), + [anon_sym_default] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_goto] = ACTIONS(2000), + [anon_sym_DASH_DASH] = ACTIONS(2002), + [anon_sym_PLUS_PLUS] = ACTIONS(2002), + [anon_sym_sizeof] = ACTIONS(2000), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2002), + [anon_sym_u_SQUOTE] = ACTIONS(2002), + [anon_sym_U_SQUOTE] = ACTIONS(2002), + [anon_sym_u8_SQUOTE] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2000), + [sym_false] = ACTIONS(2000), + [sym_null] = ACTIONS(2000), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2002), + [anon_sym_ATimport] = ACTIONS(2002), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2000), + [anon_sym_ATcompatibility_alias] = ACTIONS(2002), + [anon_sym_ATprotocol] = ACTIONS(2002), + [anon_sym_ATclass] = ACTIONS(2002), + [anon_sym_ATinterface] = ACTIONS(2002), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2000), + [sym_method_attribute_specifier] = ACTIONS(2000), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2000), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2000), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2000), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2000), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2000), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2000), + [anon_sym_NS_AVAILABLE] = ACTIONS(2000), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2000), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2000), + [anon_sym_API_AVAILABLE] = ACTIONS(2000), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2000), + [anon_sym_API_DEPRECATED] = ACTIONS(2000), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2000), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2000), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2000), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2000), + [anon_sym___deprecated_msg] = ACTIONS(2000), + [anon_sym___deprecated_enum_msg] = ACTIONS(2000), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2000), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2000), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2000), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2000), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2000), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2000), + [anon_sym_ATimplementation] = ACTIONS(2002), + [anon_sym_NS_ENUM] = ACTIONS(2000), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2000), + [anon_sym_NS_OPTIONS] = ACTIONS(2000), + [anon_sym_typeof] = ACTIONS(2000), + [anon_sym___typeof] = ACTIONS(2000), + [anon_sym___typeof__] = ACTIONS(2000), + [sym_self] = ACTIONS(2000), + [sym_super] = ACTIONS(2000), + [sym_nil] = ACTIONS(2000), + [sym_id] = ACTIONS(2000), + [sym_instancetype] = ACTIONS(2000), + [sym_Class] = ACTIONS(2000), + [sym_SEL] = ACTIONS(2000), + [sym_IMP] = ACTIONS(2000), + [sym_BOOL] = ACTIONS(2000), + [sym_auto] = ACTIONS(2000), + [anon_sym_ATautoreleasepool] = ACTIONS(2002), + [anon_sym_ATsynchronized] = ACTIONS(2002), + [anon_sym_ATtry] = ACTIONS(2002), + [anon_sym_ATthrow] = ACTIONS(2002), + [anon_sym_ATselector] = ACTIONS(2002), + [anon_sym_ATencode] = ACTIONS(2002), + [anon_sym_AT] = ACTIONS(2000), + [sym_YES] = ACTIONS(2000), + [sym_NO] = ACTIONS(2000), + [anon_sym___builtin_available] = ACTIONS(2000), + [anon_sym_ATavailable] = ACTIONS(2002), + [anon_sym_va_arg] = ACTIONS(2000), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [916] = { + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [917] = { + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [918] = { + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [919] = { + [ts_builtin_sym_end] = ACTIONS(1834), + [sym_identifier] = ACTIONS(1832), + [aux_sym_preproc_include_token1] = ACTIONS(1834), + [aux_sym_preproc_def_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token1] = ACTIONS(1832), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1832), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1832), + [anon_sym_LPAREN2] = ACTIONS(1834), + [anon_sym_BANG] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1832), + [anon_sym_STAR] = ACTIONS(1834), + [anon_sym_CARET] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_typedef] = ACTIONS(1832), + [anon_sym_extern] = ACTIONS(1832), + [anon_sym___attribute] = ACTIONS(1832), + [anon_sym___attribute__] = ACTIONS(1832), + [anon_sym___declspec] = ACTIONS(1832), + [anon_sym___cdecl] = ACTIONS(1832), + [anon_sym___clrcall] = ACTIONS(1832), + [anon_sym___stdcall] = ACTIONS(1832), + [anon_sym___fastcall] = ACTIONS(1832), + [anon_sym___thiscall] = ACTIONS(1832), + [anon_sym___vectorcall] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_RBRACE] = ACTIONS(1834), + [anon_sym_LBRACK] = ACTIONS(1834), + [anon_sym_static] = ACTIONS(1832), + [anon_sym_auto] = ACTIONS(1832), + [anon_sym_register] = ACTIONS(1832), + [anon_sym_inline] = ACTIONS(1832), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1832), + [anon_sym_const] = ACTIONS(1832), + [anon_sym_volatile] = ACTIONS(1832), + [anon_sym_restrict] = ACTIONS(1832), + [anon_sym__Atomic] = ACTIONS(1832), + [anon_sym_in] = ACTIONS(1832), + [anon_sym_out] = ACTIONS(1832), + [anon_sym_inout] = ACTIONS(1832), + [anon_sym_bycopy] = ACTIONS(1832), + [anon_sym_byref] = ACTIONS(1832), + [anon_sym_oneway] = ACTIONS(1832), + [anon_sym__Nullable] = ACTIONS(1832), + [anon_sym__Nonnull] = ACTIONS(1832), + [anon_sym__Nullable_result] = ACTIONS(1832), + [anon_sym__Null_unspecified] = ACTIONS(1832), + [anon_sym___autoreleasing] = ACTIONS(1832), + [anon_sym___nullable] = ACTIONS(1832), + [anon_sym___nonnull] = ACTIONS(1832), + [anon_sym___strong] = ACTIONS(1832), + [anon_sym___weak] = ACTIONS(1832), + [anon_sym___bridge] = ACTIONS(1832), + [anon_sym___bridge_transfer] = ACTIONS(1832), + [anon_sym___bridge_retained] = ACTIONS(1832), + [anon_sym___unsafe_unretained] = ACTIONS(1832), + [anon_sym___block] = ACTIONS(1832), + [anon_sym___kindof] = ACTIONS(1832), + [anon_sym___unused] = ACTIONS(1832), + [anon_sym__Complex] = ACTIONS(1832), + [anon_sym___complex] = ACTIONS(1832), + [anon_sym_IBOutlet] = ACTIONS(1832), + [anon_sym_IBInspectable] = ACTIONS(1832), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1832), + [anon_sym_signed] = ACTIONS(1832), + [anon_sym_unsigned] = ACTIONS(1832), + [anon_sym_long] = ACTIONS(1832), + [anon_sym_short] = ACTIONS(1832), + [sym_primitive_type] = ACTIONS(1832), + [anon_sym_enum] = ACTIONS(1832), + [anon_sym_struct] = ACTIONS(1832), + [anon_sym_union] = ACTIONS(1832), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(1832), + [anon_sym_case] = ACTIONS(1832), + [anon_sym_default] = ACTIONS(1832), + [anon_sym_while] = ACTIONS(1832), + [anon_sym_do] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1832), + [anon_sym_break] = ACTIONS(1832), + [anon_sym_continue] = ACTIONS(1832), + [anon_sym_goto] = ACTIONS(1832), + [anon_sym_DASH_DASH] = ACTIONS(1834), + [anon_sym_PLUS_PLUS] = ACTIONS(1834), + [anon_sym_sizeof] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1834), + [anon_sym_u_SQUOTE] = ACTIONS(1834), + [anon_sym_U_SQUOTE] = ACTIONS(1834), + [anon_sym_u8_SQUOTE] = ACTIONS(1834), + [anon_sym_SQUOTE] = ACTIONS(1834), + [anon_sym_L_DQUOTE] = ACTIONS(1834), + [anon_sym_u_DQUOTE] = ACTIONS(1834), + [anon_sym_U_DQUOTE] = ACTIONS(1834), + [anon_sym_u8_DQUOTE] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [sym_true] = ACTIONS(1832), + [sym_false] = ACTIONS(1832), + [sym_null] = ACTIONS(1832), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1834), + [anon_sym_ATimport] = ACTIONS(1834), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1832), + [anon_sym_ATcompatibility_alias] = ACTIONS(1834), + [anon_sym_ATprotocol] = ACTIONS(1834), + [anon_sym_ATclass] = ACTIONS(1834), + [anon_sym_ATinterface] = ACTIONS(1834), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1832), + [sym_method_attribute_specifier] = ACTIONS(1832), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1832), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1832), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1832), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1832), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1832), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1832), + [anon_sym_NS_AVAILABLE] = ACTIONS(1832), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1832), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1832), + [anon_sym_API_AVAILABLE] = ACTIONS(1832), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1832), + [anon_sym_API_DEPRECATED] = ACTIONS(1832), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1832), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1832), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1832), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1832), + [anon_sym___deprecated_msg] = ACTIONS(1832), + [anon_sym___deprecated_enum_msg] = ACTIONS(1832), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1832), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1832), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1832), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1832), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1832), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1832), + [anon_sym_ATimplementation] = ACTIONS(1834), + [anon_sym_NS_ENUM] = ACTIONS(1832), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1832), + [anon_sym_NS_OPTIONS] = ACTIONS(1832), + [anon_sym_typeof] = ACTIONS(1832), + [anon_sym___typeof] = ACTIONS(1832), + [anon_sym___typeof__] = ACTIONS(1832), + [sym_self] = ACTIONS(1832), + [sym_super] = ACTIONS(1832), + [sym_nil] = ACTIONS(1832), + [sym_id] = ACTIONS(1832), + [sym_instancetype] = ACTIONS(1832), + [sym_Class] = ACTIONS(1832), + [sym_SEL] = ACTIONS(1832), + [sym_IMP] = ACTIONS(1832), + [sym_BOOL] = ACTIONS(1832), + [sym_auto] = ACTIONS(1832), + [anon_sym_ATautoreleasepool] = ACTIONS(1834), + [anon_sym_ATsynchronized] = ACTIONS(1834), + [anon_sym_ATtry] = ACTIONS(1834), + [anon_sym_ATthrow] = ACTIONS(1834), + [anon_sym_ATselector] = ACTIONS(1834), + [anon_sym_ATencode] = ACTIONS(1834), + [anon_sym_AT] = ACTIONS(1832), + [sym_YES] = ACTIONS(1832), + [sym_NO] = ACTIONS(1832), + [anon_sym___builtin_available] = ACTIONS(1832), + [anon_sym_ATavailable] = ACTIONS(1834), + [anon_sym_va_arg] = ACTIONS(1832), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [920] = { + [ts_builtin_sym_end] = ACTIONS(1954), + [sym_identifier] = ACTIONS(1952), + [aux_sym_preproc_include_token1] = ACTIONS(1954), + [aux_sym_preproc_def_token1] = ACTIONS(1954), + [aux_sym_preproc_if_token1] = ACTIONS(1952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1952), + [anon_sym_LPAREN2] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_TILDE] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_typedef] = ACTIONS(1952), + [anon_sym_extern] = ACTIONS(1952), + [anon_sym___attribute] = ACTIONS(1952), + [anon_sym___attribute__] = ACTIONS(1952), + [anon_sym___declspec] = ACTIONS(1952), + [anon_sym___cdecl] = ACTIONS(1952), + [anon_sym___clrcall] = ACTIONS(1952), + [anon_sym___stdcall] = ACTIONS(1952), + [anon_sym___fastcall] = ACTIONS(1952), + [anon_sym___thiscall] = ACTIONS(1952), + [anon_sym___vectorcall] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(1954), + [anon_sym_LBRACK] = ACTIONS(1954), + [anon_sym_static] = ACTIONS(1952), + [anon_sym_auto] = ACTIONS(1952), + [anon_sym_register] = ACTIONS(1952), + [anon_sym_inline] = ACTIONS(1952), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1952), + [anon_sym_const] = ACTIONS(1952), + [anon_sym_volatile] = ACTIONS(1952), + [anon_sym_restrict] = ACTIONS(1952), + [anon_sym__Atomic] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_out] = ACTIONS(1952), + [anon_sym_inout] = ACTIONS(1952), + [anon_sym_bycopy] = ACTIONS(1952), + [anon_sym_byref] = ACTIONS(1952), + [anon_sym_oneway] = ACTIONS(1952), + [anon_sym__Nullable] = ACTIONS(1952), + [anon_sym__Nonnull] = ACTIONS(1952), + [anon_sym__Nullable_result] = ACTIONS(1952), + [anon_sym__Null_unspecified] = ACTIONS(1952), + [anon_sym___autoreleasing] = ACTIONS(1952), + [anon_sym___nullable] = ACTIONS(1952), + [anon_sym___nonnull] = ACTIONS(1952), + [anon_sym___strong] = ACTIONS(1952), + [anon_sym___weak] = ACTIONS(1952), + [anon_sym___bridge] = ACTIONS(1952), + [anon_sym___bridge_transfer] = ACTIONS(1952), + [anon_sym___bridge_retained] = ACTIONS(1952), + [anon_sym___unsafe_unretained] = ACTIONS(1952), + [anon_sym___block] = ACTIONS(1952), + [anon_sym___kindof] = ACTIONS(1952), + [anon_sym___unused] = ACTIONS(1952), + [anon_sym__Complex] = ACTIONS(1952), + [anon_sym___complex] = ACTIONS(1952), + [anon_sym_IBOutlet] = ACTIONS(1952), + [anon_sym_IBInspectable] = ACTIONS(1952), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1952), + [anon_sym_signed] = ACTIONS(1952), + [anon_sym_unsigned] = ACTIONS(1952), + [anon_sym_long] = ACTIONS(1952), + [anon_sym_short] = ACTIONS(1952), + [sym_primitive_type] = ACTIONS(1952), + [anon_sym_enum] = ACTIONS(1952), + [anon_sym_struct] = ACTIONS(1952), + [anon_sym_union] = ACTIONS(1952), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1952), + [anon_sym_case] = ACTIONS(1952), + [anon_sym_default] = ACTIONS(1952), + [anon_sym_while] = ACTIONS(1952), + [anon_sym_do] = ACTIONS(1952), + [anon_sym_for] = ACTIONS(1952), + [anon_sym_return] = ACTIONS(1952), + [anon_sym_break] = ACTIONS(1952), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_goto] = ACTIONS(1952), + [anon_sym_DASH_DASH] = ACTIONS(1954), + [anon_sym_PLUS_PLUS] = ACTIONS(1954), + [anon_sym_sizeof] = ACTIONS(1952), + [sym_number_literal] = ACTIONS(1954), + [anon_sym_L_SQUOTE] = ACTIONS(1954), + [anon_sym_u_SQUOTE] = ACTIONS(1954), + [anon_sym_U_SQUOTE] = ACTIONS(1954), + [anon_sym_u8_SQUOTE] = ACTIONS(1954), + [anon_sym_SQUOTE] = ACTIONS(1954), + [anon_sym_L_DQUOTE] = ACTIONS(1954), + [anon_sym_u_DQUOTE] = ACTIONS(1954), + [anon_sym_U_DQUOTE] = ACTIONS(1954), + [anon_sym_u8_DQUOTE] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(1954), + [sym_true] = ACTIONS(1952), + [sym_false] = ACTIONS(1952), + [sym_null] = ACTIONS(1952), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1954), + [anon_sym_ATimport] = ACTIONS(1954), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1952), + [anon_sym_ATcompatibility_alias] = ACTIONS(1954), + [anon_sym_ATprotocol] = ACTIONS(1954), + [anon_sym_ATclass] = ACTIONS(1954), + [anon_sym_ATinterface] = ACTIONS(1954), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1952), + [sym_method_attribute_specifier] = ACTIONS(1952), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1952), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1952), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1952), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1952), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1952), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1952), + [anon_sym_NS_AVAILABLE] = ACTIONS(1952), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1952), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_API_AVAILABLE] = ACTIONS(1952), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1952), + [anon_sym_API_DEPRECATED] = ACTIONS(1952), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1952), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1952), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1952), + [anon_sym___deprecated_msg] = ACTIONS(1952), + [anon_sym___deprecated_enum_msg] = ACTIONS(1952), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1952), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1952), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1952), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1952), + [anon_sym_ATimplementation] = ACTIONS(1954), + [anon_sym_NS_ENUM] = ACTIONS(1952), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1952), + [anon_sym_NS_OPTIONS] = ACTIONS(1952), + [anon_sym_typeof] = ACTIONS(1952), + [anon_sym___typeof] = ACTIONS(1952), + [anon_sym___typeof__] = ACTIONS(1952), + [sym_self] = ACTIONS(1952), + [sym_super] = ACTIONS(1952), + [sym_nil] = ACTIONS(1952), + [sym_id] = ACTIONS(1952), + [sym_instancetype] = ACTIONS(1952), + [sym_Class] = ACTIONS(1952), + [sym_SEL] = ACTIONS(1952), + [sym_IMP] = ACTIONS(1952), + [sym_BOOL] = ACTIONS(1952), + [sym_auto] = ACTIONS(1952), + [anon_sym_ATautoreleasepool] = ACTIONS(1954), + [anon_sym_ATsynchronized] = ACTIONS(1954), + [anon_sym_ATtry] = ACTIONS(1954), + [anon_sym_ATthrow] = ACTIONS(1954), + [anon_sym_ATselector] = ACTIONS(1954), + [anon_sym_ATencode] = ACTIONS(1954), + [anon_sym_AT] = ACTIONS(1952), + [sym_YES] = ACTIONS(1952), + [sym_NO] = ACTIONS(1952), + [anon_sym___builtin_available] = ACTIONS(1952), + [anon_sym_ATavailable] = ACTIONS(1954), + [anon_sym_va_arg] = ACTIONS(1952), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [921] = { + [ts_builtin_sym_end] = ACTIONS(1942), + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [922] = { + [ts_builtin_sym_end] = ACTIONS(1942), + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [923] = { + [ts_builtin_sym_end] = ACTIONS(1942), + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [924] = { + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [925] = { + [ts_builtin_sym_end] = ACTIONS(2006), + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [926] = { + [ts_builtin_sym_end] = ACTIONS(2014), + [sym_identifier] = ACTIONS(2012), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2014), + [aux_sym_preproc_if_token1] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2012), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_PLUS] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_CARET] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_typedef] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym___attribute] = ACTIONS(2012), + [anon_sym___attribute__] = ACTIONS(2012), + [anon_sym___declspec] = ACTIONS(2012), + [anon_sym___cdecl] = ACTIONS(2012), + [anon_sym___clrcall] = ACTIONS(2012), + [anon_sym___stdcall] = ACTIONS(2012), + [anon_sym___fastcall] = ACTIONS(2012), + [anon_sym___thiscall] = ACTIONS(2012), + [anon_sym___vectorcall] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_auto] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_inline] = ACTIONS(2012), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_volatile] = ACTIONS(2012), + [anon_sym_restrict] = ACTIONS(2012), + [anon_sym__Atomic] = ACTIONS(2012), + [anon_sym_in] = ACTIONS(2012), + [anon_sym_out] = ACTIONS(2012), + [anon_sym_inout] = ACTIONS(2012), + [anon_sym_bycopy] = ACTIONS(2012), + [anon_sym_byref] = ACTIONS(2012), + [anon_sym_oneway] = ACTIONS(2012), + [anon_sym__Nullable] = ACTIONS(2012), + [anon_sym__Nonnull] = ACTIONS(2012), + [anon_sym__Nullable_result] = ACTIONS(2012), + [anon_sym__Null_unspecified] = ACTIONS(2012), + [anon_sym___autoreleasing] = ACTIONS(2012), + [anon_sym___nullable] = ACTIONS(2012), + [anon_sym___nonnull] = ACTIONS(2012), + [anon_sym___strong] = ACTIONS(2012), + [anon_sym___weak] = ACTIONS(2012), + [anon_sym___bridge] = ACTIONS(2012), + [anon_sym___bridge_transfer] = ACTIONS(2012), + [anon_sym___bridge_retained] = ACTIONS(2012), + [anon_sym___unsafe_unretained] = ACTIONS(2012), + [anon_sym___block] = ACTIONS(2012), + [anon_sym___kindof] = ACTIONS(2012), + [anon_sym___unused] = ACTIONS(2012), + [anon_sym__Complex] = ACTIONS(2012), + [anon_sym___complex] = ACTIONS(2012), + [anon_sym_IBOutlet] = ACTIONS(2012), + [anon_sym_IBInspectable] = ACTIONS(2012), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2012), + [anon_sym_signed] = ACTIONS(2012), + [anon_sym_unsigned] = ACTIONS(2012), + [anon_sym_long] = ACTIONS(2012), + [anon_sym_short] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_switch] = ACTIONS(2012), + [anon_sym_case] = ACTIONS(2012), + [anon_sym_default] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_goto] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2014), + [anon_sym_PLUS_PLUS] = ACTIONS(2014), + [anon_sym_sizeof] = ACTIONS(2012), + [sym_number_literal] = ACTIONS(2014), + [anon_sym_L_SQUOTE] = ACTIONS(2014), + [anon_sym_u_SQUOTE] = ACTIONS(2014), + [anon_sym_U_SQUOTE] = ACTIONS(2014), + [anon_sym_u8_SQUOTE] = ACTIONS(2014), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_L_DQUOTE] = ACTIONS(2014), + [anon_sym_u_DQUOTE] = ACTIONS(2014), + [anon_sym_U_DQUOTE] = ACTIONS(2014), + [anon_sym_u8_DQUOTE] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym_true] = ACTIONS(2012), + [sym_false] = ACTIONS(2012), + [sym_null] = ACTIONS(2012), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2014), + [anon_sym_ATimport] = ACTIONS(2014), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2012), + [anon_sym_ATcompatibility_alias] = ACTIONS(2014), + [anon_sym_ATprotocol] = ACTIONS(2014), + [anon_sym_ATclass] = ACTIONS(2014), + [anon_sym_ATinterface] = ACTIONS(2014), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2012), + [sym_method_attribute_specifier] = ACTIONS(2012), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2012), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2012), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2012), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_NS_AVAILABLE] = ACTIONS(2012), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2012), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_API_AVAILABLE] = ACTIONS(2012), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_API_DEPRECATED] = ACTIONS(2012), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2012), + [anon_sym___deprecated_msg] = ACTIONS(2012), + [anon_sym___deprecated_enum_msg] = ACTIONS(2012), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2012), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2012), + [anon_sym_ATimplementation] = ACTIONS(2014), + [anon_sym_NS_ENUM] = ACTIONS(2012), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2012), + [anon_sym_NS_OPTIONS] = ACTIONS(2012), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym___typeof] = ACTIONS(2012), + [anon_sym___typeof__] = ACTIONS(2012), + [sym_self] = ACTIONS(2012), + [sym_super] = ACTIONS(2012), + [sym_nil] = ACTIONS(2012), + [sym_id] = ACTIONS(2012), + [sym_instancetype] = ACTIONS(2012), + [sym_Class] = ACTIONS(2012), + [sym_SEL] = ACTIONS(2012), + [sym_IMP] = ACTIONS(2012), + [sym_BOOL] = ACTIONS(2012), + [sym_auto] = ACTIONS(2012), + [anon_sym_ATautoreleasepool] = ACTIONS(2014), + [anon_sym_ATsynchronized] = ACTIONS(2014), + [anon_sym_ATtry] = ACTIONS(2014), + [anon_sym_ATthrow] = ACTIONS(2014), + [anon_sym_ATselector] = ACTIONS(2014), + [anon_sym_ATencode] = ACTIONS(2014), + [anon_sym_AT] = ACTIONS(2012), + [sym_YES] = ACTIONS(2012), + [sym_NO] = ACTIONS(2012), + [anon_sym___builtin_available] = ACTIONS(2012), + [anon_sym_ATavailable] = ACTIONS(2014), + [anon_sym_va_arg] = ACTIONS(2012), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [927] = { + [ts_builtin_sym_end] = ACTIONS(2014), + [sym_identifier] = ACTIONS(2012), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2014), + [aux_sym_preproc_if_token1] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2012), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_PLUS] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_CARET] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_typedef] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym___attribute] = ACTIONS(2012), + [anon_sym___attribute__] = ACTIONS(2012), + [anon_sym___declspec] = ACTIONS(2012), + [anon_sym___cdecl] = ACTIONS(2012), + [anon_sym___clrcall] = ACTIONS(2012), + [anon_sym___stdcall] = ACTIONS(2012), + [anon_sym___fastcall] = ACTIONS(2012), + [anon_sym___thiscall] = ACTIONS(2012), + [anon_sym___vectorcall] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_auto] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_inline] = ACTIONS(2012), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_volatile] = ACTIONS(2012), + [anon_sym_restrict] = ACTIONS(2012), + [anon_sym__Atomic] = ACTIONS(2012), + [anon_sym_in] = ACTIONS(2012), + [anon_sym_out] = ACTIONS(2012), + [anon_sym_inout] = ACTIONS(2012), + [anon_sym_bycopy] = ACTIONS(2012), + [anon_sym_byref] = ACTIONS(2012), + [anon_sym_oneway] = ACTIONS(2012), + [anon_sym__Nullable] = ACTIONS(2012), + [anon_sym__Nonnull] = ACTIONS(2012), + [anon_sym__Nullable_result] = ACTIONS(2012), + [anon_sym__Null_unspecified] = ACTIONS(2012), + [anon_sym___autoreleasing] = ACTIONS(2012), + [anon_sym___nullable] = ACTIONS(2012), + [anon_sym___nonnull] = ACTIONS(2012), + [anon_sym___strong] = ACTIONS(2012), + [anon_sym___weak] = ACTIONS(2012), + [anon_sym___bridge] = ACTIONS(2012), + [anon_sym___bridge_transfer] = ACTIONS(2012), + [anon_sym___bridge_retained] = ACTIONS(2012), + [anon_sym___unsafe_unretained] = ACTIONS(2012), + [anon_sym___block] = ACTIONS(2012), + [anon_sym___kindof] = ACTIONS(2012), + [anon_sym___unused] = ACTIONS(2012), + [anon_sym__Complex] = ACTIONS(2012), + [anon_sym___complex] = ACTIONS(2012), + [anon_sym_IBOutlet] = ACTIONS(2012), + [anon_sym_IBInspectable] = ACTIONS(2012), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2012), + [anon_sym_signed] = ACTIONS(2012), + [anon_sym_unsigned] = ACTIONS(2012), + [anon_sym_long] = ACTIONS(2012), + [anon_sym_short] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_switch] = ACTIONS(2012), + [anon_sym_case] = ACTIONS(2012), + [anon_sym_default] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_goto] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2014), + [anon_sym_PLUS_PLUS] = ACTIONS(2014), + [anon_sym_sizeof] = ACTIONS(2012), + [sym_number_literal] = ACTIONS(2014), + [anon_sym_L_SQUOTE] = ACTIONS(2014), + [anon_sym_u_SQUOTE] = ACTIONS(2014), + [anon_sym_U_SQUOTE] = ACTIONS(2014), + [anon_sym_u8_SQUOTE] = ACTIONS(2014), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_L_DQUOTE] = ACTIONS(2014), + [anon_sym_u_DQUOTE] = ACTIONS(2014), + [anon_sym_U_DQUOTE] = ACTIONS(2014), + [anon_sym_u8_DQUOTE] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym_true] = ACTIONS(2012), + [sym_false] = ACTIONS(2012), + [sym_null] = ACTIONS(2012), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2014), + [anon_sym_ATimport] = ACTIONS(2014), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2012), + [anon_sym_ATcompatibility_alias] = ACTIONS(2014), + [anon_sym_ATprotocol] = ACTIONS(2014), + [anon_sym_ATclass] = ACTIONS(2014), + [anon_sym_ATinterface] = ACTIONS(2014), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2012), + [sym_method_attribute_specifier] = ACTIONS(2012), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2012), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2012), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2012), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_NS_AVAILABLE] = ACTIONS(2012), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2012), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_API_AVAILABLE] = ACTIONS(2012), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_API_DEPRECATED] = ACTIONS(2012), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2012), + [anon_sym___deprecated_msg] = ACTIONS(2012), + [anon_sym___deprecated_enum_msg] = ACTIONS(2012), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2012), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2012), + [anon_sym_ATimplementation] = ACTIONS(2014), + [anon_sym_NS_ENUM] = ACTIONS(2012), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2012), + [anon_sym_NS_OPTIONS] = ACTIONS(2012), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym___typeof] = ACTIONS(2012), + [anon_sym___typeof__] = ACTIONS(2012), + [sym_self] = ACTIONS(2012), + [sym_super] = ACTIONS(2012), + [sym_nil] = ACTIONS(2012), + [sym_id] = ACTIONS(2012), + [sym_instancetype] = ACTIONS(2012), + [sym_Class] = ACTIONS(2012), + [sym_SEL] = ACTIONS(2012), + [sym_IMP] = ACTIONS(2012), + [sym_BOOL] = ACTIONS(2012), + [sym_auto] = ACTIONS(2012), + [anon_sym_ATautoreleasepool] = ACTIONS(2014), + [anon_sym_ATsynchronized] = ACTIONS(2014), + [anon_sym_ATtry] = ACTIONS(2014), + [anon_sym_ATthrow] = ACTIONS(2014), + [anon_sym_ATselector] = ACTIONS(2014), + [anon_sym_ATencode] = ACTIONS(2014), + [anon_sym_AT] = ACTIONS(2012), + [sym_YES] = ACTIONS(2012), + [sym_NO] = ACTIONS(2012), + [anon_sym___builtin_available] = ACTIONS(2012), + [anon_sym_ATavailable] = ACTIONS(2014), + [anon_sym_va_arg] = ACTIONS(2012), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [928] = { + [ts_builtin_sym_end] = ACTIONS(1954), + [sym_identifier] = ACTIONS(1952), + [aux_sym_preproc_include_token1] = ACTIONS(1954), + [aux_sym_preproc_def_token1] = ACTIONS(1954), + [aux_sym_preproc_if_token1] = ACTIONS(1952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1952), + [anon_sym_LPAREN2] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_TILDE] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_typedef] = ACTIONS(1952), + [anon_sym_extern] = ACTIONS(1952), + [anon_sym___attribute] = ACTIONS(1952), + [anon_sym___attribute__] = ACTIONS(1952), + [anon_sym___declspec] = ACTIONS(1952), + [anon_sym___cdecl] = ACTIONS(1952), + [anon_sym___clrcall] = ACTIONS(1952), + [anon_sym___stdcall] = ACTIONS(1952), + [anon_sym___fastcall] = ACTIONS(1952), + [anon_sym___thiscall] = ACTIONS(1952), + [anon_sym___vectorcall] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(1954), + [anon_sym_LBRACK] = ACTIONS(1954), + [anon_sym_static] = ACTIONS(1952), + [anon_sym_auto] = ACTIONS(1952), + [anon_sym_register] = ACTIONS(1952), + [anon_sym_inline] = ACTIONS(1952), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1952), + [anon_sym_const] = ACTIONS(1952), + [anon_sym_volatile] = ACTIONS(1952), + [anon_sym_restrict] = ACTIONS(1952), + [anon_sym__Atomic] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_out] = ACTIONS(1952), + [anon_sym_inout] = ACTIONS(1952), + [anon_sym_bycopy] = ACTIONS(1952), + [anon_sym_byref] = ACTIONS(1952), + [anon_sym_oneway] = ACTIONS(1952), + [anon_sym__Nullable] = ACTIONS(1952), + [anon_sym__Nonnull] = ACTIONS(1952), + [anon_sym__Nullable_result] = ACTIONS(1952), + [anon_sym__Null_unspecified] = ACTIONS(1952), + [anon_sym___autoreleasing] = ACTIONS(1952), + [anon_sym___nullable] = ACTIONS(1952), + [anon_sym___nonnull] = ACTIONS(1952), + [anon_sym___strong] = ACTIONS(1952), + [anon_sym___weak] = ACTIONS(1952), + [anon_sym___bridge] = ACTIONS(1952), + [anon_sym___bridge_transfer] = ACTIONS(1952), + [anon_sym___bridge_retained] = ACTIONS(1952), + [anon_sym___unsafe_unretained] = ACTIONS(1952), + [anon_sym___block] = ACTIONS(1952), + [anon_sym___kindof] = ACTIONS(1952), + [anon_sym___unused] = ACTIONS(1952), + [anon_sym__Complex] = ACTIONS(1952), + [anon_sym___complex] = ACTIONS(1952), + [anon_sym_IBOutlet] = ACTIONS(1952), + [anon_sym_IBInspectable] = ACTIONS(1952), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1952), + [anon_sym_signed] = ACTIONS(1952), + [anon_sym_unsigned] = ACTIONS(1952), + [anon_sym_long] = ACTIONS(1952), + [anon_sym_short] = ACTIONS(1952), + [sym_primitive_type] = ACTIONS(1952), + [anon_sym_enum] = ACTIONS(1952), + [anon_sym_struct] = ACTIONS(1952), + [anon_sym_union] = ACTIONS(1952), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1952), + [anon_sym_case] = ACTIONS(1952), + [anon_sym_default] = ACTIONS(1952), + [anon_sym_while] = ACTIONS(1952), + [anon_sym_do] = ACTIONS(1952), + [anon_sym_for] = ACTIONS(1952), + [anon_sym_return] = ACTIONS(1952), + [anon_sym_break] = ACTIONS(1952), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_goto] = ACTIONS(1952), + [anon_sym_DASH_DASH] = ACTIONS(1954), + [anon_sym_PLUS_PLUS] = ACTIONS(1954), + [anon_sym_sizeof] = ACTIONS(1952), + [sym_number_literal] = ACTIONS(1954), + [anon_sym_L_SQUOTE] = ACTIONS(1954), + [anon_sym_u_SQUOTE] = ACTIONS(1954), + [anon_sym_U_SQUOTE] = ACTIONS(1954), + [anon_sym_u8_SQUOTE] = ACTIONS(1954), + [anon_sym_SQUOTE] = ACTIONS(1954), + [anon_sym_L_DQUOTE] = ACTIONS(1954), + [anon_sym_u_DQUOTE] = ACTIONS(1954), + [anon_sym_U_DQUOTE] = ACTIONS(1954), + [anon_sym_u8_DQUOTE] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(1954), + [sym_true] = ACTIONS(1952), + [sym_false] = ACTIONS(1952), + [sym_null] = ACTIONS(1952), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1954), + [anon_sym_ATimport] = ACTIONS(1954), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1952), + [anon_sym_ATcompatibility_alias] = ACTIONS(1954), + [anon_sym_ATprotocol] = ACTIONS(1954), + [anon_sym_ATclass] = ACTIONS(1954), + [anon_sym_ATinterface] = ACTIONS(1954), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1952), + [sym_method_attribute_specifier] = ACTIONS(1952), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1952), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1952), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1952), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1952), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1952), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1952), + [anon_sym_NS_AVAILABLE] = ACTIONS(1952), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1952), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_API_AVAILABLE] = ACTIONS(1952), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1952), + [anon_sym_API_DEPRECATED] = ACTIONS(1952), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1952), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1952), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1952), + [anon_sym___deprecated_msg] = ACTIONS(1952), + [anon_sym___deprecated_enum_msg] = ACTIONS(1952), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1952), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1952), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1952), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1952), + [anon_sym_ATimplementation] = ACTIONS(1954), + [anon_sym_NS_ENUM] = ACTIONS(1952), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1952), + [anon_sym_NS_OPTIONS] = ACTIONS(1952), + [anon_sym_typeof] = ACTIONS(1952), + [anon_sym___typeof] = ACTIONS(1952), + [anon_sym___typeof__] = ACTIONS(1952), + [sym_self] = ACTIONS(1952), + [sym_super] = ACTIONS(1952), + [sym_nil] = ACTIONS(1952), + [sym_id] = ACTIONS(1952), + [sym_instancetype] = ACTIONS(1952), + [sym_Class] = ACTIONS(1952), + [sym_SEL] = ACTIONS(1952), + [sym_IMP] = ACTIONS(1952), + [sym_BOOL] = ACTIONS(1952), + [sym_auto] = ACTIONS(1952), + [anon_sym_ATautoreleasepool] = ACTIONS(1954), + [anon_sym_ATsynchronized] = ACTIONS(1954), + [anon_sym_ATtry] = ACTIONS(1954), + [anon_sym_ATthrow] = ACTIONS(1954), + [anon_sym_ATselector] = ACTIONS(1954), + [anon_sym_ATencode] = ACTIONS(1954), + [anon_sym_AT] = ACTIONS(1952), + [sym_YES] = ACTIONS(1952), + [sym_NO] = ACTIONS(1952), + [anon_sym___builtin_available] = ACTIONS(1952), + [anon_sym_ATavailable] = ACTIONS(1954), + [anon_sym_va_arg] = ACTIONS(1952), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [929] = { + [ts_builtin_sym_end] = ACTIONS(1942), + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [930] = { + [ts_builtin_sym_end] = ACTIONS(2014), + [sym_identifier] = ACTIONS(2012), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2014), + [aux_sym_preproc_if_token1] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2012), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_PLUS] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_CARET] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_typedef] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym___attribute] = ACTIONS(2012), + [anon_sym___attribute__] = ACTIONS(2012), + [anon_sym___declspec] = ACTIONS(2012), + [anon_sym___cdecl] = ACTIONS(2012), + [anon_sym___clrcall] = ACTIONS(2012), + [anon_sym___stdcall] = ACTIONS(2012), + [anon_sym___fastcall] = ACTIONS(2012), + [anon_sym___thiscall] = ACTIONS(2012), + [anon_sym___vectorcall] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_auto] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_inline] = ACTIONS(2012), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_volatile] = ACTIONS(2012), + [anon_sym_restrict] = ACTIONS(2012), + [anon_sym__Atomic] = ACTIONS(2012), + [anon_sym_in] = ACTIONS(2012), + [anon_sym_out] = ACTIONS(2012), + [anon_sym_inout] = ACTIONS(2012), + [anon_sym_bycopy] = ACTIONS(2012), + [anon_sym_byref] = ACTIONS(2012), + [anon_sym_oneway] = ACTIONS(2012), + [anon_sym__Nullable] = ACTIONS(2012), + [anon_sym__Nonnull] = ACTIONS(2012), + [anon_sym__Nullable_result] = ACTIONS(2012), + [anon_sym__Null_unspecified] = ACTIONS(2012), + [anon_sym___autoreleasing] = ACTIONS(2012), + [anon_sym___nullable] = ACTIONS(2012), + [anon_sym___nonnull] = ACTIONS(2012), + [anon_sym___strong] = ACTIONS(2012), + [anon_sym___weak] = ACTIONS(2012), + [anon_sym___bridge] = ACTIONS(2012), + [anon_sym___bridge_transfer] = ACTIONS(2012), + [anon_sym___bridge_retained] = ACTIONS(2012), + [anon_sym___unsafe_unretained] = ACTIONS(2012), + [anon_sym___block] = ACTIONS(2012), + [anon_sym___kindof] = ACTIONS(2012), + [anon_sym___unused] = ACTIONS(2012), + [anon_sym__Complex] = ACTIONS(2012), + [anon_sym___complex] = ACTIONS(2012), + [anon_sym_IBOutlet] = ACTIONS(2012), + [anon_sym_IBInspectable] = ACTIONS(2012), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2012), + [anon_sym_signed] = ACTIONS(2012), + [anon_sym_unsigned] = ACTIONS(2012), + [anon_sym_long] = ACTIONS(2012), + [anon_sym_short] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_switch] = ACTIONS(2012), + [anon_sym_case] = ACTIONS(2012), + [anon_sym_default] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_goto] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2014), + [anon_sym_PLUS_PLUS] = ACTIONS(2014), + [anon_sym_sizeof] = ACTIONS(2012), + [sym_number_literal] = ACTIONS(2014), + [anon_sym_L_SQUOTE] = ACTIONS(2014), + [anon_sym_u_SQUOTE] = ACTIONS(2014), + [anon_sym_U_SQUOTE] = ACTIONS(2014), + [anon_sym_u8_SQUOTE] = ACTIONS(2014), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_L_DQUOTE] = ACTIONS(2014), + [anon_sym_u_DQUOTE] = ACTIONS(2014), + [anon_sym_U_DQUOTE] = ACTIONS(2014), + [anon_sym_u8_DQUOTE] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym_true] = ACTIONS(2012), + [sym_false] = ACTIONS(2012), + [sym_null] = ACTIONS(2012), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2014), + [anon_sym_ATimport] = ACTIONS(2014), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2012), + [anon_sym_ATcompatibility_alias] = ACTIONS(2014), + [anon_sym_ATprotocol] = ACTIONS(2014), + [anon_sym_ATclass] = ACTIONS(2014), + [anon_sym_ATinterface] = ACTIONS(2014), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2012), + [sym_method_attribute_specifier] = ACTIONS(2012), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2012), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2012), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2012), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_NS_AVAILABLE] = ACTIONS(2012), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2012), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_API_AVAILABLE] = ACTIONS(2012), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_API_DEPRECATED] = ACTIONS(2012), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2012), + [anon_sym___deprecated_msg] = ACTIONS(2012), + [anon_sym___deprecated_enum_msg] = ACTIONS(2012), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2012), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2012), + [anon_sym_ATimplementation] = ACTIONS(2014), + [anon_sym_NS_ENUM] = ACTIONS(2012), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2012), + [anon_sym_NS_OPTIONS] = ACTIONS(2012), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym___typeof] = ACTIONS(2012), + [anon_sym___typeof__] = ACTIONS(2012), + [sym_self] = ACTIONS(2012), + [sym_super] = ACTIONS(2012), + [sym_nil] = ACTIONS(2012), + [sym_id] = ACTIONS(2012), + [sym_instancetype] = ACTIONS(2012), + [sym_Class] = ACTIONS(2012), + [sym_SEL] = ACTIONS(2012), + [sym_IMP] = ACTIONS(2012), + [sym_BOOL] = ACTIONS(2012), + [sym_auto] = ACTIONS(2012), + [anon_sym_ATautoreleasepool] = ACTIONS(2014), + [anon_sym_ATsynchronized] = ACTIONS(2014), + [anon_sym_ATtry] = ACTIONS(2014), + [anon_sym_ATthrow] = ACTIONS(2014), + [anon_sym_ATselector] = ACTIONS(2014), + [anon_sym_ATencode] = ACTIONS(2014), + [anon_sym_AT] = ACTIONS(2012), + [sym_YES] = ACTIONS(2012), + [sym_NO] = ACTIONS(2012), + [anon_sym___builtin_available] = ACTIONS(2012), + [anon_sym_ATavailable] = ACTIONS(2014), + [anon_sym_va_arg] = ACTIONS(2012), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [931] = { + [ts_builtin_sym_end] = ACTIONS(1942), + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [932] = { + [ts_builtin_sym_end] = ACTIONS(2030), + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2030), + [aux_sym_preproc_def_token1] = ACTIONS(2030), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_auto] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_out] = ACTIONS(2028), + [anon_sym_inout] = ACTIONS(2028), + [anon_sym_bycopy] = ACTIONS(2028), + [anon_sym_byref] = ACTIONS(2028), + [anon_sym_oneway] = ACTIONS(2028), + [anon_sym__Nullable] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym__Nullable_result] = ACTIONS(2028), + [anon_sym__Null_unspecified] = ACTIONS(2028), + [anon_sym___autoreleasing] = ACTIONS(2028), + [anon_sym___nullable] = ACTIONS(2028), + [anon_sym___nonnull] = ACTIONS(2028), + [anon_sym___strong] = ACTIONS(2028), + [anon_sym___weak] = ACTIONS(2028), + [anon_sym___bridge] = ACTIONS(2028), + [anon_sym___bridge_transfer] = ACTIONS(2028), + [anon_sym___bridge_retained] = ACTIONS(2028), + [anon_sym___unsafe_unretained] = ACTIONS(2028), + [anon_sym___block] = ACTIONS(2028), + [anon_sym___kindof] = ACTIONS(2028), + [anon_sym___unused] = ACTIONS(2028), + [anon_sym__Complex] = ACTIONS(2028), + [anon_sym___complex] = ACTIONS(2028), + [anon_sym_IBOutlet] = ACTIONS(2028), + [anon_sym_IBInspectable] = ACTIONS(2028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2028), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2030), + [anon_sym_ATimport] = ACTIONS(2030), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2028), + [anon_sym_ATcompatibility_alias] = ACTIONS(2030), + [anon_sym_ATprotocol] = ACTIONS(2030), + [anon_sym_ATclass] = ACTIONS(2030), + [anon_sym_ATinterface] = ACTIONS(2030), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2028), + [sym_method_attribute_specifier] = ACTIONS(2028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE] = ACTIONS(2028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_API_AVAILABLE] = ACTIONS(2028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_API_DEPRECATED] = ACTIONS(2028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2028), + [anon_sym___deprecated_msg] = ACTIONS(2028), + [anon_sym___deprecated_enum_msg] = ACTIONS(2028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2028), + [anon_sym_ATimplementation] = ACTIONS(2030), + [anon_sym_NS_ENUM] = ACTIONS(2028), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2028), + [anon_sym_NS_OPTIONS] = ACTIONS(2028), + [anon_sym_typeof] = ACTIONS(2028), + [anon_sym___typeof] = ACTIONS(2028), + [anon_sym___typeof__] = ACTIONS(2028), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_nil] = ACTIONS(2028), + [sym_id] = ACTIONS(2028), + [sym_instancetype] = ACTIONS(2028), + [sym_Class] = ACTIONS(2028), + [sym_SEL] = ACTIONS(2028), + [sym_IMP] = ACTIONS(2028), + [sym_BOOL] = ACTIONS(2028), + [sym_auto] = ACTIONS(2028), + [anon_sym_ATautoreleasepool] = ACTIONS(2030), + [anon_sym_ATsynchronized] = ACTIONS(2030), + [anon_sym_ATtry] = ACTIONS(2030), + [anon_sym_ATthrow] = ACTIONS(2030), + [anon_sym_ATselector] = ACTIONS(2030), + [anon_sym_ATencode] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2028), + [sym_YES] = ACTIONS(2028), + [sym_NO] = ACTIONS(2028), + [anon_sym___builtin_available] = ACTIONS(2028), + [anon_sym_ATavailable] = ACTIONS(2030), + [anon_sym_va_arg] = ACTIONS(2028), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [933] = { + [ts_builtin_sym_end] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1776), + [aux_sym_preproc_include_token1] = ACTIONS(1778), + [aux_sym_preproc_def_token1] = ACTIONS(1778), + [aux_sym_preproc_if_token1] = ACTIONS(1776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1776), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1776), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_typedef] = ACTIONS(1776), + [anon_sym_extern] = ACTIONS(1776), + [anon_sym___attribute] = ACTIONS(1776), + [anon_sym___attribute__] = ACTIONS(1776), + [anon_sym___declspec] = ACTIONS(1776), + [anon_sym___cdecl] = ACTIONS(1776), + [anon_sym___clrcall] = ACTIONS(1776), + [anon_sym___stdcall] = ACTIONS(1776), + [anon_sym___fastcall] = ACTIONS(1776), + [anon_sym___thiscall] = ACTIONS(1776), + [anon_sym___vectorcall] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_static] = ACTIONS(1776), + [anon_sym_auto] = ACTIONS(1776), + [anon_sym_register] = ACTIONS(1776), + [anon_sym_inline] = ACTIONS(1776), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1776), + [anon_sym_volatile] = ACTIONS(1776), + [anon_sym_restrict] = ACTIONS(1776), + [anon_sym__Atomic] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1776), + [anon_sym_out] = ACTIONS(1776), + [anon_sym_inout] = ACTIONS(1776), + [anon_sym_bycopy] = ACTIONS(1776), + [anon_sym_byref] = ACTIONS(1776), + [anon_sym_oneway] = ACTIONS(1776), + [anon_sym__Nullable] = ACTIONS(1776), + [anon_sym__Nonnull] = ACTIONS(1776), + [anon_sym__Nullable_result] = ACTIONS(1776), + [anon_sym__Null_unspecified] = ACTIONS(1776), + [anon_sym___autoreleasing] = ACTIONS(1776), + [anon_sym___nullable] = ACTIONS(1776), + [anon_sym___nonnull] = ACTIONS(1776), + [anon_sym___strong] = ACTIONS(1776), + [anon_sym___weak] = ACTIONS(1776), + [anon_sym___bridge] = ACTIONS(1776), + [anon_sym___bridge_transfer] = ACTIONS(1776), + [anon_sym___bridge_retained] = ACTIONS(1776), + [anon_sym___unsafe_unretained] = ACTIONS(1776), + [anon_sym___block] = ACTIONS(1776), + [anon_sym___kindof] = ACTIONS(1776), + [anon_sym___unused] = ACTIONS(1776), + [anon_sym__Complex] = ACTIONS(1776), + [anon_sym___complex] = ACTIONS(1776), + [anon_sym_IBOutlet] = ACTIONS(1776), + [anon_sym_IBInspectable] = ACTIONS(1776), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1776), + [anon_sym_signed] = ACTIONS(1776), + [anon_sym_unsigned] = ACTIONS(1776), + [anon_sym_long] = ACTIONS(1776), + [anon_sym_short] = ACTIONS(1776), + [sym_primitive_type] = ACTIONS(1776), + [anon_sym_enum] = ACTIONS(1776), + [anon_sym_struct] = ACTIONS(1776), + [anon_sym_union] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1776), + [anon_sym_switch] = ACTIONS(1776), + [anon_sym_case] = ACTIONS(1776), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1776), + [anon_sym_do] = ACTIONS(1776), + [anon_sym_for] = ACTIONS(1776), + [anon_sym_return] = ACTIONS(1776), + [anon_sym_break] = ACTIONS(1776), + [anon_sym_continue] = ACTIONS(1776), + [anon_sym_goto] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_sizeof] = ACTIONS(1776), + [sym_number_literal] = ACTIONS(1778), + [anon_sym_L_SQUOTE] = ACTIONS(1778), + [anon_sym_u_SQUOTE] = ACTIONS(1778), + [anon_sym_U_SQUOTE] = ACTIONS(1778), + [anon_sym_u8_SQUOTE] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(1778), + [anon_sym_L_DQUOTE] = ACTIONS(1778), + [anon_sym_u_DQUOTE] = ACTIONS(1778), + [anon_sym_U_DQUOTE] = ACTIONS(1778), + [anon_sym_u8_DQUOTE] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(1778), + [sym_true] = ACTIONS(1776), + [sym_false] = ACTIONS(1776), + [sym_null] = ACTIONS(1776), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1778), + [anon_sym_ATimport] = ACTIONS(1778), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1776), + [anon_sym_ATcompatibility_alias] = ACTIONS(1778), + [anon_sym_ATprotocol] = ACTIONS(1778), + [anon_sym_ATclass] = ACTIONS(1778), + [anon_sym_ATinterface] = ACTIONS(1778), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1776), + [sym_method_attribute_specifier] = ACTIONS(1776), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1776), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1776), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1776), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1776), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1776), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1776), + [anon_sym_NS_AVAILABLE] = ACTIONS(1776), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1776), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1776), + [anon_sym_API_AVAILABLE] = ACTIONS(1776), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1776), + [anon_sym_API_DEPRECATED] = ACTIONS(1776), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1776), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1776), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1776), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1776), + [anon_sym___deprecated_msg] = ACTIONS(1776), + [anon_sym___deprecated_enum_msg] = ACTIONS(1776), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1776), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1776), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1776), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1776), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1776), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1776), + [anon_sym_ATimplementation] = ACTIONS(1778), + [anon_sym_NS_ENUM] = ACTIONS(1776), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1776), + [anon_sym_NS_OPTIONS] = ACTIONS(1776), + [anon_sym_typeof] = ACTIONS(1776), + [anon_sym___typeof] = ACTIONS(1776), + [anon_sym___typeof__] = ACTIONS(1776), + [sym_self] = ACTIONS(1776), + [sym_super] = ACTIONS(1776), + [sym_nil] = ACTIONS(1776), + [sym_id] = ACTIONS(1776), + [sym_instancetype] = ACTIONS(1776), + [sym_Class] = ACTIONS(1776), + [sym_SEL] = ACTIONS(1776), + [sym_IMP] = ACTIONS(1776), + [sym_BOOL] = ACTIONS(1776), + [sym_auto] = ACTIONS(1776), + [anon_sym_ATautoreleasepool] = ACTIONS(1778), + [anon_sym_ATsynchronized] = ACTIONS(1778), + [anon_sym_ATtry] = ACTIONS(1778), + [anon_sym_ATthrow] = ACTIONS(1778), + [anon_sym_ATselector] = ACTIONS(1778), + [anon_sym_ATencode] = ACTIONS(1778), + [anon_sym_AT] = ACTIONS(1776), + [sym_YES] = ACTIONS(1776), + [sym_NO] = ACTIONS(1776), + [anon_sym___builtin_available] = ACTIONS(1776), + [anon_sym_ATavailable] = ACTIONS(1778), + [anon_sym_va_arg] = ACTIONS(1776), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [934] = { + [ts_builtin_sym_end] = ACTIONS(2006), + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [935] = { + [ts_builtin_sym_end] = ACTIONS(1942), + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [936] = { + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [937] = { + [ts_builtin_sym_end] = ACTIONS(2006), + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [938] = { + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [939] = { + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [940] = { + [ts_builtin_sym_end] = ACTIONS(1946), + [sym_identifier] = ACTIONS(1944), + [aux_sym_preproc_include_token1] = ACTIONS(1946), + [aux_sym_preproc_def_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token1] = ACTIONS(1944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1944), + [anon_sym_LPAREN2] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_TILDE] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1944), + [anon_sym_PLUS] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(1946), + [anon_sym_CARET] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_typedef] = ACTIONS(1944), + [anon_sym_extern] = ACTIONS(1944), + [anon_sym___attribute] = ACTIONS(1944), + [anon_sym___attribute__] = ACTIONS(1944), + [anon_sym___declspec] = ACTIONS(1944), + [anon_sym___cdecl] = ACTIONS(1944), + [anon_sym___clrcall] = ACTIONS(1944), + [anon_sym___stdcall] = ACTIONS(1944), + [anon_sym___fastcall] = ACTIONS(1944), + [anon_sym___thiscall] = ACTIONS(1944), + [anon_sym___vectorcall] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1944), + [anon_sym_auto] = ACTIONS(1944), + [anon_sym_register] = ACTIONS(1944), + [anon_sym_inline] = ACTIONS(1944), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1944), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_volatile] = ACTIONS(1944), + [anon_sym_restrict] = ACTIONS(1944), + [anon_sym__Atomic] = ACTIONS(1944), + [anon_sym_in] = ACTIONS(1944), + [anon_sym_out] = ACTIONS(1944), + [anon_sym_inout] = ACTIONS(1944), + [anon_sym_bycopy] = ACTIONS(1944), + [anon_sym_byref] = ACTIONS(1944), + [anon_sym_oneway] = ACTIONS(1944), + [anon_sym__Nullable] = ACTIONS(1944), + [anon_sym__Nonnull] = ACTIONS(1944), + [anon_sym__Nullable_result] = ACTIONS(1944), + [anon_sym__Null_unspecified] = ACTIONS(1944), + [anon_sym___autoreleasing] = ACTIONS(1944), + [anon_sym___nullable] = ACTIONS(1944), + [anon_sym___nonnull] = ACTIONS(1944), + [anon_sym___strong] = ACTIONS(1944), + [anon_sym___weak] = ACTIONS(1944), + [anon_sym___bridge] = ACTIONS(1944), + [anon_sym___bridge_transfer] = ACTIONS(1944), + [anon_sym___bridge_retained] = ACTIONS(1944), + [anon_sym___unsafe_unretained] = ACTIONS(1944), + [anon_sym___block] = ACTIONS(1944), + [anon_sym___kindof] = ACTIONS(1944), + [anon_sym___unused] = ACTIONS(1944), + [anon_sym__Complex] = ACTIONS(1944), + [anon_sym___complex] = ACTIONS(1944), + [anon_sym_IBOutlet] = ACTIONS(1944), + [anon_sym_IBInspectable] = ACTIONS(1944), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1944), + [anon_sym_signed] = ACTIONS(1944), + [anon_sym_unsigned] = ACTIONS(1944), + [anon_sym_long] = ACTIONS(1944), + [anon_sym_short] = ACTIONS(1944), + [sym_primitive_type] = ACTIONS(1944), + [anon_sym_enum] = ACTIONS(1944), + [anon_sym_struct] = ACTIONS(1944), + [anon_sym_union] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_switch] = ACTIONS(1944), + [anon_sym_case] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_goto] = ACTIONS(1944), + [anon_sym_DASH_DASH] = ACTIONS(1946), + [anon_sym_PLUS_PLUS] = ACTIONS(1946), + [anon_sym_sizeof] = ACTIONS(1944), + [sym_number_literal] = ACTIONS(1946), + [anon_sym_L_SQUOTE] = ACTIONS(1946), + [anon_sym_u_SQUOTE] = ACTIONS(1946), + [anon_sym_U_SQUOTE] = ACTIONS(1946), + [anon_sym_u8_SQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1946), + [anon_sym_L_DQUOTE] = ACTIONS(1946), + [anon_sym_u_DQUOTE] = ACTIONS(1946), + [anon_sym_U_DQUOTE] = ACTIONS(1946), + [anon_sym_u8_DQUOTE] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1946), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [sym_null] = ACTIONS(1944), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1946), + [anon_sym_ATimport] = ACTIONS(1946), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1944), + [anon_sym_ATcompatibility_alias] = ACTIONS(1946), + [anon_sym_ATprotocol] = ACTIONS(1946), + [anon_sym_ATclass] = ACTIONS(1946), + [anon_sym_ATinterface] = ACTIONS(1946), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1944), + [sym_method_attribute_specifier] = ACTIONS(1944), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1944), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1944), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1944), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1944), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1944), + [anon_sym_NS_AVAILABLE] = ACTIONS(1944), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1944), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_API_AVAILABLE] = ACTIONS(1944), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_API_DEPRECATED] = ACTIONS(1944), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1944), + [anon_sym___deprecated_msg] = ACTIONS(1944), + [anon_sym___deprecated_enum_msg] = ACTIONS(1944), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1944), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1944), + [anon_sym_ATimplementation] = ACTIONS(1946), + [anon_sym_NS_ENUM] = ACTIONS(1944), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1944), + [anon_sym_NS_OPTIONS] = ACTIONS(1944), + [anon_sym_typeof] = ACTIONS(1944), + [anon_sym___typeof] = ACTIONS(1944), + [anon_sym___typeof__] = ACTIONS(1944), + [sym_self] = ACTIONS(1944), + [sym_super] = ACTIONS(1944), + [sym_nil] = ACTIONS(1944), + [sym_id] = ACTIONS(1944), + [sym_instancetype] = ACTIONS(1944), + [sym_Class] = ACTIONS(1944), + [sym_SEL] = ACTIONS(1944), + [sym_IMP] = ACTIONS(1944), + [sym_BOOL] = ACTIONS(1944), + [sym_auto] = ACTIONS(1944), + [anon_sym_ATautoreleasepool] = ACTIONS(1946), + [anon_sym_ATsynchronized] = ACTIONS(1946), + [anon_sym_ATtry] = ACTIONS(1946), + [anon_sym_ATthrow] = ACTIONS(1946), + [anon_sym_ATselector] = ACTIONS(1946), + [anon_sym_ATencode] = ACTIONS(1946), + [anon_sym_AT] = ACTIONS(1944), + [sym_YES] = ACTIONS(1944), + [sym_NO] = ACTIONS(1944), + [anon_sym___builtin_available] = ACTIONS(1944), + [anon_sym_ATavailable] = ACTIONS(1946), + [anon_sym_va_arg] = ACTIONS(1944), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [941] = { + [ts_builtin_sym_end] = ACTIONS(2006), + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [942] = { + [ts_builtin_sym_end] = ACTIONS(1946), + [sym_identifier] = ACTIONS(1944), + [aux_sym_preproc_include_token1] = ACTIONS(1946), + [aux_sym_preproc_def_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token1] = ACTIONS(1944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1944), + [anon_sym_LPAREN2] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_TILDE] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1944), + [anon_sym_PLUS] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(1946), + [anon_sym_CARET] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_typedef] = ACTIONS(1944), + [anon_sym_extern] = ACTIONS(1944), + [anon_sym___attribute] = ACTIONS(1944), + [anon_sym___attribute__] = ACTIONS(1944), + [anon_sym___declspec] = ACTIONS(1944), + [anon_sym___cdecl] = ACTIONS(1944), + [anon_sym___clrcall] = ACTIONS(1944), + [anon_sym___stdcall] = ACTIONS(1944), + [anon_sym___fastcall] = ACTIONS(1944), + [anon_sym___thiscall] = ACTIONS(1944), + [anon_sym___vectorcall] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1944), + [anon_sym_auto] = ACTIONS(1944), + [anon_sym_register] = ACTIONS(1944), + [anon_sym_inline] = ACTIONS(1944), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1944), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_volatile] = ACTIONS(1944), + [anon_sym_restrict] = ACTIONS(1944), + [anon_sym__Atomic] = ACTIONS(1944), + [anon_sym_in] = ACTIONS(1944), + [anon_sym_out] = ACTIONS(1944), + [anon_sym_inout] = ACTIONS(1944), + [anon_sym_bycopy] = ACTIONS(1944), + [anon_sym_byref] = ACTIONS(1944), + [anon_sym_oneway] = ACTIONS(1944), + [anon_sym__Nullable] = ACTIONS(1944), + [anon_sym__Nonnull] = ACTIONS(1944), + [anon_sym__Nullable_result] = ACTIONS(1944), + [anon_sym__Null_unspecified] = ACTIONS(1944), + [anon_sym___autoreleasing] = ACTIONS(1944), + [anon_sym___nullable] = ACTIONS(1944), + [anon_sym___nonnull] = ACTIONS(1944), + [anon_sym___strong] = ACTIONS(1944), + [anon_sym___weak] = ACTIONS(1944), + [anon_sym___bridge] = ACTIONS(1944), + [anon_sym___bridge_transfer] = ACTIONS(1944), + [anon_sym___bridge_retained] = ACTIONS(1944), + [anon_sym___unsafe_unretained] = ACTIONS(1944), + [anon_sym___block] = ACTIONS(1944), + [anon_sym___kindof] = ACTIONS(1944), + [anon_sym___unused] = ACTIONS(1944), + [anon_sym__Complex] = ACTIONS(1944), + [anon_sym___complex] = ACTIONS(1944), + [anon_sym_IBOutlet] = ACTIONS(1944), + [anon_sym_IBInspectable] = ACTIONS(1944), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1944), + [anon_sym_signed] = ACTIONS(1944), + [anon_sym_unsigned] = ACTIONS(1944), + [anon_sym_long] = ACTIONS(1944), + [anon_sym_short] = ACTIONS(1944), + [sym_primitive_type] = ACTIONS(1944), + [anon_sym_enum] = ACTIONS(1944), + [anon_sym_struct] = ACTIONS(1944), + [anon_sym_union] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_switch] = ACTIONS(1944), + [anon_sym_case] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_goto] = ACTIONS(1944), + [anon_sym_DASH_DASH] = ACTIONS(1946), + [anon_sym_PLUS_PLUS] = ACTIONS(1946), + [anon_sym_sizeof] = ACTIONS(1944), + [sym_number_literal] = ACTIONS(1946), + [anon_sym_L_SQUOTE] = ACTIONS(1946), + [anon_sym_u_SQUOTE] = ACTIONS(1946), + [anon_sym_U_SQUOTE] = ACTIONS(1946), + [anon_sym_u8_SQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1946), + [anon_sym_L_DQUOTE] = ACTIONS(1946), + [anon_sym_u_DQUOTE] = ACTIONS(1946), + [anon_sym_U_DQUOTE] = ACTIONS(1946), + [anon_sym_u8_DQUOTE] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1946), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [sym_null] = ACTIONS(1944), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1946), + [anon_sym_ATimport] = ACTIONS(1946), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1944), + [anon_sym_ATcompatibility_alias] = ACTIONS(1946), + [anon_sym_ATprotocol] = ACTIONS(1946), + [anon_sym_ATclass] = ACTIONS(1946), + [anon_sym_ATinterface] = ACTIONS(1946), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1944), + [sym_method_attribute_specifier] = ACTIONS(1944), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1944), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1944), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1944), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1944), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1944), + [anon_sym_NS_AVAILABLE] = ACTIONS(1944), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1944), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_API_AVAILABLE] = ACTIONS(1944), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_API_DEPRECATED] = ACTIONS(1944), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1944), + [anon_sym___deprecated_msg] = ACTIONS(1944), + [anon_sym___deprecated_enum_msg] = ACTIONS(1944), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1944), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1944), + [anon_sym_ATimplementation] = ACTIONS(1946), + [anon_sym_NS_ENUM] = ACTIONS(1944), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1944), + [anon_sym_NS_OPTIONS] = ACTIONS(1944), + [anon_sym_typeof] = ACTIONS(1944), + [anon_sym___typeof] = ACTIONS(1944), + [anon_sym___typeof__] = ACTIONS(1944), + [sym_self] = ACTIONS(1944), + [sym_super] = ACTIONS(1944), + [sym_nil] = ACTIONS(1944), + [sym_id] = ACTIONS(1944), + [sym_instancetype] = ACTIONS(1944), + [sym_Class] = ACTIONS(1944), + [sym_SEL] = ACTIONS(1944), + [sym_IMP] = ACTIONS(1944), + [sym_BOOL] = ACTIONS(1944), + [sym_auto] = ACTIONS(1944), + [anon_sym_ATautoreleasepool] = ACTIONS(1946), + [anon_sym_ATsynchronized] = ACTIONS(1946), + [anon_sym_ATtry] = ACTIONS(1946), + [anon_sym_ATthrow] = ACTIONS(1946), + [anon_sym_ATselector] = ACTIONS(1946), + [anon_sym_ATencode] = ACTIONS(1946), + [anon_sym_AT] = ACTIONS(1944), + [sym_YES] = ACTIONS(1944), + [sym_NO] = ACTIONS(1944), + [anon_sym___builtin_available] = ACTIONS(1944), + [anon_sym_ATavailable] = ACTIONS(1946), + [anon_sym_va_arg] = ACTIONS(1944), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [943] = { + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2034), + [aux_sym_preproc_def_token1] = ACTIONS(2034), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_auto] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_out] = ACTIONS(2032), + [anon_sym_inout] = ACTIONS(2032), + [anon_sym_bycopy] = ACTIONS(2032), + [anon_sym_byref] = ACTIONS(2032), + [anon_sym_oneway] = ACTIONS(2032), + [anon_sym__Nullable] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym__Nullable_result] = ACTIONS(2032), + [anon_sym__Null_unspecified] = ACTIONS(2032), + [anon_sym___autoreleasing] = ACTIONS(2032), + [anon_sym___nullable] = ACTIONS(2032), + [anon_sym___nonnull] = ACTIONS(2032), + [anon_sym___strong] = ACTIONS(2032), + [anon_sym___weak] = ACTIONS(2032), + [anon_sym___bridge] = ACTIONS(2032), + [anon_sym___bridge_transfer] = ACTIONS(2032), + [anon_sym___bridge_retained] = ACTIONS(2032), + [anon_sym___unsafe_unretained] = ACTIONS(2032), + [anon_sym___block] = ACTIONS(2032), + [anon_sym___kindof] = ACTIONS(2032), + [anon_sym___unused] = ACTIONS(2032), + [anon_sym__Complex] = ACTIONS(2032), + [anon_sym___complex] = ACTIONS(2032), + [anon_sym_IBOutlet] = ACTIONS(2032), + [anon_sym_IBInspectable] = ACTIONS(2032), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2032), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [sym_null] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2034), + [anon_sym_ATimport] = ACTIONS(2034), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2032), + [anon_sym_ATcompatibility_alias] = ACTIONS(2034), + [anon_sym_ATprotocol] = ACTIONS(2034), + [anon_sym_ATclass] = ACTIONS(2034), + [anon_sym_ATinterface] = ACTIONS(2034), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2032), + [sym_method_attribute_specifier] = ACTIONS(2032), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2032), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE] = ACTIONS(2032), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_API_AVAILABLE] = ACTIONS(2032), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_API_DEPRECATED] = ACTIONS(2032), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2032), + [anon_sym___deprecated_msg] = ACTIONS(2032), + [anon_sym___deprecated_enum_msg] = ACTIONS(2032), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2032), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2032), + [anon_sym_ATimplementation] = ACTIONS(2034), + [anon_sym_NS_ENUM] = ACTIONS(2032), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2032), + [anon_sym_NS_OPTIONS] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(2032), + [anon_sym___typeof] = ACTIONS(2032), + [anon_sym___typeof__] = ACTIONS(2032), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_nil] = ACTIONS(2032), + [sym_id] = ACTIONS(2032), + [sym_instancetype] = ACTIONS(2032), + [sym_Class] = ACTIONS(2032), + [sym_SEL] = ACTIONS(2032), + [sym_IMP] = ACTIONS(2032), + [sym_BOOL] = ACTIONS(2032), + [sym_auto] = ACTIONS(2032), + [anon_sym_ATautoreleasepool] = ACTIONS(2034), + [anon_sym_ATsynchronized] = ACTIONS(2034), + [anon_sym_ATtry] = ACTIONS(2034), + [anon_sym_ATthrow] = ACTIONS(2034), + [anon_sym_ATselector] = ACTIONS(2034), + [anon_sym_ATencode] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2032), + [sym_YES] = ACTIONS(2032), + [sym_NO] = ACTIONS(2032), + [anon_sym___builtin_available] = ACTIONS(2032), + [anon_sym_ATavailable] = ACTIONS(2034), + [anon_sym_va_arg] = ACTIONS(2032), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [944] = { + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2034), + [aux_sym_preproc_def_token1] = ACTIONS(2034), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_auto] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_out] = ACTIONS(2032), + [anon_sym_inout] = ACTIONS(2032), + [anon_sym_bycopy] = ACTIONS(2032), + [anon_sym_byref] = ACTIONS(2032), + [anon_sym_oneway] = ACTIONS(2032), + [anon_sym__Nullable] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym__Nullable_result] = ACTIONS(2032), + [anon_sym__Null_unspecified] = ACTIONS(2032), + [anon_sym___autoreleasing] = ACTIONS(2032), + [anon_sym___nullable] = ACTIONS(2032), + [anon_sym___nonnull] = ACTIONS(2032), + [anon_sym___strong] = ACTIONS(2032), + [anon_sym___weak] = ACTIONS(2032), + [anon_sym___bridge] = ACTIONS(2032), + [anon_sym___bridge_transfer] = ACTIONS(2032), + [anon_sym___bridge_retained] = ACTIONS(2032), + [anon_sym___unsafe_unretained] = ACTIONS(2032), + [anon_sym___block] = ACTIONS(2032), + [anon_sym___kindof] = ACTIONS(2032), + [anon_sym___unused] = ACTIONS(2032), + [anon_sym__Complex] = ACTIONS(2032), + [anon_sym___complex] = ACTIONS(2032), + [anon_sym_IBOutlet] = ACTIONS(2032), + [anon_sym_IBInspectable] = ACTIONS(2032), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2032), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [sym_null] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2034), + [anon_sym_ATimport] = ACTIONS(2034), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2032), + [anon_sym_ATcompatibility_alias] = ACTIONS(2034), + [anon_sym_ATprotocol] = ACTIONS(2034), + [anon_sym_ATclass] = ACTIONS(2034), + [anon_sym_ATinterface] = ACTIONS(2034), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2032), + [sym_method_attribute_specifier] = ACTIONS(2032), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2032), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE] = ACTIONS(2032), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_API_AVAILABLE] = ACTIONS(2032), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_API_DEPRECATED] = ACTIONS(2032), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2032), + [anon_sym___deprecated_msg] = ACTIONS(2032), + [anon_sym___deprecated_enum_msg] = ACTIONS(2032), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2032), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2032), + [anon_sym_ATimplementation] = ACTIONS(2034), + [anon_sym_NS_ENUM] = ACTIONS(2032), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2032), + [anon_sym_NS_OPTIONS] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(2032), + [anon_sym___typeof] = ACTIONS(2032), + [anon_sym___typeof__] = ACTIONS(2032), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_nil] = ACTIONS(2032), + [sym_id] = ACTIONS(2032), + [sym_instancetype] = ACTIONS(2032), + [sym_Class] = ACTIONS(2032), + [sym_SEL] = ACTIONS(2032), + [sym_IMP] = ACTIONS(2032), + [sym_BOOL] = ACTIONS(2032), + [sym_auto] = ACTIONS(2032), + [anon_sym_ATautoreleasepool] = ACTIONS(2034), + [anon_sym_ATsynchronized] = ACTIONS(2034), + [anon_sym_ATtry] = ACTIONS(2034), + [anon_sym_ATthrow] = ACTIONS(2034), + [anon_sym_ATselector] = ACTIONS(2034), + [anon_sym_ATencode] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2032), + [sym_YES] = ACTIONS(2032), + [sym_NO] = ACTIONS(2032), + [anon_sym___builtin_available] = ACTIONS(2032), + [anon_sym_ATavailable] = ACTIONS(2034), + [anon_sym_va_arg] = ACTIONS(2032), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [945] = { + [ts_builtin_sym_end] = ACTIONS(1946), + [sym_identifier] = ACTIONS(1944), + [aux_sym_preproc_include_token1] = ACTIONS(1946), + [aux_sym_preproc_def_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token1] = ACTIONS(1944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1944), + [anon_sym_LPAREN2] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_TILDE] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1944), + [anon_sym_PLUS] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(1946), + [anon_sym_CARET] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_typedef] = ACTIONS(1944), + [anon_sym_extern] = ACTIONS(1944), + [anon_sym___attribute] = ACTIONS(1944), + [anon_sym___attribute__] = ACTIONS(1944), + [anon_sym___declspec] = ACTIONS(1944), + [anon_sym___cdecl] = ACTIONS(1944), + [anon_sym___clrcall] = ACTIONS(1944), + [anon_sym___stdcall] = ACTIONS(1944), + [anon_sym___fastcall] = ACTIONS(1944), + [anon_sym___thiscall] = ACTIONS(1944), + [anon_sym___vectorcall] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1944), + [anon_sym_auto] = ACTIONS(1944), + [anon_sym_register] = ACTIONS(1944), + [anon_sym_inline] = ACTIONS(1944), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1944), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_volatile] = ACTIONS(1944), + [anon_sym_restrict] = ACTIONS(1944), + [anon_sym__Atomic] = ACTIONS(1944), + [anon_sym_in] = ACTIONS(1944), + [anon_sym_out] = ACTIONS(1944), + [anon_sym_inout] = ACTIONS(1944), + [anon_sym_bycopy] = ACTIONS(1944), + [anon_sym_byref] = ACTIONS(1944), + [anon_sym_oneway] = ACTIONS(1944), + [anon_sym__Nullable] = ACTIONS(1944), + [anon_sym__Nonnull] = ACTIONS(1944), + [anon_sym__Nullable_result] = ACTIONS(1944), + [anon_sym__Null_unspecified] = ACTIONS(1944), + [anon_sym___autoreleasing] = ACTIONS(1944), + [anon_sym___nullable] = ACTIONS(1944), + [anon_sym___nonnull] = ACTIONS(1944), + [anon_sym___strong] = ACTIONS(1944), + [anon_sym___weak] = ACTIONS(1944), + [anon_sym___bridge] = ACTIONS(1944), + [anon_sym___bridge_transfer] = ACTIONS(1944), + [anon_sym___bridge_retained] = ACTIONS(1944), + [anon_sym___unsafe_unretained] = ACTIONS(1944), + [anon_sym___block] = ACTIONS(1944), + [anon_sym___kindof] = ACTIONS(1944), + [anon_sym___unused] = ACTIONS(1944), + [anon_sym__Complex] = ACTIONS(1944), + [anon_sym___complex] = ACTIONS(1944), + [anon_sym_IBOutlet] = ACTIONS(1944), + [anon_sym_IBInspectable] = ACTIONS(1944), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1944), + [anon_sym_signed] = ACTIONS(1944), + [anon_sym_unsigned] = ACTIONS(1944), + [anon_sym_long] = ACTIONS(1944), + [anon_sym_short] = ACTIONS(1944), + [sym_primitive_type] = ACTIONS(1944), + [anon_sym_enum] = ACTIONS(1944), + [anon_sym_struct] = ACTIONS(1944), + [anon_sym_union] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_switch] = ACTIONS(1944), + [anon_sym_case] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_goto] = ACTIONS(1944), + [anon_sym_DASH_DASH] = ACTIONS(1946), + [anon_sym_PLUS_PLUS] = ACTIONS(1946), + [anon_sym_sizeof] = ACTIONS(1944), + [sym_number_literal] = ACTIONS(1946), + [anon_sym_L_SQUOTE] = ACTIONS(1946), + [anon_sym_u_SQUOTE] = ACTIONS(1946), + [anon_sym_U_SQUOTE] = ACTIONS(1946), + [anon_sym_u8_SQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1946), + [anon_sym_L_DQUOTE] = ACTIONS(1946), + [anon_sym_u_DQUOTE] = ACTIONS(1946), + [anon_sym_U_DQUOTE] = ACTIONS(1946), + [anon_sym_u8_DQUOTE] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1946), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [sym_null] = ACTIONS(1944), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1946), + [anon_sym_ATimport] = ACTIONS(1946), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1944), + [anon_sym_ATcompatibility_alias] = ACTIONS(1946), + [anon_sym_ATprotocol] = ACTIONS(1946), + [anon_sym_ATclass] = ACTIONS(1946), + [anon_sym_ATinterface] = ACTIONS(1946), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1944), + [sym_method_attribute_specifier] = ACTIONS(1944), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1944), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1944), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1944), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1944), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1944), + [anon_sym_NS_AVAILABLE] = ACTIONS(1944), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1944), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_API_AVAILABLE] = ACTIONS(1944), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_API_DEPRECATED] = ACTIONS(1944), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1944), + [anon_sym___deprecated_msg] = ACTIONS(1944), + [anon_sym___deprecated_enum_msg] = ACTIONS(1944), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1944), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1944), + [anon_sym_ATimplementation] = ACTIONS(1946), + [anon_sym_NS_ENUM] = ACTIONS(1944), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1944), + [anon_sym_NS_OPTIONS] = ACTIONS(1944), + [anon_sym_typeof] = ACTIONS(1944), + [anon_sym___typeof] = ACTIONS(1944), + [anon_sym___typeof__] = ACTIONS(1944), + [sym_self] = ACTIONS(1944), + [sym_super] = ACTIONS(1944), + [sym_nil] = ACTIONS(1944), + [sym_id] = ACTIONS(1944), + [sym_instancetype] = ACTIONS(1944), + [sym_Class] = ACTIONS(1944), + [sym_SEL] = ACTIONS(1944), + [sym_IMP] = ACTIONS(1944), + [sym_BOOL] = ACTIONS(1944), + [sym_auto] = ACTIONS(1944), + [anon_sym_ATautoreleasepool] = ACTIONS(1946), + [anon_sym_ATsynchronized] = ACTIONS(1946), + [anon_sym_ATtry] = ACTIONS(1946), + [anon_sym_ATthrow] = ACTIONS(1946), + [anon_sym_ATselector] = ACTIONS(1946), + [anon_sym_ATencode] = ACTIONS(1946), + [anon_sym_AT] = ACTIONS(1944), + [sym_YES] = ACTIONS(1944), + [sym_NO] = ACTIONS(1944), + [anon_sym___builtin_available] = ACTIONS(1944), + [anon_sym_ATavailable] = ACTIONS(1946), + [anon_sym_va_arg] = ACTIONS(1944), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [946] = { + [ts_builtin_sym_end] = ACTIONS(1942), + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [947] = { + [ts_builtin_sym_end] = ACTIONS(1942), + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [948] = { + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2034), + [aux_sym_preproc_def_token1] = ACTIONS(2034), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_auto] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_out] = ACTIONS(2032), + [anon_sym_inout] = ACTIONS(2032), + [anon_sym_bycopy] = ACTIONS(2032), + [anon_sym_byref] = ACTIONS(2032), + [anon_sym_oneway] = ACTIONS(2032), + [anon_sym__Nullable] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym__Nullable_result] = ACTIONS(2032), + [anon_sym__Null_unspecified] = ACTIONS(2032), + [anon_sym___autoreleasing] = ACTIONS(2032), + [anon_sym___nullable] = ACTIONS(2032), + [anon_sym___nonnull] = ACTIONS(2032), + [anon_sym___strong] = ACTIONS(2032), + [anon_sym___weak] = ACTIONS(2032), + [anon_sym___bridge] = ACTIONS(2032), + [anon_sym___bridge_transfer] = ACTIONS(2032), + [anon_sym___bridge_retained] = ACTIONS(2032), + [anon_sym___unsafe_unretained] = ACTIONS(2032), + [anon_sym___block] = ACTIONS(2032), + [anon_sym___kindof] = ACTIONS(2032), + [anon_sym___unused] = ACTIONS(2032), + [anon_sym__Complex] = ACTIONS(2032), + [anon_sym___complex] = ACTIONS(2032), + [anon_sym_IBOutlet] = ACTIONS(2032), + [anon_sym_IBInspectable] = ACTIONS(2032), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2032), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [sym_null] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2034), + [anon_sym_ATimport] = ACTIONS(2034), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2032), + [anon_sym_ATcompatibility_alias] = ACTIONS(2034), + [anon_sym_ATprotocol] = ACTIONS(2034), + [anon_sym_ATclass] = ACTIONS(2034), + [anon_sym_ATinterface] = ACTIONS(2034), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2032), + [sym_method_attribute_specifier] = ACTIONS(2032), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2032), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE] = ACTIONS(2032), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_API_AVAILABLE] = ACTIONS(2032), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_API_DEPRECATED] = ACTIONS(2032), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2032), + [anon_sym___deprecated_msg] = ACTIONS(2032), + [anon_sym___deprecated_enum_msg] = ACTIONS(2032), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2032), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2032), + [anon_sym_ATimplementation] = ACTIONS(2034), + [anon_sym_NS_ENUM] = ACTIONS(2032), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2032), + [anon_sym_NS_OPTIONS] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(2032), + [anon_sym___typeof] = ACTIONS(2032), + [anon_sym___typeof__] = ACTIONS(2032), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_nil] = ACTIONS(2032), + [sym_id] = ACTIONS(2032), + [sym_instancetype] = ACTIONS(2032), + [sym_Class] = ACTIONS(2032), + [sym_SEL] = ACTIONS(2032), + [sym_IMP] = ACTIONS(2032), + [sym_BOOL] = ACTIONS(2032), + [sym_auto] = ACTIONS(2032), + [anon_sym_ATautoreleasepool] = ACTIONS(2034), + [anon_sym_ATsynchronized] = ACTIONS(2034), + [anon_sym_ATtry] = ACTIONS(2034), + [anon_sym_ATthrow] = ACTIONS(2034), + [anon_sym_ATselector] = ACTIONS(2034), + [anon_sym_ATencode] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2032), + [sym_YES] = ACTIONS(2032), + [sym_NO] = ACTIONS(2032), + [anon_sym___builtin_available] = ACTIONS(2032), + [anon_sym_ATavailable] = ACTIONS(2034), + [anon_sym_va_arg] = ACTIONS(2032), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [949] = { + [ts_builtin_sym_end] = ACTIONS(1774), + [sym_identifier] = ACTIONS(1772), + [aux_sym_preproc_include_token1] = ACTIONS(1774), + [aux_sym_preproc_def_token1] = ACTIONS(1774), + [aux_sym_preproc_if_token1] = ACTIONS(1772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_CARET] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_typedef] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym___attribute] = ACTIONS(1772), + [anon_sym___attribute__] = ACTIONS(1772), + [anon_sym___declspec] = ACTIONS(1772), + [anon_sym___cdecl] = ACTIONS(1772), + [anon_sym___clrcall] = ACTIONS(1772), + [anon_sym___stdcall] = ACTIONS(1772), + [anon_sym___fastcall] = ACTIONS(1772), + [anon_sym___thiscall] = ACTIONS(1772), + [anon_sym___vectorcall] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1772), + [anon_sym_auto] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_inline] = ACTIONS(1772), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_volatile] = ACTIONS(1772), + [anon_sym_restrict] = ACTIONS(1772), + [anon_sym__Atomic] = ACTIONS(1772), + [anon_sym_in] = ACTIONS(1772), + [anon_sym_out] = ACTIONS(1772), + [anon_sym_inout] = ACTIONS(1772), + [anon_sym_bycopy] = ACTIONS(1772), + [anon_sym_byref] = ACTIONS(1772), + [anon_sym_oneway] = ACTIONS(1772), + [anon_sym__Nullable] = ACTIONS(1772), + [anon_sym__Nonnull] = ACTIONS(1772), + [anon_sym__Nullable_result] = ACTIONS(1772), + [anon_sym__Null_unspecified] = ACTIONS(1772), + [anon_sym___autoreleasing] = ACTIONS(1772), + [anon_sym___nullable] = ACTIONS(1772), + [anon_sym___nonnull] = ACTIONS(1772), + [anon_sym___strong] = ACTIONS(1772), + [anon_sym___weak] = ACTIONS(1772), + [anon_sym___bridge] = ACTIONS(1772), + [anon_sym___bridge_transfer] = ACTIONS(1772), + [anon_sym___bridge_retained] = ACTIONS(1772), + [anon_sym___unsafe_unretained] = ACTIONS(1772), + [anon_sym___block] = ACTIONS(1772), + [anon_sym___kindof] = ACTIONS(1772), + [anon_sym___unused] = ACTIONS(1772), + [anon_sym__Complex] = ACTIONS(1772), + [anon_sym___complex] = ACTIONS(1772), + [anon_sym_IBOutlet] = ACTIONS(1772), + [anon_sym_IBInspectable] = ACTIONS(1772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1772), + [anon_sym_signed] = ACTIONS(1772), + [anon_sym_unsigned] = ACTIONS(1772), + [anon_sym_long] = ACTIONS(1772), + [anon_sym_short] = ACTIONS(1772), + [sym_primitive_type] = ACTIONS(1772), + [anon_sym_enum] = ACTIONS(1772), + [anon_sym_struct] = ACTIONS(1772), + [anon_sym_union] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1772), + [anon_sym_default] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_goto] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_PLUS_PLUS] = ACTIONS(1774), + [anon_sym_sizeof] = ACTIONS(1772), + [sym_number_literal] = ACTIONS(1774), + [anon_sym_L_SQUOTE] = ACTIONS(1774), + [anon_sym_u_SQUOTE] = ACTIONS(1774), + [anon_sym_U_SQUOTE] = ACTIONS(1774), + [anon_sym_u8_SQUOTE] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_L_DQUOTE] = ACTIONS(1774), + [anon_sym_u_DQUOTE] = ACTIONS(1774), + [anon_sym_U_DQUOTE] = ACTIONS(1774), + [anon_sym_u8_DQUOTE] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym_true] = ACTIONS(1772), + [sym_false] = ACTIONS(1772), + [sym_null] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1774), + [anon_sym_ATimport] = ACTIONS(1774), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1772), + [anon_sym_ATcompatibility_alias] = ACTIONS(1774), + [anon_sym_ATprotocol] = ACTIONS(1774), + [anon_sym_ATclass] = ACTIONS(1774), + [anon_sym_ATinterface] = ACTIONS(1774), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1772), + [sym_method_attribute_specifier] = ACTIONS(1772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1772), + [anon_sym_NS_AVAILABLE] = ACTIONS(1772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_API_AVAILABLE] = ACTIONS(1772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1772), + [anon_sym_API_DEPRECATED] = ACTIONS(1772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1772), + [anon_sym___deprecated_msg] = ACTIONS(1772), + [anon_sym___deprecated_enum_msg] = ACTIONS(1772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1772), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1772), + [anon_sym_ATimplementation] = ACTIONS(1774), + [anon_sym_NS_ENUM] = ACTIONS(1772), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1772), + [anon_sym_NS_OPTIONS] = ACTIONS(1772), + [anon_sym_typeof] = ACTIONS(1772), + [anon_sym___typeof] = ACTIONS(1772), + [anon_sym___typeof__] = ACTIONS(1772), + [sym_self] = ACTIONS(1772), + [sym_super] = ACTIONS(1772), + [sym_nil] = ACTIONS(1772), + [sym_id] = ACTIONS(1772), + [sym_instancetype] = ACTIONS(1772), + [sym_Class] = ACTIONS(1772), + [sym_SEL] = ACTIONS(1772), + [sym_IMP] = ACTIONS(1772), + [sym_BOOL] = ACTIONS(1772), + [sym_auto] = ACTIONS(1772), + [anon_sym_ATautoreleasepool] = ACTIONS(1774), + [anon_sym_ATsynchronized] = ACTIONS(1774), + [anon_sym_ATtry] = ACTIONS(1774), + [anon_sym_ATthrow] = ACTIONS(1774), + [anon_sym_ATselector] = ACTIONS(1774), + [anon_sym_ATencode] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1772), + [sym_YES] = ACTIONS(1772), + [sym_NO] = ACTIONS(1772), + [anon_sym___builtin_available] = ACTIONS(1772), + [anon_sym_ATavailable] = ACTIONS(1774), + [anon_sym_va_arg] = ACTIONS(1772), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [950] = { + [ts_builtin_sym_end] = ACTIONS(1942), + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [951] = { + [ts_builtin_sym_end] = ACTIONS(1774), + [sym_identifier] = ACTIONS(1772), + [aux_sym_preproc_include_token1] = ACTIONS(1774), + [aux_sym_preproc_def_token1] = ACTIONS(1774), + [aux_sym_preproc_if_token1] = ACTIONS(1772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_CARET] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_typedef] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym___attribute] = ACTIONS(1772), + [anon_sym___attribute__] = ACTIONS(1772), + [anon_sym___declspec] = ACTIONS(1772), + [anon_sym___cdecl] = ACTIONS(1772), + [anon_sym___clrcall] = ACTIONS(1772), + [anon_sym___stdcall] = ACTIONS(1772), + [anon_sym___fastcall] = ACTIONS(1772), + [anon_sym___thiscall] = ACTIONS(1772), + [anon_sym___vectorcall] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1772), + [anon_sym_auto] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_inline] = ACTIONS(1772), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_volatile] = ACTIONS(1772), + [anon_sym_restrict] = ACTIONS(1772), + [anon_sym__Atomic] = ACTIONS(1772), + [anon_sym_in] = ACTIONS(1772), + [anon_sym_out] = ACTIONS(1772), + [anon_sym_inout] = ACTIONS(1772), + [anon_sym_bycopy] = ACTIONS(1772), + [anon_sym_byref] = ACTIONS(1772), + [anon_sym_oneway] = ACTIONS(1772), + [anon_sym__Nullable] = ACTIONS(1772), + [anon_sym__Nonnull] = ACTIONS(1772), + [anon_sym__Nullable_result] = ACTIONS(1772), + [anon_sym__Null_unspecified] = ACTIONS(1772), + [anon_sym___autoreleasing] = ACTIONS(1772), + [anon_sym___nullable] = ACTIONS(1772), + [anon_sym___nonnull] = ACTIONS(1772), + [anon_sym___strong] = ACTIONS(1772), + [anon_sym___weak] = ACTIONS(1772), + [anon_sym___bridge] = ACTIONS(1772), + [anon_sym___bridge_transfer] = ACTIONS(1772), + [anon_sym___bridge_retained] = ACTIONS(1772), + [anon_sym___unsafe_unretained] = ACTIONS(1772), + [anon_sym___block] = ACTIONS(1772), + [anon_sym___kindof] = ACTIONS(1772), + [anon_sym___unused] = ACTIONS(1772), + [anon_sym__Complex] = ACTIONS(1772), + [anon_sym___complex] = ACTIONS(1772), + [anon_sym_IBOutlet] = ACTIONS(1772), + [anon_sym_IBInspectable] = ACTIONS(1772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1772), + [anon_sym_signed] = ACTIONS(1772), + [anon_sym_unsigned] = ACTIONS(1772), + [anon_sym_long] = ACTIONS(1772), + [anon_sym_short] = ACTIONS(1772), + [sym_primitive_type] = ACTIONS(1772), + [anon_sym_enum] = ACTIONS(1772), + [anon_sym_struct] = ACTIONS(1772), + [anon_sym_union] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1772), + [anon_sym_default] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_goto] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_PLUS_PLUS] = ACTIONS(1774), + [anon_sym_sizeof] = ACTIONS(1772), + [sym_number_literal] = ACTIONS(1774), + [anon_sym_L_SQUOTE] = ACTIONS(1774), + [anon_sym_u_SQUOTE] = ACTIONS(1774), + [anon_sym_U_SQUOTE] = ACTIONS(1774), + [anon_sym_u8_SQUOTE] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_L_DQUOTE] = ACTIONS(1774), + [anon_sym_u_DQUOTE] = ACTIONS(1774), + [anon_sym_U_DQUOTE] = ACTIONS(1774), + [anon_sym_u8_DQUOTE] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym_true] = ACTIONS(1772), + [sym_false] = ACTIONS(1772), + [sym_null] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1774), + [anon_sym_ATimport] = ACTIONS(1774), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1772), + [anon_sym_ATcompatibility_alias] = ACTIONS(1774), + [anon_sym_ATprotocol] = ACTIONS(1774), + [anon_sym_ATclass] = ACTIONS(1774), + [anon_sym_ATinterface] = ACTIONS(1774), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1772), + [sym_method_attribute_specifier] = ACTIONS(1772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1772), + [anon_sym_NS_AVAILABLE] = ACTIONS(1772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_API_AVAILABLE] = ACTIONS(1772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1772), + [anon_sym_API_DEPRECATED] = ACTIONS(1772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1772), + [anon_sym___deprecated_msg] = ACTIONS(1772), + [anon_sym___deprecated_enum_msg] = ACTIONS(1772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1772), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1772), + [anon_sym_ATimplementation] = ACTIONS(1774), + [anon_sym_NS_ENUM] = ACTIONS(1772), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1772), + [anon_sym_NS_OPTIONS] = ACTIONS(1772), + [anon_sym_typeof] = ACTIONS(1772), + [anon_sym___typeof] = ACTIONS(1772), + [anon_sym___typeof__] = ACTIONS(1772), + [sym_self] = ACTIONS(1772), + [sym_super] = ACTIONS(1772), + [sym_nil] = ACTIONS(1772), + [sym_id] = ACTIONS(1772), + [sym_instancetype] = ACTIONS(1772), + [sym_Class] = ACTIONS(1772), + [sym_SEL] = ACTIONS(1772), + [sym_IMP] = ACTIONS(1772), + [sym_BOOL] = ACTIONS(1772), + [sym_auto] = ACTIONS(1772), + [anon_sym_ATautoreleasepool] = ACTIONS(1774), + [anon_sym_ATsynchronized] = ACTIONS(1774), + [anon_sym_ATtry] = ACTIONS(1774), + [anon_sym_ATthrow] = ACTIONS(1774), + [anon_sym_ATselector] = ACTIONS(1774), + [anon_sym_ATencode] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1772), + [sym_YES] = ACTIONS(1772), + [sym_NO] = ACTIONS(1772), + [anon_sym___builtin_available] = ACTIONS(1772), + [anon_sym_ATavailable] = ACTIONS(1774), + [anon_sym_va_arg] = ACTIONS(1772), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [952] = { + [ts_builtin_sym_end] = ACTIONS(2006), + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [953] = { + [ts_builtin_sym_end] = ACTIONS(2006), + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [954] = { + [ts_builtin_sym_end] = ACTIONS(2006), + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [955] = { + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2034), + [aux_sym_preproc_def_token1] = ACTIONS(2034), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_auto] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_out] = ACTIONS(2032), + [anon_sym_inout] = ACTIONS(2032), + [anon_sym_bycopy] = ACTIONS(2032), + [anon_sym_byref] = ACTIONS(2032), + [anon_sym_oneway] = ACTIONS(2032), + [anon_sym__Nullable] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym__Nullable_result] = ACTIONS(2032), + [anon_sym__Null_unspecified] = ACTIONS(2032), + [anon_sym___autoreleasing] = ACTIONS(2032), + [anon_sym___nullable] = ACTIONS(2032), + [anon_sym___nonnull] = ACTIONS(2032), + [anon_sym___strong] = ACTIONS(2032), + [anon_sym___weak] = ACTIONS(2032), + [anon_sym___bridge] = ACTIONS(2032), + [anon_sym___bridge_transfer] = ACTIONS(2032), + [anon_sym___bridge_retained] = ACTIONS(2032), + [anon_sym___unsafe_unretained] = ACTIONS(2032), + [anon_sym___block] = ACTIONS(2032), + [anon_sym___kindof] = ACTIONS(2032), + [anon_sym___unused] = ACTIONS(2032), + [anon_sym__Complex] = ACTIONS(2032), + [anon_sym___complex] = ACTIONS(2032), + [anon_sym_IBOutlet] = ACTIONS(2032), + [anon_sym_IBInspectable] = ACTIONS(2032), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2032), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [sym_null] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2034), + [anon_sym_ATimport] = ACTIONS(2034), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2032), + [anon_sym_ATcompatibility_alias] = ACTIONS(2034), + [anon_sym_ATprotocol] = ACTIONS(2034), + [anon_sym_ATclass] = ACTIONS(2034), + [anon_sym_ATinterface] = ACTIONS(2034), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2032), + [sym_method_attribute_specifier] = ACTIONS(2032), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2032), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE] = ACTIONS(2032), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_API_AVAILABLE] = ACTIONS(2032), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_API_DEPRECATED] = ACTIONS(2032), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2032), + [anon_sym___deprecated_msg] = ACTIONS(2032), + [anon_sym___deprecated_enum_msg] = ACTIONS(2032), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2032), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2032), + [anon_sym_ATimplementation] = ACTIONS(2034), + [anon_sym_NS_ENUM] = ACTIONS(2032), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2032), + [anon_sym_NS_OPTIONS] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(2032), + [anon_sym___typeof] = ACTIONS(2032), + [anon_sym___typeof__] = ACTIONS(2032), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_nil] = ACTIONS(2032), + [sym_id] = ACTIONS(2032), + [sym_instancetype] = ACTIONS(2032), + [sym_Class] = ACTIONS(2032), + [sym_SEL] = ACTIONS(2032), + [sym_IMP] = ACTIONS(2032), + [sym_BOOL] = ACTIONS(2032), + [sym_auto] = ACTIONS(2032), + [anon_sym_ATautoreleasepool] = ACTIONS(2034), + [anon_sym_ATsynchronized] = ACTIONS(2034), + [anon_sym_ATtry] = ACTIONS(2034), + [anon_sym_ATthrow] = ACTIONS(2034), + [anon_sym_ATselector] = ACTIONS(2034), + [anon_sym_ATencode] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2032), + [sym_YES] = ACTIONS(2032), + [sym_NO] = ACTIONS(2032), + [anon_sym___builtin_available] = ACTIONS(2032), + [anon_sym_ATavailable] = ACTIONS(2034), + [anon_sym_va_arg] = ACTIONS(2032), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [956] = { + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2034), + [aux_sym_preproc_def_token1] = ACTIONS(2034), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_auto] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_out] = ACTIONS(2032), + [anon_sym_inout] = ACTIONS(2032), + [anon_sym_bycopy] = ACTIONS(2032), + [anon_sym_byref] = ACTIONS(2032), + [anon_sym_oneway] = ACTIONS(2032), + [anon_sym__Nullable] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym__Nullable_result] = ACTIONS(2032), + [anon_sym__Null_unspecified] = ACTIONS(2032), + [anon_sym___autoreleasing] = ACTIONS(2032), + [anon_sym___nullable] = ACTIONS(2032), + [anon_sym___nonnull] = ACTIONS(2032), + [anon_sym___strong] = ACTIONS(2032), + [anon_sym___weak] = ACTIONS(2032), + [anon_sym___bridge] = ACTIONS(2032), + [anon_sym___bridge_transfer] = ACTIONS(2032), + [anon_sym___bridge_retained] = ACTIONS(2032), + [anon_sym___unsafe_unretained] = ACTIONS(2032), + [anon_sym___block] = ACTIONS(2032), + [anon_sym___kindof] = ACTIONS(2032), + [anon_sym___unused] = ACTIONS(2032), + [anon_sym__Complex] = ACTIONS(2032), + [anon_sym___complex] = ACTIONS(2032), + [anon_sym_IBOutlet] = ACTIONS(2032), + [anon_sym_IBInspectable] = ACTIONS(2032), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2032), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [sym_null] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2034), + [anon_sym_ATimport] = ACTIONS(2034), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2032), + [anon_sym_ATcompatibility_alias] = ACTIONS(2034), + [anon_sym_ATprotocol] = ACTIONS(2034), + [anon_sym_ATclass] = ACTIONS(2034), + [anon_sym_ATinterface] = ACTIONS(2034), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2032), + [sym_method_attribute_specifier] = ACTIONS(2032), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2032), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE] = ACTIONS(2032), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_API_AVAILABLE] = ACTIONS(2032), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_API_DEPRECATED] = ACTIONS(2032), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2032), + [anon_sym___deprecated_msg] = ACTIONS(2032), + [anon_sym___deprecated_enum_msg] = ACTIONS(2032), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2032), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2032), + [anon_sym_ATimplementation] = ACTIONS(2034), + [anon_sym_NS_ENUM] = ACTIONS(2032), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2032), + [anon_sym_NS_OPTIONS] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(2032), + [anon_sym___typeof] = ACTIONS(2032), + [anon_sym___typeof__] = ACTIONS(2032), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_nil] = ACTIONS(2032), + [sym_id] = ACTIONS(2032), + [sym_instancetype] = ACTIONS(2032), + [sym_Class] = ACTIONS(2032), + [sym_SEL] = ACTIONS(2032), + [sym_IMP] = ACTIONS(2032), + [sym_BOOL] = ACTIONS(2032), + [sym_auto] = ACTIONS(2032), + [anon_sym_ATautoreleasepool] = ACTIONS(2034), + [anon_sym_ATsynchronized] = ACTIONS(2034), + [anon_sym_ATtry] = ACTIONS(2034), + [anon_sym_ATthrow] = ACTIONS(2034), + [anon_sym_ATselector] = ACTIONS(2034), + [anon_sym_ATencode] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2032), + [sym_YES] = ACTIONS(2032), + [sym_NO] = ACTIONS(2032), + [anon_sym___builtin_available] = ACTIONS(2032), + [anon_sym_ATavailable] = ACTIONS(2034), + [anon_sym_va_arg] = ACTIONS(2032), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [957] = { + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2034), + [aux_sym_preproc_def_token1] = ACTIONS(2034), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_auto] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_out] = ACTIONS(2032), + [anon_sym_inout] = ACTIONS(2032), + [anon_sym_bycopy] = ACTIONS(2032), + [anon_sym_byref] = ACTIONS(2032), + [anon_sym_oneway] = ACTIONS(2032), + [anon_sym__Nullable] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym__Nullable_result] = ACTIONS(2032), + [anon_sym__Null_unspecified] = ACTIONS(2032), + [anon_sym___autoreleasing] = ACTIONS(2032), + [anon_sym___nullable] = ACTIONS(2032), + [anon_sym___nonnull] = ACTIONS(2032), + [anon_sym___strong] = ACTIONS(2032), + [anon_sym___weak] = ACTIONS(2032), + [anon_sym___bridge] = ACTIONS(2032), + [anon_sym___bridge_transfer] = ACTIONS(2032), + [anon_sym___bridge_retained] = ACTIONS(2032), + [anon_sym___unsafe_unretained] = ACTIONS(2032), + [anon_sym___block] = ACTIONS(2032), + [anon_sym___kindof] = ACTIONS(2032), + [anon_sym___unused] = ACTIONS(2032), + [anon_sym__Complex] = ACTIONS(2032), + [anon_sym___complex] = ACTIONS(2032), + [anon_sym_IBOutlet] = ACTIONS(2032), + [anon_sym_IBInspectable] = ACTIONS(2032), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2032), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [sym_null] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2034), + [anon_sym_ATimport] = ACTIONS(2034), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2032), + [anon_sym_ATcompatibility_alias] = ACTIONS(2034), + [anon_sym_ATprotocol] = ACTIONS(2034), + [anon_sym_ATclass] = ACTIONS(2034), + [anon_sym_ATinterface] = ACTIONS(2034), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2032), + [sym_method_attribute_specifier] = ACTIONS(2032), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2032), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE] = ACTIONS(2032), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_API_AVAILABLE] = ACTIONS(2032), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_API_DEPRECATED] = ACTIONS(2032), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2032), + [anon_sym___deprecated_msg] = ACTIONS(2032), + [anon_sym___deprecated_enum_msg] = ACTIONS(2032), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2032), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2032), + [anon_sym_ATimplementation] = ACTIONS(2034), + [anon_sym_NS_ENUM] = ACTIONS(2032), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2032), + [anon_sym_NS_OPTIONS] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(2032), + [anon_sym___typeof] = ACTIONS(2032), + [anon_sym___typeof__] = ACTIONS(2032), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_nil] = ACTIONS(2032), + [sym_id] = ACTIONS(2032), + [sym_instancetype] = ACTIONS(2032), + [sym_Class] = ACTIONS(2032), + [sym_SEL] = ACTIONS(2032), + [sym_IMP] = ACTIONS(2032), + [sym_BOOL] = ACTIONS(2032), + [sym_auto] = ACTIONS(2032), + [anon_sym_ATautoreleasepool] = ACTIONS(2034), + [anon_sym_ATsynchronized] = ACTIONS(2034), + [anon_sym_ATtry] = ACTIONS(2034), + [anon_sym_ATthrow] = ACTIONS(2034), + [anon_sym_ATselector] = ACTIONS(2034), + [anon_sym_ATencode] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2032), + [sym_YES] = ACTIONS(2032), + [sym_NO] = ACTIONS(2032), + [anon_sym___builtin_available] = ACTIONS(2032), + [anon_sym_ATavailable] = ACTIONS(2034), + [anon_sym_va_arg] = ACTIONS(2032), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [958] = { + [ts_builtin_sym_end] = ACTIONS(2030), + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2030), + [aux_sym_preproc_def_token1] = ACTIONS(2030), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_auto] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_out] = ACTIONS(2028), + [anon_sym_inout] = ACTIONS(2028), + [anon_sym_bycopy] = ACTIONS(2028), + [anon_sym_byref] = ACTIONS(2028), + [anon_sym_oneway] = ACTIONS(2028), + [anon_sym__Nullable] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym__Nullable_result] = ACTIONS(2028), + [anon_sym__Null_unspecified] = ACTIONS(2028), + [anon_sym___autoreleasing] = ACTIONS(2028), + [anon_sym___nullable] = ACTIONS(2028), + [anon_sym___nonnull] = ACTIONS(2028), + [anon_sym___strong] = ACTIONS(2028), + [anon_sym___weak] = ACTIONS(2028), + [anon_sym___bridge] = ACTIONS(2028), + [anon_sym___bridge_transfer] = ACTIONS(2028), + [anon_sym___bridge_retained] = ACTIONS(2028), + [anon_sym___unsafe_unretained] = ACTIONS(2028), + [anon_sym___block] = ACTIONS(2028), + [anon_sym___kindof] = ACTIONS(2028), + [anon_sym___unused] = ACTIONS(2028), + [anon_sym__Complex] = ACTIONS(2028), + [anon_sym___complex] = ACTIONS(2028), + [anon_sym_IBOutlet] = ACTIONS(2028), + [anon_sym_IBInspectable] = ACTIONS(2028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2028), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2030), + [anon_sym_ATimport] = ACTIONS(2030), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2028), + [anon_sym_ATcompatibility_alias] = ACTIONS(2030), + [anon_sym_ATprotocol] = ACTIONS(2030), + [anon_sym_ATclass] = ACTIONS(2030), + [anon_sym_ATinterface] = ACTIONS(2030), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2028), + [sym_method_attribute_specifier] = ACTIONS(2028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE] = ACTIONS(2028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_API_AVAILABLE] = ACTIONS(2028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_API_DEPRECATED] = ACTIONS(2028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2028), + [anon_sym___deprecated_msg] = ACTIONS(2028), + [anon_sym___deprecated_enum_msg] = ACTIONS(2028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2028), + [anon_sym_ATimplementation] = ACTIONS(2030), + [anon_sym_NS_ENUM] = ACTIONS(2028), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2028), + [anon_sym_NS_OPTIONS] = ACTIONS(2028), + [anon_sym_typeof] = ACTIONS(2028), + [anon_sym___typeof] = ACTIONS(2028), + [anon_sym___typeof__] = ACTIONS(2028), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_nil] = ACTIONS(2028), + [sym_id] = ACTIONS(2028), + [sym_instancetype] = ACTIONS(2028), + [sym_Class] = ACTIONS(2028), + [sym_SEL] = ACTIONS(2028), + [sym_IMP] = ACTIONS(2028), + [sym_BOOL] = ACTIONS(2028), + [sym_auto] = ACTIONS(2028), + [anon_sym_ATautoreleasepool] = ACTIONS(2030), + [anon_sym_ATsynchronized] = ACTIONS(2030), + [anon_sym_ATtry] = ACTIONS(2030), + [anon_sym_ATthrow] = ACTIONS(2030), + [anon_sym_ATselector] = ACTIONS(2030), + [anon_sym_ATencode] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2028), + [sym_YES] = ACTIONS(2028), + [sym_NO] = ACTIONS(2028), + [anon_sym___builtin_available] = ACTIONS(2028), + [anon_sym_ATavailable] = ACTIONS(2030), + [anon_sym_va_arg] = ACTIONS(2028), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [959] = { + [ts_builtin_sym_end] = ACTIONS(2030), + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2030), + [aux_sym_preproc_def_token1] = ACTIONS(2030), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_auto] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_out] = ACTIONS(2028), + [anon_sym_inout] = ACTIONS(2028), + [anon_sym_bycopy] = ACTIONS(2028), + [anon_sym_byref] = ACTIONS(2028), + [anon_sym_oneway] = ACTIONS(2028), + [anon_sym__Nullable] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym__Nullable_result] = ACTIONS(2028), + [anon_sym__Null_unspecified] = ACTIONS(2028), + [anon_sym___autoreleasing] = ACTIONS(2028), + [anon_sym___nullable] = ACTIONS(2028), + [anon_sym___nonnull] = ACTIONS(2028), + [anon_sym___strong] = ACTIONS(2028), + [anon_sym___weak] = ACTIONS(2028), + [anon_sym___bridge] = ACTIONS(2028), + [anon_sym___bridge_transfer] = ACTIONS(2028), + [anon_sym___bridge_retained] = ACTIONS(2028), + [anon_sym___unsafe_unretained] = ACTIONS(2028), + [anon_sym___block] = ACTIONS(2028), + [anon_sym___kindof] = ACTIONS(2028), + [anon_sym___unused] = ACTIONS(2028), + [anon_sym__Complex] = ACTIONS(2028), + [anon_sym___complex] = ACTIONS(2028), + [anon_sym_IBOutlet] = ACTIONS(2028), + [anon_sym_IBInspectable] = ACTIONS(2028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2028), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2030), + [anon_sym_ATimport] = ACTIONS(2030), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2028), + [anon_sym_ATcompatibility_alias] = ACTIONS(2030), + [anon_sym_ATprotocol] = ACTIONS(2030), + [anon_sym_ATclass] = ACTIONS(2030), + [anon_sym_ATinterface] = ACTIONS(2030), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2028), + [sym_method_attribute_specifier] = ACTIONS(2028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE] = ACTIONS(2028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_API_AVAILABLE] = ACTIONS(2028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_API_DEPRECATED] = ACTIONS(2028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2028), + [anon_sym___deprecated_msg] = ACTIONS(2028), + [anon_sym___deprecated_enum_msg] = ACTIONS(2028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2028), + [anon_sym_ATimplementation] = ACTIONS(2030), + [anon_sym_NS_ENUM] = ACTIONS(2028), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2028), + [anon_sym_NS_OPTIONS] = ACTIONS(2028), + [anon_sym_typeof] = ACTIONS(2028), + [anon_sym___typeof] = ACTIONS(2028), + [anon_sym___typeof__] = ACTIONS(2028), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_nil] = ACTIONS(2028), + [sym_id] = ACTIONS(2028), + [sym_instancetype] = ACTIONS(2028), + [sym_Class] = ACTIONS(2028), + [sym_SEL] = ACTIONS(2028), + [sym_IMP] = ACTIONS(2028), + [sym_BOOL] = ACTIONS(2028), + [sym_auto] = ACTIONS(2028), + [anon_sym_ATautoreleasepool] = ACTIONS(2030), + [anon_sym_ATsynchronized] = ACTIONS(2030), + [anon_sym_ATtry] = ACTIONS(2030), + [anon_sym_ATthrow] = ACTIONS(2030), + [anon_sym_ATselector] = ACTIONS(2030), + [anon_sym_ATencode] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2028), + [sym_YES] = ACTIONS(2028), + [sym_NO] = ACTIONS(2028), + [anon_sym___builtin_available] = ACTIONS(2028), + [anon_sym_ATavailable] = ACTIONS(2030), + [anon_sym_va_arg] = ACTIONS(2028), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [960] = { + [ts_builtin_sym_end] = ACTIONS(2030), + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2030), + [aux_sym_preproc_def_token1] = ACTIONS(2030), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_auto] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_out] = ACTIONS(2028), + [anon_sym_inout] = ACTIONS(2028), + [anon_sym_bycopy] = ACTIONS(2028), + [anon_sym_byref] = ACTIONS(2028), + [anon_sym_oneway] = ACTIONS(2028), + [anon_sym__Nullable] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym__Nullable_result] = ACTIONS(2028), + [anon_sym__Null_unspecified] = ACTIONS(2028), + [anon_sym___autoreleasing] = ACTIONS(2028), + [anon_sym___nullable] = ACTIONS(2028), + [anon_sym___nonnull] = ACTIONS(2028), + [anon_sym___strong] = ACTIONS(2028), + [anon_sym___weak] = ACTIONS(2028), + [anon_sym___bridge] = ACTIONS(2028), + [anon_sym___bridge_transfer] = ACTIONS(2028), + [anon_sym___bridge_retained] = ACTIONS(2028), + [anon_sym___unsafe_unretained] = ACTIONS(2028), + [anon_sym___block] = ACTIONS(2028), + [anon_sym___kindof] = ACTIONS(2028), + [anon_sym___unused] = ACTIONS(2028), + [anon_sym__Complex] = ACTIONS(2028), + [anon_sym___complex] = ACTIONS(2028), + [anon_sym_IBOutlet] = ACTIONS(2028), + [anon_sym_IBInspectable] = ACTIONS(2028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2028), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2030), + [anon_sym_ATimport] = ACTIONS(2030), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2028), + [anon_sym_ATcompatibility_alias] = ACTIONS(2030), + [anon_sym_ATprotocol] = ACTIONS(2030), + [anon_sym_ATclass] = ACTIONS(2030), + [anon_sym_ATinterface] = ACTIONS(2030), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2028), + [sym_method_attribute_specifier] = ACTIONS(2028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE] = ACTIONS(2028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_API_AVAILABLE] = ACTIONS(2028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_API_DEPRECATED] = ACTIONS(2028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2028), + [anon_sym___deprecated_msg] = ACTIONS(2028), + [anon_sym___deprecated_enum_msg] = ACTIONS(2028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2028), + [anon_sym_ATimplementation] = ACTIONS(2030), + [anon_sym_NS_ENUM] = ACTIONS(2028), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2028), + [anon_sym_NS_OPTIONS] = ACTIONS(2028), + [anon_sym_typeof] = ACTIONS(2028), + [anon_sym___typeof] = ACTIONS(2028), + [anon_sym___typeof__] = ACTIONS(2028), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_nil] = ACTIONS(2028), + [sym_id] = ACTIONS(2028), + [sym_instancetype] = ACTIONS(2028), + [sym_Class] = ACTIONS(2028), + [sym_SEL] = ACTIONS(2028), + [sym_IMP] = ACTIONS(2028), + [sym_BOOL] = ACTIONS(2028), + [sym_auto] = ACTIONS(2028), + [anon_sym_ATautoreleasepool] = ACTIONS(2030), + [anon_sym_ATsynchronized] = ACTIONS(2030), + [anon_sym_ATtry] = ACTIONS(2030), + [anon_sym_ATthrow] = ACTIONS(2030), + [anon_sym_ATselector] = ACTIONS(2030), + [anon_sym_ATencode] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2028), + [sym_YES] = ACTIONS(2028), + [sym_NO] = ACTIONS(2028), + [anon_sym___builtin_available] = ACTIONS(2028), + [anon_sym_ATavailable] = ACTIONS(2030), + [anon_sym_va_arg] = ACTIONS(2028), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [961] = { + [ts_builtin_sym_end] = ACTIONS(2006), + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [962] = { + [ts_builtin_sym_end] = ACTIONS(2006), + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [963] = { + [ts_builtin_sym_end] = ACTIONS(1738), + [sym_identifier] = ACTIONS(1736), + [aux_sym_preproc_include_token1] = ACTIONS(1738), + [aux_sym_preproc_def_token1] = ACTIONS(1738), + [aux_sym_preproc_if_token1] = ACTIONS(1736), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1736), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_TILDE] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1736), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_CARET] = ACTIONS(1738), + [anon_sym_AMP] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_typedef] = ACTIONS(1736), + [anon_sym_extern] = ACTIONS(1736), + [anon_sym___attribute] = ACTIONS(1736), + [anon_sym___attribute__] = ACTIONS(1736), + [anon_sym___declspec] = ACTIONS(1736), + [anon_sym___cdecl] = ACTIONS(1736), + [anon_sym___clrcall] = ACTIONS(1736), + [anon_sym___stdcall] = ACTIONS(1736), + [anon_sym___fastcall] = ACTIONS(1736), + [anon_sym___thiscall] = ACTIONS(1736), + [anon_sym___vectorcall] = ACTIONS(1736), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_LBRACK] = ACTIONS(1738), + [anon_sym_static] = ACTIONS(1736), + [anon_sym_auto] = ACTIONS(1736), + [anon_sym_register] = ACTIONS(1736), + [anon_sym_inline] = ACTIONS(1736), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1736), + [anon_sym_volatile] = ACTIONS(1736), + [anon_sym_restrict] = ACTIONS(1736), + [anon_sym__Atomic] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1736), + [anon_sym_out] = ACTIONS(1736), + [anon_sym_inout] = ACTIONS(1736), + [anon_sym_bycopy] = ACTIONS(1736), + [anon_sym_byref] = ACTIONS(1736), + [anon_sym_oneway] = ACTIONS(1736), + [anon_sym__Nullable] = ACTIONS(1736), + [anon_sym__Nonnull] = ACTIONS(1736), + [anon_sym__Nullable_result] = ACTIONS(1736), + [anon_sym__Null_unspecified] = ACTIONS(1736), + [anon_sym___autoreleasing] = ACTIONS(1736), + [anon_sym___nullable] = ACTIONS(1736), + [anon_sym___nonnull] = ACTIONS(1736), + [anon_sym___strong] = ACTIONS(1736), + [anon_sym___weak] = ACTIONS(1736), + [anon_sym___bridge] = ACTIONS(1736), + [anon_sym___bridge_transfer] = ACTIONS(1736), + [anon_sym___bridge_retained] = ACTIONS(1736), + [anon_sym___unsafe_unretained] = ACTIONS(1736), + [anon_sym___block] = ACTIONS(1736), + [anon_sym___kindof] = ACTIONS(1736), + [anon_sym___unused] = ACTIONS(1736), + [anon_sym__Complex] = ACTIONS(1736), + [anon_sym___complex] = ACTIONS(1736), + [anon_sym_IBOutlet] = ACTIONS(1736), + [anon_sym_IBInspectable] = ACTIONS(1736), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1736), + [anon_sym_signed] = ACTIONS(1736), + [anon_sym_unsigned] = ACTIONS(1736), + [anon_sym_long] = ACTIONS(1736), + [anon_sym_short] = ACTIONS(1736), + [sym_primitive_type] = ACTIONS(1736), + [anon_sym_enum] = ACTIONS(1736), + [anon_sym_struct] = ACTIONS(1736), + [anon_sym_union] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(1736), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(1736), + [anon_sym_default] = ACTIONS(1736), + [anon_sym_while] = ACTIONS(1736), + [anon_sym_do] = ACTIONS(1736), + [anon_sym_for] = ACTIONS(1736), + [anon_sym_return] = ACTIONS(1736), + [anon_sym_break] = ACTIONS(1736), + [anon_sym_continue] = ACTIONS(1736), + [anon_sym_goto] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1738), + [anon_sym_PLUS_PLUS] = ACTIONS(1738), + [anon_sym_sizeof] = ACTIONS(1736), + [sym_number_literal] = ACTIONS(1738), + [anon_sym_L_SQUOTE] = ACTIONS(1738), + [anon_sym_u_SQUOTE] = ACTIONS(1738), + [anon_sym_U_SQUOTE] = ACTIONS(1738), + [anon_sym_u8_SQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1738), + [anon_sym_L_DQUOTE] = ACTIONS(1738), + [anon_sym_u_DQUOTE] = ACTIONS(1738), + [anon_sym_U_DQUOTE] = ACTIONS(1738), + [anon_sym_u8_DQUOTE] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1738), + [sym_true] = ACTIONS(1736), + [sym_false] = ACTIONS(1736), + [sym_null] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1738), + [anon_sym_ATimport] = ACTIONS(1738), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1736), + [anon_sym_ATcompatibility_alias] = ACTIONS(1738), + [anon_sym_ATprotocol] = ACTIONS(1738), + [anon_sym_ATclass] = ACTIONS(1738), + [anon_sym_ATinterface] = ACTIONS(1738), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1736), + [sym_method_attribute_specifier] = ACTIONS(1736), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1736), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1736), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1736), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1736), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1736), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1736), + [anon_sym_NS_AVAILABLE] = ACTIONS(1736), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1736), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1736), + [anon_sym_API_AVAILABLE] = ACTIONS(1736), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1736), + [anon_sym_API_DEPRECATED] = ACTIONS(1736), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1736), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1736), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1736), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1736), + [anon_sym___deprecated_msg] = ACTIONS(1736), + [anon_sym___deprecated_enum_msg] = ACTIONS(1736), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1736), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1736), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1736), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1736), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1736), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1736), + [anon_sym_ATimplementation] = ACTIONS(1738), + [anon_sym_NS_ENUM] = ACTIONS(1736), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1736), + [anon_sym_NS_OPTIONS] = ACTIONS(1736), + [anon_sym_typeof] = ACTIONS(1736), + [anon_sym___typeof] = ACTIONS(1736), + [anon_sym___typeof__] = ACTIONS(1736), + [sym_self] = ACTIONS(1736), + [sym_super] = ACTIONS(1736), + [sym_nil] = ACTIONS(1736), + [sym_id] = ACTIONS(1736), + [sym_instancetype] = ACTIONS(1736), + [sym_Class] = ACTIONS(1736), + [sym_SEL] = ACTIONS(1736), + [sym_IMP] = ACTIONS(1736), + [sym_BOOL] = ACTIONS(1736), + [sym_auto] = ACTIONS(1736), + [anon_sym_ATautoreleasepool] = ACTIONS(1738), + [anon_sym_ATsynchronized] = ACTIONS(1738), + [anon_sym_ATtry] = ACTIONS(1738), + [anon_sym_ATthrow] = ACTIONS(1738), + [anon_sym_ATselector] = ACTIONS(1738), + [anon_sym_ATencode] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(1736), + [sym_YES] = ACTIONS(1736), + [sym_NO] = ACTIONS(1736), + [anon_sym___builtin_available] = ACTIONS(1736), + [anon_sym_ATavailable] = ACTIONS(1738), + [anon_sym_va_arg] = ACTIONS(1736), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [964] = { + [ts_builtin_sym_end] = ACTIONS(1770), + [sym_identifier] = ACTIONS(1768), + [aux_sym_preproc_include_token1] = ACTIONS(1770), + [aux_sym_preproc_def_token1] = ACTIONS(1770), + [aux_sym_preproc_if_token1] = ACTIONS(1768), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1768), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1768), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_typedef] = ACTIONS(1768), + [anon_sym_extern] = ACTIONS(1768), + [anon_sym___attribute] = ACTIONS(1768), + [anon_sym___attribute__] = ACTIONS(1768), + [anon_sym___declspec] = ACTIONS(1768), + [anon_sym___cdecl] = ACTIONS(1768), + [anon_sym___clrcall] = ACTIONS(1768), + [anon_sym___stdcall] = ACTIONS(1768), + [anon_sym___fastcall] = ACTIONS(1768), + [anon_sym___thiscall] = ACTIONS(1768), + [anon_sym___vectorcall] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1768), + [anon_sym_auto] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1768), + [anon_sym_inline] = ACTIONS(1768), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1768), + [anon_sym_const] = ACTIONS(1768), + [anon_sym_volatile] = ACTIONS(1768), + [anon_sym_restrict] = ACTIONS(1768), + [anon_sym__Atomic] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_out] = ACTIONS(1768), + [anon_sym_inout] = ACTIONS(1768), + [anon_sym_bycopy] = ACTIONS(1768), + [anon_sym_byref] = ACTIONS(1768), + [anon_sym_oneway] = ACTIONS(1768), + [anon_sym__Nullable] = ACTIONS(1768), + [anon_sym__Nonnull] = ACTIONS(1768), + [anon_sym__Nullable_result] = ACTIONS(1768), + [anon_sym__Null_unspecified] = ACTIONS(1768), + [anon_sym___autoreleasing] = ACTIONS(1768), + [anon_sym___nullable] = ACTIONS(1768), + [anon_sym___nonnull] = ACTIONS(1768), + [anon_sym___strong] = ACTIONS(1768), + [anon_sym___weak] = ACTIONS(1768), + [anon_sym___bridge] = ACTIONS(1768), + [anon_sym___bridge_transfer] = ACTIONS(1768), + [anon_sym___bridge_retained] = ACTIONS(1768), + [anon_sym___unsafe_unretained] = ACTIONS(1768), + [anon_sym___block] = ACTIONS(1768), + [anon_sym___kindof] = ACTIONS(1768), + [anon_sym___unused] = ACTIONS(1768), + [anon_sym__Complex] = ACTIONS(1768), + [anon_sym___complex] = ACTIONS(1768), + [anon_sym_IBOutlet] = ACTIONS(1768), + [anon_sym_IBInspectable] = ACTIONS(1768), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1768), + [anon_sym_signed] = ACTIONS(1768), + [anon_sym_unsigned] = ACTIONS(1768), + [anon_sym_long] = ACTIONS(1768), + [anon_sym_short] = ACTIONS(1768), + [sym_primitive_type] = ACTIONS(1768), + [anon_sym_enum] = ACTIONS(1768), + [anon_sym_struct] = ACTIONS(1768), + [anon_sym_union] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_switch] = ACTIONS(1768), + [anon_sym_case] = ACTIONS(1768), + [anon_sym_default] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_do] = ACTIONS(1768), + [anon_sym_for] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_goto] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_sizeof] = ACTIONS(1768), + [sym_number_literal] = ACTIONS(1770), + [anon_sym_L_SQUOTE] = ACTIONS(1770), + [anon_sym_u_SQUOTE] = ACTIONS(1770), + [anon_sym_U_SQUOTE] = ACTIONS(1770), + [anon_sym_u8_SQUOTE] = ACTIONS(1770), + [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_L_DQUOTE] = ACTIONS(1770), + [anon_sym_u_DQUOTE] = ACTIONS(1770), + [anon_sym_U_DQUOTE] = ACTIONS(1770), + [anon_sym_u8_DQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [sym_true] = ACTIONS(1768), + [sym_false] = ACTIONS(1768), + [sym_null] = ACTIONS(1768), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1770), + [anon_sym_ATimport] = ACTIONS(1770), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1768), + [anon_sym_ATcompatibility_alias] = ACTIONS(1770), + [anon_sym_ATprotocol] = ACTIONS(1770), + [anon_sym_ATclass] = ACTIONS(1770), + [anon_sym_ATinterface] = ACTIONS(1770), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1768), + [sym_method_attribute_specifier] = ACTIONS(1768), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1768), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1768), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1768), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1768), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1768), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1768), + [anon_sym_NS_AVAILABLE] = ACTIONS(1768), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1768), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1768), + [anon_sym_API_AVAILABLE] = ACTIONS(1768), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1768), + [anon_sym_API_DEPRECATED] = ACTIONS(1768), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1768), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1768), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1768), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1768), + [anon_sym___deprecated_msg] = ACTIONS(1768), + [anon_sym___deprecated_enum_msg] = ACTIONS(1768), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1768), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1768), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1768), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1768), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1768), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1768), + [anon_sym_ATimplementation] = ACTIONS(1770), + [anon_sym_NS_ENUM] = ACTIONS(1768), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1768), + [anon_sym_NS_OPTIONS] = ACTIONS(1768), + [anon_sym_typeof] = ACTIONS(1768), + [anon_sym___typeof] = ACTIONS(1768), + [anon_sym___typeof__] = ACTIONS(1768), + [sym_self] = ACTIONS(1768), + [sym_super] = ACTIONS(1768), + [sym_nil] = ACTIONS(1768), + [sym_id] = ACTIONS(1768), + [sym_instancetype] = ACTIONS(1768), + [sym_Class] = ACTIONS(1768), + [sym_SEL] = ACTIONS(1768), + [sym_IMP] = ACTIONS(1768), + [sym_BOOL] = ACTIONS(1768), + [sym_auto] = ACTIONS(1768), + [anon_sym_ATautoreleasepool] = ACTIONS(1770), + [anon_sym_ATsynchronized] = ACTIONS(1770), + [anon_sym_ATtry] = ACTIONS(1770), + [anon_sym_ATthrow] = ACTIONS(1770), + [anon_sym_ATselector] = ACTIONS(1770), + [anon_sym_ATencode] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(1768), + [sym_YES] = ACTIONS(1768), + [sym_NO] = ACTIONS(1768), + [anon_sym___builtin_available] = ACTIONS(1768), + [anon_sym_ATavailable] = ACTIONS(1770), + [anon_sym_va_arg] = ACTIONS(1768), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [965] = { + [ts_builtin_sym_end] = ACTIONS(2006), + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [966] = { + [ts_builtin_sym_end] = ACTIONS(2066), + [sym_identifier] = ACTIONS(2064), + [aux_sym_preproc_include_token1] = ACTIONS(2066), + [aux_sym_preproc_def_token1] = ACTIONS(2066), + [aux_sym_preproc_if_token1] = ACTIONS(2064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2064), + [anon_sym_LPAREN2] = ACTIONS(2066), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_TILDE] = ACTIONS(2066), + [anon_sym_DASH] = ACTIONS(2064), + [anon_sym_PLUS] = ACTIONS(2064), + [anon_sym_STAR] = ACTIONS(2066), + [anon_sym_CARET] = ACTIONS(2066), + [anon_sym_AMP] = ACTIONS(2066), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_typedef] = ACTIONS(2064), + [anon_sym_extern] = ACTIONS(2064), + [anon_sym___attribute] = ACTIONS(2064), + [anon_sym___attribute__] = ACTIONS(2064), + [anon_sym___declspec] = ACTIONS(2064), + [anon_sym___cdecl] = ACTIONS(2064), + [anon_sym___clrcall] = ACTIONS(2064), + [anon_sym___stdcall] = ACTIONS(2064), + [anon_sym___fastcall] = ACTIONS(2064), + [anon_sym___thiscall] = ACTIONS(2064), + [anon_sym___vectorcall] = ACTIONS(2064), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2066), + [anon_sym_static] = ACTIONS(2064), + [anon_sym_auto] = ACTIONS(2064), + [anon_sym_register] = ACTIONS(2064), + [anon_sym_inline] = ACTIONS(2064), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2064), + [anon_sym_const] = ACTIONS(2064), + [anon_sym_volatile] = ACTIONS(2064), + [anon_sym_restrict] = ACTIONS(2064), + [anon_sym__Atomic] = ACTIONS(2064), + [anon_sym_in] = ACTIONS(2064), + [anon_sym_out] = ACTIONS(2064), + [anon_sym_inout] = ACTIONS(2064), + [anon_sym_bycopy] = ACTIONS(2064), + [anon_sym_byref] = ACTIONS(2064), + [anon_sym_oneway] = ACTIONS(2064), + [anon_sym__Nullable] = ACTIONS(2064), + [anon_sym__Nonnull] = ACTIONS(2064), + [anon_sym__Nullable_result] = ACTIONS(2064), + [anon_sym__Null_unspecified] = ACTIONS(2064), + [anon_sym___autoreleasing] = ACTIONS(2064), + [anon_sym___nullable] = ACTIONS(2064), + [anon_sym___nonnull] = ACTIONS(2064), + [anon_sym___strong] = ACTIONS(2064), + [anon_sym___weak] = ACTIONS(2064), + [anon_sym___bridge] = ACTIONS(2064), + [anon_sym___bridge_transfer] = ACTIONS(2064), + [anon_sym___bridge_retained] = ACTIONS(2064), + [anon_sym___unsafe_unretained] = ACTIONS(2064), + [anon_sym___block] = ACTIONS(2064), + [anon_sym___kindof] = ACTIONS(2064), + [anon_sym___unused] = ACTIONS(2064), + [anon_sym__Complex] = ACTIONS(2064), + [anon_sym___complex] = ACTIONS(2064), + [anon_sym_IBOutlet] = ACTIONS(2064), + [anon_sym_IBInspectable] = ACTIONS(2064), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2064), + [anon_sym_signed] = ACTIONS(2064), + [anon_sym_unsigned] = ACTIONS(2064), + [anon_sym_long] = ACTIONS(2064), + [anon_sym_short] = ACTIONS(2064), + [sym_primitive_type] = ACTIONS(2064), + [anon_sym_enum] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(2064), + [anon_sym_union] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2064), + [anon_sym_switch] = ACTIONS(2064), + [anon_sym_case] = ACTIONS(2064), + [anon_sym_default] = ACTIONS(2064), + [anon_sym_while] = ACTIONS(2064), + [anon_sym_do] = ACTIONS(2064), + [anon_sym_for] = ACTIONS(2064), + [anon_sym_return] = ACTIONS(2064), + [anon_sym_break] = ACTIONS(2064), + [anon_sym_continue] = ACTIONS(2064), + [anon_sym_goto] = ACTIONS(2064), + [anon_sym_DASH_DASH] = ACTIONS(2066), + [anon_sym_PLUS_PLUS] = ACTIONS(2066), + [anon_sym_sizeof] = ACTIONS(2064), + [sym_number_literal] = ACTIONS(2066), + [anon_sym_L_SQUOTE] = ACTIONS(2066), + [anon_sym_u_SQUOTE] = ACTIONS(2066), + [anon_sym_U_SQUOTE] = ACTIONS(2066), + [anon_sym_u8_SQUOTE] = ACTIONS(2066), + [anon_sym_SQUOTE] = ACTIONS(2066), + [anon_sym_L_DQUOTE] = ACTIONS(2066), + [anon_sym_u_DQUOTE] = ACTIONS(2066), + [anon_sym_U_DQUOTE] = ACTIONS(2066), + [anon_sym_u8_DQUOTE] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(2066), + [sym_true] = ACTIONS(2064), + [sym_false] = ACTIONS(2064), + [sym_null] = ACTIONS(2064), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2066), + [anon_sym_ATimport] = ACTIONS(2066), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2064), + [anon_sym_ATcompatibility_alias] = ACTIONS(2066), + [anon_sym_ATprotocol] = ACTIONS(2066), + [anon_sym_ATclass] = ACTIONS(2066), + [anon_sym_ATinterface] = ACTIONS(2066), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2064), + [sym_method_attribute_specifier] = ACTIONS(2064), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2064), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2064), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2064), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2064), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2064), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2064), + [anon_sym_NS_AVAILABLE] = ACTIONS(2064), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2064), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2064), + [anon_sym_API_AVAILABLE] = ACTIONS(2064), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2064), + [anon_sym_API_DEPRECATED] = ACTIONS(2064), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2064), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2064), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2064), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2064), + [anon_sym___deprecated_msg] = ACTIONS(2064), + [anon_sym___deprecated_enum_msg] = ACTIONS(2064), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2064), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2064), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2064), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2064), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2064), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2064), + [anon_sym_ATimplementation] = ACTIONS(2066), + [anon_sym_NS_ENUM] = ACTIONS(2064), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2064), + [anon_sym_NS_OPTIONS] = ACTIONS(2064), + [anon_sym_typeof] = ACTIONS(2064), + [anon_sym___typeof] = ACTIONS(2064), + [anon_sym___typeof__] = ACTIONS(2064), + [sym_self] = ACTIONS(2064), + [sym_super] = ACTIONS(2064), + [sym_nil] = ACTIONS(2064), + [sym_id] = ACTIONS(2064), + [sym_instancetype] = ACTIONS(2064), + [sym_Class] = ACTIONS(2064), + [sym_SEL] = ACTIONS(2064), + [sym_IMP] = ACTIONS(2064), + [sym_BOOL] = ACTIONS(2064), + [sym_auto] = ACTIONS(2064), + [anon_sym_ATautoreleasepool] = ACTIONS(2066), + [anon_sym_ATsynchronized] = ACTIONS(2066), + [anon_sym_ATtry] = ACTIONS(2066), + [anon_sym_ATthrow] = ACTIONS(2066), + [anon_sym_ATselector] = ACTIONS(2066), + [anon_sym_ATencode] = ACTIONS(2066), + [anon_sym_AT] = ACTIONS(2064), + [sym_YES] = ACTIONS(2064), + [sym_NO] = ACTIONS(2064), + [anon_sym___builtin_available] = ACTIONS(2064), + [anon_sym_ATavailable] = ACTIONS(2066), + [anon_sym_va_arg] = ACTIONS(2064), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [967] = { + [ts_builtin_sym_end] = ACTIONS(2030), + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2030), + [aux_sym_preproc_def_token1] = ACTIONS(2030), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_auto] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_out] = ACTIONS(2028), + [anon_sym_inout] = ACTIONS(2028), + [anon_sym_bycopy] = ACTIONS(2028), + [anon_sym_byref] = ACTIONS(2028), + [anon_sym_oneway] = ACTIONS(2028), + [anon_sym__Nullable] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym__Nullable_result] = ACTIONS(2028), + [anon_sym__Null_unspecified] = ACTIONS(2028), + [anon_sym___autoreleasing] = ACTIONS(2028), + [anon_sym___nullable] = ACTIONS(2028), + [anon_sym___nonnull] = ACTIONS(2028), + [anon_sym___strong] = ACTIONS(2028), + [anon_sym___weak] = ACTIONS(2028), + [anon_sym___bridge] = ACTIONS(2028), + [anon_sym___bridge_transfer] = ACTIONS(2028), + [anon_sym___bridge_retained] = ACTIONS(2028), + [anon_sym___unsafe_unretained] = ACTIONS(2028), + [anon_sym___block] = ACTIONS(2028), + [anon_sym___kindof] = ACTIONS(2028), + [anon_sym___unused] = ACTIONS(2028), + [anon_sym__Complex] = ACTIONS(2028), + [anon_sym___complex] = ACTIONS(2028), + [anon_sym_IBOutlet] = ACTIONS(2028), + [anon_sym_IBInspectable] = ACTIONS(2028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2028), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2030), + [anon_sym_ATimport] = ACTIONS(2030), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2028), + [anon_sym_ATcompatibility_alias] = ACTIONS(2030), + [anon_sym_ATprotocol] = ACTIONS(2030), + [anon_sym_ATclass] = ACTIONS(2030), + [anon_sym_ATinterface] = ACTIONS(2030), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2028), + [sym_method_attribute_specifier] = ACTIONS(2028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE] = ACTIONS(2028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_API_AVAILABLE] = ACTIONS(2028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_API_DEPRECATED] = ACTIONS(2028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2028), + [anon_sym___deprecated_msg] = ACTIONS(2028), + [anon_sym___deprecated_enum_msg] = ACTIONS(2028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2028), + [anon_sym_ATimplementation] = ACTIONS(2030), + [anon_sym_NS_ENUM] = ACTIONS(2028), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2028), + [anon_sym_NS_OPTIONS] = ACTIONS(2028), + [anon_sym_typeof] = ACTIONS(2028), + [anon_sym___typeof] = ACTIONS(2028), + [anon_sym___typeof__] = ACTIONS(2028), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_nil] = ACTIONS(2028), + [sym_id] = ACTIONS(2028), + [sym_instancetype] = ACTIONS(2028), + [sym_Class] = ACTIONS(2028), + [sym_SEL] = ACTIONS(2028), + [sym_IMP] = ACTIONS(2028), + [sym_BOOL] = ACTIONS(2028), + [sym_auto] = ACTIONS(2028), + [anon_sym_ATautoreleasepool] = ACTIONS(2030), + [anon_sym_ATsynchronized] = ACTIONS(2030), + [anon_sym_ATtry] = ACTIONS(2030), + [anon_sym_ATthrow] = ACTIONS(2030), + [anon_sym_ATselector] = ACTIONS(2030), + [anon_sym_ATencode] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2028), + [sym_YES] = ACTIONS(2028), + [sym_NO] = ACTIONS(2028), + [anon_sym___builtin_available] = ACTIONS(2028), + [anon_sym_ATavailable] = ACTIONS(2030), + [anon_sym_va_arg] = ACTIONS(2028), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [968] = { + [ts_builtin_sym_end] = ACTIONS(2030), + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2030), + [aux_sym_preproc_def_token1] = ACTIONS(2030), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_auto] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_out] = ACTIONS(2028), + [anon_sym_inout] = ACTIONS(2028), + [anon_sym_bycopy] = ACTIONS(2028), + [anon_sym_byref] = ACTIONS(2028), + [anon_sym_oneway] = ACTIONS(2028), + [anon_sym__Nullable] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym__Nullable_result] = ACTIONS(2028), + [anon_sym__Null_unspecified] = ACTIONS(2028), + [anon_sym___autoreleasing] = ACTIONS(2028), + [anon_sym___nullable] = ACTIONS(2028), + [anon_sym___nonnull] = ACTIONS(2028), + [anon_sym___strong] = ACTIONS(2028), + [anon_sym___weak] = ACTIONS(2028), + [anon_sym___bridge] = ACTIONS(2028), + [anon_sym___bridge_transfer] = ACTIONS(2028), + [anon_sym___bridge_retained] = ACTIONS(2028), + [anon_sym___unsafe_unretained] = ACTIONS(2028), + [anon_sym___block] = ACTIONS(2028), + [anon_sym___kindof] = ACTIONS(2028), + [anon_sym___unused] = ACTIONS(2028), + [anon_sym__Complex] = ACTIONS(2028), + [anon_sym___complex] = ACTIONS(2028), + [anon_sym_IBOutlet] = ACTIONS(2028), + [anon_sym_IBInspectable] = ACTIONS(2028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2028), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2030), + [anon_sym_ATimport] = ACTIONS(2030), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2028), + [anon_sym_ATcompatibility_alias] = ACTIONS(2030), + [anon_sym_ATprotocol] = ACTIONS(2030), + [anon_sym_ATclass] = ACTIONS(2030), + [anon_sym_ATinterface] = ACTIONS(2030), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2028), + [sym_method_attribute_specifier] = ACTIONS(2028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE] = ACTIONS(2028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_API_AVAILABLE] = ACTIONS(2028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_API_DEPRECATED] = ACTIONS(2028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2028), + [anon_sym___deprecated_msg] = ACTIONS(2028), + [anon_sym___deprecated_enum_msg] = ACTIONS(2028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2028), + [anon_sym_ATimplementation] = ACTIONS(2030), + [anon_sym_NS_ENUM] = ACTIONS(2028), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2028), + [anon_sym_NS_OPTIONS] = ACTIONS(2028), + [anon_sym_typeof] = ACTIONS(2028), + [anon_sym___typeof] = ACTIONS(2028), + [anon_sym___typeof__] = ACTIONS(2028), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_nil] = ACTIONS(2028), + [sym_id] = ACTIONS(2028), + [sym_instancetype] = ACTIONS(2028), + [sym_Class] = ACTIONS(2028), + [sym_SEL] = ACTIONS(2028), + [sym_IMP] = ACTIONS(2028), + [sym_BOOL] = ACTIONS(2028), + [sym_auto] = ACTIONS(2028), + [anon_sym_ATautoreleasepool] = ACTIONS(2030), + [anon_sym_ATsynchronized] = ACTIONS(2030), + [anon_sym_ATtry] = ACTIONS(2030), + [anon_sym_ATthrow] = ACTIONS(2030), + [anon_sym_ATselector] = ACTIONS(2030), + [anon_sym_ATencode] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2028), + [sym_YES] = ACTIONS(2028), + [sym_NO] = ACTIONS(2028), + [anon_sym___builtin_available] = ACTIONS(2028), + [anon_sym_ATavailable] = ACTIONS(2030), + [anon_sym_va_arg] = ACTIONS(2028), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [969] = { + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2068), + [aux_sym_preproc_include_token1] = ACTIONS(2070), + [aux_sym_preproc_def_token1] = ACTIONS(2070), + [aux_sym_preproc_if_token1] = ACTIONS(2068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2068), + [anon_sym_LPAREN2] = ACTIONS(2070), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2070), + [anon_sym_CARET] = ACTIONS(2070), + [anon_sym_AMP] = ACTIONS(2070), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_typedef] = ACTIONS(2068), + [anon_sym_extern] = ACTIONS(2068), + [anon_sym___attribute] = ACTIONS(2068), + [anon_sym___attribute__] = ACTIONS(2068), + [anon_sym___declspec] = ACTIONS(2068), + [anon_sym___cdecl] = ACTIONS(2068), + [anon_sym___clrcall] = ACTIONS(2068), + [anon_sym___stdcall] = ACTIONS(2068), + [anon_sym___fastcall] = ACTIONS(2068), + [anon_sym___thiscall] = ACTIONS(2068), + [anon_sym___vectorcall] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_auto] = ACTIONS(2068), + [anon_sym_register] = ACTIONS(2068), + [anon_sym_inline] = ACTIONS(2068), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_volatile] = ACTIONS(2068), + [anon_sym_restrict] = ACTIONS(2068), + [anon_sym__Atomic] = ACTIONS(2068), + [anon_sym_in] = ACTIONS(2068), + [anon_sym_out] = ACTIONS(2068), + [anon_sym_inout] = ACTIONS(2068), + [anon_sym_bycopy] = ACTIONS(2068), + [anon_sym_byref] = ACTIONS(2068), + [anon_sym_oneway] = ACTIONS(2068), + [anon_sym__Nullable] = ACTIONS(2068), + [anon_sym__Nonnull] = ACTIONS(2068), + [anon_sym__Nullable_result] = ACTIONS(2068), + [anon_sym__Null_unspecified] = ACTIONS(2068), + [anon_sym___autoreleasing] = ACTIONS(2068), + [anon_sym___nullable] = ACTIONS(2068), + [anon_sym___nonnull] = ACTIONS(2068), + [anon_sym___strong] = ACTIONS(2068), + [anon_sym___weak] = ACTIONS(2068), + [anon_sym___bridge] = ACTIONS(2068), + [anon_sym___bridge_transfer] = ACTIONS(2068), + [anon_sym___bridge_retained] = ACTIONS(2068), + [anon_sym___unsafe_unretained] = ACTIONS(2068), + [anon_sym___block] = ACTIONS(2068), + [anon_sym___kindof] = ACTIONS(2068), + [anon_sym___unused] = ACTIONS(2068), + [anon_sym__Complex] = ACTIONS(2068), + [anon_sym___complex] = ACTIONS(2068), + [anon_sym_IBOutlet] = ACTIONS(2068), + [anon_sym_IBInspectable] = ACTIONS(2068), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2068), + [anon_sym_signed] = ACTIONS(2068), + [anon_sym_unsigned] = ACTIONS(2068), + [anon_sym_long] = ACTIONS(2068), + [anon_sym_short] = ACTIONS(2068), + [sym_primitive_type] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [anon_sym_struct] = ACTIONS(2068), + [anon_sym_union] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_case] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_goto] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_sizeof] = ACTIONS(2068), + [sym_number_literal] = ACTIONS(2070), + [anon_sym_L_SQUOTE] = ACTIONS(2070), + [anon_sym_u_SQUOTE] = ACTIONS(2070), + [anon_sym_U_SQUOTE] = ACTIONS(2070), + [anon_sym_u8_SQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), + [anon_sym_L_DQUOTE] = ACTIONS(2070), + [anon_sym_u_DQUOTE] = ACTIONS(2070), + [anon_sym_U_DQUOTE] = ACTIONS(2070), + [anon_sym_u8_DQUOTE] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2070), + [anon_sym_ATimport] = ACTIONS(2070), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2068), + [anon_sym_ATcompatibility_alias] = ACTIONS(2070), + [anon_sym_ATprotocol] = ACTIONS(2070), + [anon_sym_ATclass] = ACTIONS(2070), + [anon_sym_ATinterface] = ACTIONS(2070), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2068), + [sym_method_attribute_specifier] = ACTIONS(2068), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2068), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2068), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2068), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2068), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2068), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2068), + [anon_sym_NS_AVAILABLE] = ACTIONS(2068), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2068), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2068), + [anon_sym_API_AVAILABLE] = ACTIONS(2068), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2068), + [anon_sym_API_DEPRECATED] = ACTIONS(2068), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2068), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2068), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2068), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2068), + [anon_sym___deprecated_msg] = ACTIONS(2068), + [anon_sym___deprecated_enum_msg] = ACTIONS(2068), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2068), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2068), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2068), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2068), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2068), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2068), + [anon_sym_ATimplementation] = ACTIONS(2070), + [anon_sym_NS_ENUM] = ACTIONS(2068), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2068), + [anon_sym_NS_OPTIONS] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym___typeof] = ACTIONS(2068), + [anon_sym___typeof__] = ACTIONS(2068), + [sym_self] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_nil] = ACTIONS(2068), + [sym_id] = ACTIONS(2068), + [sym_instancetype] = ACTIONS(2068), + [sym_Class] = ACTIONS(2068), + [sym_SEL] = ACTIONS(2068), + [sym_IMP] = ACTIONS(2068), + [sym_BOOL] = ACTIONS(2068), + [sym_auto] = ACTIONS(2068), + [anon_sym_ATautoreleasepool] = ACTIONS(2070), + [anon_sym_ATsynchronized] = ACTIONS(2070), + [anon_sym_ATtry] = ACTIONS(2070), + [anon_sym_ATthrow] = ACTIONS(2070), + [anon_sym_ATselector] = ACTIONS(2070), + [anon_sym_ATencode] = ACTIONS(2070), + [anon_sym_AT] = ACTIONS(2068), + [sym_YES] = ACTIONS(2068), + [sym_NO] = ACTIONS(2068), + [anon_sym___builtin_available] = ACTIONS(2068), + [anon_sym_ATavailable] = ACTIONS(2070), + [anon_sym_va_arg] = ACTIONS(2068), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [970] = { + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2076), + [aux_sym_preproc_include_token1] = ACTIONS(2078), + [aux_sym_preproc_def_token1] = ACTIONS(2078), + [aux_sym_preproc_if_token1] = ACTIONS(2076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2076), + [anon_sym_LPAREN2] = ACTIONS(2078), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2076), + [anon_sym_PLUS] = ACTIONS(2076), + [anon_sym_STAR] = ACTIONS(2078), + [anon_sym_CARET] = ACTIONS(2078), + [anon_sym_AMP] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_typedef] = ACTIONS(2076), + [anon_sym_extern] = ACTIONS(2076), + [anon_sym___attribute] = ACTIONS(2076), + [anon_sym___attribute__] = ACTIONS(2076), + [anon_sym___declspec] = ACTIONS(2076), + [anon_sym___cdecl] = ACTIONS(2076), + [anon_sym___clrcall] = ACTIONS(2076), + [anon_sym___stdcall] = ACTIONS(2076), + [anon_sym___fastcall] = ACTIONS(2076), + [anon_sym___thiscall] = ACTIONS(2076), + [anon_sym___vectorcall] = ACTIONS(2076), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2076), + [anon_sym_auto] = ACTIONS(2076), + [anon_sym_register] = ACTIONS(2076), + [anon_sym_inline] = ACTIONS(2076), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2076), + [anon_sym_const] = ACTIONS(2076), + [anon_sym_volatile] = ACTIONS(2076), + [anon_sym_restrict] = ACTIONS(2076), + [anon_sym__Atomic] = ACTIONS(2076), + [anon_sym_in] = ACTIONS(2076), + [anon_sym_out] = ACTIONS(2076), + [anon_sym_inout] = ACTIONS(2076), + [anon_sym_bycopy] = ACTIONS(2076), + [anon_sym_byref] = ACTIONS(2076), + [anon_sym_oneway] = ACTIONS(2076), + [anon_sym__Nullable] = ACTIONS(2076), + [anon_sym__Nonnull] = ACTIONS(2076), + [anon_sym__Nullable_result] = ACTIONS(2076), + [anon_sym__Null_unspecified] = ACTIONS(2076), + [anon_sym___autoreleasing] = ACTIONS(2076), + [anon_sym___nullable] = ACTIONS(2076), + [anon_sym___nonnull] = ACTIONS(2076), + [anon_sym___strong] = ACTIONS(2076), + [anon_sym___weak] = ACTIONS(2076), + [anon_sym___bridge] = ACTIONS(2076), + [anon_sym___bridge_transfer] = ACTIONS(2076), + [anon_sym___bridge_retained] = ACTIONS(2076), + [anon_sym___unsafe_unretained] = ACTIONS(2076), + [anon_sym___block] = ACTIONS(2076), + [anon_sym___kindof] = ACTIONS(2076), + [anon_sym___unused] = ACTIONS(2076), + [anon_sym__Complex] = ACTIONS(2076), + [anon_sym___complex] = ACTIONS(2076), + [anon_sym_IBOutlet] = ACTIONS(2076), + [anon_sym_IBInspectable] = ACTIONS(2076), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2076), + [anon_sym_signed] = ACTIONS(2076), + [anon_sym_unsigned] = ACTIONS(2076), + [anon_sym_long] = ACTIONS(2076), + [anon_sym_short] = ACTIONS(2076), + [sym_primitive_type] = ACTIONS(2076), + [anon_sym_enum] = ACTIONS(2076), + [anon_sym_struct] = ACTIONS(2076), + [anon_sym_union] = ACTIONS(2076), + [anon_sym_if] = ACTIONS(2076), + [anon_sym_switch] = ACTIONS(2076), + [anon_sym_case] = ACTIONS(2076), + [anon_sym_default] = ACTIONS(2076), + [anon_sym_while] = ACTIONS(2076), + [anon_sym_do] = ACTIONS(2076), + [anon_sym_for] = ACTIONS(2076), + [anon_sym_return] = ACTIONS(2076), + [anon_sym_break] = ACTIONS(2076), + [anon_sym_continue] = ACTIONS(2076), + [anon_sym_goto] = ACTIONS(2076), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_PLUS_PLUS] = ACTIONS(2078), + [anon_sym_sizeof] = ACTIONS(2076), + [sym_number_literal] = ACTIONS(2078), + [anon_sym_L_SQUOTE] = ACTIONS(2078), + [anon_sym_u_SQUOTE] = ACTIONS(2078), + [anon_sym_U_SQUOTE] = ACTIONS(2078), + [anon_sym_u8_SQUOTE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2078), + [anon_sym_L_DQUOTE] = ACTIONS(2078), + [anon_sym_u_DQUOTE] = ACTIONS(2078), + [anon_sym_U_DQUOTE] = ACTIONS(2078), + [anon_sym_u8_DQUOTE] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [sym_true] = ACTIONS(2076), + [sym_false] = ACTIONS(2076), + [sym_null] = ACTIONS(2076), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2078), + [anon_sym_ATimport] = ACTIONS(2078), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2076), + [anon_sym_ATcompatibility_alias] = ACTIONS(2078), + [anon_sym_ATprotocol] = ACTIONS(2078), + [anon_sym_ATclass] = ACTIONS(2078), + [anon_sym_ATinterface] = ACTIONS(2078), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2076), + [sym_method_attribute_specifier] = ACTIONS(2076), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2076), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2076), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2076), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2076), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2076), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2076), + [anon_sym_NS_AVAILABLE] = ACTIONS(2076), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2076), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2076), + [anon_sym_API_AVAILABLE] = ACTIONS(2076), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2076), + [anon_sym_API_DEPRECATED] = ACTIONS(2076), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2076), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2076), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2076), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2076), + [anon_sym___deprecated_msg] = ACTIONS(2076), + [anon_sym___deprecated_enum_msg] = ACTIONS(2076), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2076), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2076), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2076), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2076), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2076), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2076), + [anon_sym_ATimplementation] = ACTIONS(2078), + [anon_sym_NS_ENUM] = ACTIONS(2076), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2076), + [anon_sym_NS_OPTIONS] = ACTIONS(2076), + [anon_sym_typeof] = ACTIONS(2076), + [anon_sym___typeof] = ACTIONS(2076), + [anon_sym___typeof__] = ACTIONS(2076), + [sym_self] = ACTIONS(2076), + [sym_super] = ACTIONS(2076), + [sym_nil] = ACTIONS(2076), + [sym_id] = ACTIONS(2076), + [sym_instancetype] = ACTIONS(2076), + [sym_Class] = ACTIONS(2076), + [sym_SEL] = ACTIONS(2076), + [sym_IMP] = ACTIONS(2076), + [sym_BOOL] = ACTIONS(2076), + [sym_auto] = ACTIONS(2076), + [anon_sym_ATautoreleasepool] = ACTIONS(2078), + [anon_sym_ATsynchronized] = ACTIONS(2078), + [anon_sym_ATtry] = ACTIONS(2078), + [anon_sym_ATthrow] = ACTIONS(2078), + [anon_sym_ATselector] = ACTIONS(2078), + [anon_sym_ATencode] = ACTIONS(2078), + [anon_sym_AT] = ACTIONS(2076), + [sym_YES] = ACTIONS(2076), + [sym_NO] = ACTIONS(2076), + [anon_sym___builtin_available] = ACTIONS(2076), + [anon_sym_ATavailable] = ACTIONS(2078), + [anon_sym_va_arg] = ACTIONS(2076), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [971] = { + [ts_builtin_sym_end] = ACTIONS(2082), + [sym_identifier] = ACTIONS(2080), + [aux_sym_preproc_include_token1] = ACTIONS(2082), + [aux_sym_preproc_def_token1] = ACTIONS(2082), + [aux_sym_preproc_if_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), + [anon_sym_LPAREN2] = ACTIONS(2082), + [anon_sym_BANG] = ACTIONS(2082), + [anon_sym_TILDE] = ACTIONS(2082), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(2082), + [anon_sym_CARET] = ACTIONS(2082), + [anon_sym_AMP] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_typedef] = ACTIONS(2080), + [anon_sym_extern] = ACTIONS(2080), + [anon_sym___attribute] = ACTIONS(2080), + [anon_sym___attribute__] = ACTIONS(2080), + [anon_sym___declspec] = ACTIONS(2080), + [anon_sym___cdecl] = ACTIONS(2080), + [anon_sym___clrcall] = ACTIONS(2080), + [anon_sym___stdcall] = ACTIONS(2080), + [anon_sym___fastcall] = ACTIONS(2080), + [anon_sym___thiscall] = ACTIONS(2080), + [anon_sym___vectorcall] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_auto] = ACTIONS(2080), + [anon_sym_register] = ACTIONS(2080), + [anon_sym_inline] = ACTIONS(2080), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_volatile] = ACTIONS(2080), + [anon_sym_restrict] = ACTIONS(2080), + [anon_sym__Atomic] = ACTIONS(2080), + [anon_sym_in] = ACTIONS(2080), + [anon_sym_out] = ACTIONS(2080), + [anon_sym_inout] = ACTIONS(2080), + [anon_sym_bycopy] = ACTIONS(2080), + [anon_sym_byref] = ACTIONS(2080), + [anon_sym_oneway] = ACTIONS(2080), + [anon_sym__Nullable] = ACTIONS(2080), + [anon_sym__Nonnull] = ACTIONS(2080), + [anon_sym__Nullable_result] = ACTIONS(2080), + [anon_sym__Null_unspecified] = ACTIONS(2080), + [anon_sym___autoreleasing] = ACTIONS(2080), + [anon_sym___nullable] = ACTIONS(2080), + [anon_sym___nonnull] = ACTIONS(2080), + [anon_sym___strong] = ACTIONS(2080), + [anon_sym___weak] = ACTIONS(2080), + [anon_sym___bridge] = ACTIONS(2080), + [anon_sym___bridge_transfer] = ACTIONS(2080), + [anon_sym___bridge_retained] = ACTIONS(2080), + [anon_sym___unsafe_unretained] = ACTIONS(2080), + [anon_sym___block] = ACTIONS(2080), + [anon_sym___kindof] = ACTIONS(2080), + [anon_sym___unused] = ACTIONS(2080), + [anon_sym__Complex] = ACTIONS(2080), + [anon_sym___complex] = ACTIONS(2080), + [anon_sym_IBOutlet] = ACTIONS(2080), + [anon_sym_IBInspectable] = ACTIONS(2080), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2080), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [sym_primitive_type] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), + [anon_sym_struct] = ACTIONS(2080), + [anon_sym_union] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2080), + [anon_sym_case] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_goto] = ACTIONS(2080), + [anon_sym_DASH_DASH] = ACTIONS(2082), + [anon_sym_PLUS_PLUS] = ACTIONS(2082), + [anon_sym_sizeof] = ACTIONS(2080), + [sym_number_literal] = ACTIONS(2082), + [anon_sym_L_SQUOTE] = ACTIONS(2082), + [anon_sym_u_SQUOTE] = ACTIONS(2082), + [anon_sym_U_SQUOTE] = ACTIONS(2082), + [anon_sym_u8_SQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2082), + [anon_sym_L_DQUOTE] = ACTIONS(2082), + [anon_sym_u_DQUOTE] = ACTIONS(2082), + [anon_sym_U_DQUOTE] = ACTIONS(2082), + [anon_sym_u8_DQUOTE] = ACTIONS(2082), + [anon_sym_DQUOTE] = ACTIONS(2082), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2082), + [anon_sym_ATimport] = ACTIONS(2082), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2080), + [anon_sym_ATcompatibility_alias] = ACTIONS(2082), + [anon_sym_ATprotocol] = ACTIONS(2082), + [anon_sym_ATclass] = ACTIONS(2082), + [anon_sym_ATinterface] = ACTIONS(2082), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2080), + [sym_method_attribute_specifier] = ACTIONS(2080), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2080), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2080), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2080), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2080), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2080), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2080), + [anon_sym_NS_AVAILABLE] = ACTIONS(2080), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2080), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2080), + [anon_sym_API_AVAILABLE] = ACTIONS(2080), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2080), + [anon_sym_API_DEPRECATED] = ACTIONS(2080), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2080), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2080), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2080), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2080), + [anon_sym___deprecated_msg] = ACTIONS(2080), + [anon_sym___deprecated_enum_msg] = ACTIONS(2080), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2080), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2080), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2080), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2080), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2080), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2080), + [anon_sym_ATimplementation] = ACTIONS(2082), + [anon_sym_NS_ENUM] = ACTIONS(2080), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2080), + [anon_sym_NS_OPTIONS] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(2080), + [anon_sym___typeof] = ACTIONS(2080), + [anon_sym___typeof__] = ACTIONS(2080), + [sym_self] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_nil] = ACTIONS(2080), + [sym_id] = ACTIONS(2080), + [sym_instancetype] = ACTIONS(2080), + [sym_Class] = ACTIONS(2080), + [sym_SEL] = ACTIONS(2080), + [sym_IMP] = ACTIONS(2080), + [sym_BOOL] = ACTIONS(2080), + [sym_auto] = ACTIONS(2080), + [anon_sym_ATautoreleasepool] = ACTIONS(2082), + [anon_sym_ATsynchronized] = ACTIONS(2082), + [anon_sym_ATtry] = ACTIONS(2082), + [anon_sym_ATthrow] = ACTIONS(2082), + [anon_sym_ATselector] = ACTIONS(2082), + [anon_sym_ATencode] = ACTIONS(2082), + [anon_sym_AT] = ACTIONS(2080), + [sym_YES] = ACTIONS(2080), + [sym_NO] = ACTIONS(2080), + [anon_sym___builtin_available] = ACTIONS(2080), + [anon_sym_ATavailable] = ACTIONS(2082), + [anon_sym_va_arg] = ACTIONS(2080), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [972] = { + [ts_builtin_sym_end] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [973] = { + [ts_builtin_sym_end] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [974] = { + [ts_builtin_sym_end] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [975] = { + [ts_builtin_sym_end] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [976] = { + [ts_builtin_sym_end] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [977] = { + [ts_builtin_sym_end] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [978] = { + [ts_builtin_sym_end] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [979] = { + [ts_builtin_sym_end] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [980] = { + [ts_builtin_sym_end] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [981] = { + [ts_builtin_sym_end] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [982] = { + [ts_builtin_sym_end] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [983] = { + [ts_builtin_sym_end] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [984] = { + [ts_builtin_sym_end] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [985] = { + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [986] = { + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [987] = { + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [988] = { + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [989] = { + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [990] = { + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [991] = { + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [992] = { + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [993] = { + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [994] = { + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [995] = { + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [996] = { + [ts_builtin_sym_end] = ACTIONS(1838), + [sym_identifier] = ACTIONS(1836), + [aux_sym_preproc_include_token1] = ACTIONS(1838), + [aux_sym_preproc_def_token1] = ACTIONS(1838), + [aux_sym_preproc_if_token1] = ACTIONS(1836), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1836), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1836), + [anon_sym_LPAREN2] = ACTIONS(1838), + [anon_sym_BANG] = ACTIONS(1838), + [anon_sym_TILDE] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_STAR] = ACTIONS(1838), + [anon_sym_CARET] = ACTIONS(1838), + [anon_sym_AMP] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_typedef] = ACTIONS(1836), + [anon_sym_extern] = ACTIONS(1836), + [anon_sym___attribute] = ACTIONS(1836), + [anon_sym___attribute__] = ACTIONS(1836), + [anon_sym___declspec] = ACTIONS(1836), + [anon_sym___cdecl] = ACTIONS(1836), + [anon_sym___clrcall] = ACTIONS(1836), + [anon_sym___stdcall] = ACTIONS(1836), + [anon_sym___fastcall] = ACTIONS(1836), + [anon_sym___thiscall] = ACTIONS(1836), + [anon_sym___vectorcall] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_static] = ACTIONS(1836), + [anon_sym_auto] = ACTIONS(1836), + [anon_sym_register] = ACTIONS(1836), + [anon_sym_inline] = ACTIONS(1836), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1836), + [anon_sym_const] = ACTIONS(1836), + [anon_sym_volatile] = ACTIONS(1836), + [anon_sym_restrict] = ACTIONS(1836), + [anon_sym__Atomic] = ACTIONS(1836), + [anon_sym_in] = ACTIONS(1836), + [anon_sym_out] = ACTIONS(1836), + [anon_sym_inout] = ACTIONS(1836), + [anon_sym_bycopy] = ACTIONS(1836), + [anon_sym_byref] = ACTIONS(1836), + [anon_sym_oneway] = ACTIONS(1836), + [anon_sym__Nullable] = ACTIONS(1836), + [anon_sym__Nonnull] = ACTIONS(1836), + [anon_sym__Nullable_result] = ACTIONS(1836), + [anon_sym__Null_unspecified] = ACTIONS(1836), + [anon_sym___autoreleasing] = ACTIONS(1836), + [anon_sym___nullable] = ACTIONS(1836), + [anon_sym___nonnull] = ACTIONS(1836), + [anon_sym___strong] = ACTIONS(1836), + [anon_sym___weak] = ACTIONS(1836), + [anon_sym___bridge] = ACTIONS(1836), + [anon_sym___bridge_transfer] = ACTIONS(1836), + [anon_sym___bridge_retained] = ACTIONS(1836), + [anon_sym___unsafe_unretained] = ACTIONS(1836), + [anon_sym___block] = ACTIONS(1836), + [anon_sym___kindof] = ACTIONS(1836), + [anon_sym___unused] = ACTIONS(1836), + [anon_sym__Complex] = ACTIONS(1836), + [anon_sym___complex] = ACTIONS(1836), + [anon_sym_IBOutlet] = ACTIONS(1836), + [anon_sym_IBInspectable] = ACTIONS(1836), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1836), + [anon_sym_signed] = ACTIONS(1836), + [anon_sym_unsigned] = ACTIONS(1836), + [anon_sym_long] = ACTIONS(1836), + [anon_sym_short] = ACTIONS(1836), + [sym_primitive_type] = ACTIONS(1836), + [anon_sym_enum] = ACTIONS(1836), + [anon_sym_struct] = ACTIONS(1836), + [anon_sym_union] = ACTIONS(1836), + [anon_sym_if] = ACTIONS(1836), + [anon_sym_switch] = ACTIONS(1836), + [anon_sym_case] = ACTIONS(1836), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1836), + [anon_sym_do] = ACTIONS(1836), + [anon_sym_for] = ACTIONS(1836), + [anon_sym_return] = ACTIONS(1836), + [anon_sym_break] = ACTIONS(1836), + [anon_sym_continue] = ACTIONS(1836), + [anon_sym_goto] = ACTIONS(1836), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_PLUS_PLUS] = ACTIONS(1838), + [anon_sym_sizeof] = ACTIONS(1836), + [sym_number_literal] = ACTIONS(1838), + [anon_sym_L_SQUOTE] = ACTIONS(1838), + [anon_sym_u_SQUOTE] = ACTIONS(1838), + [anon_sym_U_SQUOTE] = ACTIONS(1838), + [anon_sym_u8_SQUOTE] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1836), + [sym_false] = ACTIONS(1836), + [sym_null] = ACTIONS(1836), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1838), + [anon_sym_ATimport] = ACTIONS(1838), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1836), + [anon_sym_ATcompatibility_alias] = ACTIONS(1838), + [anon_sym_ATprotocol] = ACTIONS(1838), + [anon_sym_ATclass] = ACTIONS(1838), + [anon_sym_ATinterface] = ACTIONS(1838), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1836), + [sym_method_attribute_specifier] = ACTIONS(1836), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1836), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1836), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1836), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1836), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1836), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1836), + [anon_sym_NS_AVAILABLE] = ACTIONS(1836), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1836), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1836), + [anon_sym_API_AVAILABLE] = ACTIONS(1836), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1836), + [anon_sym_API_DEPRECATED] = ACTIONS(1836), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1836), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1836), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1836), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1836), + [anon_sym___deprecated_msg] = ACTIONS(1836), + [anon_sym___deprecated_enum_msg] = ACTIONS(1836), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1836), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1836), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1836), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1836), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1836), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1836), + [anon_sym_ATimplementation] = ACTIONS(1838), + [anon_sym_NS_ENUM] = ACTIONS(1836), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1836), + [anon_sym_NS_OPTIONS] = ACTIONS(1836), + [anon_sym_typeof] = ACTIONS(1836), + [anon_sym___typeof] = ACTIONS(1836), + [anon_sym___typeof__] = ACTIONS(1836), + [sym_self] = ACTIONS(1836), + [sym_super] = ACTIONS(1836), + [sym_nil] = ACTIONS(1836), + [sym_id] = ACTIONS(1836), + [sym_instancetype] = ACTIONS(1836), + [sym_Class] = ACTIONS(1836), + [sym_SEL] = ACTIONS(1836), + [sym_IMP] = ACTIONS(1836), + [sym_BOOL] = ACTIONS(1836), + [sym_auto] = ACTIONS(1836), + [anon_sym_ATautoreleasepool] = ACTIONS(1838), + [anon_sym_ATsynchronized] = ACTIONS(1838), + [anon_sym_ATtry] = ACTIONS(1838), + [anon_sym_ATthrow] = ACTIONS(1838), + [anon_sym_ATselector] = ACTIONS(1838), + [anon_sym_ATencode] = ACTIONS(1838), + [anon_sym_AT] = ACTIONS(1836), + [sym_YES] = ACTIONS(1836), + [sym_NO] = ACTIONS(1836), + [anon_sym___builtin_available] = ACTIONS(1836), + [anon_sym_ATavailable] = ACTIONS(1838), + [anon_sym_va_arg] = ACTIONS(1836), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [997] = { + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [998] = { + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [999] = { + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1000] = { + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1001] = { + [ts_builtin_sym_end] = ACTIONS(2134), + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1002] = { + [ts_builtin_sym_end] = ACTIONS(2134), + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1003] = { + [ts_builtin_sym_end] = ACTIONS(2134), + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1004] = { + [ts_builtin_sym_end] = ACTIONS(2134), + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1005] = { + [ts_builtin_sym_end] = ACTIONS(2134), + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1006] = { + [ts_builtin_sym_end] = ACTIONS(2134), + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1007] = { + [ts_builtin_sym_end] = ACTIONS(2134), + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1008] = { + [ts_builtin_sym_end] = ACTIONS(2134), + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1009] = { + [ts_builtin_sym_end] = ACTIONS(2134), + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1010] = { + [ts_builtin_sym_end] = ACTIONS(2134), + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1011] = { + [ts_builtin_sym_end] = ACTIONS(2134), + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1012] = { + [ts_builtin_sym_end] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2128), + [aux_sym_preproc_include_token1] = ACTIONS(2130), + [aux_sym_preproc_def_token1] = ACTIONS(2130), + [aux_sym_preproc_if_token1] = ACTIONS(2128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2128), + [anon_sym_LPAREN2] = ACTIONS(2130), + [anon_sym_BANG] = ACTIONS(2130), + [anon_sym_TILDE] = ACTIONS(2130), + [anon_sym_DASH] = ACTIONS(2128), + [anon_sym_PLUS] = ACTIONS(2128), + [anon_sym_STAR] = ACTIONS(2130), + [anon_sym_CARET] = ACTIONS(2130), + [anon_sym_AMP] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2130), + [anon_sym_typedef] = ACTIONS(2128), + [anon_sym_extern] = ACTIONS(2128), + [anon_sym___attribute] = ACTIONS(2128), + [anon_sym___attribute__] = ACTIONS(2128), + [anon_sym___declspec] = ACTIONS(2128), + [anon_sym___cdecl] = ACTIONS(2128), + [anon_sym___clrcall] = ACTIONS(2128), + [anon_sym___stdcall] = ACTIONS(2128), + [anon_sym___fastcall] = ACTIONS(2128), + [anon_sym___thiscall] = ACTIONS(2128), + [anon_sym___vectorcall] = ACTIONS(2128), + [anon_sym_LBRACE] = ACTIONS(2130), + [anon_sym_RBRACE] = ACTIONS(2130), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_static] = ACTIONS(2128), + [anon_sym_auto] = ACTIONS(2128), + [anon_sym_register] = ACTIONS(2128), + [anon_sym_inline] = ACTIONS(2128), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2128), + [anon_sym_const] = ACTIONS(2128), + [anon_sym_volatile] = ACTIONS(2128), + [anon_sym_restrict] = ACTIONS(2128), + [anon_sym__Atomic] = ACTIONS(2128), + [anon_sym_in] = ACTIONS(2128), + [anon_sym_out] = ACTIONS(2128), + [anon_sym_inout] = ACTIONS(2128), + [anon_sym_bycopy] = ACTIONS(2128), + [anon_sym_byref] = ACTIONS(2128), + [anon_sym_oneway] = ACTIONS(2128), + [anon_sym__Nullable] = ACTIONS(2128), + [anon_sym__Nonnull] = ACTIONS(2128), + [anon_sym__Nullable_result] = ACTIONS(2128), + [anon_sym__Null_unspecified] = ACTIONS(2128), + [anon_sym___autoreleasing] = ACTIONS(2128), + [anon_sym___nullable] = ACTIONS(2128), + [anon_sym___nonnull] = ACTIONS(2128), + [anon_sym___strong] = ACTIONS(2128), + [anon_sym___weak] = ACTIONS(2128), + [anon_sym___bridge] = ACTIONS(2128), + [anon_sym___bridge_transfer] = ACTIONS(2128), + [anon_sym___bridge_retained] = ACTIONS(2128), + [anon_sym___unsafe_unretained] = ACTIONS(2128), + [anon_sym___block] = ACTIONS(2128), + [anon_sym___kindof] = ACTIONS(2128), + [anon_sym___unused] = ACTIONS(2128), + [anon_sym__Complex] = ACTIONS(2128), + [anon_sym___complex] = ACTIONS(2128), + [anon_sym_IBOutlet] = ACTIONS(2128), + [anon_sym_IBInspectable] = ACTIONS(2128), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2128), + [anon_sym_signed] = ACTIONS(2128), + [anon_sym_unsigned] = ACTIONS(2128), + [anon_sym_long] = ACTIONS(2128), + [anon_sym_short] = ACTIONS(2128), + [sym_primitive_type] = ACTIONS(2128), + [anon_sym_enum] = ACTIONS(2128), + [anon_sym_struct] = ACTIONS(2128), + [anon_sym_union] = ACTIONS(2128), + [anon_sym_if] = ACTIONS(2128), + [anon_sym_switch] = ACTIONS(2128), + [anon_sym_case] = ACTIONS(2128), + [anon_sym_default] = ACTIONS(2128), + [anon_sym_while] = ACTIONS(2128), + [anon_sym_do] = ACTIONS(2128), + [anon_sym_for] = ACTIONS(2128), + [anon_sym_return] = ACTIONS(2128), + [anon_sym_break] = ACTIONS(2128), + [anon_sym_continue] = ACTIONS(2128), + [anon_sym_goto] = ACTIONS(2128), + [anon_sym_DASH_DASH] = ACTIONS(2130), + [anon_sym_PLUS_PLUS] = ACTIONS(2130), + [anon_sym_sizeof] = ACTIONS(2128), + [sym_number_literal] = ACTIONS(2130), + [anon_sym_L_SQUOTE] = ACTIONS(2130), + [anon_sym_u_SQUOTE] = ACTIONS(2130), + [anon_sym_U_SQUOTE] = ACTIONS(2130), + [anon_sym_u8_SQUOTE] = ACTIONS(2130), + [anon_sym_SQUOTE] = ACTIONS(2130), + [anon_sym_L_DQUOTE] = ACTIONS(2130), + [anon_sym_u_DQUOTE] = ACTIONS(2130), + [anon_sym_U_DQUOTE] = ACTIONS(2130), + [anon_sym_u8_DQUOTE] = ACTIONS(2130), + [anon_sym_DQUOTE] = ACTIONS(2130), + [sym_true] = ACTIONS(2128), + [sym_false] = ACTIONS(2128), + [sym_null] = ACTIONS(2128), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2130), + [anon_sym_ATimport] = ACTIONS(2130), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2128), + [anon_sym_ATcompatibility_alias] = ACTIONS(2130), + [anon_sym_ATprotocol] = ACTIONS(2130), + [anon_sym_ATclass] = ACTIONS(2130), + [anon_sym_ATinterface] = ACTIONS(2130), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2128), + [sym_method_attribute_specifier] = ACTIONS(2128), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2128), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2128), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2128), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2128), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2128), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2128), + [anon_sym_NS_AVAILABLE] = ACTIONS(2128), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2128), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2128), + [anon_sym_API_AVAILABLE] = ACTIONS(2128), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2128), + [anon_sym_API_DEPRECATED] = ACTIONS(2128), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2128), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2128), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2128), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2128), + [anon_sym___deprecated_msg] = ACTIONS(2128), + [anon_sym___deprecated_enum_msg] = ACTIONS(2128), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2128), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2128), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2128), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2128), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2128), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2128), + [anon_sym_ATimplementation] = ACTIONS(2130), + [anon_sym_NS_ENUM] = ACTIONS(2128), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2128), + [anon_sym_NS_OPTIONS] = ACTIONS(2128), + [anon_sym_typeof] = ACTIONS(2128), + [anon_sym___typeof] = ACTIONS(2128), + [anon_sym___typeof__] = ACTIONS(2128), + [sym_self] = ACTIONS(2128), + [sym_super] = ACTIONS(2128), + [sym_nil] = ACTIONS(2128), + [sym_id] = ACTIONS(2128), + [sym_instancetype] = ACTIONS(2128), + [sym_Class] = ACTIONS(2128), + [sym_SEL] = ACTIONS(2128), + [sym_IMP] = ACTIONS(2128), + [sym_BOOL] = ACTIONS(2128), + [sym_auto] = ACTIONS(2128), + [anon_sym_ATautoreleasepool] = ACTIONS(2130), + [anon_sym_ATsynchronized] = ACTIONS(2130), + [anon_sym_ATtry] = ACTIONS(2130), + [anon_sym_ATthrow] = ACTIONS(2130), + [anon_sym_ATselector] = ACTIONS(2130), + [anon_sym_ATencode] = ACTIONS(2130), + [anon_sym_AT] = ACTIONS(2128), + [sym_YES] = ACTIONS(2128), + [sym_NO] = ACTIONS(2128), + [anon_sym___builtin_available] = ACTIONS(2128), + [anon_sym_ATavailable] = ACTIONS(2130), + [anon_sym_va_arg] = ACTIONS(2128), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1013] = { + [ts_builtin_sym_end] = ACTIONS(2126), + [sym_identifier] = ACTIONS(2124), + [aux_sym_preproc_include_token1] = ACTIONS(2126), + [aux_sym_preproc_def_token1] = ACTIONS(2126), + [aux_sym_preproc_if_token1] = ACTIONS(2124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2124), + [anon_sym_LPAREN2] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_typedef] = ACTIONS(2124), + [anon_sym_extern] = ACTIONS(2124), + [anon_sym___attribute] = ACTIONS(2124), + [anon_sym___attribute__] = ACTIONS(2124), + [anon_sym___declspec] = ACTIONS(2124), + [anon_sym___cdecl] = ACTIONS(2124), + [anon_sym___clrcall] = ACTIONS(2124), + [anon_sym___stdcall] = ACTIONS(2124), + [anon_sym___fastcall] = ACTIONS(2124), + [anon_sym___thiscall] = ACTIONS(2124), + [anon_sym___vectorcall] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_auto] = ACTIONS(2124), + [anon_sym_register] = ACTIONS(2124), + [anon_sym_inline] = ACTIONS(2124), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_volatile] = ACTIONS(2124), + [anon_sym_restrict] = ACTIONS(2124), + [anon_sym__Atomic] = ACTIONS(2124), + [anon_sym_in] = ACTIONS(2124), + [anon_sym_out] = ACTIONS(2124), + [anon_sym_inout] = ACTIONS(2124), + [anon_sym_bycopy] = ACTIONS(2124), + [anon_sym_byref] = ACTIONS(2124), + [anon_sym_oneway] = ACTIONS(2124), + [anon_sym__Nullable] = ACTIONS(2124), + [anon_sym__Nonnull] = ACTIONS(2124), + [anon_sym__Nullable_result] = ACTIONS(2124), + [anon_sym__Null_unspecified] = ACTIONS(2124), + [anon_sym___autoreleasing] = ACTIONS(2124), + [anon_sym___nullable] = ACTIONS(2124), + [anon_sym___nonnull] = ACTIONS(2124), + [anon_sym___strong] = ACTIONS(2124), + [anon_sym___weak] = ACTIONS(2124), + [anon_sym___bridge] = ACTIONS(2124), + [anon_sym___bridge_transfer] = ACTIONS(2124), + [anon_sym___bridge_retained] = ACTIONS(2124), + [anon_sym___unsafe_unretained] = ACTIONS(2124), + [anon_sym___block] = ACTIONS(2124), + [anon_sym___kindof] = ACTIONS(2124), + [anon_sym___unused] = ACTIONS(2124), + [anon_sym__Complex] = ACTIONS(2124), + [anon_sym___complex] = ACTIONS(2124), + [anon_sym_IBOutlet] = ACTIONS(2124), + [anon_sym_IBInspectable] = ACTIONS(2124), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2124), + [anon_sym_signed] = ACTIONS(2124), + [anon_sym_unsigned] = ACTIONS(2124), + [anon_sym_long] = ACTIONS(2124), + [anon_sym_short] = ACTIONS(2124), + [sym_primitive_type] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [anon_sym_struct] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_switch] = ACTIONS(2124), + [anon_sym_case] = ACTIONS(2124), + [anon_sym_default] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_goto] = ACTIONS(2124), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_sizeof] = ACTIONS(2124), + [sym_number_literal] = ACTIONS(2126), + [anon_sym_L_SQUOTE] = ACTIONS(2126), + [anon_sym_u_SQUOTE] = ACTIONS(2126), + [anon_sym_U_SQUOTE] = ACTIONS(2126), + [anon_sym_u8_SQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_L_DQUOTE] = ACTIONS(2126), + [anon_sym_u_DQUOTE] = ACTIONS(2126), + [anon_sym_U_DQUOTE] = ACTIONS(2126), + [anon_sym_u8_DQUOTE] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2126), + [sym_true] = ACTIONS(2124), + [sym_false] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2126), + [anon_sym_ATimport] = ACTIONS(2126), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2124), + [anon_sym_ATcompatibility_alias] = ACTIONS(2126), + [anon_sym_ATprotocol] = ACTIONS(2126), + [anon_sym_ATclass] = ACTIONS(2126), + [anon_sym_ATinterface] = ACTIONS(2126), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2124), + [sym_method_attribute_specifier] = ACTIONS(2124), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2124), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2124), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2124), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2124), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2124), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2124), + [anon_sym_NS_AVAILABLE] = ACTIONS(2124), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2124), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2124), + [anon_sym_API_AVAILABLE] = ACTIONS(2124), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2124), + [anon_sym_API_DEPRECATED] = ACTIONS(2124), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2124), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2124), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2124), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2124), + [anon_sym___deprecated_msg] = ACTIONS(2124), + [anon_sym___deprecated_enum_msg] = ACTIONS(2124), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2124), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2124), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2124), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2124), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2124), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2124), + [anon_sym_ATimplementation] = ACTIONS(2126), + [anon_sym_NS_ENUM] = ACTIONS(2124), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2124), + [anon_sym_NS_OPTIONS] = ACTIONS(2124), + [anon_sym_typeof] = ACTIONS(2124), + [anon_sym___typeof] = ACTIONS(2124), + [anon_sym___typeof__] = ACTIONS(2124), + [sym_self] = ACTIONS(2124), + [sym_super] = ACTIONS(2124), + [sym_nil] = ACTIONS(2124), + [sym_id] = ACTIONS(2124), + [sym_instancetype] = ACTIONS(2124), + [sym_Class] = ACTIONS(2124), + [sym_SEL] = ACTIONS(2124), + [sym_IMP] = ACTIONS(2124), + [sym_BOOL] = ACTIONS(2124), + [sym_auto] = ACTIONS(2124), + [anon_sym_ATautoreleasepool] = ACTIONS(2126), + [anon_sym_ATsynchronized] = ACTIONS(2126), + [anon_sym_ATtry] = ACTIONS(2126), + [anon_sym_ATthrow] = ACTIONS(2126), + [anon_sym_ATselector] = ACTIONS(2126), + [anon_sym_ATencode] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2124), + [sym_YES] = ACTIONS(2124), + [sym_NO] = ACTIONS(2124), + [anon_sym___builtin_available] = ACTIONS(2124), + [anon_sym_ATavailable] = ACTIONS(2126), + [anon_sym_va_arg] = ACTIONS(2124), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1014] = { + [ts_builtin_sym_end] = ACTIONS(1938), + [sym_identifier] = ACTIONS(1936), + [aux_sym_preproc_include_token1] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1938), + [aux_sym_preproc_if_token1] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_CARET] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_typedef] = ACTIONS(1936), + [anon_sym_extern] = ACTIONS(1936), + [anon_sym___attribute] = ACTIONS(1936), + [anon_sym___attribute__] = ACTIONS(1936), + [anon_sym___declspec] = ACTIONS(1936), + [anon_sym___cdecl] = ACTIONS(1936), + [anon_sym___clrcall] = ACTIONS(1936), + [anon_sym___stdcall] = ACTIONS(1936), + [anon_sym___fastcall] = ACTIONS(1936), + [anon_sym___thiscall] = ACTIONS(1936), + [anon_sym___vectorcall] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_auto] = ACTIONS(1936), + [anon_sym_register] = ACTIONS(1936), + [anon_sym_inline] = ACTIONS(1936), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym_in] = ACTIONS(1936), + [anon_sym_out] = ACTIONS(1936), + [anon_sym_inout] = ACTIONS(1936), + [anon_sym_bycopy] = ACTIONS(1936), + [anon_sym_byref] = ACTIONS(1936), + [anon_sym_oneway] = ACTIONS(1936), + [anon_sym__Nullable] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym__Nullable_result] = ACTIONS(1936), + [anon_sym__Null_unspecified] = ACTIONS(1936), + [anon_sym___autoreleasing] = ACTIONS(1936), + [anon_sym___nullable] = ACTIONS(1936), + [anon_sym___nonnull] = ACTIONS(1936), + [anon_sym___strong] = ACTIONS(1936), + [anon_sym___weak] = ACTIONS(1936), + [anon_sym___bridge] = ACTIONS(1936), + [anon_sym___bridge_transfer] = ACTIONS(1936), + [anon_sym___bridge_retained] = ACTIONS(1936), + [anon_sym___unsafe_unretained] = ACTIONS(1936), + [anon_sym___block] = ACTIONS(1936), + [anon_sym___kindof] = ACTIONS(1936), + [anon_sym___unused] = ACTIONS(1936), + [anon_sym__Complex] = ACTIONS(1936), + [anon_sym___complex] = ACTIONS(1936), + [anon_sym_IBOutlet] = ACTIONS(1936), + [anon_sym_IBInspectable] = ACTIONS(1936), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1936), + [anon_sym_signed] = ACTIONS(1936), + [anon_sym_unsigned] = ACTIONS(1936), + [anon_sym_long] = ACTIONS(1936), + [anon_sym_short] = ACTIONS(1936), + [sym_primitive_type] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1936), + [anon_sym_struct] = ACTIONS(1936), + [anon_sym_union] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_switch] = ACTIONS(1936), + [anon_sym_case] = ACTIONS(1936), + [anon_sym_default] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_do] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_break] = ACTIONS(1936), + [anon_sym_continue] = ACTIONS(1936), + [anon_sym_goto] = ACTIONS(1936), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_sizeof] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [anon_sym_L_SQUOTE] = ACTIONS(1938), + [anon_sym_u_SQUOTE] = ACTIONS(1938), + [anon_sym_U_SQUOTE] = ACTIONS(1938), + [anon_sym_u8_SQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_L_DQUOTE] = ACTIONS(1938), + [anon_sym_u_DQUOTE] = ACTIONS(1938), + [anon_sym_U_DQUOTE] = ACTIONS(1938), + [anon_sym_u8_DQUOTE] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [sym_null] = ACTIONS(1936), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1938), + [anon_sym_ATimport] = ACTIONS(1938), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1936), + [anon_sym_ATcompatibility_alias] = ACTIONS(1938), + [anon_sym_ATprotocol] = ACTIONS(1938), + [anon_sym_ATclass] = ACTIONS(1938), + [anon_sym_ATinterface] = ACTIONS(1938), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1936), + [sym_method_attribute_specifier] = ACTIONS(1936), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1936), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1936), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1936), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1936), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1936), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1936), + [anon_sym_NS_AVAILABLE] = ACTIONS(1936), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1936), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_API_AVAILABLE] = ACTIONS(1936), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1936), + [anon_sym_API_DEPRECATED] = ACTIONS(1936), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1936), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1936), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1936), + [anon_sym___deprecated_msg] = ACTIONS(1936), + [anon_sym___deprecated_enum_msg] = ACTIONS(1936), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1936), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1936), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1936), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1936), + [anon_sym_ATimplementation] = ACTIONS(1938), + [anon_sym_NS_ENUM] = ACTIONS(1936), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1936), + [anon_sym_NS_OPTIONS] = ACTIONS(1936), + [anon_sym_typeof] = ACTIONS(1936), + [anon_sym___typeof] = ACTIONS(1936), + [anon_sym___typeof__] = ACTIONS(1936), + [sym_self] = ACTIONS(1936), + [sym_super] = ACTIONS(1936), + [sym_nil] = ACTIONS(1936), + [sym_id] = ACTIONS(1936), + [sym_instancetype] = ACTIONS(1936), + [sym_Class] = ACTIONS(1936), + [sym_SEL] = ACTIONS(1936), + [sym_IMP] = ACTIONS(1936), + [sym_BOOL] = ACTIONS(1936), + [sym_auto] = ACTIONS(1936), + [anon_sym_ATautoreleasepool] = ACTIONS(1938), + [anon_sym_ATsynchronized] = ACTIONS(1938), + [anon_sym_ATtry] = ACTIONS(1938), + [anon_sym_ATthrow] = ACTIONS(1938), + [anon_sym_ATselector] = ACTIONS(1938), + [anon_sym_ATencode] = ACTIONS(1938), + [anon_sym_AT] = ACTIONS(1936), + [sym_YES] = ACTIONS(1936), + [sym_NO] = ACTIONS(1936), + [anon_sym___builtin_available] = ACTIONS(1936), + [anon_sym_ATavailable] = ACTIONS(1938), + [anon_sym_va_arg] = ACTIONS(1936), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1015] = { + [ts_builtin_sym_end] = ACTIONS(1842), + [sym_identifier] = ACTIONS(1840), + [aux_sym_preproc_include_token1] = ACTIONS(1842), + [aux_sym_preproc_def_token1] = ACTIONS(1842), + [aux_sym_preproc_if_token1] = ACTIONS(1840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1840), + [anon_sym_LPAREN2] = ACTIONS(1842), + [anon_sym_BANG] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_PLUS] = ACTIONS(1840), + [anon_sym_STAR] = ACTIONS(1842), + [anon_sym_CARET] = ACTIONS(1842), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_typedef] = ACTIONS(1840), + [anon_sym_extern] = ACTIONS(1840), + [anon_sym___attribute] = ACTIONS(1840), + [anon_sym___attribute__] = ACTIONS(1840), + [anon_sym___declspec] = ACTIONS(1840), + [anon_sym___cdecl] = ACTIONS(1840), + [anon_sym___clrcall] = ACTIONS(1840), + [anon_sym___stdcall] = ACTIONS(1840), + [anon_sym___fastcall] = ACTIONS(1840), + [anon_sym___thiscall] = ACTIONS(1840), + [anon_sym___vectorcall] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_static] = ACTIONS(1840), + [anon_sym_auto] = ACTIONS(1840), + [anon_sym_register] = ACTIONS(1840), + [anon_sym_inline] = ACTIONS(1840), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [anon_sym_volatile] = ACTIONS(1840), + [anon_sym_restrict] = ACTIONS(1840), + [anon_sym__Atomic] = ACTIONS(1840), + [anon_sym_in] = ACTIONS(1840), + [anon_sym_out] = ACTIONS(1840), + [anon_sym_inout] = ACTIONS(1840), + [anon_sym_bycopy] = ACTIONS(1840), + [anon_sym_byref] = ACTIONS(1840), + [anon_sym_oneway] = ACTIONS(1840), + [anon_sym__Nullable] = ACTIONS(1840), + [anon_sym__Nonnull] = ACTIONS(1840), + [anon_sym__Nullable_result] = ACTIONS(1840), + [anon_sym__Null_unspecified] = ACTIONS(1840), + [anon_sym___autoreleasing] = ACTIONS(1840), + [anon_sym___nullable] = ACTIONS(1840), + [anon_sym___nonnull] = ACTIONS(1840), + [anon_sym___strong] = ACTIONS(1840), + [anon_sym___weak] = ACTIONS(1840), + [anon_sym___bridge] = ACTIONS(1840), + [anon_sym___bridge_transfer] = ACTIONS(1840), + [anon_sym___bridge_retained] = ACTIONS(1840), + [anon_sym___unsafe_unretained] = ACTIONS(1840), + [anon_sym___block] = ACTIONS(1840), + [anon_sym___kindof] = ACTIONS(1840), + [anon_sym___unused] = ACTIONS(1840), + [anon_sym__Complex] = ACTIONS(1840), + [anon_sym___complex] = ACTIONS(1840), + [anon_sym_IBOutlet] = ACTIONS(1840), + [anon_sym_IBInspectable] = ACTIONS(1840), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1840), + [anon_sym_signed] = ACTIONS(1840), + [anon_sym_unsigned] = ACTIONS(1840), + [anon_sym_long] = ACTIONS(1840), + [anon_sym_short] = ACTIONS(1840), + [sym_primitive_type] = ACTIONS(1840), + [anon_sym_enum] = ACTIONS(1840), + [anon_sym_struct] = ACTIONS(1840), + [anon_sym_union] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_switch] = ACTIONS(1840), + [anon_sym_case] = ACTIONS(1840), + [anon_sym_default] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_do] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_goto] = ACTIONS(1840), + [anon_sym_DASH_DASH] = ACTIONS(1842), + [anon_sym_PLUS_PLUS] = ACTIONS(1842), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_number_literal] = ACTIONS(1842), + [anon_sym_L_SQUOTE] = ACTIONS(1842), + [anon_sym_u_SQUOTE] = ACTIONS(1842), + [anon_sym_U_SQUOTE] = ACTIONS(1842), + [anon_sym_u8_SQUOTE] = ACTIONS(1842), + [anon_sym_SQUOTE] = ACTIONS(1842), + [anon_sym_L_DQUOTE] = ACTIONS(1842), + [anon_sym_u_DQUOTE] = ACTIONS(1842), + [anon_sym_U_DQUOTE] = ACTIONS(1842), + [anon_sym_u8_DQUOTE] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [sym_null] = ACTIONS(1840), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1842), + [anon_sym_ATimport] = ACTIONS(1842), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1840), + [anon_sym_ATcompatibility_alias] = ACTIONS(1842), + [anon_sym_ATprotocol] = ACTIONS(1842), + [anon_sym_ATclass] = ACTIONS(1842), + [anon_sym_ATinterface] = ACTIONS(1842), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1840), + [sym_method_attribute_specifier] = ACTIONS(1840), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1840), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1840), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1840), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1840), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1840), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1840), + [anon_sym_NS_AVAILABLE] = ACTIONS(1840), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1840), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_API_AVAILABLE] = ACTIONS(1840), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1840), + [anon_sym_API_DEPRECATED] = ACTIONS(1840), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1840), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1840), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1840), + [anon_sym___deprecated_msg] = ACTIONS(1840), + [anon_sym___deprecated_enum_msg] = ACTIONS(1840), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1840), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1840), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1840), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1840), + [anon_sym_ATimplementation] = ACTIONS(1842), + [anon_sym_NS_ENUM] = ACTIONS(1840), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1840), + [anon_sym_NS_OPTIONS] = ACTIONS(1840), + [anon_sym_typeof] = ACTIONS(1840), + [anon_sym___typeof] = ACTIONS(1840), + [anon_sym___typeof__] = ACTIONS(1840), + [sym_self] = ACTIONS(1840), + [sym_super] = ACTIONS(1840), + [sym_nil] = ACTIONS(1840), + [sym_id] = ACTIONS(1840), + [sym_instancetype] = ACTIONS(1840), + [sym_Class] = ACTIONS(1840), + [sym_SEL] = ACTIONS(1840), + [sym_IMP] = ACTIONS(1840), + [sym_BOOL] = ACTIONS(1840), + [sym_auto] = ACTIONS(1840), + [anon_sym_ATautoreleasepool] = ACTIONS(1842), + [anon_sym_ATsynchronized] = ACTIONS(1842), + [anon_sym_ATtry] = ACTIONS(1842), + [anon_sym_ATthrow] = ACTIONS(1842), + [anon_sym_ATselector] = ACTIONS(1842), + [anon_sym_ATencode] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(1840), + [sym_YES] = ACTIONS(1840), + [sym_NO] = ACTIONS(1840), + [anon_sym___builtin_available] = ACTIONS(1840), + [anon_sym_ATavailable] = ACTIONS(1842), + [anon_sym_va_arg] = ACTIONS(1840), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1016] = { + [ts_builtin_sym_end] = ACTIONS(1842), + [sym_identifier] = ACTIONS(1840), + [aux_sym_preproc_include_token1] = ACTIONS(1842), + [aux_sym_preproc_def_token1] = ACTIONS(1842), + [aux_sym_preproc_if_token1] = ACTIONS(1840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1840), + [anon_sym_LPAREN2] = ACTIONS(1842), + [anon_sym_BANG] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_PLUS] = ACTIONS(1840), + [anon_sym_STAR] = ACTIONS(1842), + [anon_sym_CARET] = ACTIONS(1842), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_typedef] = ACTIONS(1840), + [anon_sym_extern] = ACTIONS(1840), + [anon_sym___attribute] = ACTIONS(1840), + [anon_sym___attribute__] = ACTIONS(1840), + [anon_sym___declspec] = ACTIONS(1840), + [anon_sym___cdecl] = ACTIONS(1840), + [anon_sym___clrcall] = ACTIONS(1840), + [anon_sym___stdcall] = ACTIONS(1840), + [anon_sym___fastcall] = ACTIONS(1840), + [anon_sym___thiscall] = ACTIONS(1840), + [anon_sym___vectorcall] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_static] = ACTIONS(1840), + [anon_sym_auto] = ACTIONS(1840), + [anon_sym_register] = ACTIONS(1840), + [anon_sym_inline] = ACTIONS(1840), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [anon_sym_volatile] = ACTIONS(1840), + [anon_sym_restrict] = ACTIONS(1840), + [anon_sym__Atomic] = ACTIONS(1840), + [anon_sym_in] = ACTIONS(1840), + [anon_sym_out] = ACTIONS(1840), + [anon_sym_inout] = ACTIONS(1840), + [anon_sym_bycopy] = ACTIONS(1840), + [anon_sym_byref] = ACTIONS(1840), + [anon_sym_oneway] = ACTIONS(1840), + [anon_sym__Nullable] = ACTIONS(1840), + [anon_sym__Nonnull] = ACTIONS(1840), + [anon_sym__Nullable_result] = ACTIONS(1840), + [anon_sym__Null_unspecified] = ACTIONS(1840), + [anon_sym___autoreleasing] = ACTIONS(1840), + [anon_sym___nullable] = ACTIONS(1840), + [anon_sym___nonnull] = ACTIONS(1840), + [anon_sym___strong] = ACTIONS(1840), + [anon_sym___weak] = ACTIONS(1840), + [anon_sym___bridge] = ACTIONS(1840), + [anon_sym___bridge_transfer] = ACTIONS(1840), + [anon_sym___bridge_retained] = ACTIONS(1840), + [anon_sym___unsafe_unretained] = ACTIONS(1840), + [anon_sym___block] = ACTIONS(1840), + [anon_sym___kindof] = ACTIONS(1840), + [anon_sym___unused] = ACTIONS(1840), + [anon_sym__Complex] = ACTIONS(1840), + [anon_sym___complex] = ACTIONS(1840), + [anon_sym_IBOutlet] = ACTIONS(1840), + [anon_sym_IBInspectable] = ACTIONS(1840), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1840), + [anon_sym_signed] = ACTIONS(1840), + [anon_sym_unsigned] = ACTIONS(1840), + [anon_sym_long] = ACTIONS(1840), + [anon_sym_short] = ACTIONS(1840), + [sym_primitive_type] = ACTIONS(1840), + [anon_sym_enum] = ACTIONS(1840), + [anon_sym_struct] = ACTIONS(1840), + [anon_sym_union] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_switch] = ACTIONS(1840), + [anon_sym_case] = ACTIONS(1840), + [anon_sym_default] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_do] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_goto] = ACTIONS(1840), + [anon_sym_DASH_DASH] = ACTIONS(1842), + [anon_sym_PLUS_PLUS] = ACTIONS(1842), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_number_literal] = ACTIONS(1842), + [anon_sym_L_SQUOTE] = ACTIONS(1842), + [anon_sym_u_SQUOTE] = ACTIONS(1842), + [anon_sym_U_SQUOTE] = ACTIONS(1842), + [anon_sym_u8_SQUOTE] = ACTIONS(1842), + [anon_sym_SQUOTE] = ACTIONS(1842), + [anon_sym_L_DQUOTE] = ACTIONS(1842), + [anon_sym_u_DQUOTE] = ACTIONS(1842), + [anon_sym_U_DQUOTE] = ACTIONS(1842), + [anon_sym_u8_DQUOTE] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [sym_null] = ACTIONS(1840), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1842), + [anon_sym_ATimport] = ACTIONS(1842), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1840), + [anon_sym_ATcompatibility_alias] = ACTIONS(1842), + [anon_sym_ATprotocol] = ACTIONS(1842), + [anon_sym_ATclass] = ACTIONS(1842), + [anon_sym_ATinterface] = ACTIONS(1842), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1840), + [sym_method_attribute_specifier] = ACTIONS(1840), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1840), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1840), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1840), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1840), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1840), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1840), + [anon_sym_NS_AVAILABLE] = ACTIONS(1840), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1840), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_API_AVAILABLE] = ACTIONS(1840), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1840), + [anon_sym_API_DEPRECATED] = ACTIONS(1840), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1840), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1840), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1840), + [anon_sym___deprecated_msg] = ACTIONS(1840), + [anon_sym___deprecated_enum_msg] = ACTIONS(1840), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1840), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1840), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1840), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1840), + [anon_sym_ATimplementation] = ACTIONS(1842), + [anon_sym_NS_ENUM] = ACTIONS(1840), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1840), + [anon_sym_NS_OPTIONS] = ACTIONS(1840), + [anon_sym_typeof] = ACTIONS(1840), + [anon_sym___typeof] = ACTIONS(1840), + [anon_sym___typeof__] = ACTIONS(1840), + [sym_self] = ACTIONS(1840), + [sym_super] = ACTIONS(1840), + [sym_nil] = ACTIONS(1840), + [sym_id] = ACTIONS(1840), + [sym_instancetype] = ACTIONS(1840), + [sym_Class] = ACTIONS(1840), + [sym_SEL] = ACTIONS(1840), + [sym_IMP] = ACTIONS(1840), + [sym_BOOL] = ACTIONS(1840), + [sym_auto] = ACTIONS(1840), + [anon_sym_ATautoreleasepool] = ACTIONS(1842), + [anon_sym_ATsynchronized] = ACTIONS(1842), + [anon_sym_ATtry] = ACTIONS(1842), + [anon_sym_ATthrow] = ACTIONS(1842), + [anon_sym_ATselector] = ACTIONS(1842), + [anon_sym_ATencode] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(1840), + [sym_YES] = ACTIONS(1840), + [sym_NO] = ACTIONS(1840), + [anon_sym___builtin_available] = ACTIONS(1840), + [anon_sym_ATavailable] = ACTIONS(1842), + [anon_sym_va_arg] = ACTIONS(1840), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1017] = { + [ts_builtin_sym_end] = ACTIONS(1938), + [sym_identifier] = ACTIONS(1936), + [aux_sym_preproc_include_token1] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1938), + [aux_sym_preproc_if_token1] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_CARET] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_typedef] = ACTIONS(1936), + [anon_sym_extern] = ACTIONS(1936), + [anon_sym___attribute] = ACTIONS(1936), + [anon_sym___attribute__] = ACTIONS(1936), + [anon_sym___declspec] = ACTIONS(1936), + [anon_sym___cdecl] = ACTIONS(1936), + [anon_sym___clrcall] = ACTIONS(1936), + [anon_sym___stdcall] = ACTIONS(1936), + [anon_sym___fastcall] = ACTIONS(1936), + [anon_sym___thiscall] = ACTIONS(1936), + [anon_sym___vectorcall] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_auto] = ACTIONS(1936), + [anon_sym_register] = ACTIONS(1936), + [anon_sym_inline] = ACTIONS(1936), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym_in] = ACTIONS(1936), + [anon_sym_out] = ACTIONS(1936), + [anon_sym_inout] = ACTIONS(1936), + [anon_sym_bycopy] = ACTIONS(1936), + [anon_sym_byref] = ACTIONS(1936), + [anon_sym_oneway] = ACTIONS(1936), + [anon_sym__Nullable] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym__Nullable_result] = ACTIONS(1936), + [anon_sym__Null_unspecified] = ACTIONS(1936), + [anon_sym___autoreleasing] = ACTIONS(1936), + [anon_sym___nullable] = ACTIONS(1936), + [anon_sym___nonnull] = ACTIONS(1936), + [anon_sym___strong] = ACTIONS(1936), + [anon_sym___weak] = ACTIONS(1936), + [anon_sym___bridge] = ACTIONS(1936), + [anon_sym___bridge_transfer] = ACTIONS(1936), + [anon_sym___bridge_retained] = ACTIONS(1936), + [anon_sym___unsafe_unretained] = ACTIONS(1936), + [anon_sym___block] = ACTIONS(1936), + [anon_sym___kindof] = ACTIONS(1936), + [anon_sym___unused] = ACTIONS(1936), + [anon_sym__Complex] = ACTIONS(1936), + [anon_sym___complex] = ACTIONS(1936), + [anon_sym_IBOutlet] = ACTIONS(1936), + [anon_sym_IBInspectable] = ACTIONS(1936), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1936), + [anon_sym_signed] = ACTIONS(1936), + [anon_sym_unsigned] = ACTIONS(1936), + [anon_sym_long] = ACTIONS(1936), + [anon_sym_short] = ACTIONS(1936), + [sym_primitive_type] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1936), + [anon_sym_struct] = ACTIONS(1936), + [anon_sym_union] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_switch] = ACTIONS(1936), + [anon_sym_case] = ACTIONS(1936), + [anon_sym_default] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_do] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_break] = ACTIONS(1936), + [anon_sym_continue] = ACTIONS(1936), + [anon_sym_goto] = ACTIONS(1936), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_sizeof] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [anon_sym_L_SQUOTE] = ACTIONS(1938), + [anon_sym_u_SQUOTE] = ACTIONS(1938), + [anon_sym_U_SQUOTE] = ACTIONS(1938), + [anon_sym_u8_SQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_L_DQUOTE] = ACTIONS(1938), + [anon_sym_u_DQUOTE] = ACTIONS(1938), + [anon_sym_U_DQUOTE] = ACTIONS(1938), + [anon_sym_u8_DQUOTE] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [sym_null] = ACTIONS(1936), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1938), + [anon_sym_ATimport] = ACTIONS(1938), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1936), + [anon_sym_ATcompatibility_alias] = ACTIONS(1938), + [anon_sym_ATprotocol] = ACTIONS(1938), + [anon_sym_ATclass] = ACTIONS(1938), + [anon_sym_ATinterface] = ACTIONS(1938), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1936), + [sym_method_attribute_specifier] = ACTIONS(1936), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1936), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1936), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1936), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1936), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1936), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1936), + [anon_sym_NS_AVAILABLE] = ACTIONS(1936), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1936), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_API_AVAILABLE] = ACTIONS(1936), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1936), + [anon_sym_API_DEPRECATED] = ACTIONS(1936), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1936), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1936), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1936), + [anon_sym___deprecated_msg] = ACTIONS(1936), + [anon_sym___deprecated_enum_msg] = ACTIONS(1936), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1936), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1936), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1936), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1936), + [anon_sym_ATimplementation] = ACTIONS(1938), + [anon_sym_NS_ENUM] = ACTIONS(1936), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1936), + [anon_sym_NS_OPTIONS] = ACTIONS(1936), + [anon_sym_typeof] = ACTIONS(1936), + [anon_sym___typeof] = ACTIONS(1936), + [anon_sym___typeof__] = ACTIONS(1936), + [sym_self] = ACTIONS(1936), + [sym_super] = ACTIONS(1936), + [sym_nil] = ACTIONS(1936), + [sym_id] = ACTIONS(1936), + [sym_instancetype] = ACTIONS(1936), + [sym_Class] = ACTIONS(1936), + [sym_SEL] = ACTIONS(1936), + [sym_IMP] = ACTIONS(1936), + [sym_BOOL] = ACTIONS(1936), + [sym_auto] = ACTIONS(1936), + [anon_sym_ATautoreleasepool] = ACTIONS(1938), + [anon_sym_ATsynchronized] = ACTIONS(1938), + [anon_sym_ATtry] = ACTIONS(1938), + [anon_sym_ATthrow] = ACTIONS(1938), + [anon_sym_ATselector] = ACTIONS(1938), + [anon_sym_ATencode] = ACTIONS(1938), + [anon_sym_AT] = ACTIONS(1936), + [sym_YES] = ACTIONS(1936), + [sym_NO] = ACTIONS(1936), + [anon_sym___builtin_available] = ACTIONS(1936), + [anon_sym_ATavailable] = ACTIONS(1938), + [anon_sym_va_arg] = ACTIONS(1936), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1018] = { + [ts_builtin_sym_end] = ACTIONS(1934), + [sym_identifier] = ACTIONS(1932), + [aux_sym_preproc_include_token1] = ACTIONS(1934), + [aux_sym_preproc_def_token1] = ACTIONS(1934), + [aux_sym_preproc_if_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_CARET] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym___attribute] = ACTIONS(1932), + [anon_sym___attribute__] = ACTIONS(1932), + [anon_sym___declspec] = ACTIONS(1932), + [anon_sym___cdecl] = ACTIONS(1932), + [anon_sym___clrcall] = ACTIONS(1932), + [anon_sym___stdcall] = ACTIONS(1932), + [anon_sym___fastcall] = ACTIONS(1932), + [anon_sym___thiscall] = ACTIONS(1932), + [anon_sym___vectorcall] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_auto] = ACTIONS(1932), + [anon_sym_register] = ACTIONS(1932), + [anon_sym_inline] = ACTIONS(1932), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym_in] = ACTIONS(1932), + [anon_sym_out] = ACTIONS(1932), + [anon_sym_inout] = ACTIONS(1932), + [anon_sym_bycopy] = ACTIONS(1932), + [anon_sym_byref] = ACTIONS(1932), + [anon_sym_oneway] = ACTIONS(1932), + [anon_sym__Nullable] = ACTIONS(1932), + [anon_sym__Nonnull] = ACTIONS(1932), + [anon_sym__Nullable_result] = ACTIONS(1932), + [anon_sym__Null_unspecified] = ACTIONS(1932), + [anon_sym___autoreleasing] = ACTIONS(1932), + [anon_sym___nullable] = ACTIONS(1932), + [anon_sym___nonnull] = ACTIONS(1932), + [anon_sym___strong] = ACTIONS(1932), + [anon_sym___weak] = ACTIONS(1932), + [anon_sym___bridge] = ACTIONS(1932), + [anon_sym___bridge_transfer] = ACTIONS(1932), + [anon_sym___bridge_retained] = ACTIONS(1932), + [anon_sym___unsafe_unretained] = ACTIONS(1932), + [anon_sym___block] = ACTIONS(1932), + [anon_sym___kindof] = ACTIONS(1932), + [anon_sym___unused] = ACTIONS(1932), + [anon_sym__Complex] = ACTIONS(1932), + [anon_sym___complex] = ACTIONS(1932), + [anon_sym_IBOutlet] = ACTIONS(1932), + [anon_sym_IBInspectable] = ACTIONS(1932), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1932), + [anon_sym_signed] = ACTIONS(1932), + [anon_sym_unsigned] = ACTIONS(1932), + [anon_sym_long] = ACTIONS(1932), + [anon_sym_short] = ACTIONS(1932), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_goto] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [sym_null] = ACTIONS(1932), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1934), + [anon_sym_ATimport] = ACTIONS(1934), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1932), + [anon_sym_ATcompatibility_alias] = ACTIONS(1934), + [anon_sym_ATprotocol] = ACTIONS(1934), + [anon_sym_ATclass] = ACTIONS(1934), + [anon_sym_ATinterface] = ACTIONS(1934), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1932), + [sym_method_attribute_specifier] = ACTIONS(1932), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1932), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE] = ACTIONS(1932), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_API_AVAILABLE] = ACTIONS(1932), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_API_DEPRECATED] = ACTIONS(1932), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1932), + [anon_sym___deprecated_msg] = ACTIONS(1932), + [anon_sym___deprecated_enum_msg] = ACTIONS(1932), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1932), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1932), + [anon_sym_ATimplementation] = ACTIONS(1934), + [anon_sym_NS_ENUM] = ACTIONS(1932), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1932), + [anon_sym_NS_OPTIONS] = ACTIONS(1932), + [anon_sym_typeof] = ACTIONS(1932), + [anon_sym___typeof] = ACTIONS(1932), + [anon_sym___typeof__] = ACTIONS(1932), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_nil] = ACTIONS(1932), + [sym_id] = ACTIONS(1932), + [sym_instancetype] = ACTIONS(1932), + [sym_Class] = ACTIONS(1932), + [sym_SEL] = ACTIONS(1932), + [sym_IMP] = ACTIONS(1932), + [sym_BOOL] = ACTIONS(1932), + [sym_auto] = ACTIONS(1932), + [anon_sym_ATautoreleasepool] = ACTIONS(1934), + [anon_sym_ATsynchronized] = ACTIONS(1934), + [anon_sym_ATtry] = ACTIONS(1934), + [anon_sym_ATthrow] = ACTIONS(1934), + [anon_sym_ATselector] = ACTIONS(1934), + [anon_sym_ATencode] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1932), + [sym_YES] = ACTIONS(1932), + [sym_NO] = ACTIONS(1932), + [anon_sym___builtin_available] = ACTIONS(1932), + [anon_sym_ATavailable] = ACTIONS(1934), + [anon_sym_va_arg] = ACTIONS(1932), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1019] = { + [ts_builtin_sym_end] = ACTIONS(1934), + [sym_identifier] = ACTIONS(1932), + [aux_sym_preproc_include_token1] = ACTIONS(1934), + [aux_sym_preproc_def_token1] = ACTIONS(1934), + [aux_sym_preproc_if_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_CARET] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym___attribute] = ACTIONS(1932), + [anon_sym___attribute__] = ACTIONS(1932), + [anon_sym___declspec] = ACTIONS(1932), + [anon_sym___cdecl] = ACTIONS(1932), + [anon_sym___clrcall] = ACTIONS(1932), + [anon_sym___stdcall] = ACTIONS(1932), + [anon_sym___fastcall] = ACTIONS(1932), + [anon_sym___thiscall] = ACTIONS(1932), + [anon_sym___vectorcall] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_auto] = ACTIONS(1932), + [anon_sym_register] = ACTIONS(1932), + [anon_sym_inline] = ACTIONS(1932), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym_in] = ACTIONS(1932), + [anon_sym_out] = ACTIONS(1932), + [anon_sym_inout] = ACTIONS(1932), + [anon_sym_bycopy] = ACTIONS(1932), + [anon_sym_byref] = ACTIONS(1932), + [anon_sym_oneway] = ACTIONS(1932), + [anon_sym__Nullable] = ACTIONS(1932), + [anon_sym__Nonnull] = ACTIONS(1932), + [anon_sym__Nullable_result] = ACTIONS(1932), + [anon_sym__Null_unspecified] = ACTIONS(1932), + [anon_sym___autoreleasing] = ACTIONS(1932), + [anon_sym___nullable] = ACTIONS(1932), + [anon_sym___nonnull] = ACTIONS(1932), + [anon_sym___strong] = ACTIONS(1932), + [anon_sym___weak] = ACTIONS(1932), + [anon_sym___bridge] = ACTIONS(1932), + [anon_sym___bridge_transfer] = ACTIONS(1932), + [anon_sym___bridge_retained] = ACTIONS(1932), + [anon_sym___unsafe_unretained] = ACTIONS(1932), + [anon_sym___block] = ACTIONS(1932), + [anon_sym___kindof] = ACTIONS(1932), + [anon_sym___unused] = ACTIONS(1932), + [anon_sym__Complex] = ACTIONS(1932), + [anon_sym___complex] = ACTIONS(1932), + [anon_sym_IBOutlet] = ACTIONS(1932), + [anon_sym_IBInspectable] = ACTIONS(1932), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1932), + [anon_sym_signed] = ACTIONS(1932), + [anon_sym_unsigned] = ACTIONS(1932), + [anon_sym_long] = ACTIONS(1932), + [anon_sym_short] = ACTIONS(1932), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_goto] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [sym_null] = ACTIONS(1932), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1934), + [anon_sym_ATimport] = ACTIONS(1934), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1932), + [anon_sym_ATcompatibility_alias] = ACTIONS(1934), + [anon_sym_ATprotocol] = ACTIONS(1934), + [anon_sym_ATclass] = ACTIONS(1934), + [anon_sym_ATinterface] = ACTIONS(1934), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1932), + [sym_method_attribute_specifier] = ACTIONS(1932), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1932), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE] = ACTIONS(1932), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_API_AVAILABLE] = ACTIONS(1932), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_API_DEPRECATED] = ACTIONS(1932), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1932), + [anon_sym___deprecated_msg] = ACTIONS(1932), + [anon_sym___deprecated_enum_msg] = ACTIONS(1932), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1932), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1932), + [anon_sym_ATimplementation] = ACTIONS(1934), + [anon_sym_NS_ENUM] = ACTIONS(1932), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1932), + [anon_sym_NS_OPTIONS] = ACTIONS(1932), + [anon_sym_typeof] = ACTIONS(1932), + [anon_sym___typeof] = ACTIONS(1932), + [anon_sym___typeof__] = ACTIONS(1932), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_nil] = ACTIONS(1932), + [sym_id] = ACTIONS(1932), + [sym_instancetype] = ACTIONS(1932), + [sym_Class] = ACTIONS(1932), + [sym_SEL] = ACTIONS(1932), + [sym_IMP] = ACTIONS(1932), + [sym_BOOL] = ACTIONS(1932), + [sym_auto] = ACTIONS(1932), + [anon_sym_ATautoreleasepool] = ACTIONS(1934), + [anon_sym_ATsynchronized] = ACTIONS(1934), + [anon_sym_ATtry] = ACTIONS(1934), + [anon_sym_ATthrow] = ACTIONS(1934), + [anon_sym_ATselector] = ACTIONS(1934), + [anon_sym_ATencode] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1932), + [sym_YES] = ACTIONS(1932), + [sym_NO] = ACTIONS(1932), + [anon_sym___builtin_available] = ACTIONS(1932), + [anon_sym_ATavailable] = ACTIONS(1934), + [anon_sym_va_arg] = ACTIONS(1932), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1020] = { + [ts_builtin_sym_end] = ACTIONS(1846), + [sym_identifier] = ACTIONS(1844), + [aux_sym_preproc_include_token1] = ACTIONS(1846), + [aux_sym_preproc_def_token1] = ACTIONS(1846), + [aux_sym_preproc_if_token1] = ACTIONS(1844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1844), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_typedef] = ACTIONS(1844), + [anon_sym_extern] = ACTIONS(1844), + [anon_sym___attribute] = ACTIONS(1844), + [anon_sym___attribute__] = ACTIONS(1844), + [anon_sym___declspec] = ACTIONS(1844), + [anon_sym___cdecl] = ACTIONS(1844), + [anon_sym___clrcall] = ACTIONS(1844), + [anon_sym___stdcall] = ACTIONS(1844), + [anon_sym___fastcall] = ACTIONS(1844), + [anon_sym___thiscall] = ACTIONS(1844), + [anon_sym___vectorcall] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1846), + [anon_sym_static] = ACTIONS(1844), + [anon_sym_auto] = ACTIONS(1844), + [anon_sym_register] = ACTIONS(1844), + [anon_sym_inline] = ACTIONS(1844), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1844), + [anon_sym_const] = ACTIONS(1844), + [anon_sym_volatile] = ACTIONS(1844), + [anon_sym_restrict] = ACTIONS(1844), + [anon_sym__Atomic] = ACTIONS(1844), + [anon_sym_in] = ACTIONS(1844), + [anon_sym_out] = ACTIONS(1844), + [anon_sym_inout] = ACTIONS(1844), + [anon_sym_bycopy] = ACTIONS(1844), + [anon_sym_byref] = ACTIONS(1844), + [anon_sym_oneway] = ACTIONS(1844), + [anon_sym__Nullable] = ACTIONS(1844), + [anon_sym__Nonnull] = ACTIONS(1844), + [anon_sym__Nullable_result] = ACTIONS(1844), + [anon_sym__Null_unspecified] = ACTIONS(1844), + [anon_sym___autoreleasing] = ACTIONS(1844), + [anon_sym___nullable] = ACTIONS(1844), + [anon_sym___nonnull] = ACTIONS(1844), + [anon_sym___strong] = ACTIONS(1844), + [anon_sym___weak] = ACTIONS(1844), + [anon_sym___bridge] = ACTIONS(1844), + [anon_sym___bridge_transfer] = ACTIONS(1844), + [anon_sym___bridge_retained] = ACTIONS(1844), + [anon_sym___unsafe_unretained] = ACTIONS(1844), + [anon_sym___block] = ACTIONS(1844), + [anon_sym___kindof] = ACTIONS(1844), + [anon_sym___unused] = ACTIONS(1844), + [anon_sym__Complex] = ACTIONS(1844), + [anon_sym___complex] = ACTIONS(1844), + [anon_sym_IBOutlet] = ACTIONS(1844), + [anon_sym_IBInspectable] = ACTIONS(1844), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1844), + [anon_sym_signed] = ACTIONS(1844), + [anon_sym_unsigned] = ACTIONS(1844), + [anon_sym_long] = ACTIONS(1844), + [anon_sym_short] = ACTIONS(1844), + [sym_primitive_type] = ACTIONS(1844), + [anon_sym_enum] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1844), + [anon_sym_union] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1844), + [anon_sym_switch] = ACTIONS(1844), + [anon_sym_case] = ACTIONS(1844), + [anon_sym_default] = ACTIONS(1844), + [anon_sym_while] = ACTIONS(1844), + [anon_sym_do] = ACTIONS(1844), + [anon_sym_for] = ACTIONS(1844), + [anon_sym_return] = ACTIONS(1844), + [anon_sym_break] = ACTIONS(1844), + [anon_sym_continue] = ACTIONS(1844), + [anon_sym_goto] = ACTIONS(1844), + [anon_sym_DASH_DASH] = ACTIONS(1846), + [anon_sym_PLUS_PLUS] = ACTIONS(1846), + [anon_sym_sizeof] = ACTIONS(1844), + [sym_number_literal] = ACTIONS(1846), + [anon_sym_L_SQUOTE] = ACTIONS(1846), + [anon_sym_u_SQUOTE] = ACTIONS(1846), + [anon_sym_U_SQUOTE] = ACTIONS(1846), + [anon_sym_u8_SQUOTE] = ACTIONS(1846), + [anon_sym_SQUOTE] = ACTIONS(1846), + [anon_sym_L_DQUOTE] = ACTIONS(1846), + [anon_sym_u_DQUOTE] = ACTIONS(1846), + [anon_sym_U_DQUOTE] = ACTIONS(1846), + [anon_sym_u8_DQUOTE] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1846), + [sym_true] = ACTIONS(1844), + [sym_false] = ACTIONS(1844), + [sym_null] = ACTIONS(1844), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1846), + [anon_sym_ATimport] = ACTIONS(1846), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1844), + [anon_sym_ATcompatibility_alias] = ACTIONS(1846), + [anon_sym_ATprotocol] = ACTIONS(1846), + [anon_sym_ATclass] = ACTIONS(1846), + [anon_sym_ATinterface] = ACTIONS(1846), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1844), + [sym_method_attribute_specifier] = ACTIONS(1844), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1844), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1844), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1844), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1844), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1844), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1844), + [anon_sym_NS_AVAILABLE] = ACTIONS(1844), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1844), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1844), + [anon_sym_API_AVAILABLE] = ACTIONS(1844), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1844), + [anon_sym_API_DEPRECATED] = ACTIONS(1844), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1844), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1844), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1844), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1844), + [anon_sym___deprecated_msg] = ACTIONS(1844), + [anon_sym___deprecated_enum_msg] = ACTIONS(1844), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1844), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1844), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1844), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1844), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1844), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1844), + [anon_sym_ATimplementation] = ACTIONS(1846), + [anon_sym_NS_ENUM] = ACTIONS(1844), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1844), + [anon_sym_NS_OPTIONS] = ACTIONS(1844), + [anon_sym_typeof] = ACTIONS(1844), + [anon_sym___typeof] = ACTIONS(1844), + [anon_sym___typeof__] = ACTIONS(1844), + [sym_self] = ACTIONS(1844), + [sym_super] = ACTIONS(1844), + [sym_nil] = ACTIONS(1844), + [sym_id] = ACTIONS(1844), + [sym_instancetype] = ACTIONS(1844), + [sym_Class] = ACTIONS(1844), + [sym_SEL] = ACTIONS(1844), + [sym_IMP] = ACTIONS(1844), + [sym_BOOL] = ACTIONS(1844), + [sym_auto] = ACTIONS(1844), + [anon_sym_ATautoreleasepool] = ACTIONS(1846), + [anon_sym_ATsynchronized] = ACTIONS(1846), + [anon_sym_ATtry] = ACTIONS(1846), + [anon_sym_ATthrow] = ACTIONS(1846), + [anon_sym_ATselector] = ACTIONS(1846), + [anon_sym_ATencode] = ACTIONS(1846), + [anon_sym_AT] = ACTIONS(1844), + [sym_YES] = ACTIONS(1844), + [sym_NO] = ACTIONS(1844), + [anon_sym___builtin_available] = ACTIONS(1844), + [anon_sym_ATavailable] = ACTIONS(1846), + [anon_sym_va_arg] = ACTIONS(1844), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1021] = { + [ts_builtin_sym_end] = ACTIONS(1934), + [sym_identifier] = ACTIONS(1932), + [aux_sym_preproc_include_token1] = ACTIONS(1934), + [aux_sym_preproc_def_token1] = ACTIONS(1934), + [aux_sym_preproc_if_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_CARET] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym___attribute] = ACTIONS(1932), + [anon_sym___attribute__] = ACTIONS(1932), + [anon_sym___declspec] = ACTIONS(1932), + [anon_sym___cdecl] = ACTIONS(1932), + [anon_sym___clrcall] = ACTIONS(1932), + [anon_sym___stdcall] = ACTIONS(1932), + [anon_sym___fastcall] = ACTIONS(1932), + [anon_sym___thiscall] = ACTIONS(1932), + [anon_sym___vectorcall] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_auto] = ACTIONS(1932), + [anon_sym_register] = ACTIONS(1932), + [anon_sym_inline] = ACTIONS(1932), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym_in] = ACTIONS(1932), + [anon_sym_out] = ACTIONS(1932), + [anon_sym_inout] = ACTIONS(1932), + [anon_sym_bycopy] = ACTIONS(1932), + [anon_sym_byref] = ACTIONS(1932), + [anon_sym_oneway] = ACTIONS(1932), + [anon_sym__Nullable] = ACTIONS(1932), + [anon_sym__Nonnull] = ACTIONS(1932), + [anon_sym__Nullable_result] = ACTIONS(1932), + [anon_sym__Null_unspecified] = ACTIONS(1932), + [anon_sym___autoreleasing] = ACTIONS(1932), + [anon_sym___nullable] = ACTIONS(1932), + [anon_sym___nonnull] = ACTIONS(1932), + [anon_sym___strong] = ACTIONS(1932), + [anon_sym___weak] = ACTIONS(1932), + [anon_sym___bridge] = ACTIONS(1932), + [anon_sym___bridge_transfer] = ACTIONS(1932), + [anon_sym___bridge_retained] = ACTIONS(1932), + [anon_sym___unsafe_unretained] = ACTIONS(1932), + [anon_sym___block] = ACTIONS(1932), + [anon_sym___kindof] = ACTIONS(1932), + [anon_sym___unused] = ACTIONS(1932), + [anon_sym__Complex] = ACTIONS(1932), + [anon_sym___complex] = ACTIONS(1932), + [anon_sym_IBOutlet] = ACTIONS(1932), + [anon_sym_IBInspectable] = ACTIONS(1932), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1932), + [anon_sym_signed] = ACTIONS(1932), + [anon_sym_unsigned] = ACTIONS(1932), + [anon_sym_long] = ACTIONS(1932), + [anon_sym_short] = ACTIONS(1932), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_goto] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [sym_null] = ACTIONS(1932), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1934), + [anon_sym_ATimport] = ACTIONS(1934), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1932), + [anon_sym_ATcompatibility_alias] = ACTIONS(1934), + [anon_sym_ATprotocol] = ACTIONS(1934), + [anon_sym_ATclass] = ACTIONS(1934), + [anon_sym_ATinterface] = ACTIONS(1934), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1932), + [sym_method_attribute_specifier] = ACTIONS(1932), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1932), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE] = ACTIONS(1932), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_API_AVAILABLE] = ACTIONS(1932), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_API_DEPRECATED] = ACTIONS(1932), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1932), + [anon_sym___deprecated_msg] = ACTIONS(1932), + [anon_sym___deprecated_enum_msg] = ACTIONS(1932), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1932), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1932), + [anon_sym_ATimplementation] = ACTIONS(1934), + [anon_sym_NS_ENUM] = ACTIONS(1932), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1932), + [anon_sym_NS_OPTIONS] = ACTIONS(1932), + [anon_sym_typeof] = ACTIONS(1932), + [anon_sym___typeof] = ACTIONS(1932), + [anon_sym___typeof__] = ACTIONS(1932), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_nil] = ACTIONS(1932), + [sym_id] = ACTIONS(1932), + [sym_instancetype] = ACTIONS(1932), + [sym_Class] = ACTIONS(1932), + [sym_SEL] = ACTIONS(1932), + [sym_IMP] = ACTIONS(1932), + [sym_BOOL] = ACTIONS(1932), + [sym_auto] = ACTIONS(1932), + [anon_sym_ATautoreleasepool] = ACTIONS(1934), + [anon_sym_ATsynchronized] = ACTIONS(1934), + [anon_sym_ATtry] = ACTIONS(1934), + [anon_sym_ATthrow] = ACTIONS(1934), + [anon_sym_ATselector] = ACTIONS(1934), + [anon_sym_ATencode] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1932), + [sym_YES] = ACTIONS(1932), + [sym_NO] = ACTIONS(1932), + [anon_sym___builtin_available] = ACTIONS(1932), + [anon_sym_ATavailable] = ACTIONS(1934), + [anon_sym_va_arg] = ACTIONS(1932), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1022] = { + [ts_builtin_sym_end] = ACTIONS(1934), + [sym_identifier] = ACTIONS(1932), + [aux_sym_preproc_include_token1] = ACTIONS(1934), + [aux_sym_preproc_def_token1] = ACTIONS(1934), + [aux_sym_preproc_if_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_CARET] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym___attribute] = ACTIONS(1932), + [anon_sym___attribute__] = ACTIONS(1932), + [anon_sym___declspec] = ACTIONS(1932), + [anon_sym___cdecl] = ACTIONS(1932), + [anon_sym___clrcall] = ACTIONS(1932), + [anon_sym___stdcall] = ACTIONS(1932), + [anon_sym___fastcall] = ACTIONS(1932), + [anon_sym___thiscall] = ACTIONS(1932), + [anon_sym___vectorcall] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_auto] = ACTIONS(1932), + [anon_sym_register] = ACTIONS(1932), + [anon_sym_inline] = ACTIONS(1932), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym_in] = ACTIONS(1932), + [anon_sym_out] = ACTIONS(1932), + [anon_sym_inout] = ACTIONS(1932), + [anon_sym_bycopy] = ACTIONS(1932), + [anon_sym_byref] = ACTIONS(1932), + [anon_sym_oneway] = ACTIONS(1932), + [anon_sym__Nullable] = ACTIONS(1932), + [anon_sym__Nonnull] = ACTIONS(1932), + [anon_sym__Nullable_result] = ACTIONS(1932), + [anon_sym__Null_unspecified] = ACTIONS(1932), + [anon_sym___autoreleasing] = ACTIONS(1932), + [anon_sym___nullable] = ACTIONS(1932), + [anon_sym___nonnull] = ACTIONS(1932), + [anon_sym___strong] = ACTIONS(1932), + [anon_sym___weak] = ACTIONS(1932), + [anon_sym___bridge] = ACTIONS(1932), + [anon_sym___bridge_transfer] = ACTIONS(1932), + [anon_sym___bridge_retained] = ACTIONS(1932), + [anon_sym___unsafe_unretained] = ACTIONS(1932), + [anon_sym___block] = ACTIONS(1932), + [anon_sym___kindof] = ACTIONS(1932), + [anon_sym___unused] = ACTIONS(1932), + [anon_sym__Complex] = ACTIONS(1932), + [anon_sym___complex] = ACTIONS(1932), + [anon_sym_IBOutlet] = ACTIONS(1932), + [anon_sym_IBInspectable] = ACTIONS(1932), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1932), + [anon_sym_signed] = ACTIONS(1932), + [anon_sym_unsigned] = ACTIONS(1932), + [anon_sym_long] = ACTIONS(1932), + [anon_sym_short] = ACTIONS(1932), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_goto] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [sym_null] = ACTIONS(1932), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1934), + [anon_sym_ATimport] = ACTIONS(1934), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1932), + [anon_sym_ATcompatibility_alias] = ACTIONS(1934), + [anon_sym_ATprotocol] = ACTIONS(1934), + [anon_sym_ATclass] = ACTIONS(1934), + [anon_sym_ATinterface] = ACTIONS(1934), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1932), + [sym_method_attribute_specifier] = ACTIONS(1932), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1932), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE] = ACTIONS(1932), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_API_AVAILABLE] = ACTIONS(1932), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_API_DEPRECATED] = ACTIONS(1932), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1932), + [anon_sym___deprecated_msg] = ACTIONS(1932), + [anon_sym___deprecated_enum_msg] = ACTIONS(1932), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1932), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1932), + [anon_sym_ATimplementation] = ACTIONS(1934), + [anon_sym_NS_ENUM] = ACTIONS(1932), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1932), + [anon_sym_NS_OPTIONS] = ACTIONS(1932), + [anon_sym_typeof] = ACTIONS(1932), + [anon_sym___typeof] = ACTIONS(1932), + [anon_sym___typeof__] = ACTIONS(1932), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_nil] = ACTIONS(1932), + [sym_id] = ACTIONS(1932), + [sym_instancetype] = ACTIONS(1932), + [sym_Class] = ACTIONS(1932), + [sym_SEL] = ACTIONS(1932), + [sym_IMP] = ACTIONS(1932), + [sym_BOOL] = ACTIONS(1932), + [sym_auto] = ACTIONS(1932), + [anon_sym_ATautoreleasepool] = ACTIONS(1934), + [anon_sym_ATsynchronized] = ACTIONS(1934), + [anon_sym_ATtry] = ACTIONS(1934), + [anon_sym_ATthrow] = ACTIONS(1934), + [anon_sym_ATselector] = ACTIONS(1934), + [anon_sym_ATencode] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1932), + [sym_YES] = ACTIONS(1932), + [sym_NO] = ACTIONS(1932), + [anon_sym___builtin_available] = ACTIONS(1932), + [anon_sym_ATavailable] = ACTIONS(1934), + [anon_sym_va_arg] = ACTIONS(1932), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1023] = { + [ts_builtin_sym_end] = ACTIONS(1934), + [sym_identifier] = ACTIONS(1932), + [aux_sym_preproc_include_token1] = ACTIONS(1934), + [aux_sym_preproc_def_token1] = ACTIONS(1934), + [aux_sym_preproc_if_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_CARET] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym___attribute] = ACTIONS(1932), + [anon_sym___attribute__] = ACTIONS(1932), + [anon_sym___declspec] = ACTIONS(1932), + [anon_sym___cdecl] = ACTIONS(1932), + [anon_sym___clrcall] = ACTIONS(1932), + [anon_sym___stdcall] = ACTIONS(1932), + [anon_sym___fastcall] = ACTIONS(1932), + [anon_sym___thiscall] = ACTIONS(1932), + [anon_sym___vectorcall] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_auto] = ACTIONS(1932), + [anon_sym_register] = ACTIONS(1932), + [anon_sym_inline] = ACTIONS(1932), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym_in] = ACTIONS(1932), + [anon_sym_out] = ACTIONS(1932), + [anon_sym_inout] = ACTIONS(1932), + [anon_sym_bycopy] = ACTIONS(1932), + [anon_sym_byref] = ACTIONS(1932), + [anon_sym_oneway] = ACTIONS(1932), + [anon_sym__Nullable] = ACTIONS(1932), + [anon_sym__Nonnull] = ACTIONS(1932), + [anon_sym__Nullable_result] = ACTIONS(1932), + [anon_sym__Null_unspecified] = ACTIONS(1932), + [anon_sym___autoreleasing] = ACTIONS(1932), + [anon_sym___nullable] = ACTIONS(1932), + [anon_sym___nonnull] = ACTIONS(1932), + [anon_sym___strong] = ACTIONS(1932), + [anon_sym___weak] = ACTIONS(1932), + [anon_sym___bridge] = ACTIONS(1932), + [anon_sym___bridge_transfer] = ACTIONS(1932), + [anon_sym___bridge_retained] = ACTIONS(1932), + [anon_sym___unsafe_unretained] = ACTIONS(1932), + [anon_sym___block] = ACTIONS(1932), + [anon_sym___kindof] = ACTIONS(1932), + [anon_sym___unused] = ACTIONS(1932), + [anon_sym__Complex] = ACTIONS(1932), + [anon_sym___complex] = ACTIONS(1932), + [anon_sym_IBOutlet] = ACTIONS(1932), + [anon_sym_IBInspectable] = ACTIONS(1932), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1932), + [anon_sym_signed] = ACTIONS(1932), + [anon_sym_unsigned] = ACTIONS(1932), + [anon_sym_long] = ACTIONS(1932), + [anon_sym_short] = ACTIONS(1932), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_goto] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [sym_null] = ACTIONS(1932), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1934), + [anon_sym_ATimport] = ACTIONS(1934), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1932), + [anon_sym_ATcompatibility_alias] = ACTIONS(1934), + [anon_sym_ATprotocol] = ACTIONS(1934), + [anon_sym_ATclass] = ACTIONS(1934), + [anon_sym_ATinterface] = ACTIONS(1934), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1932), + [sym_method_attribute_specifier] = ACTIONS(1932), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1932), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE] = ACTIONS(1932), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_API_AVAILABLE] = ACTIONS(1932), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_API_DEPRECATED] = ACTIONS(1932), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1932), + [anon_sym___deprecated_msg] = ACTIONS(1932), + [anon_sym___deprecated_enum_msg] = ACTIONS(1932), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1932), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1932), + [anon_sym_ATimplementation] = ACTIONS(1934), + [anon_sym_NS_ENUM] = ACTIONS(1932), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1932), + [anon_sym_NS_OPTIONS] = ACTIONS(1932), + [anon_sym_typeof] = ACTIONS(1932), + [anon_sym___typeof] = ACTIONS(1932), + [anon_sym___typeof__] = ACTIONS(1932), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_nil] = ACTIONS(1932), + [sym_id] = ACTIONS(1932), + [sym_instancetype] = ACTIONS(1932), + [sym_Class] = ACTIONS(1932), + [sym_SEL] = ACTIONS(1932), + [sym_IMP] = ACTIONS(1932), + [sym_BOOL] = ACTIONS(1932), + [sym_auto] = ACTIONS(1932), + [anon_sym_ATautoreleasepool] = ACTIONS(1934), + [anon_sym_ATsynchronized] = ACTIONS(1934), + [anon_sym_ATtry] = ACTIONS(1934), + [anon_sym_ATthrow] = ACTIONS(1934), + [anon_sym_ATselector] = ACTIONS(1934), + [anon_sym_ATencode] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1932), + [sym_YES] = ACTIONS(1932), + [sym_NO] = ACTIONS(1932), + [anon_sym___builtin_available] = ACTIONS(1932), + [anon_sym_ATavailable] = ACTIONS(1934), + [anon_sym_va_arg] = ACTIONS(1932), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1024] = { + [ts_builtin_sym_end] = ACTIONS(1934), + [sym_identifier] = ACTIONS(1932), + [aux_sym_preproc_include_token1] = ACTIONS(1934), + [aux_sym_preproc_def_token1] = ACTIONS(1934), + [aux_sym_preproc_if_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_CARET] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym___attribute] = ACTIONS(1932), + [anon_sym___attribute__] = ACTIONS(1932), + [anon_sym___declspec] = ACTIONS(1932), + [anon_sym___cdecl] = ACTIONS(1932), + [anon_sym___clrcall] = ACTIONS(1932), + [anon_sym___stdcall] = ACTIONS(1932), + [anon_sym___fastcall] = ACTIONS(1932), + [anon_sym___thiscall] = ACTIONS(1932), + [anon_sym___vectorcall] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_auto] = ACTIONS(1932), + [anon_sym_register] = ACTIONS(1932), + [anon_sym_inline] = ACTIONS(1932), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym_in] = ACTIONS(1932), + [anon_sym_out] = ACTIONS(1932), + [anon_sym_inout] = ACTIONS(1932), + [anon_sym_bycopy] = ACTIONS(1932), + [anon_sym_byref] = ACTIONS(1932), + [anon_sym_oneway] = ACTIONS(1932), + [anon_sym__Nullable] = ACTIONS(1932), + [anon_sym__Nonnull] = ACTIONS(1932), + [anon_sym__Nullable_result] = ACTIONS(1932), + [anon_sym__Null_unspecified] = ACTIONS(1932), + [anon_sym___autoreleasing] = ACTIONS(1932), + [anon_sym___nullable] = ACTIONS(1932), + [anon_sym___nonnull] = ACTIONS(1932), + [anon_sym___strong] = ACTIONS(1932), + [anon_sym___weak] = ACTIONS(1932), + [anon_sym___bridge] = ACTIONS(1932), + [anon_sym___bridge_transfer] = ACTIONS(1932), + [anon_sym___bridge_retained] = ACTIONS(1932), + [anon_sym___unsafe_unretained] = ACTIONS(1932), + [anon_sym___block] = ACTIONS(1932), + [anon_sym___kindof] = ACTIONS(1932), + [anon_sym___unused] = ACTIONS(1932), + [anon_sym__Complex] = ACTIONS(1932), + [anon_sym___complex] = ACTIONS(1932), + [anon_sym_IBOutlet] = ACTIONS(1932), + [anon_sym_IBInspectable] = ACTIONS(1932), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1932), + [anon_sym_signed] = ACTIONS(1932), + [anon_sym_unsigned] = ACTIONS(1932), + [anon_sym_long] = ACTIONS(1932), + [anon_sym_short] = ACTIONS(1932), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_goto] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [sym_null] = ACTIONS(1932), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1934), + [anon_sym_ATimport] = ACTIONS(1934), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1932), + [anon_sym_ATcompatibility_alias] = ACTIONS(1934), + [anon_sym_ATprotocol] = ACTIONS(1934), + [anon_sym_ATclass] = ACTIONS(1934), + [anon_sym_ATinterface] = ACTIONS(1934), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1932), + [sym_method_attribute_specifier] = ACTIONS(1932), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1932), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE] = ACTIONS(1932), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_API_AVAILABLE] = ACTIONS(1932), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_API_DEPRECATED] = ACTIONS(1932), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1932), + [anon_sym___deprecated_msg] = ACTIONS(1932), + [anon_sym___deprecated_enum_msg] = ACTIONS(1932), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1932), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1932), + [anon_sym_ATimplementation] = ACTIONS(1934), + [anon_sym_NS_ENUM] = ACTIONS(1932), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1932), + [anon_sym_NS_OPTIONS] = ACTIONS(1932), + [anon_sym_typeof] = ACTIONS(1932), + [anon_sym___typeof] = ACTIONS(1932), + [anon_sym___typeof__] = ACTIONS(1932), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_nil] = ACTIONS(1932), + [sym_id] = ACTIONS(1932), + [sym_instancetype] = ACTIONS(1932), + [sym_Class] = ACTIONS(1932), + [sym_SEL] = ACTIONS(1932), + [sym_IMP] = ACTIONS(1932), + [sym_BOOL] = ACTIONS(1932), + [sym_auto] = ACTIONS(1932), + [anon_sym_ATautoreleasepool] = ACTIONS(1934), + [anon_sym_ATsynchronized] = ACTIONS(1934), + [anon_sym_ATtry] = ACTIONS(1934), + [anon_sym_ATthrow] = ACTIONS(1934), + [anon_sym_ATselector] = ACTIONS(1934), + [anon_sym_ATencode] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1932), + [sym_YES] = ACTIONS(1932), + [sym_NO] = ACTIONS(1932), + [anon_sym___builtin_available] = ACTIONS(1932), + [anon_sym_ATavailable] = ACTIONS(1934), + [anon_sym_va_arg] = ACTIONS(1932), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1025] = { + [ts_builtin_sym_end] = ACTIONS(1930), + [sym_identifier] = ACTIONS(1928), + [aux_sym_preproc_include_token1] = ACTIONS(1930), + [aux_sym_preproc_def_token1] = ACTIONS(1930), + [aux_sym_preproc_if_token1] = ACTIONS(1928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1928), + [anon_sym_LPAREN2] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1930), + [anon_sym_TILDE] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_STAR] = ACTIONS(1930), + [anon_sym_CARET] = ACTIONS(1930), + [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_typedef] = ACTIONS(1928), + [anon_sym_extern] = ACTIONS(1928), + [anon_sym___attribute] = ACTIONS(1928), + [anon_sym___attribute__] = ACTIONS(1928), + [anon_sym___declspec] = ACTIONS(1928), + [anon_sym___cdecl] = ACTIONS(1928), + [anon_sym___clrcall] = ACTIONS(1928), + [anon_sym___stdcall] = ACTIONS(1928), + [anon_sym___fastcall] = ACTIONS(1928), + [anon_sym___thiscall] = ACTIONS(1928), + [anon_sym___vectorcall] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(1930), + [anon_sym_LBRACK] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1928), + [anon_sym_auto] = ACTIONS(1928), + [anon_sym_register] = ACTIONS(1928), + [anon_sym_inline] = ACTIONS(1928), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1928), + [anon_sym_const] = ACTIONS(1928), + [anon_sym_volatile] = ACTIONS(1928), + [anon_sym_restrict] = ACTIONS(1928), + [anon_sym__Atomic] = ACTIONS(1928), + [anon_sym_in] = ACTIONS(1928), + [anon_sym_out] = ACTIONS(1928), + [anon_sym_inout] = ACTIONS(1928), + [anon_sym_bycopy] = ACTIONS(1928), + [anon_sym_byref] = ACTIONS(1928), + [anon_sym_oneway] = ACTIONS(1928), + [anon_sym__Nullable] = ACTIONS(1928), + [anon_sym__Nonnull] = ACTIONS(1928), + [anon_sym__Nullable_result] = ACTIONS(1928), + [anon_sym__Null_unspecified] = ACTIONS(1928), + [anon_sym___autoreleasing] = ACTIONS(1928), + [anon_sym___nullable] = ACTIONS(1928), + [anon_sym___nonnull] = ACTIONS(1928), + [anon_sym___strong] = ACTIONS(1928), + [anon_sym___weak] = ACTIONS(1928), + [anon_sym___bridge] = ACTIONS(1928), + [anon_sym___bridge_transfer] = ACTIONS(1928), + [anon_sym___bridge_retained] = ACTIONS(1928), + [anon_sym___unsafe_unretained] = ACTIONS(1928), + [anon_sym___block] = ACTIONS(1928), + [anon_sym___kindof] = ACTIONS(1928), + [anon_sym___unused] = ACTIONS(1928), + [anon_sym__Complex] = ACTIONS(1928), + [anon_sym___complex] = ACTIONS(1928), + [anon_sym_IBOutlet] = ACTIONS(1928), + [anon_sym_IBInspectable] = ACTIONS(1928), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1928), + [anon_sym_signed] = ACTIONS(1928), + [anon_sym_unsigned] = ACTIONS(1928), + [anon_sym_long] = ACTIONS(1928), + [anon_sym_short] = ACTIONS(1928), + [sym_primitive_type] = ACTIONS(1928), + [anon_sym_enum] = ACTIONS(1928), + [anon_sym_struct] = ACTIONS(1928), + [anon_sym_union] = ACTIONS(1928), + [anon_sym_if] = ACTIONS(1928), + [anon_sym_switch] = ACTIONS(1928), + [anon_sym_case] = ACTIONS(1928), + [anon_sym_default] = ACTIONS(1928), + [anon_sym_while] = ACTIONS(1928), + [anon_sym_do] = ACTIONS(1928), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(1928), + [anon_sym_break] = ACTIONS(1928), + [anon_sym_continue] = ACTIONS(1928), + [anon_sym_goto] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1928), + [sym_number_literal] = ACTIONS(1930), + [anon_sym_L_SQUOTE] = ACTIONS(1930), + [anon_sym_u_SQUOTE] = ACTIONS(1930), + [anon_sym_U_SQUOTE] = ACTIONS(1930), + [anon_sym_u8_SQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1930), + [anon_sym_L_DQUOTE] = ACTIONS(1930), + [anon_sym_u_DQUOTE] = ACTIONS(1930), + [anon_sym_U_DQUOTE] = ACTIONS(1930), + [anon_sym_u8_DQUOTE] = ACTIONS(1930), + [anon_sym_DQUOTE] = ACTIONS(1930), + [sym_true] = ACTIONS(1928), + [sym_false] = ACTIONS(1928), + [sym_null] = ACTIONS(1928), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1930), + [anon_sym_ATimport] = ACTIONS(1930), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1928), + [anon_sym_ATcompatibility_alias] = ACTIONS(1930), + [anon_sym_ATprotocol] = ACTIONS(1930), + [anon_sym_ATclass] = ACTIONS(1930), + [anon_sym_ATinterface] = ACTIONS(1930), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1928), + [sym_method_attribute_specifier] = ACTIONS(1928), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1928), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1928), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1928), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1928), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1928), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1928), + [anon_sym_NS_AVAILABLE] = ACTIONS(1928), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1928), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1928), + [anon_sym_API_AVAILABLE] = ACTIONS(1928), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1928), + [anon_sym_API_DEPRECATED] = ACTIONS(1928), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1928), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1928), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1928), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1928), + [anon_sym___deprecated_msg] = ACTIONS(1928), + [anon_sym___deprecated_enum_msg] = ACTIONS(1928), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1928), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1928), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1928), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1928), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1928), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1928), + [anon_sym_ATimplementation] = ACTIONS(1930), + [anon_sym_NS_ENUM] = ACTIONS(1928), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1928), + [anon_sym_NS_OPTIONS] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(1928), + [anon_sym___typeof] = ACTIONS(1928), + [anon_sym___typeof__] = ACTIONS(1928), + [sym_self] = ACTIONS(1928), + [sym_super] = ACTIONS(1928), + [sym_nil] = ACTIONS(1928), + [sym_id] = ACTIONS(1928), + [sym_instancetype] = ACTIONS(1928), + [sym_Class] = ACTIONS(1928), + [sym_SEL] = ACTIONS(1928), + [sym_IMP] = ACTIONS(1928), + [sym_BOOL] = ACTIONS(1928), + [sym_auto] = ACTIONS(1928), + [anon_sym_ATautoreleasepool] = ACTIONS(1930), + [anon_sym_ATsynchronized] = ACTIONS(1930), + [anon_sym_ATtry] = ACTIONS(1930), + [anon_sym_ATthrow] = ACTIONS(1930), + [anon_sym_ATselector] = ACTIONS(1930), + [anon_sym_ATencode] = ACTIONS(1930), + [anon_sym_AT] = ACTIONS(1928), + [sym_YES] = ACTIONS(1928), + [sym_NO] = ACTIONS(1928), + [anon_sym___builtin_available] = ACTIONS(1928), + [anon_sym_ATavailable] = ACTIONS(1930), + [anon_sym_va_arg] = ACTIONS(1928), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1026] = { + [ts_builtin_sym_end] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2120), + [aux_sym_preproc_include_token1] = ACTIONS(2122), + [aux_sym_preproc_def_token1] = ACTIONS(2122), + [aux_sym_preproc_if_token1] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), + [anon_sym_LPAREN2] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_PLUS] = ACTIONS(2120), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_CARET] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_typedef] = ACTIONS(2120), + [anon_sym_extern] = ACTIONS(2120), + [anon_sym___attribute] = ACTIONS(2120), + [anon_sym___attribute__] = ACTIONS(2120), + [anon_sym___declspec] = ACTIONS(2120), + [anon_sym___cdecl] = ACTIONS(2120), + [anon_sym___clrcall] = ACTIONS(2120), + [anon_sym___stdcall] = ACTIONS(2120), + [anon_sym___fastcall] = ACTIONS(2120), + [anon_sym___thiscall] = ACTIONS(2120), + [anon_sym___vectorcall] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_auto] = ACTIONS(2120), + [anon_sym_register] = ACTIONS(2120), + [anon_sym_inline] = ACTIONS(2120), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_volatile] = ACTIONS(2120), + [anon_sym_restrict] = ACTIONS(2120), + [anon_sym__Atomic] = ACTIONS(2120), + [anon_sym_in] = ACTIONS(2120), + [anon_sym_out] = ACTIONS(2120), + [anon_sym_inout] = ACTIONS(2120), + [anon_sym_bycopy] = ACTIONS(2120), + [anon_sym_byref] = ACTIONS(2120), + [anon_sym_oneway] = ACTIONS(2120), + [anon_sym__Nullable] = ACTIONS(2120), + [anon_sym__Nonnull] = ACTIONS(2120), + [anon_sym__Nullable_result] = ACTIONS(2120), + [anon_sym__Null_unspecified] = ACTIONS(2120), + [anon_sym___autoreleasing] = ACTIONS(2120), + [anon_sym___nullable] = ACTIONS(2120), + [anon_sym___nonnull] = ACTIONS(2120), + [anon_sym___strong] = ACTIONS(2120), + [anon_sym___weak] = ACTIONS(2120), + [anon_sym___bridge] = ACTIONS(2120), + [anon_sym___bridge_transfer] = ACTIONS(2120), + [anon_sym___bridge_retained] = ACTIONS(2120), + [anon_sym___unsafe_unretained] = ACTIONS(2120), + [anon_sym___block] = ACTIONS(2120), + [anon_sym___kindof] = ACTIONS(2120), + [anon_sym___unused] = ACTIONS(2120), + [anon_sym__Complex] = ACTIONS(2120), + [anon_sym___complex] = ACTIONS(2120), + [anon_sym_IBOutlet] = ACTIONS(2120), + [anon_sym_IBInspectable] = ACTIONS(2120), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2120), + [anon_sym_signed] = ACTIONS(2120), + [anon_sym_unsigned] = ACTIONS(2120), + [anon_sym_long] = ACTIONS(2120), + [anon_sym_short] = ACTIONS(2120), + [sym_primitive_type] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_union] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_default] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_goto] = ACTIONS(2120), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_sizeof] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2122), + [anon_sym_u_DQUOTE] = ACTIONS(2122), + [anon_sym_U_DQUOTE] = ACTIONS(2122), + [anon_sym_u8_DQUOTE] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [sym_true] = ACTIONS(2120), + [sym_false] = ACTIONS(2120), + [sym_null] = ACTIONS(2120), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2122), + [anon_sym_ATimport] = ACTIONS(2122), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2120), + [anon_sym_ATcompatibility_alias] = ACTIONS(2122), + [anon_sym_ATprotocol] = ACTIONS(2122), + [anon_sym_ATclass] = ACTIONS(2122), + [anon_sym_ATinterface] = ACTIONS(2122), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2120), + [sym_method_attribute_specifier] = ACTIONS(2120), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2120), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2120), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2120), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2120), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2120), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2120), + [anon_sym_NS_AVAILABLE] = ACTIONS(2120), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2120), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2120), + [anon_sym_API_AVAILABLE] = ACTIONS(2120), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2120), + [anon_sym_API_DEPRECATED] = ACTIONS(2120), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2120), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2120), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2120), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2120), + [anon_sym___deprecated_msg] = ACTIONS(2120), + [anon_sym___deprecated_enum_msg] = ACTIONS(2120), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2120), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2120), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2120), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2120), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2120), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2120), + [anon_sym_ATimplementation] = ACTIONS(2122), + [anon_sym_NS_ENUM] = ACTIONS(2120), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2120), + [anon_sym_NS_OPTIONS] = ACTIONS(2120), + [anon_sym_typeof] = ACTIONS(2120), + [anon_sym___typeof] = ACTIONS(2120), + [anon_sym___typeof__] = ACTIONS(2120), + [sym_self] = ACTIONS(2120), + [sym_super] = ACTIONS(2120), + [sym_nil] = ACTIONS(2120), + [sym_id] = ACTIONS(2120), + [sym_instancetype] = ACTIONS(2120), + [sym_Class] = ACTIONS(2120), + [sym_SEL] = ACTIONS(2120), + [sym_IMP] = ACTIONS(2120), + [sym_BOOL] = ACTIONS(2120), + [sym_auto] = ACTIONS(2120), + [anon_sym_ATautoreleasepool] = ACTIONS(2122), + [anon_sym_ATsynchronized] = ACTIONS(2122), + [anon_sym_ATtry] = ACTIONS(2122), + [anon_sym_ATthrow] = ACTIONS(2122), + [anon_sym_ATselector] = ACTIONS(2122), + [anon_sym_ATencode] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2120), + [sym_YES] = ACTIONS(2120), + [sym_NO] = ACTIONS(2120), + [anon_sym___builtin_available] = ACTIONS(2120), + [anon_sym_ATavailable] = ACTIONS(2122), + [anon_sym_va_arg] = ACTIONS(2120), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1027] = { + [ts_builtin_sym_end] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1028] = { + [ts_builtin_sym_end] = ACTIONS(2110), + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_include_token1] = ACTIONS(2110), + [aux_sym_preproc_def_token1] = ACTIONS(2110), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___cdecl] = ACTIONS(2108), + [anon_sym___clrcall] = ACTIONS(2108), + [anon_sym___stdcall] = ACTIONS(2108), + [anon_sym___fastcall] = ACTIONS(2108), + [anon_sym___thiscall] = ACTIONS(2108), + [anon_sym___vectorcall] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_auto] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2108), + [anon_sym_out] = ACTIONS(2108), + [anon_sym_inout] = ACTIONS(2108), + [anon_sym_bycopy] = ACTIONS(2108), + [anon_sym_byref] = ACTIONS(2108), + [anon_sym_oneway] = ACTIONS(2108), + [anon_sym__Nullable] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym__Nullable_result] = ACTIONS(2108), + [anon_sym__Null_unspecified] = ACTIONS(2108), + [anon_sym___autoreleasing] = ACTIONS(2108), + [anon_sym___nullable] = ACTIONS(2108), + [anon_sym___nonnull] = ACTIONS(2108), + [anon_sym___strong] = ACTIONS(2108), + [anon_sym___weak] = ACTIONS(2108), + [anon_sym___bridge] = ACTIONS(2108), + [anon_sym___bridge_transfer] = ACTIONS(2108), + [anon_sym___bridge_retained] = ACTIONS(2108), + [anon_sym___unsafe_unretained] = ACTIONS(2108), + [anon_sym___block] = ACTIONS(2108), + [anon_sym___kindof] = ACTIONS(2108), + [anon_sym___unused] = ACTIONS(2108), + [anon_sym__Complex] = ACTIONS(2108), + [anon_sym___complex] = ACTIONS(2108), + [anon_sym_IBOutlet] = ACTIONS(2108), + [anon_sym_IBInspectable] = ACTIONS(2108), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2108), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [sym_null] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2110), + [anon_sym_ATimport] = ACTIONS(2110), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2108), + [anon_sym_ATcompatibility_alias] = ACTIONS(2110), + [anon_sym_ATprotocol] = ACTIONS(2110), + [anon_sym_ATclass] = ACTIONS(2110), + [anon_sym_ATinterface] = ACTIONS(2110), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2108), + [sym_method_attribute_specifier] = ACTIONS(2108), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2108), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE] = ACTIONS(2108), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_API_AVAILABLE] = ACTIONS(2108), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_API_DEPRECATED] = ACTIONS(2108), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2108), + [anon_sym___deprecated_msg] = ACTIONS(2108), + [anon_sym___deprecated_enum_msg] = ACTIONS(2108), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2108), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2108), + [anon_sym_ATimplementation] = ACTIONS(2110), + [anon_sym_NS_ENUM] = ACTIONS(2108), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2108), + [anon_sym_NS_OPTIONS] = ACTIONS(2108), + [anon_sym_typeof] = ACTIONS(2108), + [anon_sym___typeof] = ACTIONS(2108), + [anon_sym___typeof__] = ACTIONS(2108), + [sym_self] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_nil] = ACTIONS(2108), + [sym_id] = ACTIONS(2108), + [sym_instancetype] = ACTIONS(2108), + [sym_Class] = ACTIONS(2108), + [sym_SEL] = ACTIONS(2108), + [sym_IMP] = ACTIONS(2108), + [sym_BOOL] = ACTIONS(2108), + [sym_auto] = ACTIONS(2108), + [anon_sym_ATautoreleasepool] = ACTIONS(2110), + [anon_sym_ATsynchronized] = ACTIONS(2110), + [anon_sym_ATtry] = ACTIONS(2110), + [anon_sym_ATthrow] = ACTIONS(2110), + [anon_sym_ATselector] = ACTIONS(2110), + [anon_sym_ATencode] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2108), + [sym_YES] = ACTIONS(2108), + [sym_NO] = ACTIONS(2108), + [anon_sym___builtin_available] = ACTIONS(2108), + [anon_sym_ATavailable] = ACTIONS(2110), + [anon_sym_va_arg] = ACTIONS(2108), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1029] = { + [ts_builtin_sym_end] = ACTIONS(2118), + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2118), + [aux_sym_preproc_def_token1] = ACTIONS(2118), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_auto] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [anon_sym_out] = ACTIONS(2116), + [anon_sym_inout] = ACTIONS(2116), + [anon_sym_bycopy] = ACTIONS(2116), + [anon_sym_byref] = ACTIONS(2116), + [anon_sym_oneway] = ACTIONS(2116), + [anon_sym__Nullable] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym__Nullable_result] = ACTIONS(2116), + [anon_sym__Null_unspecified] = ACTIONS(2116), + [anon_sym___autoreleasing] = ACTIONS(2116), + [anon_sym___nullable] = ACTIONS(2116), + [anon_sym___nonnull] = ACTIONS(2116), + [anon_sym___strong] = ACTIONS(2116), + [anon_sym___weak] = ACTIONS(2116), + [anon_sym___bridge] = ACTIONS(2116), + [anon_sym___bridge_transfer] = ACTIONS(2116), + [anon_sym___bridge_retained] = ACTIONS(2116), + [anon_sym___unsafe_unretained] = ACTIONS(2116), + [anon_sym___block] = ACTIONS(2116), + [anon_sym___kindof] = ACTIONS(2116), + [anon_sym___unused] = ACTIONS(2116), + [anon_sym__Complex] = ACTIONS(2116), + [anon_sym___complex] = ACTIONS(2116), + [anon_sym_IBOutlet] = ACTIONS(2116), + [anon_sym_IBInspectable] = ACTIONS(2116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2116), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2118), + [anon_sym_ATimport] = ACTIONS(2118), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2116), + [anon_sym_ATcompatibility_alias] = ACTIONS(2118), + [anon_sym_ATprotocol] = ACTIONS(2118), + [anon_sym_ATclass] = ACTIONS(2118), + [anon_sym_ATinterface] = ACTIONS(2118), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2116), + [sym_method_attribute_specifier] = ACTIONS(2116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE] = ACTIONS(2116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_API_AVAILABLE] = ACTIONS(2116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_API_DEPRECATED] = ACTIONS(2116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2116), + [anon_sym___deprecated_msg] = ACTIONS(2116), + [anon_sym___deprecated_enum_msg] = ACTIONS(2116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2116), + [anon_sym_ATimplementation] = ACTIONS(2118), + [anon_sym_NS_ENUM] = ACTIONS(2116), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2116), + [anon_sym_NS_OPTIONS] = ACTIONS(2116), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym___typeof] = ACTIONS(2116), + [anon_sym___typeof__] = ACTIONS(2116), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_nil] = ACTIONS(2116), + [sym_id] = ACTIONS(2116), + [sym_instancetype] = ACTIONS(2116), + [sym_Class] = ACTIONS(2116), + [sym_SEL] = ACTIONS(2116), + [sym_IMP] = ACTIONS(2116), + [sym_BOOL] = ACTIONS(2116), + [sym_auto] = ACTIONS(2116), + [anon_sym_ATautoreleasepool] = ACTIONS(2118), + [anon_sym_ATsynchronized] = ACTIONS(2118), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym_ATthrow] = ACTIONS(2118), + [anon_sym_ATselector] = ACTIONS(2118), + [anon_sym_ATencode] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2116), + [sym_YES] = ACTIONS(2116), + [sym_NO] = ACTIONS(2116), + [anon_sym___builtin_available] = ACTIONS(2116), + [anon_sym_ATavailable] = ACTIONS(2118), + [anon_sym_va_arg] = ACTIONS(2116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1030] = { + [ts_builtin_sym_end] = ACTIONS(2118), + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2118), + [aux_sym_preproc_def_token1] = ACTIONS(2118), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_auto] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [anon_sym_out] = ACTIONS(2116), + [anon_sym_inout] = ACTIONS(2116), + [anon_sym_bycopy] = ACTIONS(2116), + [anon_sym_byref] = ACTIONS(2116), + [anon_sym_oneway] = ACTIONS(2116), + [anon_sym__Nullable] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym__Nullable_result] = ACTIONS(2116), + [anon_sym__Null_unspecified] = ACTIONS(2116), + [anon_sym___autoreleasing] = ACTIONS(2116), + [anon_sym___nullable] = ACTIONS(2116), + [anon_sym___nonnull] = ACTIONS(2116), + [anon_sym___strong] = ACTIONS(2116), + [anon_sym___weak] = ACTIONS(2116), + [anon_sym___bridge] = ACTIONS(2116), + [anon_sym___bridge_transfer] = ACTIONS(2116), + [anon_sym___bridge_retained] = ACTIONS(2116), + [anon_sym___unsafe_unretained] = ACTIONS(2116), + [anon_sym___block] = ACTIONS(2116), + [anon_sym___kindof] = ACTIONS(2116), + [anon_sym___unused] = ACTIONS(2116), + [anon_sym__Complex] = ACTIONS(2116), + [anon_sym___complex] = ACTIONS(2116), + [anon_sym_IBOutlet] = ACTIONS(2116), + [anon_sym_IBInspectable] = ACTIONS(2116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2116), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2118), + [anon_sym_ATimport] = ACTIONS(2118), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2116), + [anon_sym_ATcompatibility_alias] = ACTIONS(2118), + [anon_sym_ATprotocol] = ACTIONS(2118), + [anon_sym_ATclass] = ACTIONS(2118), + [anon_sym_ATinterface] = ACTIONS(2118), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2116), + [sym_method_attribute_specifier] = ACTIONS(2116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE] = ACTIONS(2116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_API_AVAILABLE] = ACTIONS(2116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_API_DEPRECATED] = ACTIONS(2116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2116), + [anon_sym___deprecated_msg] = ACTIONS(2116), + [anon_sym___deprecated_enum_msg] = ACTIONS(2116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2116), + [anon_sym_ATimplementation] = ACTIONS(2118), + [anon_sym_NS_ENUM] = ACTIONS(2116), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2116), + [anon_sym_NS_OPTIONS] = ACTIONS(2116), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym___typeof] = ACTIONS(2116), + [anon_sym___typeof__] = ACTIONS(2116), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_nil] = ACTIONS(2116), + [sym_id] = ACTIONS(2116), + [sym_instancetype] = ACTIONS(2116), + [sym_Class] = ACTIONS(2116), + [sym_SEL] = ACTIONS(2116), + [sym_IMP] = ACTIONS(2116), + [sym_BOOL] = ACTIONS(2116), + [sym_auto] = ACTIONS(2116), + [anon_sym_ATautoreleasepool] = ACTIONS(2118), + [anon_sym_ATsynchronized] = ACTIONS(2118), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym_ATthrow] = ACTIONS(2118), + [anon_sym_ATselector] = ACTIONS(2118), + [anon_sym_ATencode] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2116), + [sym_YES] = ACTIONS(2116), + [sym_NO] = ACTIONS(2116), + [anon_sym___builtin_available] = ACTIONS(2116), + [anon_sym_ATavailable] = ACTIONS(2118), + [anon_sym_va_arg] = ACTIONS(2116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1031] = { + [ts_builtin_sym_end] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1032] = { + [ts_builtin_sym_end] = ACTIONS(2118), + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2118), + [aux_sym_preproc_def_token1] = ACTIONS(2118), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_auto] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [anon_sym_out] = ACTIONS(2116), + [anon_sym_inout] = ACTIONS(2116), + [anon_sym_bycopy] = ACTIONS(2116), + [anon_sym_byref] = ACTIONS(2116), + [anon_sym_oneway] = ACTIONS(2116), + [anon_sym__Nullable] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym__Nullable_result] = ACTIONS(2116), + [anon_sym__Null_unspecified] = ACTIONS(2116), + [anon_sym___autoreleasing] = ACTIONS(2116), + [anon_sym___nullable] = ACTIONS(2116), + [anon_sym___nonnull] = ACTIONS(2116), + [anon_sym___strong] = ACTIONS(2116), + [anon_sym___weak] = ACTIONS(2116), + [anon_sym___bridge] = ACTIONS(2116), + [anon_sym___bridge_transfer] = ACTIONS(2116), + [anon_sym___bridge_retained] = ACTIONS(2116), + [anon_sym___unsafe_unretained] = ACTIONS(2116), + [anon_sym___block] = ACTIONS(2116), + [anon_sym___kindof] = ACTIONS(2116), + [anon_sym___unused] = ACTIONS(2116), + [anon_sym__Complex] = ACTIONS(2116), + [anon_sym___complex] = ACTIONS(2116), + [anon_sym_IBOutlet] = ACTIONS(2116), + [anon_sym_IBInspectable] = ACTIONS(2116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2116), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2118), + [anon_sym_ATimport] = ACTIONS(2118), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2116), + [anon_sym_ATcompatibility_alias] = ACTIONS(2118), + [anon_sym_ATprotocol] = ACTIONS(2118), + [anon_sym_ATclass] = ACTIONS(2118), + [anon_sym_ATinterface] = ACTIONS(2118), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2116), + [sym_method_attribute_specifier] = ACTIONS(2116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE] = ACTIONS(2116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_API_AVAILABLE] = ACTIONS(2116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_API_DEPRECATED] = ACTIONS(2116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2116), + [anon_sym___deprecated_msg] = ACTIONS(2116), + [anon_sym___deprecated_enum_msg] = ACTIONS(2116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2116), + [anon_sym_ATimplementation] = ACTIONS(2118), + [anon_sym_NS_ENUM] = ACTIONS(2116), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2116), + [anon_sym_NS_OPTIONS] = ACTIONS(2116), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym___typeof] = ACTIONS(2116), + [anon_sym___typeof__] = ACTIONS(2116), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_nil] = ACTIONS(2116), + [sym_id] = ACTIONS(2116), + [sym_instancetype] = ACTIONS(2116), + [sym_Class] = ACTIONS(2116), + [sym_SEL] = ACTIONS(2116), + [sym_IMP] = ACTIONS(2116), + [sym_BOOL] = ACTIONS(2116), + [sym_auto] = ACTIONS(2116), + [anon_sym_ATautoreleasepool] = ACTIONS(2118), + [anon_sym_ATsynchronized] = ACTIONS(2118), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym_ATthrow] = ACTIONS(2118), + [anon_sym_ATselector] = ACTIONS(2118), + [anon_sym_ATencode] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2116), + [sym_YES] = ACTIONS(2116), + [sym_NO] = ACTIONS(2116), + [anon_sym___builtin_available] = ACTIONS(2116), + [anon_sym_ATavailable] = ACTIONS(2118), + [anon_sym_va_arg] = ACTIONS(2116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1033] = { + [ts_builtin_sym_end] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1034] = { + [ts_builtin_sym_end] = ACTIONS(2110), + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_include_token1] = ACTIONS(2110), + [aux_sym_preproc_def_token1] = ACTIONS(2110), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___cdecl] = ACTIONS(2108), + [anon_sym___clrcall] = ACTIONS(2108), + [anon_sym___stdcall] = ACTIONS(2108), + [anon_sym___fastcall] = ACTIONS(2108), + [anon_sym___thiscall] = ACTIONS(2108), + [anon_sym___vectorcall] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_auto] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2108), + [anon_sym_out] = ACTIONS(2108), + [anon_sym_inout] = ACTIONS(2108), + [anon_sym_bycopy] = ACTIONS(2108), + [anon_sym_byref] = ACTIONS(2108), + [anon_sym_oneway] = ACTIONS(2108), + [anon_sym__Nullable] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym__Nullable_result] = ACTIONS(2108), + [anon_sym__Null_unspecified] = ACTIONS(2108), + [anon_sym___autoreleasing] = ACTIONS(2108), + [anon_sym___nullable] = ACTIONS(2108), + [anon_sym___nonnull] = ACTIONS(2108), + [anon_sym___strong] = ACTIONS(2108), + [anon_sym___weak] = ACTIONS(2108), + [anon_sym___bridge] = ACTIONS(2108), + [anon_sym___bridge_transfer] = ACTIONS(2108), + [anon_sym___bridge_retained] = ACTIONS(2108), + [anon_sym___unsafe_unretained] = ACTIONS(2108), + [anon_sym___block] = ACTIONS(2108), + [anon_sym___kindof] = ACTIONS(2108), + [anon_sym___unused] = ACTIONS(2108), + [anon_sym__Complex] = ACTIONS(2108), + [anon_sym___complex] = ACTIONS(2108), + [anon_sym_IBOutlet] = ACTIONS(2108), + [anon_sym_IBInspectable] = ACTIONS(2108), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2108), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [sym_null] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2110), + [anon_sym_ATimport] = ACTIONS(2110), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2108), + [anon_sym_ATcompatibility_alias] = ACTIONS(2110), + [anon_sym_ATprotocol] = ACTIONS(2110), + [anon_sym_ATclass] = ACTIONS(2110), + [anon_sym_ATinterface] = ACTIONS(2110), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2108), + [sym_method_attribute_specifier] = ACTIONS(2108), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2108), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE] = ACTIONS(2108), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_API_AVAILABLE] = ACTIONS(2108), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_API_DEPRECATED] = ACTIONS(2108), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2108), + [anon_sym___deprecated_msg] = ACTIONS(2108), + [anon_sym___deprecated_enum_msg] = ACTIONS(2108), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2108), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2108), + [anon_sym_ATimplementation] = ACTIONS(2110), + [anon_sym_NS_ENUM] = ACTIONS(2108), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2108), + [anon_sym_NS_OPTIONS] = ACTIONS(2108), + [anon_sym_typeof] = ACTIONS(2108), + [anon_sym___typeof] = ACTIONS(2108), + [anon_sym___typeof__] = ACTIONS(2108), + [sym_self] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_nil] = ACTIONS(2108), + [sym_id] = ACTIONS(2108), + [sym_instancetype] = ACTIONS(2108), + [sym_Class] = ACTIONS(2108), + [sym_SEL] = ACTIONS(2108), + [sym_IMP] = ACTIONS(2108), + [sym_BOOL] = ACTIONS(2108), + [sym_auto] = ACTIONS(2108), + [anon_sym_ATautoreleasepool] = ACTIONS(2110), + [anon_sym_ATsynchronized] = ACTIONS(2110), + [anon_sym_ATtry] = ACTIONS(2110), + [anon_sym_ATthrow] = ACTIONS(2110), + [anon_sym_ATselector] = ACTIONS(2110), + [anon_sym_ATencode] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2108), + [sym_YES] = ACTIONS(2108), + [sym_NO] = ACTIONS(2108), + [anon_sym___builtin_available] = ACTIONS(2108), + [anon_sym_ATavailable] = ACTIONS(2110), + [anon_sym_va_arg] = ACTIONS(2108), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1035] = { + [ts_builtin_sym_end] = ACTIONS(2118), + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2118), + [aux_sym_preproc_def_token1] = ACTIONS(2118), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_auto] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [anon_sym_out] = ACTIONS(2116), + [anon_sym_inout] = ACTIONS(2116), + [anon_sym_bycopy] = ACTIONS(2116), + [anon_sym_byref] = ACTIONS(2116), + [anon_sym_oneway] = ACTIONS(2116), + [anon_sym__Nullable] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym__Nullable_result] = ACTIONS(2116), + [anon_sym__Null_unspecified] = ACTIONS(2116), + [anon_sym___autoreleasing] = ACTIONS(2116), + [anon_sym___nullable] = ACTIONS(2116), + [anon_sym___nonnull] = ACTIONS(2116), + [anon_sym___strong] = ACTIONS(2116), + [anon_sym___weak] = ACTIONS(2116), + [anon_sym___bridge] = ACTIONS(2116), + [anon_sym___bridge_transfer] = ACTIONS(2116), + [anon_sym___bridge_retained] = ACTIONS(2116), + [anon_sym___unsafe_unretained] = ACTIONS(2116), + [anon_sym___block] = ACTIONS(2116), + [anon_sym___kindof] = ACTIONS(2116), + [anon_sym___unused] = ACTIONS(2116), + [anon_sym__Complex] = ACTIONS(2116), + [anon_sym___complex] = ACTIONS(2116), + [anon_sym_IBOutlet] = ACTIONS(2116), + [anon_sym_IBInspectable] = ACTIONS(2116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2116), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2118), + [anon_sym_ATimport] = ACTIONS(2118), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2116), + [anon_sym_ATcompatibility_alias] = ACTIONS(2118), + [anon_sym_ATprotocol] = ACTIONS(2118), + [anon_sym_ATclass] = ACTIONS(2118), + [anon_sym_ATinterface] = ACTIONS(2118), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2116), + [sym_method_attribute_specifier] = ACTIONS(2116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE] = ACTIONS(2116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_API_AVAILABLE] = ACTIONS(2116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_API_DEPRECATED] = ACTIONS(2116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2116), + [anon_sym___deprecated_msg] = ACTIONS(2116), + [anon_sym___deprecated_enum_msg] = ACTIONS(2116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2116), + [anon_sym_ATimplementation] = ACTIONS(2118), + [anon_sym_NS_ENUM] = ACTIONS(2116), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2116), + [anon_sym_NS_OPTIONS] = ACTIONS(2116), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym___typeof] = ACTIONS(2116), + [anon_sym___typeof__] = ACTIONS(2116), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_nil] = ACTIONS(2116), + [sym_id] = ACTIONS(2116), + [sym_instancetype] = ACTIONS(2116), + [sym_Class] = ACTIONS(2116), + [sym_SEL] = ACTIONS(2116), + [sym_IMP] = ACTIONS(2116), + [sym_BOOL] = ACTIONS(2116), + [sym_auto] = ACTIONS(2116), + [anon_sym_ATautoreleasepool] = ACTIONS(2118), + [anon_sym_ATsynchronized] = ACTIONS(2118), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym_ATthrow] = ACTIONS(2118), + [anon_sym_ATselector] = ACTIONS(2118), + [anon_sym_ATencode] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2116), + [sym_YES] = ACTIONS(2116), + [sym_NO] = ACTIONS(2116), + [anon_sym___builtin_available] = ACTIONS(2116), + [anon_sym_ATavailable] = ACTIONS(2118), + [anon_sym_va_arg] = ACTIONS(2116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1036] = { + [ts_builtin_sym_end] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1037] = { + [ts_builtin_sym_end] = ACTIONS(2118), + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2118), + [aux_sym_preproc_def_token1] = ACTIONS(2118), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_auto] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [anon_sym_out] = ACTIONS(2116), + [anon_sym_inout] = ACTIONS(2116), + [anon_sym_bycopy] = ACTIONS(2116), + [anon_sym_byref] = ACTIONS(2116), + [anon_sym_oneway] = ACTIONS(2116), + [anon_sym__Nullable] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym__Nullable_result] = ACTIONS(2116), + [anon_sym__Null_unspecified] = ACTIONS(2116), + [anon_sym___autoreleasing] = ACTIONS(2116), + [anon_sym___nullable] = ACTIONS(2116), + [anon_sym___nonnull] = ACTIONS(2116), + [anon_sym___strong] = ACTIONS(2116), + [anon_sym___weak] = ACTIONS(2116), + [anon_sym___bridge] = ACTIONS(2116), + [anon_sym___bridge_transfer] = ACTIONS(2116), + [anon_sym___bridge_retained] = ACTIONS(2116), + [anon_sym___unsafe_unretained] = ACTIONS(2116), + [anon_sym___block] = ACTIONS(2116), + [anon_sym___kindof] = ACTIONS(2116), + [anon_sym___unused] = ACTIONS(2116), + [anon_sym__Complex] = ACTIONS(2116), + [anon_sym___complex] = ACTIONS(2116), + [anon_sym_IBOutlet] = ACTIONS(2116), + [anon_sym_IBInspectable] = ACTIONS(2116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2116), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2118), + [anon_sym_ATimport] = ACTIONS(2118), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2116), + [anon_sym_ATcompatibility_alias] = ACTIONS(2118), + [anon_sym_ATprotocol] = ACTIONS(2118), + [anon_sym_ATclass] = ACTIONS(2118), + [anon_sym_ATinterface] = ACTIONS(2118), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2116), + [sym_method_attribute_specifier] = ACTIONS(2116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE] = ACTIONS(2116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_API_AVAILABLE] = ACTIONS(2116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_API_DEPRECATED] = ACTIONS(2116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2116), + [anon_sym___deprecated_msg] = ACTIONS(2116), + [anon_sym___deprecated_enum_msg] = ACTIONS(2116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2116), + [anon_sym_ATimplementation] = ACTIONS(2118), + [anon_sym_NS_ENUM] = ACTIONS(2116), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2116), + [anon_sym_NS_OPTIONS] = ACTIONS(2116), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym___typeof] = ACTIONS(2116), + [anon_sym___typeof__] = ACTIONS(2116), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_nil] = ACTIONS(2116), + [sym_id] = ACTIONS(2116), + [sym_instancetype] = ACTIONS(2116), + [sym_Class] = ACTIONS(2116), + [sym_SEL] = ACTIONS(2116), + [sym_IMP] = ACTIONS(2116), + [sym_BOOL] = ACTIONS(2116), + [sym_auto] = ACTIONS(2116), + [anon_sym_ATautoreleasepool] = ACTIONS(2118), + [anon_sym_ATsynchronized] = ACTIONS(2118), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym_ATthrow] = ACTIONS(2118), + [anon_sym_ATselector] = ACTIONS(2118), + [anon_sym_ATencode] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2116), + [sym_YES] = ACTIONS(2116), + [sym_NO] = ACTIONS(2116), + [anon_sym___builtin_available] = ACTIONS(2116), + [anon_sym_ATavailable] = ACTIONS(2118), + [anon_sym_va_arg] = ACTIONS(2116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1038] = { + [ts_builtin_sym_end] = ACTIONS(2118), + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2118), + [aux_sym_preproc_def_token1] = ACTIONS(2118), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_auto] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [anon_sym_out] = ACTIONS(2116), + [anon_sym_inout] = ACTIONS(2116), + [anon_sym_bycopy] = ACTIONS(2116), + [anon_sym_byref] = ACTIONS(2116), + [anon_sym_oneway] = ACTIONS(2116), + [anon_sym__Nullable] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym__Nullable_result] = ACTIONS(2116), + [anon_sym__Null_unspecified] = ACTIONS(2116), + [anon_sym___autoreleasing] = ACTIONS(2116), + [anon_sym___nullable] = ACTIONS(2116), + [anon_sym___nonnull] = ACTIONS(2116), + [anon_sym___strong] = ACTIONS(2116), + [anon_sym___weak] = ACTIONS(2116), + [anon_sym___bridge] = ACTIONS(2116), + [anon_sym___bridge_transfer] = ACTIONS(2116), + [anon_sym___bridge_retained] = ACTIONS(2116), + [anon_sym___unsafe_unretained] = ACTIONS(2116), + [anon_sym___block] = ACTIONS(2116), + [anon_sym___kindof] = ACTIONS(2116), + [anon_sym___unused] = ACTIONS(2116), + [anon_sym__Complex] = ACTIONS(2116), + [anon_sym___complex] = ACTIONS(2116), + [anon_sym_IBOutlet] = ACTIONS(2116), + [anon_sym_IBInspectable] = ACTIONS(2116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2116), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2118), + [anon_sym_ATimport] = ACTIONS(2118), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2116), + [anon_sym_ATcompatibility_alias] = ACTIONS(2118), + [anon_sym_ATprotocol] = ACTIONS(2118), + [anon_sym_ATclass] = ACTIONS(2118), + [anon_sym_ATinterface] = ACTIONS(2118), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2116), + [sym_method_attribute_specifier] = ACTIONS(2116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE] = ACTIONS(2116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_API_AVAILABLE] = ACTIONS(2116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_API_DEPRECATED] = ACTIONS(2116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2116), + [anon_sym___deprecated_msg] = ACTIONS(2116), + [anon_sym___deprecated_enum_msg] = ACTIONS(2116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2116), + [anon_sym_ATimplementation] = ACTIONS(2118), + [anon_sym_NS_ENUM] = ACTIONS(2116), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2116), + [anon_sym_NS_OPTIONS] = ACTIONS(2116), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym___typeof] = ACTIONS(2116), + [anon_sym___typeof__] = ACTIONS(2116), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_nil] = ACTIONS(2116), + [sym_id] = ACTIONS(2116), + [sym_instancetype] = ACTIONS(2116), + [sym_Class] = ACTIONS(2116), + [sym_SEL] = ACTIONS(2116), + [sym_IMP] = ACTIONS(2116), + [sym_BOOL] = ACTIONS(2116), + [sym_auto] = ACTIONS(2116), + [anon_sym_ATautoreleasepool] = ACTIONS(2118), + [anon_sym_ATsynchronized] = ACTIONS(2118), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym_ATthrow] = ACTIONS(2118), + [anon_sym_ATselector] = ACTIONS(2118), + [anon_sym_ATencode] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2116), + [sym_YES] = ACTIONS(2116), + [sym_NO] = ACTIONS(2116), + [anon_sym___builtin_available] = ACTIONS(2116), + [anon_sym_ATavailable] = ACTIONS(2118), + [anon_sym_va_arg] = ACTIONS(2116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1039] = { + [ts_builtin_sym_end] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1040] = { + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2112), + [aux_sym_preproc_include_token1] = ACTIONS(2114), + [aux_sym_preproc_def_token1] = ACTIONS(2114), + [aux_sym_preproc_if_token1] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2112), + [anon_sym_LPAREN2] = ACTIONS(2114), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2112), + [anon_sym_PLUS] = ACTIONS(2112), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_CARET] = ACTIONS(2114), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_typedef] = ACTIONS(2112), + [anon_sym_extern] = ACTIONS(2112), + [anon_sym___attribute] = ACTIONS(2112), + [anon_sym___attribute__] = ACTIONS(2112), + [anon_sym___declspec] = ACTIONS(2112), + [anon_sym___cdecl] = ACTIONS(2112), + [anon_sym___clrcall] = ACTIONS(2112), + [anon_sym___stdcall] = ACTIONS(2112), + [anon_sym___fastcall] = ACTIONS(2112), + [anon_sym___thiscall] = ACTIONS(2112), + [anon_sym___vectorcall] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2112), + [anon_sym_auto] = ACTIONS(2112), + [anon_sym_register] = ACTIONS(2112), + [anon_sym_inline] = ACTIONS(2112), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2112), + [anon_sym_const] = ACTIONS(2112), + [anon_sym_volatile] = ACTIONS(2112), + [anon_sym_restrict] = ACTIONS(2112), + [anon_sym__Atomic] = ACTIONS(2112), + [anon_sym_in] = ACTIONS(2112), + [anon_sym_out] = ACTIONS(2112), + [anon_sym_inout] = ACTIONS(2112), + [anon_sym_bycopy] = ACTIONS(2112), + [anon_sym_byref] = ACTIONS(2112), + [anon_sym_oneway] = ACTIONS(2112), + [anon_sym__Nullable] = ACTIONS(2112), + [anon_sym__Nonnull] = ACTIONS(2112), + [anon_sym__Nullable_result] = ACTIONS(2112), + [anon_sym__Null_unspecified] = ACTIONS(2112), + [anon_sym___autoreleasing] = ACTIONS(2112), + [anon_sym___nullable] = ACTIONS(2112), + [anon_sym___nonnull] = ACTIONS(2112), + [anon_sym___strong] = ACTIONS(2112), + [anon_sym___weak] = ACTIONS(2112), + [anon_sym___bridge] = ACTIONS(2112), + [anon_sym___bridge_transfer] = ACTIONS(2112), + [anon_sym___bridge_retained] = ACTIONS(2112), + [anon_sym___unsafe_unretained] = ACTIONS(2112), + [anon_sym___block] = ACTIONS(2112), + [anon_sym___kindof] = ACTIONS(2112), + [anon_sym___unused] = ACTIONS(2112), + [anon_sym__Complex] = ACTIONS(2112), + [anon_sym___complex] = ACTIONS(2112), + [anon_sym_IBOutlet] = ACTIONS(2112), + [anon_sym_IBInspectable] = ACTIONS(2112), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2112), + [anon_sym_signed] = ACTIONS(2112), + [anon_sym_unsigned] = ACTIONS(2112), + [anon_sym_long] = ACTIONS(2112), + [anon_sym_short] = ACTIONS(2112), + [sym_primitive_type] = ACTIONS(2112), + [anon_sym_enum] = ACTIONS(2112), + [anon_sym_struct] = ACTIONS(2112), + [anon_sym_union] = ACTIONS(2112), + [anon_sym_if] = ACTIONS(2112), + [anon_sym_switch] = ACTIONS(2112), + [anon_sym_case] = ACTIONS(2112), + [anon_sym_default] = ACTIONS(2112), + [anon_sym_while] = ACTIONS(2112), + [anon_sym_do] = ACTIONS(2112), + [anon_sym_for] = ACTIONS(2112), + [anon_sym_return] = ACTIONS(2112), + [anon_sym_break] = ACTIONS(2112), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2112), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_sizeof] = ACTIONS(2112), + [sym_number_literal] = ACTIONS(2114), + [anon_sym_L_SQUOTE] = ACTIONS(2114), + [anon_sym_u_SQUOTE] = ACTIONS(2114), + [anon_sym_U_SQUOTE] = ACTIONS(2114), + [anon_sym_u8_SQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), + [anon_sym_L_DQUOTE] = ACTIONS(2114), + [anon_sym_u_DQUOTE] = ACTIONS(2114), + [anon_sym_U_DQUOTE] = ACTIONS(2114), + [anon_sym_u8_DQUOTE] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [sym_null] = ACTIONS(2112), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2114), + [anon_sym_ATimport] = ACTIONS(2114), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2112), + [anon_sym_ATcompatibility_alias] = ACTIONS(2114), + [anon_sym_ATprotocol] = ACTIONS(2114), + [anon_sym_ATclass] = ACTIONS(2114), + [anon_sym_ATinterface] = ACTIONS(2114), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2112), + [sym_method_attribute_specifier] = ACTIONS(2112), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2112), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2112), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2112), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2112), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2112), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2112), + [anon_sym_NS_AVAILABLE] = ACTIONS(2112), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2112), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2112), + [anon_sym_API_AVAILABLE] = ACTIONS(2112), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2112), + [anon_sym_API_DEPRECATED] = ACTIONS(2112), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2112), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2112), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2112), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2112), + [anon_sym___deprecated_msg] = ACTIONS(2112), + [anon_sym___deprecated_enum_msg] = ACTIONS(2112), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2112), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2112), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2112), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2112), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2112), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2112), + [anon_sym_ATimplementation] = ACTIONS(2114), + [anon_sym_NS_ENUM] = ACTIONS(2112), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2112), + [anon_sym_NS_OPTIONS] = ACTIONS(2112), + [anon_sym_typeof] = ACTIONS(2112), + [anon_sym___typeof] = ACTIONS(2112), + [anon_sym___typeof__] = ACTIONS(2112), + [sym_self] = ACTIONS(2112), + [sym_super] = ACTIONS(2112), + [sym_nil] = ACTIONS(2112), + [sym_id] = ACTIONS(2112), + [sym_instancetype] = ACTIONS(2112), + [sym_Class] = ACTIONS(2112), + [sym_SEL] = ACTIONS(2112), + [sym_IMP] = ACTIONS(2112), + [sym_BOOL] = ACTIONS(2112), + [sym_auto] = ACTIONS(2112), + [anon_sym_ATautoreleasepool] = ACTIONS(2114), + [anon_sym_ATsynchronized] = ACTIONS(2114), + [anon_sym_ATtry] = ACTIONS(2114), + [anon_sym_ATthrow] = ACTIONS(2114), + [anon_sym_ATselector] = ACTIONS(2114), + [anon_sym_ATencode] = ACTIONS(2114), + [anon_sym_AT] = ACTIONS(2112), + [sym_YES] = ACTIONS(2112), + [sym_NO] = ACTIONS(2112), + [anon_sym___builtin_available] = ACTIONS(2112), + [anon_sym_ATavailable] = ACTIONS(2114), + [anon_sym_va_arg] = ACTIONS(2112), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1041] = { + [ts_builtin_sym_end] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1042] = { + [ts_builtin_sym_end] = ACTIONS(2110), + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_include_token1] = ACTIONS(2110), + [aux_sym_preproc_def_token1] = ACTIONS(2110), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___cdecl] = ACTIONS(2108), + [anon_sym___clrcall] = ACTIONS(2108), + [anon_sym___stdcall] = ACTIONS(2108), + [anon_sym___fastcall] = ACTIONS(2108), + [anon_sym___thiscall] = ACTIONS(2108), + [anon_sym___vectorcall] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_auto] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2108), + [anon_sym_out] = ACTIONS(2108), + [anon_sym_inout] = ACTIONS(2108), + [anon_sym_bycopy] = ACTIONS(2108), + [anon_sym_byref] = ACTIONS(2108), + [anon_sym_oneway] = ACTIONS(2108), + [anon_sym__Nullable] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym__Nullable_result] = ACTIONS(2108), + [anon_sym__Null_unspecified] = ACTIONS(2108), + [anon_sym___autoreleasing] = ACTIONS(2108), + [anon_sym___nullable] = ACTIONS(2108), + [anon_sym___nonnull] = ACTIONS(2108), + [anon_sym___strong] = ACTIONS(2108), + [anon_sym___weak] = ACTIONS(2108), + [anon_sym___bridge] = ACTIONS(2108), + [anon_sym___bridge_transfer] = ACTIONS(2108), + [anon_sym___bridge_retained] = ACTIONS(2108), + [anon_sym___unsafe_unretained] = ACTIONS(2108), + [anon_sym___block] = ACTIONS(2108), + [anon_sym___kindof] = ACTIONS(2108), + [anon_sym___unused] = ACTIONS(2108), + [anon_sym__Complex] = ACTIONS(2108), + [anon_sym___complex] = ACTIONS(2108), + [anon_sym_IBOutlet] = ACTIONS(2108), + [anon_sym_IBInspectable] = ACTIONS(2108), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2108), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [sym_null] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2110), + [anon_sym_ATimport] = ACTIONS(2110), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2108), + [anon_sym_ATcompatibility_alias] = ACTIONS(2110), + [anon_sym_ATprotocol] = ACTIONS(2110), + [anon_sym_ATclass] = ACTIONS(2110), + [anon_sym_ATinterface] = ACTIONS(2110), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2108), + [sym_method_attribute_specifier] = ACTIONS(2108), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2108), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE] = ACTIONS(2108), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_API_AVAILABLE] = ACTIONS(2108), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_API_DEPRECATED] = ACTIONS(2108), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2108), + [anon_sym___deprecated_msg] = ACTIONS(2108), + [anon_sym___deprecated_enum_msg] = ACTIONS(2108), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2108), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2108), + [anon_sym_ATimplementation] = ACTIONS(2110), + [anon_sym_NS_ENUM] = ACTIONS(2108), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2108), + [anon_sym_NS_OPTIONS] = ACTIONS(2108), + [anon_sym_typeof] = ACTIONS(2108), + [anon_sym___typeof] = ACTIONS(2108), + [anon_sym___typeof__] = ACTIONS(2108), + [sym_self] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_nil] = ACTIONS(2108), + [sym_id] = ACTIONS(2108), + [sym_instancetype] = ACTIONS(2108), + [sym_Class] = ACTIONS(2108), + [sym_SEL] = ACTIONS(2108), + [sym_IMP] = ACTIONS(2108), + [sym_BOOL] = ACTIONS(2108), + [sym_auto] = ACTIONS(2108), + [anon_sym_ATautoreleasepool] = ACTIONS(2110), + [anon_sym_ATsynchronized] = ACTIONS(2110), + [anon_sym_ATtry] = ACTIONS(2110), + [anon_sym_ATthrow] = ACTIONS(2110), + [anon_sym_ATselector] = ACTIONS(2110), + [anon_sym_ATencode] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2108), + [sym_YES] = ACTIONS(2108), + [sym_NO] = ACTIONS(2108), + [anon_sym___builtin_available] = ACTIONS(2108), + [anon_sym_ATavailable] = ACTIONS(2110), + [anon_sym_va_arg] = ACTIONS(2108), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1043] = { + [ts_builtin_sym_end] = ACTIONS(2110), + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_include_token1] = ACTIONS(2110), + [aux_sym_preproc_def_token1] = ACTIONS(2110), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___cdecl] = ACTIONS(2108), + [anon_sym___clrcall] = ACTIONS(2108), + [anon_sym___stdcall] = ACTIONS(2108), + [anon_sym___fastcall] = ACTIONS(2108), + [anon_sym___thiscall] = ACTIONS(2108), + [anon_sym___vectorcall] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_auto] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2108), + [anon_sym_out] = ACTIONS(2108), + [anon_sym_inout] = ACTIONS(2108), + [anon_sym_bycopy] = ACTIONS(2108), + [anon_sym_byref] = ACTIONS(2108), + [anon_sym_oneway] = ACTIONS(2108), + [anon_sym__Nullable] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym__Nullable_result] = ACTIONS(2108), + [anon_sym__Null_unspecified] = ACTIONS(2108), + [anon_sym___autoreleasing] = ACTIONS(2108), + [anon_sym___nullable] = ACTIONS(2108), + [anon_sym___nonnull] = ACTIONS(2108), + [anon_sym___strong] = ACTIONS(2108), + [anon_sym___weak] = ACTIONS(2108), + [anon_sym___bridge] = ACTIONS(2108), + [anon_sym___bridge_transfer] = ACTIONS(2108), + [anon_sym___bridge_retained] = ACTIONS(2108), + [anon_sym___unsafe_unretained] = ACTIONS(2108), + [anon_sym___block] = ACTIONS(2108), + [anon_sym___kindof] = ACTIONS(2108), + [anon_sym___unused] = ACTIONS(2108), + [anon_sym__Complex] = ACTIONS(2108), + [anon_sym___complex] = ACTIONS(2108), + [anon_sym_IBOutlet] = ACTIONS(2108), + [anon_sym_IBInspectable] = ACTIONS(2108), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2108), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [sym_null] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2110), + [anon_sym_ATimport] = ACTIONS(2110), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2108), + [anon_sym_ATcompatibility_alias] = ACTIONS(2110), + [anon_sym_ATprotocol] = ACTIONS(2110), + [anon_sym_ATclass] = ACTIONS(2110), + [anon_sym_ATinterface] = ACTIONS(2110), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2108), + [sym_method_attribute_specifier] = ACTIONS(2108), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2108), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE] = ACTIONS(2108), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_API_AVAILABLE] = ACTIONS(2108), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_API_DEPRECATED] = ACTIONS(2108), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2108), + [anon_sym___deprecated_msg] = ACTIONS(2108), + [anon_sym___deprecated_enum_msg] = ACTIONS(2108), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2108), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2108), + [anon_sym_ATimplementation] = ACTIONS(2110), + [anon_sym_NS_ENUM] = ACTIONS(2108), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2108), + [anon_sym_NS_OPTIONS] = ACTIONS(2108), + [anon_sym_typeof] = ACTIONS(2108), + [anon_sym___typeof] = ACTIONS(2108), + [anon_sym___typeof__] = ACTIONS(2108), + [sym_self] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_nil] = ACTIONS(2108), + [sym_id] = ACTIONS(2108), + [sym_instancetype] = ACTIONS(2108), + [sym_Class] = ACTIONS(2108), + [sym_SEL] = ACTIONS(2108), + [sym_IMP] = ACTIONS(2108), + [sym_BOOL] = ACTIONS(2108), + [sym_auto] = ACTIONS(2108), + [anon_sym_ATautoreleasepool] = ACTIONS(2110), + [anon_sym_ATsynchronized] = ACTIONS(2110), + [anon_sym_ATtry] = ACTIONS(2110), + [anon_sym_ATthrow] = ACTIONS(2110), + [anon_sym_ATselector] = ACTIONS(2110), + [anon_sym_ATencode] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2108), + [sym_YES] = ACTIONS(2108), + [sym_NO] = ACTIONS(2108), + [anon_sym___builtin_available] = ACTIONS(2108), + [anon_sym_ATavailable] = ACTIONS(2110), + [anon_sym_va_arg] = ACTIONS(2108), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1044] = { + [ts_builtin_sym_end] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1045] = { + [ts_builtin_sym_end] = ACTIONS(2110), + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_include_token1] = ACTIONS(2110), + [aux_sym_preproc_def_token1] = ACTIONS(2110), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___cdecl] = ACTIONS(2108), + [anon_sym___clrcall] = ACTIONS(2108), + [anon_sym___stdcall] = ACTIONS(2108), + [anon_sym___fastcall] = ACTIONS(2108), + [anon_sym___thiscall] = ACTIONS(2108), + [anon_sym___vectorcall] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_auto] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2108), + [anon_sym_out] = ACTIONS(2108), + [anon_sym_inout] = ACTIONS(2108), + [anon_sym_bycopy] = ACTIONS(2108), + [anon_sym_byref] = ACTIONS(2108), + [anon_sym_oneway] = ACTIONS(2108), + [anon_sym__Nullable] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym__Nullable_result] = ACTIONS(2108), + [anon_sym__Null_unspecified] = ACTIONS(2108), + [anon_sym___autoreleasing] = ACTIONS(2108), + [anon_sym___nullable] = ACTIONS(2108), + [anon_sym___nonnull] = ACTIONS(2108), + [anon_sym___strong] = ACTIONS(2108), + [anon_sym___weak] = ACTIONS(2108), + [anon_sym___bridge] = ACTIONS(2108), + [anon_sym___bridge_transfer] = ACTIONS(2108), + [anon_sym___bridge_retained] = ACTIONS(2108), + [anon_sym___unsafe_unretained] = ACTIONS(2108), + [anon_sym___block] = ACTIONS(2108), + [anon_sym___kindof] = ACTIONS(2108), + [anon_sym___unused] = ACTIONS(2108), + [anon_sym__Complex] = ACTIONS(2108), + [anon_sym___complex] = ACTIONS(2108), + [anon_sym_IBOutlet] = ACTIONS(2108), + [anon_sym_IBInspectable] = ACTIONS(2108), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2108), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [sym_null] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2110), + [anon_sym_ATimport] = ACTIONS(2110), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2108), + [anon_sym_ATcompatibility_alias] = ACTIONS(2110), + [anon_sym_ATprotocol] = ACTIONS(2110), + [anon_sym_ATclass] = ACTIONS(2110), + [anon_sym_ATinterface] = ACTIONS(2110), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2108), + [sym_method_attribute_specifier] = ACTIONS(2108), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2108), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE] = ACTIONS(2108), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_API_AVAILABLE] = ACTIONS(2108), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_API_DEPRECATED] = ACTIONS(2108), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2108), + [anon_sym___deprecated_msg] = ACTIONS(2108), + [anon_sym___deprecated_enum_msg] = ACTIONS(2108), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2108), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2108), + [anon_sym_ATimplementation] = ACTIONS(2110), + [anon_sym_NS_ENUM] = ACTIONS(2108), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2108), + [anon_sym_NS_OPTIONS] = ACTIONS(2108), + [anon_sym_typeof] = ACTIONS(2108), + [anon_sym___typeof] = ACTIONS(2108), + [anon_sym___typeof__] = ACTIONS(2108), + [sym_self] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_nil] = ACTIONS(2108), + [sym_id] = ACTIONS(2108), + [sym_instancetype] = ACTIONS(2108), + [sym_Class] = ACTIONS(2108), + [sym_SEL] = ACTIONS(2108), + [sym_IMP] = ACTIONS(2108), + [sym_BOOL] = ACTIONS(2108), + [sym_auto] = ACTIONS(2108), + [anon_sym_ATautoreleasepool] = ACTIONS(2110), + [anon_sym_ATsynchronized] = ACTIONS(2110), + [anon_sym_ATtry] = ACTIONS(2110), + [anon_sym_ATthrow] = ACTIONS(2110), + [anon_sym_ATselector] = ACTIONS(2110), + [anon_sym_ATencode] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2108), + [sym_YES] = ACTIONS(2108), + [sym_NO] = ACTIONS(2108), + [anon_sym___builtin_available] = ACTIONS(2108), + [anon_sym_ATavailable] = ACTIONS(2110), + [anon_sym_va_arg] = ACTIONS(2108), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1046] = { + [ts_builtin_sym_end] = ACTIONS(2106), + [sym_identifier] = ACTIONS(2104), + [aux_sym_preproc_include_token1] = ACTIONS(2106), + [aux_sym_preproc_def_token1] = ACTIONS(2106), + [aux_sym_preproc_if_token1] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_CARET] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_typedef] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2104), + [anon_sym___attribute] = ACTIONS(2104), + [anon_sym___attribute__] = ACTIONS(2104), + [anon_sym___declspec] = ACTIONS(2104), + [anon_sym___cdecl] = ACTIONS(2104), + [anon_sym___clrcall] = ACTIONS(2104), + [anon_sym___stdcall] = ACTIONS(2104), + [anon_sym___fastcall] = ACTIONS(2104), + [anon_sym___thiscall] = ACTIONS(2104), + [anon_sym___vectorcall] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_RBRACE] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_auto] = ACTIONS(2104), + [anon_sym_register] = ACTIONS(2104), + [anon_sym_inline] = ACTIONS(2104), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_volatile] = ACTIONS(2104), + [anon_sym_restrict] = ACTIONS(2104), + [anon_sym__Atomic] = ACTIONS(2104), + [anon_sym_in] = ACTIONS(2104), + [anon_sym_out] = ACTIONS(2104), + [anon_sym_inout] = ACTIONS(2104), + [anon_sym_bycopy] = ACTIONS(2104), + [anon_sym_byref] = ACTIONS(2104), + [anon_sym_oneway] = ACTIONS(2104), + [anon_sym__Nullable] = ACTIONS(2104), + [anon_sym__Nonnull] = ACTIONS(2104), + [anon_sym__Nullable_result] = ACTIONS(2104), + [anon_sym__Null_unspecified] = ACTIONS(2104), + [anon_sym___autoreleasing] = ACTIONS(2104), + [anon_sym___nullable] = ACTIONS(2104), + [anon_sym___nonnull] = ACTIONS(2104), + [anon_sym___strong] = ACTIONS(2104), + [anon_sym___weak] = ACTIONS(2104), + [anon_sym___bridge] = ACTIONS(2104), + [anon_sym___bridge_transfer] = ACTIONS(2104), + [anon_sym___bridge_retained] = ACTIONS(2104), + [anon_sym___unsafe_unretained] = ACTIONS(2104), + [anon_sym___block] = ACTIONS(2104), + [anon_sym___kindof] = ACTIONS(2104), + [anon_sym___unused] = ACTIONS(2104), + [anon_sym__Complex] = ACTIONS(2104), + [anon_sym___complex] = ACTIONS(2104), + [anon_sym_IBOutlet] = ACTIONS(2104), + [anon_sym_IBInspectable] = ACTIONS(2104), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2104), + [anon_sym_signed] = ACTIONS(2104), + [anon_sym_unsigned] = ACTIONS(2104), + [anon_sym_long] = ACTIONS(2104), + [anon_sym_short] = ACTIONS(2104), + [sym_primitive_type] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2104), + [anon_sym_struct] = ACTIONS(2104), + [anon_sym_union] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_switch] = ACTIONS(2104), + [anon_sym_case] = ACTIONS(2104), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_goto] = ACTIONS(2104), + [anon_sym_DASH_DASH] = ACTIONS(2106), + [anon_sym_PLUS_PLUS] = ACTIONS(2106), + [anon_sym_sizeof] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2106), + [anon_sym_u_SQUOTE] = ACTIONS(2106), + [anon_sym_U_SQUOTE] = ACTIONS(2106), + [anon_sym_u8_SQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_L_DQUOTE] = ACTIONS(2106), + [anon_sym_u_DQUOTE] = ACTIONS(2106), + [anon_sym_U_DQUOTE] = ACTIONS(2106), + [anon_sym_u8_DQUOTE] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2106), + [sym_true] = ACTIONS(2104), + [sym_false] = ACTIONS(2104), + [sym_null] = ACTIONS(2104), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2106), + [anon_sym_ATimport] = ACTIONS(2106), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2104), + [anon_sym_ATcompatibility_alias] = ACTIONS(2106), + [anon_sym_ATprotocol] = ACTIONS(2106), + [anon_sym_ATclass] = ACTIONS(2106), + [anon_sym_ATinterface] = ACTIONS(2106), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2104), + [sym_method_attribute_specifier] = ACTIONS(2104), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2104), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2104), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2104), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_NS_AVAILABLE] = ACTIONS(2104), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2104), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_API_AVAILABLE] = ACTIONS(2104), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_API_DEPRECATED] = ACTIONS(2104), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2104), + [anon_sym___deprecated_msg] = ACTIONS(2104), + [anon_sym___deprecated_enum_msg] = ACTIONS(2104), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2104), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2104), + [anon_sym_ATimplementation] = ACTIONS(2106), + [anon_sym_NS_ENUM] = ACTIONS(2104), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2104), + [anon_sym_NS_OPTIONS] = ACTIONS(2104), + [anon_sym_typeof] = ACTIONS(2104), + [anon_sym___typeof] = ACTIONS(2104), + [anon_sym___typeof__] = ACTIONS(2104), + [sym_self] = ACTIONS(2104), + [sym_super] = ACTIONS(2104), + [sym_nil] = ACTIONS(2104), + [sym_id] = ACTIONS(2104), + [sym_instancetype] = ACTIONS(2104), + [sym_Class] = ACTIONS(2104), + [sym_SEL] = ACTIONS(2104), + [sym_IMP] = ACTIONS(2104), + [sym_BOOL] = ACTIONS(2104), + [sym_auto] = ACTIONS(2104), + [anon_sym_ATautoreleasepool] = ACTIONS(2106), + [anon_sym_ATsynchronized] = ACTIONS(2106), + [anon_sym_ATtry] = ACTIONS(2106), + [anon_sym_ATthrow] = ACTIONS(2106), + [anon_sym_ATselector] = ACTIONS(2106), + [anon_sym_ATencode] = ACTIONS(2106), + [anon_sym_AT] = ACTIONS(2104), + [sym_YES] = ACTIONS(2104), + [sym_NO] = ACTIONS(2104), + [anon_sym___builtin_available] = ACTIONS(2104), + [anon_sym_ATavailable] = ACTIONS(2106), + [anon_sym_va_arg] = ACTIONS(2104), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1047] = { + [ts_builtin_sym_end] = ACTIONS(2106), + [sym_identifier] = ACTIONS(2104), + [aux_sym_preproc_include_token1] = ACTIONS(2106), + [aux_sym_preproc_def_token1] = ACTIONS(2106), + [aux_sym_preproc_if_token1] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_CARET] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_typedef] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2104), + [anon_sym___attribute] = ACTIONS(2104), + [anon_sym___attribute__] = ACTIONS(2104), + [anon_sym___declspec] = ACTIONS(2104), + [anon_sym___cdecl] = ACTIONS(2104), + [anon_sym___clrcall] = ACTIONS(2104), + [anon_sym___stdcall] = ACTIONS(2104), + [anon_sym___fastcall] = ACTIONS(2104), + [anon_sym___thiscall] = ACTIONS(2104), + [anon_sym___vectorcall] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_RBRACE] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_auto] = ACTIONS(2104), + [anon_sym_register] = ACTIONS(2104), + [anon_sym_inline] = ACTIONS(2104), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_volatile] = ACTIONS(2104), + [anon_sym_restrict] = ACTIONS(2104), + [anon_sym__Atomic] = ACTIONS(2104), + [anon_sym_in] = ACTIONS(2104), + [anon_sym_out] = ACTIONS(2104), + [anon_sym_inout] = ACTIONS(2104), + [anon_sym_bycopy] = ACTIONS(2104), + [anon_sym_byref] = ACTIONS(2104), + [anon_sym_oneway] = ACTIONS(2104), + [anon_sym__Nullable] = ACTIONS(2104), + [anon_sym__Nonnull] = ACTIONS(2104), + [anon_sym__Nullable_result] = ACTIONS(2104), + [anon_sym__Null_unspecified] = ACTIONS(2104), + [anon_sym___autoreleasing] = ACTIONS(2104), + [anon_sym___nullable] = ACTIONS(2104), + [anon_sym___nonnull] = ACTIONS(2104), + [anon_sym___strong] = ACTIONS(2104), + [anon_sym___weak] = ACTIONS(2104), + [anon_sym___bridge] = ACTIONS(2104), + [anon_sym___bridge_transfer] = ACTIONS(2104), + [anon_sym___bridge_retained] = ACTIONS(2104), + [anon_sym___unsafe_unretained] = ACTIONS(2104), + [anon_sym___block] = ACTIONS(2104), + [anon_sym___kindof] = ACTIONS(2104), + [anon_sym___unused] = ACTIONS(2104), + [anon_sym__Complex] = ACTIONS(2104), + [anon_sym___complex] = ACTIONS(2104), + [anon_sym_IBOutlet] = ACTIONS(2104), + [anon_sym_IBInspectable] = ACTIONS(2104), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2104), + [anon_sym_signed] = ACTIONS(2104), + [anon_sym_unsigned] = ACTIONS(2104), + [anon_sym_long] = ACTIONS(2104), + [anon_sym_short] = ACTIONS(2104), + [sym_primitive_type] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2104), + [anon_sym_struct] = ACTIONS(2104), + [anon_sym_union] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_switch] = ACTIONS(2104), + [anon_sym_case] = ACTIONS(2104), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_goto] = ACTIONS(2104), + [anon_sym_DASH_DASH] = ACTIONS(2106), + [anon_sym_PLUS_PLUS] = ACTIONS(2106), + [anon_sym_sizeof] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2106), + [anon_sym_u_SQUOTE] = ACTIONS(2106), + [anon_sym_U_SQUOTE] = ACTIONS(2106), + [anon_sym_u8_SQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_L_DQUOTE] = ACTIONS(2106), + [anon_sym_u_DQUOTE] = ACTIONS(2106), + [anon_sym_U_DQUOTE] = ACTIONS(2106), + [anon_sym_u8_DQUOTE] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2106), + [sym_true] = ACTIONS(2104), + [sym_false] = ACTIONS(2104), + [sym_null] = ACTIONS(2104), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2106), + [anon_sym_ATimport] = ACTIONS(2106), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2104), + [anon_sym_ATcompatibility_alias] = ACTIONS(2106), + [anon_sym_ATprotocol] = ACTIONS(2106), + [anon_sym_ATclass] = ACTIONS(2106), + [anon_sym_ATinterface] = ACTIONS(2106), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2104), + [sym_method_attribute_specifier] = ACTIONS(2104), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2104), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2104), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2104), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_NS_AVAILABLE] = ACTIONS(2104), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2104), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_API_AVAILABLE] = ACTIONS(2104), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_API_DEPRECATED] = ACTIONS(2104), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2104), + [anon_sym___deprecated_msg] = ACTIONS(2104), + [anon_sym___deprecated_enum_msg] = ACTIONS(2104), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2104), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2104), + [anon_sym_ATimplementation] = ACTIONS(2106), + [anon_sym_NS_ENUM] = ACTIONS(2104), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2104), + [anon_sym_NS_OPTIONS] = ACTIONS(2104), + [anon_sym_typeof] = ACTIONS(2104), + [anon_sym___typeof] = ACTIONS(2104), + [anon_sym___typeof__] = ACTIONS(2104), + [sym_self] = ACTIONS(2104), + [sym_super] = ACTIONS(2104), + [sym_nil] = ACTIONS(2104), + [sym_id] = ACTIONS(2104), + [sym_instancetype] = ACTIONS(2104), + [sym_Class] = ACTIONS(2104), + [sym_SEL] = ACTIONS(2104), + [sym_IMP] = ACTIONS(2104), + [sym_BOOL] = ACTIONS(2104), + [sym_auto] = ACTIONS(2104), + [anon_sym_ATautoreleasepool] = ACTIONS(2106), + [anon_sym_ATsynchronized] = ACTIONS(2106), + [anon_sym_ATtry] = ACTIONS(2106), + [anon_sym_ATthrow] = ACTIONS(2106), + [anon_sym_ATselector] = ACTIONS(2106), + [anon_sym_ATencode] = ACTIONS(2106), + [anon_sym_AT] = ACTIONS(2104), + [sym_YES] = ACTIONS(2104), + [sym_NO] = ACTIONS(2104), + [anon_sym___builtin_available] = ACTIONS(2104), + [anon_sym_ATavailable] = ACTIONS(2106), + [anon_sym_va_arg] = ACTIONS(2104), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1048] = { + [ts_builtin_sym_end] = ACTIONS(2106), + [sym_identifier] = ACTIONS(2104), + [aux_sym_preproc_include_token1] = ACTIONS(2106), + [aux_sym_preproc_def_token1] = ACTIONS(2106), + [aux_sym_preproc_if_token1] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_CARET] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_typedef] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2104), + [anon_sym___attribute] = ACTIONS(2104), + [anon_sym___attribute__] = ACTIONS(2104), + [anon_sym___declspec] = ACTIONS(2104), + [anon_sym___cdecl] = ACTIONS(2104), + [anon_sym___clrcall] = ACTIONS(2104), + [anon_sym___stdcall] = ACTIONS(2104), + [anon_sym___fastcall] = ACTIONS(2104), + [anon_sym___thiscall] = ACTIONS(2104), + [anon_sym___vectorcall] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_RBRACE] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_auto] = ACTIONS(2104), + [anon_sym_register] = ACTIONS(2104), + [anon_sym_inline] = ACTIONS(2104), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_volatile] = ACTIONS(2104), + [anon_sym_restrict] = ACTIONS(2104), + [anon_sym__Atomic] = ACTIONS(2104), + [anon_sym_in] = ACTIONS(2104), + [anon_sym_out] = ACTIONS(2104), + [anon_sym_inout] = ACTIONS(2104), + [anon_sym_bycopy] = ACTIONS(2104), + [anon_sym_byref] = ACTIONS(2104), + [anon_sym_oneway] = ACTIONS(2104), + [anon_sym__Nullable] = ACTIONS(2104), + [anon_sym__Nonnull] = ACTIONS(2104), + [anon_sym__Nullable_result] = ACTIONS(2104), + [anon_sym__Null_unspecified] = ACTIONS(2104), + [anon_sym___autoreleasing] = ACTIONS(2104), + [anon_sym___nullable] = ACTIONS(2104), + [anon_sym___nonnull] = ACTIONS(2104), + [anon_sym___strong] = ACTIONS(2104), + [anon_sym___weak] = ACTIONS(2104), + [anon_sym___bridge] = ACTIONS(2104), + [anon_sym___bridge_transfer] = ACTIONS(2104), + [anon_sym___bridge_retained] = ACTIONS(2104), + [anon_sym___unsafe_unretained] = ACTIONS(2104), + [anon_sym___block] = ACTIONS(2104), + [anon_sym___kindof] = ACTIONS(2104), + [anon_sym___unused] = ACTIONS(2104), + [anon_sym__Complex] = ACTIONS(2104), + [anon_sym___complex] = ACTIONS(2104), + [anon_sym_IBOutlet] = ACTIONS(2104), + [anon_sym_IBInspectable] = ACTIONS(2104), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2104), + [anon_sym_signed] = ACTIONS(2104), + [anon_sym_unsigned] = ACTIONS(2104), + [anon_sym_long] = ACTIONS(2104), + [anon_sym_short] = ACTIONS(2104), + [sym_primitive_type] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2104), + [anon_sym_struct] = ACTIONS(2104), + [anon_sym_union] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_switch] = ACTIONS(2104), + [anon_sym_case] = ACTIONS(2104), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_goto] = ACTIONS(2104), + [anon_sym_DASH_DASH] = ACTIONS(2106), + [anon_sym_PLUS_PLUS] = ACTIONS(2106), + [anon_sym_sizeof] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2106), + [anon_sym_u_SQUOTE] = ACTIONS(2106), + [anon_sym_U_SQUOTE] = ACTIONS(2106), + [anon_sym_u8_SQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_L_DQUOTE] = ACTIONS(2106), + [anon_sym_u_DQUOTE] = ACTIONS(2106), + [anon_sym_U_DQUOTE] = ACTIONS(2106), + [anon_sym_u8_DQUOTE] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2106), + [sym_true] = ACTIONS(2104), + [sym_false] = ACTIONS(2104), + [sym_null] = ACTIONS(2104), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2106), + [anon_sym_ATimport] = ACTIONS(2106), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2104), + [anon_sym_ATcompatibility_alias] = ACTIONS(2106), + [anon_sym_ATprotocol] = ACTIONS(2106), + [anon_sym_ATclass] = ACTIONS(2106), + [anon_sym_ATinterface] = ACTIONS(2106), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2104), + [sym_method_attribute_specifier] = ACTIONS(2104), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2104), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2104), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2104), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_NS_AVAILABLE] = ACTIONS(2104), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2104), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_API_AVAILABLE] = ACTIONS(2104), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_API_DEPRECATED] = ACTIONS(2104), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2104), + [anon_sym___deprecated_msg] = ACTIONS(2104), + [anon_sym___deprecated_enum_msg] = ACTIONS(2104), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2104), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2104), + [anon_sym_ATimplementation] = ACTIONS(2106), + [anon_sym_NS_ENUM] = ACTIONS(2104), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2104), + [anon_sym_NS_OPTIONS] = ACTIONS(2104), + [anon_sym_typeof] = ACTIONS(2104), + [anon_sym___typeof] = ACTIONS(2104), + [anon_sym___typeof__] = ACTIONS(2104), + [sym_self] = ACTIONS(2104), + [sym_super] = ACTIONS(2104), + [sym_nil] = ACTIONS(2104), + [sym_id] = ACTIONS(2104), + [sym_instancetype] = ACTIONS(2104), + [sym_Class] = ACTIONS(2104), + [sym_SEL] = ACTIONS(2104), + [sym_IMP] = ACTIONS(2104), + [sym_BOOL] = ACTIONS(2104), + [sym_auto] = ACTIONS(2104), + [anon_sym_ATautoreleasepool] = ACTIONS(2106), + [anon_sym_ATsynchronized] = ACTIONS(2106), + [anon_sym_ATtry] = ACTIONS(2106), + [anon_sym_ATthrow] = ACTIONS(2106), + [anon_sym_ATselector] = ACTIONS(2106), + [anon_sym_ATencode] = ACTIONS(2106), + [anon_sym_AT] = ACTIONS(2104), + [sym_YES] = ACTIONS(2104), + [sym_NO] = ACTIONS(2104), + [anon_sym___builtin_available] = ACTIONS(2104), + [anon_sym_ATavailable] = ACTIONS(2106), + [anon_sym_va_arg] = ACTIONS(2104), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1049] = { + [ts_builtin_sym_end] = ACTIONS(2102), + [sym_identifier] = ACTIONS(2100), + [aux_sym_preproc_include_token1] = ACTIONS(2102), + [aux_sym_preproc_def_token1] = ACTIONS(2102), + [aux_sym_preproc_if_token1] = ACTIONS(2100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2100), + [anon_sym_LPAREN2] = ACTIONS(2102), + [anon_sym_BANG] = ACTIONS(2102), + [anon_sym_TILDE] = ACTIONS(2102), + [anon_sym_DASH] = ACTIONS(2100), + [anon_sym_PLUS] = ACTIONS(2100), + [anon_sym_STAR] = ACTIONS(2102), + [anon_sym_CARET] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_typedef] = ACTIONS(2100), + [anon_sym_extern] = ACTIONS(2100), + [anon_sym___attribute] = ACTIONS(2100), + [anon_sym___attribute__] = ACTIONS(2100), + [anon_sym___declspec] = ACTIONS(2100), + [anon_sym___cdecl] = ACTIONS(2100), + [anon_sym___clrcall] = ACTIONS(2100), + [anon_sym___stdcall] = ACTIONS(2100), + [anon_sym___fastcall] = ACTIONS(2100), + [anon_sym___thiscall] = ACTIONS(2100), + [anon_sym___vectorcall] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_RBRACE] = ACTIONS(2102), + [anon_sym_LBRACK] = ACTIONS(2102), + [anon_sym_static] = ACTIONS(2100), + [anon_sym_auto] = ACTIONS(2100), + [anon_sym_register] = ACTIONS(2100), + [anon_sym_inline] = ACTIONS(2100), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2100), + [anon_sym_const] = ACTIONS(2100), + [anon_sym_volatile] = ACTIONS(2100), + [anon_sym_restrict] = ACTIONS(2100), + [anon_sym__Atomic] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2100), + [anon_sym_out] = ACTIONS(2100), + [anon_sym_inout] = ACTIONS(2100), + [anon_sym_bycopy] = ACTIONS(2100), + [anon_sym_byref] = ACTIONS(2100), + [anon_sym_oneway] = ACTIONS(2100), + [anon_sym__Nullable] = ACTIONS(2100), + [anon_sym__Nonnull] = ACTIONS(2100), + [anon_sym__Nullable_result] = ACTIONS(2100), + [anon_sym__Null_unspecified] = ACTIONS(2100), + [anon_sym___autoreleasing] = ACTIONS(2100), + [anon_sym___nullable] = ACTIONS(2100), + [anon_sym___nonnull] = ACTIONS(2100), + [anon_sym___strong] = ACTIONS(2100), + [anon_sym___weak] = ACTIONS(2100), + [anon_sym___bridge] = ACTIONS(2100), + [anon_sym___bridge_transfer] = ACTIONS(2100), + [anon_sym___bridge_retained] = ACTIONS(2100), + [anon_sym___unsafe_unretained] = ACTIONS(2100), + [anon_sym___block] = ACTIONS(2100), + [anon_sym___kindof] = ACTIONS(2100), + [anon_sym___unused] = ACTIONS(2100), + [anon_sym__Complex] = ACTIONS(2100), + [anon_sym___complex] = ACTIONS(2100), + [anon_sym_IBOutlet] = ACTIONS(2100), + [anon_sym_IBInspectable] = ACTIONS(2100), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2100), + [anon_sym_signed] = ACTIONS(2100), + [anon_sym_unsigned] = ACTIONS(2100), + [anon_sym_long] = ACTIONS(2100), + [anon_sym_short] = ACTIONS(2100), + [sym_primitive_type] = ACTIONS(2100), + [anon_sym_enum] = ACTIONS(2100), + [anon_sym_struct] = ACTIONS(2100), + [anon_sym_union] = ACTIONS(2100), + [anon_sym_if] = ACTIONS(2100), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_case] = ACTIONS(2100), + [anon_sym_default] = ACTIONS(2100), + [anon_sym_while] = ACTIONS(2100), + [anon_sym_do] = ACTIONS(2100), + [anon_sym_for] = ACTIONS(2100), + [anon_sym_return] = ACTIONS(2100), + [anon_sym_break] = ACTIONS(2100), + [anon_sym_continue] = ACTIONS(2100), + [anon_sym_goto] = ACTIONS(2100), + [anon_sym_DASH_DASH] = ACTIONS(2102), + [anon_sym_PLUS_PLUS] = ACTIONS(2102), + [anon_sym_sizeof] = ACTIONS(2100), + [sym_number_literal] = ACTIONS(2102), + [anon_sym_L_SQUOTE] = ACTIONS(2102), + [anon_sym_u_SQUOTE] = ACTIONS(2102), + [anon_sym_U_SQUOTE] = ACTIONS(2102), + [anon_sym_u8_SQUOTE] = ACTIONS(2102), + [anon_sym_SQUOTE] = ACTIONS(2102), + [anon_sym_L_DQUOTE] = ACTIONS(2102), + [anon_sym_u_DQUOTE] = ACTIONS(2102), + [anon_sym_U_DQUOTE] = ACTIONS(2102), + [anon_sym_u8_DQUOTE] = ACTIONS(2102), + [anon_sym_DQUOTE] = ACTIONS(2102), + [sym_true] = ACTIONS(2100), + [sym_false] = ACTIONS(2100), + [sym_null] = ACTIONS(2100), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2102), + [anon_sym_ATimport] = ACTIONS(2102), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2100), + [anon_sym_ATcompatibility_alias] = ACTIONS(2102), + [anon_sym_ATprotocol] = ACTIONS(2102), + [anon_sym_ATclass] = ACTIONS(2102), + [anon_sym_ATinterface] = ACTIONS(2102), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2100), + [sym_method_attribute_specifier] = ACTIONS(2100), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2100), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2100), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2100), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2100), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2100), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2100), + [anon_sym_NS_AVAILABLE] = ACTIONS(2100), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2100), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2100), + [anon_sym_API_AVAILABLE] = ACTIONS(2100), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2100), + [anon_sym_API_DEPRECATED] = ACTIONS(2100), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2100), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2100), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2100), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2100), + [anon_sym___deprecated_msg] = ACTIONS(2100), + [anon_sym___deprecated_enum_msg] = ACTIONS(2100), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2100), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2100), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2100), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2100), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2100), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2100), + [anon_sym_ATimplementation] = ACTIONS(2102), + [anon_sym_NS_ENUM] = ACTIONS(2100), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2100), + [anon_sym_NS_OPTIONS] = ACTIONS(2100), + [anon_sym_typeof] = ACTIONS(2100), + [anon_sym___typeof] = ACTIONS(2100), + [anon_sym___typeof__] = ACTIONS(2100), + [sym_self] = ACTIONS(2100), + [sym_super] = ACTIONS(2100), + [sym_nil] = ACTIONS(2100), + [sym_id] = ACTIONS(2100), + [sym_instancetype] = ACTIONS(2100), + [sym_Class] = ACTIONS(2100), + [sym_SEL] = ACTIONS(2100), + [sym_IMP] = ACTIONS(2100), + [sym_BOOL] = ACTIONS(2100), + [sym_auto] = ACTIONS(2100), + [anon_sym_ATautoreleasepool] = ACTIONS(2102), + [anon_sym_ATsynchronized] = ACTIONS(2102), + [anon_sym_ATtry] = ACTIONS(2102), + [anon_sym_ATthrow] = ACTIONS(2102), + [anon_sym_ATselector] = ACTIONS(2102), + [anon_sym_ATencode] = ACTIONS(2102), + [anon_sym_AT] = ACTIONS(2100), + [sym_YES] = ACTIONS(2100), + [sym_NO] = ACTIONS(2100), + [anon_sym___builtin_available] = ACTIONS(2100), + [anon_sym_ATavailable] = ACTIONS(2102), + [anon_sym_va_arg] = ACTIONS(2100), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1050] = { + [ts_builtin_sym_end] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1051] = { + [ts_builtin_sym_end] = ACTIONS(2098), + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2098), + [aux_sym_preproc_def_token1] = ACTIONS(2098), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2096), + [anon_sym_out] = ACTIONS(2096), + [anon_sym_inout] = ACTIONS(2096), + [anon_sym_bycopy] = ACTIONS(2096), + [anon_sym_byref] = ACTIONS(2096), + [anon_sym_oneway] = ACTIONS(2096), + [anon_sym__Nullable] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym__Nullable_result] = ACTIONS(2096), + [anon_sym__Null_unspecified] = ACTIONS(2096), + [anon_sym___autoreleasing] = ACTIONS(2096), + [anon_sym___nullable] = ACTIONS(2096), + [anon_sym___nonnull] = ACTIONS(2096), + [anon_sym___strong] = ACTIONS(2096), + [anon_sym___weak] = ACTIONS(2096), + [anon_sym___bridge] = ACTIONS(2096), + [anon_sym___bridge_transfer] = ACTIONS(2096), + [anon_sym___bridge_retained] = ACTIONS(2096), + [anon_sym___unsafe_unretained] = ACTIONS(2096), + [anon_sym___block] = ACTIONS(2096), + [anon_sym___kindof] = ACTIONS(2096), + [anon_sym___unused] = ACTIONS(2096), + [anon_sym__Complex] = ACTIONS(2096), + [anon_sym___complex] = ACTIONS(2096), + [anon_sym_IBOutlet] = ACTIONS(2096), + [anon_sym_IBInspectable] = ACTIONS(2096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2096), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [sym_null] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2098), + [anon_sym_ATimport] = ACTIONS(2098), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2096), + [anon_sym_ATcompatibility_alias] = ACTIONS(2098), + [anon_sym_ATprotocol] = ACTIONS(2098), + [anon_sym_ATclass] = ACTIONS(2098), + [anon_sym_ATinterface] = ACTIONS(2098), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2096), + [sym_method_attribute_specifier] = ACTIONS(2096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE] = ACTIONS(2096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_API_AVAILABLE] = ACTIONS(2096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_API_DEPRECATED] = ACTIONS(2096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2096), + [anon_sym___deprecated_msg] = ACTIONS(2096), + [anon_sym___deprecated_enum_msg] = ACTIONS(2096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2096), + [anon_sym_ATimplementation] = ACTIONS(2098), + [anon_sym_NS_ENUM] = ACTIONS(2096), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2096), + [anon_sym_NS_OPTIONS] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(2096), + [anon_sym___typeof] = ACTIONS(2096), + [anon_sym___typeof__] = ACTIONS(2096), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_nil] = ACTIONS(2096), + [sym_id] = ACTIONS(2096), + [sym_instancetype] = ACTIONS(2096), + [sym_Class] = ACTIONS(2096), + [sym_SEL] = ACTIONS(2096), + [sym_IMP] = ACTIONS(2096), + [sym_BOOL] = ACTIONS(2096), + [sym_auto] = ACTIONS(2096), + [anon_sym_ATautoreleasepool] = ACTIONS(2098), + [anon_sym_ATsynchronized] = ACTIONS(2098), + [anon_sym_ATtry] = ACTIONS(2098), + [anon_sym_ATthrow] = ACTIONS(2098), + [anon_sym_ATselector] = ACTIONS(2098), + [anon_sym_ATencode] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2096), + [sym_YES] = ACTIONS(2096), + [sym_NO] = ACTIONS(2096), + [anon_sym___builtin_available] = ACTIONS(2096), + [anon_sym_ATavailable] = ACTIONS(2098), + [anon_sym_va_arg] = ACTIONS(2096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1052] = { + [ts_builtin_sym_end] = ACTIONS(2098), + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2098), + [aux_sym_preproc_def_token1] = ACTIONS(2098), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2096), + [anon_sym_out] = ACTIONS(2096), + [anon_sym_inout] = ACTIONS(2096), + [anon_sym_bycopy] = ACTIONS(2096), + [anon_sym_byref] = ACTIONS(2096), + [anon_sym_oneway] = ACTIONS(2096), + [anon_sym__Nullable] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym__Nullable_result] = ACTIONS(2096), + [anon_sym__Null_unspecified] = ACTIONS(2096), + [anon_sym___autoreleasing] = ACTIONS(2096), + [anon_sym___nullable] = ACTIONS(2096), + [anon_sym___nonnull] = ACTIONS(2096), + [anon_sym___strong] = ACTIONS(2096), + [anon_sym___weak] = ACTIONS(2096), + [anon_sym___bridge] = ACTIONS(2096), + [anon_sym___bridge_transfer] = ACTIONS(2096), + [anon_sym___bridge_retained] = ACTIONS(2096), + [anon_sym___unsafe_unretained] = ACTIONS(2096), + [anon_sym___block] = ACTIONS(2096), + [anon_sym___kindof] = ACTIONS(2096), + [anon_sym___unused] = ACTIONS(2096), + [anon_sym__Complex] = ACTIONS(2096), + [anon_sym___complex] = ACTIONS(2096), + [anon_sym_IBOutlet] = ACTIONS(2096), + [anon_sym_IBInspectable] = ACTIONS(2096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2096), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [sym_null] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2098), + [anon_sym_ATimport] = ACTIONS(2098), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2096), + [anon_sym_ATcompatibility_alias] = ACTIONS(2098), + [anon_sym_ATprotocol] = ACTIONS(2098), + [anon_sym_ATclass] = ACTIONS(2098), + [anon_sym_ATinterface] = ACTIONS(2098), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2096), + [sym_method_attribute_specifier] = ACTIONS(2096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE] = ACTIONS(2096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_API_AVAILABLE] = ACTIONS(2096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_API_DEPRECATED] = ACTIONS(2096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2096), + [anon_sym___deprecated_msg] = ACTIONS(2096), + [anon_sym___deprecated_enum_msg] = ACTIONS(2096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2096), + [anon_sym_ATimplementation] = ACTIONS(2098), + [anon_sym_NS_ENUM] = ACTIONS(2096), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2096), + [anon_sym_NS_OPTIONS] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(2096), + [anon_sym___typeof] = ACTIONS(2096), + [anon_sym___typeof__] = ACTIONS(2096), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_nil] = ACTIONS(2096), + [sym_id] = ACTIONS(2096), + [sym_instancetype] = ACTIONS(2096), + [sym_Class] = ACTIONS(2096), + [sym_SEL] = ACTIONS(2096), + [sym_IMP] = ACTIONS(2096), + [sym_BOOL] = ACTIONS(2096), + [sym_auto] = ACTIONS(2096), + [anon_sym_ATautoreleasepool] = ACTIONS(2098), + [anon_sym_ATsynchronized] = ACTIONS(2098), + [anon_sym_ATtry] = ACTIONS(2098), + [anon_sym_ATthrow] = ACTIONS(2098), + [anon_sym_ATselector] = ACTIONS(2098), + [anon_sym_ATencode] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2096), + [sym_YES] = ACTIONS(2096), + [sym_NO] = ACTIONS(2096), + [anon_sym___builtin_available] = ACTIONS(2096), + [anon_sym_ATavailable] = ACTIONS(2098), + [anon_sym_va_arg] = ACTIONS(2096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1053] = { + [ts_builtin_sym_end] = ACTIONS(2098), + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2098), + [aux_sym_preproc_def_token1] = ACTIONS(2098), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2096), + [anon_sym_out] = ACTIONS(2096), + [anon_sym_inout] = ACTIONS(2096), + [anon_sym_bycopy] = ACTIONS(2096), + [anon_sym_byref] = ACTIONS(2096), + [anon_sym_oneway] = ACTIONS(2096), + [anon_sym__Nullable] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym__Nullable_result] = ACTIONS(2096), + [anon_sym__Null_unspecified] = ACTIONS(2096), + [anon_sym___autoreleasing] = ACTIONS(2096), + [anon_sym___nullable] = ACTIONS(2096), + [anon_sym___nonnull] = ACTIONS(2096), + [anon_sym___strong] = ACTIONS(2096), + [anon_sym___weak] = ACTIONS(2096), + [anon_sym___bridge] = ACTIONS(2096), + [anon_sym___bridge_transfer] = ACTIONS(2096), + [anon_sym___bridge_retained] = ACTIONS(2096), + [anon_sym___unsafe_unretained] = ACTIONS(2096), + [anon_sym___block] = ACTIONS(2096), + [anon_sym___kindof] = ACTIONS(2096), + [anon_sym___unused] = ACTIONS(2096), + [anon_sym__Complex] = ACTIONS(2096), + [anon_sym___complex] = ACTIONS(2096), + [anon_sym_IBOutlet] = ACTIONS(2096), + [anon_sym_IBInspectable] = ACTIONS(2096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2096), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [sym_null] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2098), + [anon_sym_ATimport] = ACTIONS(2098), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2096), + [anon_sym_ATcompatibility_alias] = ACTIONS(2098), + [anon_sym_ATprotocol] = ACTIONS(2098), + [anon_sym_ATclass] = ACTIONS(2098), + [anon_sym_ATinterface] = ACTIONS(2098), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2096), + [sym_method_attribute_specifier] = ACTIONS(2096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE] = ACTIONS(2096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_API_AVAILABLE] = ACTIONS(2096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_API_DEPRECATED] = ACTIONS(2096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2096), + [anon_sym___deprecated_msg] = ACTIONS(2096), + [anon_sym___deprecated_enum_msg] = ACTIONS(2096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2096), + [anon_sym_ATimplementation] = ACTIONS(2098), + [anon_sym_NS_ENUM] = ACTIONS(2096), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2096), + [anon_sym_NS_OPTIONS] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(2096), + [anon_sym___typeof] = ACTIONS(2096), + [anon_sym___typeof__] = ACTIONS(2096), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_nil] = ACTIONS(2096), + [sym_id] = ACTIONS(2096), + [sym_instancetype] = ACTIONS(2096), + [sym_Class] = ACTIONS(2096), + [sym_SEL] = ACTIONS(2096), + [sym_IMP] = ACTIONS(2096), + [sym_BOOL] = ACTIONS(2096), + [sym_auto] = ACTIONS(2096), + [anon_sym_ATautoreleasepool] = ACTIONS(2098), + [anon_sym_ATsynchronized] = ACTIONS(2098), + [anon_sym_ATtry] = ACTIONS(2098), + [anon_sym_ATthrow] = ACTIONS(2098), + [anon_sym_ATselector] = ACTIONS(2098), + [anon_sym_ATencode] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2096), + [sym_YES] = ACTIONS(2096), + [sym_NO] = ACTIONS(2096), + [anon_sym___builtin_available] = ACTIONS(2096), + [anon_sym_ATavailable] = ACTIONS(2098), + [anon_sym_va_arg] = ACTIONS(2096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1054] = { + [ts_builtin_sym_end] = ACTIONS(2098), + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2098), + [aux_sym_preproc_def_token1] = ACTIONS(2098), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2096), + [anon_sym_out] = ACTIONS(2096), + [anon_sym_inout] = ACTIONS(2096), + [anon_sym_bycopy] = ACTIONS(2096), + [anon_sym_byref] = ACTIONS(2096), + [anon_sym_oneway] = ACTIONS(2096), + [anon_sym__Nullable] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym__Nullable_result] = ACTIONS(2096), + [anon_sym__Null_unspecified] = ACTIONS(2096), + [anon_sym___autoreleasing] = ACTIONS(2096), + [anon_sym___nullable] = ACTIONS(2096), + [anon_sym___nonnull] = ACTIONS(2096), + [anon_sym___strong] = ACTIONS(2096), + [anon_sym___weak] = ACTIONS(2096), + [anon_sym___bridge] = ACTIONS(2096), + [anon_sym___bridge_transfer] = ACTIONS(2096), + [anon_sym___bridge_retained] = ACTIONS(2096), + [anon_sym___unsafe_unretained] = ACTIONS(2096), + [anon_sym___block] = ACTIONS(2096), + [anon_sym___kindof] = ACTIONS(2096), + [anon_sym___unused] = ACTIONS(2096), + [anon_sym__Complex] = ACTIONS(2096), + [anon_sym___complex] = ACTIONS(2096), + [anon_sym_IBOutlet] = ACTIONS(2096), + [anon_sym_IBInspectable] = ACTIONS(2096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2096), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [sym_null] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2098), + [anon_sym_ATimport] = ACTIONS(2098), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2096), + [anon_sym_ATcompatibility_alias] = ACTIONS(2098), + [anon_sym_ATprotocol] = ACTIONS(2098), + [anon_sym_ATclass] = ACTIONS(2098), + [anon_sym_ATinterface] = ACTIONS(2098), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2096), + [sym_method_attribute_specifier] = ACTIONS(2096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE] = ACTIONS(2096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_API_AVAILABLE] = ACTIONS(2096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_API_DEPRECATED] = ACTIONS(2096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2096), + [anon_sym___deprecated_msg] = ACTIONS(2096), + [anon_sym___deprecated_enum_msg] = ACTIONS(2096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2096), + [anon_sym_ATimplementation] = ACTIONS(2098), + [anon_sym_NS_ENUM] = ACTIONS(2096), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2096), + [anon_sym_NS_OPTIONS] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(2096), + [anon_sym___typeof] = ACTIONS(2096), + [anon_sym___typeof__] = ACTIONS(2096), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_nil] = ACTIONS(2096), + [sym_id] = ACTIONS(2096), + [sym_instancetype] = ACTIONS(2096), + [sym_Class] = ACTIONS(2096), + [sym_SEL] = ACTIONS(2096), + [sym_IMP] = ACTIONS(2096), + [sym_BOOL] = ACTIONS(2096), + [sym_auto] = ACTIONS(2096), + [anon_sym_ATautoreleasepool] = ACTIONS(2098), + [anon_sym_ATsynchronized] = ACTIONS(2098), + [anon_sym_ATtry] = ACTIONS(2098), + [anon_sym_ATthrow] = ACTIONS(2098), + [anon_sym_ATselector] = ACTIONS(2098), + [anon_sym_ATencode] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2096), + [sym_YES] = ACTIONS(2096), + [sym_NO] = ACTIONS(2096), + [anon_sym___builtin_available] = ACTIONS(2096), + [anon_sym_ATavailable] = ACTIONS(2098), + [anon_sym_va_arg] = ACTIONS(2096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1055] = { + [ts_builtin_sym_end] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1056] = { + [ts_builtin_sym_end] = ACTIONS(2098), + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2098), + [aux_sym_preproc_def_token1] = ACTIONS(2098), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2096), + [anon_sym_out] = ACTIONS(2096), + [anon_sym_inout] = ACTIONS(2096), + [anon_sym_bycopy] = ACTIONS(2096), + [anon_sym_byref] = ACTIONS(2096), + [anon_sym_oneway] = ACTIONS(2096), + [anon_sym__Nullable] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym__Nullable_result] = ACTIONS(2096), + [anon_sym__Null_unspecified] = ACTIONS(2096), + [anon_sym___autoreleasing] = ACTIONS(2096), + [anon_sym___nullable] = ACTIONS(2096), + [anon_sym___nonnull] = ACTIONS(2096), + [anon_sym___strong] = ACTIONS(2096), + [anon_sym___weak] = ACTIONS(2096), + [anon_sym___bridge] = ACTIONS(2096), + [anon_sym___bridge_transfer] = ACTIONS(2096), + [anon_sym___bridge_retained] = ACTIONS(2096), + [anon_sym___unsafe_unretained] = ACTIONS(2096), + [anon_sym___block] = ACTIONS(2096), + [anon_sym___kindof] = ACTIONS(2096), + [anon_sym___unused] = ACTIONS(2096), + [anon_sym__Complex] = ACTIONS(2096), + [anon_sym___complex] = ACTIONS(2096), + [anon_sym_IBOutlet] = ACTIONS(2096), + [anon_sym_IBInspectable] = ACTIONS(2096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2096), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [sym_null] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2098), + [anon_sym_ATimport] = ACTIONS(2098), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2096), + [anon_sym_ATcompatibility_alias] = ACTIONS(2098), + [anon_sym_ATprotocol] = ACTIONS(2098), + [anon_sym_ATclass] = ACTIONS(2098), + [anon_sym_ATinterface] = ACTIONS(2098), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2096), + [sym_method_attribute_specifier] = ACTIONS(2096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE] = ACTIONS(2096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_API_AVAILABLE] = ACTIONS(2096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_API_DEPRECATED] = ACTIONS(2096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2096), + [anon_sym___deprecated_msg] = ACTIONS(2096), + [anon_sym___deprecated_enum_msg] = ACTIONS(2096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2096), + [anon_sym_ATimplementation] = ACTIONS(2098), + [anon_sym_NS_ENUM] = ACTIONS(2096), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2096), + [anon_sym_NS_OPTIONS] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(2096), + [anon_sym___typeof] = ACTIONS(2096), + [anon_sym___typeof__] = ACTIONS(2096), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_nil] = ACTIONS(2096), + [sym_id] = ACTIONS(2096), + [sym_instancetype] = ACTIONS(2096), + [sym_Class] = ACTIONS(2096), + [sym_SEL] = ACTIONS(2096), + [sym_IMP] = ACTIONS(2096), + [sym_BOOL] = ACTIONS(2096), + [sym_auto] = ACTIONS(2096), + [anon_sym_ATautoreleasepool] = ACTIONS(2098), + [anon_sym_ATsynchronized] = ACTIONS(2098), + [anon_sym_ATtry] = ACTIONS(2098), + [anon_sym_ATthrow] = ACTIONS(2098), + [anon_sym_ATselector] = ACTIONS(2098), + [anon_sym_ATencode] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2096), + [sym_YES] = ACTIONS(2096), + [sym_NO] = ACTIONS(2096), + [anon_sym___builtin_available] = ACTIONS(2096), + [anon_sym_ATavailable] = ACTIONS(2098), + [anon_sym_va_arg] = ACTIONS(2096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1057] = { + [ts_builtin_sym_end] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1058] = { + [ts_builtin_sym_end] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1059] = { + [ts_builtin_sym_end] = ACTIONS(1854), + [sym_identifier] = ACTIONS(1852), + [aux_sym_preproc_include_token1] = ACTIONS(1854), + [aux_sym_preproc_def_token1] = ACTIONS(1854), + [aux_sym_preproc_if_token1] = ACTIONS(1852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1852), + [anon_sym_LPAREN2] = ACTIONS(1854), + [anon_sym_BANG] = ACTIONS(1854), + [anon_sym_TILDE] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_STAR] = ACTIONS(1854), + [anon_sym_CARET] = ACTIONS(1854), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_extern] = ACTIONS(1852), + [anon_sym___attribute] = ACTIONS(1852), + [anon_sym___attribute__] = ACTIONS(1852), + [anon_sym___declspec] = ACTIONS(1852), + [anon_sym___cdecl] = ACTIONS(1852), + [anon_sym___clrcall] = ACTIONS(1852), + [anon_sym___stdcall] = ACTIONS(1852), + [anon_sym___fastcall] = ACTIONS(1852), + [anon_sym___thiscall] = ACTIONS(1852), + [anon_sym___vectorcall] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_LBRACK] = ACTIONS(1854), + [anon_sym_static] = ACTIONS(1852), + [anon_sym_auto] = ACTIONS(1852), + [anon_sym_register] = ACTIONS(1852), + [anon_sym_inline] = ACTIONS(1852), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1852), + [anon_sym_volatile] = ACTIONS(1852), + [anon_sym_restrict] = ACTIONS(1852), + [anon_sym__Atomic] = ACTIONS(1852), + [anon_sym_in] = ACTIONS(1852), + [anon_sym_out] = ACTIONS(1852), + [anon_sym_inout] = ACTIONS(1852), + [anon_sym_bycopy] = ACTIONS(1852), + [anon_sym_byref] = ACTIONS(1852), + [anon_sym_oneway] = ACTIONS(1852), + [anon_sym__Nullable] = ACTIONS(1852), + [anon_sym__Nonnull] = ACTIONS(1852), + [anon_sym__Nullable_result] = ACTIONS(1852), + [anon_sym__Null_unspecified] = ACTIONS(1852), + [anon_sym___autoreleasing] = ACTIONS(1852), + [anon_sym___nullable] = ACTIONS(1852), + [anon_sym___nonnull] = ACTIONS(1852), + [anon_sym___strong] = ACTIONS(1852), + [anon_sym___weak] = ACTIONS(1852), + [anon_sym___bridge] = ACTIONS(1852), + [anon_sym___bridge_transfer] = ACTIONS(1852), + [anon_sym___bridge_retained] = ACTIONS(1852), + [anon_sym___unsafe_unretained] = ACTIONS(1852), + [anon_sym___block] = ACTIONS(1852), + [anon_sym___kindof] = ACTIONS(1852), + [anon_sym___unused] = ACTIONS(1852), + [anon_sym__Complex] = ACTIONS(1852), + [anon_sym___complex] = ACTIONS(1852), + [anon_sym_IBOutlet] = ACTIONS(1852), + [anon_sym_IBInspectable] = ACTIONS(1852), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1852), + [anon_sym_signed] = ACTIONS(1852), + [anon_sym_unsigned] = ACTIONS(1852), + [anon_sym_long] = ACTIONS(1852), + [anon_sym_short] = ACTIONS(1852), + [sym_primitive_type] = ACTIONS(1852), + [anon_sym_enum] = ACTIONS(1852), + [anon_sym_struct] = ACTIONS(1852), + [anon_sym_union] = ACTIONS(1852), + [anon_sym_if] = ACTIONS(1852), + [anon_sym_switch] = ACTIONS(1852), + [anon_sym_case] = ACTIONS(1852), + [anon_sym_default] = ACTIONS(1852), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_do] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1852), + [anon_sym_return] = ACTIONS(1852), + [anon_sym_break] = ACTIONS(1852), + [anon_sym_continue] = ACTIONS(1852), + [anon_sym_goto] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_sizeof] = ACTIONS(1852), + [sym_number_literal] = ACTIONS(1854), + [anon_sym_L_SQUOTE] = ACTIONS(1854), + [anon_sym_u_SQUOTE] = ACTIONS(1854), + [anon_sym_U_SQUOTE] = ACTIONS(1854), + [anon_sym_u8_SQUOTE] = ACTIONS(1854), + [anon_sym_SQUOTE] = ACTIONS(1854), + [anon_sym_L_DQUOTE] = ACTIONS(1854), + [anon_sym_u_DQUOTE] = ACTIONS(1854), + [anon_sym_U_DQUOTE] = ACTIONS(1854), + [anon_sym_u8_DQUOTE] = ACTIONS(1854), + [anon_sym_DQUOTE] = ACTIONS(1854), + [sym_true] = ACTIONS(1852), + [sym_false] = ACTIONS(1852), + [sym_null] = ACTIONS(1852), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1854), + [anon_sym_ATimport] = ACTIONS(1854), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1852), + [anon_sym_ATcompatibility_alias] = ACTIONS(1854), + [anon_sym_ATprotocol] = ACTIONS(1854), + [anon_sym_ATclass] = ACTIONS(1854), + [anon_sym_ATinterface] = ACTIONS(1854), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1852), + [sym_method_attribute_specifier] = ACTIONS(1852), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1852), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1852), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1852), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1852), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1852), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1852), + [anon_sym_NS_AVAILABLE] = ACTIONS(1852), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1852), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1852), + [anon_sym_API_AVAILABLE] = ACTIONS(1852), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1852), + [anon_sym_API_DEPRECATED] = ACTIONS(1852), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1852), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1852), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1852), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1852), + [anon_sym___deprecated_msg] = ACTIONS(1852), + [anon_sym___deprecated_enum_msg] = ACTIONS(1852), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1852), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1852), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1852), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1852), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1852), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1852), + [anon_sym_ATimplementation] = ACTIONS(1854), + [anon_sym_NS_ENUM] = ACTIONS(1852), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1852), + [anon_sym_NS_OPTIONS] = ACTIONS(1852), + [anon_sym_typeof] = ACTIONS(1852), + [anon_sym___typeof] = ACTIONS(1852), + [anon_sym___typeof__] = ACTIONS(1852), + [sym_self] = ACTIONS(1852), + [sym_super] = ACTIONS(1852), + [sym_nil] = ACTIONS(1852), + [sym_id] = ACTIONS(1852), + [sym_instancetype] = ACTIONS(1852), + [sym_Class] = ACTIONS(1852), + [sym_SEL] = ACTIONS(1852), + [sym_IMP] = ACTIONS(1852), + [sym_BOOL] = ACTIONS(1852), + [sym_auto] = ACTIONS(1852), + [anon_sym_ATautoreleasepool] = ACTIONS(1854), + [anon_sym_ATsynchronized] = ACTIONS(1854), + [anon_sym_ATtry] = ACTIONS(1854), + [anon_sym_ATthrow] = ACTIONS(1854), + [anon_sym_ATselector] = ACTIONS(1854), + [anon_sym_ATencode] = ACTIONS(1854), + [anon_sym_AT] = ACTIONS(1852), + [sym_YES] = ACTIONS(1852), + [sym_NO] = ACTIONS(1852), + [anon_sym___builtin_available] = ACTIONS(1852), + [anon_sym_ATavailable] = ACTIONS(1854), + [anon_sym_va_arg] = ACTIONS(1852), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1060] = { + [ts_builtin_sym_end] = ACTIONS(2098), + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2098), + [aux_sym_preproc_def_token1] = ACTIONS(2098), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2096), + [anon_sym_out] = ACTIONS(2096), + [anon_sym_inout] = ACTIONS(2096), + [anon_sym_bycopy] = ACTIONS(2096), + [anon_sym_byref] = ACTIONS(2096), + [anon_sym_oneway] = ACTIONS(2096), + [anon_sym__Nullable] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym__Nullable_result] = ACTIONS(2096), + [anon_sym__Null_unspecified] = ACTIONS(2096), + [anon_sym___autoreleasing] = ACTIONS(2096), + [anon_sym___nullable] = ACTIONS(2096), + [anon_sym___nonnull] = ACTIONS(2096), + [anon_sym___strong] = ACTIONS(2096), + [anon_sym___weak] = ACTIONS(2096), + [anon_sym___bridge] = ACTIONS(2096), + [anon_sym___bridge_transfer] = ACTIONS(2096), + [anon_sym___bridge_retained] = ACTIONS(2096), + [anon_sym___unsafe_unretained] = ACTIONS(2096), + [anon_sym___block] = ACTIONS(2096), + [anon_sym___kindof] = ACTIONS(2096), + [anon_sym___unused] = ACTIONS(2096), + [anon_sym__Complex] = ACTIONS(2096), + [anon_sym___complex] = ACTIONS(2096), + [anon_sym_IBOutlet] = ACTIONS(2096), + [anon_sym_IBInspectable] = ACTIONS(2096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2096), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [sym_null] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2098), + [anon_sym_ATimport] = ACTIONS(2098), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2096), + [anon_sym_ATcompatibility_alias] = ACTIONS(2098), + [anon_sym_ATprotocol] = ACTIONS(2098), + [anon_sym_ATclass] = ACTIONS(2098), + [anon_sym_ATinterface] = ACTIONS(2098), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2096), + [sym_method_attribute_specifier] = ACTIONS(2096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE] = ACTIONS(2096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_API_AVAILABLE] = ACTIONS(2096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_API_DEPRECATED] = ACTIONS(2096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2096), + [anon_sym___deprecated_msg] = ACTIONS(2096), + [anon_sym___deprecated_enum_msg] = ACTIONS(2096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2096), + [anon_sym_ATimplementation] = ACTIONS(2098), + [anon_sym_NS_ENUM] = ACTIONS(2096), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2096), + [anon_sym_NS_OPTIONS] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(2096), + [anon_sym___typeof] = ACTIONS(2096), + [anon_sym___typeof__] = ACTIONS(2096), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_nil] = ACTIONS(2096), + [sym_id] = ACTIONS(2096), + [sym_instancetype] = ACTIONS(2096), + [sym_Class] = ACTIONS(2096), + [sym_SEL] = ACTIONS(2096), + [sym_IMP] = ACTIONS(2096), + [sym_BOOL] = ACTIONS(2096), + [sym_auto] = ACTIONS(2096), + [anon_sym_ATautoreleasepool] = ACTIONS(2098), + [anon_sym_ATsynchronized] = ACTIONS(2098), + [anon_sym_ATtry] = ACTIONS(2098), + [anon_sym_ATthrow] = ACTIONS(2098), + [anon_sym_ATselector] = ACTIONS(2098), + [anon_sym_ATencode] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2096), + [sym_YES] = ACTIONS(2096), + [sym_NO] = ACTIONS(2096), + [anon_sym___builtin_available] = ACTIONS(2096), + [anon_sym_ATavailable] = ACTIONS(2098), + [anon_sym_va_arg] = ACTIONS(2096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1061] = { + [ts_builtin_sym_end] = ACTIONS(2094), + [sym_identifier] = ACTIONS(2092), + [aux_sym_preproc_include_token1] = ACTIONS(2094), + [aux_sym_preproc_def_token1] = ACTIONS(2094), + [aux_sym_preproc_if_token1] = ACTIONS(2092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2092), + [anon_sym_LPAREN2] = ACTIONS(2094), + [anon_sym_BANG] = ACTIONS(2094), + [anon_sym_TILDE] = ACTIONS(2094), + [anon_sym_DASH] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(2092), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_CARET] = ACTIONS(2094), + [anon_sym_AMP] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2094), + [anon_sym_typedef] = ACTIONS(2092), + [anon_sym_extern] = ACTIONS(2092), + [anon_sym___attribute] = ACTIONS(2092), + [anon_sym___attribute__] = ACTIONS(2092), + [anon_sym___declspec] = ACTIONS(2092), + [anon_sym___cdecl] = ACTIONS(2092), + [anon_sym___clrcall] = ACTIONS(2092), + [anon_sym___stdcall] = ACTIONS(2092), + [anon_sym___fastcall] = ACTIONS(2092), + [anon_sym___thiscall] = ACTIONS(2092), + [anon_sym___vectorcall] = ACTIONS(2092), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2094), + [anon_sym_LBRACK] = ACTIONS(2094), + [anon_sym_static] = ACTIONS(2092), + [anon_sym_auto] = ACTIONS(2092), + [anon_sym_register] = ACTIONS(2092), + [anon_sym_inline] = ACTIONS(2092), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2092), + [anon_sym_const] = ACTIONS(2092), + [anon_sym_volatile] = ACTIONS(2092), + [anon_sym_restrict] = ACTIONS(2092), + [anon_sym__Atomic] = ACTIONS(2092), + [anon_sym_in] = ACTIONS(2092), + [anon_sym_out] = ACTIONS(2092), + [anon_sym_inout] = ACTIONS(2092), + [anon_sym_bycopy] = ACTIONS(2092), + [anon_sym_byref] = ACTIONS(2092), + [anon_sym_oneway] = ACTIONS(2092), + [anon_sym__Nullable] = ACTIONS(2092), + [anon_sym__Nonnull] = ACTIONS(2092), + [anon_sym__Nullable_result] = ACTIONS(2092), + [anon_sym__Null_unspecified] = ACTIONS(2092), + [anon_sym___autoreleasing] = ACTIONS(2092), + [anon_sym___nullable] = ACTIONS(2092), + [anon_sym___nonnull] = ACTIONS(2092), + [anon_sym___strong] = ACTIONS(2092), + [anon_sym___weak] = ACTIONS(2092), + [anon_sym___bridge] = ACTIONS(2092), + [anon_sym___bridge_transfer] = ACTIONS(2092), + [anon_sym___bridge_retained] = ACTIONS(2092), + [anon_sym___unsafe_unretained] = ACTIONS(2092), + [anon_sym___block] = ACTIONS(2092), + [anon_sym___kindof] = ACTIONS(2092), + [anon_sym___unused] = ACTIONS(2092), + [anon_sym__Complex] = ACTIONS(2092), + [anon_sym___complex] = ACTIONS(2092), + [anon_sym_IBOutlet] = ACTIONS(2092), + [anon_sym_IBInspectable] = ACTIONS(2092), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2092), + [anon_sym_signed] = ACTIONS(2092), + [anon_sym_unsigned] = ACTIONS(2092), + [anon_sym_long] = ACTIONS(2092), + [anon_sym_short] = ACTIONS(2092), + [sym_primitive_type] = ACTIONS(2092), + [anon_sym_enum] = ACTIONS(2092), + [anon_sym_struct] = ACTIONS(2092), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_if] = ACTIONS(2092), + [anon_sym_switch] = ACTIONS(2092), + [anon_sym_case] = ACTIONS(2092), + [anon_sym_default] = ACTIONS(2092), + [anon_sym_while] = ACTIONS(2092), + [anon_sym_do] = ACTIONS(2092), + [anon_sym_for] = ACTIONS(2092), + [anon_sym_return] = ACTIONS(2092), + [anon_sym_break] = ACTIONS(2092), + [anon_sym_continue] = ACTIONS(2092), + [anon_sym_goto] = ACTIONS(2092), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2092), + [sym_number_literal] = ACTIONS(2094), + [anon_sym_L_SQUOTE] = ACTIONS(2094), + [anon_sym_u_SQUOTE] = ACTIONS(2094), + [anon_sym_U_SQUOTE] = ACTIONS(2094), + [anon_sym_u8_SQUOTE] = ACTIONS(2094), + [anon_sym_SQUOTE] = ACTIONS(2094), + [anon_sym_L_DQUOTE] = ACTIONS(2094), + [anon_sym_u_DQUOTE] = ACTIONS(2094), + [anon_sym_U_DQUOTE] = ACTIONS(2094), + [anon_sym_u8_DQUOTE] = ACTIONS(2094), + [anon_sym_DQUOTE] = ACTIONS(2094), + [sym_true] = ACTIONS(2092), + [sym_false] = ACTIONS(2092), + [sym_null] = ACTIONS(2092), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2094), + [anon_sym_ATimport] = ACTIONS(2094), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2092), + [anon_sym_ATcompatibility_alias] = ACTIONS(2094), + [anon_sym_ATprotocol] = ACTIONS(2094), + [anon_sym_ATclass] = ACTIONS(2094), + [anon_sym_ATinterface] = ACTIONS(2094), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2092), + [sym_method_attribute_specifier] = ACTIONS(2092), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2092), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2092), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2092), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2092), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2092), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2092), + [anon_sym_NS_AVAILABLE] = ACTIONS(2092), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2092), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2092), + [anon_sym_API_AVAILABLE] = ACTIONS(2092), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2092), + [anon_sym_API_DEPRECATED] = ACTIONS(2092), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2092), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2092), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2092), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2092), + [anon_sym___deprecated_msg] = ACTIONS(2092), + [anon_sym___deprecated_enum_msg] = ACTIONS(2092), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2092), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2092), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2092), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2092), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2092), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2092), + [anon_sym_ATimplementation] = ACTIONS(2094), + [anon_sym_NS_ENUM] = ACTIONS(2092), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2092), + [anon_sym_NS_OPTIONS] = ACTIONS(2092), + [anon_sym_typeof] = ACTIONS(2092), + [anon_sym___typeof] = ACTIONS(2092), + [anon_sym___typeof__] = ACTIONS(2092), + [sym_self] = ACTIONS(2092), + [sym_super] = ACTIONS(2092), + [sym_nil] = ACTIONS(2092), + [sym_id] = ACTIONS(2092), + [sym_instancetype] = ACTIONS(2092), + [sym_Class] = ACTIONS(2092), + [sym_SEL] = ACTIONS(2092), + [sym_IMP] = ACTIONS(2092), + [sym_BOOL] = ACTIONS(2092), + [sym_auto] = ACTIONS(2092), + [anon_sym_ATautoreleasepool] = ACTIONS(2094), + [anon_sym_ATsynchronized] = ACTIONS(2094), + [anon_sym_ATtry] = ACTIONS(2094), + [anon_sym_ATthrow] = ACTIONS(2094), + [anon_sym_ATselector] = ACTIONS(2094), + [anon_sym_ATencode] = ACTIONS(2094), + [anon_sym_AT] = ACTIONS(2092), + [sym_YES] = ACTIONS(2092), + [sym_NO] = ACTIONS(2092), + [anon_sym___builtin_available] = ACTIONS(2092), + [anon_sym_ATavailable] = ACTIONS(2094), + [anon_sym_va_arg] = ACTIONS(2092), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1062] = { + [ts_builtin_sym_end] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1063] = { + [ts_builtin_sym_end] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1064] = { + [ts_builtin_sym_end] = ACTIONS(1858), + [sym_identifier] = ACTIONS(1856), + [aux_sym_preproc_include_token1] = ACTIONS(1858), + [aux_sym_preproc_def_token1] = ACTIONS(1858), + [aux_sym_preproc_if_token1] = ACTIONS(1856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1856), + [anon_sym_LPAREN2] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1856), + [anon_sym_PLUS] = ACTIONS(1856), + [anon_sym_STAR] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_AMP] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1858), + [anon_sym_typedef] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(1856), + [anon_sym___attribute] = ACTIONS(1856), + [anon_sym___attribute__] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(1856), + [anon_sym___cdecl] = ACTIONS(1856), + [anon_sym___clrcall] = ACTIONS(1856), + [anon_sym___stdcall] = ACTIONS(1856), + [anon_sym___fastcall] = ACTIONS(1856), + [anon_sym___thiscall] = ACTIONS(1856), + [anon_sym___vectorcall] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_LBRACK] = ACTIONS(1858), + [anon_sym_static] = ACTIONS(1856), + [anon_sym_auto] = ACTIONS(1856), + [anon_sym_register] = ACTIONS(1856), + [anon_sym_inline] = ACTIONS(1856), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1856), + [anon_sym_const] = ACTIONS(1856), + [anon_sym_volatile] = ACTIONS(1856), + [anon_sym_restrict] = ACTIONS(1856), + [anon_sym__Atomic] = ACTIONS(1856), + [anon_sym_in] = ACTIONS(1856), + [anon_sym_out] = ACTIONS(1856), + [anon_sym_inout] = ACTIONS(1856), + [anon_sym_bycopy] = ACTIONS(1856), + [anon_sym_byref] = ACTIONS(1856), + [anon_sym_oneway] = ACTIONS(1856), + [anon_sym__Nullable] = ACTIONS(1856), + [anon_sym__Nonnull] = ACTIONS(1856), + [anon_sym__Nullable_result] = ACTIONS(1856), + [anon_sym__Null_unspecified] = ACTIONS(1856), + [anon_sym___autoreleasing] = ACTIONS(1856), + [anon_sym___nullable] = ACTIONS(1856), + [anon_sym___nonnull] = ACTIONS(1856), + [anon_sym___strong] = ACTIONS(1856), + [anon_sym___weak] = ACTIONS(1856), + [anon_sym___bridge] = ACTIONS(1856), + [anon_sym___bridge_transfer] = ACTIONS(1856), + [anon_sym___bridge_retained] = ACTIONS(1856), + [anon_sym___unsafe_unretained] = ACTIONS(1856), + [anon_sym___block] = ACTIONS(1856), + [anon_sym___kindof] = ACTIONS(1856), + [anon_sym___unused] = ACTIONS(1856), + [anon_sym__Complex] = ACTIONS(1856), + [anon_sym___complex] = ACTIONS(1856), + [anon_sym_IBOutlet] = ACTIONS(1856), + [anon_sym_IBInspectable] = ACTIONS(1856), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1856), + [anon_sym_signed] = ACTIONS(1856), + [anon_sym_unsigned] = ACTIONS(1856), + [anon_sym_long] = ACTIONS(1856), + [anon_sym_short] = ACTIONS(1856), + [sym_primitive_type] = ACTIONS(1856), + [anon_sym_enum] = ACTIONS(1856), + [anon_sym_struct] = ACTIONS(1856), + [anon_sym_union] = ACTIONS(1856), + [anon_sym_if] = ACTIONS(1856), + [anon_sym_switch] = ACTIONS(1856), + [anon_sym_case] = ACTIONS(1856), + [anon_sym_default] = ACTIONS(1856), + [anon_sym_while] = ACTIONS(1856), + [anon_sym_do] = ACTIONS(1856), + [anon_sym_for] = ACTIONS(1856), + [anon_sym_return] = ACTIONS(1856), + [anon_sym_break] = ACTIONS(1856), + [anon_sym_continue] = ACTIONS(1856), + [anon_sym_goto] = ACTIONS(1856), + [anon_sym_DASH_DASH] = ACTIONS(1858), + [anon_sym_PLUS_PLUS] = ACTIONS(1858), + [anon_sym_sizeof] = ACTIONS(1856), + [sym_number_literal] = ACTIONS(1858), + [anon_sym_L_SQUOTE] = ACTIONS(1858), + [anon_sym_u_SQUOTE] = ACTIONS(1858), + [anon_sym_U_SQUOTE] = ACTIONS(1858), + [anon_sym_u8_SQUOTE] = ACTIONS(1858), + [anon_sym_SQUOTE] = ACTIONS(1858), + [anon_sym_L_DQUOTE] = ACTIONS(1858), + [anon_sym_u_DQUOTE] = ACTIONS(1858), + [anon_sym_U_DQUOTE] = ACTIONS(1858), + [anon_sym_u8_DQUOTE] = ACTIONS(1858), + [anon_sym_DQUOTE] = ACTIONS(1858), + [sym_true] = ACTIONS(1856), + [sym_false] = ACTIONS(1856), + [sym_null] = ACTIONS(1856), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1858), + [anon_sym_ATimport] = ACTIONS(1858), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1856), + [anon_sym_ATcompatibility_alias] = ACTIONS(1858), + [anon_sym_ATprotocol] = ACTIONS(1858), + [anon_sym_ATclass] = ACTIONS(1858), + [anon_sym_ATinterface] = ACTIONS(1858), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1856), + [sym_method_attribute_specifier] = ACTIONS(1856), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1856), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1856), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1856), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1856), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1856), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1856), + [anon_sym_NS_AVAILABLE] = ACTIONS(1856), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1856), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1856), + [anon_sym_API_AVAILABLE] = ACTIONS(1856), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1856), + [anon_sym_API_DEPRECATED] = ACTIONS(1856), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1856), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1856), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1856), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1856), + [anon_sym___deprecated_msg] = ACTIONS(1856), + [anon_sym___deprecated_enum_msg] = ACTIONS(1856), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1856), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1856), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1856), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1856), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1856), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1856), + [anon_sym_ATimplementation] = ACTIONS(1858), + [anon_sym_NS_ENUM] = ACTIONS(1856), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1856), + [anon_sym_NS_OPTIONS] = ACTIONS(1856), + [anon_sym_typeof] = ACTIONS(1856), + [anon_sym___typeof] = ACTIONS(1856), + [anon_sym___typeof__] = ACTIONS(1856), + [sym_self] = ACTIONS(1856), + [sym_super] = ACTIONS(1856), + [sym_nil] = ACTIONS(1856), + [sym_id] = ACTIONS(1856), + [sym_instancetype] = ACTIONS(1856), + [sym_Class] = ACTIONS(1856), + [sym_SEL] = ACTIONS(1856), + [sym_IMP] = ACTIONS(1856), + [sym_BOOL] = ACTIONS(1856), + [sym_auto] = ACTIONS(1856), + [anon_sym_ATautoreleasepool] = ACTIONS(1858), + [anon_sym_ATsynchronized] = ACTIONS(1858), + [anon_sym_ATtry] = ACTIONS(1858), + [anon_sym_ATthrow] = ACTIONS(1858), + [anon_sym_ATselector] = ACTIONS(1858), + [anon_sym_ATencode] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(1856), + [sym_YES] = ACTIONS(1856), + [sym_NO] = ACTIONS(1856), + [anon_sym___builtin_available] = ACTIONS(1856), + [anon_sym_ATavailable] = ACTIONS(1858), + [anon_sym_va_arg] = ACTIONS(1856), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1065] = { + [ts_builtin_sym_end] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1066] = { + [ts_builtin_sym_end] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1067] = { + [ts_builtin_sym_end] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1068] = { + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_identifier] = ACTIONS(1860), + [aux_sym_preproc_include_token1] = ACTIONS(1862), + [aux_sym_preproc_def_token1] = ACTIONS(1862), + [aux_sym_preproc_if_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1860), + [anon_sym_LPAREN2] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_typedef] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym___attribute] = ACTIONS(1860), + [anon_sym___attribute__] = ACTIONS(1860), + [anon_sym___declspec] = ACTIONS(1860), + [anon_sym___cdecl] = ACTIONS(1860), + [anon_sym___clrcall] = ACTIONS(1860), + [anon_sym___stdcall] = ACTIONS(1860), + [anon_sym___fastcall] = ACTIONS(1860), + [anon_sym___thiscall] = ACTIONS(1860), + [anon_sym___vectorcall] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_auto] = ACTIONS(1860), + [anon_sym_register] = ACTIONS(1860), + [anon_sym_inline] = ACTIONS(1860), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_volatile] = ACTIONS(1860), + [anon_sym_restrict] = ACTIONS(1860), + [anon_sym__Atomic] = ACTIONS(1860), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_out] = ACTIONS(1860), + [anon_sym_inout] = ACTIONS(1860), + [anon_sym_bycopy] = ACTIONS(1860), + [anon_sym_byref] = ACTIONS(1860), + [anon_sym_oneway] = ACTIONS(1860), + [anon_sym__Nullable] = ACTIONS(1860), + [anon_sym__Nonnull] = ACTIONS(1860), + [anon_sym__Nullable_result] = ACTIONS(1860), + [anon_sym__Null_unspecified] = ACTIONS(1860), + [anon_sym___autoreleasing] = ACTIONS(1860), + [anon_sym___nullable] = ACTIONS(1860), + [anon_sym___nonnull] = ACTIONS(1860), + [anon_sym___strong] = ACTIONS(1860), + [anon_sym___weak] = ACTIONS(1860), + [anon_sym___bridge] = ACTIONS(1860), + [anon_sym___bridge_transfer] = ACTIONS(1860), + [anon_sym___bridge_retained] = ACTIONS(1860), + [anon_sym___unsafe_unretained] = ACTIONS(1860), + [anon_sym___block] = ACTIONS(1860), + [anon_sym___kindof] = ACTIONS(1860), + [anon_sym___unused] = ACTIONS(1860), + [anon_sym__Complex] = ACTIONS(1860), + [anon_sym___complex] = ACTIONS(1860), + [anon_sym_IBOutlet] = ACTIONS(1860), + [anon_sym_IBInspectable] = ACTIONS(1860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1860), + [anon_sym_signed] = ACTIONS(1860), + [anon_sym_unsigned] = ACTIONS(1860), + [anon_sym_long] = ACTIONS(1860), + [anon_sym_short] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_union] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_switch] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_goto] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_sizeof] = ACTIONS(1860), + [sym_number_literal] = ACTIONS(1862), + [anon_sym_L_SQUOTE] = ACTIONS(1862), + [anon_sym_u_SQUOTE] = ACTIONS(1862), + [anon_sym_U_SQUOTE] = ACTIONS(1862), + [anon_sym_u8_SQUOTE] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_L_DQUOTE] = ACTIONS(1862), + [anon_sym_u_DQUOTE] = ACTIONS(1862), + [anon_sym_U_DQUOTE] = ACTIONS(1862), + [anon_sym_u8_DQUOTE] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [sym_true] = ACTIONS(1860), + [sym_false] = ACTIONS(1860), + [sym_null] = ACTIONS(1860), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1862), + [anon_sym_ATimport] = ACTIONS(1862), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1860), + [anon_sym_ATcompatibility_alias] = ACTIONS(1862), + [anon_sym_ATprotocol] = ACTIONS(1862), + [anon_sym_ATclass] = ACTIONS(1862), + [anon_sym_ATinterface] = ACTIONS(1862), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1860), + [sym_method_attribute_specifier] = ACTIONS(1860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE] = ACTIONS(1860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_API_AVAILABLE] = ACTIONS(1860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_API_DEPRECATED] = ACTIONS(1860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1860), + [anon_sym___deprecated_msg] = ACTIONS(1860), + [anon_sym___deprecated_enum_msg] = ACTIONS(1860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1860), + [anon_sym_ATimplementation] = ACTIONS(1862), + [anon_sym_NS_ENUM] = ACTIONS(1860), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1860), + [anon_sym_NS_OPTIONS] = ACTIONS(1860), + [anon_sym_typeof] = ACTIONS(1860), + [anon_sym___typeof] = ACTIONS(1860), + [anon_sym___typeof__] = ACTIONS(1860), + [sym_self] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_nil] = ACTIONS(1860), + [sym_id] = ACTIONS(1860), + [sym_instancetype] = ACTIONS(1860), + [sym_Class] = ACTIONS(1860), + [sym_SEL] = ACTIONS(1860), + [sym_IMP] = ACTIONS(1860), + [sym_BOOL] = ACTIONS(1860), + [sym_auto] = ACTIONS(1860), + [anon_sym_ATautoreleasepool] = ACTIONS(1862), + [anon_sym_ATsynchronized] = ACTIONS(1862), + [anon_sym_ATtry] = ACTIONS(1862), + [anon_sym_ATthrow] = ACTIONS(1862), + [anon_sym_ATselector] = ACTIONS(1862), + [anon_sym_ATencode] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1860), + [sym_YES] = ACTIONS(1860), + [sym_NO] = ACTIONS(1860), + [anon_sym___builtin_available] = ACTIONS(1860), + [anon_sym_ATavailable] = ACTIONS(1862), + [anon_sym_va_arg] = ACTIONS(1860), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1069] = { + [ts_builtin_sym_end] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1070] = { + [ts_builtin_sym_end] = ACTIONS(1926), + [sym_identifier] = ACTIONS(1924), + [aux_sym_preproc_include_token1] = ACTIONS(1926), + [aux_sym_preproc_def_token1] = ACTIONS(1926), + [aux_sym_preproc_if_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_CARET] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym___cdecl] = ACTIONS(1924), + [anon_sym___clrcall] = ACTIONS(1924), + [anon_sym___stdcall] = ACTIONS(1924), + [anon_sym___fastcall] = ACTIONS(1924), + [anon_sym___thiscall] = ACTIONS(1924), + [anon_sym___vectorcall] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_RBRACE] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_auto] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(1924), + [anon_sym_out] = ACTIONS(1924), + [anon_sym_inout] = ACTIONS(1924), + [anon_sym_bycopy] = ACTIONS(1924), + [anon_sym_byref] = ACTIONS(1924), + [anon_sym_oneway] = ACTIONS(1924), + [anon_sym__Nullable] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym__Nullable_result] = ACTIONS(1924), + [anon_sym__Null_unspecified] = ACTIONS(1924), + [anon_sym___autoreleasing] = ACTIONS(1924), + [anon_sym___nullable] = ACTIONS(1924), + [anon_sym___nonnull] = ACTIONS(1924), + [anon_sym___strong] = ACTIONS(1924), + [anon_sym___weak] = ACTIONS(1924), + [anon_sym___bridge] = ACTIONS(1924), + [anon_sym___bridge_transfer] = ACTIONS(1924), + [anon_sym___bridge_retained] = ACTIONS(1924), + [anon_sym___unsafe_unretained] = ACTIONS(1924), + [anon_sym___block] = ACTIONS(1924), + [anon_sym___kindof] = ACTIONS(1924), + [anon_sym___unused] = ACTIONS(1924), + [anon_sym__Complex] = ACTIONS(1924), + [anon_sym___complex] = ACTIONS(1924), + [anon_sym_IBOutlet] = ACTIONS(1924), + [anon_sym_IBInspectable] = ACTIONS(1924), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1924), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_switch] = ACTIONS(1924), + [anon_sym_case] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_do] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1924), + [sym_number_literal] = ACTIONS(1926), + [anon_sym_L_SQUOTE] = ACTIONS(1926), + [anon_sym_u_SQUOTE] = ACTIONS(1926), + [anon_sym_U_SQUOTE] = ACTIONS(1926), + [anon_sym_u8_SQUOTE] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_L_DQUOTE] = ACTIONS(1926), + [anon_sym_u_DQUOTE] = ACTIONS(1926), + [anon_sym_U_DQUOTE] = ACTIONS(1926), + [anon_sym_u8_DQUOTE] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [sym_true] = ACTIONS(1924), + [sym_false] = ACTIONS(1924), + [sym_null] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1926), + [anon_sym_ATimport] = ACTIONS(1926), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1924), + [anon_sym_ATcompatibility_alias] = ACTIONS(1926), + [anon_sym_ATprotocol] = ACTIONS(1926), + [anon_sym_ATclass] = ACTIONS(1926), + [anon_sym_ATinterface] = ACTIONS(1926), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1924), + [sym_method_attribute_specifier] = ACTIONS(1924), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1924), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE] = ACTIONS(1924), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_API_AVAILABLE] = ACTIONS(1924), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_API_DEPRECATED] = ACTIONS(1924), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1924), + [anon_sym___deprecated_msg] = ACTIONS(1924), + [anon_sym___deprecated_enum_msg] = ACTIONS(1924), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1924), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1924), + [anon_sym_ATimplementation] = ACTIONS(1926), + [anon_sym_NS_ENUM] = ACTIONS(1924), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1924), + [anon_sym_NS_OPTIONS] = ACTIONS(1924), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym___typeof] = ACTIONS(1924), + [anon_sym___typeof__] = ACTIONS(1924), + [sym_self] = ACTIONS(1924), + [sym_super] = ACTIONS(1924), + [sym_nil] = ACTIONS(1924), + [sym_id] = ACTIONS(1924), + [sym_instancetype] = ACTIONS(1924), + [sym_Class] = ACTIONS(1924), + [sym_SEL] = ACTIONS(1924), + [sym_IMP] = ACTIONS(1924), + [sym_BOOL] = ACTIONS(1924), + [sym_auto] = ACTIONS(1924), + [anon_sym_ATautoreleasepool] = ACTIONS(1926), + [anon_sym_ATsynchronized] = ACTIONS(1926), + [anon_sym_ATtry] = ACTIONS(1926), + [anon_sym_ATthrow] = ACTIONS(1926), + [anon_sym_ATselector] = ACTIONS(1926), + [anon_sym_ATencode] = ACTIONS(1926), + [anon_sym_AT] = ACTIONS(1924), + [sym_YES] = ACTIONS(1924), + [sym_NO] = ACTIONS(1924), + [anon_sym___builtin_available] = ACTIONS(1924), + [anon_sym_ATavailable] = ACTIONS(1926), + [anon_sym_va_arg] = ACTIONS(1924), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1071] = { + [ts_builtin_sym_end] = ACTIONS(1926), + [sym_identifier] = ACTIONS(1924), + [aux_sym_preproc_include_token1] = ACTIONS(1926), + [aux_sym_preproc_def_token1] = ACTIONS(1926), + [aux_sym_preproc_if_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_CARET] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym___cdecl] = ACTIONS(1924), + [anon_sym___clrcall] = ACTIONS(1924), + [anon_sym___stdcall] = ACTIONS(1924), + [anon_sym___fastcall] = ACTIONS(1924), + [anon_sym___thiscall] = ACTIONS(1924), + [anon_sym___vectorcall] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_RBRACE] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_auto] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(1924), + [anon_sym_out] = ACTIONS(1924), + [anon_sym_inout] = ACTIONS(1924), + [anon_sym_bycopy] = ACTIONS(1924), + [anon_sym_byref] = ACTIONS(1924), + [anon_sym_oneway] = ACTIONS(1924), + [anon_sym__Nullable] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym__Nullable_result] = ACTIONS(1924), + [anon_sym__Null_unspecified] = ACTIONS(1924), + [anon_sym___autoreleasing] = ACTIONS(1924), + [anon_sym___nullable] = ACTIONS(1924), + [anon_sym___nonnull] = ACTIONS(1924), + [anon_sym___strong] = ACTIONS(1924), + [anon_sym___weak] = ACTIONS(1924), + [anon_sym___bridge] = ACTIONS(1924), + [anon_sym___bridge_transfer] = ACTIONS(1924), + [anon_sym___bridge_retained] = ACTIONS(1924), + [anon_sym___unsafe_unretained] = ACTIONS(1924), + [anon_sym___block] = ACTIONS(1924), + [anon_sym___kindof] = ACTIONS(1924), + [anon_sym___unused] = ACTIONS(1924), + [anon_sym__Complex] = ACTIONS(1924), + [anon_sym___complex] = ACTIONS(1924), + [anon_sym_IBOutlet] = ACTIONS(1924), + [anon_sym_IBInspectable] = ACTIONS(1924), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1924), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_switch] = ACTIONS(1924), + [anon_sym_case] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_do] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1924), + [sym_number_literal] = ACTIONS(1926), + [anon_sym_L_SQUOTE] = ACTIONS(1926), + [anon_sym_u_SQUOTE] = ACTIONS(1926), + [anon_sym_U_SQUOTE] = ACTIONS(1926), + [anon_sym_u8_SQUOTE] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_L_DQUOTE] = ACTIONS(1926), + [anon_sym_u_DQUOTE] = ACTIONS(1926), + [anon_sym_U_DQUOTE] = ACTIONS(1926), + [anon_sym_u8_DQUOTE] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [sym_true] = ACTIONS(1924), + [sym_false] = ACTIONS(1924), + [sym_null] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1926), + [anon_sym_ATimport] = ACTIONS(1926), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1924), + [anon_sym_ATcompatibility_alias] = ACTIONS(1926), + [anon_sym_ATprotocol] = ACTIONS(1926), + [anon_sym_ATclass] = ACTIONS(1926), + [anon_sym_ATinterface] = ACTIONS(1926), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1924), + [sym_method_attribute_specifier] = ACTIONS(1924), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1924), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE] = ACTIONS(1924), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_API_AVAILABLE] = ACTIONS(1924), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_API_DEPRECATED] = ACTIONS(1924), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1924), + [anon_sym___deprecated_msg] = ACTIONS(1924), + [anon_sym___deprecated_enum_msg] = ACTIONS(1924), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1924), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1924), + [anon_sym_ATimplementation] = ACTIONS(1926), + [anon_sym_NS_ENUM] = ACTIONS(1924), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1924), + [anon_sym_NS_OPTIONS] = ACTIONS(1924), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym___typeof] = ACTIONS(1924), + [anon_sym___typeof__] = ACTIONS(1924), + [sym_self] = ACTIONS(1924), + [sym_super] = ACTIONS(1924), + [sym_nil] = ACTIONS(1924), + [sym_id] = ACTIONS(1924), + [sym_instancetype] = ACTIONS(1924), + [sym_Class] = ACTIONS(1924), + [sym_SEL] = ACTIONS(1924), + [sym_IMP] = ACTIONS(1924), + [sym_BOOL] = ACTIONS(1924), + [sym_auto] = ACTIONS(1924), + [anon_sym_ATautoreleasepool] = ACTIONS(1926), + [anon_sym_ATsynchronized] = ACTIONS(1926), + [anon_sym_ATtry] = ACTIONS(1926), + [anon_sym_ATthrow] = ACTIONS(1926), + [anon_sym_ATselector] = ACTIONS(1926), + [anon_sym_ATencode] = ACTIONS(1926), + [anon_sym_AT] = ACTIONS(1924), + [sym_YES] = ACTIONS(1924), + [sym_NO] = ACTIONS(1924), + [anon_sym___builtin_available] = ACTIONS(1924), + [anon_sym_ATavailable] = ACTIONS(1926), + [anon_sym_va_arg] = ACTIONS(1924), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1072] = { + [ts_builtin_sym_end] = ACTIONS(1926), + [sym_identifier] = ACTIONS(1924), + [aux_sym_preproc_include_token1] = ACTIONS(1926), + [aux_sym_preproc_def_token1] = ACTIONS(1926), + [aux_sym_preproc_if_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_CARET] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym___cdecl] = ACTIONS(1924), + [anon_sym___clrcall] = ACTIONS(1924), + [anon_sym___stdcall] = ACTIONS(1924), + [anon_sym___fastcall] = ACTIONS(1924), + [anon_sym___thiscall] = ACTIONS(1924), + [anon_sym___vectorcall] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_RBRACE] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_auto] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(1924), + [anon_sym_out] = ACTIONS(1924), + [anon_sym_inout] = ACTIONS(1924), + [anon_sym_bycopy] = ACTIONS(1924), + [anon_sym_byref] = ACTIONS(1924), + [anon_sym_oneway] = ACTIONS(1924), + [anon_sym__Nullable] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym__Nullable_result] = ACTIONS(1924), + [anon_sym__Null_unspecified] = ACTIONS(1924), + [anon_sym___autoreleasing] = ACTIONS(1924), + [anon_sym___nullable] = ACTIONS(1924), + [anon_sym___nonnull] = ACTIONS(1924), + [anon_sym___strong] = ACTIONS(1924), + [anon_sym___weak] = ACTIONS(1924), + [anon_sym___bridge] = ACTIONS(1924), + [anon_sym___bridge_transfer] = ACTIONS(1924), + [anon_sym___bridge_retained] = ACTIONS(1924), + [anon_sym___unsafe_unretained] = ACTIONS(1924), + [anon_sym___block] = ACTIONS(1924), + [anon_sym___kindof] = ACTIONS(1924), + [anon_sym___unused] = ACTIONS(1924), + [anon_sym__Complex] = ACTIONS(1924), + [anon_sym___complex] = ACTIONS(1924), + [anon_sym_IBOutlet] = ACTIONS(1924), + [anon_sym_IBInspectable] = ACTIONS(1924), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1924), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_switch] = ACTIONS(1924), + [anon_sym_case] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_do] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1924), + [sym_number_literal] = ACTIONS(1926), + [anon_sym_L_SQUOTE] = ACTIONS(1926), + [anon_sym_u_SQUOTE] = ACTIONS(1926), + [anon_sym_U_SQUOTE] = ACTIONS(1926), + [anon_sym_u8_SQUOTE] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_L_DQUOTE] = ACTIONS(1926), + [anon_sym_u_DQUOTE] = ACTIONS(1926), + [anon_sym_U_DQUOTE] = ACTIONS(1926), + [anon_sym_u8_DQUOTE] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [sym_true] = ACTIONS(1924), + [sym_false] = ACTIONS(1924), + [sym_null] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1926), + [anon_sym_ATimport] = ACTIONS(1926), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1924), + [anon_sym_ATcompatibility_alias] = ACTIONS(1926), + [anon_sym_ATprotocol] = ACTIONS(1926), + [anon_sym_ATclass] = ACTIONS(1926), + [anon_sym_ATinterface] = ACTIONS(1926), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1924), + [sym_method_attribute_specifier] = ACTIONS(1924), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1924), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE] = ACTIONS(1924), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_API_AVAILABLE] = ACTIONS(1924), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_API_DEPRECATED] = ACTIONS(1924), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1924), + [anon_sym___deprecated_msg] = ACTIONS(1924), + [anon_sym___deprecated_enum_msg] = ACTIONS(1924), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1924), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1924), + [anon_sym_ATimplementation] = ACTIONS(1926), + [anon_sym_NS_ENUM] = ACTIONS(1924), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1924), + [anon_sym_NS_OPTIONS] = ACTIONS(1924), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym___typeof] = ACTIONS(1924), + [anon_sym___typeof__] = ACTIONS(1924), + [sym_self] = ACTIONS(1924), + [sym_super] = ACTIONS(1924), + [sym_nil] = ACTIONS(1924), + [sym_id] = ACTIONS(1924), + [sym_instancetype] = ACTIONS(1924), + [sym_Class] = ACTIONS(1924), + [sym_SEL] = ACTIONS(1924), + [sym_IMP] = ACTIONS(1924), + [sym_BOOL] = ACTIONS(1924), + [sym_auto] = ACTIONS(1924), + [anon_sym_ATautoreleasepool] = ACTIONS(1926), + [anon_sym_ATsynchronized] = ACTIONS(1926), + [anon_sym_ATtry] = ACTIONS(1926), + [anon_sym_ATthrow] = ACTIONS(1926), + [anon_sym_ATselector] = ACTIONS(1926), + [anon_sym_ATencode] = ACTIONS(1926), + [anon_sym_AT] = ACTIONS(1924), + [sym_YES] = ACTIONS(1924), + [sym_NO] = ACTIONS(1924), + [anon_sym___builtin_available] = ACTIONS(1924), + [anon_sym_ATavailable] = ACTIONS(1926), + [anon_sym_va_arg] = ACTIONS(1924), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1073] = { + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_identifier] = ACTIONS(1860), + [aux_sym_preproc_include_token1] = ACTIONS(1862), + [aux_sym_preproc_def_token1] = ACTIONS(1862), + [aux_sym_preproc_if_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1860), + [anon_sym_LPAREN2] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_typedef] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym___attribute] = ACTIONS(1860), + [anon_sym___attribute__] = ACTIONS(1860), + [anon_sym___declspec] = ACTIONS(1860), + [anon_sym___cdecl] = ACTIONS(1860), + [anon_sym___clrcall] = ACTIONS(1860), + [anon_sym___stdcall] = ACTIONS(1860), + [anon_sym___fastcall] = ACTIONS(1860), + [anon_sym___thiscall] = ACTIONS(1860), + [anon_sym___vectorcall] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_auto] = ACTIONS(1860), + [anon_sym_register] = ACTIONS(1860), + [anon_sym_inline] = ACTIONS(1860), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_volatile] = ACTIONS(1860), + [anon_sym_restrict] = ACTIONS(1860), + [anon_sym__Atomic] = ACTIONS(1860), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_out] = ACTIONS(1860), + [anon_sym_inout] = ACTIONS(1860), + [anon_sym_bycopy] = ACTIONS(1860), + [anon_sym_byref] = ACTIONS(1860), + [anon_sym_oneway] = ACTIONS(1860), + [anon_sym__Nullable] = ACTIONS(1860), + [anon_sym__Nonnull] = ACTIONS(1860), + [anon_sym__Nullable_result] = ACTIONS(1860), + [anon_sym__Null_unspecified] = ACTIONS(1860), + [anon_sym___autoreleasing] = ACTIONS(1860), + [anon_sym___nullable] = ACTIONS(1860), + [anon_sym___nonnull] = ACTIONS(1860), + [anon_sym___strong] = ACTIONS(1860), + [anon_sym___weak] = ACTIONS(1860), + [anon_sym___bridge] = ACTIONS(1860), + [anon_sym___bridge_transfer] = ACTIONS(1860), + [anon_sym___bridge_retained] = ACTIONS(1860), + [anon_sym___unsafe_unretained] = ACTIONS(1860), + [anon_sym___block] = ACTIONS(1860), + [anon_sym___kindof] = ACTIONS(1860), + [anon_sym___unused] = ACTIONS(1860), + [anon_sym__Complex] = ACTIONS(1860), + [anon_sym___complex] = ACTIONS(1860), + [anon_sym_IBOutlet] = ACTIONS(1860), + [anon_sym_IBInspectable] = ACTIONS(1860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1860), + [anon_sym_signed] = ACTIONS(1860), + [anon_sym_unsigned] = ACTIONS(1860), + [anon_sym_long] = ACTIONS(1860), + [anon_sym_short] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_union] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_switch] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_goto] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_sizeof] = ACTIONS(1860), + [sym_number_literal] = ACTIONS(1862), + [anon_sym_L_SQUOTE] = ACTIONS(1862), + [anon_sym_u_SQUOTE] = ACTIONS(1862), + [anon_sym_U_SQUOTE] = ACTIONS(1862), + [anon_sym_u8_SQUOTE] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_L_DQUOTE] = ACTIONS(1862), + [anon_sym_u_DQUOTE] = ACTIONS(1862), + [anon_sym_U_DQUOTE] = ACTIONS(1862), + [anon_sym_u8_DQUOTE] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [sym_true] = ACTIONS(1860), + [sym_false] = ACTIONS(1860), + [sym_null] = ACTIONS(1860), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1862), + [anon_sym_ATimport] = ACTIONS(1862), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1860), + [anon_sym_ATcompatibility_alias] = ACTIONS(1862), + [anon_sym_ATprotocol] = ACTIONS(1862), + [anon_sym_ATclass] = ACTIONS(1862), + [anon_sym_ATinterface] = ACTIONS(1862), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1860), + [sym_method_attribute_specifier] = ACTIONS(1860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE] = ACTIONS(1860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_API_AVAILABLE] = ACTIONS(1860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_API_DEPRECATED] = ACTIONS(1860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1860), + [anon_sym___deprecated_msg] = ACTIONS(1860), + [anon_sym___deprecated_enum_msg] = ACTIONS(1860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1860), + [anon_sym_ATimplementation] = ACTIONS(1862), + [anon_sym_NS_ENUM] = ACTIONS(1860), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1860), + [anon_sym_NS_OPTIONS] = ACTIONS(1860), + [anon_sym_typeof] = ACTIONS(1860), + [anon_sym___typeof] = ACTIONS(1860), + [anon_sym___typeof__] = ACTIONS(1860), + [sym_self] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_nil] = ACTIONS(1860), + [sym_id] = ACTIONS(1860), + [sym_instancetype] = ACTIONS(1860), + [sym_Class] = ACTIONS(1860), + [sym_SEL] = ACTIONS(1860), + [sym_IMP] = ACTIONS(1860), + [sym_BOOL] = ACTIONS(1860), + [sym_auto] = ACTIONS(1860), + [anon_sym_ATautoreleasepool] = ACTIONS(1862), + [anon_sym_ATsynchronized] = ACTIONS(1862), + [anon_sym_ATtry] = ACTIONS(1862), + [anon_sym_ATthrow] = ACTIONS(1862), + [anon_sym_ATselector] = ACTIONS(1862), + [anon_sym_ATencode] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1860), + [sym_YES] = ACTIONS(1860), + [sym_NO] = ACTIONS(1860), + [anon_sym___builtin_available] = ACTIONS(1860), + [anon_sym_ATavailable] = ACTIONS(1862), + [anon_sym_va_arg] = ACTIONS(1860), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1074] = { + [ts_builtin_sym_end] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1075] = { + [ts_builtin_sym_end] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1076] = { + [ts_builtin_sym_end] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1077] = { + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_identifier] = ACTIONS(1860), + [aux_sym_preproc_include_token1] = ACTIONS(1862), + [aux_sym_preproc_def_token1] = ACTIONS(1862), + [aux_sym_preproc_if_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1860), + [anon_sym_LPAREN2] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_typedef] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym___attribute] = ACTIONS(1860), + [anon_sym___attribute__] = ACTIONS(1860), + [anon_sym___declspec] = ACTIONS(1860), + [anon_sym___cdecl] = ACTIONS(1860), + [anon_sym___clrcall] = ACTIONS(1860), + [anon_sym___stdcall] = ACTIONS(1860), + [anon_sym___fastcall] = ACTIONS(1860), + [anon_sym___thiscall] = ACTIONS(1860), + [anon_sym___vectorcall] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_auto] = ACTIONS(1860), + [anon_sym_register] = ACTIONS(1860), + [anon_sym_inline] = ACTIONS(1860), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_volatile] = ACTIONS(1860), + [anon_sym_restrict] = ACTIONS(1860), + [anon_sym__Atomic] = ACTIONS(1860), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_out] = ACTIONS(1860), + [anon_sym_inout] = ACTIONS(1860), + [anon_sym_bycopy] = ACTIONS(1860), + [anon_sym_byref] = ACTIONS(1860), + [anon_sym_oneway] = ACTIONS(1860), + [anon_sym__Nullable] = ACTIONS(1860), + [anon_sym__Nonnull] = ACTIONS(1860), + [anon_sym__Nullable_result] = ACTIONS(1860), + [anon_sym__Null_unspecified] = ACTIONS(1860), + [anon_sym___autoreleasing] = ACTIONS(1860), + [anon_sym___nullable] = ACTIONS(1860), + [anon_sym___nonnull] = ACTIONS(1860), + [anon_sym___strong] = ACTIONS(1860), + [anon_sym___weak] = ACTIONS(1860), + [anon_sym___bridge] = ACTIONS(1860), + [anon_sym___bridge_transfer] = ACTIONS(1860), + [anon_sym___bridge_retained] = ACTIONS(1860), + [anon_sym___unsafe_unretained] = ACTIONS(1860), + [anon_sym___block] = ACTIONS(1860), + [anon_sym___kindof] = ACTIONS(1860), + [anon_sym___unused] = ACTIONS(1860), + [anon_sym__Complex] = ACTIONS(1860), + [anon_sym___complex] = ACTIONS(1860), + [anon_sym_IBOutlet] = ACTIONS(1860), + [anon_sym_IBInspectable] = ACTIONS(1860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1860), + [anon_sym_signed] = ACTIONS(1860), + [anon_sym_unsigned] = ACTIONS(1860), + [anon_sym_long] = ACTIONS(1860), + [anon_sym_short] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_union] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_switch] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_goto] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_sizeof] = ACTIONS(1860), + [sym_number_literal] = ACTIONS(1862), + [anon_sym_L_SQUOTE] = ACTIONS(1862), + [anon_sym_u_SQUOTE] = ACTIONS(1862), + [anon_sym_U_SQUOTE] = ACTIONS(1862), + [anon_sym_u8_SQUOTE] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_L_DQUOTE] = ACTIONS(1862), + [anon_sym_u_DQUOTE] = ACTIONS(1862), + [anon_sym_U_DQUOTE] = ACTIONS(1862), + [anon_sym_u8_DQUOTE] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [sym_true] = ACTIONS(1860), + [sym_false] = ACTIONS(1860), + [sym_null] = ACTIONS(1860), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1862), + [anon_sym_ATimport] = ACTIONS(1862), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1860), + [anon_sym_ATcompatibility_alias] = ACTIONS(1862), + [anon_sym_ATprotocol] = ACTIONS(1862), + [anon_sym_ATclass] = ACTIONS(1862), + [anon_sym_ATinterface] = ACTIONS(1862), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1860), + [sym_method_attribute_specifier] = ACTIONS(1860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE] = ACTIONS(1860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_API_AVAILABLE] = ACTIONS(1860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_API_DEPRECATED] = ACTIONS(1860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1860), + [anon_sym___deprecated_msg] = ACTIONS(1860), + [anon_sym___deprecated_enum_msg] = ACTIONS(1860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1860), + [anon_sym_ATimplementation] = ACTIONS(1862), + [anon_sym_NS_ENUM] = ACTIONS(1860), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1860), + [anon_sym_NS_OPTIONS] = ACTIONS(1860), + [anon_sym_typeof] = ACTIONS(1860), + [anon_sym___typeof] = ACTIONS(1860), + [anon_sym___typeof__] = ACTIONS(1860), + [sym_self] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_nil] = ACTIONS(1860), + [sym_id] = ACTIONS(1860), + [sym_instancetype] = ACTIONS(1860), + [sym_Class] = ACTIONS(1860), + [sym_SEL] = ACTIONS(1860), + [sym_IMP] = ACTIONS(1860), + [sym_BOOL] = ACTIONS(1860), + [sym_auto] = ACTIONS(1860), + [anon_sym_ATautoreleasepool] = ACTIONS(1862), + [anon_sym_ATsynchronized] = ACTIONS(1862), + [anon_sym_ATtry] = ACTIONS(1862), + [anon_sym_ATthrow] = ACTIONS(1862), + [anon_sym_ATselector] = ACTIONS(1862), + [anon_sym_ATencode] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1860), + [sym_YES] = ACTIONS(1860), + [sym_NO] = ACTIONS(1860), + [anon_sym___builtin_available] = ACTIONS(1860), + [anon_sym_ATavailable] = ACTIONS(1862), + [anon_sym_va_arg] = ACTIONS(1860), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1078] = { + [ts_builtin_sym_end] = ACTIONS(1766), + [sym_identifier] = ACTIONS(1764), + [aux_sym_preproc_include_token1] = ACTIONS(1766), + [aux_sym_preproc_def_token1] = ACTIONS(1766), + [aux_sym_preproc_if_token1] = ACTIONS(1764), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1764), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1764), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_typedef] = ACTIONS(1764), + [anon_sym_extern] = ACTIONS(1764), + [anon_sym___attribute] = ACTIONS(1764), + [anon_sym___attribute__] = ACTIONS(1764), + [anon_sym___declspec] = ACTIONS(1764), + [anon_sym___cdecl] = ACTIONS(1764), + [anon_sym___clrcall] = ACTIONS(1764), + [anon_sym___stdcall] = ACTIONS(1764), + [anon_sym___fastcall] = ACTIONS(1764), + [anon_sym___thiscall] = ACTIONS(1764), + [anon_sym___vectorcall] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_static] = ACTIONS(1764), + [anon_sym_auto] = ACTIONS(1764), + [anon_sym_register] = ACTIONS(1764), + [anon_sym_inline] = ACTIONS(1764), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1764), + [anon_sym_const] = ACTIONS(1764), + [anon_sym_volatile] = ACTIONS(1764), + [anon_sym_restrict] = ACTIONS(1764), + [anon_sym__Atomic] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1764), + [anon_sym_out] = ACTIONS(1764), + [anon_sym_inout] = ACTIONS(1764), + [anon_sym_bycopy] = ACTIONS(1764), + [anon_sym_byref] = ACTIONS(1764), + [anon_sym_oneway] = ACTIONS(1764), + [anon_sym__Nullable] = ACTIONS(1764), + [anon_sym__Nonnull] = ACTIONS(1764), + [anon_sym__Nullable_result] = ACTIONS(1764), + [anon_sym__Null_unspecified] = ACTIONS(1764), + [anon_sym___autoreleasing] = ACTIONS(1764), + [anon_sym___nullable] = ACTIONS(1764), + [anon_sym___nonnull] = ACTIONS(1764), + [anon_sym___strong] = ACTIONS(1764), + [anon_sym___weak] = ACTIONS(1764), + [anon_sym___bridge] = ACTIONS(1764), + [anon_sym___bridge_transfer] = ACTIONS(1764), + [anon_sym___bridge_retained] = ACTIONS(1764), + [anon_sym___unsafe_unretained] = ACTIONS(1764), + [anon_sym___block] = ACTIONS(1764), + [anon_sym___kindof] = ACTIONS(1764), + [anon_sym___unused] = ACTIONS(1764), + [anon_sym__Complex] = ACTIONS(1764), + [anon_sym___complex] = ACTIONS(1764), + [anon_sym_IBOutlet] = ACTIONS(1764), + [anon_sym_IBInspectable] = ACTIONS(1764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1764), + [anon_sym_signed] = ACTIONS(1764), + [anon_sym_unsigned] = ACTIONS(1764), + [anon_sym_long] = ACTIONS(1764), + [anon_sym_short] = ACTIONS(1764), + [sym_primitive_type] = ACTIONS(1764), + [anon_sym_enum] = ACTIONS(1764), + [anon_sym_struct] = ACTIONS(1764), + [anon_sym_union] = ACTIONS(1764), + [anon_sym_if] = ACTIONS(1764), + [anon_sym_switch] = ACTIONS(1764), + [anon_sym_case] = ACTIONS(1764), + [anon_sym_default] = ACTIONS(1764), + [anon_sym_while] = ACTIONS(1764), + [anon_sym_do] = ACTIONS(1764), + [anon_sym_for] = ACTIONS(1764), + [anon_sym_return] = ACTIONS(1764), + [anon_sym_break] = ACTIONS(1764), + [anon_sym_continue] = ACTIONS(1764), + [anon_sym_goto] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_sizeof] = ACTIONS(1764), + [sym_number_literal] = ACTIONS(1766), + [anon_sym_L_SQUOTE] = ACTIONS(1766), + [anon_sym_u_SQUOTE] = ACTIONS(1766), + [anon_sym_U_SQUOTE] = ACTIONS(1766), + [anon_sym_u8_SQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_L_DQUOTE] = ACTIONS(1766), + [anon_sym_u_DQUOTE] = ACTIONS(1766), + [anon_sym_U_DQUOTE] = ACTIONS(1766), + [anon_sym_u8_DQUOTE] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [sym_true] = ACTIONS(1764), + [sym_false] = ACTIONS(1764), + [sym_null] = ACTIONS(1764), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1766), + [anon_sym_ATimport] = ACTIONS(1766), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1764), + [anon_sym_ATcompatibility_alias] = ACTIONS(1766), + [anon_sym_ATprotocol] = ACTIONS(1766), + [anon_sym_ATclass] = ACTIONS(1766), + [anon_sym_ATinterface] = ACTIONS(1766), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1764), + [sym_method_attribute_specifier] = ACTIONS(1764), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1764), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1764), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1764), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1764), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1764), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1764), + [anon_sym_NS_AVAILABLE] = ACTIONS(1764), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1764), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1764), + [anon_sym_API_AVAILABLE] = ACTIONS(1764), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1764), + [anon_sym_API_DEPRECATED] = ACTIONS(1764), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1764), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1764), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1764), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1764), + [anon_sym___deprecated_msg] = ACTIONS(1764), + [anon_sym___deprecated_enum_msg] = ACTIONS(1764), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1764), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1764), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1764), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1764), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1764), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1764), + [anon_sym_ATimplementation] = ACTIONS(1766), + [anon_sym_NS_ENUM] = ACTIONS(1764), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1764), + [anon_sym_NS_OPTIONS] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(1764), + [anon_sym___typeof] = ACTIONS(1764), + [anon_sym___typeof__] = ACTIONS(1764), + [sym_self] = ACTIONS(1764), + [sym_super] = ACTIONS(1764), + [sym_nil] = ACTIONS(1764), + [sym_id] = ACTIONS(1764), + [sym_instancetype] = ACTIONS(1764), + [sym_Class] = ACTIONS(1764), + [sym_SEL] = ACTIONS(1764), + [sym_IMP] = ACTIONS(1764), + [sym_BOOL] = ACTIONS(1764), + [sym_auto] = ACTIONS(1764), + [anon_sym_ATautoreleasepool] = ACTIONS(1766), + [anon_sym_ATsynchronized] = ACTIONS(1766), + [anon_sym_ATtry] = ACTIONS(1766), + [anon_sym_ATthrow] = ACTIONS(1766), + [anon_sym_ATselector] = ACTIONS(1766), + [anon_sym_ATencode] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1764), + [sym_YES] = ACTIONS(1764), + [sym_NO] = ACTIONS(1764), + [anon_sym___builtin_available] = ACTIONS(1764), + [anon_sym_ATavailable] = ACTIONS(1766), + [anon_sym_va_arg] = ACTIONS(1764), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1079] = { + [ts_builtin_sym_end] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1080] = { + [ts_builtin_sym_end] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1081] = { + [ts_builtin_sym_end] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1082] = { + [ts_builtin_sym_end] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1083] = { + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_identifier] = ACTIONS(1860), + [aux_sym_preproc_include_token1] = ACTIONS(1862), + [aux_sym_preproc_def_token1] = ACTIONS(1862), + [aux_sym_preproc_if_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1860), + [anon_sym_LPAREN2] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_typedef] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym___attribute] = ACTIONS(1860), + [anon_sym___attribute__] = ACTIONS(1860), + [anon_sym___declspec] = ACTIONS(1860), + [anon_sym___cdecl] = ACTIONS(1860), + [anon_sym___clrcall] = ACTIONS(1860), + [anon_sym___stdcall] = ACTIONS(1860), + [anon_sym___fastcall] = ACTIONS(1860), + [anon_sym___thiscall] = ACTIONS(1860), + [anon_sym___vectorcall] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_auto] = ACTIONS(1860), + [anon_sym_register] = ACTIONS(1860), + [anon_sym_inline] = ACTIONS(1860), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_volatile] = ACTIONS(1860), + [anon_sym_restrict] = ACTIONS(1860), + [anon_sym__Atomic] = ACTIONS(1860), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_out] = ACTIONS(1860), + [anon_sym_inout] = ACTIONS(1860), + [anon_sym_bycopy] = ACTIONS(1860), + [anon_sym_byref] = ACTIONS(1860), + [anon_sym_oneway] = ACTIONS(1860), + [anon_sym__Nullable] = ACTIONS(1860), + [anon_sym__Nonnull] = ACTIONS(1860), + [anon_sym__Nullable_result] = ACTIONS(1860), + [anon_sym__Null_unspecified] = ACTIONS(1860), + [anon_sym___autoreleasing] = ACTIONS(1860), + [anon_sym___nullable] = ACTIONS(1860), + [anon_sym___nonnull] = ACTIONS(1860), + [anon_sym___strong] = ACTIONS(1860), + [anon_sym___weak] = ACTIONS(1860), + [anon_sym___bridge] = ACTIONS(1860), + [anon_sym___bridge_transfer] = ACTIONS(1860), + [anon_sym___bridge_retained] = ACTIONS(1860), + [anon_sym___unsafe_unretained] = ACTIONS(1860), + [anon_sym___block] = ACTIONS(1860), + [anon_sym___kindof] = ACTIONS(1860), + [anon_sym___unused] = ACTIONS(1860), + [anon_sym__Complex] = ACTIONS(1860), + [anon_sym___complex] = ACTIONS(1860), + [anon_sym_IBOutlet] = ACTIONS(1860), + [anon_sym_IBInspectable] = ACTIONS(1860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1860), + [anon_sym_signed] = ACTIONS(1860), + [anon_sym_unsigned] = ACTIONS(1860), + [anon_sym_long] = ACTIONS(1860), + [anon_sym_short] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_union] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_switch] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_goto] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_sizeof] = ACTIONS(1860), + [sym_number_literal] = ACTIONS(1862), + [anon_sym_L_SQUOTE] = ACTIONS(1862), + [anon_sym_u_SQUOTE] = ACTIONS(1862), + [anon_sym_U_SQUOTE] = ACTIONS(1862), + [anon_sym_u8_SQUOTE] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_L_DQUOTE] = ACTIONS(1862), + [anon_sym_u_DQUOTE] = ACTIONS(1862), + [anon_sym_U_DQUOTE] = ACTIONS(1862), + [anon_sym_u8_DQUOTE] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [sym_true] = ACTIONS(1860), + [sym_false] = ACTIONS(1860), + [sym_null] = ACTIONS(1860), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1862), + [anon_sym_ATimport] = ACTIONS(1862), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1860), + [anon_sym_ATcompatibility_alias] = ACTIONS(1862), + [anon_sym_ATprotocol] = ACTIONS(1862), + [anon_sym_ATclass] = ACTIONS(1862), + [anon_sym_ATinterface] = ACTIONS(1862), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1860), + [sym_method_attribute_specifier] = ACTIONS(1860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE] = ACTIONS(1860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_API_AVAILABLE] = ACTIONS(1860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_API_DEPRECATED] = ACTIONS(1860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1860), + [anon_sym___deprecated_msg] = ACTIONS(1860), + [anon_sym___deprecated_enum_msg] = ACTIONS(1860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1860), + [anon_sym_ATimplementation] = ACTIONS(1862), + [anon_sym_NS_ENUM] = ACTIONS(1860), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1860), + [anon_sym_NS_OPTIONS] = ACTIONS(1860), + [anon_sym_typeof] = ACTIONS(1860), + [anon_sym___typeof] = ACTIONS(1860), + [anon_sym___typeof__] = ACTIONS(1860), + [sym_self] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_nil] = ACTIONS(1860), + [sym_id] = ACTIONS(1860), + [sym_instancetype] = ACTIONS(1860), + [sym_Class] = ACTIONS(1860), + [sym_SEL] = ACTIONS(1860), + [sym_IMP] = ACTIONS(1860), + [sym_BOOL] = ACTIONS(1860), + [sym_auto] = ACTIONS(1860), + [anon_sym_ATautoreleasepool] = ACTIONS(1862), + [anon_sym_ATsynchronized] = ACTIONS(1862), + [anon_sym_ATtry] = ACTIONS(1862), + [anon_sym_ATthrow] = ACTIONS(1862), + [anon_sym_ATselector] = ACTIONS(1862), + [anon_sym_ATencode] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1860), + [sym_YES] = ACTIONS(1860), + [sym_NO] = ACTIONS(1860), + [anon_sym___builtin_available] = ACTIONS(1860), + [anon_sym_ATavailable] = ACTIONS(1862), + [anon_sym_va_arg] = ACTIONS(1860), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1084] = { + [ts_builtin_sym_end] = ACTIONS(1926), + [sym_identifier] = ACTIONS(1924), + [aux_sym_preproc_include_token1] = ACTIONS(1926), + [aux_sym_preproc_def_token1] = ACTIONS(1926), + [aux_sym_preproc_if_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_CARET] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym___cdecl] = ACTIONS(1924), + [anon_sym___clrcall] = ACTIONS(1924), + [anon_sym___stdcall] = ACTIONS(1924), + [anon_sym___fastcall] = ACTIONS(1924), + [anon_sym___thiscall] = ACTIONS(1924), + [anon_sym___vectorcall] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_RBRACE] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_auto] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(1924), + [anon_sym_out] = ACTIONS(1924), + [anon_sym_inout] = ACTIONS(1924), + [anon_sym_bycopy] = ACTIONS(1924), + [anon_sym_byref] = ACTIONS(1924), + [anon_sym_oneway] = ACTIONS(1924), + [anon_sym__Nullable] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym__Nullable_result] = ACTIONS(1924), + [anon_sym__Null_unspecified] = ACTIONS(1924), + [anon_sym___autoreleasing] = ACTIONS(1924), + [anon_sym___nullable] = ACTIONS(1924), + [anon_sym___nonnull] = ACTIONS(1924), + [anon_sym___strong] = ACTIONS(1924), + [anon_sym___weak] = ACTIONS(1924), + [anon_sym___bridge] = ACTIONS(1924), + [anon_sym___bridge_transfer] = ACTIONS(1924), + [anon_sym___bridge_retained] = ACTIONS(1924), + [anon_sym___unsafe_unretained] = ACTIONS(1924), + [anon_sym___block] = ACTIONS(1924), + [anon_sym___kindof] = ACTIONS(1924), + [anon_sym___unused] = ACTIONS(1924), + [anon_sym__Complex] = ACTIONS(1924), + [anon_sym___complex] = ACTIONS(1924), + [anon_sym_IBOutlet] = ACTIONS(1924), + [anon_sym_IBInspectable] = ACTIONS(1924), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1924), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_switch] = ACTIONS(1924), + [anon_sym_case] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_do] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1924), + [sym_number_literal] = ACTIONS(1926), + [anon_sym_L_SQUOTE] = ACTIONS(1926), + [anon_sym_u_SQUOTE] = ACTIONS(1926), + [anon_sym_U_SQUOTE] = ACTIONS(1926), + [anon_sym_u8_SQUOTE] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_L_DQUOTE] = ACTIONS(1926), + [anon_sym_u_DQUOTE] = ACTIONS(1926), + [anon_sym_U_DQUOTE] = ACTIONS(1926), + [anon_sym_u8_DQUOTE] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [sym_true] = ACTIONS(1924), + [sym_false] = ACTIONS(1924), + [sym_null] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1926), + [anon_sym_ATimport] = ACTIONS(1926), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1924), + [anon_sym_ATcompatibility_alias] = ACTIONS(1926), + [anon_sym_ATprotocol] = ACTIONS(1926), + [anon_sym_ATclass] = ACTIONS(1926), + [anon_sym_ATinterface] = ACTIONS(1926), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1924), + [sym_method_attribute_specifier] = ACTIONS(1924), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1924), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE] = ACTIONS(1924), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_API_AVAILABLE] = ACTIONS(1924), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_API_DEPRECATED] = ACTIONS(1924), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1924), + [anon_sym___deprecated_msg] = ACTIONS(1924), + [anon_sym___deprecated_enum_msg] = ACTIONS(1924), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1924), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1924), + [anon_sym_ATimplementation] = ACTIONS(1926), + [anon_sym_NS_ENUM] = ACTIONS(1924), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1924), + [anon_sym_NS_OPTIONS] = ACTIONS(1924), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym___typeof] = ACTIONS(1924), + [anon_sym___typeof__] = ACTIONS(1924), + [sym_self] = ACTIONS(1924), + [sym_super] = ACTIONS(1924), + [sym_nil] = ACTIONS(1924), + [sym_id] = ACTIONS(1924), + [sym_instancetype] = ACTIONS(1924), + [sym_Class] = ACTIONS(1924), + [sym_SEL] = ACTIONS(1924), + [sym_IMP] = ACTIONS(1924), + [sym_BOOL] = ACTIONS(1924), + [sym_auto] = ACTIONS(1924), + [anon_sym_ATautoreleasepool] = ACTIONS(1926), + [anon_sym_ATsynchronized] = ACTIONS(1926), + [anon_sym_ATtry] = ACTIONS(1926), + [anon_sym_ATthrow] = ACTIONS(1926), + [anon_sym_ATselector] = ACTIONS(1926), + [anon_sym_ATencode] = ACTIONS(1926), + [anon_sym_AT] = ACTIONS(1924), + [sym_YES] = ACTIONS(1924), + [sym_NO] = ACTIONS(1924), + [anon_sym___builtin_available] = ACTIONS(1924), + [anon_sym_ATavailable] = ACTIONS(1926), + [anon_sym_va_arg] = ACTIONS(1924), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1085] = { + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_identifier] = ACTIONS(1860), + [aux_sym_preproc_include_token1] = ACTIONS(1862), + [aux_sym_preproc_def_token1] = ACTIONS(1862), + [aux_sym_preproc_if_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1860), + [anon_sym_LPAREN2] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_typedef] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym___attribute] = ACTIONS(1860), + [anon_sym___attribute__] = ACTIONS(1860), + [anon_sym___declspec] = ACTIONS(1860), + [anon_sym___cdecl] = ACTIONS(1860), + [anon_sym___clrcall] = ACTIONS(1860), + [anon_sym___stdcall] = ACTIONS(1860), + [anon_sym___fastcall] = ACTIONS(1860), + [anon_sym___thiscall] = ACTIONS(1860), + [anon_sym___vectorcall] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_auto] = ACTIONS(1860), + [anon_sym_register] = ACTIONS(1860), + [anon_sym_inline] = ACTIONS(1860), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_volatile] = ACTIONS(1860), + [anon_sym_restrict] = ACTIONS(1860), + [anon_sym__Atomic] = ACTIONS(1860), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_out] = ACTIONS(1860), + [anon_sym_inout] = ACTIONS(1860), + [anon_sym_bycopy] = ACTIONS(1860), + [anon_sym_byref] = ACTIONS(1860), + [anon_sym_oneway] = ACTIONS(1860), + [anon_sym__Nullable] = ACTIONS(1860), + [anon_sym__Nonnull] = ACTIONS(1860), + [anon_sym__Nullable_result] = ACTIONS(1860), + [anon_sym__Null_unspecified] = ACTIONS(1860), + [anon_sym___autoreleasing] = ACTIONS(1860), + [anon_sym___nullable] = ACTIONS(1860), + [anon_sym___nonnull] = ACTIONS(1860), + [anon_sym___strong] = ACTIONS(1860), + [anon_sym___weak] = ACTIONS(1860), + [anon_sym___bridge] = ACTIONS(1860), + [anon_sym___bridge_transfer] = ACTIONS(1860), + [anon_sym___bridge_retained] = ACTIONS(1860), + [anon_sym___unsafe_unretained] = ACTIONS(1860), + [anon_sym___block] = ACTIONS(1860), + [anon_sym___kindof] = ACTIONS(1860), + [anon_sym___unused] = ACTIONS(1860), + [anon_sym__Complex] = ACTIONS(1860), + [anon_sym___complex] = ACTIONS(1860), + [anon_sym_IBOutlet] = ACTIONS(1860), + [anon_sym_IBInspectable] = ACTIONS(1860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1860), + [anon_sym_signed] = ACTIONS(1860), + [anon_sym_unsigned] = ACTIONS(1860), + [anon_sym_long] = ACTIONS(1860), + [anon_sym_short] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_union] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_switch] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_goto] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_sizeof] = ACTIONS(1860), + [sym_number_literal] = ACTIONS(1862), + [anon_sym_L_SQUOTE] = ACTIONS(1862), + [anon_sym_u_SQUOTE] = ACTIONS(1862), + [anon_sym_U_SQUOTE] = ACTIONS(1862), + [anon_sym_u8_SQUOTE] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_L_DQUOTE] = ACTIONS(1862), + [anon_sym_u_DQUOTE] = ACTIONS(1862), + [anon_sym_U_DQUOTE] = ACTIONS(1862), + [anon_sym_u8_DQUOTE] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [sym_true] = ACTIONS(1860), + [sym_false] = ACTIONS(1860), + [sym_null] = ACTIONS(1860), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1862), + [anon_sym_ATimport] = ACTIONS(1862), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1860), + [anon_sym_ATcompatibility_alias] = ACTIONS(1862), + [anon_sym_ATprotocol] = ACTIONS(1862), + [anon_sym_ATclass] = ACTIONS(1862), + [anon_sym_ATinterface] = ACTIONS(1862), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1860), + [sym_method_attribute_specifier] = ACTIONS(1860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE] = ACTIONS(1860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_API_AVAILABLE] = ACTIONS(1860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_API_DEPRECATED] = ACTIONS(1860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1860), + [anon_sym___deprecated_msg] = ACTIONS(1860), + [anon_sym___deprecated_enum_msg] = ACTIONS(1860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1860), + [anon_sym_ATimplementation] = ACTIONS(1862), + [anon_sym_NS_ENUM] = ACTIONS(1860), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1860), + [anon_sym_NS_OPTIONS] = ACTIONS(1860), + [anon_sym_typeof] = ACTIONS(1860), + [anon_sym___typeof] = ACTIONS(1860), + [anon_sym___typeof__] = ACTIONS(1860), + [sym_self] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_nil] = ACTIONS(1860), + [sym_id] = ACTIONS(1860), + [sym_instancetype] = ACTIONS(1860), + [sym_Class] = ACTIONS(1860), + [sym_SEL] = ACTIONS(1860), + [sym_IMP] = ACTIONS(1860), + [sym_BOOL] = ACTIONS(1860), + [sym_auto] = ACTIONS(1860), + [anon_sym_ATautoreleasepool] = ACTIONS(1862), + [anon_sym_ATsynchronized] = ACTIONS(1862), + [anon_sym_ATtry] = ACTIONS(1862), + [anon_sym_ATthrow] = ACTIONS(1862), + [anon_sym_ATselector] = ACTIONS(1862), + [anon_sym_ATencode] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1860), + [sym_YES] = ACTIONS(1860), + [sym_NO] = ACTIONS(1860), + [anon_sym___builtin_available] = ACTIONS(1860), + [anon_sym_ATavailable] = ACTIONS(1862), + [anon_sym_va_arg] = ACTIONS(1860), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1086] = { + [ts_builtin_sym_end] = ACTIONS(1922), + [sym_identifier] = ACTIONS(1920), + [aux_sym_preproc_include_token1] = ACTIONS(1922), + [aux_sym_preproc_def_token1] = ACTIONS(1922), + [aux_sym_preproc_if_token1] = ACTIONS(1920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1920), + [anon_sym_LPAREN2] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(1922), + [anon_sym_TILDE] = ACTIONS(1922), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(1922), + [anon_sym_CARET] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_typedef] = ACTIONS(1920), + [anon_sym_extern] = ACTIONS(1920), + [anon_sym___attribute] = ACTIONS(1920), + [anon_sym___attribute__] = ACTIONS(1920), + [anon_sym___declspec] = ACTIONS(1920), + [anon_sym___cdecl] = ACTIONS(1920), + [anon_sym___clrcall] = ACTIONS(1920), + [anon_sym___stdcall] = ACTIONS(1920), + [anon_sym___fastcall] = ACTIONS(1920), + [anon_sym___thiscall] = ACTIONS(1920), + [anon_sym___vectorcall] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_RBRACE] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_static] = ACTIONS(1920), + [anon_sym_auto] = ACTIONS(1920), + [anon_sym_register] = ACTIONS(1920), + [anon_sym_inline] = ACTIONS(1920), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1920), + [anon_sym_const] = ACTIONS(1920), + [anon_sym_volatile] = ACTIONS(1920), + [anon_sym_restrict] = ACTIONS(1920), + [anon_sym__Atomic] = ACTIONS(1920), + [anon_sym_in] = ACTIONS(1920), + [anon_sym_out] = ACTIONS(1920), + [anon_sym_inout] = ACTIONS(1920), + [anon_sym_bycopy] = ACTIONS(1920), + [anon_sym_byref] = ACTIONS(1920), + [anon_sym_oneway] = ACTIONS(1920), + [anon_sym__Nullable] = ACTIONS(1920), + [anon_sym__Nonnull] = ACTIONS(1920), + [anon_sym__Nullable_result] = ACTIONS(1920), + [anon_sym__Null_unspecified] = ACTIONS(1920), + [anon_sym___autoreleasing] = ACTIONS(1920), + [anon_sym___nullable] = ACTIONS(1920), + [anon_sym___nonnull] = ACTIONS(1920), + [anon_sym___strong] = ACTIONS(1920), + [anon_sym___weak] = ACTIONS(1920), + [anon_sym___bridge] = ACTIONS(1920), + [anon_sym___bridge_transfer] = ACTIONS(1920), + [anon_sym___bridge_retained] = ACTIONS(1920), + [anon_sym___unsafe_unretained] = ACTIONS(1920), + [anon_sym___block] = ACTIONS(1920), + [anon_sym___kindof] = ACTIONS(1920), + [anon_sym___unused] = ACTIONS(1920), + [anon_sym__Complex] = ACTIONS(1920), + [anon_sym___complex] = ACTIONS(1920), + [anon_sym_IBOutlet] = ACTIONS(1920), + [anon_sym_IBInspectable] = ACTIONS(1920), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1920), + [anon_sym_signed] = ACTIONS(1920), + [anon_sym_unsigned] = ACTIONS(1920), + [anon_sym_long] = ACTIONS(1920), + [anon_sym_short] = ACTIONS(1920), + [sym_primitive_type] = ACTIONS(1920), + [anon_sym_enum] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1920), + [anon_sym_union] = ACTIONS(1920), + [anon_sym_if] = ACTIONS(1920), + [anon_sym_switch] = ACTIONS(1920), + [anon_sym_case] = ACTIONS(1920), + [anon_sym_default] = ACTIONS(1920), + [anon_sym_while] = ACTIONS(1920), + [anon_sym_do] = ACTIONS(1920), + [anon_sym_for] = ACTIONS(1920), + [anon_sym_return] = ACTIONS(1920), + [anon_sym_break] = ACTIONS(1920), + [anon_sym_continue] = ACTIONS(1920), + [anon_sym_goto] = ACTIONS(1920), + [anon_sym_DASH_DASH] = ACTIONS(1922), + [anon_sym_PLUS_PLUS] = ACTIONS(1922), + [anon_sym_sizeof] = ACTIONS(1920), + [sym_number_literal] = ACTIONS(1922), + [anon_sym_L_SQUOTE] = ACTIONS(1922), + [anon_sym_u_SQUOTE] = ACTIONS(1922), + [anon_sym_U_SQUOTE] = ACTIONS(1922), + [anon_sym_u8_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_L_DQUOTE] = ACTIONS(1922), + [anon_sym_u_DQUOTE] = ACTIONS(1922), + [anon_sym_U_DQUOTE] = ACTIONS(1922), + [anon_sym_u8_DQUOTE] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1922), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [sym_null] = ACTIONS(1920), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1922), + [anon_sym_ATimport] = ACTIONS(1922), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1920), + [anon_sym_ATcompatibility_alias] = ACTIONS(1922), + [anon_sym_ATprotocol] = ACTIONS(1922), + [anon_sym_ATclass] = ACTIONS(1922), + [anon_sym_ATinterface] = ACTIONS(1922), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1920), + [sym_method_attribute_specifier] = ACTIONS(1920), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1920), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1920), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1920), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1920), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1920), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1920), + [anon_sym_NS_AVAILABLE] = ACTIONS(1920), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1920), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1920), + [anon_sym_API_AVAILABLE] = ACTIONS(1920), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1920), + [anon_sym_API_DEPRECATED] = ACTIONS(1920), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1920), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1920), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1920), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1920), + [anon_sym___deprecated_msg] = ACTIONS(1920), + [anon_sym___deprecated_enum_msg] = ACTIONS(1920), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1920), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1920), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1920), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1920), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1920), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1920), + [anon_sym_ATimplementation] = ACTIONS(1922), + [anon_sym_NS_ENUM] = ACTIONS(1920), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1920), + [anon_sym_NS_OPTIONS] = ACTIONS(1920), + [anon_sym_typeof] = ACTIONS(1920), + [anon_sym___typeof] = ACTIONS(1920), + [anon_sym___typeof__] = ACTIONS(1920), + [sym_self] = ACTIONS(1920), + [sym_super] = ACTIONS(1920), + [sym_nil] = ACTIONS(1920), + [sym_id] = ACTIONS(1920), + [sym_instancetype] = ACTIONS(1920), + [sym_Class] = ACTIONS(1920), + [sym_SEL] = ACTIONS(1920), + [sym_IMP] = ACTIONS(1920), + [sym_BOOL] = ACTIONS(1920), + [sym_auto] = ACTIONS(1920), + [anon_sym_ATautoreleasepool] = ACTIONS(1922), + [anon_sym_ATsynchronized] = ACTIONS(1922), + [anon_sym_ATtry] = ACTIONS(1922), + [anon_sym_ATthrow] = ACTIONS(1922), + [anon_sym_ATselector] = ACTIONS(1922), + [anon_sym_ATencode] = ACTIONS(1922), + [anon_sym_AT] = ACTIONS(1920), + [sym_YES] = ACTIONS(1920), + [sym_NO] = ACTIONS(1920), + [anon_sym___builtin_available] = ACTIONS(1920), + [anon_sym_ATavailable] = ACTIONS(1922), + [anon_sym_va_arg] = ACTIONS(1920), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1087] = { + [ts_builtin_sym_end] = ACTIONS(1866), + [sym_identifier] = ACTIONS(1864), + [aux_sym_preproc_include_token1] = ACTIONS(1866), + [aux_sym_preproc_def_token1] = ACTIONS(1866), + [aux_sym_preproc_if_token1] = ACTIONS(1864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1864), + [anon_sym_LPAREN2] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1864), + [anon_sym_PLUS] = ACTIONS(1864), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym_AMP] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_typedef] = ACTIONS(1864), + [anon_sym_extern] = ACTIONS(1864), + [anon_sym___attribute] = ACTIONS(1864), + [anon_sym___attribute__] = ACTIONS(1864), + [anon_sym___declspec] = ACTIONS(1864), + [anon_sym___cdecl] = ACTIONS(1864), + [anon_sym___clrcall] = ACTIONS(1864), + [anon_sym___stdcall] = ACTIONS(1864), + [anon_sym___fastcall] = ACTIONS(1864), + [anon_sym___thiscall] = ACTIONS(1864), + [anon_sym___vectorcall] = ACTIONS(1864), + [anon_sym_LBRACE] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_LBRACK] = ACTIONS(1866), + [anon_sym_static] = ACTIONS(1864), + [anon_sym_auto] = ACTIONS(1864), + [anon_sym_register] = ACTIONS(1864), + [anon_sym_inline] = ACTIONS(1864), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1864), + [anon_sym_const] = ACTIONS(1864), + [anon_sym_volatile] = ACTIONS(1864), + [anon_sym_restrict] = ACTIONS(1864), + [anon_sym__Atomic] = ACTIONS(1864), + [anon_sym_in] = ACTIONS(1864), + [anon_sym_out] = ACTIONS(1864), + [anon_sym_inout] = ACTIONS(1864), + [anon_sym_bycopy] = ACTIONS(1864), + [anon_sym_byref] = ACTIONS(1864), + [anon_sym_oneway] = ACTIONS(1864), + [anon_sym__Nullable] = ACTIONS(1864), + [anon_sym__Nonnull] = ACTIONS(1864), + [anon_sym__Nullable_result] = ACTIONS(1864), + [anon_sym__Null_unspecified] = ACTIONS(1864), + [anon_sym___autoreleasing] = ACTIONS(1864), + [anon_sym___nullable] = ACTIONS(1864), + [anon_sym___nonnull] = ACTIONS(1864), + [anon_sym___strong] = ACTIONS(1864), + [anon_sym___weak] = ACTIONS(1864), + [anon_sym___bridge] = ACTIONS(1864), + [anon_sym___bridge_transfer] = ACTIONS(1864), + [anon_sym___bridge_retained] = ACTIONS(1864), + [anon_sym___unsafe_unretained] = ACTIONS(1864), + [anon_sym___block] = ACTIONS(1864), + [anon_sym___kindof] = ACTIONS(1864), + [anon_sym___unused] = ACTIONS(1864), + [anon_sym__Complex] = ACTIONS(1864), + [anon_sym___complex] = ACTIONS(1864), + [anon_sym_IBOutlet] = ACTIONS(1864), + [anon_sym_IBInspectable] = ACTIONS(1864), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1864), + [anon_sym_signed] = ACTIONS(1864), + [anon_sym_unsigned] = ACTIONS(1864), + [anon_sym_long] = ACTIONS(1864), + [anon_sym_short] = ACTIONS(1864), + [sym_primitive_type] = ACTIONS(1864), + [anon_sym_enum] = ACTIONS(1864), + [anon_sym_struct] = ACTIONS(1864), + [anon_sym_union] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_switch] = ACTIONS(1864), + [anon_sym_case] = ACTIONS(1864), + [anon_sym_default] = ACTIONS(1864), + [anon_sym_while] = ACTIONS(1864), + [anon_sym_do] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_break] = ACTIONS(1864), + [anon_sym_continue] = ACTIONS(1864), + [anon_sym_goto] = ACTIONS(1864), + [anon_sym_DASH_DASH] = ACTIONS(1866), + [anon_sym_PLUS_PLUS] = ACTIONS(1866), + [anon_sym_sizeof] = ACTIONS(1864), + [sym_number_literal] = ACTIONS(1866), + [anon_sym_L_SQUOTE] = ACTIONS(1866), + [anon_sym_u_SQUOTE] = ACTIONS(1866), + [anon_sym_U_SQUOTE] = ACTIONS(1866), + [anon_sym_u8_SQUOTE] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_L_DQUOTE] = ACTIONS(1866), + [anon_sym_u_DQUOTE] = ACTIONS(1866), + [anon_sym_U_DQUOTE] = ACTIONS(1866), + [anon_sym_u8_DQUOTE] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [sym_true] = ACTIONS(1864), + [sym_false] = ACTIONS(1864), + [sym_null] = ACTIONS(1864), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1866), + [anon_sym_ATimport] = ACTIONS(1866), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1864), + [anon_sym_ATcompatibility_alias] = ACTIONS(1866), + [anon_sym_ATprotocol] = ACTIONS(1866), + [anon_sym_ATclass] = ACTIONS(1866), + [anon_sym_ATinterface] = ACTIONS(1866), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1864), + [sym_method_attribute_specifier] = ACTIONS(1864), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1864), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1864), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1864), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1864), + [anon_sym_NS_AVAILABLE] = ACTIONS(1864), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1864), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1864), + [anon_sym_API_AVAILABLE] = ACTIONS(1864), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1864), + [anon_sym_API_DEPRECATED] = ACTIONS(1864), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1864), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1864), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1864), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1864), + [anon_sym___deprecated_msg] = ACTIONS(1864), + [anon_sym___deprecated_enum_msg] = ACTIONS(1864), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1864), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1864), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1864), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1864), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1864), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1864), + [anon_sym_ATimplementation] = ACTIONS(1866), + [anon_sym_NS_ENUM] = ACTIONS(1864), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1864), + [anon_sym_NS_OPTIONS] = ACTIONS(1864), + [anon_sym_typeof] = ACTIONS(1864), + [anon_sym___typeof] = ACTIONS(1864), + [anon_sym___typeof__] = ACTIONS(1864), + [sym_self] = ACTIONS(1864), + [sym_super] = ACTIONS(1864), + [sym_nil] = ACTIONS(1864), + [sym_id] = ACTIONS(1864), + [sym_instancetype] = ACTIONS(1864), + [sym_Class] = ACTIONS(1864), + [sym_SEL] = ACTIONS(1864), + [sym_IMP] = ACTIONS(1864), + [sym_BOOL] = ACTIONS(1864), + [sym_auto] = ACTIONS(1864), + [anon_sym_ATautoreleasepool] = ACTIONS(1866), + [anon_sym_ATsynchronized] = ACTIONS(1866), + [anon_sym_ATtry] = ACTIONS(1866), + [anon_sym_ATthrow] = ACTIONS(1866), + [anon_sym_ATselector] = ACTIONS(1866), + [anon_sym_ATencode] = ACTIONS(1866), + [anon_sym_AT] = ACTIONS(1864), + [sym_YES] = ACTIONS(1864), + [sym_NO] = ACTIONS(1864), + [anon_sym___builtin_available] = ACTIONS(1864), + [anon_sym_ATavailable] = ACTIONS(1866), + [anon_sym_va_arg] = ACTIONS(1864), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1088] = { + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1089] = { + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1090] = { + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1091] = { + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1092] = { + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1093] = { + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1094] = { + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1095] = { + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1096] = { + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1097] = { + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1098] = { + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1099] = { + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1100] = { + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1101] = { + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1102] = { + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1103] = { + [ts_builtin_sym_end] = ACTIONS(1918), + [sym_identifier] = ACTIONS(1916), + [aux_sym_preproc_include_token1] = ACTIONS(1918), + [aux_sym_preproc_def_token1] = ACTIONS(1918), + [aux_sym_preproc_if_token1] = ACTIONS(1916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1916), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_TILDE] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_typedef] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1916), + [anon_sym___attribute] = ACTIONS(1916), + [anon_sym___attribute__] = ACTIONS(1916), + [anon_sym___declspec] = ACTIONS(1916), + [anon_sym___cdecl] = ACTIONS(1916), + [anon_sym___clrcall] = ACTIONS(1916), + [anon_sym___stdcall] = ACTIONS(1916), + [anon_sym___fastcall] = ACTIONS(1916), + [anon_sym___thiscall] = ACTIONS(1916), + [anon_sym___vectorcall] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_RBRACE] = ACTIONS(1918), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_auto] = ACTIONS(1916), + [anon_sym_register] = ACTIONS(1916), + [anon_sym_inline] = ACTIONS(1916), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1916), + [anon_sym_const] = ACTIONS(1916), + [anon_sym_volatile] = ACTIONS(1916), + [anon_sym_restrict] = ACTIONS(1916), + [anon_sym__Atomic] = ACTIONS(1916), + [anon_sym_in] = ACTIONS(1916), + [anon_sym_out] = ACTIONS(1916), + [anon_sym_inout] = ACTIONS(1916), + [anon_sym_bycopy] = ACTIONS(1916), + [anon_sym_byref] = ACTIONS(1916), + [anon_sym_oneway] = ACTIONS(1916), + [anon_sym__Nullable] = ACTIONS(1916), + [anon_sym__Nonnull] = ACTIONS(1916), + [anon_sym__Nullable_result] = ACTIONS(1916), + [anon_sym__Null_unspecified] = ACTIONS(1916), + [anon_sym___autoreleasing] = ACTIONS(1916), + [anon_sym___nullable] = ACTIONS(1916), + [anon_sym___nonnull] = ACTIONS(1916), + [anon_sym___strong] = ACTIONS(1916), + [anon_sym___weak] = ACTIONS(1916), + [anon_sym___bridge] = ACTIONS(1916), + [anon_sym___bridge_transfer] = ACTIONS(1916), + [anon_sym___bridge_retained] = ACTIONS(1916), + [anon_sym___unsafe_unretained] = ACTIONS(1916), + [anon_sym___block] = ACTIONS(1916), + [anon_sym___kindof] = ACTIONS(1916), + [anon_sym___unused] = ACTIONS(1916), + [anon_sym__Complex] = ACTIONS(1916), + [anon_sym___complex] = ACTIONS(1916), + [anon_sym_IBOutlet] = ACTIONS(1916), + [anon_sym_IBInspectable] = ACTIONS(1916), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1916), + [anon_sym_signed] = ACTIONS(1916), + [anon_sym_unsigned] = ACTIONS(1916), + [anon_sym_long] = ACTIONS(1916), + [anon_sym_short] = ACTIONS(1916), + [sym_primitive_type] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1916), + [anon_sym_struct] = ACTIONS(1916), + [anon_sym_union] = ACTIONS(1916), + [anon_sym_if] = ACTIONS(1916), + [anon_sym_switch] = ACTIONS(1916), + [anon_sym_case] = ACTIONS(1916), + [anon_sym_default] = ACTIONS(1916), + [anon_sym_while] = ACTIONS(1916), + [anon_sym_do] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1916), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_break] = ACTIONS(1916), + [anon_sym_continue] = ACTIONS(1916), + [anon_sym_goto] = ACTIONS(1916), + [anon_sym_DASH_DASH] = ACTIONS(1918), + [anon_sym_PLUS_PLUS] = ACTIONS(1918), + [anon_sym_sizeof] = ACTIONS(1916), + [sym_number_literal] = ACTIONS(1918), + [anon_sym_L_SQUOTE] = ACTIONS(1918), + [anon_sym_u_SQUOTE] = ACTIONS(1918), + [anon_sym_U_SQUOTE] = ACTIONS(1918), + [anon_sym_u8_SQUOTE] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1916), + [sym_false] = ACTIONS(1916), + [sym_null] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1918), + [anon_sym_ATimport] = ACTIONS(1918), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1916), + [anon_sym_ATcompatibility_alias] = ACTIONS(1918), + [anon_sym_ATprotocol] = ACTIONS(1918), + [anon_sym_ATclass] = ACTIONS(1918), + [anon_sym_ATinterface] = ACTIONS(1918), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1916), + [sym_method_attribute_specifier] = ACTIONS(1916), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1916), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1916), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1916), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1916), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1916), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1916), + [anon_sym_NS_AVAILABLE] = ACTIONS(1916), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1916), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1916), + [anon_sym_API_AVAILABLE] = ACTIONS(1916), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1916), + [anon_sym_API_DEPRECATED] = ACTIONS(1916), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1916), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1916), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1916), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1916), + [anon_sym___deprecated_msg] = ACTIONS(1916), + [anon_sym___deprecated_enum_msg] = ACTIONS(1916), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1916), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1916), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1916), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1916), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1916), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1916), + [anon_sym_ATimplementation] = ACTIONS(1918), + [anon_sym_NS_ENUM] = ACTIONS(1916), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1916), + [anon_sym_NS_OPTIONS] = ACTIONS(1916), + [anon_sym_typeof] = ACTIONS(1916), + [anon_sym___typeof] = ACTIONS(1916), + [anon_sym___typeof__] = ACTIONS(1916), + [sym_self] = ACTIONS(1916), + [sym_super] = ACTIONS(1916), + [sym_nil] = ACTIONS(1916), + [sym_id] = ACTIONS(1916), + [sym_instancetype] = ACTIONS(1916), + [sym_Class] = ACTIONS(1916), + [sym_SEL] = ACTIONS(1916), + [sym_IMP] = ACTIONS(1916), + [sym_BOOL] = ACTIONS(1916), + [sym_auto] = ACTIONS(1916), + [anon_sym_ATautoreleasepool] = ACTIONS(1918), + [anon_sym_ATsynchronized] = ACTIONS(1918), + [anon_sym_ATtry] = ACTIONS(1918), + [anon_sym_ATthrow] = ACTIONS(1918), + [anon_sym_ATselector] = ACTIONS(1918), + [anon_sym_ATencode] = ACTIONS(1918), + [anon_sym_AT] = ACTIONS(1916), + [sym_YES] = ACTIONS(1916), + [sym_NO] = ACTIONS(1916), + [anon_sym___builtin_available] = ACTIONS(1916), + [anon_sym_ATavailable] = ACTIONS(1918), + [anon_sym_va_arg] = ACTIONS(1916), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1104] = { + [ts_builtin_sym_end] = ACTIONS(1914), + [sym_identifier] = ACTIONS(1912), + [aux_sym_preproc_include_token1] = ACTIONS(1914), + [aux_sym_preproc_def_token1] = ACTIONS(1914), + [aux_sym_preproc_if_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1912), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_CARET] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym___attribute] = ACTIONS(1912), + [anon_sym___attribute__] = ACTIONS(1912), + [anon_sym___declspec] = ACTIONS(1912), + [anon_sym___cdecl] = ACTIONS(1912), + [anon_sym___clrcall] = ACTIONS(1912), + [anon_sym___stdcall] = ACTIONS(1912), + [anon_sym___fastcall] = ACTIONS(1912), + [anon_sym___thiscall] = ACTIONS(1912), + [anon_sym___vectorcall] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_auto] = ACTIONS(1912), + [anon_sym_register] = ACTIONS(1912), + [anon_sym_inline] = ACTIONS(1912), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_volatile] = ACTIONS(1912), + [anon_sym_restrict] = ACTIONS(1912), + [anon_sym__Atomic] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1912), + [anon_sym_out] = ACTIONS(1912), + [anon_sym_inout] = ACTIONS(1912), + [anon_sym_bycopy] = ACTIONS(1912), + [anon_sym_byref] = ACTIONS(1912), + [anon_sym_oneway] = ACTIONS(1912), + [anon_sym__Nullable] = ACTIONS(1912), + [anon_sym__Nonnull] = ACTIONS(1912), + [anon_sym__Nullable_result] = ACTIONS(1912), + [anon_sym__Null_unspecified] = ACTIONS(1912), + [anon_sym___autoreleasing] = ACTIONS(1912), + [anon_sym___nullable] = ACTIONS(1912), + [anon_sym___nonnull] = ACTIONS(1912), + [anon_sym___strong] = ACTIONS(1912), + [anon_sym___weak] = ACTIONS(1912), + [anon_sym___bridge] = ACTIONS(1912), + [anon_sym___bridge_transfer] = ACTIONS(1912), + [anon_sym___bridge_retained] = ACTIONS(1912), + [anon_sym___unsafe_unretained] = ACTIONS(1912), + [anon_sym___block] = ACTIONS(1912), + [anon_sym___kindof] = ACTIONS(1912), + [anon_sym___unused] = ACTIONS(1912), + [anon_sym__Complex] = ACTIONS(1912), + [anon_sym___complex] = ACTIONS(1912), + [anon_sym_IBOutlet] = ACTIONS(1912), + [anon_sym_IBInspectable] = ACTIONS(1912), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1912), + [anon_sym_signed] = ACTIONS(1912), + [anon_sym_unsigned] = ACTIONS(1912), + [anon_sym_long] = ACTIONS(1912), + [anon_sym_short] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_switch] = ACTIONS(1912), + [anon_sym_case] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_do] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_goto] = ACTIONS(1912), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_sizeof] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1914), + [anon_sym_u_SQUOTE] = ACTIONS(1914), + [anon_sym_U_SQUOTE] = ACTIONS(1914), + [anon_sym_u8_SQUOTE] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_L_DQUOTE] = ACTIONS(1914), + [anon_sym_u_DQUOTE] = ACTIONS(1914), + [anon_sym_U_DQUOTE] = ACTIONS(1914), + [anon_sym_u8_DQUOTE] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_true] = ACTIONS(1912), + [sym_false] = ACTIONS(1912), + [sym_null] = ACTIONS(1912), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1914), + [anon_sym_ATimport] = ACTIONS(1914), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1912), + [anon_sym_ATcompatibility_alias] = ACTIONS(1914), + [anon_sym_ATprotocol] = ACTIONS(1914), + [anon_sym_ATclass] = ACTIONS(1914), + [anon_sym_ATinterface] = ACTIONS(1914), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1912), + [sym_method_attribute_specifier] = ACTIONS(1912), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1912), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE] = ACTIONS(1912), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_API_AVAILABLE] = ACTIONS(1912), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_API_DEPRECATED] = ACTIONS(1912), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1912), + [anon_sym___deprecated_msg] = ACTIONS(1912), + [anon_sym___deprecated_enum_msg] = ACTIONS(1912), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1912), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1912), + [anon_sym_ATimplementation] = ACTIONS(1914), + [anon_sym_NS_ENUM] = ACTIONS(1912), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1912), + [anon_sym_NS_OPTIONS] = ACTIONS(1912), + [anon_sym_typeof] = ACTIONS(1912), + [anon_sym___typeof] = ACTIONS(1912), + [anon_sym___typeof__] = ACTIONS(1912), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_nil] = ACTIONS(1912), + [sym_id] = ACTIONS(1912), + [sym_instancetype] = ACTIONS(1912), + [sym_Class] = ACTIONS(1912), + [sym_SEL] = ACTIONS(1912), + [sym_IMP] = ACTIONS(1912), + [sym_BOOL] = ACTIONS(1912), + [sym_auto] = ACTIONS(1912), + [anon_sym_ATautoreleasepool] = ACTIONS(1914), + [anon_sym_ATsynchronized] = ACTIONS(1914), + [anon_sym_ATtry] = ACTIONS(1914), + [anon_sym_ATthrow] = ACTIONS(1914), + [anon_sym_ATselector] = ACTIONS(1914), + [anon_sym_ATencode] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1912), + [sym_YES] = ACTIONS(1912), + [sym_NO] = ACTIONS(1912), + [anon_sym___builtin_available] = ACTIONS(1912), + [anon_sym_ATavailable] = ACTIONS(1914), + [anon_sym_va_arg] = ACTIONS(1912), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1105] = { + [ts_builtin_sym_end] = ACTIONS(1914), + [sym_identifier] = ACTIONS(1912), + [aux_sym_preproc_include_token1] = ACTIONS(1914), + [aux_sym_preproc_def_token1] = ACTIONS(1914), + [aux_sym_preproc_if_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1912), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_CARET] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym___attribute] = ACTIONS(1912), + [anon_sym___attribute__] = ACTIONS(1912), + [anon_sym___declspec] = ACTIONS(1912), + [anon_sym___cdecl] = ACTIONS(1912), + [anon_sym___clrcall] = ACTIONS(1912), + [anon_sym___stdcall] = ACTIONS(1912), + [anon_sym___fastcall] = ACTIONS(1912), + [anon_sym___thiscall] = ACTIONS(1912), + [anon_sym___vectorcall] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_auto] = ACTIONS(1912), + [anon_sym_register] = ACTIONS(1912), + [anon_sym_inline] = ACTIONS(1912), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_volatile] = ACTIONS(1912), + [anon_sym_restrict] = ACTIONS(1912), + [anon_sym__Atomic] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1912), + [anon_sym_out] = ACTIONS(1912), + [anon_sym_inout] = ACTIONS(1912), + [anon_sym_bycopy] = ACTIONS(1912), + [anon_sym_byref] = ACTIONS(1912), + [anon_sym_oneway] = ACTIONS(1912), + [anon_sym__Nullable] = ACTIONS(1912), + [anon_sym__Nonnull] = ACTIONS(1912), + [anon_sym__Nullable_result] = ACTIONS(1912), + [anon_sym__Null_unspecified] = ACTIONS(1912), + [anon_sym___autoreleasing] = ACTIONS(1912), + [anon_sym___nullable] = ACTIONS(1912), + [anon_sym___nonnull] = ACTIONS(1912), + [anon_sym___strong] = ACTIONS(1912), + [anon_sym___weak] = ACTIONS(1912), + [anon_sym___bridge] = ACTIONS(1912), + [anon_sym___bridge_transfer] = ACTIONS(1912), + [anon_sym___bridge_retained] = ACTIONS(1912), + [anon_sym___unsafe_unretained] = ACTIONS(1912), + [anon_sym___block] = ACTIONS(1912), + [anon_sym___kindof] = ACTIONS(1912), + [anon_sym___unused] = ACTIONS(1912), + [anon_sym__Complex] = ACTIONS(1912), + [anon_sym___complex] = ACTIONS(1912), + [anon_sym_IBOutlet] = ACTIONS(1912), + [anon_sym_IBInspectable] = ACTIONS(1912), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1912), + [anon_sym_signed] = ACTIONS(1912), + [anon_sym_unsigned] = ACTIONS(1912), + [anon_sym_long] = ACTIONS(1912), + [anon_sym_short] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_switch] = ACTIONS(1912), + [anon_sym_case] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_do] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_goto] = ACTIONS(1912), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_sizeof] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1914), + [anon_sym_u_SQUOTE] = ACTIONS(1914), + [anon_sym_U_SQUOTE] = ACTIONS(1914), + [anon_sym_u8_SQUOTE] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_L_DQUOTE] = ACTIONS(1914), + [anon_sym_u_DQUOTE] = ACTIONS(1914), + [anon_sym_U_DQUOTE] = ACTIONS(1914), + [anon_sym_u8_DQUOTE] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_true] = ACTIONS(1912), + [sym_false] = ACTIONS(1912), + [sym_null] = ACTIONS(1912), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1914), + [anon_sym_ATimport] = ACTIONS(1914), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1912), + [anon_sym_ATcompatibility_alias] = ACTIONS(1914), + [anon_sym_ATprotocol] = ACTIONS(1914), + [anon_sym_ATclass] = ACTIONS(1914), + [anon_sym_ATinterface] = ACTIONS(1914), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1912), + [sym_method_attribute_specifier] = ACTIONS(1912), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1912), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE] = ACTIONS(1912), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_API_AVAILABLE] = ACTIONS(1912), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_API_DEPRECATED] = ACTIONS(1912), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1912), + [anon_sym___deprecated_msg] = ACTIONS(1912), + [anon_sym___deprecated_enum_msg] = ACTIONS(1912), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1912), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1912), + [anon_sym_ATimplementation] = ACTIONS(1914), + [anon_sym_NS_ENUM] = ACTIONS(1912), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1912), + [anon_sym_NS_OPTIONS] = ACTIONS(1912), + [anon_sym_typeof] = ACTIONS(1912), + [anon_sym___typeof] = ACTIONS(1912), + [anon_sym___typeof__] = ACTIONS(1912), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_nil] = ACTIONS(1912), + [sym_id] = ACTIONS(1912), + [sym_instancetype] = ACTIONS(1912), + [sym_Class] = ACTIONS(1912), + [sym_SEL] = ACTIONS(1912), + [sym_IMP] = ACTIONS(1912), + [sym_BOOL] = ACTIONS(1912), + [sym_auto] = ACTIONS(1912), + [anon_sym_ATautoreleasepool] = ACTIONS(1914), + [anon_sym_ATsynchronized] = ACTIONS(1914), + [anon_sym_ATtry] = ACTIONS(1914), + [anon_sym_ATthrow] = ACTIONS(1914), + [anon_sym_ATselector] = ACTIONS(1914), + [anon_sym_ATencode] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1912), + [sym_YES] = ACTIONS(1912), + [sym_NO] = ACTIONS(1912), + [anon_sym___builtin_available] = ACTIONS(1912), + [anon_sym_ATavailable] = ACTIONS(1914), + [anon_sym_va_arg] = ACTIONS(1912), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1106] = { + [ts_builtin_sym_end] = ACTIONS(1682), + [sym_identifier] = ACTIONS(1680), + [aux_sym_preproc_include_token1] = ACTIONS(1682), + [aux_sym_preproc_def_token1] = ACTIONS(1682), + [aux_sym_preproc_if_token1] = ACTIONS(1680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1680), + [anon_sym_LPAREN2] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_TILDE] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_CARET] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_typedef] = ACTIONS(1680), + [anon_sym_extern] = ACTIONS(1680), + [anon_sym___attribute] = ACTIONS(1680), + [anon_sym___attribute__] = ACTIONS(1680), + [anon_sym___declspec] = ACTIONS(1680), + [anon_sym___cdecl] = ACTIONS(1680), + [anon_sym___clrcall] = ACTIONS(1680), + [anon_sym___stdcall] = ACTIONS(1680), + [anon_sym___fastcall] = ACTIONS(1680), + [anon_sym___thiscall] = ACTIONS(1680), + [anon_sym___vectorcall] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_RBRACE] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_static] = ACTIONS(1680), + [anon_sym_auto] = ACTIONS(1680), + [anon_sym_register] = ACTIONS(1680), + [anon_sym_inline] = ACTIONS(1680), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1680), + [anon_sym_const] = ACTIONS(1680), + [anon_sym_volatile] = ACTIONS(1680), + [anon_sym_restrict] = ACTIONS(1680), + [anon_sym__Atomic] = ACTIONS(1680), + [anon_sym_in] = ACTIONS(1680), + [anon_sym_out] = ACTIONS(1680), + [anon_sym_inout] = ACTIONS(1680), + [anon_sym_bycopy] = ACTIONS(1680), + [anon_sym_byref] = ACTIONS(1680), + [anon_sym_oneway] = ACTIONS(1680), + [anon_sym__Nullable] = ACTIONS(1680), + [anon_sym__Nonnull] = ACTIONS(1680), + [anon_sym__Nullable_result] = ACTIONS(1680), + [anon_sym__Null_unspecified] = ACTIONS(1680), + [anon_sym___autoreleasing] = ACTIONS(1680), + [anon_sym___nullable] = ACTIONS(1680), + [anon_sym___nonnull] = ACTIONS(1680), + [anon_sym___strong] = ACTIONS(1680), + [anon_sym___weak] = ACTIONS(1680), + [anon_sym___bridge] = ACTIONS(1680), + [anon_sym___bridge_transfer] = ACTIONS(1680), + [anon_sym___bridge_retained] = ACTIONS(1680), + [anon_sym___unsafe_unretained] = ACTIONS(1680), + [anon_sym___block] = ACTIONS(1680), + [anon_sym___kindof] = ACTIONS(1680), + [anon_sym___unused] = ACTIONS(1680), + [anon_sym__Complex] = ACTIONS(1680), + [anon_sym___complex] = ACTIONS(1680), + [anon_sym_IBOutlet] = ACTIONS(1680), + [anon_sym_IBInspectable] = ACTIONS(1680), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1680), + [anon_sym_signed] = ACTIONS(1680), + [anon_sym_unsigned] = ACTIONS(1680), + [anon_sym_long] = ACTIONS(1680), + [anon_sym_short] = ACTIONS(1680), + [sym_primitive_type] = ACTIONS(1680), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(1680), + [anon_sym_union] = ACTIONS(1680), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_switch] = ACTIONS(1680), + [anon_sym_case] = ACTIONS(1680), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1680), + [anon_sym_do] = ACTIONS(1680), + [anon_sym_for] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1680), + [anon_sym_continue] = ACTIONS(1680), + [anon_sym_goto] = ACTIONS(1680), + [anon_sym_DASH_DASH] = ACTIONS(1682), + [anon_sym_PLUS_PLUS] = ACTIONS(1682), + [anon_sym_sizeof] = ACTIONS(1680), + [sym_number_literal] = ACTIONS(1682), + [anon_sym_L_SQUOTE] = ACTIONS(1682), + [anon_sym_u_SQUOTE] = ACTIONS(1682), + [anon_sym_U_SQUOTE] = ACTIONS(1682), + [anon_sym_u8_SQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1682), + [anon_sym_L_DQUOTE] = ACTIONS(1682), + [anon_sym_u_DQUOTE] = ACTIONS(1682), + [anon_sym_U_DQUOTE] = ACTIONS(1682), + [anon_sym_u8_DQUOTE] = ACTIONS(1682), + [anon_sym_DQUOTE] = ACTIONS(1682), + [sym_true] = ACTIONS(1680), + [sym_false] = ACTIONS(1680), + [sym_null] = ACTIONS(1680), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1682), + [anon_sym_ATimport] = ACTIONS(1682), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1680), + [anon_sym_ATcompatibility_alias] = ACTIONS(1682), + [anon_sym_ATprotocol] = ACTIONS(1682), + [anon_sym_ATclass] = ACTIONS(1682), + [anon_sym_ATinterface] = ACTIONS(1682), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1680), + [sym_method_attribute_specifier] = ACTIONS(1680), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1680), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1680), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1680), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1680), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1680), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1680), + [anon_sym_NS_AVAILABLE] = ACTIONS(1680), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1680), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_API_AVAILABLE] = ACTIONS(1680), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1680), + [anon_sym_API_DEPRECATED] = ACTIONS(1680), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1680), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1680), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1680), + [anon_sym___deprecated_msg] = ACTIONS(1680), + [anon_sym___deprecated_enum_msg] = ACTIONS(1680), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1680), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1680), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1680), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1680), + [anon_sym_ATimplementation] = ACTIONS(1682), + [anon_sym_NS_ENUM] = ACTIONS(1680), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1680), + [anon_sym_NS_OPTIONS] = ACTIONS(1680), + [anon_sym_typeof] = ACTIONS(1680), + [anon_sym___typeof] = ACTIONS(1680), + [anon_sym___typeof__] = ACTIONS(1680), + [sym_self] = ACTIONS(1680), + [sym_super] = ACTIONS(1680), + [sym_nil] = ACTIONS(1680), + [sym_id] = ACTIONS(1680), + [sym_instancetype] = ACTIONS(1680), + [sym_Class] = ACTIONS(1680), + [sym_SEL] = ACTIONS(1680), + [sym_IMP] = ACTIONS(1680), + [sym_BOOL] = ACTIONS(1680), + [sym_auto] = ACTIONS(1680), + [anon_sym_ATautoreleasepool] = ACTIONS(1682), + [anon_sym_ATsynchronized] = ACTIONS(1682), + [anon_sym_ATtry] = ACTIONS(1682), + [anon_sym_ATthrow] = ACTIONS(1682), + [anon_sym_ATselector] = ACTIONS(1682), + [anon_sym_ATencode] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(1680), + [sym_YES] = ACTIONS(1680), + [sym_NO] = ACTIONS(1680), + [anon_sym___builtin_available] = ACTIONS(1680), + [anon_sym_ATavailable] = ACTIONS(1682), + [anon_sym_va_arg] = ACTIONS(1680), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1107] = { + [ts_builtin_sym_end] = ACTIONS(2062), + [sym_identifier] = ACTIONS(2060), + [aux_sym_preproc_include_token1] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2062), + [aux_sym_preproc_if_token1] = ACTIONS(2060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2060), + [anon_sym_LPAREN2] = ACTIONS(2062), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_typedef] = ACTIONS(2060), + [anon_sym_extern] = ACTIONS(2060), + [anon_sym___attribute] = ACTIONS(2060), + [anon_sym___attribute__] = ACTIONS(2060), + [anon_sym___declspec] = ACTIONS(2060), + [anon_sym___cdecl] = ACTIONS(2060), + [anon_sym___clrcall] = ACTIONS(2060), + [anon_sym___stdcall] = ACTIONS(2060), + [anon_sym___fastcall] = ACTIONS(2060), + [anon_sym___thiscall] = ACTIONS(2060), + [anon_sym___vectorcall] = ACTIONS(2060), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2062), + [anon_sym_static] = ACTIONS(2060), + [anon_sym_auto] = ACTIONS(2060), + [anon_sym_register] = ACTIONS(2060), + [anon_sym_inline] = ACTIONS(2060), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2060), + [anon_sym_const] = ACTIONS(2060), + [anon_sym_volatile] = ACTIONS(2060), + [anon_sym_restrict] = ACTIONS(2060), + [anon_sym__Atomic] = ACTIONS(2060), + [anon_sym_in] = ACTIONS(2060), + [anon_sym_out] = ACTIONS(2060), + [anon_sym_inout] = ACTIONS(2060), + [anon_sym_bycopy] = ACTIONS(2060), + [anon_sym_byref] = ACTIONS(2060), + [anon_sym_oneway] = ACTIONS(2060), + [anon_sym__Nullable] = ACTIONS(2060), + [anon_sym__Nonnull] = ACTIONS(2060), + [anon_sym__Nullable_result] = ACTIONS(2060), + [anon_sym__Null_unspecified] = ACTIONS(2060), + [anon_sym___autoreleasing] = ACTIONS(2060), + [anon_sym___nullable] = ACTIONS(2060), + [anon_sym___nonnull] = ACTIONS(2060), + [anon_sym___strong] = ACTIONS(2060), + [anon_sym___weak] = ACTIONS(2060), + [anon_sym___bridge] = ACTIONS(2060), + [anon_sym___bridge_transfer] = ACTIONS(2060), + [anon_sym___bridge_retained] = ACTIONS(2060), + [anon_sym___unsafe_unretained] = ACTIONS(2060), + [anon_sym___block] = ACTIONS(2060), + [anon_sym___kindof] = ACTIONS(2060), + [anon_sym___unused] = ACTIONS(2060), + [anon_sym__Complex] = ACTIONS(2060), + [anon_sym___complex] = ACTIONS(2060), + [anon_sym_IBOutlet] = ACTIONS(2060), + [anon_sym_IBInspectable] = ACTIONS(2060), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2060), + [anon_sym_signed] = ACTIONS(2060), + [anon_sym_unsigned] = ACTIONS(2060), + [anon_sym_long] = ACTIONS(2060), + [anon_sym_short] = ACTIONS(2060), + [sym_primitive_type] = ACTIONS(2060), + [anon_sym_enum] = ACTIONS(2060), + [anon_sym_struct] = ACTIONS(2060), + [anon_sym_union] = ACTIONS(2060), + [anon_sym_if] = ACTIONS(2060), + [anon_sym_switch] = ACTIONS(2060), + [anon_sym_case] = ACTIONS(2060), + [anon_sym_default] = ACTIONS(2060), + [anon_sym_while] = ACTIONS(2060), + [anon_sym_do] = ACTIONS(2060), + [anon_sym_for] = ACTIONS(2060), + [anon_sym_return] = ACTIONS(2060), + [anon_sym_break] = ACTIONS(2060), + [anon_sym_continue] = ACTIONS(2060), + [anon_sym_goto] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2062), + [anon_sym_PLUS_PLUS] = ACTIONS(2062), + [anon_sym_sizeof] = ACTIONS(2060), + [sym_number_literal] = ACTIONS(2062), + [anon_sym_L_SQUOTE] = ACTIONS(2062), + [anon_sym_u_SQUOTE] = ACTIONS(2062), + [anon_sym_U_SQUOTE] = ACTIONS(2062), + [anon_sym_u8_SQUOTE] = ACTIONS(2062), + [anon_sym_SQUOTE] = ACTIONS(2062), + [anon_sym_L_DQUOTE] = ACTIONS(2062), + [anon_sym_u_DQUOTE] = ACTIONS(2062), + [anon_sym_U_DQUOTE] = ACTIONS(2062), + [anon_sym_u8_DQUOTE] = ACTIONS(2062), + [anon_sym_DQUOTE] = ACTIONS(2062), + [sym_true] = ACTIONS(2060), + [sym_false] = ACTIONS(2060), + [sym_null] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2062), + [anon_sym_ATimport] = ACTIONS(2062), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2060), + [anon_sym_ATcompatibility_alias] = ACTIONS(2062), + [anon_sym_ATprotocol] = ACTIONS(2062), + [anon_sym_ATclass] = ACTIONS(2062), + [anon_sym_ATinterface] = ACTIONS(2062), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2060), + [sym_method_attribute_specifier] = ACTIONS(2060), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2060), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2060), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2060), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2060), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2060), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2060), + [anon_sym_NS_AVAILABLE] = ACTIONS(2060), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2060), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_API_AVAILABLE] = ACTIONS(2060), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2060), + [anon_sym_API_DEPRECATED] = ACTIONS(2060), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2060), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2060), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2060), + [anon_sym___deprecated_msg] = ACTIONS(2060), + [anon_sym___deprecated_enum_msg] = ACTIONS(2060), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2060), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2060), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2060), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2060), + [anon_sym_ATimplementation] = ACTIONS(2062), + [anon_sym_NS_ENUM] = ACTIONS(2060), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2060), + [anon_sym_NS_OPTIONS] = ACTIONS(2060), + [anon_sym_typeof] = ACTIONS(2060), + [anon_sym___typeof] = ACTIONS(2060), + [anon_sym___typeof__] = ACTIONS(2060), + [sym_self] = ACTIONS(2060), + [sym_super] = ACTIONS(2060), + [sym_nil] = ACTIONS(2060), + [sym_id] = ACTIONS(2060), + [sym_instancetype] = ACTIONS(2060), + [sym_Class] = ACTIONS(2060), + [sym_SEL] = ACTIONS(2060), + [sym_IMP] = ACTIONS(2060), + [sym_BOOL] = ACTIONS(2060), + [sym_auto] = ACTIONS(2060), + [anon_sym_ATautoreleasepool] = ACTIONS(2062), + [anon_sym_ATsynchronized] = ACTIONS(2062), + [anon_sym_ATtry] = ACTIONS(2062), + [anon_sym_ATthrow] = ACTIONS(2062), + [anon_sym_ATselector] = ACTIONS(2062), + [anon_sym_ATencode] = ACTIONS(2062), + [anon_sym_AT] = ACTIONS(2060), + [sym_YES] = ACTIONS(2060), + [sym_NO] = ACTIONS(2060), + [anon_sym___builtin_available] = ACTIONS(2060), + [anon_sym_ATavailable] = ACTIONS(2062), + [anon_sym_va_arg] = ACTIONS(2060), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1108] = { + [ts_builtin_sym_end] = ACTIONS(1914), + [sym_identifier] = ACTIONS(1912), + [aux_sym_preproc_include_token1] = ACTIONS(1914), + [aux_sym_preproc_def_token1] = ACTIONS(1914), + [aux_sym_preproc_if_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1912), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_CARET] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym___attribute] = ACTIONS(1912), + [anon_sym___attribute__] = ACTIONS(1912), + [anon_sym___declspec] = ACTIONS(1912), + [anon_sym___cdecl] = ACTIONS(1912), + [anon_sym___clrcall] = ACTIONS(1912), + [anon_sym___stdcall] = ACTIONS(1912), + [anon_sym___fastcall] = ACTIONS(1912), + [anon_sym___thiscall] = ACTIONS(1912), + [anon_sym___vectorcall] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_auto] = ACTIONS(1912), + [anon_sym_register] = ACTIONS(1912), + [anon_sym_inline] = ACTIONS(1912), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_volatile] = ACTIONS(1912), + [anon_sym_restrict] = ACTIONS(1912), + [anon_sym__Atomic] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1912), + [anon_sym_out] = ACTIONS(1912), + [anon_sym_inout] = ACTIONS(1912), + [anon_sym_bycopy] = ACTIONS(1912), + [anon_sym_byref] = ACTIONS(1912), + [anon_sym_oneway] = ACTIONS(1912), + [anon_sym__Nullable] = ACTIONS(1912), + [anon_sym__Nonnull] = ACTIONS(1912), + [anon_sym__Nullable_result] = ACTIONS(1912), + [anon_sym__Null_unspecified] = ACTIONS(1912), + [anon_sym___autoreleasing] = ACTIONS(1912), + [anon_sym___nullable] = ACTIONS(1912), + [anon_sym___nonnull] = ACTIONS(1912), + [anon_sym___strong] = ACTIONS(1912), + [anon_sym___weak] = ACTIONS(1912), + [anon_sym___bridge] = ACTIONS(1912), + [anon_sym___bridge_transfer] = ACTIONS(1912), + [anon_sym___bridge_retained] = ACTIONS(1912), + [anon_sym___unsafe_unretained] = ACTIONS(1912), + [anon_sym___block] = ACTIONS(1912), + [anon_sym___kindof] = ACTIONS(1912), + [anon_sym___unused] = ACTIONS(1912), + [anon_sym__Complex] = ACTIONS(1912), + [anon_sym___complex] = ACTIONS(1912), + [anon_sym_IBOutlet] = ACTIONS(1912), + [anon_sym_IBInspectable] = ACTIONS(1912), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1912), + [anon_sym_signed] = ACTIONS(1912), + [anon_sym_unsigned] = ACTIONS(1912), + [anon_sym_long] = ACTIONS(1912), + [anon_sym_short] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_switch] = ACTIONS(1912), + [anon_sym_case] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_do] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_goto] = ACTIONS(1912), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_sizeof] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1914), + [anon_sym_u_SQUOTE] = ACTIONS(1914), + [anon_sym_U_SQUOTE] = ACTIONS(1914), + [anon_sym_u8_SQUOTE] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_L_DQUOTE] = ACTIONS(1914), + [anon_sym_u_DQUOTE] = ACTIONS(1914), + [anon_sym_U_DQUOTE] = ACTIONS(1914), + [anon_sym_u8_DQUOTE] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_true] = ACTIONS(1912), + [sym_false] = ACTIONS(1912), + [sym_null] = ACTIONS(1912), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1914), + [anon_sym_ATimport] = ACTIONS(1914), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1912), + [anon_sym_ATcompatibility_alias] = ACTIONS(1914), + [anon_sym_ATprotocol] = ACTIONS(1914), + [anon_sym_ATclass] = ACTIONS(1914), + [anon_sym_ATinterface] = ACTIONS(1914), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1912), + [sym_method_attribute_specifier] = ACTIONS(1912), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1912), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE] = ACTIONS(1912), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_API_AVAILABLE] = ACTIONS(1912), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_API_DEPRECATED] = ACTIONS(1912), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1912), + [anon_sym___deprecated_msg] = ACTIONS(1912), + [anon_sym___deprecated_enum_msg] = ACTIONS(1912), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1912), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1912), + [anon_sym_ATimplementation] = ACTIONS(1914), + [anon_sym_NS_ENUM] = ACTIONS(1912), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1912), + [anon_sym_NS_OPTIONS] = ACTIONS(1912), + [anon_sym_typeof] = ACTIONS(1912), + [anon_sym___typeof] = ACTIONS(1912), + [anon_sym___typeof__] = ACTIONS(1912), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_nil] = ACTIONS(1912), + [sym_id] = ACTIONS(1912), + [sym_instancetype] = ACTIONS(1912), + [sym_Class] = ACTIONS(1912), + [sym_SEL] = ACTIONS(1912), + [sym_IMP] = ACTIONS(1912), + [sym_BOOL] = ACTIONS(1912), + [sym_auto] = ACTIONS(1912), + [anon_sym_ATautoreleasepool] = ACTIONS(1914), + [anon_sym_ATsynchronized] = ACTIONS(1914), + [anon_sym_ATtry] = ACTIONS(1914), + [anon_sym_ATthrow] = ACTIONS(1914), + [anon_sym_ATselector] = ACTIONS(1914), + [anon_sym_ATencode] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1912), + [sym_YES] = ACTIONS(1912), + [sym_NO] = ACTIONS(1912), + [anon_sym___builtin_available] = ACTIONS(1912), + [anon_sym_ATavailable] = ACTIONS(1914), + [anon_sym_va_arg] = ACTIONS(1912), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1109] = { + [ts_builtin_sym_end] = ACTIONS(1870), + [sym_identifier] = ACTIONS(1868), + [aux_sym_preproc_include_token1] = ACTIONS(1870), + [aux_sym_preproc_def_token1] = ACTIONS(1870), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym___attribute] = ACTIONS(1868), + [anon_sym___attribute__] = ACTIONS(1868), + [anon_sym___declspec] = ACTIONS(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_auto] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_inline] = ACTIONS(1868), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_volatile] = ACTIONS(1868), + [anon_sym_restrict] = ACTIONS(1868), + [anon_sym__Atomic] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_out] = ACTIONS(1868), + [anon_sym_inout] = ACTIONS(1868), + [anon_sym_bycopy] = ACTIONS(1868), + [anon_sym_byref] = ACTIONS(1868), + [anon_sym_oneway] = ACTIONS(1868), + [anon_sym__Nullable] = ACTIONS(1868), + [anon_sym__Nonnull] = ACTIONS(1868), + [anon_sym__Nullable_result] = ACTIONS(1868), + [anon_sym__Null_unspecified] = ACTIONS(1868), + [anon_sym___autoreleasing] = ACTIONS(1868), + [anon_sym___nullable] = ACTIONS(1868), + [anon_sym___nonnull] = ACTIONS(1868), + [anon_sym___strong] = ACTIONS(1868), + [anon_sym___weak] = ACTIONS(1868), + [anon_sym___bridge] = ACTIONS(1868), + [anon_sym___bridge_transfer] = ACTIONS(1868), + [anon_sym___bridge_retained] = ACTIONS(1868), + [anon_sym___unsafe_unretained] = ACTIONS(1868), + [anon_sym___block] = ACTIONS(1868), + [anon_sym___kindof] = ACTIONS(1868), + [anon_sym___unused] = ACTIONS(1868), + [anon_sym__Complex] = ACTIONS(1868), + [anon_sym___complex] = ACTIONS(1868), + [anon_sym_IBOutlet] = ACTIONS(1868), + [anon_sym_IBInspectable] = ACTIONS(1868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1868), + [anon_sym_signed] = ACTIONS(1868), + [anon_sym_unsigned] = ACTIONS(1868), + [anon_sym_long] = ACTIONS(1868), + [anon_sym_short] = ACTIONS(1868), + [sym_primitive_type] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_sizeof] = ACTIONS(1868), + [sym_number_literal] = ACTIONS(1870), + [anon_sym_L_SQUOTE] = ACTIONS(1870), + [anon_sym_u_SQUOTE] = ACTIONS(1870), + [anon_sym_U_SQUOTE] = ACTIONS(1870), + [anon_sym_u8_SQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_L_DQUOTE] = ACTIONS(1870), + [anon_sym_u_DQUOTE] = ACTIONS(1870), + [anon_sym_U_DQUOTE] = ACTIONS(1870), + [anon_sym_u8_DQUOTE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1870), + [anon_sym_ATimport] = ACTIONS(1870), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1868), + [anon_sym_ATcompatibility_alias] = ACTIONS(1870), + [anon_sym_ATprotocol] = ACTIONS(1870), + [anon_sym_ATclass] = ACTIONS(1870), + [anon_sym_ATinterface] = ACTIONS(1870), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1868), + [sym_method_attribute_specifier] = ACTIONS(1868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE] = ACTIONS(1868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_API_AVAILABLE] = ACTIONS(1868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_API_DEPRECATED] = ACTIONS(1868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1868), + [anon_sym___deprecated_msg] = ACTIONS(1868), + [anon_sym___deprecated_enum_msg] = ACTIONS(1868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1868), + [anon_sym_ATimplementation] = ACTIONS(1870), + [anon_sym_NS_ENUM] = ACTIONS(1868), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1868), + [anon_sym_NS_OPTIONS] = ACTIONS(1868), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym___typeof] = ACTIONS(1868), + [anon_sym___typeof__] = ACTIONS(1868), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [sym_id] = ACTIONS(1868), + [sym_instancetype] = ACTIONS(1868), + [sym_Class] = ACTIONS(1868), + [sym_SEL] = ACTIONS(1868), + [sym_IMP] = ACTIONS(1868), + [sym_BOOL] = ACTIONS(1868), + [sym_auto] = ACTIONS(1868), + [anon_sym_ATautoreleasepool] = ACTIONS(1870), + [anon_sym_ATsynchronized] = ACTIONS(1870), + [anon_sym_ATtry] = ACTIONS(1870), + [anon_sym_ATthrow] = ACTIONS(1870), + [anon_sym_ATselector] = ACTIONS(1870), + [anon_sym_ATencode] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1868), + [sym_YES] = ACTIONS(1868), + [sym_NO] = ACTIONS(1868), + [anon_sym___builtin_available] = ACTIONS(1868), + [anon_sym_ATavailable] = ACTIONS(1870), + [anon_sym_va_arg] = ACTIONS(1868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1110] = { + [ts_builtin_sym_end] = ACTIONS(2062), + [sym_identifier] = ACTIONS(2060), + [aux_sym_preproc_include_token1] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2062), + [aux_sym_preproc_if_token1] = ACTIONS(2060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2060), + [anon_sym_LPAREN2] = ACTIONS(2062), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_typedef] = ACTIONS(2060), + [anon_sym_extern] = ACTIONS(2060), + [anon_sym___attribute] = ACTIONS(2060), + [anon_sym___attribute__] = ACTIONS(2060), + [anon_sym___declspec] = ACTIONS(2060), + [anon_sym___cdecl] = ACTIONS(2060), + [anon_sym___clrcall] = ACTIONS(2060), + [anon_sym___stdcall] = ACTIONS(2060), + [anon_sym___fastcall] = ACTIONS(2060), + [anon_sym___thiscall] = ACTIONS(2060), + [anon_sym___vectorcall] = ACTIONS(2060), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2062), + [anon_sym_static] = ACTIONS(2060), + [anon_sym_auto] = ACTIONS(2060), + [anon_sym_register] = ACTIONS(2060), + [anon_sym_inline] = ACTIONS(2060), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2060), + [anon_sym_const] = ACTIONS(2060), + [anon_sym_volatile] = ACTIONS(2060), + [anon_sym_restrict] = ACTIONS(2060), + [anon_sym__Atomic] = ACTIONS(2060), + [anon_sym_in] = ACTIONS(2060), + [anon_sym_out] = ACTIONS(2060), + [anon_sym_inout] = ACTIONS(2060), + [anon_sym_bycopy] = ACTIONS(2060), + [anon_sym_byref] = ACTIONS(2060), + [anon_sym_oneway] = ACTIONS(2060), + [anon_sym__Nullable] = ACTIONS(2060), + [anon_sym__Nonnull] = ACTIONS(2060), + [anon_sym__Nullable_result] = ACTIONS(2060), + [anon_sym__Null_unspecified] = ACTIONS(2060), + [anon_sym___autoreleasing] = ACTIONS(2060), + [anon_sym___nullable] = ACTIONS(2060), + [anon_sym___nonnull] = ACTIONS(2060), + [anon_sym___strong] = ACTIONS(2060), + [anon_sym___weak] = ACTIONS(2060), + [anon_sym___bridge] = ACTIONS(2060), + [anon_sym___bridge_transfer] = ACTIONS(2060), + [anon_sym___bridge_retained] = ACTIONS(2060), + [anon_sym___unsafe_unretained] = ACTIONS(2060), + [anon_sym___block] = ACTIONS(2060), + [anon_sym___kindof] = ACTIONS(2060), + [anon_sym___unused] = ACTIONS(2060), + [anon_sym__Complex] = ACTIONS(2060), + [anon_sym___complex] = ACTIONS(2060), + [anon_sym_IBOutlet] = ACTIONS(2060), + [anon_sym_IBInspectable] = ACTIONS(2060), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2060), + [anon_sym_signed] = ACTIONS(2060), + [anon_sym_unsigned] = ACTIONS(2060), + [anon_sym_long] = ACTIONS(2060), + [anon_sym_short] = ACTIONS(2060), + [sym_primitive_type] = ACTIONS(2060), + [anon_sym_enum] = ACTIONS(2060), + [anon_sym_struct] = ACTIONS(2060), + [anon_sym_union] = ACTIONS(2060), + [anon_sym_if] = ACTIONS(2060), + [anon_sym_switch] = ACTIONS(2060), + [anon_sym_case] = ACTIONS(2060), + [anon_sym_default] = ACTIONS(2060), + [anon_sym_while] = ACTIONS(2060), + [anon_sym_do] = ACTIONS(2060), + [anon_sym_for] = ACTIONS(2060), + [anon_sym_return] = ACTIONS(2060), + [anon_sym_break] = ACTIONS(2060), + [anon_sym_continue] = ACTIONS(2060), + [anon_sym_goto] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2062), + [anon_sym_PLUS_PLUS] = ACTIONS(2062), + [anon_sym_sizeof] = ACTIONS(2060), + [sym_number_literal] = ACTIONS(2062), + [anon_sym_L_SQUOTE] = ACTIONS(2062), + [anon_sym_u_SQUOTE] = ACTIONS(2062), + [anon_sym_U_SQUOTE] = ACTIONS(2062), + [anon_sym_u8_SQUOTE] = ACTIONS(2062), + [anon_sym_SQUOTE] = ACTIONS(2062), + [anon_sym_L_DQUOTE] = ACTIONS(2062), + [anon_sym_u_DQUOTE] = ACTIONS(2062), + [anon_sym_U_DQUOTE] = ACTIONS(2062), + [anon_sym_u8_DQUOTE] = ACTIONS(2062), + [anon_sym_DQUOTE] = ACTIONS(2062), + [sym_true] = ACTIONS(2060), + [sym_false] = ACTIONS(2060), + [sym_null] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2062), + [anon_sym_ATimport] = ACTIONS(2062), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2060), + [anon_sym_ATcompatibility_alias] = ACTIONS(2062), + [anon_sym_ATprotocol] = ACTIONS(2062), + [anon_sym_ATclass] = ACTIONS(2062), + [anon_sym_ATinterface] = ACTIONS(2062), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2060), + [sym_method_attribute_specifier] = ACTIONS(2060), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2060), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2060), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2060), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2060), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2060), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2060), + [anon_sym_NS_AVAILABLE] = ACTIONS(2060), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2060), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_API_AVAILABLE] = ACTIONS(2060), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2060), + [anon_sym_API_DEPRECATED] = ACTIONS(2060), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2060), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2060), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2060), + [anon_sym___deprecated_msg] = ACTIONS(2060), + [anon_sym___deprecated_enum_msg] = ACTIONS(2060), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2060), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2060), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2060), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2060), + [anon_sym_ATimplementation] = ACTIONS(2062), + [anon_sym_NS_ENUM] = ACTIONS(2060), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2060), + [anon_sym_NS_OPTIONS] = ACTIONS(2060), + [anon_sym_typeof] = ACTIONS(2060), + [anon_sym___typeof] = ACTIONS(2060), + [anon_sym___typeof__] = ACTIONS(2060), + [sym_self] = ACTIONS(2060), + [sym_super] = ACTIONS(2060), + [sym_nil] = ACTIONS(2060), + [sym_id] = ACTIONS(2060), + [sym_instancetype] = ACTIONS(2060), + [sym_Class] = ACTIONS(2060), + [sym_SEL] = ACTIONS(2060), + [sym_IMP] = ACTIONS(2060), + [sym_BOOL] = ACTIONS(2060), + [sym_auto] = ACTIONS(2060), + [anon_sym_ATautoreleasepool] = ACTIONS(2062), + [anon_sym_ATsynchronized] = ACTIONS(2062), + [anon_sym_ATtry] = ACTIONS(2062), + [anon_sym_ATthrow] = ACTIONS(2062), + [anon_sym_ATselector] = ACTIONS(2062), + [anon_sym_ATencode] = ACTIONS(2062), + [anon_sym_AT] = ACTIONS(2060), + [sym_YES] = ACTIONS(2060), + [sym_NO] = ACTIONS(2060), + [anon_sym___builtin_available] = ACTIONS(2060), + [anon_sym_ATavailable] = ACTIONS(2062), + [anon_sym_va_arg] = ACTIONS(2060), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1111] = { + [ts_builtin_sym_end] = ACTIONS(1870), + [sym_identifier] = ACTIONS(1868), + [aux_sym_preproc_include_token1] = ACTIONS(1870), + [aux_sym_preproc_def_token1] = ACTIONS(1870), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym___attribute] = ACTIONS(1868), + [anon_sym___attribute__] = ACTIONS(1868), + [anon_sym___declspec] = ACTIONS(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_auto] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_inline] = ACTIONS(1868), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_volatile] = ACTIONS(1868), + [anon_sym_restrict] = ACTIONS(1868), + [anon_sym__Atomic] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_out] = ACTIONS(1868), + [anon_sym_inout] = ACTIONS(1868), + [anon_sym_bycopy] = ACTIONS(1868), + [anon_sym_byref] = ACTIONS(1868), + [anon_sym_oneway] = ACTIONS(1868), + [anon_sym__Nullable] = ACTIONS(1868), + [anon_sym__Nonnull] = ACTIONS(1868), + [anon_sym__Nullable_result] = ACTIONS(1868), + [anon_sym__Null_unspecified] = ACTIONS(1868), + [anon_sym___autoreleasing] = ACTIONS(1868), + [anon_sym___nullable] = ACTIONS(1868), + [anon_sym___nonnull] = ACTIONS(1868), + [anon_sym___strong] = ACTIONS(1868), + [anon_sym___weak] = ACTIONS(1868), + [anon_sym___bridge] = ACTIONS(1868), + [anon_sym___bridge_transfer] = ACTIONS(1868), + [anon_sym___bridge_retained] = ACTIONS(1868), + [anon_sym___unsafe_unretained] = ACTIONS(1868), + [anon_sym___block] = ACTIONS(1868), + [anon_sym___kindof] = ACTIONS(1868), + [anon_sym___unused] = ACTIONS(1868), + [anon_sym__Complex] = ACTIONS(1868), + [anon_sym___complex] = ACTIONS(1868), + [anon_sym_IBOutlet] = ACTIONS(1868), + [anon_sym_IBInspectable] = ACTIONS(1868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1868), + [anon_sym_signed] = ACTIONS(1868), + [anon_sym_unsigned] = ACTIONS(1868), + [anon_sym_long] = ACTIONS(1868), + [anon_sym_short] = ACTIONS(1868), + [sym_primitive_type] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_sizeof] = ACTIONS(1868), + [sym_number_literal] = ACTIONS(1870), + [anon_sym_L_SQUOTE] = ACTIONS(1870), + [anon_sym_u_SQUOTE] = ACTIONS(1870), + [anon_sym_U_SQUOTE] = ACTIONS(1870), + [anon_sym_u8_SQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_L_DQUOTE] = ACTIONS(1870), + [anon_sym_u_DQUOTE] = ACTIONS(1870), + [anon_sym_U_DQUOTE] = ACTIONS(1870), + [anon_sym_u8_DQUOTE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1870), + [anon_sym_ATimport] = ACTIONS(1870), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1868), + [anon_sym_ATcompatibility_alias] = ACTIONS(1870), + [anon_sym_ATprotocol] = ACTIONS(1870), + [anon_sym_ATclass] = ACTIONS(1870), + [anon_sym_ATinterface] = ACTIONS(1870), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1868), + [sym_method_attribute_specifier] = ACTIONS(1868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE] = ACTIONS(1868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_API_AVAILABLE] = ACTIONS(1868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_API_DEPRECATED] = ACTIONS(1868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1868), + [anon_sym___deprecated_msg] = ACTIONS(1868), + [anon_sym___deprecated_enum_msg] = ACTIONS(1868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1868), + [anon_sym_ATimplementation] = ACTIONS(1870), + [anon_sym_NS_ENUM] = ACTIONS(1868), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1868), + [anon_sym_NS_OPTIONS] = ACTIONS(1868), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym___typeof] = ACTIONS(1868), + [anon_sym___typeof__] = ACTIONS(1868), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [sym_id] = ACTIONS(1868), + [sym_instancetype] = ACTIONS(1868), + [sym_Class] = ACTIONS(1868), + [sym_SEL] = ACTIONS(1868), + [sym_IMP] = ACTIONS(1868), + [sym_BOOL] = ACTIONS(1868), + [sym_auto] = ACTIONS(1868), + [anon_sym_ATautoreleasepool] = ACTIONS(1870), + [anon_sym_ATsynchronized] = ACTIONS(1870), + [anon_sym_ATtry] = ACTIONS(1870), + [anon_sym_ATthrow] = ACTIONS(1870), + [anon_sym_ATselector] = ACTIONS(1870), + [anon_sym_ATencode] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1868), + [sym_YES] = ACTIONS(1868), + [sym_NO] = ACTIONS(1868), + [anon_sym___builtin_available] = ACTIONS(1868), + [anon_sym_ATavailable] = ACTIONS(1870), + [anon_sym_va_arg] = ACTIONS(1868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1112] = { + [ts_builtin_sym_end] = ACTIONS(2058), + [sym_identifier] = ACTIONS(2056), + [aux_sym_preproc_include_token1] = ACTIONS(2058), + [aux_sym_preproc_def_token1] = ACTIONS(2058), + [aux_sym_preproc_if_token1] = ACTIONS(2056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2058), + [anon_sym_TILDE] = ACTIONS(2058), + [anon_sym_DASH] = ACTIONS(2056), + [anon_sym_PLUS] = ACTIONS(2056), + [anon_sym_STAR] = ACTIONS(2058), + [anon_sym_CARET] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2058), + [anon_sym_typedef] = ACTIONS(2056), + [anon_sym_extern] = ACTIONS(2056), + [anon_sym___attribute] = ACTIONS(2056), + [anon_sym___attribute__] = ACTIONS(2056), + [anon_sym___declspec] = ACTIONS(2056), + [anon_sym___cdecl] = ACTIONS(2056), + [anon_sym___clrcall] = ACTIONS(2056), + [anon_sym___stdcall] = ACTIONS(2056), + [anon_sym___fastcall] = ACTIONS(2056), + [anon_sym___thiscall] = ACTIONS(2056), + [anon_sym___vectorcall] = ACTIONS(2056), + [anon_sym_LBRACE] = ACTIONS(2058), + [anon_sym_RBRACE] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(2058), + [anon_sym_static] = ACTIONS(2056), + [anon_sym_auto] = ACTIONS(2056), + [anon_sym_register] = ACTIONS(2056), + [anon_sym_inline] = ACTIONS(2056), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2056), + [anon_sym_const] = ACTIONS(2056), + [anon_sym_volatile] = ACTIONS(2056), + [anon_sym_restrict] = ACTIONS(2056), + [anon_sym__Atomic] = ACTIONS(2056), + [anon_sym_in] = ACTIONS(2056), + [anon_sym_out] = ACTIONS(2056), + [anon_sym_inout] = ACTIONS(2056), + [anon_sym_bycopy] = ACTIONS(2056), + [anon_sym_byref] = ACTIONS(2056), + [anon_sym_oneway] = ACTIONS(2056), + [anon_sym__Nullable] = ACTIONS(2056), + [anon_sym__Nonnull] = ACTIONS(2056), + [anon_sym__Nullable_result] = ACTIONS(2056), + [anon_sym__Null_unspecified] = ACTIONS(2056), + [anon_sym___autoreleasing] = ACTIONS(2056), + [anon_sym___nullable] = ACTIONS(2056), + [anon_sym___nonnull] = ACTIONS(2056), + [anon_sym___strong] = ACTIONS(2056), + [anon_sym___weak] = ACTIONS(2056), + [anon_sym___bridge] = ACTIONS(2056), + [anon_sym___bridge_transfer] = ACTIONS(2056), + [anon_sym___bridge_retained] = ACTIONS(2056), + [anon_sym___unsafe_unretained] = ACTIONS(2056), + [anon_sym___block] = ACTIONS(2056), + [anon_sym___kindof] = ACTIONS(2056), + [anon_sym___unused] = ACTIONS(2056), + [anon_sym__Complex] = ACTIONS(2056), + [anon_sym___complex] = ACTIONS(2056), + [anon_sym_IBOutlet] = ACTIONS(2056), + [anon_sym_IBInspectable] = ACTIONS(2056), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2056), + [anon_sym_signed] = ACTIONS(2056), + [anon_sym_unsigned] = ACTIONS(2056), + [anon_sym_long] = ACTIONS(2056), + [anon_sym_short] = ACTIONS(2056), + [sym_primitive_type] = ACTIONS(2056), + [anon_sym_enum] = ACTIONS(2056), + [anon_sym_struct] = ACTIONS(2056), + [anon_sym_union] = ACTIONS(2056), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_switch] = ACTIONS(2056), + [anon_sym_case] = ACTIONS(2056), + [anon_sym_default] = ACTIONS(2056), + [anon_sym_while] = ACTIONS(2056), + [anon_sym_do] = ACTIONS(2056), + [anon_sym_for] = ACTIONS(2056), + [anon_sym_return] = ACTIONS(2056), + [anon_sym_break] = ACTIONS(2056), + [anon_sym_continue] = ACTIONS(2056), + [anon_sym_goto] = ACTIONS(2056), + [anon_sym_DASH_DASH] = ACTIONS(2058), + [anon_sym_PLUS_PLUS] = ACTIONS(2058), + [anon_sym_sizeof] = ACTIONS(2056), + [sym_number_literal] = ACTIONS(2058), + [anon_sym_L_SQUOTE] = ACTIONS(2058), + [anon_sym_u_SQUOTE] = ACTIONS(2058), + [anon_sym_U_SQUOTE] = ACTIONS(2058), + [anon_sym_u8_SQUOTE] = ACTIONS(2058), + [anon_sym_SQUOTE] = ACTIONS(2058), + [anon_sym_L_DQUOTE] = ACTIONS(2058), + [anon_sym_u_DQUOTE] = ACTIONS(2058), + [anon_sym_U_DQUOTE] = ACTIONS(2058), + [anon_sym_u8_DQUOTE] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(2058), + [sym_true] = ACTIONS(2056), + [sym_false] = ACTIONS(2056), + [sym_null] = ACTIONS(2056), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2058), + [anon_sym_ATimport] = ACTIONS(2058), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2056), + [anon_sym_ATcompatibility_alias] = ACTIONS(2058), + [anon_sym_ATprotocol] = ACTIONS(2058), + [anon_sym_ATclass] = ACTIONS(2058), + [anon_sym_ATinterface] = ACTIONS(2058), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2056), + [sym_method_attribute_specifier] = ACTIONS(2056), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2056), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2056), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2056), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2056), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2056), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2056), + [anon_sym_NS_AVAILABLE] = ACTIONS(2056), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2056), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2056), + [anon_sym_API_AVAILABLE] = ACTIONS(2056), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2056), + [anon_sym_API_DEPRECATED] = ACTIONS(2056), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2056), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2056), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2056), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2056), + [anon_sym___deprecated_msg] = ACTIONS(2056), + [anon_sym___deprecated_enum_msg] = ACTIONS(2056), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2056), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2056), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2056), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2056), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2056), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2056), + [anon_sym_ATimplementation] = ACTIONS(2058), + [anon_sym_NS_ENUM] = ACTIONS(2056), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2056), + [anon_sym_NS_OPTIONS] = ACTIONS(2056), + [anon_sym_typeof] = ACTIONS(2056), + [anon_sym___typeof] = ACTIONS(2056), + [anon_sym___typeof__] = ACTIONS(2056), + [sym_self] = ACTIONS(2056), + [sym_super] = ACTIONS(2056), + [sym_nil] = ACTIONS(2056), + [sym_id] = ACTIONS(2056), + [sym_instancetype] = ACTIONS(2056), + [sym_Class] = ACTIONS(2056), + [sym_SEL] = ACTIONS(2056), + [sym_IMP] = ACTIONS(2056), + [sym_BOOL] = ACTIONS(2056), + [sym_auto] = ACTIONS(2056), + [anon_sym_ATautoreleasepool] = ACTIONS(2058), + [anon_sym_ATsynchronized] = ACTIONS(2058), + [anon_sym_ATtry] = ACTIONS(2058), + [anon_sym_ATthrow] = ACTIONS(2058), + [anon_sym_ATselector] = ACTIONS(2058), + [anon_sym_ATencode] = ACTIONS(2058), + [anon_sym_AT] = ACTIONS(2056), + [sym_YES] = ACTIONS(2056), + [sym_NO] = ACTIONS(2056), + [anon_sym___builtin_available] = ACTIONS(2056), + [anon_sym_ATavailable] = ACTIONS(2058), + [anon_sym_va_arg] = ACTIONS(2056), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1113] = { + [ts_builtin_sym_end] = ACTIONS(2054), + [sym_identifier] = ACTIONS(2052), + [aux_sym_preproc_include_token1] = ACTIONS(2054), + [aux_sym_preproc_def_token1] = ACTIONS(2054), + [aux_sym_preproc_if_token1] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2052), + [anon_sym_LPAREN2] = ACTIONS(2054), + [anon_sym_BANG] = ACTIONS(2054), + [anon_sym_TILDE] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2052), + [anon_sym_PLUS] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_CARET] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_typedef] = ACTIONS(2052), + [anon_sym_extern] = ACTIONS(2052), + [anon_sym___attribute] = ACTIONS(2052), + [anon_sym___attribute__] = ACTIONS(2052), + [anon_sym___declspec] = ACTIONS(2052), + [anon_sym___cdecl] = ACTIONS(2052), + [anon_sym___clrcall] = ACTIONS(2052), + [anon_sym___stdcall] = ACTIONS(2052), + [anon_sym___fastcall] = ACTIONS(2052), + [anon_sym___thiscall] = ACTIONS(2052), + [anon_sym___vectorcall] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_RBRACE] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_auto] = ACTIONS(2052), + [anon_sym_register] = ACTIONS(2052), + [anon_sym_inline] = ACTIONS(2052), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_volatile] = ACTIONS(2052), + [anon_sym_restrict] = ACTIONS(2052), + [anon_sym__Atomic] = ACTIONS(2052), + [anon_sym_in] = ACTIONS(2052), + [anon_sym_out] = ACTIONS(2052), + [anon_sym_inout] = ACTIONS(2052), + [anon_sym_bycopy] = ACTIONS(2052), + [anon_sym_byref] = ACTIONS(2052), + [anon_sym_oneway] = ACTIONS(2052), + [anon_sym__Nullable] = ACTIONS(2052), + [anon_sym__Nonnull] = ACTIONS(2052), + [anon_sym__Nullable_result] = ACTIONS(2052), + [anon_sym__Null_unspecified] = ACTIONS(2052), + [anon_sym___autoreleasing] = ACTIONS(2052), + [anon_sym___nullable] = ACTIONS(2052), + [anon_sym___nonnull] = ACTIONS(2052), + [anon_sym___strong] = ACTIONS(2052), + [anon_sym___weak] = ACTIONS(2052), + [anon_sym___bridge] = ACTIONS(2052), + [anon_sym___bridge_transfer] = ACTIONS(2052), + [anon_sym___bridge_retained] = ACTIONS(2052), + [anon_sym___unsafe_unretained] = ACTIONS(2052), + [anon_sym___block] = ACTIONS(2052), + [anon_sym___kindof] = ACTIONS(2052), + [anon_sym___unused] = ACTIONS(2052), + [anon_sym__Complex] = ACTIONS(2052), + [anon_sym___complex] = ACTIONS(2052), + [anon_sym_IBOutlet] = ACTIONS(2052), + [anon_sym_IBInspectable] = ACTIONS(2052), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2052), + [anon_sym_signed] = ACTIONS(2052), + [anon_sym_unsigned] = ACTIONS(2052), + [anon_sym_long] = ACTIONS(2052), + [anon_sym_short] = ACTIONS(2052), + [sym_primitive_type] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_switch] = ACTIONS(2052), + [anon_sym_case] = ACTIONS(2052), + [anon_sym_default] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [anon_sym_do] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_goto] = ACTIONS(2052), + [anon_sym_DASH_DASH] = ACTIONS(2054), + [anon_sym_PLUS_PLUS] = ACTIONS(2054), + [anon_sym_sizeof] = ACTIONS(2052), + [sym_number_literal] = ACTIONS(2054), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2054), + [anon_sym_u_DQUOTE] = ACTIONS(2054), + [anon_sym_U_DQUOTE] = ACTIONS(2054), + [anon_sym_u8_DQUOTE] = ACTIONS(2054), + [anon_sym_DQUOTE] = ACTIONS(2054), + [sym_true] = ACTIONS(2052), + [sym_false] = ACTIONS(2052), + [sym_null] = ACTIONS(2052), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2054), + [anon_sym_ATimport] = ACTIONS(2054), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2052), + [anon_sym_ATcompatibility_alias] = ACTIONS(2054), + [anon_sym_ATprotocol] = ACTIONS(2054), + [anon_sym_ATclass] = ACTIONS(2054), + [anon_sym_ATinterface] = ACTIONS(2054), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2052), + [sym_method_attribute_specifier] = ACTIONS(2052), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2052), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2052), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2052), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2052), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2052), + [anon_sym_NS_AVAILABLE] = ACTIONS(2052), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2052), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_API_AVAILABLE] = ACTIONS(2052), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_API_DEPRECATED] = ACTIONS(2052), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2052), + [anon_sym___deprecated_msg] = ACTIONS(2052), + [anon_sym___deprecated_enum_msg] = ACTIONS(2052), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2052), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2052), + [anon_sym_ATimplementation] = ACTIONS(2054), + [anon_sym_NS_ENUM] = ACTIONS(2052), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2052), + [anon_sym_NS_OPTIONS] = ACTIONS(2052), + [anon_sym_typeof] = ACTIONS(2052), + [anon_sym___typeof] = ACTIONS(2052), + [anon_sym___typeof__] = ACTIONS(2052), + [sym_self] = ACTIONS(2052), + [sym_super] = ACTIONS(2052), + [sym_nil] = ACTIONS(2052), + [sym_id] = ACTIONS(2052), + [sym_instancetype] = ACTIONS(2052), + [sym_Class] = ACTIONS(2052), + [sym_SEL] = ACTIONS(2052), + [sym_IMP] = ACTIONS(2052), + [sym_BOOL] = ACTIONS(2052), + [sym_auto] = ACTIONS(2052), + [anon_sym_ATautoreleasepool] = ACTIONS(2054), + [anon_sym_ATsynchronized] = ACTIONS(2054), + [anon_sym_ATtry] = ACTIONS(2054), + [anon_sym_ATthrow] = ACTIONS(2054), + [anon_sym_ATselector] = ACTIONS(2054), + [anon_sym_ATencode] = ACTIONS(2054), + [anon_sym_AT] = ACTIONS(2052), + [sym_YES] = ACTIONS(2052), + [sym_NO] = ACTIONS(2052), + [anon_sym___builtin_available] = ACTIONS(2052), + [anon_sym_ATavailable] = ACTIONS(2054), + [anon_sym_va_arg] = ACTIONS(2052), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1114] = { + [ts_builtin_sym_end] = ACTIONS(1914), + [sym_identifier] = ACTIONS(1912), + [aux_sym_preproc_include_token1] = ACTIONS(1914), + [aux_sym_preproc_def_token1] = ACTIONS(1914), + [aux_sym_preproc_if_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1912), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_CARET] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym___attribute] = ACTIONS(1912), + [anon_sym___attribute__] = ACTIONS(1912), + [anon_sym___declspec] = ACTIONS(1912), + [anon_sym___cdecl] = ACTIONS(1912), + [anon_sym___clrcall] = ACTIONS(1912), + [anon_sym___stdcall] = ACTIONS(1912), + [anon_sym___fastcall] = ACTIONS(1912), + [anon_sym___thiscall] = ACTIONS(1912), + [anon_sym___vectorcall] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_auto] = ACTIONS(1912), + [anon_sym_register] = ACTIONS(1912), + [anon_sym_inline] = ACTIONS(1912), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_volatile] = ACTIONS(1912), + [anon_sym_restrict] = ACTIONS(1912), + [anon_sym__Atomic] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1912), + [anon_sym_out] = ACTIONS(1912), + [anon_sym_inout] = ACTIONS(1912), + [anon_sym_bycopy] = ACTIONS(1912), + [anon_sym_byref] = ACTIONS(1912), + [anon_sym_oneway] = ACTIONS(1912), + [anon_sym__Nullable] = ACTIONS(1912), + [anon_sym__Nonnull] = ACTIONS(1912), + [anon_sym__Nullable_result] = ACTIONS(1912), + [anon_sym__Null_unspecified] = ACTIONS(1912), + [anon_sym___autoreleasing] = ACTIONS(1912), + [anon_sym___nullable] = ACTIONS(1912), + [anon_sym___nonnull] = ACTIONS(1912), + [anon_sym___strong] = ACTIONS(1912), + [anon_sym___weak] = ACTIONS(1912), + [anon_sym___bridge] = ACTIONS(1912), + [anon_sym___bridge_transfer] = ACTIONS(1912), + [anon_sym___bridge_retained] = ACTIONS(1912), + [anon_sym___unsafe_unretained] = ACTIONS(1912), + [anon_sym___block] = ACTIONS(1912), + [anon_sym___kindof] = ACTIONS(1912), + [anon_sym___unused] = ACTIONS(1912), + [anon_sym__Complex] = ACTIONS(1912), + [anon_sym___complex] = ACTIONS(1912), + [anon_sym_IBOutlet] = ACTIONS(1912), + [anon_sym_IBInspectable] = ACTIONS(1912), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1912), + [anon_sym_signed] = ACTIONS(1912), + [anon_sym_unsigned] = ACTIONS(1912), + [anon_sym_long] = ACTIONS(1912), + [anon_sym_short] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_switch] = ACTIONS(1912), + [anon_sym_case] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_do] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_goto] = ACTIONS(1912), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_sizeof] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1914), + [anon_sym_u_SQUOTE] = ACTIONS(1914), + [anon_sym_U_SQUOTE] = ACTIONS(1914), + [anon_sym_u8_SQUOTE] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_L_DQUOTE] = ACTIONS(1914), + [anon_sym_u_DQUOTE] = ACTIONS(1914), + [anon_sym_U_DQUOTE] = ACTIONS(1914), + [anon_sym_u8_DQUOTE] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_true] = ACTIONS(1912), + [sym_false] = ACTIONS(1912), + [sym_null] = ACTIONS(1912), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1914), + [anon_sym_ATimport] = ACTIONS(1914), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1912), + [anon_sym_ATcompatibility_alias] = ACTIONS(1914), + [anon_sym_ATprotocol] = ACTIONS(1914), + [anon_sym_ATclass] = ACTIONS(1914), + [anon_sym_ATinterface] = ACTIONS(1914), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1912), + [sym_method_attribute_specifier] = ACTIONS(1912), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1912), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE] = ACTIONS(1912), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_API_AVAILABLE] = ACTIONS(1912), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_API_DEPRECATED] = ACTIONS(1912), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1912), + [anon_sym___deprecated_msg] = ACTIONS(1912), + [anon_sym___deprecated_enum_msg] = ACTIONS(1912), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1912), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1912), + [anon_sym_ATimplementation] = ACTIONS(1914), + [anon_sym_NS_ENUM] = ACTIONS(1912), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1912), + [anon_sym_NS_OPTIONS] = ACTIONS(1912), + [anon_sym_typeof] = ACTIONS(1912), + [anon_sym___typeof] = ACTIONS(1912), + [anon_sym___typeof__] = ACTIONS(1912), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_nil] = ACTIONS(1912), + [sym_id] = ACTIONS(1912), + [sym_instancetype] = ACTIONS(1912), + [sym_Class] = ACTIONS(1912), + [sym_SEL] = ACTIONS(1912), + [sym_IMP] = ACTIONS(1912), + [sym_BOOL] = ACTIONS(1912), + [sym_auto] = ACTIONS(1912), + [anon_sym_ATautoreleasepool] = ACTIONS(1914), + [anon_sym_ATsynchronized] = ACTIONS(1914), + [anon_sym_ATtry] = ACTIONS(1914), + [anon_sym_ATthrow] = ACTIONS(1914), + [anon_sym_ATselector] = ACTIONS(1914), + [anon_sym_ATencode] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1912), + [sym_YES] = ACTIONS(1912), + [sym_NO] = ACTIONS(1912), + [anon_sym___builtin_available] = ACTIONS(1912), + [anon_sym_ATavailable] = ACTIONS(1914), + [anon_sym_va_arg] = ACTIONS(1912), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1115] = { + [ts_builtin_sym_end] = ACTIONS(2054), + [sym_identifier] = ACTIONS(2052), + [aux_sym_preproc_include_token1] = ACTIONS(2054), + [aux_sym_preproc_def_token1] = ACTIONS(2054), + [aux_sym_preproc_if_token1] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2052), + [anon_sym_LPAREN2] = ACTIONS(2054), + [anon_sym_BANG] = ACTIONS(2054), + [anon_sym_TILDE] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2052), + [anon_sym_PLUS] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_CARET] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_typedef] = ACTIONS(2052), + [anon_sym_extern] = ACTIONS(2052), + [anon_sym___attribute] = ACTIONS(2052), + [anon_sym___attribute__] = ACTIONS(2052), + [anon_sym___declspec] = ACTIONS(2052), + [anon_sym___cdecl] = ACTIONS(2052), + [anon_sym___clrcall] = ACTIONS(2052), + [anon_sym___stdcall] = ACTIONS(2052), + [anon_sym___fastcall] = ACTIONS(2052), + [anon_sym___thiscall] = ACTIONS(2052), + [anon_sym___vectorcall] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_RBRACE] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_auto] = ACTIONS(2052), + [anon_sym_register] = ACTIONS(2052), + [anon_sym_inline] = ACTIONS(2052), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_volatile] = ACTIONS(2052), + [anon_sym_restrict] = ACTIONS(2052), + [anon_sym__Atomic] = ACTIONS(2052), + [anon_sym_in] = ACTIONS(2052), + [anon_sym_out] = ACTIONS(2052), + [anon_sym_inout] = ACTIONS(2052), + [anon_sym_bycopy] = ACTIONS(2052), + [anon_sym_byref] = ACTIONS(2052), + [anon_sym_oneway] = ACTIONS(2052), + [anon_sym__Nullable] = ACTIONS(2052), + [anon_sym__Nonnull] = ACTIONS(2052), + [anon_sym__Nullable_result] = ACTIONS(2052), + [anon_sym__Null_unspecified] = ACTIONS(2052), + [anon_sym___autoreleasing] = ACTIONS(2052), + [anon_sym___nullable] = ACTIONS(2052), + [anon_sym___nonnull] = ACTIONS(2052), + [anon_sym___strong] = ACTIONS(2052), + [anon_sym___weak] = ACTIONS(2052), + [anon_sym___bridge] = ACTIONS(2052), + [anon_sym___bridge_transfer] = ACTIONS(2052), + [anon_sym___bridge_retained] = ACTIONS(2052), + [anon_sym___unsafe_unretained] = ACTIONS(2052), + [anon_sym___block] = ACTIONS(2052), + [anon_sym___kindof] = ACTIONS(2052), + [anon_sym___unused] = ACTIONS(2052), + [anon_sym__Complex] = ACTIONS(2052), + [anon_sym___complex] = ACTIONS(2052), + [anon_sym_IBOutlet] = ACTIONS(2052), + [anon_sym_IBInspectable] = ACTIONS(2052), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2052), + [anon_sym_signed] = ACTIONS(2052), + [anon_sym_unsigned] = ACTIONS(2052), + [anon_sym_long] = ACTIONS(2052), + [anon_sym_short] = ACTIONS(2052), + [sym_primitive_type] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_switch] = ACTIONS(2052), + [anon_sym_case] = ACTIONS(2052), + [anon_sym_default] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [anon_sym_do] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_goto] = ACTIONS(2052), + [anon_sym_DASH_DASH] = ACTIONS(2054), + [anon_sym_PLUS_PLUS] = ACTIONS(2054), + [anon_sym_sizeof] = ACTIONS(2052), + [sym_number_literal] = ACTIONS(2054), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2054), + [anon_sym_u_DQUOTE] = ACTIONS(2054), + [anon_sym_U_DQUOTE] = ACTIONS(2054), + [anon_sym_u8_DQUOTE] = ACTIONS(2054), + [anon_sym_DQUOTE] = ACTIONS(2054), + [sym_true] = ACTIONS(2052), + [sym_false] = ACTIONS(2052), + [sym_null] = ACTIONS(2052), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2054), + [anon_sym_ATimport] = ACTIONS(2054), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2052), + [anon_sym_ATcompatibility_alias] = ACTIONS(2054), + [anon_sym_ATprotocol] = ACTIONS(2054), + [anon_sym_ATclass] = ACTIONS(2054), + [anon_sym_ATinterface] = ACTIONS(2054), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2052), + [sym_method_attribute_specifier] = ACTIONS(2052), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2052), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2052), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2052), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2052), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2052), + [anon_sym_NS_AVAILABLE] = ACTIONS(2052), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2052), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_API_AVAILABLE] = ACTIONS(2052), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_API_DEPRECATED] = ACTIONS(2052), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2052), + [anon_sym___deprecated_msg] = ACTIONS(2052), + [anon_sym___deprecated_enum_msg] = ACTIONS(2052), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2052), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2052), + [anon_sym_ATimplementation] = ACTIONS(2054), + [anon_sym_NS_ENUM] = ACTIONS(2052), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2052), + [anon_sym_NS_OPTIONS] = ACTIONS(2052), + [anon_sym_typeof] = ACTIONS(2052), + [anon_sym___typeof] = ACTIONS(2052), + [anon_sym___typeof__] = ACTIONS(2052), + [sym_self] = ACTIONS(2052), + [sym_super] = ACTIONS(2052), + [sym_nil] = ACTIONS(2052), + [sym_id] = ACTIONS(2052), + [sym_instancetype] = ACTIONS(2052), + [sym_Class] = ACTIONS(2052), + [sym_SEL] = ACTIONS(2052), + [sym_IMP] = ACTIONS(2052), + [sym_BOOL] = ACTIONS(2052), + [sym_auto] = ACTIONS(2052), + [anon_sym_ATautoreleasepool] = ACTIONS(2054), + [anon_sym_ATsynchronized] = ACTIONS(2054), + [anon_sym_ATtry] = ACTIONS(2054), + [anon_sym_ATthrow] = ACTIONS(2054), + [anon_sym_ATselector] = ACTIONS(2054), + [anon_sym_ATencode] = ACTIONS(2054), + [anon_sym_AT] = ACTIONS(2052), + [sym_YES] = ACTIONS(2052), + [sym_NO] = ACTIONS(2052), + [anon_sym___builtin_available] = ACTIONS(2052), + [anon_sym_ATavailable] = ACTIONS(2054), + [anon_sym_va_arg] = ACTIONS(2052), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1116] = { + [ts_builtin_sym_end] = ACTIONS(2054), + [sym_identifier] = ACTIONS(2052), + [aux_sym_preproc_include_token1] = ACTIONS(2054), + [aux_sym_preproc_def_token1] = ACTIONS(2054), + [aux_sym_preproc_if_token1] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2052), + [anon_sym_LPAREN2] = ACTIONS(2054), + [anon_sym_BANG] = ACTIONS(2054), + [anon_sym_TILDE] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2052), + [anon_sym_PLUS] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_CARET] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_typedef] = ACTIONS(2052), + [anon_sym_extern] = ACTIONS(2052), + [anon_sym___attribute] = ACTIONS(2052), + [anon_sym___attribute__] = ACTIONS(2052), + [anon_sym___declspec] = ACTIONS(2052), + [anon_sym___cdecl] = ACTIONS(2052), + [anon_sym___clrcall] = ACTIONS(2052), + [anon_sym___stdcall] = ACTIONS(2052), + [anon_sym___fastcall] = ACTIONS(2052), + [anon_sym___thiscall] = ACTIONS(2052), + [anon_sym___vectorcall] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_RBRACE] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_auto] = ACTIONS(2052), + [anon_sym_register] = ACTIONS(2052), + [anon_sym_inline] = ACTIONS(2052), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_volatile] = ACTIONS(2052), + [anon_sym_restrict] = ACTIONS(2052), + [anon_sym__Atomic] = ACTIONS(2052), + [anon_sym_in] = ACTIONS(2052), + [anon_sym_out] = ACTIONS(2052), + [anon_sym_inout] = ACTIONS(2052), + [anon_sym_bycopy] = ACTIONS(2052), + [anon_sym_byref] = ACTIONS(2052), + [anon_sym_oneway] = ACTIONS(2052), + [anon_sym__Nullable] = ACTIONS(2052), + [anon_sym__Nonnull] = ACTIONS(2052), + [anon_sym__Nullable_result] = ACTIONS(2052), + [anon_sym__Null_unspecified] = ACTIONS(2052), + [anon_sym___autoreleasing] = ACTIONS(2052), + [anon_sym___nullable] = ACTIONS(2052), + [anon_sym___nonnull] = ACTIONS(2052), + [anon_sym___strong] = ACTIONS(2052), + [anon_sym___weak] = ACTIONS(2052), + [anon_sym___bridge] = ACTIONS(2052), + [anon_sym___bridge_transfer] = ACTIONS(2052), + [anon_sym___bridge_retained] = ACTIONS(2052), + [anon_sym___unsafe_unretained] = ACTIONS(2052), + [anon_sym___block] = ACTIONS(2052), + [anon_sym___kindof] = ACTIONS(2052), + [anon_sym___unused] = ACTIONS(2052), + [anon_sym__Complex] = ACTIONS(2052), + [anon_sym___complex] = ACTIONS(2052), + [anon_sym_IBOutlet] = ACTIONS(2052), + [anon_sym_IBInspectable] = ACTIONS(2052), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2052), + [anon_sym_signed] = ACTIONS(2052), + [anon_sym_unsigned] = ACTIONS(2052), + [anon_sym_long] = ACTIONS(2052), + [anon_sym_short] = ACTIONS(2052), + [sym_primitive_type] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_switch] = ACTIONS(2052), + [anon_sym_case] = ACTIONS(2052), + [anon_sym_default] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [anon_sym_do] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_goto] = ACTIONS(2052), + [anon_sym_DASH_DASH] = ACTIONS(2054), + [anon_sym_PLUS_PLUS] = ACTIONS(2054), + [anon_sym_sizeof] = ACTIONS(2052), + [sym_number_literal] = ACTIONS(2054), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2054), + [anon_sym_u_DQUOTE] = ACTIONS(2054), + [anon_sym_U_DQUOTE] = ACTIONS(2054), + [anon_sym_u8_DQUOTE] = ACTIONS(2054), + [anon_sym_DQUOTE] = ACTIONS(2054), + [sym_true] = ACTIONS(2052), + [sym_false] = ACTIONS(2052), + [sym_null] = ACTIONS(2052), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2054), + [anon_sym_ATimport] = ACTIONS(2054), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2052), + [anon_sym_ATcompatibility_alias] = ACTIONS(2054), + [anon_sym_ATprotocol] = ACTIONS(2054), + [anon_sym_ATclass] = ACTIONS(2054), + [anon_sym_ATinterface] = ACTIONS(2054), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2052), + [sym_method_attribute_specifier] = ACTIONS(2052), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2052), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2052), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2052), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2052), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2052), + [anon_sym_NS_AVAILABLE] = ACTIONS(2052), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2052), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_API_AVAILABLE] = ACTIONS(2052), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_API_DEPRECATED] = ACTIONS(2052), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2052), + [anon_sym___deprecated_msg] = ACTIONS(2052), + [anon_sym___deprecated_enum_msg] = ACTIONS(2052), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2052), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2052), + [anon_sym_ATimplementation] = ACTIONS(2054), + [anon_sym_NS_ENUM] = ACTIONS(2052), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2052), + [anon_sym_NS_OPTIONS] = ACTIONS(2052), + [anon_sym_typeof] = ACTIONS(2052), + [anon_sym___typeof] = ACTIONS(2052), + [anon_sym___typeof__] = ACTIONS(2052), + [sym_self] = ACTIONS(2052), + [sym_super] = ACTIONS(2052), + [sym_nil] = ACTIONS(2052), + [sym_id] = ACTIONS(2052), + [sym_instancetype] = ACTIONS(2052), + [sym_Class] = ACTIONS(2052), + [sym_SEL] = ACTIONS(2052), + [sym_IMP] = ACTIONS(2052), + [sym_BOOL] = ACTIONS(2052), + [sym_auto] = ACTIONS(2052), + [anon_sym_ATautoreleasepool] = ACTIONS(2054), + [anon_sym_ATsynchronized] = ACTIONS(2054), + [anon_sym_ATtry] = ACTIONS(2054), + [anon_sym_ATthrow] = ACTIONS(2054), + [anon_sym_ATselector] = ACTIONS(2054), + [anon_sym_ATencode] = ACTIONS(2054), + [anon_sym_AT] = ACTIONS(2052), + [sym_YES] = ACTIONS(2052), + [sym_NO] = ACTIONS(2052), + [anon_sym___builtin_available] = ACTIONS(2052), + [anon_sym_ATavailable] = ACTIONS(2054), + [anon_sym_va_arg] = ACTIONS(2052), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1117] = { + [ts_builtin_sym_end] = ACTIONS(2050), + [sym_identifier] = ACTIONS(2048), + [aux_sym_preproc_include_token1] = ACTIONS(2050), + [aux_sym_preproc_def_token1] = ACTIONS(2050), + [aux_sym_preproc_if_token1] = ACTIONS(2048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2048), + [anon_sym_LPAREN2] = ACTIONS(2050), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_TILDE] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2048), + [anon_sym_PLUS] = ACTIONS(2048), + [anon_sym_STAR] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2050), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym_typedef] = ACTIONS(2048), + [anon_sym_extern] = ACTIONS(2048), + [anon_sym___attribute] = ACTIONS(2048), + [anon_sym___attribute__] = ACTIONS(2048), + [anon_sym___declspec] = ACTIONS(2048), + [anon_sym___cdecl] = ACTIONS(2048), + [anon_sym___clrcall] = ACTIONS(2048), + [anon_sym___stdcall] = ACTIONS(2048), + [anon_sym___fastcall] = ACTIONS(2048), + [anon_sym___thiscall] = ACTIONS(2048), + [anon_sym___vectorcall] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2050), + [anon_sym_RBRACE] = ACTIONS(2050), + [anon_sym_LBRACK] = ACTIONS(2050), + [anon_sym_static] = ACTIONS(2048), + [anon_sym_auto] = ACTIONS(2048), + [anon_sym_register] = ACTIONS(2048), + [anon_sym_inline] = ACTIONS(2048), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2048), + [anon_sym_const] = ACTIONS(2048), + [anon_sym_volatile] = ACTIONS(2048), + [anon_sym_restrict] = ACTIONS(2048), + [anon_sym__Atomic] = ACTIONS(2048), + [anon_sym_in] = ACTIONS(2048), + [anon_sym_out] = ACTIONS(2048), + [anon_sym_inout] = ACTIONS(2048), + [anon_sym_bycopy] = ACTIONS(2048), + [anon_sym_byref] = ACTIONS(2048), + [anon_sym_oneway] = ACTIONS(2048), + [anon_sym__Nullable] = ACTIONS(2048), + [anon_sym__Nonnull] = ACTIONS(2048), + [anon_sym__Nullable_result] = ACTIONS(2048), + [anon_sym__Null_unspecified] = ACTIONS(2048), + [anon_sym___autoreleasing] = ACTIONS(2048), + [anon_sym___nullable] = ACTIONS(2048), + [anon_sym___nonnull] = ACTIONS(2048), + [anon_sym___strong] = ACTIONS(2048), + [anon_sym___weak] = ACTIONS(2048), + [anon_sym___bridge] = ACTIONS(2048), + [anon_sym___bridge_transfer] = ACTIONS(2048), + [anon_sym___bridge_retained] = ACTIONS(2048), + [anon_sym___unsafe_unretained] = ACTIONS(2048), + [anon_sym___block] = ACTIONS(2048), + [anon_sym___kindof] = ACTIONS(2048), + [anon_sym___unused] = ACTIONS(2048), + [anon_sym__Complex] = ACTIONS(2048), + [anon_sym___complex] = ACTIONS(2048), + [anon_sym_IBOutlet] = ACTIONS(2048), + [anon_sym_IBInspectable] = ACTIONS(2048), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2048), + [anon_sym_signed] = ACTIONS(2048), + [anon_sym_unsigned] = ACTIONS(2048), + [anon_sym_long] = ACTIONS(2048), + [anon_sym_short] = ACTIONS(2048), + [sym_primitive_type] = ACTIONS(2048), + [anon_sym_enum] = ACTIONS(2048), + [anon_sym_struct] = ACTIONS(2048), + [anon_sym_union] = ACTIONS(2048), + [anon_sym_if] = ACTIONS(2048), + [anon_sym_switch] = ACTIONS(2048), + [anon_sym_case] = ACTIONS(2048), + [anon_sym_default] = ACTIONS(2048), + [anon_sym_while] = ACTIONS(2048), + [anon_sym_do] = ACTIONS(2048), + [anon_sym_for] = ACTIONS(2048), + [anon_sym_return] = ACTIONS(2048), + [anon_sym_break] = ACTIONS(2048), + [anon_sym_continue] = ACTIONS(2048), + [anon_sym_goto] = ACTIONS(2048), + [anon_sym_DASH_DASH] = ACTIONS(2050), + [anon_sym_PLUS_PLUS] = ACTIONS(2050), + [anon_sym_sizeof] = ACTIONS(2048), + [sym_number_literal] = ACTIONS(2050), + [anon_sym_L_SQUOTE] = ACTIONS(2050), + [anon_sym_u_SQUOTE] = ACTIONS(2050), + [anon_sym_U_SQUOTE] = ACTIONS(2050), + [anon_sym_u8_SQUOTE] = ACTIONS(2050), + [anon_sym_SQUOTE] = ACTIONS(2050), + [anon_sym_L_DQUOTE] = ACTIONS(2050), + [anon_sym_u_DQUOTE] = ACTIONS(2050), + [anon_sym_U_DQUOTE] = ACTIONS(2050), + [anon_sym_u8_DQUOTE] = ACTIONS(2050), + [anon_sym_DQUOTE] = ACTIONS(2050), + [sym_true] = ACTIONS(2048), + [sym_false] = ACTIONS(2048), + [sym_null] = ACTIONS(2048), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2050), + [anon_sym_ATimport] = ACTIONS(2050), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2048), + [anon_sym_ATcompatibility_alias] = ACTIONS(2050), + [anon_sym_ATprotocol] = ACTIONS(2050), + [anon_sym_ATclass] = ACTIONS(2050), + [anon_sym_ATinterface] = ACTIONS(2050), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2048), + [sym_method_attribute_specifier] = ACTIONS(2048), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2048), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2048), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2048), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2048), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2048), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2048), + [anon_sym_NS_AVAILABLE] = ACTIONS(2048), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2048), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2048), + [anon_sym_API_AVAILABLE] = ACTIONS(2048), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2048), + [anon_sym_API_DEPRECATED] = ACTIONS(2048), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2048), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2048), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2048), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2048), + [anon_sym___deprecated_msg] = ACTIONS(2048), + [anon_sym___deprecated_enum_msg] = ACTIONS(2048), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2048), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2048), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2048), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2048), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2048), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2048), + [anon_sym_ATimplementation] = ACTIONS(2050), + [anon_sym_NS_ENUM] = ACTIONS(2048), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2048), + [anon_sym_NS_OPTIONS] = ACTIONS(2048), + [anon_sym_typeof] = ACTIONS(2048), + [anon_sym___typeof] = ACTIONS(2048), + [anon_sym___typeof__] = ACTIONS(2048), + [sym_self] = ACTIONS(2048), + [sym_super] = ACTIONS(2048), + [sym_nil] = ACTIONS(2048), + [sym_id] = ACTIONS(2048), + [sym_instancetype] = ACTIONS(2048), + [sym_Class] = ACTIONS(2048), + [sym_SEL] = ACTIONS(2048), + [sym_IMP] = ACTIONS(2048), + [sym_BOOL] = ACTIONS(2048), + [sym_auto] = ACTIONS(2048), + [anon_sym_ATautoreleasepool] = ACTIONS(2050), + [anon_sym_ATsynchronized] = ACTIONS(2050), + [anon_sym_ATtry] = ACTIONS(2050), + [anon_sym_ATthrow] = ACTIONS(2050), + [anon_sym_ATselector] = ACTIONS(2050), + [anon_sym_ATencode] = ACTIONS(2050), + [anon_sym_AT] = ACTIONS(2048), + [sym_YES] = ACTIONS(2048), + [sym_NO] = ACTIONS(2048), + [anon_sym___builtin_available] = ACTIONS(2048), + [anon_sym_ATavailable] = ACTIONS(2050), + [anon_sym_va_arg] = ACTIONS(2048), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1118] = { + [ts_builtin_sym_end] = ACTIONS(2046), + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2046), + [aux_sym_preproc_def_token1] = ACTIONS(2046), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_auto] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym_in] = ACTIONS(2044), + [anon_sym_out] = ACTIONS(2044), + [anon_sym_inout] = ACTIONS(2044), + [anon_sym_bycopy] = ACTIONS(2044), + [anon_sym_byref] = ACTIONS(2044), + [anon_sym_oneway] = ACTIONS(2044), + [anon_sym__Nullable] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym__Nullable_result] = ACTIONS(2044), + [anon_sym__Null_unspecified] = ACTIONS(2044), + [anon_sym___autoreleasing] = ACTIONS(2044), + [anon_sym___nullable] = ACTIONS(2044), + [anon_sym___nonnull] = ACTIONS(2044), + [anon_sym___strong] = ACTIONS(2044), + [anon_sym___weak] = ACTIONS(2044), + [anon_sym___bridge] = ACTIONS(2044), + [anon_sym___bridge_transfer] = ACTIONS(2044), + [anon_sym___bridge_retained] = ACTIONS(2044), + [anon_sym___unsafe_unretained] = ACTIONS(2044), + [anon_sym___block] = ACTIONS(2044), + [anon_sym___kindof] = ACTIONS(2044), + [anon_sym___unused] = ACTIONS(2044), + [anon_sym__Complex] = ACTIONS(2044), + [anon_sym___complex] = ACTIONS(2044), + [anon_sym_IBOutlet] = ACTIONS(2044), + [anon_sym_IBInspectable] = ACTIONS(2044), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2044), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [sym_null] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2046), + [anon_sym_ATimport] = ACTIONS(2046), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2044), + [anon_sym_ATcompatibility_alias] = ACTIONS(2046), + [anon_sym_ATprotocol] = ACTIONS(2046), + [anon_sym_ATclass] = ACTIONS(2046), + [anon_sym_ATinterface] = ACTIONS(2046), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2044), + [sym_method_attribute_specifier] = ACTIONS(2044), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2044), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE] = ACTIONS(2044), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_API_AVAILABLE] = ACTIONS(2044), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_API_DEPRECATED] = ACTIONS(2044), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2044), + [anon_sym___deprecated_msg] = ACTIONS(2044), + [anon_sym___deprecated_enum_msg] = ACTIONS(2044), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2044), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2044), + [anon_sym_ATimplementation] = ACTIONS(2046), + [anon_sym_NS_ENUM] = ACTIONS(2044), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2044), + [anon_sym_NS_OPTIONS] = ACTIONS(2044), + [anon_sym_typeof] = ACTIONS(2044), + [anon_sym___typeof] = ACTIONS(2044), + [anon_sym___typeof__] = ACTIONS(2044), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_nil] = ACTIONS(2044), + [sym_id] = ACTIONS(2044), + [sym_instancetype] = ACTIONS(2044), + [sym_Class] = ACTIONS(2044), + [sym_SEL] = ACTIONS(2044), + [sym_IMP] = ACTIONS(2044), + [sym_BOOL] = ACTIONS(2044), + [sym_auto] = ACTIONS(2044), + [anon_sym_ATautoreleasepool] = ACTIONS(2046), + [anon_sym_ATsynchronized] = ACTIONS(2046), + [anon_sym_ATtry] = ACTIONS(2046), + [anon_sym_ATthrow] = ACTIONS(2046), + [anon_sym_ATselector] = ACTIONS(2046), + [anon_sym_ATencode] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2044), + [sym_YES] = ACTIONS(2044), + [sym_NO] = ACTIONS(2044), + [anon_sym___builtin_available] = ACTIONS(2044), + [anon_sym_ATavailable] = ACTIONS(2046), + [anon_sym_va_arg] = ACTIONS(2044), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1119] = { + [ts_builtin_sym_end] = ACTIONS(1870), + [sym_identifier] = ACTIONS(1868), + [aux_sym_preproc_include_token1] = ACTIONS(1870), + [aux_sym_preproc_def_token1] = ACTIONS(1870), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym___attribute] = ACTIONS(1868), + [anon_sym___attribute__] = ACTIONS(1868), + [anon_sym___declspec] = ACTIONS(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_auto] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_inline] = ACTIONS(1868), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_volatile] = ACTIONS(1868), + [anon_sym_restrict] = ACTIONS(1868), + [anon_sym__Atomic] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_out] = ACTIONS(1868), + [anon_sym_inout] = ACTIONS(1868), + [anon_sym_bycopy] = ACTIONS(1868), + [anon_sym_byref] = ACTIONS(1868), + [anon_sym_oneway] = ACTIONS(1868), + [anon_sym__Nullable] = ACTIONS(1868), + [anon_sym__Nonnull] = ACTIONS(1868), + [anon_sym__Nullable_result] = ACTIONS(1868), + [anon_sym__Null_unspecified] = ACTIONS(1868), + [anon_sym___autoreleasing] = ACTIONS(1868), + [anon_sym___nullable] = ACTIONS(1868), + [anon_sym___nonnull] = ACTIONS(1868), + [anon_sym___strong] = ACTIONS(1868), + [anon_sym___weak] = ACTIONS(1868), + [anon_sym___bridge] = ACTIONS(1868), + [anon_sym___bridge_transfer] = ACTIONS(1868), + [anon_sym___bridge_retained] = ACTIONS(1868), + [anon_sym___unsafe_unretained] = ACTIONS(1868), + [anon_sym___block] = ACTIONS(1868), + [anon_sym___kindof] = ACTIONS(1868), + [anon_sym___unused] = ACTIONS(1868), + [anon_sym__Complex] = ACTIONS(1868), + [anon_sym___complex] = ACTIONS(1868), + [anon_sym_IBOutlet] = ACTIONS(1868), + [anon_sym_IBInspectable] = ACTIONS(1868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1868), + [anon_sym_signed] = ACTIONS(1868), + [anon_sym_unsigned] = ACTIONS(1868), + [anon_sym_long] = ACTIONS(1868), + [anon_sym_short] = ACTIONS(1868), + [sym_primitive_type] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_sizeof] = ACTIONS(1868), + [sym_number_literal] = ACTIONS(1870), + [anon_sym_L_SQUOTE] = ACTIONS(1870), + [anon_sym_u_SQUOTE] = ACTIONS(1870), + [anon_sym_U_SQUOTE] = ACTIONS(1870), + [anon_sym_u8_SQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_L_DQUOTE] = ACTIONS(1870), + [anon_sym_u_DQUOTE] = ACTIONS(1870), + [anon_sym_U_DQUOTE] = ACTIONS(1870), + [anon_sym_u8_DQUOTE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1870), + [anon_sym_ATimport] = ACTIONS(1870), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1868), + [anon_sym_ATcompatibility_alias] = ACTIONS(1870), + [anon_sym_ATprotocol] = ACTIONS(1870), + [anon_sym_ATclass] = ACTIONS(1870), + [anon_sym_ATinterface] = ACTIONS(1870), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1868), + [sym_method_attribute_specifier] = ACTIONS(1868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE] = ACTIONS(1868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_API_AVAILABLE] = ACTIONS(1868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_API_DEPRECATED] = ACTIONS(1868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1868), + [anon_sym___deprecated_msg] = ACTIONS(1868), + [anon_sym___deprecated_enum_msg] = ACTIONS(1868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1868), + [anon_sym_ATimplementation] = ACTIONS(1870), + [anon_sym_NS_ENUM] = ACTIONS(1868), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1868), + [anon_sym_NS_OPTIONS] = ACTIONS(1868), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym___typeof] = ACTIONS(1868), + [anon_sym___typeof__] = ACTIONS(1868), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [sym_id] = ACTIONS(1868), + [sym_instancetype] = ACTIONS(1868), + [sym_Class] = ACTIONS(1868), + [sym_SEL] = ACTIONS(1868), + [sym_IMP] = ACTIONS(1868), + [sym_BOOL] = ACTIONS(1868), + [sym_auto] = ACTIONS(1868), + [anon_sym_ATautoreleasepool] = ACTIONS(1870), + [anon_sym_ATsynchronized] = ACTIONS(1870), + [anon_sym_ATtry] = ACTIONS(1870), + [anon_sym_ATthrow] = ACTIONS(1870), + [anon_sym_ATselector] = ACTIONS(1870), + [anon_sym_ATencode] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1868), + [sym_YES] = ACTIONS(1868), + [sym_NO] = ACTIONS(1868), + [anon_sym___builtin_available] = ACTIONS(1868), + [anon_sym_ATavailable] = ACTIONS(1870), + [anon_sym_va_arg] = ACTIONS(1868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1120] = { + [ts_builtin_sym_end] = ACTIONS(1914), + [sym_identifier] = ACTIONS(1912), + [aux_sym_preproc_include_token1] = ACTIONS(1914), + [aux_sym_preproc_def_token1] = ACTIONS(1914), + [aux_sym_preproc_if_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1912), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_CARET] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym___attribute] = ACTIONS(1912), + [anon_sym___attribute__] = ACTIONS(1912), + [anon_sym___declspec] = ACTIONS(1912), + [anon_sym___cdecl] = ACTIONS(1912), + [anon_sym___clrcall] = ACTIONS(1912), + [anon_sym___stdcall] = ACTIONS(1912), + [anon_sym___fastcall] = ACTIONS(1912), + [anon_sym___thiscall] = ACTIONS(1912), + [anon_sym___vectorcall] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_auto] = ACTIONS(1912), + [anon_sym_register] = ACTIONS(1912), + [anon_sym_inline] = ACTIONS(1912), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_volatile] = ACTIONS(1912), + [anon_sym_restrict] = ACTIONS(1912), + [anon_sym__Atomic] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1912), + [anon_sym_out] = ACTIONS(1912), + [anon_sym_inout] = ACTIONS(1912), + [anon_sym_bycopy] = ACTIONS(1912), + [anon_sym_byref] = ACTIONS(1912), + [anon_sym_oneway] = ACTIONS(1912), + [anon_sym__Nullable] = ACTIONS(1912), + [anon_sym__Nonnull] = ACTIONS(1912), + [anon_sym__Nullable_result] = ACTIONS(1912), + [anon_sym__Null_unspecified] = ACTIONS(1912), + [anon_sym___autoreleasing] = ACTIONS(1912), + [anon_sym___nullable] = ACTIONS(1912), + [anon_sym___nonnull] = ACTIONS(1912), + [anon_sym___strong] = ACTIONS(1912), + [anon_sym___weak] = ACTIONS(1912), + [anon_sym___bridge] = ACTIONS(1912), + [anon_sym___bridge_transfer] = ACTIONS(1912), + [anon_sym___bridge_retained] = ACTIONS(1912), + [anon_sym___unsafe_unretained] = ACTIONS(1912), + [anon_sym___block] = ACTIONS(1912), + [anon_sym___kindof] = ACTIONS(1912), + [anon_sym___unused] = ACTIONS(1912), + [anon_sym__Complex] = ACTIONS(1912), + [anon_sym___complex] = ACTIONS(1912), + [anon_sym_IBOutlet] = ACTIONS(1912), + [anon_sym_IBInspectable] = ACTIONS(1912), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1912), + [anon_sym_signed] = ACTIONS(1912), + [anon_sym_unsigned] = ACTIONS(1912), + [anon_sym_long] = ACTIONS(1912), + [anon_sym_short] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_switch] = ACTIONS(1912), + [anon_sym_case] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_do] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_goto] = ACTIONS(1912), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_sizeof] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1914), + [anon_sym_u_SQUOTE] = ACTIONS(1914), + [anon_sym_U_SQUOTE] = ACTIONS(1914), + [anon_sym_u8_SQUOTE] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_L_DQUOTE] = ACTIONS(1914), + [anon_sym_u_DQUOTE] = ACTIONS(1914), + [anon_sym_U_DQUOTE] = ACTIONS(1914), + [anon_sym_u8_DQUOTE] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_true] = ACTIONS(1912), + [sym_false] = ACTIONS(1912), + [sym_null] = ACTIONS(1912), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1914), + [anon_sym_ATimport] = ACTIONS(1914), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1912), + [anon_sym_ATcompatibility_alias] = ACTIONS(1914), + [anon_sym_ATprotocol] = ACTIONS(1914), + [anon_sym_ATclass] = ACTIONS(1914), + [anon_sym_ATinterface] = ACTIONS(1914), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1912), + [sym_method_attribute_specifier] = ACTIONS(1912), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1912), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE] = ACTIONS(1912), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_API_AVAILABLE] = ACTIONS(1912), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_API_DEPRECATED] = ACTIONS(1912), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1912), + [anon_sym___deprecated_msg] = ACTIONS(1912), + [anon_sym___deprecated_enum_msg] = ACTIONS(1912), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1912), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1912), + [anon_sym_ATimplementation] = ACTIONS(1914), + [anon_sym_NS_ENUM] = ACTIONS(1912), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1912), + [anon_sym_NS_OPTIONS] = ACTIONS(1912), + [anon_sym_typeof] = ACTIONS(1912), + [anon_sym___typeof] = ACTIONS(1912), + [anon_sym___typeof__] = ACTIONS(1912), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_nil] = ACTIONS(1912), + [sym_id] = ACTIONS(1912), + [sym_instancetype] = ACTIONS(1912), + [sym_Class] = ACTIONS(1912), + [sym_SEL] = ACTIONS(1912), + [sym_IMP] = ACTIONS(1912), + [sym_BOOL] = ACTIONS(1912), + [sym_auto] = ACTIONS(1912), + [anon_sym_ATautoreleasepool] = ACTIONS(1914), + [anon_sym_ATsynchronized] = ACTIONS(1914), + [anon_sym_ATtry] = ACTIONS(1914), + [anon_sym_ATthrow] = ACTIONS(1914), + [anon_sym_ATselector] = ACTIONS(1914), + [anon_sym_ATencode] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1912), + [sym_YES] = ACTIONS(1912), + [sym_NO] = ACTIONS(1912), + [anon_sym___builtin_available] = ACTIONS(1912), + [anon_sym_ATavailable] = ACTIONS(1914), + [anon_sym_va_arg] = ACTIONS(1912), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1121] = { + [ts_builtin_sym_end] = ACTIONS(2046), + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2046), + [aux_sym_preproc_def_token1] = ACTIONS(2046), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_auto] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym_in] = ACTIONS(2044), + [anon_sym_out] = ACTIONS(2044), + [anon_sym_inout] = ACTIONS(2044), + [anon_sym_bycopy] = ACTIONS(2044), + [anon_sym_byref] = ACTIONS(2044), + [anon_sym_oneway] = ACTIONS(2044), + [anon_sym__Nullable] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym__Nullable_result] = ACTIONS(2044), + [anon_sym__Null_unspecified] = ACTIONS(2044), + [anon_sym___autoreleasing] = ACTIONS(2044), + [anon_sym___nullable] = ACTIONS(2044), + [anon_sym___nonnull] = ACTIONS(2044), + [anon_sym___strong] = ACTIONS(2044), + [anon_sym___weak] = ACTIONS(2044), + [anon_sym___bridge] = ACTIONS(2044), + [anon_sym___bridge_transfer] = ACTIONS(2044), + [anon_sym___bridge_retained] = ACTIONS(2044), + [anon_sym___unsafe_unretained] = ACTIONS(2044), + [anon_sym___block] = ACTIONS(2044), + [anon_sym___kindof] = ACTIONS(2044), + [anon_sym___unused] = ACTIONS(2044), + [anon_sym__Complex] = ACTIONS(2044), + [anon_sym___complex] = ACTIONS(2044), + [anon_sym_IBOutlet] = ACTIONS(2044), + [anon_sym_IBInspectable] = ACTIONS(2044), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2044), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [sym_null] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2046), + [anon_sym_ATimport] = ACTIONS(2046), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2044), + [anon_sym_ATcompatibility_alias] = ACTIONS(2046), + [anon_sym_ATprotocol] = ACTIONS(2046), + [anon_sym_ATclass] = ACTIONS(2046), + [anon_sym_ATinterface] = ACTIONS(2046), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2044), + [sym_method_attribute_specifier] = ACTIONS(2044), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2044), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE] = ACTIONS(2044), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_API_AVAILABLE] = ACTIONS(2044), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_API_DEPRECATED] = ACTIONS(2044), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2044), + [anon_sym___deprecated_msg] = ACTIONS(2044), + [anon_sym___deprecated_enum_msg] = ACTIONS(2044), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2044), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2044), + [anon_sym_ATimplementation] = ACTIONS(2046), + [anon_sym_NS_ENUM] = ACTIONS(2044), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2044), + [anon_sym_NS_OPTIONS] = ACTIONS(2044), + [anon_sym_typeof] = ACTIONS(2044), + [anon_sym___typeof] = ACTIONS(2044), + [anon_sym___typeof__] = ACTIONS(2044), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_nil] = ACTIONS(2044), + [sym_id] = ACTIONS(2044), + [sym_instancetype] = ACTIONS(2044), + [sym_Class] = ACTIONS(2044), + [sym_SEL] = ACTIONS(2044), + [sym_IMP] = ACTIONS(2044), + [sym_BOOL] = ACTIONS(2044), + [sym_auto] = ACTIONS(2044), + [anon_sym_ATautoreleasepool] = ACTIONS(2046), + [anon_sym_ATsynchronized] = ACTIONS(2046), + [anon_sym_ATtry] = ACTIONS(2046), + [anon_sym_ATthrow] = ACTIONS(2046), + [anon_sym_ATselector] = ACTIONS(2046), + [anon_sym_ATencode] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2044), + [sym_YES] = ACTIONS(2044), + [sym_NO] = ACTIONS(2044), + [anon_sym___builtin_available] = ACTIONS(2044), + [anon_sym_ATavailable] = ACTIONS(2046), + [anon_sym_va_arg] = ACTIONS(2044), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1122] = { + [ts_builtin_sym_end] = ACTIONS(1870), + [sym_identifier] = ACTIONS(1868), + [aux_sym_preproc_include_token1] = ACTIONS(1870), + [aux_sym_preproc_def_token1] = ACTIONS(1870), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym___attribute] = ACTIONS(1868), + [anon_sym___attribute__] = ACTIONS(1868), + [anon_sym___declspec] = ACTIONS(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_auto] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_inline] = ACTIONS(1868), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_volatile] = ACTIONS(1868), + [anon_sym_restrict] = ACTIONS(1868), + [anon_sym__Atomic] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_out] = ACTIONS(1868), + [anon_sym_inout] = ACTIONS(1868), + [anon_sym_bycopy] = ACTIONS(1868), + [anon_sym_byref] = ACTIONS(1868), + [anon_sym_oneway] = ACTIONS(1868), + [anon_sym__Nullable] = ACTIONS(1868), + [anon_sym__Nonnull] = ACTIONS(1868), + [anon_sym__Nullable_result] = ACTIONS(1868), + [anon_sym__Null_unspecified] = ACTIONS(1868), + [anon_sym___autoreleasing] = ACTIONS(1868), + [anon_sym___nullable] = ACTIONS(1868), + [anon_sym___nonnull] = ACTIONS(1868), + [anon_sym___strong] = ACTIONS(1868), + [anon_sym___weak] = ACTIONS(1868), + [anon_sym___bridge] = ACTIONS(1868), + [anon_sym___bridge_transfer] = ACTIONS(1868), + [anon_sym___bridge_retained] = ACTIONS(1868), + [anon_sym___unsafe_unretained] = ACTIONS(1868), + [anon_sym___block] = ACTIONS(1868), + [anon_sym___kindof] = ACTIONS(1868), + [anon_sym___unused] = ACTIONS(1868), + [anon_sym__Complex] = ACTIONS(1868), + [anon_sym___complex] = ACTIONS(1868), + [anon_sym_IBOutlet] = ACTIONS(1868), + [anon_sym_IBInspectable] = ACTIONS(1868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1868), + [anon_sym_signed] = ACTIONS(1868), + [anon_sym_unsigned] = ACTIONS(1868), + [anon_sym_long] = ACTIONS(1868), + [anon_sym_short] = ACTIONS(1868), + [sym_primitive_type] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_sizeof] = ACTIONS(1868), + [sym_number_literal] = ACTIONS(1870), + [anon_sym_L_SQUOTE] = ACTIONS(1870), + [anon_sym_u_SQUOTE] = ACTIONS(1870), + [anon_sym_U_SQUOTE] = ACTIONS(1870), + [anon_sym_u8_SQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_L_DQUOTE] = ACTIONS(1870), + [anon_sym_u_DQUOTE] = ACTIONS(1870), + [anon_sym_U_DQUOTE] = ACTIONS(1870), + [anon_sym_u8_DQUOTE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1870), + [anon_sym_ATimport] = ACTIONS(1870), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1868), + [anon_sym_ATcompatibility_alias] = ACTIONS(1870), + [anon_sym_ATprotocol] = ACTIONS(1870), + [anon_sym_ATclass] = ACTIONS(1870), + [anon_sym_ATinterface] = ACTIONS(1870), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1868), + [sym_method_attribute_specifier] = ACTIONS(1868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE] = ACTIONS(1868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_API_AVAILABLE] = ACTIONS(1868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_API_DEPRECATED] = ACTIONS(1868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1868), + [anon_sym___deprecated_msg] = ACTIONS(1868), + [anon_sym___deprecated_enum_msg] = ACTIONS(1868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1868), + [anon_sym_ATimplementation] = ACTIONS(1870), + [anon_sym_NS_ENUM] = ACTIONS(1868), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1868), + [anon_sym_NS_OPTIONS] = ACTIONS(1868), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym___typeof] = ACTIONS(1868), + [anon_sym___typeof__] = ACTIONS(1868), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [sym_id] = ACTIONS(1868), + [sym_instancetype] = ACTIONS(1868), + [sym_Class] = ACTIONS(1868), + [sym_SEL] = ACTIONS(1868), + [sym_IMP] = ACTIONS(1868), + [sym_BOOL] = ACTIONS(1868), + [sym_auto] = ACTIONS(1868), + [anon_sym_ATautoreleasepool] = ACTIONS(1870), + [anon_sym_ATsynchronized] = ACTIONS(1870), + [anon_sym_ATtry] = ACTIONS(1870), + [anon_sym_ATthrow] = ACTIONS(1870), + [anon_sym_ATselector] = ACTIONS(1870), + [anon_sym_ATencode] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1868), + [sym_YES] = ACTIONS(1868), + [sym_NO] = ACTIONS(1868), + [anon_sym___builtin_available] = ACTIONS(1868), + [anon_sym_ATavailable] = ACTIONS(1870), + [anon_sym_va_arg] = ACTIONS(1868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1123] = { + [ts_builtin_sym_end] = ACTIONS(1910), + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1124] = { + [ts_builtin_sym_end] = ACTIONS(1870), + [sym_identifier] = ACTIONS(1868), + [aux_sym_preproc_include_token1] = ACTIONS(1870), + [aux_sym_preproc_def_token1] = ACTIONS(1870), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym___attribute] = ACTIONS(1868), + [anon_sym___attribute__] = ACTIONS(1868), + [anon_sym___declspec] = ACTIONS(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_auto] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_inline] = ACTIONS(1868), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_volatile] = ACTIONS(1868), + [anon_sym_restrict] = ACTIONS(1868), + [anon_sym__Atomic] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_out] = ACTIONS(1868), + [anon_sym_inout] = ACTIONS(1868), + [anon_sym_bycopy] = ACTIONS(1868), + [anon_sym_byref] = ACTIONS(1868), + [anon_sym_oneway] = ACTIONS(1868), + [anon_sym__Nullable] = ACTIONS(1868), + [anon_sym__Nonnull] = ACTIONS(1868), + [anon_sym__Nullable_result] = ACTIONS(1868), + [anon_sym__Null_unspecified] = ACTIONS(1868), + [anon_sym___autoreleasing] = ACTIONS(1868), + [anon_sym___nullable] = ACTIONS(1868), + [anon_sym___nonnull] = ACTIONS(1868), + [anon_sym___strong] = ACTIONS(1868), + [anon_sym___weak] = ACTIONS(1868), + [anon_sym___bridge] = ACTIONS(1868), + [anon_sym___bridge_transfer] = ACTIONS(1868), + [anon_sym___bridge_retained] = ACTIONS(1868), + [anon_sym___unsafe_unretained] = ACTIONS(1868), + [anon_sym___block] = ACTIONS(1868), + [anon_sym___kindof] = ACTIONS(1868), + [anon_sym___unused] = ACTIONS(1868), + [anon_sym__Complex] = ACTIONS(1868), + [anon_sym___complex] = ACTIONS(1868), + [anon_sym_IBOutlet] = ACTIONS(1868), + [anon_sym_IBInspectable] = ACTIONS(1868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1868), + [anon_sym_signed] = ACTIONS(1868), + [anon_sym_unsigned] = ACTIONS(1868), + [anon_sym_long] = ACTIONS(1868), + [anon_sym_short] = ACTIONS(1868), + [sym_primitive_type] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_sizeof] = ACTIONS(1868), + [sym_number_literal] = ACTIONS(1870), + [anon_sym_L_SQUOTE] = ACTIONS(1870), + [anon_sym_u_SQUOTE] = ACTIONS(1870), + [anon_sym_U_SQUOTE] = ACTIONS(1870), + [anon_sym_u8_SQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_L_DQUOTE] = ACTIONS(1870), + [anon_sym_u_DQUOTE] = ACTIONS(1870), + [anon_sym_U_DQUOTE] = ACTIONS(1870), + [anon_sym_u8_DQUOTE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1870), + [anon_sym_ATimport] = ACTIONS(1870), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1868), + [anon_sym_ATcompatibility_alias] = ACTIONS(1870), + [anon_sym_ATprotocol] = ACTIONS(1870), + [anon_sym_ATclass] = ACTIONS(1870), + [anon_sym_ATinterface] = ACTIONS(1870), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1868), + [sym_method_attribute_specifier] = ACTIONS(1868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE] = ACTIONS(1868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_API_AVAILABLE] = ACTIONS(1868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_API_DEPRECATED] = ACTIONS(1868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1868), + [anon_sym___deprecated_msg] = ACTIONS(1868), + [anon_sym___deprecated_enum_msg] = ACTIONS(1868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1868), + [anon_sym_ATimplementation] = ACTIONS(1870), + [anon_sym_NS_ENUM] = ACTIONS(1868), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1868), + [anon_sym_NS_OPTIONS] = ACTIONS(1868), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym___typeof] = ACTIONS(1868), + [anon_sym___typeof__] = ACTIONS(1868), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [sym_id] = ACTIONS(1868), + [sym_instancetype] = ACTIONS(1868), + [sym_Class] = ACTIONS(1868), + [sym_SEL] = ACTIONS(1868), + [sym_IMP] = ACTIONS(1868), + [sym_BOOL] = ACTIONS(1868), + [sym_auto] = ACTIONS(1868), + [anon_sym_ATautoreleasepool] = ACTIONS(1870), + [anon_sym_ATsynchronized] = ACTIONS(1870), + [anon_sym_ATtry] = ACTIONS(1870), + [anon_sym_ATthrow] = ACTIONS(1870), + [anon_sym_ATselector] = ACTIONS(1870), + [anon_sym_ATencode] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1868), + [sym_YES] = ACTIONS(1868), + [sym_NO] = ACTIONS(1868), + [anon_sym___builtin_available] = ACTIONS(1868), + [anon_sym_ATavailable] = ACTIONS(1870), + [anon_sym_va_arg] = ACTIONS(1868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1125] = { + [ts_builtin_sym_end] = ACTIONS(1870), + [sym_identifier] = ACTIONS(1868), + [aux_sym_preproc_include_token1] = ACTIONS(1870), + [aux_sym_preproc_def_token1] = ACTIONS(1870), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym___attribute] = ACTIONS(1868), + [anon_sym___attribute__] = ACTIONS(1868), + [anon_sym___declspec] = ACTIONS(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_auto] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_inline] = ACTIONS(1868), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_volatile] = ACTIONS(1868), + [anon_sym_restrict] = ACTIONS(1868), + [anon_sym__Atomic] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_out] = ACTIONS(1868), + [anon_sym_inout] = ACTIONS(1868), + [anon_sym_bycopy] = ACTIONS(1868), + [anon_sym_byref] = ACTIONS(1868), + [anon_sym_oneway] = ACTIONS(1868), + [anon_sym__Nullable] = ACTIONS(1868), + [anon_sym__Nonnull] = ACTIONS(1868), + [anon_sym__Nullable_result] = ACTIONS(1868), + [anon_sym__Null_unspecified] = ACTIONS(1868), + [anon_sym___autoreleasing] = ACTIONS(1868), + [anon_sym___nullable] = ACTIONS(1868), + [anon_sym___nonnull] = ACTIONS(1868), + [anon_sym___strong] = ACTIONS(1868), + [anon_sym___weak] = ACTIONS(1868), + [anon_sym___bridge] = ACTIONS(1868), + [anon_sym___bridge_transfer] = ACTIONS(1868), + [anon_sym___bridge_retained] = ACTIONS(1868), + [anon_sym___unsafe_unretained] = ACTIONS(1868), + [anon_sym___block] = ACTIONS(1868), + [anon_sym___kindof] = ACTIONS(1868), + [anon_sym___unused] = ACTIONS(1868), + [anon_sym__Complex] = ACTIONS(1868), + [anon_sym___complex] = ACTIONS(1868), + [anon_sym_IBOutlet] = ACTIONS(1868), + [anon_sym_IBInspectable] = ACTIONS(1868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1868), + [anon_sym_signed] = ACTIONS(1868), + [anon_sym_unsigned] = ACTIONS(1868), + [anon_sym_long] = ACTIONS(1868), + [anon_sym_short] = ACTIONS(1868), + [sym_primitive_type] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_sizeof] = ACTIONS(1868), + [sym_number_literal] = ACTIONS(1870), + [anon_sym_L_SQUOTE] = ACTIONS(1870), + [anon_sym_u_SQUOTE] = ACTIONS(1870), + [anon_sym_U_SQUOTE] = ACTIONS(1870), + [anon_sym_u8_SQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_L_DQUOTE] = ACTIONS(1870), + [anon_sym_u_DQUOTE] = ACTIONS(1870), + [anon_sym_U_DQUOTE] = ACTIONS(1870), + [anon_sym_u8_DQUOTE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1870), + [anon_sym_ATimport] = ACTIONS(1870), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1868), + [anon_sym_ATcompatibility_alias] = ACTIONS(1870), + [anon_sym_ATprotocol] = ACTIONS(1870), + [anon_sym_ATclass] = ACTIONS(1870), + [anon_sym_ATinterface] = ACTIONS(1870), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1868), + [sym_method_attribute_specifier] = ACTIONS(1868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE] = ACTIONS(1868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_API_AVAILABLE] = ACTIONS(1868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_API_DEPRECATED] = ACTIONS(1868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1868), + [anon_sym___deprecated_msg] = ACTIONS(1868), + [anon_sym___deprecated_enum_msg] = ACTIONS(1868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1868), + [anon_sym_ATimplementation] = ACTIONS(1870), + [anon_sym_NS_ENUM] = ACTIONS(1868), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1868), + [anon_sym_NS_OPTIONS] = ACTIONS(1868), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym___typeof] = ACTIONS(1868), + [anon_sym___typeof__] = ACTIONS(1868), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [sym_id] = ACTIONS(1868), + [sym_instancetype] = ACTIONS(1868), + [sym_Class] = ACTIONS(1868), + [sym_SEL] = ACTIONS(1868), + [sym_IMP] = ACTIONS(1868), + [sym_BOOL] = ACTIONS(1868), + [sym_auto] = ACTIONS(1868), + [anon_sym_ATautoreleasepool] = ACTIONS(1870), + [anon_sym_ATsynchronized] = ACTIONS(1870), + [anon_sym_ATtry] = ACTIONS(1870), + [anon_sym_ATthrow] = ACTIONS(1870), + [anon_sym_ATselector] = ACTIONS(1870), + [anon_sym_ATencode] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1868), + [sym_YES] = ACTIONS(1868), + [sym_NO] = ACTIONS(1868), + [anon_sym___builtin_available] = ACTIONS(1868), + [anon_sym_ATavailable] = ACTIONS(1870), + [anon_sym_va_arg] = ACTIONS(1868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1126] = { + [ts_builtin_sym_end] = ACTIONS(1910), + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1127] = { + [ts_builtin_sym_end] = ACTIONS(2046), + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2046), + [aux_sym_preproc_def_token1] = ACTIONS(2046), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_auto] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym_in] = ACTIONS(2044), + [anon_sym_out] = ACTIONS(2044), + [anon_sym_inout] = ACTIONS(2044), + [anon_sym_bycopy] = ACTIONS(2044), + [anon_sym_byref] = ACTIONS(2044), + [anon_sym_oneway] = ACTIONS(2044), + [anon_sym__Nullable] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym__Nullable_result] = ACTIONS(2044), + [anon_sym__Null_unspecified] = ACTIONS(2044), + [anon_sym___autoreleasing] = ACTIONS(2044), + [anon_sym___nullable] = ACTIONS(2044), + [anon_sym___nonnull] = ACTIONS(2044), + [anon_sym___strong] = ACTIONS(2044), + [anon_sym___weak] = ACTIONS(2044), + [anon_sym___bridge] = ACTIONS(2044), + [anon_sym___bridge_transfer] = ACTIONS(2044), + [anon_sym___bridge_retained] = ACTIONS(2044), + [anon_sym___unsafe_unretained] = ACTIONS(2044), + [anon_sym___block] = ACTIONS(2044), + [anon_sym___kindof] = ACTIONS(2044), + [anon_sym___unused] = ACTIONS(2044), + [anon_sym__Complex] = ACTIONS(2044), + [anon_sym___complex] = ACTIONS(2044), + [anon_sym_IBOutlet] = ACTIONS(2044), + [anon_sym_IBInspectable] = ACTIONS(2044), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2044), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [sym_null] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2046), + [anon_sym_ATimport] = ACTIONS(2046), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2044), + [anon_sym_ATcompatibility_alias] = ACTIONS(2046), + [anon_sym_ATprotocol] = ACTIONS(2046), + [anon_sym_ATclass] = ACTIONS(2046), + [anon_sym_ATinterface] = ACTIONS(2046), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2044), + [sym_method_attribute_specifier] = ACTIONS(2044), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2044), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE] = ACTIONS(2044), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_API_AVAILABLE] = ACTIONS(2044), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_API_DEPRECATED] = ACTIONS(2044), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2044), + [anon_sym___deprecated_msg] = ACTIONS(2044), + [anon_sym___deprecated_enum_msg] = ACTIONS(2044), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2044), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2044), + [anon_sym_ATimplementation] = ACTIONS(2046), + [anon_sym_NS_ENUM] = ACTIONS(2044), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2044), + [anon_sym_NS_OPTIONS] = ACTIONS(2044), + [anon_sym_typeof] = ACTIONS(2044), + [anon_sym___typeof] = ACTIONS(2044), + [anon_sym___typeof__] = ACTIONS(2044), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_nil] = ACTIONS(2044), + [sym_id] = ACTIONS(2044), + [sym_instancetype] = ACTIONS(2044), + [sym_Class] = ACTIONS(2044), + [sym_SEL] = ACTIONS(2044), + [sym_IMP] = ACTIONS(2044), + [sym_BOOL] = ACTIONS(2044), + [sym_auto] = ACTIONS(2044), + [anon_sym_ATautoreleasepool] = ACTIONS(2046), + [anon_sym_ATsynchronized] = ACTIONS(2046), + [anon_sym_ATtry] = ACTIONS(2046), + [anon_sym_ATthrow] = ACTIONS(2046), + [anon_sym_ATselector] = ACTIONS(2046), + [anon_sym_ATencode] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2044), + [sym_YES] = ACTIONS(2044), + [sym_NO] = ACTIONS(2044), + [anon_sym___builtin_available] = ACTIONS(2044), + [anon_sym_ATavailable] = ACTIONS(2046), + [anon_sym_va_arg] = ACTIONS(2044), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1128] = { + [ts_builtin_sym_end] = ACTIONS(1910), + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1129] = { + [ts_builtin_sym_end] = ACTIONS(2046), + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2046), + [aux_sym_preproc_def_token1] = ACTIONS(2046), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_auto] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym_in] = ACTIONS(2044), + [anon_sym_out] = ACTIONS(2044), + [anon_sym_inout] = ACTIONS(2044), + [anon_sym_bycopy] = ACTIONS(2044), + [anon_sym_byref] = ACTIONS(2044), + [anon_sym_oneway] = ACTIONS(2044), + [anon_sym__Nullable] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym__Nullable_result] = ACTIONS(2044), + [anon_sym__Null_unspecified] = ACTIONS(2044), + [anon_sym___autoreleasing] = ACTIONS(2044), + [anon_sym___nullable] = ACTIONS(2044), + [anon_sym___nonnull] = ACTIONS(2044), + [anon_sym___strong] = ACTIONS(2044), + [anon_sym___weak] = ACTIONS(2044), + [anon_sym___bridge] = ACTIONS(2044), + [anon_sym___bridge_transfer] = ACTIONS(2044), + [anon_sym___bridge_retained] = ACTIONS(2044), + [anon_sym___unsafe_unretained] = ACTIONS(2044), + [anon_sym___block] = ACTIONS(2044), + [anon_sym___kindof] = ACTIONS(2044), + [anon_sym___unused] = ACTIONS(2044), + [anon_sym__Complex] = ACTIONS(2044), + [anon_sym___complex] = ACTIONS(2044), + [anon_sym_IBOutlet] = ACTIONS(2044), + [anon_sym_IBInspectable] = ACTIONS(2044), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2044), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [sym_null] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2046), + [anon_sym_ATimport] = ACTIONS(2046), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2044), + [anon_sym_ATcompatibility_alias] = ACTIONS(2046), + [anon_sym_ATprotocol] = ACTIONS(2046), + [anon_sym_ATclass] = ACTIONS(2046), + [anon_sym_ATinterface] = ACTIONS(2046), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2044), + [sym_method_attribute_specifier] = ACTIONS(2044), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2044), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE] = ACTIONS(2044), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_API_AVAILABLE] = ACTIONS(2044), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_API_DEPRECATED] = ACTIONS(2044), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2044), + [anon_sym___deprecated_msg] = ACTIONS(2044), + [anon_sym___deprecated_enum_msg] = ACTIONS(2044), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2044), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2044), + [anon_sym_ATimplementation] = ACTIONS(2046), + [anon_sym_NS_ENUM] = ACTIONS(2044), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2044), + [anon_sym_NS_OPTIONS] = ACTIONS(2044), + [anon_sym_typeof] = ACTIONS(2044), + [anon_sym___typeof] = ACTIONS(2044), + [anon_sym___typeof__] = ACTIONS(2044), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_nil] = ACTIONS(2044), + [sym_id] = ACTIONS(2044), + [sym_instancetype] = ACTIONS(2044), + [sym_Class] = ACTIONS(2044), + [sym_SEL] = ACTIONS(2044), + [sym_IMP] = ACTIONS(2044), + [sym_BOOL] = ACTIONS(2044), + [sym_auto] = ACTIONS(2044), + [anon_sym_ATautoreleasepool] = ACTIONS(2046), + [anon_sym_ATsynchronized] = ACTIONS(2046), + [anon_sym_ATtry] = ACTIONS(2046), + [anon_sym_ATthrow] = ACTIONS(2046), + [anon_sym_ATselector] = ACTIONS(2046), + [anon_sym_ATencode] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2044), + [sym_YES] = ACTIONS(2044), + [sym_NO] = ACTIONS(2044), + [anon_sym___builtin_available] = ACTIONS(2044), + [anon_sym_ATavailable] = ACTIONS(2046), + [anon_sym_va_arg] = ACTIONS(2044), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1130] = { + [ts_builtin_sym_end] = ACTIONS(2046), + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2046), + [aux_sym_preproc_def_token1] = ACTIONS(2046), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_auto] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym_in] = ACTIONS(2044), + [anon_sym_out] = ACTIONS(2044), + [anon_sym_inout] = ACTIONS(2044), + [anon_sym_bycopy] = ACTIONS(2044), + [anon_sym_byref] = ACTIONS(2044), + [anon_sym_oneway] = ACTIONS(2044), + [anon_sym__Nullable] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym__Nullable_result] = ACTIONS(2044), + [anon_sym__Null_unspecified] = ACTIONS(2044), + [anon_sym___autoreleasing] = ACTIONS(2044), + [anon_sym___nullable] = ACTIONS(2044), + [anon_sym___nonnull] = ACTIONS(2044), + [anon_sym___strong] = ACTIONS(2044), + [anon_sym___weak] = ACTIONS(2044), + [anon_sym___bridge] = ACTIONS(2044), + [anon_sym___bridge_transfer] = ACTIONS(2044), + [anon_sym___bridge_retained] = ACTIONS(2044), + [anon_sym___unsafe_unretained] = ACTIONS(2044), + [anon_sym___block] = ACTIONS(2044), + [anon_sym___kindof] = ACTIONS(2044), + [anon_sym___unused] = ACTIONS(2044), + [anon_sym__Complex] = ACTIONS(2044), + [anon_sym___complex] = ACTIONS(2044), + [anon_sym_IBOutlet] = ACTIONS(2044), + [anon_sym_IBInspectable] = ACTIONS(2044), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2044), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [sym_null] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2046), + [anon_sym_ATimport] = ACTIONS(2046), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2044), + [anon_sym_ATcompatibility_alias] = ACTIONS(2046), + [anon_sym_ATprotocol] = ACTIONS(2046), + [anon_sym_ATclass] = ACTIONS(2046), + [anon_sym_ATinterface] = ACTIONS(2046), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2044), + [sym_method_attribute_specifier] = ACTIONS(2044), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2044), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE] = ACTIONS(2044), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_API_AVAILABLE] = ACTIONS(2044), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_API_DEPRECATED] = ACTIONS(2044), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2044), + [anon_sym___deprecated_msg] = ACTIONS(2044), + [anon_sym___deprecated_enum_msg] = ACTIONS(2044), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2044), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2044), + [anon_sym_ATimplementation] = ACTIONS(2046), + [anon_sym_NS_ENUM] = ACTIONS(2044), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2044), + [anon_sym_NS_OPTIONS] = ACTIONS(2044), + [anon_sym_typeof] = ACTIONS(2044), + [anon_sym___typeof] = ACTIONS(2044), + [anon_sym___typeof__] = ACTIONS(2044), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_nil] = ACTIONS(2044), + [sym_id] = ACTIONS(2044), + [sym_instancetype] = ACTIONS(2044), + [sym_Class] = ACTIONS(2044), + [sym_SEL] = ACTIONS(2044), + [sym_IMP] = ACTIONS(2044), + [sym_BOOL] = ACTIONS(2044), + [sym_auto] = ACTIONS(2044), + [anon_sym_ATautoreleasepool] = ACTIONS(2046), + [anon_sym_ATsynchronized] = ACTIONS(2046), + [anon_sym_ATtry] = ACTIONS(2046), + [anon_sym_ATthrow] = ACTIONS(2046), + [anon_sym_ATselector] = ACTIONS(2046), + [anon_sym_ATencode] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2044), + [sym_YES] = ACTIONS(2044), + [sym_NO] = ACTIONS(2044), + [anon_sym___builtin_available] = ACTIONS(2044), + [anon_sym_ATavailable] = ACTIONS(2046), + [anon_sym_va_arg] = ACTIONS(2044), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1131] = { + [ts_builtin_sym_end] = ACTIONS(1714), + [sym_identifier] = ACTIONS(1712), + [aux_sym_preproc_include_token1] = ACTIONS(1714), + [aux_sym_preproc_def_token1] = ACTIONS(1714), + [aux_sym_preproc_if_token1] = ACTIONS(1712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1712), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_STAR] = ACTIONS(1714), + [anon_sym_CARET] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_typedef] = ACTIONS(1712), + [anon_sym_extern] = ACTIONS(1712), + [anon_sym___attribute] = ACTIONS(1712), + [anon_sym___attribute__] = ACTIONS(1712), + [anon_sym___declspec] = ACTIONS(1712), + [anon_sym___cdecl] = ACTIONS(1712), + [anon_sym___clrcall] = ACTIONS(1712), + [anon_sym___stdcall] = ACTIONS(1712), + [anon_sym___fastcall] = ACTIONS(1712), + [anon_sym___thiscall] = ACTIONS(1712), + [anon_sym___vectorcall] = ACTIONS(1712), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_static] = ACTIONS(1712), + [anon_sym_auto] = ACTIONS(1712), + [anon_sym_register] = ACTIONS(1712), + [anon_sym_inline] = ACTIONS(1712), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1712), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_volatile] = ACTIONS(1712), + [anon_sym_restrict] = ACTIONS(1712), + [anon_sym__Atomic] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1712), + [anon_sym_out] = ACTIONS(1712), + [anon_sym_inout] = ACTIONS(1712), + [anon_sym_bycopy] = ACTIONS(1712), + [anon_sym_byref] = ACTIONS(1712), + [anon_sym_oneway] = ACTIONS(1712), + [anon_sym__Nullable] = ACTIONS(1712), + [anon_sym__Nonnull] = ACTIONS(1712), + [anon_sym__Nullable_result] = ACTIONS(1712), + [anon_sym__Null_unspecified] = ACTIONS(1712), + [anon_sym___autoreleasing] = ACTIONS(1712), + [anon_sym___nullable] = ACTIONS(1712), + [anon_sym___nonnull] = ACTIONS(1712), + [anon_sym___strong] = ACTIONS(1712), + [anon_sym___weak] = ACTIONS(1712), + [anon_sym___bridge] = ACTIONS(1712), + [anon_sym___bridge_transfer] = ACTIONS(1712), + [anon_sym___bridge_retained] = ACTIONS(1712), + [anon_sym___unsafe_unretained] = ACTIONS(1712), + [anon_sym___block] = ACTIONS(1712), + [anon_sym___kindof] = ACTIONS(1712), + [anon_sym___unused] = ACTIONS(1712), + [anon_sym__Complex] = ACTIONS(1712), + [anon_sym___complex] = ACTIONS(1712), + [anon_sym_IBOutlet] = ACTIONS(1712), + [anon_sym_IBInspectable] = ACTIONS(1712), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1712), + [anon_sym_signed] = ACTIONS(1712), + [anon_sym_unsigned] = ACTIONS(1712), + [anon_sym_long] = ACTIONS(1712), + [anon_sym_short] = ACTIONS(1712), + [sym_primitive_type] = ACTIONS(1712), + [anon_sym_enum] = ACTIONS(1712), + [anon_sym_struct] = ACTIONS(1712), + [anon_sym_union] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1712), + [anon_sym_default] = ACTIONS(1712), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_do] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_continue] = ACTIONS(1712), + [anon_sym_goto] = ACTIONS(1712), + [anon_sym_DASH_DASH] = ACTIONS(1714), + [anon_sym_PLUS_PLUS] = ACTIONS(1714), + [anon_sym_sizeof] = ACTIONS(1712), + [sym_number_literal] = ACTIONS(1714), + [anon_sym_L_SQUOTE] = ACTIONS(1714), + [anon_sym_u_SQUOTE] = ACTIONS(1714), + [anon_sym_U_SQUOTE] = ACTIONS(1714), + [anon_sym_u8_SQUOTE] = ACTIONS(1714), + [anon_sym_SQUOTE] = ACTIONS(1714), + [anon_sym_L_DQUOTE] = ACTIONS(1714), + [anon_sym_u_DQUOTE] = ACTIONS(1714), + [anon_sym_U_DQUOTE] = ACTIONS(1714), + [anon_sym_u8_DQUOTE] = ACTIONS(1714), + [anon_sym_DQUOTE] = ACTIONS(1714), + [sym_true] = ACTIONS(1712), + [sym_false] = ACTIONS(1712), + [sym_null] = ACTIONS(1712), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1714), + [anon_sym_ATimport] = ACTIONS(1714), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1712), + [anon_sym_ATcompatibility_alias] = ACTIONS(1714), + [anon_sym_ATprotocol] = ACTIONS(1714), + [anon_sym_ATclass] = ACTIONS(1714), + [anon_sym_ATinterface] = ACTIONS(1714), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1712), + [sym_method_attribute_specifier] = ACTIONS(1712), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1712), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1712), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1712), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1712), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1712), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1712), + [anon_sym_NS_AVAILABLE] = ACTIONS(1712), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1712), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1712), + [anon_sym_API_AVAILABLE] = ACTIONS(1712), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1712), + [anon_sym_API_DEPRECATED] = ACTIONS(1712), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1712), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1712), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1712), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1712), + [anon_sym___deprecated_msg] = ACTIONS(1712), + [anon_sym___deprecated_enum_msg] = ACTIONS(1712), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1712), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1712), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1712), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1712), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1712), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1712), + [anon_sym_ATimplementation] = ACTIONS(1714), + [anon_sym_NS_ENUM] = ACTIONS(1712), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1712), + [anon_sym_NS_OPTIONS] = ACTIONS(1712), + [anon_sym_typeof] = ACTIONS(1712), + [anon_sym___typeof] = ACTIONS(1712), + [anon_sym___typeof__] = ACTIONS(1712), + [sym_self] = ACTIONS(1712), + [sym_super] = ACTIONS(1712), + [sym_nil] = ACTIONS(1712), + [sym_id] = ACTIONS(1712), + [sym_instancetype] = ACTIONS(1712), + [sym_Class] = ACTIONS(1712), + [sym_SEL] = ACTIONS(1712), + [sym_IMP] = ACTIONS(1712), + [sym_BOOL] = ACTIONS(1712), + [sym_auto] = ACTIONS(1712), + [anon_sym_ATautoreleasepool] = ACTIONS(1714), + [anon_sym_ATsynchronized] = ACTIONS(1714), + [anon_sym_ATtry] = ACTIONS(1714), + [anon_sym_ATthrow] = ACTIONS(1714), + [anon_sym_ATselector] = ACTIONS(1714), + [anon_sym_ATencode] = ACTIONS(1714), + [anon_sym_AT] = ACTIONS(1712), + [sym_YES] = ACTIONS(1712), + [sym_NO] = ACTIONS(1712), + [anon_sym___builtin_available] = ACTIONS(1712), + [anon_sym_ATavailable] = ACTIONS(1714), + [anon_sym_va_arg] = ACTIONS(1712), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1132] = { + [ts_builtin_sym_end] = ACTIONS(2046), + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2046), + [aux_sym_preproc_def_token1] = ACTIONS(2046), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_auto] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym_in] = ACTIONS(2044), + [anon_sym_out] = ACTIONS(2044), + [anon_sym_inout] = ACTIONS(2044), + [anon_sym_bycopy] = ACTIONS(2044), + [anon_sym_byref] = ACTIONS(2044), + [anon_sym_oneway] = ACTIONS(2044), + [anon_sym__Nullable] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym__Nullable_result] = ACTIONS(2044), + [anon_sym__Null_unspecified] = ACTIONS(2044), + [anon_sym___autoreleasing] = ACTIONS(2044), + [anon_sym___nullable] = ACTIONS(2044), + [anon_sym___nonnull] = ACTIONS(2044), + [anon_sym___strong] = ACTIONS(2044), + [anon_sym___weak] = ACTIONS(2044), + [anon_sym___bridge] = ACTIONS(2044), + [anon_sym___bridge_transfer] = ACTIONS(2044), + [anon_sym___bridge_retained] = ACTIONS(2044), + [anon_sym___unsafe_unretained] = ACTIONS(2044), + [anon_sym___block] = ACTIONS(2044), + [anon_sym___kindof] = ACTIONS(2044), + [anon_sym___unused] = ACTIONS(2044), + [anon_sym__Complex] = ACTIONS(2044), + [anon_sym___complex] = ACTIONS(2044), + [anon_sym_IBOutlet] = ACTIONS(2044), + [anon_sym_IBInspectable] = ACTIONS(2044), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2044), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [sym_null] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2046), + [anon_sym_ATimport] = ACTIONS(2046), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2044), + [anon_sym_ATcompatibility_alias] = ACTIONS(2046), + [anon_sym_ATprotocol] = ACTIONS(2046), + [anon_sym_ATclass] = ACTIONS(2046), + [anon_sym_ATinterface] = ACTIONS(2046), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2044), + [sym_method_attribute_specifier] = ACTIONS(2044), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2044), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE] = ACTIONS(2044), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_API_AVAILABLE] = ACTIONS(2044), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_API_DEPRECATED] = ACTIONS(2044), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2044), + [anon_sym___deprecated_msg] = ACTIONS(2044), + [anon_sym___deprecated_enum_msg] = ACTIONS(2044), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2044), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2044), + [anon_sym_ATimplementation] = ACTIONS(2046), + [anon_sym_NS_ENUM] = ACTIONS(2044), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2044), + [anon_sym_NS_OPTIONS] = ACTIONS(2044), + [anon_sym_typeof] = ACTIONS(2044), + [anon_sym___typeof] = ACTIONS(2044), + [anon_sym___typeof__] = ACTIONS(2044), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_nil] = ACTIONS(2044), + [sym_id] = ACTIONS(2044), + [sym_instancetype] = ACTIONS(2044), + [sym_Class] = ACTIONS(2044), + [sym_SEL] = ACTIONS(2044), + [sym_IMP] = ACTIONS(2044), + [sym_BOOL] = ACTIONS(2044), + [sym_auto] = ACTIONS(2044), + [anon_sym_ATautoreleasepool] = ACTIONS(2046), + [anon_sym_ATsynchronized] = ACTIONS(2046), + [anon_sym_ATtry] = ACTIONS(2046), + [anon_sym_ATthrow] = ACTIONS(2046), + [anon_sym_ATselector] = ACTIONS(2046), + [anon_sym_ATencode] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2044), + [sym_YES] = ACTIONS(2044), + [sym_NO] = ACTIONS(2044), + [anon_sym___builtin_available] = ACTIONS(2044), + [anon_sym_ATavailable] = ACTIONS(2046), + [anon_sym_va_arg] = ACTIONS(2044), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1133] = { + [ts_builtin_sym_end] = ACTIONS(2042), + [sym_identifier] = ACTIONS(2040), + [aux_sym_preproc_include_token1] = ACTIONS(2042), + [aux_sym_preproc_def_token1] = ACTIONS(2042), + [aux_sym_preproc_if_token1] = ACTIONS(2040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2040), + [anon_sym_LPAREN2] = ACTIONS(2042), + [anon_sym_BANG] = ACTIONS(2042), + [anon_sym_TILDE] = ACTIONS(2042), + [anon_sym_DASH] = ACTIONS(2040), + [anon_sym_PLUS] = ACTIONS(2040), + [anon_sym_STAR] = ACTIONS(2042), + [anon_sym_CARET] = ACTIONS(2042), + [anon_sym_AMP] = ACTIONS(2042), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym_typedef] = ACTIONS(2040), + [anon_sym_extern] = ACTIONS(2040), + [anon_sym___attribute] = ACTIONS(2040), + [anon_sym___attribute__] = ACTIONS(2040), + [anon_sym___declspec] = ACTIONS(2040), + [anon_sym___cdecl] = ACTIONS(2040), + [anon_sym___clrcall] = ACTIONS(2040), + [anon_sym___stdcall] = ACTIONS(2040), + [anon_sym___fastcall] = ACTIONS(2040), + [anon_sym___thiscall] = ACTIONS(2040), + [anon_sym___vectorcall] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2042), + [anon_sym_RBRACE] = ACTIONS(2042), + [anon_sym_LBRACK] = ACTIONS(2042), + [anon_sym_static] = ACTIONS(2040), + [anon_sym_auto] = ACTIONS(2040), + [anon_sym_register] = ACTIONS(2040), + [anon_sym_inline] = ACTIONS(2040), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2040), + [anon_sym_const] = ACTIONS(2040), + [anon_sym_volatile] = ACTIONS(2040), + [anon_sym_restrict] = ACTIONS(2040), + [anon_sym__Atomic] = ACTIONS(2040), + [anon_sym_in] = ACTIONS(2040), + [anon_sym_out] = ACTIONS(2040), + [anon_sym_inout] = ACTIONS(2040), + [anon_sym_bycopy] = ACTIONS(2040), + [anon_sym_byref] = ACTIONS(2040), + [anon_sym_oneway] = ACTIONS(2040), + [anon_sym__Nullable] = ACTIONS(2040), + [anon_sym__Nonnull] = ACTIONS(2040), + [anon_sym__Nullable_result] = ACTIONS(2040), + [anon_sym__Null_unspecified] = ACTIONS(2040), + [anon_sym___autoreleasing] = ACTIONS(2040), + [anon_sym___nullable] = ACTIONS(2040), + [anon_sym___nonnull] = ACTIONS(2040), + [anon_sym___strong] = ACTIONS(2040), + [anon_sym___weak] = ACTIONS(2040), + [anon_sym___bridge] = ACTIONS(2040), + [anon_sym___bridge_transfer] = ACTIONS(2040), + [anon_sym___bridge_retained] = ACTIONS(2040), + [anon_sym___unsafe_unretained] = ACTIONS(2040), + [anon_sym___block] = ACTIONS(2040), + [anon_sym___kindof] = ACTIONS(2040), + [anon_sym___unused] = ACTIONS(2040), + [anon_sym__Complex] = ACTIONS(2040), + [anon_sym___complex] = ACTIONS(2040), + [anon_sym_IBOutlet] = ACTIONS(2040), + [anon_sym_IBInspectable] = ACTIONS(2040), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2040), + [anon_sym_signed] = ACTIONS(2040), + [anon_sym_unsigned] = ACTIONS(2040), + [anon_sym_long] = ACTIONS(2040), + [anon_sym_short] = ACTIONS(2040), + [sym_primitive_type] = ACTIONS(2040), + [anon_sym_enum] = ACTIONS(2040), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2040), + [anon_sym_if] = ACTIONS(2040), + [anon_sym_switch] = ACTIONS(2040), + [anon_sym_case] = ACTIONS(2040), + [anon_sym_default] = ACTIONS(2040), + [anon_sym_while] = ACTIONS(2040), + [anon_sym_do] = ACTIONS(2040), + [anon_sym_for] = ACTIONS(2040), + [anon_sym_return] = ACTIONS(2040), + [anon_sym_break] = ACTIONS(2040), + [anon_sym_continue] = ACTIONS(2040), + [anon_sym_goto] = ACTIONS(2040), + [anon_sym_DASH_DASH] = ACTIONS(2042), + [anon_sym_PLUS_PLUS] = ACTIONS(2042), + [anon_sym_sizeof] = ACTIONS(2040), + [sym_number_literal] = ACTIONS(2042), + [anon_sym_L_SQUOTE] = ACTIONS(2042), + [anon_sym_u_SQUOTE] = ACTIONS(2042), + [anon_sym_U_SQUOTE] = ACTIONS(2042), + [anon_sym_u8_SQUOTE] = ACTIONS(2042), + [anon_sym_SQUOTE] = ACTIONS(2042), + [anon_sym_L_DQUOTE] = ACTIONS(2042), + [anon_sym_u_DQUOTE] = ACTIONS(2042), + [anon_sym_U_DQUOTE] = ACTIONS(2042), + [anon_sym_u8_DQUOTE] = ACTIONS(2042), + [anon_sym_DQUOTE] = ACTIONS(2042), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [sym_null] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2042), + [anon_sym_ATimport] = ACTIONS(2042), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2040), + [anon_sym_ATcompatibility_alias] = ACTIONS(2042), + [anon_sym_ATprotocol] = ACTIONS(2042), + [anon_sym_ATclass] = ACTIONS(2042), + [anon_sym_ATinterface] = ACTIONS(2042), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2040), + [sym_method_attribute_specifier] = ACTIONS(2040), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2040), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2040), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2040), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2040), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2040), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2040), + [anon_sym_NS_AVAILABLE] = ACTIONS(2040), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2040), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2040), + [anon_sym_API_AVAILABLE] = ACTIONS(2040), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2040), + [anon_sym_API_DEPRECATED] = ACTIONS(2040), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2040), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2040), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2040), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2040), + [anon_sym___deprecated_msg] = ACTIONS(2040), + [anon_sym___deprecated_enum_msg] = ACTIONS(2040), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2040), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2040), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2040), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2040), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2040), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2040), + [anon_sym_ATimplementation] = ACTIONS(2042), + [anon_sym_NS_ENUM] = ACTIONS(2040), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2040), + [anon_sym_NS_OPTIONS] = ACTIONS(2040), + [anon_sym_typeof] = ACTIONS(2040), + [anon_sym___typeof] = ACTIONS(2040), + [anon_sym___typeof__] = ACTIONS(2040), + [sym_self] = ACTIONS(2040), + [sym_super] = ACTIONS(2040), + [sym_nil] = ACTIONS(2040), + [sym_id] = ACTIONS(2040), + [sym_instancetype] = ACTIONS(2040), + [sym_Class] = ACTIONS(2040), + [sym_SEL] = ACTIONS(2040), + [sym_IMP] = ACTIONS(2040), + [sym_BOOL] = ACTIONS(2040), + [sym_auto] = ACTIONS(2040), + [anon_sym_ATautoreleasepool] = ACTIONS(2042), + [anon_sym_ATsynchronized] = ACTIONS(2042), + [anon_sym_ATtry] = ACTIONS(2042), + [anon_sym_ATthrow] = ACTIONS(2042), + [anon_sym_ATselector] = ACTIONS(2042), + [anon_sym_ATencode] = ACTIONS(2042), + [anon_sym_AT] = ACTIONS(2040), + [sym_YES] = ACTIONS(2040), + [sym_NO] = ACTIONS(2040), + [anon_sym___builtin_available] = ACTIONS(2040), + [anon_sym_ATavailable] = ACTIONS(2042), + [anon_sym_va_arg] = ACTIONS(2040), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1134] = { + [ts_builtin_sym_end] = ACTIONS(1910), + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1135] = { + [ts_builtin_sym_end] = ACTIONS(2038), + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1136] = { + [ts_builtin_sym_end] = ACTIONS(2038), + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1137] = { + [ts_builtin_sym_end] = ACTIONS(2038), + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1138] = { + [ts_builtin_sym_end] = ACTIONS(2038), + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1139] = { + [ts_builtin_sym_end] = ACTIONS(1910), + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1140] = { + [ts_builtin_sym_end] = ACTIONS(1910), + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1141] = { + [ts_builtin_sym_end] = ACTIONS(2038), + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1142] = { + [ts_builtin_sym_end] = ACTIONS(1910), + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1143] = { + [ts_builtin_sym_end] = ACTIONS(2038), + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1144] = { + [ts_builtin_sym_end] = ACTIONS(2038), + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1145] = { + [ts_builtin_sym_end] = ACTIONS(1910), + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1146] = { + [ts_builtin_sym_end] = ACTIONS(1910), + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1147] = { + [ts_builtin_sym_end] = ACTIONS(2038), + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1148] = { + [ts_builtin_sym_end] = ACTIONS(1910), + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1149] = { + [ts_builtin_sym_end] = ACTIONS(2038), + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1150] = { + [ts_builtin_sym_end] = ACTIONS(2038), + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1151] = { + [ts_builtin_sym_end] = ACTIONS(2038), + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1152] = { + [ts_builtin_sym_end] = ACTIONS(1910), + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1153] = { + [ts_builtin_sym_end] = ACTIONS(2038), + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1154] = { + [ts_builtin_sym_end] = ACTIONS(2038), + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1155] = { + [ts_builtin_sym_end] = ACTIONS(1906), + [sym_identifier] = ACTIONS(1904), + [aux_sym_preproc_include_token1] = ACTIONS(1906), + [aux_sym_preproc_def_token1] = ACTIONS(1906), + [aux_sym_preproc_if_token1] = ACTIONS(1904), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1904), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1904), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1906), + [anon_sym_TILDE] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_PLUS] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1906), + [anon_sym_CARET] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_typedef] = ACTIONS(1904), + [anon_sym_extern] = ACTIONS(1904), + [anon_sym___attribute] = ACTIONS(1904), + [anon_sym___attribute__] = ACTIONS(1904), + [anon_sym___declspec] = ACTIONS(1904), + [anon_sym___cdecl] = ACTIONS(1904), + [anon_sym___clrcall] = ACTIONS(1904), + [anon_sym___stdcall] = ACTIONS(1904), + [anon_sym___fastcall] = ACTIONS(1904), + [anon_sym___thiscall] = ACTIONS(1904), + [anon_sym___vectorcall] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_static] = ACTIONS(1904), + [anon_sym_auto] = ACTIONS(1904), + [anon_sym_register] = ACTIONS(1904), + [anon_sym_inline] = ACTIONS(1904), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1904), + [anon_sym_const] = ACTIONS(1904), + [anon_sym_volatile] = ACTIONS(1904), + [anon_sym_restrict] = ACTIONS(1904), + [anon_sym__Atomic] = ACTIONS(1904), + [anon_sym_in] = ACTIONS(1904), + [anon_sym_out] = ACTIONS(1904), + [anon_sym_inout] = ACTIONS(1904), + [anon_sym_bycopy] = ACTIONS(1904), + [anon_sym_byref] = ACTIONS(1904), + [anon_sym_oneway] = ACTIONS(1904), + [anon_sym__Nullable] = ACTIONS(1904), + [anon_sym__Nonnull] = ACTIONS(1904), + [anon_sym__Nullable_result] = ACTIONS(1904), + [anon_sym__Null_unspecified] = ACTIONS(1904), + [anon_sym___autoreleasing] = ACTIONS(1904), + [anon_sym___nullable] = ACTIONS(1904), + [anon_sym___nonnull] = ACTIONS(1904), + [anon_sym___strong] = ACTIONS(1904), + [anon_sym___weak] = ACTIONS(1904), + [anon_sym___bridge] = ACTIONS(1904), + [anon_sym___bridge_transfer] = ACTIONS(1904), + [anon_sym___bridge_retained] = ACTIONS(1904), + [anon_sym___unsafe_unretained] = ACTIONS(1904), + [anon_sym___block] = ACTIONS(1904), + [anon_sym___kindof] = ACTIONS(1904), + [anon_sym___unused] = ACTIONS(1904), + [anon_sym__Complex] = ACTIONS(1904), + [anon_sym___complex] = ACTIONS(1904), + [anon_sym_IBOutlet] = ACTIONS(1904), + [anon_sym_IBInspectable] = ACTIONS(1904), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1904), + [anon_sym_signed] = ACTIONS(1904), + [anon_sym_unsigned] = ACTIONS(1904), + [anon_sym_long] = ACTIONS(1904), + [anon_sym_short] = ACTIONS(1904), + [sym_primitive_type] = ACTIONS(1904), + [anon_sym_enum] = ACTIONS(1904), + [anon_sym_struct] = ACTIONS(1904), + [anon_sym_union] = ACTIONS(1904), + [anon_sym_if] = ACTIONS(1904), + [anon_sym_switch] = ACTIONS(1904), + [anon_sym_case] = ACTIONS(1904), + [anon_sym_default] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1904), + [anon_sym_do] = ACTIONS(1904), + [anon_sym_for] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1904), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_goto] = ACTIONS(1904), + [anon_sym_DASH_DASH] = ACTIONS(1906), + [anon_sym_PLUS_PLUS] = ACTIONS(1906), + [anon_sym_sizeof] = ACTIONS(1904), + [sym_number_literal] = ACTIONS(1906), + [anon_sym_L_SQUOTE] = ACTIONS(1906), + [anon_sym_u_SQUOTE] = ACTIONS(1906), + [anon_sym_U_SQUOTE] = ACTIONS(1906), + [anon_sym_u8_SQUOTE] = ACTIONS(1906), + [anon_sym_SQUOTE] = ACTIONS(1906), + [anon_sym_L_DQUOTE] = ACTIONS(1906), + [anon_sym_u_DQUOTE] = ACTIONS(1906), + [anon_sym_U_DQUOTE] = ACTIONS(1906), + [anon_sym_u8_DQUOTE] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [sym_true] = ACTIONS(1904), + [sym_false] = ACTIONS(1904), + [sym_null] = ACTIONS(1904), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1906), + [anon_sym_ATimport] = ACTIONS(1906), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1904), + [anon_sym_ATcompatibility_alias] = ACTIONS(1906), + [anon_sym_ATprotocol] = ACTIONS(1906), + [anon_sym_ATclass] = ACTIONS(1906), + [anon_sym_ATinterface] = ACTIONS(1906), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1904), + [sym_method_attribute_specifier] = ACTIONS(1904), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1904), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1904), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1904), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1904), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1904), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1904), + [anon_sym_NS_AVAILABLE] = ACTIONS(1904), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1904), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1904), + [anon_sym_API_AVAILABLE] = ACTIONS(1904), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1904), + [anon_sym_API_DEPRECATED] = ACTIONS(1904), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1904), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1904), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1904), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1904), + [anon_sym___deprecated_msg] = ACTIONS(1904), + [anon_sym___deprecated_enum_msg] = ACTIONS(1904), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1904), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1904), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1904), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1904), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1904), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1904), + [anon_sym_ATimplementation] = ACTIONS(1906), + [anon_sym_NS_ENUM] = ACTIONS(1904), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1904), + [anon_sym_NS_OPTIONS] = ACTIONS(1904), + [anon_sym_typeof] = ACTIONS(1904), + [anon_sym___typeof] = ACTIONS(1904), + [anon_sym___typeof__] = ACTIONS(1904), + [sym_self] = ACTIONS(1904), + [sym_super] = ACTIONS(1904), + [sym_nil] = ACTIONS(1904), + [sym_id] = ACTIONS(1904), + [sym_instancetype] = ACTIONS(1904), + [sym_Class] = ACTIONS(1904), + [sym_SEL] = ACTIONS(1904), + [sym_IMP] = ACTIONS(1904), + [sym_BOOL] = ACTIONS(1904), + [sym_auto] = ACTIONS(1904), + [anon_sym_ATautoreleasepool] = ACTIONS(1906), + [anon_sym_ATsynchronized] = ACTIONS(1906), + [anon_sym_ATtry] = ACTIONS(1906), + [anon_sym_ATthrow] = ACTIONS(1906), + [anon_sym_ATselector] = ACTIONS(1906), + [anon_sym_ATencode] = ACTIONS(1906), + [anon_sym_AT] = ACTIONS(1904), + [sym_YES] = ACTIONS(1904), + [sym_NO] = ACTIONS(1904), + [anon_sym___builtin_available] = ACTIONS(1904), + [anon_sym_ATavailable] = ACTIONS(1906), + [anon_sym_va_arg] = ACTIONS(1904), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1156] = { + [ts_builtin_sym_end] = ACTIONS(1686), + [sym_identifier] = ACTIONS(1684), + [aux_sym_preproc_include_token1] = ACTIONS(1686), + [aux_sym_preproc_def_token1] = ACTIONS(1686), + [aux_sym_preproc_if_token1] = ACTIONS(1684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1684), + [anon_sym_LPAREN2] = ACTIONS(1686), + [anon_sym_BANG] = ACTIONS(1686), + [anon_sym_TILDE] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_STAR] = ACTIONS(1686), + [anon_sym_CARET] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_typedef] = ACTIONS(1684), + [anon_sym_extern] = ACTIONS(1684), + [anon_sym___attribute] = ACTIONS(1684), + [anon_sym___attribute__] = ACTIONS(1684), + [anon_sym___declspec] = ACTIONS(1684), + [anon_sym___cdecl] = ACTIONS(1684), + [anon_sym___clrcall] = ACTIONS(1684), + [anon_sym___stdcall] = ACTIONS(1684), + [anon_sym___fastcall] = ACTIONS(1684), + [anon_sym___thiscall] = ACTIONS(1684), + [anon_sym___vectorcall] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_static] = ACTIONS(1684), + [anon_sym_auto] = ACTIONS(1684), + [anon_sym_register] = ACTIONS(1684), + [anon_sym_inline] = ACTIONS(1684), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1684), + [anon_sym_const] = ACTIONS(1684), + [anon_sym_volatile] = ACTIONS(1684), + [anon_sym_restrict] = ACTIONS(1684), + [anon_sym__Atomic] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1684), + [anon_sym_out] = ACTIONS(1684), + [anon_sym_inout] = ACTIONS(1684), + [anon_sym_bycopy] = ACTIONS(1684), + [anon_sym_byref] = ACTIONS(1684), + [anon_sym_oneway] = ACTIONS(1684), + [anon_sym__Nullable] = ACTIONS(1684), + [anon_sym__Nonnull] = ACTIONS(1684), + [anon_sym__Nullable_result] = ACTIONS(1684), + [anon_sym__Null_unspecified] = ACTIONS(1684), + [anon_sym___autoreleasing] = ACTIONS(1684), + [anon_sym___nullable] = ACTIONS(1684), + [anon_sym___nonnull] = ACTIONS(1684), + [anon_sym___strong] = ACTIONS(1684), + [anon_sym___weak] = ACTIONS(1684), + [anon_sym___bridge] = ACTIONS(1684), + [anon_sym___bridge_transfer] = ACTIONS(1684), + [anon_sym___bridge_retained] = ACTIONS(1684), + [anon_sym___unsafe_unretained] = ACTIONS(1684), + [anon_sym___block] = ACTIONS(1684), + [anon_sym___kindof] = ACTIONS(1684), + [anon_sym___unused] = ACTIONS(1684), + [anon_sym__Complex] = ACTIONS(1684), + [anon_sym___complex] = ACTIONS(1684), + [anon_sym_IBOutlet] = ACTIONS(1684), + [anon_sym_IBInspectable] = ACTIONS(1684), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1684), + [anon_sym_signed] = ACTIONS(1684), + [anon_sym_unsigned] = ACTIONS(1684), + [anon_sym_long] = ACTIONS(1684), + [anon_sym_short] = ACTIONS(1684), + [sym_primitive_type] = ACTIONS(1684), + [anon_sym_enum] = ACTIONS(1684), + [anon_sym_struct] = ACTIONS(1684), + [anon_sym_union] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1684), + [anon_sym_switch] = ACTIONS(1684), + [anon_sym_case] = ACTIONS(1684), + [anon_sym_default] = ACTIONS(1684), + [anon_sym_while] = ACTIONS(1684), + [anon_sym_do] = ACTIONS(1684), + [anon_sym_for] = ACTIONS(1684), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_break] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_sizeof] = ACTIONS(1684), + [sym_number_literal] = ACTIONS(1686), + [anon_sym_L_SQUOTE] = ACTIONS(1686), + [anon_sym_u_SQUOTE] = ACTIONS(1686), + [anon_sym_U_SQUOTE] = ACTIONS(1686), + [anon_sym_u8_SQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE] = ACTIONS(1686), + [anon_sym_L_DQUOTE] = ACTIONS(1686), + [anon_sym_u_DQUOTE] = ACTIONS(1686), + [anon_sym_U_DQUOTE] = ACTIONS(1686), + [anon_sym_u8_DQUOTE] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1686), + [sym_true] = ACTIONS(1684), + [sym_false] = ACTIONS(1684), + [sym_null] = ACTIONS(1684), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1686), + [anon_sym_ATimport] = ACTIONS(1686), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1684), + [anon_sym_ATcompatibility_alias] = ACTIONS(1686), + [anon_sym_ATprotocol] = ACTIONS(1686), + [anon_sym_ATclass] = ACTIONS(1686), + [anon_sym_ATinterface] = ACTIONS(1686), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1684), + [sym_method_attribute_specifier] = ACTIONS(1684), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1684), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1684), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1684), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1684), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1684), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1684), + [anon_sym_NS_AVAILABLE] = ACTIONS(1684), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1684), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_API_AVAILABLE] = ACTIONS(1684), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1684), + [anon_sym_API_DEPRECATED] = ACTIONS(1684), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1684), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1684), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1684), + [anon_sym___deprecated_msg] = ACTIONS(1684), + [anon_sym___deprecated_enum_msg] = ACTIONS(1684), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1684), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1684), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1684), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1684), + [anon_sym_ATimplementation] = ACTIONS(1686), + [anon_sym_NS_ENUM] = ACTIONS(1684), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1684), + [anon_sym_NS_OPTIONS] = ACTIONS(1684), + [anon_sym_typeof] = ACTIONS(1684), + [anon_sym___typeof] = ACTIONS(1684), + [anon_sym___typeof__] = ACTIONS(1684), + [sym_self] = ACTIONS(1684), + [sym_super] = ACTIONS(1684), + [sym_nil] = ACTIONS(1684), + [sym_id] = ACTIONS(1684), + [sym_instancetype] = ACTIONS(1684), + [sym_Class] = ACTIONS(1684), + [sym_SEL] = ACTIONS(1684), + [sym_IMP] = ACTIONS(1684), + [sym_BOOL] = ACTIONS(1684), + [sym_auto] = ACTIONS(1684), + [anon_sym_ATautoreleasepool] = ACTIONS(1686), + [anon_sym_ATsynchronized] = ACTIONS(1686), + [anon_sym_ATtry] = ACTIONS(1686), + [anon_sym_ATthrow] = ACTIONS(1686), + [anon_sym_ATselector] = ACTIONS(1686), + [anon_sym_ATencode] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1684), + [sym_YES] = ACTIONS(1684), + [sym_NO] = ACTIONS(1684), + [anon_sym___builtin_available] = ACTIONS(1684), + [anon_sym_ATavailable] = ACTIONS(1686), + [anon_sym_va_arg] = ACTIONS(1684), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1157] = { + [ts_builtin_sym_end] = ACTIONS(1694), + [sym_identifier] = ACTIONS(1692), + [aux_sym_preproc_include_token1] = ACTIONS(1694), + [aux_sym_preproc_def_token1] = ACTIONS(1694), + [aux_sym_preproc_if_token1] = ACTIONS(1692), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1692), + [anon_sym_LPAREN2] = ACTIONS(1694), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_TILDE] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_PLUS] = ACTIONS(1692), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_CARET] = ACTIONS(1694), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1694), + [anon_sym_typedef] = ACTIONS(1692), + [anon_sym_extern] = ACTIONS(1692), + [anon_sym___attribute] = ACTIONS(1692), + [anon_sym___attribute__] = ACTIONS(1692), + [anon_sym___declspec] = ACTIONS(1692), + [anon_sym___cdecl] = ACTIONS(1692), + [anon_sym___clrcall] = ACTIONS(1692), + [anon_sym___stdcall] = ACTIONS(1692), + [anon_sym___fastcall] = ACTIONS(1692), + [anon_sym___thiscall] = ACTIONS(1692), + [anon_sym___vectorcall] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1694), + [anon_sym_RBRACE] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_auto] = ACTIONS(1692), + [anon_sym_register] = ACTIONS(1692), + [anon_sym_inline] = ACTIONS(1692), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1692), + [anon_sym_volatile] = ACTIONS(1692), + [anon_sym_restrict] = ACTIONS(1692), + [anon_sym__Atomic] = ACTIONS(1692), + [anon_sym_in] = ACTIONS(1692), + [anon_sym_out] = ACTIONS(1692), + [anon_sym_inout] = ACTIONS(1692), + [anon_sym_bycopy] = ACTIONS(1692), + [anon_sym_byref] = ACTIONS(1692), + [anon_sym_oneway] = ACTIONS(1692), + [anon_sym__Nullable] = ACTIONS(1692), + [anon_sym__Nonnull] = ACTIONS(1692), + [anon_sym__Nullable_result] = ACTIONS(1692), + [anon_sym__Null_unspecified] = ACTIONS(1692), + [anon_sym___autoreleasing] = ACTIONS(1692), + [anon_sym___nullable] = ACTIONS(1692), + [anon_sym___nonnull] = ACTIONS(1692), + [anon_sym___strong] = ACTIONS(1692), + [anon_sym___weak] = ACTIONS(1692), + [anon_sym___bridge] = ACTIONS(1692), + [anon_sym___bridge_transfer] = ACTIONS(1692), + [anon_sym___bridge_retained] = ACTIONS(1692), + [anon_sym___unsafe_unretained] = ACTIONS(1692), + [anon_sym___block] = ACTIONS(1692), + [anon_sym___kindof] = ACTIONS(1692), + [anon_sym___unused] = ACTIONS(1692), + [anon_sym__Complex] = ACTIONS(1692), + [anon_sym___complex] = ACTIONS(1692), + [anon_sym_IBOutlet] = ACTIONS(1692), + [anon_sym_IBInspectable] = ACTIONS(1692), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1692), + [anon_sym_signed] = ACTIONS(1692), + [anon_sym_unsigned] = ACTIONS(1692), + [anon_sym_long] = ACTIONS(1692), + [anon_sym_short] = ACTIONS(1692), + [sym_primitive_type] = ACTIONS(1692), + [anon_sym_enum] = ACTIONS(1692), + [anon_sym_struct] = ACTIONS(1692), + [anon_sym_union] = ACTIONS(1692), + [anon_sym_if] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1692), + [anon_sym_case] = ACTIONS(1692), + [anon_sym_default] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1692), + [anon_sym_do] = ACTIONS(1692), + [anon_sym_for] = ACTIONS(1692), + [anon_sym_return] = ACTIONS(1692), + [anon_sym_break] = ACTIONS(1692), + [anon_sym_continue] = ACTIONS(1692), + [anon_sym_goto] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1694), + [anon_sym_PLUS_PLUS] = ACTIONS(1694), + [anon_sym_sizeof] = ACTIONS(1692), + [sym_number_literal] = ACTIONS(1694), + [anon_sym_L_SQUOTE] = ACTIONS(1694), + [anon_sym_u_SQUOTE] = ACTIONS(1694), + [anon_sym_U_SQUOTE] = ACTIONS(1694), + [anon_sym_u8_SQUOTE] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1694), + [anon_sym_L_DQUOTE] = ACTIONS(1694), + [anon_sym_u_DQUOTE] = ACTIONS(1694), + [anon_sym_U_DQUOTE] = ACTIONS(1694), + [anon_sym_u8_DQUOTE] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [sym_true] = ACTIONS(1692), + [sym_false] = ACTIONS(1692), + [sym_null] = ACTIONS(1692), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1694), + [anon_sym_ATimport] = ACTIONS(1694), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1692), + [anon_sym_ATcompatibility_alias] = ACTIONS(1694), + [anon_sym_ATprotocol] = ACTIONS(1694), + [anon_sym_ATclass] = ACTIONS(1694), + [anon_sym_ATinterface] = ACTIONS(1694), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1692), + [sym_method_attribute_specifier] = ACTIONS(1692), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1692), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1692), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1692), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1692), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1692), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1692), + [anon_sym_NS_AVAILABLE] = ACTIONS(1692), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1692), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1692), + [anon_sym_API_AVAILABLE] = ACTIONS(1692), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1692), + [anon_sym_API_DEPRECATED] = ACTIONS(1692), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1692), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1692), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1692), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1692), + [anon_sym___deprecated_msg] = ACTIONS(1692), + [anon_sym___deprecated_enum_msg] = ACTIONS(1692), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1692), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1692), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1692), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1692), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1692), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1692), + [anon_sym_ATimplementation] = ACTIONS(1694), + [anon_sym_NS_ENUM] = ACTIONS(1692), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1692), + [anon_sym_NS_OPTIONS] = ACTIONS(1692), + [anon_sym_typeof] = ACTIONS(1692), + [anon_sym___typeof] = ACTIONS(1692), + [anon_sym___typeof__] = ACTIONS(1692), + [sym_self] = ACTIONS(1692), + [sym_super] = ACTIONS(1692), + [sym_nil] = ACTIONS(1692), + [sym_id] = ACTIONS(1692), + [sym_instancetype] = ACTIONS(1692), + [sym_Class] = ACTIONS(1692), + [sym_SEL] = ACTIONS(1692), + [sym_IMP] = ACTIONS(1692), + [sym_BOOL] = ACTIONS(1692), + [sym_auto] = ACTIONS(1692), + [anon_sym_ATautoreleasepool] = ACTIONS(1694), + [anon_sym_ATsynchronized] = ACTIONS(1694), + [anon_sym_ATtry] = ACTIONS(1694), + [anon_sym_ATthrow] = ACTIONS(1694), + [anon_sym_ATselector] = ACTIONS(1694), + [anon_sym_ATencode] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(1692), + [sym_YES] = ACTIONS(1692), + [sym_NO] = ACTIONS(1692), + [anon_sym___builtin_available] = ACTIONS(1692), + [anon_sym_ATavailable] = ACTIONS(1694), + [anon_sym_va_arg] = ACTIONS(1692), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1158] = { + [ts_builtin_sym_end] = ACTIONS(1902), + [sym_identifier] = ACTIONS(1900), + [aux_sym_preproc_include_token1] = ACTIONS(1902), + [aux_sym_preproc_def_token1] = ACTIONS(1902), + [aux_sym_preproc_if_token1] = ACTIONS(1900), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1900), + [anon_sym_LPAREN2] = ACTIONS(1902), + [anon_sym_BANG] = ACTIONS(1902), + [anon_sym_TILDE] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1902), + [anon_sym_CARET] = ACTIONS(1902), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_typedef] = ACTIONS(1900), + [anon_sym_extern] = ACTIONS(1900), + [anon_sym___attribute] = ACTIONS(1900), + [anon_sym___attribute__] = ACTIONS(1900), + [anon_sym___declspec] = ACTIONS(1900), + [anon_sym___cdecl] = ACTIONS(1900), + [anon_sym___clrcall] = ACTIONS(1900), + [anon_sym___stdcall] = ACTIONS(1900), + [anon_sym___fastcall] = ACTIONS(1900), + [anon_sym___thiscall] = ACTIONS(1900), + [anon_sym___vectorcall] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1902), + [anon_sym_LBRACK] = ACTIONS(1902), + [anon_sym_static] = ACTIONS(1900), + [anon_sym_auto] = ACTIONS(1900), + [anon_sym_register] = ACTIONS(1900), + [anon_sym_inline] = ACTIONS(1900), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1900), + [anon_sym_volatile] = ACTIONS(1900), + [anon_sym_restrict] = ACTIONS(1900), + [anon_sym__Atomic] = ACTIONS(1900), + [anon_sym_in] = ACTIONS(1900), + [anon_sym_out] = ACTIONS(1900), + [anon_sym_inout] = ACTIONS(1900), + [anon_sym_bycopy] = ACTIONS(1900), + [anon_sym_byref] = ACTIONS(1900), + [anon_sym_oneway] = ACTIONS(1900), + [anon_sym__Nullable] = ACTIONS(1900), + [anon_sym__Nonnull] = ACTIONS(1900), + [anon_sym__Nullable_result] = ACTIONS(1900), + [anon_sym__Null_unspecified] = ACTIONS(1900), + [anon_sym___autoreleasing] = ACTIONS(1900), + [anon_sym___nullable] = ACTIONS(1900), + [anon_sym___nonnull] = ACTIONS(1900), + [anon_sym___strong] = ACTIONS(1900), + [anon_sym___weak] = ACTIONS(1900), + [anon_sym___bridge] = ACTIONS(1900), + [anon_sym___bridge_transfer] = ACTIONS(1900), + [anon_sym___bridge_retained] = ACTIONS(1900), + [anon_sym___unsafe_unretained] = ACTIONS(1900), + [anon_sym___block] = ACTIONS(1900), + [anon_sym___kindof] = ACTIONS(1900), + [anon_sym___unused] = ACTIONS(1900), + [anon_sym__Complex] = ACTIONS(1900), + [anon_sym___complex] = ACTIONS(1900), + [anon_sym_IBOutlet] = ACTIONS(1900), + [anon_sym_IBInspectable] = ACTIONS(1900), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1900), + [anon_sym_signed] = ACTIONS(1900), + [anon_sym_unsigned] = ACTIONS(1900), + [anon_sym_long] = ACTIONS(1900), + [anon_sym_short] = ACTIONS(1900), + [sym_primitive_type] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1900), + [anon_sym_struct] = ACTIONS(1900), + [anon_sym_union] = ACTIONS(1900), + [anon_sym_if] = ACTIONS(1900), + [anon_sym_switch] = ACTIONS(1900), + [anon_sym_case] = ACTIONS(1900), + [anon_sym_default] = ACTIONS(1900), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_do] = ACTIONS(1900), + [anon_sym_for] = ACTIONS(1900), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(1900), + [anon_sym_goto] = ACTIONS(1900), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1900), + [sym_number_literal] = ACTIONS(1902), + [anon_sym_L_SQUOTE] = ACTIONS(1902), + [anon_sym_u_SQUOTE] = ACTIONS(1902), + [anon_sym_U_SQUOTE] = ACTIONS(1902), + [anon_sym_u8_SQUOTE] = ACTIONS(1902), + [anon_sym_SQUOTE] = ACTIONS(1902), + [anon_sym_L_DQUOTE] = ACTIONS(1902), + [anon_sym_u_DQUOTE] = ACTIONS(1902), + [anon_sym_U_DQUOTE] = ACTIONS(1902), + [anon_sym_u8_DQUOTE] = ACTIONS(1902), + [anon_sym_DQUOTE] = ACTIONS(1902), + [sym_true] = ACTIONS(1900), + [sym_false] = ACTIONS(1900), + [sym_null] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1902), + [anon_sym_ATimport] = ACTIONS(1902), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1900), + [anon_sym_ATcompatibility_alias] = ACTIONS(1902), + [anon_sym_ATprotocol] = ACTIONS(1902), + [anon_sym_ATclass] = ACTIONS(1902), + [anon_sym_ATinterface] = ACTIONS(1902), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1900), + [sym_method_attribute_specifier] = ACTIONS(1900), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1900), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1900), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1900), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1900), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1900), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1900), + [anon_sym_NS_AVAILABLE] = ACTIONS(1900), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1900), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1900), + [anon_sym_API_AVAILABLE] = ACTIONS(1900), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1900), + [anon_sym_API_DEPRECATED] = ACTIONS(1900), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1900), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1900), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1900), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1900), + [anon_sym___deprecated_msg] = ACTIONS(1900), + [anon_sym___deprecated_enum_msg] = ACTIONS(1900), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1900), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1900), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1900), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1900), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1900), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1900), + [anon_sym_ATimplementation] = ACTIONS(1902), + [anon_sym_NS_ENUM] = ACTIONS(1900), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1900), + [anon_sym_NS_OPTIONS] = ACTIONS(1900), + [anon_sym_typeof] = ACTIONS(1900), + [anon_sym___typeof] = ACTIONS(1900), + [anon_sym___typeof__] = ACTIONS(1900), + [sym_self] = ACTIONS(1900), + [sym_super] = ACTIONS(1900), + [sym_nil] = ACTIONS(1900), + [sym_id] = ACTIONS(1900), + [sym_instancetype] = ACTIONS(1900), + [sym_Class] = ACTIONS(1900), + [sym_SEL] = ACTIONS(1900), + [sym_IMP] = ACTIONS(1900), + [sym_BOOL] = ACTIONS(1900), + [sym_auto] = ACTIONS(1900), + [anon_sym_ATautoreleasepool] = ACTIONS(1902), + [anon_sym_ATsynchronized] = ACTIONS(1902), + [anon_sym_ATtry] = ACTIONS(1902), + [anon_sym_ATthrow] = ACTIONS(1902), + [anon_sym_ATselector] = ACTIONS(1902), + [anon_sym_ATencode] = ACTIONS(1902), + [anon_sym_AT] = ACTIONS(1900), + [sym_YES] = ACTIONS(1900), + [sym_NO] = ACTIONS(1900), + [anon_sym___builtin_available] = ACTIONS(1900), + [anon_sym_ATavailable] = ACTIONS(1902), + [anon_sym_va_arg] = ACTIONS(1900), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1159] = { + [ts_builtin_sym_end] = ACTIONS(1898), + [sym_identifier] = ACTIONS(1896), + [aux_sym_preproc_include_token1] = ACTIONS(1898), + [aux_sym_preproc_def_token1] = ACTIONS(1898), + [aux_sym_preproc_if_token1] = ACTIONS(1896), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1896), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1896), + [anon_sym_LPAREN2] = ACTIONS(1898), + [anon_sym_BANG] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1898), + [anon_sym_CARET] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_typedef] = ACTIONS(1896), + [anon_sym_extern] = ACTIONS(1896), + [anon_sym___attribute] = ACTIONS(1896), + [anon_sym___attribute__] = ACTIONS(1896), + [anon_sym___declspec] = ACTIONS(1896), + [anon_sym___cdecl] = ACTIONS(1896), + [anon_sym___clrcall] = ACTIONS(1896), + [anon_sym___stdcall] = ACTIONS(1896), + [anon_sym___fastcall] = ACTIONS(1896), + [anon_sym___thiscall] = ACTIONS(1896), + [anon_sym___vectorcall] = ACTIONS(1896), + [anon_sym_LBRACE] = ACTIONS(1898), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_static] = ACTIONS(1896), + [anon_sym_auto] = ACTIONS(1896), + [anon_sym_register] = ACTIONS(1896), + [anon_sym_inline] = ACTIONS(1896), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1896), + [anon_sym_const] = ACTIONS(1896), + [anon_sym_volatile] = ACTIONS(1896), + [anon_sym_restrict] = ACTIONS(1896), + [anon_sym__Atomic] = ACTIONS(1896), + [anon_sym_in] = ACTIONS(1896), + [anon_sym_out] = ACTIONS(1896), + [anon_sym_inout] = ACTIONS(1896), + [anon_sym_bycopy] = ACTIONS(1896), + [anon_sym_byref] = ACTIONS(1896), + [anon_sym_oneway] = ACTIONS(1896), + [anon_sym__Nullable] = ACTIONS(1896), + [anon_sym__Nonnull] = ACTIONS(1896), + [anon_sym__Nullable_result] = ACTIONS(1896), + [anon_sym__Null_unspecified] = ACTIONS(1896), + [anon_sym___autoreleasing] = ACTIONS(1896), + [anon_sym___nullable] = ACTIONS(1896), + [anon_sym___nonnull] = ACTIONS(1896), + [anon_sym___strong] = ACTIONS(1896), + [anon_sym___weak] = ACTIONS(1896), + [anon_sym___bridge] = ACTIONS(1896), + [anon_sym___bridge_transfer] = ACTIONS(1896), + [anon_sym___bridge_retained] = ACTIONS(1896), + [anon_sym___unsafe_unretained] = ACTIONS(1896), + [anon_sym___block] = ACTIONS(1896), + [anon_sym___kindof] = ACTIONS(1896), + [anon_sym___unused] = ACTIONS(1896), + [anon_sym__Complex] = ACTIONS(1896), + [anon_sym___complex] = ACTIONS(1896), + [anon_sym_IBOutlet] = ACTIONS(1896), + [anon_sym_IBInspectable] = ACTIONS(1896), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1896), + [anon_sym_signed] = ACTIONS(1896), + [anon_sym_unsigned] = ACTIONS(1896), + [anon_sym_long] = ACTIONS(1896), + [anon_sym_short] = ACTIONS(1896), + [sym_primitive_type] = ACTIONS(1896), + [anon_sym_enum] = ACTIONS(1896), + [anon_sym_struct] = ACTIONS(1896), + [anon_sym_union] = ACTIONS(1896), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_switch] = ACTIONS(1896), + [anon_sym_case] = ACTIONS(1896), + [anon_sym_default] = ACTIONS(1896), + [anon_sym_while] = ACTIONS(1896), + [anon_sym_do] = ACTIONS(1896), + [anon_sym_for] = ACTIONS(1896), + [anon_sym_return] = ACTIONS(1896), + [anon_sym_break] = ACTIONS(1896), + [anon_sym_continue] = ACTIONS(1896), + [anon_sym_goto] = ACTIONS(1896), + [anon_sym_DASH_DASH] = ACTIONS(1898), + [anon_sym_PLUS_PLUS] = ACTIONS(1898), + [anon_sym_sizeof] = ACTIONS(1896), + [sym_number_literal] = ACTIONS(1898), + [anon_sym_L_SQUOTE] = ACTIONS(1898), + [anon_sym_u_SQUOTE] = ACTIONS(1898), + [anon_sym_U_SQUOTE] = ACTIONS(1898), + [anon_sym_u8_SQUOTE] = ACTIONS(1898), + [anon_sym_SQUOTE] = ACTIONS(1898), + [anon_sym_L_DQUOTE] = ACTIONS(1898), + [anon_sym_u_DQUOTE] = ACTIONS(1898), + [anon_sym_U_DQUOTE] = ACTIONS(1898), + [anon_sym_u8_DQUOTE] = ACTIONS(1898), + [anon_sym_DQUOTE] = ACTIONS(1898), + [sym_true] = ACTIONS(1896), + [sym_false] = ACTIONS(1896), + [sym_null] = ACTIONS(1896), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1898), + [anon_sym_ATimport] = ACTIONS(1898), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1896), + [anon_sym_ATcompatibility_alias] = ACTIONS(1898), + [anon_sym_ATprotocol] = ACTIONS(1898), + [anon_sym_ATclass] = ACTIONS(1898), + [anon_sym_ATinterface] = ACTIONS(1898), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1896), + [sym_method_attribute_specifier] = ACTIONS(1896), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1896), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1896), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1896), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1896), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1896), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1896), + [anon_sym_NS_AVAILABLE] = ACTIONS(1896), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1896), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1896), + [anon_sym_API_AVAILABLE] = ACTIONS(1896), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1896), + [anon_sym_API_DEPRECATED] = ACTIONS(1896), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1896), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1896), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1896), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1896), + [anon_sym___deprecated_msg] = ACTIONS(1896), + [anon_sym___deprecated_enum_msg] = ACTIONS(1896), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1896), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1896), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1896), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1896), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1896), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1896), + [anon_sym_ATimplementation] = ACTIONS(1898), + [anon_sym_NS_ENUM] = ACTIONS(1896), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1896), + [anon_sym_NS_OPTIONS] = ACTIONS(1896), + [anon_sym_typeof] = ACTIONS(1896), + [anon_sym___typeof] = ACTIONS(1896), + [anon_sym___typeof__] = ACTIONS(1896), + [sym_self] = ACTIONS(1896), + [sym_super] = ACTIONS(1896), + [sym_nil] = ACTIONS(1896), + [sym_id] = ACTIONS(1896), + [sym_instancetype] = ACTIONS(1896), + [sym_Class] = ACTIONS(1896), + [sym_SEL] = ACTIONS(1896), + [sym_IMP] = ACTIONS(1896), + [sym_BOOL] = ACTIONS(1896), + [sym_auto] = ACTIONS(1896), + [anon_sym_ATautoreleasepool] = ACTIONS(1898), + [anon_sym_ATsynchronized] = ACTIONS(1898), + [anon_sym_ATtry] = ACTIONS(1898), + [anon_sym_ATthrow] = ACTIONS(1898), + [anon_sym_ATselector] = ACTIONS(1898), + [anon_sym_ATencode] = ACTIONS(1898), + [anon_sym_AT] = ACTIONS(1896), + [sym_YES] = ACTIONS(1896), + [sym_NO] = ACTIONS(1896), + [anon_sym___builtin_available] = ACTIONS(1896), + [anon_sym_ATavailable] = ACTIONS(1898), + [anon_sym_va_arg] = ACTIONS(1896), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1160] = { + [ts_builtin_sym_end] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1161] = { + [ts_builtin_sym_end] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1162] = { + [ts_builtin_sym_end] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1163] = { + [ts_builtin_sym_end] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1164] = { + [ts_builtin_sym_end] = ACTIONS(2026), + [sym_identifier] = ACTIONS(2024), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2026), + [aux_sym_preproc_if_token1] = ACTIONS(2024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2024), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2026), + [anon_sym_TILDE] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_CARET] = ACTIONS(2026), + [anon_sym_AMP] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym_typedef] = ACTIONS(2024), + [anon_sym_extern] = ACTIONS(2024), + [anon_sym___attribute] = ACTIONS(2024), + [anon_sym___attribute__] = ACTIONS(2024), + [anon_sym___declspec] = ACTIONS(2024), + [anon_sym___cdecl] = ACTIONS(2024), + [anon_sym___clrcall] = ACTIONS(2024), + [anon_sym___stdcall] = ACTIONS(2024), + [anon_sym___fastcall] = ACTIONS(2024), + [anon_sym___thiscall] = ACTIONS(2024), + [anon_sym___vectorcall] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_static] = ACTIONS(2024), + [anon_sym_auto] = ACTIONS(2024), + [anon_sym_register] = ACTIONS(2024), + [anon_sym_inline] = ACTIONS(2024), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2024), + [anon_sym_const] = ACTIONS(2024), + [anon_sym_volatile] = ACTIONS(2024), + [anon_sym_restrict] = ACTIONS(2024), + [anon_sym__Atomic] = ACTIONS(2024), + [anon_sym_in] = ACTIONS(2024), + [anon_sym_out] = ACTIONS(2024), + [anon_sym_inout] = ACTIONS(2024), + [anon_sym_bycopy] = ACTIONS(2024), + [anon_sym_byref] = ACTIONS(2024), + [anon_sym_oneway] = ACTIONS(2024), + [anon_sym__Nullable] = ACTIONS(2024), + [anon_sym__Nonnull] = ACTIONS(2024), + [anon_sym__Nullable_result] = ACTIONS(2024), + [anon_sym__Null_unspecified] = ACTIONS(2024), + [anon_sym___autoreleasing] = ACTIONS(2024), + [anon_sym___nullable] = ACTIONS(2024), + [anon_sym___nonnull] = ACTIONS(2024), + [anon_sym___strong] = ACTIONS(2024), + [anon_sym___weak] = ACTIONS(2024), + [anon_sym___bridge] = ACTIONS(2024), + [anon_sym___bridge_transfer] = ACTIONS(2024), + [anon_sym___bridge_retained] = ACTIONS(2024), + [anon_sym___unsafe_unretained] = ACTIONS(2024), + [anon_sym___block] = ACTIONS(2024), + [anon_sym___kindof] = ACTIONS(2024), + [anon_sym___unused] = ACTIONS(2024), + [anon_sym__Complex] = ACTIONS(2024), + [anon_sym___complex] = ACTIONS(2024), + [anon_sym_IBOutlet] = ACTIONS(2024), + [anon_sym_IBInspectable] = ACTIONS(2024), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2024), + [anon_sym_signed] = ACTIONS(2024), + [anon_sym_unsigned] = ACTIONS(2024), + [anon_sym_long] = ACTIONS(2024), + [anon_sym_short] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2024), + [anon_sym_enum] = ACTIONS(2024), + [anon_sym_struct] = ACTIONS(2024), + [anon_sym_union] = ACTIONS(2024), + [anon_sym_if] = ACTIONS(2024), + [anon_sym_switch] = ACTIONS(2024), + [anon_sym_case] = ACTIONS(2024), + [anon_sym_default] = ACTIONS(2024), + [anon_sym_while] = ACTIONS(2024), + [anon_sym_do] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2024), + [anon_sym_break] = ACTIONS(2024), + [anon_sym_continue] = ACTIONS(2024), + [anon_sym_goto] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(2024), + [sym_number_literal] = ACTIONS(2026), + [anon_sym_L_SQUOTE] = ACTIONS(2026), + [anon_sym_u_SQUOTE] = ACTIONS(2026), + [anon_sym_U_SQUOTE] = ACTIONS(2026), + [anon_sym_u8_SQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2026), + [anon_sym_L_DQUOTE] = ACTIONS(2026), + [anon_sym_u_DQUOTE] = ACTIONS(2026), + [anon_sym_U_DQUOTE] = ACTIONS(2026), + [anon_sym_u8_DQUOTE] = ACTIONS(2026), + [anon_sym_DQUOTE] = ACTIONS(2026), + [sym_true] = ACTIONS(2024), + [sym_false] = ACTIONS(2024), + [sym_null] = ACTIONS(2024), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2026), + [anon_sym_ATimport] = ACTIONS(2026), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2024), + [anon_sym_ATcompatibility_alias] = ACTIONS(2026), + [anon_sym_ATprotocol] = ACTIONS(2026), + [anon_sym_ATclass] = ACTIONS(2026), + [anon_sym_ATinterface] = ACTIONS(2026), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2024), + [sym_method_attribute_specifier] = ACTIONS(2024), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2024), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2024), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2024), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2024), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2024), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2024), + [anon_sym_NS_AVAILABLE] = ACTIONS(2024), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2024), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2024), + [anon_sym_API_AVAILABLE] = ACTIONS(2024), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2024), + [anon_sym_API_DEPRECATED] = ACTIONS(2024), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2024), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2024), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2024), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2024), + [anon_sym___deprecated_msg] = ACTIONS(2024), + [anon_sym___deprecated_enum_msg] = ACTIONS(2024), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2024), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2024), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2024), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2024), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2024), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2024), + [anon_sym_ATimplementation] = ACTIONS(2026), + [anon_sym_NS_ENUM] = ACTIONS(2024), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2024), + [anon_sym_NS_OPTIONS] = ACTIONS(2024), + [anon_sym_typeof] = ACTIONS(2024), + [anon_sym___typeof] = ACTIONS(2024), + [anon_sym___typeof__] = ACTIONS(2024), + [sym_self] = ACTIONS(2024), + [sym_super] = ACTIONS(2024), + [sym_nil] = ACTIONS(2024), + [sym_id] = ACTIONS(2024), + [sym_instancetype] = ACTIONS(2024), + [sym_Class] = ACTIONS(2024), + [sym_SEL] = ACTIONS(2024), + [sym_IMP] = ACTIONS(2024), + [sym_BOOL] = ACTIONS(2024), + [sym_auto] = ACTIONS(2024), + [anon_sym_ATautoreleasepool] = ACTIONS(2026), + [anon_sym_ATsynchronized] = ACTIONS(2026), + [anon_sym_ATtry] = ACTIONS(2026), + [anon_sym_ATthrow] = ACTIONS(2026), + [anon_sym_ATselector] = ACTIONS(2026), + [anon_sym_ATencode] = ACTIONS(2026), + [anon_sym_AT] = ACTIONS(2024), + [sym_YES] = ACTIONS(2024), + [sym_NO] = ACTIONS(2024), + [anon_sym___builtin_available] = ACTIONS(2024), + [anon_sym_ATavailable] = ACTIONS(2026), + [anon_sym_va_arg] = ACTIONS(2024), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1165] = { + [ts_builtin_sym_end] = ACTIONS(2022), + [sym_identifier] = ACTIONS(2020), + [aux_sym_preproc_include_token1] = ACTIONS(2022), + [aux_sym_preproc_def_token1] = ACTIONS(2022), + [aux_sym_preproc_if_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [anon_sym_LPAREN2] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2022), + [anon_sym_TILDE] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2020), + [anon_sym_PLUS] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(2022), + [anon_sym_CARET] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2022), + [anon_sym_typedef] = ACTIONS(2020), + [anon_sym_extern] = ACTIONS(2020), + [anon_sym___attribute] = ACTIONS(2020), + [anon_sym___attribute__] = ACTIONS(2020), + [anon_sym___declspec] = ACTIONS(2020), + [anon_sym___cdecl] = ACTIONS(2020), + [anon_sym___clrcall] = ACTIONS(2020), + [anon_sym___stdcall] = ACTIONS(2020), + [anon_sym___fastcall] = ACTIONS(2020), + [anon_sym___thiscall] = ACTIONS(2020), + [anon_sym___vectorcall] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(2022), + [anon_sym_static] = ACTIONS(2020), + [anon_sym_auto] = ACTIONS(2020), + [anon_sym_register] = ACTIONS(2020), + [anon_sym_inline] = ACTIONS(2020), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_volatile] = ACTIONS(2020), + [anon_sym_restrict] = ACTIONS(2020), + [anon_sym__Atomic] = ACTIONS(2020), + [anon_sym_in] = ACTIONS(2020), + [anon_sym_out] = ACTIONS(2020), + [anon_sym_inout] = ACTIONS(2020), + [anon_sym_bycopy] = ACTIONS(2020), + [anon_sym_byref] = ACTIONS(2020), + [anon_sym_oneway] = ACTIONS(2020), + [anon_sym__Nullable] = ACTIONS(2020), + [anon_sym__Nonnull] = ACTIONS(2020), + [anon_sym__Nullable_result] = ACTIONS(2020), + [anon_sym__Null_unspecified] = ACTIONS(2020), + [anon_sym___autoreleasing] = ACTIONS(2020), + [anon_sym___nullable] = ACTIONS(2020), + [anon_sym___nonnull] = ACTIONS(2020), + [anon_sym___strong] = ACTIONS(2020), + [anon_sym___weak] = ACTIONS(2020), + [anon_sym___bridge] = ACTIONS(2020), + [anon_sym___bridge_transfer] = ACTIONS(2020), + [anon_sym___bridge_retained] = ACTIONS(2020), + [anon_sym___unsafe_unretained] = ACTIONS(2020), + [anon_sym___block] = ACTIONS(2020), + [anon_sym___kindof] = ACTIONS(2020), + [anon_sym___unused] = ACTIONS(2020), + [anon_sym__Complex] = ACTIONS(2020), + [anon_sym___complex] = ACTIONS(2020), + [anon_sym_IBOutlet] = ACTIONS(2020), + [anon_sym_IBInspectable] = ACTIONS(2020), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2020), + [anon_sym_signed] = ACTIONS(2020), + [anon_sym_unsigned] = ACTIONS(2020), + [anon_sym_long] = ACTIONS(2020), + [anon_sym_short] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_enum] = ACTIONS(2020), + [anon_sym_struct] = ACTIONS(2020), + [anon_sym_union] = ACTIONS(2020), + [anon_sym_if] = ACTIONS(2020), + [anon_sym_switch] = ACTIONS(2020), + [anon_sym_case] = ACTIONS(2020), + [anon_sym_default] = ACTIONS(2020), + [anon_sym_while] = ACTIONS(2020), + [anon_sym_do] = ACTIONS(2020), + [anon_sym_for] = ACTIONS(2020), + [anon_sym_return] = ACTIONS(2020), + [anon_sym_break] = ACTIONS(2020), + [anon_sym_continue] = ACTIONS(2020), + [anon_sym_goto] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2020), + [sym_number_literal] = ACTIONS(2022), + [anon_sym_L_SQUOTE] = ACTIONS(2022), + [anon_sym_u_SQUOTE] = ACTIONS(2022), + [anon_sym_U_SQUOTE] = ACTIONS(2022), + [anon_sym_u8_SQUOTE] = ACTIONS(2022), + [anon_sym_SQUOTE] = ACTIONS(2022), + [anon_sym_L_DQUOTE] = ACTIONS(2022), + [anon_sym_u_DQUOTE] = ACTIONS(2022), + [anon_sym_U_DQUOTE] = ACTIONS(2022), + [anon_sym_u8_DQUOTE] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2022), + [sym_true] = ACTIONS(2020), + [sym_false] = ACTIONS(2020), + [sym_null] = ACTIONS(2020), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2022), + [anon_sym_ATimport] = ACTIONS(2022), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2020), + [anon_sym_ATcompatibility_alias] = ACTIONS(2022), + [anon_sym_ATprotocol] = ACTIONS(2022), + [anon_sym_ATclass] = ACTIONS(2022), + [anon_sym_ATinterface] = ACTIONS(2022), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2020), + [sym_method_attribute_specifier] = ACTIONS(2020), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2020), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2020), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2020), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2020), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2020), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2020), + [anon_sym_NS_AVAILABLE] = ACTIONS(2020), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2020), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2020), + [anon_sym_API_AVAILABLE] = ACTIONS(2020), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2020), + [anon_sym_API_DEPRECATED] = ACTIONS(2020), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2020), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2020), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2020), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2020), + [anon_sym___deprecated_msg] = ACTIONS(2020), + [anon_sym___deprecated_enum_msg] = ACTIONS(2020), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2020), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2020), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2020), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2020), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2020), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2020), + [anon_sym_ATimplementation] = ACTIONS(2022), + [anon_sym_NS_ENUM] = ACTIONS(2020), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2020), + [anon_sym_NS_OPTIONS] = ACTIONS(2020), + [anon_sym_typeof] = ACTIONS(2020), + [anon_sym___typeof] = ACTIONS(2020), + [anon_sym___typeof__] = ACTIONS(2020), + [sym_self] = ACTIONS(2020), + [sym_super] = ACTIONS(2020), + [sym_nil] = ACTIONS(2020), + [sym_id] = ACTIONS(2020), + [sym_instancetype] = ACTIONS(2020), + [sym_Class] = ACTIONS(2020), + [sym_SEL] = ACTIONS(2020), + [sym_IMP] = ACTIONS(2020), + [sym_BOOL] = ACTIONS(2020), + [sym_auto] = ACTIONS(2020), + [anon_sym_ATautoreleasepool] = ACTIONS(2022), + [anon_sym_ATsynchronized] = ACTIONS(2022), + [anon_sym_ATtry] = ACTIONS(2022), + [anon_sym_ATthrow] = ACTIONS(2022), + [anon_sym_ATselector] = ACTIONS(2022), + [anon_sym_ATencode] = ACTIONS(2022), + [anon_sym_AT] = ACTIONS(2020), + [sym_YES] = ACTIONS(2020), + [sym_NO] = ACTIONS(2020), + [anon_sym___builtin_available] = ACTIONS(2020), + [anon_sym_ATavailable] = ACTIONS(2022), + [anon_sym_va_arg] = ACTIONS(2020), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1166] = { + [ts_builtin_sym_end] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1167] = { + [ts_builtin_sym_end] = ACTIONS(1874), + [sym_identifier] = ACTIONS(1872), + [aux_sym_preproc_include_token1] = ACTIONS(1874), + [aux_sym_preproc_def_token1] = ACTIONS(1874), + [aux_sym_preproc_if_token1] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1874), + [anon_sym_TILDE] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1874), + [anon_sym_CARET] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_typedef] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym___attribute] = ACTIONS(1872), + [anon_sym___attribute__] = ACTIONS(1872), + [anon_sym___declspec] = ACTIONS(1872), + [anon_sym___cdecl] = ACTIONS(1872), + [anon_sym___clrcall] = ACTIONS(1872), + [anon_sym___stdcall] = ACTIONS(1872), + [anon_sym___fastcall] = ACTIONS(1872), + [anon_sym___thiscall] = ACTIONS(1872), + [anon_sym___vectorcall] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_static] = ACTIONS(1872), + [anon_sym_auto] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_inline] = ACTIONS(1872), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [anon_sym_volatile] = ACTIONS(1872), + [anon_sym_restrict] = ACTIONS(1872), + [anon_sym__Atomic] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1872), + [anon_sym_out] = ACTIONS(1872), + [anon_sym_inout] = ACTIONS(1872), + [anon_sym_bycopy] = ACTIONS(1872), + [anon_sym_byref] = ACTIONS(1872), + [anon_sym_oneway] = ACTIONS(1872), + [anon_sym__Nullable] = ACTIONS(1872), + [anon_sym__Nonnull] = ACTIONS(1872), + [anon_sym__Nullable_result] = ACTIONS(1872), + [anon_sym__Null_unspecified] = ACTIONS(1872), + [anon_sym___autoreleasing] = ACTIONS(1872), + [anon_sym___nullable] = ACTIONS(1872), + [anon_sym___nonnull] = ACTIONS(1872), + [anon_sym___strong] = ACTIONS(1872), + [anon_sym___weak] = ACTIONS(1872), + [anon_sym___bridge] = ACTIONS(1872), + [anon_sym___bridge_transfer] = ACTIONS(1872), + [anon_sym___bridge_retained] = ACTIONS(1872), + [anon_sym___unsafe_unretained] = ACTIONS(1872), + [anon_sym___block] = ACTIONS(1872), + [anon_sym___kindof] = ACTIONS(1872), + [anon_sym___unused] = ACTIONS(1872), + [anon_sym__Complex] = ACTIONS(1872), + [anon_sym___complex] = ACTIONS(1872), + [anon_sym_IBOutlet] = ACTIONS(1872), + [anon_sym_IBInspectable] = ACTIONS(1872), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1872), + [anon_sym_signed] = ACTIONS(1872), + [anon_sym_unsigned] = ACTIONS(1872), + [anon_sym_long] = ACTIONS(1872), + [anon_sym_short] = ACTIONS(1872), + [sym_primitive_type] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_union] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_switch] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_goto] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_PLUS_PLUS] = ACTIONS(1874), + [anon_sym_sizeof] = ACTIONS(1872), + [sym_number_literal] = ACTIONS(1874), + [anon_sym_L_SQUOTE] = ACTIONS(1874), + [anon_sym_u_SQUOTE] = ACTIONS(1874), + [anon_sym_U_SQUOTE] = ACTIONS(1874), + [anon_sym_u8_SQUOTE] = ACTIONS(1874), + [anon_sym_SQUOTE] = ACTIONS(1874), + [anon_sym_L_DQUOTE] = ACTIONS(1874), + [anon_sym_u_DQUOTE] = ACTIONS(1874), + [anon_sym_U_DQUOTE] = ACTIONS(1874), + [anon_sym_u8_DQUOTE] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [sym_null] = ACTIONS(1872), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1874), + [anon_sym_ATimport] = ACTIONS(1874), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1872), + [anon_sym_ATcompatibility_alias] = ACTIONS(1874), + [anon_sym_ATprotocol] = ACTIONS(1874), + [anon_sym_ATclass] = ACTIONS(1874), + [anon_sym_ATinterface] = ACTIONS(1874), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1872), + [sym_method_attribute_specifier] = ACTIONS(1872), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1872), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1872), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1872), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1872), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1872), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1872), + [anon_sym_NS_AVAILABLE] = ACTIONS(1872), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1872), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_API_AVAILABLE] = ACTIONS(1872), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1872), + [anon_sym_API_DEPRECATED] = ACTIONS(1872), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1872), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1872), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1872), + [anon_sym___deprecated_msg] = ACTIONS(1872), + [anon_sym___deprecated_enum_msg] = ACTIONS(1872), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1872), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1872), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1872), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1872), + [anon_sym_ATimplementation] = ACTIONS(1874), + [anon_sym_NS_ENUM] = ACTIONS(1872), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1872), + [anon_sym_NS_OPTIONS] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym___typeof] = ACTIONS(1872), + [anon_sym___typeof__] = ACTIONS(1872), + [sym_self] = ACTIONS(1872), + [sym_super] = ACTIONS(1872), + [sym_nil] = ACTIONS(1872), + [sym_id] = ACTIONS(1872), + [sym_instancetype] = ACTIONS(1872), + [sym_Class] = ACTIONS(1872), + [sym_SEL] = ACTIONS(1872), + [sym_IMP] = ACTIONS(1872), + [sym_BOOL] = ACTIONS(1872), + [sym_auto] = ACTIONS(1872), + [anon_sym_ATautoreleasepool] = ACTIONS(1874), + [anon_sym_ATsynchronized] = ACTIONS(1874), + [anon_sym_ATtry] = ACTIONS(1874), + [anon_sym_ATthrow] = ACTIONS(1874), + [anon_sym_ATselector] = ACTIONS(1874), + [anon_sym_ATencode] = ACTIONS(1874), + [anon_sym_AT] = ACTIONS(1872), + [sym_YES] = ACTIONS(1872), + [sym_NO] = ACTIONS(1872), + [anon_sym___builtin_available] = ACTIONS(1872), + [anon_sym_ATavailable] = ACTIONS(1874), + [anon_sym_va_arg] = ACTIONS(1872), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1168] = { + [ts_builtin_sym_end] = ACTIONS(2018), + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2018), + [aux_sym_preproc_def_token1] = ACTIONS(2018), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_auto] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym_in] = ACTIONS(2016), + [anon_sym_out] = ACTIONS(2016), + [anon_sym_inout] = ACTIONS(2016), + [anon_sym_bycopy] = ACTIONS(2016), + [anon_sym_byref] = ACTIONS(2016), + [anon_sym_oneway] = ACTIONS(2016), + [anon_sym__Nullable] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym__Nullable_result] = ACTIONS(2016), + [anon_sym__Null_unspecified] = ACTIONS(2016), + [anon_sym___autoreleasing] = ACTIONS(2016), + [anon_sym___nullable] = ACTIONS(2016), + [anon_sym___nonnull] = ACTIONS(2016), + [anon_sym___strong] = ACTIONS(2016), + [anon_sym___weak] = ACTIONS(2016), + [anon_sym___bridge] = ACTIONS(2016), + [anon_sym___bridge_transfer] = ACTIONS(2016), + [anon_sym___bridge_retained] = ACTIONS(2016), + [anon_sym___unsafe_unretained] = ACTIONS(2016), + [anon_sym___block] = ACTIONS(2016), + [anon_sym___kindof] = ACTIONS(2016), + [anon_sym___unused] = ACTIONS(2016), + [anon_sym__Complex] = ACTIONS(2016), + [anon_sym___complex] = ACTIONS(2016), + [anon_sym_IBOutlet] = ACTIONS(2016), + [anon_sym_IBInspectable] = ACTIONS(2016), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2016), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [sym_null] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2018), + [anon_sym_ATimport] = ACTIONS(2018), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2016), + [anon_sym_ATcompatibility_alias] = ACTIONS(2018), + [anon_sym_ATprotocol] = ACTIONS(2018), + [anon_sym_ATclass] = ACTIONS(2018), + [anon_sym_ATinterface] = ACTIONS(2018), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2016), + [sym_method_attribute_specifier] = ACTIONS(2016), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2016), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE] = ACTIONS(2016), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_API_AVAILABLE] = ACTIONS(2016), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_API_DEPRECATED] = ACTIONS(2016), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2016), + [anon_sym___deprecated_msg] = ACTIONS(2016), + [anon_sym___deprecated_enum_msg] = ACTIONS(2016), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2016), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2016), + [anon_sym_ATimplementation] = ACTIONS(2018), + [anon_sym_NS_ENUM] = ACTIONS(2016), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2016), + [anon_sym_NS_OPTIONS] = ACTIONS(2016), + [anon_sym_typeof] = ACTIONS(2016), + [anon_sym___typeof] = ACTIONS(2016), + [anon_sym___typeof__] = ACTIONS(2016), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_nil] = ACTIONS(2016), + [sym_id] = ACTIONS(2016), + [sym_instancetype] = ACTIONS(2016), + [sym_Class] = ACTIONS(2016), + [sym_SEL] = ACTIONS(2016), + [sym_IMP] = ACTIONS(2016), + [sym_BOOL] = ACTIONS(2016), + [sym_auto] = ACTIONS(2016), + [anon_sym_ATautoreleasepool] = ACTIONS(2018), + [anon_sym_ATsynchronized] = ACTIONS(2018), + [anon_sym_ATtry] = ACTIONS(2018), + [anon_sym_ATthrow] = ACTIONS(2018), + [anon_sym_ATselector] = ACTIONS(2018), + [anon_sym_ATencode] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2016), + [sym_YES] = ACTIONS(2016), + [sym_NO] = ACTIONS(2016), + [anon_sym___builtin_available] = ACTIONS(2016), + [anon_sym_ATavailable] = ACTIONS(2018), + [anon_sym_va_arg] = ACTIONS(2016), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1169] = { + [ts_builtin_sym_end] = ACTIONS(1874), + [sym_identifier] = ACTIONS(1872), + [aux_sym_preproc_include_token1] = ACTIONS(1874), + [aux_sym_preproc_def_token1] = ACTIONS(1874), + [aux_sym_preproc_if_token1] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1874), + [anon_sym_TILDE] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1874), + [anon_sym_CARET] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_typedef] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym___attribute] = ACTIONS(1872), + [anon_sym___attribute__] = ACTIONS(1872), + [anon_sym___declspec] = ACTIONS(1872), + [anon_sym___cdecl] = ACTIONS(1872), + [anon_sym___clrcall] = ACTIONS(1872), + [anon_sym___stdcall] = ACTIONS(1872), + [anon_sym___fastcall] = ACTIONS(1872), + [anon_sym___thiscall] = ACTIONS(1872), + [anon_sym___vectorcall] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_static] = ACTIONS(1872), + [anon_sym_auto] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_inline] = ACTIONS(1872), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [anon_sym_volatile] = ACTIONS(1872), + [anon_sym_restrict] = ACTIONS(1872), + [anon_sym__Atomic] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1872), + [anon_sym_out] = ACTIONS(1872), + [anon_sym_inout] = ACTIONS(1872), + [anon_sym_bycopy] = ACTIONS(1872), + [anon_sym_byref] = ACTIONS(1872), + [anon_sym_oneway] = ACTIONS(1872), + [anon_sym__Nullable] = ACTIONS(1872), + [anon_sym__Nonnull] = ACTIONS(1872), + [anon_sym__Nullable_result] = ACTIONS(1872), + [anon_sym__Null_unspecified] = ACTIONS(1872), + [anon_sym___autoreleasing] = ACTIONS(1872), + [anon_sym___nullable] = ACTIONS(1872), + [anon_sym___nonnull] = ACTIONS(1872), + [anon_sym___strong] = ACTIONS(1872), + [anon_sym___weak] = ACTIONS(1872), + [anon_sym___bridge] = ACTIONS(1872), + [anon_sym___bridge_transfer] = ACTIONS(1872), + [anon_sym___bridge_retained] = ACTIONS(1872), + [anon_sym___unsafe_unretained] = ACTIONS(1872), + [anon_sym___block] = ACTIONS(1872), + [anon_sym___kindof] = ACTIONS(1872), + [anon_sym___unused] = ACTIONS(1872), + [anon_sym__Complex] = ACTIONS(1872), + [anon_sym___complex] = ACTIONS(1872), + [anon_sym_IBOutlet] = ACTIONS(1872), + [anon_sym_IBInspectable] = ACTIONS(1872), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1872), + [anon_sym_signed] = ACTIONS(1872), + [anon_sym_unsigned] = ACTIONS(1872), + [anon_sym_long] = ACTIONS(1872), + [anon_sym_short] = ACTIONS(1872), + [sym_primitive_type] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_union] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_switch] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_goto] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_PLUS_PLUS] = ACTIONS(1874), + [anon_sym_sizeof] = ACTIONS(1872), + [sym_number_literal] = ACTIONS(1874), + [anon_sym_L_SQUOTE] = ACTIONS(1874), + [anon_sym_u_SQUOTE] = ACTIONS(1874), + [anon_sym_U_SQUOTE] = ACTIONS(1874), + [anon_sym_u8_SQUOTE] = ACTIONS(1874), + [anon_sym_SQUOTE] = ACTIONS(1874), + [anon_sym_L_DQUOTE] = ACTIONS(1874), + [anon_sym_u_DQUOTE] = ACTIONS(1874), + [anon_sym_U_DQUOTE] = ACTIONS(1874), + [anon_sym_u8_DQUOTE] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [sym_null] = ACTIONS(1872), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1874), + [anon_sym_ATimport] = ACTIONS(1874), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1872), + [anon_sym_ATcompatibility_alias] = ACTIONS(1874), + [anon_sym_ATprotocol] = ACTIONS(1874), + [anon_sym_ATclass] = ACTIONS(1874), + [anon_sym_ATinterface] = ACTIONS(1874), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1872), + [sym_method_attribute_specifier] = ACTIONS(1872), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1872), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1872), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1872), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1872), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1872), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1872), + [anon_sym_NS_AVAILABLE] = ACTIONS(1872), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1872), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_API_AVAILABLE] = ACTIONS(1872), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1872), + [anon_sym_API_DEPRECATED] = ACTIONS(1872), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1872), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1872), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1872), + [anon_sym___deprecated_msg] = ACTIONS(1872), + [anon_sym___deprecated_enum_msg] = ACTIONS(1872), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1872), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1872), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1872), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1872), + [anon_sym_ATimplementation] = ACTIONS(1874), + [anon_sym_NS_ENUM] = ACTIONS(1872), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1872), + [anon_sym_NS_OPTIONS] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym___typeof] = ACTIONS(1872), + [anon_sym___typeof__] = ACTIONS(1872), + [sym_self] = ACTIONS(1872), + [sym_super] = ACTIONS(1872), + [sym_nil] = ACTIONS(1872), + [sym_id] = ACTIONS(1872), + [sym_instancetype] = ACTIONS(1872), + [sym_Class] = ACTIONS(1872), + [sym_SEL] = ACTIONS(1872), + [sym_IMP] = ACTIONS(1872), + [sym_BOOL] = ACTIONS(1872), + [sym_auto] = ACTIONS(1872), + [anon_sym_ATautoreleasepool] = ACTIONS(1874), + [anon_sym_ATsynchronized] = ACTIONS(1874), + [anon_sym_ATtry] = ACTIONS(1874), + [anon_sym_ATthrow] = ACTIONS(1874), + [anon_sym_ATselector] = ACTIONS(1874), + [anon_sym_ATencode] = ACTIONS(1874), + [anon_sym_AT] = ACTIONS(1872), + [sym_YES] = ACTIONS(1872), + [sym_NO] = ACTIONS(1872), + [anon_sym___builtin_available] = ACTIONS(1872), + [anon_sym_ATavailable] = ACTIONS(1874), + [anon_sym_va_arg] = ACTIONS(1872), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1170] = { + [ts_builtin_sym_end] = ACTIONS(2018), + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2018), + [aux_sym_preproc_def_token1] = ACTIONS(2018), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_auto] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym_in] = ACTIONS(2016), + [anon_sym_out] = ACTIONS(2016), + [anon_sym_inout] = ACTIONS(2016), + [anon_sym_bycopy] = ACTIONS(2016), + [anon_sym_byref] = ACTIONS(2016), + [anon_sym_oneway] = ACTIONS(2016), + [anon_sym__Nullable] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym__Nullable_result] = ACTIONS(2016), + [anon_sym__Null_unspecified] = ACTIONS(2016), + [anon_sym___autoreleasing] = ACTIONS(2016), + [anon_sym___nullable] = ACTIONS(2016), + [anon_sym___nonnull] = ACTIONS(2016), + [anon_sym___strong] = ACTIONS(2016), + [anon_sym___weak] = ACTIONS(2016), + [anon_sym___bridge] = ACTIONS(2016), + [anon_sym___bridge_transfer] = ACTIONS(2016), + [anon_sym___bridge_retained] = ACTIONS(2016), + [anon_sym___unsafe_unretained] = ACTIONS(2016), + [anon_sym___block] = ACTIONS(2016), + [anon_sym___kindof] = ACTIONS(2016), + [anon_sym___unused] = ACTIONS(2016), + [anon_sym__Complex] = ACTIONS(2016), + [anon_sym___complex] = ACTIONS(2016), + [anon_sym_IBOutlet] = ACTIONS(2016), + [anon_sym_IBInspectable] = ACTIONS(2016), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2016), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [sym_null] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2018), + [anon_sym_ATimport] = ACTIONS(2018), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2016), + [anon_sym_ATcompatibility_alias] = ACTIONS(2018), + [anon_sym_ATprotocol] = ACTIONS(2018), + [anon_sym_ATclass] = ACTIONS(2018), + [anon_sym_ATinterface] = ACTIONS(2018), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2016), + [sym_method_attribute_specifier] = ACTIONS(2016), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2016), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE] = ACTIONS(2016), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_API_AVAILABLE] = ACTIONS(2016), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_API_DEPRECATED] = ACTIONS(2016), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2016), + [anon_sym___deprecated_msg] = ACTIONS(2016), + [anon_sym___deprecated_enum_msg] = ACTIONS(2016), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2016), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2016), + [anon_sym_ATimplementation] = ACTIONS(2018), + [anon_sym_NS_ENUM] = ACTIONS(2016), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2016), + [anon_sym_NS_OPTIONS] = ACTIONS(2016), + [anon_sym_typeof] = ACTIONS(2016), + [anon_sym___typeof] = ACTIONS(2016), + [anon_sym___typeof__] = ACTIONS(2016), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_nil] = ACTIONS(2016), + [sym_id] = ACTIONS(2016), + [sym_instancetype] = ACTIONS(2016), + [sym_Class] = ACTIONS(2016), + [sym_SEL] = ACTIONS(2016), + [sym_IMP] = ACTIONS(2016), + [sym_BOOL] = ACTIONS(2016), + [sym_auto] = ACTIONS(2016), + [anon_sym_ATautoreleasepool] = ACTIONS(2018), + [anon_sym_ATsynchronized] = ACTIONS(2018), + [anon_sym_ATtry] = ACTIONS(2018), + [anon_sym_ATthrow] = ACTIONS(2018), + [anon_sym_ATselector] = ACTIONS(2018), + [anon_sym_ATencode] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2016), + [sym_YES] = ACTIONS(2016), + [sym_NO] = ACTIONS(2016), + [anon_sym___builtin_available] = ACTIONS(2016), + [anon_sym_ATavailable] = ACTIONS(2018), + [anon_sym_va_arg] = ACTIONS(2016), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1171] = { + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1876), + [aux_sym_preproc_include_token1] = ACTIONS(1878), + [aux_sym_preproc_def_token1] = ACTIONS(1878), + [aux_sym_preproc_if_token1] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1876), + [anon_sym_LPAREN2] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1878), + [anon_sym_CARET] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_typedef] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [anon_sym_out] = ACTIONS(1876), + [anon_sym_inout] = ACTIONS(1876), + [anon_sym_bycopy] = ACTIONS(1876), + [anon_sym_byref] = ACTIONS(1876), + [anon_sym_oneway] = ACTIONS(1876), + [anon_sym__Nullable] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym__Nullable_result] = ACTIONS(1876), + [anon_sym__Null_unspecified] = ACTIONS(1876), + [anon_sym___autoreleasing] = ACTIONS(1876), + [anon_sym___nullable] = ACTIONS(1876), + [anon_sym___nonnull] = ACTIONS(1876), + [anon_sym___strong] = ACTIONS(1876), + [anon_sym___weak] = ACTIONS(1876), + [anon_sym___bridge] = ACTIONS(1876), + [anon_sym___bridge_transfer] = ACTIONS(1876), + [anon_sym___bridge_retained] = ACTIONS(1876), + [anon_sym___unsafe_unretained] = ACTIONS(1876), + [anon_sym___block] = ACTIONS(1876), + [anon_sym___kindof] = ACTIONS(1876), + [anon_sym___unused] = ACTIONS(1876), + [anon_sym__Complex] = ACTIONS(1876), + [anon_sym___complex] = ACTIONS(1876), + [anon_sym_IBOutlet] = ACTIONS(1876), + [anon_sym_IBInspectable] = ACTIONS(1876), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1876), + [anon_sym_unsigned] = ACTIONS(1876), + [anon_sym_long] = ACTIONS(1876), + [anon_sym_short] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(1876), + [anon_sym_enum] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1876), + [anon_sym_union] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1876), + [anon_sym_case] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_do] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_goto] = ACTIONS(1876), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_sizeof] = ACTIONS(1876), + [sym_number_literal] = ACTIONS(1878), + [anon_sym_L_SQUOTE] = ACTIONS(1878), + [anon_sym_u_SQUOTE] = ACTIONS(1878), + [anon_sym_U_SQUOTE] = ACTIONS(1878), + [anon_sym_u8_SQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(1878), + [anon_sym_u_DQUOTE] = ACTIONS(1878), + [anon_sym_U_DQUOTE] = ACTIONS(1878), + [anon_sym_u8_DQUOTE] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [sym_true] = ACTIONS(1876), + [sym_false] = ACTIONS(1876), + [sym_null] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1878), + [anon_sym_ATimport] = ACTIONS(1878), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1876), + [anon_sym_ATcompatibility_alias] = ACTIONS(1878), + [anon_sym_ATprotocol] = ACTIONS(1878), + [anon_sym_ATclass] = ACTIONS(1878), + [anon_sym_ATinterface] = ACTIONS(1878), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1876), + [sym_method_attribute_specifier] = ACTIONS(1876), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1876), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE] = ACTIONS(1876), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_API_AVAILABLE] = ACTIONS(1876), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_API_DEPRECATED] = ACTIONS(1876), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1876), + [anon_sym___deprecated_msg] = ACTIONS(1876), + [anon_sym___deprecated_enum_msg] = ACTIONS(1876), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1876), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1876), + [anon_sym_ATimplementation] = ACTIONS(1878), + [anon_sym_NS_ENUM] = ACTIONS(1876), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1876), + [anon_sym_NS_OPTIONS] = ACTIONS(1876), + [anon_sym_typeof] = ACTIONS(1876), + [anon_sym___typeof] = ACTIONS(1876), + [anon_sym___typeof__] = ACTIONS(1876), + [sym_self] = ACTIONS(1876), + [sym_super] = ACTIONS(1876), + [sym_nil] = ACTIONS(1876), + [sym_id] = ACTIONS(1876), + [sym_instancetype] = ACTIONS(1876), + [sym_Class] = ACTIONS(1876), + [sym_SEL] = ACTIONS(1876), + [sym_IMP] = ACTIONS(1876), + [sym_BOOL] = ACTIONS(1876), + [sym_auto] = ACTIONS(1876), + [anon_sym_ATautoreleasepool] = ACTIONS(1878), + [anon_sym_ATsynchronized] = ACTIONS(1878), + [anon_sym_ATtry] = ACTIONS(1878), + [anon_sym_ATthrow] = ACTIONS(1878), + [anon_sym_ATselector] = ACTIONS(1878), + [anon_sym_ATencode] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1876), + [sym_YES] = ACTIONS(1876), + [sym_NO] = ACTIONS(1876), + [anon_sym___builtin_available] = ACTIONS(1876), + [anon_sym_ATavailable] = ACTIONS(1878), + [anon_sym_va_arg] = ACTIONS(1876), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1172] = { + [ts_builtin_sym_end] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1173] = { + [ts_builtin_sym_end] = ACTIONS(2018), + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2018), + [aux_sym_preproc_def_token1] = ACTIONS(2018), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_auto] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym_in] = ACTIONS(2016), + [anon_sym_out] = ACTIONS(2016), + [anon_sym_inout] = ACTIONS(2016), + [anon_sym_bycopy] = ACTIONS(2016), + [anon_sym_byref] = ACTIONS(2016), + [anon_sym_oneway] = ACTIONS(2016), + [anon_sym__Nullable] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym__Nullable_result] = ACTIONS(2016), + [anon_sym__Null_unspecified] = ACTIONS(2016), + [anon_sym___autoreleasing] = ACTIONS(2016), + [anon_sym___nullable] = ACTIONS(2016), + [anon_sym___nonnull] = ACTIONS(2016), + [anon_sym___strong] = ACTIONS(2016), + [anon_sym___weak] = ACTIONS(2016), + [anon_sym___bridge] = ACTIONS(2016), + [anon_sym___bridge_transfer] = ACTIONS(2016), + [anon_sym___bridge_retained] = ACTIONS(2016), + [anon_sym___unsafe_unretained] = ACTIONS(2016), + [anon_sym___block] = ACTIONS(2016), + [anon_sym___kindof] = ACTIONS(2016), + [anon_sym___unused] = ACTIONS(2016), + [anon_sym__Complex] = ACTIONS(2016), + [anon_sym___complex] = ACTIONS(2016), + [anon_sym_IBOutlet] = ACTIONS(2016), + [anon_sym_IBInspectable] = ACTIONS(2016), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2016), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [sym_null] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2018), + [anon_sym_ATimport] = ACTIONS(2018), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2016), + [anon_sym_ATcompatibility_alias] = ACTIONS(2018), + [anon_sym_ATprotocol] = ACTIONS(2018), + [anon_sym_ATclass] = ACTIONS(2018), + [anon_sym_ATinterface] = ACTIONS(2018), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2016), + [sym_method_attribute_specifier] = ACTIONS(2016), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2016), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE] = ACTIONS(2016), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_API_AVAILABLE] = ACTIONS(2016), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_API_DEPRECATED] = ACTIONS(2016), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2016), + [anon_sym___deprecated_msg] = ACTIONS(2016), + [anon_sym___deprecated_enum_msg] = ACTIONS(2016), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2016), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2016), + [anon_sym_ATimplementation] = ACTIONS(2018), + [anon_sym_NS_ENUM] = ACTIONS(2016), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2016), + [anon_sym_NS_OPTIONS] = ACTIONS(2016), + [anon_sym_typeof] = ACTIONS(2016), + [anon_sym___typeof] = ACTIONS(2016), + [anon_sym___typeof__] = ACTIONS(2016), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_nil] = ACTIONS(2016), + [sym_id] = ACTIONS(2016), + [sym_instancetype] = ACTIONS(2016), + [sym_Class] = ACTIONS(2016), + [sym_SEL] = ACTIONS(2016), + [sym_IMP] = ACTIONS(2016), + [sym_BOOL] = ACTIONS(2016), + [sym_auto] = ACTIONS(2016), + [anon_sym_ATautoreleasepool] = ACTIONS(2018), + [anon_sym_ATsynchronized] = ACTIONS(2018), + [anon_sym_ATtry] = ACTIONS(2018), + [anon_sym_ATthrow] = ACTIONS(2018), + [anon_sym_ATselector] = ACTIONS(2018), + [anon_sym_ATencode] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2016), + [sym_YES] = ACTIONS(2016), + [sym_NO] = ACTIONS(2016), + [anon_sym___builtin_available] = ACTIONS(2016), + [anon_sym_ATavailable] = ACTIONS(2018), + [anon_sym_va_arg] = ACTIONS(2016), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1174] = { + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1876), + [aux_sym_preproc_include_token1] = ACTIONS(1878), + [aux_sym_preproc_def_token1] = ACTIONS(1878), + [aux_sym_preproc_if_token1] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1876), + [anon_sym_LPAREN2] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1878), + [anon_sym_CARET] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_typedef] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [anon_sym_out] = ACTIONS(1876), + [anon_sym_inout] = ACTIONS(1876), + [anon_sym_bycopy] = ACTIONS(1876), + [anon_sym_byref] = ACTIONS(1876), + [anon_sym_oneway] = ACTIONS(1876), + [anon_sym__Nullable] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym__Nullable_result] = ACTIONS(1876), + [anon_sym__Null_unspecified] = ACTIONS(1876), + [anon_sym___autoreleasing] = ACTIONS(1876), + [anon_sym___nullable] = ACTIONS(1876), + [anon_sym___nonnull] = ACTIONS(1876), + [anon_sym___strong] = ACTIONS(1876), + [anon_sym___weak] = ACTIONS(1876), + [anon_sym___bridge] = ACTIONS(1876), + [anon_sym___bridge_transfer] = ACTIONS(1876), + [anon_sym___bridge_retained] = ACTIONS(1876), + [anon_sym___unsafe_unretained] = ACTIONS(1876), + [anon_sym___block] = ACTIONS(1876), + [anon_sym___kindof] = ACTIONS(1876), + [anon_sym___unused] = ACTIONS(1876), + [anon_sym__Complex] = ACTIONS(1876), + [anon_sym___complex] = ACTIONS(1876), + [anon_sym_IBOutlet] = ACTIONS(1876), + [anon_sym_IBInspectable] = ACTIONS(1876), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1876), + [anon_sym_unsigned] = ACTIONS(1876), + [anon_sym_long] = ACTIONS(1876), + [anon_sym_short] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(1876), + [anon_sym_enum] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1876), + [anon_sym_union] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1876), + [anon_sym_case] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_do] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_goto] = ACTIONS(1876), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_sizeof] = ACTIONS(1876), + [sym_number_literal] = ACTIONS(1878), + [anon_sym_L_SQUOTE] = ACTIONS(1878), + [anon_sym_u_SQUOTE] = ACTIONS(1878), + [anon_sym_U_SQUOTE] = ACTIONS(1878), + [anon_sym_u8_SQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(1878), + [anon_sym_u_DQUOTE] = ACTIONS(1878), + [anon_sym_U_DQUOTE] = ACTIONS(1878), + [anon_sym_u8_DQUOTE] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [sym_true] = ACTIONS(1876), + [sym_false] = ACTIONS(1876), + [sym_null] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1878), + [anon_sym_ATimport] = ACTIONS(1878), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1876), + [anon_sym_ATcompatibility_alias] = ACTIONS(1878), + [anon_sym_ATprotocol] = ACTIONS(1878), + [anon_sym_ATclass] = ACTIONS(1878), + [anon_sym_ATinterface] = ACTIONS(1878), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1876), + [sym_method_attribute_specifier] = ACTIONS(1876), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1876), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE] = ACTIONS(1876), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_API_AVAILABLE] = ACTIONS(1876), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_API_DEPRECATED] = ACTIONS(1876), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1876), + [anon_sym___deprecated_msg] = ACTIONS(1876), + [anon_sym___deprecated_enum_msg] = ACTIONS(1876), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1876), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1876), + [anon_sym_ATimplementation] = ACTIONS(1878), + [anon_sym_NS_ENUM] = ACTIONS(1876), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1876), + [anon_sym_NS_OPTIONS] = ACTIONS(1876), + [anon_sym_typeof] = ACTIONS(1876), + [anon_sym___typeof] = ACTIONS(1876), + [anon_sym___typeof__] = ACTIONS(1876), + [sym_self] = ACTIONS(1876), + [sym_super] = ACTIONS(1876), + [sym_nil] = ACTIONS(1876), + [sym_id] = ACTIONS(1876), + [sym_instancetype] = ACTIONS(1876), + [sym_Class] = ACTIONS(1876), + [sym_SEL] = ACTIONS(1876), + [sym_IMP] = ACTIONS(1876), + [sym_BOOL] = ACTIONS(1876), + [sym_auto] = ACTIONS(1876), + [anon_sym_ATautoreleasepool] = ACTIONS(1878), + [anon_sym_ATsynchronized] = ACTIONS(1878), + [anon_sym_ATtry] = ACTIONS(1878), + [anon_sym_ATthrow] = ACTIONS(1878), + [anon_sym_ATselector] = ACTIONS(1878), + [anon_sym_ATencode] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1876), + [sym_YES] = ACTIONS(1876), + [sym_NO] = ACTIONS(1876), + [anon_sym___builtin_available] = ACTIONS(1876), + [anon_sym_ATavailable] = ACTIONS(1878), + [anon_sym_va_arg] = ACTIONS(1876), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1175] = { + [ts_builtin_sym_end] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1176] = { + [ts_builtin_sym_end] = ACTIONS(2018), + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2018), + [aux_sym_preproc_def_token1] = ACTIONS(2018), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_auto] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym_in] = ACTIONS(2016), + [anon_sym_out] = ACTIONS(2016), + [anon_sym_inout] = ACTIONS(2016), + [anon_sym_bycopy] = ACTIONS(2016), + [anon_sym_byref] = ACTIONS(2016), + [anon_sym_oneway] = ACTIONS(2016), + [anon_sym__Nullable] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym__Nullable_result] = ACTIONS(2016), + [anon_sym__Null_unspecified] = ACTIONS(2016), + [anon_sym___autoreleasing] = ACTIONS(2016), + [anon_sym___nullable] = ACTIONS(2016), + [anon_sym___nonnull] = ACTIONS(2016), + [anon_sym___strong] = ACTIONS(2016), + [anon_sym___weak] = ACTIONS(2016), + [anon_sym___bridge] = ACTIONS(2016), + [anon_sym___bridge_transfer] = ACTIONS(2016), + [anon_sym___bridge_retained] = ACTIONS(2016), + [anon_sym___unsafe_unretained] = ACTIONS(2016), + [anon_sym___block] = ACTIONS(2016), + [anon_sym___kindof] = ACTIONS(2016), + [anon_sym___unused] = ACTIONS(2016), + [anon_sym__Complex] = ACTIONS(2016), + [anon_sym___complex] = ACTIONS(2016), + [anon_sym_IBOutlet] = ACTIONS(2016), + [anon_sym_IBInspectable] = ACTIONS(2016), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2016), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [sym_null] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2018), + [anon_sym_ATimport] = ACTIONS(2018), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2016), + [anon_sym_ATcompatibility_alias] = ACTIONS(2018), + [anon_sym_ATprotocol] = ACTIONS(2018), + [anon_sym_ATclass] = ACTIONS(2018), + [anon_sym_ATinterface] = ACTIONS(2018), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2016), + [sym_method_attribute_specifier] = ACTIONS(2016), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2016), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE] = ACTIONS(2016), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_API_AVAILABLE] = ACTIONS(2016), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_API_DEPRECATED] = ACTIONS(2016), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2016), + [anon_sym___deprecated_msg] = ACTIONS(2016), + [anon_sym___deprecated_enum_msg] = ACTIONS(2016), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2016), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2016), + [anon_sym_ATimplementation] = ACTIONS(2018), + [anon_sym_NS_ENUM] = ACTIONS(2016), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2016), + [anon_sym_NS_OPTIONS] = ACTIONS(2016), + [anon_sym_typeof] = ACTIONS(2016), + [anon_sym___typeof] = ACTIONS(2016), + [anon_sym___typeof__] = ACTIONS(2016), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_nil] = ACTIONS(2016), + [sym_id] = ACTIONS(2016), + [sym_instancetype] = ACTIONS(2016), + [sym_Class] = ACTIONS(2016), + [sym_SEL] = ACTIONS(2016), + [sym_IMP] = ACTIONS(2016), + [sym_BOOL] = ACTIONS(2016), + [sym_auto] = ACTIONS(2016), + [anon_sym_ATautoreleasepool] = ACTIONS(2018), + [anon_sym_ATsynchronized] = ACTIONS(2018), + [anon_sym_ATtry] = ACTIONS(2018), + [anon_sym_ATthrow] = ACTIONS(2018), + [anon_sym_ATselector] = ACTIONS(2018), + [anon_sym_ATencode] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2016), + [sym_YES] = ACTIONS(2016), + [sym_NO] = ACTIONS(2016), + [anon_sym___builtin_available] = ACTIONS(2016), + [anon_sym_ATavailable] = ACTIONS(2018), + [anon_sym_va_arg] = ACTIONS(2016), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1177] = { + [ts_builtin_sym_end] = ACTIONS(2018), + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2018), + [aux_sym_preproc_def_token1] = ACTIONS(2018), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_auto] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym_in] = ACTIONS(2016), + [anon_sym_out] = ACTIONS(2016), + [anon_sym_inout] = ACTIONS(2016), + [anon_sym_bycopy] = ACTIONS(2016), + [anon_sym_byref] = ACTIONS(2016), + [anon_sym_oneway] = ACTIONS(2016), + [anon_sym__Nullable] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym__Nullable_result] = ACTIONS(2016), + [anon_sym__Null_unspecified] = ACTIONS(2016), + [anon_sym___autoreleasing] = ACTIONS(2016), + [anon_sym___nullable] = ACTIONS(2016), + [anon_sym___nonnull] = ACTIONS(2016), + [anon_sym___strong] = ACTIONS(2016), + [anon_sym___weak] = ACTIONS(2016), + [anon_sym___bridge] = ACTIONS(2016), + [anon_sym___bridge_transfer] = ACTIONS(2016), + [anon_sym___bridge_retained] = ACTIONS(2016), + [anon_sym___unsafe_unretained] = ACTIONS(2016), + [anon_sym___block] = ACTIONS(2016), + [anon_sym___kindof] = ACTIONS(2016), + [anon_sym___unused] = ACTIONS(2016), + [anon_sym__Complex] = ACTIONS(2016), + [anon_sym___complex] = ACTIONS(2016), + [anon_sym_IBOutlet] = ACTIONS(2016), + [anon_sym_IBInspectable] = ACTIONS(2016), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2016), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [sym_null] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2018), + [anon_sym_ATimport] = ACTIONS(2018), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2016), + [anon_sym_ATcompatibility_alias] = ACTIONS(2018), + [anon_sym_ATprotocol] = ACTIONS(2018), + [anon_sym_ATclass] = ACTIONS(2018), + [anon_sym_ATinterface] = ACTIONS(2018), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2016), + [sym_method_attribute_specifier] = ACTIONS(2016), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2016), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE] = ACTIONS(2016), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_API_AVAILABLE] = ACTIONS(2016), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_API_DEPRECATED] = ACTIONS(2016), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2016), + [anon_sym___deprecated_msg] = ACTIONS(2016), + [anon_sym___deprecated_enum_msg] = ACTIONS(2016), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2016), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2016), + [anon_sym_ATimplementation] = ACTIONS(2018), + [anon_sym_NS_ENUM] = ACTIONS(2016), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2016), + [anon_sym_NS_OPTIONS] = ACTIONS(2016), + [anon_sym_typeof] = ACTIONS(2016), + [anon_sym___typeof] = ACTIONS(2016), + [anon_sym___typeof__] = ACTIONS(2016), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_nil] = ACTIONS(2016), + [sym_id] = ACTIONS(2016), + [sym_instancetype] = ACTIONS(2016), + [sym_Class] = ACTIONS(2016), + [sym_SEL] = ACTIONS(2016), + [sym_IMP] = ACTIONS(2016), + [sym_BOOL] = ACTIONS(2016), + [sym_auto] = ACTIONS(2016), + [anon_sym_ATautoreleasepool] = ACTIONS(2018), + [anon_sym_ATsynchronized] = ACTIONS(2018), + [anon_sym_ATtry] = ACTIONS(2018), + [anon_sym_ATthrow] = ACTIONS(2018), + [anon_sym_ATselector] = ACTIONS(2018), + [anon_sym_ATencode] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2016), + [sym_YES] = ACTIONS(2016), + [sym_NO] = ACTIONS(2016), + [anon_sym___builtin_available] = ACTIONS(2016), + [anon_sym_ATavailable] = ACTIONS(2018), + [anon_sym_va_arg] = ACTIONS(2016), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1178] = { + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1876), + [aux_sym_preproc_include_token1] = ACTIONS(1878), + [aux_sym_preproc_def_token1] = ACTIONS(1878), + [aux_sym_preproc_if_token1] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1876), + [anon_sym_LPAREN2] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1878), + [anon_sym_CARET] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_typedef] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [anon_sym_out] = ACTIONS(1876), + [anon_sym_inout] = ACTIONS(1876), + [anon_sym_bycopy] = ACTIONS(1876), + [anon_sym_byref] = ACTIONS(1876), + [anon_sym_oneway] = ACTIONS(1876), + [anon_sym__Nullable] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym__Nullable_result] = ACTIONS(1876), + [anon_sym__Null_unspecified] = ACTIONS(1876), + [anon_sym___autoreleasing] = ACTIONS(1876), + [anon_sym___nullable] = ACTIONS(1876), + [anon_sym___nonnull] = ACTIONS(1876), + [anon_sym___strong] = ACTIONS(1876), + [anon_sym___weak] = ACTIONS(1876), + [anon_sym___bridge] = ACTIONS(1876), + [anon_sym___bridge_transfer] = ACTIONS(1876), + [anon_sym___bridge_retained] = ACTIONS(1876), + [anon_sym___unsafe_unretained] = ACTIONS(1876), + [anon_sym___block] = ACTIONS(1876), + [anon_sym___kindof] = ACTIONS(1876), + [anon_sym___unused] = ACTIONS(1876), + [anon_sym__Complex] = ACTIONS(1876), + [anon_sym___complex] = ACTIONS(1876), + [anon_sym_IBOutlet] = ACTIONS(1876), + [anon_sym_IBInspectable] = ACTIONS(1876), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1876), + [anon_sym_unsigned] = ACTIONS(1876), + [anon_sym_long] = ACTIONS(1876), + [anon_sym_short] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(1876), + [anon_sym_enum] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1876), + [anon_sym_union] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1876), + [anon_sym_case] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_do] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_goto] = ACTIONS(1876), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_sizeof] = ACTIONS(1876), + [sym_number_literal] = ACTIONS(1878), + [anon_sym_L_SQUOTE] = ACTIONS(1878), + [anon_sym_u_SQUOTE] = ACTIONS(1878), + [anon_sym_U_SQUOTE] = ACTIONS(1878), + [anon_sym_u8_SQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(1878), + [anon_sym_u_DQUOTE] = ACTIONS(1878), + [anon_sym_U_DQUOTE] = ACTIONS(1878), + [anon_sym_u8_DQUOTE] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [sym_true] = ACTIONS(1876), + [sym_false] = ACTIONS(1876), + [sym_null] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1878), + [anon_sym_ATimport] = ACTIONS(1878), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1876), + [anon_sym_ATcompatibility_alias] = ACTIONS(1878), + [anon_sym_ATprotocol] = ACTIONS(1878), + [anon_sym_ATclass] = ACTIONS(1878), + [anon_sym_ATinterface] = ACTIONS(1878), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1876), + [sym_method_attribute_specifier] = ACTIONS(1876), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1876), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE] = ACTIONS(1876), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_API_AVAILABLE] = ACTIONS(1876), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_API_DEPRECATED] = ACTIONS(1876), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1876), + [anon_sym___deprecated_msg] = ACTIONS(1876), + [anon_sym___deprecated_enum_msg] = ACTIONS(1876), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1876), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1876), + [anon_sym_ATimplementation] = ACTIONS(1878), + [anon_sym_NS_ENUM] = ACTIONS(1876), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1876), + [anon_sym_NS_OPTIONS] = ACTIONS(1876), + [anon_sym_typeof] = ACTIONS(1876), + [anon_sym___typeof] = ACTIONS(1876), + [anon_sym___typeof__] = ACTIONS(1876), + [sym_self] = ACTIONS(1876), + [sym_super] = ACTIONS(1876), + [sym_nil] = ACTIONS(1876), + [sym_id] = ACTIONS(1876), + [sym_instancetype] = ACTIONS(1876), + [sym_Class] = ACTIONS(1876), + [sym_SEL] = ACTIONS(1876), + [sym_IMP] = ACTIONS(1876), + [sym_BOOL] = ACTIONS(1876), + [sym_auto] = ACTIONS(1876), + [anon_sym_ATautoreleasepool] = ACTIONS(1878), + [anon_sym_ATsynchronized] = ACTIONS(1878), + [anon_sym_ATtry] = ACTIONS(1878), + [anon_sym_ATthrow] = ACTIONS(1878), + [anon_sym_ATselector] = ACTIONS(1878), + [anon_sym_ATencode] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1876), + [sym_YES] = ACTIONS(1876), + [sym_NO] = ACTIONS(1876), + [anon_sym___builtin_available] = ACTIONS(1876), + [anon_sym_ATavailable] = ACTIONS(1878), + [anon_sym_va_arg] = ACTIONS(1876), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1179] = { + [ts_builtin_sym_end] = ACTIONS(2018), + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2018), + [aux_sym_preproc_def_token1] = ACTIONS(2018), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_auto] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym_in] = ACTIONS(2016), + [anon_sym_out] = ACTIONS(2016), + [anon_sym_inout] = ACTIONS(2016), + [anon_sym_bycopy] = ACTIONS(2016), + [anon_sym_byref] = ACTIONS(2016), + [anon_sym_oneway] = ACTIONS(2016), + [anon_sym__Nullable] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym__Nullable_result] = ACTIONS(2016), + [anon_sym__Null_unspecified] = ACTIONS(2016), + [anon_sym___autoreleasing] = ACTIONS(2016), + [anon_sym___nullable] = ACTIONS(2016), + [anon_sym___nonnull] = ACTIONS(2016), + [anon_sym___strong] = ACTIONS(2016), + [anon_sym___weak] = ACTIONS(2016), + [anon_sym___bridge] = ACTIONS(2016), + [anon_sym___bridge_transfer] = ACTIONS(2016), + [anon_sym___bridge_retained] = ACTIONS(2016), + [anon_sym___unsafe_unretained] = ACTIONS(2016), + [anon_sym___block] = ACTIONS(2016), + [anon_sym___kindof] = ACTIONS(2016), + [anon_sym___unused] = ACTIONS(2016), + [anon_sym__Complex] = ACTIONS(2016), + [anon_sym___complex] = ACTIONS(2016), + [anon_sym_IBOutlet] = ACTIONS(2016), + [anon_sym_IBInspectable] = ACTIONS(2016), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2016), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [sym_null] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2018), + [anon_sym_ATimport] = ACTIONS(2018), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2016), + [anon_sym_ATcompatibility_alias] = ACTIONS(2018), + [anon_sym_ATprotocol] = ACTIONS(2018), + [anon_sym_ATclass] = ACTIONS(2018), + [anon_sym_ATinterface] = ACTIONS(2018), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2016), + [sym_method_attribute_specifier] = ACTIONS(2016), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2016), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE] = ACTIONS(2016), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_API_AVAILABLE] = ACTIONS(2016), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_API_DEPRECATED] = ACTIONS(2016), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2016), + [anon_sym___deprecated_msg] = ACTIONS(2016), + [anon_sym___deprecated_enum_msg] = ACTIONS(2016), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2016), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2016), + [anon_sym_ATimplementation] = ACTIONS(2018), + [anon_sym_NS_ENUM] = ACTIONS(2016), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2016), + [anon_sym_NS_OPTIONS] = ACTIONS(2016), + [anon_sym_typeof] = ACTIONS(2016), + [anon_sym___typeof] = ACTIONS(2016), + [anon_sym___typeof__] = ACTIONS(2016), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_nil] = ACTIONS(2016), + [sym_id] = ACTIONS(2016), + [sym_instancetype] = ACTIONS(2016), + [sym_Class] = ACTIONS(2016), + [sym_SEL] = ACTIONS(2016), + [sym_IMP] = ACTIONS(2016), + [sym_BOOL] = ACTIONS(2016), + [sym_auto] = ACTIONS(2016), + [anon_sym_ATautoreleasepool] = ACTIONS(2018), + [anon_sym_ATsynchronized] = ACTIONS(2018), + [anon_sym_ATtry] = ACTIONS(2018), + [anon_sym_ATthrow] = ACTIONS(2018), + [anon_sym_ATselector] = ACTIONS(2018), + [anon_sym_ATencode] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2016), + [sym_YES] = ACTIONS(2016), + [sym_NO] = ACTIONS(2016), + [anon_sym___builtin_available] = ACTIONS(2016), + [anon_sym_ATavailable] = ACTIONS(2018), + [anon_sym_va_arg] = ACTIONS(2016), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1180] = { + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1876), + [aux_sym_preproc_include_token1] = ACTIONS(1878), + [aux_sym_preproc_def_token1] = ACTIONS(1878), + [aux_sym_preproc_if_token1] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1876), + [anon_sym_LPAREN2] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1878), + [anon_sym_CARET] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_typedef] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [anon_sym_out] = ACTIONS(1876), + [anon_sym_inout] = ACTIONS(1876), + [anon_sym_bycopy] = ACTIONS(1876), + [anon_sym_byref] = ACTIONS(1876), + [anon_sym_oneway] = ACTIONS(1876), + [anon_sym__Nullable] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym__Nullable_result] = ACTIONS(1876), + [anon_sym__Null_unspecified] = ACTIONS(1876), + [anon_sym___autoreleasing] = ACTIONS(1876), + [anon_sym___nullable] = ACTIONS(1876), + [anon_sym___nonnull] = ACTIONS(1876), + [anon_sym___strong] = ACTIONS(1876), + [anon_sym___weak] = ACTIONS(1876), + [anon_sym___bridge] = ACTIONS(1876), + [anon_sym___bridge_transfer] = ACTIONS(1876), + [anon_sym___bridge_retained] = ACTIONS(1876), + [anon_sym___unsafe_unretained] = ACTIONS(1876), + [anon_sym___block] = ACTIONS(1876), + [anon_sym___kindof] = ACTIONS(1876), + [anon_sym___unused] = ACTIONS(1876), + [anon_sym__Complex] = ACTIONS(1876), + [anon_sym___complex] = ACTIONS(1876), + [anon_sym_IBOutlet] = ACTIONS(1876), + [anon_sym_IBInspectable] = ACTIONS(1876), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1876), + [anon_sym_unsigned] = ACTIONS(1876), + [anon_sym_long] = ACTIONS(1876), + [anon_sym_short] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(1876), + [anon_sym_enum] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1876), + [anon_sym_union] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1876), + [anon_sym_case] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_do] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_goto] = ACTIONS(1876), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_sizeof] = ACTIONS(1876), + [sym_number_literal] = ACTIONS(1878), + [anon_sym_L_SQUOTE] = ACTIONS(1878), + [anon_sym_u_SQUOTE] = ACTIONS(1878), + [anon_sym_U_SQUOTE] = ACTIONS(1878), + [anon_sym_u8_SQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(1878), + [anon_sym_u_DQUOTE] = ACTIONS(1878), + [anon_sym_U_DQUOTE] = ACTIONS(1878), + [anon_sym_u8_DQUOTE] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [sym_true] = ACTIONS(1876), + [sym_false] = ACTIONS(1876), + [sym_null] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1878), + [anon_sym_ATimport] = ACTIONS(1878), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1876), + [anon_sym_ATcompatibility_alias] = ACTIONS(1878), + [anon_sym_ATprotocol] = ACTIONS(1878), + [anon_sym_ATclass] = ACTIONS(1878), + [anon_sym_ATinterface] = ACTIONS(1878), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1876), + [sym_method_attribute_specifier] = ACTIONS(1876), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1876), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE] = ACTIONS(1876), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_API_AVAILABLE] = ACTIONS(1876), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_API_DEPRECATED] = ACTIONS(1876), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1876), + [anon_sym___deprecated_msg] = ACTIONS(1876), + [anon_sym___deprecated_enum_msg] = ACTIONS(1876), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1876), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1876), + [anon_sym_ATimplementation] = ACTIONS(1878), + [anon_sym_NS_ENUM] = ACTIONS(1876), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1876), + [anon_sym_NS_OPTIONS] = ACTIONS(1876), + [anon_sym_typeof] = ACTIONS(1876), + [anon_sym___typeof] = ACTIONS(1876), + [anon_sym___typeof__] = ACTIONS(1876), + [sym_self] = ACTIONS(1876), + [sym_super] = ACTIONS(1876), + [sym_nil] = ACTIONS(1876), + [sym_id] = ACTIONS(1876), + [sym_instancetype] = ACTIONS(1876), + [sym_Class] = ACTIONS(1876), + [sym_SEL] = ACTIONS(1876), + [sym_IMP] = ACTIONS(1876), + [sym_BOOL] = ACTIONS(1876), + [sym_auto] = ACTIONS(1876), + [anon_sym_ATautoreleasepool] = ACTIONS(1878), + [anon_sym_ATsynchronized] = ACTIONS(1878), + [anon_sym_ATtry] = ACTIONS(1878), + [anon_sym_ATthrow] = ACTIONS(1878), + [anon_sym_ATselector] = ACTIONS(1878), + [anon_sym_ATencode] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1876), + [sym_YES] = ACTIONS(1876), + [sym_NO] = ACTIONS(1876), + [anon_sym___builtin_available] = ACTIONS(1876), + [anon_sym_ATavailable] = ACTIONS(1878), + [anon_sym_va_arg] = ACTIONS(1876), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1181] = { + [ts_builtin_sym_end] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1182] = { + [ts_builtin_sym_end] = ACTIONS(2010), + [sym_identifier] = ACTIONS(2008), + [aux_sym_preproc_include_token1] = ACTIONS(2010), + [aux_sym_preproc_def_token1] = ACTIONS(2010), + [aux_sym_preproc_if_token1] = ACTIONS(2008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2008), + [anon_sym_LPAREN2] = ACTIONS(2010), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(2010), + [anon_sym_CARET] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2010), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_typedef] = ACTIONS(2008), + [anon_sym_extern] = ACTIONS(2008), + [anon_sym___attribute] = ACTIONS(2008), + [anon_sym___attribute__] = ACTIONS(2008), + [anon_sym___declspec] = ACTIONS(2008), + [anon_sym___cdecl] = ACTIONS(2008), + [anon_sym___clrcall] = ACTIONS(2008), + [anon_sym___stdcall] = ACTIONS(2008), + [anon_sym___fastcall] = ACTIONS(2008), + [anon_sym___thiscall] = ACTIONS(2008), + [anon_sym___vectorcall] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2010), + [anon_sym_RBRACE] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_static] = ACTIONS(2008), + [anon_sym_auto] = ACTIONS(2008), + [anon_sym_register] = ACTIONS(2008), + [anon_sym_inline] = ACTIONS(2008), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2008), + [anon_sym_const] = ACTIONS(2008), + [anon_sym_volatile] = ACTIONS(2008), + [anon_sym_restrict] = ACTIONS(2008), + [anon_sym__Atomic] = ACTIONS(2008), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_out] = ACTIONS(2008), + [anon_sym_inout] = ACTIONS(2008), + [anon_sym_bycopy] = ACTIONS(2008), + [anon_sym_byref] = ACTIONS(2008), + [anon_sym_oneway] = ACTIONS(2008), + [anon_sym__Nullable] = ACTIONS(2008), + [anon_sym__Nonnull] = ACTIONS(2008), + [anon_sym__Nullable_result] = ACTIONS(2008), + [anon_sym__Null_unspecified] = ACTIONS(2008), + [anon_sym___autoreleasing] = ACTIONS(2008), + [anon_sym___nullable] = ACTIONS(2008), + [anon_sym___nonnull] = ACTIONS(2008), + [anon_sym___strong] = ACTIONS(2008), + [anon_sym___weak] = ACTIONS(2008), + [anon_sym___bridge] = ACTIONS(2008), + [anon_sym___bridge_transfer] = ACTIONS(2008), + [anon_sym___bridge_retained] = ACTIONS(2008), + [anon_sym___unsafe_unretained] = ACTIONS(2008), + [anon_sym___block] = ACTIONS(2008), + [anon_sym___kindof] = ACTIONS(2008), + [anon_sym___unused] = ACTIONS(2008), + [anon_sym__Complex] = ACTIONS(2008), + [anon_sym___complex] = ACTIONS(2008), + [anon_sym_IBOutlet] = ACTIONS(2008), + [anon_sym_IBInspectable] = ACTIONS(2008), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2008), + [anon_sym_signed] = ACTIONS(2008), + [anon_sym_unsigned] = ACTIONS(2008), + [anon_sym_long] = ACTIONS(2008), + [anon_sym_short] = ACTIONS(2008), + [sym_primitive_type] = ACTIONS(2008), + [anon_sym_enum] = ACTIONS(2008), + [anon_sym_struct] = ACTIONS(2008), + [anon_sym_union] = ACTIONS(2008), + [anon_sym_if] = ACTIONS(2008), + [anon_sym_switch] = ACTIONS(2008), + [anon_sym_case] = ACTIONS(2008), + [anon_sym_default] = ACTIONS(2008), + [anon_sym_while] = ACTIONS(2008), + [anon_sym_do] = ACTIONS(2008), + [anon_sym_for] = ACTIONS(2008), + [anon_sym_return] = ACTIONS(2008), + [anon_sym_break] = ACTIONS(2008), + [anon_sym_continue] = ACTIONS(2008), + [anon_sym_goto] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2010), + [anon_sym_PLUS_PLUS] = ACTIONS(2010), + [anon_sym_sizeof] = ACTIONS(2008), + [sym_number_literal] = ACTIONS(2010), + [anon_sym_L_SQUOTE] = ACTIONS(2010), + [anon_sym_u_SQUOTE] = ACTIONS(2010), + [anon_sym_U_SQUOTE] = ACTIONS(2010), + [anon_sym_u8_SQUOTE] = ACTIONS(2010), + [anon_sym_SQUOTE] = ACTIONS(2010), + [anon_sym_L_DQUOTE] = ACTIONS(2010), + [anon_sym_u_DQUOTE] = ACTIONS(2010), + [anon_sym_U_DQUOTE] = ACTIONS(2010), + [anon_sym_u8_DQUOTE] = ACTIONS(2010), + [anon_sym_DQUOTE] = ACTIONS(2010), + [sym_true] = ACTIONS(2008), + [sym_false] = ACTIONS(2008), + [sym_null] = ACTIONS(2008), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2010), + [anon_sym_ATimport] = ACTIONS(2010), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2008), + [anon_sym_ATcompatibility_alias] = ACTIONS(2010), + [anon_sym_ATprotocol] = ACTIONS(2010), + [anon_sym_ATclass] = ACTIONS(2010), + [anon_sym_ATinterface] = ACTIONS(2010), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2008), + [sym_method_attribute_specifier] = ACTIONS(2008), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2008), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2008), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2008), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2008), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2008), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2008), + [anon_sym_NS_AVAILABLE] = ACTIONS(2008), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2008), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2008), + [anon_sym_API_AVAILABLE] = ACTIONS(2008), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2008), + [anon_sym_API_DEPRECATED] = ACTIONS(2008), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2008), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2008), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2008), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2008), + [anon_sym___deprecated_msg] = ACTIONS(2008), + [anon_sym___deprecated_enum_msg] = ACTIONS(2008), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2008), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2008), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2008), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2008), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2008), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2008), + [anon_sym_ATimplementation] = ACTIONS(2010), + [anon_sym_NS_ENUM] = ACTIONS(2008), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2008), + [anon_sym_NS_OPTIONS] = ACTIONS(2008), + [anon_sym_typeof] = ACTIONS(2008), + [anon_sym___typeof] = ACTIONS(2008), + [anon_sym___typeof__] = ACTIONS(2008), + [sym_self] = ACTIONS(2008), + [sym_super] = ACTIONS(2008), + [sym_nil] = ACTIONS(2008), + [sym_id] = ACTIONS(2008), + [sym_instancetype] = ACTIONS(2008), + [sym_Class] = ACTIONS(2008), + [sym_SEL] = ACTIONS(2008), + [sym_IMP] = ACTIONS(2008), + [sym_BOOL] = ACTIONS(2008), + [sym_auto] = ACTIONS(2008), + [anon_sym_ATautoreleasepool] = ACTIONS(2010), + [anon_sym_ATsynchronized] = ACTIONS(2010), + [anon_sym_ATtry] = ACTIONS(2010), + [anon_sym_ATthrow] = ACTIONS(2010), + [anon_sym_ATselector] = ACTIONS(2010), + [anon_sym_ATencode] = ACTIONS(2010), + [anon_sym_AT] = ACTIONS(2008), + [sym_YES] = ACTIONS(2008), + [sym_NO] = ACTIONS(2008), + [anon_sym___builtin_available] = ACTIONS(2008), + [anon_sym_ATavailable] = ACTIONS(2010), + [anon_sym_va_arg] = ACTIONS(2008), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1183] = { + [ts_builtin_sym_end] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1888), + [aux_sym_preproc_include_token1] = ACTIONS(1890), + [aux_sym_preproc_def_token1] = ACTIONS(1890), + [aux_sym_preproc_if_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1888), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym___attribute] = ACTIONS(1888), + [anon_sym___attribute__] = ACTIONS(1888), + [anon_sym___declspec] = ACTIONS(1888), + [anon_sym___cdecl] = ACTIONS(1888), + [anon_sym___clrcall] = ACTIONS(1888), + [anon_sym___stdcall] = ACTIONS(1888), + [anon_sym___fastcall] = ACTIONS(1888), + [anon_sym___thiscall] = ACTIONS(1888), + [anon_sym___vectorcall] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_auto] = ACTIONS(1888), + [anon_sym_register] = ACTIONS(1888), + [anon_sym_inline] = ACTIONS(1888), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_volatile] = ACTIONS(1888), + [anon_sym_restrict] = ACTIONS(1888), + [anon_sym__Atomic] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_out] = ACTIONS(1888), + [anon_sym_inout] = ACTIONS(1888), + [anon_sym_bycopy] = ACTIONS(1888), + [anon_sym_byref] = ACTIONS(1888), + [anon_sym_oneway] = ACTIONS(1888), + [anon_sym__Nullable] = ACTIONS(1888), + [anon_sym__Nonnull] = ACTIONS(1888), + [anon_sym__Nullable_result] = ACTIONS(1888), + [anon_sym__Null_unspecified] = ACTIONS(1888), + [anon_sym___autoreleasing] = ACTIONS(1888), + [anon_sym___nullable] = ACTIONS(1888), + [anon_sym___nonnull] = ACTIONS(1888), + [anon_sym___strong] = ACTIONS(1888), + [anon_sym___weak] = ACTIONS(1888), + [anon_sym___bridge] = ACTIONS(1888), + [anon_sym___bridge_transfer] = ACTIONS(1888), + [anon_sym___bridge_retained] = ACTIONS(1888), + [anon_sym___unsafe_unretained] = ACTIONS(1888), + [anon_sym___block] = ACTIONS(1888), + [anon_sym___kindof] = ACTIONS(1888), + [anon_sym___unused] = ACTIONS(1888), + [anon_sym__Complex] = ACTIONS(1888), + [anon_sym___complex] = ACTIONS(1888), + [anon_sym_IBOutlet] = ACTIONS(1888), + [anon_sym_IBInspectable] = ACTIONS(1888), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1888), + [anon_sym_signed] = ACTIONS(1888), + [anon_sym_unsigned] = ACTIONS(1888), + [anon_sym_long] = ACTIONS(1888), + [anon_sym_short] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_switch] = ACTIONS(1888), + [anon_sym_case] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_goto] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_sizeof] = ACTIONS(1888), + [sym_number_literal] = ACTIONS(1890), + [anon_sym_L_SQUOTE] = ACTIONS(1890), + [anon_sym_u_SQUOTE] = ACTIONS(1890), + [anon_sym_U_SQUOTE] = ACTIONS(1890), + [anon_sym_u8_SQUOTE] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_L_DQUOTE] = ACTIONS(1890), + [anon_sym_u_DQUOTE] = ACTIONS(1890), + [anon_sym_U_DQUOTE] = ACTIONS(1890), + [anon_sym_u8_DQUOTE] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_true] = ACTIONS(1888), + [sym_false] = ACTIONS(1888), + [sym_null] = ACTIONS(1888), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1890), + [anon_sym_ATimport] = ACTIONS(1890), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1888), + [anon_sym_ATcompatibility_alias] = ACTIONS(1890), + [anon_sym_ATprotocol] = ACTIONS(1890), + [anon_sym_ATclass] = ACTIONS(1890), + [anon_sym_ATinterface] = ACTIONS(1890), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1888), + [sym_method_attribute_specifier] = ACTIONS(1888), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1888), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE] = ACTIONS(1888), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_API_AVAILABLE] = ACTIONS(1888), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_API_DEPRECATED] = ACTIONS(1888), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1888), + [anon_sym___deprecated_msg] = ACTIONS(1888), + [anon_sym___deprecated_enum_msg] = ACTIONS(1888), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1888), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1888), + [anon_sym_ATimplementation] = ACTIONS(1890), + [anon_sym_NS_ENUM] = ACTIONS(1888), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1888), + [anon_sym_NS_OPTIONS] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym___typeof] = ACTIONS(1888), + [anon_sym___typeof__] = ACTIONS(1888), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_nil] = ACTIONS(1888), + [sym_id] = ACTIONS(1888), + [sym_instancetype] = ACTIONS(1888), + [sym_Class] = ACTIONS(1888), + [sym_SEL] = ACTIONS(1888), + [sym_IMP] = ACTIONS(1888), + [sym_BOOL] = ACTIONS(1888), + [sym_auto] = ACTIONS(1888), + [anon_sym_ATautoreleasepool] = ACTIONS(1890), + [anon_sym_ATsynchronized] = ACTIONS(1890), + [anon_sym_ATtry] = ACTIONS(1890), + [anon_sym_ATthrow] = ACTIONS(1890), + [anon_sym_ATselector] = ACTIONS(1890), + [anon_sym_ATencode] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [sym_YES] = ACTIONS(1888), + [sym_NO] = ACTIONS(1888), + [anon_sym___builtin_available] = ACTIONS(1888), + [anon_sym_ATavailable] = ACTIONS(1890), + [anon_sym_va_arg] = ACTIONS(1888), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1184] = { + [ts_builtin_sym_end] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1185] = { + [ts_builtin_sym_end] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1186] = { + [ts_builtin_sym_end] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1187] = { + [ts_builtin_sym_end] = ACTIONS(1998), + [sym_identifier] = ACTIONS(1996), + [aux_sym_preproc_include_token1] = ACTIONS(1998), + [aux_sym_preproc_def_token1] = ACTIONS(1998), + [aux_sym_preproc_if_token1] = ACTIONS(1996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(1998), + [anon_sym_BANG] = ACTIONS(1998), + [anon_sym_TILDE] = ACTIONS(1998), + [anon_sym_DASH] = ACTIONS(1996), + [anon_sym_PLUS] = ACTIONS(1996), + [anon_sym_STAR] = ACTIONS(1998), + [anon_sym_CARET] = ACTIONS(1998), + [anon_sym_AMP] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym_typedef] = ACTIONS(1996), + [anon_sym_extern] = ACTIONS(1996), + [anon_sym___attribute] = ACTIONS(1996), + [anon_sym___attribute__] = ACTIONS(1996), + [anon_sym___declspec] = ACTIONS(1996), + [anon_sym___cdecl] = ACTIONS(1996), + [anon_sym___clrcall] = ACTIONS(1996), + [anon_sym___stdcall] = ACTIONS(1996), + [anon_sym___fastcall] = ACTIONS(1996), + [anon_sym___thiscall] = ACTIONS(1996), + [anon_sym___vectorcall] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_RBRACE] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1998), + [anon_sym_static] = ACTIONS(1996), + [anon_sym_auto] = ACTIONS(1996), + [anon_sym_register] = ACTIONS(1996), + [anon_sym_inline] = ACTIONS(1996), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1996), + [anon_sym_const] = ACTIONS(1996), + [anon_sym_volatile] = ACTIONS(1996), + [anon_sym_restrict] = ACTIONS(1996), + [anon_sym__Atomic] = ACTIONS(1996), + [anon_sym_in] = ACTIONS(1996), + [anon_sym_out] = ACTIONS(1996), + [anon_sym_inout] = ACTIONS(1996), + [anon_sym_bycopy] = ACTIONS(1996), + [anon_sym_byref] = ACTIONS(1996), + [anon_sym_oneway] = ACTIONS(1996), + [anon_sym__Nullable] = ACTIONS(1996), + [anon_sym__Nonnull] = ACTIONS(1996), + [anon_sym__Nullable_result] = ACTIONS(1996), + [anon_sym__Null_unspecified] = ACTIONS(1996), + [anon_sym___autoreleasing] = ACTIONS(1996), + [anon_sym___nullable] = ACTIONS(1996), + [anon_sym___nonnull] = ACTIONS(1996), + [anon_sym___strong] = ACTIONS(1996), + [anon_sym___weak] = ACTIONS(1996), + [anon_sym___bridge] = ACTIONS(1996), + [anon_sym___bridge_transfer] = ACTIONS(1996), + [anon_sym___bridge_retained] = ACTIONS(1996), + [anon_sym___unsafe_unretained] = ACTIONS(1996), + [anon_sym___block] = ACTIONS(1996), + [anon_sym___kindof] = ACTIONS(1996), + [anon_sym___unused] = ACTIONS(1996), + [anon_sym__Complex] = ACTIONS(1996), + [anon_sym___complex] = ACTIONS(1996), + [anon_sym_IBOutlet] = ACTIONS(1996), + [anon_sym_IBInspectable] = ACTIONS(1996), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1996), + [anon_sym_signed] = ACTIONS(1996), + [anon_sym_unsigned] = ACTIONS(1996), + [anon_sym_long] = ACTIONS(1996), + [anon_sym_short] = ACTIONS(1996), + [sym_primitive_type] = ACTIONS(1996), + [anon_sym_enum] = ACTIONS(1996), + [anon_sym_struct] = ACTIONS(1996), + [anon_sym_union] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1996), + [anon_sym_switch] = ACTIONS(1996), + [anon_sym_case] = ACTIONS(1996), + [anon_sym_default] = ACTIONS(1996), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(1996), + [anon_sym_for] = ACTIONS(1996), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_break] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(1996), + [anon_sym_goto] = ACTIONS(1996), + [anon_sym_DASH_DASH] = ACTIONS(1998), + [anon_sym_PLUS_PLUS] = ACTIONS(1998), + [anon_sym_sizeof] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(1998), + [anon_sym_u_SQUOTE] = ACTIONS(1998), + [anon_sym_U_SQUOTE] = ACTIONS(1998), + [anon_sym_u8_SQUOTE] = ACTIONS(1998), + [anon_sym_SQUOTE] = ACTIONS(1998), + [anon_sym_L_DQUOTE] = ACTIONS(1998), + [anon_sym_u_DQUOTE] = ACTIONS(1998), + [anon_sym_U_DQUOTE] = ACTIONS(1998), + [anon_sym_u8_DQUOTE] = ACTIONS(1998), + [anon_sym_DQUOTE] = ACTIONS(1998), + [sym_true] = ACTIONS(1996), + [sym_false] = ACTIONS(1996), + [sym_null] = ACTIONS(1996), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1998), + [anon_sym_ATimport] = ACTIONS(1998), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1996), + [anon_sym_ATcompatibility_alias] = ACTIONS(1998), + [anon_sym_ATprotocol] = ACTIONS(1998), + [anon_sym_ATclass] = ACTIONS(1998), + [anon_sym_ATinterface] = ACTIONS(1998), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1996), + [sym_method_attribute_specifier] = ACTIONS(1996), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1996), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1996), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1996), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1996), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1996), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1996), + [anon_sym_NS_AVAILABLE] = ACTIONS(1996), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1996), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1996), + [anon_sym_API_AVAILABLE] = ACTIONS(1996), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1996), + [anon_sym_API_DEPRECATED] = ACTIONS(1996), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1996), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1996), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1996), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1996), + [anon_sym___deprecated_msg] = ACTIONS(1996), + [anon_sym___deprecated_enum_msg] = ACTIONS(1996), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1996), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1996), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1996), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1996), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1996), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1996), + [anon_sym_ATimplementation] = ACTIONS(1998), + [anon_sym_NS_ENUM] = ACTIONS(1996), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1996), + [anon_sym_NS_OPTIONS] = ACTIONS(1996), + [anon_sym_typeof] = ACTIONS(1996), + [anon_sym___typeof] = ACTIONS(1996), + [anon_sym___typeof__] = ACTIONS(1996), + [sym_self] = ACTIONS(1996), + [sym_super] = ACTIONS(1996), + [sym_nil] = ACTIONS(1996), + [sym_id] = ACTIONS(1996), + [sym_instancetype] = ACTIONS(1996), + [sym_Class] = ACTIONS(1996), + [sym_SEL] = ACTIONS(1996), + [sym_IMP] = ACTIONS(1996), + [sym_BOOL] = ACTIONS(1996), + [sym_auto] = ACTIONS(1996), + [anon_sym_ATautoreleasepool] = ACTIONS(1998), + [anon_sym_ATsynchronized] = ACTIONS(1998), + [anon_sym_ATtry] = ACTIONS(1998), + [anon_sym_ATthrow] = ACTIONS(1998), + [anon_sym_ATselector] = ACTIONS(1998), + [anon_sym_ATencode] = ACTIONS(1998), + [anon_sym_AT] = ACTIONS(1996), + [sym_YES] = ACTIONS(1996), + [sym_NO] = ACTIONS(1996), + [anon_sym___builtin_available] = ACTIONS(1996), + [anon_sym_ATavailable] = ACTIONS(1998), + [anon_sym_va_arg] = ACTIONS(1996), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1188] = { + [ts_builtin_sym_end] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1888), + [aux_sym_preproc_include_token1] = ACTIONS(1890), + [aux_sym_preproc_def_token1] = ACTIONS(1890), + [aux_sym_preproc_if_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1888), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym___attribute] = ACTIONS(1888), + [anon_sym___attribute__] = ACTIONS(1888), + [anon_sym___declspec] = ACTIONS(1888), + [anon_sym___cdecl] = ACTIONS(1888), + [anon_sym___clrcall] = ACTIONS(1888), + [anon_sym___stdcall] = ACTIONS(1888), + [anon_sym___fastcall] = ACTIONS(1888), + [anon_sym___thiscall] = ACTIONS(1888), + [anon_sym___vectorcall] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_auto] = ACTIONS(1888), + [anon_sym_register] = ACTIONS(1888), + [anon_sym_inline] = ACTIONS(1888), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_volatile] = ACTIONS(1888), + [anon_sym_restrict] = ACTIONS(1888), + [anon_sym__Atomic] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_out] = ACTIONS(1888), + [anon_sym_inout] = ACTIONS(1888), + [anon_sym_bycopy] = ACTIONS(1888), + [anon_sym_byref] = ACTIONS(1888), + [anon_sym_oneway] = ACTIONS(1888), + [anon_sym__Nullable] = ACTIONS(1888), + [anon_sym__Nonnull] = ACTIONS(1888), + [anon_sym__Nullable_result] = ACTIONS(1888), + [anon_sym__Null_unspecified] = ACTIONS(1888), + [anon_sym___autoreleasing] = ACTIONS(1888), + [anon_sym___nullable] = ACTIONS(1888), + [anon_sym___nonnull] = ACTIONS(1888), + [anon_sym___strong] = ACTIONS(1888), + [anon_sym___weak] = ACTIONS(1888), + [anon_sym___bridge] = ACTIONS(1888), + [anon_sym___bridge_transfer] = ACTIONS(1888), + [anon_sym___bridge_retained] = ACTIONS(1888), + [anon_sym___unsafe_unretained] = ACTIONS(1888), + [anon_sym___block] = ACTIONS(1888), + [anon_sym___kindof] = ACTIONS(1888), + [anon_sym___unused] = ACTIONS(1888), + [anon_sym__Complex] = ACTIONS(1888), + [anon_sym___complex] = ACTIONS(1888), + [anon_sym_IBOutlet] = ACTIONS(1888), + [anon_sym_IBInspectable] = ACTIONS(1888), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1888), + [anon_sym_signed] = ACTIONS(1888), + [anon_sym_unsigned] = ACTIONS(1888), + [anon_sym_long] = ACTIONS(1888), + [anon_sym_short] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_switch] = ACTIONS(1888), + [anon_sym_case] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_goto] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_sizeof] = ACTIONS(1888), + [sym_number_literal] = ACTIONS(1890), + [anon_sym_L_SQUOTE] = ACTIONS(1890), + [anon_sym_u_SQUOTE] = ACTIONS(1890), + [anon_sym_U_SQUOTE] = ACTIONS(1890), + [anon_sym_u8_SQUOTE] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_L_DQUOTE] = ACTIONS(1890), + [anon_sym_u_DQUOTE] = ACTIONS(1890), + [anon_sym_U_DQUOTE] = ACTIONS(1890), + [anon_sym_u8_DQUOTE] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_true] = ACTIONS(1888), + [sym_false] = ACTIONS(1888), + [sym_null] = ACTIONS(1888), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1890), + [anon_sym_ATimport] = ACTIONS(1890), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1888), + [anon_sym_ATcompatibility_alias] = ACTIONS(1890), + [anon_sym_ATprotocol] = ACTIONS(1890), + [anon_sym_ATclass] = ACTIONS(1890), + [anon_sym_ATinterface] = ACTIONS(1890), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1888), + [sym_method_attribute_specifier] = ACTIONS(1888), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1888), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE] = ACTIONS(1888), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_API_AVAILABLE] = ACTIONS(1888), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_API_DEPRECATED] = ACTIONS(1888), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1888), + [anon_sym___deprecated_msg] = ACTIONS(1888), + [anon_sym___deprecated_enum_msg] = ACTIONS(1888), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1888), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1888), + [anon_sym_ATimplementation] = ACTIONS(1890), + [anon_sym_NS_ENUM] = ACTIONS(1888), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1888), + [anon_sym_NS_OPTIONS] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym___typeof] = ACTIONS(1888), + [anon_sym___typeof__] = ACTIONS(1888), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_nil] = ACTIONS(1888), + [sym_id] = ACTIONS(1888), + [sym_instancetype] = ACTIONS(1888), + [sym_Class] = ACTIONS(1888), + [sym_SEL] = ACTIONS(1888), + [sym_IMP] = ACTIONS(1888), + [sym_BOOL] = ACTIONS(1888), + [sym_auto] = ACTIONS(1888), + [anon_sym_ATautoreleasepool] = ACTIONS(1890), + [anon_sym_ATsynchronized] = ACTIONS(1890), + [anon_sym_ATtry] = ACTIONS(1890), + [anon_sym_ATthrow] = ACTIONS(1890), + [anon_sym_ATselector] = ACTIONS(1890), + [anon_sym_ATencode] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [sym_YES] = ACTIONS(1888), + [sym_NO] = ACTIONS(1888), + [anon_sym___builtin_available] = ACTIONS(1888), + [anon_sym_ATavailable] = ACTIONS(1890), + [anon_sym_va_arg] = ACTIONS(1888), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1189] = { + [ts_builtin_sym_end] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1190] = { + [ts_builtin_sym_end] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1191] = { + [ts_builtin_sym_end] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1192] = { + [ts_builtin_sym_end] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1193] = { + [ts_builtin_sym_end] = ACTIONS(1894), + [sym_identifier] = ACTIONS(1892), + [aux_sym_preproc_include_token1] = ACTIONS(1894), + [aux_sym_preproc_def_token1] = ACTIONS(1894), + [aux_sym_preproc_if_token1] = ACTIONS(1892), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1892), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1892), + [anon_sym_LPAREN2] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_TILDE] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_typedef] = ACTIONS(1892), + [anon_sym_extern] = ACTIONS(1892), + [anon_sym___attribute] = ACTIONS(1892), + [anon_sym___attribute__] = ACTIONS(1892), + [anon_sym___declspec] = ACTIONS(1892), + [anon_sym___cdecl] = ACTIONS(1892), + [anon_sym___clrcall] = ACTIONS(1892), + [anon_sym___stdcall] = ACTIONS(1892), + [anon_sym___fastcall] = ACTIONS(1892), + [anon_sym___thiscall] = ACTIONS(1892), + [anon_sym___vectorcall] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_RBRACE] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_static] = ACTIONS(1892), + [anon_sym_auto] = ACTIONS(1892), + [anon_sym_register] = ACTIONS(1892), + [anon_sym_inline] = ACTIONS(1892), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1892), + [anon_sym_const] = ACTIONS(1892), + [anon_sym_volatile] = ACTIONS(1892), + [anon_sym_restrict] = ACTIONS(1892), + [anon_sym__Atomic] = ACTIONS(1892), + [anon_sym_in] = ACTIONS(1892), + [anon_sym_out] = ACTIONS(1892), + [anon_sym_inout] = ACTIONS(1892), + [anon_sym_bycopy] = ACTIONS(1892), + [anon_sym_byref] = ACTIONS(1892), + [anon_sym_oneway] = ACTIONS(1892), + [anon_sym__Nullable] = ACTIONS(1892), + [anon_sym__Nonnull] = ACTIONS(1892), + [anon_sym__Nullable_result] = ACTIONS(1892), + [anon_sym__Null_unspecified] = ACTIONS(1892), + [anon_sym___autoreleasing] = ACTIONS(1892), + [anon_sym___nullable] = ACTIONS(1892), + [anon_sym___nonnull] = ACTIONS(1892), + [anon_sym___strong] = ACTIONS(1892), + [anon_sym___weak] = ACTIONS(1892), + [anon_sym___bridge] = ACTIONS(1892), + [anon_sym___bridge_transfer] = ACTIONS(1892), + [anon_sym___bridge_retained] = ACTIONS(1892), + [anon_sym___unsafe_unretained] = ACTIONS(1892), + [anon_sym___block] = ACTIONS(1892), + [anon_sym___kindof] = ACTIONS(1892), + [anon_sym___unused] = ACTIONS(1892), + [anon_sym__Complex] = ACTIONS(1892), + [anon_sym___complex] = ACTIONS(1892), + [anon_sym_IBOutlet] = ACTIONS(1892), + [anon_sym_IBInspectable] = ACTIONS(1892), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1892), + [anon_sym_signed] = ACTIONS(1892), + [anon_sym_unsigned] = ACTIONS(1892), + [anon_sym_long] = ACTIONS(1892), + [anon_sym_short] = ACTIONS(1892), + [sym_primitive_type] = ACTIONS(1892), + [anon_sym_enum] = ACTIONS(1892), + [anon_sym_struct] = ACTIONS(1892), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_if] = ACTIONS(1892), + [anon_sym_switch] = ACTIONS(1892), + [anon_sym_case] = ACTIONS(1892), + [anon_sym_default] = ACTIONS(1892), + [anon_sym_while] = ACTIONS(1892), + [anon_sym_do] = ACTIONS(1892), + [anon_sym_for] = ACTIONS(1892), + [anon_sym_return] = ACTIONS(1892), + [anon_sym_break] = ACTIONS(1892), + [anon_sym_continue] = ACTIONS(1892), + [anon_sym_goto] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1892), + [sym_number_literal] = ACTIONS(1894), + [anon_sym_L_SQUOTE] = ACTIONS(1894), + [anon_sym_u_SQUOTE] = ACTIONS(1894), + [anon_sym_U_SQUOTE] = ACTIONS(1894), + [anon_sym_u8_SQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_L_DQUOTE] = ACTIONS(1894), + [anon_sym_u_DQUOTE] = ACTIONS(1894), + [anon_sym_U_DQUOTE] = ACTIONS(1894), + [anon_sym_u8_DQUOTE] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [sym_true] = ACTIONS(1892), + [sym_false] = ACTIONS(1892), + [sym_null] = ACTIONS(1892), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1894), + [anon_sym_ATimport] = ACTIONS(1894), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1892), + [anon_sym_ATcompatibility_alias] = ACTIONS(1894), + [anon_sym_ATprotocol] = ACTIONS(1894), + [anon_sym_ATclass] = ACTIONS(1894), + [anon_sym_ATinterface] = ACTIONS(1894), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1892), + [sym_method_attribute_specifier] = ACTIONS(1892), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1892), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1892), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1892), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1892), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1892), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1892), + [anon_sym_NS_AVAILABLE] = ACTIONS(1892), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1892), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1892), + [anon_sym_API_AVAILABLE] = ACTIONS(1892), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1892), + [anon_sym_API_DEPRECATED] = ACTIONS(1892), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1892), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1892), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1892), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1892), + [anon_sym___deprecated_msg] = ACTIONS(1892), + [anon_sym___deprecated_enum_msg] = ACTIONS(1892), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1892), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1892), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1892), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1892), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1892), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1892), + [anon_sym_ATimplementation] = ACTIONS(1894), + [anon_sym_NS_ENUM] = ACTIONS(1892), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1892), + [anon_sym_NS_OPTIONS] = ACTIONS(1892), + [anon_sym_typeof] = ACTIONS(1892), + [anon_sym___typeof] = ACTIONS(1892), + [anon_sym___typeof__] = ACTIONS(1892), + [sym_self] = ACTIONS(1892), + [sym_super] = ACTIONS(1892), + [sym_nil] = ACTIONS(1892), + [sym_id] = ACTIONS(1892), + [sym_instancetype] = ACTIONS(1892), + [sym_Class] = ACTIONS(1892), + [sym_SEL] = ACTIONS(1892), + [sym_IMP] = ACTIONS(1892), + [sym_BOOL] = ACTIONS(1892), + [sym_auto] = ACTIONS(1892), + [anon_sym_ATautoreleasepool] = ACTIONS(1894), + [anon_sym_ATsynchronized] = ACTIONS(1894), + [anon_sym_ATtry] = ACTIONS(1894), + [anon_sym_ATthrow] = ACTIONS(1894), + [anon_sym_ATselector] = ACTIONS(1894), + [anon_sym_ATencode] = ACTIONS(1894), + [anon_sym_AT] = ACTIONS(1892), + [sym_YES] = ACTIONS(1892), + [sym_NO] = ACTIONS(1892), + [anon_sym___builtin_available] = ACTIONS(1892), + [anon_sym_ATavailable] = ACTIONS(1894), + [anon_sym_va_arg] = ACTIONS(1892), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1194] = { + [ts_builtin_sym_end] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1888), + [aux_sym_preproc_include_token1] = ACTIONS(1890), + [aux_sym_preproc_def_token1] = ACTIONS(1890), + [aux_sym_preproc_if_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1888), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym___attribute] = ACTIONS(1888), + [anon_sym___attribute__] = ACTIONS(1888), + [anon_sym___declspec] = ACTIONS(1888), + [anon_sym___cdecl] = ACTIONS(1888), + [anon_sym___clrcall] = ACTIONS(1888), + [anon_sym___stdcall] = ACTIONS(1888), + [anon_sym___fastcall] = ACTIONS(1888), + [anon_sym___thiscall] = ACTIONS(1888), + [anon_sym___vectorcall] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_auto] = ACTIONS(1888), + [anon_sym_register] = ACTIONS(1888), + [anon_sym_inline] = ACTIONS(1888), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_volatile] = ACTIONS(1888), + [anon_sym_restrict] = ACTIONS(1888), + [anon_sym__Atomic] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_out] = ACTIONS(1888), + [anon_sym_inout] = ACTIONS(1888), + [anon_sym_bycopy] = ACTIONS(1888), + [anon_sym_byref] = ACTIONS(1888), + [anon_sym_oneway] = ACTIONS(1888), + [anon_sym__Nullable] = ACTIONS(1888), + [anon_sym__Nonnull] = ACTIONS(1888), + [anon_sym__Nullable_result] = ACTIONS(1888), + [anon_sym__Null_unspecified] = ACTIONS(1888), + [anon_sym___autoreleasing] = ACTIONS(1888), + [anon_sym___nullable] = ACTIONS(1888), + [anon_sym___nonnull] = ACTIONS(1888), + [anon_sym___strong] = ACTIONS(1888), + [anon_sym___weak] = ACTIONS(1888), + [anon_sym___bridge] = ACTIONS(1888), + [anon_sym___bridge_transfer] = ACTIONS(1888), + [anon_sym___bridge_retained] = ACTIONS(1888), + [anon_sym___unsafe_unretained] = ACTIONS(1888), + [anon_sym___block] = ACTIONS(1888), + [anon_sym___kindof] = ACTIONS(1888), + [anon_sym___unused] = ACTIONS(1888), + [anon_sym__Complex] = ACTIONS(1888), + [anon_sym___complex] = ACTIONS(1888), + [anon_sym_IBOutlet] = ACTIONS(1888), + [anon_sym_IBInspectable] = ACTIONS(1888), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1888), + [anon_sym_signed] = ACTIONS(1888), + [anon_sym_unsigned] = ACTIONS(1888), + [anon_sym_long] = ACTIONS(1888), + [anon_sym_short] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_switch] = ACTIONS(1888), + [anon_sym_case] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_goto] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_sizeof] = ACTIONS(1888), + [sym_number_literal] = ACTIONS(1890), + [anon_sym_L_SQUOTE] = ACTIONS(1890), + [anon_sym_u_SQUOTE] = ACTIONS(1890), + [anon_sym_U_SQUOTE] = ACTIONS(1890), + [anon_sym_u8_SQUOTE] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_L_DQUOTE] = ACTIONS(1890), + [anon_sym_u_DQUOTE] = ACTIONS(1890), + [anon_sym_U_DQUOTE] = ACTIONS(1890), + [anon_sym_u8_DQUOTE] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_true] = ACTIONS(1888), + [sym_false] = ACTIONS(1888), + [sym_null] = ACTIONS(1888), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1890), + [anon_sym_ATimport] = ACTIONS(1890), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1888), + [anon_sym_ATcompatibility_alias] = ACTIONS(1890), + [anon_sym_ATprotocol] = ACTIONS(1890), + [anon_sym_ATclass] = ACTIONS(1890), + [anon_sym_ATinterface] = ACTIONS(1890), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1888), + [sym_method_attribute_specifier] = ACTIONS(1888), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1888), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE] = ACTIONS(1888), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_API_AVAILABLE] = ACTIONS(1888), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_API_DEPRECATED] = ACTIONS(1888), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1888), + [anon_sym___deprecated_msg] = ACTIONS(1888), + [anon_sym___deprecated_enum_msg] = ACTIONS(1888), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1888), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1888), + [anon_sym_ATimplementation] = ACTIONS(1890), + [anon_sym_NS_ENUM] = ACTIONS(1888), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1888), + [anon_sym_NS_OPTIONS] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym___typeof] = ACTIONS(1888), + [anon_sym___typeof__] = ACTIONS(1888), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_nil] = ACTIONS(1888), + [sym_id] = ACTIONS(1888), + [sym_instancetype] = ACTIONS(1888), + [sym_Class] = ACTIONS(1888), + [sym_SEL] = ACTIONS(1888), + [sym_IMP] = ACTIONS(1888), + [sym_BOOL] = ACTIONS(1888), + [sym_auto] = ACTIONS(1888), + [anon_sym_ATautoreleasepool] = ACTIONS(1890), + [anon_sym_ATsynchronized] = ACTIONS(1890), + [anon_sym_ATtry] = ACTIONS(1890), + [anon_sym_ATthrow] = ACTIONS(1890), + [anon_sym_ATselector] = ACTIONS(1890), + [anon_sym_ATencode] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [sym_YES] = ACTIONS(1888), + [sym_NO] = ACTIONS(1888), + [anon_sym___builtin_available] = ACTIONS(1888), + [anon_sym_ATavailable] = ACTIONS(1890), + [anon_sym_va_arg] = ACTIONS(1888), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1195] = { + [ts_builtin_sym_end] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1888), + [aux_sym_preproc_include_token1] = ACTIONS(1890), + [aux_sym_preproc_def_token1] = ACTIONS(1890), + [aux_sym_preproc_if_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1888), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym___attribute] = ACTIONS(1888), + [anon_sym___attribute__] = ACTIONS(1888), + [anon_sym___declspec] = ACTIONS(1888), + [anon_sym___cdecl] = ACTIONS(1888), + [anon_sym___clrcall] = ACTIONS(1888), + [anon_sym___stdcall] = ACTIONS(1888), + [anon_sym___fastcall] = ACTIONS(1888), + [anon_sym___thiscall] = ACTIONS(1888), + [anon_sym___vectorcall] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_auto] = ACTIONS(1888), + [anon_sym_register] = ACTIONS(1888), + [anon_sym_inline] = ACTIONS(1888), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_volatile] = ACTIONS(1888), + [anon_sym_restrict] = ACTIONS(1888), + [anon_sym__Atomic] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_out] = ACTIONS(1888), + [anon_sym_inout] = ACTIONS(1888), + [anon_sym_bycopy] = ACTIONS(1888), + [anon_sym_byref] = ACTIONS(1888), + [anon_sym_oneway] = ACTIONS(1888), + [anon_sym__Nullable] = ACTIONS(1888), + [anon_sym__Nonnull] = ACTIONS(1888), + [anon_sym__Nullable_result] = ACTIONS(1888), + [anon_sym__Null_unspecified] = ACTIONS(1888), + [anon_sym___autoreleasing] = ACTIONS(1888), + [anon_sym___nullable] = ACTIONS(1888), + [anon_sym___nonnull] = ACTIONS(1888), + [anon_sym___strong] = ACTIONS(1888), + [anon_sym___weak] = ACTIONS(1888), + [anon_sym___bridge] = ACTIONS(1888), + [anon_sym___bridge_transfer] = ACTIONS(1888), + [anon_sym___bridge_retained] = ACTIONS(1888), + [anon_sym___unsafe_unretained] = ACTIONS(1888), + [anon_sym___block] = ACTIONS(1888), + [anon_sym___kindof] = ACTIONS(1888), + [anon_sym___unused] = ACTIONS(1888), + [anon_sym__Complex] = ACTIONS(1888), + [anon_sym___complex] = ACTIONS(1888), + [anon_sym_IBOutlet] = ACTIONS(1888), + [anon_sym_IBInspectable] = ACTIONS(1888), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1888), + [anon_sym_signed] = ACTIONS(1888), + [anon_sym_unsigned] = ACTIONS(1888), + [anon_sym_long] = ACTIONS(1888), + [anon_sym_short] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_switch] = ACTIONS(1888), + [anon_sym_case] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_goto] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_sizeof] = ACTIONS(1888), + [sym_number_literal] = ACTIONS(1890), + [anon_sym_L_SQUOTE] = ACTIONS(1890), + [anon_sym_u_SQUOTE] = ACTIONS(1890), + [anon_sym_U_SQUOTE] = ACTIONS(1890), + [anon_sym_u8_SQUOTE] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_L_DQUOTE] = ACTIONS(1890), + [anon_sym_u_DQUOTE] = ACTIONS(1890), + [anon_sym_U_DQUOTE] = ACTIONS(1890), + [anon_sym_u8_DQUOTE] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_true] = ACTIONS(1888), + [sym_false] = ACTIONS(1888), + [sym_null] = ACTIONS(1888), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1890), + [anon_sym_ATimport] = ACTIONS(1890), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1888), + [anon_sym_ATcompatibility_alias] = ACTIONS(1890), + [anon_sym_ATprotocol] = ACTIONS(1890), + [anon_sym_ATclass] = ACTIONS(1890), + [anon_sym_ATinterface] = ACTIONS(1890), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1888), + [sym_method_attribute_specifier] = ACTIONS(1888), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1888), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE] = ACTIONS(1888), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_API_AVAILABLE] = ACTIONS(1888), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_API_DEPRECATED] = ACTIONS(1888), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1888), + [anon_sym___deprecated_msg] = ACTIONS(1888), + [anon_sym___deprecated_enum_msg] = ACTIONS(1888), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1888), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1888), + [anon_sym_ATimplementation] = ACTIONS(1890), + [anon_sym_NS_ENUM] = ACTIONS(1888), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1888), + [anon_sym_NS_OPTIONS] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym___typeof] = ACTIONS(1888), + [anon_sym___typeof__] = ACTIONS(1888), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_nil] = ACTIONS(1888), + [sym_id] = ACTIONS(1888), + [sym_instancetype] = ACTIONS(1888), + [sym_Class] = ACTIONS(1888), + [sym_SEL] = ACTIONS(1888), + [sym_IMP] = ACTIONS(1888), + [sym_BOOL] = ACTIONS(1888), + [sym_auto] = ACTIONS(1888), + [anon_sym_ATautoreleasepool] = ACTIONS(1890), + [anon_sym_ATsynchronized] = ACTIONS(1890), + [anon_sym_ATtry] = ACTIONS(1890), + [anon_sym_ATthrow] = ACTIONS(1890), + [anon_sym_ATselector] = ACTIONS(1890), + [anon_sym_ATencode] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [sym_YES] = ACTIONS(1888), + [sym_NO] = ACTIONS(1888), + [anon_sym___builtin_available] = ACTIONS(1888), + [anon_sym_ATavailable] = ACTIONS(1890), + [anon_sym_va_arg] = ACTIONS(1888), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1196] = { + [ts_builtin_sym_end] = ACTIONS(1882), + [sym_identifier] = ACTIONS(1880), + [aux_sym_preproc_include_token1] = ACTIONS(1882), + [aux_sym_preproc_def_token1] = ACTIONS(1882), + [aux_sym_preproc_if_token1] = ACTIONS(1880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1880), + [anon_sym_LPAREN2] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1882), + [anon_sym_TILDE] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_PLUS] = ACTIONS(1880), + [anon_sym_STAR] = ACTIONS(1882), + [anon_sym_CARET] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_typedef] = ACTIONS(1880), + [anon_sym_extern] = ACTIONS(1880), + [anon_sym___attribute] = ACTIONS(1880), + [anon_sym___attribute__] = ACTIONS(1880), + [anon_sym___declspec] = ACTIONS(1880), + [anon_sym___cdecl] = ACTIONS(1880), + [anon_sym___clrcall] = ACTIONS(1880), + [anon_sym___stdcall] = ACTIONS(1880), + [anon_sym___fastcall] = ACTIONS(1880), + [anon_sym___thiscall] = ACTIONS(1880), + [anon_sym___vectorcall] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_static] = ACTIONS(1880), + [anon_sym_auto] = ACTIONS(1880), + [anon_sym_register] = ACTIONS(1880), + [anon_sym_inline] = ACTIONS(1880), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [anon_sym_volatile] = ACTIONS(1880), + [anon_sym_restrict] = ACTIONS(1880), + [anon_sym__Atomic] = ACTIONS(1880), + [anon_sym_in] = ACTIONS(1880), + [anon_sym_out] = ACTIONS(1880), + [anon_sym_inout] = ACTIONS(1880), + [anon_sym_bycopy] = ACTIONS(1880), + [anon_sym_byref] = ACTIONS(1880), + [anon_sym_oneway] = ACTIONS(1880), + [anon_sym__Nullable] = ACTIONS(1880), + [anon_sym__Nonnull] = ACTIONS(1880), + [anon_sym__Nullable_result] = ACTIONS(1880), + [anon_sym__Null_unspecified] = ACTIONS(1880), + [anon_sym___autoreleasing] = ACTIONS(1880), + [anon_sym___nullable] = ACTIONS(1880), + [anon_sym___nonnull] = ACTIONS(1880), + [anon_sym___strong] = ACTIONS(1880), + [anon_sym___weak] = ACTIONS(1880), + [anon_sym___bridge] = ACTIONS(1880), + [anon_sym___bridge_transfer] = ACTIONS(1880), + [anon_sym___bridge_retained] = ACTIONS(1880), + [anon_sym___unsafe_unretained] = ACTIONS(1880), + [anon_sym___block] = ACTIONS(1880), + [anon_sym___kindof] = ACTIONS(1880), + [anon_sym___unused] = ACTIONS(1880), + [anon_sym__Complex] = ACTIONS(1880), + [anon_sym___complex] = ACTIONS(1880), + [anon_sym_IBOutlet] = ACTIONS(1880), + [anon_sym_IBInspectable] = ACTIONS(1880), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1880), + [anon_sym_signed] = ACTIONS(1880), + [anon_sym_unsigned] = ACTIONS(1880), + [anon_sym_long] = ACTIONS(1880), + [anon_sym_short] = ACTIONS(1880), + [sym_primitive_type] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(1880), + [anon_sym_struct] = ACTIONS(1880), + [anon_sym_union] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_switch] = ACTIONS(1880), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_do] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_goto] = ACTIONS(1880), + [anon_sym_DASH_DASH] = ACTIONS(1882), + [anon_sym_PLUS_PLUS] = ACTIONS(1882), + [anon_sym_sizeof] = ACTIONS(1880), + [sym_number_literal] = ACTIONS(1882), + [anon_sym_L_SQUOTE] = ACTIONS(1882), + [anon_sym_u_SQUOTE] = ACTIONS(1882), + [anon_sym_U_SQUOTE] = ACTIONS(1882), + [anon_sym_u8_SQUOTE] = ACTIONS(1882), + [anon_sym_SQUOTE] = ACTIONS(1882), + [anon_sym_L_DQUOTE] = ACTIONS(1882), + [anon_sym_u_DQUOTE] = ACTIONS(1882), + [anon_sym_U_DQUOTE] = ACTIONS(1882), + [anon_sym_u8_DQUOTE] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [sym_true] = ACTIONS(1880), + [sym_false] = ACTIONS(1880), + [sym_null] = ACTIONS(1880), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1882), + [anon_sym_ATimport] = ACTIONS(1882), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1880), + [anon_sym_ATcompatibility_alias] = ACTIONS(1882), + [anon_sym_ATprotocol] = ACTIONS(1882), + [anon_sym_ATclass] = ACTIONS(1882), + [anon_sym_ATinterface] = ACTIONS(1882), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1880), + [sym_method_attribute_specifier] = ACTIONS(1880), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1880), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1880), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1880), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1880), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1880), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1880), + [anon_sym_NS_AVAILABLE] = ACTIONS(1880), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1880), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1880), + [anon_sym_API_AVAILABLE] = ACTIONS(1880), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1880), + [anon_sym_API_DEPRECATED] = ACTIONS(1880), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1880), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1880), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1880), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1880), + [anon_sym___deprecated_msg] = ACTIONS(1880), + [anon_sym___deprecated_enum_msg] = ACTIONS(1880), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1880), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1880), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1880), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1880), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1880), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1880), + [anon_sym_ATimplementation] = ACTIONS(1882), + [anon_sym_NS_ENUM] = ACTIONS(1880), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1880), + [anon_sym_NS_OPTIONS] = ACTIONS(1880), + [anon_sym_typeof] = ACTIONS(1880), + [anon_sym___typeof] = ACTIONS(1880), + [anon_sym___typeof__] = ACTIONS(1880), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_nil] = ACTIONS(1880), + [sym_id] = ACTIONS(1880), + [sym_instancetype] = ACTIONS(1880), + [sym_Class] = ACTIONS(1880), + [sym_SEL] = ACTIONS(1880), + [sym_IMP] = ACTIONS(1880), + [sym_BOOL] = ACTIONS(1880), + [sym_auto] = ACTIONS(1880), + [anon_sym_ATautoreleasepool] = ACTIONS(1882), + [anon_sym_ATsynchronized] = ACTIONS(1882), + [anon_sym_ATtry] = ACTIONS(1882), + [anon_sym_ATthrow] = ACTIONS(1882), + [anon_sym_ATselector] = ACTIONS(1882), + [anon_sym_ATencode] = ACTIONS(1882), + [anon_sym_AT] = ACTIONS(1880), + [sym_YES] = ACTIONS(1880), + [sym_NO] = ACTIONS(1880), + [anon_sym___builtin_available] = ACTIONS(1880), + [anon_sym_ATavailable] = ACTIONS(1882), + [anon_sym_va_arg] = ACTIONS(1880), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1197] = { + [ts_builtin_sym_end] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1888), + [aux_sym_preproc_include_token1] = ACTIONS(1890), + [aux_sym_preproc_def_token1] = ACTIONS(1890), + [aux_sym_preproc_if_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1888), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym___attribute] = ACTIONS(1888), + [anon_sym___attribute__] = ACTIONS(1888), + [anon_sym___declspec] = ACTIONS(1888), + [anon_sym___cdecl] = ACTIONS(1888), + [anon_sym___clrcall] = ACTIONS(1888), + [anon_sym___stdcall] = ACTIONS(1888), + [anon_sym___fastcall] = ACTIONS(1888), + [anon_sym___thiscall] = ACTIONS(1888), + [anon_sym___vectorcall] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_auto] = ACTIONS(1888), + [anon_sym_register] = ACTIONS(1888), + [anon_sym_inline] = ACTIONS(1888), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_volatile] = ACTIONS(1888), + [anon_sym_restrict] = ACTIONS(1888), + [anon_sym__Atomic] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_out] = ACTIONS(1888), + [anon_sym_inout] = ACTIONS(1888), + [anon_sym_bycopy] = ACTIONS(1888), + [anon_sym_byref] = ACTIONS(1888), + [anon_sym_oneway] = ACTIONS(1888), + [anon_sym__Nullable] = ACTIONS(1888), + [anon_sym__Nonnull] = ACTIONS(1888), + [anon_sym__Nullable_result] = ACTIONS(1888), + [anon_sym__Null_unspecified] = ACTIONS(1888), + [anon_sym___autoreleasing] = ACTIONS(1888), + [anon_sym___nullable] = ACTIONS(1888), + [anon_sym___nonnull] = ACTIONS(1888), + [anon_sym___strong] = ACTIONS(1888), + [anon_sym___weak] = ACTIONS(1888), + [anon_sym___bridge] = ACTIONS(1888), + [anon_sym___bridge_transfer] = ACTIONS(1888), + [anon_sym___bridge_retained] = ACTIONS(1888), + [anon_sym___unsafe_unretained] = ACTIONS(1888), + [anon_sym___block] = ACTIONS(1888), + [anon_sym___kindof] = ACTIONS(1888), + [anon_sym___unused] = ACTIONS(1888), + [anon_sym__Complex] = ACTIONS(1888), + [anon_sym___complex] = ACTIONS(1888), + [anon_sym_IBOutlet] = ACTIONS(1888), + [anon_sym_IBInspectable] = ACTIONS(1888), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1888), + [anon_sym_signed] = ACTIONS(1888), + [anon_sym_unsigned] = ACTIONS(1888), + [anon_sym_long] = ACTIONS(1888), + [anon_sym_short] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_switch] = ACTIONS(1888), + [anon_sym_case] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_goto] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_sizeof] = ACTIONS(1888), + [sym_number_literal] = ACTIONS(1890), + [anon_sym_L_SQUOTE] = ACTIONS(1890), + [anon_sym_u_SQUOTE] = ACTIONS(1890), + [anon_sym_U_SQUOTE] = ACTIONS(1890), + [anon_sym_u8_SQUOTE] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_L_DQUOTE] = ACTIONS(1890), + [anon_sym_u_DQUOTE] = ACTIONS(1890), + [anon_sym_U_DQUOTE] = ACTIONS(1890), + [anon_sym_u8_DQUOTE] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_true] = ACTIONS(1888), + [sym_false] = ACTIONS(1888), + [sym_null] = ACTIONS(1888), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1890), + [anon_sym_ATimport] = ACTIONS(1890), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1888), + [anon_sym_ATcompatibility_alias] = ACTIONS(1890), + [anon_sym_ATprotocol] = ACTIONS(1890), + [anon_sym_ATclass] = ACTIONS(1890), + [anon_sym_ATinterface] = ACTIONS(1890), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1888), + [sym_method_attribute_specifier] = ACTIONS(1888), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1888), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE] = ACTIONS(1888), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_API_AVAILABLE] = ACTIONS(1888), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_API_DEPRECATED] = ACTIONS(1888), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1888), + [anon_sym___deprecated_msg] = ACTIONS(1888), + [anon_sym___deprecated_enum_msg] = ACTIONS(1888), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1888), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1888), + [anon_sym_ATimplementation] = ACTIONS(1890), + [anon_sym_NS_ENUM] = ACTIONS(1888), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1888), + [anon_sym_NS_OPTIONS] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym___typeof] = ACTIONS(1888), + [anon_sym___typeof__] = ACTIONS(1888), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_nil] = ACTIONS(1888), + [sym_id] = ACTIONS(1888), + [sym_instancetype] = ACTIONS(1888), + [sym_Class] = ACTIONS(1888), + [sym_SEL] = ACTIONS(1888), + [sym_IMP] = ACTIONS(1888), + [sym_BOOL] = ACTIONS(1888), + [sym_auto] = ACTIONS(1888), + [anon_sym_ATautoreleasepool] = ACTIONS(1890), + [anon_sym_ATsynchronized] = ACTIONS(1890), + [anon_sym_ATtry] = ACTIONS(1890), + [anon_sym_ATthrow] = ACTIONS(1890), + [anon_sym_ATselector] = ACTIONS(1890), + [anon_sym_ATencode] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [sym_YES] = ACTIONS(1888), + [sym_NO] = ACTIONS(1888), + [anon_sym___builtin_available] = ACTIONS(1888), + [anon_sym_ATavailable] = ACTIONS(1890), + [anon_sym_va_arg] = ACTIONS(1888), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1198] = { + [ts_builtin_sym_end] = ACTIONS(1742), + [sym_identifier] = ACTIONS(1740), + [aux_sym_preproc_include_token1] = ACTIONS(1742), + [aux_sym_preproc_def_token1] = ACTIONS(1742), + [aux_sym_preproc_if_token1] = ACTIONS(1740), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1740), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1740), + [anon_sym_LPAREN2] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_CARET] = ACTIONS(1742), + [anon_sym_AMP] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_typedef] = ACTIONS(1740), + [anon_sym_extern] = ACTIONS(1740), + [anon_sym___attribute] = ACTIONS(1740), + [anon_sym___attribute__] = ACTIONS(1740), + [anon_sym___declspec] = ACTIONS(1740), + [anon_sym___cdecl] = ACTIONS(1740), + [anon_sym___clrcall] = ACTIONS(1740), + [anon_sym___stdcall] = ACTIONS(1740), + [anon_sym___fastcall] = ACTIONS(1740), + [anon_sym___thiscall] = ACTIONS(1740), + [anon_sym___vectorcall] = ACTIONS(1740), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_static] = ACTIONS(1740), + [anon_sym_auto] = ACTIONS(1740), + [anon_sym_register] = ACTIONS(1740), + [anon_sym_inline] = ACTIONS(1740), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1740), + [anon_sym_const] = ACTIONS(1740), + [anon_sym_volatile] = ACTIONS(1740), + [anon_sym_restrict] = ACTIONS(1740), + [anon_sym__Atomic] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1740), + [anon_sym_out] = ACTIONS(1740), + [anon_sym_inout] = ACTIONS(1740), + [anon_sym_bycopy] = ACTIONS(1740), + [anon_sym_byref] = ACTIONS(1740), + [anon_sym_oneway] = ACTIONS(1740), + [anon_sym__Nullable] = ACTIONS(1740), + [anon_sym__Nonnull] = ACTIONS(1740), + [anon_sym__Nullable_result] = ACTIONS(1740), + [anon_sym__Null_unspecified] = ACTIONS(1740), + [anon_sym___autoreleasing] = ACTIONS(1740), + [anon_sym___nullable] = ACTIONS(1740), + [anon_sym___nonnull] = ACTIONS(1740), + [anon_sym___strong] = ACTIONS(1740), + [anon_sym___weak] = ACTIONS(1740), + [anon_sym___bridge] = ACTIONS(1740), + [anon_sym___bridge_transfer] = ACTIONS(1740), + [anon_sym___bridge_retained] = ACTIONS(1740), + [anon_sym___unsafe_unretained] = ACTIONS(1740), + [anon_sym___block] = ACTIONS(1740), + [anon_sym___kindof] = ACTIONS(1740), + [anon_sym___unused] = ACTIONS(1740), + [anon_sym__Complex] = ACTIONS(1740), + [anon_sym___complex] = ACTIONS(1740), + [anon_sym_IBOutlet] = ACTIONS(1740), + [anon_sym_IBInspectable] = ACTIONS(1740), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1740), + [anon_sym_signed] = ACTIONS(1740), + [anon_sym_unsigned] = ACTIONS(1740), + [anon_sym_long] = ACTIONS(1740), + [anon_sym_short] = ACTIONS(1740), + [sym_primitive_type] = ACTIONS(1740), + [anon_sym_enum] = ACTIONS(1740), + [anon_sym_struct] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_if] = ACTIONS(1740), + [anon_sym_switch] = ACTIONS(1740), + [anon_sym_case] = ACTIONS(1740), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_while] = ACTIONS(1740), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1740), + [anon_sym_return] = ACTIONS(1740), + [anon_sym_break] = ACTIONS(1740), + [anon_sym_continue] = ACTIONS(1740), + [anon_sym_goto] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_sizeof] = ACTIONS(1740), + [sym_number_literal] = ACTIONS(1742), + [anon_sym_L_SQUOTE] = ACTIONS(1742), + [anon_sym_u_SQUOTE] = ACTIONS(1742), + [anon_sym_U_SQUOTE] = ACTIONS(1742), + [anon_sym_u8_SQUOTE] = ACTIONS(1742), + [anon_sym_SQUOTE] = ACTIONS(1742), + [anon_sym_L_DQUOTE] = ACTIONS(1742), + [anon_sym_u_DQUOTE] = ACTIONS(1742), + [anon_sym_U_DQUOTE] = ACTIONS(1742), + [anon_sym_u8_DQUOTE] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(1742), + [sym_true] = ACTIONS(1740), + [sym_false] = ACTIONS(1740), + [sym_null] = ACTIONS(1740), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1742), + [anon_sym_ATimport] = ACTIONS(1742), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1740), + [anon_sym_ATcompatibility_alias] = ACTIONS(1742), + [anon_sym_ATprotocol] = ACTIONS(1742), + [anon_sym_ATclass] = ACTIONS(1742), + [anon_sym_ATinterface] = ACTIONS(1742), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1740), + [sym_method_attribute_specifier] = ACTIONS(1740), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1740), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1740), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1740), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1740), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1740), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1740), + [anon_sym_NS_AVAILABLE] = ACTIONS(1740), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1740), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1740), + [anon_sym_API_AVAILABLE] = ACTIONS(1740), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1740), + [anon_sym_API_DEPRECATED] = ACTIONS(1740), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1740), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1740), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1740), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1740), + [anon_sym___deprecated_msg] = ACTIONS(1740), + [anon_sym___deprecated_enum_msg] = ACTIONS(1740), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1740), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1740), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1740), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1740), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1740), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1740), + [anon_sym_ATimplementation] = ACTIONS(1742), + [anon_sym_NS_ENUM] = ACTIONS(1740), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1740), + [anon_sym_NS_OPTIONS] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(1740), + [anon_sym___typeof] = ACTIONS(1740), + [anon_sym___typeof__] = ACTIONS(1740), + [sym_self] = ACTIONS(1740), + [sym_super] = ACTIONS(1740), + [sym_nil] = ACTIONS(1740), + [sym_id] = ACTIONS(1740), + [sym_instancetype] = ACTIONS(1740), + [sym_Class] = ACTIONS(1740), + [sym_SEL] = ACTIONS(1740), + [sym_IMP] = ACTIONS(1740), + [sym_BOOL] = ACTIONS(1740), + [sym_auto] = ACTIONS(1740), + [anon_sym_ATautoreleasepool] = ACTIONS(1742), + [anon_sym_ATsynchronized] = ACTIONS(1742), + [anon_sym_ATtry] = ACTIONS(1742), + [anon_sym_ATthrow] = ACTIONS(1742), + [anon_sym_ATselector] = ACTIONS(1742), + [anon_sym_ATencode] = ACTIONS(1742), + [anon_sym_AT] = ACTIONS(1740), + [sym_YES] = ACTIONS(1740), + [sym_NO] = ACTIONS(1740), + [anon_sym___builtin_available] = ACTIONS(1740), + [anon_sym_ATavailable] = ACTIONS(1742), + [anon_sym_va_arg] = ACTIONS(1740), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1199] = { + [ts_builtin_sym_end] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1696), + [aux_sym_preproc_include_token1] = ACTIONS(1698), + [aux_sym_preproc_def_token1] = ACTIONS(1698), + [aux_sym_preproc_if_token1] = ACTIONS(1696), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1696), + [anon_sym_LPAREN2] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1698), + [anon_sym_TILDE] = ACTIONS(1698), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1698), + [anon_sym_CARET] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_typedef] = ACTIONS(1696), + [anon_sym_extern] = ACTIONS(1696), + [anon_sym___attribute] = ACTIONS(1696), + [anon_sym___attribute__] = ACTIONS(1696), + [anon_sym___declspec] = ACTIONS(1696), + [anon_sym___cdecl] = ACTIONS(1696), + [anon_sym___clrcall] = ACTIONS(1696), + [anon_sym___stdcall] = ACTIONS(1696), + [anon_sym___fastcall] = ACTIONS(1696), + [anon_sym___thiscall] = ACTIONS(1696), + [anon_sym___vectorcall] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_RBRACE] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_static] = ACTIONS(1696), + [anon_sym_auto] = ACTIONS(1696), + [anon_sym_register] = ACTIONS(1696), + [anon_sym_inline] = ACTIONS(1696), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1696), + [anon_sym_volatile] = ACTIONS(1696), + [anon_sym_restrict] = ACTIONS(1696), + [anon_sym__Atomic] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1696), + [anon_sym_out] = ACTIONS(1696), + [anon_sym_inout] = ACTIONS(1696), + [anon_sym_bycopy] = ACTIONS(1696), + [anon_sym_byref] = ACTIONS(1696), + [anon_sym_oneway] = ACTIONS(1696), + [anon_sym__Nullable] = ACTIONS(1696), + [anon_sym__Nonnull] = ACTIONS(1696), + [anon_sym__Nullable_result] = ACTIONS(1696), + [anon_sym__Null_unspecified] = ACTIONS(1696), + [anon_sym___autoreleasing] = ACTIONS(1696), + [anon_sym___nullable] = ACTIONS(1696), + [anon_sym___nonnull] = ACTIONS(1696), + [anon_sym___strong] = ACTIONS(1696), + [anon_sym___weak] = ACTIONS(1696), + [anon_sym___bridge] = ACTIONS(1696), + [anon_sym___bridge_transfer] = ACTIONS(1696), + [anon_sym___bridge_retained] = ACTIONS(1696), + [anon_sym___unsafe_unretained] = ACTIONS(1696), + [anon_sym___block] = ACTIONS(1696), + [anon_sym___kindof] = ACTIONS(1696), + [anon_sym___unused] = ACTIONS(1696), + [anon_sym__Complex] = ACTIONS(1696), + [anon_sym___complex] = ACTIONS(1696), + [anon_sym_IBOutlet] = ACTIONS(1696), + [anon_sym_IBInspectable] = ACTIONS(1696), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1696), + [anon_sym_signed] = ACTIONS(1696), + [anon_sym_unsigned] = ACTIONS(1696), + [anon_sym_long] = ACTIONS(1696), + [anon_sym_short] = ACTIONS(1696), + [sym_primitive_type] = ACTIONS(1696), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1696), + [anon_sym_switch] = ACTIONS(1696), + [anon_sym_case] = ACTIONS(1696), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1696), + [anon_sym_do] = ACTIONS(1696), + [anon_sym_for] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1696), + [anon_sym_break] = ACTIONS(1696), + [anon_sym_continue] = ACTIONS(1696), + [anon_sym_goto] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1698), + [anon_sym_PLUS_PLUS] = ACTIONS(1698), + [anon_sym_sizeof] = ACTIONS(1696), + [sym_number_literal] = ACTIONS(1698), + [anon_sym_L_SQUOTE] = ACTIONS(1698), + [anon_sym_u_SQUOTE] = ACTIONS(1698), + [anon_sym_U_SQUOTE] = ACTIONS(1698), + [anon_sym_u8_SQUOTE] = ACTIONS(1698), + [anon_sym_SQUOTE] = ACTIONS(1698), + [anon_sym_L_DQUOTE] = ACTIONS(1698), + [anon_sym_u_DQUOTE] = ACTIONS(1698), + [anon_sym_U_DQUOTE] = ACTIONS(1698), + [anon_sym_u8_DQUOTE] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [sym_null] = ACTIONS(1696), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1698), + [anon_sym_ATimport] = ACTIONS(1698), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1696), + [anon_sym_ATcompatibility_alias] = ACTIONS(1698), + [anon_sym_ATprotocol] = ACTIONS(1698), + [anon_sym_ATclass] = ACTIONS(1698), + [anon_sym_ATinterface] = ACTIONS(1698), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1696), + [sym_method_attribute_specifier] = ACTIONS(1696), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1696), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1696), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1696), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1696), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1696), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1696), + [anon_sym_NS_AVAILABLE] = ACTIONS(1696), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1696), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1696), + [anon_sym_API_AVAILABLE] = ACTIONS(1696), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1696), + [anon_sym_API_DEPRECATED] = ACTIONS(1696), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1696), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1696), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1696), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1696), + [anon_sym___deprecated_msg] = ACTIONS(1696), + [anon_sym___deprecated_enum_msg] = ACTIONS(1696), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1696), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1696), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1696), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1696), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1696), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1696), + [anon_sym_ATimplementation] = ACTIONS(1698), + [anon_sym_NS_ENUM] = ACTIONS(1696), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1696), + [anon_sym_NS_OPTIONS] = ACTIONS(1696), + [anon_sym_typeof] = ACTIONS(1696), + [anon_sym___typeof] = ACTIONS(1696), + [anon_sym___typeof__] = ACTIONS(1696), + [sym_self] = ACTIONS(1696), + [sym_super] = ACTIONS(1696), + [sym_nil] = ACTIONS(1696), + [sym_id] = ACTIONS(1696), + [sym_instancetype] = ACTIONS(1696), + [sym_Class] = ACTIONS(1696), + [sym_SEL] = ACTIONS(1696), + [sym_IMP] = ACTIONS(1696), + [sym_BOOL] = ACTIONS(1696), + [sym_auto] = ACTIONS(1696), + [anon_sym_ATautoreleasepool] = ACTIONS(1698), + [anon_sym_ATsynchronized] = ACTIONS(1698), + [anon_sym_ATtry] = ACTIONS(1698), + [anon_sym_ATthrow] = ACTIONS(1698), + [anon_sym_ATselector] = ACTIONS(1698), + [anon_sym_ATencode] = ACTIONS(1698), + [anon_sym_AT] = ACTIONS(1696), + [sym_YES] = ACTIONS(1696), + [sym_NO] = ACTIONS(1696), + [anon_sym___builtin_available] = ACTIONS(1696), + [anon_sym_ATavailable] = ACTIONS(1698), + [anon_sym_va_arg] = ACTIONS(1696), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1200] = { + [ts_builtin_sym_end] = ACTIONS(1690), + [sym_identifier] = ACTIONS(1688), + [aux_sym_preproc_include_token1] = ACTIONS(1690), + [aux_sym_preproc_def_token1] = ACTIONS(1690), + [aux_sym_preproc_if_token1] = ACTIONS(1688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1688), + [anon_sym_LPAREN2] = ACTIONS(1690), + [anon_sym_BANG] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1688), + [anon_sym_STAR] = ACTIONS(1690), + [anon_sym_CARET] = ACTIONS(1690), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1690), + [anon_sym_typedef] = ACTIONS(1688), + [anon_sym_extern] = ACTIONS(1688), + [anon_sym___attribute] = ACTIONS(1688), + [anon_sym___attribute__] = ACTIONS(1688), + [anon_sym___declspec] = ACTIONS(1688), + [anon_sym___cdecl] = ACTIONS(1688), + [anon_sym___clrcall] = ACTIONS(1688), + [anon_sym___stdcall] = ACTIONS(1688), + [anon_sym___fastcall] = ACTIONS(1688), + [anon_sym___thiscall] = ACTIONS(1688), + [anon_sym___vectorcall] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_static] = ACTIONS(1688), + [anon_sym_auto] = ACTIONS(1688), + [anon_sym_register] = ACTIONS(1688), + [anon_sym_inline] = ACTIONS(1688), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1688), + [anon_sym_const] = ACTIONS(1688), + [anon_sym_volatile] = ACTIONS(1688), + [anon_sym_restrict] = ACTIONS(1688), + [anon_sym__Atomic] = ACTIONS(1688), + [anon_sym_in] = ACTIONS(1688), + [anon_sym_out] = ACTIONS(1688), + [anon_sym_inout] = ACTIONS(1688), + [anon_sym_bycopy] = ACTIONS(1688), + [anon_sym_byref] = ACTIONS(1688), + [anon_sym_oneway] = ACTIONS(1688), + [anon_sym__Nullable] = ACTIONS(1688), + [anon_sym__Nonnull] = ACTIONS(1688), + [anon_sym__Nullable_result] = ACTIONS(1688), + [anon_sym__Null_unspecified] = ACTIONS(1688), + [anon_sym___autoreleasing] = ACTIONS(1688), + [anon_sym___nullable] = ACTIONS(1688), + [anon_sym___nonnull] = ACTIONS(1688), + [anon_sym___strong] = ACTIONS(1688), + [anon_sym___weak] = ACTIONS(1688), + [anon_sym___bridge] = ACTIONS(1688), + [anon_sym___bridge_transfer] = ACTIONS(1688), + [anon_sym___bridge_retained] = ACTIONS(1688), + [anon_sym___unsafe_unretained] = ACTIONS(1688), + [anon_sym___block] = ACTIONS(1688), + [anon_sym___kindof] = ACTIONS(1688), + [anon_sym___unused] = ACTIONS(1688), + [anon_sym__Complex] = ACTIONS(1688), + [anon_sym___complex] = ACTIONS(1688), + [anon_sym_IBOutlet] = ACTIONS(1688), + [anon_sym_IBInspectable] = ACTIONS(1688), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1688), + [anon_sym_signed] = ACTIONS(1688), + [anon_sym_unsigned] = ACTIONS(1688), + [anon_sym_long] = ACTIONS(1688), + [anon_sym_short] = ACTIONS(1688), + [sym_primitive_type] = ACTIONS(1688), + [anon_sym_enum] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(1688), + [anon_sym_union] = ACTIONS(1688), + [anon_sym_if] = ACTIONS(1688), + [anon_sym_switch] = ACTIONS(1688), + [anon_sym_case] = ACTIONS(1688), + [anon_sym_default] = ACTIONS(1688), + [anon_sym_while] = ACTIONS(1688), + [anon_sym_do] = ACTIONS(1688), + [anon_sym_for] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1688), + [anon_sym_break] = ACTIONS(1688), + [anon_sym_continue] = ACTIONS(1688), + [anon_sym_goto] = ACTIONS(1688), + [anon_sym_DASH_DASH] = ACTIONS(1690), + [anon_sym_PLUS_PLUS] = ACTIONS(1690), + [anon_sym_sizeof] = ACTIONS(1688), + [sym_number_literal] = ACTIONS(1690), + [anon_sym_L_SQUOTE] = ACTIONS(1690), + [anon_sym_u_SQUOTE] = ACTIONS(1690), + [anon_sym_U_SQUOTE] = ACTIONS(1690), + [anon_sym_u8_SQUOTE] = ACTIONS(1690), + [anon_sym_SQUOTE] = ACTIONS(1690), + [anon_sym_L_DQUOTE] = ACTIONS(1690), + [anon_sym_u_DQUOTE] = ACTIONS(1690), + [anon_sym_U_DQUOTE] = ACTIONS(1690), + [anon_sym_u8_DQUOTE] = ACTIONS(1690), + [anon_sym_DQUOTE] = ACTIONS(1690), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1690), + [anon_sym_ATimport] = ACTIONS(1690), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1688), + [anon_sym_ATcompatibility_alias] = ACTIONS(1690), + [anon_sym_ATprotocol] = ACTIONS(1690), + [anon_sym_ATclass] = ACTIONS(1690), + [anon_sym_ATinterface] = ACTIONS(1690), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1688), + [sym_method_attribute_specifier] = ACTIONS(1688), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1688), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1688), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1688), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1688), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1688), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1688), + [anon_sym_NS_AVAILABLE] = ACTIONS(1688), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1688), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1688), + [anon_sym_API_AVAILABLE] = ACTIONS(1688), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1688), + [anon_sym_API_DEPRECATED] = ACTIONS(1688), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1688), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1688), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1688), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1688), + [anon_sym___deprecated_msg] = ACTIONS(1688), + [anon_sym___deprecated_enum_msg] = ACTIONS(1688), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1688), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1688), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1688), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1688), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1688), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1688), + [anon_sym_ATimplementation] = ACTIONS(1690), + [anon_sym_NS_ENUM] = ACTIONS(1688), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1688), + [anon_sym_NS_OPTIONS] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1688), + [anon_sym___typeof] = ACTIONS(1688), + [anon_sym___typeof__] = ACTIONS(1688), + [sym_self] = ACTIONS(1688), + [sym_super] = ACTIONS(1688), + [sym_nil] = ACTIONS(1688), + [sym_id] = ACTIONS(1688), + [sym_instancetype] = ACTIONS(1688), + [sym_Class] = ACTIONS(1688), + [sym_SEL] = ACTIONS(1688), + [sym_IMP] = ACTIONS(1688), + [sym_BOOL] = ACTIONS(1688), + [sym_auto] = ACTIONS(1688), + [anon_sym_ATautoreleasepool] = ACTIONS(1690), + [anon_sym_ATsynchronized] = ACTIONS(1690), + [anon_sym_ATtry] = ACTIONS(1690), + [anon_sym_ATthrow] = ACTIONS(1690), + [anon_sym_ATselector] = ACTIONS(1690), + [anon_sym_ATencode] = ACTIONS(1690), + [anon_sym_AT] = ACTIONS(1688), + [sym_YES] = ACTIONS(1688), + [sym_NO] = ACTIONS(1688), + [anon_sym___builtin_available] = ACTIONS(1688), + [anon_sym_ATavailable] = ACTIONS(1690), + [anon_sym_va_arg] = ACTIONS(1688), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1201] = { + [ts_builtin_sym_end] = ACTIONS(1746), + [sym_identifier] = ACTIONS(1744), + [aux_sym_preproc_include_token1] = ACTIONS(1746), + [aux_sym_preproc_def_token1] = ACTIONS(1746), + [aux_sym_preproc_if_token1] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1746), + [anon_sym_TILDE] = ACTIONS(1746), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [anon_sym_CARET] = ACTIONS(1746), + [anon_sym_AMP] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_typedef] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1744), + [anon_sym___attribute] = ACTIONS(1744), + [anon_sym___attribute__] = ACTIONS(1744), + [anon_sym___declspec] = ACTIONS(1744), + [anon_sym___cdecl] = ACTIONS(1744), + [anon_sym___clrcall] = ACTIONS(1744), + [anon_sym___stdcall] = ACTIONS(1744), + [anon_sym___fastcall] = ACTIONS(1744), + [anon_sym___thiscall] = ACTIONS(1744), + [anon_sym___vectorcall] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(1744), + [anon_sym_auto] = ACTIONS(1744), + [anon_sym_register] = ACTIONS(1744), + [anon_sym_inline] = ACTIONS(1744), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym__Atomic] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_out] = ACTIONS(1744), + [anon_sym_inout] = ACTIONS(1744), + [anon_sym_bycopy] = ACTIONS(1744), + [anon_sym_byref] = ACTIONS(1744), + [anon_sym_oneway] = ACTIONS(1744), + [anon_sym__Nullable] = ACTIONS(1744), + [anon_sym__Nonnull] = ACTIONS(1744), + [anon_sym__Nullable_result] = ACTIONS(1744), + [anon_sym__Null_unspecified] = ACTIONS(1744), + [anon_sym___autoreleasing] = ACTIONS(1744), + [anon_sym___nullable] = ACTIONS(1744), + [anon_sym___nonnull] = ACTIONS(1744), + [anon_sym___strong] = ACTIONS(1744), + [anon_sym___weak] = ACTIONS(1744), + [anon_sym___bridge] = ACTIONS(1744), + [anon_sym___bridge_transfer] = ACTIONS(1744), + [anon_sym___bridge_retained] = ACTIONS(1744), + [anon_sym___unsafe_unretained] = ACTIONS(1744), + [anon_sym___block] = ACTIONS(1744), + [anon_sym___kindof] = ACTIONS(1744), + [anon_sym___unused] = ACTIONS(1744), + [anon_sym__Complex] = ACTIONS(1744), + [anon_sym___complex] = ACTIONS(1744), + [anon_sym_IBOutlet] = ACTIONS(1744), + [anon_sym_IBInspectable] = ACTIONS(1744), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1744), + [anon_sym_signed] = ACTIONS(1744), + [anon_sym_unsigned] = ACTIONS(1744), + [anon_sym_long] = ACTIONS(1744), + [anon_sym_short] = ACTIONS(1744), + [sym_primitive_type] = ACTIONS(1744), + [anon_sym_enum] = ACTIONS(1744), + [anon_sym_struct] = ACTIONS(1744), + [anon_sym_union] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_case] = ACTIONS(1744), + [anon_sym_default] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_do] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_goto] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_sizeof] = ACTIONS(1744), + [sym_number_literal] = ACTIONS(1746), + [anon_sym_L_SQUOTE] = ACTIONS(1746), + [anon_sym_u_SQUOTE] = ACTIONS(1746), + [anon_sym_U_SQUOTE] = ACTIONS(1746), + [anon_sym_u8_SQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1746), + [anon_sym_L_DQUOTE] = ACTIONS(1746), + [anon_sym_u_DQUOTE] = ACTIONS(1746), + [anon_sym_U_DQUOTE] = ACTIONS(1746), + [anon_sym_u8_DQUOTE] = ACTIONS(1746), + [anon_sym_DQUOTE] = ACTIONS(1746), + [sym_true] = ACTIONS(1744), + [sym_false] = ACTIONS(1744), + [sym_null] = ACTIONS(1744), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1746), + [anon_sym_ATimport] = ACTIONS(1746), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1744), + [anon_sym_ATcompatibility_alias] = ACTIONS(1746), + [anon_sym_ATprotocol] = ACTIONS(1746), + [anon_sym_ATclass] = ACTIONS(1746), + [anon_sym_ATinterface] = ACTIONS(1746), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1744), + [sym_method_attribute_specifier] = ACTIONS(1744), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1744), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1744), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1744), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1744), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1744), + [anon_sym_NS_AVAILABLE] = ACTIONS(1744), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1744), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_API_AVAILABLE] = ACTIONS(1744), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_API_DEPRECATED] = ACTIONS(1744), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1744), + [anon_sym___deprecated_msg] = ACTIONS(1744), + [anon_sym___deprecated_enum_msg] = ACTIONS(1744), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1744), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1744), + [anon_sym_ATimplementation] = ACTIONS(1746), + [anon_sym_NS_ENUM] = ACTIONS(1744), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1744), + [anon_sym_NS_OPTIONS] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(1744), + [anon_sym___typeof] = ACTIONS(1744), + [anon_sym___typeof__] = ACTIONS(1744), + [sym_self] = ACTIONS(1744), + [sym_super] = ACTIONS(1744), + [sym_nil] = ACTIONS(1744), + [sym_id] = ACTIONS(1744), + [sym_instancetype] = ACTIONS(1744), + [sym_Class] = ACTIONS(1744), + [sym_SEL] = ACTIONS(1744), + [sym_IMP] = ACTIONS(1744), + [sym_BOOL] = ACTIONS(1744), + [sym_auto] = ACTIONS(1744), + [anon_sym_ATautoreleasepool] = ACTIONS(1746), + [anon_sym_ATsynchronized] = ACTIONS(1746), + [anon_sym_ATtry] = ACTIONS(1746), + [anon_sym_ATthrow] = ACTIONS(1746), + [anon_sym_ATselector] = ACTIONS(1746), + [anon_sym_ATencode] = ACTIONS(1746), + [anon_sym_AT] = ACTIONS(1744), + [sym_YES] = ACTIONS(1744), + [sym_NO] = ACTIONS(1744), + [anon_sym___builtin_available] = ACTIONS(1744), + [anon_sym_ATavailable] = ACTIONS(1746), + [anon_sym_va_arg] = ACTIONS(1744), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1202] = { + [ts_builtin_sym_end] = ACTIONS(1750), + [sym_identifier] = ACTIONS(1748), + [aux_sym_preproc_include_token1] = ACTIONS(1750), + [aux_sym_preproc_def_token1] = ACTIONS(1750), + [aux_sym_preproc_if_token1] = ACTIONS(1748), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1748), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1748), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1750), + [anon_sym_CARET] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_typedef] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym___attribute] = ACTIONS(1748), + [anon_sym___attribute__] = ACTIONS(1748), + [anon_sym___declspec] = ACTIONS(1748), + [anon_sym___cdecl] = ACTIONS(1748), + [anon_sym___clrcall] = ACTIONS(1748), + [anon_sym___stdcall] = ACTIONS(1748), + [anon_sym___fastcall] = ACTIONS(1748), + [anon_sym___thiscall] = ACTIONS(1748), + [anon_sym___vectorcall] = ACTIONS(1748), + [anon_sym_LBRACE] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_auto] = ACTIONS(1748), + [anon_sym_register] = ACTIONS(1748), + [anon_sym_inline] = ACTIONS(1748), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_volatile] = ACTIONS(1748), + [anon_sym_restrict] = ACTIONS(1748), + [anon_sym__Atomic] = ACTIONS(1748), + [anon_sym_in] = ACTIONS(1748), + [anon_sym_out] = ACTIONS(1748), + [anon_sym_inout] = ACTIONS(1748), + [anon_sym_bycopy] = ACTIONS(1748), + [anon_sym_byref] = ACTIONS(1748), + [anon_sym_oneway] = ACTIONS(1748), + [anon_sym__Nullable] = ACTIONS(1748), + [anon_sym__Nonnull] = ACTIONS(1748), + [anon_sym__Nullable_result] = ACTIONS(1748), + [anon_sym__Null_unspecified] = ACTIONS(1748), + [anon_sym___autoreleasing] = ACTIONS(1748), + [anon_sym___nullable] = ACTIONS(1748), + [anon_sym___nonnull] = ACTIONS(1748), + [anon_sym___strong] = ACTIONS(1748), + [anon_sym___weak] = ACTIONS(1748), + [anon_sym___bridge] = ACTIONS(1748), + [anon_sym___bridge_transfer] = ACTIONS(1748), + [anon_sym___bridge_retained] = ACTIONS(1748), + [anon_sym___unsafe_unretained] = ACTIONS(1748), + [anon_sym___block] = ACTIONS(1748), + [anon_sym___kindof] = ACTIONS(1748), + [anon_sym___unused] = ACTIONS(1748), + [anon_sym__Complex] = ACTIONS(1748), + [anon_sym___complex] = ACTIONS(1748), + [anon_sym_IBOutlet] = ACTIONS(1748), + [anon_sym_IBInspectable] = ACTIONS(1748), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1748), + [anon_sym_signed] = ACTIONS(1748), + [anon_sym_unsigned] = ACTIONS(1748), + [anon_sym_long] = ACTIONS(1748), + [anon_sym_short] = ACTIONS(1748), + [sym_primitive_type] = ACTIONS(1748), + [anon_sym_enum] = ACTIONS(1748), + [anon_sym_struct] = ACTIONS(1748), + [anon_sym_union] = ACTIONS(1748), + [anon_sym_if] = ACTIONS(1748), + [anon_sym_switch] = ACTIONS(1748), + [anon_sym_case] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1748), + [anon_sym_while] = ACTIONS(1748), + [anon_sym_do] = ACTIONS(1748), + [anon_sym_for] = ACTIONS(1748), + [anon_sym_return] = ACTIONS(1748), + [anon_sym_break] = ACTIONS(1748), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1748), + [anon_sym_DASH_DASH] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1750), + [anon_sym_sizeof] = ACTIONS(1748), + [sym_number_literal] = ACTIONS(1750), + [anon_sym_L_SQUOTE] = ACTIONS(1750), + [anon_sym_u_SQUOTE] = ACTIONS(1750), + [anon_sym_U_SQUOTE] = ACTIONS(1750), + [anon_sym_u8_SQUOTE] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1750), + [anon_sym_L_DQUOTE] = ACTIONS(1750), + [anon_sym_u_DQUOTE] = ACTIONS(1750), + [anon_sym_U_DQUOTE] = ACTIONS(1750), + [anon_sym_u8_DQUOTE] = ACTIONS(1750), + [anon_sym_DQUOTE] = ACTIONS(1750), + [sym_true] = ACTIONS(1748), + [sym_false] = ACTIONS(1748), + [sym_null] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1750), + [anon_sym_ATimport] = ACTIONS(1750), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1748), + [anon_sym_ATcompatibility_alias] = ACTIONS(1750), + [anon_sym_ATprotocol] = ACTIONS(1750), + [anon_sym_ATclass] = ACTIONS(1750), + [anon_sym_ATinterface] = ACTIONS(1750), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1748), + [sym_method_attribute_specifier] = ACTIONS(1748), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1748), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1748), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1748), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1748), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1748), + [anon_sym_NS_AVAILABLE] = ACTIONS(1748), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1748), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_API_AVAILABLE] = ACTIONS(1748), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_API_DEPRECATED] = ACTIONS(1748), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1748), + [anon_sym___deprecated_msg] = ACTIONS(1748), + [anon_sym___deprecated_enum_msg] = ACTIONS(1748), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1748), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1748), + [anon_sym_ATimplementation] = ACTIONS(1750), + [anon_sym_NS_ENUM] = ACTIONS(1748), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1748), + [anon_sym_NS_OPTIONS] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(1748), + [anon_sym___typeof] = ACTIONS(1748), + [anon_sym___typeof__] = ACTIONS(1748), + [sym_self] = ACTIONS(1748), + [sym_super] = ACTIONS(1748), + [sym_nil] = ACTIONS(1748), + [sym_id] = ACTIONS(1748), + [sym_instancetype] = ACTIONS(1748), + [sym_Class] = ACTIONS(1748), + [sym_SEL] = ACTIONS(1748), + [sym_IMP] = ACTIONS(1748), + [sym_BOOL] = ACTIONS(1748), + [sym_auto] = ACTIONS(1748), + [anon_sym_ATautoreleasepool] = ACTIONS(1750), + [anon_sym_ATsynchronized] = ACTIONS(1750), + [anon_sym_ATtry] = ACTIONS(1750), + [anon_sym_ATthrow] = ACTIONS(1750), + [anon_sym_ATselector] = ACTIONS(1750), + [anon_sym_ATencode] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(1748), + [sym_YES] = ACTIONS(1748), + [sym_NO] = ACTIONS(1748), + [anon_sym___builtin_available] = ACTIONS(1748), + [anon_sym_ATavailable] = ACTIONS(1750), + [anon_sym_va_arg] = ACTIONS(1748), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1203] = { + [ts_builtin_sym_end] = ACTIONS(1702), + [sym_identifier] = ACTIONS(1700), + [aux_sym_preproc_include_token1] = ACTIONS(1702), + [aux_sym_preproc_def_token1] = ACTIONS(1702), + [aux_sym_preproc_if_token1] = ACTIONS(1700), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1700), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1700), + [anon_sym_LPAREN2] = ACTIONS(1702), + [anon_sym_BANG] = ACTIONS(1702), + [anon_sym_TILDE] = ACTIONS(1702), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_STAR] = ACTIONS(1702), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_typedef] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym___attribute] = ACTIONS(1700), + [anon_sym___attribute__] = ACTIONS(1700), + [anon_sym___declspec] = ACTIONS(1700), + [anon_sym___cdecl] = ACTIONS(1700), + [anon_sym___clrcall] = ACTIONS(1700), + [anon_sym___stdcall] = ACTIONS(1700), + [anon_sym___fastcall] = ACTIONS(1700), + [anon_sym___thiscall] = ACTIONS(1700), + [anon_sym___vectorcall] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_inline] = ACTIONS(1700), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym__Atomic] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1700), + [anon_sym_out] = ACTIONS(1700), + [anon_sym_inout] = ACTIONS(1700), + [anon_sym_bycopy] = ACTIONS(1700), + [anon_sym_byref] = ACTIONS(1700), + [anon_sym_oneway] = ACTIONS(1700), + [anon_sym__Nullable] = ACTIONS(1700), + [anon_sym__Nonnull] = ACTIONS(1700), + [anon_sym__Nullable_result] = ACTIONS(1700), + [anon_sym__Null_unspecified] = ACTIONS(1700), + [anon_sym___autoreleasing] = ACTIONS(1700), + [anon_sym___nullable] = ACTIONS(1700), + [anon_sym___nonnull] = ACTIONS(1700), + [anon_sym___strong] = ACTIONS(1700), + [anon_sym___weak] = ACTIONS(1700), + [anon_sym___bridge] = ACTIONS(1700), + [anon_sym___bridge_transfer] = ACTIONS(1700), + [anon_sym___bridge_retained] = ACTIONS(1700), + [anon_sym___unsafe_unretained] = ACTIONS(1700), + [anon_sym___block] = ACTIONS(1700), + [anon_sym___kindof] = ACTIONS(1700), + [anon_sym___unused] = ACTIONS(1700), + [anon_sym__Complex] = ACTIONS(1700), + [anon_sym___complex] = ACTIONS(1700), + [anon_sym_IBOutlet] = ACTIONS(1700), + [anon_sym_IBInspectable] = ACTIONS(1700), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1700), + [anon_sym_signed] = ACTIONS(1700), + [anon_sym_unsigned] = ACTIONS(1700), + [anon_sym_long] = ACTIONS(1700), + [anon_sym_short] = ACTIONS(1700), + [sym_primitive_type] = ACTIONS(1700), + [anon_sym_enum] = ACTIONS(1700), + [anon_sym_struct] = ACTIONS(1700), + [anon_sym_union] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1700), + [anon_sym_case] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_goto] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_sizeof] = ACTIONS(1700), + [sym_number_literal] = ACTIONS(1702), + [anon_sym_L_SQUOTE] = ACTIONS(1702), + [anon_sym_u_SQUOTE] = ACTIONS(1702), + [anon_sym_U_SQUOTE] = ACTIONS(1702), + [anon_sym_u8_SQUOTE] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_L_DQUOTE] = ACTIONS(1702), + [anon_sym_u_DQUOTE] = ACTIONS(1702), + [anon_sym_U_DQUOTE] = ACTIONS(1702), + [anon_sym_u8_DQUOTE] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [sym_true] = ACTIONS(1700), + [sym_false] = ACTIONS(1700), + [sym_null] = ACTIONS(1700), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1702), + [anon_sym_ATimport] = ACTIONS(1702), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1700), + [anon_sym_ATcompatibility_alias] = ACTIONS(1702), + [anon_sym_ATprotocol] = ACTIONS(1702), + [anon_sym_ATclass] = ACTIONS(1702), + [anon_sym_ATinterface] = ACTIONS(1702), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1700), + [sym_method_attribute_specifier] = ACTIONS(1700), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1700), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1700), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1700), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1700), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1700), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1700), + [anon_sym_NS_AVAILABLE] = ACTIONS(1700), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1700), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1700), + [anon_sym_API_AVAILABLE] = ACTIONS(1700), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1700), + [anon_sym_API_DEPRECATED] = ACTIONS(1700), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1700), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1700), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1700), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1700), + [anon_sym___deprecated_msg] = ACTIONS(1700), + [anon_sym___deprecated_enum_msg] = ACTIONS(1700), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1700), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1700), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1700), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1700), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1700), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1700), + [anon_sym_ATimplementation] = ACTIONS(1702), + [anon_sym_NS_ENUM] = ACTIONS(1700), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1700), + [anon_sym_NS_OPTIONS] = ACTIONS(1700), + [anon_sym_typeof] = ACTIONS(1700), + [anon_sym___typeof] = ACTIONS(1700), + [anon_sym___typeof__] = ACTIONS(1700), + [sym_self] = ACTIONS(1700), + [sym_super] = ACTIONS(1700), + [sym_nil] = ACTIONS(1700), + [sym_id] = ACTIONS(1700), + [sym_instancetype] = ACTIONS(1700), + [sym_Class] = ACTIONS(1700), + [sym_SEL] = ACTIONS(1700), + [sym_IMP] = ACTIONS(1700), + [sym_BOOL] = ACTIONS(1700), + [sym_auto] = ACTIONS(1700), + [anon_sym_ATautoreleasepool] = ACTIONS(1702), + [anon_sym_ATsynchronized] = ACTIONS(1702), + [anon_sym_ATtry] = ACTIONS(1702), + [anon_sym_ATthrow] = ACTIONS(1702), + [anon_sym_ATselector] = ACTIONS(1702), + [anon_sym_ATencode] = ACTIONS(1702), + [anon_sym_AT] = ACTIONS(1700), + [sym_YES] = ACTIONS(1700), + [sym_NO] = ACTIONS(1700), + [anon_sym___builtin_available] = ACTIONS(1700), + [anon_sym_ATavailable] = ACTIONS(1702), + [anon_sym_va_arg] = ACTIONS(1700), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1204] = { + [ts_builtin_sym_end] = ACTIONS(1754), + [sym_identifier] = ACTIONS(1752), + [aux_sym_preproc_include_token1] = ACTIONS(1754), + [aux_sym_preproc_def_token1] = ACTIONS(1754), + [aux_sym_preproc_if_token1] = ACTIONS(1752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1752), + [anon_sym_LPAREN2] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_typedef] = ACTIONS(1752), + [anon_sym_extern] = ACTIONS(1752), + [anon_sym___attribute] = ACTIONS(1752), + [anon_sym___attribute__] = ACTIONS(1752), + [anon_sym___declspec] = ACTIONS(1752), + [anon_sym___cdecl] = ACTIONS(1752), + [anon_sym___clrcall] = ACTIONS(1752), + [anon_sym___stdcall] = ACTIONS(1752), + [anon_sym___fastcall] = ACTIONS(1752), + [anon_sym___thiscall] = ACTIONS(1752), + [anon_sym___vectorcall] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1752), + [anon_sym_auto] = ACTIONS(1752), + [anon_sym_register] = ACTIONS(1752), + [anon_sym_inline] = ACTIONS(1752), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1752), + [anon_sym_const] = ACTIONS(1752), + [anon_sym_volatile] = ACTIONS(1752), + [anon_sym_restrict] = ACTIONS(1752), + [anon_sym__Atomic] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_out] = ACTIONS(1752), + [anon_sym_inout] = ACTIONS(1752), + [anon_sym_bycopy] = ACTIONS(1752), + [anon_sym_byref] = ACTIONS(1752), + [anon_sym_oneway] = ACTIONS(1752), + [anon_sym__Nullable] = ACTIONS(1752), + [anon_sym__Nonnull] = ACTIONS(1752), + [anon_sym__Nullable_result] = ACTIONS(1752), + [anon_sym__Null_unspecified] = ACTIONS(1752), + [anon_sym___autoreleasing] = ACTIONS(1752), + [anon_sym___nullable] = ACTIONS(1752), + [anon_sym___nonnull] = ACTIONS(1752), + [anon_sym___strong] = ACTIONS(1752), + [anon_sym___weak] = ACTIONS(1752), + [anon_sym___bridge] = ACTIONS(1752), + [anon_sym___bridge_transfer] = ACTIONS(1752), + [anon_sym___bridge_retained] = ACTIONS(1752), + [anon_sym___unsafe_unretained] = ACTIONS(1752), + [anon_sym___block] = ACTIONS(1752), + [anon_sym___kindof] = ACTIONS(1752), + [anon_sym___unused] = ACTIONS(1752), + [anon_sym__Complex] = ACTIONS(1752), + [anon_sym___complex] = ACTIONS(1752), + [anon_sym_IBOutlet] = ACTIONS(1752), + [anon_sym_IBInspectable] = ACTIONS(1752), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1752), + [anon_sym_signed] = ACTIONS(1752), + [anon_sym_unsigned] = ACTIONS(1752), + [anon_sym_long] = ACTIONS(1752), + [anon_sym_short] = ACTIONS(1752), + [sym_primitive_type] = ACTIONS(1752), + [anon_sym_enum] = ACTIONS(1752), + [anon_sym_struct] = ACTIONS(1752), + [anon_sym_union] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_switch] = ACTIONS(1752), + [anon_sym_case] = ACTIONS(1752), + [anon_sym_default] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_do] = ACTIONS(1752), + [anon_sym_for] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_goto] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_sizeof] = ACTIONS(1752), + [sym_number_literal] = ACTIONS(1754), + [anon_sym_L_SQUOTE] = ACTIONS(1754), + [anon_sym_u_SQUOTE] = ACTIONS(1754), + [anon_sym_U_SQUOTE] = ACTIONS(1754), + [anon_sym_u8_SQUOTE] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1754), + [anon_sym_L_DQUOTE] = ACTIONS(1754), + [anon_sym_u_DQUOTE] = ACTIONS(1754), + [anon_sym_U_DQUOTE] = ACTIONS(1754), + [anon_sym_u8_DQUOTE] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [sym_true] = ACTIONS(1752), + [sym_false] = ACTIONS(1752), + [sym_null] = ACTIONS(1752), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1754), + [anon_sym_ATimport] = ACTIONS(1754), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1752), + [anon_sym_ATcompatibility_alias] = ACTIONS(1754), + [anon_sym_ATprotocol] = ACTIONS(1754), + [anon_sym_ATclass] = ACTIONS(1754), + [anon_sym_ATinterface] = ACTIONS(1754), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1752), + [sym_method_attribute_specifier] = ACTIONS(1752), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1752), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1752), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1752), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1752), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1752), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1752), + [anon_sym_NS_AVAILABLE] = ACTIONS(1752), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1752), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1752), + [anon_sym_API_AVAILABLE] = ACTIONS(1752), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1752), + [anon_sym_API_DEPRECATED] = ACTIONS(1752), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1752), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1752), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1752), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1752), + [anon_sym___deprecated_msg] = ACTIONS(1752), + [anon_sym___deprecated_enum_msg] = ACTIONS(1752), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1752), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1752), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1752), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1752), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1752), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1752), + [anon_sym_ATimplementation] = ACTIONS(1754), + [anon_sym_NS_ENUM] = ACTIONS(1752), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1752), + [anon_sym_NS_OPTIONS] = ACTIONS(1752), + [anon_sym_typeof] = ACTIONS(1752), + [anon_sym___typeof] = ACTIONS(1752), + [anon_sym___typeof__] = ACTIONS(1752), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_nil] = ACTIONS(1752), + [sym_id] = ACTIONS(1752), + [sym_instancetype] = ACTIONS(1752), + [sym_Class] = ACTIONS(1752), + [sym_SEL] = ACTIONS(1752), + [sym_IMP] = ACTIONS(1752), + [sym_BOOL] = ACTIONS(1752), + [sym_auto] = ACTIONS(1752), + [anon_sym_ATautoreleasepool] = ACTIONS(1754), + [anon_sym_ATsynchronized] = ACTIONS(1754), + [anon_sym_ATtry] = ACTIONS(1754), + [anon_sym_ATthrow] = ACTIONS(1754), + [anon_sym_ATselector] = ACTIONS(1754), + [anon_sym_ATencode] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(1752), + [sym_YES] = ACTIONS(1752), + [sym_NO] = ACTIONS(1752), + [anon_sym___builtin_available] = ACTIONS(1752), + [anon_sym_ATavailable] = ACTIONS(1754), + [anon_sym_va_arg] = ACTIONS(1752), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1205] = { + [ts_builtin_sym_end] = ACTIONS(1886), + [sym_identifier] = ACTIONS(1884), + [aux_sym_preproc_include_token1] = ACTIONS(1886), + [aux_sym_preproc_def_token1] = ACTIONS(1886), + [aux_sym_preproc_if_token1] = ACTIONS(1884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1884), + [anon_sym_LPAREN2] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_CARET] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_typedef] = ACTIONS(1884), + [anon_sym_extern] = ACTIONS(1884), + [anon_sym___attribute] = ACTIONS(1884), + [anon_sym___attribute__] = ACTIONS(1884), + [anon_sym___declspec] = ACTIONS(1884), + [anon_sym___cdecl] = ACTIONS(1884), + [anon_sym___clrcall] = ACTIONS(1884), + [anon_sym___stdcall] = ACTIONS(1884), + [anon_sym___fastcall] = ACTIONS(1884), + [anon_sym___thiscall] = ACTIONS(1884), + [anon_sym___vectorcall] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1886), + [anon_sym_static] = ACTIONS(1884), + [anon_sym_auto] = ACTIONS(1884), + [anon_sym_register] = ACTIONS(1884), + [anon_sym_inline] = ACTIONS(1884), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1884), + [anon_sym_const] = ACTIONS(1884), + [anon_sym_volatile] = ACTIONS(1884), + [anon_sym_restrict] = ACTIONS(1884), + [anon_sym__Atomic] = ACTIONS(1884), + [anon_sym_in] = ACTIONS(1884), + [anon_sym_out] = ACTIONS(1884), + [anon_sym_inout] = ACTIONS(1884), + [anon_sym_bycopy] = ACTIONS(1884), + [anon_sym_byref] = ACTIONS(1884), + [anon_sym_oneway] = ACTIONS(1884), + [anon_sym__Nullable] = ACTIONS(1884), + [anon_sym__Nonnull] = ACTIONS(1884), + [anon_sym__Nullable_result] = ACTIONS(1884), + [anon_sym__Null_unspecified] = ACTIONS(1884), + [anon_sym___autoreleasing] = ACTIONS(1884), + [anon_sym___nullable] = ACTIONS(1884), + [anon_sym___nonnull] = ACTIONS(1884), + [anon_sym___strong] = ACTIONS(1884), + [anon_sym___weak] = ACTIONS(1884), + [anon_sym___bridge] = ACTIONS(1884), + [anon_sym___bridge_transfer] = ACTIONS(1884), + [anon_sym___bridge_retained] = ACTIONS(1884), + [anon_sym___unsafe_unretained] = ACTIONS(1884), + [anon_sym___block] = ACTIONS(1884), + [anon_sym___kindof] = ACTIONS(1884), + [anon_sym___unused] = ACTIONS(1884), + [anon_sym__Complex] = ACTIONS(1884), + [anon_sym___complex] = ACTIONS(1884), + [anon_sym_IBOutlet] = ACTIONS(1884), + [anon_sym_IBInspectable] = ACTIONS(1884), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1884), + [anon_sym_signed] = ACTIONS(1884), + [anon_sym_unsigned] = ACTIONS(1884), + [anon_sym_long] = ACTIONS(1884), + [anon_sym_short] = ACTIONS(1884), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1884), + [anon_sym_struct] = ACTIONS(1884), + [anon_sym_union] = ACTIONS(1884), + [anon_sym_if] = ACTIONS(1884), + [anon_sym_switch] = ACTIONS(1884), + [anon_sym_case] = ACTIONS(1884), + [anon_sym_default] = ACTIONS(1884), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(1884), + [anon_sym_for] = ACTIONS(1884), + [anon_sym_return] = ACTIONS(1884), + [anon_sym_break] = ACTIONS(1884), + [anon_sym_continue] = ACTIONS(1884), + [anon_sym_goto] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1886), + [anon_sym_PLUS_PLUS] = ACTIONS(1886), + [anon_sym_sizeof] = ACTIONS(1884), + [sym_number_literal] = ACTIONS(1886), + [anon_sym_L_SQUOTE] = ACTIONS(1886), + [anon_sym_u_SQUOTE] = ACTIONS(1886), + [anon_sym_U_SQUOTE] = ACTIONS(1886), + [anon_sym_u8_SQUOTE] = ACTIONS(1886), + [anon_sym_SQUOTE] = ACTIONS(1886), + [anon_sym_L_DQUOTE] = ACTIONS(1886), + [anon_sym_u_DQUOTE] = ACTIONS(1886), + [anon_sym_U_DQUOTE] = ACTIONS(1886), + [anon_sym_u8_DQUOTE] = ACTIONS(1886), + [anon_sym_DQUOTE] = ACTIONS(1886), + [sym_true] = ACTIONS(1884), + [sym_false] = ACTIONS(1884), + [sym_null] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1886), + [anon_sym_ATimport] = ACTIONS(1886), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1884), + [anon_sym_ATcompatibility_alias] = ACTIONS(1886), + [anon_sym_ATprotocol] = ACTIONS(1886), + [anon_sym_ATclass] = ACTIONS(1886), + [anon_sym_ATinterface] = ACTIONS(1886), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1884), + [sym_method_attribute_specifier] = ACTIONS(1884), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1884), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1884), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1884), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1884), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1884), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1884), + [anon_sym_NS_AVAILABLE] = ACTIONS(1884), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1884), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1884), + [anon_sym_API_AVAILABLE] = ACTIONS(1884), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1884), + [anon_sym_API_DEPRECATED] = ACTIONS(1884), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1884), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1884), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1884), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1884), + [anon_sym___deprecated_msg] = ACTIONS(1884), + [anon_sym___deprecated_enum_msg] = ACTIONS(1884), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1884), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1884), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1884), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1884), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1884), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1884), + [anon_sym_ATimplementation] = ACTIONS(1886), + [anon_sym_NS_ENUM] = ACTIONS(1884), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1884), + [anon_sym_NS_OPTIONS] = ACTIONS(1884), + [anon_sym_typeof] = ACTIONS(1884), + [anon_sym___typeof] = ACTIONS(1884), + [anon_sym___typeof__] = ACTIONS(1884), + [sym_self] = ACTIONS(1884), + [sym_super] = ACTIONS(1884), + [sym_nil] = ACTIONS(1884), + [sym_id] = ACTIONS(1884), + [sym_instancetype] = ACTIONS(1884), + [sym_Class] = ACTIONS(1884), + [sym_SEL] = ACTIONS(1884), + [sym_IMP] = ACTIONS(1884), + [sym_BOOL] = ACTIONS(1884), + [sym_auto] = ACTIONS(1884), + [anon_sym_ATautoreleasepool] = ACTIONS(1886), + [anon_sym_ATsynchronized] = ACTIONS(1886), + [anon_sym_ATtry] = ACTIONS(1886), + [anon_sym_ATthrow] = ACTIONS(1886), + [anon_sym_ATselector] = ACTIONS(1886), + [anon_sym_ATencode] = ACTIONS(1886), + [anon_sym_AT] = ACTIONS(1884), + [sym_YES] = ACTIONS(1884), + [sym_NO] = ACTIONS(1884), + [anon_sym___builtin_available] = ACTIONS(1884), + [anon_sym_ATavailable] = ACTIONS(1886), + [anon_sym_va_arg] = ACTIONS(1884), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1206] = { + [ts_builtin_sym_end] = ACTIONS(1762), + [sym_identifier] = ACTIONS(1760), + [aux_sym_preproc_include_token1] = ACTIONS(1762), + [aux_sym_preproc_def_token1] = ACTIONS(1762), + [aux_sym_preproc_if_token1] = ACTIONS(1760), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1760), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_TILDE] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_CARET] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_typedef] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym___attribute] = ACTIONS(1760), + [anon_sym___attribute__] = ACTIONS(1760), + [anon_sym___declspec] = ACTIONS(1760), + [anon_sym___cdecl] = ACTIONS(1760), + [anon_sym___clrcall] = ACTIONS(1760), + [anon_sym___stdcall] = ACTIONS(1760), + [anon_sym___fastcall] = ACTIONS(1760), + [anon_sym___thiscall] = ACTIONS(1760), + [anon_sym___vectorcall] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_auto] = ACTIONS(1760), + [anon_sym_register] = ACTIONS(1760), + [anon_sym_inline] = ACTIONS(1760), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [anon_sym_volatile] = ACTIONS(1760), + [anon_sym_restrict] = ACTIONS(1760), + [anon_sym__Atomic] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_out] = ACTIONS(1760), + [anon_sym_inout] = ACTIONS(1760), + [anon_sym_bycopy] = ACTIONS(1760), + [anon_sym_byref] = ACTIONS(1760), + [anon_sym_oneway] = ACTIONS(1760), + [anon_sym__Nullable] = ACTIONS(1760), + [anon_sym__Nonnull] = ACTIONS(1760), + [anon_sym__Nullable_result] = ACTIONS(1760), + [anon_sym__Null_unspecified] = ACTIONS(1760), + [anon_sym___autoreleasing] = ACTIONS(1760), + [anon_sym___nullable] = ACTIONS(1760), + [anon_sym___nonnull] = ACTIONS(1760), + [anon_sym___strong] = ACTIONS(1760), + [anon_sym___weak] = ACTIONS(1760), + [anon_sym___bridge] = ACTIONS(1760), + [anon_sym___bridge_transfer] = ACTIONS(1760), + [anon_sym___bridge_retained] = ACTIONS(1760), + [anon_sym___unsafe_unretained] = ACTIONS(1760), + [anon_sym___block] = ACTIONS(1760), + [anon_sym___kindof] = ACTIONS(1760), + [anon_sym___unused] = ACTIONS(1760), + [anon_sym__Complex] = ACTIONS(1760), + [anon_sym___complex] = ACTIONS(1760), + [anon_sym_IBOutlet] = ACTIONS(1760), + [anon_sym_IBInspectable] = ACTIONS(1760), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1760), + [anon_sym_signed] = ACTIONS(1760), + [anon_sym_unsigned] = ACTIONS(1760), + [anon_sym_long] = ACTIONS(1760), + [anon_sym_short] = ACTIONS(1760), + [sym_primitive_type] = ACTIONS(1760), + [anon_sym_enum] = ACTIONS(1760), + [anon_sym_struct] = ACTIONS(1760), + [anon_sym_union] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_switch] = ACTIONS(1760), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_goto] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_sizeof] = ACTIONS(1760), + [sym_number_literal] = ACTIONS(1762), + [anon_sym_L_SQUOTE] = ACTIONS(1762), + [anon_sym_u_SQUOTE] = ACTIONS(1762), + [anon_sym_U_SQUOTE] = ACTIONS(1762), + [anon_sym_u8_SQUOTE] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1762), + [anon_sym_L_DQUOTE] = ACTIONS(1762), + [anon_sym_u_DQUOTE] = ACTIONS(1762), + [anon_sym_U_DQUOTE] = ACTIONS(1762), + [anon_sym_u8_DQUOTE] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_null] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1762), + [anon_sym_ATimport] = ACTIONS(1762), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1760), + [anon_sym_ATcompatibility_alias] = ACTIONS(1762), + [anon_sym_ATprotocol] = ACTIONS(1762), + [anon_sym_ATclass] = ACTIONS(1762), + [anon_sym_ATinterface] = ACTIONS(1762), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1760), + [sym_method_attribute_specifier] = ACTIONS(1760), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1760), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1760), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1760), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1760), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1760), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1760), + [anon_sym_NS_AVAILABLE] = ACTIONS(1760), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1760), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1760), + [anon_sym_API_AVAILABLE] = ACTIONS(1760), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1760), + [anon_sym_API_DEPRECATED] = ACTIONS(1760), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1760), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1760), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1760), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1760), + [anon_sym___deprecated_msg] = ACTIONS(1760), + [anon_sym___deprecated_enum_msg] = ACTIONS(1760), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1760), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1760), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1760), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1760), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1760), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1760), + [anon_sym_ATimplementation] = ACTIONS(1762), + [anon_sym_NS_ENUM] = ACTIONS(1760), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1760), + [anon_sym_NS_OPTIONS] = ACTIONS(1760), + [anon_sym_typeof] = ACTIONS(1760), + [anon_sym___typeof] = ACTIONS(1760), + [anon_sym___typeof__] = ACTIONS(1760), + [sym_self] = ACTIONS(1760), + [sym_super] = ACTIONS(1760), + [sym_nil] = ACTIONS(1760), + [sym_id] = ACTIONS(1760), + [sym_instancetype] = ACTIONS(1760), + [sym_Class] = ACTIONS(1760), + [sym_SEL] = ACTIONS(1760), + [sym_IMP] = ACTIONS(1760), + [sym_BOOL] = ACTIONS(1760), + [sym_auto] = ACTIONS(1760), + [anon_sym_ATautoreleasepool] = ACTIONS(1762), + [anon_sym_ATsynchronized] = ACTIONS(1762), + [anon_sym_ATtry] = ACTIONS(1762), + [anon_sym_ATthrow] = ACTIONS(1762), + [anon_sym_ATselector] = ACTIONS(1762), + [anon_sym_ATencode] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(1760), + [sym_YES] = ACTIONS(1760), + [sym_NO] = ACTIONS(1760), + [anon_sym___builtin_available] = ACTIONS(1760), + [anon_sym_ATavailable] = ACTIONS(1762), + [anon_sym_va_arg] = ACTIONS(1760), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1207] = { + [ts_builtin_sym_end] = ACTIONS(1706), + [sym_identifier] = ACTIONS(1704), + [aux_sym_preproc_include_token1] = ACTIONS(1706), + [aux_sym_preproc_def_token1] = ACTIONS(1706), + [aux_sym_preproc_if_token1] = ACTIONS(1704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1704), + [anon_sym_LPAREN2] = ACTIONS(1706), + [anon_sym_BANG] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_STAR] = ACTIONS(1706), + [anon_sym_CARET] = ACTIONS(1706), + [anon_sym_AMP] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_typedef] = ACTIONS(1704), + [anon_sym_extern] = ACTIONS(1704), + [anon_sym___attribute] = ACTIONS(1704), + [anon_sym___attribute__] = ACTIONS(1704), + [anon_sym___declspec] = ACTIONS(1704), + [anon_sym___cdecl] = ACTIONS(1704), + [anon_sym___clrcall] = ACTIONS(1704), + [anon_sym___stdcall] = ACTIONS(1704), + [anon_sym___fastcall] = ACTIONS(1704), + [anon_sym___thiscall] = ACTIONS(1704), + [anon_sym___vectorcall] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_auto] = ACTIONS(1704), + [anon_sym_register] = ACTIONS(1704), + [anon_sym_inline] = ACTIONS(1704), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_volatile] = ACTIONS(1704), + [anon_sym_restrict] = ACTIONS(1704), + [anon_sym__Atomic] = ACTIONS(1704), + [anon_sym_in] = ACTIONS(1704), + [anon_sym_out] = ACTIONS(1704), + [anon_sym_inout] = ACTIONS(1704), + [anon_sym_bycopy] = ACTIONS(1704), + [anon_sym_byref] = ACTIONS(1704), + [anon_sym_oneway] = ACTIONS(1704), + [anon_sym__Nullable] = ACTIONS(1704), + [anon_sym__Nonnull] = ACTIONS(1704), + [anon_sym__Nullable_result] = ACTIONS(1704), + [anon_sym__Null_unspecified] = ACTIONS(1704), + [anon_sym___autoreleasing] = ACTIONS(1704), + [anon_sym___nullable] = ACTIONS(1704), + [anon_sym___nonnull] = ACTIONS(1704), + [anon_sym___strong] = ACTIONS(1704), + [anon_sym___weak] = ACTIONS(1704), + [anon_sym___bridge] = ACTIONS(1704), + [anon_sym___bridge_transfer] = ACTIONS(1704), + [anon_sym___bridge_retained] = ACTIONS(1704), + [anon_sym___unsafe_unretained] = ACTIONS(1704), + [anon_sym___block] = ACTIONS(1704), + [anon_sym___kindof] = ACTIONS(1704), + [anon_sym___unused] = ACTIONS(1704), + [anon_sym__Complex] = ACTIONS(1704), + [anon_sym___complex] = ACTIONS(1704), + [anon_sym_IBOutlet] = ACTIONS(1704), + [anon_sym_IBInspectable] = ACTIONS(1704), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1704), + [anon_sym_signed] = ACTIONS(1704), + [anon_sym_unsigned] = ACTIONS(1704), + [anon_sym_long] = ACTIONS(1704), + [anon_sym_short] = ACTIONS(1704), + [sym_primitive_type] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(1704), + [anon_sym_struct] = ACTIONS(1704), + [anon_sym_union] = ACTIONS(1704), + [anon_sym_if] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1704), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1704), + [anon_sym_do] = ACTIONS(1704), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1704), + [anon_sym_break] = ACTIONS(1704), + [anon_sym_continue] = ACTIONS(1704), + [anon_sym_goto] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1706), + [anon_sym_PLUS_PLUS] = ACTIONS(1706), + [anon_sym_sizeof] = ACTIONS(1704), + [sym_number_literal] = ACTIONS(1706), + [anon_sym_L_SQUOTE] = ACTIONS(1706), + [anon_sym_u_SQUOTE] = ACTIONS(1706), + [anon_sym_U_SQUOTE] = ACTIONS(1706), + [anon_sym_u8_SQUOTE] = ACTIONS(1706), + [anon_sym_SQUOTE] = ACTIONS(1706), + [anon_sym_L_DQUOTE] = ACTIONS(1706), + [anon_sym_u_DQUOTE] = ACTIONS(1706), + [anon_sym_U_DQUOTE] = ACTIONS(1706), + [anon_sym_u8_DQUOTE] = ACTIONS(1706), + [anon_sym_DQUOTE] = ACTIONS(1706), + [sym_true] = ACTIONS(1704), + [sym_false] = ACTIONS(1704), + [sym_null] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1706), + [anon_sym_ATimport] = ACTIONS(1706), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1704), + [anon_sym_ATcompatibility_alias] = ACTIONS(1706), + [anon_sym_ATprotocol] = ACTIONS(1706), + [anon_sym_ATclass] = ACTIONS(1706), + [anon_sym_ATinterface] = ACTIONS(1706), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1704), + [sym_method_attribute_specifier] = ACTIONS(1704), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1704), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1704), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1704), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1704), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1704), + [anon_sym_NS_AVAILABLE] = ACTIONS(1704), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1704), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_API_AVAILABLE] = ACTIONS(1704), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_API_DEPRECATED] = ACTIONS(1704), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1704), + [anon_sym___deprecated_msg] = ACTIONS(1704), + [anon_sym___deprecated_enum_msg] = ACTIONS(1704), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1704), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1704), + [anon_sym_ATimplementation] = ACTIONS(1706), + [anon_sym_NS_ENUM] = ACTIONS(1704), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1704), + [anon_sym_NS_OPTIONS] = ACTIONS(1704), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym___typeof] = ACTIONS(1704), + [anon_sym___typeof__] = ACTIONS(1704), + [sym_self] = ACTIONS(1704), + [sym_super] = ACTIONS(1704), + [sym_nil] = ACTIONS(1704), + [sym_id] = ACTIONS(1704), + [sym_instancetype] = ACTIONS(1704), + [sym_Class] = ACTIONS(1704), + [sym_SEL] = ACTIONS(1704), + [sym_IMP] = ACTIONS(1704), + [sym_BOOL] = ACTIONS(1704), + [sym_auto] = ACTIONS(1704), + [anon_sym_ATautoreleasepool] = ACTIONS(1706), + [anon_sym_ATsynchronized] = ACTIONS(1706), + [anon_sym_ATtry] = ACTIONS(1706), + [anon_sym_ATthrow] = ACTIONS(1706), + [anon_sym_ATselector] = ACTIONS(1706), + [anon_sym_ATencode] = ACTIONS(1706), + [anon_sym_AT] = ACTIONS(1704), + [sym_YES] = ACTIONS(1704), + [sym_NO] = ACTIONS(1704), + [anon_sym___builtin_available] = ACTIONS(1704), + [anon_sym_ATavailable] = ACTIONS(1706), + [anon_sym_va_arg] = ACTIONS(1704), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1208] = { + [ts_builtin_sym_end] = ACTIONS(1758), + [sym_identifier] = ACTIONS(1756), + [aux_sym_preproc_include_token1] = ACTIONS(1758), + [aux_sym_preproc_def_token1] = ACTIONS(1758), + [aux_sym_preproc_if_token1] = ACTIONS(1756), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1756), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1758), + [anon_sym_BANG] = ACTIONS(1758), + [anon_sym_TILDE] = ACTIONS(1758), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1758), + [anon_sym_AMP] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_typedef] = ACTIONS(1756), + [anon_sym_extern] = ACTIONS(1756), + [anon_sym___attribute] = ACTIONS(1756), + [anon_sym___attribute__] = ACTIONS(1756), + [anon_sym___declspec] = ACTIONS(1756), + [anon_sym___cdecl] = ACTIONS(1756), + [anon_sym___clrcall] = ACTIONS(1756), + [anon_sym___stdcall] = ACTIONS(1756), + [anon_sym___fastcall] = ACTIONS(1756), + [anon_sym___thiscall] = ACTIONS(1756), + [anon_sym___vectorcall] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_static] = ACTIONS(1756), + [anon_sym_auto] = ACTIONS(1756), + [anon_sym_register] = ACTIONS(1756), + [anon_sym_inline] = ACTIONS(1756), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1756), + [anon_sym_volatile] = ACTIONS(1756), + [anon_sym_restrict] = ACTIONS(1756), + [anon_sym__Atomic] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1756), + [anon_sym_out] = ACTIONS(1756), + [anon_sym_inout] = ACTIONS(1756), + [anon_sym_bycopy] = ACTIONS(1756), + [anon_sym_byref] = ACTIONS(1756), + [anon_sym_oneway] = ACTIONS(1756), + [anon_sym__Nullable] = ACTIONS(1756), + [anon_sym__Nonnull] = ACTIONS(1756), + [anon_sym__Nullable_result] = ACTIONS(1756), + [anon_sym__Null_unspecified] = ACTIONS(1756), + [anon_sym___autoreleasing] = ACTIONS(1756), + [anon_sym___nullable] = ACTIONS(1756), + [anon_sym___nonnull] = ACTIONS(1756), + [anon_sym___strong] = ACTIONS(1756), + [anon_sym___weak] = ACTIONS(1756), + [anon_sym___bridge] = ACTIONS(1756), + [anon_sym___bridge_transfer] = ACTIONS(1756), + [anon_sym___bridge_retained] = ACTIONS(1756), + [anon_sym___unsafe_unretained] = ACTIONS(1756), + [anon_sym___block] = ACTIONS(1756), + [anon_sym___kindof] = ACTIONS(1756), + [anon_sym___unused] = ACTIONS(1756), + [anon_sym__Complex] = ACTIONS(1756), + [anon_sym___complex] = ACTIONS(1756), + [anon_sym_IBOutlet] = ACTIONS(1756), + [anon_sym_IBInspectable] = ACTIONS(1756), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1756), + [anon_sym_signed] = ACTIONS(1756), + [anon_sym_unsigned] = ACTIONS(1756), + [anon_sym_long] = ACTIONS(1756), + [anon_sym_short] = ACTIONS(1756), + [sym_primitive_type] = ACTIONS(1756), + [anon_sym_enum] = ACTIONS(1756), + [anon_sym_struct] = ACTIONS(1756), + [anon_sym_union] = ACTIONS(1756), + [anon_sym_if] = ACTIONS(1756), + [anon_sym_switch] = ACTIONS(1756), + [anon_sym_case] = ACTIONS(1756), + [anon_sym_default] = ACTIONS(1756), + [anon_sym_while] = ACTIONS(1756), + [anon_sym_do] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1756), + [anon_sym_return] = ACTIONS(1756), + [anon_sym_break] = ACTIONS(1756), + [anon_sym_continue] = ACTIONS(1756), + [anon_sym_goto] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1758), + [anon_sym_PLUS_PLUS] = ACTIONS(1758), + [anon_sym_sizeof] = ACTIONS(1756), + [sym_number_literal] = ACTIONS(1758), + [anon_sym_L_SQUOTE] = ACTIONS(1758), + [anon_sym_u_SQUOTE] = ACTIONS(1758), + [anon_sym_U_SQUOTE] = ACTIONS(1758), + [anon_sym_u8_SQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [anon_sym_L_DQUOTE] = ACTIONS(1758), + [anon_sym_u_DQUOTE] = ACTIONS(1758), + [anon_sym_U_DQUOTE] = ACTIONS(1758), + [anon_sym_u8_DQUOTE] = ACTIONS(1758), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym_true] = ACTIONS(1756), + [sym_false] = ACTIONS(1756), + [sym_null] = ACTIONS(1756), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1758), + [anon_sym_ATimport] = ACTIONS(1758), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1756), + [anon_sym_ATcompatibility_alias] = ACTIONS(1758), + [anon_sym_ATprotocol] = ACTIONS(1758), + [anon_sym_ATclass] = ACTIONS(1758), + [anon_sym_ATinterface] = ACTIONS(1758), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1756), + [sym_method_attribute_specifier] = ACTIONS(1756), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1756), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1756), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1756), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1756), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1756), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1756), + [anon_sym_NS_AVAILABLE] = ACTIONS(1756), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1756), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1756), + [anon_sym_API_AVAILABLE] = ACTIONS(1756), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1756), + [anon_sym_API_DEPRECATED] = ACTIONS(1756), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1756), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1756), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1756), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1756), + [anon_sym___deprecated_msg] = ACTIONS(1756), + [anon_sym___deprecated_enum_msg] = ACTIONS(1756), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1756), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1756), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1756), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1756), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1756), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1756), + [anon_sym_ATimplementation] = ACTIONS(1758), + [anon_sym_NS_ENUM] = ACTIONS(1756), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1756), + [anon_sym_NS_OPTIONS] = ACTIONS(1756), + [anon_sym_typeof] = ACTIONS(1756), + [anon_sym___typeof] = ACTIONS(1756), + [anon_sym___typeof__] = ACTIONS(1756), + [sym_self] = ACTIONS(1756), + [sym_super] = ACTIONS(1756), + [sym_nil] = ACTIONS(1756), + [sym_id] = ACTIONS(1756), + [sym_instancetype] = ACTIONS(1756), + [sym_Class] = ACTIONS(1756), + [sym_SEL] = ACTIONS(1756), + [sym_IMP] = ACTIONS(1756), + [sym_BOOL] = ACTIONS(1756), + [sym_auto] = ACTIONS(1756), + [anon_sym_ATautoreleasepool] = ACTIONS(1758), + [anon_sym_ATsynchronized] = ACTIONS(1758), + [anon_sym_ATtry] = ACTIONS(1758), + [anon_sym_ATthrow] = ACTIONS(1758), + [anon_sym_ATselector] = ACTIONS(1758), + [anon_sym_ATencode] = ACTIONS(1758), + [anon_sym_AT] = ACTIONS(1756), + [sym_YES] = ACTIONS(1756), + [sym_NO] = ACTIONS(1756), + [anon_sym___builtin_available] = ACTIONS(1756), + [anon_sym_ATavailable] = ACTIONS(1758), + [anon_sym_va_arg] = ACTIONS(1756), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1209] = { + [sym_identifier] = ACTIONS(1912), + [aux_sym_preproc_include_token1] = ACTIONS(1914), + [aux_sym_preproc_def_token1] = ACTIONS(1914), + [aux_sym_preproc_if_token1] = ACTIONS(1912), + [aux_sym_preproc_if_token2] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1912), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_CARET] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym___attribute] = ACTIONS(1912), + [anon_sym___attribute__] = ACTIONS(1912), + [anon_sym___declspec] = ACTIONS(1912), + [anon_sym___cdecl] = ACTIONS(1912), + [anon_sym___clrcall] = ACTIONS(1912), + [anon_sym___stdcall] = ACTIONS(1912), + [anon_sym___fastcall] = ACTIONS(1912), + [anon_sym___thiscall] = ACTIONS(1912), + [anon_sym___vectorcall] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_auto] = ACTIONS(1912), + [anon_sym_register] = ACTIONS(1912), + [anon_sym_inline] = ACTIONS(1912), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_volatile] = ACTIONS(1912), + [anon_sym_restrict] = ACTIONS(1912), + [anon_sym__Atomic] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1912), + [anon_sym_out] = ACTIONS(1912), + [anon_sym_inout] = ACTIONS(1912), + [anon_sym_bycopy] = ACTIONS(1912), + [anon_sym_byref] = ACTIONS(1912), + [anon_sym_oneway] = ACTIONS(1912), + [anon_sym__Nullable] = ACTIONS(1912), + [anon_sym__Nonnull] = ACTIONS(1912), + [anon_sym__Nullable_result] = ACTIONS(1912), + [anon_sym__Null_unspecified] = ACTIONS(1912), + [anon_sym___autoreleasing] = ACTIONS(1912), + [anon_sym___nullable] = ACTIONS(1912), + [anon_sym___nonnull] = ACTIONS(1912), + [anon_sym___strong] = ACTIONS(1912), + [anon_sym___weak] = ACTIONS(1912), + [anon_sym___bridge] = ACTIONS(1912), + [anon_sym___bridge_transfer] = ACTIONS(1912), + [anon_sym___bridge_retained] = ACTIONS(1912), + [anon_sym___unsafe_unretained] = ACTIONS(1912), + [anon_sym___block] = ACTIONS(1912), + [anon_sym___kindof] = ACTIONS(1912), + [anon_sym___unused] = ACTIONS(1912), + [anon_sym__Complex] = ACTIONS(1912), + [anon_sym___complex] = ACTIONS(1912), + [anon_sym_IBOutlet] = ACTIONS(1912), + [anon_sym_IBInspectable] = ACTIONS(1912), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1912), + [anon_sym_signed] = ACTIONS(1912), + [anon_sym_unsigned] = ACTIONS(1912), + [anon_sym_long] = ACTIONS(1912), + [anon_sym_short] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_switch] = ACTIONS(1912), + [anon_sym_case] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_do] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_goto] = ACTIONS(1912), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_sizeof] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1914), + [anon_sym_u_SQUOTE] = ACTIONS(1914), + [anon_sym_U_SQUOTE] = ACTIONS(1914), + [anon_sym_u8_SQUOTE] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_L_DQUOTE] = ACTIONS(1914), + [anon_sym_u_DQUOTE] = ACTIONS(1914), + [anon_sym_U_DQUOTE] = ACTIONS(1914), + [anon_sym_u8_DQUOTE] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_true] = ACTIONS(1912), + [sym_false] = ACTIONS(1912), + [sym_null] = ACTIONS(1912), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1914), + [anon_sym_ATimport] = ACTIONS(1914), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1912), + [anon_sym_ATcompatibility_alias] = ACTIONS(1914), + [anon_sym_ATprotocol] = ACTIONS(1914), + [anon_sym_ATclass] = ACTIONS(1914), + [anon_sym_ATinterface] = ACTIONS(1914), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1912), + [sym_method_attribute_specifier] = ACTIONS(1912), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1912), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE] = ACTIONS(1912), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_API_AVAILABLE] = ACTIONS(1912), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_API_DEPRECATED] = ACTIONS(1912), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1912), + [anon_sym___deprecated_msg] = ACTIONS(1912), + [anon_sym___deprecated_enum_msg] = ACTIONS(1912), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1912), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1912), + [anon_sym_ATimplementation] = ACTIONS(1914), + [anon_sym_NS_ENUM] = ACTIONS(1912), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1912), + [anon_sym_NS_OPTIONS] = ACTIONS(1912), + [anon_sym_typeof] = ACTIONS(1912), + [anon_sym___typeof] = ACTIONS(1912), + [anon_sym___typeof__] = ACTIONS(1912), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_nil] = ACTIONS(1912), + [sym_id] = ACTIONS(1912), + [sym_instancetype] = ACTIONS(1912), + [sym_Class] = ACTIONS(1912), + [sym_SEL] = ACTIONS(1912), + [sym_IMP] = ACTIONS(1912), + [sym_BOOL] = ACTIONS(1912), + [sym_auto] = ACTIONS(1912), + [anon_sym_ATautoreleasepool] = ACTIONS(1914), + [anon_sym_ATsynchronized] = ACTIONS(1914), + [anon_sym_ATtry] = ACTIONS(1914), + [anon_sym_ATthrow] = ACTIONS(1914), + [anon_sym_ATselector] = ACTIONS(1914), + [anon_sym_ATencode] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1912), + [sym_YES] = ACTIONS(1912), + [sym_NO] = ACTIONS(1912), + [anon_sym___builtin_available] = ACTIONS(1912), + [anon_sym_ATavailable] = ACTIONS(1914), + [anon_sym_va_arg] = ACTIONS(1912), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1210] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1211] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1212] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1213] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1214] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1215] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1216] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1217] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1218] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1219] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1220] = { + [sym_identifier] = ACTIONS(1896), + [aux_sym_preproc_include_token1] = ACTIONS(1898), + [aux_sym_preproc_def_token1] = ACTIONS(1898), + [aux_sym_preproc_if_token1] = ACTIONS(1896), + [aux_sym_preproc_if_token2] = ACTIONS(1896), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1896), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1896), + [anon_sym_LPAREN2] = ACTIONS(1898), + [anon_sym_BANG] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1898), + [anon_sym_CARET] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_typedef] = ACTIONS(1896), + [anon_sym_extern] = ACTIONS(1896), + [anon_sym___attribute] = ACTIONS(1896), + [anon_sym___attribute__] = ACTIONS(1896), + [anon_sym___declspec] = ACTIONS(1896), + [anon_sym___cdecl] = ACTIONS(1896), + [anon_sym___clrcall] = ACTIONS(1896), + [anon_sym___stdcall] = ACTIONS(1896), + [anon_sym___fastcall] = ACTIONS(1896), + [anon_sym___thiscall] = ACTIONS(1896), + [anon_sym___vectorcall] = ACTIONS(1896), + [anon_sym_LBRACE] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_static] = ACTIONS(1896), + [anon_sym_auto] = ACTIONS(1896), + [anon_sym_register] = ACTIONS(1896), + [anon_sym_inline] = ACTIONS(1896), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1896), + [anon_sym_const] = ACTIONS(1896), + [anon_sym_volatile] = ACTIONS(1896), + [anon_sym_restrict] = ACTIONS(1896), + [anon_sym__Atomic] = ACTIONS(1896), + [anon_sym_in] = ACTIONS(1896), + [anon_sym_out] = ACTIONS(1896), + [anon_sym_inout] = ACTIONS(1896), + [anon_sym_bycopy] = ACTIONS(1896), + [anon_sym_byref] = ACTIONS(1896), + [anon_sym_oneway] = ACTIONS(1896), + [anon_sym__Nullable] = ACTIONS(1896), + [anon_sym__Nonnull] = ACTIONS(1896), + [anon_sym__Nullable_result] = ACTIONS(1896), + [anon_sym__Null_unspecified] = ACTIONS(1896), + [anon_sym___autoreleasing] = ACTIONS(1896), + [anon_sym___nullable] = ACTIONS(1896), + [anon_sym___nonnull] = ACTIONS(1896), + [anon_sym___strong] = ACTIONS(1896), + [anon_sym___weak] = ACTIONS(1896), + [anon_sym___bridge] = ACTIONS(1896), + [anon_sym___bridge_transfer] = ACTIONS(1896), + [anon_sym___bridge_retained] = ACTIONS(1896), + [anon_sym___unsafe_unretained] = ACTIONS(1896), + [anon_sym___block] = ACTIONS(1896), + [anon_sym___kindof] = ACTIONS(1896), + [anon_sym___unused] = ACTIONS(1896), + [anon_sym__Complex] = ACTIONS(1896), + [anon_sym___complex] = ACTIONS(1896), + [anon_sym_IBOutlet] = ACTIONS(1896), + [anon_sym_IBInspectable] = ACTIONS(1896), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1896), + [anon_sym_signed] = ACTIONS(1896), + [anon_sym_unsigned] = ACTIONS(1896), + [anon_sym_long] = ACTIONS(1896), + [anon_sym_short] = ACTIONS(1896), + [sym_primitive_type] = ACTIONS(1896), + [anon_sym_enum] = ACTIONS(1896), + [anon_sym_struct] = ACTIONS(1896), + [anon_sym_union] = ACTIONS(1896), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_switch] = ACTIONS(1896), + [anon_sym_case] = ACTIONS(1896), + [anon_sym_default] = ACTIONS(1896), + [anon_sym_while] = ACTIONS(1896), + [anon_sym_do] = ACTIONS(1896), + [anon_sym_for] = ACTIONS(1896), + [anon_sym_return] = ACTIONS(1896), + [anon_sym_break] = ACTIONS(1896), + [anon_sym_continue] = ACTIONS(1896), + [anon_sym_goto] = ACTIONS(1896), + [anon_sym_DASH_DASH] = ACTIONS(1898), + [anon_sym_PLUS_PLUS] = ACTIONS(1898), + [anon_sym_sizeof] = ACTIONS(1896), + [sym_number_literal] = ACTIONS(1898), + [anon_sym_L_SQUOTE] = ACTIONS(1898), + [anon_sym_u_SQUOTE] = ACTIONS(1898), + [anon_sym_U_SQUOTE] = ACTIONS(1898), + [anon_sym_u8_SQUOTE] = ACTIONS(1898), + [anon_sym_SQUOTE] = ACTIONS(1898), + [anon_sym_L_DQUOTE] = ACTIONS(1898), + [anon_sym_u_DQUOTE] = ACTIONS(1898), + [anon_sym_U_DQUOTE] = ACTIONS(1898), + [anon_sym_u8_DQUOTE] = ACTIONS(1898), + [anon_sym_DQUOTE] = ACTIONS(1898), + [sym_true] = ACTIONS(1896), + [sym_false] = ACTIONS(1896), + [sym_null] = ACTIONS(1896), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1898), + [anon_sym_ATimport] = ACTIONS(1898), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1896), + [anon_sym_ATcompatibility_alias] = ACTIONS(1898), + [anon_sym_ATprotocol] = ACTIONS(1898), + [anon_sym_ATclass] = ACTIONS(1898), + [anon_sym_ATinterface] = ACTIONS(1898), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1896), + [sym_method_attribute_specifier] = ACTIONS(1896), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1896), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1896), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1896), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1896), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1896), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1896), + [anon_sym_NS_AVAILABLE] = ACTIONS(1896), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1896), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1896), + [anon_sym_API_AVAILABLE] = ACTIONS(1896), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1896), + [anon_sym_API_DEPRECATED] = ACTIONS(1896), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1896), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1896), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1896), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1896), + [anon_sym___deprecated_msg] = ACTIONS(1896), + [anon_sym___deprecated_enum_msg] = ACTIONS(1896), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1896), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1896), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1896), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1896), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1896), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1896), + [anon_sym_ATimplementation] = ACTIONS(1898), + [anon_sym_NS_ENUM] = ACTIONS(1896), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1896), + [anon_sym_NS_OPTIONS] = ACTIONS(1896), + [anon_sym_typeof] = ACTIONS(1896), + [anon_sym___typeof] = ACTIONS(1896), + [anon_sym___typeof__] = ACTIONS(1896), + [sym_self] = ACTIONS(1896), + [sym_super] = ACTIONS(1896), + [sym_nil] = ACTIONS(1896), + [sym_id] = ACTIONS(1896), + [sym_instancetype] = ACTIONS(1896), + [sym_Class] = ACTIONS(1896), + [sym_SEL] = ACTIONS(1896), + [sym_IMP] = ACTIONS(1896), + [sym_BOOL] = ACTIONS(1896), + [sym_auto] = ACTIONS(1896), + [anon_sym_ATautoreleasepool] = ACTIONS(1898), + [anon_sym_ATsynchronized] = ACTIONS(1898), + [anon_sym_ATtry] = ACTIONS(1898), + [anon_sym_ATthrow] = ACTIONS(1898), + [anon_sym_ATselector] = ACTIONS(1898), + [anon_sym_ATencode] = ACTIONS(1898), + [anon_sym_AT] = ACTIONS(1896), + [sym_YES] = ACTIONS(1896), + [sym_NO] = ACTIONS(1896), + [anon_sym___builtin_available] = ACTIONS(1896), + [anon_sym_ATavailable] = ACTIONS(1898), + [anon_sym_va_arg] = ACTIONS(1896), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1221] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1222] = { + [sym_identifier] = ACTIONS(1900), + [aux_sym_preproc_include_token1] = ACTIONS(1902), + [aux_sym_preproc_def_token1] = ACTIONS(1902), + [aux_sym_preproc_if_token1] = ACTIONS(1900), + [aux_sym_preproc_if_token2] = ACTIONS(1900), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1900), + [anon_sym_LPAREN2] = ACTIONS(1902), + [anon_sym_BANG] = ACTIONS(1902), + [anon_sym_TILDE] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1902), + [anon_sym_CARET] = ACTIONS(1902), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_typedef] = ACTIONS(1900), + [anon_sym_extern] = ACTIONS(1900), + [anon_sym___attribute] = ACTIONS(1900), + [anon_sym___attribute__] = ACTIONS(1900), + [anon_sym___declspec] = ACTIONS(1900), + [anon_sym___cdecl] = ACTIONS(1900), + [anon_sym___clrcall] = ACTIONS(1900), + [anon_sym___stdcall] = ACTIONS(1900), + [anon_sym___fastcall] = ACTIONS(1900), + [anon_sym___thiscall] = ACTIONS(1900), + [anon_sym___vectorcall] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_LBRACK] = ACTIONS(1902), + [anon_sym_static] = ACTIONS(1900), + [anon_sym_auto] = ACTIONS(1900), + [anon_sym_register] = ACTIONS(1900), + [anon_sym_inline] = ACTIONS(1900), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1900), + [anon_sym_volatile] = ACTIONS(1900), + [anon_sym_restrict] = ACTIONS(1900), + [anon_sym__Atomic] = ACTIONS(1900), + [anon_sym_in] = ACTIONS(1900), + [anon_sym_out] = ACTIONS(1900), + [anon_sym_inout] = ACTIONS(1900), + [anon_sym_bycopy] = ACTIONS(1900), + [anon_sym_byref] = ACTIONS(1900), + [anon_sym_oneway] = ACTIONS(1900), + [anon_sym__Nullable] = ACTIONS(1900), + [anon_sym__Nonnull] = ACTIONS(1900), + [anon_sym__Nullable_result] = ACTIONS(1900), + [anon_sym__Null_unspecified] = ACTIONS(1900), + [anon_sym___autoreleasing] = ACTIONS(1900), + [anon_sym___nullable] = ACTIONS(1900), + [anon_sym___nonnull] = ACTIONS(1900), + [anon_sym___strong] = ACTIONS(1900), + [anon_sym___weak] = ACTIONS(1900), + [anon_sym___bridge] = ACTIONS(1900), + [anon_sym___bridge_transfer] = ACTIONS(1900), + [anon_sym___bridge_retained] = ACTIONS(1900), + [anon_sym___unsafe_unretained] = ACTIONS(1900), + [anon_sym___block] = ACTIONS(1900), + [anon_sym___kindof] = ACTIONS(1900), + [anon_sym___unused] = ACTIONS(1900), + [anon_sym__Complex] = ACTIONS(1900), + [anon_sym___complex] = ACTIONS(1900), + [anon_sym_IBOutlet] = ACTIONS(1900), + [anon_sym_IBInspectable] = ACTIONS(1900), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1900), + [anon_sym_signed] = ACTIONS(1900), + [anon_sym_unsigned] = ACTIONS(1900), + [anon_sym_long] = ACTIONS(1900), + [anon_sym_short] = ACTIONS(1900), + [sym_primitive_type] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1900), + [anon_sym_struct] = ACTIONS(1900), + [anon_sym_union] = ACTIONS(1900), + [anon_sym_if] = ACTIONS(1900), + [anon_sym_switch] = ACTIONS(1900), + [anon_sym_case] = ACTIONS(1900), + [anon_sym_default] = ACTIONS(1900), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_do] = ACTIONS(1900), + [anon_sym_for] = ACTIONS(1900), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(1900), + [anon_sym_goto] = ACTIONS(1900), + [anon_sym_DASH_DASH] = ACTIONS(1902), + [anon_sym_PLUS_PLUS] = ACTIONS(1902), + [anon_sym_sizeof] = ACTIONS(1900), + [sym_number_literal] = ACTIONS(1902), + [anon_sym_L_SQUOTE] = ACTIONS(1902), + [anon_sym_u_SQUOTE] = ACTIONS(1902), + [anon_sym_U_SQUOTE] = ACTIONS(1902), + [anon_sym_u8_SQUOTE] = ACTIONS(1902), + [anon_sym_SQUOTE] = ACTIONS(1902), + [anon_sym_L_DQUOTE] = ACTIONS(1902), + [anon_sym_u_DQUOTE] = ACTIONS(1902), + [anon_sym_U_DQUOTE] = ACTIONS(1902), + [anon_sym_u8_DQUOTE] = ACTIONS(1902), + [anon_sym_DQUOTE] = ACTIONS(1902), + [sym_true] = ACTIONS(1900), + [sym_false] = ACTIONS(1900), + [sym_null] = ACTIONS(1900), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1902), + [anon_sym_ATimport] = ACTIONS(1902), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1900), + [anon_sym_ATcompatibility_alias] = ACTIONS(1902), + [anon_sym_ATprotocol] = ACTIONS(1902), + [anon_sym_ATclass] = ACTIONS(1902), + [anon_sym_ATinterface] = ACTIONS(1902), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1900), + [sym_method_attribute_specifier] = ACTIONS(1900), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1900), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1900), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1900), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1900), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1900), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1900), + [anon_sym_NS_AVAILABLE] = ACTIONS(1900), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1900), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1900), + [anon_sym_API_AVAILABLE] = ACTIONS(1900), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1900), + [anon_sym_API_DEPRECATED] = ACTIONS(1900), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1900), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1900), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1900), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1900), + [anon_sym___deprecated_msg] = ACTIONS(1900), + [anon_sym___deprecated_enum_msg] = ACTIONS(1900), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1900), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1900), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1900), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1900), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1900), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1900), + [anon_sym_ATimplementation] = ACTIONS(1902), + [anon_sym_NS_ENUM] = ACTIONS(1900), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1900), + [anon_sym_NS_OPTIONS] = ACTIONS(1900), + [anon_sym_typeof] = ACTIONS(1900), + [anon_sym___typeof] = ACTIONS(1900), + [anon_sym___typeof__] = ACTIONS(1900), + [sym_self] = ACTIONS(1900), + [sym_super] = ACTIONS(1900), + [sym_nil] = ACTIONS(1900), + [sym_id] = ACTIONS(1900), + [sym_instancetype] = ACTIONS(1900), + [sym_Class] = ACTIONS(1900), + [sym_SEL] = ACTIONS(1900), + [sym_IMP] = ACTIONS(1900), + [sym_BOOL] = ACTIONS(1900), + [sym_auto] = ACTIONS(1900), + [anon_sym_ATautoreleasepool] = ACTIONS(1902), + [anon_sym_ATsynchronized] = ACTIONS(1902), + [anon_sym_ATtry] = ACTIONS(1902), + [anon_sym_ATthrow] = ACTIONS(1902), + [anon_sym_ATselector] = ACTIONS(1902), + [anon_sym_ATencode] = ACTIONS(1902), + [anon_sym_AT] = ACTIONS(1900), + [sym_YES] = ACTIONS(1900), + [sym_NO] = ACTIONS(1900), + [anon_sym___builtin_available] = ACTIONS(1900), + [anon_sym_ATavailable] = ACTIONS(1902), + [anon_sym_va_arg] = ACTIONS(1900), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1223] = { + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2030), + [aux_sym_preproc_def_token1] = ACTIONS(2030), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token2] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_auto] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_out] = ACTIONS(2028), + [anon_sym_inout] = ACTIONS(2028), + [anon_sym_bycopy] = ACTIONS(2028), + [anon_sym_byref] = ACTIONS(2028), + [anon_sym_oneway] = ACTIONS(2028), + [anon_sym__Nullable] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym__Nullable_result] = ACTIONS(2028), + [anon_sym__Null_unspecified] = ACTIONS(2028), + [anon_sym___autoreleasing] = ACTIONS(2028), + [anon_sym___nullable] = ACTIONS(2028), + [anon_sym___nonnull] = ACTIONS(2028), + [anon_sym___strong] = ACTIONS(2028), + [anon_sym___weak] = ACTIONS(2028), + [anon_sym___bridge] = ACTIONS(2028), + [anon_sym___bridge_transfer] = ACTIONS(2028), + [anon_sym___bridge_retained] = ACTIONS(2028), + [anon_sym___unsafe_unretained] = ACTIONS(2028), + [anon_sym___block] = ACTIONS(2028), + [anon_sym___kindof] = ACTIONS(2028), + [anon_sym___unused] = ACTIONS(2028), + [anon_sym__Complex] = ACTIONS(2028), + [anon_sym___complex] = ACTIONS(2028), + [anon_sym_IBOutlet] = ACTIONS(2028), + [anon_sym_IBInspectable] = ACTIONS(2028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2028), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2030), + [anon_sym_ATimport] = ACTIONS(2030), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2028), + [anon_sym_ATcompatibility_alias] = ACTIONS(2030), + [anon_sym_ATprotocol] = ACTIONS(2030), + [anon_sym_ATclass] = ACTIONS(2030), + [anon_sym_ATinterface] = ACTIONS(2030), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2028), + [sym_method_attribute_specifier] = ACTIONS(2028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE] = ACTIONS(2028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_API_AVAILABLE] = ACTIONS(2028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_API_DEPRECATED] = ACTIONS(2028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2028), + [anon_sym___deprecated_msg] = ACTIONS(2028), + [anon_sym___deprecated_enum_msg] = ACTIONS(2028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2028), + [anon_sym_ATimplementation] = ACTIONS(2030), + [anon_sym_NS_ENUM] = ACTIONS(2028), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2028), + [anon_sym_NS_OPTIONS] = ACTIONS(2028), + [anon_sym_typeof] = ACTIONS(2028), + [anon_sym___typeof] = ACTIONS(2028), + [anon_sym___typeof__] = ACTIONS(2028), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_nil] = ACTIONS(2028), + [sym_id] = ACTIONS(2028), + [sym_instancetype] = ACTIONS(2028), + [sym_Class] = ACTIONS(2028), + [sym_SEL] = ACTIONS(2028), + [sym_IMP] = ACTIONS(2028), + [sym_BOOL] = ACTIONS(2028), + [sym_auto] = ACTIONS(2028), + [anon_sym_ATautoreleasepool] = ACTIONS(2030), + [anon_sym_ATsynchronized] = ACTIONS(2030), + [anon_sym_ATtry] = ACTIONS(2030), + [anon_sym_ATthrow] = ACTIONS(2030), + [anon_sym_ATselector] = ACTIONS(2030), + [anon_sym_ATencode] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2028), + [sym_YES] = ACTIONS(2028), + [sym_NO] = ACTIONS(2028), + [anon_sym___builtin_available] = ACTIONS(2028), + [anon_sym_ATavailable] = ACTIONS(2030), + [anon_sym_va_arg] = ACTIONS(2028), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1224] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1225] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1226] = { + [sym_identifier] = ACTIONS(2012), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2014), + [aux_sym_preproc_if_token1] = ACTIONS(2012), + [aux_sym_preproc_if_token2] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2012), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_PLUS] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_CARET] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_typedef] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym___attribute] = ACTIONS(2012), + [anon_sym___attribute__] = ACTIONS(2012), + [anon_sym___declspec] = ACTIONS(2012), + [anon_sym___cdecl] = ACTIONS(2012), + [anon_sym___clrcall] = ACTIONS(2012), + [anon_sym___stdcall] = ACTIONS(2012), + [anon_sym___fastcall] = ACTIONS(2012), + [anon_sym___thiscall] = ACTIONS(2012), + [anon_sym___vectorcall] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_auto] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_inline] = ACTIONS(2012), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_volatile] = ACTIONS(2012), + [anon_sym_restrict] = ACTIONS(2012), + [anon_sym__Atomic] = ACTIONS(2012), + [anon_sym_in] = ACTIONS(2012), + [anon_sym_out] = ACTIONS(2012), + [anon_sym_inout] = ACTIONS(2012), + [anon_sym_bycopy] = ACTIONS(2012), + [anon_sym_byref] = ACTIONS(2012), + [anon_sym_oneway] = ACTIONS(2012), + [anon_sym__Nullable] = ACTIONS(2012), + [anon_sym__Nonnull] = ACTIONS(2012), + [anon_sym__Nullable_result] = ACTIONS(2012), + [anon_sym__Null_unspecified] = ACTIONS(2012), + [anon_sym___autoreleasing] = ACTIONS(2012), + [anon_sym___nullable] = ACTIONS(2012), + [anon_sym___nonnull] = ACTIONS(2012), + [anon_sym___strong] = ACTIONS(2012), + [anon_sym___weak] = ACTIONS(2012), + [anon_sym___bridge] = ACTIONS(2012), + [anon_sym___bridge_transfer] = ACTIONS(2012), + [anon_sym___bridge_retained] = ACTIONS(2012), + [anon_sym___unsafe_unretained] = ACTIONS(2012), + [anon_sym___block] = ACTIONS(2012), + [anon_sym___kindof] = ACTIONS(2012), + [anon_sym___unused] = ACTIONS(2012), + [anon_sym__Complex] = ACTIONS(2012), + [anon_sym___complex] = ACTIONS(2012), + [anon_sym_IBOutlet] = ACTIONS(2012), + [anon_sym_IBInspectable] = ACTIONS(2012), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2012), + [anon_sym_signed] = ACTIONS(2012), + [anon_sym_unsigned] = ACTIONS(2012), + [anon_sym_long] = ACTIONS(2012), + [anon_sym_short] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_switch] = ACTIONS(2012), + [anon_sym_case] = ACTIONS(2012), + [anon_sym_default] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_goto] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2014), + [anon_sym_PLUS_PLUS] = ACTIONS(2014), + [anon_sym_sizeof] = ACTIONS(2012), + [sym_number_literal] = ACTIONS(2014), + [anon_sym_L_SQUOTE] = ACTIONS(2014), + [anon_sym_u_SQUOTE] = ACTIONS(2014), + [anon_sym_U_SQUOTE] = ACTIONS(2014), + [anon_sym_u8_SQUOTE] = ACTIONS(2014), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_L_DQUOTE] = ACTIONS(2014), + [anon_sym_u_DQUOTE] = ACTIONS(2014), + [anon_sym_U_DQUOTE] = ACTIONS(2014), + [anon_sym_u8_DQUOTE] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym_true] = ACTIONS(2012), + [sym_false] = ACTIONS(2012), + [sym_null] = ACTIONS(2012), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2014), + [anon_sym_ATimport] = ACTIONS(2014), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2012), + [anon_sym_ATcompatibility_alias] = ACTIONS(2014), + [anon_sym_ATprotocol] = ACTIONS(2014), + [anon_sym_ATclass] = ACTIONS(2014), + [anon_sym_ATinterface] = ACTIONS(2014), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2012), + [sym_method_attribute_specifier] = ACTIONS(2012), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2012), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2012), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2012), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_NS_AVAILABLE] = ACTIONS(2012), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2012), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_API_AVAILABLE] = ACTIONS(2012), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_API_DEPRECATED] = ACTIONS(2012), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2012), + [anon_sym___deprecated_msg] = ACTIONS(2012), + [anon_sym___deprecated_enum_msg] = ACTIONS(2012), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2012), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2012), + [anon_sym_ATimplementation] = ACTIONS(2014), + [anon_sym_NS_ENUM] = ACTIONS(2012), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2012), + [anon_sym_NS_OPTIONS] = ACTIONS(2012), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym___typeof] = ACTIONS(2012), + [anon_sym___typeof__] = ACTIONS(2012), + [sym_self] = ACTIONS(2012), + [sym_super] = ACTIONS(2012), + [sym_nil] = ACTIONS(2012), + [sym_id] = ACTIONS(2012), + [sym_instancetype] = ACTIONS(2012), + [sym_Class] = ACTIONS(2012), + [sym_SEL] = ACTIONS(2012), + [sym_IMP] = ACTIONS(2012), + [sym_BOOL] = ACTIONS(2012), + [sym_auto] = ACTIONS(2012), + [anon_sym_ATautoreleasepool] = ACTIONS(2014), + [anon_sym_ATsynchronized] = ACTIONS(2014), + [anon_sym_ATtry] = ACTIONS(2014), + [anon_sym_ATthrow] = ACTIONS(2014), + [anon_sym_ATselector] = ACTIONS(2014), + [anon_sym_ATencode] = ACTIONS(2014), + [anon_sym_AT] = ACTIONS(2012), + [sym_YES] = ACTIONS(2012), + [sym_NO] = ACTIONS(2012), + [anon_sym___builtin_available] = ACTIONS(2012), + [anon_sym_ATavailable] = ACTIONS(2014), + [anon_sym_va_arg] = ACTIONS(2012), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1227] = { + [sym_identifier] = ACTIONS(1904), + [aux_sym_preproc_include_token1] = ACTIONS(1906), + [aux_sym_preproc_def_token1] = ACTIONS(1906), + [aux_sym_preproc_if_token1] = ACTIONS(1904), + [aux_sym_preproc_if_token2] = ACTIONS(1904), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1904), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1904), + [anon_sym_LPAREN2] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1906), + [anon_sym_TILDE] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_PLUS] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1906), + [anon_sym_CARET] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_typedef] = ACTIONS(1904), + [anon_sym_extern] = ACTIONS(1904), + [anon_sym___attribute] = ACTIONS(1904), + [anon_sym___attribute__] = ACTIONS(1904), + [anon_sym___declspec] = ACTIONS(1904), + [anon_sym___cdecl] = ACTIONS(1904), + [anon_sym___clrcall] = ACTIONS(1904), + [anon_sym___stdcall] = ACTIONS(1904), + [anon_sym___fastcall] = ACTIONS(1904), + [anon_sym___thiscall] = ACTIONS(1904), + [anon_sym___vectorcall] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_static] = ACTIONS(1904), + [anon_sym_auto] = ACTIONS(1904), + [anon_sym_register] = ACTIONS(1904), + [anon_sym_inline] = ACTIONS(1904), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1904), + [anon_sym_const] = ACTIONS(1904), + [anon_sym_volatile] = ACTIONS(1904), + [anon_sym_restrict] = ACTIONS(1904), + [anon_sym__Atomic] = ACTIONS(1904), + [anon_sym_in] = ACTIONS(1904), + [anon_sym_out] = ACTIONS(1904), + [anon_sym_inout] = ACTIONS(1904), + [anon_sym_bycopy] = ACTIONS(1904), + [anon_sym_byref] = ACTIONS(1904), + [anon_sym_oneway] = ACTIONS(1904), + [anon_sym__Nullable] = ACTIONS(1904), + [anon_sym__Nonnull] = ACTIONS(1904), + [anon_sym__Nullable_result] = ACTIONS(1904), + [anon_sym__Null_unspecified] = ACTIONS(1904), + [anon_sym___autoreleasing] = ACTIONS(1904), + [anon_sym___nullable] = ACTIONS(1904), + [anon_sym___nonnull] = ACTIONS(1904), + [anon_sym___strong] = ACTIONS(1904), + [anon_sym___weak] = ACTIONS(1904), + [anon_sym___bridge] = ACTIONS(1904), + [anon_sym___bridge_transfer] = ACTIONS(1904), + [anon_sym___bridge_retained] = ACTIONS(1904), + [anon_sym___unsafe_unretained] = ACTIONS(1904), + [anon_sym___block] = ACTIONS(1904), + [anon_sym___kindof] = ACTIONS(1904), + [anon_sym___unused] = ACTIONS(1904), + [anon_sym__Complex] = ACTIONS(1904), + [anon_sym___complex] = ACTIONS(1904), + [anon_sym_IBOutlet] = ACTIONS(1904), + [anon_sym_IBInspectable] = ACTIONS(1904), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1904), + [anon_sym_signed] = ACTIONS(1904), + [anon_sym_unsigned] = ACTIONS(1904), + [anon_sym_long] = ACTIONS(1904), + [anon_sym_short] = ACTIONS(1904), + [sym_primitive_type] = ACTIONS(1904), + [anon_sym_enum] = ACTIONS(1904), + [anon_sym_struct] = ACTIONS(1904), + [anon_sym_union] = ACTIONS(1904), + [anon_sym_if] = ACTIONS(1904), + [anon_sym_switch] = ACTIONS(1904), + [anon_sym_case] = ACTIONS(1904), + [anon_sym_default] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1904), + [anon_sym_do] = ACTIONS(1904), + [anon_sym_for] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1904), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_goto] = ACTIONS(1904), + [anon_sym_DASH_DASH] = ACTIONS(1906), + [anon_sym_PLUS_PLUS] = ACTIONS(1906), + [anon_sym_sizeof] = ACTIONS(1904), + [sym_number_literal] = ACTIONS(1906), + [anon_sym_L_SQUOTE] = ACTIONS(1906), + [anon_sym_u_SQUOTE] = ACTIONS(1906), + [anon_sym_U_SQUOTE] = ACTIONS(1906), + [anon_sym_u8_SQUOTE] = ACTIONS(1906), + [anon_sym_SQUOTE] = ACTIONS(1906), + [anon_sym_L_DQUOTE] = ACTIONS(1906), + [anon_sym_u_DQUOTE] = ACTIONS(1906), + [anon_sym_U_DQUOTE] = ACTIONS(1906), + [anon_sym_u8_DQUOTE] = ACTIONS(1906), + [anon_sym_DQUOTE] = ACTIONS(1906), + [sym_true] = ACTIONS(1904), + [sym_false] = ACTIONS(1904), + [sym_null] = ACTIONS(1904), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1906), + [anon_sym_ATimport] = ACTIONS(1906), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1904), + [anon_sym_ATcompatibility_alias] = ACTIONS(1906), + [anon_sym_ATprotocol] = ACTIONS(1906), + [anon_sym_ATclass] = ACTIONS(1906), + [anon_sym_ATinterface] = ACTIONS(1906), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1904), + [sym_method_attribute_specifier] = ACTIONS(1904), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1904), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1904), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1904), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1904), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1904), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1904), + [anon_sym_NS_AVAILABLE] = ACTIONS(1904), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1904), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1904), + [anon_sym_API_AVAILABLE] = ACTIONS(1904), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1904), + [anon_sym_API_DEPRECATED] = ACTIONS(1904), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1904), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1904), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1904), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1904), + [anon_sym___deprecated_msg] = ACTIONS(1904), + [anon_sym___deprecated_enum_msg] = ACTIONS(1904), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1904), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1904), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1904), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1904), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1904), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1904), + [anon_sym_ATimplementation] = ACTIONS(1906), + [anon_sym_NS_ENUM] = ACTIONS(1904), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1904), + [anon_sym_NS_OPTIONS] = ACTIONS(1904), + [anon_sym_typeof] = ACTIONS(1904), + [anon_sym___typeof] = ACTIONS(1904), + [anon_sym___typeof__] = ACTIONS(1904), + [sym_self] = ACTIONS(1904), + [sym_super] = ACTIONS(1904), + [sym_nil] = ACTIONS(1904), + [sym_id] = ACTIONS(1904), + [sym_instancetype] = ACTIONS(1904), + [sym_Class] = ACTIONS(1904), + [sym_SEL] = ACTIONS(1904), + [sym_IMP] = ACTIONS(1904), + [sym_BOOL] = ACTIONS(1904), + [sym_auto] = ACTIONS(1904), + [anon_sym_ATautoreleasepool] = ACTIONS(1906), + [anon_sym_ATsynchronized] = ACTIONS(1906), + [anon_sym_ATtry] = ACTIONS(1906), + [anon_sym_ATthrow] = ACTIONS(1906), + [anon_sym_ATselector] = ACTIONS(1906), + [anon_sym_ATencode] = ACTIONS(1906), + [anon_sym_AT] = ACTIONS(1904), + [sym_YES] = ACTIONS(1904), + [sym_NO] = ACTIONS(1904), + [anon_sym___builtin_available] = ACTIONS(1904), + [anon_sym_ATavailable] = ACTIONS(1906), + [anon_sym_va_arg] = ACTIONS(1904), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1228] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1229] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1230] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1231] = { + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2034), + [aux_sym_preproc_def_token1] = ACTIONS(2034), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_if_token2] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_auto] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_out] = ACTIONS(2032), + [anon_sym_inout] = ACTIONS(2032), + [anon_sym_bycopy] = ACTIONS(2032), + [anon_sym_byref] = ACTIONS(2032), + [anon_sym_oneway] = ACTIONS(2032), + [anon_sym__Nullable] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym__Nullable_result] = ACTIONS(2032), + [anon_sym__Null_unspecified] = ACTIONS(2032), + [anon_sym___autoreleasing] = ACTIONS(2032), + [anon_sym___nullable] = ACTIONS(2032), + [anon_sym___nonnull] = ACTIONS(2032), + [anon_sym___strong] = ACTIONS(2032), + [anon_sym___weak] = ACTIONS(2032), + [anon_sym___bridge] = ACTIONS(2032), + [anon_sym___bridge_transfer] = ACTIONS(2032), + [anon_sym___bridge_retained] = ACTIONS(2032), + [anon_sym___unsafe_unretained] = ACTIONS(2032), + [anon_sym___block] = ACTIONS(2032), + [anon_sym___kindof] = ACTIONS(2032), + [anon_sym___unused] = ACTIONS(2032), + [anon_sym__Complex] = ACTIONS(2032), + [anon_sym___complex] = ACTIONS(2032), + [anon_sym_IBOutlet] = ACTIONS(2032), + [anon_sym_IBInspectable] = ACTIONS(2032), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2032), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [sym_null] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2034), + [anon_sym_ATimport] = ACTIONS(2034), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2032), + [anon_sym_ATcompatibility_alias] = ACTIONS(2034), + [anon_sym_ATprotocol] = ACTIONS(2034), + [anon_sym_ATclass] = ACTIONS(2034), + [anon_sym_ATinterface] = ACTIONS(2034), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2032), + [sym_method_attribute_specifier] = ACTIONS(2032), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2032), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE] = ACTIONS(2032), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_API_AVAILABLE] = ACTIONS(2032), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_API_DEPRECATED] = ACTIONS(2032), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2032), + [anon_sym___deprecated_msg] = ACTIONS(2032), + [anon_sym___deprecated_enum_msg] = ACTIONS(2032), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2032), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2032), + [anon_sym_ATimplementation] = ACTIONS(2034), + [anon_sym_NS_ENUM] = ACTIONS(2032), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2032), + [anon_sym_NS_OPTIONS] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(2032), + [anon_sym___typeof] = ACTIONS(2032), + [anon_sym___typeof__] = ACTIONS(2032), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_nil] = ACTIONS(2032), + [sym_id] = ACTIONS(2032), + [sym_instancetype] = ACTIONS(2032), + [sym_Class] = ACTIONS(2032), + [sym_SEL] = ACTIONS(2032), + [sym_IMP] = ACTIONS(2032), + [sym_BOOL] = ACTIONS(2032), + [sym_auto] = ACTIONS(2032), + [anon_sym_ATautoreleasepool] = ACTIONS(2034), + [anon_sym_ATsynchronized] = ACTIONS(2034), + [anon_sym_ATtry] = ACTIONS(2034), + [anon_sym_ATthrow] = ACTIONS(2034), + [anon_sym_ATselector] = ACTIONS(2034), + [anon_sym_ATencode] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2032), + [sym_YES] = ACTIONS(2032), + [sym_NO] = ACTIONS(2032), + [anon_sym___builtin_available] = ACTIONS(2032), + [anon_sym_ATavailable] = ACTIONS(2034), + [anon_sym_va_arg] = ACTIONS(2032), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1232] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1233] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1234] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1235] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1236] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1237] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1238] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1239] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1240] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1241] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1242] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1243] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1244] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1245] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1246] = { + [sym_identifier] = ACTIONS(2012), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2014), + [aux_sym_preproc_if_token1] = ACTIONS(2012), + [aux_sym_preproc_if_token2] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2012), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_PLUS] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_CARET] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_typedef] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym___attribute] = ACTIONS(2012), + [anon_sym___attribute__] = ACTIONS(2012), + [anon_sym___declspec] = ACTIONS(2012), + [anon_sym___cdecl] = ACTIONS(2012), + [anon_sym___clrcall] = ACTIONS(2012), + [anon_sym___stdcall] = ACTIONS(2012), + [anon_sym___fastcall] = ACTIONS(2012), + [anon_sym___thiscall] = ACTIONS(2012), + [anon_sym___vectorcall] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_auto] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_inline] = ACTIONS(2012), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_volatile] = ACTIONS(2012), + [anon_sym_restrict] = ACTIONS(2012), + [anon_sym__Atomic] = ACTIONS(2012), + [anon_sym_in] = ACTIONS(2012), + [anon_sym_out] = ACTIONS(2012), + [anon_sym_inout] = ACTIONS(2012), + [anon_sym_bycopy] = ACTIONS(2012), + [anon_sym_byref] = ACTIONS(2012), + [anon_sym_oneway] = ACTIONS(2012), + [anon_sym__Nullable] = ACTIONS(2012), + [anon_sym__Nonnull] = ACTIONS(2012), + [anon_sym__Nullable_result] = ACTIONS(2012), + [anon_sym__Null_unspecified] = ACTIONS(2012), + [anon_sym___autoreleasing] = ACTIONS(2012), + [anon_sym___nullable] = ACTIONS(2012), + [anon_sym___nonnull] = ACTIONS(2012), + [anon_sym___strong] = ACTIONS(2012), + [anon_sym___weak] = ACTIONS(2012), + [anon_sym___bridge] = ACTIONS(2012), + [anon_sym___bridge_transfer] = ACTIONS(2012), + [anon_sym___bridge_retained] = ACTIONS(2012), + [anon_sym___unsafe_unretained] = ACTIONS(2012), + [anon_sym___block] = ACTIONS(2012), + [anon_sym___kindof] = ACTIONS(2012), + [anon_sym___unused] = ACTIONS(2012), + [anon_sym__Complex] = ACTIONS(2012), + [anon_sym___complex] = ACTIONS(2012), + [anon_sym_IBOutlet] = ACTIONS(2012), + [anon_sym_IBInspectable] = ACTIONS(2012), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2012), + [anon_sym_signed] = ACTIONS(2012), + [anon_sym_unsigned] = ACTIONS(2012), + [anon_sym_long] = ACTIONS(2012), + [anon_sym_short] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_switch] = ACTIONS(2012), + [anon_sym_case] = ACTIONS(2012), + [anon_sym_default] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_goto] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2014), + [anon_sym_PLUS_PLUS] = ACTIONS(2014), + [anon_sym_sizeof] = ACTIONS(2012), + [sym_number_literal] = ACTIONS(2014), + [anon_sym_L_SQUOTE] = ACTIONS(2014), + [anon_sym_u_SQUOTE] = ACTIONS(2014), + [anon_sym_U_SQUOTE] = ACTIONS(2014), + [anon_sym_u8_SQUOTE] = ACTIONS(2014), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_L_DQUOTE] = ACTIONS(2014), + [anon_sym_u_DQUOTE] = ACTIONS(2014), + [anon_sym_U_DQUOTE] = ACTIONS(2014), + [anon_sym_u8_DQUOTE] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym_true] = ACTIONS(2012), + [sym_false] = ACTIONS(2012), + [sym_null] = ACTIONS(2012), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2014), + [anon_sym_ATimport] = ACTIONS(2014), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2012), + [anon_sym_ATcompatibility_alias] = ACTIONS(2014), + [anon_sym_ATprotocol] = ACTIONS(2014), + [anon_sym_ATclass] = ACTIONS(2014), + [anon_sym_ATinterface] = ACTIONS(2014), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2012), + [sym_method_attribute_specifier] = ACTIONS(2012), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2012), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2012), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2012), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_NS_AVAILABLE] = ACTIONS(2012), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2012), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_API_AVAILABLE] = ACTIONS(2012), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_API_DEPRECATED] = ACTIONS(2012), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2012), + [anon_sym___deprecated_msg] = ACTIONS(2012), + [anon_sym___deprecated_enum_msg] = ACTIONS(2012), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2012), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2012), + [anon_sym_ATimplementation] = ACTIONS(2014), + [anon_sym_NS_ENUM] = ACTIONS(2012), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2012), + [anon_sym_NS_OPTIONS] = ACTIONS(2012), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym___typeof] = ACTIONS(2012), + [anon_sym___typeof__] = ACTIONS(2012), + [sym_self] = ACTIONS(2012), + [sym_super] = ACTIONS(2012), + [sym_nil] = ACTIONS(2012), + [sym_id] = ACTIONS(2012), + [sym_instancetype] = ACTIONS(2012), + [sym_Class] = ACTIONS(2012), + [sym_SEL] = ACTIONS(2012), + [sym_IMP] = ACTIONS(2012), + [sym_BOOL] = ACTIONS(2012), + [sym_auto] = ACTIONS(2012), + [anon_sym_ATautoreleasepool] = ACTIONS(2014), + [anon_sym_ATsynchronized] = ACTIONS(2014), + [anon_sym_ATtry] = ACTIONS(2014), + [anon_sym_ATthrow] = ACTIONS(2014), + [anon_sym_ATselector] = ACTIONS(2014), + [anon_sym_ATencode] = ACTIONS(2014), + [anon_sym_AT] = ACTIONS(2012), + [sym_YES] = ACTIONS(2012), + [sym_NO] = ACTIONS(2012), + [anon_sym___builtin_available] = ACTIONS(2012), + [anon_sym_ATavailable] = ACTIONS(2014), + [anon_sym_va_arg] = ACTIONS(2012), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1247] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1248] = { + [sym_identifier] = ACTIONS(1952), + [aux_sym_preproc_include_token1] = ACTIONS(1954), + [aux_sym_preproc_def_token1] = ACTIONS(1954), + [aux_sym_preproc_if_token1] = ACTIONS(1952), + [aux_sym_preproc_if_token2] = ACTIONS(1952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1952), + [anon_sym_LPAREN2] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_TILDE] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_typedef] = ACTIONS(1952), + [anon_sym_extern] = ACTIONS(1952), + [anon_sym___attribute] = ACTIONS(1952), + [anon_sym___attribute__] = ACTIONS(1952), + [anon_sym___declspec] = ACTIONS(1952), + [anon_sym___cdecl] = ACTIONS(1952), + [anon_sym___clrcall] = ACTIONS(1952), + [anon_sym___stdcall] = ACTIONS(1952), + [anon_sym___fastcall] = ACTIONS(1952), + [anon_sym___thiscall] = ACTIONS(1952), + [anon_sym___vectorcall] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_LBRACK] = ACTIONS(1954), + [anon_sym_static] = ACTIONS(1952), + [anon_sym_auto] = ACTIONS(1952), + [anon_sym_register] = ACTIONS(1952), + [anon_sym_inline] = ACTIONS(1952), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1952), + [anon_sym_const] = ACTIONS(1952), + [anon_sym_volatile] = ACTIONS(1952), + [anon_sym_restrict] = ACTIONS(1952), + [anon_sym__Atomic] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_out] = ACTIONS(1952), + [anon_sym_inout] = ACTIONS(1952), + [anon_sym_bycopy] = ACTIONS(1952), + [anon_sym_byref] = ACTIONS(1952), + [anon_sym_oneway] = ACTIONS(1952), + [anon_sym__Nullable] = ACTIONS(1952), + [anon_sym__Nonnull] = ACTIONS(1952), + [anon_sym__Nullable_result] = ACTIONS(1952), + [anon_sym__Null_unspecified] = ACTIONS(1952), + [anon_sym___autoreleasing] = ACTIONS(1952), + [anon_sym___nullable] = ACTIONS(1952), + [anon_sym___nonnull] = ACTIONS(1952), + [anon_sym___strong] = ACTIONS(1952), + [anon_sym___weak] = ACTIONS(1952), + [anon_sym___bridge] = ACTIONS(1952), + [anon_sym___bridge_transfer] = ACTIONS(1952), + [anon_sym___bridge_retained] = ACTIONS(1952), + [anon_sym___unsafe_unretained] = ACTIONS(1952), + [anon_sym___block] = ACTIONS(1952), + [anon_sym___kindof] = ACTIONS(1952), + [anon_sym___unused] = ACTIONS(1952), + [anon_sym__Complex] = ACTIONS(1952), + [anon_sym___complex] = ACTIONS(1952), + [anon_sym_IBOutlet] = ACTIONS(1952), + [anon_sym_IBInspectable] = ACTIONS(1952), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1952), + [anon_sym_signed] = ACTIONS(1952), + [anon_sym_unsigned] = ACTIONS(1952), + [anon_sym_long] = ACTIONS(1952), + [anon_sym_short] = ACTIONS(1952), + [sym_primitive_type] = ACTIONS(1952), + [anon_sym_enum] = ACTIONS(1952), + [anon_sym_struct] = ACTIONS(1952), + [anon_sym_union] = ACTIONS(1952), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1952), + [anon_sym_case] = ACTIONS(1952), + [anon_sym_default] = ACTIONS(1952), + [anon_sym_while] = ACTIONS(1952), + [anon_sym_do] = ACTIONS(1952), + [anon_sym_for] = ACTIONS(1952), + [anon_sym_return] = ACTIONS(1952), + [anon_sym_break] = ACTIONS(1952), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_goto] = ACTIONS(1952), + [anon_sym_DASH_DASH] = ACTIONS(1954), + [anon_sym_PLUS_PLUS] = ACTIONS(1954), + [anon_sym_sizeof] = ACTIONS(1952), + [sym_number_literal] = ACTIONS(1954), + [anon_sym_L_SQUOTE] = ACTIONS(1954), + [anon_sym_u_SQUOTE] = ACTIONS(1954), + [anon_sym_U_SQUOTE] = ACTIONS(1954), + [anon_sym_u8_SQUOTE] = ACTIONS(1954), + [anon_sym_SQUOTE] = ACTIONS(1954), + [anon_sym_L_DQUOTE] = ACTIONS(1954), + [anon_sym_u_DQUOTE] = ACTIONS(1954), + [anon_sym_U_DQUOTE] = ACTIONS(1954), + [anon_sym_u8_DQUOTE] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(1954), + [sym_true] = ACTIONS(1952), + [sym_false] = ACTIONS(1952), + [sym_null] = ACTIONS(1952), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1954), + [anon_sym_ATimport] = ACTIONS(1954), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1952), + [anon_sym_ATcompatibility_alias] = ACTIONS(1954), + [anon_sym_ATprotocol] = ACTIONS(1954), + [anon_sym_ATclass] = ACTIONS(1954), + [anon_sym_ATinterface] = ACTIONS(1954), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1952), + [sym_method_attribute_specifier] = ACTIONS(1952), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1952), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1952), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1952), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1952), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1952), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1952), + [anon_sym_NS_AVAILABLE] = ACTIONS(1952), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1952), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_API_AVAILABLE] = ACTIONS(1952), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1952), + [anon_sym_API_DEPRECATED] = ACTIONS(1952), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1952), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1952), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1952), + [anon_sym___deprecated_msg] = ACTIONS(1952), + [anon_sym___deprecated_enum_msg] = ACTIONS(1952), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1952), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1952), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1952), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1952), + [anon_sym_ATimplementation] = ACTIONS(1954), + [anon_sym_NS_ENUM] = ACTIONS(1952), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1952), + [anon_sym_NS_OPTIONS] = ACTIONS(1952), + [anon_sym_typeof] = ACTIONS(1952), + [anon_sym___typeof] = ACTIONS(1952), + [anon_sym___typeof__] = ACTIONS(1952), + [sym_self] = ACTIONS(1952), + [sym_super] = ACTIONS(1952), + [sym_nil] = ACTIONS(1952), + [sym_id] = ACTIONS(1952), + [sym_instancetype] = ACTIONS(1952), + [sym_Class] = ACTIONS(1952), + [sym_SEL] = ACTIONS(1952), + [sym_IMP] = ACTIONS(1952), + [sym_BOOL] = ACTIONS(1952), + [sym_auto] = ACTIONS(1952), + [anon_sym_ATautoreleasepool] = ACTIONS(1954), + [anon_sym_ATsynchronized] = ACTIONS(1954), + [anon_sym_ATtry] = ACTIONS(1954), + [anon_sym_ATthrow] = ACTIONS(1954), + [anon_sym_ATselector] = ACTIONS(1954), + [anon_sym_ATencode] = ACTIONS(1954), + [anon_sym_AT] = ACTIONS(1952), + [sym_YES] = ACTIONS(1952), + [sym_NO] = ACTIONS(1952), + [anon_sym___builtin_available] = ACTIONS(1952), + [anon_sym_ATavailable] = ACTIONS(1954), + [anon_sym_va_arg] = ACTIONS(1952), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1249] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1250] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1251] = { + [sym_identifier] = ACTIONS(2012), + [aux_sym_preproc_include_token1] = ACTIONS(2014), + [aux_sym_preproc_def_token1] = ACTIONS(2014), + [aux_sym_preproc_if_token1] = ACTIONS(2012), + [aux_sym_preproc_if_token2] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2012), + [anon_sym_LPAREN2] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_PLUS] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_CARET] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_typedef] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym___attribute] = ACTIONS(2012), + [anon_sym___attribute__] = ACTIONS(2012), + [anon_sym___declspec] = ACTIONS(2012), + [anon_sym___cdecl] = ACTIONS(2012), + [anon_sym___clrcall] = ACTIONS(2012), + [anon_sym___stdcall] = ACTIONS(2012), + [anon_sym___fastcall] = ACTIONS(2012), + [anon_sym___thiscall] = ACTIONS(2012), + [anon_sym___vectorcall] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_LBRACK] = ACTIONS(2014), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_auto] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_inline] = ACTIONS(2012), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_volatile] = ACTIONS(2012), + [anon_sym_restrict] = ACTIONS(2012), + [anon_sym__Atomic] = ACTIONS(2012), + [anon_sym_in] = ACTIONS(2012), + [anon_sym_out] = ACTIONS(2012), + [anon_sym_inout] = ACTIONS(2012), + [anon_sym_bycopy] = ACTIONS(2012), + [anon_sym_byref] = ACTIONS(2012), + [anon_sym_oneway] = ACTIONS(2012), + [anon_sym__Nullable] = ACTIONS(2012), + [anon_sym__Nonnull] = ACTIONS(2012), + [anon_sym__Nullable_result] = ACTIONS(2012), + [anon_sym__Null_unspecified] = ACTIONS(2012), + [anon_sym___autoreleasing] = ACTIONS(2012), + [anon_sym___nullable] = ACTIONS(2012), + [anon_sym___nonnull] = ACTIONS(2012), + [anon_sym___strong] = ACTIONS(2012), + [anon_sym___weak] = ACTIONS(2012), + [anon_sym___bridge] = ACTIONS(2012), + [anon_sym___bridge_transfer] = ACTIONS(2012), + [anon_sym___bridge_retained] = ACTIONS(2012), + [anon_sym___unsafe_unretained] = ACTIONS(2012), + [anon_sym___block] = ACTIONS(2012), + [anon_sym___kindof] = ACTIONS(2012), + [anon_sym___unused] = ACTIONS(2012), + [anon_sym__Complex] = ACTIONS(2012), + [anon_sym___complex] = ACTIONS(2012), + [anon_sym_IBOutlet] = ACTIONS(2012), + [anon_sym_IBInspectable] = ACTIONS(2012), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2012), + [anon_sym_signed] = ACTIONS(2012), + [anon_sym_unsigned] = ACTIONS(2012), + [anon_sym_long] = ACTIONS(2012), + [anon_sym_short] = ACTIONS(2012), + [sym_primitive_type] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_switch] = ACTIONS(2012), + [anon_sym_case] = ACTIONS(2012), + [anon_sym_default] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_goto] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2014), + [anon_sym_PLUS_PLUS] = ACTIONS(2014), + [anon_sym_sizeof] = ACTIONS(2012), + [sym_number_literal] = ACTIONS(2014), + [anon_sym_L_SQUOTE] = ACTIONS(2014), + [anon_sym_u_SQUOTE] = ACTIONS(2014), + [anon_sym_U_SQUOTE] = ACTIONS(2014), + [anon_sym_u8_SQUOTE] = ACTIONS(2014), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_L_DQUOTE] = ACTIONS(2014), + [anon_sym_u_DQUOTE] = ACTIONS(2014), + [anon_sym_U_DQUOTE] = ACTIONS(2014), + [anon_sym_u8_DQUOTE] = ACTIONS(2014), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym_true] = ACTIONS(2012), + [sym_false] = ACTIONS(2012), + [sym_null] = ACTIONS(2012), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2014), + [anon_sym_ATimport] = ACTIONS(2014), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2012), + [anon_sym_ATcompatibility_alias] = ACTIONS(2014), + [anon_sym_ATprotocol] = ACTIONS(2014), + [anon_sym_ATclass] = ACTIONS(2014), + [anon_sym_ATinterface] = ACTIONS(2014), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2012), + [sym_method_attribute_specifier] = ACTIONS(2012), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2012), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2012), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2012), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2012), + [anon_sym_NS_AVAILABLE] = ACTIONS(2012), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2012), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_API_AVAILABLE] = ACTIONS(2012), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_API_DEPRECATED] = ACTIONS(2012), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2012), + [anon_sym___deprecated_msg] = ACTIONS(2012), + [anon_sym___deprecated_enum_msg] = ACTIONS(2012), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2012), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2012), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2012), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2012), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2012), + [anon_sym_ATimplementation] = ACTIONS(2014), + [anon_sym_NS_ENUM] = ACTIONS(2012), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2012), + [anon_sym_NS_OPTIONS] = ACTIONS(2012), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym___typeof] = ACTIONS(2012), + [anon_sym___typeof__] = ACTIONS(2012), + [sym_self] = ACTIONS(2012), + [sym_super] = ACTIONS(2012), + [sym_nil] = ACTIONS(2012), + [sym_id] = ACTIONS(2012), + [sym_instancetype] = ACTIONS(2012), + [sym_Class] = ACTIONS(2012), + [sym_SEL] = ACTIONS(2012), + [sym_IMP] = ACTIONS(2012), + [sym_BOOL] = ACTIONS(2012), + [sym_auto] = ACTIONS(2012), + [anon_sym_ATautoreleasepool] = ACTIONS(2014), + [anon_sym_ATsynchronized] = ACTIONS(2014), + [anon_sym_ATtry] = ACTIONS(2014), + [anon_sym_ATthrow] = ACTIONS(2014), + [anon_sym_ATselector] = ACTIONS(2014), + [anon_sym_ATencode] = ACTIONS(2014), + [anon_sym_AT] = ACTIONS(2012), + [sym_YES] = ACTIONS(2012), + [sym_NO] = ACTIONS(2012), + [anon_sym___builtin_available] = ACTIONS(2012), + [anon_sym_ATavailable] = ACTIONS(2014), + [anon_sym_va_arg] = ACTIONS(2012), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1252] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1253] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1254] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1255] = { + [sym_identifier] = ACTIONS(1888), + [aux_sym_preproc_include_token1] = ACTIONS(1890), + [aux_sym_preproc_def_token1] = ACTIONS(1890), + [aux_sym_preproc_if_token1] = ACTIONS(1888), + [aux_sym_preproc_if_token2] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1888), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym___attribute] = ACTIONS(1888), + [anon_sym___attribute__] = ACTIONS(1888), + [anon_sym___declspec] = ACTIONS(1888), + [anon_sym___cdecl] = ACTIONS(1888), + [anon_sym___clrcall] = ACTIONS(1888), + [anon_sym___stdcall] = ACTIONS(1888), + [anon_sym___fastcall] = ACTIONS(1888), + [anon_sym___thiscall] = ACTIONS(1888), + [anon_sym___vectorcall] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_auto] = ACTIONS(1888), + [anon_sym_register] = ACTIONS(1888), + [anon_sym_inline] = ACTIONS(1888), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_volatile] = ACTIONS(1888), + [anon_sym_restrict] = ACTIONS(1888), + [anon_sym__Atomic] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_out] = ACTIONS(1888), + [anon_sym_inout] = ACTIONS(1888), + [anon_sym_bycopy] = ACTIONS(1888), + [anon_sym_byref] = ACTIONS(1888), + [anon_sym_oneway] = ACTIONS(1888), + [anon_sym__Nullable] = ACTIONS(1888), + [anon_sym__Nonnull] = ACTIONS(1888), + [anon_sym__Nullable_result] = ACTIONS(1888), + [anon_sym__Null_unspecified] = ACTIONS(1888), + [anon_sym___autoreleasing] = ACTIONS(1888), + [anon_sym___nullable] = ACTIONS(1888), + [anon_sym___nonnull] = ACTIONS(1888), + [anon_sym___strong] = ACTIONS(1888), + [anon_sym___weak] = ACTIONS(1888), + [anon_sym___bridge] = ACTIONS(1888), + [anon_sym___bridge_transfer] = ACTIONS(1888), + [anon_sym___bridge_retained] = ACTIONS(1888), + [anon_sym___unsafe_unretained] = ACTIONS(1888), + [anon_sym___block] = ACTIONS(1888), + [anon_sym___kindof] = ACTIONS(1888), + [anon_sym___unused] = ACTIONS(1888), + [anon_sym__Complex] = ACTIONS(1888), + [anon_sym___complex] = ACTIONS(1888), + [anon_sym_IBOutlet] = ACTIONS(1888), + [anon_sym_IBInspectable] = ACTIONS(1888), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1888), + [anon_sym_signed] = ACTIONS(1888), + [anon_sym_unsigned] = ACTIONS(1888), + [anon_sym_long] = ACTIONS(1888), + [anon_sym_short] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_switch] = ACTIONS(1888), + [anon_sym_case] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_goto] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_sizeof] = ACTIONS(1888), + [sym_number_literal] = ACTIONS(1890), + [anon_sym_L_SQUOTE] = ACTIONS(1890), + [anon_sym_u_SQUOTE] = ACTIONS(1890), + [anon_sym_U_SQUOTE] = ACTIONS(1890), + [anon_sym_u8_SQUOTE] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_L_DQUOTE] = ACTIONS(1890), + [anon_sym_u_DQUOTE] = ACTIONS(1890), + [anon_sym_U_DQUOTE] = ACTIONS(1890), + [anon_sym_u8_DQUOTE] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_true] = ACTIONS(1888), + [sym_false] = ACTIONS(1888), + [sym_null] = ACTIONS(1888), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1890), + [anon_sym_ATimport] = ACTIONS(1890), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1888), + [anon_sym_ATcompatibility_alias] = ACTIONS(1890), + [anon_sym_ATprotocol] = ACTIONS(1890), + [anon_sym_ATclass] = ACTIONS(1890), + [anon_sym_ATinterface] = ACTIONS(1890), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1888), + [sym_method_attribute_specifier] = ACTIONS(1888), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1888), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE] = ACTIONS(1888), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_API_AVAILABLE] = ACTIONS(1888), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_API_DEPRECATED] = ACTIONS(1888), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1888), + [anon_sym___deprecated_msg] = ACTIONS(1888), + [anon_sym___deprecated_enum_msg] = ACTIONS(1888), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1888), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1888), + [anon_sym_ATimplementation] = ACTIONS(1890), + [anon_sym_NS_ENUM] = ACTIONS(1888), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1888), + [anon_sym_NS_OPTIONS] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym___typeof] = ACTIONS(1888), + [anon_sym___typeof__] = ACTIONS(1888), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_nil] = ACTIONS(1888), + [sym_id] = ACTIONS(1888), + [sym_instancetype] = ACTIONS(1888), + [sym_Class] = ACTIONS(1888), + [sym_SEL] = ACTIONS(1888), + [sym_IMP] = ACTIONS(1888), + [sym_BOOL] = ACTIONS(1888), + [sym_auto] = ACTIONS(1888), + [anon_sym_ATautoreleasepool] = ACTIONS(1890), + [anon_sym_ATsynchronized] = ACTIONS(1890), + [anon_sym_ATtry] = ACTIONS(1890), + [anon_sym_ATthrow] = ACTIONS(1890), + [anon_sym_ATselector] = ACTIONS(1890), + [anon_sym_ATencode] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [sym_YES] = ACTIONS(1888), + [sym_NO] = ACTIONS(1888), + [anon_sym___builtin_available] = ACTIONS(1888), + [anon_sym_ATavailable] = ACTIONS(1890), + [anon_sym_va_arg] = ACTIONS(1888), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1256] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1257] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1258] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1259] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1260] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1261] = { + [sym_identifier] = ACTIONS(2072), + [aux_sym_preproc_include_token1] = ACTIONS(2074), + [aux_sym_preproc_def_token1] = ACTIONS(2074), + [aux_sym_preproc_if_token1] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2072), + [anon_sym_LPAREN2] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_TILDE] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_PLUS] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_CARET] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_typedef] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym___attribute] = ACTIONS(2072), + [anon_sym___attribute__] = ACTIONS(2072), + [anon_sym___declspec] = ACTIONS(2072), + [anon_sym___cdecl] = ACTIONS(2072), + [anon_sym___clrcall] = ACTIONS(2072), + [anon_sym___stdcall] = ACTIONS(2072), + [anon_sym___fastcall] = ACTIONS(2072), + [anon_sym___thiscall] = ACTIONS(2072), + [anon_sym___vectorcall] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_auto] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_inline] = ACTIONS(2072), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_volatile] = ACTIONS(2072), + [anon_sym_restrict] = ACTIONS(2072), + [anon_sym__Atomic] = ACTIONS(2072), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_out] = ACTIONS(2072), + [anon_sym_inout] = ACTIONS(2072), + [anon_sym_bycopy] = ACTIONS(2072), + [anon_sym_byref] = ACTIONS(2072), + [anon_sym_oneway] = ACTIONS(2072), + [anon_sym__Nullable] = ACTIONS(2072), + [anon_sym__Nonnull] = ACTIONS(2072), + [anon_sym__Nullable_result] = ACTIONS(2072), + [anon_sym__Null_unspecified] = ACTIONS(2072), + [anon_sym___autoreleasing] = ACTIONS(2072), + [anon_sym___nullable] = ACTIONS(2072), + [anon_sym___nonnull] = ACTIONS(2072), + [anon_sym___strong] = ACTIONS(2072), + [anon_sym___weak] = ACTIONS(2072), + [anon_sym___bridge] = ACTIONS(2072), + [anon_sym___bridge_transfer] = ACTIONS(2072), + [anon_sym___bridge_retained] = ACTIONS(2072), + [anon_sym___unsafe_unretained] = ACTIONS(2072), + [anon_sym___block] = ACTIONS(2072), + [anon_sym___kindof] = ACTIONS(2072), + [anon_sym___unused] = ACTIONS(2072), + [anon_sym__Complex] = ACTIONS(2072), + [anon_sym___complex] = ACTIONS(2072), + [anon_sym_IBOutlet] = ACTIONS(2072), + [anon_sym_IBInspectable] = ACTIONS(2072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2072), + [anon_sym_signed] = ACTIONS(2072), + [anon_sym_unsigned] = ACTIONS(2072), + [anon_sym_long] = ACTIONS(2072), + [anon_sym_short] = ACTIONS(2072), + [sym_primitive_type] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_switch] = ACTIONS(2072), + [anon_sym_case] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_goto] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2074), + [anon_sym_PLUS_PLUS] = ACTIONS(2074), + [anon_sym_sizeof] = ACTIONS(2072), + [sym_number_literal] = ACTIONS(2074), + [anon_sym_L_SQUOTE] = ACTIONS(2074), + [anon_sym_u_SQUOTE] = ACTIONS(2074), + [anon_sym_U_SQUOTE] = ACTIONS(2074), + [anon_sym_u8_SQUOTE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_L_DQUOTE] = ACTIONS(2074), + [anon_sym_u_DQUOTE] = ACTIONS(2074), + [anon_sym_U_DQUOTE] = ACTIONS(2074), + [anon_sym_u8_DQUOTE] = ACTIONS(2074), + [anon_sym_DQUOTE] = ACTIONS(2074), + [sym_true] = ACTIONS(2072), + [sym_false] = ACTIONS(2072), + [sym_null] = ACTIONS(2072), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2074), + [anon_sym_ATimport] = ACTIONS(2074), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2072), + [anon_sym_ATcompatibility_alias] = ACTIONS(2074), + [anon_sym_ATprotocol] = ACTIONS(2074), + [anon_sym_ATclass] = ACTIONS(2074), + [anon_sym_ATinterface] = ACTIONS(2074), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2072), + [sym_method_attribute_specifier] = ACTIONS(2072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE] = ACTIONS(2072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_API_AVAILABLE] = ACTIONS(2072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_API_DEPRECATED] = ACTIONS(2072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2072), + [anon_sym___deprecated_msg] = ACTIONS(2072), + [anon_sym___deprecated_enum_msg] = ACTIONS(2072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2072), + [anon_sym_ATimplementation] = ACTIONS(2074), + [anon_sym_NS_ENUM] = ACTIONS(2072), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2072), + [anon_sym_NS_OPTIONS] = ACTIONS(2072), + [anon_sym_typeof] = ACTIONS(2072), + [anon_sym___typeof] = ACTIONS(2072), + [anon_sym___typeof__] = ACTIONS(2072), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_nil] = ACTIONS(2072), + [sym_id] = ACTIONS(2072), + [sym_instancetype] = ACTIONS(2072), + [sym_Class] = ACTIONS(2072), + [sym_SEL] = ACTIONS(2072), + [sym_IMP] = ACTIONS(2072), + [sym_BOOL] = ACTIONS(2072), + [sym_auto] = ACTIONS(2072), + [anon_sym_ATautoreleasepool] = ACTIONS(2074), + [anon_sym_ATsynchronized] = ACTIONS(2074), + [anon_sym_ATtry] = ACTIONS(2074), + [anon_sym_ATthrow] = ACTIONS(2074), + [anon_sym_ATselector] = ACTIONS(2074), + [anon_sym_ATencode] = ACTIONS(2074), + [anon_sym_AT] = ACTIONS(2072), + [sym_YES] = ACTIONS(2072), + [sym_NO] = ACTIONS(2072), + [anon_sym___builtin_available] = ACTIONS(2072), + [anon_sym_ATavailable] = ACTIONS(2074), + [anon_sym_va_arg] = ACTIONS(2072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1262] = { + [sym_identifier] = ACTIONS(2060), + [aux_sym_preproc_include_token1] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2062), + [aux_sym_preproc_if_token1] = ACTIONS(2060), + [aux_sym_preproc_if_token2] = ACTIONS(2060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2060), + [anon_sym_LPAREN2] = ACTIONS(2062), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_typedef] = ACTIONS(2060), + [anon_sym_extern] = ACTIONS(2060), + [anon_sym___attribute] = ACTIONS(2060), + [anon_sym___attribute__] = ACTIONS(2060), + [anon_sym___declspec] = ACTIONS(2060), + [anon_sym___cdecl] = ACTIONS(2060), + [anon_sym___clrcall] = ACTIONS(2060), + [anon_sym___stdcall] = ACTIONS(2060), + [anon_sym___fastcall] = ACTIONS(2060), + [anon_sym___thiscall] = ACTIONS(2060), + [anon_sym___vectorcall] = ACTIONS(2060), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2062), + [anon_sym_static] = ACTIONS(2060), + [anon_sym_auto] = ACTIONS(2060), + [anon_sym_register] = ACTIONS(2060), + [anon_sym_inline] = ACTIONS(2060), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2060), + [anon_sym_const] = ACTIONS(2060), + [anon_sym_volatile] = ACTIONS(2060), + [anon_sym_restrict] = ACTIONS(2060), + [anon_sym__Atomic] = ACTIONS(2060), + [anon_sym_in] = ACTIONS(2060), + [anon_sym_out] = ACTIONS(2060), + [anon_sym_inout] = ACTIONS(2060), + [anon_sym_bycopy] = ACTIONS(2060), + [anon_sym_byref] = ACTIONS(2060), + [anon_sym_oneway] = ACTIONS(2060), + [anon_sym__Nullable] = ACTIONS(2060), + [anon_sym__Nonnull] = ACTIONS(2060), + [anon_sym__Nullable_result] = ACTIONS(2060), + [anon_sym__Null_unspecified] = ACTIONS(2060), + [anon_sym___autoreleasing] = ACTIONS(2060), + [anon_sym___nullable] = ACTIONS(2060), + [anon_sym___nonnull] = ACTIONS(2060), + [anon_sym___strong] = ACTIONS(2060), + [anon_sym___weak] = ACTIONS(2060), + [anon_sym___bridge] = ACTIONS(2060), + [anon_sym___bridge_transfer] = ACTIONS(2060), + [anon_sym___bridge_retained] = ACTIONS(2060), + [anon_sym___unsafe_unretained] = ACTIONS(2060), + [anon_sym___block] = ACTIONS(2060), + [anon_sym___kindof] = ACTIONS(2060), + [anon_sym___unused] = ACTIONS(2060), + [anon_sym__Complex] = ACTIONS(2060), + [anon_sym___complex] = ACTIONS(2060), + [anon_sym_IBOutlet] = ACTIONS(2060), + [anon_sym_IBInspectable] = ACTIONS(2060), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2060), + [anon_sym_signed] = ACTIONS(2060), + [anon_sym_unsigned] = ACTIONS(2060), + [anon_sym_long] = ACTIONS(2060), + [anon_sym_short] = ACTIONS(2060), + [sym_primitive_type] = ACTIONS(2060), + [anon_sym_enum] = ACTIONS(2060), + [anon_sym_struct] = ACTIONS(2060), + [anon_sym_union] = ACTIONS(2060), + [anon_sym_if] = ACTIONS(2060), + [anon_sym_switch] = ACTIONS(2060), + [anon_sym_case] = ACTIONS(2060), + [anon_sym_default] = ACTIONS(2060), + [anon_sym_while] = ACTIONS(2060), + [anon_sym_do] = ACTIONS(2060), + [anon_sym_for] = ACTIONS(2060), + [anon_sym_return] = ACTIONS(2060), + [anon_sym_break] = ACTIONS(2060), + [anon_sym_continue] = ACTIONS(2060), + [anon_sym_goto] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2062), + [anon_sym_PLUS_PLUS] = ACTIONS(2062), + [anon_sym_sizeof] = ACTIONS(2060), + [sym_number_literal] = ACTIONS(2062), + [anon_sym_L_SQUOTE] = ACTIONS(2062), + [anon_sym_u_SQUOTE] = ACTIONS(2062), + [anon_sym_U_SQUOTE] = ACTIONS(2062), + [anon_sym_u8_SQUOTE] = ACTIONS(2062), + [anon_sym_SQUOTE] = ACTIONS(2062), + [anon_sym_L_DQUOTE] = ACTIONS(2062), + [anon_sym_u_DQUOTE] = ACTIONS(2062), + [anon_sym_U_DQUOTE] = ACTIONS(2062), + [anon_sym_u8_DQUOTE] = ACTIONS(2062), + [anon_sym_DQUOTE] = ACTIONS(2062), + [sym_true] = ACTIONS(2060), + [sym_false] = ACTIONS(2060), + [sym_null] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2062), + [anon_sym_ATimport] = ACTIONS(2062), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2060), + [anon_sym_ATcompatibility_alias] = ACTIONS(2062), + [anon_sym_ATprotocol] = ACTIONS(2062), + [anon_sym_ATclass] = ACTIONS(2062), + [anon_sym_ATinterface] = ACTIONS(2062), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2060), + [sym_method_attribute_specifier] = ACTIONS(2060), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2060), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2060), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2060), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2060), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2060), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2060), + [anon_sym_NS_AVAILABLE] = ACTIONS(2060), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2060), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_API_AVAILABLE] = ACTIONS(2060), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2060), + [anon_sym_API_DEPRECATED] = ACTIONS(2060), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2060), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2060), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2060), + [anon_sym___deprecated_msg] = ACTIONS(2060), + [anon_sym___deprecated_enum_msg] = ACTIONS(2060), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2060), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2060), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2060), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2060), + [anon_sym_ATimplementation] = ACTIONS(2062), + [anon_sym_NS_ENUM] = ACTIONS(2060), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2060), + [anon_sym_NS_OPTIONS] = ACTIONS(2060), + [anon_sym_typeof] = ACTIONS(2060), + [anon_sym___typeof] = ACTIONS(2060), + [anon_sym___typeof__] = ACTIONS(2060), + [sym_self] = ACTIONS(2060), + [sym_super] = ACTIONS(2060), + [sym_nil] = ACTIONS(2060), + [sym_id] = ACTIONS(2060), + [sym_instancetype] = ACTIONS(2060), + [sym_Class] = ACTIONS(2060), + [sym_SEL] = ACTIONS(2060), + [sym_IMP] = ACTIONS(2060), + [sym_BOOL] = ACTIONS(2060), + [sym_auto] = ACTIONS(2060), + [anon_sym_ATautoreleasepool] = ACTIONS(2062), + [anon_sym_ATsynchronized] = ACTIONS(2062), + [anon_sym_ATtry] = ACTIONS(2062), + [anon_sym_ATthrow] = ACTIONS(2062), + [anon_sym_ATselector] = ACTIONS(2062), + [anon_sym_ATencode] = ACTIONS(2062), + [anon_sym_AT] = ACTIONS(2060), + [sym_YES] = ACTIONS(2060), + [sym_NO] = ACTIONS(2060), + [anon_sym___builtin_available] = ACTIONS(2060), + [anon_sym_ATavailable] = ACTIONS(2062), + [anon_sym_va_arg] = ACTIONS(2060), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1263] = { + [sym_identifier] = ACTIONS(2000), + [aux_sym_preproc_include_token1] = ACTIONS(2002), + [aux_sym_preproc_def_token1] = ACTIONS(2002), + [aux_sym_preproc_if_token1] = ACTIONS(2000), + [aux_sym_preproc_if_token2] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2000), + [anon_sym_LPAREN2] = ACTIONS(2002), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_PLUS] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_CARET] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_typedef] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym___attribute] = ACTIONS(2000), + [anon_sym___attribute__] = ACTIONS(2000), + [anon_sym___declspec] = ACTIONS(2000), + [anon_sym___cdecl] = ACTIONS(2000), + [anon_sym___clrcall] = ACTIONS(2000), + [anon_sym___stdcall] = ACTIONS(2000), + [anon_sym___fastcall] = ACTIONS(2000), + [anon_sym___thiscall] = ACTIONS(2000), + [anon_sym___vectorcall] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym_static] = ACTIONS(2000), + [anon_sym_auto] = ACTIONS(2000), + [anon_sym_register] = ACTIONS(2000), + [anon_sym_inline] = ACTIONS(2000), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [anon_sym_volatile] = ACTIONS(2000), + [anon_sym_restrict] = ACTIONS(2000), + [anon_sym__Atomic] = ACTIONS(2000), + [anon_sym_in] = ACTIONS(2000), + [anon_sym_out] = ACTIONS(2000), + [anon_sym_inout] = ACTIONS(2000), + [anon_sym_bycopy] = ACTIONS(2000), + [anon_sym_byref] = ACTIONS(2000), + [anon_sym_oneway] = ACTIONS(2000), + [anon_sym__Nullable] = ACTIONS(2000), + [anon_sym__Nonnull] = ACTIONS(2000), + [anon_sym__Nullable_result] = ACTIONS(2000), + [anon_sym__Null_unspecified] = ACTIONS(2000), + [anon_sym___autoreleasing] = ACTIONS(2000), + [anon_sym___nullable] = ACTIONS(2000), + [anon_sym___nonnull] = ACTIONS(2000), + [anon_sym___strong] = ACTIONS(2000), + [anon_sym___weak] = ACTIONS(2000), + [anon_sym___bridge] = ACTIONS(2000), + [anon_sym___bridge_transfer] = ACTIONS(2000), + [anon_sym___bridge_retained] = ACTIONS(2000), + [anon_sym___unsafe_unretained] = ACTIONS(2000), + [anon_sym___block] = ACTIONS(2000), + [anon_sym___kindof] = ACTIONS(2000), + [anon_sym___unused] = ACTIONS(2000), + [anon_sym__Complex] = ACTIONS(2000), + [anon_sym___complex] = ACTIONS(2000), + [anon_sym_IBOutlet] = ACTIONS(2000), + [anon_sym_IBInspectable] = ACTIONS(2000), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2000), + [anon_sym_signed] = ACTIONS(2000), + [anon_sym_unsigned] = ACTIONS(2000), + [anon_sym_long] = ACTIONS(2000), + [anon_sym_short] = ACTIONS(2000), + [sym_primitive_type] = ACTIONS(2000), + [anon_sym_enum] = ACTIONS(2000), + [anon_sym_struct] = ACTIONS(2000), + [anon_sym_union] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_switch] = ACTIONS(2000), + [anon_sym_case] = ACTIONS(2000), + [anon_sym_default] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_do] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_goto] = ACTIONS(2000), + [anon_sym_DASH_DASH] = ACTIONS(2002), + [anon_sym_PLUS_PLUS] = ACTIONS(2002), + [anon_sym_sizeof] = ACTIONS(2000), + [sym_number_literal] = ACTIONS(2002), + [anon_sym_L_SQUOTE] = ACTIONS(2002), + [anon_sym_u_SQUOTE] = ACTIONS(2002), + [anon_sym_U_SQUOTE] = ACTIONS(2002), + [anon_sym_u8_SQUOTE] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_L_DQUOTE] = ACTIONS(2002), + [anon_sym_u_DQUOTE] = ACTIONS(2002), + [anon_sym_U_DQUOTE] = ACTIONS(2002), + [anon_sym_u8_DQUOTE] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [sym_true] = ACTIONS(2000), + [sym_false] = ACTIONS(2000), + [sym_null] = ACTIONS(2000), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2002), + [anon_sym_ATimport] = ACTIONS(2002), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2000), + [anon_sym_ATcompatibility_alias] = ACTIONS(2002), + [anon_sym_ATprotocol] = ACTIONS(2002), + [anon_sym_ATclass] = ACTIONS(2002), + [anon_sym_ATinterface] = ACTIONS(2002), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2000), + [sym_method_attribute_specifier] = ACTIONS(2000), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2000), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2000), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2000), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2000), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2000), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2000), + [anon_sym_NS_AVAILABLE] = ACTIONS(2000), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2000), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2000), + [anon_sym_API_AVAILABLE] = ACTIONS(2000), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2000), + [anon_sym_API_DEPRECATED] = ACTIONS(2000), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2000), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2000), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2000), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2000), + [anon_sym___deprecated_msg] = ACTIONS(2000), + [anon_sym___deprecated_enum_msg] = ACTIONS(2000), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2000), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2000), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2000), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2000), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2000), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2000), + [anon_sym_ATimplementation] = ACTIONS(2002), + [anon_sym_NS_ENUM] = ACTIONS(2000), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2000), + [anon_sym_NS_OPTIONS] = ACTIONS(2000), + [anon_sym_typeof] = ACTIONS(2000), + [anon_sym___typeof] = ACTIONS(2000), + [anon_sym___typeof__] = ACTIONS(2000), + [sym_self] = ACTIONS(2000), + [sym_super] = ACTIONS(2000), + [sym_nil] = ACTIONS(2000), + [sym_id] = ACTIONS(2000), + [sym_instancetype] = ACTIONS(2000), + [sym_Class] = ACTIONS(2000), + [sym_SEL] = ACTIONS(2000), + [sym_IMP] = ACTIONS(2000), + [sym_BOOL] = ACTIONS(2000), + [sym_auto] = ACTIONS(2000), + [anon_sym_ATautoreleasepool] = ACTIONS(2002), + [anon_sym_ATsynchronized] = ACTIONS(2002), + [anon_sym_ATtry] = ACTIONS(2002), + [anon_sym_ATthrow] = ACTIONS(2002), + [anon_sym_ATselector] = ACTIONS(2002), + [anon_sym_ATencode] = ACTIONS(2002), + [anon_sym_AT] = ACTIONS(2000), + [sym_YES] = ACTIONS(2000), + [sym_NO] = ACTIONS(2000), + [anon_sym___builtin_available] = ACTIONS(2000), + [anon_sym_ATavailable] = ACTIONS(2002), + [anon_sym_va_arg] = ACTIONS(2000), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1264] = { + [sym_identifier] = ACTIONS(2060), + [aux_sym_preproc_include_token1] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2062), + [aux_sym_preproc_if_token1] = ACTIONS(2060), + [aux_sym_preproc_if_token2] = ACTIONS(2060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2060), + [anon_sym_LPAREN2] = ACTIONS(2062), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_PLUS] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(2062), + [anon_sym_CARET] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_typedef] = ACTIONS(2060), + [anon_sym_extern] = ACTIONS(2060), + [anon_sym___attribute] = ACTIONS(2060), + [anon_sym___attribute__] = ACTIONS(2060), + [anon_sym___declspec] = ACTIONS(2060), + [anon_sym___cdecl] = ACTIONS(2060), + [anon_sym___clrcall] = ACTIONS(2060), + [anon_sym___stdcall] = ACTIONS(2060), + [anon_sym___fastcall] = ACTIONS(2060), + [anon_sym___thiscall] = ACTIONS(2060), + [anon_sym___vectorcall] = ACTIONS(2060), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2062), + [anon_sym_static] = ACTIONS(2060), + [anon_sym_auto] = ACTIONS(2060), + [anon_sym_register] = ACTIONS(2060), + [anon_sym_inline] = ACTIONS(2060), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2060), + [anon_sym_const] = ACTIONS(2060), + [anon_sym_volatile] = ACTIONS(2060), + [anon_sym_restrict] = ACTIONS(2060), + [anon_sym__Atomic] = ACTIONS(2060), + [anon_sym_in] = ACTIONS(2060), + [anon_sym_out] = ACTIONS(2060), + [anon_sym_inout] = ACTIONS(2060), + [anon_sym_bycopy] = ACTIONS(2060), + [anon_sym_byref] = ACTIONS(2060), + [anon_sym_oneway] = ACTIONS(2060), + [anon_sym__Nullable] = ACTIONS(2060), + [anon_sym__Nonnull] = ACTIONS(2060), + [anon_sym__Nullable_result] = ACTIONS(2060), + [anon_sym__Null_unspecified] = ACTIONS(2060), + [anon_sym___autoreleasing] = ACTIONS(2060), + [anon_sym___nullable] = ACTIONS(2060), + [anon_sym___nonnull] = ACTIONS(2060), + [anon_sym___strong] = ACTIONS(2060), + [anon_sym___weak] = ACTIONS(2060), + [anon_sym___bridge] = ACTIONS(2060), + [anon_sym___bridge_transfer] = ACTIONS(2060), + [anon_sym___bridge_retained] = ACTIONS(2060), + [anon_sym___unsafe_unretained] = ACTIONS(2060), + [anon_sym___block] = ACTIONS(2060), + [anon_sym___kindof] = ACTIONS(2060), + [anon_sym___unused] = ACTIONS(2060), + [anon_sym__Complex] = ACTIONS(2060), + [anon_sym___complex] = ACTIONS(2060), + [anon_sym_IBOutlet] = ACTIONS(2060), + [anon_sym_IBInspectable] = ACTIONS(2060), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2060), + [anon_sym_signed] = ACTIONS(2060), + [anon_sym_unsigned] = ACTIONS(2060), + [anon_sym_long] = ACTIONS(2060), + [anon_sym_short] = ACTIONS(2060), + [sym_primitive_type] = ACTIONS(2060), + [anon_sym_enum] = ACTIONS(2060), + [anon_sym_struct] = ACTIONS(2060), + [anon_sym_union] = ACTIONS(2060), + [anon_sym_if] = ACTIONS(2060), + [anon_sym_switch] = ACTIONS(2060), + [anon_sym_case] = ACTIONS(2060), + [anon_sym_default] = ACTIONS(2060), + [anon_sym_while] = ACTIONS(2060), + [anon_sym_do] = ACTIONS(2060), + [anon_sym_for] = ACTIONS(2060), + [anon_sym_return] = ACTIONS(2060), + [anon_sym_break] = ACTIONS(2060), + [anon_sym_continue] = ACTIONS(2060), + [anon_sym_goto] = ACTIONS(2060), + [anon_sym_DASH_DASH] = ACTIONS(2062), + [anon_sym_PLUS_PLUS] = ACTIONS(2062), + [anon_sym_sizeof] = ACTIONS(2060), + [sym_number_literal] = ACTIONS(2062), + [anon_sym_L_SQUOTE] = ACTIONS(2062), + [anon_sym_u_SQUOTE] = ACTIONS(2062), + [anon_sym_U_SQUOTE] = ACTIONS(2062), + [anon_sym_u8_SQUOTE] = ACTIONS(2062), + [anon_sym_SQUOTE] = ACTIONS(2062), + [anon_sym_L_DQUOTE] = ACTIONS(2062), + [anon_sym_u_DQUOTE] = ACTIONS(2062), + [anon_sym_U_DQUOTE] = ACTIONS(2062), + [anon_sym_u8_DQUOTE] = ACTIONS(2062), + [anon_sym_DQUOTE] = ACTIONS(2062), + [sym_true] = ACTIONS(2060), + [sym_false] = ACTIONS(2060), + [sym_null] = ACTIONS(2060), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2062), + [anon_sym_ATimport] = ACTIONS(2062), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2060), + [anon_sym_ATcompatibility_alias] = ACTIONS(2062), + [anon_sym_ATprotocol] = ACTIONS(2062), + [anon_sym_ATclass] = ACTIONS(2062), + [anon_sym_ATinterface] = ACTIONS(2062), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2060), + [sym_method_attribute_specifier] = ACTIONS(2060), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2060), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2060), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2060), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2060), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2060), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2060), + [anon_sym_NS_AVAILABLE] = ACTIONS(2060), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2060), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_API_AVAILABLE] = ACTIONS(2060), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2060), + [anon_sym_API_DEPRECATED] = ACTIONS(2060), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2060), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2060), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2060), + [anon_sym___deprecated_msg] = ACTIONS(2060), + [anon_sym___deprecated_enum_msg] = ACTIONS(2060), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2060), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2060), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2060), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2060), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2060), + [anon_sym_ATimplementation] = ACTIONS(2062), + [anon_sym_NS_ENUM] = ACTIONS(2060), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2060), + [anon_sym_NS_OPTIONS] = ACTIONS(2060), + [anon_sym_typeof] = ACTIONS(2060), + [anon_sym___typeof] = ACTIONS(2060), + [anon_sym___typeof__] = ACTIONS(2060), + [sym_self] = ACTIONS(2060), + [sym_super] = ACTIONS(2060), + [sym_nil] = ACTIONS(2060), + [sym_id] = ACTIONS(2060), + [sym_instancetype] = ACTIONS(2060), + [sym_Class] = ACTIONS(2060), + [sym_SEL] = ACTIONS(2060), + [sym_IMP] = ACTIONS(2060), + [sym_BOOL] = ACTIONS(2060), + [sym_auto] = ACTIONS(2060), + [anon_sym_ATautoreleasepool] = ACTIONS(2062), + [anon_sym_ATsynchronized] = ACTIONS(2062), + [anon_sym_ATtry] = ACTIONS(2062), + [anon_sym_ATthrow] = ACTIONS(2062), + [anon_sym_ATselector] = ACTIONS(2062), + [anon_sym_ATencode] = ACTIONS(2062), + [anon_sym_AT] = ACTIONS(2060), + [sym_YES] = ACTIONS(2060), + [sym_NO] = ACTIONS(2060), + [anon_sym___builtin_available] = ACTIONS(2060), + [anon_sym_ATavailable] = ACTIONS(2062), + [anon_sym_va_arg] = ACTIONS(2060), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1265] = { + [sym_identifier] = ACTIONS(2056), + [aux_sym_preproc_include_token1] = ACTIONS(2058), + [aux_sym_preproc_def_token1] = ACTIONS(2058), + [aux_sym_preproc_if_token1] = ACTIONS(2056), + [aux_sym_preproc_if_token2] = ACTIONS(2056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2056), + [anon_sym_LPAREN2] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2058), + [anon_sym_TILDE] = ACTIONS(2058), + [anon_sym_DASH] = ACTIONS(2056), + [anon_sym_PLUS] = ACTIONS(2056), + [anon_sym_STAR] = ACTIONS(2058), + [anon_sym_CARET] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2058), + [anon_sym_typedef] = ACTIONS(2056), + [anon_sym_extern] = ACTIONS(2056), + [anon_sym___attribute] = ACTIONS(2056), + [anon_sym___attribute__] = ACTIONS(2056), + [anon_sym___declspec] = ACTIONS(2056), + [anon_sym___cdecl] = ACTIONS(2056), + [anon_sym___clrcall] = ACTIONS(2056), + [anon_sym___stdcall] = ACTIONS(2056), + [anon_sym___fastcall] = ACTIONS(2056), + [anon_sym___thiscall] = ACTIONS(2056), + [anon_sym___vectorcall] = ACTIONS(2056), + [anon_sym_LBRACE] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(2058), + [anon_sym_static] = ACTIONS(2056), + [anon_sym_auto] = ACTIONS(2056), + [anon_sym_register] = ACTIONS(2056), + [anon_sym_inline] = ACTIONS(2056), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2056), + [anon_sym_const] = ACTIONS(2056), + [anon_sym_volatile] = ACTIONS(2056), + [anon_sym_restrict] = ACTIONS(2056), + [anon_sym__Atomic] = ACTIONS(2056), + [anon_sym_in] = ACTIONS(2056), + [anon_sym_out] = ACTIONS(2056), + [anon_sym_inout] = ACTIONS(2056), + [anon_sym_bycopy] = ACTIONS(2056), + [anon_sym_byref] = ACTIONS(2056), + [anon_sym_oneway] = ACTIONS(2056), + [anon_sym__Nullable] = ACTIONS(2056), + [anon_sym__Nonnull] = ACTIONS(2056), + [anon_sym__Nullable_result] = ACTIONS(2056), + [anon_sym__Null_unspecified] = ACTIONS(2056), + [anon_sym___autoreleasing] = ACTIONS(2056), + [anon_sym___nullable] = ACTIONS(2056), + [anon_sym___nonnull] = ACTIONS(2056), + [anon_sym___strong] = ACTIONS(2056), + [anon_sym___weak] = ACTIONS(2056), + [anon_sym___bridge] = ACTIONS(2056), + [anon_sym___bridge_transfer] = ACTIONS(2056), + [anon_sym___bridge_retained] = ACTIONS(2056), + [anon_sym___unsafe_unretained] = ACTIONS(2056), + [anon_sym___block] = ACTIONS(2056), + [anon_sym___kindof] = ACTIONS(2056), + [anon_sym___unused] = ACTIONS(2056), + [anon_sym__Complex] = ACTIONS(2056), + [anon_sym___complex] = ACTIONS(2056), + [anon_sym_IBOutlet] = ACTIONS(2056), + [anon_sym_IBInspectable] = ACTIONS(2056), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2056), + [anon_sym_signed] = ACTIONS(2056), + [anon_sym_unsigned] = ACTIONS(2056), + [anon_sym_long] = ACTIONS(2056), + [anon_sym_short] = ACTIONS(2056), + [sym_primitive_type] = ACTIONS(2056), + [anon_sym_enum] = ACTIONS(2056), + [anon_sym_struct] = ACTIONS(2056), + [anon_sym_union] = ACTIONS(2056), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_switch] = ACTIONS(2056), + [anon_sym_case] = ACTIONS(2056), + [anon_sym_default] = ACTIONS(2056), + [anon_sym_while] = ACTIONS(2056), + [anon_sym_do] = ACTIONS(2056), + [anon_sym_for] = ACTIONS(2056), + [anon_sym_return] = ACTIONS(2056), + [anon_sym_break] = ACTIONS(2056), + [anon_sym_continue] = ACTIONS(2056), + [anon_sym_goto] = ACTIONS(2056), + [anon_sym_DASH_DASH] = ACTIONS(2058), + [anon_sym_PLUS_PLUS] = ACTIONS(2058), + [anon_sym_sizeof] = ACTIONS(2056), + [sym_number_literal] = ACTIONS(2058), + [anon_sym_L_SQUOTE] = ACTIONS(2058), + [anon_sym_u_SQUOTE] = ACTIONS(2058), + [anon_sym_U_SQUOTE] = ACTIONS(2058), + [anon_sym_u8_SQUOTE] = ACTIONS(2058), + [anon_sym_SQUOTE] = ACTIONS(2058), + [anon_sym_L_DQUOTE] = ACTIONS(2058), + [anon_sym_u_DQUOTE] = ACTIONS(2058), + [anon_sym_U_DQUOTE] = ACTIONS(2058), + [anon_sym_u8_DQUOTE] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(2058), + [sym_true] = ACTIONS(2056), + [sym_false] = ACTIONS(2056), + [sym_null] = ACTIONS(2056), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2058), + [anon_sym_ATimport] = ACTIONS(2058), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2056), + [anon_sym_ATcompatibility_alias] = ACTIONS(2058), + [anon_sym_ATprotocol] = ACTIONS(2058), + [anon_sym_ATclass] = ACTIONS(2058), + [anon_sym_ATinterface] = ACTIONS(2058), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2056), + [sym_method_attribute_specifier] = ACTIONS(2056), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2056), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2056), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2056), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2056), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2056), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2056), + [anon_sym_NS_AVAILABLE] = ACTIONS(2056), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2056), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2056), + [anon_sym_API_AVAILABLE] = ACTIONS(2056), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2056), + [anon_sym_API_DEPRECATED] = ACTIONS(2056), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2056), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2056), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2056), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2056), + [anon_sym___deprecated_msg] = ACTIONS(2056), + [anon_sym___deprecated_enum_msg] = ACTIONS(2056), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2056), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2056), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2056), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2056), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2056), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2056), + [anon_sym_ATimplementation] = ACTIONS(2058), + [anon_sym_NS_ENUM] = ACTIONS(2056), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2056), + [anon_sym_NS_OPTIONS] = ACTIONS(2056), + [anon_sym_typeof] = ACTIONS(2056), + [anon_sym___typeof] = ACTIONS(2056), + [anon_sym___typeof__] = ACTIONS(2056), + [sym_self] = ACTIONS(2056), + [sym_super] = ACTIONS(2056), + [sym_nil] = ACTIONS(2056), + [sym_id] = ACTIONS(2056), + [sym_instancetype] = ACTIONS(2056), + [sym_Class] = ACTIONS(2056), + [sym_SEL] = ACTIONS(2056), + [sym_IMP] = ACTIONS(2056), + [sym_BOOL] = ACTIONS(2056), + [sym_auto] = ACTIONS(2056), + [anon_sym_ATautoreleasepool] = ACTIONS(2058), + [anon_sym_ATsynchronized] = ACTIONS(2058), + [anon_sym_ATtry] = ACTIONS(2058), + [anon_sym_ATthrow] = ACTIONS(2058), + [anon_sym_ATselector] = ACTIONS(2058), + [anon_sym_ATencode] = ACTIONS(2058), + [anon_sym_AT] = ACTIONS(2056), + [sym_YES] = ACTIONS(2056), + [sym_NO] = ACTIONS(2056), + [anon_sym___builtin_available] = ACTIONS(2056), + [anon_sym_ATavailable] = ACTIONS(2058), + [anon_sym_va_arg] = ACTIONS(2056), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1266] = { + [sym_identifier] = ACTIONS(2052), + [aux_sym_preproc_include_token1] = ACTIONS(2054), + [aux_sym_preproc_def_token1] = ACTIONS(2054), + [aux_sym_preproc_if_token1] = ACTIONS(2052), + [aux_sym_preproc_if_token2] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2052), + [anon_sym_LPAREN2] = ACTIONS(2054), + [anon_sym_BANG] = ACTIONS(2054), + [anon_sym_TILDE] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2052), + [anon_sym_PLUS] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_CARET] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_typedef] = ACTIONS(2052), + [anon_sym_extern] = ACTIONS(2052), + [anon_sym___attribute] = ACTIONS(2052), + [anon_sym___attribute__] = ACTIONS(2052), + [anon_sym___declspec] = ACTIONS(2052), + [anon_sym___cdecl] = ACTIONS(2052), + [anon_sym___clrcall] = ACTIONS(2052), + [anon_sym___stdcall] = ACTIONS(2052), + [anon_sym___fastcall] = ACTIONS(2052), + [anon_sym___thiscall] = ACTIONS(2052), + [anon_sym___vectorcall] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_auto] = ACTIONS(2052), + [anon_sym_register] = ACTIONS(2052), + [anon_sym_inline] = ACTIONS(2052), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_volatile] = ACTIONS(2052), + [anon_sym_restrict] = ACTIONS(2052), + [anon_sym__Atomic] = ACTIONS(2052), + [anon_sym_in] = ACTIONS(2052), + [anon_sym_out] = ACTIONS(2052), + [anon_sym_inout] = ACTIONS(2052), + [anon_sym_bycopy] = ACTIONS(2052), + [anon_sym_byref] = ACTIONS(2052), + [anon_sym_oneway] = ACTIONS(2052), + [anon_sym__Nullable] = ACTIONS(2052), + [anon_sym__Nonnull] = ACTIONS(2052), + [anon_sym__Nullable_result] = ACTIONS(2052), + [anon_sym__Null_unspecified] = ACTIONS(2052), + [anon_sym___autoreleasing] = ACTIONS(2052), + [anon_sym___nullable] = ACTIONS(2052), + [anon_sym___nonnull] = ACTIONS(2052), + [anon_sym___strong] = ACTIONS(2052), + [anon_sym___weak] = ACTIONS(2052), + [anon_sym___bridge] = ACTIONS(2052), + [anon_sym___bridge_transfer] = ACTIONS(2052), + [anon_sym___bridge_retained] = ACTIONS(2052), + [anon_sym___unsafe_unretained] = ACTIONS(2052), + [anon_sym___block] = ACTIONS(2052), + [anon_sym___kindof] = ACTIONS(2052), + [anon_sym___unused] = ACTIONS(2052), + [anon_sym__Complex] = ACTIONS(2052), + [anon_sym___complex] = ACTIONS(2052), + [anon_sym_IBOutlet] = ACTIONS(2052), + [anon_sym_IBInspectable] = ACTIONS(2052), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2052), + [anon_sym_signed] = ACTIONS(2052), + [anon_sym_unsigned] = ACTIONS(2052), + [anon_sym_long] = ACTIONS(2052), + [anon_sym_short] = ACTIONS(2052), + [sym_primitive_type] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_switch] = ACTIONS(2052), + [anon_sym_case] = ACTIONS(2052), + [anon_sym_default] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [anon_sym_do] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_goto] = ACTIONS(2052), + [anon_sym_DASH_DASH] = ACTIONS(2054), + [anon_sym_PLUS_PLUS] = ACTIONS(2054), + [anon_sym_sizeof] = ACTIONS(2052), + [sym_number_literal] = ACTIONS(2054), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2054), + [anon_sym_u_DQUOTE] = ACTIONS(2054), + [anon_sym_U_DQUOTE] = ACTIONS(2054), + [anon_sym_u8_DQUOTE] = ACTIONS(2054), + [anon_sym_DQUOTE] = ACTIONS(2054), + [sym_true] = ACTIONS(2052), + [sym_false] = ACTIONS(2052), + [sym_null] = ACTIONS(2052), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2054), + [anon_sym_ATimport] = ACTIONS(2054), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2052), + [anon_sym_ATcompatibility_alias] = ACTIONS(2054), + [anon_sym_ATprotocol] = ACTIONS(2054), + [anon_sym_ATclass] = ACTIONS(2054), + [anon_sym_ATinterface] = ACTIONS(2054), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2052), + [sym_method_attribute_specifier] = ACTIONS(2052), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2052), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2052), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2052), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2052), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2052), + [anon_sym_NS_AVAILABLE] = ACTIONS(2052), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2052), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_API_AVAILABLE] = ACTIONS(2052), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_API_DEPRECATED] = ACTIONS(2052), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2052), + [anon_sym___deprecated_msg] = ACTIONS(2052), + [anon_sym___deprecated_enum_msg] = ACTIONS(2052), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2052), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2052), + [anon_sym_ATimplementation] = ACTIONS(2054), + [anon_sym_NS_ENUM] = ACTIONS(2052), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2052), + [anon_sym_NS_OPTIONS] = ACTIONS(2052), + [anon_sym_typeof] = ACTIONS(2052), + [anon_sym___typeof] = ACTIONS(2052), + [anon_sym___typeof__] = ACTIONS(2052), + [sym_self] = ACTIONS(2052), + [sym_super] = ACTIONS(2052), + [sym_nil] = ACTIONS(2052), + [sym_id] = ACTIONS(2052), + [sym_instancetype] = ACTIONS(2052), + [sym_Class] = ACTIONS(2052), + [sym_SEL] = ACTIONS(2052), + [sym_IMP] = ACTIONS(2052), + [sym_BOOL] = ACTIONS(2052), + [sym_auto] = ACTIONS(2052), + [anon_sym_ATautoreleasepool] = ACTIONS(2054), + [anon_sym_ATsynchronized] = ACTIONS(2054), + [anon_sym_ATtry] = ACTIONS(2054), + [anon_sym_ATthrow] = ACTIONS(2054), + [anon_sym_ATselector] = ACTIONS(2054), + [anon_sym_ATencode] = ACTIONS(2054), + [anon_sym_AT] = ACTIONS(2052), + [sym_YES] = ACTIONS(2052), + [sym_NO] = ACTIONS(2052), + [anon_sym___builtin_available] = ACTIONS(2052), + [anon_sym_ATavailable] = ACTIONS(2054), + [anon_sym_va_arg] = ACTIONS(2052), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1267] = { + [sym_identifier] = ACTIONS(2052), + [aux_sym_preproc_include_token1] = ACTIONS(2054), + [aux_sym_preproc_def_token1] = ACTIONS(2054), + [aux_sym_preproc_if_token1] = ACTIONS(2052), + [aux_sym_preproc_if_token2] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2052), + [anon_sym_LPAREN2] = ACTIONS(2054), + [anon_sym_BANG] = ACTIONS(2054), + [anon_sym_TILDE] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2052), + [anon_sym_PLUS] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_CARET] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_typedef] = ACTIONS(2052), + [anon_sym_extern] = ACTIONS(2052), + [anon_sym___attribute] = ACTIONS(2052), + [anon_sym___attribute__] = ACTIONS(2052), + [anon_sym___declspec] = ACTIONS(2052), + [anon_sym___cdecl] = ACTIONS(2052), + [anon_sym___clrcall] = ACTIONS(2052), + [anon_sym___stdcall] = ACTIONS(2052), + [anon_sym___fastcall] = ACTIONS(2052), + [anon_sym___thiscall] = ACTIONS(2052), + [anon_sym___vectorcall] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_auto] = ACTIONS(2052), + [anon_sym_register] = ACTIONS(2052), + [anon_sym_inline] = ACTIONS(2052), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_volatile] = ACTIONS(2052), + [anon_sym_restrict] = ACTIONS(2052), + [anon_sym__Atomic] = ACTIONS(2052), + [anon_sym_in] = ACTIONS(2052), + [anon_sym_out] = ACTIONS(2052), + [anon_sym_inout] = ACTIONS(2052), + [anon_sym_bycopy] = ACTIONS(2052), + [anon_sym_byref] = ACTIONS(2052), + [anon_sym_oneway] = ACTIONS(2052), + [anon_sym__Nullable] = ACTIONS(2052), + [anon_sym__Nonnull] = ACTIONS(2052), + [anon_sym__Nullable_result] = ACTIONS(2052), + [anon_sym__Null_unspecified] = ACTIONS(2052), + [anon_sym___autoreleasing] = ACTIONS(2052), + [anon_sym___nullable] = ACTIONS(2052), + [anon_sym___nonnull] = ACTIONS(2052), + [anon_sym___strong] = ACTIONS(2052), + [anon_sym___weak] = ACTIONS(2052), + [anon_sym___bridge] = ACTIONS(2052), + [anon_sym___bridge_transfer] = ACTIONS(2052), + [anon_sym___bridge_retained] = ACTIONS(2052), + [anon_sym___unsafe_unretained] = ACTIONS(2052), + [anon_sym___block] = ACTIONS(2052), + [anon_sym___kindof] = ACTIONS(2052), + [anon_sym___unused] = ACTIONS(2052), + [anon_sym__Complex] = ACTIONS(2052), + [anon_sym___complex] = ACTIONS(2052), + [anon_sym_IBOutlet] = ACTIONS(2052), + [anon_sym_IBInspectable] = ACTIONS(2052), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2052), + [anon_sym_signed] = ACTIONS(2052), + [anon_sym_unsigned] = ACTIONS(2052), + [anon_sym_long] = ACTIONS(2052), + [anon_sym_short] = ACTIONS(2052), + [sym_primitive_type] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_switch] = ACTIONS(2052), + [anon_sym_case] = ACTIONS(2052), + [anon_sym_default] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [anon_sym_do] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_goto] = ACTIONS(2052), + [anon_sym_DASH_DASH] = ACTIONS(2054), + [anon_sym_PLUS_PLUS] = ACTIONS(2054), + [anon_sym_sizeof] = ACTIONS(2052), + [sym_number_literal] = ACTIONS(2054), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2054), + [anon_sym_u_DQUOTE] = ACTIONS(2054), + [anon_sym_U_DQUOTE] = ACTIONS(2054), + [anon_sym_u8_DQUOTE] = ACTIONS(2054), + [anon_sym_DQUOTE] = ACTIONS(2054), + [sym_true] = ACTIONS(2052), + [sym_false] = ACTIONS(2052), + [sym_null] = ACTIONS(2052), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2054), + [anon_sym_ATimport] = ACTIONS(2054), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2052), + [anon_sym_ATcompatibility_alias] = ACTIONS(2054), + [anon_sym_ATprotocol] = ACTIONS(2054), + [anon_sym_ATclass] = ACTIONS(2054), + [anon_sym_ATinterface] = ACTIONS(2054), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2052), + [sym_method_attribute_specifier] = ACTIONS(2052), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2052), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2052), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2052), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2052), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2052), + [anon_sym_NS_AVAILABLE] = ACTIONS(2052), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2052), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_API_AVAILABLE] = ACTIONS(2052), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_API_DEPRECATED] = ACTIONS(2052), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2052), + [anon_sym___deprecated_msg] = ACTIONS(2052), + [anon_sym___deprecated_enum_msg] = ACTIONS(2052), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2052), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2052), + [anon_sym_ATimplementation] = ACTIONS(2054), + [anon_sym_NS_ENUM] = ACTIONS(2052), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2052), + [anon_sym_NS_OPTIONS] = ACTIONS(2052), + [anon_sym_typeof] = ACTIONS(2052), + [anon_sym___typeof] = ACTIONS(2052), + [anon_sym___typeof__] = ACTIONS(2052), + [sym_self] = ACTIONS(2052), + [sym_super] = ACTIONS(2052), + [sym_nil] = ACTIONS(2052), + [sym_id] = ACTIONS(2052), + [sym_instancetype] = ACTIONS(2052), + [sym_Class] = ACTIONS(2052), + [sym_SEL] = ACTIONS(2052), + [sym_IMP] = ACTIONS(2052), + [sym_BOOL] = ACTIONS(2052), + [sym_auto] = ACTIONS(2052), + [anon_sym_ATautoreleasepool] = ACTIONS(2054), + [anon_sym_ATsynchronized] = ACTIONS(2054), + [anon_sym_ATtry] = ACTIONS(2054), + [anon_sym_ATthrow] = ACTIONS(2054), + [anon_sym_ATselector] = ACTIONS(2054), + [anon_sym_ATencode] = ACTIONS(2054), + [anon_sym_AT] = ACTIONS(2052), + [sym_YES] = ACTIONS(2052), + [sym_NO] = ACTIONS(2052), + [anon_sym___builtin_available] = ACTIONS(2052), + [anon_sym_ATavailable] = ACTIONS(2054), + [anon_sym_va_arg] = ACTIONS(2052), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1268] = { + [sym_identifier] = ACTIONS(2052), + [aux_sym_preproc_include_token1] = ACTIONS(2054), + [aux_sym_preproc_def_token1] = ACTIONS(2054), + [aux_sym_preproc_if_token1] = ACTIONS(2052), + [aux_sym_preproc_if_token2] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2052), + [anon_sym_LPAREN2] = ACTIONS(2054), + [anon_sym_BANG] = ACTIONS(2054), + [anon_sym_TILDE] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2052), + [anon_sym_PLUS] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_CARET] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_typedef] = ACTIONS(2052), + [anon_sym_extern] = ACTIONS(2052), + [anon_sym___attribute] = ACTIONS(2052), + [anon_sym___attribute__] = ACTIONS(2052), + [anon_sym___declspec] = ACTIONS(2052), + [anon_sym___cdecl] = ACTIONS(2052), + [anon_sym___clrcall] = ACTIONS(2052), + [anon_sym___stdcall] = ACTIONS(2052), + [anon_sym___fastcall] = ACTIONS(2052), + [anon_sym___thiscall] = ACTIONS(2052), + [anon_sym___vectorcall] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_auto] = ACTIONS(2052), + [anon_sym_register] = ACTIONS(2052), + [anon_sym_inline] = ACTIONS(2052), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_volatile] = ACTIONS(2052), + [anon_sym_restrict] = ACTIONS(2052), + [anon_sym__Atomic] = ACTIONS(2052), + [anon_sym_in] = ACTIONS(2052), + [anon_sym_out] = ACTIONS(2052), + [anon_sym_inout] = ACTIONS(2052), + [anon_sym_bycopy] = ACTIONS(2052), + [anon_sym_byref] = ACTIONS(2052), + [anon_sym_oneway] = ACTIONS(2052), + [anon_sym__Nullable] = ACTIONS(2052), + [anon_sym__Nonnull] = ACTIONS(2052), + [anon_sym__Nullable_result] = ACTIONS(2052), + [anon_sym__Null_unspecified] = ACTIONS(2052), + [anon_sym___autoreleasing] = ACTIONS(2052), + [anon_sym___nullable] = ACTIONS(2052), + [anon_sym___nonnull] = ACTIONS(2052), + [anon_sym___strong] = ACTIONS(2052), + [anon_sym___weak] = ACTIONS(2052), + [anon_sym___bridge] = ACTIONS(2052), + [anon_sym___bridge_transfer] = ACTIONS(2052), + [anon_sym___bridge_retained] = ACTIONS(2052), + [anon_sym___unsafe_unretained] = ACTIONS(2052), + [anon_sym___block] = ACTIONS(2052), + [anon_sym___kindof] = ACTIONS(2052), + [anon_sym___unused] = ACTIONS(2052), + [anon_sym__Complex] = ACTIONS(2052), + [anon_sym___complex] = ACTIONS(2052), + [anon_sym_IBOutlet] = ACTIONS(2052), + [anon_sym_IBInspectable] = ACTIONS(2052), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2052), + [anon_sym_signed] = ACTIONS(2052), + [anon_sym_unsigned] = ACTIONS(2052), + [anon_sym_long] = ACTIONS(2052), + [anon_sym_short] = ACTIONS(2052), + [sym_primitive_type] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_switch] = ACTIONS(2052), + [anon_sym_case] = ACTIONS(2052), + [anon_sym_default] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [anon_sym_do] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_goto] = ACTIONS(2052), + [anon_sym_DASH_DASH] = ACTIONS(2054), + [anon_sym_PLUS_PLUS] = ACTIONS(2054), + [anon_sym_sizeof] = ACTIONS(2052), + [sym_number_literal] = ACTIONS(2054), + [anon_sym_L_SQUOTE] = ACTIONS(2054), + [anon_sym_u_SQUOTE] = ACTIONS(2054), + [anon_sym_U_SQUOTE] = ACTIONS(2054), + [anon_sym_u8_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_L_DQUOTE] = ACTIONS(2054), + [anon_sym_u_DQUOTE] = ACTIONS(2054), + [anon_sym_U_DQUOTE] = ACTIONS(2054), + [anon_sym_u8_DQUOTE] = ACTIONS(2054), + [anon_sym_DQUOTE] = ACTIONS(2054), + [sym_true] = ACTIONS(2052), + [sym_false] = ACTIONS(2052), + [sym_null] = ACTIONS(2052), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2054), + [anon_sym_ATimport] = ACTIONS(2054), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2052), + [anon_sym_ATcompatibility_alias] = ACTIONS(2054), + [anon_sym_ATprotocol] = ACTIONS(2054), + [anon_sym_ATclass] = ACTIONS(2054), + [anon_sym_ATinterface] = ACTIONS(2054), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2052), + [sym_method_attribute_specifier] = ACTIONS(2052), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2052), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2052), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2052), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2052), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2052), + [anon_sym_NS_AVAILABLE] = ACTIONS(2052), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2052), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_API_AVAILABLE] = ACTIONS(2052), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_API_DEPRECATED] = ACTIONS(2052), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2052), + [anon_sym___deprecated_msg] = ACTIONS(2052), + [anon_sym___deprecated_enum_msg] = ACTIONS(2052), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2052), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2052), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2052), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2052), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2052), + [anon_sym_ATimplementation] = ACTIONS(2054), + [anon_sym_NS_ENUM] = ACTIONS(2052), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2052), + [anon_sym_NS_OPTIONS] = ACTIONS(2052), + [anon_sym_typeof] = ACTIONS(2052), + [anon_sym___typeof] = ACTIONS(2052), + [anon_sym___typeof__] = ACTIONS(2052), + [sym_self] = ACTIONS(2052), + [sym_super] = ACTIONS(2052), + [sym_nil] = ACTIONS(2052), + [sym_id] = ACTIONS(2052), + [sym_instancetype] = ACTIONS(2052), + [sym_Class] = ACTIONS(2052), + [sym_SEL] = ACTIONS(2052), + [sym_IMP] = ACTIONS(2052), + [sym_BOOL] = ACTIONS(2052), + [sym_auto] = ACTIONS(2052), + [anon_sym_ATautoreleasepool] = ACTIONS(2054), + [anon_sym_ATsynchronized] = ACTIONS(2054), + [anon_sym_ATtry] = ACTIONS(2054), + [anon_sym_ATthrow] = ACTIONS(2054), + [anon_sym_ATselector] = ACTIONS(2054), + [anon_sym_ATencode] = ACTIONS(2054), + [anon_sym_AT] = ACTIONS(2052), + [sym_YES] = ACTIONS(2052), + [sym_NO] = ACTIONS(2052), + [anon_sym___builtin_available] = ACTIONS(2052), + [anon_sym_ATavailable] = ACTIONS(2054), + [anon_sym_va_arg] = ACTIONS(2052), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1269] = { + [sym_identifier] = ACTIONS(2048), + [aux_sym_preproc_include_token1] = ACTIONS(2050), + [aux_sym_preproc_def_token1] = ACTIONS(2050), + [aux_sym_preproc_if_token1] = ACTIONS(2048), + [aux_sym_preproc_if_token2] = ACTIONS(2048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2048), + [anon_sym_LPAREN2] = ACTIONS(2050), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_TILDE] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2048), + [anon_sym_PLUS] = ACTIONS(2048), + [anon_sym_STAR] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2050), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym_typedef] = ACTIONS(2048), + [anon_sym_extern] = ACTIONS(2048), + [anon_sym___attribute] = ACTIONS(2048), + [anon_sym___attribute__] = ACTIONS(2048), + [anon_sym___declspec] = ACTIONS(2048), + [anon_sym___cdecl] = ACTIONS(2048), + [anon_sym___clrcall] = ACTIONS(2048), + [anon_sym___stdcall] = ACTIONS(2048), + [anon_sym___fastcall] = ACTIONS(2048), + [anon_sym___thiscall] = ACTIONS(2048), + [anon_sym___vectorcall] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2050), + [anon_sym_LBRACK] = ACTIONS(2050), + [anon_sym_static] = ACTIONS(2048), + [anon_sym_auto] = ACTIONS(2048), + [anon_sym_register] = ACTIONS(2048), + [anon_sym_inline] = ACTIONS(2048), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2048), + [anon_sym_const] = ACTIONS(2048), + [anon_sym_volatile] = ACTIONS(2048), + [anon_sym_restrict] = ACTIONS(2048), + [anon_sym__Atomic] = ACTIONS(2048), + [anon_sym_in] = ACTIONS(2048), + [anon_sym_out] = ACTIONS(2048), + [anon_sym_inout] = ACTIONS(2048), + [anon_sym_bycopy] = ACTIONS(2048), + [anon_sym_byref] = ACTIONS(2048), + [anon_sym_oneway] = ACTIONS(2048), + [anon_sym__Nullable] = ACTIONS(2048), + [anon_sym__Nonnull] = ACTIONS(2048), + [anon_sym__Nullable_result] = ACTIONS(2048), + [anon_sym__Null_unspecified] = ACTIONS(2048), + [anon_sym___autoreleasing] = ACTIONS(2048), + [anon_sym___nullable] = ACTIONS(2048), + [anon_sym___nonnull] = ACTIONS(2048), + [anon_sym___strong] = ACTIONS(2048), + [anon_sym___weak] = ACTIONS(2048), + [anon_sym___bridge] = ACTIONS(2048), + [anon_sym___bridge_transfer] = ACTIONS(2048), + [anon_sym___bridge_retained] = ACTIONS(2048), + [anon_sym___unsafe_unretained] = ACTIONS(2048), + [anon_sym___block] = ACTIONS(2048), + [anon_sym___kindof] = ACTIONS(2048), + [anon_sym___unused] = ACTIONS(2048), + [anon_sym__Complex] = ACTIONS(2048), + [anon_sym___complex] = ACTIONS(2048), + [anon_sym_IBOutlet] = ACTIONS(2048), + [anon_sym_IBInspectable] = ACTIONS(2048), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2048), + [anon_sym_signed] = ACTIONS(2048), + [anon_sym_unsigned] = ACTIONS(2048), + [anon_sym_long] = ACTIONS(2048), + [anon_sym_short] = ACTIONS(2048), + [sym_primitive_type] = ACTIONS(2048), + [anon_sym_enum] = ACTIONS(2048), + [anon_sym_struct] = ACTIONS(2048), + [anon_sym_union] = ACTIONS(2048), + [anon_sym_if] = ACTIONS(2048), + [anon_sym_switch] = ACTIONS(2048), + [anon_sym_case] = ACTIONS(2048), + [anon_sym_default] = ACTIONS(2048), + [anon_sym_while] = ACTIONS(2048), + [anon_sym_do] = ACTIONS(2048), + [anon_sym_for] = ACTIONS(2048), + [anon_sym_return] = ACTIONS(2048), + [anon_sym_break] = ACTIONS(2048), + [anon_sym_continue] = ACTIONS(2048), + [anon_sym_goto] = ACTIONS(2048), + [anon_sym_DASH_DASH] = ACTIONS(2050), + [anon_sym_PLUS_PLUS] = ACTIONS(2050), + [anon_sym_sizeof] = ACTIONS(2048), + [sym_number_literal] = ACTIONS(2050), + [anon_sym_L_SQUOTE] = ACTIONS(2050), + [anon_sym_u_SQUOTE] = ACTIONS(2050), + [anon_sym_U_SQUOTE] = ACTIONS(2050), + [anon_sym_u8_SQUOTE] = ACTIONS(2050), + [anon_sym_SQUOTE] = ACTIONS(2050), + [anon_sym_L_DQUOTE] = ACTIONS(2050), + [anon_sym_u_DQUOTE] = ACTIONS(2050), + [anon_sym_U_DQUOTE] = ACTIONS(2050), + [anon_sym_u8_DQUOTE] = ACTIONS(2050), + [anon_sym_DQUOTE] = ACTIONS(2050), + [sym_true] = ACTIONS(2048), + [sym_false] = ACTIONS(2048), + [sym_null] = ACTIONS(2048), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2050), + [anon_sym_ATimport] = ACTIONS(2050), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2048), + [anon_sym_ATcompatibility_alias] = ACTIONS(2050), + [anon_sym_ATprotocol] = ACTIONS(2050), + [anon_sym_ATclass] = ACTIONS(2050), + [anon_sym_ATinterface] = ACTIONS(2050), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2048), + [sym_method_attribute_specifier] = ACTIONS(2048), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2048), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2048), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2048), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2048), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2048), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2048), + [anon_sym_NS_AVAILABLE] = ACTIONS(2048), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2048), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2048), + [anon_sym_API_AVAILABLE] = ACTIONS(2048), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2048), + [anon_sym_API_DEPRECATED] = ACTIONS(2048), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2048), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2048), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2048), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2048), + [anon_sym___deprecated_msg] = ACTIONS(2048), + [anon_sym___deprecated_enum_msg] = ACTIONS(2048), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2048), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2048), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2048), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2048), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2048), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2048), + [anon_sym_ATimplementation] = ACTIONS(2050), + [anon_sym_NS_ENUM] = ACTIONS(2048), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2048), + [anon_sym_NS_OPTIONS] = ACTIONS(2048), + [anon_sym_typeof] = ACTIONS(2048), + [anon_sym___typeof] = ACTIONS(2048), + [anon_sym___typeof__] = ACTIONS(2048), + [sym_self] = ACTIONS(2048), + [sym_super] = ACTIONS(2048), + [sym_nil] = ACTIONS(2048), + [sym_id] = ACTIONS(2048), + [sym_instancetype] = ACTIONS(2048), + [sym_Class] = ACTIONS(2048), + [sym_SEL] = ACTIONS(2048), + [sym_IMP] = ACTIONS(2048), + [sym_BOOL] = ACTIONS(2048), + [sym_auto] = ACTIONS(2048), + [anon_sym_ATautoreleasepool] = ACTIONS(2050), + [anon_sym_ATsynchronized] = ACTIONS(2050), + [anon_sym_ATtry] = ACTIONS(2050), + [anon_sym_ATthrow] = ACTIONS(2050), + [anon_sym_ATselector] = ACTIONS(2050), + [anon_sym_ATencode] = ACTIONS(2050), + [anon_sym_AT] = ACTIONS(2048), + [sym_YES] = ACTIONS(2048), + [sym_NO] = ACTIONS(2048), + [anon_sym___builtin_available] = ACTIONS(2048), + [anon_sym_ATavailable] = ACTIONS(2050), + [anon_sym_va_arg] = ACTIONS(2048), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1270] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1271] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1272] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1273] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1274] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1275] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1276] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1277] = { + [sym_identifier] = ACTIONS(1908), + [aux_sym_preproc_include_token1] = ACTIONS(1910), + [aux_sym_preproc_def_token1] = ACTIONS(1910), + [aux_sym_preproc_if_token1] = ACTIONS(1908), + [aux_sym_preproc_if_token2] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1908), + [anon_sym_LPAREN2] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_TILDE] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_CARET] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_typedef] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym___attribute] = ACTIONS(1908), + [anon_sym___attribute__] = ACTIONS(1908), + [anon_sym___declspec] = ACTIONS(1908), + [anon_sym___cdecl] = ACTIONS(1908), + [anon_sym___clrcall] = ACTIONS(1908), + [anon_sym___stdcall] = ACTIONS(1908), + [anon_sym___fastcall] = ACTIONS(1908), + [anon_sym___thiscall] = ACTIONS(1908), + [anon_sym___vectorcall] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_auto] = ACTIONS(1908), + [anon_sym_register] = ACTIONS(1908), + [anon_sym_inline] = ACTIONS(1908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_volatile] = ACTIONS(1908), + [anon_sym_restrict] = ACTIONS(1908), + [anon_sym__Atomic] = ACTIONS(1908), + [anon_sym_in] = ACTIONS(1908), + [anon_sym_out] = ACTIONS(1908), + [anon_sym_inout] = ACTIONS(1908), + [anon_sym_bycopy] = ACTIONS(1908), + [anon_sym_byref] = ACTIONS(1908), + [anon_sym_oneway] = ACTIONS(1908), + [anon_sym__Nullable] = ACTIONS(1908), + [anon_sym__Nonnull] = ACTIONS(1908), + [anon_sym__Nullable_result] = ACTIONS(1908), + [anon_sym__Null_unspecified] = ACTIONS(1908), + [anon_sym___autoreleasing] = ACTIONS(1908), + [anon_sym___nullable] = ACTIONS(1908), + [anon_sym___nonnull] = ACTIONS(1908), + [anon_sym___strong] = ACTIONS(1908), + [anon_sym___weak] = ACTIONS(1908), + [anon_sym___bridge] = ACTIONS(1908), + [anon_sym___bridge_transfer] = ACTIONS(1908), + [anon_sym___bridge_retained] = ACTIONS(1908), + [anon_sym___unsafe_unretained] = ACTIONS(1908), + [anon_sym___block] = ACTIONS(1908), + [anon_sym___kindof] = ACTIONS(1908), + [anon_sym___unused] = ACTIONS(1908), + [anon_sym__Complex] = ACTIONS(1908), + [anon_sym___complex] = ACTIONS(1908), + [anon_sym_IBOutlet] = ACTIONS(1908), + [anon_sym_IBInspectable] = ACTIONS(1908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1908), + [anon_sym_signed] = ACTIONS(1908), + [anon_sym_unsigned] = ACTIONS(1908), + [anon_sym_long] = ACTIONS(1908), + [anon_sym_short] = ACTIONS(1908), + [sym_primitive_type] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_switch] = ACTIONS(1908), + [anon_sym_case] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_do] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_goto] = ACTIONS(1908), + [anon_sym_DASH_DASH] = ACTIONS(1910), + [anon_sym_PLUS_PLUS] = ACTIONS(1910), + [anon_sym_sizeof] = ACTIONS(1908), + [sym_number_literal] = ACTIONS(1910), + [anon_sym_L_SQUOTE] = ACTIONS(1910), + [anon_sym_u_SQUOTE] = ACTIONS(1910), + [anon_sym_U_SQUOTE] = ACTIONS(1910), + [anon_sym_u8_SQUOTE] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_L_DQUOTE] = ACTIONS(1910), + [anon_sym_u_DQUOTE] = ACTIONS(1910), + [anon_sym_U_DQUOTE] = ACTIONS(1910), + [anon_sym_u8_DQUOTE] = ACTIONS(1910), + [anon_sym_DQUOTE] = ACTIONS(1910), + [sym_true] = ACTIONS(1908), + [sym_false] = ACTIONS(1908), + [sym_null] = ACTIONS(1908), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1910), + [anon_sym_ATimport] = ACTIONS(1910), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1908), + [anon_sym_ATcompatibility_alias] = ACTIONS(1910), + [anon_sym_ATprotocol] = ACTIONS(1910), + [anon_sym_ATclass] = ACTIONS(1910), + [anon_sym_ATinterface] = ACTIONS(1910), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1908), + [sym_method_attribute_specifier] = ACTIONS(1908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE] = ACTIONS(1908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_API_AVAILABLE] = ACTIONS(1908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_API_DEPRECATED] = ACTIONS(1908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1908), + [anon_sym___deprecated_msg] = ACTIONS(1908), + [anon_sym___deprecated_enum_msg] = ACTIONS(1908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1908), + [anon_sym_ATimplementation] = ACTIONS(1910), + [anon_sym_NS_ENUM] = ACTIONS(1908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1908), + [anon_sym_NS_OPTIONS] = ACTIONS(1908), + [anon_sym_typeof] = ACTIONS(1908), + [anon_sym___typeof] = ACTIONS(1908), + [anon_sym___typeof__] = ACTIONS(1908), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_nil] = ACTIONS(1908), + [sym_id] = ACTIONS(1908), + [sym_instancetype] = ACTIONS(1908), + [sym_Class] = ACTIONS(1908), + [sym_SEL] = ACTIONS(1908), + [sym_IMP] = ACTIONS(1908), + [sym_BOOL] = ACTIONS(1908), + [sym_auto] = ACTIONS(1908), + [anon_sym_ATautoreleasepool] = ACTIONS(1910), + [anon_sym_ATsynchronized] = ACTIONS(1910), + [anon_sym_ATtry] = ACTIONS(1910), + [anon_sym_ATthrow] = ACTIONS(1910), + [anon_sym_ATselector] = ACTIONS(1910), + [anon_sym_ATencode] = ACTIONS(1910), + [anon_sym_AT] = ACTIONS(1908), + [sym_YES] = ACTIONS(1908), + [sym_NO] = ACTIONS(1908), + [anon_sym___builtin_available] = ACTIONS(1908), + [anon_sym_ATavailable] = ACTIONS(1910), + [anon_sym_va_arg] = ACTIONS(1908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1278] = { + [sym_identifier] = ACTIONS(1912), + [aux_sym_preproc_include_token1] = ACTIONS(1914), + [aux_sym_preproc_def_token1] = ACTIONS(1914), + [aux_sym_preproc_if_token1] = ACTIONS(1912), + [aux_sym_preproc_if_token2] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1912), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_CARET] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym___attribute] = ACTIONS(1912), + [anon_sym___attribute__] = ACTIONS(1912), + [anon_sym___declspec] = ACTIONS(1912), + [anon_sym___cdecl] = ACTIONS(1912), + [anon_sym___clrcall] = ACTIONS(1912), + [anon_sym___stdcall] = ACTIONS(1912), + [anon_sym___fastcall] = ACTIONS(1912), + [anon_sym___thiscall] = ACTIONS(1912), + [anon_sym___vectorcall] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_auto] = ACTIONS(1912), + [anon_sym_register] = ACTIONS(1912), + [anon_sym_inline] = ACTIONS(1912), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_volatile] = ACTIONS(1912), + [anon_sym_restrict] = ACTIONS(1912), + [anon_sym__Atomic] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1912), + [anon_sym_out] = ACTIONS(1912), + [anon_sym_inout] = ACTIONS(1912), + [anon_sym_bycopy] = ACTIONS(1912), + [anon_sym_byref] = ACTIONS(1912), + [anon_sym_oneway] = ACTIONS(1912), + [anon_sym__Nullable] = ACTIONS(1912), + [anon_sym__Nonnull] = ACTIONS(1912), + [anon_sym__Nullable_result] = ACTIONS(1912), + [anon_sym__Null_unspecified] = ACTIONS(1912), + [anon_sym___autoreleasing] = ACTIONS(1912), + [anon_sym___nullable] = ACTIONS(1912), + [anon_sym___nonnull] = ACTIONS(1912), + [anon_sym___strong] = ACTIONS(1912), + [anon_sym___weak] = ACTIONS(1912), + [anon_sym___bridge] = ACTIONS(1912), + [anon_sym___bridge_transfer] = ACTIONS(1912), + [anon_sym___bridge_retained] = ACTIONS(1912), + [anon_sym___unsafe_unretained] = ACTIONS(1912), + [anon_sym___block] = ACTIONS(1912), + [anon_sym___kindof] = ACTIONS(1912), + [anon_sym___unused] = ACTIONS(1912), + [anon_sym__Complex] = ACTIONS(1912), + [anon_sym___complex] = ACTIONS(1912), + [anon_sym_IBOutlet] = ACTIONS(1912), + [anon_sym_IBInspectable] = ACTIONS(1912), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1912), + [anon_sym_signed] = ACTIONS(1912), + [anon_sym_unsigned] = ACTIONS(1912), + [anon_sym_long] = ACTIONS(1912), + [anon_sym_short] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_switch] = ACTIONS(1912), + [anon_sym_case] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_do] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_goto] = ACTIONS(1912), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_sizeof] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1914), + [anon_sym_u_SQUOTE] = ACTIONS(1914), + [anon_sym_U_SQUOTE] = ACTIONS(1914), + [anon_sym_u8_SQUOTE] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_L_DQUOTE] = ACTIONS(1914), + [anon_sym_u_DQUOTE] = ACTIONS(1914), + [anon_sym_U_DQUOTE] = ACTIONS(1914), + [anon_sym_u8_DQUOTE] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_true] = ACTIONS(1912), + [sym_false] = ACTIONS(1912), + [sym_null] = ACTIONS(1912), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1914), + [anon_sym_ATimport] = ACTIONS(1914), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1912), + [anon_sym_ATcompatibility_alias] = ACTIONS(1914), + [anon_sym_ATprotocol] = ACTIONS(1914), + [anon_sym_ATclass] = ACTIONS(1914), + [anon_sym_ATinterface] = ACTIONS(1914), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1912), + [sym_method_attribute_specifier] = ACTIONS(1912), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1912), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE] = ACTIONS(1912), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_API_AVAILABLE] = ACTIONS(1912), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_API_DEPRECATED] = ACTIONS(1912), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1912), + [anon_sym___deprecated_msg] = ACTIONS(1912), + [anon_sym___deprecated_enum_msg] = ACTIONS(1912), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1912), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1912), + [anon_sym_ATimplementation] = ACTIONS(1914), + [anon_sym_NS_ENUM] = ACTIONS(1912), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1912), + [anon_sym_NS_OPTIONS] = ACTIONS(1912), + [anon_sym_typeof] = ACTIONS(1912), + [anon_sym___typeof] = ACTIONS(1912), + [anon_sym___typeof__] = ACTIONS(1912), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_nil] = ACTIONS(1912), + [sym_id] = ACTIONS(1912), + [sym_instancetype] = ACTIONS(1912), + [sym_Class] = ACTIONS(1912), + [sym_SEL] = ACTIONS(1912), + [sym_IMP] = ACTIONS(1912), + [sym_BOOL] = ACTIONS(1912), + [sym_auto] = ACTIONS(1912), + [anon_sym_ATautoreleasepool] = ACTIONS(1914), + [anon_sym_ATsynchronized] = ACTIONS(1914), + [anon_sym_ATtry] = ACTIONS(1914), + [anon_sym_ATthrow] = ACTIONS(1914), + [anon_sym_ATselector] = ACTIONS(1914), + [anon_sym_ATencode] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1912), + [sym_YES] = ACTIONS(1912), + [sym_NO] = ACTIONS(1912), + [anon_sym___builtin_available] = ACTIONS(1912), + [anon_sym_ATavailable] = ACTIONS(1914), + [anon_sym_va_arg] = ACTIONS(1912), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1279] = { + [sym_identifier] = ACTIONS(1912), + [aux_sym_preproc_include_token1] = ACTIONS(1914), + [aux_sym_preproc_def_token1] = ACTIONS(1914), + [aux_sym_preproc_if_token1] = ACTIONS(1912), + [aux_sym_preproc_if_token2] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1912), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_CARET] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym___attribute] = ACTIONS(1912), + [anon_sym___attribute__] = ACTIONS(1912), + [anon_sym___declspec] = ACTIONS(1912), + [anon_sym___cdecl] = ACTIONS(1912), + [anon_sym___clrcall] = ACTIONS(1912), + [anon_sym___stdcall] = ACTIONS(1912), + [anon_sym___fastcall] = ACTIONS(1912), + [anon_sym___thiscall] = ACTIONS(1912), + [anon_sym___vectorcall] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_auto] = ACTIONS(1912), + [anon_sym_register] = ACTIONS(1912), + [anon_sym_inline] = ACTIONS(1912), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_volatile] = ACTIONS(1912), + [anon_sym_restrict] = ACTIONS(1912), + [anon_sym__Atomic] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1912), + [anon_sym_out] = ACTIONS(1912), + [anon_sym_inout] = ACTIONS(1912), + [anon_sym_bycopy] = ACTIONS(1912), + [anon_sym_byref] = ACTIONS(1912), + [anon_sym_oneway] = ACTIONS(1912), + [anon_sym__Nullable] = ACTIONS(1912), + [anon_sym__Nonnull] = ACTIONS(1912), + [anon_sym__Nullable_result] = ACTIONS(1912), + [anon_sym__Null_unspecified] = ACTIONS(1912), + [anon_sym___autoreleasing] = ACTIONS(1912), + [anon_sym___nullable] = ACTIONS(1912), + [anon_sym___nonnull] = ACTIONS(1912), + [anon_sym___strong] = ACTIONS(1912), + [anon_sym___weak] = ACTIONS(1912), + [anon_sym___bridge] = ACTIONS(1912), + [anon_sym___bridge_transfer] = ACTIONS(1912), + [anon_sym___bridge_retained] = ACTIONS(1912), + [anon_sym___unsafe_unretained] = ACTIONS(1912), + [anon_sym___block] = ACTIONS(1912), + [anon_sym___kindof] = ACTIONS(1912), + [anon_sym___unused] = ACTIONS(1912), + [anon_sym__Complex] = ACTIONS(1912), + [anon_sym___complex] = ACTIONS(1912), + [anon_sym_IBOutlet] = ACTIONS(1912), + [anon_sym_IBInspectable] = ACTIONS(1912), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1912), + [anon_sym_signed] = ACTIONS(1912), + [anon_sym_unsigned] = ACTIONS(1912), + [anon_sym_long] = ACTIONS(1912), + [anon_sym_short] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_switch] = ACTIONS(1912), + [anon_sym_case] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_do] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_goto] = ACTIONS(1912), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_sizeof] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1914), + [anon_sym_u_SQUOTE] = ACTIONS(1914), + [anon_sym_U_SQUOTE] = ACTIONS(1914), + [anon_sym_u8_SQUOTE] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_L_DQUOTE] = ACTIONS(1914), + [anon_sym_u_DQUOTE] = ACTIONS(1914), + [anon_sym_U_DQUOTE] = ACTIONS(1914), + [anon_sym_u8_DQUOTE] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_true] = ACTIONS(1912), + [sym_false] = ACTIONS(1912), + [sym_null] = ACTIONS(1912), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1914), + [anon_sym_ATimport] = ACTIONS(1914), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1912), + [anon_sym_ATcompatibility_alias] = ACTIONS(1914), + [anon_sym_ATprotocol] = ACTIONS(1914), + [anon_sym_ATclass] = ACTIONS(1914), + [anon_sym_ATinterface] = ACTIONS(1914), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1912), + [sym_method_attribute_specifier] = ACTIONS(1912), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1912), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE] = ACTIONS(1912), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_API_AVAILABLE] = ACTIONS(1912), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_API_DEPRECATED] = ACTIONS(1912), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1912), + [anon_sym___deprecated_msg] = ACTIONS(1912), + [anon_sym___deprecated_enum_msg] = ACTIONS(1912), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1912), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1912), + [anon_sym_ATimplementation] = ACTIONS(1914), + [anon_sym_NS_ENUM] = ACTIONS(1912), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1912), + [anon_sym_NS_OPTIONS] = ACTIONS(1912), + [anon_sym_typeof] = ACTIONS(1912), + [anon_sym___typeof] = ACTIONS(1912), + [anon_sym___typeof__] = ACTIONS(1912), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_nil] = ACTIONS(1912), + [sym_id] = ACTIONS(1912), + [sym_instancetype] = ACTIONS(1912), + [sym_Class] = ACTIONS(1912), + [sym_SEL] = ACTIONS(1912), + [sym_IMP] = ACTIONS(1912), + [sym_BOOL] = ACTIONS(1912), + [sym_auto] = ACTIONS(1912), + [anon_sym_ATautoreleasepool] = ACTIONS(1914), + [anon_sym_ATsynchronized] = ACTIONS(1914), + [anon_sym_ATtry] = ACTIONS(1914), + [anon_sym_ATthrow] = ACTIONS(1914), + [anon_sym_ATselector] = ACTIONS(1914), + [anon_sym_ATencode] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1912), + [sym_YES] = ACTIONS(1912), + [sym_NO] = ACTIONS(1912), + [anon_sym___builtin_available] = ACTIONS(1912), + [anon_sym_ATavailable] = ACTIONS(1914), + [anon_sym_va_arg] = ACTIONS(1912), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1280] = { + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2046), + [aux_sym_preproc_def_token1] = ACTIONS(2046), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_if_token2] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_auto] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym_in] = ACTIONS(2044), + [anon_sym_out] = ACTIONS(2044), + [anon_sym_inout] = ACTIONS(2044), + [anon_sym_bycopy] = ACTIONS(2044), + [anon_sym_byref] = ACTIONS(2044), + [anon_sym_oneway] = ACTIONS(2044), + [anon_sym__Nullable] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym__Nullable_result] = ACTIONS(2044), + [anon_sym__Null_unspecified] = ACTIONS(2044), + [anon_sym___autoreleasing] = ACTIONS(2044), + [anon_sym___nullable] = ACTIONS(2044), + [anon_sym___nonnull] = ACTIONS(2044), + [anon_sym___strong] = ACTIONS(2044), + [anon_sym___weak] = ACTIONS(2044), + [anon_sym___bridge] = ACTIONS(2044), + [anon_sym___bridge_transfer] = ACTIONS(2044), + [anon_sym___bridge_retained] = ACTIONS(2044), + [anon_sym___unsafe_unretained] = ACTIONS(2044), + [anon_sym___block] = ACTIONS(2044), + [anon_sym___kindof] = ACTIONS(2044), + [anon_sym___unused] = ACTIONS(2044), + [anon_sym__Complex] = ACTIONS(2044), + [anon_sym___complex] = ACTIONS(2044), + [anon_sym_IBOutlet] = ACTIONS(2044), + [anon_sym_IBInspectable] = ACTIONS(2044), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2044), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [sym_null] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2046), + [anon_sym_ATimport] = ACTIONS(2046), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2044), + [anon_sym_ATcompatibility_alias] = ACTIONS(2046), + [anon_sym_ATprotocol] = ACTIONS(2046), + [anon_sym_ATclass] = ACTIONS(2046), + [anon_sym_ATinterface] = ACTIONS(2046), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2044), + [sym_method_attribute_specifier] = ACTIONS(2044), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2044), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE] = ACTIONS(2044), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_API_AVAILABLE] = ACTIONS(2044), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_API_DEPRECATED] = ACTIONS(2044), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2044), + [anon_sym___deprecated_msg] = ACTIONS(2044), + [anon_sym___deprecated_enum_msg] = ACTIONS(2044), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2044), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2044), + [anon_sym_ATimplementation] = ACTIONS(2046), + [anon_sym_NS_ENUM] = ACTIONS(2044), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2044), + [anon_sym_NS_OPTIONS] = ACTIONS(2044), + [anon_sym_typeof] = ACTIONS(2044), + [anon_sym___typeof] = ACTIONS(2044), + [anon_sym___typeof__] = ACTIONS(2044), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_nil] = ACTIONS(2044), + [sym_id] = ACTIONS(2044), + [sym_instancetype] = ACTIONS(2044), + [sym_Class] = ACTIONS(2044), + [sym_SEL] = ACTIONS(2044), + [sym_IMP] = ACTIONS(2044), + [sym_BOOL] = ACTIONS(2044), + [sym_auto] = ACTIONS(2044), + [anon_sym_ATautoreleasepool] = ACTIONS(2046), + [anon_sym_ATsynchronized] = ACTIONS(2046), + [anon_sym_ATtry] = ACTIONS(2046), + [anon_sym_ATthrow] = ACTIONS(2046), + [anon_sym_ATselector] = ACTIONS(2046), + [anon_sym_ATencode] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2044), + [sym_YES] = ACTIONS(2044), + [sym_NO] = ACTIONS(2044), + [anon_sym___builtin_available] = ACTIONS(2044), + [anon_sym_ATavailable] = ACTIONS(2046), + [anon_sym_va_arg] = ACTIONS(2044), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1281] = { + [sym_identifier] = ACTIONS(1912), + [aux_sym_preproc_include_token1] = ACTIONS(1914), + [aux_sym_preproc_def_token1] = ACTIONS(1914), + [aux_sym_preproc_if_token1] = ACTIONS(1912), + [aux_sym_preproc_if_token2] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1912), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_CARET] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym___attribute] = ACTIONS(1912), + [anon_sym___attribute__] = ACTIONS(1912), + [anon_sym___declspec] = ACTIONS(1912), + [anon_sym___cdecl] = ACTIONS(1912), + [anon_sym___clrcall] = ACTIONS(1912), + [anon_sym___stdcall] = ACTIONS(1912), + [anon_sym___fastcall] = ACTIONS(1912), + [anon_sym___thiscall] = ACTIONS(1912), + [anon_sym___vectorcall] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_auto] = ACTIONS(1912), + [anon_sym_register] = ACTIONS(1912), + [anon_sym_inline] = ACTIONS(1912), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_volatile] = ACTIONS(1912), + [anon_sym_restrict] = ACTIONS(1912), + [anon_sym__Atomic] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1912), + [anon_sym_out] = ACTIONS(1912), + [anon_sym_inout] = ACTIONS(1912), + [anon_sym_bycopy] = ACTIONS(1912), + [anon_sym_byref] = ACTIONS(1912), + [anon_sym_oneway] = ACTIONS(1912), + [anon_sym__Nullable] = ACTIONS(1912), + [anon_sym__Nonnull] = ACTIONS(1912), + [anon_sym__Nullable_result] = ACTIONS(1912), + [anon_sym__Null_unspecified] = ACTIONS(1912), + [anon_sym___autoreleasing] = ACTIONS(1912), + [anon_sym___nullable] = ACTIONS(1912), + [anon_sym___nonnull] = ACTIONS(1912), + [anon_sym___strong] = ACTIONS(1912), + [anon_sym___weak] = ACTIONS(1912), + [anon_sym___bridge] = ACTIONS(1912), + [anon_sym___bridge_transfer] = ACTIONS(1912), + [anon_sym___bridge_retained] = ACTIONS(1912), + [anon_sym___unsafe_unretained] = ACTIONS(1912), + [anon_sym___block] = ACTIONS(1912), + [anon_sym___kindof] = ACTIONS(1912), + [anon_sym___unused] = ACTIONS(1912), + [anon_sym__Complex] = ACTIONS(1912), + [anon_sym___complex] = ACTIONS(1912), + [anon_sym_IBOutlet] = ACTIONS(1912), + [anon_sym_IBInspectable] = ACTIONS(1912), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1912), + [anon_sym_signed] = ACTIONS(1912), + [anon_sym_unsigned] = ACTIONS(1912), + [anon_sym_long] = ACTIONS(1912), + [anon_sym_short] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_switch] = ACTIONS(1912), + [anon_sym_case] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_do] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_goto] = ACTIONS(1912), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_sizeof] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1914), + [anon_sym_u_SQUOTE] = ACTIONS(1914), + [anon_sym_U_SQUOTE] = ACTIONS(1914), + [anon_sym_u8_SQUOTE] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_L_DQUOTE] = ACTIONS(1914), + [anon_sym_u_DQUOTE] = ACTIONS(1914), + [anon_sym_U_DQUOTE] = ACTIONS(1914), + [anon_sym_u8_DQUOTE] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_true] = ACTIONS(1912), + [sym_false] = ACTIONS(1912), + [sym_null] = ACTIONS(1912), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1914), + [anon_sym_ATimport] = ACTIONS(1914), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1912), + [anon_sym_ATcompatibility_alias] = ACTIONS(1914), + [anon_sym_ATprotocol] = ACTIONS(1914), + [anon_sym_ATclass] = ACTIONS(1914), + [anon_sym_ATinterface] = ACTIONS(1914), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1912), + [sym_method_attribute_specifier] = ACTIONS(1912), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1912), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE] = ACTIONS(1912), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_API_AVAILABLE] = ACTIONS(1912), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_API_DEPRECATED] = ACTIONS(1912), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1912), + [anon_sym___deprecated_msg] = ACTIONS(1912), + [anon_sym___deprecated_enum_msg] = ACTIONS(1912), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1912), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1912), + [anon_sym_ATimplementation] = ACTIONS(1914), + [anon_sym_NS_ENUM] = ACTIONS(1912), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1912), + [anon_sym_NS_OPTIONS] = ACTIONS(1912), + [anon_sym_typeof] = ACTIONS(1912), + [anon_sym___typeof] = ACTIONS(1912), + [anon_sym___typeof__] = ACTIONS(1912), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_nil] = ACTIONS(1912), + [sym_id] = ACTIONS(1912), + [sym_instancetype] = ACTIONS(1912), + [sym_Class] = ACTIONS(1912), + [sym_SEL] = ACTIONS(1912), + [sym_IMP] = ACTIONS(1912), + [sym_BOOL] = ACTIONS(1912), + [sym_auto] = ACTIONS(1912), + [anon_sym_ATautoreleasepool] = ACTIONS(1914), + [anon_sym_ATsynchronized] = ACTIONS(1914), + [anon_sym_ATtry] = ACTIONS(1914), + [anon_sym_ATthrow] = ACTIONS(1914), + [anon_sym_ATselector] = ACTIONS(1914), + [anon_sym_ATencode] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1912), + [sym_YES] = ACTIONS(1912), + [sym_NO] = ACTIONS(1912), + [anon_sym___builtin_available] = ACTIONS(1912), + [anon_sym_ATavailable] = ACTIONS(1914), + [anon_sym_va_arg] = ACTIONS(1912), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1282] = { + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2034), + [aux_sym_preproc_def_token1] = ACTIONS(2034), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_if_token2] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_auto] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_out] = ACTIONS(2032), + [anon_sym_inout] = ACTIONS(2032), + [anon_sym_bycopy] = ACTIONS(2032), + [anon_sym_byref] = ACTIONS(2032), + [anon_sym_oneway] = ACTIONS(2032), + [anon_sym__Nullable] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym__Nullable_result] = ACTIONS(2032), + [anon_sym__Null_unspecified] = ACTIONS(2032), + [anon_sym___autoreleasing] = ACTIONS(2032), + [anon_sym___nullable] = ACTIONS(2032), + [anon_sym___nonnull] = ACTIONS(2032), + [anon_sym___strong] = ACTIONS(2032), + [anon_sym___weak] = ACTIONS(2032), + [anon_sym___bridge] = ACTIONS(2032), + [anon_sym___bridge_transfer] = ACTIONS(2032), + [anon_sym___bridge_retained] = ACTIONS(2032), + [anon_sym___unsafe_unretained] = ACTIONS(2032), + [anon_sym___block] = ACTIONS(2032), + [anon_sym___kindof] = ACTIONS(2032), + [anon_sym___unused] = ACTIONS(2032), + [anon_sym__Complex] = ACTIONS(2032), + [anon_sym___complex] = ACTIONS(2032), + [anon_sym_IBOutlet] = ACTIONS(2032), + [anon_sym_IBInspectable] = ACTIONS(2032), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2032), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [sym_null] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2034), + [anon_sym_ATimport] = ACTIONS(2034), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2032), + [anon_sym_ATcompatibility_alias] = ACTIONS(2034), + [anon_sym_ATprotocol] = ACTIONS(2034), + [anon_sym_ATclass] = ACTIONS(2034), + [anon_sym_ATinterface] = ACTIONS(2034), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2032), + [sym_method_attribute_specifier] = ACTIONS(2032), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2032), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE] = ACTIONS(2032), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_API_AVAILABLE] = ACTIONS(2032), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_API_DEPRECATED] = ACTIONS(2032), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2032), + [anon_sym___deprecated_msg] = ACTIONS(2032), + [anon_sym___deprecated_enum_msg] = ACTIONS(2032), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2032), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2032), + [anon_sym_ATimplementation] = ACTIONS(2034), + [anon_sym_NS_ENUM] = ACTIONS(2032), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2032), + [anon_sym_NS_OPTIONS] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(2032), + [anon_sym___typeof] = ACTIONS(2032), + [anon_sym___typeof__] = ACTIONS(2032), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_nil] = ACTIONS(2032), + [sym_id] = ACTIONS(2032), + [sym_instancetype] = ACTIONS(2032), + [sym_Class] = ACTIONS(2032), + [sym_SEL] = ACTIONS(2032), + [sym_IMP] = ACTIONS(2032), + [sym_BOOL] = ACTIONS(2032), + [sym_auto] = ACTIONS(2032), + [anon_sym_ATautoreleasepool] = ACTIONS(2034), + [anon_sym_ATsynchronized] = ACTIONS(2034), + [anon_sym_ATtry] = ACTIONS(2034), + [anon_sym_ATthrow] = ACTIONS(2034), + [anon_sym_ATselector] = ACTIONS(2034), + [anon_sym_ATencode] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2032), + [sym_YES] = ACTIONS(2032), + [sym_NO] = ACTIONS(2032), + [anon_sym___builtin_available] = ACTIONS(2032), + [anon_sym_ATavailable] = ACTIONS(2034), + [anon_sym_va_arg] = ACTIONS(2032), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1283] = { + [sym_identifier] = ACTIONS(1912), + [aux_sym_preproc_include_token1] = ACTIONS(1914), + [aux_sym_preproc_def_token1] = ACTIONS(1914), + [aux_sym_preproc_if_token1] = ACTIONS(1912), + [aux_sym_preproc_if_token2] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1912), + [anon_sym_LPAREN2] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_TILDE] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_PLUS] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_CARET] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_typedef] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym___attribute] = ACTIONS(1912), + [anon_sym___attribute__] = ACTIONS(1912), + [anon_sym___declspec] = ACTIONS(1912), + [anon_sym___cdecl] = ACTIONS(1912), + [anon_sym___clrcall] = ACTIONS(1912), + [anon_sym___stdcall] = ACTIONS(1912), + [anon_sym___fastcall] = ACTIONS(1912), + [anon_sym___thiscall] = ACTIONS(1912), + [anon_sym___vectorcall] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_auto] = ACTIONS(1912), + [anon_sym_register] = ACTIONS(1912), + [anon_sym_inline] = ACTIONS(1912), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_volatile] = ACTIONS(1912), + [anon_sym_restrict] = ACTIONS(1912), + [anon_sym__Atomic] = ACTIONS(1912), + [anon_sym_in] = ACTIONS(1912), + [anon_sym_out] = ACTIONS(1912), + [anon_sym_inout] = ACTIONS(1912), + [anon_sym_bycopy] = ACTIONS(1912), + [anon_sym_byref] = ACTIONS(1912), + [anon_sym_oneway] = ACTIONS(1912), + [anon_sym__Nullable] = ACTIONS(1912), + [anon_sym__Nonnull] = ACTIONS(1912), + [anon_sym__Nullable_result] = ACTIONS(1912), + [anon_sym__Null_unspecified] = ACTIONS(1912), + [anon_sym___autoreleasing] = ACTIONS(1912), + [anon_sym___nullable] = ACTIONS(1912), + [anon_sym___nonnull] = ACTIONS(1912), + [anon_sym___strong] = ACTIONS(1912), + [anon_sym___weak] = ACTIONS(1912), + [anon_sym___bridge] = ACTIONS(1912), + [anon_sym___bridge_transfer] = ACTIONS(1912), + [anon_sym___bridge_retained] = ACTIONS(1912), + [anon_sym___unsafe_unretained] = ACTIONS(1912), + [anon_sym___block] = ACTIONS(1912), + [anon_sym___kindof] = ACTIONS(1912), + [anon_sym___unused] = ACTIONS(1912), + [anon_sym__Complex] = ACTIONS(1912), + [anon_sym___complex] = ACTIONS(1912), + [anon_sym_IBOutlet] = ACTIONS(1912), + [anon_sym_IBInspectable] = ACTIONS(1912), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1912), + [anon_sym_signed] = ACTIONS(1912), + [anon_sym_unsigned] = ACTIONS(1912), + [anon_sym_long] = ACTIONS(1912), + [anon_sym_short] = ACTIONS(1912), + [sym_primitive_type] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_switch] = ACTIONS(1912), + [anon_sym_case] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_do] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_goto] = ACTIONS(1912), + [anon_sym_DASH_DASH] = ACTIONS(1914), + [anon_sym_PLUS_PLUS] = ACTIONS(1914), + [anon_sym_sizeof] = ACTIONS(1912), + [sym_number_literal] = ACTIONS(1914), + [anon_sym_L_SQUOTE] = ACTIONS(1914), + [anon_sym_u_SQUOTE] = ACTIONS(1914), + [anon_sym_U_SQUOTE] = ACTIONS(1914), + [anon_sym_u8_SQUOTE] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_L_DQUOTE] = ACTIONS(1914), + [anon_sym_u_DQUOTE] = ACTIONS(1914), + [anon_sym_U_DQUOTE] = ACTIONS(1914), + [anon_sym_u8_DQUOTE] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(1914), + [sym_true] = ACTIONS(1912), + [sym_false] = ACTIONS(1912), + [sym_null] = ACTIONS(1912), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1914), + [anon_sym_ATimport] = ACTIONS(1914), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1912), + [anon_sym_ATcompatibility_alias] = ACTIONS(1914), + [anon_sym_ATprotocol] = ACTIONS(1914), + [anon_sym_ATclass] = ACTIONS(1914), + [anon_sym_ATinterface] = ACTIONS(1914), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1912), + [sym_method_attribute_specifier] = ACTIONS(1912), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1912), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE] = ACTIONS(1912), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1912), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_API_AVAILABLE] = ACTIONS(1912), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_API_DEPRECATED] = ACTIONS(1912), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1912), + [anon_sym___deprecated_msg] = ACTIONS(1912), + [anon_sym___deprecated_enum_msg] = ACTIONS(1912), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1912), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1912), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1912), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1912), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1912), + [anon_sym_ATimplementation] = ACTIONS(1914), + [anon_sym_NS_ENUM] = ACTIONS(1912), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1912), + [anon_sym_NS_OPTIONS] = ACTIONS(1912), + [anon_sym_typeof] = ACTIONS(1912), + [anon_sym___typeof] = ACTIONS(1912), + [anon_sym___typeof__] = ACTIONS(1912), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_nil] = ACTIONS(1912), + [sym_id] = ACTIONS(1912), + [sym_instancetype] = ACTIONS(1912), + [sym_Class] = ACTIONS(1912), + [sym_SEL] = ACTIONS(1912), + [sym_IMP] = ACTIONS(1912), + [sym_BOOL] = ACTIONS(1912), + [sym_auto] = ACTIONS(1912), + [anon_sym_ATautoreleasepool] = ACTIONS(1914), + [anon_sym_ATsynchronized] = ACTIONS(1914), + [anon_sym_ATtry] = ACTIONS(1914), + [anon_sym_ATthrow] = ACTIONS(1914), + [anon_sym_ATselector] = ACTIONS(1914), + [anon_sym_ATencode] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1912), + [sym_YES] = ACTIONS(1912), + [sym_NO] = ACTIONS(1912), + [anon_sym___builtin_available] = ACTIONS(1912), + [anon_sym_ATavailable] = ACTIONS(1914), + [anon_sym_va_arg] = ACTIONS(1912), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1284] = { + [sym_identifier] = ACTIONS(1916), + [aux_sym_preproc_include_token1] = ACTIONS(1918), + [aux_sym_preproc_def_token1] = ACTIONS(1918), + [aux_sym_preproc_if_token1] = ACTIONS(1916), + [aux_sym_preproc_if_token2] = ACTIONS(1916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1916), + [anon_sym_LPAREN2] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_TILDE] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_PLUS] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_typedef] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1916), + [anon_sym___attribute] = ACTIONS(1916), + [anon_sym___attribute__] = ACTIONS(1916), + [anon_sym___declspec] = ACTIONS(1916), + [anon_sym___cdecl] = ACTIONS(1916), + [anon_sym___clrcall] = ACTIONS(1916), + [anon_sym___stdcall] = ACTIONS(1916), + [anon_sym___fastcall] = ACTIONS(1916), + [anon_sym___thiscall] = ACTIONS(1916), + [anon_sym___vectorcall] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_auto] = ACTIONS(1916), + [anon_sym_register] = ACTIONS(1916), + [anon_sym_inline] = ACTIONS(1916), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1916), + [anon_sym_const] = ACTIONS(1916), + [anon_sym_volatile] = ACTIONS(1916), + [anon_sym_restrict] = ACTIONS(1916), + [anon_sym__Atomic] = ACTIONS(1916), + [anon_sym_in] = ACTIONS(1916), + [anon_sym_out] = ACTIONS(1916), + [anon_sym_inout] = ACTIONS(1916), + [anon_sym_bycopy] = ACTIONS(1916), + [anon_sym_byref] = ACTIONS(1916), + [anon_sym_oneway] = ACTIONS(1916), + [anon_sym__Nullable] = ACTIONS(1916), + [anon_sym__Nonnull] = ACTIONS(1916), + [anon_sym__Nullable_result] = ACTIONS(1916), + [anon_sym__Null_unspecified] = ACTIONS(1916), + [anon_sym___autoreleasing] = ACTIONS(1916), + [anon_sym___nullable] = ACTIONS(1916), + [anon_sym___nonnull] = ACTIONS(1916), + [anon_sym___strong] = ACTIONS(1916), + [anon_sym___weak] = ACTIONS(1916), + [anon_sym___bridge] = ACTIONS(1916), + [anon_sym___bridge_transfer] = ACTIONS(1916), + [anon_sym___bridge_retained] = ACTIONS(1916), + [anon_sym___unsafe_unretained] = ACTIONS(1916), + [anon_sym___block] = ACTIONS(1916), + [anon_sym___kindof] = ACTIONS(1916), + [anon_sym___unused] = ACTIONS(1916), + [anon_sym__Complex] = ACTIONS(1916), + [anon_sym___complex] = ACTIONS(1916), + [anon_sym_IBOutlet] = ACTIONS(1916), + [anon_sym_IBInspectable] = ACTIONS(1916), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1916), + [anon_sym_signed] = ACTIONS(1916), + [anon_sym_unsigned] = ACTIONS(1916), + [anon_sym_long] = ACTIONS(1916), + [anon_sym_short] = ACTIONS(1916), + [sym_primitive_type] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1916), + [anon_sym_struct] = ACTIONS(1916), + [anon_sym_union] = ACTIONS(1916), + [anon_sym_if] = ACTIONS(1916), + [anon_sym_switch] = ACTIONS(1916), + [anon_sym_case] = ACTIONS(1916), + [anon_sym_default] = ACTIONS(1916), + [anon_sym_while] = ACTIONS(1916), + [anon_sym_do] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1916), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_break] = ACTIONS(1916), + [anon_sym_continue] = ACTIONS(1916), + [anon_sym_goto] = ACTIONS(1916), + [anon_sym_DASH_DASH] = ACTIONS(1918), + [anon_sym_PLUS_PLUS] = ACTIONS(1918), + [anon_sym_sizeof] = ACTIONS(1916), + [sym_number_literal] = ACTIONS(1918), + [anon_sym_L_SQUOTE] = ACTIONS(1918), + [anon_sym_u_SQUOTE] = ACTIONS(1918), + [anon_sym_U_SQUOTE] = ACTIONS(1918), + [anon_sym_u8_SQUOTE] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_L_DQUOTE] = ACTIONS(1918), + [anon_sym_u_DQUOTE] = ACTIONS(1918), + [anon_sym_U_DQUOTE] = ACTIONS(1918), + [anon_sym_u8_DQUOTE] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1918), + [sym_true] = ACTIONS(1916), + [sym_false] = ACTIONS(1916), + [sym_null] = ACTIONS(1916), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1918), + [anon_sym_ATimport] = ACTIONS(1918), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1916), + [anon_sym_ATcompatibility_alias] = ACTIONS(1918), + [anon_sym_ATprotocol] = ACTIONS(1918), + [anon_sym_ATclass] = ACTIONS(1918), + [anon_sym_ATinterface] = ACTIONS(1918), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1916), + [sym_method_attribute_specifier] = ACTIONS(1916), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1916), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1916), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1916), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1916), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1916), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1916), + [anon_sym_NS_AVAILABLE] = ACTIONS(1916), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1916), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1916), + [anon_sym_API_AVAILABLE] = ACTIONS(1916), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1916), + [anon_sym_API_DEPRECATED] = ACTIONS(1916), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1916), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1916), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1916), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1916), + [anon_sym___deprecated_msg] = ACTIONS(1916), + [anon_sym___deprecated_enum_msg] = ACTIONS(1916), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1916), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1916), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1916), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1916), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1916), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1916), + [anon_sym_ATimplementation] = ACTIONS(1918), + [anon_sym_NS_ENUM] = ACTIONS(1916), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1916), + [anon_sym_NS_OPTIONS] = ACTIONS(1916), + [anon_sym_typeof] = ACTIONS(1916), + [anon_sym___typeof] = ACTIONS(1916), + [anon_sym___typeof__] = ACTIONS(1916), + [sym_self] = ACTIONS(1916), + [sym_super] = ACTIONS(1916), + [sym_nil] = ACTIONS(1916), + [sym_id] = ACTIONS(1916), + [sym_instancetype] = ACTIONS(1916), + [sym_Class] = ACTIONS(1916), + [sym_SEL] = ACTIONS(1916), + [sym_IMP] = ACTIONS(1916), + [sym_BOOL] = ACTIONS(1916), + [sym_auto] = ACTIONS(1916), + [anon_sym_ATautoreleasepool] = ACTIONS(1918), + [anon_sym_ATsynchronized] = ACTIONS(1918), + [anon_sym_ATtry] = ACTIONS(1918), + [anon_sym_ATthrow] = ACTIONS(1918), + [anon_sym_ATselector] = ACTIONS(1918), + [anon_sym_ATencode] = ACTIONS(1918), + [anon_sym_AT] = ACTIONS(1916), + [sym_YES] = ACTIONS(1916), + [sym_NO] = ACTIONS(1916), + [anon_sym___builtin_available] = ACTIONS(1916), + [anon_sym_ATavailable] = ACTIONS(1918), + [anon_sym_va_arg] = ACTIONS(1916), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1285] = { + [sym_identifier] = ACTIONS(1920), + [aux_sym_preproc_include_token1] = ACTIONS(1922), + [aux_sym_preproc_def_token1] = ACTIONS(1922), + [aux_sym_preproc_if_token1] = ACTIONS(1920), + [aux_sym_preproc_if_token2] = ACTIONS(1920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1920), + [anon_sym_LPAREN2] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(1922), + [anon_sym_TILDE] = ACTIONS(1922), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_PLUS] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(1922), + [anon_sym_CARET] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_typedef] = ACTIONS(1920), + [anon_sym_extern] = ACTIONS(1920), + [anon_sym___attribute] = ACTIONS(1920), + [anon_sym___attribute__] = ACTIONS(1920), + [anon_sym___declspec] = ACTIONS(1920), + [anon_sym___cdecl] = ACTIONS(1920), + [anon_sym___clrcall] = ACTIONS(1920), + [anon_sym___stdcall] = ACTIONS(1920), + [anon_sym___fastcall] = ACTIONS(1920), + [anon_sym___thiscall] = ACTIONS(1920), + [anon_sym___vectorcall] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_static] = ACTIONS(1920), + [anon_sym_auto] = ACTIONS(1920), + [anon_sym_register] = ACTIONS(1920), + [anon_sym_inline] = ACTIONS(1920), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1920), + [anon_sym_const] = ACTIONS(1920), + [anon_sym_volatile] = ACTIONS(1920), + [anon_sym_restrict] = ACTIONS(1920), + [anon_sym__Atomic] = ACTIONS(1920), + [anon_sym_in] = ACTIONS(1920), + [anon_sym_out] = ACTIONS(1920), + [anon_sym_inout] = ACTIONS(1920), + [anon_sym_bycopy] = ACTIONS(1920), + [anon_sym_byref] = ACTIONS(1920), + [anon_sym_oneway] = ACTIONS(1920), + [anon_sym__Nullable] = ACTIONS(1920), + [anon_sym__Nonnull] = ACTIONS(1920), + [anon_sym__Nullable_result] = ACTIONS(1920), + [anon_sym__Null_unspecified] = ACTIONS(1920), + [anon_sym___autoreleasing] = ACTIONS(1920), + [anon_sym___nullable] = ACTIONS(1920), + [anon_sym___nonnull] = ACTIONS(1920), + [anon_sym___strong] = ACTIONS(1920), + [anon_sym___weak] = ACTIONS(1920), + [anon_sym___bridge] = ACTIONS(1920), + [anon_sym___bridge_transfer] = ACTIONS(1920), + [anon_sym___bridge_retained] = ACTIONS(1920), + [anon_sym___unsafe_unretained] = ACTIONS(1920), + [anon_sym___block] = ACTIONS(1920), + [anon_sym___kindof] = ACTIONS(1920), + [anon_sym___unused] = ACTIONS(1920), + [anon_sym__Complex] = ACTIONS(1920), + [anon_sym___complex] = ACTIONS(1920), + [anon_sym_IBOutlet] = ACTIONS(1920), + [anon_sym_IBInspectable] = ACTIONS(1920), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1920), + [anon_sym_signed] = ACTIONS(1920), + [anon_sym_unsigned] = ACTIONS(1920), + [anon_sym_long] = ACTIONS(1920), + [anon_sym_short] = ACTIONS(1920), + [sym_primitive_type] = ACTIONS(1920), + [anon_sym_enum] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1920), + [anon_sym_union] = ACTIONS(1920), + [anon_sym_if] = ACTIONS(1920), + [anon_sym_switch] = ACTIONS(1920), + [anon_sym_case] = ACTIONS(1920), + [anon_sym_default] = ACTIONS(1920), + [anon_sym_while] = ACTIONS(1920), + [anon_sym_do] = ACTIONS(1920), + [anon_sym_for] = ACTIONS(1920), + [anon_sym_return] = ACTIONS(1920), + [anon_sym_break] = ACTIONS(1920), + [anon_sym_continue] = ACTIONS(1920), + [anon_sym_goto] = ACTIONS(1920), + [anon_sym_DASH_DASH] = ACTIONS(1922), + [anon_sym_PLUS_PLUS] = ACTIONS(1922), + [anon_sym_sizeof] = ACTIONS(1920), + [sym_number_literal] = ACTIONS(1922), + [anon_sym_L_SQUOTE] = ACTIONS(1922), + [anon_sym_u_SQUOTE] = ACTIONS(1922), + [anon_sym_U_SQUOTE] = ACTIONS(1922), + [anon_sym_u8_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_L_DQUOTE] = ACTIONS(1922), + [anon_sym_u_DQUOTE] = ACTIONS(1922), + [anon_sym_U_DQUOTE] = ACTIONS(1922), + [anon_sym_u8_DQUOTE] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1922), + [sym_true] = ACTIONS(1920), + [sym_false] = ACTIONS(1920), + [sym_null] = ACTIONS(1920), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1922), + [anon_sym_ATimport] = ACTIONS(1922), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1920), + [anon_sym_ATcompatibility_alias] = ACTIONS(1922), + [anon_sym_ATprotocol] = ACTIONS(1922), + [anon_sym_ATclass] = ACTIONS(1922), + [anon_sym_ATinterface] = ACTIONS(1922), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1920), + [sym_method_attribute_specifier] = ACTIONS(1920), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1920), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1920), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1920), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1920), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1920), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1920), + [anon_sym_NS_AVAILABLE] = ACTIONS(1920), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1920), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1920), + [anon_sym_API_AVAILABLE] = ACTIONS(1920), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1920), + [anon_sym_API_DEPRECATED] = ACTIONS(1920), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1920), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1920), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1920), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1920), + [anon_sym___deprecated_msg] = ACTIONS(1920), + [anon_sym___deprecated_enum_msg] = ACTIONS(1920), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1920), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1920), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1920), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1920), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1920), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1920), + [anon_sym_ATimplementation] = ACTIONS(1922), + [anon_sym_NS_ENUM] = ACTIONS(1920), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1920), + [anon_sym_NS_OPTIONS] = ACTIONS(1920), + [anon_sym_typeof] = ACTIONS(1920), + [anon_sym___typeof] = ACTIONS(1920), + [anon_sym___typeof__] = ACTIONS(1920), + [sym_self] = ACTIONS(1920), + [sym_super] = ACTIONS(1920), + [sym_nil] = ACTIONS(1920), + [sym_id] = ACTIONS(1920), + [sym_instancetype] = ACTIONS(1920), + [sym_Class] = ACTIONS(1920), + [sym_SEL] = ACTIONS(1920), + [sym_IMP] = ACTIONS(1920), + [sym_BOOL] = ACTIONS(1920), + [sym_auto] = ACTIONS(1920), + [anon_sym_ATautoreleasepool] = ACTIONS(1922), + [anon_sym_ATsynchronized] = ACTIONS(1922), + [anon_sym_ATtry] = ACTIONS(1922), + [anon_sym_ATthrow] = ACTIONS(1922), + [anon_sym_ATselector] = ACTIONS(1922), + [anon_sym_ATencode] = ACTIONS(1922), + [anon_sym_AT] = ACTIONS(1920), + [sym_YES] = ACTIONS(1920), + [sym_NO] = ACTIONS(1920), + [anon_sym___builtin_available] = ACTIONS(1920), + [anon_sym_ATavailable] = ACTIONS(1922), + [anon_sym_va_arg] = ACTIONS(1920), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1286] = { + [sym_identifier] = ACTIONS(1924), + [aux_sym_preproc_include_token1] = ACTIONS(1926), + [aux_sym_preproc_def_token1] = ACTIONS(1926), + [aux_sym_preproc_if_token1] = ACTIONS(1924), + [aux_sym_preproc_if_token2] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_CARET] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym___cdecl] = ACTIONS(1924), + [anon_sym___clrcall] = ACTIONS(1924), + [anon_sym___stdcall] = ACTIONS(1924), + [anon_sym___fastcall] = ACTIONS(1924), + [anon_sym___thiscall] = ACTIONS(1924), + [anon_sym___vectorcall] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_auto] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(1924), + [anon_sym_out] = ACTIONS(1924), + [anon_sym_inout] = ACTIONS(1924), + [anon_sym_bycopy] = ACTIONS(1924), + [anon_sym_byref] = ACTIONS(1924), + [anon_sym_oneway] = ACTIONS(1924), + [anon_sym__Nullable] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym__Nullable_result] = ACTIONS(1924), + [anon_sym__Null_unspecified] = ACTIONS(1924), + [anon_sym___autoreleasing] = ACTIONS(1924), + [anon_sym___nullable] = ACTIONS(1924), + [anon_sym___nonnull] = ACTIONS(1924), + [anon_sym___strong] = ACTIONS(1924), + [anon_sym___weak] = ACTIONS(1924), + [anon_sym___bridge] = ACTIONS(1924), + [anon_sym___bridge_transfer] = ACTIONS(1924), + [anon_sym___bridge_retained] = ACTIONS(1924), + [anon_sym___unsafe_unretained] = ACTIONS(1924), + [anon_sym___block] = ACTIONS(1924), + [anon_sym___kindof] = ACTIONS(1924), + [anon_sym___unused] = ACTIONS(1924), + [anon_sym__Complex] = ACTIONS(1924), + [anon_sym___complex] = ACTIONS(1924), + [anon_sym_IBOutlet] = ACTIONS(1924), + [anon_sym_IBInspectable] = ACTIONS(1924), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1924), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_switch] = ACTIONS(1924), + [anon_sym_case] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_do] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1924), + [sym_number_literal] = ACTIONS(1926), + [anon_sym_L_SQUOTE] = ACTIONS(1926), + [anon_sym_u_SQUOTE] = ACTIONS(1926), + [anon_sym_U_SQUOTE] = ACTIONS(1926), + [anon_sym_u8_SQUOTE] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_L_DQUOTE] = ACTIONS(1926), + [anon_sym_u_DQUOTE] = ACTIONS(1926), + [anon_sym_U_DQUOTE] = ACTIONS(1926), + [anon_sym_u8_DQUOTE] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [sym_true] = ACTIONS(1924), + [sym_false] = ACTIONS(1924), + [sym_null] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1926), + [anon_sym_ATimport] = ACTIONS(1926), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1924), + [anon_sym_ATcompatibility_alias] = ACTIONS(1926), + [anon_sym_ATprotocol] = ACTIONS(1926), + [anon_sym_ATclass] = ACTIONS(1926), + [anon_sym_ATinterface] = ACTIONS(1926), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1924), + [sym_method_attribute_specifier] = ACTIONS(1924), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1924), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE] = ACTIONS(1924), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_API_AVAILABLE] = ACTIONS(1924), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_API_DEPRECATED] = ACTIONS(1924), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1924), + [anon_sym___deprecated_msg] = ACTIONS(1924), + [anon_sym___deprecated_enum_msg] = ACTIONS(1924), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1924), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1924), + [anon_sym_ATimplementation] = ACTIONS(1926), + [anon_sym_NS_ENUM] = ACTIONS(1924), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1924), + [anon_sym_NS_OPTIONS] = ACTIONS(1924), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym___typeof] = ACTIONS(1924), + [anon_sym___typeof__] = ACTIONS(1924), + [sym_self] = ACTIONS(1924), + [sym_super] = ACTIONS(1924), + [sym_nil] = ACTIONS(1924), + [sym_id] = ACTIONS(1924), + [sym_instancetype] = ACTIONS(1924), + [sym_Class] = ACTIONS(1924), + [sym_SEL] = ACTIONS(1924), + [sym_IMP] = ACTIONS(1924), + [sym_BOOL] = ACTIONS(1924), + [sym_auto] = ACTIONS(1924), + [anon_sym_ATautoreleasepool] = ACTIONS(1926), + [anon_sym_ATsynchronized] = ACTIONS(1926), + [anon_sym_ATtry] = ACTIONS(1926), + [anon_sym_ATthrow] = ACTIONS(1926), + [anon_sym_ATselector] = ACTIONS(1926), + [anon_sym_ATencode] = ACTIONS(1926), + [anon_sym_AT] = ACTIONS(1924), + [sym_YES] = ACTIONS(1924), + [sym_NO] = ACTIONS(1924), + [anon_sym___builtin_available] = ACTIONS(1924), + [anon_sym_ATavailable] = ACTIONS(1926), + [anon_sym_va_arg] = ACTIONS(1924), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1287] = { + [sym_identifier] = ACTIONS(1924), + [aux_sym_preproc_include_token1] = ACTIONS(1926), + [aux_sym_preproc_def_token1] = ACTIONS(1926), + [aux_sym_preproc_if_token1] = ACTIONS(1924), + [aux_sym_preproc_if_token2] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_CARET] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym___cdecl] = ACTIONS(1924), + [anon_sym___clrcall] = ACTIONS(1924), + [anon_sym___stdcall] = ACTIONS(1924), + [anon_sym___fastcall] = ACTIONS(1924), + [anon_sym___thiscall] = ACTIONS(1924), + [anon_sym___vectorcall] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_auto] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(1924), + [anon_sym_out] = ACTIONS(1924), + [anon_sym_inout] = ACTIONS(1924), + [anon_sym_bycopy] = ACTIONS(1924), + [anon_sym_byref] = ACTIONS(1924), + [anon_sym_oneway] = ACTIONS(1924), + [anon_sym__Nullable] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym__Nullable_result] = ACTIONS(1924), + [anon_sym__Null_unspecified] = ACTIONS(1924), + [anon_sym___autoreleasing] = ACTIONS(1924), + [anon_sym___nullable] = ACTIONS(1924), + [anon_sym___nonnull] = ACTIONS(1924), + [anon_sym___strong] = ACTIONS(1924), + [anon_sym___weak] = ACTIONS(1924), + [anon_sym___bridge] = ACTIONS(1924), + [anon_sym___bridge_transfer] = ACTIONS(1924), + [anon_sym___bridge_retained] = ACTIONS(1924), + [anon_sym___unsafe_unretained] = ACTIONS(1924), + [anon_sym___block] = ACTIONS(1924), + [anon_sym___kindof] = ACTIONS(1924), + [anon_sym___unused] = ACTIONS(1924), + [anon_sym__Complex] = ACTIONS(1924), + [anon_sym___complex] = ACTIONS(1924), + [anon_sym_IBOutlet] = ACTIONS(1924), + [anon_sym_IBInspectable] = ACTIONS(1924), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1924), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_switch] = ACTIONS(1924), + [anon_sym_case] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_do] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1924), + [sym_number_literal] = ACTIONS(1926), + [anon_sym_L_SQUOTE] = ACTIONS(1926), + [anon_sym_u_SQUOTE] = ACTIONS(1926), + [anon_sym_U_SQUOTE] = ACTIONS(1926), + [anon_sym_u8_SQUOTE] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_L_DQUOTE] = ACTIONS(1926), + [anon_sym_u_DQUOTE] = ACTIONS(1926), + [anon_sym_U_DQUOTE] = ACTIONS(1926), + [anon_sym_u8_DQUOTE] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [sym_true] = ACTIONS(1924), + [sym_false] = ACTIONS(1924), + [sym_null] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1926), + [anon_sym_ATimport] = ACTIONS(1926), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1924), + [anon_sym_ATcompatibility_alias] = ACTIONS(1926), + [anon_sym_ATprotocol] = ACTIONS(1926), + [anon_sym_ATclass] = ACTIONS(1926), + [anon_sym_ATinterface] = ACTIONS(1926), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1924), + [sym_method_attribute_specifier] = ACTIONS(1924), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1924), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE] = ACTIONS(1924), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_API_AVAILABLE] = ACTIONS(1924), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_API_DEPRECATED] = ACTIONS(1924), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1924), + [anon_sym___deprecated_msg] = ACTIONS(1924), + [anon_sym___deprecated_enum_msg] = ACTIONS(1924), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1924), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1924), + [anon_sym_ATimplementation] = ACTIONS(1926), + [anon_sym_NS_ENUM] = ACTIONS(1924), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1924), + [anon_sym_NS_OPTIONS] = ACTIONS(1924), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym___typeof] = ACTIONS(1924), + [anon_sym___typeof__] = ACTIONS(1924), + [sym_self] = ACTIONS(1924), + [sym_super] = ACTIONS(1924), + [sym_nil] = ACTIONS(1924), + [sym_id] = ACTIONS(1924), + [sym_instancetype] = ACTIONS(1924), + [sym_Class] = ACTIONS(1924), + [sym_SEL] = ACTIONS(1924), + [sym_IMP] = ACTIONS(1924), + [sym_BOOL] = ACTIONS(1924), + [sym_auto] = ACTIONS(1924), + [anon_sym_ATautoreleasepool] = ACTIONS(1926), + [anon_sym_ATsynchronized] = ACTIONS(1926), + [anon_sym_ATtry] = ACTIONS(1926), + [anon_sym_ATthrow] = ACTIONS(1926), + [anon_sym_ATselector] = ACTIONS(1926), + [anon_sym_ATencode] = ACTIONS(1926), + [anon_sym_AT] = ACTIONS(1924), + [sym_YES] = ACTIONS(1924), + [sym_NO] = ACTIONS(1924), + [anon_sym___builtin_available] = ACTIONS(1924), + [anon_sym_ATavailable] = ACTIONS(1926), + [anon_sym_va_arg] = ACTIONS(1924), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1288] = { + [sym_identifier] = ACTIONS(1924), + [aux_sym_preproc_include_token1] = ACTIONS(1926), + [aux_sym_preproc_def_token1] = ACTIONS(1926), + [aux_sym_preproc_if_token1] = ACTIONS(1924), + [aux_sym_preproc_if_token2] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_CARET] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym___cdecl] = ACTIONS(1924), + [anon_sym___clrcall] = ACTIONS(1924), + [anon_sym___stdcall] = ACTIONS(1924), + [anon_sym___fastcall] = ACTIONS(1924), + [anon_sym___thiscall] = ACTIONS(1924), + [anon_sym___vectorcall] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_auto] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(1924), + [anon_sym_out] = ACTIONS(1924), + [anon_sym_inout] = ACTIONS(1924), + [anon_sym_bycopy] = ACTIONS(1924), + [anon_sym_byref] = ACTIONS(1924), + [anon_sym_oneway] = ACTIONS(1924), + [anon_sym__Nullable] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym__Nullable_result] = ACTIONS(1924), + [anon_sym__Null_unspecified] = ACTIONS(1924), + [anon_sym___autoreleasing] = ACTIONS(1924), + [anon_sym___nullable] = ACTIONS(1924), + [anon_sym___nonnull] = ACTIONS(1924), + [anon_sym___strong] = ACTIONS(1924), + [anon_sym___weak] = ACTIONS(1924), + [anon_sym___bridge] = ACTIONS(1924), + [anon_sym___bridge_transfer] = ACTIONS(1924), + [anon_sym___bridge_retained] = ACTIONS(1924), + [anon_sym___unsafe_unretained] = ACTIONS(1924), + [anon_sym___block] = ACTIONS(1924), + [anon_sym___kindof] = ACTIONS(1924), + [anon_sym___unused] = ACTIONS(1924), + [anon_sym__Complex] = ACTIONS(1924), + [anon_sym___complex] = ACTIONS(1924), + [anon_sym_IBOutlet] = ACTIONS(1924), + [anon_sym_IBInspectable] = ACTIONS(1924), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1924), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_switch] = ACTIONS(1924), + [anon_sym_case] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_do] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1924), + [sym_number_literal] = ACTIONS(1926), + [anon_sym_L_SQUOTE] = ACTIONS(1926), + [anon_sym_u_SQUOTE] = ACTIONS(1926), + [anon_sym_U_SQUOTE] = ACTIONS(1926), + [anon_sym_u8_SQUOTE] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_L_DQUOTE] = ACTIONS(1926), + [anon_sym_u_DQUOTE] = ACTIONS(1926), + [anon_sym_U_DQUOTE] = ACTIONS(1926), + [anon_sym_u8_DQUOTE] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [sym_true] = ACTIONS(1924), + [sym_false] = ACTIONS(1924), + [sym_null] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1926), + [anon_sym_ATimport] = ACTIONS(1926), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1924), + [anon_sym_ATcompatibility_alias] = ACTIONS(1926), + [anon_sym_ATprotocol] = ACTIONS(1926), + [anon_sym_ATclass] = ACTIONS(1926), + [anon_sym_ATinterface] = ACTIONS(1926), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1924), + [sym_method_attribute_specifier] = ACTIONS(1924), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1924), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE] = ACTIONS(1924), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_API_AVAILABLE] = ACTIONS(1924), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_API_DEPRECATED] = ACTIONS(1924), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1924), + [anon_sym___deprecated_msg] = ACTIONS(1924), + [anon_sym___deprecated_enum_msg] = ACTIONS(1924), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1924), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1924), + [anon_sym_ATimplementation] = ACTIONS(1926), + [anon_sym_NS_ENUM] = ACTIONS(1924), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1924), + [anon_sym_NS_OPTIONS] = ACTIONS(1924), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym___typeof] = ACTIONS(1924), + [anon_sym___typeof__] = ACTIONS(1924), + [sym_self] = ACTIONS(1924), + [sym_super] = ACTIONS(1924), + [sym_nil] = ACTIONS(1924), + [sym_id] = ACTIONS(1924), + [sym_instancetype] = ACTIONS(1924), + [sym_Class] = ACTIONS(1924), + [sym_SEL] = ACTIONS(1924), + [sym_IMP] = ACTIONS(1924), + [sym_BOOL] = ACTIONS(1924), + [sym_auto] = ACTIONS(1924), + [anon_sym_ATautoreleasepool] = ACTIONS(1926), + [anon_sym_ATsynchronized] = ACTIONS(1926), + [anon_sym_ATtry] = ACTIONS(1926), + [anon_sym_ATthrow] = ACTIONS(1926), + [anon_sym_ATselector] = ACTIONS(1926), + [anon_sym_ATencode] = ACTIONS(1926), + [anon_sym_AT] = ACTIONS(1924), + [sym_YES] = ACTIONS(1924), + [sym_NO] = ACTIONS(1924), + [anon_sym___builtin_available] = ACTIONS(1924), + [anon_sym_ATavailable] = ACTIONS(1926), + [anon_sym_va_arg] = ACTIONS(1924), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1289] = { + [sym__expression] = STATE(2958), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_initializer_list] = STATE(3006), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_COMMA] = ACTIONS(2138), + [anon_sym_RPAREN] = ACTIONS(2138), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(2146), + [anon_sym_SLASH] = ACTIONS(2148), + [anon_sym_PERCENT] = ACTIONS(2148), + [anon_sym_PIPE_PIPE] = ACTIONS(2138), + [anon_sym_AMP_AMP] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2148), + [anon_sym_CARET] = ACTIONS(2150), + [anon_sym_AMP] = ACTIONS(2146), + [anon_sym_EQ_EQ] = ACTIONS(2138), + [anon_sym_BANG_EQ] = ACTIONS(2138), + [anon_sym_GT] = ACTIONS(2148), + [anon_sym_GT_EQ] = ACTIONS(2138), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2148), + [anon_sym_LT_LT] = ACTIONS(2148), + [anon_sym_GT_GT] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym___attribute] = ACTIONS(2148), + [anon_sym___attribute__] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(2138), + [anon_sym_EQ] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_volatile] = ACTIONS(2148), + [anon_sym_restrict] = ACTIONS(2148), + [anon_sym__Atomic] = ACTIONS(2148), + [anon_sym_in] = ACTIONS(2148), + [anon_sym_out] = ACTIONS(2148), + [anon_sym_inout] = ACTIONS(2148), + [anon_sym_bycopy] = ACTIONS(2148), + [anon_sym_byref] = ACTIONS(2148), + [anon_sym_oneway] = ACTIONS(2148), + [anon_sym__Nullable] = ACTIONS(2148), + [anon_sym__Nonnull] = ACTIONS(2148), + [anon_sym__Nullable_result] = ACTIONS(2148), + [anon_sym__Null_unspecified] = ACTIONS(2148), + [anon_sym___autoreleasing] = ACTIONS(2148), + [anon_sym___nullable] = ACTIONS(2148), + [anon_sym___nonnull] = ACTIONS(2148), + [anon_sym___strong] = ACTIONS(2148), + [anon_sym___weak] = ACTIONS(2148), + [anon_sym___bridge] = ACTIONS(2148), + [anon_sym___bridge_transfer] = ACTIONS(2148), + [anon_sym___bridge_retained] = ACTIONS(2148), + [anon_sym___unsafe_unretained] = ACTIONS(2148), + [anon_sym___block] = ACTIONS(2148), + [anon_sym___kindof] = ACTIONS(2148), + [anon_sym___unused] = ACTIONS(2148), + [anon_sym__Complex] = ACTIONS(2148), + [anon_sym___complex] = ACTIONS(2148), + [anon_sym_IBOutlet] = ACTIONS(2148), + [anon_sym_IBInspectable] = ACTIONS(2148), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2148), + [anon_sym_COLON] = ACTIONS(2138), + [anon_sym_QMARK] = ACTIONS(2138), + [anon_sym_STAR_EQ] = ACTIONS(2138), + [anon_sym_SLASH_EQ] = ACTIONS(2138), + [anon_sym_PERCENT_EQ] = ACTIONS(2138), + [anon_sym_PLUS_EQ] = ACTIONS(2138), + [anon_sym_DASH_EQ] = ACTIONS(2138), + [anon_sym_LT_LT_EQ] = ACTIONS(2138), + [anon_sym_GT_GT_EQ] = ACTIONS(2138), + [anon_sym_AMP_EQ] = ACTIONS(2138), + [anon_sym_CARET_EQ] = ACTIONS(2138), + [anon_sym_PIPE_EQ] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [anon_sym_DOT] = ACTIONS(2148), + [anon_sym_DASH_GT] = ACTIONS(2138), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_method_attribute_specifier] = ACTIONS(2148), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2148), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2148), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2148), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2148), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2148), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2148), + [anon_sym_NS_AVAILABLE] = ACTIONS(2148), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2148), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2148), + [anon_sym_API_AVAILABLE] = ACTIONS(2148), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2148), + [anon_sym_API_DEPRECATED] = ACTIONS(2148), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2148), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2148), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2148), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2148), + [anon_sym___deprecated_msg] = ACTIONS(2148), + [anon_sym___deprecated_enum_msg] = ACTIONS(2148), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2148), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2148), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2148), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2148), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2148), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2148), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1290] = { + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2046), + [aux_sym_preproc_def_token1] = ACTIONS(2046), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_if_token2] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_auto] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym_in] = ACTIONS(2044), + [anon_sym_out] = ACTIONS(2044), + [anon_sym_inout] = ACTIONS(2044), + [anon_sym_bycopy] = ACTIONS(2044), + [anon_sym_byref] = ACTIONS(2044), + [anon_sym_oneway] = ACTIONS(2044), + [anon_sym__Nullable] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym__Nullable_result] = ACTIONS(2044), + [anon_sym__Null_unspecified] = ACTIONS(2044), + [anon_sym___autoreleasing] = ACTIONS(2044), + [anon_sym___nullable] = ACTIONS(2044), + [anon_sym___nonnull] = ACTIONS(2044), + [anon_sym___strong] = ACTIONS(2044), + [anon_sym___weak] = ACTIONS(2044), + [anon_sym___bridge] = ACTIONS(2044), + [anon_sym___bridge_transfer] = ACTIONS(2044), + [anon_sym___bridge_retained] = ACTIONS(2044), + [anon_sym___unsafe_unretained] = ACTIONS(2044), + [anon_sym___block] = ACTIONS(2044), + [anon_sym___kindof] = ACTIONS(2044), + [anon_sym___unused] = ACTIONS(2044), + [anon_sym__Complex] = ACTIONS(2044), + [anon_sym___complex] = ACTIONS(2044), + [anon_sym_IBOutlet] = ACTIONS(2044), + [anon_sym_IBInspectable] = ACTIONS(2044), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2044), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [sym_null] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2046), + [anon_sym_ATimport] = ACTIONS(2046), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2044), + [anon_sym_ATcompatibility_alias] = ACTIONS(2046), + [anon_sym_ATprotocol] = ACTIONS(2046), + [anon_sym_ATclass] = ACTIONS(2046), + [anon_sym_ATinterface] = ACTIONS(2046), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2044), + [sym_method_attribute_specifier] = ACTIONS(2044), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2044), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE] = ACTIONS(2044), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_API_AVAILABLE] = ACTIONS(2044), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_API_DEPRECATED] = ACTIONS(2044), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2044), + [anon_sym___deprecated_msg] = ACTIONS(2044), + [anon_sym___deprecated_enum_msg] = ACTIONS(2044), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2044), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2044), + [anon_sym_ATimplementation] = ACTIONS(2046), + [anon_sym_NS_ENUM] = ACTIONS(2044), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2044), + [anon_sym_NS_OPTIONS] = ACTIONS(2044), + [anon_sym_typeof] = ACTIONS(2044), + [anon_sym___typeof] = ACTIONS(2044), + [anon_sym___typeof__] = ACTIONS(2044), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_nil] = ACTIONS(2044), + [sym_id] = ACTIONS(2044), + [sym_instancetype] = ACTIONS(2044), + [sym_Class] = ACTIONS(2044), + [sym_SEL] = ACTIONS(2044), + [sym_IMP] = ACTIONS(2044), + [sym_BOOL] = ACTIONS(2044), + [sym_auto] = ACTIONS(2044), + [anon_sym_ATautoreleasepool] = ACTIONS(2046), + [anon_sym_ATsynchronized] = ACTIONS(2046), + [anon_sym_ATtry] = ACTIONS(2046), + [anon_sym_ATthrow] = ACTIONS(2046), + [anon_sym_ATselector] = ACTIONS(2046), + [anon_sym_ATencode] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2044), + [sym_YES] = ACTIONS(2044), + [sym_NO] = ACTIONS(2044), + [anon_sym___builtin_available] = ACTIONS(2044), + [anon_sym_ATavailable] = ACTIONS(2046), + [anon_sym_va_arg] = ACTIONS(2044), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1291] = { + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2046), + [aux_sym_preproc_def_token1] = ACTIONS(2046), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_if_token2] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_auto] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym_in] = ACTIONS(2044), + [anon_sym_out] = ACTIONS(2044), + [anon_sym_inout] = ACTIONS(2044), + [anon_sym_bycopy] = ACTIONS(2044), + [anon_sym_byref] = ACTIONS(2044), + [anon_sym_oneway] = ACTIONS(2044), + [anon_sym__Nullable] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym__Nullable_result] = ACTIONS(2044), + [anon_sym__Null_unspecified] = ACTIONS(2044), + [anon_sym___autoreleasing] = ACTIONS(2044), + [anon_sym___nullable] = ACTIONS(2044), + [anon_sym___nonnull] = ACTIONS(2044), + [anon_sym___strong] = ACTIONS(2044), + [anon_sym___weak] = ACTIONS(2044), + [anon_sym___bridge] = ACTIONS(2044), + [anon_sym___bridge_transfer] = ACTIONS(2044), + [anon_sym___bridge_retained] = ACTIONS(2044), + [anon_sym___unsafe_unretained] = ACTIONS(2044), + [anon_sym___block] = ACTIONS(2044), + [anon_sym___kindof] = ACTIONS(2044), + [anon_sym___unused] = ACTIONS(2044), + [anon_sym__Complex] = ACTIONS(2044), + [anon_sym___complex] = ACTIONS(2044), + [anon_sym_IBOutlet] = ACTIONS(2044), + [anon_sym_IBInspectable] = ACTIONS(2044), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2044), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [sym_null] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2046), + [anon_sym_ATimport] = ACTIONS(2046), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2044), + [anon_sym_ATcompatibility_alias] = ACTIONS(2046), + [anon_sym_ATprotocol] = ACTIONS(2046), + [anon_sym_ATclass] = ACTIONS(2046), + [anon_sym_ATinterface] = ACTIONS(2046), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2044), + [sym_method_attribute_specifier] = ACTIONS(2044), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2044), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE] = ACTIONS(2044), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_API_AVAILABLE] = ACTIONS(2044), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_API_DEPRECATED] = ACTIONS(2044), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2044), + [anon_sym___deprecated_msg] = ACTIONS(2044), + [anon_sym___deprecated_enum_msg] = ACTIONS(2044), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2044), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2044), + [anon_sym_ATimplementation] = ACTIONS(2046), + [anon_sym_NS_ENUM] = ACTIONS(2044), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2044), + [anon_sym_NS_OPTIONS] = ACTIONS(2044), + [anon_sym_typeof] = ACTIONS(2044), + [anon_sym___typeof] = ACTIONS(2044), + [anon_sym___typeof__] = ACTIONS(2044), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_nil] = ACTIONS(2044), + [sym_id] = ACTIONS(2044), + [sym_instancetype] = ACTIONS(2044), + [sym_Class] = ACTIONS(2044), + [sym_SEL] = ACTIONS(2044), + [sym_IMP] = ACTIONS(2044), + [sym_BOOL] = ACTIONS(2044), + [sym_auto] = ACTIONS(2044), + [anon_sym_ATautoreleasepool] = ACTIONS(2046), + [anon_sym_ATsynchronized] = ACTIONS(2046), + [anon_sym_ATtry] = ACTIONS(2046), + [anon_sym_ATthrow] = ACTIONS(2046), + [anon_sym_ATselector] = ACTIONS(2046), + [anon_sym_ATencode] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2044), + [sym_YES] = ACTIONS(2044), + [sym_NO] = ACTIONS(2044), + [anon_sym___builtin_available] = ACTIONS(2044), + [anon_sym_ATavailable] = ACTIONS(2046), + [anon_sym_va_arg] = ACTIONS(2044), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1292] = { + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2046), + [aux_sym_preproc_def_token1] = ACTIONS(2046), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_if_token2] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_auto] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym_in] = ACTIONS(2044), + [anon_sym_out] = ACTIONS(2044), + [anon_sym_inout] = ACTIONS(2044), + [anon_sym_bycopy] = ACTIONS(2044), + [anon_sym_byref] = ACTIONS(2044), + [anon_sym_oneway] = ACTIONS(2044), + [anon_sym__Nullable] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym__Nullable_result] = ACTIONS(2044), + [anon_sym__Null_unspecified] = ACTIONS(2044), + [anon_sym___autoreleasing] = ACTIONS(2044), + [anon_sym___nullable] = ACTIONS(2044), + [anon_sym___nonnull] = ACTIONS(2044), + [anon_sym___strong] = ACTIONS(2044), + [anon_sym___weak] = ACTIONS(2044), + [anon_sym___bridge] = ACTIONS(2044), + [anon_sym___bridge_transfer] = ACTIONS(2044), + [anon_sym___bridge_retained] = ACTIONS(2044), + [anon_sym___unsafe_unretained] = ACTIONS(2044), + [anon_sym___block] = ACTIONS(2044), + [anon_sym___kindof] = ACTIONS(2044), + [anon_sym___unused] = ACTIONS(2044), + [anon_sym__Complex] = ACTIONS(2044), + [anon_sym___complex] = ACTIONS(2044), + [anon_sym_IBOutlet] = ACTIONS(2044), + [anon_sym_IBInspectable] = ACTIONS(2044), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2044), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [sym_null] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2046), + [anon_sym_ATimport] = ACTIONS(2046), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2044), + [anon_sym_ATcompatibility_alias] = ACTIONS(2046), + [anon_sym_ATprotocol] = ACTIONS(2046), + [anon_sym_ATclass] = ACTIONS(2046), + [anon_sym_ATinterface] = ACTIONS(2046), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2044), + [sym_method_attribute_specifier] = ACTIONS(2044), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2044), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE] = ACTIONS(2044), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_API_AVAILABLE] = ACTIONS(2044), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_API_DEPRECATED] = ACTIONS(2044), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2044), + [anon_sym___deprecated_msg] = ACTIONS(2044), + [anon_sym___deprecated_enum_msg] = ACTIONS(2044), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2044), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2044), + [anon_sym_ATimplementation] = ACTIONS(2046), + [anon_sym_NS_ENUM] = ACTIONS(2044), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2044), + [anon_sym_NS_OPTIONS] = ACTIONS(2044), + [anon_sym_typeof] = ACTIONS(2044), + [anon_sym___typeof] = ACTIONS(2044), + [anon_sym___typeof__] = ACTIONS(2044), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_nil] = ACTIONS(2044), + [sym_id] = ACTIONS(2044), + [sym_instancetype] = ACTIONS(2044), + [sym_Class] = ACTIONS(2044), + [sym_SEL] = ACTIONS(2044), + [sym_IMP] = ACTIONS(2044), + [sym_BOOL] = ACTIONS(2044), + [sym_auto] = ACTIONS(2044), + [anon_sym_ATautoreleasepool] = ACTIONS(2046), + [anon_sym_ATsynchronized] = ACTIONS(2046), + [anon_sym_ATtry] = ACTIONS(2046), + [anon_sym_ATthrow] = ACTIONS(2046), + [anon_sym_ATselector] = ACTIONS(2046), + [anon_sym_ATencode] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2044), + [sym_YES] = ACTIONS(2044), + [sym_NO] = ACTIONS(2044), + [anon_sym___builtin_available] = ACTIONS(2044), + [anon_sym_ATavailable] = ACTIONS(2046), + [anon_sym_va_arg] = ACTIONS(2044), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1293] = { + [sym_identifier] = ACTIONS(1924), + [aux_sym_preproc_include_token1] = ACTIONS(1926), + [aux_sym_preproc_def_token1] = ACTIONS(1926), + [aux_sym_preproc_if_token1] = ACTIONS(1924), + [aux_sym_preproc_if_token2] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1924), + [anon_sym_LPAREN2] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_TILDE] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_PLUS] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_CARET] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_typedef] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym___attribute] = ACTIONS(1924), + [anon_sym___attribute__] = ACTIONS(1924), + [anon_sym___declspec] = ACTIONS(1924), + [anon_sym___cdecl] = ACTIONS(1924), + [anon_sym___clrcall] = ACTIONS(1924), + [anon_sym___stdcall] = ACTIONS(1924), + [anon_sym___fastcall] = ACTIONS(1924), + [anon_sym___thiscall] = ACTIONS(1924), + [anon_sym___vectorcall] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_auto] = ACTIONS(1924), + [anon_sym_register] = ACTIONS(1924), + [anon_sym_inline] = ACTIONS(1924), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_volatile] = ACTIONS(1924), + [anon_sym_restrict] = ACTIONS(1924), + [anon_sym__Atomic] = ACTIONS(1924), + [anon_sym_in] = ACTIONS(1924), + [anon_sym_out] = ACTIONS(1924), + [anon_sym_inout] = ACTIONS(1924), + [anon_sym_bycopy] = ACTIONS(1924), + [anon_sym_byref] = ACTIONS(1924), + [anon_sym_oneway] = ACTIONS(1924), + [anon_sym__Nullable] = ACTIONS(1924), + [anon_sym__Nonnull] = ACTIONS(1924), + [anon_sym__Nullable_result] = ACTIONS(1924), + [anon_sym__Null_unspecified] = ACTIONS(1924), + [anon_sym___autoreleasing] = ACTIONS(1924), + [anon_sym___nullable] = ACTIONS(1924), + [anon_sym___nonnull] = ACTIONS(1924), + [anon_sym___strong] = ACTIONS(1924), + [anon_sym___weak] = ACTIONS(1924), + [anon_sym___bridge] = ACTIONS(1924), + [anon_sym___bridge_transfer] = ACTIONS(1924), + [anon_sym___bridge_retained] = ACTIONS(1924), + [anon_sym___unsafe_unretained] = ACTIONS(1924), + [anon_sym___block] = ACTIONS(1924), + [anon_sym___kindof] = ACTIONS(1924), + [anon_sym___unused] = ACTIONS(1924), + [anon_sym__Complex] = ACTIONS(1924), + [anon_sym___complex] = ACTIONS(1924), + [anon_sym_IBOutlet] = ACTIONS(1924), + [anon_sym_IBInspectable] = ACTIONS(1924), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1924), + [anon_sym_signed] = ACTIONS(1924), + [anon_sym_unsigned] = ACTIONS(1924), + [anon_sym_long] = ACTIONS(1924), + [anon_sym_short] = ACTIONS(1924), + [sym_primitive_type] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_switch] = ACTIONS(1924), + [anon_sym_case] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_do] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_goto] = ACTIONS(1924), + [anon_sym_DASH_DASH] = ACTIONS(1926), + [anon_sym_PLUS_PLUS] = ACTIONS(1926), + [anon_sym_sizeof] = ACTIONS(1924), + [sym_number_literal] = ACTIONS(1926), + [anon_sym_L_SQUOTE] = ACTIONS(1926), + [anon_sym_u_SQUOTE] = ACTIONS(1926), + [anon_sym_U_SQUOTE] = ACTIONS(1926), + [anon_sym_u8_SQUOTE] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_L_DQUOTE] = ACTIONS(1926), + [anon_sym_u_DQUOTE] = ACTIONS(1926), + [anon_sym_U_DQUOTE] = ACTIONS(1926), + [anon_sym_u8_DQUOTE] = ACTIONS(1926), + [anon_sym_DQUOTE] = ACTIONS(1926), + [sym_true] = ACTIONS(1924), + [sym_false] = ACTIONS(1924), + [sym_null] = ACTIONS(1924), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1926), + [anon_sym_ATimport] = ACTIONS(1926), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1924), + [anon_sym_ATcompatibility_alias] = ACTIONS(1926), + [anon_sym_ATprotocol] = ACTIONS(1926), + [anon_sym_ATclass] = ACTIONS(1926), + [anon_sym_ATinterface] = ACTIONS(1926), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1924), + [sym_method_attribute_specifier] = ACTIONS(1924), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1924), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1924), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE] = ACTIONS(1924), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1924), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_API_AVAILABLE] = ACTIONS(1924), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_API_DEPRECATED] = ACTIONS(1924), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1924), + [anon_sym___deprecated_msg] = ACTIONS(1924), + [anon_sym___deprecated_enum_msg] = ACTIONS(1924), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1924), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1924), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1924), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1924), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1924), + [anon_sym_ATimplementation] = ACTIONS(1926), + [anon_sym_NS_ENUM] = ACTIONS(1924), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1924), + [anon_sym_NS_OPTIONS] = ACTIONS(1924), + [anon_sym_typeof] = ACTIONS(1924), + [anon_sym___typeof] = ACTIONS(1924), + [anon_sym___typeof__] = ACTIONS(1924), + [sym_self] = ACTIONS(1924), + [sym_super] = ACTIONS(1924), + [sym_nil] = ACTIONS(1924), + [sym_id] = ACTIONS(1924), + [sym_instancetype] = ACTIONS(1924), + [sym_Class] = ACTIONS(1924), + [sym_SEL] = ACTIONS(1924), + [sym_IMP] = ACTIONS(1924), + [sym_BOOL] = ACTIONS(1924), + [sym_auto] = ACTIONS(1924), + [anon_sym_ATautoreleasepool] = ACTIONS(1926), + [anon_sym_ATsynchronized] = ACTIONS(1926), + [anon_sym_ATtry] = ACTIONS(1926), + [anon_sym_ATthrow] = ACTIONS(1926), + [anon_sym_ATselector] = ACTIONS(1926), + [anon_sym_ATencode] = ACTIONS(1926), + [anon_sym_AT] = ACTIONS(1924), + [sym_YES] = ACTIONS(1924), + [sym_NO] = ACTIONS(1924), + [anon_sym___builtin_available] = ACTIONS(1924), + [anon_sym_ATavailable] = ACTIONS(1926), + [anon_sym_va_arg] = ACTIONS(1924), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1294] = { + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2046), + [aux_sym_preproc_def_token1] = ACTIONS(2046), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_if_token2] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_auto] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym_in] = ACTIONS(2044), + [anon_sym_out] = ACTIONS(2044), + [anon_sym_inout] = ACTIONS(2044), + [anon_sym_bycopy] = ACTIONS(2044), + [anon_sym_byref] = ACTIONS(2044), + [anon_sym_oneway] = ACTIONS(2044), + [anon_sym__Nullable] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym__Nullable_result] = ACTIONS(2044), + [anon_sym__Null_unspecified] = ACTIONS(2044), + [anon_sym___autoreleasing] = ACTIONS(2044), + [anon_sym___nullable] = ACTIONS(2044), + [anon_sym___nonnull] = ACTIONS(2044), + [anon_sym___strong] = ACTIONS(2044), + [anon_sym___weak] = ACTIONS(2044), + [anon_sym___bridge] = ACTIONS(2044), + [anon_sym___bridge_transfer] = ACTIONS(2044), + [anon_sym___bridge_retained] = ACTIONS(2044), + [anon_sym___unsafe_unretained] = ACTIONS(2044), + [anon_sym___block] = ACTIONS(2044), + [anon_sym___kindof] = ACTIONS(2044), + [anon_sym___unused] = ACTIONS(2044), + [anon_sym__Complex] = ACTIONS(2044), + [anon_sym___complex] = ACTIONS(2044), + [anon_sym_IBOutlet] = ACTIONS(2044), + [anon_sym_IBInspectable] = ACTIONS(2044), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2044), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [sym_null] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2046), + [anon_sym_ATimport] = ACTIONS(2046), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2044), + [anon_sym_ATcompatibility_alias] = ACTIONS(2046), + [anon_sym_ATprotocol] = ACTIONS(2046), + [anon_sym_ATclass] = ACTIONS(2046), + [anon_sym_ATinterface] = ACTIONS(2046), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2044), + [sym_method_attribute_specifier] = ACTIONS(2044), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2044), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE] = ACTIONS(2044), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_API_AVAILABLE] = ACTIONS(2044), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_API_DEPRECATED] = ACTIONS(2044), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2044), + [anon_sym___deprecated_msg] = ACTIONS(2044), + [anon_sym___deprecated_enum_msg] = ACTIONS(2044), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2044), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2044), + [anon_sym_ATimplementation] = ACTIONS(2046), + [anon_sym_NS_ENUM] = ACTIONS(2044), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2044), + [anon_sym_NS_OPTIONS] = ACTIONS(2044), + [anon_sym_typeof] = ACTIONS(2044), + [anon_sym___typeof] = ACTIONS(2044), + [anon_sym___typeof__] = ACTIONS(2044), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_nil] = ACTIONS(2044), + [sym_id] = ACTIONS(2044), + [sym_instancetype] = ACTIONS(2044), + [sym_Class] = ACTIONS(2044), + [sym_SEL] = ACTIONS(2044), + [sym_IMP] = ACTIONS(2044), + [sym_BOOL] = ACTIONS(2044), + [sym_auto] = ACTIONS(2044), + [anon_sym_ATautoreleasepool] = ACTIONS(2046), + [anon_sym_ATsynchronized] = ACTIONS(2046), + [anon_sym_ATtry] = ACTIONS(2046), + [anon_sym_ATthrow] = ACTIONS(2046), + [anon_sym_ATselector] = ACTIONS(2046), + [anon_sym_ATencode] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2044), + [sym_YES] = ACTIONS(2044), + [sym_NO] = ACTIONS(2044), + [anon_sym___builtin_available] = ACTIONS(2044), + [anon_sym_ATavailable] = ACTIONS(2046), + [anon_sym_va_arg] = ACTIONS(2044), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1295] = { + [sym_identifier] = ACTIONS(2044), + [aux_sym_preproc_include_token1] = ACTIONS(2046), + [aux_sym_preproc_def_token1] = ACTIONS(2046), + [aux_sym_preproc_if_token1] = ACTIONS(2044), + [aux_sym_preproc_if_token2] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2044), + [anon_sym_LPAREN2] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_TILDE] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_PLUS] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_CARET] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_typedef] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym___attribute] = ACTIONS(2044), + [anon_sym___attribute__] = ACTIONS(2044), + [anon_sym___declspec] = ACTIONS(2044), + [anon_sym___cdecl] = ACTIONS(2044), + [anon_sym___clrcall] = ACTIONS(2044), + [anon_sym___stdcall] = ACTIONS(2044), + [anon_sym___fastcall] = ACTIONS(2044), + [anon_sym___thiscall] = ACTIONS(2044), + [anon_sym___vectorcall] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_auto] = ACTIONS(2044), + [anon_sym_register] = ACTIONS(2044), + [anon_sym_inline] = ACTIONS(2044), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2044), + [anon_sym_const] = ACTIONS(2044), + [anon_sym_volatile] = ACTIONS(2044), + [anon_sym_restrict] = ACTIONS(2044), + [anon_sym__Atomic] = ACTIONS(2044), + [anon_sym_in] = ACTIONS(2044), + [anon_sym_out] = ACTIONS(2044), + [anon_sym_inout] = ACTIONS(2044), + [anon_sym_bycopy] = ACTIONS(2044), + [anon_sym_byref] = ACTIONS(2044), + [anon_sym_oneway] = ACTIONS(2044), + [anon_sym__Nullable] = ACTIONS(2044), + [anon_sym__Nonnull] = ACTIONS(2044), + [anon_sym__Nullable_result] = ACTIONS(2044), + [anon_sym__Null_unspecified] = ACTIONS(2044), + [anon_sym___autoreleasing] = ACTIONS(2044), + [anon_sym___nullable] = ACTIONS(2044), + [anon_sym___nonnull] = ACTIONS(2044), + [anon_sym___strong] = ACTIONS(2044), + [anon_sym___weak] = ACTIONS(2044), + [anon_sym___bridge] = ACTIONS(2044), + [anon_sym___bridge_transfer] = ACTIONS(2044), + [anon_sym___bridge_retained] = ACTIONS(2044), + [anon_sym___unsafe_unretained] = ACTIONS(2044), + [anon_sym___block] = ACTIONS(2044), + [anon_sym___kindof] = ACTIONS(2044), + [anon_sym___unused] = ACTIONS(2044), + [anon_sym__Complex] = ACTIONS(2044), + [anon_sym___complex] = ACTIONS(2044), + [anon_sym_IBOutlet] = ACTIONS(2044), + [anon_sym_IBInspectable] = ACTIONS(2044), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2044), + [anon_sym_signed] = ACTIONS(2044), + [anon_sym_unsigned] = ACTIONS(2044), + [anon_sym_long] = ACTIONS(2044), + [anon_sym_short] = ACTIONS(2044), + [sym_primitive_type] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_switch] = ACTIONS(2044), + [anon_sym_case] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_do] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_goto] = ACTIONS(2044), + [anon_sym_DASH_DASH] = ACTIONS(2046), + [anon_sym_PLUS_PLUS] = ACTIONS(2046), + [anon_sym_sizeof] = ACTIONS(2044), + [sym_number_literal] = ACTIONS(2046), + [anon_sym_L_SQUOTE] = ACTIONS(2046), + [anon_sym_u_SQUOTE] = ACTIONS(2046), + [anon_sym_U_SQUOTE] = ACTIONS(2046), + [anon_sym_u8_SQUOTE] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_L_DQUOTE] = ACTIONS(2046), + [anon_sym_u_DQUOTE] = ACTIONS(2046), + [anon_sym_U_DQUOTE] = ACTIONS(2046), + [anon_sym_u8_DQUOTE] = ACTIONS(2046), + [anon_sym_DQUOTE] = ACTIONS(2046), + [sym_true] = ACTIONS(2044), + [sym_false] = ACTIONS(2044), + [sym_null] = ACTIONS(2044), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2046), + [anon_sym_ATimport] = ACTIONS(2046), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2044), + [anon_sym_ATcompatibility_alias] = ACTIONS(2046), + [anon_sym_ATprotocol] = ACTIONS(2046), + [anon_sym_ATclass] = ACTIONS(2046), + [anon_sym_ATinterface] = ACTIONS(2046), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2044), + [sym_method_attribute_specifier] = ACTIONS(2044), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2044), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2044), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE] = ACTIONS(2044), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2044), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_API_AVAILABLE] = ACTIONS(2044), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_API_DEPRECATED] = ACTIONS(2044), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2044), + [anon_sym___deprecated_msg] = ACTIONS(2044), + [anon_sym___deprecated_enum_msg] = ACTIONS(2044), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2044), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2044), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2044), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2044), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2044), + [anon_sym_ATimplementation] = ACTIONS(2046), + [anon_sym_NS_ENUM] = ACTIONS(2044), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2044), + [anon_sym_NS_OPTIONS] = ACTIONS(2044), + [anon_sym_typeof] = ACTIONS(2044), + [anon_sym___typeof] = ACTIONS(2044), + [anon_sym___typeof__] = ACTIONS(2044), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_nil] = ACTIONS(2044), + [sym_id] = ACTIONS(2044), + [sym_instancetype] = ACTIONS(2044), + [sym_Class] = ACTIONS(2044), + [sym_SEL] = ACTIONS(2044), + [sym_IMP] = ACTIONS(2044), + [sym_BOOL] = ACTIONS(2044), + [sym_auto] = ACTIONS(2044), + [anon_sym_ATautoreleasepool] = ACTIONS(2046), + [anon_sym_ATsynchronized] = ACTIONS(2046), + [anon_sym_ATtry] = ACTIONS(2046), + [anon_sym_ATthrow] = ACTIONS(2046), + [anon_sym_ATselector] = ACTIONS(2046), + [anon_sym_ATencode] = ACTIONS(2046), + [anon_sym_AT] = ACTIONS(2044), + [sym_YES] = ACTIONS(2044), + [sym_NO] = ACTIONS(2044), + [anon_sym___builtin_available] = ACTIONS(2044), + [anon_sym_ATavailable] = ACTIONS(2046), + [anon_sym_va_arg] = ACTIONS(2044), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1296] = { + [sym_identifier] = ACTIONS(2040), + [aux_sym_preproc_include_token1] = ACTIONS(2042), + [aux_sym_preproc_def_token1] = ACTIONS(2042), + [aux_sym_preproc_if_token1] = ACTIONS(2040), + [aux_sym_preproc_if_token2] = ACTIONS(2040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2040), + [anon_sym_LPAREN2] = ACTIONS(2042), + [anon_sym_BANG] = ACTIONS(2042), + [anon_sym_TILDE] = ACTIONS(2042), + [anon_sym_DASH] = ACTIONS(2040), + [anon_sym_PLUS] = ACTIONS(2040), + [anon_sym_STAR] = ACTIONS(2042), + [anon_sym_CARET] = ACTIONS(2042), + [anon_sym_AMP] = ACTIONS(2042), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym_typedef] = ACTIONS(2040), + [anon_sym_extern] = ACTIONS(2040), + [anon_sym___attribute] = ACTIONS(2040), + [anon_sym___attribute__] = ACTIONS(2040), + [anon_sym___declspec] = ACTIONS(2040), + [anon_sym___cdecl] = ACTIONS(2040), + [anon_sym___clrcall] = ACTIONS(2040), + [anon_sym___stdcall] = ACTIONS(2040), + [anon_sym___fastcall] = ACTIONS(2040), + [anon_sym___thiscall] = ACTIONS(2040), + [anon_sym___vectorcall] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2042), + [anon_sym_LBRACK] = ACTIONS(2042), + [anon_sym_static] = ACTIONS(2040), + [anon_sym_auto] = ACTIONS(2040), + [anon_sym_register] = ACTIONS(2040), + [anon_sym_inline] = ACTIONS(2040), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2040), + [anon_sym_const] = ACTIONS(2040), + [anon_sym_volatile] = ACTIONS(2040), + [anon_sym_restrict] = ACTIONS(2040), + [anon_sym__Atomic] = ACTIONS(2040), + [anon_sym_in] = ACTIONS(2040), + [anon_sym_out] = ACTIONS(2040), + [anon_sym_inout] = ACTIONS(2040), + [anon_sym_bycopy] = ACTIONS(2040), + [anon_sym_byref] = ACTIONS(2040), + [anon_sym_oneway] = ACTIONS(2040), + [anon_sym__Nullable] = ACTIONS(2040), + [anon_sym__Nonnull] = ACTIONS(2040), + [anon_sym__Nullable_result] = ACTIONS(2040), + [anon_sym__Null_unspecified] = ACTIONS(2040), + [anon_sym___autoreleasing] = ACTIONS(2040), + [anon_sym___nullable] = ACTIONS(2040), + [anon_sym___nonnull] = ACTIONS(2040), + [anon_sym___strong] = ACTIONS(2040), + [anon_sym___weak] = ACTIONS(2040), + [anon_sym___bridge] = ACTIONS(2040), + [anon_sym___bridge_transfer] = ACTIONS(2040), + [anon_sym___bridge_retained] = ACTIONS(2040), + [anon_sym___unsafe_unretained] = ACTIONS(2040), + [anon_sym___block] = ACTIONS(2040), + [anon_sym___kindof] = ACTIONS(2040), + [anon_sym___unused] = ACTIONS(2040), + [anon_sym__Complex] = ACTIONS(2040), + [anon_sym___complex] = ACTIONS(2040), + [anon_sym_IBOutlet] = ACTIONS(2040), + [anon_sym_IBInspectable] = ACTIONS(2040), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2040), + [anon_sym_signed] = ACTIONS(2040), + [anon_sym_unsigned] = ACTIONS(2040), + [anon_sym_long] = ACTIONS(2040), + [anon_sym_short] = ACTIONS(2040), + [sym_primitive_type] = ACTIONS(2040), + [anon_sym_enum] = ACTIONS(2040), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2040), + [anon_sym_if] = ACTIONS(2040), + [anon_sym_switch] = ACTIONS(2040), + [anon_sym_case] = ACTIONS(2040), + [anon_sym_default] = ACTIONS(2040), + [anon_sym_while] = ACTIONS(2040), + [anon_sym_do] = ACTIONS(2040), + [anon_sym_for] = ACTIONS(2040), + [anon_sym_return] = ACTIONS(2040), + [anon_sym_break] = ACTIONS(2040), + [anon_sym_continue] = ACTIONS(2040), + [anon_sym_goto] = ACTIONS(2040), + [anon_sym_DASH_DASH] = ACTIONS(2042), + [anon_sym_PLUS_PLUS] = ACTIONS(2042), + [anon_sym_sizeof] = ACTIONS(2040), + [sym_number_literal] = ACTIONS(2042), + [anon_sym_L_SQUOTE] = ACTIONS(2042), + [anon_sym_u_SQUOTE] = ACTIONS(2042), + [anon_sym_U_SQUOTE] = ACTIONS(2042), + [anon_sym_u8_SQUOTE] = ACTIONS(2042), + [anon_sym_SQUOTE] = ACTIONS(2042), + [anon_sym_L_DQUOTE] = ACTIONS(2042), + [anon_sym_u_DQUOTE] = ACTIONS(2042), + [anon_sym_U_DQUOTE] = ACTIONS(2042), + [anon_sym_u8_DQUOTE] = ACTIONS(2042), + [anon_sym_DQUOTE] = ACTIONS(2042), + [sym_true] = ACTIONS(2040), + [sym_false] = ACTIONS(2040), + [sym_null] = ACTIONS(2040), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2042), + [anon_sym_ATimport] = ACTIONS(2042), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2040), + [anon_sym_ATcompatibility_alias] = ACTIONS(2042), + [anon_sym_ATprotocol] = ACTIONS(2042), + [anon_sym_ATclass] = ACTIONS(2042), + [anon_sym_ATinterface] = ACTIONS(2042), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2040), + [sym_method_attribute_specifier] = ACTIONS(2040), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2040), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2040), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2040), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2040), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2040), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2040), + [anon_sym_NS_AVAILABLE] = ACTIONS(2040), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2040), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2040), + [anon_sym_API_AVAILABLE] = ACTIONS(2040), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2040), + [anon_sym_API_DEPRECATED] = ACTIONS(2040), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2040), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2040), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2040), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2040), + [anon_sym___deprecated_msg] = ACTIONS(2040), + [anon_sym___deprecated_enum_msg] = ACTIONS(2040), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2040), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2040), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2040), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2040), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2040), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2040), + [anon_sym_ATimplementation] = ACTIONS(2042), + [anon_sym_NS_ENUM] = ACTIONS(2040), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2040), + [anon_sym_NS_OPTIONS] = ACTIONS(2040), + [anon_sym_typeof] = ACTIONS(2040), + [anon_sym___typeof] = ACTIONS(2040), + [anon_sym___typeof__] = ACTIONS(2040), + [sym_self] = ACTIONS(2040), + [sym_super] = ACTIONS(2040), + [sym_nil] = ACTIONS(2040), + [sym_id] = ACTIONS(2040), + [sym_instancetype] = ACTIONS(2040), + [sym_Class] = ACTIONS(2040), + [sym_SEL] = ACTIONS(2040), + [sym_IMP] = ACTIONS(2040), + [sym_BOOL] = ACTIONS(2040), + [sym_auto] = ACTIONS(2040), + [anon_sym_ATautoreleasepool] = ACTIONS(2042), + [anon_sym_ATsynchronized] = ACTIONS(2042), + [anon_sym_ATtry] = ACTIONS(2042), + [anon_sym_ATthrow] = ACTIONS(2042), + [anon_sym_ATselector] = ACTIONS(2042), + [anon_sym_ATencode] = ACTIONS(2042), + [anon_sym_AT] = ACTIONS(2040), + [sym_YES] = ACTIONS(2040), + [sym_NO] = ACTIONS(2040), + [anon_sym___builtin_available] = ACTIONS(2040), + [anon_sym_ATavailable] = ACTIONS(2042), + [anon_sym_va_arg] = ACTIONS(2040), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1297] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1298] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1299] = { + [sym_identifier] = ACTIONS(1928), + [aux_sym_preproc_include_token1] = ACTIONS(1930), + [aux_sym_preproc_def_token1] = ACTIONS(1930), + [aux_sym_preproc_if_token1] = ACTIONS(1928), + [aux_sym_preproc_if_token2] = ACTIONS(1928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1928), + [anon_sym_LPAREN2] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1930), + [anon_sym_TILDE] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_PLUS] = ACTIONS(1928), + [anon_sym_STAR] = ACTIONS(1930), + [anon_sym_CARET] = ACTIONS(1930), + [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_typedef] = ACTIONS(1928), + [anon_sym_extern] = ACTIONS(1928), + [anon_sym___attribute] = ACTIONS(1928), + [anon_sym___attribute__] = ACTIONS(1928), + [anon_sym___declspec] = ACTIONS(1928), + [anon_sym___cdecl] = ACTIONS(1928), + [anon_sym___clrcall] = ACTIONS(1928), + [anon_sym___stdcall] = ACTIONS(1928), + [anon_sym___fastcall] = ACTIONS(1928), + [anon_sym___thiscall] = ACTIONS(1928), + [anon_sym___vectorcall] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_LBRACK] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1928), + [anon_sym_auto] = ACTIONS(1928), + [anon_sym_register] = ACTIONS(1928), + [anon_sym_inline] = ACTIONS(1928), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1928), + [anon_sym_const] = ACTIONS(1928), + [anon_sym_volatile] = ACTIONS(1928), + [anon_sym_restrict] = ACTIONS(1928), + [anon_sym__Atomic] = ACTIONS(1928), + [anon_sym_in] = ACTIONS(1928), + [anon_sym_out] = ACTIONS(1928), + [anon_sym_inout] = ACTIONS(1928), + [anon_sym_bycopy] = ACTIONS(1928), + [anon_sym_byref] = ACTIONS(1928), + [anon_sym_oneway] = ACTIONS(1928), + [anon_sym__Nullable] = ACTIONS(1928), + [anon_sym__Nonnull] = ACTIONS(1928), + [anon_sym__Nullable_result] = ACTIONS(1928), + [anon_sym__Null_unspecified] = ACTIONS(1928), + [anon_sym___autoreleasing] = ACTIONS(1928), + [anon_sym___nullable] = ACTIONS(1928), + [anon_sym___nonnull] = ACTIONS(1928), + [anon_sym___strong] = ACTIONS(1928), + [anon_sym___weak] = ACTIONS(1928), + [anon_sym___bridge] = ACTIONS(1928), + [anon_sym___bridge_transfer] = ACTIONS(1928), + [anon_sym___bridge_retained] = ACTIONS(1928), + [anon_sym___unsafe_unretained] = ACTIONS(1928), + [anon_sym___block] = ACTIONS(1928), + [anon_sym___kindof] = ACTIONS(1928), + [anon_sym___unused] = ACTIONS(1928), + [anon_sym__Complex] = ACTIONS(1928), + [anon_sym___complex] = ACTIONS(1928), + [anon_sym_IBOutlet] = ACTIONS(1928), + [anon_sym_IBInspectable] = ACTIONS(1928), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1928), + [anon_sym_signed] = ACTIONS(1928), + [anon_sym_unsigned] = ACTIONS(1928), + [anon_sym_long] = ACTIONS(1928), + [anon_sym_short] = ACTIONS(1928), + [sym_primitive_type] = ACTIONS(1928), + [anon_sym_enum] = ACTIONS(1928), + [anon_sym_struct] = ACTIONS(1928), + [anon_sym_union] = ACTIONS(1928), + [anon_sym_if] = ACTIONS(1928), + [anon_sym_switch] = ACTIONS(1928), + [anon_sym_case] = ACTIONS(1928), + [anon_sym_default] = ACTIONS(1928), + [anon_sym_while] = ACTIONS(1928), + [anon_sym_do] = ACTIONS(1928), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(1928), + [anon_sym_break] = ACTIONS(1928), + [anon_sym_continue] = ACTIONS(1928), + [anon_sym_goto] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1930), + [anon_sym_sizeof] = ACTIONS(1928), + [sym_number_literal] = ACTIONS(1930), + [anon_sym_L_SQUOTE] = ACTIONS(1930), + [anon_sym_u_SQUOTE] = ACTIONS(1930), + [anon_sym_U_SQUOTE] = ACTIONS(1930), + [anon_sym_u8_SQUOTE] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1930), + [anon_sym_L_DQUOTE] = ACTIONS(1930), + [anon_sym_u_DQUOTE] = ACTIONS(1930), + [anon_sym_U_DQUOTE] = ACTIONS(1930), + [anon_sym_u8_DQUOTE] = ACTIONS(1930), + [anon_sym_DQUOTE] = ACTIONS(1930), + [sym_true] = ACTIONS(1928), + [sym_false] = ACTIONS(1928), + [sym_null] = ACTIONS(1928), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1930), + [anon_sym_ATimport] = ACTIONS(1930), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1928), + [anon_sym_ATcompatibility_alias] = ACTIONS(1930), + [anon_sym_ATprotocol] = ACTIONS(1930), + [anon_sym_ATclass] = ACTIONS(1930), + [anon_sym_ATinterface] = ACTIONS(1930), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1928), + [sym_method_attribute_specifier] = ACTIONS(1928), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1928), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1928), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1928), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1928), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1928), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1928), + [anon_sym_NS_AVAILABLE] = ACTIONS(1928), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1928), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1928), + [anon_sym_API_AVAILABLE] = ACTIONS(1928), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1928), + [anon_sym_API_DEPRECATED] = ACTIONS(1928), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1928), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1928), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1928), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1928), + [anon_sym___deprecated_msg] = ACTIONS(1928), + [anon_sym___deprecated_enum_msg] = ACTIONS(1928), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1928), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1928), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1928), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1928), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1928), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1928), + [anon_sym_ATimplementation] = ACTIONS(1930), + [anon_sym_NS_ENUM] = ACTIONS(1928), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1928), + [anon_sym_NS_OPTIONS] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(1928), + [anon_sym___typeof] = ACTIONS(1928), + [anon_sym___typeof__] = ACTIONS(1928), + [sym_self] = ACTIONS(1928), + [sym_super] = ACTIONS(1928), + [sym_nil] = ACTIONS(1928), + [sym_id] = ACTIONS(1928), + [sym_instancetype] = ACTIONS(1928), + [sym_Class] = ACTIONS(1928), + [sym_SEL] = ACTIONS(1928), + [sym_IMP] = ACTIONS(1928), + [sym_BOOL] = ACTIONS(1928), + [sym_auto] = ACTIONS(1928), + [anon_sym_ATautoreleasepool] = ACTIONS(1930), + [anon_sym_ATsynchronized] = ACTIONS(1930), + [anon_sym_ATtry] = ACTIONS(1930), + [anon_sym_ATthrow] = ACTIONS(1930), + [anon_sym_ATselector] = ACTIONS(1930), + [anon_sym_ATencode] = ACTIONS(1930), + [anon_sym_AT] = ACTIONS(1928), + [sym_YES] = ACTIONS(1928), + [sym_NO] = ACTIONS(1928), + [anon_sym___builtin_available] = ACTIONS(1928), + [anon_sym_ATavailable] = ACTIONS(1930), + [anon_sym_va_arg] = ACTIONS(1928), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1300] = { + [sym_identifier] = ACTIONS(1932), + [aux_sym_preproc_include_token1] = ACTIONS(1934), + [aux_sym_preproc_def_token1] = ACTIONS(1934), + [aux_sym_preproc_if_token1] = ACTIONS(1932), + [aux_sym_preproc_if_token2] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_CARET] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym___attribute] = ACTIONS(1932), + [anon_sym___attribute__] = ACTIONS(1932), + [anon_sym___declspec] = ACTIONS(1932), + [anon_sym___cdecl] = ACTIONS(1932), + [anon_sym___clrcall] = ACTIONS(1932), + [anon_sym___stdcall] = ACTIONS(1932), + [anon_sym___fastcall] = ACTIONS(1932), + [anon_sym___thiscall] = ACTIONS(1932), + [anon_sym___vectorcall] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_auto] = ACTIONS(1932), + [anon_sym_register] = ACTIONS(1932), + [anon_sym_inline] = ACTIONS(1932), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym_in] = ACTIONS(1932), + [anon_sym_out] = ACTIONS(1932), + [anon_sym_inout] = ACTIONS(1932), + [anon_sym_bycopy] = ACTIONS(1932), + [anon_sym_byref] = ACTIONS(1932), + [anon_sym_oneway] = ACTIONS(1932), + [anon_sym__Nullable] = ACTIONS(1932), + [anon_sym__Nonnull] = ACTIONS(1932), + [anon_sym__Nullable_result] = ACTIONS(1932), + [anon_sym__Null_unspecified] = ACTIONS(1932), + [anon_sym___autoreleasing] = ACTIONS(1932), + [anon_sym___nullable] = ACTIONS(1932), + [anon_sym___nonnull] = ACTIONS(1932), + [anon_sym___strong] = ACTIONS(1932), + [anon_sym___weak] = ACTIONS(1932), + [anon_sym___bridge] = ACTIONS(1932), + [anon_sym___bridge_transfer] = ACTIONS(1932), + [anon_sym___bridge_retained] = ACTIONS(1932), + [anon_sym___unsafe_unretained] = ACTIONS(1932), + [anon_sym___block] = ACTIONS(1932), + [anon_sym___kindof] = ACTIONS(1932), + [anon_sym___unused] = ACTIONS(1932), + [anon_sym__Complex] = ACTIONS(1932), + [anon_sym___complex] = ACTIONS(1932), + [anon_sym_IBOutlet] = ACTIONS(1932), + [anon_sym_IBInspectable] = ACTIONS(1932), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1932), + [anon_sym_signed] = ACTIONS(1932), + [anon_sym_unsigned] = ACTIONS(1932), + [anon_sym_long] = ACTIONS(1932), + [anon_sym_short] = ACTIONS(1932), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_goto] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [sym_null] = ACTIONS(1932), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1934), + [anon_sym_ATimport] = ACTIONS(1934), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1932), + [anon_sym_ATcompatibility_alias] = ACTIONS(1934), + [anon_sym_ATprotocol] = ACTIONS(1934), + [anon_sym_ATclass] = ACTIONS(1934), + [anon_sym_ATinterface] = ACTIONS(1934), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1932), + [sym_method_attribute_specifier] = ACTIONS(1932), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1932), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE] = ACTIONS(1932), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_API_AVAILABLE] = ACTIONS(1932), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_API_DEPRECATED] = ACTIONS(1932), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1932), + [anon_sym___deprecated_msg] = ACTIONS(1932), + [anon_sym___deprecated_enum_msg] = ACTIONS(1932), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1932), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1932), + [anon_sym_ATimplementation] = ACTIONS(1934), + [anon_sym_NS_ENUM] = ACTIONS(1932), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1932), + [anon_sym_NS_OPTIONS] = ACTIONS(1932), + [anon_sym_typeof] = ACTIONS(1932), + [anon_sym___typeof] = ACTIONS(1932), + [anon_sym___typeof__] = ACTIONS(1932), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_nil] = ACTIONS(1932), + [sym_id] = ACTIONS(1932), + [sym_instancetype] = ACTIONS(1932), + [sym_Class] = ACTIONS(1932), + [sym_SEL] = ACTIONS(1932), + [sym_IMP] = ACTIONS(1932), + [sym_BOOL] = ACTIONS(1932), + [sym_auto] = ACTIONS(1932), + [anon_sym_ATautoreleasepool] = ACTIONS(1934), + [anon_sym_ATsynchronized] = ACTIONS(1934), + [anon_sym_ATtry] = ACTIONS(1934), + [anon_sym_ATthrow] = ACTIONS(1934), + [anon_sym_ATselector] = ACTIONS(1934), + [anon_sym_ATencode] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1932), + [sym_YES] = ACTIONS(1932), + [sym_NO] = ACTIONS(1932), + [anon_sym___builtin_available] = ACTIONS(1932), + [anon_sym_ATavailable] = ACTIONS(1934), + [anon_sym_va_arg] = ACTIONS(1932), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1301] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1302] = { + [sym_identifier] = ACTIONS(1932), + [aux_sym_preproc_include_token1] = ACTIONS(1934), + [aux_sym_preproc_def_token1] = ACTIONS(1934), + [aux_sym_preproc_if_token1] = ACTIONS(1932), + [aux_sym_preproc_if_token2] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_CARET] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym___attribute] = ACTIONS(1932), + [anon_sym___attribute__] = ACTIONS(1932), + [anon_sym___declspec] = ACTIONS(1932), + [anon_sym___cdecl] = ACTIONS(1932), + [anon_sym___clrcall] = ACTIONS(1932), + [anon_sym___stdcall] = ACTIONS(1932), + [anon_sym___fastcall] = ACTIONS(1932), + [anon_sym___thiscall] = ACTIONS(1932), + [anon_sym___vectorcall] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_auto] = ACTIONS(1932), + [anon_sym_register] = ACTIONS(1932), + [anon_sym_inline] = ACTIONS(1932), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym_in] = ACTIONS(1932), + [anon_sym_out] = ACTIONS(1932), + [anon_sym_inout] = ACTIONS(1932), + [anon_sym_bycopy] = ACTIONS(1932), + [anon_sym_byref] = ACTIONS(1932), + [anon_sym_oneway] = ACTIONS(1932), + [anon_sym__Nullable] = ACTIONS(1932), + [anon_sym__Nonnull] = ACTIONS(1932), + [anon_sym__Nullable_result] = ACTIONS(1932), + [anon_sym__Null_unspecified] = ACTIONS(1932), + [anon_sym___autoreleasing] = ACTIONS(1932), + [anon_sym___nullable] = ACTIONS(1932), + [anon_sym___nonnull] = ACTIONS(1932), + [anon_sym___strong] = ACTIONS(1932), + [anon_sym___weak] = ACTIONS(1932), + [anon_sym___bridge] = ACTIONS(1932), + [anon_sym___bridge_transfer] = ACTIONS(1932), + [anon_sym___bridge_retained] = ACTIONS(1932), + [anon_sym___unsafe_unretained] = ACTIONS(1932), + [anon_sym___block] = ACTIONS(1932), + [anon_sym___kindof] = ACTIONS(1932), + [anon_sym___unused] = ACTIONS(1932), + [anon_sym__Complex] = ACTIONS(1932), + [anon_sym___complex] = ACTIONS(1932), + [anon_sym_IBOutlet] = ACTIONS(1932), + [anon_sym_IBInspectable] = ACTIONS(1932), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1932), + [anon_sym_signed] = ACTIONS(1932), + [anon_sym_unsigned] = ACTIONS(1932), + [anon_sym_long] = ACTIONS(1932), + [anon_sym_short] = ACTIONS(1932), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_goto] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [sym_null] = ACTIONS(1932), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1934), + [anon_sym_ATimport] = ACTIONS(1934), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1932), + [anon_sym_ATcompatibility_alias] = ACTIONS(1934), + [anon_sym_ATprotocol] = ACTIONS(1934), + [anon_sym_ATclass] = ACTIONS(1934), + [anon_sym_ATinterface] = ACTIONS(1934), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1932), + [sym_method_attribute_specifier] = ACTIONS(1932), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1932), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE] = ACTIONS(1932), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_API_AVAILABLE] = ACTIONS(1932), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_API_DEPRECATED] = ACTIONS(1932), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1932), + [anon_sym___deprecated_msg] = ACTIONS(1932), + [anon_sym___deprecated_enum_msg] = ACTIONS(1932), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1932), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1932), + [anon_sym_ATimplementation] = ACTIONS(1934), + [anon_sym_NS_ENUM] = ACTIONS(1932), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1932), + [anon_sym_NS_OPTIONS] = ACTIONS(1932), + [anon_sym_typeof] = ACTIONS(1932), + [anon_sym___typeof] = ACTIONS(1932), + [anon_sym___typeof__] = ACTIONS(1932), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_nil] = ACTIONS(1932), + [sym_id] = ACTIONS(1932), + [sym_instancetype] = ACTIONS(1932), + [sym_Class] = ACTIONS(1932), + [sym_SEL] = ACTIONS(1932), + [sym_IMP] = ACTIONS(1932), + [sym_BOOL] = ACTIONS(1932), + [sym_auto] = ACTIONS(1932), + [anon_sym_ATautoreleasepool] = ACTIONS(1934), + [anon_sym_ATsynchronized] = ACTIONS(1934), + [anon_sym_ATtry] = ACTIONS(1934), + [anon_sym_ATthrow] = ACTIONS(1934), + [anon_sym_ATselector] = ACTIONS(1934), + [anon_sym_ATencode] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1932), + [sym_YES] = ACTIONS(1932), + [sym_NO] = ACTIONS(1932), + [anon_sym___builtin_available] = ACTIONS(1932), + [anon_sym_ATavailable] = ACTIONS(1934), + [anon_sym_va_arg] = ACTIONS(1932), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1303] = { + [sym_identifier] = ACTIONS(1932), + [aux_sym_preproc_include_token1] = ACTIONS(1934), + [aux_sym_preproc_def_token1] = ACTIONS(1934), + [aux_sym_preproc_if_token1] = ACTIONS(1932), + [aux_sym_preproc_if_token2] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_CARET] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym___attribute] = ACTIONS(1932), + [anon_sym___attribute__] = ACTIONS(1932), + [anon_sym___declspec] = ACTIONS(1932), + [anon_sym___cdecl] = ACTIONS(1932), + [anon_sym___clrcall] = ACTIONS(1932), + [anon_sym___stdcall] = ACTIONS(1932), + [anon_sym___fastcall] = ACTIONS(1932), + [anon_sym___thiscall] = ACTIONS(1932), + [anon_sym___vectorcall] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_auto] = ACTIONS(1932), + [anon_sym_register] = ACTIONS(1932), + [anon_sym_inline] = ACTIONS(1932), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym_in] = ACTIONS(1932), + [anon_sym_out] = ACTIONS(1932), + [anon_sym_inout] = ACTIONS(1932), + [anon_sym_bycopy] = ACTIONS(1932), + [anon_sym_byref] = ACTIONS(1932), + [anon_sym_oneway] = ACTIONS(1932), + [anon_sym__Nullable] = ACTIONS(1932), + [anon_sym__Nonnull] = ACTIONS(1932), + [anon_sym__Nullable_result] = ACTIONS(1932), + [anon_sym__Null_unspecified] = ACTIONS(1932), + [anon_sym___autoreleasing] = ACTIONS(1932), + [anon_sym___nullable] = ACTIONS(1932), + [anon_sym___nonnull] = ACTIONS(1932), + [anon_sym___strong] = ACTIONS(1932), + [anon_sym___weak] = ACTIONS(1932), + [anon_sym___bridge] = ACTIONS(1932), + [anon_sym___bridge_transfer] = ACTIONS(1932), + [anon_sym___bridge_retained] = ACTIONS(1932), + [anon_sym___unsafe_unretained] = ACTIONS(1932), + [anon_sym___block] = ACTIONS(1932), + [anon_sym___kindof] = ACTIONS(1932), + [anon_sym___unused] = ACTIONS(1932), + [anon_sym__Complex] = ACTIONS(1932), + [anon_sym___complex] = ACTIONS(1932), + [anon_sym_IBOutlet] = ACTIONS(1932), + [anon_sym_IBInspectable] = ACTIONS(1932), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1932), + [anon_sym_signed] = ACTIONS(1932), + [anon_sym_unsigned] = ACTIONS(1932), + [anon_sym_long] = ACTIONS(1932), + [anon_sym_short] = ACTIONS(1932), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_goto] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [sym_null] = ACTIONS(1932), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1934), + [anon_sym_ATimport] = ACTIONS(1934), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1932), + [anon_sym_ATcompatibility_alias] = ACTIONS(1934), + [anon_sym_ATprotocol] = ACTIONS(1934), + [anon_sym_ATclass] = ACTIONS(1934), + [anon_sym_ATinterface] = ACTIONS(1934), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1932), + [sym_method_attribute_specifier] = ACTIONS(1932), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1932), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE] = ACTIONS(1932), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_API_AVAILABLE] = ACTIONS(1932), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_API_DEPRECATED] = ACTIONS(1932), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1932), + [anon_sym___deprecated_msg] = ACTIONS(1932), + [anon_sym___deprecated_enum_msg] = ACTIONS(1932), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1932), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1932), + [anon_sym_ATimplementation] = ACTIONS(1934), + [anon_sym_NS_ENUM] = ACTIONS(1932), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1932), + [anon_sym_NS_OPTIONS] = ACTIONS(1932), + [anon_sym_typeof] = ACTIONS(1932), + [anon_sym___typeof] = ACTIONS(1932), + [anon_sym___typeof__] = ACTIONS(1932), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_nil] = ACTIONS(1932), + [sym_id] = ACTIONS(1932), + [sym_instancetype] = ACTIONS(1932), + [sym_Class] = ACTIONS(1932), + [sym_SEL] = ACTIONS(1932), + [sym_IMP] = ACTIONS(1932), + [sym_BOOL] = ACTIONS(1932), + [sym_auto] = ACTIONS(1932), + [anon_sym_ATautoreleasepool] = ACTIONS(1934), + [anon_sym_ATsynchronized] = ACTIONS(1934), + [anon_sym_ATtry] = ACTIONS(1934), + [anon_sym_ATthrow] = ACTIONS(1934), + [anon_sym_ATselector] = ACTIONS(1934), + [anon_sym_ATencode] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1932), + [sym_YES] = ACTIONS(1932), + [sym_NO] = ACTIONS(1932), + [anon_sym___builtin_available] = ACTIONS(1932), + [anon_sym_ATavailable] = ACTIONS(1934), + [anon_sym_va_arg] = ACTIONS(1932), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1304] = { + [sym_identifier] = ACTIONS(1932), + [aux_sym_preproc_include_token1] = ACTIONS(1934), + [aux_sym_preproc_def_token1] = ACTIONS(1934), + [aux_sym_preproc_if_token1] = ACTIONS(1932), + [aux_sym_preproc_if_token2] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_CARET] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym___attribute] = ACTIONS(1932), + [anon_sym___attribute__] = ACTIONS(1932), + [anon_sym___declspec] = ACTIONS(1932), + [anon_sym___cdecl] = ACTIONS(1932), + [anon_sym___clrcall] = ACTIONS(1932), + [anon_sym___stdcall] = ACTIONS(1932), + [anon_sym___fastcall] = ACTIONS(1932), + [anon_sym___thiscall] = ACTIONS(1932), + [anon_sym___vectorcall] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_auto] = ACTIONS(1932), + [anon_sym_register] = ACTIONS(1932), + [anon_sym_inline] = ACTIONS(1932), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym_in] = ACTIONS(1932), + [anon_sym_out] = ACTIONS(1932), + [anon_sym_inout] = ACTIONS(1932), + [anon_sym_bycopy] = ACTIONS(1932), + [anon_sym_byref] = ACTIONS(1932), + [anon_sym_oneway] = ACTIONS(1932), + [anon_sym__Nullable] = ACTIONS(1932), + [anon_sym__Nonnull] = ACTIONS(1932), + [anon_sym__Nullable_result] = ACTIONS(1932), + [anon_sym__Null_unspecified] = ACTIONS(1932), + [anon_sym___autoreleasing] = ACTIONS(1932), + [anon_sym___nullable] = ACTIONS(1932), + [anon_sym___nonnull] = ACTIONS(1932), + [anon_sym___strong] = ACTIONS(1932), + [anon_sym___weak] = ACTIONS(1932), + [anon_sym___bridge] = ACTIONS(1932), + [anon_sym___bridge_transfer] = ACTIONS(1932), + [anon_sym___bridge_retained] = ACTIONS(1932), + [anon_sym___unsafe_unretained] = ACTIONS(1932), + [anon_sym___block] = ACTIONS(1932), + [anon_sym___kindof] = ACTIONS(1932), + [anon_sym___unused] = ACTIONS(1932), + [anon_sym__Complex] = ACTIONS(1932), + [anon_sym___complex] = ACTIONS(1932), + [anon_sym_IBOutlet] = ACTIONS(1932), + [anon_sym_IBInspectable] = ACTIONS(1932), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1932), + [anon_sym_signed] = ACTIONS(1932), + [anon_sym_unsigned] = ACTIONS(1932), + [anon_sym_long] = ACTIONS(1932), + [anon_sym_short] = ACTIONS(1932), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_goto] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [sym_null] = ACTIONS(1932), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1934), + [anon_sym_ATimport] = ACTIONS(1934), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1932), + [anon_sym_ATcompatibility_alias] = ACTIONS(1934), + [anon_sym_ATprotocol] = ACTIONS(1934), + [anon_sym_ATclass] = ACTIONS(1934), + [anon_sym_ATinterface] = ACTIONS(1934), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1932), + [sym_method_attribute_specifier] = ACTIONS(1932), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1932), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE] = ACTIONS(1932), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_API_AVAILABLE] = ACTIONS(1932), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_API_DEPRECATED] = ACTIONS(1932), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1932), + [anon_sym___deprecated_msg] = ACTIONS(1932), + [anon_sym___deprecated_enum_msg] = ACTIONS(1932), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1932), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1932), + [anon_sym_ATimplementation] = ACTIONS(1934), + [anon_sym_NS_ENUM] = ACTIONS(1932), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1932), + [anon_sym_NS_OPTIONS] = ACTIONS(1932), + [anon_sym_typeof] = ACTIONS(1932), + [anon_sym___typeof] = ACTIONS(1932), + [anon_sym___typeof__] = ACTIONS(1932), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_nil] = ACTIONS(1932), + [sym_id] = ACTIONS(1932), + [sym_instancetype] = ACTIONS(1932), + [sym_Class] = ACTIONS(1932), + [sym_SEL] = ACTIONS(1932), + [sym_IMP] = ACTIONS(1932), + [sym_BOOL] = ACTIONS(1932), + [sym_auto] = ACTIONS(1932), + [anon_sym_ATautoreleasepool] = ACTIONS(1934), + [anon_sym_ATsynchronized] = ACTIONS(1934), + [anon_sym_ATtry] = ACTIONS(1934), + [anon_sym_ATthrow] = ACTIONS(1934), + [anon_sym_ATselector] = ACTIONS(1934), + [anon_sym_ATencode] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1932), + [sym_YES] = ACTIONS(1932), + [sym_NO] = ACTIONS(1932), + [anon_sym___builtin_available] = ACTIONS(1932), + [anon_sym_ATavailable] = ACTIONS(1934), + [anon_sym_va_arg] = ACTIONS(1932), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1305] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1306] = { + [sym_identifier] = ACTIONS(1932), + [aux_sym_preproc_include_token1] = ACTIONS(1934), + [aux_sym_preproc_def_token1] = ACTIONS(1934), + [aux_sym_preproc_if_token1] = ACTIONS(1932), + [aux_sym_preproc_if_token2] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_CARET] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym___attribute] = ACTIONS(1932), + [anon_sym___attribute__] = ACTIONS(1932), + [anon_sym___declspec] = ACTIONS(1932), + [anon_sym___cdecl] = ACTIONS(1932), + [anon_sym___clrcall] = ACTIONS(1932), + [anon_sym___stdcall] = ACTIONS(1932), + [anon_sym___fastcall] = ACTIONS(1932), + [anon_sym___thiscall] = ACTIONS(1932), + [anon_sym___vectorcall] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_auto] = ACTIONS(1932), + [anon_sym_register] = ACTIONS(1932), + [anon_sym_inline] = ACTIONS(1932), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym_in] = ACTIONS(1932), + [anon_sym_out] = ACTIONS(1932), + [anon_sym_inout] = ACTIONS(1932), + [anon_sym_bycopy] = ACTIONS(1932), + [anon_sym_byref] = ACTIONS(1932), + [anon_sym_oneway] = ACTIONS(1932), + [anon_sym__Nullable] = ACTIONS(1932), + [anon_sym__Nonnull] = ACTIONS(1932), + [anon_sym__Nullable_result] = ACTIONS(1932), + [anon_sym__Null_unspecified] = ACTIONS(1932), + [anon_sym___autoreleasing] = ACTIONS(1932), + [anon_sym___nullable] = ACTIONS(1932), + [anon_sym___nonnull] = ACTIONS(1932), + [anon_sym___strong] = ACTIONS(1932), + [anon_sym___weak] = ACTIONS(1932), + [anon_sym___bridge] = ACTIONS(1932), + [anon_sym___bridge_transfer] = ACTIONS(1932), + [anon_sym___bridge_retained] = ACTIONS(1932), + [anon_sym___unsafe_unretained] = ACTIONS(1932), + [anon_sym___block] = ACTIONS(1932), + [anon_sym___kindof] = ACTIONS(1932), + [anon_sym___unused] = ACTIONS(1932), + [anon_sym__Complex] = ACTIONS(1932), + [anon_sym___complex] = ACTIONS(1932), + [anon_sym_IBOutlet] = ACTIONS(1932), + [anon_sym_IBInspectable] = ACTIONS(1932), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1932), + [anon_sym_signed] = ACTIONS(1932), + [anon_sym_unsigned] = ACTIONS(1932), + [anon_sym_long] = ACTIONS(1932), + [anon_sym_short] = ACTIONS(1932), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_goto] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [sym_null] = ACTIONS(1932), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1934), + [anon_sym_ATimport] = ACTIONS(1934), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1932), + [anon_sym_ATcompatibility_alias] = ACTIONS(1934), + [anon_sym_ATprotocol] = ACTIONS(1934), + [anon_sym_ATclass] = ACTIONS(1934), + [anon_sym_ATinterface] = ACTIONS(1934), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1932), + [sym_method_attribute_specifier] = ACTIONS(1932), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1932), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE] = ACTIONS(1932), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_API_AVAILABLE] = ACTIONS(1932), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_API_DEPRECATED] = ACTIONS(1932), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1932), + [anon_sym___deprecated_msg] = ACTIONS(1932), + [anon_sym___deprecated_enum_msg] = ACTIONS(1932), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1932), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1932), + [anon_sym_ATimplementation] = ACTIONS(1934), + [anon_sym_NS_ENUM] = ACTIONS(1932), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1932), + [anon_sym_NS_OPTIONS] = ACTIONS(1932), + [anon_sym_typeof] = ACTIONS(1932), + [anon_sym___typeof] = ACTIONS(1932), + [anon_sym___typeof__] = ACTIONS(1932), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_nil] = ACTIONS(1932), + [sym_id] = ACTIONS(1932), + [sym_instancetype] = ACTIONS(1932), + [sym_Class] = ACTIONS(1932), + [sym_SEL] = ACTIONS(1932), + [sym_IMP] = ACTIONS(1932), + [sym_BOOL] = ACTIONS(1932), + [sym_auto] = ACTIONS(1932), + [anon_sym_ATautoreleasepool] = ACTIONS(1934), + [anon_sym_ATsynchronized] = ACTIONS(1934), + [anon_sym_ATtry] = ACTIONS(1934), + [anon_sym_ATthrow] = ACTIONS(1934), + [anon_sym_ATselector] = ACTIONS(1934), + [anon_sym_ATencode] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1932), + [sym_YES] = ACTIONS(1932), + [sym_NO] = ACTIONS(1932), + [anon_sym___builtin_available] = ACTIONS(1932), + [anon_sym_ATavailable] = ACTIONS(1934), + [anon_sym_va_arg] = ACTIONS(1932), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1307] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1308] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1309] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1310] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1311] = { + [sym_identifier] = ACTIONS(1932), + [aux_sym_preproc_include_token1] = ACTIONS(1934), + [aux_sym_preproc_def_token1] = ACTIONS(1934), + [aux_sym_preproc_if_token1] = ACTIONS(1932), + [aux_sym_preproc_if_token2] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1932), + [anon_sym_LPAREN2] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_CARET] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_typedef] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym___attribute] = ACTIONS(1932), + [anon_sym___attribute__] = ACTIONS(1932), + [anon_sym___declspec] = ACTIONS(1932), + [anon_sym___cdecl] = ACTIONS(1932), + [anon_sym___clrcall] = ACTIONS(1932), + [anon_sym___stdcall] = ACTIONS(1932), + [anon_sym___fastcall] = ACTIONS(1932), + [anon_sym___thiscall] = ACTIONS(1932), + [anon_sym___vectorcall] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_auto] = ACTIONS(1932), + [anon_sym_register] = ACTIONS(1932), + [anon_sym_inline] = ACTIONS(1932), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_volatile] = ACTIONS(1932), + [anon_sym_restrict] = ACTIONS(1932), + [anon_sym__Atomic] = ACTIONS(1932), + [anon_sym_in] = ACTIONS(1932), + [anon_sym_out] = ACTIONS(1932), + [anon_sym_inout] = ACTIONS(1932), + [anon_sym_bycopy] = ACTIONS(1932), + [anon_sym_byref] = ACTIONS(1932), + [anon_sym_oneway] = ACTIONS(1932), + [anon_sym__Nullable] = ACTIONS(1932), + [anon_sym__Nonnull] = ACTIONS(1932), + [anon_sym__Nullable_result] = ACTIONS(1932), + [anon_sym__Null_unspecified] = ACTIONS(1932), + [anon_sym___autoreleasing] = ACTIONS(1932), + [anon_sym___nullable] = ACTIONS(1932), + [anon_sym___nonnull] = ACTIONS(1932), + [anon_sym___strong] = ACTIONS(1932), + [anon_sym___weak] = ACTIONS(1932), + [anon_sym___bridge] = ACTIONS(1932), + [anon_sym___bridge_transfer] = ACTIONS(1932), + [anon_sym___bridge_retained] = ACTIONS(1932), + [anon_sym___unsafe_unretained] = ACTIONS(1932), + [anon_sym___block] = ACTIONS(1932), + [anon_sym___kindof] = ACTIONS(1932), + [anon_sym___unused] = ACTIONS(1932), + [anon_sym__Complex] = ACTIONS(1932), + [anon_sym___complex] = ACTIONS(1932), + [anon_sym_IBOutlet] = ACTIONS(1932), + [anon_sym_IBInspectable] = ACTIONS(1932), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1932), + [anon_sym_signed] = ACTIONS(1932), + [anon_sym_unsigned] = ACTIONS(1932), + [anon_sym_long] = ACTIONS(1932), + [anon_sym_short] = ACTIONS(1932), + [sym_primitive_type] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_switch] = ACTIONS(1932), + [anon_sym_case] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_do] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_goto] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1934), + [anon_sym_sizeof] = ACTIONS(1932), + [sym_number_literal] = ACTIONS(1934), + [anon_sym_L_SQUOTE] = ACTIONS(1934), + [anon_sym_u_SQUOTE] = ACTIONS(1934), + [anon_sym_U_SQUOTE] = ACTIONS(1934), + [anon_sym_u8_SQUOTE] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_L_DQUOTE] = ACTIONS(1934), + [anon_sym_u_DQUOTE] = ACTIONS(1934), + [anon_sym_U_DQUOTE] = ACTIONS(1934), + [anon_sym_u8_DQUOTE] = ACTIONS(1934), + [anon_sym_DQUOTE] = ACTIONS(1934), + [sym_true] = ACTIONS(1932), + [sym_false] = ACTIONS(1932), + [sym_null] = ACTIONS(1932), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1934), + [anon_sym_ATimport] = ACTIONS(1934), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1932), + [anon_sym_ATcompatibility_alias] = ACTIONS(1934), + [anon_sym_ATprotocol] = ACTIONS(1934), + [anon_sym_ATclass] = ACTIONS(1934), + [anon_sym_ATinterface] = ACTIONS(1934), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1932), + [sym_method_attribute_specifier] = ACTIONS(1932), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1932), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1932), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE] = ACTIONS(1932), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1932), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_API_AVAILABLE] = ACTIONS(1932), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_API_DEPRECATED] = ACTIONS(1932), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1932), + [anon_sym___deprecated_msg] = ACTIONS(1932), + [anon_sym___deprecated_enum_msg] = ACTIONS(1932), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1932), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1932), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1932), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1932), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1932), + [anon_sym_ATimplementation] = ACTIONS(1934), + [anon_sym_NS_ENUM] = ACTIONS(1932), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1932), + [anon_sym_NS_OPTIONS] = ACTIONS(1932), + [anon_sym_typeof] = ACTIONS(1932), + [anon_sym___typeof] = ACTIONS(1932), + [anon_sym___typeof__] = ACTIONS(1932), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_nil] = ACTIONS(1932), + [sym_id] = ACTIONS(1932), + [sym_instancetype] = ACTIONS(1932), + [sym_Class] = ACTIONS(1932), + [sym_SEL] = ACTIONS(1932), + [sym_IMP] = ACTIONS(1932), + [sym_BOOL] = ACTIONS(1932), + [sym_auto] = ACTIONS(1932), + [anon_sym_ATautoreleasepool] = ACTIONS(1934), + [anon_sym_ATsynchronized] = ACTIONS(1934), + [anon_sym_ATtry] = ACTIONS(1934), + [anon_sym_ATthrow] = ACTIONS(1934), + [anon_sym_ATselector] = ACTIONS(1934), + [anon_sym_ATencode] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1932), + [sym_YES] = ACTIONS(1932), + [sym_NO] = ACTIONS(1932), + [anon_sym___builtin_available] = ACTIONS(1932), + [anon_sym_ATavailable] = ACTIONS(1934), + [anon_sym_va_arg] = ACTIONS(1932), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1312] = { + [sym_identifier] = ACTIONS(1936), + [aux_sym_preproc_include_token1] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1938), + [aux_sym_preproc_if_token1] = ACTIONS(1936), + [aux_sym_preproc_if_token2] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_CARET] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_typedef] = ACTIONS(1936), + [anon_sym_extern] = ACTIONS(1936), + [anon_sym___attribute] = ACTIONS(1936), + [anon_sym___attribute__] = ACTIONS(1936), + [anon_sym___declspec] = ACTIONS(1936), + [anon_sym___cdecl] = ACTIONS(1936), + [anon_sym___clrcall] = ACTIONS(1936), + [anon_sym___stdcall] = ACTIONS(1936), + [anon_sym___fastcall] = ACTIONS(1936), + [anon_sym___thiscall] = ACTIONS(1936), + [anon_sym___vectorcall] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_auto] = ACTIONS(1936), + [anon_sym_register] = ACTIONS(1936), + [anon_sym_inline] = ACTIONS(1936), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym_in] = ACTIONS(1936), + [anon_sym_out] = ACTIONS(1936), + [anon_sym_inout] = ACTIONS(1936), + [anon_sym_bycopy] = ACTIONS(1936), + [anon_sym_byref] = ACTIONS(1936), + [anon_sym_oneway] = ACTIONS(1936), + [anon_sym__Nullable] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym__Nullable_result] = ACTIONS(1936), + [anon_sym__Null_unspecified] = ACTIONS(1936), + [anon_sym___autoreleasing] = ACTIONS(1936), + [anon_sym___nullable] = ACTIONS(1936), + [anon_sym___nonnull] = ACTIONS(1936), + [anon_sym___strong] = ACTIONS(1936), + [anon_sym___weak] = ACTIONS(1936), + [anon_sym___bridge] = ACTIONS(1936), + [anon_sym___bridge_transfer] = ACTIONS(1936), + [anon_sym___bridge_retained] = ACTIONS(1936), + [anon_sym___unsafe_unretained] = ACTIONS(1936), + [anon_sym___block] = ACTIONS(1936), + [anon_sym___kindof] = ACTIONS(1936), + [anon_sym___unused] = ACTIONS(1936), + [anon_sym__Complex] = ACTIONS(1936), + [anon_sym___complex] = ACTIONS(1936), + [anon_sym_IBOutlet] = ACTIONS(1936), + [anon_sym_IBInspectable] = ACTIONS(1936), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1936), + [anon_sym_signed] = ACTIONS(1936), + [anon_sym_unsigned] = ACTIONS(1936), + [anon_sym_long] = ACTIONS(1936), + [anon_sym_short] = ACTIONS(1936), + [sym_primitive_type] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1936), + [anon_sym_struct] = ACTIONS(1936), + [anon_sym_union] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_switch] = ACTIONS(1936), + [anon_sym_case] = ACTIONS(1936), + [anon_sym_default] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_do] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_break] = ACTIONS(1936), + [anon_sym_continue] = ACTIONS(1936), + [anon_sym_goto] = ACTIONS(1936), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_sizeof] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [anon_sym_L_SQUOTE] = ACTIONS(1938), + [anon_sym_u_SQUOTE] = ACTIONS(1938), + [anon_sym_U_SQUOTE] = ACTIONS(1938), + [anon_sym_u8_SQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_L_DQUOTE] = ACTIONS(1938), + [anon_sym_u_DQUOTE] = ACTIONS(1938), + [anon_sym_U_DQUOTE] = ACTIONS(1938), + [anon_sym_u8_DQUOTE] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [sym_null] = ACTIONS(1936), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1938), + [anon_sym_ATimport] = ACTIONS(1938), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1936), + [anon_sym_ATcompatibility_alias] = ACTIONS(1938), + [anon_sym_ATprotocol] = ACTIONS(1938), + [anon_sym_ATclass] = ACTIONS(1938), + [anon_sym_ATinterface] = ACTIONS(1938), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1936), + [sym_method_attribute_specifier] = ACTIONS(1936), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1936), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1936), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1936), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1936), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1936), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1936), + [anon_sym_NS_AVAILABLE] = ACTIONS(1936), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1936), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_API_AVAILABLE] = ACTIONS(1936), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1936), + [anon_sym_API_DEPRECATED] = ACTIONS(1936), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1936), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1936), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1936), + [anon_sym___deprecated_msg] = ACTIONS(1936), + [anon_sym___deprecated_enum_msg] = ACTIONS(1936), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1936), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1936), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1936), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1936), + [anon_sym_ATimplementation] = ACTIONS(1938), + [anon_sym_NS_ENUM] = ACTIONS(1936), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1936), + [anon_sym_NS_OPTIONS] = ACTIONS(1936), + [anon_sym_typeof] = ACTIONS(1936), + [anon_sym___typeof] = ACTIONS(1936), + [anon_sym___typeof__] = ACTIONS(1936), + [sym_self] = ACTIONS(1936), + [sym_super] = ACTIONS(1936), + [sym_nil] = ACTIONS(1936), + [sym_id] = ACTIONS(1936), + [sym_instancetype] = ACTIONS(1936), + [sym_Class] = ACTIONS(1936), + [sym_SEL] = ACTIONS(1936), + [sym_IMP] = ACTIONS(1936), + [sym_BOOL] = ACTIONS(1936), + [sym_auto] = ACTIONS(1936), + [anon_sym_ATautoreleasepool] = ACTIONS(1938), + [anon_sym_ATsynchronized] = ACTIONS(1938), + [anon_sym_ATtry] = ACTIONS(1938), + [anon_sym_ATthrow] = ACTIONS(1938), + [anon_sym_ATselector] = ACTIONS(1938), + [anon_sym_ATencode] = ACTIONS(1938), + [anon_sym_AT] = ACTIONS(1936), + [sym_YES] = ACTIONS(1936), + [sym_NO] = ACTIONS(1936), + [anon_sym___builtin_available] = ACTIONS(1936), + [anon_sym_ATavailable] = ACTIONS(1938), + [anon_sym_va_arg] = ACTIONS(1936), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1313] = { + [sym_identifier] = ACTIONS(1936), + [aux_sym_preproc_include_token1] = ACTIONS(1938), + [aux_sym_preproc_def_token1] = ACTIONS(1938), + [aux_sym_preproc_if_token1] = ACTIONS(1936), + [aux_sym_preproc_if_token2] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1936), + [anon_sym_LPAREN2] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_CARET] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_typedef] = ACTIONS(1936), + [anon_sym_extern] = ACTIONS(1936), + [anon_sym___attribute] = ACTIONS(1936), + [anon_sym___attribute__] = ACTIONS(1936), + [anon_sym___declspec] = ACTIONS(1936), + [anon_sym___cdecl] = ACTIONS(1936), + [anon_sym___clrcall] = ACTIONS(1936), + [anon_sym___stdcall] = ACTIONS(1936), + [anon_sym___fastcall] = ACTIONS(1936), + [anon_sym___thiscall] = ACTIONS(1936), + [anon_sym___vectorcall] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_auto] = ACTIONS(1936), + [anon_sym_register] = ACTIONS(1936), + [anon_sym_inline] = ACTIONS(1936), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym_in] = ACTIONS(1936), + [anon_sym_out] = ACTIONS(1936), + [anon_sym_inout] = ACTIONS(1936), + [anon_sym_bycopy] = ACTIONS(1936), + [anon_sym_byref] = ACTIONS(1936), + [anon_sym_oneway] = ACTIONS(1936), + [anon_sym__Nullable] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym__Nullable_result] = ACTIONS(1936), + [anon_sym__Null_unspecified] = ACTIONS(1936), + [anon_sym___autoreleasing] = ACTIONS(1936), + [anon_sym___nullable] = ACTIONS(1936), + [anon_sym___nonnull] = ACTIONS(1936), + [anon_sym___strong] = ACTIONS(1936), + [anon_sym___weak] = ACTIONS(1936), + [anon_sym___bridge] = ACTIONS(1936), + [anon_sym___bridge_transfer] = ACTIONS(1936), + [anon_sym___bridge_retained] = ACTIONS(1936), + [anon_sym___unsafe_unretained] = ACTIONS(1936), + [anon_sym___block] = ACTIONS(1936), + [anon_sym___kindof] = ACTIONS(1936), + [anon_sym___unused] = ACTIONS(1936), + [anon_sym__Complex] = ACTIONS(1936), + [anon_sym___complex] = ACTIONS(1936), + [anon_sym_IBOutlet] = ACTIONS(1936), + [anon_sym_IBInspectable] = ACTIONS(1936), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1936), + [anon_sym_signed] = ACTIONS(1936), + [anon_sym_unsigned] = ACTIONS(1936), + [anon_sym_long] = ACTIONS(1936), + [anon_sym_short] = ACTIONS(1936), + [sym_primitive_type] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1936), + [anon_sym_struct] = ACTIONS(1936), + [anon_sym_union] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_switch] = ACTIONS(1936), + [anon_sym_case] = ACTIONS(1936), + [anon_sym_default] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_do] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_break] = ACTIONS(1936), + [anon_sym_continue] = ACTIONS(1936), + [anon_sym_goto] = ACTIONS(1936), + [anon_sym_DASH_DASH] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1938), + [anon_sym_sizeof] = ACTIONS(1936), + [sym_number_literal] = ACTIONS(1938), + [anon_sym_L_SQUOTE] = ACTIONS(1938), + [anon_sym_u_SQUOTE] = ACTIONS(1938), + [anon_sym_U_SQUOTE] = ACTIONS(1938), + [anon_sym_u8_SQUOTE] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_L_DQUOTE] = ACTIONS(1938), + [anon_sym_u_DQUOTE] = ACTIONS(1938), + [anon_sym_U_DQUOTE] = ACTIONS(1938), + [anon_sym_u8_DQUOTE] = ACTIONS(1938), + [anon_sym_DQUOTE] = ACTIONS(1938), + [sym_true] = ACTIONS(1936), + [sym_false] = ACTIONS(1936), + [sym_null] = ACTIONS(1936), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1938), + [anon_sym_ATimport] = ACTIONS(1938), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1936), + [anon_sym_ATcompatibility_alias] = ACTIONS(1938), + [anon_sym_ATprotocol] = ACTIONS(1938), + [anon_sym_ATclass] = ACTIONS(1938), + [anon_sym_ATinterface] = ACTIONS(1938), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1936), + [sym_method_attribute_specifier] = ACTIONS(1936), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1936), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1936), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1936), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1936), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1936), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1936), + [anon_sym_NS_AVAILABLE] = ACTIONS(1936), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1936), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_API_AVAILABLE] = ACTIONS(1936), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1936), + [anon_sym_API_DEPRECATED] = ACTIONS(1936), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1936), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1936), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1936), + [anon_sym___deprecated_msg] = ACTIONS(1936), + [anon_sym___deprecated_enum_msg] = ACTIONS(1936), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1936), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1936), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1936), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1936), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1936), + [anon_sym_ATimplementation] = ACTIONS(1938), + [anon_sym_NS_ENUM] = ACTIONS(1936), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1936), + [anon_sym_NS_OPTIONS] = ACTIONS(1936), + [anon_sym_typeof] = ACTIONS(1936), + [anon_sym___typeof] = ACTIONS(1936), + [anon_sym___typeof__] = ACTIONS(1936), + [sym_self] = ACTIONS(1936), + [sym_super] = ACTIONS(1936), + [sym_nil] = ACTIONS(1936), + [sym_id] = ACTIONS(1936), + [sym_instancetype] = ACTIONS(1936), + [sym_Class] = ACTIONS(1936), + [sym_SEL] = ACTIONS(1936), + [sym_IMP] = ACTIONS(1936), + [sym_BOOL] = ACTIONS(1936), + [sym_auto] = ACTIONS(1936), + [anon_sym_ATautoreleasepool] = ACTIONS(1938), + [anon_sym_ATsynchronized] = ACTIONS(1938), + [anon_sym_ATtry] = ACTIONS(1938), + [anon_sym_ATthrow] = ACTIONS(1938), + [anon_sym_ATselector] = ACTIONS(1938), + [anon_sym_ATencode] = ACTIONS(1938), + [anon_sym_AT] = ACTIONS(1936), + [sym_YES] = ACTIONS(1936), + [sym_NO] = ACTIONS(1936), + [anon_sym___builtin_available] = ACTIONS(1936), + [anon_sym_ATavailable] = ACTIONS(1938), + [anon_sym_va_arg] = ACTIONS(1936), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1314] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1315] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1316] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1317] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1318] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1319] = { + [sym_identifier] = ACTIONS(1888), + [aux_sym_preproc_include_token1] = ACTIONS(1890), + [aux_sym_preproc_def_token1] = ACTIONS(1890), + [aux_sym_preproc_if_token1] = ACTIONS(1888), + [aux_sym_preproc_if_token2] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1888), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym___attribute] = ACTIONS(1888), + [anon_sym___attribute__] = ACTIONS(1888), + [anon_sym___declspec] = ACTIONS(1888), + [anon_sym___cdecl] = ACTIONS(1888), + [anon_sym___clrcall] = ACTIONS(1888), + [anon_sym___stdcall] = ACTIONS(1888), + [anon_sym___fastcall] = ACTIONS(1888), + [anon_sym___thiscall] = ACTIONS(1888), + [anon_sym___vectorcall] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_auto] = ACTIONS(1888), + [anon_sym_register] = ACTIONS(1888), + [anon_sym_inline] = ACTIONS(1888), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_volatile] = ACTIONS(1888), + [anon_sym_restrict] = ACTIONS(1888), + [anon_sym__Atomic] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_out] = ACTIONS(1888), + [anon_sym_inout] = ACTIONS(1888), + [anon_sym_bycopy] = ACTIONS(1888), + [anon_sym_byref] = ACTIONS(1888), + [anon_sym_oneway] = ACTIONS(1888), + [anon_sym__Nullable] = ACTIONS(1888), + [anon_sym__Nonnull] = ACTIONS(1888), + [anon_sym__Nullable_result] = ACTIONS(1888), + [anon_sym__Null_unspecified] = ACTIONS(1888), + [anon_sym___autoreleasing] = ACTIONS(1888), + [anon_sym___nullable] = ACTIONS(1888), + [anon_sym___nonnull] = ACTIONS(1888), + [anon_sym___strong] = ACTIONS(1888), + [anon_sym___weak] = ACTIONS(1888), + [anon_sym___bridge] = ACTIONS(1888), + [anon_sym___bridge_transfer] = ACTIONS(1888), + [anon_sym___bridge_retained] = ACTIONS(1888), + [anon_sym___unsafe_unretained] = ACTIONS(1888), + [anon_sym___block] = ACTIONS(1888), + [anon_sym___kindof] = ACTIONS(1888), + [anon_sym___unused] = ACTIONS(1888), + [anon_sym__Complex] = ACTIONS(1888), + [anon_sym___complex] = ACTIONS(1888), + [anon_sym_IBOutlet] = ACTIONS(1888), + [anon_sym_IBInspectable] = ACTIONS(1888), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1888), + [anon_sym_signed] = ACTIONS(1888), + [anon_sym_unsigned] = ACTIONS(1888), + [anon_sym_long] = ACTIONS(1888), + [anon_sym_short] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_switch] = ACTIONS(1888), + [anon_sym_case] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_goto] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_sizeof] = ACTIONS(1888), + [sym_number_literal] = ACTIONS(1890), + [anon_sym_L_SQUOTE] = ACTIONS(1890), + [anon_sym_u_SQUOTE] = ACTIONS(1890), + [anon_sym_U_SQUOTE] = ACTIONS(1890), + [anon_sym_u8_SQUOTE] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_L_DQUOTE] = ACTIONS(1890), + [anon_sym_u_DQUOTE] = ACTIONS(1890), + [anon_sym_U_DQUOTE] = ACTIONS(1890), + [anon_sym_u8_DQUOTE] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_true] = ACTIONS(1888), + [sym_false] = ACTIONS(1888), + [sym_null] = ACTIONS(1888), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1890), + [anon_sym_ATimport] = ACTIONS(1890), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1888), + [anon_sym_ATcompatibility_alias] = ACTIONS(1890), + [anon_sym_ATprotocol] = ACTIONS(1890), + [anon_sym_ATclass] = ACTIONS(1890), + [anon_sym_ATinterface] = ACTIONS(1890), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1888), + [sym_method_attribute_specifier] = ACTIONS(1888), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1888), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE] = ACTIONS(1888), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_API_AVAILABLE] = ACTIONS(1888), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_API_DEPRECATED] = ACTIONS(1888), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1888), + [anon_sym___deprecated_msg] = ACTIONS(1888), + [anon_sym___deprecated_enum_msg] = ACTIONS(1888), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1888), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1888), + [anon_sym_ATimplementation] = ACTIONS(1890), + [anon_sym_NS_ENUM] = ACTIONS(1888), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1888), + [anon_sym_NS_OPTIONS] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym___typeof] = ACTIONS(1888), + [anon_sym___typeof__] = ACTIONS(1888), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_nil] = ACTIONS(1888), + [sym_id] = ACTIONS(1888), + [sym_instancetype] = ACTIONS(1888), + [sym_Class] = ACTIONS(1888), + [sym_SEL] = ACTIONS(1888), + [sym_IMP] = ACTIONS(1888), + [sym_BOOL] = ACTIONS(1888), + [sym_auto] = ACTIONS(1888), + [anon_sym_ATautoreleasepool] = ACTIONS(1890), + [anon_sym_ATsynchronized] = ACTIONS(1890), + [anon_sym_ATtry] = ACTIONS(1890), + [anon_sym_ATthrow] = ACTIONS(1890), + [anon_sym_ATselector] = ACTIONS(1890), + [anon_sym_ATencode] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [sym_YES] = ACTIONS(1888), + [sym_NO] = ACTIONS(1888), + [anon_sym___builtin_available] = ACTIONS(1888), + [anon_sym_ATavailable] = ACTIONS(1890), + [anon_sym_va_arg] = ACTIONS(1888), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1320] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1321] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1322] = { + [sym_identifier] = ACTIONS(2036), + [aux_sym_preproc_include_token1] = ACTIONS(2038), + [aux_sym_preproc_def_token1] = ACTIONS(2038), + [aux_sym_preproc_if_token1] = ACTIONS(2036), + [aux_sym_preproc_if_token2] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2036), + [anon_sym_LPAREN2] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_typedef] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym___attribute] = ACTIONS(2036), + [anon_sym___attribute__] = ACTIONS(2036), + [anon_sym___declspec] = ACTIONS(2036), + [anon_sym___cdecl] = ACTIONS(2036), + [anon_sym___clrcall] = ACTIONS(2036), + [anon_sym___stdcall] = ACTIONS(2036), + [anon_sym___fastcall] = ACTIONS(2036), + [anon_sym___thiscall] = ACTIONS(2036), + [anon_sym___vectorcall] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_auto] = ACTIONS(2036), + [anon_sym_register] = ACTIONS(2036), + [anon_sym_inline] = ACTIONS(2036), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_volatile] = ACTIONS(2036), + [anon_sym_restrict] = ACTIONS(2036), + [anon_sym__Atomic] = ACTIONS(2036), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_out] = ACTIONS(2036), + [anon_sym_inout] = ACTIONS(2036), + [anon_sym_bycopy] = ACTIONS(2036), + [anon_sym_byref] = ACTIONS(2036), + [anon_sym_oneway] = ACTIONS(2036), + [anon_sym__Nullable] = ACTIONS(2036), + [anon_sym__Nonnull] = ACTIONS(2036), + [anon_sym__Nullable_result] = ACTIONS(2036), + [anon_sym__Null_unspecified] = ACTIONS(2036), + [anon_sym___autoreleasing] = ACTIONS(2036), + [anon_sym___nullable] = ACTIONS(2036), + [anon_sym___nonnull] = ACTIONS(2036), + [anon_sym___strong] = ACTIONS(2036), + [anon_sym___weak] = ACTIONS(2036), + [anon_sym___bridge] = ACTIONS(2036), + [anon_sym___bridge_transfer] = ACTIONS(2036), + [anon_sym___bridge_retained] = ACTIONS(2036), + [anon_sym___unsafe_unretained] = ACTIONS(2036), + [anon_sym___block] = ACTIONS(2036), + [anon_sym___kindof] = ACTIONS(2036), + [anon_sym___unused] = ACTIONS(2036), + [anon_sym__Complex] = ACTIONS(2036), + [anon_sym___complex] = ACTIONS(2036), + [anon_sym_IBOutlet] = ACTIONS(2036), + [anon_sym_IBInspectable] = ACTIONS(2036), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2036), + [anon_sym_signed] = ACTIONS(2036), + [anon_sym_unsigned] = ACTIONS(2036), + [anon_sym_long] = ACTIONS(2036), + [anon_sym_short] = ACTIONS(2036), + [sym_primitive_type] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_goto] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2038), + [anon_sym_sizeof] = ACTIONS(2036), + [sym_number_literal] = ACTIONS(2038), + [anon_sym_L_SQUOTE] = ACTIONS(2038), + [anon_sym_u_SQUOTE] = ACTIONS(2038), + [anon_sym_U_SQUOTE] = ACTIONS(2038), + [anon_sym_u8_SQUOTE] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_L_DQUOTE] = ACTIONS(2038), + [anon_sym_u_DQUOTE] = ACTIONS(2038), + [anon_sym_U_DQUOTE] = ACTIONS(2038), + [anon_sym_u8_DQUOTE] = ACTIONS(2038), + [anon_sym_DQUOTE] = ACTIONS(2038), + [sym_true] = ACTIONS(2036), + [sym_false] = ACTIONS(2036), + [sym_null] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2038), + [anon_sym_ATimport] = ACTIONS(2038), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2036), + [anon_sym_ATcompatibility_alias] = ACTIONS(2038), + [anon_sym_ATprotocol] = ACTIONS(2038), + [anon_sym_ATclass] = ACTIONS(2038), + [anon_sym_ATinterface] = ACTIONS(2038), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2036), + [sym_method_attribute_specifier] = ACTIONS(2036), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2036), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2036), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE] = ACTIONS(2036), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2036), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_API_AVAILABLE] = ACTIONS(2036), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_API_DEPRECATED] = ACTIONS(2036), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2036), + [anon_sym___deprecated_msg] = ACTIONS(2036), + [anon_sym___deprecated_enum_msg] = ACTIONS(2036), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2036), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2036), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2036), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2036), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2036), + [anon_sym_ATimplementation] = ACTIONS(2038), + [anon_sym_NS_ENUM] = ACTIONS(2036), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2036), + [anon_sym_NS_OPTIONS] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym___typeof] = ACTIONS(2036), + [anon_sym___typeof__] = ACTIONS(2036), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_nil] = ACTIONS(2036), + [sym_id] = ACTIONS(2036), + [sym_instancetype] = ACTIONS(2036), + [sym_Class] = ACTIONS(2036), + [sym_SEL] = ACTIONS(2036), + [sym_IMP] = ACTIONS(2036), + [sym_BOOL] = ACTIONS(2036), + [sym_auto] = ACTIONS(2036), + [anon_sym_ATautoreleasepool] = ACTIONS(2038), + [anon_sym_ATsynchronized] = ACTIONS(2038), + [anon_sym_ATtry] = ACTIONS(2038), + [anon_sym_ATthrow] = ACTIONS(2038), + [anon_sym_ATselector] = ACTIONS(2038), + [anon_sym_ATencode] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [sym_YES] = ACTIONS(2036), + [sym_NO] = ACTIONS(2036), + [anon_sym___builtin_available] = ACTIONS(2036), + [anon_sym_ATavailable] = ACTIONS(2038), + [anon_sym_va_arg] = ACTIONS(2036), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1323] = { + [sym_identifier] = ACTIONS(2024), + [aux_sym_preproc_include_token1] = ACTIONS(2026), + [aux_sym_preproc_def_token1] = ACTIONS(2026), + [aux_sym_preproc_if_token1] = ACTIONS(2024), + [aux_sym_preproc_if_token2] = ACTIONS(2024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2024), + [anon_sym_LPAREN2] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2026), + [anon_sym_TILDE] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_CARET] = ACTIONS(2026), + [anon_sym_AMP] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym_typedef] = ACTIONS(2024), + [anon_sym_extern] = ACTIONS(2024), + [anon_sym___attribute] = ACTIONS(2024), + [anon_sym___attribute__] = ACTIONS(2024), + [anon_sym___declspec] = ACTIONS(2024), + [anon_sym___cdecl] = ACTIONS(2024), + [anon_sym___clrcall] = ACTIONS(2024), + [anon_sym___stdcall] = ACTIONS(2024), + [anon_sym___fastcall] = ACTIONS(2024), + [anon_sym___thiscall] = ACTIONS(2024), + [anon_sym___vectorcall] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_static] = ACTIONS(2024), + [anon_sym_auto] = ACTIONS(2024), + [anon_sym_register] = ACTIONS(2024), + [anon_sym_inline] = ACTIONS(2024), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2024), + [anon_sym_const] = ACTIONS(2024), + [anon_sym_volatile] = ACTIONS(2024), + [anon_sym_restrict] = ACTIONS(2024), + [anon_sym__Atomic] = ACTIONS(2024), + [anon_sym_in] = ACTIONS(2024), + [anon_sym_out] = ACTIONS(2024), + [anon_sym_inout] = ACTIONS(2024), + [anon_sym_bycopy] = ACTIONS(2024), + [anon_sym_byref] = ACTIONS(2024), + [anon_sym_oneway] = ACTIONS(2024), + [anon_sym__Nullable] = ACTIONS(2024), + [anon_sym__Nonnull] = ACTIONS(2024), + [anon_sym__Nullable_result] = ACTIONS(2024), + [anon_sym__Null_unspecified] = ACTIONS(2024), + [anon_sym___autoreleasing] = ACTIONS(2024), + [anon_sym___nullable] = ACTIONS(2024), + [anon_sym___nonnull] = ACTIONS(2024), + [anon_sym___strong] = ACTIONS(2024), + [anon_sym___weak] = ACTIONS(2024), + [anon_sym___bridge] = ACTIONS(2024), + [anon_sym___bridge_transfer] = ACTIONS(2024), + [anon_sym___bridge_retained] = ACTIONS(2024), + [anon_sym___unsafe_unretained] = ACTIONS(2024), + [anon_sym___block] = ACTIONS(2024), + [anon_sym___kindof] = ACTIONS(2024), + [anon_sym___unused] = ACTIONS(2024), + [anon_sym__Complex] = ACTIONS(2024), + [anon_sym___complex] = ACTIONS(2024), + [anon_sym_IBOutlet] = ACTIONS(2024), + [anon_sym_IBInspectable] = ACTIONS(2024), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2024), + [anon_sym_signed] = ACTIONS(2024), + [anon_sym_unsigned] = ACTIONS(2024), + [anon_sym_long] = ACTIONS(2024), + [anon_sym_short] = ACTIONS(2024), + [sym_primitive_type] = ACTIONS(2024), + [anon_sym_enum] = ACTIONS(2024), + [anon_sym_struct] = ACTIONS(2024), + [anon_sym_union] = ACTIONS(2024), + [anon_sym_if] = ACTIONS(2024), + [anon_sym_switch] = ACTIONS(2024), + [anon_sym_case] = ACTIONS(2024), + [anon_sym_default] = ACTIONS(2024), + [anon_sym_while] = ACTIONS(2024), + [anon_sym_do] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2024), + [anon_sym_break] = ACTIONS(2024), + [anon_sym_continue] = ACTIONS(2024), + [anon_sym_goto] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2026), + [anon_sym_sizeof] = ACTIONS(2024), + [sym_number_literal] = ACTIONS(2026), + [anon_sym_L_SQUOTE] = ACTIONS(2026), + [anon_sym_u_SQUOTE] = ACTIONS(2026), + [anon_sym_U_SQUOTE] = ACTIONS(2026), + [anon_sym_u8_SQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2026), + [anon_sym_L_DQUOTE] = ACTIONS(2026), + [anon_sym_u_DQUOTE] = ACTIONS(2026), + [anon_sym_U_DQUOTE] = ACTIONS(2026), + [anon_sym_u8_DQUOTE] = ACTIONS(2026), + [anon_sym_DQUOTE] = ACTIONS(2026), + [sym_true] = ACTIONS(2024), + [sym_false] = ACTIONS(2024), + [sym_null] = ACTIONS(2024), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2026), + [anon_sym_ATimport] = ACTIONS(2026), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2024), + [anon_sym_ATcompatibility_alias] = ACTIONS(2026), + [anon_sym_ATprotocol] = ACTIONS(2026), + [anon_sym_ATclass] = ACTIONS(2026), + [anon_sym_ATinterface] = ACTIONS(2026), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2024), + [sym_method_attribute_specifier] = ACTIONS(2024), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2024), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2024), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2024), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2024), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2024), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2024), + [anon_sym_NS_AVAILABLE] = ACTIONS(2024), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2024), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2024), + [anon_sym_API_AVAILABLE] = ACTIONS(2024), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2024), + [anon_sym_API_DEPRECATED] = ACTIONS(2024), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2024), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2024), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2024), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2024), + [anon_sym___deprecated_msg] = ACTIONS(2024), + [anon_sym___deprecated_enum_msg] = ACTIONS(2024), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2024), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2024), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2024), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2024), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2024), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2024), + [anon_sym_ATimplementation] = ACTIONS(2026), + [anon_sym_NS_ENUM] = ACTIONS(2024), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2024), + [anon_sym_NS_OPTIONS] = ACTIONS(2024), + [anon_sym_typeof] = ACTIONS(2024), + [anon_sym___typeof] = ACTIONS(2024), + [anon_sym___typeof__] = ACTIONS(2024), + [sym_self] = ACTIONS(2024), + [sym_super] = ACTIONS(2024), + [sym_nil] = ACTIONS(2024), + [sym_id] = ACTIONS(2024), + [sym_instancetype] = ACTIONS(2024), + [sym_Class] = ACTIONS(2024), + [sym_SEL] = ACTIONS(2024), + [sym_IMP] = ACTIONS(2024), + [sym_BOOL] = ACTIONS(2024), + [sym_auto] = ACTIONS(2024), + [anon_sym_ATautoreleasepool] = ACTIONS(2026), + [anon_sym_ATsynchronized] = ACTIONS(2026), + [anon_sym_ATtry] = ACTIONS(2026), + [anon_sym_ATthrow] = ACTIONS(2026), + [anon_sym_ATselector] = ACTIONS(2026), + [anon_sym_ATencode] = ACTIONS(2026), + [anon_sym_AT] = ACTIONS(2024), + [sym_YES] = ACTIONS(2024), + [sym_NO] = ACTIONS(2024), + [anon_sym___builtin_available] = ACTIONS(2024), + [anon_sym_ATavailable] = ACTIONS(2026), + [anon_sym_va_arg] = ACTIONS(2024), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1324] = { + [sym_identifier] = ACTIONS(2020), + [aux_sym_preproc_include_token1] = ACTIONS(2022), + [aux_sym_preproc_def_token1] = ACTIONS(2022), + [aux_sym_preproc_if_token1] = ACTIONS(2020), + [aux_sym_preproc_if_token2] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2020), + [anon_sym_LPAREN2] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2022), + [anon_sym_TILDE] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2020), + [anon_sym_PLUS] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(2022), + [anon_sym_CARET] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2022), + [anon_sym_typedef] = ACTIONS(2020), + [anon_sym_extern] = ACTIONS(2020), + [anon_sym___attribute] = ACTIONS(2020), + [anon_sym___attribute__] = ACTIONS(2020), + [anon_sym___declspec] = ACTIONS(2020), + [anon_sym___cdecl] = ACTIONS(2020), + [anon_sym___clrcall] = ACTIONS(2020), + [anon_sym___stdcall] = ACTIONS(2020), + [anon_sym___fastcall] = ACTIONS(2020), + [anon_sym___thiscall] = ACTIONS(2020), + [anon_sym___vectorcall] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(2022), + [anon_sym_static] = ACTIONS(2020), + [anon_sym_auto] = ACTIONS(2020), + [anon_sym_register] = ACTIONS(2020), + [anon_sym_inline] = ACTIONS(2020), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_volatile] = ACTIONS(2020), + [anon_sym_restrict] = ACTIONS(2020), + [anon_sym__Atomic] = ACTIONS(2020), + [anon_sym_in] = ACTIONS(2020), + [anon_sym_out] = ACTIONS(2020), + [anon_sym_inout] = ACTIONS(2020), + [anon_sym_bycopy] = ACTIONS(2020), + [anon_sym_byref] = ACTIONS(2020), + [anon_sym_oneway] = ACTIONS(2020), + [anon_sym__Nullable] = ACTIONS(2020), + [anon_sym__Nonnull] = ACTIONS(2020), + [anon_sym__Nullable_result] = ACTIONS(2020), + [anon_sym__Null_unspecified] = ACTIONS(2020), + [anon_sym___autoreleasing] = ACTIONS(2020), + [anon_sym___nullable] = ACTIONS(2020), + [anon_sym___nonnull] = ACTIONS(2020), + [anon_sym___strong] = ACTIONS(2020), + [anon_sym___weak] = ACTIONS(2020), + [anon_sym___bridge] = ACTIONS(2020), + [anon_sym___bridge_transfer] = ACTIONS(2020), + [anon_sym___bridge_retained] = ACTIONS(2020), + [anon_sym___unsafe_unretained] = ACTIONS(2020), + [anon_sym___block] = ACTIONS(2020), + [anon_sym___kindof] = ACTIONS(2020), + [anon_sym___unused] = ACTIONS(2020), + [anon_sym__Complex] = ACTIONS(2020), + [anon_sym___complex] = ACTIONS(2020), + [anon_sym_IBOutlet] = ACTIONS(2020), + [anon_sym_IBInspectable] = ACTIONS(2020), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2020), + [anon_sym_signed] = ACTIONS(2020), + [anon_sym_unsigned] = ACTIONS(2020), + [anon_sym_long] = ACTIONS(2020), + [anon_sym_short] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2020), + [anon_sym_enum] = ACTIONS(2020), + [anon_sym_struct] = ACTIONS(2020), + [anon_sym_union] = ACTIONS(2020), + [anon_sym_if] = ACTIONS(2020), + [anon_sym_switch] = ACTIONS(2020), + [anon_sym_case] = ACTIONS(2020), + [anon_sym_default] = ACTIONS(2020), + [anon_sym_while] = ACTIONS(2020), + [anon_sym_do] = ACTIONS(2020), + [anon_sym_for] = ACTIONS(2020), + [anon_sym_return] = ACTIONS(2020), + [anon_sym_break] = ACTIONS(2020), + [anon_sym_continue] = ACTIONS(2020), + [anon_sym_goto] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2022), + [anon_sym_sizeof] = ACTIONS(2020), + [sym_number_literal] = ACTIONS(2022), + [anon_sym_L_SQUOTE] = ACTIONS(2022), + [anon_sym_u_SQUOTE] = ACTIONS(2022), + [anon_sym_U_SQUOTE] = ACTIONS(2022), + [anon_sym_u8_SQUOTE] = ACTIONS(2022), + [anon_sym_SQUOTE] = ACTIONS(2022), + [anon_sym_L_DQUOTE] = ACTIONS(2022), + [anon_sym_u_DQUOTE] = ACTIONS(2022), + [anon_sym_U_DQUOTE] = ACTIONS(2022), + [anon_sym_u8_DQUOTE] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2022), + [sym_true] = ACTIONS(2020), + [sym_false] = ACTIONS(2020), + [sym_null] = ACTIONS(2020), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2022), + [anon_sym_ATimport] = ACTIONS(2022), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2020), + [anon_sym_ATcompatibility_alias] = ACTIONS(2022), + [anon_sym_ATprotocol] = ACTIONS(2022), + [anon_sym_ATclass] = ACTIONS(2022), + [anon_sym_ATinterface] = ACTIONS(2022), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2020), + [sym_method_attribute_specifier] = ACTIONS(2020), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2020), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2020), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2020), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2020), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2020), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2020), + [anon_sym_NS_AVAILABLE] = ACTIONS(2020), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2020), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2020), + [anon_sym_API_AVAILABLE] = ACTIONS(2020), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2020), + [anon_sym_API_DEPRECATED] = ACTIONS(2020), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2020), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2020), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2020), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2020), + [anon_sym___deprecated_msg] = ACTIONS(2020), + [anon_sym___deprecated_enum_msg] = ACTIONS(2020), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2020), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2020), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2020), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2020), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2020), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2020), + [anon_sym_ATimplementation] = ACTIONS(2022), + [anon_sym_NS_ENUM] = ACTIONS(2020), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2020), + [anon_sym_NS_OPTIONS] = ACTIONS(2020), + [anon_sym_typeof] = ACTIONS(2020), + [anon_sym___typeof] = ACTIONS(2020), + [anon_sym___typeof__] = ACTIONS(2020), + [sym_self] = ACTIONS(2020), + [sym_super] = ACTIONS(2020), + [sym_nil] = ACTIONS(2020), + [sym_id] = ACTIONS(2020), + [sym_instancetype] = ACTIONS(2020), + [sym_Class] = ACTIONS(2020), + [sym_SEL] = ACTIONS(2020), + [sym_IMP] = ACTIONS(2020), + [sym_BOOL] = ACTIONS(2020), + [sym_auto] = ACTIONS(2020), + [anon_sym_ATautoreleasepool] = ACTIONS(2022), + [anon_sym_ATsynchronized] = ACTIONS(2022), + [anon_sym_ATtry] = ACTIONS(2022), + [anon_sym_ATthrow] = ACTIONS(2022), + [anon_sym_ATselector] = ACTIONS(2022), + [anon_sym_ATencode] = ACTIONS(2022), + [anon_sym_AT] = ACTIONS(2020), + [sym_YES] = ACTIONS(2020), + [sym_NO] = ACTIONS(2020), + [anon_sym___builtin_available] = ACTIONS(2020), + [anon_sym_ATavailable] = ACTIONS(2022), + [anon_sym_va_arg] = ACTIONS(2020), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1325] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1326] = { + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2018), + [aux_sym_preproc_def_token1] = ACTIONS(2018), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token2] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_auto] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym_in] = ACTIONS(2016), + [anon_sym_out] = ACTIONS(2016), + [anon_sym_inout] = ACTIONS(2016), + [anon_sym_bycopy] = ACTIONS(2016), + [anon_sym_byref] = ACTIONS(2016), + [anon_sym_oneway] = ACTIONS(2016), + [anon_sym__Nullable] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym__Nullable_result] = ACTIONS(2016), + [anon_sym__Null_unspecified] = ACTIONS(2016), + [anon_sym___autoreleasing] = ACTIONS(2016), + [anon_sym___nullable] = ACTIONS(2016), + [anon_sym___nonnull] = ACTIONS(2016), + [anon_sym___strong] = ACTIONS(2016), + [anon_sym___weak] = ACTIONS(2016), + [anon_sym___bridge] = ACTIONS(2016), + [anon_sym___bridge_transfer] = ACTIONS(2016), + [anon_sym___bridge_retained] = ACTIONS(2016), + [anon_sym___unsafe_unretained] = ACTIONS(2016), + [anon_sym___block] = ACTIONS(2016), + [anon_sym___kindof] = ACTIONS(2016), + [anon_sym___unused] = ACTIONS(2016), + [anon_sym__Complex] = ACTIONS(2016), + [anon_sym___complex] = ACTIONS(2016), + [anon_sym_IBOutlet] = ACTIONS(2016), + [anon_sym_IBInspectable] = ACTIONS(2016), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2016), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [sym_null] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2018), + [anon_sym_ATimport] = ACTIONS(2018), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2016), + [anon_sym_ATcompatibility_alias] = ACTIONS(2018), + [anon_sym_ATprotocol] = ACTIONS(2018), + [anon_sym_ATclass] = ACTIONS(2018), + [anon_sym_ATinterface] = ACTIONS(2018), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2016), + [sym_method_attribute_specifier] = ACTIONS(2016), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2016), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE] = ACTIONS(2016), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_API_AVAILABLE] = ACTIONS(2016), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_API_DEPRECATED] = ACTIONS(2016), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2016), + [anon_sym___deprecated_msg] = ACTIONS(2016), + [anon_sym___deprecated_enum_msg] = ACTIONS(2016), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2016), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2016), + [anon_sym_ATimplementation] = ACTIONS(2018), + [anon_sym_NS_ENUM] = ACTIONS(2016), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2016), + [anon_sym_NS_OPTIONS] = ACTIONS(2016), + [anon_sym_typeof] = ACTIONS(2016), + [anon_sym___typeof] = ACTIONS(2016), + [anon_sym___typeof__] = ACTIONS(2016), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_nil] = ACTIONS(2016), + [sym_id] = ACTIONS(2016), + [sym_instancetype] = ACTIONS(2016), + [sym_Class] = ACTIONS(2016), + [sym_SEL] = ACTIONS(2016), + [sym_IMP] = ACTIONS(2016), + [sym_BOOL] = ACTIONS(2016), + [sym_auto] = ACTIONS(2016), + [anon_sym_ATautoreleasepool] = ACTIONS(2018), + [anon_sym_ATsynchronized] = ACTIONS(2018), + [anon_sym_ATtry] = ACTIONS(2018), + [anon_sym_ATthrow] = ACTIONS(2018), + [anon_sym_ATselector] = ACTIONS(2018), + [anon_sym_ATencode] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2016), + [sym_YES] = ACTIONS(2016), + [sym_NO] = ACTIONS(2016), + [anon_sym___builtin_available] = ACTIONS(2016), + [anon_sym_ATavailable] = ACTIONS(2018), + [anon_sym_va_arg] = ACTIONS(2016), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1327] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1328] = { + [sym_identifier] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1994), + [aux_sym_preproc_def_token1] = ACTIONS(1994), + [aux_sym_preproc_if_token1] = ACTIONS(1992), + [aux_sym_preproc_if_token2] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_CARET] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_typedef] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym___attribute] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1992), + [anon_sym___declspec] = ACTIONS(1992), + [anon_sym___cdecl] = ACTIONS(1992), + [anon_sym___clrcall] = ACTIONS(1992), + [anon_sym___stdcall] = ACTIONS(1992), + [anon_sym___fastcall] = ACTIONS(1992), + [anon_sym___thiscall] = ACTIONS(1992), + [anon_sym___vectorcall] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_auto] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_inline] = ACTIONS(1992), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1992), + [anon_sym_restrict] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1992), + [anon_sym_in] = ACTIONS(1992), + [anon_sym_out] = ACTIONS(1992), + [anon_sym_inout] = ACTIONS(1992), + [anon_sym_bycopy] = ACTIONS(1992), + [anon_sym_byref] = ACTIONS(1992), + [anon_sym_oneway] = ACTIONS(1992), + [anon_sym__Nullable] = ACTIONS(1992), + [anon_sym__Nonnull] = ACTIONS(1992), + [anon_sym__Nullable_result] = ACTIONS(1992), + [anon_sym__Null_unspecified] = ACTIONS(1992), + [anon_sym___autoreleasing] = ACTIONS(1992), + [anon_sym___nullable] = ACTIONS(1992), + [anon_sym___nonnull] = ACTIONS(1992), + [anon_sym___strong] = ACTIONS(1992), + [anon_sym___weak] = ACTIONS(1992), + [anon_sym___bridge] = ACTIONS(1992), + [anon_sym___bridge_transfer] = ACTIONS(1992), + [anon_sym___bridge_retained] = ACTIONS(1992), + [anon_sym___unsafe_unretained] = ACTIONS(1992), + [anon_sym___block] = ACTIONS(1992), + [anon_sym___kindof] = ACTIONS(1992), + [anon_sym___unused] = ACTIONS(1992), + [anon_sym__Complex] = ACTIONS(1992), + [anon_sym___complex] = ACTIONS(1992), + [anon_sym_IBOutlet] = ACTIONS(1992), + [anon_sym_IBInspectable] = ACTIONS(1992), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1992), + [anon_sym_signed] = ACTIONS(1992), + [anon_sym_unsigned] = ACTIONS(1992), + [anon_sym_long] = ACTIONS(1992), + [anon_sym_short] = ACTIONS(1992), + [sym_primitive_type] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_switch] = ACTIONS(1992), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1992), + [sym_number_literal] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1994), + [anon_sym_u_SQUOTE] = ACTIONS(1994), + [anon_sym_U_SQUOTE] = ACTIONS(1994), + [anon_sym_u8_SQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_L_DQUOTE] = ACTIONS(1994), + [anon_sym_u_DQUOTE] = ACTIONS(1994), + [anon_sym_U_DQUOTE] = ACTIONS(1994), + [anon_sym_u8_DQUOTE] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym_true] = ACTIONS(1992), + [sym_false] = ACTIONS(1992), + [sym_null] = ACTIONS(1992), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1994), + [anon_sym_ATimport] = ACTIONS(1994), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1992), + [anon_sym_ATcompatibility_alias] = ACTIONS(1994), + [anon_sym_ATprotocol] = ACTIONS(1994), + [anon_sym_ATclass] = ACTIONS(1994), + [anon_sym_ATinterface] = ACTIONS(1994), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1992), + [sym_method_attribute_specifier] = ACTIONS(1992), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1992), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE] = ACTIONS(1992), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_API_AVAILABLE] = ACTIONS(1992), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_API_DEPRECATED] = ACTIONS(1992), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1992), + [anon_sym___deprecated_msg] = ACTIONS(1992), + [anon_sym___deprecated_enum_msg] = ACTIONS(1992), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1992), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1992), + [anon_sym_ATimplementation] = ACTIONS(1994), + [anon_sym_NS_ENUM] = ACTIONS(1992), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1992), + [anon_sym_NS_OPTIONS] = ACTIONS(1992), + [anon_sym_typeof] = ACTIONS(1992), + [anon_sym___typeof] = ACTIONS(1992), + [anon_sym___typeof__] = ACTIONS(1992), + [sym_self] = ACTIONS(1992), + [sym_super] = ACTIONS(1992), + [sym_nil] = ACTIONS(1992), + [sym_id] = ACTIONS(1992), + [sym_instancetype] = ACTIONS(1992), + [sym_Class] = ACTIONS(1992), + [sym_SEL] = ACTIONS(1992), + [sym_IMP] = ACTIONS(1992), + [sym_BOOL] = ACTIONS(1992), + [sym_auto] = ACTIONS(1992), + [anon_sym_ATautoreleasepool] = ACTIONS(1994), + [anon_sym_ATsynchronized] = ACTIONS(1994), + [anon_sym_ATtry] = ACTIONS(1994), + [anon_sym_ATthrow] = ACTIONS(1994), + [anon_sym_ATselector] = ACTIONS(1994), + [anon_sym_ATencode] = ACTIONS(1994), + [anon_sym_AT] = ACTIONS(1992), + [sym_YES] = ACTIONS(1992), + [sym_NO] = ACTIONS(1992), + [anon_sym___builtin_available] = ACTIONS(1992), + [anon_sym_ATavailable] = ACTIONS(1994), + [anon_sym_va_arg] = ACTIONS(1992), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1329] = { + [sym_identifier] = ACTIONS(1944), + [aux_sym_preproc_include_token1] = ACTIONS(1946), + [aux_sym_preproc_def_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token2] = ACTIONS(1944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1944), + [anon_sym_LPAREN2] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_TILDE] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1944), + [anon_sym_PLUS] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(1946), + [anon_sym_CARET] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_typedef] = ACTIONS(1944), + [anon_sym_extern] = ACTIONS(1944), + [anon_sym___attribute] = ACTIONS(1944), + [anon_sym___attribute__] = ACTIONS(1944), + [anon_sym___declspec] = ACTIONS(1944), + [anon_sym___cdecl] = ACTIONS(1944), + [anon_sym___clrcall] = ACTIONS(1944), + [anon_sym___stdcall] = ACTIONS(1944), + [anon_sym___fastcall] = ACTIONS(1944), + [anon_sym___thiscall] = ACTIONS(1944), + [anon_sym___vectorcall] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1944), + [anon_sym_auto] = ACTIONS(1944), + [anon_sym_register] = ACTIONS(1944), + [anon_sym_inline] = ACTIONS(1944), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1944), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_volatile] = ACTIONS(1944), + [anon_sym_restrict] = ACTIONS(1944), + [anon_sym__Atomic] = ACTIONS(1944), + [anon_sym_in] = ACTIONS(1944), + [anon_sym_out] = ACTIONS(1944), + [anon_sym_inout] = ACTIONS(1944), + [anon_sym_bycopy] = ACTIONS(1944), + [anon_sym_byref] = ACTIONS(1944), + [anon_sym_oneway] = ACTIONS(1944), + [anon_sym__Nullable] = ACTIONS(1944), + [anon_sym__Nonnull] = ACTIONS(1944), + [anon_sym__Nullable_result] = ACTIONS(1944), + [anon_sym__Null_unspecified] = ACTIONS(1944), + [anon_sym___autoreleasing] = ACTIONS(1944), + [anon_sym___nullable] = ACTIONS(1944), + [anon_sym___nonnull] = ACTIONS(1944), + [anon_sym___strong] = ACTIONS(1944), + [anon_sym___weak] = ACTIONS(1944), + [anon_sym___bridge] = ACTIONS(1944), + [anon_sym___bridge_transfer] = ACTIONS(1944), + [anon_sym___bridge_retained] = ACTIONS(1944), + [anon_sym___unsafe_unretained] = ACTIONS(1944), + [anon_sym___block] = ACTIONS(1944), + [anon_sym___kindof] = ACTIONS(1944), + [anon_sym___unused] = ACTIONS(1944), + [anon_sym__Complex] = ACTIONS(1944), + [anon_sym___complex] = ACTIONS(1944), + [anon_sym_IBOutlet] = ACTIONS(1944), + [anon_sym_IBInspectable] = ACTIONS(1944), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1944), + [anon_sym_signed] = ACTIONS(1944), + [anon_sym_unsigned] = ACTIONS(1944), + [anon_sym_long] = ACTIONS(1944), + [anon_sym_short] = ACTIONS(1944), + [sym_primitive_type] = ACTIONS(1944), + [anon_sym_enum] = ACTIONS(1944), + [anon_sym_struct] = ACTIONS(1944), + [anon_sym_union] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_switch] = ACTIONS(1944), + [anon_sym_case] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_goto] = ACTIONS(1944), + [anon_sym_DASH_DASH] = ACTIONS(1946), + [anon_sym_PLUS_PLUS] = ACTIONS(1946), + [anon_sym_sizeof] = ACTIONS(1944), + [sym_number_literal] = ACTIONS(1946), + [anon_sym_L_SQUOTE] = ACTIONS(1946), + [anon_sym_u_SQUOTE] = ACTIONS(1946), + [anon_sym_U_SQUOTE] = ACTIONS(1946), + [anon_sym_u8_SQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1946), + [anon_sym_L_DQUOTE] = ACTIONS(1946), + [anon_sym_u_DQUOTE] = ACTIONS(1946), + [anon_sym_U_DQUOTE] = ACTIONS(1946), + [anon_sym_u8_DQUOTE] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1946), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [sym_null] = ACTIONS(1944), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1946), + [anon_sym_ATimport] = ACTIONS(1946), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1944), + [anon_sym_ATcompatibility_alias] = ACTIONS(1946), + [anon_sym_ATprotocol] = ACTIONS(1946), + [anon_sym_ATclass] = ACTIONS(1946), + [anon_sym_ATinterface] = ACTIONS(1946), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1944), + [sym_method_attribute_specifier] = ACTIONS(1944), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1944), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1944), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1944), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1944), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1944), + [anon_sym_NS_AVAILABLE] = ACTIONS(1944), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1944), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_API_AVAILABLE] = ACTIONS(1944), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_API_DEPRECATED] = ACTIONS(1944), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1944), + [anon_sym___deprecated_msg] = ACTIONS(1944), + [anon_sym___deprecated_enum_msg] = ACTIONS(1944), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1944), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1944), + [anon_sym_ATimplementation] = ACTIONS(1946), + [anon_sym_NS_ENUM] = ACTIONS(1944), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1944), + [anon_sym_NS_OPTIONS] = ACTIONS(1944), + [anon_sym_typeof] = ACTIONS(1944), + [anon_sym___typeof] = ACTIONS(1944), + [anon_sym___typeof__] = ACTIONS(1944), + [sym_self] = ACTIONS(1944), + [sym_super] = ACTIONS(1944), + [sym_nil] = ACTIONS(1944), + [sym_id] = ACTIONS(1944), + [sym_instancetype] = ACTIONS(1944), + [sym_Class] = ACTIONS(1944), + [sym_SEL] = ACTIONS(1944), + [sym_IMP] = ACTIONS(1944), + [sym_BOOL] = ACTIONS(1944), + [sym_auto] = ACTIONS(1944), + [anon_sym_ATautoreleasepool] = ACTIONS(1946), + [anon_sym_ATsynchronized] = ACTIONS(1946), + [anon_sym_ATtry] = ACTIONS(1946), + [anon_sym_ATthrow] = ACTIONS(1946), + [anon_sym_ATselector] = ACTIONS(1946), + [anon_sym_ATencode] = ACTIONS(1946), + [anon_sym_AT] = ACTIONS(1944), + [sym_YES] = ACTIONS(1944), + [sym_NO] = ACTIONS(1944), + [anon_sym___builtin_available] = ACTIONS(1944), + [anon_sym_ATavailable] = ACTIONS(1946), + [anon_sym_va_arg] = ACTIONS(1944), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1330] = { + [sym_identifier] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1994), + [aux_sym_preproc_def_token1] = ACTIONS(1994), + [aux_sym_preproc_if_token1] = ACTIONS(1992), + [aux_sym_preproc_if_token2] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_CARET] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_typedef] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym___attribute] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1992), + [anon_sym___declspec] = ACTIONS(1992), + [anon_sym___cdecl] = ACTIONS(1992), + [anon_sym___clrcall] = ACTIONS(1992), + [anon_sym___stdcall] = ACTIONS(1992), + [anon_sym___fastcall] = ACTIONS(1992), + [anon_sym___thiscall] = ACTIONS(1992), + [anon_sym___vectorcall] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_auto] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_inline] = ACTIONS(1992), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1992), + [anon_sym_restrict] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1992), + [anon_sym_in] = ACTIONS(1992), + [anon_sym_out] = ACTIONS(1992), + [anon_sym_inout] = ACTIONS(1992), + [anon_sym_bycopy] = ACTIONS(1992), + [anon_sym_byref] = ACTIONS(1992), + [anon_sym_oneway] = ACTIONS(1992), + [anon_sym__Nullable] = ACTIONS(1992), + [anon_sym__Nonnull] = ACTIONS(1992), + [anon_sym__Nullable_result] = ACTIONS(1992), + [anon_sym__Null_unspecified] = ACTIONS(1992), + [anon_sym___autoreleasing] = ACTIONS(1992), + [anon_sym___nullable] = ACTIONS(1992), + [anon_sym___nonnull] = ACTIONS(1992), + [anon_sym___strong] = ACTIONS(1992), + [anon_sym___weak] = ACTIONS(1992), + [anon_sym___bridge] = ACTIONS(1992), + [anon_sym___bridge_transfer] = ACTIONS(1992), + [anon_sym___bridge_retained] = ACTIONS(1992), + [anon_sym___unsafe_unretained] = ACTIONS(1992), + [anon_sym___block] = ACTIONS(1992), + [anon_sym___kindof] = ACTIONS(1992), + [anon_sym___unused] = ACTIONS(1992), + [anon_sym__Complex] = ACTIONS(1992), + [anon_sym___complex] = ACTIONS(1992), + [anon_sym_IBOutlet] = ACTIONS(1992), + [anon_sym_IBInspectable] = ACTIONS(1992), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1992), + [anon_sym_signed] = ACTIONS(1992), + [anon_sym_unsigned] = ACTIONS(1992), + [anon_sym_long] = ACTIONS(1992), + [anon_sym_short] = ACTIONS(1992), + [sym_primitive_type] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_switch] = ACTIONS(1992), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1992), + [sym_number_literal] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1994), + [anon_sym_u_SQUOTE] = ACTIONS(1994), + [anon_sym_U_SQUOTE] = ACTIONS(1994), + [anon_sym_u8_SQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_L_DQUOTE] = ACTIONS(1994), + [anon_sym_u_DQUOTE] = ACTIONS(1994), + [anon_sym_U_DQUOTE] = ACTIONS(1994), + [anon_sym_u8_DQUOTE] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym_true] = ACTIONS(1992), + [sym_false] = ACTIONS(1992), + [sym_null] = ACTIONS(1992), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1994), + [anon_sym_ATimport] = ACTIONS(1994), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1992), + [anon_sym_ATcompatibility_alias] = ACTIONS(1994), + [anon_sym_ATprotocol] = ACTIONS(1994), + [anon_sym_ATclass] = ACTIONS(1994), + [anon_sym_ATinterface] = ACTIONS(1994), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1992), + [sym_method_attribute_specifier] = ACTIONS(1992), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1992), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE] = ACTIONS(1992), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_API_AVAILABLE] = ACTIONS(1992), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_API_DEPRECATED] = ACTIONS(1992), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1992), + [anon_sym___deprecated_msg] = ACTIONS(1992), + [anon_sym___deprecated_enum_msg] = ACTIONS(1992), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1992), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1992), + [anon_sym_ATimplementation] = ACTIONS(1994), + [anon_sym_NS_ENUM] = ACTIONS(1992), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1992), + [anon_sym_NS_OPTIONS] = ACTIONS(1992), + [anon_sym_typeof] = ACTIONS(1992), + [anon_sym___typeof] = ACTIONS(1992), + [anon_sym___typeof__] = ACTIONS(1992), + [sym_self] = ACTIONS(1992), + [sym_super] = ACTIONS(1992), + [sym_nil] = ACTIONS(1992), + [sym_id] = ACTIONS(1992), + [sym_instancetype] = ACTIONS(1992), + [sym_Class] = ACTIONS(1992), + [sym_SEL] = ACTIONS(1992), + [sym_IMP] = ACTIONS(1992), + [sym_BOOL] = ACTIONS(1992), + [sym_auto] = ACTIONS(1992), + [anon_sym_ATautoreleasepool] = ACTIONS(1994), + [anon_sym_ATsynchronized] = ACTIONS(1994), + [anon_sym_ATtry] = ACTIONS(1994), + [anon_sym_ATthrow] = ACTIONS(1994), + [anon_sym_ATselector] = ACTIONS(1994), + [anon_sym_ATencode] = ACTIONS(1994), + [anon_sym_AT] = ACTIONS(1992), + [sym_YES] = ACTIONS(1992), + [sym_NO] = ACTIONS(1992), + [anon_sym___builtin_available] = ACTIONS(1992), + [anon_sym_ATavailable] = ACTIONS(1994), + [anon_sym_va_arg] = ACTIONS(1992), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1331] = { + [sym_identifier] = ACTIONS(1944), + [aux_sym_preproc_include_token1] = ACTIONS(1946), + [aux_sym_preproc_def_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token2] = ACTIONS(1944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1944), + [anon_sym_LPAREN2] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_TILDE] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1944), + [anon_sym_PLUS] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(1946), + [anon_sym_CARET] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_typedef] = ACTIONS(1944), + [anon_sym_extern] = ACTIONS(1944), + [anon_sym___attribute] = ACTIONS(1944), + [anon_sym___attribute__] = ACTIONS(1944), + [anon_sym___declspec] = ACTIONS(1944), + [anon_sym___cdecl] = ACTIONS(1944), + [anon_sym___clrcall] = ACTIONS(1944), + [anon_sym___stdcall] = ACTIONS(1944), + [anon_sym___fastcall] = ACTIONS(1944), + [anon_sym___thiscall] = ACTIONS(1944), + [anon_sym___vectorcall] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1944), + [anon_sym_auto] = ACTIONS(1944), + [anon_sym_register] = ACTIONS(1944), + [anon_sym_inline] = ACTIONS(1944), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1944), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_volatile] = ACTIONS(1944), + [anon_sym_restrict] = ACTIONS(1944), + [anon_sym__Atomic] = ACTIONS(1944), + [anon_sym_in] = ACTIONS(1944), + [anon_sym_out] = ACTIONS(1944), + [anon_sym_inout] = ACTIONS(1944), + [anon_sym_bycopy] = ACTIONS(1944), + [anon_sym_byref] = ACTIONS(1944), + [anon_sym_oneway] = ACTIONS(1944), + [anon_sym__Nullable] = ACTIONS(1944), + [anon_sym__Nonnull] = ACTIONS(1944), + [anon_sym__Nullable_result] = ACTIONS(1944), + [anon_sym__Null_unspecified] = ACTIONS(1944), + [anon_sym___autoreleasing] = ACTIONS(1944), + [anon_sym___nullable] = ACTIONS(1944), + [anon_sym___nonnull] = ACTIONS(1944), + [anon_sym___strong] = ACTIONS(1944), + [anon_sym___weak] = ACTIONS(1944), + [anon_sym___bridge] = ACTIONS(1944), + [anon_sym___bridge_transfer] = ACTIONS(1944), + [anon_sym___bridge_retained] = ACTIONS(1944), + [anon_sym___unsafe_unretained] = ACTIONS(1944), + [anon_sym___block] = ACTIONS(1944), + [anon_sym___kindof] = ACTIONS(1944), + [anon_sym___unused] = ACTIONS(1944), + [anon_sym__Complex] = ACTIONS(1944), + [anon_sym___complex] = ACTIONS(1944), + [anon_sym_IBOutlet] = ACTIONS(1944), + [anon_sym_IBInspectable] = ACTIONS(1944), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1944), + [anon_sym_signed] = ACTIONS(1944), + [anon_sym_unsigned] = ACTIONS(1944), + [anon_sym_long] = ACTIONS(1944), + [anon_sym_short] = ACTIONS(1944), + [sym_primitive_type] = ACTIONS(1944), + [anon_sym_enum] = ACTIONS(1944), + [anon_sym_struct] = ACTIONS(1944), + [anon_sym_union] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_switch] = ACTIONS(1944), + [anon_sym_case] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_goto] = ACTIONS(1944), + [anon_sym_DASH_DASH] = ACTIONS(1946), + [anon_sym_PLUS_PLUS] = ACTIONS(1946), + [anon_sym_sizeof] = ACTIONS(1944), + [sym_number_literal] = ACTIONS(1946), + [anon_sym_L_SQUOTE] = ACTIONS(1946), + [anon_sym_u_SQUOTE] = ACTIONS(1946), + [anon_sym_U_SQUOTE] = ACTIONS(1946), + [anon_sym_u8_SQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1946), + [anon_sym_L_DQUOTE] = ACTIONS(1946), + [anon_sym_u_DQUOTE] = ACTIONS(1946), + [anon_sym_U_DQUOTE] = ACTIONS(1946), + [anon_sym_u8_DQUOTE] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1946), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [sym_null] = ACTIONS(1944), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1946), + [anon_sym_ATimport] = ACTIONS(1946), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1944), + [anon_sym_ATcompatibility_alias] = ACTIONS(1946), + [anon_sym_ATprotocol] = ACTIONS(1946), + [anon_sym_ATclass] = ACTIONS(1946), + [anon_sym_ATinterface] = ACTIONS(1946), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1944), + [sym_method_attribute_specifier] = ACTIONS(1944), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1944), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1944), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1944), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1944), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1944), + [anon_sym_NS_AVAILABLE] = ACTIONS(1944), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1944), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_API_AVAILABLE] = ACTIONS(1944), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_API_DEPRECATED] = ACTIONS(1944), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1944), + [anon_sym___deprecated_msg] = ACTIONS(1944), + [anon_sym___deprecated_enum_msg] = ACTIONS(1944), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1944), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1944), + [anon_sym_ATimplementation] = ACTIONS(1946), + [anon_sym_NS_ENUM] = ACTIONS(1944), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1944), + [anon_sym_NS_OPTIONS] = ACTIONS(1944), + [anon_sym_typeof] = ACTIONS(1944), + [anon_sym___typeof] = ACTIONS(1944), + [anon_sym___typeof__] = ACTIONS(1944), + [sym_self] = ACTIONS(1944), + [sym_super] = ACTIONS(1944), + [sym_nil] = ACTIONS(1944), + [sym_id] = ACTIONS(1944), + [sym_instancetype] = ACTIONS(1944), + [sym_Class] = ACTIONS(1944), + [sym_SEL] = ACTIONS(1944), + [sym_IMP] = ACTIONS(1944), + [sym_BOOL] = ACTIONS(1944), + [sym_auto] = ACTIONS(1944), + [anon_sym_ATautoreleasepool] = ACTIONS(1946), + [anon_sym_ATsynchronized] = ACTIONS(1946), + [anon_sym_ATtry] = ACTIONS(1946), + [anon_sym_ATthrow] = ACTIONS(1946), + [anon_sym_ATselector] = ACTIONS(1946), + [anon_sym_ATencode] = ACTIONS(1946), + [anon_sym_AT] = ACTIONS(1944), + [sym_YES] = ACTIONS(1944), + [sym_NO] = ACTIONS(1944), + [anon_sym___builtin_available] = ACTIONS(1944), + [anon_sym_ATavailable] = ACTIONS(1946), + [anon_sym_va_arg] = ACTIONS(1944), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1332] = { + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2018), + [aux_sym_preproc_def_token1] = ACTIONS(2018), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token2] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_auto] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym_in] = ACTIONS(2016), + [anon_sym_out] = ACTIONS(2016), + [anon_sym_inout] = ACTIONS(2016), + [anon_sym_bycopy] = ACTIONS(2016), + [anon_sym_byref] = ACTIONS(2016), + [anon_sym_oneway] = ACTIONS(2016), + [anon_sym__Nullable] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym__Nullable_result] = ACTIONS(2016), + [anon_sym__Null_unspecified] = ACTIONS(2016), + [anon_sym___autoreleasing] = ACTIONS(2016), + [anon_sym___nullable] = ACTIONS(2016), + [anon_sym___nonnull] = ACTIONS(2016), + [anon_sym___strong] = ACTIONS(2016), + [anon_sym___weak] = ACTIONS(2016), + [anon_sym___bridge] = ACTIONS(2016), + [anon_sym___bridge_transfer] = ACTIONS(2016), + [anon_sym___bridge_retained] = ACTIONS(2016), + [anon_sym___unsafe_unretained] = ACTIONS(2016), + [anon_sym___block] = ACTIONS(2016), + [anon_sym___kindof] = ACTIONS(2016), + [anon_sym___unused] = ACTIONS(2016), + [anon_sym__Complex] = ACTIONS(2016), + [anon_sym___complex] = ACTIONS(2016), + [anon_sym_IBOutlet] = ACTIONS(2016), + [anon_sym_IBInspectable] = ACTIONS(2016), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2016), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [sym_null] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2018), + [anon_sym_ATimport] = ACTIONS(2018), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2016), + [anon_sym_ATcompatibility_alias] = ACTIONS(2018), + [anon_sym_ATprotocol] = ACTIONS(2018), + [anon_sym_ATclass] = ACTIONS(2018), + [anon_sym_ATinterface] = ACTIONS(2018), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2016), + [sym_method_attribute_specifier] = ACTIONS(2016), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2016), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE] = ACTIONS(2016), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_API_AVAILABLE] = ACTIONS(2016), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_API_DEPRECATED] = ACTIONS(2016), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2016), + [anon_sym___deprecated_msg] = ACTIONS(2016), + [anon_sym___deprecated_enum_msg] = ACTIONS(2016), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2016), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2016), + [anon_sym_ATimplementation] = ACTIONS(2018), + [anon_sym_NS_ENUM] = ACTIONS(2016), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2016), + [anon_sym_NS_OPTIONS] = ACTIONS(2016), + [anon_sym_typeof] = ACTIONS(2016), + [anon_sym___typeof] = ACTIONS(2016), + [anon_sym___typeof__] = ACTIONS(2016), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_nil] = ACTIONS(2016), + [sym_id] = ACTIONS(2016), + [sym_instancetype] = ACTIONS(2016), + [sym_Class] = ACTIONS(2016), + [sym_SEL] = ACTIONS(2016), + [sym_IMP] = ACTIONS(2016), + [sym_BOOL] = ACTIONS(2016), + [sym_auto] = ACTIONS(2016), + [anon_sym_ATautoreleasepool] = ACTIONS(2018), + [anon_sym_ATsynchronized] = ACTIONS(2018), + [anon_sym_ATtry] = ACTIONS(2018), + [anon_sym_ATthrow] = ACTIONS(2018), + [anon_sym_ATselector] = ACTIONS(2018), + [anon_sym_ATencode] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2016), + [sym_YES] = ACTIONS(2016), + [sym_NO] = ACTIONS(2016), + [anon_sym___builtin_available] = ACTIONS(2016), + [anon_sym_ATavailable] = ACTIONS(2018), + [anon_sym_va_arg] = ACTIONS(2016), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1333] = { + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2018), + [aux_sym_preproc_def_token1] = ACTIONS(2018), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token2] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_auto] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym_in] = ACTIONS(2016), + [anon_sym_out] = ACTIONS(2016), + [anon_sym_inout] = ACTIONS(2016), + [anon_sym_bycopy] = ACTIONS(2016), + [anon_sym_byref] = ACTIONS(2016), + [anon_sym_oneway] = ACTIONS(2016), + [anon_sym__Nullable] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym__Nullable_result] = ACTIONS(2016), + [anon_sym__Null_unspecified] = ACTIONS(2016), + [anon_sym___autoreleasing] = ACTIONS(2016), + [anon_sym___nullable] = ACTIONS(2016), + [anon_sym___nonnull] = ACTIONS(2016), + [anon_sym___strong] = ACTIONS(2016), + [anon_sym___weak] = ACTIONS(2016), + [anon_sym___bridge] = ACTIONS(2016), + [anon_sym___bridge_transfer] = ACTIONS(2016), + [anon_sym___bridge_retained] = ACTIONS(2016), + [anon_sym___unsafe_unretained] = ACTIONS(2016), + [anon_sym___block] = ACTIONS(2016), + [anon_sym___kindof] = ACTIONS(2016), + [anon_sym___unused] = ACTIONS(2016), + [anon_sym__Complex] = ACTIONS(2016), + [anon_sym___complex] = ACTIONS(2016), + [anon_sym_IBOutlet] = ACTIONS(2016), + [anon_sym_IBInspectable] = ACTIONS(2016), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2016), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [sym_null] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2018), + [anon_sym_ATimport] = ACTIONS(2018), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2016), + [anon_sym_ATcompatibility_alias] = ACTIONS(2018), + [anon_sym_ATprotocol] = ACTIONS(2018), + [anon_sym_ATclass] = ACTIONS(2018), + [anon_sym_ATinterface] = ACTIONS(2018), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2016), + [sym_method_attribute_specifier] = ACTIONS(2016), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2016), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE] = ACTIONS(2016), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_API_AVAILABLE] = ACTIONS(2016), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_API_DEPRECATED] = ACTIONS(2016), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2016), + [anon_sym___deprecated_msg] = ACTIONS(2016), + [anon_sym___deprecated_enum_msg] = ACTIONS(2016), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2016), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2016), + [anon_sym_ATimplementation] = ACTIONS(2018), + [anon_sym_NS_ENUM] = ACTIONS(2016), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2016), + [anon_sym_NS_OPTIONS] = ACTIONS(2016), + [anon_sym_typeof] = ACTIONS(2016), + [anon_sym___typeof] = ACTIONS(2016), + [anon_sym___typeof__] = ACTIONS(2016), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_nil] = ACTIONS(2016), + [sym_id] = ACTIONS(2016), + [sym_instancetype] = ACTIONS(2016), + [sym_Class] = ACTIONS(2016), + [sym_SEL] = ACTIONS(2016), + [sym_IMP] = ACTIONS(2016), + [sym_BOOL] = ACTIONS(2016), + [sym_auto] = ACTIONS(2016), + [anon_sym_ATautoreleasepool] = ACTIONS(2018), + [anon_sym_ATsynchronized] = ACTIONS(2018), + [anon_sym_ATtry] = ACTIONS(2018), + [anon_sym_ATthrow] = ACTIONS(2018), + [anon_sym_ATselector] = ACTIONS(2018), + [anon_sym_ATencode] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2016), + [sym_YES] = ACTIONS(2016), + [sym_NO] = ACTIONS(2016), + [anon_sym___builtin_available] = ACTIONS(2016), + [anon_sym_ATavailable] = ACTIONS(2018), + [anon_sym_va_arg] = ACTIONS(2016), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1334] = { + [sym_identifier] = ACTIONS(1944), + [aux_sym_preproc_include_token1] = ACTIONS(1946), + [aux_sym_preproc_def_token1] = ACTIONS(1946), + [aux_sym_preproc_if_token1] = ACTIONS(1944), + [aux_sym_preproc_if_token2] = ACTIONS(1944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1944), + [anon_sym_LPAREN2] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_TILDE] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1944), + [anon_sym_PLUS] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(1946), + [anon_sym_CARET] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_typedef] = ACTIONS(1944), + [anon_sym_extern] = ACTIONS(1944), + [anon_sym___attribute] = ACTIONS(1944), + [anon_sym___attribute__] = ACTIONS(1944), + [anon_sym___declspec] = ACTIONS(1944), + [anon_sym___cdecl] = ACTIONS(1944), + [anon_sym___clrcall] = ACTIONS(1944), + [anon_sym___stdcall] = ACTIONS(1944), + [anon_sym___fastcall] = ACTIONS(1944), + [anon_sym___thiscall] = ACTIONS(1944), + [anon_sym___vectorcall] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1944), + [anon_sym_auto] = ACTIONS(1944), + [anon_sym_register] = ACTIONS(1944), + [anon_sym_inline] = ACTIONS(1944), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1944), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_volatile] = ACTIONS(1944), + [anon_sym_restrict] = ACTIONS(1944), + [anon_sym__Atomic] = ACTIONS(1944), + [anon_sym_in] = ACTIONS(1944), + [anon_sym_out] = ACTIONS(1944), + [anon_sym_inout] = ACTIONS(1944), + [anon_sym_bycopy] = ACTIONS(1944), + [anon_sym_byref] = ACTIONS(1944), + [anon_sym_oneway] = ACTIONS(1944), + [anon_sym__Nullable] = ACTIONS(1944), + [anon_sym__Nonnull] = ACTIONS(1944), + [anon_sym__Nullable_result] = ACTIONS(1944), + [anon_sym__Null_unspecified] = ACTIONS(1944), + [anon_sym___autoreleasing] = ACTIONS(1944), + [anon_sym___nullable] = ACTIONS(1944), + [anon_sym___nonnull] = ACTIONS(1944), + [anon_sym___strong] = ACTIONS(1944), + [anon_sym___weak] = ACTIONS(1944), + [anon_sym___bridge] = ACTIONS(1944), + [anon_sym___bridge_transfer] = ACTIONS(1944), + [anon_sym___bridge_retained] = ACTIONS(1944), + [anon_sym___unsafe_unretained] = ACTIONS(1944), + [anon_sym___block] = ACTIONS(1944), + [anon_sym___kindof] = ACTIONS(1944), + [anon_sym___unused] = ACTIONS(1944), + [anon_sym__Complex] = ACTIONS(1944), + [anon_sym___complex] = ACTIONS(1944), + [anon_sym_IBOutlet] = ACTIONS(1944), + [anon_sym_IBInspectable] = ACTIONS(1944), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1944), + [anon_sym_signed] = ACTIONS(1944), + [anon_sym_unsigned] = ACTIONS(1944), + [anon_sym_long] = ACTIONS(1944), + [anon_sym_short] = ACTIONS(1944), + [sym_primitive_type] = ACTIONS(1944), + [anon_sym_enum] = ACTIONS(1944), + [anon_sym_struct] = ACTIONS(1944), + [anon_sym_union] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_switch] = ACTIONS(1944), + [anon_sym_case] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [anon_sym_do] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_goto] = ACTIONS(1944), + [anon_sym_DASH_DASH] = ACTIONS(1946), + [anon_sym_PLUS_PLUS] = ACTIONS(1946), + [anon_sym_sizeof] = ACTIONS(1944), + [sym_number_literal] = ACTIONS(1946), + [anon_sym_L_SQUOTE] = ACTIONS(1946), + [anon_sym_u_SQUOTE] = ACTIONS(1946), + [anon_sym_U_SQUOTE] = ACTIONS(1946), + [anon_sym_u8_SQUOTE] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1946), + [anon_sym_L_DQUOTE] = ACTIONS(1946), + [anon_sym_u_DQUOTE] = ACTIONS(1946), + [anon_sym_U_DQUOTE] = ACTIONS(1946), + [anon_sym_u8_DQUOTE] = ACTIONS(1946), + [anon_sym_DQUOTE] = ACTIONS(1946), + [sym_true] = ACTIONS(1944), + [sym_false] = ACTIONS(1944), + [sym_null] = ACTIONS(1944), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1946), + [anon_sym_ATimport] = ACTIONS(1946), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1944), + [anon_sym_ATcompatibility_alias] = ACTIONS(1946), + [anon_sym_ATprotocol] = ACTIONS(1946), + [anon_sym_ATclass] = ACTIONS(1946), + [anon_sym_ATinterface] = ACTIONS(1946), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1944), + [sym_method_attribute_specifier] = ACTIONS(1944), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1944), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1944), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1944), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1944), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1944), + [anon_sym_NS_AVAILABLE] = ACTIONS(1944), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1944), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_API_AVAILABLE] = ACTIONS(1944), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_API_DEPRECATED] = ACTIONS(1944), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1944), + [anon_sym___deprecated_msg] = ACTIONS(1944), + [anon_sym___deprecated_enum_msg] = ACTIONS(1944), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1944), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1944), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1944), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1944), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1944), + [anon_sym_ATimplementation] = ACTIONS(1946), + [anon_sym_NS_ENUM] = ACTIONS(1944), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1944), + [anon_sym_NS_OPTIONS] = ACTIONS(1944), + [anon_sym_typeof] = ACTIONS(1944), + [anon_sym___typeof] = ACTIONS(1944), + [anon_sym___typeof__] = ACTIONS(1944), + [sym_self] = ACTIONS(1944), + [sym_super] = ACTIONS(1944), + [sym_nil] = ACTIONS(1944), + [sym_id] = ACTIONS(1944), + [sym_instancetype] = ACTIONS(1944), + [sym_Class] = ACTIONS(1944), + [sym_SEL] = ACTIONS(1944), + [sym_IMP] = ACTIONS(1944), + [sym_BOOL] = ACTIONS(1944), + [sym_auto] = ACTIONS(1944), + [anon_sym_ATautoreleasepool] = ACTIONS(1946), + [anon_sym_ATsynchronized] = ACTIONS(1946), + [anon_sym_ATtry] = ACTIONS(1946), + [anon_sym_ATthrow] = ACTIONS(1946), + [anon_sym_ATselector] = ACTIONS(1946), + [anon_sym_ATencode] = ACTIONS(1946), + [anon_sym_AT] = ACTIONS(1944), + [sym_YES] = ACTIONS(1944), + [sym_NO] = ACTIONS(1944), + [anon_sym___builtin_available] = ACTIONS(1944), + [anon_sym_ATavailable] = ACTIONS(1946), + [anon_sym_va_arg] = ACTIONS(1944), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1335] = { + [sym_identifier] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1994), + [aux_sym_preproc_def_token1] = ACTIONS(1994), + [aux_sym_preproc_if_token1] = ACTIONS(1992), + [aux_sym_preproc_if_token2] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_CARET] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_typedef] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym___attribute] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1992), + [anon_sym___declspec] = ACTIONS(1992), + [anon_sym___cdecl] = ACTIONS(1992), + [anon_sym___clrcall] = ACTIONS(1992), + [anon_sym___stdcall] = ACTIONS(1992), + [anon_sym___fastcall] = ACTIONS(1992), + [anon_sym___thiscall] = ACTIONS(1992), + [anon_sym___vectorcall] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_auto] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_inline] = ACTIONS(1992), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1992), + [anon_sym_restrict] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1992), + [anon_sym_in] = ACTIONS(1992), + [anon_sym_out] = ACTIONS(1992), + [anon_sym_inout] = ACTIONS(1992), + [anon_sym_bycopy] = ACTIONS(1992), + [anon_sym_byref] = ACTIONS(1992), + [anon_sym_oneway] = ACTIONS(1992), + [anon_sym__Nullable] = ACTIONS(1992), + [anon_sym__Nonnull] = ACTIONS(1992), + [anon_sym__Nullable_result] = ACTIONS(1992), + [anon_sym__Null_unspecified] = ACTIONS(1992), + [anon_sym___autoreleasing] = ACTIONS(1992), + [anon_sym___nullable] = ACTIONS(1992), + [anon_sym___nonnull] = ACTIONS(1992), + [anon_sym___strong] = ACTIONS(1992), + [anon_sym___weak] = ACTIONS(1992), + [anon_sym___bridge] = ACTIONS(1992), + [anon_sym___bridge_transfer] = ACTIONS(1992), + [anon_sym___bridge_retained] = ACTIONS(1992), + [anon_sym___unsafe_unretained] = ACTIONS(1992), + [anon_sym___block] = ACTIONS(1992), + [anon_sym___kindof] = ACTIONS(1992), + [anon_sym___unused] = ACTIONS(1992), + [anon_sym__Complex] = ACTIONS(1992), + [anon_sym___complex] = ACTIONS(1992), + [anon_sym_IBOutlet] = ACTIONS(1992), + [anon_sym_IBInspectable] = ACTIONS(1992), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1992), + [anon_sym_signed] = ACTIONS(1992), + [anon_sym_unsigned] = ACTIONS(1992), + [anon_sym_long] = ACTIONS(1992), + [anon_sym_short] = ACTIONS(1992), + [sym_primitive_type] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_switch] = ACTIONS(1992), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1992), + [sym_number_literal] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1994), + [anon_sym_u_SQUOTE] = ACTIONS(1994), + [anon_sym_U_SQUOTE] = ACTIONS(1994), + [anon_sym_u8_SQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_L_DQUOTE] = ACTIONS(1994), + [anon_sym_u_DQUOTE] = ACTIONS(1994), + [anon_sym_U_DQUOTE] = ACTIONS(1994), + [anon_sym_u8_DQUOTE] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym_true] = ACTIONS(1992), + [sym_false] = ACTIONS(1992), + [sym_null] = ACTIONS(1992), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1994), + [anon_sym_ATimport] = ACTIONS(1994), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1992), + [anon_sym_ATcompatibility_alias] = ACTIONS(1994), + [anon_sym_ATprotocol] = ACTIONS(1994), + [anon_sym_ATclass] = ACTIONS(1994), + [anon_sym_ATinterface] = ACTIONS(1994), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1992), + [sym_method_attribute_specifier] = ACTIONS(1992), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1992), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE] = ACTIONS(1992), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_API_AVAILABLE] = ACTIONS(1992), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_API_DEPRECATED] = ACTIONS(1992), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1992), + [anon_sym___deprecated_msg] = ACTIONS(1992), + [anon_sym___deprecated_enum_msg] = ACTIONS(1992), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1992), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1992), + [anon_sym_ATimplementation] = ACTIONS(1994), + [anon_sym_NS_ENUM] = ACTIONS(1992), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1992), + [anon_sym_NS_OPTIONS] = ACTIONS(1992), + [anon_sym_typeof] = ACTIONS(1992), + [anon_sym___typeof] = ACTIONS(1992), + [anon_sym___typeof__] = ACTIONS(1992), + [sym_self] = ACTIONS(1992), + [sym_super] = ACTIONS(1992), + [sym_nil] = ACTIONS(1992), + [sym_id] = ACTIONS(1992), + [sym_instancetype] = ACTIONS(1992), + [sym_Class] = ACTIONS(1992), + [sym_SEL] = ACTIONS(1992), + [sym_IMP] = ACTIONS(1992), + [sym_BOOL] = ACTIONS(1992), + [sym_auto] = ACTIONS(1992), + [anon_sym_ATautoreleasepool] = ACTIONS(1994), + [anon_sym_ATsynchronized] = ACTIONS(1994), + [anon_sym_ATtry] = ACTIONS(1994), + [anon_sym_ATthrow] = ACTIONS(1994), + [anon_sym_ATselector] = ACTIONS(1994), + [anon_sym_ATencode] = ACTIONS(1994), + [anon_sym_AT] = ACTIONS(1992), + [sym_YES] = ACTIONS(1992), + [sym_NO] = ACTIONS(1992), + [anon_sym___builtin_available] = ACTIONS(1992), + [anon_sym_ATavailable] = ACTIONS(1994), + [anon_sym_va_arg] = ACTIONS(1992), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1336] = { + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2018), + [aux_sym_preproc_def_token1] = ACTIONS(2018), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token2] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_auto] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym_in] = ACTIONS(2016), + [anon_sym_out] = ACTIONS(2016), + [anon_sym_inout] = ACTIONS(2016), + [anon_sym_bycopy] = ACTIONS(2016), + [anon_sym_byref] = ACTIONS(2016), + [anon_sym_oneway] = ACTIONS(2016), + [anon_sym__Nullable] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym__Nullable_result] = ACTIONS(2016), + [anon_sym__Null_unspecified] = ACTIONS(2016), + [anon_sym___autoreleasing] = ACTIONS(2016), + [anon_sym___nullable] = ACTIONS(2016), + [anon_sym___nonnull] = ACTIONS(2016), + [anon_sym___strong] = ACTIONS(2016), + [anon_sym___weak] = ACTIONS(2016), + [anon_sym___bridge] = ACTIONS(2016), + [anon_sym___bridge_transfer] = ACTIONS(2016), + [anon_sym___bridge_retained] = ACTIONS(2016), + [anon_sym___unsafe_unretained] = ACTIONS(2016), + [anon_sym___block] = ACTIONS(2016), + [anon_sym___kindof] = ACTIONS(2016), + [anon_sym___unused] = ACTIONS(2016), + [anon_sym__Complex] = ACTIONS(2016), + [anon_sym___complex] = ACTIONS(2016), + [anon_sym_IBOutlet] = ACTIONS(2016), + [anon_sym_IBInspectable] = ACTIONS(2016), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2016), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [sym_null] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2018), + [anon_sym_ATimport] = ACTIONS(2018), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2016), + [anon_sym_ATcompatibility_alias] = ACTIONS(2018), + [anon_sym_ATprotocol] = ACTIONS(2018), + [anon_sym_ATclass] = ACTIONS(2018), + [anon_sym_ATinterface] = ACTIONS(2018), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2016), + [sym_method_attribute_specifier] = ACTIONS(2016), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2016), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE] = ACTIONS(2016), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_API_AVAILABLE] = ACTIONS(2016), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_API_DEPRECATED] = ACTIONS(2016), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2016), + [anon_sym___deprecated_msg] = ACTIONS(2016), + [anon_sym___deprecated_enum_msg] = ACTIONS(2016), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2016), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2016), + [anon_sym_ATimplementation] = ACTIONS(2018), + [anon_sym_NS_ENUM] = ACTIONS(2016), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2016), + [anon_sym_NS_OPTIONS] = ACTIONS(2016), + [anon_sym_typeof] = ACTIONS(2016), + [anon_sym___typeof] = ACTIONS(2016), + [anon_sym___typeof__] = ACTIONS(2016), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_nil] = ACTIONS(2016), + [sym_id] = ACTIONS(2016), + [sym_instancetype] = ACTIONS(2016), + [sym_Class] = ACTIONS(2016), + [sym_SEL] = ACTIONS(2016), + [sym_IMP] = ACTIONS(2016), + [sym_BOOL] = ACTIONS(2016), + [sym_auto] = ACTIONS(2016), + [anon_sym_ATautoreleasepool] = ACTIONS(2018), + [anon_sym_ATsynchronized] = ACTIONS(2018), + [anon_sym_ATtry] = ACTIONS(2018), + [anon_sym_ATthrow] = ACTIONS(2018), + [anon_sym_ATselector] = ACTIONS(2018), + [anon_sym_ATencode] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2016), + [sym_YES] = ACTIONS(2016), + [sym_NO] = ACTIONS(2016), + [anon_sym___builtin_available] = ACTIONS(2016), + [anon_sym_ATavailable] = ACTIONS(2018), + [anon_sym_va_arg] = ACTIONS(2016), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1337] = { + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2018), + [aux_sym_preproc_def_token1] = ACTIONS(2018), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token2] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_auto] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym_in] = ACTIONS(2016), + [anon_sym_out] = ACTIONS(2016), + [anon_sym_inout] = ACTIONS(2016), + [anon_sym_bycopy] = ACTIONS(2016), + [anon_sym_byref] = ACTIONS(2016), + [anon_sym_oneway] = ACTIONS(2016), + [anon_sym__Nullable] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym__Nullable_result] = ACTIONS(2016), + [anon_sym__Null_unspecified] = ACTIONS(2016), + [anon_sym___autoreleasing] = ACTIONS(2016), + [anon_sym___nullable] = ACTIONS(2016), + [anon_sym___nonnull] = ACTIONS(2016), + [anon_sym___strong] = ACTIONS(2016), + [anon_sym___weak] = ACTIONS(2016), + [anon_sym___bridge] = ACTIONS(2016), + [anon_sym___bridge_transfer] = ACTIONS(2016), + [anon_sym___bridge_retained] = ACTIONS(2016), + [anon_sym___unsafe_unretained] = ACTIONS(2016), + [anon_sym___block] = ACTIONS(2016), + [anon_sym___kindof] = ACTIONS(2016), + [anon_sym___unused] = ACTIONS(2016), + [anon_sym__Complex] = ACTIONS(2016), + [anon_sym___complex] = ACTIONS(2016), + [anon_sym_IBOutlet] = ACTIONS(2016), + [anon_sym_IBInspectable] = ACTIONS(2016), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2016), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [sym_null] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2018), + [anon_sym_ATimport] = ACTIONS(2018), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2016), + [anon_sym_ATcompatibility_alias] = ACTIONS(2018), + [anon_sym_ATprotocol] = ACTIONS(2018), + [anon_sym_ATclass] = ACTIONS(2018), + [anon_sym_ATinterface] = ACTIONS(2018), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2016), + [sym_method_attribute_specifier] = ACTIONS(2016), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2016), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE] = ACTIONS(2016), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_API_AVAILABLE] = ACTIONS(2016), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_API_DEPRECATED] = ACTIONS(2016), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2016), + [anon_sym___deprecated_msg] = ACTIONS(2016), + [anon_sym___deprecated_enum_msg] = ACTIONS(2016), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2016), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2016), + [anon_sym_ATimplementation] = ACTIONS(2018), + [anon_sym_NS_ENUM] = ACTIONS(2016), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2016), + [anon_sym_NS_OPTIONS] = ACTIONS(2016), + [anon_sym_typeof] = ACTIONS(2016), + [anon_sym___typeof] = ACTIONS(2016), + [anon_sym___typeof__] = ACTIONS(2016), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_nil] = ACTIONS(2016), + [sym_id] = ACTIONS(2016), + [sym_instancetype] = ACTIONS(2016), + [sym_Class] = ACTIONS(2016), + [sym_SEL] = ACTIONS(2016), + [sym_IMP] = ACTIONS(2016), + [sym_BOOL] = ACTIONS(2016), + [sym_auto] = ACTIONS(2016), + [anon_sym_ATautoreleasepool] = ACTIONS(2018), + [anon_sym_ATsynchronized] = ACTIONS(2018), + [anon_sym_ATtry] = ACTIONS(2018), + [anon_sym_ATthrow] = ACTIONS(2018), + [anon_sym_ATselector] = ACTIONS(2018), + [anon_sym_ATencode] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2016), + [sym_YES] = ACTIONS(2016), + [sym_NO] = ACTIONS(2016), + [anon_sym___builtin_available] = ACTIONS(2016), + [anon_sym_ATavailable] = ACTIONS(2018), + [anon_sym_va_arg] = ACTIONS(2016), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1338] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1339] = { + [sym_identifier] = ACTIONS(2016), + [aux_sym_preproc_include_token1] = ACTIONS(2018), + [aux_sym_preproc_def_token1] = ACTIONS(2018), + [aux_sym_preproc_if_token1] = ACTIONS(2016), + [aux_sym_preproc_if_token2] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2016), + [anon_sym_LPAREN2] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_TILDE] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_CARET] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_typedef] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym___attribute] = ACTIONS(2016), + [anon_sym___attribute__] = ACTIONS(2016), + [anon_sym___declspec] = ACTIONS(2016), + [anon_sym___cdecl] = ACTIONS(2016), + [anon_sym___clrcall] = ACTIONS(2016), + [anon_sym___stdcall] = ACTIONS(2016), + [anon_sym___fastcall] = ACTIONS(2016), + [anon_sym___thiscall] = ACTIONS(2016), + [anon_sym___vectorcall] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_auto] = ACTIONS(2016), + [anon_sym_register] = ACTIONS(2016), + [anon_sym_inline] = ACTIONS(2016), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_volatile] = ACTIONS(2016), + [anon_sym_restrict] = ACTIONS(2016), + [anon_sym__Atomic] = ACTIONS(2016), + [anon_sym_in] = ACTIONS(2016), + [anon_sym_out] = ACTIONS(2016), + [anon_sym_inout] = ACTIONS(2016), + [anon_sym_bycopy] = ACTIONS(2016), + [anon_sym_byref] = ACTIONS(2016), + [anon_sym_oneway] = ACTIONS(2016), + [anon_sym__Nullable] = ACTIONS(2016), + [anon_sym__Nonnull] = ACTIONS(2016), + [anon_sym__Nullable_result] = ACTIONS(2016), + [anon_sym__Null_unspecified] = ACTIONS(2016), + [anon_sym___autoreleasing] = ACTIONS(2016), + [anon_sym___nullable] = ACTIONS(2016), + [anon_sym___nonnull] = ACTIONS(2016), + [anon_sym___strong] = ACTIONS(2016), + [anon_sym___weak] = ACTIONS(2016), + [anon_sym___bridge] = ACTIONS(2016), + [anon_sym___bridge_transfer] = ACTIONS(2016), + [anon_sym___bridge_retained] = ACTIONS(2016), + [anon_sym___unsafe_unretained] = ACTIONS(2016), + [anon_sym___block] = ACTIONS(2016), + [anon_sym___kindof] = ACTIONS(2016), + [anon_sym___unused] = ACTIONS(2016), + [anon_sym__Complex] = ACTIONS(2016), + [anon_sym___complex] = ACTIONS(2016), + [anon_sym_IBOutlet] = ACTIONS(2016), + [anon_sym_IBInspectable] = ACTIONS(2016), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2016), + [anon_sym_signed] = ACTIONS(2016), + [anon_sym_unsigned] = ACTIONS(2016), + [anon_sym_long] = ACTIONS(2016), + [anon_sym_short] = ACTIONS(2016), + [sym_primitive_type] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_switch] = ACTIONS(2016), + [anon_sym_case] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_do] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_goto] = ACTIONS(2016), + [anon_sym_DASH_DASH] = ACTIONS(2018), + [anon_sym_PLUS_PLUS] = ACTIONS(2018), + [anon_sym_sizeof] = ACTIONS(2016), + [sym_number_literal] = ACTIONS(2018), + [anon_sym_L_SQUOTE] = ACTIONS(2018), + [anon_sym_u_SQUOTE] = ACTIONS(2018), + [anon_sym_U_SQUOTE] = ACTIONS(2018), + [anon_sym_u8_SQUOTE] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_L_DQUOTE] = ACTIONS(2018), + [anon_sym_u_DQUOTE] = ACTIONS(2018), + [anon_sym_U_DQUOTE] = ACTIONS(2018), + [anon_sym_u8_DQUOTE] = ACTIONS(2018), + [anon_sym_DQUOTE] = ACTIONS(2018), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [sym_null] = ACTIONS(2016), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2018), + [anon_sym_ATimport] = ACTIONS(2018), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2016), + [anon_sym_ATcompatibility_alias] = ACTIONS(2018), + [anon_sym_ATprotocol] = ACTIONS(2018), + [anon_sym_ATclass] = ACTIONS(2018), + [anon_sym_ATinterface] = ACTIONS(2018), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2016), + [sym_method_attribute_specifier] = ACTIONS(2016), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2016), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2016), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE] = ACTIONS(2016), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2016), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_API_AVAILABLE] = ACTIONS(2016), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_API_DEPRECATED] = ACTIONS(2016), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2016), + [anon_sym___deprecated_msg] = ACTIONS(2016), + [anon_sym___deprecated_enum_msg] = ACTIONS(2016), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2016), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2016), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2016), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2016), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2016), + [anon_sym_ATimplementation] = ACTIONS(2018), + [anon_sym_NS_ENUM] = ACTIONS(2016), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2016), + [anon_sym_NS_OPTIONS] = ACTIONS(2016), + [anon_sym_typeof] = ACTIONS(2016), + [anon_sym___typeof] = ACTIONS(2016), + [anon_sym___typeof__] = ACTIONS(2016), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_nil] = ACTIONS(2016), + [sym_id] = ACTIONS(2016), + [sym_instancetype] = ACTIONS(2016), + [sym_Class] = ACTIONS(2016), + [sym_SEL] = ACTIONS(2016), + [sym_IMP] = ACTIONS(2016), + [sym_BOOL] = ACTIONS(2016), + [sym_auto] = ACTIONS(2016), + [anon_sym_ATautoreleasepool] = ACTIONS(2018), + [anon_sym_ATsynchronized] = ACTIONS(2018), + [anon_sym_ATtry] = ACTIONS(2018), + [anon_sym_ATthrow] = ACTIONS(2018), + [anon_sym_ATselector] = ACTIONS(2018), + [anon_sym_ATencode] = ACTIONS(2018), + [anon_sym_AT] = ACTIONS(2016), + [sym_YES] = ACTIONS(2016), + [sym_NO] = ACTIONS(2016), + [anon_sym___builtin_available] = ACTIONS(2016), + [anon_sym_ATavailable] = ACTIONS(2018), + [anon_sym_va_arg] = ACTIONS(2016), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1340] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1341] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1342] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1343] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1344] = { + [sym_identifier] = ACTIONS(1892), + [aux_sym_preproc_include_token1] = ACTIONS(1894), + [aux_sym_preproc_def_token1] = ACTIONS(1894), + [aux_sym_preproc_if_token1] = ACTIONS(1892), + [aux_sym_preproc_if_token2] = ACTIONS(1892), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1892), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1892), + [anon_sym_LPAREN2] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_TILDE] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_CARET] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_typedef] = ACTIONS(1892), + [anon_sym_extern] = ACTIONS(1892), + [anon_sym___attribute] = ACTIONS(1892), + [anon_sym___attribute__] = ACTIONS(1892), + [anon_sym___declspec] = ACTIONS(1892), + [anon_sym___cdecl] = ACTIONS(1892), + [anon_sym___clrcall] = ACTIONS(1892), + [anon_sym___stdcall] = ACTIONS(1892), + [anon_sym___fastcall] = ACTIONS(1892), + [anon_sym___thiscall] = ACTIONS(1892), + [anon_sym___vectorcall] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_static] = ACTIONS(1892), + [anon_sym_auto] = ACTIONS(1892), + [anon_sym_register] = ACTIONS(1892), + [anon_sym_inline] = ACTIONS(1892), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1892), + [anon_sym_const] = ACTIONS(1892), + [anon_sym_volatile] = ACTIONS(1892), + [anon_sym_restrict] = ACTIONS(1892), + [anon_sym__Atomic] = ACTIONS(1892), + [anon_sym_in] = ACTIONS(1892), + [anon_sym_out] = ACTIONS(1892), + [anon_sym_inout] = ACTIONS(1892), + [anon_sym_bycopy] = ACTIONS(1892), + [anon_sym_byref] = ACTIONS(1892), + [anon_sym_oneway] = ACTIONS(1892), + [anon_sym__Nullable] = ACTIONS(1892), + [anon_sym__Nonnull] = ACTIONS(1892), + [anon_sym__Nullable_result] = ACTIONS(1892), + [anon_sym__Null_unspecified] = ACTIONS(1892), + [anon_sym___autoreleasing] = ACTIONS(1892), + [anon_sym___nullable] = ACTIONS(1892), + [anon_sym___nonnull] = ACTIONS(1892), + [anon_sym___strong] = ACTIONS(1892), + [anon_sym___weak] = ACTIONS(1892), + [anon_sym___bridge] = ACTIONS(1892), + [anon_sym___bridge_transfer] = ACTIONS(1892), + [anon_sym___bridge_retained] = ACTIONS(1892), + [anon_sym___unsafe_unretained] = ACTIONS(1892), + [anon_sym___block] = ACTIONS(1892), + [anon_sym___kindof] = ACTIONS(1892), + [anon_sym___unused] = ACTIONS(1892), + [anon_sym__Complex] = ACTIONS(1892), + [anon_sym___complex] = ACTIONS(1892), + [anon_sym_IBOutlet] = ACTIONS(1892), + [anon_sym_IBInspectable] = ACTIONS(1892), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1892), + [anon_sym_signed] = ACTIONS(1892), + [anon_sym_unsigned] = ACTIONS(1892), + [anon_sym_long] = ACTIONS(1892), + [anon_sym_short] = ACTIONS(1892), + [sym_primitive_type] = ACTIONS(1892), + [anon_sym_enum] = ACTIONS(1892), + [anon_sym_struct] = ACTIONS(1892), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_if] = ACTIONS(1892), + [anon_sym_switch] = ACTIONS(1892), + [anon_sym_case] = ACTIONS(1892), + [anon_sym_default] = ACTIONS(1892), + [anon_sym_while] = ACTIONS(1892), + [anon_sym_do] = ACTIONS(1892), + [anon_sym_for] = ACTIONS(1892), + [anon_sym_return] = ACTIONS(1892), + [anon_sym_break] = ACTIONS(1892), + [anon_sym_continue] = ACTIONS(1892), + [anon_sym_goto] = ACTIONS(1892), + [anon_sym_DASH_DASH] = ACTIONS(1894), + [anon_sym_PLUS_PLUS] = ACTIONS(1894), + [anon_sym_sizeof] = ACTIONS(1892), + [sym_number_literal] = ACTIONS(1894), + [anon_sym_L_SQUOTE] = ACTIONS(1894), + [anon_sym_u_SQUOTE] = ACTIONS(1894), + [anon_sym_U_SQUOTE] = ACTIONS(1894), + [anon_sym_u8_SQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_L_DQUOTE] = ACTIONS(1894), + [anon_sym_u_DQUOTE] = ACTIONS(1894), + [anon_sym_U_DQUOTE] = ACTIONS(1894), + [anon_sym_u8_DQUOTE] = ACTIONS(1894), + [anon_sym_DQUOTE] = ACTIONS(1894), + [sym_true] = ACTIONS(1892), + [sym_false] = ACTIONS(1892), + [sym_null] = ACTIONS(1892), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1894), + [anon_sym_ATimport] = ACTIONS(1894), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1892), + [anon_sym_ATcompatibility_alias] = ACTIONS(1894), + [anon_sym_ATprotocol] = ACTIONS(1894), + [anon_sym_ATclass] = ACTIONS(1894), + [anon_sym_ATinterface] = ACTIONS(1894), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1892), + [sym_method_attribute_specifier] = ACTIONS(1892), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1892), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1892), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1892), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1892), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1892), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1892), + [anon_sym_NS_AVAILABLE] = ACTIONS(1892), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1892), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1892), + [anon_sym_API_AVAILABLE] = ACTIONS(1892), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1892), + [anon_sym_API_DEPRECATED] = ACTIONS(1892), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1892), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1892), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1892), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1892), + [anon_sym___deprecated_msg] = ACTIONS(1892), + [anon_sym___deprecated_enum_msg] = ACTIONS(1892), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1892), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1892), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1892), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1892), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1892), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1892), + [anon_sym_ATimplementation] = ACTIONS(1894), + [anon_sym_NS_ENUM] = ACTIONS(1892), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1892), + [anon_sym_NS_OPTIONS] = ACTIONS(1892), + [anon_sym_typeof] = ACTIONS(1892), + [anon_sym___typeof] = ACTIONS(1892), + [anon_sym___typeof__] = ACTIONS(1892), + [sym_self] = ACTIONS(1892), + [sym_super] = ACTIONS(1892), + [sym_nil] = ACTIONS(1892), + [sym_id] = ACTIONS(1892), + [sym_instancetype] = ACTIONS(1892), + [sym_Class] = ACTIONS(1892), + [sym_SEL] = ACTIONS(1892), + [sym_IMP] = ACTIONS(1892), + [sym_BOOL] = ACTIONS(1892), + [sym_auto] = ACTIONS(1892), + [anon_sym_ATautoreleasepool] = ACTIONS(1894), + [anon_sym_ATsynchronized] = ACTIONS(1894), + [anon_sym_ATtry] = ACTIONS(1894), + [anon_sym_ATthrow] = ACTIONS(1894), + [anon_sym_ATselector] = ACTIONS(1894), + [anon_sym_ATencode] = ACTIONS(1894), + [anon_sym_AT] = ACTIONS(1892), + [sym_YES] = ACTIONS(1892), + [sym_NO] = ACTIONS(1892), + [anon_sym___builtin_available] = ACTIONS(1892), + [anon_sym_ATavailable] = ACTIONS(1894), + [anon_sym_va_arg] = ACTIONS(1892), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1345] = { + [sym_identifier] = ACTIONS(1992), + [aux_sym_preproc_include_token1] = ACTIONS(1994), + [aux_sym_preproc_def_token1] = ACTIONS(1994), + [aux_sym_preproc_if_token1] = ACTIONS(1992), + [aux_sym_preproc_if_token2] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1992), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_CARET] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_typedef] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym___attribute] = ACTIONS(1992), + [anon_sym___attribute__] = ACTIONS(1992), + [anon_sym___declspec] = ACTIONS(1992), + [anon_sym___cdecl] = ACTIONS(1992), + [anon_sym___clrcall] = ACTIONS(1992), + [anon_sym___stdcall] = ACTIONS(1992), + [anon_sym___fastcall] = ACTIONS(1992), + [anon_sym___thiscall] = ACTIONS(1992), + [anon_sym___vectorcall] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_auto] = ACTIONS(1992), + [anon_sym_register] = ACTIONS(1992), + [anon_sym_inline] = ACTIONS(1992), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_volatile] = ACTIONS(1992), + [anon_sym_restrict] = ACTIONS(1992), + [anon_sym__Atomic] = ACTIONS(1992), + [anon_sym_in] = ACTIONS(1992), + [anon_sym_out] = ACTIONS(1992), + [anon_sym_inout] = ACTIONS(1992), + [anon_sym_bycopy] = ACTIONS(1992), + [anon_sym_byref] = ACTIONS(1992), + [anon_sym_oneway] = ACTIONS(1992), + [anon_sym__Nullable] = ACTIONS(1992), + [anon_sym__Nonnull] = ACTIONS(1992), + [anon_sym__Nullable_result] = ACTIONS(1992), + [anon_sym__Null_unspecified] = ACTIONS(1992), + [anon_sym___autoreleasing] = ACTIONS(1992), + [anon_sym___nullable] = ACTIONS(1992), + [anon_sym___nonnull] = ACTIONS(1992), + [anon_sym___strong] = ACTIONS(1992), + [anon_sym___weak] = ACTIONS(1992), + [anon_sym___bridge] = ACTIONS(1992), + [anon_sym___bridge_transfer] = ACTIONS(1992), + [anon_sym___bridge_retained] = ACTIONS(1992), + [anon_sym___unsafe_unretained] = ACTIONS(1992), + [anon_sym___block] = ACTIONS(1992), + [anon_sym___kindof] = ACTIONS(1992), + [anon_sym___unused] = ACTIONS(1992), + [anon_sym__Complex] = ACTIONS(1992), + [anon_sym___complex] = ACTIONS(1992), + [anon_sym_IBOutlet] = ACTIONS(1992), + [anon_sym_IBInspectable] = ACTIONS(1992), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1992), + [anon_sym_signed] = ACTIONS(1992), + [anon_sym_unsigned] = ACTIONS(1992), + [anon_sym_long] = ACTIONS(1992), + [anon_sym_short] = ACTIONS(1992), + [sym_primitive_type] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_switch] = ACTIONS(1992), + [anon_sym_case] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_do] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_goto] = ACTIONS(1992), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_sizeof] = ACTIONS(1992), + [sym_number_literal] = ACTIONS(1994), + [anon_sym_L_SQUOTE] = ACTIONS(1994), + [anon_sym_u_SQUOTE] = ACTIONS(1994), + [anon_sym_U_SQUOTE] = ACTIONS(1994), + [anon_sym_u8_SQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_L_DQUOTE] = ACTIONS(1994), + [anon_sym_u_DQUOTE] = ACTIONS(1994), + [anon_sym_U_DQUOTE] = ACTIONS(1994), + [anon_sym_u8_DQUOTE] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [sym_true] = ACTIONS(1992), + [sym_false] = ACTIONS(1992), + [sym_null] = ACTIONS(1992), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1994), + [anon_sym_ATimport] = ACTIONS(1994), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1992), + [anon_sym_ATcompatibility_alias] = ACTIONS(1994), + [anon_sym_ATprotocol] = ACTIONS(1994), + [anon_sym_ATclass] = ACTIONS(1994), + [anon_sym_ATinterface] = ACTIONS(1994), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1992), + [sym_method_attribute_specifier] = ACTIONS(1992), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1992), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1992), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE] = ACTIONS(1992), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1992), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_API_AVAILABLE] = ACTIONS(1992), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_API_DEPRECATED] = ACTIONS(1992), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1992), + [anon_sym___deprecated_msg] = ACTIONS(1992), + [anon_sym___deprecated_enum_msg] = ACTIONS(1992), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1992), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1992), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1992), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1992), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1992), + [anon_sym_ATimplementation] = ACTIONS(1994), + [anon_sym_NS_ENUM] = ACTIONS(1992), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1992), + [anon_sym_NS_OPTIONS] = ACTIONS(1992), + [anon_sym_typeof] = ACTIONS(1992), + [anon_sym___typeof] = ACTIONS(1992), + [anon_sym___typeof__] = ACTIONS(1992), + [sym_self] = ACTIONS(1992), + [sym_super] = ACTIONS(1992), + [sym_nil] = ACTIONS(1992), + [sym_id] = ACTIONS(1992), + [sym_instancetype] = ACTIONS(1992), + [sym_Class] = ACTIONS(1992), + [sym_SEL] = ACTIONS(1992), + [sym_IMP] = ACTIONS(1992), + [sym_BOOL] = ACTIONS(1992), + [sym_auto] = ACTIONS(1992), + [anon_sym_ATautoreleasepool] = ACTIONS(1994), + [anon_sym_ATsynchronized] = ACTIONS(1994), + [anon_sym_ATtry] = ACTIONS(1994), + [anon_sym_ATthrow] = ACTIONS(1994), + [anon_sym_ATselector] = ACTIONS(1994), + [anon_sym_ATencode] = ACTIONS(1994), + [anon_sym_AT] = ACTIONS(1992), + [sym_YES] = ACTIONS(1992), + [sym_NO] = ACTIONS(1992), + [anon_sym___builtin_available] = ACTIONS(1992), + [anon_sym_ATavailable] = ACTIONS(1994), + [anon_sym_va_arg] = ACTIONS(1992), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1346] = { + [sym_identifier] = ACTIONS(2008), + [aux_sym_preproc_include_token1] = ACTIONS(2010), + [aux_sym_preproc_def_token1] = ACTIONS(2010), + [aux_sym_preproc_if_token1] = ACTIONS(2008), + [aux_sym_preproc_if_token2] = ACTIONS(2008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2008), + [anon_sym_LPAREN2] = ACTIONS(2010), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(2010), + [anon_sym_CARET] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2010), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_typedef] = ACTIONS(2008), + [anon_sym_extern] = ACTIONS(2008), + [anon_sym___attribute] = ACTIONS(2008), + [anon_sym___attribute__] = ACTIONS(2008), + [anon_sym___declspec] = ACTIONS(2008), + [anon_sym___cdecl] = ACTIONS(2008), + [anon_sym___clrcall] = ACTIONS(2008), + [anon_sym___stdcall] = ACTIONS(2008), + [anon_sym___fastcall] = ACTIONS(2008), + [anon_sym___thiscall] = ACTIONS(2008), + [anon_sym___vectorcall] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_static] = ACTIONS(2008), + [anon_sym_auto] = ACTIONS(2008), + [anon_sym_register] = ACTIONS(2008), + [anon_sym_inline] = ACTIONS(2008), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2008), + [anon_sym_const] = ACTIONS(2008), + [anon_sym_volatile] = ACTIONS(2008), + [anon_sym_restrict] = ACTIONS(2008), + [anon_sym__Atomic] = ACTIONS(2008), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_out] = ACTIONS(2008), + [anon_sym_inout] = ACTIONS(2008), + [anon_sym_bycopy] = ACTIONS(2008), + [anon_sym_byref] = ACTIONS(2008), + [anon_sym_oneway] = ACTIONS(2008), + [anon_sym__Nullable] = ACTIONS(2008), + [anon_sym__Nonnull] = ACTIONS(2008), + [anon_sym__Nullable_result] = ACTIONS(2008), + [anon_sym__Null_unspecified] = ACTIONS(2008), + [anon_sym___autoreleasing] = ACTIONS(2008), + [anon_sym___nullable] = ACTIONS(2008), + [anon_sym___nonnull] = ACTIONS(2008), + [anon_sym___strong] = ACTIONS(2008), + [anon_sym___weak] = ACTIONS(2008), + [anon_sym___bridge] = ACTIONS(2008), + [anon_sym___bridge_transfer] = ACTIONS(2008), + [anon_sym___bridge_retained] = ACTIONS(2008), + [anon_sym___unsafe_unretained] = ACTIONS(2008), + [anon_sym___block] = ACTIONS(2008), + [anon_sym___kindof] = ACTIONS(2008), + [anon_sym___unused] = ACTIONS(2008), + [anon_sym__Complex] = ACTIONS(2008), + [anon_sym___complex] = ACTIONS(2008), + [anon_sym_IBOutlet] = ACTIONS(2008), + [anon_sym_IBInspectable] = ACTIONS(2008), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2008), + [anon_sym_signed] = ACTIONS(2008), + [anon_sym_unsigned] = ACTIONS(2008), + [anon_sym_long] = ACTIONS(2008), + [anon_sym_short] = ACTIONS(2008), + [sym_primitive_type] = ACTIONS(2008), + [anon_sym_enum] = ACTIONS(2008), + [anon_sym_struct] = ACTIONS(2008), + [anon_sym_union] = ACTIONS(2008), + [anon_sym_if] = ACTIONS(2008), + [anon_sym_switch] = ACTIONS(2008), + [anon_sym_case] = ACTIONS(2008), + [anon_sym_default] = ACTIONS(2008), + [anon_sym_while] = ACTIONS(2008), + [anon_sym_do] = ACTIONS(2008), + [anon_sym_for] = ACTIONS(2008), + [anon_sym_return] = ACTIONS(2008), + [anon_sym_break] = ACTIONS(2008), + [anon_sym_continue] = ACTIONS(2008), + [anon_sym_goto] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2010), + [anon_sym_PLUS_PLUS] = ACTIONS(2010), + [anon_sym_sizeof] = ACTIONS(2008), + [sym_number_literal] = ACTIONS(2010), + [anon_sym_L_SQUOTE] = ACTIONS(2010), + [anon_sym_u_SQUOTE] = ACTIONS(2010), + [anon_sym_U_SQUOTE] = ACTIONS(2010), + [anon_sym_u8_SQUOTE] = ACTIONS(2010), + [anon_sym_SQUOTE] = ACTIONS(2010), + [anon_sym_L_DQUOTE] = ACTIONS(2010), + [anon_sym_u_DQUOTE] = ACTIONS(2010), + [anon_sym_U_DQUOTE] = ACTIONS(2010), + [anon_sym_u8_DQUOTE] = ACTIONS(2010), + [anon_sym_DQUOTE] = ACTIONS(2010), + [sym_true] = ACTIONS(2008), + [sym_false] = ACTIONS(2008), + [sym_null] = ACTIONS(2008), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2010), + [anon_sym_ATimport] = ACTIONS(2010), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2008), + [anon_sym_ATcompatibility_alias] = ACTIONS(2010), + [anon_sym_ATprotocol] = ACTIONS(2010), + [anon_sym_ATclass] = ACTIONS(2010), + [anon_sym_ATinterface] = ACTIONS(2010), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2008), + [sym_method_attribute_specifier] = ACTIONS(2008), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2008), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2008), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2008), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2008), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2008), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2008), + [anon_sym_NS_AVAILABLE] = ACTIONS(2008), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2008), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2008), + [anon_sym_API_AVAILABLE] = ACTIONS(2008), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2008), + [anon_sym_API_DEPRECATED] = ACTIONS(2008), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2008), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2008), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2008), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2008), + [anon_sym___deprecated_msg] = ACTIONS(2008), + [anon_sym___deprecated_enum_msg] = ACTIONS(2008), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2008), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2008), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2008), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2008), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2008), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2008), + [anon_sym_ATimplementation] = ACTIONS(2010), + [anon_sym_NS_ENUM] = ACTIONS(2008), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2008), + [anon_sym_NS_OPTIONS] = ACTIONS(2008), + [anon_sym_typeof] = ACTIONS(2008), + [anon_sym___typeof] = ACTIONS(2008), + [anon_sym___typeof__] = ACTIONS(2008), + [sym_self] = ACTIONS(2008), + [sym_super] = ACTIONS(2008), + [sym_nil] = ACTIONS(2008), + [sym_id] = ACTIONS(2008), + [sym_instancetype] = ACTIONS(2008), + [sym_Class] = ACTIONS(2008), + [sym_SEL] = ACTIONS(2008), + [sym_IMP] = ACTIONS(2008), + [sym_BOOL] = ACTIONS(2008), + [sym_auto] = ACTIONS(2008), + [anon_sym_ATautoreleasepool] = ACTIONS(2010), + [anon_sym_ATsynchronized] = ACTIONS(2010), + [anon_sym_ATtry] = ACTIONS(2010), + [anon_sym_ATthrow] = ACTIONS(2010), + [anon_sym_ATselector] = ACTIONS(2010), + [anon_sym_ATencode] = ACTIONS(2010), + [anon_sym_AT] = ACTIONS(2008), + [sym_YES] = ACTIONS(2008), + [sym_NO] = ACTIONS(2008), + [anon_sym___builtin_available] = ACTIONS(2008), + [anon_sym_ATavailable] = ACTIONS(2010), + [anon_sym_va_arg] = ACTIONS(2008), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1347] = { + [sym_identifier] = ACTIONS(1996), + [aux_sym_preproc_include_token1] = ACTIONS(1998), + [aux_sym_preproc_def_token1] = ACTIONS(1998), + [aux_sym_preproc_if_token1] = ACTIONS(1996), + [aux_sym_preproc_if_token2] = ACTIONS(1996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1996), + [anon_sym_LPAREN2] = ACTIONS(1998), + [anon_sym_BANG] = ACTIONS(1998), + [anon_sym_TILDE] = ACTIONS(1998), + [anon_sym_DASH] = ACTIONS(1996), + [anon_sym_PLUS] = ACTIONS(1996), + [anon_sym_STAR] = ACTIONS(1998), + [anon_sym_CARET] = ACTIONS(1998), + [anon_sym_AMP] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym_typedef] = ACTIONS(1996), + [anon_sym_extern] = ACTIONS(1996), + [anon_sym___attribute] = ACTIONS(1996), + [anon_sym___attribute__] = ACTIONS(1996), + [anon_sym___declspec] = ACTIONS(1996), + [anon_sym___cdecl] = ACTIONS(1996), + [anon_sym___clrcall] = ACTIONS(1996), + [anon_sym___stdcall] = ACTIONS(1996), + [anon_sym___fastcall] = ACTIONS(1996), + [anon_sym___thiscall] = ACTIONS(1996), + [anon_sym___vectorcall] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1998), + [anon_sym_static] = ACTIONS(1996), + [anon_sym_auto] = ACTIONS(1996), + [anon_sym_register] = ACTIONS(1996), + [anon_sym_inline] = ACTIONS(1996), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1996), + [anon_sym_const] = ACTIONS(1996), + [anon_sym_volatile] = ACTIONS(1996), + [anon_sym_restrict] = ACTIONS(1996), + [anon_sym__Atomic] = ACTIONS(1996), + [anon_sym_in] = ACTIONS(1996), + [anon_sym_out] = ACTIONS(1996), + [anon_sym_inout] = ACTIONS(1996), + [anon_sym_bycopy] = ACTIONS(1996), + [anon_sym_byref] = ACTIONS(1996), + [anon_sym_oneway] = ACTIONS(1996), + [anon_sym__Nullable] = ACTIONS(1996), + [anon_sym__Nonnull] = ACTIONS(1996), + [anon_sym__Nullable_result] = ACTIONS(1996), + [anon_sym__Null_unspecified] = ACTIONS(1996), + [anon_sym___autoreleasing] = ACTIONS(1996), + [anon_sym___nullable] = ACTIONS(1996), + [anon_sym___nonnull] = ACTIONS(1996), + [anon_sym___strong] = ACTIONS(1996), + [anon_sym___weak] = ACTIONS(1996), + [anon_sym___bridge] = ACTIONS(1996), + [anon_sym___bridge_transfer] = ACTIONS(1996), + [anon_sym___bridge_retained] = ACTIONS(1996), + [anon_sym___unsafe_unretained] = ACTIONS(1996), + [anon_sym___block] = ACTIONS(1996), + [anon_sym___kindof] = ACTIONS(1996), + [anon_sym___unused] = ACTIONS(1996), + [anon_sym__Complex] = ACTIONS(1996), + [anon_sym___complex] = ACTIONS(1996), + [anon_sym_IBOutlet] = ACTIONS(1996), + [anon_sym_IBInspectable] = ACTIONS(1996), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1996), + [anon_sym_signed] = ACTIONS(1996), + [anon_sym_unsigned] = ACTIONS(1996), + [anon_sym_long] = ACTIONS(1996), + [anon_sym_short] = ACTIONS(1996), + [sym_primitive_type] = ACTIONS(1996), + [anon_sym_enum] = ACTIONS(1996), + [anon_sym_struct] = ACTIONS(1996), + [anon_sym_union] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1996), + [anon_sym_switch] = ACTIONS(1996), + [anon_sym_case] = ACTIONS(1996), + [anon_sym_default] = ACTIONS(1996), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(1996), + [anon_sym_for] = ACTIONS(1996), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_break] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(1996), + [anon_sym_goto] = ACTIONS(1996), + [anon_sym_DASH_DASH] = ACTIONS(1998), + [anon_sym_PLUS_PLUS] = ACTIONS(1998), + [anon_sym_sizeof] = ACTIONS(1996), + [sym_number_literal] = ACTIONS(1998), + [anon_sym_L_SQUOTE] = ACTIONS(1998), + [anon_sym_u_SQUOTE] = ACTIONS(1998), + [anon_sym_U_SQUOTE] = ACTIONS(1998), + [anon_sym_u8_SQUOTE] = ACTIONS(1998), + [anon_sym_SQUOTE] = ACTIONS(1998), + [anon_sym_L_DQUOTE] = ACTIONS(1998), + [anon_sym_u_DQUOTE] = ACTIONS(1998), + [anon_sym_U_DQUOTE] = ACTIONS(1998), + [anon_sym_u8_DQUOTE] = ACTIONS(1998), + [anon_sym_DQUOTE] = ACTIONS(1998), + [sym_true] = ACTIONS(1996), + [sym_false] = ACTIONS(1996), + [sym_null] = ACTIONS(1996), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1998), + [anon_sym_ATimport] = ACTIONS(1998), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1996), + [anon_sym_ATcompatibility_alias] = ACTIONS(1998), + [anon_sym_ATprotocol] = ACTIONS(1998), + [anon_sym_ATclass] = ACTIONS(1998), + [anon_sym_ATinterface] = ACTIONS(1998), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1996), + [sym_method_attribute_specifier] = ACTIONS(1996), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1996), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1996), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1996), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1996), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1996), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1996), + [anon_sym_NS_AVAILABLE] = ACTIONS(1996), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1996), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1996), + [anon_sym_API_AVAILABLE] = ACTIONS(1996), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1996), + [anon_sym_API_DEPRECATED] = ACTIONS(1996), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1996), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1996), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1996), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1996), + [anon_sym___deprecated_msg] = ACTIONS(1996), + [anon_sym___deprecated_enum_msg] = ACTIONS(1996), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1996), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1996), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1996), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1996), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1996), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1996), + [anon_sym_ATimplementation] = ACTIONS(1998), + [anon_sym_NS_ENUM] = ACTIONS(1996), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1996), + [anon_sym_NS_OPTIONS] = ACTIONS(1996), + [anon_sym_typeof] = ACTIONS(1996), + [anon_sym___typeof] = ACTIONS(1996), + [anon_sym___typeof__] = ACTIONS(1996), + [sym_self] = ACTIONS(1996), + [sym_super] = ACTIONS(1996), + [sym_nil] = ACTIONS(1996), + [sym_id] = ACTIONS(1996), + [sym_instancetype] = ACTIONS(1996), + [sym_Class] = ACTIONS(1996), + [sym_SEL] = ACTIONS(1996), + [sym_IMP] = ACTIONS(1996), + [sym_BOOL] = ACTIONS(1996), + [sym_auto] = ACTIONS(1996), + [anon_sym_ATautoreleasepool] = ACTIONS(1998), + [anon_sym_ATsynchronized] = ACTIONS(1998), + [anon_sym_ATtry] = ACTIONS(1998), + [anon_sym_ATthrow] = ACTIONS(1998), + [anon_sym_ATselector] = ACTIONS(1998), + [anon_sym_ATencode] = ACTIONS(1998), + [anon_sym_AT] = ACTIONS(1996), + [sym_YES] = ACTIONS(1996), + [sym_NO] = ACTIONS(1996), + [anon_sym___builtin_available] = ACTIONS(1996), + [anon_sym_ATavailable] = ACTIONS(1998), + [anon_sym_va_arg] = ACTIONS(1996), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1348] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1349] = { + [sym_identifier] = ACTIONS(1696), + [aux_sym_preproc_include_token1] = ACTIONS(1698), + [aux_sym_preproc_def_token1] = ACTIONS(1698), + [aux_sym_preproc_if_token1] = ACTIONS(1696), + [aux_sym_preproc_if_token2] = ACTIONS(1696), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1696), + [anon_sym_LPAREN2] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1698), + [anon_sym_TILDE] = ACTIONS(1698), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1698), + [anon_sym_CARET] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_typedef] = ACTIONS(1696), + [anon_sym_extern] = ACTIONS(1696), + [anon_sym___attribute] = ACTIONS(1696), + [anon_sym___attribute__] = ACTIONS(1696), + [anon_sym___declspec] = ACTIONS(1696), + [anon_sym___cdecl] = ACTIONS(1696), + [anon_sym___clrcall] = ACTIONS(1696), + [anon_sym___stdcall] = ACTIONS(1696), + [anon_sym___fastcall] = ACTIONS(1696), + [anon_sym___thiscall] = ACTIONS(1696), + [anon_sym___vectorcall] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_static] = ACTIONS(1696), + [anon_sym_auto] = ACTIONS(1696), + [anon_sym_register] = ACTIONS(1696), + [anon_sym_inline] = ACTIONS(1696), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1696), + [anon_sym_volatile] = ACTIONS(1696), + [anon_sym_restrict] = ACTIONS(1696), + [anon_sym__Atomic] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1696), + [anon_sym_out] = ACTIONS(1696), + [anon_sym_inout] = ACTIONS(1696), + [anon_sym_bycopy] = ACTIONS(1696), + [anon_sym_byref] = ACTIONS(1696), + [anon_sym_oneway] = ACTIONS(1696), + [anon_sym__Nullable] = ACTIONS(1696), + [anon_sym__Nonnull] = ACTIONS(1696), + [anon_sym__Nullable_result] = ACTIONS(1696), + [anon_sym__Null_unspecified] = ACTIONS(1696), + [anon_sym___autoreleasing] = ACTIONS(1696), + [anon_sym___nullable] = ACTIONS(1696), + [anon_sym___nonnull] = ACTIONS(1696), + [anon_sym___strong] = ACTIONS(1696), + [anon_sym___weak] = ACTIONS(1696), + [anon_sym___bridge] = ACTIONS(1696), + [anon_sym___bridge_transfer] = ACTIONS(1696), + [anon_sym___bridge_retained] = ACTIONS(1696), + [anon_sym___unsafe_unretained] = ACTIONS(1696), + [anon_sym___block] = ACTIONS(1696), + [anon_sym___kindof] = ACTIONS(1696), + [anon_sym___unused] = ACTIONS(1696), + [anon_sym__Complex] = ACTIONS(1696), + [anon_sym___complex] = ACTIONS(1696), + [anon_sym_IBOutlet] = ACTIONS(1696), + [anon_sym_IBInspectable] = ACTIONS(1696), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1696), + [anon_sym_signed] = ACTIONS(1696), + [anon_sym_unsigned] = ACTIONS(1696), + [anon_sym_long] = ACTIONS(1696), + [anon_sym_short] = ACTIONS(1696), + [sym_primitive_type] = ACTIONS(1696), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1696), + [anon_sym_switch] = ACTIONS(1696), + [anon_sym_case] = ACTIONS(1696), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1696), + [anon_sym_do] = ACTIONS(1696), + [anon_sym_for] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1696), + [anon_sym_break] = ACTIONS(1696), + [anon_sym_continue] = ACTIONS(1696), + [anon_sym_goto] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1698), + [anon_sym_PLUS_PLUS] = ACTIONS(1698), + [anon_sym_sizeof] = ACTIONS(1696), + [sym_number_literal] = ACTIONS(1698), + [anon_sym_L_SQUOTE] = ACTIONS(1698), + [anon_sym_u_SQUOTE] = ACTIONS(1698), + [anon_sym_U_SQUOTE] = ACTIONS(1698), + [anon_sym_u8_SQUOTE] = ACTIONS(1698), + [anon_sym_SQUOTE] = ACTIONS(1698), + [anon_sym_L_DQUOTE] = ACTIONS(1698), + [anon_sym_u_DQUOTE] = ACTIONS(1698), + [anon_sym_U_DQUOTE] = ACTIONS(1698), + [anon_sym_u8_DQUOTE] = ACTIONS(1698), + [anon_sym_DQUOTE] = ACTIONS(1698), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [sym_null] = ACTIONS(1696), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1698), + [anon_sym_ATimport] = ACTIONS(1698), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1696), + [anon_sym_ATcompatibility_alias] = ACTIONS(1698), + [anon_sym_ATprotocol] = ACTIONS(1698), + [anon_sym_ATclass] = ACTIONS(1698), + [anon_sym_ATinterface] = ACTIONS(1698), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1696), + [sym_method_attribute_specifier] = ACTIONS(1696), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1696), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1696), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1696), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1696), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1696), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1696), + [anon_sym_NS_AVAILABLE] = ACTIONS(1696), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1696), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1696), + [anon_sym_API_AVAILABLE] = ACTIONS(1696), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1696), + [anon_sym_API_DEPRECATED] = ACTIONS(1696), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1696), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1696), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1696), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1696), + [anon_sym___deprecated_msg] = ACTIONS(1696), + [anon_sym___deprecated_enum_msg] = ACTIONS(1696), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1696), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1696), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1696), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1696), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1696), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1696), + [anon_sym_ATimplementation] = ACTIONS(1698), + [anon_sym_NS_ENUM] = ACTIONS(1696), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1696), + [anon_sym_NS_OPTIONS] = ACTIONS(1696), + [anon_sym_typeof] = ACTIONS(1696), + [anon_sym___typeof] = ACTIONS(1696), + [anon_sym___typeof__] = ACTIONS(1696), + [sym_self] = ACTIONS(1696), + [sym_super] = ACTIONS(1696), + [sym_nil] = ACTIONS(1696), + [sym_id] = ACTIONS(1696), + [sym_instancetype] = ACTIONS(1696), + [sym_Class] = ACTIONS(1696), + [sym_SEL] = ACTIONS(1696), + [sym_IMP] = ACTIONS(1696), + [sym_BOOL] = ACTIONS(1696), + [sym_auto] = ACTIONS(1696), + [anon_sym_ATautoreleasepool] = ACTIONS(1698), + [anon_sym_ATsynchronized] = ACTIONS(1698), + [anon_sym_ATtry] = ACTIONS(1698), + [anon_sym_ATthrow] = ACTIONS(1698), + [anon_sym_ATselector] = ACTIONS(1698), + [anon_sym_ATencode] = ACTIONS(1698), + [anon_sym_AT] = ACTIONS(1696), + [sym_YES] = ACTIONS(1696), + [sym_NO] = ACTIONS(1696), + [anon_sym___builtin_available] = ACTIONS(1696), + [anon_sym_ATavailable] = ACTIONS(1698), + [anon_sym_va_arg] = ACTIONS(1696), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1350] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1351] = { + [sym_identifier] = ACTIONS(1888), + [aux_sym_preproc_include_token1] = ACTIONS(1890), + [aux_sym_preproc_def_token1] = ACTIONS(1890), + [aux_sym_preproc_if_token1] = ACTIONS(1888), + [aux_sym_preproc_if_token2] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1888), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym___attribute] = ACTIONS(1888), + [anon_sym___attribute__] = ACTIONS(1888), + [anon_sym___declspec] = ACTIONS(1888), + [anon_sym___cdecl] = ACTIONS(1888), + [anon_sym___clrcall] = ACTIONS(1888), + [anon_sym___stdcall] = ACTIONS(1888), + [anon_sym___fastcall] = ACTIONS(1888), + [anon_sym___thiscall] = ACTIONS(1888), + [anon_sym___vectorcall] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_auto] = ACTIONS(1888), + [anon_sym_register] = ACTIONS(1888), + [anon_sym_inline] = ACTIONS(1888), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_volatile] = ACTIONS(1888), + [anon_sym_restrict] = ACTIONS(1888), + [anon_sym__Atomic] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_out] = ACTIONS(1888), + [anon_sym_inout] = ACTIONS(1888), + [anon_sym_bycopy] = ACTIONS(1888), + [anon_sym_byref] = ACTIONS(1888), + [anon_sym_oneway] = ACTIONS(1888), + [anon_sym__Nullable] = ACTIONS(1888), + [anon_sym__Nonnull] = ACTIONS(1888), + [anon_sym__Nullable_result] = ACTIONS(1888), + [anon_sym__Null_unspecified] = ACTIONS(1888), + [anon_sym___autoreleasing] = ACTIONS(1888), + [anon_sym___nullable] = ACTIONS(1888), + [anon_sym___nonnull] = ACTIONS(1888), + [anon_sym___strong] = ACTIONS(1888), + [anon_sym___weak] = ACTIONS(1888), + [anon_sym___bridge] = ACTIONS(1888), + [anon_sym___bridge_transfer] = ACTIONS(1888), + [anon_sym___bridge_retained] = ACTIONS(1888), + [anon_sym___unsafe_unretained] = ACTIONS(1888), + [anon_sym___block] = ACTIONS(1888), + [anon_sym___kindof] = ACTIONS(1888), + [anon_sym___unused] = ACTIONS(1888), + [anon_sym__Complex] = ACTIONS(1888), + [anon_sym___complex] = ACTIONS(1888), + [anon_sym_IBOutlet] = ACTIONS(1888), + [anon_sym_IBInspectable] = ACTIONS(1888), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1888), + [anon_sym_signed] = ACTIONS(1888), + [anon_sym_unsigned] = ACTIONS(1888), + [anon_sym_long] = ACTIONS(1888), + [anon_sym_short] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_switch] = ACTIONS(1888), + [anon_sym_case] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_goto] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_sizeof] = ACTIONS(1888), + [sym_number_literal] = ACTIONS(1890), + [anon_sym_L_SQUOTE] = ACTIONS(1890), + [anon_sym_u_SQUOTE] = ACTIONS(1890), + [anon_sym_U_SQUOTE] = ACTIONS(1890), + [anon_sym_u8_SQUOTE] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_L_DQUOTE] = ACTIONS(1890), + [anon_sym_u_DQUOTE] = ACTIONS(1890), + [anon_sym_U_DQUOTE] = ACTIONS(1890), + [anon_sym_u8_DQUOTE] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_true] = ACTIONS(1888), + [sym_false] = ACTIONS(1888), + [sym_null] = ACTIONS(1888), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1890), + [anon_sym_ATimport] = ACTIONS(1890), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1888), + [anon_sym_ATcompatibility_alias] = ACTIONS(1890), + [anon_sym_ATprotocol] = ACTIONS(1890), + [anon_sym_ATclass] = ACTIONS(1890), + [anon_sym_ATinterface] = ACTIONS(1890), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1888), + [sym_method_attribute_specifier] = ACTIONS(1888), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1888), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE] = ACTIONS(1888), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_API_AVAILABLE] = ACTIONS(1888), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_API_DEPRECATED] = ACTIONS(1888), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1888), + [anon_sym___deprecated_msg] = ACTIONS(1888), + [anon_sym___deprecated_enum_msg] = ACTIONS(1888), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1888), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1888), + [anon_sym_ATimplementation] = ACTIONS(1890), + [anon_sym_NS_ENUM] = ACTIONS(1888), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1888), + [anon_sym_NS_OPTIONS] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym___typeof] = ACTIONS(1888), + [anon_sym___typeof__] = ACTIONS(1888), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_nil] = ACTIONS(1888), + [sym_id] = ACTIONS(1888), + [sym_instancetype] = ACTIONS(1888), + [sym_Class] = ACTIONS(1888), + [sym_SEL] = ACTIONS(1888), + [sym_IMP] = ACTIONS(1888), + [sym_BOOL] = ACTIONS(1888), + [sym_auto] = ACTIONS(1888), + [anon_sym_ATautoreleasepool] = ACTIONS(1890), + [anon_sym_ATsynchronized] = ACTIONS(1890), + [anon_sym_ATtry] = ACTIONS(1890), + [anon_sym_ATthrow] = ACTIONS(1890), + [anon_sym_ATselector] = ACTIONS(1890), + [anon_sym_ATencode] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [sym_YES] = ACTIONS(1888), + [sym_NO] = ACTIONS(1888), + [anon_sym___builtin_available] = ACTIONS(1888), + [anon_sym_ATavailable] = ACTIONS(1890), + [anon_sym_va_arg] = ACTIONS(1888), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1352] = { + [sym_identifier] = ACTIONS(1740), + [aux_sym_preproc_include_token1] = ACTIONS(1742), + [aux_sym_preproc_def_token1] = ACTIONS(1742), + [aux_sym_preproc_if_token1] = ACTIONS(1740), + [aux_sym_preproc_if_token2] = ACTIONS(1740), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1740), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1740), + [anon_sym_LPAREN2] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_CARET] = ACTIONS(1742), + [anon_sym_AMP] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_typedef] = ACTIONS(1740), + [anon_sym_extern] = ACTIONS(1740), + [anon_sym___attribute] = ACTIONS(1740), + [anon_sym___attribute__] = ACTIONS(1740), + [anon_sym___declspec] = ACTIONS(1740), + [anon_sym___cdecl] = ACTIONS(1740), + [anon_sym___clrcall] = ACTIONS(1740), + [anon_sym___stdcall] = ACTIONS(1740), + [anon_sym___fastcall] = ACTIONS(1740), + [anon_sym___thiscall] = ACTIONS(1740), + [anon_sym___vectorcall] = ACTIONS(1740), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_static] = ACTIONS(1740), + [anon_sym_auto] = ACTIONS(1740), + [anon_sym_register] = ACTIONS(1740), + [anon_sym_inline] = ACTIONS(1740), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1740), + [anon_sym_const] = ACTIONS(1740), + [anon_sym_volatile] = ACTIONS(1740), + [anon_sym_restrict] = ACTIONS(1740), + [anon_sym__Atomic] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1740), + [anon_sym_out] = ACTIONS(1740), + [anon_sym_inout] = ACTIONS(1740), + [anon_sym_bycopy] = ACTIONS(1740), + [anon_sym_byref] = ACTIONS(1740), + [anon_sym_oneway] = ACTIONS(1740), + [anon_sym__Nullable] = ACTIONS(1740), + [anon_sym__Nonnull] = ACTIONS(1740), + [anon_sym__Nullable_result] = ACTIONS(1740), + [anon_sym__Null_unspecified] = ACTIONS(1740), + [anon_sym___autoreleasing] = ACTIONS(1740), + [anon_sym___nullable] = ACTIONS(1740), + [anon_sym___nonnull] = ACTIONS(1740), + [anon_sym___strong] = ACTIONS(1740), + [anon_sym___weak] = ACTIONS(1740), + [anon_sym___bridge] = ACTIONS(1740), + [anon_sym___bridge_transfer] = ACTIONS(1740), + [anon_sym___bridge_retained] = ACTIONS(1740), + [anon_sym___unsafe_unretained] = ACTIONS(1740), + [anon_sym___block] = ACTIONS(1740), + [anon_sym___kindof] = ACTIONS(1740), + [anon_sym___unused] = ACTIONS(1740), + [anon_sym__Complex] = ACTIONS(1740), + [anon_sym___complex] = ACTIONS(1740), + [anon_sym_IBOutlet] = ACTIONS(1740), + [anon_sym_IBInspectable] = ACTIONS(1740), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1740), + [anon_sym_signed] = ACTIONS(1740), + [anon_sym_unsigned] = ACTIONS(1740), + [anon_sym_long] = ACTIONS(1740), + [anon_sym_short] = ACTIONS(1740), + [sym_primitive_type] = ACTIONS(1740), + [anon_sym_enum] = ACTIONS(1740), + [anon_sym_struct] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_if] = ACTIONS(1740), + [anon_sym_switch] = ACTIONS(1740), + [anon_sym_case] = ACTIONS(1740), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_while] = ACTIONS(1740), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1740), + [anon_sym_return] = ACTIONS(1740), + [anon_sym_break] = ACTIONS(1740), + [anon_sym_continue] = ACTIONS(1740), + [anon_sym_goto] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_sizeof] = ACTIONS(1740), + [sym_number_literal] = ACTIONS(1742), + [anon_sym_L_SQUOTE] = ACTIONS(1742), + [anon_sym_u_SQUOTE] = ACTIONS(1742), + [anon_sym_U_SQUOTE] = ACTIONS(1742), + [anon_sym_u8_SQUOTE] = ACTIONS(1742), + [anon_sym_SQUOTE] = ACTIONS(1742), + [anon_sym_L_DQUOTE] = ACTIONS(1742), + [anon_sym_u_DQUOTE] = ACTIONS(1742), + [anon_sym_U_DQUOTE] = ACTIONS(1742), + [anon_sym_u8_DQUOTE] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(1742), + [sym_true] = ACTIONS(1740), + [sym_false] = ACTIONS(1740), + [sym_null] = ACTIONS(1740), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1742), + [anon_sym_ATimport] = ACTIONS(1742), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1740), + [anon_sym_ATcompatibility_alias] = ACTIONS(1742), + [anon_sym_ATprotocol] = ACTIONS(1742), + [anon_sym_ATclass] = ACTIONS(1742), + [anon_sym_ATinterface] = ACTIONS(1742), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1740), + [sym_method_attribute_specifier] = ACTIONS(1740), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1740), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1740), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1740), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1740), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1740), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1740), + [anon_sym_NS_AVAILABLE] = ACTIONS(1740), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1740), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1740), + [anon_sym_API_AVAILABLE] = ACTIONS(1740), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1740), + [anon_sym_API_DEPRECATED] = ACTIONS(1740), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1740), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1740), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1740), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1740), + [anon_sym___deprecated_msg] = ACTIONS(1740), + [anon_sym___deprecated_enum_msg] = ACTIONS(1740), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1740), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1740), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1740), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1740), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1740), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1740), + [anon_sym_ATimplementation] = ACTIONS(1742), + [anon_sym_NS_ENUM] = ACTIONS(1740), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1740), + [anon_sym_NS_OPTIONS] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(1740), + [anon_sym___typeof] = ACTIONS(1740), + [anon_sym___typeof__] = ACTIONS(1740), + [sym_self] = ACTIONS(1740), + [sym_super] = ACTIONS(1740), + [sym_nil] = ACTIONS(1740), + [sym_id] = ACTIONS(1740), + [sym_instancetype] = ACTIONS(1740), + [sym_Class] = ACTIONS(1740), + [sym_SEL] = ACTIONS(1740), + [sym_IMP] = ACTIONS(1740), + [sym_BOOL] = ACTIONS(1740), + [sym_auto] = ACTIONS(1740), + [anon_sym_ATautoreleasepool] = ACTIONS(1742), + [anon_sym_ATsynchronized] = ACTIONS(1742), + [anon_sym_ATtry] = ACTIONS(1742), + [anon_sym_ATthrow] = ACTIONS(1742), + [anon_sym_ATselector] = ACTIONS(1742), + [anon_sym_ATencode] = ACTIONS(1742), + [anon_sym_AT] = ACTIONS(1740), + [sym_YES] = ACTIONS(1740), + [sym_NO] = ACTIONS(1740), + [anon_sym___builtin_available] = ACTIONS(1740), + [anon_sym_ATavailable] = ACTIONS(1742), + [anon_sym_va_arg] = ACTIONS(1740), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1353] = { + [sym_identifier] = ACTIONS(1984), + [aux_sym_preproc_include_token1] = ACTIONS(1986), + [aux_sym_preproc_def_token1] = ACTIONS(1986), + [aux_sym_preproc_if_token1] = ACTIONS(1984), + [aux_sym_preproc_if_token2] = ACTIONS(1984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1984), + [anon_sym_LPAREN2] = ACTIONS(1986), + [anon_sym_BANG] = ACTIONS(1986), + [anon_sym_TILDE] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(1986), + [anon_sym_CARET] = ACTIONS(1986), + [anon_sym_AMP] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_typedef] = ACTIONS(1984), + [anon_sym_extern] = ACTIONS(1984), + [anon_sym___attribute] = ACTIONS(1984), + [anon_sym___attribute__] = ACTIONS(1984), + [anon_sym___declspec] = ACTIONS(1984), + [anon_sym___cdecl] = ACTIONS(1984), + [anon_sym___clrcall] = ACTIONS(1984), + [anon_sym___stdcall] = ACTIONS(1984), + [anon_sym___fastcall] = ACTIONS(1984), + [anon_sym___thiscall] = ACTIONS(1984), + [anon_sym___vectorcall] = ACTIONS(1984), + [anon_sym_LBRACE] = ACTIONS(1986), + [anon_sym_LBRACK] = ACTIONS(1986), + [anon_sym_static] = ACTIONS(1984), + [anon_sym_auto] = ACTIONS(1984), + [anon_sym_register] = ACTIONS(1984), + [anon_sym_inline] = ACTIONS(1984), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1984), + [anon_sym_const] = ACTIONS(1984), + [anon_sym_volatile] = ACTIONS(1984), + [anon_sym_restrict] = ACTIONS(1984), + [anon_sym__Atomic] = ACTIONS(1984), + [anon_sym_in] = ACTIONS(1984), + [anon_sym_out] = ACTIONS(1984), + [anon_sym_inout] = ACTIONS(1984), + [anon_sym_bycopy] = ACTIONS(1984), + [anon_sym_byref] = ACTIONS(1984), + [anon_sym_oneway] = ACTIONS(1984), + [anon_sym__Nullable] = ACTIONS(1984), + [anon_sym__Nonnull] = ACTIONS(1984), + [anon_sym__Nullable_result] = ACTIONS(1984), + [anon_sym__Null_unspecified] = ACTIONS(1984), + [anon_sym___autoreleasing] = ACTIONS(1984), + [anon_sym___nullable] = ACTIONS(1984), + [anon_sym___nonnull] = ACTIONS(1984), + [anon_sym___strong] = ACTIONS(1984), + [anon_sym___weak] = ACTIONS(1984), + [anon_sym___bridge] = ACTIONS(1984), + [anon_sym___bridge_transfer] = ACTIONS(1984), + [anon_sym___bridge_retained] = ACTIONS(1984), + [anon_sym___unsafe_unretained] = ACTIONS(1984), + [anon_sym___block] = ACTIONS(1984), + [anon_sym___kindof] = ACTIONS(1984), + [anon_sym___unused] = ACTIONS(1984), + [anon_sym__Complex] = ACTIONS(1984), + [anon_sym___complex] = ACTIONS(1984), + [anon_sym_IBOutlet] = ACTIONS(1984), + [anon_sym_IBInspectable] = ACTIONS(1984), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1984), + [anon_sym_signed] = ACTIONS(1984), + [anon_sym_unsigned] = ACTIONS(1984), + [anon_sym_long] = ACTIONS(1984), + [anon_sym_short] = ACTIONS(1984), + [sym_primitive_type] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1984), + [anon_sym_struct] = ACTIONS(1984), + [anon_sym_union] = ACTIONS(1984), + [anon_sym_if] = ACTIONS(1984), + [anon_sym_switch] = ACTIONS(1984), + [anon_sym_case] = ACTIONS(1984), + [anon_sym_default] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1984), + [anon_sym_do] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1984), + [anon_sym_return] = ACTIONS(1984), + [anon_sym_break] = ACTIONS(1984), + [anon_sym_continue] = ACTIONS(1984), + [anon_sym_goto] = ACTIONS(1984), + [anon_sym_DASH_DASH] = ACTIONS(1986), + [anon_sym_PLUS_PLUS] = ACTIONS(1986), + [anon_sym_sizeof] = ACTIONS(1984), + [sym_number_literal] = ACTIONS(1986), + [anon_sym_L_SQUOTE] = ACTIONS(1986), + [anon_sym_u_SQUOTE] = ACTIONS(1986), + [anon_sym_U_SQUOTE] = ACTIONS(1986), + [anon_sym_u8_SQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1986), + [anon_sym_L_DQUOTE] = ACTIONS(1986), + [anon_sym_u_DQUOTE] = ACTIONS(1986), + [anon_sym_U_DQUOTE] = ACTIONS(1986), + [anon_sym_u8_DQUOTE] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1986), + [sym_true] = ACTIONS(1984), + [sym_false] = ACTIONS(1984), + [sym_null] = ACTIONS(1984), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1986), + [anon_sym_ATimport] = ACTIONS(1986), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1984), + [anon_sym_ATcompatibility_alias] = ACTIONS(1986), + [anon_sym_ATprotocol] = ACTIONS(1986), + [anon_sym_ATclass] = ACTIONS(1986), + [anon_sym_ATinterface] = ACTIONS(1986), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1984), + [sym_method_attribute_specifier] = ACTIONS(1984), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1984), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1984), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1984), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1984), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1984), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1984), + [anon_sym_NS_AVAILABLE] = ACTIONS(1984), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1984), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1984), + [anon_sym_API_AVAILABLE] = ACTIONS(1984), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1984), + [anon_sym_API_DEPRECATED] = ACTIONS(1984), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1984), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1984), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1984), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1984), + [anon_sym___deprecated_msg] = ACTIONS(1984), + [anon_sym___deprecated_enum_msg] = ACTIONS(1984), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1984), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1984), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1984), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1984), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1984), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1984), + [anon_sym_ATimplementation] = ACTIONS(1986), + [anon_sym_NS_ENUM] = ACTIONS(1984), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1984), + [anon_sym_NS_OPTIONS] = ACTIONS(1984), + [anon_sym_typeof] = ACTIONS(1984), + [anon_sym___typeof] = ACTIONS(1984), + [anon_sym___typeof__] = ACTIONS(1984), + [sym_self] = ACTIONS(1984), + [sym_super] = ACTIONS(1984), + [sym_nil] = ACTIONS(1984), + [sym_id] = ACTIONS(1984), + [sym_instancetype] = ACTIONS(1984), + [sym_Class] = ACTIONS(1984), + [sym_SEL] = ACTIONS(1984), + [sym_IMP] = ACTIONS(1984), + [sym_BOOL] = ACTIONS(1984), + [sym_auto] = ACTIONS(1984), + [anon_sym_ATautoreleasepool] = ACTIONS(1986), + [anon_sym_ATsynchronized] = ACTIONS(1986), + [anon_sym_ATtry] = ACTIONS(1986), + [anon_sym_ATthrow] = ACTIONS(1986), + [anon_sym_ATselector] = ACTIONS(1986), + [anon_sym_ATencode] = ACTIONS(1986), + [anon_sym_AT] = ACTIONS(1984), + [sym_YES] = ACTIONS(1984), + [sym_NO] = ACTIONS(1984), + [anon_sym___builtin_available] = ACTIONS(1984), + [anon_sym_ATavailable] = ACTIONS(1986), + [anon_sym_va_arg] = ACTIONS(1984), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1354] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1355] = { + [sym_identifier] = ACTIONS(1888), + [aux_sym_preproc_include_token1] = ACTIONS(1890), + [aux_sym_preproc_def_token1] = ACTIONS(1890), + [aux_sym_preproc_if_token1] = ACTIONS(1888), + [aux_sym_preproc_if_token2] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1888), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym___attribute] = ACTIONS(1888), + [anon_sym___attribute__] = ACTIONS(1888), + [anon_sym___declspec] = ACTIONS(1888), + [anon_sym___cdecl] = ACTIONS(1888), + [anon_sym___clrcall] = ACTIONS(1888), + [anon_sym___stdcall] = ACTIONS(1888), + [anon_sym___fastcall] = ACTIONS(1888), + [anon_sym___thiscall] = ACTIONS(1888), + [anon_sym___vectorcall] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_auto] = ACTIONS(1888), + [anon_sym_register] = ACTIONS(1888), + [anon_sym_inline] = ACTIONS(1888), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_volatile] = ACTIONS(1888), + [anon_sym_restrict] = ACTIONS(1888), + [anon_sym__Atomic] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_out] = ACTIONS(1888), + [anon_sym_inout] = ACTIONS(1888), + [anon_sym_bycopy] = ACTIONS(1888), + [anon_sym_byref] = ACTIONS(1888), + [anon_sym_oneway] = ACTIONS(1888), + [anon_sym__Nullable] = ACTIONS(1888), + [anon_sym__Nonnull] = ACTIONS(1888), + [anon_sym__Nullable_result] = ACTIONS(1888), + [anon_sym__Null_unspecified] = ACTIONS(1888), + [anon_sym___autoreleasing] = ACTIONS(1888), + [anon_sym___nullable] = ACTIONS(1888), + [anon_sym___nonnull] = ACTIONS(1888), + [anon_sym___strong] = ACTIONS(1888), + [anon_sym___weak] = ACTIONS(1888), + [anon_sym___bridge] = ACTIONS(1888), + [anon_sym___bridge_transfer] = ACTIONS(1888), + [anon_sym___bridge_retained] = ACTIONS(1888), + [anon_sym___unsafe_unretained] = ACTIONS(1888), + [anon_sym___block] = ACTIONS(1888), + [anon_sym___kindof] = ACTIONS(1888), + [anon_sym___unused] = ACTIONS(1888), + [anon_sym__Complex] = ACTIONS(1888), + [anon_sym___complex] = ACTIONS(1888), + [anon_sym_IBOutlet] = ACTIONS(1888), + [anon_sym_IBInspectable] = ACTIONS(1888), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1888), + [anon_sym_signed] = ACTIONS(1888), + [anon_sym_unsigned] = ACTIONS(1888), + [anon_sym_long] = ACTIONS(1888), + [anon_sym_short] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_switch] = ACTIONS(1888), + [anon_sym_case] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_goto] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_sizeof] = ACTIONS(1888), + [sym_number_literal] = ACTIONS(1890), + [anon_sym_L_SQUOTE] = ACTIONS(1890), + [anon_sym_u_SQUOTE] = ACTIONS(1890), + [anon_sym_U_SQUOTE] = ACTIONS(1890), + [anon_sym_u8_SQUOTE] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_L_DQUOTE] = ACTIONS(1890), + [anon_sym_u_DQUOTE] = ACTIONS(1890), + [anon_sym_U_DQUOTE] = ACTIONS(1890), + [anon_sym_u8_DQUOTE] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_true] = ACTIONS(1888), + [sym_false] = ACTIONS(1888), + [sym_null] = ACTIONS(1888), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1890), + [anon_sym_ATimport] = ACTIONS(1890), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1888), + [anon_sym_ATcompatibility_alias] = ACTIONS(1890), + [anon_sym_ATprotocol] = ACTIONS(1890), + [anon_sym_ATclass] = ACTIONS(1890), + [anon_sym_ATinterface] = ACTIONS(1890), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1888), + [sym_method_attribute_specifier] = ACTIONS(1888), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1888), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE] = ACTIONS(1888), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_API_AVAILABLE] = ACTIONS(1888), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_API_DEPRECATED] = ACTIONS(1888), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1888), + [anon_sym___deprecated_msg] = ACTIONS(1888), + [anon_sym___deprecated_enum_msg] = ACTIONS(1888), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1888), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1888), + [anon_sym_ATimplementation] = ACTIONS(1890), + [anon_sym_NS_ENUM] = ACTIONS(1888), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1888), + [anon_sym_NS_OPTIONS] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym___typeof] = ACTIONS(1888), + [anon_sym___typeof__] = ACTIONS(1888), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_nil] = ACTIONS(1888), + [sym_id] = ACTIONS(1888), + [sym_instancetype] = ACTIONS(1888), + [sym_Class] = ACTIONS(1888), + [sym_SEL] = ACTIONS(1888), + [sym_IMP] = ACTIONS(1888), + [sym_BOOL] = ACTIONS(1888), + [sym_auto] = ACTIONS(1888), + [anon_sym_ATautoreleasepool] = ACTIONS(1890), + [anon_sym_ATsynchronized] = ACTIONS(1890), + [anon_sym_ATtry] = ACTIONS(1890), + [anon_sym_ATthrow] = ACTIONS(1890), + [anon_sym_ATselector] = ACTIONS(1890), + [anon_sym_ATencode] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [sym_YES] = ACTIONS(1888), + [sym_NO] = ACTIONS(1888), + [anon_sym___builtin_available] = ACTIONS(1888), + [anon_sym_ATavailable] = ACTIONS(1890), + [anon_sym_va_arg] = ACTIONS(1888), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1356] = { + [sym_identifier] = ACTIONS(1980), + [aux_sym_preproc_include_token1] = ACTIONS(1982), + [aux_sym_preproc_def_token1] = ACTIONS(1982), + [aux_sym_preproc_if_token1] = ACTIONS(1980), + [aux_sym_preproc_if_token2] = ACTIONS(1980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1980), + [anon_sym_LPAREN2] = ACTIONS(1982), + [anon_sym_BANG] = ACTIONS(1982), + [anon_sym_TILDE] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(1980), + [anon_sym_STAR] = ACTIONS(1982), + [anon_sym_CARET] = ACTIONS(1982), + [anon_sym_AMP] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_typedef] = ACTIONS(1980), + [anon_sym_extern] = ACTIONS(1980), + [anon_sym___attribute] = ACTIONS(1980), + [anon_sym___attribute__] = ACTIONS(1980), + [anon_sym___declspec] = ACTIONS(1980), + [anon_sym___cdecl] = ACTIONS(1980), + [anon_sym___clrcall] = ACTIONS(1980), + [anon_sym___stdcall] = ACTIONS(1980), + [anon_sym___fastcall] = ACTIONS(1980), + [anon_sym___thiscall] = ACTIONS(1980), + [anon_sym___vectorcall] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1982), + [anon_sym_static] = ACTIONS(1980), + [anon_sym_auto] = ACTIONS(1980), + [anon_sym_register] = ACTIONS(1980), + [anon_sym_inline] = ACTIONS(1980), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1980), + [anon_sym_const] = ACTIONS(1980), + [anon_sym_volatile] = ACTIONS(1980), + [anon_sym_restrict] = ACTIONS(1980), + [anon_sym__Atomic] = ACTIONS(1980), + [anon_sym_in] = ACTIONS(1980), + [anon_sym_out] = ACTIONS(1980), + [anon_sym_inout] = ACTIONS(1980), + [anon_sym_bycopy] = ACTIONS(1980), + [anon_sym_byref] = ACTIONS(1980), + [anon_sym_oneway] = ACTIONS(1980), + [anon_sym__Nullable] = ACTIONS(1980), + [anon_sym__Nonnull] = ACTIONS(1980), + [anon_sym__Nullable_result] = ACTIONS(1980), + [anon_sym__Null_unspecified] = ACTIONS(1980), + [anon_sym___autoreleasing] = ACTIONS(1980), + [anon_sym___nullable] = ACTIONS(1980), + [anon_sym___nonnull] = ACTIONS(1980), + [anon_sym___strong] = ACTIONS(1980), + [anon_sym___weak] = ACTIONS(1980), + [anon_sym___bridge] = ACTIONS(1980), + [anon_sym___bridge_transfer] = ACTIONS(1980), + [anon_sym___bridge_retained] = ACTIONS(1980), + [anon_sym___unsafe_unretained] = ACTIONS(1980), + [anon_sym___block] = ACTIONS(1980), + [anon_sym___kindof] = ACTIONS(1980), + [anon_sym___unused] = ACTIONS(1980), + [anon_sym__Complex] = ACTIONS(1980), + [anon_sym___complex] = ACTIONS(1980), + [anon_sym_IBOutlet] = ACTIONS(1980), + [anon_sym_IBInspectable] = ACTIONS(1980), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1980), + [anon_sym_signed] = ACTIONS(1980), + [anon_sym_unsigned] = ACTIONS(1980), + [anon_sym_long] = ACTIONS(1980), + [anon_sym_short] = ACTIONS(1980), + [sym_primitive_type] = ACTIONS(1980), + [anon_sym_enum] = ACTIONS(1980), + [anon_sym_struct] = ACTIONS(1980), + [anon_sym_union] = ACTIONS(1980), + [anon_sym_if] = ACTIONS(1980), + [anon_sym_switch] = ACTIONS(1980), + [anon_sym_case] = ACTIONS(1980), + [anon_sym_default] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_do] = ACTIONS(1980), + [anon_sym_for] = ACTIONS(1980), + [anon_sym_return] = ACTIONS(1980), + [anon_sym_break] = ACTIONS(1980), + [anon_sym_continue] = ACTIONS(1980), + [anon_sym_goto] = ACTIONS(1980), + [anon_sym_DASH_DASH] = ACTIONS(1982), + [anon_sym_PLUS_PLUS] = ACTIONS(1982), + [anon_sym_sizeof] = ACTIONS(1980), + [sym_number_literal] = ACTIONS(1982), + [anon_sym_L_SQUOTE] = ACTIONS(1982), + [anon_sym_u_SQUOTE] = ACTIONS(1982), + [anon_sym_U_SQUOTE] = ACTIONS(1982), + [anon_sym_u8_SQUOTE] = ACTIONS(1982), + [anon_sym_SQUOTE] = ACTIONS(1982), + [anon_sym_L_DQUOTE] = ACTIONS(1982), + [anon_sym_u_DQUOTE] = ACTIONS(1982), + [anon_sym_U_DQUOTE] = ACTIONS(1982), + [anon_sym_u8_DQUOTE] = ACTIONS(1982), + [anon_sym_DQUOTE] = ACTIONS(1982), + [sym_true] = ACTIONS(1980), + [sym_false] = ACTIONS(1980), + [sym_null] = ACTIONS(1980), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1982), + [anon_sym_ATimport] = ACTIONS(1982), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1980), + [anon_sym_ATcompatibility_alias] = ACTIONS(1982), + [anon_sym_ATprotocol] = ACTIONS(1982), + [anon_sym_ATclass] = ACTIONS(1982), + [anon_sym_ATinterface] = ACTIONS(1982), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1980), + [sym_method_attribute_specifier] = ACTIONS(1980), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1980), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1980), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1980), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1980), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1980), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1980), + [anon_sym_NS_AVAILABLE] = ACTIONS(1980), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1980), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1980), + [anon_sym_API_AVAILABLE] = ACTIONS(1980), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1980), + [anon_sym_API_DEPRECATED] = ACTIONS(1980), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1980), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1980), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1980), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1980), + [anon_sym___deprecated_msg] = ACTIONS(1980), + [anon_sym___deprecated_enum_msg] = ACTIONS(1980), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1980), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1980), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1980), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1980), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1980), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1980), + [anon_sym_ATimplementation] = ACTIONS(1982), + [anon_sym_NS_ENUM] = ACTIONS(1980), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1980), + [anon_sym_NS_OPTIONS] = ACTIONS(1980), + [anon_sym_typeof] = ACTIONS(1980), + [anon_sym___typeof] = ACTIONS(1980), + [anon_sym___typeof__] = ACTIONS(1980), + [sym_self] = ACTIONS(1980), + [sym_super] = ACTIONS(1980), + [sym_nil] = ACTIONS(1980), + [sym_id] = ACTIONS(1980), + [sym_instancetype] = ACTIONS(1980), + [sym_Class] = ACTIONS(1980), + [sym_SEL] = ACTIONS(1980), + [sym_IMP] = ACTIONS(1980), + [sym_BOOL] = ACTIONS(1980), + [sym_auto] = ACTIONS(1980), + [anon_sym_ATautoreleasepool] = ACTIONS(1982), + [anon_sym_ATsynchronized] = ACTIONS(1982), + [anon_sym_ATtry] = ACTIONS(1982), + [anon_sym_ATthrow] = ACTIONS(1982), + [anon_sym_ATselector] = ACTIONS(1982), + [anon_sym_ATencode] = ACTIONS(1982), + [anon_sym_AT] = ACTIONS(1980), + [sym_YES] = ACTIONS(1980), + [sym_NO] = ACTIONS(1980), + [anon_sym___builtin_available] = ACTIONS(1980), + [anon_sym_ATavailable] = ACTIONS(1982), + [anon_sym_va_arg] = ACTIONS(1980), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1357] = { + [sym_identifier] = ACTIONS(1812), + [aux_sym_preproc_include_token1] = ACTIONS(1814), + [aux_sym_preproc_def_token1] = ACTIONS(1814), + [aux_sym_preproc_if_token1] = ACTIONS(1812), + [aux_sym_preproc_if_token2] = ACTIONS(1812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1812), + [anon_sym_LPAREN2] = ACTIONS(1814), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1812), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_CARET] = ACTIONS(1814), + [anon_sym_AMP] = ACTIONS(1814), + [anon_sym_SEMI] = ACTIONS(1814), + [anon_sym_typedef] = ACTIONS(1812), + [anon_sym_extern] = ACTIONS(1812), + [anon_sym___attribute] = ACTIONS(1812), + [anon_sym___attribute__] = ACTIONS(1812), + [anon_sym___declspec] = ACTIONS(1812), + [anon_sym___cdecl] = ACTIONS(1812), + [anon_sym___clrcall] = ACTIONS(1812), + [anon_sym___stdcall] = ACTIONS(1812), + [anon_sym___fastcall] = ACTIONS(1812), + [anon_sym___thiscall] = ACTIONS(1812), + [anon_sym___vectorcall] = ACTIONS(1812), + [anon_sym_LBRACE] = ACTIONS(1814), + [anon_sym_LBRACK] = ACTIONS(1814), + [anon_sym_static] = ACTIONS(1812), + [anon_sym_auto] = ACTIONS(1812), + [anon_sym_register] = ACTIONS(1812), + [anon_sym_inline] = ACTIONS(1812), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1812), + [anon_sym_const] = ACTIONS(1812), + [anon_sym_volatile] = ACTIONS(1812), + [anon_sym_restrict] = ACTIONS(1812), + [anon_sym__Atomic] = ACTIONS(1812), + [anon_sym_in] = ACTIONS(1812), + [anon_sym_out] = ACTIONS(1812), + [anon_sym_inout] = ACTIONS(1812), + [anon_sym_bycopy] = ACTIONS(1812), + [anon_sym_byref] = ACTIONS(1812), + [anon_sym_oneway] = ACTIONS(1812), + [anon_sym__Nullable] = ACTIONS(1812), + [anon_sym__Nonnull] = ACTIONS(1812), + [anon_sym__Nullable_result] = ACTIONS(1812), + [anon_sym__Null_unspecified] = ACTIONS(1812), + [anon_sym___autoreleasing] = ACTIONS(1812), + [anon_sym___nullable] = ACTIONS(1812), + [anon_sym___nonnull] = ACTIONS(1812), + [anon_sym___strong] = ACTIONS(1812), + [anon_sym___weak] = ACTIONS(1812), + [anon_sym___bridge] = ACTIONS(1812), + [anon_sym___bridge_transfer] = ACTIONS(1812), + [anon_sym___bridge_retained] = ACTIONS(1812), + [anon_sym___unsafe_unretained] = ACTIONS(1812), + [anon_sym___block] = ACTIONS(1812), + [anon_sym___kindof] = ACTIONS(1812), + [anon_sym___unused] = ACTIONS(1812), + [anon_sym__Complex] = ACTIONS(1812), + [anon_sym___complex] = ACTIONS(1812), + [anon_sym_IBOutlet] = ACTIONS(1812), + [anon_sym_IBInspectable] = ACTIONS(1812), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1812), + [anon_sym_signed] = ACTIONS(1812), + [anon_sym_unsigned] = ACTIONS(1812), + [anon_sym_long] = ACTIONS(1812), + [anon_sym_short] = ACTIONS(1812), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1812), + [anon_sym_struct] = ACTIONS(1812), + [anon_sym_union] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1812), + [anon_sym_switch] = ACTIONS(1812), + [anon_sym_case] = ACTIONS(1812), + [anon_sym_default] = ACTIONS(1812), + [anon_sym_while] = ACTIONS(1812), + [anon_sym_do] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1812), + [anon_sym_return] = ACTIONS(1812), + [anon_sym_break] = ACTIONS(1812), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_goto] = ACTIONS(1812), + [anon_sym_DASH_DASH] = ACTIONS(1814), + [anon_sym_PLUS_PLUS] = ACTIONS(1814), + [anon_sym_sizeof] = ACTIONS(1812), + [sym_number_literal] = ACTIONS(1814), + [anon_sym_L_SQUOTE] = ACTIONS(1814), + [anon_sym_u_SQUOTE] = ACTIONS(1814), + [anon_sym_U_SQUOTE] = ACTIONS(1814), + [anon_sym_u8_SQUOTE] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1814), + [anon_sym_L_DQUOTE] = ACTIONS(1814), + [anon_sym_u_DQUOTE] = ACTIONS(1814), + [anon_sym_U_DQUOTE] = ACTIONS(1814), + [anon_sym_u8_DQUOTE] = ACTIONS(1814), + [anon_sym_DQUOTE] = ACTIONS(1814), + [sym_true] = ACTIONS(1812), + [sym_false] = ACTIONS(1812), + [sym_null] = ACTIONS(1812), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1814), + [anon_sym_ATimport] = ACTIONS(1814), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1812), + [anon_sym_ATcompatibility_alias] = ACTIONS(1814), + [anon_sym_ATprotocol] = ACTIONS(1814), + [anon_sym_ATclass] = ACTIONS(1814), + [anon_sym_ATinterface] = ACTIONS(1814), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1812), + [sym_method_attribute_specifier] = ACTIONS(1812), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1812), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1812), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1812), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1812), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1812), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1812), + [anon_sym_NS_AVAILABLE] = ACTIONS(1812), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1812), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1812), + [anon_sym_API_AVAILABLE] = ACTIONS(1812), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1812), + [anon_sym_API_DEPRECATED] = ACTIONS(1812), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1812), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1812), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1812), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1812), + [anon_sym___deprecated_msg] = ACTIONS(1812), + [anon_sym___deprecated_enum_msg] = ACTIONS(1812), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1812), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1812), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1812), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1812), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1812), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1812), + [anon_sym_ATimplementation] = ACTIONS(1814), + [anon_sym_NS_ENUM] = ACTIONS(1812), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1812), + [anon_sym_NS_OPTIONS] = ACTIONS(1812), + [anon_sym_typeof] = ACTIONS(1812), + [anon_sym___typeof] = ACTIONS(1812), + [anon_sym___typeof__] = ACTIONS(1812), + [sym_self] = ACTIONS(1812), + [sym_super] = ACTIONS(1812), + [sym_nil] = ACTIONS(1812), + [sym_id] = ACTIONS(1812), + [sym_instancetype] = ACTIONS(1812), + [sym_Class] = ACTIONS(1812), + [sym_SEL] = ACTIONS(1812), + [sym_IMP] = ACTIONS(1812), + [sym_BOOL] = ACTIONS(1812), + [sym_auto] = ACTIONS(1812), + [anon_sym_ATautoreleasepool] = ACTIONS(1814), + [anon_sym_ATsynchronized] = ACTIONS(1814), + [anon_sym_ATtry] = ACTIONS(1814), + [anon_sym_ATthrow] = ACTIONS(1814), + [anon_sym_ATselector] = ACTIONS(1814), + [anon_sym_ATencode] = ACTIONS(1814), + [anon_sym_AT] = ACTIONS(1812), + [sym_YES] = ACTIONS(1812), + [sym_NO] = ACTIONS(1812), + [anon_sym___builtin_available] = ACTIONS(1812), + [anon_sym_ATavailable] = ACTIONS(1814), + [anon_sym_va_arg] = ACTIONS(1812), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1358] = { + [sym_identifier] = ACTIONS(1976), + [aux_sym_preproc_include_token1] = ACTIONS(1978), + [aux_sym_preproc_def_token1] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1976), + [aux_sym_preproc_if_token2] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1976), + [anon_sym_LPAREN2] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_TILDE] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_CARET] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_typedef] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym___attribute] = ACTIONS(1976), + [anon_sym___attribute__] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1976), + [anon_sym___cdecl] = ACTIONS(1976), + [anon_sym___clrcall] = ACTIONS(1976), + [anon_sym___stdcall] = ACTIONS(1976), + [anon_sym___fastcall] = ACTIONS(1976), + [anon_sym___thiscall] = ACTIONS(1976), + [anon_sym___vectorcall] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_auto] = ACTIONS(1976), + [anon_sym_register] = ACTIONS(1976), + [anon_sym_inline] = ACTIONS(1976), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_volatile] = ACTIONS(1976), + [anon_sym_restrict] = ACTIONS(1976), + [anon_sym__Atomic] = ACTIONS(1976), + [anon_sym_in] = ACTIONS(1976), + [anon_sym_out] = ACTIONS(1976), + [anon_sym_inout] = ACTIONS(1976), + [anon_sym_bycopy] = ACTIONS(1976), + [anon_sym_byref] = ACTIONS(1976), + [anon_sym_oneway] = ACTIONS(1976), + [anon_sym__Nullable] = ACTIONS(1976), + [anon_sym__Nonnull] = ACTIONS(1976), + [anon_sym__Nullable_result] = ACTIONS(1976), + [anon_sym__Null_unspecified] = ACTIONS(1976), + [anon_sym___autoreleasing] = ACTIONS(1976), + [anon_sym___nullable] = ACTIONS(1976), + [anon_sym___nonnull] = ACTIONS(1976), + [anon_sym___strong] = ACTIONS(1976), + [anon_sym___weak] = ACTIONS(1976), + [anon_sym___bridge] = ACTIONS(1976), + [anon_sym___bridge_transfer] = ACTIONS(1976), + [anon_sym___bridge_retained] = ACTIONS(1976), + [anon_sym___unsafe_unretained] = ACTIONS(1976), + [anon_sym___block] = ACTIONS(1976), + [anon_sym___kindof] = ACTIONS(1976), + [anon_sym___unused] = ACTIONS(1976), + [anon_sym__Complex] = ACTIONS(1976), + [anon_sym___complex] = ACTIONS(1976), + [anon_sym_IBOutlet] = ACTIONS(1976), + [anon_sym_IBInspectable] = ACTIONS(1976), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1976), + [anon_sym_unsigned] = ACTIONS(1976), + [anon_sym_long] = ACTIONS(1976), + [anon_sym_short] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_switch] = ACTIONS(1976), + [anon_sym_case] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_goto] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_PLUS_PLUS] = ACTIONS(1978), + [anon_sym_sizeof] = ACTIONS(1976), + [sym_number_literal] = ACTIONS(1978), + [anon_sym_L_SQUOTE] = ACTIONS(1978), + [anon_sym_u_SQUOTE] = ACTIONS(1978), + [anon_sym_U_SQUOTE] = ACTIONS(1978), + [anon_sym_u8_SQUOTE] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_L_DQUOTE] = ACTIONS(1978), + [anon_sym_u_DQUOTE] = ACTIONS(1978), + [anon_sym_U_DQUOTE] = ACTIONS(1978), + [anon_sym_u8_DQUOTE] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1978), + [anon_sym_ATimport] = ACTIONS(1978), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1976), + [anon_sym_ATcompatibility_alias] = ACTIONS(1978), + [anon_sym_ATprotocol] = ACTIONS(1978), + [anon_sym_ATclass] = ACTIONS(1978), + [anon_sym_ATinterface] = ACTIONS(1978), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1976), + [sym_method_attribute_specifier] = ACTIONS(1976), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1976), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE] = ACTIONS(1976), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_API_AVAILABLE] = ACTIONS(1976), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_API_DEPRECATED] = ACTIONS(1976), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1976), + [anon_sym___deprecated_msg] = ACTIONS(1976), + [anon_sym___deprecated_enum_msg] = ACTIONS(1976), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1976), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1976), + [anon_sym_ATimplementation] = ACTIONS(1978), + [anon_sym_NS_ENUM] = ACTIONS(1976), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1976), + [anon_sym_NS_OPTIONS] = ACTIONS(1976), + [anon_sym_typeof] = ACTIONS(1976), + [anon_sym___typeof] = ACTIONS(1976), + [anon_sym___typeof__] = ACTIONS(1976), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_nil] = ACTIONS(1976), + [sym_id] = ACTIONS(1976), + [sym_instancetype] = ACTIONS(1976), + [sym_Class] = ACTIONS(1976), + [sym_SEL] = ACTIONS(1976), + [sym_IMP] = ACTIONS(1976), + [sym_BOOL] = ACTIONS(1976), + [sym_auto] = ACTIONS(1976), + [anon_sym_ATautoreleasepool] = ACTIONS(1978), + [anon_sym_ATsynchronized] = ACTIONS(1978), + [anon_sym_ATtry] = ACTIONS(1978), + [anon_sym_ATthrow] = ACTIONS(1978), + [anon_sym_ATselector] = ACTIONS(1978), + [anon_sym_ATencode] = ACTIONS(1978), + [anon_sym_AT] = ACTIONS(1976), + [sym_YES] = ACTIONS(1976), + [sym_NO] = ACTIONS(1976), + [anon_sym___builtin_available] = ACTIONS(1976), + [anon_sym_ATavailable] = ACTIONS(1978), + [anon_sym_va_arg] = ACTIONS(1976), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1359] = { + [sym_identifier] = ACTIONS(1888), + [aux_sym_preproc_include_token1] = ACTIONS(1890), + [aux_sym_preproc_def_token1] = ACTIONS(1890), + [aux_sym_preproc_if_token1] = ACTIONS(1888), + [aux_sym_preproc_if_token2] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1888), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1888), + [anon_sym_LPAREN2] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_typedef] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym___attribute] = ACTIONS(1888), + [anon_sym___attribute__] = ACTIONS(1888), + [anon_sym___declspec] = ACTIONS(1888), + [anon_sym___cdecl] = ACTIONS(1888), + [anon_sym___clrcall] = ACTIONS(1888), + [anon_sym___stdcall] = ACTIONS(1888), + [anon_sym___fastcall] = ACTIONS(1888), + [anon_sym___thiscall] = ACTIONS(1888), + [anon_sym___vectorcall] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_auto] = ACTIONS(1888), + [anon_sym_register] = ACTIONS(1888), + [anon_sym_inline] = ACTIONS(1888), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_volatile] = ACTIONS(1888), + [anon_sym_restrict] = ACTIONS(1888), + [anon_sym__Atomic] = ACTIONS(1888), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_out] = ACTIONS(1888), + [anon_sym_inout] = ACTIONS(1888), + [anon_sym_bycopy] = ACTIONS(1888), + [anon_sym_byref] = ACTIONS(1888), + [anon_sym_oneway] = ACTIONS(1888), + [anon_sym__Nullable] = ACTIONS(1888), + [anon_sym__Nonnull] = ACTIONS(1888), + [anon_sym__Nullable_result] = ACTIONS(1888), + [anon_sym__Null_unspecified] = ACTIONS(1888), + [anon_sym___autoreleasing] = ACTIONS(1888), + [anon_sym___nullable] = ACTIONS(1888), + [anon_sym___nonnull] = ACTIONS(1888), + [anon_sym___strong] = ACTIONS(1888), + [anon_sym___weak] = ACTIONS(1888), + [anon_sym___bridge] = ACTIONS(1888), + [anon_sym___bridge_transfer] = ACTIONS(1888), + [anon_sym___bridge_retained] = ACTIONS(1888), + [anon_sym___unsafe_unretained] = ACTIONS(1888), + [anon_sym___block] = ACTIONS(1888), + [anon_sym___kindof] = ACTIONS(1888), + [anon_sym___unused] = ACTIONS(1888), + [anon_sym__Complex] = ACTIONS(1888), + [anon_sym___complex] = ACTIONS(1888), + [anon_sym_IBOutlet] = ACTIONS(1888), + [anon_sym_IBInspectable] = ACTIONS(1888), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1888), + [anon_sym_signed] = ACTIONS(1888), + [anon_sym_unsigned] = ACTIONS(1888), + [anon_sym_long] = ACTIONS(1888), + [anon_sym_short] = ACTIONS(1888), + [sym_primitive_type] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_switch] = ACTIONS(1888), + [anon_sym_case] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_do] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_goto] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1890), + [anon_sym_PLUS_PLUS] = ACTIONS(1890), + [anon_sym_sizeof] = ACTIONS(1888), + [sym_number_literal] = ACTIONS(1890), + [anon_sym_L_SQUOTE] = ACTIONS(1890), + [anon_sym_u_SQUOTE] = ACTIONS(1890), + [anon_sym_U_SQUOTE] = ACTIONS(1890), + [anon_sym_u8_SQUOTE] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_L_DQUOTE] = ACTIONS(1890), + [anon_sym_u_DQUOTE] = ACTIONS(1890), + [anon_sym_U_DQUOTE] = ACTIONS(1890), + [anon_sym_u8_DQUOTE] = ACTIONS(1890), + [anon_sym_DQUOTE] = ACTIONS(1890), + [sym_true] = ACTIONS(1888), + [sym_false] = ACTIONS(1888), + [sym_null] = ACTIONS(1888), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1890), + [anon_sym_ATimport] = ACTIONS(1890), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1888), + [anon_sym_ATcompatibility_alias] = ACTIONS(1890), + [anon_sym_ATprotocol] = ACTIONS(1890), + [anon_sym_ATclass] = ACTIONS(1890), + [anon_sym_ATinterface] = ACTIONS(1890), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1888), + [sym_method_attribute_specifier] = ACTIONS(1888), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1888), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1888), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE] = ACTIONS(1888), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1888), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_API_AVAILABLE] = ACTIONS(1888), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_API_DEPRECATED] = ACTIONS(1888), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1888), + [anon_sym___deprecated_msg] = ACTIONS(1888), + [anon_sym___deprecated_enum_msg] = ACTIONS(1888), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1888), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1888), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1888), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1888), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1888), + [anon_sym_ATimplementation] = ACTIONS(1890), + [anon_sym_NS_ENUM] = ACTIONS(1888), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1888), + [anon_sym_NS_OPTIONS] = ACTIONS(1888), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym___typeof] = ACTIONS(1888), + [anon_sym___typeof__] = ACTIONS(1888), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_nil] = ACTIONS(1888), + [sym_id] = ACTIONS(1888), + [sym_instancetype] = ACTIONS(1888), + [sym_Class] = ACTIONS(1888), + [sym_SEL] = ACTIONS(1888), + [sym_IMP] = ACTIONS(1888), + [sym_BOOL] = ACTIONS(1888), + [sym_auto] = ACTIONS(1888), + [anon_sym_ATautoreleasepool] = ACTIONS(1890), + [anon_sym_ATsynchronized] = ACTIONS(1890), + [anon_sym_ATtry] = ACTIONS(1890), + [anon_sym_ATthrow] = ACTIONS(1890), + [anon_sym_ATselector] = ACTIONS(1890), + [anon_sym_ATencode] = ACTIONS(1890), + [anon_sym_AT] = ACTIONS(1888), + [sym_YES] = ACTIONS(1888), + [sym_NO] = ACTIONS(1888), + [anon_sym___builtin_available] = ACTIONS(1888), + [anon_sym_ATavailable] = ACTIONS(1890), + [anon_sym_va_arg] = ACTIONS(1888), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1360] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1361] = { + [sym_identifier] = ACTIONS(1976), + [aux_sym_preproc_include_token1] = ACTIONS(1978), + [aux_sym_preproc_def_token1] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1976), + [aux_sym_preproc_if_token2] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1976), + [anon_sym_LPAREN2] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_TILDE] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_CARET] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_typedef] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym___attribute] = ACTIONS(1976), + [anon_sym___attribute__] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1976), + [anon_sym___cdecl] = ACTIONS(1976), + [anon_sym___clrcall] = ACTIONS(1976), + [anon_sym___stdcall] = ACTIONS(1976), + [anon_sym___fastcall] = ACTIONS(1976), + [anon_sym___thiscall] = ACTIONS(1976), + [anon_sym___vectorcall] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_auto] = ACTIONS(1976), + [anon_sym_register] = ACTIONS(1976), + [anon_sym_inline] = ACTIONS(1976), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_volatile] = ACTIONS(1976), + [anon_sym_restrict] = ACTIONS(1976), + [anon_sym__Atomic] = ACTIONS(1976), + [anon_sym_in] = ACTIONS(1976), + [anon_sym_out] = ACTIONS(1976), + [anon_sym_inout] = ACTIONS(1976), + [anon_sym_bycopy] = ACTIONS(1976), + [anon_sym_byref] = ACTIONS(1976), + [anon_sym_oneway] = ACTIONS(1976), + [anon_sym__Nullable] = ACTIONS(1976), + [anon_sym__Nonnull] = ACTIONS(1976), + [anon_sym__Nullable_result] = ACTIONS(1976), + [anon_sym__Null_unspecified] = ACTIONS(1976), + [anon_sym___autoreleasing] = ACTIONS(1976), + [anon_sym___nullable] = ACTIONS(1976), + [anon_sym___nonnull] = ACTIONS(1976), + [anon_sym___strong] = ACTIONS(1976), + [anon_sym___weak] = ACTIONS(1976), + [anon_sym___bridge] = ACTIONS(1976), + [anon_sym___bridge_transfer] = ACTIONS(1976), + [anon_sym___bridge_retained] = ACTIONS(1976), + [anon_sym___unsafe_unretained] = ACTIONS(1976), + [anon_sym___block] = ACTIONS(1976), + [anon_sym___kindof] = ACTIONS(1976), + [anon_sym___unused] = ACTIONS(1976), + [anon_sym__Complex] = ACTIONS(1976), + [anon_sym___complex] = ACTIONS(1976), + [anon_sym_IBOutlet] = ACTIONS(1976), + [anon_sym_IBInspectable] = ACTIONS(1976), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1976), + [anon_sym_unsigned] = ACTIONS(1976), + [anon_sym_long] = ACTIONS(1976), + [anon_sym_short] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_switch] = ACTIONS(1976), + [anon_sym_case] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_goto] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_PLUS_PLUS] = ACTIONS(1978), + [anon_sym_sizeof] = ACTIONS(1976), + [sym_number_literal] = ACTIONS(1978), + [anon_sym_L_SQUOTE] = ACTIONS(1978), + [anon_sym_u_SQUOTE] = ACTIONS(1978), + [anon_sym_U_SQUOTE] = ACTIONS(1978), + [anon_sym_u8_SQUOTE] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_L_DQUOTE] = ACTIONS(1978), + [anon_sym_u_DQUOTE] = ACTIONS(1978), + [anon_sym_U_DQUOTE] = ACTIONS(1978), + [anon_sym_u8_DQUOTE] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1978), + [anon_sym_ATimport] = ACTIONS(1978), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1976), + [anon_sym_ATcompatibility_alias] = ACTIONS(1978), + [anon_sym_ATprotocol] = ACTIONS(1978), + [anon_sym_ATclass] = ACTIONS(1978), + [anon_sym_ATinterface] = ACTIONS(1978), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1976), + [sym_method_attribute_specifier] = ACTIONS(1976), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1976), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE] = ACTIONS(1976), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_API_AVAILABLE] = ACTIONS(1976), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_API_DEPRECATED] = ACTIONS(1976), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1976), + [anon_sym___deprecated_msg] = ACTIONS(1976), + [anon_sym___deprecated_enum_msg] = ACTIONS(1976), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1976), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1976), + [anon_sym_ATimplementation] = ACTIONS(1978), + [anon_sym_NS_ENUM] = ACTIONS(1976), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1976), + [anon_sym_NS_OPTIONS] = ACTIONS(1976), + [anon_sym_typeof] = ACTIONS(1976), + [anon_sym___typeof] = ACTIONS(1976), + [anon_sym___typeof__] = ACTIONS(1976), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_nil] = ACTIONS(1976), + [sym_id] = ACTIONS(1976), + [sym_instancetype] = ACTIONS(1976), + [sym_Class] = ACTIONS(1976), + [sym_SEL] = ACTIONS(1976), + [sym_IMP] = ACTIONS(1976), + [sym_BOOL] = ACTIONS(1976), + [sym_auto] = ACTIONS(1976), + [anon_sym_ATautoreleasepool] = ACTIONS(1978), + [anon_sym_ATsynchronized] = ACTIONS(1978), + [anon_sym_ATtry] = ACTIONS(1978), + [anon_sym_ATthrow] = ACTIONS(1978), + [anon_sym_ATselector] = ACTIONS(1978), + [anon_sym_ATencode] = ACTIONS(1978), + [anon_sym_AT] = ACTIONS(1976), + [sym_YES] = ACTIONS(1976), + [sym_NO] = ACTIONS(1976), + [anon_sym___builtin_available] = ACTIONS(1976), + [anon_sym_ATavailable] = ACTIONS(1978), + [anon_sym_va_arg] = ACTIONS(1976), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1362] = { + [sym_identifier] = ACTIONS(2088), + [aux_sym_preproc_include_token1] = ACTIONS(2090), + [aux_sym_preproc_def_token1] = ACTIONS(2090), + [aux_sym_preproc_if_token1] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2088), + [anon_sym_LPAREN2] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_TILDE] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_PLUS] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_CARET] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_typedef] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym___attribute] = ACTIONS(2088), + [anon_sym___attribute__] = ACTIONS(2088), + [anon_sym___declspec] = ACTIONS(2088), + [anon_sym___cdecl] = ACTIONS(2088), + [anon_sym___clrcall] = ACTIONS(2088), + [anon_sym___stdcall] = ACTIONS(2088), + [anon_sym___fastcall] = ACTIONS(2088), + [anon_sym___thiscall] = ACTIONS(2088), + [anon_sym___vectorcall] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_auto] = ACTIONS(2088), + [anon_sym_register] = ACTIONS(2088), + [anon_sym_inline] = ACTIONS(2088), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_volatile] = ACTIONS(2088), + [anon_sym_restrict] = ACTIONS(2088), + [anon_sym__Atomic] = ACTIONS(2088), + [anon_sym_in] = ACTIONS(2088), + [anon_sym_out] = ACTIONS(2088), + [anon_sym_inout] = ACTIONS(2088), + [anon_sym_bycopy] = ACTIONS(2088), + [anon_sym_byref] = ACTIONS(2088), + [anon_sym_oneway] = ACTIONS(2088), + [anon_sym__Nullable] = ACTIONS(2088), + [anon_sym__Nonnull] = ACTIONS(2088), + [anon_sym__Nullable_result] = ACTIONS(2088), + [anon_sym__Null_unspecified] = ACTIONS(2088), + [anon_sym___autoreleasing] = ACTIONS(2088), + [anon_sym___nullable] = ACTIONS(2088), + [anon_sym___nonnull] = ACTIONS(2088), + [anon_sym___strong] = ACTIONS(2088), + [anon_sym___weak] = ACTIONS(2088), + [anon_sym___bridge] = ACTIONS(2088), + [anon_sym___bridge_transfer] = ACTIONS(2088), + [anon_sym___bridge_retained] = ACTIONS(2088), + [anon_sym___unsafe_unretained] = ACTIONS(2088), + [anon_sym___block] = ACTIONS(2088), + [anon_sym___kindof] = ACTIONS(2088), + [anon_sym___unused] = ACTIONS(2088), + [anon_sym__Complex] = ACTIONS(2088), + [anon_sym___complex] = ACTIONS(2088), + [anon_sym_IBOutlet] = ACTIONS(2088), + [anon_sym_IBInspectable] = ACTIONS(2088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2088), + [anon_sym_signed] = ACTIONS(2088), + [anon_sym_unsigned] = ACTIONS(2088), + [anon_sym_long] = ACTIONS(2088), + [anon_sym_short] = ACTIONS(2088), + [sym_primitive_type] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_switch] = ACTIONS(2088), + [anon_sym_case] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_do] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_goto] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2090), + [anon_sym_PLUS_PLUS] = ACTIONS(2090), + [anon_sym_sizeof] = ACTIONS(2088), + [sym_number_literal] = ACTIONS(2090), + [anon_sym_L_SQUOTE] = ACTIONS(2090), + [anon_sym_u_SQUOTE] = ACTIONS(2090), + [anon_sym_U_SQUOTE] = ACTIONS(2090), + [anon_sym_u8_SQUOTE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_L_DQUOTE] = ACTIONS(2090), + [anon_sym_u_DQUOTE] = ACTIONS(2090), + [anon_sym_U_DQUOTE] = ACTIONS(2090), + [anon_sym_u8_DQUOTE] = ACTIONS(2090), + [anon_sym_DQUOTE] = ACTIONS(2090), + [sym_true] = ACTIONS(2088), + [sym_false] = ACTIONS(2088), + [sym_null] = ACTIONS(2088), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2090), + [anon_sym_ATimport] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2088), + [anon_sym_ATcompatibility_alias] = ACTIONS(2090), + [anon_sym_ATprotocol] = ACTIONS(2090), + [anon_sym_ATclass] = ACTIONS(2090), + [anon_sym_ATinterface] = ACTIONS(2090), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2088), + [sym_method_attribute_specifier] = ACTIONS(2088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE] = ACTIONS(2088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_API_AVAILABLE] = ACTIONS(2088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_API_DEPRECATED] = ACTIONS(2088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2088), + [anon_sym___deprecated_msg] = ACTIONS(2088), + [anon_sym___deprecated_enum_msg] = ACTIONS(2088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2088), + [anon_sym_ATimplementation] = ACTIONS(2090), + [anon_sym_NS_ENUM] = ACTIONS(2088), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2088), + [anon_sym_NS_OPTIONS] = ACTIONS(2088), + [anon_sym_typeof] = ACTIONS(2088), + [anon_sym___typeof] = ACTIONS(2088), + [anon_sym___typeof__] = ACTIONS(2088), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_nil] = ACTIONS(2088), + [sym_id] = ACTIONS(2088), + [sym_instancetype] = ACTIONS(2088), + [sym_Class] = ACTIONS(2088), + [sym_SEL] = ACTIONS(2088), + [sym_IMP] = ACTIONS(2088), + [sym_BOOL] = ACTIONS(2088), + [sym_auto] = ACTIONS(2088), + [anon_sym_ATautoreleasepool] = ACTIONS(2090), + [anon_sym_ATsynchronized] = ACTIONS(2090), + [anon_sym_ATtry] = ACTIONS(2090), + [anon_sym_ATthrow] = ACTIONS(2090), + [anon_sym_ATselector] = ACTIONS(2090), + [anon_sym_ATencode] = ACTIONS(2090), + [anon_sym_AT] = ACTIONS(2088), + [sym_YES] = ACTIONS(2088), + [sym_NO] = ACTIONS(2088), + [anon_sym___builtin_available] = ACTIONS(2088), + [anon_sym_ATavailable] = ACTIONS(2090), + [anon_sym_va_arg] = ACTIONS(2088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1363] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1364] = { + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2098), + [aux_sym_preproc_def_token1] = ACTIONS(2098), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_if_token2] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2096), + [anon_sym_out] = ACTIONS(2096), + [anon_sym_inout] = ACTIONS(2096), + [anon_sym_bycopy] = ACTIONS(2096), + [anon_sym_byref] = ACTIONS(2096), + [anon_sym_oneway] = ACTIONS(2096), + [anon_sym__Nullable] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym__Nullable_result] = ACTIONS(2096), + [anon_sym__Null_unspecified] = ACTIONS(2096), + [anon_sym___autoreleasing] = ACTIONS(2096), + [anon_sym___nullable] = ACTIONS(2096), + [anon_sym___nonnull] = ACTIONS(2096), + [anon_sym___strong] = ACTIONS(2096), + [anon_sym___weak] = ACTIONS(2096), + [anon_sym___bridge] = ACTIONS(2096), + [anon_sym___bridge_transfer] = ACTIONS(2096), + [anon_sym___bridge_retained] = ACTIONS(2096), + [anon_sym___unsafe_unretained] = ACTIONS(2096), + [anon_sym___block] = ACTIONS(2096), + [anon_sym___kindof] = ACTIONS(2096), + [anon_sym___unused] = ACTIONS(2096), + [anon_sym__Complex] = ACTIONS(2096), + [anon_sym___complex] = ACTIONS(2096), + [anon_sym_IBOutlet] = ACTIONS(2096), + [anon_sym_IBInspectable] = ACTIONS(2096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2096), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [sym_null] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2098), + [anon_sym_ATimport] = ACTIONS(2098), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2096), + [anon_sym_ATcompatibility_alias] = ACTIONS(2098), + [anon_sym_ATprotocol] = ACTIONS(2098), + [anon_sym_ATclass] = ACTIONS(2098), + [anon_sym_ATinterface] = ACTIONS(2098), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2096), + [sym_method_attribute_specifier] = ACTIONS(2096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE] = ACTIONS(2096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_API_AVAILABLE] = ACTIONS(2096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_API_DEPRECATED] = ACTIONS(2096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2096), + [anon_sym___deprecated_msg] = ACTIONS(2096), + [anon_sym___deprecated_enum_msg] = ACTIONS(2096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2096), + [anon_sym_ATimplementation] = ACTIONS(2098), + [anon_sym_NS_ENUM] = ACTIONS(2096), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2096), + [anon_sym_NS_OPTIONS] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(2096), + [anon_sym___typeof] = ACTIONS(2096), + [anon_sym___typeof__] = ACTIONS(2096), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_nil] = ACTIONS(2096), + [sym_id] = ACTIONS(2096), + [sym_instancetype] = ACTIONS(2096), + [sym_Class] = ACTIONS(2096), + [sym_SEL] = ACTIONS(2096), + [sym_IMP] = ACTIONS(2096), + [sym_BOOL] = ACTIONS(2096), + [sym_auto] = ACTIONS(2096), + [anon_sym_ATautoreleasepool] = ACTIONS(2098), + [anon_sym_ATsynchronized] = ACTIONS(2098), + [anon_sym_ATtry] = ACTIONS(2098), + [anon_sym_ATthrow] = ACTIONS(2098), + [anon_sym_ATselector] = ACTIONS(2098), + [anon_sym_ATencode] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2096), + [sym_YES] = ACTIONS(2096), + [sym_NO] = ACTIONS(2096), + [anon_sym___builtin_available] = ACTIONS(2096), + [anon_sym_ATavailable] = ACTIONS(2098), + [anon_sym_va_arg] = ACTIONS(2096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1365] = { + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2034), + [aux_sym_preproc_def_token1] = ACTIONS(2034), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_if_token2] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_auto] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_out] = ACTIONS(2032), + [anon_sym_inout] = ACTIONS(2032), + [anon_sym_bycopy] = ACTIONS(2032), + [anon_sym_byref] = ACTIONS(2032), + [anon_sym_oneway] = ACTIONS(2032), + [anon_sym__Nullable] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym__Nullable_result] = ACTIONS(2032), + [anon_sym__Null_unspecified] = ACTIONS(2032), + [anon_sym___autoreleasing] = ACTIONS(2032), + [anon_sym___nullable] = ACTIONS(2032), + [anon_sym___nonnull] = ACTIONS(2032), + [anon_sym___strong] = ACTIONS(2032), + [anon_sym___weak] = ACTIONS(2032), + [anon_sym___bridge] = ACTIONS(2032), + [anon_sym___bridge_transfer] = ACTIONS(2032), + [anon_sym___bridge_retained] = ACTIONS(2032), + [anon_sym___unsafe_unretained] = ACTIONS(2032), + [anon_sym___block] = ACTIONS(2032), + [anon_sym___kindof] = ACTIONS(2032), + [anon_sym___unused] = ACTIONS(2032), + [anon_sym__Complex] = ACTIONS(2032), + [anon_sym___complex] = ACTIONS(2032), + [anon_sym_IBOutlet] = ACTIONS(2032), + [anon_sym_IBInspectable] = ACTIONS(2032), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2032), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [sym_null] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2034), + [anon_sym_ATimport] = ACTIONS(2034), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2032), + [anon_sym_ATcompatibility_alias] = ACTIONS(2034), + [anon_sym_ATprotocol] = ACTIONS(2034), + [anon_sym_ATclass] = ACTIONS(2034), + [anon_sym_ATinterface] = ACTIONS(2034), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2032), + [sym_method_attribute_specifier] = ACTIONS(2032), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2032), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE] = ACTIONS(2032), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_API_AVAILABLE] = ACTIONS(2032), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_API_DEPRECATED] = ACTIONS(2032), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2032), + [anon_sym___deprecated_msg] = ACTIONS(2032), + [anon_sym___deprecated_enum_msg] = ACTIONS(2032), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2032), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2032), + [anon_sym_ATimplementation] = ACTIONS(2034), + [anon_sym_NS_ENUM] = ACTIONS(2032), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2032), + [anon_sym_NS_OPTIONS] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(2032), + [anon_sym___typeof] = ACTIONS(2032), + [anon_sym___typeof__] = ACTIONS(2032), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_nil] = ACTIONS(2032), + [sym_id] = ACTIONS(2032), + [sym_instancetype] = ACTIONS(2032), + [sym_Class] = ACTIONS(2032), + [sym_SEL] = ACTIONS(2032), + [sym_IMP] = ACTIONS(2032), + [sym_BOOL] = ACTIONS(2032), + [sym_auto] = ACTIONS(2032), + [anon_sym_ATautoreleasepool] = ACTIONS(2034), + [anon_sym_ATsynchronized] = ACTIONS(2034), + [anon_sym_ATtry] = ACTIONS(2034), + [anon_sym_ATthrow] = ACTIONS(2034), + [anon_sym_ATselector] = ACTIONS(2034), + [anon_sym_ATencode] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2032), + [sym_YES] = ACTIONS(2032), + [sym_NO] = ACTIONS(2032), + [anon_sym___builtin_available] = ACTIONS(2032), + [anon_sym_ATavailable] = ACTIONS(2034), + [anon_sym_va_arg] = ACTIONS(2032), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1366] = { + [sym_identifier] = ACTIONS(1976), + [aux_sym_preproc_include_token1] = ACTIONS(1978), + [aux_sym_preproc_def_token1] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1976), + [aux_sym_preproc_if_token2] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1976), + [anon_sym_LPAREN2] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_TILDE] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_CARET] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_typedef] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym___attribute] = ACTIONS(1976), + [anon_sym___attribute__] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1976), + [anon_sym___cdecl] = ACTIONS(1976), + [anon_sym___clrcall] = ACTIONS(1976), + [anon_sym___stdcall] = ACTIONS(1976), + [anon_sym___fastcall] = ACTIONS(1976), + [anon_sym___thiscall] = ACTIONS(1976), + [anon_sym___vectorcall] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_auto] = ACTIONS(1976), + [anon_sym_register] = ACTIONS(1976), + [anon_sym_inline] = ACTIONS(1976), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_volatile] = ACTIONS(1976), + [anon_sym_restrict] = ACTIONS(1976), + [anon_sym__Atomic] = ACTIONS(1976), + [anon_sym_in] = ACTIONS(1976), + [anon_sym_out] = ACTIONS(1976), + [anon_sym_inout] = ACTIONS(1976), + [anon_sym_bycopy] = ACTIONS(1976), + [anon_sym_byref] = ACTIONS(1976), + [anon_sym_oneway] = ACTIONS(1976), + [anon_sym__Nullable] = ACTIONS(1976), + [anon_sym__Nonnull] = ACTIONS(1976), + [anon_sym__Nullable_result] = ACTIONS(1976), + [anon_sym__Null_unspecified] = ACTIONS(1976), + [anon_sym___autoreleasing] = ACTIONS(1976), + [anon_sym___nullable] = ACTIONS(1976), + [anon_sym___nonnull] = ACTIONS(1976), + [anon_sym___strong] = ACTIONS(1976), + [anon_sym___weak] = ACTIONS(1976), + [anon_sym___bridge] = ACTIONS(1976), + [anon_sym___bridge_transfer] = ACTIONS(1976), + [anon_sym___bridge_retained] = ACTIONS(1976), + [anon_sym___unsafe_unretained] = ACTIONS(1976), + [anon_sym___block] = ACTIONS(1976), + [anon_sym___kindof] = ACTIONS(1976), + [anon_sym___unused] = ACTIONS(1976), + [anon_sym__Complex] = ACTIONS(1976), + [anon_sym___complex] = ACTIONS(1976), + [anon_sym_IBOutlet] = ACTIONS(1976), + [anon_sym_IBInspectable] = ACTIONS(1976), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1976), + [anon_sym_unsigned] = ACTIONS(1976), + [anon_sym_long] = ACTIONS(1976), + [anon_sym_short] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_switch] = ACTIONS(1976), + [anon_sym_case] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_goto] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_PLUS_PLUS] = ACTIONS(1978), + [anon_sym_sizeof] = ACTIONS(1976), + [sym_number_literal] = ACTIONS(1978), + [anon_sym_L_SQUOTE] = ACTIONS(1978), + [anon_sym_u_SQUOTE] = ACTIONS(1978), + [anon_sym_U_SQUOTE] = ACTIONS(1978), + [anon_sym_u8_SQUOTE] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_L_DQUOTE] = ACTIONS(1978), + [anon_sym_u_DQUOTE] = ACTIONS(1978), + [anon_sym_U_DQUOTE] = ACTIONS(1978), + [anon_sym_u8_DQUOTE] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1978), + [anon_sym_ATimport] = ACTIONS(1978), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1976), + [anon_sym_ATcompatibility_alias] = ACTIONS(1978), + [anon_sym_ATprotocol] = ACTIONS(1978), + [anon_sym_ATclass] = ACTIONS(1978), + [anon_sym_ATinterface] = ACTIONS(1978), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1976), + [sym_method_attribute_specifier] = ACTIONS(1976), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1976), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE] = ACTIONS(1976), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_API_AVAILABLE] = ACTIONS(1976), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_API_DEPRECATED] = ACTIONS(1976), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1976), + [anon_sym___deprecated_msg] = ACTIONS(1976), + [anon_sym___deprecated_enum_msg] = ACTIONS(1976), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1976), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1976), + [anon_sym_ATimplementation] = ACTIONS(1978), + [anon_sym_NS_ENUM] = ACTIONS(1976), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1976), + [anon_sym_NS_OPTIONS] = ACTIONS(1976), + [anon_sym_typeof] = ACTIONS(1976), + [anon_sym___typeof] = ACTIONS(1976), + [anon_sym___typeof__] = ACTIONS(1976), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_nil] = ACTIONS(1976), + [sym_id] = ACTIONS(1976), + [sym_instancetype] = ACTIONS(1976), + [sym_Class] = ACTIONS(1976), + [sym_SEL] = ACTIONS(1976), + [sym_IMP] = ACTIONS(1976), + [sym_BOOL] = ACTIONS(1976), + [sym_auto] = ACTIONS(1976), + [anon_sym_ATautoreleasepool] = ACTIONS(1978), + [anon_sym_ATsynchronized] = ACTIONS(1978), + [anon_sym_ATtry] = ACTIONS(1978), + [anon_sym_ATthrow] = ACTIONS(1978), + [anon_sym_ATselector] = ACTIONS(1978), + [anon_sym_ATencode] = ACTIONS(1978), + [anon_sym_AT] = ACTIONS(1976), + [sym_YES] = ACTIONS(1976), + [sym_NO] = ACTIONS(1976), + [anon_sym___builtin_available] = ACTIONS(1976), + [anon_sym_ATavailable] = ACTIONS(1978), + [anon_sym_va_arg] = ACTIONS(1976), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1367] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1368] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1369] = { + [sym_identifier] = ACTIONS(1884), + [aux_sym_preproc_include_token1] = ACTIONS(1886), + [aux_sym_preproc_def_token1] = ACTIONS(1886), + [aux_sym_preproc_if_token1] = ACTIONS(1884), + [aux_sym_preproc_if_token2] = ACTIONS(1884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1884), + [anon_sym_LPAREN2] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1886), + [anon_sym_TILDE] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_CARET] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_typedef] = ACTIONS(1884), + [anon_sym_extern] = ACTIONS(1884), + [anon_sym___attribute] = ACTIONS(1884), + [anon_sym___attribute__] = ACTIONS(1884), + [anon_sym___declspec] = ACTIONS(1884), + [anon_sym___cdecl] = ACTIONS(1884), + [anon_sym___clrcall] = ACTIONS(1884), + [anon_sym___stdcall] = ACTIONS(1884), + [anon_sym___fastcall] = ACTIONS(1884), + [anon_sym___thiscall] = ACTIONS(1884), + [anon_sym___vectorcall] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1886), + [anon_sym_static] = ACTIONS(1884), + [anon_sym_auto] = ACTIONS(1884), + [anon_sym_register] = ACTIONS(1884), + [anon_sym_inline] = ACTIONS(1884), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1884), + [anon_sym_const] = ACTIONS(1884), + [anon_sym_volatile] = ACTIONS(1884), + [anon_sym_restrict] = ACTIONS(1884), + [anon_sym__Atomic] = ACTIONS(1884), + [anon_sym_in] = ACTIONS(1884), + [anon_sym_out] = ACTIONS(1884), + [anon_sym_inout] = ACTIONS(1884), + [anon_sym_bycopy] = ACTIONS(1884), + [anon_sym_byref] = ACTIONS(1884), + [anon_sym_oneway] = ACTIONS(1884), + [anon_sym__Nullable] = ACTIONS(1884), + [anon_sym__Nonnull] = ACTIONS(1884), + [anon_sym__Nullable_result] = ACTIONS(1884), + [anon_sym__Null_unspecified] = ACTIONS(1884), + [anon_sym___autoreleasing] = ACTIONS(1884), + [anon_sym___nullable] = ACTIONS(1884), + [anon_sym___nonnull] = ACTIONS(1884), + [anon_sym___strong] = ACTIONS(1884), + [anon_sym___weak] = ACTIONS(1884), + [anon_sym___bridge] = ACTIONS(1884), + [anon_sym___bridge_transfer] = ACTIONS(1884), + [anon_sym___bridge_retained] = ACTIONS(1884), + [anon_sym___unsafe_unretained] = ACTIONS(1884), + [anon_sym___block] = ACTIONS(1884), + [anon_sym___kindof] = ACTIONS(1884), + [anon_sym___unused] = ACTIONS(1884), + [anon_sym__Complex] = ACTIONS(1884), + [anon_sym___complex] = ACTIONS(1884), + [anon_sym_IBOutlet] = ACTIONS(1884), + [anon_sym_IBInspectable] = ACTIONS(1884), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1884), + [anon_sym_signed] = ACTIONS(1884), + [anon_sym_unsigned] = ACTIONS(1884), + [anon_sym_long] = ACTIONS(1884), + [anon_sym_short] = ACTIONS(1884), + [sym_primitive_type] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1884), + [anon_sym_struct] = ACTIONS(1884), + [anon_sym_union] = ACTIONS(1884), + [anon_sym_if] = ACTIONS(1884), + [anon_sym_switch] = ACTIONS(1884), + [anon_sym_case] = ACTIONS(1884), + [anon_sym_default] = ACTIONS(1884), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_do] = ACTIONS(1884), + [anon_sym_for] = ACTIONS(1884), + [anon_sym_return] = ACTIONS(1884), + [anon_sym_break] = ACTIONS(1884), + [anon_sym_continue] = ACTIONS(1884), + [anon_sym_goto] = ACTIONS(1884), + [anon_sym_DASH_DASH] = ACTIONS(1886), + [anon_sym_PLUS_PLUS] = ACTIONS(1886), + [anon_sym_sizeof] = ACTIONS(1884), + [sym_number_literal] = ACTIONS(1886), + [anon_sym_L_SQUOTE] = ACTIONS(1886), + [anon_sym_u_SQUOTE] = ACTIONS(1886), + [anon_sym_U_SQUOTE] = ACTIONS(1886), + [anon_sym_u8_SQUOTE] = ACTIONS(1886), + [anon_sym_SQUOTE] = ACTIONS(1886), + [anon_sym_L_DQUOTE] = ACTIONS(1886), + [anon_sym_u_DQUOTE] = ACTIONS(1886), + [anon_sym_U_DQUOTE] = ACTIONS(1886), + [anon_sym_u8_DQUOTE] = ACTIONS(1886), + [anon_sym_DQUOTE] = ACTIONS(1886), + [sym_true] = ACTIONS(1884), + [sym_false] = ACTIONS(1884), + [sym_null] = ACTIONS(1884), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1886), + [anon_sym_ATimport] = ACTIONS(1886), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1884), + [anon_sym_ATcompatibility_alias] = ACTIONS(1886), + [anon_sym_ATprotocol] = ACTIONS(1886), + [anon_sym_ATclass] = ACTIONS(1886), + [anon_sym_ATinterface] = ACTIONS(1886), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1884), + [sym_method_attribute_specifier] = ACTIONS(1884), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1884), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1884), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1884), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1884), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1884), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1884), + [anon_sym_NS_AVAILABLE] = ACTIONS(1884), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1884), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1884), + [anon_sym_API_AVAILABLE] = ACTIONS(1884), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1884), + [anon_sym_API_DEPRECATED] = ACTIONS(1884), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1884), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1884), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1884), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1884), + [anon_sym___deprecated_msg] = ACTIONS(1884), + [anon_sym___deprecated_enum_msg] = ACTIONS(1884), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1884), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1884), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1884), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1884), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1884), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1884), + [anon_sym_ATimplementation] = ACTIONS(1886), + [anon_sym_NS_ENUM] = ACTIONS(1884), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1884), + [anon_sym_NS_OPTIONS] = ACTIONS(1884), + [anon_sym_typeof] = ACTIONS(1884), + [anon_sym___typeof] = ACTIONS(1884), + [anon_sym___typeof__] = ACTIONS(1884), + [sym_self] = ACTIONS(1884), + [sym_super] = ACTIONS(1884), + [sym_nil] = ACTIONS(1884), + [sym_id] = ACTIONS(1884), + [sym_instancetype] = ACTIONS(1884), + [sym_Class] = ACTIONS(1884), + [sym_SEL] = ACTIONS(1884), + [sym_IMP] = ACTIONS(1884), + [sym_BOOL] = ACTIONS(1884), + [sym_auto] = ACTIONS(1884), + [anon_sym_ATautoreleasepool] = ACTIONS(1886), + [anon_sym_ATsynchronized] = ACTIONS(1886), + [anon_sym_ATtry] = ACTIONS(1886), + [anon_sym_ATthrow] = ACTIONS(1886), + [anon_sym_ATselector] = ACTIONS(1886), + [anon_sym_ATencode] = ACTIONS(1886), + [anon_sym_AT] = ACTIONS(1884), + [sym_YES] = ACTIONS(1884), + [sym_NO] = ACTIONS(1884), + [anon_sym___builtin_available] = ACTIONS(1884), + [anon_sym_ATavailable] = ACTIONS(1886), + [anon_sym_va_arg] = ACTIONS(1884), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1370] = { + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2098), + [aux_sym_preproc_def_token1] = ACTIONS(2098), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_if_token2] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2096), + [anon_sym_out] = ACTIONS(2096), + [anon_sym_inout] = ACTIONS(2096), + [anon_sym_bycopy] = ACTIONS(2096), + [anon_sym_byref] = ACTIONS(2096), + [anon_sym_oneway] = ACTIONS(2096), + [anon_sym__Nullable] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym__Nullable_result] = ACTIONS(2096), + [anon_sym__Null_unspecified] = ACTIONS(2096), + [anon_sym___autoreleasing] = ACTIONS(2096), + [anon_sym___nullable] = ACTIONS(2096), + [anon_sym___nonnull] = ACTIONS(2096), + [anon_sym___strong] = ACTIONS(2096), + [anon_sym___weak] = ACTIONS(2096), + [anon_sym___bridge] = ACTIONS(2096), + [anon_sym___bridge_transfer] = ACTIONS(2096), + [anon_sym___bridge_retained] = ACTIONS(2096), + [anon_sym___unsafe_unretained] = ACTIONS(2096), + [anon_sym___block] = ACTIONS(2096), + [anon_sym___kindof] = ACTIONS(2096), + [anon_sym___unused] = ACTIONS(2096), + [anon_sym__Complex] = ACTIONS(2096), + [anon_sym___complex] = ACTIONS(2096), + [anon_sym_IBOutlet] = ACTIONS(2096), + [anon_sym_IBInspectable] = ACTIONS(2096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2096), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [sym_null] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2098), + [anon_sym_ATimport] = ACTIONS(2098), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2096), + [anon_sym_ATcompatibility_alias] = ACTIONS(2098), + [anon_sym_ATprotocol] = ACTIONS(2098), + [anon_sym_ATclass] = ACTIONS(2098), + [anon_sym_ATinterface] = ACTIONS(2098), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2096), + [sym_method_attribute_specifier] = ACTIONS(2096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE] = ACTIONS(2096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_API_AVAILABLE] = ACTIONS(2096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_API_DEPRECATED] = ACTIONS(2096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2096), + [anon_sym___deprecated_msg] = ACTIONS(2096), + [anon_sym___deprecated_enum_msg] = ACTIONS(2096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2096), + [anon_sym_ATimplementation] = ACTIONS(2098), + [anon_sym_NS_ENUM] = ACTIONS(2096), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2096), + [anon_sym_NS_OPTIONS] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(2096), + [anon_sym___typeof] = ACTIONS(2096), + [anon_sym___typeof__] = ACTIONS(2096), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_nil] = ACTIONS(2096), + [sym_id] = ACTIONS(2096), + [sym_instancetype] = ACTIONS(2096), + [sym_Class] = ACTIONS(2096), + [sym_SEL] = ACTIONS(2096), + [sym_IMP] = ACTIONS(2096), + [sym_BOOL] = ACTIONS(2096), + [sym_auto] = ACTIONS(2096), + [anon_sym_ATautoreleasepool] = ACTIONS(2098), + [anon_sym_ATsynchronized] = ACTIONS(2098), + [anon_sym_ATtry] = ACTIONS(2098), + [anon_sym_ATthrow] = ACTIONS(2098), + [anon_sym_ATselector] = ACTIONS(2098), + [anon_sym_ATencode] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2096), + [sym_YES] = ACTIONS(2096), + [sym_NO] = ACTIONS(2096), + [anon_sym___builtin_available] = ACTIONS(2096), + [anon_sym_ATavailable] = ACTIONS(2098), + [anon_sym_va_arg] = ACTIONS(2096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1371] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1372] = { + [sym_identifier] = ACTIONS(1976), + [aux_sym_preproc_include_token1] = ACTIONS(1978), + [aux_sym_preproc_def_token1] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1976), + [aux_sym_preproc_if_token2] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1976), + [anon_sym_LPAREN2] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_TILDE] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_CARET] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_typedef] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym___attribute] = ACTIONS(1976), + [anon_sym___attribute__] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1976), + [anon_sym___cdecl] = ACTIONS(1976), + [anon_sym___clrcall] = ACTIONS(1976), + [anon_sym___stdcall] = ACTIONS(1976), + [anon_sym___fastcall] = ACTIONS(1976), + [anon_sym___thiscall] = ACTIONS(1976), + [anon_sym___vectorcall] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_auto] = ACTIONS(1976), + [anon_sym_register] = ACTIONS(1976), + [anon_sym_inline] = ACTIONS(1976), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_volatile] = ACTIONS(1976), + [anon_sym_restrict] = ACTIONS(1976), + [anon_sym__Atomic] = ACTIONS(1976), + [anon_sym_in] = ACTIONS(1976), + [anon_sym_out] = ACTIONS(1976), + [anon_sym_inout] = ACTIONS(1976), + [anon_sym_bycopy] = ACTIONS(1976), + [anon_sym_byref] = ACTIONS(1976), + [anon_sym_oneway] = ACTIONS(1976), + [anon_sym__Nullable] = ACTIONS(1976), + [anon_sym__Nonnull] = ACTIONS(1976), + [anon_sym__Nullable_result] = ACTIONS(1976), + [anon_sym__Null_unspecified] = ACTIONS(1976), + [anon_sym___autoreleasing] = ACTIONS(1976), + [anon_sym___nullable] = ACTIONS(1976), + [anon_sym___nonnull] = ACTIONS(1976), + [anon_sym___strong] = ACTIONS(1976), + [anon_sym___weak] = ACTIONS(1976), + [anon_sym___bridge] = ACTIONS(1976), + [anon_sym___bridge_transfer] = ACTIONS(1976), + [anon_sym___bridge_retained] = ACTIONS(1976), + [anon_sym___unsafe_unretained] = ACTIONS(1976), + [anon_sym___block] = ACTIONS(1976), + [anon_sym___kindof] = ACTIONS(1976), + [anon_sym___unused] = ACTIONS(1976), + [anon_sym__Complex] = ACTIONS(1976), + [anon_sym___complex] = ACTIONS(1976), + [anon_sym_IBOutlet] = ACTIONS(1976), + [anon_sym_IBInspectable] = ACTIONS(1976), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1976), + [anon_sym_unsigned] = ACTIONS(1976), + [anon_sym_long] = ACTIONS(1976), + [anon_sym_short] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_switch] = ACTIONS(1976), + [anon_sym_case] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_goto] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_PLUS_PLUS] = ACTIONS(1978), + [anon_sym_sizeof] = ACTIONS(1976), + [sym_number_literal] = ACTIONS(1978), + [anon_sym_L_SQUOTE] = ACTIONS(1978), + [anon_sym_u_SQUOTE] = ACTIONS(1978), + [anon_sym_U_SQUOTE] = ACTIONS(1978), + [anon_sym_u8_SQUOTE] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_L_DQUOTE] = ACTIONS(1978), + [anon_sym_u_DQUOTE] = ACTIONS(1978), + [anon_sym_U_DQUOTE] = ACTIONS(1978), + [anon_sym_u8_DQUOTE] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1978), + [anon_sym_ATimport] = ACTIONS(1978), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1976), + [anon_sym_ATcompatibility_alias] = ACTIONS(1978), + [anon_sym_ATprotocol] = ACTIONS(1978), + [anon_sym_ATclass] = ACTIONS(1978), + [anon_sym_ATinterface] = ACTIONS(1978), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1976), + [sym_method_attribute_specifier] = ACTIONS(1976), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1976), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE] = ACTIONS(1976), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_API_AVAILABLE] = ACTIONS(1976), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_API_DEPRECATED] = ACTIONS(1976), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1976), + [anon_sym___deprecated_msg] = ACTIONS(1976), + [anon_sym___deprecated_enum_msg] = ACTIONS(1976), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1976), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1976), + [anon_sym_ATimplementation] = ACTIONS(1978), + [anon_sym_NS_ENUM] = ACTIONS(1976), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1976), + [anon_sym_NS_OPTIONS] = ACTIONS(1976), + [anon_sym_typeof] = ACTIONS(1976), + [anon_sym___typeof] = ACTIONS(1976), + [anon_sym___typeof__] = ACTIONS(1976), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_nil] = ACTIONS(1976), + [sym_id] = ACTIONS(1976), + [sym_instancetype] = ACTIONS(1976), + [sym_Class] = ACTIONS(1976), + [sym_SEL] = ACTIONS(1976), + [sym_IMP] = ACTIONS(1976), + [sym_BOOL] = ACTIONS(1976), + [sym_auto] = ACTIONS(1976), + [anon_sym_ATautoreleasepool] = ACTIONS(1978), + [anon_sym_ATsynchronized] = ACTIONS(1978), + [anon_sym_ATtry] = ACTIONS(1978), + [anon_sym_ATthrow] = ACTIONS(1978), + [anon_sym_ATselector] = ACTIONS(1978), + [anon_sym_ATencode] = ACTIONS(1978), + [anon_sym_AT] = ACTIONS(1976), + [sym_YES] = ACTIONS(1976), + [sym_NO] = ACTIONS(1976), + [anon_sym___builtin_available] = ACTIONS(1976), + [anon_sym_ATavailable] = ACTIONS(1978), + [anon_sym_va_arg] = ACTIONS(1976), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1373] = { + [sym_identifier] = ACTIONS(1976), + [aux_sym_preproc_include_token1] = ACTIONS(1978), + [aux_sym_preproc_def_token1] = ACTIONS(1978), + [aux_sym_preproc_if_token1] = ACTIONS(1976), + [aux_sym_preproc_if_token2] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1976), + [anon_sym_LPAREN2] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_TILDE] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_CARET] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_typedef] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym___attribute] = ACTIONS(1976), + [anon_sym___attribute__] = ACTIONS(1976), + [anon_sym___declspec] = ACTIONS(1976), + [anon_sym___cdecl] = ACTIONS(1976), + [anon_sym___clrcall] = ACTIONS(1976), + [anon_sym___stdcall] = ACTIONS(1976), + [anon_sym___fastcall] = ACTIONS(1976), + [anon_sym___thiscall] = ACTIONS(1976), + [anon_sym___vectorcall] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_auto] = ACTIONS(1976), + [anon_sym_register] = ACTIONS(1976), + [anon_sym_inline] = ACTIONS(1976), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_volatile] = ACTIONS(1976), + [anon_sym_restrict] = ACTIONS(1976), + [anon_sym__Atomic] = ACTIONS(1976), + [anon_sym_in] = ACTIONS(1976), + [anon_sym_out] = ACTIONS(1976), + [anon_sym_inout] = ACTIONS(1976), + [anon_sym_bycopy] = ACTIONS(1976), + [anon_sym_byref] = ACTIONS(1976), + [anon_sym_oneway] = ACTIONS(1976), + [anon_sym__Nullable] = ACTIONS(1976), + [anon_sym__Nonnull] = ACTIONS(1976), + [anon_sym__Nullable_result] = ACTIONS(1976), + [anon_sym__Null_unspecified] = ACTIONS(1976), + [anon_sym___autoreleasing] = ACTIONS(1976), + [anon_sym___nullable] = ACTIONS(1976), + [anon_sym___nonnull] = ACTIONS(1976), + [anon_sym___strong] = ACTIONS(1976), + [anon_sym___weak] = ACTIONS(1976), + [anon_sym___bridge] = ACTIONS(1976), + [anon_sym___bridge_transfer] = ACTIONS(1976), + [anon_sym___bridge_retained] = ACTIONS(1976), + [anon_sym___unsafe_unretained] = ACTIONS(1976), + [anon_sym___block] = ACTIONS(1976), + [anon_sym___kindof] = ACTIONS(1976), + [anon_sym___unused] = ACTIONS(1976), + [anon_sym__Complex] = ACTIONS(1976), + [anon_sym___complex] = ACTIONS(1976), + [anon_sym_IBOutlet] = ACTIONS(1976), + [anon_sym_IBInspectable] = ACTIONS(1976), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1976), + [anon_sym_signed] = ACTIONS(1976), + [anon_sym_unsigned] = ACTIONS(1976), + [anon_sym_long] = ACTIONS(1976), + [anon_sym_short] = ACTIONS(1976), + [sym_primitive_type] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_switch] = ACTIONS(1976), + [anon_sym_case] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_goto] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_PLUS_PLUS] = ACTIONS(1978), + [anon_sym_sizeof] = ACTIONS(1976), + [sym_number_literal] = ACTIONS(1978), + [anon_sym_L_SQUOTE] = ACTIONS(1978), + [anon_sym_u_SQUOTE] = ACTIONS(1978), + [anon_sym_U_SQUOTE] = ACTIONS(1978), + [anon_sym_u8_SQUOTE] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_L_DQUOTE] = ACTIONS(1978), + [anon_sym_u_DQUOTE] = ACTIONS(1978), + [anon_sym_U_DQUOTE] = ACTIONS(1978), + [anon_sym_u8_DQUOTE] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1978), + [anon_sym_ATimport] = ACTIONS(1978), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1976), + [anon_sym_ATcompatibility_alias] = ACTIONS(1978), + [anon_sym_ATprotocol] = ACTIONS(1978), + [anon_sym_ATclass] = ACTIONS(1978), + [anon_sym_ATinterface] = ACTIONS(1978), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1976), + [sym_method_attribute_specifier] = ACTIONS(1976), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1976), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1976), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE] = ACTIONS(1976), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1976), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_API_AVAILABLE] = ACTIONS(1976), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_API_DEPRECATED] = ACTIONS(1976), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1976), + [anon_sym___deprecated_msg] = ACTIONS(1976), + [anon_sym___deprecated_enum_msg] = ACTIONS(1976), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1976), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1976), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1976), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1976), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1976), + [anon_sym_ATimplementation] = ACTIONS(1978), + [anon_sym_NS_ENUM] = ACTIONS(1976), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1976), + [anon_sym_NS_OPTIONS] = ACTIONS(1976), + [anon_sym_typeof] = ACTIONS(1976), + [anon_sym___typeof] = ACTIONS(1976), + [anon_sym___typeof__] = ACTIONS(1976), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_nil] = ACTIONS(1976), + [sym_id] = ACTIONS(1976), + [sym_instancetype] = ACTIONS(1976), + [sym_Class] = ACTIONS(1976), + [sym_SEL] = ACTIONS(1976), + [sym_IMP] = ACTIONS(1976), + [sym_BOOL] = ACTIONS(1976), + [sym_auto] = ACTIONS(1976), + [anon_sym_ATautoreleasepool] = ACTIONS(1978), + [anon_sym_ATsynchronized] = ACTIONS(1978), + [anon_sym_ATtry] = ACTIONS(1978), + [anon_sym_ATthrow] = ACTIONS(1978), + [anon_sym_ATselector] = ACTIONS(1978), + [anon_sym_ATencode] = ACTIONS(1978), + [anon_sym_AT] = ACTIONS(1976), + [sym_YES] = ACTIONS(1976), + [sym_NO] = ACTIONS(1976), + [anon_sym___builtin_available] = ACTIONS(1976), + [anon_sym_ATavailable] = ACTIONS(1978), + [anon_sym_va_arg] = ACTIONS(1976), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1374] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1375] = { + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2034), + [aux_sym_preproc_def_token1] = ACTIONS(2034), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_if_token2] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_auto] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_out] = ACTIONS(2032), + [anon_sym_inout] = ACTIONS(2032), + [anon_sym_bycopy] = ACTIONS(2032), + [anon_sym_byref] = ACTIONS(2032), + [anon_sym_oneway] = ACTIONS(2032), + [anon_sym__Nullable] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym__Nullable_result] = ACTIONS(2032), + [anon_sym__Null_unspecified] = ACTIONS(2032), + [anon_sym___autoreleasing] = ACTIONS(2032), + [anon_sym___nullable] = ACTIONS(2032), + [anon_sym___nonnull] = ACTIONS(2032), + [anon_sym___strong] = ACTIONS(2032), + [anon_sym___weak] = ACTIONS(2032), + [anon_sym___bridge] = ACTIONS(2032), + [anon_sym___bridge_transfer] = ACTIONS(2032), + [anon_sym___bridge_retained] = ACTIONS(2032), + [anon_sym___unsafe_unretained] = ACTIONS(2032), + [anon_sym___block] = ACTIONS(2032), + [anon_sym___kindof] = ACTIONS(2032), + [anon_sym___unused] = ACTIONS(2032), + [anon_sym__Complex] = ACTIONS(2032), + [anon_sym___complex] = ACTIONS(2032), + [anon_sym_IBOutlet] = ACTIONS(2032), + [anon_sym_IBInspectable] = ACTIONS(2032), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2032), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [sym_null] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2034), + [anon_sym_ATimport] = ACTIONS(2034), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2032), + [anon_sym_ATcompatibility_alias] = ACTIONS(2034), + [anon_sym_ATprotocol] = ACTIONS(2034), + [anon_sym_ATclass] = ACTIONS(2034), + [anon_sym_ATinterface] = ACTIONS(2034), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2032), + [sym_method_attribute_specifier] = ACTIONS(2032), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2032), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE] = ACTIONS(2032), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_API_AVAILABLE] = ACTIONS(2032), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_API_DEPRECATED] = ACTIONS(2032), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2032), + [anon_sym___deprecated_msg] = ACTIONS(2032), + [anon_sym___deprecated_enum_msg] = ACTIONS(2032), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2032), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2032), + [anon_sym_ATimplementation] = ACTIONS(2034), + [anon_sym_NS_ENUM] = ACTIONS(2032), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2032), + [anon_sym_NS_OPTIONS] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(2032), + [anon_sym___typeof] = ACTIONS(2032), + [anon_sym___typeof__] = ACTIONS(2032), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_nil] = ACTIONS(2032), + [sym_id] = ACTIONS(2032), + [sym_instancetype] = ACTIONS(2032), + [sym_Class] = ACTIONS(2032), + [sym_SEL] = ACTIONS(2032), + [sym_IMP] = ACTIONS(2032), + [sym_BOOL] = ACTIONS(2032), + [sym_auto] = ACTIONS(2032), + [anon_sym_ATautoreleasepool] = ACTIONS(2034), + [anon_sym_ATsynchronized] = ACTIONS(2034), + [anon_sym_ATtry] = ACTIONS(2034), + [anon_sym_ATthrow] = ACTIONS(2034), + [anon_sym_ATselector] = ACTIONS(2034), + [anon_sym_ATencode] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2032), + [sym_YES] = ACTIONS(2032), + [sym_NO] = ACTIONS(2032), + [anon_sym___builtin_available] = ACTIONS(2032), + [anon_sym_ATavailable] = ACTIONS(2034), + [anon_sym_va_arg] = ACTIONS(2032), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1376] = { + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2034), + [aux_sym_preproc_def_token1] = ACTIONS(2034), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_if_token2] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_auto] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_out] = ACTIONS(2032), + [anon_sym_inout] = ACTIONS(2032), + [anon_sym_bycopy] = ACTIONS(2032), + [anon_sym_byref] = ACTIONS(2032), + [anon_sym_oneway] = ACTIONS(2032), + [anon_sym__Nullable] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym__Nullable_result] = ACTIONS(2032), + [anon_sym__Null_unspecified] = ACTIONS(2032), + [anon_sym___autoreleasing] = ACTIONS(2032), + [anon_sym___nullable] = ACTIONS(2032), + [anon_sym___nonnull] = ACTIONS(2032), + [anon_sym___strong] = ACTIONS(2032), + [anon_sym___weak] = ACTIONS(2032), + [anon_sym___bridge] = ACTIONS(2032), + [anon_sym___bridge_transfer] = ACTIONS(2032), + [anon_sym___bridge_retained] = ACTIONS(2032), + [anon_sym___unsafe_unretained] = ACTIONS(2032), + [anon_sym___block] = ACTIONS(2032), + [anon_sym___kindof] = ACTIONS(2032), + [anon_sym___unused] = ACTIONS(2032), + [anon_sym__Complex] = ACTIONS(2032), + [anon_sym___complex] = ACTIONS(2032), + [anon_sym_IBOutlet] = ACTIONS(2032), + [anon_sym_IBInspectable] = ACTIONS(2032), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2032), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [sym_null] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2034), + [anon_sym_ATimport] = ACTIONS(2034), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2032), + [anon_sym_ATcompatibility_alias] = ACTIONS(2034), + [anon_sym_ATprotocol] = ACTIONS(2034), + [anon_sym_ATclass] = ACTIONS(2034), + [anon_sym_ATinterface] = ACTIONS(2034), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2032), + [sym_method_attribute_specifier] = ACTIONS(2032), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2032), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE] = ACTIONS(2032), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_API_AVAILABLE] = ACTIONS(2032), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_API_DEPRECATED] = ACTIONS(2032), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2032), + [anon_sym___deprecated_msg] = ACTIONS(2032), + [anon_sym___deprecated_enum_msg] = ACTIONS(2032), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2032), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2032), + [anon_sym_ATimplementation] = ACTIONS(2034), + [anon_sym_NS_ENUM] = ACTIONS(2032), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2032), + [anon_sym_NS_OPTIONS] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(2032), + [anon_sym___typeof] = ACTIONS(2032), + [anon_sym___typeof__] = ACTIONS(2032), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_nil] = ACTIONS(2032), + [sym_id] = ACTIONS(2032), + [sym_instancetype] = ACTIONS(2032), + [sym_Class] = ACTIONS(2032), + [sym_SEL] = ACTIONS(2032), + [sym_IMP] = ACTIONS(2032), + [sym_BOOL] = ACTIONS(2032), + [sym_auto] = ACTIONS(2032), + [anon_sym_ATautoreleasepool] = ACTIONS(2034), + [anon_sym_ATsynchronized] = ACTIONS(2034), + [anon_sym_ATtry] = ACTIONS(2034), + [anon_sym_ATthrow] = ACTIONS(2034), + [anon_sym_ATselector] = ACTIONS(2034), + [anon_sym_ATencode] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2032), + [sym_YES] = ACTIONS(2032), + [sym_NO] = ACTIONS(2032), + [anon_sym___builtin_available] = ACTIONS(2032), + [anon_sym_ATavailable] = ACTIONS(2034), + [anon_sym_va_arg] = ACTIONS(2032), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1377] = { + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2098), + [aux_sym_preproc_def_token1] = ACTIONS(2098), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_if_token2] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2096), + [anon_sym_out] = ACTIONS(2096), + [anon_sym_inout] = ACTIONS(2096), + [anon_sym_bycopy] = ACTIONS(2096), + [anon_sym_byref] = ACTIONS(2096), + [anon_sym_oneway] = ACTIONS(2096), + [anon_sym__Nullable] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym__Nullable_result] = ACTIONS(2096), + [anon_sym__Null_unspecified] = ACTIONS(2096), + [anon_sym___autoreleasing] = ACTIONS(2096), + [anon_sym___nullable] = ACTIONS(2096), + [anon_sym___nonnull] = ACTIONS(2096), + [anon_sym___strong] = ACTIONS(2096), + [anon_sym___weak] = ACTIONS(2096), + [anon_sym___bridge] = ACTIONS(2096), + [anon_sym___bridge_transfer] = ACTIONS(2096), + [anon_sym___bridge_retained] = ACTIONS(2096), + [anon_sym___unsafe_unretained] = ACTIONS(2096), + [anon_sym___block] = ACTIONS(2096), + [anon_sym___kindof] = ACTIONS(2096), + [anon_sym___unused] = ACTIONS(2096), + [anon_sym__Complex] = ACTIONS(2096), + [anon_sym___complex] = ACTIONS(2096), + [anon_sym_IBOutlet] = ACTIONS(2096), + [anon_sym_IBInspectable] = ACTIONS(2096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2096), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [sym_null] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2098), + [anon_sym_ATimport] = ACTIONS(2098), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2096), + [anon_sym_ATcompatibility_alias] = ACTIONS(2098), + [anon_sym_ATprotocol] = ACTIONS(2098), + [anon_sym_ATclass] = ACTIONS(2098), + [anon_sym_ATinterface] = ACTIONS(2098), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2096), + [sym_method_attribute_specifier] = ACTIONS(2096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE] = ACTIONS(2096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_API_AVAILABLE] = ACTIONS(2096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_API_DEPRECATED] = ACTIONS(2096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2096), + [anon_sym___deprecated_msg] = ACTIONS(2096), + [anon_sym___deprecated_enum_msg] = ACTIONS(2096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2096), + [anon_sym_ATimplementation] = ACTIONS(2098), + [anon_sym_NS_ENUM] = ACTIONS(2096), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2096), + [anon_sym_NS_OPTIONS] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(2096), + [anon_sym___typeof] = ACTIONS(2096), + [anon_sym___typeof__] = ACTIONS(2096), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_nil] = ACTIONS(2096), + [sym_id] = ACTIONS(2096), + [sym_instancetype] = ACTIONS(2096), + [sym_Class] = ACTIONS(2096), + [sym_SEL] = ACTIONS(2096), + [sym_IMP] = ACTIONS(2096), + [sym_BOOL] = ACTIONS(2096), + [sym_auto] = ACTIONS(2096), + [anon_sym_ATautoreleasepool] = ACTIONS(2098), + [anon_sym_ATsynchronized] = ACTIONS(2098), + [anon_sym_ATtry] = ACTIONS(2098), + [anon_sym_ATthrow] = ACTIONS(2098), + [anon_sym_ATselector] = ACTIONS(2098), + [anon_sym_ATencode] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2096), + [sym_YES] = ACTIONS(2096), + [sym_NO] = ACTIONS(2096), + [anon_sym___builtin_available] = ACTIONS(2096), + [anon_sym_ATavailable] = ACTIONS(2098), + [anon_sym_va_arg] = ACTIONS(2096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1378] = { + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2098), + [aux_sym_preproc_def_token1] = ACTIONS(2098), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_if_token2] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2096), + [anon_sym_out] = ACTIONS(2096), + [anon_sym_inout] = ACTIONS(2096), + [anon_sym_bycopy] = ACTIONS(2096), + [anon_sym_byref] = ACTIONS(2096), + [anon_sym_oneway] = ACTIONS(2096), + [anon_sym__Nullable] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym__Nullable_result] = ACTIONS(2096), + [anon_sym__Null_unspecified] = ACTIONS(2096), + [anon_sym___autoreleasing] = ACTIONS(2096), + [anon_sym___nullable] = ACTIONS(2096), + [anon_sym___nonnull] = ACTIONS(2096), + [anon_sym___strong] = ACTIONS(2096), + [anon_sym___weak] = ACTIONS(2096), + [anon_sym___bridge] = ACTIONS(2096), + [anon_sym___bridge_transfer] = ACTIONS(2096), + [anon_sym___bridge_retained] = ACTIONS(2096), + [anon_sym___unsafe_unretained] = ACTIONS(2096), + [anon_sym___block] = ACTIONS(2096), + [anon_sym___kindof] = ACTIONS(2096), + [anon_sym___unused] = ACTIONS(2096), + [anon_sym__Complex] = ACTIONS(2096), + [anon_sym___complex] = ACTIONS(2096), + [anon_sym_IBOutlet] = ACTIONS(2096), + [anon_sym_IBInspectable] = ACTIONS(2096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2096), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [sym_null] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2098), + [anon_sym_ATimport] = ACTIONS(2098), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2096), + [anon_sym_ATcompatibility_alias] = ACTIONS(2098), + [anon_sym_ATprotocol] = ACTIONS(2098), + [anon_sym_ATclass] = ACTIONS(2098), + [anon_sym_ATinterface] = ACTIONS(2098), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2096), + [sym_method_attribute_specifier] = ACTIONS(2096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE] = ACTIONS(2096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_API_AVAILABLE] = ACTIONS(2096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_API_DEPRECATED] = ACTIONS(2096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2096), + [anon_sym___deprecated_msg] = ACTIONS(2096), + [anon_sym___deprecated_enum_msg] = ACTIONS(2096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2096), + [anon_sym_ATimplementation] = ACTIONS(2098), + [anon_sym_NS_ENUM] = ACTIONS(2096), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2096), + [anon_sym_NS_OPTIONS] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(2096), + [anon_sym___typeof] = ACTIONS(2096), + [anon_sym___typeof__] = ACTIONS(2096), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_nil] = ACTIONS(2096), + [sym_id] = ACTIONS(2096), + [sym_instancetype] = ACTIONS(2096), + [sym_Class] = ACTIONS(2096), + [sym_SEL] = ACTIONS(2096), + [sym_IMP] = ACTIONS(2096), + [sym_BOOL] = ACTIONS(2096), + [sym_auto] = ACTIONS(2096), + [anon_sym_ATautoreleasepool] = ACTIONS(2098), + [anon_sym_ATsynchronized] = ACTIONS(2098), + [anon_sym_ATtry] = ACTIONS(2098), + [anon_sym_ATthrow] = ACTIONS(2098), + [anon_sym_ATselector] = ACTIONS(2098), + [anon_sym_ATencode] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2096), + [sym_YES] = ACTIONS(2096), + [sym_NO] = ACTIONS(2096), + [anon_sym___builtin_available] = ACTIONS(2096), + [anon_sym_ATavailable] = ACTIONS(2098), + [anon_sym_va_arg] = ACTIONS(2096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1379] = { + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2098), + [aux_sym_preproc_def_token1] = ACTIONS(2098), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_if_token2] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2096), + [anon_sym_out] = ACTIONS(2096), + [anon_sym_inout] = ACTIONS(2096), + [anon_sym_bycopy] = ACTIONS(2096), + [anon_sym_byref] = ACTIONS(2096), + [anon_sym_oneway] = ACTIONS(2096), + [anon_sym__Nullable] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym__Nullable_result] = ACTIONS(2096), + [anon_sym__Null_unspecified] = ACTIONS(2096), + [anon_sym___autoreleasing] = ACTIONS(2096), + [anon_sym___nullable] = ACTIONS(2096), + [anon_sym___nonnull] = ACTIONS(2096), + [anon_sym___strong] = ACTIONS(2096), + [anon_sym___weak] = ACTIONS(2096), + [anon_sym___bridge] = ACTIONS(2096), + [anon_sym___bridge_transfer] = ACTIONS(2096), + [anon_sym___bridge_retained] = ACTIONS(2096), + [anon_sym___unsafe_unretained] = ACTIONS(2096), + [anon_sym___block] = ACTIONS(2096), + [anon_sym___kindof] = ACTIONS(2096), + [anon_sym___unused] = ACTIONS(2096), + [anon_sym__Complex] = ACTIONS(2096), + [anon_sym___complex] = ACTIONS(2096), + [anon_sym_IBOutlet] = ACTIONS(2096), + [anon_sym_IBInspectable] = ACTIONS(2096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2096), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [sym_null] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2098), + [anon_sym_ATimport] = ACTIONS(2098), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2096), + [anon_sym_ATcompatibility_alias] = ACTIONS(2098), + [anon_sym_ATprotocol] = ACTIONS(2098), + [anon_sym_ATclass] = ACTIONS(2098), + [anon_sym_ATinterface] = ACTIONS(2098), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2096), + [sym_method_attribute_specifier] = ACTIONS(2096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE] = ACTIONS(2096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_API_AVAILABLE] = ACTIONS(2096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_API_DEPRECATED] = ACTIONS(2096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2096), + [anon_sym___deprecated_msg] = ACTIONS(2096), + [anon_sym___deprecated_enum_msg] = ACTIONS(2096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2096), + [anon_sym_ATimplementation] = ACTIONS(2098), + [anon_sym_NS_ENUM] = ACTIONS(2096), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2096), + [anon_sym_NS_OPTIONS] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(2096), + [anon_sym___typeof] = ACTIONS(2096), + [anon_sym___typeof__] = ACTIONS(2096), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_nil] = ACTIONS(2096), + [sym_id] = ACTIONS(2096), + [sym_instancetype] = ACTIONS(2096), + [sym_Class] = ACTIONS(2096), + [sym_SEL] = ACTIONS(2096), + [sym_IMP] = ACTIONS(2096), + [sym_BOOL] = ACTIONS(2096), + [sym_auto] = ACTIONS(2096), + [anon_sym_ATautoreleasepool] = ACTIONS(2098), + [anon_sym_ATsynchronized] = ACTIONS(2098), + [anon_sym_ATtry] = ACTIONS(2098), + [anon_sym_ATthrow] = ACTIONS(2098), + [anon_sym_ATselector] = ACTIONS(2098), + [anon_sym_ATencode] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2096), + [sym_YES] = ACTIONS(2096), + [sym_NO] = ACTIONS(2096), + [anon_sym___builtin_available] = ACTIONS(2096), + [anon_sym_ATavailable] = ACTIONS(2098), + [anon_sym_va_arg] = ACTIONS(2096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1380] = { + [sym_identifier] = ACTIONS(2096), + [aux_sym_preproc_include_token1] = ACTIONS(2098), + [aux_sym_preproc_def_token1] = ACTIONS(2098), + [aux_sym_preproc_if_token1] = ACTIONS(2096), + [aux_sym_preproc_if_token2] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), + [anon_sym_LPAREN2] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_TILDE] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_PLUS] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_CARET] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_typedef] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym___attribute] = ACTIONS(2096), + [anon_sym___attribute__] = ACTIONS(2096), + [anon_sym___declspec] = ACTIONS(2096), + [anon_sym___cdecl] = ACTIONS(2096), + [anon_sym___clrcall] = ACTIONS(2096), + [anon_sym___stdcall] = ACTIONS(2096), + [anon_sym___fastcall] = ACTIONS(2096), + [anon_sym___thiscall] = ACTIONS(2096), + [anon_sym___vectorcall] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_auto] = ACTIONS(2096), + [anon_sym_register] = ACTIONS(2096), + [anon_sym_inline] = ACTIONS(2096), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_volatile] = ACTIONS(2096), + [anon_sym_restrict] = ACTIONS(2096), + [anon_sym__Atomic] = ACTIONS(2096), + [anon_sym_in] = ACTIONS(2096), + [anon_sym_out] = ACTIONS(2096), + [anon_sym_inout] = ACTIONS(2096), + [anon_sym_bycopy] = ACTIONS(2096), + [anon_sym_byref] = ACTIONS(2096), + [anon_sym_oneway] = ACTIONS(2096), + [anon_sym__Nullable] = ACTIONS(2096), + [anon_sym__Nonnull] = ACTIONS(2096), + [anon_sym__Nullable_result] = ACTIONS(2096), + [anon_sym__Null_unspecified] = ACTIONS(2096), + [anon_sym___autoreleasing] = ACTIONS(2096), + [anon_sym___nullable] = ACTIONS(2096), + [anon_sym___nonnull] = ACTIONS(2096), + [anon_sym___strong] = ACTIONS(2096), + [anon_sym___weak] = ACTIONS(2096), + [anon_sym___bridge] = ACTIONS(2096), + [anon_sym___bridge_transfer] = ACTIONS(2096), + [anon_sym___bridge_retained] = ACTIONS(2096), + [anon_sym___unsafe_unretained] = ACTIONS(2096), + [anon_sym___block] = ACTIONS(2096), + [anon_sym___kindof] = ACTIONS(2096), + [anon_sym___unused] = ACTIONS(2096), + [anon_sym__Complex] = ACTIONS(2096), + [anon_sym___complex] = ACTIONS(2096), + [anon_sym_IBOutlet] = ACTIONS(2096), + [anon_sym_IBInspectable] = ACTIONS(2096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2096), + [anon_sym_signed] = ACTIONS(2096), + [anon_sym_unsigned] = ACTIONS(2096), + [anon_sym_long] = ACTIONS(2096), + [anon_sym_short] = ACTIONS(2096), + [sym_primitive_type] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_switch] = ACTIONS(2096), + [anon_sym_case] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_do] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_goto] = ACTIONS(2096), + [anon_sym_DASH_DASH] = ACTIONS(2098), + [anon_sym_PLUS_PLUS] = ACTIONS(2098), + [anon_sym_sizeof] = ACTIONS(2096), + [sym_number_literal] = ACTIONS(2098), + [anon_sym_L_SQUOTE] = ACTIONS(2098), + [anon_sym_u_SQUOTE] = ACTIONS(2098), + [anon_sym_U_SQUOTE] = ACTIONS(2098), + [anon_sym_u8_SQUOTE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_L_DQUOTE] = ACTIONS(2098), + [anon_sym_u_DQUOTE] = ACTIONS(2098), + [anon_sym_U_DQUOTE] = ACTIONS(2098), + [anon_sym_u8_DQUOTE] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(2098), + [sym_true] = ACTIONS(2096), + [sym_false] = ACTIONS(2096), + [sym_null] = ACTIONS(2096), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2098), + [anon_sym_ATimport] = ACTIONS(2098), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2096), + [anon_sym_ATcompatibility_alias] = ACTIONS(2098), + [anon_sym_ATprotocol] = ACTIONS(2098), + [anon_sym_ATclass] = ACTIONS(2098), + [anon_sym_ATinterface] = ACTIONS(2098), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2096), + [sym_method_attribute_specifier] = ACTIONS(2096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE] = ACTIONS(2096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_API_AVAILABLE] = ACTIONS(2096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_API_DEPRECATED] = ACTIONS(2096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2096), + [anon_sym___deprecated_msg] = ACTIONS(2096), + [anon_sym___deprecated_enum_msg] = ACTIONS(2096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2096), + [anon_sym_ATimplementation] = ACTIONS(2098), + [anon_sym_NS_ENUM] = ACTIONS(2096), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2096), + [anon_sym_NS_OPTIONS] = ACTIONS(2096), + [anon_sym_typeof] = ACTIONS(2096), + [anon_sym___typeof] = ACTIONS(2096), + [anon_sym___typeof__] = ACTIONS(2096), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_nil] = ACTIONS(2096), + [sym_id] = ACTIONS(2096), + [sym_instancetype] = ACTIONS(2096), + [sym_Class] = ACTIONS(2096), + [sym_SEL] = ACTIONS(2096), + [sym_IMP] = ACTIONS(2096), + [sym_BOOL] = ACTIONS(2096), + [sym_auto] = ACTIONS(2096), + [anon_sym_ATautoreleasepool] = ACTIONS(2098), + [anon_sym_ATsynchronized] = ACTIONS(2098), + [anon_sym_ATtry] = ACTIONS(2098), + [anon_sym_ATthrow] = ACTIONS(2098), + [anon_sym_ATselector] = ACTIONS(2098), + [anon_sym_ATencode] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2096), + [sym_YES] = ACTIONS(2096), + [sym_NO] = ACTIONS(2096), + [anon_sym___builtin_available] = ACTIONS(2096), + [anon_sym_ATavailable] = ACTIONS(2098), + [anon_sym_va_arg] = ACTIONS(2096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1381] = { + [sym_identifier] = ACTIONS(2100), + [aux_sym_preproc_include_token1] = ACTIONS(2102), + [aux_sym_preproc_def_token1] = ACTIONS(2102), + [aux_sym_preproc_if_token1] = ACTIONS(2100), + [aux_sym_preproc_if_token2] = ACTIONS(2100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2100), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2100), + [anon_sym_LPAREN2] = ACTIONS(2102), + [anon_sym_BANG] = ACTIONS(2102), + [anon_sym_TILDE] = ACTIONS(2102), + [anon_sym_DASH] = ACTIONS(2100), + [anon_sym_PLUS] = ACTIONS(2100), + [anon_sym_STAR] = ACTIONS(2102), + [anon_sym_CARET] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_typedef] = ACTIONS(2100), + [anon_sym_extern] = ACTIONS(2100), + [anon_sym___attribute] = ACTIONS(2100), + [anon_sym___attribute__] = ACTIONS(2100), + [anon_sym___declspec] = ACTIONS(2100), + [anon_sym___cdecl] = ACTIONS(2100), + [anon_sym___clrcall] = ACTIONS(2100), + [anon_sym___stdcall] = ACTIONS(2100), + [anon_sym___fastcall] = ACTIONS(2100), + [anon_sym___thiscall] = ACTIONS(2100), + [anon_sym___vectorcall] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_LBRACK] = ACTIONS(2102), + [anon_sym_static] = ACTIONS(2100), + [anon_sym_auto] = ACTIONS(2100), + [anon_sym_register] = ACTIONS(2100), + [anon_sym_inline] = ACTIONS(2100), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2100), + [anon_sym_const] = ACTIONS(2100), + [anon_sym_volatile] = ACTIONS(2100), + [anon_sym_restrict] = ACTIONS(2100), + [anon_sym__Atomic] = ACTIONS(2100), + [anon_sym_in] = ACTIONS(2100), + [anon_sym_out] = ACTIONS(2100), + [anon_sym_inout] = ACTIONS(2100), + [anon_sym_bycopy] = ACTIONS(2100), + [anon_sym_byref] = ACTIONS(2100), + [anon_sym_oneway] = ACTIONS(2100), + [anon_sym__Nullable] = ACTIONS(2100), + [anon_sym__Nonnull] = ACTIONS(2100), + [anon_sym__Nullable_result] = ACTIONS(2100), + [anon_sym__Null_unspecified] = ACTIONS(2100), + [anon_sym___autoreleasing] = ACTIONS(2100), + [anon_sym___nullable] = ACTIONS(2100), + [anon_sym___nonnull] = ACTIONS(2100), + [anon_sym___strong] = ACTIONS(2100), + [anon_sym___weak] = ACTIONS(2100), + [anon_sym___bridge] = ACTIONS(2100), + [anon_sym___bridge_transfer] = ACTIONS(2100), + [anon_sym___bridge_retained] = ACTIONS(2100), + [anon_sym___unsafe_unretained] = ACTIONS(2100), + [anon_sym___block] = ACTIONS(2100), + [anon_sym___kindof] = ACTIONS(2100), + [anon_sym___unused] = ACTIONS(2100), + [anon_sym__Complex] = ACTIONS(2100), + [anon_sym___complex] = ACTIONS(2100), + [anon_sym_IBOutlet] = ACTIONS(2100), + [anon_sym_IBInspectable] = ACTIONS(2100), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2100), + [anon_sym_signed] = ACTIONS(2100), + [anon_sym_unsigned] = ACTIONS(2100), + [anon_sym_long] = ACTIONS(2100), + [anon_sym_short] = ACTIONS(2100), + [sym_primitive_type] = ACTIONS(2100), + [anon_sym_enum] = ACTIONS(2100), + [anon_sym_struct] = ACTIONS(2100), + [anon_sym_union] = ACTIONS(2100), + [anon_sym_if] = ACTIONS(2100), + [anon_sym_switch] = ACTIONS(2100), + [anon_sym_case] = ACTIONS(2100), + [anon_sym_default] = ACTIONS(2100), + [anon_sym_while] = ACTIONS(2100), + [anon_sym_do] = ACTIONS(2100), + [anon_sym_for] = ACTIONS(2100), + [anon_sym_return] = ACTIONS(2100), + [anon_sym_break] = ACTIONS(2100), + [anon_sym_continue] = ACTIONS(2100), + [anon_sym_goto] = ACTIONS(2100), + [anon_sym_DASH_DASH] = ACTIONS(2102), + [anon_sym_PLUS_PLUS] = ACTIONS(2102), + [anon_sym_sizeof] = ACTIONS(2100), + [sym_number_literal] = ACTIONS(2102), + [anon_sym_L_SQUOTE] = ACTIONS(2102), + [anon_sym_u_SQUOTE] = ACTIONS(2102), + [anon_sym_U_SQUOTE] = ACTIONS(2102), + [anon_sym_u8_SQUOTE] = ACTIONS(2102), + [anon_sym_SQUOTE] = ACTIONS(2102), + [anon_sym_L_DQUOTE] = ACTIONS(2102), + [anon_sym_u_DQUOTE] = ACTIONS(2102), + [anon_sym_U_DQUOTE] = ACTIONS(2102), + [anon_sym_u8_DQUOTE] = ACTIONS(2102), + [anon_sym_DQUOTE] = ACTIONS(2102), + [sym_true] = ACTIONS(2100), + [sym_false] = ACTIONS(2100), + [sym_null] = ACTIONS(2100), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2102), + [anon_sym_ATimport] = ACTIONS(2102), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2100), + [anon_sym_ATcompatibility_alias] = ACTIONS(2102), + [anon_sym_ATprotocol] = ACTIONS(2102), + [anon_sym_ATclass] = ACTIONS(2102), + [anon_sym_ATinterface] = ACTIONS(2102), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2100), + [sym_method_attribute_specifier] = ACTIONS(2100), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2100), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2100), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2100), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2100), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2100), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2100), + [anon_sym_NS_AVAILABLE] = ACTIONS(2100), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2100), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2100), + [anon_sym_API_AVAILABLE] = ACTIONS(2100), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2100), + [anon_sym_API_DEPRECATED] = ACTIONS(2100), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2100), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2100), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2100), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2100), + [anon_sym___deprecated_msg] = ACTIONS(2100), + [anon_sym___deprecated_enum_msg] = ACTIONS(2100), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2100), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2100), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2100), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2100), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2100), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2100), + [anon_sym_ATimplementation] = ACTIONS(2102), + [anon_sym_NS_ENUM] = ACTIONS(2100), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2100), + [anon_sym_NS_OPTIONS] = ACTIONS(2100), + [anon_sym_typeof] = ACTIONS(2100), + [anon_sym___typeof] = ACTIONS(2100), + [anon_sym___typeof__] = ACTIONS(2100), + [sym_self] = ACTIONS(2100), + [sym_super] = ACTIONS(2100), + [sym_nil] = ACTIONS(2100), + [sym_id] = ACTIONS(2100), + [sym_instancetype] = ACTIONS(2100), + [sym_Class] = ACTIONS(2100), + [sym_SEL] = ACTIONS(2100), + [sym_IMP] = ACTIONS(2100), + [sym_BOOL] = ACTIONS(2100), + [sym_auto] = ACTIONS(2100), + [anon_sym_ATautoreleasepool] = ACTIONS(2102), + [anon_sym_ATsynchronized] = ACTIONS(2102), + [anon_sym_ATtry] = ACTIONS(2102), + [anon_sym_ATthrow] = ACTIONS(2102), + [anon_sym_ATselector] = ACTIONS(2102), + [anon_sym_ATencode] = ACTIONS(2102), + [anon_sym_AT] = ACTIONS(2100), + [sym_YES] = ACTIONS(2100), + [sym_NO] = ACTIONS(2100), + [anon_sym___builtin_available] = ACTIONS(2100), + [anon_sym_ATavailable] = ACTIONS(2102), + [anon_sym_va_arg] = ACTIONS(2100), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1382] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1383] = { + [sym_identifier] = ACTIONS(2104), + [aux_sym_preproc_include_token1] = ACTIONS(2106), + [aux_sym_preproc_def_token1] = ACTIONS(2106), + [aux_sym_preproc_if_token1] = ACTIONS(2104), + [aux_sym_preproc_if_token2] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_CARET] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_typedef] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2104), + [anon_sym___attribute] = ACTIONS(2104), + [anon_sym___attribute__] = ACTIONS(2104), + [anon_sym___declspec] = ACTIONS(2104), + [anon_sym___cdecl] = ACTIONS(2104), + [anon_sym___clrcall] = ACTIONS(2104), + [anon_sym___stdcall] = ACTIONS(2104), + [anon_sym___fastcall] = ACTIONS(2104), + [anon_sym___thiscall] = ACTIONS(2104), + [anon_sym___vectorcall] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_auto] = ACTIONS(2104), + [anon_sym_register] = ACTIONS(2104), + [anon_sym_inline] = ACTIONS(2104), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_volatile] = ACTIONS(2104), + [anon_sym_restrict] = ACTIONS(2104), + [anon_sym__Atomic] = ACTIONS(2104), + [anon_sym_in] = ACTIONS(2104), + [anon_sym_out] = ACTIONS(2104), + [anon_sym_inout] = ACTIONS(2104), + [anon_sym_bycopy] = ACTIONS(2104), + [anon_sym_byref] = ACTIONS(2104), + [anon_sym_oneway] = ACTIONS(2104), + [anon_sym__Nullable] = ACTIONS(2104), + [anon_sym__Nonnull] = ACTIONS(2104), + [anon_sym__Nullable_result] = ACTIONS(2104), + [anon_sym__Null_unspecified] = ACTIONS(2104), + [anon_sym___autoreleasing] = ACTIONS(2104), + [anon_sym___nullable] = ACTIONS(2104), + [anon_sym___nonnull] = ACTIONS(2104), + [anon_sym___strong] = ACTIONS(2104), + [anon_sym___weak] = ACTIONS(2104), + [anon_sym___bridge] = ACTIONS(2104), + [anon_sym___bridge_transfer] = ACTIONS(2104), + [anon_sym___bridge_retained] = ACTIONS(2104), + [anon_sym___unsafe_unretained] = ACTIONS(2104), + [anon_sym___block] = ACTIONS(2104), + [anon_sym___kindof] = ACTIONS(2104), + [anon_sym___unused] = ACTIONS(2104), + [anon_sym__Complex] = ACTIONS(2104), + [anon_sym___complex] = ACTIONS(2104), + [anon_sym_IBOutlet] = ACTIONS(2104), + [anon_sym_IBInspectable] = ACTIONS(2104), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2104), + [anon_sym_signed] = ACTIONS(2104), + [anon_sym_unsigned] = ACTIONS(2104), + [anon_sym_long] = ACTIONS(2104), + [anon_sym_short] = ACTIONS(2104), + [sym_primitive_type] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2104), + [anon_sym_struct] = ACTIONS(2104), + [anon_sym_union] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_switch] = ACTIONS(2104), + [anon_sym_case] = ACTIONS(2104), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_goto] = ACTIONS(2104), + [anon_sym_DASH_DASH] = ACTIONS(2106), + [anon_sym_PLUS_PLUS] = ACTIONS(2106), + [anon_sym_sizeof] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2106), + [anon_sym_u_SQUOTE] = ACTIONS(2106), + [anon_sym_U_SQUOTE] = ACTIONS(2106), + [anon_sym_u8_SQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_L_DQUOTE] = ACTIONS(2106), + [anon_sym_u_DQUOTE] = ACTIONS(2106), + [anon_sym_U_DQUOTE] = ACTIONS(2106), + [anon_sym_u8_DQUOTE] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2106), + [sym_true] = ACTIONS(2104), + [sym_false] = ACTIONS(2104), + [sym_null] = ACTIONS(2104), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2106), + [anon_sym_ATimport] = ACTIONS(2106), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2104), + [anon_sym_ATcompatibility_alias] = ACTIONS(2106), + [anon_sym_ATprotocol] = ACTIONS(2106), + [anon_sym_ATclass] = ACTIONS(2106), + [anon_sym_ATinterface] = ACTIONS(2106), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2104), + [sym_method_attribute_specifier] = ACTIONS(2104), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2104), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2104), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2104), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_NS_AVAILABLE] = ACTIONS(2104), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2104), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_API_AVAILABLE] = ACTIONS(2104), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_API_DEPRECATED] = ACTIONS(2104), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2104), + [anon_sym___deprecated_msg] = ACTIONS(2104), + [anon_sym___deprecated_enum_msg] = ACTIONS(2104), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2104), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2104), + [anon_sym_ATimplementation] = ACTIONS(2106), + [anon_sym_NS_ENUM] = ACTIONS(2104), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2104), + [anon_sym_NS_OPTIONS] = ACTIONS(2104), + [anon_sym_typeof] = ACTIONS(2104), + [anon_sym___typeof] = ACTIONS(2104), + [anon_sym___typeof__] = ACTIONS(2104), + [sym_self] = ACTIONS(2104), + [sym_super] = ACTIONS(2104), + [sym_nil] = ACTIONS(2104), + [sym_id] = ACTIONS(2104), + [sym_instancetype] = ACTIONS(2104), + [sym_Class] = ACTIONS(2104), + [sym_SEL] = ACTIONS(2104), + [sym_IMP] = ACTIONS(2104), + [sym_BOOL] = ACTIONS(2104), + [sym_auto] = ACTIONS(2104), + [anon_sym_ATautoreleasepool] = ACTIONS(2106), + [anon_sym_ATsynchronized] = ACTIONS(2106), + [anon_sym_ATtry] = ACTIONS(2106), + [anon_sym_ATthrow] = ACTIONS(2106), + [anon_sym_ATselector] = ACTIONS(2106), + [anon_sym_ATencode] = ACTIONS(2106), + [anon_sym_AT] = ACTIONS(2104), + [sym_YES] = ACTIONS(2104), + [sym_NO] = ACTIONS(2104), + [anon_sym___builtin_available] = ACTIONS(2104), + [anon_sym_ATavailable] = ACTIONS(2106), + [anon_sym_va_arg] = ACTIONS(2104), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1384] = { + [sym_identifier] = ACTIONS(2104), + [aux_sym_preproc_include_token1] = ACTIONS(2106), + [aux_sym_preproc_def_token1] = ACTIONS(2106), + [aux_sym_preproc_if_token1] = ACTIONS(2104), + [aux_sym_preproc_if_token2] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_CARET] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_typedef] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2104), + [anon_sym___attribute] = ACTIONS(2104), + [anon_sym___attribute__] = ACTIONS(2104), + [anon_sym___declspec] = ACTIONS(2104), + [anon_sym___cdecl] = ACTIONS(2104), + [anon_sym___clrcall] = ACTIONS(2104), + [anon_sym___stdcall] = ACTIONS(2104), + [anon_sym___fastcall] = ACTIONS(2104), + [anon_sym___thiscall] = ACTIONS(2104), + [anon_sym___vectorcall] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_auto] = ACTIONS(2104), + [anon_sym_register] = ACTIONS(2104), + [anon_sym_inline] = ACTIONS(2104), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_volatile] = ACTIONS(2104), + [anon_sym_restrict] = ACTIONS(2104), + [anon_sym__Atomic] = ACTIONS(2104), + [anon_sym_in] = ACTIONS(2104), + [anon_sym_out] = ACTIONS(2104), + [anon_sym_inout] = ACTIONS(2104), + [anon_sym_bycopy] = ACTIONS(2104), + [anon_sym_byref] = ACTIONS(2104), + [anon_sym_oneway] = ACTIONS(2104), + [anon_sym__Nullable] = ACTIONS(2104), + [anon_sym__Nonnull] = ACTIONS(2104), + [anon_sym__Nullable_result] = ACTIONS(2104), + [anon_sym__Null_unspecified] = ACTIONS(2104), + [anon_sym___autoreleasing] = ACTIONS(2104), + [anon_sym___nullable] = ACTIONS(2104), + [anon_sym___nonnull] = ACTIONS(2104), + [anon_sym___strong] = ACTIONS(2104), + [anon_sym___weak] = ACTIONS(2104), + [anon_sym___bridge] = ACTIONS(2104), + [anon_sym___bridge_transfer] = ACTIONS(2104), + [anon_sym___bridge_retained] = ACTIONS(2104), + [anon_sym___unsafe_unretained] = ACTIONS(2104), + [anon_sym___block] = ACTIONS(2104), + [anon_sym___kindof] = ACTIONS(2104), + [anon_sym___unused] = ACTIONS(2104), + [anon_sym__Complex] = ACTIONS(2104), + [anon_sym___complex] = ACTIONS(2104), + [anon_sym_IBOutlet] = ACTIONS(2104), + [anon_sym_IBInspectable] = ACTIONS(2104), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2104), + [anon_sym_signed] = ACTIONS(2104), + [anon_sym_unsigned] = ACTIONS(2104), + [anon_sym_long] = ACTIONS(2104), + [anon_sym_short] = ACTIONS(2104), + [sym_primitive_type] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2104), + [anon_sym_struct] = ACTIONS(2104), + [anon_sym_union] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_switch] = ACTIONS(2104), + [anon_sym_case] = ACTIONS(2104), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_goto] = ACTIONS(2104), + [anon_sym_DASH_DASH] = ACTIONS(2106), + [anon_sym_PLUS_PLUS] = ACTIONS(2106), + [anon_sym_sizeof] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2106), + [anon_sym_u_SQUOTE] = ACTIONS(2106), + [anon_sym_U_SQUOTE] = ACTIONS(2106), + [anon_sym_u8_SQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_L_DQUOTE] = ACTIONS(2106), + [anon_sym_u_DQUOTE] = ACTIONS(2106), + [anon_sym_U_DQUOTE] = ACTIONS(2106), + [anon_sym_u8_DQUOTE] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2106), + [sym_true] = ACTIONS(2104), + [sym_false] = ACTIONS(2104), + [sym_null] = ACTIONS(2104), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2106), + [anon_sym_ATimport] = ACTIONS(2106), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2104), + [anon_sym_ATcompatibility_alias] = ACTIONS(2106), + [anon_sym_ATprotocol] = ACTIONS(2106), + [anon_sym_ATclass] = ACTIONS(2106), + [anon_sym_ATinterface] = ACTIONS(2106), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2104), + [sym_method_attribute_specifier] = ACTIONS(2104), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2104), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2104), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2104), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_NS_AVAILABLE] = ACTIONS(2104), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2104), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_API_AVAILABLE] = ACTIONS(2104), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_API_DEPRECATED] = ACTIONS(2104), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2104), + [anon_sym___deprecated_msg] = ACTIONS(2104), + [anon_sym___deprecated_enum_msg] = ACTIONS(2104), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2104), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2104), + [anon_sym_ATimplementation] = ACTIONS(2106), + [anon_sym_NS_ENUM] = ACTIONS(2104), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2104), + [anon_sym_NS_OPTIONS] = ACTIONS(2104), + [anon_sym_typeof] = ACTIONS(2104), + [anon_sym___typeof] = ACTIONS(2104), + [anon_sym___typeof__] = ACTIONS(2104), + [sym_self] = ACTIONS(2104), + [sym_super] = ACTIONS(2104), + [sym_nil] = ACTIONS(2104), + [sym_id] = ACTIONS(2104), + [sym_instancetype] = ACTIONS(2104), + [sym_Class] = ACTIONS(2104), + [sym_SEL] = ACTIONS(2104), + [sym_IMP] = ACTIONS(2104), + [sym_BOOL] = ACTIONS(2104), + [sym_auto] = ACTIONS(2104), + [anon_sym_ATautoreleasepool] = ACTIONS(2106), + [anon_sym_ATsynchronized] = ACTIONS(2106), + [anon_sym_ATtry] = ACTIONS(2106), + [anon_sym_ATthrow] = ACTIONS(2106), + [anon_sym_ATselector] = ACTIONS(2106), + [anon_sym_ATencode] = ACTIONS(2106), + [anon_sym_AT] = ACTIONS(2104), + [sym_YES] = ACTIONS(2104), + [sym_NO] = ACTIONS(2104), + [anon_sym___builtin_available] = ACTIONS(2104), + [anon_sym_ATavailable] = ACTIONS(2106), + [anon_sym_va_arg] = ACTIONS(2104), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1385] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1386] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1387] = { + [sym_identifier] = ACTIONS(2104), + [aux_sym_preproc_include_token1] = ACTIONS(2106), + [aux_sym_preproc_def_token1] = ACTIONS(2106), + [aux_sym_preproc_if_token1] = ACTIONS(2104), + [aux_sym_preproc_if_token2] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2104), + [anon_sym_LPAREN2] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_CARET] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_typedef] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2104), + [anon_sym___attribute] = ACTIONS(2104), + [anon_sym___attribute__] = ACTIONS(2104), + [anon_sym___declspec] = ACTIONS(2104), + [anon_sym___cdecl] = ACTIONS(2104), + [anon_sym___clrcall] = ACTIONS(2104), + [anon_sym___stdcall] = ACTIONS(2104), + [anon_sym___fastcall] = ACTIONS(2104), + [anon_sym___thiscall] = ACTIONS(2104), + [anon_sym___vectorcall] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_auto] = ACTIONS(2104), + [anon_sym_register] = ACTIONS(2104), + [anon_sym_inline] = ACTIONS(2104), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_volatile] = ACTIONS(2104), + [anon_sym_restrict] = ACTIONS(2104), + [anon_sym__Atomic] = ACTIONS(2104), + [anon_sym_in] = ACTIONS(2104), + [anon_sym_out] = ACTIONS(2104), + [anon_sym_inout] = ACTIONS(2104), + [anon_sym_bycopy] = ACTIONS(2104), + [anon_sym_byref] = ACTIONS(2104), + [anon_sym_oneway] = ACTIONS(2104), + [anon_sym__Nullable] = ACTIONS(2104), + [anon_sym__Nonnull] = ACTIONS(2104), + [anon_sym__Nullable_result] = ACTIONS(2104), + [anon_sym__Null_unspecified] = ACTIONS(2104), + [anon_sym___autoreleasing] = ACTIONS(2104), + [anon_sym___nullable] = ACTIONS(2104), + [anon_sym___nonnull] = ACTIONS(2104), + [anon_sym___strong] = ACTIONS(2104), + [anon_sym___weak] = ACTIONS(2104), + [anon_sym___bridge] = ACTIONS(2104), + [anon_sym___bridge_transfer] = ACTIONS(2104), + [anon_sym___bridge_retained] = ACTIONS(2104), + [anon_sym___unsafe_unretained] = ACTIONS(2104), + [anon_sym___block] = ACTIONS(2104), + [anon_sym___kindof] = ACTIONS(2104), + [anon_sym___unused] = ACTIONS(2104), + [anon_sym__Complex] = ACTIONS(2104), + [anon_sym___complex] = ACTIONS(2104), + [anon_sym_IBOutlet] = ACTIONS(2104), + [anon_sym_IBInspectable] = ACTIONS(2104), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2104), + [anon_sym_signed] = ACTIONS(2104), + [anon_sym_unsigned] = ACTIONS(2104), + [anon_sym_long] = ACTIONS(2104), + [anon_sym_short] = ACTIONS(2104), + [sym_primitive_type] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2104), + [anon_sym_struct] = ACTIONS(2104), + [anon_sym_union] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_switch] = ACTIONS(2104), + [anon_sym_case] = ACTIONS(2104), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_do] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_goto] = ACTIONS(2104), + [anon_sym_DASH_DASH] = ACTIONS(2106), + [anon_sym_PLUS_PLUS] = ACTIONS(2106), + [anon_sym_sizeof] = ACTIONS(2104), + [sym_number_literal] = ACTIONS(2106), + [anon_sym_L_SQUOTE] = ACTIONS(2106), + [anon_sym_u_SQUOTE] = ACTIONS(2106), + [anon_sym_U_SQUOTE] = ACTIONS(2106), + [anon_sym_u8_SQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_L_DQUOTE] = ACTIONS(2106), + [anon_sym_u_DQUOTE] = ACTIONS(2106), + [anon_sym_U_DQUOTE] = ACTIONS(2106), + [anon_sym_u8_DQUOTE] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(2106), + [sym_true] = ACTIONS(2104), + [sym_false] = ACTIONS(2104), + [sym_null] = ACTIONS(2104), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2106), + [anon_sym_ATimport] = ACTIONS(2106), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2104), + [anon_sym_ATcompatibility_alias] = ACTIONS(2106), + [anon_sym_ATprotocol] = ACTIONS(2106), + [anon_sym_ATclass] = ACTIONS(2106), + [anon_sym_ATinterface] = ACTIONS(2106), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2104), + [sym_method_attribute_specifier] = ACTIONS(2104), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2104), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2104), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2104), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2104), + [anon_sym_NS_AVAILABLE] = ACTIONS(2104), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2104), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_API_AVAILABLE] = ACTIONS(2104), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_API_DEPRECATED] = ACTIONS(2104), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2104), + [anon_sym___deprecated_msg] = ACTIONS(2104), + [anon_sym___deprecated_enum_msg] = ACTIONS(2104), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2104), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2104), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2104), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2104), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2104), + [anon_sym_ATimplementation] = ACTIONS(2106), + [anon_sym_NS_ENUM] = ACTIONS(2104), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2104), + [anon_sym_NS_OPTIONS] = ACTIONS(2104), + [anon_sym_typeof] = ACTIONS(2104), + [anon_sym___typeof] = ACTIONS(2104), + [anon_sym___typeof__] = ACTIONS(2104), + [sym_self] = ACTIONS(2104), + [sym_super] = ACTIONS(2104), + [sym_nil] = ACTIONS(2104), + [sym_id] = ACTIONS(2104), + [sym_instancetype] = ACTIONS(2104), + [sym_Class] = ACTIONS(2104), + [sym_SEL] = ACTIONS(2104), + [sym_IMP] = ACTIONS(2104), + [sym_BOOL] = ACTIONS(2104), + [sym_auto] = ACTIONS(2104), + [anon_sym_ATautoreleasepool] = ACTIONS(2106), + [anon_sym_ATsynchronized] = ACTIONS(2106), + [anon_sym_ATtry] = ACTIONS(2106), + [anon_sym_ATthrow] = ACTIONS(2106), + [anon_sym_ATselector] = ACTIONS(2106), + [anon_sym_ATencode] = ACTIONS(2106), + [anon_sym_AT] = ACTIONS(2104), + [sym_YES] = ACTIONS(2104), + [sym_NO] = ACTIONS(2104), + [anon_sym___builtin_available] = ACTIONS(2104), + [anon_sym_ATavailable] = ACTIONS(2106), + [anon_sym_va_arg] = ACTIONS(2104), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1388] = { + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_include_token1] = ACTIONS(2110), + [aux_sym_preproc_def_token1] = ACTIONS(2110), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token2] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___cdecl] = ACTIONS(2108), + [anon_sym___clrcall] = ACTIONS(2108), + [anon_sym___stdcall] = ACTIONS(2108), + [anon_sym___fastcall] = ACTIONS(2108), + [anon_sym___thiscall] = ACTIONS(2108), + [anon_sym___vectorcall] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_auto] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2108), + [anon_sym_out] = ACTIONS(2108), + [anon_sym_inout] = ACTIONS(2108), + [anon_sym_bycopy] = ACTIONS(2108), + [anon_sym_byref] = ACTIONS(2108), + [anon_sym_oneway] = ACTIONS(2108), + [anon_sym__Nullable] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym__Nullable_result] = ACTIONS(2108), + [anon_sym__Null_unspecified] = ACTIONS(2108), + [anon_sym___autoreleasing] = ACTIONS(2108), + [anon_sym___nullable] = ACTIONS(2108), + [anon_sym___nonnull] = ACTIONS(2108), + [anon_sym___strong] = ACTIONS(2108), + [anon_sym___weak] = ACTIONS(2108), + [anon_sym___bridge] = ACTIONS(2108), + [anon_sym___bridge_transfer] = ACTIONS(2108), + [anon_sym___bridge_retained] = ACTIONS(2108), + [anon_sym___unsafe_unretained] = ACTIONS(2108), + [anon_sym___block] = ACTIONS(2108), + [anon_sym___kindof] = ACTIONS(2108), + [anon_sym___unused] = ACTIONS(2108), + [anon_sym__Complex] = ACTIONS(2108), + [anon_sym___complex] = ACTIONS(2108), + [anon_sym_IBOutlet] = ACTIONS(2108), + [anon_sym_IBInspectable] = ACTIONS(2108), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2108), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [sym_null] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2110), + [anon_sym_ATimport] = ACTIONS(2110), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2108), + [anon_sym_ATcompatibility_alias] = ACTIONS(2110), + [anon_sym_ATprotocol] = ACTIONS(2110), + [anon_sym_ATclass] = ACTIONS(2110), + [anon_sym_ATinterface] = ACTIONS(2110), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2108), + [sym_method_attribute_specifier] = ACTIONS(2108), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2108), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE] = ACTIONS(2108), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_API_AVAILABLE] = ACTIONS(2108), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_API_DEPRECATED] = ACTIONS(2108), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2108), + [anon_sym___deprecated_msg] = ACTIONS(2108), + [anon_sym___deprecated_enum_msg] = ACTIONS(2108), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2108), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2108), + [anon_sym_ATimplementation] = ACTIONS(2110), + [anon_sym_NS_ENUM] = ACTIONS(2108), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2108), + [anon_sym_NS_OPTIONS] = ACTIONS(2108), + [anon_sym_typeof] = ACTIONS(2108), + [anon_sym___typeof] = ACTIONS(2108), + [anon_sym___typeof__] = ACTIONS(2108), + [sym_self] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_nil] = ACTIONS(2108), + [sym_id] = ACTIONS(2108), + [sym_instancetype] = ACTIONS(2108), + [sym_Class] = ACTIONS(2108), + [sym_SEL] = ACTIONS(2108), + [sym_IMP] = ACTIONS(2108), + [sym_BOOL] = ACTIONS(2108), + [sym_auto] = ACTIONS(2108), + [anon_sym_ATautoreleasepool] = ACTIONS(2110), + [anon_sym_ATsynchronized] = ACTIONS(2110), + [anon_sym_ATtry] = ACTIONS(2110), + [anon_sym_ATthrow] = ACTIONS(2110), + [anon_sym_ATselector] = ACTIONS(2110), + [anon_sym_ATencode] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2108), + [sym_YES] = ACTIONS(2108), + [sym_NO] = ACTIONS(2108), + [anon_sym___builtin_available] = ACTIONS(2108), + [anon_sym_ATavailable] = ACTIONS(2110), + [anon_sym_va_arg] = ACTIONS(2108), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1389] = { + [sym_identifier] = ACTIONS(2032), + [aux_sym_preproc_include_token1] = ACTIONS(2034), + [aux_sym_preproc_def_token1] = ACTIONS(2034), + [aux_sym_preproc_if_token1] = ACTIONS(2032), + [aux_sym_preproc_if_token2] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2032), + [anon_sym_LPAREN2] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_TILDE] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_PLUS] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_CARET] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_typedef] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym___attribute] = ACTIONS(2032), + [anon_sym___attribute__] = ACTIONS(2032), + [anon_sym___declspec] = ACTIONS(2032), + [anon_sym___cdecl] = ACTIONS(2032), + [anon_sym___clrcall] = ACTIONS(2032), + [anon_sym___stdcall] = ACTIONS(2032), + [anon_sym___fastcall] = ACTIONS(2032), + [anon_sym___thiscall] = ACTIONS(2032), + [anon_sym___vectorcall] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_auto] = ACTIONS(2032), + [anon_sym_register] = ACTIONS(2032), + [anon_sym_inline] = ACTIONS(2032), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_volatile] = ACTIONS(2032), + [anon_sym_restrict] = ACTIONS(2032), + [anon_sym__Atomic] = ACTIONS(2032), + [anon_sym_in] = ACTIONS(2032), + [anon_sym_out] = ACTIONS(2032), + [anon_sym_inout] = ACTIONS(2032), + [anon_sym_bycopy] = ACTIONS(2032), + [anon_sym_byref] = ACTIONS(2032), + [anon_sym_oneway] = ACTIONS(2032), + [anon_sym__Nullable] = ACTIONS(2032), + [anon_sym__Nonnull] = ACTIONS(2032), + [anon_sym__Nullable_result] = ACTIONS(2032), + [anon_sym__Null_unspecified] = ACTIONS(2032), + [anon_sym___autoreleasing] = ACTIONS(2032), + [anon_sym___nullable] = ACTIONS(2032), + [anon_sym___nonnull] = ACTIONS(2032), + [anon_sym___strong] = ACTIONS(2032), + [anon_sym___weak] = ACTIONS(2032), + [anon_sym___bridge] = ACTIONS(2032), + [anon_sym___bridge_transfer] = ACTIONS(2032), + [anon_sym___bridge_retained] = ACTIONS(2032), + [anon_sym___unsafe_unretained] = ACTIONS(2032), + [anon_sym___block] = ACTIONS(2032), + [anon_sym___kindof] = ACTIONS(2032), + [anon_sym___unused] = ACTIONS(2032), + [anon_sym__Complex] = ACTIONS(2032), + [anon_sym___complex] = ACTIONS(2032), + [anon_sym_IBOutlet] = ACTIONS(2032), + [anon_sym_IBInspectable] = ACTIONS(2032), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2032), + [anon_sym_signed] = ACTIONS(2032), + [anon_sym_unsigned] = ACTIONS(2032), + [anon_sym_long] = ACTIONS(2032), + [anon_sym_short] = ACTIONS(2032), + [sym_primitive_type] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_switch] = ACTIONS(2032), + [anon_sym_case] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_do] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_goto] = ACTIONS(2032), + [anon_sym_DASH_DASH] = ACTIONS(2034), + [anon_sym_PLUS_PLUS] = ACTIONS(2034), + [anon_sym_sizeof] = ACTIONS(2032), + [sym_number_literal] = ACTIONS(2034), + [anon_sym_L_SQUOTE] = ACTIONS(2034), + [anon_sym_u_SQUOTE] = ACTIONS(2034), + [anon_sym_U_SQUOTE] = ACTIONS(2034), + [anon_sym_u8_SQUOTE] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_L_DQUOTE] = ACTIONS(2034), + [anon_sym_u_DQUOTE] = ACTIONS(2034), + [anon_sym_U_DQUOTE] = ACTIONS(2034), + [anon_sym_u8_DQUOTE] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2034), + [sym_true] = ACTIONS(2032), + [sym_false] = ACTIONS(2032), + [sym_null] = ACTIONS(2032), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2034), + [anon_sym_ATimport] = ACTIONS(2034), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2032), + [anon_sym_ATcompatibility_alias] = ACTIONS(2034), + [anon_sym_ATprotocol] = ACTIONS(2034), + [anon_sym_ATclass] = ACTIONS(2034), + [anon_sym_ATinterface] = ACTIONS(2034), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2032), + [sym_method_attribute_specifier] = ACTIONS(2032), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2032), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2032), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE] = ACTIONS(2032), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2032), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_API_AVAILABLE] = ACTIONS(2032), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_API_DEPRECATED] = ACTIONS(2032), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2032), + [anon_sym___deprecated_msg] = ACTIONS(2032), + [anon_sym___deprecated_enum_msg] = ACTIONS(2032), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2032), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2032), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2032), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2032), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2032), + [anon_sym_ATimplementation] = ACTIONS(2034), + [anon_sym_NS_ENUM] = ACTIONS(2032), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2032), + [anon_sym_NS_OPTIONS] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(2032), + [anon_sym___typeof] = ACTIONS(2032), + [anon_sym___typeof__] = ACTIONS(2032), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_nil] = ACTIONS(2032), + [sym_id] = ACTIONS(2032), + [sym_instancetype] = ACTIONS(2032), + [sym_Class] = ACTIONS(2032), + [sym_SEL] = ACTIONS(2032), + [sym_IMP] = ACTIONS(2032), + [sym_BOOL] = ACTIONS(2032), + [sym_auto] = ACTIONS(2032), + [anon_sym_ATautoreleasepool] = ACTIONS(2034), + [anon_sym_ATsynchronized] = ACTIONS(2034), + [anon_sym_ATtry] = ACTIONS(2034), + [anon_sym_ATthrow] = ACTIONS(2034), + [anon_sym_ATselector] = ACTIONS(2034), + [anon_sym_ATencode] = ACTIONS(2034), + [anon_sym_AT] = ACTIONS(2032), + [sym_YES] = ACTIONS(2032), + [sym_NO] = ACTIONS(2032), + [anon_sym___builtin_available] = ACTIONS(2032), + [anon_sym_ATavailable] = ACTIONS(2034), + [anon_sym_va_arg] = ACTIONS(2032), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1390] = { + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2030), + [aux_sym_preproc_def_token1] = ACTIONS(2030), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token2] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_auto] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_out] = ACTIONS(2028), + [anon_sym_inout] = ACTIONS(2028), + [anon_sym_bycopy] = ACTIONS(2028), + [anon_sym_byref] = ACTIONS(2028), + [anon_sym_oneway] = ACTIONS(2028), + [anon_sym__Nullable] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym__Nullable_result] = ACTIONS(2028), + [anon_sym__Null_unspecified] = ACTIONS(2028), + [anon_sym___autoreleasing] = ACTIONS(2028), + [anon_sym___nullable] = ACTIONS(2028), + [anon_sym___nonnull] = ACTIONS(2028), + [anon_sym___strong] = ACTIONS(2028), + [anon_sym___weak] = ACTIONS(2028), + [anon_sym___bridge] = ACTIONS(2028), + [anon_sym___bridge_transfer] = ACTIONS(2028), + [anon_sym___bridge_retained] = ACTIONS(2028), + [anon_sym___unsafe_unretained] = ACTIONS(2028), + [anon_sym___block] = ACTIONS(2028), + [anon_sym___kindof] = ACTIONS(2028), + [anon_sym___unused] = ACTIONS(2028), + [anon_sym__Complex] = ACTIONS(2028), + [anon_sym___complex] = ACTIONS(2028), + [anon_sym_IBOutlet] = ACTIONS(2028), + [anon_sym_IBInspectable] = ACTIONS(2028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2028), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2030), + [anon_sym_ATimport] = ACTIONS(2030), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2028), + [anon_sym_ATcompatibility_alias] = ACTIONS(2030), + [anon_sym_ATprotocol] = ACTIONS(2030), + [anon_sym_ATclass] = ACTIONS(2030), + [anon_sym_ATinterface] = ACTIONS(2030), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2028), + [sym_method_attribute_specifier] = ACTIONS(2028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE] = ACTIONS(2028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_API_AVAILABLE] = ACTIONS(2028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_API_DEPRECATED] = ACTIONS(2028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2028), + [anon_sym___deprecated_msg] = ACTIONS(2028), + [anon_sym___deprecated_enum_msg] = ACTIONS(2028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2028), + [anon_sym_ATimplementation] = ACTIONS(2030), + [anon_sym_NS_ENUM] = ACTIONS(2028), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2028), + [anon_sym_NS_OPTIONS] = ACTIONS(2028), + [anon_sym_typeof] = ACTIONS(2028), + [anon_sym___typeof] = ACTIONS(2028), + [anon_sym___typeof__] = ACTIONS(2028), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_nil] = ACTIONS(2028), + [sym_id] = ACTIONS(2028), + [sym_instancetype] = ACTIONS(2028), + [sym_Class] = ACTIONS(2028), + [sym_SEL] = ACTIONS(2028), + [sym_IMP] = ACTIONS(2028), + [sym_BOOL] = ACTIONS(2028), + [sym_auto] = ACTIONS(2028), + [anon_sym_ATautoreleasepool] = ACTIONS(2030), + [anon_sym_ATsynchronized] = ACTIONS(2030), + [anon_sym_ATtry] = ACTIONS(2030), + [anon_sym_ATthrow] = ACTIONS(2030), + [anon_sym_ATselector] = ACTIONS(2030), + [anon_sym_ATencode] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2028), + [sym_YES] = ACTIONS(2028), + [sym_NO] = ACTIONS(2028), + [anon_sym___builtin_available] = ACTIONS(2028), + [anon_sym_ATavailable] = ACTIONS(2030), + [anon_sym_va_arg] = ACTIONS(2028), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1391] = { + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_include_token1] = ACTIONS(2110), + [aux_sym_preproc_def_token1] = ACTIONS(2110), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token2] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___cdecl] = ACTIONS(2108), + [anon_sym___clrcall] = ACTIONS(2108), + [anon_sym___stdcall] = ACTIONS(2108), + [anon_sym___fastcall] = ACTIONS(2108), + [anon_sym___thiscall] = ACTIONS(2108), + [anon_sym___vectorcall] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_auto] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2108), + [anon_sym_out] = ACTIONS(2108), + [anon_sym_inout] = ACTIONS(2108), + [anon_sym_bycopy] = ACTIONS(2108), + [anon_sym_byref] = ACTIONS(2108), + [anon_sym_oneway] = ACTIONS(2108), + [anon_sym__Nullable] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym__Nullable_result] = ACTIONS(2108), + [anon_sym__Null_unspecified] = ACTIONS(2108), + [anon_sym___autoreleasing] = ACTIONS(2108), + [anon_sym___nullable] = ACTIONS(2108), + [anon_sym___nonnull] = ACTIONS(2108), + [anon_sym___strong] = ACTIONS(2108), + [anon_sym___weak] = ACTIONS(2108), + [anon_sym___bridge] = ACTIONS(2108), + [anon_sym___bridge_transfer] = ACTIONS(2108), + [anon_sym___bridge_retained] = ACTIONS(2108), + [anon_sym___unsafe_unretained] = ACTIONS(2108), + [anon_sym___block] = ACTIONS(2108), + [anon_sym___kindof] = ACTIONS(2108), + [anon_sym___unused] = ACTIONS(2108), + [anon_sym__Complex] = ACTIONS(2108), + [anon_sym___complex] = ACTIONS(2108), + [anon_sym_IBOutlet] = ACTIONS(2108), + [anon_sym_IBInspectable] = ACTIONS(2108), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2108), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [sym_null] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2110), + [anon_sym_ATimport] = ACTIONS(2110), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2108), + [anon_sym_ATcompatibility_alias] = ACTIONS(2110), + [anon_sym_ATprotocol] = ACTIONS(2110), + [anon_sym_ATclass] = ACTIONS(2110), + [anon_sym_ATinterface] = ACTIONS(2110), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2108), + [sym_method_attribute_specifier] = ACTIONS(2108), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2108), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE] = ACTIONS(2108), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_API_AVAILABLE] = ACTIONS(2108), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_API_DEPRECATED] = ACTIONS(2108), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2108), + [anon_sym___deprecated_msg] = ACTIONS(2108), + [anon_sym___deprecated_enum_msg] = ACTIONS(2108), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2108), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2108), + [anon_sym_ATimplementation] = ACTIONS(2110), + [anon_sym_NS_ENUM] = ACTIONS(2108), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2108), + [anon_sym_NS_OPTIONS] = ACTIONS(2108), + [anon_sym_typeof] = ACTIONS(2108), + [anon_sym___typeof] = ACTIONS(2108), + [anon_sym___typeof__] = ACTIONS(2108), + [sym_self] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_nil] = ACTIONS(2108), + [sym_id] = ACTIONS(2108), + [sym_instancetype] = ACTIONS(2108), + [sym_Class] = ACTIONS(2108), + [sym_SEL] = ACTIONS(2108), + [sym_IMP] = ACTIONS(2108), + [sym_BOOL] = ACTIONS(2108), + [sym_auto] = ACTIONS(2108), + [anon_sym_ATautoreleasepool] = ACTIONS(2110), + [anon_sym_ATsynchronized] = ACTIONS(2110), + [anon_sym_ATtry] = ACTIONS(2110), + [anon_sym_ATthrow] = ACTIONS(2110), + [anon_sym_ATselector] = ACTIONS(2110), + [anon_sym_ATencode] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2108), + [sym_YES] = ACTIONS(2108), + [sym_NO] = ACTIONS(2108), + [anon_sym___builtin_available] = ACTIONS(2108), + [anon_sym_ATavailable] = ACTIONS(2110), + [anon_sym_va_arg] = ACTIONS(2108), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1392] = { + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_include_token1] = ACTIONS(2110), + [aux_sym_preproc_def_token1] = ACTIONS(2110), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token2] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___cdecl] = ACTIONS(2108), + [anon_sym___clrcall] = ACTIONS(2108), + [anon_sym___stdcall] = ACTIONS(2108), + [anon_sym___fastcall] = ACTIONS(2108), + [anon_sym___thiscall] = ACTIONS(2108), + [anon_sym___vectorcall] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_auto] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2108), + [anon_sym_out] = ACTIONS(2108), + [anon_sym_inout] = ACTIONS(2108), + [anon_sym_bycopy] = ACTIONS(2108), + [anon_sym_byref] = ACTIONS(2108), + [anon_sym_oneway] = ACTIONS(2108), + [anon_sym__Nullable] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym__Nullable_result] = ACTIONS(2108), + [anon_sym__Null_unspecified] = ACTIONS(2108), + [anon_sym___autoreleasing] = ACTIONS(2108), + [anon_sym___nullable] = ACTIONS(2108), + [anon_sym___nonnull] = ACTIONS(2108), + [anon_sym___strong] = ACTIONS(2108), + [anon_sym___weak] = ACTIONS(2108), + [anon_sym___bridge] = ACTIONS(2108), + [anon_sym___bridge_transfer] = ACTIONS(2108), + [anon_sym___bridge_retained] = ACTIONS(2108), + [anon_sym___unsafe_unretained] = ACTIONS(2108), + [anon_sym___block] = ACTIONS(2108), + [anon_sym___kindof] = ACTIONS(2108), + [anon_sym___unused] = ACTIONS(2108), + [anon_sym__Complex] = ACTIONS(2108), + [anon_sym___complex] = ACTIONS(2108), + [anon_sym_IBOutlet] = ACTIONS(2108), + [anon_sym_IBInspectable] = ACTIONS(2108), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2108), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [sym_null] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2110), + [anon_sym_ATimport] = ACTIONS(2110), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2108), + [anon_sym_ATcompatibility_alias] = ACTIONS(2110), + [anon_sym_ATprotocol] = ACTIONS(2110), + [anon_sym_ATclass] = ACTIONS(2110), + [anon_sym_ATinterface] = ACTIONS(2110), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2108), + [sym_method_attribute_specifier] = ACTIONS(2108), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2108), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE] = ACTIONS(2108), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_API_AVAILABLE] = ACTIONS(2108), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_API_DEPRECATED] = ACTIONS(2108), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2108), + [anon_sym___deprecated_msg] = ACTIONS(2108), + [anon_sym___deprecated_enum_msg] = ACTIONS(2108), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2108), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2108), + [anon_sym_ATimplementation] = ACTIONS(2110), + [anon_sym_NS_ENUM] = ACTIONS(2108), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2108), + [anon_sym_NS_OPTIONS] = ACTIONS(2108), + [anon_sym_typeof] = ACTIONS(2108), + [anon_sym___typeof] = ACTIONS(2108), + [anon_sym___typeof__] = ACTIONS(2108), + [sym_self] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_nil] = ACTIONS(2108), + [sym_id] = ACTIONS(2108), + [sym_instancetype] = ACTIONS(2108), + [sym_Class] = ACTIONS(2108), + [sym_SEL] = ACTIONS(2108), + [sym_IMP] = ACTIONS(2108), + [sym_BOOL] = ACTIONS(2108), + [sym_auto] = ACTIONS(2108), + [anon_sym_ATautoreleasepool] = ACTIONS(2110), + [anon_sym_ATsynchronized] = ACTIONS(2110), + [anon_sym_ATtry] = ACTIONS(2110), + [anon_sym_ATthrow] = ACTIONS(2110), + [anon_sym_ATselector] = ACTIONS(2110), + [anon_sym_ATencode] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2108), + [sym_YES] = ACTIONS(2108), + [sym_NO] = ACTIONS(2108), + [anon_sym___builtin_available] = ACTIONS(2108), + [anon_sym_ATavailable] = ACTIONS(2110), + [anon_sym_va_arg] = ACTIONS(2108), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1393] = { + [sym_identifier] = ACTIONS(1816), + [aux_sym_preproc_include_token1] = ACTIONS(1818), + [aux_sym_preproc_def_token1] = ACTIONS(1818), + [aux_sym_preproc_if_token1] = ACTIONS(1816), + [aux_sym_preproc_if_token2] = ACTIONS(1816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1816), + [anon_sym_LPAREN2] = ACTIONS(1818), + [anon_sym_BANG] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1816), + [anon_sym_STAR] = ACTIONS(1818), + [anon_sym_CARET] = ACTIONS(1818), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_typedef] = ACTIONS(1816), + [anon_sym_extern] = ACTIONS(1816), + [anon_sym___attribute] = ACTIONS(1816), + [anon_sym___attribute__] = ACTIONS(1816), + [anon_sym___declspec] = ACTIONS(1816), + [anon_sym___cdecl] = ACTIONS(1816), + [anon_sym___clrcall] = ACTIONS(1816), + [anon_sym___stdcall] = ACTIONS(1816), + [anon_sym___fastcall] = ACTIONS(1816), + [anon_sym___thiscall] = ACTIONS(1816), + [anon_sym___vectorcall] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(1818), + [anon_sym_static] = ACTIONS(1816), + [anon_sym_auto] = ACTIONS(1816), + [anon_sym_register] = ACTIONS(1816), + [anon_sym_inline] = ACTIONS(1816), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1816), + [anon_sym_const] = ACTIONS(1816), + [anon_sym_volatile] = ACTIONS(1816), + [anon_sym_restrict] = ACTIONS(1816), + [anon_sym__Atomic] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1816), + [anon_sym_out] = ACTIONS(1816), + [anon_sym_inout] = ACTIONS(1816), + [anon_sym_bycopy] = ACTIONS(1816), + [anon_sym_byref] = ACTIONS(1816), + [anon_sym_oneway] = ACTIONS(1816), + [anon_sym__Nullable] = ACTIONS(1816), + [anon_sym__Nonnull] = ACTIONS(1816), + [anon_sym__Nullable_result] = ACTIONS(1816), + [anon_sym__Null_unspecified] = ACTIONS(1816), + [anon_sym___autoreleasing] = ACTIONS(1816), + [anon_sym___nullable] = ACTIONS(1816), + [anon_sym___nonnull] = ACTIONS(1816), + [anon_sym___strong] = ACTIONS(1816), + [anon_sym___weak] = ACTIONS(1816), + [anon_sym___bridge] = ACTIONS(1816), + [anon_sym___bridge_transfer] = ACTIONS(1816), + [anon_sym___bridge_retained] = ACTIONS(1816), + [anon_sym___unsafe_unretained] = ACTIONS(1816), + [anon_sym___block] = ACTIONS(1816), + [anon_sym___kindof] = ACTIONS(1816), + [anon_sym___unused] = ACTIONS(1816), + [anon_sym__Complex] = ACTIONS(1816), + [anon_sym___complex] = ACTIONS(1816), + [anon_sym_IBOutlet] = ACTIONS(1816), + [anon_sym_IBInspectable] = ACTIONS(1816), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1816), + [anon_sym_signed] = ACTIONS(1816), + [anon_sym_unsigned] = ACTIONS(1816), + [anon_sym_long] = ACTIONS(1816), + [anon_sym_short] = ACTIONS(1816), + [sym_primitive_type] = ACTIONS(1816), + [anon_sym_enum] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1816), + [anon_sym_union] = ACTIONS(1816), + [anon_sym_if] = ACTIONS(1816), + [anon_sym_switch] = ACTIONS(1816), + [anon_sym_case] = ACTIONS(1816), + [anon_sym_default] = ACTIONS(1816), + [anon_sym_while] = ACTIONS(1816), + [anon_sym_do] = ACTIONS(1816), + [anon_sym_for] = ACTIONS(1816), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1816), + [anon_sym_continue] = ACTIONS(1816), + [anon_sym_goto] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(1818), + [anon_sym_PLUS_PLUS] = ACTIONS(1818), + [anon_sym_sizeof] = ACTIONS(1816), + [sym_number_literal] = ACTIONS(1818), + [anon_sym_L_SQUOTE] = ACTIONS(1818), + [anon_sym_u_SQUOTE] = ACTIONS(1818), + [anon_sym_U_SQUOTE] = ACTIONS(1818), + [anon_sym_u8_SQUOTE] = ACTIONS(1818), + [anon_sym_SQUOTE] = ACTIONS(1818), + [anon_sym_L_DQUOTE] = ACTIONS(1818), + [anon_sym_u_DQUOTE] = ACTIONS(1818), + [anon_sym_U_DQUOTE] = ACTIONS(1818), + [anon_sym_u8_DQUOTE] = ACTIONS(1818), + [anon_sym_DQUOTE] = ACTIONS(1818), + [sym_true] = ACTIONS(1816), + [sym_false] = ACTIONS(1816), + [sym_null] = ACTIONS(1816), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1818), + [anon_sym_ATimport] = ACTIONS(1818), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1816), + [anon_sym_ATcompatibility_alias] = ACTIONS(1818), + [anon_sym_ATprotocol] = ACTIONS(1818), + [anon_sym_ATclass] = ACTIONS(1818), + [anon_sym_ATinterface] = ACTIONS(1818), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1816), + [sym_method_attribute_specifier] = ACTIONS(1816), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1816), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1816), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1816), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1816), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1816), + [anon_sym_NS_AVAILABLE] = ACTIONS(1816), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1816), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_API_AVAILABLE] = ACTIONS(1816), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_API_DEPRECATED] = ACTIONS(1816), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1816), + [anon_sym___deprecated_msg] = ACTIONS(1816), + [anon_sym___deprecated_enum_msg] = ACTIONS(1816), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1816), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1816), + [anon_sym_ATimplementation] = ACTIONS(1818), + [anon_sym_NS_ENUM] = ACTIONS(1816), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1816), + [anon_sym_NS_OPTIONS] = ACTIONS(1816), + [anon_sym_typeof] = ACTIONS(1816), + [anon_sym___typeof] = ACTIONS(1816), + [anon_sym___typeof__] = ACTIONS(1816), + [sym_self] = ACTIONS(1816), + [sym_super] = ACTIONS(1816), + [sym_nil] = ACTIONS(1816), + [sym_id] = ACTIONS(1816), + [sym_instancetype] = ACTIONS(1816), + [sym_Class] = ACTIONS(1816), + [sym_SEL] = ACTIONS(1816), + [sym_IMP] = ACTIONS(1816), + [sym_BOOL] = ACTIONS(1816), + [sym_auto] = ACTIONS(1816), + [anon_sym_ATautoreleasepool] = ACTIONS(1818), + [anon_sym_ATsynchronized] = ACTIONS(1818), + [anon_sym_ATtry] = ACTIONS(1818), + [anon_sym_ATthrow] = ACTIONS(1818), + [anon_sym_ATselector] = ACTIONS(1818), + [anon_sym_ATencode] = ACTIONS(1818), + [anon_sym_AT] = ACTIONS(1816), + [sym_YES] = ACTIONS(1816), + [sym_NO] = ACTIONS(1816), + [anon_sym___builtin_available] = ACTIONS(1816), + [anon_sym_ATavailable] = ACTIONS(1818), + [anon_sym_va_arg] = ACTIONS(1816), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1394] = { + [sym_identifier] = ACTIONS(2112), + [aux_sym_preproc_include_token1] = ACTIONS(2114), + [aux_sym_preproc_def_token1] = ACTIONS(2114), + [aux_sym_preproc_if_token1] = ACTIONS(2112), + [aux_sym_preproc_if_token2] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2112), + [anon_sym_LPAREN2] = ACTIONS(2114), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2112), + [anon_sym_PLUS] = ACTIONS(2112), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_CARET] = ACTIONS(2114), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_typedef] = ACTIONS(2112), + [anon_sym_extern] = ACTIONS(2112), + [anon_sym___attribute] = ACTIONS(2112), + [anon_sym___attribute__] = ACTIONS(2112), + [anon_sym___declspec] = ACTIONS(2112), + [anon_sym___cdecl] = ACTIONS(2112), + [anon_sym___clrcall] = ACTIONS(2112), + [anon_sym___stdcall] = ACTIONS(2112), + [anon_sym___fastcall] = ACTIONS(2112), + [anon_sym___thiscall] = ACTIONS(2112), + [anon_sym___vectorcall] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2112), + [anon_sym_auto] = ACTIONS(2112), + [anon_sym_register] = ACTIONS(2112), + [anon_sym_inline] = ACTIONS(2112), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2112), + [anon_sym_const] = ACTIONS(2112), + [anon_sym_volatile] = ACTIONS(2112), + [anon_sym_restrict] = ACTIONS(2112), + [anon_sym__Atomic] = ACTIONS(2112), + [anon_sym_in] = ACTIONS(2112), + [anon_sym_out] = ACTIONS(2112), + [anon_sym_inout] = ACTIONS(2112), + [anon_sym_bycopy] = ACTIONS(2112), + [anon_sym_byref] = ACTIONS(2112), + [anon_sym_oneway] = ACTIONS(2112), + [anon_sym__Nullable] = ACTIONS(2112), + [anon_sym__Nonnull] = ACTIONS(2112), + [anon_sym__Nullable_result] = ACTIONS(2112), + [anon_sym__Null_unspecified] = ACTIONS(2112), + [anon_sym___autoreleasing] = ACTIONS(2112), + [anon_sym___nullable] = ACTIONS(2112), + [anon_sym___nonnull] = ACTIONS(2112), + [anon_sym___strong] = ACTIONS(2112), + [anon_sym___weak] = ACTIONS(2112), + [anon_sym___bridge] = ACTIONS(2112), + [anon_sym___bridge_transfer] = ACTIONS(2112), + [anon_sym___bridge_retained] = ACTIONS(2112), + [anon_sym___unsafe_unretained] = ACTIONS(2112), + [anon_sym___block] = ACTIONS(2112), + [anon_sym___kindof] = ACTIONS(2112), + [anon_sym___unused] = ACTIONS(2112), + [anon_sym__Complex] = ACTIONS(2112), + [anon_sym___complex] = ACTIONS(2112), + [anon_sym_IBOutlet] = ACTIONS(2112), + [anon_sym_IBInspectable] = ACTIONS(2112), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2112), + [anon_sym_signed] = ACTIONS(2112), + [anon_sym_unsigned] = ACTIONS(2112), + [anon_sym_long] = ACTIONS(2112), + [anon_sym_short] = ACTIONS(2112), + [sym_primitive_type] = ACTIONS(2112), + [anon_sym_enum] = ACTIONS(2112), + [anon_sym_struct] = ACTIONS(2112), + [anon_sym_union] = ACTIONS(2112), + [anon_sym_if] = ACTIONS(2112), + [anon_sym_switch] = ACTIONS(2112), + [anon_sym_case] = ACTIONS(2112), + [anon_sym_default] = ACTIONS(2112), + [anon_sym_while] = ACTIONS(2112), + [anon_sym_do] = ACTIONS(2112), + [anon_sym_for] = ACTIONS(2112), + [anon_sym_return] = ACTIONS(2112), + [anon_sym_break] = ACTIONS(2112), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_goto] = ACTIONS(2112), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_sizeof] = ACTIONS(2112), + [sym_number_literal] = ACTIONS(2114), + [anon_sym_L_SQUOTE] = ACTIONS(2114), + [anon_sym_u_SQUOTE] = ACTIONS(2114), + [anon_sym_U_SQUOTE] = ACTIONS(2114), + [anon_sym_u8_SQUOTE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2114), + [anon_sym_L_DQUOTE] = ACTIONS(2114), + [anon_sym_u_DQUOTE] = ACTIONS(2114), + [anon_sym_U_DQUOTE] = ACTIONS(2114), + [anon_sym_u8_DQUOTE] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2114), + [sym_true] = ACTIONS(2112), + [sym_false] = ACTIONS(2112), + [sym_null] = ACTIONS(2112), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2114), + [anon_sym_ATimport] = ACTIONS(2114), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2112), + [anon_sym_ATcompatibility_alias] = ACTIONS(2114), + [anon_sym_ATprotocol] = ACTIONS(2114), + [anon_sym_ATclass] = ACTIONS(2114), + [anon_sym_ATinterface] = ACTIONS(2114), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2112), + [sym_method_attribute_specifier] = ACTIONS(2112), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2112), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2112), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2112), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2112), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2112), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2112), + [anon_sym_NS_AVAILABLE] = ACTIONS(2112), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2112), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2112), + [anon_sym_API_AVAILABLE] = ACTIONS(2112), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2112), + [anon_sym_API_DEPRECATED] = ACTIONS(2112), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2112), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2112), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2112), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2112), + [anon_sym___deprecated_msg] = ACTIONS(2112), + [anon_sym___deprecated_enum_msg] = ACTIONS(2112), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2112), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2112), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2112), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2112), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2112), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2112), + [anon_sym_ATimplementation] = ACTIONS(2114), + [anon_sym_NS_ENUM] = ACTIONS(2112), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2112), + [anon_sym_NS_OPTIONS] = ACTIONS(2112), + [anon_sym_typeof] = ACTIONS(2112), + [anon_sym___typeof] = ACTIONS(2112), + [anon_sym___typeof__] = ACTIONS(2112), + [sym_self] = ACTIONS(2112), + [sym_super] = ACTIONS(2112), + [sym_nil] = ACTIONS(2112), + [sym_id] = ACTIONS(2112), + [sym_instancetype] = ACTIONS(2112), + [sym_Class] = ACTIONS(2112), + [sym_SEL] = ACTIONS(2112), + [sym_IMP] = ACTIONS(2112), + [sym_BOOL] = ACTIONS(2112), + [sym_auto] = ACTIONS(2112), + [anon_sym_ATautoreleasepool] = ACTIONS(2114), + [anon_sym_ATsynchronized] = ACTIONS(2114), + [anon_sym_ATtry] = ACTIONS(2114), + [anon_sym_ATthrow] = ACTIONS(2114), + [anon_sym_ATselector] = ACTIONS(2114), + [anon_sym_ATencode] = ACTIONS(2114), + [anon_sym_AT] = ACTIONS(2112), + [sym_YES] = ACTIONS(2112), + [sym_NO] = ACTIONS(2112), + [anon_sym___builtin_available] = ACTIONS(2112), + [anon_sym_ATavailable] = ACTIONS(2114), + [anon_sym_va_arg] = ACTIONS(2112), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1395] = { + [sym_identifier] = ACTIONS(1880), + [aux_sym_preproc_include_token1] = ACTIONS(1882), + [aux_sym_preproc_def_token1] = ACTIONS(1882), + [aux_sym_preproc_if_token1] = ACTIONS(1880), + [aux_sym_preproc_if_token2] = ACTIONS(1880), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1880), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1880), + [anon_sym_LPAREN2] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1882), + [anon_sym_TILDE] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_PLUS] = ACTIONS(1880), + [anon_sym_STAR] = ACTIONS(1882), + [anon_sym_CARET] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_typedef] = ACTIONS(1880), + [anon_sym_extern] = ACTIONS(1880), + [anon_sym___attribute] = ACTIONS(1880), + [anon_sym___attribute__] = ACTIONS(1880), + [anon_sym___declspec] = ACTIONS(1880), + [anon_sym___cdecl] = ACTIONS(1880), + [anon_sym___clrcall] = ACTIONS(1880), + [anon_sym___stdcall] = ACTIONS(1880), + [anon_sym___fastcall] = ACTIONS(1880), + [anon_sym___thiscall] = ACTIONS(1880), + [anon_sym___vectorcall] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_static] = ACTIONS(1880), + [anon_sym_auto] = ACTIONS(1880), + [anon_sym_register] = ACTIONS(1880), + [anon_sym_inline] = ACTIONS(1880), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [anon_sym_volatile] = ACTIONS(1880), + [anon_sym_restrict] = ACTIONS(1880), + [anon_sym__Atomic] = ACTIONS(1880), + [anon_sym_in] = ACTIONS(1880), + [anon_sym_out] = ACTIONS(1880), + [anon_sym_inout] = ACTIONS(1880), + [anon_sym_bycopy] = ACTIONS(1880), + [anon_sym_byref] = ACTIONS(1880), + [anon_sym_oneway] = ACTIONS(1880), + [anon_sym__Nullable] = ACTIONS(1880), + [anon_sym__Nonnull] = ACTIONS(1880), + [anon_sym__Nullable_result] = ACTIONS(1880), + [anon_sym__Null_unspecified] = ACTIONS(1880), + [anon_sym___autoreleasing] = ACTIONS(1880), + [anon_sym___nullable] = ACTIONS(1880), + [anon_sym___nonnull] = ACTIONS(1880), + [anon_sym___strong] = ACTIONS(1880), + [anon_sym___weak] = ACTIONS(1880), + [anon_sym___bridge] = ACTIONS(1880), + [anon_sym___bridge_transfer] = ACTIONS(1880), + [anon_sym___bridge_retained] = ACTIONS(1880), + [anon_sym___unsafe_unretained] = ACTIONS(1880), + [anon_sym___block] = ACTIONS(1880), + [anon_sym___kindof] = ACTIONS(1880), + [anon_sym___unused] = ACTIONS(1880), + [anon_sym__Complex] = ACTIONS(1880), + [anon_sym___complex] = ACTIONS(1880), + [anon_sym_IBOutlet] = ACTIONS(1880), + [anon_sym_IBInspectable] = ACTIONS(1880), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1880), + [anon_sym_signed] = ACTIONS(1880), + [anon_sym_unsigned] = ACTIONS(1880), + [anon_sym_long] = ACTIONS(1880), + [anon_sym_short] = ACTIONS(1880), + [sym_primitive_type] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(1880), + [anon_sym_struct] = ACTIONS(1880), + [anon_sym_union] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_switch] = ACTIONS(1880), + [anon_sym_case] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_do] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_goto] = ACTIONS(1880), + [anon_sym_DASH_DASH] = ACTIONS(1882), + [anon_sym_PLUS_PLUS] = ACTIONS(1882), + [anon_sym_sizeof] = ACTIONS(1880), + [sym_number_literal] = ACTIONS(1882), + [anon_sym_L_SQUOTE] = ACTIONS(1882), + [anon_sym_u_SQUOTE] = ACTIONS(1882), + [anon_sym_U_SQUOTE] = ACTIONS(1882), + [anon_sym_u8_SQUOTE] = ACTIONS(1882), + [anon_sym_SQUOTE] = ACTIONS(1882), + [anon_sym_L_DQUOTE] = ACTIONS(1882), + [anon_sym_u_DQUOTE] = ACTIONS(1882), + [anon_sym_U_DQUOTE] = ACTIONS(1882), + [anon_sym_u8_DQUOTE] = ACTIONS(1882), + [anon_sym_DQUOTE] = ACTIONS(1882), + [sym_true] = ACTIONS(1880), + [sym_false] = ACTIONS(1880), + [sym_null] = ACTIONS(1880), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1882), + [anon_sym_ATimport] = ACTIONS(1882), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1880), + [anon_sym_ATcompatibility_alias] = ACTIONS(1882), + [anon_sym_ATprotocol] = ACTIONS(1882), + [anon_sym_ATclass] = ACTIONS(1882), + [anon_sym_ATinterface] = ACTIONS(1882), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1880), + [sym_method_attribute_specifier] = ACTIONS(1880), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1880), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1880), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1880), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1880), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1880), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1880), + [anon_sym_NS_AVAILABLE] = ACTIONS(1880), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1880), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1880), + [anon_sym_API_AVAILABLE] = ACTIONS(1880), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1880), + [anon_sym_API_DEPRECATED] = ACTIONS(1880), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1880), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1880), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1880), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1880), + [anon_sym___deprecated_msg] = ACTIONS(1880), + [anon_sym___deprecated_enum_msg] = ACTIONS(1880), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1880), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1880), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1880), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1880), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1880), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1880), + [anon_sym_ATimplementation] = ACTIONS(1882), + [anon_sym_NS_ENUM] = ACTIONS(1880), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1880), + [anon_sym_NS_OPTIONS] = ACTIONS(1880), + [anon_sym_typeof] = ACTIONS(1880), + [anon_sym___typeof] = ACTIONS(1880), + [anon_sym___typeof__] = ACTIONS(1880), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_nil] = ACTIONS(1880), + [sym_id] = ACTIONS(1880), + [sym_instancetype] = ACTIONS(1880), + [sym_Class] = ACTIONS(1880), + [sym_SEL] = ACTIONS(1880), + [sym_IMP] = ACTIONS(1880), + [sym_BOOL] = ACTIONS(1880), + [sym_auto] = ACTIONS(1880), + [anon_sym_ATautoreleasepool] = ACTIONS(1882), + [anon_sym_ATsynchronized] = ACTIONS(1882), + [anon_sym_ATtry] = ACTIONS(1882), + [anon_sym_ATthrow] = ACTIONS(1882), + [anon_sym_ATselector] = ACTIONS(1882), + [anon_sym_ATencode] = ACTIONS(1882), + [anon_sym_AT] = ACTIONS(1880), + [sym_YES] = ACTIONS(1880), + [sym_NO] = ACTIONS(1880), + [anon_sym___builtin_available] = ACTIONS(1880), + [anon_sym_ATavailable] = ACTIONS(1882), + [anon_sym_va_arg] = ACTIONS(1880), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1396] = { + [sym_identifier] = ACTIONS(1876), + [aux_sym_preproc_include_token1] = ACTIONS(1878), + [aux_sym_preproc_def_token1] = ACTIONS(1878), + [aux_sym_preproc_if_token1] = ACTIONS(1876), + [aux_sym_preproc_if_token2] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1876), + [anon_sym_LPAREN2] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1878), + [anon_sym_CARET] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_typedef] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [anon_sym_out] = ACTIONS(1876), + [anon_sym_inout] = ACTIONS(1876), + [anon_sym_bycopy] = ACTIONS(1876), + [anon_sym_byref] = ACTIONS(1876), + [anon_sym_oneway] = ACTIONS(1876), + [anon_sym__Nullable] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym__Nullable_result] = ACTIONS(1876), + [anon_sym__Null_unspecified] = ACTIONS(1876), + [anon_sym___autoreleasing] = ACTIONS(1876), + [anon_sym___nullable] = ACTIONS(1876), + [anon_sym___nonnull] = ACTIONS(1876), + [anon_sym___strong] = ACTIONS(1876), + [anon_sym___weak] = ACTIONS(1876), + [anon_sym___bridge] = ACTIONS(1876), + [anon_sym___bridge_transfer] = ACTIONS(1876), + [anon_sym___bridge_retained] = ACTIONS(1876), + [anon_sym___unsafe_unretained] = ACTIONS(1876), + [anon_sym___block] = ACTIONS(1876), + [anon_sym___kindof] = ACTIONS(1876), + [anon_sym___unused] = ACTIONS(1876), + [anon_sym__Complex] = ACTIONS(1876), + [anon_sym___complex] = ACTIONS(1876), + [anon_sym_IBOutlet] = ACTIONS(1876), + [anon_sym_IBInspectable] = ACTIONS(1876), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1876), + [anon_sym_unsigned] = ACTIONS(1876), + [anon_sym_long] = ACTIONS(1876), + [anon_sym_short] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(1876), + [anon_sym_enum] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1876), + [anon_sym_union] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1876), + [anon_sym_case] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_do] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_goto] = ACTIONS(1876), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_sizeof] = ACTIONS(1876), + [sym_number_literal] = ACTIONS(1878), + [anon_sym_L_SQUOTE] = ACTIONS(1878), + [anon_sym_u_SQUOTE] = ACTIONS(1878), + [anon_sym_U_SQUOTE] = ACTIONS(1878), + [anon_sym_u8_SQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(1878), + [anon_sym_u_DQUOTE] = ACTIONS(1878), + [anon_sym_U_DQUOTE] = ACTIONS(1878), + [anon_sym_u8_DQUOTE] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [sym_true] = ACTIONS(1876), + [sym_false] = ACTIONS(1876), + [sym_null] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1878), + [anon_sym_ATimport] = ACTIONS(1878), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1876), + [anon_sym_ATcompatibility_alias] = ACTIONS(1878), + [anon_sym_ATprotocol] = ACTIONS(1878), + [anon_sym_ATclass] = ACTIONS(1878), + [anon_sym_ATinterface] = ACTIONS(1878), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1876), + [sym_method_attribute_specifier] = ACTIONS(1876), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1876), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE] = ACTIONS(1876), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_API_AVAILABLE] = ACTIONS(1876), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_API_DEPRECATED] = ACTIONS(1876), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1876), + [anon_sym___deprecated_msg] = ACTIONS(1876), + [anon_sym___deprecated_enum_msg] = ACTIONS(1876), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1876), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1876), + [anon_sym_ATimplementation] = ACTIONS(1878), + [anon_sym_NS_ENUM] = ACTIONS(1876), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1876), + [anon_sym_NS_OPTIONS] = ACTIONS(1876), + [anon_sym_typeof] = ACTIONS(1876), + [anon_sym___typeof] = ACTIONS(1876), + [anon_sym___typeof__] = ACTIONS(1876), + [sym_self] = ACTIONS(1876), + [sym_super] = ACTIONS(1876), + [sym_nil] = ACTIONS(1876), + [sym_id] = ACTIONS(1876), + [sym_instancetype] = ACTIONS(1876), + [sym_Class] = ACTIONS(1876), + [sym_SEL] = ACTIONS(1876), + [sym_IMP] = ACTIONS(1876), + [sym_BOOL] = ACTIONS(1876), + [sym_auto] = ACTIONS(1876), + [anon_sym_ATautoreleasepool] = ACTIONS(1878), + [anon_sym_ATsynchronized] = ACTIONS(1878), + [anon_sym_ATtry] = ACTIONS(1878), + [anon_sym_ATthrow] = ACTIONS(1878), + [anon_sym_ATselector] = ACTIONS(1878), + [anon_sym_ATencode] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1876), + [sym_YES] = ACTIONS(1876), + [sym_NO] = ACTIONS(1876), + [anon_sym___builtin_available] = ACTIONS(1876), + [anon_sym_ATavailable] = ACTIONS(1878), + [anon_sym_va_arg] = ACTIONS(1876), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1397] = { + [sym_identifier] = ACTIONS(1876), + [aux_sym_preproc_include_token1] = ACTIONS(1878), + [aux_sym_preproc_def_token1] = ACTIONS(1878), + [aux_sym_preproc_if_token1] = ACTIONS(1876), + [aux_sym_preproc_if_token2] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1876), + [anon_sym_LPAREN2] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1878), + [anon_sym_CARET] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_typedef] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [anon_sym_out] = ACTIONS(1876), + [anon_sym_inout] = ACTIONS(1876), + [anon_sym_bycopy] = ACTIONS(1876), + [anon_sym_byref] = ACTIONS(1876), + [anon_sym_oneway] = ACTIONS(1876), + [anon_sym__Nullable] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym__Nullable_result] = ACTIONS(1876), + [anon_sym__Null_unspecified] = ACTIONS(1876), + [anon_sym___autoreleasing] = ACTIONS(1876), + [anon_sym___nullable] = ACTIONS(1876), + [anon_sym___nonnull] = ACTIONS(1876), + [anon_sym___strong] = ACTIONS(1876), + [anon_sym___weak] = ACTIONS(1876), + [anon_sym___bridge] = ACTIONS(1876), + [anon_sym___bridge_transfer] = ACTIONS(1876), + [anon_sym___bridge_retained] = ACTIONS(1876), + [anon_sym___unsafe_unretained] = ACTIONS(1876), + [anon_sym___block] = ACTIONS(1876), + [anon_sym___kindof] = ACTIONS(1876), + [anon_sym___unused] = ACTIONS(1876), + [anon_sym__Complex] = ACTIONS(1876), + [anon_sym___complex] = ACTIONS(1876), + [anon_sym_IBOutlet] = ACTIONS(1876), + [anon_sym_IBInspectable] = ACTIONS(1876), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1876), + [anon_sym_unsigned] = ACTIONS(1876), + [anon_sym_long] = ACTIONS(1876), + [anon_sym_short] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(1876), + [anon_sym_enum] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1876), + [anon_sym_union] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1876), + [anon_sym_case] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_do] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_goto] = ACTIONS(1876), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_sizeof] = ACTIONS(1876), + [sym_number_literal] = ACTIONS(1878), + [anon_sym_L_SQUOTE] = ACTIONS(1878), + [anon_sym_u_SQUOTE] = ACTIONS(1878), + [anon_sym_U_SQUOTE] = ACTIONS(1878), + [anon_sym_u8_SQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(1878), + [anon_sym_u_DQUOTE] = ACTIONS(1878), + [anon_sym_U_DQUOTE] = ACTIONS(1878), + [anon_sym_u8_DQUOTE] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [sym_true] = ACTIONS(1876), + [sym_false] = ACTIONS(1876), + [sym_null] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1878), + [anon_sym_ATimport] = ACTIONS(1878), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1876), + [anon_sym_ATcompatibility_alias] = ACTIONS(1878), + [anon_sym_ATprotocol] = ACTIONS(1878), + [anon_sym_ATclass] = ACTIONS(1878), + [anon_sym_ATinterface] = ACTIONS(1878), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1876), + [sym_method_attribute_specifier] = ACTIONS(1876), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1876), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE] = ACTIONS(1876), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_API_AVAILABLE] = ACTIONS(1876), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_API_DEPRECATED] = ACTIONS(1876), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1876), + [anon_sym___deprecated_msg] = ACTIONS(1876), + [anon_sym___deprecated_enum_msg] = ACTIONS(1876), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1876), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1876), + [anon_sym_ATimplementation] = ACTIONS(1878), + [anon_sym_NS_ENUM] = ACTIONS(1876), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1876), + [anon_sym_NS_OPTIONS] = ACTIONS(1876), + [anon_sym_typeof] = ACTIONS(1876), + [anon_sym___typeof] = ACTIONS(1876), + [anon_sym___typeof__] = ACTIONS(1876), + [sym_self] = ACTIONS(1876), + [sym_super] = ACTIONS(1876), + [sym_nil] = ACTIONS(1876), + [sym_id] = ACTIONS(1876), + [sym_instancetype] = ACTIONS(1876), + [sym_Class] = ACTIONS(1876), + [sym_SEL] = ACTIONS(1876), + [sym_IMP] = ACTIONS(1876), + [sym_BOOL] = ACTIONS(1876), + [sym_auto] = ACTIONS(1876), + [anon_sym_ATautoreleasepool] = ACTIONS(1878), + [anon_sym_ATsynchronized] = ACTIONS(1878), + [anon_sym_ATtry] = ACTIONS(1878), + [anon_sym_ATthrow] = ACTIONS(1878), + [anon_sym_ATselector] = ACTIONS(1878), + [anon_sym_ATencode] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1876), + [sym_YES] = ACTIONS(1876), + [sym_NO] = ACTIONS(1876), + [anon_sym___builtin_available] = ACTIONS(1876), + [anon_sym_ATavailable] = ACTIONS(1878), + [anon_sym_va_arg] = ACTIONS(1876), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1398] = { + [sym_identifier] = ACTIONS(1876), + [aux_sym_preproc_include_token1] = ACTIONS(1878), + [aux_sym_preproc_def_token1] = ACTIONS(1878), + [aux_sym_preproc_if_token1] = ACTIONS(1876), + [aux_sym_preproc_if_token2] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1876), + [anon_sym_LPAREN2] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1878), + [anon_sym_CARET] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_typedef] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [anon_sym_out] = ACTIONS(1876), + [anon_sym_inout] = ACTIONS(1876), + [anon_sym_bycopy] = ACTIONS(1876), + [anon_sym_byref] = ACTIONS(1876), + [anon_sym_oneway] = ACTIONS(1876), + [anon_sym__Nullable] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym__Nullable_result] = ACTIONS(1876), + [anon_sym__Null_unspecified] = ACTIONS(1876), + [anon_sym___autoreleasing] = ACTIONS(1876), + [anon_sym___nullable] = ACTIONS(1876), + [anon_sym___nonnull] = ACTIONS(1876), + [anon_sym___strong] = ACTIONS(1876), + [anon_sym___weak] = ACTIONS(1876), + [anon_sym___bridge] = ACTIONS(1876), + [anon_sym___bridge_transfer] = ACTIONS(1876), + [anon_sym___bridge_retained] = ACTIONS(1876), + [anon_sym___unsafe_unretained] = ACTIONS(1876), + [anon_sym___block] = ACTIONS(1876), + [anon_sym___kindof] = ACTIONS(1876), + [anon_sym___unused] = ACTIONS(1876), + [anon_sym__Complex] = ACTIONS(1876), + [anon_sym___complex] = ACTIONS(1876), + [anon_sym_IBOutlet] = ACTIONS(1876), + [anon_sym_IBInspectable] = ACTIONS(1876), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1876), + [anon_sym_unsigned] = ACTIONS(1876), + [anon_sym_long] = ACTIONS(1876), + [anon_sym_short] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(1876), + [anon_sym_enum] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1876), + [anon_sym_union] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1876), + [anon_sym_case] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_do] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_goto] = ACTIONS(1876), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_sizeof] = ACTIONS(1876), + [sym_number_literal] = ACTIONS(1878), + [anon_sym_L_SQUOTE] = ACTIONS(1878), + [anon_sym_u_SQUOTE] = ACTIONS(1878), + [anon_sym_U_SQUOTE] = ACTIONS(1878), + [anon_sym_u8_SQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(1878), + [anon_sym_u_DQUOTE] = ACTIONS(1878), + [anon_sym_U_DQUOTE] = ACTIONS(1878), + [anon_sym_u8_DQUOTE] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [sym_true] = ACTIONS(1876), + [sym_false] = ACTIONS(1876), + [sym_null] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1878), + [anon_sym_ATimport] = ACTIONS(1878), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1876), + [anon_sym_ATcompatibility_alias] = ACTIONS(1878), + [anon_sym_ATprotocol] = ACTIONS(1878), + [anon_sym_ATclass] = ACTIONS(1878), + [anon_sym_ATinterface] = ACTIONS(1878), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1876), + [sym_method_attribute_specifier] = ACTIONS(1876), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1876), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE] = ACTIONS(1876), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_API_AVAILABLE] = ACTIONS(1876), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_API_DEPRECATED] = ACTIONS(1876), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1876), + [anon_sym___deprecated_msg] = ACTIONS(1876), + [anon_sym___deprecated_enum_msg] = ACTIONS(1876), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1876), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1876), + [anon_sym_ATimplementation] = ACTIONS(1878), + [anon_sym_NS_ENUM] = ACTIONS(1876), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1876), + [anon_sym_NS_OPTIONS] = ACTIONS(1876), + [anon_sym_typeof] = ACTIONS(1876), + [anon_sym___typeof] = ACTIONS(1876), + [anon_sym___typeof__] = ACTIONS(1876), + [sym_self] = ACTIONS(1876), + [sym_super] = ACTIONS(1876), + [sym_nil] = ACTIONS(1876), + [sym_id] = ACTIONS(1876), + [sym_instancetype] = ACTIONS(1876), + [sym_Class] = ACTIONS(1876), + [sym_SEL] = ACTIONS(1876), + [sym_IMP] = ACTIONS(1876), + [sym_BOOL] = ACTIONS(1876), + [sym_auto] = ACTIONS(1876), + [anon_sym_ATautoreleasepool] = ACTIONS(1878), + [anon_sym_ATsynchronized] = ACTIONS(1878), + [anon_sym_ATtry] = ACTIONS(1878), + [anon_sym_ATthrow] = ACTIONS(1878), + [anon_sym_ATselector] = ACTIONS(1878), + [anon_sym_ATencode] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1876), + [sym_YES] = ACTIONS(1876), + [sym_NO] = ACTIONS(1876), + [anon_sym___builtin_available] = ACTIONS(1876), + [anon_sym_ATavailable] = ACTIONS(1878), + [anon_sym_va_arg] = ACTIONS(1876), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1399] = { + [sym_identifier] = ACTIONS(1876), + [aux_sym_preproc_include_token1] = ACTIONS(1878), + [aux_sym_preproc_def_token1] = ACTIONS(1878), + [aux_sym_preproc_if_token1] = ACTIONS(1876), + [aux_sym_preproc_if_token2] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1876), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1876), + [anon_sym_LPAREN2] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_TILDE] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1878), + [anon_sym_CARET] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_typedef] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym_in] = ACTIONS(1876), + [anon_sym_out] = ACTIONS(1876), + [anon_sym_inout] = ACTIONS(1876), + [anon_sym_bycopy] = ACTIONS(1876), + [anon_sym_byref] = ACTIONS(1876), + [anon_sym_oneway] = ACTIONS(1876), + [anon_sym__Nullable] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym__Nullable_result] = ACTIONS(1876), + [anon_sym__Null_unspecified] = ACTIONS(1876), + [anon_sym___autoreleasing] = ACTIONS(1876), + [anon_sym___nullable] = ACTIONS(1876), + [anon_sym___nonnull] = ACTIONS(1876), + [anon_sym___strong] = ACTIONS(1876), + [anon_sym___weak] = ACTIONS(1876), + [anon_sym___bridge] = ACTIONS(1876), + [anon_sym___bridge_transfer] = ACTIONS(1876), + [anon_sym___bridge_retained] = ACTIONS(1876), + [anon_sym___unsafe_unretained] = ACTIONS(1876), + [anon_sym___block] = ACTIONS(1876), + [anon_sym___kindof] = ACTIONS(1876), + [anon_sym___unused] = ACTIONS(1876), + [anon_sym__Complex] = ACTIONS(1876), + [anon_sym___complex] = ACTIONS(1876), + [anon_sym_IBOutlet] = ACTIONS(1876), + [anon_sym_IBInspectable] = ACTIONS(1876), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1876), + [anon_sym_unsigned] = ACTIONS(1876), + [anon_sym_long] = ACTIONS(1876), + [anon_sym_short] = ACTIONS(1876), + [sym_primitive_type] = ACTIONS(1876), + [anon_sym_enum] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1876), + [anon_sym_union] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_switch] = ACTIONS(1876), + [anon_sym_case] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_do] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_goto] = ACTIONS(1876), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_sizeof] = ACTIONS(1876), + [sym_number_literal] = ACTIONS(1878), + [anon_sym_L_SQUOTE] = ACTIONS(1878), + [anon_sym_u_SQUOTE] = ACTIONS(1878), + [anon_sym_U_SQUOTE] = ACTIONS(1878), + [anon_sym_u8_SQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(1878), + [anon_sym_u_DQUOTE] = ACTIONS(1878), + [anon_sym_U_DQUOTE] = ACTIONS(1878), + [anon_sym_u8_DQUOTE] = ACTIONS(1878), + [anon_sym_DQUOTE] = ACTIONS(1878), + [sym_true] = ACTIONS(1876), + [sym_false] = ACTIONS(1876), + [sym_null] = ACTIONS(1876), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1878), + [anon_sym_ATimport] = ACTIONS(1878), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1876), + [anon_sym_ATcompatibility_alias] = ACTIONS(1878), + [anon_sym_ATprotocol] = ACTIONS(1878), + [anon_sym_ATclass] = ACTIONS(1878), + [anon_sym_ATinterface] = ACTIONS(1878), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1876), + [sym_method_attribute_specifier] = ACTIONS(1876), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1876), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1876), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE] = ACTIONS(1876), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1876), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_API_AVAILABLE] = ACTIONS(1876), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_API_DEPRECATED] = ACTIONS(1876), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1876), + [anon_sym___deprecated_msg] = ACTIONS(1876), + [anon_sym___deprecated_enum_msg] = ACTIONS(1876), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1876), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1876), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1876), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1876), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1876), + [anon_sym_ATimplementation] = ACTIONS(1878), + [anon_sym_NS_ENUM] = ACTIONS(1876), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1876), + [anon_sym_NS_OPTIONS] = ACTIONS(1876), + [anon_sym_typeof] = ACTIONS(1876), + [anon_sym___typeof] = ACTIONS(1876), + [anon_sym___typeof__] = ACTIONS(1876), + [sym_self] = ACTIONS(1876), + [sym_super] = ACTIONS(1876), + [sym_nil] = ACTIONS(1876), + [sym_id] = ACTIONS(1876), + [sym_instancetype] = ACTIONS(1876), + [sym_Class] = ACTIONS(1876), + [sym_SEL] = ACTIONS(1876), + [sym_IMP] = ACTIONS(1876), + [sym_BOOL] = ACTIONS(1876), + [sym_auto] = ACTIONS(1876), + [anon_sym_ATautoreleasepool] = ACTIONS(1878), + [anon_sym_ATsynchronized] = ACTIONS(1878), + [anon_sym_ATtry] = ACTIONS(1878), + [anon_sym_ATthrow] = ACTIONS(1878), + [anon_sym_ATselector] = ACTIONS(1878), + [anon_sym_ATencode] = ACTIONS(1878), + [anon_sym_AT] = ACTIONS(1876), + [sym_YES] = ACTIONS(1876), + [sym_NO] = ACTIONS(1876), + [anon_sym___builtin_available] = ACTIONS(1876), + [anon_sym_ATavailable] = ACTIONS(1878), + [anon_sym_va_arg] = ACTIONS(1876), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1400] = { + [sym_identifier] = ACTIONS(1872), + [aux_sym_preproc_include_token1] = ACTIONS(1874), + [aux_sym_preproc_def_token1] = ACTIONS(1874), + [aux_sym_preproc_if_token1] = ACTIONS(1872), + [aux_sym_preproc_if_token2] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1874), + [anon_sym_TILDE] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1874), + [anon_sym_CARET] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_typedef] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym___attribute] = ACTIONS(1872), + [anon_sym___attribute__] = ACTIONS(1872), + [anon_sym___declspec] = ACTIONS(1872), + [anon_sym___cdecl] = ACTIONS(1872), + [anon_sym___clrcall] = ACTIONS(1872), + [anon_sym___stdcall] = ACTIONS(1872), + [anon_sym___fastcall] = ACTIONS(1872), + [anon_sym___thiscall] = ACTIONS(1872), + [anon_sym___vectorcall] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_static] = ACTIONS(1872), + [anon_sym_auto] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_inline] = ACTIONS(1872), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [anon_sym_volatile] = ACTIONS(1872), + [anon_sym_restrict] = ACTIONS(1872), + [anon_sym__Atomic] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1872), + [anon_sym_out] = ACTIONS(1872), + [anon_sym_inout] = ACTIONS(1872), + [anon_sym_bycopy] = ACTIONS(1872), + [anon_sym_byref] = ACTIONS(1872), + [anon_sym_oneway] = ACTIONS(1872), + [anon_sym__Nullable] = ACTIONS(1872), + [anon_sym__Nonnull] = ACTIONS(1872), + [anon_sym__Nullable_result] = ACTIONS(1872), + [anon_sym__Null_unspecified] = ACTIONS(1872), + [anon_sym___autoreleasing] = ACTIONS(1872), + [anon_sym___nullable] = ACTIONS(1872), + [anon_sym___nonnull] = ACTIONS(1872), + [anon_sym___strong] = ACTIONS(1872), + [anon_sym___weak] = ACTIONS(1872), + [anon_sym___bridge] = ACTIONS(1872), + [anon_sym___bridge_transfer] = ACTIONS(1872), + [anon_sym___bridge_retained] = ACTIONS(1872), + [anon_sym___unsafe_unretained] = ACTIONS(1872), + [anon_sym___block] = ACTIONS(1872), + [anon_sym___kindof] = ACTIONS(1872), + [anon_sym___unused] = ACTIONS(1872), + [anon_sym__Complex] = ACTIONS(1872), + [anon_sym___complex] = ACTIONS(1872), + [anon_sym_IBOutlet] = ACTIONS(1872), + [anon_sym_IBInspectable] = ACTIONS(1872), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1872), + [anon_sym_signed] = ACTIONS(1872), + [anon_sym_unsigned] = ACTIONS(1872), + [anon_sym_long] = ACTIONS(1872), + [anon_sym_short] = ACTIONS(1872), + [sym_primitive_type] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_union] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_switch] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_goto] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_PLUS_PLUS] = ACTIONS(1874), + [anon_sym_sizeof] = ACTIONS(1872), + [sym_number_literal] = ACTIONS(1874), + [anon_sym_L_SQUOTE] = ACTIONS(1874), + [anon_sym_u_SQUOTE] = ACTIONS(1874), + [anon_sym_U_SQUOTE] = ACTIONS(1874), + [anon_sym_u8_SQUOTE] = ACTIONS(1874), + [anon_sym_SQUOTE] = ACTIONS(1874), + [anon_sym_L_DQUOTE] = ACTIONS(1874), + [anon_sym_u_DQUOTE] = ACTIONS(1874), + [anon_sym_U_DQUOTE] = ACTIONS(1874), + [anon_sym_u8_DQUOTE] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [sym_null] = ACTIONS(1872), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1874), + [anon_sym_ATimport] = ACTIONS(1874), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1872), + [anon_sym_ATcompatibility_alias] = ACTIONS(1874), + [anon_sym_ATprotocol] = ACTIONS(1874), + [anon_sym_ATclass] = ACTIONS(1874), + [anon_sym_ATinterface] = ACTIONS(1874), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1872), + [sym_method_attribute_specifier] = ACTIONS(1872), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1872), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1872), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1872), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1872), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1872), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1872), + [anon_sym_NS_AVAILABLE] = ACTIONS(1872), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1872), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_API_AVAILABLE] = ACTIONS(1872), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1872), + [anon_sym_API_DEPRECATED] = ACTIONS(1872), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1872), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1872), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1872), + [anon_sym___deprecated_msg] = ACTIONS(1872), + [anon_sym___deprecated_enum_msg] = ACTIONS(1872), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1872), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1872), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1872), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1872), + [anon_sym_ATimplementation] = ACTIONS(1874), + [anon_sym_NS_ENUM] = ACTIONS(1872), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1872), + [anon_sym_NS_OPTIONS] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym___typeof] = ACTIONS(1872), + [anon_sym___typeof__] = ACTIONS(1872), + [sym_self] = ACTIONS(1872), + [sym_super] = ACTIONS(1872), + [sym_nil] = ACTIONS(1872), + [sym_id] = ACTIONS(1872), + [sym_instancetype] = ACTIONS(1872), + [sym_Class] = ACTIONS(1872), + [sym_SEL] = ACTIONS(1872), + [sym_IMP] = ACTIONS(1872), + [sym_BOOL] = ACTIONS(1872), + [sym_auto] = ACTIONS(1872), + [anon_sym_ATautoreleasepool] = ACTIONS(1874), + [anon_sym_ATsynchronized] = ACTIONS(1874), + [anon_sym_ATtry] = ACTIONS(1874), + [anon_sym_ATthrow] = ACTIONS(1874), + [anon_sym_ATselector] = ACTIONS(1874), + [anon_sym_ATencode] = ACTIONS(1874), + [anon_sym_AT] = ACTIONS(1872), + [sym_YES] = ACTIONS(1872), + [sym_NO] = ACTIONS(1872), + [anon_sym___builtin_available] = ACTIONS(1872), + [anon_sym_ATavailable] = ACTIONS(1874), + [anon_sym_va_arg] = ACTIONS(1872), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1401] = { + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2118), + [aux_sym_preproc_def_token1] = ACTIONS(2118), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_if_token2] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_auto] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [anon_sym_out] = ACTIONS(2116), + [anon_sym_inout] = ACTIONS(2116), + [anon_sym_bycopy] = ACTIONS(2116), + [anon_sym_byref] = ACTIONS(2116), + [anon_sym_oneway] = ACTIONS(2116), + [anon_sym__Nullable] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym__Nullable_result] = ACTIONS(2116), + [anon_sym__Null_unspecified] = ACTIONS(2116), + [anon_sym___autoreleasing] = ACTIONS(2116), + [anon_sym___nullable] = ACTIONS(2116), + [anon_sym___nonnull] = ACTIONS(2116), + [anon_sym___strong] = ACTIONS(2116), + [anon_sym___weak] = ACTIONS(2116), + [anon_sym___bridge] = ACTIONS(2116), + [anon_sym___bridge_transfer] = ACTIONS(2116), + [anon_sym___bridge_retained] = ACTIONS(2116), + [anon_sym___unsafe_unretained] = ACTIONS(2116), + [anon_sym___block] = ACTIONS(2116), + [anon_sym___kindof] = ACTIONS(2116), + [anon_sym___unused] = ACTIONS(2116), + [anon_sym__Complex] = ACTIONS(2116), + [anon_sym___complex] = ACTIONS(2116), + [anon_sym_IBOutlet] = ACTIONS(2116), + [anon_sym_IBInspectable] = ACTIONS(2116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2116), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2118), + [anon_sym_ATimport] = ACTIONS(2118), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2116), + [anon_sym_ATcompatibility_alias] = ACTIONS(2118), + [anon_sym_ATprotocol] = ACTIONS(2118), + [anon_sym_ATclass] = ACTIONS(2118), + [anon_sym_ATinterface] = ACTIONS(2118), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2116), + [sym_method_attribute_specifier] = ACTIONS(2116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE] = ACTIONS(2116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_API_AVAILABLE] = ACTIONS(2116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_API_DEPRECATED] = ACTIONS(2116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2116), + [anon_sym___deprecated_msg] = ACTIONS(2116), + [anon_sym___deprecated_enum_msg] = ACTIONS(2116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2116), + [anon_sym_ATimplementation] = ACTIONS(2118), + [anon_sym_NS_ENUM] = ACTIONS(2116), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2116), + [anon_sym_NS_OPTIONS] = ACTIONS(2116), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym___typeof] = ACTIONS(2116), + [anon_sym___typeof__] = ACTIONS(2116), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_nil] = ACTIONS(2116), + [sym_id] = ACTIONS(2116), + [sym_instancetype] = ACTIONS(2116), + [sym_Class] = ACTIONS(2116), + [sym_SEL] = ACTIONS(2116), + [sym_IMP] = ACTIONS(2116), + [sym_BOOL] = ACTIONS(2116), + [sym_auto] = ACTIONS(2116), + [anon_sym_ATautoreleasepool] = ACTIONS(2118), + [anon_sym_ATsynchronized] = ACTIONS(2118), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym_ATthrow] = ACTIONS(2118), + [anon_sym_ATselector] = ACTIONS(2118), + [anon_sym_ATencode] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2116), + [sym_YES] = ACTIONS(2116), + [sym_NO] = ACTIONS(2116), + [anon_sym___builtin_available] = ACTIONS(2116), + [anon_sym_ATavailable] = ACTIONS(2118), + [anon_sym_va_arg] = ACTIONS(2116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1402] = { + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2118), + [aux_sym_preproc_def_token1] = ACTIONS(2118), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_if_token2] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_auto] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [anon_sym_out] = ACTIONS(2116), + [anon_sym_inout] = ACTIONS(2116), + [anon_sym_bycopy] = ACTIONS(2116), + [anon_sym_byref] = ACTIONS(2116), + [anon_sym_oneway] = ACTIONS(2116), + [anon_sym__Nullable] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym__Nullable_result] = ACTIONS(2116), + [anon_sym__Null_unspecified] = ACTIONS(2116), + [anon_sym___autoreleasing] = ACTIONS(2116), + [anon_sym___nullable] = ACTIONS(2116), + [anon_sym___nonnull] = ACTIONS(2116), + [anon_sym___strong] = ACTIONS(2116), + [anon_sym___weak] = ACTIONS(2116), + [anon_sym___bridge] = ACTIONS(2116), + [anon_sym___bridge_transfer] = ACTIONS(2116), + [anon_sym___bridge_retained] = ACTIONS(2116), + [anon_sym___unsafe_unretained] = ACTIONS(2116), + [anon_sym___block] = ACTIONS(2116), + [anon_sym___kindof] = ACTIONS(2116), + [anon_sym___unused] = ACTIONS(2116), + [anon_sym__Complex] = ACTIONS(2116), + [anon_sym___complex] = ACTIONS(2116), + [anon_sym_IBOutlet] = ACTIONS(2116), + [anon_sym_IBInspectable] = ACTIONS(2116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2116), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2118), + [anon_sym_ATimport] = ACTIONS(2118), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2116), + [anon_sym_ATcompatibility_alias] = ACTIONS(2118), + [anon_sym_ATprotocol] = ACTIONS(2118), + [anon_sym_ATclass] = ACTIONS(2118), + [anon_sym_ATinterface] = ACTIONS(2118), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2116), + [sym_method_attribute_specifier] = ACTIONS(2116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE] = ACTIONS(2116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_API_AVAILABLE] = ACTIONS(2116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_API_DEPRECATED] = ACTIONS(2116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2116), + [anon_sym___deprecated_msg] = ACTIONS(2116), + [anon_sym___deprecated_enum_msg] = ACTIONS(2116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2116), + [anon_sym_ATimplementation] = ACTIONS(2118), + [anon_sym_NS_ENUM] = ACTIONS(2116), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2116), + [anon_sym_NS_OPTIONS] = ACTIONS(2116), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym___typeof] = ACTIONS(2116), + [anon_sym___typeof__] = ACTIONS(2116), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_nil] = ACTIONS(2116), + [sym_id] = ACTIONS(2116), + [sym_instancetype] = ACTIONS(2116), + [sym_Class] = ACTIONS(2116), + [sym_SEL] = ACTIONS(2116), + [sym_IMP] = ACTIONS(2116), + [sym_BOOL] = ACTIONS(2116), + [sym_auto] = ACTIONS(2116), + [anon_sym_ATautoreleasepool] = ACTIONS(2118), + [anon_sym_ATsynchronized] = ACTIONS(2118), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym_ATthrow] = ACTIONS(2118), + [anon_sym_ATselector] = ACTIONS(2118), + [anon_sym_ATencode] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2116), + [sym_YES] = ACTIONS(2116), + [sym_NO] = ACTIONS(2116), + [anon_sym___builtin_available] = ACTIONS(2116), + [anon_sym_ATavailable] = ACTIONS(2118), + [anon_sym_va_arg] = ACTIONS(2116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1403] = { + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2118), + [aux_sym_preproc_def_token1] = ACTIONS(2118), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_if_token2] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_auto] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [anon_sym_out] = ACTIONS(2116), + [anon_sym_inout] = ACTIONS(2116), + [anon_sym_bycopy] = ACTIONS(2116), + [anon_sym_byref] = ACTIONS(2116), + [anon_sym_oneway] = ACTIONS(2116), + [anon_sym__Nullable] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym__Nullable_result] = ACTIONS(2116), + [anon_sym__Null_unspecified] = ACTIONS(2116), + [anon_sym___autoreleasing] = ACTIONS(2116), + [anon_sym___nullable] = ACTIONS(2116), + [anon_sym___nonnull] = ACTIONS(2116), + [anon_sym___strong] = ACTIONS(2116), + [anon_sym___weak] = ACTIONS(2116), + [anon_sym___bridge] = ACTIONS(2116), + [anon_sym___bridge_transfer] = ACTIONS(2116), + [anon_sym___bridge_retained] = ACTIONS(2116), + [anon_sym___unsafe_unretained] = ACTIONS(2116), + [anon_sym___block] = ACTIONS(2116), + [anon_sym___kindof] = ACTIONS(2116), + [anon_sym___unused] = ACTIONS(2116), + [anon_sym__Complex] = ACTIONS(2116), + [anon_sym___complex] = ACTIONS(2116), + [anon_sym_IBOutlet] = ACTIONS(2116), + [anon_sym_IBInspectable] = ACTIONS(2116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2116), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2118), + [anon_sym_ATimport] = ACTIONS(2118), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2116), + [anon_sym_ATcompatibility_alias] = ACTIONS(2118), + [anon_sym_ATprotocol] = ACTIONS(2118), + [anon_sym_ATclass] = ACTIONS(2118), + [anon_sym_ATinterface] = ACTIONS(2118), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2116), + [sym_method_attribute_specifier] = ACTIONS(2116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE] = ACTIONS(2116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_API_AVAILABLE] = ACTIONS(2116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_API_DEPRECATED] = ACTIONS(2116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2116), + [anon_sym___deprecated_msg] = ACTIONS(2116), + [anon_sym___deprecated_enum_msg] = ACTIONS(2116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2116), + [anon_sym_ATimplementation] = ACTIONS(2118), + [anon_sym_NS_ENUM] = ACTIONS(2116), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2116), + [anon_sym_NS_OPTIONS] = ACTIONS(2116), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym___typeof] = ACTIONS(2116), + [anon_sym___typeof__] = ACTIONS(2116), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_nil] = ACTIONS(2116), + [sym_id] = ACTIONS(2116), + [sym_instancetype] = ACTIONS(2116), + [sym_Class] = ACTIONS(2116), + [sym_SEL] = ACTIONS(2116), + [sym_IMP] = ACTIONS(2116), + [sym_BOOL] = ACTIONS(2116), + [sym_auto] = ACTIONS(2116), + [anon_sym_ATautoreleasepool] = ACTIONS(2118), + [anon_sym_ATsynchronized] = ACTIONS(2118), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym_ATthrow] = ACTIONS(2118), + [anon_sym_ATselector] = ACTIONS(2118), + [anon_sym_ATencode] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2116), + [sym_YES] = ACTIONS(2116), + [sym_NO] = ACTIONS(2116), + [anon_sym___builtin_available] = ACTIONS(2116), + [anon_sym_ATavailable] = ACTIONS(2118), + [anon_sym_va_arg] = ACTIONS(2116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1404] = { + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_include_token1] = ACTIONS(2110), + [aux_sym_preproc_def_token1] = ACTIONS(2110), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token2] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___cdecl] = ACTIONS(2108), + [anon_sym___clrcall] = ACTIONS(2108), + [anon_sym___stdcall] = ACTIONS(2108), + [anon_sym___fastcall] = ACTIONS(2108), + [anon_sym___thiscall] = ACTIONS(2108), + [anon_sym___vectorcall] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_auto] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2108), + [anon_sym_out] = ACTIONS(2108), + [anon_sym_inout] = ACTIONS(2108), + [anon_sym_bycopy] = ACTIONS(2108), + [anon_sym_byref] = ACTIONS(2108), + [anon_sym_oneway] = ACTIONS(2108), + [anon_sym__Nullable] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym__Nullable_result] = ACTIONS(2108), + [anon_sym__Null_unspecified] = ACTIONS(2108), + [anon_sym___autoreleasing] = ACTIONS(2108), + [anon_sym___nullable] = ACTIONS(2108), + [anon_sym___nonnull] = ACTIONS(2108), + [anon_sym___strong] = ACTIONS(2108), + [anon_sym___weak] = ACTIONS(2108), + [anon_sym___bridge] = ACTIONS(2108), + [anon_sym___bridge_transfer] = ACTIONS(2108), + [anon_sym___bridge_retained] = ACTIONS(2108), + [anon_sym___unsafe_unretained] = ACTIONS(2108), + [anon_sym___block] = ACTIONS(2108), + [anon_sym___kindof] = ACTIONS(2108), + [anon_sym___unused] = ACTIONS(2108), + [anon_sym__Complex] = ACTIONS(2108), + [anon_sym___complex] = ACTIONS(2108), + [anon_sym_IBOutlet] = ACTIONS(2108), + [anon_sym_IBInspectable] = ACTIONS(2108), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2108), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [sym_null] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2110), + [anon_sym_ATimport] = ACTIONS(2110), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2108), + [anon_sym_ATcompatibility_alias] = ACTIONS(2110), + [anon_sym_ATprotocol] = ACTIONS(2110), + [anon_sym_ATclass] = ACTIONS(2110), + [anon_sym_ATinterface] = ACTIONS(2110), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2108), + [sym_method_attribute_specifier] = ACTIONS(2108), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2108), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE] = ACTIONS(2108), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_API_AVAILABLE] = ACTIONS(2108), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_API_DEPRECATED] = ACTIONS(2108), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2108), + [anon_sym___deprecated_msg] = ACTIONS(2108), + [anon_sym___deprecated_enum_msg] = ACTIONS(2108), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2108), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2108), + [anon_sym_ATimplementation] = ACTIONS(2110), + [anon_sym_NS_ENUM] = ACTIONS(2108), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2108), + [anon_sym_NS_OPTIONS] = ACTIONS(2108), + [anon_sym_typeof] = ACTIONS(2108), + [anon_sym___typeof] = ACTIONS(2108), + [anon_sym___typeof__] = ACTIONS(2108), + [sym_self] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_nil] = ACTIONS(2108), + [sym_id] = ACTIONS(2108), + [sym_instancetype] = ACTIONS(2108), + [sym_Class] = ACTIONS(2108), + [sym_SEL] = ACTIONS(2108), + [sym_IMP] = ACTIONS(2108), + [sym_BOOL] = ACTIONS(2108), + [sym_auto] = ACTIONS(2108), + [anon_sym_ATautoreleasepool] = ACTIONS(2110), + [anon_sym_ATsynchronized] = ACTIONS(2110), + [anon_sym_ATtry] = ACTIONS(2110), + [anon_sym_ATthrow] = ACTIONS(2110), + [anon_sym_ATselector] = ACTIONS(2110), + [anon_sym_ATencode] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2108), + [sym_YES] = ACTIONS(2108), + [sym_NO] = ACTIONS(2108), + [anon_sym___builtin_available] = ACTIONS(2108), + [anon_sym_ATavailable] = ACTIONS(2110), + [anon_sym_va_arg] = ACTIONS(2108), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1405] = { + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2118), + [aux_sym_preproc_def_token1] = ACTIONS(2118), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_if_token2] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_auto] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [anon_sym_out] = ACTIONS(2116), + [anon_sym_inout] = ACTIONS(2116), + [anon_sym_bycopy] = ACTIONS(2116), + [anon_sym_byref] = ACTIONS(2116), + [anon_sym_oneway] = ACTIONS(2116), + [anon_sym__Nullable] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym__Nullable_result] = ACTIONS(2116), + [anon_sym__Null_unspecified] = ACTIONS(2116), + [anon_sym___autoreleasing] = ACTIONS(2116), + [anon_sym___nullable] = ACTIONS(2116), + [anon_sym___nonnull] = ACTIONS(2116), + [anon_sym___strong] = ACTIONS(2116), + [anon_sym___weak] = ACTIONS(2116), + [anon_sym___bridge] = ACTIONS(2116), + [anon_sym___bridge_transfer] = ACTIONS(2116), + [anon_sym___bridge_retained] = ACTIONS(2116), + [anon_sym___unsafe_unretained] = ACTIONS(2116), + [anon_sym___block] = ACTIONS(2116), + [anon_sym___kindof] = ACTIONS(2116), + [anon_sym___unused] = ACTIONS(2116), + [anon_sym__Complex] = ACTIONS(2116), + [anon_sym___complex] = ACTIONS(2116), + [anon_sym_IBOutlet] = ACTIONS(2116), + [anon_sym_IBInspectable] = ACTIONS(2116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2116), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2118), + [anon_sym_ATimport] = ACTIONS(2118), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2116), + [anon_sym_ATcompatibility_alias] = ACTIONS(2118), + [anon_sym_ATprotocol] = ACTIONS(2118), + [anon_sym_ATclass] = ACTIONS(2118), + [anon_sym_ATinterface] = ACTIONS(2118), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2116), + [sym_method_attribute_specifier] = ACTIONS(2116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE] = ACTIONS(2116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_API_AVAILABLE] = ACTIONS(2116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_API_DEPRECATED] = ACTIONS(2116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2116), + [anon_sym___deprecated_msg] = ACTIONS(2116), + [anon_sym___deprecated_enum_msg] = ACTIONS(2116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2116), + [anon_sym_ATimplementation] = ACTIONS(2118), + [anon_sym_NS_ENUM] = ACTIONS(2116), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2116), + [anon_sym_NS_OPTIONS] = ACTIONS(2116), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym___typeof] = ACTIONS(2116), + [anon_sym___typeof__] = ACTIONS(2116), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_nil] = ACTIONS(2116), + [sym_id] = ACTIONS(2116), + [sym_instancetype] = ACTIONS(2116), + [sym_Class] = ACTIONS(2116), + [sym_SEL] = ACTIONS(2116), + [sym_IMP] = ACTIONS(2116), + [sym_BOOL] = ACTIONS(2116), + [sym_auto] = ACTIONS(2116), + [anon_sym_ATautoreleasepool] = ACTIONS(2118), + [anon_sym_ATsynchronized] = ACTIONS(2118), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym_ATthrow] = ACTIONS(2118), + [anon_sym_ATselector] = ACTIONS(2118), + [anon_sym_ATencode] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2116), + [sym_YES] = ACTIONS(2116), + [sym_NO] = ACTIONS(2116), + [anon_sym___builtin_available] = ACTIONS(2116), + [anon_sym_ATavailable] = ACTIONS(2118), + [anon_sym_va_arg] = ACTIONS(2116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1406] = { + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2118), + [aux_sym_preproc_def_token1] = ACTIONS(2118), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_if_token2] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_auto] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [anon_sym_out] = ACTIONS(2116), + [anon_sym_inout] = ACTIONS(2116), + [anon_sym_bycopy] = ACTIONS(2116), + [anon_sym_byref] = ACTIONS(2116), + [anon_sym_oneway] = ACTIONS(2116), + [anon_sym__Nullable] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym__Nullable_result] = ACTIONS(2116), + [anon_sym__Null_unspecified] = ACTIONS(2116), + [anon_sym___autoreleasing] = ACTIONS(2116), + [anon_sym___nullable] = ACTIONS(2116), + [anon_sym___nonnull] = ACTIONS(2116), + [anon_sym___strong] = ACTIONS(2116), + [anon_sym___weak] = ACTIONS(2116), + [anon_sym___bridge] = ACTIONS(2116), + [anon_sym___bridge_transfer] = ACTIONS(2116), + [anon_sym___bridge_retained] = ACTIONS(2116), + [anon_sym___unsafe_unretained] = ACTIONS(2116), + [anon_sym___block] = ACTIONS(2116), + [anon_sym___kindof] = ACTIONS(2116), + [anon_sym___unused] = ACTIONS(2116), + [anon_sym__Complex] = ACTIONS(2116), + [anon_sym___complex] = ACTIONS(2116), + [anon_sym_IBOutlet] = ACTIONS(2116), + [anon_sym_IBInspectable] = ACTIONS(2116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2116), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2118), + [anon_sym_ATimport] = ACTIONS(2118), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2116), + [anon_sym_ATcompatibility_alias] = ACTIONS(2118), + [anon_sym_ATprotocol] = ACTIONS(2118), + [anon_sym_ATclass] = ACTIONS(2118), + [anon_sym_ATinterface] = ACTIONS(2118), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2116), + [sym_method_attribute_specifier] = ACTIONS(2116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE] = ACTIONS(2116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_API_AVAILABLE] = ACTIONS(2116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_API_DEPRECATED] = ACTIONS(2116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2116), + [anon_sym___deprecated_msg] = ACTIONS(2116), + [anon_sym___deprecated_enum_msg] = ACTIONS(2116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2116), + [anon_sym_ATimplementation] = ACTIONS(2118), + [anon_sym_NS_ENUM] = ACTIONS(2116), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2116), + [anon_sym_NS_OPTIONS] = ACTIONS(2116), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym___typeof] = ACTIONS(2116), + [anon_sym___typeof__] = ACTIONS(2116), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_nil] = ACTIONS(2116), + [sym_id] = ACTIONS(2116), + [sym_instancetype] = ACTIONS(2116), + [sym_Class] = ACTIONS(2116), + [sym_SEL] = ACTIONS(2116), + [sym_IMP] = ACTIONS(2116), + [sym_BOOL] = ACTIONS(2116), + [sym_auto] = ACTIONS(2116), + [anon_sym_ATautoreleasepool] = ACTIONS(2118), + [anon_sym_ATsynchronized] = ACTIONS(2118), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym_ATthrow] = ACTIONS(2118), + [anon_sym_ATselector] = ACTIONS(2118), + [anon_sym_ATencode] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2116), + [sym_YES] = ACTIONS(2116), + [sym_NO] = ACTIONS(2116), + [anon_sym___builtin_available] = ACTIONS(2116), + [anon_sym_ATavailable] = ACTIONS(2118), + [anon_sym_va_arg] = ACTIONS(2116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1407] = { + [sym_identifier] = ACTIONS(1872), + [aux_sym_preproc_include_token1] = ACTIONS(1874), + [aux_sym_preproc_def_token1] = ACTIONS(1874), + [aux_sym_preproc_if_token1] = ACTIONS(1872), + [aux_sym_preproc_if_token2] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1874), + [anon_sym_TILDE] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_PLUS] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1874), + [anon_sym_CARET] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_typedef] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym___attribute] = ACTIONS(1872), + [anon_sym___attribute__] = ACTIONS(1872), + [anon_sym___declspec] = ACTIONS(1872), + [anon_sym___cdecl] = ACTIONS(1872), + [anon_sym___clrcall] = ACTIONS(1872), + [anon_sym___stdcall] = ACTIONS(1872), + [anon_sym___fastcall] = ACTIONS(1872), + [anon_sym___thiscall] = ACTIONS(1872), + [anon_sym___vectorcall] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_static] = ACTIONS(1872), + [anon_sym_auto] = ACTIONS(1872), + [anon_sym_register] = ACTIONS(1872), + [anon_sym_inline] = ACTIONS(1872), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [anon_sym_volatile] = ACTIONS(1872), + [anon_sym_restrict] = ACTIONS(1872), + [anon_sym__Atomic] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1872), + [anon_sym_out] = ACTIONS(1872), + [anon_sym_inout] = ACTIONS(1872), + [anon_sym_bycopy] = ACTIONS(1872), + [anon_sym_byref] = ACTIONS(1872), + [anon_sym_oneway] = ACTIONS(1872), + [anon_sym__Nullable] = ACTIONS(1872), + [anon_sym__Nonnull] = ACTIONS(1872), + [anon_sym__Nullable_result] = ACTIONS(1872), + [anon_sym__Null_unspecified] = ACTIONS(1872), + [anon_sym___autoreleasing] = ACTIONS(1872), + [anon_sym___nullable] = ACTIONS(1872), + [anon_sym___nonnull] = ACTIONS(1872), + [anon_sym___strong] = ACTIONS(1872), + [anon_sym___weak] = ACTIONS(1872), + [anon_sym___bridge] = ACTIONS(1872), + [anon_sym___bridge_transfer] = ACTIONS(1872), + [anon_sym___bridge_retained] = ACTIONS(1872), + [anon_sym___unsafe_unretained] = ACTIONS(1872), + [anon_sym___block] = ACTIONS(1872), + [anon_sym___kindof] = ACTIONS(1872), + [anon_sym___unused] = ACTIONS(1872), + [anon_sym__Complex] = ACTIONS(1872), + [anon_sym___complex] = ACTIONS(1872), + [anon_sym_IBOutlet] = ACTIONS(1872), + [anon_sym_IBInspectable] = ACTIONS(1872), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1872), + [anon_sym_signed] = ACTIONS(1872), + [anon_sym_unsigned] = ACTIONS(1872), + [anon_sym_long] = ACTIONS(1872), + [anon_sym_short] = ACTIONS(1872), + [sym_primitive_type] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_union] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_switch] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_do] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_goto] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1874), + [anon_sym_PLUS_PLUS] = ACTIONS(1874), + [anon_sym_sizeof] = ACTIONS(1872), + [sym_number_literal] = ACTIONS(1874), + [anon_sym_L_SQUOTE] = ACTIONS(1874), + [anon_sym_u_SQUOTE] = ACTIONS(1874), + [anon_sym_U_SQUOTE] = ACTIONS(1874), + [anon_sym_u8_SQUOTE] = ACTIONS(1874), + [anon_sym_SQUOTE] = ACTIONS(1874), + [anon_sym_L_DQUOTE] = ACTIONS(1874), + [anon_sym_u_DQUOTE] = ACTIONS(1874), + [anon_sym_U_DQUOTE] = ACTIONS(1874), + [anon_sym_u8_DQUOTE] = ACTIONS(1874), + [anon_sym_DQUOTE] = ACTIONS(1874), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [sym_null] = ACTIONS(1872), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1874), + [anon_sym_ATimport] = ACTIONS(1874), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1872), + [anon_sym_ATcompatibility_alias] = ACTIONS(1874), + [anon_sym_ATprotocol] = ACTIONS(1874), + [anon_sym_ATclass] = ACTIONS(1874), + [anon_sym_ATinterface] = ACTIONS(1874), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1872), + [sym_method_attribute_specifier] = ACTIONS(1872), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1872), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1872), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1872), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1872), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1872), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1872), + [anon_sym_NS_AVAILABLE] = ACTIONS(1872), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1872), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_API_AVAILABLE] = ACTIONS(1872), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1872), + [anon_sym_API_DEPRECATED] = ACTIONS(1872), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1872), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1872), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1872), + [anon_sym___deprecated_msg] = ACTIONS(1872), + [anon_sym___deprecated_enum_msg] = ACTIONS(1872), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1872), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1872), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1872), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1872), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1872), + [anon_sym_ATimplementation] = ACTIONS(1874), + [anon_sym_NS_ENUM] = ACTIONS(1872), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1872), + [anon_sym_NS_OPTIONS] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym___typeof] = ACTIONS(1872), + [anon_sym___typeof__] = ACTIONS(1872), + [sym_self] = ACTIONS(1872), + [sym_super] = ACTIONS(1872), + [sym_nil] = ACTIONS(1872), + [sym_id] = ACTIONS(1872), + [sym_instancetype] = ACTIONS(1872), + [sym_Class] = ACTIONS(1872), + [sym_SEL] = ACTIONS(1872), + [sym_IMP] = ACTIONS(1872), + [sym_BOOL] = ACTIONS(1872), + [sym_auto] = ACTIONS(1872), + [anon_sym_ATautoreleasepool] = ACTIONS(1874), + [anon_sym_ATsynchronized] = ACTIONS(1874), + [anon_sym_ATtry] = ACTIONS(1874), + [anon_sym_ATthrow] = ACTIONS(1874), + [anon_sym_ATselector] = ACTIONS(1874), + [anon_sym_ATencode] = ACTIONS(1874), + [anon_sym_AT] = ACTIONS(1872), + [sym_YES] = ACTIONS(1872), + [sym_NO] = ACTIONS(1872), + [anon_sym___builtin_available] = ACTIONS(1872), + [anon_sym_ATavailable] = ACTIONS(1874), + [anon_sym_va_arg] = ACTIONS(1872), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1408] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1409] = { + [sym_identifier] = ACTIONS(2116), + [aux_sym_preproc_include_token1] = ACTIONS(2118), + [aux_sym_preproc_def_token1] = ACTIONS(2118), + [aux_sym_preproc_if_token1] = ACTIONS(2116), + [aux_sym_preproc_if_token2] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2116), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2116), + [anon_sym_LPAREN2] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_TILDE] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_CARET] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_typedef] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym___attribute] = ACTIONS(2116), + [anon_sym___attribute__] = ACTIONS(2116), + [anon_sym___declspec] = ACTIONS(2116), + [anon_sym___cdecl] = ACTIONS(2116), + [anon_sym___clrcall] = ACTIONS(2116), + [anon_sym___stdcall] = ACTIONS(2116), + [anon_sym___fastcall] = ACTIONS(2116), + [anon_sym___thiscall] = ACTIONS(2116), + [anon_sym___vectorcall] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_auto] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_in] = ACTIONS(2116), + [anon_sym_out] = ACTIONS(2116), + [anon_sym_inout] = ACTIONS(2116), + [anon_sym_bycopy] = ACTIONS(2116), + [anon_sym_byref] = ACTIONS(2116), + [anon_sym_oneway] = ACTIONS(2116), + [anon_sym__Nullable] = ACTIONS(2116), + [anon_sym__Nonnull] = ACTIONS(2116), + [anon_sym__Nullable_result] = ACTIONS(2116), + [anon_sym__Null_unspecified] = ACTIONS(2116), + [anon_sym___autoreleasing] = ACTIONS(2116), + [anon_sym___nullable] = ACTIONS(2116), + [anon_sym___nonnull] = ACTIONS(2116), + [anon_sym___strong] = ACTIONS(2116), + [anon_sym___weak] = ACTIONS(2116), + [anon_sym___bridge] = ACTIONS(2116), + [anon_sym___bridge_transfer] = ACTIONS(2116), + [anon_sym___bridge_retained] = ACTIONS(2116), + [anon_sym___unsafe_unretained] = ACTIONS(2116), + [anon_sym___block] = ACTIONS(2116), + [anon_sym___kindof] = ACTIONS(2116), + [anon_sym___unused] = ACTIONS(2116), + [anon_sym__Complex] = ACTIONS(2116), + [anon_sym___complex] = ACTIONS(2116), + [anon_sym_IBOutlet] = ACTIONS(2116), + [anon_sym_IBInspectable] = ACTIONS(2116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2116), + [anon_sym_signed] = ACTIONS(2116), + [anon_sym_unsigned] = ACTIONS(2116), + [anon_sym_long] = ACTIONS(2116), + [anon_sym_short] = ACTIONS(2116), + [sym_primitive_type] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_switch] = ACTIONS(2116), + [anon_sym_case] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_do] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_goto] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2118), + [anon_sym_PLUS_PLUS] = ACTIONS(2118), + [anon_sym_sizeof] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2118), + [anon_sym_L_SQUOTE] = ACTIONS(2118), + [anon_sym_u_SQUOTE] = ACTIONS(2118), + [anon_sym_U_SQUOTE] = ACTIONS(2118), + [anon_sym_u8_SQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_L_DQUOTE] = ACTIONS(2118), + [anon_sym_u_DQUOTE] = ACTIONS(2118), + [anon_sym_U_DQUOTE] = ACTIONS(2118), + [anon_sym_u8_DQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2118), + [anon_sym_ATimport] = ACTIONS(2118), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2116), + [anon_sym_ATcompatibility_alias] = ACTIONS(2118), + [anon_sym_ATprotocol] = ACTIONS(2118), + [anon_sym_ATclass] = ACTIONS(2118), + [anon_sym_ATinterface] = ACTIONS(2118), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2116), + [sym_method_attribute_specifier] = ACTIONS(2116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE] = ACTIONS(2116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_API_AVAILABLE] = ACTIONS(2116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_API_DEPRECATED] = ACTIONS(2116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2116), + [anon_sym___deprecated_msg] = ACTIONS(2116), + [anon_sym___deprecated_enum_msg] = ACTIONS(2116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2116), + [anon_sym_ATimplementation] = ACTIONS(2118), + [anon_sym_NS_ENUM] = ACTIONS(2116), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2116), + [anon_sym_NS_OPTIONS] = ACTIONS(2116), + [anon_sym_typeof] = ACTIONS(2116), + [anon_sym___typeof] = ACTIONS(2116), + [anon_sym___typeof__] = ACTIONS(2116), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_nil] = ACTIONS(2116), + [sym_id] = ACTIONS(2116), + [sym_instancetype] = ACTIONS(2116), + [sym_Class] = ACTIONS(2116), + [sym_SEL] = ACTIONS(2116), + [sym_IMP] = ACTIONS(2116), + [sym_BOOL] = ACTIONS(2116), + [sym_auto] = ACTIONS(2116), + [anon_sym_ATautoreleasepool] = ACTIONS(2118), + [anon_sym_ATsynchronized] = ACTIONS(2118), + [anon_sym_ATtry] = ACTIONS(2118), + [anon_sym_ATthrow] = ACTIONS(2118), + [anon_sym_ATselector] = ACTIONS(2118), + [anon_sym_ATencode] = ACTIONS(2118), + [anon_sym_AT] = ACTIONS(2116), + [sym_YES] = ACTIONS(2116), + [sym_NO] = ACTIONS(2116), + [anon_sym___builtin_available] = ACTIONS(2116), + [anon_sym_ATavailable] = ACTIONS(2118), + [anon_sym_va_arg] = ACTIONS(2116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1410] = { + [sym_identifier] = ACTIONS(2108), + [aux_sym_preproc_include_token1] = ACTIONS(2110), + [aux_sym_preproc_def_token1] = ACTIONS(2110), + [aux_sym_preproc_if_token1] = ACTIONS(2108), + [aux_sym_preproc_if_token2] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2108), + [anon_sym_LPAREN2] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_TILDE] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_PLUS] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_CARET] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym___attribute] = ACTIONS(2108), + [anon_sym___attribute__] = ACTIONS(2108), + [anon_sym___declspec] = ACTIONS(2108), + [anon_sym___cdecl] = ACTIONS(2108), + [anon_sym___clrcall] = ACTIONS(2108), + [anon_sym___stdcall] = ACTIONS(2108), + [anon_sym___fastcall] = ACTIONS(2108), + [anon_sym___thiscall] = ACTIONS(2108), + [anon_sym___vectorcall] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_auto] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym_in] = ACTIONS(2108), + [anon_sym_out] = ACTIONS(2108), + [anon_sym_inout] = ACTIONS(2108), + [anon_sym_bycopy] = ACTIONS(2108), + [anon_sym_byref] = ACTIONS(2108), + [anon_sym_oneway] = ACTIONS(2108), + [anon_sym__Nullable] = ACTIONS(2108), + [anon_sym__Nonnull] = ACTIONS(2108), + [anon_sym__Nullable_result] = ACTIONS(2108), + [anon_sym__Null_unspecified] = ACTIONS(2108), + [anon_sym___autoreleasing] = ACTIONS(2108), + [anon_sym___nullable] = ACTIONS(2108), + [anon_sym___nonnull] = ACTIONS(2108), + [anon_sym___strong] = ACTIONS(2108), + [anon_sym___weak] = ACTIONS(2108), + [anon_sym___bridge] = ACTIONS(2108), + [anon_sym___bridge_transfer] = ACTIONS(2108), + [anon_sym___bridge_retained] = ACTIONS(2108), + [anon_sym___unsafe_unretained] = ACTIONS(2108), + [anon_sym___block] = ACTIONS(2108), + [anon_sym___kindof] = ACTIONS(2108), + [anon_sym___unused] = ACTIONS(2108), + [anon_sym__Complex] = ACTIONS(2108), + [anon_sym___complex] = ACTIONS(2108), + [anon_sym_IBOutlet] = ACTIONS(2108), + [anon_sym_IBInspectable] = ACTIONS(2108), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2108), + [anon_sym_signed] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_switch] = ACTIONS(2108), + [anon_sym_case] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_do] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_goto] = ACTIONS(2108), + [anon_sym_DASH_DASH] = ACTIONS(2110), + [anon_sym_PLUS_PLUS] = ACTIONS(2110), + [anon_sym_sizeof] = ACTIONS(2108), + [sym_number_literal] = ACTIONS(2110), + [anon_sym_L_SQUOTE] = ACTIONS(2110), + [anon_sym_u_SQUOTE] = ACTIONS(2110), + [anon_sym_U_SQUOTE] = ACTIONS(2110), + [anon_sym_u8_SQUOTE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_L_DQUOTE] = ACTIONS(2110), + [anon_sym_u_DQUOTE] = ACTIONS(2110), + [anon_sym_U_DQUOTE] = ACTIONS(2110), + [anon_sym_u8_DQUOTE] = ACTIONS(2110), + [anon_sym_DQUOTE] = ACTIONS(2110), + [sym_true] = ACTIONS(2108), + [sym_false] = ACTIONS(2108), + [sym_null] = ACTIONS(2108), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2110), + [anon_sym_ATimport] = ACTIONS(2110), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2108), + [anon_sym_ATcompatibility_alias] = ACTIONS(2110), + [anon_sym_ATprotocol] = ACTIONS(2110), + [anon_sym_ATclass] = ACTIONS(2110), + [anon_sym_ATinterface] = ACTIONS(2110), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2108), + [sym_method_attribute_specifier] = ACTIONS(2108), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2108), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2108), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE] = ACTIONS(2108), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2108), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_API_AVAILABLE] = ACTIONS(2108), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_API_DEPRECATED] = ACTIONS(2108), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2108), + [anon_sym___deprecated_msg] = ACTIONS(2108), + [anon_sym___deprecated_enum_msg] = ACTIONS(2108), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2108), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2108), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2108), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2108), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2108), + [anon_sym_ATimplementation] = ACTIONS(2110), + [anon_sym_NS_ENUM] = ACTIONS(2108), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2108), + [anon_sym_NS_OPTIONS] = ACTIONS(2108), + [anon_sym_typeof] = ACTIONS(2108), + [anon_sym___typeof] = ACTIONS(2108), + [anon_sym___typeof__] = ACTIONS(2108), + [sym_self] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_nil] = ACTIONS(2108), + [sym_id] = ACTIONS(2108), + [sym_instancetype] = ACTIONS(2108), + [sym_Class] = ACTIONS(2108), + [sym_SEL] = ACTIONS(2108), + [sym_IMP] = ACTIONS(2108), + [sym_BOOL] = ACTIONS(2108), + [sym_auto] = ACTIONS(2108), + [anon_sym_ATautoreleasepool] = ACTIONS(2110), + [anon_sym_ATsynchronized] = ACTIONS(2110), + [anon_sym_ATtry] = ACTIONS(2110), + [anon_sym_ATthrow] = ACTIONS(2110), + [anon_sym_ATselector] = ACTIONS(2110), + [anon_sym_ATencode] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2108), + [sym_YES] = ACTIONS(2108), + [sym_NO] = ACTIONS(2108), + [anon_sym___builtin_available] = ACTIONS(2108), + [anon_sym_ATavailable] = ACTIONS(2110), + [anon_sym_va_arg] = ACTIONS(2108), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1411] = { + [sym_identifier] = ACTIONS(2120), + [aux_sym_preproc_include_token1] = ACTIONS(2122), + [aux_sym_preproc_def_token1] = ACTIONS(2122), + [aux_sym_preproc_if_token1] = ACTIONS(2120), + [aux_sym_preproc_if_token2] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2120), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2120), + [anon_sym_LPAREN2] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_TILDE] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_PLUS] = ACTIONS(2120), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_CARET] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_typedef] = ACTIONS(2120), + [anon_sym_extern] = ACTIONS(2120), + [anon_sym___attribute] = ACTIONS(2120), + [anon_sym___attribute__] = ACTIONS(2120), + [anon_sym___declspec] = ACTIONS(2120), + [anon_sym___cdecl] = ACTIONS(2120), + [anon_sym___clrcall] = ACTIONS(2120), + [anon_sym___stdcall] = ACTIONS(2120), + [anon_sym___fastcall] = ACTIONS(2120), + [anon_sym___thiscall] = ACTIONS(2120), + [anon_sym___vectorcall] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_auto] = ACTIONS(2120), + [anon_sym_register] = ACTIONS(2120), + [anon_sym_inline] = ACTIONS(2120), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_volatile] = ACTIONS(2120), + [anon_sym_restrict] = ACTIONS(2120), + [anon_sym__Atomic] = ACTIONS(2120), + [anon_sym_in] = ACTIONS(2120), + [anon_sym_out] = ACTIONS(2120), + [anon_sym_inout] = ACTIONS(2120), + [anon_sym_bycopy] = ACTIONS(2120), + [anon_sym_byref] = ACTIONS(2120), + [anon_sym_oneway] = ACTIONS(2120), + [anon_sym__Nullable] = ACTIONS(2120), + [anon_sym__Nonnull] = ACTIONS(2120), + [anon_sym__Nullable_result] = ACTIONS(2120), + [anon_sym__Null_unspecified] = ACTIONS(2120), + [anon_sym___autoreleasing] = ACTIONS(2120), + [anon_sym___nullable] = ACTIONS(2120), + [anon_sym___nonnull] = ACTIONS(2120), + [anon_sym___strong] = ACTIONS(2120), + [anon_sym___weak] = ACTIONS(2120), + [anon_sym___bridge] = ACTIONS(2120), + [anon_sym___bridge_transfer] = ACTIONS(2120), + [anon_sym___bridge_retained] = ACTIONS(2120), + [anon_sym___unsafe_unretained] = ACTIONS(2120), + [anon_sym___block] = ACTIONS(2120), + [anon_sym___kindof] = ACTIONS(2120), + [anon_sym___unused] = ACTIONS(2120), + [anon_sym__Complex] = ACTIONS(2120), + [anon_sym___complex] = ACTIONS(2120), + [anon_sym_IBOutlet] = ACTIONS(2120), + [anon_sym_IBInspectable] = ACTIONS(2120), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2120), + [anon_sym_signed] = ACTIONS(2120), + [anon_sym_unsigned] = ACTIONS(2120), + [anon_sym_long] = ACTIONS(2120), + [anon_sym_short] = ACTIONS(2120), + [sym_primitive_type] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_union] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_switch] = ACTIONS(2120), + [anon_sym_case] = ACTIONS(2120), + [anon_sym_default] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_goto] = ACTIONS(2120), + [anon_sym_DASH_DASH] = ACTIONS(2122), + [anon_sym_PLUS_PLUS] = ACTIONS(2122), + [anon_sym_sizeof] = ACTIONS(2120), + [sym_number_literal] = ACTIONS(2122), + [anon_sym_L_SQUOTE] = ACTIONS(2122), + [anon_sym_u_SQUOTE] = ACTIONS(2122), + [anon_sym_U_SQUOTE] = ACTIONS(2122), + [anon_sym_u8_SQUOTE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_L_DQUOTE] = ACTIONS(2122), + [anon_sym_u_DQUOTE] = ACTIONS(2122), + [anon_sym_U_DQUOTE] = ACTIONS(2122), + [anon_sym_u8_DQUOTE] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(2122), + [sym_true] = ACTIONS(2120), + [sym_false] = ACTIONS(2120), + [sym_null] = ACTIONS(2120), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2122), + [anon_sym_ATimport] = ACTIONS(2122), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2120), + [anon_sym_ATcompatibility_alias] = ACTIONS(2122), + [anon_sym_ATprotocol] = ACTIONS(2122), + [anon_sym_ATclass] = ACTIONS(2122), + [anon_sym_ATinterface] = ACTIONS(2122), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2120), + [sym_method_attribute_specifier] = ACTIONS(2120), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2120), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2120), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2120), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2120), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2120), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2120), + [anon_sym_NS_AVAILABLE] = ACTIONS(2120), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2120), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2120), + [anon_sym_API_AVAILABLE] = ACTIONS(2120), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2120), + [anon_sym_API_DEPRECATED] = ACTIONS(2120), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2120), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2120), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2120), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2120), + [anon_sym___deprecated_msg] = ACTIONS(2120), + [anon_sym___deprecated_enum_msg] = ACTIONS(2120), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2120), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2120), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2120), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2120), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2120), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2120), + [anon_sym_ATimplementation] = ACTIONS(2122), + [anon_sym_NS_ENUM] = ACTIONS(2120), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2120), + [anon_sym_NS_OPTIONS] = ACTIONS(2120), + [anon_sym_typeof] = ACTIONS(2120), + [anon_sym___typeof] = ACTIONS(2120), + [anon_sym___typeof__] = ACTIONS(2120), + [sym_self] = ACTIONS(2120), + [sym_super] = ACTIONS(2120), + [sym_nil] = ACTIONS(2120), + [sym_id] = ACTIONS(2120), + [sym_instancetype] = ACTIONS(2120), + [sym_Class] = ACTIONS(2120), + [sym_SEL] = ACTIONS(2120), + [sym_IMP] = ACTIONS(2120), + [sym_BOOL] = ACTIONS(2120), + [sym_auto] = ACTIONS(2120), + [anon_sym_ATautoreleasepool] = ACTIONS(2122), + [anon_sym_ATsynchronized] = ACTIONS(2122), + [anon_sym_ATtry] = ACTIONS(2122), + [anon_sym_ATthrow] = ACTIONS(2122), + [anon_sym_ATselector] = ACTIONS(2122), + [anon_sym_ATencode] = ACTIONS(2122), + [anon_sym_AT] = ACTIONS(2120), + [sym_YES] = ACTIONS(2120), + [sym_NO] = ACTIONS(2120), + [anon_sym___builtin_available] = ACTIONS(2120), + [anon_sym_ATavailable] = ACTIONS(2122), + [anon_sym_va_arg] = ACTIONS(2120), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1412] = { + [sym_identifier] = ACTIONS(2124), + [aux_sym_preproc_include_token1] = ACTIONS(2126), + [aux_sym_preproc_def_token1] = ACTIONS(2126), + [aux_sym_preproc_if_token1] = ACTIONS(2124), + [aux_sym_preproc_if_token2] = ACTIONS(2124), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2124), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2124), + [anon_sym_LPAREN2] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_typedef] = ACTIONS(2124), + [anon_sym_extern] = ACTIONS(2124), + [anon_sym___attribute] = ACTIONS(2124), + [anon_sym___attribute__] = ACTIONS(2124), + [anon_sym___declspec] = ACTIONS(2124), + [anon_sym___cdecl] = ACTIONS(2124), + [anon_sym___clrcall] = ACTIONS(2124), + [anon_sym___stdcall] = ACTIONS(2124), + [anon_sym___fastcall] = ACTIONS(2124), + [anon_sym___thiscall] = ACTIONS(2124), + [anon_sym___vectorcall] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_auto] = ACTIONS(2124), + [anon_sym_register] = ACTIONS(2124), + [anon_sym_inline] = ACTIONS(2124), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_volatile] = ACTIONS(2124), + [anon_sym_restrict] = ACTIONS(2124), + [anon_sym__Atomic] = ACTIONS(2124), + [anon_sym_in] = ACTIONS(2124), + [anon_sym_out] = ACTIONS(2124), + [anon_sym_inout] = ACTIONS(2124), + [anon_sym_bycopy] = ACTIONS(2124), + [anon_sym_byref] = ACTIONS(2124), + [anon_sym_oneway] = ACTIONS(2124), + [anon_sym__Nullable] = ACTIONS(2124), + [anon_sym__Nonnull] = ACTIONS(2124), + [anon_sym__Nullable_result] = ACTIONS(2124), + [anon_sym__Null_unspecified] = ACTIONS(2124), + [anon_sym___autoreleasing] = ACTIONS(2124), + [anon_sym___nullable] = ACTIONS(2124), + [anon_sym___nonnull] = ACTIONS(2124), + [anon_sym___strong] = ACTIONS(2124), + [anon_sym___weak] = ACTIONS(2124), + [anon_sym___bridge] = ACTIONS(2124), + [anon_sym___bridge_transfer] = ACTIONS(2124), + [anon_sym___bridge_retained] = ACTIONS(2124), + [anon_sym___unsafe_unretained] = ACTIONS(2124), + [anon_sym___block] = ACTIONS(2124), + [anon_sym___kindof] = ACTIONS(2124), + [anon_sym___unused] = ACTIONS(2124), + [anon_sym__Complex] = ACTIONS(2124), + [anon_sym___complex] = ACTIONS(2124), + [anon_sym_IBOutlet] = ACTIONS(2124), + [anon_sym_IBInspectable] = ACTIONS(2124), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2124), + [anon_sym_signed] = ACTIONS(2124), + [anon_sym_unsigned] = ACTIONS(2124), + [anon_sym_long] = ACTIONS(2124), + [anon_sym_short] = ACTIONS(2124), + [sym_primitive_type] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [anon_sym_struct] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_switch] = ACTIONS(2124), + [anon_sym_case] = ACTIONS(2124), + [anon_sym_default] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_goto] = ACTIONS(2124), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_sizeof] = ACTIONS(2124), + [sym_number_literal] = ACTIONS(2126), + [anon_sym_L_SQUOTE] = ACTIONS(2126), + [anon_sym_u_SQUOTE] = ACTIONS(2126), + [anon_sym_U_SQUOTE] = ACTIONS(2126), + [anon_sym_u8_SQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_L_DQUOTE] = ACTIONS(2126), + [anon_sym_u_DQUOTE] = ACTIONS(2126), + [anon_sym_U_DQUOTE] = ACTIONS(2126), + [anon_sym_u8_DQUOTE] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2126), + [sym_true] = ACTIONS(2124), + [sym_false] = ACTIONS(2124), + [sym_null] = ACTIONS(2124), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2126), + [anon_sym_ATimport] = ACTIONS(2126), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2124), + [anon_sym_ATcompatibility_alias] = ACTIONS(2126), + [anon_sym_ATprotocol] = ACTIONS(2126), + [anon_sym_ATclass] = ACTIONS(2126), + [anon_sym_ATinterface] = ACTIONS(2126), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2124), + [sym_method_attribute_specifier] = ACTIONS(2124), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2124), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2124), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2124), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2124), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2124), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2124), + [anon_sym_NS_AVAILABLE] = ACTIONS(2124), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2124), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2124), + [anon_sym_API_AVAILABLE] = ACTIONS(2124), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2124), + [anon_sym_API_DEPRECATED] = ACTIONS(2124), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2124), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2124), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2124), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2124), + [anon_sym___deprecated_msg] = ACTIONS(2124), + [anon_sym___deprecated_enum_msg] = ACTIONS(2124), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2124), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2124), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2124), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2124), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2124), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2124), + [anon_sym_ATimplementation] = ACTIONS(2126), + [anon_sym_NS_ENUM] = ACTIONS(2124), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2124), + [anon_sym_NS_OPTIONS] = ACTIONS(2124), + [anon_sym_typeof] = ACTIONS(2124), + [anon_sym___typeof] = ACTIONS(2124), + [anon_sym___typeof__] = ACTIONS(2124), + [sym_self] = ACTIONS(2124), + [sym_super] = ACTIONS(2124), + [sym_nil] = ACTIONS(2124), + [sym_id] = ACTIONS(2124), + [sym_instancetype] = ACTIONS(2124), + [sym_Class] = ACTIONS(2124), + [sym_SEL] = ACTIONS(2124), + [sym_IMP] = ACTIONS(2124), + [sym_BOOL] = ACTIONS(2124), + [sym_auto] = ACTIONS(2124), + [anon_sym_ATautoreleasepool] = ACTIONS(2126), + [anon_sym_ATsynchronized] = ACTIONS(2126), + [anon_sym_ATtry] = ACTIONS(2126), + [anon_sym_ATthrow] = ACTIONS(2126), + [anon_sym_ATselector] = ACTIONS(2126), + [anon_sym_ATencode] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2124), + [sym_YES] = ACTIONS(2124), + [sym_NO] = ACTIONS(2124), + [anon_sym___builtin_available] = ACTIONS(2124), + [anon_sym_ATavailable] = ACTIONS(2126), + [anon_sym_va_arg] = ACTIONS(2124), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1413] = { + [sym_identifier] = ACTIONS(2128), + [aux_sym_preproc_include_token1] = ACTIONS(2130), + [aux_sym_preproc_def_token1] = ACTIONS(2130), + [aux_sym_preproc_if_token1] = ACTIONS(2128), + [aux_sym_preproc_if_token2] = ACTIONS(2128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2128), + [anon_sym_LPAREN2] = ACTIONS(2130), + [anon_sym_BANG] = ACTIONS(2130), + [anon_sym_TILDE] = ACTIONS(2130), + [anon_sym_DASH] = ACTIONS(2128), + [anon_sym_PLUS] = ACTIONS(2128), + [anon_sym_STAR] = ACTIONS(2130), + [anon_sym_CARET] = ACTIONS(2130), + [anon_sym_AMP] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2130), + [anon_sym_typedef] = ACTIONS(2128), + [anon_sym_extern] = ACTIONS(2128), + [anon_sym___attribute] = ACTIONS(2128), + [anon_sym___attribute__] = ACTIONS(2128), + [anon_sym___declspec] = ACTIONS(2128), + [anon_sym___cdecl] = ACTIONS(2128), + [anon_sym___clrcall] = ACTIONS(2128), + [anon_sym___stdcall] = ACTIONS(2128), + [anon_sym___fastcall] = ACTIONS(2128), + [anon_sym___thiscall] = ACTIONS(2128), + [anon_sym___vectorcall] = ACTIONS(2128), + [anon_sym_LBRACE] = ACTIONS(2130), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_static] = ACTIONS(2128), + [anon_sym_auto] = ACTIONS(2128), + [anon_sym_register] = ACTIONS(2128), + [anon_sym_inline] = ACTIONS(2128), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2128), + [anon_sym_const] = ACTIONS(2128), + [anon_sym_volatile] = ACTIONS(2128), + [anon_sym_restrict] = ACTIONS(2128), + [anon_sym__Atomic] = ACTIONS(2128), + [anon_sym_in] = ACTIONS(2128), + [anon_sym_out] = ACTIONS(2128), + [anon_sym_inout] = ACTIONS(2128), + [anon_sym_bycopy] = ACTIONS(2128), + [anon_sym_byref] = ACTIONS(2128), + [anon_sym_oneway] = ACTIONS(2128), + [anon_sym__Nullable] = ACTIONS(2128), + [anon_sym__Nonnull] = ACTIONS(2128), + [anon_sym__Nullable_result] = ACTIONS(2128), + [anon_sym__Null_unspecified] = ACTIONS(2128), + [anon_sym___autoreleasing] = ACTIONS(2128), + [anon_sym___nullable] = ACTIONS(2128), + [anon_sym___nonnull] = ACTIONS(2128), + [anon_sym___strong] = ACTIONS(2128), + [anon_sym___weak] = ACTIONS(2128), + [anon_sym___bridge] = ACTIONS(2128), + [anon_sym___bridge_transfer] = ACTIONS(2128), + [anon_sym___bridge_retained] = ACTIONS(2128), + [anon_sym___unsafe_unretained] = ACTIONS(2128), + [anon_sym___block] = ACTIONS(2128), + [anon_sym___kindof] = ACTIONS(2128), + [anon_sym___unused] = ACTIONS(2128), + [anon_sym__Complex] = ACTIONS(2128), + [anon_sym___complex] = ACTIONS(2128), + [anon_sym_IBOutlet] = ACTIONS(2128), + [anon_sym_IBInspectable] = ACTIONS(2128), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2128), + [anon_sym_signed] = ACTIONS(2128), + [anon_sym_unsigned] = ACTIONS(2128), + [anon_sym_long] = ACTIONS(2128), + [anon_sym_short] = ACTIONS(2128), + [sym_primitive_type] = ACTIONS(2128), + [anon_sym_enum] = ACTIONS(2128), + [anon_sym_struct] = ACTIONS(2128), + [anon_sym_union] = ACTIONS(2128), + [anon_sym_if] = ACTIONS(2128), + [anon_sym_switch] = ACTIONS(2128), + [anon_sym_case] = ACTIONS(2128), + [anon_sym_default] = ACTIONS(2128), + [anon_sym_while] = ACTIONS(2128), + [anon_sym_do] = ACTIONS(2128), + [anon_sym_for] = ACTIONS(2128), + [anon_sym_return] = ACTIONS(2128), + [anon_sym_break] = ACTIONS(2128), + [anon_sym_continue] = ACTIONS(2128), + [anon_sym_goto] = ACTIONS(2128), + [anon_sym_DASH_DASH] = ACTIONS(2130), + [anon_sym_PLUS_PLUS] = ACTIONS(2130), + [anon_sym_sizeof] = ACTIONS(2128), + [sym_number_literal] = ACTIONS(2130), + [anon_sym_L_SQUOTE] = ACTIONS(2130), + [anon_sym_u_SQUOTE] = ACTIONS(2130), + [anon_sym_U_SQUOTE] = ACTIONS(2130), + [anon_sym_u8_SQUOTE] = ACTIONS(2130), + [anon_sym_SQUOTE] = ACTIONS(2130), + [anon_sym_L_DQUOTE] = ACTIONS(2130), + [anon_sym_u_DQUOTE] = ACTIONS(2130), + [anon_sym_U_DQUOTE] = ACTIONS(2130), + [anon_sym_u8_DQUOTE] = ACTIONS(2130), + [anon_sym_DQUOTE] = ACTIONS(2130), + [sym_true] = ACTIONS(2128), + [sym_false] = ACTIONS(2128), + [sym_null] = ACTIONS(2128), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2130), + [anon_sym_ATimport] = ACTIONS(2130), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2128), + [anon_sym_ATcompatibility_alias] = ACTIONS(2130), + [anon_sym_ATprotocol] = ACTIONS(2130), + [anon_sym_ATclass] = ACTIONS(2130), + [anon_sym_ATinterface] = ACTIONS(2130), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2128), + [sym_method_attribute_specifier] = ACTIONS(2128), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2128), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2128), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2128), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2128), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2128), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2128), + [anon_sym_NS_AVAILABLE] = ACTIONS(2128), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2128), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2128), + [anon_sym_API_AVAILABLE] = ACTIONS(2128), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2128), + [anon_sym_API_DEPRECATED] = ACTIONS(2128), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2128), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2128), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2128), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2128), + [anon_sym___deprecated_msg] = ACTIONS(2128), + [anon_sym___deprecated_enum_msg] = ACTIONS(2128), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2128), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2128), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2128), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2128), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2128), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2128), + [anon_sym_ATimplementation] = ACTIONS(2130), + [anon_sym_NS_ENUM] = ACTIONS(2128), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2128), + [anon_sym_NS_OPTIONS] = ACTIONS(2128), + [anon_sym_typeof] = ACTIONS(2128), + [anon_sym___typeof] = ACTIONS(2128), + [anon_sym___typeof__] = ACTIONS(2128), + [sym_self] = ACTIONS(2128), + [sym_super] = ACTIONS(2128), + [sym_nil] = ACTIONS(2128), + [sym_id] = ACTIONS(2128), + [sym_instancetype] = ACTIONS(2128), + [sym_Class] = ACTIONS(2128), + [sym_SEL] = ACTIONS(2128), + [sym_IMP] = ACTIONS(2128), + [sym_BOOL] = ACTIONS(2128), + [sym_auto] = ACTIONS(2128), + [anon_sym_ATautoreleasepool] = ACTIONS(2130), + [anon_sym_ATsynchronized] = ACTIONS(2130), + [anon_sym_ATtry] = ACTIONS(2130), + [anon_sym_ATthrow] = ACTIONS(2130), + [anon_sym_ATselector] = ACTIONS(2130), + [anon_sym_ATencode] = ACTIONS(2130), + [anon_sym_AT] = ACTIONS(2128), + [sym_YES] = ACTIONS(2128), + [sym_NO] = ACTIONS(2128), + [anon_sym___builtin_available] = ACTIONS(2128), + [anon_sym_ATavailable] = ACTIONS(2130), + [anon_sym_va_arg] = ACTIONS(2128), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1414] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1415] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1416] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1417] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1418] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1419] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1420] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1421] = { + [sym_identifier] = ACTIONS(2092), + [aux_sym_preproc_include_token1] = ACTIONS(2094), + [aux_sym_preproc_def_token1] = ACTIONS(2094), + [aux_sym_preproc_if_token1] = ACTIONS(2092), + [aux_sym_preproc_if_token2] = ACTIONS(2092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2092), + [anon_sym_LPAREN2] = ACTIONS(2094), + [anon_sym_BANG] = ACTIONS(2094), + [anon_sym_TILDE] = ACTIONS(2094), + [anon_sym_DASH] = ACTIONS(2092), + [anon_sym_PLUS] = ACTIONS(2092), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_CARET] = ACTIONS(2094), + [anon_sym_AMP] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2094), + [anon_sym_typedef] = ACTIONS(2092), + [anon_sym_extern] = ACTIONS(2092), + [anon_sym___attribute] = ACTIONS(2092), + [anon_sym___attribute__] = ACTIONS(2092), + [anon_sym___declspec] = ACTIONS(2092), + [anon_sym___cdecl] = ACTIONS(2092), + [anon_sym___clrcall] = ACTIONS(2092), + [anon_sym___stdcall] = ACTIONS(2092), + [anon_sym___fastcall] = ACTIONS(2092), + [anon_sym___thiscall] = ACTIONS(2092), + [anon_sym___vectorcall] = ACTIONS(2092), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_LBRACK] = ACTIONS(2094), + [anon_sym_static] = ACTIONS(2092), + [anon_sym_auto] = ACTIONS(2092), + [anon_sym_register] = ACTIONS(2092), + [anon_sym_inline] = ACTIONS(2092), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2092), + [anon_sym_const] = ACTIONS(2092), + [anon_sym_volatile] = ACTIONS(2092), + [anon_sym_restrict] = ACTIONS(2092), + [anon_sym__Atomic] = ACTIONS(2092), + [anon_sym_in] = ACTIONS(2092), + [anon_sym_out] = ACTIONS(2092), + [anon_sym_inout] = ACTIONS(2092), + [anon_sym_bycopy] = ACTIONS(2092), + [anon_sym_byref] = ACTIONS(2092), + [anon_sym_oneway] = ACTIONS(2092), + [anon_sym__Nullable] = ACTIONS(2092), + [anon_sym__Nonnull] = ACTIONS(2092), + [anon_sym__Nullable_result] = ACTIONS(2092), + [anon_sym__Null_unspecified] = ACTIONS(2092), + [anon_sym___autoreleasing] = ACTIONS(2092), + [anon_sym___nullable] = ACTIONS(2092), + [anon_sym___nonnull] = ACTIONS(2092), + [anon_sym___strong] = ACTIONS(2092), + [anon_sym___weak] = ACTIONS(2092), + [anon_sym___bridge] = ACTIONS(2092), + [anon_sym___bridge_transfer] = ACTIONS(2092), + [anon_sym___bridge_retained] = ACTIONS(2092), + [anon_sym___unsafe_unretained] = ACTIONS(2092), + [anon_sym___block] = ACTIONS(2092), + [anon_sym___kindof] = ACTIONS(2092), + [anon_sym___unused] = ACTIONS(2092), + [anon_sym__Complex] = ACTIONS(2092), + [anon_sym___complex] = ACTIONS(2092), + [anon_sym_IBOutlet] = ACTIONS(2092), + [anon_sym_IBInspectable] = ACTIONS(2092), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2092), + [anon_sym_signed] = ACTIONS(2092), + [anon_sym_unsigned] = ACTIONS(2092), + [anon_sym_long] = ACTIONS(2092), + [anon_sym_short] = ACTIONS(2092), + [sym_primitive_type] = ACTIONS(2092), + [anon_sym_enum] = ACTIONS(2092), + [anon_sym_struct] = ACTIONS(2092), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_if] = ACTIONS(2092), + [anon_sym_switch] = ACTIONS(2092), + [anon_sym_case] = ACTIONS(2092), + [anon_sym_default] = ACTIONS(2092), + [anon_sym_while] = ACTIONS(2092), + [anon_sym_do] = ACTIONS(2092), + [anon_sym_for] = ACTIONS(2092), + [anon_sym_return] = ACTIONS(2092), + [anon_sym_break] = ACTIONS(2092), + [anon_sym_continue] = ACTIONS(2092), + [anon_sym_goto] = ACTIONS(2092), + [anon_sym_DASH_DASH] = ACTIONS(2094), + [anon_sym_PLUS_PLUS] = ACTIONS(2094), + [anon_sym_sizeof] = ACTIONS(2092), + [sym_number_literal] = ACTIONS(2094), + [anon_sym_L_SQUOTE] = ACTIONS(2094), + [anon_sym_u_SQUOTE] = ACTIONS(2094), + [anon_sym_U_SQUOTE] = ACTIONS(2094), + [anon_sym_u8_SQUOTE] = ACTIONS(2094), + [anon_sym_SQUOTE] = ACTIONS(2094), + [anon_sym_L_DQUOTE] = ACTIONS(2094), + [anon_sym_u_DQUOTE] = ACTIONS(2094), + [anon_sym_U_DQUOTE] = ACTIONS(2094), + [anon_sym_u8_DQUOTE] = ACTIONS(2094), + [anon_sym_DQUOTE] = ACTIONS(2094), + [sym_true] = ACTIONS(2092), + [sym_false] = ACTIONS(2092), + [sym_null] = ACTIONS(2092), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2094), + [anon_sym_ATimport] = ACTIONS(2094), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2092), + [anon_sym_ATcompatibility_alias] = ACTIONS(2094), + [anon_sym_ATprotocol] = ACTIONS(2094), + [anon_sym_ATclass] = ACTIONS(2094), + [anon_sym_ATinterface] = ACTIONS(2094), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2092), + [sym_method_attribute_specifier] = ACTIONS(2092), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2092), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2092), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2092), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2092), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2092), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2092), + [anon_sym_NS_AVAILABLE] = ACTIONS(2092), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2092), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2092), + [anon_sym_API_AVAILABLE] = ACTIONS(2092), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2092), + [anon_sym_API_DEPRECATED] = ACTIONS(2092), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2092), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2092), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2092), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2092), + [anon_sym___deprecated_msg] = ACTIONS(2092), + [anon_sym___deprecated_enum_msg] = ACTIONS(2092), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2092), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2092), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2092), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2092), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2092), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2092), + [anon_sym_ATimplementation] = ACTIONS(2094), + [anon_sym_NS_ENUM] = ACTIONS(2092), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2092), + [anon_sym_NS_OPTIONS] = ACTIONS(2092), + [anon_sym_typeof] = ACTIONS(2092), + [anon_sym___typeof] = ACTIONS(2092), + [anon_sym___typeof__] = ACTIONS(2092), + [sym_self] = ACTIONS(2092), + [sym_super] = ACTIONS(2092), + [sym_nil] = ACTIONS(2092), + [sym_id] = ACTIONS(2092), + [sym_instancetype] = ACTIONS(2092), + [sym_Class] = ACTIONS(2092), + [sym_SEL] = ACTIONS(2092), + [sym_IMP] = ACTIONS(2092), + [sym_BOOL] = ACTIONS(2092), + [sym_auto] = ACTIONS(2092), + [anon_sym_ATautoreleasepool] = ACTIONS(2094), + [anon_sym_ATsynchronized] = ACTIONS(2094), + [anon_sym_ATtry] = ACTIONS(2094), + [anon_sym_ATthrow] = ACTIONS(2094), + [anon_sym_ATselector] = ACTIONS(2094), + [anon_sym_ATencode] = ACTIONS(2094), + [anon_sym_AT] = ACTIONS(2092), + [sym_YES] = ACTIONS(2092), + [sym_NO] = ACTIONS(2092), + [anon_sym___builtin_available] = ACTIONS(2092), + [anon_sym_ATavailable] = ACTIONS(2094), + [anon_sym_va_arg] = ACTIONS(2092), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1422] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1423] = { + [sym_identifier] = ACTIONS(1868), + [aux_sym_preproc_include_token1] = ACTIONS(1870), + [aux_sym_preproc_def_token1] = ACTIONS(1870), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_if_token2] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym___attribute] = ACTIONS(1868), + [anon_sym___attribute__] = ACTIONS(1868), + [anon_sym___declspec] = ACTIONS(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_auto] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_inline] = ACTIONS(1868), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_volatile] = ACTIONS(1868), + [anon_sym_restrict] = ACTIONS(1868), + [anon_sym__Atomic] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_out] = ACTIONS(1868), + [anon_sym_inout] = ACTIONS(1868), + [anon_sym_bycopy] = ACTIONS(1868), + [anon_sym_byref] = ACTIONS(1868), + [anon_sym_oneway] = ACTIONS(1868), + [anon_sym__Nullable] = ACTIONS(1868), + [anon_sym__Nonnull] = ACTIONS(1868), + [anon_sym__Nullable_result] = ACTIONS(1868), + [anon_sym__Null_unspecified] = ACTIONS(1868), + [anon_sym___autoreleasing] = ACTIONS(1868), + [anon_sym___nullable] = ACTIONS(1868), + [anon_sym___nonnull] = ACTIONS(1868), + [anon_sym___strong] = ACTIONS(1868), + [anon_sym___weak] = ACTIONS(1868), + [anon_sym___bridge] = ACTIONS(1868), + [anon_sym___bridge_transfer] = ACTIONS(1868), + [anon_sym___bridge_retained] = ACTIONS(1868), + [anon_sym___unsafe_unretained] = ACTIONS(1868), + [anon_sym___block] = ACTIONS(1868), + [anon_sym___kindof] = ACTIONS(1868), + [anon_sym___unused] = ACTIONS(1868), + [anon_sym__Complex] = ACTIONS(1868), + [anon_sym___complex] = ACTIONS(1868), + [anon_sym_IBOutlet] = ACTIONS(1868), + [anon_sym_IBInspectable] = ACTIONS(1868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1868), + [anon_sym_signed] = ACTIONS(1868), + [anon_sym_unsigned] = ACTIONS(1868), + [anon_sym_long] = ACTIONS(1868), + [anon_sym_short] = ACTIONS(1868), + [sym_primitive_type] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_sizeof] = ACTIONS(1868), + [sym_number_literal] = ACTIONS(1870), + [anon_sym_L_SQUOTE] = ACTIONS(1870), + [anon_sym_u_SQUOTE] = ACTIONS(1870), + [anon_sym_U_SQUOTE] = ACTIONS(1870), + [anon_sym_u8_SQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_L_DQUOTE] = ACTIONS(1870), + [anon_sym_u_DQUOTE] = ACTIONS(1870), + [anon_sym_U_DQUOTE] = ACTIONS(1870), + [anon_sym_u8_DQUOTE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1870), + [anon_sym_ATimport] = ACTIONS(1870), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1868), + [anon_sym_ATcompatibility_alias] = ACTIONS(1870), + [anon_sym_ATprotocol] = ACTIONS(1870), + [anon_sym_ATclass] = ACTIONS(1870), + [anon_sym_ATinterface] = ACTIONS(1870), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1868), + [sym_method_attribute_specifier] = ACTIONS(1868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE] = ACTIONS(1868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_API_AVAILABLE] = ACTIONS(1868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_API_DEPRECATED] = ACTIONS(1868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1868), + [anon_sym___deprecated_msg] = ACTIONS(1868), + [anon_sym___deprecated_enum_msg] = ACTIONS(1868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1868), + [anon_sym_ATimplementation] = ACTIONS(1870), + [anon_sym_NS_ENUM] = ACTIONS(1868), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1868), + [anon_sym_NS_OPTIONS] = ACTIONS(1868), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym___typeof] = ACTIONS(1868), + [anon_sym___typeof__] = ACTIONS(1868), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [sym_id] = ACTIONS(1868), + [sym_instancetype] = ACTIONS(1868), + [sym_Class] = ACTIONS(1868), + [sym_SEL] = ACTIONS(1868), + [sym_IMP] = ACTIONS(1868), + [sym_BOOL] = ACTIONS(1868), + [sym_auto] = ACTIONS(1868), + [anon_sym_ATautoreleasepool] = ACTIONS(1870), + [anon_sym_ATsynchronized] = ACTIONS(1870), + [anon_sym_ATtry] = ACTIONS(1870), + [anon_sym_ATthrow] = ACTIONS(1870), + [anon_sym_ATselector] = ACTIONS(1870), + [anon_sym_ATencode] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1868), + [sym_YES] = ACTIONS(1868), + [sym_NO] = ACTIONS(1868), + [anon_sym___builtin_available] = ACTIONS(1868), + [anon_sym_ATavailable] = ACTIONS(1870), + [anon_sym_va_arg] = ACTIONS(1868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1424] = { + [sym_identifier] = ACTIONS(1868), + [aux_sym_preproc_include_token1] = ACTIONS(1870), + [aux_sym_preproc_def_token1] = ACTIONS(1870), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_if_token2] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym___attribute] = ACTIONS(1868), + [anon_sym___attribute__] = ACTIONS(1868), + [anon_sym___declspec] = ACTIONS(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_auto] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_inline] = ACTIONS(1868), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_volatile] = ACTIONS(1868), + [anon_sym_restrict] = ACTIONS(1868), + [anon_sym__Atomic] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_out] = ACTIONS(1868), + [anon_sym_inout] = ACTIONS(1868), + [anon_sym_bycopy] = ACTIONS(1868), + [anon_sym_byref] = ACTIONS(1868), + [anon_sym_oneway] = ACTIONS(1868), + [anon_sym__Nullable] = ACTIONS(1868), + [anon_sym__Nonnull] = ACTIONS(1868), + [anon_sym__Nullable_result] = ACTIONS(1868), + [anon_sym__Null_unspecified] = ACTIONS(1868), + [anon_sym___autoreleasing] = ACTIONS(1868), + [anon_sym___nullable] = ACTIONS(1868), + [anon_sym___nonnull] = ACTIONS(1868), + [anon_sym___strong] = ACTIONS(1868), + [anon_sym___weak] = ACTIONS(1868), + [anon_sym___bridge] = ACTIONS(1868), + [anon_sym___bridge_transfer] = ACTIONS(1868), + [anon_sym___bridge_retained] = ACTIONS(1868), + [anon_sym___unsafe_unretained] = ACTIONS(1868), + [anon_sym___block] = ACTIONS(1868), + [anon_sym___kindof] = ACTIONS(1868), + [anon_sym___unused] = ACTIONS(1868), + [anon_sym__Complex] = ACTIONS(1868), + [anon_sym___complex] = ACTIONS(1868), + [anon_sym_IBOutlet] = ACTIONS(1868), + [anon_sym_IBInspectable] = ACTIONS(1868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1868), + [anon_sym_signed] = ACTIONS(1868), + [anon_sym_unsigned] = ACTIONS(1868), + [anon_sym_long] = ACTIONS(1868), + [anon_sym_short] = ACTIONS(1868), + [sym_primitive_type] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_sizeof] = ACTIONS(1868), + [sym_number_literal] = ACTIONS(1870), + [anon_sym_L_SQUOTE] = ACTIONS(1870), + [anon_sym_u_SQUOTE] = ACTIONS(1870), + [anon_sym_U_SQUOTE] = ACTIONS(1870), + [anon_sym_u8_SQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_L_DQUOTE] = ACTIONS(1870), + [anon_sym_u_DQUOTE] = ACTIONS(1870), + [anon_sym_U_DQUOTE] = ACTIONS(1870), + [anon_sym_u8_DQUOTE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1870), + [anon_sym_ATimport] = ACTIONS(1870), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1868), + [anon_sym_ATcompatibility_alias] = ACTIONS(1870), + [anon_sym_ATprotocol] = ACTIONS(1870), + [anon_sym_ATclass] = ACTIONS(1870), + [anon_sym_ATinterface] = ACTIONS(1870), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1868), + [sym_method_attribute_specifier] = ACTIONS(1868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE] = ACTIONS(1868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_API_AVAILABLE] = ACTIONS(1868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_API_DEPRECATED] = ACTIONS(1868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1868), + [anon_sym___deprecated_msg] = ACTIONS(1868), + [anon_sym___deprecated_enum_msg] = ACTIONS(1868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1868), + [anon_sym_ATimplementation] = ACTIONS(1870), + [anon_sym_NS_ENUM] = ACTIONS(1868), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1868), + [anon_sym_NS_OPTIONS] = ACTIONS(1868), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym___typeof] = ACTIONS(1868), + [anon_sym___typeof__] = ACTIONS(1868), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [sym_id] = ACTIONS(1868), + [sym_instancetype] = ACTIONS(1868), + [sym_Class] = ACTIONS(1868), + [sym_SEL] = ACTIONS(1868), + [sym_IMP] = ACTIONS(1868), + [sym_BOOL] = ACTIONS(1868), + [sym_auto] = ACTIONS(1868), + [anon_sym_ATautoreleasepool] = ACTIONS(1870), + [anon_sym_ATsynchronized] = ACTIONS(1870), + [anon_sym_ATtry] = ACTIONS(1870), + [anon_sym_ATthrow] = ACTIONS(1870), + [anon_sym_ATselector] = ACTIONS(1870), + [anon_sym_ATencode] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1868), + [sym_YES] = ACTIONS(1868), + [sym_NO] = ACTIONS(1868), + [anon_sym___builtin_available] = ACTIONS(1868), + [anon_sym_ATavailable] = ACTIONS(1870), + [anon_sym_va_arg] = ACTIONS(1868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1425] = { + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2030), + [aux_sym_preproc_def_token1] = ACTIONS(2030), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token2] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_auto] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_out] = ACTIONS(2028), + [anon_sym_inout] = ACTIONS(2028), + [anon_sym_bycopy] = ACTIONS(2028), + [anon_sym_byref] = ACTIONS(2028), + [anon_sym_oneway] = ACTIONS(2028), + [anon_sym__Nullable] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym__Nullable_result] = ACTIONS(2028), + [anon_sym__Null_unspecified] = ACTIONS(2028), + [anon_sym___autoreleasing] = ACTIONS(2028), + [anon_sym___nullable] = ACTIONS(2028), + [anon_sym___nonnull] = ACTIONS(2028), + [anon_sym___strong] = ACTIONS(2028), + [anon_sym___weak] = ACTIONS(2028), + [anon_sym___bridge] = ACTIONS(2028), + [anon_sym___bridge_transfer] = ACTIONS(2028), + [anon_sym___bridge_retained] = ACTIONS(2028), + [anon_sym___unsafe_unretained] = ACTIONS(2028), + [anon_sym___block] = ACTIONS(2028), + [anon_sym___kindof] = ACTIONS(2028), + [anon_sym___unused] = ACTIONS(2028), + [anon_sym__Complex] = ACTIONS(2028), + [anon_sym___complex] = ACTIONS(2028), + [anon_sym_IBOutlet] = ACTIONS(2028), + [anon_sym_IBInspectable] = ACTIONS(2028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2028), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2030), + [anon_sym_ATimport] = ACTIONS(2030), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2028), + [anon_sym_ATcompatibility_alias] = ACTIONS(2030), + [anon_sym_ATprotocol] = ACTIONS(2030), + [anon_sym_ATclass] = ACTIONS(2030), + [anon_sym_ATinterface] = ACTIONS(2030), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2028), + [sym_method_attribute_specifier] = ACTIONS(2028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE] = ACTIONS(2028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_API_AVAILABLE] = ACTIONS(2028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_API_DEPRECATED] = ACTIONS(2028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2028), + [anon_sym___deprecated_msg] = ACTIONS(2028), + [anon_sym___deprecated_enum_msg] = ACTIONS(2028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2028), + [anon_sym_ATimplementation] = ACTIONS(2030), + [anon_sym_NS_ENUM] = ACTIONS(2028), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2028), + [anon_sym_NS_OPTIONS] = ACTIONS(2028), + [anon_sym_typeof] = ACTIONS(2028), + [anon_sym___typeof] = ACTIONS(2028), + [anon_sym___typeof__] = ACTIONS(2028), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_nil] = ACTIONS(2028), + [sym_id] = ACTIONS(2028), + [sym_instancetype] = ACTIONS(2028), + [sym_Class] = ACTIONS(2028), + [sym_SEL] = ACTIONS(2028), + [sym_IMP] = ACTIONS(2028), + [sym_BOOL] = ACTIONS(2028), + [sym_auto] = ACTIONS(2028), + [anon_sym_ATautoreleasepool] = ACTIONS(2030), + [anon_sym_ATsynchronized] = ACTIONS(2030), + [anon_sym_ATtry] = ACTIONS(2030), + [anon_sym_ATthrow] = ACTIONS(2030), + [anon_sym_ATselector] = ACTIONS(2030), + [anon_sym_ATencode] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2028), + [sym_YES] = ACTIONS(2028), + [sym_NO] = ACTIONS(2028), + [anon_sym___builtin_available] = ACTIONS(2028), + [anon_sym_ATavailable] = ACTIONS(2030), + [anon_sym_va_arg] = ACTIONS(2028), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1426] = { + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2030), + [aux_sym_preproc_def_token1] = ACTIONS(2030), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token2] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_auto] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_out] = ACTIONS(2028), + [anon_sym_inout] = ACTIONS(2028), + [anon_sym_bycopy] = ACTIONS(2028), + [anon_sym_byref] = ACTIONS(2028), + [anon_sym_oneway] = ACTIONS(2028), + [anon_sym__Nullable] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym__Nullable_result] = ACTIONS(2028), + [anon_sym__Null_unspecified] = ACTIONS(2028), + [anon_sym___autoreleasing] = ACTIONS(2028), + [anon_sym___nullable] = ACTIONS(2028), + [anon_sym___nonnull] = ACTIONS(2028), + [anon_sym___strong] = ACTIONS(2028), + [anon_sym___weak] = ACTIONS(2028), + [anon_sym___bridge] = ACTIONS(2028), + [anon_sym___bridge_transfer] = ACTIONS(2028), + [anon_sym___bridge_retained] = ACTIONS(2028), + [anon_sym___unsafe_unretained] = ACTIONS(2028), + [anon_sym___block] = ACTIONS(2028), + [anon_sym___kindof] = ACTIONS(2028), + [anon_sym___unused] = ACTIONS(2028), + [anon_sym__Complex] = ACTIONS(2028), + [anon_sym___complex] = ACTIONS(2028), + [anon_sym_IBOutlet] = ACTIONS(2028), + [anon_sym_IBInspectable] = ACTIONS(2028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2028), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2030), + [anon_sym_ATimport] = ACTIONS(2030), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2028), + [anon_sym_ATcompatibility_alias] = ACTIONS(2030), + [anon_sym_ATprotocol] = ACTIONS(2030), + [anon_sym_ATclass] = ACTIONS(2030), + [anon_sym_ATinterface] = ACTIONS(2030), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2028), + [sym_method_attribute_specifier] = ACTIONS(2028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE] = ACTIONS(2028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_API_AVAILABLE] = ACTIONS(2028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_API_DEPRECATED] = ACTIONS(2028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2028), + [anon_sym___deprecated_msg] = ACTIONS(2028), + [anon_sym___deprecated_enum_msg] = ACTIONS(2028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2028), + [anon_sym_ATimplementation] = ACTIONS(2030), + [anon_sym_NS_ENUM] = ACTIONS(2028), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2028), + [anon_sym_NS_OPTIONS] = ACTIONS(2028), + [anon_sym_typeof] = ACTIONS(2028), + [anon_sym___typeof] = ACTIONS(2028), + [anon_sym___typeof__] = ACTIONS(2028), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_nil] = ACTIONS(2028), + [sym_id] = ACTIONS(2028), + [sym_instancetype] = ACTIONS(2028), + [sym_Class] = ACTIONS(2028), + [sym_SEL] = ACTIONS(2028), + [sym_IMP] = ACTIONS(2028), + [sym_BOOL] = ACTIONS(2028), + [sym_auto] = ACTIONS(2028), + [anon_sym_ATautoreleasepool] = ACTIONS(2030), + [anon_sym_ATsynchronized] = ACTIONS(2030), + [anon_sym_ATtry] = ACTIONS(2030), + [anon_sym_ATthrow] = ACTIONS(2030), + [anon_sym_ATselector] = ACTIONS(2030), + [anon_sym_ATencode] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2028), + [sym_YES] = ACTIONS(2028), + [sym_NO] = ACTIONS(2028), + [anon_sym___builtin_available] = ACTIONS(2028), + [anon_sym_ATavailable] = ACTIONS(2030), + [anon_sym_va_arg] = ACTIONS(2028), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1427] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1428] = { + [sym_identifier] = ACTIONS(1868), + [aux_sym_preproc_include_token1] = ACTIONS(1870), + [aux_sym_preproc_def_token1] = ACTIONS(1870), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_if_token2] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym___attribute] = ACTIONS(1868), + [anon_sym___attribute__] = ACTIONS(1868), + [anon_sym___declspec] = ACTIONS(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_auto] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_inline] = ACTIONS(1868), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_volatile] = ACTIONS(1868), + [anon_sym_restrict] = ACTIONS(1868), + [anon_sym__Atomic] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_out] = ACTIONS(1868), + [anon_sym_inout] = ACTIONS(1868), + [anon_sym_bycopy] = ACTIONS(1868), + [anon_sym_byref] = ACTIONS(1868), + [anon_sym_oneway] = ACTIONS(1868), + [anon_sym__Nullable] = ACTIONS(1868), + [anon_sym__Nonnull] = ACTIONS(1868), + [anon_sym__Nullable_result] = ACTIONS(1868), + [anon_sym__Null_unspecified] = ACTIONS(1868), + [anon_sym___autoreleasing] = ACTIONS(1868), + [anon_sym___nullable] = ACTIONS(1868), + [anon_sym___nonnull] = ACTIONS(1868), + [anon_sym___strong] = ACTIONS(1868), + [anon_sym___weak] = ACTIONS(1868), + [anon_sym___bridge] = ACTIONS(1868), + [anon_sym___bridge_transfer] = ACTIONS(1868), + [anon_sym___bridge_retained] = ACTIONS(1868), + [anon_sym___unsafe_unretained] = ACTIONS(1868), + [anon_sym___block] = ACTIONS(1868), + [anon_sym___kindof] = ACTIONS(1868), + [anon_sym___unused] = ACTIONS(1868), + [anon_sym__Complex] = ACTIONS(1868), + [anon_sym___complex] = ACTIONS(1868), + [anon_sym_IBOutlet] = ACTIONS(1868), + [anon_sym_IBInspectable] = ACTIONS(1868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1868), + [anon_sym_signed] = ACTIONS(1868), + [anon_sym_unsigned] = ACTIONS(1868), + [anon_sym_long] = ACTIONS(1868), + [anon_sym_short] = ACTIONS(1868), + [sym_primitive_type] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_sizeof] = ACTIONS(1868), + [sym_number_literal] = ACTIONS(1870), + [anon_sym_L_SQUOTE] = ACTIONS(1870), + [anon_sym_u_SQUOTE] = ACTIONS(1870), + [anon_sym_U_SQUOTE] = ACTIONS(1870), + [anon_sym_u8_SQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_L_DQUOTE] = ACTIONS(1870), + [anon_sym_u_DQUOTE] = ACTIONS(1870), + [anon_sym_U_DQUOTE] = ACTIONS(1870), + [anon_sym_u8_DQUOTE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1870), + [anon_sym_ATimport] = ACTIONS(1870), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1868), + [anon_sym_ATcompatibility_alias] = ACTIONS(1870), + [anon_sym_ATprotocol] = ACTIONS(1870), + [anon_sym_ATclass] = ACTIONS(1870), + [anon_sym_ATinterface] = ACTIONS(1870), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1868), + [sym_method_attribute_specifier] = ACTIONS(1868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE] = ACTIONS(1868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_API_AVAILABLE] = ACTIONS(1868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_API_DEPRECATED] = ACTIONS(1868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1868), + [anon_sym___deprecated_msg] = ACTIONS(1868), + [anon_sym___deprecated_enum_msg] = ACTIONS(1868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1868), + [anon_sym_ATimplementation] = ACTIONS(1870), + [anon_sym_NS_ENUM] = ACTIONS(1868), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1868), + [anon_sym_NS_OPTIONS] = ACTIONS(1868), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym___typeof] = ACTIONS(1868), + [anon_sym___typeof__] = ACTIONS(1868), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [sym_id] = ACTIONS(1868), + [sym_instancetype] = ACTIONS(1868), + [sym_Class] = ACTIONS(1868), + [sym_SEL] = ACTIONS(1868), + [sym_IMP] = ACTIONS(1868), + [sym_BOOL] = ACTIONS(1868), + [sym_auto] = ACTIONS(1868), + [anon_sym_ATautoreleasepool] = ACTIONS(1870), + [anon_sym_ATsynchronized] = ACTIONS(1870), + [anon_sym_ATtry] = ACTIONS(1870), + [anon_sym_ATthrow] = ACTIONS(1870), + [anon_sym_ATselector] = ACTIONS(1870), + [anon_sym_ATencode] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1868), + [sym_YES] = ACTIONS(1868), + [sym_NO] = ACTIONS(1868), + [anon_sym___builtin_available] = ACTIONS(1868), + [anon_sym_ATavailable] = ACTIONS(1870), + [anon_sym_va_arg] = ACTIONS(1868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1429] = { + [sym_identifier] = ACTIONS(1868), + [aux_sym_preproc_include_token1] = ACTIONS(1870), + [aux_sym_preproc_def_token1] = ACTIONS(1870), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_if_token2] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym___attribute] = ACTIONS(1868), + [anon_sym___attribute__] = ACTIONS(1868), + [anon_sym___declspec] = ACTIONS(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_auto] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_inline] = ACTIONS(1868), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_volatile] = ACTIONS(1868), + [anon_sym_restrict] = ACTIONS(1868), + [anon_sym__Atomic] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_out] = ACTIONS(1868), + [anon_sym_inout] = ACTIONS(1868), + [anon_sym_bycopy] = ACTIONS(1868), + [anon_sym_byref] = ACTIONS(1868), + [anon_sym_oneway] = ACTIONS(1868), + [anon_sym__Nullable] = ACTIONS(1868), + [anon_sym__Nonnull] = ACTIONS(1868), + [anon_sym__Nullable_result] = ACTIONS(1868), + [anon_sym__Null_unspecified] = ACTIONS(1868), + [anon_sym___autoreleasing] = ACTIONS(1868), + [anon_sym___nullable] = ACTIONS(1868), + [anon_sym___nonnull] = ACTIONS(1868), + [anon_sym___strong] = ACTIONS(1868), + [anon_sym___weak] = ACTIONS(1868), + [anon_sym___bridge] = ACTIONS(1868), + [anon_sym___bridge_transfer] = ACTIONS(1868), + [anon_sym___bridge_retained] = ACTIONS(1868), + [anon_sym___unsafe_unretained] = ACTIONS(1868), + [anon_sym___block] = ACTIONS(1868), + [anon_sym___kindof] = ACTIONS(1868), + [anon_sym___unused] = ACTIONS(1868), + [anon_sym__Complex] = ACTIONS(1868), + [anon_sym___complex] = ACTIONS(1868), + [anon_sym_IBOutlet] = ACTIONS(1868), + [anon_sym_IBInspectable] = ACTIONS(1868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1868), + [anon_sym_signed] = ACTIONS(1868), + [anon_sym_unsigned] = ACTIONS(1868), + [anon_sym_long] = ACTIONS(1868), + [anon_sym_short] = ACTIONS(1868), + [sym_primitive_type] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_sizeof] = ACTIONS(1868), + [sym_number_literal] = ACTIONS(1870), + [anon_sym_L_SQUOTE] = ACTIONS(1870), + [anon_sym_u_SQUOTE] = ACTIONS(1870), + [anon_sym_U_SQUOTE] = ACTIONS(1870), + [anon_sym_u8_SQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_L_DQUOTE] = ACTIONS(1870), + [anon_sym_u_DQUOTE] = ACTIONS(1870), + [anon_sym_U_DQUOTE] = ACTIONS(1870), + [anon_sym_u8_DQUOTE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1870), + [anon_sym_ATimport] = ACTIONS(1870), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1868), + [anon_sym_ATcompatibility_alias] = ACTIONS(1870), + [anon_sym_ATprotocol] = ACTIONS(1870), + [anon_sym_ATclass] = ACTIONS(1870), + [anon_sym_ATinterface] = ACTIONS(1870), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1868), + [sym_method_attribute_specifier] = ACTIONS(1868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE] = ACTIONS(1868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_API_AVAILABLE] = ACTIONS(1868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_API_DEPRECATED] = ACTIONS(1868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1868), + [anon_sym___deprecated_msg] = ACTIONS(1868), + [anon_sym___deprecated_enum_msg] = ACTIONS(1868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1868), + [anon_sym_ATimplementation] = ACTIONS(1870), + [anon_sym_NS_ENUM] = ACTIONS(1868), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1868), + [anon_sym_NS_OPTIONS] = ACTIONS(1868), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym___typeof] = ACTIONS(1868), + [anon_sym___typeof__] = ACTIONS(1868), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [sym_id] = ACTIONS(1868), + [sym_instancetype] = ACTIONS(1868), + [sym_Class] = ACTIONS(1868), + [sym_SEL] = ACTIONS(1868), + [sym_IMP] = ACTIONS(1868), + [sym_BOOL] = ACTIONS(1868), + [sym_auto] = ACTIONS(1868), + [anon_sym_ATautoreleasepool] = ACTIONS(1870), + [anon_sym_ATsynchronized] = ACTIONS(1870), + [anon_sym_ATtry] = ACTIONS(1870), + [anon_sym_ATthrow] = ACTIONS(1870), + [anon_sym_ATselector] = ACTIONS(1870), + [anon_sym_ATencode] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1868), + [sym_YES] = ACTIONS(1868), + [sym_NO] = ACTIONS(1868), + [anon_sym___builtin_available] = ACTIONS(1868), + [anon_sym_ATavailable] = ACTIONS(1870), + [anon_sym_va_arg] = ACTIONS(1868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1430] = { + [sym_identifier] = ACTIONS(1868), + [aux_sym_preproc_include_token1] = ACTIONS(1870), + [aux_sym_preproc_def_token1] = ACTIONS(1870), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_if_token2] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym___attribute] = ACTIONS(1868), + [anon_sym___attribute__] = ACTIONS(1868), + [anon_sym___declspec] = ACTIONS(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_auto] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_inline] = ACTIONS(1868), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_volatile] = ACTIONS(1868), + [anon_sym_restrict] = ACTIONS(1868), + [anon_sym__Atomic] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_out] = ACTIONS(1868), + [anon_sym_inout] = ACTIONS(1868), + [anon_sym_bycopy] = ACTIONS(1868), + [anon_sym_byref] = ACTIONS(1868), + [anon_sym_oneway] = ACTIONS(1868), + [anon_sym__Nullable] = ACTIONS(1868), + [anon_sym__Nonnull] = ACTIONS(1868), + [anon_sym__Nullable_result] = ACTIONS(1868), + [anon_sym__Null_unspecified] = ACTIONS(1868), + [anon_sym___autoreleasing] = ACTIONS(1868), + [anon_sym___nullable] = ACTIONS(1868), + [anon_sym___nonnull] = ACTIONS(1868), + [anon_sym___strong] = ACTIONS(1868), + [anon_sym___weak] = ACTIONS(1868), + [anon_sym___bridge] = ACTIONS(1868), + [anon_sym___bridge_transfer] = ACTIONS(1868), + [anon_sym___bridge_retained] = ACTIONS(1868), + [anon_sym___unsafe_unretained] = ACTIONS(1868), + [anon_sym___block] = ACTIONS(1868), + [anon_sym___kindof] = ACTIONS(1868), + [anon_sym___unused] = ACTIONS(1868), + [anon_sym__Complex] = ACTIONS(1868), + [anon_sym___complex] = ACTIONS(1868), + [anon_sym_IBOutlet] = ACTIONS(1868), + [anon_sym_IBInspectable] = ACTIONS(1868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1868), + [anon_sym_signed] = ACTIONS(1868), + [anon_sym_unsigned] = ACTIONS(1868), + [anon_sym_long] = ACTIONS(1868), + [anon_sym_short] = ACTIONS(1868), + [sym_primitive_type] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_sizeof] = ACTIONS(1868), + [sym_number_literal] = ACTIONS(1870), + [anon_sym_L_SQUOTE] = ACTIONS(1870), + [anon_sym_u_SQUOTE] = ACTIONS(1870), + [anon_sym_U_SQUOTE] = ACTIONS(1870), + [anon_sym_u8_SQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_L_DQUOTE] = ACTIONS(1870), + [anon_sym_u_DQUOTE] = ACTIONS(1870), + [anon_sym_U_DQUOTE] = ACTIONS(1870), + [anon_sym_u8_DQUOTE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1870), + [anon_sym_ATimport] = ACTIONS(1870), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1868), + [anon_sym_ATcompatibility_alias] = ACTIONS(1870), + [anon_sym_ATprotocol] = ACTIONS(1870), + [anon_sym_ATclass] = ACTIONS(1870), + [anon_sym_ATinterface] = ACTIONS(1870), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1868), + [sym_method_attribute_specifier] = ACTIONS(1868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE] = ACTIONS(1868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_API_AVAILABLE] = ACTIONS(1868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_API_DEPRECATED] = ACTIONS(1868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1868), + [anon_sym___deprecated_msg] = ACTIONS(1868), + [anon_sym___deprecated_enum_msg] = ACTIONS(1868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1868), + [anon_sym_ATimplementation] = ACTIONS(1870), + [anon_sym_NS_ENUM] = ACTIONS(1868), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1868), + [anon_sym_NS_OPTIONS] = ACTIONS(1868), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym___typeof] = ACTIONS(1868), + [anon_sym___typeof__] = ACTIONS(1868), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [sym_id] = ACTIONS(1868), + [sym_instancetype] = ACTIONS(1868), + [sym_Class] = ACTIONS(1868), + [sym_SEL] = ACTIONS(1868), + [sym_IMP] = ACTIONS(1868), + [sym_BOOL] = ACTIONS(1868), + [sym_auto] = ACTIONS(1868), + [anon_sym_ATautoreleasepool] = ACTIONS(1870), + [anon_sym_ATsynchronized] = ACTIONS(1870), + [anon_sym_ATtry] = ACTIONS(1870), + [anon_sym_ATthrow] = ACTIONS(1870), + [anon_sym_ATselector] = ACTIONS(1870), + [anon_sym_ATencode] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1868), + [sym_YES] = ACTIONS(1868), + [sym_NO] = ACTIONS(1868), + [anon_sym___builtin_available] = ACTIONS(1868), + [anon_sym_ATavailable] = ACTIONS(1870), + [anon_sym_va_arg] = ACTIONS(1868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1431] = { + [sym_identifier] = ACTIONS(1868), + [aux_sym_preproc_include_token1] = ACTIONS(1870), + [aux_sym_preproc_def_token1] = ACTIONS(1870), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_if_token2] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_CARET] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_typedef] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym___attribute] = ACTIONS(1868), + [anon_sym___attribute__] = ACTIONS(1868), + [anon_sym___declspec] = ACTIONS(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_auto] = ACTIONS(1868), + [anon_sym_register] = ACTIONS(1868), + [anon_sym_inline] = ACTIONS(1868), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_volatile] = ACTIONS(1868), + [anon_sym_restrict] = ACTIONS(1868), + [anon_sym__Atomic] = ACTIONS(1868), + [anon_sym_in] = ACTIONS(1868), + [anon_sym_out] = ACTIONS(1868), + [anon_sym_inout] = ACTIONS(1868), + [anon_sym_bycopy] = ACTIONS(1868), + [anon_sym_byref] = ACTIONS(1868), + [anon_sym_oneway] = ACTIONS(1868), + [anon_sym__Nullable] = ACTIONS(1868), + [anon_sym__Nonnull] = ACTIONS(1868), + [anon_sym__Nullable_result] = ACTIONS(1868), + [anon_sym__Null_unspecified] = ACTIONS(1868), + [anon_sym___autoreleasing] = ACTIONS(1868), + [anon_sym___nullable] = ACTIONS(1868), + [anon_sym___nonnull] = ACTIONS(1868), + [anon_sym___strong] = ACTIONS(1868), + [anon_sym___weak] = ACTIONS(1868), + [anon_sym___bridge] = ACTIONS(1868), + [anon_sym___bridge_transfer] = ACTIONS(1868), + [anon_sym___bridge_retained] = ACTIONS(1868), + [anon_sym___unsafe_unretained] = ACTIONS(1868), + [anon_sym___block] = ACTIONS(1868), + [anon_sym___kindof] = ACTIONS(1868), + [anon_sym___unused] = ACTIONS(1868), + [anon_sym__Complex] = ACTIONS(1868), + [anon_sym___complex] = ACTIONS(1868), + [anon_sym_IBOutlet] = ACTIONS(1868), + [anon_sym_IBInspectable] = ACTIONS(1868), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1868), + [anon_sym_signed] = ACTIONS(1868), + [anon_sym_unsigned] = ACTIONS(1868), + [anon_sym_long] = ACTIONS(1868), + [anon_sym_short] = ACTIONS(1868), + [sym_primitive_type] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(1868), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_do] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_goto] = ACTIONS(1868), + [anon_sym_DASH_DASH] = ACTIONS(1870), + [anon_sym_PLUS_PLUS] = ACTIONS(1870), + [anon_sym_sizeof] = ACTIONS(1868), + [sym_number_literal] = ACTIONS(1870), + [anon_sym_L_SQUOTE] = ACTIONS(1870), + [anon_sym_u_SQUOTE] = ACTIONS(1870), + [anon_sym_U_SQUOTE] = ACTIONS(1870), + [anon_sym_u8_SQUOTE] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_L_DQUOTE] = ACTIONS(1870), + [anon_sym_u_DQUOTE] = ACTIONS(1870), + [anon_sym_U_DQUOTE] = ACTIONS(1870), + [anon_sym_u8_DQUOTE] = ACTIONS(1870), + [anon_sym_DQUOTE] = ACTIONS(1870), + [sym_true] = ACTIONS(1868), + [sym_false] = ACTIONS(1868), + [sym_null] = ACTIONS(1868), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1870), + [anon_sym_ATimport] = ACTIONS(1870), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1868), + [anon_sym_ATcompatibility_alias] = ACTIONS(1870), + [anon_sym_ATprotocol] = ACTIONS(1870), + [anon_sym_ATclass] = ACTIONS(1870), + [anon_sym_ATinterface] = ACTIONS(1870), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1868), + [sym_method_attribute_specifier] = ACTIONS(1868), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1868), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1868), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE] = ACTIONS(1868), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_API_AVAILABLE] = ACTIONS(1868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_API_DEPRECATED] = ACTIONS(1868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1868), + [anon_sym___deprecated_msg] = ACTIONS(1868), + [anon_sym___deprecated_enum_msg] = ACTIONS(1868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1868), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1868), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1868), + [anon_sym_ATimplementation] = ACTIONS(1870), + [anon_sym_NS_ENUM] = ACTIONS(1868), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1868), + [anon_sym_NS_OPTIONS] = ACTIONS(1868), + [anon_sym_typeof] = ACTIONS(1868), + [anon_sym___typeof] = ACTIONS(1868), + [anon_sym___typeof__] = ACTIONS(1868), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_nil] = ACTIONS(1868), + [sym_id] = ACTIONS(1868), + [sym_instancetype] = ACTIONS(1868), + [sym_Class] = ACTIONS(1868), + [sym_SEL] = ACTIONS(1868), + [sym_IMP] = ACTIONS(1868), + [sym_BOOL] = ACTIONS(1868), + [sym_auto] = ACTIONS(1868), + [anon_sym_ATautoreleasepool] = ACTIONS(1870), + [anon_sym_ATsynchronized] = ACTIONS(1870), + [anon_sym_ATtry] = ACTIONS(1870), + [anon_sym_ATthrow] = ACTIONS(1870), + [anon_sym_ATselector] = ACTIONS(1870), + [anon_sym_ATencode] = ACTIONS(1870), + [anon_sym_AT] = ACTIONS(1868), + [sym_YES] = ACTIONS(1868), + [sym_NO] = ACTIONS(1868), + [anon_sym___builtin_available] = ACTIONS(1868), + [anon_sym_ATavailable] = ACTIONS(1870), + [anon_sym_va_arg] = ACTIONS(1868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1432] = { + [sym_identifier] = ACTIONS(1864), + [aux_sym_preproc_include_token1] = ACTIONS(1866), + [aux_sym_preproc_def_token1] = ACTIONS(1866), + [aux_sym_preproc_if_token1] = ACTIONS(1864), + [aux_sym_preproc_if_token2] = ACTIONS(1864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1864), + [anon_sym_LPAREN2] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1864), + [anon_sym_PLUS] = ACTIONS(1864), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_CARET] = ACTIONS(1866), + [anon_sym_AMP] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_typedef] = ACTIONS(1864), + [anon_sym_extern] = ACTIONS(1864), + [anon_sym___attribute] = ACTIONS(1864), + [anon_sym___attribute__] = ACTIONS(1864), + [anon_sym___declspec] = ACTIONS(1864), + [anon_sym___cdecl] = ACTIONS(1864), + [anon_sym___clrcall] = ACTIONS(1864), + [anon_sym___stdcall] = ACTIONS(1864), + [anon_sym___fastcall] = ACTIONS(1864), + [anon_sym___thiscall] = ACTIONS(1864), + [anon_sym___vectorcall] = ACTIONS(1864), + [anon_sym_LBRACE] = ACTIONS(1866), + [anon_sym_LBRACK] = ACTIONS(1866), + [anon_sym_static] = ACTIONS(1864), + [anon_sym_auto] = ACTIONS(1864), + [anon_sym_register] = ACTIONS(1864), + [anon_sym_inline] = ACTIONS(1864), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1864), + [anon_sym_const] = ACTIONS(1864), + [anon_sym_volatile] = ACTIONS(1864), + [anon_sym_restrict] = ACTIONS(1864), + [anon_sym__Atomic] = ACTIONS(1864), + [anon_sym_in] = ACTIONS(1864), + [anon_sym_out] = ACTIONS(1864), + [anon_sym_inout] = ACTIONS(1864), + [anon_sym_bycopy] = ACTIONS(1864), + [anon_sym_byref] = ACTIONS(1864), + [anon_sym_oneway] = ACTIONS(1864), + [anon_sym__Nullable] = ACTIONS(1864), + [anon_sym__Nonnull] = ACTIONS(1864), + [anon_sym__Nullable_result] = ACTIONS(1864), + [anon_sym__Null_unspecified] = ACTIONS(1864), + [anon_sym___autoreleasing] = ACTIONS(1864), + [anon_sym___nullable] = ACTIONS(1864), + [anon_sym___nonnull] = ACTIONS(1864), + [anon_sym___strong] = ACTIONS(1864), + [anon_sym___weak] = ACTIONS(1864), + [anon_sym___bridge] = ACTIONS(1864), + [anon_sym___bridge_transfer] = ACTIONS(1864), + [anon_sym___bridge_retained] = ACTIONS(1864), + [anon_sym___unsafe_unretained] = ACTIONS(1864), + [anon_sym___block] = ACTIONS(1864), + [anon_sym___kindof] = ACTIONS(1864), + [anon_sym___unused] = ACTIONS(1864), + [anon_sym__Complex] = ACTIONS(1864), + [anon_sym___complex] = ACTIONS(1864), + [anon_sym_IBOutlet] = ACTIONS(1864), + [anon_sym_IBInspectable] = ACTIONS(1864), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1864), + [anon_sym_signed] = ACTIONS(1864), + [anon_sym_unsigned] = ACTIONS(1864), + [anon_sym_long] = ACTIONS(1864), + [anon_sym_short] = ACTIONS(1864), + [sym_primitive_type] = ACTIONS(1864), + [anon_sym_enum] = ACTIONS(1864), + [anon_sym_struct] = ACTIONS(1864), + [anon_sym_union] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_switch] = ACTIONS(1864), + [anon_sym_case] = ACTIONS(1864), + [anon_sym_default] = ACTIONS(1864), + [anon_sym_while] = ACTIONS(1864), + [anon_sym_do] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_break] = ACTIONS(1864), + [anon_sym_continue] = ACTIONS(1864), + [anon_sym_goto] = ACTIONS(1864), + [anon_sym_DASH_DASH] = ACTIONS(1866), + [anon_sym_PLUS_PLUS] = ACTIONS(1866), + [anon_sym_sizeof] = ACTIONS(1864), + [sym_number_literal] = ACTIONS(1866), + [anon_sym_L_SQUOTE] = ACTIONS(1866), + [anon_sym_u_SQUOTE] = ACTIONS(1866), + [anon_sym_U_SQUOTE] = ACTIONS(1866), + [anon_sym_u8_SQUOTE] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_L_DQUOTE] = ACTIONS(1866), + [anon_sym_u_DQUOTE] = ACTIONS(1866), + [anon_sym_U_DQUOTE] = ACTIONS(1866), + [anon_sym_u8_DQUOTE] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1866), + [sym_true] = ACTIONS(1864), + [sym_false] = ACTIONS(1864), + [sym_null] = ACTIONS(1864), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1866), + [anon_sym_ATimport] = ACTIONS(1866), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1864), + [anon_sym_ATcompatibility_alias] = ACTIONS(1866), + [anon_sym_ATprotocol] = ACTIONS(1866), + [anon_sym_ATclass] = ACTIONS(1866), + [anon_sym_ATinterface] = ACTIONS(1866), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1864), + [sym_method_attribute_specifier] = ACTIONS(1864), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1864), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1864), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1864), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1864), + [anon_sym_NS_AVAILABLE] = ACTIONS(1864), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1864), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1864), + [anon_sym_API_AVAILABLE] = ACTIONS(1864), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1864), + [anon_sym_API_DEPRECATED] = ACTIONS(1864), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1864), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1864), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1864), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1864), + [anon_sym___deprecated_msg] = ACTIONS(1864), + [anon_sym___deprecated_enum_msg] = ACTIONS(1864), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1864), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1864), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1864), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1864), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1864), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1864), + [anon_sym_ATimplementation] = ACTIONS(1866), + [anon_sym_NS_ENUM] = ACTIONS(1864), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1864), + [anon_sym_NS_OPTIONS] = ACTIONS(1864), + [anon_sym_typeof] = ACTIONS(1864), + [anon_sym___typeof] = ACTIONS(1864), + [anon_sym___typeof__] = ACTIONS(1864), + [sym_self] = ACTIONS(1864), + [sym_super] = ACTIONS(1864), + [sym_nil] = ACTIONS(1864), + [sym_id] = ACTIONS(1864), + [sym_instancetype] = ACTIONS(1864), + [sym_Class] = ACTIONS(1864), + [sym_SEL] = ACTIONS(1864), + [sym_IMP] = ACTIONS(1864), + [sym_BOOL] = ACTIONS(1864), + [sym_auto] = ACTIONS(1864), + [anon_sym_ATautoreleasepool] = ACTIONS(1866), + [anon_sym_ATsynchronized] = ACTIONS(1866), + [anon_sym_ATtry] = ACTIONS(1866), + [anon_sym_ATthrow] = ACTIONS(1866), + [anon_sym_ATselector] = ACTIONS(1866), + [anon_sym_ATencode] = ACTIONS(1866), + [anon_sym_AT] = ACTIONS(1864), + [sym_YES] = ACTIONS(1864), + [sym_NO] = ACTIONS(1864), + [anon_sym___builtin_available] = ACTIONS(1864), + [anon_sym_ATavailable] = ACTIONS(1866), + [anon_sym_va_arg] = ACTIONS(1864), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1433] = { + [sym_identifier] = ACTIONS(1860), + [aux_sym_preproc_include_token1] = ACTIONS(1862), + [aux_sym_preproc_def_token1] = ACTIONS(1862), + [aux_sym_preproc_if_token1] = ACTIONS(1860), + [aux_sym_preproc_if_token2] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1860), + [anon_sym_LPAREN2] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_typedef] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym___attribute] = ACTIONS(1860), + [anon_sym___attribute__] = ACTIONS(1860), + [anon_sym___declspec] = ACTIONS(1860), + [anon_sym___cdecl] = ACTIONS(1860), + [anon_sym___clrcall] = ACTIONS(1860), + [anon_sym___stdcall] = ACTIONS(1860), + [anon_sym___fastcall] = ACTIONS(1860), + [anon_sym___thiscall] = ACTIONS(1860), + [anon_sym___vectorcall] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_auto] = ACTIONS(1860), + [anon_sym_register] = ACTIONS(1860), + [anon_sym_inline] = ACTIONS(1860), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_volatile] = ACTIONS(1860), + [anon_sym_restrict] = ACTIONS(1860), + [anon_sym__Atomic] = ACTIONS(1860), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_out] = ACTIONS(1860), + [anon_sym_inout] = ACTIONS(1860), + [anon_sym_bycopy] = ACTIONS(1860), + [anon_sym_byref] = ACTIONS(1860), + [anon_sym_oneway] = ACTIONS(1860), + [anon_sym__Nullable] = ACTIONS(1860), + [anon_sym__Nonnull] = ACTIONS(1860), + [anon_sym__Nullable_result] = ACTIONS(1860), + [anon_sym__Null_unspecified] = ACTIONS(1860), + [anon_sym___autoreleasing] = ACTIONS(1860), + [anon_sym___nullable] = ACTIONS(1860), + [anon_sym___nonnull] = ACTIONS(1860), + [anon_sym___strong] = ACTIONS(1860), + [anon_sym___weak] = ACTIONS(1860), + [anon_sym___bridge] = ACTIONS(1860), + [anon_sym___bridge_transfer] = ACTIONS(1860), + [anon_sym___bridge_retained] = ACTIONS(1860), + [anon_sym___unsafe_unretained] = ACTIONS(1860), + [anon_sym___block] = ACTIONS(1860), + [anon_sym___kindof] = ACTIONS(1860), + [anon_sym___unused] = ACTIONS(1860), + [anon_sym__Complex] = ACTIONS(1860), + [anon_sym___complex] = ACTIONS(1860), + [anon_sym_IBOutlet] = ACTIONS(1860), + [anon_sym_IBInspectable] = ACTIONS(1860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1860), + [anon_sym_signed] = ACTIONS(1860), + [anon_sym_unsigned] = ACTIONS(1860), + [anon_sym_long] = ACTIONS(1860), + [anon_sym_short] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_union] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_switch] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_goto] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_sizeof] = ACTIONS(1860), + [sym_number_literal] = ACTIONS(1862), + [anon_sym_L_SQUOTE] = ACTIONS(1862), + [anon_sym_u_SQUOTE] = ACTIONS(1862), + [anon_sym_U_SQUOTE] = ACTIONS(1862), + [anon_sym_u8_SQUOTE] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_L_DQUOTE] = ACTIONS(1862), + [anon_sym_u_DQUOTE] = ACTIONS(1862), + [anon_sym_U_DQUOTE] = ACTIONS(1862), + [anon_sym_u8_DQUOTE] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [sym_true] = ACTIONS(1860), + [sym_false] = ACTIONS(1860), + [sym_null] = ACTIONS(1860), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1862), + [anon_sym_ATimport] = ACTIONS(1862), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1860), + [anon_sym_ATcompatibility_alias] = ACTIONS(1862), + [anon_sym_ATprotocol] = ACTIONS(1862), + [anon_sym_ATclass] = ACTIONS(1862), + [anon_sym_ATinterface] = ACTIONS(1862), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1860), + [sym_method_attribute_specifier] = ACTIONS(1860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE] = ACTIONS(1860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_API_AVAILABLE] = ACTIONS(1860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_API_DEPRECATED] = ACTIONS(1860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1860), + [anon_sym___deprecated_msg] = ACTIONS(1860), + [anon_sym___deprecated_enum_msg] = ACTIONS(1860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1860), + [anon_sym_ATimplementation] = ACTIONS(1862), + [anon_sym_NS_ENUM] = ACTIONS(1860), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1860), + [anon_sym_NS_OPTIONS] = ACTIONS(1860), + [anon_sym_typeof] = ACTIONS(1860), + [anon_sym___typeof] = ACTIONS(1860), + [anon_sym___typeof__] = ACTIONS(1860), + [sym_self] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_nil] = ACTIONS(1860), + [sym_id] = ACTIONS(1860), + [sym_instancetype] = ACTIONS(1860), + [sym_Class] = ACTIONS(1860), + [sym_SEL] = ACTIONS(1860), + [sym_IMP] = ACTIONS(1860), + [sym_BOOL] = ACTIONS(1860), + [sym_auto] = ACTIONS(1860), + [anon_sym_ATautoreleasepool] = ACTIONS(1862), + [anon_sym_ATsynchronized] = ACTIONS(1862), + [anon_sym_ATtry] = ACTIONS(1862), + [anon_sym_ATthrow] = ACTIONS(1862), + [anon_sym_ATselector] = ACTIONS(1862), + [anon_sym_ATencode] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1860), + [sym_YES] = ACTIONS(1860), + [sym_NO] = ACTIONS(1860), + [anon_sym___builtin_available] = ACTIONS(1860), + [anon_sym_ATavailable] = ACTIONS(1862), + [anon_sym_va_arg] = ACTIONS(1860), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1434] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1435] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1436] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1437] = { + [sym_identifier] = ACTIONS(1704), + [aux_sym_preproc_include_token1] = ACTIONS(1706), + [aux_sym_preproc_def_token1] = ACTIONS(1706), + [aux_sym_preproc_if_token1] = ACTIONS(1704), + [aux_sym_preproc_if_token2] = ACTIONS(1704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1704), + [anon_sym_LPAREN2] = ACTIONS(1706), + [anon_sym_BANG] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_PLUS] = ACTIONS(1704), + [anon_sym_STAR] = ACTIONS(1706), + [anon_sym_CARET] = ACTIONS(1706), + [anon_sym_AMP] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_typedef] = ACTIONS(1704), + [anon_sym_extern] = ACTIONS(1704), + [anon_sym___attribute] = ACTIONS(1704), + [anon_sym___attribute__] = ACTIONS(1704), + [anon_sym___declspec] = ACTIONS(1704), + [anon_sym___cdecl] = ACTIONS(1704), + [anon_sym___clrcall] = ACTIONS(1704), + [anon_sym___stdcall] = ACTIONS(1704), + [anon_sym___fastcall] = ACTIONS(1704), + [anon_sym___thiscall] = ACTIONS(1704), + [anon_sym___vectorcall] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_auto] = ACTIONS(1704), + [anon_sym_register] = ACTIONS(1704), + [anon_sym_inline] = ACTIONS(1704), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_volatile] = ACTIONS(1704), + [anon_sym_restrict] = ACTIONS(1704), + [anon_sym__Atomic] = ACTIONS(1704), + [anon_sym_in] = ACTIONS(1704), + [anon_sym_out] = ACTIONS(1704), + [anon_sym_inout] = ACTIONS(1704), + [anon_sym_bycopy] = ACTIONS(1704), + [anon_sym_byref] = ACTIONS(1704), + [anon_sym_oneway] = ACTIONS(1704), + [anon_sym__Nullable] = ACTIONS(1704), + [anon_sym__Nonnull] = ACTIONS(1704), + [anon_sym__Nullable_result] = ACTIONS(1704), + [anon_sym__Null_unspecified] = ACTIONS(1704), + [anon_sym___autoreleasing] = ACTIONS(1704), + [anon_sym___nullable] = ACTIONS(1704), + [anon_sym___nonnull] = ACTIONS(1704), + [anon_sym___strong] = ACTIONS(1704), + [anon_sym___weak] = ACTIONS(1704), + [anon_sym___bridge] = ACTIONS(1704), + [anon_sym___bridge_transfer] = ACTIONS(1704), + [anon_sym___bridge_retained] = ACTIONS(1704), + [anon_sym___unsafe_unretained] = ACTIONS(1704), + [anon_sym___block] = ACTIONS(1704), + [anon_sym___kindof] = ACTIONS(1704), + [anon_sym___unused] = ACTIONS(1704), + [anon_sym__Complex] = ACTIONS(1704), + [anon_sym___complex] = ACTIONS(1704), + [anon_sym_IBOutlet] = ACTIONS(1704), + [anon_sym_IBInspectable] = ACTIONS(1704), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1704), + [anon_sym_signed] = ACTIONS(1704), + [anon_sym_unsigned] = ACTIONS(1704), + [anon_sym_long] = ACTIONS(1704), + [anon_sym_short] = ACTIONS(1704), + [sym_primitive_type] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(1704), + [anon_sym_struct] = ACTIONS(1704), + [anon_sym_union] = ACTIONS(1704), + [anon_sym_if] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1704), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1704), + [anon_sym_do] = ACTIONS(1704), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1704), + [anon_sym_break] = ACTIONS(1704), + [anon_sym_continue] = ACTIONS(1704), + [anon_sym_goto] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1706), + [anon_sym_PLUS_PLUS] = ACTIONS(1706), + [anon_sym_sizeof] = ACTIONS(1704), + [sym_number_literal] = ACTIONS(1706), + [anon_sym_L_SQUOTE] = ACTIONS(1706), + [anon_sym_u_SQUOTE] = ACTIONS(1706), + [anon_sym_U_SQUOTE] = ACTIONS(1706), + [anon_sym_u8_SQUOTE] = ACTIONS(1706), + [anon_sym_SQUOTE] = ACTIONS(1706), + [anon_sym_L_DQUOTE] = ACTIONS(1706), + [anon_sym_u_DQUOTE] = ACTIONS(1706), + [anon_sym_U_DQUOTE] = ACTIONS(1706), + [anon_sym_u8_DQUOTE] = ACTIONS(1706), + [anon_sym_DQUOTE] = ACTIONS(1706), + [sym_true] = ACTIONS(1704), + [sym_false] = ACTIONS(1704), + [sym_null] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1706), + [anon_sym_ATimport] = ACTIONS(1706), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1704), + [anon_sym_ATcompatibility_alias] = ACTIONS(1706), + [anon_sym_ATprotocol] = ACTIONS(1706), + [anon_sym_ATclass] = ACTIONS(1706), + [anon_sym_ATinterface] = ACTIONS(1706), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1704), + [sym_method_attribute_specifier] = ACTIONS(1704), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1704), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1704), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1704), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1704), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1704), + [anon_sym_NS_AVAILABLE] = ACTIONS(1704), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1704), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_API_AVAILABLE] = ACTIONS(1704), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_API_DEPRECATED] = ACTIONS(1704), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1704), + [anon_sym___deprecated_msg] = ACTIONS(1704), + [anon_sym___deprecated_enum_msg] = ACTIONS(1704), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1704), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1704), + [anon_sym_ATimplementation] = ACTIONS(1706), + [anon_sym_NS_ENUM] = ACTIONS(1704), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1704), + [anon_sym_NS_OPTIONS] = ACTIONS(1704), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym___typeof] = ACTIONS(1704), + [anon_sym___typeof__] = ACTIONS(1704), + [sym_self] = ACTIONS(1704), + [sym_super] = ACTIONS(1704), + [sym_nil] = ACTIONS(1704), + [sym_id] = ACTIONS(1704), + [sym_instancetype] = ACTIONS(1704), + [sym_Class] = ACTIONS(1704), + [sym_SEL] = ACTIONS(1704), + [sym_IMP] = ACTIONS(1704), + [sym_BOOL] = ACTIONS(1704), + [sym_auto] = ACTIONS(1704), + [anon_sym_ATautoreleasepool] = ACTIONS(1706), + [anon_sym_ATsynchronized] = ACTIONS(1706), + [anon_sym_ATtry] = ACTIONS(1706), + [anon_sym_ATthrow] = ACTIONS(1706), + [anon_sym_ATselector] = ACTIONS(1706), + [anon_sym_ATencode] = ACTIONS(1706), + [anon_sym_AT] = ACTIONS(1704), + [sym_YES] = ACTIONS(1704), + [sym_NO] = ACTIONS(1704), + [anon_sym___builtin_available] = ACTIONS(1704), + [anon_sym_ATavailable] = ACTIONS(1706), + [anon_sym_va_arg] = ACTIONS(1704), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1438] = { + [sym_identifier] = ACTIONS(1860), + [aux_sym_preproc_include_token1] = ACTIONS(1862), + [aux_sym_preproc_def_token1] = ACTIONS(1862), + [aux_sym_preproc_if_token1] = ACTIONS(1860), + [aux_sym_preproc_if_token2] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1860), + [anon_sym_LPAREN2] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_typedef] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym___attribute] = ACTIONS(1860), + [anon_sym___attribute__] = ACTIONS(1860), + [anon_sym___declspec] = ACTIONS(1860), + [anon_sym___cdecl] = ACTIONS(1860), + [anon_sym___clrcall] = ACTIONS(1860), + [anon_sym___stdcall] = ACTIONS(1860), + [anon_sym___fastcall] = ACTIONS(1860), + [anon_sym___thiscall] = ACTIONS(1860), + [anon_sym___vectorcall] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_auto] = ACTIONS(1860), + [anon_sym_register] = ACTIONS(1860), + [anon_sym_inline] = ACTIONS(1860), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_volatile] = ACTIONS(1860), + [anon_sym_restrict] = ACTIONS(1860), + [anon_sym__Atomic] = ACTIONS(1860), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_out] = ACTIONS(1860), + [anon_sym_inout] = ACTIONS(1860), + [anon_sym_bycopy] = ACTIONS(1860), + [anon_sym_byref] = ACTIONS(1860), + [anon_sym_oneway] = ACTIONS(1860), + [anon_sym__Nullable] = ACTIONS(1860), + [anon_sym__Nonnull] = ACTIONS(1860), + [anon_sym__Nullable_result] = ACTIONS(1860), + [anon_sym__Null_unspecified] = ACTIONS(1860), + [anon_sym___autoreleasing] = ACTIONS(1860), + [anon_sym___nullable] = ACTIONS(1860), + [anon_sym___nonnull] = ACTIONS(1860), + [anon_sym___strong] = ACTIONS(1860), + [anon_sym___weak] = ACTIONS(1860), + [anon_sym___bridge] = ACTIONS(1860), + [anon_sym___bridge_transfer] = ACTIONS(1860), + [anon_sym___bridge_retained] = ACTIONS(1860), + [anon_sym___unsafe_unretained] = ACTIONS(1860), + [anon_sym___block] = ACTIONS(1860), + [anon_sym___kindof] = ACTIONS(1860), + [anon_sym___unused] = ACTIONS(1860), + [anon_sym__Complex] = ACTIONS(1860), + [anon_sym___complex] = ACTIONS(1860), + [anon_sym_IBOutlet] = ACTIONS(1860), + [anon_sym_IBInspectable] = ACTIONS(1860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1860), + [anon_sym_signed] = ACTIONS(1860), + [anon_sym_unsigned] = ACTIONS(1860), + [anon_sym_long] = ACTIONS(1860), + [anon_sym_short] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_union] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_switch] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_goto] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_sizeof] = ACTIONS(1860), + [sym_number_literal] = ACTIONS(1862), + [anon_sym_L_SQUOTE] = ACTIONS(1862), + [anon_sym_u_SQUOTE] = ACTIONS(1862), + [anon_sym_U_SQUOTE] = ACTIONS(1862), + [anon_sym_u8_SQUOTE] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_L_DQUOTE] = ACTIONS(1862), + [anon_sym_u_DQUOTE] = ACTIONS(1862), + [anon_sym_U_DQUOTE] = ACTIONS(1862), + [anon_sym_u8_DQUOTE] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [sym_true] = ACTIONS(1860), + [sym_false] = ACTIONS(1860), + [sym_null] = ACTIONS(1860), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1862), + [anon_sym_ATimport] = ACTIONS(1862), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1860), + [anon_sym_ATcompatibility_alias] = ACTIONS(1862), + [anon_sym_ATprotocol] = ACTIONS(1862), + [anon_sym_ATclass] = ACTIONS(1862), + [anon_sym_ATinterface] = ACTIONS(1862), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1860), + [sym_method_attribute_specifier] = ACTIONS(1860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE] = ACTIONS(1860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_API_AVAILABLE] = ACTIONS(1860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_API_DEPRECATED] = ACTIONS(1860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1860), + [anon_sym___deprecated_msg] = ACTIONS(1860), + [anon_sym___deprecated_enum_msg] = ACTIONS(1860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1860), + [anon_sym_ATimplementation] = ACTIONS(1862), + [anon_sym_NS_ENUM] = ACTIONS(1860), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1860), + [anon_sym_NS_OPTIONS] = ACTIONS(1860), + [anon_sym_typeof] = ACTIONS(1860), + [anon_sym___typeof] = ACTIONS(1860), + [anon_sym___typeof__] = ACTIONS(1860), + [sym_self] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_nil] = ACTIONS(1860), + [sym_id] = ACTIONS(1860), + [sym_instancetype] = ACTIONS(1860), + [sym_Class] = ACTIONS(1860), + [sym_SEL] = ACTIONS(1860), + [sym_IMP] = ACTIONS(1860), + [sym_BOOL] = ACTIONS(1860), + [sym_auto] = ACTIONS(1860), + [anon_sym_ATautoreleasepool] = ACTIONS(1862), + [anon_sym_ATsynchronized] = ACTIONS(1862), + [anon_sym_ATtry] = ACTIONS(1862), + [anon_sym_ATthrow] = ACTIONS(1862), + [anon_sym_ATselector] = ACTIONS(1862), + [anon_sym_ATencode] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1860), + [sym_YES] = ACTIONS(1860), + [sym_NO] = ACTIONS(1860), + [anon_sym___builtin_available] = ACTIONS(1860), + [anon_sym_ATavailable] = ACTIONS(1862), + [anon_sym_va_arg] = ACTIONS(1860), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1439] = { + [sym_identifier] = ACTIONS(1744), + [aux_sym_preproc_include_token1] = ACTIONS(1746), + [aux_sym_preproc_def_token1] = ACTIONS(1746), + [aux_sym_preproc_if_token1] = ACTIONS(1744), + [aux_sym_preproc_if_token2] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1744), + [anon_sym_LPAREN2] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1746), + [anon_sym_TILDE] = ACTIONS(1746), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [anon_sym_CARET] = ACTIONS(1746), + [anon_sym_AMP] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_typedef] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1744), + [anon_sym___attribute] = ACTIONS(1744), + [anon_sym___attribute__] = ACTIONS(1744), + [anon_sym___declspec] = ACTIONS(1744), + [anon_sym___cdecl] = ACTIONS(1744), + [anon_sym___clrcall] = ACTIONS(1744), + [anon_sym___stdcall] = ACTIONS(1744), + [anon_sym___fastcall] = ACTIONS(1744), + [anon_sym___thiscall] = ACTIONS(1744), + [anon_sym___vectorcall] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(1744), + [anon_sym_auto] = ACTIONS(1744), + [anon_sym_register] = ACTIONS(1744), + [anon_sym_inline] = ACTIONS(1744), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym__Atomic] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_out] = ACTIONS(1744), + [anon_sym_inout] = ACTIONS(1744), + [anon_sym_bycopy] = ACTIONS(1744), + [anon_sym_byref] = ACTIONS(1744), + [anon_sym_oneway] = ACTIONS(1744), + [anon_sym__Nullable] = ACTIONS(1744), + [anon_sym__Nonnull] = ACTIONS(1744), + [anon_sym__Nullable_result] = ACTIONS(1744), + [anon_sym__Null_unspecified] = ACTIONS(1744), + [anon_sym___autoreleasing] = ACTIONS(1744), + [anon_sym___nullable] = ACTIONS(1744), + [anon_sym___nonnull] = ACTIONS(1744), + [anon_sym___strong] = ACTIONS(1744), + [anon_sym___weak] = ACTIONS(1744), + [anon_sym___bridge] = ACTIONS(1744), + [anon_sym___bridge_transfer] = ACTIONS(1744), + [anon_sym___bridge_retained] = ACTIONS(1744), + [anon_sym___unsafe_unretained] = ACTIONS(1744), + [anon_sym___block] = ACTIONS(1744), + [anon_sym___kindof] = ACTIONS(1744), + [anon_sym___unused] = ACTIONS(1744), + [anon_sym__Complex] = ACTIONS(1744), + [anon_sym___complex] = ACTIONS(1744), + [anon_sym_IBOutlet] = ACTIONS(1744), + [anon_sym_IBInspectable] = ACTIONS(1744), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1744), + [anon_sym_signed] = ACTIONS(1744), + [anon_sym_unsigned] = ACTIONS(1744), + [anon_sym_long] = ACTIONS(1744), + [anon_sym_short] = ACTIONS(1744), + [sym_primitive_type] = ACTIONS(1744), + [anon_sym_enum] = ACTIONS(1744), + [anon_sym_struct] = ACTIONS(1744), + [anon_sym_union] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_case] = ACTIONS(1744), + [anon_sym_default] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_do] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_goto] = ACTIONS(1744), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_sizeof] = ACTIONS(1744), + [sym_number_literal] = ACTIONS(1746), + [anon_sym_L_SQUOTE] = ACTIONS(1746), + [anon_sym_u_SQUOTE] = ACTIONS(1746), + [anon_sym_U_SQUOTE] = ACTIONS(1746), + [anon_sym_u8_SQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1746), + [anon_sym_L_DQUOTE] = ACTIONS(1746), + [anon_sym_u_DQUOTE] = ACTIONS(1746), + [anon_sym_U_DQUOTE] = ACTIONS(1746), + [anon_sym_u8_DQUOTE] = ACTIONS(1746), + [anon_sym_DQUOTE] = ACTIONS(1746), + [sym_true] = ACTIONS(1744), + [sym_false] = ACTIONS(1744), + [sym_null] = ACTIONS(1744), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1746), + [anon_sym_ATimport] = ACTIONS(1746), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1744), + [anon_sym_ATcompatibility_alias] = ACTIONS(1746), + [anon_sym_ATprotocol] = ACTIONS(1746), + [anon_sym_ATclass] = ACTIONS(1746), + [anon_sym_ATinterface] = ACTIONS(1746), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1744), + [sym_method_attribute_specifier] = ACTIONS(1744), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1744), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1744), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1744), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1744), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1744), + [anon_sym_NS_AVAILABLE] = ACTIONS(1744), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1744), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_API_AVAILABLE] = ACTIONS(1744), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_API_DEPRECATED] = ACTIONS(1744), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1744), + [anon_sym___deprecated_msg] = ACTIONS(1744), + [anon_sym___deprecated_enum_msg] = ACTIONS(1744), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1744), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1744), + [anon_sym_ATimplementation] = ACTIONS(1746), + [anon_sym_NS_ENUM] = ACTIONS(1744), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1744), + [anon_sym_NS_OPTIONS] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(1744), + [anon_sym___typeof] = ACTIONS(1744), + [anon_sym___typeof__] = ACTIONS(1744), + [sym_self] = ACTIONS(1744), + [sym_super] = ACTIONS(1744), + [sym_nil] = ACTIONS(1744), + [sym_id] = ACTIONS(1744), + [sym_instancetype] = ACTIONS(1744), + [sym_Class] = ACTIONS(1744), + [sym_SEL] = ACTIONS(1744), + [sym_IMP] = ACTIONS(1744), + [sym_BOOL] = ACTIONS(1744), + [sym_auto] = ACTIONS(1744), + [anon_sym_ATautoreleasepool] = ACTIONS(1746), + [anon_sym_ATsynchronized] = ACTIONS(1746), + [anon_sym_ATtry] = ACTIONS(1746), + [anon_sym_ATthrow] = ACTIONS(1746), + [anon_sym_ATselector] = ACTIONS(1746), + [anon_sym_ATencode] = ACTIONS(1746), + [anon_sym_AT] = ACTIONS(1744), + [sym_YES] = ACTIONS(1744), + [sym_NO] = ACTIONS(1744), + [anon_sym___builtin_available] = ACTIONS(1744), + [anon_sym_ATavailable] = ACTIONS(1746), + [anon_sym_va_arg] = ACTIONS(1744), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1440] = { + [sym_identifier] = ACTIONS(1748), + [aux_sym_preproc_include_token1] = ACTIONS(1750), + [aux_sym_preproc_def_token1] = ACTIONS(1750), + [aux_sym_preproc_if_token1] = ACTIONS(1748), + [aux_sym_preproc_if_token2] = ACTIONS(1748), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1748), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1748), + [anon_sym_LPAREN2] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1750), + [anon_sym_CARET] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_typedef] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym___attribute] = ACTIONS(1748), + [anon_sym___attribute__] = ACTIONS(1748), + [anon_sym___declspec] = ACTIONS(1748), + [anon_sym___cdecl] = ACTIONS(1748), + [anon_sym___clrcall] = ACTIONS(1748), + [anon_sym___stdcall] = ACTIONS(1748), + [anon_sym___fastcall] = ACTIONS(1748), + [anon_sym___thiscall] = ACTIONS(1748), + [anon_sym___vectorcall] = ACTIONS(1748), + [anon_sym_LBRACE] = ACTIONS(1750), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_auto] = ACTIONS(1748), + [anon_sym_register] = ACTIONS(1748), + [anon_sym_inline] = ACTIONS(1748), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_volatile] = ACTIONS(1748), + [anon_sym_restrict] = ACTIONS(1748), + [anon_sym__Atomic] = ACTIONS(1748), + [anon_sym_in] = ACTIONS(1748), + [anon_sym_out] = ACTIONS(1748), + [anon_sym_inout] = ACTIONS(1748), + [anon_sym_bycopy] = ACTIONS(1748), + [anon_sym_byref] = ACTIONS(1748), + [anon_sym_oneway] = ACTIONS(1748), + [anon_sym__Nullable] = ACTIONS(1748), + [anon_sym__Nonnull] = ACTIONS(1748), + [anon_sym__Nullable_result] = ACTIONS(1748), + [anon_sym__Null_unspecified] = ACTIONS(1748), + [anon_sym___autoreleasing] = ACTIONS(1748), + [anon_sym___nullable] = ACTIONS(1748), + [anon_sym___nonnull] = ACTIONS(1748), + [anon_sym___strong] = ACTIONS(1748), + [anon_sym___weak] = ACTIONS(1748), + [anon_sym___bridge] = ACTIONS(1748), + [anon_sym___bridge_transfer] = ACTIONS(1748), + [anon_sym___bridge_retained] = ACTIONS(1748), + [anon_sym___unsafe_unretained] = ACTIONS(1748), + [anon_sym___block] = ACTIONS(1748), + [anon_sym___kindof] = ACTIONS(1748), + [anon_sym___unused] = ACTIONS(1748), + [anon_sym__Complex] = ACTIONS(1748), + [anon_sym___complex] = ACTIONS(1748), + [anon_sym_IBOutlet] = ACTIONS(1748), + [anon_sym_IBInspectable] = ACTIONS(1748), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1748), + [anon_sym_signed] = ACTIONS(1748), + [anon_sym_unsigned] = ACTIONS(1748), + [anon_sym_long] = ACTIONS(1748), + [anon_sym_short] = ACTIONS(1748), + [sym_primitive_type] = ACTIONS(1748), + [anon_sym_enum] = ACTIONS(1748), + [anon_sym_struct] = ACTIONS(1748), + [anon_sym_union] = ACTIONS(1748), + [anon_sym_if] = ACTIONS(1748), + [anon_sym_switch] = ACTIONS(1748), + [anon_sym_case] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1748), + [anon_sym_while] = ACTIONS(1748), + [anon_sym_do] = ACTIONS(1748), + [anon_sym_for] = ACTIONS(1748), + [anon_sym_return] = ACTIONS(1748), + [anon_sym_break] = ACTIONS(1748), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1748), + [anon_sym_DASH_DASH] = ACTIONS(1750), + [anon_sym_PLUS_PLUS] = ACTIONS(1750), + [anon_sym_sizeof] = ACTIONS(1748), + [sym_number_literal] = ACTIONS(1750), + [anon_sym_L_SQUOTE] = ACTIONS(1750), + [anon_sym_u_SQUOTE] = ACTIONS(1750), + [anon_sym_U_SQUOTE] = ACTIONS(1750), + [anon_sym_u8_SQUOTE] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1750), + [anon_sym_L_DQUOTE] = ACTIONS(1750), + [anon_sym_u_DQUOTE] = ACTIONS(1750), + [anon_sym_U_DQUOTE] = ACTIONS(1750), + [anon_sym_u8_DQUOTE] = ACTIONS(1750), + [anon_sym_DQUOTE] = ACTIONS(1750), + [sym_true] = ACTIONS(1748), + [sym_false] = ACTIONS(1748), + [sym_null] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1750), + [anon_sym_ATimport] = ACTIONS(1750), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1748), + [anon_sym_ATcompatibility_alias] = ACTIONS(1750), + [anon_sym_ATprotocol] = ACTIONS(1750), + [anon_sym_ATclass] = ACTIONS(1750), + [anon_sym_ATinterface] = ACTIONS(1750), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1748), + [sym_method_attribute_specifier] = ACTIONS(1748), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1748), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1748), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1748), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1748), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1748), + [anon_sym_NS_AVAILABLE] = ACTIONS(1748), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1748), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_API_AVAILABLE] = ACTIONS(1748), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_API_DEPRECATED] = ACTIONS(1748), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1748), + [anon_sym___deprecated_msg] = ACTIONS(1748), + [anon_sym___deprecated_enum_msg] = ACTIONS(1748), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1748), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1748), + [anon_sym_ATimplementation] = ACTIONS(1750), + [anon_sym_NS_ENUM] = ACTIONS(1748), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1748), + [anon_sym_NS_OPTIONS] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(1748), + [anon_sym___typeof] = ACTIONS(1748), + [anon_sym___typeof__] = ACTIONS(1748), + [sym_self] = ACTIONS(1748), + [sym_super] = ACTIONS(1748), + [sym_nil] = ACTIONS(1748), + [sym_id] = ACTIONS(1748), + [sym_instancetype] = ACTIONS(1748), + [sym_Class] = ACTIONS(1748), + [sym_SEL] = ACTIONS(1748), + [sym_IMP] = ACTIONS(1748), + [sym_BOOL] = ACTIONS(1748), + [sym_auto] = ACTIONS(1748), + [anon_sym_ATautoreleasepool] = ACTIONS(1750), + [anon_sym_ATsynchronized] = ACTIONS(1750), + [anon_sym_ATtry] = ACTIONS(1750), + [anon_sym_ATthrow] = ACTIONS(1750), + [anon_sym_ATselector] = ACTIONS(1750), + [anon_sym_ATencode] = ACTIONS(1750), + [anon_sym_AT] = ACTIONS(1748), + [sym_YES] = ACTIONS(1748), + [sym_NO] = ACTIONS(1748), + [anon_sym___builtin_available] = ACTIONS(1748), + [anon_sym_ATavailable] = ACTIONS(1750), + [anon_sym_va_arg] = ACTIONS(1748), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1441] = { + [sym_identifier] = ACTIONS(1860), + [aux_sym_preproc_include_token1] = ACTIONS(1862), + [aux_sym_preproc_def_token1] = ACTIONS(1862), + [aux_sym_preproc_if_token1] = ACTIONS(1860), + [aux_sym_preproc_if_token2] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1860), + [anon_sym_LPAREN2] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_typedef] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym___attribute] = ACTIONS(1860), + [anon_sym___attribute__] = ACTIONS(1860), + [anon_sym___declspec] = ACTIONS(1860), + [anon_sym___cdecl] = ACTIONS(1860), + [anon_sym___clrcall] = ACTIONS(1860), + [anon_sym___stdcall] = ACTIONS(1860), + [anon_sym___fastcall] = ACTIONS(1860), + [anon_sym___thiscall] = ACTIONS(1860), + [anon_sym___vectorcall] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_auto] = ACTIONS(1860), + [anon_sym_register] = ACTIONS(1860), + [anon_sym_inline] = ACTIONS(1860), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_volatile] = ACTIONS(1860), + [anon_sym_restrict] = ACTIONS(1860), + [anon_sym__Atomic] = ACTIONS(1860), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_out] = ACTIONS(1860), + [anon_sym_inout] = ACTIONS(1860), + [anon_sym_bycopy] = ACTIONS(1860), + [anon_sym_byref] = ACTIONS(1860), + [anon_sym_oneway] = ACTIONS(1860), + [anon_sym__Nullable] = ACTIONS(1860), + [anon_sym__Nonnull] = ACTIONS(1860), + [anon_sym__Nullable_result] = ACTIONS(1860), + [anon_sym__Null_unspecified] = ACTIONS(1860), + [anon_sym___autoreleasing] = ACTIONS(1860), + [anon_sym___nullable] = ACTIONS(1860), + [anon_sym___nonnull] = ACTIONS(1860), + [anon_sym___strong] = ACTIONS(1860), + [anon_sym___weak] = ACTIONS(1860), + [anon_sym___bridge] = ACTIONS(1860), + [anon_sym___bridge_transfer] = ACTIONS(1860), + [anon_sym___bridge_retained] = ACTIONS(1860), + [anon_sym___unsafe_unretained] = ACTIONS(1860), + [anon_sym___block] = ACTIONS(1860), + [anon_sym___kindof] = ACTIONS(1860), + [anon_sym___unused] = ACTIONS(1860), + [anon_sym__Complex] = ACTIONS(1860), + [anon_sym___complex] = ACTIONS(1860), + [anon_sym_IBOutlet] = ACTIONS(1860), + [anon_sym_IBInspectable] = ACTIONS(1860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1860), + [anon_sym_signed] = ACTIONS(1860), + [anon_sym_unsigned] = ACTIONS(1860), + [anon_sym_long] = ACTIONS(1860), + [anon_sym_short] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_union] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_switch] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_goto] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_sizeof] = ACTIONS(1860), + [sym_number_literal] = ACTIONS(1862), + [anon_sym_L_SQUOTE] = ACTIONS(1862), + [anon_sym_u_SQUOTE] = ACTIONS(1862), + [anon_sym_U_SQUOTE] = ACTIONS(1862), + [anon_sym_u8_SQUOTE] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_L_DQUOTE] = ACTIONS(1862), + [anon_sym_u_DQUOTE] = ACTIONS(1862), + [anon_sym_U_DQUOTE] = ACTIONS(1862), + [anon_sym_u8_DQUOTE] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [sym_true] = ACTIONS(1860), + [sym_false] = ACTIONS(1860), + [sym_null] = ACTIONS(1860), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1862), + [anon_sym_ATimport] = ACTIONS(1862), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1860), + [anon_sym_ATcompatibility_alias] = ACTIONS(1862), + [anon_sym_ATprotocol] = ACTIONS(1862), + [anon_sym_ATclass] = ACTIONS(1862), + [anon_sym_ATinterface] = ACTIONS(1862), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1860), + [sym_method_attribute_specifier] = ACTIONS(1860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE] = ACTIONS(1860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_API_AVAILABLE] = ACTIONS(1860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_API_DEPRECATED] = ACTIONS(1860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1860), + [anon_sym___deprecated_msg] = ACTIONS(1860), + [anon_sym___deprecated_enum_msg] = ACTIONS(1860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1860), + [anon_sym_ATimplementation] = ACTIONS(1862), + [anon_sym_NS_ENUM] = ACTIONS(1860), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1860), + [anon_sym_NS_OPTIONS] = ACTIONS(1860), + [anon_sym_typeof] = ACTIONS(1860), + [anon_sym___typeof] = ACTIONS(1860), + [anon_sym___typeof__] = ACTIONS(1860), + [sym_self] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_nil] = ACTIONS(1860), + [sym_id] = ACTIONS(1860), + [sym_instancetype] = ACTIONS(1860), + [sym_Class] = ACTIONS(1860), + [sym_SEL] = ACTIONS(1860), + [sym_IMP] = ACTIONS(1860), + [sym_BOOL] = ACTIONS(1860), + [sym_auto] = ACTIONS(1860), + [anon_sym_ATautoreleasepool] = ACTIONS(1862), + [anon_sym_ATsynchronized] = ACTIONS(1862), + [anon_sym_ATtry] = ACTIONS(1862), + [anon_sym_ATthrow] = ACTIONS(1862), + [anon_sym_ATselector] = ACTIONS(1862), + [anon_sym_ATencode] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1860), + [sym_YES] = ACTIONS(1860), + [sym_NO] = ACTIONS(1860), + [anon_sym___builtin_available] = ACTIONS(1860), + [anon_sym_ATavailable] = ACTIONS(1862), + [anon_sym_va_arg] = ACTIONS(1860), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1442] = { + [sym_identifier] = ACTIONS(2064), + [aux_sym_preproc_include_token1] = ACTIONS(2066), + [aux_sym_preproc_def_token1] = ACTIONS(2066), + [aux_sym_preproc_if_token1] = ACTIONS(2064), + [aux_sym_preproc_if_token2] = ACTIONS(2064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2064), + [anon_sym_LPAREN2] = ACTIONS(2066), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_TILDE] = ACTIONS(2066), + [anon_sym_DASH] = ACTIONS(2064), + [anon_sym_PLUS] = ACTIONS(2064), + [anon_sym_STAR] = ACTIONS(2066), + [anon_sym_CARET] = ACTIONS(2066), + [anon_sym_AMP] = ACTIONS(2066), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_typedef] = ACTIONS(2064), + [anon_sym_extern] = ACTIONS(2064), + [anon_sym___attribute] = ACTIONS(2064), + [anon_sym___attribute__] = ACTIONS(2064), + [anon_sym___declspec] = ACTIONS(2064), + [anon_sym___cdecl] = ACTIONS(2064), + [anon_sym___clrcall] = ACTIONS(2064), + [anon_sym___stdcall] = ACTIONS(2064), + [anon_sym___fastcall] = ACTIONS(2064), + [anon_sym___thiscall] = ACTIONS(2064), + [anon_sym___vectorcall] = ACTIONS(2064), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2066), + [anon_sym_static] = ACTIONS(2064), + [anon_sym_auto] = ACTIONS(2064), + [anon_sym_register] = ACTIONS(2064), + [anon_sym_inline] = ACTIONS(2064), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2064), + [anon_sym_const] = ACTIONS(2064), + [anon_sym_volatile] = ACTIONS(2064), + [anon_sym_restrict] = ACTIONS(2064), + [anon_sym__Atomic] = ACTIONS(2064), + [anon_sym_in] = ACTIONS(2064), + [anon_sym_out] = ACTIONS(2064), + [anon_sym_inout] = ACTIONS(2064), + [anon_sym_bycopy] = ACTIONS(2064), + [anon_sym_byref] = ACTIONS(2064), + [anon_sym_oneway] = ACTIONS(2064), + [anon_sym__Nullable] = ACTIONS(2064), + [anon_sym__Nonnull] = ACTIONS(2064), + [anon_sym__Nullable_result] = ACTIONS(2064), + [anon_sym__Null_unspecified] = ACTIONS(2064), + [anon_sym___autoreleasing] = ACTIONS(2064), + [anon_sym___nullable] = ACTIONS(2064), + [anon_sym___nonnull] = ACTIONS(2064), + [anon_sym___strong] = ACTIONS(2064), + [anon_sym___weak] = ACTIONS(2064), + [anon_sym___bridge] = ACTIONS(2064), + [anon_sym___bridge_transfer] = ACTIONS(2064), + [anon_sym___bridge_retained] = ACTIONS(2064), + [anon_sym___unsafe_unretained] = ACTIONS(2064), + [anon_sym___block] = ACTIONS(2064), + [anon_sym___kindof] = ACTIONS(2064), + [anon_sym___unused] = ACTIONS(2064), + [anon_sym__Complex] = ACTIONS(2064), + [anon_sym___complex] = ACTIONS(2064), + [anon_sym_IBOutlet] = ACTIONS(2064), + [anon_sym_IBInspectable] = ACTIONS(2064), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2064), + [anon_sym_signed] = ACTIONS(2064), + [anon_sym_unsigned] = ACTIONS(2064), + [anon_sym_long] = ACTIONS(2064), + [anon_sym_short] = ACTIONS(2064), + [sym_primitive_type] = ACTIONS(2064), + [anon_sym_enum] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(2064), + [anon_sym_union] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2064), + [anon_sym_switch] = ACTIONS(2064), + [anon_sym_case] = ACTIONS(2064), + [anon_sym_default] = ACTIONS(2064), + [anon_sym_while] = ACTIONS(2064), + [anon_sym_do] = ACTIONS(2064), + [anon_sym_for] = ACTIONS(2064), + [anon_sym_return] = ACTIONS(2064), + [anon_sym_break] = ACTIONS(2064), + [anon_sym_continue] = ACTIONS(2064), + [anon_sym_goto] = ACTIONS(2064), + [anon_sym_DASH_DASH] = ACTIONS(2066), + [anon_sym_PLUS_PLUS] = ACTIONS(2066), + [anon_sym_sizeof] = ACTIONS(2064), + [sym_number_literal] = ACTIONS(2066), + [anon_sym_L_SQUOTE] = ACTIONS(2066), + [anon_sym_u_SQUOTE] = ACTIONS(2066), + [anon_sym_U_SQUOTE] = ACTIONS(2066), + [anon_sym_u8_SQUOTE] = ACTIONS(2066), + [anon_sym_SQUOTE] = ACTIONS(2066), + [anon_sym_L_DQUOTE] = ACTIONS(2066), + [anon_sym_u_DQUOTE] = ACTIONS(2066), + [anon_sym_U_DQUOTE] = ACTIONS(2066), + [anon_sym_u8_DQUOTE] = ACTIONS(2066), + [anon_sym_DQUOTE] = ACTIONS(2066), + [sym_true] = ACTIONS(2064), + [sym_false] = ACTIONS(2064), + [sym_null] = ACTIONS(2064), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2066), + [anon_sym_ATimport] = ACTIONS(2066), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2064), + [anon_sym_ATcompatibility_alias] = ACTIONS(2066), + [anon_sym_ATprotocol] = ACTIONS(2066), + [anon_sym_ATclass] = ACTIONS(2066), + [anon_sym_ATinterface] = ACTIONS(2066), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2064), + [sym_method_attribute_specifier] = ACTIONS(2064), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2064), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2064), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2064), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2064), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2064), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2064), + [anon_sym_NS_AVAILABLE] = ACTIONS(2064), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2064), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2064), + [anon_sym_API_AVAILABLE] = ACTIONS(2064), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2064), + [anon_sym_API_DEPRECATED] = ACTIONS(2064), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2064), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2064), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2064), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2064), + [anon_sym___deprecated_msg] = ACTIONS(2064), + [anon_sym___deprecated_enum_msg] = ACTIONS(2064), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2064), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2064), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2064), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2064), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2064), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2064), + [anon_sym_ATimplementation] = ACTIONS(2066), + [anon_sym_NS_ENUM] = ACTIONS(2064), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2064), + [anon_sym_NS_OPTIONS] = ACTIONS(2064), + [anon_sym_typeof] = ACTIONS(2064), + [anon_sym___typeof] = ACTIONS(2064), + [anon_sym___typeof__] = ACTIONS(2064), + [sym_self] = ACTIONS(2064), + [sym_super] = ACTIONS(2064), + [sym_nil] = ACTIONS(2064), + [sym_id] = ACTIONS(2064), + [sym_instancetype] = ACTIONS(2064), + [sym_Class] = ACTIONS(2064), + [sym_SEL] = ACTIONS(2064), + [sym_IMP] = ACTIONS(2064), + [sym_BOOL] = ACTIONS(2064), + [sym_auto] = ACTIONS(2064), + [anon_sym_ATautoreleasepool] = ACTIONS(2066), + [anon_sym_ATsynchronized] = ACTIONS(2066), + [anon_sym_ATtry] = ACTIONS(2066), + [anon_sym_ATthrow] = ACTIONS(2066), + [anon_sym_ATselector] = ACTIONS(2066), + [anon_sym_ATencode] = ACTIONS(2066), + [anon_sym_AT] = ACTIONS(2064), + [sym_YES] = ACTIONS(2064), + [sym_NO] = ACTIONS(2064), + [anon_sym___builtin_available] = ACTIONS(2064), + [anon_sym_ATavailable] = ACTIONS(2066), + [anon_sym_va_arg] = ACTIONS(2064), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1443] = { + [sym_identifier] = ACTIONS(1860), + [aux_sym_preproc_include_token1] = ACTIONS(1862), + [aux_sym_preproc_def_token1] = ACTIONS(1862), + [aux_sym_preproc_if_token1] = ACTIONS(1860), + [aux_sym_preproc_if_token2] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1860), + [anon_sym_LPAREN2] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_typedef] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym___attribute] = ACTIONS(1860), + [anon_sym___attribute__] = ACTIONS(1860), + [anon_sym___declspec] = ACTIONS(1860), + [anon_sym___cdecl] = ACTIONS(1860), + [anon_sym___clrcall] = ACTIONS(1860), + [anon_sym___stdcall] = ACTIONS(1860), + [anon_sym___fastcall] = ACTIONS(1860), + [anon_sym___thiscall] = ACTIONS(1860), + [anon_sym___vectorcall] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_auto] = ACTIONS(1860), + [anon_sym_register] = ACTIONS(1860), + [anon_sym_inline] = ACTIONS(1860), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_volatile] = ACTIONS(1860), + [anon_sym_restrict] = ACTIONS(1860), + [anon_sym__Atomic] = ACTIONS(1860), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_out] = ACTIONS(1860), + [anon_sym_inout] = ACTIONS(1860), + [anon_sym_bycopy] = ACTIONS(1860), + [anon_sym_byref] = ACTIONS(1860), + [anon_sym_oneway] = ACTIONS(1860), + [anon_sym__Nullable] = ACTIONS(1860), + [anon_sym__Nonnull] = ACTIONS(1860), + [anon_sym__Nullable_result] = ACTIONS(1860), + [anon_sym__Null_unspecified] = ACTIONS(1860), + [anon_sym___autoreleasing] = ACTIONS(1860), + [anon_sym___nullable] = ACTIONS(1860), + [anon_sym___nonnull] = ACTIONS(1860), + [anon_sym___strong] = ACTIONS(1860), + [anon_sym___weak] = ACTIONS(1860), + [anon_sym___bridge] = ACTIONS(1860), + [anon_sym___bridge_transfer] = ACTIONS(1860), + [anon_sym___bridge_retained] = ACTIONS(1860), + [anon_sym___unsafe_unretained] = ACTIONS(1860), + [anon_sym___block] = ACTIONS(1860), + [anon_sym___kindof] = ACTIONS(1860), + [anon_sym___unused] = ACTIONS(1860), + [anon_sym__Complex] = ACTIONS(1860), + [anon_sym___complex] = ACTIONS(1860), + [anon_sym_IBOutlet] = ACTIONS(1860), + [anon_sym_IBInspectable] = ACTIONS(1860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1860), + [anon_sym_signed] = ACTIONS(1860), + [anon_sym_unsigned] = ACTIONS(1860), + [anon_sym_long] = ACTIONS(1860), + [anon_sym_short] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_union] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_switch] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_goto] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_sizeof] = ACTIONS(1860), + [sym_number_literal] = ACTIONS(1862), + [anon_sym_L_SQUOTE] = ACTIONS(1862), + [anon_sym_u_SQUOTE] = ACTIONS(1862), + [anon_sym_U_SQUOTE] = ACTIONS(1862), + [anon_sym_u8_SQUOTE] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_L_DQUOTE] = ACTIONS(1862), + [anon_sym_u_DQUOTE] = ACTIONS(1862), + [anon_sym_U_DQUOTE] = ACTIONS(1862), + [anon_sym_u8_DQUOTE] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [sym_true] = ACTIONS(1860), + [sym_false] = ACTIONS(1860), + [sym_null] = ACTIONS(1860), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1862), + [anon_sym_ATimport] = ACTIONS(1862), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1860), + [anon_sym_ATcompatibility_alias] = ACTIONS(1862), + [anon_sym_ATprotocol] = ACTIONS(1862), + [anon_sym_ATclass] = ACTIONS(1862), + [anon_sym_ATinterface] = ACTIONS(1862), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1860), + [sym_method_attribute_specifier] = ACTIONS(1860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE] = ACTIONS(1860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_API_AVAILABLE] = ACTIONS(1860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_API_DEPRECATED] = ACTIONS(1860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1860), + [anon_sym___deprecated_msg] = ACTIONS(1860), + [anon_sym___deprecated_enum_msg] = ACTIONS(1860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1860), + [anon_sym_ATimplementation] = ACTIONS(1862), + [anon_sym_NS_ENUM] = ACTIONS(1860), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1860), + [anon_sym_NS_OPTIONS] = ACTIONS(1860), + [anon_sym_typeof] = ACTIONS(1860), + [anon_sym___typeof] = ACTIONS(1860), + [anon_sym___typeof__] = ACTIONS(1860), + [sym_self] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_nil] = ACTIONS(1860), + [sym_id] = ACTIONS(1860), + [sym_instancetype] = ACTIONS(1860), + [sym_Class] = ACTIONS(1860), + [sym_SEL] = ACTIONS(1860), + [sym_IMP] = ACTIONS(1860), + [sym_BOOL] = ACTIONS(1860), + [sym_auto] = ACTIONS(1860), + [anon_sym_ATautoreleasepool] = ACTIONS(1862), + [anon_sym_ATsynchronized] = ACTIONS(1862), + [anon_sym_ATtry] = ACTIONS(1862), + [anon_sym_ATthrow] = ACTIONS(1862), + [anon_sym_ATselector] = ACTIONS(1862), + [anon_sym_ATencode] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1860), + [sym_YES] = ACTIONS(1860), + [sym_NO] = ACTIONS(1860), + [anon_sym___builtin_available] = ACTIONS(1860), + [anon_sym_ATavailable] = ACTIONS(1862), + [anon_sym_va_arg] = ACTIONS(1860), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1444] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1445] = { + [sym_identifier] = ACTIONS(1860), + [aux_sym_preproc_include_token1] = ACTIONS(1862), + [aux_sym_preproc_def_token1] = ACTIONS(1862), + [aux_sym_preproc_if_token1] = ACTIONS(1860), + [aux_sym_preproc_if_token2] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1860), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1860), + [anon_sym_LPAREN2] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_TILDE] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_CARET] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_typedef] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym___attribute] = ACTIONS(1860), + [anon_sym___attribute__] = ACTIONS(1860), + [anon_sym___declspec] = ACTIONS(1860), + [anon_sym___cdecl] = ACTIONS(1860), + [anon_sym___clrcall] = ACTIONS(1860), + [anon_sym___stdcall] = ACTIONS(1860), + [anon_sym___fastcall] = ACTIONS(1860), + [anon_sym___thiscall] = ACTIONS(1860), + [anon_sym___vectorcall] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_auto] = ACTIONS(1860), + [anon_sym_register] = ACTIONS(1860), + [anon_sym_inline] = ACTIONS(1860), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_volatile] = ACTIONS(1860), + [anon_sym_restrict] = ACTIONS(1860), + [anon_sym__Atomic] = ACTIONS(1860), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_out] = ACTIONS(1860), + [anon_sym_inout] = ACTIONS(1860), + [anon_sym_bycopy] = ACTIONS(1860), + [anon_sym_byref] = ACTIONS(1860), + [anon_sym_oneway] = ACTIONS(1860), + [anon_sym__Nullable] = ACTIONS(1860), + [anon_sym__Nonnull] = ACTIONS(1860), + [anon_sym__Nullable_result] = ACTIONS(1860), + [anon_sym__Null_unspecified] = ACTIONS(1860), + [anon_sym___autoreleasing] = ACTIONS(1860), + [anon_sym___nullable] = ACTIONS(1860), + [anon_sym___nonnull] = ACTIONS(1860), + [anon_sym___strong] = ACTIONS(1860), + [anon_sym___weak] = ACTIONS(1860), + [anon_sym___bridge] = ACTIONS(1860), + [anon_sym___bridge_transfer] = ACTIONS(1860), + [anon_sym___bridge_retained] = ACTIONS(1860), + [anon_sym___unsafe_unretained] = ACTIONS(1860), + [anon_sym___block] = ACTIONS(1860), + [anon_sym___kindof] = ACTIONS(1860), + [anon_sym___unused] = ACTIONS(1860), + [anon_sym__Complex] = ACTIONS(1860), + [anon_sym___complex] = ACTIONS(1860), + [anon_sym_IBOutlet] = ACTIONS(1860), + [anon_sym_IBInspectable] = ACTIONS(1860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1860), + [anon_sym_signed] = ACTIONS(1860), + [anon_sym_unsigned] = ACTIONS(1860), + [anon_sym_long] = ACTIONS(1860), + [anon_sym_short] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_union] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_switch] = ACTIONS(1860), + [anon_sym_case] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_do] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_goto] = ACTIONS(1860), + [anon_sym_DASH_DASH] = ACTIONS(1862), + [anon_sym_PLUS_PLUS] = ACTIONS(1862), + [anon_sym_sizeof] = ACTIONS(1860), + [sym_number_literal] = ACTIONS(1862), + [anon_sym_L_SQUOTE] = ACTIONS(1862), + [anon_sym_u_SQUOTE] = ACTIONS(1862), + [anon_sym_U_SQUOTE] = ACTIONS(1862), + [anon_sym_u8_SQUOTE] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_L_DQUOTE] = ACTIONS(1862), + [anon_sym_u_DQUOTE] = ACTIONS(1862), + [anon_sym_U_DQUOTE] = ACTIONS(1862), + [anon_sym_u8_DQUOTE] = ACTIONS(1862), + [anon_sym_DQUOTE] = ACTIONS(1862), + [sym_true] = ACTIONS(1860), + [sym_false] = ACTIONS(1860), + [sym_null] = ACTIONS(1860), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1862), + [anon_sym_ATimport] = ACTIONS(1862), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1860), + [anon_sym_ATcompatibility_alias] = ACTIONS(1862), + [anon_sym_ATprotocol] = ACTIONS(1862), + [anon_sym_ATclass] = ACTIONS(1862), + [anon_sym_ATinterface] = ACTIONS(1862), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1860), + [sym_method_attribute_specifier] = ACTIONS(1860), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1860), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1860), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE] = ACTIONS(1860), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1860), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_API_AVAILABLE] = ACTIONS(1860), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_API_DEPRECATED] = ACTIONS(1860), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1860), + [anon_sym___deprecated_msg] = ACTIONS(1860), + [anon_sym___deprecated_enum_msg] = ACTIONS(1860), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1860), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1860), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1860), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1860), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1860), + [anon_sym_ATimplementation] = ACTIONS(1862), + [anon_sym_NS_ENUM] = ACTIONS(1860), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1860), + [anon_sym_NS_OPTIONS] = ACTIONS(1860), + [anon_sym_typeof] = ACTIONS(1860), + [anon_sym___typeof] = ACTIONS(1860), + [anon_sym___typeof__] = ACTIONS(1860), + [sym_self] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_nil] = ACTIONS(1860), + [sym_id] = ACTIONS(1860), + [sym_instancetype] = ACTIONS(1860), + [sym_Class] = ACTIONS(1860), + [sym_SEL] = ACTIONS(1860), + [sym_IMP] = ACTIONS(1860), + [sym_BOOL] = ACTIONS(1860), + [sym_auto] = ACTIONS(1860), + [anon_sym_ATautoreleasepool] = ACTIONS(1862), + [anon_sym_ATsynchronized] = ACTIONS(1862), + [anon_sym_ATtry] = ACTIONS(1862), + [anon_sym_ATthrow] = ACTIONS(1862), + [anon_sym_ATselector] = ACTIONS(1862), + [anon_sym_ATencode] = ACTIONS(1862), + [anon_sym_AT] = ACTIONS(1860), + [sym_YES] = ACTIONS(1860), + [sym_NO] = ACTIONS(1860), + [anon_sym___builtin_available] = ACTIONS(1860), + [anon_sym_ATavailable] = ACTIONS(1862), + [anon_sym_va_arg] = ACTIONS(1860), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1446] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1447] = { + [sym_identifier] = ACTIONS(1856), + [aux_sym_preproc_include_token1] = ACTIONS(1858), + [aux_sym_preproc_def_token1] = ACTIONS(1858), + [aux_sym_preproc_if_token1] = ACTIONS(1856), + [aux_sym_preproc_if_token2] = ACTIONS(1856), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1856), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1856), + [anon_sym_LPAREN2] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1856), + [anon_sym_PLUS] = ACTIONS(1856), + [anon_sym_STAR] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_AMP] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1858), + [anon_sym_typedef] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(1856), + [anon_sym___attribute] = ACTIONS(1856), + [anon_sym___attribute__] = ACTIONS(1856), + [anon_sym___declspec] = ACTIONS(1856), + [anon_sym___cdecl] = ACTIONS(1856), + [anon_sym___clrcall] = ACTIONS(1856), + [anon_sym___stdcall] = ACTIONS(1856), + [anon_sym___fastcall] = ACTIONS(1856), + [anon_sym___thiscall] = ACTIONS(1856), + [anon_sym___vectorcall] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_LBRACK] = ACTIONS(1858), + [anon_sym_static] = ACTIONS(1856), + [anon_sym_auto] = ACTIONS(1856), + [anon_sym_register] = ACTIONS(1856), + [anon_sym_inline] = ACTIONS(1856), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1856), + [anon_sym_const] = ACTIONS(1856), + [anon_sym_volatile] = ACTIONS(1856), + [anon_sym_restrict] = ACTIONS(1856), + [anon_sym__Atomic] = ACTIONS(1856), + [anon_sym_in] = ACTIONS(1856), + [anon_sym_out] = ACTIONS(1856), + [anon_sym_inout] = ACTIONS(1856), + [anon_sym_bycopy] = ACTIONS(1856), + [anon_sym_byref] = ACTIONS(1856), + [anon_sym_oneway] = ACTIONS(1856), + [anon_sym__Nullable] = ACTIONS(1856), + [anon_sym__Nonnull] = ACTIONS(1856), + [anon_sym__Nullable_result] = ACTIONS(1856), + [anon_sym__Null_unspecified] = ACTIONS(1856), + [anon_sym___autoreleasing] = ACTIONS(1856), + [anon_sym___nullable] = ACTIONS(1856), + [anon_sym___nonnull] = ACTIONS(1856), + [anon_sym___strong] = ACTIONS(1856), + [anon_sym___weak] = ACTIONS(1856), + [anon_sym___bridge] = ACTIONS(1856), + [anon_sym___bridge_transfer] = ACTIONS(1856), + [anon_sym___bridge_retained] = ACTIONS(1856), + [anon_sym___unsafe_unretained] = ACTIONS(1856), + [anon_sym___block] = ACTIONS(1856), + [anon_sym___kindof] = ACTIONS(1856), + [anon_sym___unused] = ACTIONS(1856), + [anon_sym__Complex] = ACTIONS(1856), + [anon_sym___complex] = ACTIONS(1856), + [anon_sym_IBOutlet] = ACTIONS(1856), + [anon_sym_IBInspectable] = ACTIONS(1856), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1856), + [anon_sym_signed] = ACTIONS(1856), + [anon_sym_unsigned] = ACTIONS(1856), + [anon_sym_long] = ACTIONS(1856), + [anon_sym_short] = ACTIONS(1856), + [sym_primitive_type] = ACTIONS(1856), + [anon_sym_enum] = ACTIONS(1856), + [anon_sym_struct] = ACTIONS(1856), + [anon_sym_union] = ACTIONS(1856), + [anon_sym_if] = ACTIONS(1856), + [anon_sym_switch] = ACTIONS(1856), + [anon_sym_case] = ACTIONS(1856), + [anon_sym_default] = ACTIONS(1856), + [anon_sym_while] = ACTIONS(1856), + [anon_sym_do] = ACTIONS(1856), + [anon_sym_for] = ACTIONS(1856), + [anon_sym_return] = ACTIONS(1856), + [anon_sym_break] = ACTIONS(1856), + [anon_sym_continue] = ACTIONS(1856), + [anon_sym_goto] = ACTIONS(1856), + [anon_sym_DASH_DASH] = ACTIONS(1858), + [anon_sym_PLUS_PLUS] = ACTIONS(1858), + [anon_sym_sizeof] = ACTIONS(1856), + [sym_number_literal] = ACTIONS(1858), + [anon_sym_L_SQUOTE] = ACTIONS(1858), + [anon_sym_u_SQUOTE] = ACTIONS(1858), + [anon_sym_U_SQUOTE] = ACTIONS(1858), + [anon_sym_u8_SQUOTE] = ACTIONS(1858), + [anon_sym_SQUOTE] = ACTIONS(1858), + [anon_sym_L_DQUOTE] = ACTIONS(1858), + [anon_sym_u_DQUOTE] = ACTIONS(1858), + [anon_sym_U_DQUOTE] = ACTIONS(1858), + [anon_sym_u8_DQUOTE] = ACTIONS(1858), + [anon_sym_DQUOTE] = ACTIONS(1858), + [sym_true] = ACTIONS(1856), + [sym_false] = ACTIONS(1856), + [sym_null] = ACTIONS(1856), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1858), + [anon_sym_ATimport] = ACTIONS(1858), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1856), + [anon_sym_ATcompatibility_alias] = ACTIONS(1858), + [anon_sym_ATprotocol] = ACTIONS(1858), + [anon_sym_ATclass] = ACTIONS(1858), + [anon_sym_ATinterface] = ACTIONS(1858), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1856), + [sym_method_attribute_specifier] = ACTIONS(1856), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1856), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1856), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1856), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1856), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1856), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1856), + [anon_sym_NS_AVAILABLE] = ACTIONS(1856), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1856), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1856), + [anon_sym_API_AVAILABLE] = ACTIONS(1856), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1856), + [anon_sym_API_DEPRECATED] = ACTIONS(1856), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1856), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1856), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1856), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1856), + [anon_sym___deprecated_msg] = ACTIONS(1856), + [anon_sym___deprecated_enum_msg] = ACTIONS(1856), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1856), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1856), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1856), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1856), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1856), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1856), + [anon_sym_ATimplementation] = ACTIONS(1858), + [anon_sym_NS_ENUM] = ACTIONS(1856), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1856), + [anon_sym_NS_OPTIONS] = ACTIONS(1856), + [anon_sym_typeof] = ACTIONS(1856), + [anon_sym___typeof] = ACTIONS(1856), + [anon_sym___typeof__] = ACTIONS(1856), + [sym_self] = ACTIONS(1856), + [sym_super] = ACTIONS(1856), + [sym_nil] = ACTIONS(1856), + [sym_id] = ACTIONS(1856), + [sym_instancetype] = ACTIONS(1856), + [sym_Class] = ACTIONS(1856), + [sym_SEL] = ACTIONS(1856), + [sym_IMP] = ACTIONS(1856), + [sym_BOOL] = ACTIONS(1856), + [sym_auto] = ACTIONS(1856), + [anon_sym_ATautoreleasepool] = ACTIONS(1858), + [anon_sym_ATsynchronized] = ACTIONS(1858), + [anon_sym_ATtry] = ACTIONS(1858), + [anon_sym_ATthrow] = ACTIONS(1858), + [anon_sym_ATselector] = ACTIONS(1858), + [anon_sym_ATencode] = ACTIONS(1858), + [anon_sym_AT] = ACTIONS(1856), + [sym_YES] = ACTIONS(1856), + [sym_NO] = ACTIONS(1856), + [anon_sym___builtin_available] = ACTIONS(1856), + [anon_sym_ATavailable] = ACTIONS(1858), + [anon_sym_va_arg] = ACTIONS(1856), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1448] = { + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2030), + [aux_sym_preproc_def_token1] = ACTIONS(2030), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token2] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_auto] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_out] = ACTIONS(2028), + [anon_sym_inout] = ACTIONS(2028), + [anon_sym_bycopy] = ACTIONS(2028), + [anon_sym_byref] = ACTIONS(2028), + [anon_sym_oneway] = ACTIONS(2028), + [anon_sym__Nullable] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym__Nullable_result] = ACTIONS(2028), + [anon_sym__Null_unspecified] = ACTIONS(2028), + [anon_sym___autoreleasing] = ACTIONS(2028), + [anon_sym___nullable] = ACTIONS(2028), + [anon_sym___nonnull] = ACTIONS(2028), + [anon_sym___strong] = ACTIONS(2028), + [anon_sym___weak] = ACTIONS(2028), + [anon_sym___bridge] = ACTIONS(2028), + [anon_sym___bridge_transfer] = ACTIONS(2028), + [anon_sym___bridge_retained] = ACTIONS(2028), + [anon_sym___unsafe_unretained] = ACTIONS(2028), + [anon_sym___block] = ACTIONS(2028), + [anon_sym___kindof] = ACTIONS(2028), + [anon_sym___unused] = ACTIONS(2028), + [anon_sym__Complex] = ACTIONS(2028), + [anon_sym___complex] = ACTIONS(2028), + [anon_sym_IBOutlet] = ACTIONS(2028), + [anon_sym_IBInspectable] = ACTIONS(2028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2028), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2030), + [anon_sym_ATimport] = ACTIONS(2030), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2028), + [anon_sym_ATcompatibility_alias] = ACTIONS(2030), + [anon_sym_ATprotocol] = ACTIONS(2030), + [anon_sym_ATclass] = ACTIONS(2030), + [anon_sym_ATinterface] = ACTIONS(2030), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2028), + [sym_method_attribute_specifier] = ACTIONS(2028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE] = ACTIONS(2028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_API_AVAILABLE] = ACTIONS(2028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_API_DEPRECATED] = ACTIONS(2028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2028), + [anon_sym___deprecated_msg] = ACTIONS(2028), + [anon_sym___deprecated_enum_msg] = ACTIONS(2028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2028), + [anon_sym_ATimplementation] = ACTIONS(2030), + [anon_sym_NS_ENUM] = ACTIONS(2028), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2028), + [anon_sym_NS_OPTIONS] = ACTIONS(2028), + [anon_sym_typeof] = ACTIONS(2028), + [anon_sym___typeof] = ACTIONS(2028), + [anon_sym___typeof__] = ACTIONS(2028), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_nil] = ACTIONS(2028), + [sym_id] = ACTIONS(2028), + [sym_instancetype] = ACTIONS(2028), + [sym_Class] = ACTIONS(2028), + [sym_SEL] = ACTIONS(2028), + [sym_IMP] = ACTIONS(2028), + [sym_BOOL] = ACTIONS(2028), + [sym_auto] = ACTIONS(2028), + [anon_sym_ATautoreleasepool] = ACTIONS(2030), + [anon_sym_ATsynchronized] = ACTIONS(2030), + [anon_sym_ATtry] = ACTIONS(2030), + [anon_sym_ATthrow] = ACTIONS(2030), + [anon_sym_ATselector] = ACTIONS(2030), + [anon_sym_ATencode] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2028), + [sym_YES] = ACTIONS(2028), + [sym_NO] = ACTIONS(2028), + [anon_sym___builtin_available] = ACTIONS(2028), + [anon_sym_ATavailable] = ACTIONS(2030), + [anon_sym_va_arg] = ACTIONS(2028), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1449] = { + [sym_identifier] = ACTIONS(1852), + [aux_sym_preproc_include_token1] = ACTIONS(1854), + [aux_sym_preproc_def_token1] = ACTIONS(1854), + [aux_sym_preproc_if_token1] = ACTIONS(1852), + [aux_sym_preproc_if_token2] = ACTIONS(1852), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1852), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1852), + [anon_sym_LPAREN2] = ACTIONS(1854), + [anon_sym_BANG] = ACTIONS(1854), + [anon_sym_TILDE] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1852), + [anon_sym_STAR] = ACTIONS(1854), + [anon_sym_CARET] = ACTIONS(1854), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_typedef] = ACTIONS(1852), + [anon_sym_extern] = ACTIONS(1852), + [anon_sym___attribute] = ACTIONS(1852), + [anon_sym___attribute__] = ACTIONS(1852), + [anon_sym___declspec] = ACTIONS(1852), + [anon_sym___cdecl] = ACTIONS(1852), + [anon_sym___clrcall] = ACTIONS(1852), + [anon_sym___stdcall] = ACTIONS(1852), + [anon_sym___fastcall] = ACTIONS(1852), + [anon_sym___thiscall] = ACTIONS(1852), + [anon_sym___vectorcall] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_LBRACK] = ACTIONS(1854), + [anon_sym_static] = ACTIONS(1852), + [anon_sym_auto] = ACTIONS(1852), + [anon_sym_register] = ACTIONS(1852), + [anon_sym_inline] = ACTIONS(1852), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1852), + [anon_sym_volatile] = ACTIONS(1852), + [anon_sym_restrict] = ACTIONS(1852), + [anon_sym__Atomic] = ACTIONS(1852), + [anon_sym_in] = ACTIONS(1852), + [anon_sym_out] = ACTIONS(1852), + [anon_sym_inout] = ACTIONS(1852), + [anon_sym_bycopy] = ACTIONS(1852), + [anon_sym_byref] = ACTIONS(1852), + [anon_sym_oneway] = ACTIONS(1852), + [anon_sym__Nullable] = ACTIONS(1852), + [anon_sym__Nonnull] = ACTIONS(1852), + [anon_sym__Nullable_result] = ACTIONS(1852), + [anon_sym__Null_unspecified] = ACTIONS(1852), + [anon_sym___autoreleasing] = ACTIONS(1852), + [anon_sym___nullable] = ACTIONS(1852), + [anon_sym___nonnull] = ACTIONS(1852), + [anon_sym___strong] = ACTIONS(1852), + [anon_sym___weak] = ACTIONS(1852), + [anon_sym___bridge] = ACTIONS(1852), + [anon_sym___bridge_transfer] = ACTIONS(1852), + [anon_sym___bridge_retained] = ACTIONS(1852), + [anon_sym___unsafe_unretained] = ACTIONS(1852), + [anon_sym___block] = ACTIONS(1852), + [anon_sym___kindof] = ACTIONS(1852), + [anon_sym___unused] = ACTIONS(1852), + [anon_sym__Complex] = ACTIONS(1852), + [anon_sym___complex] = ACTIONS(1852), + [anon_sym_IBOutlet] = ACTIONS(1852), + [anon_sym_IBInspectable] = ACTIONS(1852), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1852), + [anon_sym_signed] = ACTIONS(1852), + [anon_sym_unsigned] = ACTIONS(1852), + [anon_sym_long] = ACTIONS(1852), + [anon_sym_short] = ACTIONS(1852), + [sym_primitive_type] = ACTIONS(1852), + [anon_sym_enum] = ACTIONS(1852), + [anon_sym_struct] = ACTIONS(1852), + [anon_sym_union] = ACTIONS(1852), + [anon_sym_if] = ACTIONS(1852), + [anon_sym_switch] = ACTIONS(1852), + [anon_sym_case] = ACTIONS(1852), + [anon_sym_default] = ACTIONS(1852), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_do] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1852), + [anon_sym_return] = ACTIONS(1852), + [anon_sym_break] = ACTIONS(1852), + [anon_sym_continue] = ACTIONS(1852), + [anon_sym_goto] = ACTIONS(1852), + [anon_sym_DASH_DASH] = ACTIONS(1854), + [anon_sym_PLUS_PLUS] = ACTIONS(1854), + [anon_sym_sizeof] = ACTIONS(1852), + [sym_number_literal] = ACTIONS(1854), + [anon_sym_L_SQUOTE] = ACTIONS(1854), + [anon_sym_u_SQUOTE] = ACTIONS(1854), + [anon_sym_U_SQUOTE] = ACTIONS(1854), + [anon_sym_u8_SQUOTE] = ACTIONS(1854), + [anon_sym_SQUOTE] = ACTIONS(1854), + [anon_sym_L_DQUOTE] = ACTIONS(1854), + [anon_sym_u_DQUOTE] = ACTIONS(1854), + [anon_sym_U_DQUOTE] = ACTIONS(1854), + [anon_sym_u8_DQUOTE] = ACTIONS(1854), + [anon_sym_DQUOTE] = ACTIONS(1854), + [sym_true] = ACTIONS(1852), + [sym_false] = ACTIONS(1852), + [sym_null] = ACTIONS(1852), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1854), + [anon_sym_ATimport] = ACTIONS(1854), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1852), + [anon_sym_ATcompatibility_alias] = ACTIONS(1854), + [anon_sym_ATprotocol] = ACTIONS(1854), + [anon_sym_ATclass] = ACTIONS(1854), + [anon_sym_ATinterface] = ACTIONS(1854), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1852), + [sym_method_attribute_specifier] = ACTIONS(1852), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1852), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1852), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1852), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1852), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1852), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1852), + [anon_sym_NS_AVAILABLE] = ACTIONS(1852), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1852), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1852), + [anon_sym_API_AVAILABLE] = ACTIONS(1852), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1852), + [anon_sym_API_DEPRECATED] = ACTIONS(1852), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1852), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1852), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1852), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1852), + [anon_sym___deprecated_msg] = ACTIONS(1852), + [anon_sym___deprecated_enum_msg] = ACTIONS(1852), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1852), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1852), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1852), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1852), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1852), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1852), + [anon_sym_ATimplementation] = ACTIONS(1854), + [anon_sym_NS_ENUM] = ACTIONS(1852), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1852), + [anon_sym_NS_OPTIONS] = ACTIONS(1852), + [anon_sym_typeof] = ACTIONS(1852), + [anon_sym___typeof] = ACTIONS(1852), + [anon_sym___typeof__] = ACTIONS(1852), + [sym_self] = ACTIONS(1852), + [sym_super] = ACTIONS(1852), + [sym_nil] = ACTIONS(1852), + [sym_id] = ACTIONS(1852), + [sym_instancetype] = ACTIONS(1852), + [sym_Class] = ACTIONS(1852), + [sym_SEL] = ACTIONS(1852), + [sym_IMP] = ACTIONS(1852), + [sym_BOOL] = ACTIONS(1852), + [sym_auto] = ACTIONS(1852), + [anon_sym_ATautoreleasepool] = ACTIONS(1854), + [anon_sym_ATsynchronized] = ACTIONS(1854), + [anon_sym_ATtry] = ACTIONS(1854), + [anon_sym_ATthrow] = ACTIONS(1854), + [anon_sym_ATselector] = ACTIONS(1854), + [anon_sym_ATencode] = ACTIONS(1854), + [anon_sym_AT] = ACTIONS(1852), + [sym_YES] = ACTIONS(1852), + [sym_NO] = ACTIONS(1852), + [anon_sym___builtin_available] = ACTIONS(1852), + [anon_sym_ATavailable] = ACTIONS(1854), + [anon_sym_va_arg] = ACTIONS(1852), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1450] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1451] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1452] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1453] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1454] = { + [sym_identifier] = ACTIONS(1844), + [aux_sym_preproc_include_token1] = ACTIONS(1846), + [aux_sym_preproc_def_token1] = ACTIONS(1846), + [aux_sym_preproc_if_token1] = ACTIONS(1844), + [aux_sym_preproc_if_token2] = ACTIONS(1844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1844), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_typedef] = ACTIONS(1844), + [anon_sym_extern] = ACTIONS(1844), + [anon_sym___attribute] = ACTIONS(1844), + [anon_sym___attribute__] = ACTIONS(1844), + [anon_sym___declspec] = ACTIONS(1844), + [anon_sym___cdecl] = ACTIONS(1844), + [anon_sym___clrcall] = ACTIONS(1844), + [anon_sym___stdcall] = ACTIONS(1844), + [anon_sym___fastcall] = ACTIONS(1844), + [anon_sym___thiscall] = ACTIONS(1844), + [anon_sym___vectorcall] = ACTIONS(1844), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1846), + [anon_sym_static] = ACTIONS(1844), + [anon_sym_auto] = ACTIONS(1844), + [anon_sym_register] = ACTIONS(1844), + [anon_sym_inline] = ACTIONS(1844), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1844), + [anon_sym_const] = ACTIONS(1844), + [anon_sym_volatile] = ACTIONS(1844), + [anon_sym_restrict] = ACTIONS(1844), + [anon_sym__Atomic] = ACTIONS(1844), + [anon_sym_in] = ACTIONS(1844), + [anon_sym_out] = ACTIONS(1844), + [anon_sym_inout] = ACTIONS(1844), + [anon_sym_bycopy] = ACTIONS(1844), + [anon_sym_byref] = ACTIONS(1844), + [anon_sym_oneway] = ACTIONS(1844), + [anon_sym__Nullable] = ACTIONS(1844), + [anon_sym__Nonnull] = ACTIONS(1844), + [anon_sym__Nullable_result] = ACTIONS(1844), + [anon_sym__Null_unspecified] = ACTIONS(1844), + [anon_sym___autoreleasing] = ACTIONS(1844), + [anon_sym___nullable] = ACTIONS(1844), + [anon_sym___nonnull] = ACTIONS(1844), + [anon_sym___strong] = ACTIONS(1844), + [anon_sym___weak] = ACTIONS(1844), + [anon_sym___bridge] = ACTIONS(1844), + [anon_sym___bridge_transfer] = ACTIONS(1844), + [anon_sym___bridge_retained] = ACTIONS(1844), + [anon_sym___unsafe_unretained] = ACTIONS(1844), + [anon_sym___block] = ACTIONS(1844), + [anon_sym___kindof] = ACTIONS(1844), + [anon_sym___unused] = ACTIONS(1844), + [anon_sym__Complex] = ACTIONS(1844), + [anon_sym___complex] = ACTIONS(1844), + [anon_sym_IBOutlet] = ACTIONS(1844), + [anon_sym_IBInspectable] = ACTIONS(1844), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1844), + [anon_sym_signed] = ACTIONS(1844), + [anon_sym_unsigned] = ACTIONS(1844), + [anon_sym_long] = ACTIONS(1844), + [anon_sym_short] = ACTIONS(1844), + [sym_primitive_type] = ACTIONS(1844), + [anon_sym_enum] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1844), + [anon_sym_union] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1844), + [anon_sym_switch] = ACTIONS(1844), + [anon_sym_case] = ACTIONS(1844), + [anon_sym_default] = ACTIONS(1844), + [anon_sym_while] = ACTIONS(1844), + [anon_sym_do] = ACTIONS(1844), + [anon_sym_for] = ACTIONS(1844), + [anon_sym_return] = ACTIONS(1844), + [anon_sym_break] = ACTIONS(1844), + [anon_sym_continue] = ACTIONS(1844), + [anon_sym_goto] = ACTIONS(1844), + [anon_sym_DASH_DASH] = ACTIONS(1846), + [anon_sym_PLUS_PLUS] = ACTIONS(1846), + [anon_sym_sizeof] = ACTIONS(1844), + [sym_number_literal] = ACTIONS(1846), + [anon_sym_L_SQUOTE] = ACTIONS(1846), + [anon_sym_u_SQUOTE] = ACTIONS(1846), + [anon_sym_U_SQUOTE] = ACTIONS(1846), + [anon_sym_u8_SQUOTE] = ACTIONS(1846), + [anon_sym_SQUOTE] = ACTIONS(1846), + [anon_sym_L_DQUOTE] = ACTIONS(1846), + [anon_sym_u_DQUOTE] = ACTIONS(1846), + [anon_sym_U_DQUOTE] = ACTIONS(1846), + [anon_sym_u8_DQUOTE] = ACTIONS(1846), + [anon_sym_DQUOTE] = ACTIONS(1846), + [sym_true] = ACTIONS(1844), + [sym_false] = ACTIONS(1844), + [sym_null] = ACTIONS(1844), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1846), + [anon_sym_ATimport] = ACTIONS(1846), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1844), + [anon_sym_ATcompatibility_alias] = ACTIONS(1846), + [anon_sym_ATprotocol] = ACTIONS(1846), + [anon_sym_ATclass] = ACTIONS(1846), + [anon_sym_ATinterface] = ACTIONS(1846), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1844), + [sym_method_attribute_specifier] = ACTIONS(1844), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1844), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1844), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1844), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1844), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1844), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1844), + [anon_sym_NS_AVAILABLE] = ACTIONS(1844), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1844), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1844), + [anon_sym_API_AVAILABLE] = ACTIONS(1844), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1844), + [anon_sym_API_DEPRECATED] = ACTIONS(1844), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1844), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1844), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1844), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1844), + [anon_sym___deprecated_msg] = ACTIONS(1844), + [anon_sym___deprecated_enum_msg] = ACTIONS(1844), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1844), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1844), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1844), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1844), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1844), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1844), + [anon_sym_ATimplementation] = ACTIONS(1846), + [anon_sym_NS_ENUM] = ACTIONS(1844), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1844), + [anon_sym_NS_OPTIONS] = ACTIONS(1844), + [anon_sym_typeof] = ACTIONS(1844), + [anon_sym___typeof] = ACTIONS(1844), + [anon_sym___typeof__] = ACTIONS(1844), + [sym_self] = ACTIONS(1844), + [sym_super] = ACTIONS(1844), + [sym_nil] = ACTIONS(1844), + [sym_id] = ACTIONS(1844), + [sym_instancetype] = ACTIONS(1844), + [sym_Class] = ACTIONS(1844), + [sym_SEL] = ACTIONS(1844), + [sym_IMP] = ACTIONS(1844), + [sym_BOOL] = ACTIONS(1844), + [sym_auto] = ACTIONS(1844), + [anon_sym_ATautoreleasepool] = ACTIONS(1846), + [anon_sym_ATsynchronized] = ACTIONS(1846), + [anon_sym_ATtry] = ACTIONS(1846), + [anon_sym_ATthrow] = ACTIONS(1846), + [anon_sym_ATselector] = ACTIONS(1846), + [anon_sym_ATencode] = ACTIONS(1846), + [anon_sym_AT] = ACTIONS(1844), + [sym_YES] = ACTIONS(1844), + [sym_NO] = ACTIONS(1844), + [anon_sym___builtin_available] = ACTIONS(1844), + [anon_sym_ATavailable] = ACTIONS(1846), + [anon_sym_va_arg] = ACTIONS(1844), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1455] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1456] = { + [sym_identifier] = ACTIONS(2028), + [aux_sym_preproc_include_token1] = ACTIONS(2030), + [aux_sym_preproc_def_token1] = ACTIONS(2030), + [aux_sym_preproc_if_token1] = ACTIONS(2028), + [aux_sym_preproc_if_token2] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2028), + [anon_sym_LPAREN2] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_TILDE] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_CARET] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_typedef] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym___attribute] = ACTIONS(2028), + [anon_sym___attribute__] = ACTIONS(2028), + [anon_sym___declspec] = ACTIONS(2028), + [anon_sym___cdecl] = ACTIONS(2028), + [anon_sym___clrcall] = ACTIONS(2028), + [anon_sym___stdcall] = ACTIONS(2028), + [anon_sym___fastcall] = ACTIONS(2028), + [anon_sym___thiscall] = ACTIONS(2028), + [anon_sym___vectorcall] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_auto] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_inline] = ACTIONS(2028), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_volatile] = ACTIONS(2028), + [anon_sym_restrict] = ACTIONS(2028), + [anon_sym__Atomic] = ACTIONS(2028), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_out] = ACTIONS(2028), + [anon_sym_inout] = ACTIONS(2028), + [anon_sym_bycopy] = ACTIONS(2028), + [anon_sym_byref] = ACTIONS(2028), + [anon_sym_oneway] = ACTIONS(2028), + [anon_sym__Nullable] = ACTIONS(2028), + [anon_sym__Nonnull] = ACTIONS(2028), + [anon_sym__Nullable_result] = ACTIONS(2028), + [anon_sym__Null_unspecified] = ACTIONS(2028), + [anon_sym___autoreleasing] = ACTIONS(2028), + [anon_sym___nullable] = ACTIONS(2028), + [anon_sym___nonnull] = ACTIONS(2028), + [anon_sym___strong] = ACTIONS(2028), + [anon_sym___weak] = ACTIONS(2028), + [anon_sym___bridge] = ACTIONS(2028), + [anon_sym___bridge_transfer] = ACTIONS(2028), + [anon_sym___bridge_retained] = ACTIONS(2028), + [anon_sym___unsafe_unretained] = ACTIONS(2028), + [anon_sym___block] = ACTIONS(2028), + [anon_sym___kindof] = ACTIONS(2028), + [anon_sym___unused] = ACTIONS(2028), + [anon_sym__Complex] = ACTIONS(2028), + [anon_sym___complex] = ACTIONS(2028), + [anon_sym_IBOutlet] = ACTIONS(2028), + [anon_sym_IBInspectable] = ACTIONS(2028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2028), + [anon_sym_signed] = ACTIONS(2028), + [anon_sym_unsigned] = ACTIONS(2028), + [anon_sym_long] = ACTIONS(2028), + [anon_sym_short] = ACTIONS(2028), + [sym_primitive_type] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_switch] = ACTIONS(2028), + [anon_sym_case] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_goto] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_PLUS_PLUS] = ACTIONS(2030), + [anon_sym_sizeof] = ACTIONS(2028), + [sym_number_literal] = ACTIONS(2030), + [anon_sym_L_SQUOTE] = ACTIONS(2030), + [anon_sym_u_SQUOTE] = ACTIONS(2030), + [anon_sym_U_SQUOTE] = ACTIONS(2030), + [anon_sym_u8_SQUOTE] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_L_DQUOTE] = ACTIONS(2030), + [anon_sym_u_DQUOTE] = ACTIONS(2030), + [anon_sym_U_DQUOTE] = ACTIONS(2030), + [anon_sym_u8_DQUOTE] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym_true] = ACTIONS(2028), + [sym_false] = ACTIONS(2028), + [sym_null] = ACTIONS(2028), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2030), + [anon_sym_ATimport] = ACTIONS(2030), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2028), + [anon_sym_ATcompatibility_alias] = ACTIONS(2030), + [anon_sym_ATprotocol] = ACTIONS(2030), + [anon_sym_ATclass] = ACTIONS(2030), + [anon_sym_ATinterface] = ACTIONS(2030), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2028), + [sym_method_attribute_specifier] = ACTIONS(2028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE] = ACTIONS(2028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_API_AVAILABLE] = ACTIONS(2028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_API_DEPRECATED] = ACTIONS(2028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2028), + [anon_sym___deprecated_msg] = ACTIONS(2028), + [anon_sym___deprecated_enum_msg] = ACTIONS(2028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2028), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2028), + [anon_sym_ATimplementation] = ACTIONS(2030), + [anon_sym_NS_ENUM] = ACTIONS(2028), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2028), + [anon_sym_NS_OPTIONS] = ACTIONS(2028), + [anon_sym_typeof] = ACTIONS(2028), + [anon_sym___typeof] = ACTIONS(2028), + [anon_sym___typeof__] = ACTIONS(2028), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_nil] = ACTIONS(2028), + [sym_id] = ACTIONS(2028), + [sym_instancetype] = ACTIONS(2028), + [sym_Class] = ACTIONS(2028), + [sym_SEL] = ACTIONS(2028), + [sym_IMP] = ACTIONS(2028), + [sym_BOOL] = ACTIONS(2028), + [sym_auto] = ACTIONS(2028), + [anon_sym_ATautoreleasepool] = ACTIONS(2030), + [anon_sym_ATsynchronized] = ACTIONS(2030), + [anon_sym_ATtry] = ACTIONS(2030), + [anon_sym_ATthrow] = ACTIONS(2030), + [anon_sym_ATselector] = ACTIONS(2030), + [anon_sym_ATencode] = ACTIONS(2030), + [anon_sym_AT] = ACTIONS(2028), + [sym_YES] = ACTIONS(2028), + [sym_NO] = ACTIONS(2028), + [anon_sym___builtin_available] = ACTIONS(2028), + [anon_sym_ATavailable] = ACTIONS(2030), + [anon_sym_va_arg] = ACTIONS(2028), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1457] = { + [sym_identifier] = ACTIONS(2068), + [aux_sym_preproc_include_token1] = ACTIONS(2070), + [aux_sym_preproc_def_token1] = ACTIONS(2070), + [aux_sym_preproc_if_token1] = ACTIONS(2068), + [aux_sym_preproc_if_token2] = ACTIONS(2068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2068), + [anon_sym_LPAREN2] = ACTIONS(2070), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_TILDE] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_PLUS] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2070), + [anon_sym_CARET] = ACTIONS(2070), + [anon_sym_AMP] = ACTIONS(2070), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_typedef] = ACTIONS(2068), + [anon_sym_extern] = ACTIONS(2068), + [anon_sym___attribute] = ACTIONS(2068), + [anon_sym___attribute__] = ACTIONS(2068), + [anon_sym___declspec] = ACTIONS(2068), + [anon_sym___cdecl] = ACTIONS(2068), + [anon_sym___clrcall] = ACTIONS(2068), + [anon_sym___stdcall] = ACTIONS(2068), + [anon_sym___fastcall] = ACTIONS(2068), + [anon_sym___thiscall] = ACTIONS(2068), + [anon_sym___vectorcall] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_auto] = ACTIONS(2068), + [anon_sym_register] = ACTIONS(2068), + [anon_sym_inline] = ACTIONS(2068), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_volatile] = ACTIONS(2068), + [anon_sym_restrict] = ACTIONS(2068), + [anon_sym__Atomic] = ACTIONS(2068), + [anon_sym_in] = ACTIONS(2068), + [anon_sym_out] = ACTIONS(2068), + [anon_sym_inout] = ACTIONS(2068), + [anon_sym_bycopy] = ACTIONS(2068), + [anon_sym_byref] = ACTIONS(2068), + [anon_sym_oneway] = ACTIONS(2068), + [anon_sym__Nullable] = ACTIONS(2068), + [anon_sym__Nonnull] = ACTIONS(2068), + [anon_sym__Nullable_result] = ACTIONS(2068), + [anon_sym__Null_unspecified] = ACTIONS(2068), + [anon_sym___autoreleasing] = ACTIONS(2068), + [anon_sym___nullable] = ACTIONS(2068), + [anon_sym___nonnull] = ACTIONS(2068), + [anon_sym___strong] = ACTIONS(2068), + [anon_sym___weak] = ACTIONS(2068), + [anon_sym___bridge] = ACTIONS(2068), + [anon_sym___bridge_transfer] = ACTIONS(2068), + [anon_sym___bridge_retained] = ACTIONS(2068), + [anon_sym___unsafe_unretained] = ACTIONS(2068), + [anon_sym___block] = ACTIONS(2068), + [anon_sym___kindof] = ACTIONS(2068), + [anon_sym___unused] = ACTIONS(2068), + [anon_sym__Complex] = ACTIONS(2068), + [anon_sym___complex] = ACTIONS(2068), + [anon_sym_IBOutlet] = ACTIONS(2068), + [anon_sym_IBInspectable] = ACTIONS(2068), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2068), + [anon_sym_signed] = ACTIONS(2068), + [anon_sym_unsigned] = ACTIONS(2068), + [anon_sym_long] = ACTIONS(2068), + [anon_sym_short] = ACTIONS(2068), + [sym_primitive_type] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [anon_sym_struct] = ACTIONS(2068), + [anon_sym_union] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_switch] = ACTIONS(2068), + [anon_sym_case] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_do] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_goto] = ACTIONS(2068), + [anon_sym_DASH_DASH] = ACTIONS(2070), + [anon_sym_PLUS_PLUS] = ACTIONS(2070), + [anon_sym_sizeof] = ACTIONS(2068), + [sym_number_literal] = ACTIONS(2070), + [anon_sym_L_SQUOTE] = ACTIONS(2070), + [anon_sym_u_SQUOTE] = ACTIONS(2070), + [anon_sym_U_SQUOTE] = ACTIONS(2070), + [anon_sym_u8_SQUOTE] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2070), + [anon_sym_L_DQUOTE] = ACTIONS(2070), + [anon_sym_u_DQUOTE] = ACTIONS(2070), + [anon_sym_U_DQUOTE] = ACTIONS(2070), + [anon_sym_u8_DQUOTE] = ACTIONS(2070), + [anon_sym_DQUOTE] = ACTIONS(2070), + [sym_true] = ACTIONS(2068), + [sym_false] = ACTIONS(2068), + [sym_null] = ACTIONS(2068), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2070), + [anon_sym_ATimport] = ACTIONS(2070), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2068), + [anon_sym_ATcompatibility_alias] = ACTIONS(2070), + [anon_sym_ATprotocol] = ACTIONS(2070), + [anon_sym_ATclass] = ACTIONS(2070), + [anon_sym_ATinterface] = ACTIONS(2070), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2068), + [sym_method_attribute_specifier] = ACTIONS(2068), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2068), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2068), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2068), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2068), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2068), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2068), + [anon_sym_NS_AVAILABLE] = ACTIONS(2068), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2068), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2068), + [anon_sym_API_AVAILABLE] = ACTIONS(2068), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2068), + [anon_sym_API_DEPRECATED] = ACTIONS(2068), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2068), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2068), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2068), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2068), + [anon_sym___deprecated_msg] = ACTIONS(2068), + [anon_sym___deprecated_enum_msg] = ACTIONS(2068), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2068), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2068), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2068), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2068), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2068), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2068), + [anon_sym_ATimplementation] = ACTIONS(2070), + [anon_sym_NS_ENUM] = ACTIONS(2068), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2068), + [anon_sym_NS_OPTIONS] = ACTIONS(2068), + [anon_sym_typeof] = ACTIONS(2068), + [anon_sym___typeof] = ACTIONS(2068), + [anon_sym___typeof__] = ACTIONS(2068), + [sym_self] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_nil] = ACTIONS(2068), + [sym_id] = ACTIONS(2068), + [sym_instancetype] = ACTIONS(2068), + [sym_Class] = ACTIONS(2068), + [sym_SEL] = ACTIONS(2068), + [sym_IMP] = ACTIONS(2068), + [sym_BOOL] = ACTIONS(2068), + [sym_auto] = ACTIONS(2068), + [anon_sym_ATautoreleasepool] = ACTIONS(2070), + [anon_sym_ATsynchronized] = ACTIONS(2070), + [anon_sym_ATtry] = ACTIONS(2070), + [anon_sym_ATthrow] = ACTIONS(2070), + [anon_sym_ATselector] = ACTIONS(2070), + [anon_sym_ATencode] = ACTIONS(2070), + [anon_sym_AT] = ACTIONS(2068), + [sym_YES] = ACTIONS(2068), + [sym_NO] = ACTIONS(2068), + [anon_sym___builtin_available] = ACTIONS(2068), + [anon_sym_ATavailable] = ACTIONS(2070), + [anon_sym_va_arg] = ACTIONS(2068), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1458] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1459] = { + [sym_identifier] = ACTIONS(1952), + [aux_sym_preproc_include_token1] = ACTIONS(1954), + [aux_sym_preproc_def_token1] = ACTIONS(1954), + [aux_sym_preproc_if_token1] = ACTIONS(1952), + [aux_sym_preproc_if_token2] = ACTIONS(1952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1952), + [anon_sym_LPAREN2] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_TILDE] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_typedef] = ACTIONS(1952), + [anon_sym_extern] = ACTIONS(1952), + [anon_sym___attribute] = ACTIONS(1952), + [anon_sym___attribute__] = ACTIONS(1952), + [anon_sym___declspec] = ACTIONS(1952), + [anon_sym___cdecl] = ACTIONS(1952), + [anon_sym___clrcall] = ACTIONS(1952), + [anon_sym___stdcall] = ACTIONS(1952), + [anon_sym___fastcall] = ACTIONS(1952), + [anon_sym___thiscall] = ACTIONS(1952), + [anon_sym___vectorcall] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_LBRACK] = ACTIONS(1954), + [anon_sym_static] = ACTIONS(1952), + [anon_sym_auto] = ACTIONS(1952), + [anon_sym_register] = ACTIONS(1952), + [anon_sym_inline] = ACTIONS(1952), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1952), + [anon_sym_const] = ACTIONS(1952), + [anon_sym_volatile] = ACTIONS(1952), + [anon_sym_restrict] = ACTIONS(1952), + [anon_sym__Atomic] = ACTIONS(1952), + [anon_sym_in] = ACTIONS(1952), + [anon_sym_out] = ACTIONS(1952), + [anon_sym_inout] = ACTIONS(1952), + [anon_sym_bycopy] = ACTIONS(1952), + [anon_sym_byref] = ACTIONS(1952), + [anon_sym_oneway] = ACTIONS(1952), + [anon_sym__Nullable] = ACTIONS(1952), + [anon_sym__Nonnull] = ACTIONS(1952), + [anon_sym__Nullable_result] = ACTIONS(1952), + [anon_sym__Null_unspecified] = ACTIONS(1952), + [anon_sym___autoreleasing] = ACTIONS(1952), + [anon_sym___nullable] = ACTIONS(1952), + [anon_sym___nonnull] = ACTIONS(1952), + [anon_sym___strong] = ACTIONS(1952), + [anon_sym___weak] = ACTIONS(1952), + [anon_sym___bridge] = ACTIONS(1952), + [anon_sym___bridge_transfer] = ACTIONS(1952), + [anon_sym___bridge_retained] = ACTIONS(1952), + [anon_sym___unsafe_unretained] = ACTIONS(1952), + [anon_sym___block] = ACTIONS(1952), + [anon_sym___kindof] = ACTIONS(1952), + [anon_sym___unused] = ACTIONS(1952), + [anon_sym__Complex] = ACTIONS(1952), + [anon_sym___complex] = ACTIONS(1952), + [anon_sym_IBOutlet] = ACTIONS(1952), + [anon_sym_IBInspectable] = ACTIONS(1952), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1952), + [anon_sym_signed] = ACTIONS(1952), + [anon_sym_unsigned] = ACTIONS(1952), + [anon_sym_long] = ACTIONS(1952), + [anon_sym_short] = ACTIONS(1952), + [sym_primitive_type] = ACTIONS(1952), + [anon_sym_enum] = ACTIONS(1952), + [anon_sym_struct] = ACTIONS(1952), + [anon_sym_union] = ACTIONS(1952), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_switch] = ACTIONS(1952), + [anon_sym_case] = ACTIONS(1952), + [anon_sym_default] = ACTIONS(1952), + [anon_sym_while] = ACTIONS(1952), + [anon_sym_do] = ACTIONS(1952), + [anon_sym_for] = ACTIONS(1952), + [anon_sym_return] = ACTIONS(1952), + [anon_sym_break] = ACTIONS(1952), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_goto] = ACTIONS(1952), + [anon_sym_DASH_DASH] = ACTIONS(1954), + [anon_sym_PLUS_PLUS] = ACTIONS(1954), + [anon_sym_sizeof] = ACTIONS(1952), + [sym_number_literal] = ACTIONS(1954), + [anon_sym_L_SQUOTE] = ACTIONS(1954), + [anon_sym_u_SQUOTE] = ACTIONS(1954), + [anon_sym_U_SQUOTE] = ACTIONS(1954), + [anon_sym_u8_SQUOTE] = ACTIONS(1954), + [anon_sym_SQUOTE] = ACTIONS(1954), + [anon_sym_L_DQUOTE] = ACTIONS(1954), + [anon_sym_u_DQUOTE] = ACTIONS(1954), + [anon_sym_U_DQUOTE] = ACTIONS(1954), + [anon_sym_u8_DQUOTE] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(1954), + [sym_true] = ACTIONS(1952), + [sym_false] = ACTIONS(1952), + [sym_null] = ACTIONS(1952), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1954), + [anon_sym_ATimport] = ACTIONS(1954), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1952), + [anon_sym_ATcompatibility_alias] = ACTIONS(1954), + [anon_sym_ATprotocol] = ACTIONS(1954), + [anon_sym_ATclass] = ACTIONS(1954), + [anon_sym_ATinterface] = ACTIONS(1954), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1952), + [sym_method_attribute_specifier] = ACTIONS(1952), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1952), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1952), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1952), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1952), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1952), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1952), + [anon_sym_NS_AVAILABLE] = ACTIONS(1952), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1952), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_API_AVAILABLE] = ACTIONS(1952), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1952), + [anon_sym_API_DEPRECATED] = ACTIONS(1952), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1952), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1952), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1952), + [anon_sym___deprecated_msg] = ACTIONS(1952), + [anon_sym___deprecated_enum_msg] = ACTIONS(1952), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1952), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1952), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1952), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1952), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1952), + [anon_sym_ATimplementation] = ACTIONS(1954), + [anon_sym_NS_ENUM] = ACTIONS(1952), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1952), + [anon_sym_NS_OPTIONS] = ACTIONS(1952), + [anon_sym_typeof] = ACTIONS(1952), + [anon_sym___typeof] = ACTIONS(1952), + [anon_sym___typeof__] = ACTIONS(1952), + [sym_self] = ACTIONS(1952), + [sym_super] = ACTIONS(1952), + [sym_nil] = ACTIONS(1952), + [sym_id] = ACTIONS(1952), + [sym_instancetype] = ACTIONS(1952), + [sym_Class] = ACTIONS(1952), + [sym_SEL] = ACTIONS(1952), + [sym_IMP] = ACTIONS(1952), + [sym_BOOL] = ACTIONS(1952), + [sym_auto] = ACTIONS(1952), + [anon_sym_ATautoreleasepool] = ACTIONS(1954), + [anon_sym_ATsynchronized] = ACTIONS(1954), + [anon_sym_ATtry] = ACTIONS(1954), + [anon_sym_ATthrow] = ACTIONS(1954), + [anon_sym_ATselector] = ACTIONS(1954), + [anon_sym_ATencode] = ACTIONS(1954), + [anon_sym_AT] = ACTIONS(1952), + [sym_YES] = ACTIONS(1952), + [sym_NO] = ACTIONS(1952), + [anon_sym___builtin_available] = ACTIONS(1952), + [anon_sym_ATavailable] = ACTIONS(1954), + [anon_sym_va_arg] = ACTIONS(1952), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1460] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1461] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1462] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1463] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1464] = { + [sym_identifier] = ACTIONS(2076), + [aux_sym_preproc_include_token1] = ACTIONS(2078), + [aux_sym_preproc_def_token1] = ACTIONS(2078), + [aux_sym_preproc_if_token1] = ACTIONS(2076), + [aux_sym_preproc_if_token2] = ACTIONS(2076), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2076), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2076), + [anon_sym_LPAREN2] = ACTIONS(2078), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_TILDE] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2076), + [anon_sym_PLUS] = ACTIONS(2076), + [anon_sym_STAR] = ACTIONS(2078), + [anon_sym_CARET] = ACTIONS(2078), + [anon_sym_AMP] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_typedef] = ACTIONS(2076), + [anon_sym_extern] = ACTIONS(2076), + [anon_sym___attribute] = ACTIONS(2076), + [anon_sym___attribute__] = ACTIONS(2076), + [anon_sym___declspec] = ACTIONS(2076), + [anon_sym___cdecl] = ACTIONS(2076), + [anon_sym___clrcall] = ACTIONS(2076), + [anon_sym___stdcall] = ACTIONS(2076), + [anon_sym___fastcall] = ACTIONS(2076), + [anon_sym___thiscall] = ACTIONS(2076), + [anon_sym___vectorcall] = ACTIONS(2076), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2076), + [anon_sym_auto] = ACTIONS(2076), + [anon_sym_register] = ACTIONS(2076), + [anon_sym_inline] = ACTIONS(2076), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2076), + [anon_sym_const] = ACTIONS(2076), + [anon_sym_volatile] = ACTIONS(2076), + [anon_sym_restrict] = ACTIONS(2076), + [anon_sym__Atomic] = ACTIONS(2076), + [anon_sym_in] = ACTIONS(2076), + [anon_sym_out] = ACTIONS(2076), + [anon_sym_inout] = ACTIONS(2076), + [anon_sym_bycopy] = ACTIONS(2076), + [anon_sym_byref] = ACTIONS(2076), + [anon_sym_oneway] = ACTIONS(2076), + [anon_sym__Nullable] = ACTIONS(2076), + [anon_sym__Nonnull] = ACTIONS(2076), + [anon_sym__Nullable_result] = ACTIONS(2076), + [anon_sym__Null_unspecified] = ACTIONS(2076), + [anon_sym___autoreleasing] = ACTIONS(2076), + [anon_sym___nullable] = ACTIONS(2076), + [anon_sym___nonnull] = ACTIONS(2076), + [anon_sym___strong] = ACTIONS(2076), + [anon_sym___weak] = ACTIONS(2076), + [anon_sym___bridge] = ACTIONS(2076), + [anon_sym___bridge_transfer] = ACTIONS(2076), + [anon_sym___bridge_retained] = ACTIONS(2076), + [anon_sym___unsafe_unretained] = ACTIONS(2076), + [anon_sym___block] = ACTIONS(2076), + [anon_sym___kindof] = ACTIONS(2076), + [anon_sym___unused] = ACTIONS(2076), + [anon_sym__Complex] = ACTIONS(2076), + [anon_sym___complex] = ACTIONS(2076), + [anon_sym_IBOutlet] = ACTIONS(2076), + [anon_sym_IBInspectable] = ACTIONS(2076), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2076), + [anon_sym_signed] = ACTIONS(2076), + [anon_sym_unsigned] = ACTIONS(2076), + [anon_sym_long] = ACTIONS(2076), + [anon_sym_short] = ACTIONS(2076), + [sym_primitive_type] = ACTIONS(2076), + [anon_sym_enum] = ACTIONS(2076), + [anon_sym_struct] = ACTIONS(2076), + [anon_sym_union] = ACTIONS(2076), + [anon_sym_if] = ACTIONS(2076), + [anon_sym_switch] = ACTIONS(2076), + [anon_sym_case] = ACTIONS(2076), + [anon_sym_default] = ACTIONS(2076), + [anon_sym_while] = ACTIONS(2076), + [anon_sym_do] = ACTIONS(2076), + [anon_sym_for] = ACTIONS(2076), + [anon_sym_return] = ACTIONS(2076), + [anon_sym_break] = ACTIONS(2076), + [anon_sym_continue] = ACTIONS(2076), + [anon_sym_goto] = ACTIONS(2076), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_PLUS_PLUS] = ACTIONS(2078), + [anon_sym_sizeof] = ACTIONS(2076), + [sym_number_literal] = ACTIONS(2078), + [anon_sym_L_SQUOTE] = ACTIONS(2078), + [anon_sym_u_SQUOTE] = ACTIONS(2078), + [anon_sym_U_SQUOTE] = ACTIONS(2078), + [anon_sym_u8_SQUOTE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2078), + [anon_sym_L_DQUOTE] = ACTIONS(2078), + [anon_sym_u_DQUOTE] = ACTIONS(2078), + [anon_sym_U_DQUOTE] = ACTIONS(2078), + [anon_sym_u8_DQUOTE] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [sym_true] = ACTIONS(2076), + [sym_false] = ACTIONS(2076), + [sym_null] = ACTIONS(2076), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2078), + [anon_sym_ATimport] = ACTIONS(2078), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2076), + [anon_sym_ATcompatibility_alias] = ACTIONS(2078), + [anon_sym_ATprotocol] = ACTIONS(2078), + [anon_sym_ATclass] = ACTIONS(2078), + [anon_sym_ATinterface] = ACTIONS(2078), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2076), + [sym_method_attribute_specifier] = ACTIONS(2076), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2076), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2076), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2076), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2076), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2076), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2076), + [anon_sym_NS_AVAILABLE] = ACTIONS(2076), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2076), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2076), + [anon_sym_API_AVAILABLE] = ACTIONS(2076), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2076), + [anon_sym_API_DEPRECATED] = ACTIONS(2076), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2076), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2076), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2076), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2076), + [anon_sym___deprecated_msg] = ACTIONS(2076), + [anon_sym___deprecated_enum_msg] = ACTIONS(2076), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2076), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2076), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2076), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2076), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2076), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2076), + [anon_sym_ATimplementation] = ACTIONS(2078), + [anon_sym_NS_ENUM] = ACTIONS(2076), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2076), + [anon_sym_NS_OPTIONS] = ACTIONS(2076), + [anon_sym_typeof] = ACTIONS(2076), + [anon_sym___typeof] = ACTIONS(2076), + [anon_sym___typeof__] = ACTIONS(2076), + [sym_self] = ACTIONS(2076), + [sym_super] = ACTIONS(2076), + [sym_nil] = ACTIONS(2076), + [sym_id] = ACTIONS(2076), + [sym_instancetype] = ACTIONS(2076), + [sym_Class] = ACTIONS(2076), + [sym_SEL] = ACTIONS(2076), + [sym_IMP] = ACTIONS(2076), + [sym_BOOL] = ACTIONS(2076), + [sym_auto] = ACTIONS(2076), + [anon_sym_ATautoreleasepool] = ACTIONS(2078), + [anon_sym_ATsynchronized] = ACTIONS(2078), + [anon_sym_ATtry] = ACTIONS(2078), + [anon_sym_ATthrow] = ACTIONS(2078), + [anon_sym_ATselector] = ACTIONS(2078), + [anon_sym_ATencode] = ACTIONS(2078), + [anon_sym_AT] = ACTIONS(2076), + [sym_YES] = ACTIONS(2076), + [sym_NO] = ACTIONS(2076), + [anon_sym___builtin_available] = ACTIONS(2076), + [anon_sym_ATavailable] = ACTIONS(2078), + [anon_sym_va_arg] = ACTIONS(2076), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1465] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1466] = { + [sym_identifier] = ACTIONS(1676), + [aux_sym_preproc_include_token1] = ACTIONS(1678), + [aux_sym_preproc_def_token1] = ACTIONS(1678), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_TILDE] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym___attribute] = ACTIONS(1676), + [anon_sym___attribute__] = ACTIONS(1676), + [anon_sym___declspec] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_auto] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_inline] = ACTIONS(1676), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_volatile] = ACTIONS(1676), + [anon_sym_restrict] = ACTIONS(1676), + [anon_sym__Atomic] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_out] = ACTIONS(1676), + [anon_sym_inout] = ACTIONS(1676), + [anon_sym_bycopy] = ACTIONS(1676), + [anon_sym_byref] = ACTIONS(1676), + [anon_sym_oneway] = ACTIONS(1676), + [anon_sym__Nullable] = ACTIONS(1676), + [anon_sym__Nonnull] = ACTIONS(1676), + [anon_sym__Nullable_result] = ACTIONS(1676), + [anon_sym__Null_unspecified] = ACTIONS(1676), + [anon_sym___autoreleasing] = ACTIONS(1676), + [anon_sym___nullable] = ACTIONS(1676), + [anon_sym___nonnull] = ACTIONS(1676), + [anon_sym___strong] = ACTIONS(1676), + [anon_sym___weak] = ACTIONS(1676), + [anon_sym___bridge] = ACTIONS(1676), + [anon_sym___bridge_transfer] = ACTIONS(1676), + [anon_sym___bridge_retained] = ACTIONS(1676), + [anon_sym___unsafe_unretained] = ACTIONS(1676), + [anon_sym___block] = ACTIONS(1676), + [anon_sym___kindof] = ACTIONS(1676), + [anon_sym___unused] = ACTIONS(1676), + [anon_sym__Complex] = ACTIONS(1676), + [anon_sym___complex] = ACTIONS(1676), + [anon_sym_IBOutlet] = ACTIONS(1676), + [anon_sym_IBInspectable] = ACTIONS(1676), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1676), + [anon_sym_signed] = ACTIONS(1676), + [anon_sym_unsigned] = ACTIONS(1676), + [anon_sym_long] = ACTIONS(1676), + [anon_sym_short] = ACTIONS(1676), + [sym_primitive_type] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1676), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_goto] = ACTIONS(1676), + [anon_sym_DASH_DASH] = ACTIONS(1678), + [anon_sym_PLUS_PLUS] = ACTIONS(1678), + [anon_sym_sizeof] = ACTIONS(1676), + [sym_number_literal] = ACTIONS(1678), + [anon_sym_L_SQUOTE] = ACTIONS(1678), + [anon_sym_u_SQUOTE] = ACTIONS(1678), + [anon_sym_U_SQUOTE] = ACTIONS(1678), + [anon_sym_u8_SQUOTE] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_L_DQUOTE] = ACTIONS(1678), + [anon_sym_u_DQUOTE] = ACTIONS(1678), + [anon_sym_U_DQUOTE] = ACTIONS(1678), + [anon_sym_u8_DQUOTE] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym_true] = ACTIONS(1676), + [sym_false] = ACTIONS(1676), + [sym_null] = ACTIONS(1676), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1678), + [anon_sym_ATimport] = ACTIONS(1678), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1676), + [anon_sym_ATcompatibility_alias] = ACTIONS(1678), + [anon_sym_ATprotocol] = ACTIONS(1678), + [anon_sym_ATclass] = ACTIONS(1678), + [anon_sym_ATinterface] = ACTIONS(1678), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1676), + [sym_method_attribute_specifier] = ACTIONS(1676), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1676), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1676), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE] = ACTIONS(1676), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1676), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_API_AVAILABLE] = ACTIONS(1676), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_API_DEPRECATED] = ACTIONS(1676), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1676), + [anon_sym___deprecated_msg] = ACTIONS(1676), + [anon_sym___deprecated_enum_msg] = ACTIONS(1676), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1676), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1676), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1676), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1676), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1676), + [anon_sym_ATimplementation] = ACTIONS(1678), + [anon_sym_NS_ENUM] = ACTIONS(1676), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1676), + [anon_sym_NS_OPTIONS] = ACTIONS(1676), + [anon_sym_typeof] = ACTIONS(1676), + [anon_sym___typeof] = ACTIONS(1676), + [anon_sym___typeof__] = ACTIONS(1676), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_nil] = ACTIONS(1676), + [sym_id] = ACTIONS(1676), + [sym_instancetype] = ACTIONS(1676), + [sym_Class] = ACTIONS(1676), + [sym_SEL] = ACTIONS(1676), + [sym_IMP] = ACTIONS(1676), + [sym_BOOL] = ACTIONS(1676), + [sym_auto] = ACTIONS(1676), + [anon_sym_ATautoreleasepool] = ACTIONS(1678), + [anon_sym_ATsynchronized] = ACTIONS(1678), + [anon_sym_ATtry] = ACTIONS(1678), + [anon_sym_ATthrow] = ACTIONS(1678), + [anon_sym_ATselector] = ACTIONS(1678), + [anon_sym_ATencode] = ACTIONS(1678), + [anon_sym_AT] = ACTIONS(1676), + [sym_YES] = ACTIONS(1676), + [sym_NO] = ACTIONS(1676), + [anon_sym___builtin_available] = ACTIONS(1676), + [anon_sym_ATavailable] = ACTIONS(1678), + [anon_sym_va_arg] = ACTIONS(1676), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1467] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1468] = { + [sym_identifier] = ACTIONS(1848), + [aux_sym_preproc_include_token1] = ACTIONS(1850), + [aux_sym_preproc_def_token1] = ACTIONS(1850), + [aux_sym_preproc_if_token1] = ACTIONS(1848), + [aux_sym_preproc_if_token2] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1848), + [anon_sym_LPAREN2] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_CARET] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_typedef] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym___attribute] = ACTIONS(1848), + [anon_sym___attribute__] = ACTIONS(1848), + [anon_sym___declspec] = ACTIONS(1848), + [anon_sym___cdecl] = ACTIONS(1848), + [anon_sym___clrcall] = ACTIONS(1848), + [anon_sym___stdcall] = ACTIONS(1848), + [anon_sym___fastcall] = ACTIONS(1848), + [anon_sym___thiscall] = ACTIONS(1848), + [anon_sym___vectorcall] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_auto] = ACTIONS(1848), + [anon_sym_register] = ACTIONS(1848), + [anon_sym_inline] = ACTIONS(1848), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_volatile] = ACTIONS(1848), + [anon_sym_restrict] = ACTIONS(1848), + [anon_sym__Atomic] = ACTIONS(1848), + [anon_sym_in] = ACTIONS(1848), + [anon_sym_out] = ACTIONS(1848), + [anon_sym_inout] = ACTIONS(1848), + [anon_sym_bycopy] = ACTIONS(1848), + [anon_sym_byref] = ACTIONS(1848), + [anon_sym_oneway] = ACTIONS(1848), + [anon_sym__Nullable] = ACTIONS(1848), + [anon_sym__Nonnull] = ACTIONS(1848), + [anon_sym__Nullable_result] = ACTIONS(1848), + [anon_sym__Null_unspecified] = ACTIONS(1848), + [anon_sym___autoreleasing] = ACTIONS(1848), + [anon_sym___nullable] = ACTIONS(1848), + [anon_sym___nonnull] = ACTIONS(1848), + [anon_sym___strong] = ACTIONS(1848), + [anon_sym___weak] = ACTIONS(1848), + [anon_sym___bridge] = ACTIONS(1848), + [anon_sym___bridge_transfer] = ACTIONS(1848), + [anon_sym___bridge_retained] = ACTIONS(1848), + [anon_sym___unsafe_unretained] = ACTIONS(1848), + [anon_sym___block] = ACTIONS(1848), + [anon_sym___kindof] = ACTIONS(1848), + [anon_sym___unused] = ACTIONS(1848), + [anon_sym__Complex] = ACTIONS(1848), + [anon_sym___complex] = ACTIONS(1848), + [anon_sym_IBOutlet] = ACTIONS(1848), + [anon_sym_IBInspectable] = ACTIONS(1848), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1848), + [anon_sym_signed] = ACTIONS(1848), + [anon_sym_unsigned] = ACTIONS(1848), + [anon_sym_long] = ACTIONS(1848), + [anon_sym_short] = ACTIONS(1848), + [sym_primitive_type] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_switch] = ACTIONS(1848), + [anon_sym_case] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_do] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_goto] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_PLUS_PLUS] = ACTIONS(1850), + [anon_sym_sizeof] = ACTIONS(1848), + [sym_number_literal] = ACTIONS(1850), + [anon_sym_L_SQUOTE] = ACTIONS(1850), + [anon_sym_u_SQUOTE] = ACTIONS(1850), + [anon_sym_U_SQUOTE] = ACTIONS(1850), + [anon_sym_u8_SQUOTE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1850), + [anon_sym_L_DQUOTE] = ACTIONS(1850), + [anon_sym_u_DQUOTE] = ACTIONS(1850), + [anon_sym_U_DQUOTE] = ACTIONS(1850), + [anon_sym_u8_DQUOTE] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym_true] = ACTIONS(1848), + [sym_false] = ACTIONS(1848), + [sym_null] = ACTIONS(1848), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1850), + [anon_sym_ATimport] = ACTIONS(1850), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1848), + [anon_sym_ATcompatibility_alias] = ACTIONS(1850), + [anon_sym_ATprotocol] = ACTIONS(1850), + [anon_sym_ATclass] = ACTIONS(1850), + [anon_sym_ATinterface] = ACTIONS(1850), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1848), + [sym_method_attribute_specifier] = ACTIONS(1848), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1848), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1848), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE] = ACTIONS(1848), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1848), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_API_AVAILABLE] = ACTIONS(1848), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_API_DEPRECATED] = ACTIONS(1848), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1848), + [anon_sym___deprecated_msg] = ACTIONS(1848), + [anon_sym___deprecated_enum_msg] = ACTIONS(1848), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1848), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1848), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1848), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1848), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1848), + [anon_sym_ATimplementation] = ACTIONS(1850), + [anon_sym_NS_ENUM] = ACTIONS(1848), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1848), + [anon_sym_NS_OPTIONS] = ACTIONS(1848), + [anon_sym_typeof] = ACTIONS(1848), + [anon_sym___typeof] = ACTIONS(1848), + [anon_sym___typeof__] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_nil] = ACTIONS(1848), + [sym_id] = ACTIONS(1848), + [sym_instancetype] = ACTIONS(1848), + [sym_Class] = ACTIONS(1848), + [sym_SEL] = ACTIONS(1848), + [sym_IMP] = ACTIONS(1848), + [sym_BOOL] = ACTIONS(1848), + [sym_auto] = ACTIONS(1848), + [anon_sym_ATautoreleasepool] = ACTIONS(1850), + [anon_sym_ATsynchronized] = ACTIONS(1850), + [anon_sym_ATtry] = ACTIONS(1850), + [anon_sym_ATthrow] = ACTIONS(1850), + [anon_sym_ATselector] = ACTIONS(1850), + [anon_sym_ATencode] = ACTIONS(1850), + [anon_sym_AT] = ACTIONS(1848), + [sym_YES] = ACTIONS(1848), + [sym_NO] = ACTIONS(1848), + [anon_sym___builtin_available] = ACTIONS(1848), + [anon_sym_ATavailable] = ACTIONS(1850), + [anon_sym_va_arg] = ACTIONS(1848), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1469] = { + [sym_identifier] = ACTIONS(1720), + [aux_sym_preproc_include_token1] = ACTIONS(1722), + [aux_sym_preproc_def_token1] = ACTIONS(1722), + [aux_sym_preproc_if_token1] = ACTIONS(1720), + [aux_sym_preproc_if_token2] = ACTIONS(1720), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1720), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1720), + [anon_sym_LPAREN2] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_CARET] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_typedef] = ACTIONS(1720), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym___attribute] = ACTIONS(1720), + [anon_sym___attribute__] = ACTIONS(1720), + [anon_sym___declspec] = ACTIONS(1720), + [anon_sym___cdecl] = ACTIONS(1720), + [anon_sym___clrcall] = ACTIONS(1720), + [anon_sym___stdcall] = ACTIONS(1720), + [anon_sym___fastcall] = ACTIONS(1720), + [anon_sym___thiscall] = ACTIONS(1720), + [anon_sym___vectorcall] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_static] = ACTIONS(1720), + [anon_sym_auto] = ACTIONS(1720), + [anon_sym_register] = ACTIONS(1720), + [anon_sym_inline] = ACTIONS(1720), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_volatile] = ACTIONS(1720), + [anon_sym_restrict] = ACTIONS(1720), + [anon_sym__Atomic] = ACTIONS(1720), + [anon_sym_in] = ACTIONS(1720), + [anon_sym_out] = ACTIONS(1720), + [anon_sym_inout] = ACTIONS(1720), + [anon_sym_bycopy] = ACTIONS(1720), + [anon_sym_byref] = ACTIONS(1720), + [anon_sym_oneway] = ACTIONS(1720), + [anon_sym__Nullable] = ACTIONS(1720), + [anon_sym__Nonnull] = ACTIONS(1720), + [anon_sym__Nullable_result] = ACTIONS(1720), + [anon_sym__Null_unspecified] = ACTIONS(1720), + [anon_sym___autoreleasing] = ACTIONS(1720), + [anon_sym___nullable] = ACTIONS(1720), + [anon_sym___nonnull] = ACTIONS(1720), + [anon_sym___strong] = ACTIONS(1720), + [anon_sym___weak] = ACTIONS(1720), + [anon_sym___bridge] = ACTIONS(1720), + [anon_sym___bridge_transfer] = ACTIONS(1720), + [anon_sym___bridge_retained] = ACTIONS(1720), + [anon_sym___unsafe_unretained] = ACTIONS(1720), + [anon_sym___block] = ACTIONS(1720), + [anon_sym___kindof] = ACTIONS(1720), + [anon_sym___unused] = ACTIONS(1720), + [anon_sym__Complex] = ACTIONS(1720), + [anon_sym___complex] = ACTIONS(1720), + [anon_sym_IBOutlet] = ACTIONS(1720), + [anon_sym_IBInspectable] = ACTIONS(1720), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1720), + [anon_sym_signed] = ACTIONS(1720), + [anon_sym_unsigned] = ACTIONS(1720), + [anon_sym_long] = ACTIONS(1720), + [anon_sym_short] = ACTIONS(1720), + [sym_primitive_type] = ACTIONS(1720), + [anon_sym_enum] = ACTIONS(1720), + [anon_sym_struct] = ACTIONS(1720), + [anon_sym_union] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_case] = ACTIONS(1720), + [anon_sym_default] = ACTIONS(1720), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_do] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_continue] = ACTIONS(1720), + [anon_sym_goto] = ACTIONS(1720), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_sizeof] = ACTIONS(1720), + [sym_number_literal] = ACTIONS(1722), + [anon_sym_L_SQUOTE] = ACTIONS(1722), + [anon_sym_u_SQUOTE] = ACTIONS(1722), + [anon_sym_U_SQUOTE] = ACTIONS(1722), + [anon_sym_u8_SQUOTE] = ACTIONS(1722), + [anon_sym_SQUOTE] = ACTIONS(1722), + [anon_sym_L_DQUOTE] = ACTIONS(1722), + [anon_sym_u_DQUOTE] = ACTIONS(1722), + [anon_sym_U_DQUOTE] = ACTIONS(1722), + [anon_sym_u8_DQUOTE] = ACTIONS(1722), + [anon_sym_DQUOTE] = ACTIONS(1722), + [sym_true] = ACTIONS(1720), + [sym_false] = ACTIONS(1720), + [sym_null] = ACTIONS(1720), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1722), + [anon_sym_ATimport] = ACTIONS(1722), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1720), + [anon_sym_ATcompatibility_alias] = ACTIONS(1722), + [anon_sym_ATprotocol] = ACTIONS(1722), + [anon_sym_ATclass] = ACTIONS(1722), + [anon_sym_ATinterface] = ACTIONS(1722), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1720), + [sym_method_attribute_specifier] = ACTIONS(1720), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1720), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1720), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1720), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1720), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1720), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1720), + [anon_sym_NS_AVAILABLE] = ACTIONS(1720), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1720), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1720), + [anon_sym_API_AVAILABLE] = ACTIONS(1720), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1720), + [anon_sym_API_DEPRECATED] = ACTIONS(1720), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1720), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1720), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1720), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1720), + [anon_sym___deprecated_msg] = ACTIONS(1720), + [anon_sym___deprecated_enum_msg] = ACTIONS(1720), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1720), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1720), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1720), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1720), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1720), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1720), + [anon_sym_ATimplementation] = ACTIONS(1722), + [anon_sym_NS_ENUM] = ACTIONS(1720), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1720), + [anon_sym_NS_OPTIONS] = ACTIONS(1720), + [anon_sym_typeof] = ACTIONS(1720), + [anon_sym___typeof] = ACTIONS(1720), + [anon_sym___typeof__] = ACTIONS(1720), + [sym_self] = ACTIONS(1720), + [sym_super] = ACTIONS(1720), + [sym_nil] = ACTIONS(1720), + [sym_id] = ACTIONS(1720), + [sym_instancetype] = ACTIONS(1720), + [sym_Class] = ACTIONS(1720), + [sym_SEL] = ACTIONS(1720), + [sym_IMP] = ACTIONS(1720), + [sym_BOOL] = ACTIONS(1720), + [sym_auto] = ACTIONS(1720), + [anon_sym_ATautoreleasepool] = ACTIONS(1722), + [anon_sym_ATsynchronized] = ACTIONS(1722), + [anon_sym_ATtry] = ACTIONS(1722), + [anon_sym_ATthrow] = ACTIONS(1722), + [anon_sym_ATselector] = ACTIONS(1722), + [anon_sym_ATencode] = ACTIONS(1722), + [anon_sym_AT] = ACTIONS(1720), + [sym_YES] = ACTIONS(1720), + [sym_NO] = ACTIONS(1720), + [anon_sym___builtin_available] = ACTIONS(1720), + [anon_sym_ATavailable] = ACTIONS(1722), + [anon_sym_va_arg] = ACTIONS(1720), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1470] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1471] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1472] = { + [sym_identifier] = ACTIONS(1840), + [aux_sym_preproc_include_token1] = ACTIONS(1842), + [aux_sym_preproc_def_token1] = ACTIONS(1842), + [aux_sym_preproc_if_token1] = ACTIONS(1840), + [aux_sym_preproc_if_token2] = ACTIONS(1840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1840), + [anon_sym_LPAREN2] = ACTIONS(1842), + [anon_sym_BANG] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_PLUS] = ACTIONS(1840), + [anon_sym_STAR] = ACTIONS(1842), + [anon_sym_CARET] = ACTIONS(1842), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_typedef] = ACTIONS(1840), + [anon_sym_extern] = ACTIONS(1840), + [anon_sym___attribute] = ACTIONS(1840), + [anon_sym___attribute__] = ACTIONS(1840), + [anon_sym___declspec] = ACTIONS(1840), + [anon_sym___cdecl] = ACTIONS(1840), + [anon_sym___clrcall] = ACTIONS(1840), + [anon_sym___stdcall] = ACTIONS(1840), + [anon_sym___fastcall] = ACTIONS(1840), + [anon_sym___thiscall] = ACTIONS(1840), + [anon_sym___vectorcall] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_static] = ACTIONS(1840), + [anon_sym_auto] = ACTIONS(1840), + [anon_sym_register] = ACTIONS(1840), + [anon_sym_inline] = ACTIONS(1840), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [anon_sym_volatile] = ACTIONS(1840), + [anon_sym_restrict] = ACTIONS(1840), + [anon_sym__Atomic] = ACTIONS(1840), + [anon_sym_in] = ACTIONS(1840), + [anon_sym_out] = ACTIONS(1840), + [anon_sym_inout] = ACTIONS(1840), + [anon_sym_bycopy] = ACTIONS(1840), + [anon_sym_byref] = ACTIONS(1840), + [anon_sym_oneway] = ACTIONS(1840), + [anon_sym__Nullable] = ACTIONS(1840), + [anon_sym__Nonnull] = ACTIONS(1840), + [anon_sym__Nullable_result] = ACTIONS(1840), + [anon_sym__Null_unspecified] = ACTIONS(1840), + [anon_sym___autoreleasing] = ACTIONS(1840), + [anon_sym___nullable] = ACTIONS(1840), + [anon_sym___nonnull] = ACTIONS(1840), + [anon_sym___strong] = ACTIONS(1840), + [anon_sym___weak] = ACTIONS(1840), + [anon_sym___bridge] = ACTIONS(1840), + [anon_sym___bridge_transfer] = ACTIONS(1840), + [anon_sym___bridge_retained] = ACTIONS(1840), + [anon_sym___unsafe_unretained] = ACTIONS(1840), + [anon_sym___block] = ACTIONS(1840), + [anon_sym___kindof] = ACTIONS(1840), + [anon_sym___unused] = ACTIONS(1840), + [anon_sym__Complex] = ACTIONS(1840), + [anon_sym___complex] = ACTIONS(1840), + [anon_sym_IBOutlet] = ACTIONS(1840), + [anon_sym_IBInspectable] = ACTIONS(1840), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1840), + [anon_sym_signed] = ACTIONS(1840), + [anon_sym_unsigned] = ACTIONS(1840), + [anon_sym_long] = ACTIONS(1840), + [anon_sym_short] = ACTIONS(1840), + [sym_primitive_type] = ACTIONS(1840), + [anon_sym_enum] = ACTIONS(1840), + [anon_sym_struct] = ACTIONS(1840), + [anon_sym_union] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_switch] = ACTIONS(1840), + [anon_sym_case] = ACTIONS(1840), + [anon_sym_default] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_do] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_goto] = ACTIONS(1840), + [anon_sym_DASH_DASH] = ACTIONS(1842), + [anon_sym_PLUS_PLUS] = ACTIONS(1842), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_number_literal] = ACTIONS(1842), + [anon_sym_L_SQUOTE] = ACTIONS(1842), + [anon_sym_u_SQUOTE] = ACTIONS(1842), + [anon_sym_U_SQUOTE] = ACTIONS(1842), + [anon_sym_u8_SQUOTE] = ACTIONS(1842), + [anon_sym_SQUOTE] = ACTIONS(1842), + [anon_sym_L_DQUOTE] = ACTIONS(1842), + [anon_sym_u_DQUOTE] = ACTIONS(1842), + [anon_sym_U_DQUOTE] = ACTIONS(1842), + [anon_sym_u8_DQUOTE] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [sym_null] = ACTIONS(1840), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1842), + [anon_sym_ATimport] = ACTIONS(1842), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1840), + [anon_sym_ATcompatibility_alias] = ACTIONS(1842), + [anon_sym_ATprotocol] = ACTIONS(1842), + [anon_sym_ATclass] = ACTIONS(1842), + [anon_sym_ATinterface] = ACTIONS(1842), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1840), + [sym_method_attribute_specifier] = ACTIONS(1840), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1840), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1840), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1840), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1840), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1840), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1840), + [anon_sym_NS_AVAILABLE] = ACTIONS(1840), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1840), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_API_AVAILABLE] = ACTIONS(1840), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1840), + [anon_sym_API_DEPRECATED] = ACTIONS(1840), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1840), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1840), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1840), + [anon_sym___deprecated_msg] = ACTIONS(1840), + [anon_sym___deprecated_enum_msg] = ACTIONS(1840), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1840), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1840), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1840), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1840), + [anon_sym_ATimplementation] = ACTIONS(1842), + [anon_sym_NS_ENUM] = ACTIONS(1840), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1840), + [anon_sym_NS_OPTIONS] = ACTIONS(1840), + [anon_sym_typeof] = ACTIONS(1840), + [anon_sym___typeof] = ACTIONS(1840), + [anon_sym___typeof__] = ACTIONS(1840), + [sym_self] = ACTIONS(1840), + [sym_super] = ACTIONS(1840), + [sym_nil] = ACTIONS(1840), + [sym_id] = ACTIONS(1840), + [sym_instancetype] = ACTIONS(1840), + [sym_Class] = ACTIONS(1840), + [sym_SEL] = ACTIONS(1840), + [sym_IMP] = ACTIONS(1840), + [sym_BOOL] = ACTIONS(1840), + [sym_auto] = ACTIONS(1840), + [anon_sym_ATautoreleasepool] = ACTIONS(1842), + [anon_sym_ATsynchronized] = ACTIONS(1842), + [anon_sym_ATtry] = ACTIONS(1842), + [anon_sym_ATthrow] = ACTIONS(1842), + [anon_sym_ATselector] = ACTIONS(1842), + [anon_sym_ATencode] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(1840), + [sym_YES] = ACTIONS(1840), + [sym_NO] = ACTIONS(1840), + [anon_sym___builtin_available] = ACTIONS(1840), + [anon_sym_ATavailable] = ACTIONS(1842), + [anon_sym_va_arg] = ACTIONS(1840), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1473] = { + [sym_identifier] = ACTIONS(1840), + [aux_sym_preproc_include_token1] = ACTIONS(1842), + [aux_sym_preproc_def_token1] = ACTIONS(1842), + [aux_sym_preproc_if_token1] = ACTIONS(1840), + [aux_sym_preproc_if_token2] = ACTIONS(1840), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1840), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1840), + [anon_sym_LPAREN2] = ACTIONS(1842), + [anon_sym_BANG] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1840), + [anon_sym_PLUS] = ACTIONS(1840), + [anon_sym_STAR] = ACTIONS(1842), + [anon_sym_CARET] = ACTIONS(1842), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_typedef] = ACTIONS(1840), + [anon_sym_extern] = ACTIONS(1840), + [anon_sym___attribute] = ACTIONS(1840), + [anon_sym___attribute__] = ACTIONS(1840), + [anon_sym___declspec] = ACTIONS(1840), + [anon_sym___cdecl] = ACTIONS(1840), + [anon_sym___clrcall] = ACTIONS(1840), + [anon_sym___stdcall] = ACTIONS(1840), + [anon_sym___fastcall] = ACTIONS(1840), + [anon_sym___thiscall] = ACTIONS(1840), + [anon_sym___vectorcall] = ACTIONS(1840), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_static] = ACTIONS(1840), + [anon_sym_auto] = ACTIONS(1840), + [anon_sym_register] = ACTIONS(1840), + [anon_sym_inline] = ACTIONS(1840), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [anon_sym_volatile] = ACTIONS(1840), + [anon_sym_restrict] = ACTIONS(1840), + [anon_sym__Atomic] = ACTIONS(1840), + [anon_sym_in] = ACTIONS(1840), + [anon_sym_out] = ACTIONS(1840), + [anon_sym_inout] = ACTIONS(1840), + [anon_sym_bycopy] = ACTIONS(1840), + [anon_sym_byref] = ACTIONS(1840), + [anon_sym_oneway] = ACTIONS(1840), + [anon_sym__Nullable] = ACTIONS(1840), + [anon_sym__Nonnull] = ACTIONS(1840), + [anon_sym__Nullable_result] = ACTIONS(1840), + [anon_sym__Null_unspecified] = ACTIONS(1840), + [anon_sym___autoreleasing] = ACTIONS(1840), + [anon_sym___nullable] = ACTIONS(1840), + [anon_sym___nonnull] = ACTIONS(1840), + [anon_sym___strong] = ACTIONS(1840), + [anon_sym___weak] = ACTIONS(1840), + [anon_sym___bridge] = ACTIONS(1840), + [anon_sym___bridge_transfer] = ACTIONS(1840), + [anon_sym___bridge_retained] = ACTIONS(1840), + [anon_sym___unsafe_unretained] = ACTIONS(1840), + [anon_sym___block] = ACTIONS(1840), + [anon_sym___kindof] = ACTIONS(1840), + [anon_sym___unused] = ACTIONS(1840), + [anon_sym__Complex] = ACTIONS(1840), + [anon_sym___complex] = ACTIONS(1840), + [anon_sym_IBOutlet] = ACTIONS(1840), + [anon_sym_IBInspectable] = ACTIONS(1840), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1840), + [anon_sym_signed] = ACTIONS(1840), + [anon_sym_unsigned] = ACTIONS(1840), + [anon_sym_long] = ACTIONS(1840), + [anon_sym_short] = ACTIONS(1840), + [sym_primitive_type] = ACTIONS(1840), + [anon_sym_enum] = ACTIONS(1840), + [anon_sym_struct] = ACTIONS(1840), + [anon_sym_union] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_switch] = ACTIONS(1840), + [anon_sym_case] = ACTIONS(1840), + [anon_sym_default] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_do] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_goto] = ACTIONS(1840), + [anon_sym_DASH_DASH] = ACTIONS(1842), + [anon_sym_PLUS_PLUS] = ACTIONS(1842), + [anon_sym_sizeof] = ACTIONS(1840), + [sym_number_literal] = ACTIONS(1842), + [anon_sym_L_SQUOTE] = ACTIONS(1842), + [anon_sym_u_SQUOTE] = ACTIONS(1842), + [anon_sym_U_SQUOTE] = ACTIONS(1842), + [anon_sym_u8_SQUOTE] = ACTIONS(1842), + [anon_sym_SQUOTE] = ACTIONS(1842), + [anon_sym_L_DQUOTE] = ACTIONS(1842), + [anon_sym_u_DQUOTE] = ACTIONS(1842), + [anon_sym_U_DQUOTE] = ACTIONS(1842), + [anon_sym_u8_DQUOTE] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [sym_true] = ACTIONS(1840), + [sym_false] = ACTIONS(1840), + [sym_null] = ACTIONS(1840), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1842), + [anon_sym_ATimport] = ACTIONS(1842), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1840), + [anon_sym_ATcompatibility_alias] = ACTIONS(1842), + [anon_sym_ATprotocol] = ACTIONS(1842), + [anon_sym_ATclass] = ACTIONS(1842), + [anon_sym_ATinterface] = ACTIONS(1842), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1840), + [sym_method_attribute_specifier] = ACTIONS(1840), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1840), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1840), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1840), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1840), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1840), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1840), + [anon_sym_NS_AVAILABLE] = ACTIONS(1840), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1840), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_API_AVAILABLE] = ACTIONS(1840), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1840), + [anon_sym_API_DEPRECATED] = ACTIONS(1840), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1840), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1840), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1840), + [anon_sym___deprecated_msg] = ACTIONS(1840), + [anon_sym___deprecated_enum_msg] = ACTIONS(1840), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1840), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1840), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1840), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1840), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1840), + [anon_sym_ATimplementation] = ACTIONS(1842), + [anon_sym_NS_ENUM] = ACTIONS(1840), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1840), + [anon_sym_NS_OPTIONS] = ACTIONS(1840), + [anon_sym_typeof] = ACTIONS(1840), + [anon_sym___typeof] = ACTIONS(1840), + [anon_sym___typeof__] = ACTIONS(1840), + [sym_self] = ACTIONS(1840), + [sym_super] = ACTIONS(1840), + [sym_nil] = ACTIONS(1840), + [sym_id] = ACTIONS(1840), + [sym_instancetype] = ACTIONS(1840), + [sym_Class] = ACTIONS(1840), + [sym_SEL] = ACTIONS(1840), + [sym_IMP] = ACTIONS(1840), + [sym_BOOL] = ACTIONS(1840), + [sym_auto] = ACTIONS(1840), + [anon_sym_ATautoreleasepool] = ACTIONS(1842), + [anon_sym_ATsynchronized] = ACTIONS(1842), + [anon_sym_ATtry] = ACTIONS(1842), + [anon_sym_ATthrow] = ACTIONS(1842), + [anon_sym_ATselector] = ACTIONS(1842), + [anon_sym_ATencode] = ACTIONS(1842), + [anon_sym_AT] = ACTIONS(1840), + [sym_YES] = ACTIONS(1840), + [sym_NO] = ACTIONS(1840), + [anon_sym___builtin_available] = ACTIONS(1840), + [anon_sym_ATavailable] = ACTIONS(1842), + [anon_sym_va_arg] = ACTIONS(1840), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1474] = { + [sym_identifier] = ACTIONS(2080), + [aux_sym_preproc_include_token1] = ACTIONS(2082), + [aux_sym_preproc_def_token1] = ACTIONS(2082), + [aux_sym_preproc_if_token1] = ACTIONS(2080), + [aux_sym_preproc_if_token2] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2080), + [anon_sym_LPAREN2] = ACTIONS(2082), + [anon_sym_BANG] = ACTIONS(2082), + [anon_sym_TILDE] = ACTIONS(2082), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(2082), + [anon_sym_CARET] = ACTIONS(2082), + [anon_sym_AMP] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_typedef] = ACTIONS(2080), + [anon_sym_extern] = ACTIONS(2080), + [anon_sym___attribute] = ACTIONS(2080), + [anon_sym___attribute__] = ACTIONS(2080), + [anon_sym___declspec] = ACTIONS(2080), + [anon_sym___cdecl] = ACTIONS(2080), + [anon_sym___clrcall] = ACTIONS(2080), + [anon_sym___stdcall] = ACTIONS(2080), + [anon_sym___fastcall] = ACTIONS(2080), + [anon_sym___thiscall] = ACTIONS(2080), + [anon_sym___vectorcall] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_auto] = ACTIONS(2080), + [anon_sym_register] = ACTIONS(2080), + [anon_sym_inline] = ACTIONS(2080), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_volatile] = ACTIONS(2080), + [anon_sym_restrict] = ACTIONS(2080), + [anon_sym__Atomic] = ACTIONS(2080), + [anon_sym_in] = ACTIONS(2080), + [anon_sym_out] = ACTIONS(2080), + [anon_sym_inout] = ACTIONS(2080), + [anon_sym_bycopy] = ACTIONS(2080), + [anon_sym_byref] = ACTIONS(2080), + [anon_sym_oneway] = ACTIONS(2080), + [anon_sym__Nullable] = ACTIONS(2080), + [anon_sym__Nonnull] = ACTIONS(2080), + [anon_sym__Nullable_result] = ACTIONS(2080), + [anon_sym__Null_unspecified] = ACTIONS(2080), + [anon_sym___autoreleasing] = ACTIONS(2080), + [anon_sym___nullable] = ACTIONS(2080), + [anon_sym___nonnull] = ACTIONS(2080), + [anon_sym___strong] = ACTIONS(2080), + [anon_sym___weak] = ACTIONS(2080), + [anon_sym___bridge] = ACTIONS(2080), + [anon_sym___bridge_transfer] = ACTIONS(2080), + [anon_sym___bridge_retained] = ACTIONS(2080), + [anon_sym___unsafe_unretained] = ACTIONS(2080), + [anon_sym___block] = ACTIONS(2080), + [anon_sym___kindof] = ACTIONS(2080), + [anon_sym___unused] = ACTIONS(2080), + [anon_sym__Complex] = ACTIONS(2080), + [anon_sym___complex] = ACTIONS(2080), + [anon_sym_IBOutlet] = ACTIONS(2080), + [anon_sym_IBInspectable] = ACTIONS(2080), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2080), + [anon_sym_signed] = ACTIONS(2080), + [anon_sym_unsigned] = ACTIONS(2080), + [anon_sym_long] = ACTIONS(2080), + [anon_sym_short] = ACTIONS(2080), + [sym_primitive_type] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), + [anon_sym_struct] = ACTIONS(2080), + [anon_sym_union] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_switch] = ACTIONS(2080), + [anon_sym_case] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_goto] = ACTIONS(2080), + [anon_sym_DASH_DASH] = ACTIONS(2082), + [anon_sym_PLUS_PLUS] = ACTIONS(2082), + [anon_sym_sizeof] = ACTIONS(2080), + [sym_number_literal] = ACTIONS(2082), + [anon_sym_L_SQUOTE] = ACTIONS(2082), + [anon_sym_u_SQUOTE] = ACTIONS(2082), + [anon_sym_U_SQUOTE] = ACTIONS(2082), + [anon_sym_u8_SQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2082), + [anon_sym_L_DQUOTE] = ACTIONS(2082), + [anon_sym_u_DQUOTE] = ACTIONS(2082), + [anon_sym_U_DQUOTE] = ACTIONS(2082), + [anon_sym_u8_DQUOTE] = ACTIONS(2082), + [anon_sym_DQUOTE] = ACTIONS(2082), + [sym_true] = ACTIONS(2080), + [sym_false] = ACTIONS(2080), + [sym_null] = ACTIONS(2080), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2082), + [anon_sym_ATimport] = ACTIONS(2082), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2080), + [anon_sym_ATcompatibility_alias] = ACTIONS(2082), + [anon_sym_ATprotocol] = ACTIONS(2082), + [anon_sym_ATclass] = ACTIONS(2082), + [anon_sym_ATinterface] = ACTIONS(2082), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2080), + [sym_method_attribute_specifier] = ACTIONS(2080), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2080), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2080), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2080), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2080), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2080), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2080), + [anon_sym_NS_AVAILABLE] = ACTIONS(2080), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2080), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2080), + [anon_sym_API_AVAILABLE] = ACTIONS(2080), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2080), + [anon_sym_API_DEPRECATED] = ACTIONS(2080), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2080), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2080), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2080), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2080), + [anon_sym___deprecated_msg] = ACTIONS(2080), + [anon_sym___deprecated_enum_msg] = ACTIONS(2080), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2080), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2080), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2080), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2080), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2080), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2080), + [anon_sym_ATimplementation] = ACTIONS(2082), + [anon_sym_NS_ENUM] = ACTIONS(2080), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2080), + [anon_sym_NS_OPTIONS] = ACTIONS(2080), + [anon_sym_typeof] = ACTIONS(2080), + [anon_sym___typeof] = ACTIONS(2080), + [anon_sym___typeof__] = ACTIONS(2080), + [sym_self] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_nil] = ACTIONS(2080), + [sym_id] = ACTIONS(2080), + [sym_instancetype] = ACTIONS(2080), + [sym_Class] = ACTIONS(2080), + [sym_SEL] = ACTIONS(2080), + [sym_IMP] = ACTIONS(2080), + [sym_BOOL] = ACTIONS(2080), + [sym_auto] = ACTIONS(2080), + [anon_sym_ATautoreleasepool] = ACTIONS(2082), + [anon_sym_ATsynchronized] = ACTIONS(2082), + [anon_sym_ATtry] = ACTIONS(2082), + [anon_sym_ATthrow] = ACTIONS(2082), + [anon_sym_ATselector] = ACTIONS(2082), + [anon_sym_ATencode] = ACTIONS(2082), + [anon_sym_AT] = ACTIONS(2080), + [sym_YES] = ACTIONS(2080), + [sym_NO] = ACTIONS(2080), + [anon_sym___builtin_available] = ACTIONS(2080), + [anon_sym_ATavailable] = ACTIONS(2082), + [anon_sym_va_arg] = ACTIONS(2080), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1475] = { + [sym_identifier] = ACTIONS(1836), + [aux_sym_preproc_include_token1] = ACTIONS(1838), + [aux_sym_preproc_def_token1] = ACTIONS(1838), + [aux_sym_preproc_if_token1] = ACTIONS(1836), + [aux_sym_preproc_if_token2] = ACTIONS(1836), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1836), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1836), + [anon_sym_LPAREN2] = ACTIONS(1838), + [anon_sym_BANG] = ACTIONS(1838), + [anon_sym_TILDE] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1836), + [anon_sym_STAR] = ACTIONS(1838), + [anon_sym_CARET] = ACTIONS(1838), + [anon_sym_AMP] = ACTIONS(1838), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_typedef] = ACTIONS(1836), + [anon_sym_extern] = ACTIONS(1836), + [anon_sym___attribute] = ACTIONS(1836), + [anon_sym___attribute__] = ACTIONS(1836), + [anon_sym___declspec] = ACTIONS(1836), + [anon_sym___cdecl] = ACTIONS(1836), + [anon_sym___clrcall] = ACTIONS(1836), + [anon_sym___stdcall] = ACTIONS(1836), + [anon_sym___fastcall] = ACTIONS(1836), + [anon_sym___thiscall] = ACTIONS(1836), + [anon_sym___vectorcall] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_static] = ACTIONS(1836), + [anon_sym_auto] = ACTIONS(1836), + [anon_sym_register] = ACTIONS(1836), + [anon_sym_inline] = ACTIONS(1836), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1836), + [anon_sym_const] = ACTIONS(1836), + [anon_sym_volatile] = ACTIONS(1836), + [anon_sym_restrict] = ACTIONS(1836), + [anon_sym__Atomic] = ACTIONS(1836), + [anon_sym_in] = ACTIONS(1836), + [anon_sym_out] = ACTIONS(1836), + [anon_sym_inout] = ACTIONS(1836), + [anon_sym_bycopy] = ACTIONS(1836), + [anon_sym_byref] = ACTIONS(1836), + [anon_sym_oneway] = ACTIONS(1836), + [anon_sym__Nullable] = ACTIONS(1836), + [anon_sym__Nonnull] = ACTIONS(1836), + [anon_sym__Nullable_result] = ACTIONS(1836), + [anon_sym__Null_unspecified] = ACTIONS(1836), + [anon_sym___autoreleasing] = ACTIONS(1836), + [anon_sym___nullable] = ACTIONS(1836), + [anon_sym___nonnull] = ACTIONS(1836), + [anon_sym___strong] = ACTIONS(1836), + [anon_sym___weak] = ACTIONS(1836), + [anon_sym___bridge] = ACTIONS(1836), + [anon_sym___bridge_transfer] = ACTIONS(1836), + [anon_sym___bridge_retained] = ACTIONS(1836), + [anon_sym___unsafe_unretained] = ACTIONS(1836), + [anon_sym___block] = ACTIONS(1836), + [anon_sym___kindof] = ACTIONS(1836), + [anon_sym___unused] = ACTIONS(1836), + [anon_sym__Complex] = ACTIONS(1836), + [anon_sym___complex] = ACTIONS(1836), + [anon_sym_IBOutlet] = ACTIONS(1836), + [anon_sym_IBInspectable] = ACTIONS(1836), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1836), + [anon_sym_signed] = ACTIONS(1836), + [anon_sym_unsigned] = ACTIONS(1836), + [anon_sym_long] = ACTIONS(1836), + [anon_sym_short] = ACTIONS(1836), + [sym_primitive_type] = ACTIONS(1836), + [anon_sym_enum] = ACTIONS(1836), + [anon_sym_struct] = ACTIONS(1836), + [anon_sym_union] = ACTIONS(1836), + [anon_sym_if] = ACTIONS(1836), + [anon_sym_switch] = ACTIONS(1836), + [anon_sym_case] = ACTIONS(1836), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1836), + [anon_sym_do] = ACTIONS(1836), + [anon_sym_for] = ACTIONS(1836), + [anon_sym_return] = ACTIONS(1836), + [anon_sym_break] = ACTIONS(1836), + [anon_sym_continue] = ACTIONS(1836), + [anon_sym_goto] = ACTIONS(1836), + [anon_sym_DASH_DASH] = ACTIONS(1838), + [anon_sym_PLUS_PLUS] = ACTIONS(1838), + [anon_sym_sizeof] = ACTIONS(1836), + [sym_number_literal] = ACTIONS(1838), + [anon_sym_L_SQUOTE] = ACTIONS(1838), + [anon_sym_u_SQUOTE] = ACTIONS(1838), + [anon_sym_U_SQUOTE] = ACTIONS(1838), + [anon_sym_u8_SQUOTE] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1838), + [anon_sym_L_DQUOTE] = ACTIONS(1838), + [anon_sym_u_DQUOTE] = ACTIONS(1838), + [anon_sym_U_DQUOTE] = ACTIONS(1838), + [anon_sym_u8_DQUOTE] = ACTIONS(1838), + [anon_sym_DQUOTE] = ACTIONS(1838), + [sym_true] = ACTIONS(1836), + [sym_false] = ACTIONS(1836), + [sym_null] = ACTIONS(1836), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1838), + [anon_sym_ATimport] = ACTIONS(1838), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1836), + [anon_sym_ATcompatibility_alias] = ACTIONS(1838), + [anon_sym_ATprotocol] = ACTIONS(1838), + [anon_sym_ATclass] = ACTIONS(1838), + [anon_sym_ATinterface] = ACTIONS(1838), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1836), + [sym_method_attribute_specifier] = ACTIONS(1836), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1836), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1836), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1836), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1836), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1836), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1836), + [anon_sym_NS_AVAILABLE] = ACTIONS(1836), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1836), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1836), + [anon_sym_API_AVAILABLE] = ACTIONS(1836), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1836), + [anon_sym_API_DEPRECATED] = ACTIONS(1836), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1836), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1836), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1836), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1836), + [anon_sym___deprecated_msg] = ACTIONS(1836), + [anon_sym___deprecated_enum_msg] = ACTIONS(1836), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1836), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1836), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1836), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1836), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1836), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1836), + [anon_sym_ATimplementation] = ACTIONS(1838), + [anon_sym_NS_ENUM] = ACTIONS(1836), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1836), + [anon_sym_NS_OPTIONS] = ACTIONS(1836), + [anon_sym_typeof] = ACTIONS(1836), + [anon_sym___typeof] = ACTIONS(1836), + [anon_sym___typeof__] = ACTIONS(1836), + [sym_self] = ACTIONS(1836), + [sym_super] = ACTIONS(1836), + [sym_nil] = ACTIONS(1836), + [sym_id] = ACTIONS(1836), + [sym_instancetype] = ACTIONS(1836), + [sym_Class] = ACTIONS(1836), + [sym_SEL] = ACTIONS(1836), + [sym_IMP] = ACTIONS(1836), + [sym_BOOL] = ACTIONS(1836), + [sym_auto] = ACTIONS(1836), + [anon_sym_ATautoreleasepool] = ACTIONS(1838), + [anon_sym_ATsynchronized] = ACTIONS(1838), + [anon_sym_ATtry] = ACTIONS(1838), + [anon_sym_ATthrow] = ACTIONS(1838), + [anon_sym_ATselector] = ACTIONS(1838), + [anon_sym_ATencode] = ACTIONS(1838), + [anon_sym_AT] = ACTIONS(1836), + [sym_YES] = ACTIONS(1836), + [sym_NO] = ACTIONS(1836), + [anon_sym___builtin_available] = ACTIONS(1836), + [anon_sym_ATavailable] = ACTIONS(1838), + [anon_sym_va_arg] = ACTIONS(1836), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1476] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1942), + [aux_sym_preproc_def_token1] = ACTIONS(1942), + [aux_sym_preproc_if_token1] = ACTIONS(1940), + [aux_sym_preproc_if_token2] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), + [anon_sym_LPAREN2] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_TILDE] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_PLUS] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_CARET] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(1940), + [anon_sym___declspec] = ACTIONS(1940), + [anon_sym___cdecl] = ACTIONS(1940), + [anon_sym___clrcall] = ACTIONS(1940), + [anon_sym___stdcall] = ACTIONS(1940), + [anon_sym___fastcall] = ACTIONS(1940), + [anon_sym___thiscall] = ACTIONS(1940), + [anon_sym___vectorcall] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_auto] = ACTIONS(1940), + [anon_sym_register] = ACTIONS(1940), + [anon_sym_inline] = ACTIONS(1940), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_volatile] = ACTIONS(1940), + [anon_sym_restrict] = ACTIONS(1940), + [anon_sym__Atomic] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1940), + [anon_sym_out] = ACTIONS(1940), + [anon_sym_inout] = ACTIONS(1940), + [anon_sym_bycopy] = ACTIONS(1940), + [anon_sym_byref] = ACTIONS(1940), + [anon_sym_oneway] = ACTIONS(1940), + [anon_sym__Nullable] = ACTIONS(1940), + [anon_sym__Nonnull] = ACTIONS(1940), + [anon_sym__Nullable_result] = ACTIONS(1940), + [anon_sym__Null_unspecified] = ACTIONS(1940), + [anon_sym___autoreleasing] = ACTIONS(1940), + [anon_sym___nullable] = ACTIONS(1940), + [anon_sym___nonnull] = ACTIONS(1940), + [anon_sym___strong] = ACTIONS(1940), + [anon_sym___weak] = ACTIONS(1940), + [anon_sym___bridge] = ACTIONS(1940), + [anon_sym___bridge_transfer] = ACTIONS(1940), + [anon_sym___bridge_retained] = ACTIONS(1940), + [anon_sym___unsafe_unretained] = ACTIONS(1940), + [anon_sym___block] = ACTIONS(1940), + [anon_sym___kindof] = ACTIONS(1940), + [anon_sym___unused] = ACTIONS(1940), + [anon_sym__Complex] = ACTIONS(1940), + [anon_sym___complex] = ACTIONS(1940), + [anon_sym_IBOutlet] = ACTIONS(1940), + [anon_sym_IBInspectable] = ACTIONS(1940), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1940), + [anon_sym_signed] = ACTIONS(1940), + [anon_sym_unsigned] = ACTIONS(1940), + [anon_sym_long] = ACTIONS(1940), + [anon_sym_short] = ACTIONS(1940), + [sym_primitive_type] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_switch] = ACTIONS(1940), + [anon_sym_case] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_do] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_goto] = ACTIONS(1940), + [anon_sym_DASH_DASH] = ACTIONS(1942), + [anon_sym_PLUS_PLUS] = ACTIONS(1942), + [anon_sym_sizeof] = ACTIONS(1940), + [sym_number_literal] = ACTIONS(1942), + [anon_sym_L_SQUOTE] = ACTIONS(1942), + [anon_sym_u_SQUOTE] = ACTIONS(1942), + [anon_sym_U_SQUOTE] = ACTIONS(1942), + [anon_sym_u8_SQUOTE] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_L_DQUOTE] = ACTIONS(1942), + [anon_sym_u_DQUOTE] = ACTIONS(1942), + [anon_sym_U_DQUOTE] = ACTIONS(1942), + [anon_sym_u8_DQUOTE] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [sym_true] = ACTIONS(1940), + [sym_false] = ACTIONS(1940), + [sym_null] = ACTIONS(1940), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1942), + [anon_sym_ATimport] = ACTIONS(1942), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1940), + [anon_sym_ATcompatibility_alias] = ACTIONS(1942), + [anon_sym_ATprotocol] = ACTIONS(1942), + [anon_sym_ATclass] = ACTIONS(1942), + [anon_sym_ATinterface] = ACTIONS(1942), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1940), + [sym_method_attribute_specifier] = ACTIONS(1940), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1940), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1940), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE] = ACTIONS(1940), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1940), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_API_AVAILABLE] = ACTIONS(1940), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_API_DEPRECATED] = ACTIONS(1940), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1940), + [anon_sym___deprecated_msg] = ACTIONS(1940), + [anon_sym___deprecated_enum_msg] = ACTIONS(1940), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1940), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1940), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1940), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1940), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1940), + [anon_sym_ATimplementation] = ACTIONS(1942), + [anon_sym_NS_ENUM] = ACTIONS(1940), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1940), + [anon_sym_NS_OPTIONS] = ACTIONS(1940), + [anon_sym_typeof] = ACTIONS(1940), + [anon_sym___typeof] = ACTIONS(1940), + [anon_sym___typeof__] = ACTIONS(1940), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_nil] = ACTIONS(1940), + [sym_id] = ACTIONS(1940), + [sym_instancetype] = ACTIONS(1940), + [sym_Class] = ACTIONS(1940), + [sym_SEL] = ACTIONS(1940), + [sym_IMP] = ACTIONS(1940), + [sym_BOOL] = ACTIONS(1940), + [sym_auto] = ACTIONS(1940), + [anon_sym_ATautoreleasepool] = ACTIONS(1942), + [anon_sym_ATsynchronized] = ACTIONS(1942), + [anon_sym_ATtry] = ACTIONS(1942), + [anon_sym_ATthrow] = ACTIONS(1942), + [anon_sym_ATselector] = ACTIONS(1942), + [anon_sym_ATencode] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1940), + [sym_YES] = ACTIONS(1940), + [sym_NO] = ACTIONS(1940), + [anon_sym___builtin_available] = ACTIONS(1940), + [anon_sym_ATavailable] = ACTIONS(1942), + [anon_sym_va_arg] = ACTIONS(1940), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1477] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1478] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1479] = { + [sym_identifier] = ACTIONS(1832), + [aux_sym_preproc_include_token1] = ACTIONS(1834), + [aux_sym_preproc_def_token1] = ACTIONS(1834), + [aux_sym_preproc_if_token1] = ACTIONS(1832), + [aux_sym_preproc_if_token2] = ACTIONS(1832), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1832), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1832), + [anon_sym_LPAREN2] = ACTIONS(1834), + [anon_sym_BANG] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1832), + [anon_sym_STAR] = ACTIONS(1834), + [anon_sym_CARET] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1834), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_typedef] = ACTIONS(1832), + [anon_sym_extern] = ACTIONS(1832), + [anon_sym___attribute] = ACTIONS(1832), + [anon_sym___attribute__] = ACTIONS(1832), + [anon_sym___declspec] = ACTIONS(1832), + [anon_sym___cdecl] = ACTIONS(1832), + [anon_sym___clrcall] = ACTIONS(1832), + [anon_sym___stdcall] = ACTIONS(1832), + [anon_sym___fastcall] = ACTIONS(1832), + [anon_sym___thiscall] = ACTIONS(1832), + [anon_sym___vectorcall] = ACTIONS(1832), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_LBRACK] = ACTIONS(1834), + [anon_sym_static] = ACTIONS(1832), + [anon_sym_auto] = ACTIONS(1832), + [anon_sym_register] = ACTIONS(1832), + [anon_sym_inline] = ACTIONS(1832), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1832), + [anon_sym_const] = ACTIONS(1832), + [anon_sym_volatile] = ACTIONS(1832), + [anon_sym_restrict] = ACTIONS(1832), + [anon_sym__Atomic] = ACTIONS(1832), + [anon_sym_in] = ACTIONS(1832), + [anon_sym_out] = ACTIONS(1832), + [anon_sym_inout] = ACTIONS(1832), + [anon_sym_bycopy] = ACTIONS(1832), + [anon_sym_byref] = ACTIONS(1832), + [anon_sym_oneway] = ACTIONS(1832), + [anon_sym__Nullable] = ACTIONS(1832), + [anon_sym__Nonnull] = ACTIONS(1832), + [anon_sym__Nullable_result] = ACTIONS(1832), + [anon_sym__Null_unspecified] = ACTIONS(1832), + [anon_sym___autoreleasing] = ACTIONS(1832), + [anon_sym___nullable] = ACTIONS(1832), + [anon_sym___nonnull] = ACTIONS(1832), + [anon_sym___strong] = ACTIONS(1832), + [anon_sym___weak] = ACTIONS(1832), + [anon_sym___bridge] = ACTIONS(1832), + [anon_sym___bridge_transfer] = ACTIONS(1832), + [anon_sym___bridge_retained] = ACTIONS(1832), + [anon_sym___unsafe_unretained] = ACTIONS(1832), + [anon_sym___block] = ACTIONS(1832), + [anon_sym___kindof] = ACTIONS(1832), + [anon_sym___unused] = ACTIONS(1832), + [anon_sym__Complex] = ACTIONS(1832), + [anon_sym___complex] = ACTIONS(1832), + [anon_sym_IBOutlet] = ACTIONS(1832), + [anon_sym_IBInspectable] = ACTIONS(1832), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1832), + [anon_sym_signed] = ACTIONS(1832), + [anon_sym_unsigned] = ACTIONS(1832), + [anon_sym_long] = ACTIONS(1832), + [anon_sym_short] = ACTIONS(1832), + [sym_primitive_type] = ACTIONS(1832), + [anon_sym_enum] = ACTIONS(1832), + [anon_sym_struct] = ACTIONS(1832), + [anon_sym_union] = ACTIONS(1832), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_switch] = ACTIONS(1832), + [anon_sym_case] = ACTIONS(1832), + [anon_sym_default] = ACTIONS(1832), + [anon_sym_while] = ACTIONS(1832), + [anon_sym_do] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1832), + [anon_sym_break] = ACTIONS(1832), + [anon_sym_continue] = ACTIONS(1832), + [anon_sym_goto] = ACTIONS(1832), + [anon_sym_DASH_DASH] = ACTIONS(1834), + [anon_sym_PLUS_PLUS] = ACTIONS(1834), + [anon_sym_sizeof] = ACTIONS(1832), + [sym_number_literal] = ACTIONS(1834), + [anon_sym_L_SQUOTE] = ACTIONS(1834), + [anon_sym_u_SQUOTE] = ACTIONS(1834), + [anon_sym_U_SQUOTE] = ACTIONS(1834), + [anon_sym_u8_SQUOTE] = ACTIONS(1834), + [anon_sym_SQUOTE] = ACTIONS(1834), + [anon_sym_L_DQUOTE] = ACTIONS(1834), + [anon_sym_u_DQUOTE] = ACTIONS(1834), + [anon_sym_U_DQUOTE] = ACTIONS(1834), + [anon_sym_u8_DQUOTE] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1834), + [sym_true] = ACTIONS(1832), + [sym_false] = ACTIONS(1832), + [sym_null] = ACTIONS(1832), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1834), + [anon_sym_ATimport] = ACTIONS(1834), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1832), + [anon_sym_ATcompatibility_alias] = ACTIONS(1834), + [anon_sym_ATprotocol] = ACTIONS(1834), + [anon_sym_ATclass] = ACTIONS(1834), + [anon_sym_ATinterface] = ACTIONS(1834), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1832), + [sym_method_attribute_specifier] = ACTIONS(1832), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1832), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1832), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1832), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1832), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1832), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1832), + [anon_sym_NS_AVAILABLE] = ACTIONS(1832), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1832), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1832), + [anon_sym_API_AVAILABLE] = ACTIONS(1832), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1832), + [anon_sym_API_DEPRECATED] = ACTIONS(1832), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1832), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1832), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1832), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1832), + [anon_sym___deprecated_msg] = ACTIONS(1832), + [anon_sym___deprecated_enum_msg] = ACTIONS(1832), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1832), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1832), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1832), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1832), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1832), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1832), + [anon_sym_ATimplementation] = ACTIONS(1834), + [anon_sym_NS_ENUM] = ACTIONS(1832), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1832), + [anon_sym_NS_OPTIONS] = ACTIONS(1832), + [anon_sym_typeof] = ACTIONS(1832), + [anon_sym___typeof] = ACTIONS(1832), + [anon_sym___typeof__] = ACTIONS(1832), + [sym_self] = ACTIONS(1832), + [sym_super] = ACTIONS(1832), + [sym_nil] = ACTIONS(1832), + [sym_id] = ACTIONS(1832), + [sym_instancetype] = ACTIONS(1832), + [sym_Class] = ACTIONS(1832), + [sym_SEL] = ACTIONS(1832), + [sym_IMP] = ACTIONS(1832), + [sym_BOOL] = ACTIONS(1832), + [sym_auto] = ACTIONS(1832), + [anon_sym_ATautoreleasepool] = ACTIONS(1834), + [anon_sym_ATsynchronized] = ACTIONS(1834), + [anon_sym_ATtry] = ACTIONS(1834), + [anon_sym_ATthrow] = ACTIONS(1834), + [anon_sym_ATselector] = ACTIONS(1834), + [anon_sym_ATencode] = ACTIONS(1834), + [anon_sym_AT] = ACTIONS(1832), + [sym_YES] = ACTIONS(1832), + [sym_NO] = ACTIONS(1832), + [anon_sym___builtin_available] = ACTIONS(1832), + [anon_sym_ATavailable] = ACTIONS(1834), + [anon_sym_va_arg] = ACTIONS(1832), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1480] = { + [sym_identifier] = ACTIONS(1828), + [aux_sym_preproc_include_token1] = ACTIONS(1830), + [aux_sym_preproc_def_token1] = ACTIONS(1830), + [aux_sym_preproc_if_token1] = ACTIONS(1828), + [aux_sym_preproc_if_token2] = ACTIONS(1828), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1828), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1828), + [anon_sym_LPAREN2] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1828), + [anon_sym_STAR] = ACTIONS(1830), + [anon_sym_CARET] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_typedef] = ACTIONS(1828), + [anon_sym_extern] = ACTIONS(1828), + [anon_sym___attribute] = ACTIONS(1828), + [anon_sym___attribute__] = ACTIONS(1828), + [anon_sym___declspec] = ACTIONS(1828), + [anon_sym___cdecl] = ACTIONS(1828), + [anon_sym___clrcall] = ACTIONS(1828), + [anon_sym___stdcall] = ACTIONS(1828), + [anon_sym___fastcall] = ACTIONS(1828), + [anon_sym___thiscall] = ACTIONS(1828), + [anon_sym___vectorcall] = ACTIONS(1828), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1828), + [anon_sym_auto] = ACTIONS(1828), + [anon_sym_register] = ACTIONS(1828), + [anon_sym_inline] = ACTIONS(1828), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1828), + [anon_sym_const] = ACTIONS(1828), + [anon_sym_volatile] = ACTIONS(1828), + [anon_sym_restrict] = ACTIONS(1828), + [anon_sym__Atomic] = ACTIONS(1828), + [anon_sym_in] = ACTIONS(1828), + [anon_sym_out] = ACTIONS(1828), + [anon_sym_inout] = ACTIONS(1828), + [anon_sym_bycopy] = ACTIONS(1828), + [anon_sym_byref] = ACTIONS(1828), + [anon_sym_oneway] = ACTIONS(1828), + [anon_sym__Nullable] = ACTIONS(1828), + [anon_sym__Nonnull] = ACTIONS(1828), + [anon_sym__Nullable_result] = ACTIONS(1828), + [anon_sym__Null_unspecified] = ACTIONS(1828), + [anon_sym___autoreleasing] = ACTIONS(1828), + [anon_sym___nullable] = ACTIONS(1828), + [anon_sym___nonnull] = ACTIONS(1828), + [anon_sym___strong] = ACTIONS(1828), + [anon_sym___weak] = ACTIONS(1828), + [anon_sym___bridge] = ACTIONS(1828), + [anon_sym___bridge_transfer] = ACTIONS(1828), + [anon_sym___bridge_retained] = ACTIONS(1828), + [anon_sym___unsafe_unretained] = ACTIONS(1828), + [anon_sym___block] = ACTIONS(1828), + [anon_sym___kindof] = ACTIONS(1828), + [anon_sym___unused] = ACTIONS(1828), + [anon_sym__Complex] = ACTIONS(1828), + [anon_sym___complex] = ACTIONS(1828), + [anon_sym_IBOutlet] = ACTIONS(1828), + [anon_sym_IBInspectable] = ACTIONS(1828), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1828), + [anon_sym_signed] = ACTIONS(1828), + [anon_sym_unsigned] = ACTIONS(1828), + [anon_sym_long] = ACTIONS(1828), + [anon_sym_short] = ACTIONS(1828), + [sym_primitive_type] = ACTIONS(1828), + [anon_sym_enum] = ACTIONS(1828), + [anon_sym_struct] = ACTIONS(1828), + [anon_sym_union] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(1828), + [anon_sym_switch] = ACTIONS(1828), + [anon_sym_case] = ACTIONS(1828), + [anon_sym_default] = ACTIONS(1828), + [anon_sym_while] = ACTIONS(1828), + [anon_sym_do] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_return] = ACTIONS(1828), + [anon_sym_break] = ACTIONS(1828), + [anon_sym_continue] = ACTIONS(1828), + [anon_sym_goto] = ACTIONS(1828), + [anon_sym_DASH_DASH] = ACTIONS(1830), + [anon_sym_PLUS_PLUS] = ACTIONS(1830), + [anon_sym_sizeof] = ACTIONS(1828), + [sym_number_literal] = ACTIONS(1830), + [anon_sym_L_SQUOTE] = ACTIONS(1830), + [anon_sym_u_SQUOTE] = ACTIONS(1830), + [anon_sym_U_SQUOTE] = ACTIONS(1830), + [anon_sym_u8_SQUOTE] = ACTIONS(1830), + [anon_sym_SQUOTE] = ACTIONS(1830), + [anon_sym_L_DQUOTE] = ACTIONS(1830), + [anon_sym_u_DQUOTE] = ACTIONS(1830), + [anon_sym_U_DQUOTE] = ACTIONS(1830), + [anon_sym_u8_DQUOTE] = ACTIONS(1830), + [anon_sym_DQUOTE] = ACTIONS(1830), + [sym_true] = ACTIONS(1828), + [sym_false] = ACTIONS(1828), + [sym_null] = ACTIONS(1828), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1830), + [anon_sym_ATimport] = ACTIONS(1830), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1828), + [anon_sym_ATcompatibility_alias] = ACTIONS(1830), + [anon_sym_ATprotocol] = ACTIONS(1830), + [anon_sym_ATclass] = ACTIONS(1830), + [anon_sym_ATinterface] = ACTIONS(1830), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1828), + [sym_method_attribute_specifier] = ACTIONS(1828), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1828), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1828), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1828), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1828), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1828), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1828), + [anon_sym_NS_AVAILABLE] = ACTIONS(1828), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1828), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1828), + [anon_sym_API_AVAILABLE] = ACTIONS(1828), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1828), + [anon_sym_API_DEPRECATED] = ACTIONS(1828), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1828), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1828), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1828), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1828), + [anon_sym___deprecated_msg] = ACTIONS(1828), + [anon_sym___deprecated_enum_msg] = ACTIONS(1828), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1828), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1828), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1828), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1828), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1828), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1828), + [anon_sym_ATimplementation] = ACTIONS(1830), + [anon_sym_NS_ENUM] = ACTIONS(1828), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1828), + [anon_sym_NS_OPTIONS] = ACTIONS(1828), + [anon_sym_typeof] = ACTIONS(1828), + [anon_sym___typeof] = ACTIONS(1828), + [anon_sym___typeof__] = ACTIONS(1828), + [sym_self] = ACTIONS(1828), + [sym_super] = ACTIONS(1828), + [sym_nil] = ACTIONS(1828), + [sym_id] = ACTIONS(1828), + [sym_instancetype] = ACTIONS(1828), + [sym_Class] = ACTIONS(1828), + [sym_SEL] = ACTIONS(1828), + [sym_IMP] = ACTIONS(1828), + [sym_BOOL] = ACTIONS(1828), + [sym_auto] = ACTIONS(1828), + [anon_sym_ATautoreleasepool] = ACTIONS(1830), + [anon_sym_ATsynchronized] = ACTIONS(1830), + [anon_sym_ATtry] = ACTIONS(1830), + [anon_sym_ATthrow] = ACTIONS(1830), + [anon_sym_ATselector] = ACTIONS(1830), + [anon_sym_ATencode] = ACTIONS(1830), + [anon_sym_AT] = ACTIONS(1828), + [sym_YES] = ACTIONS(1828), + [sym_NO] = ACTIONS(1828), + [anon_sym___builtin_available] = ACTIONS(1828), + [anon_sym_ATavailable] = ACTIONS(1830), + [anon_sym_va_arg] = ACTIONS(1828), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1481] = { + [sym_identifier] = ACTIONS(1824), + [aux_sym_preproc_include_token1] = ACTIONS(1826), + [aux_sym_preproc_def_token1] = ACTIONS(1826), + [aux_sym_preproc_if_token1] = ACTIONS(1824), + [aux_sym_preproc_if_token2] = ACTIONS(1824), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1824), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1824), + [anon_sym_LPAREN2] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_STAR] = ACTIONS(1826), + [anon_sym_CARET] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1826), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_typedef] = ACTIONS(1824), + [anon_sym_extern] = ACTIONS(1824), + [anon_sym___attribute] = ACTIONS(1824), + [anon_sym___attribute__] = ACTIONS(1824), + [anon_sym___declspec] = ACTIONS(1824), + [anon_sym___cdecl] = ACTIONS(1824), + [anon_sym___clrcall] = ACTIONS(1824), + [anon_sym___stdcall] = ACTIONS(1824), + [anon_sym___fastcall] = ACTIONS(1824), + [anon_sym___thiscall] = ACTIONS(1824), + [anon_sym___vectorcall] = ACTIONS(1824), + [anon_sym_LBRACE] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1826), + [anon_sym_static] = ACTIONS(1824), + [anon_sym_auto] = ACTIONS(1824), + [anon_sym_register] = ACTIONS(1824), + [anon_sym_inline] = ACTIONS(1824), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1824), + [anon_sym_const] = ACTIONS(1824), + [anon_sym_volatile] = ACTIONS(1824), + [anon_sym_restrict] = ACTIONS(1824), + [anon_sym__Atomic] = ACTIONS(1824), + [anon_sym_in] = ACTIONS(1824), + [anon_sym_out] = ACTIONS(1824), + [anon_sym_inout] = ACTIONS(1824), + [anon_sym_bycopy] = ACTIONS(1824), + [anon_sym_byref] = ACTIONS(1824), + [anon_sym_oneway] = ACTIONS(1824), + [anon_sym__Nullable] = ACTIONS(1824), + [anon_sym__Nonnull] = ACTIONS(1824), + [anon_sym__Nullable_result] = ACTIONS(1824), + [anon_sym__Null_unspecified] = ACTIONS(1824), + [anon_sym___autoreleasing] = ACTIONS(1824), + [anon_sym___nullable] = ACTIONS(1824), + [anon_sym___nonnull] = ACTIONS(1824), + [anon_sym___strong] = ACTIONS(1824), + [anon_sym___weak] = ACTIONS(1824), + [anon_sym___bridge] = ACTIONS(1824), + [anon_sym___bridge_transfer] = ACTIONS(1824), + [anon_sym___bridge_retained] = ACTIONS(1824), + [anon_sym___unsafe_unretained] = ACTIONS(1824), + [anon_sym___block] = ACTIONS(1824), + [anon_sym___kindof] = ACTIONS(1824), + [anon_sym___unused] = ACTIONS(1824), + [anon_sym__Complex] = ACTIONS(1824), + [anon_sym___complex] = ACTIONS(1824), + [anon_sym_IBOutlet] = ACTIONS(1824), + [anon_sym_IBInspectable] = ACTIONS(1824), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1824), + [anon_sym_signed] = ACTIONS(1824), + [anon_sym_unsigned] = ACTIONS(1824), + [anon_sym_long] = ACTIONS(1824), + [anon_sym_short] = ACTIONS(1824), + [sym_primitive_type] = ACTIONS(1824), + [anon_sym_enum] = ACTIONS(1824), + [anon_sym_struct] = ACTIONS(1824), + [anon_sym_union] = ACTIONS(1824), + [anon_sym_if] = ACTIONS(1824), + [anon_sym_switch] = ACTIONS(1824), + [anon_sym_case] = ACTIONS(1824), + [anon_sym_default] = ACTIONS(1824), + [anon_sym_while] = ACTIONS(1824), + [anon_sym_do] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(1824), + [anon_sym_return] = ACTIONS(1824), + [anon_sym_break] = ACTIONS(1824), + [anon_sym_continue] = ACTIONS(1824), + [anon_sym_goto] = ACTIONS(1824), + [anon_sym_DASH_DASH] = ACTIONS(1826), + [anon_sym_PLUS_PLUS] = ACTIONS(1826), + [anon_sym_sizeof] = ACTIONS(1824), + [sym_number_literal] = ACTIONS(1826), + [anon_sym_L_SQUOTE] = ACTIONS(1826), + [anon_sym_u_SQUOTE] = ACTIONS(1826), + [anon_sym_U_SQUOTE] = ACTIONS(1826), + [anon_sym_u8_SQUOTE] = ACTIONS(1826), + [anon_sym_SQUOTE] = ACTIONS(1826), + [anon_sym_L_DQUOTE] = ACTIONS(1826), + [anon_sym_u_DQUOTE] = ACTIONS(1826), + [anon_sym_U_DQUOTE] = ACTIONS(1826), + [anon_sym_u8_DQUOTE] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [sym_true] = ACTIONS(1824), + [sym_false] = ACTIONS(1824), + [sym_null] = ACTIONS(1824), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1826), + [anon_sym_ATimport] = ACTIONS(1826), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1824), + [anon_sym_ATcompatibility_alias] = ACTIONS(1826), + [anon_sym_ATprotocol] = ACTIONS(1826), + [anon_sym_ATclass] = ACTIONS(1826), + [anon_sym_ATinterface] = ACTIONS(1826), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1824), + [sym_method_attribute_specifier] = ACTIONS(1824), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1824), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1824), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1824), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1824), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1824), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1824), + [anon_sym_NS_AVAILABLE] = ACTIONS(1824), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1824), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1824), + [anon_sym_API_AVAILABLE] = ACTIONS(1824), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1824), + [anon_sym_API_DEPRECATED] = ACTIONS(1824), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1824), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1824), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1824), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1824), + [anon_sym___deprecated_msg] = ACTIONS(1824), + [anon_sym___deprecated_enum_msg] = ACTIONS(1824), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1824), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1824), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1824), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1824), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1824), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1824), + [anon_sym_ATimplementation] = ACTIONS(1826), + [anon_sym_NS_ENUM] = ACTIONS(1824), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1824), + [anon_sym_NS_OPTIONS] = ACTIONS(1824), + [anon_sym_typeof] = ACTIONS(1824), + [anon_sym___typeof] = ACTIONS(1824), + [anon_sym___typeof__] = ACTIONS(1824), + [sym_self] = ACTIONS(1824), + [sym_super] = ACTIONS(1824), + [sym_nil] = ACTIONS(1824), + [sym_id] = ACTIONS(1824), + [sym_instancetype] = ACTIONS(1824), + [sym_Class] = ACTIONS(1824), + [sym_SEL] = ACTIONS(1824), + [sym_IMP] = ACTIONS(1824), + [sym_BOOL] = ACTIONS(1824), + [sym_auto] = ACTIONS(1824), + [anon_sym_ATautoreleasepool] = ACTIONS(1826), + [anon_sym_ATsynchronized] = ACTIONS(1826), + [anon_sym_ATtry] = ACTIONS(1826), + [anon_sym_ATthrow] = ACTIONS(1826), + [anon_sym_ATselector] = ACTIONS(1826), + [anon_sym_ATencode] = ACTIONS(1826), + [anon_sym_AT] = ACTIONS(1824), + [sym_YES] = ACTIONS(1824), + [sym_NO] = ACTIONS(1824), + [anon_sym___builtin_available] = ACTIONS(1824), + [anon_sym_ATavailable] = ACTIONS(1826), + [anon_sym_va_arg] = ACTIONS(1824), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1482] = { + [sym_identifier] = ACTIONS(1820), + [aux_sym_preproc_include_token1] = ACTIONS(1822), + [aux_sym_preproc_def_token1] = ACTIONS(1822), + [aux_sym_preproc_if_token1] = ACTIONS(1820), + [aux_sym_preproc_if_token2] = ACTIONS(1820), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1820), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1820), + [anon_sym_LPAREN2] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1820), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_CARET] = ACTIONS(1822), + [anon_sym_AMP] = ACTIONS(1822), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_typedef] = ACTIONS(1820), + [anon_sym_extern] = ACTIONS(1820), + [anon_sym___attribute] = ACTIONS(1820), + [anon_sym___attribute__] = ACTIONS(1820), + [anon_sym___declspec] = ACTIONS(1820), + [anon_sym___cdecl] = ACTIONS(1820), + [anon_sym___clrcall] = ACTIONS(1820), + [anon_sym___stdcall] = ACTIONS(1820), + [anon_sym___fastcall] = ACTIONS(1820), + [anon_sym___thiscall] = ACTIONS(1820), + [anon_sym___vectorcall] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_static] = ACTIONS(1820), + [anon_sym_auto] = ACTIONS(1820), + [anon_sym_register] = ACTIONS(1820), + [anon_sym_inline] = ACTIONS(1820), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1820), + [anon_sym_const] = ACTIONS(1820), + [anon_sym_volatile] = ACTIONS(1820), + [anon_sym_restrict] = ACTIONS(1820), + [anon_sym__Atomic] = ACTIONS(1820), + [anon_sym_in] = ACTIONS(1820), + [anon_sym_out] = ACTIONS(1820), + [anon_sym_inout] = ACTIONS(1820), + [anon_sym_bycopy] = ACTIONS(1820), + [anon_sym_byref] = ACTIONS(1820), + [anon_sym_oneway] = ACTIONS(1820), + [anon_sym__Nullable] = ACTIONS(1820), + [anon_sym__Nonnull] = ACTIONS(1820), + [anon_sym__Nullable_result] = ACTIONS(1820), + [anon_sym__Null_unspecified] = ACTIONS(1820), + [anon_sym___autoreleasing] = ACTIONS(1820), + [anon_sym___nullable] = ACTIONS(1820), + [anon_sym___nonnull] = ACTIONS(1820), + [anon_sym___strong] = ACTIONS(1820), + [anon_sym___weak] = ACTIONS(1820), + [anon_sym___bridge] = ACTIONS(1820), + [anon_sym___bridge_transfer] = ACTIONS(1820), + [anon_sym___bridge_retained] = ACTIONS(1820), + [anon_sym___unsafe_unretained] = ACTIONS(1820), + [anon_sym___block] = ACTIONS(1820), + [anon_sym___kindof] = ACTIONS(1820), + [anon_sym___unused] = ACTIONS(1820), + [anon_sym__Complex] = ACTIONS(1820), + [anon_sym___complex] = ACTIONS(1820), + [anon_sym_IBOutlet] = ACTIONS(1820), + [anon_sym_IBInspectable] = ACTIONS(1820), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1820), + [anon_sym_signed] = ACTIONS(1820), + [anon_sym_unsigned] = ACTIONS(1820), + [anon_sym_long] = ACTIONS(1820), + [anon_sym_short] = ACTIONS(1820), + [sym_primitive_type] = ACTIONS(1820), + [anon_sym_enum] = ACTIONS(1820), + [anon_sym_struct] = ACTIONS(1820), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_if] = ACTIONS(1820), + [anon_sym_switch] = ACTIONS(1820), + [anon_sym_case] = ACTIONS(1820), + [anon_sym_default] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1820), + [anon_sym_do] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1820), + [anon_sym_return] = ACTIONS(1820), + [anon_sym_break] = ACTIONS(1820), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_goto] = ACTIONS(1820), + [anon_sym_DASH_DASH] = ACTIONS(1822), + [anon_sym_PLUS_PLUS] = ACTIONS(1822), + [anon_sym_sizeof] = ACTIONS(1820), + [sym_number_literal] = ACTIONS(1822), + [anon_sym_L_SQUOTE] = ACTIONS(1822), + [anon_sym_u_SQUOTE] = ACTIONS(1822), + [anon_sym_U_SQUOTE] = ACTIONS(1822), + [anon_sym_u8_SQUOTE] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1822), + [anon_sym_L_DQUOTE] = ACTIONS(1822), + [anon_sym_u_DQUOTE] = ACTIONS(1822), + [anon_sym_U_DQUOTE] = ACTIONS(1822), + [anon_sym_u8_DQUOTE] = ACTIONS(1822), + [anon_sym_DQUOTE] = ACTIONS(1822), + [sym_true] = ACTIONS(1820), + [sym_false] = ACTIONS(1820), + [sym_null] = ACTIONS(1820), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1822), + [anon_sym_ATimport] = ACTIONS(1822), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1820), + [anon_sym_ATcompatibility_alias] = ACTIONS(1822), + [anon_sym_ATprotocol] = ACTIONS(1822), + [anon_sym_ATclass] = ACTIONS(1822), + [anon_sym_ATinterface] = ACTIONS(1822), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1820), + [sym_method_attribute_specifier] = ACTIONS(1820), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1820), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1820), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1820), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1820), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1820), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1820), + [anon_sym_NS_AVAILABLE] = ACTIONS(1820), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1820), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1820), + [anon_sym_API_AVAILABLE] = ACTIONS(1820), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1820), + [anon_sym_API_DEPRECATED] = ACTIONS(1820), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1820), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1820), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1820), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1820), + [anon_sym___deprecated_msg] = ACTIONS(1820), + [anon_sym___deprecated_enum_msg] = ACTIONS(1820), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1820), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1820), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1820), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1820), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1820), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1820), + [anon_sym_ATimplementation] = ACTIONS(1822), + [anon_sym_NS_ENUM] = ACTIONS(1820), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1820), + [anon_sym_NS_OPTIONS] = ACTIONS(1820), + [anon_sym_typeof] = ACTIONS(1820), + [anon_sym___typeof] = ACTIONS(1820), + [anon_sym___typeof__] = ACTIONS(1820), + [sym_self] = ACTIONS(1820), + [sym_super] = ACTIONS(1820), + [sym_nil] = ACTIONS(1820), + [sym_id] = ACTIONS(1820), + [sym_instancetype] = ACTIONS(1820), + [sym_Class] = ACTIONS(1820), + [sym_SEL] = ACTIONS(1820), + [sym_IMP] = ACTIONS(1820), + [sym_BOOL] = ACTIONS(1820), + [sym_auto] = ACTIONS(1820), + [anon_sym_ATautoreleasepool] = ACTIONS(1822), + [anon_sym_ATsynchronized] = ACTIONS(1822), + [anon_sym_ATtry] = ACTIONS(1822), + [anon_sym_ATthrow] = ACTIONS(1822), + [anon_sym_ATselector] = ACTIONS(1822), + [anon_sym_ATencode] = ACTIONS(1822), + [anon_sym_AT] = ACTIONS(1820), + [sym_YES] = ACTIONS(1820), + [sym_NO] = ACTIONS(1820), + [anon_sym___builtin_available] = ACTIONS(1820), + [anon_sym_ATavailable] = ACTIONS(1822), + [anon_sym_va_arg] = ACTIONS(1820), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1483] = { + [sym_identifier] = ACTIONS(1808), + [aux_sym_preproc_include_token1] = ACTIONS(1810), + [aux_sym_preproc_def_token1] = ACTIONS(1810), + [aux_sym_preproc_if_token1] = ACTIONS(1808), + [aux_sym_preproc_if_token2] = ACTIONS(1808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1808), + [anon_sym_LPAREN2] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1808), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_CARET] = ACTIONS(1810), + [anon_sym_AMP] = ACTIONS(1810), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_typedef] = ACTIONS(1808), + [anon_sym_extern] = ACTIONS(1808), + [anon_sym___attribute] = ACTIONS(1808), + [anon_sym___attribute__] = ACTIONS(1808), + [anon_sym___declspec] = ACTIONS(1808), + [anon_sym___cdecl] = ACTIONS(1808), + [anon_sym___clrcall] = ACTIONS(1808), + [anon_sym___stdcall] = ACTIONS(1808), + [anon_sym___fastcall] = ACTIONS(1808), + [anon_sym___thiscall] = ACTIONS(1808), + [anon_sym___vectorcall] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_static] = ACTIONS(1808), + [anon_sym_auto] = ACTIONS(1808), + [anon_sym_register] = ACTIONS(1808), + [anon_sym_inline] = ACTIONS(1808), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1808), + [anon_sym_const] = ACTIONS(1808), + [anon_sym_volatile] = ACTIONS(1808), + [anon_sym_restrict] = ACTIONS(1808), + [anon_sym__Atomic] = ACTIONS(1808), + [anon_sym_in] = ACTIONS(1808), + [anon_sym_out] = ACTIONS(1808), + [anon_sym_inout] = ACTIONS(1808), + [anon_sym_bycopy] = ACTIONS(1808), + [anon_sym_byref] = ACTIONS(1808), + [anon_sym_oneway] = ACTIONS(1808), + [anon_sym__Nullable] = ACTIONS(1808), + [anon_sym__Nonnull] = ACTIONS(1808), + [anon_sym__Nullable_result] = ACTIONS(1808), + [anon_sym__Null_unspecified] = ACTIONS(1808), + [anon_sym___autoreleasing] = ACTIONS(1808), + [anon_sym___nullable] = ACTIONS(1808), + [anon_sym___nonnull] = ACTIONS(1808), + [anon_sym___strong] = ACTIONS(1808), + [anon_sym___weak] = ACTIONS(1808), + [anon_sym___bridge] = ACTIONS(1808), + [anon_sym___bridge_transfer] = ACTIONS(1808), + [anon_sym___bridge_retained] = ACTIONS(1808), + [anon_sym___unsafe_unretained] = ACTIONS(1808), + [anon_sym___block] = ACTIONS(1808), + [anon_sym___kindof] = ACTIONS(1808), + [anon_sym___unused] = ACTIONS(1808), + [anon_sym__Complex] = ACTIONS(1808), + [anon_sym___complex] = ACTIONS(1808), + [anon_sym_IBOutlet] = ACTIONS(1808), + [anon_sym_IBInspectable] = ACTIONS(1808), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1808), + [anon_sym_signed] = ACTIONS(1808), + [anon_sym_unsigned] = ACTIONS(1808), + [anon_sym_long] = ACTIONS(1808), + [anon_sym_short] = ACTIONS(1808), + [sym_primitive_type] = ACTIONS(1808), + [anon_sym_enum] = ACTIONS(1808), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_switch] = ACTIONS(1808), + [anon_sym_case] = ACTIONS(1808), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_do] = ACTIONS(1808), + [anon_sym_for] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_goto] = ACTIONS(1808), + [anon_sym_DASH_DASH] = ACTIONS(1810), + [anon_sym_PLUS_PLUS] = ACTIONS(1810), + [anon_sym_sizeof] = ACTIONS(1808), + [sym_number_literal] = ACTIONS(1810), + [anon_sym_L_SQUOTE] = ACTIONS(1810), + [anon_sym_u_SQUOTE] = ACTIONS(1810), + [anon_sym_U_SQUOTE] = ACTIONS(1810), + [anon_sym_u8_SQUOTE] = ACTIONS(1810), + [anon_sym_SQUOTE] = ACTIONS(1810), + [anon_sym_L_DQUOTE] = ACTIONS(1810), + [anon_sym_u_DQUOTE] = ACTIONS(1810), + [anon_sym_U_DQUOTE] = ACTIONS(1810), + [anon_sym_u8_DQUOTE] = ACTIONS(1810), + [anon_sym_DQUOTE] = ACTIONS(1810), + [sym_true] = ACTIONS(1808), + [sym_false] = ACTIONS(1808), + [sym_null] = ACTIONS(1808), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1810), + [anon_sym_ATimport] = ACTIONS(1810), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1808), + [anon_sym_ATcompatibility_alias] = ACTIONS(1810), + [anon_sym_ATprotocol] = ACTIONS(1810), + [anon_sym_ATclass] = ACTIONS(1810), + [anon_sym_ATinterface] = ACTIONS(1810), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1808), + [sym_method_attribute_specifier] = ACTIONS(1808), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1808), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1808), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1808), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1808), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1808), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1808), + [anon_sym_NS_AVAILABLE] = ACTIONS(1808), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1808), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1808), + [anon_sym_API_AVAILABLE] = ACTIONS(1808), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1808), + [anon_sym_API_DEPRECATED] = ACTIONS(1808), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1808), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1808), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1808), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1808), + [anon_sym___deprecated_msg] = ACTIONS(1808), + [anon_sym___deprecated_enum_msg] = ACTIONS(1808), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1808), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1808), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1808), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1808), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1808), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1808), + [anon_sym_ATimplementation] = ACTIONS(1810), + [anon_sym_NS_ENUM] = ACTIONS(1808), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1808), + [anon_sym_NS_OPTIONS] = ACTIONS(1808), + [anon_sym_typeof] = ACTIONS(1808), + [anon_sym___typeof] = ACTIONS(1808), + [anon_sym___typeof__] = ACTIONS(1808), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_nil] = ACTIONS(1808), + [sym_id] = ACTIONS(1808), + [sym_instancetype] = ACTIONS(1808), + [sym_Class] = ACTIONS(1808), + [sym_SEL] = ACTIONS(1808), + [sym_IMP] = ACTIONS(1808), + [sym_BOOL] = ACTIONS(1808), + [sym_auto] = ACTIONS(1808), + [anon_sym_ATautoreleasepool] = ACTIONS(1810), + [anon_sym_ATsynchronized] = ACTIONS(1810), + [anon_sym_ATtry] = ACTIONS(1810), + [anon_sym_ATthrow] = ACTIONS(1810), + [anon_sym_ATselector] = ACTIONS(1810), + [anon_sym_ATencode] = ACTIONS(1810), + [anon_sym_AT] = ACTIONS(1808), + [sym_YES] = ACTIONS(1808), + [sym_NO] = ACTIONS(1808), + [anon_sym___builtin_available] = ACTIONS(1808), + [anon_sym_ATavailable] = ACTIONS(1810), + [anon_sym_va_arg] = ACTIONS(1808), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1484] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1485] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1486] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1487] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1488] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1489] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1490] = { + [sym_identifier] = ACTIONS(2132), + [aux_sym_preproc_include_token1] = ACTIONS(2134), + [aux_sym_preproc_def_token1] = ACTIONS(2134), + [aux_sym_preproc_if_token1] = ACTIONS(2132), + [aux_sym_preproc_if_token2] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2132), + [anon_sym_LPAREN2] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_TILDE] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_CARET] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_typedef] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym___attribute] = ACTIONS(2132), + [anon_sym___attribute__] = ACTIONS(2132), + [anon_sym___declspec] = ACTIONS(2132), + [anon_sym___cdecl] = ACTIONS(2132), + [anon_sym___clrcall] = ACTIONS(2132), + [anon_sym___stdcall] = ACTIONS(2132), + [anon_sym___fastcall] = ACTIONS(2132), + [anon_sym___thiscall] = ACTIONS(2132), + [anon_sym___vectorcall] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_auto] = ACTIONS(2132), + [anon_sym_register] = ACTIONS(2132), + [anon_sym_inline] = ACTIONS(2132), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_volatile] = ACTIONS(2132), + [anon_sym_restrict] = ACTIONS(2132), + [anon_sym__Atomic] = ACTIONS(2132), + [anon_sym_in] = ACTIONS(2132), + [anon_sym_out] = ACTIONS(2132), + [anon_sym_inout] = ACTIONS(2132), + [anon_sym_bycopy] = ACTIONS(2132), + [anon_sym_byref] = ACTIONS(2132), + [anon_sym_oneway] = ACTIONS(2132), + [anon_sym__Nullable] = ACTIONS(2132), + [anon_sym__Nonnull] = ACTIONS(2132), + [anon_sym__Nullable_result] = ACTIONS(2132), + [anon_sym__Null_unspecified] = ACTIONS(2132), + [anon_sym___autoreleasing] = ACTIONS(2132), + [anon_sym___nullable] = ACTIONS(2132), + [anon_sym___nonnull] = ACTIONS(2132), + [anon_sym___strong] = ACTIONS(2132), + [anon_sym___weak] = ACTIONS(2132), + [anon_sym___bridge] = ACTIONS(2132), + [anon_sym___bridge_transfer] = ACTIONS(2132), + [anon_sym___bridge_retained] = ACTIONS(2132), + [anon_sym___unsafe_unretained] = ACTIONS(2132), + [anon_sym___block] = ACTIONS(2132), + [anon_sym___kindof] = ACTIONS(2132), + [anon_sym___unused] = ACTIONS(2132), + [anon_sym__Complex] = ACTIONS(2132), + [anon_sym___complex] = ACTIONS(2132), + [anon_sym_IBOutlet] = ACTIONS(2132), + [anon_sym_IBInspectable] = ACTIONS(2132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2132), + [anon_sym_signed] = ACTIONS(2132), + [anon_sym_unsigned] = ACTIONS(2132), + [anon_sym_long] = ACTIONS(2132), + [anon_sym_short] = ACTIONS(2132), + [sym_primitive_type] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_switch] = ACTIONS(2132), + [anon_sym_case] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_do] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_goto] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2134), + [anon_sym_PLUS_PLUS] = ACTIONS(2134), + [anon_sym_sizeof] = ACTIONS(2132), + [sym_number_literal] = ACTIONS(2134), + [anon_sym_L_SQUOTE] = ACTIONS(2134), + [anon_sym_u_SQUOTE] = ACTIONS(2134), + [anon_sym_U_SQUOTE] = ACTIONS(2134), + [anon_sym_u8_SQUOTE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_L_DQUOTE] = ACTIONS(2134), + [anon_sym_u_DQUOTE] = ACTIONS(2134), + [anon_sym_U_DQUOTE] = ACTIONS(2134), + [anon_sym_u8_DQUOTE] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(2134), + [sym_true] = ACTIONS(2132), + [sym_false] = ACTIONS(2132), + [sym_null] = ACTIONS(2132), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2134), + [anon_sym_ATimport] = ACTIONS(2134), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2132), + [anon_sym_ATcompatibility_alias] = ACTIONS(2134), + [anon_sym_ATprotocol] = ACTIONS(2134), + [anon_sym_ATclass] = ACTIONS(2134), + [anon_sym_ATinterface] = ACTIONS(2134), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2132), + [sym_method_attribute_specifier] = ACTIONS(2132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE] = ACTIONS(2132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_API_AVAILABLE] = ACTIONS(2132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_API_DEPRECATED] = ACTIONS(2132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2132), + [anon_sym___deprecated_msg] = ACTIONS(2132), + [anon_sym___deprecated_enum_msg] = ACTIONS(2132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2132), + [anon_sym_ATimplementation] = ACTIONS(2134), + [anon_sym_NS_ENUM] = ACTIONS(2132), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2132), + [anon_sym_NS_OPTIONS] = ACTIONS(2132), + [anon_sym_typeof] = ACTIONS(2132), + [anon_sym___typeof] = ACTIONS(2132), + [anon_sym___typeof__] = ACTIONS(2132), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_nil] = ACTIONS(2132), + [sym_id] = ACTIONS(2132), + [sym_instancetype] = ACTIONS(2132), + [sym_Class] = ACTIONS(2132), + [sym_SEL] = ACTIONS(2132), + [sym_IMP] = ACTIONS(2132), + [sym_BOOL] = ACTIONS(2132), + [sym_auto] = ACTIONS(2132), + [anon_sym_ATautoreleasepool] = ACTIONS(2134), + [anon_sym_ATsynchronized] = ACTIONS(2134), + [anon_sym_ATtry] = ACTIONS(2134), + [anon_sym_ATthrow] = ACTIONS(2134), + [anon_sym_ATselector] = ACTIONS(2134), + [anon_sym_ATencode] = ACTIONS(2134), + [anon_sym_AT] = ACTIONS(2132), + [sym_YES] = ACTIONS(2132), + [sym_NO] = ACTIONS(2132), + [anon_sym___builtin_available] = ACTIONS(2132), + [anon_sym_ATavailable] = ACTIONS(2134), + [anon_sym_va_arg] = ACTIONS(2132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1491] = { + [sym_identifier] = ACTIONS(1804), + [aux_sym_preproc_include_token1] = ACTIONS(1806), + [aux_sym_preproc_def_token1] = ACTIONS(1806), + [aux_sym_preproc_if_token1] = ACTIONS(1804), + [aux_sym_preproc_if_token2] = ACTIONS(1804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1804), + [anon_sym_LPAREN2] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1804), + [anon_sym_STAR] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_typedef] = ACTIONS(1804), + [anon_sym_extern] = ACTIONS(1804), + [anon_sym___attribute] = ACTIONS(1804), + [anon_sym___attribute__] = ACTIONS(1804), + [anon_sym___declspec] = ACTIONS(1804), + [anon_sym___cdecl] = ACTIONS(1804), + [anon_sym___clrcall] = ACTIONS(1804), + [anon_sym___stdcall] = ACTIONS(1804), + [anon_sym___fastcall] = ACTIONS(1804), + [anon_sym___thiscall] = ACTIONS(1804), + [anon_sym___vectorcall] = ACTIONS(1804), + [anon_sym_LBRACE] = ACTIONS(1806), + [anon_sym_LBRACK] = ACTIONS(1806), + [anon_sym_static] = ACTIONS(1804), + [anon_sym_auto] = ACTIONS(1804), + [anon_sym_register] = ACTIONS(1804), + [anon_sym_inline] = ACTIONS(1804), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_volatile] = ACTIONS(1804), + [anon_sym_restrict] = ACTIONS(1804), + [anon_sym__Atomic] = ACTIONS(1804), + [anon_sym_in] = ACTIONS(1804), + [anon_sym_out] = ACTIONS(1804), + [anon_sym_inout] = ACTIONS(1804), + [anon_sym_bycopy] = ACTIONS(1804), + [anon_sym_byref] = ACTIONS(1804), + [anon_sym_oneway] = ACTIONS(1804), + [anon_sym__Nullable] = ACTIONS(1804), + [anon_sym__Nonnull] = ACTIONS(1804), + [anon_sym__Nullable_result] = ACTIONS(1804), + [anon_sym__Null_unspecified] = ACTIONS(1804), + [anon_sym___autoreleasing] = ACTIONS(1804), + [anon_sym___nullable] = ACTIONS(1804), + [anon_sym___nonnull] = ACTIONS(1804), + [anon_sym___strong] = ACTIONS(1804), + [anon_sym___weak] = ACTIONS(1804), + [anon_sym___bridge] = ACTIONS(1804), + [anon_sym___bridge_transfer] = ACTIONS(1804), + [anon_sym___bridge_retained] = ACTIONS(1804), + [anon_sym___unsafe_unretained] = ACTIONS(1804), + [anon_sym___block] = ACTIONS(1804), + [anon_sym___kindof] = ACTIONS(1804), + [anon_sym___unused] = ACTIONS(1804), + [anon_sym__Complex] = ACTIONS(1804), + [anon_sym___complex] = ACTIONS(1804), + [anon_sym_IBOutlet] = ACTIONS(1804), + [anon_sym_IBInspectable] = ACTIONS(1804), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1804), + [anon_sym_signed] = ACTIONS(1804), + [anon_sym_unsigned] = ACTIONS(1804), + [anon_sym_long] = ACTIONS(1804), + [anon_sym_short] = ACTIONS(1804), + [sym_primitive_type] = ACTIONS(1804), + [anon_sym_enum] = ACTIONS(1804), + [anon_sym_struct] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_if] = ACTIONS(1804), + [anon_sym_switch] = ACTIONS(1804), + [anon_sym_case] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_while] = ACTIONS(1804), + [anon_sym_do] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1804), + [anon_sym_return] = ACTIONS(1804), + [anon_sym_break] = ACTIONS(1804), + [anon_sym_continue] = ACTIONS(1804), + [anon_sym_goto] = ACTIONS(1804), + [anon_sym_DASH_DASH] = ACTIONS(1806), + [anon_sym_PLUS_PLUS] = ACTIONS(1806), + [anon_sym_sizeof] = ACTIONS(1804), + [sym_number_literal] = ACTIONS(1806), + [anon_sym_L_SQUOTE] = ACTIONS(1806), + [anon_sym_u_SQUOTE] = ACTIONS(1806), + [anon_sym_U_SQUOTE] = ACTIONS(1806), + [anon_sym_u8_SQUOTE] = ACTIONS(1806), + [anon_sym_SQUOTE] = ACTIONS(1806), + [anon_sym_L_DQUOTE] = ACTIONS(1806), + [anon_sym_u_DQUOTE] = ACTIONS(1806), + [anon_sym_U_DQUOTE] = ACTIONS(1806), + [anon_sym_u8_DQUOTE] = ACTIONS(1806), + [anon_sym_DQUOTE] = ACTIONS(1806), + [sym_true] = ACTIONS(1804), + [sym_false] = ACTIONS(1804), + [sym_null] = ACTIONS(1804), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1806), + [anon_sym_ATimport] = ACTIONS(1806), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1804), + [anon_sym_ATcompatibility_alias] = ACTIONS(1806), + [anon_sym_ATprotocol] = ACTIONS(1806), + [anon_sym_ATclass] = ACTIONS(1806), + [anon_sym_ATinterface] = ACTIONS(1806), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1804), + [sym_method_attribute_specifier] = ACTIONS(1804), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1804), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1804), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1804), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1804), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1804), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1804), + [anon_sym_NS_AVAILABLE] = ACTIONS(1804), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1804), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1804), + [anon_sym_API_AVAILABLE] = ACTIONS(1804), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1804), + [anon_sym_API_DEPRECATED] = ACTIONS(1804), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1804), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1804), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1804), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1804), + [anon_sym___deprecated_msg] = ACTIONS(1804), + [anon_sym___deprecated_enum_msg] = ACTIONS(1804), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1804), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1804), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1804), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1804), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1804), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1804), + [anon_sym_ATimplementation] = ACTIONS(1806), + [anon_sym_NS_ENUM] = ACTIONS(1804), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1804), + [anon_sym_NS_OPTIONS] = ACTIONS(1804), + [anon_sym_typeof] = ACTIONS(1804), + [anon_sym___typeof] = ACTIONS(1804), + [anon_sym___typeof__] = ACTIONS(1804), + [sym_self] = ACTIONS(1804), + [sym_super] = ACTIONS(1804), + [sym_nil] = ACTIONS(1804), + [sym_id] = ACTIONS(1804), + [sym_instancetype] = ACTIONS(1804), + [sym_Class] = ACTIONS(1804), + [sym_SEL] = ACTIONS(1804), + [sym_IMP] = ACTIONS(1804), + [sym_BOOL] = ACTIONS(1804), + [sym_auto] = ACTIONS(1804), + [anon_sym_ATautoreleasepool] = ACTIONS(1806), + [anon_sym_ATsynchronized] = ACTIONS(1806), + [anon_sym_ATtry] = ACTIONS(1806), + [anon_sym_ATthrow] = ACTIONS(1806), + [anon_sym_ATselector] = ACTIONS(1806), + [anon_sym_ATencode] = ACTIONS(1806), + [anon_sym_AT] = ACTIONS(1804), + [sym_YES] = ACTIONS(1804), + [sym_NO] = ACTIONS(1804), + [anon_sym___builtin_available] = ACTIONS(1804), + [anon_sym_ATavailable] = ACTIONS(1806), + [anon_sym_va_arg] = ACTIONS(1804), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1492] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1493] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1494] = { + [sym_identifier] = ACTIONS(1800), + [aux_sym_preproc_include_token1] = ACTIONS(1802), + [aux_sym_preproc_def_token1] = ACTIONS(1802), + [aux_sym_preproc_if_token1] = ACTIONS(1800), + [aux_sym_preproc_if_token2] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1800), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_CARET] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_typedef] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1800), + [anon_sym___attribute] = ACTIONS(1800), + [anon_sym___attribute__] = ACTIONS(1800), + [anon_sym___declspec] = ACTIONS(1800), + [anon_sym___cdecl] = ACTIONS(1800), + [anon_sym___clrcall] = ACTIONS(1800), + [anon_sym___stdcall] = ACTIONS(1800), + [anon_sym___fastcall] = ACTIONS(1800), + [anon_sym___thiscall] = ACTIONS(1800), + [anon_sym___vectorcall] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1800), + [anon_sym_auto] = ACTIONS(1800), + [anon_sym_register] = ACTIONS(1800), + [anon_sym_inline] = ACTIONS(1800), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_volatile] = ACTIONS(1800), + [anon_sym_restrict] = ACTIONS(1800), + [anon_sym__Atomic] = ACTIONS(1800), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_out] = ACTIONS(1800), + [anon_sym_inout] = ACTIONS(1800), + [anon_sym_bycopy] = ACTIONS(1800), + [anon_sym_byref] = ACTIONS(1800), + [anon_sym_oneway] = ACTIONS(1800), + [anon_sym__Nullable] = ACTIONS(1800), + [anon_sym__Nonnull] = ACTIONS(1800), + [anon_sym__Nullable_result] = ACTIONS(1800), + [anon_sym__Null_unspecified] = ACTIONS(1800), + [anon_sym___autoreleasing] = ACTIONS(1800), + [anon_sym___nullable] = ACTIONS(1800), + [anon_sym___nonnull] = ACTIONS(1800), + [anon_sym___strong] = ACTIONS(1800), + [anon_sym___weak] = ACTIONS(1800), + [anon_sym___bridge] = ACTIONS(1800), + [anon_sym___bridge_transfer] = ACTIONS(1800), + [anon_sym___bridge_retained] = ACTIONS(1800), + [anon_sym___unsafe_unretained] = ACTIONS(1800), + [anon_sym___block] = ACTIONS(1800), + [anon_sym___kindof] = ACTIONS(1800), + [anon_sym___unused] = ACTIONS(1800), + [anon_sym__Complex] = ACTIONS(1800), + [anon_sym___complex] = ACTIONS(1800), + [anon_sym_IBOutlet] = ACTIONS(1800), + [anon_sym_IBInspectable] = ACTIONS(1800), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1800), + [anon_sym_signed] = ACTIONS(1800), + [anon_sym_unsigned] = ACTIONS(1800), + [anon_sym_long] = ACTIONS(1800), + [anon_sym_short] = ACTIONS(1800), + [sym_primitive_type] = ACTIONS(1800), + [anon_sym_enum] = ACTIONS(1800), + [anon_sym_struct] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_do] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_goto] = ACTIONS(1800), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1802), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(1802), + [anon_sym_L_SQUOTE] = ACTIONS(1802), + [anon_sym_u_SQUOTE] = ACTIONS(1802), + [anon_sym_U_SQUOTE] = ACTIONS(1802), + [anon_sym_u8_SQUOTE] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_L_DQUOTE] = ACTIONS(1802), + [anon_sym_u_DQUOTE] = ACTIONS(1802), + [anon_sym_U_DQUOTE] = ACTIONS(1802), + [anon_sym_u8_DQUOTE] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym_true] = ACTIONS(1800), + [sym_false] = ACTIONS(1800), + [sym_null] = ACTIONS(1800), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1802), + [anon_sym_ATimport] = ACTIONS(1802), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1800), + [anon_sym_ATcompatibility_alias] = ACTIONS(1802), + [anon_sym_ATprotocol] = ACTIONS(1802), + [anon_sym_ATclass] = ACTIONS(1802), + [anon_sym_ATinterface] = ACTIONS(1802), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1800), + [sym_method_attribute_specifier] = ACTIONS(1800), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1800), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE] = ACTIONS(1800), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_API_AVAILABLE] = ACTIONS(1800), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_API_DEPRECATED] = ACTIONS(1800), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1800), + [anon_sym___deprecated_msg] = ACTIONS(1800), + [anon_sym___deprecated_enum_msg] = ACTIONS(1800), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1800), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1800), + [anon_sym_ATimplementation] = ACTIONS(1802), + [anon_sym_NS_ENUM] = ACTIONS(1800), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1800), + [anon_sym_NS_OPTIONS] = ACTIONS(1800), + [anon_sym_typeof] = ACTIONS(1800), + [anon_sym___typeof] = ACTIONS(1800), + [anon_sym___typeof__] = ACTIONS(1800), + [sym_self] = ACTIONS(1800), + [sym_super] = ACTIONS(1800), + [sym_nil] = ACTIONS(1800), + [sym_id] = ACTIONS(1800), + [sym_instancetype] = ACTIONS(1800), + [sym_Class] = ACTIONS(1800), + [sym_SEL] = ACTIONS(1800), + [sym_IMP] = ACTIONS(1800), + [sym_BOOL] = ACTIONS(1800), + [sym_auto] = ACTIONS(1800), + [anon_sym_ATautoreleasepool] = ACTIONS(1802), + [anon_sym_ATsynchronized] = ACTIONS(1802), + [anon_sym_ATtry] = ACTIONS(1802), + [anon_sym_ATthrow] = ACTIONS(1802), + [anon_sym_ATselector] = ACTIONS(1802), + [anon_sym_ATencode] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1800), + [sym_YES] = ACTIONS(1800), + [sym_NO] = ACTIONS(1800), + [anon_sym___builtin_available] = ACTIONS(1800), + [anon_sym_ATavailable] = ACTIONS(1802), + [anon_sym_va_arg] = ACTIONS(1800), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1495] = { + [sym_identifier] = ACTIONS(1800), + [aux_sym_preproc_include_token1] = ACTIONS(1802), + [aux_sym_preproc_def_token1] = ACTIONS(1802), + [aux_sym_preproc_if_token1] = ACTIONS(1800), + [aux_sym_preproc_if_token2] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1800), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_CARET] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_typedef] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1800), + [anon_sym___attribute] = ACTIONS(1800), + [anon_sym___attribute__] = ACTIONS(1800), + [anon_sym___declspec] = ACTIONS(1800), + [anon_sym___cdecl] = ACTIONS(1800), + [anon_sym___clrcall] = ACTIONS(1800), + [anon_sym___stdcall] = ACTIONS(1800), + [anon_sym___fastcall] = ACTIONS(1800), + [anon_sym___thiscall] = ACTIONS(1800), + [anon_sym___vectorcall] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1800), + [anon_sym_auto] = ACTIONS(1800), + [anon_sym_register] = ACTIONS(1800), + [anon_sym_inline] = ACTIONS(1800), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_volatile] = ACTIONS(1800), + [anon_sym_restrict] = ACTIONS(1800), + [anon_sym__Atomic] = ACTIONS(1800), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_out] = ACTIONS(1800), + [anon_sym_inout] = ACTIONS(1800), + [anon_sym_bycopy] = ACTIONS(1800), + [anon_sym_byref] = ACTIONS(1800), + [anon_sym_oneway] = ACTIONS(1800), + [anon_sym__Nullable] = ACTIONS(1800), + [anon_sym__Nonnull] = ACTIONS(1800), + [anon_sym__Nullable_result] = ACTIONS(1800), + [anon_sym__Null_unspecified] = ACTIONS(1800), + [anon_sym___autoreleasing] = ACTIONS(1800), + [anon_sym___nullable] = ACTIONS(1800), + [anon_sym___nonnull] = ACTIONS(1800), + [anon_sym___strong] = ACTIONS(1800), + [anon_sym___weak] = ACTIONS(1800), + [anon_sym___bridge] = ACTIONS(1800), + [anon_sym___bridge_transfer] = ACTIONS(1800), + [anon_sym___bridge_retained] = ACTIONS(1800), + [anon_sym___unsafe_unretained] = ACTIONS(1800), + [anon_sym___block] = ACTIONS(1800), + [anon_sym___kindof] = ACTIONS(1800), + [anon_sym___unused] = ACTIONS(1800), + [anon_sym__Complex] = ACTIONS(1800), + [anon_sym___complex] = ACTIONS(1800), + [anon_sym_IBOutlet] = ACTIONS(1800), + [anon_sym_IBInspectable] = ACTIONS(1800), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1800), + [anon_sym_signed] = ACTIONS(1800), + [anon_sym_unsigned] = ACTIONS(1800), + [anon_sym_long] = ACTIONS(1800), + [anon_sym_short] = ACTIONS(1800), + [sym_primitive_type] = ACTIONS(1800), + [anon_sym_enum] = ACTIONS(1800), + [anon_sym_struct] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_do] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_goto] = ACTIONS(1800), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1802), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(1802), + [anon_sym_L_SQUOTE] = ACTIONS(1802), + [anon_sym_u_SQUOTE] = ACTIONS(1802), + [anon_sym_U_SQUOTE] = ACTIONS(1802), + [anon_sym_u8_SQUOTE] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_L_DQUOTE] = ACTIONS(1802), + [anon_sym_u_DQUOTE] = ACTIONS(1802), + [anon_sym_U_DQUOTE] = ACTIONS(1802), + [anon_sym_u8_DQUOTE] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym_true] = ACTIONS(1800), + [sym_false] = ACTIONS(1800), + [sym_null] = ACTIONS(1800), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1802), + [anon_sym_ATimport] = ACTIONS(1802), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1800), + [anon_sym_ATcompatibility_alias] = ACTIONS(1802), + [anon_sym_ATprotocol] = ACTIONS(1802), + [anon_sym_ATclass] = ACTIONS(1802), + [anon_sym_ATinterface] = ACTIONS(1802), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1800), + [sym_method_attribute_specifier] = ACTIONS(1800), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1800), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE] = ACTIONS(1800), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_API_AVAILABLE] = ACTIONS(1800), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_API_DEPRECATED] = ACTIONS(1800), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1800), + [anon_sym___deprecated_msg] = ACTIONS(1800), + [anon_sym___deprecated_enum_msg] = ACTIONS(1800), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1800), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1800), + [anon_sym_ATimplementation] = ACTIONS(1802), + [anon_sym_NS_ENUM] = ACTIONS(1800), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1800), + [anon_sym_NS_OPTIONS] = ACTIONS(1800), + [anon_sym_typeof] = ACTIONS(1800), + [anon_sym___typeof] = ACTIONS(1800), + [anon_sym___typeof__] = ACTIONS(1800), + [sym_self] = ACTIONS(1800), + [sym_super] = ACTIONS(1800), + [sym_nil] = ACTIONS(1800), + [sym_id] = ACTIONS(1800), + [sym_instancetype] = ACTIONS(1800), + [sym_Class] = ACTIONS(1800), + [sym_SEL] = ACTIONS(1800), + [sym_IMP] = ACTIONS(1800), + [sym_BOOL] = ACTIONS(1800), + [sym_auto] = ACTIONS(1800), + [anon_sym_ATautoreleasepool] = ACTIONS(1802), + [anon_sym_ATsynchronized] = ACTIONS(1802), + [anon_sym_ATtry] = ACTIONS(1802), + [anon_sym_ATthrow] = ACTIONS(1802), + [anon_sym_ATselector] = ACTIONS(1802), + [anon_sym_ATencode] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1800), + [sym_YES] = ACTIONS(1800), + [sym_NO] = ACTIONS(1800), + [anon_sym___builtin_available] = ACTIONS(1800), + [anon_sym_ATavailable] = ACTIONS(1802), + [anon_sym_va_arg] = ACTIONS(1800), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1496] = { + [sym_identifier] = ACTIONS(1800), + [aux_sym_preproc_include_token1] = ACTIONS(1802), + [aux_sym_preproc_def_token1] = ACTIONS(1802), + [aux_sym_preproc_if_token1] = ACTIONS(1800), + [aux_sym_preproc_if_token2] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1800), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_CARET] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_typedef] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1800), + [anon_sym___attribute] = ACTIONS(1800), + [anon_sym___attribute__] = ACTIONS(1800), + [anon_sym___declspec] = ACTIONS(1800), + [anon_sym___cdecl] = ACTIONS(1800), + [anon_sym___clrcall] = ACTIONS(1800), + [anon_sym___stdcall] = ACTIONS(1800), + [anon_sym___fastcall] = ACTIONS(1800), + [anon_sym___thiscall] = ACTIONS(1800), + [anon_sym___vectorcall] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1800), + [anon_sym_auto] = ACTIONS(1800), + [anon_sym_register] = ACTIONS(1800), + [anon_sym_inline] = ACTIONS(1800), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_volatile] = ACTIONS(1800), + [anon_sym_restrict] = ACTIONS(1800), + [anon_sym__Atomic] = ACTIONS(1800), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_out] = ACTIONS(1800), + [anon_sym_inout] = ACTIONS(1800), + [anon_sym_bycopy] = ACTIONS(1800), + [anon_sym_byref] = ACTIONS(1800), + [anon_sym_oneway] = ACTIONS(1800), + [anon_sym__Nullable] = ACTIONS(1800), + [anon_sym__Nonnull] = ACTIONS(1800), + [anon_sym__Nullable_result] = ACTIONS(1800), + [anon_sym__Null_unspecified] = ACTIONS(1800), + [anon_sym___autoreleasing] = ACTIONS(1800), + [anon_sym___nullable] = ACTIONS(1800), + [anon_sym___nonnull] = ACTIONS(1800), + [anon_sym___strong] = ACTIONS(1800), + [anon_sym___weak] = ACTIONS(1800), + [anon_sym___bridge] = ACTIONS(1800), + [anon_sym___bridge_transfer] = ACTIONS(1800), + [anon_sym___bridge_retained] = ACTIONS(1800), + [anon_sym___unsafe_unretained] = ACTIONS(1800), + [anon_sym___block] = ACTIONS(1800), + [anon_sym___kindof] = ACTIONS(1800), + [anon_sym___unused] = ACTIONS(1800), + [anon_sym__Complex] = ACTIONS(1800), + [anon_sym___complex] = ACTIONS(1800), + [anon_sym_IBOutlet] = ACTIONS(1800), + [anon_sym_IBInspectable] = ACTIONS(1800), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1800), + [anon_sym_signed] = ACTIONS(1800), + [anon_sym_unsigned] = ACTIONS(1800), + [anon_sym_long] = ACTIONS(1800), + [anon_sym_short] = ACTIONS(1800), + [sym_primitive_type] = ACTIONS(1800), + [anon_sym_enum] = ACTIONS(1800), + [anon_sym_struct] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_do] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_goto] = ACTIONS(1800), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1802), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(1802), + [anon_sym_L_SQUOTE] = ACTIONS(1802), + [anon_sym_u_SQUOTE] = ACTIONS(1802), + [anon_sym_U_SQUOTE] = ACTIONS(1802), + [anon_sym_u8_SQUOTE] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_L_DQUOTE] = ACTIONS(1802), + [anon_sym_u_DQUOTE] = ACTIONS(1802), + [anon_sym_U_DQUOTE] = ACTIONS(1802), + [anon_sym_u8_DQUOTE] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym_true] = ACTIONS(1800), + [sym_false] = ACTIONS(1800), + [sym_null] = ACTIONS(1800), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1802), + [anon_sym_ATimport] = ACTIONS(1802), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1800), + [anon_sym_ATcompatibility_alias] = ACTIONS(1802), + [anon_sym_ATprotocol] = ACTIONS(1802), + [anon_sym_ATclass] = ACTIONS(1802), + [anon_sym_ATinterface] = ACTIONS(1802), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1800), + [sym_method_attribute_specifier] = ACTIONS(1800), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1800), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE] = ACTIONS(1800), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_API_AVAILABLE] = ACTIONS(1800), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_API_DEPRECATED] = ACTIONS(1800), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1800), + [anon_sym___deprecated_msg] = ACTIONS(1800), + [anon_sym___deprecated_enum_msg] = ACTIONS(1800), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1800), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1800), + [anon_sym_ATimplementation] = ACTIONS(1802), + [anon_sym_NS_ENUM] = ACTIONS(1800), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1800), + [anon_sym_NS_OPTIONS] = ACTIONS(1800), + [anon_sym_typeof] = ACTIONS(1800), + [anon_sym___typeof] = ACTIONS(1800), + [anon_sym___typeof__] = ACTIONS(1800), + [sym_self] = ACTIONS(1800), + [sym_super] = ACTIONS(1800), + [sym_nil] = ACTIONS(1800), + [sym_id] = ACTIONS(1800), + [sym_instancetype] = ACTIONS(1800), + [sym_Class] = ACTIONS(1800), + [sym_SEL] = ACTIONS(1800), + [sym_IMP] = ACTIONS(1800), + [sym_BOOL] = ACTIONS(1800), + [sym_auto] = ACTIONS(1800), + [anon_sym_ATautoreleasepool] = ACTIONS(1802), + [anon_sym_ATsynchronized] = ACTIONS(1802), + [anon_sym_ATtry] = ACTIONS(1802), + [anon_sym_ATthrow] = ACTIONS(1802), + [anon_sym_ATselector] = ACTIONS(1802), + [anon_sym_ATencode] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1800), + [sym_YES] = ACTIONS(1800), + [sym_NO] = ACTIONS(1800), + [anon_sym___builtin_available] = ACTIONS(1800), + [anon_sym_ATavailable] = ACTIONS(1802), + [anon_sym_va_arg] = ACTIONS(1800), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1497] = { + [sym_identifier] = ACTIONS(1800), + [aux_sym_preproc_include_token1] = ACTIONS(1802), + [aux_sym_preproc_def_token1] = ACTIONS(1802), + [aux_sym_preproc_if_token1] = ACTIONS(1800), + [aux_sym_preproc_if_token2] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1800), + [anon_sym_LPAREN2] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1800), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_CARET] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_typedef] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1800), + [anon_sym___attribute] = ACTIONS(1800), + [anon_sym___attribute__] = ACTIONS(1800), + [anon_sym___declspec] = ACTIONS(1800), + [anon_sym___cdecl] = ACTIONS(1800), + [anon_sym___clrcall] = ACTIONS(1800), + [anon_sym___stdcall] = ACTIONS(1800), + [anon_sym___fastcall] = ACTIONS(1800), + [anon_sym___thiscall] = ACTIONS(1800), + [anon_sym___vectorcall] = ACTIONS(1800), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_static] = ACTIONS(1800), + [anon_sym_auto] = ACTIONS(1800), + [anon_sym_register] = ACTIONS(1800), + [anon_sym_inline] = ACTIONS(1800), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_volatile] = ACTIONS(1800), + [anon_sym_restrict] = ACTIONS(1800), + [anon_sym__Atomic] = ACTIONS(1800), + [anon_sym_in] = ACTIONS(1800), + [anon_sym_out] = ACTIONS(1800), + [anon_sym_inout] = ACTIONS(1800), + [anon_sym_bycopy] = ACTIONS(1800), + [anon_sym_byref] = ACTIONS(1800), + [anon_sym_oneway] = ACTIONS(1800), + [anon_sym__Nullable] = ACTIONS(1800), + [anon_sym__Nonnull] = ACTIONS(1800), + [anon_sym__Nullable_result] = ACTIONS(1800), + [anon_sym__Null_unspecified] = ACTIONS(1800), + [anon_sym___autoreleasing] = ACTIONS(1800), + [anon_sym___nullable] = ACTIONS(1800), + [anon_sym___nonnull] = ACTIONS(1800), + [anon_sym___strong] = ACTIONS(1800), + [anon_sym___weak] = ACTIONS(1800), + [anon_sym___bridge] = ACTIONS(1800), + [anon_sym___bridge_transfer] = ACTIONS(1800), + [anon_sym___bridge_retained] = ACTIONS(1800), + [anon_sym___unsafe_unretained] = ACTIONS(1800), + [anon_sym___block] = ACTIONS(1800), + [anon_sym___kindof] = ACTIONS(1800), + [anon_sym___unused] = ACTIONS(1800), + [anon_sym__Complex] = ACTIONS(1800), + [anon_sym___complex] = ACTIONS(1800), + [anon_sym_IBOutlet] = ACTIONS(1800), + [anon_sym_IBInspectable] = ACTIONS(1800), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1800), + [anon_sym_signed] = ACTIONS(1800), + [anon_sym_unsigned] = ACTIONS(1800), + [anon_sym_long] = ACTIONS(1800), + [anon_sym_short] = ACTIONS(1800), + [sym_primitive_type] = ACTIONS(1800), + [anon_sym_enum] = ACTIONS(1800), + [anon_sym_struct] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_switch] = ACTIONS(1800), + [anon_sym_case] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_do] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_goto] = ACTIONS(1800), + [anon_sym_DASH_DASH] = ACTIONS(1802), + [anon_sym_PLUS_PLUS] = ACTIONS(1802), + [anon_sym_sizeof] = ACTIONS(1800), + [sym_number_literal] = ACTIONS(1802), + [anon_sym_L_SQUOTE] = ACTIONS(1802), + [anon_sym_u_SQUOTE] = ACTIONS(1802), + [anon_sym_U_SQUOTE] = ACTIONS(1802), + [anon_sym_u8_SQUOTE] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1802), + [anon_sym_L_DQUOTE] = ACTIONS(1802), + [anon_sym_u_DQUOTE] = ACTIONS(1802), + [anon_sym_U_DQUOTE] = ACTIONS(1802), + [anon_sym_u8_DQUOTE] = ACTIONS(1802), + [anon_sym_DQUOTE] = ACTIONS(1802), + [sym_true] = ACTIONS(1800), + [sym_false] = ACTIONS(1800), + [sym_null] = ACTIONS(1800), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1802), + [anon_sym_ATimport] = ACTIONS(1802), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1800), + [anon_sym_ATcompatibility_alias] = ACTIONS(1802), + [anon_sym_ATprotocol] = ACTIONS(1802), + [anon_sym_ATclass] = ACTIONS(1802), + [anon_sym_ATinterface] = ACTIONS(1802), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1800), + [sym_method_attribute_specifier] = ACTIONS(1800), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1800), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1800), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE] = ACTIONS(1800), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1800), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_API_AVAILABLE] = ACTIONS(1800), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_API_DEPRECATED] = ACTIONS(1800), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1800), + [anon_sym___deprecated_msg] = ACTIONS(1800), + [anon_sym___deprecated_enum_msg] = ACTIONS(1800), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1800), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1800), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1800), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1800), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1800), + [anon_sym_ATimplementation] = ACTIONS(1802), + [anon_sym_NS_ENUM] = ACTIONS(1800), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1800), + [anon_sym_NS_OPTIONS] = ACTIONS(1800), + [anon_sym_typeof] = ACTIONS(1800), + [anon_sym___typeof] = ACTIONS(1800), + [anon_sym___typeof__] = ACTIONS(1800), + [sym_self] = ACTIONS(1800), + [sym_super] = ACTIONS(1800), + [sym_nil] = ACTIONS(1800), + [sym_id] = ACTIONS(1800), + [sym_instancetype] = ACTIONS(1800), + [sym_Class] = ACTIONS(1800), + [sym_SEL] = ACTIONS(1800), + [sym_IMP] = ACTIONS(1800), + [sym_BOOL] = ACTIONS(1800), + [sym_auto] = ACTIONS(1800), + [anon_sym_ATautoreleasepool] = ACTIONS(1802), + [anon_sym_ATsynchronized] = ACTIONS(1802), + [anon_sym_ATtry] = ACTIONS(1802), + [anon_sym_ATthrow] = ACTIONS(1802), + [anon_sym_ATselector] = ACTIONS(1802), + [anon_sym_ATencode] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1800), + [sym_YES] = ACTIONS(1800), + [sym_NO] = ACTIONS(1800), + [anon_sym___builtin_available] = ACTIONS(1800), + [anon_sym_ATavailable] = ACTIONS(1802), + [anon_sym_va_arg] = ACTIONS(1800), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1498] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1499] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1500] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1501] = { + [sym_identifier] = ACTIONS(1684), + [aux_sym_preproc_include_token1] = ACTIONS(1686), + [aux_sym_preproc_def_token1] = ACTIONS(1686), + [aux_sym_preproc_if_token1] = ACTIONS(1684), + [aux_sym_preproc_if_token2] = ACTIONS(1684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1684), + [anon_sym_LPAREN2] = ACTIONS(1686), + [anon_sym_BANG] = ACTIONS(1686), + [anon_sym_TILDE] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_STAR] = ACTIONS(1686), + [anon_sym_CARET] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_typedef] = ACTIONS(1684), + [anon_sym_extern] = ACTIONS(1684), + [anon_sym___attribute] = ACTIONS(1684), + [anon_sym___attribute__] = ACTIONS(1684), + [anon_sym___declspec] = ACTIONS(1684), + [anon_sym___cdecl] = ACTIONS(1684), + [anon_sym___clrcall] = ACTIONS(1684), + [anon_sym___stdcall] = ACTIONS(1684), + [anon_sym___fastcall] = ACTIONS(1684), + [anon_sym___thiscall] = ACTIONS(1684), + [anon_sym___vectorcall] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_static] = ACTIONS(1684), + [anon_sym_auto] = ACTIONS(1684), + [anon_sym_register] = ACTIONS(1684), + [anon_sym_inline] = ACTIONS(1684), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1684), + [anon_sym_const] = ACTIONS(1684), + [anon_sym_volatile] = ACTIONS(1684), + [anon_sym_restrict] = ACTIONS(1684), + [anon_sym__Atomic] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1684), + [anon_sym_out] = ACTIONS(1684), + [anon_sym_inout] = ACTIONS(1684), + [anon_sym_bycopy] = ACTIONS(1684), + [anon_sym_byref] = ACTIONS(1684), + [anon_sym_oneway] = ACTIONS(1684), + [anon_sym__Nullable] = ACTIONS(1684), + [anon_sym__Nonnull] = ACTIONS(1684), + [anon_sym__Nullable_result] = ACTIONS(1684), + [anon_sym__Null_unspecified] = ACTIONS(1684), + [anon_sym___autoreleasing] = ACTIONS(1684), + [anon_sym___nullable] = ACTIONS(1684), + [anon_sym___nonnull] = ACTIONS(1684), + [anon_sym___strong] = ACTIONS(1684), + [anon_sym___weak] = ACTIONS(1684), + [anon_sym___bridge] = ACTIONS(1684), + [anon_sym___bridge_transfer] = ACTIONS(1684), + [anon_sym___bridge_retained] = ACTIONS(1684), + [anon_sym___unsafe_unretained] = ACTIONS(1684), + [anon_sym___block] = ACTIONS(1684), + [anon_sym___kindof] = ACTIONS(1684), + [anon_sym___unused] = ACTIONS(1684), + [anon_sym__Complex] = ACTIONS(1684), + [anon_sym___complex] = ACTIONS(1684), + [anon_sym_IBOutlet] = ACTIONS(1684), + [anon_sym_IBInspectable] = ACTIONS(1684), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1684), + [anon_sym_signed] = ACTIONS(1684), + [anon_sym_unsigned] = ACTIONS(1684), + [anon_sym_long] = ACTIONS(1684), + [anon_sym_short] = ACTIONS(1684), + [sym_primitive_type] = ACTIONS(1684), + [anon_sym_enum] = ACTIONS(1684), + [anon_sym_struct] = ACTIONS(1684), + [anon_sym_union] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1684), + [anon_sym_switch] = ACTIONS(1684), + [anon_sym_case] = ACTIONS(1684), + [anon_sym_default] = ACTIONS(1684), + [anon_sym_while] = ACTIONS(1684), + [anon_sym_do] = ACTIONS(1684), + [anon_sym_for] = ACTIONS(1684), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_break] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_sizeof] = ACTIONS(1684), + [sym_number_literal] = ACTIONS(1686), + [anon_sym_L_SQUOTE] = ACTIONS(1686), + [anon_sym_u_SQUOTE] = ACTIONS(1686), + [anon_sym_U_SQUOTE] = ACTIONS(1686), + [anon_sym_u8_SQUOTE] = ACTIONS(1686), + [anon_sym_SQUOTE] = ACTIONS(1686), + [anon_sym_L_DQUOTE] = ACTIONS(1686), + [anon_sym_u_DQUOTE] = ACTIONS(1686), + [anon_sym_U_DQUOTE] = ACTIONS(1686), + [anon_sym_u8_DQUOTE] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1686), + [sym_true] = ACTIONS(1684), + [sym_false] = ACTIONS(1684), + [sym_null] = ACTIONS(1684), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1686), + [anon_sym_ATimport] = ACTIONS(1686), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1684), + [anon_sym_ATcompatibility_alias] = ACTIONS(1686), + [anon_sym_ATprotocol] = ACTIONS(1686), + [anon_sym_ATclass] = ACTIONS(1686), + [anon_sym_ATinterface] = ACTIONS(1686), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1684), + [sym_method_attribute_specifier] = ACTIONS(1684), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1684), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1684), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1684), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1684), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1684), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1684), + [anon_sym_NS_AVAILABLE] = ACTIONS(1684), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1684), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_API_AVAILABLE] = ACTIONS(1684), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1684), + [anon_sym_API_DEPRECATED] = ACTIONS(1684), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1684), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1684), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1684), + [anon_sym___deprecated_msg] = ACTIONS(1684), + [anon_sym___deprecated_enum_msg] = ACTIONS(1684), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1684), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1684), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1684), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1684), + [anon_sym_ATimplementation] = ACTIONS(1686), + [anon_sym_NS_ENUM] = ACTIONS(1684), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1684), + [anon_sym_NS_OPTIONS] = ACTIONS(1684), + [anon_sym_typeof] = ACTIONS(1684), + [anon_sym___typeof] = ACTIONS(1684), + [anon_sym___typeof__] = ACTIONS(1684), + [sym_self] = ACTIONS(1684), + [sym_super] = ACTIONS(1684), + [sym_nil] = ACTIONS(1684), + [sym_id] = ACTIONS(1684), + [sym_instancetype] = ACTIONS(1684), + [sym_Class] = ACTIONS(1684), + [sym_SEL] = ACTIONS(1684), + [sym_IMP] = ACTIONS(1684), + [sym_BOOL] = ACTIONS(1684), + [sym_auto] = ACTIONS(1684), + [anon_sym_ATautoreleasepool] = ACTIONS(1686), + [anon_sym_ATsynchronized] = ACTIONS(1686), + [anon_sym_ATtry] = ACTIONS(1686), + [anon_sym_ATthrow] = ACTIONS(1686), + [anon_sym_ATselector] = ACTIONS(1686), + [anon_sym_ATencode] = ACTIONS(1686), + [anon_sym_AT] = ACTIONS(1684), + [sym_YES] = ACTIONS(1684), + [sym_NO] = ACTIONS(1684), + [anon_sym___builtin_available] = ACTIONS(1684), + [anon_sym_ATavailable] = ACTIONS(1686), + [anon_sym_va_arg] = ACTIONS(1684), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1502] = { + [sym_identifier] = ACTIONS(1680), + [aux_sym_preproc_include_token1] = ACTIONS(1682), + [aux_sym_preproc_def_token1] = ACTIONS(1682), + [aux_sym_preproc_if_token1] = ACTIONS(1680), + [aux_sym_preproc_if_token2] = ACTIONS(1680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1680), + [anon_sym_LPAREN2] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_TILDE] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_CARET] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_typedef] = ACTIONS(1680), + [anon_sym_extern] = ACTIONS(1680), + [anon_sym___attribute] = ACTIONS(1680), + [anon_sym___attribute__] = ACTIONS(1680), + [anon_sym___declspec] = ACTIONS(1680), + [anon_sym___cdecl] = ACTIONS(1680), + [anon_sym___clrcall] = ACTIONS(1680), + [anon_sym___stdcall] = ACTIONS(1680), + [anon_sym___fastcall] = ACTIONS(1680), + [anon_sym___thiscall] = ACTIONS(1680), + [anon_sym___vectorcall] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_static] = ACTIONS(1680), + [anon_sym_auto] = ACTIONS(1680), + [anon_sym_register] = ACTIONS(1680), + [anon_sym_inline] = ACTIONS(1680), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1680), + [anon_sym_const] = ACTIONS(1680), + [anon_sym_volatile] = ACTIONS(1680), + [anon_sym_restrict] = ACTIONS(1680), + [anon_sym__Atomic] = ACTIONS(1680), + [anon_sym_in] = ACTIONS(1680), + [anon_sym_out] = ACTIONS(1680), + [anon_sym_inout] = ACTIONS(1680), + [anon_sym_bycopy] = ACTIONS(1680), + [anon_sym_byref] = ACTIONS(1680), + [anon_sym_oneway] = ACTIONS(1680), + [anon_sym__Nullable] = ACTIONS(1680), + [anon_sym__Nonnull] = ACTIONS(1680), + [anon_sym__Nullable_result] = ACTIONS(1680), + [anon_sym__Null_unspecified] = ACTIONS(1680), + [anon_sym___autoreleasing] = ACTIONS(1680), + [anon_sym___nullable] = ACTIONS(1680), + [anon_sym___nonnull] = ACTIONS(1680), + [anon_sym___strong] = ACTIONS(1680), + [anon_sym___weak] = ACTIONS(1680), + [anon_sym___bridge] = ACTIONS(1680), + [anon_sym___bridge_transfer] = ACTIONS(1680), + [anon_sym___bridge_retained] = ACTIONS(1680), + [anon_sym___unsafe_unretained] = ACTIONS(1680), + [anon_sym___block] = ACTIONS(1680), + [anon_sym___kindof] = ACTIONS(1680), + [anon_sym___unused] = ACTIONS(1680), + [anon_sym__Complex] = ACTIONS(1680), + [anon_sym___complex] = ACTIONS(1680), + [anon_sym_IBOutlet] = ACTIONS(1680), + [anon_sym_IBInspectable] = ACTIONS(1680), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1680), + [anon_sym_signed] = ACTIONS(1680), + [anon_sym_unsigned] = ACTIONS(1680), + [anon_sym_long] = ACTIONS(1680), + [anon_sym_short] = ACTIONS(1680), + [sym_primitive_type] = ACTIONS(1680), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(1680), + [anon_sym_union] = ACTIONS(1680), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_switch] = ACTIONS(1680), + [anon_sym_case] = ACTIONS(1680), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1680), + [anon_sym_do] = ACTIONS(1680), + [anon_sym_for] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1680), + [anon_sym_continue] = ACTIONS(1680), + [anon_sym_goto] = ACTIONS(1680), + [anon_sym_DASH_DASH] = ACTIONS(1682), + [anon_sym_PLUS_PLUS] = ACTIONS(1682), + [anon_sym_sizeof] = ACTIONS(1680), + [sym_number_literal] = ACTIONS(1682), + [anon_sym_L_SQUOTE] = ACTIONS(1682), + [anon_sym_u_SQUOTE] = ACTIONS(1682), + [anon_sym_U_SQUOTE] = ACTIONS(1682), + [anon_sym_u8_SQUOTE] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1682), + [anon_sym_L_DQUOTE] = ACTIONS(1682), + [anon_sym_u_DQUOTE] = ACTIONS(1682), + [anon_sym_U_DQUOTE] = ACTIONS(1682), + [anon_sym_u8_DQUOTE] = ACTIONS(1682), + [anon_sym_DQUOTE] = ACTIONS(1682), + [sym_true] = ACTIONS(1680), + [sym_false] = ACTIONS(1680), + [sym_null] = ACTIONS(1680), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1682), + [anon_sym_ATimport] = ACTIONS(1682), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1680), + [anon_sym_ATcompatibility_alias] = ACTIONS(1682), + [anon_sym_ATprotocol] = ACTIONS(1682), + [anon_sym_ATclass] = ACTIONS(1682), + [anon_sym_ATinterface] = ACTIONS(1682), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1680), + [sym_method_attribute_specifier] = ACTIONS(1680), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1680), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1680), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1680), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1680), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1680), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1680), + [anon_sym_NS_AVAILABLE] = ACTIONS(1680), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1680), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_API_AVAILABLE] = ACTIONS(1680), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1680), + [anon_sym_API_DEPRECATED] = ACTIONS(1680), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1680), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1680), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1680), + [anon_sym___deprecated_msg] = ACTIONS(1680), + [anon_sym___deprecated_enum_msg] = ACTIONS(1680), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1680), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1680), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1680), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1680), + [anon_sym_ATimplementation] = ACTIONS(1682), + [anon_sym_NS_ENUM] = ACTIONS(1680), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1680), + [anon_sym_NS_OPTIONS] = ACTIONS(1680), + [anon_sym_typeof] = ACTIONS(1680), + [anon_sym___typeof] = ACTIONS(1680), + [anon_sym___typeof__] = ACTIONS(1680), + [sym_self] = ACTIONS(1680), + [sym_super] = ACTIONS(1680), + [sym_nil] = ACTIONS(1680), + [sym_id] = ACTIONS(1680), + [sym_instancetype] = ACTIONS(1680), + [sym_Class] = ACTIONS(1680), + [sym_SEL] = ACTIONS(1680), + [sym_IMP] = ACTIONS(1680), + [sym_BOOL] = ACTIONS(1680), + [sym_auto] = ACTIONS(1680), + [anon_sym_ATautoreleasepool] = ACTIONS(1682), + [anon_sym_ATsynchronized] = ACTIONS(1682), + [anon_sym_ATtry] = ACTIONS(1682), + [anon_sym_ATthrow] = ACTIONS(1682), + [anon_sym_ATselector] = ACTIONS(1682), + [anon_sym_ATencode] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(1680), + [sym_YES] = ACTIONS(1680), + [sym_NO] = ACTIONS(1680), + [anon_sym___builtin_available] = ACTIONS(1680), + [anon_sym_ATavailable] = ACTIONS(1682), + [anon_sym_va_arg] = ACTIONS(1680), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1503] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1504] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1505] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1506] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1507] = { + [sym_identifier] = ACTIONS(1796), + [aux_sym_preproc_include_token1] = ACTIONS(1798), + [aux_sym_preproc_def_token1] = ACTIONS(1798), + [aux_sym_preproc_if_token1] = ACTIONS(1796), + [aux_sym_preproc_if_token2] = ACTIONS(1796), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1796), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1796), + [anon_sym_LPAREN2] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_CARET] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_typedef] = ACTIONS(1796), + [anon_sym_extern] = ACTIONS(1796), + [anon_sym___attribute] = ACTIONS(1796), + [anon_sym___attribute__] = ACTIONS(1796), + [anon_sym___declspec] = ACTIONS(1796), + [anon_sym___cdecl] = ACTIONS(1796), + [anon_sym___clrcall] = ACTIONS(1796), + [anon_sym___stdcall] = ACTIONS(1796), + [anon_sym___fastcall] = ACTIONS(1796), + [anon_sym___thiscall] = ACTIONS(1796), + [anon_sym___vectorcall] = ACTIONS(1796), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_static] = ACTIONS(1796), + [anon_sym_auto] = ACTIONS(1796), + [anon_sym_register] = ACTIONS(1796), + [anon_sym_inline] = ACTIONS(1796), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1796), + [anon_sym_const] = ACTIONS(1796), + [anon_sym_volatile] = ACTIONS(1796), + [anon_sym_restrict] = ACTIONS(1796), + [anon_sym__Atomic] = ACTIONS(1796), + [anon_sym_in] = ACTIONS(1796), + [anon_sym_out] = ACTIONS(1796), + [anon_sym_inout] = ACTIONS(1796), + [anon_sym_bycopy] = ACTIONS(1796), + [anon_sym_byref] = ACTIONS(1796), + [anon_sym_oneway] = ACTIONS(1796), + [anon_sym__Nullable] = ACTIONS(1796), + [anon_sym__Nonnull] = ACTIONS(1796), + [anon_sym__Nullable_result] = ACTIONS(1796), + [anon_sym__Null_unspecified] = ACTIONS(1796), + [anon_sym___autoreleasing] = ACTIONS(1796), + [anon_sym___nullable] = ACTIONS(1796), + [anon_sym___nonnull] = ACTIONS(1796), + [anon_sym___strong] = ACTIONS(1796), + [anon_sym___weak] = ACTIONS(1796), + [anon_sym___bridge] = ACTIONS(1796), + [anon_sym___bridge_transfer] = ACTIONS(1796), + [anon_sym___bridge_retained] = ACTIONS(1796), + [anon_sym___unsafe_unretained] = ACTIONS(1796), + [anon_sym___block] = ACTIONS(1796), + [anon_sym___kindof] = ACTIONS(1796), + [anon_sym___unused] = ACTIONS(1796), + [anon_sym__Complex] = ACTIONS(1796), + [anon_sym___complex] = ACTIONS(1796), + [anon_sym_IBOutlet] = ACTIONS(1796), + [anon_sym_IBInspectable] = ACTIONS(1796), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1796), + [anon_sym_signed] = ACTIONS(1796), + [anon_sym_unsigned] = ACTIONS(1796), + [anon_sym_long] = ACTIONS(1796), + [anon_sym_short] = ACTIONS(1796), + [sym_primitive_type] = ACTIONS(1796), + [anon_sym_enum] = ACTIONS(1796), + [anon_sym_struct] = ACTIONS(1796), + [anon_sym_union] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_switch] = ACTIONS(1796), + [anon_sym_case] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_do] = ACTIONS(1796), + [anon_sym_for] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_goto] = ACTIONS(1796), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1796), + [sym_number_literal] = ACTIONS(1798), + [anon_sym_L_SQUOTE] = ACTIONS(1798), + [anon_sym_u_SQUOTE] = ACTIONS(1798), + [anon_sym_U_SQUOTE] = ACTIONS(1798), + [anon_sym_u8_SQUOTE] = ACTIONS(1798), + [anon_sym_SQUOTE] = ACTIONS(1798), + [anon_sym_L_DQUOTE] = ACTIONS(1798), + [anon_sym_u_DQUOTE] = ACTIONS(1798), + [anon_sym_U_DQUOTE] = ACTIONS(1798), + [anon_sym_u8_DQUOTE] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [sym_true] = ACTIONS(1796), + [sym_false] = ACTIONS(1796), + [sym_null] = ACTIONS(1796), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1798), + [anon_sym_ATimport] = ACTIONS(1798), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1796), + [anon_sym_ATcompatibility_alias] = ACTIONS(1798), + [anon_sym_ATprotocol] = ACTIONS(1798), + [anon_sym_ATclass] = ACTIONS(1798), + [anon_sym_ATinterface] = ACTIONS(1798), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1796), + [sym_method_attribute_specifier] = ACTIONS(1796), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1796), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1796), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1796), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1796), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1796), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1796), + [anon_sym_NS_AVAILABLE] = ACTIONS(1796), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1796), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1796), + [anon_sym_API_AVAILABLE] = ACTIONS(1796), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1796), + [anon_sym_API_DEPRECATED] = ACTIONS(1796), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1796), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1796), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1796), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1796), + [anon_sym___deprecated_msg] = ACTIONS(1796), + [anon_sym___deprecated_enum_msg] = ACTIONS(1796), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1796), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1796), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1796), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1796), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1796), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1796), + [anon_sym_ATimplementation] = ACTIONS(1798), + [anon_sym_NS_ENUM] = ACTIONS(1796), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1796), + [anon_sym_NS_OPTIONS] = ACTIONS(1796), + [anon_sym_typeof] = ACTIONS(1796), + [anon_sym___typeof] = ACTIONS(1796), + [anon_sym___typeof__] = ACTIONS(1796), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_nil] = ACTIONS(1796), + [sym_id] = ACTIONS(1796), + [sym_instancetype] = ACTIONS(1796), + [sym_Class] = ACTIONS(1796), + [sym_SEL] = ACTIONS(1796), + [sym_IMP] = ACTIONS(1796), + [sym_BOOL] = ACTIONS(1796), + [sym_auto] = ACTIONS(1796), + [anon_sym_ATautoreleasepool] = ACTIONS(1798), + [anon_sym_ATsynchronized] = ACTIONS(1798), + [anon_sym_ATtry] = ACTIONS(1798), + [anon_sym_ATthrow] = ACTIONS(1798), + [anon_sym_ATselector] = ACTIONS(1798), + [anon_sym_ATencode] = ACTIONS(1798), + [anon_sym_AT] = ACTIONS(1796), + [sym_YES] = ACTIONS(1796), + [sym_NO] = ACTIONS(1796), + [anon_sym___builtin_available] = ACTIONS(1796), + [anon_sym_ATavailable] = ACTIONS(1798), + [anon_sym_va_arg] = ACTIONS(1796), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1508] = { + [sym_identifier] = ACTIONS(1792), + [aux_sym_preproc_include_token1] = ACTIONS(1794), + [aux_sym_preproc_def_token1] = ACTIONS(1794), + [aux_sym_preproc_if_token1] = ACTIONS(1792), + [aux_sym_preproc_if_token2] = ACTIONS(1792), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1792), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1792), + [anon_sym_LPAREN2] = ACTIONS(1794), + [anon_sym_BANG] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(1794), + [anon_sym_CARET] = ACTIONS(1794), + [anon_sym_AMP] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_typedef] = ACTIONS(1792), + [anon_sym_extern] = ACTIONS(1792), + [anon_sym___attribute] = ACTIONS(1792), + [anon_sym___attribute__] = ACTIONS(1792), + [anon_sym___declspec] = ACTIONS(1792), + [anon_sym___cdecl] = ACTIONS(1792), + [anon_sym___clrcall] = ACTIONS(1792), + [anon_sym___stdcall] = ACTIONS(1792), + [anon_sym___fastcall] = ACTIONS(1792), + [anon_sym___thiscall] = ACTIONS(1792), + [anon_sym___vectorcall] = ACTIONS(1792), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_auto] = ACTIONS(1792), + [anon_sym_register] = ACTIONS(1792), + [anon_sym_inline] = ACTIONS(1792), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1792), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_volatile] = ACTIONS(1792), + [anon_sym_restrict] = ACTIONS(1792), + [anon_sym__Atomic] = ACTIONS(1792), + [anon_sym_in] = ACTIONS(1792), + [anon_sym_out] = ACTIONS(1792), + [anon_sym_inout] = ACTIONS(1792), + [anon_sym_bycopy] = ACTIONS(1792), + [anon_sym_byref] = ACTIONS(1792), + [anon_sym_oneway] = ACTIONS(1792), + [anon_sym__Nullable] = ACTIONS(1792), + [anon_sym__Nonnull] = ACTIONS(1792), + [anon_sym__Nullable_result] = ACTIONS(1792), + [anon_sym__Null_unspecified] = ACTIONS(1792), + [anon_sym___autoreleasing] = ACTIONS(1792), + [anon_sym___nullable] = ACTIONS(1792), + [anon_sym___nonnull] = ACTIONS(1792), + [anon_sym___strong] = ACTIONS(1792), + [anon_sym___weak] = ACTIONS(1792), + [anon_sym___bridge] = ACTIONS(1792), + [anon_sym___bridge_transfer] = ACTIONS(1792), + [anon_sym___bridge_retained] = ACTIONS(1792), + [anon_sym___unsafe_unretained] = ACTIONS(1792), + [anon_sym___block] = ACTIONS(1792), + [anon_sym___kindof] = ACTIONS(1792), + [anon_sym___unused] = ACTIONS(1792), + [anon_sym__Complex] = ACTIONS(1792), + [anon_sym___complex] = ACTIONS(1792), + [anon_sym_IBOutlet] = ACTIONS(1792), + [anon_sym_IBInspectable] = ACTIONS(1792), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1792), + [anon_sym_signed] = ACTIONS(1792), + [anon_sym_unsigned] = ACTIONS(1792), + [anon_sym_long] = ACTIONS(1792), + [anon_sym_short] = ACTIONS(1792), + [sym_primitive_type] = ACTIONS(1792), + [anon_sym_enum] = ACTIONS(1792), + [anon_sym_struct] = ACTIONS(1792), + [anon_sym_union] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1792), + [anon_sym_case] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1792), + [anon_sym_while] = ACTIONS(1792), + [anon_sym_do] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_return] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_goto] = ACTIONS(1792), + [anon_sym_DASH_DASH] = ACTIONS(1794), + [anon_sym_PLUS_PLUS] = ACTIONS(1794), + [anon_sym_sizeof] = ACTIONS(1792), + [sym_number_literal] = ACTIONS(1794), + [anon_sym_L_SQUOTE] = ACTIONS(1794), + [anon_sym_u_SQUOTE] = ACTIONS(1794), + [anon_sym_U_SQUOTE] = ACTIONS(1794), + [anon_sym_u8_SQUOTE] = ACTIONS(1794), + [anon_sym_SQUOTE] = ACTIONS(1794), + [anon_sym_L_DQUOTE] = ACTIONS(1794), + [anon_sym_u_DQUOTE] = ACTIONS(1794), + [anon_sym_U_DQUOTE] = ACTIONS(1794), + [anon_sym_u8_DQUOTE] = ACTIONS(1794), + [anon_sym_DQUOTE] = ACTIONS(1794), + [sym_true] = ACTIONS(1792), + [sym_false] = ACTIONS(1792), + [sym_null] = ACTIONS(1792), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1794), + [anon_sym_ATimport] = ACTIONS(1794), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1792), + [anon_sym_ATcompatibility_alias] = ACTIONS(1794), + [anon_sym_ATprotocol] = ACTIONS(1794), + [anon_sym_ATclass] = ACTIONS(1794), + [anon_sym_ATinterface] = ACTIONS(1794), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1792), + [sym_method_attribute_specifier] = ACTIONS(1792), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1792), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1792), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1792), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1792), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1792), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1792), + [anon_sym_NS_AVAILABLE] = ACTIONS(1792), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1792), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1792), + [anon_sym_API_AVAILABLE] = ACTIONS(1792), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1792), + [anon_sym_API_DEPRECATED] = ACTIONS(1792), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1792), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1792), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1792), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1792), + [anon_sym___deprecated_msg] = ACTIONS(1792), + [anon_sym___deprecated_enum_msg] = ACTIONS(1792), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1792), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1792), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1792), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1792), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1792), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1792), + [anon_sym_ATimplementation] = ACTIONS(1794), + [anon_sym_NS_ENUM] = ACTIONS(1792), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1792), + [anon_sym_NS_OPTIONS] = ACTIONS(1792), + [anon_sym_typeof] = ACTIONS(1792), + [anon_sym___typeof] = ACTIONS(1792), + [anon_sym___typeof__] = ACTIONS(1792), + [sym_self] = ACTIONS(1792), + [sym_super] = ACTIONS(1792), + [sym_nil] = ACTIONS(1792), + [sym_id] = ACTIONS(1792), + [sym_instancetype] = ACTIONS(1792), + [sym_Class] = ACTIONS(1792), + [sym_SEL] = ACTIONS(1792), + [sym_IMP] = ACTIONS(1792), + [sym_BOOL] = ACTIONS(1792), + [sym_auto] = ACTIONS(1792), + [anon_sym_ATautoreleasepool] = ACTIONS(1794), + [anon_sym_ATsynchronized] = ACTIONS(1794), + [anon_sym_ATtry] = ACTIONS(1794), + [anon_sym_ATthrow] = ACTIONS(1794), + [anon_sym_ATselector] = ACTIONS(1794), + [anon_sym_ATencode] = ACTIONS(1794), + [anon_sym_AT] = ACTIONS(1792), + [sym_YES] = ACTIONS(1792), + [sym_NO] = ACTIONS(1792), + [anon_sym___builtin_available] = ACTIONS(1792), + [anon_sym_ATavailable] = ACTIONS(1794), + [anon_sym_va_arg] = ACTIONS(1792), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1509] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1510] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1511] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1512] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1513] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1514] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1515] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1516] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1517] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1518] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1519] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1520] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1521] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1522] = { + [sym_identifier] = ACTIONS(1988), + [aux_sym_preproc_include_token1] = ACTIONS(1990), + [aux_sym_preproc_def_token1] = ACTIONS(1990), + [aux_sym_preproc_if_token1] = ACTIONS(1988), + [aux_sym_preproc_if_token2] = ACTIONS(1988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1988), + [anon_sym_LPAREN2] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_TILDE] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_CARET] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_typedef] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1988), + [anon_sym___attribute] = ACTIONS(1988), + [anon_sym___attribute__] = ACTIONS(1988), + [anon_sym___declspec] = ACTIONS(1988), + [anon_sym___cdecl] = ACTIONS(1988), + [anon_sym___clrcall] = ACTIONS(1988), + [anon_sym___stdcall] = ACTIONS(1988), + [anon_sym___fastcall] = ACTIONS(1988), + [anon_sym___thiscall] = ACTIONS(1988), + [anon_sym___vectorcall] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1988), + [anon_sym_auto] = ACTIONS(1988), + [anon_sym_register] = ACTIONS(1988), + [anon_sym_inline] = ACTIONS(1988), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1988), + [anon_sym_const] = ACTIONS(1988), + [anon_sym_volatile] = ACTIONS(1988), + [anon_sym_restrict] = ACTIONS(1988), + [anon_sym__Atomic] = ACTIONS(1988), + [anon_sym_in] = ACTIONS(1988), + [anon_sym_out] = ACTIONS(1988), + [anon_sym_inout] = ACTIONS(1988), + [anon_sym_bycopy] = ACTIONS(1988), + [anon_sym_byref] = ACTIONS(1988), + [anon_sym_oneway] = ACTIONS(1988), + [anon_sym__Nullable] = ACTIONS(1988), + [anon_sym__Nonnull] = ACTIONS(1988), + [anon_sym__Nullable_result] = ACTIONS(1988), + [anon_sym__Null_unspecified] = ACTIONS(1988), + [anon_sym___autoreleasing] = ACTIONS(1988), + [anon_sym___nullable] = ACTIONS(1988), + [anon_sym___nonnull] = ACTIONS(1988), + [anon_sym___strong] = ACTIONS(1988), + [anon_sym___weak] = ACTIONS(1988), + [anon_sym___bridge] = ACTIONS(1988), + [anon_sym___bridge_transfer] = ACTIONS(1988), + [anon_sym___bridge_retained] = ACTIONS(1988), + [anon_sym___unsafe_unretained] = ACTIONS(1988), + [anon_sym___block] = ACTIONS(1988), + [anon_sym___kindof] = ACTIONS(1988), + [anon_sym___unused] = ACTIONS(1988), + [anon_sym__Complex] = ACTIONS(1988), + [anon_sym___complex] = ACTIONS(1988), + [anon_sym_IBOutlet] = ACTIONS(1988), + [anon_sym_IBInspectable] = ACTIONS(1988), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1988), + [anon_sym_signed] = ACTIONS(1988), + [anon_sym_unsigned] = ACTIONS(1988), + [anon_sym_long] = ACTIONS(1988), + [anon_sym_short] = ACTIONS(1988), + [sym_primitive_type] = ACTIONS(1988), + [anon_sym_enum] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1988), + [anon_sym_union] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_switch] = ACTIONS(1988), + [anon_sym_case] = ACTIONS(1988), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_do] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_return] = ACTIONS(1988), + [anon_sym_break] = ACTIONS(1988), + [anon_sym_continue] = ACTIONS(1988), + [anon_sym_goto] = ACTIONS(1988), + [anon_sym_DASH_DASH] = ACTIONS(1990), + [anon_sym_PLUS_PLUS] = ACTIONS(1990), + [anon_sym_sizeof] = ACTIONS(1988), + [sym_number_literal] = ACTIONS(1990), + [anon_sym_L_SQUOTE] = ACTIONS(1990), + [anon_sym_u_SQUOTE] = ACTIONS(1990), + [anon_sym_U_SQUOTE] = ACTIONS(1990), + [anon_sym_u8_SQUOTE] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_L_DQUOTE] = ACTIONS(1990), + [anon_sym_u_DQUOTE] = ACTIONS(1990), + [anon_sym_U_DQUOTE] = ACTIONS(1990), + [anon_sym_u8_DQUOTE] = ACTIONS(1990), + [anon_sym_DQUOTE] = ACTIONS(1990), + [sym_true] = ACTIONS(1988), + [sym_false] = ACTIONS(1988), + [sym_null] = ACTIONS(1988), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1990), + [anon_sym_ATimport] = ACTIONS(1990), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1988), + [anon_sym_ATcompatibility_alias] = ACTIONS(1990), + [anon_sym_ATprotocol] = ACTIONS(1990), + [anon_sym_ATclass] = ACTIONS(1990), + [anon_sym_ATinterface] = ACTIONS(1990), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1988), + [sym_method_attribute_specifier] = ACTIONS(1988), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1988), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1988), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1988), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1988), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1988), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1988), + [anon_sym_NS_AVAILABLE] = ACTIONS(1988), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1988), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1988), + [anon_sym_API_AVAILABLE] = ACTIONS(1988), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1988), + [anon_sym_API_DEPRECATED] = ACTIONS(1988), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1988), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1988), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1988), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1988), + [anon_sym___deprecated_msg] = ACTIONS(1988), + [anon_sym___deprecated_enum_msg] = ACTIONS(1988), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1988), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1988), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1988), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1988), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1988), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1988), + [anon_sym_ATimplementation] = ACTIONS(1990), + [anon_sym_NS_ENUM] = ACTIONS(1988), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1988), + [anon_sym_NS_OPTIONS] = ACTIONS(1988), + [anon_sym_typeof] = ACTIONS(1988), + [anon_sym___typeof] = ACTIONS(1988), + [anon_sym___typeof__] = ACTIONS(1988), + [sym_self] = ACTIONS(1988), + [sym_super] = ACTIONS(1988), + [sym_nil] = ACTIONS(1988), + [sym_id] = ACTIONS(1988), + [sym_instancetype] = ACTIONS(1988), + [sym_Class] = ACTIONS(1988), + [sym_SEL] = ACTIONS(1988), + [sym_IMP] = ACTIONS(1988), + [sym_BOOL] = ACTIONS(1988), + [sym_auto] = ACTIONS(1988), + [anon_sym_ATautoreleasepool] = ACTIONS(1990), + [anon_sym_ATsynchronized] = ACTIONS(1990), + [anon_sym_ATtry] = ACTIONS(1990), + [anon_sym_ATthrow] = ACTIONS(1990), + [anon_sym_ATselector] = ACTIONS(1990), + [anon_sym_ATencode] = ACTIONS(1990), + [anon_sym_AT] = ACTIONS(1988), + [sym_YES] = ACTIONS(1988), + [sym_NO] = ACTIONS(1988), + [anon_sym___builtin_available] = ACTIONS(1988), + [anon_sym_ATavailable] = ACTIONS(1990), + [anon_sym_va_arg] = ACTIONS(1988), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1523] = { + [sym_identifier] = ACTIONS(1688), + [aux_sym_preproc_include_token1] = ACTIONS(1690), + [aux_sym_preproc_def_token1] = ACTIONS(1690), + [aux_sym_preproc_if_token1] = ACTIONS(1688), + [aux_sym_preproc_if_token2] = ACTIONS(1688), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1688), + [anon_sym_LPAREN2] = ACTIONS(1690), + [anon_sym_BANG] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_PLUS] = ACTIONS(1688), + [anon_sym_STAR] = ACTIONS(1690), + [anon_sym_CARET] = ACTIONS(1690), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1690), + [anon_sym_typedef] = ACTIONS(1688), + [anon_sym_extern] = ACTIONS(1688), + [anon_sym___attribute] = ACTIONS(1688), + [anon_sym___attribute__] = ACTIONS(1688), + [anon_sym___declspec] = ACTIONS(1688), + [anon_sym___cdecl] = ACTIONS(1688), + [anon_sym___clrcall] = ACTIONS(1688), + [anon_sym___stdcall] = ACTIONS(1688), + [anon_sym___fastcall] = ACTIONS(1688), + [anon_sym___thiscall] = ACTIONS(1688), + [anon_sym___vectorcall] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_static] = ACTIONS(1688), + [anon_sym_auto] = ACTIONS(1688), + [anon_sym_register] = ACTIONS(1688), + [anon_sym_inline] = ACTIONS(1688), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1688), + [anon_sym_const] = ACTIONS(1688), + [anon_sym_volatile] = ACTIONS(1688), + [anon_sym_restrict] = ACTIONS(1688), + [anon_sym__Atomic] = ACTIONS(1688), + [anon_sym_in] = ACTIONS(1688), + [anon_sym_out] = ACTIONS(1688), + [anon_sym_inout] = ACTIONS(1688), + [anon_sym_bycopy] = ACTIONS(1688), + [anon_sym_byref] = ACTIONS(1688), + [anon_sym_oneway] = ACTIONS(1688), + [anon_sym__Nullable] = ACTIONS(1688), + [anon_sym__Nonnull] = ACTIONS(1688), + [anon_sym__Nullable_result] = ACTIONS(1688), + [anon_sym__Null_unspecified] = ACTIONS(1688), + [anon_sym___autoreleasing] = ACTIONS(1688), + [anon_sym___nullable] = ACTIONS(1688), + [anon_sym___nonnull] = ACTIONS(1688), + [anon_sym___strong] = ACTIONS(1688), + [anon_sym___weak] = ACTIONS(1688), + [anon_sym___bridge] = ACTIONS(1688), + [anon_sym___bridge_transfer] = ACTIONS(1688), + [anon_sym___bridge_retained] = ACTIONS(1688), + [anon_sym___unsafe_unretained] = ACTIONS(1688), + [anon_sym___block] = ACTIONS(1688), + [anon_sym___kindof] = ACTIONS(1688), + [anon_sym___unused] = ACTIONS(1688), + [anon_sym__Complex] = ACTIONS(1688), + [anon_sym___complex] = ACTIONS(1688), + [anon_sym_IBOutlet] = ACTIONS(1688), + [anon_sym_IBInspectable] = ACTIONS(1688), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1688), + [anon_sym_signed] = ACTIONS(1688), + [anon_sym_unsigned] = ACTIONS(1688), + [anon_sym_long] = ACTIONS(1688), + [anon_sym_short] = ACTIONS(1688), + [sym_primitive_type] = ACTIONS(1688), + [anon_sym_enum] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(1688), + [anon_sym_union] = ACTIONS(1688), + [anon_sym_if] = ACTIONS(1688), + [anon_sym_switch] = ACTIONS(1688), + [anon_sym_case] = ACTIONS(1688), + [anon_sym_default] = ACTIONS(1688), + [anon_sym_while] = ACTIONS(1688), + [anon_sym_do] = ACTIONS(1688), + [anon_sym_for] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1688), + [anon_sym_break] = ACTIONS(1688), + [anon_sym_continue] = ACTIONS(1688), + [anon_sym_goto] = ACTIONS(1688), + [anon_sym_DASH_DASH] = ACTIONS(1690), + [anon_sym_PLUS_PLUS] = ACTIONS(1690), + [anon_sym_sizeof] = ACTIONS(1688), + [sym_number_literal] = ACTIONS(1690), + [anon_sym_L_SQUOTE] = ACTIONS(1690), + [anon_sym_u_SQUOTE] = ACTIONS(1690), + [anon_sym_U_SQUOTE] = ACTIONS(1690), + [anon_sym_u8_SQUOTE] = ACTIONS(1690), + [anon_sym_SQUOTE] = ACTIONS(1690), + [anon_sym_L_DQUOTE] = ACTIONS(1690), + [anon_sym_u_DQUOTE] = ACTIONS(1690), + [anon_sym_U_DQUOTE] = ACTIONS(1690), + [anon_sym_u8_DQUOTE] = ACTIONS(1690), + [anon_sym_DQUOTE] = ACTIONS(1690), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1690), + [anon_sym_ATimport] = ACTIONS(1690), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1688), + [anon_sym_ATcompatibility_alias] = ACTIONS(1690), + [anon_sym_ATprotocol] = ACTIONS(1690), + [anon_sym_ATclass] = ACTIONS(1690), + [anon_sym_ATinterface] = ACTIONS(1690), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1688), + [sym_method_attribute_specifier] = ACTIONS(1688), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1688), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1688), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1688), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1688), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1688), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1688), + [anon_sym_NS_AVAILABLE] = ACTIONS(1688), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1688), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1688), + [anon_sym_API_AVAILABLE] = ACTIONS(1688), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1688), + [anon_sym_API_DEPRECATED] = ACTIONS(1688), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1688), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1688), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1688), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1688), + [anon_sym___deprecated_msg] = ACTIONS(1688), + [anon_sym___deprecated_enum_msg] = ACTIONS(1688), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1688), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1688), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1688), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1688), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1688), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1688), + [anon_sym_ATimplementation] = ACTIONS(1690), + [anon_sym_NS_ENUM] = ACTIONS(1688), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1688), + [anon_sym_NS_OPTIONS] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1688), + [anon_sym___typeof] = ACTIONS(1688), + [anon_sym___typeof__] = ACTIONS(1688), + [sym_self] = ACTIONS(1688), + [sym_super] = ACTIONS(1688), + [sym_nil] = ACTIONS(1688), + [sym_id] = ACTIONS(1688), + [sym_instancetype] = ACTIONS(1688), + [sym_Class] = ACTIONS(1688), + [sym_SEL] = ACTIONS(1688), + [sym_IMP] = ACTIONS(1688), + [sym_BOOL] = ACTIONS(1688), + [sym_auto] = ACTIONS(1688), + [anon_sym_ATautoreleasepool] = ACTIONS(1690), + [anon_sym_ATsynchronized] = ACTIONS(1690), + [anon_sym_ATtry] = ACTIONS(1690), + [anon_sym_ATthrow] = ACTIONS(1690), + [anon_sym_ATselector] = ACTIONS(1690), + [anon_sym_ATencode] = ACTIONS(1690), + [anon_sym_AT] = ACTIONS(1688), + [sym_YES] = ACTIONS(1688), + [sym_NO] = ACTIONS(1688), + [anon_sym___builtin_available] = ACTIONS(1688), + [anon_sym_ATavailable] = ACTIONS(1690), + [anon_sym_va_arg] = ACTIONS(1688), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1524] = { + [sym_identifier] = ACTIONS(1692), + [aux_sym_preproc_include_token1] = ACTIONS(1694), + [aux_sym_preproc_def_token1] = ACTIONS(1694), + [aux_sym_preproc_if_token1] = ACTIONS(1692), + [aux_sym_preproc_if_token2] = ACTIONS(1692), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1692), + [anon_sym_LPAREN2] = ACTIONS(1694), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_TILDE] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_PLUS] = ACTIONS(1692), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_CARET] = ACTIONS(1694), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1694), + [anon_sym_typedef] = ACTIONS(1692), + [anon_sym_extern] = ACTIONS(1692), + [anon_sym___attribute] = ACTIONS(1692), + [anon_sym___attribute__] = ACTIONS(1692), + [anon_sym___declspec] = ACTIONS(1692), + [anon_sym___cdecl] = ACTIONS(1692), + [anon_sym___clrcall] = ACTIONS(1692), + [anon_sym___stdcall] = ACTIONS(1692), + [anon_sym___fastcall] = ACTIONS(1692), + [anon_sym___thiscall] = ACTIONS(1692), + [anon_sym___vectorcall] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_auto] = ACTIONS(1692), + [anon_sym_register] = ACTIONS(1692), + [anon_sym_inline] = ACTIONS(1692), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1692), + [anon_sym_volatile] = ACTIONS(1692), + [anon_sym_restrict] = ACTIONS(1692), + [anon_sym__Atomic] = ACTIONS(1692), + [anon_sym_in] = ACTIONS(1692), + [anon_sym_out] = ACTIONS(1692), + [anon_sym_inout] = ACTIONS(1692), + [anon_sym_bycopy] = ACTIONS(1692), + [anon_sym_byref] = ACTIONS(1692), + [anon_sym_oneway] = ACTIONS(1692), + [anon_sym__Nullable] = ACTIONS(1692), + [anon_sym__Nonnull] = ACTIONS(1692), + [anon_sym__Nullable_result] = ACTIONS(1692), + [anon_sym__Null_unspecified] = ACTIONS(1692), + [anon_sym___autoreleasing] = ACTIONS(1692), + [anon_sym___nullable] = ACTIONS(1692), + [anon_sym___nonnull] = ACTIONS(1692), + [anon_sym___strong] = ACTIONS(1692), + [anon_sym___weak] = ACTIONS(1692), + [anon_sym___bridge] = ACTIONS(1692), + [anon_sym___bridge_transfer] = ACTIONS(1692), + [anon_sym___bridge_retained] = ACTIONS(1692), + [anon_sym___unsafe_unretained] = ACTIONS(1692), + [anon_sym___block] = ACTIONS(1692), + [anon_sym___kindof] = ACTIONS(1692), + [anon_sym___unused] = ACTIONS(1692), + [anon_sym__Complex] = ACTIONS(1692), + [anon_sym___complex] = ACTIONS(1692), + [anon_sym_IBOutlet] = ACTIONS(1692), + [anon_sym_IBInspectable] = ACTIONS(1692), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1692), + [anon_sym_signed] = ACTIONS(1692), + [anon_sym_unsigned] = ACTIONS(1692), + [anon_sym_long] = ACTIONS(1692), + [anon_sym_short] = ACTIONS(1692), + [sym_primitive_type] = ACTIONS(1692), + [anon_sym_enum] = ACTIONS(1692), + [anon_sym_struct] = ACTIONS(1692), + [anon_sym_union] = ACTIONS(1692), + [anon_sym_if] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1692), + [anon_sym_case] = ACTIONS(1692), + [anon_sym_default] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1692), + [anon_sym_do] = ACTIONS(1692), + [anon_sym_for] = ACTIONS(1692), + [anon_sym_return] = ACTIONS(1692), + [anon_sym_break] = ACTIONS(1692), + [anon_sym_continue] = ACTIONS(1692), + [anon_sym_goto] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1694), + [anon_sym_PLUS_PLUS] = ACTIONS(1694), + [anon_sym_sizeof] = ACTIONS(1692), + [sym_number_literal] = ACTIONS(1694), + [anon_sym_L_SQUOTE] = ACTIONS(1694), + [anon_sym_u_SQUOTE] = ACTIONS(1694), + [anon_sym_U_SQUOTE] = ACTIONS(1694), + [anon_sym_u8_SQUOTE] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1694), + [anon_sym_L_DQUOTE] = ACTIONS(1694), + [anon_sym_u_DQUOTE] = ACTIONS(1694), + [anon_sym_U_DQUOTE] = ACTIONS(1694), + [anon_sym_u8_DQUOTE] = ACTIONS(1694), + [anon_sym_DQUOTE] = ACTIONS(1694), + [sym_true] = ACTIONS(1692), + [sym_false] = ACTIONS(1692), + [sym_null] = ACTIONS(1692), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1694), + [anon_sym_ATimport] = ACTIONS(1694), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1692), + [anon_sym_ATcompatibility_alias] = ACTIONS(1694), + [anon_sym_ATprotocol] = ACTIONS(1694), + [anon_sym_ATclass] = ACTIONS(1694), + [anon_sym_ATinterface] = ACTIONS(1694), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1692), + [sym_method_attribute_specifier] = ACTIONS(1692), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1692), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1692), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1692), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1692), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1692), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1692), + [anon_sym_NS_AVAILABLE] = ACTIONS(1692), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1692), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1692), + [anon_sym_API_AVAILABLE] = ACTIONS(1692), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1692), + [anon_sym_API_DEPRECATED] = ACTIONS(1692), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1692), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1692), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1692), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1692), + [anon_sym___deprecated_msg] = ACTIONS(1692), + [anon_sym___deprecated_enum_msg] = ACTIONS(1692), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1692), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1692), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1692), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1692), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1692), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1692), + [anon_sym_ATimplementation] = ACTIONS(1694), + [anon_sym_NS_ENUM] = ACTIONS(1692), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1692), + [anon_sym_NS_OPTIONS] = ACTIONS(1692), + [anon_sym_typeof] = ACTIONS(1692), + [anon_sym___typeof] = ACTIONS(1692), + [anon_sym___typeof__] = ACTIONS(1692), + [sym_self] = ACTIONS(1692), + [sym_super] = ACTIONS(1692), + [sym_nil] = ACTIONS(1692), + [sym_id] = ACTIONS(1692), + [sym_instancetype] = ACTIONS(1692), + [sym_Class] = ACTIONS(1692), + [sym_SEL] = ACTIONS(1692), + [sym_IMP] = ACTIONS(1692), + [sym_BOOL] = ACTIONS(1692), + [sym_auto] = ACTIONS(1692), + [anon_sym_ATautoreleasepool] = ACTIONS(1694), + [anon_sym_ATsynchronized] = ACTIONS(1694), + [anon_sym_ATtry] = ACTIONS(1694), + [anon_sym_ATthrow] = ACTIONS(1694), + [anon_sym_ATselector] = ACTIONS(1694), + [anon_sym_ATencode] = ACTIONS(1694), + [anon_sym_AT] = ACTIONS(1692), + [sym_YES] = ACTIONS(1692), + [sym_NO] = ACTIONS(1692), + [anon_sym___builtin_available] = ACTIONS(1692), + [anon_sym_ATavailable] = ACTIONS(1694), + [anon_sym_va_arg] = ACTIONS(1692), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1525] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1526] = { + [sym_identifier] = ACTIONS(1972), + [aux_sym_preproc_include_token1] = ACTIONS(1974), + [aux_sym_preproc_def_token1] = ACTIONS(1974), + [aux_sym_preproc_if_token1] = ACTIONS(1972), + [aux_sym_preproc_if_token2] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1972), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1972), + [anon_sym_LPAREN2] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym___attribute] = ACTIONS(1972), + [anon_sym___attribute__] = ACTIONS(1972), + [anon_sym___declspec] = ACTIONS(1972), + [anon_sym___cdecl] = ACTIONS(1972), + [anon_sym___clrcall] = ACTIONS(1972), + [anon_sym___stdcall] = ACTIONS(1972), + [anon_sym___fastcall] = ACTIONS(1972), + [anon_sym___thiscall] = ACTIONS(1972), + [anon_sym___vectorcall] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_auto] = ACTIONS(1972), + [anon_sym_register] = ACTIONS(1972), + [anon_sym_inline] = ACTIONS(1972), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_volatile] = ACTIONS(1972), + [anon_sym_restrict] = ACTIONS(1972), + [anon_sym__Atomic] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_out] = ACTIONS(1972), + [anon_sym_inout] = ACTIONS(1972), + [anon_sym_bycopy] = ACTIONS(1972), + [anon_sym_byref] = ACTIONS(1972), + [anon_sym_oneway] = ACTIONS(1972), + [anon_sym__Nullable] = ACTIONS(1972), + [anon_sym__Nonnull] = ACTIONS(1972), + [anon_sym__Nullable_result] = ACTIONS(1972), + [anon_sym__Null_unspecified] = ACTIONS(1972), + [anon_sym___autoreleasing] = ACTIONS(1972), + [anon_sym___nullable] = ACTIONS(1972), + [anon_sym___nonnull] = ACTIONS(1972), + [anon_sym___strong] = ACTIONS(1972), + [anon_sym___weak] = ACTIONS(1972), + [anon_sym___bridge] = ACTIONS(1972), + [anon_sym___bridge_transfer] = ACTIONS(1972), + [anon_sym___bridge_retained] = ACTIONS(1972), + [anon_sym___unsafe_unretained] = ACTIONS(1972), + [anon_sym___block] = ACTIONS(1972), + [anon_sym___kindof] = ACTIONS(1972), + [anon_sym___unused] = ACTIONS(1972), + [anon_sym__Complex] = ACTIONS(1972), + [anon_sym___complex] = ACTIONS(1972), + [anon_sym_IBOutlet] = ACTIONS(1972), + [anon_sym_IBInspectable] = ACTIONS(1972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1972), + [anon_sym_signed] = ACTIONS(1972), + [anon_sym_unsigned] = ACTIONS(1972), + [anon_sym_long] = ACTIONS(1972), + [anon_sym_short] = ACTIONS(1972), + [sym_primitive_type] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_switch] = ACTIONS(1972), + [anon_sym_case] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_do] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_goto] = ACTIONS(1972), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_sizeof] = ACTIONS(1972), + [sym_number_literal] = ACTIONS(1974), + [anon_sym_L_SQUOTE] = ACTIONS(1974), + [anon_sym_u_SQUOTE] = ACTIONS(1974), + [anon_sym_U_SQUOTE] = ACTIONS(1974), + [anon_sym_u8_SQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_L_DQUOTE] = ACTIONS(1974), + [anon_sym_u_DQUOTE] = ACTIONS(1974), + [anon_sym_U_DQUOTE] = ACTIONS(1974), + [anon_sym_u8_DQUOTE] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1974), + [anon_sym_ATimport] = ACTIONS(1974), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1972), + [anon_sym_ATcompatibility_alias] = ACTIONS(1974), + [anon_sym_ATprotocol] = ACTIONS(1974), + [anon_sym_ATclass] = ACTIONS(1974), + [anon_sym_ATinterface] = ACTIONS(1974), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1972), + [sym_method_attribute_specifier] = ACTIONS(1972), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1972), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1972), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE] = ACTIONS(1972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_API_AVAILABLE] = ACTIONS(1972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_API_DEPRECATED] = ACTIONS(1972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1972), + [anon_sym___deprecated_msg] = ACTIONS(1972), + [anon_sym___deprecated_enum_msg] = ACTIONS(1972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1972), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1972), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1972), + [anon_sym_ATimplementation] = ACTIONS(1974), + [anon_sym_NS_ENUM] = ACTIONS(1972), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1972), + [anon_sym_NS_OPTIONS] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1972), + [anon_sym___typeof] = ACTIONS(1972), + [anon_sym___typeof__] = ACTIONS(1972), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_nil] = ACTIONS(1972), + [sym_id] = ACTIONS(1972), + [sym_instancetype] = ACTIONS(1972), + [sym_Class] = ACTIONS(1972), + [sym_SEL] = ACTIONS(1972), + [sym_IMP] = ACTIONS(1972), + [sym_BOOL] = ACTIONS(1972), + [sym_auto] = ACTIONS(1972), + [anon_sym_ATautoreleasepool] = ACTIONS(1974), + [anon_sym_ATsynchronized] = ACTIONS(1974), + [anon_sym_ATtry] = ACTIONS(1974), + [anon_sym_ATthrow] = ACTIONS(1974), + [anon_sym_ATselector] = ACTIONS(1974), + [anon_sym_ATencode] = ACTIONS(1974), + [anon_sym_AT] = ACTIONS(1972), + [sym_YES] = ACTIONS(1972), + [sym_NO] = ACTIONS(1972), + [anon_sym___builtin_available] = ACTIONS(1972), + [anon_sym_ATavailable] = ACTIONS(1974), + [anon_sym_va_arg] = ACTIONS(1972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1527] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1528] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1529] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1530] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1531] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1532] = { + [sym_identifier] = ACTIONS(1672), + [aux_sym_preproc_include_token1] = ACTIONS(1674), + [aux_sym_preproc_def_token1] = ACTIONS(1674), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_typedef] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym___attribute] = ACTIONS(1672), + [anon_sym___attribute__] = ACTIONS(1672), + [anon_sym___declspec] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_auto] = ACTIONS(1672), + [anon_sym_register] = ACTIONS(1672), + [anon_sym_inline] = ACTIONS(1672), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_volatile] = ACTIONS(1672), + [anon_sym_restrict] = ACTIONS(1672), + [anon_sym__Atomic] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_out] = ACTIONS(1672), + [anon_sym_inout] = ACTIONS(1672), + [anon_sym_bycopy] = ACTIONS(1672), + [anon_sym_byref] = ACTIONS(1672), + [anon_sym_oneway] = ACTIONS(1672), + [anon_sym__Nullable] = ACTIONS(1672), + [anon_sym__Nonnull] = ACTIONS(1672), + [anon_sym__Nullable_result] = ACTIONS(1672), + [anon_sym__Null_unspecified] = ACTIONS(1672), + [anon_sym___autoreleasing] = ACTIONS(1672), + [anon_sym___nullable] = ACTIONS(1672), + [anon_sym___nonnull] = ACTIONS(1672), + [anon_sym___strong] = ACTIONS(1672), + [anon_sym___weak] = ACTIONS(1672), + [anon_sym___bridge] = ACTIONS(1672), + [anon_sym___bridge_transfer] = ACTIONS(1672), + [anon_sym___bridge_retained] = ACTIONS(1672), + [anon_sym___unsafe_unretained] = ACTIONS(1672), + [anon_sym___block] = ACTIONS(1672), + [anon_sym___kindof] = ACTIONS(1672), + [anon_sym___unused] = ACTIONS(1672), + [anon_sym__Complex] = ACTIONS(1672), + [anon_sym___complex] = ACTIONS(1672), + [anon_sym_IBOutlet] = ACTIONS(1672), + [anon_sym_IBInspectable] = ACTIONS(1672), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1672), + [anon_sym_signed] = ACTIONS(1672), + [anon_sym_unsigned] = ACTIONS(1672), + [anon_sym_long] = ACTIONS(1672), + [anon_sym_short] = ACTIONS(1672), + [sym_primitive_type] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1672), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_do] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_goto] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1674), + [anon_sym_PLUS_PLUS] = ACTIONS(1674), + [anon_sym_sizeof] = ACTIONS(1672), + [sym_number_literal] = ACTIONS(1674), + [anon_sym_L_SQUOTE] = ACTIONS(1674), + [anon_sym_u_SQUOTE] = ACTIONS(1674), + [anon_sym_U_SQUOTE] = ACTIONS(1674), + [anon_sym_u8_SQUOTE] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_L_DQUOTE] = ACTIONS(1674), + [anon_sym_u_DQUOTE] = ACTIONS(1674), + [anon_sym_U_DQUOTE] = ACTIONS(1674), + [anon_sym_u8_DQUOTE] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [sym_true] = ACTIONS(1672), + [sym_false] = ACTIONS(1672), + [sym_null] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1674), + [anon_sym_ATimport] = ACTIONS(1674), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1672), + [anon_sym_ATcompatibility_alias] = ACTIONS(1674), + [anon_sym_ATprotocol] = ACTIONS(1674), + [anon_sym_ATclass] = ACTIONS(1674), + [anon_sym_ATinterface] = ACTIONS(1674), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1672), + [sym_method_attribute_specifier] = ACTIONS(1672), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1672), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1672), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE] = ACTIONS(1672), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1672), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_API_AVAILABLE] = ACTIONS(1672), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_API_DEPRECATED] = ACTIONS(1672), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1672), + [anon_sym___deprecated_msg] = ACTIONS(1672), + [anon_sym___deprecated_enum_msg] = ACTIONS(1672), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1672), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1672), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1672), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1672), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1672), + [anon_sym_ATimplementation] = ACTIONS(1674), + [anon_sym_NS_ENUM] = ACTIONS(1672), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1672), + [anon_sym_NS_OPTIONS] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1672), + [anon_sym___typeof] = ACTIONS(1672), + [anon_sym___typeof__] = ACTIONS(1672), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_nil] = ACTIONS(1672), + [sym_id] = ACTIONS(1672), + [sym_instancetype] = ACTIONS(1672), + [sym_Class] = ACTIONS(1672), + [sym_SEL] = ACTIONS(1672), + [sym_IMP] = ACTIONS(1672), + [sym_BOOL] = ACTIONS(1672), + [sym_auto] = ACTIONS(1672), + [anon_sym_ATautoreleasepool] = ACTIONS(1674), + [anon_sym_ATsynchronized] = ACTIONS(1674), + [anon_sym_ATtry] = ACTIONS(1674), + [anon_sym_ATthrow] = ACTIONS(1674), + [anon_sym_ATselector] = ACTIONS(1674), + [anon_sym_ATencode] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1672), + [sym_YES] = ACTIONS(1672), + [sym_NO] = ACTIONS(1672), + [anon_sym___builtin_available] = ACTIONS(1672), + [anon_sym_ATavailable] = ACTIONS(1674), + [anon_sym_va_arg] = ACTIONS(1672), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1533] = { + [sym_identifier] = ACTIONS(1700), + [aux_sym_preproc_include_token1] = ACTIONS(1702), + [aux_sym_preproc_def_token1] = ACTIONS(1702), + [aux_sym_preproc_if_token1] = ACTIONS(1700), + [aux_sym_preproc_if_token2] = ACTIONS(1700), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1700), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1700), + [anon_sym_LPAREN2] = ACTIONS(1702), + [anon_sym_BANG] = ACTIONS(1702), + [anon_sym_TILDE] = ACTIONS(1702), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_STAR] = ACTIONS(1702), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_typedef] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym___attribute] = ACTIONS(1700), + [anon_sym___attribute__] = ACTIONS(1700), + [anon_sym___declspec] = ACTIONS(1700), + [anon_sym___cdecl] = ACTIONS(1700), + [anon_sym___clrcall] = ACTIONS(1700), + [anon_sym___stdcall] = ACTIONS(1700), + [anon_sym___fastcall] = ACTIONS(1700), + [anon_sym___thiscall] = ACTIONS(1700), + [anon_sym___vectorcall] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_auto] = ACTIONS(1700), + [anon_sym_register] = ACTIONS(1700), + [anon_sym_inline] = ACTIONS(1700), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_volatile] = ACTIONS(1700), + [anon_sym_restrict] = ACTIONS(1700), + [anon_sym__Atomic] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1700), + [anon_sym_out] = ACTIONS(1700), + [anon_sym_inout] = ACTIONS(1700), + [anon_sym_bycopy] = ACTIONS(1700), + [anon_sym_byref] = ACTIONS(1700), + [anon_sym_oneway] = ACTIONS(1700), + [anon_sym__Nullable] = ACTIONS(1700), + [anon_sym__Nonnull] = ACTIONS(1700), + [anon_sym__Nullable_result] = ACTIONS(1700), + [anon_sym__Null_unspecified] = ACTIONS(1700), + [anon_sym___autoreleasing] = ACTIONS(1700), + [anon_sym___nullable] = ACTIONS(1700), + [anon_sym___nonnull] = ACTIONS(1700), + [anon_sym___strong] = ACTIONS(1700), + [anon_sym___weak] = ACTIONS(1700), + [anon_sym___bridge] = ACTIONS(1700), + [anon_sym___bridge_transfer] = ACTIONS(1700), + [anon_sym___bridge_retained] = ACTIONS(1700), + [anon_sym___unsafe_unretained] = ACTIONS(1700), + [anon_sym___block] = ACTIONS(1700), + [anon_sym___kindof] = ACTIONS(1700), + [anon_sym___unused] = ACTIONS(1700), + [anon_sym__Complex] = ACTIONS(1700), + [anon_sym___complex] = ACTIONS(1700), + [anon_sym_IBOutlet] = ACTIONS(1700), + [anon_sym_IBInspectable] = ACTIONS(1700), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1700), + [anon_sym_signed] = ACTIONS(1700), + [anon_sym_unsigned] = ACTIONS(1700), + [anon_sym_long] = ACTIONS(1700), + [anon_sym_short] = ACTIONS(1700), + [sym_primitive_type] = ACTIONS(1700), + [anon_sym_enum] = ACTIONS(1700), + [anon_sym_struct] = ACTIONS(1700), + [anon_sym_union] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1700), + [anon_sym_case] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_do] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_goto] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1702), + [anon_sym_PLUS_PLUS] = ACTIONS(1702), + [anon_sym_sizeof] = ACTIONS(1700), + [sym_number_literal] = ACTIONS(1702), + [anon_sym_L_SQUOTE] = ACTIONS(1702), + [anon_sym_u_SQUOTE] = ACTIONS(1702), + [anon_sym_U_SQUOTE] = ACTIONS(1702), + [anon_sym_u8_SQUOTE] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_L_DQUOTE] = ACTIONS(1702), + [anon_sym_u_DQUOTE] = ACTIONS(1702), + [anon_sym_U_DQUOTE] = ACTIONS(1702), + [anon_sym_u8_DQUOTE] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [sym_true] = ACTIONS(1700), + [sym_false] = ACTIONS(1700), + [sym_null] = ACTIONS(1700), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1702), + [anon_sym_ATimport] = ACTIONS(1702), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1700), + [anon_sym_ATcompatibility_alias] = ACTIONS(1702), + [anon_sym_ATprotocol] = ACTIONS(1702), + [anon_sym_ATclass] = ACTIONS(1702), + [anon_sym_ATinterface] = ACTIONS(1702), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1700), + [sym_method_attribute_specifier] = ACTIONS(1700), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1700), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1700), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1700), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1700), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1700), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1700), + [anon_sym_NS_AVAILABLE] = ACTIONS(1700), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1700), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1700), + [anon_sym_API_AVAILABLE] = ACTIONS(1700), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1700), + [anon_sym_API_DEPRECATED] = ACTIONS(1700), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1700), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1700), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1700), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1700), + [anon_sym___deprecated_msg] = ACTIONS(1700), + [anon_sym___deprecated_enum_msg] = ACTIONS(1700), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1700), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1700), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1700), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1700), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1700), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1700), + [anon_sym_ATimplementation] = ACTIONS(1702), + [anon_sym_NS_ENUM] = ACTIONS(1700), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1700), + [anon_sym_NS_OPTIONS] = ACTIONS(1700), + [anon_sym_typeof] = ACTIONS(1700), + [anon_sym___typeof] = ACTIONS(1700), + [anon_sym___typeof__] = ACTIONS(1700), + [sym_self] = ACTIONS(1700), + [sym_super] = ACTIONS(1700), + [sym_nil] = ACTIONS(1700), + [sym_id] = ACTIONS(1700), + [sym_instancetype] = ACTIONS(1700), + [sym_Class] = ACTIONS(1700), + [sym_SEL] = ACTIONS(1700), + [sym_IMP] = ACTIONS(1700), + [sym_BOOL] = ACTIONS(1700), + [sym_auto] = ACTIONS(1700), + [anon_sym_ATautoreleasepool] = ACTIONS(1702), + [anon_sym_ATsynchronized] = ACTIONS(1702), + [anon_sym_ATtry] = ACTIONS(1702), + [anon_sym_ATthrow] = ACTIONS(1702), + [anon_sym_ATselector] = ACTIONS(1702), + [anon_sym_ATencode] = ACTIONS(1702), + [anon_sym_AT] = ACTIONS(1700), + [sym_YES] = ACTIONS(1700), + [sym_NO] = ACTIONS(1700), + [anon_sym___builtin_available] = ACTIONS(1700), + [anon_sym_ATavailable] = ACTIONS(1702), + [anon_sym_va_arg] = ACTIONS(1700), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1534] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1535] = { + [sym_identifier] = ACTIONS(1708), + [aux_sym_preproc_include_token1] = ACTIONS(1710), + [aux_sym_preproc_def_token1] = ACTIONS(1710), + [aux_sym_preproc_if_token1] = ACTIONS(1708), + [aux_sym_preproc_if_token2] = ACTIONS(1708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1708), + [anon_sym_LPAREN2] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_CARET] = ACTIONS(1710), + [anon_sym_AMP] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_typedef] = ACTIONS(1708), + [anon_sym_extern] = ACTIONS(1708), + [anon_sym___attribute] = ACTIONS(1708), + [anon_sym___attribute__] = ACTIONS(1708), + [anon_sym___declspec] = ACTIONS(1708), + [anon_sym___cdecl] = ACTIONS(1708), + [anon_sym___clrcall] = ACTIONS(1708), + [anon_sym___stdcall] = ACTIONS(1708), + [anon_sym___fastcall] = ACTIONS(1708), + [anon_sym___thiscall] = ACTIONS(1708), + [anon_sym___vectorcall] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_static] = ACTIONS(1708), + [anon_sym_auto] = ACTIONS(1708), + [anon_sym_register] = ACTIONS(1708), + [anon_sym_inline] = ACTIONS(1708), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_volatile] = ACTIONS(1708), + [anon_sym_restrict] = ACTIONS(1708), + [anon_sym__Atomic] = ACTIONS(1708), + [anon_sym_in] = ACTIONS(1708), + [anon_sym_out] = ACTIONS(1708), + [anon_sym_inout] = ACTIONS(1708), + [anon_sym_bycopy] = ACTIONS(1708), + [anon_sym_byref] = ACTIONS(1708), + [anon_sym_oneway] = ACTIONS(1708), + [anon_sym__Nullable] = ACTIONS(1708), + [anon_sym__Nonnull] = ACTIONS(1708), + [anon_sym__Nullable_result] = ACTIONS(1708), + [anon_sym__Null_unspecified] = ACTIONS(1708), + [anon_sym___autoreleasing] = ACTIONS(1708), + [anon_sym___nullable] = ACTIONS(1708), + [anon_sym___nonnull] = ACTIONS(1708), + [anon_sym___strong] = ACTIONS(1708), + [anon_sym___weak] = ACTIONS(1708), + [anon_sym___bridge] = ACTIONS(1708), + [anon_sym___bridge_transfer] = ACTIONS(1708), + [anon_sym___bridge_retained] = ACTIONS(1708), + [anon_sym___unsafe_unretained] = ACTIONS(1708), + [anon_sym___block] = ACTIONS(1708), + [anon_sym___kindof] = ACTIONS(1708), + [anon_sym___unused] = ACTIONS(1708), + [anon_sym__Complex] = ACTIONS(1708), + [anon_sym___complex] = ACTIONS(1708), + [anon_sym_IBOutlet] = ACTIONS(1708), + [anon_sym_IBInspectable] = ACTIONS(1708), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1708), + [anon_sym_signed] = ACTIONS(1708), + [anon_sym_unsigned] = ACTIONS(1708), + [anon_sym_long] = ACTIONS(1708), + [anon_sym_short] = ACTIONS(1708), + [sym_primitive_type] = ACTIONS(1708), + [anon_sym_enum] = ACTIONS(1708), + [anon_sym_struct] = ACTIONS(1708), + [anon_sym_union] = ACTIONS(1708), + [anon_sym_if] = ACTIONS(1708), + [anon_sym_switch] = ACTIONS(1708), + [anon_sym_case] = ACTIONS(1708), + [anon_sym_default] = ACTIONS(1708), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_do] = ACTIONS(1708), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1708), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_goto] = ACTIONS(1708), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_sizeof] = ACTIONS(1708), + [sym_number_literal] = ACTIONS(1710), + [anon_sym_L_SQUOTE] = ACTIONS(1710), + [anon_sym_u_SQUOTE] = ACTIONS(1710), + [anon_sym_U_SQUOTE] = ACTIONS(1710), + [anon_sym_u8_SQUOTE] = ACTIONS(1710), + [anon_sym_SQUOTE] = ACTIONS(1710), + [anon_sym_L_DQUOTE] = ACTIONS(1710), + [anon_sym_u_DQUOTE] = ACTIONS(1710), + [anon_sym_U_DQUOTE] = ACTIONS(1710), + [anon_sym_u8_DQUOTE] = ACTIONS(1710), + [anon_sym_DQUOTE] = ACTIONS(1710), + [sym_true] = ACTIONS(1708), + [sym_false] = ACTIONS(1708), + [sym_null] = ACTIONS(1708), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1710), + [anon_sym_ATimport] = ACTIONS(1710), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1708), + [anon_sym_ATcompatibility_alias] = ACTIONS(1710), + [anon_sym_ATprotocol] = ACTIONS(1710), + [anon_sym_ATclass] = ACTIONS(1710), + [anon_sym_ATinterface] = ACTIONS(1710), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1708), + [sym_method_attribute_specifier] = ACTIONS(1708), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1708), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1708), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1708), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1708), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1708), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1708), + [anon_sym_NS_AVAILABLE] = ACTIONS(1708), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1708), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1708), + [anon_sym_API_AVAILABLE] = ACTIONS(1708), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1708), + [anon_sym_API_DEPRECATED] = ACTIONS(1708), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1708), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1708), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1708), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1708), + [anon_sym___deprecated_msg] = ACTIONS(1708), + [anon_sym___deprecated_enum_msg] = ACTIONS(1708), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1708), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1708), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1708), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1708), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1708), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1708), + [anon_sym_ATimplementation] = ACTIONS(1710), + [anon_sym_NS_ENUM] = ACTIONS(1708), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1708), + [anon_sym_NS_OPTIONS] = ACTIONS(1708), + [anon_sym_typeof] = ACTIONS(1708), + [anon_sym___typeof] = ACTIONS(1708), + [anon_sym___typeof__] = ACTIONS(1708), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_nil] = ACTIONS(1708), + [sym_id] = ACTIONS(1708), + [sym_instancetype] = ACTIONS(1708), + [sym_Class] = ACTIONS(1708), + [sym_SEL] = ACTIONS(1708), + [sym_IMP] = ACTIONS(1708), + [sym_BOOL] = ACTIONS(1708), + [sym_auto] = ACTIONS(1708), + [anon_sym_ATautoreleasepool] = ACTIONS(1710), + [anon_sym_ATsynchronized] = ACTIONS(1710), + [anon_sym_ATtry] = ACTIONS(1710), + [anon_sym_ATthrow] = ACTIONS(1710), + [anon_sym_ATselector] = ACTIONS(1710), + [anon_sym_ATencode] = ACTIONS(1710), + [anon_sym_AT] = ACTIONS(1708), + [sym_YES] = ACTIONS(1708), + [sym_NO] = ACTIONS(1708), + [anon_sym___builtin_available] = ACTIONS(1708), + [anon_sym_ATavailable] = ACTIONS(1710), + [anon_sym_va_arg] = ACTIONS(1708), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1536] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1537] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1538] = { + [sym_identifier] = ACTIONS(1712), + [aux_sym_preproc_include_token1] = ACTIONS(1714), + [aux_sym_preproc_def_token1] = ACTIONS(1714), + [aux_sym_preproc_if_token1] = ACTIONS(1712), + [aux_sym_preproc_if_token2] = ACTIONS(1712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1712), + [anon_sym_LPAREN2] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_STAR] = ACTIONS(1714), + [anon_sym_CARET] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_typedef] = ACTIONS(1712), + [anon_sym_extern] = ACTIONS(1712), + [anon_sym___attribute] = ACTIONS(1712), + [anon_sym___attribute__] = ACTIONS(1712), + [anon_sym___declspec] = ACTIONS(1712), + [anon_sym___cdecl] = ACTIONS(1712), + [anon_sym___clrcall] = ACTIONS(1712), + [anon_sym___stdcall] = ACTIONS(1712), + [anon_sym___fastcall] = ACTIONS(1712), + [anon_sym___thiscall] = ACTIONS(1712), + [anon_sym___vectorcall] = ACTIONS(1712), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_static] = ACTIONS(1712), + [anon_sym_auto] = ACTIONS(1712), + [anon_sym_register] = ACTIONS(1712), + [anon_sym_inline] = ACTIONS(1712), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1712), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_volatile] = ACTIONS(1712), + [anon_sym_restrict] = ACTIONS(1712), + [anon_sym__Atomic] = ACTIONS(1712), + [anon_sym_in] = ACTIONS(1712), + [anon_sym_out] = ACTIONS(1712), + [anon_sym_inout] = ACTIONS(1712), + [anon_sym_bycopy] = ACTIONS(1712), + [anon_sym_byref] = ACTIONS(1712), + [anon_sym_oneway] = ACTIONS(1712), + [anon_sym__Nullable] = ACTIONS(1712), + [anon_sym__Nonnull] = ACTIONS(1712), + [anon_sym__Nullable_result] = ACTIONS(1712), + [anon_sym__Null_unspecified] = ACTIONS(1712), + [anon_sym___autoreleasing] = ACTIONS(1712), + [anon_sym___nullable] = ACTIONS(1712), + [anon_sym___nonnull] = ACTIONS(1712), + [anon_sym___strong] = ACTIONS(1712), + [anon_sym___weak] = ACTIONS(1712), + [anon_sym___bridge] = ACTIONS(1712), + [anon_sym___bridge_transfer] = ACTIONS(1712), + [anon_sym___bridge_retained] = ACTIONS(1712), + [anon_sym___unsafe_unretained] = ACTIONS(1712), + [anon_sym___block] = ACTIONS(1712), + [anon_sym___kindof] = ACTIONS(1712), + [anon_sym___unused] = ACTIONS(1712), + [anon_sym__Complex] = ACTIONS(1712), + [anon_sym___complex] = ACTIONS(1712), + [anon_sym_IBOutlet] = ACTIONS(1712), + [anon_sym_IBInspectable] = ACTIONS(1712), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1712), + [anon_sym_signed] = ACTIONS(1712), + [anon_sym_unsigned] = ACTIONS(1712), + [anon_sym_long] = ACTIONS(1712), + [anon_sym_short] = ACTIONS(1712), + [sym_primitive_type] = ACTIONS(1712), + [anon_sym_enum] = ACTIONS(1712), + [anon_sym_struct] = ACTIONS(1712), + [anon_sym_union] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1712), + [anon_sym_default] = ACTIONS(1712), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_do] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_continue] = ACTIONS(1712), + [anon_sym_goto] = ACTIONS(1712), + [anon_sym_DASH_DASH] = ACTIONS(1714), + [anon_sym_PLUS_PLUS] = ACTIONS(1714), + [anon_sym_sizeof] = ACTIONS(1712), + [sym_number_literal] = ACTIONS(1714), + [anon_sym_L_SQUOTE] = ACTIONS(1714), + [anon_sym_u_SQUOTE] = ACTIONS(1714), + [anon_sym_U_SQUOTE] = ACTIONS(1714), + [anon_sym_u8_SQUOTE] = ACTIONS(1714), + [anon_sym_SQUOTE] = ACTIONS(1714), + [anon_sym_L_DQUOTE] = ACTIONS(1714), + [anon_sym_u_DQUOTE] = ACTIONS(1714), + [anon_sym_U_DQUOTE] = ACTIONS(1714), + [anon_sym_u8_DQUOTE] = ACTIONS(1714), + [anon_sym_DQUOTE] = ACTIONS(1714), + [sym_true] = ACTIONS(1712), + [sym_false] = ACTIONS(1712), + [sym_null] = ACTIONS(1712), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1714), + [anon_sym_ATimport] = ACTIONS(1714), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1712), + [anon_sym_ATcompatibility_alias] = ACTIONS(1714), + [anon_sym_ATprotocol] = ACTIONS(1714), + [anon_sym_ATclass] = ACTIONS(1714), + [anon_sym_ATinterface] = ACTIONS(1714), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1712), + [sym_method_attribute_specifier] = ACTIONS(1712), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1712), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1712), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1712), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1712), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1712), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1712), + [anon_sym_NS_AVAILABLE] = ACTIONS(1712), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1712), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1712), + [anon_sym_API_AVAILABLE] = ACTIONS(1712), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1712), + [anon_sym_API_DEPRECATED] = ACTIONS(1712), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1712), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1712), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1712), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1712), + [anon_sym___deprecated_msg] = ACTIONS(1712), + [anon_sym___deprecated_enum_msg] = ACTIONS(1712), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1712), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1712), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1712), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1712), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1712), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1712), + [anon_sym_ATimplementation] = ACTIONS(1714), + [anon_sym_NS_ENUM] = ACTIONS(1712), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1712), + [anon_sym_NS_OPTIONS] = ACTIONS(1712), + [anon_sym_typeof] = ACTIONS(1712), + [anon_sym___typeof] = ACTIONS(1712), + [anon_sym___typeof__] = ACTIONS(1712), + [sym_self] = ACTIONS(1712), + [sym_super] = ACTIONS(1712), + [sym_nil] = ACTIONS(1712), + [sym_id] = ACTIONS(1712), + [sym_instancetype] = ACTIONS(1712), + [sym_Class] = ACTIONS(1712), + [sym_SEL] = ACTIONS(1712), + [sym_IMP] = ACTIONS(1712), + [sym_BOOL] = ACTIONS(1712), + [sym_auto] = ACTIONS(1712), + [anon_sym_ATautoreleasepool] = ACTIONS(1714), + [anon_sym_ATsynchronized] = ACTIONS(1714), + [anon_sym_ATtry] = ACTIONS(1714), + [anon_sym_ATthrow] = ACTIONS(1714), + [anon_sym_ATselector] = ACTIONS(1714), + [anon_sym_ATencode] = ACTIONS(1714), + [anon_sym_AT] = ACTIONS(1712), + [sym_YES] = ACTIONS(1712), + [sym_NO] = ACTIONS(1712), + [anon_sym___builtin_available] = ACTIONS(1712), + [anon_sym_ATavailable] = ACTIONS(1714), + [anon_sym_va_arg] = ACTIONS(1712), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1539] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1540] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1541] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1542] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1543] = { + [sym_identifier] = ACTIONS(2084), + [aux_sym_preproc_include_token1] = ACTIONS(2086), + [aux_sym_preproc_def_token1] = ACTIONS(2086), + [aux_sym_preproc_if_token1] = ACTIONS(2084), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2084), + [anon_sym_LPAREN2] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_TILDE] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_PLUS] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_CARET] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_typedef] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym___attribute] = ACTIONS(2084), + [anon_sym___attribute__] = ACTIONS(2084), + [anon_sym___declspec] = ACTIONS(2084), + [anon_sym___cdecl] = ACTIONS(2084), + [anon_sym___clrcall] = ACTIONS(2084), + [anon_sym___stdcall] = ACTIONS(2084), + [anon_sym___fastcall] = ACTIONS(2084), + [anon_sym___thiscall] = ACTIONS(2084), + [anon_sym___vectorcall] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_auto] = ACTIONS(2084), + [anon_sym_register] = ACTIONS(2084), + [anon_sym_inline] = ACTIONS(2084), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_volatile] = ACTIONS(2084), + [anon_sym_restrict] = ACTIONS(2084), + [anon_sym__Atomic] = ACTIONS(2084), + [anon_sym_in] = ACTIONS(2084), + [anon_sym_out] = ACTIONS(2084), + [anon_sym_inout] = ACTIONS(2084), + [anon_sym_bycopy] = ACTIONS(2084), + [anon_sym_byref] = ACTIONS(2084), + [anon_sym_oneway] = ACTIONS(2084), + [anon_sym__Nullable] = ACTIONS(2084), + [anon_sym__Nonnull] = ACTIONS(2084), + [anon_sym__Nullable_result] = ACTIONS(2084), + [anon_sym__Null_unspecified] = ACTIONS(2084), + [anon_sym___autoreleasing] = ACTIONS(2084), + [anon_sym___nullable] = ACTIONS(2084), + [anon_sym___nonnull] = ACTIONS(2084), + [anon_sym___strong] = ACTIONS(2084), + [anon_sym___weak] = ACTIONS(2084), + [anon_sym___bridge] = ACTIONS(2084), + [anon_sym___bridge_transfer] = ACTIONS(2084), + [anon_sym___bridge_retained] = ACTIONS(2084), + [anon_sym___unsafe_unretained] = ACTIONS(2084), + [anon_sym___block] = ACTIONS(2084), + [anon_sym___kindof] = ACTIONS(2084), + [anon_sym___unused] = ACTIONS(2084), + [anon_sym__Complex] = ACTIONS(2084), + [anon_sym___complex] = ACTIONS(2084), + [anon_sym_IBOutlet] = ACTIONS(2084), + [anon_sym_IBInspectable] = ACTIONS(2084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2084), + [anon_sym_signed] = ACTIONS(2084), + [anon_sym_unsigned] = ACTIONS(2084), + [anon_sym_long] = ACTIONS(2084), + [anon_sym_short] = ACTIONS(2084), + [sym_primitive_type] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_switch] = ACTIONS(2084), + [anon_sym_case] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_do] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_PLUS_PLUS] = ACTIONS(2086), + [anon_sym_sizeof] = ACTIONS(2084), + [sym_number_literal] = ACTIONS(2086), + [anon_sym_L_SQUOTE] = ACTIONS(2086), + [anon_sym_u_SQUOTE] = ACTIONS(2086), + [anon_sym_U_SQUOTE] = ACTIONS(2086), + [anon_sym_u8_SQUOTE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_L_DQUOTE] = ACTIONS(2086), + [anon_sym_u_DQUOTE] = ACTIONS(2086), + [anon_sym_U_DQUOTE] = ACTIONS(2086), + [anon_sym_u8_DQUOTE] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym_true] = ACTIONS(2084), + [sym_false] = ACTIONS(2084), + [sym_null] = ACTIONS(2084), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2086), + [anon_sym_ATimport] = ACTIONS(2086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2084), + [anon_sym_ATcompatibility_alias] = ACTIONS(2086), + [anon_sym_ATprotocol] = ACTIONS(2086), + [anon_sym_ATclass] = ACTIONS(2086), + [anon_sym_ATinterface] = ACTIONS(2086), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2084), + [sym_method_attribute_specifier] = ACTIONS(2084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE] = ACTIONS(2084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_API_AVAILABLE] = ACTIONS(2084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_API_DEPRECATED] = ACTIONS(2084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2084), + [anon_sym___deprecated_msg] = ACTIONS(2084), + [anon_sym___deprecated_enum_msg] = ACTIONS(2084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2084), + [anon_sym_ATimplementation] = ACTIONS(2086), + [anon_sym_NS_ENUM] = ACTIONS(2084), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2084), + [anon_sym_NS_OPTIONS] = ACTIONS(2084), + [anon_sym_typeof] = ACTIONS(2084), + [anon_sym___typeof] = ACTIONS(2084), + [anon_sym___typeof__] = ACTIONS(2084), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_nil] = ACTIONS(2084), + [sym_id] = ACTIONS(2084), + [sym_instancetype] = ACTIONS(2084), + [sym_Class] = ACTIONS(2084), + [sym_SEL] = ACTIONS(2084), + [sym_IMP] = ACTIONS(2084), + [sym_BOOL] = ACTIONS(2084), + [sym_auto] = ACTIONS(2084), + [anon_sym_ATautoreleasepool] = ACTIONS(2086), + [anon_sym_ATsynchronized] = ACTIONS(2086), + [anon_sym_ATtry] = ACTIONS(2086), + [anon_sym_ATthrow] = ACTIONS(2086), + [anon_sym_ATselector] = ACTIONS(2086), + [anon_sym_ATencode] = ACTIONS(2086), + [anon_sym_AT] = ACTIONS(2084), + [sym_YES] = ACTIONS(2084), + [sym_NO] = ACTIONS(2084), + [anon_sym___builtin_available] = ACTIONS(2084), + [anon_sym_ATavailable] = ACTIONS(2086), + [anon_sym_va_arg] = ACTIONS(2084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1544] = { + [sym_identifier] = ACTIONS(1788), + [aux_sym_preproc_include_token1] = ACTIONS(1790), + [aux_sym_preproc_def_token1] = ACTIONS(1790), + [aux_sym_preproc_if_token1] = ACTIONS(1788), + [aux_sym_preproc_if_token2] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_CARET] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_typedef] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym___attribute] = ACTIONS(1788), + [anon_sym___attribute__] = ACTIONS(1788), + [anon_sym___declspec] = ACTIONS(1788), + [anon_sym___cdecl] = ACTIONS(1788), + [anon_sym___clrcall] = ACTIONS(1788), + [anon_sym___stdcall] = ACTIONS(1788), + [anon_sym___fastcall] = ACTIONS(1788), + [anon_sym___thiscall] = ACTIONS(1788), + [anon_sym___vectorcall] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_auto] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_inline] = ACTIONS(1788), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_volatile] = ACTIONS(1788), + [anon_sym_restrict] = ACTIONS(1788), + [anon_sym__Atomic] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_out] = ACTIONS(1788), + [anon_sym_inout] = ACTIONS(1788), + [anon_sym_bycopy] = ACTIONS(1788), + [anon_sym_byref] = ACTIONS(1788), + [anon_sym_oneway] = ACTIONS(1788), + [anon_sym__Nullable] = ACTIONS(1788), + [anon_sym__Nonnull] = ACTIONS(1788), + [anon_sym__Nullable_result] = ACTIONS(1788), + [anon_sym__Null_unspecified] = ACTIONS(1788), + [anon_sym___autoreleasing] = ACTIONS(1788), + [anon_sym___nullable] = ACTIONS(1788), + [anon_sym___nonnull] = ACTIONS(1788), + [anon_sym___strong] = ACTIONS(1788), + [anon_sym___weak] = ACTIONS(1788), + [anon_sym___bridge] = ACTIONS(1788), + [anon_sym___bridge_transfer] = ACTIONS(1788), + [anon_sym___bridge_retained] = ACTIONS(1788), + [anon_sym___unsafe_unretained] = ACTIONS(1788), + [anon_sym___block] = ACTIONS(1788), + [anon_sym___kindof] = ACTIONS(1788), + [anon_sym___unused] = ACTIONS(1788), + [anon_sym__Complex] = ACTIONS(1788), + [anon_sym___complex] = ACTIONS(1788), + [anon_sym_IBOutlet] = ACTIONS(1788), + [anon_sym_IBInspectable] = ACTIONS(1788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1788), + [anon_sym_signed] = ACTIONS(1788), + [anon_sym_unsigned] = ACTIONS(1788), + [anon_sym_long] = ACTIONS(1788), + [anon_sym_short] = ACTIONS(1788), + [sym_primitive_type] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_goto] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_sizeof] = ACTIONS(1788), + [sym_number_literal] = ACTIONS(1790), + [anon_sym_L_SQUOTE] = ACTIONS(1790), + [anon_sym_u_SQUOTE] = ACTIONS(1790), + [anon_sym_U_SQUOTE] = ACTIONS(1790), + [anon_sym_u8_SQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_L_DQUOTE] = ACTIONS(1790), + [anon_sym_u_DQUOTE] = ACTIONS(1790), + [anon_sym_U_DQUOTE] = ACTIONS(1790), + [anon_sym_u8_DQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1790), + [anon_sym_ATimport] = ACTIONS(1790), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1788), + [anon_sym_ATcompatibility_alias] = ACTIONS(1790), + [anon_sym_ATprotocol] = ACTIONS(1790), + [anon_sym_ATclass] = ACTIONS(1790), + [anon_sym_ATinterface] = ACTIONS(1790), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1788), + [sym_method_attribute_specifier] = ACTIONS(1788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE] = ACTIONS(1788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_API_AVAILABLE] = ACTIONS(1788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_API_DEPRECATED] = ACTIONS(1788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1788), + [anon_sym___deprecated_msg] = ACTIONS(1788), + [anon_sym___deprecated_enum_msg] = ACTIONS(1788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1788), + [anon_sym_ATimplementation] = ACTIONS(1790), + [anon_sym_NS_ENUM] = ACTIONS(1788), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1788), + [anon_sym_NS_OPTIONS] = ACTIONS(1788), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym___typeof] = ACTIONS(1788), + [anon_sym___typeof__] = ACTIONS(1788), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_nil] = ACTIONS(1788), + [sym_id] = ACTIONS(1788), + [sym_instancetype] = ACTIONS(1788), + [sym_Class] = ACTIONS(1788), + [sym_SEL] = ACTIONS(1788), + [sym_IMP] = ACTIONS(1788), + [sym_BOOL] = ACTIONS(1788), + [sym_auto] = ACTIONS(1788), + [anon_sym_ATautoreleasepool] = ACTIONS(1790), + [anon_sym_ATsynchronized] = ACTIONS(1790), + [anon_sym_ATtry] = ACTIONS(1790), + [anon_sym_ATthrow] = ACTIONS(1790), + [anon_sym_ATselector] = ACTIONS(1790), + [anon_sym_ATencode] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1788), + [sym_YES] = ACTIONS(1788), + [sym_NO] = ACTIONS(1788), + [anon_sym___builtin_available] = ACTIONS(1788), + [anon_sym_ATavailable] = ACTIONS(1790), + [anon_sym_va_arg] = ACTIONS(1788), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1545] = { + [sym_identifier] = ACTIONS(1788), + [aux_sym_preproc_include_token1] = ACTIONS(1790), + [aux_sym_preproc_def_token1] = ACTIONS(1790), + [aux_sym_preproc_if_token1] = ACTIONS(1788), + [aux_sym_preproc_if_token2] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_CARET] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_typedef] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym___attribute] = ACTIONS(1788), + [anon_sym___attribute__] = ACTIONS(1788), + [anon_sym___declspec] = ACTIONS(1788), + [anon_sym___cdecl] = ACTIONS(1788), + [anon_sym___clrcall] = ACTIONS(1788), + [anon_sym___stdcall] = ACTIONS(1788), + [anon_sym___fastcall] = ACTIONS(1788), + [anon_sym___thiscall] = ACTIONS(1788), + [anon_sym___vectorcall] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_auto] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_inline] = ACTIONS(1788), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_volatile] = ACTIONS(1788), + [anon_sym_restrict] = ACTIONS(1788), + [anon_sym__Atomic] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_out] = ACTIONS(1788), + [anon_sym_inout] = ACTIONS(1788), + [anon_sym_bycopy] = ACTIONS(1788), + [anon_sym_byref] = ACTIONS(1788), + [anon_sym_oneway] = ACTIONS(1788), + [anon_sym__Nullable] = ACTIONS(1788), + [anon_sym__Nonnull] = ACTIONS(1788), + [anon_sym__Nullable_result] = ACTIONS(1788), + [anon_sym__Null_unspecified] = ACTIONS(1788), + [anon_sym___autoreleasing] = ACTIONS(1788), + [anon_sym___nullable] = ACTIONS(1788), + [anon_sym___nonnull] = ACTIONS(1788), + [anon_sym___strong] = ACTIONS(1788), + [anon_sym___weak] = ACTIONS(1788), + [anon_sym___bridge] = ACTIONS(1788), + [anon_sym___bridge_transfer] = ACTIONS(1788), + [anon_sym___bridge_retained] = ACTIONS(1788), + [anon_sym___unsafe_unretained] = ACTIONS(1788), + [anon_sym___block] = ACTIONS(1788), + [anon_sym___kindof] = ACTIONS(1788), + [anon_sym___unused] = ACTIONS(1788), + [anon_sym__Complex] = ACTIONS(1788), + [anon_sym___complex] = ACTIONS(1788), + [anon_sym_IBOutlet] = ACTIONS(1788), + [anon_sym_IBInspectable] = ACTIONS(1788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1788), + [anon_sym_signed] = ACTIONS(1788), + [anon_sym_unsigned] = ACTIONS(1788), + [anon_sym_long] = ACTIONS(1788), + [anon_sym_short] = ACTIONS(1788), + [sym_primitive_type] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_goto] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_sizeof] = ACTIONS(1788), + [sym_number_literal] = ACTIONS(1790), + [anon_sym_L_SQUOTE] = ACTIONS(1790), + [anon_sym_u_SQUOTE] = ACTIONS(1790), + [anon_sym_U_SQUOTE] = ACTIONS(1790), + [anon_sym_u8_SQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_L_DQUOTE] = ACTIONS(1790), + [anon_sym_u_DQUOTE] = ACTIONS(1790), + [anon_sym_U_DQUOTE] = ACTIONS(1790), + [anon_sym_u8_DQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1790), + [anon_sym_ATimport] = ACTIONS(1790), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1788), + [anon_sym_ATcompatibility_alias] = ACTIONS(1790), + [anon_sym_ATprotocol] = ACTIONS(1790), + [anon_sym_ATclass] = ACTIONS(1790), + [anon_sym_ATinterface] = ACTIONS(1790), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1788), + [sym_method_attribute_specifier] = ACTIONS(1788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE] = ACTIONS(1788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_API_AVAILABLE] = ACTIONS(1788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_API_DEPRECATED] = ACTIONS(1788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1788), + [anon_sym___deprecated_msg] = ACTIONS(1788), + [anon_sym___deprecated_enum_msg] = ACTIONS(1788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1788), + [anon_sym_ATimplementation] = ACTIONS(1790), + [anon_sym_NS_ENUM] = ACTIONS(1788), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1788), + [anon_sym_NS_OPTIONS] = ACTIONS(1788), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym___typeof] = ACTIONS(1788), + [anon_sym___typeof__] = ACTIONS(1788), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_nil] = ACTIONS(1788), + [sym_id] = ACTIONS(1788), + [sym_instancetype] = ACTIONS(1788), + [sym_Class] = ACTIONS(1788), + [sym_SEL] = ACTIONS(1788), + [sym_IMP] = ACTIONS(1788), + [sym_BOOL] = ACTIONS(1788), + [sym_auto] = ACTIONS(1788), + [anon_sym_ATautoreleasepool] = ACTIONS(1790), + [anon_sym_ATsynchronized] = ACTIONS(1790), + [anon_sym_ATtry] = ACTIONS(1790), + [anon_sym_ATthrow] = ACTIONS(1790), + [anon_sym_ATselector] = ACTIONS(1790), + [anon_sym_ATencode] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1788), + [sym_YES] = ACTIONS(1788), + [sym_NO] = ACTIONS(1788), + [anon_sym___builtin_available] = ACTIONS(1788), + [anon_sym_ATavailable] = ACTIONS(1790), + [anon_sym_va_arg] = ACTIONS(1788), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1546] = { + [sym_identifier] = ACTIONS(1788), + [aux_sym_preproc_include_token1] = ACTIONS(1790), + [aux_sym_preproc_def_token1] = ACTIONS(1790), + [aux_sym_preproc_if_token1] = ACTIONS(1788), + [aux_sym_preproc_if_token2] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_CARET] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_typedef] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym___attribute] = ACTIONS(1788), + [anon_sym___attribute__] = ACTIONS(1788), + [anon_sym___declspec] = ACTIONS(1788), + [anon_sym___cdecl] = ACTIONS(1788), + [anon_sym___clrcall] = ACTIONS(1788), + [anon_sym___stdcall] = ACTIONS(1788), + [anon_sym___fastcall] = ACTIONS(1788), + [anon_sym___thiscall] = ACTIONS(1788), + [anon_sym___vectorcall] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_auto] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_inline] = ACTIONS(1788), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_volatile] = ACTIONS(1788), + [anon_sym_restrict] = ACTIONS(1788), + [anon_sym__Atomic] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_out] = ACTIONS(1788), + [anon_sym_inout] = ACTIONS(1788), + [anon_sym_bycopy] = ACTIONS(1788), + [anon_sym_byref] = ACTIONS(1788), + [anon_sym_oneway] = ACTIONS(1788), + [anon_sym__Nullable] = ACTIONS(1788), + [anon_sym__Nonnull] = ACTIONS(1788), + [anon_sym__Nullable_result] = ACTIONS(1788), + [anon_sym__Null_unspecified] = ACTIONS(1788), + [anon_sym___autoreleasing] = ACTIONS(1788), + [anon_sym___nullable] = ACTIONS(1788), + [anon_sym___nonnull] = ACTIONS(1788), + [anon_sym___strong] = ACTIONS(1788), + [anon_sym___weak] = ACTIONS(1788), + [anon_sym___bridge] = ACTIONS(1788), + [anon_sym___bridge_transfer] = ACTIONS(1788), + [anon_sym___bridge_retained] = ACTIONS(1788), + [anon_sym___unsafe_unretained] = ACTIONS(1788), + [anon_sym___block] = ACTIONS(1788), + [anon_sym___kindof] = ACTIONS(1788), + [anon_sym___unused] = ACTIONS(1788), + [anon_sym__Complex] = ACTIONS(1788), + [anon_sym___complex] = ACTIONS(1788), + [anon_sym_IBOutlet] = ACTIONS(1788), + [anon_sym_IBInspectable] = ACTIONS(1788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1788), + [anon_sym_signed] = ACTIONS(1788), + [anon_sym_unsigned] = ACTIONS(1788), + [anon_sym_long] = ACTIONS(1788), + [anon_sym_short] = ACTIONS(1788), + [sym_primitive_type] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_goto] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_sizeof] = ACTIONS(1788), + [sym_number_literal] = ACTIONS(1790), + [anon_sym_L_SQUOTE] = ACTIONS(1790), + [anon_sym_u_SQUOTE] = ACTIONS(1790), + [anon_sym_U_SQUOTE] = ACTIONS(1790), + [anon_sym_u8_SQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_L_DQUOTE] = ACTIONS(1790), + [anon_sym_u_DQUOTE] = ACTIONS(1790), + [anon_sym_U_DQUOTE] = ACTIONS(1790), + [anon_sym_u8_DQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1790), + [anon_sym_ATimport] = ACTIONS(1790), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1788), + [anon_sym_ATcompatibility_alias] = ACTIONS(1790), + [anon_sym_ATprotocol] = ACTIONS(1790), + [anon_sym_ATclass] = ACTIONS(1790), + [anon_sym_ATinterface] = ACTIONS(1790), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1788), + [sym_method_attribute_specifier] = ACTIONS(1788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE] = ACTIONS(1788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_API_AVAILABLE] = ACTIONS(1788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_API_DEPRECATED] = ACTIONS(1788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1788), + [anon_sym___deprecated_msg] = ACTIONS(1788), + [anon_sym___deprecated_enum_msg] = ACTIONS(1788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1788), + [anon_sym_ATimplementation] = ACTIONS(1790), + [anon_sym_NS_ENUM] = ACTIONS(1788), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1788), + [anon_sym_NS_OPTIONS] = ACTIONS(1788), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym___typeof] = ACTIONS(1788), + [anon_sym___typeof__] = ACTIONS(1788), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_nil] = ACTIONS(1788), + [sym_id] = ACTIONS(1788), + [sym_instancetype] = ACTIONS(1788), + [sym_Class] = ACTIONS(1788), + [sym_SEL] = ACTIONS(1788), + [sym_IMP] = ACTIONS(1788), + [sym_BOOL] = ACTIONS(1788), + [sym_auto] = ACTIONS(1788), + [anon_sym_ATautoreleasepool] = ACTIONS(1790), + [anon_sym_ATsynchronized] = ACTIONS(1790), + [anon_sym_ATtry] = ACTIONS(1790), + [anon_sym_ATthrow] = ACTIONS(1790), + [anon_sym_ATselector] = ACTIONS(1790), + [anon_sym_ATencode] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1788), + [sym_YES] = ACTIONS(1788), + [sym_NO] = ACTIONS(1788), + [anon_sym___builtin_available] = ACTIONS(1788), + [anon_sym_ATavailable] = ACTIONS(1790), + [anon_sym_va_arg] = ACTIONS(1788), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1547] = { + [sym_identifier] = ACTIONS(1788), + [aux_sym_preproc_include_token1] = ACTIONS(1790), + [aux_sym_preproc_def_token1] = ACTIONS(1790), + [aux_sym_preproc_if_token1] = ACTIONS(1788), + [aux_sym_preproc_if_token2] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_CARET] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_typedef] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym___attribute] = ACTIONS(1788), + [anon_sym___attribute__] = ACTIONS(1788), + [anon_sym___declspec] = ACTIONS(1788), + [anon_sym___cdecl] = ACTIONS(1788), + [anon_sym___clrcall] = ACTIONS(1788), + [anon_sym___stdcall] = ACTIONS(1788), + [anon_sym___fastcall] = ACTIONS(1788), + [anon_sym___thiscall] = ACTIONS(1788), + [anon_sym___vectorcall] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_auto] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_inline] = ACTIONS(1788), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_volatile] = ACTIONS(1788), + [anon_sym_restrict] = ACTIONS(1788), + [anon_sym__Atomic] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_out] = ACTIONS(1788), + [anon_sym_inout] = ACTIONS(1788), + [anon_sym_bycopy] = ACTIONS(1788), + [anon_sym_byref] = ACTIONS(1788), + [anon_sym_oneway] = ACTIONS(1788), + [anon_sym__Nullable] = ACTIONS(1788), + [anon_sym__Nonnull] = ACTIONS(1788), + [anon_sym__Nullable_result] = ACTIONS(1788), + [anon_sym__Null_unspecified] = ACTIONS(1788), + [anon_sym___autoreleasing] = ACTIONS(1788), + [anon_sym___nullable] = ACTIONS(1788), + [anon_sym___nonnull] = ACTIONS(1788), + [anon_sym___strong] = ACTIONS(1788), + [anon_sym___weak] = ACTIONS(1788), + [anon_sym___bridge] = ACTIONS(1788), + [anon_sym___bridge_transfer] = ACTIONS(1788), + [anon_sym___bridge_retained] = ACTIONS(1788), + [anon_sym___unsafe_unretained] = ACTIONS(1788), + [anon_sym___block] = ACTIONS(1788), + [anon_sym___kindof] = ACTIONS(1788), + [anon_sym___unused] = ACTIONS(1788), + [anon_sym__Complex] = ACTIONS(1788), + [anon_sym___complex] = ACTIONS(1788), + [anon_sym_IBOutlet] = ACTIONS(1788), + [anon_sym_IBInspectable] = ACTIONS(1788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1788), + [anon_sym_signed] = ACTIONS(1788), + [anon_sym_unsigned] = ACTIONS(1788), + [anon_sym_long] = ACTIONS(1788), + [anon_sym_short] = ACTIONS(1788), + [sym_primitive_type] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_goto] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_sizeof] = ACTIONS(1788), + [sym_number_literal] = ACTIONS(1790), + [anon_sym_L_SQUOTE] = ACTIONS(1790), + [anon_sym_u_SQUOTE] = ACTIONS(1790), + [anon_sym_U_SQUOTE] = ACTIONS(1790), + [anon_sym_u8_SQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_L_DQUOTE] = ACTIONS(1790), + [anon_sym_u_DQUOTE] = ACTIONS(1790), + [anon_sym_U_DQUOTE] = ACTIONS(1790), + [anon_sym_u8_DQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1790), + [anon_sym_ATimport] = ACTIONS(1790), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1788), + [anon_sym_ATcompatibility_alias] = ACTIONS(1790), + [anon_sym_ATprotocol] = ACTIONS(1790), + [anon_sym_ATclass] = ACTIONS(1790), + [anon_sym_ATinterface] = ACTIONS(1790), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1788), + [sym_method_attribute_specifier] = ACTIONS(1788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE] = ACTIONS(1788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_API_AVAILABLE] = ACTIONS(1788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_API_DEPRECATED] = ACTIONS(1788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1788), + [anon_sym___deprecated_msg] = ACTIONS(1788), + [anon_sym___deprecated_enum_msg] = ACTIONS(1788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1788), + [anon_sym_ATimplementation] = ACTIONS(1790), + [anon_sym_NS_ENUM] = ACTIONS(1788), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1788), + [anon_sym_NS_OPTIONS] = ACTIONS(1788), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym___typeof] = ACTIONS(1788), + [anon_sym___typeof__] = ACTIONS(1788), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_nil] = ACTIONS(1788), + [sym_id] = ACTIONS(1788), + [sym_instancetype] = ACTIONS(1788), + [sym_Class] = ACTIONS(1788), + [sym_SEL] = ACTIONS(1788), + [sym_IMP] = ACTIONS(1788), + [sym_BOOL] = ACTIONS(1788), + [sym_auto] = ACTIONS(1788), + [anon_sym_ATautoreleasepool] = ACTIONS(1790), + [anon_sym_ATsynchronized] = ACTIONS(1790), + [anon_sym_ATtry] = ACTIONS(1790), + [anon_sym_ATthrow] = ACTIONS(1790), + [anon_sym_ATselector] = ACTIONS(1790), + [anon_sym_ATencode] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1788), + [sym_YES] = ACTIONS(1788), + [sym_NO] = ACTIONS(1788), + [anon_sym___builtin_available] = ACTIONS(1788), + [anon_sym_ATavailable] = ACTIONS(1790), + [anon_sym_va_arg] = ACTIONS(1788), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1548] = { + [sym_identifier] = ACTIONS(2004), + [aux_sym_preproc_include_token1] = ACTIONS(2006), + [aux_sym_preproc_def_token1] = ACTIONS(2006), + [aux_sym_preproc_if_token1] = ACTIONS(2004), + [aux_sym_preproc_if_token2] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2004), + [anon_sym_LPAREN2] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_typedef] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym___attribute] = ACTIONS(2004), + [anon_sym___attribute__] = ACTIONS(2004), + [anon_sym___declspec] = ACTIONS(2004), + [anon_sym___cdecl] = ACTIONS(2004), + [anon_sym___clrcall] = ACTIONS(2004), + [anon_sym___stdcall] = ACTIONS(2004), + [anon_sym___fastcall] = ACTIONS(2004), + [anon_sym___thiscall] = ACTIONS(2004), + [anon_sym___vectorcall] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_auto] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_inline] = ACTIONS(2004), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_volatile] = ACTIONS(2004), + [anon_sym_restrict] = ACTIONS(2004), + [anon_sym__Atomic] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_out] = ACTIONS(2004), + [anon_sym_inout] = ACTIONS(2004), + [anon_sym_bycopy] = ACTIONS(2004), + [anon_sym_byref] = ACTIONS(2004), + [anon_sym_oneway] = ACTIONS(2004), + [anon_sym__Nullable] = ACTIONS(2004), + [anon_sym__Nonnull] = ACTIONS(2004), + [anon_sym__Nullable_result] = ACTIONS(2004), + [anon_sym__Null_unspecified] = ACTIONS(2004), + [anon_sym___autoreleasing] = ACTIONS(2004), + [anon_sym___nullable] = ACTIONS(2004), + [anon_sym___nonnull] = ACTIONS(2004), + [anon_sym___strong] = ACTIONS(2004), + [anon_sym___weak] = ACTIONS(2004), + [anon_sym___bridge] = ACTIONS(2004), + [anon_sym___bridge_transfer] = ACTIONS(2004), + [anon_sym___bridge_retained] = ACTIONS(2004), + [anon_sym___unsafe_unretained] = ACTIONS(2004), + [anon_sym___block] = ACTIONS(2004), + [anon_sym___kindof] = ACTIONS(2004), + [anon_sym___unused] = ACTIONS(2004), + [anon_sym__Complex] = ACTIONS(2004), + [anon_sym___complex] = ACTIONS(2004), + [anon_sym_IBOutlet] = ACTIONS(2004), + [anon_sym_IBInspectable] = ACTIONS(2004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2004), + [anon_sym_signed] = ACTIONS(2004), + [anon_sym_unsigned] = ACTIONS(2004), + [anon_sym_long] = ACTIONS(2004), + [anon_sym_short] = ACTIONS(2004), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_goto] = ACTIONS(2004), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_sizeof] = ACTIONS(2004), + [sym_number_literal] = ACTIONS(2006), + [anon_sym_L_SQUOTE] = ACTIONS(2006), + [anon_sym_u_SQUOTE] = ACTIONS(2006), + [anon_sym_U_SQUOTE] = ACTIONS(2006), + [anon_sym_u8_SQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_L_DQUOTE] = ACTIONS(2006), + [anon_sym_u_DQUOTE] = ACTIONS(2006), + [anon_sym_U_DQUOTE] = ACTIONS(2006), + [anon_sym_u8_DQUOTE] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(2006), + [anon_sym_ATimport] = ACTIONS(2006), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2004), + [anon_sym_ATcompatibility_alias] = ACTIONS(2006), + [anon_sym_ATprotocol] = ACTIONS(2006), + [anon_sym_ATclass] = ACTIONS(2006), + [anon_sym_ATinterface] = ACTIONS(2006), + [sym_class_interface_attribute_sepcifier] = ACTIONS(2004), + [sym_method_attribute_specifier] = ACTIONS(2004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE] = ACTIONS(2004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_API_AVAILABLE] = ACTIONS(2004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_API_DEPRECATED] = ACTIONS(2004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2004), + [anon_sym___deprecated_msg] = ACTIONS(2004), + [anon_sym___deprecated_enum_msg] = ACTIONS(2004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2004), + [anon_sym_ATimplementation] = ACTIONS(2006), + [anon_sym_NS_ENUM] = ACTIONS(2004), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2004), + [anon_sym_NS_OPTIONS] = ACTIONS(2004), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym___typeof] = ACTIONS(2004), + [anon_sym___typeof__] = ACTIONS(2004), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_nil] = ACTIONS(2004), + [sym_id] = ACTIONS(2004), + [sym_instancetype] = ACTIONS(2004), + [sym_Class] = ACTIONS(2004), + [sym_SEL] = ACTIONS(2004), + [sym_IMP] = ACTIONS(2004), + [sym_BOOL] = ACTIONS(2004), + [sym_auto] = ACTIONS(2004), + [anon_sym_ATautoreleasepool] = ACTIONS(2006), + [anon_sym_ATsynchronized] = ACTIONS(2006), + [anon_sym_ATtry] = ACTIONS(2006), + [anon_sym_ATthrow] = ACTIONS(2006), + [anon_sym_ATselector] = ACTIONS(2006), + [anon_sym_ATencode] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2004), + [sym_YES] = ACTIONS(2004), + [sym_NO] = ACTIONS(2004), + [anon_sym___builtin_available] = ACTIONS(2004), + [anon_sym_ATavailable] = ACTIONS(2006), + [anon_sym_va_arg] = ACTIONS(2004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1549] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1550] = { + [sym_identifier] = ACTIONS(1788), + [aux_sym_preproc_include_token1] = ACTIONS(1790), + [aux_sym_preproc_def_token1] = ACTIONS(1790), + [aux_sym_preproc_if_token1] = ACTIONS(1788), + [aux_sym_preproc_if_token2] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_CARET] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_typedef] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym___attribute] = ACTIONS(1788), + [anon_sym___attribute__] = ACTIONS(1788), + [anon_sym___declspec] = ACTIONS(1788), + [anon_sym___cdecl] = ACTIONS(1788), + [anon_sym___clrcall] = ACTIONS(1788), + [anon_sym___stdcall] = ACTIONS(1788), + [anon_sym___fastcall] = ACTIONS(1788), + [anon_sym___thiscall] = ACTIONS(1788), + [anon_sym___vectorcall] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_auto] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_inline] = ACTIONS(1788), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_volatile] = ACTIONS(1788), + [anon_sym_restrict] = ACTIONS(1788), + [anon_sym__Atomic] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_out] = ACTIONS(1788), + [anon_sym_inout] = ACTIONS(1788), + [anon_sym_bycopy] = ACTIONS(1788), + [anon_sym_byref] = ACTIONS(1788), + [anon_sym_oneway] = ACTIONS(1788), + [anon_sym__Nullable] = ACTIONS(1788), + [anon_sym__Nonnull] = ACTIONS(1788), + [anon_sym__Nullable_result] = ACTIONS(1788), + [anon_sym__Null_unspecified] = ACTIONS(1788), + [anon_sym___autoreleasing] = ACTIONS(1788), + [anon_sym___nullable] = ACTIONS(1788), + [anon_sym___nonnull] = ACTIONS(1788), + [anon_sym___strong] = ACTIONS(1788), + [anon_sym___weak] = ACTIONS(1788), + [anon_sym___bridge] = ACTIONS(1788), + [anon_sym___bridge_transfer] = ACTIONS(1788), + [anon_sym___bridge_retained] = ACTIONS(1788), + [anon_sym___unsafe_unretained] = ACTIONS(1788), + [anon_sym___block] = ACTIONS(1788), + [anon_sym___kindof] = ACTIONS(1788), + [anon_sym___unused] = ACTIONS(1788), + [anon_sym__Complex] = ACTIONS(1788), + [anon_sym___complex] = ACTIONS(1788), + [anon_sym_IBOutlet] = ACTIONS(1788), + [anon_sym_IBInspectable] = ACTIONS(1788), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1788), + [anon_sym_signed] = ACTIONS(1788), + [anon_sym_unsigned] = ACTIONS(1788), + [anon_sym_long] = ACTIONS(1788), + [anon_sym_short] = ACTIONS(1788), + [sym_primitive_type] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1788), + [anon_sym_case] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_goto] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1790), + [anon_sym_PLUS_PLUS] = ACTIONS(1790), + [anon_sym_sizeof] = ACTIONS(1788), + [sym_number_literal] = ACTIONS(1790), + [anon_sym_L_SQUOTE] = ACTIONS(1790), + [anon_sym_u_SQUOTE] = ACTIONS(1790), + [anon_sym_U_SQUOTE] = ACTIONS(1790), + [anon_sym_u8_SQUOTE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1790), + [anon_sym_L_DQUOTE] = ACTIONS(1790), + [anon_sym_u_DQUOTE] = ACTIONS(1790), + [anon_sym_U_DQUOTE] = ACTIONS(1790), + [anon_sym_u8_DQUOTE] = ACTIONS(1790), + [anon_sym_DQUOTE] = ACTIONS(1790), + [sym_true] = ACTIONS(1788), + [sym_false] = ACTIONS(1788), + [sym_null] = ACTIONS(1788), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1790), + [anon_sym_ATimport] = ACTIONS(1790), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1788), + [anon_sym_ATcompatibility_alias] = ACTIONS(1790), + [anon_sym_ATprotocol] = ACTIONS(1790), + [anon_sym_ATclass] = ACTIONS(1790), + [anon_sym_ATinterface] = ACTIONS(1790), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1788), + [sym_method_attribute_specifier] = ACTIONS(1788), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1788), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1788), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE] = ACTIONS(1788), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1788), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_API_AVAILABLE] = ACTIONS(1788), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_API_DEPRECATED] = ACTIONS(1788), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1788), + [anon_sym___deprecated_msg] = ACTIONS(1788), + [anon_sym___deprecated_enum_msg] = ACTIONS(1788), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1788), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1788), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1788), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1788), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1788), + [anon_sym_ATimplementation] = ACTIONS(1790), + [anon_sym_NS_ENUM] = ACTIONS(1788), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1788), + [anon_sym_NS_OPTIONS] = ACTIONS(1788), + [anon_sym_typeof] = ACTIONS(1788), + [anon_sym___typeof] = ACTIONS(1788), + [anon_sym___typeof__] = ACTIONS(1788), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_nil] = ACTIONS(1788), + [sym_id] = ACTIONS(1788), + [sym_instancetype] = ACTIONS(1788), + [sym_Class] = ACTIONS(1788), + [sym_SEL] = ACTIONS(1788), + [sym_IMP] = ACTIONS(1788), + [sym_BOOL] = ACTIONS(1788), + [sym_auto] = ACTIONS(1788), + [anon_sym_ATautoreleasepool] = ACTIONS(1790), + [anon_sym_ATsynchronized] = ACTIONS(1790), + [anon_sym_ATtry] = ACTIONS(1790), + [anon_sym_ATthrow] = ACTIONS(1790), + [anon_sym_ATselector] = ACTIONS(1790), + [anon_sym_ATencode] = ACTIONS(1790), + [anon_sym_AT] = ACTIONS(1788), + [sym_YES] = ACTIONS(1788), + [sym_NO] = ACTIONS(1788), + [anon_sym___builtin_available] = ACTIONS(1788), + [anon_sym_ATavailable] = ACTIONS(1790), + [anon_sym_va_arg] = ACTIONS(1788), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1551] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1552] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1553] = { + [sym_identifier] = ACTIONS(1784), + [aux_sym_preproc_include_token1] = ACTIONS(1786), + [aux_sym_preproc_def_token1] = ACTIONS(1786), + [aux_sym_preproc_if_token1] = ACTIONS(1784), + [aux_sym_preproc_if_token2] = ACTIONS(1784), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1784), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1784), + [anon_sym_LPAREN2] = ACTIONS(1786), + [anon_sym_BANG] = ACTIONS(1786), + [anon_sym_TILDE] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1786), + [anon_sym_CARET] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_typedef] = ACTIONS(1784), + [anon_sym_extern] = ACTIONS(1784), + [anon_sym___attribute] = ACTIONS(1784), + [anon_sym___attribute__] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(1784), + [anon_sym___cdecl] = ACTIONS(1784), + [anon_sym___clrcall] = ACTIONS(1784), + [anon_sym___stdcall] = ACTIONS(1784), + [anon_sym___fastcall] = ACTIONS(1784), + [anon_sym___thiscall] = ACTIONS(1784), + [anon_sym___vectorcall] = ACTIONS(1784), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_static] = ACTIONS(1784), + [anon_sym_auto] = ACTIONS(1784), + [anon_sym_register] = ACTIONS(1784), + [anon_sym_inline] = ACTIONS(1784), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1784), + [anon_sym_const] = ACTIONS(1784), + [anon_sym_volatile] = ACTIONS(1784), + [anon_sym_restrict] = ACTIONS(1784), + [anon_sym__Atomic] = ACTIONS(1784), + [anon_sym_in] = ACTIONS(1784), + [anon_sym_out] = ACTIONS(1784), + [anon_sym_inout] = ACTIONS(1784), + [anon_sym_bycopy] = ACTIONS(1784), + [anon_sym_byref] = ACTIONS(1784), + [anon_sym_oneway] = ACTIONS(1784), + [anon_sym__Nullable] = ACTIONS(1784), + [anon_sym__Nonnull] = ACTIONS(1784), + [anon_sym__Nullable_result] = ACTIONS(1784), + [anon_sym__Null_unspecified] = ACTIONS(1784), + [anon_sym___autoreleasing] = ACTIONS(1784), + [anon_sym___nullable] = ACTIONS(1784), + [anon_sym___nonnull] = ACTIONS(1784), + [anon_sym___strong] = ACTIONS(1784), + [anon_sym___weak] = ACTIONS(1784), + [anon_sym___bridge] = ACTIONS(1784), + [anon_sym___bridge_transfer] = ACTIONS(1784), + [anon_sym___bridge_retained] = ACTIONS(1784), + [anon_sym___unsafe_unretained] = ACTIONS(1784), + [anon_sym___block] = ACTIONS(1784), + [anon_sym___kindof] = ACTIONS(1784), + [anon_sym___unused] = ACTIONS(1784), + [anon_sym__Complex] = ACTIONS(1784), + [anon_sym___complex] = ACTIONS(1784), + [anon_sym_IBOutlet] = ACTIONS(1784), + [anon_sym_IBInspectable] = ACTIONS(1784), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1784), + [anon_sym_signed] = ACTIONS(1784), + [anon_sym_unsigned] = ACTIONS(1784), + [anon_sym_long] = ACTIONS(1784), + [anon_sym_short] = ACTIONS(1784), + [sym_primitive_type] = ACTIONS(1784), + [anon_sym_enum] = ACTIONS(1784), + [anon_sym_struct] = ACTIONS(1784), + [anon_sym_union] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_switch] = ACTIONS(1784), + [anon_sym_case] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_goto] = ACTIONS(1784), + [anon_sym_DASH_DASH] = ACTIONS(1786), + [anon_sym_PLUS_PLUS] = ACTIONS(1786), + [anon_sym_sizeof] = ACTIONS(1784), + [sym_number_literal] = ACTIONS(1786), + [anon_sym_L_SQUOTE] = ACTIONS(1786), + [anon_sym_u_SQUOTE] = ACTIONS(1786), + [anon_sym_U_SQUOTE] = ACTIONS(1786), + [anon_sym_u8_SQUOTE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1786), + [anon_sym_L_DQUOTE] = ACTIONS(1786), + [anon_sym_u_DQUOTE] = ACTIONS(1786), + [anon_sym_U_DQUOTE] = ACTIONS(1786), + [anon_sym_u8_DQUOTE] = ACTIONS(1786), + [anon_sym_DQUOTE] = ACTIONS(1786), + [sym_true] = ACTIONS(1784), + [sym_false] = ACTIONS(1784), + [sym_null] = ACTIONS(1784), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1786), + [anon_sym_ATimport] = ACTIONS(1786), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1784), + [anon_sym_ATcompatibility_alias] = ACTIONS(1786), + [anon_sym_ATprotocol] = ACTIONS(1786), + [anon_sym_ATclass] = ACTIONS(1786), + [anon_sym_ATinterface] = ACTIONS(1786), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1784), + [sym_method_attribute_specifier] = ACTIONS(1784), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1784), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1784), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1784), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1784), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1784), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1784), + [anon_sym_NS_AVAILABLE] = ACTIONS(1784), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1784), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1784), + [anon_sym_API_AVAILABLE] = ACTIONS(1784), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1784), + [anon_sym_API_DEPRECATED] = ACTIONS(1784), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1784), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1784), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1784), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1784), + [anon_sym___deprecated_msg] = ACTIONS(1784), + [anon_sym___deprecated_enum_msg] = ACTIONS(1784), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1784), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1784), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1784), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1784), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1784), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1784), + [anon_sym_ATimplementation] = ACTIONS(1786), + [anon_sym_NS_ENUM] = ACTIONS(1784), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1784), + [anon_sym_NS_OPTIONS] = ACTIONS(1784), + [anon_sym_typeof] = ACTIONS(1784), + [anon_sym___typeof] = ACTIONS(1784), + [anon_sym___typeof__] = ACTIONS(1784), + [sym_self] = ACTIONS(1784), + [sym_super] = ACTIONS(1784), + [sym_nil] = ACTIONS(1784), + [sym_id] = ACTIONS(1784), + [sym_instancetype] = ACTIONS(1784), + [sym_Class] = ACTIONS(1784), + [sym_SEL] = ACTIONS(1784), + [sym_IMP] = ACTIONS(1784), + [sym_BOOL] = ACTIONS(1784), + [sym_auto] = ACTIONS(1784), + [anon_sym_ATautoreleasepool] = ACTIONS(1786), + [anon_sym_ATsynchronized] = ACTIONS(1786), + [anon_sym_ATtry] = ACTIONS(1786), + [anon_sym_ATthrow] = ACTIONS(1786), + [anon_sym_ATselector] = ACTIONS(1786), + [anon_sym_ATencode] = ACTIONS(1786), + [anon_sym_AT] = ACTIONS(1784), + [sym_YES] = ACTIONS(1784), + [sym_NO] = ACTIONS(1784), + [anon_sym___builtin_available] = ACTIONS(1784), + [anon_sym_ATavailable] = ACTIONS(1786), + [anon_sym_va_arg] = ACTIONS(1784), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1554] = { + [sym_identifier] = ACTIONS(1780), + [aux_sym_preproc_include_token1] = ACTIONS(1782), + [aux_sym_preproc_def_token1] = ACTIONS(1782), + [aux_sym_preproc_if_token1] = ACTIONS(1780), + [aux_sym_preproc_if_token2] = ACTIONS(1780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1780), + [anon_sym_LPAREN2] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_CARET] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_typedef] = ACTIONS(1780), + [anon_sym_extern] = ACTIONS(1780), + [anon_sym___attribute] = ACTIONS(1780), + [anon_sym___attribute__] = ACTIONS(1780), + [anon_sym___declspec] = ACTIONS(1780), + [anon_sym___cdecl] = ACTIONS(1780), + [anon_sym___clrcall] = ACTIONS(1780), + [anon_sym___stdcall] = ACTIONS(1780), + [anon_sym___fastcall] = ACTIONS(1780), + [anon_sym___thiscall] = ACTIONS(1780), + [anon_sym___vectorcall] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1780), + [anon_sym_auto] = ACTIONS(1780), + [anon_sym_register] = ACTIONS(1780), + [anon_sym_inline] = ACTIONS(1780), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1780), + [anon_sym_const] = ACTIONS(1780), + [anon_sym_volatile] = ACTIONS(1780), + [anon_sym_restrict] = ACTIONS(1780), + [anon_sym__Atomic] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_out] = ACTIONS(1780), + [anon_sym_inout] = ACTIONS(1780), + [anon_sym_bycopy] = ACTIONS(1780), + [anon_sym_byref] = ACTIONS(1780), + [anon_sym_oneway] = ACTIONS(1780), + [anon_sym__Nullable] = ACTIONS(1780), + [anon_sym__Nonnull] = ACTIONS(1780), + [anon_sym__Nullable_result] = ACTIONS(1780), + [anon_sym__Null_unspecified] = ACTIONS(1780), + [anon_sym___autoreleasing] = ACTIONS(1780), + [anon_sym___nullable] = ACTIONS(1780), + [anon_sym___nonnull] = ACTIONS(1780), + [anon_sym___strong] = ACTIONS(1780), + [anon_sym___weak] = ACTIONS(1780), + [anon_sym___bridge] = ACTIONS(1780), + [anon_sym___bridge_transfer] = ACTIONS(1780), + [anon_sym___bridge_retained] = ACTIONS(1780), + [anon_sym___unsafe_unretained] = ACTIONS(1780), + [anon_sym___block] = ACTIONS(1780), + [anon_sym___kindof] = ACTIONS(1780), + [anon_sym___unused] = ACTIONS(1780), + [anon_sym__Complex] = ACTIONS(1780), + [anon_sym___complex] = ACTIONS(1780), + [anon_sym_IBOutlet] = ACTIONS(1780), + [anon_sym_IBInspectable] = ACTIONS(1780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1780), + [anon_sym_signed] = ACTIONS(1780), + [anon_sym_unsigned] = ACTIONS(1780), + [anon_sym_long] = ACTIONS(1780), + [anon_sym_short] = ACTIONS(1780), + [sym_primitive_type] = ACTIONS(1780), + [anon_sym_enum] = ACTIONS(1780), + [anon_sym_struct] = ACTIONS(1780), + [anon_sym_union] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_case] = ACTIONS(1780), + [anon_sym_default] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_goto] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1780), + [sym_number_literal] = ACTIONS(1782), + [anon_sym_L_SQUOTE] = ACTIONS(1782), + [anon_sym_u_SQUOTE] = ACTIONS(1782), + [anon_sym_U_SQUOTE] = ACTIONS(1782), + [anon_sym_u8_SQUOTE] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [anon_sym_L_DQUOTE] = ACTIONS(1782), + [anon_sym_u_DQUOTE] = ACTIONS(1782), + [anon_sym_U_DQUOTE] = ACTIONS(1782), + [anon_sym_u8_DQUOTE] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [sym_true] = ACTIONS(1780), + [sym_false] = ACTIONS(1780), + [sym_null] = ACTIONS(1780), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1782), + [anon_sym_ATimport] = ACTIONS(1782), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1780), + [anon_sym_ATcompatibility_alias] = ACTIONS(1782), + [anon_sym_ATprotocol] = ACTIONS(1782), + [anon_sym_ATclass] = ACTIONS(1782), + [anon_sym_ATinterface] = ACTIONS(1782), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1780), + [sym_method_attribute_specifier] = ACTIONS(1780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1780), + [anon_sym_NS_AVAILABLE] = ACTIONS(1780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_API_AVAILABLE] = ACTIONS(1780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1780), + [anon_sym_API_DEPRECATED] = ACTIONS(1780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1780), + [anon_sym___deprecated_msg] = ACTIONS(1780), + [anon_sym___deprecated_enum_msg] = ACTIONS(1780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1780), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1780), + [anon_sym_ATimplementation] = ACTIONS(1782), + [anon_sym_NS_ENUM] = ACTIONS(1780), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1780), + [anon_sym_NS_OPTIONS] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(1780), + [anon_sym___typeof] = ACTIONS(1780), + [anon_sym___typeof__] = ACTIONS(1780), + [sym_self] = ACTIONS(1780), + [sym_super] = ACTIONS(1780), + [sym_nil] = ACTIONS(1780), + [sym_id] = ACTIONS(1780), + [sym_instancetype] = ACTIONS(1780), + [sym_Class] = ACTIONS(1780), + [sym_SEL] = ACTIONS(1780), + [sym_IMP] = ACTIONS(1780), + [sym_BOOL] = ACTIONS(1780), + [sym_auto] = ACTIONS(1780), + [anon_sym_ATautoreleasepool] = ACTIONS(1782), + [anon_sym_ATsynchronized] = ACTIONS(1782), + [anon_sym_ATtry] = ACTIONS(1782), + [anon_sym_ATthrow] = ACTIONS(1782), + [anon_sym_ATselector] = ACTIONS(1782), + [anon_sym_ATencode] = ACTIONS(1782), + [anon_sym_AT] = ACTIONS(1780), + [sym_YES] = ACTIONS(1780), + [sym_NO] = ACTIONS(1780), + [anon_sym___builtin_available] = ACTIONS(1780), + [anon_sym_ATavailable] = ACTIONS(1782), + [anon_sym_va_arg] = ACTIONS(1780), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1555] = { + [sym_identifier] = ACTIONS(1716), + [aux_sym_preproc_include_token1] = ACTIONS(1718), + [aux_sym_preproc_def_token1] = ACTIONS(1718), + [aux_sym_preproc_if_token1] = ACTIONS(1716), + [aux_sym_preproc_if_token2] = ACTIONS(1716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1716), + [anon_sym_LPAREN2] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_CARET] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_typedef] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym___attribute] = ACTIONS(1716), + [anon_sym___attribute__] = ACTIONS(1716), + [anon_sym___declspec] = ACTIONS(1716), + [anon_sym___cdecl] = ACTIONS(1716), + [anon_sym___clrcall] = ACTIONS(1716), + [anon_sym___stdcall] = ACTIONS(1716), + [anon_sym___fastcall] = ACTIONS(1716), + [anon_sym___thiscall] = ACTIONS(1716), + [anon_sym___vectorcall] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_auto] = ACTIONS(1716), + [anon_sym_register] = ACTIONS(1716), + [anon_sym_inline] = ACTIONS(1716), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_volatile] = ACTIONS(1716), + [anon_sym_restrict] = ACTIONS(1716), + [anon_sym__Atomic] = ACTIONS(1716), + [anon_sym_in] = ACTIONS(1716), + [anon_sym_out] = ACTIONS(1716), + [anon_sym_inout] = ACTIONS(1716), + [anon_sym_bycopy] = ACTIONS(1716), + [anon_sym_byref] = ACTIONS(1716), + [anon_sym_oneway] = ACTIONS(1716), + [anon_sym__Nullable] = ACTIONS(1716), + [anon_sym__Nonnull] = ACTIONS(1716), + [anon_sym__Nullable_result] = ACTIONS(1716), + [anon_sym__Null_unspecified] = ACTIONS(1716), + [anon_sym___autoreleasing] = ACTIONS(1716), + [anon_sym___nullable] = ACTIONS(1716), + [anon_sym___nonnull] = ACTIONS(1716), + [anon_sym___strong] = ACTIONS(1716), + [anon_sym___weak] = ACTIONS(1716), + [anon_sym___bridge] = ACTIONS(1716), + [anon_sym___bridge_transfer] = ACTIONS(1716), + [anon_sym___bridge_retained] = ACTIONS(1716), + [anon_sym___unsafe_unretained] = ACTIONS(1716), + [anon_sym___block] = ACTIONS(1716), + [anon_sym___kindof] = ACTIONS(1716), + [anon_sym___unused] = ACTIONS(1716), + [anon_sym__Complex] = ACTIONS(1716), + [anon_sym___complex] = ACTIONS(1716), + [anon_sym_IBOutlet] = ACTIONS(1716), + [anon_sym_IBInspectable] = ACTIONS(1716), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1716), + [anon_sym_signed] = ACTIONS(1716), + [anon_sym_unsigned] = ACTIONS(1716), + [anon_sym_long] = ACTIONS(1716), + [anon_sym_short] = ACTIONS(1716), + [sym_primitive_type] = ACTIONS(1716), + [anon_sym_enum] = ACTIONS(1716), + [anon_sym_struct] = ACTIONS(1716), + [anon_sym_union] = ACTIONS(1716), + [anon_sym_if] = ACTIONS(1716), + [anon_sym_switch] = ACTIONS(1716), + [anon_sym_case] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1716), + [anon_sym_while] = ACTIONS(1716), + [anon_sym_do] = ACTIONS(1716), + [anon_sym_for] = ACTIONS(1716), + [anon_sym_return] = ACTIONS(1716), + [anon_sym_break] = ACTIONS(1716), + [anon_sym_continue] = ACTIONS(1716), + [anon_sym_goto] = ACTIONS(1716), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_sizeof] = ACTIONS(1716), + [sym_number_literal] = ACTIONS(1718), + [anon_sym_L_SQUOTE] = ACTIONS(1718), + [anon_sym_u_SQUOTE] = ACTIONS(1718), + [anon_sym_U_SQUOTE] = ACTIONS(1718), + [anon_sym_u8_SQUOTE] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(1718), + [anon_sym_L_DQUOTE] = ACTIONS(1718), + [anon_sym_u_DQUOTE] = ACTIONS(1718), + [anon_sym_U_DQUOTE] = ACTIONS(1718), + [anon_sym_u8_DQUOTE] = ACTIONS(1718), + [anon_sym_DQUOTE] = ACTIONS(1718), + [sym_true] = ACTIONS(1716), + [sym_false] = ACTIONS(1716), + [sym_null] = ACTIONS(1716), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1718), + [anon_sym_ATimport] = ACTIONS(1718), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1716), + [anon_sym_ATcompatibility_alias] = ACTIONS(1718), + [anon_sym_ATprotocol] = ACTIONS(1718), + [anon_sym_ATclass] = ACTIONS(1718), + [anon_sym_ATinterface] = ACTIONS(1718), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1716), + [sym_method_attribute_specifier] = ACTIONS(1716), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1716), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1716), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1716), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1716), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1716), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1716), + [anon_sym_NS_AVAILABLE] = ACTIONS(1716), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1716), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1716), + [anon_sym_API_AVAILABLE] = ACTIONS(1716), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1716), + [anon_sym_API_DEPRECATED] = ACTIONS(1716), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1716), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1716), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1716), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1716), + [anon_sym___deprecated_msg] = ACTIONS(1716), + [anon_sym___deprecated_enum_msg] = ACTIONS(1716), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1716), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1716), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1716), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1716), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1716), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1716), + [anon_sym_ATimplementation] = ACTIONS(1718), + [anon_sym_NS_ENUM] = ACTIONS(1716), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1716), + [anon_sym_NS_OPTIONS] = ACTIONS(1716), + [anon_sym_typeof] = ACTIONS(1716), + [anon_sym___typeof] = ACTIONS(1716), + [anon_sym___typeof__] = ACTIONS(1716), + [sym_self] = ACTIONS(1716), + [sym_super] = ACTIONS(1716), + [sym_nil] = ACTIONS(1716), + [sym_id] = ACTIONS(1716), + [sym_instancetype] = ACTIONS(1716), + [sym_Class] = ACTIONS(1716), + [sym_SEL] = ACTIONS(1716), + [sym_IMP] = ACTIONS(1716), + [sym_BOOL] = ACTIONS(1716), + [sym_auto] = ACTIONS(1716), + [anon_sym_ATautoreleasepool] = ACTIONS(1718), + [anon_sym_ATsynchronized] = ACTIONS(1718), + [anon_sym_ATtry] = ACTIONS(1718), + [anon_sym_ATthrow] = ACTIONS(1718), + [anon_sym_ATselector] = ACTIONS(1718), + [anon_sym_ATencode] = ACTIONS(1718), + [anon_sym_AT] = ACTIONS(1716), + [sym_YES] = ACTIONS(1716), + [sym_NO] = ACTIONS(1716), + [anon_sym___builtin_available] = ACTIONS(1716), + [anon_sym_ATavailable] = ACTIONS(1718), + [anon_sym_va_arg] = ACTIONS(1716), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1556] = { + [sym_identifier] = ACTIONS(1724), + [aux_sym_preproc_include_token1] = ACTIONS(1726), + [aux_sym_preproc_def_token1] = ACTIONS(1726), + [aux_sym_preproc_if_token1] = ACTIONS(1724), + [aux_sym_preproc_if_token2] = ACTIONS(1724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1724), + [anon_sym_LPAREN2] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_CARET] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_typedef] = ACTIONS(1724), + [anon_sym_extern] = ACTIONS(1724), + [anon_sym___attribute] = ACTIONS(1724), + [anon_sym___attribute__] = ACTIONS(1724), + [anon_sym___declspec] = ACTIONS(1724), + [anon_sym___cdecl] = ACTIONS(1724), + [anon_sym___clrcall] = ACTIONS(1724), + [anon_sym___stdcall] = ACTIONS(1724), + [anon_sym___fastcall] = ACTIONS(1724), + [anon_sym___thiscall] = ACTIONS(1724), + [anon_sym___vectorcall] = ACTIONS(1724), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_static] = ACTIONS(1724), + [anon_sym_auto] = ACTIONS(1724), + [anon_sym_register] = ACTIONS(1724), + [anon_sym_inline] = ACTIONS(1724), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1724), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_volatile] = ACTIONS(1724), + [anon_sym_restrict] = ACTIONS(1724), + [anon_sym__Atomic] = ACTIONS(1724), + [anon_sym_in] = ACTIONS(1724), + [anon_sym_out] = ACTIONS(1724), + [anon_sym_inout] = ACTIONS(1724), + [anon_sym_bycopy] = ACTIONS(1724), + [anon_sym_byref] = ACTIONS(1724), + [anon_sym_oneway] = ACTIONS(1724), + [anon_sym__Nullable] = ACTIONS(1724), + [anon_sym__Nonnull] = ACTIONS(1724), + [anon_sym__Nullable_result] = ACTIONS(1724), + [anon_sym__Null_unspecified] = ACTIONS(1724), + [anon_sym___autoreleasing] = ACTIONS(1724), + [anon_sym___nullable] = ACTIONS(1724), + [anon_sym___nonnull] = ACTIONS(1724), + [anon_sym___strong] = ACTIONS(1724), + [anon_sym___weak] = ACTIONS(1724), + [anon_sym___bridge] = ACTIONS(1724), + [anon_sym___bridge_transfer] = ACTIONS(1724), + [anon_sym___bridge_retained] = ACTIONS(1724), + [anon_sym___unsafe_unretained] = ACTIONS(1724), + [anon_sym___block] = ACTIONS(1724), + [anon_sym___kindof] = ACTIONS(1724), + [anon_sym___unused] = ACTIONS(1724), + [anon_sym__Complex] = ACTIONS(1724), + [anon_sym___complex] = ACTIONS(1724), + [anon_sym_IBOutlet] = ACTIONS(1724), + [anon_sym_IBInspectable] = ACTIONS(1724), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1724), + [anon_sym_signed] = ACTIONS(1724), + [anon_sym_unsigned] = ACTIONS(1724), + [anon_sym_long] = ACTIONS(1724), + [anon_sym_short] = ACTIONS(1724), + [sym_primitive_type] = ACTIONS(1724), + [anon_sym_enum] = ACTIONS(1724), + [anon_sym_struct] = ACTIONS(1724), + [anon_sym_union] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_case] = ACTIONS(1724), + [anon_sym_default] = ACTIONS(1724), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_do] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_continue] = ACTIONS(1724), + [anon_sym_goto] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_sizeof] = ACTIONS(1724), + [sym_number_literal] = ACTIONS(1726), + [anon_sym_L_SQUOTE] = ACTIONS(1726), + [anon_sym_u_SQUOTE] = ACTIONS(1726), + [anon_sym_U_SQUOTE] = ACTIONS(1726), + [anon_sym_u8_SQUOTE] = ACTIONS(1726), + [anon_sym_SQUOTE] = ACTIONS(1726), + [anon_sym_L_DQUOTE] = ACTIONS(1726), + [anon_sym_u_DQUOTE] = ACTIONS(1726), + [anon_sym_U_DQUOTE] = ACTIONS(1726), + [anon_sym_u8_DQUOTE] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [sym_true] = ACTIONS(1724), + [sym_false] = ACTIONS(1724), + [sym_null] = ACTIONS(1724), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1726), + [anon_sym_ATimport] = ACTIONS(1726), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1724), + [anon_sym_ATcompatibility_alias] = ACTIONS(1726), + [anon_sym_ATprotocol] = ACTIONS(1726), + [anon_sym_ATclass] = ACTIONS(1726), + [anon_sym_ATinterface] = ACTIONS(1726), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1724), + [sym_method_attribute_specifier] = ACTIONS(1724), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1724), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1724), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1724), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1724), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1724), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1724), + [anon_sym_NS_AVAILABLE] = ACTIONS(1724), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1724), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1724), + [anon_sym_API_AVAILABLE] = ACTIONS(1724), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1724), + [anon_sym_API_DEPRECATED] = ACTIONS(1724), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1724), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1724), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1724), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1724), + [anon_sym___deprecated_msg] = ACTIONS(1724), + [anon_sym___deprecated_enum_msg] = ACTIONS(1724), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1724), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1724), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1724), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1724), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1724), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1724), + [anon_sym_ATimplementation] = ACTIONS(1726), + [anon_sym_NS_ENUM] = ACTIONS(1724), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1724), + [anon_sym_NS_OPTIONS] = ACTIONS(1724), + [anon_sym_typeof] = ACTIONS(1724), + [anon_sym___typeof] = ACTIONS(1724), + [anon_sym___typeof__] = ACTIONS(1724), + [sym_self] = ACTIONS(1724), + [sym_super] = ACTIONS(1724), + [sym_nil] = ACTIONS(1724), + [sym_id] = ACTIONS(1724), + [sym_instancetype] = ACTIONS(1724), + [sym_Class] = ACTIONS(1724), + [sym_SEL] = ACTIONS(1724), + [sym_IMP] = ACTIONS(1724), + [sym_BOOL] = ACTIONS(1724), + [sym_auto] = ACTIONS(1724), + [anon_sym_ATautoreleasepool] = ACTIONS(1726), + [anon_sym_ATsynchronized] = ACTIONS(1726), + [anon_sym_ATtry] = ACTIONS(1726), + [anon_sym_ATthrow] = ACTIONS(1726), + [anon_sym_ATselector] = ACTIONS(1726), + [anon_sym_ATencode] = ACTIONS(1726), + [anon_sym_AT] = ACTIONS(1724), + [sym_YES] = ACTIONS(1724), + [sym_NO] = ACTIONS(1724), + [anon_sym___builtin_available] = ACTIONS(1724), + [anon_sym_ATavailable] = ACTIONS(1726), + [anon_sym_va_arg] = ACTIONS(1724), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1557] = { + [sym_identifier] = ACTIONS(1728), + [aux_sym_preproc_include_token1] = ACTIONS(1730), + [aux_sym_preproc_def_token1] = ACTIONS(1730), + [aux_sym_preproc_if_token1] = ACTIONS(1728), + [aux_sym_preproc_if_token2] = ACTIONS(1728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1728), + [anon_sym_LPAREN2] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_STAR] = ACTIONS(1730), + [anon_sym_CARET] = ACTIONS(1730), + [anon_sym_AMP] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_typedef] = ACTIONS(1728), + [anon_sym_extern] = ACTIONS(1728), + [anon_sym___attribute] = ACTIONS(1728), + [anon_sym___attribute__] = ACTIONS(1728), + [anon_sym___declspec] = ACTIONS(1728), + [anon_sym___cdecl] = ACTIONS(1728), + [anon_sym___clrcall] = ACTIONS(1728), + [anon_sym___stdcall] = ACTIONS(1728), + [anon_sym___fastcall] = ACTIONS(1728), + [anon_sym___thiscall] = ACTIONS(1728), + [anon_sym___vectorcall] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(1728), + [anon_sym_auto] = ACTIONS(1728), + [anon_sym_register] = ACTIONS(1728), + [anon_sym_inline] = ACTIONS(1728), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1728), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_volatile] = ACTIONS(1728), + [anon_sym_restrict] = ACTIONS(1728), + [anon_sym__Atomic] = ACTIONS(1728), + [anon_sym_in] = ACTIONS(1728), + [anon_sym_out] = ACTIONS(1728), + [anon_sym_inout] = ACTIONS(1728), + [anon_sym_bycopy] = ACTIONS(1728), + [anon_sym_byref] = ACTIONS(1728), + [anon_sym_oneway] = ACTIONS(1728), + [anon_sym__Nullable] = ACTIONS(1728), + [anon_sym__Nonnull] = ACTIONS(1728), + [anon_sym__Nullable_result] = ACTIONS(1728), + [anon_sym__Null_unspecified] = ACTIONS(1728), + [anon_sym___autoreleasing] = ACTIONS(1728), + [anon_sym___nullable] = ACTIONS(1728), + [anon_sym___nonnull] = ACTIONS(1728), + [anon_sym___strong] = ACTIONS(1728), + [anon_sym___weak] = ACTIONS(1728), + [anon_sym___bridge] = ACTIONS(1728), + [anon_sym___bridge_transfer] = ACTIONS(1728), + [anon_sym___bridge_retained] = ACTIONS(1728), + [anon_sym___unsafe_unretained] = ACTIONS(1728), + [anon_sym___block] = ACTIONS(1728), + [anon_sym___kindof] = ACTIONS(1728), + [anon_sym___unused] = ACTIONS(1728), + [anon_sym__Complex] = ACTIONS(1728), + [anon_sym___complex] = ACTIONS(1728), + [anon_sym_IBOutlet] = ACTIONS(1728), + [anon_sym_IBInspectable] = ACTIONS(1728), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1728), + [anon_sym_signed] = ACTIONS(1728), + [anon_sym_unsigned] = ACTIONS(1728), + [anon_sym_long] = ACTIONS(1728), + [anon_sym_short] = ACTIONS(1728), + [sym_primitive_type] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1728), + [anon_sym_struct] = ACTIONS(1728), + [anon_sym_union] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_case] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1728), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_do] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_continue] = ACTIONS(1728), + [anon_sym_goto] = ACTIONS(1728), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_sizeof] = ACTIONS(1728), + [sym_number_literal] = ACTIONS(1730), + [anon_sym_L_SQUOTE] = ACTIONS(1730), + [anon_sym_u_SQUOTE] = ACTIONS(1730), + [anon_sym_U_SQUOTE] = ACTIONS(1730), + [anon_sym_u8_SQUOTE] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [anon_sym_L_DQUOTE] = ACTIONS(1730), + [anon_sym_u_DQUOTE] = ACTIONS(1730), + [anon_sym_U_DQUOTE] = ACTIONS(1730), + [anon_sym_u8_DQUOTE] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1730), + [sym_true] = ACTIONS(1728), + [sym_false] = ACTIONS(1728), + [sym_null] = ACTIONS(1728), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1730), + [anon_sym_ATimport] = ACTIONS(1730), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1728), + [anon_sym_ATcompatibility_alias] = ACTIONS(1730), + [anon_sym_ATprotocol] = ACTIONS(1730), + [anon_sym_ATclass] = ACTIONS(1730), + [anon_sym_ATinterface] = ACTIONS(1730), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1728), + [sym_method_attribute_specifier] = ACTIONS(1728), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1728), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1728), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1728), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1728), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1728), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1728), + [anon_sym_NS_AVAILABLE] = ACTIONS(1728), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1728), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1728), + [anon_sym_API_AVAILABLE] = ACTIONS(1728), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1728), + [anon_sym_API_DEPRECATED] = ACTIONS(1728), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1728), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1728), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1728), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1728), + [anon_sym___deprecated_msg] = ACTIONS(1728), + [anon_sym___deprecated_enum_msg] = ACTIONS(1728), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1728), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1728), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1728), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1728), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1728), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1728), + [anon_sym_ATimplementation] = ACTIONS(1730), + [anon_sym_NS_ENUM] = ACTIONS(1728), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1728), + [anon_sym_NS_OPTIONS] = ACTIONS(1728), + [anon_sym_typeof] = ACTIONS(1728), + [anon_sym___typeof] = ACTIONS(1728), + [anon_sym___typeof__] = ACTIONS(1728), + [sym_self] = ACTIONS(1728), + [sym_super] = ACTIONS(1728), + [sym_nil] = ACTIONS(1728), + [sym_id] = ACTIONS(1728), + [sym_instancetype] = ACTIONS(1728), + [sym_Class] = ACTIONS(1728), + [sym_SEL] = ACTIONS(1728), + [sym_IMP] = ACTIONS(1728), + [sym_BOOL] = ACTIONS(1728), + [sym_auto] = ACTIONS(1728), + [anon_sym_ATautoreleasepool] = ACTIONS(1730), + [anon_sym_ATsynchronized] = ACTIONS(1730), + [anon_sym_ATtry] = ACTIONS(1730), + [anon_sym_ATthrow] = ACTIONS(1730), + [anon_sym_ATselector] = ACTIONS(1730), + [anon_sym_ATencode] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(1728), + [sym_YES] = ACTIONS(1728), + [sym_NO] = ACTIONS(1728), + [anon_sym___builtin_available] = ACTIONS(1728), + [anon_sym_ATavailable] = ACTIONS(1730), + [anon_sym_va_arg] = ACTIONS(1728), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1558] = { + [sym_identifier] = ACTIONS(1780), + [aux_sym_preproc_include_token1] = ACTIONS(1782), + [aux_sym_preproc_def_token1] = ACTIONS(1782), + [aux_sym_preproc_if_token1] = ACTIONS(1780), + [aux_sym_preproc_if_token2] = ACTIONS(1780), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1780), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1780), + [anon_sym_LPAREN2] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_PLUS] = ACTIONS(1780), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_CARET] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_typedef] = ACTIONS(1780), + [anon_sym_extern] = ACTIONS(1780), + [anon_sym___attribute] = ACTIONS(1780), + [anon_sym___attribute__] = ACTIONS(1780), + [anon_sym___declspec] = ACTIONS(1780), + [anon_sym___cdecl] = ACTIONS(1780), + [anon_sym___clrcall] = ACTIONS(1780), + [anon_sym___stdcall] = ACTIONS(1780), + [anon_sym___fastcall] = ACTIONS(1780), + [anon_sym___thiscall] = ACTIONS(1780), + [anon_sym___vectorcall] = ACTIONS(1780), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1780), + [anon_sym_auto] = ACTIONS(1780), + [anon_sym_register] = ACTIONS(1780), + [anon_sym_inline] = ACTIONS(1780), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1780), + [anon_sym_const] = ACTIONS(1780), + [anon_sym_volatile] = ACTIONS(1780), + [anon_sym_restrict] = ACTIONS(1780), + [anon_sym__Atomic] = ACTIONS(1780), + [anon_sym_in] = ACTIONS(1780), + [anon_sym_out] = ACTIONS(1780), + [anon_sym_inout] = ACTIONS(1780), + [anon_sym_bycopy] = ACTIONS(1780), + [anon_sym_byref] = ACTIONS(1780), + [anon_sym_oneway] = ACTIONS(1780), + [anon_sym__Nullable] = ACTIONS(1780), + [anon_sym__Nonnull] = ACTIONS(1780), + [anon_sym__Nullable_result] = ACTIONS(1780), + [anon_sym__Null_unspecified] = ACTIONS(1780), + [anon_sym___autoreleasing] = ACTIONS(1780), + [anon_sym___nullable] = ACTIONS(1780), + [anon_sym___nonnull] = ACTIONS(1780), + [anon_sym___strong] = ACTIONS(1780), + [anon_sym___weak] = ACTIONS(1780), + [anon_sym___bridge] = ACTIONS(1780), + [anon_sym___bridge_transfer] = ACTIONS(1780), + [anon_sym___bridge_retained] = ACTIONS(1780), + [anon_sym___unsafe_unretained] = ACTIONS(1780), + [anon_sym___block] = ACTIONS(1780), + [anon_sym___kindof] = ACTIONS(1780), + [anon_sym___unused] = ACTIONS(1780), + [anon_sym__Complex] = ACTIONS(1780), + [anon_sym___complex] = ACTIONS(1780), + [anon_sym_IBOutlet] = ACTIONS(1780), + [anon_sym_IBInspectable] = ACTIONS(1780), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1780), + [anon_sym_signed] = ACTIONS(1780), + [anon_sym_unsigned] = ACTIONS(1780), + [anon_sym_long] = ACTIONS(1780), + [anon_sym_short] = ACTIONS(1780), + [sym_primitive_type] = ACTIONS(1780), + [anon_sym_enum] = ACTIONS(1780), + [anon_sym_struct] = ACTIONS(1780), + [anon_sym_union] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_switch] = ACTIONS(1780), + [anon_sym_case] = ACTIONS(1780), + [anon_sym_default] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_do] = ACTIONS(1780), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_goto] = ACTIONS(1780), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1780), + [sym_number_literal] = ACTIONS(1782), + [anon_sym_L_SQUOTE] = ACTIONS(1782), + [anon_sym_u_SQUOTE] = ACTIONS(1782), + [anon_sym_U_SQUOTE] = ACTIONS(1782), + [anon_sym_u8_SQUOTE] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [anon_sym_L_DQUOTE] = ACTIONS(1782), + [anon_sym_u_DQUOTE] = ACTIONS(1782), + [anon_sym_U_DQUOTE] = ACTIONS(1782), + [anon_sym_u8_DQUOTE] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [sym_true] = ACTIONS(1780), + [sym_false] = ACTIONS(1780), + [sym_null] = ACTIONS(1780), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1782), + [anon_sym_ATimport] = ACTIONS(1782), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1780), + [anon_sym_ATcompatibility_alias] = ACTIONS(1782), + [anon_sym_ATprotocol] = ACTIONS(1782), + [anon_sym_ATclass] = ACTIONS(1782), + [anon_sym_ATinterface] = ACTIONS(1782), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1780), + [sym_method_attribute_specifier] = ACTIONS(1780), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1780), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1780), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1780), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1780), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1780), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1780), + [anon_sym_NS_AVAILABLE] = ACTIONS(1780), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1780), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_API_AVAILABLE] = ACTIONS(1780), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1780), + [anon_sym_API_DEPRECATED] = ACTIONS(1780), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1780), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1780), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1780), + [anon_sym___deprecated_msg] = ACTIONS(1780), + [anon_sym___deprecated_enum_msg] = ACTIONS(1780), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1780), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1780), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1780), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1780), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1780), + [anon_sym_ATimplementation] = ACTIONS(1782), + [anon_sym_NS_ENUM] = ACTIONS(1780), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1780), + [anon_sym_NS_OPTIONS] = ACTIONS(1780), + [anon_sym_typeof] = ACTIONS(1780), + [anon_sym___typeof] = ACTIONS(1780), + [anon_sym___typeof__] = ACTIONS(1780), + [sym_self] = ACTIONS(1780), + [sym_super] = ACTIONS(1780), + [sym_nil] = ACTIONS(1780), + [sym_id] = ACTIONS(1780), + [sym_instancetype] = ACTIONS(1780), + [sym_Class] = ACTIONS(1780), + [sym_SEL] = ACTIONS(1780), + [sym_IMP] = ACTIONS(1780), + [sym_BOOL] = ACTIONS(1780), + [sym_auto] = ACTIONS(1780), + [anon_sym_ATautoreleasepool] = ACTIONS(1782), + [anon_sym_ATsynchronized] = ACTIONS(1782), + [anon_sym_ATtry] = ACTIONS(1782), + [anon_sym_ATthrow] = ACTIONS(1782), + [anon_sym_ATselector] = ACTIONS(1782), + [anon_sym_ATencode] = ACTIONS(1782), + [anon_sym_AT] = ACTIONS(1780), + [sym_YES] = ACTIONS(1780), + [sym_NO] = ACTIONS(1780), + [anon_sym___builtin_available] = ACTIONS(1780), + [anon_sym_ATavailable] = ACTIONS(1782), + [anon_sym_va_arg] = ACTIONS(1780), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1559] = { + [sym_identifier] = ACTIONS(1776), + [aux_sym_preproc_include_token1] = ACTIONS(1778), + [aux_sym_preproc_def_token1] = ACTIONS(1778), + [aux_sym_preproc_if_token1] = ACTIONS(1776), + [aux_sym_preproc_if_token2] = ACTIONS(1776), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1776), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1776), + [anon_sym_LPAREN2] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_TILDE] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1776), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1778), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_typedef] = ACTIONS(1776), + [anon_sym_extern] = ACTIONS(1776), + [anon_sym___attribute] = ACTIONS(1776), + [anon_sym___attribute__] = ACTIONS(1776), + [anon_sym___declspec] = ACTIONS(1776), + [anon_sym___cdecl] = ACTIONS(1776), + [anon_sym___clrcall] = ACTIONS(1776), + [anon_sym___stdcall] = ACTIONS(1776), + [anon_sym___fastcall] = ACTIONS(1776), + [anon_sym___thiscall] = ACTIONS(1776), + [anon_sym___vectorcall] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_static] = ACTIONS(1776), + [anon_sym_auto] = ACTIONS(1776), + [anon_sym_register] = ACTIONS(1776), + [anon_sym_inline] = ACTIONS(1776), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1776), + [anon_sym_volatile] = ACTIONS(1776), + [anon_sym_restrict] = ACTIONS(1776), + [anon_sym__Atomic] = ACTIONS(1776), + [anon_sym_in] = ACTIONS(1776), + [anon_sym_out] = ACTIONS(1776), + [anon_sym_inout] = ACTIONS(1776), + [anon_sym_bycopy] = ACTIONS(1776), + [anon_sym_byref] = ACTIONS(1776), + [anon_sym_oneway] = ACTIONS(1776), + [anon_sym__Nullable] = ACTIONS(1776), + [anon_sym__Nonnull] = ACTIONS(1776), + [anon_sym__Nullable_result] = ACTIONS(1776), + [anon_sym__Null_unspecified] = ACTIONS(1776), + [anon_sym___autoreleasing] = ACTIONS(1776), + [anon_sym___nullable] = ACTIONS(1776), + [anon_sym___nonnull] = ACTIONS(1776), + [anon_sym___strong] = ACTIONS(1776), + [anon_sym___weak] = ACTIONS(1776), + [anon_sym___bridge] = ACTIONS(1776), + [anon_sym___bridge_transfer] = ACTIONS(1776), + [anon_sym___bridge_retained] = ACTIONS(1776), + [anon_sym___unsafe_unretained] = ACTIONS(1776), + [anon_sym___block] = ACTIONS(1776), + [anon_sym___kindof] = ACTIONS(1776), + [anon_sym___unused] = ACTIONS(1776), + [anon_sym__Complex] = ACTIONS(1776), + [anon_sym___complex] = ACTIONS(1776), + [anon_sym_IBOutlet] = ACTIONS(1776), + [anon_sym_IBInspectable] = ACTIONS(1776), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1776), + [anon_sym_signed] = ACTIONS(1776), + [anon_sym_unsigned] = ACTIONS(1776), + [anon_sym_long] = ACTIONS(1776), + [anon_sym_short] = ACTIONS(1776), + [sym_primitive_type] = ACTIONS(1776), + [anon_sym_enum] = ACTIONS(1776), + [anon_sym_struct] = ACTIONS(1776), + [anon_sym_union] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1776), + [anon_sym_switch] = ACTIONS(1776), + [anon_sym_case] = ACTIONS(1776), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1776), + [anon_sym_do] = ACTIONS(1776), + [anon_sym_for] = ACTIONS(1776), + [anon_sym_return] = ACTIONS(1776), + [anon_sym_break] = ACTIONS(1776), + [anon_sym_continue] = ACTIONS(1776), + [anon_sym_goto] = ACTIONS(1776), + [anon_sym_DASH_DASH] = ACTIONS(1778), + [anon_sym_PLUS_PLUS] = ACTIONS(1778), + [anon_sym_sizeof] = ACTIONS(1776), + [sym_number_literal] = ACTIONS(1778), + [anon_sym_L_SQUOTE] = ACTIONS(1778), + [anon_sym_u_SQUOTE] = ACTIONS(1778), + [anon_sym_U_SQUOTE] = ACTIONS(1778), + [anon_sym_u8_SQUOTE] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(1778), + [anon_sym_L_DQUOTE] = ACTIONS(1778), + [anon_sym_u_DQUOTE] = ACTIONS(1778), + [anon_sym_U_DQUOTE] = ACTIONS(1778), + [anon_sym_u8_DQUOTE] = ACTIONS(1778), + [anon_sym_DQUOTE] = ACTIONS(1778), + [sym_true] = ACTIONS(1776), + [sym_false] = ACTIONS(1776), + [sym_null] = ACTIONS(1776), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1778), + [anon_sym_ATimport] = ACTIONS(1778), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1776), + [anon_sym_ATcompatibility_alias] = ACTIONS(1778), + [anon_sym_ATprotocol] = ACTIONS(1778), + [anon_sym_ATclass] = ACTIONS(1778), + [anon_sym_ATinterface] = ACTIONS(1778), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1776), + [sym_method_attribute_specifier] = ACTIONS(1776), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1776), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1776), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1776), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1776), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1776), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1776), + [anon_sym_NS_AVAILABLE] = ACTIONS(1776), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1776), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1776), + [anon_sym_API_AVAILABLE] = ACTIONS(1776), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1776), + [anon_sym_API_DEPRECATED] = ACTIONS(1776), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1776), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1776), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1776), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1776), + [anon_sym___deprecated_msg] = ACTIONS(1776), + [anon_sym___deprecated_enum_msg] = ACTIONS(1776), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1776), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1776), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1776), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1776), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1776), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1776), + [anon_sym_ATimplementation] = ACTIONS(1778), + [anon_sym_NS_ENUM] = ACTIONS(1776), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1776), + [anon_sym_NS_OPTIONS] = ACTIONS(1776), + [anon_sym_typeof] = ACTIONS(1776), + [anon_sym___typeof] = ACTIONS(1776), + [anon_sym___typeof__] = ACTIONS(1776), + [sym_self] = ACTIONS(1776), + [sym_super] = ACTIONS(1776), + [sym_nil] = ACTIONS(1776), + [sym_id] = ACTIONS(1776), + [sym_instancetype] = ACTIONS(1776), + [sym_Class] = ACTIONS(1776), + [sym_SEL] = ACTIONS(1776), + [sym_IMP] = ACTIONS(1776), + [sym_BOOL] = ACTIONS(1776), + [sym_auto] = ACTIONS(1776), + [anon_sym_ATautoreleasepool] = ACTIONS(1778), + [anon_sym_ATsynchronized] = ACTIONS(1778), + [anon_sym_ATtry] = ACTIONS(1778), + [anon_sym_ATthrow] = ACTIONS(1778), + [anon_sym_ATselector] = ACTIONS(1778), + [anon_sym_ATencode] = ACTIONS(1778), + [anon_sym_AT] = ACTIONS(1776), + [sym_YES] = ACTIONS(1776), + [sym_NO] = ACTIONS(1776), + [anon_sym___builtin_available] = ACTIONS(1776), + [anon_sym_ATavailable] = ACTIONS(1778), + [anon_sym_va_arg] = ACTIONS(1776), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1560] = { + [sym_identifier] = ACTIONS(1732), + [aux_sym_preproc_include_token1] = ACTIONS(1734), + [aux_sym_preproc_def_token1] = ACTIONS(1734), + [aux_sym_preproc_if_token1] = ACTIONS(1732), + [aux_sym_preproc_if_token2] = ACTIONS(1732), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1732), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1732), + [anon_sym_LPAREN2] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_TILDE] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_CARET] = ACTIONS(1734), + [anon_sym_AMP] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_typedef] = ACTIONS(1732), + [anon_sym_extern] = ACTIONS(1732), + [anon_sym___attribute] = ACTIONS(1732), + [anon_sym___attribute__] = ACTIONS(1732), + [anon_sym___declspec] = ACTIONS(1732), + [anon_sym___cdecl] = ACTIONS(1732), + [anon_sym___clrcall] = ACTIONS(1732), + [anon_sym___stdcall] = ACTIONS(1732), + [anon_sym___fastcall] = ACTIONS(1732), + [anon_sym___thiscall] = ACTIONS(1732), + [anon_sym___vectorcall] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1732), + [anon_sym_auto] = ACTIONS(1732), + [anon_sym_register] = ACTIONS(1732), + [anon_sym_inline] = ACTIONS(1732), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1732), + [anon_sym_volatile] = ACTIONS(1732), + [anon_sym_restrict] = ACTIONS(1732), + [anon_sym__Atomic] = ACTIONS(1732), + [anon_sym_in] = ACTIONS(1732), + [anon_sym_out] = ACTIONS(1732), + [anon_sym_inout] = ACTIONS(1732), + [anon_sym_bycopy] = ACTIONS(1732), + [anon_sym_byref] = ACTIONS(1732), + [anon_sym_oneway] = ACTIONS(1732), + [anon_sym__Nullable] = ACTIONS(1732), + [anon_sym__Nonnull] = ACTIONS(1732), + [anon_sym__Nullable_result] = ACTIONS(1732), + [anon_sym__Null_unspecified] = ACTIONS(1732), + [anon_sym___autoreleasing] = ACTIONS(1732), + [anon_sym___nullable] = ACTIONS(1732), + [anon_sym___nonnull] = ACTIONS(1732), + [anon_sym___strong] = ACTIONS(1732), + [anon_sym___weak] = ACTIONS(1732), + [anon_sym___bridge] = ACTIONS(1732), + [anon_sym___bridge_transfer] = ACTIONS(1732), + [anon_sym___bridge_retained] = ACTIONS(1732), + [anon_sym___unsafe_unretained] = ACTIONS(1732), + [anon_sym___block] = ACTIONS(1732), + [anon_sym___kindof] = ACTIONS(1732), + [anon_sym___unused] = ACTIONS(1732), + [anon_sym__Complex] = ACTIONS(1732), + [anon_sym___complex] = ACTIONS(1732), + [anon_sym_IBOutlet] = ACTIONS(1732), + [anon_sym_IBInspectable] = ACTIONS(1732), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1732), + [anon_sym_signed] = ACTIONS(1732), + [anon_sym_unsigned] = ACTIONS(1732), + [anon_sym_long] = ACTIONS(1732), + [anon_sym_short] = ACTIONS(1732), + [sym_primitive_type] = ACTIONS(1732), + [anon_sym_enum] = ACTIONS(1732), + [anon_sym_struct] = ACTIONS(1732), + [anon_sym_union] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1732), + [anon_sym_case] = ACTIONS(1732), + [anon_sym_default] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_do] = ACTIONS(1732), + [anon_sym_for] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_goto] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1734), + [anon_sym_sizeof] = ACTIONS(1732), + [sym_number_literal] = ACTIONS(1734), + [anon_sym_L_SQUOTE] = ACTIONS(1734), + [anon_sym_u_SQUOTE] = ACTIONS(1734), + [anon_sym_U_SQUOTE] = ACTIONS(1734), + [anon_sym_u8_SQUOTE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_L_DQUOTE] = ACTIONS(1734), + [anon_sym_u_DQUOTE] = ACTIONS(1734), + [anon_sym_U_DQUOTE] = ACTIONS(1734), + [anon_sym_u8_DQUOTE] = ACTIONS(1734), + [anon_sym_DQUOTE] = ACTIONS(1734), + [sym_true] = ACTIONS(1732), + [sym_false] = ACTIONS(1732), + [sym_null] = ACTIONS(1732), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1734), + [anon_sym_ATimport] = ACTIONS(1734), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1732), + [anon_sym_ATcompatibility_alias] = ACTIONS(1734), + [anon_sym_ATprotocol] = ACTIONS(1734), + [anon_sym_ATclass] = ACTIONS(1734), + [anon_sym_ATinterface] = ACTIONS(1734), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1732), + [sym_method_attribute_specifier] = ACTIONS(1732), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1732), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1732), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1732), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1732), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1732), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1732), + [anon_sym_NS_AVAILABLE] = ACTIONS(1732), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1732), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1732), + [anon_sym_API_AVAILABLE] = ACTIONS(1732), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1732), + [anon_sym_API_DEPRECATED] = ACTIONS(1732), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1732), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1732), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1732), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1732), + [anon_sym___deprecated_msg] = ACTIONS(1732), + [anon_sym___deprecated_enum_msg] = ACTIONS(1732), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1732), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1732), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1732), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1732), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1732), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1732), + [anon_sym_ATimplementation] = ACTIONS(1734), + [anon_sym_NS_ENUM] = ACTIONS(1732), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1732), + [anon_sym_NS_OPTIONS] = ACTIONS(1732), + [anon_sym_typeof] = ACTIONS(1732), + [anon_sym___typeof] = ACTIONS(1732), + [anon_sym___typeof__] = ACTIONS(1732), + [sym_self] = ACTIONS(1732), + [sym_super] = ACTIONS(1732), + [sym_nil] = ACTIONS(1732), + [sym_id] = ACTIONS(1732), + [sym_instancetype] = ACTIONS(1732), + [sym_Class] = ACTIONS(1732), + [sym_SEL] = ACTIONS(1732), + [sym_IMP] = ACTIONS(1732), + [sym_BOOL] = ACTIONS(1732), + [sym_auto] = ACTIONS(1732), + [anon_sym_ATautoreleasepool] = ACTIONS(1734), + [anon_sym_ATsynchronized] = ACTIONS(1734), + [anon_sym_ATtry] = ACTIONS(1734), + [anon_sym_ATthrow] = ACTIONS(1734), + [anon_sym_ATselector] = ACTIONS(1734), + [anon_sym_ATencode] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(1732), + [sym_YES] = ACTIONS(1732), + [sym_NO] = ACTIONS(1732), + [anon_sym___builtin_available] = ACTIONS(1732), + [anon_sym_ATavailable] = ACTIONS(1734), + [anon_sym_va_arg] = ACTIONS(1732), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1561] = { + [sym_identifier] = ACTIONS(1772), + [aux_sym_preproc_include_token1] = ACTIONS(1774), + [aux_sym_preproc_def_token1] = ACTIONS(1774), + [aux_sym_preproc_if_token1] = ACTIONS(1772), + [aux_sym_preproc_if_token2] = ACTIONS(1772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_CARET] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_typedef] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym___attribute] = ACTIONS(1772), + [anon_sym___attribute__] = ACTIONS(1772), + [anon_sym___declspec] = ACTIONS(1772), + [anon_sym___cdecl] = ACTIONS(1772), + [anon_sym___clrcall] = ACTIONS(1772), + [anon_sym___stdcall] = ACTIONS(1772), + [anon_sym___fastcall] = ACTIONS(1772), + [anon_sym___thiscall] = ACTIONS(1772), + [anon_sym___vectorcall] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1772), + [anon_sym_auto] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_inline] = ACTIONS(1772), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_volatile] = ACTIONS(1772), + [anon_sym_restrict] = ACTIONS(1772), + [anon_sym__Atomic] = ACTIONS(1772), + [anon_sym_in] = ACTIONS(1772), + [anon_sym_out] = ACTIONS(1772), + [anon_sym_inout] = ACTIONS(1772), + [anon_sym_bycopy] = ACTIONS(1772), + [anon_sym_byref] = ACTIONS(1772), + [anon_sym_oneway] = ACTIONS(1772), + [anon_sym__Nullable] = ACTIONS(1772), + [anon_sym__Nonnull] = ACTIONS(1772), + [anon_sym__Nullable_result] = ACTIONS(1772), + [anon_sym__Null_unspecified] = ACTIONS(1772), + [anon_sym___autoreleasing] = ACTIONS(1772), + [anon_sym___nullable] = ACTIONS(1772), + [anon_sym___nonnull] = ACTIONS(1772), + [anon_sym___strong] = ACTIONS(1772), + [anon_sym___weak] = ACTIONS(1772), + [anon_sym___bridge] = ACTIONS(1772), + [anon_sym___bridge_transfer] = ACTIONS(1772), + [anon_sym___bridge_retained] = ACTIONS(1772), + [anon_sym___unsafe_unretained] = ACTIONS(1772), + [anon_sym___block] = ACTIONS(1772), + [anon_sym___kindof] = ACTIONS(1772), + [anon_sym___unused] = ACTIONS(1772), + [anon_sym__Complex] = ACTIONS(1772), + [anon_sym___complex] = ACTIONS(1772), + [anon_sym_IBOutlet] = ACTIONS(1772), + [anon_sym_IBInspectable] = ACTIONS(1772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1772), + [anon_sym_signed] = ACTIONS(1772), + [anon_sym_unsigned] = ACTIONS(1772), + [anon_sym_long] = ACTIONS(1772), + [anon_sym_short] = ACTIONS(1772), + [sym_primitive_type] = ACTIONS(1772), + [anon_sym_enum] = ACTIONS(1772), + [anon_sym_struct] = ACTIONS(1772), + [anon_sym_union] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1772), + [anon_sym_default] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_goto] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_PLUS_PLUS] = ACTIONS(1774), + [anon_sym_sizeof] = ACTIONS(1772), + [sym_number_literal] = ACTIONS(1774), + [anon_sym_L_SQUOTE] = ACTIONS(1774), + [anon_sym_u_SQUOTE] = ACTIONS(1774), + [anon_sym_U_SQUOTE] = ACTIONS(1774), + [anon_sym_u8_SQUOTE] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_L_DQUOTE] = ACTIONS(1774), + [anon_sym_u_DQUOTE] = ACTIONS(1774), + [anon_sym_U_DQUOTE] = ACTIONS(1774), + [anon_sym_u8_DQUOTE] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym_true] = ACTIONS(1772), + [sym_false] = ACTIONS(1772), + [sym_null] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1774), + [anon_sym_ATimport] = ACTIONS(1774), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1772), + [anon_sym_ATcompatibility_alias] = ACTIONS(1774), + [anon_sym_ATprotocol] = ACTIONS(1774), + [anon_sym_ATclass] = ACTIONS(1774), + [anon_sym_ATinterface] = ACTIONS(1774), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1772), + [sym_method_attribute_specifier] = ACTIONS(1772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1772), + [anon_sym_NS_AVAILABLE] = ACTIONS(1772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_API_AVAILABLE] = ACTIONS(1772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1772), + [anon_sym_API_DEPRECATED] = ACTIONS(1772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1772), + [anon_sym___deprecated_msg] = ACTIONS(1772), + [anon_sym___deprecated_enum_msg] = ACTIONS(1772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1772), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1772), + [anon_sym_ATimplementation] = ACTIONS(1774), + [anon_sym_NS_ENUM] = ACTIONS(1772), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1772), + [anon_sym_NS_OPTIONS] = ACTIONS(1772), + [anon_sym_typeof] = ACTIONS(1772), + [anon_sym___typeof] = ACTIONS(1772), + [anon_sym___typeof__] = ACTIONS(1772), + [sym_self] = ACTIONS(1772), + [sym_super] = ACTIONS(1772), + [sym_nil] = ACTIONS(1772), + [sym_id] = ACTIONS(1772), + [sym_instancetype] = ACTIONS(1772), + [sym_Class] = ACTIONS(1772), + [sym_SEL] = ACTIONS(1772), + [sym_IMP] = ACTIONS(1772), + [sym_BOOL] = ACTIONS(1772), + [sym_auto] = ACTIONS(1772), + [anon_sym_ATautoreleasepool] = ACTIONS(1774), + [anon_sym_ATsynchronized] = ACTIONS(1774), + [anon_sym_ATtry] = ACTIONS(1774), + [anon_sym_ATthrow] = ACTIONS(1774), + [anon_sym_ATselector] = ACTIONS(1774), + [anon_sym_ATencode] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1772), + [sym_YES] = ACTIONS(1772), + [sym_NO] = ACTIONS(1772), + [anon_sym___builtin_available] = ACTIONS(1772), + [anon_sym_ATavailable] = ACTIONS(1774), + [anon_sym_va_arg] = ACTIONS(1772), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1562] = { + [sym_identifier] = ACTIONS(1772), + [aux_sym_preproc_include_token1] = ACTIONS(1774), + [aux_sym_preproc_def_token1] = ACTIONS(1774), + [aux_sym_preproc_if_token1] = ACTIONS(1772), + [aux_sym_preproc_if_token2] = ACTIONS(1772), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1772), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_CARET] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_typedef] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym___attribute] = ACTIONS(1772), + [anon_sym___attribute__] = ACTIONS(1772), + [anon_sym___declspec] = ACTIONS(1772), + [anon_sym___cdecl] = ACTIONS(1772), + [anon_sym___clrcall] = ACTIONS(1772), + [anon_sym___stdcall] = ACTIONS(1772), + [anon_sym___fastcall] = ACTIONS(1772), + [anon_sym___thiscall] = ACTIONS(1772), + [anon_sym___vectorcall] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1772), + [anon_sym_auto] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_inline] = ACTIONS(1772), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_volatile] = ACTIONS(1772), + [anon_sym_restrict] = ACTIONS(1772), + [anon_sym__Atomic] = ACTIONS(1772), + [anon_sym_in] = ACTIONS(1772), + [anon_sym_out] = ACTIONS(1772), + [anon_sym_inout] = ACTIONS(1772), + [anon_sym_bycopy] = ACTIONS(1772), + [anon_sym_byref] = ACTIONS(1772), + [anon_sym_oneway] = ACTIONS(1772), + [anon_sym__Nullable] = ACTIONS(1772), + [anon_sym__Nonnull] = ACTIONS(1772), + [anon_sym__Nullable_result] = ACTIONS(1772), + [anon_sym__Null_unspecified] = ACTIONS(1772), + [anon_sym___autoreleasing] = ACTIONS(1772), + [anon_sym___nullable] = ACTIONS(1772), + [anon_sym___nonnull] = ACTIONS(1772), + [anon_sym___strong] = ACTIONS(1772), + [anon_sym___weak] = ACTIONS(1772), + [anon_sym___bridge] = ACTIONS(1772), + [anon_sym___bridge_transfer] = ACTIONS(1772), + [anon_sym___bridge_retained] = ACTIONS(1772), + [anon_sym___unsafe_unretained] = ACTIONS(1772), + [anon_sym___block] = ACTIONS(1772), + [anon_sym___kindof] = ACTIONS(1772), + [anon_sym___unused] = ACTIONS(1772), + [anon_sym__Complex] = ACTIONS(1772), + [anon_sym___complex] = ACTIONS(1772), + [anon_sym_IBOutlet] = ACTIONS(1772), + [anon_sym_IBInspectable] = ACTIONS(1772), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1772), + [anon_sym_signed] = ACTIONS(1772), + [anon_sym_unsigned] = ACTIONS(1772), + [anon_sym_long] = ACTIONS(1772), + [anon_sym_short] = ACTIONS(1772), + [sym_primitive_type] = ACTIONS(1772), + [anon_sym_enum] = ACTIONS(1772), + [anon_sym_struct] = ACTIONS(1772), + [anon_sym_union] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1772), + [anon_sym_default] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_goto] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_PLUS_PLUS] = ACTIONS(1774), + [anon_sym_sizeof] = ACTIONS(1772), + [sym_number_literal] = ACTIONS(1774), + [anon_sym_L_SQUOTE] = ACTIONS(1774), + [anon_sym_u_SQUOTE] = ACTIONS(1774), + [anon_sym_U_SQUOTE] = ACTIONS(1774), + [anon_sym_u8_SQUOTE] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_L_DQUOTE] = ACTIONS(1774), + [anon_sym_u_DQUOTE] = ACTIONS(1774), + [anon_sym_U_DQUOTE] = ACTIONS(1774), + [anon_sym_u8_DQUOTE] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym_true] = ACTIONS(1772), + [sym_false] = ACTIONS(1772), + [sym_null] = ACTIONS(1772), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1774), + [anon_sym_ATimport] = ACTIONS(1774), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1772), + [anon_sym_ATcompatibility_alias] = ACTIONS(1774), + [anon_sym_ATprotocol] = ACTIONS(1774), + [anon_sym_ATclass] = ACTIONS(1774), + [anon_sym_ATinterface] = ACTIONS(1774), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1772), + [sym_method_attribute_specifier] = ACTIONS(1772), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1772), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1772), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1772), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1772), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1772), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1772), + [anon_sym_NS_AVAILABLE] = ACTIONS(1772), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1772), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_API_AVAILABLE] = ACTIONS(1772), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1772), + [anon_sym_API_DEPRECATED] = ACTIONS(1772), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1772), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1772), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1772), + [anon_sym___deprecated_msg] = ACTIONS(1772), + [anon_sym___deprecated_enum_msg] = ACTIONS(1772), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1772), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1772), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1772), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1772), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1772), + [anon_sym_ATimplementation] = ACTIONS(1774), + [anon_sym_NS_ENUM] = ACTIONS(1772), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1772), + [anon_sym_NS_OPTIONS] = ACTIONS(1772), + [anon_sym_typeof] = ACTIONS(1772), + [anon_sym___typeof] = ACTIONS(1772), + [anon_sym___typeof__] = ACTIONS(1772), + [sym_self] = ACTIONS(1772), + [sym_super] = ACTIONS(1772), + [sym_nil] = ACTIONS(1772), + [sym_id] = ACTIONS(1772), + [sym_instancetype] = ACTIONS(1772), + [sym_Class] = ACTIONS(1772), + [sym_SEL] = ACTIONS(1772), + [sym_IMP] = ACTIONS(1772), + [sym_BOOL] = ACTIONS(1772), + [sym_auto] = ACTIONS(1772), + [anon_sym_ATautoreleasepool] = ACTIONS(1774), + [anon_sym_ATsynchronized] = ACTIONS(1774), + [anon_sym_ATtry] = ACTIONS(1774), + [anon_sym_ATthrow] = ACTIONS(1774), + [anon_sym_ATselector] = ACTIONS(1774), + [anon_sym_ATencode] = ACTIONS(1774), + [anon_sym_AT] = ACTIONS(1772), + [sym_YES] = ACTIONS(1772), + [sym_NO] = ACTIONS(1772), + [anon_sym___builtin_available] = ACTIONS(1772), + [anon_sym_ATavailable] = ACTIONS(1774), + [anon_sym_va_arg] = ACTIONS(1772), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1563] = { + [sym_identifier] = ACTIONS(1948), + [aux_sym_preproc_include_token1] = ACTIONS(1950), + [aux_sym_preproc_def_token1] = ACTIONS(1950), + [aux_sym_preproc_if_token1] = ACTIONS(1948), + [aux_sym_preproc_if_token2] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1948), + [anon_sym_LPAREN2] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_TILDE] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_PLUS] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_CARET] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_typedef] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym___attribute] = ACTIONS(1948), + [anon_sym___attribute__] = ACTIONS(1948), + [anon_sym___declspec] = ACTIONS(1948), + [anon_sym___cdecl] = ACTIONS(1948), + [anon_sym___clrcall] = ACTIONS(1948), + [anon_sym___stdcall] = ACTIONS(1948), + [anon_sym___fastcall] = ACTIONS(1948), + [anon_sym___thiscall] = ACTIONS(1948), + [anon_sym___vectorcall] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_auto] = ACTIONS(1948), + [anon_sym_register] = ACTIONS(1948), + [anon_sym_inline] = ACTIONS(1948), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_volatile] = ACTIONS(1948), + [anon_sym_restrict] = ACTIONS(1948), + [anon_sym__Atomic] = ACTIONS(1948), + [anon_sym_in] = ACTIONS(1948), + [anon_sym_out] = ACTIONS(1948), + [anon_sym_inout] = ACTIONS(1948), + [anon_sym_bycopy] = ACTIONS(1948), + [anon_sym_byref] = ACTIONS(1948), + [anon_sym_oneway] = ACTIONS(1948), + [anon_sym__Nullable] = ACTIONS(1948), + [anon_sym__Nonnull] = ACTIONS(1948), + [anon_sym__Nullable_result] = ACTIONS(1948), + [anon_sym__Null_unspecified] = ACTIONS(1948), + [anon_sym___autoreleasing] = ACTIONS(1948), + [anon_sym___nullable] = ACTIONS(1948), + [anon_sym___nonnull] = ACTIONS(1948), + [anon_sym___strong] = ACTIONS(1948), + [anon_sym___weak] = ACTIONS(1948), + [anon_sym___bridge] = ACTIONS(1948), + [anon_sym___bridge_transfer] = ACTIONS(1948), + [anon_sym___bridge_retained] = ACTIONS(1948), + [anon_sym___unsafe_unretained] = ACTIONS(1948), + [anon_sym___block] = ACTIONS(1948), + [anon_sym___kindof] = ACTIONS(1948), + [anon_sym___unused] = ACTIONS(1948), + [anon_sym__Complex] = ACTIONS(1948), + [anon_sym___complex] = ACTIONS(1948), + [anon_sym_IBOutlet] = ACTIONS(1948), + [anon_sym_IBInspectable] = ACTIONS(1948), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1948), + [anon_sym_signed] = ACTIONS(1948), + [anon_sym_unsigned] = ACTIONS(1948), + [anon_sym_long] = ACTIONS(1948), + [anon_sym_short] = ACTIONS(1948), + [sym_primitive_type] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_switch] = ACTIONS(1948), + [anon_sym_case] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_do] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_goto] = ACTIONS(1948), + [anon_sym_DASH_DASH] = ACTIONS(1950), + [anon_sym_PLUS_PLUS] = ACTIONS(1950), + [anon_sym_sizeof] = ACTIONS(1948), + [sym_number_literal] = ACTIONS(1950), + [anon_sym_L_SQUOTE] = ACTIONS(1950), + [anon_sym_u_SQUOTE] = ACTIONS(1950), + [anon_sym_U_SQUOTE] = ACTIONS(1950), + [anon_sym_u8_SQUOTE] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_L_DQUOTE] = ACTIONS(1950), + [anon_sym_u_DQUOTE] = ACTIONS(1950), + [anon_sym_U_DQUOTE] = ACTIONS(1950), + [anon_sym_u8_DQUOTE] = ACTIONS(1950), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym_true] = ACTIONS(1948), + [sym_false] = ACTIONS(1948), + [sym_null] = ACTIONS(1948), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1950), + [anon_sym_ATimport] = ACTIONS(1950), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1948), + [anon_sym_ATcompatibility_alias] = ACTIONS(1950), + [anon_sym_ATprotocol] = ACTIONS(1950), + [anon_sym_ATclass] = ACTIONS(1950), + [anon_sym_ATinterface] = ACTIONS(1950), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1948), + [sym_method_attribute_specifier] = ACTIONS(1948), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1948), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1948), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE] = ACTIONS(1948), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1948), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_API_AVAILABLE] = ACTIONS(1948), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_API_DEPRECATED] = ACTIONS(1948), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1948), + [anon_sym___deprecated_msg] = ACTIONS(1948), + [anon_sym___deprecated_enum_msg] = ACTIONS(1948), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1948), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1948), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1948), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1948), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1948), + [anon_sym_ATimplementation] = ACTIONS(1950), + [anon_sym_NS_ENUM] = ACTIONS(1948), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1948), + [anon_sym_NS_OPTIONS] = ACTIONS(1948), + [anon_sym_typeof] = ACTIONS(1948), + [anon_sym___typeof] = ACTIONS(1948), + [anon_sym___typeof__] = ACTIONS(1948), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_nil] = ACTIONS(1948), + [sym_id] = ACTIONS(1948), + [sym_instancetype] = ACTIONS(1948), + [sym_Class] = ACTIONS(1948), + [sym_SEL] = ACTIONS(1948), + [sym_IMP] = ACTIONS(1948), + [sym_BOOL] = ACTIONS(1948), + [sym_auto] = ACTIONS(1948), + [anon_sym_ATautoreleasepool] = ACTIONS(1950), + [anon_sym_ATsynchronized] = ACTIONS(1950), + [anon_sym_ATtry] = ACTIONS(1950), + [anon_sym_ATthrow] = ACTIONS(1950), + [anon_sym_ATselector] = ACTIONS(1950), + [anon_sym_ATencode] = ACTIONS(1950), + [anon_sym_AT] = ACTIONS(1948), + [sym_YES] = ACTIONS(1948), + [sym_NO] = ACTIONS(1948), + [anon_sym___builtin_available] = ACTIONS(1948), + [anon_sym_ATavailable] = ACTIONS(1950), + [anon_sym_va_arg] = ACTIONS(1948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1564] = { + [sym_identifier] = ACTIONS(1768), + [aux_sym_preproc_include_token1] = ACTIONS(1770), + [aux_sym_preproc_def_token1] = ACTIONS(1770), + [aux_sym_preproc_if_token1] = ACTIONS(1768), + [aux_sym_preproc_if_token2] = ACTIONS(1768), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1768), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1768), + [anon_sym_LPAREN2] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_CARET] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_typedef] = ACTIONS(1768), + [anon_sym_extern] = ACTIONS(1768), + [anon_sym___attribute] = ACTIONS(1768), + [anon_sym___attribute__] = ACTIONS(1768), + [anon_sym___declspec] = ACTIONS(1768), + [anon_sym___cdecl] = ACTIONS(1768), + [anon_sym___clrcall] = ACTIONS(1768), + [anon_sym___stdcall] = ACTIONS(1768), + [anon_sym___fastcall] = ACTIONS(1768), + [anon_sym___thiscall] = ACTIONS(1768), + [anon_sym___vectorcall] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1768), + [anon_sym_auto] = ACTIONS(1768), + [anon_sym_register] = ACTIONS(1768), + [anon_sym_inline] = ACTIONS(1768), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1768), + [anon_sym_const] = ACTIONS(1768), + [anon_sym_volatile] = ACTIONS(1768), + [anon_sym_restrict] = ACTIONS(1768), + [anon_sym__Atomic] = ACTIONS(1768), + [anon_sym_in] = ACTIONS(1768), + [anon_sym_out] = ACTIONS(1768), + [anon_sym_inout] = ACTIONS(1768), + [anon_sym_bycopy] = ACTIONS(1768), + [anon_sym_byref] = ACTIONS(1768), + [anon_sym_oneway] = ACTIONS(1768), + [anon_sym__Nullable] = ACTIONS(1768), + [anon_sym__Nonnull] = ACTIONS(1768), + [anon_sym__Nullable_result] = ACTIONS(1768), + [anon_sym__Null_unspecified] = ACTIONS(1768), + [anon_sym___autoreleasing] = ACTIONS(1768), + [anon_sym___nullable] = ACTIONS(1768), + [anon_sym___nonnull] = ACTIONS(1768), + [anon_sym___strong] = ACTIONS(1768), + [anon_sym___weak] = ACTIONS(1768), + [anon_sym___bridge] = ACTIONS(1768), + [anon_sym___bridge_transfer] = ACTIONS(1768), + [anon_sym___bridge_retained] = ACTIONS(1768), + [anon_sym___unsafe_unretained] = ACTIONS(1768), + [anon_sym___block] = ACTIONS(1768), + [anon_sym___kindof] = ACTIONS(1768), + [anon_sym___unused] = ACTIONS(1768), + [anon_sym__Complex] = ACTIONS(1768), + [anon_sym___complex] = ACTIONS(1768), + [anon_sym_IBOutlet] = ACTIONS(1768), + [anon_sym_IBInspectable] = ACTIONS(1768), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1768), + [anon_sym_signed] = ACTIONS(1768), + [anon_sym_unsigned] = ACTIONS(1768), + [anon_sym_long] = ACTIONS(1768), + [anon_sym_short] = ACTIONS(1768), + [sym_primitive_type] = ACTIONS(1768), + [anon_sym_enum] = ACTIONS(1768), + [anon_sym_struct] = ACTIONS(1768), + [anon_sym_union] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_switch] = ACTIONS(1768), + [anon_sym_case] = ACTIONS(1768), + [anon_sym_default] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_do] = ACTIONS(1768), + [anon_sym_for] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_goto] = ACTIONS(1768), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_sizeof] = ACTIONS(1768), + [sym_number_literal] = ACTIONS(1770), + [anon_sym_L_SQUOTE] = ACTIONS(1770), + [anon_sym_u_SQUOTE] = ACTIONS(1770), + [anon_sym_U_SQUOTE] = ACTIONS(1770), + [anon_sym_u8_SQUOTE] = ACTIONS(1770), + [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_L_DQUOTE] = ACTIONS(1770), + [anon_sym_u_DQUOTE] = ACTIONS(1770), + [anon_sym_U_DQUOTE] = ACTIONS(1770), + [anon_sym_u8_DQUOTE] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [sym_true] = ACTIONS(1768), + [sym_false] = ACTIONS(1768), + [sym_null] = ACTIONS(1768), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1770), + [anon_sym_ATimport] = ACTIONS(1770), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1768), + [anon_sym_ATcompatibility_alias] = ACTIONS(1770), + [anon_sym_ATprotocol] = ACTIONS(1770), + [anon_sym_ATclass] = ACTIONS(1770), + [anon_sym_ATinterface] = ACTIONS(1770), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1768), + [sym_method_attribute_specifier] = ACTIONS(1768), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1768), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1768), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1768), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1768), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1768), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1768), + [anon_sym_NS_AVAILABLE] = ACTIONS(1768), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1768), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1768), + [anon_sym_API_AVAILABLE] = ACTIONS(1768), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1768), + [anon_sym_API_DEPRECATED] = ACTIONS(1768), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1768), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1768), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1768), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1768), + [anon_sym___deprecated_msg] = ACTIONS(1768), + [anon_sym___deprecated_enum_msg] = ACTIONS(1768), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1768), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1768), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1768), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1768), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1768), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1768), + [anon_sym_ATimplementation] = ACTIONS(1770), + [anon_sym_NS_ENUM] = ACTIONS(1768), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1768), + [anon_sym_NS_OPTIONS] = ACTIONS(1768), + [anon_sym_typeof] = ACTIONS(1768), + [anon_sym___typeof] = ACTIONS(1768), + [anon_sym___typeof__] = ACTIONS(1768), + [sym_self] = ACTIONS(1768), + [sym_super] = ACTIONS(1768), + [sym_nil] = ACTIONS(1768), + [sym_id] = ACTIONS(1768), + [sym_instancetype] = ACTIONS(1768), + [sym_Class] = ACTIONS(1768), + [sym_SEL] = ACTIONS(1768), + [sym_IMP] = ACTIONS(1768), + [sym_BOOL] = ACTIONS(1768), + [sym_auto] = ACTIONS(1768), + [anon_sym_ATautoreleasepool] = ACTIONS(1770), + [anon_sym_ATsynchronized] = ACTIONS(1770), + [anon_sym_ATtry] = ACTIONS(1770), + [anon_sym_ATthrow] = ACTIONS(1770), + [anon_sym_ATselector] = ACTIONS(1770), + [anon_sym_ATencode] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(1768), + [sym_YES] = ACTIONS(1768), + [sym_NO] = ACTIONS(1768), + [anon_sym___builtin_available] = ACTIONS(1768), + [anon_sym_ATavailable] = ACTIONS(1770), + [anon_sym_va_arg] = ACTIONS(1768), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1565] = { + [sym_identifier] = ACTIONS(1956), + [aux_sym_preproc_include_token1] = ACTIONS(1958), + [aux_sym_preproc_def_token1] = ACTIONS(1958), + [aux_sym_preproc_if_token1] = ACTIONS(1956), + [aux_sym_preproc_if_token2] = ACTIONS(1956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1956), + [anon_sym_LPAREN2] = ACTIONS(1958), + [anon_sym_BANG] = ACTIONS(1958), + [anon_sym_TILDE] = ACTIONS(1958), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_STAR] = ACTIONS(1958), + [anon_sym_CARET] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1958), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_typedef] = ACTIONS(1956), + [anon_sym_extern] = ACTIONS(1956), + [anon_sym___attribute] = ACTIONS(1956), + [anon_sym___attribute__] = ACTIONS(1956), + [anon_sym___declspec] = ACTIONS(1956), + [anon_sym___cdecl] = ACTIONS(1956), + [anon_sym___clrcall] = ACTIONS(1956), + [anon_sym___stdcall] = ACTIONS(1956), + [anon_sym___fastcall] = ACTIONS(1956), + [anon_sym___thiscall] = ACTIONS(1956), + [anon_sym___vectorcall] = ACTIONS(1956), + [anon_sym_LBRACE] = ACTIONS(1958), + [anon_sym_LBRACK] = ACTIONS(1958), + [anon_sym_static] = ACTIONS(1956), + [anon_sym_auto] = ACTIONS(1956), + [anon_sym_register] = ACTIONS(1956), + [anon_sym_inline] = ACTIONS(1956), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1956), + [anon_sym_const] = ACTIONS(1956), + [anon_sym_volatile] = ACTIONS(1956), + [anon_sym_restrict] = ACTIONS(1956), + [anon_sym__Atomic] = ACTIONS(1956), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_out] = ACTIONS(1956), + [anon_sym_inout] = ACTIONS(1956), + [anon_sym_bycopy] = ACTIONS(1956), + [anon_sym_byref] = ACTIONS(1956), + [anon_sym_oneway] = ACTIONS(1956), + [anon_sym__Nullable] = ACTIONS(1956), + [anon_sym__Nonnull] = ACTIONS(1956), + [anon_sym__Nullable_result] = ACTIONS(1956), + [anon_sym__Null_unspecified] = ACTIONS(1956), + [anon_sym___autoreleasing] = ACTIONS(1956), + [anon_sym___nullable] = ACTIONS(1956), + [anon_sym___nonnull] = ACTIONS(1956), + [anon_sym___strong] = ACTIONS(1956), + [anon_sym___weak] = ACTIONS(1956), + [anon_sym___bridge] = ACTIONS(1956), + [anon_sym___bridge_transfer] = ACTIONS(1956), + [anon_sym___bridge_retained] = ACTIONS(1956), + [anon_sym___unsafe_unretained] = ACTIONS(1956), + [anon_sym___block] = ACTIONS(1956), + [anon_sym___kindof] = ACTIONS(1956), + [anon_sym___unused] = ACTIONS(1956), + [anon_sym__Complex] = ACTIONS(1956), + [anon_sym___complex] = ACTIONS(1956), + [anon_sym_IBOutlet] = ACTIONS(1956), + [anon_sym_IBInspectable] = ACTIONS(1956), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1956), + [anon_sym_signed] = ACTIONS(1956), + [anon_sym_unsigned] = ACTIONS(1956), + [anon_sym_long] = ACTIONS(1956), + [anon_sym_short] = ACTIONS(1956), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_enum] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1956), + [anon_sym_union] = ACTIONS(1956), + [anon_sym_if] = ACTIONS(1956), + [anon_sym_switch] = ACTIONS(1956), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1956), + [anon_sym_while] = ACTIONS(1956), + [anon_sym_do] = ACTIONS(1956), + [anon_sym_for] = ACTIONS(1956), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_break] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(1956), + [anon_sym_goto] = ACTIONS(1956), + [anon_sym_DASH_DASH] = ACTIONS(1958), + [anon_sym_PLUS_PLUS] = ACTIONS(1958), + [anon_sym_sizeof] = ACTIONS(1956), + [sym_number_literal] = ACTIONS(1958), + [anon_sym_L_SQUOTE] = ACTIONS(1958), + [anon_sym_u_SQUOTE] = ACTIONS(1958), + [anon_sym_U_SQUOTE] = ACTIONS(1958), + [anon_sym_u8_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_L_DQUOTE] = ACTIONS(1958), + [anon_sym_u_DQUOTE] = ACTIONS(1958), + [anon_sym_U_DQUOTE] = ACTIONS(1958), + [anon_sym_u8_DQUOTE] = ACTIONS(1958), + [anon_sym_DQUOTE] = ACTIONS(1958), + [sym_true] = ACTIONS(1956), + [sym_false] = ACTIONS(1956), + [sym_null] = ACTIONS(1956), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1958), + [anon_sym_ATimport] = ACTIONS(1958), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1956), + [anon_sym_ATcompatibility_alias] = ACTIONS(1958), + [anon_sym_ATprotocol] = ACTIONS(1958), + [anon_sym_ATclass] = ACTIONS(1958), + [anon_sym_ATinterface] = ACTIONS(1958), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1956), + [sym_method_attribute_specifier] = ACTIONS(1956), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1956), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1956), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1956), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1956), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1956), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1956), + [anon_sym_NS_AVAILABLE] = ACTIONS(1956), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1956), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1956), + [anon_sym_API_AVAILABLE] = ACTIONS(1956), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1956), + [anon_sym_API_DEPRECATED] = ACTIONS(1956), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1956), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1956), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1956), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1956), + [anon_sym___deprecated_msg] = ACTIONS(1956), + [anon_sym___deprecated_enum_msg] = ACTIONS(1956), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1956), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1956), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1956), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1956), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1956), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1956), + [anon_sym_ATimplementation] = ACTIONS(1958), + [anon_sym_NS_ENUM] = ACTIONS(1956), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1956), + [anon_sym_NS_OPTIONS] = ACTIONS(1956), + [anon_sym_typeof] = ACTIONS(1956), + [anon_sym___typeof] = ACTIONS(1956), + [anon_sym___typeof__] = ACTIONS(1956), + [sym_self] = ACTIONS(1956), + [sym_super] = ACTIONS(1956), + [sym_nil] = ACTIONS(1956), + [sym_id] = ACTIONS(1956), + [sym_instancetype] = ACTIONS(1956), + [sym_Class] = ACTIONS(1956), + [sym_SEL] = ACTIONS(1956), + [sym_IMP] = ACTIONS(1956), + [sym_BOOL] = ACTIONS(1956), + [sym_auto] = ACTIONS(1956), + [anon_sym_ATautoreleasepool] = ACTIONS(1958), + [anon_sym_ATsynchronized] = ACTIONS(1958), + [anon_sym_ATtry] = ACTIONS(1958), + [anon_sym_ATthrow] = ACTIONS(1958), + [anon_sym_ATselector] = ACTIONS(1958), + [anon_sym_ATencode] = ACTIONS(1958), + [anon_sym_AT] = ACTIONS(1956), + [sym_YES] = ACTIONS(1956), + [sym_NO] = ACTIONS(1956), + [anon_sym___builtin_available] = ACTIONS(1956), + [anon_sym_ATavailable] = ACTIONS(1958), + [anon_sym_va_arg] = ACTIONS(1956), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1566] = { + [sym_identifier] = ACTIONS(1960), + [aux_sym_preproc_include_token1] = ACTIONS(1962), + [aux_sym_preproc_def_token1] = ACTIONS(1962), + [aux_sym_preproc_if_token1] = ACTIONS(1960), + [aux_sym_preproc_if_token2] = ACTIONS(1960), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1960), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1960), + [anon_sym_LPAREN2] = ACTIONS(1962), + [anon_sym_BANG] = ACTIONS(1962), + [anon_sym_TILDE] = ACTIONS(1962), + [anon_sym_DASH] = ACTIONS(1960), + [anon_sym_PLUS] = ACTIONS(1960), + [anon_sym_STAR] = ACTIONS(1962), + [anon_sym_CARET] = ACTIONS(1962), + [anon_sym_AMP] = ACTIONS(1962), + [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_typedef] = ACTIONS(1960), + [anon_sym_extern] = ACTIONS(1960), + [anon_sym___attribute] = ACTIONS(1960), + [anon_sym___attribute__] = ACTIONS(1960), + [anon_sym___declspec] = ACTIONS(1960), + [anon_sym___cdecl] = ACTIONS(1960), + [anon_sym___clrcall] = ACTIONS(1960), + [anon_sym___stdcall] = ACTIONS(1960), + [anon_sym___fastcall] = ACTIONS(1960), + [anon_sym___thiscall] = ACTIONS(1960), + [anon_sym___vectorcall] = ACTIONS(1960), + [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1962), + [anon_sym_static] = ACTIONS(1960), + [anon_sym_auto] = ACTIONS(1960), + [anon_sym_register] = ACTIONS(1960), + [anon_sym_inline] = ACTIONS(1960), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1960), + [anon_sym_const] = ACTIONS(1960), + [anon_sym_volatile] = ACTIONS(1960), + [anon_sym_restrict] = ACTIONS(1960), + [anon_sym__Atomic] = ACTIONS(1960), + [anon_sym_in] = ACTIONS(1960), + [anon_sym_out] = ACTIONS(1960), + [anon_sym_inout] = ACTIONS(1960), + [anon_sym_bycopy] = ACTIONS(1960), + [anon_sym_byref] = ACTIONS(1960), + [anon_sym_oneway] = ACTIONS(1960), + [anon_sym__Nullable] = ACTIONS(1960), + [anon_sym__Nonnull] = ACTIONS(1960), + [anon_sym__Nullable_result] = ACTIONS(1960), + [anon_sym__Null_unspecified] = ACTIONS(1960), + [anon_sym___autoreleasing] = ACTIONS(1960), + [anon_sym___nullable] = ACTIONS(1960), + [anon_sym___nonnull] = ACTIONS(1960), + [anon_sym___strong] = ACTIONS(1960), + [anon_sym___weak] = ACTIONS(1960), + [anon_sym___bridge] = ACTIONS(1960), + [anon_sym___bridge_transfer] = ACTIONS(1960), + [anon_sym___bridge_retained] = ACTIONS(1960), + [anon_sym___unsafe_unretained] = ACTIONS(1960), + [anon_sym___block] = ACTIONS(1960), + [anon_sym___kindof] = ACTIONS(1960), + [anon_sym___unused] = ACTIONS(1960), + [anon_sym__Complex] = ACTIONS(1960), + [anon_sym___complex] = ACTIONS(1960), + [anon_sym_IBOutlet] = ACTIONS(1960), + [anon_sym_IBInspectable] = ACTIONS(1960), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1960), + [anon_sym_signed] = ACTIONS(1960), + [anon_sym_unsigned] = ACTIONS(1960), + [anon_sym_long] = ACTIONS(1960), + [anon_sym_short] = ACTIONS(1960), + [sym_primitive_type] = ACTIONS(1960), + [anon_sym_enum] = ACTIONS(1960), + [anon_sym_struct] = ACTIONS(1960), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_if] = ACTIONS(1960), + [anon_sym_switch] = ACTIONS(1960), + [anon_sym_case] = ACTIONS(1960), + [anon_sym_default] = ACTIONS(1960), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1960), + [anon_sym_for] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1960), + [anon_sym_break] = ACTIONS(1960), + [anon_sym_continue] = ACTIONS(1960), + [anon_sym_goto] = ACTIONS(1960), + [anon_sym_DASH_DASH] = ACTIONS(1962), + [anon_sym_PLUS_PLUS] = ACTIONS(1962), + [anon_sym_sizeof] = ACTIONS(1960), + [sym_number_literal] = ACTIONS(1962), + [anon_sym_L_SQUOTE] = ACTIONS(1962), + [anon_sym_u_SQUOTE] = ACTIONS(1962), + [anon_sym_U_SQUOTE] = ACTIONS(1962), + [anon_sym_u8_SQUOTE] = ACTIONS(1962), + [anon_sym_SQUOTE] = ACTIONS(1962), + [anon_sym_L_DQUOTE] = ACTIONS(1962), + [anon_sym_u_DQUOTE] = ACTIONS(1962), + [anon_sym_U_DQUOTE] = ACTIONS(1962), + [anon_sym_u8_DQUOTE] = ACTIONS(1962), + [anon_sym_DQUOTE] = ACTIONS(1962), + [sym_true] = ACTIONS(1960), + [sym_false] = ACTIONS(1960), + [sym_null] = ACTIONS(1960), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1962), + [anon_sym_ATimport] = ACTIONS(1962), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1960), + [anon_sym_ATcompatibility_alias] = ACTIONS(1962), + [anon_sym_ATprotocol] = ACTIONS(1962), + [anon_sym_ATclass] = ACTIONS(1962), + [anon_sym_ATinterface] = ACTIONS(1962), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1960), + [sym_method_attribute_specifier] = ACTIONS(1960), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1960), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1960), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1960), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1960), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1960), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1960), + [anon_sym_NS_AVAILABLE] = ACTIONS(1960), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1960), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1960), + [anon_sym_API_AVAILABLE] = ACTIONS(1960), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1960), + [anon_sym_API_DEPRECATED] = ACTIONS(1960), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1960), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1960), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1960), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1960), + [anon_sym___deprecated_msg] = ACTIONS(1960), + [anon_sym___deprecated_enum_msg] = ACTIONS(1960), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1960), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1960), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1960), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1960), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1960), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1960), + [anon_sym_ATimplementation] = ACTIONS(1962), + [anon_sym_NS_ENUM] = ACTIONS(1960), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1960), + [anon_sym_NS_OPTIONS] = ACTIONS(1960), + [anon_sym_typeof] = ACTIONS(1960), + [anon_sym___typeof] = ACTIONS(1960), + [anon_sym___typeof__] = ACTIONS(1960), + [sym_self] = ACTIONS(1960), + [sym_super] = ACTIONS(1960), + [sym_nil] = ACTIONS(1960), + [sym_id] = ACTIONS(1960), + [sym_instancetype] = ACTIONS(1960), + [sym_Class] = ACTIONS(1960), + [sym_SEL] = ACTIONS(1960), + [sym_IMP] = ACTIONS(1960), + [sym_BOOL] = ACTIONS(1960), + [sym_auto] = ACTIONS(1960), + [anon_sym_ATautoreleasepool] = ACTIONS(1962), + [anon_sym_ATsynchronized] = ACTIONS(1962), + [anon_sym_ATtry] = ACTIONS(1962), + [anon_sym_ATthrow] = ACTIONS(1962), + [anon_sym_ATselector] = ACTIONS(1962), + [anon_sym_ATencode] = ACTIONS(1962), + [anon_sym_AT] = ACTIONS(1960), + [sym_YES] = ACTIONS(1960), + [sym_NO] = ACTIONS(1960), + [anon_sym___builtin_available] = ACTIONS(1960), + [anon_sym_ATavailable] = ACTIONS(1962), + [anon_sym_va_arg] = ACTIONS(1960), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1567] = { + [sym_identifier] = ACTIONS(1736), + [aux_sym_preproc_include_token1] = ACTIONS(1738), + [aux_sym_preproc_def_token1] = ACTIONS(1738), + [aux_sym_preproc_if_token1] = ACTIONS(1736), + [aux_sym_preproc_if_token2] = ACTIONS(1736), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1736), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1736), + [anon_sym_LPAREN2] = ACTIONS(1738), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_TILDE] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1736), + [anon_sym_PLUS] = ACTIONS(1736), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_CARET] = ACTIONS(1738), + [anon_sym_AMP] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_typedef] = ACTIONS(1736), + [anon_sym_extern] = ACTIONS(1736), + [anon_sym___attribute] = ACTIONS(1736), + [anon_sym___attribute__] = ACTIONS(1736), + [anon_sym___declspec] = ACTIONS(1736), + [anon_sym___cdecl] = ACTIONS(1736), + [anon_sym___clrcall] = ACTIONS(1736), + [anon_sym___stdcall] = ACTIONS(1736), + [anon_sym___fastcall] = ACTIONS(1736), + [anon_sym___thiscall] = ACTIONS(1736), + [anon_sym___vectorcall] = ACTIONS(1736), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_LBRACK] = ACTIONS(1738), + [anon_sym_static] = ACTIONS(1736), + [anon_sym_auto] = ACTIONS(1736), + [anon_sym_register] = ACTIONS(1736), + [anon_sym_inline] = ACTIONS(1736), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1736), + [anon_sym_volatile] = ACTIONS(1736), + [anon_sym_restrict] = ACTIONS(1736), + [anon_sym__Atomic] = ACTIONS(1736), + [anon_sym_in] = ACTIONS(1736), + [anon_sym_out] = ACTIONS(1736), + [anon_sym_inout] = ACTIONS(1736), + [anon_sym_bycopy] = ACTIONS(1736), + [anon_sym_byref] = ACTIONS(1736), + [anon_sym_oneway] = ACTIONS(1736), + [anon_sym__Nullable] = ACTIONS(1736), + [anon_sym__Nonnull] = ACTIONS(1736), + [anon_sym__Nullable_result] = ACTIONS(1736), + [anon_sym__Null_unspecified] = ACTIONS(1736), + [anon_sym___autoreleasing] = ACTIONS(1736), + [anon_sym___nullable] = ACTIONS(1736), + [anon_sym___nonnull] = ACTIONS(1736), + [anon_sym___strong] = ACTIONS(1736), + [anon_sym___weak] = ACTIONS(1736), + [anon_sym___bridge] = ACTIONS(1736), + [anon_sym___bridge_transfer] = ACTIONS(1736), + [anon_sym___bridge_retained] = ACTIONS(1736), + [anon_sym___unsafe_unretained] = ACTIONS(1736), + [anon_sym___block] = ACTIONS(1736), + [anon_sym___kindof] = ACTIONS(1736), + [anon_sym___unused] = ACTIONS(1736), + [anon_sym__Complex] = ACTIONS(1736), + [anon_sym___complex] = ACTIONS(1736), + [anon_sym_IBOutlet] = ACTIONS(1736), + [anon_sym_IBInspectable] = ACTIONS(1736), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1736), + [anon_sym_signed] = ACTIONS(1736), + [anon_sym_unsigned] = ACTIONS(1736), + [anon_sym_long] = ACTIONS(1736), + [anon_sym_short] = ACTIONS(1736), + [sym_primitive_type] = ACTIONS(1736), + [anon_sym_enum] = ACTIONS(1736), + [anon_sym_struct] = ACTIONS(1736), + [anon_sym_union] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(1736), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(1736), + [anon_sym_default] = ACTIONS(1736), + [anon_sym_while] = ACTIONS(1736), + [anon_sym_do] = ACTIONS(1736), + [anon_sym_for] = ACTIONS(1736), + [anon_sym_return] = ACTIONS(1736), + [anon_sym_break] = ACTIONS(1736), + [anon_sym_continue] = ACTIONS(1736), + [anon_sym_goto] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1738), + [anon_sym_PLUS_PLUS] = ACTIONS(1738), + [anon_sym_sizeof] = ACTIONS(1736), + [sym_number_literal] = ACTIONS(1738), + [anon_sym_L_SQUOTE] = ACTIONS(1738), + [anon_sym_u_SQUOTE] = ACTIONS(1738), + [anon_sym_U_SQUOTE] = ACTIONS(1738), + [anon_sym_u8_SQUOTE] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1738), + [anon_sym_L_DQUOTE] = ACTIONS(1738), + [anon_sym_u_DQUOTE] = ACTIONS(1738), + [anon_sym_U_DQUOTE] = ACTIONS(1738), + [anon_sym_u8_DQUOTE] = ACTIONS(1738), + [anon_sym_DQUOTE] = ACTIONS(1738), + [sym_true] = ACTIONS(1736), + [sym_false] = ACTIONS(1736), + [sym_null] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1738), + [anon_sym_ATimport] = ACTIONS(1738), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1736), + [anon_sym_ATcompatibility_alias] = ACTIONS(1738), + [anon_sym_ATprotocol] = ACTIONS(1738), + [anon_sym_ATclass] = ACTIONS(1738), + [anon_sym_ATinterface] = ACTIONS(1738), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1736), + [sym_method_attribute_specifier] = ACTIONS(1736), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1736), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1736), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1736), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1736), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1736), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1736), + [anon_sym_NS_AVAILABLE] = ACTIONS(1736), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1736), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1736), + [anon_sym_API_AVAILABLE] = ACTIONS(1736), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1736), + [anon_sym_API_DEPRECATED] = ACTIONS(1736), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1736), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1736), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1736), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1736), + [anon_sym___deprecated_msg] = ACTIONS(1736), + [anon_sym___deprecated_enum_msg] = ACTIONS(1736), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1736), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1736), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1736), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1736), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1736), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1736), + [anon_sym_ATimplementation] = ACTIONS(1738), + [anon_sym_NS_ENUM] = ACTIONS(1736), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1736), + [anon_sym_NS_OPTIONS] = ACTIONS(1736), + [anon_sym_typeof] = ACTIONS(1736), + [anon_sym___typeof] = ACTIONS(1736), + [anon_sym___typeof__] = ACTIONS(1736), + [sym_self] = ACTIONS(1736), + [sym_super] = ACTIONS(1736), + [sym_nil] = ACTIONS(1736), + [sym_id] = ACTIONS(1736), + [sym_instancetype] = ACTIONS(1736), + [sym_Class] = ACTIONS(1736), + [sym_SEL] = ACTIONS(1736), + [sym_IMP] = ACTIONS(1736), + [sym_BOOL] = ACTIONS(1736), + [sym_auto] = ACTIONS(1736), + [anon_sym_ATautoreleasepool] = ACTIONS(1738), + [anon_sym_ATsynchronized] = ACTIONS(1738), + [anon_sym_ATtry] = ACTIONS(1738), + [anon_sym_ATthrow] = ACTIONS(1738), + [anon_sym_ATselector] = ACTIONS(1738), + [anon_sym_ATencode] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(1736), + [sym_YES] = ACTIONS(1736), + [sym_NO] = ACTIONS(1736), + [anon_sym___builtin_available] = ACTIONS(1736), + [anon_sym_ATavailable] = ACTIONS(1738), + [anon_sym_va_arg] = ACTIONS(1736), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1568] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1569] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1570] = { + [sym_identifier] = ACTIONS(1964), + [aux_sym_preproc_include_token1] = ACTIONS(1966), + [aux_sym_preproc_def_token1] = ACTIONS(1966), + [aux_sym_preproc_if_token1] = ACTIONS(1964), + [aux_sym_preproc_if_token2] = ACTIONS(1964), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1964), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1964), + [anon_sym_LPAREN2] = ACTIONS(1966), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_TILDE] = ACTIONS(1966), + [anon_sym_DASH] = ACTIONS(1964), + [anon_sym_PLUS] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_CARET] = ACTIONS(1966), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_typedef] = ACTIONS(1964), + [anon_sym_extern] = ACTIONS(1964), + [anon_sym___attribute] = ACTIONS(1964), + [anon_sym___attribute__] = ACTIONS(1964), + [anon_sym___declspec] = ACTIONS(1964), + [anon_sym___cdecl] = ACTIONS(1964), + [anon_sym___clrcall] = ACTIONS(1964), + [anon_sym___stdcall] = ACTIONS(1964), + [anon_sym___fastcall] = ACTIONS(1964), + [anon_sym___thiscall] = ACTIONS(1964), + [anon_sym___vectorcall] = ACTIONS(1964), + [anon_sym_LBRACE] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1964), + [anon_sym_auto] = ACTIONS(1964), + [anon_sym_register] = ACTIONS(1964), + [anon_sym_inline] = ACTIONS(1964), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1964), + [anon_sym_const] = ACTIONS(1964), + [anon_sym_volatile] = ACTIONS(1964), + [anon_sym_restrict] = ACTIONS(1964), + [anon_sym__Atomic] = ACTIONS(1964), + [anon_sym_in] = ACTIONS(1964), + [anon_sym_out] = ACTIONS(1964), + [anon_sym_inout] = ACTIONS(1964), + [anon_sym_bycopy] = ACTIONS(1964), + [anon_sym_byref] = ACTIONS(1964), + [anon_sym_oneway] = ACTIONS(1964), + [anon_sym__Nullable] = ACTIONS(1964), + [anon_sym__Nonnull] = ACTIONS(1964), + [anon_sym__Nullable_result] = ACTIONS(1964), + [anon_sym__Null_unspecified] = ACTIONS(1964), + [anon_sym___autoreleasing] = ACTIONS(1964), + [anon_sym___nullable] = ACTIONS(1964), + [anon_sym___nonnull] = ACTIONS(1964), + [anon_sym___strong] = ACTIONS(1964), + [anon_sym___weak] = ACTIONS(1964), + [anon_sym___bridge] = ACTIONS(1964), + [anon_sym___bridge_transfer] = ACTIONS(1964), + [anon_sym___bridge_retained] = ACTIONS(1964), + [anon_sym___unsafe_unretained] = ACTIONS(1964), + [anon_sym___block] = ACTIONS(1964), + [anon_sym___kindof] = ACTIONS(1964), + [anon_sym___unused] = ACTIONS(1964), + [anon_sym__Complex] = ACTIONS(1964), + [anon_sym___complex] = ACTIONS(1964), + [anon_sym_IBOutlet] = ACTIONS(1964), + [anon_sym_IBInspectable] = ACTIONS(1964), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1964), + [anon_sym_signed] = ACTIONS(1964), + [anon_sym_unsigned] = ACTIONS(1964), + [anon_sym_long] = ACTIONS(1964), + [anon_sym_short] = ACTIONS(1964), + [sym_primitive_type] = ACTIONS(1964), + [anon_sym_enum] = ACTIONS(1964), + [anon_sym_struct] = ACTIONS(1964), + [anon_sym_union] = ACTIONS(1964), + [anon_sym_if] = ACTIONS(1964), + [anon_sym_switch] = ACTIONS(1964), + [anon_sym_case] = ACTIONS(1964), + [anon_sym_default] = ACTIONS(1964), + [anon_sym_while] = ACTIONS(1964), + [anon_sym_do] = ACTIONS(1964), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1964), + [anon_sym_break] = ACTIONS(1964), + [anon_sym_continue] = ACTIONS(1964), + [anon_sym_goto] = ACTIONS(1964), + [anon_sym_DASH_DASH] = ACTIONS(1966), + [anon_sym_PLUS_PLUS] = ACTIONS(1966), + [anon_sym_sizeof] = ACTIONS(1964), + [sym_number_literal] = ACTIONS(1966), + [anon_sym_L_SQUOTE] = ACTIONS(1966), + [anon_sym_u_SQUOTE] = ACTIONS(1966), + [anon_sym_U_SQUOTE] = ACTIONS(1966), + [anon_sym_u8_SQUOTE] = ACTIONS(1966), + [anon_sym_SQUOTE] = ACTIONS(1966), + [anon_sym_L_DQUOTE] = ACTIONS(1966), + [anon_sym_u_DQUOTE] = ACTIONS(1966), + [anon_sym_U_DQUOTE] = ACTIONS(1966), + [anon_sym_u8_DQUOTE] = ACTIONS(1966), + [anon_sym_DQUOTE] = ACTIONS(1966), + [sym_true] = ACTIONS(1964), + [sym_false] = ACTIONS(1964), + [sym_null] = ACTIONS(1964), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1966), + [anon_sym_ATimport] = ACTIONS(1966), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1964), + [anon_sym_ATcompatibility_alias] = ACTIONS(1966), + [anon_sym_ATprotocol] = ACTIONS(1966), + [anon_sym_ATclass] = ACTIONS(1966), + [anon_sym_ATinterface] = ACTIONS(1966), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1964), + [sym_method_attribute_specifier] = ACTIONS(1964), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1964), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1964), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1964), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1964), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1964), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1964), + [anon_sym_NS_AVAILABLE] = ACTIONS(1964), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1964), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1964), + [anon_sym_API_AVAILABLE] = ACTIONS(1964), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1964), + [anon_sym_API_DEPRECATED] = ACTIONS(1964), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1964), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1964), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1964), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1964), + [anon_sym___deprecated_msg] = ACTIONS(1964), + [anon_sym___deprecated_enum_msg] = ACTIONS(1964), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1964), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1964), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1964), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1964), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1964), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1964), + [anon_sym_ATimplementation] = ACTIONS(1966), + [anon_sym_NS_ENUM] = ACTIONS(1964), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1964), + [anon_sym_NS_OPTIONS] = ACTIONS(1964), + [anon_sym_typeof] = ACTIONS(1964), + [anon_sym___typeof] = ACTIONS(1964), + [anon_sym___typeof__] = ACTIONS(1964), + [sym_self] = ACTIONS(1964), + [sym_super] = ACTIONS(1964), + [sym_nil] = ACTIONS(1964), + [sym_id] = ACTIONS(1964), + [sym_instancetype] = ACTIONS(1964), + [sym_Class] = ACTIONS(1964), + [sym_SEL] = ACTIONS(1964), + [sym_IMP] = ACTIONS(1964), + [sym_BOOL] = ACTIONS(1964), + [sym_auto] = ACTIONS(1964), + [anon_sym_ATautoreleasepool] = ACTIONS(1966), + [anon_sym_ATsynchronized] = ACTIONS(1966), + [anon_sym_ATtry] = ACTIONS(1966), + [anon_sym_ATthrow] = ACTIONS(1966), + [anon_sym_ATselector] = ACTIONS(1966), + [anon_sym_ATencode] = ACTIONS(1966), + [anon_sym_AT] = ACTIONS(1964), + [sym_YES] = ACTIONS(1964), + [sym_NO] = ACTIONS(1964), + [anon_sym___builtin_available] = ACTIONS(1964), + [anon_sym_ATavailable] = ACTIONS(1966), + [anon_sym_va_arg] = ACTIONS(1964), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1571] = { + [sym_identifier] = ACTIONS(1764), + [aux_sym_preproc_include_token1] = ACTIONS(1766), + [aux_sym_preproc_def_token1] = ACTIONS(1766), + [aux_sym_preproc_if_token1] = ACTIONS(1764), + [aux_sym_preproc_if_token2] = ACTIONS(1764), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1764), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1764), + [anon_sym_LPAREN2] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_typedef] = ACTIONS(1764), + [anon_sym_extern] = ACTIONS(1764), + [anon_sym___attribute] = ACTIONS(1764), + [anon_sym___attribute__] = ACTIONS(1764), + [anon_sym___declspec] = ACTIONS(1764), + [anon_sym___cdecl] = ACTIONS(1764), + [anon_sym___clrcall] = ACTIONS(1764), + [anon_sym___stdcall] = ACTIONS(1764), + [anon_sym___fastcall] = ACTIONS(1764), + [anon_sym___thiscall] = ACTIONS(1764), + [anon_sym___vectorcall] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_static] = ACTIONS(1764), + [anon_sym_auto] = ACTIONS(1764), + [anon_sym_register] = ACTIONS(1764), + [anon_sym_inline] = ACTIONS(1764), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1764), + [anon_sym_const] = ACTIONS(1764), + [anon_sym_volatile] = ACTIONS(1764), + [anon_sym_restrict] = ACTIONS(1764), + [anon_sym__Atomic] = ACTIONS(1764), + [anon_sym_in] = ACTIONS(1764), + [anon_sym_out] = ACTIONS(1764), + [anon_sym_inout] = ACTIONS(1764), + [anon_sym_bycopy] = ACTIONS(1764), + [anon_sym_byref] = ACTIONS(1764), + [anon_sym_oneway] = ACTIONS(1764), + [anon_sym__Nullable] = ACTIONS(1764), + [anon_sym__Nonnull] = ACTIONS(1764), + [anon_sym__Nullable_result] = ACTIONS(1764), + [anon_sym__Null_unspecified] = ACTIONS(1764), + [anon_sym___autoreleasing] = ACTIONS(1764), + [anon_sym___nullable] = ACTIONS(1764), + [anon_sym___nonnull] = ACTIONS(1764), + [anon_sym___strong] = ACTIONS(1764), + [anon_sym___weak] = ACTIONS(1764), + [anon_sym___bridge] = ACTIONS(1764), + [anon_sym___bridge_transfer] = ACTIONS(1764), + [anon_sym___bridge_retained] = ACTIONS(1764), + [anon_sym___unsafe_unretained] = ACTIONS(1764), + [anon_sym___block] = ACTIONS(1764), + [anon_sym___kindof] = ACTIONS(1764), + [anon_sym___unused] = ACTIONS(1764), + [anon_sym__Complex] = ACTIONS(1764), + [anon_sym___complex] = ACTIONS(1764), + [anon_sym_IBOutlet] = ACTIONS(1764), + [anon_sym_IBInspectable] = ACTIONS(1764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1764), + [anon_sym_signed] = ACTIONS(1764), + [anon_sym_unsigned] = ACTIONS(1764), + [anon_sym_long] = ACTIONS(1764), + [anon_sym_short] = ACTIONS(1764), + [sym_primitive_type] = ACTIONS(1764), + [anon_sym_enum] = ACTIONS(1764), + [anon_sym_struct] = ACTIONS(1764), + [anon_sym_union] = ACTIONS(1764), + [anon_sym_if] = ACTIONS(1764), + [anon_sym_switch] = ACTIONS(1764), + [anon_sym_case] = ACTIONS(1764), + [anon_sym_default] = ACTIONS(1764), + [anon_sym_while] = ACTIONS(1764), + [anon_sym_do] = ACTIONS(1764), + [anon_sym_for] = ACTIONS(1764), + [anon_sym_return] = ACTIONS(1764), + [anon_sym_break] = ACTIONS(1764), + [anon_sym_continue] = ACTIONS(1764), + [anon_sym_goto] = ACTIONS(1764), + [anon_sym_DASH_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1766), + [anon_sym_sizeof] = ACTIONS(1764), + [sym_number_literal] = ACTIONS(1766), + [anon_sym_L_SQUOTE] = ACTIONS(1766), + [anon_sym_u_SQUOTE] = ACTIONS(1766), + [anon_sym_U_SQUOTE] = ACTIONS(1766), + [anon_sym_u8_SQUOTE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_L_DQUOTE] = ACTIONS(1766), + [anon_sym_u_DQUOTE] = ACTIONS(1766), + [anon_sym_U_DQUOTE] = ACTIONS(1766), + [anon_sym_u8_DQUOTE] = ACTIONS(1766), + [anon_sym_DQUOTE] = ACTIONS(1766), + [sym_true] = ACTIONS(1764), + [sym_false] = ACTIONS(1764), + [sym_null] = ACTIONS(1764), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1766), + [anon_sym_ATimport] = ACTIONS(1766), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1764), + [anon_sym_ATcompatibility_alias] = ACTIONS(1766), + [anon_sym_ATprotocol] = ACTIONS(1766), + [anon_sym_ATclass] = ACTIONS(1766), + [anon_sym_ATinterface] = ACTIONS(1766), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1764), + [sym_method_attribute_specifier] = ACTIONS(1764), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1764), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1764), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1764), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1764), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1764), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1764), + [anon_sym_NS_AVAILABLE] = ACTIONS(1764), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1764), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1764), + [anon_sym_API_AVAILABLE] = ACTIONS(1764), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1764), + [anon_sym_API_DEPRECATED] = ACTIONS(1764), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1764), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1764), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1764), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1764), + [anon_sym___deprecated_msg] = ACTIONS(1764), + [anon_sym___deprecated_enum_msg] = ACTIONS(1764), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1764), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1764), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1764), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1764), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1764), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1764), + [anon_sym_ATimplementation] = ACTIONS(1766), + [anon_sym_NS_ENUM] = ACTIONS(1764), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1764), + [anon_sym_NS_OPTIONS] = ACTIONS(1764), + [anon_sym_typeof] = ACTIONS(1764), + [anon_sym___typeof] = ACTIONS(1764), + [anon_sym___typeof__] = ACTIONS(1764), + [sym_self] = ACTIONS(1764), + [sym_super] = ACTIONS(1764), + [sym_nil] = ACTIONS(1764), + [sym_id] = ACTIONS(1764), + [sym_instancetype] = ACTIONS(1764), + [sym_Class] = ACTIONS(1764), + [sym_SEL] = ACTIONS(1764), + [sym_IMP] = ACTIONS(1764), + [sym_BOOL] = ACTIONS(1764), + [sym_auto] = ACTIONS(1764), + [anon_sym_ATautoreleasepool] = ACTIONS(1766), + [anon_sym_ATsynchronized] = ACTIONS(1766), + [anon_sym_ATtry] = ACTIONS(1766), + [anon_sym_ATthrow] = ACTIONS(1766), + [anon_sym_ATselector] = ACTIONS(1766), + [anon_sym_ATencode] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1764), + [sym_YES] = ACTIONS(1764), + [sym_NO] = ACTIONS(1764), + [anon_sym___builtin_available] = ACTIONS(1764), + [anon_sym_ATavailable] = ACTIONS(1766), + [anon_sym_va_arg] = ACTIONS(1764), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1572] = { + [sym_identifier] = ACTIONS(1760), + [aux_sym_preproc_include_token1] = ACTIONS(1762), + [aux_sym_preproc_def_token1] = ACTIONS(1762), + [aux_sym_preproc_if_token1] = ACTIONS(1760), + [aux_sym_preproc_if_token2] = ACTIONS(1760), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1760), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_TILDE] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_CARET] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_typedef] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym___attribute] = ACTIONS(1760), + [anon_sym___attribute__] = ACTIONS(1760), + [anon_sym___declspec] = ACTIONS(1760), + [anon_sym___cdecl] = ACTIONS(1760), + [anon_sym___clrcall] = ACTIONS(1760), + [anon_sym___stdcall] = ACTIONS(1760), + [anon_sym___fastcall] = ACTIONS(1760), + [anon_sym___thiscall] = ACTIONS(1760), + [anon_sym___vectorcall] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_auto] = ACTIONS(1760), + [anon_sym_register] = ACTIONS(1760), + [anon_sym_inline] = ACTIONS(1760), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [anon_sym_volatile] = ACTIONS(1760), + [anon_sym_restrict] = ACTIONS(1760), + [anon_sym__Atomic] = ACTIONS(1760), + [anon_sym_in] = ACTIONS(1760), + [anon_sym_out] = ACTIONS(1760), + [anon_sym_inout] = ACTIONS(1760), + [anon_sym_bycopy] = ACTIONS(1760), + [anon_sym_byref] = ACTIONS(1760), + [anon_sym_oneway] = ACTIONS(1760), + [anon_sym__Nullable] = ACTIONS(1760), + [anon_sym__Nonnull] = ACTIONS(1760), + [anon_sym__Nullable_result] = ACTIONS(1760), + [anon_sym__Null_unspecified] = ACTIONS(1760), + [anon_sym___autoreleasing] = ACTIONS(1760), + [anon_sym___nullable] = ACTIONS(1760), + [anon_sym___nonnull] = ACTIONS(1760), + [anon_sym___strong] = ACTIONS(1760), + [anon_sym___weak] = ACTIONS(1760), + [anon_sym___bridge] = ACTIONS(1760), + [anon_sym___bridge_transfer] = ACTIONS(1760), + [anon_sym___bridge_retained] = ACTIONS(1760), + [anon_sym___unsafe_unretained] = ACTIONS(1760), + [anon_sym___block] = ACTIONS(1760), + [anon_sym___kindof] = ACTIONS(1760), + [anon_sym___unused] = ACTIONS(1760), + [anon_sym__Complex] = ACTIONS(1760), + [anon_sym___complex] = ACTIONS(1760), + [anon_sym_IBOutlet] = ACTIONS(1760), + [anon_sym_IBInspectable] = ACTIONS(1760), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1760), + [anon_sym_signed] = ACTIONS(1760), + [anon_sym_unsigned] = ACTIONS(1760), + [anon_sym_long] = ACTIONS(1760), + [anon_sym_short] = ACTIONS(1760), + [sym_primitive_type] = ACTIONS(1760), + [anon_sym_enum] = ACTIONS(1760), + [anon_sym_struct] = ACTIONS(1760), + [anon_sym_union] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_switch] = ACTIONS(1760), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_do] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_goto] = ACTIONS(1760), + [anon_sym_DASH_DASH] = ACTIONS(1762), + [anon_sym_PLUS_PLUS] = ACTIONS(1762), + [anon_sym_sizeof] = ACTIONS(1760), + [sym_number_literal] = ACTIONS(1762), + [anon_sym_L_SQUOTE] = ACTIONS(1762), + [anon_sym_u_SQUOTE] = ACTIONS(1762), + [anon_sym_U_SQUOTE] = ACTIONS(1762), + [anon_sym_u8_SQUOTE] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1762), + [anon_sym_L_DQUOTE] = ACTIONS(1762), + [anon_sym_u_DQUOTE] = ACTIONS(1762), + [anon_sym_U_DQUOTE] = ACTIONS(1762), + [anon_sym_u8_DQUOTE] = ACTIONS(1762), + [anon_sym_DQUOTE] = ACTIONS(1762), + [sym_true] = ACTIONS(1760), + [sym_false] = ACTIONS(1760), + [sym_null] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1762), + [anon_sym_ATimport] = ACTIONS(1762), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1760), + [anon_sym_ATcompatibility_alias] = ACTIONS(1762), + [anon_sym_ATprotocol] = ACTIONS(1762), + [anon_sym_ATclass] = ACTIONS(1762), + [anon_sym_ATinterface] = ACTIONS(1762), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1760), + [sym_method_attribute_specifier] = ACTIONS(1760), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1760), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1760), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1760), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1760), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1760), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1760), + [anon_sym_NS_AVAILABLE] = ACTIONS(1760), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1760), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1760), + [anon_sym_API_AVAILABLE] = ACTIONS(1760), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1760), + [anon_sym_API_DEPRECATED] = ACTIONS(1760), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1760), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1760), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1760), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1760), + [anon_sym___deprecated_msg] = ACTIONS(1760), + [anon_sym___deprecated_enum_msg] = ACTIONS(1760), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1760), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1760), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1760), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1760), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1760), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1760), + [anon_sym_ATimplementation] = ACTIONS(1762), + [anon_sym_NS_ENUM] = ACTIONS(1760), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1760), + [anon_sym_NS_OPTIONS] = ACTIONS(1760), + [anon_sym_typeof] = ACTIONS(1760), + [anon_sym___typeof] = ACTIONS(1760), + [anon_sym___typeof__] = ACTIONS(1760), + [sym_self] = ACTIONS(1760), + [sym_super] = ACTIONS(1760), + [sym_nil] = ACTIONS(1760), + [sym_id] = ACTIONS(1760), + [sym_instancetype] = ACTIONS(1760), + [sym_Class] = ACTIONS(1760), + [sym_SEL] = ACTIONS(1760), + [sym_IMP] = ACTIONS(1760), + [sym_BOOL] = ACTIONS(1760), + [sym_auto] = ACTIONS(1760), + [anon_sym_ATautoreleasepool] = ACTIONS(1762), + [anon_sym_ATsynchronized] = ACTIONS(1762), + [anon_sym_ATtry] = ACTIONS(1762), + [anon_sym_ATthrow] = ACTIONS(1762), + [anon_sym_ATselector] = ACTIONS(1762), + [anon_sym_ATencode] = ACTIONS(1762), + [anon_sym_AT] = ACTIONS(1760), + [sym_YES] = ACTIONS(1760), + [sym_NO] = ACTIONS(1760), + [anon_sym___builtin_available] = ACTIONS(1760), + [anon_sym_ATavailable] = ACTIONS(1762), + [anon_sym_va_arg] = ACTIONS(1760), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1573] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1574] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1575] = { + [sym_identifier] = ACTIONS(1756), + [aux_sym_preproc_include_token1] = ACTIONS(1758), + [aux_sym_preproc_def_token1] = ACTIONS(1758), + [aux_sym_preproc_if_token1] = ACTIONS(1756), + [aux_sym_preproc_if_token2] = ACTIONS(1756), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1756), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1756), + [anon_sym_LPAREN2] = ACTIONS(1758), + [anon_sym_BANG] = ACTIONS(1758), + [anon_sym_TILDE] = ACTIONS(1758), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1758), + [anon_sym_AMP] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_typedef] = ACTIONS(1756), + [anon_sym_extern] = ACTIONS(1756), + [anon_sym___attribute] = ACTIONS(1756), + [anon_sym___attribute__] = ACTIONS(1756), + [anon_sym___declspec] = ACTIONS(1756), + [anon_sym___cdecl] = ACTIONS(1756), + [anon_sym___clrcall] = ACTIONS(1756), + [anon_sym___stdcall] = ACTIONS(1756), + [anon_sym___fastcall] = ACTIONS(1756), + [anon_sym___thiscall] = ACTIONS(1756), + [anon_sym___vectorcall] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_static] = ACTIONS(1756), + [anon_sym_auto] = ACTIONS(1756), + [anon_sym_register] = ACTIONS(1756), + [anon_sym_inline] = ACTIONS(1756), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1756), + [anon_sym_volatile] = ACTIONS(1756), + [anon_sym_restrict] = ACTIONS(1756), + [anon_sym__Atomic] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1756), + [anon_sym_out] = ACTIONS(1756), + [anon_sym_inout] = ACTIONS(1756), + [anon_sym_bycopy] = ACTIONS(1756), + [anon_sym_byref] = ACTIONS(1756), + [anon_sym_oneway] = ACTIONS(1756), + [anon_sym__Nullable] = ACTIONS(1756), + [anon_sym__Nonnull] = ACTIONS(1756), + [anon_sym__Nullable_result] = ACTIONS(1756), + [anon_sym__Null_unspecified] = ACTIONS(1756), + [anon_sym___autoreleasing] = ACTIONS(1756), + [anon_sym___nullable] = ACTIONS(1756), + [anon_sym___nonnull] = ACTIONS(1756), + [anon_sym___strong] = ACTIONS(1756), + [anon_sym___weak] = ACTIONS(1756), + [anon_sym___bridge] = ACTIONS(1756), + [anon_sym___bridge_transfer] = ACTIONS(1756), + [anon_sym___bridge_retained] = ACTIONS(1756), + [anon_sym___unsafe_unretained] = ACTIONS(1756), + [anon_sym___block] = ACTIONS(1756), + [anon_sym___kindof] = ACTIONS(1756), + [anon_sym___unused] = ACTIONS(1756), + [anon_sym__Complex] = ACTIONS(1756), + [anon_sym___complex] = ACTIONS(1756), + [anon_sym_IBOutlet] = ACTIONS(1756), + [anon_sym_IBInspectable] = ACTIONS(1756), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1756), + [anon_sym_signed] = ACTIONS(1756), + [anon_sym_unsigned] = ACTIONS(1756), + [anon_sym_long] = ACTIONS(1756), + [anon_sym_short] = ACTIONS(1756), + [sym_primitive_type] = ACTIONS(1756), + [anon_sym_enum] = ACTIONS(1756), + [anon_sym_struct] = ACTIONS(1756), + [anon_sym_union] = ACTIONS(1756), + [anon_sym_if] = ACTIONS(1756), + [anon_sym_switch] = ACTIONS(1756), + [anon_sym_case] = ACTIONS(1756), + [anon_sym_default] = ACTIONS(1756), + [anon_sym_while] = ACTIONS(1756), + [anon_sym_do] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1756), + [anon_sym_return] = ACTIONS(1756), + [anon_sym_break] = ACTIONS(1756), + [anon_sym_continue] = ACTIONS(1756), + [anon_sym_goto] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1758), + [anon_sym_PLUS_PLUS] = ACTIONS(1758), + [anon_sym_sizeof] = ACTIONS(1756), + [sym_number_literal] = ACTIONS(1758), + [anon_sym_L_SQUOTE] = ACTIONS(1758), + [anon_sym_u_SQUOTE] = ACTIONS(1758), + [anon_sym_U_SQUOTE] = ACTIONS(1758), + [anon_sym_u8_SQUOTE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [anon_sym_L_DQUOTE] = ACTIONS(1758), + [anon_sym_u_DQUOTE] = ACTIONS(1758), + [anon_sym_U_DQUOTE] = ACTIONS(1758), + [anon_sym_u8_DQUOTE] = ACTIONS(1758), + [anon_sym_DQUOTE] = ACTIONS(1758), + [sym_true] = ACTIONS(1756), + [sym_false] = ACTIONS(1756), + [sym_null] = ACTIONS(1756), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1758), + [anon_sym_ATimport] = ACTIONS(1758), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1756), + [anon_sym_ATcompatibility_alias] = ACTIONS(1758), + [anon_sym_ATprotocol] = ACTIONS(1758), + [anon_sym_ATclass] = ACTIONS(1758), + [anon_sym_ATinterface] = ACTIONS(1758), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1756), + [sym_method_attribute_specifier] = ACTIONS(1756), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1756), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1756), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1756), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1756), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1756), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1756), + [anon_sym_NS_AVAILABLE] = ACTIONS(1756), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1756), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1756), + [anon_sym_API_AVAILABLE] = ACTIONS(1756), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1756), + [anon_sym_API_DEPRECATED] = ACTIONS(1756), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1756), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1756), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1756), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1756), + [anon_sym___deprecated_msg] = ACTIONS(1756), + [anon_sym___deprecated_enum_msg] = ACTIONS(1756), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1756), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1756), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1756), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1756), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1756), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1756), + [anon_sym_ATimplementation] = ACTIONS(1758), + [anon_sym_NS_ENUM] = ACTIONS(1756), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1756), + [anon_sym_NS_OPTIONS] = ACTIONS(1756), + [anon_sym_typeof] = ACTIONS(1756), + [anon_sym___typeof] = ACTIONS(1756), + [anon_sym___typeof__] = ACTIONS(1756), + [sym_self] = ACTIONS(1756), + [sym_super] = ACTIONS(1756), + [sym_nil] = ACTIONS(1756), + [sym_id] = ACTIONS(1756), + [sym_instancetype] = ACTIONS(1756), + [sym_Class] = ACTIONS(1756), + [sym_SEL] = ACTIONS(1756), + [sym_IMP] = ACTIONS(1756), + [sym_BOOL] = ACTIONS(1756), + [sym_auto] = ACTIONS(1756), + [anon_sym_ATautoreleasepool] = ACTIONS(1758), + [anon_sym_ATsynchronized] = ACTIONS(1758), + [anon_sym_ATtry] = ACTIONS(1758), + [anon_sym_ATthrow] = ACTIONS(1758), + [anon_sym_ATselector] = ACTIONS(1758), + [anon_sym_ATencode] = ACTIONS(1758), + [anon_sym_AT] = ACTIONS(1756), + [sym_YES] = ACTIONS(1756), + [sym_NO] = ACTIONS(1756), + [anon_sym___builtin_available] = ACTIONS(1756), + [anon_sym_ATavailable] = ACTIONS(1758), + [anon_sym_va_arg] = ACTIONS(1756), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1576] = { + [sym_identifier] = ACTIONS(1752), + [aux_sym_preproc_include_token1] = ACTIONS(1754), + [aux_sym_preproc_def_token1] = ACTIONS(1754), + [aux_sym_preproc_if_token1] = ACTIONS(1752), + [aux_sym_preproc_if_token2] = ACTIONS(1752), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1752), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1752), + [anon_sym_LPAREN2] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_CARET] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_typedef] = ACTIONS(1752), + [anon_sym_extern] = ACTIONS(1752), + [anon_sym___attribute] = ACTIONS(1752), + [anon_sym___attribute__] = ACTIONS(1752), + [anon_sym___declspec] = ACTIONS(1752), + [anon_sym___cdecl] = ACTIONS(1752), + [anon_sym___clrcall] = ACTIONS(1752), + [anon_sym___stdcall] = ACTIONS(1752), + [anon_sym___fastcall] = ACTIONS(1752), + [anon_sym___thiscall] = ACTIONS(1752), + [anon_sym___vectorcall] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1752), + [anon_sym_auto] = ACTIONS(1752), + [anon_sym_register] = ACTIONS(1752), + [anon_sym_inline] = ACTIONS(1752), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1752), + [anon_sym_const] = ACTIONS(1752), + [anon_sym_volatile] = ACTIONS(1752), + [anon_sym_restrict] = ACTIONS(1752), + [anon_sym__Atomic] = ACTIONS(1752), + [anon_sym_in] = ACTIONS(1752), + [anon_sym_out] = ACTIONS(1752), + [anon_sym_inout] = ACTIONS(1752), + [anon_sym_bycopy] = ACTIONS(1752), + [anon_sym_byref] = ACTIONS(1752), + [anon_sym_oneway] = ACTIONS(1752), + [anon_sym__Nullable] = ACTIONS(1752), + [anon_sym__Nonnull] = ACTIONS(1752), + [anon_sym__Nullable_result] = ACTIONS(1752), + [anon_sym__Null_unspecified] = ACTIONS(1752), + [anon_sym___autoreleasing] = ACTIONS(1752), + [anon_sym___nullable] = ACTIONS(1752), + [anon_sym___nonnull] = ACTIONS(1752), + [anon_sym___strong] = ACTIONS(1752), + [anon_sym___weak] = ACTIONS(1752), + [anon_sym___bridge] = ACTIONS(1752), + [anon_sym___bridge_transfer] = ACTIONS(1752), + [anon_sym___bridge_retained] = ACTIONS(1752), + [anon_sym___unsafe_unretained] = ACTIONS(1752), + [anon_sym___block] = ACTIONS(1752), + [anon_sym___kindof] = ACTIONS(1752), + [anon_sym___unused] = ACTIONS(1752), + [anon_sym__Complex] = ACTIONS(1752), + [anon_sym___complex] = ACTIONS(1752), + [anon_sym_IBOutlet] = ACTIONS(1752), + [anon_sym_IBInspectable] = ACTIONS(1752), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1752), + [anon_sym_signed] = ACTIONS(1752), + [anon_sym_unsigned] = ACTIONS(1752), + [anon_sym_long] = ACTIONS(1752), + [anon_sym_short] = ACTIONS(1752), + [sym_primitive_type] = ACTIONS(1752), + [anon_sym_enum] = ACTIONS(1752), + [anon_sym_struct] = ACTIONS(1752), + [anon_sym_union] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_switch] = ACTIONS(1752), + [anon_sym_case] = ACTIONS(1752), + [anon_sym_default] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_do] = ACTIONS(1752), + [anon_sym_for] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_goto] = ACTIONS(1752), + [anon_sym_DASH_DASH] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1754), + [anon_sym_sizeof] = ACTIONS(1752), + [sym_number_literal] = ACTIONS(1754), + [anon_sym_L_SQUOTE] = ACTIONS(1754), + [anon_sym_u_SQUOTE] = ACTIONS(1754), + [anon_sym_U_SQUOTE] = ACTIONS(1754), + [anon_sym_u8_SQUOTE] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1754), + [anon_sym_L_DQUOTE] = ACTIONS(1754), + [anon_sym_u_DQUOTE] = ACTIONS(1754), + [anon_sym_U_DQUOTE] = ACTIONS(1754), + [anon_sym_u8_DQUOTE] = ACTIONS(1754), + [anon_sym_DQUOTE] = ACTIONS(1754), + [sym_true] = ACTIONS(1752), + [sym_false] = ACTIONS(1752), + [sym_null] = ACTIONS(1752), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1754), + [anon_sym_ATimport] = ACTIONS(1754), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1752), + [anon_sym_ATcompatibility_alias] = ACTIONS(1754), + [anon_sym_ATprotocol] = ACTIONS(1754), + [anon_sym_ATclass] = ACTIONS(1754), + [anon_sym_ATinterface] = ACTIONS(1754), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1752), + [sym_method_attribute_specifier] = ACTIONS(1752), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1752), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1752), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1752), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1752), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1752), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1752), + [anon_sym_NS_AVAILABLE] = ACTIONS(1752), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1752), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1752), + [anon_sym_API_AVAILABLE] = ACTIONS(1752), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1752), + [anon_sym_API_DEPRECATED] = ACTIONS(1752), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1752), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1752), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1752), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1752), + [anon_sym___deprecated_msg] = ACTIONS(1752), + [anon_sym___deprecated_enum_msg] = ACTIONS(1752), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1752), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1752), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1752), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1752), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1752), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1752), + [anon_sym_ATimplementation] = ACTIONS(1754), + [anon_sym_NS_ENUM] = ACTIONS(1752), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1752), + [anon_sym_NS_OPTIONS] = ACTIONS(1752), + [anon_sym_typeof] = ACTIONS(1752), + [anon_sym___typeof] = ACTIONS(1752), + [anon_sym___typeof__] = ACTIONS(1752), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_nil] = ACTIONS(1752), + [sym_id] = ACTIONS(1752), + [sym_instancetype] = ACTIONS(1752), + [sym_Class] = ACTIONS(1752), + [sym_SEL] = ACTIONS(1752), + [sym_IMP] = ACTIONS(1752), + [sym_BOOL] = ACTIONS(1752), + [sym_auto] = ACTIONS(1752), + [anon_sym_ATautoreleasepool] = ACTIONS(1754), + [anon_sym_ATsynchronized] = ACTIONS(1754), + [anon_sym_ATtry] = ACTIONS(1754), + [anon_sym_ATthrow] = ACTIONS(1754), + [anon_sym_ATselector] = ACTIONS(1754), + [anon_sym_ATencode] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(1752), + [sym_YES] = ACTIONS(1752), + [sym_NO] = ACTIONS(1752), + [anon_sym___builtin_available] = ACTIONS(1752), + [anon_sym_ATavailable] = ACTIONS(1754), + [anon_sym_va_arg] = ACTIONS(1752), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1577] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1578] = { + [sym_identifier] = ACTIONS(1968), + [aux_sym_preproc_include_token1] = ACTIONS(1970), + [aux_sym_preproc_def_token1] = ACTIONS(1970), + [aux_sym_preproc_if_token1] = ACTIONS(1968), + [aux_sym_preproc_if_token2] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1968), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1968), + [anon_sym_LPAREN2] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_CARET] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym___attribute] = ACTIONS(1968), + [anon_sym___attribute__] = ACTIONS(1968), + [anon_sym___declspec] = ACTIONS(1968), + [anon_sym___cdecl] = ACTIONS(1968), + [anon_sym___clrcall] = ACTIONS(1968), + [anon_sym___stdcall] = ACTIONS(1968), + [anon_sym___fastcall] = ACTIONS(1968), + [anon_sym___thiscall] = ACTIONS(1968), + [anon_sym___vectorcall] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_auto] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_in] = ACTIONS(1968), + [anon_sym_out] = ACTIONS(1968), + [anon_sym_inout] = ACTIONS(1968), + [anon_sym_bycopy] = ACTIONS(1968), + [anon_sym_byref] = ACTIONS(1968), + [anon_sym_oneway] = ACTIONS(1968), + [anon_sym__Nullable] = ACTIONS(1968), + [anon_sym__Nonnull] = ACTIONS(1968), + [anon_sym__Nullable_result] = ACTIONS(1968), + [anon_sym__Null_unspecified] = ACTIONS(1968), + [anon_sym___autoreleasing] = ACTIONS(1968), + [anon_sym___nullable] = ACTIONS(1968), + [anon_sym___nonnull] = ACTIONS(1968), + [anon_sym___strong] = ACTIONS(1968), + [anon_sym___weak] = ACTIONS(1968), + [anon_sym___bridge] = ACTIONS(1968), + [anon_sym___bridge_transfer] = ACTIONS(1968), + [anon_sym___bridge_retained] = ACTIONS(1968), + [anon_sym___unsafe_unretained] = ACTIONS(1968), + [anon_sym___block] = ACTIONS(1968), + [anon_sym___kindof] = ACTIONS(1968), + [anon_sym___unused] = ACTIONS(1968), + [anon_sym__Complex] = ACTIONS(1968), + [anon_sym___complex] = ACTIONS(1968), + [anon_sym_IBOutlet] = ACTIONS(1968), + [anon_sym_IBInspectable] = ACTIONS(1968), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1968), + [anon_sym_signed] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_switch] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_goto] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1970), + [anon_sym_sizeof] = ACTIONS(1968), + [sym_number_literal] = ACTIONS(1970), + [anon_sym_L_SQUOTE] = ACTIONS(1970), + [anon_sym_u_SQUOTE] = ACTIONS(1970), + [anon_sym_U_SQUOTE] = ACTIONS(1970), + [anon_sym_u8_SQUOTE] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_L_DQUOTE] = ACTIONS(1970), + [anon_sym_u_DQUOTE] = ACTIONS(1970), + [anon_sym_U_DQUOTE] = ACTIONS(1970), + [anon_sym_u8_DQUOTE] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym_true] = ACTIONS(1968), + [sym_false] = ACTIONS(1968), + [sym_null] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_POUNDimport] = ACTIONS(1970), + [anon_sym_ATimport] = ACTIONS(1970), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1968), + [anon_sym_ATcompatibility_alias] = ACTIONS(1970), + [anon_sym_ATprotocol] = ACTIONS(1970), + [anon_sym_ATclass] = ACTIONS(1970), + [anon_sym_ATinterface] = ACTIONS(1970), + [sym_class_interface_attribute_sepcifier] = ACTIONS(1968), + [sym_method_attribute_specifier] = ACTIONS(1968), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1968), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1968), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE] = ACTIONS(1968), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1968), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_API_AVAILABLE] = ACTIONS(1968), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_API_DEPRECATED] = ACTIONS(1968), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1968), + [anon_sym___deprecated_msg] = ACTIONS(1968), + [anon_sym___deprecated_enum_msg] = ACTIONS(1968), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1968), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1968), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1968), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1968), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1968), + [anon_sym_ATimplementation] = ACTIONS(1970), + [anon_sym_NS_ENUM] = ACTIONS(1968), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1968), + [anon_sym_NS_OPTIONS] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1968), + [anon_sym___typeof] = ACTIONS(1968), + [anon_sym___typeof__] = ACTIONS(1968), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_nil] = ACTIONS(1968), + [sym_id] = ACTIONS(1968), + [sym_instancetype] = ACTIONS(1968), + [sym_Class] = ACTIONS(1968), + [sym_SEL] = ACTIONS(1968), + [sym_IMP] = ACTIONS(1968), + [sym_BOOL] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_ATautoreleasepool] = ACTIONS(1970), + [anon_sym_ATsynchronized] = ACTIONS(1970), + [anon_sym_ATtry] = ACTIONS(1970), + [anon_sym_ATthrow] = ACTIONS(1970), + [anon_sym_ATselector] = ACTIONS(1970), + [anon_sym_ATencode] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [sym_YES] = ACTIONS(1968), + [sym_NO] = ACTIONS(1968), + [anon_sym___builtin_available] = ACTIONS(1968), + [anon_sym_ATavailable] = ACTIONS(1970), + [anon_sym_va_arg] = ACTIONS(1968), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1579] = { + [sym__expression] = STATE(3196), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_initializer_list] = STATE(3289), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(2138), + [anon_sym_RPAREN] = ACTIONS(2138), [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(23), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(23), [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(6918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(2148), + [anon_sym_PERCENT] = ACTIONS(2138), + [anon_sym_PIPE_PIPE] = ACTIONS(2138), + [anon_sym_AMP_AMP] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2148), [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2146), + [anon_sym_EQ_EQ] = ACTIONS(2138), + [anon_sym_BANG_EQ] = ACTIONS(2138), + [anon_sym_GT] = ACTIONS(2148), + [anon_sym_GT_EQ] = ACTIONS(2138), + [anon_sym_LT_EQ] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2148), + [anon_sym_LT_LT] = ACTIONS(2138), + [anon_sym_GT_GT] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym___attribute] = ACTIONS(2148), + [anon_sym___attribute__] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(2138), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(6920), - [anon_sym_const] = ACTIONS(6922), - [anon_sym_volatile] = ACTIONS(6922), - [anon_sym_restrict] = ACTIONS(6922), - [anon_sym__Atomic] = ACTIONS(6922), - [anon_sym_in] = ACTIONS(6922), - [anon_sym_out] = ACTIONS(6922), - [anon_sym_inout] = ACTIONS(6922), - [anon_sym_bycopy] = ACTIONS(6922), - [anon_sym_byref] = ACTIONS(6922), - [anon_sym_oneway] = ACTIONS(6922), - [anon_sym__Nullable] = ACTIONS(6922), - [anon_sym__Nonnull] = ACTIONS(6922), - [anon_sym__Nullable_result] = ACTIONS(6922), - [anon_sym__Null_unspecified] = ACTIONS(6922), - [anon_sym___autoreleasing] = ACTIONS(6922), - [anon_sym___nullable] = ACTIONS(6922), - [anon_sym___nonnull] = ACTIONS(6922), - [anon_sym___strong] = ACTIONS(6922), - [anon_sym___weak] = ACTIONS(6922), - [anon_sym___bridge] = ACTIONS(6922), - [anon_sym___bridge_transfer] = ACTIONS(6922), - [anon_sym___bridge_retained] = ACTIONS(6922), - [anon_sym___unsafe_unretained] = ACTIONS(6922), - [anon_sym___block] = ACTIONS(6922), - [anon_sym___kindof] = ACTIONS(6922), - [anon_sym___unused] = ACTIONS(6922), - [anon_sym__Complex] = ACTIONS(6922), - [anon_sym___complex] = ACTIONS(6922), - [anon_sym_IBOutlet] = ACTIONS(6922), - [anon_sym_IBInspectable] = ACTIONS(6922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6922), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_volatile] = ACTIONS(2148), + [anon_sym_restrict] = ACTIONS(2148), + [anon_sym__Atomic] = ACTIONS(2148), + [anon_sym_in] = ACTIONS(2148), + [anon_sym_out] = ACTIONS(2148), + [anon_sym_inout] = ACTIONS(2148), + [anon_sym_bycopy] = ACTIONS(2148), + [anon_sym_byref] = ACTIONS(2148), + [anon_sym_oneway] = ACTIONS(2148), + [anon_sym__Nullable] = ACTIONS(2148), + [anon_sym__Nonnull] = ACTIONS(2148), + [anon_sym__Nullable_result] = ACTIONS(2148), + [anon_sym__Null_unspecified] = ACTIONS(2148), + [anon_sym___autoreleasing] = ACTIONS(2148), + [anon_sym___nullable] = ACTIONS(2148), + [anon_sym___nonnull] = ACTIONS(2148), + [anon_sym___strong] = ACTIONS(2148), + [anon_sym___weak] = ACTIONS(2148), + [anon_sym___bridge] = ACTIONS(2148), + [anon_sym___bridge_transfer] = ACTIONS(2148), + [anon_sym___bridge_retained] = ACTIONS(2148), + [anon_sym___unsafe_unretained] = ACTIONS(2148), + [anon_sym___block] = ACTIONS(2148), + [anon_sym___kindof] = ACTIONS(2148), + [anon_sym___unused] = ACTIONS(2148), + [anon_sym__Complex] = ACTIONS(2148), + [anon_sym___complex] = ACTIONS(2148), + [anon_sym_IBOutlet] = ACTIONS(2148), + [anon_sym_IBInspectable] = ACTIONS(2148), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2148), + [anon_sym_COLON] = ACTIONS(2138), + [anon_sym_QMARK] = ACTIONS(2138), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(2148), + [anon_sym_DASH_GT] = ACTIONS(2138), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), + [sym_method_attribute_specifier] = ACTIONS(2148), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2148), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2148), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2148), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2148), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2148), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2148), + [anon_sym_NS_AVAILABLE] = ACTIONS(2148), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2148), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2148), + [anon_sym_API_AVAILABLE] = ACTIONS(2148), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2148), + [anon_sym_API_DEPRECATED] = ACTIONS(2148), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2148), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2148), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2148), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2148), + [anon_sym___deprecated_msg] = ACTIONS(2148), + [anon_sym___deprecated_enum_msg] = ACTIONS(2148), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2148), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2148), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2148), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2148), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2148), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2148), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -478290,112 +300396,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2885] = { - [sym_identifier] = ACTIONS(2090), - [aux_sym_preproc_def_token1] = ACTIONS(2092), - [anon_sym_DASH] = ACTIONS(2092), - [anon_sym_PLUS] = ACTIONS(2092), - [anon_sym_typedef] = ACTIONS(2090), - [anon_sym_extern] = ACTIONS(2090), - [anon_sym___attribute] = ACTIONS(2090), - [anon_sym___attribute__] = ACTIONS(2090), - [anon_sym___declspec] = ACTIONS(2090), - [anon_sym___cdecl] = ACTIONS(2090), - [anon_sym___clrcall] = ACTIONS(2090), - [anon_sym___stdcall] = ACTIONS(2090), - [anon_sym___fastcall] = ACTIONS(2090), - [anon_sym___thiscall] = ACTIONS(2090), - [anon_sym___vectorcall] = ACTIONS(2090), - [anon_sym_static] = ACTIONS(2090), - [anon_sym_auto] = ACTIONS(2090), - [anon_sym_register] = ACTIONS(2090), - [anon_sym_inline] = ACTIONS(2090), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2090), - [anon_sym_volatile] = ACTIONS(2090), - [anon_sym_restrict] = ACTIONS(2090), - [anon_sym__Atomic] = ACTIONS(2090), - [anon_sym_in] = ACTIONS(2090), - [anon_sym_out] = ACTIONS(2090), - [anon_sym_inout] = ACTIONS(2090), - [anon_sym_bycopy] = ACTIONS(2090), - [anon_sym_byref] = ACTIONS(2090), - [anon_sym_oneway] = ACTIONS(2090), - [anon_sym__Nullable] = ACTIONS(2090), - [anon_sym__Nonnull] = ACTIONS(2090), - [anon_sym__Nullable_result] = ACTIONS(2090), - [anon_sym__Null_unspecified] = ACTIONS(2090), - [anon_sym___autoreleasing] = ACTIONS(2090), - [anon_sym___nullable] = ACTIONS(2090), - [anon_sym___nonnull] = ACTIONS(2090), - [anon_sym___strong] = ACTIONS(2090), - [anon_sym___weak] = ACTIONS(2090), - [anon_sym___bridge] = ACTIONS(2090), - [anon_sym___bridge_transfer] = ACTIONS(2090), - [anon_sym___bridge_retained] = ACTIONS(2090), - [anon_sym___unsafe_unretained] = ACTIONS(2090), - [anon_sym___block] = ACTIONS(2090), - [anon_sym___kindof] = ACTIONS(2090), - [anon_sym___unused] = ACTIONS(2090), - [anon_sym__Complex] = ACTIONS(2090), - [anon_sym___complex] = ACTIONS(2090), - [anon_sym_IBOutlet] = ACTIONS(2090), - [anon_sym_IBInspectable] = ACTIONS(2090), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2090), - [anon_sym_signed] = ACTIONS(2090), - [anon_sym_unsigned] = ACTIONS(2090), - [anon_sym_long] = ACTIONS(2090), - [anon_sym_short] = ACTIONS(2090), - [sym_primitive_type] = ACTIONS(2090), - [anon_sym_enum] = ACTIONS(2090), - [anon_sym_NS_ENUM] = ACTIONS(2090), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2090), - [anon_sym_NS_OPTIONS] = ACTIONS(2090), - [anon_sym_struct] = ACTIONS(2090), - [anon_sym_union] = ACTIONS(2090), + [1580] = { + [sym_preproc_def] = STATE(1640), + [sym_preproc_function_def] = STATE(1640), + [sym_function_definition] = STATE(1640), + [sym_declaration] = STATE(1640), + [sym_type_definition] = STATE(1640), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_superclass_reference] = STATE(1595), + [sym__instance_variables] = STATE(1676), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1640), + [sym_synthesize_definition] = STATE(1640), + [sym_dynamic_definition] = STATE(1640), + [sym_method_definition] = STATE(1640), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2090), - [anon_sym_ATend] = ACTIONS(2092), - [sym_optional] = ACTIONS(2092), - [sym_required] = ACTIONS(2092), - [anon_sym_ATproperty] = ACTIONS(2092), - [sym_method_attribute_specifier] = ACTIONS(2090), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2090), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2090), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2090), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2090), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2090), - [anon_sym_NS_AVAILABLE] = ACTIONS(2090), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2090), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_API_AVAILABLE] = ACTIONS(2090), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_API_DEPRECATED] = ACTIONS(2090), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2090), - [anon_sym___deprecated_msg] = ACTIONS(2090), - [anon_sym___deprecated_enum_msg] = ACTIONS(2090), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2090), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2090), - [anon_sym_ATsynthesize] = ACTIONS(2092), - [anon_sym_ATdynamic] = ACTIONS(2092), - [anon_sym_typeof] = ACTIONS(2090), - [anon_sym___typeof] = ACTIONS(2090), - [anon_sym___typeof__] = ACTIONS(2090), - [sym_id] = ACTIONS(2090), - [sym_instancetype] = ACTIONS(2090), - [sym_Class] = ACTIONS(2090), - [sym_SEL] = ACTIONS(2090), - [sym_IMP] = ACTIONS(2090), - [sym_BOOL] = ACTIONS(2090), - [sym_auto] = ACTIONS(2090), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2200), + [anon_sym_ATend] = ACTIONS(2202), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2204), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -478403,112 +300544,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2886] = { - [sym_identifier] = ACTIONS(1413), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym___attribute] = ACTIONS(1413), - [anon_sym___attribute__] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1413), - [anon_sym___cdecl] = ACTIONS(1413), - [anon_sym___clrcall] = ACTIONS(1413), - [anon_sym___stdcall] = ACTIONS(1413), - [anon_sym___fastcall] = ACTIONS(1413), - [anon_sym___thiscall] = ACTIONS(1413), - [anon_sym___vectorcall] = ACTIONS(1413), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_auto] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_inline] = ACTIONS(1413), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_volatile] = ACTIONS(1413), - [anon_sym_restrict] = ACTIONS(1413), - [anon_sym__Atomic] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_out] = ACTIONS(1413), - [anon_sym_inout] = ACTIONS(1413), - [anon_sym_bycopy] = ACTIONS(1413), - [anon_sym_byref] = ACTIONS(1413), - [anon_sym_oneway] = ACTIONS(1413), - [anon_sym__Nullable] = ACTIONS(1413), - [anon_sym__Nonnull] = ACTIONS(1413), - [anon_sym__Nullable_result] = ACTIONS(1413), - [anon_sym__Null_unspecified] = ACTIONS(1413), - [anon_sym___autoreleasing] = ACTIONS(1413), - [anon_sym___nullable] = ACTIONS(1413), - [anon_sym___nonnull] = ACTIONS(1413), - [anon_sym___strong] = ACTIONS(1413), - [anon_sym___weak] = ACTIONS(1413), - [anon_sym___bridge] = ACTIONS(1413), - [anon_sym___bridge_transfer] = ACTIONS(1413), - [anon_sym___bridge_retained] = ACTIONS(1413), - [anon_sym___unsafe_unretained] = ACTIONS(1413), - [anon_sym___block] = ACTIONS(1413), - [anon_sym___kindof] = ACTIONS(1413), - [anon_sym___unused] = ACTIONS(1413), - [anon_sym__Complex] = ACTIONS(1413), - [anon_sym___complex] = ACTIONS(1413), - [anon_sym_IBOutlet] = ACTIONS(1413), - [anon_sym_IBInspectable] = ACTIONS(1413), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1413), - [anon_sym_unsigned] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [sym_primitive_type] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_NS_ENUM] = ACTIONS(1413), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1413), - [anon_sym_NS_OPTIONS] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), + [1581] = { + [sym_preproc_def] = STATE(1653), + [sym_preproc_function_def] = STATE(1653), + [sym_function_definition] = STATE(1653), + [sym_declaration] = STATE(1653), + [sym_type_definition] = STATE(1653), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_superclass_reference] = STATE(1586), + [sym__instance_variables] = STATE(1706), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1653), + [sym_synthesize_definition] = STATE(1653), + [sym_dynamic_definition] = STATE(1653), + [sym_method_definition] = STATE(1653), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2210), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1413), - [anon_sym_ATend] = ACTIONS(1415), - [sym_optional] = ACTIONS(1415), - [sym_required] = ACTIONS(1415), - [anon_sym_ATproperty] = ACTIONS(1415), - [sym_method_attribute_specifier] = ACTIONS(1413), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1413), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE] = ACTIONS(1413), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_API_AVAILABLE] = ACTIONS(1413), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_API_DEPRECATED] = ACTIONS(1413), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1413), - [anon_sym___deprecated_msg] = ACTIONS(1413), - [anon_sym___deprecated_enum_msg] = ACTIONS(1413), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1413), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1413), - [anon_sym_ATsynthesize] = ACTIONS(1415), - [anon_sym_ATdynamic] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym___typeof] = ACTIONS(1413), - [anon_sym___typeof__] = ACTIONS(1413), - [sym_id] = ACTIONS(1413), - [sym_instancetype] = ACTIONS(1413), - [sym_Class] = ACTIONS(1413), - [sym_SEL] = ACTIONS(1413), - [sym_IMP] = ACTIONS(1413), - [sym_BOOL] = ACTIONS(1413), - [sym_auto] = ACTIONS(1413), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2212), + [anon_sym_ATend] = ACTIONS(2214), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2216), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -478516,27 +300692,155864 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2887] = { - [sym__declaration_specifiers] = STATE(4697), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_typedef] = ACTIONS(6904), + [1582] = { + [sym_preproc_def] = STATE(1691), + [sym_preproc_function_def] = STATE(1691), + [sym_function_definition] = STATE(1691), + [sym_declaration] = STATE(1691), + [sym_type_definition] = STATE(1691), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_superclass_reference] = STATE(1605), + [sym__instance_variables] = STATE(1705), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1691), + [sym_synthesize_definition] = STATE(1691), + [sym_dynamic_definition] = STATE(1691), + [sym_method_definition] = STATE(1691), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2220), + [anon_sym_ATend] = ACTIONS(2222), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2224), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1583] = { + [sym_preproc_def] = STATE(1665), + [sym_preproc_function_def] = STATE(1665), + [sym_function_definition] = STATE(1665), + [sym_declaration] = STATE(1665), + [sym_type_definition] = STATE(1665), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_superclass_reference] = STATE(1607), + [sym__instance_variables] = STATE(1669), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1665), + [sym_synthesize_definition] = STATE(1665), + [sym_dynamic_definition] = STATE(1665), + [sym_method_definition] = STATE(1665), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2228), + [anon_sym_ATend] = ACTIONS(2230), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2232), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1584] = { + [sym_preproc_def] = STATE(1719), + [sym_preproc_function_def] = STATE(1719), + [sym_function_definition] = STATE(1719), + [sym_declaration] = STATE(1719), + [sym_type_definition] = STATE(1719), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_superclass_reference] = STATE(1597), + [sym__instance_variables] = STATE(1718), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1719), + [sym_synthesize_definition] = STATE(1719), + [sym_dynamic_definition] = STATE(1719), + [sym_method_definition] = STATE(1719), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2236), + [anon_sym_ATend] = ACTIONS(2238), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2240), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1585] = { + [sym_preproc_def] = STATE(1646), + [sym_preproc_function_def] = STATE(1646), + [sym_function_definition] = STATE(1646), + [sym_declaration] = STATE(1646), + [sym_type_definition] = STATE(1646), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_superclass_reference] = STATE(1601), + [sym__instance_variables] = STATE(1645), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1646), + [sym_synthesize_definition] = STATE(1646), + [sym_dynamic_definition] = STATE(1646), + [sym_method_definition] = STATE(1646), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2244), + [anon_sym_ATend] = ACTIONS(2246), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2248), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1586] = { + [sym_preproc_def] = STATE(1696), + [sym_preproc_function_def] = STATE(1696), + [sym_function_definition] = STATE(1696), + [sym_declaration] = STATE(1696), + [sym_type_definition] = STATE(1696), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variables] = STATE(1692), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1696), + [sym_synthesize_definition] = STATE(1696), + [sym_dynamic_definition] = STATE(1696), + [sym_method_definition] = STATE(1696), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2250), + [anon_sym_ATend] = ACTIONS(2252), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2254), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1587] = { + [sym_preproc_def] = STATE(1661), + [sym_preproc_function_def] = STATE(1661), + [sym_function_definition] = STATE(1661), + [sym_declaration] = STATE(1661), + [sym_type_definition] = STATE(1661), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variables] = STATE(1660), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1661), + [sym_synthesize_definition] = STATE(1661), + [sym_dynamic_definition] = STATE(1661), + [sym_method_definition] = STATE(1661), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2256), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_auto] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_out] = ACTIONS(2256), + [anon_sym_inout] = ACTIONS(2256), + [anon_sym_bycopy] = ACTIONS(2256), + [anon_sym_byref] = ACTIONS(2256), + [anon_sym_oneway] = ACTIONS(2256), + [anon_sym__Nullable] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym__Nullable_result] = ACTIONS(2256), + [anon_sym__Null_unspecified] = ACTIONS(2256), + [anon_sym___autoreleasing] = ACTIONS(2256), + [anon_sym___nullable] = ACTIONS(2256), + [anon_sym___nonnull] = ACTIONS(2256), + [anon_sym___strong] = ACTIONS(2256), + [anon_sym___weak] = ACTIONS(2256), + [anon_sym___bridge] = ACTIONS(2256), + [anon_sym___bridge_transfer] = ACTIONS(2256), + [anon_sym___bridge_retained] = ACTIONS(2256), + [anon_sym___unsafe_unretained] = ACTIONS(2256), + [anon_sym___block] = ACTIONS(2256), + [anon_sym___kindof] = ACTIONS(2256), + [anon_sym___unused] = ACTIONS(2256), + [anon_sym__Complex] = ACTIONS(2256), + [anon_sym___complex] = ACTIONS(2256), + [anon_sym_IBOutlet] = ACTIONS(2256), + [anon_sym_IBInspectable] = ACTIONS(2256), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2256), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2258), + [anon_sym_ATend] = ACTIONS(2260), + [sym_method_attribute_specifier] = ACTIONS(2256), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2256), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE] = ACTIONS(2256), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_API_AVAILABLE] = ACTIONS(2256), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_API_DEPRECATED] = ACTIONS(2256), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2256), + [anon_sym___deprecated_msg] = ACTIONS(2256), + [anon_sym___deprecated_enum_msg] = ACTIONS(2256), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2256), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2256), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(2256), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2256), + [anon_sym_NS_OPTIONS] = ACTIONS(2256), + [anon_sym_typeof] = ACTIONS(2256), + [anon_sym___typeof] = ACTIONS(2256), + [anon_sym___typeof__] = ACTIONS(2256), + [sym_id] = ACTIONS(2256), + [sym_instancetype] = ACTIONS(2256), + [sym_Class] = ACTIONS(2256), + [sym_SEL] = ACTIONS(2256), + [sym_IMP] = ACTIONS(2256), + [sym_BOOL] = ACTIONS(2256), + [sym_auto] = ACTIONS(2256), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1588] = { + [sym_preproc_def] = STATE(2340), + [sym_preproc_function_def] = STATE(2340), + [sym_declaration] = STATE(2340), + [sym_type_definition] = STATE(2340), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2340), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1755), + [sym_protocol_qualifiers] = STATE(1953), + [sym_parameterized_class_type_arguments] = STATE(5111), + [sym__instance_variables] = STATE(2436), + [aux_sym__interface_declaration] = STATE(2340), + [sym__interface_declaration_specifier] = STATE(2340), + [sym_method_declaration] = STATE(2340), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2340), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2262), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2270), + [anon_sym_ATend] = ACTIONS(2272), + [sym_optional] = ACTIONS(2274), + [sym_required] = ACTIONS(2274), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1589] = { + [sym_preproc_def] = STATE(2287), + [sym_preproc_function_def] = STATE(2287), + [sym_declaration] = STATE(2287), + [sym_type_definition] = STATE(2287), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2287), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1747), + [sym_protocol_qualifiers] = STATE(1746), + [sym_parameterized_class_type_arguments] = STATE(1594), + [sym__instance_variables] = STATE(2289), + [aux_sym__interface_declaration] = STATE(2287), + [sym__interface_declaration_specifier] = STATE(2287), + [sym_method_declaration] = STATE(2287), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2287), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2278), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2280), + [anon_sym_ATend] = ACTIONS(2282), + [sym_optional] = ACTIONS(2284), + [sym_required] = ACTIONS(2284), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1590] = { + [sym_preproc_def] = STATE(2283), + [sym_preproc_function_def] = STATE(2283), + [sym_declaration] = STATE(2283), + [sym_type_definition] = STATE(2283), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2283), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1745), + [sym_protocol_qualifiers] = STATE(1860), + [sym_parameterized_class_type_arguments] = STATE(5203), + [sym__instance_variables] = STATE(2284), + [aux_sym__interface_declaration] = STATE(2283), + [sym__interface_declaration_specifier] = STATE(2283), + [sym_method_declaration] = STATE(2283), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2283), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2288), + [anon_sym_ATend] = ACTIONS(2290), + [sym_optional] = ACTIONS(2292), + [sym_required] = ACTIONS(2292), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1591] = { + [sym_preproc_def] = STATE(1723), + [sym_preproc_function_def] = STATE(1723), + [sym_function_definition] = STATE(1723), + [sym_declaration] = STATE(1723), + [sym_type_definition] = STATE(1723), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variables] = STATE(1722), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1723), + [sym_synthesize_definition] = STATE(1723), + [sym_dynamic_definition] = STATE(1723), + [sym_method_definition] = STATE(1723), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2256), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_auto] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_out] = ACTIONS(2256), + [anon_sym_inout] = ACTIONS(2256), + [anon_sym_bycopy] = ACTIONS(2256), + [anon_sym_byref] = ACTIONS(2256), + [anon_sym_oneway] = ACTIONS(2256), + [anon_sym__Nullable] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym__Nullable_result] = ACTIONS(2256), + [anon_sym__Null_unspecified] = ACTIONS(2256), + [anon_sym___autoreleasing] = ACTIONS(2256), + [anon_sym___nullable] = ACTIONS(2256), + [anon_sym___nonnull] = ACTIONS(2256), + [anon_sym___strong] = ACTIONS(2256), + [anon_sym___weak] = ACTIONS(2256), + [anon_sym___bridge] = ACTIONS(2256), + [anon_sym___bridge_transfer] = ACTIONS(2256), + [anon_sym___bridge_retained] = ACTIONS(2256), + [anon_sym___unsafe_unretained] = ACTIONS(2256), + [anon_sym___block] = ACTIONS(2256), + [anon_sym___kindof] = ACTIONS(2256), + [anon_sym___unused] = ACTIONS(2256), + [anon_sym__Complex] = ACTIONS(2256), + [anon_sym___complex] = ACTIONS(2256), + [anon_sym_IBOutlet] = ACTIONS(2256), + [anon_sym_IBInspectable] = ACTIONS(2256), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2256), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2294), + [anon_sym_ATend] = ACTIONS(2296), + [sym_method_attribute_specifier] = ACTIONS(2256), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2256), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE] = ACTIONS(2256), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_API_AVAILABLE] = ACTIONS(2256), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_API_DEPRECATED] = ACTIONS(2256), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2256), + [anon_sym___deprecated_msg] = ACTIONS(2256), + [anon_sym___deprecated_enum_msg] = ACTIONS(2256), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2256), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2256), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(2256), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2256), + [anon_sym_NS_OPTIONS] = ACTIONS(2256), + [anon_sym_typeof] = ACTIONS(2256), + [anon_sym___typeof] = ACTIONS(2256), + [anon_sym___typeof__] = ACTIONS(2256), + [sym_id] = ACTIONS(2256), + [sym_instancetype] = ACTIONS(2256), + [sym_Class] = ACTIONS(2256), + [sym_SEL] = ACTIONS(2256), + [sym_IMP] = ACTIONS(2256), + [sym_BOOL] = ACTIONS(2256), + [sym_auto] = ACTIONS(2256), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1592] = { + [sym_preproc_def] = STATE(2381), + [sym_preproc_function_def] = STATE(2381), + [sym_declaration] = STATE(2381), + [sym_type_definition] = STATE(2381), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2381), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1769), + [sym_protocol_qualifiers] = STATE(1754), + [sym_parameterized_class_type_arguments] = STATE(5136), + [sym__instance_variables] = STATE(2390), + [aux_sym__interface_declaration] = STATE(2381), + [sym__interface_declaration_specifier] = STATE(2381), + [sym_method_declaration] = STATE(2381), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2381), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2298), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2300), + [anon_sym_ATend] = ACTIONS(2302), + [sym_optional] = ACTIONS(2304), + [sym_required] = ACTIONS(2304), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1593] = { + [sym_preproc_def] = STATE(2468), + [sym_preproc_function_def] = STATE(2468), + [sym_declaration] = STATE(2468), + [sym_type_definition] = STATE(2468), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2468), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1757), + [sym_protocol_qualifiers] = STATE(1756), + [sym_parameterized_class_type_arguments] = STATE(1592), + [sym__instance_variables] = STATE(2474), + [aux_sym__interface_declaration] = STATE(2468), + [sym__interface_declaration_specifier] = STATE(2468), + [sym_method_declaration] = STATE(2468), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2468), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2306), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2308), + [anon_sym_ATend] = ACTIONS(2310), + [sym_optional] = ACTIONS(2312), + [sym_required] = ACTIONS(2312), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1594] = { + [sym_preproc_def] = STATE(2164), + [sym_preproc_function_def] = STATE(2164), + [sym_declaration] = STATE(2164), + [sym_type_definition] = STATE(2164), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2164), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1742), + [sym_protocol_qualifiers] = STATE(1741), + [sym_parameterized_class_type_arguments] = STATE(5187), + [sym__instance_variables] = STATE(2165), + [aux_sym__interface_declaration] = STATE(2164), + [sym__interface_declaration_specifier] = STATE(2164), + [sym_method_declaration] = STATE(2164), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2164), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2316), + [anon_sym_ATend] = ACTIONS(2318), + [sym_optional] = ACTIONS(2320), + [sym_required] = ACTIONS(2320), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1595] = { + [sym_preproc_def] = STATE(1700), + [sym_preproc_function_def] = STATE(1700), + [sym_function_definition] = STATE(1700), + [sym_declaration] = STATE(1700), + [sym_type_definition] = STATE(1700), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variables] = STATE(1695), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1700), + [sym_synthesize_definition] = STATE(1700), + [sym_dynamic_definition] = STATE(1700), + [sym_method_definition] = STATE(1700), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2322), + [anon_sym_ATend] = ACTIONS(2324), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2326), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1596] = { + [sym_preproc_def] = STATE(1688), + [sym_preproc_function_def] = STATE(1688), + [sym_function_definition] = STATE(1688), + [sym_declaration] = STATE(1688), + [sym_type_definition] = STATE(1688), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variables] = STATE(1685), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1688), + [sym_synthesize_definition] = STATE(1688), + [sym_dynamic_definition] = STATE(1688), + [sym_method_definition] = STATE(1688), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2256), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_auto] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_out] = ACTIONS(2256), + [anon_sym_inout] = ACTIONS(2256), + [anon_sym_bycopy] = ACTIONS(2256), + [anon_sym_byref] = ACTIONS(2256), + [anon_sym_oneway] = ACTIONS(2256), + [anon_sym__Nullable] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym__Nullable_result] = ACTIONS(2256), + [anon_sym__Null_unspecified] = ACTIONS(2256), + [anon_sym___autoreleasing] = ACTIONS(2256), + [anon_sym___nullable] = ACTIONS(2256), + [anon_sym___nonnull] = ACTIONS(2256), + [anon_sym___strong] = ACTIONS(2256), + [anon_sym___weak] = ACTIONS(2256), + [anon_sym___bridge] = ACTIONS(2256), + [anon_sym___bridge_transfer] = ACTIONS(2256), + [anon_sym___bridge_retained] = ACTIONS(2256), + [anon_sym___unsafe_unretained] = ACTIONS(2256), + [anon_sym___block] = ACTIONS(2256), + [anon_sym___kindof] = ACTIONS(2256), + [anon_sym___unused] = ACTIONS(2256), + [anon_sym__Complex] = ACTIONS(2256), + [anon_sym___complex] = ACTIONS(2256), + [anon_sym_IBOutlet] = ACTIONS(2256), + [anon_sym_IBInspectable] = ACTIONS(2256), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2256), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2328), + [anon_sym_ATend] = ACTIONS(2330), + [sym_method_attribute_specifier] = ACTIONS(2256), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2256), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE] = ACTIONS(2256), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_API_AVAILABLE] = ACTIONS(2256), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_API_DEPRECATED] = ACTIONS(2256), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2256), + [anon_sym___deprecated_msg] = ACTIONS(2256), + [anon_sym___deprecated_enum_msg] = ACTIONS(2256), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2256), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2256), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(2256), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2256), + [anon_sym_NS_OPTIONS] = ACTIONS(2256), + [anon_sym_typeof] = ACTIONS(2256), + [anon_sym___typeof] = ACTIONS(2256), + [anon_sym___typeof__] = ACTIONS(2256), + [sym_id] = ACTIONS(2256), + [sym_instancetype] = ACTIONS(2256), + [sym_Class] = ACTIONS(2256), + [sym_SEL] = ACTIONS(2256), + [sym_IMP] = ACTIONS(2256), + [sym_BOOL] = ACTIONS(2256), + [sym_auto] = ACTIONS(2256), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1597] = { + [sym_preproc_def] = STATE(1680), + [sym_preproc_function_def] = STATE(1680), + [sym_function_definition] = STATE(1680), + [sym_declaration] = STATE(1680), + [sym_type_definition] = STATE(1680), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variables] = STATE(1679), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1680), + [sym_synthesize_definition] = STATE(1680), + [sym_dynamic_definition] = STATE(1680), + [sym_method_definition] = STATE(1680), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2332), + [anon_sym_ATend] = ACTIONS(2334), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2336), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1598] = { + [sym_preproc_def] = STATE(2621), + [sym_preproc_function_def] = STATE(2621), + [sym_declaration] = STATE(2621), + [sym_type_definition] = STATE(2621), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2621), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1753), + [sym_protocol_qualifiers] = STATE(1768), + [sym_parameterized_class_type_arguments] = STATE(1604), + [sym__instance_variables] = STATE(2619), + [aux_sym__interface_declaration] = STATE(2621), + [sym__interface_declaration_specifier] = STATE(2621), + [sym_method_declaration] = STATE(2621), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2621), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2338), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2340), + [anon_sym_ATend] = ACTIONS(2342), + [sym_optional] = ACTIONS(2344), + [sym_required] = ACTIONS(2344), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1599] = { + [sym_preproc_def] = STATE(1703), + [sym_preproc_function_def] = STATE(1703), + [sym_function_definition] = STATE(1703), + [sym_declaration] = STATE(1703), + [sym_type_definition] = STATE(1703), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variables] = STATE(1704), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1703), + [sym_synthesize_definition] = STATE(1703), + [sym_dynamic_definition] = STATE(1703), + [sym_method_definition] = STATE(1703), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2256), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_auto] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_out] = ACTIONS(2256), + [anon_sym_inout] = ACTIONS(2256), + [anon_sym_bycopy] = ACTIONS(2256), + [anon_sym_byref] = ACTIONS(2256), + [anon_sym_oneway] = ACTIONS(2256), + [anon_sym__Nullable] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym__Nullable_result] = ACTIONS(2256), + [anon_sym__Null_unspecified] = ACTIONS(2256), + [anon_sym___autoreleasing] = ACTIONS(2256), + [anon_sym___nullable] = ACTIONS(2256), + [anon_sym___nonnull] = ACTIONS(2256), + [anon_sym___strong] = ACTIONS(2256), + [anon_sym___weak] = ACTIONS(2256), + [anon_sym___bridge] = ACTIONS(2256), + [anon_sym___bridge_transfer] = ACTIONS(2256), + [anon_sym___bridge_retained] = ACTIONS(2256), + [anon_sym___unsafe_unretained] = ACTIONS(2256), + [anon_sym___block] = ACTIONS(2256), + [anon_sym___kindof] = ACTIONS(2256), + [anon_sym___unused] = ACTIONS(2256), + [anon_sym__Complex] = ACTIONS(2256), + [anon_sym___complex] = ACTIONS(2256), + [anon_sym_IBOutlet] = ACTIONS(2256), + [anon_sym_IBInspectable] = ACTIONS(2256), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2256), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2346), + [anon_sym_ATend] = ACTIONS(2348), + [sym_method_attribute_specifier] = ACTIONS(2256), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2256), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE] = ACTIONS(2256), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_API_AVAILABLE] = ACTIONS(2256), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_API_DEPRECATED] = ACTIONS(2256), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2256), + [anon_sym___deprecated_msg] = ACTIONS(2256), + [anon_sym___deprecated_enum_msg] = ACTIONS(2256), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2256), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2256), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(2256), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2256), + [anon_sym_NS_OPTIONS] = ACTIONS(2256), + [anon_sym_typeof] = ACTIONS(2256), + [anon_sym___typeof] = ACTIONS(2256), + [anon_sym___typeof__] = ACTIONS(2256), + [sym_id] = ACTIONS(2256), + [sym_instancetype] = ACTIONS(2256), + [sym_Class] = ACTIONS(2256), + [sym_SEL] = ACTIONS(2256), + [sym_IMP] = ACTIONS(2256), + [sym_BOOL] = ACTIONS(2256), + [sym_auto] = ACTIONS(2256), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1600] = { + [sym_preproc_def] = STATE(1678), + [sym_preproc_function_def] = STATE(1678), + [sym_function_definition] = STATE(1678), + [sym_declaration] = STATE(1678), + [sym_type_definition] = STATE(1678), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variables] = STATE(1674), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1678), + [sym_synthesize_definition] = STATE(1678), + [sym_dynamic_definition] = STATE(1678), + [sym_method_definition] = STATE(1678), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2256), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_auto] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_out] = ACTIONS(2256), + [anon_sym_inout] = ACTIONS(2256), + [anon_sym_bycopy] = ACTIONS(2256), + [anon_sym_byref] = ACTIONS(2256), + [anon_sym_oneway] = ACTIONS(2256), + [anon_sym__Nullable] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym__Nullable_result] = ACTIONS(2256), + [anon_sym__Null_unspecified] = ACTIONS(2256), + [anon_sym___autoreleasing] = ACTIONS(2256), + [anon_sym___nullable] = ACTIONS(2256), + [anon_sym___nonnull] = ACTIONS(2256), + [anon_sym___strong] = ACTIONS(2256), + [anon_sym___weak] = ACTIONS(2256), + [anon_sym___bridge] = ACTIONS(2256), + [anon_sym___bridge_transfer] = ACTIONS(2256), + [anon_sym___bridge_retained] = ACTIONS(2256), + [anon_sym___unsafe_unretained] = ACTIONS(2256), + [anon_sym___block] = ACTIONS(2256), + [anon_sym___kindof] = ACTIONS(2256), + [anon_sym___unused] = ACTIONS(2256), + [anon_sym__Complex] = ACTIONS(2256), + [anon_sym___complex] = ACTIONS(2256), + [anon_sym_IBOutlet] = ACTIONS(2256), + [anon_sym_IBInspectable] = ACTIONS(2256), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2256), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2350), + [anon_sym_ATend] = ACTIONS(2352), + [sym_method_attribute_specifier] = ACTIONS(2256), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2256), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE] = ACTIONS(2256), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_API_AVAILABLE] = ACTIONS(2256), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_API_DEPRECATED] = ACTIONS(2256), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2256), + [anon_sym___deprecated_msg] = ACTIONS(2256), + [anon_sym___deprecated_enum_msg] = ACTIONS(2256), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2256), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2256), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(2256), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2256), + [anon_sym_NS_OPTIONS] = ACTIONS(2256), + [anon_sym_typeof] = ACTIONS(2256), + [anon_sym___typeof] = ACTIONS(2256), + [anon_sym___typeof__] = ACTIONS(2256), + [sym_id] = ACTIONS(2256), + [sym_instancetype] = ACTIONS(2256), + [sym_Class] = ACTIONS(2256), + [sym_SEL] = ACTIONS(2256), + [sym_IMP] = ACTIONS(2256), + [sym_BOOL] = ACTIONS(2256), + [sym_auto] = ACTIONS(2256), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1601] = { + [sym_preproc_def] = STATE(1686), + [sym_preproc_function_def] = STATE(1686), + [sym_function_definition] = STATE(1686), + [sym_declaration] = STATE(1686), + [sym_type_definition] = STATE(1686), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variables] = STATE(1690), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1686), + [sym_synthesize_definition] = STATE(1686), + [sym_dynamic_definition] = STATE(1686), + [sym_method_definition] = STATE(1686), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2354), + [anon_sym_ATend] = ACTIONS(2356), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2358), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1602] = { + [sym_preproc_def] = STATE(1717), + [sym_preproc_function_def] = STATE(1717), + [sym_function_definition] = STATE(1717), + [sym_declaration] = STATE(1717), + [sym_type_definition] = STATE(1717), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variables] = STATE(1716), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1717), + [sym_synthesize_definition] = STATE(1717), + [sym_dynamic_definition] = STATE(1717), + [sym_method_definition] = STATE(1717), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2256), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_auto] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_out] = ACTIONS(2256), + [anon_sym_inout] = ACTIONS(2256), + [anon_sym_bycopy] = ACTIONS(2256), + [anon_sym_byref] = ACTIONS(2256), + [anon_sym_oneway] = ACTIONS(2256), + [anon_sym__Nullable] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym__Nullable_result] = ACTIONS(2256), + [anon_sym__Null_unspecified] = ACTIONS(2256), + [anon_sym___autoreleasing] = ACTIONS(2256), + [anon_sym___nullable] = ACTIONS(2256), + [anon_sym___nonnull] = ACTIONS(2256), + [anon_sym___strong] = ACTIONS(2256), + [anon_sym___weak] = ACTIONS(2256), + [anon_sym___bridge] = ACTIONS(2256), + [anon_sym___bridge_transfer] = ACTIONS(2256), + [anon_sym___bridge_retained] = ACTIONS(2256), + [anon_sym___unsafe_unretained] = ACTIONS(2256), + [anon_sym___block] = ACTIONS(2256), + [anon_sym___kindof] = ACTIONS(2256), + [anon_sym___unused] = ACTIONS(2256), + [anon_sym__Complex] = ACTIONS(2256), + [anon_sym___complex] = ACTIONS(2256), + [anon_sym_IBOutlet] = ACTIONS(2256), + [anon_sym_IBInspectable] = ACTIONS(2256), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2256), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2360), + [anon_sym_ATend] = ACTIONS(2362), + [sym_method_attribute_specifier] = ACTIONS(2256), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2256), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE] = ACTIONS(2256), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_API_AVAILABLE] = ACTIONS(2256), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_API_DEPRECATED] = ACTIONS(2256), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2256), + [anon_sym___deprecated_msg] = ACTIONS(2256), + [anon_sym___deprecated_enum_msg] = ACTIONS(2256), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2256), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2256), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(2256), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2256), + [anon_sym_NS_OPTIONS] = ACTIONS(2256), + [anon_sym_typeof] = ACTIONS(2256), + [anon_sym___typeof] = ACTIONS(2256), + [anon_sym___typeof__] = ACTIONS(2256), + [sym_id] = ACTIONS(2256), + [sym_instancetype] = ACTIONS(2256), + [sym_Class] = ACTIONS(2256), + [sym_SEL] = ACTIONS(2256), + [sym_IMP] = ACTIONS(2256), + [sym_BOOL] = ACTIONS(2256), + [sym_auto] = ACTIONS(2256), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1603] = { + [sym_preproc_def] = STATE(1659), + [sym_preproc_function_def] = STATE(1659), + [sym_function_definition] = STATE(1659), + [sym_declaration] = STATE(1659), + [sym_type_definition] = STATE(1659), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variables] = STATE(1657), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1659), + [sym_synthesize_definition] = STATE(1659), + [sym_dynamic_definition] = STATE(1659), + [sym_method_definition] = STATE(1659), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2256), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_auto] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_out] = ACTIONS(2256), + [anon_sym_inout] = ACTIONS(2256), + [anon_sym_bycopy] = ACTIONS(2256), + [anon_sym_byref] = ACTIONS(2256), + [anon_sym_oneway] = ACTIONS(2256), + [anon_sym__Nullable] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym__Nullable_result] = ACTIONS(2256), + [anon_sym__Null_unspecified] = ACTIONS(2256), + [anon_sym___autoreleasing] = ACTIONS(2256), + [anon_sym___nullable] = ACTIONS(2256), + [anon_sym___nonnull] = ACTIONS(2256), + [anon_sym___strong] = ACTIONS(2256), + [anon_sym___weak] = ACTIONS(2256), + [anon_sym___bridge] = ACTIONS(2256), + [anon_sym___bridge_transfer] = ACTIONS(2256), + [anon_sym___bridge_retained] = ACTIONS(2256), + [anon_sym___unsafe_unretained] = ACTIONS(2256), + [anon_sym___block] = ACTIONS(2256), + [anon_sym___kindof] = ACTIONS(2256), + [anon_sym___unused] = ACTIONS(2256), + [anon_sym__Complex] = ACTIONS(2256), + [anon_sym___complex] = ACTIONS(2256), + [anon_sym_IBOutlet] = ACTIONS(2256), + [anon_sym_IBInspectable] = ACTIONS(2256), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2256), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2364), + [anon_sym_ATend] = ACTIONS(2366), + [sym_method_attribute_specifier] = ACTIONS(2256), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2256), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE] = ACTIONS(2256), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_API_AVAILABLE] = ACTIONS(2256), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_API_DEPRECATED] = ACTIONS(2256), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2256), + [anon_sym___deprecated_msg] = ACTIONS(2256), + [anon_sym___deprecated_enum_msg] = ACTIONS(2256), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2256), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2256), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(2256), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2256), + [anon_sym_NS_OPTIONS] = ACTIONS(2256), + [anon_sym_typeof] = ACTIONS(2256), + [anon_sym___typeof] = ACTIONS(2256), + [anon_sym___typeof__] = ACTIONS(2256), + [sym_id] = ACTIONS(2256), + [sym_instancetype] = ACTIONS(2256), + [sym_Class] = ACTIONS(2256), + [sym_SEL] = ACTIONS(2256), + [sym_IMP] = ACTIONS(2256), + [sym_BOOL] = ACTIONS(2256), + [sym_auto] = ACTIONS(2256), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1604] = { + [sym_preproc_def] = STATE(2185), + [sym_preproc_function_def] = STATE(2185), + [sym_declaration] = STATE(2185), + [sym_type_definition] = STATE(2185), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2185), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1740), + [sym_protocol_qualifiers] = STATE(1739), + [sym_parameterized_class_type_arguments] = STATE(5216), + [sym__instance_variables] = STATE(2227), + [aux_sym__interface_declaration] = STATE(2185), + [sym__interface_declaration_specifier] = STATE(2185), + [sym_method_declaration] = STATE(2185), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2185), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2370), + [anon_sym_ATend] = ACTIONS(2372), + [sym_optional] = ACTIONS(2374), + [sym_required] = ACTIONS(2374), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1605] = { + [sym_preproc_def] = STATE(1698), + [sym_preproc_function_def] = STATE(1698), + [sym_function_definition] = STATE(1698), + [sym_declaration] = STATE(1698), + [sym_type_definition] = STATE(1698), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variables] = STATE(1697), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1698), + [sym_synthesize_definition] = STATE(1698), + [sym_dynamic_definition] = STATE(1698), + [sym_method_definition] = STATE(1698), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2376), + [anon_sym_ATend] = ACTIONS(2378), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2380), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1606] = { + [sym_preproc_def] = STATE(2627), + [sym_preproc_function_def] = STATE(2627), + [sym_declaration] = STATE(2627), + [sym_type_definition] = STATE(2627), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2627), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1766), + [sym_protocol_qualifiers] = STATE(1821), + [sym_parameterized_class_type_arguments] = STATE(5223), + [sym__instance_variables] = STATE(2625), + [aux_sym__interface_declaration] = STATE(2627), + [sym__interface_declaration_specifier] = STATE(2627), + [sym_method_declaration] = STATE(2627), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2627), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2382), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2384), + [anon_sym_ATend] = ACTIONS(2386), + [sym_optional] = ACTIONS(2388), + [sym_required] = ACTIONS(2388), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1607] = { + [sym_preproc_def] = STATE(1710), + [sym_preproc_function_def] = STATE(1710), + [sym_function_definition] = STATE(1710), + [sym_declaration] = STATE(1710), + [sym_type_definition] = STATE(1710), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variables] = STATE(1709), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1710), + [sym_synthesize_definition] = STATE(1710), + [sym_dynamic_definition] = STATE(1710), + [sym_method_definition] = STATE(1710), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2390), + [anon_sym_ATend] = ACTIONS(2392), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2394), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1608] = { + [sym_preproc_def] = STATE(1694), + [sym_preproc_function_def] = STATE(1694), + [sym_function_definition] = STATE(1694), + [sym_declaration] = STATE(1694), + [sym_type_definition] = STATE(1694), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variables] = STATE(1693), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1694), + [sym_synthesize_definition] = STATE(1694), + [sym_dynamic_definition] = STATE(1694), + [sym_method_definition] = STATE(1694), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2256), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_auto] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_out] = ACTIONS(2256), + [anon_sym_inout] = ACTIONS(2256), + [anon_sym_bycopy] = ACTIONS(2256), + [anon_sym_byref] = ACTIONS(2256), + [anon_sym_oneway] = ACTIONS(2256), + [anon_sym__Nullable] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym__Nullable_result] = ACTIONS(2256), + [anon_sym__Null_unspecified] = ACTIONS(2256), + [anon_sym___autoreleasing] = ACTIONS(2256), + [anon_sym___nullable] = ACTIONS(2256), + [anon_sym___nonnull] = ACTIONS(2256), + [anon_sym___strong] = ACTIONS(2256), + [anon_sym___weak] = ACTIONS(2256), + [anon_sym___bridge] = ACTIONS(2256), + [anon_sym___bridge_transfer] = ACTIONS(2256), + [anon_sym___bridge_retained] = ACTIONS(2256), + [anon_sym___unsafe_unretained] = ACTIONS(2256), + [anon_sym___block] = ACTIONS(2256), + [anon_sym___kindof] = ACTIONS(2256), + [anon_sym___unused] = ACTIONS(2256), + [anon_sym__Complex] = ACTIONS(2256), + [anon_sym___complex] = ACTIONS(2256), + [anon_sym_IBOutlet] = ACTIONS(2256), + [anon_sym_IBInspectable] = ACTIONS(2256), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2256), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2396), + [anon_sym_ATend] = ACTIONS(2398), + [sym_method_attribute_specifier] = ACTIONS(2256), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2256), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE] = ACTIONS(2256), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_API_AVAILABLE] = ACTIONS(2256), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_API_DEPRECATED] = ACTIONS(2256), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2256), + [anon_sym___deprecated_msg] = ACTIONS(2256), + [anon_sym___deprecated_enum_msg] = ACTIONS(2256), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2256), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2256), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(2256), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2256), + [anon_sym_NS_OPTIONS] = ACTIONS(2256), + [anon_sym_typeof] = ACTIONS(2256), + [anon_sym___typeof] = ACTIONS(2256), + [anon_sym___typeof__] = ACTIONS(2256), + [sym_id] = ACTIONS(2256), + [sym_instancetype] = ACTIONS(2256), + [sym_Class] = ACTIONS(2256), + [sym_SEL] = ACTIONS(2256), + [sym_IMP] = ACTIONS(2256), + [sym_BOOL] = ACTIONS(2256), + [sym_auto] = ACTIONS(2256), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1609] = { + [sym_preproc_def] = STATE(1689), + [sym_preproc_function_def] = STATE(1689), + [sym_function_definition] = STATE(1689), + [sym_declaration] = STATE(1689), + [sym_type_definition] = STATE(1689), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variables] = STATE(1687), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1689), + [sym_synthesize_definition] = STATE(1689), + [sym_dynamic_definition] = STATE(1689), + [sym_method_definition] = STATE(1689), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2256), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_auto] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_out] = ACTIONS(2256), + [anon_sym_inout] = ACTIONS(2256), + [anon_sym_bycopy] = ACTIONS(2256), + [anon_sym_byref] = ACTIONS(2256), + [anon_sym_oneway] = ACTIONS(2256), + [anon_sym__Nullable] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym__Nullable_result] = ACTIONS(2256), + [anon_sym__Null_unspecified] = ACTIONS(2256), + [anon_sym___autoreleasing] = ACTIONS(2256), + [anon_sym___nullable] = ACTIONS(2256), + [anon_sym___nonnull] = ACTIONS(2256), + [anon_sym___strong] = ACTIONS(2256), + [anon_sym___weak] = ACTIONS(2256), + [anon_sym___bridge] = ACTIONS(2256), + [anon_sym___bridge_transfer] = ACTIONS(2256), + [anon_sym___bridge_retained] = ACTIONS(2256), + [anon_sym___unsafe_unretained] = ACTIONS(2256), + [anon_sym___block] = ACTIONS(2256), + [anon_sym___kindof] = ACTIONS(2256), + [anon_sym___unused] = ACTIONS(2256), + [anon_sym__Complex] = ACTIONS(2256), + [anon_sym___complex] = ACTIONS(2256), + [anon_sym_IBOutlet] = ACTIONS(2256), + [anon_sym_IBInspectable] = ACTIONS(2256), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2256), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2400), + [anon_sym_ATend] = ACTIONS(2402), + [sym_method_attribute_specifier] = ACTIONS(2256), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2256), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE] = ACTIONS(2256), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_API_AVAILABLE] = ACTIONS(2256), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_API_DEPRECATED] = ACTIONS(2256), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2256), + [anon_sym___deprecated_msg] = ACTIONS(2256), + [anon_sym___deprecated_enum_msg] = ACTIONS(2256), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2256), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2256), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(2256), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2256), + [anon_sym_NS_OPTIONS] = ACTIONS(2256), + [anon_sym_typeof] = ACTIONS(2256), + [anon_sym___typeof] = ACTIONS(2256), + [anon_sym___typeof__] = ACTIONS(2256), + [sym_id] = ACTIONS(2256), + [sym_instancetype] = ACTIONS(2256), + [sym_Class] = ACTIONS(2256), + [sym_SEL] = ACTIONS(2256), + [sym_IMP] = ACTIONS(2256), + [sym_BOOL] = ACTIONS(2256), + [sym_auto] = ACTIONS(2256), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1610] = { + [sym_preproc_def] = STATE(1708), + [sym_preproc_function_def] = STATE(1708), + [sym_function_definition] = STATE(1708), + [sym_declaration] = STATE(1708), + [sym_type_definition] = STATE(1708), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variables] = STATE(1707), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1708), + [sym_synthesize_definition] = STATE(1708), + [sym_dynamic_definition] = STATE(1708), + [sym_method_definition] = STATE(1708), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2256), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_auto] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_out] = ACTIONS(2256), + [anon_sym_inout] = ACTIONS(2256), + [anon_sym_bycopy] = ACTIONS(2256), + [anon_sym_byref] = ACTIONS(2256), + [anon_sym_oneway] = ACTIONS(2256), + [anon_sym__Nullable] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym__Nullable_result] = ACTIONS(2256), + [anon_sym__Null_unspecified] = ACTIONS(2256), + [anon_sym___autoreleasing] = ACTIONS(2256), + [anon_sym___nullable] = ACTIONS(2256), + [anon_sym___nonnull] = ACTIONS(2256), + [anon_sym___strong] = ACTIONS(2256), + [anon_sym___weak] = ACTIONS(2256), + [anon_sym___bridge] = ACTIONS(2256), + [anon_sym___bridge_transfer] = ACTIONS(2256), + [anon_sym___bridge_retained] = ACTIONS(2256), + [anon_sym___unsafe_unretained] = ACTIONS(2256), + [anon_sym___block] = ACTIONS(2256), + [anon_sym___kindof] = ACTIONS(2256), + [anon_sym___unused] = ACTIONS(2256), + [anon_sym__Complex] = ACTIONS(2256), + [anon_sym___complex] = ACTIONS(2256), + [anon_sym_IBOutlet] = ACTIONS(2256), + [anon_sym_IBInspectable] = ACTIONS(2256), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2256), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2404), + [anon_sym_ATend] = ACTIONS(2406), + [sym_method_attribute_specifier] = ACTIONS(2256), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2256), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE] = ACTIONS(2256), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_API_AVAILABLE] = ACTIONS(2256), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_API_DEPRECATED] = ACTIONS(2256), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2256), + [anon_sym___deprecated_msg] = ACTIONS(2256), + [anon_sym___deprecated_enum_msg] = ACTIONS(2256), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2256), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2256), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(2256), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2256), + [anon_sym_NS_OPTIONS] = ACTIONS(2256), + [anon_sym_typeof] = ACTIONS(2256), + [anon_sym___typeof] = ACTIONS(2256), + [anon_sym___typeof__] = ACTIONS(2256), + [sym_id] = ACTIONS(2256), + [sym_instancetype] = ACTIONS(2256), + [sym_Class] = ACTIONS(2256), + [sym_SEL] = ACTIONS(2256), + [sym_IMP] = ACTIONS(2256), + [sym_BOOL] = ACTIONS(2256), + [sym_auto] = ACTIONS(2256), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1611] = { + [sym_preproc_def] = STATE(1673), + [sym_preproc_function_def] = STATE(1673), + [sym_function_definition] = STATE(1673), + [sym_declaration] = STATE(1673), + [sym_type_definition] = STATE(1673), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variables] = STATE(1672), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1673), + [sym_synthesize_definition] = STATE(1673), + [sym_dynamic_definition] = STATE(1673), + [sym_method_definition] = STATE(1673), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2256), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_auto] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_out] = ACTIONS(2256), + [anon_sym_inout] = ACTIONS(2256), + [anon_sym_bycopy] = ACTIONS(2256), + [anon_sym_byref] = ACTIONS(2256), + [anon_sym_oneway] = ACTIONS(2256), + [anon_sym__Nullable] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym__Nullable_result] = ACTIONS(2256), + [anon_sym__Null_unspecified] = ACTIONS(2256), + [anon_sym___autoreleasing] = ACTIONS(2256), + [anon_sym___nullable] = ACTIONS(2256), + [anon_sym___nonnull] = ACTIONS(2256), + [anon_sym___strong] = ACTIONS(2256), + [anon_sym___weak] = ACTIONS(2256), + [anon_sym___bridge] = ACTIONS(2256), + [anon_sym___bridge_transfer] = ACTIONS(2256), + [anon_sym___bridge_retained] = ACTIONS(2256), + [anon_sym___unsafe_unretained] = ACTIONS(2256), + [anon_sym___block] = ACTIONS(2256), + [anon_sym___kindof] = ACTIONS(2256), + [anon_sym___unused] = ACTIONS(2256), + [anon_sym__Complex] = ACTIONS(2256), + [anon_sym___complex] = ACTIONS(2256), + [anon_sym_IBOutlet] = ACTIONS(2256), + [anon_sym_IBInspectable] = ACTIONS(2256), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2256), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2408), + [anon_sym_ATend] = ACTIONS(2410), + [sym_method_attribute_specifier] = ACTIONS(2256), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2256), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE] = ACTIONS(2256), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_API_AVAILABLE] = ACTIONS(2256), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_API_DEPRECATED] = ACTIONS(2256), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2256), + [anon_sym___deprecated_msg] = ACTIONS(2256), + [anon_sym___deprecated_enum_msg] = ACTIONS(2256), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2256), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2256), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(2256), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2256), + [anon_sym_NS_OPTIONS] = ACTIONS(2256), + [anon_sym_typeof] = ACTIONS(2256), + [anon_sym___typeof] = ACTIONS(2256), + [anon_sym___typeof__] = ACTIONS(2256), + [sym_id] = ACTIONS(2256), + [sym_instancetype] = ACTIONS(2256), + [sym_Class] = ACTIONS(2256), + [sym_SEL] = ACTIONS(2256), + [sym_IMP] = ACTIONS(2256), + [sym_BOOL] = ACTIONS(2256), + [sym_auto] = ACTIONS(2256), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1612] = { + [sym_preproc_def] = STATE(1683), + [sym_preproc_function_def] = STATE(1683), + [sym_function_definition] = STATE(1683), + [sym_declaration] = STATE(1683), + [sym_type_definition] = STATE(1683), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variables] = STATE(1642), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1683), + [sym_synthesize_definition] = STATE(1683), + [sym_dynamic_definition] = STATE(1683), + [sym_method_definition] = STATE(1683), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2256), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_auto] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_out] = ACTIONS(2256), + [anon_sym_inout] = ACTIONS(2256), + [anon_sym_bycopy] = ACTIONS(2256), + [anon_sym_byref] = ACTIONS(2256), + [anon_sym_oneway] = ACTIONS(2256), + [anon_sym__Nullable] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym__Nullable_result] = ACTIONS(2256), + [anon_sym__Null_unspecified] = ACTIONS(2256), + [anon_sym___autoreleasing] = ACTIONS(2256), + [anon_sym___nullable] = ACTIONS(2256), + [anon_sym___nonnull] = ACTIONS(2256), + [anon_sym___strong] = ACTIONS(2256), + [anon_sym___weak] = ACTIONS(2256), + [anon_sym___bridge] = ACTIONS(2256), + [anon_sym___bridge_transfer] = ACTIONS(2256), + [anon_sym___bridge_retained] = ACTIONS(2256), + [anon_sym___unsafe_unretained] = ACTIONS(2256), + [anon_sym___block] = ACTIONS(2256), + [anon_sym___kindof] = ACTIONS(2256), + [anon_sym___unused] = ACTIONS(2256), + [anon_sym__Complex] = ACTIONS(2256), + [anon_sym___complex] = ACTIONS(2256), + [anon_sym_IBOutlet] = ACTIONS(2256), + [anon_sym_IBInspectable] = ACTIONS(2256), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2256), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2412), + [anon_sym_ATend] = ACTIONS(2414), + [sym_method_attribute_specifier] = ACTIONS(2256), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2256), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE] = ACTIONS(2256), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_API_AVAILABLE] = ACTIONS(2256), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_API_DEPRECATED] = ACTIONS(2256), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2256), + [anon_sym___deprecated_msg] = ACTIONS(2256), + [anon_sym___deprecated_enum_msg] = ACTIONS(2256), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2256), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2256), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(2256), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2256), + [anon_sym_NS_OPTIONS] = ACTIONS(2256), + [anon_sym_typeof] = ACTIONS(2256), + [anon_sym___typeof] = ACTIONS(2256), + [anon_sym___typeof__] = ACTIONS(2256), + [sym_id] = ACTIONS(2256), + [sym_instancetype] = ACTIONS(2256), + [sym_Class] = ACTIONS(2256), + [sym_SEL] = ACTIONS(2256), + [sym_IMP] = ACTIONS(2256), + [sym_BOOL] = ACTIONS(2256), + [sym_auto] = ACTIONS(2256), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1613] = { + [sym_preproc_def] = STATE(2008), + [sym_preproc_function_def] = STATE(2008), + [sym_declaration] = STATE(2008), + [sym_type_definition] = STATE(2008), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2008), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1728), + [sym_protocol_qualifiers] = STATE(1773), + [sym_parameterized_class_type_arguments] = STATE(1637), + [sym__instance_variables] = STATE(2005), + [aux_sym__interface_declaration] = STATE(2008), + [sym__interface_declaration_specifier] = STATE(2008), + [sym_method_declaration] = STATE(2008), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2008), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2416), + [anon_sym_ATend] = ACTIONS(2418), + [sym_optional] = ACTIONS(2420), + [sym_required] = ACTIONS(2420), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1614] = { + [sym_preproc_def] = STATE(2615), + [sym_preproc_function_def] = STATE(2615), + [sym_declaration] = STATE(2615), + [sym_type_definition] = STATE(2615), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2615), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1767), + [sym_protocol_qualifiers] = STATE(1802), + [sym_parameterized_class_type_arguments] = STATE(1635), + [sym__instance_variables] = STATE(2614), + [aux_sym__interface_declaration] = STATE(2615), + [sym__interface_declaration_specifier] = STATE(2615), + [sym_method_declaration] = STATE(2615), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2615), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2422), + [anon_sym_ATend] = ACTIONS(2424), + [sym_optional] = ACTIONS(2426), + [sym_required] = ACTIONS(2426), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1615] = { + [sym_preproc_def] = STATE(2609), + [sym_preproc_function_def] = STATE(2609), + [sym_declaration] = STATE(2609), + [sym_type_definition] = STATE(2609), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2609), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1764), + [sym_protocol_qualifiers] = STATE(1800), + [sym_parameterized_class_type_arguments] = STATE(5095), + [sym__instance_variables] = STATE(2608), + [aux_sym__interface_declaration] = STATE(2609), + [sym__interface_declaration_specifier] = STATE(2609), + [sym_method_declaration] = STATE(2609), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2609), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2428), + [anon_sym_ATend] = ACTIONS(2430), + [sym_optional] = ACTIONS(2432), + [sym_required] = ACTIONS(2432), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1616] = { + [sym_preproc_def] = STATE(2594), + [sym_preproc_function_def] = STATE(2594), + [sym_declaration] = STATE(2594), + [sym_type_definition] = STATE(2594), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2594), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1725), + [sym_protocol_qualifiers] = STATE(1902), + [sym_parameterized_class_type_arguments] = STATE(5094), + [sym__instance_variables] = STATE(2593), + [aux_sym__interface_declaration] = STATE(2594), + [sym__interface_declaration_specifier] = STATE(2594), + [sym_method_declaration] = STATE(2594), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2594), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2434), + [anon_sym_ATend] = ACTIONS(2436), + [sym_optional] = ACTIONS(2438), + [sym_required] = ACTIONS(2438), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1617] = { + [sym_preproc_def] = STATE(2193), + [sym_preproc_function_def] = STATE(2193), + [sym_declaration] = STATE(2193), + [sym_type_definition] = STATE(2193), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2193), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1761), + [sym_protocol_qualifiers] = STATE(1826), + [sym_parameterized_class_type_arguments] = STATE(5168), + [sym__instance_variables] = STATE(2205), + [aux_sym__interface_declaration] = STATE(2193), + [sym__interface_declaration_specifier] = STATE(2193), + [sym_method_declaration] = STATE(2193), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2193), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2440), + [anon_sym_ATend] = ACTIONS(2442), + [sym_optional] = ACTIONS(2444), + [sym_required] = ACTIONS(2444), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1618] = { + [sym_preproc_def] = STATE(1963), + [sym_preproc_function_def] = STATE(1963), + [sym_declaration] = STATE(1963), + [sym_type_definition] = STATE(1963), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1963), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1727), + [sym_protocol_qualifiers] = STATE(1772), + [sym_parameterized_class_type_arguments] = STATE(5151), + [sym__instance_variables] = STATE(1965), + [aux_sym__interface_declaration] = STATE(1963), + [sym__interface_declaration_specifier] = STATE(1963), + [sym_method_declaration] = STATE(1963), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1963), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2446), + [anon_sym_ATend] = ACTIONS(2448), + [sym_optional] = ACTIONS(2450), + [sym_required] = ACTIONS(2450), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1619] = { + [sym_preproc_def] = STATE(2159), + [sym_preproc_function_def] = STATE(2159), + [sym_declaration] = STATE(2159), + [sym_type_definition] = STATE(2159), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2159), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1737), + [sym_protocol_qualifiers] = STATE(1897), + [sym_parameterized_class_type_arguments] = STATE(5185), + [sym__instance_variables] = STATE(2160), + [aux_sym__interface_declaration] = STATE(2159), + [sym__interface_declaration_specifier] = STATE(2159), + [sym_method_declaration] = STATE(2159), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2159), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2452), + [anon_sym_ATend] = ACTIONS(2454), + [sym_optional] = ACTIONS(2456), + [sym_required] = ACTIONS(2456), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1620] = { + [sym_preproc_def] = STATE(2097), + [sym_preproc_function_def] = STATE(2097), + [sym_declaration] = STATE(2097), + [sym_type_definition] = STATE(2097), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2097), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1732), + [sym_protocol_qualifiers] = STATE(1904), + [sym_parameterized_class_type_arguments] = STATE(5214), + [sym__instance_variables] = STATE(2134), + [aux_sym__interface_declaration] = STATE(2097), + [sym__interface_declaration_specifier] = STATE(2097), + [sym_method_declaration] = STATE(2097), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2097), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2458), + [anon_sym_ATend] = ACTIONS(2460), + [sym_optional] = ACTIONS(2462), + [sym_required] = ACTIONS(2462), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1621] = { + [sym_preproc_def] = STATE(2280), + [sym_preproc_function_def] = STATE(2280), + [sym_declaration] = STATE(2280), + [sym_type_definition] = STATE(2280), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2280), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1744), + [sym_protocol_qualifiers] = STATE(1816), + [sym_parameterized_class_type_arguments] = STATE(5075), + [sym__instance_variables] = STATE(2278), + [aux_sym__interface_declaration] = STATE(2280), + [sym__interface_declaration_specifier] = STATE(2280), + [sym_method_declaration] = STATE(2280), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2280), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2464), + [anon_sym_ATend] = ACTIONS(2466), + [sym_optional] = ACTIONS(2468), + [sym_required] = ACTIONS(2468), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1622] = { + [sym_preproc_def] = STATE(1994), + [sym_preproc_function_def] = STATE(1994), + [sym_declaration] = STATE(1994), + [sym_type_definition] = STATE(1994), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1994), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1729), + [sym_protocol_qualifiers] = STATE(1946), + [sym_parameterized_class_type_arguments] = STATE(5141), + [sym__instance_variables] = STATE(1995), + [aux_sym__interface_declaration] = STATE(1994), + [sym__interface_declaration_specifier] = STATE(1994), + [sym_method_declaration] = STATE(1994), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1994), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2470), + [anon_sym_ATend] = ACTIONS(2472), + [sym_optional] = ACTIONS(2474), + [sym_required] = ACTIONS(2474), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1623] = { + [sym_preproc_def] = STATE(2155), + [sym_preproc_function_def] = STATE(2155), + [sym_declaration] = STATE(2155), + [sym_type_definition] = STATE(2155), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2155), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1738), + [sym_protocol_qualifiers] = STATE(1797), + [sym_parameterized_class_type_arguments] = STATE(1618), + [sym__instance_variables] = STATE(2156), + [aux_sym__interface_declaration] = STATE(2155), + [sym__interface_declaration_specifier] = STATE(2155), + [sym_method_declaration] = STATE(2155), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2155), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2476), + [anon_sym_ATend] = ACTIONS(2478), + [sym_optional] = ACTIONS(2480), + [sym_required] = ACTIONS(2480), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1624] = { + [sym_preproc_def] = STATE(2540), + [sym_preproc_function_def] = STATE(2540), + [sym_declaration] = STATE(2540), + [sym_type_definition] = STATE(2540), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2540), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1726), + [sym_protocol_qualifiers] = STATE(1814), + [sym_parameterized_class_type_arguments] = STATE(5166), + [sym__instance_variables] = STATE(2537), + [aux_sym__interface_declaration] = STATE(2540), + [sym__interface_declaration_specifier] = STATE(2540), + [sym_method_declaration] = STATE(2540), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2540), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2482), + [anon_sym_ATend] = ACTIONS(2484), + [sym_optional] = ACTIONS(2486), + [sym_required] = ACTIONS(2486), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1625] = { + [sym_preproc_def] = STATE(2446), + [sym_preproc_function_def] = STATE(2446), + [sym_declaration] = STATE(2446), + [sym_type_definition] = STATE(2446), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2446), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1751), + [sym_protocol_qualifiers] = STATE(1806), + [sym_parameterized_class_type_arguments] = STATE(5246), + [sym__instance_variables] = STATE(2424), + [aux_sym__interface_declaration] = STATE(2446), + [sym__interface_declaration_specifier] = STATE(2446), + [sym_method_declaration] = STATE(2446), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2446), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2488), + [anon_sym_ATend] = ACTIONS(2490), + [sym_optional] = ACTIONS(2492), + [sym_required] = ACTIONS(2492), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1626] = { + [sym_preproc_def] = STATE(2585), + [sym_preproc_function_def] = STATE(2585), + [sym_declaration] = STATE(2585), + [sym_type_definition] = STATE(2585), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2585), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1730), + [sym_protocol_qualifiers] = STATE(1891), + [sym_parameterized_class_type_arguments] = STATE(5085), + [sym__instance_variables] = STATE(2580), + [aux_sym__interface_declaration] = STATE(2585), + [sym__interface_declaration_specifier] = STATE(2585), + [sym_method_declaration] = STATE(2585), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2585), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2494), + [anon_sym_ATend] = ACTIONS(2496), + [sym_optional] = ACTIONS(2498), + [sym_required] = ACTIONS(2498), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1627] = { + [sym_preproc_def] = STATE(2419), + [sym_preproc_function_def] = STATE(2419), + [sym_declaration] = STATE(2419), + [sym_type_definition] = STATE(2419), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2419), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1759), + [sym_protocol_qualifiers] = STATE(1831), + [sym_parameterized_class_type_arguments] = STATE(5162), + [sym__instance_variables] = STATE(2415), + [aux_sym__interface_declaration] = STATE(2419), + [sym__interface_declaration_specifier] = STATE(2419), + [sym_method_declaration] = STATE(2419), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2419), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2500), + [anon_sym_ATend] = ACTIONS(2502), + [sym_optional] = ACTIONS(2504), + [sym_required] = ACTIONS(2504), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1628] = { + [sym_preproc_def] = STATE(2569), + [sym_preproc_function_def] = STATE(2569), + [sym_declaration] = STATE(2569), + [sym_type_definition] = STATE(2569), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2569), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1765), + [sym_protocol_qualifiers] = STATE(1813), + [sym_parameterized_class_type_arguments] = STATE(1639), + [sym__instance_variables] = STATE(2564), + [aux_sym__interface_declaration] = STATE(2569), + [sym__interface_declaration_specifier] = STATE(2569), + [sym_method_declaration] = STATE(2569), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2569), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2506), + [anon_sym_ATend] = ACTIONS(2508), + [sym_optional] = ACTIONS(2510), + [sym_required] = ACTIONS(2510), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1629] = { + [sym_preproc_def] = STATE(2588), + [sym_preproc_function_def] = STATE(2588), + [sym_declaration] = STATE(2588), + [sym_type_definition] = STATE(2588), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2588), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1752), + [sym_protocol_qualifiers] = STATE(1778), + [sym_parameterized_class_type_arguments] = STATE(1624), + [sym__instance_variables] = STATE(2538), + [aux_sym__interface_declaration] = STATE(2588), + [sym__interface_declaration_specifier] = STATE(2588), + [sym_method_declaration] = STATE(2588), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2588), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2512), + [anon_sym_ATend] = ACTIONS(2514), + [sym_optional] = ACTIONS(2516), + [sym_required] = ACTIONS(2516), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1630] = { + [sym_preproc_def] = STATE(2023), + [sym_preproc_function_def] = STATE(2023), + [sym_declaration] = STATE(2023), + [sym_type_definition] = STATE(2023), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2023), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1731), + [sym_protocol_qualifiers] = STATE(1781), + [sym_parameterized_class_type_arguments] = STATE(1621), + [sym__instance_variables] = STATE(2030), + [aux_sym__interface_declaration] = STATE(2023), + [sym__interface_declaration_specifier] = STATE(2023), + [sym_method_declaration] = STATE(2023), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2023), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2518), + [anon_sym_ATend] = ACTIONS(2520), + [sym_optional] = ACTIONS(2522), + [sym_required] = ACTIONS(2522), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1631] = { + [sym_preproc_def] = STATE(2085), + [sym_preproc_function_def] = STATE(2085), + [sym_declaration] = STATE(2085), + [sym_type_definition] = STATE(2085), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2085), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1735), + [sym_protocol_qualifiers] = STATE(1790), + [sym_parameterized_class_type_arguments] = STATE(1615), + [sym__instance_variables] = STATE(2088), + [aux_sym__interface_declaration] = STATE(2085), + [sym__interface_declaration_specifier] = STATE(2085), + [sym_method_declaration] = STATE(2085), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2085), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2524), + [anon_sym_ATend] = ACTIONS(2526), + [sym_optional] = ACTIONS(2528), + [sym_required] = ACTIONS(2528), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1632] = { + [sym_preproc_def] = STATE(2221), + [sym_preproc_function_def] = STATE(2221), + [sym_declaration] = STATE(2221), + [sym_type_definition] = STATE(2221), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2221), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1733), + [sym_protocol_qualifiers] = STATE(1882), + [sym_parameterized_class_type_arguments] = STATE(5132), + [sym__instance_variables] = STATE(2219), + [aux_sym__interface_declaration] = STATE(2221), + [sym__interface_declaration_specifier] = STATE(2221), + [sym_method_declaration] = STATE(2221), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2221), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2530), + [anon_sym_ATend] = ACTIONS(2532), + [sym_optional] = ACTIONS(2534), + [sym_required] = ACTIONS(2534), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1633] = { + [sym_preproc_def] = STATE(2376), + [sym_preproc_function_def] = STATE(2376), + [sym_declaration] = STATE(2376), + [sym_type_definition] = STATE(2376), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2376), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1749), + [sym_protocol_qualifiers] = STATE(1846), + [sym_parameterized_class_type_arguments] = STATE(5137), + [sym__instance_variables] = STATE(2377), + [aux_sym__interface_declaration] = STATE(2376), + [sym__interface_declaration_specifier] = STATE(2376), + [sym_method_declaration] = STATE(2376), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2376), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2536), + [anon_sym_ATend] = ACTIONS(2538), + [sym_optional] = ACTIONS(2540), + [sym_required] = ACTIONS(2540), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1634] = { + [sym_preproc_def] = STATE(2371), + [sym_preproc_function_def] = STATE(2371), + [sym_declaration] = STATE(2371), + [sym_type_definition] = STATE(2371), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2371), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1750), + [sym_protocol_qualifiers] = STATE(1811), + [sym_parameterized_class_type_arguments] = STATE(1638), + [sym__instance_variables] = STATE(2372), + [aux_sym__interface_declaration] = STATE(2371), + [sym__interface_declaration_specifier] = STATE(2371), + [sym_method_declaration] = STATE(2371), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2371), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2542), + [anon_sym_ATend] = ACTIONS(2544), + [sym_optional] = ACTIONS(2546), + [sym_required] = ACTIONS(2546), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1635] = { + [sym_preproc_def] = STATE(2142), + [sym_preproc_function_def] = STATE(2142), + [sym_declaration] = STATE(2142), + [sym_type_definition] = STATE(2142), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2142), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1743), + [sym_protocol_qualifiers] = STATE(1801), + [sym_parameterized_class_type_arguments] = STATE(5126), + [sym__instance_variables] = STATE(2143), + [aux_sym__interface_declaration] = STATE(2142), + [sym__interface_declaration_specifier] = STATE(2142), + [sym_method_declaration] = STATE(2142), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2142), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2548), + [anon_sym_ATend] = ACTIONS(2550), + [sym_optional] = ACTIONS(2552), + [sym_required] = ACTIONS(2552), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1636] = { + [sym_preproc_def] = STATE(2129), + [sym_preproc_function_def] = STATE(2129), + [sym_declaration] = STATE(2129), + [sym_type_definition] = STATE(2129), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2129), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1734), + [sym_protocol_qualifiers] = STATE(1791), + [sym_parameterized_class_type_arguments] = STATE(1625), + [sym__instance_variables] = STATE(2132), + [aux_sym__interface_declaration] = STATE(2129), + [sym__interface_declaration_specifier] = STATE(2129), + [sym_method_declaration] = STATE(2129), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2129), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2554), + [anon_sym_ATend] = ACTIONS(2556), + [sym_optional] = ACTIONS(2558), + [sym_required] = ACTIONS(2558), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1637] = { + [sym_preproc_def] = STATE(2119), + [sym_preproc_function_def] = STATE(2119), + [sym_declaration] = STATE(2119), + [sym_type_definition] = STATE(2119), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2119), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1736), + [sym_protocol_qualifiers] = STATE(1792), + [sym_parameterized_class_type_arguments] = STATE(5089), + [sym__instance_variables] = STATE(2000), + [aux_sym__interface_declaration] = STATE(2119), + [sym__interface_declaration_specifier] = STATE(2119), + [sym_method_declaration] = STATE(2119), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2119), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2560), + [anon_sym_ATend] = ACTIONS(2562), + [sym_optional] = ACTIONS(2564), + [sym_required] = ACTIONS(2564), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1638] = { + [sym_preproc_def] = STATE(2578), + [sym_preproc_function_def] = STATE(2578), + [sym_declaration] = STATE(2578), + [sym_type_definition] = STATE(2578), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2578), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1758), + [sym_protocol_qualifiers] = STATE(1794), + [sym_parameterized_class_type_arguments] = STATE(5161), + [sym__instance_variables] = STATE(2579), + [aux_sym__interface_declaration] = STATE(2578), + [sym__interface_declaration_specifier] = STATE(2578), + [sym_method_declaration] = STATE(2578), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2578), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2566), + [anon_sym_ATend] = ACTIONS(2568), + [sym_optional] = ACTIONS(2570), + [sym_required] = ACTIONS(2570), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1639] = { + [sym_preproc_def] = STATE(2541), + [sym_preproc_function_def] = STATE(2541), + [sym_declaration] = STATE(2541), + [sym_type_definition] = STATE(2541), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2541), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1762), + [sym_protocol_qualifiers] = STATE(1775), + [sym_parameterized_class_type_arguments] = STATE(5175), + [sym__instance_variables] = STATE(2542), + [aux_sym__interface_declaration] = STATE(2541), + [sym__interface_declaration_specifier] = STATE(2541), + [sym_method_declaration] = STATE(2541), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2541), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2572), + [anon_sym_ATend] = ACTIONS(2574), + [sym_optional] = ACTIONS(2576), + [sym_required] = ACTIONS(2576), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1640] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2580), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1641] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2582), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1642] = { + [sym_preproc_def] = STATE(1675), + [sym_preproc_function_def] = STATE(1675), + [sym_function_definition] = STATE(1675), + [sym_declaration] = STATE(1675), + [sym_type_definition] = STATE(1675), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1675), + [sym_synthesize_definition] = STATE(1675), + [sym_dynamic_definition] = STATE(1675), + [sym_method_definition] = STATE(1675), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2584), + [anon_sym_ATend] = ACTIONS(2586), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1643] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2588), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1644] = { + [sym_preproc_def] = STATE(1681), + [sym_preproc_function_def] = STATE(1681), + [sym_function_definition] = STATE(1681), + [sym_declaration] = STATE(1681), + [sym_type_definition] = STATE(1681), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1681), + [sym_synthesize_definition] = STATE(1681), + [sym_dynamic_definition] = STATE(1681), + [sym_method_definition] = STATE(1681), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2590), + [anon_sym_ATend] = ACTIONS(2592), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1645] = { + [sym_preproc_def] = STATE(1684), + [sym_preproc_function_def] = STATE(1684), + [sym_function_definition] = STATE(1684), + [sym_declaration] = STATE(1684), + [sym_type_definition] = STATE(1684), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1684), + [sym_synthesize_definition] = STATE(1684), + [sym_dynamic_definition] = STATE(1684), + [sym_method_definition] = STATE(1684), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2594), + [anon_sym_ATend] = ACTIONS(2596), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1646] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2598), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1647] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2600), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1648] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2602), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1649] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2604), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1650] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2606), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1651] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2608), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1652] = { + [sym_preproc_def] = STATE(1664), + [sym_preproc_function_def] = STATE(1664), + [sym_function_definition] = STATE(1664), + [sym_declaration] = STATE(1664), + [sym_type_definition] = STATE(1664), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1664), + [sym_synthesize_definition] = STATE(1664), + [sym_dynamic_definition] = STATE(1664), + [sym_method_definition] = STATE(1664), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2610), + [anon_sym_ATend] = ACTIONS(2612), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1653] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2614), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1654] = { + [sym_preproc_def] = STATE(1648), + [sym_preproc_function_def] = STATE(1648), + [sym_function_definition] = STATE(1648), + [sym_declaration] = STATE(1648), + [sym_type_definition] = STATE(1648), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1648), + [sym_synthesize_definition] = STATE(1648), + [sym_dynamic_definition] = STATE(1648), + [sym_method_definition] = STATE(1648), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2616), + [anon_sym_ATend] = ACTIONS(2618), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1655] = { + [sym_preproc_def] = STATE(1667), + [sym_preproc_function_def] = STATE(1667), + [sym_function_definition] = STATE(1667), + [sym_declaration] = STATE(1667), + [sym_type_definition] = STATE(1667), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1667), + [sym_synthesize_definition] = STATE(1667), + [sym_dynamic_definition] = STATE(1667), + [sym_method_definition] = STATE(1667), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2620), + [anon_sym_ATend] = ACTIONS(2622), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1656] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2624), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1657] = { + [sym_preproc_def] = STATE(1666), + [sym_preproc_function_def] = STATE(1666), + [sym_function_definition] = STATE(1666), + [sym_declaration] = STATE(1666), + [sym_type_definition] = STATE(1666), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1666), + [sym_synthesize_definition] = STATE(1666), + [sym_dynamic_definition] = STATE(1666), + [sym_method_definition] = STATE(1666), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2626), + [anon_sym_ATend] = ACTIONS(2628), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1658] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2630), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1659] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2632), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1660] = { + [sym_preproc_def] = STATE(1647), + [sym_preproc_function_def] = STATE(1647), + [sym_function_definition] = STATE(1647), + [sym_declaration] = STATE(1647), + [sym_type_definition] = STATE(1647), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1647), + [sym_synthesize_definition] = STATE(1647), + [sym_dynamic_definition] = STATE(1647), + [sym_method_definition] = STATE(1647), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2634), + [anon_sym_ATend] = ACTIONS(2636), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1661] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2638), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1662] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2640), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1663] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2642), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1664] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2644), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1665] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2646), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1666] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2648), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1667] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2650), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1668] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2652), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1669] = { + [sym_preproc_def] = STATE(1712), + [sym_preproc_function_def] = STATE(1712), + [sym_function_definition] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_type_definition] = STATE(1712), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1712), + [sym_synthesize_definition] = STATE(1712), + [sym_dynamic_definition] = STATE(1712), + [sym_method_definition] = STATE(1712), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2654), + [anon_sym_ATend] = ACTIONS(2656), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1670] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2658), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1671] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2660), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1672] = { + [sym_preproc_def] = STATE(1643), + [sym_preproc_function_def] = STATE(1643), + [sym_function_definition] = STATE(1643), + [sym_declaration] = STATE(1643), + [sym_type_definition] = STATE(1643), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1643), + [sym_synthesize_definition] = STATE(1643), + [sym_dynamic_definition] = STATE(1643), + [sym_method_definition] = STATE(1643), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2662), + [anon_sym_ATend] = ACTIONS(2664), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1673] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2666), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1674] = { + [sym_preproc_def] = STATE(1714), + [sym_preproc_function_def] = STATE(1714), + [sym_function_definition] = STATE(1714), + [sym_declaration] = STATE(1714), + [sym_type_definition] = STATE(1714), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1714), + [sym_synthesize_definition] = STATE(1714), + [sym_dynamic_definition] = STATE(1714), + [sym_method_definition] = STATE(1714), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2668), + [anon_sym_ATend] = ACTIONS(2670), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1675] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2672), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1676] = { + [sym_preproc_def] = STATE(1702), + [sym_preproc_function_def] = STATE(1702), + [sym_function_definition] = STATE(1702), + [sym_declaration] = STATE(1702), + [sym_type_definition] = STATE(1702), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1702), + [sym_synthesize_definition] = STATE(1702), + [sym_dynamic_definition] = STATE(1702), + [sym_method_definition] = STATE(1702), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2674), + [anon_sym_ATend] = ACTIONS(2676), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1677] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2678), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1678] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2680), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1679] = { + [sym_preproc_def] = STATE(1650), + [sym_preproc_function_def] = STATE(1650), + [sym_function_definition] = STATE(1650), + [sym_declaration] = STATE(1650), + [sym_type_definition] = STATE(1650), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1650), + [sym_synthesize_definition] = STATE(1650), + [sym_dynamic_definition] = STATE(1650), + [sym_method_definition] = STATE(1650), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2682), + [anon_sym_ATend] = ACTIONS(2684), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1680] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2686), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1681] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2688), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1682] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2690), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1683] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2692), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1684] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2694), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1685] = { + [sym_preproc_def] = STATE(1711), + [sym_preproc_function_def] = STATE(1711), + [sym_function_definition] = STATE(1711), + [sym_declaration] = STATE(1711), + [sym_type_definition] = STATE(1711), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1711), + [sym_synthesize_definition] = STATE(1711), + [sym_dynamic_definition] = STATE(1711), + [sym_method_definition] = STATE(1711), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2696), + [anon_sym_ATend] = ACTIONS(2698), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1686] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2700), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1687] = { + [sym_preproc_def] = STATE(1656), + [sym_preproc_function_def] = STATE(1656), + [sym_function_definition] = STATE(1656), + [sym_declaration] = STATE(1656), + [sym_type_definition] = STATE(1656), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1656), + [sym_synthesize_definition] = STATE(1656), + [sym_dynamic_definition] = STATE(1656), + [sym_method_definition] = STATE(1656), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2702), + [anon_sym_ATend] = ACTIONS(2704), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1688] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2706), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1689] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2708), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1690] = { + [sym_preproc_def] = STATE(1641), + [sym_preproc_function_def] = STATE(1641), + [sym_function_definition] = STATE(1641), + [sym_declaration] = STATE(1641), + [sym_type_definition] = STATE(1641), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1641), + [sym_synthesize_definition] = STATE(1641), + [sym_dynamic_definition] = STATE(1641), + [sym_method_definition] = STATE(1641), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2710), + [anon_sym_ATend] = ACTIONS(2712), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1691] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2714), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1692] = { + [sym_preproc_def] = STATE(1677), + [sym_preproc_function_def] = STATE(1677), + [sym_function_definition] = STATE(1677), + [sym_declaration] = STATE(1677), + [sym_type_definition] = STATE(1677), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1677), + [sym_synthesize_definition] = STATE(1677), + [sym_dynamic_definition] = STATE(1677), + [sym_method_definition] = STATE(1677), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2716), + [anon_sym_ATend] = ACTIONS(2718), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1693] = { + [sym_preproc_def] = STATE(1658), + [sym_preproc_function_def] = STATE(1658), + [sym_function_definition] = STATE(1658), + [sym_declaration] = STATE(1658), + [sym_type_definition] = STATE(1658), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1658), + [sym_synthesize_definition] = STATE(1658), + [sym_dynamic_definition] = STATE(1658), + [sym_method_definition] = STATE(1658), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2720), + [anon_sym_ATend] = ACTIONS(2722), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1694] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2724), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1695] = { + [sym_preproc_def] = STATE(1662), + [sym_preproc_function_def] = STATE(1662), + [sym_function_definition] = STATE(1662), + [sym_declaration] = STATE(1662), + [sym_type_definition] = STATE(1662), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1662), + [sym_synthesize_definition] = STATE(1662), + [sym_dynamic_definition] = STATE(1662), + [sym_method_definition] = STATE(1662), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2726), + [anon_sym_ATend] = ACTIONS(2728), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1696] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2730), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1697] = { + [sym_preproc_def] = STATE(1663), + [sym_preproc_function_def] = STATE(1663), + [sym_function_definition] = STATE(1663), + [sym_declaration] = STATE(1663), + [sym_type_definition] = STATE(1663), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1663), + [sym_synthesize_definition] = STATE(1663), + [sym_dynamic_definition] = STATE(1663), + [sym_method_definition] = STATE(1663), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2732), + [anon_sym_ATend] = ACTIONS(2734), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1698] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2736), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1699] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2738), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1700] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2740), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1701] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2742), + [aux_sym_preproc_def_token1] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2748), + [anon_sym_PLUS] = ACTIONS(2751), + [anon_sym_typedef] = ACTIONS(2754), + [anon_sym_extern] = ACTIONS(2757), + [anon_sym___attribute] = ACTIONS(2760), + [anon_sym___attribute__] = ACTIONS(2760), + [anon_sym___declspec] = ACTIONS(2763), + [anon_sym___cdecl] = ACTIONS(2766), + [anon_sym___clrcall] = ACTIONS(2766), + [anon_sym___stdcall] = ACTIONS(2766), + [anon_sym___fastcall] = ACTIONS(2766), + [anon_sym___thiscall] = ACTIONS(2766), + [anon_sym___vectorcall] = ACTIONS(2766), + [anon_sym_static] = ACTIONS(2757), + [anon_sym_auto] = ACTIONS(2757), + [anon_sym_register] = ACTIONS(2757), + [anon_sym_inline] = ACTIONS(2757), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2757), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_volatile] = ACTIONS(2769), + [anon_sym_restrict] = ACTIONS(2769), + [anon_sym__Atomic] = ACTIONS(2772), + [anon_sym_in] = ACTIONS(2769), + [anon_sym_out] = ACTIONS(2769), + [anon_sym_inout] = ACTIONS(2769), + [anon_sym_bycopy] = ACTIONS(2769), + [anon_sym_byref] = ACTIONS(2769), + [anon_sym_oneway] = ACTIONS(2769), + [anon_sym__Nullable] = ACTIONS(2769), + [anon_sym__Nonnull] = ACTIONS(2769), + [anon_sym__Nullable_result] = ACTIONS(2769), + [anon_sym__Null_unspecified] = ACTIONS(2769), + [anon_sym___autoreleasing] = ACTIONS(2769), + [anon_sym___nullable] = ACTIONS(2769), + [anon_sym___nonnull] = ACTIONS(2769), + [anon_sym___strong] = ACTIONS(2769), + [anon_sym___weak] = ACTIONS(2769), + [anon_sym___bridge] = ACTIONS(2769), + [anon_sym___bridge_transfer] = ACTIONS(2769), + [anon_sym___bridge_retained] = ACTIONS(2769), + [anon_sym___unsafe_unretained] = ACTIONS(2769), + [anon_sym___block] = ACTIONS(2769), + [anon_sym___kindof] = ACTIONS(2769), + [anon_sym___unused] = ACTIONS(2769), + [anon_sym__Complex] = ACTIONS(2769), + [anon_sym___complex] = ACTIONS(2769), + [anon_sym_IBOutlet] = ACTIONS(2769), + [anon_sym_IBInspectable] = ACTIONS(2769), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2769), + [anon_sym_signed] = ACTIONS(2775), + [anon_sym_unsigned] = ACTIONS(2775), + [anon_sym_long] = ACTIONS(2775), + [anon_sym_short] = ACTIONS(2775), + [sym_primitive_type] = ACTIONS(2778), + [anon_sym_enum] = ACTIONS(2781), + [anon_sym_struct] = ACTIONS(2784), + [anon_sym_union] = ACTIONS(2787), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2790), + [anon_sym_ATend] = ACTIONS(2793), + [sym_method_attribute_specifier] = ACTIONS(2795), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2798), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2798), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2801), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2801), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2801), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2801), + [anon_sym_NS_AVAILABLE] = ACTIONS(2804), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2804), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_API_AVAILABLE] = ACTIONS(2804), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2804), + [anon_sym_API_DEPRECATED] = ACTIONS(2804), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2804), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2804), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2804), + [anon_sym___deprecated_msg] = ACTIONS(2804), + [anon_sym___deprecated_enum_msg] = ACTIONS(2804), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2804), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2804), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2804), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2807), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2810), + [anon_sym_ATsynthesize] = ACTIONS(2813), + [anon_sym_ATdynamic] = ACTIONS(2816), + [anon_sym_NS_ENUM] = ACTIONS(2819), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2819), + [anon_sym_NS_OPTIONS] = ACTIONS(2819), + [anon_sym_typeof] = ACTIONS(2822), + [anon_sym___typeof] = ACTIONS(2822), + [anon_sym___typeof__] = ACTIONS(2822), + [sym_id] = ACTIONS(2825), + [sym_instancetype] = ACTIONS(2778), + [sym_Class] = ACTIONS(2825), + [sym_SEL] = ACTIONS(2778), + [sym_IMP] = ACTIONS(2778), + [sym_BOOL] = ACTIONS(2778), + [sym_auto] = ACTIONS(2778), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1702] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2828), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1703] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2830), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1704] = { + [sym_preproc_def] = STATE(1668), + [sym_preproc_function_def] = STATE(1668), + [sym_function_definition] = STATE(1668), + [sym_declaration] = STATE(1668), + [sym_type_definition] = STATE(1668), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1668), + [sym_synthesize_definition] = STATE(1668), + [sym_dynamic_definition] = STATE(1668), + [sym_method_definition] = STATE(1668), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2832), + [anon_sym_ATend] = ACTIONS(2834), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1705] = { + [sym_preproc_def] = STATE(1699), + [sym_preproc_function_def] = STATE(1699), + [sym_function_definition] = STATE(1699), + [sym_declaration] = STATE(1699), + [sym_type_definition] = STATE(1699), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1699), + [sym_synthesize_definition] = STATE(1699), + [sym_dynamic_definition] = STATE(1699), + [sym_method_definition] = STATE(1699), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2836), + [anon_sym_ATend] = ACTIONS(2838), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1706] = { + [sym_preproc_def] = STATE(1649), + [sym_preproc_function_def] = STATE(1649), + [sym_function_definition] = STATE(1649), + [sym_declaration] = STATE(1649), + [sym_type_definition] = STATE(1649), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1649), + [sym_synthesize_definition] = STATE(1649), + [sym_dynamic_definition] = STATE(1649), + [sym_method_definition] = STATE(1649), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2840), + [anon_sym_ATend] = ACTIONS(2842), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1707] = { + [sym_preproc_def] = STATE(1720), + [sym_preproc_function_def] = STATE(1720), + [sym_function_definition] = STATE(1720), + [sym_declaration] = STATE(1720), + [sym_type_definition] = STATE(1720), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1720), + [sym_synthesize_definition] = STATE(1720), + [sym_dynamic_definition] = STATE(1720), + [sym_method_definition] = STATE(1720), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2844), + [anon_sym_ATend] = ACTIONS(2846), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1708] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2848), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1709] = { + [sym_preproc_def] = STATE(1724), + [sym_preproc_function_def] = STATE(1724), + [sym_function_definition] = STATE(1724), + [sym_declaration] = STATE(1724), + [sym_type_definition] = STATE(1724), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1724), + [sym_synthesize_definition] = STATE(1724), + [sym_dynamic_definition] = STATE(1724), + [sym_method_definition] = STATE(1724), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2850), + [anon_sym_ATend] = ACTIONS(2852), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1710] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2854), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1711] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2856), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1712] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2858), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1713] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2860), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1714] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2862), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1715] = { + [sym_preproc_def] = STATE(1671), + [sym_preproc_function_def] = STATE(1671), + [sym_function_definition] = STATE(1671), + [sym_declaration] = STATE(1671), + [sym_type_definition] = STATE(1671), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1671), + [sym_synthesize_definition] = STATE(1671), + [sym_dynamic_definition] = STATE(1671), + [sym_method_definition] = STATE(1671), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2864), + [anon_sym_ATend] = ACTIONS(2866), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1716] = { + [sym_preproc_def] = STATE(1651), + [sym_preproc_function_def] = STATE(1651), + [sym_function_definition] = STATE(1651), + [sym_declaration] = STATE(1651), + [sym_type_definition] = STATE(1651), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1651), + [sym_synthesize_definition] = STATE(1651), + [sym_dynamic_definition] = STATE(1651), + [sym_method_definition] = STATE(1651), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2868), + [anon_sym_ATend] = ACTIONS(2870), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1717] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2872), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1718] = { + [sym_preproc_def] = STATE(1682), + [sym_preproc_function_def] = STATE(1682), + [sym_function_definition] = STATE(1682), + [sym_declaration] = STATE(1682), + [sym_type_definition] = STATE(1682), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1682), + [sym_synthesize_definition] = STATE(1682), + [sym_dynamic_definition] = STATE(1682), + [sym_method_definition] = STATE(1682), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2874), + [anon_sym_ATend] = ACTIONS(2876), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1719] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2878), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1720] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2880), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1721] = { + [sym_preproc_def] = STATE(1713), + [sym_preproc_function_def] = STATE(1713), + [sym_function_definition] = STATE(1713), + [sym_declaration] = STATE(1713), + [sym_type_definition] = STATE(1713), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1713), + [sym_synthesize_definition] = STATE(1713), + [sym_dynamic_definition] = STATE(1713), + [sym_method_definition] = STATE(1713), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2882), + [anon_sym_ATend] = ACTIONS(2884), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1722] = { + [sym_preproc_def] = STATE(1670), + [sym_preproc_function_def] = STATE(1670), + [sym_function_definition] = STATE(1670), + [sym_declaration] = STATE(1670), + [sym_type_definition] = STATE(1670), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1670), + [sym_synthesize_definition] = STATE(1670), + [sym_dynamic_definition] = STATE(1670), + [sym_method_definition] = STATE(1670), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2886), + [anon_sym_ATend] = ACTIONS(2888), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1723] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2890), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1724] = { + [sym_preproc_def] = STATE(1701), + [sym_preproc_function_def] = STATE(1701), + [sym_function_definition] = STATE(1701), + [sym_declaration] = STATE(1701), + [sym_type_definition] = STATE(1701), + [sym__declaration_specifiers] = STATE(4723), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2888), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym__class_member_scope] = STATE(4740), + [sym_class_scope] = STATE(4740), + [sym_instance_scope] = STATE(4740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [aux_sym__implementation_definition] = STATE(1701), + [sym_synthesize_definition] = STATE(1701), + [sym_dynamic_definition] = STATE(1701), + [sym_method_definition] = STATE(1701), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2578), + [anon_sym_ATend] = ACTIONS(2892), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATsynthesize] = ACTIONS(2206), + [anon_sym_ATdynamic] = ACTIONS(2208), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1725] = { + [sym_preproc_def] = STATE(2221), + [sym_preproc_function_def] = STATE(2221), + [sym_declaration] = STATE(2221), + [sym_type_definition] = STATE(2221), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2221), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1882), + [sym_parameterized_class_type_arguments] = STATE(5132), + [sym__instance_variables] = STATE(2219), + [aux_sym__interface_declaration] = STATE(2221), + [sym__interface_declaration_specifier] = STATE(2221), + [sym_method_declaration] = STATE(2221), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2221), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2530), + [anon_sym_ATend] = ACTIONS(2532), + [sym_optional] = ACTIONS(2534), + [sym_required] = ACTIONS(2534), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1726] = { + [sym_preproc_def] = STATE(2554), + [sym_preproc_function_def] = STATE(2554), + [sym_declaration] = STATE(2554), + [sym_type_definition] = STATE(2554), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2554), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1923), + [sym_parameterized_class_type_arguments] = STATE(5169), + [sym__instance_variables] = STATE(2555), + [aux_sym__interface_declaration] = STATE(2554), + [sym__interface_declaration_specifier] = STATE(2554), + [sym_method_declaration] = STATE(2554), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2554), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2894), + [anon_sym_ATend] = ACTIONS(2896), + [sym_optional] = ACTIONS(2898), + [sym_required] = ACTIONS(2898), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1727] = { + [sym_preproc_def] = STATE(2201), + [sym_preproc_function_def] = STATE(2201), + [sym_declaration] = STATE(2201), + [sym_type_definition] = STATE(2201), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2201), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1861), + [sym_parameterized_class_type_arguments] = STATE(5231), + [sym__instance_variables] = STATE(2285), + [aux_sym__interface_declaration] = STATE(2201), + [sym__interface_declaration_specifier] = STATE(2201), + [sym_method_declaration] = STATE(2201), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2201), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2900), + [anon_sym_ATend] = ACTIONS(2902), + [sym_optional] = ACTIONS(2904), + [sym_required] = ACTIONS(2904), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1728] = { + [sym_preproc_def] = STATE(2162), + [sym_preproc_function_def] = STATE(2162), + [sym_declaration] = STATE(2162), + [sym_type_definition] = STATE(2162), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2162), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1892), + [sym_parameterized_class_type_arguments] = STATE(5102), + [sym__instance_variables] = STATE(2167), + [aux_sym__interface_declaration] = STATE(2162), + [sym__interface_declaration_specifier] = STATE(2162), + [sym_method_declaration] = STATE(2162), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2162), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2906), + [anon_sym_ATend] = ACTIONS(2908), + [sym_optional] = ACTIONS(2910), + [sym_required] = ACTIONS(2910), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1729] = { + [sym_preproc_def] = STATE(2585), + [sym_preproc_function_def] = STATE(2585), + [sym_declaration] = STATE(2585), + [sym_type_definition] = STATE(2585), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2585), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1891), + [sym_parameterized_class_type_arguments] = STATE(5085), + [sym__instance_variables] = STATE(2580), + [aux_sym__interface_declaration] = STATE(2585), + [sym__interface_declaration_specifier] = STATE(2585), + [sym_method_declaration] = STATE(2585), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2585), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2494), + [anon_sym_ATend] = ACTIONS(2496), + [sym_optional] = ACTIONS(2498), + [sym_required] = ACTIONS(2498), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1730] = { + [sym_preproc_def] = STATE(2176), + [sym_preproc_function_def] = STATE(2176), + [sym_declaration] = STATE(2176), + [sym_type_definition] = STATE(2176), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2176), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1867), + [sym_parameterized_class_type_arguments] = STATE(5072), + [sym__instance_variables] = STATE(2235), + [aux_sym__interface_declaration] = STATE(2176), + [sym__interface_declaration_specifier] = STATE(2176), + [sym_method_declaration] = STATE(2176), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2176), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2912), + [anon_sym_ATend] = ACTIONS(2914), + [sym_optional] = ACTIONS(2916), + [sym_required] = ACTIONS(2916), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1731] = { + [sym_preproc_def] = STATE(2270), + [sym_preproc_function_def] = STATE(2270), + [sym_declaration] = STATE(2270), + [sym_type_definition] = STATE(2270), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2270), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1865), + [sym_parameterized_class_type_arguments] = STATE(5081), + [sym__instance_variables] = STATE(2269), + [aux_sym__interface_declaration] = STATE(2270), + [sym__interface_declaration_specifier] = STATE(2270), + [sym_method_declaration] = STATE(2270), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2270), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2918), + [anon_sym_ATend] = ACTIONS(2920), + [sym_optional] = ACTIONS(2922), + [sym_required] = ACTIONS(2922), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1732] = { + [sym_preproc_def] = STATE(2594), + [sym_preproc_function_def] = STATE(2594), + [sym_declaration] = STATE(2594), + [sym_type_definition] = STATE(2594), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2594), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1902), + [sym_parameterized_class_type_arguments] = STATE(5094), + [sym__instance_variables] = STATE(2593), + [aux_sym__interface_declaration] = STATE(2594), + [sym__interface_declaration_specifier] = STATE(2594), + [sym_method_declaration] = STATE(2594), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2594), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2434), + [anon_sym_ATend] = ACTIONS(2436), + [sym_optional] = ACTIONS(2438), + [sym_required] = ACTIONS(2438), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1733] = { + [sym_preproc_def] = STATE(2613), + [sym_preproc_function_def] = STATE(2613), + [sym_declaration] = STATE(2613), + [sym_type_definition] = STATE(2613), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2613), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1937), + [sym_parameterized_class_type_arguments] = STATE(5250), + [sym__instance_variables] = STATE(2328), + [aux_sym__interface_declaration] = STATE(2613), + [sym__interface_declaration_specifier] = STATE(2613), + [sym_method_declaration] = STATE(2613), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2613), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2924), + [anon_sym_ATend] = ACTIONS(2926), + [sym_optional] = ACTIONS(2928), + [sym_required] = ACTIONS(2928), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1734] = { + [sym_preproc_def] = STATE(2314), + [sym_preproc_function_def] = STATE(2314), + [sym_declaration] = STATE(2314), + [sym_type_definition] = STATE(2314), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2314), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1895), + [sym_parameterized_class_type_arguments] = STATE(5237), + [sym__instance_variables] = STATE(2305), + [aux_sym__interface_declaration] = STATE(2314), + [sym__interface_declaration_specifier] = STATE(2314), + [sym_method_declaration] = STATE(2314), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2314), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2930), + [anon_sym_ATend] = ACTIONS(2932), + [sym_optional] = ACTIONS(2934), + [sym_required] = ACTIONS(2934), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1735] = { + [sym_preproc_def] = STATE(2599), + [sym_preproc_function_def] = STATE(2599), + [sym_declaration] = STATE(2599), + [sym_type_definition] = STATE(2599), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2599), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1901), + [sym_parameterized_class_type_arguments] = STATE(5096), + [sym__instance_variables] = STATE(2598), + [aux_sym__interface_declaration] = STATE(2599), + [sym__interface_declaration_specifier] = STATE(2599), + [sym_method_declaration] = STATE(2599), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2599), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2936), + [anon_sym_ATend] = ACTIONS(2938), + [sym_optional] = ACTIONS(2940), + [sym_required] = ACTIONS(2940), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1736] = { + [sym_preproc_def] = STATE(2249), + [sym_preproc_function_def] = STATE(2249), + [sym_declaration] = STATE(2249), + [sym_type_definition] = STATE(2249), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2249), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1874), + [sym_parameterized_class_type_arguments] = STATE(5083), + [sym__instance_variables] = STATE(2248), + [aux_sym__interface_declaration] = STATE(2249), + [sym__interface_declaration_specifier] = STATE(2249), + [sym_method_declaration] = STATE(2249), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2249), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2942), + [anon_sym_ATend] = ACTIONS(2944), + [sym_optional] = ACTIONS(2946), + [sym_required] = ACTIONS(2946), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1737] = { + [sym_preproc_def] = STATE(1994), + [sym_preproc_function_def] = STATE(1994), + [sym_declaration] = STATE(1994), + [sym_type_definition] = STATE(1994), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1994), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1946), + [sym_parameterized_class_type_arguments] = STATE(5141), + [sym__instance_variables] = STATE(1995), + [aux_sym__interface_declaration] = STATE(1994), + [sym__interface_declaration_specifier] = STATE(1994), + [sym_method_declaration] = STATE(1994), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1994), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2470), + [anon_sym_ATend] = ACTIONS(2472), + [sym_optional] = ACTIONS(2474), + [sym_required] = ACTIONS(2474), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1738] = { + [sym_preproc_def] = STATE(1984), + [sym_preproc_function_def] = STATE(1984), + [sym_declaration] = STATE(1984), + [sym_type_definition] = STATE(1984), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1984), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1947), + [sym_parameterized_class_type_arguments] = STATE(5171), + [sym__instance_variables] = STATE(1985), + [aux_sym__interface_declaration] = STATE(1984), + [sym__interface_declaration_specifier] = STATE(1984), + [sym_method_declaration] = STATE(1984), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1984), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2948), + [anon_sym_ATend] = ACTIONS(2950), + [sym_optional] = ACTIONS(2952), + [sym_required] = ACTIONS(2952), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1739] = { + [sym_preproc_def] = STATE(2587), + [sym_preproc_function_def] = STATE(2587), + [sym_declaration] = STATE(2587), + [sym_type_definition] = STATE(2587), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2587), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1907), + [sym__instance_variables] = STATE(2586), + [aux_sym__interface_declaration] = STATE(2587), + [sym__interface_declaration_specifier] = STATE(2587), + [sym_method_declaration] = STATE(2587), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2587), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2956), + [anon_sym_ATend] = ACTIONS(2958), + [sym_optional] = ACTIONS(2960), + [sym_required] = ACTIONS(2960), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1740] = { + [sym_preproc_def] = STATE(2583), + [sym_preproc_function_def] = STATE(2583), + [sym_declaration] = STATE(2583), + [sym_type_definition] = STATE(2583), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2583), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1908), + [sym_parameterized_class_type_arguments] = STATE(5098), + [sym__instance_variables] = STATE(2582), + [aux_sym__interface_declaration] = STATE(2583), + [sym__interface_declaration_specifier] = STATE(2583), + [sym_method_declaration] = STATE(2583), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2583), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2962), + [anon_sym_ATend] = ACTIONS(2964), + [sym_optional] = ACTIONS(2966), + [sym_required] = ACTIONS(2966), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1741] = { + [sym_preproc_def] = STATE(2015), + [sym_preproc_function_def] = STATE(2015), + [sym_declaration] = STATE(2015), + [sym_type_definition] = STATE(2015), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2015), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1931), + [sym__instance_variables] = STATE(2017), + [aux_sym__interface_declaration] = STATE(2015), + [sym__interface_declaration_specifier] = STATE(2015), + [sym_method_declaration] = STATE(2015), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2015), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2968), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2970), + [anon_sym_ATend] = ACTIONS(2972), + [sym_optional] = ACTIONS(2974), + [sym_required] = ACTIONS(2974), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1742] = { + [sym_preproc_def] = STATE(2020), + [sym_preproc_function_def] = STATE(2020), + [sym_declaration] = STATE(2020), + [sym_type_definition] = STATE(2020), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2020), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1930), + [sym_parameterized_class_type_arguments] = STATE(5177), + [sym__instance_variables] = STATE(2022), + [aux_sym__interface_declaration] = STATE(2020), + [sym__interface_declaration_specifier] = STATE(2020), + [sym_method_declaration] = STATE(2020), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2020), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2976), + [anon_sym_ATend] = ACTIONS(2978), + [sym_optional] = ACTIONS(2980), + [sym_required] = ACTIONS(2980), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1743] = { + [sym_preproc_def] = STATE(2101), + [sym_preproc_function_def] = STATE(2101), + [sym_declaration] = STATE(2101), + [sym_type_definition] = STATE(2101), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2101), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1844), + [sym_parameterized_class_type_arguments] = STATE(5261), + [sym__instance_variables] = STATE(2093), + [aux_sym__interface_declaration] = STATE(2101), + [sym__interface_declaration_specifier] = STATE(2101), + [sym_method_declaration] = STATE(2101), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2101), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2982), + [anon_sym_ATend] = ACTIONS(2984), + [sym_optional] = ACTIONS(2986), + [sym_required] = ACTIONS(2986), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1744] = { + [sym_preproc_def] = STATE(2413), + [sym_preproc_function_def] = STATE(2413), + [sym_declaration] = STATE(2413), + [sym_type_definition] = STATE(2413), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2413), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1839), + [sym_parameterized_class_type_arguments] = STATE(5068), + [sym__instance_variables] = STATE(2411), + [aux_sym__interface_declaration] = STATE(2413), + [sym__interface_declaration_specifier] = STATE(2413), + [sym_method_declaration] = STATE(2413), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2413), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2988), + [anon_sym_ATend] = ACTIONS(2990), + [sym_optional] = ACTIONS(2992), + [sym_required] = ACTIONS(2992), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1745] = { + [sym_preproc_def] = STATE(2159), + [sym_preproc_function_def] = STATE(2159), + [sym_declaration] = STATE(2159), + [sym_type_definition] = STATE(2159), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2159), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1897), + [sym_parameterized_class_type_arguments] = STATE(5185), + [sym__instance_variables] = STATE(2160), + [aux_sym__interface_declaration] = STATE(2159), + [sym__interface_declaration_specifier] = STATE(2159), + [sym_method_declaration] = STATE(2159), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2159), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2452), + [anon_sym_ATend] = ACTIONS(2454), + [sym_optional] = ACTIONS(2456), + [sym_required] = ACTIONS(2456), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1746] = { + [sym_preproc_def] = STATE(2168), + [sym_preproc_function_def] = STATE(2168), + [sym_declaration] = STATE(2168), + [sym_type_definition] = STATE(2168), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2168), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1893), + [sym__instance_variables] = STATE(2169), + [aux_sym__interface_declaration] = STATE(2168), + [sym__interface_declaration_specifier] = STATE(2168), + [sym_method_declaration] = STATE(2168), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2168), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2996), + [anon_sym_ATend] = ACTIONS(2998), + [sym_optional] = ACTIONS(3000), + [sym_required] = ACTIONS(3000), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1747] = { + [sym_preproc_def] = STATE(2171), + [sym_preproc_function_def] = STATE(2171), + [sym_declaration] = STATE(2171), + [sym_type_definition] = STATE(2171), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2171), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1890), + [sym_parameterized_class_type_arguments] = STATE(5191), + [sym__instance_variables] = STATE(2172), + [aux_sym__interface_declaration] = STATE(2171), + [sym__interface_declaration_specifier] = STATE(2171), + [sym_method_declaration] = STATE(2171), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2171), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3002), + [anon_sym_ATend] = ACTIONS(3004), + [sym_optional] = ACTIONS(3006), + [sym_required] = ACTIONS(3006), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1748] = { + [sym_preproc_def] = STATE(2296), + [sym_preproc_function_def] = STATE(2296), + [sym_declaration] = STATE(2296), + [sym_type_definition] = STATE(2296), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2296), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(2297), + [aux_sym__interface_declaration] = STATE(2296), + [sym__interface_declaration_specifier] = STATE(2296), + [sym_method_declaration] = STATE(2296), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2296), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [aux_sym_protocol_forward_declaration_repeat1] = STATE(4980), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_SEMI] = ACTIONS(3012), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3014), + [anon_sym_ATend] = ACTIONS(3016), + [sym_optional] = ACTIONS(3018), + [sym_required] = ACTIONS(3018), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1749] = { + [sym_preproc_def] = STATE(2419), + [sym_preproc_function_def] = STATE(2419), + [sym_declaration] = STATE(2419), + [sym_type_definition] = STATE(2419), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2419), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1831), + [sym_parameterized_class_type_arguments] = STATE(5162), + [sym__instance_variables] = STATE(2415), + [aux_sym__interface_declaration] = STATE(2419), + [sym__interface_declaration_specifier] = STATE(2419), + [sym_method_declaration] = STATE(2419), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2419), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2500), + [anon_sym_ATend] = ACTIONS(2502), + [sym_optional] = ACTIONS(2504), + [sym_required] = ACTIONS(2504), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1750] = { + [sym_preproc_def] = STATE(2484), + [sym_preproc_function_def] = STATE(2484), + [sym_declaration] = STATE(2484), + [sym_type_definition] = STATE(2484), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2484), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1830), + [sym_parameterized_class_type_arguments] = STATE(5158), + [sym__instance_variables] = STATE(2464), + [aux_sym__interface_declaration] = STATE(2484), + [sym__interface_declaration_specifier] = STATE(2484), + [sym_method_declaration] = STATE(2484), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2484), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3020), + [anon_sym_ATend] = ACTIONS(3022), + [sym_optional] = ACTIONS(3024), + [sym_required] = ACTIONS(3024), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1751] = { + [sym_preproc_def] = STATE(1977), + [sym_preproc_function_def] = STATE(1977), + [sym_declaration] = STATE(1977), + [sym_type_definition] = STATE(1977), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1977), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1949), + [sym_parameterized_class_type_arguments] = STATE(5193), + [sym__instance_variables] = STATE(1976), + [aux_sym__interface_declaration] = STATE(1977), + [sym__interface_declaration_specifier] = STATE(1977), + [sym_method_declaration] = STATE(1977), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1977), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3026), + [anon_sym_ATend] = ACTIONS(3028), + [sym_optional] = ACTIONS(3030), + [sym_required] = ACTIONS(3030), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1752] = { + [sym_preproc_def] = STATE(2487), + [sym_preproc_function_def] = STATE(2487), + [sym_declaration] = STATE(2487), + [sym_type_definition] = STATE(2487), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2487), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1825), + [sym_parameterized_class_type_arguments] = STATE(5165), + [sym__instance_variables] = STATE(2486), + [aux_sym__interface_declaration] = STATE(2487), + [sym__interface_declaration_specifier] = STATE(2487), + [sym_method_declaration] = STATE(2487), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2487), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3032), + [anon_sym_ATend] = ACTIONS(3034), + [sym_optional] = ACTIONS(3036), + [sym_required] = ACTIONS(3036), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1753] = { + [sym_preproc_def] = STATE(2313), + [sym_preproc_function_def] = STATE(2313), + [sym_declaration] = STATE(2313), + [sym_type_definition] = STATE(2313), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2313), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1859), + [sym_parameterized_class_type_arguments] = STATE(5219), + [sym__instance_variables] = STATE(2317), + [aux_sym__interface_declaration] = STATE(2313), + [sym__interface_declaration_specifier] = STATE(2313), + [sym_method_declaration] = STATE(2313), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2313), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3038), + [anon_sym_ATend] = ACTIONS(3040), + [sym_optional] = ACTIONS(3042), + [sym_required] = ACTIONS(3042), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1754] = { + [sym_preproc_def] = STATE(2292), + [sym_preproc_function_def] = STATE(2292), + [sym_declaration] = STATE(2292), + [sym_type_definition] = STATE(2292), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2292), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1943), + [sym__instance_variables] = STATE(1975), + [aux_sym__interface_declaration] = STATE(2292), + [sym__interface_declaration_specifier] = STATE(2292), + [sym_method_declaration] = STATE(2292), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2292), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(3044), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3046), + [anon_sym_ATend] = ACTIONS(3048), + [sym_optional] = ACTIONS(3050), + [sym_required] = ACTIONS(3050), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1755] = { + [sym_preproc_def] = STATE(2376), + [sym_preproc_function_def] = STATE(2376), + [sym_declaration] = STATE(2376), + [sym_type_definition] = STATE(2376), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2376), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1846), + [sym_parameterized_class_type_arguments] = STATE(5137), + [sym__instance_variables] = STATE(2377), + [aux_sym__interface_declaration] = STATE(2376), + [sym__interface_declaration_specifier] = STATE(2376), + [sym_method_declaration] = STATE(2376), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2376), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2536), + [anon_sym_ATend] = ACTIONS(2538), + [sym_optional] = ACTIONS(2540), + [sym_required] = ACTIONS(2540), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1756] = { + [sym_preproc_def] = STATE(2410), + [sym_preproc_function_def] = STATE(2410), + [sym_declaration] = STATE(2410), + [sym_type_definition] = STATE(2410), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2410), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1836), + [sym__instance_variables] = STATE(2418), + [aux_sym__interface_declaration] = STATE(2410), + [sym__interface_declaration_specifier] = STATE(2410), + [sym_method_declaration] = STATE(2410), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2410), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3054), + [anon_sym_ATend] = ACTIONS(3056), + [sym_optional] = ACTIONS(3058), + [sym_required] = ACTIONS(3058), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1757] = { + [sym_preproc_def] = STATE(2438), + [sym_preproc_function_def] = STATE(2438), + [sym_declaration] = STATE(2438), + [sym_type_definition] = STATE(2438), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2438), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1829), + [sym_parameterized_class_type_arguments] = STATE(5131), + [sym__instance_variables] = STATE(2459), + [aux_sym__interface_declaration] = STATE(2438), + [sym__interface_declaration_specifier] = STATE(2438), + [sym_method_declaration] = STATE(2438), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2438), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3060), + [anon_sym_ATend] = ACTIONS(3062), + [sym_optional] = ACTIONS(3064), + [sym_required] = ACTIONS(3064), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1758] = { + [sym_preproc_def] = STATE(2425), + [sym_preproc_function_def] = STATE(2425), + [sym_declaration] = STATE(2425), + [sym_type_definition] = STATE(2425), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2425), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1841), + [sym_parameterized_class_type_arguments] = STATE(5164), + [sym__instance_variables] = STATE(2412), + [aux_sym__interface_declaration] = STATE(2425), + [sym__interface_declaration_specifier] = STATE(2425), + [sym_method_declaration] = STATE(2425), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2425), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3066), + [anon_sym_ATend] = ACTIONS(3068), + [sym_optional] = ACTIONS(3070), + [sym_required] = ACTIONS(3070), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1759] = { + [sym_preproc_def] = STATE(2193), + [sym_preproc_function_def] = STATE(2193), + [sym_declaration] = STATE(2193), + [sym_type_definition] = STATE(2193), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2193), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1826), + [sym_parameterized_class_type_arguments] = STATE(5168), + [sym__instance_variables] = STATE(2205), + [aux_sym__interface_declaration] = STATE(2193), + [sym__interface_declaration_specifier] = STATE(2193), + [sym_method_declaration] = STATE(2193), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2193), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2440), + [anon_sym_ATend] = ACTIONS(2442), + [sym_optional] = ACTIONS(2444), + [sym_required] = ACTIONS(2444), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1760] = { + [sym_preproc_def] = STATE(2506), + [sym_preproc_function_def] = STATE(2506), + [sym_declaration] = STATE(2506), + [sym_type_definition] = STATE(2506), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2506), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(2508), + [aux_sym__interface_declaration] = STATE(2506), + [sym__interface_declaration_specifier] = STATE(2506), + [sym_method_declaration] = STATE(2506), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2506), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [aux_sym_protocol_forward_declaration_repeat1] = STATE(5042), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_SEMI] = ACTIONS(3072), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3074), + [anon_sym_ATend] = ACTIONS(3076), + [sym_optional] = ACTIONS(3078), + [sym_required] = ACTIONS(3078), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1761] = { + [sym_preproc_def] = STATE(2651), + [sym_preproc_function_def] = STATE(2651), + [sym_declaration] = STATE(2651), + [sym_type_definition] = STATE(2651), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2651), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1927), + [sym_parameterized_class_type_arguments] = STATE(5178), + [sym__instance_variables] = STATE(2597), + [aux_sym__interface_declaration] = STATE(2651), + [sym__interface_declaration_specifier] = STATE(2651), + [sym_method_declaration] = STATE(2651), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2651), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3080), + [anon_sym_ATend] = ACTIONS(3082), + [sym_optional] = ACTIONS(3084), + [sym_required] = ACTIONS(3084), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1762] = { + [sym_preproc_def] = STATE(2309), + [sym_preproc_function_def] = STATE(2309), + [sym_declaration] = STATE(2309), + [sym_type_definition] = STATE(2309), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2309), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1885), + [sym_parameterized_class_type_arguments] = STATE(5183), + [sym__instance_variables] = STATE(2312), + [aux_sym__interface_declaration] = STATE(2309), + [sym__interface_declaration_specifier] = STATE(2309), + [sym_method_declaration] = STATE(2309), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2309), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3086), + [anon_sym_ATend] = ACTIONS(3088), + [sym_optional] = ACTIONS(3090), + [sym_required] = ACTIONS(3090), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1763] = { + [sym_preproc_def] = STATE(2601), + [sym_preproc_function_def] = STATE(2601), + [sym_declaration] = STATE(2601), + [sym_type_definition] = STATE(2601), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2601), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(2600), + [aux_sym__interface_declaration] = STATE(2601), + [sym__interface_declaration_specifier] = STATE(2601), + [sym_method_declaration] = STATE(2601), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2601), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [aux_sym_protocol_forward_declaration_repeat1] = STATE(4941), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_COMMA] = ACTIONS(3008), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_SEMI] = ACTIONS(3092), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3094), + [anon_sym_ATend] = ACTIONS(3096), + [sym_optional] = ACTIONS(3098), + [sym_required] = ACTIONS(3098), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1764] = { + [sym_preproc_def] = STATE(2202), + [sym_preproc_function_def] = STATE(2202), + [sym_declaration] = STATE(2202), + [sym_type_definition] = STATE(2202), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2202), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1909), + [sym_parameterized_class_type_arguments] = STATE(5159), + [sym__instance_variables] = STATE(2204), + [aux_sym__interface_declaration] = STATE(2202), + [sym__interface_declaration_specifier] = STATE(2202), + [sym_method_declaration] = STATE(2202), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2202), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3100), + [anon_sym_ATend] = ACTIONS(3102), + [sym_optional] = ACTIONS(3104), + [sym_required] = ACTIONS(3104), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1765] = { + [sym_preproc_def] = STATE(2548), + [sym_preproc_function_def] = STATE(2548), + [sym_declaration] = STATE(2548), + [sym_type_definition] = STATE(2548), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2548), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1932), + [sym_parameterized_class_type_arguments] = STATE(5170), + [sym__instance_variables] = STATE(2549), + [aux_sym__interface_declaration] = STATE(2548), + [sym__interface_declaration_specifier] = STATE(2548), + [sym_method_declaration] = STATE(2548), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2548), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3106), + [anon_sym_ATend] = ACTIONS(3108), + [sym_optional] = ACTIONS(3110), + [sym_required] = ACTIONS(3110), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1766] = { + [sym_preproc_def] = STATE(2097), + [sym_preproc_function_def] = STATE(2097), + [sym_declaration] = STATE(2097), + [sym_type_definition] = STATE(2097), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2097), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1904), + [sym_parameterized_class_type_arguments] = STATE(5214), + [sym__instance_variables] = STATE(2134), + [aux_sym__interface_declaration] = STATE(2097), + [sym__interface_declaration_specifier] = STATE(2097), + [sym_method_declaration] = STATE(2097), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2097), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2458), + [anon_sym_ATend] = ACTIONS(2460), + [sym_optional] = ACTIONS(2462), + [sym_required] = ACTIONS(2462), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1767] = { + [sym_preproc_def] = STATE(2191), + [sym_preproc_function_def] = STATE(2191), + [sym_declaration] = STATE(2191), + [sym_type_definition] = STATE(2191), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2191), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1883), + [sym_parameterized_class_type_arguments] = STATE(5124), + [sym__instance_variables] = STATE(2192), + [aux_sym__interface_declaration] = STATE(2191), + [sym__interface_declaration_specifier] = STATE(2191), + [sym_method_declaration] = STATE(2191), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2191), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3112), + [anon_sym_ATend] = ACTIONS(3114), + [sym_optional] = ACTIONS(3116), + [sym_required] = ACTIONS(3116), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1768] = { + [sym_preproc_def] = STATE(2301), + [sym_preproc_function_def] = STATE(2301), + [sym_declaration] = STATE(2301), + [sym_type_definition] = STATE(2301), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2301), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1894), + [sym__instance_variables] = STATE(2304), + [aux_sym__interface_declaration] = STATE(2301), + [sym__interface_declaration_specifier] = STATE(2301), + [sym_method_declaration] = STATE(2301), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2301), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_LPAREN2] = ACTIONS(3118), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3120), + [anon_sym_ATend] = ACTIONS(3122), + [sym_optional] = ACTIONS(3124), + [sym_required] = ACTIONS(3124), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1769] = { + [sym_preproc_def] = STATE(1998), + [sym_preproc_function_def] = STATE(1998), + [sym_declaration] = STATE(1998), + [sym_type_definition] = STATE(1998), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1998), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1938), + [sym_parameterized_class_type_arguments] = STATE(5152), + [sym__instance_variables] = STATE(1999), + [aux_sym__interface_declaration] = STATE(1998), + [sym__interface_declaration_specifier] = STATE(1998), + [sym_method_declaration] = STATE(1998), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1998), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3126), + [anon_sym_ATend] = ACTIONS(3128), + [sym_optional] = ACTIONS(3130), + [sym_required] = ACTIONS(3130), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1770] = { + [sym_preproc_def] = STATE(2394), + [sym_preproc_function_def] = STATE(2394), + [sym_declaration] = STATE(2394), + [sym_type_definition] = STATE(2394), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2394), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1849), + [sym__instance_variables] = STATE(2379), + [aux_sym__interface_declaration] = STATE(2394), + [sym__interface_declaration_specifier] = STATE(2394), + [sym_method_declaration] = STATE(2394), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2394), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3132), + [anon_sym_ATend] = ACTIONS(3134), + [sym_optional] = ACTIONS(3136), + [sym_required] = ACTIONS(3136), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1771] = { + [sym_preproc_def] = STATE(2061), + [sym_preproc_function_def] = STATE(2061), + [sym_declaration] = STATE(2061), + [sym_type_definition] = STATE(2061), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2061), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1920), + [sym__instance_variables] = STATE(2060), + [aux_sym__interface_declaration] = STATE(2061), + [sym__interface_declaration_specifier] = STATE(2061), + [sym_method_declaration] = STATE(2061), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2061), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3138), + [anon_sym_ATend] = ACTIONS(3140), + [sym_optional] = ACTIONS(3142), + [sym_required] = ACTIONS(3142), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1772] = { + [sym_preproc_def] = STATE(2190), + [sym_preproc_function_def] = STATE(2190), + [sym_declaration] = STATE(2190), + [sym_type_definition] = STATE(2190), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2190), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1881), + [sym__instance_variables] = STATE(2198), + [aux_sym__interface_declaration] = STATE(2190), + [sym__interface_declaration_specifier] = STATE(2190), + [sym_method_declaration] = STATE(2190), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2190), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3144), + [anon_sym_ATend] = ACTIONS(3146), + [sym_optional] = ACTIONS(3148), + [sym_required] = ACTIONS(3148), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1773] = { + [sym_preproc_def] = STATE(2154), + [sym_preproc_function_def] = STATE(2154), + [sym_declaration] = STATE(2154), + [sym_type_definition] = STATE(2154), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2154), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1898), + [sym__instance_variables] = STATE(2157), + [aux_sym__interface_declaration] = STATE(2154), + [sym__interface_declaration_specifier] = STATE(2154), + [sym_method_declaration] = STATE(2154), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2154), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3150), + [anon_sym_ATend] = ACTIONS(3152), + [sym_optional] = ACTIONS(3154), + [sym_required] = ACTIONS(3154), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1774] = { + [sym_preproc_def] = STATE(2645), + [sym_preproc_function_def] = STATE(2645), + [sym_declaration] = STATE(2645), + [sym_type_definition] = STATE(2645), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2645), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1888), + [sym__instance_variables] = STATE(2590), + [aux_sym__interface_declaration] = STATE(2645), + [sym__interface_declaration_specifier] = STATE(2645), + [sym_method_declaration] = STATE(2645), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2645), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3156), + [anon_sym_ATend] = ACTIONS(3158), + [sym_optional] = ACTIONS(3160), + [sym_required] = ACTIONS(3160), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1775] = { + [sym_preproc_def] = STATE(2140), + [sym_preproc_function_def] = STATE(2140), + [sym_declaration] = STATE(2140), + [sym_type_definition] = STATE(2140), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2140), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1900), + [sym__instance_variables] = STATE(2295), + [aux_sym__interface_declaration] = STATE(2140), + [sym__interface_declaration_specifier] = STATE(2140), + [sym_method_declaration] = STATE(2140), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2140), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3162), + [anon_sym_ATend] = ACTIONS(3164), + [sym_optional] = ACTIONS(3166), + [sym_required] = ACTIONS(3166), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1776] = { + [sym_preproc_def] = STATE(2079), + [sym_preproc_function_def] = STATE(2079), + [sym_declaration] = STATE(2079), + [sym_type_definition] = STATE(2079), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2079), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1916), + [sym__instance_variables] = STATE(2078), + [aux_sym__interface_declaration] = STATE(2079), + [sym__interface_declaration_specifier] = STATE(2079), + [sym_method_declaration] = STATE(2079), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2079), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3168), + [anon_sym_ATend] = ACTIONS(3170), + [sym_optional] = ACTIONS(3172), + [sym_required] = ACTIONS(3172), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1777] = { + [sym_preproc_def] = STATE(2066), + [sym_preproc_function_def] = STATE(2066), + [sym_declaration] = STATE(2066), + [sym_type_definition] = STATE(2066), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2066), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1935), + [sym__instance_variables] = STATE(2058), + [aux_sym__interface_declaration] = STATE(2066), + [sym__interface_declaration_specifier] = STATE(2066), + [sym_method_declaration] = STATE(2066), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2066), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3174), + [anon_sym_ATend] = ACTIONS(3176), + [sym_optional] = ACTIONS(3178), + [sym_required] = ACTIONS(3178), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1778] = { + [sym_preproc_def] = STATE(2527), + [sym_preproc_function_def] = STATE(2527), + [sym_declaration] = STATE(2527), + [sym_type_definition] = STATE(2527), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2527), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1824), + [sym__instance_variables] = STATE(2524), + [aux_sym__interface_declaration] = STATE(2527), + [sym__interface_declaration_specifier] = STATE(2527), + [sym_method_declaration] = STATE(2527), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2527), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3180), + [anon_sym_ATend] = ACTIONS(3182), + [sym_optional] = ACTIONS(3184), + [sym_required] = ACTIONS(3184), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1779] = { + [sym_preproc_def] = STATE(2403), + [sym_preproc_function_def] = STATE(2403), + [sym_declaration] = STATE(2403), + [sym_type_definition] = STATE(2403), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2403), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1843), + [sym__instance_variables] = STATE(2401), + [aux_sym__interface_declaration] = STATE(2403), + [sym__interface_declaration_specifier] = STATE(2403), + [sym_method_declaration] = STATE(2403), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2403), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3186), + [anon_sym_ATend] = ACTIONS(3188), + [sym_optional] = ACTIONS(3190), + [sym_required] = ACTIONS(3190), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1780] = { + [sym_preproc_def] = STATE(2380), + [sym_preproc_function_def] = STATE(2380), + [sym_declaration] = STATE(2380), + [sym_type_definition] = STATE(2380), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2380), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1848), + [sym__instance_variables] = STATE(2378), + [aux_sym__interface_declaration] = STATE(2380), + [sym__interface_declaration_specifier] = STATE(2380), + [sym_method_declaration] = STATE(2380), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2380), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3192), + [anon_sym_ATend] = ACTIONS(3194), + [sym_optional] = ACTIONS(3196), + [sym_required] = ACTIONS(3196), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1781] = { + [sym_preproc_def] = STATE(2273), + [sym_preproc_function_def] = STATE(2273), + [sym_declaration] = STATE(2273), + [sym_type_definition] = STATE(2273), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2273), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1864), + [sym__instance_variables] = STATE(2272), + [aux_sym__interface_declaration] = STATE(2273), + [sym__interface_declaration_specifier] = STATE(2273), + [sym_method_declaration] = STATE(2273), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2273), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3198), + [anon_sym_ATend] = ACTIONS(3200), + [sym_optional] = ACTIONS(3202), + [sym_required] = ACTIONS(3202), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1782] = { + [sym_preproc_def] = STATE(1997), + [sym_preproc_function_def] = STATE(1997), + [sym_declaration] = STATE(1997), + [sym_type_definition] = STATE(1997), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1997), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1944), + [sym__instance_variables] = STATE(2268), + [aux_sym__interface_declaration] = STATE(1997), + [sym__interface_declaration_specifier] = STATE(1997), + [sym_method_declaration] = STATE(1997), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1997), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3204), + [anon_sym_ATend] = ACTIONS(3206), + [sym_optional] = ACTIONS(3208), + [sym_required] = ACTIONS(3208), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1783] = { + [sym_preproc_def] = STATE(2345), + [sym_preproc_function_def] = STATE(2345), + [sym_declaration] = STATE(2345), + [sym_type_definition] = STATE(2345), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2345), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1856), + [sym__instance_variables] = STATE(2343), + [aux_sym__interface_declaration] = STATE(2345), + [sym__interface_declaration_specifier] = STATE(2345), + [sym_method_declaration] = STATE(2345), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2345), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3210), + [anon_sym_ATend] = ACTIONS(3212), + [sym_optional] = ACTIONS(3214), + [sym_required] = ACTIONS(3214), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1784] = { + [sym_preproc_def] = STATE(2642), + [sym_preproc_function_def] = STATE(2642), + [sym_declaration] = STATE(2642), + [sym_type_definition] = STATE(2642), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2642), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1820), + [sym__instance_variables] = STATE(2641), + [aux_sym__interface_declaration] = STATE(2642), + [sym__interface_declaration_specifier] = STATE(2642), + [sym_method_declaration] = STATE(2642), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2642), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3216), + [anon_sym_ATend] = ACTIONS(3218), + [sym_optional] = ACTIONS(3220), + [sym_required] = ACTIONS(3220), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1785] = { + [sym_preproc_def] = STATE(2669), + [sym_preproc_function_def] = STATE(2669), + [sym_declaration] = STATE(2669), + [sym_type_definition] = STATE(2669), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2669), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1868), + [sym__instance_variables] = STATE(2661), + [aux_sym__interface_declaration] = STATE(2669), + [sym__interface_declaration_specifier] = STATE(2669), + [sym_method_declaration] = STATE(2669), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2669), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3222), + [anon_sym_ATend] = ACTIONS(3224), + [sym_optional] = ACTIONS(3226), + [sym_required] = ACTIONS(3226), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1786] = { + [sym_preproc_def] = STATE(2326), + [sym_preproc_function_def] = STATE(2326), + [sym_declaration] = STATE(2326), + [sym_type_definition] = STATE(2326), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2326), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1855), + [sym__instance_variables] = STATE(2329), + [aux_sym__interface_declaration] = STATE(2326), + [sym__interface_declaration_specifier] = STATE(2326), + [sym_method_declaration] = STATE(2326), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2326), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3228), + [anon_sym_ATend] = ACTIONS(3230), + [sym_optional] = ACTIONS(3232), + [sym_required] = ACTIONS(3232), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1787] = { + [sym_preproc_def] = STATE(2664), + [sym_preproc_function_def] = STATE(2664), + [sym_declaration] = STATE(2664), + [sym_type_definition] = STATE(2664), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2664), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1870), + [sym__instance_variables] = STATE(2665), + [aux_sym__interface_declaration] = STATE(2664), + [sym__interface_declaration_specifier] = STATE(2664), + [sym_method_declaration] = STATE(2664), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2664), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3234), + [anon_sym_ATend] = ACTIONS(3236), + [sym_optional] = ACTIONS(3238), + [sym_required] = ACTIONS(3238), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1788] = { + [sym_preproc_def] = STATE(2290), + [sym_preproc_function_def] = STATE(2290), + [sym_declaration] = STATE(2290), + [sym_type_definition] = STATE(2290), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2290), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1857), + [sym__instance_variables] = STATE(2303), + [aux_sym__interface_declaration] = STATE(2290), + [sym__interface_declaration_specifier] = STATE(2290), + [sym_method_declaration] = STATE(2290), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2290), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3240), + [anon_sym_ATend] = ACTIONS(3242), + [sym_optional] = ACTIONS(3244), + [sym_required] = ACTIONS(3244), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1789] = { + [sym_preproc_def] = STATE(2275), + [sym_preproc_function_def] = STATE(2275), + [sym_declaration] = STATE(2275), + [sym_type_definition] = STATE(2275), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2275), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1862), + [sym__instance_variables] = STATE(2277), + [aux_sym__interface_declaration] = STATE(2275), + [sym__interface_declaration_specifier] = STATE(2275), + [sym_method_declaration] = STATE(2275), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2275), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3246), + [anon_sym_ATend] = ACTIONS(3248), + [sym_optional] = ACTIONS(3250), + [sym_required] = ACTIONS(3250), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1790] = { + [sym_preproc_def] = STATE(2604), + [sym_preproc_function_def] = STATE(2604), + [sym_declaration] = STATE(2604), + [sym_type_definition] = STATE(2604), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2604), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1896), + [sym__instance_variables] = STATE(2603), + [aux_sym__interface_declaration] = STATE(2604), + [sym__interface_declaration_specifier] = STATE(2604), + [sym_method_declaration] = STATE(2604), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2604), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3252), + [anon_sym_ATend] = ACTIONS(3254), + [sym_optional] = ACTIONS(3256), + [sym_required] = ACTIONS(3256), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1791] = { + [sym_preproc_def] = STATE(2349), + [sym_preproc_function_def] = STATE(2349), + [sym_declaration] = STATE(2349), + [sym_type_definition] = STATE(2349), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2349), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1858), + [sym__instance_variables] = STATE(2330), + [aux_sym__interface_declaration] = STATE(2349), + [sym__interface_declaration_specifier] = STATE(2349), + [sym_method_declaration] = STATE(2349), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2349), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3258), + [anon_sym_ATend] = ACTIONS(3260), + [sym_optional] = ACTIONS(3262), + [sym_required] = ACTIONS(3262), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1792] = { + [sym_preproc_def] = STATE(2253), + [sym_preproc_function_def] = STATE(2253), + [sym_declaration] = STATE(2253), + [sym_type_definition] = STATE(2253), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2253), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1873), + [sym__instance_variables] = STATE(2252), + [aux_sym__interface_declaration] = STATE(2253), + [sym__interface_declaration_specifier] = STATE(2253), + [sym_method_declaration] = STATE(2253), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2253), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3264), + [anon_sym_ATend] = ACTIONS(3266), + [sym_optional] = ACTIONS(3268), + [sym_required] = ACTIONS(3268), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1793] = { + [sym_preproc_def] = STATE(2346), + [sym_preproc_function_def] = STATE(2346), + [sym_declaration] = STATE(2346), + [sym_type_definition] = STATE(2346), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2346), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1853), + [sym__instance_variables] = STATE(2344), + [aux_sym__interface_declaration] = STATE(2346), + [sym__interface_declaration_specifier] = STATE(2346), + [sym_method_declaration] = STATE(2346), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2346), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3270), + [anon_sym_ATend] = ACTIONS(3272), + [sym_optional] = ACTIONS(3274), + [sym_required] = ACTIONS(3274), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1794] = { + [sym_preproc_def] = STATE(2461), + [sym_preproc_function_def] = STATE(2461), + [sym_declaration] = STATE(2461), + [sym_type_definition] = STATE(2461), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2461), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1832), + [sym__instance_variables] = STATE(2445), + [aux_sym__interface_declaration] = STATE(2461), + [sym__interface_declaration_specifier] = STATE(2461), + [sym_method_declaration] = STATE(2461), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2461), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3276), + [anon_sym_ATend] = ACTIONS(3278), + [sym_optional] = ACTIONS(3280), + [sym_required] = ACTIONS(3280), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1795] = { + [sym_preproc_def] = STATE(2663), + [sym_preproc_function_def] = STATE(2663), + [sym_declaration] = STATE(2663), + [sym_type_definition] = STATE(2663), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2663), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1903), + [sym__instance_variables] = STATE(2591), + [aux_sym__interface_declaration] = STATE(2663), + [sym__interface_declaration_specifier] = STATE(2663), + [sym_method_declaration] = STATE(2663), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2663), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3282), + [anon_sym_ATend] = ACTIONS(3284), + [sym_optional] = ACTIONS(3286), + [sym_required] = ACTIONS(3286), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1796] = { + [sym_preproc_def] = STATE(2222), + [sym_preproc_function_def] = STATE(2222), + [sym_declaration] = STATE(2222), + [sym_type_definition] = STATE(2222), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2222), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1876), + [sym__instance_variables] = STATE(2223), + [aux_sym__interface_declaration] = STATE(2222), + [sym__interface_declaration_specifier] = STATE(2222), + [sym_method_declaration] = STATE(2222), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2222), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3288), + [anon_sym_ATend] = ACTIONS(3290), + [sym_optional] = ACTIONS(3292), + [sym_required] = ACTIONS(3292), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1797] = { + [sym_preproc_def] = STATE(1969), + [sym_preproc_function_def] = STATE(1969), + [sym_declaration] = STATE(1969), + [sym_type_definition] = STATE(1969), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1969), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1948), + [sym__instance_variables] = STATE(1972), + [aux_sym__interface_declaration] = STATE(1969), + [sym__interface_declaration_specifier] = STATE(1969), + [sym_method_declaration] = STATE(1969), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1969), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3294), + [anon_sym_ATend] = ACTIONS(3296), + [sym_optional] = ACTIONS(3298), + [sym_required] = ACTIONS(3298), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1798] = { + [sym_preproc_def] = STATE(2002), + [sym_preproc_function_def] = STATE(2002), + [sym_declaration] = STATE(2002), + [sym_type_definition] = STATE(2002), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2002), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1939), + [sym__instance_variables] = STATE(2003), + [aux_sym__interface_declaration] = STATE(2002), + [sym__interface_declaration_specifier] = STATE(2002), + [sym_method_declaration] = STATE(2002), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2002), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3300), + [anon_sym_ATend] = ACTIONS(3302), + [sym_optional] = ACTIONS(3304), + [sym_required] = ACTIONS(3304), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1799] = { + [sym_preproc_def] = STATE(2038), + [sym_preproc_function_def] = STATE(2038), + [sym_declaration] = STATE(2038), + [sym_type_definition] = STATE(2038), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2038), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1922), + [sym__instance_variables] = STATE(2039), + [aux_sym__interface_declaration] = STATE(2038), + [sym__interface_declaration_specifier] = STATE(2038), + [sym_method_declaration] = STATE(2038), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2038), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3306), + [anon_sym_ATend] = ACTIONS(3308), + [sym_optional] = ACTIONS(3310), + [sym_required] = ACTIONS(3310), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1800] = { + [sym_preproc_def] = STATE(2199), + [sym_preproc_function_def] = STATE(2199), + [sym_declaration] = STATE(2199), + [sym_type_definition] = STATE(2199), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2199), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1879), + [sym__instance_variables] = STATE(2200), + [aux_sym__interface_declaration] = STATE(2199), + [sym__interface_declaration_specifier] = STATE(2199), + [sym_method_declaration] = STATE(2199), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2199), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3312), + [anon_sym_ATend] = ACTIONS(3314), + [sym_optional] = ACTIONS(3316), + [sym_required] = ACTIONS(3316), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1801] = { + [sym_preproc_def] = STATE(2153), + [sym_preproc_function_def] = STATE(2153), + [sym_declaration] = STATE(2153), + [sym_type_definition] = STATE(2153), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2153), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1847), + [sym__instance_variables] = STATE(2149), + [aux_sym__interface_declaration] = STATE(2153), + [sym__interface_declaration_specifier] = STATE(2153), + [sym_method_declaration] = STATE(2153), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2153), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3318), + [anon_sym_ATend] = ACTIONS(3320), + [sym_optional] = ACTIONS(3322), + [sym_required] = ACTIONS(3322), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1802] = { + [sym_preproc_def] = STATE(2187), + [sym_preproc_function_def] = STATE(2187), + [sym_declaration] = STATE(2187), + [sym_type_definition] = STATE(2187), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2187), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1884), + [sym__instance_variables] = STATE(2188), + [aux_sym__interface_declaration] = STATE(2187), + [sym__interface_declaration_specifier] = STATE(2187), + [sym_method_declaration] = STATE(2187), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2187), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3324), + [anon_sym_ATend] = ACTIONS(3326), + [sym_optional] = ACTIONS(3328), + [sym_required] = ACTIONS(3328), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1803] = { + [sym_preproc_def] = STATE(2574), + [sym_preproc_function_def] = STATE(2574), + [sym_declaration] = STATE(2574), + [sym_type_definition] = STATE(2574), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2574), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1951), + [sym__instance_variables] = STATE(2572), + [aux_sym__interface_declaration] = STATE(2574), + [sym__interface_declaration_specifier] = STATE(2574), + [sym_method_declaration] = STATE(2574), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2574), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3330), + [anon_sym_ATend] = ACTIONS(3332), + [sym_optional] = ACTIONS(3334), + [sym_required] = ACTIONS(3334), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1804] = { + [sym_preproc_def] = STATE(2488), + [sym_preproc_function_def] = STATE(2488), + [sym_declaration] = STATE(2488), + [sym_type_definition] = STATE(2488), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2488), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1945), + [sym__instance_variables] = STATE(2503), + [aux_sym__interface_declaration] = STATE(2488), + [sym__interface_declaration_specifier] = STATE(2488), + [sym_method_declaration] = STATE(2488), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2488), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3336), + [anon_sym_ATend] = ACTIONS(3338), + [sym_optional] = ACTIONS(3340), + [sym_required] = ACTIONS(3340), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1805] = { + [sym_preproc_def] = STATE(2483), + [sym_preproc_function_def] = STATE(2483), + [sym_declaration] = STATE(2483), + [sym_type_definition] = STATE(2483), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2483), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1833), + [sym__instance_variables] = STATE(2462), + [aux_sym__interface_declaration] = STATE(2483), + [sym__interface_declaration_specifier] = STATE(2483), + [sym_method_declaration] = STATE(2483), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2483), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3342), + [anon_sym_ATend] = ACTIONS(3344), + [sym_optional] = ACTIONS(3346), + [sym_required] = ACTIONS(3346), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1806] = { + [sym_preproc_def] = STATE(1980), + [sym_preproc_function_def] = STATE(1980), + [sym_declaration] = STATE(1980), + [sym_type_definition] = STATE(1980), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1980), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1954), + [sym__instance_variables] = STATE(1979), + [aux_sym__interface_declaration] = STATE(1980), + [sym__interface_declaration_specifier] = STATE(1980), + [sym_method_declaration] = STATE(1980), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1980), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3348), + [anon_sym_ATend] = ACTIONS(3350), + [sym_optional] = ACTIONS(3352), + [sym_required] = ACTIONS(3352), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1807] = { + [sym_preproc_def] = STATE(2073), + [sym_preproc_function_def] = STATE(2073), + [sym_declaration] = STATE(2073), + [sym_type_definition] = STATE(2073), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2073), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1919), + [sym__instance_variables] = STATE(2070), + [aux_sym__interface_declaration] = STATE(2073), + [sym__interface_declaration_specifier] = STATE(2073), + [sym_method_declaration] = STATE(2073), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2073), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3354), + [anon_sym_ATend] = ACTIONS(3356), + [sym_optional] = ACTIONS(3358), + [sym_required] = ACTIONS(3358), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1808] = { + [sym_preproc_def] = STATE(2041), + [sym_preproc_function_def] = STATE(2041), + [sym_declaration] = STATE(2041), + [sym_type_definition] = STATE(2041), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2041), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1921), + [sym__instance_variables] = STATE(2043), + [aux_sym__interface_declaration] = STATE(2041), + [sym__interface_declaration_specifier] = STATE(2041), + [sym_method_declaration] = STATE(2041), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2041), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3360), + [anon_sym_ATend] = ACTIONS(3362), + [sym_optional] = ACTIONS(3364), + [sym_required] = ACTIONS(3364), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1809] = { + [sym_preproc_def] = STATE(2144), + [sym_preproc_function_def] = STATE(2144), + [sym_declaration] = STATE(2144), + [sym_type_definition] = STATE(2144), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2144), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1940), + [sym__instance_variables] = STATE(2138), + [aux_sym__interface_declaration] = STATE(2144), + [sym__interface_declaration_specifier] = STATE(2144), + [sym_method_declaration] = STATE(2144), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2144), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3366), + [anon_sym_ATend] = ACTIONS(3368), + [sym_optional] = ACTIONS(3370), + [sym_required] = ACTIONS(3370), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1810] = { + [sym_preproc_def] = STATE(2158), + [sym_preproc_function_def] = STATE(2158), + [sym_declaration] = STATE(2158), + [sym_type_definition] = STATE(2158), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2158), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1899), + [sym__instance_variables] = STATE(2161), + [aux_sym__interface_declaration] = STATE(2158), + [sym__interface_declaration_specifier] = STATE(2158), + [sym_method_declaration] = STATE(2158), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2158), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3372), + [anon_sym_ATend] = ACTIONS(3374), + [sym_optional] = ACTIONS(3376), + [sym_required] = ACTIONS(3376), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1811] = { + [sym_preproc_def] = STATE(2602), + [sym_preproc_function_def] = STATE(2602), + [sym_declaration] = STATE(2602), + [sym_type_definition] = STATE(2602), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2602), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1822), + [sym__instance_variables] = STATE(2605), + [aux_sym__interface_declaration] = STATE(2602), + [sym__interface_declaration_specifier] = STATE(2602), + [sym_method_declaration] = STATE(2602), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2602), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3378), + [anon_sym_ATend] = ACTIONS(3380), + [sym_optional] = ACTIONS(3382), + [sym_required] = ACTIONS(3382), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1812] = { + [sym_preproc_def] = STATE(2563), + [sym_preproc_function_def] = STATE(2563), + [sym_declaration] = STATE(2563), + [sym_type_definition] = STATE(2563), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2563), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1918), + [sym__instance_variables] = STATE(2562), + [aux_sym__interface_declaration] = STATE(2563), + [sym__interface_declaration_specifier] = STATE(2563), + [sym_method_declaration] = STATE(2563), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2563), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3384), + [anon_sym_ATend] = ACTIONS(3386), + [sym_optional] = ACTIONS(3388), + [sym_required] = ACTIONS(3388), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1813] = { + [sym_preproc_def] = STATE(2545), + [sym_preproc_function_def] = STATE(2545), + [sym_declaration] = STATE(2545), + [sym_type_definition] = STATE(2545), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2545), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1941), + [sym__instance_variables] = STATE(2546), + [aux_sym__interface_declaration] = STATE(2545), + [sym__interface_declaration_specifier] = STATE(2545), + [sym_method_declaration] = STATE(2545), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2545), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3390), + [anon_sym_ATend] = ACTIONS(3392), + [sym_optional] = ACTIONS(3394), + [sym_required] = ACTIONS(3394), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1814] = { + [sym_preproc_def] = STATE(2551), + [sym_preproc_function_def] = STATE(2551), + [sym_declaration] = STATE(2551), + [sym_type_definition] = STATE(2551), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2551), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1924), + [sym__instance_variables] = STATE(2552), + [aux_sym__interface_declaration] = STATE(2551), + [sym__interface_declaration_specifier] = STATE(2551), + [sym_method_declaration] = STATE(2551), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2551), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3396), + [anon_sym_ATend] = ACTIONS(3398), + [sym_optional] = ACTIONS(3400), + [sym_required] = ACTIONS(3400), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1815] = { + [sym_preproc_def] = STATE(2137), + [sym_preproc_function_def] = STATE(2137), + [sym_declaration] = STATE(2137), + [sym_type_definition] = STATE(2137), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2137), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1911), + [sym__instance_variables] = STATE(2126), + [aux_sym__interface_declaration] = STATE(2137), + [sym__interface_declaration_specifier] = STATE(2137), + [sym_method_declaration] = STATE(2137), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2137), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3402), + [anon_sym_ATend] = ACTIONS(3404), + [sym_optional] = ACTIONS(3406), + [sym_required] = ACTIONS(3406), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1816] = { + [sym_preproc_def] = STATE(2417), + [sym_preproc_function_def] = STATE(2417), + [sym_declaration] = STATE(2417), + [sym_type_definition] = STATE(2417), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2417), + [sym_macro_type_specifier] = STATE(3354), + [sym_superclass_reference] = STATE(1837), + [sym__instance_variables] = STATE(2416), + [aux_sym__interface_declaration] = STATE(2417), + [sym__interface_declaration_specifier] = STATE(2417), + [sym_method_declaration] = STATE(2417), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2417), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_COLON] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3408), + [anon_sym_ATend] = ACTIONS(3410), + [sym_optional] = ACTIONS(3412), + [sym_required] = ACTIONS(3412), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1817] = { + [sym_preproc_def] = STATE(2276), + [sym_preproc_function_def] = STATE(2276), + [sym_declaration] = STATE(2276), + [sym_type_definition] = STATE(2276), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2276), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1866), + [sym__instance_variables] = STATE(2271), + [aux_sym__interface_declaration] = STATE(2276), + [sym__interface_declaration_specifier] = STATE(2276), + [sym_method_declaration] = STATE(2276), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2276), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3414), + [anon_sym_ATend] = ACTIONS(3416), + [sym_optional] = ACTIONS(3418), + [sym_required] = ACTIONS(3418), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1818] = { + [sym_preproc_def] = STATE(2517), + [sym_preproc_function_def] = STATE(2517), + [sym_declaration] = STATE(2517), + [sym_type_definition] = STATE(2517), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2517), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2515), + [aux_sym__interface_declaration] = STATE(2517), + [sym__interface_declaration_specifier] = STATE(2517), + [sym_method_declaration] = STATE(2517), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2517), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3420), + [anon_sym_ATend] = ACTIONS(3422), + [sym_optional] = ACTIONS(3424), + [sym_required] = ACTIONS(3424), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1819] = { + [sym_preproc_def] = STATE(2233), + [sym_preproc_function_def] = STATE(2233), + [sym_declaration] = STATE(2233), + [sym_type_definition] = STATE(2233), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2233), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2232), + [aux_sym__interface_declaration] = STATE(2233), + [sym__interface_declaration_specifier] = STATE(2233), + [sym_method_declaration] = STATE(2233), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2233), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3426), + [anon_sym_ATend] = ACTIONS(3428), + [sym_optional] = ACTIONS(3430), + [sym_required] = ACTIONS(3430), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1820] = { + [sym_preproc_def] = STATE(2533), + [sym_preproc_function_def] = STATE(2533), + [sym_declaration] = STATE(2533), + [sym_type_definition] = STATE(2533), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2533), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2534), + [aux_sym__interface_declaration] = STATE(2533), + [sym__interface_declaration_specifier] = STATE(2533), + [sym_method_declaration] = STATE(2533), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2533), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3432), + [anon_sym_ATend] = ACTIONS(3434), + [sym_optional] = ACTIONS(3436), + [sym_required] = ACTIONS(3436), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1821] = { + [sym_preproc_def] = STATE(2097), + [sym_preproc_function_def] = STATE(2097), + [sym_declaration] = STATE(2097), + [sym_type_definition] = STATE(2097), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2097), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2134), + [aux_sym__interface_declaration] = STATE(2097), + [sym__interface_declaration_specifier] = STATE(2097), + [sym_method_declaration] = STATE(2097), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2097), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2458), + [anon_sym_ATend] = ACTIONS(2460), + [sym_optional] = ACTIONS(2462), + [sym_required] = ACTIONS(2462), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1822] = { + [sym_preproc_def] = STATE(2368), + [sym_preproc_function_def] = STATE(2368), + [sym_declaration] = STATE(2368), + [sym_type_definition] = STATE(2368), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2368), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2367), + [aux_sym__interface_declaration] = STATE(2368), + [sym__interface_declaration_specifier] = STATE(2368), + [sym_method_declaration] = STATE(2368), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2368), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3438), + [anon_sym_ATend] = ACTIONS(3440), + [sym_optional] = ACTIONS(3442), + [sym_required] = ACTIONS(3442), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1823] = { + [sym_preproc_def] = STATE(2243), + [sym_preproc_function_def] = STATE(2243), + [sym_declaration] = STATE(2243), + [sym_type_definition] = STATE(2243), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2243), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(2245), + [aux_sym__interface_declaration] = STATE(2243), + [sym__interface_declaration_specifier] = STATE(2243), + [sym_method_declaration] = STATE(2243), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2243), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3444), + [anon_sym_ATend] = ACTIONS(3446), + [sym_optional] = ACTIONS(3448), + [sym_required] = ACTIONS(3448), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1824] = { + [sym_preproc_def] = STATE(2557), + [sym_preproc_function_def] = STATE(2557), + [sym_declaration] = STATE(2557), + [sym_type_definition] = STATE(2557), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2557), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2558), + [aux_sym__interface_declaration] = STATE(2557), + [sym__interface_declaration_specifier] = STATE(2557), + [sym_method_declaration] = STATE(2557), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2557), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3450), + [anon_sym_ATend] = ACTIONS(3452), + [sym_optional] = ACTIONS(3454), + [sym_required] = ACTIONS(3454), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1825] = { + [sym_preproc_def] = STATE(2581), + [sym_preproc_function_def] = STATE(2581), + [sym_declaration] = STATE(2581), + [sym_type_definition] = STATE(2581), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2581), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2584), + [aux_sym__interface_declaration] = STATE(2581), + [sym__interface_declaration_specifier] = STATE(2581), + [sym_method_declaration] = STATE(2581), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2581), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3456), + [anon_sym_ATend] = ACTIONS(3458), + [sym_optional] = ACTIONS(3460), + [sym_required] = ACTIONS(3460), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1826] = { + [sym_preproc_def] = STATE(2651), + [sym_preproc_function_def] = STATE(2651), + [sym_declaration] = STATE(2651), + [sym_type_definition] = STATE(2651), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2651), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2597), + [aux_sym__interface_declaration] = STATE(2651), + [sym__interface_declaration_specifier] = STATE(2651), + [sym_method_declaration] = STATE(2651), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2651), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3080), + [anon_sym_ATend] = ACTIONS(3082), + [sym_optional] = ACTIONS(3084), + [sym_required] = ACTIONS(3084), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1827] = { + [sym_preproc_def] = STATE(2502), + [sym_preproc_function_def] = STATE(2502), + [sym_declaration] = STATE(2502), + [sym_type_definition] = STATE(2502), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2502), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2501), + [aux_sym__interface_declaration] = STATE(2502), + [sym__interface_declaration_specifier] = STATE(2502), + [sym_method_declaration] = STATE(2502), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2502), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3462), + [anon_sym_ATend] = ACTIONS(3464), + [sym_optional] = ACTIONS(3466), + [sym_required] = ACTIONS(3466), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1828] = { + [sym_preproc_def] = STATE(2607), + [sym_preproc_function_def] = STATE(2607), + [sym_declaration] = STATE(2607), + [sym_type_definition] = STATE(2607), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2607), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2611), + [aux_sym__interface_declaration] = STATE(2607), + [sym__interface_declaration_specifier] = STATE(2607), + [sym_method_declaration] = STATE(2607), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2607), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3468), + [anon_sym_ATend] = ACTIONS(3470), + [sym_optional] = ACTIONS(3472), + [sym_required] = ACTIONS(3472), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1829] = { + [sym_preproc_def] = STATE(2029), + [sym_preproc_function_def] = STATE(2029), + [sym_declaration] = STATE(2029), + [sym_type_definition] = STATE(2029), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2029), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2034), + [aux_sym__interface_declaration] = STATE(2029), + [sym__interface_declaration_specifier] = STATE(2029), + [sym_method_declaration] = STATE(2029), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2029), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3474), + [anon_sym_ATend] = ACTIONS(3476), + [sym_optional] = ACTIONS(3478), + [sym_required] = ACTIONS(3478), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1830] = { + [sym_preproc_def] = STATE(2339), + [sym_preproc_function_def] = STATE(2339), + [sym_declaration] = STATE(2339), + [sym_type_definition] = STATE(2339), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2339), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2258), + [aux_sym__interface_declaration] = STATE(2339), + [sym__interface_declaration_specifier] = STATE(2339), + [sym_method_declaration] = STATE(2339), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2339), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3480), + [anon_sym_ATend] = ACTIONS(3482), + [sym_optional] = ACTIONS(3484), + [sym_required] = ACTIONS(3484), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1831] = { + [sym_preproc_def] = STATE(2193), + [sym_preproc_function_def] = STATE(2193), + [sym_declaration] = STATE(2193), + [sym_type_definition] = STATE(2193), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2193), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2205), + [aux_sym__interface_declaration] = STATE(2193), + [sym__interface_declaration_specifier] = STATE(2193), + [sym_method_declaration] = STATE(2193), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2193), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2440), + [anon_sym_ATend] = ACTIONS(2442), + [sym_optional] = ACTIONS(2444), + [sym_required] = ACTIONS(2444), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1832] = { + [sym_preproc_def] = STATE(2635), + [sym_preproc_function_def] = STATE(2635), + [sym_declaration] = STATE(2635), + [sym_type_definition] = STATE(2635), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2635), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2638), + [aux_sym__interface_declaration] = STATE(2635), + [sym__interface_declaration_specifier] = STATE(2635), + [sym_method_declaration] = STATE(2635), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2635), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3486), + [anon_sym_ATend] = ACTIONS(3488), + [sym_optional] = ACTIONS(3490), + [sym_required] = ACTIONS(3490), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1833] = { + [sym_preproc_def] = STATE(2194), + [sym_preproc_function_def] = STATE(2194), + [sym_declaration] = STATE(2194), + [sym_type_definition] = STATE(2194), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2194), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2195), + [aux_sym__interface_declaration] = STATE(2194), + [sym__interface_declaration_specifier] = STATE(2194), + [sym_method_declaration] = STATE(2194), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2194), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3492), + [anon_sym_ATend] = ACTIONS(3494), + [sym_optional] = ACTIONS(3496), + [sym_required] = ACTIONS(3496), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1834] = { + [sym_preproc_def] = STATE(2460), + [sym_preproc_function_def] = STATE(2460), + [sym_declaration] = STATE(2460), + [sym_type_definition] = STATE(2460), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2460), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2495), + [aux_sym__interface_declaration] = STATE(2460), + [sym__interface_declaration_specifier] = STATE(2460), + [sym_method_declaration] = STATE(2460), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2460), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3498), + [anon_sym_ATend] = ACTIONS(3500), + [sym_optional] = ACTIONS(3502), + [sym_required] = ACTIONS(3502), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1835] = { + [sym_preproc_def] = STATE(2494), + [sym_preproc_function_def] = STATE(2494), + [sym_declaration] = STATE(2494), + [sym_type_definition] = STATE(2494), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2494), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2493), + [aux_sym__interface_declaration] = STATE(2494), + [sym__interface_declaration_specifier] = STATE(2494), + [sym_method_declaration] = STATE(2494), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2494), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3504), + [anon_sym_ATend] = ACTIONS(3506), + [sym_optional] = ACTIONS(3508), + [sym_required] = ACTIONS(3508), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1836] = { + [sym_preproc_def] = STATE(2013), + [sym_preproc_function_def] = STATE(2013), + [sym_declaration] = STATE(2013), + [sym_type_definition] = STATE(2013), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2013), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2016), + [aux_sym__interface_declaration] = STATE(2013), + [sym__interface_declaration_specifier] = STATE(2013), + [sym_method_declaration] = STATE(2013), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2013), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3510), + [anon_sym_ATend] = ACTIONS(3512), + [sym_optional] = ACTIONS(3514), + [sym_required] = ACTIONS(3514), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1837] = { + [sym_preproc_def] = STATE(2489), + [sym_preproc_function_def] = STATE(2489), + [sym_declaration] = STATE(2489), + [sym_type_definition] = STATE(2489), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2489), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2479), + [aux_sym__interface_declaration] = STATE(2489), + [sym__interface_declaration_specifier] = STATE(2489), + [sym_method_declaration] = STATE(2489), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2489), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3516), + [anon_sym_ATend] = ACTIONS(3518), + [sym_optional] = ACTIONS(3520), + [sym_required] = ACTIONS(3520), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1838] = { + [sym_preproc_def] = STATE(2114), + [sym_preproc_function_def] = STATE(2114), + [sym_declaration] = STATE(2114), + [sym_type_definition] = STATE(2114), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2114), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2082), + [aux_sym__interface_declaration] = STATE(2114), + [sym__interface_declaration_specifier] = STATE(2114), + [sym_method_declaration] = STATE(2114), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2114), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3522), + [anon_sym_ATend] = ACTIONS(3524), + [sym_optional] = ACTIONS(3526), + [sym_required] = ACTIONS(3526), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1839] = { + [sym_preproc_def] = STATE(2473), + [sym_preproc_function_def] = STATE(2473), + [sym_declaration] = STATE(2473), + [sym_type_definition] = STATE(2473), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2473), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2472), + [aux_sym__interface_declaration] = STATE(2473), + [sym__interface_declaration_specifier] = STATE(2473), + [sym_method_declaration] = STATE(2473), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2473), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3528), + [anon_sym_ATend] = ACTIONS(3530), + [sym_optional] = ACTIONS(3532), + [sym_required] = ACTIONS(3532), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1840] = { + [sym_preproc_def] = STATE(2470), + [sym_preproc_function_def] = STATE(2470), + [sym_declaration] = STATE(2470), + [sym_type_definition] = STATE(2470), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2470), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2467), + [aux_sym__interface_declaration] = STATE(2470), + [sym__interface_declaration_specifier] = STATE(2470), + [sym_method_declaration] = STATE(2470), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2470), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3534), + [anon_sym_ATend] = ACTIONS(3536), + [sym_optional] = ACTIONS(3538), + [sym_required] = ACTIONS(3538), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1841] = { + [sym_preproc_def] = STATE(2643), + [sym_preproc_function_def] = STATE(2643), + [sym_declaration] = STATE(2643), + [sym_type_definition] = STATE(2643), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2643), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2646), + [aux_sym__interface_declaration] = STATE(2643), + [sym__interface_declaration_specifier] = STATE(2643), + [sym_method_declaration] = STATE(2643), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2643), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3540), + [anon_sym_ATend] = ACTIONS(3542), + [sym_optional] = ACTIONS(3544), + [sym_required] = ACTIONS(3544), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1842] = { + [sym_preproc_def] = STATE(2444), + [sym_preproc_function_def] = STATE(2444), + [sym_declaration] = STATE(2444), + [sym_type_definition] = STATE(2444), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2444), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2443), + [aux_sym__interface_declaration] = STATE(2444), + [sym__interface_declaration_specifier] = STATE(2444), + [sym_method_declaration] = STATE(2444), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2444), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3546), + [anon_sym_ATend] = ACTIONS(3548), + [sym_optional] = ACTIONS(3550), + [sym_required] = ACTIONS(3550), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1843] = { + [sym_preproc_def] = STATE(2064), + [sym_preproc_function_def] = STATE(2064), + [sym_declaration] = STATE(2064), + [sym_type_definition] = STATE(2064), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2064), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2063), + [aux_sym__interface_declaration] = STATE(2064), + [sym__interface_declaration_specifier] = STATE(2064), + [sym_method_declaration] = STATE(2064), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2064), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3552), + [anon_sym_ATend] = ACTIONS(3554), + [sym_optional] = ACTIONS(3556), + [sym_required] = ACTIONS(3556), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1844] = { + [sym_preproc_def] = STATE(1990), + [sym_preproc_function_def] = STATE(1990), + [sym_declaration] = STATE(1990), + [sym_type_definition] = STATE(1990), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1990), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2004), + [aux_sym__interface_declaration] = STATE(1990), + [sym__interface_declaration_specifier] = STATE(1990), + [sym_method_declaration] = STATE(1990), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1990), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3558), + [anon_sym_ATend] = ACTIONS(3560), + [sym_optional] = ACTIONS(3562), + [sym_required] = ACTIONS(3562), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1845] = { + [sym_preproc_def] = STATE(2131), + [sym_preproc_function_def] = STATE(2131), + [sym_declaration] = STATE(2131), + [sym_type_definition] = STATE(2131), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2131), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2130), + [aux_sym__interface_declaration] = STATE(2131), + [sym__interface_declaration_specifier] = STATE(2131), + [sym_method_declaration] = STATE(2131), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2131), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3564), + [anon_sym_ATend] = ACTIONS(3566), + [sym_optional] = ACTIONS(3568), + [sym_required] = ACTIONS(3568), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1846] = { + [sym_preproc_def] = STATE(2419), + [sym_preproc_function_def] = STATE(2419), + [sym_declaration] = STATE(2419), + [sym_type_definition] = STATE(2419), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2419), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2415), + [aux_sym__interface_declaration] = STATE(2419), + [sym__interface_declaration_specifier] = STATE(2419), + [sym_method_declaration] = STATE(2419), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2419), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2500), + [anon_sym_ATend] = ACTIONS(2502), + [sym_optional] = ACTIONS(2504), + [sym_required] = ACTIONS(2504), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1847] = { + [sym_preproc_def] = STATE(2497), + [sym_preproc_function_def] = STATE(2497), + [sym_declaration] = STATE(2497), + [sym_type_definition] = STATE(2497), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2497), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(1991), + [aux_sym__interface_declaration] = STATE(2497), + [sym__interface_declaration_specifier] = STATE(2497), + [sym_method_declaration] = STATE(2497), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2497), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3570), + [anon_sym_ATend] = ACTIONS(3572), + [sym_optional] = ACTIONS(3574), + [sym_required] = ACTIONS(3574), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1848] = { + [sym_preproc_def] = STATE(2055), + [sym_preproc_function_def] = STATE(2055), + [sym_declaration] = STATE(2055), + [sym_type_definition] = STATE(2055), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2055), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2054), + [aux_sym__interface_declaration] = STATE(2055), + [sym__interface_declaration_specifier] = STATE(2055), + [sym_method_declaration] = STATE(2055), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2055), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3576), + [anon_sym_ATend] = ACTIONS(3578), + [sym_optional] = ACTIONS(3580), + [sym_required] = ACTIONS(3580), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1849] = { + [sym_preproc_def] = STATE(2122), + [sym_preproc_function_def] = STATE(2122), + [sym_declaration] = STATE(2122), + [sym_type_definition] = STATE(2122), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2122), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2120), + [aux_sym__interface_declaration] = STATE(2122), + [sym__interface_declaration_specifier] = STATE(2122), + [sym_method_declaration] = STATE(2122), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2122), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3582), + [anon_sym_ATend] = ACTIONS(3584), + [sym_optional] = ACTIONS(3586), + [sym_required] = ACTIONS(3586), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1850] = { + [sym_preproc_def] = STATE(2150), + [sym_preproc_function_def] = STATE(2150), + [sym_declaration] = STATE(2150), + [sym_type_definition] = STATE(2150), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2150), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2146), + [aux_sym__interface_declaration] = STATE(2150), + [sym__interface_declaration_specifier] = STATE(2150), + [sym_method_declaration] = STATE(2150), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2150), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3588), + [anon_sym_ATend] = ACTIONS(3590), + [sym_optional] = ACTIONS(3592), + [sym_required] = ACTIONS(3592), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1851] = { + [sym_preproc_def] = STATE(2525), + [sym_preproc_function_def] = STATE(2525), + [sym_declaration] = STATE(2525), + [sym_type_definition] = STATE(2525), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2525), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(2636), + [aux_sym__interface_declaration] = STATE(2525), + [sym__interface_declaration_specifier] = STATE(2525), + [sym_method_declaration] = STATE(2525), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2525), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3594), + [anon_sym_ATend] = ACTIONS(3596), + [sym_optional] = ACTIONS(3598), + [sym_required] = ACTIONS(3598), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1852] = { + [sym_preproc_def] = STATE(2648), + [sym_preproc_function_def] = STATE(2648), + [sym_declaration] = STATE(2648), + [sym_type_definition] = STATE(2648), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2648), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2649), + [aux_sym__interface_declaration] = STATE(2648), + [sym__interface_declaration_specifier] = STATE(2648), + [sym_method_declaration] = STATE(2648), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2648), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3600), + [anon_sym_ATend] = ACTIONS(3602), + [sym_optional] = ACTIONS(3604), + [sym_required] = ACTIONS(3604), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1853] = { + [sym_preproc_def] = STATE(2432), + [sym_preproc_function_def] = STATE(2432), + [sym_declaration] = STATE(2432), + [sym_type_definition] = STATE(2432), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2432), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2431), + [aux_sym__interface_declaration] = STATE(2432), + [sym__interface_declaration_specifier] = STATE(2432), + [sym_method_declaration] = STATE(2432), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2432), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3606), + [anon_sym_ATend] = ACTIONS(3608), + [sym_optional] = ACTIONS(3610), + [sym_required] = ACTIONS(3610), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1854] = { + [sym_preproc_def] = STATE(2115), + [sym_preproc_function_def] = STATE(2115), + [sym_declaration] = STATE(2115), + [sym_type_definition] = STATE(2115), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2115), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2112), + [aux_sym__interface_declaration] = STATE(2115), + [sym__interface_declaration_specifier] = STATE(2115), + [sym_method_declaration] = STATE(2115), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2115), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3612), + [anon_sym_ATend] = ACTIONS(3614), + [sym_optional] = ACTIONS(3616), + [sym_required] = ACTIONS(3616), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1855] = { + [sym_preproc_def] = STATE(2247), + [sym_preproc_function_def] = STATE(2247), + [sym_declaration] = STATE(2247), + [sym_type_definition] = STATE(2247), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2247), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2225), + [aux_sym__interface_declaration] = STATE(2247), + [sym__interface_declaration_specifier] = STATE(2247), + [sym_method_declaration] = STATE(2247), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2247), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3618), + [anon_sym_ATend] = ACTIONS(3620), + [sym_optional] = ACTIONS(3622), + [sym_required] = ACTIONS(3622), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1856] = { + [sym_preproc_def] = STATE(2051), + [sym_preproc_function_def] = STATE(2051), + [sym_declaration] = STATE(2051), + [sym_type_definition] = STATE(2051), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2051), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2049), + [aux_sym__interface_declaration] = STATE(2051), + [sym__interface_declaration_specifier] = STATE(2051), + [sym_method_declaration] = STATE(2051), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2051), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3624), + [anon_sym_ATend] = ACTIONS(3626), + [sym_optional] = ACTIONS(3628), + [sym_required] = ACTIONS(3628), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1857] = { + [sym_preproc_def] = STATE(2267), + [sym_preproc_function_def] = STATE(2267), + [sym_declaration] = STATE(2267), + [sym_type_definition] = STATE(2267), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2267), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2262), + [aux_sym__interface_declaration] = STATE(2267), + [sym__interface_declaration_specifier] = STATE(2267), + [sym_method_declaration] = STATE(2267), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2267), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3630), + [anon_sym_ATend] = ACTIONS(3632), + [sym_optional] = ACTIONS(3634), + [sym_required] = ACTIONS(3634), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1858] = { + [sym_preproc_def] = STATE(1971), + [sym_preproc_function_def] = STATE(1971), + [sym_declaration] = STATE(1971), + [sym_type_definition] = STATE(1971), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1971), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(1970), + [aux_sym__interface_declaration] = STATE(1971), + [sym__interface_declaration_specifier] = STATE(1971), + [sym_method_declaration] = STATE(1971), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1971), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3636), + [anon_sym_ATend] = ACTIONS(3638), + [sym_optional] = ACTIONS(3640), + [sym_required] = ACTIONS(3640), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1859] = { + [sym_preproc_def] = STATE(2567), + [sym_preproc_function_def] = STATE(2567), + [sym_declaration] = STATE(2567), + [sym_type_definition] = STATE(2567), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2567), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2566), + [aux_sym__interface_declaration] = STATE(2567), + [sym__interface_declaration_specifier] = STATE(2567), + [sym_method_declaration] = STATE(2567), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2567), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3642), + [anon_sym_ATend] = ACTIONS(3644), + [sym_optional] = ACTIONS(3646), + [sym_required] = ACTIONS(3646), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1860] = { + [sym_preproc_def] = STATE(2159), + [sym_preproc_function_def] = STATE(2159), + [sym_declaration] = STATE(2159), + [sym_type_definition] = STATE(2159), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2159), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2160), + [aux_sym__interface_declaration] = STATE(2159), + [sym__interface_declaration_specifier] = STATE(2159), + [sym_method_declaration] = STATE(2159), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2159), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2452), + [anon_sym_ATend] = ACTIONS(2454), + [sym_optional] = ACTIONS(2456), + [sym_required] = ACTIONS(2456), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1861] = { + [sym_preproc_def] = STATE(2184), + [sym_preproc_function_def] = STATE(2184), + [sym_declaration] = STATE(2184), + [sym_type_definition] = STATE(2184), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2184), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2183), + [aux_sym__interface_declaration] = STATE(2184), + [sym__interface_declaration_specifier] = STATE(2184), + [sym_method_declaration] = STATE(2184), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2184), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3648), + [anon_sym_ATend] = ACTIONS(3650), + [sym_optional] = ACTIONS(3652), + [sym_required] = ACTIONS(3652), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1862] = { + [sym_preproc_def] = STATE(2423), + [sym_preproc_function_def] = STATE(2423), + [sym_declaration] = STATE(2423), + [sym_type_definition] = STATE(2423), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2423), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2279), + [aux_sym__interface_declaration] = STATE(2423), + [sym__interface_declaration_specifier] = STATE(2423), + [sym_method_declaration] = STATE(2423), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2423), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3654), + [anon_sym_ATend] = ACTIONS(3656), + [sym_optional] = ACTIONS(3658), + [sym_required] = ACTIONS(3658), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1863] = { + [sym_preproc_def] = STATE(2042), + [sym_preproc_function_def] = STATE(2042), + [sym_declaration] = STATE(2042), + [sym_type_definition] = STATE(2042), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2042), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2037), + [aux_sym__interface_declaration] = STATE(2042), + [sym__interface_declaration_specifier] = STATE(2042), + [sym_method_declaration] = STATE(2042), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2042), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3660), + [anon_sym_ATend] = ACTIONS(3662), + [sym_optional] = ACTIONS(3664), + [sym_required] = ACTIONS(3664), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1864] = { + [sym_preproc_def] = STATE(2406), + [sym_preproc_function_def] = STATE(2406), + [sym_declaration] = STATE(2406), + [sym_type_definition] = STATE(2406), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2406), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2405), + [aux_sym__interface_declaration] = STATE(2406), + [sym__interface_declaration_specifier] = STATE(2406), + [sym_method_declaration] = STATE(2406), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2406), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3666), + [anon_sym_ATend] = ACTIONS(3668), + [sym_optional] = ACTIONS(3670), + [sym_required] = ACTIONS(3670), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1865] = { + [sym_preproc_def] = STATE(2400), + [sym_preproc_function_def] = STATE(2400), + [sym_declaration] = STATE(2400), + [sym_type_definition] = STATE(2400), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2400), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2399), + [aux_sym__interface_declaration] = STATE(2400), + [sym__interface_declaration_specifier] = STATE(2400), + [sym_method_declaration] = STATE(2400), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2400), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3672), + [anon_sym_ATend] = ACTIONS(3674), + [sym_optional] = ACTIONS(3676), + [sym_required] = ACTIONS(3676), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1866] = { + [sym_preproc_def] = STATE(2250), + [sym_preproc_function_def] = STATE(2250), + [sym_declaration] = STATE(2250), + [sym_type_definition] = STATE(2250), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2250), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2251), + [aux_sym__interface_declaration] = STATE(2250), + [sym__interface_declaration_specifier] = STATE(2250), + [sym_method_declaration] = STATE(2250), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2250), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3678), + [anon_sym_ATend] = ACTIONS(3680), + [sym_optional] = ACTIONS(3682), + [sym_required] = ACTIONS(3682), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1867] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2355), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2397), + [aux_sym__interface_declaration] = STATE(2355), + [sym__interface_declaration_specifier] = STATE(2355), + [sym_method_declaration] = STATE(2355), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2355), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3684), + [anon_sym_ATend] = ACTIONS(3686), + [sym_optional] = ACTIONS(3688), + [sym_required] = ACTIONS(3688), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1868] = { + [sym_preproc_def] = STATE(2521), + [sym_preproc_function_def] = STATE(2521), + [sym_declaration] = STATE(2521), + [sym_type_definition] = STATE(2521), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2521), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2522), + [aux_sym__interface_declaration] = STATE(2521), + [sym__interface_declaration_specifier] = STATE(2521), + [sym_method_declaration] = STATE(2521), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2521), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3690), + [anon_sym_ATend] = ACTIONS(3692), + [sym_optional] = ACTIONS(3694), + [sym_required] = ACTIONS(3694), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1869] = { + [sym_preproc_def] = STATE(2530), + [sym_preproc_function_def] = STATE(2530), + [sym_declaration] = STATE(2530), + [sym_type_definition] = STATE(2530), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2530), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2529), + [aux_sym__interface_declaration] = STATE(2530), + [sym__interface_declaration_specifier] = STATE(2530), + [sym_method_declaration] = STATE(2530), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2530), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3696), + [anon_sym_ATend] = ACTIONS(3698), + [sym_optional] = ACTIONS(3700), + [sym_required] = ACTIONS(3700), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1870] = { + [sym_preproc_def] = STATE(2513), + [sym_preproc_function_def] = STATE(2513), + [sym_declaration] = STATE(2513), + [sym_type_definition] = STATE(2513), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2513), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2514), + [aux_sym__interface_declaration] = STATE(2513), + [sym__interface_declaration_specifier] = STATE(2513), + [sym_method_declaration] = STATE(2513), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2513), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3702), + [anon_sym_ATend] = ACTIONS(3704), + [sym_optional] = ACTIONS(3706), + [sym_required] = ACTIONS(3706), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1871] = { + [sym_preproc_def] = STATE(2395), + [sym_preproc_function_def] = STATE(2395), + [sym_declaration] = STATE(2395), + [sym_type_definition] = STATE(2395), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2395), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2393), + [aux_sym__interface_declaration] = STATE(2395), + [sym__interface_declaration_specifier] = STATE(2395), + [sym_method_declaration] = STATE(2395), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2395), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3708), + [anon_sym_ATend] = ACTIONS(3710), + [sym_optional] = ACTIONS(3712), + [sym_required] = ACTIONS(3712), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1872] = { + [sym_preproc_def] = STATE(2107), + [sym_preproc_function_def] = STATE(2107), + [sym_declaration] = STATE(2107), + [sym_type_definition] = STATE(2107), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2107), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(2111), + [aux_sym__interface_declaration] = STATE(2107), + [sym__interface_declaration_specifier] = STATE(2107), + [sym_method_declaration] = STATE(2107), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2107), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3714), + [anon_sym_ATend] = ACTIONS(3716), + [sym_optional] = ACTIONS(3718), + [sym_required] = ACTIONS(3718), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1873] = { + [sym_preproc_def] = STATE(2388), + [sym_preproc_function_def] = STATE(2388), + [sym_declaration] = STATE(2388), + [sym_type_definition] = STATE(2388), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2388), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2387), + [aux_sym__interface_declaration] = STATE(2388), + [sym__interface_declaration_specifier] = STATE(2388), + [sym_method_declaration] = STATE(2388), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2388), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3720), + [anon_sym_ATend] = ACTIONS(3722), + [sym_optional] = ACTIONS(3724), + [sym_required] = ACTIONS(3724), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1874] = { + [sym_preproc_def] = STATE(2383), + [sym_preproc_function_def] = STATE(2383), + [sym_declaration] = STATE(2383), + [sym_type_definition] = STATE(2383), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2383), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2382), + [aux_sym__interface_declaration] = STATE(2383), + [sym__interface_declaration_specifier] = STATE(2383), + [sym_method_declaration] = STATE(2383), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2383), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3726), + [anon_sym_ATend] = ACTIONS(3728), + [sym_optional] = ACTIONS(3730), + [sym_required] = ACTIONS(3730), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1875] = { + [sym_preproc_def] = STATE(2365), + [sym_preproc_function_def] = STATE(2365), + [sym_declaration] = STATE(2365), + [sym_type_definition] = STATE(2365), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2365), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2361), + [aux_sym__interface_declaration] = STATE(2365), + [sym__interface_declaration_specifier] = STATE(2365), + [sym_method_declaration] = STATE(2365), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2365), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3732), + [anon_sym_ATend] = ACTIONS(3734), + [sym_optional] = ACTIONS(3736), + [sym_required] = ACTIONS(3736), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1876] = { + [sym_preproc_def] = STATE(2640), + [sym_preproc_function_def] = STATE(2640), + [sym_declaration] = STATE(2640), + [sym_type_definition] = STATE(2640), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2640), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2662), + [aux_sym__interface_declaration] = STATE(2640), + [sym__interface_declaration_specifier] = STATE(2640), + [sym_method_declaration] = STATE(2640), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2640), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3738), + [anon_sym_ATend] = ACTIONS(3740), + [sym_optional] = ACTIONS(3742), + [sym_required] = ACTIONS(3742), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1877] = { + [sym_preproc_def] = STATE(2352), + [sym_preproc_function_def] = STATE(2352), + [sym_declaration] = STATE(2352), + [sym_type_definition] = STATE(2352), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2352), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2351), + [aux_sym__interface_declaration] = STATE(2352), + [sym__interface_declaration_specifier] = STATE(2352), + [sym_method_declaration] = STATE(2352), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2352), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3744), + [anon_sym_ATend] = ACTIONS(3746), + [sym_optional] = ACTIONS(3748), + [sym_required] = ACTIONS(3748), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1878] = { + [sym_preproc_def] = STATE(2596), + [sym_preproc_function_def] = STATE(2596), + [sym_declaration] = STATE(2596), + [sym_type_definition] = STATE(2596), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2596), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2606), + [aux_sym__interface_declaration] = STATE(2596), + [sym__interface_declaration_specifier] = STATE(2596), + [sym_method_declaration] = STATE(2596), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2596), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3750), + [anon_sym_ATend] = ACTIONS(3752), + [sym_optional] = ACTIONS(3754), + [sym_required] = ACTIONS(3754), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1879] = { + [sym_preproc_def] = STATE(2505), + [sym_preproc_function_def] = STATE(2505), + [sym_declaration] = STATE(2505), + [sym_type_definition] = STATE(2505), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2505), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2543), + [aux_sym__interface_declaration] = STATE(2505), + [sym__interface_declaration_specifier] = STATE(2505), + [sym_method_declaration] = STATE(2505), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2505), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3756), + [anon_sym_ATend] = ACTIONS(3758), + [sym_optional] = ACTIONS(3760), + [sym_required] = ACTIONS(3760), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1880] = { + [sym_preproc_def] = STATE(2362), + [sym_preproc_function_def] = STATE(2362), + [sym_declaration] = STATE(2362), + [sym_type_definition] = STATE(2362), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2362), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2363), + [aux_sym__interface_declaration] = STATE(2362), + [sym__interface_declaration_specifier] = STATE(2362), + [sym_method_declaration] = STATE(2362), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2362), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3762), + [anon_sym_ATend] = ACTIONS(3764), + [sym_optional] = ACTIONS(3766), + [sym_required] = ACTIONS(3766), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1881] = { + [sym_preproc_def] = STATE(2229), + [sym_preproc_function_def] = STATE(2229), + [sym_declaration] = STATE(2229), + [sym_type_definition] = STATE(2229), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2229), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2228), + [aux_sym__interface_declaration] = STATE(2229), + [sym__interface_declaration_specifier] = STATE(2229), + [sym_method_declaration] = STATE(2229), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2229), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3768), + [anon_sym_ATend] = ACTIONS(3770), + [sym_optional] = ACTIONS(3772), + [sym_required] = ACTIONS(3772), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1882] = { + [sym_preproc_def] = STATE(2613), + [sym_preproc_function_def] = STATE(2613), + [sym_declaration] = STATE(2613), + [sym_type_definition] = STATE(2613), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2613), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2328), + [aux_sym__interface_declaration] = STATE(2613), + [sym__interface_declaration_specifier] = STATE(2613), + [sym_method_declaration] = STATE(2613), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2613), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2924), + [anon_sym_ATend] = ACTIONS(2926), + [sym_optional] = ACTIONS(2928), + [sym_required] = ACTIONS(2928), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1883] = { + [sym_preproc_def] = STATE(2294), + [sym_preproc_function_def] = STATE(2294), + [sym_declaration] = STATE(2294), + [sym_type_definition] = STATE(2294), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2294), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2302), + [aux_sym__interface_declaration] = STATE(2294), + [sym__interface_declaration_specifier] = STATE(2294), + [sym_method_declaration] = STATE(2294), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2294), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3774), + [anon_sym_ATend] = ACTIONS(3776), + [sym_optional] = ACTIONS(3778), + [sym_required] = ACTIONS(3778), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1884] = { + [sym_preproc_def] = STATE(2086), + [sym_preproc_function_def] = STATE(2086), + [sym_declaration] = STATE(2086), + [sym_type_definition] = STATE(2086), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2086), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2084), + [aux_sym__interface_declaration] = STATE(2086), + [sym__interface_declaration_specifier] = STATE(2086), + [sym_method_declaration] = STATE(2086), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2086), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3780), + [anon_sym_ATend] = ACTIONS(3782), + [sym_optional] = ACTIONS(3784), + [sym_required] = ACTIONS(3784), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1885] = { + [sym_preproc_def] = STATE(2311), + [sym_preproc_function_def] = STATE(2311), + [sym_declaration] = STATE(2311), + [sym_type_definition] = STATE(2311), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2311), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2299), + [aux_sym__interface_declaration] = STATE(2311), + [sym__interface_declaration_specifier] = STATE(2311), + [sym_method_declaration] = STATE(2311), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2311), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3786), + [anon_sym_ATend] = ACTIONS(3788), + [sym_optional] = ACTIONS(3790), + [sym_required] = ACTIONS(3790), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1886] = { + [sym_preproc_def] = STATE(2455), + [sym_preproc_function_def] = STATE(2455), + [sym_declaration] = STATE(2455), + [sym_type_definition] = STATE(2455), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2455), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2463), + [aux_sym__interface_declaration] = STATE(2455), + [sym__interface_declaration_specifier] = STATE(2455), + [sym_method_declaration] = STATE(2455), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2455), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3792), + [anon_sym_ATend] = ACTIONS(3794), + [sym_optional] = ACTIONS(3796), + [sym_required] = ACTIONS(3796), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1887] = { + [sym_preproc_def] = STATE(2323), + [sym_preproc_function_def] = STATE(2323), + [sym_declaration] = STATE(2323), + [sym_type_definition] = STATE(2323), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2323), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(2321), + [aux_sym__interface_declaration] = STATE(2323), + [sym__interface_declaration_specifier] = STATE(2323), + [sym_method_declaration] = STATE(2323), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2323), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3798), + [anon_sym_ATend] = ACTIONS(3800), + [sym_optional] = ACTIONS(3802), + [sym_required] = ACTIONS(3802), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1888] = { + [sym_preproc_def] = STATE(2152), + [sym_preproc_function_def] = STATE(2152), + [sym_declaration] = STATE(2152), + [sym_type_definition] = STATE(2152), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2152), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2151), + [aux_sym__interface_declaration] = STATE(2152), + [sym__interface_declaration_specifier] = STATE(2152), + [sym_method_declaration] = STATE(2152), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2152), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3804), + [anon_sym_ATend] = ACTIONS(3806), + [sym_optional] = ACTIONS(3808), + [sym_required] = ACTIONS(3808), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1889] = { + [sym_preproc_def] = STATE(1958), + [sym_preproc_function_def] = STATE(1958), + [sym_declaration] = STATE(1958), + [sym_type_definition] = STATE(1958), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1958), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(1996), + [aux_sym__interface_declaration] = STATE(1958), + [sym__interface_declaration_specifier] = STATE(1958), + [sym_method_declaration] = STATE(1958), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1958), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3810), + [anon_sym_ATend] = ACTIONS(3812), + [sym_optional] = ACTIONS(3814), + [sym_required] = ACTIONS(3814), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1890] = { + [sym_preproc_def] = STATE(2033), + [sym_preproc_function_def] = STATE(2033), + [sym_declaration] = STATE(2033), + [sym_type_definition] = STATE(2033), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2033), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2035), + [aux_sym__interface_declaration] = STATE(2033), + [sym__interface_declaration_specifier] = STATE(2033), + [sym_method_declaration] = STATE(2033), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2033), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3816), + [anon_sym_ATend] = ACTIONS(3818), + [sym_optional] = ACTIONS(3820), + [sym_required] = ACTIONS(3820), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1891] = { + [sym_preproc_def] = STATE(2176), + [sym_preproc_function_def] = STATE(2176), + [sym_declaration] = STATE(2176), + [sym_type_definition] = STATE(2176), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2176), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2235), + [aux_sym__interface_declaration] = STATE(2176), + [sym__interface_declaration_specifier] = STATE(2176), + [sym_method_declaration] = STATE(2176), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2176), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2912), + [anon_sym_ATend] = ACTIONS(2914), + [sym_optional] = ACTIONS(2916), + [sym_required] = ACTIONS(2916), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1892] = { + [sym_preproc_def] = STATE(2239), + [sym_preproc_function_def] = STATE(2239), + [sym_declaration] = STATE(2239), + [sym_type_definition] = STATE(2239), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2239), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2237), + [aux_sym__interface_declaration] = STATE(2239), + [sym__interface_declaration_specifier] = STATE(2239), + [sym_method_declaration] = STATE(2239), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2239), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3822), + [anon_sym_ATend] = ACTIONS(3824), + [sym_optional] = ACTIONS(3826), + [sym_required] = ACTIONS(3826), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1893] = { + [sym_preproc_def] = STATE(2026), + [sym_preproc_function_def] = STATE(2026), + [sym_declaration] = STATE(2026), + [sym_type_definition] = STATE(2026), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2026), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2028), + [aux_sym__interface_declaration] = STATE(2026), + [sym__interface_declaration_specifier] = STATE(2026), + [sym_method_declaration] = STATE(2026), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2026), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3828), + [anon_sym_ATend] = ACTIONS(3830), + [sym_optional] = ACTIONS(3832), + [sym_required] = ACTIONS(3832), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1894] = { + [sym_preproc_def] = STATE(2576), + [sym_preproc_function_def] = STATE(2576), + [sym_declaration] = STATE(2576), + [sym_type_definition] = STATE(2576), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2576), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2575), + [aux_sym__interface_declaration] = STATE(2576), + [sym__interface_declaration_specifier] = STATE(2576), + [sym_method_declaration] = STATE(2576), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2576), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3834), + [anon_sym_ATend] = ACTIONS(3836), + [sym_optional] = ACTIONS(3838), + [sym_required] = ACTIONS(3838), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1895] = { + [sym_preproc_def] = STATE(1967), + [sym_preproc_function_def] = STATE(1967), + [sym_declaration] = STATE(1967), + [sym_type_definition] = STATE(1967), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1967), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(1966), + [aux_sym__interface_declaration] = STATE(1967), + [sym__interface_declaration_specifier] = STATE(1967), + [sym_method_declaration] = STATE(1967), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1967), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3840), + [anon_sym_ATend] = ACTIONS(3842), + [sym_optional] = ACTIONS(3844), + [sym_required] = ACTIONS(3844), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1896] = { + [sym_preproc_def] = STATE(2209), + [sym_preproc_function_def] = STATE(2209), + [sym_declaration] = STATE(2209), + [sym_type_definition] = STATE(2209), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2209), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2212), + [aux_sym__interface_declaration] = STATE(2209), + [sym__interface_declaration_specifier] = STATE(2209), + [sym_method_declaration] = STATE(2209), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2209), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3846), + [anon_sym_ATend] = ACTIONS(3848), + [sym_optional] = ACTIONS(3850), + [sym_required] = ACTIONS(3850), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1897] = { + [sym_preproc_def] = STATE(1994), + [sym_preproc_function_def] = STATE(1994), + [sym_declaration] = STATE(1994), + [sym_type_definition] = STATE(1994), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1994), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(1995), + [aux_sym__interface_declaration] = STATE(1994), + [sym__interface_declaration_specifier] = STATE(1994), + [sym_method_declaration] = STATE(1994), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1994), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2470), + [anon_sym_ATend] = ACTIONS(2472), + [sym_optional] = ACTIONS(2474), + [sym_required] = ACTIONS(2474), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1898] = { + [sym_preproc_def] = STATE(2244), + [sym_preproc_function_def] = STATE(2244), + [sym_declaration] = STATE(2244), + [sym_type_definition] = STATE(2244), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2244), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2242), + [aux_sym__interface_declaration] = STATE(2244), + [sym__interface_declaration_specifier] = STATE(2244), + [sym_method_declaration] = STATE(2244), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2244), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3852), + [anon_sym_ATend] = ACTIONS(3854), + [sym_optional] = ACTIONS(3856), + [sym_required] = ACTIONS(3856), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1899] = { + [sym_preproc_def] = STATE(2072), + [sym_preproc_function_def] = STATE(2072), + [sym_declaration] = STATE(2072), + [sym_type_definition] = STATE(2072), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2072), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2071), + [aux_sym__interface_declaration] = STATE(2072), + [sym__interface_declaration_specifier] = STATE(2072), + [sym_method_declaration] = STATE(2072), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2072), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3858), + [anon_sym_ATend] = ACTIONS(3860), + [sym_optional] = ACTIONS(3862), + [sym_required] = ACTIONS(3862), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1900] = { + [sym_preproc_def] = STATE(2360), + [sym_preproc_function_def] = STATE(2360), + [sym_declaration] = STATE(2360), + [sym_type_definition] = STATE(2360), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2360), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2358), + [aux_sym__interface_declaration] = STATE(2360), + [sym__interface_declaration_specifier] = STATE(2360), + [sym_method_declaration] = STATE(2360), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2360), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3864), + [anon_sym_ATend] = ACTIONS(3866), + [sym_optional] = ACTIONS(3868), + [sym_required] = ACTIONS(3868), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1901] = { + [sym_preproc_def] = STATE(2216), + [sym_preproc_function_def] = STATE(2216), + [sym_declaration] = STATE(2216), + [sym_type_definition] = STATE(2216), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2216), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2217), + [aux_sym__interface_declaration] = STATE(2216), + [sym__interface_declaration_specifier] = STATE(2216), + [sym_method_declaration] = STATE(2216), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2216), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3870), + [anon_sym_ATend] = ACTIONS(3872), + [sym_optional] = ACTIONS(3874), + [sym_required] = ACTIONS(3874), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1902] = { + [sym_preproc_def] = STATE(2221), + [sym_preproc_function_def] = STATE(2221), + [sym_declaration] = STATE(2221), + [sym_type_definition] = STATE(2221), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2221), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2219), + [aux_sym__interface_declaration] = STATE(2221), + [sym__interface_declaration_specifier] = STATE(2221), + [sym_method_declaration] = STATE(2221), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2221), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2530), + [anon_sym_ATend] = ACTIONS(2532), + [sym_optional] = ACTIONS(2534), + [sym_required] = ACTIONS(2534), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1903] = { + [sym_preproc_def] = STATE(2230), + [sym_preproc_function_def] = STATE(2230), + [sym_declaration] = STATE(2230), + [sym_type_definition] = STATE(2230), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2230), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2234), + [aux_sym__interface_declaration] = STATE(2230), + [sym__interface_declaration_specifier] = STATE(2230), + [sym_method_declaration] = STATE(2230), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2230), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3876), + [anon_sym_ATend] = ACTIONS(3878), + [sym_optional] = ACTIONS(3880), + [sym_required] = ACTIONS(3880), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1904] = { + [sym_preproc_def] = STATE(2594), + [sym_preproc_function_def] = STATE(2594), + [sym_declaration] = STATE(2594), + [sym_type_definition] = STATE(2594), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2594), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2593), + [aux_sym__interface_declaration] = STATE(2594), + [sym__interface_declaration_specifier] = STATE(2594), + [sym_method_declaration] = STATE(2594), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2594), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2434), + [anon_sym_ATend] = ACTIONS(2436), + [sym_optional] = ACTIONS(2438), + [sym_required] = ACTIONS(2438), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1905] = { + [sym_preproc_def] = STATE(2236), + [sym_preproc_function_def] = STATE(2236), + [sym_declaration] = STATE(2236), + [sym_type_definition] = STATE(2236), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2236), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2238), + [aux_sym__interface_declaration] = STATE(2236), + [sym__interface_declaration_specifier] = STATE(2236), + [sym_method_declaration] = STATE(2236), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2236), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3882), + [anon_sym_ATend] = ACTIONS(3884), + [sym_optional] = ACTIONS(3886), + [sym_required] = ACTIONS(3886), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1906] = { + [sym_preproc_def] = STATE(2434), + [sym_preproc_function_def] = STATE(2434), + [sym_declaration] = STATE(2434), + [sym_type_definition] = STATE(2434), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2434), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2430), + [aux_sym__interface_declaration] = STATE(2434), + [sym__interface_declaration_specifier] = STATE(2434), + [sym_method_declaration] = STATE(2434), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2434), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3888), + [anon_sym_ATend] = ACTIONS(3890), + [sym_optional] = ACTIONS(3892), + [sym_required] = ACTIONS(3892), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1907] = { + [sym_preproc_def] = STATE(2256), + [sym_preproc_function_def] = STATE(2256), + [sym_declaration] = STATE(2256), + [sym_type_definition] = STATE(2256), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2256), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2257), + [aux_sym__interface_declaration] = STATE(2256), + [sym__interface_declaration_specifier] = STATE(2256), + [sym_method_declaration] = STATE(2256), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2256), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3894), + [anon_sym_ATend] = ACTIONS(3896), + [sym_optional] = ACTIONS(3898), + [sym_required] = ACTIONS(3898), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1908] = { + [sym_preproc_def] = STATE(2263), + [sym_preproc_function_def] = STATE(2263), + [sym_declaration] = STATE(2263), + [sym_type_definition] = STATE(2263), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2263), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2264), + [aux_sym__interface_declaration] = STATE(2263), + [sym__interface_declaration_specifier] = STATE(2263), + [sym_method_declaration] = STATE(2263), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2263), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3900), + [anon_sym_ATend] = ACTIONS(3902), + [sym_optional] = ACTIONS(3904), + [sym_required] = ACTIONS(3904), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1909] = { + [sym_preproc_def] = STATE(2565), + [sym_preproc_function_def] = STATE(2565), + [sym_declaration] = STATE(2565), + [sym_type_definition] = STATE(2565), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2565), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2592), + [aux_sym__interface_declaration] = STATE(2565), + [sym__interface_declaration_specifier] = STATE(2565), + [sym_method_declaration] = STATE(2565), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2565), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3906), + [anon_sym_ATend] = ACTIONS(3908), + [sym_optional] = ACTIONS(3910), + [sym_required] = ACTIONS(3910), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1910] = { + [sym_preproc_def] = STATE(2211), + [sym_preproc_function_def] = STATE(2211), + [sym_declaration] = STATE(2211), + [sym_type_definition] = STATE(2211), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2211), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2210), + [aux_sym__interface_declaration] = STATE(2211), + [sym__interface_declaration_specifier] = STATE(2211), + [sym_method_declaration] = STATE(2211), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2211), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3912), + [anon_sym_ATend] = ACTIONS(3914), + [sym_optional] = ACTIONS(3916), + [sym_required] = ACTIONS(3916), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1911] = { + [sym_preproc_def] = STATE(2334), + [sym_preproc_function_def] = STATE(2334), + [sym_declaration] = STATE(2334), + [sym_type_definition] = STATE(2334), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2334), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2331), + [aux_sym__interface_declaration] = STATE(2334), + [sym__interface_declaration_specifier] = STATE(2334), + [sym_method_declaration] = STATE(2334), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2334), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3918), + [anon_sym_ATend] = ACTIONS(3920), + [sym_optional] = ACTIONS(3922), + [sym_required] = ACTIONS(3922), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1912] = { + [sym_preproc_def] = STATE(2448), + [sym_preproc_function_def] = STATE(2448), + [sym_declaration] = STATE(2448), + [sym_type_definition] = STATE(2448), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2448), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2450), + [aux_sym__interface_declaration] = STATE(2448), + [sym__interface_declaration_specifier] = STATE(2448), + [sym_method_declaration] = STATE(2448), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2448), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3924), + [anon_sym_ATend] = ACTIONS(3926), + [sym_optional] = ACTIONS(3928), + [sym_required] = ACTIONS(3928), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1913] = { + [sym_preproc_def] = STATE(2050), + [sym_preproc_function_def] = STATE(2050), + [sym_declaration] = STATE(2050), + [sym_type_definition] = STATE(2050), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2050), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2435), + [aux_sym__interface_declaration] = STATE(2050), + [sym__interface_declaration_specifier] = STATE(2050), + [sym_method_declaration] = STATE(2050), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2050), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3930), + [anon_sym_ATend] = ACTIONS(3932), + [sym_optional] = ACTIONS(3934), + [sym_required] = ACTIONS(3934), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1914] = { + [sym_preproc_def] = STATE(2667), + [sym_preproc_function_def] = STATE(2667), + [sym_declaration] = STATE(2667), + [sym_type_definition] = STATE(2667), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2667), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2668), + [aux_sym__interface_declaration] = STATE(2667), + [sym__interface_declaration_specifier] = STATE(2667), + [sym_method_declaration] = STATE(2667), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2667), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3936), + [anon_sym_ATend] = ACTIONS(3938), + [sym_optional] = ACTIONS(3940), + [sym_required] = ACTIONS(3940), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1915] = { + [sym_preproc_def] = STATE(2322), + [sym_preproc_function_def] = STATE(2322), + [sym_declaration] = STATE(2322), + [sym_type_definition] = STATE(2322), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2322), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2324), + [aux_sym__interface_declaration] = STATE(2322), + [sym__interface_declaration_specifier] = STATE(2322), + [sym_method_declaration] = STATE(2322), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2322), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3942), + [anon_sym_ATend] = ACTIONS(3944), + [sym_optional] = ACTIONS(3946), + [sym_required] = ACTIONS(3946), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1916] = { + [sym_preproc_def] = STATE(2655), + [sym_preproc_function_def] = STATE(2655), + [sym_declaration] = STATE(2655), + [sym_type_definition] = STATE(2655), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2655), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2644), + [aux_sym__interface_declaration] = STATE(2655), + [sym__interface_declaration_specifier] = STATE(2655), + [sym_method_declaration] = STATE(2655), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2655), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3948), + [anon_sym_ATend] = ACTIONS(3950), + [sym_optional] = ACTIONS(3952), + [sym_required] = ACTIONS(3952), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1917] = { + [sym_preproc_def] = STATE(2136), + [sym_preproc_function_def] = STATE(2136), + [sym_declaration] = STATE(2136), + [sym_type_definition] = STATE(2136), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2136), + [sym_macro_type_specifier] = STATE(3354), + [sym_protocol_qualifiers] = STATE(2135), + [aux_sym__interface_declaration] = STATE(2136), + [sym__interface_declaration_specifier] = STATE(2136), + [sym_method_declaration] = STATE(2136), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2136), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3954), + [anon_sym_ATend] = ACTIONS(3956), + [sym_optional] = ACTIONS(3958), + [sym_required] = ACTIONS(3958), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1918] = { + [sym_preproc_def] = STATE(2336), + [sym_preproc_function_def] = STATE(2336), + [sym_declaration] = STATE(2336), + [sym_type_definition] = STATE(2336), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2336), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2338), + [aux_sym__interface_declaration] = STATE(2336), + [sym__interface_declaration_specifier] = STATE(2336), + [sym_method_declaration] = STATE(2336), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2336), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3960), + [anon_sym_ATend] = ACTIONS(3962), + [sym_optional] = ACTIONS(3964), + [sym_required] = ACTIONS(3964), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1919] = { + [sym_preproc_def] = STATE(2318), + [sym_preproc_function_def] = STATE(2318), + [sym_declaration] = STATE(2318), + [sym_type_definition] = STATE(2318), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2318), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2316), + [aux_sym__interface_declaration] = STATE(2318), + [sym__interface_declaration_specifier] = STATE(2318), + [sym_method_declaration] = STATE(2318), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2318), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3966), + [anon_sym_ATend] = ACTIONS(3968), + [sym_optional] = ACTIONS(3970), + [sym_required] = ACTIONS(3970), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1920] = { + [sym_preproc_def] = STATE(2308), + [sym_preproc_function_def] = STATE(2308), + [sym_declaration] = STATE(2308), + [sym_type_definition] = STATE(2308), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2308), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2306), + [aux_sym__interface_declaration] = STATE(2308), + [sym__interface_declaration_specifier] = STATE(2308), + [sym_method_declaration] = STATE(2308), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2308), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3972), + [anon_sym_ATend] = ACTIONS(3974), + [sym_optional] = ACTIONS(3976), + [sym_required] = ACTIONS(3976), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1921] = { + [sym_preproc_def] = STATE(1981), + [sym_preproc_function_def] = STATE(1981), + [sym_declaration] = STATE(1981), + [sym_type_definition] = STATE(1981), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1981), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(1978), + [aux_sym__interface_declaration] = STATE(1981), + [sym__interface_declaration_specifier] = STATE(1981), + [sym_method_declaration] = STATE(1981), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1981), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3978), + [anon_sym_ATend] = ACTIONS(3980), + [sym_optional] = ACTIONS(3982), + [sym_required] = ACTIONS(3982), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1922] = { + [sym_preproc_def] = STATE(2307), + [sym_preproc_function_def] = STATE(2307), + [sym_declaration] = STATE(2307), + [sym_type_definition] = STATE(2307), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2307), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2293), + [aux_sym__interface_declaration] = STATE(2307), + [sym__interface_declaration_specifier] = STATE(2307), + [sym_method_declaration] = STATE(2307), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2307), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3984), + [anon_sym_ATend] = ACTIONS(3986), + [sym_optional] = ACTIONS(3988), + [sym_required] = ACTIONS(3988), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1923] = { + [sym_preproc_def] = STATE(2433), + [sym_preproc_function_def] = STATE(2433), + [sym_declaration] = STATE(2433), + [sym_type_definition] = STATE(2433), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2433), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2437), + [aux_sym__interface_declaration] = STATE(2433), + [sym__interface_declaration_specifier] = STATE(2433), + [sym_method_declaration] = STATE(2433), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2433), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3990), + [anon_sym_ATend] = ACTIONS(3992), + [sym_optional] = ACTIONS(3994), + [sym_required] = ACTIONS(3994), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1924] = { + [sym_preproc_def] = STATE(2402), + [sym_preproc_function_def] = STATE(2402), + [sym_declaration] = STATE(2402), + [sym_type_definition] = STATE(2402), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2402), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2414), + [aux_sym__interface_declaration] = STATE(2402), + [sym__interface_declaration_specifier] = STATE(2402), + [sym_method_declaration] = STATE(2402), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2402), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3996), + [anon_sym_ATend] = ACTIONS(3998), + [sym_optional] = ACTIONS(4000), + [sym_required] = ACTIONS(4000), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1925] = { + [sym_preproc_def] = STATE(2375), + [sym_preproc_function_def] = STATE(2375), + [sym_declaration] = STATE(2375), + [sym_type_definition] = STATE(2375), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2375), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2374), + [aux_sym__interface_declaration] = STATE(2375), + [sym__interface_declaration_specifier] = STATE(2375), + [sym_method_declaration] = STATE(2375), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2375), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4002), + [anon_sym_ATend] = ACTIONS(4004), + [sym_optional] = ACTIONS(4006), + [sym_required] = ACTIONS(4006), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1926] = { + [sym_preproc_def] = STATE(2392), + [sym_preproc_function_def] = STATE(2392), + [sym_declaration] = STATE(2392), + [sym_type_definition] = STATE(2392), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2392), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2396), + [aux_sym__interface_declaration] = STATE(2392), + [sym__interface_declaration_specifier] = STATE(2392), + [sym_method_declaration] = STATE(2392), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2392), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4008), + [anon_sym_ATend] = ACTIONS(4010), + [sym_optional] = ACTIONS(4012), + [sym_required] = ACTIONS(4012), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1927] = { + [sym_preproc_def] = STATE(2452), + [sym_preproc_function_def] = STATE(2452), + [sym_declaration] = STATE(2452), + [sym_type_definition] = STATE(2452), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2452), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2391), + [aux_sym__interface_declaration] = STATE(2452), + [sym__interface_declaration_specifier] = STATE(2452), + [sym_method_declaration] = STATE(2452), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2452), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4014), + [anon_sym_ATend] = ACTIONS(4016), + [sym_optional] = ACTIONS(4018), + [sym_required] = ACTIONS(4018), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1928] = { + [sym_preproc_def] = STATE(2011), + [sym_preproc_function_def] = STATE(2011), + [sym_declaration] = STATE(2011), + [sym_type_definition] = STATE(2011), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2011), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2006), + [aux_sym__interface_declaration] = STATE(2011), + [sym__interface_declaration_specifier] = STATE(2011), + [sym_method_declaration] = STATE(2011), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2011), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4020), + [anon_sym_ATend] = ACTIONS(4022), + [sym_optional] = ACTIONS(4024), + [sym_required] = ACTIONS(4024), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1929] = { + [sym_preproc_def] = STATE(2076), + [sym_preproc_function_def] = STATE(2076), + [sym_declaration] = STATE(2076), + [sym_type_definition] = STATE(2076), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2076), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2077), + [aux_sym__interface_declaration] = STATE(2076), + [sym__interface_declaration_specifier] = STATE(2076), + [sym_method_declaration] = STATE(2076), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2076), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4026), + [anon_sym_ATend] = ACTIONS(4028), + [sym_optional] = ACTIONS(4030), + [sym_required] = ACTIONS(4030), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1930] = { + [sym_preproc_def] = STATE(2409), + [sym_preproc_function_def] = STATE(2409), + [sym_declaration] = STATE(2409), + [sym_type_definition] = STATE(2409), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2409), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2408), + [aux_sym__interface_declaration] = STATE(2409), + [sym__interface_declaration_specifier] = STATE(2409), + [sym_method_declaration] = STATE(2409), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2409), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4032), + [anon_sym_ATend] = ACTIONS(4034), + [sym_optional] = ACTIONS(4036), + [sym_required] = ACTIONS(4036), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1931] = { + [sym_preproc_def] = STATE(2560), + [sym_preproc_function_def] = STATE(2560), + [sym_declaration] = STATE(2560), + [sym_type_definition] = STATE(2560), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2560), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2531), + [aux_sym__interface_declaration] = STATE(2560), + [sym__interface_declaration_specifier] = STATE(2560), + [sym_method_declaration] = STATE(2560), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2560), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4038), + [anon_sym_ATend] = ACTIONS(4040), + [sym_optional] = ACTIONS(4042), + [sym_required] = ACTIONS(4042), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1932] = { + [sym_preproc_def] = STATE(2364), + [sym_preproc_function_def] = STATE(2364), + [sym_declaration] = STATE(2364), + [sym_type_definition] = STATE(2364), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2364), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2384), + [aux_sym__interface_declaration] = STATE(2364), + [sym__interface_declaration_specifier] = STATE(2364), + [sym_method_declaration] = STATE(2364), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2364), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4044), + [anon_sym_ATend] = ACTIONS(4046), + [sym_optional] = ACTIONS(4048), + [sym_required] = ACTIONS(4048), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1933] = { + [sym_preproc_def] = STATE(2623), + [sym_preproc_function_def] = STATE(2623), + [sym_declaration] = STATE(2623), + [sym_type_definition] = STATE(2623), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2623), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2618), + [aux_sym__interface_declaration] = STATE(2623), + [sym__interface_declaration_specifier] = STATE(2623), + [sym_method_declaration] = STATE(2623), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2623), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4050), + [anon_sym_ATend] = ACTIONS(4052), + [sym_optional] = ACTIONS(4054), + [sym_required] = ACTIONS(4054), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1934] = { + [sym_preproc_def] = STATE(2018), + [sym_preproc_function_def] = STATE(2018), + [sym_declaration] = STATE(2018), + [sym_type_definition] = STATE(2018), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2018), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2019), + [aux_sym__interface_declaration] = STATE(2018), + [sym__interface_declaration_specifier] = STATE(2018), + [sym_method_declaration] = STATE(2018), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2018), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4056), + [anon_sym_ATend] = ACTIONS(4058), + [sym_optional] = ACTIONS(4060), + [sym_required] = ACTIONS(4060), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1935] = { + [sym_preproc_def] = STATE(2633), + [sym_preproc_function_def] = STATE(2633), + [sym_declaration] = STATE(2633), + [sym_type_definition] = STATE(2633), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2633), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2632), + [aux_sym__interface_declaration] = STATE(2633), + [sym__interface_declaration_specifier] = STATE(2633), + [sym_method_declaration] = STATE(2633), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2633), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4062), + [anon_sym_ATend] = ACTIONS(4064), + [sym_optional] = ACTIONS(4066), + [sym_required] = ACTIONS(4066), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1936] = { + [sym_preproc_def] = STATE(2180), + [sym_preproc_function_def] = STATE(2180), + [sym_declaration] = STATE(2180), + [sym_type_definition] = STATE(2180), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2180), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2179), + [aux_sym__interface_declaration] = STATE(2180), + [sym__interface_declaration_specifier] = STATE(2180), + [sym_method_declaration] = STATE(2180), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2180), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4068), + [anon_sym_ATend] = ACTIONS(4070), + [sym_optional] = ACTIONS(4072), + [sym_required] = ACTIONS(4072), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1937] = { + [sym_preproc_def] = STATE(2032), + [sym_preproc_function_def] = STATE(2032), + [sym_declaration] = STATE(2032), + [sym_type_definition] = STATE(2032), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2032), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(1964), + [aux_sym__interface_declaration] = STATE(2032), + [sym__interface_declaration_specifier] = STATE(2032), + [sym_method_declaration] = STATE(2032), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2032), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4074), + [anon_sym_ATend] = ACTIONS(4076), + [sym_optional] = ACTIONS(4078), + [sym_required] = ACTIONS(4078), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1938] = { + [sym_preproc_def] = STATE(2092), + [sym_preproc_function_def] = STATE(2092), + [sym_declaration] = STATE(2092), + [sym_type_definition] = STATE(2092), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2092), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2089), + [aux_sym__interface_declaration] = STATE(2092), + [sym__interface_declaration_specifier] = STATE(2092), + [sym_method_declaration] = STATE(2092), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2092), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4080), + [anon_sym_ATend] = ACTIONS(4082), + [sym_optional] = ACTIONS(4084), + [sym_required] = ACTIONS(4084), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1939] = { + [sym_preproc_def] = STATE(2637), + [sym_preproc_function_def] = STATE(2637), + [sym_declaration] = STATE(2637), + [sym_type_definition] = STATE(2637), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2637), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2624), + [aux_sym__interface_declaration] = STATE(2637), + [sym__interface_declaration_specifier] = STATE(2637), + [sym_method_declaration] = STATE(2637), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2637), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4086), + [anon_sym_ATend] = ACTIONS(4088), + [sym_optional] = ACTIONS(4090), + [sym_required] = ACTIONS(4090), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1940] = { + [sym_preproc_def] = STATE(2652), + [sym_preproc_function_def] = STATE(2652), + [sym_declaration] = STATE(2652), + [sym_type_definition] = STATE(2652), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2652), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2653), + [aux_sym__interface_declaration] = STATE(2652), + [sym__interface_declaration_specifier] = STATE(2652), + [sym_method_declaration] = STATE(2652), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2652), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4092), + [anon_sym_ATend] = ACTIONS(4094), + [sym_optional] = ACTIONS(4096), + [sym_required] = ACTIONS(4096), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1941] = { + [sym_preproc_def] = STATE(2337), + [sym_preproc_function_def] = STATE(2337), + [sym_declaration] = STATE(2337), + [sym_type_definition] = STATE(2337), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2337), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2342), + [aux_sym__interface_declaration] = STATE(2337), + [sym__interface_declaration_specifier] = STATE(2337), + [sym_method_declaration] = STATE(2337), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2337), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4098), + [anon_sym_ATend] = ACTIONS(4100), + [sym_optional] = ACTIONS(4102), + [sym_required] = ACTIONS(4102), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1942] = { + [sym_preproc_def] = STATE(2095), + [sym_preproc_function_def] = STATE(2095), + [sym_declaration] = STATE(2095), + [sym_type_definition] = STATE(2095), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2095), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2094), + [aux_sym__interface_declaration] = STATE(2095), + [sym__interface_declaration_specifier] = STATE(2095), + [sym_method_declaration] = STATE(2095), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2095), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4104), + [anon_sym_ATend] = ACTIONS(4106), + [sym_optional] = ACTIONS(4108), + [sym_required] = ACTIONS(4108), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1943] = { + [sym_preproc_def] = STATE(2105), + [sym_preproc_function_def] = STATE(2105), + [sym_declaration] = STATE(2105), + [sym_type_definition] = STATE(2105), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2105), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2103), + [aux_sym__interface_declaration] = STATE(2105), + [sym__interface_declaration_specifier] = STATE(2105), + [sym_method_declaration] = STATE(2105), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2105), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4110), + [anon_sym_ATend] = ACTIONS(4112), + [sym_optional] = ACTIONS(4114), + [sym_required] = ACTIONS(4114), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1944] = { + [sym_preproc_def] = STATE(2629), + [sym_preproc_function_def] = STATE(2629), + [sym_declaration] = STATE(2629), + [sym_type_definition] = STATE(2629), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2629), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2628), + [aux_sym__interface_declaration] = STATE(2629), + [sym__interface_declaration_specifier] = STATE(2629), + [sym_method_declaration] = STATE(2629), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2629), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4116), + [anon_sym_ATend] = ACTIONS(4118), + [sym_optional] = ACTIONS(4120), + [sym_required] = ACTIONS(4120), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1945] = { + [sym_preproc_def] = STATE(2024), + [sym_preproc_function_def] = STATE(2024), + [sym_declaration] = STATE(2024), + [sym_type_definition] = STATE(2024), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2024), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(1974), + [aux_sym__interface_declaration] = STATE(2024), + [sym__interface_declaration_specifier] = STATE(2024), + [sym_method_declaration] = STATE(2024), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2024), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4122), + [anon_sym_ATend] = ACTIONS(4124), + [sym_optional] = ACTIONS(4126), + [sym_required] = ACTIONS(4126), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1946] = { + [sym_preproc_def] = STATE(2585), + [sym_preproc_function_def] = STATE(2585), + [sym_declaration] = STATE(2585), + [sym_type_definition] = STATE(2585), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2585), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2580), + [aux_sym__interface_declaration] = STATE(2585), + [sym__interface_declaration_specifier] = STATE(2585), + [sym_method_declaration] = STATE(2585), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2585), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2494), + [anon_sym_ATend] = ACTIONS(2496), + [sym_optional] = ACTIONS(2498), + [sym_required] = ACTIONS(2498), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1947] = { + [sym_preproc_def] = STATE(2559), + [sym_preproc_function_def] = STATE(2559), + [sym_declaration] = STATE(2559), + [sym_type_definition] = STATE(2559), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2559), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2568), + [aux_sym__interface_declaration] = STATE(2559), + [sym__interface_declaration_specifier] = STATE(2559), + [sym_method_declaration] = STATE(2559), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2559), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4128), + [anon_sym_ATend] = ACTIONS(4130), + [sym_optional] = ACTIONS(4132), + [sym_required] = ACTIONS(4132), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1948] = { + [sym_preproc_def] = STATE(2288), + [sym_preproc_function_def] = STATE(2288), + [sym_declaration] = STATE(2288), + [sym_type_definition] = STATE(2288), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2288), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2616), + [aux_sym__interface_declaration] = STATE(2288), + [sym__interface_declaration_specifier] = STATE(2288), + [sym_method_declaration] = STATE(2288), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2288), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4134), + [anon_sym_ATend] = ACTIONS(4136), + [sym_optional] = ACTIONS(4138), + [sym_required] = ACTIONS(4138), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1949] = { + [sym_preproc_def] = STATE(2118), + [sym_preproc_function_def] = STATE(2118), + [sym_declaration] = STATE(2118), + [sym_type_definition] = STATE(2118), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2118), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2117), + [aux_sym__interface_declaration] = STATE(2118), + [sym__interface_declaration_specifier] = STATE(2118), + [sym_method_declaration] = STATE(2118), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2118), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4140), + [anon_sym_ATend] = ACTIONS(4142), + [sym_optional] = ACTIONS(4144), + [sym_required] = ACTIONS(4144), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1950] = { + [sym_preproc_def] = STATE(2104), + [sym_preproc_function_def] = STATE(2104), + [sym_declaration] = STATE(2104), + [sym_type_definition] = STATE(2104), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2104), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2133), + [aux_sym__interface_declaration] = STATE(2104), + [sym__interface_declaration_specifier] = STATE(2104), + [sym_method_declaration] = STATE(2104), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2104), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4146), + [anon_sym_ATend] = ACTIONS(4148), + [sym_optional] = ACTIONS(4150), + [sym_required] = ACTIONS(4150), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1951] = { + [sym_preproc_def] = STATE(2170), + [sym_preproc_function_def] = STATE(2170), + [sym_declaration] = STATE(2170), + [sym_type_definition] = STATE(2170), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2170), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2173), + [aux_sym__interface_declaration] = STATE(2170), + [sym__interface_declaration_specifier] = STATE(2170), + [sym_method_declaration] = STATE(2170), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2170), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4152), + [anon_sym_ATend] = ACTIONS(4154), + [sym_optional] = ACTIONS(4156), + [sym_required] = ACTIONS(4156), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1952] = { + [sym_preproc_def] = STATE(2110), + [sym_preproc_function_def] = STATE(2110), + [sym_declaration] = STATE(2110), + [sym_type_definition] = STATE(2110), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2110), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2109), + [aux_sym__interface_declaration] = STATE(2110), + [sym__interface_declaration_specifier] = STATE(2110), + [sym_method_declaration] = STATE(2110), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2110), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4158), + [anon_sym_ATend] = ACTIONS(4160), + [sym_optional] = ACTIONS(4162), + [sym_required] = ACTIONS(4162), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1953] = { + [sym_preproc_def] = STATE(2376), + [sym_preproc_function_def] = STATE(2376), + [sym_declaration] = STATE(2376), + [sym_type_definition] = STATE(2376), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2376), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2377), + [aux_sym__interface_declaration] = STATE(2376), + [sym__interface_declaration_specifier] = STATE(2376), + [sym_method_declaration] = STATE(2376), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2376), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2536), + [anon_sym_ATend] = ACTIONS(2538), + [sym_optional] = ACTIONS(2540), + [sym_required] = ACTIONS(2540), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1954] = { + [sym_preproc_def] = STATE(2125), + [sym_preproc_function_def] = STATE(2125), + [sym_declaration] = STATE(2125), + [sym_type_definition] = STATE(2125), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2125), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(2124), + [aux_sym__interface_declaration] = STATE(2125), + [sym__interface_declaration_specifier] = STATE(2125), + [sym_method_declaration] = STATE(2125), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2125), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4164), + [anon_sym_ATend] = ACTIONS(4166), + [sym_optional] = ACTIONS(4168), + [sym_required] = ACTIONS(4168), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1955] = { + [sym_preproc_def] = STATE(1962), + [sym_preproc_function_def] = STATE(1962), + [sym_declaration] = STATE(1962), + [sym_type_definition] = STATE(1962), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1962), + [sym_macro_type_specifier] = STATE(3354), + [sym__instance_variables] = STATE(1961), + [aux_sym__interface_declaration] = STATE(1962), + [sym__interface_declaration_specifier] = STATE(1962), + [sym_method_declaration] = STATE(1962), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1962), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4170), + [anon_sym_ATend] = ACTIONS(4172), + [sym_optional] = ACTIONS(4174), + [sym_required] = ACTIONS(4174), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1956] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4178), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1957] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4182), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1958] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4184), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1959] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4186), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1960] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4188), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1961] = { + [sym_preproc_def] = STATE(2102), + [sym_preproc_function_def] = STATE(2102), + [sym_declaration] = STATE(2102), + [sym_type_definition] = STATE(2102), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2102), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2102), + [sym__interface_declaration_specifier] = STATE(2102), + [sym_method_declaration] = STATE(2102), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2102), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4190), + [anon_sym_ATend] = ACTIONS(4192), + [sym_optional] = ACTIONS(4194), + [sym_required] = ACTIONS(4194), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1962] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4196), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1963] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4198), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1964] = { + [sym_preproc_def] = STATE(2104), + [sym_preproc_function_def] = STATE(2104), + [sym_declaration] = STATE(2104), + [sym_type_definition] = STATE(2104), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2104), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2104), + [sym__interface_declaration_specifier] = STATE(2104), + [sym_method_declaration] = STATE(2104), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2104), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4146), + [anon_sym_ATend] = ACTIONS(4148), + [sym_optional] = ACTIONS(4150), + [sym_required] = ACTIONS(4150), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1965] = { + [sym_preproc_def] = STATE(2175), + [sym_preproc_function_def] = STATE(2175), + [sym_declaration] = STATE(2175), + [sym_type_definition] = STATE(2175), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2175), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2175), + [sym__interface_declaration_specifier] = STATE(2175), + [sym_method_declaration] = STATE(2175), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2175), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4200), + [anon_sym_ATend] = ACTIONS(4202), + [sym_optional] = ACTIONS(4204), + [sym_required] = ACTIONS(4204), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1966] = { + [sym_preproc_def] = STATE(2106), + [sym_preproc_function_def] = STATE(2106), + [sym_declaration] = STATE(2106), + [sym_type_definition] = STATE(2106), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2106), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2106), + [sym__interface_declaration_specifier] = STATE(2106), + [sym_method_declaration] = STATE(2106), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2106), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4206), + [anon_sym_ATend] = ACTIONS(4208), + [sym_optional] = ACTIONS(4210), + [sym_required] = ACTIONS(4210), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1967] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4212), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1968] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4214), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1969] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4216), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1970] = { + [sym_preproc_def] = STATE(2113), + [sym_preproc_function_def] = STATE(2113), + [sym_declaration] = STATE(2113), + [sym_type_definition] = STATE(2113), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2113), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2113), + [sym__interface_declaration_specifier] = STATE(2113), + [sym_method_declaration] = STATE(2113), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2113), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4218), + [anon_sym_ATend] = ACTIONS(4220), + [sym_optional] = ACTIONS(4222), + [sym_required] = ACTIONS(4222), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1971] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4224), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1972] = { + [sym_preproc_def] = STATE(2259), + [sym_preproc_function_def] = STATE(2259), + [sym_declaration] = STATE(2259), + [sym_type_definition] = STATE(2259), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2259), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2259), + [sym__interface_declaration_specifier] = STATE(2259), + [sym_method_declaration] = STATE(2259), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2259), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4226), + [anon_sym_ATend] = ACTIONS(4228), + [sym_optional] = ACTIONS(4230), + [sym_required] = ACTIONS(4230), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1973] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4232), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1974] = { + [sym_preproc_def] = STATE(2449), + [sym_preproc_function_def] = STATE(2449), + [sym_declaration] = STATE(2449), + [sym_type_definition] = STATE(2449), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2449), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2449), + [sym__interface_declaration_specifier] = STATE(2449), + [sym_method_declaration] = STATE(2449), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2449), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4234), + [anon_sym_ATend] = ACTIONS(4236), + [sym_optional] = ACTIONS(4238), + [sym_required] = ACTIONS(4238), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1975] = { + [sym_preproc_def] = STATE(2108), + [sym_preproc_function_def] = STATE(2108), + [sym_declaration] = STATE(2108), + [sym_type_definition] = STATE(2108), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2108), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2108), + [sym__interface_declaration_specifier] = STATE(2108), + [sym_method_declaration] = STATE(2108), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2108), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4240), + [anon_sym_ATend] = ACTIONS(4242), + [sym_optional] = ACTIONS(4244), + [sym_required] = ACTIONS(4244), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1976] = { + [sym_preproc_def] = STATE(2121), + [sym_preproc_function_def] = STATE(2121), + [sym_declaration] = STATE(2121), + [sym_type_definition] = STATE(2121), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2121), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2121), + [sym__interface_declaration_specifier] = STATE(2121), + [sym_method_declaration] = STATE(2121), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2121), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4246), + [anon_sym_ATend] = ACTIONS(4248), + [sym_optional] = ACTIONS(4250), + [sym_required] = ACTIONS(4250), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1977] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4252), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1978] = { + [sym_preproc_def] = STATE(2626), + [sym_preproc_function_def] = STATE(2626), + [sym_declaration] = STATE(2626), + [sym_type_definition] = STATE(2626), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2626), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2626), + [sym__interface_declaration_specifier] = STATE(2626), + [sym_method_declaration] = STATE(2626), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2626), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4254), + [anon_sym_ATend] = ACTIONS(4256), + [sym_optional] = ACTIONS(4258), + [sym_required] = ACTIONS(4258), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1979] = { + [sym_preproc_def] = STATE(2127), + [sym_preproc_function_def] = STATE(2127), + [sym_declaration] = STATE(2127), + [sym_type_definition] = STATE(2127), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2127), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2127), + [sym__interface_declaration_specifier] = STATE(2127), + [sym_method_declaration] = STATE(2127), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2127), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4260), + [anon_sym_ATend] = ACTIONS(4262), + [sym_optional] = ACTIONS(4264), + [sym_required] = ACTIONS(4264), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1980] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4266), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1981] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4268), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1982] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4270), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1983] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4272), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1984] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4274), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1985] = { + [sym_preproc_def] = STATE(2544), + [sym_preproc_function_def] = STATE(2544), + [sym_declaration] = STATE(2544), + [sym_type_definition] = STATE(2544), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2544), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2544), + [sym__interface_declaration_specifier] = STATE(2544), + [sym_method_declaration] = STATE(2544), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2544), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4276), + [anon_sym_ATend] = ACTIONS(4278), + [sym_optional] = ACTIONS(4280), + [sym_required] = ACTIONS(4280), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1986] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4282), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1987] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4284), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1988] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4286), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1989] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4288), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1990] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4290), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1991] = { + [sym_preproc_def] = STATE(2098), + [sym_preproc_function_def] = STATE(2098), + [sym_declaration] = STATE(2098), + [sym_type_definition] = STATE(2098), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2098), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2098), + [sym__interface_declaration_specifier] = STATE(2098), + [sym_method_declaration] = STATE(2098), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2098), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4292), + [anon_sym_ATend] = ACTIONS(4294), + [sym_optional] = ACTIONS(4296), + [sym_required] = ACTIONS(4296), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1992] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4298), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1993] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4300), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1994] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(2496), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1995] = { + [sym_preproc_def] = STATE(2585), + [sym_preproc_function_def] = STATE(2585), + [sym_declaration] = STATE(2585), + [sym_type_definition] = STATE(2585), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2585), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2585), + [sym__interface_declaration_specifier] = STATE(2585), + [sym_method_declaration] = STATE(2585), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2585), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2494), + [anon_sym_ATend] = ACTIONS(2496), + [sym_optional] = ACTIONS(2498), + [sym_required] = ACTIONS(2498), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1996] = { + [sym_preproc_def] = STATE(2620), + [sym_preproc_function_def] = STATE(2620), + [sym_declaration] = STATE(2620), + [sym_type_definition] = STATE(2620), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2620), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2620), + [sym__interface_declaration_specifier] = STATE(2620), + [sym_method_declaration] = STATE(2620), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2620), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4302), + [anon_sym_ATend] = ACTIONS(4304), + [sym_optional] = ACTIONS(4306), + [sym_required] = ACTIONS(4306), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1997] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4308), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1998] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4310), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [1999] = { + [sym_preproc_def] = STATE(2099), + [sym_preproc_function_def] = STATE(2099), + [sym_declaration] = STATE(2099), + [sym_type_definition] = STATE(2099), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2099), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2099), + [sym__interface_declaration_specifier] = STATE(2099), + [sym_method_declaration] = STATE(2099), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2099), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4312), + [anon_sym_ATend] = ACTIONS(4314), + [sym_optional] = ACTIONS(4316), + [sym_required] = ACTIONS(4316), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2000] = { + [sym_preproc_def] = STATE(2266), + [sym_preproc_function_def] = STATE(2266), + [sym_declaration] = STATE(2266), + [sym_type_definition] = STATE(2266), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2266), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2266), + [sym__interface_declaration_specifier] = STATE(2266), + [sym_method_declaration] = STATE(2266), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2266), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4318), + [anon_sym_ATend] = ACTIONS(4320), + [sym_optional] = ACTIONS(4322), + [sym_required] = ACTIONS(4322), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2001] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4324), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2002] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4088), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2003] = { + [sym_preproc_def] = STATE(2637), + [sym_preproc_function_def] = STATE(2637), + [sym_declaration] = STATE(2637), + [sym_type_definition] = STATE(2637), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2637), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2637), + [sym__interface_declaration_specifier] = STATE(2637), + [sym_method_declaration] = STATE(2637), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2637), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4086), + [anon_sym_ATend] = ACTIONS(4088), + [sym_optional] = ACTIONS(4090), + [sym_required] = ACTIONS(4090), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2004] = { + [sym_preproc_def] = STATE(2091), + [sym_preproc_function_def] = STATE(2091), + [sym_declaration] = STATE(2091), + [sym_type_definition] = STATE(2091), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2091), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2091), + [sym__interface_declaration_specifier] = STATE(2091), + [sym_method_declaration] = STATE(2091), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2091), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4326), + [anon_sym_ATend] = ACTIONS(4328), + [sym_optional] = ACTIONS(4330), + [sym_required] = ACTIONS(4330), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2005] = { + [sym_preproc_def] = STATE(2116), + [sym_preproc_function_def] = STATE(2116), + [sym_declaration] = STATE(2116), + [sym_type_definition] = STATE(2116), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2116), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2116), + [sym__interface_declaration_specifier] = STATE(2116), + [sym_method_declaration] = STATE(2116), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2116), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4332), + [anon_sym_ATend] = ACTIONS(4334), + [sym_optional] = ACTIONS(4336), + [sym_required] = ACTIONS(4336), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2006] = { + [sym_preproc_def] = STATE(2631), + [sym_preproc_function_def] = STATE(2631), + [sym_declaration] = STATE(2631), + [sym_type_definition] = STATE(2631), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2631), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2631), + [sym__interface_declaration_specifier] = STATE(2631), + [sym_method_declaration] = STATE(2631), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2631), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4338), + [anon_sym_ATend] = ACTIONS(4340), + [sym_optional] = ACTIONS(4342), + [sym_required] = ACTIONS(4342), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2007] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4344), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2008] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4346), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2009] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4348), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2010] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4350), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2011] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4352), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2012] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4354), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2013] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4356), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2014] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4358), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2015] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4360), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2016] = { + [sym_preproc_def] = STATE(2075), + [sym_preproc_function_def] = STATE(2075), + [sym_declaration] = STATE(2075), + [sym_type_definition] = STATE(2075), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2075), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2075), + [sym__interface_declaration_specifier] = STATE(2075), + [sym_method_declaration] = STATE(2075), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2075), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4362), + [anon_sym_ATend] = ACTIONS(4364), + [sym_optional] = ACTIONS(4366), + [sym_required] = ACTIONS(4366), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2017] = { + [sym_preproc_def] = STATE(2617), + [sym_preproc_function_def] = STATE(2617), + [sym_declaration] = STATE(2617), + [sym_type_definition] = STATE(2617), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2617), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2617), + [sym__interface_declaration_specifier] = STATE(2617), + [sym_method_declaration] = STATE(2617), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2617), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4368), + [anon_sym_ATend] = ACTIONS(4370), + [sym_optional] = ACTIONS(4372), + [sym_required] = ACTIONS(4372), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2018] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4374), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2019] = { + [sym_preproc_def] = STATE(2087), + [sym_preproc_function_def] = STATE(2087), + [sym_declaration] = STATE(2087), + [sym_type_definition] = STATE(2087), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2087), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2087), + [sym__interface_declaration_specifier] = STATE(2087), + [sym_method_declaration] = STATE(2087), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2087), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4376), + [anon_sym_ATend] = ACTIONS(4378), + [sym_optional] = ACTIONS(4380), + [sym_required] = ACTIONS(4380), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2020] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4382), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2021] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4384), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2022] = { + [sym_preproc_def] = STATE(2475), + [sym_preproc_function_def] = STATE(2475), + [sym_declaration] = STATE(2475), + [sym_type_definition] = STATE(2475), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2475), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2475), + [sym__interface_declaration_specifier] = STATE(2475), + [sym_method_declaration] = STATE(2475), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2475), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4386), + [anon_sym_ATend] = ACTIONS(4388), + [sym_optional] = ACTIONS(4390), + [sym_required] = ACTIONS(4390), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2023] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4392), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2024] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4394), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2025] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4396), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2026] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4398), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2027] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4400), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2028] = { + [sym_preproc_def] = STATE(2286), + [sym_preproc_function_def] = STATE(2286), + [sym_declaration] = STATE(2286), + [sym_type_definition] = STATE(2286), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2286), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2286), + [sym__interface_declaration_specifier] = STATE(2286), + [sym_method_declaration] = STATE(2286), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2286), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4402), + [anon_sym_ATend] = ACTIONS(4404), + [sym_optional] = ACTIONS(4406), + [sym_required] = ACTIONS(4406), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2029] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4408), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2030] = { + [sym_preproc_def] = STATE(2281), + [sym_preproc_function_def] = STATE(2281), + [sym_declaration] = STATE(2281), + [sym_type_definition] = STATE(2281), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2281), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2281), + [sym__interface_declaration_specifier] = STATE(2281), + [sym_method_declaration] = STATE(2281), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2281), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4410), + [anon_sym_ATend] = ACTIONS(4412), + [sym_optional] = ACTIONS(4414), + [sym_required] = ACTIONS(4414), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2031] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4416), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2032] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4148), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2033] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4418), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2034] = { + [sym_preproc_def] = STATE(2001), + [sym_preproc_function_def] = STATE(2001), + [sym_declaration] = STATE(2001), + [sym_type_definition] = STATE(2001), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2001), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2001), + [sym__interface_declaration_specifier] = STATE(2001), + [sym_method_declaration] = STATE(2001), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2001), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4420), + [anon_sym_ATend] = ACTIONS(4422), + [sym_optional] = ACTIONS(4424), + [sym_required] = ACTIONS(4424), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2035] = { + [sym_preproc_def] = STATE(2366), + [sym_preproc_function_def] = STATE(2366), + [sym_declaration] = STATE(2366), + [sym_type_definition] = STATE(2366), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2366), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2366), + [sym__interface_declaration_specifier] = STATE(2366), + [sym_method_declaration] = STATE(2366), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2366), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4426), + [anon_sym_ATend] = ACTIONS(4428), + [sym_optional] = ACTIONS(4430), + [sym_required] = ACTIONS(4430), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2036] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4432), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2037] = { + [sym_preproc_def] = STATE(2476), + [sym_preproc_function_def] = STATE(2476), + [sym_declaration] = STATE(2476), + [sym_type_definition] = STATE(2476), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2476), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2476), + [sym__interface_declaration_specifier] = STATE(2476), + [sym_method_declaration] = STATE(2476), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2476), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4434), + [anon_sym_ATend] = ACTIONS(4436), + [sym_optional] = ACTIONS(4438), + [sym_required] = ACTIONS(4438), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2038] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4440), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2039] = { + [sym_preproc_def] = STATE(2332), + [sym_preproc_function_def] = STATE(2332), + [sym_declaration] = STATE(2332), + [sym_type_definition] = STATE(2332), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2332), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2332), + [sym__interface_declaration_specifier] = STATE(2332), + [sym_method_declaration] = STATE(2332), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2332), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4442), + [anon_sym_ATend] = ACTIONS(4444), + [sym_optional] = ACTIONS(4446), + [sym_required] = ACTIONS(4446), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2040] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4448), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2041] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4450), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2042] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4452), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2043] = { + [sym_preproc_def] = STATE(1983), + [sym_preproc_function_def] = STATE(1983), + [sym_declaration] = STATE(1983), + [sym_type_definition] = STATE(1983), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1983), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(1983), + [sym__interface_declaration_specifier] = STATE(1983), + [sym_method_declaration] = STATE(1983), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1983), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4454), + [anon_sym_ATend] = ACTIONS(4456), + [sym_optional] = ACTIONS(4458), + [sym_required] = ACTIONS(4458), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2044] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4460), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2045] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4462), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2046] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4464), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2047] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4466), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2048] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4468), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2049] = { + [sym_preproc_def] = STATE(2298), + [sym_preproc_function_def] = STATE(2298), + [sym_declaration] = STATE(2298), + [sym_type_definition] = STATE(2298), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2298), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2298), + [sym__interface_declaration_specifier] = STATE(2298), + [sym_method_declaration] = STATE(2298), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2298), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4470), + [anon_sym_ATend] = ACTIONS(4472), + [sym_optional] = ACTIONS(4474), + [sym_required] = ACTIONS(4474), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2050] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4476), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2051] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4478), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2052] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4480), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2053] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4482), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2054] = { + [sym_preproc_def] = STATE(2300), + [sym_preproc_function_def] = STATE(2300), + [sym_declaration] = STATE(2300), + [sym_type_definition] = STATE(2300), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2300), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2300), + [sym__interface_declaration_specifier] = STATE(2300), + [sym_method_declaration] = STATE(2300), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2300), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4484), + [anon_sym_ATend] = ACTIONS(4486), + [sym_optional] = ACTIONS(4488), + [sym_required] = ACTIONS(4488), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2055] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4490), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2056] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4492), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2057] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4494), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2058] = { + [sym_preproc_def] = STATE(2634), + [sym_preproc_function_def] = STATE(2634), + [sym_declaration] = STATE(2634), + [sym_type_definition] = STATE(2634), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2634), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2634), + [sym__interface_declaration_specifier] = STATE(2634), + [sym_method_declaration] = STATE(2634), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2634), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4496), + [anon_sym_ATend] = ACTIONS(4498), + [sym_optional] = ACTIONS(4500), + [sym_required] = ACTIONS(4500), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2059] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4502), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2060] = { + [sym_preproc_def] = STATE(2310), + [sym_preproc_function_def] = STATE(2310), + [sym_declaration] = STATE(2310), + [sym_type_definition] = STATE(2310), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2310), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2310), + [sym__interface_declaration_specifier] = STATE(2310), + [sym_method_declaration] = STATE(2310), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2310), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4504), + [anon_sym_ATend] = ACTIONS(4506), + [sym_optional] = ACTIONS(4508), + [sym_required] = ACTIONS(4508), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2061] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4510), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2062] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4512), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2063] = { + [sym_preproc_def] = STATE(2315), + [sym_preproc_function_def] = STATE(2315), + [sym_declaration] = STATE(2315), + [sym_type_definition] = STATE(2315), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2315), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2315), + [sym__interface_declaration_specifier] = STATE(2315), + [sym_method_declaration] = STATE(2315), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2315), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4514), + [anon_sym_ATend] = ACTIONS(4516), + [sym_optional] = ACTIONS(4518), + [sym_required] = ACTIONS(4518), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2064] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4520), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2065] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4522), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2066] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4524), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2067] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4526), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2068] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4528), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2069] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4530), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2070] = { + [sym_preproc_def] = STATE(2319), + [sym_preproc_function_def] = STATE(2319), + [sym_declaration] = STATE(2319), + [sym_type_definition] = STATE(2319), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2319), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2319), + [sym__interface_declaration_specifier] = STATE(2319), + [sym_method_declaration] = STATE(2319), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2319), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4532), + [anon_sym_ATend] = ACTIONS(4534), + [sym_optional] = ACTIONS(4536), + [sym_required] = ACTIONS(4536), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2071] = { + [sym_preproc_def] = STATE(2189), + [sym_preproc_function_def] = STATE(2189), + [sym_declaration] = STATE(2189), + [sym_type_definition] = STATE(2189), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2189), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2189), + [sym__interface_declaration_specifier] = STATE(2189), + [sym_method_declaration] = STATE(2189), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2189), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4538), + [anon_sym_ATend] = ACTIONS(4540), + [sym_optional] = ACTIONS(4542), + [sym_required] = ACTIONS(4542), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2072] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4544), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2073] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4546), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2074] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4548), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2075] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4550), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2076] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4552), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2077] = { + [sym_preproc_def] = STATE(2080), + [sym_preproc_function_def] = STATE(2080), + [sym_declaration] = STATE(2080), + [sym_type_definition] = STATE(2080), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2080), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2080), + [sym__interface_declaration_specifier] = STATE(2080), + [sym_method_declaration] = STATE(2080), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2080), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4554), + [anon_sym_ATend] = ACTIONS(4556), + [sym_optional] = ACTIONS(4558), + [sym_required] = ACTIONS(4558), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2078] = { + [sym_preproc_def] = STATE(2659), + [sym_preproc_function_def] = STATE(2659), + [sym_declaration] = STATE(2659), + [sym_type_definition] = STATE(2659), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2659), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2659), + [sym__interface_declaration_specifier] = STATE(2659), + [sym_method_declaration] = STATE(2659), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2659), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4560), + [anon_sym_ATend] = ACTIONS(4562), + [sym_optional] = ACTIONS(4564), + [sym_required] = ACTIONS(4564), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2079] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4566), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2080] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4568), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2081] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4570), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2082] = { + [sym_preproc_def] = STATE(2320), + [sym_preproc_function_def] = STATE(2320), + [sym_declaration] = STATE(2320), + [sym_type_definition] = STATE(2320), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2320), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2320), + [sym__interface_declaration_specifier] = STATE(2320), + [sym_method_declaration] = STATE(2320), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2320), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4572), + [anon_sym_ATend] = ACTIONS(4574), + [sym_optional] = ACTIONS(4576), + [sym_required] = ACTIONS(4576), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2083] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4578), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2084] = { + [sym_preproc_def] = STATE(2012), + [sym_preproc_function_def] = STATE(2012), + [sym_declaration] = STATE(2012), + [sym_type_definition] = STATE(2012), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2012), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2012), + [sym__interface_declaration_specifier] = STATE(2012), + [sym_method_declaration] = STATE(2012), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2012), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4580), + [anon_sym_ATend] = ACTIONS(4582), + [sym_optional] = ACTIONS(4584), + [sym_required] = ACTIONS(4584), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2085] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4586), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2086] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4588), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2087] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4590), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2088] = { + [sym_preproc_def] = STATE(2610), + [sym_preproc_function_def] = STATE(2610), + [sym_declaration] = STATE(2610), + [sym_type_definition] = STATE(2610), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2610), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2610), + [sym__interface_declaration_specifier] = STATE(2610), + [sym_method_declaration] = STATE(2610), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2610), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4592), + [anon_sym_ATend] = ACTIONS(4594), + [sym_optional] = ACTIONS(4596), + [sym_required] = ACTIONS(4596), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2089] = { + [sym_preproc_def] = STATE(2670), + [sym_preproc_function_def] = STATE(2670), + [sym_declaration] = STATE(2670), + [sym_type_definition] = STATE(2670), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2670), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2670), + [sym__interface_declaration_specifier] = STATE(2670), + [sym_method_declaration] = STATE(2670), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2670), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4598), + [anon_sym_ATend] = ACTIONS(4600), + [sym_optional] = ACTIONS(4602), + [sym_required] = ACTIONS(4602), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2090] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4604), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2091] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4606), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2092] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4608), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2093] = { + [sym_preproc_def] = STATE(1993), + [sym_preproc_function_def] = STATE(1993), + [sym_declaration] = STATE(1993), + [sym_type_definition] = STATE(1993), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1993), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(1993), + [sym__interface_declaration_specifier] = STATE(1993), + [sym_method_declaration] = STATE(1993), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1993), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4610), + [anon_sym_ATend] = ACTIONS(4612), + [sym_optional] = ACTIONS(4614), + [sym_required] = ACTIONS(4614), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2094] = { + [sym_preproc_def] = STATE(2196), + [sym_preproc_function_def] = STATE(2196), + [sym_declaration] = STATE(2196), + [sym_type_definition] = STATE(2196), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2196), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2196), + [sym__interface_declaration_specifier] = STATE(2196), + [sym_method_declaration] = STATE(2196), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2196), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4616), + [anon_sym_ATend] = ACTIONS(4618), + [sym_optional] = ACTIONS(4620), + [sym_required] = ACTIONS(4620), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2095] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4622), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2096] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4624), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2097] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(2436), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2098] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4626), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2099] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4628), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2100] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4630), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2101] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4632), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2102] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4634), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2103] = { + [sym_preproc_def] = STATE(2658), + [sym_preproc_function_def] = STATE(2658), + [sym_declaration] = STATE(2658), + [sym_type_definition] = STATE(2658), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2658), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2658), + [sym__interface_declaration_specifier] = STATE(2658), + [sym_method_declaration] = STATE(2658), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2658), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4636), + [anon_sym_ATend] = ACTIONS(4638), + [sym_optional] = ACTIONS(4640), + [sym_required] = ACTIONS(4640), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2104] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4642), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2105] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4644), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2106] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4646), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2107] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4648), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2108] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4650), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2109] = { + [sym_preproc_def] = STATE(2203), + [sym_preproc_function_def] = STATE(2203), + [sym_declaration] = STATE(2203), + [sym_type_definition] = STATE(2203), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2203), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2203), + [sym__interface_declaration_specifier] = STATE(2203), + [sym_method_declaration] = STATE(2203), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2203), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4652), + [anon_sym_ATend] = ACTIONS(4654), + [sym_optional] = ACTIONS(4656), + [sym_required] = ACTIONS(4656), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2110] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4658), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2111] = { + [sym_preproc_def] = STATE(2068), + [sym_preproc_function_def] = STATE(2068), + [sym_declaration] = STATE(2068), + [sym_type_definition] = STATE(2068), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2068), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2068), + [sym__interface_declaration_specifier] = STATE(2068), + [sym_method_declaration] = STATE(2068), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2068), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4660), + [anon_sym_ATend] = ACTIONS(4662), + [sym_optional] = ACTIONS(4664), + [sym_required] = ACTIONS(4664), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2112] = { + [sym_preproc_def] = STATE(2657), + [sym_preproc_function_def] = STATE(2657), + [sym_declaration] = STATE(2657), + [sym_type_definition] = STATE(2657), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2657), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2657), + [sym__interface_declaration_specifier] = STATE(2657), + [sym_method_declaration] = STATE(2657), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2657), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4666), + [anon_sym_ATend] = ACTIONS(4668), + [sym_optional] = ACTIONS(4670), + [sym_required] = ACTIONS(4670), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2113] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4672), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2114] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4674), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2115] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4676), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2116] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4678), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2117] = { + [sym_preproc_def] = STATE(2207), + [sym_preproc_function_def] = STATE(2207), + [sym_declaration] = STATE(2207), + [sym_type_definition] = STATE(2207), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2207), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2207), + [sym__interface_declaration_specifier] = STATE(2207), + [sym_method_declaration] = STATE(2207), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2207), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4680), + [anon_sym_ATend] = ACTIONS(4682), + [sym_optional] = ACTIONS(4684), + [sym_required] = ACTIONS(4684), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2118] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4686), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2119] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4688), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2120] = { + [sym_preproc_def] = STATE(2654), + [sym_preproc_function_def] = STATE(2654), + [sym_declaration] = STATE(2654), + [sym_type_definition] = STATE(2654), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2654), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2654), + [sym__interface_declaration_specifier] = STATE(2654), + [sym_method_declaration] = STATE(2654), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2654), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4690), + [anon_sym_ATend] = ACTIONS(4692), + [sym_optional] = ACTIONS(4694), + [sym_required] = ACTIONS(4694), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2121] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4696), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2122] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4692), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2123] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4698), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2124] = { + [sym_preproc_def] = STATE(2214), + [sym_preproc_function_def] = STATE(2214), + [sym_declaration] = STATE(2214), + [sym_type_definition] = STATE(2214), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2214), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2214), + [sym__interface_declaration_specifier] = STATE(2214), + [sym_method_declaration] = STATE(2214), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2214), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4700), + [anon_sym_ATend] = ACTIONS(4702), + [sym_optional] = ACTIONS(4704), + [sym_required] = ACTIONS(4704), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2125] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4706), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2126] = { + [sym_preproc_def] = STATE(2335), + [sym_preproc_function_def] = STATE(2335), + [sym_declaration] = STATE(2335), + [sym_type_definition] = STATE(2335), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2335), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2335), + [sym__interface_declaration_specifier] = STATE(2335), + [sym_method_declaration] = STATE(2335), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2335), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4708), + [anon_sym_ATend] = ACTIONS(4710), + [sym_optional] = ACTIONS(4712), + [sym_required] = ACTIONS(4712), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2127] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4714), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2128] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4716), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2129] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4718), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2130] = { + [sym_preproc_def] = STATE(2218), + [sym_preproc_function_def] = STATE(2218), + [sym_declaration] = STATE(2218), + [sym_type_definition] = STATE(2218), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2218), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2218), + [sym__interface_declaration_specifier] = STATE(2218), + [sym_method_declaration] = STATE(2218), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2218), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4720), + [anon_sym_ATend] = ACTIONS(4722), + [sym_optional] = ACTIONS(4724), + [sym_required] = ACTIONS(4724), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2131] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4726), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2132] = { + [sym_preproc_def] = STATE(2491), + [sym_preproc_function_def] = STATE(2491), + [sym_declaration] = STATE(2491), + [sym_type_definition] = STATE(2491), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2491), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2491), + [sym__interface_declaration_specifier] = STATE(2491), + [sym_method_declaration] = STATE(2491), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2491), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4728), + [anon_sym_ATend] = ACTIONS(4730), + [sym_optional] = ACTIONS(4732), + [sym_required] = ACTIONS(4732), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2133] = { + [sym_preproc_def] = STATE(2220), + [sym_preproc_function_def] = STATE(2220), + [sym_declaration] = STATE(2220), + [sym_type_definition] = STATE(2220), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2220), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2220), + [sym__interface_declaration_specifier] = STATE(2220), + [sym_method_declaration] = STATE(2220), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2220), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4734), + [anon_sym_ATend] = ACTIONS(4642), + [sym_optional] = ACTIONS(4736), + [sym_required] = ACTIONS(4736), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2134] = { + [sym_preproc_def] = STATE(2594), + [sym_preproc_function_def] = STATE(2594), + [sym_declaration] = STATE(2594), + [sym_type_definition] = STATE(2594), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2594), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2594), + [sym__interface_declaration_specifier] = STATE(2594), + [sym_method_declaration] = STATE(2594), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2594), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2434), + [anon_sym_ATend] = ACTIONS(2436), + [sym_optional] = ACTIONS(2438), + [sym_required] = ACTIONS(2438), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2135] = { + [sym_preproc_def] = STATE(2046), + [sym_preproc_function_def] = STATE(2046), + [sym_declaration] = STATE(2046), + [sym_type_definition] = STATE(2046), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2046), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2046), + [sym__interface_declaration_specifier] = STATE(2046), + [sym_method_declaration] = STATE(2046), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2046), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4738), + [anon_sym_ATend] = ACTIONS(4740), + [sym_optional] = ACTIONS(4742), + [sym_required] = ACTIONS(4742), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2136] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4744), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2137] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4746), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2138] = { + [sym_preproc_def] = STATE(2652), + [sym_preproc_function_def] = STATE(2652), + [sym_declaration] = STATE(2652), + [sym_type_definition] = STATE(2652), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2652), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2652), + [sym__interface_declaration_specifier] = STATE(2652), + [sym_method_declaration] = STATE(2652), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2652), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4092), + [anon_sym_ATend] = ACTIONS(4094), + [sym_optional] = ACTIONS(4096), + [sym_required] = ACTIONS(4096), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2139] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4748), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2140] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4750), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2141] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4752), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2142] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4754), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2143] = { + [sym_preproc_def] = STATE(2291), + [sym_preproc_function_def] = STATE(2291), + [sym_declaration] = STATE(2291), + [sym_type_definition] = STATE(2291), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2291), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2291), + [sym__interface_declaration_specifier] = STATE(2291), + [sym_method_declaration] = STATE(2291), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2291), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4756), + [anon_sym_ATend] = ACTIONS(4758), + [sym_optional] = ACTIONS(4760), + [sym_required] = ACTIONS(4760), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2144] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4094), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2145] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4762), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2146] = { + [sym_preproc_def] = STATE(2482), + [sym_preproc_function_def] = STATE(2482), + [sym_declaration] = STATE(2482), + [sym_type_definition] = STATE(2482), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2482), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2482), + [sym__interface_declaration_specifier] = STATE(2482), + [sym_method_declaration] = STATE(2482), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2482), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4764), + [anon_sym_ATend] = ACTIONS(4766), + [sym_optional] = ACTIONS(4768), + [sym_required] = ACTIONS(4768), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2147] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4770), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2148] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4772), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2149] = { + [sym_preproc_def] = STATE(1959), + [sym_preproc_function_def] = STATE(1959), + [sym_declaration] = STATE(1959), + [sym_type_definition] = STATE(1959), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1959), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(1959), + [sym__interface_declaration_specifier] = STATE(1959), + [sym_method_declaration] = STATE(1959), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1959), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4774), + [anon_sym_ATend] = ACTIONS(4776), + [sym_optional] = ACTIONS(4778), + [sym_required] = ACTIONS(4778), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2150] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4780), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2151] = { + [sym_preproc_def] = STATE(2347), + [sym_preproc_function_def] = STATE(2347), + [sym_declaration] = STATE(2347), + [sym_type_definition] = STATE(2347), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2347), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2347), + [sym__interface_declaration_specifier] = STATE(2347), + [sym_method_declaration] = STATE(2347), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2347), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4782), + [anon_sym_ATend] = ACTIONS(4784), + [sym_optional] = ACTIONS(4786), + [sym_required] = ACTIONS(4786), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2152] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4784), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2153] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4788), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2154] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4790), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2155] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4792), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2156] = { + [sym_preproc_def] = STATE(1960), + [sym_preproc_function_def] = STATE(1960), + [sym_declaration] = STATE(1960), + [sym_type_definition] = STATE(1960), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1960), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(1960), + [sym__interface_declaration_specifier] = STATE(1960), + [sym_method_declaration] = STATE(1960), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1960), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4794), + [anon_sym_ATend] = ACTIONS(4796), + [sym_optional] = ACTIONS(4798), + [sym_required] = ACTIONS(4798), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2157] = { + [sym_preproc_def] = STATE(2246), + [sym_preproc_function_def] = STATE(2246), + [sym_declaration] = STATE(2246), + [sym_type_definition] = STATE(2246), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2246), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2246), + [sym__interface_declaration_specifier] = STATE(2246), + [sym_method_declaration] = STATE(2246), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2246), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4800), + [anon_sym_ATend] = ACTIONS(4802), + [sym_optional] = ACTIONS(4804), + [sym_required] = ACTIONS(4804), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2158] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4806), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2159] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(2472), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2160] = { + [sym_preproc_def] = STATE(1994), + [sym_preproc_function_def] = STATE(1994), + [sym_declaration] = STATE(1994), + [sym_type_definition] = STATE(1994), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1994), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(1994), + [sym__interface_declaration_specifier] = STATE(1994), + [sym_method_declaration] = STATE(1994), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1994), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2470), + [anon_sym_ATend] = ACTIONS(2472), + [sym_optional] = ACTIONS(2474), + [sym_required] = ACTIONS(2474), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2161] = { + [sym_preproc_def] = STATE(2074), + [sym_preproc_function_def] = STATE(2074), + [sym_declaration] = STATE(2074), + [sym_type_definition] = STATE(2074), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2074), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2074), + [sym__interface_declaration_specifier] = STATE(2074), + [sym_method_declaration] = STATE(2074), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2074), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4808), + [anon_sym_ATend] = ACTIONS(4810), + [sym_optional] = ACTIONS(4812), + [sym_required] = ACTIONS(4812), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2162] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4814), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2163] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4816), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2164] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4818), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2165] = { + [sym_preproc_def] = STATE(2010), + [sym_preproc_function_def] = STATE(2010), + [sym_declaration] = STATE(2010), + [sym_type_definition] = STATE(2010), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2010), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2010), + [sym__interface_declaration_specifier] = STATE(2010), + [sym_method_declaration] = STATE(2010), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2010), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4820), + [anon_sym_ATend] = ACTIONS(4822), + [sym_optional] = ACTIONS(4824), + [sym_required] = ACTIONS(4824), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2166] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4826), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2167] = { + [sym_preproc_def] = STATE(2241), + [sym_preproc_function_def] = STATE(2241), + [sym_declaration] = STATE(2241), + [sym_type_definition] = STATE(2241), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2241), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2241), + [sym__interface_declaration_specifier] = STATE(2241), + [sym_method_declaration] = STATE(2241), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2241), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4828), + [anon_sym_ATend] = ACTIONS(4830), + [sym_optional] = ACTIONS(4832), + [sym_required] = ACTIONS(4832), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2168] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4834), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2169] = { + [sym_preproc_def] = STATE(2025), + [sym_preproc_function_def] = STATE(2025), + [sym_declaration] = STATE(2025), + [sym_type_definition] = STATE(2025), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2025), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2025), + [sym__interface_declaration_specifier] = STATE(2025), + [sym_method_declaration] = STATE(2025), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2025), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4836), + [anon_sym_ATend] = ACTIONS(4838), + [sym_optional] = ACTIONS(4840), + [sym_required] = ACTIONS(4840), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2170] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4842), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2171] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4844), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2172] = { + [sym_preproc_def] = STATE(2031), + [sym_preproc_function_def] = STATE(2031), + [sym_declaration] = STATE(2031), + [sym_type_definition] = STATE(2031), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2031), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2031), + [sym__interface_declaration_specifier] = STATE(2031), + [sym_method_declaration] = STATE(2031), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2031), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4846), + [anon_sym_ATend] = ACTIONS(4848), + [sym_optional] = ACTIONS(4850), + [sym_required] = ACTIONS(4850), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2173] = { + [sym_preproc_def] = STATE(2067), + [sym_preproc_function_def] = STATE(2067), + [sym_declaration] = STATE(2067), + [sym_type_definition] = STATE(2067), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2067), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2067), + [sym__interface_declaration_specifier] = STATE(2067), + [sym_method_declaration] = STATE(2067), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2067), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4852), + [anon_sym_ATend] = ACTIONS(4854), + [sym_optional] = ACTIONS(4856), + [sym_required] = ACTIONS(4856), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2174] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4858), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2175] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4860), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2176] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(3686), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2177] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4862), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2178] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4864), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2179] = { + [sym_preproc_def] = STATE(2348), + [sym_preproc_function_def] = STATE(2348), + [sym_declaration] = STATE(2348), + [sym_type_definition] = STATE(2348), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2348), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2348), + [sym__interface_declaration_specifier] = STATE(2348), + [sym_method_declaration] = STATE(2348), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2348), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4866), + [anon_sym_ATend] = ACTIONS(4868), + [sym_optional] = ACTIONS(4870), + [sym_required] = ACTIONS(4870), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2180] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4872), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2181] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4874), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2182] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4876), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2183] = { + [sym_preproc_def] = STATE(2350), + [sym_preproc_function_def] = STATE(2350), + [sym_declaration] = STATE(2350), + [sym_type_definition] = STATE(2350), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2350), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2350), + [sym__interface_declaration_specifier] = STATE(2350), + [sym_method_declaration] = STATE(2350), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2350), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4878), + [anon_sym_ATend] = ACTIONS(4880), + [sym_optional] = ACTIONS(4882), + [sym_required] = ACTIONS(4882), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2184] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4884), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2185] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4886), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2186] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4888), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2187] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4890), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2188] = { + [sym_preproc_def] = STATE(2090), + [sym_preproc_function_def] = STATE(2090), + [sym_declaration] = STATE(2090), + [sym_type_definition] = STATE(2090), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2090), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2090), + [sym__interface_declaration_specifier] = STATE(2090), + [sym_method_declaration] = STATE(2090), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2090), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4892), + [anon_sym_ATend] = ACTIONS(4894), + [sym_optional] = ACTIONS(4896), + [sym_required] = ACTIONS(4896), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2189] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4898), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2190] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4900), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2191] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4902), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2192] = { + [sym_preproc_def] = STATE(2044), + [sym_preproc_function_def] = STATE(2044), + [sym_declaration] = STATE(2044), + [sym_type_definition] = STATE(2044), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2044), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2044), + [sym__interface_declaration_specifier] = STATE(2044), + [sym_method_declaration] = STATE(2044), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2044), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4904), + [anon_sym_ATend] = ACTIONS(4906), + [sym_optional] = ACTIONS(4908), + [sym_required] = ACTIONS(4908), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2193] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(3082), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2194] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4910), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2195] = { + [sym_preproc_def] = STATE(2062), + [sym_preproc_function_def] = STATE(2062), + [sym_declaration] = STATE(2062), + [sym_type_definition] = STATE(2062), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2062), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2062), + [sym__interface_declaration_specifier] = STATE(2062), + [sym_method_declaration] = STATE(2062), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2062), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4912), + [anon_sym_ATend] = ACTIONS(4914), + [sym_optional] = ACTIONS(4916), + [sym_required] = ACTIONS(4916), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2196] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4918), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2197] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4920), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2198] = { + [sym_preproc_def] = STATE(2231), + [sym_preproc_function_def] = STATE(2231), + [sym_declaration] = STATE(2231), + [sym_type_definition] = STATE(2231), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2231), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2231), + [sym__interface_declaration_specifier] = STATE(2231), + [sym_method_declaration] = STATE(2231), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2231), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4922), + [anon_sym_ATend] = ACTIONS(4924), + [sym_optional] = ACTIONS(4926), + [sym_required] = ACTIONS(4926), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2199] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4928), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2200] = { + [sym_preproc_def] = STATE(2457), + [sym_preproc_function_def] = STATE(2457), + [sym_declaration] = STATE(2457), + [sym_type_definition] = STATE(2457), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2457), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2457), + [sym__interface_declaration_specifier] = STATE(2457), + [sym_method_declaration] = STATE(2457), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2457), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4930), + [anon_sym_ATend] = ACTIONS(4932), + [sym_optional] = ACTIONS(4934), + [sym_required] = ACTIONS(4934), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2201] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4936), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2202] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4938), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2203] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4940), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2204] = { + [sym_preproc_def] = STATE(2547), + [sym_preproc_function_def] = STATE(2547), + [sym_declaration] = STATE(2547), + [sym_type_definition] = STATE(2547), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2547), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2547), + [sym__interface_declaration_specifier] = STATE(2547), + [sym_method_declaration] = STATE(2547), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2547), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4942), + [anon_sym_ATend] = ACTIONS(4944), + [sym_optional] = ACTIONS(4946), + [sym_required] = ACTIONS(4946), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2205] = { + [sym_preproc_def] = STATE(2651), + [sym_preproc_function_def] = STATE(2651), + [sym_declaration] = STATE(2651), + [sym_type_definition] = STATE(2651), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2651), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2651), + [sym__interface_declaration_specifier] = STATE(2651), + [sym_method_declaration] = STATE(2651), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2651), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3080), + [anon_sym_ATend] = ACTIONS(3082), + [sym_optional] = ACTIONS(3084), + [sym_required] = ACTIONS(3084), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2206] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4948), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2207] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4950), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2208] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4952), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2209] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4954), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2210] = { + [sym_preproc_def] = STATE(2260), + [sym_preproc_function_def] = STATE(2260), + [sym_declaration] = STATE(2260), + [sym_type_definition] = STATE(2260), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2260), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2260), + [sym__interface_declaration_specifier] = STATE(2260), + [sym_method_declaration] = STATE(2260), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2260), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4956), + [anon_sym_ATend] = ACTIONS(4958), + [sym_optional] = ACTIONS(4960), + [sym_required] = ACTIONS(4960), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2211] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4962), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2212] = { + [sym_preproc_def] = STATE(2595), + [sym_preproc_function_def] = STATE(2595), + [sym_declaration] = STATE(2595), + [sym_type_definition] = STATE(2595), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2595), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2595), + [sym__interface_declaration_specifier] = STATE(2595), + [sym_method_declaration] = STATE(2595), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2595), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4964), + [anon_sym_ATend] = ACTIONS(4966), + [sym_optional] = ACTIONS(4968), + [sym_required] = ACTIONS(4968), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2213] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4970), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2214] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4972), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2215] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4974), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2216] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4976), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2217] = { + [sym_preproc_def] = STATE(2612), + [sym_preproc_function_def] = STATE(2612), + [sym_declaration] = STATE(2612), + [sym_type_definition] = STATE(2612), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2612), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2612), + [sym__interface_declaration_specifier] = STATE(2612), + [sym_method_declaration] = STATE(2612), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2612), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4978), + [anon_sym_ATend] = ACTIONS(4980), + [sym_optional] = ACTIONS(4982), + [sym_required] = ACTIONS(4982), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2218] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4984), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2219] = { + [sym_preproc_def] = STATE(2613), + [sym_preproc_function_def] = STATE(2613), + [sym_declaration] = STATE(2613), + [sym_type_definition] = STATE(2613), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2613), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2613), + [sym__interface_declaration_specifier] = STATE(2613), + [sym_method_declaration] = STATE(2613), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2613), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2924), + [anon_sym_ATend] = ACTIONS(2926), + [sym_optional] = ACTIONS(2928), + [sym_required] = ACTIONS(2928), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2220] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4986), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2221] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(2926), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2222] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(3740), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2223] = { + [sym_preproc_def] = STATE(2640), + [sym_preproc_function_def] = STATE(2640), + [sym_declaration] = STATE(2640), + [sym_type_definition] = STATE(2640), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2640), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2640), + [sym__interface_declaration_specifier] = STATE(2640), + [sym_method_declaration] = STATE(2640), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2640), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3738), + [anon_sym_ATend] = ACTIONS(3740), + [sym_optional] = ACTIONS(3742), + [sym_required] = ACTIONS(3742), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2224] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4988), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2225] = { + [sym_preproc_def] = STATE(2274), + [sym_preproc_function_def] = STATE(2274), + [sym_declaration] = STATE(2274), + [sym_type_definition] = STATE(2274), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2274), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2274), + [sym__interface_declaration_specifier] = STATE(2274), + [sym_method_declaration] = STATE(2274), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2274), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4990), + [anon_sym_ATend] = ACTIONS(4992), + [sym_optional] = ACTIONS(4994), + [sym_required] = ACTIONS(4994), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2226] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4996), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2227] = { + [sym_preproc_def] = STATE(2589), + [sym_preproc_function_def] = STATE(2589), + [sym_declaration] = STATE(2589), + [sym_type_definition] = STATE(2589), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2589), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2589), + [sym__interface_declaration_specifier] = STATE(2589), + [sym_method_declaration] = STATE(2589), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2589), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4998), + [anon_sym_ATend] = ACTIONS(5000), + [sym_optional] = ACTIONS(5002), + [sym_required] = ACTIONS(5002), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2228] = { + [sym_preproc_def] = STATE(2353), + [sym_preproc_function_def] = STATE(2353), + [sym_declaration] = STATE(2353), + [sym_type_definition] = STATE(2353), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2353), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2353), + [sym__interface_declaration_specifier] = STATE(2353), + [sym_method_declaration] = STATE(2353), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2353), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5004), + [anon_sym_ATend] = ACTIONS(5006), + [sym_optional] = ACTIONS(5008), + [sym_required] = ACTIONS(5008), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2229] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5010), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2230] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5012), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2231] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5014), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2232] = { + [sym_preproc_def] = STATE(2354), + [sym_preproc_function_def] = STATE(2354), + [sym_declaration] = STATE(2354), + [sym_type_definition] = STATE(2354), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2354), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2354), + [sym__interface_declaration_specifier] = STATE(2354), + [sym_method_declaration] = STATE(2354), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2354), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5016), + [anon_sym_ATend] = ACTIONS(5018), + [sym_optional] = ACTIONS(5020), + [sym_required] = ACTIONS(5020), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2233] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5022), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2234] = { + [sym_preproc_def] = STATE(2666), + [sym_preproc_function_def] = STATE(2666), + [sym_declaration] = STATE(2666), + [sym_type_definition] = STATE(2666), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2666), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2666), + [sym__interface_declaration_specifier] = STATE(2666), + [sym_method_declaration] = STATE(2666), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2666), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5024), + [anon_sym_ATend] = ACTIONS(5012), + [sym_optional] = ACTIONS(5026), + [sym_required] = ACTIONS(5026), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2235] = { + [sym_preproc_def] = STATE(2355), + [sym_preproc_function_def] = STATE(2355), + [sym_declaration] = STATE(2355), + [sym_type_definition] = STATE(2355), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2355), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2355), + [sym__interface_declaration_specifier] = STATE(2355), + [sym_method_declaration] = STATE(2355), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2355), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3684), + [anon_sym_ATend] = ACTIONS(3686), + [sym_optional] = ACTIONS(3688), + [sym_required] = ACTIONS(3688), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2236] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5028), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2237] = { + [sym_preproc_def] = STATE(2356), + [sym_preproc_function_def] = STATE(2356), + [sym_declaration] = STATE(2356), + [sym_type_definition] = STATE(2356), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2356), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2356), + [sym__interface_declaration_specifier] = STATE(2356), + [sym_method_declaration] = STATE(2356), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2356), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5030), + [anon_sym_ATend] = ACTIONS(5032), + [sym_optional] = ACTIONS(5034), + [sym_required] = ACTIONS(5034), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2238] = { + [sym_preproc_def] = STATE(2660), + [sym_preproc_function_def] = STATE(2660), + [sym_declaration] = STATE(2660), + [sym_type_definition] = STATE(2660), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2660), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2660), + [sym__interface_declaration_specifier] = STATE(2660), + [sym_method_declaration] = STATE(2660), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2660), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5036), + [anon_sym_ATend] = ACTIONS(5038), + [sym_optional] = ACTIONS(5040), + [sym_required] = ACTIONS(5040), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2239] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5042), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2240] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5044), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2241] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5046), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2242] = { + [sym_preproc_def] = STATE(2369), + [sym_preproc_function_def] = STATE(2369), + [sym_declaration] = STATE(2369), + [sym_type_definition] = STATE(2369), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2369), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2369), + [sym__interface_declaration_specifier] = STATE(2369), + [sym_method_declaration] = STATE(2369), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2369), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5048), + [anon_sym_ATend] = ACTIONS(5050), + [sym_optional] = ACTIONS(5052), + [sym_required] = ACTIONS(5052), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2243] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5054), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2244] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5056), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2245] = { + [sym_preproc_def] = STATE(2069), + [sym_preproc_function_def] = STATE(2069), + [sym_declaration] = STATE(2069), + [sym_type_definition] = STATE(2069), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2069), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2069), + [sym__interface_declaration_specifier] = STATE(2069), + [sym_method_declaration] = STATE(2069), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2069), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5058), + [anon_sym_ATend] = ACTIONS(5060), + [sym_optional] = ACTIONS(5062), + [sym_required] = ACTIONS(5062), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2246] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5064), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2247] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5066), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2248] = { + [sym_preproc_def] = STATE(2386), + [sym_preproc_function_def] = STATE(2386), + [sym_declaration] = STATE(2386), + [sym_type_definition] = STATE(2386), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2386), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2386), + [sym__interface_declaration_specifier] = STATE(2386), + [sym_method_declaration] = STATE(2386), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2386), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5068), + [anon_sym_ATend] = ACTIONS(5070), + [sym_optional] = ACTIONS(5072), + [sym_required] = ACTIONS(5072), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2249] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5074), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2250] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5076), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2251] = { + [sym_preproc_def] = STATE(2057), + [sym_preproc_function_def] = STATE(2057), + [sym_declaration] = STATE(2057), + [sym_type_definition] = STATE(2057), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2057), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2057), + [sym__interface_declaration_specifier] = STATE(2057), + [sym_method_declaration] = STATE(2057), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2057), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5078), + [anon_sym_ATend] = ACTIONS(5080), + [sym_optional] = ACTIONS(5082), + [sym_required] = ACTIONS(5082), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2252] = { + [sym_preproc_def] = STATE(2389), + [sym_preproc_function_def] = STATE(2389), + [sym_declaration] = STATE(2389), + [sym_type_definition] = STATE(2389), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2389), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2389), + [sym__interface_declaration_specifier] = STATE(2389), + [sym_method_declaration] = STATE(2389), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2389), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5084), + [anon_sym_ATend] = ACTIONS(5086), + [sym_optional] = ACTIONS(5088), + [sym_required] = ACTIONS(5088), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2253] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5090), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2254] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5092), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2255] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5094), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2256] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5096), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2257] = { + [sym_preproc_def] = STATE(2523), + [sym_preproc_function_def] = STATE(2523), + [sym_declaration] = STATE(2523), + [sym_type_definition] = STATE(2523), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2523), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2523), + [sym__interface_declaration_specifier] = STATE(2523), + [sym_method_declaration] = STATE(2523), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2523), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5098), + [anon_sym_ATend] = ACTIONS(5100), + [sym_optional] = ACTIONS(5102), + [sym_required] = ACTIONS(5102), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2258] = { + [sym_preproc_def] = STATE(2650), + [sym_preproc_function_def] = STATE(2650), + [sym_declaration] = STATE(2650), + [sym_type_definition] = STATE(2650), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2650), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2650), + [sym__interface_declaration_specifier] = STATE(2650), + [sym_method_declaration] = STATE(2650), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2650), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5104), + [anon_sym_ATend] = ACTIONS(5106), + [sym_optional] = ACTIONS(5108), + [sym_required] = ACTIONS(5108), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2259] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5110), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2260] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5112), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2261] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5114), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2262] = { + [sym_preproc_def] = STATE(2265), + [sym_preproc_function_def] = STATE(2265), + [sym_declaration] = STATE(2265), + [sym_type_definition] = STATE(2265), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2265), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2265), + [sym__interface_declaration_specifier] = STATE(2265), + [sym_method_declaration] = STATE(2265), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2265), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5116), + [anon_sym_ATend] = ACTIONS(5118), + [sym_optional] = ACTIONS(5120), + [sym_required] = ACTIONS(5120), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2263] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5122), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2264] = { + [sym_preproc_def] = STATE(2385), + [sym_preproc_function_def] = STATE(2385), + [sym_declaration] = STATE(2385), + [sym_type_definition] = STATE(2385), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2385), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2385), + [sym__interface_declaration_specifier] = STATE(2385), + [sym_method_declaration] = STATE(2385), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2385), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5124), + [anon_sym_ATend] = ACTIONS(5126), + [sym_optional] = ACTIONS(5128), + [sym_required] = ACTIONS(5128), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2265] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5130), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2266] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5132), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2267] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5134), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2268] = { + [sym_preproc_def] = STATE(2630), + [sym_preproc_function_def] = STATE(2630), + [sym_declaration] = STATE(2630), + [sym_type_definition] = STATE(2630), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2630), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2630), + [sym__interface_declaration_specifier] = STATE(2630), + [sym_method_declaration] = STATE(2630), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2630), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5136), + [anon_sym_ATend] = ACTIONS(5138), + [sym_optional] = ACTIONS(5140), + [sym_required] = ACTIONS(5140), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2269] = { + [sym_preproc_def] = STATE(2404), + [sym_preproc_function_def] = STATE(2404), + [sym_declaration] = STATE(2404), + [sym_type_definition] = STATE(2404), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2404), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2404), + [sym__interface_declaration_specifier] = STATE(2404), + [sym_method_declaration] = STATE(2404), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2404), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5142), + [anon_sym_ATend] = ACTIONS(5144), + [sym_optional] = ACTIONS(5146), + [sym_required] = ACTIONS(5146), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2270] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5148), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2271] = { + [sym_preproc_def] = STATE(2240), + [sym_preproc_function_def] = STATE(2240), + [sym_declaration] = STATE(2240), + [sym_type_definition] = STATE(2240), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2240), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2240), + [sym__interface_declaration_specifier] = STATE(2240), + [sym_method_declaration] = STATE(2240), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2240), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5150), + [anon_sym_ATend] = ACTIONS(5152), + [sym_optional] = ACTIONS(5154), + [sym_required] = ACTIONS(5154), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2272] = { + [sym_preproc_def] = STATE(2407), + [sym_preproc_function_def] = STATE(2407), + [sym_declaration] = STATE(2407), + [sym_type_definition] = STATE(2407), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2407), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2407), + [sym__interface_declaration_specifier] = STATE(2407), + [sym_method_declaration] = STATE(2407), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2407), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5156), + [anon_sym_ATend] = ACTIONS(5158), + [sym_optional] = ACTIONS(5160), + [sym_required] = ACTIONS(5160), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2273] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5162), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2274] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5164), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2275] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5166), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2276] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5168), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2277] = { + [sym_preproc_def] = STATE(2427), + [sym_preproc_function_def] = STATE(2427), + [sym_declaration] = STATE(2427), + [sym_type_definition] = STATE(2427), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2427), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2427), + [sym__interface_declaration_specifier] = STATE(2427), + [sym_method_declaration] = STATE(2427), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2427), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5170), + [anon_sym_ATend] = ACTIONS(5172), + [sym_optional] = ACTIONS(5174), + [sym_required] = ACTIONS(5174), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2278] = { + [sym_preproc_def] = STATE(2422), + [sym_preproc_function_def] = STATE(2422), + [sym_declaration] = STATE(2422), + [sym_type_definition] = STATE(2422), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2422), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2422), + [sym__interface_declaration_specifier] = STATE(2422), + [sym_method_declaration] = STATE(2422), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2422), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5176), + [anon_sym_ATend] = ACTIONS(5178), + [sym_optional] = ACTIONS(5180), + [sym_required] = ACTIONS(5180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2279] = { + [sym_preproc_def] = STATE(2215), + [sym_preproc_function_def] = STATE(2215), + [sym_declaration] = STATE(2215), + [sym_type_definition] = STATE(2215), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2215), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2215), + [sym__interface_declaration_specifier] = STATE(2215), + [sym_method_declaration] = STATE(2215), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2215), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5182), + [anon_sym_ATend] = ACTIONS(5184), + [sym_optional] = ACTIONS(5186), + [sym_required] = ACTIONS(5186), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2280] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5188), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2281] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5190), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2282] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5192), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2283] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(2454), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2284] = { + [sym_preproc_def] = STATE(2159), + [sym_preproc_function_def] = STATE(2159), + [sym_declaration] = STATE(2159), + [sym_type_definition] = STATE(2159), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2159), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2159), + [sym__interface_declaration_specifier] = STATE(2159), + [sym_method_declaration] = STATE(2159), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2159), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2452), + [anon_sym_ATend] = ACTIONS(2454), + [sym_optional] = ACTIONS(2456), + [sym_required] = ACTIONS(2456), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2285] = { + [sym_preproc_def] = STATE(2226), + [sym_preproc_function_def] = STATE(2226), + [sym_declaration] = STATE(2226), + [sym_type_definition] = STATE(2226), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2226), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2226), + [sym__interface_declaration_specifier] = STATE(2226), + [sym_method_declaration] = STATE(2226), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2226), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5194), + [anon_sym_ATend] = ACTIONS(5196), + [sym_optional] = ACTIONS(5198), + [sym_required] = ACTIONS(5198), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2286] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5200), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2287] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5202), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2288] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5204), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2289] = { + [sym_preproc_def] = STATE(2163), + [sym_preproc_function_def] = STATE(2163), + [sym_declaration] = STATE(2163), + [sym_type_definition] = STATE(2163), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2163), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2163), + [sym__interface_declaration_specifier] = STATE(2163), + [sym_method_declaration] = STATE(2163), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2163), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5206), + [anon_sym_ATend] = ACTIONS(5208), + [sym_optional] = ACTIONS(5210), + [sym_required] = ACTIONS(5210), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2290] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5212), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2291] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5214), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2292] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5216), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2293] = { + [sym_preproc_def] = STATE(2047), + [sym_preproc_function_def] = STATE(2047), + [sym_declaration] = STATE(2047), + [sym_type_definition] = STATE(2047), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2047), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2047), + [sym__interface_declaration_specifier] = STATE(2047), + [sym_method_declaration] = STATE(2047), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2047), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5218), + [anon_sym_ATend] = ACTIONS(5220), + [sym_optional] = ACTIONS(5222), + [sym_required] = ACTIONS(5222), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2294] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5224), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2295] = { + [sym_preproc_def] = STATE(2420), + [sym_preproc_function_def] = STATE(2420), + [sym_declaration] = STATE(2420), + [sym_type_definition] = STATE(2420), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2420), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2420), + [sym__interface_declaration_specifier] = STATE(2420), + [sym_method_declaration] = STATE(2420), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2420), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5226), + [anon_sym_ATend] = ACTIONS(5228), + [sym_optional] = ACTIONS(5230), + [sym_required] = ACTIONS(5230), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2296] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5232), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2297] = { + [sym_preproc_def] = STATE(2178), + [sym_preproc_function_def] = STATE(2178), + [sym_declaration] = STATE(2178), + [sym_type_definition] = STATE(2178), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2178), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2178), + [sym__interface_declaration_specifier] = STATE(2178), + [sym_method_declaration] = STATE(2178), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2178), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5234), + [anon_sym_ATend] = ACTIONS(5236), + [sym_optional] = ACTIONS(5238), + [sym_required] = ACTIONS(5238), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2298] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5240), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2299] = { + [sym_preproc_def] = STATE(2485), + [sym_preproc_function_def] = STATE(2485), + [sym_declaration] = STATE(2485), + [sym_type_definition] = STATE(2485), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2485), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2485), + [sym__interface_declaration_specifier] = STATE(2485), + [sym_method_declaration] = STATE(2485), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2485), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5242), + [anon_sym_ATend] = ACTIONS(5244), + [sym_optional] = ACTIONS(5246), + [sym_required] = ACTIONS(5246), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2300] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5248), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2301] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5250), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2302] = { + [sym_preproc_def] = STATE(2027), + [sym_preproc_function_def] = STATE(2027), + [sym_declaration] = STATE(2027), + [sym_type_definition] = STATE(2027), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2027), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2027), + [sym__interface_declaration_specifier] = STATE(2027), + [sym_method_declaration] = STATE(2027), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2027), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5252), + [anon_sym_ATend] = ACTIONS(5254), + [sym_optional] = ACTIONS(5256), + [sym_required] = ACTIONS(5256), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2303] = { + [sym_preproc_def] = STATE(2561), + [sym_preproc_function_def] = STATE(2561), + [sym_declaration] = STATE(2561), + [sym_type_definition] = STATE(2561), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2561), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2561), + [sym__interface_declaration_specifier] = STATE(2561), + [sym_method_declaration] = STATE(2561), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2561), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5258), + [anon_sym_ATend] = ACTIONS(5260), + [sym_optional] = ACTIONS(5262), + [sym_required] = ACTIONS(5262), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2304] = { + [sym_preproc_def] = STATE(2577), + [sym_preproc_function_def] = STATE(2577), + [sym_declaration] = STATE(2577), + [sym_type_definition] = STATE(2577), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2577), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2577), + [sym__interface_declaration_specifier] = STATE(2577), + [sym_method_declaration] = STATE(2577), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2577), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5264), + [anon_sym_ATend] = ACTIONS(5266), + [sym_optional] = ACTIONS(5268), + [sym_required] = ACTIONS(5268), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2305] = { + [sym_preproc_def] = STATE(1968), + [sym_preproc_function_def] = STATE(1968), + [sym_declaration] = STATE(1968), + [sym_type_definition] = STATE(1968), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1968), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(1968), + [sym__interface_declaration_specifier] = STATE(1968), + [sym_method_declaration] = STATE(1968), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1968), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5270), + [anon_sym_ATend] = ACTIONS(5272), + [sym_optional] = ACTIONS(5274), + [sym_required] = ACTIONS(5274), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2306] = { + [sym_preproc_def] = STATE(2426), + [sym_preproc_function_def] = STATE(2426), + [sym_declaration] = STATE(2426), + [sym_type_definition] = STATE(2426), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2426), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2426), + [sym__interface_declaration_specifier] = STATE(2426), + [sym_method_declaration] = STATE(2426), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2426), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5276), + [anon_sym_ATend] = ACTIONS(5278), + [sym_optional] = ACTIONS(5280), + [sym_required] = ACTIONS(5280), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2307] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5282), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2308] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5284), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2309] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5286), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2310] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5288), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2311] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5290), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2312] = { + [sym_preproc_def] = STATE(2341), + [sym_preproc_function_def] = STATE(2341), + [sym_declaration] = STATE(2341), + [sym_type_definition] = STATE(2341), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2341), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2341), + [sym__interface_declaration_specifier] = STATE(2341), + [sym_method_declaration] = STATE(2341), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2341), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5292), + [anon_sym_ATend] = ACTIONS(5294), + [sym_optional] = ACTIONS(5296), + [sym_required] = ACTIONS(5296), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2313] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5298), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2314] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5300), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2315] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5302), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2316] = { + [sym_preproc_def] = STATE(2428), + [sym_preproc_function_def] = STATE(2428), + [sym_declaration] = STATE(2428), + [sym_type_definition] = STATE(2428), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2428), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2428), + [sym__interface_declaration_specifier] = STATE(2428), + [sym_method_declaration] = STATE(2428), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2428), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5304), + [anon_sym_ATend] = ACTIONS(5306), + [sym_optional] = ACTIONS(5308), + [sym_required] = ACTIONS(5308), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2317] = { + [sym_preproc_def] = STATE(2570), + [sym_preproc_function_def] = STATE(2570), + [sym_declaration] = STATE(2570), + [sym_type_definition] = STATE(2570), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2570), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2570), + [sym__interface_declaration_specifier] = STATE(2570), + [sym_method_declaration] = STATE(2570), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2570), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5310), + [anon_sym_ATend] = ACTIONS(5312), + [sym_optional] = ACTIONS(5314), + [sym_required] = ACTIONS(5314), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2318] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5316), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2319] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5318), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2320] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5320), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2321] = { + [sym_preproc_def] = STATE(2656), + [sym_preproc_function_def] = STATE(2656), + [sym_declaration] = STATE(2656), + [sym_type_definition] = STATE(2656), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2656), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2656), + [sym__interface_declaration_specifier] = STATE(2656), + [sym_method_declaration] = STATE(2656), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2656), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5322), + [anon_sym_ATend] = ACTIONS(5324), + [sym_optional] = ACTIONS(5326), + [sym_required] = ACTIONS(5326), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2322] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5328), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2323] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5330), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2324] = { + [sym_preproc_def] = STATE(2128), + [sym_preproc_function_def] = STATE(2128), + [sym_declaration] = STATE(2128), + [sym_type_definition] = STATE(2128), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2128), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2128), + [sym__interface_declaration_specifier] = STATE(2128), + [sym_method_declaration] = STATE(2128), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2128), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5332), + [anon_sym_ATend] = ACTIONS(5334), + [sym_optional] = ACTIONS(5336), + [sym_required] = ACTIONS(5336), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2325] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5338), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2326] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5340), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2327] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5342), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2328] = { + [sym_preproc_def] = STATE(2032), + [sym_preproc_function_def] = STATE(2032), + [sym_declaration] = STATE(2032), + [sym_type_definition] = STATE(2032), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2032), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2032), + [sym__interface_declaration_specifier] = STATE(2032), + [sym_method_declaration] = STATE(2032), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2032), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4074), + [anon_sym_ATend] = ACTIONS(4076), + [sym_optional] = ACTIONS(4078), + [sym_required] = ACTIONS(4078), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2329] = { + [sym_preproc_def] = STATE(2255), + [sym_preproc_function_def] = STATE(2255), + [sym_declaration] = STATE(2255), + [sym_type_definition] = STATE(2255), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2255), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2255), + [sym__interface_declaration_specifier] = STATE(2255), + [sym_method_declaration] = STATE(2255), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2255), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5344), + [anon_sym_ATend] = ACTIONS(5346), + [sym_optional] = ACTIONS(5348), + [sym_required] = ACTIONS(5348), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2330] = { + [sym_preproc_def] = STATE(1973), + [sym_preproc_function_def] = STATE(1973), + [sym_declaration] = STATE(1973), + [sym_type_definition] = STATE(1973), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1973), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(1973), + [sym__interface_declaration_specifier] = STATE(1973), + [sym_method_declaration] = STATE(1973), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1973), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5350), + [anon_sym_ATend] = ACTIONS(5352), + [sym_optional] = ACTIONS(5354), + [sym_required] = ACTIONS(5354), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2331] = { + [sym_preproc_def] = STATE(2429), + [sym_preproc_function_def] = STATE(2429), + [sym_declaration] = STATE(2429), + [sym_type_definition] = STATE(2429), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2429), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2429), + [sym__interface_declaration_specifier] = STATE(2429), + [sym_method_declaration] = STATE(2429), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2429), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5356), + [anon_sym_ATend] = ACTIONS(5358), + [sym_optional] = ACTIONS(5360), + [sym_required] = ACTIONS(5360), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2332] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5362), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2333] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5364), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2334] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5366), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2335] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5368), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2336] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5370), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2337] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5372), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2338] = { + [sym_preproc_def] = STATE(2224), + [sym_preproc_function_def] = STATE(2224), + [sym_declaration] = STATE(2224), + [sym_type_definition] = STATE(2224), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2224), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2224), + [sym__interface_declaration_specifier] = STATE(2224), + [sym_method_declaration] = STATE(2224), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2224), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5374), + [anon_sym_ATend] = ACTIONS(5376), + [sym_optional] = ACTIONS(5378), + [sym_required] = ACTIONS(5378), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2339] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5380), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2340] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(2538), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2341] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5382), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2342] = { + [sym_preproc_def] = STATE(2254), + [sym_preproc_function_def] = STATE(2254), + [sym_declaration] = STATE(2254), + [sym_type_definition] = STATE(2254), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2254), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2254), + [sym__interface_declaration_specifier] = STATE(2254), + [sym_method_declaration] = STATE(2254), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2254), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5384), + [anon_sym_ATend] = ACTIONS(5386), + [sym_optional] = ACTIONS(5388), + [sym_required] = ACTIONS(5388), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2343] = { + [sym_preproc_def] = STATE(2052), + [sym_preproc_function_def] = STATE(2052), + [sym_declaration] = STATE(2052), + [sym_type_definition] = STATE(2052), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2052), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2052), + [sym__interface_declaration_specifier] = STATE(2052), + [sym_method_declaration] = STATE(2052), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2052), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5390), + [anon_sym_ATend] = ACTIONS(5392), + [sym_optional] = ACTIONS(5394), + [sym_required] = ACTIONS(5394), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2344] = { + [sym_preproc_def] = STATE(2439), + [sym_preproc_function_def] = STATE(2439), + [sym_declaration] = STATE(2439), + [sym_type_definition] = STATE(2439), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2439), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2439), + [sym__interface_declaration_specifier] = STATE(2439), + [sym_method_declaration] = STATE(2439), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2439), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5396), + [anon_sym_ATend] = ACTIONS(5398), + [sym_optional] = ACTIONS(5400), + [sym_required] = ACTIONS(5400), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2345] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5402), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2346] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5404), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2347] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5406), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2348] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5408), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2349] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5410), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2350] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5412), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2351] = { + [sym_preproc_def] = STATE(2440), + [sym_preproc_function_def] = STATE(2440), + [sym_declaration] = STATE(2440), + [sym_type_definition] = STATE(2440), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2440), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2440), + [sym__interface_declaration_specifier] = STATE(2440), + [sym_method_declaration] = STATE(2440), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2440), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5414), + [anon_sym_ATend] = ACTIONS(5416), + [sym_optional] = ACTIONS(5418), + [sym_required] = ACTIONS(5418), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2352] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5420), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2353] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5422), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2354] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5424), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2355] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(3500), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2356] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5426), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2357] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5428), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2358] = { + [sym_preproc_def] = STATE(2040), + [sym_preproc_function_def] = STATE(2040), + [sym_declaration] = STATE(2040), + [sym_type_definition] = STATE(2040), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2040), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2040), + [sym__interface_declaration_specifier] = STATE(2040), + [sym_method_declaration] = STATE(2040), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2040), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5430), + [anon_sym_ATend] = ACTIONS(5432), + [sym_optional] = ACTIONS(5434), + [sym_required] = ACTIONS(5434), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2359] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5436), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2360] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5438), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2361] = { + [sym_preproc_def] = STATE(2441), + [sym_preproc_function_def] = STATE(2441), + [sym_declaration] = STATE(2441), + [sym_type_definition] = STATE(2441), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2441), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2441), + [sym__interface_declaration_specifier] = STATE(2441), + [sym_method_declaration] = STATE(2441), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2441), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5440), + [anon_sym_ATend] = ACTIONS(5442), + [sym_optional] = ACTIONS(5444), + [sym_required] = ACTIONS(5444), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2362] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5446), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2363] = { + [sym_preproc_def] = STATE(2036), + [sym_preproc_function_def] = STATE(2036), + [sym_declaration] = STATE(2036), + [sym_type_definition] = STATE(2036), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2036), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2036), + [sym__interface_declaration_specifier] = STATE(2036), + [sym_method_declaration] = STATE(2036), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2036), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5448), + [anon_sym_ATend] = ACTIONS(5450), + [sym_optional] = ACTIONS(5452), + [sym_required] = ACTIONS(5452), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2364] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5454), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2365] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5456), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2366] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5458), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2367] = { + [sym_preproc_def] = STATE(2647), + [sym_preproc_function_def] = STATE(2647), + [sym_declaration] = STATE(2647), + [sym_type_definition] = STATE(2647), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2647), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2647), + [sym__interface_declaration_specifier] = STATE(2647), + [sym_method_declaration] = STATE(2647), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2647), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5460), + [anon_sym_ATend] = ACTIONS(5462), + [sym_optional] = ACTIONS(5464), + [sym_required] = ACTIONS(5464), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2368] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5466), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2369] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5468), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2370] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5470), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2371] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5472), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2372] = { + [sym_preproc_def] = STATE(2571), + [sym_preproc_function_def] = STATE(2571), + [sym_declaration] = STATE(2571), + [sym_type_definition] = STATE(2571), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2571), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2571), + [sym__interface_declaration_specifier] = STATE(2571), + [sym_method_declaration] = STATE(2571), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2571), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5474), + [anon_sym_ATend] = ACTIONS(5476), + [sym_optional] = ACTIONS(5478), + [sym_required] = ACTIONS(5478), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2373] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5480), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2374] = { + [sym_preproc_def] = STATE(2053), + [sym_preproc_function_def] = STATE(2053), + [sym_declaration] = STATE(2053), + [sym_type_definition] = STATE(2053), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2053), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2053), + [sym__interface_declaration_specifier] = STATE(2053), + [sym_method_declaration] = STATE(2053), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2053), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5482), + [anon_sym_ATend] = ACTIONS(5484), + [sym_optional] = ACTIONS(5486), + [sym_required] = ACTIONS(5486), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2375] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5488), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2376] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(2502), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2377] = { + [sym_preproc_def] = STATE(2419), + [sym_preproc_function_def] = STATE(2419), + [sym_declaration] = STATE(2419), + [sym_type_definition] = STATE(2419), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2419), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2419), + [sym__interface_declaration_specifier] = STATE(2419), + [sym_method_declaration] = STATE(2419), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2419), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2500), + [anon_sym_ATend] = ACTIONS(2502), + [sym_optional] = ACTIONS(2504), + [sym_required] = ACTIONS(2504), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2378] = { + [sym_preproc_def] = STATE(2056), + [sym_preproc_function_def] = STATE(2056), + [sym_declaration] = STATE(2056), + [sym_type_definition] = STATE(2056), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2056), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2056), + [sym__interface_declaration_specifier] = STATE(2056), + [sym_method_declaration] = STATE(2056), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2056), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5490), + [anon_sym_ATend] = ACTIONS(5492), + [sym_optional] = ACTIONS(5494), + [sym_required] = ACTIONS(5494), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2379] = { + [sym_preproc_def] = STATE(2122), + [sym_preproc_function_def] = STATE(2122), + [sym_declaration] = STATE(2122), + [sym_type_definition] = STATE(2122), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2122), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2122), + [sym__interface_declaration_specifier] = STATE(2122), + [sym_method_declaration] = STATE(2122), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2122), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3582), + [anon_sym_ATend] = ACTIONS(3584), + [sym_optional] = ACTIONS(3586), + [sym_required] = ACTIONS(3586), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2380] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5496), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2381] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5498), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2382] = { + [sym_preproc_def] = STATE(2442), + [sym_preproc_function_def] = STATE(2442), + [sym_declaration] = STATE(2442), + [sym_type_definition] = STATE(2442), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2442), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2442), + [sym__interface_declaration_specifier] = STATE(2442), + [sym_method_declaration] = STATE(2442), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2442), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5500), + [anon_sym_ATend] = ACTIONS(5502), + [sym_optional] = ACTIONS(5504), + [sym_required] = ACTIONS(5504), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2383] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5506), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2384] = { + [sym_preproc_def] = STATE(2083), + [sym_preproc_function_def] = STATE(2083), + [sym_declaration] = STATE(2083), + [sym_type_definition] = STATE(2083), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2083), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2083), + [sym__interface_declaration_specifier] = STATE(2083), + [sym_method_declaration] = STATE(2083), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2083), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5508), + [anon_sym_ATend] = ACTIONS(5510), + [sym_optional] = ACTIONS(5512), + [sym_required] = ACTIONS(5512), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2385] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5514), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2386] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5516), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2387] = { + [sym_preproc_def] = STATE(2456), + [sym_preproc_function_def] = STATE(2456), + [sym_declaration] = STATE(2456), + [sym_type_definition] = STATE(2456), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2456), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2456), + [sym__interface_declaration_specifier] = STATE(2456), + [sym_method_declaration] = STATE(2456), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2456), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5518), + [anon_sym_ATend] = ACTIONS(5520), + [sym_optional] = ACTIONS(5522), + [sym_required] = ACTIONS(5522), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2388] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5524), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2389] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5526), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2390] = { + [sym_preproc_def] = STATE(2370), + [sym_preproc_function_def] = STATE(2370), + [sym_declaration] = STATE(2370), + [sym_type_definition] = STATE(2370), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2370), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2370), + [sym__interface_declaration_specifier] = STATE(2370), + [sym_method_declaration] = STATE(2370), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2370), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5528), + [anon_sym_ATend] = ACTIONS(5530), + [sym_optional] = ACTIONS(5532), + [sym_required] = ACTIONS(5532), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2391] = { + [sym_preproc_def] = STATE(2050), + [sym_preproc_function_def] = STATE(2050), + [sym_declaration] = STATE(2050), + [sym_type_definition] = STATE(2050), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2050), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2050), + [sym__interface_declaration_specifier] = STATE(2050), + [sym_method_declaration] = STATE(2050), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2050), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3930), + [anon_sym_ATend] = ACTIONS(3932), + [sym_optional] = ACTIONS(3934), + [sym_required] = ACTIONS(3934), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2392] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5534), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2393] = { + [sym_preproc_def] = STATE(2458), + [sym_preproc_function_def] = STATE(2458), + [sym_declaration] = STATE(2458), + [sym_type_definition] = STATE(2458), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2458), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2458), + [sym__interface_declaration_specifier] = STATE(2458), + [sym_method_declaration] = STATE(2458), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2458), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5536), + [anon_sym_ATend] = ACTIONS(5538), + [sym_optional] = ACTIONS(5540), + [sym_required] = ACTIONS(5540), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2394] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(3584), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2395] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5542), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2396] = { + [sym_preproc_def] = STATE(2048), + [sym_preproc_function_def] = STATE(2048), + [sym_declaration] = STATE(2048), + [sym_type_definition] = STATE(2048), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2048), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2048), + [sym__interface_declaration_specifier] = STATE(2048), + [sym_method_declaration] = STATE(2048), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2048), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5544), + [anon_sym_ATend] = ACTIONS(5546), + [sym_optional] = ACTIONS(5548), + [sym_required] = ACTIONS(5548), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2397] = { + [sym_preproc_def] = STATE(2460), + [sym_preproc_function_def] = STATE(2460), + [sym_declaration] = STATE(2460), + [sym_type_definition] = STATE(2460), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2460), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2460), + [sym__interface_declaration_specifier] = STATE(2460), + [sym_method_declaration] = STATE(2460), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2460), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3498), + [anon_sym_ATend] = ACTIONS(3500), + [sym_optional] = ACTIONS(3502), + [sym_required] = ACTIONS(3502), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2398] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5550), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2399] = { + [sym_preproc_def] = STATE(2466), + [sym_preproc_function_def] = STATE(2466), + [sym_declaration] = STATE(2466), + [sym_type_definition] = STATE(2466), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2466), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2466), + [sym__interface_declaration_specifier] = STATE(2466), + [sym_method_declaration] = STATE(2466), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2466), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5552), + [anon_sym_ATend] = ACTIONS(5554), + [sym_optional] = ACTIONS(5556), + [sym_required] = ACTIONS(5556), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2400] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5558), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2401] = { + [sym_preproc_def] = STATE(2065), + [sym_preproc_function_def] = STATE(2065), + [sym_declaration] = STATE(2065), + [sym_type_definition] = STATE(2065), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2065), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2065), + [sym__interface_declaration_specifier] = STATE(2065), + [sym_method_declaration] = STATE(2065), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2065), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5560), + [anon_sym_ATend] = ACTIONS(5562), + [sym_optional] = ACTIONS(5564), + [sym_required] = ACTIONS(5564), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2402] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5566), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2403] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5568), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2404] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5570), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2405] = { + [sym_preproc_def] = STATE(2471), + [sym_preproc_function_def] = STATE(2471), + [sym_declaration] = STATE(2471), + [sym_type_definition] = STATE(2471), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2471), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2471), + [sym__interface_declaration_specifier] = STATE(2471), + [sym_method_declaration] = STATE(2471), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2471), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5572), + [anon_sym_ATend] = ACTIONS(5574), + [sym_optional] = ACTIONS(5576), + [sym_required] = ACTIONS(5576), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2406] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5578), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2407] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5580), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2408] = { + [sym_preproc_def] = STATE(2081), + [sym_preproc_function_def] = STATE(2081), + [sym_declaration] = STATE(2081), + [sym_type_definition] = STATE(2081), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2081), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2081), + [sym__interface_declaration_specifier] = STATE(2081), + [sym_method_declaration] = STATE(2081), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2081), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5582), + [anon_sym_ATend] = ACTIONS(5584), + [sym_optional] = ACTIONS(5586), + [sym_required] = ACTIONS(5586), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2409] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5588), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2410] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5590), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2411] = { + [sym_preproc_def] = STATE(2478), + [sym_preproc_function_def] = STATE(2478), + [sym_declaration] = STATE(2478), + [sym_type_definition] = STATE(2478), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2478), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2478), + [sym__interface_declaration_specifier] = STATE(2478), + [sym_method_declaration] = STATE(2478), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2478), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5592), + [anon_sym_ATend] = ACTIONS(5594), + [sym_optional] = ACTIONS(5596), + [sym_required] = ACTIONS(5596), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2412] = { + [sym_preproc_def] = STATE(2639), + [sym_preproc_function_def] = STATE(2639), + [sym_declaration] = STATE(2639), + [sym_type_definition] = STATE(2639), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2639), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2639), + [sym__interface_declaration_specifier] = STATE(2639), + [sym_method_declaration] = STATE(2639), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2639), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5598), + [anon_sym_ATend] = ACTIONS(5600), + [sym_optional] = ACTIONS(5602), + [sym_required] = ACTIONS(5602), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2413] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5604), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2414] = { + [sym_preproc_def] = STATE(2045), + [sym_preproc_function_def] = STATE(2045), + [sym_declaration] = STATE(2045), + [sym_type_definition] = STATE(2045), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2045), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2045), + [sym__interface_declaration_specifier] = STATE(2045), + [sym_method_declaration] = STATE(2045), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2045), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5606), + [anon_sym_ATend] = ACTIONS(5608), + [sym_optional] = ACTIONS(5610), + [sym_required] = ACTIONS(5610), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2415] = { + [sym_preproc_def] = STATE(2193), + [sym_preproc_function_def] = STATE(2193), + [sym_declaration] = STATE(2193), + [sym_type_definition] = STATE(2193), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2193), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2193), + [sym__interface_declaration_specifier] = STATE(2193), + [sym_method_declaration] = STATE(2193), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2193), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2440), + [anon_sym_ATend] = ACTIONS(2442), + [sym_optional] = ACTIONS(2444), + [sym_required] = ACTIONS(2444), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2416] = { + [sym_preproc_def] = STATE(2490), + [sym_preproc_function_def] = STATE(2490), + [sym_declaration] = STATE(2490), + [sym_type_definition] = STATE(2490), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2490), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2490), + [sym__interface_declaration_specifier] = STATE(2490), + [sym_method_declaration] = STATE(2490), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2490), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5612), + [anon_sym_ATend] = ACTIONS(5614), + [sym_optional] = ACTIONS(5616), + [sym_required] = ACTIONS(5616), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2417] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5618), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2418] = { + [sym_preproc_def] = STATE(2009), + [sym_preproc_function_def] = STATE(2009), + [sym_declaration] = STATE(2009), + [sym_type_definition] = STATE(2009), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2009), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2009), + [sym__interface_declaration_specifier] = STATE(2009), + [sym_method_declaration] = STATE(2009), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2009), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5620), + [anon_sym_ATend] = ACTIONS(5622), + [sym_optional] = ACTIONS(5624), + [sym_required] = ACTIONS(5624), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2419] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(2442), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2420] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5626), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2421] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5628), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2422] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5630), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2423] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5632), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2424] = { + [sym_preproc_def] = STATE(1982), + [sym_preproc_function_def] = STATE(1982), + [sym_declaration] = STATE(1982), + [sym_type_definition] = STATE(1982), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1982), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(1982), + [sym__interface_declaration_specifier] = STATE(1982), + [sym_method_declaration] = STATE(1982), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1982), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5634), + [anon_sym_ATend] = ACTIONS(5636), + [sym_optional] = ACTIONS(5638), + [sym_required] = ACTIONS(5638), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2425] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5640), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2426] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5642), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2427] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5644), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2428] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5646), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2429] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5648), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2430] = { + [sym_preproc_def] = STATE(2518), + [sym_preproc_function_def] = STATE(2518), + [sym_declaration] = STATE(2518), + [sym_type_definition] = STATE(2518), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2518), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2518), + [sym__interface_declaration_specifier] = STATE(2518), + [sym_method_declaration] = STATE(2518), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2518), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5650), + [anon_sym_ATend] = ACTIONS(5652), + [sym_optional] = ACTIONS(5654), + [sym_required] = ACTIONS(5654), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2431] = { + [sym_preproc_def] = STATE(2496), + [sym_preproc_function_def] = STATE(2496), + [sym_declaration] = STATE(2496), + [sym_type_definition] = STATE(2496), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2496), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2496), + [sym__interface_declaration_specifier] = STATE(2496), + [sym_method_declaration] = STATE(2496), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2496), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5656), + [anon_sym_ATend] = ACTIONS(5658), + [sym_optional] = ACTIONS(5660), + [sym_required] = ACTIONS(5660), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2432] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5662), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2433] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5664), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2434] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5666), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2435] = { + [sym_preproc_def] = STATE(2519), + [sym_preproc_function_def] = STATE(2519), + [sym_declaration] = STATE(2519), + [sym_type_definition] = STATE(2519), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2519), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2519), + [sym__interface_declaration_specifier] = STATE(2519), + [sym_method_declaration] = STATE(2519), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2519), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5668), + [anon_sym_ATend] = ACTIONS(4476), + [sym_optional] = ACTIONS(5670), + [sym_required] = ACTIONS(5670), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2436] = { + [sym_preproc_def] = STATE(2376), + [sym_preproc_function_def] = STATE(2376), + [sym_declaration] = STATE(2376), + [sym_type_definition] = STATE(2376), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2376), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2376), + [sym__interface_declaration_specifier] = STATE(2376), + [sym_method_declaration] = STATE(2376), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2376), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2536), + [anon_sym_ATend] = ACTIONS(2538), + [sym_optional] = ACTIONS(2540), + [sym_required] = ACTIONS(2540), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2437] = { + [sym_preproc_def] = STATE(2510), + [sym_preproc_function_def] = STATE(2510), + [sym_declaration] = STATE(2510), + [sym_type_definition] = STATE(2510), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2510), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2510), + [sym__interface_declaration_specifier] = STATE(2510), + [sym_method_declaration] = STATE(2510), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2510), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5672), + [anon_sym_ATend] = ACTIONS(5674), + [sym_optional] = ACTIONS(5676), + [sym_required] = ACTIONS(5676), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2438] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5678), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2439] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5680), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2440] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5682), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2441] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5684), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2442] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5686), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2443] = { + [sym_preproc_def] = STATE(1957), + [sym_preproc_function_def] = STATE(1957), + [sym_declaration] = STATE(1957), + [sym_type_definition] = STATE(1957), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1957), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(1957), + [sym__interface_declaration_specifier] = STATE(1957), + [sym_method_declaration] = STATE(1957), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1957), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5688), + [anon_sym_ATend] = ACTIONS(5690), + [sym_optional] = ACTIONS(5692), + [sym_required] = ACTIONS(5692), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2444] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5694), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2445] = { + [sym_preproc_def] = STATE(2622), + [sym_preproc_function_def] = STATE(2622), + [sym_declaration] = STATE(2622), + [sym_type_definition] = STATE(2622), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2622), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2622), + [sym__interface_declaration_specifier] = STATE(2622), + [sym_method_declaration] = STATE(2622), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2622), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5696), + [anon_sym_ATend] = ACTIONS(5698), + [sym_optional] = ACTIONS(5700), + [sym_required] = ACTIONS(5700), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2446] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5702), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2447] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5704), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2448] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5706), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2449] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5708), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2450] = { + [sym_preproc_def] = STATE(1987), + [sym_preproc_function_def] = STATE(1987), + [sym_declaration] = STATE(1987), + [sym_type_definition] = STATE(1987), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1987), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(1987), + [sym__interface_declaration_specifier] = STATE(1987), + [sym_method_declaration] = STATE(1987), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1987), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5710), + [anon_sym_ATend] = ACTIONS(5712), + [sym_optional] = ACTIONS(5714), + [sym_required] = ACTIONS(5714), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2451] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5716), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2452] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(3932), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2453] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5718), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2454] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5720), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2455] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5722), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2456] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5724), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2457] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5726), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2458] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5728), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2459] = { + [sym_preproc_def] = STATE(2021), + [sym_preproc_function_def] = STATE(2021), + [sym_declaration] = STATE(2021), + [sym_type_definition] = STATE(2021), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2021), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2021), + [sym__interface_declaration_specifier] = STATE(2021), + [sym_method_declaration] = STATE(2021), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2021), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5730), + [anon_sym_ATend] = ACTIONS(5732), + [sym_optional] = ACTIONS(5734), + [sym_required] = ACTIONS(5734), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2460] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5736), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2461] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5738), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2462] = { + [sym_preproc_def] = STATE(2186), + [sym_preproc_function_def] = STATE(2186), + [sym_declaration] = STATE(2186), + [sym_type_definition] = STATE(2186), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2186), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2186), + [sym__interface_declaration_specifier] = STATE(2186), + [sym_method_declaration] = STATE(2186), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2186), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5740), + [anon_sym_ATend] = ACTIONS(5742), + [sym_optional] = ACTIONS(5744), + [sym_required] = ACTIONS(5744), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2463] = { + [sym_preproc_def] = STATE(1988), + [sym_preproc_function_def] = STATE(1988), + [sym_declaration] = STATE(1988), + [sym_type_definition] = STATE(1988), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1988), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(1988), + [sym__interface_declaration_specifier] = STATE(1988), + [sym_method_declaration] = STATE(1988), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1988), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5746), + [anon_sym_ATend] = ACTIONS(5748), + [sym_optional] = ACTIONS(5750), + [sym_required] = ACTIONS(5750), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2464] = { + [sym_preproc_def] = STATE(2357), + [sym_preproc_function_def] = STATE(2357), + [sym_declaration] = STATE(2357), + [sym_type_definition] = STATE(2357), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2357), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2357), + [sym__interface_declaration_specifier] = STATE(2357), + [sym_method_declaration] = STATE(2357), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2357), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5752), + [anon_sym_ATend] = ACTIONS(5754), + [sym_optional] = ACTIONS(5756), + [sym_required] = ACTIONS(5756), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2465] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5758), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2466] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5760), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2467] = { + [sym_preproc_def] = STATE(2498), + [sym_preproc_function_def] = STATE(2498), + [sym_declaration] = STATE(2498), + [sym_type_definition] = STATE(2498), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2498), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2498), + [sym__interface_declaration_specifier] = STATE(2498), + [sym_method_declaration] = STATE(2498), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2498), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5762), + [anon_sym_ATend] = ACTIONS(5764), + [sym_optional] = ACTIONS(5766), + [sym_required] = ACTIONS(5766), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2468] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5768), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2469] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5770), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2470] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5772), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2471] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5774), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2472] = { + [sym_preproc_def] = STATE(2500), + [sym_preproc_function_def] = STATE(2500), + [sym_declaration] = STATE(2500), + [sym_type_definition] = STATE(2500), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2500), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2500), + [sym__interface_declaration_specifier] = STATE(2500), + [sym_method_declaration] = STATE(2500), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2500), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5776), + [anon_sym_ATend] = ACTIONS(5778), + [sym_optional] = ACTIONS(5780), + [sym_required] = ACTIONS(5780), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2473] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5782), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2474] = { + [sym_preproc_def] = STATE(1956), + [sym_preproc_function_def] = STATE(1956), + [sym_declaration] = STATE(1956), + [sym_type_definition] = STATE(1956), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1956), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(1956), + [sym__interface_declaration_specifier] = STATE(1956), + [sym_method_declaration] = STATE(1956), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1956), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5784), + [anon_sym_ATend] = ACTIONS(5786), + [sym_optional] = ACTIONS(5788), + [sym_required] = ACTIONS(5788), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2475] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5790), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2476] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5792), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2477] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5794), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2478] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5796), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2479] = { + [sym_preproc_def] = STATE(2504), + [sym_preproc_function_def] = STATE(2504), + [sym_declaration] = STATE(2504), + [sym_type_definition] = STATE(2504), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2504), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2504), + [sym__interface_declaration_specifier] = STATE(2504), + [sym_method_declaration] = STATE(2504), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2504), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5798), + [anon_sym_ATend] = ACTIONS(5800), + [sym_optional] = ACTIONS(5802), + [sym_required] = ACTIONS(5802), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2480] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5804), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2481] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5806), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2482] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5808), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2483] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5810), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2484] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5812), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2485] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5814), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2486] = { + [sym_preproc_def] = STATE(2573), + [sym_preproc_function_def] = STATE(2573), + [sym_declaration] = STATE(2573), + [sym_type_definition] = STATE(2573), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2573), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2573), + [sym__interface_declaration_specifier] = STATE(2573), + [sym_method_declaration] = STATE(2573), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2573), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5816), + [anon_sym_ATend] = ACTIONS(5818), + [sym_optional] = ACTIONS(5820), + [sym_required] = ACTIONS(5820), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2487] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5822), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2488] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5824), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2489] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5826), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2490] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5828), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2491] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5830), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2492] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(5832), + [aux_sym_preproc_def_token1] = ACTIONS(5835), + [anon_sym_DASH] = ACTIONS(5838), + [anon_sym_PLUS] = ACTIONS(5841), + [anon_sym_typedef] = ACTIONS(5844), + [anon_sym_extern] = ACTIONS(5847), + [anon_sym___attribute] = ACTIONS(5850), + [anon_sym___attribute__] = ACTIONS(5850), + [anon_sym___declspec] = ACTIONS(5853), + [anon_sym_static] = ACTIONS(5847), + [anon_sym_auto] = ACTIONS(5847), + [anon_sym_register] = ACTIONS(5847), + [anon_sym_inline] = ACTIONS(5847), + [aux_sym_storage_class_specifier_token1] = ACTIONS(5847), + [anon_sym_const] = ACTIONS(5856), + [anon_sym_volatile] = ACTIONS(5856), + [anon_sym_restrict] = ACTIONS(5856), + [anon_sym__Atomic] = ACTIONS(5859), + [anon_sym_in] = ACTIONS(5856), + [anon_sym_out] = ACTIONS(5856), + [anon_sym_inout] = ACTIONS(5856), + [anon_sym_bycopy] = ACTIONS(5856), + [anon_sym_byref] = ACTIONS(5856), + [anon_sym_oneway] = ACTIONS(5856), + [anon_sym__Nullable] = ACTIONS(5856), + [anon_sym__Nonnull] = ACTIONS(5856), + [anon_sym__Nullable_result] = ACTIONS(5856), + [anon_sym__Null_unspecified] = ACTIONS(5856), + [anon_sym___autoreleasing] = ACTIONS(5856), + [anon_sym___nullable] = ACTIONS(5856), + [anon_sym___nonnull] = ACTIONS(5856), + [anon_sym___strong] = ACTIONS(5856), + [anon_sym___weak] = ACTIONS(5856), + [anon_sym___bridge] = ACTIONS(5856), + [anon_sym___bridge_transfer] = ACTIONS(5856), + [anon_sym___bridge_retained] = ACTIONS(5856), + [anon_sym___unsafe_unretained] = ACTIONS(5856), + [anon_sym___block] = ACTIONS(5856), + [anon_sym___kindof] = ACTIONS(5856), + [anon_sym___unused] = ACTIONS(5856), + [anon_sym__Complex] = ACTIONS(5856), + [anon_sym___complex] = ACTIONS(5856), + [anon_sym_IBOutlet] = ACTIONS(5856), + [anon_sym_IBInspectable] = ACTIONS(5856), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(5856), + [anon_sym_signed] = ACTIONS(5862), + [anon_sym_unsigned] = ACTIONS(5862), + [anon_sym_long] = ACTIONS(5862), + [anon_sym_short] = ACTIONS(5862), + [sym_primitive_type] = ACTIONS(5865), + [anon_sym_enum] = ACTIONS(5868), + [anon_sym_struct] = ACTIONS(5871), + [anon_sym_union] = ACTIONS(5874), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5877), + [anon_sym_ATend] = ACTIONS(5880), + [sym_optional] = ACTIONS(5882), + [sym_required] = ACTIONS(5882), + [anon_sym_ATproperty] = ACTIONS(5885), + [sym_method_attribute_specifier] = ACTIONS(5888), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(5891), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(5891), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(5894), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(5894), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(5894), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(5894), + [anon_sym_NS_AVAILABLE] = ACTIONS(5897), + [anon_sym___IOS_AVAILABLE] = ACTIONS(5897), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(5897), + [anon_sym_API_AVAILABLE] = ACTIONS(5897), + [anon_sym_API_UNAVAILABLE] = ACTIONS(5897), + [anon_sym_API_DEPRECATED] = ACTIONS(5897), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(5897), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(5897), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(5897), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(5897), + [anon_sym___deprecated_msg] = ACTIONS(5897), + [anon_sym___deprecated_enum_msg] = ACTIONS(5897), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(5897), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(5897), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(5897), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(5897), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(5900), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(5903), + [anon_sym_NS_ENUM] = ACTIONS(5906), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(5906), + [anon_sym_NS_OPTIONS] = ACTIONS(5906), + [anon_sym_typeof] = ACTIONS(5909), + [anon_sym___typeof] = ACTIONS(5909), + [anon_sym___typeof__] = ACTIONS(5909), + [sym_id] = ACTIONS(5912), + [sym_instancetype] = ACTIONS(5865), + [sym_Class] = ACTIONS(5912), + [sym_SEL] = ACTIONS(5865), + [sym_IMP] = ACTIONS(5865), + [sym_BOOL] = ACTIONS(5865), + [sym_auto] = ACTIONS(5865), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2493] = { + [sym_preproc_def] = STATE(2507), + [sym_preproc_function_def] = STATE(2507), + [sym_declaration] = STATE(2507), + [sym_type_definition] = STATE(2507), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2507), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2507), + [sym__interface_declaration_specifier] = STATE(2507), + [sym_method_declaration] = STATE(2507), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2507), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5915), + [anon_sym_ATend] = ACTIONS(5917), + [sym_optional] = ACTIONS(5919), + [sym_required] = ACTIONS(5919), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2494] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5921), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2495] = { + [sym_preproc_def] = STATE(2509), + [sym_preproc_function_def] = STATE(2509), + [sym_declaration] = STATE(2509), + [sym_type_definition] = STATE(2509), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2509), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2509), + [sym__interface_declaration_specifier] = STATE(2509), + [sym_method_declaration] = STATE(2509), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2509), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5923), + [anon_sym_ATend] = ACTIONS(5736), + [sym_optional] = ACTIONS(5925), + [sym_required] = ACTIONS(5925), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2496] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5927), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2497] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5929), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2498] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5931), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2499] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5933), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2500] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5935), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2501] = { + [sym_preproc_def] = STATE(2511), + [sym_preproc_function_def] = STATE(2511), + [sym_declaration] = STATE(2511), + [sym_type_definition] = STATE(2511), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2511), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2511), + [sym__interface_declaration_specifier] = STATE(2511), + [sym_method_declaration] = STATE(2511), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2511), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5937), + [anon_sym_ATend] = ACTIONS(5939), + [sym_optional] = ACTIONS(5941), + [sym_required] = ACTIONS(5941), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2502] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5943), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2503] = { + [sym_preproc_def] = STATE(1992), + [sym_preproc_function_def] = STATE(1992), + [sym_declaration] = STATE(1992), + [sym_type_definition] = STATE(1992), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1992), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(1992), + [sym__interface_declaration_specifier] = STATE(1992), + [sym_method_declaration] = STATE(1992), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1992), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5945), + [anon_sym_ATend] = ACTIONS(5947), + [sym_optional] = ACTIONS(5949), + [sym_required] = ACTIONS(5949), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2504] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5951), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2505] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5953), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2506] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5955), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2507] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5957), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2508] = { + [sym_preproc_def] = STATE(2465), + [sym_preproc_function_def] = STATE(2465), + [sym_declaration] = STATE(2465), + [sym_type_definition] = STATE(2465), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2465), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2465), + [sym__interface_declaration_specifier] = STATE(2465), + [sym_method_declaration] = STATE(2465), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2465), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5959), + [anon_sym_ATend] = ACTIONS(5961), + [sym_optional] = ACTIONS(5963), + [sym_required] = ACTIONS(5963), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2509] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5965), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2510] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5967), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2511] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5969), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2512] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5971), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2513] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5973), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2514] = { + [sym_preproc_def] = STATE(1986), + [sym_preproc_function_def] = STATE(1986), + [sym_declaration] = STATE(1986), + [sym_type_definition] = STATE(1986), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1986), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(1986), + [sym__interface_declaration_specifier] = STATE(1986), + [sym_method_declaration] = STATE(1986), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1986), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5975), + [anon_sym_ATend] = ACTIONS(5977), + [sym_optional] = ACTIONS(5979), + [sym_required] = ACTIONS(5979), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2515] = { + [sym_preproc_def] = STATE(2526), + [sym_preproc_function_def] = STATE(2526), + [sym_declaration] = STATE(2526), + [sym_type_definition] = STATE(2526), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2526), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2526), + [sym__interface_declaration_specifier] = STATE(2526), + [sym_method_declaration] = STATE(2526), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2526), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5981), + [anon_sym_ATend] = ACTIONS(5983), + [sym_optional] = ACTIONS(5985), + [sym_required] = ACTIONS(5985), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2516] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5987), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2517] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5989), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2518] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5991), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2519] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5993), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2520] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5995), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2521] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(5997), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2522] = { + [sym_preproc_def] = STATE(1989), + [sym_preproc_function_def] = STATE(1989), + [sym_declaration] = STATE(1989), + [sym_type_definition] = STATE(1989), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(1989), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(1989), + [sym__interface_declaration_specifier] = STATE(1989), + [sym_method_declaration] = STATE(1989), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(1989), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(5999), + [anon_sym_ATend] = ACTIONS(6001), + [sym_optional] = ACTIONS(6003), + [sym_required] = ACTIONS(6003), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2523] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6005), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2524] = { + [sym_preproc_def] = STATE(2556), + [sym_preproc_function_def] = STATE(2556), + [sym_declaration] = STATE(2556), + [sym_type_definition] = STATE(2556), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2556), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2556), + [sym__interface_declaration_specifier] = STATE(2556), + [sym_method_declaration] = STATE(2556), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2556), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6007), + [anon_sym_ATend] = ACTIONS(6009), + [sym_optional] = ACTIONS(6011), + [sym_required] = ACTIONS(6011), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2525] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6013), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2526] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6015), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2527] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6017), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2528] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6019), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2529] = { + [sym_preproc_def] = STATE(2174), + [sym_preproc_function_def] = STATE(2174), + [sym_declaration] = STATE(2174), + [sym_type_definition] = STATE(2174), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2174), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2174), + [sym__interface_declaration_specifier] = STATE(2174), + [sym_method_declaration] = STATE(2174), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2174), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6021), + [anon_sym_ATend] = ACTIONS(6023), + [sym_optional] = ACTIONS(6025), + [sym_required] = ACTIONS(6025), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2530] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6027), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2531] = { + [sym_preproc_def] = STATE(2145), + [sym_preproc_function_def] = STATE(2145), + [sym_declaration] = STATE(2145), + [sym_type_definition] = STATE(2145), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2145), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2145), + [sym__interface_declaration_specifier] = STATE(2145), + [sym_method_declaration] = STATE(2145), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2145), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6029), + [anon_sym_ATend] = ACTIONS(6031), + [sym_optional] = ACTIONS(6033), + [sym_required] = ACTIONS(6033), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2532] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6035), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2533] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6037), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2534] = { + [sym_preproc_def] = STATE(2014), + [sym_preproc_function_def] = STATE(2014), + [sym_declaration] = STATE(2014), + [sym_type_definition] = STATE(2014), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2014), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2014), + [sym__interface_declaration_specifier] = STATE(2014), + [sym_method_declaration] = STATE(2014), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2014), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6039), + [anon_sym_ATend] = ACTIONS(6041), + [sym_optional] = ACTIONS(6043), + [sym_required] = ACTIONS(6043), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2535] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6045), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2536] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6047), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2537] = { + [sym_preproc_def] = STATE(2550), + [sym_preproc_function_def] = STATE(2550), + [sym_declaration] = STATE(2550), + [sym_type_definition] = STATE(2550), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2550), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2550), + [sym__interface_declaration_specifier] = STATE(2550), + [sym_method_declaration] = STATE(2550), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2550), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6049), + [anon_sym_ATend] = ACTIONS(6051), + [sym_optional] = ACTIONS(6053), + [sym_required] = ACTIONS(6053), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2538] = { + [sym_preproc_def] = STATE(2553), + [sym_preproc_function_def] = STATE(2553), + [sym_declaration] = STATE(2553), + [sym_type_definition] = STATE(2553), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2553), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2553), + [sym__interface_declaration_specifier] = STATE(2553), + [sym_method_declaration] = STATE(2553), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2553), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6055), + [anon_sym_ATend] = ACTIONS(6057), + [sym_optional] = ACTIONS(6059), + [sym_required] = ACTIONS(6059), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2539] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6061), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2540] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6063), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2541] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6065), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2542] = { + [sym_preproc_def] = STATE(2096), + [sym_preproc_function_def] = STATE(2096), + [sym_declaration] = STATE(2096), + [sym_type_definition] = STATE(2096), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2096), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2096), + [sym__interface_declaration_specifier] = STATE(2096), + [sym_method_declaration] = STATE(2096), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2096), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6067), + [anon_sym_ATend] = ACTIONS(6069), + [sym_optional] = ACTIONS(6071), + [sym_required] = ACTIONS(6071), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2543] = { + [sym_preproc_def] = STATE(2059), + [sym_preproc_function_def] = STATE(2059), + [sym_declaration] = STATE(2059), + [sym_type_definition] = STATE(2059), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2059), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2059), + [sym__interface_declaration_specifier] = STATE(2059), + [sym_method_declaration] = STATE(2059), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2059), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6073), + [anon_sym_ATend] = ACTIONS(6075), + [sym_optional] = ACTIONS(6077), + [sym_required] = ACTIONS(6077), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2544] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6079), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2545] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6081), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2546] = { + [sym_preproc_def] = STATE(2327), + [sym_preproc_function_def] = STATE(2327), + [sym_declaration] = STATE(2327), + [sym_type_definition] = STATE(2327), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2327), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2327), + [sym__interface_declaration_specifier] = STATE(2327), + [sym_method_declaration] = STATE(2327), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2327), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6083), + [anon_sym_ATend] = ACTIONS(6085), + [sym_optional] = ACTIONS(6087), + [sym_required] = ACTIONS(6087), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2547] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6089), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2548] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6091), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2549] = { + [sym_preproc_def] = STATE(2359), + [sym_preproc_function_def] = STATE(2359), + [sym_declaration] = STATE(2359), + [sym_type_definition] = STATE(2359), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2359), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2359), + [sym__interface_declaration_specifier] = STATE(2359), + [sym_method_declaration] = STATE(2359), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2359), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6093), + [anon_sym_ATend] = ACTIONS(6095), + [sym_optional] = ACTIONS(6097), + [sym_required] = ACTIONS(6097), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2550] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6099), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2551] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6101), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2552] = { + [sym_preproc_def] = STATE(2398), + [sym_preproc_function_def] = STATE(2398), + [sym_declaration] = STATE(2398), + [sym_type_definition] = STATE(2398), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2398), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2398), + [sym__interface_declaration_specifier] = STATE(2398), + [sym_method_declaration] = STATE(2398), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2398), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6103), + [anon_sym_ATend] = ACTIONS(6105), + [sym_optional] = ACTIONS(6107), + [sym_required] = ACTIONS(6107), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2553] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6109), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2554] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6111), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2555] = { + [sym_preproc_def] = STATE(2421), + [sym_preproc_function_def] = STATE(2421), + [sym_declaration] = STATE(2421), + [sym_type_definition] = STATE(2421), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2421), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2421), + [sym__interface_declaration_specifier] = STATE(2421), + [sym_method_declaration] = STATE(2421), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2421), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6113), + [anon_sym_ATend] = ACTIONS(6115), + [sym_optional] = ACTIONS(6117), + [sym_required] = ACTIONS(6117), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2556] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6119), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2557] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6121), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2558] = { + [sym_preproc_def] = STATE(2447), + [sym_preproc_function_def] = STATE(2447), + [sym_declaration] = STATE(2447), + [sym_type_definition] = STATE(2447), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2447), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2447), + [sym__interface_declaration_specifier] = STATE(2447), + [sym_method_declaration] = STATE(2447), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2447), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6123), + [anon_sym_ATend] = ACTIONS(6125), + [sym_optional] = ACTIONS(6127), + [sym_required] = ACTIONS(6127), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2559] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6129), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2560] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6131), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2561] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6133), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2562] = { + [sym_preproc_def] = STATE(2333), + [sym_preproc_function_def] = STATE(2333), + [sym_declaration] = STATE(2333), + [sym_type_definition] = STATE(2333), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2333), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2333), + [sym__interface_declaration_specifier] = STATE(2333), + [sym_method_declaration] = STATE(2333), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2333), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6135), + [anon_sym_ATend] = ACTIONS(6137), + [sym_optional] = ACTIONS(6139), + [sym_required] = ACTIONS(6139), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2563] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6141), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2564] = { + [sym_preproc_def] = STATE(2539), + [sym_preproc_function_def] = STATE(2539), + [sym_declaration] = STATE(2539), + [sym_type_definition] = STATE(2539), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2539), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2539), + [sym__interface_declaration_specifier] = STATE(2539), + [sym_method_declaration] = STATE(2539), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2539), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6143), + [anon_sym_ATend] = ACTIONS(6145), + [sym_optional] = ACTIONS(6147), + [sym_required] = ACTIONS(6147), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2565] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6149), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2566] = { + [sym_preproc_def] = STATE(2325), + [sym_preproc_function_def] = STATE(2325), + [sym_declaration] = STATE(2325), + [sym_type_definition] = STATE(2325), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2325), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2325), + [sym__interface_declaration_specifier] = STATE(2325), + [sym_method_declaration] = STATE(2325), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6151), + [anon_sym_ATend] = ACTIONS(6153), + [sym_optional] = ACTIONS(6155), + [sym_required] = ACTIONS(6155), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2567] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6157), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2568] = { + [sym_preproc_def] = STATE(2177), + [sym_preproc_function_def] = STATE(2177), + [sym_declaration] = STATE(2177), + [sym_type_definition] = STATE(2177), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2177), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2177), + [sym__interface_declaration_specifier] = STATE(2177), + [sym_method_declaration] = STATE(2177), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2177), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6159), + [anon_sym_ATend] = ACTIONS(6161), + [sym_optional] = ACTIONS(6163), + [sym_required] = ACTIONS(6163), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2569] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6165), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2570] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6167), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2571] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6169), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2572] = { + [sym_preproc_def] = STATE(2166), + [sym_preproc_function_def] = STATE(2166), + [sym_declaration] = STATE(2166), + [sym_type_definition] = STATE(2166), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2166), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2166), + [sym__interface_declaration_specifier] = STATE(2166), + [sym_method_declaration] = STATE(2166), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2166), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6171), + [anon_sym_ATend] = ACTIONS(6173), + [sym_optional] = ACTIONS(6175), + [sym_required] = ACTIONS(6175), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2573] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6177), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2574] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6179), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2575] = { + [sym_preproc_def] = STATE(2282), + [sym_preproc_function_def] = STATE(2282), + [sym_declaration] = STATE(2282), + [sym_type_definition] = STATE(2282), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2282), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2282), + [sym__interface_declaration_specifier] = STATE(2282), + [sym_method_declaration] = STATE(2282), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2282), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6181), + [anon_sym_ATend] = ACTIONS(6183), + [sym_optional] = ACTIONS(6185), + [sym_required] = ACTIONS(6185), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2576] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6187), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2577] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6189), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2578] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6191), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2579] = { + [sym_preproc_def] = STATE(2469), + [sym_preproc_function_def] = STATE(2469), + [sym_declaration] = STATE(2469), + [sym_type_definition] = STATE(2469), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2469), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2469), + [sym__interface_declaration_specifier] = STATE(2469), + [sym_method_declaration] = STATE(2469), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2469), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6193), + [anon_sym_ATend] = ACTIONS(6195), + [sym_optional] = ACTIONS(6197), + [sym_required] = ACTIONS(6197), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2580] = { + [sym_preproc_def] = STATE(2176), + [sym_preproc_function_def] = STATE(2176), + [sym_declaration] = STATE(2176), + [sym_type_definition] = STATE(2176), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2176), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2176), + [sym__interface_declaration_specifier] = STATE(2176), + [sym_method_declaration] = STATE(2176), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2176), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2912), + [anon_sym_ATend] = ACTIONS(2914), + [sym_optional] = ACTIONS(2916), + [sym_required] = ACTIONS(2916), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2581] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6199), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2582] = { + [sym_preproc_def] = STATE(2261), + [sym_preproc_function_def] = STATE(2261), + [sym_declaration] = STATE(2261), + [sym_type_definition] = STATE(2261), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2261), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2261), + [sym__interface_declaration_specifier] = STATE(2261), + [sym_method_declaration] = STATE(2261), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2261), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6201), + [anon_sym_ATend] = ACTIONS(6203), + [sym_optional] = ACTIONS(6205), + [sym_required] = ACTIONS(6205), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2583] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6207), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2584] = { + [sym_preproc_def] = STATE(2451), + [sym_preproc_function_def] = STATE(2451), + [sym_declaration] = STATE(2451), + [sym_type_definition] = STATE(2451), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2451), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2451), + [sym__interface_declaration_specifier] = STATE(2451), + [sym_method_declaration] = STATE(2451), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2451), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6209), + [anon_sym_ATend] = ACTIONS(6211), + [sym_optional] = ACTIONS(6213), + [sym_required] = ACTIONS(6213), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2585] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(2914), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2586] = { + [sym_preproc_def] = STATE(2206), + [sym_preproc_function_def] = STATE(2206), + [sym_declaration] = STATE(2206), + [sym_type_definition] = STATE(2206), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2206), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2206), + [sym__interface_declaration_specifier] = STATE(2206), + [sym_method_declaration] = STATE(2206), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2206), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6215), + [anon_sym_ATend] = ACTIONS(6217), + [sym_optional] = ACTIONS(6219), + [sym_required] = ACTIONS(6219), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2587] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6221), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2588] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6223), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2589] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6225), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2590] = { + [sym_preproc_def] = STATE(2152), + [sym_preproc_function_def] = STATE(2152), + [sym_declaration] = STATE(2152), + [sym_type_definition] = STATE(2152), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2152), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2152), + [sym__interface_declaration_specifier] = STATE(2152), + [sym_method_declaration] = STATE(2152), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2152), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3804), + [anon_sym_ATend] = ACTIONS(3806), + [sym_optional] = ACTIONS(3808), + [sym_required] = ACTIONS(3808), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2591] = { + [sym_preproc_def] = STATE(2230), + [sym_preproc_function_def] = STATE(2230), + [sym_declaration] = STATE(2230), + [sym_type_definition] = STATE(2230), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2230), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2230), + [sym__interface_declaration_specifier] = STATE(2230), + [sym_method_declaration] = STATE(2230), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2230), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(3876), + [anon_sym_ATend] = ACTIONS(3878), + [sym_optional] = ACTIONS(3880), + [sym_required] = ACTIONS(3880), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2592] = { + [sym_preproc_def] = STATE(2100), + [sym_preproc_function_def] = STATE(2100), + [sym_declaration] = STATE(2100), + [sym_type_definition] = STATE(2100), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2100), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2100), + [sym__interface_declaration_specifier] = STATE(2100), + [sym_method_declaration] = STATE(2100), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2100), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6227), + [anon_sym_ATend] = ACTIONS(6229), + [sym_optional] = ACTIONS(6231), + [sym_required] = ACTIONS(6231), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2593] = { + [sym_preproc_def] = STATE(2221), + [sym_preproc_function_def] = STATE(2221), + [sym_declaration] = STATE(2221), + [sym_type_definition] = STATE(2221), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2221), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2221), + [sym__interface_declaration_specifier] = STATE(2221), + [sym_method_declaration] = STATE(2221), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2221), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2530), + [anon_sym_ATend] = ACTIONS(2532), + [sym_optional] = ACTIONS(2534), + [sym_required] = ACTIONS(2534), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2594] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(2532), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2595] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6233), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2596] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6235), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2597] = { + [sym_preproc_def] = STATE(2452), + [sym_preproc_function_def] = STATE(2452), + [sym_declaration] = STATE(2452), + [sym_type_definition] = STATE(2452), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2452), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2452), + [sym__interface_declaration_specifier] = STATE(2452), + [sym_method_declaration] = STATE(2452), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2452), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4014), + [anon_sym_ATend] = ACTIONS(4016), + [sym_optional] = ACTIONS(4018), + [sym_required] = ACTIONS(4018), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2598] = { + [sym_preproc_def] = STATE(2213), + [sym_preproc_function_def] = STATE(2213), + [sym_declaration] = STATE(2213), + [sym_type_definition] = STATE(2213), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2213), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2213), + [sym__interface_declaration_specifier] = STATE(2213), + [sym_method_declaration] = STATE(2213), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2213), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6237), + [anon_sym_ATend] = ACTIONS(6239), + [sym_optional] = ACTIONS(6241), + [sym_required] = ACTIONS(6241), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2599] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6243), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2600] = { + [sym_preproc_def] = STATE(2499), + [sym_preproc_function_def] = STATE(2499), + [sym_declaration] = STATE(2499), + [sym_type_definition] = STATE(2499), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2499), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2499), + [sym__interface_declaration_specifier] = STATE(2499), + [sym_method_declaration] = STATE(2499), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2499), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6245), + [anon_sym_ATend] = ACTIONS(6247), + [sym_optional] = ACTIONS(6249), + [sym_required] = ACTIONS(6249), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2601] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6251), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2602] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6253), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2603] = { + [sym_preproc_def] = STATE(2208), + [sym_preproc_function_def] = STATE(2208), + [sym_declaration] = STATE(2208), + [sym_type_definition] = STATE(2208), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2208), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2208), + [sym__interface_declaration_specifier] = STATE(2208), + [sym_method_declaration] = STATE(2208), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2208), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6255), + [anon_sym_ATend] = ACTIONS(6257), + [sym_optional] = ACTIONS(6259), + [sym_required] = ACTIONS(6259), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2604] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6261), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2605] = { + [sym_preproc_def] = STATE(2373), + [sym_preproc_function_def] = STATE(2373), + [sym_declaration] = STATE(2373), + [sym_type_definition] = STATE(2373), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2373), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2373), + [sym__interface_declaration_specifier] = STATE(2373), + [sym_method_declaration] = STATE(2373), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2373), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6263), + [anon_sym_ATend] = ACTIONS(6265), + [sym_optional] = ACTIONS(6267), + [sym_required] = ACTIONS(6267), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2606] = { + [sym_preproc_def] = STATE(2123), + [sym_preproc_function_def] = STATE(2123), + [sym_declaration] = STATE(2123), + [sym_type_definition] = STATE(2123), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2123), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2123), + [sym__interface_declaration_specifier] = STATE(2123), + [sym_method_declaration] = STATE(2123), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2123), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6269), + [anon_sym_ATend] = ACTIONS(6271), + [sym_optional] = ACTIONS(6273), + [sym_required] = ACTIONS(6273), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2607] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6275), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2608] = { + [sym_preproc_def] = STATE(2197), + [sym_preproc_function_def] = STATE(2197), + [sym_declaration] = STATE(2197), + [sym_type_definition] = STATE(2197), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2197), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2197), + [sym__interface_declaration_specifier] = STATE(2197), + [sym_method_declaration] = STATE(2197), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2197), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6277), + [anon_sym_ATend] = ACTIONS(6279), + [sym_optional] = ACTIONS(6281), + [sym_required] = ACTIONS(6281), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2609] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6283), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2610] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6285), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2611] = { + [sym_preproc_def] = STATE(2453), + [sym_preproc_function_def] = STATE(2453), + [sym_declaration] = STATE(2453), + [sym_type_definition] = STATE(2453), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2453), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2453), + [sym__interface_declaration_specifier] = STATE(2453), + [sym_method_declaration] = STATE(2453), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2453), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6287), + [anon_sym_ATend] = ACTIONS(6289), + [sym_optional] = ACTIONS(6291), + [sym_required] = ACTIONS(6291), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2612] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6293), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2613] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4076), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2614] = { + [sym_preproc_def] = STATE(2139), + [sym_preproc_function_def] = STATE(2139), + [sym_declaration] = STATE(2139), + [sym_type_definition] = STATE(2139), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2139), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2139), + [sym__interface_declaration_specifier] = STATE(2139), + [sym_method_declaration] = STATE(2139), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2139), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6295), + [anon_sym_ATend] = ACTIONS(6297), + [sym_optional] = ACTIONS(6299), + [sym_required] = ACTIONS(6299), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2615] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6301), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2616] = { + [sym_preproc_def] = STATE(2182), + [sym_preproc_function_def] = STATE(2182), + [sym_declaration] = STATE(2182), + [sym_type_definition] = STATE(2182), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2182), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2182), + [sym__interface_declaration_specifier] = STATE(2182), + [sym_method_declaration] = STATE(2182), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2182), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6303), + [anon_sym_ATend] = ACTIONS(6305), + [sym_optional] = ACTIONS(6307), + [sym_required] = ACTIONS(6307), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2617] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6309), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2618] = { + [sym_preproc_def] = STATE(2147), + [sym_preproc_function_def] = STATE(2147), + [sym_declaration] = STATE(2147), + [sym_type_definition] = STATE(2147), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2147), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2147), + [sym__interface_declaration_specifier] = STATE(2147), + [sym_method_declaration] = STATE(2147), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2147), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6311), + [anon_sym_ATend] = ACTIONS(6313), + [sym_optional] = ACTIONS(6315), + [sym_required] = ACTIONS(6315), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2619] = { + [sym_preproc_def] = STATE(2181), + [sym_preproc_function_def] = STATE(2181), + [sym_declaration] = STATE(2181), + [sym_type_definition] = STATE(2181), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2181), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2181), + [sym__interface_declaration_specifier] = STATE(2181), + [sym_method_declaration] = STATE(2181), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2181), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6317), + [anon_sym_ATend] = ACTIONS(6319), + [sym_optional] = ACTIONS(6321), + [sym_required] = ACTIONS(6321), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2620] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6323), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2621] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6325), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2622] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6327), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2623] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6329), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2624] = { + [sym_preproc_def] = STATE(2148), + [sym_preproc_function_def] = STATE(2148), + [sym_declaration] = STATE(2148), + [sym_type_definition] = STATE(2148), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2148), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2148), + [sym__interface_declaration_specifier] = STATE(2148), + [sym_method_declaration] = STATE(2148), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2148), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6331), + [anon_sym_ATend] = ACTIONS(6333), + [sym_optional] = ACTIONS(6335), + [sym_required] = ACTIONS(6335), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2625] = { + [sym_preproc_def] = STATE(2097), + [sym_preproc_function_def] = STATE(2097), + [sym_declaration] = STATE(2097), + [sym_type_definition] = STATE(2097), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2097), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2097), + [sym__interface_declaration_specifier] = STATE(2097), + [sym_method_declaration] = STATE(2097), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2097), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(2458), + [anon_sym_ATend] = ACTIONS(2460), + [sym_optional] = ACTIONS(2462), + [sym_required] = ACTIONS(2462), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2626] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6337), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2627] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(2460), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2628] = { + [sym_preproc_def] = STATE(2536), + [sym_preproc_function_def] = STATE(2536), + [sym_declaration] = STATE(2536), + [sym_type_definition] = STATE(2536), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2536), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2536), + [sym__interface_declaration_specifier] = STATE(2536), + [sym_method_declaration] = STATE(2536), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2536), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6339), + [anon_sym_ATend] = ACTIONS(6341), + [sym_optional] = ACTIONS(6343), + [sym_required] = ACTIONS(6343), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2629] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6345), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2630] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6347), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2631] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6349), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2632] = { + [sym_preproc_def] = STATE(2535), + [sym_preproc_function_def] = STATE(2535), + [sym_declaration] = STATE(2535), + [sym_type_definition] = STATE(2535), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2535), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2535), + [sym__interface_declaration_specifier] = STATE(2535), + [sym_method_declaration] = STATE(2535), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2535), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6351), + [anon_sym_ATend] = ACTIONS(6353), + [sym_optional] = ACTIONS(6355), + [sym_required] = ACTIONS(6355), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2633] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6357), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2634] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6359), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2635] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6361), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2636] = { + [sym_preproc_def] = STATE(2007), + [sym_preproc_function_def] = STATE(2007), + [sym_declaration] = STATE(2007), + [sym_type_definition] = STATE(2007), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2007), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2007), + [sym__interface_declaration_specifier] = STATE(2007), + [sym_method_declaration] = STATE(2007), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2007), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6363), + [anon_sym_ATend] = ACTIONS(6365), + [sym_optional] = ACTIONS(6367), + [sym_required] = ACTIONS(6367), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2637] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6333), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2638] = { + [sym_preproc_def] = STATE(2454), + [sym_preproc_function_def] = STATE(2454), + [sym_declaration] = STATE(2454), + [sym_type_definition] = STATE(2454), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2454), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2454), + [sym__interface_declaration_specifier] = STATE(2454), + [sym_method_declaration] = STATE(2454), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2454), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6369), + [anon_sym_ATend] = ACTIONS(6371), + [sym_optional] = ACTIONS(6373), + [sym_required] = ACTIONS(6373), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2639] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6375), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2640] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6377), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2641] = { + [sym_preproc_def] = STATE(2532), + [sym_preproc_function_def] = STATE(2532), + [sym_declaration] = STATE(2532), + [sym_type_definition] = STATE(2532), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2532), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2532), + [sym__interface_declaration_specifier] = STATE(2532), + [sym_method_declaration] = STATE(2532), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2532), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6379), + [anon_sym_ATend] = ACTIONS(6381), + [sym_optional] = ACTIONS(6383), + [sym_required] = ACTIONS(6383), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2642] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6385), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2643] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6387), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2644] = { + [sym_preproc_def] = STATE(2528), + [sym_preproc_function_def] = STATE(2528), + [sym_declaration] = STATE(2528), + [sym_type_definition] = STATE(2528), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2528), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2528), + [sym__interface_declaration_specifier] = STATE(2528), + [sym_method_declaration] = STATE(2528), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2528), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6389), + [anon_sym_ATend] = ACTIONS(6391), + [sym_optional] = ACTIONS(6393), + [sym_required] = ACTIONS(6393), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2645] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(3806), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2646] = { + [sym_preproc_def] = STATE(2477), + [sym_preproc_function_def] = STATE(2477), + [sym_declaration] = STATE(2477), + [sym_type_definition] = STATE(2477), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2477), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2477), + [sym__interface_declaration_specifier] = STATE(2477), + [sym_method_declaration] = STATE(2477), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2477), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6395), + [anon_sym_ATend] = ACTIONS(6397), + [sym_optional] = ACTIONS(6399), + [sym_required] = ACTIONS(6399), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2647] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6401), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2648] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6403), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2649] = { + [sym_preproc_def] = STATE(2480), + [sym_preproc_function_def] = STATE(2480), + [sym_declaration] = STATE(2480), + [sym_type_definition] = STATE(2480), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2480), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2480), + [sym__interface_declaration_specifier] = STATE(2480), + [sym_method_declaration] = STATE(2480), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2480), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6405), + [anon_sym_ATend] = ACTIONS(6407), + [sym_optional] = ACTIONS(6409), + [sym_required] = ACTIONS(6409), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2650] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6411), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2651] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(4016), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2652] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6413), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2653] = { + [sym_preproc_def] = STATE(2481), + [sym_preproc_function_def] = STATE(2481), + [sym_declaration] = STATE(2481), + [sym_type_definition] = STATE(2481), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2481), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2481), + [sym__interface_declaration_specifier] = STATE(2481), + [sym_method_declaration] = STATE(2481), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2481), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6415), + [anon_sym_ATend] = ACTIONS(6413), + [sym_optional] = ACTIONS(6417), + [sym_required] = ACTIONS(6417), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2654] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6419), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2655] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6421), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2656] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6423), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2657] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6425), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2658] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6427), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2659] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6429), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2660] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6431), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2661] = { + [sym_preproc_def] = STATE(2520), + [sym_preproc_function_def] = STATE(2520), + [sym_declaration] = STATE(2520), + [sym_type_definition] = STATE(2520), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2520), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2520), + [sym__interface_declaration_specifier] = STATE(2520), + [sym_method_declaration] = STATE(2520), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2520), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6433), + [anon_sym_ATend] = ACTIONS(6435), + [sym_optional] = ACTIONS(6437), + [sym_required] = ACTIONS(6437), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2662] = { + [sym_preproc_def] = STATE(2141), + [sym_preproc_function_def] = STATE(2141), + [sym_declaration] = STATE(2141), + [sym_type_definition] = STATE(2141), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2141), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2141), + [sym__interface_declaration_specifier] = STATE(2141), + [sym_method_declaration] = STATE(2141), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2141), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6439), + [anon_sym_ATend] = ACTIONS(6377), + [sym_optional] = ACTIONS(6441), + [sym_required] = ACTIONS(6441), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2663] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(3878), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2664] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6443), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2665] = { + [sym_preproc_def] = STATE(2512), + [sym_preproc_function_def] = STATE(2512), + [sym_declaration] = STATE(2512), + [sym_type_definition] = STATE(2512), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2512), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2512), + [sym__interface_declaration_specifier] = STATE(2512), + [sym_method_declaration] = STATE(2512), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2512), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6445), + [anon_sym_ATend] = ACTIONS(6447), + [sym_optional] = ACTIONS(6449), + [sym_required] = ACTIONS(6449), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2666] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6451), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2667] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6453), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2668] = { + [sym_preproc_def] = STATE(2516), + [sym_preproc_function_def] = STATE(2516), + [sym_declaration] = STATE(2516), + [sym_type_definition] = STATE(2516), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2516), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2516), + [sym__interface_declaration_specifier] = STATE(2516), + [sym_method_declaration] = STATE(2516), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2516), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6455), + [anon_sym_ATend] = ACTIONS(6457), + [sym_optional] = ACTIONS(6459), + [sym_required] = ACTIONS(6459), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2669] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6461), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2670] = { + [sym_preproc_def] = STATE(2492), + [sym_preproc_function_def] = STATE(2492), + [sym_declaration] = STATE(2492), + [sym_type_definition] = STATE(2492), + [sym__declaration_specifiers] = STATE(4720), + [sym_attribute_specifier] = STATE(3300), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3354), + [sym_sized_type_specifier] = STATE(3354), + [sym_enum_specifier] = STATE(3354), + [sym_struct_specifier] = STATE(3354), + [sym_union_specifier] = STATE(3354), + [sym__empty_declaration] = STATE(2492), + [sym_macro_type_specifier] = STATE(3354), + [aux_sym__interface_declaration] = STATE(2492), + [sym__interface_declaration_specifier] = STATE(2492), + [sym_method_declaration] = STATE(2492), + [sym__class_member_scope] = STATE(4743), + [sym_class_scope] = STATE(4743), + [sym_instance_scope] = STATE(4743), + [sym_property_declaration] = STATE(2492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2810), + [sym_ns_enum_specifier] = STATE(3354), + [sym_typeof_specifier] = STATE(3354), + [sym_atomic_specifier] = STATE(3354), + [sym_generic_type_specifier] = STATE(3354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2192), + [anon_sym_typedef] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(4176), + [anon_sym_ATend] = ACTIONS(6463), + [sym_optional] = ACTIONS(4180), + [sym_required] = ACTIONS(4180), + [anon_sym_ATproperty] = ACTIONS(2276), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(2266), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(2266), + [sym_IMP] = ACTIONS(2266), + [sym_BOOL] = ACTIONS(2266), + [sym_auto] = ACTIONS(2266), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2671] = { + [sym__declaration_specifiers] = STATE(4647), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_based_modifier] = STATE(5795), + [sym__declarator] = STATE(4878), + [sym__abstract_declarator] = STATE(4869), + [sym_parenthesized_declarator] = STATE(3790), + [sym_abstract_parenthesized_declarator] = STATE(4310), + [sym_pointer_declarator] = STATE(3790), + [sym_abstract_pointer_declarator] = STATE(4310), + [sym_function_declarator] = STATE(3790), + [sym_abstract_function_declarator] = STATE(4310), + [sym_array_declarator] = STATE(3790), + [sym_abstract_array_declarator] = STATE(4310), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(3309), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_parameter_list] = STATE(4311), + [sym_parameter_declaration] = STATE(5012), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [sym_block_abstract_declarator] = STATE(4310), + [sym_block_declarator] = STATE(3790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(6465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6467), + [anon_sym_RPAREN] = ACTIONS(6469), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_STAR] = ACTIONS(6473), + [anon_sym_CARET] = ACTIONS(6475), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_NOESCAPE] = ACTIONS(6481), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2672] = { + [sym__declaration_specifiers] = STATE(4647), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_based_modifier] = STATE(5795), + [sym__declarator] = STATE(4866), + [sym__abstract_declarator] = STATE(4869), + [sym_parenthesized_declarator] = STATE(3790), + [sym_abstract_parenthesized_declarator] = STATE(4310), + [sym_pointer_declarator] = STATE(3790), + [sym_abstract_pointer_declarator] = STATE(4310), + [sym_function_declarator] = STATE(3790), + [sym_abstract_function_declarator] = STATE(4310), + [sym_array_declarator] = STATE(3790), + [sym_abstract_array_declarator] = STATE(4310), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(3309), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_parameter_list] = STATE(4311), + [sym_parameter_declaration] = STATE(5012), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [sym_block_abstract_declarator] = STATE(4310), + [sym_block_declarator] = STATE(3790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(6465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6467), + [anon_sym_RPAREN] = ACTIONS(6469), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_STAR] = ACTIONS(6473), + [anon_sym_CARET] = ACTIONS(6483), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_NOESCAPE] = ACTIONS(6481), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2673] = { + [sym__declaration_specifiers] = STATE(4647), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_based_modifier] = STATE(5795), + [sym__declarator] = STATE(4866), + [sym__abstract_declarator] = STATE(4869), + [sym_parenthesized_declarator] = STATE(3790), + [sym_abstract_parenthesized_declarator] = STATE(4310), + [sym_pointer_declarator] = STATE(3790), + [sym_abstract_pointer_declarator] = STATE(4310), + [sym_function_declarator] = STATE(3790), + [sym_abstract_function_declarator] = STATE(4310), + [sym_array_declarator] = STATE(3790), + [sym_abstract_array_declarator] = STATE(4310), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(3311), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_parameter_list] = STATE(4311), + [sym_parameter_declaration] = STATE(5026), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [sym_block_abstract_declarator] = STATE(4310), + [sym_block_declarator] = STATE(3790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(6465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6485), + [anon_sym_RPAREN] = ACTIONS(6487), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_STAR] = ACTIONS(6473), + [anon_sym_CARET] = ACTIONS(6489), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_NOESCAPE] = ACTIONS(1157), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2674] = { + [sym_preproc_def] = STATE(2681), + [sym_preproc_function_def] = STATE(2681), + [sym_preproc_call] = STATE(2681), + [sym_preproc_if_in_field_declaration_list] = STATE(2681), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2681), + [sym_preproc_else_in_field_declaration_list] = STATE(5492), + [sym_preproc_elif_in_field_declaration_list] = STATE(5492), + [sym__declaration_specifiers] = STATE(4712), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2681), + [sym_field_declaration] = STATE(2681), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2681), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6491), + [aux_sym_preproc_if_token1] = ACTIONS(6493), + [aux_sym_preproc_if_token2] = ACTIONS(6495), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6499), + [aux_sym_preproc_elif_token1] = ACTIONS(6501), + [sym_preproc_directive] = ACTIONS(6503), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2675] = { + [sym_preproc_def] = STATE(2688), + [sym_preproc_function_def] = STATE(2688), + [sym_preproc_call] = STATE(2688), + [sym_preproc_if_in_field_declaration_list] = STATE(2688), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2688), + [sym_preproc_else_in_field_declaration_list] = STATE(5454), + [sym_preproc_elif_in_field_declaration_list] = STATE(5454), + [sym__declaration_specifiers] = STATE(4712), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2688), + [sym_field_declaration] = STATE(2688), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2688), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6491), + [aux_sym_preproc_if_token1] = ACTIONS(6493), + [aux_sym_preproc_if_token2] = ACTIONS(6509), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6499), + [aux_sym_preproc_elif_token1] = ACTIONS(6501), + [sym_preproc_directive] = ACTIONS(6503), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2676] = { + [sym_preproc_def] = STATE(2688), + [sym_preproc_function_def] = STATE(2688), + [sym_preproc_call] = STATE(2688), + [sym_preproc_if_in_field_declaration_list] = STATE(2688), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2688), + [sym_preproc_else_in_field_declaration_list] = STATE(5405), + [sym_preproc_elif_in_field_declaration_list] = STATE(5405), + [sym__declaration_specifiers] = STATE(4712), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2688), + [sym_field_declaration] = STATE(2688), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2688), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6491), + [aux_sym_preproc_if_token1] = ACTIONS(6493), + [aux_sym_preproc_if_token2] = ACTIONS(6511), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6499), + [aux_sym_preproc_elif_token1] = ACTIONS(6501), + [sym_preproc_directive] = ACTIONS(6503), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2677] = { + [sym_preproc_def] = STATE(2676), + [sym_preproc_function_def] = STATE(2676), + [sym_preproc_call] = STATE(2676), + [sym_preproc_if_in_field_declaration_list] = STATE(2676), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2676), + [sym_preproc_else_in_field_declaration_list] = STATE(5457), + [sym_preproc_elif_in_field_declaration_list] = STATE(5457), + [sym__declaration_specifiers] = STATE(4712), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2676), + [sym_field_declaration] = STATE(2676), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2676), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6491), + [aux_sym_preproc_if_token1] = ACTIONS(6493), + [aux_sym_preproc_if_token2] = ACTIONS(6513), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6499), + [aux_sym_preproc_elif_token1] = ACTIONS(6501), + [sym_preproc_directive] = ACTIONS(6503), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2678] = { + [sym_preproc_def] = STATE(2686), + [sym_preproc_function_def] = STATE(2686), + [sym_preproc_call] = STATE(2686), + [sym_preproc_if_in_field_declaration_list] = STATE(2686), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2686), + [sym_preproc_else_in_field_declaration_list] = STATE(5421), + [sym_preproc_elif_in_field_declaration_list] = STATE(5421), + [sym__declaration_specifiers] = STATE(4712), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2686), + [sym_field_declaration] = STATE(2686), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2686), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6491), + [aux_sym_preproc_if_token1] = ACTIONS(6493), + [aux_sym_preproc_if_token2] = ACTIONS(6515), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6499), + [aux_sym_preproc_elif_token1] = ACTIONS(6501), + [sym_preproc_directive] = ACTIONS(6503), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2679] = { + [sym_preproc_def] = STATE(2688), + [sym_preproc_function_def] = STATE(2688), + [sym_preproc_call] = STATE(2688), + [sym_preproc_if_in_field_declaration_list] = STATE(2688), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2688), + [sym_preproc_else_in_field_declaration_list] = STATE(5834), + [sym_preproc_elif_in_field_declaration_list] = STATE(5834), + [sym__declaration_specifiers] = STATE(4712), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2688), + [sym_field_declaration] = STATE(2688), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2688), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6491), + [aux_sym_preproc_if_token1] = ACTIONS(6493), + [aux_sym_preproc_if_token2] = ACTIONS(6517), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6499), + [aux_sym_preproc_elif_token1] = ACTIONS(6501), + [sym_preproc_directive] = ACTIONS(6503), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2680] = { + [sym_preproc_def] = STATE(2675), + [sym_preproc_function_def] = STATE(2675), + [sym_preproc_call] = STATE(2675), + [sym_preproc_if_in_field_declaration_list] = STATE(2675), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2675), + [sym_preproc_else_in_field_declaration_list] = STATE(5535), + [sym_preproc_elif_in_field_declaration_list] = STATE(5535), + [sym__declaration_specifiers] = STATE(4712), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2675), + [sym_field_declaration] = STATE(2675), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2675), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6491), + [aux_sym_preproc_if_token1] = ACTIONS(6493), + [aux_sym_preproc_if_token2] = ACTIONS(6519), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6499), + [aux_sym_preproc_elif_token1] = ACTIONS(6501), + [sym_preproc_directive] = ACTIONS(6503), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2681] = { + [sym_preproc_def] = STATE(2688), + [sym_preproc_function_def] = STATE(2688), + [sym_preproc_call] = STATE(2688), + [sym_preproc_if_in_field_declaration_list] = STATE(2688), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2688), + [sym_preproc_else_in_field_declaration_list] = STATE(5509), + [sym_preproc_elif_in_field_declaration_list] = STATE(5509), + [sym__declaration_specifiers] = STATE(4712), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2688), + [sym_field_declaration] = STATE(2688), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2688), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6491), + [aux_sym_preproc_if_token1] = ACTIONS(6493), + [aux_sym_preproc_if_token2] = ACTIONS(6521), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6499), + [aux_sym_preproc_elif_token1] = ACTIONS(6501), + [sym_preproc_directive] = ACTIONS(6503), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2682] = { + [sym_preproc_def] = STATE(2688), + [sym_preproc_function_def] = STATE(2688), + [sym_preproc_call] = STATE(2688), + [sym_preproc_if_in_field_declaration_list] = STATE(2688), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2688), + [sym_preproc_else_in_field_declaration_list] = STATE(5747), + [sym_preproc_elif_in_field_declaration_list] = STATE(5747), + [sym__declaration_specifiers] = STATE(4712), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2688), + [sym_field_declaration] = STATE(2688), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2688), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6491), + [aux_sym_preproc_if_token1] = ACTIONS(6493), + [aux_sym_preproc_if_token2] = ACTIONS(6523), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6499), + [aux_sym_preproc_elif_token1] = ACTIONS(6501), + [sym_preproc_directive] = ACTIONS(6503), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2683] = { + [sym_preproc_def] = STATE(2679), + [sym_preproc_function_def] = STATE(2679), + [sym_preproc_call] = STATE(2679), + [sym_preproc_if_in_field_declaration_list] = STATE(2679), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2679), + [sym_preproc_else_in_field_declaration_list] = STATE(5694), + [sym_preproc_elif_in_field_declaration_list] = STATE(5694), + [sym__declaration_specifiers] = STATE(4712), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2679), + [sym_field_declaration] = STATE(2679), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2679), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6491), + [aux_sym_preproc_if_token1] = ACTIONS(6493), + [aux_sym_preproc_if_token2] = ACTIONS(6525), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6499), + [aux_sym_preproc_elif_token1] = ACTIONS(6501), + [sym_preproc_directive] = ACTIONS(6503), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2684] = { + [sym_preproc_def] = STATE(2682), + [sym_preproc_function_def] = STATE(2682), + [sym_preproc_call] = STATE(2682), + [sym_preproc_if_in_field_declaration_list] = STATE(2682), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2682), + [sym_preproc_else_in_field_declaration_list] = STATE(5833), + [sym_preproc_elif_in_field_declaration_list] = STATE(5833), + [sym__declaration_specifiers] = STATE(4712), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2682), + [sym_field_declaration] = STATE(2682), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2682), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6491), + [aux_sym_preproc_if_token1] = ACTIONS(6493), + [aux_sym_preproc_if_token2] = ACTIONS(6527), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6499), + [aux_sym_preproc_elif_token1] = ACTIONS(6501), + [sym_preproc_directive] = ACTIONS(6503), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2685] = { + [sym_preproc_def] = STATE(2688), + [sym_preproc_function_def] = STATE(2688), + [sym_preproc_call] = STATE(2688), + [sym_preproc_if_in_field_declaration_list] = STATE(2688), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2688), + [sym_preproc_else_in_field_declaration_list] = STATE(5425), + [sym_preproc_elif_in_field_declaration_list] = STATE(5425), + [sym__declaration_specifiers] = STATE(4712), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2688), + [sym_field_declaration] = STATE(2688), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2688), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6491), + [aux_sym_preproc_if_token1] = ACTIONS(6493), + [aux_sym_preproc_if_token2] = ACTIONS(6529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6499), + [aux_sym_preproc_elif_token1] = ACTIONS(6501), + [sym_preproc_directive] = ACTIONS(6503), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2686] = { + [sym_preproc_def] = STATE(2688), + [sym_preproc_function_def] = STATE(2688), + [sym_preproc_call] = STATE(2688), + [sym_preproc_if_in_field_declaration_list] = STATE(2688), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2688), + [sym_preproc_else_in_field_declaration_list] = STATE(5464), + [sym_preproc_elif_in_field_declaration_list] = STATE(5464), + [sym__declaration_specifiers] = STATE(4712), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2688), + [sym_field_declaration] = STATE(2688), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2688), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6491), + [aux_sym_preproc_if_token1] = ACTIONS(6493), + [aux_sym_preproc_if_token2] = ACTIONS(6531), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6499), + [aux_sym_preproc_elif_token1] = ACTIONS(6501), + [sym_preproc_directive] = ACTIONS(6503), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2687] = { + [sym_preproc_def] = STATE(2685), + [sym_preproc_function_def] = STATE(2685), + [sym_preproc_call] = STATE(2685), + [sym_preproc_if_in_field_declaration_list] = STATE(2685), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2685), + [sym_preproc_else_in_field_declaration_list] = STATE(5344), + [sym_preproc_elif_in_field_declaration_list] = STATE(5344), + [sym__declaration_specifiers] = STATE(4712), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2685), + [sym_field_declaration] = STATE(2685), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2685), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6491), + [aux_sym_preproc_if_token1] = ACTIONS(6493), + [aux_sym_preproc_if_token2] = ACTIONS(6533), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6497), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6497), + [aux_sym_preproc_else_token1] = ACTIONS(6499), + [aux_sym_preproc_elif_token1] = ACTIONS(6501), + [sym_preproc_directive] = ACTIONS(6503), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2688] = { + [sym_preproc_def] = STATE(2688), + [sym_preproc_function_def] = STATE(2688), + [sym_preproc_call] = STATE(2688), + [sym_preproc_if_in_field_declaration_list] = STATE(2688), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2688), + [sym__declaration_specifiers] = STATE(4712), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2688), + [sym_field_declaration] = STATE(2688), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2688), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(6535), + [aux_sym_preproc_def_token1] = ACTIONS(6538), + [aux_sym_preproc_if_token1] = ACTIONS(6541), + [aux_sym_preproc_if_token2] = ACTIONS(6544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6546), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6546), + [aux_sym_preproc_else_token1] = ACTIONS(6544), + [aux_sym_preproc_elif_token1] = ACTIONS(6544), + [sym_preproc_directive] = ACTIONS(6549), + [anon_sym_extern] = ACTIONS(6552), + [anon_sym___attribute] = ACTIONS(6555), + [anon_sym___attribute__] = ACTIONS(6555), + [anon_sym___declspec] = ACTIONS(6558), + [anon_sym_static] = ACTIONS(6552), + [anon_sym_auto] = ACTIONS(6552), + [anon_sym_register] = ACTIONS(6552), + [anon_sym_inline] = ACTIONS(6552), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6552), + [anon_sym_const] = ACTIONS(6561), + [anon_sym_volatile] = ACTIONS(6561), + [anon_sym_restrict] = ACTIONS(6561), + [anon_sym__Atomic] = ACTIONS(6564), + [anon_sym_in] = ACTIONS(6561), + [anon_sym_out] = ACTIONS(6561), + [anon_sym_inout] = ACTIONS(6561), + [anon_sym_bycopy] = ACTIONS(6561), + [anon_sym_byref] = ACTIONS(6561), + [anon_sym_oneway] = ACTIONS(6561), + [anon_sym__Nullable] = ACTIONS(6561), + [anon_sym__Nonnull] = ACTIONS(6561), + [anon_sym__Nullable_result] = ACTIONS(6561), + [anon_sym__Null_unspecified] = ACTIONS(6561), + [anon_sym___autoreleasing] = ACTIONS(6561), + [anon_sym___nullable] = ACTIONS(6561), + [anon_sym___nonnull] = ACTIONS(6561), + [anon_sym___strong] = ACTIONS(6561), + [anon_sym___weak] = ACTIONS(6561), + [anon_sym___bridge] = ACTIONS(6561), + [anon_sym___bridge_transfer] = ACTIONS(6561), + [anon_sym___bridge_retained] = ACTIONS(6561), + [anon_sym___unsafe_unretained] = ACTIONS(6561), + [anon_sym___block] = ACTIONS(6561), + [anon_sym___kindof] = ACTIONS(6561), + [anon_sym___unused] = ACTIONS(6561), + [anon_sym__Complex] = ACTIONS(6561), + [anon_sym___complex] = ACTIONS(6561), + [anon_sym_IBOutlet] = ACTIONS(6561), + [anon_sym_IBInspectable] = ACTIONS(6561), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6561), + [anon_sym_signed] = ACTIONS(6567), + [anon_sym_unsigned] = ACTIONS(6567), + [anon_sym_long] = ACTIONS(6567), + [anon_sym_short] = ACTIONS(6567), + [sym_primitive_type] = ACTIONS(6570), + [anon_sym_enum] = ACTIONS(6573), + [anon_sym_struct] = ACTIONS(6576), + [anon_sym_union] = ACTIONS(6579), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6582), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6585), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6585), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6588), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6588), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6588), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6588), + [anon_sym_NS_AVAILABLE] = ACTIONS(6591), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6591), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6591), + [anon_sym_API_AVAILABLE] = ACTIONS(6591), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6591), + [anon_sym_API_DEPRECATED] = ACTIONS(6591), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6591), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6591), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6591), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6591), + [anon_sym___deprecated_msg] = ACTIONS(6591), + [anon_sym___deprecated_enum_msg] = ACTIONS(6591), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6591), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6591), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6591), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6591), + [anon_sym_NS_ENUM] = ACTIONS(6594), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(6594), + [anon_sym_NS_OPTIONS] = ACTIONS(6594), + [anon_sym_typeof] = ACTIONS(6597), + [anon_sym___typeof] = ACTIONS(6597), + [anon_sym___typeof__] = ACTIONS(6597), + [sym_id] = ACTIONS(6600), + [sym_instancetype] = ACTIONS(6570), + [sym_Class] = ACTIONS(6600), + [sym_SEL] = ACTIONS(6570), + [sym_IMP] = ACTIONS(6570), + [sym_BOOL] = ACTIONS(6570), + [sym_auto] = ACTIONS(6570), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2689] = { + [sym__declaration_specifiers] = STATE(4647), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym__abstract_declarator] = STATE(4869), + [sym_abstract_parenthesized_declarator] = STATE(4310), + [sym_abstract_pointer_declarator] = STATE(4310), + [sym_abstract_function_declarator] = STATE(4310), + [sym_abstract_array_declarator] = STATE(4310), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(3311), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_parameter_list] = STATE(4311), + [sym_parameter_declaration] = STATE(5026), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [sym_block_abstract_declarator] = STATE(4310), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6485), + [anon_sym_RPAREN] = ACTIONS(6487), + [anon_sym_LPAREN2] = ACTIONS(6603), + [anon_sym_STAR] = ACTIONS(6605), + [anon_sym_CARET] = ACTIONS(6607), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_NOESCAPE] = ACTIONS(1157), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2690] = { + [sym_function_definition] = STATE(1538), + [sym_declaration] = STATE(1538), + [sym__declaration_specifiers] = STATE(4724), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2853), + [sym_declaration_list] = STATE(1538), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2864), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(6609), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2691] = { + [sym_preproc_def] = STATE(2694), + [sym_preproc_function_def] = STATE(2694), + [sym_preproc_call] = STATE(2694), + [sym_preproc_if_in_field_declaration_list] = STATE(2694), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2694), + [sym__declaration_specifiers] = STATE(4713), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2694), + [sym_field_declaration] = STATE(2694), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2694), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6611), + [aux_sym_preproc_if_token1] = ACTIONS(6613), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6615), + [sym_preproc_directive] = ACTIONS(6617), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(6619), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2692] = { + [sym_preproc_def] = STATE(2692), + [sym_preproc_function_def] = STATE(2692), + [sym_preproc_call] = STATE(2692), + [sym_preproc_if_in_field_declaration_list] = STATE(2692), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2692), + [sym__declaration_specifiers] = STATE(4713), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2692), + [sym_field_declaration] = STATE(2692), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2692), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(6535), + [aux_sym_preproc_def_token1] = ACTIONS(6621), + [aux_sym_preproc_if_token1] = ACTIONS(6624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6627), + [sym_preproc_directive] = ACTIONS(6630), + [anon_sym_extern] = ACTIONS(6552), + [anon_sym___attribute] = ACTIONS(6555), + [anon_sym___attribute__] = ACTIONS(6555), + [anon_sym___declspec] = ACTIONS(6558), + [anon_sym_RBRACE] = ACTIONS(6633), + [anon_sym_static] = ACTIONS(6552), + [anon_sym_auto] = ACTIONS(6552), + [anon_sym_register] = ACTIONS(6552), + [anon_sym_inline] = ACTIONS(6552), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6552), + [anon_sym_const] = ACTIONS(6561), + [anon_sym_volatile] = ACTIONS(6561), + [anon_sym_restrict] = ACTIONS(6561), + [anon_sym__Atomic] = ACTIONS(6564), + [anon_sym_in] = ACTIONS(6561), + [anon_sym_out] = ACTIONS(6561), + [anon_sym_inout] = ACTIONS(6561), + [anon_sym_bycopy] = ACTIONS(6561), + [anon_sym_byref] = ACTIONS(6561), + [anon_sym_oneway] = ACTIONS(6561), + [anon_sym__Nullable] = ACTIONS(6561), + [anon_sym__Nonnull] = ACTIONS(6561), + [anon_sym__Nullable_result] = ACTIONS(6561), + [anon_sym__Null_unspecified] = ACTIONS(6561), + [anon_sym___autoreleasing] = ACTIONS(6561), + [anon_sym___nullable] = ACTIONS(6561), + [anon_sym___nonnull] = ACTIONS(6561), + [anon_sym___strong] = ACTIONS(6561), + [anon_sym___weak] = ACTIONS(6561), + [anon_sym___bridge] = ACTIONS(6561), + [anon_sym___bridge_transfer] = ACTIONS(6561), + [anon_sym___bridge_retained] = ACTIONS(6561), + [anon_sym___unsafe_unretained] = ACTIONS(6561), + [anon_sym___block] = ACTIONS(6561), + [anon_sym___kindof] = ACTIONS(6561), + [anon_sym___unused] = ACTIONS(6561), + [anon_sym__Complex] = ACTIONS(6561), + [anon_sym___complex] = ACTIONS(6561), + [anon_sym_IBOutlet] = ACTIONS(6561), + [anon_sym_IBInspectable] = ACTIONS(6561), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6561), + [anon_sym_signed] = ACTIONS(6567), + [anon_sym_unsigned] = ACTIONS(6567), + [anon_sym_long] = ACTIONS(6567), + [anon_sym_short] = ACTIONS(6567), + [sym_primitive_type] = ACTIONS(6570), + [anon_sym_enum] = ACTIONS(6573), + [anon_sym_struct] = ACTIONS(6576), + [anon_sym_union] = ACTIONS(6579), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6582), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6585), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6585), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6588), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6588), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6588), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6588), + [anon_sym_NS_AVAILABLE] = ACTIONS(6591), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6591), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6591), + [anon_sym_API_AVAILABLE] = ACTIONS(6591), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6591), + [anon_sym_API_DEPRECATED] = ACTIONS(6591), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6591), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6591), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6591), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6591), + [anon_sym___deprecated_msg] = ACTIONS(6591), + [anon_sym___deprecated_enum_msg] = ACTIONS(6591), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6591), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6591), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6591), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6591), + [anon_sym_NS_ENUM] = ACTIONS(6594), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(6594), + [anon_sym_NS_OPTIONS] = ACTIONS(6594), + [anon_sym_typeof] = ACTIONS(6597), + [anon_sym___typeof] = ACTIONS(6597), + [anon_sym___typeof__] = ACTIONS(6597), + [sym_id] = ACTIONS(6600), + [sym_instancetype] = ACTIONS(6570), + [sym_Class] = ACTIONS(6600), + [sym_SEL] = ACTIONS(6570), + [sym_IMP] = ACTIONS(6570), + [sym_BOOL] = ACTIONS(6570), + [sym_auto] = ACTIONS(6570), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2693] = { + [sym_function_definition] = STATE(1131), + [sym_declaration] = STATE(1131), + [sym__declaration_specifiers] = STATE(4727), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2912), + [sym_declaration_list] = STATE(1131), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2891), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(6635), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2694] = { + [sym_preproc_def] = STATE(2692), + [sym_preproc_function_def] = STATE(2692), + [sym_preproc_call] = STATE(2692), + [sym_preproc_if_in_field_declaration_list] = STATE(2692), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2692), + [sym__declaration_specifiers] = STATE(4713), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2692), + [sym_field_declaration] = STATE(2692), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2692), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6611), + [aux_sym_preproc_if_token1] = ACTIONS(6613), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6615), + [sym_preproc_directive] = ACTIONS(6617), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(6637), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2695] = { + [sym_preproc_def] = STATE(2698), + [sym_preproc_function_def] = STATE(2698), + [sym_preproc_call] = STATE(2698), + [sym_preproc_if_in_field_declaration_list] = STATE(2698), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2698), + [sym__declaration_specifiers] = STATE(4713), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2698), + [sym_field_declaration] = STATE(2698), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2698), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6611), + [aux_sym_preproc_if_token1] = ACTIONS(6613), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6615), + [sym_preproc_directive] = ACTIONS(6617), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(6639), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2696] = { + [sym_preproc_def] = STATE(2696), + [sym_preproc_function_def] = STATE(2696), + [sym_preproc_call] = STATE(2696), + [sym_preproc_if_in_field_declaration_list] = STATE(2696), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2696), + [sym__declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2696), + [sym_field_declaration] = STATE(2696), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2696), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(6535), + [aux_sym_preproc_def_token1] = ACTIONS(6641), + [aux_sym_preproc_if_token1] = ACTIONS(6644), + [aux_sym_preproc_if_token2] = ACTIONS(6544), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6647), + [sym_preproc_directive] = ACTIONS(6650), + [anon_sym_extern] = ACTIONS(6552), + [anon_sym___attribute] = ACTIONS(6555), + [anon_sym___attribute__] = ACTIONS(6555), + [anon_sym___declspec] = ACTIONS(6558), + [anon_sym_static] = ACTIONS(6552), + [anon_sym_auto] = ACTIONS(6552), + [anon_sym_register] = ACTIONS(6552), + [anon_sym_inline] = ACTIONS(6552), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6552), + [anon_sym_const] = ACTIONS(6561), + [anon_sym_volatile] = ACTIONS(6561), + [anon_sym_restrict] = ACTIONS(6561), + [anon_sym__Atomic] = ACTIONS(6564), + [anon_sym_in] = ACTIONS(6561), + [anon_sym_out] = ACTIONS(6561), + [anon_sym_inout] = ACTIONS(6561), + [anon_sym_bycopy] = ACTIONS(6561), + [anon_sym_byref] = ACTIONS(6561), + [anon_sym_oneway] = ACTIONS(6561), + [anon_sym__Nullable] = ACTIONS(6561), + [anon_sym__Nonnull] = ACTIONS(6561), + [anon_sym__Nullable_result] = ACTIONS(6561), + [anon_sym__Null_unspecified] = ACTIONS(6561), + [anon_sym___autoreleasing] = ACTIONS(6561), + [anon_sym___nullable] = ACTIONS(6561), + [anon_sym___nonnull] = ACTIONS(6561), + [anon_sym___strong] = ACTIONS(6561), + [anon_sym___weak] = ACTIONS(6561), + [anon_sym___bridge] = ACTIONS(6561), + [anon_sym___bridge_transfer] = ACTIONS(6561), + [anon_sym___bridge_retained] = ACTIONS(6561), + [anon_sym___unsafe_unretained] = ACTIONS(6561), + [anon_sym___block] = ACTIONS(6561), + [anon_sym___kindof] = ACTIONS(6561), + [anon_sym___unused] = ACTIONS(6561), + [anon_sym__Complex] = ACTIONS(6561), + [anon_sym___complex] = ACTIONS(6561), + [anon_sym_IBOutlet] = ACTIONS(6561), + [anon_sym_IBInspectable] = ACTIONS(6561), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6561), + [anon_sym_signed] = ACTIONS(6567), + [anon_sym_unsigned] = ACTIONS(6567), + [anon_sym_long] = ACTIONS(6567), + [anon_sym_short] = ACTIONS(6567), + [sym_primitive_type] = ACTIONS(6570), + [anon_sym_enum] = ACTIONS(6573), + [anon_sym_struct] = ACTIONS(6576), + [anon_sym_union] = ACTIONS(6579), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6582), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6585), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6585), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6588), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6588), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6588), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6588), + [anon_sym_NS_AVAILABLE] = ACTIONS(6591), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6591), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6591), + [anon_sym_API_AVAILABLE] = ACTIONS(6591), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6591), + [anon_sym_API_DEPRECATED] = ACTIONS(6591), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6591), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6591), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6591), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6591), + [anon_sym___deprecated_msg] = ACTIONS(6591), + [anon_sym___deprecated_enum_msg] = ACTIONS(6591), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6591), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6591), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6591), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6591), + [anon_sym_NS_ENUM] = ACTIONS(6594), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(6594), + [anon_sym_NS_OPTIONS] = ACTIONS(6594), + [anon_sym_typeof] = ACTIONS(6597), + [anon_sym___typeof] = ACTIONS(6597), + [anon_sym___typeof__] = ACTIONS(6597), + [sym_id] = ACTIONS(6600), + [sym_instancetype] = ACTIONS(6570), + [sym_Class] = ACTIONS(6600), + [sym_SEL] = ACTIONS(6570), + [sym_IMP] = ACTIONS(6570), + [sym_BOOL] = ACTIONS(6570), + [sym_auto] = ACTIONS(6570), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2697] = { + [sym_preproc_def] = STATE(2699), + [sym_preproc_function_def] = STATE(2699), + [sym_preproc_call] = STATE(2699), + [sym_preproc_if_in_field_declaration_list] = STATE(2699), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2699), + [sym__declaration_specifiers] = STATE(4713), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2699), + [sym_field_declaration] = STATE(2699), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2699), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6611), + [aux_sym_preproc_if_token1] = ACTIONS(6613), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6615), + [sym_preproc_directive] = ACTIONS(6617), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(6653), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2698] = { + [sym_preproc_def] = STATE(2692), + [sym_preproc_function_def] = STATE(2692), + [sym_preproc_call] = STATE(2692), + [sym_preproc_if_in_field_declaration_list] = STATE(2692), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2692), + [sym__declaration_specifiers] = STATE(4713), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2692), + [sym_field_declaration] = STATE(2692), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2692), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6611), + [aux_sym_preproc_if_token1] = ACTIONS(6613), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6615), + [sym_preproc_directive] = ACTIONS(6617), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(6655), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2699] = { + [sym_preproc_def] = STATE(2692), + [sym_preproc_function_def] = STATE(2692), + [sym_preproc_call] = STATE(2692), + [sym_preproc_if_in_field_declaration_list] = STATE(2692), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2692), + [sym__declaration_specifiers] = STATE(4713), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2692), + [sym_field_declaration] = STATE(2692), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2692), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6611), + [aux_sym_preproc_if_token1] = ACTIONS(6613), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6615), + [sym_preproc_directive] = ACTIONS(6617), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(6657), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2700] = { + [sym_preproc_def] = STATE(2696), + [sym_preproc_function_def] = STATE(2696), + [sym_preproc_call] = STATE(2696), + [sym_preproc_if_in_field_declaration_list] = STATE(2696), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2696), + [sym__declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2696), + [sym_field_declaration] = STATE(2696), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2696), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6659), + [aux_sym_preproc_if_token1] = ACTIONS(6661), + [aux_sym_preproc_if_token2] = ACTIONS(6663), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6665), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6665), + [sym_preproc_directive] = ACTIONS(6667), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2701] = { + [sym_preproc_def] = STATE(2700), + [sym_preproc_function_def] = STATE(2700), + [sym_preproc_call] = STATE(2700), + [sym_preproc_if_in_field_declaration_list] = STATE(2700), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(2700), + [sym__declaration_specifiers] = STATE(4711), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym__field_declaration_list_item] = STATE(2700), + [sym_field_declaration] = STATE(2700), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2700), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [aux_sym_preproc_def_token1] = ACTIONS(6659), + [aux_sym_preproc_if_token1] = ACTIONS(6661), + [aux_sym_preproc_if_token2] = ACTIONS(6669), + [aux_sym_preproc_ifdef_token1] = ACTIONS(6665), + [aux_sym_preproc_ifdef_token2] = ACTIONS(6665), + [sym_preproc_directive] = ACTIONS(6667), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [2702] = { + [sym_function_definition] = STATE(481), + [sym_declaration] = STATE(481), + [sym__declaration_specifiers] = STATE(4725), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_ms_call_modifier] = STATE(2842), + [sym_declaration_list] = STATE(481), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(2909), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(6671), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2703] = { + [sym__declaration_specifiers] = STATE(4710), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_field_declaration] = STATE(2705), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variable_declaration] = STATE(2705), + [sym__visibility_specification] = STATE(2705), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [aux_sym__instance_variables_repeat1] = STATE(2705), + [sym_identifier] = ACTIONS(2184), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(6673), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_private] = ACTIONS(6675), + [sym_public] = ACTIONS(6675), + [sym_protected] = ACTIONS(6675), + [sym_package] = ACTIONS(6675), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2704] = { + [sym__declaration_specifiers] = STATE(4710), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_field_declaration] = STATE(2703), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variable_declaration] = STATE(2703), + [sym__visibility_specification] = STATE(2703), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [aux_sym__instance_variables_repeat1] = STATE(2703), + [sym_identifier] = ACTIONS(2184), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_RBRACE] = ACTIONS(6677), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_private] = ACTIONS(6679), + [sym_public] = ACTIONS(6679), + [sym_protected] = ACTIONS(6679), + [sym_package] = ACTIONS(6679), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2705] = { + [sym__declaration_specifiers] = STATE(4710), + [sym_attribute_specifier] = STATE(2948), + [sym_ms_declspec_modifier] = STATE(2948), + [sym_storage_class_specifier] = STATE(2948), + [sym_type_qualifier] = STATE(2948), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_field_declaration] = STATE(2705), + [sym_macro_type_specifier] = STATE(3325), + [sym__instance_variable_declaration] = STATE(2705), + [sym__visibility_specification] = STATE(2705), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2948), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [aux_sym__instance_variables_repeat1] = STATE(2705), + [sym_identifier] = ACTIONS(6681), + [anon_sym_extern] = ACTIONS(6684), + [anon_sym___attribute] = ACTIONS(6687), + [anon_sym___attribute__] = ACTIONS(6687), + [anon_sym___declspec] = ACTIONS(6690), + [anon_sym_RBRACE] = ACTIONS(6693), + [anon_sym_static] = ACTIONS(6684), + [anon_sym_auto] = ACTIONS(6684), + [anon_sym_register] = ACTIONS(6684), + [anon_sym_inline] = ACTIONS(6684), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6684), + [anon_sym_const] = ACTIONS(6695), + [anon_sym_volatile] = ACTIONS(6695), + [anon_sym_restrict] = ACTIONS(6695), + [anon_sym__Atomic] = ACTIONS(6698), + [anon_sym_in] = ACTIONS(6695), + [anon_sym_out] = ACTIONS(6695), + [anon_sym_inout] = ACTIONS(6695), + [anon_sym_bycopy] = ACTIONS(6695), + [anon_sym_byref] = ACTIONS(6695), + [anon_sym_oneway] = ACTIONS(6695), + [anon_sym__Nullable] = ACTIONS(6695), + [anon_sym__Nonnull] = ACTIONS(6695), + [anon_sym__Nullable_result] = ACTIONS(6695), + [anon_sym__Null_unspecified] = ACTIONS(6695), + [anon_sym___autoreleasing] = ACTIONS(6695), + [anon_sym___nullable] = ACTIONS(6695), + [anon_sym___nonnull] = ACTIONS(6695), + [anon_sym___strong] = ACTIONS(6695), + [anon_sym___weak] = ACTIONS(6695), + [anon_sym___bridge] = ACTIONS(6695), + [anon_sym___bridge_transfer] = ACTIONS(6695), + [anon_sym___bridge_retained] = ACTIONS(6695), + [anon_sym___unsafe_unretained] = ACTIONS(6695), + [anon_sym___block] = ACTIONS(6695), + [anon_sym___kindof] = ACTIONS(6695), + [anon_sym___unused] = ACTIONS(6695), + [anon_sym__Complex] = ACTIONS(6695), + [anon_sym___complex] = ACTIONS(6695), + [anon_sym_IBOutlet] = ACTIONS(6695), + [anon_sym_IBInspectable] = ACTIONS(6695), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6695), + [anon_sym_signed] = ACTIONS(6701), + [anon_sym_unsigned] = ACTIONS(6701), + [anon_sym_long] = ACTIONS(6701), + [anon_sym_short] = ACTIONS(6701), + [sym_primitive_type] = ACTIONS(6704), + [anon_sym_enum] = ACTIONS(6707), + [anon_sym_struct] = ACTIONS(6710), + [anon_sym_union] = ACTIONS(6713), + [sym_comment] = ACTIONS(3), + [sym_private] = ACTIONS(6716), + [sym_public] = ACTIONS(6716), + [sym_protected] = ACTIONS(6716), + [sym_package] = ACTIONS(6716), + [sym_method_attribute_specifier] = ACTIONS(6719), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6722), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6722), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6725), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6725), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6725), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6725), + [anon_sym_NS_AVAILABLE] = ACTIONS(6728), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6728), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6728), + [anon_sym_API_AVAILABLE] = ACTIONS(6728), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6728), + [anon_sym_API_DEPRECATED] = ACTIONS(6728), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6728), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6728), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6728), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6728), + [anon_sym___deprecated_msg] = ACTIONS(6728), + [anon_sym___deprecated_enum_msg] = ACTIONS(6728), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6728), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6728), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6728), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6728), + [anon_sym_NS_ENUM] = ACTIONS(6731), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(6731), + [anon_sym_NS_OPTIONS] = ACTIONS(6731), + [anon_sym_typeof] = ACTIONS(6734), + [anon_sym___typeof] = ACTIONS(6734), + [anon_sym___typeof__] = ACTIONS(6734), + [sym_id] = ACTIONS(6737), + [sym_instancetype] = ACTIONS(6704), + [sym_Class] = ACTIONS(6737), + [sym_SEL] = ACTIONS(6704), + [sym_IMP] = ACTIONS(6704), + [sym_BOOL] = ACTIONS(6704), + [sym_auto] = ACTIONS(6704), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2706] = { + [sym_identifier] = ACTIONS(6740), + [aux_sym_preproc_def_token1] = ACTIONS(6742), + [anon_sym_COMMA] = ACTIONS(6742), + [anon_sym_RPAREN] = ACTIONS(6742), + [anon_sym_LPAREN2] = ACTIONS(6742), + [anon_sym_DASH] = ACTIONS(6742), + [anon_sym_PLUS] = ACTIONS(6742), + [anon_sym_LT] = ACTIONS(6742), + [anon_sym_SEMI] = ACTIONS(6742), + [anon_sym_typedef] = ACTIONS(6740), + [anon_sym_extern] = ACTIONS(6740), + [anon_sym___attribute] = ACTIONS(6740), + [anon_sym___attribute__] = ACTIONS(6740), + [anon_sym___declspec] = ACTIONS(6740), + [anon_sym___cdecl] = ACTIONS(6740), + [anon_sym___clrcall] = ACTIONS(6740), + [anon_sym___stdcall] = ACTIONS(6740), + [anon_sym___fastcall] = ACTIONS(6740), + [anon_sym___thiscall] = ACTIONS(6740), + [anon_sym___vectorcall] = ACTIONS(6740), + [anon_sym_LBRACE] = ACTIONS(6742), + [anon_sym_static] = ACTIONS(6740), + [anon_sym_auto] = ACTIONS(6740), + [anon_sym_register] = ACTIONS(6740), + [anon_sym_inline] = ACTIONS(6740), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6740), + [anon_sym_const] = ACTIONS(6740), + [anon_sym_volatile] = ACTIONS(6740), + [anon_sym_restrict] = ACTIONS(6740), + [anon_sym__Atomic] = ACTIONS(6740), + [anon_sym_in] = ACTIONS(6740), + [anon_sym_out] = ACTIONS(6740), + [anon_sym_inout] = ACTIONS(6740), + [anon_sym_bycopy] = ACTIONS(6740), + [anon_sym_byref] = ACTIONS(6740), + [anon_sym_oneway] = ACTIONS(6740), + [anon_sym__Nullable] = ACTIONS(6740), + [anon_sym__Nonnull] = ACTIONS(6740), + [anon_sym__Nullable_result] = ACTIONS(6740), + [anon_sym__Null_unspecified] = ACTIONS(6740), + [anon_sym___autoreleasing] = ACTIONS(6740), + [anon_sym___nullable] = ACTIONS(6740), + [anon_sym___nonnull] = ACTIONS(6740), + [anon_sym___strong] = ACTIONS(6740), + [anon_sym___weak] = ACTIONS(6740), + [anon_sym___bridge] = ACTIONS(6740), + [anon_sym___bridge_transfer] = ACTIONS(6740), + [anon_sym___bridge_retained] = ACTIONS(6740), + [anon_sym___unsafe_unretained] = ACTIONS(6740), + [anon_sym___block] = ACTIONS(6740), + [anon_sym___kindof] = ACTIONS(6740), + [anon_sym___unused] = ACTIONS(6740), + [anon_sym__Complex] = ACTIONS(6740), + [anon_sym___complex] = ACTIONS(6740), + [anon_sym_IBOutlet] = ACTIONS(6740), + [anon_sym_IBInspectable] = ACTIONS(6740), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6740), + [anon_sym_signed] = ACTIONS(6740), + [anon_sym_unsigned] = ACTIONS(6740), + [anon_sym_long] = ACTIONS(6740), + [anon_sym_short] = ACTIONS(6740), + [sym_primitive_type] = ACTIONS(6740), + [anon_sym_enum] = ACTIONS(6740), + [anon_sym_COLON] = ACTIONS(6742), + [anon_sym_struct] = ACTIONS(6740), + [anon_sym_union] = ACTIONS(6740), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6740), + [anon_sym_ATend] = ACTIONS(6742), + [sym_optional] = ACTIONS(6742), + [sym_required] = ACTIONS(6742), + [anon_sym_ATproperty] = ACTIONS(6742), + [sym_method_attribute_specifier] = ACTIONS(6740), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6740), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6740), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6740), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6740), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6740), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6740), + [anon_sym_NS_AVAILABLE] = ACTIONS(6740), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6740), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6740), + [anon_sym_API_AVAILABLE] = ACTIONS(6740), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6740), + [anon_sym_API_DEPRECATED] = ACTIONS(6740), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6740), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6740), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6740), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6740), + [anon_sym___deprecated_msg] = ACTIONS(6740), + [anon_sym___deprecated_enum_msg] = ACTIONS(6740), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6740), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6740), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6740), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6740), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6740), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6740), + [anon_sym_ATsynthesize] = ACTIONS(6742), + [anon_sym_ATdynamic] = ACTIONS(6742), + [anon_sym_NS_ENUM] = ACTIONS(6740), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(6740), + [anon_sym_NS_OPTIONS] = ACTIONS(6740), + [anon_sym_typeof] = ACTIONS(6740), + [anon_sym___typeof] = ACTIONS(6740), + [anon_sym___typeof__] = ACTIONS(6740), + [sym_id] = ACTIONS(6740), + [sym_instancetype] = ACTIONS(6740), + [sym_Class] = ACTIONS(6740), + [sym_SEL] = ACTIONS(6740), + [sym_IMP] = ACTIONS(6740), + [sym_BOOL] = ACTIONS(6740), + [sym_auto] = ACTIONS(6740), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2707] = { + [sym_string_literal] = STATE(2791), + [aux_sym_string_expression_repeat1] = STATE(2708), + [sym_identifier] = ACTIONS(6744), + [anon_sym_COMMA] = ACTIONS(6746), + [anon_sym_RPAREN] = ACTIONS(6746), + [anon_sym_LPAREN2] = ACTIONS(6746), + [anon_sym_DASH] = ACTIONS(6744), + [anon_sym_PLUS] = ACTIONS(6744), + [anon_sym_STAR] = ACTIONS(6744), + [anon_sym_SLASH] = ACTIONS(6744), + [anon_sym_PERCENT] = ACTIONS(6744), + [anon_sym_PIPE_PIPE] = ACTIONS(6746), + [anon_sym_AMP_AMP] = ACTIONS(6746), + [anon_sym_PIPE] = ACTIONS(6744), + [anon_sym_CARET] = ACTIONS(6744), + [anon_sym_AMP] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6746), + [anon_sym_BANG_EQ] = ACTIONS(6746), + [anon_sym_GT] = ACTIONS(6744), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6744), + [anon_sym_LT_LT] = ACTIONS(6744), + [anon_sym_GT_GT] = ACTIONS(6744), + [anon_sym_SEMI] = ACTIONS(6746), + [anon_sym___attribute] = ACTIONS(6744), + [anon_sym___attribute__] = ACTIONS(6744), + [anon_sym_RBRACE] = ACTIONS(6746), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_RBRACK] = ACTIONS(6746), + [anon_sym_EQ] = ACTIONS(6744), + [anon_sym_const] = ACTIONS(6744), + [anon_sym_volatile] = ACTIONS(6744), + [anon_sym_restrict] = ACTIONS(6744), + [anon_sym__Atomic] = ACTIONS(6744), + [anon_sym_in] = ACTIONS(6744), + [anon_sym_out] = ACTIONS(6744), + [anon_sym_inout] = ACTIONS(6744), + [anon_sym_bycopy] = ACTIONS(6744), + [anon_sym_byref] = ACTIONS(6744), + [anon_sym_oneway] = ACTIONS(6744), + [anon_sym__Nullable] = ACTIONS(6744), + [anon_sym__Nonnull] = ACTIONS(6744), + [anon_sym__Nullable_result] = ACTIONS(6744), + [anon_sym__Null_unspecified] = ACTIONS(6744), + [anon_sym___autoreleasing] = ACTIONS(6744), + [anon_sym___nullable] = ACTIONS(6744), + [anon_sym___nonnull] = ACTIONS(6744), + [anon_sym___strong] = ACTIONS(6744), + [anon_sym___weak] = ACTIONS(6744), + [anon_sym___bridge] = ACTIONS(6744), + [anon_sym___bridge_transfer] = ACTIONS(6744), + [anon_sym___bridge_retained] = ACTIONS(6744), + [anon_sym___unsafe_unretained] = ACTIONS(6744), + [anon_sym___block] = ACTIONS(6744), + [anon_sym___kindof] = ACTIONS(6744), + [anon_sym___unused] = ACTIONS(6744), + [anon_sym__Complex] = ACTIONS(6744), + [anon_sym___complex] = ACTIONS(6744), + [anon_sym_IBOutlet] = ACTIONS(6744), + [anon_sym_IBInspectable] = ACTIONS(6744), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6744), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_QMARK] = ACTIONS(6746), + [anon_sym_STAR_EQ] = ACTIONS(6746), + [anon_sym_SLASH_EQ] = ACTIONS(6746), + [anon_sym_PERCENT_EQ] = ACTIONS(6746), + [anon_sym_PLUS_EQ] = ACTIONS(6746), + [anon_sym_DASH_EQ] = ACTIONS(6746), + [anon_sym_LT_LT_EQ] = ACTIONS(6746), + [anon_sym_GT_GT_EQ] = ACTIONS(6746), + [anon_sym_AMP_EQ] = ACTIONS(6746), + [anon_sym_CARET_EQ] = ACTIONS(6746), + [anon_sym_PIPE_EQ] = ACTIONS(6746), + [anon_sym_DASH_DASH] = ACTIONS(6746), + [anon_sym_PLUS_PLUS] = ACTIONS(6746), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DASH_GT] = ACTIONS(6746), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6744), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6744), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6744), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6744), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6744), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6744), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6744), + [anon_sym_NS_AVAILABLE] = ACTIONS(6744), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6744), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6744), + [anon_sym_API_AVAILABLE] = ACTIONS(6744), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6744), + [anon_sym_API_DEPRECATED] = ACTIONS(6744), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6744), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6744), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6744), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6744), + [anon_sym___deprecated_msg] = ACTIONS(6744), + [anon_sym___deprecated_enum_msg] = ACTIONS(6744), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6744), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6744), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6744), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6744), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6744), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6744), + [anon_sym_AT] = ACTIONS(6748), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2708] = { + [sym_string_literal] = STATE(2791), + [aux_sym_string_expression_repeat1] = STATE(2708), + [sym_identifier] = ACTIONS(6750), + [anon_sym_COMMA] = ACTIONS(6752), + [anon_sym_RPAREN] = ACTIONS(6752), + [anon_sym_LPAREN2] = ACTIONS(6752), + [anon_sym_DASH] = ACTIONS(6750), + [anon_sym_PLUS] = ACTIONS(6750), + [anon_sym_STAR] = ACTIONS(6750), + [anon_sym_SLASH] = ACTIONS(6750), + [anon_sym_PERCENT] = ACTIONS(6750), + [anon_sym_PIPE_PIPE] = ACTIONS(6752), + [anon_sym_AMP_AMP] = ACTIONS(6752), + [anon_sym_PIPE] = ACTIONS(6750), + [anon_sym_CARET] = ACTIONS(6750), + [anon_sym_AMP] = ACTIONS(6750), + [anon_sym_EQ_EQ] = ACTIONS(6752), + [anon_sym_BANG_EQ] = ACTIONS(6752), + [anon_sym_GT] = ACTIONS(6750), + [anon_sym_GT_EQ] = ACTIONS(6752), + [anon_sym_LT_EQ] = ACTIONS(6752), + [anon_sym_LT] = ACTIONS(6750), + [anon_sym_LT_LT] = ACTIONS(6750), + [anon_sym_GT_GT] = ACTIONS(6750), + [anon_sym_SEMI] = ACTIONS(6752), + [anon_sym___attribute] = ACTIONS(6750), + [anon_sym___attribute__] = ACTIONS(6750), + [anon_sym_RBRACE] = ACTIONS(6752), + [anon_sym_LBRACK] = ACTIONS(6752), + [anon_sym_RBRACK] = ACTIONS(6752), + [anon_sym_EQ] = ACTIONS(6750), + [anon_sym_const] = ACTIONS(6750), + [anon_sym_volatile] = ACTIONS(6750), + [anon_sym_restrict] = ACTIONS(6750), + [anon_sym__Atomic] = ACTIONS(6750), + [anon_sym_in] = ACTIONS(6750), + [anon_sym_out] = ACTIONS(6750), + [anon_sym_inout] = ACTIONS(6750), + [anon_sym_bycopy] = ACTIONS(6750), + [anon_sym_byref] = ACTIONS(6750), + [anon_sym_oneway] = ACTIONS(6750), + [anon_sym__Nullable] = ACTIONS(6750), + [anon_sym__Nonnull] = ACTIONS(6750), + [anon_sym__Nullable_result] = ACTIONS(6750), + [anon_sym__Null_unspecified] = ACTIONS(6750), + [anon_sym___autoreleasing] = ACTIONS(6750), + [anon_sym___nullable] = ACTIONS(6750), + [anon_sym___nonnull] = ACTIONS(6750), + [anon_sym___strong] = ACTIONS(6750), + [anon_sym___weak] = ACTIONS(6750), + [anon_sym___bridge] = ACTIONS(6750), + [anon_sym___bridge_transfer] = ACTIONS(6750), + [anon_sym___bridge_retained] = ACTIONS(6750), + [anon_sym___unsafe_unretained] = ACTIONS(6750), + [anon_sym___block] = ACTIONS(6750), + [anon_sym___kindof] = ACTIONS(6750), + [anon_sym___unused] = ACTIONS(6750), + [anon_sym__Complex] = ACTIONS(6750), + [anon_sym___complex] = ACTIONS(6750), + [anon_sym_IBOutlet] = ACTIONS(6750), + [anon_sym_IBInspectable] = ACTIONS(6750), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6750), + [anon_sym_COLON] = ACTIONS(6752), + [anon_sym_QMARK] = ACTIONS(6752), + [anon_sym_STAR_EQ] = ACTIONS(6752), + [anon_sym_SLASH_EQ] = ACTIONS(6752), + [anon_sym_PERCENT_EQ] = ACTIONS(6752), + [anon_sym_PLUS_EQ] = ACTIONS(6752), + [anon_sym_DASH_EQ] = ACTIONS(6752), + [anon_sym_LT_LT_EQ] = ACTIONS(6752), + [anon_sym_GT_GT_EQ] = ACTIONS(6752), + [anon_sym_AMP_EQ] = ACTIONS(6752), + [anon_sym_CARET_EQ] = ACTIONS(6752), + [anon_sym_PIPE_EQ] = ACTIONS(6752), + [anon_sym_DASH_DASH] = ACTIONS(6752), + [anon_sym_PLUS_PLUS] = ACTIONS(6752), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_DASH_GT] = ACTIONS(6752), + [anon_sym_L_DQUOTE] = ACTIONS(6754), + [anon_sym_u_DQUOTE] = ACTIONS(6754), + [anon_sym_U_DQUOTE] = ACTIONS(6754), + [anon_sym_u8_DQUOTE] = ACTIONS(6754), + [anon_sym_DQUOTE] = ACTIONS(6754), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6750), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6750), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6750), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6750), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6750), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6750), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6750), + [anon_sym_NS_AVAILABLE] = ACTIONS(6750), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6750), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6750), + [anon_sym_API_AVAILABLE] = ACTIONS(6750), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6750), + [anon_sym_API_DEPRECATED] = ACTIONS(6750), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6750), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6750), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6750), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6750), + [anon_sym___deprecated_msg] = ACTIONS(6750), + [anon_sym___deprecated_enum_msg] = ACTIONS(6750), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6750), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6750), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6750), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6750), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6750), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6750), + [anon_sym_AT] = ACTIONS(6757), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2709] = { + [sym_string_literal] = STATE(2791), + [aux_sym_string_expression_repeat1] = STATE(2707), + [sym_identifier] = ACTIONS(6760), + [anon_sym_COMMA] = ACTIONS(6762), + [anon_sym_RPAREN] = ACTIONS(6762), + [anon_sym_LPAREN2] = ACTIONS(6762), + [anon_sym_DASH] = ACTIONS(6760), + [anon_sym_PLUS] = ACTIONS(6760), + [anon_sym_STAR] = ACTIONS(6760), + [anon_sym_SLASH] = ACTIONS(6760), + [anon_sym_PERCENT] = ACTIONS(6760), + [anon_sym_PIPE_PIPE] = ACTIONS(6762), + [anon_sym_AMP_AMP] = ACTIONS(6762), + [anon_sym_PIPE] = ACTIONS(6760), + [anon_sym_CARET] = ACTIONS(6760), + [anon_sym_AMP] = ACTIONS(6760), + [anon_sym_EQ_EQ] = ACTIONS(6762), + [anon_sym_BANG_EQ] = ACTIONS(6762), + [anon_sym_GT] = ACTIONS(6760), + [anon_sym_GT_EQ] = ACTIONS(6762), + [anon_sym_LT_EQ] = ACTIONS(6762), + [anon_sym_LT] = ACTIONS(6760), + [anon_sym_LT_LT] = ACTIONS(6760), + [anon_sym_GT_GT] = ACTIONS(6760), + [anon_sym_SEMI] = ACTIONS(6762), + [anon_sym___attribute] = ACTIONS(6760), + [anon_sym___attribute__] = ACTIONS(6760), + [anon_sym_RBRACE] = ACTIONS(6762), + [anon_sym_LBRACK] = ACTIONS(6762), + [anon_sym_RBRACK] = ACTIONS(6762), + [anon_sym_EQ] = ACTIONS(6760), + [anon_sym_const] = ACTIONS(6760), + [anon_sym_volatile] = ACTIONS(6760), + [anon_sym_restrict] = ACTIONS(6760), + [anon_sym__Atomic] = ACTIONS(6760), + [anon_sym_in] = ACTIONS(6760), + [anon_sym_out] = ACTIONS(6760), + [anon_sym_inout] = ACTIONS(6760), + [anon_sym_bycopy] = ACTIONS(6760), + [anon_sym_byref] = ACTIONS(6760), + [anon_sym_oneway] = ACTIONS(6760), + [anon_sym__Nullable] = ACTIONS(6760), + [anon_sym__Nonnull] = ACTIONS(6760), + [anon_sym__Nullable_result] = ACTIONS(6760), + [anon_sym__Null_unspecified] = ACTIONS(6760), + [anon_sym___autoreleasing] = ACTIONS(6760), + [anon_sym___nullable] = ACTIONS(6760), + [anon_sym___nonnull] = ACTIONS(6760), + [anon_sym___strong] = ACTIONS(6760), + [anon_sym___weak] = ACTIONS(6760), + [anon_sym___bridge] = ACTIONS(6760), + [anon_sym___bridge_transfer] = ACTIONS(6760), + [anon_sym___bridge_retained] = ACTIONS(6760), + [anon_sym___unsafe_unretained] = ACTIONS(6760), + [anon_sym___block] = ACTIONS(6760), + [anon_sym___kindof] = ACTIONS(6760), + [anon_sym___unused] = ACTIONS(6760), + [anon_sym__Complex] = ACTIONS(6760), + [anon_sym___complex] = ACTIONS(6760), + [anon_sym_IBOutlet] = ACTIONS(6760), + [anon_sym_IBInspectable] = ACTIONS(6760), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6760), + [anon_sym_COLON] = ACTIONS(6762), + [anon_sym_QMARK] = ACTIONS(6762), + [anon_sym_STAR_EQ] = ACTIONS(6762), + [anon_sym_SLASH_EQ] = ACTIONS(6762), + [anon_sym_PERCENT_EQ] = ACTIONS(6762), + [anon_sym_PLUS_EQ] = ACTIONS(6762), + [anon_sym_DASH_EQ] = ACTIONS(6762), + [anon_sym_LT_LT_EQ] = ACTIONS(6762), + [anon_sym_GT_GT_EQ] = ACTIONS(6762), + [anon_sym_AMP_EQ] = ACTIONS(6762), + [anon_sym_CARET_EQ] = ACTIONS(6762), + [anon_sym_PIPE_EQ] = ACTIONS(6762), + [anon_sym_DASH_DASH] = ACTIONS(6762), + [anon_sym_PLUS_PLUS] = ACTIONS(6762), + [anon_sym_DOT] = ACTIONS(6762), + [anon_sym_DASH_GT] = ACTIONS(6762), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6760), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6760), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6760), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6760), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6760), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6760), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6760), + [anon_sym_NS_AVAILABLE] = ACTIONS(6760), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6760), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6760), + [anon_sym_API_AVAILABLE] = ACTIONS(6760), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6760), + [anon_sym_API_DEPRECATED] = ACTIONS(6760), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6760), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6760), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6760), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6760), + [anon_sym___deprecated_msg] = ACTIONS(6760), + [anon_sym___deprecated_enum_msg] = ACTIONS(6760), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6760), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6760), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6760), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6760), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6760), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6760), + [anon_sym_AT] = ACTIONS(6748), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2710] = { + [sym__declaration_specifiers] = STATE(4721), + [sym_attribute_specifier] = STATE(3305), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4346), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_typedef] = ACTIONS(6764), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), @@ -478583,35 +456596,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(829), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [anon_sym_ATprotocol] = ACTIONS(6766), + [anon_sym_ATinterface] = ACTIONS(6768), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), @@ -478629,112 +456644,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2888] = { - [sym_identifier] = ACTIONS(1413), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym___attribute] = ACTIONS(1413), - [anon_sym___attribute__] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1413), - [anon_sym___cdecl] = ACTIONS(1413), - [anon_sym___clrcall] = ACTIONS(1413), - [anon_sym___stdcall] = ACTIONS(1413), - [anon_sym___fastcall] = ACTIONS(1413), - [anon_sym___thiscall] = ACTIONS(1413), - [anon_sym___vectorcall] = ACTIONS(1413), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_auto] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_inline] = ACTIONS(1413), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_volatile] = ACTIONS(1413), - [anon_sym_restrict] = ACTIONS(1413), - [anon_sym__Atomic] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_out] = ACTIONS(1413), - [anon_sym_inout] = ACTIONS(1413), - [anon_sym_bycopy] = ACTIONS(1413), - [anon_sym_byref] = ACTIONS(1413), - [anon_sym_oneway] = ACTIONS(1413), - [anon_sym__Nullable] = ACTIONS(1413), - [anon_sym__Nonnull] = ACTIONS(1413), - [anon_sym__Nullable_result] = ACTIONS(1413), - [anon_sym__Null_unspecified] = ACTIONS(1413), - [anon_sym___autoreleasing] = ACTIONS(1413), - [anon_sym___nullable] = ACTIONS(1413), - [anon_sym___nonnull] = ACTIONS(1413), - [anon_sym___strong] = ACTIONS(1413), - [anon_sym___weak] = ACTIONS(1413), - [anon_sym___bridge] = ACTIONS(1413), - [anon_sym___bridge_transfer] = ACTIONS(1413), - [anon_sym___bridge_retained] = ACTIONS(1413), - [anon_sym___unsafe_unretained] = ACTIONS(1413), - [anon_sym___block] = ACTIONS(1413), - [anon_sym___kindof] = ACTIONS(1413), - [anon_sym___unused] = ACTIONS(1413), - [anon_sym__Complex] = ACTIONS(1413), - [anon_sym___complex] = ACTIONS(1413), - [anon_sym_IBOutlet] = ACTIONS(1413), - [anon_sym_IBInspectable] = ACTIONS(1413), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1413), - [anon_sym_unsigned] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [sym_primitive_type] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_NS_ENUM] = ACTIONS(1413), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1413), - [anon_sym_NS_OPTIONS] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), + [2711] = { + [sym_string_literal] = STATE(2711), + [aux_sym_concatenated_string_repeat1] = STATE(2711), + [sym_identifier] = ACTIONS(6770), + [anon_sym_COMMA] = ACTIONS(6772), + [anon_sym_RPAREN] = ACTIONS(6772), + [anon_sym_LPAREN2] = ACTIONS(6772), + [anon_sym_DASH] = ACTIONS(6770), + [anon_sym_PLUS] = ACTIONS(6770), + [anon_sym_STAR] = ACTIONS(6770), + [anon_sym_SLASH] = ACTIONS(6770), + [anon_sym_PERCENT] = ACTIONS(6770), + [anon_sym_PIPE_PIPE] = ACTIONS(6772), + [anon_sym_AMP_AMP] = ACTIONS(6772), + [anon_sym_PIPE] = ACTIONS(6770), + [anon_sym_CARET] = ACTIONS(6770), + [anon_sym_AMP] = ACTIONS(6770), + [anon_sym_EQ_EQ] = ACTIONS(6772), + [anon_sym_BANG_EQ] = ACTIONS(6772), + [anon_sym_GT] = ACTIONS(6770), + [anon_sym_GT_EQ] = ACTIONS(6772), + [anon_sym_LT_EQ] = ACTIONS(6772), + [anon_sym_LT] = ACTIONS(6770), + [anon_sym_LT_LT] = ACTIONS(6770), + [anon_sym_GT_GT] = ACTIONS(6770), + [anon_sym_SEMI] = ACTIONS(6772), + [anon_sym___attribute] = ACTIONS(6770), + [anon_sym___attribute__] = ACTIONS(6770), + [anon_sym_RBRACE] = ACTIONS(6772), + [anon_sym_LBRACK] = ACTIONS(6772), + [anon_sym_RBRACK] = ACTIONS(6772), + [anon_sym_EQ] = ACTIONS(6770), + [anon_sym_const] = ACTIONS(6770), + [anon_sym_volatile] = ACTIONS(6770), + [anon_sym_restrict] = ACTIONS(6770), + [anon_sym__Atomic] = ACTIONS(6770), + [anon_sym_in] = ACTIONS(6770), + [anon_sym_out] = ACTIONS(6770), + [anon_sym_inout] = ACTIONS(6770), + [anon_sym_bycopy] = ACTIONS(6770), + [anon_sym_byref] = ACTIONS(6770), + [anon_sym_oneway] = ACTIONS(6770), + [anon_sym__Nullable] = ACTIONS(6770), + [anon_sym__Nonnull] = ACTIONS(6770), + [anon_sym__Nullable_result] = ACTIONS(6770), + [anon_sym__Null_unspecified] = ACTIONS(6770), + [anon_sym___autoreleasing] = ACTIONS(6770), + [anon_sym___nullable] = ACTIONS(6770), + [anon_sym___nonnull] = ACTIONS(6770), + [anon_sym___strong] = ACTIONS(6770), + [anon_sym___weak] = ACTIONS(6770), + [anon_sym___bridge] = ACTIONS(6770), + [anon_sym___bridge_transfer] = ACTIONS(6770), + [anon_sym___bridge_retained] = ACTIONS(6770), + [anon_sym___unsafe_unretained] = ACTIONS(6770), + [anon_sym___block] = ACTIONS(6770), + [anon_sym___kindof] = ACTIONS(6770), + [anon_sym___unused] = ACTIONS(6770), + [anon_sym__Complex] = ACTIONS(6770), + [anon_sym___complex] = ACTIONS(6770), + [anon_sym_IBOutlet] = ACTIONS(6770), + [anon_sym_IBInspectable] = ACTIONS(6770), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6770), + [anon_sym_COLON] = ACTIONS(6772), + [anon_sym_QMARK] = ACTIONS(6772), + [anon_sym_STAR_EQ] = ACTIONS(6772), + [anon_sym_SLASH_EQ] = ACTIONS(6772), + [anon_sym_PERCENT_EQ] = ACTIONS(6772), + [anon_sym_PLUS_EQ] = ACTIONS(6772), + [anon_sym_DASH_EQ] = ACTIONS(6772), + [anon_sym_LT_LT_EQ] = ACTIONS(6772), + [anon_sym_GT_GT_EQ] = ACTIONS(6772), + [anon_sym_AMP_EQ] = ACTIONS(6772), + [anon_sym_CARET_EQ] = ACTIONS(6772), + [anon_sym_PIPE_EQ] = ACTIONS(6772), + [anon_sym_DASH_DASH] = ACTIONS(6772), + [anon_sym_PLUS_PLUS] = ACTIONS(6772), + [anon_sym_DOT] = ACTIONS(6772), + [anon_sym_DASH_GT] = ACTIONS(6772), + [anon_sym_L_DQUOTE] = ACTIONS(6774), + [anon_sym_u_DQUOTE] = ACTIONS(6774), + [anon_sym_U_DQUOTE] = ACTIONS(6774), + [anon_sym_u8_DQUOTE] = ACTIONS(6774), + [anon_sym_DQUOTE] = ACTIONS(6774), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1413), - [anon_sym_ATend] = ACTIONS(1415), - [sym_optional] = ACTIONS(1415), - [sym_required] = ACTIONS(1415), - [anon_sym_ATproperty] = ACTIONS(1415), - [sym_method_attribute_specifier] = ACTIONS(1413), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1413), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE] = ACTIONS(1413), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_API_AVAILABLE] = ACTIONS(1413), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_API_DEPRECATED] = ACTIONS(1413), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1413), - [anon_sym___deprecated_msg] = ACTIONS(1413), - [anon_sym___deprecated_enum_msg] = ACTIONS(1413), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1413), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1413), - [anon_sym_ATsynthesize] = ACTIONS(1415), - [anon_sym_ATdynamic] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym___typeof] = ACTIONS(1413), - [anon_sym___typeof__] = ACTIONS(1413), - [sym_id] = ACTIONS(1413), - [sym_instancetype] = ACTIONS(1413), - [sym_Class] = ACTIONS(1413), - [sym_SEL] = ACTIONS(1413), - [sym_IMP] = ACTIONS(1413), - [sym_BOOL] = ACTIONS(1413), - [sym_auto] = ACTIONS(1413), + [sym_method_attribute_specifier] = ACTIONS(6770), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6770), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6770), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6770), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6770), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6770), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6770), + [anon_sym_NS_AVAILABLE] = ACTIONS(6770), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6770), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6770), + [anon_sym_API_AVAILABLE] = ACTIONS(6770), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6770), + [anon_sym_API_DEPRECATED] = ACTIONS(6770), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6770), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6770), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6770), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6770), + [anon_sym___deprecated_msg] = ACTIONS(6770), + [anon_sym___deprecated_enum_msg] = ACTIONS(6770), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6770), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6770), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6770), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6770), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6770), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6770), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -478742,112 +456761,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2889] = { - [sym_identifier] = ACTIONS(1409), - [aux_sym_preproc_def_token1] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_typedef] = ACTIONS(1409), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym___attribute] = ACTIONS(1409), - [anon_sym___attribute__] = ACTIONS(1409), - [anon_sym___declspec] = ACTIONS(1409), - [anon_sym___cdecl] = ACTIONS(1409), - [anon_sym___clrcall] = ACTIONS(1409), - [anon_sym___stdcall] = ACTIONS(1409), - [anon_sym___fastcall] = ACTIONS(1409), - [anon_sym___thiscall] = ACTIONS(1409), - [anon_sym___vectorcall] = ACTIONS(1409), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_auto] = ACTIONS(1409), - [anon_sym_register] = ACTIONS(1409), - [anon_sym_inline] = ACTIONS(1409), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_volatile] = ACTIONS(1409), - [anon_sym_restrict] = ACTIONS(1409), - [anon_sym__Atomic] = ACTIONS(1409), - [anon_sym_in] = ACTIONS(1409), - [anon_sym_out] = ACTIONS(1409), - [anon_sym_inout] = ACTIONS(1409), - [anon_sym_bycopy] = ACTIONS(1409), - [anon_sym_byref] = ACTIONS(1409), - [anon_sym_oneway] = ACTIONS(1409), - [anon_sym__Nullable] = ACTIONS(1409), - [anon_sym__Nonnull] = ACTIONS(1409), - [anon_sym__Nullable_result] = ACTIONS(1409), - [anon_sym__Null_unspecified] = ACTIONS(1409), - [anon_sym___autoreleasing] = ACTIONS(1409), - [anon_sym___nullable] = ACTIONS(1409), - [anon_sym___nonnull] = ACTIONS(1409), - [anon_sym___strong] = ACTIONS(1409), - [anon_sym___weak] = ACTIONS(1409), - [anon_sym___bridge] = ACTIONS(1409), - [anon_sym___bridge_transfer] = ACTIONS(1409), - [anon_sym___bridge_retained] = ACTIONS(1409), - [anon_sym___unsafe_unretained] = ACTIONS(1409), - [anon_sym___block] = ACTIONS(1409), - [anon_sym___kindof] = ACTIONS(1409), - [anon_sym___unused] = ACTIONS(1409), - [anon_sym__Complex] = ACTIONS(1409), - [anon_sym___complex] = ACTIONS(1409), - [anon_sym_IBOutlet] = ACTIONS(1409), - [anon_sym_IBInspectable] = ACTIONS(1409), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1409), - [anon_sym_signed] = ACTIONS(1409), - [anon_sym_unsigned] = ACTIONS(1409), - [anon_sym_long] = ACTIONS(1409), - [anon_sym_short] = ACTIONS(1409), - [sym_primitive_type] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_NS_ENUM] = ACTIONS(1409), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1409), - [anon_sym_NS_OPTIONS] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), + [2712] = { + [sym_string_literal] = STATE(2715), + [aux_sym_concatenated_string_repeat1] = STATE(2715), + [sym_identifier] = ACTIONS(6777), + [anon_sym_COMMA] = ACTIONS(6779), + [anon_sym_RPAREN] = ACTIONS(6779), + [anon_sym_LPAREN2] = ACTIONS(6779), + [anon_sym_DASH] = ACTIONS(6777), + [anon_sym_PLUS] = ACTIONS(6777), + [anon_sym_STAR] = ACTIONS(6777), + [anon_sym_SLASH] = ACTIONS(6777), + [anon_sym_PERCENT] = ACTIONS(6777), + [anon_sym_PIPE_PIPE] = ACTIONS(6779), + [anon_sym_AMP_AMP] = ACTIONS(6779), + [anon_sym_PIPE] = ACTIONS(6777), + [anon_sym_CARET] = ACTIONS(6777), + [anon_sym_AMP] = ACTIONS(6777), + [anon_sym_EQ_EQ] = ACTIONS(6779), + [anon_sym_BANG_EQ] = ACTIONS(6779), + [anon_sym_GT] = ACTIONS(6777), + [anon_sym_GT_EQ] = ACTIONS(6779), + [anon_sym_LT_EQ] = ACTIONS(6779), + [anon_sym_LT] = ACTIONS(6777), + [anon_sym_LT_LT] = ACTIONS(6777), + [anon_sym_GT_GT] = ACTIONS(6777), + [anon_sym_SEMI] = ACTIONS(6779), + [anon_sym___attribute] = ACTIONS(6777), + [anon_sym___attribute__] = ACTIONS(6777), + [anon_sym_RBRACE] = ACTIONS(6779), + [anon_sym_LBRACK] = ACTIONS(6779), + [anon_sym_RBRACK] = ACTIONS(6779), + [anon_sym_EQ] = ACTIONS(6777), + [anon_sym_const] = ACTIONS(6777), + [anon_sym_volatile] = ACTIONS(6777), + [anon_sym_restrict] = ACTIONS(6777), + [anon_sym__Atomic] = ACTIONS(6777), + [anon_sym_in] = ACTIONS(6777), + [anon_sym_out] = ACTIONS(6777), + [anon_sym_inout] = ACTIONS(6777), + [anon_sym_bycopy] = ACTIONS(6777), + [anon_sym_byref] = ACTIONS(6777), + [anon_sym_oneway] = ACTIONS(6777), + [anon_sym__Nullable] = ACTIONS(6777), + [anon_sym__Nonnull] = ACTIONS(6777), + [anon_sym__Nullable_result] = ACTIONS(6777), + [anon_sym__Null_unspecified] = ACTIONS(6777), + [anon_sym___autoreleasing] = ACTIONS(6777), + [anon_sym___nullable] = ACTIONS(6777), + [anon_sym___nonnull] = ACTIONS(6777), + [anon_sym___strong] = ACTIONS(6777), + [anon_sym___weak] = ACTIONS(6777), + [anon_sym___bridge] = ACTIONS(6777), + [anon_sym___bridge_transfer] = ACTIONS(6777), + [anon_sym___bridge_retained] = ACTIONS(6777), + [anon_sym___unsafe_unretained] = ACTIONS(6777), + [anon_sym___block] = ACTIONS(6777), + [anon_sym___kindof] = ACTIONS(6777), + [anon_sym___unused] = ACTIONS(6777), + [anon_sym__Complex] = ACTIONS(6777), + [anon_sym___complex] = ACTIONS(6777), + [anon_sym_IBOutlet] = ACTIONS(6777), + [anon_sym_IBInspectable] = ACTIONS(6777), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6777), + [anon_sym_COLON] = ACTIONS(6779), + [anon_sym_QMARK] = ACTIONS(6779), + [anon_sym_STAR_EQ] = ACTIONS(6779), + [anon_sym_SLASH_EQ] = ACTIONS(6779), + [anon_sym_PERCENT_EQ] = ACTIONS(6779), + [anon_sym_PLUS_EQ] = ACTIONS(6779), + [anon_sym_DASH_EQ] = ACTIONS(6779), + [anon_sym_LT_LT_EQ] = ACTIONS(6779), + [anon_sym_GT_GT_EQ] = ACTIONS(6779), + [anon_sym_AMP_EQ] = ACTIONS(6779), + [anon_sym_CARET_EQ] = ACTIONS(6779), + [anon_sym_PIPE_EQ] = ACTIONS(6779), + [anon_sym_DASH_DASH] = ACTIONS(6779), + [anon_sym_PLUS_PLUS] = ACTIONS(6779), + [anon_sym_DOT] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(6779), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1409), - [anon_sym_ATend] = ACTIONS(1411), - [sym_optional] = ACTIONS(1411), - [sym_required] = ACTIONS(1411), - [anon_sym_ATproperty] = ACTIONS(1411), - [sym_method_attribute_specifier] = ACTIONS(1409), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1409), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1409), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1409), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1409), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1409), - [anon_sym_NS_AVAILABLE] = ACTIONS(1409), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1409), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_API_AVAILABLE] = ACTIONS(1409), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_API_DEPRECATED] = ACTIONS(1409), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1409), - [anon_sym___deprecated_msg] = ACTIONS(1409), - [anon_sym___deprecated_enum_msg] = ACTIONS(1409), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1409), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1409), - [anon_sym_ATsynthesize] = ACTIONS(1411), - [anon_sym_ATdynamic] = ACTIONS(1411), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___typeof] = ACTIONS(1409), - [anon_sym___typeof__] = ACTIONS(1409), - [sym_id] = ACTIONS(1409), - [sym_instancetype] = ACTIONS(1409), - [sym_Class] = ACTIONS(1409), - [sym_SEL] = ACTIONS(1409), - [sym_IMP] = ACTIONS(1409), - [sym_BOOL] = ACTIONS(1409), - [sym_auto] = ACTIONS(1409), + [sym_method_attribute_specifier] = ACTIONS(6777), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6777), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6777), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6777), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6777), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6777), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6777), + [anon_sym_NS_AVAILABLE] = ACTIONS(6777), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6777), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_API_AVAILABLE] = ACTIONS(6777), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6777), + [anon_sym_API_DEPRECATED] = ACTIONS(6777), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6777), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6777), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6777), + [anon_sym___deprecated_msg] = ACTIONS(6777), + [anon_sym___deprecated_enum_msg] = ACTIONS(6777), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6777), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6777), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6777), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6777), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -478855,112 +456878,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2890] = { - [sym_identifier] = ACTIONS(1447), - [aux_sym_preproc_def_token1] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_typedef] = ACTIONS(1447), - [anon_sym_extern] = ACTIONS(1447), - [anon_sym___attribute] = ACTIONS(1447), - [anon_sym___attribute__] = ACTIONS(1447), - [anon_sym___declspec] = ACTIONS(1447), - [anon_sym___cdecl] = ACTIONS(1447), - [anon_sym___clrcall] = ACTIONS(1447), - [anon_sym___stdcall] = ACTIONS(1447), - [anon_sym___fastcall] = ACTIONS(1447), - [anon_sym___thiscall] = ACTIONS(1447), - [anon_sym___vectorcall] = ACTIONS(1447), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_auto] = ACTIONS(1447), - [anon_sym_register] = ACTIONS(1447), - [anon_sym_inline] = ACTIONS(1447), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1447), - [anon_sym_const] = ACTIONS(1447), - [anon_sym_volatile] = ACTIONS(1447), - [anon_sym_restrict] = ACTIONS(1447), - [anon_sym__Atomic] = ACTIONS(1447), - [anon_sym_in] = ACTIONS(1447), - [anon_sym_out] = ACTIONS(1447), - [anon_sym_inout] = ACTIONS(1447), - [anon_sym_bycopy] = ACTIONS(1447), - [anon_sym_byref] = ACTIONS(1447), - [anon_sym_oneway] = ACTIONS(1447), - [anon_sym__Nullable] = ACTIONS(1447), - [anon_sym__Nonnull] = ACTIONS(1447), - [anon_sym__Nullable_result] = ACTIONS(1447), - [anon_sym__Null_unspecified] = ACTIONS(1447), - [anon_sym___autoreleasing] = ACTIONS(1447), - [anon_sym___nullable] = ACTIONS(1447), - [anon_sym___nonnull] = ACTIONS(1447), - [anon_sym___strong] = ACTIONS(1447), - [anon_sym___weak] = ACTIONS(1447), - [anon_sym___bridge] = ACTIONS(1447), - [anon_sym___bridge_transfer] = ACTIONS(1447), - [anon_sym___bridge_retained] = ACTIONS(1447), - [anon_sym___unsafe_unretained] = ACTIONS(1447), - [anon_sym___block] = ACTIONS(1447), - [anon_sym___kindof] = ACTIONS(1447), - [anon_sym___unused] = ACTIONS(1447), - [anon_sym__Complex] = ACTIONS(1447), - [anon_sym___complex] = ACTIONS(1447), - [anon_sym_IBOutlet] = ACTIONS(1447), - [anon_sym_IBInspectable] = ACTIONS(1447), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1447), - [anon_sym_signed] = ACTIONS(1447), - [anon_sym_unsigned] = ACTIONS(1447), - [anon_sym_long] = ACTIONS(1447), - [anon_sym_short] = ACTIONS(1447), - [sym_primitive_type] = ACTIONS(1447), - [anon_sym_enum] = ACTIONS(1447), - [anon_sym_NS_ENUM] = ACTIONS(1447), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1447), - [anon_sym_NS_OPTIONS] = ACTIONS(1447), - [anon_sym_struct] = ACTIONS(1447), - [anon_sym_union] = ACTIONS(1447), + [2713] = { + [sym_generic_type_references] = STATE(2750), + [sym_identifier] = ACTIONS(6781), + [aux_sym_preproc_def_token1] = ACTIONS(6783), + [anon_sym_DASH] = ACTIONS(6783), + [anon_sym_PLUS] = ACTIONS(6783), + [anon_sym_LT] = ACTIONS(6785), + [anon_sym_typedef] = ACTIONS(6781), + [anon_sym_extern] = ACTIONS(6781), + [anon_sym___attribute] = ACTIONS(6781), + [anon_sym___attribute__] = ACTIONS(6781), + [anon_sym___declspec] = ACTIONS(6781), + [anon_sym___cdecl] = ACTIONS(6781), + [anon_sym___clrcall] = ACTIONS(6781), + [anon_sym___stdcall] = ACTIONS(6781), + [anon_sym___fastcall] = ACTIONS(6781), + [anon_sym___thiscall] = ACTIONS(6781), + [anon_sym___vectorcall] = ACTIONS(6781), + [anon_sym_LBRACE] = ACTIONS(6783), + [anon_sym_static] = ACTIONS(6781), + [anon_sym_auto] = ACTIONS(6781), + [anon_sym_register] = ACTIONS(6781), + [anon_sym_inline] = ACTIONS(6781), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6781), + [anon_sym_const] = ACTIONS(6781), + [anon_sym_volatile] = ACTIONS(6781), + [anon_sym_restrict] = ACTIONS(6781), + [anon_sym__Atomic] = ACTIONS(6781), + [anon_sym_in] = ACTIONS(6781), + [anon_sym_out] = ACTIONS(6781), + [anon_sym_inout] = ACTIONS(6781), + [anon_sym_bycopy] = ACTIONS(6781), + [anon_sym_byref] = ACTIONS(6781), + [anon_sym_oneway] = ACTIONS(6781), + [anon_sym__Nullable] = ACTIONS(6781), + [anon_sym__Nonnull] = ACTIONS(6781), + [anon_sym__Nullable_result] = ACTIONS(6781), + [anon_sym__Null_unspecified] = ACTIONS(6781), + [anon_sym___autoreleasing] = ACTIONS(6781), + [anon_sym___nullable] = ACTIONS(6781), + [anon_sym___nonnull] = ACTIONS(6781), + [anon_sym___strong] = ACTIONS(6781), + [anon_sym___weak] = ACTIONS(6781), + [anon_sym___bridge] = ACTIONS(6781), + [anon_sym___bridge_transfer] = ACTIONS(6781), + [anon_sym___bridge_retained] = ACTIONS(6781), + [anon_sym___unsafe_unretained] = ACTIONS(6781), + [anon_sym___block] = ACTIONS(6781), + [anon_sym___kindof] = ACTIONS(6781), + [anon_sym___unused] = ACTIONS(6781), + [anon_sym__Complex] = ACTIONS(6781), + [anon_sym___complex] = ACTIONS(6781), + [anon_sym_IBOutlet] = ACTIONS(6781), + [anon_sym_IBInspectable] = ACTIONS(6781), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6781), + [anon_sym_signed] = ACTIONS(6781), + [anon_sym_unsigned] = ACTIONS(6781), + [anon_sym_long] = ACTIONS(6781), + [anon_sym_short] = ACTIONS(6781), + [sym_primitive_type] = ACTIONS(6781), + [anon_sym_enum] = ACTIONS(6781), + [anon_sym_COLON] = ACTIONS(6783), + [anon_sym_struct] = ACTIONS(6781), + [anon_sym_union] = ACTIONS(6781), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1447), - [anon_sym_ATend] = ACTIONS(1445), - [sym_optional] = ACTIONS(1445), - [sym_required] = ACTIONS(1445), - [anon_sym_ATproperty] = ACTIONS(1445), - [sym_method_attribute_specifier] = ACTIONS(1447), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1447), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1447), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1447), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1447), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1447), - [anon_sym_NS_AVAILABLE] = ACTIONS(1447), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1447), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_API_AVAILABLE] = ACTIONS(1447), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_API_DEPRECATED] = ACTIONS(1447), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1447), - [anon_sym___deprecated_msg] = ACTIONS(1447), - [anon_sym___deprecated_enum_msg] = ACTIONS(1447), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1447), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1447), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1447), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1447), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1447), - [anon_sym_ATsynthesize] = ACTIONS(1445), - [anon_sym_ATdynamic] = ACTIONS(1445), - [anon_sym_typeof] = ACTIONS(1447), - [anon_sym___typeof] = ACTIONS(1447), - [anon_sym___typeof__] = ACTIONS(1447), - [sym_id] = ACTIONS(1447), - [sym_instancetype] = ACTIONS(1447), - [sym_Class] = ACTIONS(1447), - [sym_SEL] = ACTIONS(1447), - [sym_IMP] = ACTIONS(1447), - [sym_BOOL] = ACTIONS(1447), - [sym_auto] = ACTIONS(1447), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6781), + [anon_sym_ATend] = ACTIONS(6783), + [sym_optional] = ACTIONS(6783), + [sym_required] = ACTIONS(6783), + [anon_sym_ATproperty] = ACTIONS(6783), + [sym_method_attribute_specifier] = ACTIONS(6781), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6781), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6781), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6781), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6781), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6781), + [anon_sym_NS_AVAILABLE] = ACTIONS(6781), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6781), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_API_AVAILABLE] = ACTIONS(6781), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_API_DEPRECATED] = ACTIONS(6781), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6781), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6781), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6781), + [anon_sym___deprecated_msg] = ACTIONS(6781), + [anon_sym___deprecated_enum_msg] = ACTIONS(6781), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6781), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6781), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6781), + [anon_sym_ATsynthesize] = ACTIONS(6783), + [anon_sym_ATdynamic] = ACTIONS(6783), + [anon_sym_NS_ENUM] = ACTIONS(6781), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(6781), + [anon_sym_NS_OPTIONS] = ACTIONS(6781), + [anon_sym_typeof] = ACTIONS(6781), + [anon_sym___typeof] = ACTIONS(6781), + [anon_sym___typeof__] = ACTIONS(6781), + [sym_id] = ACTIONS(6781), + [sym_instancetype] = ACTIONS(6781), + [sym_Class] = ACTIONS(6781), + [sym_SEL] = ACTIONS(6781), + [sym_IMP] = ACTIONS(6781), + [sym_BOOL] = ACTIONS(6781), + [sym_auto] = ACTIONS(6781), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -478968,112 +456995,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2891] = { - [sym_identifier] = ACTIONS(1413), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym___attribute] = ACTIONS(1413), - [anon_sym___attribute__] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1413), - [anon_sym___cdecl] = ACTIONS(1413), - [anon_sym___clrcall] = ACTIONS(1413), - [anon_sym___stdcall] = ACTIONS(1413), - [anon_sym___fastcall] = ACTIONS(1413), - [anon_sym___thiscall] = ACTIONS(1413), - [anon_sym___vectorcall] = ACTIONS(1413), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_auto] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_inline] = ACTIONS(1413), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_volatile] = ACTIONS(1413), - [anon_sym_restrict] = ACTIONS(1413), - [anon_sym__Atomic] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_out] = ACTIONS(1413), - [anon_sym_inout] = ACTIONS(1413), - [anon_sym_bycopy] = ACTIONS(1413), - [anon_sym_byref] = ACTIONS(1413), - [anon_sym_oneway] = ACTIONS(1413), - [anon_sym__Nullable] = ACTIONS(1413), - [anon_sym__Nonnull] = ACTIONS(1413), - [anon_sym__Nullable_result] = ACTIONS(1413), - [anon_sym__Null_unspecified] = ACTIONS(1413), - [anon_sym___autoreleasing] = ACTIONS(1413), - [anon_sym___nullable] = ACTIONS(1413), - [anon_sym___nonnull] = ACTIONS(1413), - [anon_sym___strong] = ACTIONS(1413), - [anon_sym___weak] = ACTIONS(1413), - [anon_sym___bridge] = ACTIONS(1413), - [anon_sym___bridge_transfer] = ACTIONS(1413), - [anon_sym___bridge_retained] = ACTIONS(1413), - [anon_sym___unsafe_unretained] = ACTIONS(1413), - [anon_sym___block] = ACTIONS(1413), - [anon_sym___kindof] = ACTIONS(1413), - [anon_sym___unused] = ACTIONS(1413), - [anon_sym__Complex] = ACTIONS(1413), - [anon_sym___complex] = ACTIONS(1413), - [anon_sym_IBOutlet] = ACTIONS(1413), - [anon_sym_IBInspectable] = ACTIONS(1413), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1413), - [anon_sym_unsigned] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [sym_primitive_type] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_NS_ENUM] = ACTIONS(1413), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1413), - [anon_sym_NS_OPTIONS] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), + [2714] = { + [sym__declaration_specifiers] = STATE(4728), + [sym_attribute_specifier] = STATE(3307), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4345), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_typedef] = ACTIONS(6787), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1413), - [anon_sym_ATend] = ACTIONS(1415), - [sym_optional] = ACTIONS(1415), - [sym_required] = ACTIONS(1415), - [anon_sym_ATproperty] = ACTIONS(1415), - [sym_method_attribute_specifier] = ACTIONS(1413), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1413), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE] = ACTIONS(1413), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_API_AVAILABLE] = ACTIONS(1413), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_API_DEPRECATED] = ACTIONS(1413), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1413), - [anon_sym___deprecated_msg] = ACTIONS(1413), - [anon_sym___deprecated_enum_msg] = ACTIONS(1413), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1413), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1413), - [anon_sym_ATsynthesize] = ACTIONS(1415), - [anon_sym_ATdynamic] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym___typeof] = ACTIONS(1413), - [anon_sym___typeof__] = ACTIONS(1413), - [sym_id] = ACTIONS(1413), - [sym_instancetype] = ACTIONS(1413), - [sym_Class] = ACTIONS(1413), - [sym_SEL] = ACTIONS(1413), - [sym_IMP] = ACTIONS(1413), - [sym_BOOL] = ACTIONS(1413), - [sym_auto] = ACTIONS(1413), + [anon_sym_ATprotocol] = ACTIONS(6789), + [anon_sym_ATinterface] = ACTIONS(6791), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -479081,112 +457112,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2892] = { - [sym_identifier] = ACTIONS(1585), - [aux_sym_preproc_def_token1] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_typedef] = ACTIONS(1585), - [anon_sym_extern] = ACTIONS(1585), - [anon_sym___attribute] = ACTIONS(1585), - [anon_sym___attribute__] = ACTIONS(1585), - [anon_sym___declspec] = ACTIONS(1585), - [anon_sym___cdecl] = ACTIONS(1585), - [anon_sym___clrcall] = ACTIONS(1585), - [anon_sym___stdcall] = ACTIONS(1585), - [anon_sym___fastcall] = ACTIONS(1585), - [anon_sym___thiscall] = ACTIONS(1585), - [anon_sym___vectorcall] = ACTIONS(1585), - [anon_sym_static] = ACTIONS(1585), - [anon_sym_auto] = ACTIONS(1585), - [anon_sym_register] = ACTIONS(1585), - [anon_sym_inline] = ACTIONS(1585), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1585), - [anon_sym_volatile] = ACTIONS(1585), - [anon_sym_restrict] = ACTIONS(1585), - [anon_sym__Atomic] = ACTIONS(1585), - [anon_sym_in] = ACTIONS(1585), - [anon_sym_out] = ACTIONS(1585), - [anon_sym_inout] = ACTIONS(1585), - [anon_sym_bycopy] = ACTIONS(1585), - [anon_sym_byref] = ACTIONS(1585), - [anon_sym_oneway] = ACTIONS(1585), - [anon_sym__Nullable] = ACTIONS(1585), - [anon_sym__Nonnull] = ACTIONS(1585), - [anon_sym__Nullable_result] = ACTIONS(1585), - [anon_sym__Null_unspecified] = ACTIONS(1585), - [anon_sym___autoreleasing] = ACTIONS(1585), - [anon_sym___nullable] = ACTIONS(1585), - [anon_sym___nonnull] = ACTIONS(1585), - [anon_sym___strong] = ACTIONS(1585), - [anon_sym___weak] = ACTIONS(1585), - [anon_sym___bridge] = ACTIONS(1585), - [anon_sym___bridge_transfer] = ACTIONS(1585), - [anon_sym___bridge_retained] = ACTIONS(1585), - [anon_sym___unsafe_unretained] = ACTIONS(1585), - [anon_sym___block] = ACTIONS(1585), - [anon_sym___kindof] = ACTIONS(1585), - [anon_sym___unused] = ACTIONS(1585), - [anon_sym__Complex] = ACTIONS(1585), - [anon_sym___complex] = ACTIONS(1585), - [anon_sym_IBOutlet] = ACTIONS(1585), - [anon_sym_IBInspectable] = ACTIONS(1585), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1585), - [anon_sym_signed] = ACTIONS(1585), - [anon_sym_unsigned] = ACTIONS(1585), - [anon_sym_long] = ACTIONS(1585), - [anon_sym_short] = ACTIONS(1585), - [sym_primitive_type] = ACTIONS(1585), - [anon_sym_enum] = ACTIONS(1585), - [anon_sym_NS_ENUM] = ACTIONS(1585), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1585), - [anon_sym_NS_OPTIONS] = ACTIONS(1585), - [anon_sym_struct] = ACTIONS(1585), - [anon_sym_union] = ACTIONS(1585), + [2715] = { + [sym_string_literal] = STATE(2711), + [aux_sym_concatenated_string_repeat1] = STATE(2711), + [sym_identifier] = ACTIONS(6793), + [anon_sym_COMMA] = ACTIONS(6795), + [anon_sym_RPAREN] = ACTIONS(6795), + [anon_sym_LPAREN2] = ACTIONS(6795), + [anon_sym_DASH] = ACTIONS(6793), + [anon_sym_PLUS] = ACTIONS(6793), + [anon_sym_STAR] = ACTIONS(6793), + [anon_sym_SLASH] = ACTIONS(6793), + [anon_sym_PERCENT] = ACTIONS(6793), + [anon_sym_PIPE_PIPE] = ACTIONS(6795), + [anon_sym_AMP_AMP] = ACTIONS(6795), + [anon_sym_PIPE] = ACTIONS(6793), + [anon_sym_CARET] = ACTIONS(6793), + [anon_sym_AMP] = ACTIONS(6793), + [anon_sym_EQ_EQ] = ACTIONS(6795), + [anon_sym_BANG_EQ] = ACTIONS(6795), + [anon_sym_GT] = ACTIONS(6793), + [anon_sym_GT_EQ] = ACTIONS(6795), + [anon_sym_LT_EQ] = ACTIONS(6795), + [anon_sym_LT] = ACTIONS(6793), + [anon_sym_LT_LT] = ACTIONS(6793), + [anon_sym_GT_GT] = ACTIONS(6793), + [anon_sym_SEMI] = ACTIONS(6795), + [anon_sym___attribute] = ACTIONS(6793), + [anon_sym___attribute__] = ACTIONS(6793), + [anon_sym_RBRACE] = ACTIONS(6795), + [anon_sym_LBRACK] = ACTIONS(6795), + [anon_sym_RBRACK] = ACTIONS(6795), + [anon_sym_EQ] = ACTIONS(6793), + [anon_sym_const] = ACTIONS(6793), + [anon_sym_volatile] = ACTIONS(6793), + [anon_sym_restrict] = ACTIONS(6793), + [anon_sym__Atomic] = ACTIONS(6793), + [anon_sym_in] = ACTIONS(6793), + [anon_sym_out] = ACTIONS(6793), + [anon_sym_inout] = ACTIONS(6793), + [anon_sym_bycopy] = ACTIONS(6793), + [anon_sym_byref] = ACTIONS(6793), + [anon_sym_oneway] = ACTIONS(6793), + [anon_sym__Nullable] = ACTIONS(6793), + [anon_sym__Nonnull] = ACTIONS(6793), + [anon_sym__Nullable_result] = ACTIONS(6793), + [anon_sym__Null_unspecified] = ACTIONS(6793), + [anon_sym___autoreleasing] = ACTIONS(6793), + [anon_sym___nullable] = ACTIONS(6793), + [anon_sym___nonnull] = ACTIONS(6793), + [anon_sym___strong] = ACTIONS(6793), + [anon_sym___weak] = ACTIONS(6793), + [anon_sym___bridge] = ACTIONS(6793), + [anon_sym___bridge_transfer] = ACTIONS(6793), + [anon_sym___bridge_retained] = ACTIONS(6793), + [anon_sym___unsafe_unretained] = ACTIONS(6793), + [anon_sym___block] = ACTIONS(6793), + [anon_sym___kindof] = ACTIONS(6793), + [anon_sym___unused] = ACTIONS(6793), + [anon_sym__Complex] = ACTIONS(6793), + [anon_sym___complex] = ACTIONS(6793), + [anon_sym_IBOutlet] = ACTIONS(6793), + [anon_sym_IBInspectable] = ACTIONS(6793), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6793), + [anon_sym_COLON] = ACTIONS(6795), + [anon_sym_QMARK] = ACTIONS(6795), + [anon_sym_STAR_EQ] = ACTIONS(6795), + [anon_sym_SLASH_EQ] = ACTIONS(6795), + [anon_sym_PERCENT_EQ] = ACTIONS(6795), + [anon_sym_PLUS_EQ] = ACTIONS(6795), + [anon_sym_DASH_EQ] = ACTIONS(6795), + [anon_sym_LT_LT_EQ] = ACTIONS(6795), + [anon_sym_GT_GT_EQ] = ACTIONS(6795), + [anon_sym_AMP_EQ] = ACTIONS(6795), + [anon_sym_CARET_EQ] = ACTIONS(6795), + [anon_sym_PIPE_EQ] = ACTIONS(6795), + [anon_sym_DASH_DASH] = ACTIONS(6795), + [anon_sym_PLUS_PLUS] = ACTIONS(6795), + [anon_sym_DOT] = ACTIONS(6795), + [anon_sym_DASH_GT] = ACTIONS(6795), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1585), - [anon_sym_ATend] = ACTIONS(1587), - [sym_optional] = ACTIONS(1587), - [sym_required] = ACTIONS(1587), - [anon_sym_ATproperty] = ACTIONS(1587), - [sym_method_attribute_specifier] = ACTIONS(1585), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1585), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1585), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1585), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1585), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1585), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1585), - [anon_sym_NS_AVAILABLE] = ACTIONS(1585), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1585), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1585), - [anon_sym_API_AVAILABLE] = ACTIONS(1585), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1585), - [anon_sym_API_DEPRECATED] = ACTIONS(1585), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1585), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1585), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1585), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1585), - [anon_sym___deprecated_msg] = ACTIONS(1585), - [anon_sym___deprecated_enum_msg] = ACTIONS(1585), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1585), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1585), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1585), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1585), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1585), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1585), - [anon_sym_ATsynthesize] = ACTIONS(1587), - [anon_sym_ATdynamic] = ACTIONS(1587), - [anon_sym_typeof] = ACTIONS(1585), - [anon_sym___typeof] = ACTIONS(1585), - [anon_sym___typeof__] = ACTIONS(1585), - [sym_id] = ACTIONS(1585), - [sym_instancetype] = ACTIONS(1585), - [sym_Class] = ACTIONS(1585), - [sym_SEL] = ACTIONS(1585), - [sym_IMP] = ACTIONS(1585), - [sym_BOOL] = ACTIONS(1585), - [sym_auto] = ACTIONS(1585), + [sym_method_attribute_specifier] = ACTIONS(6793), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6793), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6793), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6793), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6793), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6793), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6793), + [anon_sym_NS_AVAILABLE] = ACTIONS(6793), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6793), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6793), + [anon_sym_API_AVAILABLE] = ACTIONS(6793), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6793), + [anon_sym_API_DEPRECATED] = ACTIONS(6793), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6793), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6793), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6793), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6793), + [anon_sym___deprecated_msg] = ACTIONS(6793), + [anon_sym___deprecated_enum_msg] = ACTIONS(6793), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6793), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6793), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6793), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6793), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6793), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6793), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -479194,112 +457229,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2893] = { - [sym_identifier] = ACTIONS(1413), - [aux_sym_preproc_def_token1] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1415), - [anon_sym_typedef] = ACTIONS(1413), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym___attribute] = ACTIONS(1413), - [anon_sym___attribute__] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(1413), - [anon_sym___cdecl] = ACTIONS(1413), - [anon_sym___clrcall] = ACTIONS(1413), - [anon_sym___stdcall] = ACTIONS(1413), - [anon_sym___fastcall] = ACTIONS(1413), - [anon_sym___thiscall] = ACTIONS(1413), - [anon_sym___vectorcall] = ACTIONS(1413), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_auto] = ACTIONS(1413), - [anon_sym_register] = ACTIONS(1413), - [anon_sym_inline] = ACTIONS(1413), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_volatile] = ACTIONS(1413), - [anon_sym_restrict] = ACTIONS(1413), - [anon_sym__Atomic] = ACTIONS(1413), - [anon_sym_in] = ACTIONS(1413), - [anon_sym_out] = ACTIONS(1413), - [anon_sym_inout] = ACTIONS(1413), - [anon_sym_bycopy] = ACTIONS(1413), - [anon_sym_byref] = ACTIONS(1413), - [anon_sym_oneway] = ACTIONS(1413), - [anon_sym__Nullable] = ACTIONS(1413), - [anon_sym__Nonnull] = ACTIONS(1413), - [anon_sym__Nullable_result] = ACTIONS(1413), - [anon_sym__Null_unspecified] = ACTIONS(1413), - [anon_sym___autoreleasing] = ACTIONS(1413), - [anon_sym___nullable] = ACTIONS(1413), - [anon_sym___nonnull] = ACTIONS(1413), - [anon_sym___strong] = ACTIONS(1413), - [anon_sym___weak] = ACTIONS(1413), - [anon_sym___bridge] = ACTIONS(1413), - [anon_sym___bridge_transfer] = ACTIONS(1413), - [anon_sym___bridge_retained] = ACTIONS(1413), - [anon_sym___unsafe_unretained] = ACTIONS(1413), - [anon_sym___block] = ACTIONS(1413), - [anon_sym___kindof] = ACTIONS(1413), - [anon_sym___unused] = ACTIONS(1413), - [anon_sym__Complex] = ACTIONS(1413), - [anon_sym___complex] = ACTIONS(1413), - [anon_sym_IBOutlet] = ACTIONS(1413), - [anon_sym_IBInspectable] = ACTIONS(1413), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1413), - [anon_sym_signed] = ACTIONS(1413), - [anon_sym_unsigned] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [sym_primitive_type] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_NS_ENUM] = ACTIONS(1413), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1413), - [anon_sym_NS_OPTIONS] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), + [2716] = { + [sym__declaration_specifiers] = STATE(4714), + [sym_attribute_specifier] = STATE(3306), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_function_declarator_repeat1] = STATE(4356), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_typedef] = ACTIONS(6797), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1413), - [anon_sym_ATend] = ACTIONS(1415), - [sym_optional] = ACTIONS(1415), - [sym_required] = ACTIONS(1415), - [anon_sym_ATproperty] = ACTIONS(1415), - [sym_method_attribute_specifier] = ACTIONS(1413), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1413), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1413), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE] = ACTIONS(1413), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1413), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_API_AVAILABLE] = ACTIONS(1413), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_API_DEPRECATED] = ACTIONS(1413), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1413), - [anon_sym___deprecated_msg] = ACTIONS(1413), - [anon_sym___deprecated_enum_msg] = ACTIONS(1413), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1413), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1413), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1413), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1413), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1413), - [anon_sym_ATsynthesize] = ACTIONS(1415), - [anon_sym_ATdynamic] = ACTIONS(1415), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym___typeof] = ACTIONS(1413), - [anon_sym___typeof__] = ACTIONS(1413), - [sym_id] = ACTIONS(1413), - [sym_instancetype] = ACTIONS(1413), - [sym_Class] = ACTIONS(1413), - [sym_SEL] = ACTIONS(1413), - [sym_IMP] = ACTIONS(1413), - [sym_BOOL] = ACTIONS(1413), - [sym_auto] = ACTIONS(1413), + [anon_sym_ATprotocol] = ACTIONS(6799), + [anon_sym_ATinterface] = ACTIONS(6801), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -479307,112 +457346,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2894] = { - [sym_identifier] = ACTIONS(1409), - [aux_sym_preproc_def_token1] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_typedef] = ACTIONS(1409), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym___attribute] = ACTIONS(1409), - [anon_sym___attribute__] = ACTIONS(1409), - [anon_sym___declspec] = ACTIONS(1409), - [anon_sym___cdecl] = ACTIONS(1409), - [anon_sym___clrcall] = ACTIONS(1409), - [anon_sym___stdcall] = ACTIONS(1409), - [anon_sym___fastcall] = ACTIONS(1409), - [anon_sym___thiscall] = ACTIONS(1409), - [anon_sym___vectorcall] = ACTIONS(1409), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_auto] = ACTIONS(1409), - [anon_sym_register] = ACTIONS(1409), - [anon_sym_inline] = ACTIONS(1409), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_volatile] = ACTIONS(1409), - [anon_sym_restrict] = ACTIONS(1409), - [anon_sym__Atomic] = ACTIONS(1409), - [anon_sym_in] = ACTIONS(1409), - [anon_sym_out] = ACTIONS(1409), - [anon_sym_inout] = ACTIONS(1409), - [anon_sym_bycopy] = ACTIONS(1409), - [anon_sym_byref] = ACTIONS(1409), - [anon_sym_oneway] = ACTIONS(1409), - [anon_sym__Nullable] = ACTIONS(1409), - [anon_sym__Nonnull] = ACTIONS(1409), - [anon_sym__Nullable_result] = ACTIONS(1409), - [anon_sym__Null_unspecified] = ACTIONS(1409), - [anon_sym___autoreleasing] = ACTIONS(1409), - [anon_sym___nullable] = ACTIONS(1409), - [anon_sym___nonnull] = ACTIONS(1409), - [anon_sym___strong] = ACTIONS(1409), - [anon_sym___weak] = ACTIONS(1409), - [anon_sym___bridge] = ACTIONS(1409), - [anon_sym___bridge_transfer] = ACTIONS(1409), - [anon_sym___bridge_retained] = ACTIONS(1409), - [anon_sym___unsafe_unretained] = ACTIONS(1409), - [anon_sym___block] = ACTIONS(1409), - [anon_sym___kindof] = ACTIONS(1409), - [anon_sym___unused] = ACTIONS(1409), - [anon_sym__Complex] = ACTIONS(1409), - [anon_sym___complex] = ACTIONS(1409), - [anon_sym_IBOutlet] = ACTIONS(1409), - [anon_sym_IBInspectable] = ACTIONS(1409), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1409), - [anon_sym_signed] = ACTIONS(1409), - [anon_sym_unsigned] = ACTIONS(1409), - [anon_sym_long] = ACTIONS(1409), - [anon_sym_short] = ACTIONS(1409), - [sym_primitive_type] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_NS_ENUM] = ACTIONS(1409), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1409), - [anon_sym_NS_OPTIONS] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), + [2717] = { + [sym__declaration_specifiers] = STATE(3908), + [sym_attribute_specifier] = STATE(2946), + [sym_ms_declspec_modifier] = STATE(2946), + [sym_storage_class_specifier] = STATE(2946), + [sym_type_qualifier] = STATE(2946), + [sym__type_specifier] = STATE(3346), + [sym_sized_type_specifier] = STATE(3346), + [sym_enum_specifier] = STATE(3346), + [sym_struct_specifier] = STATE(3346), + [sym_union_specifier] = STATE(3346), + [sym_macro_type_specifier] = STATE(3346), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym__argument_type_declarator] = STATE(5370), + [sym_ns_enum_specifier] = STATE(3346), + [sym_typeof_specifier] = STATE(3346), + [sym_atomic_specifier] = STATE(3346), + [sym_generic_type_specifier] = STATE(3346), + [aux_sym__declaration_specifiers_repeat1] = STATE(2946), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(6803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1409), - [anon_sym_ATend] = ACTIONS(1411), - [sym_optional] = ACTIONS(1411), - [sym_required] = ACTIONS(1411), - [anon_sym_ATproperty] = ACTIONS(1411), - [sym_method_attribute_specifier] = ACTIONS(1409), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1409), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1409), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1409), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1409), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1409), - [anon_sym_NS_AVAILABLE] = ACTIONS(1409), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1409), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_API_AVAILABLE] = ACTIONS(1409), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_API_DEPRECATED] = ACTIONS(1409), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1409), - [anon_sym___deprecated_msg] = ACTIONS(1409), - [anon_sym___deprecated_enum_msg] = ACTIONS(1409), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1409), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1409), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1409), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1409), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1409), - [anon_sym_ATsynthesize] = ACTIONS(1411), - [anon_sym_ATdynamic] = ACTIONS(1411), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___typeof] = ACTIONS(1409), - [anon_sym___typeof__] = ACTIONS(1409), - [sym_id] = ACTIONS(1409), - [sym_instancetype] = ACTIONS(1409), - [sym_Class] = ACTIONS(1409), - [sym_SEL] = ACTIONS(1409), - [sym_IMP] = ACTIONS(1409), - [sym_BOOL] = ACTIONS(1409), - [sym_auto] = ACTIONS(1409), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_nonnull] = ACTIONS(6805), + [sym_nullable] = ACTIONS(6805), + [anon_sym_NS_NOESCAPE] = ACTIONS(6807), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(6803), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(6803), + [sym_IMP] = ACTIONS(6803), + [sym_BOOL] = ACTIONS(6803), + [sym_auto] = ACTIONS(6803), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -479420,109 +457463,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2895] = { - [sym_type_qualifier] = STATE(3454), - [sym__expression] = STATE(4526), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_type_definition_repeat1] = STATE(3454), - [sym_identifier] = ACTIONS(129), + [2718] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(420), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(23), [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(6924), + [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(6926), - [anon_sym_const] = ACTIONS(6922), - [anon_sym_volatile] = ACTIONS(6922), - [anon_sym_restrict] = ACTIONS(6922), - [anon_sym__Atomic] = ACTIONS(6922), - [anon_sym_in] = ACTIONS(6922), - [anon_sym_out] = ACTIONS(6922), - [anon_sym_inout] = ACTIONS(6922), - [anon_sym_bycopy] = ACTIONS(6922), - [anon_sym_byref] = ACTIONS(6922), - [anon_sym_oneway] = ACTIONS(6922), - [anon_sym__Nullable] = ACTIONS(6922), - [anon_sym__Nonnull] = ACTIONS(6922), - [anon_sym__Nullable_result] = ACTIONS(6922), - [anon_sym__Null_unspecified] = ACTIONS(6922), - [anon_sym___autoreleasing] = ACTIONS(6922), - [anon_sym___nullable] = ACTIONS(6922), - [anon_sym___nonnull] = ACTIONS(6922), - [anon_sym___strong] = ACTIONS(6922), - [anon_sym___weak] = ACTIONS(6922), - [anon_sym___bridge] = ACTIONS(6922), - [anon_sym___bridge_transfer] = ACTIONS(6922), - [anon_sym___bridge_retained] = ACTIONS(6922), - [anon_sym___unsafe_unretained] = ACTIONS(6922), - [anon_sym___block] = ACTIONS(6922), - [anon_sym___kindof] = ACTIONS(6922), - [anon_sym___unused] = ACTIONS(6922), - [anon_sym__Complex] = ACTIONS(6922), - [anon_sym___complex] = ACTIONS(6922), - [anon_sym_IBOutlet] = ACTIONS(6922), - [anon_sym_IBInspectable] = ACTIONS(6922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6922), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -479533,26 +457579,11148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2896] = { - [sym__declaration_specifiers] = STATE(3950), - [sym_attribute_specifier] = STATE(3013), - [sym_ms_declspec_modifier] = STATE(3013), - [sym_storage_class_specifier] = STATE(3013), - [sym_type_qualifier] = STATE(3013), - [sym__type_specifier] = STATE(3410), - [sym_sized_type_specifier] = STATE(3410), - [sym_enum_specifier] = STATE(3410), - [sym_struct_specifier] = STATE(3410), - [sym_union_specifier] = STATE(3410), - [sym_macro_type_specifier] = STATE(3410), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3410), - [sym_atomic_specifier] = STATE(3410), - [sym_generic_type_specifier] = STATE(3410), - [aux_sym__declaration_specifiers_repeat1] = STATE(3013), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), + [2719] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(335), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2720] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(105), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2721] = { + [sym_protocol_qualifiers] = STATE(3341), + [sym_generic_type_references] = STATE(3341), + [aux_sym_generic_type_specifier_repeat1] = STATE(3341), + [sym_identifier] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6779), + [anon_sym_LPAREN2] = ACTIONS(6815), + [anon_sym_DASH] = ACTIONS(6777), + [anon_sym_PLUS] = ACTIONS(6777), + [anon_sym_STAR] = ACTIONS(6819), + [anon_sym_SLASH] = ACTIONS(6777), + [anon_sym_PERCENT] = ACTIONS(6777), + [anon_sym_PIPE_PIPE] = ACTIONS(6779), + [anon_sym_AMP_AMP] = ACTIONS(6779), + [anon_sym_PIPE] = ACTIONS(6777), + [anon_sym_CARET] = ACTIONS(6777), + [anon_sym_AMP] = ACTIONS(6777), + [anon_sym_EQ_EQ] = ACTIONS(6779), + [anon_sym_BANG_EQ] = ACTIONS(6779), + [anon_sym_GT] = ACTIONS(6777), + [anon_sym_GT_EQ] = ACTIONS(6779), + [anon_sym_LT_EQ] = ACTIONS(6779), + [anon_sym_LT] = ACTIONS(6822), + [anon_sym_LT_LT] = ACTIONS(6777), + [anon_sym_GT_GT] = ACTIONS(6777), + [anon_sym_SEMI] = ACTIONS(6825), + [anon_sym_extern] = ACTIONS(6813), + [anon_sym___attribute] = ACTIONS(6813), + [anon_sym___attribute__] = ACTIONS(6813), + [anon_sym___declspec] = ACTIONS(6813), + [anon_sym___based] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6779), + [anon_sym_EQ] = ACTIONS(6828), + [anon_sym_static] = ACTIONS(6813), + [anon_sym_auto] = ACTIONS(6813), + [anon_sym_register] = ACTIONS(6813), + [anon_sym_inline] = ACTIONS(6813), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6813), + [anon_sym_const] = ACTIONS(6813), + [anon_sym_volatile] = ACTIONS(6813), + [anon_sym_restrict] = ACTIONS(6813), + [anon_sym__Atomic] = ACTIONS(6813), + [anon_sym_in] = ACTIONS(6813), + [anon_sym_out] = ACTIONS(6813), + [anon_sym_inout] = ACTIONS(6813), + [anon_sym_bycopy] = ACTIONS(6813), + [anon_sym_byref] = ACTIONS(6813), + [anon_sym_oneway] = ACTIONS(6813), + [anon_sym__Nullable] = ACTIONS(6813), + [anon_sym__Nonnull] = ACTIONS(6813), + [anon_sym__Nullable_result] = ACTIONS(6813), + [anon_sym__Null_unspecified] = ACTIONS(6813), + [anon_sym___autoreleasing] = ACTIONS(6813), + [anon_sym___nullable] = ACTIONS(6813), + [anon_sym___nonnull] = ACTIONS(6813), + [anon_sym___strong] = ACTIONS(6813), + [anon_sym___weak] = ACTIONS(6813), + [anon_sym___bridge] = ACTIONS(6813), + [anon_sym___bridge_transfer] = ACTIONS(6813), + [anon_sym___bridge_retained] = ACTIONS(6813), + [anon_sym___unsafe_unretained] = ACTIONS(6813), + [anon_sym___block] = ACTIONS(6813), + [anon_sym___kindof] = ACTIONS(6813), + [anon_sym___unused] = ACTIONS(6813), + [anon_sym__Complex] = ACTIONS(6813), + [anon_sym___complex] = ACTIONS(6813), + [anon_sym_IBOutlet] = ACTIONS(6813), + [anon_sym_IBInspectable] = ACTIONS(6813), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6813), + [anon_sym_COLON] = ACTIONS(6830), + [anon_sym_QMARK] = ACTIONS(6779), + [anon_sym_STAR_EQ] = ACTIONS(6832), + [anon_sym_SLASH_EQ] = ACTIONS(6832), + [anon_sym_PERCENT_EQ] = ACTIONS(6832), + [anon_sym_PLUS_EQ] = ACTIONS(6832), + [anon_sym_DASH_EQ] = ACTIONS(6832), + [anon_sym_LT_LT_EQ] = ACTIONS(6832), + [anon_sym_GT_GT_EQ] = ACTIONS(6832), + [anon_sym_AMP_EQ] = ACTIONS(6832), + [anon_sym_CARET_EQ] = ACTIONS(6832), + [anon_sym_PIPE_EQ] = ACTIONS(6832), + [anon_sym_DASH_DASH] = ACTIONS(6779), + [anon_sym_PLUS_PLUS] = ACTIONS(6779), + [anon_sym_DOT] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(6779), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6813), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6813), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE] = ACTIONS(6813), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_API_AVAILABLE] = ACTIONS(6813), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_API_DEPRECATED] = ACTIONS(6813), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6813), + [anon_sym___deprecated_msg] = ACTIONS(6813), + [anon_sym___deprecated_enum_msg] = ACTIONS(6813), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6813), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2722] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(99), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2723] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(100), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2724] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(101), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2725] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(5715), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2726] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(384), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2727] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(107), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2728] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(429), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2729] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(383), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2730] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(382), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2731] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(262), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2732] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(381), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2733] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(108), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2734] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(109), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2735] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(128), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2736] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(136), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2737] = { + [sym_protocol_qualifiers] = STATE(3341), + [sym_generic_type_references] = STATE(3341), + [aux_sym_generic_type_specifier_repeat1] = STATE(3341), + [sym_identifier] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6779), + [anon_sym_LPAREN2] = ACTIONS(6815), + [anon_sym_DASH] = ACTIONS(6777), + [anon_sym_PLUS] = ACTIONS(6777), + [anon_sym_STAR] = ACTIONS(6819), + [anon_sym_SLASH] = ACTIONS(6777), + [anon_sym_PERCENT] = ACTIONS(6777), + [anon_sym_PIPE_PIPE] = ACTIONS(6779), + [anon_sym_AMP_AMP] = ACTIONS(6779), + [anon_sym_PIPE] = ACTIONS(6777), + [anon_sym_CARET] = ACTIONS(6777), + [anon_sym_AMP] = ACTIONS(6777), + [anon_sym_EQ_EQ] = ACTIONS(6779), + [anon_sym_BANG_EQ] = ACTIONS(6779), + [anon_sym_GT] = ACTIONS(6777), + [anon_sym_GT_EQ] = ACTIONS(6779), + [anon_sym_LT_EQ] = ACTIONS(6779), + [anon_sym_LT] = ACTIONS(6822), + [anon_sym_LT_LT] = ACTIONS(6777), + [anon_sym_GT_GT] = ACTIONS(6777), + [anon_sym_SEMI] = ACTIONS(6779), + [anon_sym_extern] = ACTIONS(6813), + [anon_sym___attribute] = ACTIONS(6813), + [anon_sym___attribute__] = ACTIONS(6813), + [anon_sym___declspec] = ACTIONS(6813), + [anon_sym___based] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6779), + [anon_sym_EQ] = ACTIONS(6828), + [anon_sym_static] = ACTIONS(6813), + [anon_sym_auto] = ACTIONS(6813), + [anon_sym_register] = ACTIONS(6813), + [anon_sym_inline] = ACTIONS(6813), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6813), + [anon_sym_const] = ACTIONS(6813), + [anon_sym_volatile] = ACTIONS(6813), + [anon_sym_restrict] = ACTIONS(6813), + [anon_sym__Atomic] = ACTIONS(6813), + [anon_sym_in] = ACTIONS(6813), + [anon_sym_out] = ACTIONS(6813), + [anon_sym_inout] = ACTIONS(6813), + [anon_sym_bycopy] = ACTIONS(6813), + [anon_sym_byref] = ACTIONS(6813), + [anon_sym_oneway] = ACTIONS(6813), + [anon_sym__Nullable] = ACTIONS(6813), + [anon_sym__Nonnull] = ACTIONS(6813), + [anon_sym__Nullable_result] = ACTIONS(6813), + [anon_sym__Null_unspecified] = ACTIONS(6813), + [anon_sym___autoreleasing] = ACTIONS(6813), + [anon_sym___nullable] = ACTIONS(6813), + [anon_sym___nonnull] = ACTIONS(6813), + [anon_sym___strong] = ACTIONS(6813), + [anon_sym___weak] = ACTIONS(6813), + [anon_sym___bridge] = ACTIONS(6813), + [anon_sym___bridge_transfer] = ACTIONS(6813), + [anon_sym___bridge_retained] = ACTIONS(6813), + [anon_sym___unsafe_unretained] = ACTIONS(6813), + [anon_sym___block] = ACTIONS(6813), + [anon_sym___kindof] = ACTIONS(6813), + [anon_sym___unused] = ACTIONS(6813), + [anon_sym__Complex] = ACTIONS(6813), + [anon_sym___complex] = ACTIONS(6813), + [anon_sym_IBOutlet] = ACTIONS(6813), + [anon_sym_IBInspectable] = ACTIONS(6813), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6813), + [anon_sym_COLON] = ACTIONS(6830), + [anon_sym_QMARK] = ACTIONS(6779), + [anon_sym_STAR_EQ] = ACTIONS(6832), + [anon_sym_SLASH_EQ] = ACTIONS(6832), + [anon_sym_PERCENT_EQ] = ACTIONS(6832), + [anon_sym_PLUS_EQ] = ACTIONS(6832), + [anon_sym_DASH_EQ] = ACTIONS(6832), + [anon_sym_LT_LT_EQ] = ACTIONS(6832), + [anon_sym_GT_GT_EQ] = ACTIONS(6832), + [anon_sym_AMP_EQ] = ACTIONS(6832), + [anon_sym_CARET_EQ] = ACTIONS(6832), + [anon_sym_PIPE_EQ] = ACTIONS(6832), + [anon_sym_DASH_DASH] = ACTIONS(6779), + [anon_sym_PLUS_PLUS] = ACTIONS(6779), + [anon_sym_DOT] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(6779), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6813), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6813), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE] = ACTIONS(6813), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_API_AVAILABLE] = ACTIONS(6813), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_API_DEPRECATED] = ACTIONS(6813), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6813), + [anon_sym___deprecated_msg] = ACTIONS(6813), + [anon_sym___deprecated_enum_msg] = ACTIONS(6813), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6813), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2738] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(212), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2739] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(213), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2740] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(308), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2741] = { + [sym__declaration_specifiers] = STATE(4647), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_parameter_declaration] = STATE(5026), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6485), + [anon_sym_RPAREN] = ACTIONS(6487), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2742] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(181), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2743] = { + [sym_identifier] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_RPAREN] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_STAR] = ACTIONS(1684), + [anon_sym_SLASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1686), + [anon_sym_AMP_AMP] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1684), + [anon_sym_CARET] = ACTIONS(1684), + [anon_sym_AMP] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1686), + [anon_sym_BANG_EQ] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1686), + [anon_sym_LT_EQ] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1684), + [anon_sym_LT_LT] = ACTIONS(1684), + [anon_sym_GT_GT] = ACTIONS(1684), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym___attribute] = ACTIONS(1684), + [anon_sym___attribute__] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_RBRACK] = ACTIONS(1686), + [anon_sym_EQ] = ACTIONS(1684), + [anon_sym_const] = ACTIONS(1684), + [anon_sym_volatile] = ACTIONS(1684), + [anon_sym_restrict] = ACTIONS(1684), + [anon_sym__Atomic] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1684), + [anon_sym_out] = ACTIONS(1684), + [anon_sym_inout] = ACTIONS(1684), + [anon_sym_bycopy] = ACTIONS(1684), + [anon_sym_byref] = ACTIONS(1684), + [anon_sym_oneway] = ACTIONS(1684), + [anon_sym__Nullable] = ACTIONS(1684), + [anon_sym__Nonnull] = ACTIONS(1684), + [anon_sym__Nullable_result] = ACTIONS(1684), + [anon_sym__Null_unspecified] = ACTIONS(1684), + [anon_sym___autoreleasing] = ACTIONS(1684), + [anon_sym___nullable] = ACTIONS(1684), + [anon_sym___nonnull] = ACTIONS(1684), + [anon_sym___strong] = ACTIONS(1684), + [anon_sym___weak] = ACTIONS(1684), + [anon_sym___bridge] = ACTIONS(1684), + [anon_sym___bridge_transfer] = ACTIONS(1684), + [anon_sym___bridge_retained] = ACTIONS(1684), + [anon_sym___unsafe_unretained] = ACTIONS(1684), + [anon_sym___block] = ACTIONS(1684), + [anon_sym___kindof] = ACTIONS(1684), + [anon_sym___unused] = ACTIONS(1684), + [anon_sym__Complex] = ACTIONS(1684), + [anon_sym___complex] = ACTIONS(1684), + [anon_sym_IBOutlet] = ACTIONS(1684), + [anon_sym_IBInspectable] = ACTIONS(1684), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1684), + [anon_sym_COLON] = ACTIONS(1686), + [anon_sym_QMARK] = ACTIONS(1686), + [anon_sym_STAR_EQ] = ACTIONS(1686), + [anon_sym_SLASH_EQ] = ACTIONS(1686), + [anon_sym_PERCENT_EQ] = ACTIONS(1686), + [anon_sym_PLUS_EQ] = ACTIONS(1686), + [anon_sym_DASH_EQ] = ACTIONS(1686), + [anon_sym_LT_LT_EQ] = ACTIONS(1686), + [anon_sym_GT_GT_EQ] = ACTIONS(1686), + [anon_sym_AMP_EQ] = ACTIONS(1686), + [anon_sym_CARET_EQ] = ACTIONS(1686), + [anon_sym_PIPE_EQ] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DOT] = ACTIONS(1686), + [anon_sym_DASH_GT] = ACTIONS(1686), + [anon_sym_L_DQUOTE] = ACTIONS(1686), + [anon_sym_u_DQUOTE] = ACTIONS(1686), + [anon_sym_U_DQUOTE] = ACTIONS(1686), + [anon_sym_u8_DQUOTE] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1686), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(1684), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1684), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1684), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1684), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1684), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1684), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1684), + [anon_sym_NS_AVAILABLE] = ACTIONS(1684), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1684), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_API_AVAILABLE] = ACTIONS(1684), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1684), + [anon_sym_API_DEPRECATED] = ACTIONS(1684), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1684), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1684), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1684), + [anon_sym___deprecated_msg] = ACTIONS(1684), + [anon_sym___deprecated_enum_msg] = ACTIONS(1684), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1684), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1684), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1684), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2744] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(209), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2745] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(332), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2746] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(188), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2747] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(205), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2748] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(307), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2749] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(403), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2750] = { + [sym_identifier] = ACTIONS(6836), + [aux_sym_preproc_def_token1] = ACTIONS(6838), + [anon_sym_DASH] = ACTIONS(6838), + [anon_sym_PLUS] = ACTIONS(6838), + [anon_sym_LT] = ACTIONS(6838), + [anon_sym_typedef] = ACTIONS(6836), + [anon_sym_extern] = ACTIONS(6836), + [anon_sym___attribute] = ACTIONS(6836), + [anon_sym___attribute__] = ACTIONS(6836), + [anon_sym___declspec] = ACTIONS(6836), + [anon_sym___cdecl] = ACTIONS(6836), + [anon_sym___clrcall] = ACTIONS(6836), + [anon_sym___stdcall] = ACTIONS(6836), + [anon_sym___fastcall] = ACTIONS(6836), + [anon_sym___thiscall] = ACTIONS(6836), + [anon_sym___vectorcall] = ACTIONS(6836), + [anon_sym_LBRACE] = ACTIONS(6838), + [anon_sym_static] = ACTIONS(6836), + [anon_sym_auto] = ACTIONS(6836), + [anon_sym_register] = ACTIONS(6836), + [anon_sym_inline] = ACTIONS(6836), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6836), + [anon_sym_const] = ACTIONS(6836), + [anon_sym_volatile] = ACTIONS(6836), + [anon_sym_restrict] = ACTIONS(6836), + [anon_sym__Atomic] = ACTIONS(6836), + [anon_sym_in] = ACTIONS(6836), + [anon_sym_out] = ACTIONS(6836), + [anon_sym_inout] = ACTIONS(6836), + [anon_sym_bycopy] = ACTIONS(6836), + [anon_sym_byref] = ACTIONS(6836), + [anon_sym_oneway] = ACTIONS(6836), + [anon_sym__Nullable] = ACTIONS(6836), + [anon_sym__Nonnull] = ACTIONS(6836), + [anon_sym__Nullable_result] = ACTIONS(6836), + [anon_sym__Null_unspecified] = ACTIONS(6836), + [anon_sym___autoreleasing] = ACTIONS(6836), + [anon_sym___nullable] = ACTIONS(6836), + [anon_sym___nonnull] = ACTIONS(6836), + [anon_sym___strong] = ACTIONS(6836), + [anon_sym___weak] = ACTIONS(6836), + [anon_sym___bridge] = ACTIONS(6836), + [anon_sym___bridge_transfer] = ACTIONS(6836), + [anon_sym___bridge_retained] = ACTIONS(6836), + [anon_sym___unsafe_unretained] = ACTIONS(6836), + [anon_sym___block] = ACTIONS(6836), + [anon_sym___kindof] = ACTIONS(6836), + [anon_sym___unused] = ACTIONS(6836), + [anon_sym__Complex] = ACTIONS(6836), + [anon_sym___complex] = ACTIONS(6836), + [anon_sym_IBOutlet] = ACTIONS(6836), + [anon_sym_IBInspectable] = ACTIONS(6836), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6836), + [anon_sym_signed] = ACTIONS(6836), + [anon_sym_unsigned] = ACTIONS(6836), + [anon_sym_long] = ACTIONS(6836), + [anon_sym_short] = ACTIONS(6836), + [sym_primitive_type] = ACTIONS(6836), + [anon_sym_enum] = ACTIONS(6836), + [anon_sym_COLON] = ACTIONS(6838), + [anon_sym_struct] = ACTIONS(6836), + [anon_sym_union] = ACTIONS(6836), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6836), + [anon_sym_ATend] = ACTIONS(6838), + [sym_optional] = ACTIONS(6838), + [sym_required] = ACTIONS(6838), + [anon_sym_ATproperty] = ACTIONS(6838), + [sym_method_attribute_specifier] = ACTIONS(6836), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6836), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6836), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6836), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6836), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6836), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6836), + [anon_sym_NS_AVAILABLE] = ACTIONS(6836), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6836), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6836), + [anon_sym_API_AVAILABLE] = ACTIONS(6836), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6836), + [anon_sym_API_DEPRECATED] = ACTIONS(6836), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6836), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6836), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6836), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6836), + [anon_sym___deprecated_msg] = ACTIONS(6836), + [anon_sym___deprecated_enum_msg] = ACTIONS(6836), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6836), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6836), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6836), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6836), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6836), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6836), + [anon_sym_ATsynthesize] = ACTIONS(6838), + [anon_sym_ATdynamic] = ACTIONS(6838), + [anon_sym_NS_ENUM] = ACTIONS(6836), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(6836), + [anon_sym_NS_OPTIONS] = ACTIONS(6836), + [anon_sym_typeof] = ACTIONS(6836), + [anon_sym___typeof] = ACTIONS(6836), + [anon_sym___typeof__] = ACTIONS(6836), + [sym_id] = ACTIONS(6836), + [sym_instancetype] = ACTIONS(6836), + [sym_Class] = ACTIONS(6836), + [sym_SEL] = ACTIONS(6836), + [sym_IMP] = ACTIONS(6836), + [sym_BOOL] = ACTIONS(6836), + [sym_auto] = ACTIONS(6836), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2751] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(172), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2752] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(178), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2753] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(150), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2754] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(110), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2755] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(331), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2756] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(330), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2757] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(329), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2758] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(424), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2759] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(296), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2760] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(102), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2761] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(171), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2762] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(103), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2763] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(427), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2764] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(463), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2765] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(328), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2766] = { + [sym_identifier] = ACTIONS(1680), + [anon_sym_COMMA] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1682), + [anon_sym_LPAREN2] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1680), + [anon_sym_SLASH] = ACTIONS(1680), + [anon_sym_PERCENT] = ACTIONS(1680), + [anon_sym_PIPE_PIPE] = ACTIONS(1682), + [anon_sym_AMP_AMP] = ACTIONS(1682), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_CARET] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1680), + [anon_sym_GT_EQ] = ACTIONS(1682), + [anon_sym_LT_EQ] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(1680), + [anon_sym_LT_LT] = ACTIONS(1680), + [anon_sym_GT_GT] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym___attribute] = ACTIONS(1680), + [anon_sym___attribute__] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_RBRACK] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1680), + [anon_sym_const] = ACTIONS(1680), + [anon_sym_volatile] = ACTIONS(1680), + [anon_sym_restrict] = ACTIONS(1680), + [anon_sym__Atomic] = ACTIONS(1680), + [anon_sym_in] = ACTIONS(1680), + [anon_sym_out] = ACTIONS(1680), + [anon_sym_inout] = ACTIONS(1680), + [anon_sym_bycopy] = ACTIONS(1680), + [anon_sym_byref] = ACTIONS(1680), + [anon_sym_oneway] = ACTIONS(1680), + [anon_sym__Nullable] = ACTIONS(1680), + [anon_sym__Nonnull] = ACTIONS(1680), + [anon_sym__Nullable_result] = ACTIONS(1680), + [anon_sym__Null_unspecified] = ACTIONS(1680), + [anon_sym___autoreleasing] = ACTIONS(1680), + [anon_sym___nullable] = ACTIONS(1680), + [anon_sym___nonnull] = ACTIONS(1680), + [anon_sym___strong] = ACTIONS(1680), + [anon_sym___weak] = ACTIONS(1680), + [anon_sym___bridge] = ACTIONS(1680), + [anon_sym___bridge_transfer] = ACTIONS(1680), + [anon_sym___bridge_retained] = ACTIONS(1680), + [anon_sym___unsafe_unretained] = ACTIONS(1680), + [anon_sym___block] = ACTIONS(1680), + [anon_sym___kindof] = ACTIONS(1680), + [anon_sym___unused] = ACTIONS(1680), + [anon_sym__Complex] = ACTIONS(1680), + [anon_sym___complex] = ACTIONS(1680), + [anon_sym_IBOutlet] = ACTIONS(1680), + [anon_sym_IBInspectable] = ACTIONS(1680), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1680), + [anon_sym_COLON] = ACTIONS(1682), + [anon_sym_QMARK] = ACTIONS(1682), + [anon_sym_STAR_EQ] = ACTIONS(1682), + [anon_sym_SLASH_EQ] = ACTIONS(1682), + [anon_sym_PERCENT_EQ] = ACTIONS(1682), + [anon_sym_PLUS_EQ] = ACTIONS(1682), + [anon_sym_DASH_EQ] = ACTIONS(1682), + [anon_sym_LT_LT_EQ] = ACTIONS(1682), + [anon_sym_GT_GT_EQ] = ACTIONS(1682), + [anon_sym_AMP_EQ] = ACTIONS(1682), + [anon_sym_CARET_EQ] = ACTIONS(1682), + [anon_sym_PIPE_EQ] = ACTIONS(1682), + [anon_sym_DASH_DASH] = ACTIONS(1682), + [anon_sym_PLUS_PLUS] = ACTIONS(1682), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_DASH_GT] = ACTIONS(1682), + [anon_sym_L_DQUOTE] = ACTIONS(1682), + [anon_sym_u_DQUOTE] = ACTIONS(1682), + [anon_sym_U_DQUOTE] = ACTIONS(1682), + [anon_sym_u8_DQUOTE] = ACTIONS(1682), + [anon_sym_DQUOTE] = ACTIONS(1682), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(1680), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1680), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1680), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1680), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1680), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1680), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1680), + [anon_sym_NS_AVAILABLE] = ACTIONS(1680), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1680), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_API_AVAILABLE] = ACTIONS(1680), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1680), + [anon_sym_API_DEPRECATED] = ACTIONS(1680), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1680), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1680), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1680), + [anon_sym___deprecated_msg] = ACTIONS(1680), + [anon_sym___deprecated_enum_msg] = ACTIONS(1680), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1680), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1680), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1680), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1680), + [anon_sym_AT] = ACTIONS(1682), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2767] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(106), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2768] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(173), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2769] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(443), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2770] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(303), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2771] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(334), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2772] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(327), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2773] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(464), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2774] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(186), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2775] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(228), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2776] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(414), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2777] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(446), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2778] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(5831), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2779] = { + [sym_identifier] = ACTIONS(6840), + [aux_sym_preproc_def_token1] = ACTIONS(6842), + [anon_sym_DASH] = ACTIONS(6842), + [anon_sym_PLUS] = ACTIONS(6842), + [anon_sym_LT] = ACTIONS(6842), + [anon_sym_typedef] = ACTIONS(6840), + [anon_sym_extern] = ACTIONS(6840), + [anon_sym___attribute] = ACTIONS(6840), + [anon_sym___attribute__] = ACTIONS(6840), + [anon_sym___declspec] = ACTIONS(6840), + [anon_sym___cdecl] = ACTIONS(6840), + [anon_sym___clrcall] = ACTIONS(6840), + [anon_sym___stdcall] = ACTIONS(6840), + [anon_sym___fastcall] = ACTIONS(6840), + [anon_sym___thiscall] = ACTIONS(6840), + [anon_sym___vectorcall] = ACTIONS(6840), + [anon_sym_LBRACE] = ACTIONS(6842), + [anon_sym_static] = ACTIONS(6840), + [anon_sym_auto] = ACTIONS(6840), + [anon_sym_register] = ACTIONS(6840), + [anon_sym_inline] = ACTIONS(6840), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6840), + [anon_sym_const] = ACTIONS(6840), + [anon_sym_volatile] = ACTIONS(6840), + [anon_sym_restrict] = ACTIONS(6840), + [anon_sym__Atomic] = ACTIONS(6840), + [anon_sym_in] = ACTIONS(6840), + [anon_sym_out] = ACTIONS(6840), + [anon_sym_inout] = ACTIONS(6840), + [anon_sym_bycopy] = ACTIONS(6840), + [anon_sym_byref] = ACTIONS(6840), + [anon_sym_oneway] = ACTIONS(6840), + [anon_sym__Nullable] = ACTIONS(6840), + [anon_sym__Nonnull] = ACTIONS(6840), + [anon_sym__Nullable_result] = ACTIONS(6840), + [anon_sym__Null_unspecified] = ACTIONS(6840), + [anon_sym___autoreleasing] = ACTIONS(6840), + [anon_sym___nullable] = ACTIONS(6840), + [anon_sym___nonnull] = ACTIONS(6840), + [anon_sym___strong] = ACTIONS(6840), + [anon_sym___weak] = ACTIONS(6840), + [anon_sym___bridge] = ACTIONS(6840), + [anon_sym___bridge_transfer] = ACTIONS(6840), + [anon_sym___bridge_retained] = ACTIONS(6840), + [anon_sym___unsafe_unretained] = ACTIONS(6840), + [anon_sym___block] = ACTIONS(6840), + [anon_sym___kindof] = ACTIONS(6840), + [anon_sym___unused] = ACTIONS(6840), + [anon_sym__Complex] = ACTIONS(6840), + [anon_sym___complex] = ACTIONS(6840), + [anon_sym_IBOutlet] = ACTIONS(6840), + [anon_sym_IBInspectable] = ACTIONS(6840), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6840), + [anon_sym_signed] = ACTIONS(6840), + [anon_sym_unsigned] = ACTIONS(6840), + [anon_sym_long] = ACTIONS(6840), + [anon_sym_short] = ACTIONS(6840), + [sym_primitive_type] = ACTIONS(6840), + [anon_sym_enum] = ACTIONS(6840), + [anon_sym_COLON] = ACTIONS(6842), + [anon_sym_struct] = ACTIONS(6840), + [anon_sym_union] = ACTIONS(6840), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6840), + [anon_sym_ATend] = ACTIONS(6842), + [sym_optional] = ACTIONS(6842), + [sym_required] = ACTIONS(6842), + [anon_sym_ATproperty] = ACTIONS(6842), + [sym_method_attribute_specifier] = ACTIONS(6840), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6840), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6840), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6840), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6840), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6840), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6840), + [anon_sym_NS_AVAILABLE] = ACTIONS(6840), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6840), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6840), + [anon_sym_API_AVAILABLE] = ACTIONS(6840), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6840), + [anon_sym_API_DEPRECATED] = ACTIONS(6840), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6840), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6840), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6840), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6840), + [anon_sym___deprecated_msg] = ACTIONS(6840), + [anon_sym___deprecated_enum_msg] = ACTIONS(6840), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6840), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6840), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6840), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6840), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6840), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6840), + [anon_sym_ATsynthesize] = ACTIONS(6842), + [anon_sym_ATdynamic] = ACTIONS(6842), + [anon_sym_NS_ENUM] = ACTIONS(6840), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(6840), + [anon_sym_NS_OPTIONS] = ACTIONS(6840), + [anon_sym_typeof] = ACTIONS(6840), + [anon_sym___typeof] = ACTIONS(6840), + [anon_sym___typeof__] = ACTIONS(6840), + [sym_id] = ACTIONS(6840), + [sym_instancetype] = ACTIONS(6840), + [sym_Class] = ACTIONS(6840), + [sym_SEL] = ACTIONS(6840), + [sym_IMP] = ACTIONS(6840), + [sym_BOOL] = ACTIONS(6840), + [sym_auto] = ACTIONS(6840), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2780] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(470), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2781] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(469), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2782] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(468), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2783] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(456), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2784] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(224), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2785] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(273), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2786] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(413), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2787] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(5790), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2788] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(392), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2789] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(67), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2790] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(199), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2791] = { + [sym_identifier] = ACTIONS(6844), + [anon_sym_COMMA] = ACTIONS(6846), + [anon_sym_RPAREN] = ACTIONS(6846), + [anon_sym_LPAREN2] = ACTIONS(6846), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6844), + [anon_sym_STAR] = ACTIONS(6844), + [anon_sym_SLASH] = ACTIONS(6844), + [anon_sym_PERCENT] = ACTIONS(6844), + [anon_sym_PIPE_PIPE] = ACTIONS(6846), + [anon_sym_AMP_AMP] = ACTIONS(6846), + [anon_sym_PIPE] = ACTIONS(6844), + [anon_sym_CARET] = ACTIONS(6844), + [anon_sym_AMP] = ACTIONS(6844), + [anon_sym_EQ_EQ] = ACTIONS(6846), + [anon_sym_BANG_EQ] = ACTIONS(6846), + [anon_sym_GT] = ACTIONS(6844), + [anon_sym_GT_EQ] = ACTIONS(6846), + [anon_sym_LT_EQ] = ACTIONS(6846), + [anon_sym_LT] = ACTIONS(6844), + [anon_sym_LT_LT] = ACTIONS(6844), + [anon_sym_GT_GT] = ACTIONS(6844), + [anon_sym_SEMI] = ACTIONS(6846), + [anon_sym___attribute] = ACTIONS(6844), + [anon_sym___attribute__] = ACTIONS(6844), + [anon_sym_RBRACE] = ACTIONS(6846), + [anon_sym_LBRACK] = ACTIONS(6846), + [anon_sym_RBRACK] = ACTIONS(6846), + [anon_sym_EQ] = ACTIONS(6844), + [anon_sym_const] = ACTIONS(6844), + [anon_sym_volatile] = ACTIONS(6844), + [anon_sym_restrict] = ACTIONS(6844), + [anon_sym__Atomic] = ACTIONS(6844), + [anon_sym_in] = ACTIONS(6844), + [anon_sym_out] = ACTIONS(6844), + [anon_sym_inout] = ACTIONS(6844), + [anon_sym_bycopy] = ACTIONS(6844), + [anon_sym_byref] = ACTIONS(6844), + [anon_sym_oneway] = ACTIONS(6844), + [anon_sym__Nullable] = ACTIONS(6844), + [anon_sym__Nonnull] = ACTIONS(6844), + [anon_sym__Nullable_result] = ACTIONS(6844), + [anon_sym__Null_unspecified] = ACTIONS(6844), + [anon_sym___autoreleasing] = ACTIONS(6844), + [anon_sym___nullable] = ACTIONS(6844), + [anon_sym___nonnull] = ACTIONS(6844), + [anon_sym___strong] = ACTIONS(6844), + [anon_sym___weak] = ACTIONS(6844), + [anon_sym___bridge] = ACTIONS(6844), + [anon_sym___bridge_transfer] = ACTIONS(6844), + [anon_sym___bridge_retained] = ACTIONS(6844), + [anon_sym___unsafe_unretained] = ACTIONS(6844), + [anon_sym___block] = ACTIONS(6844), + [anon_sym___kindof] = ACTIONS(6844), + [anon_sym___unused] = ACTIONS(6844), + [anon_sym__Complex] = ACTIONS(6844), + [anon_sym___complex] = ACTIONS(6844), + [anon_sym_IBOutlet] = ACTIONS(6844), + [anon_sym_IBInspectable] = ACTIONS(6844), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6844), + [anon_sym_COLON] = ACTIONS(6846), + [anon_sym_QMARK] = ACTIONS(6846), + [anon_sym_STAR_EQ] = ACTIONS(6846), + [anon_sym_SLASH_EQ] = ACTIONS(6846), + [anon_sym_PERCENT_EQ] = ACTIONS(6846), + [anon_sym_PLUS_EQ] = ACTIONS(6846), + [anon_sym_DASH_EQ] = ACTIONS(6846), + [anon_sym_LT_LT_EQ] = ACTIONS(6846), + [anon_sym_GT_GT_EQ] = ACTIONS(6846), + [anon_sym_AMP_EQ] = ACTIONS(6846), + [anon_sym_CARET_EQ] = ACTIONS(6846), + [anon_sym_PIPE_EQ] = ACTIONS(6846), + [anon_sym_DASH_DASH] = ACTIONS(6846), + [anon_sym_PLUS_PLUS] = ACTIONS(6846), + [anon_sym_DOT] = ACTIONS(6846), + [anon_sym_DASH_GT] = ACTIONS(6846), + [anon_sym_L_DQUOTE] = ACTIONS(6846), + [anon_sym_u_DQUOTE] = ACTIONS(6846), + [anon_sym_U_DQUOTE] = ACTIONS(6846), + [anon_sym_u8_DQUOTE] = ACTIONS(6846), + [anon_sym_DQUOTE] = ACTIONS(6846), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6844), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6844), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6844), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6844), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6844), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6844), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6844), + [anon_sym_NS_AVAILABLE] = ACTIONS(6844), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6844), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6844), + [anon_sym_API_AVAILABLE] = ACTIONS(6844), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6844), + [anon_sym_API_DEPRECATED] = ACTIONS(6844), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6844), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6844), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6844), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6844), + [anon_sym___deprecated_msg] = ACTIONS(6844), + [anon_sym___deprecated_enum_msg] = ACTIONS(6844), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6844), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6844), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6844), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6844), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6844), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6844), + [anon_sym_AT] = ACTIONS(6846), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2792] = { + [sym_protocol_qualifiers] = STATE(3341), + [sym_generic_type_references] = STATE(3341), + [aux_sym_generic_type_specifier_repeat1] = STATE(3341), + [sym_identifier] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6779), + [anon_sym_LPAREN2] = ACTIONS(6815), + [anon_sym_DASH] = ACTIONS(6777), + [anon_sym_PLUS] = ACTIONS(6777), + [anon_sym_STAR] = ACTIONS(6819), + [anon_sym_SLASH] = ACTIONS(6777), + [anon_sym_PERCENT] = ACTIONS(6777), + [anon_sym_PIPE_PIPE] = ACTIONS(6779), + [anon_sym_AMP_AMP] = ACTIONS(6779), + [anon_sym_PIPE] = ACTIONS(6777), + [anon_sym_CARET] = ACTIONS(6777), + [anon_sym_AMP] = ACTIONS(6777), + [anon_sym_EQ_EQ] = ACTIONS(6779), + [anon_sym_BANG_EQ] = ACTIONS(6779), + [anon_sym_GT] = ACTIONS(6777), + [anon_sym_GT_EQ] = ACTIONS(6779), + [anon_sym_LT_EQ] = ACTIONS(6779), + [anon_sym_LT] = ACTIONS(6822), + [anon_sym_LT_LT] = ACTIONS(6777), + [anon_sym_GT_GT] = ACTIONS(6777), + [anon_sym_SEMI] = ACTIONS(6779), + [anon_sym_extern] = ACTIONS(6813), + [anon_sym___attribute] = ACTIONS(6813), + [anon_sym___attribute__] = ACTIONS(6813), + [anon_sym___declspec] = ACTIONS(6813), + [anon_sym___based] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6779), + [anon_sym_EQ] = ACTIONS(6828), + [anon_sym_static] = ACTIONS(6813), + [anon_sym_auto] = ACTIONS(6813), + [anon_sym_register] = ACTIONS(6813), + [anon_sym_inline] = ACTIONS(6813), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6813), + [anon_sym_const] = ACTIONS(6813), + [anon_sym_volatile] = ACTIONS(6813), + [anon_sym_restrict] = ACTIONS(6813), + [anon_sym__Atomic] = ACTIONS(6813), + [anon_sym_in] = ACTIONS(6813), + [anon_sym_out] = ACTIONS(6813), + [anon_sym_inout] = ACTIONS(6813), + [anon_sym_bycopy] = ACTIONS(6813), + [anon_sym_byref] = ACTIONS(6813), + [anon_sym_oneway] = ACTIONS(6813), + [anon_sym__Nullable] = ACTIONS(6813), + [anon_sym__Nonnull] = ACTIONS(6813), + [anon_sym__Nullable_result] = ACTIONS(6813), + [anon_sym__Null_unspecified] = ACTIONS(6813), + [anon_sym___autoreleasing] = ACTIONS(6813), + [anon_sym___nullable] = ACTIONS(6813), + [anon_sym___nonnull] = ACTIONS(6813), + [anon_sym___strong] = ACTIONS(6813), + [anon_sym___weak] = ACTIONS(6813), + [anon_sym___bridge] = ACTIONS(6813), + [anon_sym___bridge_transfer] = ACTIONS(6813), + [anon_sym___bridge_retained] = ACTIONS(6813), + [anon_sym___unsafe_unretained] = ACTIONS(6813), + [anon_sym___block] = ACTIONS(6813), + [anon_sym___kindof] = ACTIONS(6813), + [anon_sym___unused] = ACTIONS(6813), + [anon_sym__Complex] = ACTIONS(6813), + [anon_sym___complex] = ACTIONS(6813), + [anon_sym_IBOutlet] = ACTIONS(6813), + [anon_sym_IBInspectable] = ACTIONS(6813), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6813), + [anon_sym_COLON] = ACTIONS(6848), + [anon_sym_QMARK] = ACTIONS(6779), + [anon_sym_STAR_EQ] = ACTIONS(6832), + [anon_sym_SLASH_EQ] = ACTIONS(6832), + [anon_sym_PERCENT_EQ] = ACTIONS(6832), + [anon_sym_PLUS_EQ] = ACTIONS(6832), + [anon_sym_DASH_EQ] = ACTIONS(6832), + [anon_sym_LT_LT_EQ] = ACTIONS(6832), + [anon_sym_GT_GT_EQ] = ACTIONS(6832), + [anon_sym_AMP_EQ] = ACTIONS(6832), + [anon_sym_CARET_EQ] = ACTIONS(6832), + [anon_sym_PIPE_EQ] = ACTIONS(6832), + [anon_sym_DASH_DASH] = ACTIONS(6779), + [anon_sym_PLUS_PLUS] = ACTIONS(6779), + [anon_sym_DOT] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(6779), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6813), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6813), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE] = ACTIONS(6813), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_API_AVAILABLE] = ACTIONS(6813), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_API_DEPRECATED] = ACTIONS(6813), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6813), + [anon_sym___deprecated_msg] = ACTIONS(6813), + [anon_sym___deprecated_enum_msg] = ACTIONS(6813), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6813), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2793] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(229), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2794] = { + [sym_protocol_qualifiers] = STATE(3341), + [sym_generic_type_references] = STATE(3341), + [aux_sym_generic_type_specifier_repeat1] = STATE(3341), + [sym_identifier] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6779), + [anon_sym_LPAREN2] = ACTIONS(6815), + [anon_sym_DASH] = ACTIONS(6777), + [anon_sym_PLUS] = ACTIONS(6777), + [anon_sym_STAR] = ACTIONS(6819), + [anon_sym_SLASH] = ACTIONS(6777), + [anon_sym_PERCENT] = ACTIONS(6777), + [anon_sym_PIPE_PIPE] = ACTIONS(6779), + [anon_sym_AMP_AMP] = ACTIONS(6779), + [anon_sym_PIPE] = ACTIONS(6777), + [anon_sym_CARET] = ACTIONS(6777), + [anon_sym_AMP] = ACTIONS(6777), + [anon_sym_EQ_EQ] = ACTIONS(6779), + [anon_sym_BANG_EQ] = ACTIONS(6779), + [anon_sym_GT] = ACTIONS(6777), + [anon_sym_GT_EQ] = ACTIONS(6779), + [anon_sym_LT_EQ] = ACTIONS(6779), + [anon_sym_LT] = ACTIONS(6822), + [anon_sym_LT_LT] = ACTIONS(6777), + [anon_sym_GT_GT] = ACTIONS(6777), + [anon_sym_SEMI] = ACTIONS(6825), + [anon_sym_extern] = ACTIONS(6813), + [anon_sym___attribute] = ACTIONS(6813), + [anon_sym___attribute__] = ACTIONS(6813), + [anon_sym___declspec] = ACTIONS(6813), + [anon_sym___based] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6779), + [anon_sym_EQ] = ACTIONS(6828), + [anon_sym_static] = ACTIONS(6813), + [anon_sym_auto] = ACTIONS(6813), + [anon_sym_register] = ACTIONS(6813), + [anon_sym_inline] = ACTIONS(6813), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6813), + [anon_sym_const] = ACTIONS(6813), + [anon_sym_volatile] = ACTIONS(6813), + [anon_sym_restrict] = ACTIONS(6813), + [anon_sym__Atomic] = ACTIONS(6813), + [anon_sym_in] = ACTIONS(6813), + [anon_sym_out] = ACTIONS(6813), + [anon_sym_inout] = ACTIONS(6813), + [anon_sym_bycopy] = ACTIONS(6813), + [anon_sym_byref] = ACTIONS(6813), + [anon_sym_oneway] = ACTIONS(6813), + [anon_sym__Nullable] = ACTIONS(6813), + [anon_sym__Nonnull] = ACTIONS(6813), + [anon_sym__Nullable_result] = ACTIONS(6813), + [anon_sym__Null_unspecified] = ACTIONS(6813), + [anon_sym___autoreleasing] = ACTIONS(6813), + [anon_sym___nullable] = ACTIONS(6813), + [anon_sym___nonnull] = ACTIONS(6813), + [anon_sym___strong] = ACTIONS(6813), + [anon_sym___weak] = ACTIONS(6813), + [anon_sym___bridge] = ACTIONS(6813), + [anon_sym___bridge_transfer] = ACTIONS(6813), + [anon_sym___bridge_retained] = ACTIONS(6813), + [anon_sym___unsafe_unretained] = ACTIONS(6813), + [anon_sym___block] = ACTIONS(6813), + [anon_sym___kindof] = ACTIONS(6813), + [anon_sym___unused] = ACTIONS(6813), + [anon_sym__Complex] = ACTIONS(6813), + [anon_sym___complex] = ACTIONS(6813), + [anon_sym_IBOutlet] = ACTIONS(6813), + [anon_sym_IBInspectable] = ACTIONS(6813), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6813), + [anon_sym_COLON] = ACTIONS(6850), + [anon_sym_QMARK] = ACTIONS(6779), + [anon_sym_STAR_EQ] = ACTIONS(6832), + [anon_sym_SLASH_EQ] = ACTIONS(6832), + [anon_sym_PERCENT_EQ] = ACTIONS(6832), + [anon_sym_PLUS_EQ] = ACTIONS(6832), + [anon_sym_DASH_EQ] = ACTIONS(6832), + [anon_sym_LT_LT_EQ] = ACTIONS(6832), + [anon_sym_GT_GT_EQ] = ACTIONS(6832), + [anon_sym_AMP_EQ] = ACTIONS(6832), + [anon_sym_CARET_EQ] = ACTIONS(6832), + [anon_sym_PIPE_EQ] = ACTIONS(6832), + [anon_sym_DASH_DASH] = ACTIONS(6779), + [anon_sym_PLUS_PLUS] = ACTIONS(6779), + [anon_sym_DOT] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(6779), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6813), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6813), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE] = ACTIONS(6813), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_API_AVAILABLE] = ACTIONS(6813), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_API_DEPRECATED] = ACTIONS(6813), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6813), + [anon_sym___deprecated_msg] = ACTIONS(6813), + [anon_sym___deprecated_enum_msg] = ACTIONS(6813), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6813), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2795] = { + [sym_identifier] = ACTIONS(6852), + [anon_sym_COMMA] = ACTIONS(6854), + [anon_sym_RPAREN] = ACTIONS(6854), + [anon_sym_LPAREN2] = ACTIONS(6854), + [anon_sym_DASH] = ACTIONS(6852), + [anon_sym_PLUS] = ACTIONS(6852), + [anon_sym_STAR] = ACTIONS(6852), + [anon_sym_SLASH] = ACTIONS(6852), + [anon_sym_PERCENT] = ACTIONS(6852), + [anon_sym_PIPE_PIPE] = ACTIONS(6854), + [anon_sym_AMP_AMP] = ACTIONS(6854), + [anon_sym_PIPE] = ACTIONS(6852), + [anon_sym_CARET] = ACTIONS(6852), + [anon_sym_AMP] = ACTIONS(6852), + [anon_sym_EQ_EQ] = ACTIONS(6854), + [anon_sym_BANG_EQ] = ACTIONS(6854), + [anon_sym_GT] = ACTIONS(6852), + [anon_sym_GT_EQ] = ACTIONS(6854), + [anon_sym_LT_EQ] = ACTIONS(6854), + [anon_sym_LT] = ACTIONS(6852), + [anon_sym_LT_LT] = ACTIONS(6852), + [anon_sym_GT_GT] = ACTIONS(6852), + [anon_sym_SEMI] = ACTIONS(6854), + [anon_sym___attribute] = ACTIONS(6852), + [anon_sym___attribute__] = ACTIONS(6852), + [anon_sym_RBRACE] = ACTIONS(6854), + [anon_sym_LBRACK] = ACTIONS(6854), + [anon_sym_RBRACK] = ACTIONS(6854), + [anon_sym_EQ] = ACTIONS(6852), + [anon_sym_const] = ACTIONS(6852), + [anon_sym_volatile] = ACTIONS(6852), + [anon_sym_restrict] = ACTIONS(6852), + [anon_sym__Atomic] = ACTIONS(6852), + [anon_sym_in] = ACTIONS(6852), + [anon_sym_out] = ACTIONS(6852), + [anon_sym_inout] = ACTIONS(6852), + [anon_sym_bycopy] = ACTIONS(6852), + [anon_sym_byref] = ACTIONS(6852), + [anon_sym_oneway] = ACTIONS(6852), + [anon_sym__Nullable] = ACTIONS(6852), + [anon_sym__Nonnull] = ACTIONS(6852), + [anon_sym__Nullable_result] = ACTIONS(6852), + [anon_sym__Null_unspecified] = ACTIONS(6852), + [anon_sym___autoreleasing] = ACTIONS(6852), + [anon_sym___nullable] = ACTIONS(6852), + [anon_sym___nonnull] = ACTIONS(6852), + [anon_sym___strong] = ACTIONS(6852), + [anon_sym___weak] = ACTIONS(6852), + [anon_sym___bridge] = ACTIONS(6852), + [anon_sym___bridge_transfer] = ACTIONS(6852), + [anon_sym___bridge_retained] = ACTIONS(6852), + [anon_sym___unsafe_unretained] = ACTIONS(6852), + [anon_sym___block] = ACTIONS(6852), + [anon_sym___kindof] = ACTIONS(6852), + [anon_sym___unused] = ACTIONS(6852), + [anon_sym__Complex] = ACTIONS(6852), + [anon_sym___complex] = ACTIONS(6852), + [anon_sym_IBOutlet] = ACTIONS(6852), + [anon_sym_IBInspectable] = ACTIONS(6852), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6852), + [anon_sym_COLON] = ACTIONS(6854), + [anon_sym_QMARK] = ACTIONS(6854), + [anon_sym_STAR_EQ] = ACTIONS(6854), + [anon_sym_SLASH_EQ] = ACTIONS(6854), + [anon_sym_PERCENT_EQ] = ACTIONS(6854), + [anon_sym_PLUS_EQ] = ACTIONS(6854), + [anon_sym_DASH_EQ] = ACTIONS(6854), + [anon_sym_LT_LT_EQ] = ACTIONS(6854), + [anon_sym_GT_GT_EQ] = ACTIONS(6854), + [anon_sym_AMP_EQ] = ACTIONS(6854), + [anon_sym_CARET_EQ] = ACTIONS(6854), + [anon_sym_PIPE_EQ] = ACTIONS(6854), + [anon_sym_DASH_DASH] = ACTIONS(6854), + [anon_sym_PLUS_PLUS] = ACTIONS(6854), + [anon_sym_DOT] = ACTIONS(6854), + [anon_sym_DASH_GT] = ACTIONS(6854), + [anon_sym_L_DQUOTE] = ACTIONS(6854), + [anon_sym_u_DQUOTE] = ACTIONS(6854), + [anon_sym_U_DQUOTE] = ACTIONS(6854), + [anon_sym_u8_DQUOTE] = ACTIONS(6854), + [anon_sym_DQUOTE] = ACTIONS(6854), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6852), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6852), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6852), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6852), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6852), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6852), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6852), + [anon_sym_NS_AVAILABLE] = ACTIONS(6852), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6852), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6852), + [anon_sym_API_AVAILABLE] = ACTIONS(6852), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6852), + [anon_sym_API_DEPRECATED] = ACTIONS(6852), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6852), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6852), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6852), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6852), + [anon_sym___deprecated_msg] = ACTIONS(6852), + [anon_sym___deprecated_enum_msg] = ACTIONS(6852), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6852), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6852), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6852), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6852), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6852), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6852), + [anon_sym_AT] = ACTIONS(6854), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2796] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(183), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2797] = { + [sym_protocol_qualifiers] = STATE(3341), + [sym_generic_type_references] = STATE(3341), + [aux_sym_generic_type_specifier_repeat1] = STATE(3341), + [sym_identifier] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6779), + [anon_sym_LPAREN2] = ACTIONS(6815), + [anon_sym_DASH] = ACTIONS(6777), + [anon_sym_PLUS] = ACTIONS(6777), + [anon_sym_STAR] = ACTIONS(6819), + [anon_sym_SLASH] = ACTIONS(6777), + [anon_sym_PERCENT] = ACTIONS(6777), + [anon_sym_PIPE_PIPE] = ACTIONS(6779), + [anon_sym_AMP_AMP] = ACTIONS(6779), + [anon_sym_PIPE] = ACTIONS(6777), + [anon_sym_CARET] = ACTIONS(6777), + [anon_sym_AMP] = ACTIONS(6777), + [anon_sym_EQ_EQ] = ACTIONS(6779), + [anon_sym_BANG_EQ] = ACTIONS(6779), + [anon_sym_GT] = ACTIONS(6777), + [anon_sym_GT_EQ] = ACTIONS(6779), + [anon_sym_LT_EQ] = ACTIONS(6779), + [anon_sym_LT] = ACTIONS(6822), + [anon_sym_LT_LT] = ACTIONS(6777), + [anon_sym_GT_GT] = ACTIONS(6777), + [anon_sym_SEMI] = ACTIONS(6779), + [anon_sym_extern] = ACTIONS(6813), + [anon_sym___attribute] = ACTIONS(6813), + [anon_sym___attribute__] = ACTIONS(6813), + [anon_sym___declspec] = ACTIONS(6813), + [anon_sym___based] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6779), + [anon_sym_EQ] = ACTIONS(6828), + [anon_sym_static] = ACTIONS(6813), + [anon_sym_auto] = ACTIONS(6813), + [anon_sym_register] = ACTIONS(6813), + [anon_sym_inline] = ACTIONS(6813), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6813), + [anon_sym_const] = ACTIONS(6813), + [anon_sym_volatile] = ACTIONS(6813), + [anon_sym_restrict] = ACTIONS(6813), + [anon_sym__Atomic] = ACTIONS(6813), + [anon_sym_in] = ACTIONS(6813), + [anon_sym_out] = ACTIONS(6813), + [anon_sym_inout] = ACTIONS(6813), + [anon_sym_bycopy] = ACTIONS(6813), + [anon_sym_byref] = ACTIONS(6813), + [anon_sym_oneway] = ACTIONS(6813), + [anon_sym__Nullable] = ACTIONS(6813), + [anon_sym__Nonnull] = ACTIONS(6813), + [anon_sym__Nullable_result] = ACTIONS(6813), + [anon_sym__Null_unspecified] = ACTIONS(6813), + [anon_sym___autoreleasing] = ACTIONS(6813), + [anon_sym___nullable] = ACTIONS(6813), + [anon_sym___nonnull] = ACTIONS(6813), + [anon_sym___strong] = ACTIONS(6813), + [anon_sym___weak] = ACTIONS(6813), + [anon_sym___bridge] = ACTIONS(6813), + [anon_sym___bridge_transfer] = ACTIONS(6813), + [anon_sym___bridge_retained] = ACTIONS(6813), + [anon_sym___unsafe_unretained] = ACTIONS(6813), + [anon_sym___block] = ACTIONS(6813), + [anon_sym___kindof] = ACTIONS(6813), + [anon_sym___unused] = ACTIONS(6813), + [anon_sym__Complex] = ACTIONS(6813), + [anon_sym___complex] = ACTIONS(6813), + [anon_sym_IBOutlet] = ACTIONS(6813), + [anon_sym_IBInspectable] = ACTIONS(6813), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6813), + [anon_sym_COLON] = ACTIONS(6850), + [anon_sym_QMARK] = ACTIONS(6779), + [anon_sym_STAR_EQ] = ACTIONS(6832), + [anon_sym_SLASH_EQ] = ACTIONS(6832), + [anon_sym_PERCENT_EQ] = ACTIONS(6832), + [anon_sym_PLUS_EQ] = ACTIONS(6832), + [anon_sym_DASH_EQ] = ACTIONS(6832), + [anon_sym_LT_LT_EQ] = ACTIONS(6832), + [anon_sym_GT_GT_EQ] = ACTIONS(6832), + [anon_sym_AMP_EQ] = ACTIONS(6832), + [anon_sym_CARET_EQ] = ACTIONS(6832), + [anon_sym_PIPE_EQ] = ACTIONS(6832), + [anon_sym_DASH_DASH] = ACTIONS(6779), + [anon_sym_PLUS_PLUS] = ACTIONS(6779), + [anon_sym_DOT] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(6779), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6813), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6813), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE] = ACTIONS(6813), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_API_AVAILABLE] = ACTIONS(6813), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_API_DEPRECATED] = ACTIONS(6813), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6813), + [anon_sym___deprecated_msg] = ACTIONS(6813), + [anon_sym___deprecated_enum_msg] = ACTIONS(6813), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6813), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2798] = { + [sym__declaration_specifiers] = STATE(4647), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_parameter_declaration] = STATE(5012), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6467), + [anon_sym_RPAREN] = ACTIONS(6469), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2799] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(457), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2800] = { + [sym_compound_statement] = STATE(407), + [sym__statement] = STATE(459), + [sym_labeled_statement] = STATE(407), + [sym_expression_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_switch_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_do_statement] = STATE(407), + [sym_for_statement] = STATE(407), + [sym_return_statement] = STATE(407), + [sym_break_statement] = STATE(407), + [sym_continue_statement] = STATE(407), + [sym_goto_statement] = STATE(407), + [sym__expression] = STATE(4454), + [sym_comma_expression] = STATE(5631), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(407), + [sym_synchronized_statement] = STATE(407), + [sym_for_in_statement] = STATE(407), + [sym_try_catch_statement] = STATE(407), + [sym_throw_statement] = STATE(407), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(633), + [anon_sym_switch] = ACTIONS(635), + [anon_sym_case] = ACTIONS(637), + [anon_sym_default] = ACTIONS(639), + [anon_sym_while] = ACTIONS(641), + [anon_sym_do] = ACTIONS(643), + [anon_sym_for] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_break] = ACTIONS(649), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_goto] = ACTIONS(653), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(673), + [anon_sym_ATsynchronized] = ACTIONS(675), + [anon_sym_ATtry] = ACTIONS(677), + [anon_sym_ATthrow] = ACTIONS(679), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2801] = { + [sym_protocol_qualifiers] = STATE(3341), + [sym_generic_type_references] = STATE(3341), + [aux_sym_generic_type_specifier_repeat1] = STATE(3341), + [sym_identifier] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6779), + [anon_sym_LPAREN2] = ACTIONS(6815), + [anon_sym_DASH] = ACTIONS(6777), + [anon_sym_PLUS] = ACTIONS(6777), + [anon_sym_STAR] = ACTIONS(6819), + [anon_sym_SLASH] = ACTIONS(6777), + [anon_sym_PERCENT] = ACTIONS(6777), + [anon_sym_PIPE_PIPE] = ACTIONS(6779), + [anon_sym_AMP_AMP] = ACTIONS(6779), + [anon_sym_PIPE] = ACTIONS(6777), + [anon_sym_CARET] = ACTIONS(6777), + [anon_sym_AMP] = ACTIONS(6777), + [anon_sym_EQ_EQ] = ACTIONS(6779), + [anon_sym_BANG_EQ] = ACTIONS(6779), + [anon_sym_GT] = ACTIONS(6777), + [anon_sym_GT_EQ] = ACTIONS(6779), + [anon_sym_LT_EQ] = ACTIONS(6779), + [anon_sym_LT] = ACTIONS(6822), + [anon_sym_LT_LT] = ACTIONS(6777), + [anon_sym_GT_GT] = ACTIONS(6777), + [anon_sym_SEMI] = ACTIONS(6825), + [anon_sym_extern] = ACTIONS(6813), + [anon_sym___attribute] = ACTIONS(6813), + [anon_sym___attribute__] = ACTIONS(6813), + [anon_sym___declspec] = ACTIONS(6813), + [anon_sym___based] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6779), + [anon_sym_EQ] = ACTIONS(6828), + [anon_sym_static] = ACTIONS(6813), + [anon_sym_auto] = ACTIONS(6813), + [anon_sym_register] = ACTIONS(6813), + [anon_sym_inline] = ACTIONS(6813), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6813), + [anon_sym_const] = ACTIONS(6813), + [anon_sym_volatile] = ACTIONS(6813), + [anon_sym_restrict] = ACTIONS(6813), + [anon_sym__Atomic] = ACTIONS(6813), + [anon_sym_in] = ACTIONS(6813), + [anon_sym_out] = ACTIONS(6813), + [anon_sym_inout] = ACTIONS(6813), + [anon_sym_bycopy] = ACTIONS(6813), + [anon_sym_byref] = ACTIONS(6813), + [anon_sym_oneway] = ACTIONS(6813), + [anon_sym__Nullable] = ACTIONS(6813), + [anon_sym__Nonnull] = ACTIONS(6813), + [anon_sym__Nullable_result] = ACTIONS(6813), + [anon_sym__Null_unspecified] = ACTIONS(6813), + [anon_sym___autoreleasing] = ACTIONS(6813), + [anon_sym___nullable] = ACTIONS(6813), + [anon_sym___nonnull] = ACTIONS(6813), + [anon_sym___strong] = ACTIONS(6813), + [anon_sym___weak] = ACTIONS(6813), + [anon_sym___bridge] = ACTIONS(6813), + [anon_sym___bridge_transfer] = ACTIONS(6813), + [anon_sym___bridge_retained] = ACTIONS(6813), + [anon_sym___unsafe_unretained] = ACTIONS(6813), + [anon_sym___block] = ACTIONS(6813), + [anon_sym___kindof] = ACTIONS(6813), + [anon_sym___unused] = ACTIONS(6813), + [anon_sym__Complex] = ACTIONS(6813), + [anon_sym___complex] = ACTIONS(6813), + [anon_sym_IBOutlet] = ACTIONS(6813), + [anon_sym_IBInspectable] = ACTIONS(6813), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6813), + [anon_sym_COLON] = ACTIONS(6848), + [anon_sym_QMARK] = ACTIONS(6779), + [anon_sym_STAR_EQ] = ACTIONS(6832), + [anon_sym_SLASH_EQ] = ACTIONS(6832), + [anon_sym_PERCENT_EQ] = ACTIONS(6832), + [anon_sym_PLUS_EQ] = ACTIONS(6832), + [anon_sym_DASH_EQ] = ACTIONS(6832), + [anon_sym_LT_LT_EQ] = ACTIONS(6832), + [anon_sym_GT_GT_EQ] = ACTIONS(6832), + [anon_sym_AMP_EQ] = ACTIONS(6832), + [anon_sym_CARET_EQ] = ACTIONS(6832), + [anon_sym_PIPE_EQ] = ACTIONS(6832), + [anon_sym_DASH_DASH] = ACTIONS(6779), + [anon_sym_PLUS_PLUS] = ACTIONS(6779), + [anon_sym_DOT] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(6779), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6813), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6813), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE] = ACTIONS(6813), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_API_AVAILABLE] = ACTIONS(6813), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_API_DEPRECATED] = ACTIONS(6813), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6813), + [anon_sym___deprecated_msg] = ACTIONS(6813), + [anon_sym___deprecated_enum_msg] = ACTIONS(6813), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6813), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2802] = { + [sym_compound_statement] = STATE(176), + [sym__statement] = STATE(174), + [sym_labeled_statement] = STATE(176), + [sym_expression_statement] = STATE(176), + [sym_if_statement] = STATE(176), + [sym_switch_statement] = STATE(176), + [sym_case_statement] = STATE(176), + [sym_while_statement] = STATE(176), + [sym_do_statement] = STATE(176), + [sym_for_statement] = STATE(176), + [sym_return_statement] = STATE(176), + [sym_break_statement] = STATE(176), + [sym_continue_statement] = STATE(176), + [sym_goto_statement] = STATE(176), + [sym__expression] = STATE(4483), + [sym_comma_expression] = STATE(5652), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(176), + [sym_synchronized_statement] = STATE(176), + [sym_for_in_statement] = STATE(176), + [sym_try_catch_statement] = STATE(176), + [sym_throw_statement] = STATE(176), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6834), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(179), + [anon_sym_switch] = ACTIONS(181), + [anon_sym_case] = ACTIONS(183), + [anon_sym_default] = ACTIONS(185), + [anon_sym_while] = ACTIONS(187), + [anon_sym_do] = ACTIONS(189), + [anon_sym_for] = ACTIONS(191), + [anon_sym_return] = ACTIONS(193), + [anon_sym_break] = ACTIONS(195), + [anon_sym_continue] = ACTIONS(197), + [anon_sym_goto] = ACTIONS(199), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(219), + [anon_sym_ATsynchronized] = ACTIONS(221), + [anon_sym_ATtry] = ACTIONS(223), + [anon_sym_ATthrow] = ACTIONS(225), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2803] = { + [sym_identifier] = ACTIONS(6856), + [aux_sym_preproc_def_token1] = ACTIONS(6858), + [anon_sym_DASH] = ACTIONS(6858), + [anon_sym_PLUS] = ACTIONS(6858), + [anon_sym_LT] = ACTIONS(6858), + [anon_sym_typedef] = ACTIONS(6856), + [anon_sym_extern] = ACTIONS(6856), + [anon_sym___attribute] = ACTIONS(6856), + [anon_sym___attribute__] = ACTIONS(6856), + [anon_sym___declspec] = ACTIONS(6856), + [anon_sym___cdecl] = ACTIONS(6856), + [anon_sym___clrcall] = ACTIONS(6856), + [anon_sym___stdcall] = ACTIONS(6856), + [anon_sym___fastcall] = ACTIONS(6856), + [anon_sym___thiscall] = ACTIONS(6856), + [anon_sym___vectorcall] = ACTIONS(6856), + [anon_sym_LBRACE] = ACTIONS(6858), + [anon_sym_static] = ACTIONS(6856), + [anon_sym_auto] = ACTIONS(6856), + [anon_sym_register] = ACTIONS(6856), + [anon_sym_inline] = ACTIONS(6856), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6856), + [anon_sym_const] = ACTIONS(6856), + [anon_sym_volatile] = ACTIONS(6856), + [anon_sym_restrict] = ACTIONS(6856), + [anon_sym__Atomic] = ACTIONS(6856), + [anon_sym_in] = ACTIONS(6856), + [anon_sym_out] = ACTIONS(6856), + [anon_sym_inout] = ACTIONS(6856), + [anon_sym_bycopy] = ACTIONS(6856), + [anon_sym_byref] = ACTIONS(6856), + [anon_sym_oneway] = ACTIONS(6856), + [anon_sym__Nullable] = ACTIONS(6856), + [anon_sym__Nonnull] = ACTIONS(6856), + [anon_sym__Nullable_result] = ACTIONS(6856), + [anon_sym__Null_unspecified] = ACTIONS(6856), + [anon_sym___autoreleasing] = ACTIONS(6856), + [anon_sym___nullable] = ACTIONS(6856), + [anon_sym___nonnull] = ACTIONS(6856), + [anon_sym___strong] = ACTIONS(6856), + [anon_sym___weak] = ACTIONS(6856), + [anon_sym___bridge] = ACTIONS(6856), + [anon_sym___bridge_transfer] = ACTIONS(6856), + [anon_sym___bridge_retained] = ACTIONS(6856), + [anon_sym___unsafe_unretained] = ACTIONS(6856), + [anon_sym___block] = ACTIONS(6856), + [anon_sym___kindof] = ACTIONS(6856), + [anon_sym___unused] = ACTIONS(6856), + [anon_sym__Complex] = ACTIONS(6856), + [anon_sym___complex] = ACTIONS(6856), + [anon_sym_IBOutlet] = ACTIONS(6856), + [anon_sym_IBInspectable] = ACTIONS(6856), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6856), + [anon_sym_signed] = ACTIONS(6856), + [anon_sym_unsigned] = ACTIONS(6856), + [anon_sym_long] = ACTIONS(6856), + [anon_sym_short] = ACTIONS(6856), + [sym_primitive_type] = ACTIONS(6856), + [anon_sym_enum] = ACTIONS(6856), + [anon_sym_COLON] = ACTIONS(6858), + [anon_sym_struct] = ACTIONS(6856), + [anon_sym_union] = ACTIONS(6856), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6856), + [anon_sym_ATend] = ACTIONS(6858), + [sym_optional] = ACTIONS(6858), + [sym_required] = ACTIONS(6858), + [anon_sym_ATproperty] = ACTIONS(6858), + [sym_method_attribute_specifier] = ACTIONS(6856), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6856), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6856), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6856), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6856), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6856), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6856), + [anon_sym_NS_AVAILABLE] = ACTIONS(6856), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6856), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6856), + [anon_sym_API_AVAILABLE] = ACTIONS(6856), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6856), + [anon_sym_API_DEPRECATED] = ACTIONS(6856), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6856), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6856), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6856), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6856), + [anon_sym___deprecated_msg] = ACTIONS(6856), + [anon_sym___deprecated_enum_msg] = ACTIONS(6856), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6856), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6856), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6856), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6856), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6856), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6856), + [anon_sym_ATsynthesize] = ACTIONS(6858), + [anon_sym_ATdynamic] = ACTIONS(6858), + [anon_sym_NS_ENUM] = ACTIONS(6856), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(6856), + [anon_sym_NS_OPTIONS] = ACTIONS(6856), + [anon_sym_typeof] = ACTIONS(6856), + [anon_sym___typeof] = ACTIONS(6856), + [anon_sym___typeof__] = ACTIONS(6856), + [sym_id] = ACTIONS(6856), + [sym_instancetype] = ACTIONS(6856), + [sym_Class] = ACTIONS(6856), + [sym_SEL] = ACTIONS(6856), + [sym_IMP] = ACTIONS(6856), + [sym_BOOL] = ACTIONS(6856), + [sym_auto] = ACTIONS(6856), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2804] = { + [sym_compound_statement] = STATE(76), + [sym__statement] = STATE(66), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(4509), + [sym_comma_expression] = STATE(5754), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_autoreleasepool_statement] = STATE(76), + [sym_synchronized_statement] = STATE(76), + [sym_for_in_statement] = STATE(76), + [sym_try_catch_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_if] = ACTIONS(61), + [anon_sym_switch] = ACTIONS(63), + [anon_sym_case] = ACTIONS(65), + [anon_sym_default] = ACTIONS(67), + [anon_sym_while] = ACTIONS(69), + [anon_sym_do] = ACTIONS(71), + [anon_sym_for] = ACTIONS(73), + [anon_sym_return] = ACTIONS(75), + [anon_sym_break] = ACTIONS(77), + [anon_sym_continue] = ACTIONS(79), + [anon_sym_goto] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATautoreleasepool] = ACTIONS(133), + [anon_sym_ATsynchronized] = ACTIONS(135), + [anon_sym_ATtry] = ACTIONS(137), + [anon_sym_ATthrow] = ACTIONS(139), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2805] = { + [sym__declaration_specifiers] = STATE(4647), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_parameter_declaration] = STATE(5156), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6860), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2806] = { + [sym_protocol_qualifiers] = STATE(3341), + [sym_generic_type_references] = STATE(3341), + [aux_sym_generic_type_specifier_repeat1] = STATE(3341), + [sym_identifier] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6779), + [anon_sym_LPAREN2] = ACTIONS(6815), + [anon_sym_DASH] = ACTIONS(6777), + [anon_sym_PLUS] = ACTIONS(6777), + [anon_sym_STAR] = ACTIONS(6819), + [anon_sym_SLASH] = ACTIONS(6777), + [anon_sym_PERCENT] = ACTIONS(6777), + [anon_sym_PIPE_PIPE] = ACTIONS(6779), + [anon_sym_AMP_AMP] = ACTIONS(6779), + [anon_sym_PIPE] = ACTIONS(6777), + [anon_sym_CARET] = ACTIONS(6777), + [anon_sym_AMP] = ACTIONS(6777), + [anon_sym_EQ_EQ] = ACTIONS(6779), + [anon_sym_BANG_EQ] = ACTIONS(6779), + [anon_sym_GT] = ACTIONS(6777), + [anon_sym_GT_EQ] = ACTIONS(6779), + [anon_sym_LT_EQ] = ACTIONS(6779), + [anon_sym_LT] = ACTIONS(6822), + [anon_sym_LT_LT] = ACTIONS(6777), + [anon_sym_GT_GT] = ACTIONS(6777), + [anon_sym_SEMI] = ACTIONS(6779), + [anon_sym_extern] = ACTIONS(6813), + [anon_sym___attribute] = ACTIONS(6813), + [anon_sym___attribute__] = ACTIONS(6813), + [anon_sym___declspec] = ACTIONS(6813), + [anon_sym___based] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6825), + [anon_sym_EQ] = ACTIONS(6828), + [anon_sym_static] = ACTIONS(6813), + [anon_sym_auto] = ACTIONS(6813), + [anon_sym_register] = ACTIONS(6813), + [anon_sym_inline] = ACTIONS(6813), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6813), + [anon_sym_const] = ACTIONS(6813), + [anon_sym_volatile] = ACTIONS(6813), + [anon_sym_restrict] = ACTIONS(6813), + [anon_sym__Atomic] = ACTIONS(6813), + [anon_sym_in] = ACTIONS(6813), + [anon_sym_out] = ACTIONS(6813), + [anon_sym_inout] = ACTIONS(6813), + [anon_sym_bycopy] = ACTIONS(6813), + [anon_sym_byref] = ACTIONS(6813), + [anon_sym_oneway] = ACTIONS(6813), + [anon_sym__Nullable] = ACTIONS(6813), + [anon_sym__Nonnull] = ACTIONS(6813), + [anon_sym__Nullable_result] = ACTIONS(6813), + [anon_sym__Null_unspecified] = ACTIONS(6813), + [anon_sym___autoreleasing] = ACTIONS(6813), + [anon_sym___nullable] = ACTIONS(6813), + [anon_sym___nonnull] = ACTIONS(6813), + [anon_sym___strong] = ACTIONS(6813), + [anon_sym___weak] = ACTIONS(6813), + [anon_sym___bridge] = ACTIONS(6813), + [anon_sym___bridge_transfer] = ACTIONS(6813), + [anon_sym___bridge_retained] = ACTIONS(6813), + [anon_sym___unsafe_unretained] = ACTIONS(6813), + [anon_sym___block] = ACTIONS(6813), + [anon_sym___kindof] = ACTIONS(6813), + [anon_sym___unused] = ACTIONS(6813), + [anon_sym__Complex] = ACTIONS(6813), + [anon_sym___complex] = ACTIONS(6813), + [anon_sym_IBOutlet] = ACTIONS(6813), + [anon_sym_IBInspectable] = ACTIONS(6813), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6813), + [anon_sym_QMARK] = ACTIONS(6779), + [anon_sym_STAR_EQ] = ACTIONS(6832), + [anon_sym_SLASH_EQ] = ACTIONS(6832), + [anon_sym_PERCENT_EQ] = ACTIONS(6832), + [anon_sym_PLUS_EQ] = ACTIONS(6832), + [anon_sym_DASH_EQ] = ACTIONS(6832), + [anon_sym_LT_LT_EQ] = ACTIONS(6832), + [anon_sym_GT_GT_EQ] = ACTIONS(6832), + [anon_sym_AMP_EQ] = ACTIONS(6832), + [anon_sym_CARET_EQ] = ACTIONS(6832), + [anon_sym_PIPE_EQ] = ACTIONS(6832), + [anon_sym_DASH_DASH] = ACTIONS(6779), + [anon_sym_PLUS_PLUS] = ACTIONS(6779), + [anon_sym_DOT] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(6779), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6813), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6813), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE] = ACTIONS(6813), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_API_AVAILABLE] = ACTIONS(6813), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_API_DEPRECATED] = ACTIONS(6813), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6813), + [anon_sym___deprecated_msg] = ACTIONS(6813), + [anon_sym___deprecated_enum_msg] = ACTIONS(6813), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6813), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2807] = { + [sym__declaration_specifiers] = STATE(4647), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_parameter_declaration] = STATE(5480), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6862), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2808] = { + [sym__declaration_specifiers] = STATE(4647), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_parameter_declaration] = STATE(5386), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6864), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2809] = { + [sym__declaration_specifiers] = STATE(4647), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_parameter_declaration] = STATE(5771), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6866), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2810] = { + [sym__declaration_specifiers] = STATE(4717), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_typedef] = ACTIONS(6868), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2811] = { + [sym__declaration_specifiers] = STATE(4728), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_typedef] = ACTIONS(6787), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2812] = { + [sym__declaration_specifiers] = STATE(4721), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_typedef] = ACTIONS(6764), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2813] = { + [sym__declaration_specifiers] = STATE(3913), + [sym_attribute_specifier] = STATE(2946), + [sym_ms_declspec_modifier] = STATE(2946), + [sym_storage_class_specifier] = STATE(2946), + [sym_type_qualifier] = STATE(2946), + [sym__type_specifier] = STATE(3346), + [sym_sized_type_specifier] = STATE(3346), + [sym_enum_specifier] = STATE(3346), + [sym_struct_specifier] = STATE(3346), + [sym_union_specifier] = STATE(3346), + [sym_macro_type_specifier] = STATE(3346), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3346), + [sym_typeof_specifier] = STATE(3346), + [sym_atomic_specifier] = STATE(3346), + [sym_generic_type_specifier] = STATE(3346), + [aux_sym__declaration_specifiers_repeat1] = STATE(2946), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(6803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_NOESCAPE] = ACTIONS(6870), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(6803), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(6803), + [sym_IMP] = ACTIONS(6803), + [sym_BOOL] = ACTIONS(6803), + [sym_auto] = ACTIONS(6803), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2814] = { + [sym__declaration_specifiers] = STATE(4714), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_typedef] = ACTIONS(6797), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2815] = { + [sym__declaration_specifiers] = STATE(3911), + [sym_attribute_specifier] = STATE(2945), + [sym_ms_declspec_modifier] = STATE(2945), + [sym_storage_class_specifier] = STATE(2945), + [sym_type_qualifier] = STATE(2945), + [sym__type_specifier] = STATE(3352), + [sym_sized_type_specifier] = STATE(3352), + [sym_enum_specifier] = STATE(3352), + [sym_struct_specifier] = STATE(3352), + [sym_union_specifier] = STATE(3352), + [sym_macro_type_specifier] = STATE(3352), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3352), + [sym_typeof_specifier] = STATE(3352), + [sym_atomic_specifier] = STATE(3352), + [sym_generic_type_specifier] = STATE(3352), + [aux_sym__declaration_specifiers_repeat1] = STATE(2945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), @@ -479599,36 +468767,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(1127), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_NOESCAPE] = ACTIONS(6928), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_NOESCAPE] = ACTIONS(6872), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), @@ -479646,112 +468814,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2897] = { - [sym__declaration_specifiers] = STATE(4703), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_typedef] = ACTIONS(6886), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [2816] = { + [sym_identifier] = ACTIONS(1748), + [aux_sym_preproc_def_token1] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_typedef] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym___attribute] = ACTIONS(1748), + [anon_sym___attribute__] = ACTIONS(1748), + [anon_sym___declspec] = ACTIONS(1748), + [anon_sym___cdecl] = ACTIONS(1748), + [anon_sym___clrcall] = ACTIONS(1748), + [anon_sym___stdcall] = ACTIONS(1748), + [anon_sym___fastcall] = ACTIONS(1748), + [anon_sym___thiscall] = ACTIONS(1748), + [anon_sym___vectorcall] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_auto] = ACTIONS(1748), + [anon_sym_register] = ACTIONS(1748), + [anon_sym_inline] = ACTIONS(1748), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_volatile] = ACTIONS(1748), + [anon_sym_restrict] = ACTIONS(1748), + [anon_sym__Atomic] = ACTIONS(1748), + [anon_sym_in] = ACTIONS(1748), + [anon_sym_out] = ACTIONS(1748), + [anon_sym_inout] = ACTIONS(1748), + [anon_sym_bycopy] = ACTIONS(1748), + [anon_sym_byref] = ACTIONS(1748), + [anon_sym_oneway] = ACTIONS(1748), + [anon_sym__Nullable] = ACTIONS(1748), + [anon_sym__Nonnull] = ACTIONS(1748), + [anon_sym__Nullable_result] = ACTIONS(1748), + [anon_sym__Null_unspecified] = ACTIONS(1748), + [anon_sym___autoreleasing] = ACTIONS(1748), + [anon_sym___nullable] = ACTIONS(1748), + [anon_sym___nonnull] = ACTIONS(1748), + [anon_sym___strong] = ACTIONS(1748), + [anon_sym___weak] = ACTIONS(1748), + [anon_sym___bridge] = ACTIONS(1748), + [anon_sym___bridge_transfer] = ACTIONS(1748), + [anon_sym___bridge_retained] = ACTIONS(1748), + [anon_sym___unsafe_unretained] = ACTIONS(1748), + [anon_sym___block] = ACTIONS(1748), + [anon_sym___kindof] = ACTIONS(1748), + [anon_sym___unused] = ACTIONS(1748), + [anon_sym__Complex] = ACTIONS(1748), + [anon_sym___complex] = ACTIONS(1748), + [anon_sym_IBOutlet] = ACTIONS(1748), + [anon_sym_IBInspectable] = ACTIONS(1748), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1748), + [anon_sym_signed] = ACTIONS(1748), + [anon_sym_unsigned] = ACTIONS(1748), + [anon_sym_long] = ACTIONS(1748), + [anon_sym_short] = ACTIONS(1748), + [sym_primitive_type] = ACTIONS(1748), + [anon_sym_enum] = ACTIONS(1748), + [anon_sym_struct] = ACTIONS(1748), + [anon_sym_union] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1748), + [anon_sym_ATend] = ACTIONS(1750), + [sym_optional] = ACTIONS(1750), + [sym_required] = ACTIONS(1750), + [anon_sym_ATproperty] = ACTIONS(1750), + [sym_method_attribute_specifier] = ACTIONS(1748), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1748), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1748), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1748), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1748), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1748), + [anon_sym_NS_AVAILABLE] = ACTIONS(1748), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1748), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_API_AVAILABLE] = ACTIONS(1748), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_API_DEPRECATED] = ACTIONS(1748), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1748), + [anon_sym___deprecated_msg] = ACTIONS(1748), + [anon_sym___deprecated_enum_msg] = ACTIONS(1748), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1748), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1748), + [anon_sym_ATsynthesize] = ACTIONS(1750), + [anon_sym_ATdynamic] = ACTIONS(1750), + [anon_sym_NS_ENUM] = ACTIONS(1748), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1748), + [anon_sym_NS_OPTIONS] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(1748), + [anon_sym___typeof] = ACTIONS(1748), + [anon_sym___typeof__] = ACTIONS(1748), + [sym_id] = ACTIONS(1748), + [sym_instancetype] = ACTIONS(1748), + [sym_Class] = ACTIONS(1748), + [sym_SEL] = ACTIONS(1748), + [sym_IMP] = ACTIONS(1748), + [sym_BOOL] = ACTIONS(1748), + [sym_auto] = ACTIONS(1748), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -479759,112 +468927,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2898] = { - [sym_identifier] = ACTIONS(1431), - [aux_sym_preproc_def_token1] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_typedef] = ACTIONS(1431), - [anon_sym_extern] = ACTIONS(1431), - [anon_sym___attribute] = ACTIONS(1431), - [anon_sym___attribute__] = ACTIONS(1431), - [anon_sym___declspec] = ACTIONS(1431), - [anon_sym___cdecl] = ACTIONS(1431), - [anon_sym___clrcall] = ACTIONS(1431), - [anon_sym___stdcall] = ACTIONS(1431), - [anon_sym___fastcall] = ACTIONS(1431), - [anon_sym___thiscall] = ACTIONS(1431), - [anon_sym___vectorcall] = ACTIONS(1431), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_auto] = ACTIONS(1431), - [anon_sym_register] = ACTIONS(1431), - [anon_sym_inline] = ACTIONS(1431), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [anon_sym_volatile] = ACTIONS(1431), - [anon_sym_restrict] = ACTIONS(1431), - [anon_sym__Atomic] = ACTIONS(1431), - [anon_sym_in] = ACTIONS(1431), - [anon_sym_out] = ACTIONS(1431), - [anon_sym_inout] = ACTIONS(1431), - [anon_sym_bycopy] = ACTIONS(1431), - [anon_sym_byref] = ACTIONS(1431), - [anon_sym_oneway] = ACTIONS(1431), - [anon_sym__Nullable] = ACTIONS(1431), - [anon_sym__Nonnull] = ACTIONS(1431), - [anon_sym__Nullable_result] = ACTIONS(1431), - [anon_sym__Null_unspecified] = ACTIONS(1431), - [anon_sym___autoreleasing] = ACTIONS(1431), - [anon_sym___nullable] = ACTIONS(1431), - [anon_sym___nonnull] = ACTIONS(1431), - [anon_sym___strong] = ACTIONS(1431), - [anon_sym___weak] = ACTIONS(1431), - [anon_sym___bridge] = ACTIONS(1431), - [anon_sym___bridge_transfer] = ACTIONS(1431), - [anon_sym___bridge_retained] = ACTIONS(1431), - [anon_sym___unsafe_unretained] = ACTIONS(1431), - [anon_sym___block] = ACTIONS(1431), - [anon_sym___kindof] = ACTIONS(1431), - [anon_sym___unused] = ACTIONS(1431), - [anon_sym__Complex] = ACTIONS(1431), - [anon_sym___complex] = ACTIONS(1431), - [anon_sym_IBOutlet] = ACTIONS(1431), - [anon_sym_IBInspectable] = ACTIONS(1431), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1431), - [anon_sym_signed] = ACTIONS(1431), - [anon_sym_unsigned] = ACTIONS(1431), - [anon_sym_long] = ACTIONS(1431), - [anon_sym_short] = ACTIONS(1431), - [sym_primitive_type] = ACTIONS(1431), - [anon_sym_enum] = ACTIONS(1431), - [anon_sym_NS_ENUM] = ACTIONS(1431), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1431), - [anon_sym_NS_OPTIONS] = ACTIONS(1431), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1431), + [2817] = { + [sym_identifier] = ACTIONS(1445), + [aux_sym_preproc_def_token1] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_typedef] = ACTIONS(1445), + [anon_sym_extern] = ACTIONS(1445), + [anon_sym___attribute] = ACTIONS(1445), + [anon_sym___attribute__] = ACTIONS(1445), + [anon_sym___declspec] = ACTIONS(1445), + [anon_sym___cdecl] = ACTIONS(1445), + [anon_sym___clrcall] = ACTIONS(1445), + [anon_sym___stdcall] = ACTIONS(1445), + [anon_sym___fastcall] = ACTIONS(1445), + [anon_sym___thiscall] = ACTIONS(1445), + [anon_sym___vectorcall] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_auto] = ACTIONS(1445), + [anon_sym_register] = ACTIONS(1445), + [anon_sym_inline] = ACTIONS(1445), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_volatile] = ACTIONS(1445), + [anon_sym_restrict] = ACTIONS(1445), + [anon_sym__Atomic] = ACTIONS(1445), + [anon_sym_in] = ACTIONS(1445), + [anon_sym_out] = ACTIONS(1445), + [anon_sym_inout] = ACTIONS(1445), + [anon_sym_bycopy] = ACTIONS(1445), + [anon_sym_byref] = ACTIONS(1445), + [anon_sym_oneway] = ACTIONS(1445), + [anon_sym__Nullable] = ACTIONS(1445), + [anon_sym__Nonnull] = ACTIONS(1445), + [anon_sym__Nullable_result] = ACTIONS(1445), + [anon_sym__Null_unspecified] = ACTIONS(1445), + [anon_sym___autoreleasing] = ACTIONS(1445), + [anon_sym___nullable] = ACTIONS(1445), + [anon_sym___nonnull] = ACTIONS(1445), + [anon_sym___strong] = ACTIONS(1445), + [anon_sym___weak] = ACTIONS(1445), + [anon_sym___bridge] = ACTIONS(1445), + [anon_sym___bridge_transfer] = ACTIONS(1445), + [anon_sym___bridge_retained] = ACTIONS(1445), + [anon_sym___unsafe_unretained] = ACTIONS(1445), + [anon_sym___block] = ACTIONS(1445), + [anon_sym___kindof] = ACTIONS(1445), + [anon_sym___unused] = ACTIONS(1445), + [anon_sym__Complex] = ACTIONS(1445), + [anon_sym___complex] = ACTIONS(1445), + [anon_sym_IBOutlet] = ACTIONS(1445), + [anon_sym_IBInspectable] = ACTIONS(1445), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1445), + [anon_sym_signed] = ACTIONS(1445), + [anon_sym_unsigned] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [sym_primitive_type] = ACTIONS(1445), + [anon_sym_enum] = ACTIONS(1445), + [anon_sym_struct] = ACTIONS(1445), + [anon_sym_union] = ACTIONS(1445), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1431), - [anon_sym_ATend] = ACTIONS(1429), - [sym_optional] = ACTIONS(1429), - [sym_required] = ACTIONS(1429), - [anon_sym_ATproperty] = ACTIONS(1429), - [sym_method_attribute_specifier] = ACTIONS(1431), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1431), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1431), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1431), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1431), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1431), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1431), - [anon_sym_NS_AVAILABLE] = ACTIONS(1431), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1431), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1431), - [anon_sym_API_AVAILABLE] = ACTIONS(1431), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1431), - [anon_sym_API_DEPRECATED] = ACTIONS(1431), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1431), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1431), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1431), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1431), - [anon_sym___deprecated_msg] = ACTIONS(1431), - [anon_sym___deprecated_enum_msg] = ACTIONS(1431), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1431), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1431), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1431), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1431), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1431), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1431), - [anon_sym_ATsynthesize] = ACTIONS(1429), - [anon_sym_ATdynamic] = ACTIONS(1429), - [anon_sym_typeof] = ACTIONS(1431), - [anon_sym___typeof] = ACTIONS(1431), - [anon_sym___typeof__] = ACTIONS(1431), - [sym_id] = ACTIONS(1431), - [sym_instancetype] = ACTIONS(1431), - [sym_Class] = ACTIONS(1431), - [sym_SEL] = ACTIONS(1431), - [sym_IMP] = ACTIONS(1431), - [sym_BOOL] = ACTIONS(1431), - [sym_auto] = ACTIONS(1431), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1445), + [anon_sym_ATend] = ACTIONS(1447), + [sym_optional] = ACTIONS(1447), + [sym_required] = ACTIONS(1447), + [anon_sym_ATproperty] = ACTIONS(1447), + [sym_method_attribute_specifier] = ACTIONS(1445), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1445), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1445), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1445), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1445), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1445), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1445), + [anon_sym_NS_AVAILABLE] = ACTIONS(1445), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1445), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1445), + [anon_sym_API_AVAILABLE] = ACTIONS(1445), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1445), + [anon_sym_API_DEPRECATED] = ACTIONS(1445), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1445), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1445), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1445), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1445), + [anon_sym___deprecated_msg] = ACTIONS(1445), + [anon_sym___deprecated_enum_msg] = ACTIONS(1445), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1445), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1445), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1445), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1445), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1445), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1445), + [anon_sym_ATsynthesize] = ACTIONS(1447), + [anon_sym_ATdynamic] = ACTIONS(1447), + [anon_sym_NS_ENUM] = ACTIONS(1445), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1445), + [anon_sym_NS_OPTIONS] = ACTIONS(1445), + [anon_sym_typeof] = ACTIONS(1445), + [anon_sym___typeof] = ACTIONS(1445), + [anon_sym___typeof__] = ACTIONS(1445), + [sym_id] = ACTIONS(1445), + [sym_instancetype] = ACTIONS(1445), + [sym_Class] = ACTIONS(1445), + [sym_SEL] = ACTIONS(1445), + [sym_IMP] = ACTIONS(1445), + [sym_BOOL] = ACTIONS(1445), + [sym_auto] = ACTIONS(1445), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -479872,112 +469040,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2899] = { - [sym_identifier] = ACTIONS(1427), - [aux_sym_preproc_def_token1] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_typedef] = ACTIONS(1427), - [anon_sym_extern] = ACTIONS(1427), - [anon_sym___attribute] = ACTIONS(1427), - [anon_sym___attribute__] = ACTIONS(1427), - [anon_sym___declspec] = ACTIONS(1427), - [anon_sym___cdecl] = ACTIONS(1427), - [anon_sym___clrcall] = ACTIONS(1427), - [anon_sym___stdcall] = ACTIONS(1427), - [anon_sym___fastcall] = ACTIONS(1427), - [anon_sym___thiscall] = ACTIONS(1427), - [anon_sym___vectorcall] = ACTIONS(1427), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_auto] = ACTIONS(1427), - [anon_sym_register] = ACTIONS(1427), - [anon_sym_inline] = ACTIONS(1427), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(1427), - [anon_sym_volatile] = ACTIONS(1427), - [anon_sym_restrict] = ACTIONS(1427), - [anon_sym__Atomic] = ACTIONS(1427), - [anon_sym_in] = ACTIONS(1427), - [anon_sym_out] = ACTIONS(1427), - [anon_sym_inout] = ACTIONS(1427), - [anon_sym_bycopy] = ACTIONS(1427), - [anon_sym_byref] = ACTIONS(1427), - [anon_sym_oneway] = ACTIONS(1427), - [anon_sym__Nullable] = ACTIONS(1427), - [anon_sym__Nonnull] = ACTIONS(1427), - [anon_sym__Nullable_result] = ACTIONS(1427), - [anon_sym__Null_unspecified] = ACTIONS(1427), - [anon_sym___autoreleasing] = ACTIONS(1427), - [anon_sym___nullable] = ACTIONS(1427), - [anon_sym___nonnull] = ACTIONS(1427), - [anon_sym___strong] = ACTIONS(1427), - [anon_sym___weak] = ACTIONS(1427), - [anon_sym___bridge] = ACTIONS(1427), - [anon_sym___bridge_transfer] = ACTIONS(1427), - [anon_sym___bridge_retained] = ACTIONS(1427), - [anon_sym___unsafe_unretained] = ACTIONS(1427), - [anon_sym___block] = ACTIONS(1427), - [anon_sym___kindof] = ACTIONS(1427), - [anon_sym___unused] = ACTIONS(1427), - [anon_sym__Complex] = ACTIONS(1427), - [anon_sym___complex] = ACTIONS(1427), - [anon_sym_IBOutlet] = ACTIONS(1427), - [anon_sym_IBInspectable] = ACTIONS(1427), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1427), - [anon_sym_signed] = ACTIONS(1427), - [anon_sym_unsigned] = ACTIONS(1427), - [anon_sym_long] = ACTIONS(1427), - [anon_sym_short] = ACTIONS(1427), - [sym_primitive_type] = ACTIONS(1427), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_NS_ENUM] = ACTIONS(1427), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1427), - [anon_sym_NS_OPTIONS] = ACTIONS(1427), - [anon_sym_struct] = ACTIONS(1427), - [anon_sym_union] = ACTIONS(1427), + [2818] = { + [sym_identifier] = ACTIONS(1383), + [aux_sym_preproc_def_token1] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_typedef] = ACTIONS(1383), + [anon_sym_extern] = ACTIONS(1383), + [anon_sym___attribute] = ACTIONS(1383), + [anon_sym___attribute__] = ACTIONS(1383), + [anon_sym___declspec] = ACTIONS(1383), + [anon_sym___cdecl] = ACTIONS(1383), + [anon_sym___clrcall] = ACTIONS(1383), + [anon_sym___stdcall] = ACTIONS(1383), + [anon_sym___fastcall] = ACTIONS(1383), + [anon_sym___thiscall] = ACTIONS(1383), + [anon_sym___vectorcall] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(1383), + [anon_sym_auto] = ACTIONS(1383), + [anon_sym_register] = ACTIONS(1383), + [anon_sym_inline] = ACTIONS(1383), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1383), + [anon_sym_const] = ACTIONS(1383), + [anon_sym_volatile] = ACTIONS(1383), + [anon_sym_restrict] = ACTIONS(1383), + [anon_sym__Atomic] = ACTIONS(1383), + [anon_sym_in] = ACTIONS(1383), + [anon_sym_out] = ACTIONS(1383), + [anon_sym_inout] = ACTIONS(1383), + [anon_sym_bycopy] = ACTIONS(1383), + [anon_sym_byref] = ACTIONS(1383), + [anon_sym_oneway] = ACTIONS(1383), + [anon_sym__Nullable] = ACTIONS(1383), + [anon_sym__Nonnull] = ACTIONS(1383), + [anon_sym__Nullable_result] = ACTIONS(1383), + [anon_sym__Null_unspecified] = ACTIONS(1383), + [anon_sym___autoreleasing] = ACTIONS(1383), + [anon_sym___nullable] = ACTIONS(1383), + [anon_sym___nonnull] = ACTIONS(1383), + [anon_sym___strong] = ACTIONS(1383), + [anon_sym___weak] = ACTIONS(1383), + [anon_sym___bridge] = ACTIONS(1383), + [anon_sym___bridge_transfer] = ACTIONS(1383), + [anon_sym___bridge_retained] = ACTIONS(1383), + [anon_sym___unsafe_unretained] = ACTIONS(1383), + [anon_sym___block] = ACTIONS(1383), + [anon_sym___kindof] = ACTIONS(1383), + [anon_sym___unused] = ACTIONS(1383), + [anon_sym__Complex] = ACTIONS(1383), + [anon_sym___complex] = ACTIONS(1383), + [anon_sym_IBOutlet] = ACTIONS(1383), + [anon_sym_IBInspectable] = ACTIONS(1383), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1383), + [anon_sym_signed] = ACTIONS(1383), + [anon_sym_unsigned] = ACTIONS(1383), + [anon_sym_long] = ACTIONS(1383), + [anon_sym_short] = ACTIONS(1383), + [sym_primitive_type] = ACTIONS(1383), + [anon_sym_enum] = ACTIONS(1383), + [anon_sym_struct] = ACTIONS(1383), + [anon_sym_union] = ACTIONS(1383), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1427), - [anon_sym_ATend] = ACTIONS(1425), - [sym_optional] = ACTIONS(1425), - [sym_required] = ACTIONS(1425), - [anon_sym_ATproperty] = ACTIONS(1425), - [sym_method_attribute_specifier] = ACTIONS(1427), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1427), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1427), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1427), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1427), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1427), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1427), - [anon_sym_NS_AVAILABLE] = ACTIONS(1427), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1427), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1427), - [anon_sym_API_AVAILABLE] = ACTIONS(1427), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1427), - [anon_sym_API_DEPRECATED] = ACTIONS(1427), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1427), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1427), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1427), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1427), - [anon_sym___deprecated_msg] = ACTIONS(1427), - [anon_sym___deprecated_enum_msg] = ACTIONS(1427), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1427), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1427), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1427), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1427), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1427), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1427), - [anon_sym_ATsynthesize] = ACTIONS(1425), - [anon_sym_ATdynamic] = ACTIONS(1425), - [anon_sym_typeof] = ACTIONS(1427), - [anon_sym___typeof] = ACTIONS(1427), - [anon_sym___typeof__] = ACTIONS(1427), - [sym_id] = ACTIONS(1427), - [sym_instancetype] = ACTIONS(1427), - [sym_Class] = ACTIONS(1427), - [sym_SEL] = ACTIONS(1427), - [sym_IMP] = ACTIONS(1427), - [sym_BOOL] = ACTIONS(1427), - [sym_auto] = ACTIONS(1427), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1383), + [anon_sym_ATend] = ACTIONS(1385), + [sym_optional] = ACTIONS(1385), + [sym_required] = ACTIONS(1385), + [anon_sym_ATproperty] = ACTIONS(1385), + [sym_method_attribute_specifier] = ACTIONS(1383), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1383), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1383), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1383), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1383), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1383), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1383), + [anon_sym_NS_AVAILABLE] = ACTIONS(1383), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1383), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1383), + [anon_sym_API_AVAILABLE] = ACTIONS(1383), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1383), + [anon_sym_API_DEPRECATED] = ACTIONS(1383), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1383), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1383), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1383), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1383), + [anon_sym___deprecated_msg] = ACTIONS(1383), + [anon_sym___deprecated_enum_msg] = ACTIONS(1383), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1383), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1383), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1383), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1383), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1383), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1383), + [anon_sym_ATsynthesize] = ACTIONS(1385), + [anon_sym_ATdynamic] = ACTIONS(1385), + [anon_sym_NS_ENUM] = ACTIONS(1383), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1383), + [anon_sym_NS_OPTIONS] = ACTIONS(1383), + [anon_sym_typeof] = ACTIONS(1383), + [anon_sym___typeof] = ACTIONS(1383), + [anon_sym___typeof__] = ACTIONS(1383), + [sym_id] = ACTIONS(1383), + [sym_instancetype] = ACTIONS(1383), + [sym_Class] = ACTIONS(1383), + [sym_SEL] = ACTIONS(1383), + [sym_IMP] = ACTIONS(1383), + [sym_BOOL] = ACTIONS(1383), + [sym_auto] = ACTIONS(1383), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -479985,674 +469153,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2900] = { - [sym_identifier] = ACTIONS(1369), - [aux_sym_preproc_def_token1] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_typedef] = ACTIONS(1369), - [anon_sym_extern] = ACTIONS(1369), - [anon_sym___attribute] = ACTIONS(1369), - [anon_sym___attribute__] = ACTIONS(1369), - [anon_sym___declspec] = ACTIONS(1369), - [anon_sym___cdecl] = ACTIONS(1369), - [anon_sym___clrcall] = ACTIONS(1369), - [anon_sym___stdcall] = ACTIONS(1369), - [anon_sym___fastcall] = ACTIONS(1369), - [anon_sym___thiscall] = ACTIONS(1369), - [anon_sym___vectorcall] = ACTIONS(1369), - [anon_sym_static] = ACTIONS(1369), - [anon_sym_auto] = ACTIONS(1369), - [anon_sym_register] = ACTIONS(1369), - [anon_sym_inline] = ACTIONS(1369), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_volatile] = ACTIONS(1369), - [anon_sym_restrict] = ACTIONS(1369), - [anon_sym__Atomic] = ACTIONS(1369), - [anon_sym_in] = ACTIONS(1369), - [anon_sym_out] = ACTIONS(1369), - [anon_sym_inout] = ACTIONS(1369), - [anon_sym_bycopy] = ACTIONS(1369), - [anon_sym_byref] = ACTIONS(1369), - [anon_sym_oneway] = ACTIONS(1369), - [anon_sym__Nullable] = ACTIONS(1369), - [anon_sym__Nonnull] = ACTIONS(1369), - [anon_sym__Nullable_result] = ACTIONS(1369), - [anon_sym__Null_unspecified] = ACTIONS(1369), - [anon_sym___autoreleasing] = ACTIONS(1369), - [anon_sym___nullable] = ACTIONS(1369), - [anon_sym___nonnull] = ACTIONS(1369), - [anon_sym___strong] = ACTIONS(1369), - [anon_sym___weak] = ACTIONS(1369), - [anon_sym___bridge] = ACTIONS(1369), - [anon_sym___bridge_transfer] = ACTIONS(1369), - [anon_sym___bridge_retained] = ACTIONS(1369), - [anon_sym___unsafe_unretained] = ACTIONS(1369), - [anon_sym___block] = ACTIONS(1369), - [anon_sym___kindof] = ACTIONS(1369), - [anon_sym___unused] = ACTIONS(1369), - [anon_sym__Complex] = ACTIONS(1369), - [anon_sym___complex] = ACTIONS(1369), - [anon_sym_IBOutlet] = ACTIONS(1369), - [anon_sym_IBInspectable] = ACTIONS(1369), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1369), - [anon_sym_signed] = ACTIONS(1369), - [anon_sym_unsigned] = ACTIONS(1369), - [anon_sym_long] = ACTIONS(1369), - [anon_sym_short] = ACTIONS(1369), - [sym_primitive_type] = ACTIONS(1369), - [anon_sym_enum] = ACTIONS(1369), - [anon_sym_NS_ENUM] = ACTIONS(1369), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1369), - [anon_sym_NS_OPTIONS] = ACTIONS(1369), - [anon_sym_struct] = ACTIONS(1369), - [anon_sym_union] = ACTIONS(1369), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1369), - [anon_sym_ATend] = ACTIONS(1371), - [sym_optional] = ACTIONS(1371), - [sym_required] = ACTIONS(1371), - [anon_sym_ATproperty] = ACTIONS(1371), - [sym_method_attribute_specifier] = ACTIONS(1369), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1369), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1369), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1369), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1369), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1369), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1369), - [anon_sym_NS_AVAILABLE] = ACTIONS(1369), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1369), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1369), - [anon_sym_API_AVAILABLE] = ACTIONS(1369), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1369), - [anon_sym_API_DEPRECATED] = ACTIONS(1369), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1369), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1369), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1369), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1369), - [anon_sym___deprecated_msg] = ACTIONS(1369), - [anon_sym___deprecated_enum_msg] = ACTIONS(1369), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1369), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1369), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1369), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1369), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1369), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1369), - [anon_sym_ATsynthesize] = ACTIONS(1371), - [anon_sym_ATdynamic] = ACTIONS(1371), - [anon_sym_typeof] = ACTIONS(1369), - [anon_sym___typeof] = ACTIONS(1369), - [anon_sym___typeof__] = ACTIONS(1369), - [sym_id] = ACTIONS(1369), - [sym_instancetype] = ACTIONS(1369), - [sym_Class] = ACTIONS(1369), - [sym_SEL] = ACTIONS(1369), - [sym_IMP] = ACTIONS(1369), - [sym_BOOL] = ACTIONS(1369), - [sym_auto] = ACTIONS(1369), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2901] = { - [sym_identifier] = ACTIONS(1361), - [aux_sym_preproc_def_token1] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_typedef] = ACTIONS(1361), - [anon_sym_extern] = ACTIONS(1361), - [anon_sym___attribute] = ACTIONS(1361), - [anon_sym___attribute__] = ACTIONS(1361), - [anon_sym___declspec] = ACTIONS(1361), - [anon_sym___cdecl] = ACTIONS(1361), - [anon_sym___clrcall] = ACTIONS(1361), - [anon_sym___stdcall] = ACTIONS(1361), - [anon_sym___fastcall] = ACTIONS(1361), - [anon_sym___thiscall] = ACTIONS(1361), - [anon_sym___vectorcall] = ACTIONS(1361), - [anon_sym_static] = ACTIONS(1361), - [anon_sym_auto] = ACTIONS(1361), - [anon_sym_register] = ACTIONS(1361), - [anon_sym_inline] = ACTIONS(1361), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1361), - [anon_sym_const] = ACTIONS(1361), - [anon_sym_volatile] = ACTIONS(1361), - [anon_sym_restrict] = ACTIONS(1361), - [anon_sym__Atomic] = ACTIONS(1361), - [anon_sym_in] = ACTIONS(1361), - [anon_sym_out] = ACTIONS(1361), - [anon_sym_inout] = ACTIONS(1361), - [anon_sym_bycopy] = ACTIONS(1361), - [anon_sym_byref] = ACTIONS(1361), - [anon_sym_oneway] = ACTIONS(1361), - [anon_sym__Nullable] = ACTIONS(1361), - [anon_sym__Nonnull] = ACTIONS(1361), - [anon_sym__Nullable_result] = ACTIONS(1361), - [anon_sym__Null_unspecified] = ACTIONS(1361), - [anon_sym___autoreleasing] = ACTIONS(1361), - [anon_sym___nullable] = ACTIONS(1361), - [anon_sym___nonnull] = ACTIONS(1361), - [anon_sym___strong] = ACTIONS(1361), - [anon_sym___weak] = ACTIONS(1361), - [anon_sym___bridge] = ACTIONS(1361), - [anon_sym___bridge_transfer] = ACTIONS(1361), - [anon_sym___bridge_retained] = ACTIONS(1361), - [anon_sym___unsafe_unretained] = ACTIONS(1361), - [anon_sym___block] = ACTIONS(1361), - [anon_sym___kindof] = ACTIONS(1361), - [anon_sym___unused] = ACTIONS(1361), - [anon_sym__Complex] = ACTIONS(1361), - [anon_sym___complex] = ACTIONS(1361), - [anon_sym_IBOutlet] = ACTIONS(1361), - [anon_sym_IBInspectable] = ACTIONS(1361), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1361), - [anon_sym_signed] = ACTIONS(1361), - [anon_sym_unsigned] = ACTIONS(1361), - [anon_sym_long] = ACTIONS(1361), - [anon_sym_short] = ACTIONS(1361), - [sym_primitive_type] = ACTIONS(1361), - [anon_sym_enum] = ACTIONS(1361), - [anon_sym_NS_ENUM] = ACTIONS(1361), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1361), - [anon_sym_NS_OPTIONS] = ACTIONS(1361), - [anon_sym_struct] = ACTIONS(1361), - [anon_sym_union] = ACTIONS(1361), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1361), - [anon_sym_ATend] = ACTIONS(1363), - [sym_optional] = ACTIONS(1363), - [sym_required] = ACTIONS(1363), - [anon_sym_ATproperty] = ACTIONS(1363), - [sym_method_attribute_specifier] = ACTIONS(1361), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1361), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1361), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1361), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1361), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1361), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1361), - [anon_sym_NS_AVAILABLE] = ACTIONS(1361), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1361), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1361), - [anon_sym_API_AVAILABLE] = ACTIONS(1361), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1361), - [anon_sym_API_DEPRECATED] = ACTIONS(1361), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1361), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1361), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1361), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1361), - [anon_sym___deprecated_msg] = ACTIONS(1361), - [anon_sym___deprecated_enum_msg] = ACTIONS(1361), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1361), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1361), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1361), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1361), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1361), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1361), - [anon_sym_ATsynthesize] = ACTIONS(1363), - [anon_sym_ATdynamic] = ACTIONS(1363), - [anon_sym_typeof] = ACTIONS(1361), - [anon_sym___typeof] = ACTIONS(1361), - [anon_sym___typeof__] = ACTIONS(1361), - [sym_id] = ACTIONS(1361), - [sym_instancetype] = ACTIONS(1361), - [sym_Class] = ACTIONS(1361), - [sym_SEL] = ACTIONS(1361), - [sym_IMP] = ACTIONS(1361), - [sym_BOOL] = ACTIONS(1361), - [sym_auto] = ACTIONS(1361), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2902] = { - [sym_identifier] = ACTIONS(1357), - [aux_sym_preproc_def_token1] = ACTIONS(1359), - [anon_sym_DASH] = ACTIONS(1359), - [anon_sym_PLUS] = ACTIONS(1359), - [anon_sym_typedef] = ACTIONS(1357), - [anon_sym_extern] = ACTIONS(1357), - [anon_sym___attribute] = ACTIONS(1357), - [anon_sym___attribute__] = ACTIONS(1357), - [anon_sym___declspec] = ACTIONS(1357), - [anon_sym___cdecl] = ACTIONS(1357), - [anon_sym___clrcall] = ACTIONS(1357), - [anon_sym___stdcall] = ACTIONS(1357), - [anon_sym___fastcall] = ACTIONS(1357), - [anon_sym___thiscall] = ACTIONS(1357), - [anon_sym___vectorcall] = ACTIONS(1357), - [anon_sym_static] = ACTIONS(1357), - [anon_sym_auto] = ACTIONS(1357), - [anon_sym_register] = ACTIONS(1357), - [anon_sym_inline] = ACTIONS(1357), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_volatile] = ACTIONS(1357), - [anon_sym_restrict] = ACTIONS(1357), - [anon_sym__Atomic] = ACTIONS(1357), - [anon_sym_in] = ACTIONS(1357), - [anon_sym_out] = ACTIONS(1357), - [anon_sym_inout] = ACTIONS(1357), - [anon_sym_bycopy] = ACTIONS(1357), - [anon_sym_byref] = ACTIONS(1357), - [anon_sym_oneway] = ACTIONS(1357), - [anon_sym__Nullable] = ACTIONS(1357), - [anon_sym__Nonnull] = ACTIONS(1357), - [anon_sym__Nullable_result] = ACTIONS(1357), - [anon_sym__Null_unspecified] = ACTIONS(1357), - [anon_sym___autoreleasing] = ACTIONS(1357), - [anon_sym___nullable] = ACTIONS(1357), - [anon_sym___nonnull] = ACTIONS(1357), - [anon_sym___strong] = ACTIONS(1357), - [anon_sym___weak] = ACTIONS(1357), - [anon_sym___bridge] = ACTIONS(1357), - [anon_sym___bridge_transfer] = ACTIONS(1357), - [anon_sym___bridge_retained] = ACTIONS(1357), - [anon_sym___unsafe_unretained] = ACTIONS(1357), - [anon_sym___block] = ACTIONS(1357), - [anon_sym___kindof] = ACTIONS(1357), - [anon_sym___unused] = ACTIONS(1357), - [anon_sym__Complex] = ACTIONS(1357), - [anon_sym___complex] = ACTIONS(1357), - [anon_sym_IBOutlet] = ACTIONS(1357), - [anon_sym_IBInspectable] = ACTIONS(1357), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1357), - [anon_sym_signed] = ACTIONS(1357), - [anon_sym_unsigned] = ACTIONS(1357), - [anon_sym_long] = ACTIONS(1357), - [anon_sym_short] = ACTIONS(1357), - [sym_primitive_type] = ACTIONS(1357), - [anon_sym_enum] = ACTIONS(1357), - [anon_sym_NS_ENUM] = ACTIONS(1357), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1357), - [anon_sym_NS_OPTIONS] = ACTIONS(1357), - [anon_sym_struct] = ACTIONS(1357), - [anon_sym_union] = ACTIONS(1357), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1357), - [anon_sym_ATend] = ACTIONS(1359), - [sym_optional] = ACTIONS(1359), - [sym_required] = ACTIONS(1359), - [anon_sym_ATproperty] = ACTIONS(1359), - [sym_method_attribute_specifier] = ACTIONS(1357), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1357), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1357), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1357), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1357), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1357), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1357), - [anon_sym_NS_AVAILABLE] = ACTIONS(1357), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1357), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1357), - [anon_sym_API_AVAILABLE] = ACTIONS(1357), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1357), - [anon_sym_API_DEPRECATED] = ACTIONS(1357), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1357), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1357), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1357), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1357), - [anon_sym___deprecated_msg] = ACTIONS(1357), - [anon_sym___deprecated_enum_msg] = ACTIONS(1357), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1357), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1357), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1357), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1357), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1357), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1357), - [anon_sym_ATsynthesize] = ACTIONS(1359), - [anon_sym_ATdynamic] = ACTIONS(1359), - [anon_sym_typeof] = ACTIONS(1357), - [anon_sym___typeof] = ACTIONS(1357), - [anon_sym___typeof__] = ACTIONS(1357), - [sym_id] = ACTIONS(1357), - [sym_instancetype] = ACTIONS(1357), - [sym_Class] = ACTIONS(1357), - [sym_SEL] = ACTIONS(1357), - [sym_IMP] = ACTIONS(1357), - [sym_BOOL] = ACTIONS(1357), - [sym_auto] = ACTIONS(1357), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2903] = { - [sym_identifier] = ACTIONS(1353), - [aux_sym_preproc_def_token1] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_typedef] = ACTIONS(1353), - [anon_sym_extern] = ACTIONS(1353), - [anon_sym___attribute] = ACTIONS(1353), - [anon_sym___attribute__] = ACTIONS(1353), - [anon_sym___declspec] = ACTIONS(1353), - [anon_sym___cdecl] = ACTIONS(1353), - [anon_sym___clrcall] = ACTIONS(1353), - [anon_sym___stdcall] = ACTIONS(1353), - [anon_sym___fastcall] = ACTIONS(1353), - [anon_sym___thiscall] = ACTIONS(1353), - [anon_sym___vectorcall] = ACTIONS(1353), - [anon_sym_static] = ACTIONS(1353), - [anon_sym_auto] = ACTIONS(1353), - [anon_sym_register] = ACTIONS(1353), - [anon_sym_inline] = ACTIONS(1353), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1353), - [anon_sym_const] = ACTIONS(1353), - [anon_sym_volatile] = ACTIONS(1353), - [anon_sym_restrict] = ACTIONS(1353), - [anon_sym__Atomic] = ACTIONS(1353), - [anon_sym_in] = ACTIONS(1353), - [anon_sym_out] = ACTIONS(1353), - [anon_sym_inout] = ACTIONS(1353), - [anon_sym_bycopy] = ACTIONS(1353), - [anon_sym_byref] = ACTIONS(1353), - [anon_sym_oneway] = ACTIONS(1353), - [anon_sym__Nullable] = ACTIONS(1353), - [anon_sym__Nonnull] = ACTIONS(1353), - [anon_sym__Nullable_result] = ACTIONS(1353), - [anon_sym__Null_unspecified] = ACTIONS(1353), - [anon_sym___autoreleasing] = ACTIONS(1353), - [anon_sym___nullable] = ACTIONS(1353), - [anon_sym___nonnull] = ACTIONS(1353), - [anon_sym___strong] = ACTIONS(1353), - [anon_sym___weak] = ACTIONS(1353), - [anon_sym___bridge] = ACTIONS(1353), - [anon_sym___bridge_transfer] = ACTIONS(1353), - [anon_sym___bridge_retained] = ACTIONS(1353), - [anon_sym___unsafe_unretained] = ACTIONS(1353), - [anon_sym___block] = ACTIONS(1353), - [anon_sym___kindof] = ACTIONS(1353), - [anon_sym___unused] = ACTIONS(1353), - [anon_sym__Complex] = ACTIONS(1353), - [anon_sym___complex] = ACTIONS(1353), - [anon_sym_IBOutlet] = ACTIONS(1353), - [anon_sym_IBInspectable] = ACTIONS(1353), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1353), - [anon_sym_signed] = ACTIONS(1353), - [anon_sym_unsigned] = ACTIONS(1353), - [anon_sym_long] = ACTIONS(1353), - [anon_sym_short] = ACTIONS(1353), - [sym_primitive_type] = ACTIONS(1353), - [anon_sym_enum] = ACTIONS(1353), - [anon_sym_NS_ENUM] = ACTIONS(1353), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1353), - [anon_sym_NS_OPTIONS] = ACTIONS(1353), - [anon_sym_struct] = ACTIONS(1353), - [anon_sym_union] = ACTIONS(1353), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1353), - [anon_sym_ATend] = ACTIONS(1355), - [sym_optional] = ACTIONS(1355), - [sym_required] = ACTIONS(1355), - [anon_sym_ATproperty] = ACTIONS(1355), - [sym_method_attribute_specifier] = ACTIONS(1353), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1353), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1353), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1353), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1353), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1353), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1353), - [anon_sym_NS_AVAILABLE] = ACTIONS(1353), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1353), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1353), - [anon_sym_API_AVAILABLE] = ACTIONS(1353), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1353), - [anon_sym_API_DEPRECATED] = ACTIONS(1353), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1353), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1353), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1353), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1353), - [anon_sym___deprecated_msg] = ACTIONS(1353), - [anon_sym___deprecated_enum_msg] = ACTIONS(1353), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1353), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1353), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1353), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1353), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1353), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1353), - [anon_sym_ATsynthesize] = ACTIONS(1355), - [anon_sym_ATdynamic] = ACTIONS(1355), - [anon_sym_typeof] = ACTIONS(1353), - [anon_sym___typeof] = ACTIONS(1353), - [anon_sym___typeof__] = ACTIONS(1353), - [sym_id] = ACTIONS(1353), - [sym_instancetype] = ACTIONS(1353), - [sym_Class] = ACTIONS(1353), - [sym_SEL] = ACTIONS(1353), - [sym_IMP] = ACTIONS(1353), - [sym_BOOL] = ACTIONS(1353), - [sym_auto] = ACTIONS(1353), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2904] = { - [sym_identifier] = ACTIONS(1349), - [aux_sym_preproc_def_token1] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(1351), - [anon_sym_PLUS] = ACTIONS(1351), - [anon_sym_typedef] = ACTIONS(1349), - [anon_sym_extern] = ACTIONS(1349), - [anon_sym___attribute] = ACTIONS(1349), - [anon_sym___attribute__] = ACTIONS(1349), - [anon_sym___declspec] = ACTIONS(1349), - [anon_sym___cdecl] = ACTIONS(1349), - [anon_sym___clrcall] = ACTIONS(1349), - [anon_sym___stdcall] = ACTIONS(1349), - [anon_sym___fastcall] = ACTIONS(1349), - [anon_sym___thiscall] = ACTIONS(1349), - [anon_sym___vectorcall] = ACTIONS(1349), - [anon_sym_static] = ACTIONS(1349), - [anon_sym_auto] = ACTIONS(1349), - [anon_sym_register] = ACTIONS(1349), - [anon_sym_inline] = ACTIONS(1349), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1349), - [anon_sym_const] = ACTIONS(1349), - [anon_sym_volatile] = ACTIONS(1349), - [anon_sym_restrict] = ACTIONS(1349), - [anon_sym__Atomic] = ACTIONS(1349), - [anon_sym_in] = ACTIONS(1349), - [anon_sym_out] = ACTIONS(1349), - [anon_sym_inout] = ACTIONS(1349), - [anon_sym_bycopy] = ACTIONS(1349), - [anon_sym_byref] = ACTIONS(1349), - [anon_sym_oneway] = ACTIONS(1349), - [anon_sym__Nullable] = ACTIONS(1349), - [anon_sym__Nonnull] = ACTIONS(1349), - [anon_sym__Nullable_result] = ACTIONS(1349), - [anon_sym__Null_unspecified] = ACTIONS(1349), - [anon_sym___autoreleasing] = ACTIONS(1349), - [anon_sym___nullable] = ACTIONS(1349), - [anon_sym___nonnull] = ACTIONS(1349), - [anon_sym___strong] = ACTIONS(1349), - [anon_sym___weak] = ACTIONS(1349), - [anon_sym___bridge] = ACTIONS(1349), - [anon_sym___bridge_transfer] = ACTIONS(1349), - [anon_sym___bridge_retained] = ACTIONS(1349), - [anon_sym___unsafe_unretained] = ACTIONS(1349), - [anon_sym___block] = ACTIONS(1349), - [anon_sym___kindof] = ACTIONS(1349), - [anon_sym___unused] = ACTIONS(1349), - [anon_sym__Complex] = ACTIONS(1349), - [anon_sym___complex] = ACTIONS(1349), - [anon_sym_IBOutlet] = ACTIONS(1349), - [anon_sym_IBInspectable] = ACTIONS(1349), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1349), - [anon_sym_signed] = ACTIONS(1349), - [anon_sym_unsigned] = ACTIONS(1349), - [anon_sym_long] = ACTIONS(1349), - [anon_sym_short] = ACTIONS(1349), - [sym_primitive_type] = ACTIONS(1349), - [anon_sym_enum] = ACTIONS(1349), - [anon_sym_NS_ENUM] = ACTIONS(1349), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1349), - [anon_sym_NS_OPTIONS] = ACTIONS(1349), - [anon_sym_struct] = ACTIONS(1349), - [anon_sym_union] = ACTIONS(1349), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1349), - [anon_sym_ATend] = ACTIONS(1351), - [sym_optional] = ACTIONS(1351), - [sym_required] = ACTIONS(1351), - [anon_sym_ATproperty] = ACTIONS(1351), - [sym_method_attribute_specifier] = ACTIONS(1349), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1349), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1349), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1349), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1349), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1349), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1349), - [anon_sym_NS_AVAILABLE] = ACTIONS(1349), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1349), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1349), - [anon_sym_API_AVAILABLE] = ACTIONS(1349), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1349), - [anon_sym_API_DEPRECATED] = ACTIONS(1349), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1349), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1349), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1349), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1349), - [anon_sym___deprecated_msg] = ACTIONS(1349), - [anon_sym___deprecated_enum_msg] = ACTIONS(1349), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1349), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1349), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1349), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1349), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1349), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1349), - [anon_sym_ATsynthesize] = ACTIONS(1351), - [anon_sym_ATdynamic] = ACTIONS(1351), - [anon_sym_typeof] = ACTIONS(1349), - [anon_sym___typeof] = ACTIONS(1349), - [anon_sym___typeof__] = ACTIONS(1349), - [sym_id] = ACTIONS(1349), - [sym_instancetype] = ACTIONS(1349), - [sym_Class] = ACTIONS(1349), - [sym_SEL] = ACTIONS(1349), - [sym_IMP] = ACTIONS(1349), - [sym_BOOL] = ACTIONS(1349), - [sym_auto] = ACTIONS(1349), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2905] = { - [sym_type_qualifier] = STATE(3454), - [sym__expression] = STATE(4497), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_type_definition_repeat1] = STATE(3454), + [2819] = { + [sym_type_qualifier] = STATE(2906), + [sym__expression] = STATE(4529), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_type_definition_repeat1] = STATE(2906), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(23), [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(6930), + [anon_sym_STAR] = ACTIONS(6874), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(6932), - [anon_sym_const] = ACTIONS(6922), - [anon_sym_volatile] = ACTIONS(6922), - [anon_sym_restrict] = ACTIONS(6922), - [anon_sym__Atomic] = ACTIONS(6922), - [anon_sym_in] = ACTIONS(6922), - [anon_sym_out] = ACTIONS(6922), - [anon_sym_inout] = ACTIONS(6922), - [anon_sym_bycopy] = ACTIONS(6922), - [anon_sym_byref] = ACTIONS(6922), - [anon_sym_oneway] = ACTIONS(6922), - [anon_sym__Nullable] = ACTIONS(6922), - [anon_sym__Nonnull] = ACTIONS(6922), - [anon_sym__Nullable_result] = ACTIONS(6922), - [anon_sym__Null_unspecified] = ACTIONS(6922), - [anon_sym___autoreleasing] = ACTIONS(6922), - [anon_sym___nullable] = ACTIONS(6922), - [anon_sym___nonnull] = ACTIONS(6922), - [anon_sym___strong] = ACTIONS(6922), - [anon_sym___weak] = ACTIONS(6922), - [anon_sym___bridge] = ACTIONS(6922), - [anon_sym___bridge_transfer] = ACTIONS(6922), - [anon_sym___bridge_retained] = ACTIONS(6922), - [anon_sym___unsafe_unretained] = ACTIONS(6922), - [anon_sym___block] = ACTIONS(6922), - [anon_sym___kindof] = ACTIONS(6922), - [anon_sym___unused] = ACTIONS(6922), - [anon_sym__Complex] = ACTIONS(6922), - [anon_sym___complex] = ACTIONS(6922), - [anon_sym_IBOutlet] = ACTIONS(6922), - [anon_sym_IBInspectable] = ACTIONS(6922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6922), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(6876), + [anon_sym_const] = ACTIONS(6878), + [anon_sym_volatile] = ACTIONS(6878), + [anon_sym_restrict] = ACTIONS(6878), + [anon_sym__Atomic] = ACTIONS(6878), + [anon_sym_in] = ACTIONS(6878), + [anon_sym_out] = ACTIONS(6878), + [anon_sym_inout] = ACTIONS(6878), + [anon_sym_bycopy] = ACTIONS(6878), + [anon_sym_byref] = ACTIONS(6878), + [anon_sym_oneway] = ACTIONS(6878), + [anon_sym__Nullable] = ACTIONS(6878), + [anon_sym__Nonnull] = ACTIONS(6878), + [anon_sym__Nullable_result] = ACTIONS(6878), + [anon_sym__Null_unspecified] = ACTIONS(6878), + [anon_sym___autoreleasing] = ACTIONS(6878), + [anon_sym___nullable] = ACTIONS(6878), + [anon_sym___nonnull] = ACTIONS(6878), + [anon_sym___strong] = ACTIONS(6878), + [anon_sym___weak] = ACTIONS(6878), + [anon_sym___bridge] = ACTIONS(6878), + [anon_sym___bridge_transfer] = ACTIONS(6878), + [anon_sym___bridge_retained] = ACTIONS(6878), + [anon_sym___unsafe_unretained] = ACTIONS(6878), + [anon_sym___block] = ACTIONS(6878), + [anon_sym___kindof] = ACTIONS(6878), + [anon_sym___unused] = ACTIONS(6878), + [anon_sym__Complex] = ACTIONS(6878), + [anon_sym___complex] = ACTIONS(6878), + [anon_sym_IBOutlet] = ACTIONS(6878), + [anon_sym_IBInspectable] = ACTIONS(6878), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -480663,6448 +469266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2906] = { - [sym_identifier] = ACTIONS(1345), - [aux_sym_preproc_def_token1] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_typedef] = ACTIONS(1345), - [anon_sym_extern] = ACTIONS(1345), - [anon_sym___attribute] = ACTIONS(1345), - [anon_sym___attribute__] = ACTIONS(1345), - [anon_sym___declspec] = ACTIONS(1345), - [anon_sym___cdecl] = ACTIONS(1345), - [anon_sym___clrcall] = ACTIONS(1345), - [anon_sym___stdcall] = ACTIONS(1345), - [anon_sym___fastcall] = ACTIONS(1345), - [anon_sym___thiscall] = ACTIONS(1345), - [anon_sym___vectorcall] = ACTIONS(1345), - [anon_sym_static] = ACTIONS(1345), - [anon_sym_auto] = ACTIONS(1345), - [anon_sym_register] = ACTIONS(1345), - [anon_sym_inline] = ACTIONS(1345), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1345), - [anon_sym_const] = ACTIONS(1345), - [anon_sym_volatile] = ACTIONS(1345), - [anon_sym_restrict] = ACTIONS(1345), - [anon_sym__Atomic] = ACTIONS(1345), - [anon_sym_in] = ACTIONS(1345), - [anon_sym_out] = ACTIONS(1345), - [anon_sym_inout] = ACTIONS(1345), - [anon_sym_bycopy] = ACTIONS(1345), - [anon_sym_byref] = ACTIONS(1345), - [anon_sym_oneway] = ACTIONS(1345), - [anon_sym__Nullable] = ACTIONS(1345), - [anon_sym__Nonnull] = ACTIONS(1345), - [anon_sym__Nullable_result] = ACTIONS(1345), - [anon_sym__Null_unspecified] = ACTIONS(1345), - [anon_sym___autoreleasing] = ACTIONS(1345), - [anon_sym___nullable] = ACTIONS(1345), - [anon_sym___nonnull] = ACTIONS(1345), - [anon_sym___strong] = ACTIONS(1345), - [anon_sym___weak] = ACTIONS(1345), - [anon_sym___bridge] = ACTIONS(1345), - [anon_sym___bridge_transfer] = ACTIONS(1345), - [anon_sym___bridge_retained] = ACTIONS(1345), - [anon_sym___unsafe_unretained] = ACTIONS(1345), - [anon_sym___block] = ACTIONS(1345), - [anon_sym___kindof] = ACTIONS(1345), - [anon_sym___unused] = ACTIONS(1345), - [anon_sym__Complex] = ACTIONS(1345), - [anon_sym___complex] = ACTIONS(1345), - [anon_sym_IBOutlet] = ACTIONS(1345), - [anon_sym_IBInspectable] = ACTIONS(1345), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1345), - [anon_sym_signed] = ACTIONS(1345), - [anon_sym_unsigned] = ACTIONS(1345), - [anon_sym_long] = ACTIONS(1345), - [anon_sym_short] = ACTIONS(1345), - [sym_primitive_type] = ACTIONS(1345), - [anon_sym_enum] = ACTIONS(1345), - [anon_sym_NS_ENUM] = ACTIONS(1345), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1345), - [anon_sym_NS_OPTIONS] = ACTIONS(1345), - [anon_sym_struct] = ACTIONS(1345), - [anon_sym_union] = ACTIONS(1345), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1345), - [anon_sym_ATend] = ACTIONS(1347), - [sym_optional] = ACTIONS(1347), - [sym_required] = ACTIONS(1347), - [anon_sym_ATproperty] = ACTIONS(1347), - [sym_method_attribute_specifier] = ACTIONS(1345), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1345), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1345), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1345), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1345), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1345), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1345), - [anon_sym_NS_AVAILABLE] = ACTIONS(1345), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1345), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1345), - [anon_sym_API_AVAILABLE] = ACTIONS(1345), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1345), - [anon_sym_API_DEPRECATED] = ACTIONS(1345), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1345), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1345), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1345), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1345), - [anon_sym___deprecated_msg] = ACTIONS(1345), - [anon_sym___deprecated_enum_msg] = ACTIONS(1345), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1345), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1345), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1345), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1345), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1345), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1345), - [anon_sym_ATsynthesize] = ACTIONS(1347), - [anon_sym_ATdynamic] = ACTIONS(1347), - [anon_sym_typeof] = ACTIONS(1345), - [anon_sym___typeof] = ACTIONS(1345), - [anon_sym___typeof__] = ACTIONS(1345), - [sym_id] = ACTIONS(1345), - [sym_instancetype] = ACTIONS(1345), - [sym_Class] = ACTIONS(1345), - [sym_SEL] = ACTIONS(1345), - [sym_IMP] = ACTIONS(1345), - [sym_BOOL] = ACTIONS(1345), - [sym_auto] = ACTIONS(1345), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2907] = { - [sym_identifier] = ACTIONS(1341), - [aux_sym_preproc_def_token1] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_typedef] = ACTIONS(1341), - [anon_sym_extern] = ACTIONS(1341), - [anon_sym___attribute] = ACTIONS(1341), - [anon_sym___attribute__] = ACTIONS(1341), - [anon_sym___declspec] = ACTIONS(1341), - [anon_sym___cdecl] = ACTIONS(1341), - [anon_sym___clrcall] = ACTIONS(1341), - [anon_sym___stdcall] = ACTIONS(1341), - [anon_sym___fastcall] = ACTIONS(1341), - [anon_sym___thiscall] = ACTIONS(1341), - [anon_sym___vectorcall] = ACTIONS(1341), - [anon_sym_static] = ACTIONS(1341), - [anon_sym_auto] = ACTIONS(1341), - [anon_sym_register] = ACTIONS(1341), - [anon_sym_inline] = ACTIONS(1341), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1341), - [anon_sym_const] = ACTIONS(1341), - [anon_sym_volatile] = ACTIONS(1341), - [anon_sym_restrict] = ACTIONS(1341), - [anon_sym__Atomic] = ACTIONS(1341), - [anon_sym_in] = ACTIONS(1341), - [anon_sym_out] = ACTIONS(1341), - [anon_sym_inout] = ACTIONS(1341), - [anon_sym_bycopy] = ACTIONS(1341), - [anon_sym_byref] = ACTIONS(1341), - [anon_sym_oneway] = ACTIONS(1341), - [anon_sym__Nullable] = ACTIONS(1341), - [anon_sym__Nonnull] = ACTIONS(1341), - [anon_sym__Nullable_result] = ACTIONS(1341), - [anon_sym__Null_unspecified] = ACTIONS(1341), - [anon_sym___autoreleasing] = ACTIONS(1341), - [anon_sym___nullable] = ACTIONS(1341), - [anon_sym___nonnull] = ACTIONS(1341), - [anon_sym___strong] = ACTIONS(1341), - [anon_sym___weak] = ACTIONS(1341), - [anon_sym___bridge] = ACTIONS(1341), - [anon_sym___bridge_transfer] = ACTIONS(1341), - [anon_sym___bridge_retained] = ACTIONS(1341), - [anon_sym___unsafe_unretained] = ACTIONS(1341), - [anon_sym___block] = ACTIONS(1341), - [anon_sym___kindof] = ACTIONS(1341), - [anon_sym___unused] = ACTIONS(1341), - [anon_sym__Complex] = ACTIONS(1341), - [anon_sym___complex] = ACTIONS(1341), - [anon_sym_IBOutlet] = ACTIONS(1341), - [anon_sym_IBInspectable] = ACTIONS(1341), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1341), - [anon_sym_signed] = ACTIONS(1341), - [anon_sym_unsigned] = ACTIONS(1341), - [anon_sym_long] = ACTIONS(1341), - [anon_sym_short] = ACTIONS(1341), - [sym_primitive_type] = ACTIONS(1341), - [anon_sym_enum] = ACTIONS(1341), - [anon_sym_NS_ENUM] = ACTIONS(1341), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1341), - [anon_sym_NS_OPTIONS] = ACTIONS(1341), - [anon_sym_struct] = ACTIONS(1341), - [anon_sym_union] = ACTIONS(1341), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1341), - [anon_sym_ATend] = ACTIONS(1343), - [sym_optional] = ACTIONS(1343), - [sym_required] = ACTIONS(1343), - [anon_sym_ATproperty] = ACTIONS(1343), - [sym_method_attribute_specifier] = ACTIONS(1341), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1341), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1341), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1341), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1341), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1341), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1341), - [anon_sym_NS_AVAILABLE] = ACTIONS(1341), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1341), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1341), - [anon_sym_API_AVAILABLE] = ACTIONS(1341), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1341), - [anon_sym_API_DEPRECATED] = ACTIONS(1341), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1341), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1341), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1341), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1341), - [anon_sym___deprecated_msg] = ACTIONS(1341), - [anon_sym___deprecated_enum_msg] = ACTIONS(1341), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1341), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1341), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1341), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1341), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1341), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1341), - [anon_sym_ATsynthesize] = ACTIONS(1343), - [anon_sym_ATdynamic] = ACTIONS(1343), - [anon_sym_typeof] = ACTIONS(1341), - [anon_sym___typeof] = ACTIONS(1341), - [anon_sym___typeof__] = ACTIONS(1341), - [sym_id] = ACTIONS(1341), - [sym_instancetype] = ACTIONS(1341), - [sym_Class] = ACTIONS(1341), - [sym_SEL] = ACTIONS(1341), - [sym_IMP] = ACTIONS(1341), - [sym_BOOL] = ACTIONS(1341), - [sym_auto] = ACTIONS(1341), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2908] = { - [sym_identifier] = ACTIONS(1337), - [aux_sym_preproc_def_token1] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_typedef] = ACTIONS(1337), - [anon_sym_extern] = ACTIONS(1337), - [anon_sym___attribute] = ACTIONS(1337), - [anon_sym___attribute__] = ACTIONS(1337), - [anon_sym___declspec] = ACTIONS(1337), - [anon_sym___cdecl] = ACTIONS(1337), - [anon_sym___clrcall] = ACTIONS(1337), - [anon_sym___stdcall] = ACTIONS(1337), - [anon_sym___fastcall] = ACTIONS(1337), - [anon_sym___thiscall] = ACTIONS(1337), - [anon_sym___vectorcall] = ACTIONS(1337), - [anon_sym_static] = ACTIONS(1337), - [anon_sym_auto] = ACTIONS(1337), - [anon_sym_register] = ACTIONS(1337), - [anon_sym_inline] = ACTIONS(1337), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1337), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_volatile] = ACTIONS(1337), - [anon_sym_restrict] = ACTIONS(1337), - [anon_sym__Atomic] = ACTIONS(1337), - [anon_sym_in] = ACTIONS(1337), - [anon_sym_out] = ACTIONS(1337), - [anon_sym_inout] = ACTIONS(1337), - [anon_sym_bycopy] = ACTIONS(1337), - [anon_sym_byref] = ACTIONS(1337), - [anon_sym_oneway] = ACTIONS(1337), - [anon_sym__Nullable] = ACTIONS(1337), - [anon_sym__Nonnull] = ACTIONS(1337), - [anon_sym__Nullable_result] = ACTIONS(1337), - [anon_sym__Null_unspecified] = ACTIONS(1337), - [anon_sym___autoreleasing] = ACTIONS(1337), - [anon_sym___nullable] = ACTIONS(1337), - [anon_sym___nonnull] = ACTIONS(1337), - [anon_sym___strong] = ACTIONS(1337), - [anon_sym___weak] = ACTIONS(1337), - [anon_sym___bridge] = ACTIONS(1337), - [anon_sym___bridge_transfer] = ACTIONS(1337), - [anon_sym___bridge_retained] = ACTIONS(1337), - [anon_sym___unsafe_unretained] = ACTIONS(1337), - [anon_sym___block] = ACTIONS(1337), - [anon_sym___kindof] = ACTIONS(1337), - [anon_sym___unused] = ACTIONS(1337), - [anon_sym__Complex] = ACTIONS(1337), - [anon_sym___complex] = ACTIONS(1337), - [anon_sym_IBOutlet] = ACTIONS(1337), - [anon_sym_IBInspectable] = ACTIONS(1337), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1337), - [anon_sym_signed] = ACTIONS(1337), - [anon_sym_unsigned] = ACTIONS(1337), - [anon_sym_long] = ACTIONS(1337), - [anon_sym_short] = ACTIONS(1337), - [sym_primitive_type] = ACTIONS(1337), - [anon_sym_enum] = ACTIONS(1337), - [anon_sym_NS_ENUM] = ACTIONS(1337), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1337), - [anon_sym_NS_OPTIONS] = ACTIONS(1337), - [anon_sym_struct] = ACTIONS(1337), - [anon_sym_union] = ACTIONS(1337), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1337), - [anon_sym_ATend] = ACTIONS(1339), - [sym_optional] = ACTIONS(1339), - [sym_required] = ACTIONS(1339), - [anon_sym_ATproperty] = ACTIONS(1339), - [sym_method_attribute_specifier] = ACTIONS(1337), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1337), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1337), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1337), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1337), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1337), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1337), - [anon_sym_NS_AVAILABLE] = ACTIONS(1337), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1337), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1337), - [anon_sym_API_AVAILABLE] = ACTIONS(1337), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1337), - [anon_sym_API_DEPRECATED] = ACTIONS(1337), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1337), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1337), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1337), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1337), - [anon_sym___deprecated_msg] = ACTIONS(1337), - [anon_sym___deprecated_enum_msg] = ACTIONS(1337), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1337), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1337), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1337), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1337), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1337), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1337), - [anon_sym_ATsynthesize] = ACTIONS(1339), - [anon_sym_ATdynamic] = ACTIONS(1339), - [anon_sym_typeof] = ACTIONS(1337), - [anon_sym___typeof] = ACTIONS(1337), - [anon_sym___typeof__] = ACTIONS(1337), - [sym_id] = ACTIONS(1337), - [sym_instancetype] = ACTIONS(1337), - [sym_Class] = ACTIONS(1337), - [sym_SEL] = ACTIONS(1337), - [sym_IMP] = ACTIONS(1337), - [sym_BOOL] = ACTIONS(1337), - [sym_auto] = ACTIONS(1337), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2909] = { - [sym_identifier] = ACTIONS(1333), - [aux_sym_preproc_def_token1] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_typedef] = ACTIONS(1333), - [anon_sym_extern] = ACTIONS(1333), - [anon_sym___attribute] = ACTIONS(1333), - [anon_sym___attribute__] = ACTIONS(1333), - [anon_sym___declspec] = ACTIONS(1333), - [anon_sym___cdecl] = ACTIONS(1333), - [anon_sym___clrcall] = ACTIONS(1333), - [anon_sym___stdcall] = ACTIONS(1333), - [anon_sym___fastcall] = ACTIONS(1333), - [anon_sym___thiscall] = ACTIONS(1333), - [anon_sym___vectorcall] = ACTIONS(1333), - [anon_sym_static] = ACTIONS(1333), - [anon_sym_auto] = ACTIONS(1333), - [anon_sym_register] = ACTIONS(1333), - [anon_sym_inline] = ACTIONS(1333), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1333), - [anon_sym_const] = ACTIONS(1333), - [anon_sym_volatile] = ACTIONS(1333), - [anon_sym_restrict] = ACTIONS(1333), - [anon_sym__Atomic] = ACTIONS(1333), - [anon_sym_in] = ACTIONS(1333), - [anon_sym_out] = ACTIONS(1333), - [anon_sym_inout] = ACTIONS(1333), - [anon_sym_bycopy] = ACTIONS(1333), - [anon_sym_byref] = ACTIONS(1333), - [anon_sym_oneway] = ACTIONS(1333), - [anon_sym__Nullable] = ACTIONS(1333), - [anon_sym__Nonnull] = ACTIONS(1333), - [anon_sym__Nullable_result] = ACTIONS(1333), - [anon_sym__Null_unspecified] = ACTIONS(1333), - [anon_sym___autoreleasing] = ACTIONS(1333), - [anon_sym___nullable] = ACTIONS(1333), - [anon_sym___nonnull] = ACTIONS(1333), - [anon_sym___strong] = ACTIONS(1333), - [anon_sym___weak] = ACTIONS(1333), - [anon_sym___bridge] = ACTIONS(1333), - [anon_sym___bridge_transfer] = ACTIONS(1333), - [anon_sym___bridge_retained] = ACTIONS(1333), - [anon_sym___unsafe_unretained] = ACTIONS(1333), - [anon_sym___block] = ACTIONS(1333), - [anon_sym___kindof] = ACTIONS(1333), - [anon_sym___unused] = ACTIONS(1333), - [anon_sym__Complex] = ACTIONS(1333), - [anon_sym___complex] = ACTIONS(1333), - [anon_sym_IBOutlet] = ACTIONS(1333), - [anon_sym_IBInspectable] = ACTIONS(1333), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1333), - [anon_sym_signed] = ACTIONS(1333), - [anon_sym_unsigned] = ACTIONS(1333), - [anon_sym_long] = ACTIONS(1333), - [anon_sym_short] = ACTIONS(1333), - [sym_primitive_type] = ACTIONS(1333), - [anon_sym_enum] = ACTIONS(1333), - [anon_sym_NS_ENUM] = ACTIONS(1333), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1333), - [anon_sym_NS_OPTIONS] = ACTIONS(1333), - [anon_sym_struct] = ACTIONS(1333), - [anon_sym_union] = ACTIONS(1333), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1333), - [anon_sym_ATend] = ACTIONS(1335), - [sym_optional] = ACTIONS(1335), - [sym_required] = ACTIONS(1335), - [anon_sym_ATproperty] = ACTIONS(1335), - [sym_method_attribute_specifier] = ACTIONS(1333), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1333), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1333), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1333), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1333), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1333), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1333), - [anon_sym_NS_AVAILABLE] = ACTIONS(1333), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1333), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1333), - [anon_sym_API_AVAILABLE] = ACTIONS(1333), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1333), - [anon_sym_API_DEPRECATED] = ACTIONS(1333), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1333), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1333), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1333), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1333), - [anon_sym___deprecated_msg] = ACTIONS(1333), - [anon_sym___deprecated_enum_msg] = ACTIONS(1333), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1333), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1333), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1333), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1333), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1333), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1333), - [anon_sym_ATsynthesize] = ACTIONS(1335), - [anon_sym_ATdynamic] = ACTIONS(1335), - [anon_sym_typeof] = ACTIONS(1333), - [anon_sym___typeof] = ACTIONS(1333), - [anon_sym___typeof__] = ACTIONS(1333), - [sym_id] = ACTIONS(1333), - [sym_instancetype] = ACTIONS(1333), - [sym_Class] = ACTIONS(1333), - [sym_SEL] = ACTIONS(1333), - [sym_IMP] = ACTIONS(1333), - [sym_BOOL] = ACTIONS(1333), - [sym_auto] = ACTIONS(1333), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2910] = { - [sym_identifier] = ACTIONS(1890), - [aux_sym_preproc_def_token1] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_typedef] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym___attribute] = ACTIONS(1890), - [anon_sym___attribute__] = ACTIONS(1890), - [anon_sym___declspec] = ACTIONS(1890), - [anon_sym___cdecl] = ACTIONS(1890), - [anon_sym___clrcall] = ACTIONS(1890), - [anon_sym___stdcall] = ACTIONS(1890), - [anon_sym___fastcall] = ACTIONS(1890), - [anon_sym___thiscall] = ACTIONS(1890), - [anon_sym___vectorcall] = ACTIONS(1890), - [anon_sym_static] = ACTIONS(1890), - [anon_sym_auto] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_inline] = ACTIONS(1890), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [anon_sym_volatile] = ACTIONS(1890), - [anon_sym_restrict] = ACTIONS(1890), - [anon_sym__Atomic] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(1890), - [anon_sym_out] = ACTIONS(1890), - [anon_sym_inout] = ACTIONS(1890), - [anon_sym_bycopy] = ACTIONS(1890), - [anon_sym_byref] = ACTIONS(1890), - [anon_sym_oneway] = ACTIONS(1890), - [anon_sym__Nullable] = ACTIONS(1890), - [anon_sym__Nonnull] = ACTIONS(1890), - [anon_sym__Nullable_result] = ACTIONS(1890), - [anon_sym__Null_unspecified] = ACTIONS(1890), - [anon_sym___autoreleasing] = ACTIONS(1890), - [anon_sym___nullable] = ACTIONS(1890), - [anon_sym___nonnull] = ACTIONS(1890), - [anon_sym___strong] = ACTIONS(1890), - [anon_sym___weak] = ACTIONS(1890), - [anon_sym___bridge] = ACTIONS(1890), - [anon_sym___bridge_transfer] = ACTIONS(1890), - [anon_sym___bridge_retained] = ACTIONS(1890), - [anon_sym___unsafe_unretained] = ACTIONS(1890), - [anon_sym___block] = ACTIONS(1890), - [anon_sym___kindof] = ACTIONS(1890), - [anon_sym___unused] = ACTIONS(1890), - [anon_sym__Complex] = ACTIONS(1890), - [anon_sym___complex] = ACTIONS(1890), - [anon_sym_IBOutlet] = ACTIONS(1890), - [anon_sym_IBInspectable] = ACTIONS(1890), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1890), - [anon_sym_signed] = ACTIONS(1890), - [anon_sym_unsigned] = ACTIONS(1890), - [anon_sym_long] = ACTIONS(1890), - [anon_sym_short] = ACTIONS(1890), - [sym_primitive_type] = ACTIONS(1890), - [anon_sym_enum] = ACTIONS(1890), - [anon_sym_NS_ENUM] = ACTIONS(1890), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1890), - [anon_sym_NS_OPTIONS] = ACTIONS(1890), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1890), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1890), - [anon_sym_ATend] = ACTIONS(1892), - [sym_optional] = ACTIONS(1892), - [sym_required] = ACTIONS(1892), - [anon_sym_ATproperty] = ACTIONS(1892), - [sym_method_attribute_specifier] = ACTIONS(1890), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1890), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1890), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1890), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1890), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1890), - [anon_sym_NS_AVAILABLE] = ACTIONS(1890), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1890), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_API_AVAILABLE] = ACTIONS(1890), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_API_DEPRECATED] = ACTIONS(1890), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1890), - [anon_sym___deprecated_msg] = ACTIONS(1890), - [anon_sym___deprecated_enum_msg] = ACTIONS(1890), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1890), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1890), - [anon_sym_ATsynthesize] = ACTIONS(1892), - [anon_sym_ATdynamic] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(1890), - [anon_sym___typeof] = ACTIONS(1890), - [anon_sym___typeof__] = ACTIONS(1890), - [sym_id] = ACTIONS(1890), - [sym_instancetype] = ACTIONS(1890), - [sym_Class] = ACTIONS(1890), - [sym_SEL] = ACTIONS(1890), - [sym_IMP] = ACTIONS(1890), - [sym_BOOL] = ACTIONS(1890), - [sym_auto] = ACTIONS(1890), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2911] = { - [sym_identifier] = ACTIONS(1329), - [aux_sym_preproc_def_token1] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_typedef] = ACTIONS(1329), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym___attribute] = ACTIONS(1329), - [anon_sym___attribute__] = ACTIONS(1329), - [anon_sym___declspec] = ACTIONS(1329), - [anon_sym___cdecl] = ACTIONS(1329), - [anon_sym___clrcall] = ACTIONS(1329), - [anon_sym___stdcall] = ACTIONS(1329), - [anon_sym___fastcall] = ACTIONS(1329), - [anon_sym___thiscall] = ACTIONS(1329), - [anon_sym___vectorcall] = ACTIONS(1329), - [anon_sym_static] = ACTIONS(1329), - [anon_sym_auto] = ACTIONS(1329), - [anon_sym_register] = ACTIONS(1329), - [anon_sym_inline] = ACTIONS(1329), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1329), - [anon_sym_const] = ACTIONS(1329), - [anon_sym_volatile] = ACTIONS(1329), - [anon_sym_restrict] = ACTIONS(1329), - [anon_sym__Atomic] = ACTIONS(1329), - [anon_sym_in] = ACTIONS(1329), - [anon_sym_out] = ACTIONS(1329), - [anon_sym_inout] = ACTIONS(1329), - [anon_sym_bycopy] = ACTIONS(1329), - [anon_sym_byref] = ACTIONS(1329), - [anon_sym_oneway] = ACTIONS(1329), - [anon_sym__Nullable] = ACTIONS(1329), - [anon_sym__Nonnull] = ACTIONS(1329), - [anon_sym__Nullable_result] = ACTIONS(1329), - [anon_sym__Null_unspecified] = ACTIONS(1329), - [anon_sym___autoreleasing] = ACTIONS(1329), - [anon_sym___nullable] = ACTIONS(1329), - [anon_sym___nonnull] = ACTIONS(1329), - [anon_sym___strong] = ACTIONS(1329), - [anon_sym___weak] = ACTIONS(1329), - [anon_sym___bridge] = ACTIONS(1329), - [anon_sym___bridge_transfer] = ACTIONS(1329), - [anon_sym___bridge_retained] = ACTIONS(1329), - [anon_sym___unsafe_unretained] = ACTIONS(1329), - [anon_sym___block] = ACTIONS(1329), - [anon_sym___kindof] = ACTIONS(1329), - [anon_sym___unused] = ACTIONS(1329), - [anon_sym__Complex] = ACTIONS(1329), - [anon_sym___complex] = ACTIONS(1329), - [anon_sym_IBOutlet] = ACTIONS(1329), - [anon_sym_IBInspectable] = ACTIONS(1329), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1329), - [anon_sym_signed] = ACTIONS(1329), - [anon_sym_unsigned] = ACTIONS(1329), - [anon_sym_long] = ACTIONS(1329), - [anon_sym_short] = ACTIONS(1329), - [sym_primitive_type] = ACTIONS(1329), - [anon_sym_enum] = ACTIONS(1329), - [anon_sym_NS_ENUM] = ACTIONS(1329), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1329), - [anon_sym_NS_OPTIONS] = ACTIONS(1329), - [anon_sym_struct] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1329), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1329), - [anon_sym_ATend] = ACTIONS(1331), - [sym_optional] = ACTIONS(1331), - [sym_required] = ACTIONS(1331), - [anon_sym_ATproperty] = ACTIONS(1331), - [sym_method_attribute_specifier] = ACTIONS(1329), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1329), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1329), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1329), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1329), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1329), - [anon_sym_NS_AVAILABLE] = ACTIONS(1329), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1329), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_API_AVAILABLE] = ACTIONS(1329), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_API_DEPRECATED] = ACTIONS(1329), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1329), - [anon_sym___deprecated_msg] = ACTIONS(1329), - [anon_sym___deprecated_enum_msg] = ACTIONS(1329), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1329), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1329), - [anon_sym_ATsynthesize] = ACTIONS(1331), - [anon_sym_ATdynamic] = ACTIONS(1331), - [anon_sym_typeof] = ACTIONS(1329), - [anon_sym___typeof] = ACTIONS(1329), - [anon_sym___typeof__] = ACTIONS(1329), - [sym_id] = ACTIONS(1329), - [sym_instancetype] = ACTIONS(1329), - [sym_Class] = ACTIONS(1329), - [sym_SEL] = ACTIONS(1329), - [sym_IMP] = ACTIONS(1329), - [sym_BOOL] = ACTIONS(1329), - [sym_auto] = ACTIONS(1329), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2912] = { - [sym_identifier] = ACTIONS(1329), - [aux_sym_preproc_def_token1] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_typedef] = ACTIONS(1329), - [anon_sym_extern] = ACTIONS(1329), - [anon_sym___attribute] = ACTIONS(1329), - [anon_sym___attribute__] = ACTIONS(1329), - [anon_sym___declspec] = ACTIONS(1329), - [anon_sym___cdecl] = ACTIONS(1329), - [anon_sym___clrcall] = ACTIONS(1329), - [anon_sym___stdcall] = ACTIONS(1329), - [anon_sym___fastcall] = ACTIONS(1329), - [anon_sym___thiscall] = ACTIONS(1329), - [anon_sym___vectorcall] = ACTIONS(1329), - [anon_sym_static] = ACTIONS(1329), - [anon_sym_auto] = ACTIONS(1329), - [anon_sym_register] = ACTIONS(1329), - [anon_sym_inline] = ACTIONS(1329), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1329), - [anon_sym_const] = ACTIONS(1329), - [anon_sym_volatile] = ACTIONS(1329), - [anon_sym_restrict] = ACTIONS(1329), - [anon_sym__Atomic] = ACTIONS(1329), - [anon_sym_in] = ACTIONS(1329), - [anon_sym_out] = ACTIONS(1329), - [anon_sym_inout] = ACTIONS(1329), - [anon_sym_bycopy] = ACTIONS(1329), - [anon_sym_byref] = ACTIONS(1329), - [anon_sym_oneway] = ACTIONS(1329), - [anon_sym__Nullable] = ACTIONS(1329), - [anon_sym__Nonnull] = ACTIONS(1329), - [anon_sym__Nullable_result] = ACTIONS(1329), - [anon_sym__Null_unspecified] = ACTIONS(1329), - [anon_sym___autoreleasing] = ACTIONS(1329), - [anon_sym___nullable] = ACTIONS(1329), - [anon_sym___nonnull] = ACTIONS(1329), - [anon_sym___strong] = ACTIONS(1329), - [anon_sym___weak] = ACTIONS(1329), - [anon_sym___bridge] = ACTIONS(1329), - [anon_sym___bridge_transfer] = ACTIONS(1329), - [anon_sym___bridge_retained] = ACTIONS(1329), - [anon_sym___unsafe_unretained] = ACTIONS(1329), - [anon_sym___block] = ACTIONS(1329), - [anon_sym___kindof] = ACTIONS(1329), - [anon_sym___unused] = ACTIONS(1329), - [anon_sym__Complex] = ACTIONS(1329), - [anon_sym___complex] = ACTIONS(1329), - [anon_sym_IBOutlet] = ACTIONS(1329), - [anon_sym_IBInspectable] = ACTIONS(1329), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1329), - [anon_sym_signed] = ACTIONS(1329), - [anon_sym_unsigned] = ACTIONS(1329), - [anon_sym_long] = ACTIONS(1329), - [anon_sym_short] = ACTIONS(1329), - [sym_primitive_type] = ACTIONS(1329), - [anon_sym_enum] = ACTIONS(1329), - [anon_sym_NS_ENUM] = ACTIONS(1329), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1329), - [anon_sym_NS_OPTIONS] = ACTIONS(1329), - [anon_sym_struct] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1329), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1329), - [anon_sym_ATend] = ACTIONS(1331), - [sym_optional] = ACTIONS(1331), - [sym_required] = ACTIONS(1331), - [anon_sym_ATproperty] = ACTIONS(1331), - [sym_method_attribute_specifier] = ACTIONS(1329), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1329), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1329), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1329), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1329), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1329), - [anon_sym_NS_AVAILABLE] = ACTIONS(1329), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1329), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_API_AVAILABLE] = ACTIONS(1329), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_API_DEPRECATED] = ACTIONS(1329), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1329), - [anon_sym___deprecated_msg] = ACTIONS(1329), - [anon_sym___deprecated_enum_msg] = ACTIONS(1329), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1329), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1329), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1329), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1329), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1329), - [anon_sym_ATsynthesize] = ACTIONS(1331), - [anon_sym_ATdynamic] = ACTIONS(1331), - [anon_sym_typeof] = ACTIONS(1329), - [anon_sym___typeof] = ACTIONS(1329), - [anon_sym___typeof__] = ACTIONS(1329), - [sym_id] = ACTIONS(1329), - [sym_instancetype] = ACTIONS(1329), - [sym_Class] = ACTIONS(1329), - [sym_SEL] = ACTIONS(1329), - [sym_IMP] = ACTIONS(1329), - [sym_BOOL] = ACTIONS(1329), - [sym_auto] = ACTIONS(1329), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2913] = { - [sym_identifier] = ACTIONS(1325), - [aux_sym_preproc_def_token1] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_typedef] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym___attribute] = ACTIONS(1325), - [anon_sym___attribute__] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1325), - [anon_sym___cdecl] = ACTIONS(1325), - [anon_sym___clrcall] = ACTIONS(1325), - [anon_sym___stdcall] = ACTIONS(1325), - [anon_sym___fastcall] = ACTIONS(1325), - [anon_sym___thiscall] = ACTIONS(1325), - [anon_sym___vectorcall] = ACTIONS(1325), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_auto] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_inline] = ACTIONS(1325), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_volatile] = ACTIONS(1325), - [anon_sym_restrict] = ACTIONS(1325), - [anon_sym__Atomic] = ACTIONS(1325), - [anon_sym_in] = ACTIONS(1325), - [anon_sym_out] = ACTIONS(1325), - [anon_sym_inout] = ACTIONS(1325), - [anon_sym_bycopy] = ACTIONS(1325), - [anon_sym_byref] = ACTIONS(1325), - [anon_sym_oneway] = ACTIONS(1325), - [anon_sym__Nullable] = ACTIONS(1325), - [anon_sym__Nonnull] = ACTIONS(1325), - [anon_sym__Nullable_result] = ACTIONS(1325), - [anon_sym__Null_unspecified] = ACTIONS(1325), - [anon_sym___autoreleasing] = ACTIONS(1325), - [anon_sym___nullable] = ACTIONS(1325), - [anon_sym___nonnull] = ACTIONS(1325), - [anon_sym___strong] = ACTIONS(1325), - [anon_sym___weak] = ACTIONS(1325), - [anon_sym___bridge] = ACTIONS(1325), - [anon_sym___bridge_transfer] = ACTIONS(1325), - [anon_sym___bridge_retained] = ACTIONS(1325), - [anon_sym___unsafe_unretained] = ACTIONS(1325), - [anon_sym___block] = ACTIONS(1325), - [anon_sym___kindof] = ACTIONS(1325), - [anon_sym___unused] = ACTIONS(1325), - [anon_sym__Complex] = ACTIONS(1325), - [anon_sym___complex] = ACTIONS(1325), - [anon_sym_IBOutlet] = ACTIONS(1325), - [anon_sym_IBInspectable] = ACTIONS(1325), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1325), - [anon_sym_signed] = ACTIONS(1325), - [anon_sym_unsigned] = ACTIONS(1325), - [anon_sym_long] = ACTIONS(1325), - [anon_sym_short] = ACTIONS(1325), - [sym_primitive_type] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_NS_ENUM] = ACTIONS(1325), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1325), - [anon_sym_NS_OPTIONS] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1325), - [anon_sym_ATend] = ACTIONS(1327), - [sym_optional] = ACTIONS(1327), - [sym_required] = ACTIONS(1327), - [anon_sym_ATproperty] = ACTIONS(1327), - [sym_method_attribute_specifier] = ACTIONS(1325), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1325), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1325), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1325), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1325), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1325), - [anon_sym_NS_AVAILABLE] = ACTIONS(1325), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1325), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_API_AVAILABLE] = ACTIONS(1325), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_API_DEPRECATED] = ACTIONS(1325), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1325), - [anon_sym___deprecated_msg] = ACTIONS(1325), - [anon_sym___deprecated_enum_msg] = ACTIONS(1325), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1325), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1325), - [anon_sym_ATsynthesize] = ACTIONS(1327), - [anon_sym_ATdynamic] = ACTIONS(1327), - [anon_sym_typeof] = ACTIONS(1325), - [anon_sym___typeof] = ACTIONS(1325), - [anon_sym___typeof__] = ACTIONS(1325), - [sym_id] = ACTIONS(1325), - [sym_instancetype] = ACTIONS(1325), - [sym_Class] = ACTIONS(1325), - [sym_SEL] = ACTIONS(1325), - [sym_IMP] = ACTIONS(1325), - [sym_BOOL] = ACTIONS(1325), - [sym_auto] = ACTIONS(1325), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2914] = { - [sym_identifier] = ACTIONS(1321), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), - [anon_sym_inout] = ACTIONS(1321), - [anon_sym_bycopy] = ACTIONS(1321), - [anon_sym_byref] = ACTIONS(1321), - [anon_sym_oneway] = ACTIONS(1321), - [anon_sym__Nullable] = ACTIONS(1321), - [anon_sym__Nonnull] = ACTIONS(1321), - [anon_sym__Nullable_result] = ACTIONS(1321), - [anon_sym__Null_unspecified] = ACTIONS(1321), - [anon_sym___autoreleasing] = ACTIONS(1321), - [anon_sym___nullable] = ACTIONS(1321), - [anon_sym___nonnull] = ACTIONS(1321), - [anon_sym___strong] = ACTIONS(1321), - [anon_sym___weak] = ACTIONS(1321), - [anon_sym___bridge] = ACTIONS(1321), - [anon_sym___bridge_transfer] = ACTIONS(1321), - [anon_sym___bridge_retained] = ACTIONS(1321), - [anon_sym___unsafe_unretained] = ACTIONS(1321), - [anon_sym___block] = ACTIONS(1321), - [anon_sym___kindof] = ACTIONS(1321), - [anon_sym___unused] = ACTIONS(1321), - [anon_sym__Complex] = ACTIONS(1321), - [anon_sym___complex] = ACTIONS(1321), - [anon_sym_IBOutlet] = ACTIONS(1321), - [anon_sym_IBInspectable] = ACTIONS(1321), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_NS_ENUM] = ACTIONS(1321), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1321), - [anon_sym_NS_OPTIONS] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1321), - [anon_sym_ATend] = ACTIONS(1323), - [sym_optional] = ACTIONS(1323), - [sym_required] = ACTIONS(1323), - [anon_sym_ATproperty] = ACTIONS(1323), - [sym_method_attribute_specifier] = ACTIONS(1321), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1321), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE] = ACTIONS(1321), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_API_AVAILABLE] = ACTIONS(1321), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_API_DEPRECATED] = ACTIONS(1321), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1321), - [anon_sym___deprecated_msg] = ACTIONS(1321), - [anon_sym___deprecated_enum_msg] = ACTIONS(1321), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1321), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1321), - [anon_sym_ATsynthesize] = ACTIONS(1323), - [anon_sym_ATdynamic] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1321), - [anon_sym___typeof] = ACTIONS(1321), - [anon_sym___typeof__] = ACTIONS(1321), - [sym_id] = ACTIONS(1321), - [sym_instancetype] = ACTIONS(1321), - [sym_Class] = ACTIONS(1321), - [sym_SEL] = ACTIONS(1321), - [sym_IMP] = ACTIONS(1321), - [sym_BOOL] = ACTIONS(1321), - [sym_auto] = ACTIONS(1321), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2915] = { - [sym_identifier] = ACTIONS(1321), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), - [anon_sym_inout] = ACTIONS(1321), - [anon_sym_bycopy] = ACTIONS(1321), - [anon_sym_byref] = ACTIONS(1321), - [anon_sym_oneway] = ACTIONS(1321), - [anon_sym__Nullable] = ACTIONS(1321), - [anon_sym__Nonnull] = ACTIONS(1321), - [anon_sym__Nullable_result] = ACTIONS(1321), - [anon_sym__Null_unspecified] = ACTIONS(1321), - [anon_sym___autoreleasing] = ACTIONS(1321), - [anon_sym___nullable] = ACTIONS(1321), - [anon_sym___nonnull] = ACTIONS(1321), - [anon_sym___strong] = ACTIONS(1321), - [anon_sym___weak] = ACTIONS(1321), - [anon_sym___bridge] = ACTIONS(1321), - [anon_sym___bridge_transfer] = ACTIONS(1321), - [anon_sym___bridge_retained] = ACTIONS(1321), - [anon_sym___unsafe_unretained] = ACTIONS(1321), - [anon_sym___block] = ACTIONS(1321), - [anon_sym___kindof] = ACTIONS(1321), - [anon_sym___unused] = ACTIONS(1321), - [anon_sym__Complex] = ACTIONS(1321), - [anon_sym___complex] = ACTIONS(1321), - [anon_sym_IBOutlet] = ACTIONS(1321), - [anon_sym_IBInspectable] = ACTIONS(1321), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_NS_ENUM] = ACTIONS(1321), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1321), - [anon_sym_NS_OPTIONS] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1321), - [anon_sym_ATend] = ACTIONS(1323), - [sym_optional] = ACTIONS(1323), - [sym_required] = ACTIONS(1323), - [anon_sym_ATproperty] = ACTIONS(1323), - [sym_method_attribute_specifier] = ACTIONS(1321), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1321), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE] = ACTIONS(1321), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_API_AVAILABLE] = ACTIONS(1321), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_API_DEPRECATED] = ACTIONS(1321), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1321), - [anon_sym___deprecated_msg] = ACTIONS(1321), - [anon_sym___deprecated_enum_msg] = ACTIONS(1321), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1321), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1321), - [anon_sym_ATsynthesize] = ACTIONS(1323), - [anon_sym_ATdynamic] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1321), - [anon_sym___typeof] = ACTIONS(1321), - [anon_sym___typeof__] = ACTIONS(1321), - [sym_id] = ACTIONS(1321), - [sym_instancetype] = ACTIONS(1321), - [sym_Class] = ACTIONS(1321), - [sym_SEL] = ACTIONS(1321), - [sym_IMP] = ACTIONS(1321), - [sym_BOOL] = ACTIONS(1321), - [sym_auto] = ACTIONS(1321), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2916] = { - [sym_identifier] = ACTIONS(1325), - [aux_sym_preproc_def_token1] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1327), - [anon_sym_PLUS] = ACTIONS(1327), - [anon_sym_typedef] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym___attribute] = ACTIONS(1325), - [anon_sym___attribute__] = ACTIONS(1325), - [anon_sym___declspec] = ACTIONS(1325), - [anon_sym___cdecl] = ACTIONS(1325), - [anon_sym___clrcall] = ACTIONS(1325), - [anon_sym___stdcall] = ACTIONS(1325), - [anon_sym___fastcall] = ACTIONS(1325), - [anon_sym___thiscall] = ACTIONS(1325), - [anon_sym___vectorcall] = ACTIONS(1325), - [anon_sym_static] = ACTIONS(1325), - [anon_sym_auto] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_inline] = ACTIONS(1325), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [anon_sym_volatile] = ACTIONS(1325), - [anon_sym_restrict] = ACTIONS(1325), - [anon_sym__Atomic] = ACTIONS(1325), - [anon_sym_in] = ACTIONS(1325), - [anon_sym_out] = ACTIONS(1325), - [anon_sym_inout] = ACTIONS(1325), - [anon_sym_bycopy] = ACTIONS(1325), - [anon_sym_byref] = ACTIONS(1325), - [anon_sym_oneway] = ACTIONS(1325), - [anon_sym__Nullable] = ACTIONS(1325), - [anon_sym__Nonnull] = ACTIONS(1325), - [anon_sym__Nullable_result] = ACTIONS(1325), - [anon_sym__Null_unspecified] = ACTIONS(1325), - [anon_sym___autoreleasing] = ACTIONS(1325), - [anon_sym___nullable] = ACTIONS(1325), - [anon_sym___nonnull] = ACTIONS(1325), - [anon_sym___strong] = ACTIONS(1325), - [anon_sym___weak] = ACTIONS(1325), - [anon_sym___bridge] = ACTIONS(1325), - [anon_sym___bridge_transfer] = ACTIONS(1325), - [anon_sym___bridge_retained] = ACTIONS(1325), - [anon_sym___unsafe_unretained] = ACTIONS(1325), - [anon_sym___block] = ACTIONS(1325), - [anon_sym___kindof] = ACTIONS(1325), - [anon_sym___unused] = ACTIONS(1325), - [anon_sym__Complex] = ACTIONS(1325), - [anon_sym___complex] = ACTIONS(1325), - [anon_sym_IBOutlet] = ACTIONS(1325), - [anon_sym_IBInspectable] = ACTIONS(1325), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1325), - [anon_sym_signed] = ACTIONS(1325), - [anon_sym_unsigned] = ACTIONS(1325), - [anon_sym_long] = ACTIONS(1325), - [anon_sym_short] = ACTIONS(1325), - [sym_primitive_type] = ACTIONS(1325), - [anon_sym_enum] = ACTIONS(1325), - [anon_sym_NS_ENUM] = ACTIONS(1325), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1325), - [anon_sym_NS_OPTIONS] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1325), - [anon_sym_union] = ACTIONS(1325), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1325), - [anon_sym_ATend] = ACTIONS(1327), - [sym_optional] = ACTIONS(1327), - [sym_required] = ACTIONS(1327), - [anon_sym_ATproperty] = ACTIONS(1327), - [sym_method_attribute_specifier] = ACTIONS(1325), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1325), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1325), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1325), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1325), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1325), - [anon_sym_NS_AVAILABLE] = ACTIONS(1325), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1325), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_API_AVAILABLE] = ACTIONS(1325), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_API_DEPRECATED] = ACTIONS(1325), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1325), - [anon_sym___deprecated_msg] = ACTIONS(1325), - [anon_sym___deprecated_enum_msg] = ACTIONS(1325), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1325), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1325), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1325), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1325), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1325), - [anon_sym_ATsynthesize] = ACTIONS(1327), - [anon_sym_ATdynamic] = ACTIONS(1327), - [anon_sym_typeof] = ACTIONS(1325), - [anon_sym___typeof] = ACTIONS(1325), - [anon_sym___typeof__] = ACTIONS(1325), - [sym_id] = ACTIONS(1325), - [sym_instancetype] = ACTIONS(1325), - [sym_Class] = ACTIONS(1325), - [sym_SEL] = ACTIONS(1325), - [sym_IMP] = ACTIONS(1325), - [sym_BOOL] = ACTIONS(1325), - [sym_auto] = ACTIONS(1325), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2917] = { - [sym_identifier] = ACTIONS(1321), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), - [anon_sym_inout] = ACTIONS(1321), - [anon_sym_bycopy] = ACTIONS(1321), - [anon_sym_byref] = ACTIONS(1321), - [anon_sym_oneway] = ACTIONS(1321), - [anon_sym__Nullable] = ACTIONS(1321), - [anon_sym__Nonnull] = ACTIONS(1321), - [anon_sym__Nullable_result] = ACTIONS(1321), - [anon_sym__Null_unspecified] = ACTIONS(1321), - [anon_sym___autoreleasing] = ACTIONS(1321), - [anon_sym___nullable] = ACTIONS(1321), - [anon_sym___nonnull] = ACTIONS(1321), - [anon_sym___strong] = ACTIONS(1321), - [anon_sym___weak] = ACTIONS(1321), - [anon_sym___bridge] = ACTIONS(1321), - [anon_sym___bridge_transfer] = ACTIONS(1321), - [anon_sym___bridge_retained] = ACTIONS(1321), - [anon_sym___unsafe_unretained] = ACTIONS(1321), - [anon_sym___block] = ACTIONS(1321), - [anon_sym___kindof] = ACTIONS(1321), - [anon_sym___unused] = ACTIONS(1321), - [anon_sym__Complex] = ACTIONS(1321), - [anon_sym___complex] = ACTIONS(1321), - [anon_sym_IBOutlet] = ACTIONS(1321), - [anon_sym_IBInspectable] = ACTIONS(1321), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_NS_ENUM] = ACTIONS(1321), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1321), - [anon_sym_NS_OPTIONS] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1321), - [anon_sym_ATend] = ACTIONS(1323), - [sym_optional] = ACTIONS(1323), - [sym_required] = ACTIONS(1323), - [anon_sym_ATproperty] = ACTIONS(1323), - [sym_method_attribute_specifier] = ACTIONS(1321), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1321), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE] = ACTIONS(1321), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_API_AVAILABLE] = ACTIONS(1321), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_API_DEPRECATED] = ACTIONS(1321), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1321), - [anon_sym___deprecated_msg] = ACTIONS(1321), - [anon_sym___deprecated_enum_msg] = ACTIONS(1321), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1321), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1321), - [anon_sym_ATsynthesize] = ACTIONS(1323), - [anon_sym_ATdynamic] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1321), - [anon_sym___typeof] = ACTIONS(1321), - [anon_sym___typeof__] = ACTIONS(1321), - [sym_id] = ACTIONS(1321), - [sym_instancetype] = ACTIONS(1321), - [sym_Class] = ACTIONS(1321), - [sym_SEL] = ACTIONS(1321), - [sym_IMP] = ACTIONS(1321), - [sym_BOOL] = ACTIONS(1321), - [sym_auto] = ACTIONS(1321), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2918] = { - [sym_identifier] = ACTIONS(1321), - [aux_sym_preproc_def_token1] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_typedef] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1321), - [anon_sym___attribute] = ACTIONS(1321), - [anon_sym___attribute__] = ACTIONS(1321), - [anon_sym___declspec] = ACTIONS(1321), - [anon_sym___cdecl] = ACTIONS(1321), - [anon_sym___clrcall] = ACTIONS(1321), - [anon_sym___stdcall] = ACTIONS(1321), - [anon_sym___fastcall] = ACTIONS(1321), - [anon_sym___thiscall] = ACTIONS(1321), - [anon_sym___vectorcall] = ACTIONS(1321), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_auto] = ACTIONS(1321), - [anon_sym_register] = ACTIONS(1321), - [anon_sym_inline] = ACTIONS(1321), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1321), - [anon_sym_const] = ACTIONS(1321), - [anon_sym_volatile] = ACTIONS(1321), - [anon_sym_restrict] = ACTIONS(1321), - [anon_sym__Atomic] = ACTIONS(1321), - [anon_sym_in] = ACTIONS(1321), - [anon_sym_out] = ACTIONS(1321), - [anon_sym_inout] = ACTIONS(1321), - [anon_sym_bycopy] = ACTIONS(1321), - [anon_sym_byref] = ACTIONS(1321), - [anon_sym_oneway] = ACTIONS(1321), - [anon_sym__Nullable] = ACTIONS(1321), - [anon_sym__Nonnull] = ACTIONS(1321), - [anon_sym__Nullable_result] = ACTIONS(1321), - [anon_sym__Null_unspecified] = ACTIONS(1321), - [anon_sym___autoreleasing] = ACTIONS(1321), - [anon_sym___nullable] = ACTIONS(1321), - [anon_sym___nonnull] = ACTIONS(1321), - [anon_sym___strong] = ACTIONS(1321), - [anon_sym___weak] = ACTIONS(1321), - [anon_sym___bridge] = ACTIONS(1321), - [anon_sym___bridge_transfer] = ACTIONS(1321), - [anon_sym___bridge_retained] = ACTIONS(1321), - [anon_sym___unsafe_unretained] = ACTIONS(1321), - [anon_sym___block] = ACTIONS(1321), - [anon_sym___kindof] = ACTIONS(1321), - [anon_sym___unused] = ACTIONS(1321), - [anon_sym__Complex] = ACTIONS(1321), - [anon_sym___complex] = ACTIONS(1321), - [anon_sym_IBOutlet] = ACTIONS(1321), - [anon_sym_IBInspectable] = ACTIONS(1321), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1321), - [anon_sym_signed] = ACTIONS(1321), - [anon_sym_unsigned] = ACTIONS(1321), - [anon_sym_long] = ACTIONS(1321), - [anon_sym_short] = ACTIONS(1321), - [sym_primitive_type] = ACTIONS(1321), - [anon_sym_enum] = ACTIONS(1321), - [anon_sym_NS_ENUM] = ACTIONS(1321), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1321), - [anon_sym_NS_OPTIONS] = ACTIONS(1321), - [anon_sym_struct] = ACTIONS(1321), - [anon_sym_union] = ACTIONS(1321), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1321), - [anon_sym_ATend] = ACTIONS(1323), - [sym_optional] = ACTIONS(1323), - [sym_required] = ACTIONS(1323), - [anon_sym_ATproperty] = ACTIONS(1323), - [sym_method_attribute_specifier] = ACTIONS(1321), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1321), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1321), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE] = ACTIONS(1321), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1321), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_API_AVAILABLE] = ACTIONS(1321), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_API_DEPRECATED] = ACTIONS(1321), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1321), - [anon_sym___deprecated_msg] = ACTIONS(1321), - [anon_sym___deprecated_enum_msg] = ACTIONS(1321), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1321), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1321), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1321), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1321), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1321), - [anon_sym_ATsynthesize] = ACTIONS(1323), - [anon_sym_ATdynamic] = ACTIONS(1323), - [anon_sym_typeof] = ACTIONS(1321), - [anon_sym___typeof] = ACTIONS(1321), - [anon_sym___typeof__] = ACTIONS(1321), - [sym_id] = ACTIONS(1321), - [sym_instancetype] = ACTIONS(1321), - [sym_Class] = ACTIONS(1321), - [sym_SEL] = ACTIONS(1321), - [sym_IMP] = ACTIONS(1321), - [sym_BOOL] = ACTIONS(1321), - [sym_auto] = ACTIONS(1321), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2919] = { - [sym_identifier] = ACTIONS(1213), - [aux_sym_preproc_def_token1] = ACTIONS(1211), - [anon_sym_DASH] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1211), - [anon_sym_typedef] = ACTIONS(1213), - [anon_sym_extern] = ACTIONS(1213), - [anon_sym___attribute] = ACTIONS(1213), - [anon_sym___attribute__] = ACTIONS(1213), - [anon_sym___declspec] = ACTIONS(1213), - [anon_sym___cdecl] = ACTIONS(1213), - [anon_sym___clrcall] = ACTIONS(1213), - [anon_sym___stdcall] = ACTIONS(1213), - [anon_sym___fastcall] = ACTIONS(1213), - [anon_sym___thiscall] = ACTIONS(1213), - [anon_sym___vectorcall] = ACTIONS(1213), - [anon_sym_static] = ACTIONS(1213), - [anon_sym_auto] = ACTIONS(1213), - [anon_sym_register] = ACTIONS(1213), - [anon_sym_inline] = ACTIONS(1213), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1213), - [anon_sym_const] = ACTIONS(1213), - [anon_sym_volatile] = ACTIONS(1213), - [anon_sym_restrict] = ACTIONS(1213), - [anon_sym__Atomic] = ACTIONS(1213), - [anon_sym_in] = ACTIONS(1213), - [anon_sym_out] = ACTIONS(1213), - [anon_sym_inout] = ACTIONS(1213), - [anon_sym_bycopy] = ACTIONS(1213), - [anon_sym_byref] = ACTIONS(1213), - [anon_sym_oneway] = ACTIONS(1213), - [anon_sym__Nullable] = ACTIONS(1213), - [anon_sym__Nonnull] = ACTIONS(1213), - [anon_sym__Nullable_result] = ACTIONS(1213), - [anon_sym__Null_unspecified] = ACTIONS(1213), - [anon_sym___autoreleasing] = ACTIONS(1213), - [anon_sym___nullable] = ACTIONS(1213), - [anon_sym___nonnull] = ACTIONS(1213), - [anon_sym___strong] = ACTIONS(1213), - [anon_sym___weak] = ACTIONS(1213), - [anon_sym___bridge] = ACTIONS(1213), - [anon_sym___bridge_transfer] = ACTIONS(1213), - [anon_sym___bridge_retained] = ACTIONS(1213), - [anon_sym___unsafe_unretained] = ACTIONS(1213), - [anon_sym___block] = ACTIONS(1213), - [anon_sym___kindof] = ACTIONS(1213), - [anon_sym___unused] = ACTIONS(1213), - [anon_sym__Complex] = ACTIONS(1213), - [anon_sym___complex] = ACTIONS(1213), - [anon_sym_IBOutlet] = ACTIONS(1213), - [anon_sym_IBInspectable] = ACTIONS(1213), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1213), - [anon_sym_signed] = ACTIONS(1213), - [anon_sym_unsigned] = ACTIONS(1213), - [anon_sym_long] = ACTIONS(1213), - [anon_sym_short] = ACTIONS(1213), - [sym_primitive_type] = ACTIONS(1213), - [anon_sym_enum] = ACTIONS(1213), - [anon_sym_NS_ENUM] = ACTIONS(1213), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1213), - [anon_sym_NS_OPTIONS] = ACTIONS(1213), - [anon_sym_struct] = ACTIONS(1213), - [anon_sym_union] = ACTIONS(1213), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1213), - [anon_sym_ATend] = ACTIONS(1211), - [sym_optional] = ACTIONS(1211), - [sym_required] = ACTIONS(1211), - [anon_sym_ATproperty] = ACTIONS(1211), - [sym_method_attribute_specifier] = ACTIONS(1213), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1213), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1213), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1213), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1213), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1213), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1213), - [anon_sym_NS_AVAILABLE] = ACTIONS(1213), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1213), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1213), - [anon_sym_API_AVAILABLE] = ACTIONS(1213), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1213), - [anon_sym_API_DEPRECATED] = ACTIONS(1213), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1213), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1213), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1213), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1213), - [anon_sym___deprecated_msg] = ACTIONS(1213), - [anon_sym___deprecated_enum_msg] = ACTIONS(1213), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1213), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1213), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1213), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1213), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1213), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1213), - [anon_sym_ATsynthesize] = ACTIONS(1211), - [anon_sym_ATdynamic] = ACTIONS(1211), - [anon_sym_typeof] = ACTIONS(1213), - [anon_sym___typeof] = ACTIONS(1213), - [anon_sym___typeof__] = ACTIONS(1213), - [sym_id] = ACTIONS(1213), - [sym_instancetype] = ACTIONS(1213), - [sym_Class] = ACTIONS(1213), - [sym_SEL] = ACTIONS(1213), - [sym_IMP] = ACTIONS(1213), - [sym_BOOL] = ACTIONS(1213), - [sym_auto] = ACTIONS(1213), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2920] = { - [sym_identifier] = ACTIONS(1209), - [aux_sym_preproc_def_token1] = ACTIONS(1207), - [anon_sym_DASH] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1207), - [anon_sym_typedef] = ACTIONS(1209), - [anon_sym_extern] = ACTIONS(1209), - [anon_sym___attribute] = ACTIONS(1209), - [anon_sym___attribute__] = ACTIONS(1209), - [anon_sym___declspec] = ACTIONS(1209), - [anon_sym___cdecl] = ACTIONS(1209), - [anon_sym___clrcall] = ACTIONS(1209), - [anon_sym___stdcall] = ACTIONS(1209), - [anon_sym___fastcall] = ACTIONS(1209), - [anon_sym___thiscall] = ACTIONS(1209), - [anon_sym___vectorcall] = ACTIONS(1209), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_auto] = ACTIONS(1209), - [anon_sym_register] = ACTIONS(1209), - [anon_sym_inline] = ACTIONS(1209), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1209), - [anon_sym_const] = ACTIONS(1209), - [anon_sym_volatile] = ACTIONS(1209), - [anon_sym_restrict] = ACTIONS(1209), - [anon_sym__Atomic] = ACTIONS(1209), - [anon_sym_in] = ACTIONS(1209), - [anon_sym_out] = ACTIONS(1209), - [anon_sym_inout] = ACTIONS(1209), - [anon_sym_bycopy] = ACTIONS(1209), - [anon_sym_byref] = ACTIONS(1209), - [anon_sym_oneway] = ACTIONS(1209), - [anon_sym__Nullable] = ACTIONS(1209), - [anon_sym__Nonnull] = ACTIONS(1209), - [anon_sym__Nullable_result] = ACTIONS(1209), - [anon_sym__Null_unspecified] = ACTIONS(1209), - [anon_sym___autoreleasing] = ACTIONS(1209), - [anon_sym___nullable] = ACTIONS(1209), - [anon_sym___nonnull] = ACTIONS(1209), - [anon_sym___strong] = ACTIONS(1209), - [anon_sym___weak] = ACTIONS(1209), - [anon_sym___bridge] = ACTIONS(1209), - [anon_sym___bridge_transfer] = ACTIONS(1209), - [anon_sym___bridge_retained] = ACTIONS(1209), - [anon_sym___unsafe_unretained] = ACTIONS(1209), - [anon_sym___block] = ACTIONS(1209), - [anon_sym___kindof] = ACTIONS(1209), - [anon_sym___unused] = ACTIONS(1209), - [anon_sym__Complex] = ACTIONS(1209), - [anon_sym___complex] = ACTIONS(1209), - [anon_sym_IBOutlet] = ACTIONS(1209), - [anon_sym_IBInspectable] = ACTIONS(1209), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1209), - [anon_sym_signed] = ACTIONS(1209), - [anon_sym_unsigned] = ACTIONS(1209), - [anon_sym_long] = ACTIONS(1209), - [anon_sym_short] = ACTIONS(1209), - [sym_primitive_type] = ACTIONS(1209), - [anon_sym_enum] = ACTIONS(1209), - [anon_sym_NS_ENUM] = ACTIONS(1209), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1209), - [anon_sym_NS_OPTIONS] = ACTIONS(1209), - [anon_sym_struct] = ACTIONS(1209), - [anon_sym_union] = ACTIONS(1209), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1209), - [anon_sym_ATend] = ACTIONS(1207), - [sym_optional] = ACTIONS(1207), - [sym_required] = ACTIONS(1207), - [anon_sym_ATproperty] = ACTIONS(1207), - [sym_method_attribute_specifier] = ACTIONS(1209), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1209), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1209), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1209), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1209), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1209), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1209), - [anon_sym_NS_AVAILABLE] = ACTIONS(1209), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1209), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1209), - [anon_sym_API_AVAILABLE] = ACTIONS(1209), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1209), - [anon_sym_API_DEPRECATED] = ACTIONS(1209), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1209), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1209), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1209), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1209), - [anon_sym___deprecated_msg] = ACTIONS(1209), - [anon_sym___deprecated_enum_msg] = ACTIONS(1209), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1209), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1209), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1209), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1209), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1209), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1209), - [anon_sym_ATsynthesize] = ACTIONS(1207), - [anon_sym_ATdynamic] = ACTIONS(1207), - [anon_sym_typeof] = ACTIONS(1209), - [anon_sym___typeof] = ACTIONS(1209), - [anon_sym___typeof__] = ACTIONS(1209), - [sym_id] = ACTIONS(1209), - [sym_instancetype] = ACTIONS(1209), - [sym_Class] = ACTIONS(1209), - [sym_SEL] = ACTIONS(1209), - [sym_IMP] = ACTIONS(1209), - [sym_BOOL] = ACTIONS(1209), - [sym_auto] = ACTIONS(1209), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2921] = { - [sym_type_qualifier] = STATE(3454), - [sym__expression] = STATE(4496), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_type_definition_repeat1] = STATE(3454), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(6934), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(6936), - [anon_sym_const] = ACTIONS(6922), - [anon_sym_volatile] = ACTIONS(6922), - [anon_sym_restrict] = ACTIONS(6922), - [anon_sym__Atomic] = ACTIONS(6922), - [anon_sym_in] = ACTIONS(6922), - [anon_sym_out] = ACTIONS(6922), - [anon_sym_inout] = ACTIONS(6922), - [anon_sym_bycopy] = ACTIONS(6922), - [anon_sym_byref] = ACTIONS(6922), - [anon_sym_oneway] = ACTIONS(6922), - [anon_sym__Nullable] = ACTIONS(6922), - [anon_sym__Nonnull] = ACTIONS(6922), - [anon_sym__Nullable_result] = ACTIONS(6922), - [anon_sym__Null_unspecified] = ACTIONS(6922), - [anon_sym___autoreleasing] = ACTIONS(6922), - [anon_sym___nullable] = ACTIONS(6922), - [anon_sym___nonnull] = ACTIONS(6922), - [anon_sym___strong] = ACTIONS(6922), - [anon_sym___weak] = ACTIONS(6922), - [anon_sym___bridge] = ACTIONS(6922), - [anon_sym___bridge_transfer] = ACTIONS(6922), - [anon_sym___bridge_retained] = ACTIONS(6922), - [anon_sym___unsafe_unretained] = ACTIONS(6922), - [anon_sym___block] = ACTIONS(6922), - [anon_sym___kindof] = ACTIONS(6922), - [anon_sym___unused] = ACTIONS(6922), - [anon_sym__Complex] = ACTIONS(6922), - [anon_sym___complex] = ACTIONS(6922), - [anon_sym_IBOutlet] = ACTIONS(6922), - [anon_sym_IBInspectable] = ACTIONS(6922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6922), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2922] = { - [sym_identifier] = ACTIONS(1455), - [aux_sym_preproc_def_token1] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_typedef] = ACTIONS(1455), - [anon_sym_extern] = ACTIONS(1455), - [anon_sym___attribute] = ACTIONS(1455), - [anon_sym___attribute__] = ACTIONS(1455), - [anon_sym___declspec] = ACTIONS(1455), - [anon_sym___cdecl] = ACTIONS(1455), - [anon_sym___clrcall] = ACTIONS(1455), - [anon_sym___stdcall] = ACTIONS(1455), - [anon_sym___fastcall] = ACTIONS(1455), - [anon_sym___thiscall] = ACTIONS(1455), - [anon_sym___vectorcall] = ACTIONS(1455), - [anon_sym_static] = ACTIONS(1455), - [anon_sym_auto] = ACTIONS(1455), - [anon_sym_register] = ACTIONS(1455), - [anon_sym_inline] = ACTIONS(1455), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1455), - [anon_sym_const] = ACTIONS(1455), - [anon_sym_volatile] = ACTIONS(1455), - [anon_sym_restrict] = ACTIONS(1455), - [anon_sym__Atomic] = ACTIONS(1455), - [anon_sym_in] = ACTIONS(1455), - [anon_sym_out] = ACTIONS(1455), - [anon_sym_inout] = ACTIONS(1455), - [anon_sym_bycopy] = ACTIONS(1455), - [anon_sym_byref] = ACTIONS(1455), - [anon_sym_oneway] = ACTIONS(1455), - [anon_sym__Nullable] = ACTIONS(1455), - [anon_sym__Nonnull] = ACTIONS(1455), - [anon_sym__Nullable_result] = ACTIONS(1455), - [anon_sym__Null_unspecified] = ACTIONS(1455), - [anon_sym___autoreleasing] = ACTIONS(1455), - [anon_sym___nullable] = ACTIONS(1455), - [anon_sym___nonnull] = ACTIONS(1455), - [anon_sym___strong] = ACTIONS(1455), - [anon_sym___weak] = ACTIONS(1455), - [anon_sym___bridge] = ACTIONS(1455), - [anon_sym___bridge_transfer] = ACTIONS(1455), - [anon_sym___bridge_retained] = ACTIONS(1455), - [anon_sym___unsafe_unretained] = ACTIONS(1455), - [anon_sym___block] = ACTIONS(1455), - [anon_sym___kindof] = ACTIONS(1455), - [anon_sym___unused] = ACTIONS(1455), - [anon_sym__Complex] = ACTIONS(1455), - [anon_sym___complex] = ACTIONS(1455), - [anon_sym_IBOutlet] = ACTIONS(1455), - [anon_sym_IBInspectable] = ACTIONS(1455), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1455), - [anon_sym_signed] = ACTIONS(1455), - [anon_sym_unsigned] = ACTIONS(1455), - [anon_sym_long] = ACTIONS(1455), - [anon_sym_short] = ACTIONS(1455), - [sym_primitive_type] = ACTIONS(1455), - [anon_sym_enum] = ACTIONS(1455), - [anon_sym_NS_ENUM] = ACTIONS(1455), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1455), - [anon_sym_NS_OPTIONS] = ACTIONS(1455), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1455), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1455), - [anon_sym_ATend] = ACTIONS(1453), - [sym_optional] = ACTIONS(1453), - [sym_required] = ACTIONS(1453), - [anon_sym_ATproperty] = ACTIONS(1453), - [sym_method_attribute_specifier] = ACTIONS(1455), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1455), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1455), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1455), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1455), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1455), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1455), - [anon_sym_NS_AVAILABLE] = ACTIONS(1455), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1455), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1455), - [anon_sym_API_AVAILABLE] = ACTIONS(1455), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1455), - [anon_sym_API_DEPRECATED] = ACTIONS(1455), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1455), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1455), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1455), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1455), - [anon_sym___deprecated_msg] = ACTIONS(1455), - [anon_sym___deprecated_enum_msg] = ACTIONS(1455), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1455), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1455), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1455), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1455), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1455), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1455), - [anon_sym_ATsynthesize] = ACTIONS(1453), - [anon_sym_ATdynamic] = ACTIONS(1453), - [anon_sym_typeof] = ACTIONS(1455), - [anon_sym___typeof] = ACTIONS(1455), - [anon_sym___typeof__] = ACTIONS(1455), - [sym_id] = ACTIONS(1455), - [sym_instancetype] = ACTIONS(1455), - [sym_Class] = ACTIONS(1455), - [sym_SEL] = ACTIONS(1455), - [sym_IMP] = ACTIONS(1455), - [sym_BOOL] = ACTIONS(1455), - [sym_auto] = ACTIONS(1455), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2923] = { - [sym_identifier] = ACTIONS(1591), - [aux_sym_preproc_def_token1] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_typedef] = ACTIONS(1591), - [anon_sym_extern] = ACTIONS(1591), - [anon_sym___attribute] = ACTIONS(1591), - [anon_sym___attribute__] = ACTIONS(1591), - [anon_sym___declspec] = ACTIONS(1591), - [anon_sym___cdecl] = ACTIONS(1591), - [anon_sym___clrcall] = ACTIONS(1591), - [anon_sym___stdcall] = ACTIONS(1591), - [anon_sym___fastcall] = ACTIONS(1591), - [anon_sym___thiscall] = ACTIONS(1591), - [anon_sym___vectorcall] = ACTIONS(1591), - [anon_sym_static] = ACTIONS(1591), - [anon_sym_auto] = ACTIONS(1591), - [anon_sym_register] = ACTIONS(1591), - [anon_sym_inline] = ACTIONS(1591), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1591), - [anon_sym_const] = ACTIONS(1591), - [anon_sym_volatile] = ACTIONS(1591), - [anon_sym_restrict] = ACTIONS(1591), - [anon_sym__Atomic] = ACTIONS(1591), - [anon_sym_in] = ACTIONS(1591), - [anon_sym_out] = ACTIONS(1591), - [anon_sym_inout] = ACTIONS(1591), - [anon_sym_bycopy] = ACTIONS(1591), - [anon_sym_byref] = ACTIONS(1591), - [anon_sym_oneway] = ACTIONS(1591), - [anon_sym__Nullable] = ACTIONS(1591), - [anon_sym__Nonnull] = ACTIONS(1591), - [anon_sym__Nullable_result] = ACTIONS(1591), - [anon_sym__Null_unspecified] = ACTIONS(1591), - [anon_sym___autoreleasing] = ACTIONS(1591), - [anon_sym___nullable] = ACTIONS(1591), - [anon_sym___nonnull] = ACTIONS(1591), - [anon_sym___strong] = ACTIONS(1591), - [anon_sym___weak] = ACTIONS(1591), - [anon_sym___bridge] = ACTIONS(1591), - [anon_sym___bridge_transfer] = ACTIONS(1591), - [anon_sym___bridge_retained] = ACTIONS(1591), - [anon_sym___unsafe_unretained] = ACTIONS(1591), - [anon_sym___block] = ACTIONS(1591), - [anon_sym___kindof] = ACTIONS(1591), - [anon_sym___unused] = ACTIONS(1591), - [anon_sym__Complex] = ACTIONS(1591), - [anon_sym___complex] = ACTIONS(1591), - [anon_sym_IBOutlet] = ACTIONS(1591), - [anon_sym_IBInspectable] = ACTIONS(1591), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1591), - [anon_sym_signed] = ACTIONS(1591), - [anon_sym_unsigned] = ACTIONS(1591), - [anon_sym_long] = ACTIONS(1591), - [anon_sym_short] = ACTIONS(1591), - [sym_primitive_type] = ACTIONS(1591), - [anon_sym_enum] = ACTIONS(1591), - [anon_sym_NS_ENUM] = ACTIONS(1591), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1591), - [anon_sym_NS_OPTIONS] = ACTIONS(1591), - [anon_sym_struct] = ACTIONS(1591), - [anon_sym_union] = ACTIONS(1591), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1591), - [anon_sym_ATend] = ACTIONS(1589), - [sym_optional] = ACTIONS(1589), - [sym_required] = ACTIONS(1589), - [anon_sym_ATproperty] = ACTIONS(1589), - [sym_method_attribute_specifier] = ACTIONS(1591), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1591), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1591), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1591), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1591), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1591), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1591), - [anon_sym_NS_AVAILABLE] = ACTIONS(1591), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1591), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1591), - [anon_sym_API_AVAILABLE] = ACTIONS(1591), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1591), - [anon_sym_API_DEPRECATED] = ACTIONS(1591), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1591), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1591), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1591), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1591), - [anon_sym___deprecated_msg] = ACTIONS(1591), - [anon_sym___deprecated_enum_msg] = ACTIONS(1591), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1591), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1591), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1591), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1591), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1591), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1591), - [anon_sym_ATsynthesize] = ACTIONS(1589), - [anon_sym_ATdynamic] = ACTIONS(1589), - [anon_sym_typeof] = ACTIONS(1591), - [anon_sym___typeof] = ACTIONS(1591), - [anon_sym___typeof__] = ACTIONS(1591), - [sym_id] = ACTIONS(1591), - [sym_instancetype] = ACTIONS(1591), - [sym_Class] = ACTIONS(1591), - [sym_SEL] = ACTIONS(1591), - [sym_IMP] = ACTIONS(1591), - [sym_BOOL] = ACTIONS(1591), - [sym_auto] = ACTIONS(1591), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2924] = { - [sym_identifier] = ACTIONS(1611), - [aux_sym_preproc_def_token1] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_typedef] = ACTIONS(1611), - [anon_sym_extern] = ACTIONS(1611), - [anon_sym___attribute] = ACTIONS(1611), - [anon_sym___attribute__] = ACTIONS(1611), - [anon_sym___declspec] = ACTIONS(1611), - [anon_sym___cdecl] = ACTIONS(1611), - [anon_sym___clrcall] = ACTIONS(1611), - [anon_sym___stdcall] = ACTIONS(1611), - [anon_sym___fastcall] = ACTIONS(1611), - [anon_sym___thiscall] = ACTIONS(1611), - [anon_sym___vectorcall] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(1611), - [anon_sym_auto] = ACTIONS(1611), - [anon_sym_register] = ACTIONS(1611), - [anon_sym_inline] = ACTIONS(1611), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1611), - [anon_sym_const] = ACTIONS(1611), - [anon_sym_volatile] = ACTIONS(1611), - [anon_sym_restrict] = ACTIONS(1611), - [anon_sym__Atomic] = ACTIONS(1611), - [anon_sym_in] = ACTIONS(1611), - [anon_sym_out] = ACTIONS(1611), - [anon_sym_inout] = ACTIONS(1611), - [anon_sym_bycopy] = ACTIONS(1611), - [anon_sym_byref] = ACTIONS(1611), - [anon_sym_oneway] = ACTIONS(1611), - [anon_sym__Nullable] = ACTIONS(1611), - [anon_sym__Nonnull] = ACTIONS(1611), - [anon_sym__Nullable_result] = ACTIONS(1611), - [anon_sym__Null_unspecified] = ACTIONS(1611), - [anon_sym___autoreleasing] = ACTIONS(1611), - [anon_sym___nullable] = ACTIONS(1611), - [anon_sym___nonnull] = ACTIONS(1611), - [anon_sym___strong] = ACTIONS(1611), - [anon_sym___weak] = ACTIONS(1611), - [anon_sym___bridge] = ACTIONS(1611), - [anon_sym___bridge_transfer] = ACTIONS(1611), - [anon_sym___bridge_retained] = ACTIONS(1611), - [anon_sym___unsafe_unretained] = ACTIONS(1611), - [anon_sym___block] = ACTIONS(1611), - [anon_sym___kindof] = ACTIONS(1611), - [anon_sym___unused] = ACTIONS(1611), - [anon_sym__Complex] = ACTIONS(1611), - [anon_sym___complex] = ACTIONS(1611), - [anon_sym_IBOutlet] = ACTIONS(1611), - [anon_sym_IBInspectable] = ACTIONS(1611), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1611), - [anon_sym_signed] = ACTIONS(1611), - [anon_sym_unsigned] = ACTIONS(1611), - [anon_sym_long] = ACTIONS(1611), - [anon_sym_short] = ACTIONS(1611), - [sym_primitive_type] = ACTIONS(1611), - [anon_sym_enum] = ACTIONS(1611), - [anon_sym_NS_ENUM] = ACTIONS(1611), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1611), - [anon_sym_NS_OPTIONS] = ACTIONS(1611), - [anon_sym_struct] = ACTIONS(1611), - [anon_sym_union] = ACTIONS(1611), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1611), - [anon_sym_ATend] = ACTIONS(1609), - [sym_optional] = ACTIONS(1609), - [sym_required] = ACTIONS(1609), - [anon_sym_ATproperty] = ACTIONS(1609), - [sym_method_attribute_specifier] = ACTIONS(1611), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1611), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1611), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1611), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1611), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1611), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1611), - [anon_sym_NS_AVAILABLE] = ACTIONS(1611), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1611), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1611), - [anon_sym_API_AVAILABLE] = ACTIONS(1611), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1611), - [anon_sym_API_DEPRECATED] = ACTIONS(1611), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1611), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1611), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1611), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1611), - [anon_sym___deprecated_msg] = ACTIONS(1611), - [anon_sym___deprecated_enum_msg] = ACTIONS(1611), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1611), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1611), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1611), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1611), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1611), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1611), - [anon_sym_ATsynthesize] = ACTIONS(1609), - [anon_sym_ATdynamic] = ACTIONS(1609), - [anon_sym_typeof] = ACTIONS(1611), - [anon_sym___typeof] = ACTIONS(1611), - [anon_sym___typeof__] = ACTIONS(1611), - [sym_id] = ACTIONS(1611), - [sym_instancetype] = ACTIONS(1611), - [sym_Class] = ACTIONS(1611), - [sym_SEL] = ACTIONS(1611), - [sym_IMP] = ACTIONS(1611), - [sym_BOOL] = ACTIONS(1611), - [sym_auto] = ACTIONS(1611), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2925] = { - [sym_identifier] = ACTIONS(1615), - [aux_sym_preproc_def_token1] = ACTIONS(1613), - [anon_sym_DASH] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1613), - [anon_sym_typedef] = ACTIONS(1615), - [anon_sym_extern] = ACTIONS(1615), - [anon_sym___attribute] = ACTIONS(1615), - [anon_sym___attribute__] = ACTIONS(1615), - [anon_sym___declspec] = ACTIONS(1615), - [anon_sym___cdecl] = ACTIONS(1615), - [anon_sym___clrcall] = ACTIONS(1615), - [anon_sym___stdcall] = ACTIONS(1615), - [anon_sym___fastcall] = ACTIONS(1615), - [anon_sym___thiscall] = ACTIONS(1615), - [anon_sym___vectorcall] = ACTIONS(1615), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_auto] = ACTIONS(1615), - [anon_sym_register] = ACTIONS(1615), - [anon_sym_inline] = ACTIONS(1615), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1615), - [anon_sym_const] = ACTIONS(1615), - [anon_sym_volatile] = ACTIONS(1615), - [anon_sym_restrict] = ACTIONS(1615), - [anon_sym__Atomic] = ACTIONS(1615), - [anon_sym_in] = ACTIONS(1615), - [anon_sym_out] = ACTIONS(1615), - [anon_sym_inout] = ACTIONS(1615), - [anon_sym_bycopy] = ACTIONS(1615), - [anon_sym_byref] = ACTIONS(1615), - [anon_sym_oneway] = ACTIONS(1615), - [anon_sym__Nullable] = ACTIONS(1615), - [anon_sym__Nonnull] = ACTIONS(1615), - [anon_sym__Nullable_result] = ACTIONS(1615), - [anon_sym__Null_unspecified] = ACTIONS(1615), - [anon_sym___autoreleasing] = ACTIONS(1615), - [anon_sym___nullable] = ACTIONS(1615), - [anon_sym___nonnull] = ACTIONS(1615), - [anon_sym___strong] = ACTIONS(1615), - [anon_sym___weak] = ACTIONS(1615), - [anon_sym___bridge] = ACTIONS(1615), - [anon_sym___bridge_transfer] = ACTIONS(1615), - [anon_sym___bridge_retained] = ACTIONS(1615), - [anon_sym___unsafe_unretained] = ACTIONS(1615), - [anon_sym___block] = ACTIONS(1615), - [anon_sym___kindof] = ACTIONS(1615), - [anon_sym___unused] = ACTIONS(1615), - [anon_sym__Complex] = ACTIONS(1615), - [anon_sym___complex] = ACTIONS(1615), - [anon_sym_IBOutlet] = ACTIONS(1615), - [anon_sym_IBInspectable] = ACTIONS(1615), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1615), - [anon_sym_signed] = ACTIONS(1615), - [anon_sym_unsigned] = ACTIONS(1615), - [anon_sym_long] = ACTIONS(1615), - [anon_sym_short] = ACTIONS(1615), - [sym_primitive_type] = ACTIONS(1615), - [anon_sym_enum] = ACTIONS(1615), - [anon_sym_NS_ENUM] = ACTIONS(1615), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1615), - [anon_sym_NS_OPTIONS] = ACTIONS(1615), - [anon_sym_struct] = ACTIONS(1615), - [anon_sym_union] = ACTIONS(1615), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1615), - [anon_sym_ATend] = ACTIONS(1613), - [sym_optional] = ACTIONS(1613), - [sym_required] = ACTIONS(1613), - [anon_sym_ATproperty] = ACTIONS(1613), - [sym_method_attribute_specifier] = ACTIONS(1615), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1615), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1615), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1615), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1615), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1615), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1615), - [anon_sym_NS_AVAILABLE] = ACTIONS(1615), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1615), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1615), - [anon_sym_API_AVAILABLE] = ACTIONS(1615), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1615), - [anon_sym_API_DEPRECATED] = ACTIONS(1615), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1615), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1615), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1615), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1615), - [anon_sym___deprecated_msg] = ACTIONS(1615), - [anon_sym___deprecated_enum_msg] = ACTIONS(1615), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1615), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1615), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1615), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1615), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1615), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1615), - [anon_sym_ATsynthesize] = ACTIONS(1613), - [anon_sym_ATdynamic] = ACTIONS(1613), - [anon_sym_typeof] = ACTIONS(1615), - [anon_sym___typeof] = ACTIONS(1615), - [anon_sym___typeof__] = ACTIONS(1615), - [sym_id] = ACTIONS(1615), - [sym_instancetype] = ACTIONS(1615), - [sym_Class] = ACTIONS(1615), - [sym_SEL] = ACTIONS(1615), - [sym_IMP] = ACTIONS(1615), - [sym_BOOL] = ACTIONS(1615), - [sym_auto] = ACTIONS(1615), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2926] = { - [sym_identifier] = ACTIONS(1619), - [aux_sym_preproc_def_token1] = ACTIONS(1617), - [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1617), - [anon_sym_typedef] = ACTIONS(1619), - [anon_sym_extern] = ACTIONS(1619), - [anon_sym___attribute] = ACTIONS(1619), - [anon_sym___attribute__] = ACTIONS(1619), - [anon_sym___declspec] = ACTIONS(1619), - [anon_sym___cdecl] = ACTIONS(1619), - [anon_sym___clrcall] = ACTIONS(1619), - [anon_sym___stdcall] = ACTIONS(1619), - [anon_sym___fastcall] = ACTIONS(1619), - [anon_sym___thiscall] = ACTIONS(1619), - [anon_sym___vectorcall] = ACTIONS(1619), - [anon_sym_static] = ACTIONS(1619), - [anon_sym_auto] = ACTIONS(1619), - [anon_sym_register] = ACTIONS(1619), - [anon_sym_inline] = ACTIONS(1619), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1619), - [anon_sym_const] = ACTIONS(1619), - [anon_sym_volatile] = ACTIONS(1619), - [anon_sym_restrict] = ACTIONS(1619), - [anon_sym__Atomic] = ACTIONS(1619), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_out] = ACTIONS(1619), - [anon_sym_inout] = ACTIONS(1619), - [anon_sym_bycopy] = ACTIONS(1619), - [anon_sym_byref] = ACTIONS(1619), - [anon_sym_oneway] = ACTIONS(1619), - [anon_sym__Nullable] = ACTIONS(1619), - [anon_sym__Nonnull] = ACTIONS(1619), - [anon_sym__Nullable_result] = ACTIONS(1619), - [anon_sym__Null_unspecified] = ACTIONS(1619), - [anon_sym___autoreleasing] = ACTIONS(1619), - [anon_sym___nullable] = ACTIONS(1619), - [anon_sym___nonnull] = ACTIONS(1619), - [anon_sym___strong] = ACTIONS(1619), - [anon_sym___weak] = ACTIONS(1619), - [anon_sym___bridge] = ACTIONS(1619), - [anon_sym___bridge_transfer] = ACTIONS(1619), - [anon_sym___bridge_retained] = ACTIONS(1619), - [anon_sym___unsafe_unretained] = ACTIONS(1619), - [anon_sym___block] = ACTIONS(1619), - [anon_sym___kindof] = ACTIONS(1619), - [anon_sym___unused] = ACTIONS(1619), - [anon_sym__Complex] = ACTIONS(1619), - [anon_sym___complex] = ACTIONS(1619), - [anon_sym_IBOutlet] = ACTIONS(1619), - [anon_sym_IBInspectable] = ACTIONS(1619), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1619), - [anon_sym_signed] = ACTIONS(1619), - [anon_sym_unsigned] = ACTIONS(1619), - [anon_sym_long] = ACTIONS(1619), - [anon_sym_short] = ACTIONS(1619), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_enum] = ACTIONS(1619), - [anon_sym_NS_ENUM] = ACTIONS(1619), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1619), - [anon_sym_NS_OPTIONS] = ACTIONS(1619), - [anon_sym_struct] = ACTIONS(1619), - [anon_sym_union] = ACTIONS(1619), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1619), - [anon_sym_ATend] = ACTIONS(1617), - [sym_optional] = ACTIONS(1617), - [sym_required] = ACTIONS(1617), - [anon_sym_ATproperty] = ACTIONS(1617), - [sym_method_attribute_specifier] = ACTIONS(1619), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1619), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1619), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1619), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1619), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1619), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1619), - [anon_sym_NS_AVAILABLE] = ACTIONS(1619), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1619), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1619), - [anon_sym_API_AVAILABLE] = ACTIONS(1619), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1619), - [anon_sym_API_DEPRECATED] = ACTIONS(1619), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1619), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1619), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1619), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1619), - [anon_sym___deprecated_msg] = ACTIONS(1619), - [anon_sym___deprecated_enum_msg] = ACTIONS(1619), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1619), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1619), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1619), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1619), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1619), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1619), - [anon_sym_ATsynthesize] = ACTIONS(1617), - [anon_sym_ATdynamic] = ACTIONS(1617), - [anon_sym_typeof] = ACTIONS(1619), - [anon_sym___typeof] = ACTIONS(1619), - [anon_sym___typeof__] = ACTIONS(1619), - [sym_id] = ACTIONS(1619), - [sym_instancetype] = ACTIONS(1619), - [sym_Class] = ACTIONS(1619), - [sym_SEL] = ACTIONS(1619), - [sym_IMP] = ACTIONS(1619), - [sym_BOOL] = ACTIONS(1619), - [sym_auto] = ACTIONS(1619), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2927] = { - [sym_identifier] = ACTIONS(1435), - [aux_sym_preproc_def_token1] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_typedef] = ACTIONS(1435), - [anon_sym_extern] = ACTIONS(1435), - [anon_sym___attribute] = ACTIONS(1435), - [anon_sym___attribute__] = ACTIONS(1435), - [anon_sym___declspec] = ACTIONS(1435), - [anon_sym___cdecl] = ACTIONS(1435), - [anon_sym___clrcall] = ACTIONS(1435), - [anon_sym___stdcall] = ACTIONS(1435), - [anon_sym___fastcall] = ACTIONS(1435), - [anon_sym___thiscall] = ACTIONS(1435), - [anon_sym___vectorcall] = ACTIONS(1435), - [anon_sym_static] = ACTIONS(1435), - [anon_sym_auto] = ACTIONS(1435), - [anon_sym_register] = ACTIONS(1435), - [anon_sym_inline] = ACTIONS(1435), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1435), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_volatile] = ACTIONS(1435), - [anon_sym_restrict] = ACTIONS(1435), - [anon_sym__Atomic] = ACTIONS(1435), - [anon_sym_in] = ACTIONS(1435), - [anon_sym_out] = ACTIONS(1435), - [anon_sym_inout] = ACTIONS(1435), - [anon_sym_bycopy] = ACTIONS(1435), - [anon_sym_byref] = ACTIONS(1435), - [anon_sym_oneway] = ACTIONS(1435), - [anon_sym__Nullable] = ACTIONS(1435), - [anon_sym__Nonnull] = ACTIONS(1435), - [anon_sym__Nullable_result] = ACTIONS(1435), - [anon_sym__Null_unspecified] = ACTIONS(1435), - [anon_sym___autoreleasing] = ACTIONS(1435), - [anon_sym___nullable] = ACTIONS(1435), - [anon_sym___nonnull] = ACTIONS(1435), - [anon_sym___strong] = ACTIONS(1435), - [anon_sym___weak] = ACTIONS(1435), - [anon_sym___bridge] = ACTIONS(1435), - [anon_sym___bridge_transfer] = ACTIONS(1435), - [anon_sym___bridge_retained] = ACTIONS(1435), - [anon_sym___unsafe_unretained] = ACTIONS(1435), - [anon_sym___block] = ACTIONS(1435), - [anon_sym___kindof] = ACTIONS(1435), - [anon_sym___unused] = ACTIONS(1435), - [anon_sym__Complex] = ACTIONS(1435), - [anon_sym___complex] = ACTIONS(1435), - [anon_sym_IBOutlet] = ACTIONS(1435), - [anon_sym_IBInspectable] = ACTIONS(1435), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1435), - [anon_sym_signed] = ACTIONS(1435), - [anon_sym_unsigned] = ACTIONS(1435), - [anon_sym_long] = ACTIONS(1435), - [anon_sym_short] = ACTIONS(1435), - [sym_primitive_type] = ACTIONS(1435), - [anon_sym_enum] = ACTIONS(1435), - [anon_sym_NS_ENUM] = ACTIONS(1435), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1435), - [anon_sym_NS_OPTIONS] = ACTIONS(1435), - [anon_sym_struct] = ACTIONS(1435), - [anon_sym_union] = ACTIONS(1435), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1435), - [anon_sym_ATend] = ACTIONS(1433), - [sym_optional] = ACTIONS(1433), - [sym_required] = ACTIONS(1433), - [anon_sym_ATproperty] = ACTIONS(1433), - [sym_method_attribute_specifier] = ACTIONS(1435), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1435), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1435), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1435), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1435), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1435), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1435), - [anon_sym_NS_AVAILABLE] = ACTIONS(1435), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1435), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1435), - [anon_sym_API_AVAILABLE] = ACTIONS(1435), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1435), - [anon_sym_API_DEPRECATED] = ACTIONS(1435), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1435), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1435), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1435), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1435), - [anon_sym___deprecated_msg] = ACTIONS(1435), - [anon_sym___deprecated_enum_msg] = ACTIONS(1435), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1435), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1435), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1435), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1435), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1435), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1435), - [anon_sym_ATsynthesize] = ACTIONS(1433), - [anon_sym_ATdynamic] = ACTIONS(1433), - [anon_sym_typeof] = ACTIONS(1435), - [anon_sym___typeof] = ACTIONS(1435), - [anon_sym___typeof__] = ACTIONS(1435), - [sym_id] = ACTIONS(1435), - [sym_instancetype] = ACTIONS(1435), - [sym_Class] = ACTIONS(1435), - [sym_SEL] = ACTIONS(1435), - [sym_IMP] = ACTIONS(1435), - [sym_BOOL] = ACTIONS(1435), - [sym_auto] = ACTIONS(1435), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2928] = { - [sym_identifier] = ACTIONS(1627), - [aux_sym_preproc_def_token1] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_typedef] = ACTIONS(1627), - [anon_sym_extern] = ACTIONS(1627), - [anon_sym___attribute] = ACTIONS(1627), - [anon_sym___attribute__] = ACTIONS(1627), - [anon_sym___declspec] = ACTIONS(1627), - [anon_sym___cdecl] = ACTIONS(1627), - [anon_sym___clrcall] = ACTIONS(1627), - [anon_sym___stdcall] = ACTIONS(1627), - [anon_sym___fastcall] = ACTIONS(1627), - [anon_sym___thiscall] = ACTIONS(1627), - [anon_sym___vectorcall] = ACTIONS(1627), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_auto] = ACTIONS(1627), - [anon_sym_register] = ACTIONS(1627), - [anon_sym_inline] = ACTIONS(1627), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1627), - [anon_sym_const] = ACTIONS(1627), - [anon_sym_volatile] = ACTIONS(1627), - [anon_sym_restrict] = ACTIONS(1627), - [anon_sym__Atomic] = ACTIONS(1627), - [anon_sym_in] = ACTIONS(1627), - [anon_sym_out] = ACTIONS(1627), - [anon_sym_inout] = ACTIONS(1627), - [anon_sym_bycopy] = ACTIONS(1627), - [anon_sym_byref] = ACTIONS(1627), - [anon_sym_oneway] = ACTIONS(1627), - [anon_sym__Nullable] = ACTIONS(1627), - [anon_sym__Nonnull] = ACTIONS(1627), - [anon_sym__Nullable_result] = ACTIONS(1627), - [anon_sym__Null_unspecified] = ACTIONS(1627), - [anon_sym___autoreleasing] = ACTIONS(1627), - [anon_sym___nullable] = ACTIONS(1627), - [anon_sym___nonnull] = ACTIONS(1627), - [anon_sym___strong] = ACTIONS(1627), - [anon_sym___weak] = ACTIONS(1627), - [anon_sym___bridge] = ACTIONS(1627), - [anon_sym___bridge_transfer] = ACTIONS(1627), - [anon_sym___bridge_retained] = ACTIONS(1627), - [anon_sym___unsafe_unretained] = ACTIONS(1627), - [anon_sym___block] = ACTIONS(1627), - [anon_sym___kindof] = ACTIONS(1627), - [anon_sym___unused] = ACTIONS(1627), - [anon_sym__Complex] = ACTIONS(1627), - [anon_sym___complex] = ACTIONS(1627), - [anon_sym_IBOutlet] = ACTIONS(1627), - [anon_sym_IBInspectable] = ACTIONS(1627), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1627), - [anon_sym_signed] = ACTIONS(1627), - [anon_sym_unsigned] = ACTIONS(1627), - [anon_sym_long] = ACTIONS(1627), - [anon_sym_short] = ACTIONS(1627), - [sym_primitive_type] = ACTIONS(1627), - [anon_sym_enum] = ACTIONS(1627), - [anon_sym_NS_ENUM] = ACTIONS(1627), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1627), - [anon_sym_NS_OPTIONS] = ACTIONS(1627), - [anon_sym_struct] = ACTIONS(1627), - [anon_sym_union] = ACTIONS(1627), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1627), - [anon_sym_ATend] = ACTIONS(1625), - [sym_optional] = ACTIONS(1625), - [sym_required] = ACTIONS(1625), - [anon_sym_ATproperty] = ACTIONS(1625), - [sym_method_attribute_specifier] = ACTIONS(1627), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1627), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1627), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1627), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1627), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1627), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1627), - [anon_sym_NS_AVAILABLE] = ACTIONS(1627), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1627), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1627), - [anon_sym_API_AVAILABLE] = ACTIONS(1627), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1627), - [anon_sym_API_DEPRECATED] = ACTIONS(1627), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1627), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1627), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1627), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1627), - [anon_sym___deprecated_msg] = ACTIONS(1627), - [anon_sym___deprecated_enum_msg] = ACTIONS(1627), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1627), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1627), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1627), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1627), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1627), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1627), - [anon_sym_ATsynthesize] = ACTIONS(1625), - [anon_sym_ATdynamic] = ACTIONS(1625), - [anon_sym_typeof] = ACTIONS(1627), - [anon_sym___typeof] = ACTIONS(1627), - [anon_sym___typeof__] = ACTIONS(1627), - [sym_id] = ACTIONS(1627), - [sym_instancetype] = ACTIONS(1627), - [sym_Class] = ACTIONS(1627), - [sym_SEL] = ACTIONS(1627), - [sym_IMP] = ACTIONS(1627), - [sym_BOOL] = ACTIONS(1627), - [sym_auto] = ACTIONS(1627), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2929] = { - [sym_identifier] = ACTIONS(1313), - [aux_sym_preproc_def_token1] = ACTIONS(1315), - [anon_sym_DASH] = ACTIONS(1315), - [anon_sym_PLUS] = ACTIONS(1315), - [anon_sym_typedef] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym___attribute] = ACTIONS(1313), - [anon_sym___attribute__] = ACTIONS(1313), - [anon_sym___declspec] = ACTIONS(1313), - [anon_sym___cdecl] = ACTIONS(1313), - [anon_sym___clrcall] = ACTIONS(1313), - [anon_sym___stdcall] = ACTIONS(1313), - [anon_sym___fastcall] = ACTIONS(1313), - [anon_sym___thiscall] = ACTIONS(1313), - [anon_sym___vectorcall] = ACTIONS(1313), - [anon_sym_static] = ACTIONS(1313), - [anon_sym_auto] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_inline] = ACTIONS(1313), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [anon_sym_volatile] = ACTIONS(1313), - [anon_sym_restrict] = ACTIONS(1313), - [anon_sym__Atomic] = ACTIONS(1313), - [anon_sym_in] = ACTIONS(1313), - [anon_sym_out] = ACTIONS(1313), - [anon_sym_inout] = ACTIONS(1313), - [anon_sym_bycopy] = ACTIONS(1313), - [anon_sym_byref] = ACTIONS(1313), - [anon_sym_oneway] = ACTIONS(1313), - [anon_sym__Nullable] = ACTIONS(1313), - [anon_sym__Nonnull] = ACTIONS(1313), - [anon_sym__Nullable_result] = ACTIONS(1313), - [anon_sym__Null_unspecified] = ACTIONS(1313), - [anon_sym___autoreleasing] = ACTIONS(1313), - [anon_sym___nullable] = ACTIONS(1313), - [anon_sym___nonnull] = ACTIONS(1313), - [anon_sym___strong] = ACTIONS(1313), - [anon_sym___weak] = ACTIONS(1313), - [anon_sym___bridge] = ACTIONS(1313), - [anon_sym___bridge_transfer] = ACTIONS(1313), - [anon_sym___bridge_retained] = ACTIONS(1313), - [anon_sym___unsafe_unretained] = ACTIONS(1313), - [anon_sym___block] = ACTIONS(1313), - [anon_sym___kindof] = ACTIONS(1313), - [anon_sym___unused] = ACTIONS(1313), - [anon_sym__Complex] = ACTIONS(1313), - [anon_sym___complex] = ACTIONS(1313), - [anon_sym_IBOutlet] = ACTIONS(1313), - [anon_sym_IBInspectable] = ACTIONS(1313), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1313), - [anon_sym_signed] = ACTIONS(1313), - [anon_sym_unsigned] = ACTIONS(1313), - [anon_sym_long] = ACTIONS(1313), - [anon_sym_short] = ACTIONS(1313), - [sym_primitive_type] = ACTIONS(1313), - [anon_sym_enum] = ACTIONS(1313), - [anon_sym_NS_ENUM] = ACTIONS(1313), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1313), - [anon_sym_NS_OPTIONS] = ACTIONS(1313), - [anon_sym_struct] = ACTIONS(1313), - [anon_sym_union] = ACTIONS(1313), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1313), - [anon_sym_ATend] = ACTIONS(1315), - [sym_optional] = ACTIONS(1315), - [sym_required] = ACTIONS(1315), - [anon_sym_ATproperty] = ACTIONS(1315), - [sym_method_attribute_specifier] = ACTIONS(1313), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1313), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1313), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1313), - [anon_sym_NS_AVAILABLE] = ACTIONS(1313), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1313), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1313), - [anon_sym_API_AVAILABLE] = ACTIONS(1313), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1313), - [anon_sym_API_DEPRECATED] = ACTIONS(1313), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1313), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1313), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1313), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1313), - [anon_sym___deprecated_msg] = ACTIONS(1313), - [anon_sym___deprecated_enum_msg] = ACTIONS(1313), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1313), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1313), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1313), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1313), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1313), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1313), - [anon_sym_ATsynthesize] = ACTIONS(1315), - [anon_sym_ATdynamic] = ACTIONS(1315), - [anon_sym_typeof] = ACTIONS(1313), - [anon_sym___typeof] = ACTIONS(1313), - [anon_sym___typeof__] = ACTIONS(1313), - [sym_id] = ACTIONS(1313), - [sym_instancetype] = ACTIONS(1313), - [sym_Class] = ACTIONS(1313), - [sym_SEL] = ACTIONS(1313), - [sym_IMP] = ACTIONS(1313), - [sym_BOOL] = ACTIONS(1313), - [sym_auto] = ACTIONS(1313), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2930] = { - [sym_identifier] = ACTIONS(1439), - [aux_sym_preproc_def_token1] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_typedef] = ACTIONS(1439), - [anon_sym_extern] = ACTIONS(1439), - [anon_sym___attribute] = ACTIONS(1439), - [anon_sym___attribute__] = ACTIONS(1439), - [anon_sym___declspec] = ACTIONS(1439), - [anon_sym___cdecl] = ACTIONS(1439), - [anon_sym___clrcall] = ACTIONS(1439), - [anon_sym___stdcall] = ACTIONS(1439), - [anon_sym___fastcall] = ACTIONS(1439), - [anon_sym___thiscall] = ACTIONS(1439), - [anon_sym___vectorcall] = ACTIONS(1439), - [anon_sym_static] = ACTIONS(1439), - [anon_sym_auto] = ACTIONS(1439), - [anon_sym_register] = ACTIONS(1439), - [anon_sym_inline] = ACTIONS(1439), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_volatile] = ACTIONS(1439), - [anon_sym_restrict] = ACTIONS(1439), - [anon_sym__Atomic] = ACTIONS(1439), - [anon_sym_in] = ACTIONS(1439), - [anon_sym_out] = ACTIONS(1439), - [anon_sym_inout] = ACTIONS(1439), - [anon_sym_bycopy] = ACTIONS(1439), - [anon_sym_byref] = ACTIONS(1439), - [anon_sym_oneway] = ACTIONS(1439), - [anon_sym__Nullable] = ACTIONS(1439), - [anon_sym__Nonnull] = ACTIONS(1439), - [anon_sym__Nullable_result] = ACTIONS(1439), - [anon_sym__Null_unspecified] = ACTIONS(1439), - [anon_sym___autoreleasing] = ACTIONS(1439), - [anon_sym___nullable] = ACTIONS(1439), - [anon_sym___nonnull] = ACTIONS(1439), - [anon_sym___strong] = ACTIONS(1439), - [anon_sym___weak] = ACTIONS(1439), - [anon_sym___bridge] = ACTIONS(1439), - [anon_sym___bridge_transfer] = ACTIONS(1439), - [anon_sym___bridge_retained] = ACTIONS(1439), - [anon_sym___unsafe_unretained] = ACTIONS(1439), - [anon_sym___block] = ACTIONS(1439), - [anon_sym___kindof] = ACTIONS(1439), - [anon_sym___unused] = ACTIONS(1439), - [anon_sym__Complex] = ACTIONS(1439), - [anon_sym___complex] = ACTIONS(1439), - [anon_sym_IBOutlet] = ACTIONS(1439), - [anon_sym_IBInspectable] = ACTIONS(1439), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1439), - [anon_sym_signed] = ACTIONS(1439), - [anon_sym_unsigned] = ACTIONS(1439), - [anon_sym_long] = ACTIONS(1439), - [anon_sym_short] = ACTIONS(1439), - [sym_primitive_type] = ACTIONS(1439), - [anon_sym_enum] = ACTIONS(1439), - [anon_sym_NS_ENUM] = ACTIONS(1439), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1439), - [anon_sym_NS_OPTIONS] = ACTIONS(1439), - [anon_sym_struct] = ACTIONS(1439), - [anon_sym_union] = ACTIONS(1439), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1439), - [anon_sym_ATend] = ACTIONS(1437), - [sym_optional] = ACTIONS(1437), - [sym_required] = ACTIONS(1437), - [anon_sym_ATproperty] = ACTIONS(1437), - [sym_method_attribute_specifier] = ACTIONS(1439), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1439), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1439), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1439), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1439), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1439), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1439), - [anon_sym_NS_AVAILABLE] = ACTIONS(1439), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1439), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1439), - [anon_sym_API_AVAILABLE] = ACTIONS(1439), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1439), - [anon_sym_API_DEPRECATED] = ACTIONS(1439), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1439), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1439), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1439), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1439), - [anon_sym___deprecated_msg] = ACTIONS(1439), - [anon_sym___deprecated_enum_msg] = ACTIONS(1439), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1439), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1439), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1439), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1439), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1439), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1439), - [anon_sym_ATsynthesize] = ACTIONS(1437), - [anon_sym_ATdynamic] = ACTIONS(1437), - [anon_sym_typeof] = ACTIONS(1439), - [anon_sym___typeof] = ACTIONS(1439), - [anon_sym___typeof__] = ACTIONS(1439), - [sym_id] = ACTIONS(1439), - [sym_instancetype] = ACTIONS(1439), - [sym_Class] = ACTIONS(1439), - [sym_SEL] = ACTIONS(1439), - [sym_IMP] = ACTIONS(1439), - [sym_BOOL] = ACTIONS(1439), - [sym_auto] = ACTIONS(1439), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2931] = { - [sym_identifier] = ACTIONS(1423), - [aux_sym_preproc_def_token1] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_typedef] = ACTIONS(1423), - [anon_sym_extern] = ACTIONS(1423), - [anon_sym___attribute] = ACTIONS(1423), - [anon_sym___attribute__] = ACTIONS(1423), - [anon_sym___declspec] = ACTIONS(1423), - [anon_sym___cdecl] = ACTIONS(1423), - [anon_sym___clrcall] = ACTIONS(1423), - [anon_sym___stdcall] = ACTIONS(1423), - [anon_sym___fastcall] = ACTIONS(1423), - [anon_sym___thiscall] = ACTIONS(1423), - [anon_sym___vectorcall] = ACTIONS(1423), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_auto] = ACTIONS(1423), - [anon_sym_register] = ACTIONS(1423), - [anon_sym_inline] = ACTIONS(1423), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1423), - [anon_sym_volatile] = ACTIONS(1423), - [anon_sym_restrict] = ACTIONS(1423), - [anon_sym__Atomic] = ACTIONS(1423), - [anon_sym_in] = ACTIONS(1423), - [anon_sym_out] = ACTIONS(1423), - [anon_sym_inout] = ACTIONS(1423), - [anon_sym_bycopy] = ACTIONS(1423), - [anon_sym_byref] = ACTIONS(1423), - [anon_sym_oneway] = ACTIONS(1423), - [anon_sym__Nullable] = ACTIONS(1423), - [anon_sym__Nonnull] = ACTIONS(1423), - [anon_sym__Nullable_result] = ACTIONS(1423), - [anon_sym__Null_unspecified] = ACTIONS(1423), - [anon_sym___autoreleasing] = ACTIONS(1423), - [anon_sym___nullable] = ACTIONS(1423), - [anon_sym___nonnull] = ACTIONS(1423), - [anon_sym___strong] = ACTIONS(1423), - [anon_sym___weak] = ACTIONS(1423), - [anon_sym___bridge] = ACTIONS(1423), - [anon_sym___bridge_transfer] = ACTIONS(1423), - [anon_sym___bridge_retained] = ACTIONS(1423), - [anon_sym___unsafe_unretained] = ACTIONS(1423), - [anon_sym___block] = ACTIONS(1423), - [anon_sym___kindof] = ACTIONS(1423), - [anon_sym___unused] = ACTIONS(1423), - [anon_sym__Complex] = ACTIONS(1423), - [anon_sym___complex] = ACTIONS(1423), - [anon_sym_IBOutlet] = ACTIONS(1423), - [anon_sym_IBInspectable] = ACTIONS(1423), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1423), - [anon_sym_signed] = ACTIONS(1423), - [anon_sym_unsigned] = ACTIONS(1423), - [anon_sym_long] = ACTIONS(1423), - [anon_sym_short] = ACTIONS(1423), - [sym_primitive_type] = ACTIONS(1423), - [anon_sym_enum] = ACTIONS(1423), - [anon_sym_NS_ENUM] = ACTIONS(1423), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1423), - [anon_sym_NS_OPTIONS] = ACTIONS(1423), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1423), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1423), - [anon_sym_ATend] = ACTIONS(1421), - [sym_optional] = ACTIONS(1421), - [sym_required] = ACTIONS(1421), - [anon_sym_ATproperty] = ACTIONS(1421), - [sym_method_attribute_specifier] = ACTIONS(1423), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1423), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1423), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1423), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1423), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1423), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1423), - [anon_sym_NS_AVAILABLE] = ACTIONS(1423), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1423), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1423), - [anon_sym_API_AVAILABLE] = ACTIONS(1423), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1423), - [anon_sym_API_DEPRECATED] = ACTIONS(1423), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1423), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1423), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1423), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1423), - [anon_sym___deprecated_msg] = ACTIONS(1423), - [anon_sym___deprecated_enum_msg] = ACTIONS(1423), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1423), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1423), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1423), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1423), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1423), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1423), - [anon_sym_ATsynthesize] = ACTIONS(1421), - [anon_sym_ATdynamic] = ACTIONS(1421), - [anon_sym_typeof] = ACTIONS(1423), - [anon_sym___typeof] = ACTIONS(1423), - [anon_sym___typeof__] = ACTIONS(1423), - [sym_id] = ACTIONS(1423), - [sym_instancetype] = ACTIONS(1423), - [sym_Class] = ACTIONS(1423), - [sym_SEL] = ACTIONS(1423), - [sym_IMP] = ACTIONS(1423), - [sym_BOOL] = ACTIONS(1423), - [sym_auto] = ACTIONS(1423), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2932] = { - [sym_identifier] = ACTIONS(1419), - [aux_sym_preproc_def_token1] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_typedef] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(1419), - [anon_sym___attribute] = ACTIONS(1419), - [anon_sym___attribute__] = ACTIONS(1419), - [anon_sym___declspec] = ACTIONS(1419), - [anon_sym___cdecl] = ACTIONS(1419), - [anon_sym___clrcall] = ACTIONS(1419), - [anon_sym___stdcall] = ACTIONS(1419), - [anon_sym___fastcall] = ACTIONS(1419), - [anon_sym___thiscall] = ACTIONS(1419), - [anon_sym___vectorcall] = ACTIONS(1419), - [anon_sym_static] = ACTIONS(1419), - [anon_sym_auto] = ACTIONS(1419), - [anon_sym_register] = ACTIONS(1419), - [anon_sym_inline] = ACTIONS(1419), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1419), - [anon_sym_const] = ACTIONS(1419), - [anon_sym_volatile] = ACTIONS(1419), - [anon_sym_restrict] = ACTIONS(1419), - [anon_sym__Atomic] = ACTIONS(1419), - [anon_sym_in] = ACTIONS(1419), - [anon_sym_out] = ACTIONS(1419), - [anon_sym_inout] = ACTIONS(1419), - [anon_sym_bycopy] = ACTIONS(1419), - [anon_sym_byref] = ACTIONS(1419), - [anon_sym_oneway] = ACTIONS(1419), - [anon_sym__Nullable] = ACTIONS(1419), - [anon_sym__Nonnull] = ACTIONS(1419), - [anon_sym__Nullable_result] = ACTIONS(1419), - [anon_sym__Null_unspecified] = ACTIONS(1419), - [anon_sym___autoreleasing] = ACTIONS(1419), - [anon_sym___nullable] = ACTIONS(1419), - [anon_sym___nonnull] = ACTIONS(1419), - [anon_sym___strong] = ACTIONS(1419), - [anon_sym___weak] = ACTIONS(1419), - [anon_sym___bridge] = ACTIONS(1419), - [anon_sym___bridge_transfer] = ACTIONS(1419), - [anon_sym___bridge_retained] = ACTIONS(1419), - [anon_sym___unsafe_unretained] = ACTIONS(1419), - [anon_sym___block] = ACTIONS(1419), - [anon_sym___kindof] = ACTIONS(1419), - [anon_sym___unused] = ACTIONS(1419), - [anon_sym__Complex] = ACTIONS(1419), - [anon_sym___complex] = ACTIONS(1419), - [anon_sym_IBOutlet] = ACTIONS(1419), - [anon_sym_IBInspectable] = ACTIONS(1419), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1419), - [anon_sym_signed] = ACTIONS(1419), - [anon_sym_unsigned] = ACTIONS(1419), - [anon_sym_long] = ACTIONS(1419), - [anon_sym_short] = ACTIONS(1419), - [sym_primitive_type] = ACTIONS(1419), - [anon_sym_enum] = ACTIONS(1419), - [anon_sym_NS_ENUM] = ACTIONS(1419), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1419), - [anon_sym_NS_OPTIONS] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(1419), - [anon_sym_union] = ACTIONS(1419), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1419), - [anon_sym_ATend] = ACTIONS(1417), - [sym_optional] = ACTIONS(1417), - [sym_required] = ACTIONS(1417), - [anon_sym_ATproperty] = ACTIONS(1417), - [sym_method_attribute_specifier] = ACTIONS(1419), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1419), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1419), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1419), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1419), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1419), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1419), - [anon_sym_NS_AVAILABLE] = ACTIONS(1419), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1419), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1419), - [anon_sym_API_AVAILABLE] = ACTIONS(1419), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1419), - [anon_sym_API_DEPRECATED] = ACTIONS(1419), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1419), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1419), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1419), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1419), - [anon_sym___deprecated_msg] = ACTIONS(1419), - [anon_sym___deprecated_enum_msg] = ACTIONS(1419), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1419), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1419), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1419), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1419), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1419), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1419), - [anon_sym_ATsynthesize] = ACTIONS(1417), - [anon_sym_ATdynamic] = ACTIONS(1417), - [anon_sym_typeof] = ACTIONS(1419), - [anon_sym___typeof] = ACTIONS(1419), - [anon_sym___typeof__] = ACTIONS(1419), - [sym_id] = ACTIONS(1419), - [sym_instancetype] = ACTIONS(1419), - [sym_Class] = ACTIONS(1419), - [sym_SEL] = ACTIONS(1419), - [sym_IMP] = ACTIONS(1419), - [sym_BOOL] = ACTIONS(1419), - [sym_auto] = ACTIONS(1419), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2933] = { - [sym_identifier] = ACTIONS(6938), - [aux_sym_preproc_def_token1] = ACTIONS(6940), - [anon_sym_DASH] = ACTIONS(6940), - [anon_sym_PLUS] = ACTIONS(6940), - [anon_sym_typedef] = ACTIONS(6938), - [anon_sym_extern] = ACTIONS(6938), - [anon_sym___attribute] = ACTIONS(6938), - [anon_sym___attribute__] = ACTIONS(6938), - [anon_sym___declspec] = ACTIONS(6938), - [anon_sym___cdecl] = ACTIONS(6938), - [anon_sym___clrcall] = ACTIONS(6938), - [anon_sym___stdcall] = ACTIONS(6938), - [anon_sym___fastcall] = ACTIONS(6938), - [anon_sym___thiscall] = ACTIONS(6938), - [anon_sym___vectorcall] = ACTIONS(6938), - [anon_sym_static] = ACTIONS(6938), - [anon_sym_auto] = ACTIONS(6938), - [anon_sym_register] = ACTIONS(6938), - [anon_sym_inline] = ACTIONS(6938), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6938), - [anon_sym_const] = ACTIONS(6938), - [anon_sym_volatile] = ACTIONS(6938), - [anon_sym_restrict] = ACTIONS(6938), - [anon_sym__Atomic] = ACTIONS(6938), - [anon_sym_in] = ACTIONS(6938), - [anon_sym_out] = ACTIONS(6938), - [anon_sym_inout] = ACTIONS(6938), - [anon_sym_bycopy] = ACTIONS(6938), - [anon_sym_byref] = ACTIONS(6938), - [anon_sym_oneway] = ACTIONS(6938), - [anon_sym__Nullable] = ACTIONS(6938), - [anon_sym__Nonnull] = ACTIONS(6938), - [anon_sym__Nullable_result] = ACTIONS(6938), - [anon_sym__Null_unspecified] = ACTIONS(6938), - [anon_sym___autoreleasing] = ACTIONS(6938), - [anon_sym___nullable] = ACTIONS(6938), - [anon_sym___nonnull] = ACTIONS(6938), - [anon_sym___strong] = ACTIONS(6938), - [anon_sym___weak] = ACTIONS(6938), - [anon_sym___bridge] = ACTIONS(6938), - [anon_sym___bridge_transfer] = ACTIONS(6938), - [anon_sym___bridge_retained] = ACTIONS(6938), - [anon_sym___unsafe_unretained] = ACTIONS(6938), - [anon_sym___block] = ACTIONS(6938), - [anon_sym___kindof] = ACTIONS(6938), - [anon_sym___unused] = ACTIONS(6938), - [anon_sym__Complex] = ACTIONS(6938), - [anon_sym___complex] = ACTIONS(6938), - [anon_sym_IBOutlet] = ACTIONS(6938), - [anon_sym_IBInspectable] = ACTIONS(6938), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6938), - [anon_sym_signed] = ACTIONS(6938), - [anon_sym_unsigned] = ACTIONS(6938), - [anon_sym_long] = ACTIONS(6938), - [anon_sym_short] = ACTIONS(6938), - [sym_primitive_type] = ACTIONS(6938), - [anon_sym_enum] = ACTIONS(6938), - [anon_sym_NS_ENUM] = ACTIONS(6938), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(6938), - [anon_sym_NS_OPTIONS] = ACTIONS(6938), - [anon_sym_struct] = ACTIONS(6938), - [anon_sym_union] = ACTIONS(6938), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6938), - [anon_sym_ATend] = ACTIONS(6940), - [sym_optional] = ACTIONS(6940), - [sym_required] = ACTIONS(6940), - [anon_sym_ATproperty] = ACTIONS(6940), - [sym_method_attribute_specifier] = ACTIONS(6938), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6938), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6938), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6938), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6938), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6938), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6938), - [anon_sym_NS_AVAILABLE] = ACTIONS(6938), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6938), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6938), - [anon_sym_API_AVAILABLE] = ACTIONS(6938), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6938), - [anon_sym_API_DEPRECATED] = ACTIONS(6938), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6938), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6938), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6938), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6938), - [anon_sym___deprecated_msg] = ACTIONS(6938), - [anon_sym___deprecated_enum_msg] = ACTIONS(6938), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6938), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6938), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6938), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6938), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6938), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6938), - [anon_sym_ATsynthesize] = ACTIONS(6940), - [anon_sym_ATdynamic] = ACTIONS(6940), - [anon_sym_typeof] = ACTIONS(6938), - [anon_sym___typeof] = ACTIONS(6938), - [anon_sym___typeof__] = ACTIONS(6938), - [sym_id] = ACTIONS(6938), - [sym_instancetype] = ACTIONS(6938), - [sym_Class] = ACTIONS(6938), - [sym_SEL] = ACTIONS(6938), - [sym_IMP] = ACTIONS(6938), - [sym_BOOL] = ACTIONS(6938), - [sym_auto] = ACTIONS(6938), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2934] = { - [sym_identifier] = ACTIONS(1305), - [aux_sym_preproc_def_token1] = ACTIONS(1307), - [anon_sym_DASH] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1307), - [anon_sym_typedef] = ACTIONS(1305), - [anon_sym_extern] = ACTIONS(1305), - [anon_sym___attribute] = ACTIONS(1305), - [anon_sym___attribute__] = ACTIONS(1305), - [anon_sym___declspec] = ACTIONS(1305), - [anon_sym___cdecl] = ACTIONS(1305), - [anon_sym___clrcall] = ACTIONS(1305), - [anon_sym___stdcall] = ACTIONS(1305), - [anon_sym___fastcall] = ACTIONS(1305), - [anon_sym___thiscall] = ACTIONS(1305), - [anon_sym___vectorcall] = ACTIONS(1305), - [anon_sym_static] = ACTIONS(1305), - [anon_sym_auto] = ACTIONS(1305), - [anon_sym_register] = ACTIONS(1305), - [anon_sym_inline] = ACTIONS(1305), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1305), - [anon_sym_const] = ACTIONS(1305), - [anon_sym_volatile] = ACTIONS(1305), - [anon_sym_restrict] = ACTIONS(1305), - [anon_sym__Atomic] = ACTIONS(1305), - [anon_sym_in] = ACTIONS(1305), - [anon_sym_out] = ACTIONS(1305), - [anon_sym_inout] = ACTIONS(1305), - [anon_sym_bycopy] = ACTIONS(1305), - [anon_sym_byref] = ACTIONS(1305), - [anon_sym_oneway] = ACTIONS(1305), - [anon_sym__Nullable] = ACTIONS(1305), - [anon_sym__Nonnull] = ACTIONS(1305), - [anon_sym__Nullable_result] = ACTIONS(1305), - [anon_sym__Null_unspecified] = ACTIONS(1305), - [anon_sym___autoreleasing] = ACTIONS(1305), - [anon_sym___nullable] = ACTIONS(1305), - [anon_sym___nonnull] = ACTIONS(1305), - [anon_sym___strong] = ACTIONS(1305), - [anon_sym___weak] = ACTIONS(1305), - [anon_sym___bridge] = ACTIONS(1305), - [anon_sym___bridge_transfer] = ACTIONS(1305), - [anon_sym___bridge_retained] = ACTIONS(1305), - [anon_sym___unsafe_unretained] = ACTIONS(1305), - [anon_sym___block] = ACTIONS(1305), - [anon_sym___kindof] = ACTIONS(1305), - [anon_sym___unused] = ACTIONS(1305), - [anon_sym__Complex] = ACTIONS(1305), - [anon_sym___complex] = ACTIONS(1305), - [anon_sym_IBOutlet] = ACTIONS(1305), - [anon_sym_IBInspectable] = ACTIONS(1305), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1305), - [anon_sym_signed] = ACTIONS(1305), - [anon_sym_unsigned] = ACTIONS(1305), - [anon_sym_long] = ACTIONS(1305), - [anon_sym_short] = ACTIONS(1305), - [sym_primitive_type] = ACTIONS(1305), - [anon_sym_enum] = ACTIONS(1305), - [anon_sym_NS_ENUM] = ACTIONS(1305), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1305), - [anon_sym_NS_OPTIONS] = ACTIONS(1305), - [anon_sym_struct] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1305), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1305), - [anon_sym_ATend] = ACTIONS(1307), - [sym_optional] = ACTIONS(1307), - [sym_required] = ACTIONS(1307), - [anon_sym_ATproperty] = ACTIONS(1307), - [sym_method_attribute_specifier] = ACTIONS(1305), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1305), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1305), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1305), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1305), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1305), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1305), - [anon_sym_NS_AVAILABLE] = ACTIONS(1305), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1305), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1305), - [anon_sym_API_AVAILABLE] = ACTIONS(1305), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1305), - [anon_sym_API_DEPRECATED] = ACTIONS(1305), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1305), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1305), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1305), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1305), - [anon_sym___deprecated_msg] = ACTIONS(1305), - [anon_sym___deprecated_enum_msg] = ACTIONS(1305), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1305), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1305), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1305), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1305), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1305), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1305), - [anon_sym_ATsynthesize] = ACTIONS(1307), - [anon_sym_ATdynamic] = ACTIONS(1307), - [anon_sym_typeof] = ACTIONS(1305), - [anon_sym___typeof] = ACTIONS(1305), - [anon_sym___typeof__] = ACTIONS(1305), - [sym_id] = ACTIONS(1305), - [sym_instancetype] = ACTIONS(1305), - [sym_Class] = ACTIONS(1305), - [sym_SEL] = ACTIONS(1305), - [sym_IMP] = ACTIONS(1305), - [sym_BOOL] = ACTIONS(1305), - [sym_auto] = ACTIONS(1305), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2935] = { - [sym_identifier] = ACTIONS(1301), - [aux_sym_preproc_def_token1] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1303), - [anon_sym_PLUS] = ACTIONS(1303), - [anon_sym_typedef] = ACTIONS(1301), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym___attribute] = ACTIONS(1301), - [anon_sym___attribute__] = ACTIONS(1301), - [anon_sym___declspec] = ACTIONS(1301), - [anon_sym___cdecl] = ACTIONS(1301), - [anon_sym___clrcall] = ACTIONS(1301), - [anon_sym___stdcall] = ACTIONS(1301), - [anon_sym___fastcall] = ACTIONS(1301), - [anon_sym___thiscall] = ACTIONS(1301), - [anon_sym___vectorcall] = ACTIONS(1301), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_auto] = ACTIONS(1301), - [anon_sym_register] = ACTIONS(1301), - [anon_sym_inline] = ACTIONS(1301), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1301), - [anon_sym_const] = ACTIONS(1301), - [anon_sym_volatile] = ACTIONS(1301), - [anon_sym_restrict] = ACTIONS(1301), - [anon_sym__Atomic] = ACTIONS(1301), - [anon_sym_in] = ACTIONS(1301), - [anon_sym_out] = ACTIONS(1301), - [anon_sym_inout] = ACTIONS(1301), - [anon_sym_bycopy] = ACTIONS(1301), - [anon_sym_byref] = ACTIONS(1301), - [anon_sym_oneway] = ACTIONS(1301), - [anon_sym__Nullable] = ACTIONS(1301), - [anon_sym__Nonnull] = ACTIONS(1301), - [anon_sym__Nullable_result] = ACTIONS(1301), - [anon_sym__Null_unspecified] = ACTIONS(1301), - [anon_sym___autoreleasing] = ACTIONS(1301), - [anon_sym___nullable] = ACTIONS(1301), - [anon_sym___nonnull] = ACTIONS(1301), - [anon_sym___strong] = ACTIONS(1301), - [anon_sym___weak] = ACTIONS(1301), - [anon_sym___bridge] = ACTIONS(1301), - [anon_sym___bridge_transfer] = ACTIONS(1301), - [anon_sym___bridge_retained] = ACTIONS(1301), - [anon_sym___unsafe_unretained] = ACTIONS(1301), - [anon_sym___block] = ACTIONS(1301), - [anon_sym___kindof] = ACTIONS(1301), - [anon_sym___unused] = ACTIONS(1301), - [anon_sym__Complex] = ACTIONS(1301), - [anon_sym___complex] = ACTIONS(1301), - [anon_sym_IBOutlet] = ACTIONS(1301), - [anon_sym_IBInspectable] = ACTIONS(1301), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1301), - [anon_sym_signed] = ACTIONS(1301), - [anon_sym_unsigned] = ACTIONS(1301), - [anon_sym_long] = ACTIONS(1301), - [anon_sym_short] = ACTIONS(1301), - [sym_primitive_type] = ACTIONS(1301), - [anon_sym_enum] = ACTIONS(1301), - [anon_sym_NS_ENUM] = ACTIONS(1301), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1301), - [anon_sym_NS_OPTIONS] = ACTIONS(1301), - [anon_sym_struct] = ACTIONS(1301), - [anon_sym_union] = ACTIONS(1301), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1301), - [anon_sym_ATend] = ACTIONS(1303), - [sym_optional] = ACTIONS(1303), - [sym_required] = ACTIONS(1303), - [anon_sym_ATproperty] = ACTIONS(1303), - [sym_method_attribute_specifier] = ACTIONS(1301), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1301), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1301), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1301), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1301), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1301), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1301), - [anon_sym_NS_AVAILABLE] = ACTIONS(1301), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1301), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1301), - [anon_sym_API_AVAILABLE] = ACTIONS(1301), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1301), - [anon_sym_API_DEPRECATED] = ACTIONS(1301), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1301), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1301), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1301), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1301), - [anon_sym___deprecated_msg] = ACTIONS(1301), - [anon_sym___deprecated_enum_msg] = ACTIONS(1301), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1301), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1301), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1301), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1301), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1301), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1301), - [anon_sym_ATsynthesize] = ACTIONS(1303), - [anon_sym_ATdynamic] = ACTIONS(1303), - [anon_sym_typeof] = ACTIONS(1301), - [anon_sym___typeof] = ACTIONS(1301), - [anon_sym___typeof__] = ACTIONS(1301), - [sym_id] = ACTIONS(1301), - [sym_instancetype] = ACTIONS(1301), - [sym_Class] = ACTIONS(1301), - [sym_SEL] = ACTIONS(1301), - [sym_IMP] = ACTIONS(1301), - [sym_BOOL] = ACTIONS(1301), - [sym_auto] = ACTIONS(1301), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2936] = { - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(1581), - [anon_sym_DASH] = ACTIONS(1581), - [anon_sym_PLUS] = ACTIONS(1581), - [anon_sym_typedef] = ACTIONS(1583), - [anon_sym_extern] = ACTIONS(1583), - [anon_sym___attribute] = ACTIONS(1583), - [anon_sym___attribute__] = ACTIONS(1583), - [anon_sym___declspec] = ACTIONS(1583), - [anon_sym___cdecl] = ACTIONS(1583), - [anon_sym___clrcall] = ACTIONS(1583), - [anon_sym___stdcall] = ACTIONS(1583), - [anon_sym___fastcall] = ACTIONS(1583), - [anon_sym___thiscall] = ACTIONS(1583), - [anon_sym___vectorcall] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_auto] = ACTIONS(1583), - [anon_sym_register] = ACTIONS(1583), - [anon_sym_inline] = ACTIONS(1583), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1583), - [anon_sym_const] = ACTIONS(1583), - [anon_sym_volatile] = ACTIONS(1583), - [anon_sym_restrict] = ACTIONS(1583), - [anon_sym__Atomic] = ACTIONS(1583), - [anon_sym_in] = ACTIONS(1583), - [anon_sym_out] = ACTIONS(1583), - [anon_sym_inout] = ACTIONS(1583), - [anon_sym_bycopy] = ACTIONS(1583), - [anon_sym_byref] = ACTIONS(1583), - [anon_sym_oneway] = ACTIONS(1583), - [anon_sym__Nullable] = ACTIONS(1583), - [anon_sym__Nonnull] = ACTIONS(1583), - [anon_sym__Nullable_result] = ACTIONS(1583), - [anon_sym__Null_unspecified] = ACTIONS(1583), - [anon_sym___autoreleasing] = ACTIONS(1583), - [anon_sym___nullable] = ACTIONS(1583), - [anon_sym___nonnull] = ACTIONS(1583), - [anon_sym___strong] = ACTIONS(1583), - [anon_sym___weak] = ACTIONS(1583), - [anon_sym___bridge] = ACTIONS(1583), - [anon_sym___bridge_transfer] = ACTIONS(1583), - [anon_sym___bridge_retained] = ACTIONS(1583), - [anon_sym___unsafe_unretained] = ACTIONS(1583), - [anon_sym___block] = ACTIONS(1583), - [anon_sym___kindof] = ACTIONS(1583), - [anon_sym___unused] = ACTIONS(1583), - [anon_sym__Complex] = ACTIONS(1583), - [anon_sym___complex] = ACTIONS(1583), - [anon_sym_IBOutlet] = ACTIONS(1583), - [anon_sym_IBInspectable] = ACTIONS(1583), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1583), - [anon_sym_signed] = ACTIONS(1583), - [anon_sym_unsigned] = ACTIONS(1583), - [anon_sym_long] = ACTIONS(1583), - [anon_sym_short] = ACTIONS(1583), - [sym_primitive_type] = ACTIONS(1583), - [anon_sym_enum] = ACTIONS(1583), - [anon_sym_NS_ENUM] = ACTIONS(1583), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1583), - [anon_sym_NS_OPTIONS] = ACTIONS(1583), - [anon_sym_struct] = ACTIONS(1583), - [anon_sym_union] = ACTIONS(1583), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1583), - [anon_sym_ATend] = ACTIONS(1581), - [sym_optional] = ACTIONS(1581), - [sym_required] = ACTIONS(1581), - [anon_sym_ATproperty] = ACTIONS(1581), - [sym_method_attribute_specifier] = ACTIONS(1583), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1583), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1583), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1583), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1583), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1583), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1583), - [anon_sym_NS_AVAILABLE] = ACTIONS(1583), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1583), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1583), - [anon_sym_API_AVAILABLE] = ACTIONS(1583), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1583), - [anon_sym_API_DEPRECATED] = ACTIONS(1583), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1583), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1583), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1583), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1583), - [anon_sym___deprecated_msg] = ACTIONS(1583), - [anon_sym___deprecated_enum_msg] = ACTIONS(1583), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1583), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1583), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1583), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1583), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1583), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1583), - [anon_sym_ATsynthesize] = ACTIONS(1581), - [anon_sym_ATdynamic] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1583), - [anon_sym___typeof] = ACTIONS(1583), - [anon_sym___typeof__] = ACTIONS(1583), - [sym_id] = ACTIONS(1583), - [sym_instancetype] = ACTIONS(1583), - [sym_Class] = ACTIONS(1583), - [sym_SEL] = ACTIONS(1583), - [sym_IMP] = ACTIONS(1583), - [sym_BOOL] = ACTIONS(1583), - [sym_auto] = ACTIONS(1583), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2937] = { - [sym_identifier] = ACTIONS(1297), - [aux_sym_preproc_def_token1] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1299), - [anon_sym_PLUS] = ACTIONS(1299), - [anon_sym_typedef] = ACTIONS(1297), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym___attribute] = ACTIONS(1297), - [anon_sym___attribute__] = ACTIONS(1297), - [anon_sym___declspec] = ACTIONS(1297), - [anon_sym___cdecl] = ACTIONS(1297), - [anon_sym___clrcall] = ACTIONS(1297), - [anon_sym___stdcall] = ACTIONS(1297), - [anon_sym___fastcall] = ACTIONS(1297), - [anon_sym___thiscall] = ACTIONS(1297), - [anon_sym___vectorcall] = ACTIONS(1297), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_auto] = ACTIONS(1297), - [anon_sym_register] = ACTIONS(1297), - [anon_sym_inline] = ACTIONS(1297), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_volatile] = ACTIONS(1297), - [anon_sym_restrict] = ACTIONS(1297), - [anon_sym__Atomic] = ACTIONS(1297), - [anon_sym_in] = ACTIONS(1297), - [anon_sym_out] = ACTIONS(1297), - [anon_sym_inout] = ACTIONS(1297), - [anon_sym_bycopy] = ACTIONS(1297), - [anon_sym_byref] = ACTIONS(1297), - [anon_sym_oneway] = ACTIONS(1297), - [anon_sym__Nullable] = ACTIONS(1297), - [anon_sym__Nonnull] = ACTIONS(1297), - [anon_sym__Nullable_result] = ACTIONS(1297), - [anon_sym__Null_unspecified] = ACTIONS(1297), - [anon_sym___autoreleasing] = ACTIONS(1297), - [anon_sym___nullable] = ACTIONS(1297), - [anon_sym___nonnull] = ACTIONS(1297), - [anon_sym___strong] = ACTIONS(1297), - [anon_sym___weak] = ACTIONS(1297), - [anon_sym___bridge] = ACTIONS(1297), - [anon_sym___bridge_transfer] = ACTIONS(1297), - [anon_sym___bridge_retained] = ACTIONS(1297), - [anon_sym___unsafe_unretained] = ACTIONS(1297), - [anon_sym___block] = ACTIONS(1297), - [anon_sym___kindof] = ACTIONS(1297), - [anon_sym___unused] = ACTIONS(1297), - [anon_sym__Complex] = ACTIONS(1297), - [anon_sym___complex] = ACTIONS(1297), - [anon_sym_IBOutlet] = ACTIONS(1297), - [anon_sym_IBInspectable] = ACTIONS(1297), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1297), - [anon_sym_unsigned] = ACTIONS(1297), - [anon_sym_long] = ACTIONS(1297), - [anon_sym_short] = ACTIONS(1297), - [sym_primitive_type] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_NS_ENUM] = ACTIONS(1297), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1297), - [anon_sym_NS_OPTIONS] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1297), - [anon_sym_ATend] = ACTIONS(1299), - [sym_optional] = ACTIONS(1299), - [sym_required] = ACTIONS(1299), - [anon_sym_ATproperty] = ACTIONS(1299), - [sym_method_attribute_specifier] = ACTIONS(1297), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1297), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1297), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1297), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1297), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1297), - [anon_sym_NS_AVAILABLE] = ACTIONS(1297), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1297), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_API_AVAILABLE] = ACTIONS(1297), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_API_DEPRECATED] = ACTIONS(1297), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1297), - [anon_sym___deprecated_msg] = ACTIONS(1297), - [anon_sym___deprecated_enum_msg] = ACTIONS(1297), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1297), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1297), - [anon_sym_ATsynthesize] = ACTIONS(1299), - [anon_sym_ATdynamic] = ACTIONS(1299), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym___typeof] = ACTIONS(1297), - [anon_sym___typeof__] = ACTIONS(1297), - [sym_id] = ACTIONS(1297), - [sym_instancetype] = ACTIONS(1297), - [sym_Class] = ACTIONS(1297), - [sym_SEL] = ACTIONS(1297), - [sym_IMP] = ACTIONS(1297), - [sym_BOOL] = ACTIONS(1297), - [sym_auto] = ACTIONS(1297), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2938] = { - [sym_identifier] = ACTIONS(1297), - [aux_sym_preproc_def_token1] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1299), - [anon_sym_PLUS] = ACTIONS(1299), - [anon_sym_typedef] = ACTIONS(1297), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym___attribute] = ACTIONS(1297), - [anon_sym___attribute__] = ACTIONS(1297), - [anon_sym___declspec] = ACTIONS(1297), - [anon_sym___cdecl] = ACTIONS(1297), - [anon_sym___clrcall] = ACTIONS(1297), - [anon_sym___stdcall] = ACTIONS(1297), - [anon_sym___fastcall] = ACTIONS(1297), - [anon_sym___thiscall] = ACTIONS(1297), - [anon_sym___vectorcall] = ACTIONS(1297), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_auto] = ACTIONS(1297), - [anon_sym_register] = ACTIONS(1297), - [anon_sym_inline] = ACTIONS(1297), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_volatile] = ACTIONS(1297), - [anon_sym_restrict] = ACTIONS(1297), - [anon_sym__Atomic] = ACTIONS(1297), - [anon_sym_in] = ACTIONS(1297), - [anon_sym_out] = ACTIONS(1297), - [anon_sym_inout] = ACTIONS(1297), - [anon_sym_bycopy] = ACTIONS(1297), - [anon_sym_byref] = ACTIONS(1297), - [anon_sym_oneway] = ACTIONS(1297), - [anon_sym__Nullable] = ACTIONS(1297), - [anon_sym__Nonnull] = ACTIONS(1297), - [anon_sym__Nullable_result] = ACTIONS(1297), - [anon_sym__Null_unspecified] = ACTIONS(1297), - [anon_sym___autoreleasing] = ACTIONS(1297), - [anon_sym___nullable] = ACTIONS(1297), - [anon_sym___nonnull] = ACTIONS(1297), - [anon_sym___strong] = ACTIONS(1297), - [anon_sym___weak] = ACTIONS(1297), - [anon_sym___bridge] = ACTIONS(1297), - [anon_sym___bridge_transfer] = ACTIONS(1297), - [anon_sym___bridge_retained] = ACTIONS(1297), - [anon_sym___unsafe_unretained] = ACTIONS(1297), - [anon_sym___block] = ACTIONS(1297), - [anon_sym___kindof] = ACTIONS(1297), - [anon_sym___unused] = ACTIONS(1297), - [anon_sym__Complex] = ACTIONS(1297), - [anon_sym___complex] = ACTIONS(1297), - [anon_sym_IBOutlet] = ACTIONS(1297), - [anon_sym_IBInspectable] = ACTIONS(1297), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1297), - [anon_sym_signed] = ACTIONS(1297), - [anon_sym_unsigned] = ACTIONS(1297), - [anon_sym_long] = ACTIONS(1297), - [anon_sym_short] = ACTIONS(1297), - [sym_primitive_type] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_NS_ENUM] = ACTIONS(1297), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1297), - [anon_sym_NS_OPTIONS] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1297), - [anon_sym_ATend] = ACTIONS(1299), - [sym_optional] = ACTIONS(1299), - [sym_required] = ACTIONS(1299), - [anon_sym_ATproperty] = ACTIONS(1299), - [sym_method_attribute_specifier] = ACTIONS(1297), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1297), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1297), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1297), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1297), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1297), - [anon_sym_NS_AVAILABLE] = ACTIONS(1297), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1297), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_API_AVAILABLE] = ACTIONS(1297), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_API_DEPRECATED] = ACTIONS(1297), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1297), - [anon_sym___deprecated_msg] = ACTIONS(1297), - [anon_sym___deprecated_enum_msg] = ACTIONS(1297), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1297), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1297), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1297), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1297), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1297), - [anon_sym_ATsynthesize] = ACTIONS(1299), - [anon_sym_ATdynamic] = ACTIONS(1299), - [anon_sym_typeof] = ACTIONS(1297), - [anon_sym___typeof] = ACTIONS(1297), - [anon_sym___typeof__] = ACTIONS(1297), - [sym_id] = ACTIONS(1297), - [sym_instancetype] = ACTIONS(1297), - [sym_Class] = ACTIONS(1297), - [sym_SEL] = ACTIONS(1297), - [sym_IMP] = ACTIONS(1297), - [sym_BOOL] = ACTIONS(1297), - [sym_auto] = ACTIONS(1297), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2939] = { - [sym_type_qualifier] = STATE(3454), - [sym__expression] = STATE(4498), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_type_definition_repeat1] = STATE(3454), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(6942), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(6944), - [anon_sym_const] = ACTIONS(6922), - [anon_sym_volatile] = ACTIONS(6922), - [anon_sym_restrict] = ACTIONS(6922), - [anon_sym__Atomic] = ACTIONS(6922), - [anon_sym_in] = ACTIONS(6922), - [anon_sym_out] = ACTIONS(6922), - [anon_sym_inout] = ACTIONS(6922), - [anon_sym_bycopy] = ACTIONS(6922), - [anon_sym_byref] = ACTIONS(6922), - [anon_sym_oneway] = ACTIONS(6922), - [anon_sym__Nullable] = ACTIONS(6922), - [anon_sym__Nonnull] = ACTIONS(6922), - [anon_sym__Nullable_result] = ACTIONS(6922), - [anon_sym__Null_unspecified] = ACTIONS(6922), - [anon_sym___autoreleasing] = ACTIONS(6922), - [anon_sym___nullable] = ACTIONS(6922), - [anon_sym___nonnull] = ACTIONS(6922), - [anon_sym___strong] = ACTIONS(6922), - [anon_sym___weak] = ACTIONS(6922), - [anon_sym___bridge] = ACTIONS(6922), - [anon_sym___bridge_transfer] = ACTIONS(6922), - [anon_sym___bridge_retained] = ACTIONS(6922), - [anon_sym___unsafe_unretained] = ACTIONS(6922), - [anon_sym___block] = ACTIONS(6922), - [anon_sym___kindof] = ACTIONS(6922), - [anon_sym___unused] = ACTIONS(6922), - [anon_sym__Complex] = ACTIONS(6922), - [anon_sym___complex] = ACTIONS(6922), - [anon_sym_IBOutlet] = ACTIONS(6922), - [anon_sym_IBInspectable] = ACTIONS(6922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6922), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2940] = { - [sym_identifier] = ACTIONS(1205), - [aux_sym_preproc_def_token1] = ACTIONS(1203), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_typedef] = ACTIONS(1205), - [anon_sym_extern] = ACTIONS(1205), - [anon_sym___attribute] = ACTIONS(1205), - [anon_sym___attribute__] = ACTIONS(1205), - [anon_sym___declspec] = ACTIONS(1205), - [anon_sym___cdecl] = ACTIONS(1205), - [anon_sym___clrcall] = ACTIONS(1205), - [anon_sym___stdcall] = ACTIONS(1205), - [anon_sym___fastcall] = ACTIONS(1205), - [anon_sym___thiscall] = ACTIONS(1205), - [anon_sym___vectorcall] = ACTIONS(1205), - [anon_sym_static] = ACTIONS(1205), - [anon_sym_auto] = ACTIONS(1205), - [anon_sym_register] = ACTIONS(1205), - [anon_sym_inline] = ACTIONS(1205), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1205), - [anon_sym_const] = ACTIONS(1205), - [anon_sym_volatile] = ACTIONS(1205), - [anon_sym_restrict] = ACTIONS(1205), - [anon_sym__Atomic] = ACTIONS(1205), - [anon_sym_in] = ACTIONS(1205), - [anon_sym_out] = ACTIONS(1205), - [anon_sym_inout] = ACTIONS(1205), - [anon_sym_bycopy] = ACTIONS(1205), - [anon_sym_byref] = ACTIONS(1205), - [anon_sym_oneway] = ACTIONS(1205), - [anon_sym__Nullable] = ACTIONS(1205), - [anon_sym__Nonnull] = ACTIONS(1205), - [anon_sym__Nullable_result] = ACTIONS(1205), - [anon_sym__Null_unspecified] = ACTIONS(1205), - [anon_sym___autoreleasing] = ACTIONS(1205), - [anon_sym___nullable] = ACTIONS(1205), - [anon_sym___nonnull] = ACTIONS(1205), - [anon_sym___strong] = ACTIONS(1205), - [anon_sym___weak] = ACTIONS(1205), - [anon_sym___bridge] = ACTIONS(1205), - [anon_sym___bridge_transfer] = ACTIONS(1205), - [anon_sym___bridge_retained] = ACTIONS(1205), - [anon_sym___unsafe_unretained] = ACTIONS(1205), - [anon_sym___block] = ACTIONS(1205), - [anon_sym___kindof] = ACTIONS(1205), - [anon_sym___unused] = ACTIONS(1205), - [anon_sym__Complex] = ACTIONS(1205), - [anon_sym___complex] = ACTIONS(1205), - [anon_sym_IBOutlet] = ACTIONS(1205), - [anon_sym_IBInspectable] = ACTIONS(1205), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1205), - [anon_sym_signed] = ACTIONS(1205), - [anon_sym_unsigned] = ACTIONS(1205), - [anon_sym_long] = ACTIONS(1205), - [anon_sym_short] = ACTIONS(1205), - [sym_primitive_type] = ACTIONS(1205), - [anon_sym_enum] = ACTIONS(1205), - [anon_sym_NS_ENUM] = ACTIONS(1205), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1205), - [anon_sym_NS_OPTIONS] = ACTIONS(1205), - [anon_sym_struct] = ACTIONS(1205), - [anon_sym_union] = ACTIONS(1205), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1205), - [anon_sym_ATend] = ACTIONS(1203), - [sym_optional] = ACTIONS(1203), - [sym_required] = ACTIONS(1203), - [anon_sym_ATproperty] = ACTIONS(1203), - [sym_method_attribute_specifier] = ACTIONS(1205), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1205), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1205), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1205), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1205), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1205), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1205), - [anon_sym_NS_AVAILABLE] = ACTIONS(1205), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1205), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1205), - [anon_sym_API_AVAILABLE] = ACTIONS(1205), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1205), - [anon_sym_API_DEPRECATED] = ACTIONS(1205), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1205), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1205), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1205), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1205), - [anon_sym___deprecated_msg] = ACTIONS(1205), - [anon_sym___deprecated_enum_msg] = ACTIONS(1205), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1205), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1205), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1205), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1205), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1205), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1205), - [anon_sym_ATsynthesize] = ACTIONS(1203), - [anon_sym_ATdynamic] = ACTIONS(1203), - [anon_sym_typeof] = ACTIONS(1205), - [anon_sym___typeof] = ACTIONS(1205), - [anon_sym___typeof__] = ACTIONS(1205), - [sym_id] = ACTIONS(1205), - [sym_instancetype] = ACTIONS(1205), - [sym_Class] = ACTIONS(1205), - [sym_SEL] = ACTIONS(1205), - [sym_IMP] = ACTIONS(1205), - [sym_BOOL] = ACTIONS(1205), - [sym_auto] = ACTIONS(1205), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2941] = { - [sym_identifier] = ACTIONS(1217), - [aux_sym_preproc_def_token1] = ACTIONS(1215), - [anon_sym_DASH] = ACTIONS(1215), - [anon_sym_PLUS] = ACTIONS(1215), - [anon_sym_typedef] = ACTIONS(1217), - [anon_sym_extern] = ACTIONS(1217), - [anon_sym___attribute] = ACTIONS(1217), - [anon_sym___attribute__] = ACTIONS(1217), - [anon_sym___declspec] = ACTIONS(1217), - [anon_sym___cdecl] = ACTIONS(1217), - [anon_sym___clrcall] = ACTIONS(1217), - [anon_sym___stdcall] = ACTIONS(1217), - [anon_sym___fastcall] = ACTIONS(1217), - [anon_sym___thiscall] = ACTIONS(1217), - [anon_sym___vectorcall] = ACTIONS(1217), - [anon_sym_static] = ACTIONS(1217), - [anon_sym_auto] = ACTIONS(1217), - [anon_sym_register] = ACTIONS(1217), - [anon_sym_inline] = ACTIONS(1217), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1217), - [anon_sym_const] = ACTIONS(1217), - [anon_sym_volatile] = ACTIONS(1217), - [anon_sym_restrict] = ACTIONS(1217), - [anon_sym__Atomic] = ACTIONS(1217), - [anon_sym_in] = ACTIONS(1217), - [anon_sym_out] = ACTIONS(1217), - [anon_sym_inout] = ACTIONS(1217), - [anon_sym_bycopy] = ACTIONS(1217), - [anon_sym_byref] = ACTIONS(1217), - [anon_sym_oneway] = ACTIONS(1217), - [anon_sym__Nullable] = ACTIONS(1217), - [anon_sym__Nonnull] = ACTIONS(1217), - [anon_sym__Nullable_result] = ACTIONS(1217), - [anon_sym__Null_unspecified] = ACTIONS(1217), - [anon_sym___autoreleasing] = ACTIONS(1217), - [anon_sym___nullable] = ACTIONS(1217), - [anon_sym___nonnull] = ACTIONS(1217), - [anon_sym___strong] = ACTIONS(1217), - [anon_sym___weak] = ACTIONS(1217), - [anon_sym___bridge] = ACTIONS(1217), - [anon_sym___bridge_transfer] = ACTIONS(1217), - [anon_sym___bridge_retained] = ACTIONS(1217), - [anon_sym___unsafe_unretained] = ACTIONS(1217), - [anon_sym___block] = ACTIONS(1217), - [anon_sym___kindof] = ACTIONS(1217), - [anon_sym___unused] = ACTIONS(1217), - [anon_sym__Complex] = ACTIONS(1217), - [anon_sym___complex] = ACTIONS(1217), - [anon_sym_IBOutlet] = ACTIONS(1217), - [anon_sym_IBInspectable] = ACTIONS(1217), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1217), - [anon_sym_signed] = ACTIONS(1217), - [anon_sym_unsigned] = ACTIONS(1217), - [anon_sym_long] = ACTIONS(1217), - [anon_sym_short] = ACTIONS(1217), - [sym_primitive_type] = ACTIONS(1217), - [anon_sym_enum] = ACTIONS(1217), - [anon_sym_NS_ENUM] = ACTIONS(1217), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1217), - [anon_sym_NS_OPTIONS] = ACTIONS(1217), - [anon_sym_struct] = ACTIONS(1217), - [anon_sym_union] = ACTIONS(1217), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1217), - [anon_sym_ATend] = ACTIONS(1215), - [sym_optional] = ACTIONS(1215), - [sym_required] = ACTIONS(1215), - [anon_sym_ATproperty] = ACTIONS(1215), - [sym_method_attribute_specifier] = ACTIONS(1217), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1217), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1217), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1217), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1217), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1217), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1217), - [anon_sym_NS_AVAILABLE] = ACTIONS(1217), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1217), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1217), - [anon_sym_API_AVAILABLE] = ACTIONS(1217), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1217), - [anon_sym_API_DEPRECATED] = ACTIONS(1217), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1217), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1217), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1217), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1217), - [anon_sym___deprecated_msg] = ACTIONS(1217), - [anon_sym___deprecated_enum_msg] = ACTIONS(1217), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1217), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1217), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1217), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1217), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1217), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1217), - [anon_sym_ATsynthesize] = ACTIONS(1215), - [anon_sym_ATdynamic] = ACTIONS(1215), - [anon_sym_typeof] = ACTIONS(1217), - [anon_sym___typeof] = ACTIONS(1217), - [anon_sym___typeof__] = ACTIONS(1217), - [sym_id] = ACTIONS(1217), - [sym_instancetype] = ACTIONS(1217), - [sym_Class] = ACTIONS(1217), - [sym_SEL] = ACTIONS(1217), - [sym_IMP] = ACTIONS(1217), - [sym_BOOL] = ACTIONS(1217), - [sym_auto] = ACTIONS(1217), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2942] = { - [sym_identifier] = ACTIONS(1221), - [aux_sym_preproc_def_token1] = ACTIONS(1219), - [anon_sym_DASH] = ACTIONS(1219), - [anon_sym_PLUS] = ACTIONS(1219), - [anon_sym_typedef] = ACTIONS(1221), - [anon_sym_extern] = ACTIONS(1221), - [anon_sym___attribute] = ACTIONS(1221), - [anon_sym___attribute__] = ACTIONS(1221), - [anon_sym___declspec] = ACTIONS(1221), - [anon_sym___cdecl] = ACTIONS(1221), - [anon_sym___clrcall] = ACTIONS(1221), - [anon_sym___stdcall] = ACTIONS(1221), - [anon_sym___fastcall] = ACTIONS(1221), - [anon_sym___thiscall] = ACTIONS(1221), - [anon_sym___vectorcall] = ACTIONS(1221), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_auto] = ACTIONS(1221), - [anon_sym_register] = ACTIONS(1221), - [anon_sym_inline] = ACTIONS(1221), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1221), - [anon_sym_const] = ACTIONS(1221), - [anon_sym_volatile] = ACTIONS(1221), - [anon_sym_restrict] = ACTIONS(1221), - [anon_sym__Atomic] = ACTIONS(1221), - [anon_sym_in] = ACTIONS(1221), - [anon_sym_out] = ACTIONS(1221), - [anon_sym_inout] = ACTIONS(1221), - [anon_sym_bycopy] = ACTIONS(1221), - [anon_sym_byref] = ACTIONS(1221), - [anon_sym_oneway] = ACTIONS(1221), - [anon_sym__Nullable] = ACTIONS(1221), - [anon_sym__Nonnull] = ACTIONS(1221), - [anon_sym__Nullable_result] = ACTIONS(1221), - [anon_sym__Null_unspecified] = ACTIONS(1221), - [anon_sym___autoreleasing] = ACTIONS(1221), - [anon_sym___nullable] = ACTIONS(1221), - [anon_sym___nonnull] = ACTIONS(1221), - [anon_sym___strong] = ACTIONS(1221), - [anon_sym___weak] = ACTIONS(1221), - [anon_sym___bridge] = ACTIONS(1221), - [anon_sym___bridge_transfer] = ACTIONS(1221), - [anon_sym___bridge_retained] = ACTIONS(1221), - [anon_sym___unsafe_unretained] = ACTIONS(1221), - [anon_sym___block] = ACTIONS(1221), - [anon_sym___kindof] = ACTIONS(1221), - [anon_sym___unused] = ACTIONS(1221), - [anon_sym__Complex] = ACTIONS(1221), - [anon_sym___complex] = ACTIONS(1221), - [anon_sym_IBOutlet] = ACTIONS(1221), - [anon_sym_IBInspectable] = ACTIONS(1221), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1221), - [anon_sym_signed] = ACTIONS(1221), - [anon_sym_unsigned] = ACTIONS(1221), - [anon_sym_long] = ACTIONS(1221), - [anon_sym_short] = ACTIONS(1221), - [sym_primitive_type] = ACTIONS(1221), - [anon_sym_enum] = ACTIONS(1221), - [anon_sym_NS_ENUM] = ACTIONS(1221), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1221), - [anon_sym_NS_OPTIONS] = ACTIONS(1221), - [anon_sym_struct] = ACTIONS(1221), - [anon_sym_union] = ACTIONS(1221), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1221), - [anon_sym_ATend] = ACTIONS(1219), - [sym_optional] = ACTIONS(1219), - [sym_required] = ACTIONS(1219), - [anon_sym_ATproperty] = ACTIONS(1219), - [sym_method_attribute_specifier] = ACTIONS(1221), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1221), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1221), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1221), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1221), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1221), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1221), - [anon_sym_NS_AVAILABLE] = ACTIONS(1221), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1221), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1221), - [anon_sym_API_AVAILABLE] = ACTIONS(1221), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1221), - [anon_sym_API_DEPRECATED] = ACTIONS(1221), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1221), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1221), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1221), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1221), - [anon_sym___deprecated_msg] = ACTIONS(1221), - [anon_sym___deprecated_enum_msg] = ACTIONS(1221), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1221), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1221), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1221), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1221), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1221), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1221), - [anon_sym_ATsynthesize] = ACTIONS(1219), - [anon_sym_ATdynamic] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(1221), - [anon_sym___typeof] = ACTIONS(1221), - [anon_sym___typeof__] = ACTIONS(1221), - [sym_id] = ACTIONS(1221), - [sym_instancetype] = ACTIONS(1221), - [sym_Class] = ACTIONS(1221), - [sym_SEL] = ACTIONS(1221), - [sym_IMP] = ACTIONS(1221), - [sym_BOOL] = ACTIONS(1221), - [sym_auto] = ACTIONS(1221), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2943] = { - [sym_type_qualifier] = STATE(2905), - [sym__expression] = STATE(4512), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_type_definition_repeat1] = STATE(2905), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(6946), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(6948), - [anon_sym_const] = ACTIONS(6922), - [anon_sym_volatile] = ACTIONS(6922), - [anon_sym_restrict] = ACTIONS(6922), - [anon_sym__Atomic] = ACTIONS(6922), - [anon_sym_in] = ACTIONS(6922), - [anon_sym_out] = ACTIONS(6922), - [anon_sym_inout] = ACTIONS(6922), - [anon_sym_bycopy] = ACTIONS(6922), - [anon_sym_byref] = ACTIONS(6922), - [anon_sym_oneway] = ACTIONS(6922), - [anon_sym__Nullable] = ACTIONS(6922), - [anon_sym__Nonnull] = ACTIONS(6922), - [anon_sym__Nullable_result] = ACTIONS(6922), - [anon_sym__Null_unspecified] = ACTIONS(6922), - [anon_sym___autoreleasing] = ACTIONS(6922), - [anon_sym___nullable] = ACTIONS(6922), - [anon_sym___nonnull] = ACTIONS(6922), - [anon_sym___strong] = ACTIONS(6922), - [anon_sym___weak] = ACTIONS(6922), - [anon_sym___bridge] = ACTIONS(6922), - [anon_sym___bridge_transfer] = ACTIONS(6922), - [anon_sym___bridge_retained] = ACTIONS(6922), - [anon_sym___unsafe_unretained] = ACTIONS(6922), - [anon_sym___block] = ACTIONS(6922), - [anon_sym___kindof] = ACTIONS(6922), - [anon_sym___unused] = ACTIONS(6922), - [anon_sym__Complex] = ACTIONS(6922), - [anon_sym___complex] = ACTIONS(6922), - [anon_sym_IBOutlet] = ACTIONS(6922), - [anon_sym_IBInspectable] = ACTIONS(6922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6922), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2944] = { - [sym_identifier] = ACTIONS(1701), - [aux_sym_preproc_def_token1] = ACTIONS(1703), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1703), - [anon_sym_typedef] = ACTIONS(1701), - [anon_sym_extern] = ACTIONS(1701), - [anon_sym___attribute] = ACTIONS(1701), - [anon_sym___attribute__] = ACTIONS(1701), - [anon_sym___declspec] = ACTIONS(1701), - [anon_sym___cdecl] = ACTIONS(1701), - [anon_sym___clrcall] = ACTIONS(1701), - [anon_sym___stdcall] = ACTIONS(1701), - [anon_sym___fastcall] = ACTIONS(1701), - [anon_sym___thiscall] = ACTIONS(1701), - [anon_sym___vectorcall] = ACTIONS(1701), - [anon_sym_static] = ACTIONS(1701), - [anon_sym_auto] = ACTIONS(1701), - [anon_sym_register] = ACTIONS(1701), - [anon_sym_inline] = ACTIONS(1701), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1701), - [anon_sym_const] = ACTIONS(1701), - [anon_sym_volatile] = ACTIONS(1701), - [anon_sym_restrict] = ACTIONS(1701), - [anon_sym__Atomic] = ACTIONS(1701), - [anon_sym_in] = ACTIONS(1701), - [anon_sym_out] = ACTIONS(1701), - [anon_sym_inout] = ACTIONS(1701), - [anon_sym_bycopy] = ACTIONS(1701), - [anon_sym_byref] = ACTIONS(1701), - [anon_sym_oneway] = ACTIONS(1701), - [anon_sym__Nullable] = ACTIONS(1701), - [anon_sym__Nonnull] = ACTIONS(1701), - [anon_sym__Nullable_result] = ACTIONS(1701), - [anon_sym__Null_unspecified] = ACTIONS(1701), - [anon_sym___autoreleasing] = ACTIONS(1701), - [anon_sym___nullable] = ACTIONS(1701), - [anon_sym___nonnull] = ACTIONS(1701), - [anon_sym___strong] = ACTIONS(1701), - [anon_sym___weak] = ACTIONS(1701), - [anon_sym___bridge] = ACTIONS(1701), - [anon_sym___bridge_transfer] = ACTIONS(1701), - [anon_sym___bridge_retained] = ACTIONS(1701), - [anon_sym___unsafe_unretained] = ACTIONS(1701), - [anon_sym___block] = ACTIONS(1701), - [anon_sym___kindof] = ACTIONS(1701), - [anon_sym___unused] = ACTIONS(1701), - [anon_sym__Complex] = ACTIONS(1701), - [anon_sym___complex] = ACTIONS(1701), - [anon_sym_IBOutlet] = ACTIONS(1701), - [anon_sym_IBInspectable] = ACTIONS(1701), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1701), - [anon_sym_signed] = ACTIONS(1701), - [anon_sym_unsigned] = ACTIONS(1701), - [anon_sym_long] = ACTIONS(1701), - [anon_sym_short] = ACTIONS(1701), - [sym_primitive_type] = ACTIONS(1701), - [anon_sym_enum] = ACTIONS(1701), - [anon_sym_NS_ENUM] = ACTIONS(1701), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1701), - [anon_sym_NS_OPTIONS] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1701), - [anon_sym_union] = ACTIONS(1701), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1701), - [anon_sym_ATend] = ACTIONS(1703), - [sym_optional] = ACTIONS(1703), - [sym_required] = ACTIONS(1703), - [anon_sym_ATproperty] = ACTIONS(1703), - [sym_method_attribute_specifier] = ACTIONS(1701), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1701), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1701), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1701), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1701), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1701), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1701), - [anon_sym_NS_AVAILABLE] = ACTIONS(1701), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1701), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1701), - [anon_sym_API_AVAILABLE] = ACTIONS(1701), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1701), - [anon_sym_API_DEPRECATED] = ACTIONS(1701), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1701), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1701), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1701), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1701), - [anon_sym___deprecated_msg] = ACTIONS(1701), - [anon_sym___deprecated_enum_msg] = ACTIONS(1701), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1701), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1701), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1701), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1701), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1701), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1701), - [anon_sym_ATsynthesize] = ACTIONS(1703), - [anon_sym_ATdynamic] = ACTIONS(1703), - [anon_sym_typeof] = ACTIONS(1701), - [anon_sym___typeof] = ACTIONS(1701), - [anon_sym___typeof__] = ACTIONS(1701), - [sym_id] = ACTIONS(1701), - [sym_instancetype] = ACTIONS(1701), - [sym_Class] = ACTIONS(1701), - [sym_SEL] = ACTIONS(1701), - [sym_IMP] = ACTIONS(1701), - [sym_BOOL] = ACTIONS(1701), - [sym_auto] = ACTIONS(1701), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2945] = { - [sym_identifier] = ACTIONS(1661), - [aux_sym_preproc_def_token1] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_typedef] = ACTIONS(1661), - [anon_sym_extern] = ACTIONS(1661), - [anon_sym___attribute] = ACTIONS(1661), - [anon_sym___attribute__] = ACTIONS(1661), - [anon_sym___declspec] = ACTIONS(1661), - [anon_sym___cdecl] = ACTIONS(1661), - [anon_sym___clrcall] = ACTIONS(1661), - [anon_sym___stdcall] = ACTIONS(1661), - [anon_sym___fastcall] = ACTIONS(1661), - [anon_sym___thiscall] = ACTIONS(1661), - [anon_sym___vectorcall] = ACTIONS(1661), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_auto] = ACTIONS(1661), - [anon_sym_register] = ACTIONS(1661), - [anon_sym_inline] = ACTIONS(1661), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_volatile] = ACTIONS(1661), - [anon_sym_restrict] = ACTIONS(1661), - [anon_sym__Atomic] = ACTIONS(1661), - [anon_sym_in] = ACTIONS(1661), - [anon_sym_out] = ACTIONS(1661), - [anon_sym_inout] = ACTIONS(1661), - [anon_sym_bycopy] = ACTIONS(1661), - [anon_sym_byref] = ACTIONS(1661), - [anon_sym_oneway] = ACTIONS(1661), - [anon_sym__Nullable] = ACTIONS(1661), - [anon_sym__Nonnull] = ACTIONS(1661), - [anon_sym__Nullable_result] = ACTIONS(1661), - [anon_sym__Null_unspecified] = ACTIONS(1661), - [anon_sym___autoreleasing] = ACTIONS(1661), - [anon_sym___nullable] = ACTIONS(1661), - [anon_sym___nonnull] = ACTIONS(1661), - [anon_sym___strong] = ACTIONS(1661), - [anon_sym___weak] = ACTIONS(1661), - [anon_sym___bridge] = ACTIONS(1661), - [anon_sym___bridge_transfer] = ACTIONS(1661), - [anon_sym___bridge_retained] = ACTIONS(1661), - [anon_sym___unsafe_unretained] = ACTIONS(1661), - [anon_sym___block] = ACTIONS(1661), - [anon_sym___kindof] = ACTIONS(1661), - [anon_sym___unused] = ACTIONS(1661), - [anon_sym__Complex] = ACTIONS(1661), - [anon_sym___complex] = ACTIONS(1661), - [anon_sym_IBOutlet] = ACTIONS(1661), - [anon_sym_IBInspectable] = ACTIONS(1661), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1661), - [anon_sym_signed] = ACTIONS(1661), - [anon_sym_unsigned] = ACTIONS(1661), - [anon_sym_long] = ACTIONS(1661), - [anon_sym_short] = ACTIONS(1661), - [sym_primitive_type] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [anon_sym_NS_ENUM] = ACTIONS(1661), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1661), - [anon_sym_NS_OPTIONS] = ACTIONS(1661), - [anon_sym_struct] = ACTIONS(1661), - [anon_sym_union] = ACTIONS(1661), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1661), - [anon_sym_ATend] = ACTIONS(1663), - [sym_optional] = ACTIONS(1663), - [sym_required] = ACTIONS(1663), - [anon_sym_ATproperty] = ACTIONS(1663), - [sym_method_attribute_specifier] = ACTIONS(1661), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1661), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1661), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1661), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1661), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1661), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1661), - [anon_sym_NS_AVAILABLE] = ACTIONS(1661), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1661), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1661), - [anon_sym_API_AVAILABLE] = ACTIONS(1661), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1661), - [anon_sym_API_DEPRECATED] = ACTIONS(1661), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1661), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1661), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1661), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1661), - [anon_sym___deprecated_msg] = ACTIONS(1661), - [anon_sym___deprecated_enum_msg] = ACTIONS(1661), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1661), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1661), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1661), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1661), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1661), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1661), - [anon_sym_ATsynthesize] = ACTIONS(1663), - [anon_sym_ATdynamic] = ACTIONS(1663), - [anon_sym_typeof] = ACTIONS(1661), - [anon_sym___typeof] = ACTIONS(1661), - [anon_sym___typeof__] = ACTIONS(1661), - [sym_id] = ACTIONS(1661), - [sym_instancetype] = ACTIONS(1661), - [sym_Class] = ACTIONS(1661), - [sym_SEL] = ACTIONS(1661), - [sym_IMP] = ACTIONS(1661), - [sym_BOOL] = ACTIONS(1661), - [sym_auto] = ACTIONS(1661), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2946] = { - [sym_identifier] = ACTIONS(1697), - [aux_sym_preproc_def_token1] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_typedef] = ACTIONS(1697), - [anon_sym_extern] = ACTIONS(1697), - [anon_sym___attribute] = ACTIONS(1697), - [anon_sym___attribute__] = ACTIONS(1697), - [anon_sym___declspec] = ACTIONS(1697), - [anon_sym___cdecl] = ACTIONS(1697), - [anon_sym___clrcall] = ACTIONS(1697), - [anon_sym___stdcall] = ACTIONS(1697), - [anon_sym___fastcall] = ACTIONS(1697), - [anon_sym___thiscall] = ACTIONS(1697), - [anon_sym___vectorcall] = ACTIONS(1697), - [anon_sym_static] = ACTIONS(1697), - [anon_sym_auto] = ACTIONS(1697), - [anon_sym_register] = ACTIONS(1697), - [anon_sym_inline] = ACTIONS(1697), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1697), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_volatile] = ACTIONS(1697), - [anon_sym_restrict] = ACTIONS(1697), - [anon_sym__Atomic] = ACTIONS(1697), - [anon_sym_in] = ACTIONS(1697), - [anon_sym_out] = ACTIONS(1697), - [anon_sym_inout] = ACTIONS(1697), - [anon_sym_bycopy] = ACTIONS(1697), - [anon_sym_byref] = ACTIONS(1697), - [anon_sym_oneway] = ACTIONS(1697), - [anon_sym__Nullable] = ACTIONS(1697), - [anon_sym__Nonnull] = ACTIONS(1697), - [anon_sym__Nullable_result] = ACTIONS(1697), - [anon_sym__Null_unspecified] = ACTIONS(1697), - [anon_sym___autoreleasing] = ACTIONS(1697), - [anon_sym___nullable] = ACTIONS(1697), - [anon_sym___nonnull] = ACTIONS(1697), - [anon_sym___strong] = ACTIONS(1697), - [anon_sym___weak] = ACTIONS(1697), - [anon_sym___bridge] = ACTIONS(1697), - [anon_sym___bridge_transfer] = ACTIONS(1697), - [anon_sym___bridge_retained] = ACTIONS(1697), - [anon_sym___unsafe_unretained] = ACTIONS(1697), - [anon_sym___block] = ACTIONS(1697), - [anon_sym___kindof] = ACTIONS(1697), - [anon_sym___unused] = ACTIONS(1697), - [anon_sym__Complex] = ACTIONS(1697), - [anon_sym___complex] = ACTIONS(1697), - [anon_sym_IBOutlet] = ACTIONS(1697), - [anon_sym_IBInspectable] = ACTIONS(1697), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1697), - [anon_sym_signed] = ACTIONS(1697), - [anon_sym_unsigned] = ACTIONS(1697), - [anon_sym_long] = ACTIONS(1697), - [anon_sym_short] = ACTIONS(1697), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1697), - [anon_sym_NS_ENUM] = ACTIONS(1697), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1697), - [anon_sym_NS_OPTIONS] = ACTIONS(1697), - [anon_sym_struct] = ACTIONS(1697), - [anon_sym_union] = ACTIONS(1697), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1697), - [anon_sym_ATend] = ACTIONS(1699), - [sym_optional] = ACTIONS(1699), - [sym_required] = ACTIONS(1699), - [anon_sym_ATproperty] = ACTIONS(1699), - [sym_method_attribute_specifier] = ACTIONS(1697), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1697), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1697), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1697), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1697), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1697), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1697), - [anon_sym_NS_AVAILABLE] = ACTIONS(1697), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1697), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1697), - [anon_sym_API_AVAILABLE] = ACTIONS(1697), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1697), - [anon_sym_API_DEPRECATED] = ACTIONS(1697), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1697), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1697), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1697), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1697), - [anon_sym___deprecated_msg] = ACTIONS(1697), - [anon_sym___deprecated_enum_msg] = ACTIONS(1697), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1697), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1697), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1697), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1697), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1697), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1697), - [anon_sym_ATsynthesize] = ACTIONS(1699), - [anon_sym_ATdynamic] = ACTIONS(1699), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym___typeof] = ACTIONS(1697), - [anon_sym___typeof__] = ACTIONS(1697), - [sym_id] = ACTIONS(1697), - [sym_instancetype] = ACTIONS(1697), - [sym_Class] = ACTIONS(1697), - [sym_SEL] = ACTIONS(1697), - [sym_IMP] = ACTIONS(1697), - [sym_BOOL] = ACTIONS(1697), - [sym_auto] = ACTIONS(1697), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2947] = { - [sym__declaration_specifiers] = STATE(4695), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_typedef] = ACTIONS(6950), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2948] = { - [sym_identifier] = ACTIONS(1199), - [aux_sym_preproc_def_token1] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(1201), - [anon_sym_typedef] = ACTIONS(1199), - [anon_sym_extern] = ACTIONS(1199), - [anon_sym___attribute] = ACTIONS(1199), - [anon_sym___attribute__] = ACTIONS(1199), - [anon_sym___declspec] = ACTIONS(1199), - [anon_sym___cdecl] = ACTIONS(1199), - [anon_sym___clrcall] = ACTIONS(1199), - [anon_sym___stdcall] = ACTIONS(1199), - [anon_sym___fastcall] = ACTIONS(1199), - [anon_sym___thiscall] = ACTIONS(1199), - [anon_sym___vectorcall] = ACTIONS(1199), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_auto] = ACTIONS(1199), - [anon_sym_register] = ACTIONS(1199), - [anon_sym_inline] = ACTIONS(1199), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1199), - [anon_sym_const] = ACTIONS(1199), - [anon_sym_volatile] = ACTIONS(1199), - [anon_sym_restrict] = ACTIONS(1199), - [anon_sym__Atomic] = ACTIONS(1199), - [anon_sym_in] = ACTIONS(1199), - [anon_sym_out] = ACTIONS(1199), - [anon_sym_inout] = ACTIONS(1199), - [anon_sym_bycopy] = ACTIONS(1199), - [anon_sym_byref] = ACTIONS(1199), - [anon_sym_oneway] = ACTIONS(1199), - [anon_sym__Nullable] = ACTIONS(1199), - [anon_sym__Nonnull] = ACTIONS(1199), - [anon_sym__Nullable_result] = ACTIONS(1199), - [anon_sym__Null_unspecified] = ACTIONS(1199), - [anon_sym___autoreleasing] = ACTIONS(1199), - [anon_sym___nullable] = ACTIONS(1199), - [anon_sym___nonnull] = ACTIONS(1199), - [anon_sym___strong] = ACTIONS(1199), - [anon_sym___weak] = ACTIONS(1199), - [anon_sym___bridge] = ACTIONS(1199), - [anon_sym___bridge_transfer] = ACTIONS(1199), - [anon_sym___bridge_retained] = ACTIONS(1199), - [anon_sym___unsafe_unretained] = ACTIONS(1199), - [anon_sym___block] = ACTIONS(1199), - [anon_sym___kindof] = ACTIONS(1199), - [anon_sym___unused] = ACTIONS(1199), - [anon_sym__Complex] = ACTIONS(1199), - [anon_sym___complex] = ACTIONS(1199), - [anon_sym_IBOutlet] = ACTIONS(1199), - [anon_sym_IBInspectable] = ACTIONS(1199), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1199), - [anon_sym_signed] = ACTIONS(1199), - [anon_sym_unsigned] = ACTIONS(1199), - [anon_sym_long] = ACTIONS(1199), - [anon_sym_short] = ACTIONS(1199), - [sym_primitive_type] = ACTIONS(1199), - [anon_sym_enum] = ACTIONS(1199), - [anon_sym_NS_ENUM] = ACTIONS(1199), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1199), - [anon_sym_NS_OPTIONS] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(1199), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1199), - [anon_sym_ATend] = ACTIONS(1201), - [sym_optional] = ACTIONS(1201), - [sym_required] = ACTIONS(1201), - [anon_sym_ATproperty] = ACTIONS(1201), - [sym_method_attribute_specifier] = ACTIONS(1199), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1199), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1199), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1199), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1199), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1199), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1199), - [anon_sym_NS_AVAILABLE] = ACTIONS(1199), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1199), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1199), - [anon_sym_API_AVAILABLE] = ACTIONS(1199), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1199), - [anon_sym_API_DEPRECATED] = ACTIONS(1199), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1199), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1199), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1199), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1199), - [anon_sym___deprecated_msg] = ACTIONS(1199), - [anon_sym___deprecated_enum_msg] = ACTIONS(1199), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1199), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1199), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1199), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1199), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1199), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1199), - [anon_sym_ATsynthesize] = ACTIONS(1201), - [anon_sym_ATdynamic] = ACTIONS(1201), - [anon_sym_typeof] = ACTIONS(1199), - [anon_sym___typeof] = ACTIONS(1199), - [anon_sym___typeof__] = ACTIONS(1199), - [sym_id] = ACTIONS(1199), - [sym_instancetype] = ACTIONS(1199), - [sym_Class] = ACTIONS(1199), - [sym_SEL] = ACTIONS(1199), - [sym_IMP] = ACTIONS(1199), - [sym_BOOL] = ACTIONS(1199), - [sym_auto] = ACTIONS(1199), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2949] = { - [sym_identifier] = ACTIONS(1693), - [aux_sym_preproc_def_token1] = ACTIONS(1695), - [anon_sym_DASH] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1695), - [anon_sym_typedef] = ACTIONS(1693), - [anon_sym_extern] = ACTIONS(1693), - [anon_sym___attribute] = ACTIONS(1693), - [anon_sym___attribute__] = ACTIONS(1693), - [anon_sym___declspec] = ACTIONS(1693), - [anon_sym___cdecl] = ACTIONS(1693), - [anon_sym___clrcall] = ACTIONS(1693), - [anon_sym___stdcall] = ACTIONS(1693), - [anon_sym___fastcall] = ACTIONS(1693), - [anon_sym___thiscall] = ACTIONS(1693), - [anon_sym___vectorcall] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(1693), - [anon_sym_auto] = ACTIONS(1693), - [anon_sym_register] = ACTIONS(1693), - [anon_sym_inline] = ACTIONS(1693), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1693), - [anon_sym_volatile] = ACTIONS(1693), - [anon_sym_restrict] = ACTIONS(1693), - [anon_sym__Atomic] = ACTIONS(1693), - [anon_sym_in] = ACTIONS(1693), - [anon_sym_out] = ACTIONS(1693), - [anon_sym_inout] = ACTIONS(1693), - [anon_sym_bycopy] = ACTIONS(1693), - [anon_sym_byref] = ACTIONS(1693), - [anon_sym_oneway] = ACTIONS(1693), - [anon_sym__Nullable] = ACTIONS(1693), - [anon_sym__Nonnull] = ACTIONS(1693), - [anon_sym__Nullable_result] = ACTIONS(1693), - [anon_sym__Null_unspecified] = ACTIONS(1693), - [anon_sym___autoreleasing] = ACTIONS(1693), - [anon_sym___nullable] = ACTIONS(1693), - [anon_sym___nonnull] = ACTIONS(1693), - [anon_sym___strong] = ACTIONS(1693), - [anon_sym___weak] = ACTIONS(1693), - [anon_sym___bridge] = ACTIONS(1693), - [anon_sym___bridge_transfer] = ACTIONS(1693), - [anon_sym___bridge_retained] = ACTIONS(1693), - [anon_sym___unsafe_unretained] = ACTIONS(1693), - [anon_sym___block] = ACTIONS(1693), - [anon_sym___kindof] = ACTIONS(1693), - [anon_sym___unused] = ACTIONS(1693), - [anon_sym__Complex] = ACTIONS(1693), - [anon_sym___complex] = ACTIONS(1693), - [anon_sym_IBOutlet] = ACTIONS(1693), - [anon_sym_IBInspectable] = ACTIONS(1693), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1693), - [anon_sym_signed] = ACTIONS(1693), - [anon_sym_unsigned] = ACTIONS(1693), - [anon_sym_long] = ACTIONS(1693), - [anon_sym_short] = ACTIONS(1693), - [sym_primitive_type] = ACTIONS(1693), - [anon_sym_enum] = ACTIONS(1693), - [anon_sym_NS_ENUM] = ACTIONS(1693), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1693), - [anon_sym_NS_OPTIONS] = ACTIONS(1693), - [anon_sym_struct] = ACTIONS(1693), - [anon_sym_union] = ACTIONS(1693), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1693), - [anon_sym_ATend] = ACTIONS(1695), - [sym_optional] = ACTIONS(1695), - [sym_required] = ACTIONS(1695), - [anon_sym_ATproperty] = ACTIONS(1695), - [sym_method_attribute_specifier] = ACTIONS(1693), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1693), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1693), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1693), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1693), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1693), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1693), - [anon_sym_NS_AVAILABLE] = ACTIONS(1693), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1693), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1693), - [anon_sym_API_AVAILABLE] = ACTIONS(1693), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1693), - [anon_sym_API_DEPRECATED] = ACTIONS(1693), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1693), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1693), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1693), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1693), - [anon_sym___deprecated_msg] = ACTIONS(1693), - [anon_sym___deprecated_enum_msg] = ACTIONS(1693), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1693), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1693), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1693), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1693), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1693), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1693), - [anon_sym_ATsynthesize] = ACTIONS(1695), - [anon_sym_ATdynamic] = ACTIONS(1695), - [anon_sym_typeof] = ACTIONS(1693), - [anon_sym___typeof] = ACTIONS(1693), - [anon_sym___typeof__] = ACTIONS(1693), - [sym_id] = ACTIONS(1693), - [sym_instancetype] = ACTIONS(1693), - [sym_Class] = ACTIONS(1693), - [sym_SEL] = ACTIONS(1693), - [sym_IMP] = ACTIONS(1693), - [sym_BOOL] = ACTIONS(1693), - [sym_auto] = ACTIONS(1693), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2950] = { - [sym_identifier] = ACTIONS(1689), - [aux_sym_preproc_def_token1] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_typedef] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(1689), - [anon_sym___attribute] = ACTIONS(1689), - [anon_sym___attribute__] = ACTIONS(1689), - [anon_sym___declspec] = ACTIONS(1689), - [anon_sym___cdecl] = ACTIONS(1689), - [anon_sym___clrcall] = ACTIONS(1689), - [anon_sym___stdcall] = ACTIONS(1689), - [anon_sym___fastcall] = ACTIONS(1689), - [anon_sym___thiscall] = ACTIONS(1689), - [anon_sym___vectorcall] = ACTIONS(1689), - [anon_sym_static] = ACTIONS(1689), - [anon_sym_auto] = ACTIONS(1689), - [anon_sym_register] = ACTIONS(1689), - [anon_sym_inline] = ACTIONS(1689), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1689), - [anon_sym_const] = ACTIONS(1689), - [anon_sym_volatile] = ACTIONS(1689), - [anon_sym_restrict] = ACTIONS(1689), - [anon_sym__Atomic] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(1689), - [anon_sym_out] = ACTIONS(1689), - [anon_sym_inout] = ACTIONS(1689), - [anon_sym_bycopy] = ACTIONS(1689), - [anon_sym_byref] = ACTIONS(1689), - [anon_sym_oneway] = ACTIONS(1689), - [anon_sym__Nullable] = ACTIONS(1689), - [anon_sym__Nonnull] = ACTIONS(1689), - [anon_sym__Nullable_result] = ACTIONS(1689), - [anon_sym__Null_unspecified] = ACTIONS(1689), - [anon_sym___autoreleasing] = ACTIONS(1689), - [anon_sym___nullable] = ACTIONS(1689), - [anon_sym___nonnull] = ACTIONS(1689), - [anon_sym___strong] = ACTIONS(1689), - [anon_sym___weak] = ACTIONS(1689), - [anon_sym___bridge] = ACTIONS(1689), - [anon_sym___bridge_transfer] = ACTIONS(1689), - [anon_sym___bridge_retained] = ACTIONS(1689), - [anon_sym___unsafe_unretained] = ACTIONS(1689), - [anon_sym___block] = ACTIONS(1689), - [anon_sym___kindof] = ACTIONS(1689), - [anon_sym___unused] = ACTIONS(1689), - [anon_sym__Complex] = ACTIONS(1689), - [anon_sym___complex] = ACTIONS(1689), - [anon_sym_IBOutlet] = ACTIONS(1689), - [anon_sym_IBInspectable] = ACTIONS(1689), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1689), - [anon_sym_signed] = ACTIONS(1689), - [anon_sym_unsigned] = ACTIONS(1689), - [anon_sym_long] = ACTIONS(1689), - [anon_sym_short] = ACTIONS(1689), - [sym_primitive_type] = ACTIONS(1689), - [anon_sym_enum] = ACTIONS(1689), - [anon_sym_NS_ENUM] = ACTIONS(1689), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1689), - [anon_sym_NS_OPTIONS] = ACTIONS(1689), - [anon_sym_struct] = ACTIONS(1689), - [anon_sym_union] = ACTIONS(1689), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1689), - [anon_sym_ATend] = ACTIONS(1691), - [sym_optional] = ACTIONS(1691), - [sym_required] = ACTIONS(1691), - [anon_sym_ATproperty] = ACTIONS(1691), - [sym_method_attribute_specifier] = ACTIONS(1689), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1689), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1689), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1689), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1689), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1689), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1689), - [anon_sym_NS_AVAILABLE] = ACTIONS(1689), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1689), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1689), - [anon_sym_API_AVAILABLE] = ACTIONS(1689), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1689), - [anon_sym_API_DEPRECATED] = ACTIONS(1689), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1689), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1689), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1689), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1689), - [anon_sym___deprecated_msg] = ACTIONS(1689), - [anon_sym___deprecated_enum_msg] = ACTIONS(1689), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1689), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1689), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1689), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1689), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1689), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1689), - [anon_sym_ATsynthesize] = ACTIONS(1691), - [anon_sym_ATdynamic] = ACTIONS(1691), - [anon_sym_typeof] = ACTIONS(1689), - [anon_sym___typeof] = ACTIONS(1689), - [anon_sym___typeof__] = ACTIONS(1689), - [sym_id] = ACTIONS(1689), - [sym_instancetype] = ACTIONS(1689), - [sym_Class] = ACTIONS(1689), - [sym_SEL] = ACTIONS(1689), - [sym_IMP] = ACTIONS(1689), - [sym_BOOL] = ACTIONS(1689), - [sym_auto] = ACTIONS(1689), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2951] = { - [sym_identifier] = ACTIONS(1685), - [aux_sym_preproc_def_token1] = ACTIONS(1687), - [anon_sym_DASH] = ACTIONS(1687), - [anon_sym_PLUS] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(1685), - [anon_sym_extern] = ACTIONS(1685), - [anon_sym___attribute] = ACTIONS(1685), - [anon_sym___attribute__] = ACTIONS(1685), - [anon_sym___declspec] = ACTIONS(1685), - [anon_sym___cdecl] = ACTIONS(1685), - [anon_sym___clrcall] = ACTIONS(1685), - [anon_sym___stdcall] = ACTIONS(1685), - [anon_sym___fastcall] = ACTIONS(1685), - [anon_sym___thiscall] = ACTIONS(1685), - [anon_sym___vectorcall] = ACTIONS(1685), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_auto] = ACTIONS(1685), - [anon_sym_register] = ACTIONS(1685), - [anon_sym_inline] = ACTIONS(1685), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1685), - [anon_sym_volatile] = ACTIONS(1685), - [anon_sym_restrict] = ACTIONS(1685), - [anon_sym__Atomic] = ACTIONS(1685), - [anon_sym_in] = ACTIONS(1685), - [anon_sym_out] = ACTIONS(1685), - [anon_sym_inout] = ACTIONS(1685), - [anon_sym_bycopy] = ACTIONS(1685), - [anon_sym_byref] = ACTIONS(1685), - [anon_sym_oneway] = ACTIONS(1685), - [anon_sym__Nullable] = ACTIONS(1685), - [anon_sym__Nonnull] = ACTIONS(1685), - [anon_sym__Nullable_result] = ACTIONS(1685), - [anon_sym__Null_unspecified] = ACTIONS(1685), - [anon_sym___autoreleasing] = ACTIONS(1685), - [anon_sym___nullable] = ACTIONS(1685), - [anon_sym___nonnull] = ACTIONS(1685), - [anon_sym___strong] = ACTIONS(1685), - [anon_sym___weak] = ACTIONS(1685), - [anon_sym___bridge] = ACTIONS(1685), - [anon_sym___bridge_transfer] = ACTIONS(1685), - [anon_sym___bridge_retained] = ACTIONS(1685), - [anon_sym___unsafe_unretained] = ACTIONS(1685), - [anon_sym___block] = ACTIONS(1685), - [anon_sym___kindof] = ACTIONS(1685), - [anon_sym___unused] = ACTIONS(1685), - [anon_sym__Complex] = ACTIONS(1685), - [anon_sym___complex] = ACTIONS(1685), - [anon_sym_IBOutlet] = ACTIONS(1685), - [anon_sym_IBInspectable] = ACTIONS(1685), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1685), - [anon_sym_signed] = ACTIONS(1685), - [anon_sym_unsigned] = ACTIONS(1685), - [anon_sym_long] = ACTIONS(1685), - [anon_sym_short] = ACTIONS(1685), - [sym_primitive_type] = ACTIONS(1685), - [anon_sym_enum] = ACTIONS(1685), - [anon_sym_NS_ENUM] = ACTIONS(1685), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1685), - [anon_sym_NS_OPTIONS] = ACTIONS(1685), - [anon_sym_struct] = ACTIONS(1685), - [anon_sym_union] = ACTIONS(1685), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1685), - [anon_sym_ATend] = ACTIONS(1687), - [sym_optional] = ACTIONS(1687), - [sym_required] = ACTIONS(1687), - [anon_sym_ATproperty] = ACTIONS(1687), - [sym_method_attribute_specifier] = ACTIONS(1685), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1685), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1685), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1685), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1685), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1685), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1685), - [anon_sym_NS_AVAILABLE] = ACTIONS(1685), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1685), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1685), - [anon_sym_API_AVAILABLE] = ACTIONS(1685), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1685), - [anon_sym_API_DEPRECATED] = ACTIONS(1685), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1685), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1685), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1685), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1685), - [anon_sym___deprecated_msg] = ACTIONS(1685), - [anon_sym___deprecated_enum_msg] = ACTIONS(1685), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1685), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1685), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1685), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1685), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1685), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1685), - [anon_sym_ATsynthesize] = ACTIONS(1687), - [anon_sym_ATdynamic] = ACTIONS(1687), - [anon_sym_typeof] = ACTIONS(1685), - [anon_sym___typeof] = ACTIONS(1685), - [anon_sym___typeof__] = ACTIONS(1685), - [sym_id] = ACTIONS(1685), - [sym_instancetype] = ACTIONS(1685), - [sym_Class] = ACTIONS(1685), - [sym_SEL] = ACTIONS(1685), - [sym_IMP] = ACTIONS(1685), - [sym_BOOL] = ACTIONS(1685), - [sym_auto] = ACTIONS(1685), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2952] = { - [sym_identifier] = ACTIONS(1681), - [aux_sym_preproc_def_token1] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_typedef] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym___attribute] = ACTIONS(1681), - [anon_sym___attribute__] = ACTIONS(1681), - [anon_sym___declspec] = ACTIONS(1681), - [anon_sym___cdecl] = ACTIONS(1681), - [anon_sym___clrcall] = ACTIONS(1681), - [anon_sym___stdcall] = ACTIONS(1681), - [anon_sym___fastcall] = ACTIONS(1681), - [anon_sym___thiscall] = ACTIONS(1681), - [anon_sym___vectorcall] = ACTIONS(1681), - [anon_sym_static] = ACTIONS(1681), - [anon_sym_auto] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1681), - [anon_sym_inline] = ACTIONS(1681), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [anon_sym_volatile] = ACTIONS(1681), - [anon_sym_restrict] = ACTIONS(1681), - [anon_sym__Atomic] = ACTIONS(1681), - [anon_sym_in] = ACTIONS(1681), - [anon_sym_out] = ACTIONS(1681), - [anon_sym_inout] = ACTIONS(1681), - [anon_sym_bycopy] = ACTIONS(1681), - [anon_sym_byref] = ACTIONS(1681), - [anon_sym_oneway] = ACTIONS(1681), - [anon_sym__Nullable] = ACTIONS(1681), - [anon_sym__Nonnull] = ACTIONS(1681), - [anon_sym__Nullable_result] = ACTIONS(1681), - [anon_sym__Null_unspecified] = ACTIONS(1681), - [anon_sym___autoreleasing] = ACTIONS(1681), - [anon_sym___nullable] = ACTIONS(1681), - [anon_sym___nonnull] = ACTIONS(1681), - [anon_sym___strong] = ACTIONS(1681), - [anon_sym___weak] = ACTIONS(1681), - [anon_sym___bridge] = ACTIONS(1681), - [anon_sym___bridge_transfer] = ACTIONS(1681), - [anon_sym___bridge_retained] = ACTIONS(1681), - [anon_sym___unsafe_unretained] = ACTIONS(1681), - [anon_sym___block] = ACTIONS(1681), - [anon_sym___kindof] = ACTIONS(1681), - [anon_sym___unused] = ACTIONS(1681), - [anon_sym__Complex] = ACTIONS(1681), - [anon_sym___complex] = ACTIONS(1681), - [anon_sym_IBOutlet] = ACTIONS(1681), - [anon_sym_IBInspectable] = ACTIONS(1681), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1681), - [anon_sym_signed] = ACTIONS(1681), - [anon_sym_unsigned] = ACTIONS(1681), - [anon_sym_long] = ACTIONS(1681), - [anon_sym_short] = ACTIONS(1681), - [sym_primitive_type] = ACTIONS(1681), - [anon_sym_enum] = ACTIONS(1681), - [anon_sym_NS_ENUM] = ACTIONS(1681), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1681), - [anon_sym_NS_OPTIONS] = ACTIONS(1681), - [anon_sym_struct] = ACTIONS(1681), - [anon_sym_union] = ACTIONS(1681), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1681), - [anon_sym_ATend] = ACTIONS(1683), - [sym_optional] = ACTIONS(1683), - [sym_required] = ACTIONS(1683), - [anon_sym_ATproperty] = ACTIONS(1683), - [sym_method_attribute_specifier] = ACTIONS(1681), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1681), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1681), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1681), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1681), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1681), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1681), - [anon_sym_NS_AVAILABLE] = ACTIONS(1681), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1681), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1681), - [anon_sym_API_AVAILABLE] = ACTIONS(1681), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1681), - [anon_sym_API_DEPRECATED] = ACTIONS(1681), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1681), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1681), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1681), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1681), - [anon_sym___deprecated_msg] = ACTIONS(1681), - [anon_sym___deprecated_enum_msg] = ACTIONS(1681), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1681), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1681), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1681), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1681), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1681), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1681), - [anon_sym_ATsynthesize] = ACTIONS(1683), - [anon_sym_ATdynamic] = ACTIONS(1683), - [anon_sym_typeof] = ACTIONS(1681), - [anon_sym___typeof] = ACTIONS(1681), - [anon_sym___typeof__] = ACTIONS(1681), - [sym_id] = ACTIONS(1681), - [sym_instancetype] = ACTIONS(1681), - [sym_Class] = ACTIONS(1681), - [sym_SEL] = ACTIONS(1681), - [sym_IMP] = ACTIONS(1681), - [sym_BOOL] = ACTIONS(1681), - [sym_auto] = ACTIONS(1681), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2953] = { - [sym_identifier] = ACTIONS(1579), - [aux_sym_preproc_def_token1] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_typedef] = ACTIONS(1579), - [anon_sym_extern] = ACTIONS(1579), - [anon_sym___attribute] = ACTIONS(1579), - [anon_sym___attribute__] = ACTIONS(1579), - [anon_sym___declspec] = ACTIONS(1579), - [anon_sym___cdecl] = ACTIONS(1579), - [anon_sym___clrcall] = ACTIONS(1579), - [anon_sym___stdcall] = ACTIONS(1579), - [anon_sym___fastcall] = ACTIONS(1579), - [anon_sym___thiscall] = ACTIONS(1579), - [anon_sym___vectorcall] = ACTIONS(1579), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_auto] = ACTIONS(1579), - [anon_sym_register] = ACTIONS(1579), - [anon_sym_inline] = ACTIONS(1579), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_volatile] = ACTIONS(1579), - [anon_sym_restrict] = ACTIONS(1579), - [anon_sym__Atomic] = ACTIONS(1579), - [anon_sym_in] = ACTIONS(1579), - [anon_sym_out] = ACTIONS(1579), - [anon_sym_inout] = ACTIONS(1579), - [anon_sym_bycopy] = ACTIONS(1579), - [anon_sym_byref] = ACTIONS(1579), - [anon_sym_oneway] = ACTIONS(1579), - [anon_sym__Nullable] = ACTIONS(1579), - [anon_sym__Nonnull] = ACTIONS(1579), - [anon_sym__Nullable_result] = ACTIONS(1579), - [anon_sym__Null_unspecified] = ACTIONS(1579), - [anon_sym___autoreleasing] = ACTIONS(1579), - [anon_sym___nullable] = ACTIONS(1579), - [anon_sym___nonnull] = ACTIONS(1579), - [anon_sym___strong] = ACTIONS(1579), - [anon_sym___weak] = ACTIONS(1579), - [anon_sym___bridge] = ACTIONS(1579), - [anon_sym___bridge_transfer] = ACTIONS(1579), - [anon_sym___bridge_retained] = ACTIONS(1579), - [anon_sym___unsafe_unretained] = ACTIONS(1579), - [anon_sym___block] = ACTIONS(1579), - [anon_sym___kindof] = ACTIONS(1579), - [anon_sym___unused] = ACTIONS(1579), - [anon_sym__Complex] = ACTIONS(1579), - [anon_sym___complex] = ACTIONS(1579), - [anon_sym_IBOutlet] = ACTIONS(1579), - [anon_sym_IBInspectable] = ACTIONS(1579), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1579), - [anon_sym_signed] = ACTIONS(1579), - [anon_sym_unsigned] = ACTIONS(1579), - [anon_sym_long] = ACTIONS(1579), - [anon_sym_short] = ACTIONS(1579), - [sym_primitive_type] = ACTIONS(1579), - [anon_sym_enum] = ACTIONS(1579), - [anon_sym_NS_ENUM] = ACTIONS(1579), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1579), - [anon_sym_NS_OPTIONS] = ACTIONS(1579), - [anon_sym_struct] = ACTIONS(1579), - [anon_sym_union] = ACTIONS(1579), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1579), - [anon_sym_ATend] = ACTIONS(1577), - [sym_optional] = ACTIONS(1577), - [sym_required] = ACTIONS(1577), - [anon_sym_ATproperty] = ACTIONS(1577), - [sym_method_attribute_specifier] = ACTIONS(1579), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1579), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1579), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1579), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1579), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1579), - [anon_sym_NS_AVAILABLE] = ACTIONS(1579), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1579), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_API_AVAILABLE] = ACTIONS(1579), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_API_DEPRECATED] = ACTIONS(1579), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1579), - [anon_sym___deprecated_msg] = ACTIONS(1579), - [anon_sym___deprecated_enum_msg] = ACTIONS(1579), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1579), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1579), - [anon_sym_ATsynthesize] = ACTIONS(1577), - [anon_sym_ATdynamic] = ACTIONS(1577), - [anon_sym_typeof] = ACTIONS(1579), - [anon_sym___typeof] = ACTIONS(1579), - [anon_sym___typeof__] = ACTIONS(1579), - [sym_id] = ACTIONS(1579), - [sym_instancetype] = ACTIONS(1579), - [sym_Class] = ACTIONS(1579), - [sym_SEL] = ACTIONS(1579), - [sym_IMP] = ACTIONS(1579), - [sym_BOOL] = ACTIONS(1579), - [sym_auto] = ACTIONS(1579), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2954] = { - [sym_identifier] = ACTIONS(1579), - [aux_sym_preproc_def_token1] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_typedef] = ACTIONS(1579), - [anon_sym_extern] = ACTIONS(1579), - [anon_sym___attribute] = ACTIONS(1579), - [anon_sym___attribute__] = ACTIONS(1579), - [anon_sym___declspec] = ACTIONS(1579), - [anon_sym___cdecl] = ACTIONS(1579), - [anon_sym___clrcall] = ACTIONS(1579), - [anon_sym___stdcall] = ACTIONS(1579), - [anon_sym___fastcall] = ACTIONS(1579), - [anon_sym___thiscall] = ACTIONS(1579), - [anon_sym___vectorcall] = ACTIONS(1579), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_auto] = ACTIONS(1579), - [anon_sym_register] = ACTIONS(1579), - [anon_sym_inline] = ACTIONS(1579), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_volatile] = ACTIONS(1579), - [anon_sym_restrict] = ACTIONS(1579), - [anon_sym__Atomic] = ACTIONS(1579), - [anon_sym_in] = ACTIONS(1579), - [anon_sym_out] = ACTIONS(1579), - [anon_sym_inout] = ACTIONS(1579), - [anon_sym_bycopy] = ACTIONS(1579), - [anon_sym_byref] = ACTIONS(1579), - [anon_sym_oneway] = ACTIONS(1579), - [anon_sym__Nullable] = ACTIONS(1579), - [anon_sym__Nonnull] = ACTIONS(1579), - [anon_sym__Nullable_result] = ACTIONS(1579), - [anon_sym__Null_unspecified] = ACTIONS(1579), - [anon_sym___autoreleasing] = ACTIONS(1579), - [anon_sym___nullable] = ACTIONS(1579), - [anon_sym___nonnull] = ACTIONS(1579), - [anon_sym___strong] = ACTIONS(1579), - [anon_sym___weak] = ACTIONS(1579), - [anon_sym___bridge] = ACTIONS(1579), - [anon_sym___bridge_transfer] = ACTIONS(1579), - [anon_sym___bridge_retained] = ACTIONS(1579), - [anon_sym___unsafe_unretained] = ACTIONS(1579), - [anon_sym___block] = ACTIONS(1579), - [anon_sym___kindof] = ACTIONS(1579), - [anon_sym___unused] = ACTIONS(1579), - [anon_sym__Complex] = ACTIONS(1579), - [anon_sym___complex] = ACTIONS(1579), - [anon_sym_IBOutlet] = ACTIONS(1579), - [anon_sym_IBInspectable] = ACTIONS(1579), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1579), - [anon_sym_signed] = ACTIONS(1579), - [anon_sym_unsigned] = ACTIONS(1579), - [anon_sym_long] = ACTIONS(1579), - [anon_sym_short] = ACTIONS(1579), - [sym_primitive_type] = ACTIONS(1579), - [anon_sym_enum] = ACTIONS(1579), - [anon_sym_NS_ENUM] = ACTIONS(1579), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1579), - [anon_sym_NS_OPTIONS] = ACTIONS(1579), - [anon_sym_struct] = ACTIONS(1579), - [anon_sym_union] = ACTIONS(1579), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1579), - [anon_sym_ATend] = ACTIONS(1577), - [sym_optional] = ACTIONS(1577), - [sym_required] = ACTIONS(1577), - [anon_sym_ATproperty] = ACTIONS(1577), - [sym_method_attribute_specifier] = ACTIONS(1579), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1579), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1579), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1579), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1579), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1579), - [anon_sym_NS_AVAILABLE] = ACTIONS(1579), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1579), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_API_AVAILABLE] = ACTIONS(1579), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_API_DEPRECATED] = ACTIONS(1579), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1579), - [anon_sym___deprecated_msg] = ACTIONS(1579), - [anon_sym___deprecated_enum_msg] = ACTIONS(1579), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1579), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1579), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1579), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1579), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1579), - [anon_sym_ATsynthesize] = ACTIONS(1577), - [anon_sym_ATdynamic] = ACTIONS(1577), - [anon_sym_typeof] = ACTIONS(1579), - [anon_sym___typeof] = ACTIONS(1579), - [anon_sym___typeof__] = ACTIONS(1579), - [sym_id] = ACTIONS(1579), - [sym_instancetype] = ACTIONS(1579), - [sym_Class] = ACTIONS(1579), - [sym_SEL] = ACTIONS(1579), - [sym_IMP] = ACTIONS(1579), - [sym_BOOL] = ACTIONS(1579), - [sym_auto] = ACTIONS(1579), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2955] = { - [sym_identifier] = ACTIONS(1259), - [aux_sym_preproc_def_token1] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_PLUS] = ACTIONS(1261), - [anon_sym_typedef] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym___attribute] = ACTIONS(1259), - [anon_sym___attribute__] = ACTIONS(1259), - [anon_sym___declspec] = ACTIONS(1259), - [anon_sym___cdecl] = ACTIONS(1259), - [anon_sym___clrcall] = ACTIONS(1259), - [anon_sym___stdcall] = ACTIONS(1259), - [anon_sym___fastcall] = ACTIONS(1259), - [anon_sym___thiscall] = ACTIONS(1259), - [anon_sym___vectorcall] = ACTIONS(1259), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_auto] = ACTIONS(1259), - [anon_sym_register] = ACTIONS(1259), - [anon_sym_inline] = ACTIONS(1259), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_volatile] = ACTIONS(1259), - [anon_sym_restrict] = ACTIONS(1259), - [anon_sym__Atomic] = ACTIONS(1259), - [anon_sym_in] = ACTIONS(1259), - [anon_sym_out] = ACTIONS(1259), - [anon_sym_inout] = ACTIONS(1259), - [anon_sym_bycopy] = ACTIONS(1259), - [anon_sym_byref] = ACTIONS(1259), - [anon_sym_oneway] = ACTIONS(1259), - [anon_sym__Nullable] = ACTIONS(1259), - [anon_sym__Nonnull] = ACTIONS(1259), - [anon_sym__Nullable_result] = ACTIONS(1259), - [anon_sym__Null_unspecified] = ACTIONS(1259), - [anon_sym___autoreleasing] = ACTIONS(1259), - [anon_sym___nullable] = ACTIONS(1259), - [anon_sym___nonnull] = ACTIONS(1259), - [anon_sym___strong] = ACTIONS(1259), - [anon_sym___weak] = ACTIONS(1259), - [anon_sym___bridge] = ACTIONS(1259), - [anon_sym___bridge_transfer] = ACTIONS(1259), - [anon_sym___bridge_retained] = ACTIONS(1259), - [anon_sym___unsafe_unretained] = ACTIONS(1259), - [anon_sym___block] = ACTIONS(1259), - [anon_sym___kindof] = ACTIONS(1259), - [anon_sym___unused] = ACTIONS(1259), - [anon_sym__Complex] = ACTIONS(1259), - [anon_sym___complex] = ACTIONS(1259), - [anon_sym_IBOutlet] = ACTIONS(1259), - [anon_sym_IBInspectable] = ACTIONS(1259), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1259), - [anon_sym_signed] = ACTIONS(1259), - [anon_sym_unsigned] = ACTIONS(1259), - [anon_sym_long] = ACTIONS(1259), - [anon_sym_short] = ACTIONS(1259), - [sym_primitive_type] = ACTIONS(1259), - [anon_sym_enum] = ACTIONS(1259), - [anon_sym_NS_ENUM] = ACTIONS(1259), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1259), - [anon_sym_NS_OPTIONS] = ACTIONS(1259), - [anon_sym_struct] = ACTIONS(1259), - [anon_sym_union] = ACTIONS(1259), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1259), - [anon_sym_ATend] = ACTIONS(1261), - [sym_optional] = ACTIONS(1261), - [sym_required] = ACTIONS(1261), - [anon_sym_ATproperty] = ACTIONS(1261), - [sym_method_attribute_specifier] = ACTIONS(1259), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1259), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1259), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1259), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1259), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1259), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1259), - [anon_sym_NS_AVAILABLE] = ACTIONS(1259), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1259), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1259), - [anon_sym_API_AVAILABLE] = ACTIONS(1259), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1259), - [anon_sym_API_DEPRECATED] = ACTIONS(1259), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1259), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1259), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1259), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1259), - [anon_sym___deprecated_msg] = ACTIONS(1259), - [anon_sym___deprecated_enum_msg] = ACTIONS(1259), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1259), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1259), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1259), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1259), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1259), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1259), - [anon_sym_ATsynthesize] = ACTIONS(1261), - [anon_sym_ATdynamic] = ACTIONS(1261), - [anon_sym_typeof] = ACTIONS(1259), - [anon_sym___typeof] = ACTIONS(1259), - [anon_sym___typeof__] = ACTIONS(1259), - [sym_id] = ACTIONS(1259), - [sym_instancetype] = ACTIONS(1259), - [sym_Class] = ACTIONS(1259), - [sym_SEL] = ACTIONS(1259), - [sym_IMP] = ACTIONS(1259), - [sym_BOOL] = ACTIONS(1259), - [sym_auto] = ACTIONS(1259), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2956] = { - [sym_identifier] = ACTIONS(1575), - [aux_sym_preproc_def_token1] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_PLUS] = ACTIONS(1573), - [anon_sym_typedef] = ACTIONS(1575), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym___attribute] = ACTIONS(1575), - [anon_sym___attribute__] = ACTIONS(1575), - [anon_sym___declspec] = ACTIONS(1575), - [anon_sym___cdecl] = ACTIONS(1575), - [anon_sym___clrcall] = ACTIONS(1575), - [anon_sym___stdcall] = ACTIONS(1575), - [anon_sym___fastcall] = ACTIONS(1575), - [anon_sym___thiscall] = ACTIONS(1575), - [anon_sym___vectorcall] = ACTIONS(1575), - [anon_sym_static] = ACTIONS(1575), - [anon_sym_auto] = ACTIONS(1575), - [anon_sym_register] = ACTIONS(1575), - [anon_sym_inline] = ACTIONS(1575), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [anon_sym_volatile] = ACTIONS(1575), - [anon_sym_restrict] = ACTIONS(1575), - [anon_sym__Atomic] = ACTIONS(1575), - [anon_sym_in] = ACTIONS(1575), - [anon_sym_out] = ACTIONS(1575), - [anon_sym_inout] = ACTIONS(1575), - [anon_sym_bycopy] = ACTIONS(1575), - [anon_sym_byref] = ACTIONS(1575), - [anon_sym_oneway] = ACTIONS(1575), - [anon_sym__Nullable] = ACTIONS(1575), - [anon_sym__Nonnull] = ACTIONS(1575), - [anon_sym__Nullable_result] = ACTIONS(1575), - [anon_sym__Null_unspecified] = ACTIONS(1575), - [anon_sym___autoreleasing] = ACTIONS(1575), - [anon_sym___nullable] = ACTIONS(1575), - [anon_sym___nonnull] = ACTIONS(1575), - [anon_sym___strong] = ACTIONS(1575), - [anon_sym___weak] = ACTIONS(1575), - [anon_sym___bridge] = ACTIONS(1575), - [anon_sym___bridge_transfer] = ACTIONS(1575), - [anon_sym___bridge_retained] = ACTIONS(1575), - [anon_sym___unsafe_unretained] = ACTIONS(1575), - [anon_sym___block] = ACTIONS(1575), - [anon_sym___kindof] = ACTIONS(1575), - [anon_sym___unused] = ACTIONS(1575), - [anon_sym__Complex] = ACTIONS(1575), - [anon_sym___complex] = ACTIONS(1575), - [anon_sym_IBOutlet] = ACTIONS(1575), - [anon_sym_IBInspectable] = ACTIONS(1575), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1575), - [anon_sym_signed] = ACTIONS(1575), - [anon_sym_unsigned] = ACTIONS(1575), - [anon_sym_long] = ACTIONS(1575), - [anon_sym_short] = ACTIONS(1575), - [sym_primitive_type] = ACTIONS(1575), - [anon_sym_enum] = ACTIONS(1575), - [anon_sym_NS_ENUM] = ACTIONS(1575), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1575), - [anon_sym_NS_OPTIONS] = ACTIONS(1575), - [anon_sym_struct] = ACTIONS(1575), - [anon_sym_union] = ACTIONS(1575), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1575), - [anon_sym_ATend] = ACTIONS(1573), - [sym_optional] = ACTIONS(1573), - [sym_required] = ACTIONS(1573), - [anon_sym_ATproperty] = ACTIONS(1573), - [sym_method_attribute_specifier] = ACTIONS(1575), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1575), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1575), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1575), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1575), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1575), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1575), - [anon_sym_NS_AVAILABLE] = ACTIONS(1575), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1575), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1575), - [anon_sym_API_AVAILABLE] = ACTIONS(1575), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1575), - [anon_sym_API_DEPRECATED] = ACTIONS(1575), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1575), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1575), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1575), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1575), - [anon_sym___deprecated_msg] = ACTIONS(1575), - [anon_sym___deprecated_enum_msg] = ACTIONS(1575), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1575), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1575), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1575), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1575), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1575), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1575), - [anon_sym_ATsynthesize] = ACTIONS(1573), - [anon_sym_ATdynamic] = ACTIONS(1573), - [anon_sym_typeof] = ACTIONS(1575), - [anon_sym___typeof] = ACTIONS(1575), - [anon_sym___typeof__] = ACTIONS(1575), - [sym_id] = ACTIONS(1575), - [sym_instancetype] = ACTIONS(1575), - [sym_Class] = ACTIONS(1575), - [sym_SEL] = ACTIONS(1575), - [sym_IMP] = ACTIONS(1575), - [sym_BOOL] = ACTIONS(1575), - [sym_auto] = ACTIONS(1575), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2957] = { - [sym__declaration_specifiers] = STATE(3953), - [sym_attribute_specifier] = STATE(3007), - [sym_ms_declspec_modifier] = STATE(3007), - [sym_storage_class_specifier] = STATE(3007), - [sym_type_qualifier] = STATE(3007), - [sym__type_specifier] = STATE(3408), - [sym_sized_type_specifier] = STATE(3408), - [sym_enum_specifier] = STATE(3408), - [sym_struct_specifier] = STATE(3408), - [sym_union_specifier] = STATE(3408), - [sym_macro_type_specifier] = STATE(3408), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3408), - [sym_atomic_specifier] = STATE(3408), - [sym_generic_type_specifier] = STATE(3408), - [aux_sym__declaration_specifiers_repeat1] = STATE(3007), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(6892), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_NOESCAPE] = ACTIONS(6952), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(6892), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(6892), - [sym_IMP] = ACTIONS(6892), - [sym_BOOL] = ACTIONS(6892), - [sym_auto] = ACTIONS(6892), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2958] = { - [sym_identifier] = ACTIONS(1657), - [aux_sym_preproc_def_token1] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_typedef] = ACTIONS(1657), - [anon_sym_extern] = ACTIONS(1657), - [anon_sym___attribute] = ACTIONS(1657), - [anon_sym___attribute__] = ACTIONS(1657), - [anon_sym___declspec] = ACTIONS(1657), - [anon_sym___cdecl] = ACTIONS(1657), - [anon_sym___clrcall] = ACTIONS(1657), - [anon_sym___stdcall] = ACTIONS(1657), - [anon_sym___fastcall] = ACTIONS(1657), - [anon_sym___thiscall] = ACTIONS(1657), - [anon_sym___vectorcall] = ACTIONS(1657), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_auto] = ACTIONS(1657), - [anon_sym_register] = ACTIONS(1657), - [anon_sym_inline] = ACTIONS(1657), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_volatile] = ACTIONS(1657), - [anon_sym_restrict] = ACTIONS(1657), - [anon_sym__Atomic] = ACTIONS(1657), - [anon_sym_in] = ACTIONS(1657), - [anon_sym_out] = ACTIONS(1657), - [anon_sym_inout] = ACTIONS(1657), - [anon_sym_bycopy] = ACTIONS(1657), - [anon_sym_byref] = ACTIONS(1657), - [anon_sym_oneway] = ACTIONS(1657), - [anon_sym__Nullable] = ACTIONS(1657), - [anon_sym__Nonnull] = ACTIONS(1657), - [anon_sym__Nullable_result] = ACTIONS(1657), - [anon_sym__Null_unspecified] = ACTIONS(1657), - [anon_sym___autoreleasing] = ACTIONS(1657), - [anon_sym___nullable] = ACTIONS(1657), - [anon_sym___nonnull] = ACTIONS(1657), - [anon_sym___strong] = ACTIONS(1657), - [anon_sym___weak] = ACTIONS(1657), - [anon_sym___bridge] = ACTIONS(1657), - [anon_sym___bridge_transfer] = ACTIONS(1657), - [anon_sym___bridge_retained] = ACTIONS(1657), - [anon_sym___unsafe_unretained] = ACTIONS(1657), - [anon_sym___block] = ACTIONS(1657), - [anon_sym___kindof] = ACTIONS(1657), - [anon_sym___unused] = ACTIONS(1657), - [anon_sym__Complex] = ACTIONS(1657), - [anon_sym___complex] = ACTIONS(1657), - [anon_sym_IBOutlet] = ACTIONS(1657), - [anon_sym_IBInspectable] = ACTIONS(1657), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1657), - [anon_sym_signed] = ACTIONS(1657), - [anon_sym_unsigned] = ACTIONS(1657), - [anon_sym_long] = ACTIONS(1657), - [anon_sym_short] = ACTIONS(1657), - [sym_primitive_type] = ACTIONS(1657), - [anon_sym_enum] = ACTIONS(1657), - [anon_sym_NS_ENUM] = ACTIONS(1657), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1657), - [anon_sym_NS_OPTIONS] = ACTIONS(1657), - [anon_sym_struct] = ACTIONS(1657), - [anon_sym_union] = ACTIONS(1657), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1657), - [anon_sym_ATend] = ACTIONS(1659), - [sym_optional] = ACTIONS(1659), - [sym_required] = ACTIONS(1659), - [anon_sym_ATproperty] = ACTIONS(1659), - [sym_method_attribute_specifier] = ACTIONS(1657), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1657), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1657), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1657), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1657), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1657), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1657), - [anon_sym_NS_AVAILABLE] = ACTIONS(1657), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1657), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1657), - [anon_sym_API_AVAILABLE] = ACTIONS(1657), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1657), - [anon_sym_API_DEPRECATED] = ACTIONS(1657), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1657), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1657), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1657), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1657), - [anon_sym___deprecated_msg] = ACTIONS(1657), - [anon_sym___deprecated_enum_msg] = ACTIONS(1657), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1657), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1657), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1657), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1657), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1657), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1657), - [anon_sym_ATsynthesize] = ACTIONS(1659), - [anon_sym_ATdynamic] = ACTIONS(1659), - [anon_sym_typeof] = ACTIONS(1657), - [anon_sym___typeof] = ACTIONS(1657), - [anon_sym___typeof__] = ACTIONS(1657), - [sym_id] = ACTIONS(1657), - [sym_instancetype] = ACTIONS(1657), - [sym_Class] = ACTIONS(1657), - [sym_SEL] = ACTIONS(1657), - [sym_IMP] = ACTIONS(1657), - [sym_BOOL] = ACTIONS(1657), - [sym_auto] = ACTIONS(1657), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2959] = { - [sym_type_qualifier] = STATE(2965), - [sym__expression] = STATE(4528), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_type_definition_repeat1] = STATE(2965), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(6954), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(6956), - [anon_sym_const] = ACTIONS(6922), - [anon_sym_volatile] = ACTIONS(6922), - [anon_sym_restrict] = ACTIONS(6922), - [anon_sym__Atomic] = ACTIONS(6922), - [anon_sym_in] = ACTIONS(6922), - [anon_sym_out] = ACTIONS(6922), - [anon_sym_inout] = ACTIONS(6922), - [anon_sym_bycopy] = ACTIONS(6922), - [anon_sym_byref] = ACTIONS(6922), - [anon_sym_oneway] = ACTIONS(6922), - [anon_sym__Nullable] = ACTIONS(6922), - [anon_sym__Nonnull] = ACTIONS(6922), - [anon_sym__Nullable_result] = ACTIONS(6922), - [anon_sym__Null_unspecified] = ACTIONS(6922), - [anon_sym___autoreleasing] = ACTIONS(6922), - [anon_sym___nullable] = ACTIONS(6922), - [anon_sym___nonnull] = ACTIONS(6922), - [anon_sym___strong] = ACTIONS(6922), - [anon_sym___weak] = ACTIONS(6922), - [anon_sym___bridge] = ACTIONS(6922), - [anon_sym___bridge_transfer] = ACTIONS(6922), - [anon_sym___bridge_retained] = ACTIONS(6922), - [anon_sym___unsafe_unretained] = ACTIONS(6922), - [anon_sym___block] = ACTIONS(6922), - [anon_sym___kindof] = ACTIONS(6922), - [anon_sym___unused] = ACTIONS(6922), - [anon_sym__Complex] = ACTIONS(6922), - [anon_sym___complex] = ACTIONS(6922), - [anon_sym_IBOutlet] = ACTIONS(6922), - [anon_sym_IBInspectable] = ACTIONS(6922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6922), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2960] = { - [sym_identifier] = ACTIONS(1653), - [aux_sym_preproc_def_token1] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_typedef] = ACTIONS(1653), - [anon_sym_extern] = ACTIONS(1653), - [anon_sym___attribute] = ACTIONS(1653), - [anon_sym___attribute__] = ACTIONS(1653), - [anon_sym___declspec] = ACTIONS(1653), - [anon_sym___cdecl] = ACTIONS(1653), - [anon_sym___clrcall] = ACTIONS(1653), - [anon_sym___stdcall] = ACTIONS(1653), - [anon_sym___fastcall] = ACTIONS(1653), - [anon_sym___thiscall] = ACTIONS(1653), - [anon_sym___vectorcall] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_auto] = ACTIONS(1653), - [anon_sym_register] = ACTIONS(1653), - [anon_sym_inline] = ACTIONS(1653), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_volatile] = ACTIONS(1653), - [anon_sym_restrict] = ACTIONS(1653), - [anon_sym__Atomic] = ACTIONS(1653), - [anon_sym_in] = ACTIONS(1653), - [anon_sym_out] = ACTIONS(1653), - [anon_sym_inout] = ACTIONS(1653), - [anon_sym_bycopy] = ACTIONS(1653), - [anon_sym_byref] = ACTIONS(1653), - [anon_sym_oneway] = ACTIONS(1653), - [anon_sym__Nullable] = ACTIONS(1653), - [anon_sym__Nonnull] = ACTIONS(1653), - [anon_sym__Nullable_result] = ACTIONS(1653), - [anon_sym__Null_unspecified] = ACTIONS(1653), - [anon_sym___autoreleasing] = ACTIONS(1653), - [anon_sym___nullable] = ACTIONS(1653), - [anon_sym___nonnull] = ACTIONS(1653), - [anon_sym___strong] = ACTIONS(1653), - [anon_sym___weak] = ACTIONS(1653), - [anon_sym___bridge] = ACTIONS(1653), - [anon_sym___bridge_transfer] = ACTIONS(1653), - [anon_sym___bridge_retained] = ACTIONS(1653), - [anon_sym___unsafe_unretained] = ACTIONS(1653), - [anon_sym___block] = ACTIONS(1653), - [anon_sym___kindof] = ACTIONS(1653), - [anon_sym___unused] = ACTIONS(1653), - [anon_sym__Complex] = ACTIONS(1653), - [anon_sym___complex] = ACTIONS(1653), - [anon_sym_IBOutlet] = ACTIONS(1653), - [anon_sym_IBInspectable] = ACTIONS(1653), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1653), - [anon_sym_signed] = ACTIONS(1653), - [anon_sym_unsigned] = ACTIONS(1653), - [anon_sym_long] = ACTIONS(1653), - [anon_sym_short] = ACTIONS(1653), - [sym_primitive_type] = ACTIONS(1653), - [anon_sym_enum] = ACTIONS(1653), - [anon_sym_NS_ENUM] = ACTIONS(1653), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), - [anon_sym_NS_OPTIONS] = ACTIONS(1653), - [anon_sym_struct] = ACTIONS(1653), - [anon_sym_union] = ACTIONS(1653), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1653), - [anon_sym_ATend] = ACTIONS(1655), - [sym_optional] = ACTIONS(1655), - [sym_required] = ACTIONS(1655), - [anon_sym_ATproperty] = ACTIONS(1655), - [sym_method_attribute_specifier] = ACTIONS(1653), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1653), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1653), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1653), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1653), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1653), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1653), - [anon_sym_NS_AVAILABLE] = ACTIONS(1653), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1653), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1653), - [anon_sym_API_AVAILABLE] = ACTIONS(1653), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1653), - [anon_sym_API_DEPRECATED] = ACTIONS(1653), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1653), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1653), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1653), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1653), - [anon_sym___deprecated_msg] = ACTIONS(1653), - [anon_sym___deprecated_enum_msg] = ACTIONS(1653), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1653), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1653), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1653), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1653), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1653), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1653), - [anon_sym_ATsynthesize] = ACTIONS(1655), - [anon_sym_ATdynamic] = ACTIONS(1655), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym___typeof] = ACTIONS(1653), - [anon_sym___typeof__] = ACTIONS(1653), - [sym_id] = ACTIONS(1653), - [sym_instancetype] = ACTIONS(1653), - [sym_Class] = ACTIONS(1653), - [sym_SEL] = ACTIONS(1653), - [sym_IMP] = ACTIONS(1653), - [sym_BOOL] = ACTIONS(1653), - [sym_auto] = ACTIONS(1653), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2961] = { - [sym_identifier] = ACTIONS(1677), - [aux_sym_preproc_def_token1] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1679), - [anon_sym_PLUS] = ACTIONS(1679), - [anon_sym_typedef] = ACTIONS(1677), - [anon_sym_extern] = ACTIONS(1677), - [anon_sym___attribute] = ACTIONS(1677), - [anon_sym___attribute__] = ACTIONS(1677), - [anon_sym___declspec] = ACTIONS(1677), - [anon_sym___cdecl] = ACTIONS(1677), - [anon_sym___clrcall] = ACTIONS(1677), - [anon_sym___stdcall] = ACTIONS(1677), - [anon_sym___fastcall] = ACTIONS(1677), - [anon_sym___thiscall] = ACTIONS(1677), - [anon_sym___vectorcall] = ACTIONS(1677), - [anon_sym_static] = ACTIONS(1677), - [anon_sym_auto] = ACTIONS(1677), - [anon_sym_register] = ACTIONS(1677), - [anon_sym_inline] = ACTIONS(1677), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1677), - [anon_sym_const] = ACTIONS(1677), - [anon_sym_volatile] = ACTIONS(1677), - [anon_sym_restrict] = ACTIONS(1677), - [anon_sym__Atomic] = ACTIONS(1677), - [anon_sym_in] = ACTIONS(1677), - [anon_sym_out] = ACTIONS(1677), - [anon_sym_inout] = ACTIONS(1677), - [anon_sym_bycopy] = ACTIONS(1677), - [anon_sym_byref] = ACTIONS(1677), - [anon_sym_oneway] = ACTIONS(1677), - [anon_sym__Nullable] = ACTIONS(1677), - [anon_sym__Nonnull] = ACTIONS(1677), - [anon_sym__Nullable_result] = ACTIONS(1677), - [anon_sym__Null_unspecified] = ACTIONS(1677), - [anon_sym___autoreleasing] = ACTIONS(1677), - [anon_sym___nullable] = ACTIONS(1677), - [anon_sym___nonnull] = ACTIONS(1677), - [anon_sym___strong] = ACTIONS(1677), - [anon_sym___weak] = ACTIONS(1677), - [anon_sym___bridge] = ACTIONS(1677), - [anon_sym___bridge_transfer] = ACTIONS(1677), - [anon_sym___bridge_retained] = ACTIONS(1677), - [anon_sym___unsafe_unretained] = ACTIONS(1677), - [anon_sym___block] = ACTIONS(1677), - [anon_sym___kindof] = ACTIONS(1677), - [anon_sym___unused] = ACTIONS(1677), - [anon_sym__Complex] = ACTIONS(1677), - [anon_sym___complex] = ACTIONS(1677), - [anon_sym_IBOutlet] = ACTIONS(1677), - [anon_sym_IBInspectable] = ACTIONS(1677), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1677), - [anon_sym_signed] = ACTIONS(1677), - [anon_sym_unsigned] = ACTIONS(1677), - [anon_sym_long] = ACTIONS(1677), - [anon_sym_short] = ACTIONS(1677), - [sym_primitive_type] = ACTIONS(1677), - [anon_sym_enum] = ACTIONS(1677), - [anon_sym_NS_ENUM] = ACTIONS(1677), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1677), - [anon_sym_NS_OPTIONS] = ACTIONS(1677), - [anon_sym_struct] = ACTIONS(1677), - [anon_sym_union] = ACTIONS(1677), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1677), - [anon_sym_ATend] = ACTIONS(1679), - [sym_optional] = ACTIONS(1679), - [sym_required] = ACTIONS(1679), - [anon_sym_ATproperty] = ACTIONS(1679), - [sym_method_attribute_specifier] = ACTIONS(1677), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1677), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1677), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1677), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1677), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1677), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1677), - [anon_sym_NS_AVAILABLE] = ACTIONS(1677), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1677), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1677), - [anon_sym_API_AVAILABLE] = ACTIONS(1677), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1677), - [anon_sym_API_DEPRECATED] = ACTIONS(1677), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1677), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1677), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1677), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1677), - [anon_sym___deprecated_msg] = ACTIONS(1677), - [anon_sym___deprecated_enum_msg] = ACTIONS(1677), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1677), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1677), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1677), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1677), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1677), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1677), - [anon_sym_ATsynthesize] = ACTIONS(1679), - [anon_sym_ATdynamic] = ACTIONS(1679), - [anon_sym_typeof] = ACTIONS(1677), - [anon_sym___typeof] = ACTIONS(1677), - [anon_sym___typeof__] = ACTIONS(1677), - [sym_id] = ACTIONS(1677), - [sym_instancetype] = ACTIONS(1677), - [sym_Class] = ACTIONS(1677), - [sym_SEL] = ACTIONS(1677), - [sym_IMP] = ACTIONS(1677), - [sym_BOOL] = ACTIONS(1677), - [sym_auto] = ACTIONS(1677), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2962] = { - [sym_identifier] = ACTIONS(1673), - [aux_sym_preproc_def_token1] = ACTIONS(1675), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1675), - [anon_sym_typedef] = ACTIONS(1673), - [anon_sym_extern] = ACTIONS(1673), - [anon_sym___attribute] = ACTIONS(1673), - [anon_sym___attribute__] = ACTIONS(1673), - [anon_sym___declspec] = ACTIONS(1673), - [anon_sym___cdecl] = ACTIONS(1673), - [anon_sym___clrcall] = ACTIONS(1673), - [anon_sym___stdcall] = ACTIONS(1673), - [anon_sym___fastcall] = ACTIONS(1673), - [anon_sym___thiscall] = ACTIONS(1673), - [anon_sym___vectorcall] = ACTIONS(1673), - [anon_sym_static] = ACTIONS(1673), - [anon_sym_auto] = ACTIONS(1673), - [anon_sym_register] = ACTIONS(1673), - [anon_sym_inline] = ACTIONS(1673), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1673), - [anon_sym_const] = ACTIONS(1673), - [anon_sym_volatile] = ACTIONS(1673), - [anon_sym_restrict] = ACTIONS(1673), - [anon_sym__Atomic] = ACTIONS(1673), - [anon_sym_in] = ACTIONS(1673), - [anon_sym_out] = ACTIONS(1673), - [anon_sym_inout] = ACTIONS(1673), - [anon_sym_bycopy] = ACTIONS(1673), - [anon_sym_byref] = ACTIONS(1673), - [anon_sym_oneway] = ACTIONS(1673), - [anon_sym__Nullable] = ACTIONS(1673), - [anon_sym__Nonnull] = ACTIONS(1673), - [anon_sym__Nullable_result] = ACTIONS(1673), - [anon_sym__Null_unspecified] = ACTIONS(1673), - [anon_sym___autoreleasing] = ACTIONS(1673), - [anon_sym___nullable] = ACTIONS(1673), - [anon_sym___nonnull] = ACTIONS(1673), - [anon_sym___strong] = ACTIONS(1673), - [anon_sym___weak] = ACTIONS(1673), - [anon_sym___bridge] = ACTIONS(1673), - [anon_sym___bridge_transfer] = ACTIONS(1673), - [anon_sym___bridge_retained] = ACTIONS(1673), - [anon_sym___unsafe_unretained] = ACTIONS(1673), - [anon_sym___block] = ACTIONS(1673), - [anon_sym___kindof] = ACTIONS(1673), - [anon_sym___unused] = ACTIONS(1673), - [anon_sym__Complex] = ACTIONS(1673), - [anon_sym___complex] = ACTIONS(1673), - [anon_sym_IBOutlet] = ACTIONS(1673), - [anon_sym_IBInspectable] = ACTIONS(1673), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1673), - [anon_sym_signed] = ACTIONS(1673), - [anon_sym_unsigned] = ACTIONS(1673), - [anon_sym_long] = ACTIONS(1673), - [anon_sym_short] = ACTIONS(1673), - [sym_primitive_type] = ACTIONS(1673), - [anon_sym_enum] = ACTIONS(1673), - [anon_sym_NS_ENUM] = ACTIONS(1673), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1673), - [anon_sym_NS_OPTIONS] = ACTIONS(1673), - [anon_sym_struct] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1673), - [anon_sym_ATend] = ACTIONS(1675), - [sym_optional] = ACTIONS(1675), - [sym_required] = ACTIONS(1675), - [anon_sym_ATproperty] = ACTIONS(1675), - [sym_method_attribute_specifier] = ACTIONS(1673), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1673), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1673), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1673), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1673), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1673), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1673), - [anon_sym_NS_AVAILABLE] = ACTIONS(1673), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1673), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1673), - [anon_sym_API_AVAILABLE] = ACTIONS(1673), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1673), - [anon_sym_API_DEPRECATED] = ACTIONS(1673), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1673), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1673), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1673), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1673), - [anon_sym___deprecated_msg] = ACTIONS(1673), - [anon_sym___deprecated_enum_msg] = ACTIONS(1673), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1673), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1673), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1673), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1673), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1673), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1673), - [anon_sym_ATsynthesize] = ACTIONS(1675), - [anon_sym_ATdynamic] = ACTIONS(1675), - [anon_sym_typeof] = ACTIONS(1673), - [anon_sym___typeof] = ACTIONS(1673), - [anon_sym___typeof__] = ACTIONS(1673), - [sym_id] = ACTIONS(1673), - [sym_instancetype] = ACTIONS(1673), - [sym_Class] = ACTIONS(1673), - [sym_SEL] = ACTIONS(1673), - [sym_IMP] = ACTIONS(1673), - [sym_BOOL] = ACTIONS(1673), - [sym_auto] = ACTIONS(1673), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2963] = { + [2820] = { [sym_identifier] = ACTIONS(1649), [aux_sym_preproc_def_token1] = ACTIONS(1651), [anon_sym_DASH] = ACTIONS(1651), @@ -487162,9 +469324,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1649), [sym_primitive_type] = ACTIONS(1649), [anon_sym_enum] = ACTIONS(1649), - [anon_sym_NS_ENUM] = ACTIONS(1649), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1649), - [anon_sym_NS_OPTIONS] = ACTIONS(1649), [anon_sym_struct] = ACTIONS(1649), [anon_sym_union] = ACTIONS(1649), [sym_comment] = ACTIONS(3), @@ -487200,6 +469359,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_SWIFT_NAME] = ACTIONS(1649), [anon_sym_ATsynthesize] = ACTIONS(1651), [anon_sym_ATdynamic] = ACTIONS(1651), + [anon_sym_NS_ENUM] = ACTIONS(1649), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1649), + [anon_sym_NS_OPTIONS] = ACTIONS(1649), [anon_sym_typeof] = ACTIONS(1649), [anon_sym___typeof] = ACTIONS(1649), [anon_sym___typeof__] = ACTIONS(1649), @@ -487217,112 +469379,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2964] = { - [sym_identifier] = ACTIONS(1669), - [aux_sym_preproc_def_token1] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_typedef] = ACTIONS(1669), - [anon_sym_extern] = ACTIONS(1669), - [anon_sym___attribute] = ACTIONS(1669), - [anon_sym___attribute__] = ACTIONS(1669), - [anon_sym___declspec] = ACTIONS(1669), - [anon_sym___cdecl] = ACTIONS(1669), - [anon_sym___clrcall] = ACTIONS(1669), - [anon_sym___stdcall] = ACTIONS(1669), - [anon_sym___fastcall] = ACTIONS(1669), - [anon_sym___thiscall] = ACTIONS(1669), - [anon_sym___vectorcall] = ACTIONS(1669), - [anon_sym_static] = ACTIONS(1669), - [anon_sym_auto] = ACTIONS(1669), - [anon_sym_register] = ACTIONS(1669), - [anon_sym_inline] = ACTIONS(1669), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_volatile] = ACTIONS(1669), - [anon_sym_restrict] = ACTIONS(1669), - [anon_sym__Atomic] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_out] = ACTIONS(1669), - [anon_sym_inout] = ACTIONS(1669), - [anon_sym_bycopy] = ACTIONS(1669), - [anon_sym_byref] = ACTIONS(1669), - [anon_sym_oneway] = ACTIONS(1669), - [anon_sym__Nullable] = ACTIONS(1669), - [anon_sym__Nonnull] = ACTIONS(1669), - [anon_sym__Nullable_result] = ACTIONS(1669), - [anon_sym__Null_unspecified] = ACTIONS(1669), - [anon_sym___autoreleasing] = ACTIONS(1669), - [anon_sym___nullable] = ACTIONS(1669), - [anon_sym___nonnull] = ACTIONS(1669), - [anon_sym___strong] = ACTIONS(1669), - [anon_sym___weak] = ACTIONS(1669), - [anon_sym___bridge] = ACTIONS(1669), - [anon_sym___bridge_transfer] = ACTIONS(1669), - [anon_sym___bridge_retained] = ACTIONS(1669), - [anon_sym___unsafe_unretained] = ACTIONS(1669), - [anon_sym___block] = ACTIONS(1669), - [anon_sym___kindof] = ACTIONS(1669), - [anon_sym___unused] = ACTIONS(1669), - [anon_sym__Complex] = ACTIONS(1669), - [anon_sym___complex] = ACTIONS(1669), - [anon_sym_IBOutlet] = ACTIONS(1669), - [anon_sym_IBInspectable] = ACTIONS(1669), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1669), - [anon_sym_signed] = ACTIONS(1669), - [anon_sym_unsigned] = ACTIONS(1669), - [anon_sym_long] = ACTIONS(1669), - [anon_sym_short] = ACTIONS(1669), - [sym_primitive_type] = ACTIONS(1669), - [anon_sym_enum] = ACTIONS(1669), - [anon_sym_NS_ENUM] = ACTIONS(1669), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1669), - [anon_sym_NS_OPTIONS] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1669), - [anon_sym_union] = ACTIONS(1669), + [2821] = { + [sym_identifier] = ACTIONS(1653), + [aux_sym_preproc_def_token1] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_typedef] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym___attribute] = ACTIONS(1653), + [anon_sym___attribute__] = ACTIONS(1653), + [anon_sym___declspec] = ACTIONS(1653), + [anon_sym___cdecl] = ACTIONS(1653), + [anon_sym___clrcall] = ACTIONS(1653), + [anon_sym___stdcall] = ACTIONS(1653), + [anon_sym___fastcall] = ACTIONS(1653), + [anon_sym___thiscall] = ACTIONS(1653), + [anon_sym___vectorcall] = ACTIONS(1653), + [anon_sym_static] = ACTIONS(1653), + [anon_sym_auto] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_inline] = ACTIONS(1653), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_volatile] = ACTIONS(1653), + [anon_sym_restrict] = ACTIONS(1653), + [anon_sym__Atomic] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [anon_sym_out] = ACTIONS(1653), + [anon_sym_inout] = ACTIONS(1653), + [anon_sym_bycopy] = ACTIONS(1653), + [anon_sym_byref] = ACTIONS(1653), + [anon_sym_oneway] = ACTIONS(1653), + [anon_sym__Nullable] = ACTIONS(1653), + [anon_sym__Nonnull] = ACTIONS(1653), + [anon_sym__Nullable_result] = ACTIONS(1653), + [anon_sym__Null_unspecified] = ACTIONS(1653), + [anon_sym___autoreleasing] = ACTIONS(1653), + [anon_sym___nullable] = ACTIONS(1653), + [anon_sym___nonnull] = ACTIONS(1653), + [anon_sym___strong] = ACTIONS(1653), + [anon_sym___weak] = ACTIONS(1653), + [anon_sym___bridge] = ACTIONS(1653), + [anon_sym___bridge_transfer] = ACTIONS(1653), + [anon_sym___bridge_retained] = ACTIONS(1653), + [anon_sym___unsafe_unretained] = ACTIONS(1653), + [anon_sym___block] = ACTIONS(1653), + [anon_sym___kindof] = ACTIONS(1653), + [anon_sym___unused] = ACTIONS(1653), + [anon_sym__Complex] = ACTIONS(1653), + [anon_sym___complex] = ACTIONS(1653), + [anon_sym_IBOutlet] = ACTIONS(1653), + [anon_sym_IBInspectable] = ACTIONS(1653), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1653), + [anon_sym_signed] = ACTIONS(1653), + [anon_sym_unsigned] = ACTIONS(1653), + [anon_sym_long] = ACTIONS(1653), + [anon_sym_short] = ACTIONS(1653), + [sym_primitive_type] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1669), - [anon_sym_ATend] = ACTIONS(1671), - [sym_optional] = ACTIONS(1671), - [sym_required] = ACTIONS(1671), - [anon_sym_ATproperty] = ACTIONS(1671), - [sym_method_attribute_specifier] = ACTIONS(1669), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1669), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1669), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1669), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1669), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1669), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1669), - [anon_sym_NS_AVAILABLE] = ACTIONS(1669), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1669), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1669), - [anon_sym_API_AVAILABLE] = ACTIONS(1669), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1669), - [anon_sym_API_DEPRECATED] = ACTIONS(1669), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1669), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1669), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1669), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1669), - [anon_sym___deprecated_msg] = ACTIONS(1669), - [anon_sym___deprecated_enum_msg] = ACTIONS(1669), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1669), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1669), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1669), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1669), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1669), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1669), - [anon_sym_ATsynthesize] = ACTIONS(1671), - [anon_sym_ATdynamic] = ACTIONS(1671), - [anon_sym_typeof] = ACTIONS(1669), - [anon_sym___typeof] = ACTIONS(1669), - [anon_sym___typeof__] = ACTIONS(1669), - [sym_id] = ACTIONS(1669), - [sym_instancetype] = ACTIONS(1669), - [sym_Class] = ACTIONS(1669), - [sym_SEL] = ACTIONS(1669), - [sym_IMP] = ACTIONS(1669), - [sym_BOOL] = ACTIONS(1669), - [sym_auto] = ACTIONS(1669), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1653), + [anon_sym_ATend] = ACTIONS(1655), + [sym_optional] = ACTIONS(1655), + [sym_required] = ACTIONS(1655), + [anon_sym_ATproperty] = ACTIONS(1655), + [sym_method_attribute_specifier] = ACTIONS(1653), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1653), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE] = ACTIONS(1653), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_API_AVAILABLE] = ACTIONS(1653), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_API_DEPRECATED] = ACTIONS(1653), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1653), + [anon_sym___deprecated_msg] = ACTIONS(1653), + [anon_sym___deprecated_enum_msg] = ACTIONS(1653), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1653), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1653), + [anon_sym_ATsynthesize] = ACTIONS(1655), + [anon_sym_ATdynamic] = ACTIONS(1655), + [anon_sym_NS_ENUM] = ACTIONS(1653), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), + [anon_sym_NS_OPTIONS] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1653), + [anon_sym___typeof] = ACTIONS(1653), + [anon_sym___typeof__] = ACTIONS(1653), + [sym_id] = ACTIONS(1653), + [sym_instancetype] = ACTIONS(1653), + [sym_Class] = ACTIONS(1653), + [sym_SEL] = ACTIONS(1653), + [sym_IMP] = ACTIONS(1653), + [sym_BOOL] = ACTIONS(1653), + [sym_auto] = ACTIONS(1653), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -487330,109 +469492,1917 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2965] = { - [sym_type_qualifier] = STATE(3454), - [sym__expression] = STATE(4530), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_type_definition_repeat1] = STATE(3454), + [2822] = { + [sym_identifier] = ACTIONS(1653), + [aux_sym_preproc_def_token1] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_typedef] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym___attribute] = ACTIONS(1653), + [anon_sym___attribute__] = ACTIONS(1653), + [anon_sym___declspec] = ACTIONS(1653), + [anon_sym___cdecl] = ACTIONS(1653), + [anon_sym___clrcall] = ACTIONS(1653), + [anon_sym___stdcall] = ACTIONS(1653), + [anon_sym___fastcall] = ACTIONS(1653), + [anon_sym___thiscall] = ACTIONS(1653), + [anon_sym___vectorcall] = ACTIONS(1653), + [anon_sym_static] = ACTIONS(1653), + [anon_sym_auto] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_inline] = ACTIONS(1653), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_volatile] = ACTIONS(1653), + [anon_sym_restrict] = ACTIONS(1653), + [anon_sym__Atomic] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [anon_sym_out] = ACTIONS(1653), + [anon_sym_inout] = ACTIONS(1653), + [anon_sym_bycopy] = ACTIONS(1653), + [anon_sym_byref] = ACTIONS(1653), + [anon_sym_oneway] = ACTIONS(1653), + [anon_sym__Nullable] = ACTIONS(1653), + [anon_sym__Nonnull] = ACTIONS(1653), + [anon_sym__Nullable_result] = ACTIONS(1653), + [anon_sym__Null_unspecified] = ACTIONS(1653), + [anon_sym___autoreleasing] = ACTIONS(1653), + [anon_sym___nullable] = ACTIONS(1653), + [anon_sym___nonnull] = ACTIONS(1653), + [anon_sym___strong] = ACTIONS(1653), + [anon_sym___weak] = ACTIONS(1653), + [anon_sym___bridge] = ACTIONS(1653), + [anon_sym___bridge_transfer] = ACTIONS(1653), + [anon_sym___bridge_retained] = ACTIONS(1653), + [anon_sym___unsafe_unretained] = ACTIONS(1653), + [anon_sym___block] = ACTIONS(1653), + [anon_sym___kindof] = ACTIONS(1653), + [anon_sym___unused] = ACTIONS(1653), + [anon_sym__Complex] = ACTIONS(1653), + [anon_sym___complex] = ACTIONS(1653), + [anon_sym_IBOutlet] = ACTIONS(1653), + [anon_sym_IBInspectable] = ACTIONS(1653), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1653), + [anon_sym_signed] = ACTIONS(1653), + [anon_sym_unsigned] = ACTIONS(1653), + [anon_sym_long] = ACTIONS(1653), + [anon_sym_short] = ACTIONS(1653), + [sym_primitive_type] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1653), + [anon_sym_ATend] = ACTIONS(1655), + [sym_optional] = ACTIONS(1655), + [sym_required] = ACTIONS(1655), + [anon_sym_ATproperty] = ACTIONS(1655), + [sym_method_attribute_specifier] = ACTIONS(1653), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1653), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE] = ACTIONS(1653), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_API_AVAILABLE] = ACTIONS(1653), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_API_DEPRECATED] = ACTIONS(1653), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1653), + [anon_sym___deprecated_msg] = ACTIONS(1653), + [anon_sym___deprecated_enum_msg] = ACTIONS(1653), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1653), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1653), + [anon_sym_ATsynthesize] = ACTIONS(1655), + [anon_sym_ATdynamic] = ACTIONS(1655), + [anon_sym_NS_ENUM] = ACTIONS(1653), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), + [anon_sym_NS_OPTIONS] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1653), + [anon_sym___typeof] = ACTIONS(1653), + [anon_sym___typeof__] = ACTIONS(1653), + [sym_id] = ACTIONS(1653), + [sym_instancetype] = ACTIONS(1653), + [sym_Class] = ACTIONS(1653), + [sym_SEL] = ACTIONS(1653), + [sym_IMP] = ACTIONS(1653), + [sym_BOOL] = ACTIONS(1653), + [sym_auto] = ACTIONS(1653), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2823] = { + [sym_identifier] = ACTIONS(1649), + [aux_sym_preproc_def_token1] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_typedef] = ACTIONS(1649), + [anon_sym_extern] = ACTIONS(1649), + [anon_sym___attribute] = ACTIONS(1649), + [anon_sym___attribute__] = ACTIONS(1649), + [anon_sym___declspec] = ACTIONS(1649), + [anon_sym___cdecl] = ACTIONS(1649), + [anon_sym___clrcall] = ACTIONS(1649), + [anon_sym___stdcall] = ACTIONS(1649), + [anon_sym___fastcall] = ACTIONS(1649), + [anon_sym___thiscall] = ACTIONS(1649), + [anon_sym___vectorcall] = ACTIONS(1649), + [anon_sym_static] = ACTIONS(1649), + [anon_sym_auto] = ACTIONS(1649), + [anon_sym_register] = ACTIONS(1649), + [anon_sym_inline] = ACTIONS(1649), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1649), + [anon_sym_const] = ACTIONS(1649), + [anon_sym_volatile] = ACTIONS(1649), + [anon_sym_restrict] = ACTIONS(1649), + [anon_sym__Atomic] = ACTIONS(1649), + [anon_sym_in] = ACTIONS(1649), + [anon_sym_out] = ACTIONS(1649), + [anon_sym_inout] = ACTIONS(1649), + [anon_sym_bycopy] = ACTIONS(1649), + [anon_sym_byref] = ACTIONS(1649), + [anon_sym_oneway] = ACTIONS(1649), + [anon_sym__Nullable] = ACTIONS(1649), + [anon_sym__Nonnull] = ACTIONS(1649), + [anon_sym__Nullable_result] = ACTIONS(1649), + [anon_sym__Null_unspecified] = ACTIONS(1649), + [anon_sym___autoreleasing] = ACTIONS(1649), + [anon_sym___nullable] = ACTIONS(1649), + [anon_sym___nonnull] = ACTIONS(1649), + [anon_sym___strong] = ACTIONS(1649), + [anon_sym___weak] = ACTIONS(1649), + [anon_sym___bridge] = ACTIONS(1649), + [anon_sym___bridge_transfer] = ACTIONS(1649), + [anon_sym___bridge_retained] = ACTIONS(1649), + [anon_sym___unsafe_unretained] = ACTIONS(1649), + [anon_sym___block] = ACTIONS(1649), + [anon_sym___kindof] = ACTIONS(1649), + [anon_sym___unused] = ACTIONS(1649), + [anon_sym__Complex] = ACTIONS(1649), + [anon_sym___complex] = ACTIONS(1649), + [anon_sym_IBOutlet] = ACTIONS(1649), + [anon_sym_IBInspectable] = ACTIONS(1649), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1649), + [anon_sym_signed] = ACTIONS(1649), + [anon_sym_unsigned] = ACTIONS(1649), + [anon_sym_long] = ACTIONS(1649), + [anon_sym_short] = ACTIONS(1649), + [sym_primitive_type] = ACTIONS(1649), + [anon_sym_enum] = ACTIONS(1649), + [anon_sym_struct] = ACTIONS(1649), + [anon_sym_union] = ACTIONS(1649), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1649), + [anon_sym_ATend] = ACTIONS(1651), + [sym_optional] = ACTIONS(1651), + [sym_required] = ACTIONS(1651), + [anon_sym_ATproperty] = ACTIONS(1651), + [sym_method_attribute_specifier] = ACTIONS(1649), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1649), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1649), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1649), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1649), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1649), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1649), + [anon_sym_NS_AVAILABLE] = ACTIONS(1649), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1649), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_API_AVAILABLE] = ACTIONS(1649), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1649), + [anon_sym_API_DEPRECATED] = ACTIONS(1649), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1649), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1649), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1649), + [anon_sym___deprecated_msg] = ACTIONS(1649), + [anon_sym___deprecated_enum_msg] = ACTIONS(1649), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1649), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1649), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1649), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1649), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1649), + [anon_sym_ATsynthesize] = ACTIONS(1651), + [anon_sym_ATdynamic] = ACTIONS(1651), + [anon_sym_NS_ENUM] = ACTIONS(1649), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1649), + [anon_sym_NS_OPTIONS] = ACTIONS(1649), + [anon_sym_typeof] = ACTIONS(1649), + [anon_sym___typeof] = ACTIONS(1649), + [anon_sym___typeof__] = ACTIONS(1649), + [sym_id] = ACTIONS(1649), + [sym_instancetype] = ACTIONS(1649), + [sym_Class] = ACTIONS(1649), + [sym_SEL] = ACTIONS(1649), + [sym_IMP] = ACTIONS(1649), + [sym_BOOL] = ACTIONS(1649), + [sym_auto] = ACTIONS(1649), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2824] = { + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_def_token1] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_typedef] = ACTIONS(1563), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym___attribute] = ACTIONS(1563), + [anon_sym___attribute__] = ACTIONS(1563), + [anon_sym___declspec] = ACTIONS(1563), + [anon_sym___cdecl] = ACTIONS(1563), + [anon_sym___clrcall] = ACTIONS(1563), + [anon_sym___stdcall] = ACTIONS(1563), + [anon_sym___fastcall] = ACTIONS(1563), + [anon_sym___thiscall] = ACTIONS(1563), + [anon_sym___vectorcall] = ACTIONS(1563), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_auto] = ACTIONS(1563), + [anon_sym_register] = ACTIONS(1563), + [anon_sym_inline] = ACTIONS(1563), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_volatile] = ACTIONS(1563), + [anon_sym_restrict] = ACTIONS(1563), + [anon_sym__Atomic] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [anon_sym_out] = ACTIONS(1563), + [anon_sym_inout] = ACTIONS(1563), + [anon_sym_bycopy] = ACTIONS(1563), + [anon_sym_byref] = ACTIONS(1563), + [anon_sym_oneway] = ACTIONS(1563), + [anon_sym__Nullable] = ACTIONS(1563), + [anon_sym__Nonnull] = ACTIONS(1563), + [anon_sym__Nullable_result] = ACTIONS(1563), + [anon_sym__Null_unspecified] = ACTIONS(1563), + [anon_sym___autoreleasing] = ACTIONS(1563), + [anon_sym___nullable] = ACTIONS(1563), + [anon_sym___nonnull] = ACTIONS(1563), + [anon_sym___strong] = ACTIONS(1563), + [anon_sym___weak] = ACTIONS(1563), + [anon_sym___bridge] = ACTIONS(1563), + [anon_sym___bridge_transfer] = ACTIONS(1563), + [anon_sym___bridge_retained] = ACTIONS(1563), + [anon_sym___unsafe_unretained] = ACTIONS(1563), + [anon_sym___block] = ACTIONS(1563), + [anon_sym___kindof] = ACTIONS(1563), + [anon_sym___unused] = ACTIONS(1563), + [anon_sym__Complex] = ACTIONS(1563), + [anon_sym___complex] = ACTIONS(1563), + [anon_sym_IBOutlet] = ACTIONS(1563), + [anon_sym_IBInspectable] = ACTIONS(1563), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1563), + [anon_sym_signed] = ACTIONS(1563), + [anon_sym_unsigned] = ACTIONS(1563), + [anon_sym_long] = ACTIONS(1563), + [anon_sym_short] = ACTIONS(1563), + [sym_primitive_type] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1563), + [anon_sym_ATend] = ACTIONS(1561), + [sym_optional] = ACTIONS(1561), + [sym_required] = ACTIONS(1561), + [anon_sym_ATproperty] = ACTIONS(1561), + [sym_method_attribute_specifier] = ACTIONS(1563), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1563), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE] = ACTIONS(1563), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_API_AVAILABLE] = ACTIONS(1563), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_API_DEPRECATED] = ACTIONS(1563), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1563), + [anon_sym___deprecated_msg] = ACTIONS(1563), + [anon_sym___deprecated_enum_msg] = ACTIONS(1563), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1563), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1563), + [anon_sym_ATsynthesize] = ACTIONS(1561), + [anon_sym_ATdynamic] = ACTIONS(1561), + [anon_sym_NS_ENUM] = ACTIONS(1563), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1563), + [anon_sym_NS_OPTIONS] = ACTIONS(1563), + [anon_sym_typeof] = ACTIONS(1563), + [anon_sym___typeof] = ACTIONS(1563), + [anon_sym___typeof__] = ACTIONS(1563), + [sym_id] = ACTIONS(1563), + [sym_instancetype] = ACTIONS(1563), + [sym_Class] = ACTIONS(1563), + [sym_SEL] = ACTIONS(1563), + [sym_IMP] = ACTIONS(1563), + [sym_BOOL] = ACTIONS(1563), + [sym_auto] = ACTIONS(1563), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2825] = { + [sym_identifier] = ACTIONS(1653), + [aux_sym_preproc_def_token1] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_typedef] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym___attribute] = ACTIONS(1653), + [anon_sym___attribute__] = ACTIONS(1653), + [anon_sym___declspec] = ACTIONS(1653), + [anon_sym___cdecl] = ACTIONS(1653), + [anon_sym___clrcall] = ACTIONS(1653), + [anon_sym___stdcall] = ACTIONS(1653), + [anon_sym___fastcall] = ACTIONS(1653), + [anon_sym___thiscall] = ACTIONS(1653), + [anon_sym___vectorcall] = ACTIONS(1653), + [anon_sym_static] = ACTIONS(1653), + [anon_sym_auto] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_inline] = ACTIONS(1653), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_volatile] = ACTIONS(1653), + [anon_sym_restrict] = ACTIONS(1653), + [anon_sym__Atomic] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [anon_sym_out] = ACTIONS(1653), + [anon_sym_inout] = ACTIONS(1653), + [anon_sym_bycopy] = ACTIONS(1653), + [anon_sym_byref] = ACTIONS(1653), + [anon_sym_oneway] = ACTIONS(1653), + [anon_sym__Nullable] = ACTIONS(1653), + [anon_sym__Nonnull] = ACTIONS(1653), + [anon_sym__Nullable_result] = ACTIONS(1653), + [anon_sym__Null_unspecified] = ACTIONS(1653), + [anon_sym___autoreleasing] = ACTIONS(1653), + [anon_sym___nullable] = ACTIONS(1653), + [anon_sym___nonnull] = ACTIONS(1653), + [anon_sym___strong] = ACTIONS(1653), + [anon_sym___weak] = ACTIONS(1653), + [anon_sym___bridge] = ACTIONS(1653), + [anon_sym___bridge_transfer] = ACTIONS(1653), + [anon_sym___bridge_retained] = ACTIONS(1653), + [anon_sym___unsafe_unretained] = ACTIONS(1653), + [anon_sym___block] = ACTIONS(1653), + [anon_sym___kindof] = ACTIONS(1653), + [anon_sym___unused] = ACTIONS(1653), + [anon_sym__Complex] = ACTIONS(1653), + [anon_sym___complex] = ACTIONS(1653), + [anon_sym_IBOutlet] = ACTIONS(1653), + [anon_sym_IBInspectable] = ACTIONS(1653), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1653), + [anon_sym_signed] = ACTIONS(1653), + [anon_sym_unsigned] = ACTIONS(1653), + [anon_sym_long] = ACTIONS(1653), + [anon_sym_short] = ACTIONS(1653), + [sym_primitive_type] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1653), + [anon_sym_ATend] = ACTIONS(1655), + [sym_optional] = ACTIONS(1655), + [sym_required] = ACTIONS(1655), + [anon_sym_ATproperty] = ACTIONS(1655), + [sym_method_attribute_specifier] = ACTIONS(1653), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1653), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE] = ACTIONS(1653), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_API_AVAILABLE] = ACTIONS(1653), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_API_DEPRECATED] = ACTIONS(1653), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1653), + [anon_sym___deprecated_msg] = ACTIONS(1653), + [anon_sym___deprecated_enum_msg] = ACTIONS(1653), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1653), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1653), + [anon_sym_ATsynthesize] = ACTIONS(1655), + [anon_sym_ATdynamic] = ACTIONS(1655), + [anon_sym_NS_ENUM] = ACTIONS(1653), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), + [anon_sym_NS_OPTIONS] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1653), + [anon_sym___typeof] = ACTIONS(1653), + [anon_sym___typeof__] = ACTIONS(1653), + [sym_id] = ACTIONS(1653), + [sym_instancetype] = ACTIONS(1653), + [sym_Class] = ACTIONS(1653), + [sym_SEL] = ACTIONS(1653), + [sym_IMP] = ACTIONS(1653), + [sym_BOOL] = ACTIONS(1653), + [sym_auto] = ACTIONS(1653), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2826] = { + [sym__declaration_specifiers] = STATE(3909), + [sym_attribute_specifier] = STATE(2946), + [sym_ms_declspec_modifier] = STATE(2946), + [sym_storage_class_specifier] = STATE(2946), + [sym_type_qualifier] = STATE(2946), + [sym__type_specifier] = STATE(3346), + [sym_sized_type_specifier] = STATE(3346), + [sym_enum_specifier] = STATE(3346), + [sym_struct_specifier] = STATE(3346), + [sym_union_specifier] = STATE(3346), + [sym_macro_type_specifier] = STATE(3346), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3346), + [sym_typeof_specifier] = STATE(3346), + [sym_atomic_specifier] = STATE(3346), + [sym_generic_type_specifier] = STATE(3346), + [aux_sym__declaration_specifiers_repeat1] = STATE(2946), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(6803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(6803), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(6803), + [sym_IMP] = ACTIONS(6803), + [sym_BOOL] = ACTIONS(6803), + [sym_auto] = ACTIONS(6803), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2827] = { + [sym_identifier] = ACTIONS(1653), + [aux_sym_preproc_def_token1] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_typedef] = ACTIONS(1653), + [anon_sym_extern] = ACTIONS(1653), + [anon_sym___attribute] = ACTIONS(1653), + [anon_sym___attribute__] = ACTIONS(1653), + [anon_sym___declspec] = ACTIONS(1653), + [anon_sym___cdecl] = ACTIONS(1653), + [anon_sym___clrcall] = ACTIONS(1653), + [anon_sym___stdcall] = ACTIONS(1653), + [anon_sym___fastcall] = ACTIONS(1653), + [anon_sym___thiscall] = ACTIONS(1653), + [anon_sym___vectorcall] = ACTIONS(1653), + [anon_sym_static] = ACTIONS(1653), + [anon_sym_auto] = ACTIONS(1653), + [anon_sym_register] = ACTIONS(1653), + [anon_sym_inline] = ACTIONS(1653), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1653), + [anon_sym_volatile] = ACTIONS(1653), + [anon_sym_restrict] = ACTIONS(1653), + [anon_sym__Atomic] = ACTIONS(1653), + [anon_sym_in] = ACTIONS(1653), + [anon_sym_out] = ACTIONS(1653), + [anon_sym_inout] = ACTIONS(1653), + [anon_sym_bycopy] = ACTIONS(1653), + [anon_sym_byref] = ACTIONS(1653), + [anon_sym_oneway] = ACTIONS(1653), + [anon_sym__Nullable] = ACTIONS(1653), + [anon_sym__Nonnull] = ACTIONS(1653), + [anon_sym__Nullable_result] = ACTIONS(1653), + [anon_sym__Null_unspecified] = ACTIONS(1653), + [anon_sym___autoreleasing] = ACTIONS(1653), + [anon_sym___nullable] = ACTIONS(1653), + [anon_sym___nonnull] = ACTIONS(1653), + [anon_sym___strong] = ACTIONS(1653), + [anon_sym___weak] = ACTIONS(1653), + [anon_sym___bridge] = ACTIONS(1653), + [anon_sym___bridge_transfer] = ACTIONS(1653), + [anon_sym___bridge_retained] = ACTIONS(1653), + [anon_sym___unsafe_unretained] = ACTIONS(1653), + [anon_sym___block] = ACTIONS(1653), + [anon_sym___kindof] = ACTIONS(1653), + [anon_sym___unused] = ACTIONS(1653), + [anon_sym__Complex] = ACTIONS(1653), + [anon_sym___complex] = ACTIONS(1653), + [anon_sym_IBOutlet] = ACTIONS(1653), + [anon_sym_IBInspectable] = ACTIONS(1653), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1653), + [anon_sym_signed] = ACTIONS(1653), + [anon_sym_unsigned] = ACTIONS(1653), + [anon_sym_long] = ACTIONS(1653), + [anon_sym_short] = ACTIONS(1653), + [sym_primitive_type] = ACTIONS(1653), + [anon_sym_enum] = ACTIONS(1653), + [anon_sym_struct] = ACTIONS(1653), + [anon_sym_union] = ACTIONS(1653), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1653), + [anon_sym_ATend] = ACTIONS(1655), + [sym_optional] = ACTIONS(1655), + [sym_required] = ACTIONS(1655), + [anon_sym_ATproperty] = ACTIONS(1655), + [sym_method_attribute_specifier] = ACTIONS(1653), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1653), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1653), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE] = ACTIONS(1653), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1653), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_API_AVAILABLE] = ACTIONS(1653), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_API_DEPRECATED] = ACTIONS(1653), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1653), + [anon_sym___deprecated_msg] = ACTIONS(1653), + [anon_sym___deprecated_enum_msg] = ACTIONS(1653), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1653), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1653), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1653), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1653), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1653), + [anon_sym_ATsynthesize] = ACTIONS(1655), + [anon_sym_ATdynamic] = ACTIONS(1655), + [anon_sym_NS_ENUM] = ACTIONS(1653), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1653), + [anon_sym_NS_OPTIONS] = ACTIONS(1653), + [anon_sym_typeof] = ACTIONS(1653), + [anon_sym___typeof] = ACTIONS(1653), + [anon_sym___typeof__] = ACTIONS(1653), + [sym_id] = ACTIONS(1653), + [sym_instancetype] = ACTIONS(1653), + [sym_Class] = ACTIONS(1653), + [sym_SEL] = ACTIONS(1653), + [sym_IMP] = ACTIONS(1653), + [sym_BOOL] = ACTIONS(1653), + [sym_auto] = ACTIONS(1653), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2828] = { + [sym_identifier] = ACTIONS(1639), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1639), + [anon_sym___cdecl] = ACTIONS(1639), + [anon_sym___clrcall] = ACTIONS(1639), + [anon_sym___stdcall] = ACTIONS(1639), + [anon_sym___fastcall] = ACTIONS(1639), + [anon_sym___thiscall] = ACTIONS(1639), + [anon_sym___vectorcall] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_auto] = ACTIONS(1639), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_inline] = ACTIONS(1639), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1639), + [anon_sym_restrict] = ACTIONS(1639), + [anon_sym__Atomic] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [anon_sym_out] = ACTIONS(1639), + [anon_sym_inout] = ACTIONS(1639), + [anon_sym_bycopy] = ACTIONS(1639), + [anon_sym_byref] = ACTIONS(1639), + [anon_sym_oneway] = ACTIONS(1639), + [anon_sym__Nullable] = ACTIONS(1639), + [anon_sym__Nonnull] = ACTIONS(1639), + [anon_sym__Nullable_result] = ACTIONS(1639), + [anon_sym__Null_unspecified] = ACTIONS(1639), + [anon_sym___autoreleasing] = ACTIONS(1639), + [anon_sym___nullable] = ACTIONS(1639), + [anon_sym___nonnull] = ACTIONS(1639), + [anon_sym___strong] = ACTIONS(1639), + [anon_sym___weak] = ACTIONS(1639), + [anon_sym___bridge] = ACTIONS(1639), + [anon_sym___bridge_transfer] = ACTIONS(1639), + [anon_sym___bridge_retained] = ACTIONS(1639), + [anon_sym___unsafe_unretained] = ACTIONS(1639), + [anon_sym___block] = ACTIONS(1639), + [anon_sym___kindof] = ACTIONS(1639), + [anon_sym___unused] = ACTIONS(1639), + [anon_sym__Complex] = ACTIONS(1639), + [anon_sym___complex] = ACTIONS(1639), + [anon_sym_IBOutlet] = ACTIONS(1639), + [anon_sym_IBInspectable] = ACTIONS(1639), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1639), + [anon_sym_unsigned] = ACTIONS(1639), + [anon_sym_long] = ACTIONS(1639), + [anon_sym_short] = ACTIONS(1639), + [sym_primitive_type] = ACTIONS(1639), + [anon_sym_enum] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1639), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1639), + [anon_sym_ATend] = ACTIONS(1637), + [sym_optional] = ACTIONS(1637), + [sym_required] = ACTIONS(1637), + [anon_sym_ATproperty] = ACTIONS(1637), + [sym_method_attribute_specifier] = ACTIONS(1639), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1639), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE] = ACTIONS(1639), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_API_AVAILABLE] = ACTIONS(1639), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_API_DEPRECATED] = ACTIONS(1639), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1639), + [anon_sym___deprecated_msg] = ACTIONS(1639), + [anon_sym___deprecated_enum_msg] = ACTIONS(1639), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1639), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1639), + [anon_sym_ATsynthesize] = ACTIONS(1637), + [anon_sym_ATdynamic] = ACTIONS(1637), + [anon_sym_NS_ENUM] = ACTIONS(1639), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1639), + [anon_sym_NS_OPTIONS] = ACTIONS(1639), + [anon_sym_typeof] = ACTIONS(1639), + [anon_sym___typeof] = ACTIONS(1639), + [anon_sym___typeof__] = ACTIONS(1639), + [sym_id] = ACTIONS(1639), + [sym_instancetype] = ACTIONS(1639), + [sym_Class] = ACTIONS(1639), + [sym_SEL] = ACTIONS(1639), + [sym_IMP] = ACTIONS(1639), + [sym_BOOL] = ACTIONS(1639), + [sym_auto] = ACTIONS(1639), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2829] = { + [sym_identifier] = ACTIONS(1521), + [aux_sym_preproc_def_token1] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_typedef] = ACTIONS(1521), + [anon_sym_extern] = ACTIONS(1521), + [anon_sym___attribute] = ACTIONS(1521), + [anon_sym___attribute__] = ACTIONS(1521), + [anon_sym___declspec] = ACTIONS(1521), + [anon_sym___cdecl] = ACTIONS(1521), + [anon_sym___clrcall] = ACTIONS(1521), + [anon_sym___stdcall] = ACTIONS(1521), + [anon_sym___fastcall] = ACTIONS(1521), + [anon_sym___thiscall] = ACTIONS(1521), + [anon_sym___vectorcall] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_auto] = ACTIONS(1521), + [anon_sym_register] = ACTIONS(1521), + [anon_sym_inline] = ACTIONS(1521), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_volatile] = ACTIONS(1521), + [anon_sym_restrict] = ACTIONS(1521), + [anon_sym__Atomic] = ACTIONS(1521), + [anon_sym_in] = ACTIONS(1521), + [anon_sym_out] = ACTIONS(1521), + [anon_sym_inout] = ACTIONS(1521), + [anon_sym_bycopy] = ACTIONS(1521), + [anon_sym_byref] = ACTIONS(1521), + [anon_sym_oneway] = ACTIONS(1521), + [anon_sym__Nullable] = ACTIONS(1521), + [anon_sym__Nonnull] = ACTIONS(1521), + [anon_sym__Nullable_result] = ACTIONS(1521), + [anon_sym__Null_unspecified] = ACTIONS(1521), + [anon_sym___autoreleasing] = ACTIONS(1521), + [anon_sym___nullable] = ACTIONS(1521), + [anon_sym___nonnull] = ACTIONS(1521), + [anon_sym___strong] = ACTIONS(1521), + [anon_sym___weak] = ACTIONS(1521), + [anon_sym___bridge] = ACTIONS(1521), + [anon_sym___bridge_transfer] = ACTIONS(1521), + [anon_sym___bridge_retained] = ACTIONS(1521), + [anon_sym___unsafe_unretained] = ACTIONS(1521), + [anon_sym___block] = ACTIONS(1521), + [anon_sym___kindof] = ACTIONS(1521), + [anon_sym___unused] = ACTIONS(1521), + [anon_sym__Complex] = ACTIONS(1521), + [anon_sym___complex] = ACTIONS(1521), + [anon_sym_IBOutlet] = ACTIONS(1521), + [anon_sym_IBInspectable] = ACTIONS(1521), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1521), + [anon_sym_signed] = ACTIONS(1521), + [anon_sym_unsigned] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [sym_primitive_type] = ACTIONS(1521), + [anon_sym_enum] = ACTIONS(1521), + [anon_sym_struct] = ACTIONS(1521), + [anon_sym_union] = ACTIONS(1521), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1521), + [anon_sym_ATend] = ACTIONS(1519), + [sym_optional] = ACTIONS(1519), + [sym_required] = ACTIONS(1519), + [anon_sym_ATproperty] = ACTIONS(1519), + [sym_method_attribute_specifier] = ACTIONS(1521), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1521), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1521), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1521), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1521), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1521), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1521), + [anon_sym_NS_AVAILABLE] = ACTIONS(1521), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1521), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1521), + [anon_sym_API_AVAILABLE] = ACTIONS(1521), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1521), + [anon_sym_API_DEPRECATED] = ACTIONS(1521), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1521), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1521), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1521), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1521), + [anon_sym___deprecated_msg] = ACTIONS(1521), + [anon_sym___deprecated_enum_msg] = ACTIONS(1521), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1521), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1521), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1521), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1521), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1521), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1521), + [anon_sym_ATsynthesize] = ACTIONS(1519), + [anon_sym_ATdynamic] = ACTIONS(1519), + [anon_sym_NS_ENUM] = ACTIONS(1521), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1521), + [anon_sym_NS_OPTIONS] = ACTIONS(1521), + [anon_sym_typeof] = ACTIONS(1521), + [anon_sym___typeof] = ACTIONS(1521), + [anon_sym___typeof__] = ACTIONS(1521), + [sym_id] = ACTIONS(1521), + [sym_instancetype] = ACTIONS(1521), + [sym_Class] = ACTIONS(1521), + [sym_SEL] = ACTIONS(1521), + [sym_IMP] = ACTIONS(1521), + [sym_BOOL] = ACTIONS(1521), + [sym_auto] = ACTIONS(1521), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2830] = { + [sym_identifier] = ACTIONS(1517), + [aux_sym_preproc_def_token1] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1515), + [anon_sym_PLUS] = ACTIONS(1515), + [anon_sym_typedef] = ACTIONS(1517), + [anon_sym_extern] = ACTIONS(1517), + [anon_sym___attribute] = ACTIONS(1517), + [anon_sym___attribute__] = ACTIONS(1517), + [anon_sym___declspec] = ACTIONS(1517), + [anon_sym___cdecl] = ACTIONS(1517), + [anon_sym___clrcall] = ACTIONS(1517), + [anon_sym___stdcall] = ACTIONS(1517), + [anon_sym___fastcall] = ACTIONS(1517), + [anon_sym___thiscall] = ACTIONS(1517), + [anon_sym___vectorcall] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_auto] = ACTIONS(1517), + [anon_sym_register] = ACTIONS(1517), + [anon_sym_inline] = ACTIONS(1517), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_volatile] = ACTIONS(1517), + [anon_sym_restrict] = ACTIONS(1517), + [anon_sym__Atomic] = ACTIONS(1517), + [anon_sym_in] = ACTIONS(1517), + [anon_sym_out] = ACTIONS(1517), + [anon_sym_inout] = ACTIONS(1517), + [anon_sym_bycopy] = ACTIONS(1517), + [anon_sym_byref] = ACTIONS(1517), + [anon_sym_oneway] = ACTIONS(1517), + [anon_sym__Nullable] = ACTIONS(1517), + [anon_sym__Nonnull] = ACTIONS(1517), + [anon_sym__Nullable_result] = ACTIONS(1517), + [anon_sym__Null_unspecified] = ACTIONS(1517), + [anon_sym___autoreleasing] = ACTIONS(1517), + [anon_sym___nullable] = ACTIONS(1517), + [anon_sym___nonnull] = ACTIONS(1517), + [anon_sym___strong] = ACTIONS(1517), + [anon_sym___weak] = ACTIONS(1517), + [anon_sym___bridge] = ACTIONS(1517), + [anon_sym___bridge_transfer] = ACTIONS(1517), + [anon_sym___bridge_retained] = ACTIONS(1517), + [anon_sym___unsafe_unretained] = ACTIONS(1517), + [anon_sym___block] = ACTIONS(1517), + [anon_sym___kindof] = ACTIONS(1517), + [anon_sym___unused] = ACTIONS(1517), + [anon_sym__Complex] = ACTIONS(1517), + [anon_sym___complex] = ACTIONS(1517), + [anon_sym_IBOutlet] = ACTIONS(1517), + [anon_sym_IBInspectable] = ACTIONS(1517), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1517), + [anon_sym_signed] = ACTIONS(1517), + [anon_sym_unsigned] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [sym_primitive_type] = ACTIONS(1517), + [anon_sym_enum] = ACTIONS(1517), + [anon_sym_struct] = ACTIONS(1517), + [anon_sym_union] = ACTIONS(1517), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1517), + [anon_sym_ATend] = ACTIONS(1515), + [sym_optional] = ACTIONS(1515), + [sym_required] = ACTIONS(1515), + [anon_sym_ATproperty] = ACTIONS(1515), + [sym_method_attribute_specifier] = ACTIONS(1517), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1517), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1517), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1517), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1517), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1517), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1517), + [anon_sym_NS_AVAILABLE] = ACTIONS(1517), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1517), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1517), + [anon_sym_API_AVAILABLE] = ACTIONS(1517), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1517), + [anon_sym_API_DEPRECATED] = ACTIONS(1517), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1517), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1517), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1517), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1517), + [anon_sym___deprecated_msg] = ACTIONS(1517), + [anon_sym___deprecated_enum_msg] = ACTIONS(1517), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1517), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1517), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1517), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1517), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1517), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1517), + [anon_sym_ATsynthesize] = ACTIONS(1515), + [anon_sym_ATdynamic] = ACTIONS(1515), + [anon_sym_NS_ENUM] = ACTIONS(1517), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1517), + [anon_sym_NS_OPTIONS] = ACTIONS(1517), + [anon_sym_typeof] = ACTIONS(1517), + [anon_sym___typeof] = ACTIONS(1517), + [anon_sym___typeof__] = ACTIONS(1517), + [sym_id] = ACTIONS(1517), + [sym_instancetype] = ACTIONS(1517), + [sym_Class] = ACTIONS(1517), + [sym_SEL] = ACTIONS(1517), + [sym_IMP] = ACTIONS(1517), + [sym_BOOL] = ACTIONS(1517), + [sym_auto] = ACTIONS(1517), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2831] = { + [sym_identifier] = ACTIONS(1513), + [aux_sym_preproc_def_token1] = ACTIONS(1511), + [anon_sym_DASH] = ACTIONS(1511), + [anon_sym_PLUS] = ACTIONS(1511), + [anon_sym_typedef] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [anon_sym___attribute] = ACTIONS(1513), + [anon_sym___attribute__] = ACTIONS(1513), + [anon_sym___declspec] = ACTIONS(1513), + [anon_sym___cdecl] = ACTIONS(1513), + [anon_sym___clrcall] = ACTIONS(1513), + [anon_sym___stdcall] = ACTIONS(1513), + [anon_sym___fastcall] = ACTIONS(1513), + [anon_sym___thiscall] = ACTIONS(1513), + [anon_sym___vectorcall] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_auto] = ACTIONS(1513), + [anon_sym_register] = ACTIONS(1513), + [anon_sym_inline] = ACTIONS(1513), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_volatile] = ACTIONS(1513), + [anon_sym_restrict] = ACTIONS(1513), + [anon_sym__Atomic] = ACTIONS(1513), + [anon_sym_in] = ACTIONS(1513), + [anon_sym_out] = ACTIONS(1513), + [anon_sym_inout] = ACTIONS(1513), + [anon_sym_bycopy] = ACTIONS(1513), + [anon_sym_byref] = ACTIONS(1513), + [anon_sym_oneway] = ACTIONS(1513), + [anon_sym__Nullable] = ACTIONS(1513), + [anon_sym__Nonnull] = ACTIONS(1513), + [anon_sym__Nullable_result] = ACTIONS(1513), + [anon_sym__Null_unspecified] = ACTIONS(1513), + [anon_sym___autoreleasing] = ACTIONS(1513), + [anon_sym___nullable] = ACTIONS(1513), + [anon_sym___nonnull] = ACTIONS(1513), + [anon_sym___strong] = ACTIONS(1513), + [anon_sym___weak] = ACTIONS(1513), + [anon_sym___bridge] = ACTIONS(1513), + [anon_sym___bridge_transfer] = ACTIONS(1513), + [anon_sym___bridge_retained] = ACTIONS(1513), + [anon_sym___unsafe_unretained] = ACTIONS(1513), + [anon_sym___block] = ACTIONS(1513), + [anon_sym___kindof] = ACTIONS(1513), + [anon_sym___unused] = ACTIONS(1513), + [anon_sym__Complex] = ACTIONS(1513), + [anon_sym___complex] = ACTIONS(1513), + [anon_sym_IBOutlet] = ACTIONS(1513), + [anon_sym_IBInspectable] = ACTIONS(1513), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1513), + [anon_sym_signed] = ACTIONS(1513), + [anon_sym_unsigned] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [sym_primitive_type] = ACTIONS(1513), + [anon_sym_enum] = ACTIONS(1513), + [anon_sym_struct] = ACTIONS(1513), + [anon_sym_union] = ACTIONS(1513), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1513), + [anon_sym_ATend] = ACTIONS(1511), + [sym_optional] = ACTIONS(1511), + [sym_required] = ACTIONS(1511), + [anon_sym_ATproperty] = ACTIONS(1511), + [sym_method_attribute_specifier] = ACTIONS(1513), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1513), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1513), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1513), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1513), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1513), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1513), + [anon_sym_NS_AVAILABLE] = ACTIONS(1513), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1513), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1513), + [anon_sym_API_AVAILABLE] = ACTIONS(1513), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1513), + [anon_sym_API_DEPRECATED] = ACTIONS(1513), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1513), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1513), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1513), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1513), + [anon_sym___deprecated_msg] = ACTIONS(1513), + [anon_sym___deprecated_enum_msg] = ACTIONS(1513), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1513), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1513), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1513), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1513), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1513), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1513), + [anon_sym_ATsynthesize] = ACTIONS(1511), + [anon_sym_ATdynamic] = ACTIONS(1511), + [anon_sym_NS_ENUM] = ACTIONS(1513), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1513), + [anon_sym_NS_OPTIONS] = ACTIONS(1513), + [anon_sym_typeof] = ACTIONS(1513), + [anon_sym___typeof] = ACTIONS(1513), + [anon_sym___typeof__] = ACTIONS(1513), + [sym_id] = ACTIONS(1513), + [sym_instancetype] = ACTIONS(1513), + [sym_Class] = ACTIONS(1513), + [sym_SEL] = ACTIONS(1513), + [sym_IMP] = ACTIONS(1513), + [sym_BOOL] = ACTIONS(1513), + [sym_auto] = ACTIONS(1513), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2832] = { + [sym_identifier] = ACTIONS(1509), + [aux_sym_preproc_def_token1] = ACTIONS(1507), + [anon_sym_DASH] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1507), + [anon_sym_typedef] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1509), + [anon_sym___attribute] = ACTIONS(1509), + [anon_sym___attribute__] = ACTIONS(1509), + [anon_sym___declspec] = ACTIONS(1509), + [anon_sym___cdecl] = ACTIONS(1509), + [anon_sym___clrcall] = ACTIONS(1509), + [anon_sym___stdcall] = ACTIONS(1509), + [anon_sym___fastcall] = ACTIONS(1509), + [anon_sym___thiscall] = ACTIONS(1509), + [anon_sym___vectorcall] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_auto] = ACTIONS(1509), + [anon_sym_register] = ACTIONS(1509), + [anon_sym_inline] = ACTIONS(1509), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_volatile] = ACTIONS(1509), + [anon_sym_restrict] = ACTIONS(1509), + [anon_sym__Atomic] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1509), + [anon_sym_out] = ACTIONS(1509), + [anon_sym_inout] = ACTIONS(1509), + [anon_sym_bycopy] = ACTIONS(1509), + [anon_sym_byref] = ACTIONS(1509), + [anon_sym_oneway] = ACTIONS(1509), + [anon_sym__Nullable] = ACTIONS(1509), + [anon_sym__Nonnull] = ACTIONS(1509), + [anon_sym__Nullable_result] = ACTIONS(1509), + [anon_sym__Null_unspecified] = ACTIONS(1509), + [anon_sym___autoreleasing] = ACTIONS(1509), + [anon_sym___nullable] = ACTIONS(1509), + [anon_sym___nonnull] = ACTIONS(1509), + [anon_sym___strong] = ACTIONS(1509), + [anon_sym___weak] = ACTIONS(1509), + [anon_sym___bridge] = ACTIONS(1509), + [anon_sym___bridge_transfer] = ACTIONS(1509), + [anon_sym___bridge_retained] = ACTIONS(1509), + [anon_sym___unsafe_unretained] = ACTIONS(1509), + [anon_sym___block] = ACTIONS(1509), + [anon_sym___kindof] = ACTIONS(1509), + [anon_sym___unused] = ACTIONS(1509), + [anon_sym__Complex] = ACTIONS(1509), + [anon_sym___complex] = ACTIONS(1509), + [anon_sym_IBOutlet] = ACTIONS(1509), + [anon_sym_IBInspectable] = ACTIONS(1509), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1509), + [anon_sym_signed] = ACTIONS(1509), + [anon_sym_unsigned] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [sym_primitive_type] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1509), + [anon_sym_ATend] = ACTIONS(1507), + [sym_optional] = ACTIONS(1507), + [sym_required] = ACTIONS(1507), + [anon_sym_ATproperty] = ACTIONS(1507), + [sym_method_attribute_specifier] = ACTIONS(1509), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1509), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1509), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1509), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1509), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1509), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1509), + [anon_sym_NS_AVAILABLE] = ACTIONS(1509), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1509), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1509), + [anon_sym_API_AVAILABLE] = ACTIONS(1509), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1509), + [anon_sym_API_DEPRECATED] = ACTIONS(1509), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1509), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1509), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1509), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1509), + [anon_sym___deprecated_msg] = ACTIONS(1509), + [anon_sym___deprecated_enum_msg] = ACTIONS(1509), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1509), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1509), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1509), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1509), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1509), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1509), + [anon_sym_ATsynthesize] = ACTIONS(1507), + [anon_sym_ATdynamic] = ACTIONS(1507), + [anon_sym_NS_ENUM] = ACTIONS(1509), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1509), + [anon_sym_NS_OPTIONS] = ACTIONS(1509), + [anon_sym_typeof] = ACTIONS(1509), + [anon_sym___typeof] = ACTIONS(1509), + [anon_sym___typeof__] = ACTIONS(1509), + [sym_id] = ACTIONS(1509), + [sym_instancetype] = ACTIONS(1509), + [sym_Class] = ACTIONS(1509), + [sym_SEL] = ACTIONS(1509), + [sym_IMP] = ACTIONS(1509), + [sym_BOOL] = ACTIONS(1509), + [sym_auto] = ACTIONS(1509), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2833] = { + [sym_identifier] = ACTIONS(1497), + [aux_sym_preproc_def_token1] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1495), + [anon_sym_typedef] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(1497), + [anon_sym___attribute] = ACTIONS(1497), + [anon_sym___attribute__] = ACTIONS(1497), + [anon_sym___declspec] = ACTIONS(1497), + [anon_sym___cdecl] = ACTIONS(1497), + [anon_sym___clrcall] = ACTIONS(1497), + [anon_sym___stdcall] = ACTIONS(1497), + [anon_sym___fastcall] = ACTIONS(1497), + [anon_sym___thiscall] = ACTIONS(1497), + [anon_sym___vectorcall] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_auto] = ACTIONS(1497), + [anon_sym_register] = ACTIONS(1497), + [anon_sym_inline] = ACTIONS(1497), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_volatile] = ACTIONS(1497), + [anon_sym_restrict] = ACTIONS(1497), + [anon_sym__Atomic] = ACTIONS(1497), + [anon_sym_in] = ACTIONS(1497), + [anon_sym_out] = ACTIONS(1497), + [anon_sym_inout] = ACTIONS(1497), + [anon_sym_bycopy] = ACTIONS(1497), + [anon_sym_byref] = ACTIONS(1497), + [anon_sym_oneway] = ACTIONS(1497), + [anon_sym__Nullable] = ACTIONS(1497), + [anon_sym__Nonnull] = ACTIONS(1497), + [anon_sym__Nullable_result] = ACTIONS(1497), + [anon_sym__Null_unspecified] = ACTIONS(1497), + [anon_sym___autoreleasing] = ACTIONS(1497), + [anon_sym___nullable] = ACTIONS(1497), + [anon_sym___nonnull] = ACTIONS(1497), + [anon_sym___strong] = ACTIONS(1497), + [anon_sym___weak] = ACTIONS(1497), + [anon_sym___bridge] = ACTIONS(1497), + [anon_sym___bridge_transfer] = ACTIONS(1497), + [anon_sym___bridge_retained] = ACTIONS(1497), + [anon_sym___unsafe_unretained] = ACTIONS(1497), + [anon_sym___block] = ACTIONS(1497), + [anon_sym___kindof] = ACTIONS(1497), + [anon_sym___unused] = ACTIONS(1497), + [anon_sym__Complex] = ACTIONS(1497), + [anon_sym___complex] = ACTIONS(1497), + [anon_sym_IBOutlet] = ACTIONS(1497), + [anon_sym_IBInspectable] = ACTIONS(1497), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1497), + [anon_sym_signed] = ACTIONS(1497), + [anon_sym_unsigned] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [sym_primitive_type] = ACTIONS(1497), + [anon_sym_enum] = ACTIONS(1497), + [anon_sym_struct] = ACTIONS(1497), + [anon_sym_union] = ACTIONS(1497), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1497), + [anon_sym_ATend] = ACTIONS(1495), + [sym_optional] = ACTIONS(1495), + [sym_required] = ACTIONS(1495), + [anon_sym_ATproperty] = ACTIONS(1495), + [sym_method_attribute_specifier] = ACTIONS(1497), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1497), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1497), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1497), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1497), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1497), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1497), + [anon_sym_NS_AVAILABLE] = ACTIONS(1497), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1497), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1497), + [anon_sym_API_AVAILABLE] = ACTIONS(1497), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1497), + [anon_sym_API_DEPRECATED] = ACTIONS(1497), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1497), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1497), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1497), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1497), + [anon_sym___deprecated_msg] = ACTIONS(1497), + [anon_sym___deprecated_enum_msg] = ACTIONS(1497), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1497), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1497), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1497), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1497), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1497), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1497), + [anon_sym_ATsynthesize] = ACTIONS(1495), + [anon_sym_ATdynamic] = ACTIONS(1495), + [anon_sym_NS_ENUM] = ACTIONS(1497), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1497), + [anon_sym_NS_OPTIONS] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1497), + [anon_sym___typeof] = ACTIONS(1497), + [anon_sym___typeof__] = ACTIONS(1497), + [sym_id] = ACTIONS(1497), + [sym_instancetype] = ACTIONS(1497), + [sym_Class] = ACTIONS(1497), + [sym_SEL] = ACTIONS(1497), + [sym_IMP] = ACTIONS(1497), + [sym_BOOL] = ACTIONS(1497), + [sym_auto] = ACTIONS(1497), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2834] = { + [sym_identifier] = ACTIONS(1493), + [aux_sym_preproc_def_token1] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_typedef] = ACTIONS(1493), + [anon_sym_extern] = ACTIONS(1493), + [anon_sym___attribute] = ACTIONS(1493), + [anon_sym___attribute__] = ACTIONS(1493), + [anon_sym___declspec] = ACTIONS(1493), + [anon_sym___cdecl] = ACTIONS(1493), + [anon_sym___clrcall] = ACTIONS(1493), + [anon_sym___stdcall] = ACTIONS(1493), + [anon_sym___fastcall] = ACTIONS(1493), + [anon_sym___thiscall] = ACTIONS(1493), + [anon_sym___vectorcall] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_auto] = ACTIONS(1493), + [anon_sym_register] = ACTIONS(1493), + [anon_sym_inline] = ACTIONS(1493), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_volatile] = ACTIONS(1493), + [anon_sym_restrict] = ACTIONS(1493), + [anon_sym__Atomic] = ACTIONS(1493), + [anon_sym_in] = ACTIONS(1493), + [anon_sym_out] = ACTIONS(1493), + [anon_sym_inout] = ACTIONS(1493), + [anon_sym_bycopy] = ACTIONS(1493), + [anon_sym_byref] = ACTIONS(1493), + [anon_sym_oneway] = ACTIONS(1493), + [anon_sym__Nullable] = ACTIONS(1493), + [anon_sym__Nonnull] = ACTIONS(1493), + [anon_sym__Nullable_result] = ACTIONS(1493), + [anon_sym__Null_unspecified] = ACTIONS(1493), + [anon_sym___autoreleasing] = ACTIONS(1493), + [anon_sym___nullable] = ACTIONS(1493), + [anon_sym___nonnull] = ACTIONS(1493), + [anon_sym___strong] = ACTIONS(1493), + [anon_sym___weak] = ACTIONS(1493), + [anon_sym___bridge] = ACTIONS(1493), + [anon_sym___bridge_transfer] = ACTIONS(1493), + [anon_sym___bridge_retained] = ACTIONS(1493), + [anon_sym___unsafe_unretained] = ACTIONS(1493), + [anon_sym___block] = ACTIONS(1493), + [anon_sym___kindof] = ACTIONS(1493), + [anon_sym___unused] = ACTIONS(1493), + [anon_sym__Complex] = ACTIONS(1493), + [anon_sym___complex] = ACTIONS(1493), + [anon_sym_IBOutlet] = ACTIONS(1493), + [anon_sym_IBInspectable] = ACTIONS(1493), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1493), + [anon_sym_signed] = ACTIONS(1493), + [anon_sym_unsigned] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [sym_primitive_type] = ACTIONS(1493), + [anon_sym_enum] = ACTIONS(1493), + [anon_sym_struct] = ACTIONS(1493), + [anon_sym_union] = ACTIONS(1493), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1493), + [anon_sym_ATend] = ACTIONS(1491), + [sym_optional] = ACTIONS(1491), + [sym_required] = ACTIONS(1491), + [anon_sym_ATproperty] = ACTIONS(1491), + [sym_method_attribute_specifier] = ACTIONS(1493), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1493), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1493), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1493), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1493), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1493), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1493), + [anon_sym_NS_AVAILABLE] = ACTIONS(1493), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1493), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1493), + [anon_sym_API_AVAILABLE] = ACTIONS(1493), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1493), + [anon_sym_API_DEPRECATED] = ACTIONS(1493), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1493), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1493), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1493), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1493), + [anon_sym___deprecated_msg] = ACTIONS(1493), + [anon_sym___deprecated_enum_msg] = ACTIONS(1493), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1493), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1493), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1493), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1493), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1493), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1493), + [anon_sym_ATsynthesize] = ACTIONS(1491), + [anon_sym_ATdynamic] = ACTIONS(1491), + [anon_sym_NS_ENUM] = ACTIONS(1493), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1493), + [anon_sym_NS_OPTIONS] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1493), + [anon_sym___typeof] = ACTIONS(1493), + [anon_sym___typeof__] = ACTIONS(1493), + [sym_id] = ACTIONS(1493), + [sym_instancetype] = ACTIONS(1493), + [sym_Class] = ACTIONS(1493), + [sym_SEL] = ACTIONS(1493), + [sym_IMP] = ACTIONS(1493), + [sym_BOOL] = ACTIONS(1493), + [sym_auto] = ACTIONS(1493), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2835] = { + [sym_identifier] = ACTIONS(1488), + [aux_sym_preproc_def_token1] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_typedef] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym___attribute] = ACTIONS(1488), + [anon_sym___attribute__] = ACTIONS(1488), + [anon_sym___declspec] = ACTIONS(1488), + [anon_sym___cdecl] = ACTIONS(1488), + [anon_sym___clrcall] = ACTIONS(1488), + [anon_sym___stdcall] = ACTIONS(1488), + [anon_sym___fastcall] = ACTIONS(1488), + [anon_sym___thiscall] = ACTIONS(1488), + [anon_sym___vectorcall] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_auto] = ACTIONS(1488), + [anon_sym_register] = ACTIONS(1488), + [anon_sym_inline] = ACTIONS(1488), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_volatile] = ACTIONS(1488), + [anon_sym_restrict] = ACTIONS(1488), + [anon_sym__Atomic] = ACTIONS(1488), + [anon_sym_in] = ACTIONS(1488), + [anon_sym_out] = ACTIONS(1488), + [anon_sym_inout] = ACTIONS(1488), + [anon_sym_bycopy] = ACTIONS(1488), + [anon_sym_byref] = ACTIONS(1488), + [anon_sym_oneway] = ACTIONS(1488), + [anon_sym__Nullable] = ACTIONS(1488), + [anon_sym__Nonnull] = ACTIONS(1488), + [anon_sym__Nullable_result] = ACTIONS(1488), + [anon_sym__Null_unspecified] = ACTIONS(1488), + [anon_sym___autoreleasing] = ACTIONS(1488), + [anon_sym___nullable] = ACTIONS(1488), + [anon_sym___nonnull] = ACTIONS(1488), + [anon_sym___strong] = ACTIONS(1488), + [anon_sym___weak] = ACTIONS(1488), + [anon_sym___bridge] = ACTIONS(1488), + [anon_sym___bridge_transfer] = ACTIONS(1488), + [anon_sym___bridge_retained] = ACTIONS(1488), + [anon_sym___unsafe_unretained] = ACTIONS(1488), + [anon_sym___block] = ACTIONS(1488), + [anon_sym___kindof] = ACTIONS(1488), + [anon_sym___unused] = ACTIONS(1488), + [anon_sym__Complex] = ACTIONS(1488), + [anon_sym___complex] = ACTIONS(1488), + [anon_sym_IBOutlet] = ACTIONS(1488), + [anon_sym_IBInspectable] = ACTIONS(1488), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1488), + [anon_sym_signed] = ACTIONS(1488), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), + [sym_primitive_type] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1488), + [anon_sym_ATend] = ACTIONS(1485), + [sym_optional] = ACTIONS(1485), + [sym_required] = ACTIONS(1485), + [anon_sym_ATproperty] = ACTIONS(1485), + [sym_method_attribute_specifier] = ACTIONS(1488), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1488), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1488), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1488), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1488), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1488), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1488), + [anon_sym_NS_AVAILABLE] = ACTIONS(1488), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1488), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1488), + [anon_sym_API_AVAILABLE] = ACTIONS(1488), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1488), + [anon_sym_API_DEPRECATED] = ACTIONS(1488), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1488), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1488), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1488), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1488), + [anon_sym___deprecated_msg] = ACTIONS(1488), + [anon_sym___deprecated_enum_msg] = ACTIONS(1488), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1488), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1488), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1488), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1488), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1488), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1488), + [anon_sym_ATsynthesize] = ACTIONS(1485), + [anon_sym_ATdynamic] = ACTIONS(1485), + [anon_sym_NS_ENUM] = ACTIONS(1488), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1488), + [anon_sym_NS_OPTIONS] = ACTIONS(1488), + [anon_sym_typeof] = ACTIONS(1488), + [anon_sym___typeof] = ACTIONS(1488), + [anon_sym___typeof__] = ACTIONS(1488), + [sym_id] = ACTIONS(1488), + [sym_instancetype] = ACTIONS(1488), + [sym_Class] = ACTIONS(1488), + [sym_SEL] = ACTIONS(1488), + [sym_IMP] = ACTIONS(1488), + [sym_BOOL] = ACTIONS(1488), + [sym_auto] = ACTIONS(1488), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2836] = { + [sym_identifier] = ACTIONS(1639), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1639), + [anon_sym___cdecl] = ACTIONS(1639), + [anon_sym___clrcall] = ACTIONS(1639), + [anon_sym___stdcall] = ACTIONS(1639), + [anon_sym___fastcall] = ACTIONS(1639), + [anon_sym___thiscall] = ACTIONS(1639), + [anon_sym___vectorcall] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_auto] = ACTIONS(1639), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_inline] = ACTIONS(1639), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1639), + [anon_sym_restrict] = ACTIONS(1639), + [anon_sym__Atomic] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [anon_sym_out] = ACTIONS(1639), + [anon_sym_inout] = ACTIONS(1639), + [anon_sym_bycopy] = ACTIONS(1639), + [anon_sym_byref] = ACTIONS(1639), + [anon_sym_oneway] = ACTIONS(1639), + [anon_sym__Nullable] = ACTIONS(1639), + [anon_sym__Nonnull] = ACTIONS(1639), + [anon_sym__Nullable_result] = ACTIONS(1639), + [anon_sym__Null_unspecified] = ACTIONS(1639), + [anon_sym___autoreleasing] = ACTIONS(1639), + [anon_sym___nullable] = ACTIONS(1639), + [anon_sym___nonnull] = ACTIONS(1639), + [anon_sym___strong] = ACTIONS(1639), + [anon_sym___weak] = ACTIONS(1639), + [anon_sym___bridge] = ACTIONS(1639), + [anon_sym___bridge_transfer] = ACTIONS(1639), + [anon_sym___bridge_retained] = ACTIONS(1639), + [anon_sym___unsafe_unretained] = ACTIONS(1639), + [anon_sym___block] = ACTIONS(1639), + [anon_sym___kindof] = ACTIONS(1639), + [anon_sym___unused] = ACTIONS(1639), + [anon_sym__Complex] = ACTIONS(1639), + [anon_sym___complex] = ACTIONS(1639), + [anon_sym_IBOutlet] = ACTIONS(1639), + [anon_sym_IBInspectable] = ACTIONS(1639), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1639), + [anon_sym_unsigned] = ACTIONS(1639), + [anon_sym_long] = ACTIONS(1639), + [anon_sym_short] = ACTIONS(1639), + [sym_primitive_type] = ACTIONS(1639), + [anon_sym_enum] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1639), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1639), + [anon_sym_ATend] = ACTIONS(1637), + [sym_optional] = ACTIONS(1637), + [sym_required] = ACTIONS(1637), + [anon_sym_ATproperty] = ACTIONS(1637), + [sym_method_attribute_specifier] = ACTIONS(1639), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1639), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE] = ACTIONS(1639), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_API_AVAILABLE] = ACTIONS(1639), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_API_DEPRECATED] = ACTIONS(1639), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1639), + [anon_sym___deprecated_msg] = ACTIONS(1639), + [anon_sym___deprecated_enum_msg] = ACTIONS(1639), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1639), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1639), + [anon_sym_ATsynthesize] = ACTIONS(1637), + [anon_sym_ATdynamic] = ACTIONS(1637), + [anon_sym_NS_ENUM] = ACTIONS(1639), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1639), + [anon_sym_NS_OPTIONS] = ACTIONS(1639), + [anon_sym_typeof] = ACTIONS(1639), + [anon_sym___typeof] = ACTIONS(1639), + [anon_sym___typeof__] = ACTIONS(1639), + [sym_id] = ACTIONS(1639), + [sym_instancetype] = ACTIONS(1639), + [sym_Class] = ACTIONS(1639), + [sym_SEL] = ACTIONS(1639), + [sym_IMP] = ACTIONS(1639), + [sym_BOOL] = ACTIONS(1639), + [sym_auto] = ACTIONS(1639), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2837] = { + [sym_identifier] = ACTIONS(1237), + [aux_sym_preproc_def_token1] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_typedef] = ACTIONS(1237), + [anon_sym_extern] = ACTIONS(1237), + [anon_sym___attribute] = ACTIONS(1237), + [anon_sym___attribute__] = ACTIONS(1237), + [anon_sym___declspec] = ACTIONS(1237), + [anon_sym___cdecl] = ACTIONS(1237), + [anon_sym___clrcall] = ACTIONS(1237), + [anon_sym___stdcall] = ACTIONS(1237), + [anon_sym___fastcall] = ACTIONS(1237), + [anon_sym___thiscall] = ACTIONS(1237), + [anon_sym___vectorcall] = ACTIONS(1237), + [anon_sym_static] = ACTIONS(1237), + [anon_sym_auto] = ACTIONS(1237), + [anon_sym_register] = ACTIONS(1237), + [anon_sym_inline] = ACTIONS(1237), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1237), + [anon_sym_const] = ACTIONS(1237), + [anon_sym_volatile] = ACTIONS(1237), + [anon_sym_restrict] = ACTIONS(1237), + [anon_sym__Atomic] = ACTIONS(1237), + [anon_sym_in] = ACTIONS(1237), + [anon_sym_out] = ACTIONS(1237), + [anon_sym_inout] = ACTIONS(1237), + [anon_sym_bycopy] = ACTIONS(1237), + [anon_sym_byref] = ACTIONS(1237), + [anon_sym_oneway] = ACTIONS(1237), + [anon_sym__Nullable] = ACTIONS(1237), + [anon_sym__Nonnull] = ACTIONS(1237), + [anon_sym__Nullable_result] = ACTIONS(1237), + [anon_sym__Null_unspecified] = ACTIONS(1237), + [anon_sym___autoreleasing] = ACTIONS(1237), + [anon_sym___nullable] = ACTIONS(1237), + [anon_sym___nonnull] = ACTIONS(1237), + [anon_sym___strong] = ACTIONS(1237), + [anon_sym___weak] = ACTIONS(1237), + [anon_sym___bridge] = ACTIONS(1237), + [anon_sym___bridge_transfer] = ACTIONS(1237), + [anon_sym___bridge_retained] = ACTIONS(1237), + [anon_sym___unsafe_unretained] = ACTIONS(1237), + [anon_sym___block] = ACTIONS(1237), + [anon_sym___kindof] = ACTIONS(1237), + [anon_sym___unused] = ACTIONS(1237), + [anon_sym__Complex] = ACTIONS(1237), + [anon_sym___complex] = ACTIONS(1237), + [anon_sym_IBOutlet] = ACTIONS(1237), + [anon_sym_IBInspectable] = ACTIONS(1237), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1237), + [anon_sym_signed] = ACTIONS(1237), + [anon_sym_unsigned] = ACTIONS(1237), + [anon_sym_long] = ACTIONS(1237), + [anon_sym_short] = ACTIONS(1237), + [sym_primitive_type] = ACTIONS(1237), + [anon_sym_enum] = ACTIONS(1237), + [anon_sym_struct] = ACTIONS(1237), + [anon_sym_union] = ACTIONS(1237), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1237), + [anon_sym_ATend] = ACTIONS(1235), + [sym_optional] = ACTIONS(1235), + [sym_required] = ACTIONS(1235), + [anon_sym_ATproperty] = ACTIONS(1235), + [sym_method_attribute_specifier] = ACTIONS(1237), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1237), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1237), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1237), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1237), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1237), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1237), + [anon_sym_NS_AVAILABLE] = ACTIONS(1237), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1237), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1237), + [anon_sym_API_AVAILABLE] = ACTIONS(1237), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1237), + [anon_sym_API_DEPRECATED] = ACTIONS(1237), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1237), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1237), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1237), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1237), + [anon_sym___deprecated_msg] = ACTIONS(1237), + [anon_sym___deprecated_enum_msg] = ACTIONS(1237), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1237), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1237), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1237), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1237), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1237), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1237), + [anon_sym_ATsynthesize] = ACTIONS(1235), + [anon_sym_ATdynamic] = ACTIONS(1235), + [anon_sym_NS_ENUM] = ACTIONS(1237), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1237), + [anon_sym_NS_OPTIONS] = ACTIONS(1237), + [anon_sym_typeof] = ACTIONS(1237), + [anon_sym___typeof] = ACTIONS(1237), + [anon_sym___typeof__] = ACTIONS(1237), + [sym_id] = ACTIONS(1237), + [sym_instancetype] = ACTIONS(1237), + [sym_Class] = ACTIONS(1237), + [sym_SEL] = ACTIONS(1237), + [sym_IMP] = ACTIONS(1237), + [sym_BOOL] = ACTIONS(1237), + [sym_auto] = ACTIONS(1237), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2838] = { + [sym_type_qualifier] = STATE(2840), + [sym__expression] = STATE(4524), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_type_definition_repeat1] = STATE(2840), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(23), [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(6958), + [anon_sym_STAR] = ACTIONS(6880), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(6960), - [anon_sym_const] = ACTIONS(6922), - [anon_sym_volatile] = ACTIONS(6922), - [anon_sym_restrict] = ACTIONS(6922), - [anon_sym__Atomic] = ACTIONS(6922), - [anon_sym_in] = ACTIONS(6922), - [anon_sym_out] = ACTIONS(6922), - [anon_sym_inout] = ACTIONS(6922), - [anon_sym_bycopy] = ACTIONS(6922), - [anon_sym_byref] = ACTIONS(6922), - [anon_sym_oneway] = ACTIONS(6922), - [anon_sym__Nullable] = ACTIONS(6922), - [anon_sym__Nonnull] = ACTIONS(6922), - [anon_sym__Nullable_result] = ACTIONS(6922), - [anon_sym__Null_unspecified] = ACTIONS(6922), - [anon_sym___autoreleasing] = ACTIONS(6922), - [anon_sym___nullable] = ACTIONS(6922), - [anon_sym___nonnull] = ACTIONS(6922), - [anon_sym___strong] = ACTIONS(6922), - [anon_sym___weak] = ACTIONS(6922), - [anon_sym___bridge] = ACTIONS(6922), - [anon_sym___bridge_transfer] = ACTIONS(6922), - [anon_sym___bridge_retained] = ACTIONS(6922), - [anon_sym___unsafe_unretained] = ACTIONS(6922), - [anon_sym___block] = ACTIONS(6922), - [anon_sym___kindof] = ACTIONS(6922), - [anon_sym___unused] = ACTIONS(6922), - [anon_sym__Complex] = ACTIONS(6922), - [anon_sym___complex] = ACTIONS(6922), - [anon_sym_IBOutlet] = ACTIONS(6922), - [anon_sym_IBInspectable] = ACTIONS(6922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6922), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(6882), + [anon_sym_const] = ACTIONS(6878), + [anon_sym_volatile] = ACTIONS(6878), + [anon_sym_restrict] = ACTIONS(6878), + [anon_sym__Atomic] = ACTIONS(6878), + [anon_sym_in] = ACTIONS(6878), + [anon_sym_out] = ACTIONS(6878), + [anon_sym_inout] = ACTIONS(6878), + [anon_sym_bycopy] = ACTIONS(6878), + [anon_sym_byref] = ACTIONS(6878), + [anon_sym_oneway] = ACTIONS(6878), + [anon_sym__Nullable] = ACTIONS(6878), + [anon_sym__Nonnull] = ACTIONS(6878), + [anon_sym__Nullable_result] = ACTIONS(6878), + [anon_sym__Null_unspecified] = ACTIONS(6878), + [anon_sym___autoreleasing] = ACTIONS(6878), + [anon_sym___nullable] = ACTIONS(6878), + [anon_sym___nonnull] = ACTIONS(6878), + [anon_sym___strong] = ACTIONS(6878), + [anon_sym___weak] = ACTIONS(6878), + [anon_sym___bridge] = ACTIONS(6878), + [anon_sym___bridge_transfer] = ACTIONS(6878), + [anon_sym___bridge_retained] = ACTIONS(6878), + [anon_sym___unsafe_unretained] = ACTIONS(6878), + [anon_sym___block] = ACTIONS(6878), + [anon_sym___kindof] = ACTIONS(6878), + [anon_sym___unused] = ACTIONS(6878), + [anon_sym__Complex] = ACTIONS(6878), + [anon_sym___complex] = ACTIONS(6878), + [anon_sym_IBOutlet] = ACTIONS(6878), + [anon_sym_IBInspectable] = ACTIONS(6878), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -487443,109 +471413,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2966] = { - [sym_type_qualifier] = STATE(2895), - [sym__expression] = STATE(4521), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_type_definition_repeat1] = STATE(2895), + [2839] = { + [sym_identifier] = ACTIONS(1483), + [aux_sym_preproc_def_token1] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_typedef] = ACTIONS(1483), + [anon_sym_extern] = ACTIONS(1483), + [anon_sym___attribute] = ACTIONS(1483), + [anon_sym___attribute__] = ACTIONS(1483), + [anon_sym___declspec] = ACTIONS(1483), + [anon_sym___cdecl] = ACTIONS(1483), + [anon_sym___clrcall] = ACTIONS(1483), + [anon_sym___stdcall] = ACTIONS(1483), + [anon_sym___fastcall] = ACTIONS(1483), + [anon_sym___thiscall] = ACTIONS(1483), + [anon_sym___vectorcall] = ACTIONS(1483), + [anon_sym_static] = ACTIONS(1483), + [anon_sym_auto] = ACTIONS(1483), + [anon_sym_register] = ACTIONS(1483), + [anon_sym_inline] = ACTIONS(1483), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1483), + [anon_sym_volatile] = ACTIONS(1483), + [anon_sym_restrict] = ACTIONS(1483), + [anon_sym__Atomic] = ACTIONS(1483), + [anon_sym_in] = ACTIONS(1483), + [anon_sym_out] = ACTIONS(1483), + [anon_sym_inout] = ACTIONS(1483), + [anon_sym_bycopy] = ACTIONS(1483), + [anon_sym_byref] = ACTIONS(1483), + [anon_sym_oneway] = ACTIONS(1483), + [anon_sym__Nullable] = ACTIONS(1483), + [anon_sym__Nonnull] = ACTIONS(1483), + [anon_sym__Nullable_result] = ACTIONS(1483), + [anon_sym__Null_unspecified] = ACTIONS(1483), + [anon_sym___autoreleasing] = ACTIONS(1483), + [anon_sym___nullable] = ACTIONS(1483), + [anon_sym___nonnull] = ACTIONS(1483), + [anon_sym___strong] = ACTIONS(1483), + [anon_sym___weak] = ACTIONS(1483), + [anon_sym___bridge] = ACTIONS(1483), + [anon_sym___bridge_transfer] = ACTIONS(1483), + [anon_sym___bridge_retained] = ACTIONS(1483), + [anon_sym___unsafe_unretained] = ACTIONS(1483), + [anon_sym___block] = ACTIONS(1483), + [anon_sym___kindof] = ACTIONS(1483), + [anon_sym___unused] = ACTIONS(1483), + [anon_sym__Complex] = ACTIONS(1483), + [anon_sym___complex] = ACTIONS(1483), + [anon_sym_IBOutlet] = ACTIONS(1483), + [anon_sym_IBInspectable] = ACTIONS(1483), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1483), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1483), + [anon_sym_enum] = ACTIONS(1483), + [anon_sym_struct] = ACTIONS(1483), + [anon_sym_union] = ACTIONS(1483), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1483), + [anon_sym_ATend] = ACTIONS(1481), + [sym_optional] = ACTIONS(1481), + [sym_required] = ACTIONS(1481), + [anon_sym_ATproperty] = ACTIONS(1481), + [sym_method_attribute_specifier] = ACTIONS(1483), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1483), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1483), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1483), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1483), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1483), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1483), + [anon_sym_NS_AVAILABLE] = ACTIONS(1483), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1483), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1483), + [anon_sym_API_AVAILABLE] = ACTIONS(1483), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1483), + [anon_sym_API_DEPRECATED] = ACTIONS(1483), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1483), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1483), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1483), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1483), + [anon_sym___deprecated_msg] = ACTIONS(1483), + [anon_sym___deprecated_enum_msg] = ACTIONS(1483), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1483), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1483), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1483), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1483), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1483), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1483), + [anon_sym_ATsynthesize] = ACTIONS(1481), + [anon_sym_ATdynamic] = ACTIONS(1481), + [anon_sym_NS_ENUM] = ACTIONS(1483), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1483), + [anon_sym_NS_OPTIONS] = ACTIONS(1483), + [anon_sym_typeof] = ACTIONS(1483), + [anon_sym___typeof] = ACTIONS(1483), + [anon_sym___typeof__] = ACTIONS(1483), + [sym_id] = ACTIONS(1483), + [sym_instancetype] = ACTIONS(1483), + [sym_Class] = ACTIONS(1483), + [sym_SEL] = ACTIONS(1483), + [sym_IMP] = ACTIONS(1483), + [sym_BOOL] = ACTIONS(1483), + [sym_auto] = ACTIONS(1483), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2840] = { + [sym_type_qualifier] = STATE(3414), + [sym__expression] = STATE(4552), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_type_definition_repeat1] = STATE(3414), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(23), [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(6962), + [anon_sym_STAR] = ACTIONS(6884), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(6964), - [anon_sym_const] = ACTIONS(6922), - [anon_sym_volatile] = ACTIONS(6922), - [anon_sym_restrict] = ACTIONS(6922), - [anon_sym__Atomic] = ACTIONS(6922), - [anon_sym_in] = ACTIONS(6922), - [anon_sym_out] = ACTIONS(6922), - [anon_sym_inout] = ACTIONS(6922), - [anon_sym_bycopy] = ACTIONS(6922), - [anon_sym_byref] = ACTIONS(6922), - [anon_sym_oneway] = ACTIONS(6922), - [anon_sym__Nullable] = ACTIONS(6922), - [anon_sym__Nonnull] = ACTIONS(6922), - [anon_sym__Nullable_result] = ACTIONS(6922), - [anon_sym__Null_unspecified] = ACTIONS(6922), - [anon_sym___autoreleasing] = ACTIONS(6922), - [anon_sym___nullable] = ACTIONS(6922), - [anon_sym___nonnull] = ACTIONS(6922), - [anon_sym___strong] = ACTIONS(6922), - [anon_sym___weak] = ACTIONS(6922), - [anon_sym___bridge] = ACTIONS(6922), - [anon_sym___bridge_transfer] = ACTIONS(6922), - [anon_sym___bridge_retained] = ACTIONS(6922), - [anon_sym___unsafe_unretained] = ACTIONS(6922), - [anon_sym___block] = ACTIONS(6922), - [anon_sym___kindof] = ACTIONS(6922), - [anon_sym___unused] = ACTIONS(6922), - [anon_sym__Complex] = ACTIONS(6922), - [anon_sym___complex] = ACTIONS(6922), - [anon_sym_IBOutlet] = ACTIONS(6922), - [anon_sym_IBInspectable] = ACTIONS(6922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6922), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(6886), + [anon_sym_const] = ACTIONS(6878), + [anon_sym_volatile] = ACTIONS(6878), + [anon_sym_restrict] = ACTIONS(6878), + [anon_sym__Atomic] = ACTIONS(6878), + [anon_sym_in] = ACTIONS(6878), + [anon_sym_out] = ACTIONS(6878), + [anon_sym_inout] = ACTIONS(6878), + [anon_sym_bycopy] = ACTIONS(6878), + [anon_sym_byref] = ACTIONS(6878), + [anon_sym_oneway] = ACTIONS(6878), + [anon_sym__Nullable] = ACTIONS(6878), + [anon_sym__Nonnull] = ACTIONS(6878), + [anon_sym__Nullable_result] = ACTIONS(6878), + [anon_sym__Null_unspecified] = ACTIONS(6878), + [anon_sym___autoreleasing] = ACTIONS(6878), + [anon_sym___nullable] = ACTIONS(6878), + [anon_sym___nonnull] = ACTIONS(6878), + [anon_sym___strong] = ACTIONS(6878), + [anon_sym___weak] = ACTIONS(6878), + [anon_sym___bridge] = ACTIONS(6878), + [anon_sym___bridge_transfer] = ACTIONS(6878), + [anon_sym___bridge_retained] = ACTIONS(6878), + [anon_sym___unsafe_unretained] = ACTIONS(6878), + [anon_sym___block] = ACTIONS(6878), + [anon_sym___kindof] = ACTIONS(6878), + [anon_sym___unused] = ACTIONS(6878), + [anon_sym__Complex] = ACTIONS(6878), + [anon_sym___complex] = ACTIONS(6878), + [anon_sym_IBOutlet] = ACTIONS(6878), + [anon_sym_IBInspectable] = ACTIONS(6878), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -487556,112 +471639,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2967] = { - [sym_type_qualifier] = STATE(2981), - [sym__expression] = STATE(4515), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_type_definition_repeat1] = STATE(2981), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(6966), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(6968), - [anon_sym_const] = ACTIONS(6922), - [anon_sym_volatile] = ACTIONS(6922), - [anon_sym_restrict] = ACTIONS(6922), - [anon_sym__Atomic] = ACTIONS(6922), - [anon_sym_in] = ACTIONS(6922), - [anon_sym_out] = ACTIONS(6922), - [anon_sym_inout] = ACTIONS(6922), - [anon_sym_bycopy] = ACTIONS(6922), - [anon_sym_byref] = ACTIONS(6922), - [anon_sym_oneway] = ACTIONS(6922), - [anon_sym__Nullable] = ACTIONS(6922), - [anon_sym__Nonnull] = ACTIONS(6922), - [anon_sym__Nullable_result] = ACTIONS(6922), - [anon_sym__Null_unspecified] = ACTIONS(6922), - [anon_sym___autoreleasing] = ACTIONS(6922), - [anon_sym___nullable] = ACTIONS(6922), - [anon_sym___nonnull] = ACTIONS(6922), - [anon_sym___strong] = ACTIONS(6922), - [anon_sym___weak] = ACTIONS(6922), - [anon_sym___bridge] = ACTIONS(6922), - [anon_sym___bridge_transfer] = ACTIONS(6922), - [anon_sym___bridge_retained] = ACTIONS(6922), - [anon_sym___unsafe_unretained] = ACTIONS(6922), - [anon_sym___block] = ACTIONS(6922), - [anon_sym___kindof] = ACTIONS(6922), - [anon_sym___unused] = ACTIONS(6922), - [anon_sym__Complex] = ACTIONS(6922), - [anon_sym___complex] = ACTIONS(6922), - [anon_sym_IBOutlet] = ACTIONS(6922), - [anon_sym_IBInspectable] = ACTIONS(6922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6922), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [2841] = { + [sym_identifier] = ACTIONS(1429), + [aux_sym_preproc_def_token1] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1431), + [anon_sym_typedef] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym___attribute] = ACTIONS(1429), + [anon_sym___attribute__] = ACTIONS(1429), + [anon_sym___declspec] = ACTIONS(1429), + [anon_sym___cdecl] = ACTIONS(1429), + [anon_sym___clrcall] = ACTIONS(1429), + [anon_sym___stdcall] = ACTIONS(1429), + [anon_sym___fastcall] = ACTIONS(1429), + [anon_sym___thiscall] = ACTIONS(1429), + [anon_sym___vectorcall] = ACTIONS(1429), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_auto] = ACTIONS(1429), + [anon_sym_register] = ACTIONS(1429), + [anon_sym_inline] = ACTIONS(1429), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_volatile] = ACTIONS(1429), + [anon_sym_restrict] = ACTIONS(1429), + [anon_sym__Atomic] = ACTIONS(1429), + [anon_sym_in] = ACTIONS(1429), + [anon_sym_out] = ACTIONS(1429), + [anon_sym_inout] = ACTIONS(1429), + [anon_sym_bycopy] = ACTIONS(1429), + [anon_sym_byref] = ACTIONS(1429), + [anon_sym_oneway] = ACTIONS(1429), + [anon_sym__Nullable] = ACTIONS(1429), + [anon_sym__Nonnull] = ACTIONS(1429), + [anon_sym__Nullable_result] = ACTIONS(1429), + [anon_sym__Null_unspecified] = ACTIONS(1429), + [anon_sym___autoreleasing] = ACTIONS(1429), + [anon_sym___nullable] = ACTIONS(1429), + [anon_sym___nonnull] = ACTIONS(1429), + [anon_sym___strong] = ACTIONS(1429), + [anon_sym___weak] = ACTIONS(1429), + [anon_sym___bridge] = ACTIONS(1429), + [anon_sym___bridge_transfer] = ACTIONS(1429), + [anon_sym___bridge_retained] = ACTIONS(1429), + [anon_sym___unsafe_unretained] = ACTIONS(1429), + [anon_sym___block] = ACTIONS(1429), + [anon_sym___kindof] = ACTIONS(1429), + [anon_sym___unused] = ACTIONS(1429), + [anon_sym__Complex] = ACTIONS(1429), + [anon_sym___complex] = ACTIONS(1429), + [anon_sym_IBOutlet] = ACTIONS(1429), + [anon_sym_IBInspectable] = ACTIONS(1429), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1429), + [anon_sym_signed] = ACTIONS(1429), + [anon_sym_unsigned] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [sym_primitive_type] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [anon_sym_struct] = ACTIONS(1429), + [anon_sym_union] = ACTIONS(1429), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1429), + [anon_sym_ATend] = ACTIONS(1431), + [sym_optional] = ACTIONS(1431), + [sym_required] = ACTIONS(1431), + [anon_sym_ATproperty] = ACTIONS(1431), + [sym_method_attribute_specifier] = ACTIONS(1429), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1429), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1429), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1429), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1429), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1429), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1429), + [anon_sym_NS_AVAILABLE] = ACTIONS(1429), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1429), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1429), + [anon_sym_API_AVAILABLE] = ACTIONS(1429), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1429), + [anon_sym_API_DEPRECATED] = ACTIONS(1429), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1429), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1429), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1429), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1429), + [anon_sym___deprecated_msg] = ACTIONS(1429), + [anon_sym___deprecated_enum_msg] = ACTIONS(1429), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1429), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1429), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1429), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1429), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1429), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1429), + [anon_sym_ATsynthesize] = ACTIONS(1431), + [anon_sym_ATdynamic] = ACTIONS(1431), + [anon_sym_NS_ENUM] = ACTIONS(1429), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1429), + [anon_sym_NS_OPTIONS] = ACTIONS(1429), + [anon_sym_typeof] = ACTIONS(1429), + [anon_sym___typeof] = ACTIONS(1429), + [anon_sym___typeof__] = ACTIONS(1429), + [sym_id] = ACTIONS(1429), + [sym_instancetype] = ACTIONS(1429), + [sym_Class] = ACTIONS(1429), + [sym_SEL] = ACTIONS(1429), + [sym_IMP] = ACTIONS(1429), + [sym_BOOL] = ACTIONS(1429), + [sym_auto] = ACTIONS(1429), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -487669,705 +471752,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2968] = { - [sym_identifier] = ACTIONS(1547), - [aux_sym_preproc_def_token1] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_typedef] = ACTIONS(1547), - [anon_sym_extern] = ACTIONS(1547), - [anon_sym___attribute] = ACTIONS(1547), - [anon_sym___attribute__] = ACTIONS(1547), - [anon_sym___declspec] = ACTIONS(1547), - [anon_sym___cdecl] = ACTIONS(1547), - [anon_sym___clrcall] = ACTIONS(1547), - [anon_sym___stdcall] = ACTIONS(1547), - [anon_sym___fastcall] = ACTIONS(1547), - [anon_sym___thiscall] = ACTIONS(1547), - [anon_sym___vectorcall] = ACTIONS(1547), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_auto] = ACTIONS(1547), - [anon_sym_register] = ACTIONS(1547), - [anon_sym_inline] = ACTIONS(1547), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1547), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_volatile] = ACTIONS(1547), - [anon_sym_restrict] = ACTIONS(1547), - [anon_sym__Atomic] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(1547), - [anon_sym_out] = ACTIONS(1547), - [anon_sym_inout] = ACTIONS(1547), - [anon_sym_bycopy] = ACTIONS(1547), - [anon_sym_byref] = ACTIONS(1547), - [anon_sym_oneway] = ACTIONS(1547), - [anon_sym__Nullable] = ACTIONS(1547), - [anon_sym__Nonnull] = ACTIONS(1547), - [anon_sym__Nullable_result] = ACTIONS(1547), - [anon_sym__Null_unspecified] = ACTIONS(1547), - [anon_sym___autoreleasing] = ACTIONS(1547), - [anon_sym___nullable] = ACTIONS(1547), - [anon_sym___nonnull] = ACTIONS(1547), - [anon_sym___strong] = ACTIONS(1547), - [anon_sym___weak] = ACTIONS(1547), - [anon_sym___bridge] = ACTIONS(1547), - [anon_sym___bridge_transfer] = ACTIONS(1547), - [anon_sym___bridge_retained] = ACTIONS(1547), - [anon_sym___unsafe_unretained] = ACTIONS(1547), - [anon_sym___block] = ACTIONS(1547), - [anon_sym___kindof] = ACTIONS(1547), - [anon_sym___unused] = ACTIONS(1547), - [anon_sym__Complex] = ACTIONS(1547), - [anon_sym___complex] = ACTIONS(1547), - [anon_sym_IBOutlet] = ACTIONS(1547), - [anon_sym_IBInspectable] = ACTIONS(1547), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1547), - [anon_sym_signed] = ACTIONS(1547), - [anon_sym_unsigned] = ACTIONS(1547), - [anon_sym_long] = ACTIONS(1547), - [anon_sym_short] = ACTIONS(1547), - [sym_primitive_type] = ACTIONS(1547), - [anon_sym_enum] = ACTIONS(1547), - [anon_sym_NS_ENUM] = ACTIONS(1547), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1547), - [anon_sym_NS_OPTIONS] = ACTIONS(1547), - [anon_sym_struct] = ACTIONS(1547), - [anon_sym_union] = ACTIONS(1547), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1547), - [anon_sym_ATend] = ACTIONS(1545), - [sym_optional] = ACTIONS(1545), - [sym_required] = ACTIONS(1545), - [anon_sym_ATproperty] = ACTIONS(1545), - [sym_method_attribute_specifier] = ACTIONS(1547), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1547), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1547), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1547), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1547), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1547), - [anon_sym_NS_AVAILABLE] = ACTIONS(1547), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1547), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_API_AVAILABLE] = ACTIONS(1547), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_API_DEPRECATED] = ACTIONS(1547), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1547), - [anon_sym___deprecated_msg] = ACTIONS(1547), - [anon_sym___deprecated_enum_msg] = ACTIONS(1547), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1547), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1547), - [anon_sym_ATsynthesize] = ACTIONS(1545), - [anon_sym_ATdynamic] = ACTIONS(1545), - [anon_sym_typeof] = ACTIONS(1547), - [anon_sym___typeof] = ACTIONS(1547), - [anon_sym___typeof__] = ACTIONS(1547), - [sym_id] = ACTIONS(1547), - [sym_instancetype] = ACTIONS(1547), - [sym_Class] = ACTIONS(1547), - [sym_SEL] = ACTIONS(1547), - [sym_IMP] = ACTIONS(1547), - [sym_BOOL] = ACTIONS(1547), - [sym_auto] = ACTIONS(1547), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2969] = { - [sym_identifier] = ACTIONS(1623), - [aux_sym_preproc_def_token1] = ACTIONS(1621), - [anon_sym_DASH] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(1621), - [anon_sym_typedef] = ACTIONS(1623), - [anon_sym_extern] = ACTIONS(1623), - [anon_sym___attribute] = ACTIONS(1623), - [anon_sym___attribute__] = ACTIONS(1623), - [anon_sym___declspec] = ACTIONS(1623), - [anon_sym___cdecl] = ACTIONS(1623), - [anon_sym___clrcall] = ACTIONS(1623), - [anon_sym___stdcall] = ACTIONS(1623), - [anon_sym___fastcall] = ACTIONS(1623), - [anon_sym___thiscall] = ACTIONS(1623), - [anon_sym___vectorcall] = ACTIONS(1623), - [anon_sym_static] = ACTIONS(1623), - [anon_sym_auto] = ACTIONS(1623), - [anon_sym_register] = ACTIONS(1623), - [anon_sym_inline] = ACTIONS(1623), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1623), - [anon_sym_const] = ACTIONS(1623), - [anon_sym_volatile] = ACTIONS(1623), - [anon_sym_restrict] = ACTIONS(1623), - [anon_sym__Atomic] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1623), - [anon_sym_out] = ACTIONS(1623), - [anon_sym_inout] = ACTIONS(1623), - [anon_sym_bycopy] = ACTIONS(1623), - [anon_sym_byref] = ACTIONS(1623), - [anon_sym_oneway] = ACTIONS(1623), - [anon_sym__Nullable] = ACTIONS(1623), - [anon_sym__Nonnull] = ACTIONS(1623), - [anon_sym__Nullable_result] = ACTIONS(1623), - [anon_sym__Null_unspecified] = ACTIONS(1623), - [anon_sym___autoreleasing] = ACTIONS(1623), - [anon_sym___nullable] = ACTIONS(1623), - [anon_sym___nonnull] = ACTIONS(1623), - [anon_sym___strong] = ACTIONS(1623), - [anon_sym___weak] = ACTIONS(1623), - [anon_sym___bridge] = ACTIONS(1623), - [anon_sym___bridge_transfer] = ACTIONS(1623), - [anon_sym___bridge_retained] = ACTIONS(1623), - [anon_sym___unsafe_unretained] = ACTIONS(1623), - [anon_sym___block] = ACTIONS(1623), - [anon_sym___kindof] = ACTIONS(1623), - [anon_sym___unused] = ACTIONS(1623), - [anon_sym__Complex] = ACTIONS(1623), - [anon_sym___complex] = ACTIONS(1623), - [anon_sym_IBOutlet] = ACTIONS(1623), - [anon_sym_IBInspectable] = ACTIONS(1623), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1623), - [anon_sym_signed] = ACTIONS(1623), - [anon_sym_unsigned] = ACTIONS(1623), - [anon_sym_long] = ACTIONS(1623), - [anon_sym_short] = ACTIONS(1623), - [sym_primitive_type] = ACTIONS(1623), - [anon_sym_enum] = ACTIONS(1623), - [anon_sym_NS_ENUM] = ACTIONS(1623), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1623), - [anon_sym_NS_OPTIONS] = ACTIONS(1623), - [anon_sym_struct] = ACTIONS(1623), - [anon_sym_union] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1623), - [anon_sym_ATend] = ACTIONS(1621), - [sym_optional] = ACTIONS(1621), - [sym_required] = ACTIONS(1621), - [anon_sym_ATproperty] = ACTIONS(1621), - [sym_method_attribute_specifier] = ACTIONS(1623), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1623), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1623), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1623), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1623), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1623), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1623), - [anon_sym_NS_AVAILABLE] = ACTIONS(1623), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1623), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1623), - [anon_sym_API_AVAILABLE] = ACTIONS(1623), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1623), - [anon_sym_API_DEPRECATED] = ACTIONS(1623), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1623), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1623), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1623), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1623), - [anon_sym___deprecated_msg] = ACTIONS(1623), - [anon_sym___deprecated_enum_msg] = ACTIONS(1623), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1623), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1623), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1623), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1623), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1623), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1623), - [anon_sym_ATsynthesize] = ACTIONS(1621), - [anon_sym_ATdynamic] = ACTIONS(1621), - [anon_sym_typeof] = ACTIONS(1623), - [anon_sym___typeof] = ACTIONS(1623), - [anon_sym___typeof__] = ACTIONS(1623), - [sym_id] = ACTIONS(1623), - [sym_instancetype] = ACTIONS(1623), - [sym_Class] = ACTIONS(1623), - [sym_SEL] = ACTIONS(1623), - [sym_IMP] = ACTIONS(1623), - [sym_BOOL] = ACTIONS(1623), - [sym_auto] = ACTIONS(1623), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2970] = { - [sym_identifier] = ACTIONS(1539), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_typedef] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym___attribute] = ACTIONS(1539), - [anon_sym___attribute__] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1539), - [anon_sym___cdecl] = ACTIONS(1539), - [anon_sym___clrcall] = ACTIONS(1539), - [anon_sym___stdcall] = ACTIONS(1539), - [anon_sym___fastcall] = ACTIONS(1539), - [anon_sym___thiscall] = ACTIONS(1539), - [anon_sym___vectorcall] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_auto] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_inline] = ACTIONS(1539), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_volatile] = ACTIONS(1539), - [anon_sym_restrict] = ACTIONS(1539), - [anon_sym__Atomic] = ACTIONS(1539), - [anon_sym_in] = ACTIONS(1539), - [anon_sym_out] = ACTIONS(1539), - [anon_sym_inout] = ACTIONS(1539), - [anon_sym_bycopy] = ACTIONS(1539), - [anon_sym_byref] = ACTIONS(1539), - [anon_sym_oneway] = ACTIONS(1539), - [anon_sym__Nullable] = ACTIONS(1539), - [anon_sym__Nonnull] = ACTIONS(1539), - [anon_sym__Nullable_result] = ACTIONS(1539), - [anon_sym__Null_unspecified] = ACTIONS(1539), - [anon_sym___autoreleasing] = ACTIONS(1539), - [anon_sym___nullable] = ACTIONS(1539), - [anon_sym___nonnull] = ACTIONS(1539), - [anon_sym___strong] = ACTIONS(1539), - [anon_sym___weak] = ACTIONS(1539), - [anon_sym___bridge] = ACTIONS(1539), - [anon_sym___bridge_transfer] = ACTIONS(1539), - [anon_sym___bridge_retained] = ACTIONS(1539), - [anon_sym___unsafe_unretained] = ACTIONS(1539), - [anon_sym___block] = ACTIONS(1539), - [anon_sym___kindof] = ACTIONS(1539), - [anon_sym___unused] = ACTIONS(1539), - [anon_sym__Complex] = ACTIONS(1539), - [anon_sym___complex] = ACTIONS(1539), - [anon_sym_IBOutlet] = ACTIONS(1539), - [anon_sym_IBInspectable] = ACTIONS(1539), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1539), - [anon_sym_signed] = ACTIONS(1539), - [anon_sym_unsigned] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_NS_ENUM] = ACTIONS(1539), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1539), - [anon_sym_NS_OPTIONS] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1539), - [anon_sym_ATend] = ACTIONS(1537), - [sym_optional] = ACTIONS(1537), - [sym_required] = ACTIONS(1537), - [anon_sym_ATproperty] = ACTIONS(1537), - [sym_method_attribute_specifier] = ACTIONS(1539), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1539), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE] = ACTIONS(1539), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_API_AVAILABLE] = ACTIONS(1539), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_API_DEPRECATED] = ACTIONS(1539), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1539), - [anon_sym___deprecated_msg] = ACTIONS(1539), - [anon_sym___deprecated_enum_msg] = ACTIONS(1539), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1539), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1539), - [anon_sym_ATsynthesize] = ACTIONS(1537), - [anon_sym_ATdynamic] = ACTIONS(1537), - [anon_sym_typeof] = ACTIONS(1539), - [anon_sym___typeof] = ACTIONS(1539), - [anon_sym___typeof__] = ACTIONS(1539), - [sym_id] = ACTIONS(1539), - [sym_instancetype] = ACTIONS(1539), - [sym_Class] = ACTIONS(1539), - [sym_SEL] = ACTIONS(1539), - [sym_IMP] = ACTIONS(1539), - [sym_BOOL] = ACTIONS(1539), - [sym_auto] = ACTIONS(1539), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2971] = { - [sym_identifier] = ACTIONS(1539), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_typedef] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym___attribute] = ACTIONS(1539), - [anon_sym___attribute__] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1539), - [anon_sym___cdecl] = ACTIONS(1539), - [anon_sym___clrcall] = ACTIONS(1539), - [anon_sym___stdcall] = ACTIONS(1539), - [anon_sym___fastcall] = ACTIONS(1539), - [anon_sym___thiscall] = ACTIONS(1539), - [anon_sym___vectorcall] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_auto] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_inline] = ACTIONS(1539), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_volatile] = ACTIONS(1539), - [anon_sym_restrict] = ACTIONS(1539), - [anon_sym__Atomic] = ACTIONS(1539), - [anon_sym_in] = ACTIONS(1539), - [anon_sym_out] = ACTIONS(1539), - [anon_sym_inout] = ACTIONS(1539), - [anon_sym_bycopy] = ACTIONS(1539), - [anon_sym_byref] = ACTIONS(1539), - [anon_sym_oneway] = ACTIONS(1539), - [anon_sym__Nullable] = ACTIONS(1539), - [anon_sym__Nonnull] = ACTIONS(1539), - [anon_sym__Nullable_result] = ACTIONS(1539), - [anon_sym__Null_unspecified] = ACTIONS(1539), - [anon_sym___autoreleasing] = ACTIONS(1539), - [anon_sym___nullable] = ACTIONS(1539), - [anon_sym___nonnull] = ACTIONS(1539), - [anon_sym___strong] = ACTIONS(1539), - [anon_sym___weak] = ACTIONS(1539), - [anon_sym___bridge] = ACTIONS(1539), - [anon_sym___bridge_transfer] = ACTIONS(1539), - [anon_sym___bridge_retained] = ACTIONS(1539), - [anon_sym___unsafe_unretained] = ACTIONS(1539), - [anon_sym___block] = ACTIONS(1539), - [anon_sym___kindof] = ACTIONS(1539), - [anon_sym___unused] = ACTIONS(1539), - [anon_sym__Complex] = ACTIONS(1539), - [anon_sym___complex] = ACTIONS(1539), - [anon_sym_IBOutlet] = ACTIONS(1539), - [anon_sym_IBInspectable] = ACTIONS(1539), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1539), - [anon_sym_signed] = ACTIONS(1539), - [anon_sym_unsigned] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_NS_ENUM] = ACTIONS(1539), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1539), - [anon_sym_NS_OPTIONS] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1539), - [anon_sym_ATend] = ACTIONS(1537), - [sym_optional] = ACTIONS(1537), - [sym_required] = ACTIONS(1537), - [anon_sym_ATproperty] = ACTIONS(1537), - [sym_method_attribute_specifier] = ACTIONS(1539), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1539), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE] = ACTIONS(1539), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_API_AVAILABLE] = ACTIONS(1539), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_API_DEPRECATED] = ACTIONS(1539), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1539), - [anon_sym___deprecated_msg] = ACTIONS(1539), - [anon_sym___deprecated_enum_msg] = ACTIONS(1539), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1539), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1539), - [anon_sym_ATsynthesize] = ACTIONS(1537), - [anon_sym_ATdynamic] = ACTIONS(1537), - [anon_sym_typeof] = ACTIONS(1539), - [anon_sym___typeof] = ACTIONS(1539), - [anon_sym___typeof__] = ACTIONS(1539), - [sym_id] = ACTIONS(1539), - [sym_instancetype] = ACTIONS(1539), - [sym_Class] = ACTIONS(1539), - [sym_SEL] = ACTIONS(1539), - [sym_IMP] = ACTIONS(1539), - [sym_BOOL] = ACTIONS(1539), - [sym_auto] = ACTIONS(1539), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2972] = { - [sym_identifier] = ACTIONS(1547), - [aux_sym_preproc_def_token1] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_typedef] = ACTIONS(1547), - [anon_sym_extern] = ACTIONS(1547), - [anon_sym___attribute] = ACTIONS(1547), - [anon_sym___attribute__] = ACTIONS(1547), - [anon_sym___declspec] = ACTIONS(1547), - [anon_sym___cdecl] = ACTIONS(1547), - [anon_sym___clrcall] = ACTIONS(1547), - [anon_sym___stdcall] = ACTIONS(1547), - [anon_sym___fastcall] = ACTIONS(1547), - [anon_sym___thiscall] = ACTIONS(1547), - [anon_sym___vectorcall] = ACTIONS(1547), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_auto] = ACTIONS(1547), - [anon_sym_register] = ACTIONS(1547), - [anon_sym_inline] = ACTIONS(1547), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1547), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_volatile] = ACTIONS(1547), - [anon_sym_restrict] = ACTIONS(1547), - [anon_sym__Atomic] = ACTIONS(1547), - [anon_sym_in] = ACTIONS(1547), - [anon_sym_out] = ACTIONS(1547), - [anon_sym_inout] = ACTIONS(1547), - [anon_sym_bycopy] = ACTIONS(1547), - [anon_sym_byref] = ACTIONS(1547), - [anon_sym_oneway] = ACTIONS(1547), - [anon_sym__Nullable] = ACTIONS(1547), - [anon_sym__Nonnull] = ACTIONS(1547), - [anon_sym__Nullable_result] = ACTIONS(1547), - [anon_sym__Null_unspecified] = ACTIONS(1547), - [anon_sym___autoreleasing] = ACTIONS(1547), - [anon_sym___nullable] = ACTIONS(1547), - [anon_sym___nonnull] = ACTIONS(1547), - [anon_sym___strong] = ACTIONS(1547), - [anon_sym___weak] = ACTIONS(1547), - [anon_sym___bridge] = ACTIONS(1547), - [anon_sym___bridge_transfer] = ACTIONS(1547), - [anon_sym___bridge_retained] = ACTIONS(1547), - [anon_sym___unsafe_unretained] = ACTIONS(1547), - [anon_sym___block] = ACTIONS(1547), - [anon_sym___kindof] = ACTIONS(1547), - [anon_sym___unused] = ACTIONS(1547), - [anon_sym__Complex] = ACTIONS(1547), - [anon_sym___complex] = ACTIONS(1547), - [anon_sym_IBOutlet] = ACTIONS(1547), - [anon_sym_IBInspectable] = ACTIONS(1547), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1547), - [anon_sym_signed] = ACTIONS(1547), - [anon_sym_unsigned] = ACTIONS(1547), - [anon_sym_long] = ACTIONS(1547), - [anon_sym_short] = ACTIONS(1547), - [sym_primitive_type] = ACTIONS(1547), - [anon_sym_enum] = ACTIONS(1547), - [anon_sym_NS_ENUM] = ACTIONS(1547), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1547), - [anon_sym_NS_OPTIONS] = ACTIONS(1547), - [anon_sym_struct] = ACTIONS(1547), - [anon_sym_union] = ACTIONS(1547), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1547), - [anon_sym_ATend] = ACTIONS(1545), - [sym_optional] = ACTIONS(1545), - [sym_required] = ACTIONS(1545), - [anon_sym_ATproperty] = ACTIONS(1545), - [sym_method_attribute_specifier] = ACTIONS(1547), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1547), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1547), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1547), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1547), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1547), - [anon_sym_NS_AVAILABLE] = ACTIONS(1547), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1547), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_API_AVAILABLE] = ACTIONS(1547), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_API_DEPRECATED] = ACTIONS(1547), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1547), - [anon_sym___deprecated_msg] = ACTIONS(1547), - [anon_sym___deprecated_enum_msg] = ACTIONS(1547), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1547), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1547), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1547), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1547), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1547), - [anon_sym_ATsynthesize] = ACTIONS(1545), - [anon_sym_ATdynamic] = ACTIONS(1545), - [anon_sym_typeof] = ACTIONS(1547), - [anon_sym___typeof] = ACTIONS(1547), - [anon_sym___typeof__] = ACTIONS(1547), - [sym_id] = ACTIONS(1547), - [sym_instancetype] = ACTIONS(1547), - [sym_Class] = ACTIONS(1547), - [sym_SEL] = ACTIONS(1547), - [sym_IMP] = ACTIONS(1547), - [sym_BOOL] = ACTIONS(1547), - [sym_auto] = ACTIONS(1547), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2973] = { - [sym_identifier] = ACTIONS(1539), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_typedef] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym___attribute] = ACTIONS(1539), - [anon_sym___attribute__] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1539), - [anon_sym___cdecl] = ACTIONS(1539), - [anon_sym___clrcall] = ACTIONS(1539), - [anon_sym___stdcall] = ACTIONS(1539), - [anon_sym___fastcall] = ACTIONS(1539), - [anon_sym___thiscall] = ACTIONS(1539), - [anon_sym___vectorcall] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_auto] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_inline] = ACTIONS(1539), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_volatile] = ACTIONS(1539), - [anon_sym_restrict] = ACTIONS(1539), - [anon_sym__Atomic] = ACTIONS(1539), - [anon_sym_in] = ACTIONS(1539), - [anon_sym_out] = ACTIONS(1539), - [anon_sym_inout] = ACTIONS(1539), - [anon_sym_bycopy] = ACTIONS(1539), - [anon_sym_byref] = ACTIONS(1539), - [anon_sym_oneway] = ACTIONS(1539), - [anon_sym__Nullable] = ACTIONS(1539), - [anon_sym__Nonnull] = ACTIONS(1539), - [anon_sym__Nullable_result] = ACTIONS(1539), - [anon_sym__Null_unspecified] = ACTIONS(1539), - [anon_sym___autoreleasing] = ACTIONS(1539), - [anon_sym___nullable] = ACTIONS(1539), - [anon_sym___nonnull] = ACTIONS(1539), - [anon_sym___strong] = ACTIONS(1539), - [anon_sym___weak] = ACTIONS(1539), - [anon_sym___bridge] = ACTIONS(1539), - [anon_sym___bridge_transfer] = ACTIONS(1539), - [anon_sym___bridge_retained] = ACTIONS(1539), - [anon_sym___unsafe_unretained] = ACTIONS(1539), - [anon_sym___block] = ACTIONS(1539), - [anon_sym___kindof] = ACTIONS(1539), - [anon_sym___unused] = ACTIONS(1539), - [anon_sym__Complex] = ACTIONS(1539), - [anon_sym___complex] = ACTIONS(1539), - [anon_sym_IBOutlet] = ACTIONS(1539), - [anon_sym_IBInspectable] = ACTIONS(1539), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1539), - [anon_sym_signed] = ACTIONS(1539), - [anon_sym_unsigned] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_NS_ENUM] = ACTIONS(1539), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1539), - [anon_sym_NS_OPTIONS] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1539), - [anon_sym_ATend] = ACTIONS(1537), - [sym_optional] = ACTIONS(1537), - [sym_required] = ACTIONS(1537), - [anon_sym_ATproperty] = ACTIONS(1537), - [sym_method_attribute_specifier] = ACTIONS(1539), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1539), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE] = ACTIONS(1539), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_API_AVAILABLE] = ACTIONS(1539), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_API_DEPRECATED] = ACTIONS(1539), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1539), - [anon_sym___deprecated_msg] = ACTIONS(1539), - [anon_sym___deprecated_enum_msg] = ACTIONS(1539), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1539), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1539), - [anon_sym_ATsynthesize] = ACTIONS(1537), - [anon_sym_ATdynamic] = ACTIONS(1537), - [anon_sym_typeof] = ACTIONS(1539), - [anon_sym___typeof] = ACTIONS(1539), - [anon_sym___typeof__] = ACTIONS(1539), - [sym_id] = ACTIONS(1539), - [sym_instancetype] = ACTIONS(1539), - [sym_Class] = ACTIONS(1539), - [sym_SEL] = ACTIONS(1539), - [sym_IMP] = ACTIONS(1539), - [sym_BOOL] = ACTIONS(1539), - [sym_auto] = ACTIONS(1539), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2974] = { - [sym__declaration_specifiers] = STATE(4698), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_typedef] = ACTIONS(6898), + [2842] = { + [sym__declaration_specifiers] = STATE(4736), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), @@ -488414,35 +471819,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(829), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), @@ -488460,112 +471865,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2975] = { - [sym_identifier] = ACTIONS(1539), - [aux_sym_preproc_def_token1] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_typedef] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym___attribute] = ACTIONS(1539), - [anon_sym___attribute__] = ACTIONS(1539), - [anon_sym___declspec] = ACTIONS(1539), - [anon_sym___cdecl] = ACTIONS(1539), - [anon_sym___clrcall] = ACTIONS(1539), - [anon_sym___stdcall] = ACTIONS(1539), - [anon_sym___fastcall] = ACTIONS(1539), - [anon_sym___thiscall] = ACTIONS(1539), - [anon_sym___vectorcall] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_auto] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_inline] = ACTIONS(1539), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_volatile] = ACTIONS(1539), - [anon_sym_restrict] = ACTIONS(1539), - [anon_sym__Atomic] = ACTIONS(1539), - [anon_sym_in] = ACTIONS(1539), - [anon_sym_out] = ACTIONS(1539), - [anon_sym_inout] = ACTIONS(1539), - [anon_sym_bycopy] = ACTIONS(1539), - [anon_sym_byref] = ACTIONS(1539), - [anon_sym_oneway] = ACTIONS(1539), - [anon_sym__Nullable] = ACTIONS(1539), - [anon_sym__Nonnull] = ACTIONS(1539), - [anon_sym__Nullable_result] = ACTIONS(1539), - [anon_sym__Null_unspecified] = ACTIONS(1539), - [anon_sym___autoreleasing] = ACTIONS(1539), - [anon_sym___nullable] = ACTIONS(1539), - [anon_sym___nonnull] = ACTIONS(1539), - [anon_sym___strong] = ACTIONS(1539), - [anon_sym___weak] = ACTIONS(1539), - [anon_sym___bridge] = ACTIONS(1539), - [anon_sym___bridge_transfer] = ACTIONS(1539), - [anon_sym___bridge_retained] = ACTIONS(1539), - [anon_sym___unsafe_unretained] = ACTIONS(1539), - [anon_sym___block] = ACTIONS(1539), - [anon_sym___kindof] = ACTIONS(1539), - [anon_sym___unused] = ACTIONS(1539), - [anon_sym__Complex] = ACTIONS(1539), - [anon_sym___complex] = ACTIONS(1539), - [anon_sym_IBOutlet] = ACTIONS(1539), - [anon_sym_IBInspectable] = ACTIONS(1539), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1539), - [anon_sym_signed] = ACTIONS(1539), - [anon_sym_unsigned] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1539), - [anon_sym_enum] = ACTIONS(1539), - [anon_sym_NS_ENUM] = ACTIONS(1539), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1539), - [anon_sym_NS_OPTIONS] = ACTIONS(1539), - [anon_sym_struct] = ACTIONS(1539), - [anon_sym_union] = ACTIONS(1539), + [2843] = { + [sym_identifier] = ACTIONS(1441), + [aux_sym_preproc_def_token1] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_typedef] = ACTIONS(1441), + [anon_sym_extern] = ACTIONS(1441), + [anon_sym___attribute] = ACTIONS(1441), + [anon_sym___attribute__] = ACTIONS(1441), + [anon_sym___declspec] = ACTIONS(1441), + [anon_sym___cdecl] = ACTIONS(1441), + [anon_sym___clrcall] = ACTIONS(1441), + [anon_sym___stdcall] = ACTIONS(1441), + [anon_sym___fastcall] = ACTIONS(1441), + [anon_sym___thiscall] = ACTIONS(1441), + [anon_sym___vectorcall] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_auto] = ACTIONS(1441), + [anon_sym_register] = ACTIONS(1441), + [anon_sym_inline] = ACTIONS(1441), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_volatile] = ACTIONS(1441), + [anon_sym_restrict] = ACTIONS(1441), + [anon_sym__Atomic] = ACTIONS(1441), + [anon_sym_in] = ACTIONS(1441), + [anon_sym_out] = ACTIONS(1441), + [anon_sym_inout] = ACTIONS(1441), + [anon_sym_bycopy] = ACTIONS(1441), + [anon_sym_byref] = ACTIONS(1441), + [anon_sym_oneway] = ACTIONS(1441), + [anon_sym__Nullable] = ACTIONS(1441), + [anon_sym__Nonnull] = ACTIONS(1441), + [anon_sym__Nullable_result] = ACTIONS(1441), + [anon_sym__Null_unspecified] = ACTIONS(1441), + [anon_sym___autoreleasing] = ACTIONS(1441), + [anon_sym___nullable] = ACTIONS(1441), + [anon_sym___nonnull] = ACTIONS(1441), + [anon_sym___strong] = ACTIONS(1441), + [anon_sym___weak] = ACTIONS(1441), + [anon_sym___bridge] = ACTIONS(1441), + [anon_sym___bridge_transfer] = ACTIONS(1441), + [anon_sym___bridge_retained] = ACTIONS(1441), + [anon_sym___unsafe_unretained] = ACTIONS(1441), + [anon_sym___block] = ACTIONS(1441), + [anon_sym___kindof] = ACTIONS(1441), + [anon_sym___unused] = ACTIONS(1441), + [anon_sym__Complex] = ACTIONS(1441), + [anon_sym___complex] = ACTIONS(1441), + [anon_sym_IBOutlet] = ACTIONS(1441), + [anon_sym_IBInspectable] = ACTIONS(1441), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1441), + [anon_sym_signed] = ACTIONS(1441), + [anon_sym_unsigned] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [sym_primitive_type] = ACTIONS(1441), + [anon_sym_enum] = ACTIONS(1441), + [anon_sym_struct] = ACTIONS(1441), + [anon_sym_union] = ACTIONS(1441), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1539), - [anon_sym_ATend] = ACTIONS(1537), - [sym_optional] = ACTIONS(1537), - [sym_required] = ACTIONS(1537), - [anon_sym_ATproperty] = ACTIONS(1537), - [sym_method_attribute_specifier] = ACTIONS(1539), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1539), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1539), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE] = ACTIONS(1539), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1539), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_API_AVAILABLE] = ACTIONS(1539), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_API_DEPRECATED] = ACTIONS(1539), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1539), - [anon_sym___deprecated_msg] = ACTIONS(1539), - [anon_sym___deprecated_enum_msg] = ACTIONS(1539), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1539), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1539), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1539), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1539), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1539), - [anon_sym_ATsynthesize] = ACTIONS(1537), - [anon_sym_ATdynamic] = ACTIONS(1537), - [anon_sym_typeof] = ACTIONS(1539), - [anon_sym___typeof] = ACTIONS(1539), - [anon_sym___typeof__] = ACTIONS(1539), - [sym_id] = ACTIONS(1539), - [sym_instancetype] = ACTIONS(1539), - [sym_Class] = ACTIONS(1539), - [sym_SEL] = ACTIONS(1539), - [sym_IMP] = ACTIONS(1539), - [sym_BOOL] = ACTIONS(1539), - [sym_auto] = ACTIONS(1539), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1441), + [anon_sym_ATend] = ACTIONS(1443), + [sym_optional] = ACTIONS(1443), + [sym_required] = ACTIONS(1443), + [anon_sym_ATproperty] = ACTIONS(1443), + [sym_method_attribute_specifier] = ACTIONS(1441), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1441), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1441), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1441), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1441), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1441), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1441), + [anon_sym_NS_AVAILABLE] = ACTIONS(1441), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1441), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1441), + [anon_sym_API_AVAILABLE] = ACTIONS(1441), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1441), + [anon_sym_API_DEPRECATED] = ACTIONS(1441), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1441), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1441), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1441), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1441), + [anon_sym___deprecated_msg] = ACTIONS(1441), + [anon_sym___deprecated_enum_msg] = ACTIONS(1441), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1441), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1441), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1441), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1441), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1441), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1441), + [anon_sym_ATsynthesize] = ACTIONS(1443), + [anon_sym_ATdynamic] = ACTIONS(1443), + [anon_sym_NS_ENUM] = ACTIONS(1441), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1441), + [anon_sym_NS_OPTIONS] = ACTIONS(1441), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym___typeof] = ACTIONS(1441), + [anon_sym___typeof__] = ACTIONS(1441), + [sym_id] = ACTIONS(1441), + [sym_instancetype] = ACTIONS(1441), + [sym_Class] = ACTIONS(1441), + [sym_SEL] = ACTIONS(1441), + [sym_IMP] = ACTIONS(1441), + [sym_BOOL] = ACTIONS(1441), + [sym_auto] = ACTIONS(1441), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -488573,911 +471978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2976] = { - [sym_identifier] = ACTIONS(6970), - [aux_sym_preproc_def_token1] = ACTIONS(6972), - [anon_sym_DASH] = ACTIONS(6972), - [anon_sym_PLUS] = ACTIONS(6972), - [anon_sym_typedef] = ACTIONS(6970), - [anon_sym_extern] = ACTIONS(6970), - [anon_sym___attribute] = ACTIONS(6970), - [anon_sym___attribute__] = ACTIONS(6970), - [anon_sym___declspec] = ACTIONS(6970), - [anon_sym___cdecl] = ACTIONS(6970), - [anon_sym___clrcall] = ACTIONS(6970), - [anon_sym___stdcall] = ACTIONS(6970), - [anon_sym___fastcall] = ACTIONS(6970), - [anon_sym___thiscall] = ACTIONS(6970), - [anon_sym___vectorcall] = ACTIONS(6970), - [anon_sym_static] = ACTIONS(6970), - [anon_sym_auto] = ACTIONS(6970), - [anon_sym_register] = ACTIONS(6970), - [anon_sym_inline] = ACTIONS(6970), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6970), - [anon_sym_const] = ACTIONS(6970), - [anon_sym_volatile] = ACTIONS(6970), - [anon_sym_restrict] = ACTIONS(6970), - [anon_sym__Atomic] = ACTIONS(6970), - [anon_sym_in] = ACTIONS(6970), - [anon_sym_out] = ACTIONS(6970), - [anon_sym_inout] = ACTIONS(6970), - [anon_sym_bycopy] = ACTIONS(6970), - [anon_sym_byref] = ACTIONS(6970), - [anon_sym_oneway] = ACTIONS(6970), - [anon_sym__Nullable] = ACTIONS(6970), - [anon_sym__Nonnull] = ACTIONS(6970), - [anon_sym__Nullable_result] = ACTIONS(6970), - [anon_sym__Null_unspecified] = ACTIONS(6970), - [anon_sym___autoreleasing] = ACTIONS(6970), - [anon_sym___nullable] = ACTIONS(6970), - [anon_sym___nonnull] = ACTIONS(6970), - [anon_sym___strong] = ACTIONS(6970), - [anon_sym___weak] = ACTIONS(6970), - [anon_sym___bridge] = ACTIONS(6970), - [anon_sym___bridge_transfer] = ACTIONS(6970), - [anon_sym___bridge_retained] = ACTIONS(6970), - [anon_sym___unsafe_unretained] = ACTIONS(6970), - [anon_sym___block] = ACTIONS(6970), - [anon_sym___kindof] = ACTIONS(6970), - [anon_sym___unused] = ACTIONS(6970), - [anon_sym__Complex] = ACTIONS(6970), - [anon_sym___complex] = ACTIONS(6970), - [anon_sym_IBOutlet] = ACTIONS(6970), - [anon_sym_IBInspectable] = ACTIONS(6970), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6970), - [anon_sym_signed] = ACTIONS(6970), - [anon_sym_unsigned] = ACTIONS(6970), - [anon_sym_long] = ACTIONS(6970), - [anon_sym_short] = ACTIONS(6970), - [sym_primitive_type] = ACTIONS(6970), - [anon_sym_enum] = ACTIONS(6970), - [anon_sym_NS_ENUM] = ACTIONS(6970), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(6970), - [anon_sym_NS_OPTIONS] = ACTIONS(6970), - [anon_sym_struct] = ACTIONS(6970), - [anon_sym_union] = ACTIONS(6970), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6970), - [anon_sym_ATend] = ACTIONS(6972), - [sym_optional] = ACTIONS(6972), - [sym_required] = ACTIONS(6972), - [anon_sym_ATproperty] = ACTIONS(6972), - [sym_method_attribute_specifier] = ACTIONS(6970), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6970), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6970), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6970), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6970), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6970), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6970), - [anon_sym_NS_AVAILABLE] = ACTIONS(6970), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6970), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6970), - [anon_sym_API_AVAILABLE] = ACTIONS(6970), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6970), - [anon_sym_API_DEPRECATED] = ACTIONS(6970), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6970), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6970), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6970), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6970), - [anon_sym___deprecated_msg] = ACTIONS(6970), - [anon_sym___deprecated_enum_msg] = ACTIONS(6970), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6970), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6970), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6970), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6970), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6970), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6970), - [anon_sym_ATsynthesize] = ACTIONS(6972), - [anon_sym_ATdynamic] = ACTIONS(6972), - [anon_sym_typeof] = ACTIONS(6970), - [anon_sym___typeof] = ACTIONS(6970), - [anon_sym___typeof__] = ACTIONS(6970), - [sym_id] = ACTIONS(6970), - [sym_instancetype] = ACTIONS(6970), - [sym_Class] = ACTIONS(6970), - [sym_SEL] = ACTIONS(6970), - [sym_IMP] = ACTIONS(6970), - [sym_BOOL] = ACTIONS(6970), - [sym_auto] = ACTIONS(6970), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2977] = { - [sym_type_qualifier] = STATE(2921), - [sym__expression] = STATE(4499), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_type_definition_repeat1] = STATE(2921), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(6974), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(6976), - [anon_sym_const] = ACTIONS(6922), - [anon_sym_volatile] = ACTIONS(6922), - [anon_sym_restrict] = ACTIONS(6922), - [anon_sym__Atomic] = ACTIONS(6922), - [anon_sym_in] = ACTIONS(6922), - [anon_sym_out] = ACTIONS(6922), - [anon_sym_inout] = ACTIONS(6922), - [anon_sym_bycopy] = ACTIONS(6922), - [anon_sym_byref] = ACTIONS(6922), - [anon_sym_oneway] = ACTIONS(6922), - [anon_sym__Nullable] = ACTIONS(6922), - [anon_sym__Nonnull] = ACTIONS(6922), - [anon_sym__Nullable_result] = ACTIONS(6922), - [anon_sym__Null_unspecified] = ACTIONS(6922), - [anon_sym___autoreleasing] = ACTIONS(6922), - [anon_sym___nullable] = ACTIONS(6922), - [anon_sym___nonnull] = ACTIONS(6922), - [anon_sym___strong] = ACTIONS(6922), - [anon_sym___weak] = ACTIONS(6922), - [anon_sym___bridge] = ACTIONS(6922), - [anon_sym___bridge_transfer] = ACTIONS(6922), - [anon_sym___bridge_retained] = ACTIONS(6922), - [anon_sym___unsafe_unretained] = ACTIONS(6922), - [anon_sym___block] = ACTIONS(6922), - [anon_sym___kindof] = ACTIONS(6922), - [anon_sym___unused] = ACTIONS(6922), - [anon_sym__Complex] = ACTIONS(6922), - [anon_sym___complex] = ACTIONS(6922), - [anon_sym_IBOutlet] = ACTIONS(6922), - [anon_sym_IBInspectable] = ACTIONS(6922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6922), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2978] = { - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_typedef] = ACTIONS(1499), - [anon_sym_extern] = ACTIONS(1499), - [anon_sym___attribute] = ACTIONS(1499), - [anon_sym___attribute__] = ACTIONS(1499), - [anon_sym___declspec] = ACTIONS(1499), - [anon_sym___cdecl] = ACTIONS(1499), - [anon_sym___clrcall] = ACTIONS(1499), - [anon_sym___stdcall] = ACTIONS(1499), - [anon_sym___fastcall] = ACTIONS(1499), - [anon_sym___thiscall] = ACTIONS(1499), - [anon_sym___vectorcall] = ACTIONS(1499), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_auto] = ACTIONS(1499), - [anon_sym_register] = ACTIONS(1499), - [anon_sym_inline] = ACTIONS(1499), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_volatile] = ACTIONS(1499), - [anon_sym_restrict] = ACTIONS(1499), - [anon_sym__Atomic] = ACTIONS(1499), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_out] = ACTIONS(1499), - [anon_sym_inout] = ACTIONS(1499), - [anon_sym_bycopy] = ACTIONS(1499), - [anon_sym_byref] = ACTIONS(1499), - [anon_sym_oneway] = ACTIONS(1499), - [anon_sym__Nullable] = ACTIONS(1499), - [anon_sym__Nonnull] = ACTIONS(1499), - [anon_sym__Nullable_result] = ACTIONS(1499), - [anon_sym__Null_unspecified] = ACTIONS(1499), - [anon_sym___autoreleasing] = ACTIONS(1499), - [anon_sym___nullable] = ACTIONS(1499), - [anon_sym___nonnull] = ACTIONS(1499), - [anon_sym___strong] = ACTIONS(1499), - [anon_sym___weak] = ACTIONS(1499), - [anon_sym___bridge] = ACTIONS(1499), - [anon_sym___bridge_transfer] = ACTIONS(1499), - [anon_sym___bridge_retained] = ACTIONS(1499), - [anon_sym___unsafe_unretained] = ACTIONS(1499), - [anon_sym___block] = ACTIONS(1499), - [anon_sym___kindof] = ACTIONS(1499), - [anon_sym___unused] = ACTIONS(1499), - [anon_sym__Complex] = ACTIONS(1499), - [anon_sym___complex] = ACTIONS(1499), - [anon_sym_IBOutlet] = ACTIONS(1499), - [anon_sym_IBInspectable] = ACTIONS(1499), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1499), - [anon_sym_signed] = ACTIONS(1499), - [anon_sym_unsigned] = ACTIONS(1499), - [anon_sym_long] = ACTIONS(1499), - [anon_sym_short] = ACTIONS(1499), - [sym_primitive_type] = ACTIONS(1499), - [anon_sym_enum] = ACTIONS(1499), - [anon_sym_NS_ENUM] = ACTIONS(1499), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1499), - [anon_sym_NS_OPTIONS] = ACTIONS(1499), - [anon_sym_struct] = ACTIONS(1499), - [anon_sym_union] = ACTIONS(1499), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1499), - [anon_sym_ATend] = ACTIONS(1497), - [sym_optional] = ACTIONS(1497), - [sym_required] = ACTIONS(1497), - [anon_sym_ATproperty] = ACTIONS(1497), - [sym_method_attribute_specifier] = ACTIONS(1499), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1499), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1499), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1499), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1499), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1499), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1499), - [anon_sym_NS_AVAILABLE] = ACTIONS(1499), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1499), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1499), - [anon_sym_API_AVAILABLE] = ACTIONS(1499), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1499), - [anon_sym_API_DEPRECATED] = ACTIONS(1499), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1499), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1499), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1499), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1499), - [anon_sym___deprecated_msg] = ACTIONS(1499), - [anon_sym___deprecated_enum_msg] = ACTIONS(1499), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1499), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1499), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1499), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1499), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1499), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1499), - [anon_sym_ATsynthesize] = ACTIONS(1497), - [anon_sym_ATdynamic] = ACTIONS(1497), - [anon_sym_typeof] = ACTIONS(1499), - [anon_sym___typeof] = ACTIONS(1499), - [anon_sym___typeof__] = ACTIONS(1499), - [sym_id] = ACTIONS(1499), - [sym_instancetype] = ACTIONS(1499), - [sym_Class] = ACTIONS(1499), - [sym_SEL] = ACTIONS(1499), - [sym_IMP] = ACTIONS(1499), - [sym_BOOL] = ACTIONS(1499), - [sym_auto] = ACTIONS(1499), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2979] = { - [sym_identifier] = ACTIONS(1495), - [aux_sym_preproc_def_token1] = ACTIONS(1493), - [anon_sym_DASH] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1493), - [anon_sym_typedef] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym___attribute] = ACTIONS(1495), - [anon_sym___attribute__] = ACTIONS(1495), - [anon_sym___declspec] = ACTIONS(1495), - [anon_sym___cdecl] = ACTIONS(1495), - [anon_sym___clrcall] = ACTIONS(1495), - [anon_sym___stdcall] = ACTIONS(1495), - [anon_sym___fastcall] = ACTIONS(1495), - [anon_sym___thiscall] = ACTIONS(1495), - [anon_sym___vectorcall] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_auto] = ACTIONS(1495), - [anon_sym_register] = ACTIONS(1495), - [anon_sym_inline] = ACTIONS(1495), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_volatile] = ACTIONS(1495), - [anon_sym_restrict] = ACTIONS(1495), - [anon_sym__Atomic] = ACTIONS(1495), - [anon_sym_in] = ACTIONS(1495), - [anon_sym_out] = ACTIONS(1495), - [anon_sym_inout] = ACTIONS(1495), - [anon_sym_bycopy] = ACTIONS(1495), - [anon_sym_byref] = ACTIONS(1495), - [anon_sym_oneway] = ACTIONS(1495), - [anon_sym__Nullable] = ACTIONS(1495), - [anon_sym__Nonnull] = ACTIONS(1495), - [anon_sym__Nullable_result] = ACTIONS(1495), - [anon_sym__Null_unspecified] = ACTIONS(1495), - [anon_sym___autoreleasing] = ACTIONS(1495), - [anon_sym___nullable] = ACTIONS(1495), - [anon_sym___nonnull] = ACTIONS(1495), - [anon_sym___strong] = ACTIONS(1495), - [anon_sym___weak] = ACTIONS(1495), - [anon_sym___bridge] = ACTIONS(1495), - [anon_sym___bridge_transfer] = ACTIONS(1495), - [anon_sym___bridge_retained] = ACTIONS(1495), - [anon_sym___unsafe_unretained] = ACTIONS(1495), - [anon_sym___block] = ACTIONS(1495), - [anon_sym___kindof] = ACTIONS(1495), - [anon_sym___unused] = ACTIONS(1495), - [anon_sym__Complex] = ACTIONS(1495), - [anon_sym___complex] = ACTIONS(1495), - [anon_sym_IBOutlet] = ACTIONS(1495), - [anon_sym_IBInspectable] = ACTIONS(1495), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1495), - [anon_sym_signed] = ACTIONS(1495), - [anon_sym_unsigned] = ACTIONS(1495), - [anon_sym_long] = ACTIONS(1495), - [anon_sym_short] = ACTIONS(1495), - [sym_primitive_type] = ACTIONS(1495), - [anon_sym_enum] = ACTIONS(1495), - [anon_sym_NS_ENUM] = ACTIONS(1495), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1495), - [anon_sym_NS_OPTIONS] = ACTIONS(1495), - [anon_sym_struct] = ACTIONS(1495), - [anon_sym_union] = ACTIONS(1495), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1495), - [anon_sym_ATend] = ACTIONS(1493), - [sym_optional] = ACTIONS(1493), - [sym_required] = ACTIONS(1493), - [anon_sym_ATproperty] = ACTIONS(1493), - [sym_method_attribute_specifier] = ACTIONS(1495), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1495), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1495), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1495), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1495), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1495), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1495), - [anon_sym_NS_AVAILABLE] = ACTIONS(1495), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1495), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1495), - [anon_sym_API_AVAILABLE] = ACTIONS(1495), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1495), - [anon_sym_API_DEPRECATED] = ACTIONS(1495), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1495), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1495), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1495), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1495), - [anon_sym___deprecated_msg] = ACTIONS(1495), - [anon_sym___deprecated_enum_msg] = ACTIONS(1495), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1495), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1495), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1495), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1495), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1495), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1495), - [anon_sym_ATsynthesize] = ACTIONS(1493), - [anon_sym_ATdynamic] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___typeof] = ACTIONS(1495), - [anon_sym___typeof__] = ACTIONS(1495), - [sym_id] = ACTIONS(1495), - [sym_instancetype] = ACTIONS(1495), - [sym_Class] = ACTIONS(1495), - [sym_SEL] = ACTIONS(1495), - [sym_IMP] = ACTIONS(1495), - [sym_BOOL] = ACTIONS(1495), - [sym_auto] = ACTIONS(1495), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2980] = { - [sym_identifier] = ACTIONS(1645), - [aux_sym_preproc_def_token1] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_typedef] = ACTIONS(1645), - [anon_sym_extern] = ACTIONS(1645), - [anon_sym___attribute] = ACTIONS(1645), - [anon_sym___attribute__] = ACTIONS(1645), - [anon_sym___declspec] = ACTIONS(1645), - [anon_sym___cdecl] = ACTIONS(1645), - [anon_sym___clrcall] = ACTIONS(1645), - [anon_sym___stdcall] = ACTIONS(1645), - [anon_sym___fastcall] = ACTIONS(1645), - [anon_sym___thiscall] = ACTIONS(1645), - [anon_sym___vectorcall] = ACTIONS(1645), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_auto] = ACTIONS(1645), - [anon_sym_register] = ACTIONS(1645), - [anon_sym_inline] = ACTIONS(1645), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_volatile] = ACTIONS(1645), - [anon_sym_restrict] = ACTIONS(1645), - [anon_sym__Atomic] = ACTIONS(1645), - [anon_sym_in] = ACTIONS(1645), - [anon_sym_out] = ACTIONS(1645), - [anon_sym_inout] = ACTIONS(1645), - [anon_sym_bycopy] = ACTIONS(1645), - [anon_sym_byref] = ACTIONS(1645), - [anon_sym_oneway] = ACTIONS(1645), - [anon_sym__Nullable] = ACTIONS(1645), - [anon_sym__Nonnull] = ACTIONS(1645), - [anon_sym__Nullable_result] = ACTIONS(1645), - [anon_sym__Null_unspecified] = ACTIONS(1645), - [anon_sym___autoreleasing] = ACTIONS(1645), - [anon_sym___nullable] = ACTIONS(1645), - [anon_sym___nonnull] = ACTIONS(1645), - [anon_sym___strong] = ACTIONS(1645), - [anon_sym___weak] = ACTIONS(1645), - [anon_sym___bridge] = ACTIONS(1645), - [anon_sym___bridge_transfer] = ACTIONS(1645), - [anon_sym___bridge_retained] = ACTIONS(1645), - [anon_sym___unsafe_unretained] = ACTIONS(1645), - [anon_sym___block] = ACTIONS(1645), - [anon_sym___kindof] = ACTIONS(1645), - [anon_sym___unused] = ACTIONS(1645), - [anon_sym__Complex] = ACTIONS(1645), - [anon_sym___complex] = ACTIONS(1645), - [anon_sym_IBOutlet] = ACTIONS(1645), - [anon_sym_IBInspectable] = ACTIONS(1645), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1645), - [anon_sym_signed] = ACTIONS(1645), - [anon_sym_unsigned] = ACTIONS(1645), - [anon_sym_long] = ACTIONS(1645), - [anon_sym_short] = ACTIONS(1645), - [sym_primitive_type] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1645), - [anon_sym_NS_ENUM] = ACTIONS(1645), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1645), - [anon_sym_NS_OPTIONS] = ACTIONS(1645), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_union] = ACTIONS(1645), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1645), - [anon_sym_ATend] = ACTIONS(1647), - [sym_optional] = ACTIONS(1647), - [sym_required] = ACTIONS(1647), - [anon_sym_ATproperty] = ACTIONS(1647), - [sym_method_attribute_specifier] = ACTIONS(1645), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1645), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1645), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1645), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1645), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1645), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1645), - [anon_sym_NS_AVAILABLE] = ACTIONS(1645), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1645), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1645), - [anon_sym_API_AVAILABLE] = ACTIONS(1645), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1645), - [anon_sym_API_DEPRECATED] = ACTIONS(1645), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1645), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1645), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1645), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1645), - [anon_sym___deprecated_msg] = ACTIONS(1645), - [anon_sym___deprecated_enum_msg] = ACTIONS(1645), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1645), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1645), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1645), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1645), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1645), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1645), - [anon_sym_ATsynthesize] = ACTIONS(1647), - [anon_sym_ATdynamic] = ACTIONS(1647), - [anon_sym_typeof] = ACTIONS(1645), - [anon_sym___typeof] = ACTIONS(1645), - [anon_sym___typeof__] = ACTIONS(1645), - [sym_id] = ACTIONS(1645), - [sym_instancetype] = ACTIONS(1645), - [sym_Class] = ACTIONS(1645), - [sym_SEL] = ACTIONS(1645), - [sym_IMP] = ACTIONS(1645), - [sym_BOOL] = ACTIONS(1645), - [sym_auto] = ACTIONS(1645), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2981] = { - [sym_type_qualifier] = STATE(3454), - [sym__expression] = STATE(4522), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_type_definition_repeat1] = STATE(3454), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(6978), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(6980), - [anon_sym_const] = ACTIONS(6922), - [anon_sym_volatile] = ACTIONS(6922), - [anon_sym_restrict] = ACTIONS(6922), - [anon_sym__Atomic] = ACTIONS(6922), - [anon_sym_in] = ACTIONS(6922), - [anon_sym_out] = ACTIONS(6922), - [anon_sym_inout] = ACTIONS(6922), - [anon_sym_bycopy] = ACTIONS(6922), - [anon_sym_byref] = ACTIONS(6922), - [anon_sym_oneway] = ACTIONS(6922), - [anon_sym__Nullable] = ACTIONS(6922), - [anon_sym__Nonnull] = ACTIONS(6922), - [anon_sym__Nullable_result] = ACTIONS(6922), - [anon_sym__Null_unspecified] = ACTIONS(6922), - [anon_sym___autoreleasing] = ACTIONS(6922), - [anon_sym___nullable] = ACTIONS(6922), - [anon_sym___nonnull] = ACTIONS(6922), - [anon_sym___strong] = ACTIONS(6922), - [anon_sym___weak] = ACTIONS(6922), - [anon_sym___bridge] = ACTIONS(6922), - [anon_sym___bridge_transfer] = ACTIONS(6922), - [anon_sym___bridge_retained] = ACTIONS(6922), - [anon_sym___unsafe_unretained] = ACTIONS(6922), - [anon_sym___block] = ACTIONS(6922), - [anon_sym___kindof] = ACTIONS(6922), - [anon_sym___unused] = ACTIONS(6922), - [anon_sym__Complex] = ACTIONS(6922), - [anon_sym___complex] = ACTIONS(6922), - [anon_sym_IBOutlet] = ACTIONS(6922), - [anon_sym_IBInspectable] = ACTIONS(6922), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6922), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2982] = { - [sym_identifier] = ACTIONS(1491), - [aux_sym_preproc_def_token1] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_typedef] = ACTIONS(1491), - [anon_sym_extern] = ACTIONS(1491), - [anon_sym___attribute] = ACTIONS(1491), - [anon_sym___attribute__] = ACTIONS(1491), - [anon_sym___declspec] = ACTIONS(1491), - [anon_sym___cdecl] = ACTIONS(1491), - [anon_sym___clrcall] = ACTIONS(1491), - [anon_sym___stdcall] = ACTIONS(1491), - [anon_sym___fastcall] = ACTIONS(1491), - [anon_sym___thiscall] = ACTIONS(1491), - [anon_sym___vectorcall] = ACTIONS(1491), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_auto] = ACTIONS(1491), - [anon_sym_register] = ACTIONS(1491), - [anon_sym_inline] = ACTIONS(1491), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_volatile] = ACTIONS(1491), - [anon_sym_restrict] = ACTIONS(1491), - [anon_sym__Atomic] = ACTIONS(1491), - [anon_sym_in] = ACTIONS(1491), - [anon_sym_out] = ACTIONS(1491), - [anon_sym_inout] = ACTIONS(1491), - [anon_sym_bycopy] = ACTIONS(1491), - [anon_sym_byref] = ACTIONS(1491), - [anon_sym_oneway] = ACTIONS(1491), - [anon_sym__Nullable] = ACTIONS(1491), - [anon_sym__Nonnull] = ACTIONS(1491), - [anon_sym__Nullable_result] = ACTIONS(1491), - [anon_sym__Null_unspecified] = ACTIONS(1491), - [anon_sym___autoreleasing] = ACTIONS(1491), - [anon_sym___nullable] = ACTIONS(1491), - [anon_sym___nonnull] = ACTIONS(1491), - [anon_sym___strong] = ACTIONS(1491), - [anon_sym___weak] = ACTIONS(1491), - [anon_sym___bridge] = ACTIONS(1491), - [anon_sym___bridge_transfer] = ACTIONS(1491), - [anon_sym___bridge_retained] = ACTIONS(1491), - [anon_sym___unsafe_unretained] = ACTIONS(1491), - [anon_sym___block] = ACTIONS(1491), - [anon_sym___kindof] = ACTIONS(1491), - [anon_sym___unused] = ACTIONS(1491), - [anon_sym__Complex] = ACTIONS(1491), - [anon_sym___complex] = ACTIONS(1491), - [anon_sym_IBOutlet] = ACTIONS(1491), - [anon_sym_IBInspectable] = ACTIONS(1491), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1491), - [anon_sym_signed] = ACTIONS(1491), - [anon_sym_unsigned] = ACTIONS(1491), - [anon_sym_long] = ACTIONS(1491), - [anon_sym_short] = ACTIONS(1491), - [sym_primitive_type] = ACTIONS(1491), - [anon_sym_enum] = ACTIONS(1491), - [anon_sym_NS_ENUM] = ACTIONS(1491), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1491), - [anon_sym_NS_OPTIONS] = ACTIONS(1491), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1491), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1491), - [anon_sym_ATend] = ACTIONS(1489), - [sym_optional] = ACTIONS(1489), - [sym_required] = ACTIONS(1489), - [anon_sym_ATproperty] = ACTIONS(1489), - [sym_method_attribute_specifier] = ACTIONS(1491), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1491), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1491), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1491), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1491), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1491), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1491), - [anon_sym_NS_AVAILABLE] = ACTIONS(1491), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1491), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1491), - [anon_sym_API_AVAILABLE] = ACTIONS(1491), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1491), - [anon_sym_API_DEPRECATED] = ACTIONS(1491), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1491), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1491), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1491), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1491), - [anon_sym___deprecated_msg] = ACTIONS(1491), - [anon_sym___deprecated_enum_msg] = ACTIONS(1491), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1491), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1491), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1491), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1491), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1491), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1491), - [anon_sym_ATsynthesize] = ACTIONS(1489), - [anon_sym_ATdynamic] = ACTIONS(1489), - [anon_sym_typeof] = ACTIONS(1491), - [anon_sym___typeof] = ACTIONS(1491), - [anon_sym___typeof__] = ACTIONS(1491), - [sym_id] = ACTIONS(1491), - [sym_instancetype] = ACTIONS(1491), - [sym_Class] = ACTIONS(1491), - [sym_SEL] = ACTIONS(1491), - [sym_IMP] = ACTIONS(1491), - [sym_BOOL] = ACTIONS(1491), - [sym_auto] = ACTIONS(1491), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2983] = { - [sym_identifier] = ACTIONS(1475), - [aux_sym_preproc_def_token1] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_typedef] = ACTIONS(1475), - [anon_sym_extern] = ACTIONS(1475), - [anon_sym___attribute] = ACTIONS(1475), - [anon_sym___attribute__] = ACTIONS(1475), - [anon_sym___declspec] = ACTIONS(1475), - [anon_sym___cdecl] = ACTIONS(1475), - [anon_sym___clrcall] = ACTIONS(1475), - [anon_sym___stdcall] = ACTIONS(1475), - [anon_sym___fastcall] = ACTIONS(1475), - [anon_sym___thiscall] = ACTIONS(1475), - [anon_sym___vectorcall] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_auto] = ACTIONS(1475), - [anon_sym_register] = ACTIONS(1475), - [anon_sym_inline] = ACTIONS(1475), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_volatile] = ACTIONS(1475), - [anon_sym_restrict] = ACTIONS(1475), - [anon_sym__Atomic] = ACTIONS(1475), - [anon_sym_in] = ACTIONS(1475), - [anon_sym_out] = ACTIONS(1475), - [anon_sym_inout] = ACTIONS(1475), - [anon_sym_bycopy] = ACTIONS(1475), - [anon_sym_byref] = ACTIONS(1475), - [anon_sym_oneway] = ACTIONS(1475), - [anon_sym__Nullable] = ACTIONS(1475), - [anon_sym__Nonnull] = ACTIONS(1475), - [anon_sym__Nullable_result] = ACTIONS(1475), - [anon_sym__Null_unspecified] = ACTIONS(1475), - [anon_sym___autoreleasing] = ACTIONS(1475), - [anon_sym___nullable] = ACTIONS(1475), - [anon_sym___nonnull] = ACTIONS(1475), - [anon_sym___strong] = ACTIONS(1475), - [anon_sym___weak] = ACTIONS(1475), - [anon_sym___bridge] = ACTIONS(1475), - [anon_sym___bridge_transfer] = ACTIONS(1475), - [anon_sym___bridge_retained] = ACTIONS(1475), - [anon_sym___unsafe_unretained] = ACTIONS(1475), - [anon_sym___block] = ACTIONS(1475), - [anon_sym___kindof] = ACTIONS(1475), - [anon_sym___unused] = ACTIONS(1475), - [anon_sym__Complex] = ACTIONS(1475), - [anon_sym___complex] = ACTIONS(1475), - [anon_sym_IBOutlet] = ACTIONS(1475), - [anon_sym_IBInspectable] = ACTIONS(1475), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1475), - [anon_sym_signed] = ACTIONS(1475), - [anon_sym_unsigned] = ACTIONS(1475), - [anon_sym_long] = ACTIONS(1475), - [anon_sym_short] = ACTIONS(1475), - [sym_primitive_type] = ACTIONS(1475), - [anon_sym_enum] = ACTIONS(1475), - [anon_sym_NS_ENUM] = ACTIONS(1475), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1475), - [anon_sym_NS_OPTIONS] = ACTIONS(1475), - [anon_sym_struct] = ACTIONS(1475), - [anon_sym_union] = ACTIONS(1475), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1475), - [anon_sym_ATend] = ACTIONS(1473), - [sym_optional] = ACTIONS(1473), - [sym_required] = ACTIONS(1473), - [anon_sym_ATproperty] = ACTIONS(1473), - [sym_method_attribute_specifier] = ACTIONS(1475), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1475), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1475), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1475), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1475), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1475), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1475), - [anon_sym_NS_AVAILABLE] = ACTIONS(1475), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1475), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1475), - [anon_sym_API_AVAILABLE] = ACTIONS(1475), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1475), - [anon_sym_API_DEPRECATED] = ACTIONS(1475), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1475), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1475), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1475), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1475), - [anon_sym___deprecated_msg] = ACTIONS(1475), - [anon_sym___deprecated_enum_msg] = ACTIONS(1475), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1475), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1475), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1475), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1475), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1475), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1475), - [anon_sym_ATsynthesize] = ACTIONS(1473), - [anon_sym_ATdynamic] = ACTIONS(1473), - [anon_sym_typeof] = ACTIONS(1475), - [anon_sym___typeof] = ACTIONS(1475), - [anon_sym___typeof__] = ACTIONS(1475), - [sym_id] = ACTIONS(1475), - [sym_instancetype] = ACTIONS(1475), - [sym_Class] = ACTIONS(1475), - [sym_SEL] = ACTIONS(1475), - [sym_IMP] = ACTIONS(1475), - [sym_BOOL] = ACTIONS(1475), - [sym_auto] = ACTIONS(1475), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [2984] = { + [2844] = { [sym_identifier] = ACTIONS(1471), [aux_sym_preproc_def_token1] = ACTIONS(1469), [anon_sym_DASH] = ACTIONS(1469), @@ -489535,9 +472036,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(1471), [sym_primitive_type] = ACTIONS(1471), [anon_sym_enum] = ACTIONS(1471), - [anon_sym_NS_ENUM] = ACTIONS(1471), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1471), - [anon_sym_NS_OPTIONS] = ACTIONS(1471), [anon_sym_struct] = ACTIONS(1471), [anon_sym_union] = ACTIONS(1471), [sym_comment] = ACTIONS(3), @@ -489573,6 +472071,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_SWIFT_NAME] = ACTIONS(1471), [anon_sym_ATsynthesize] = ACTIONS(1469), [anon_sym_ATdynamic] = ACTIONS(1469), + [anon_sym_NS_ENUM] = ACTIONS(1471), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1471), + [anon_sym_NS_OPTIONS] = ACTIONS(1471), [anon_sym_typeof] = ACTIONS(1471), [anon_sym___typeof] = ACTIONS(1471), [anon_sym___typeof__] = ACTIONS(1471), @@ -489590,112 +472091,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2985] = { - [sym_identifier] = ACTIONS(1451), - [aux_sym_preproc_def_token1] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_typedef] = ACTIONS(1451), - [anon_sym_extern] = ACTIONS(1451), - [anon_sym___attribute] = ACTIONS(1451), - [anon_sym___attribute__] = ACTIONS(1451), - [anon_sym___declspec] = ACTIONS(1451), - [anon_sym___cdecl] = ACTIONS(1451), - [anon_sym___clrcall] = ACTIONS(1451), - [anon_sym___stdcall] = ACTIONS(1451), - [anon_sym___fastcall] = ACTIONS(1451), - [anon_sym___thiscall] = ACTIONS(1451), - [anon_sym___vectorcall] = ACTIONS(1451), - [anon_sym_static] = ACTIONS(1451), - [anon_sym_auto] = ACTIONS(1451), - [anon_sym_register] = ACTIONS(1451), - [anon_sym_inline] = ACTIONS(1451), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1451), - [anon_sym_const] = ACTIONS(1451), - [anon_sym_volatile] = ACTIONS(1451), - [anon_sym_restrict] = ACTIONS(1451), - [anon_sym__Atomic] = ACTIONS(1451), - [anon_sym_in] = ACTIONS(1451), - [anon_sym_out] = ACTIONS(1451), - [anon_sym_inout] = ACTIONS(1451), - [anon_sym_bycopy] = ACTIONS(1451), - [anon_sym_byref] = ACTIONS(1451), - [anon_sym_oneway] = ACTIONS(1451), - [anon_sym__Nullable] = ACTIONS(1451), - [anon_sym__Nonnull] = ACTIONS(1451), - [anon_sym__Nullable_result] = ACTIONS(1451), - [anon_sym__Null_unspecified] = ACTIONS(1451), - [anon_sym___autoreleasing] = ACTIONS(1451), - [anon_sym___nullable] = ACTIONS(1451), - [anon_sym___nonnull] = ACTIONS(1451), - [anon_sym___strong] = ACTIONS(1451), - [anon_sym___weak] = ACTIONS(1451), - [anon_sym___bridge] = ACTIONS(1451), - [anon_sym___bridge_transfer] = ACTIONS(1451), - [anon_sym___bridge_retained] = ACTIONS(1451), - [anon_sym___unsafe_unretained] = ACTIONS(1451), - [anon_sym___block] = ACTIONS(1451), - [anon_sym___kindof] = ACTIONS(1451), - [anon_sym___unused] = ACTIONS(1451), - [anon_sym__Complex] = ACTIONS(1451), - [anon_sym___complex] = ACTIONS(1451), - [anon_sym_IBOutlet] = ACTIONS(1451), - [anon_sym_IBInspectable] = ACTIONS(1451), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1451), - [anon_sym_signed] = ACTIONS(1451), - [anon_sym_unsigned] = ACTIONS(1451), - [anon_sym_long] = ACTIONS(1451), - [anon_sym_short] = ACTIONS(1451), - [sym_primitive_type] = ACTIONS(1451), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_NS_ENUM] = ACTIONS(1451), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1451), - [anon_sym_NS_OPTIONS] = ACTIONS(1451), - [anon_sym_struct] = ACTIONS(1451), - [anon_sym_union] = ACTIONS(1451), + [2845] = { + [sym_identifier] = ACTIONS(1229), + [aux_sym_preproc_def_token1] = ACTIONS(1227), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_typedef] = ACTIONS(1229), + [anon_sym_extern] = ACTIONS(1229), + [anon_sym___attribute] = ACTIONS(1229), + [anon_sym___attribute__] = ACTIONS(1229), + [anon_sym___declspec] = ACTIONS(1229), + [anon_sym___cdecl] = ACTIONS(1229), + [anon_sym___clrcall] = ACTIONS(1229), + [anon_sym___stdcall] = ACTIONS(1229), + [anon_sym___fastcall] = ACTIONS(1229), + [anon_sym___thiscall] = ACTIONS(1229), + [anon_sym___vectorcall] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1229), + [anon_sym_auto] = ACTIONS(1229), + [anon_sym_register] = ACTIONS(1229), + [anon_sym_inline] = ACTIONS(1229), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [anon_sym_volatile] = ACTIONS(1229), + [anon_sym_restrict] = ACTIONS(1229), + [anon_sym__Atomic] = ACTIONS(1229), + [anon_sym_in] = ACTIONS(1229), + [anon_sym_out] = ACTIONS(1229), + [anon_sym_inout] = ACTIONS(1229), + [anon_sym_bycopy] = ACTIONS(1229), + [anon_sym_byref] = ACTIONS(1229), + [anon_sym_oneway] = ACTIONS(1229), + [anon_sym__Nullable] = ACTIONS(1229), + [anon_sym__Nonnull] = ACTIONS(1229), + [anon_sym__Nullable_result] = ACTIONS(1229), + [anon_sym__Null_unspecified] = ACTIONS(1229), + [anon_sym___autoreleasing] = ACTIONS(1229), + [anon_sym___nullable] = ACTIONS(1229), + [anon_sym___nonnull] = ACTIONS(1229), + [anon_sym___strong] = ACTIONS(1229), + [anon_sym___weak] = ACTIONS(1229), + [anon_sym___bridge] = ACTIONS(1229), + [anon_sym___bridge_transfer] = ACTIONS(1229), + [anon_sym___bridge_retained] = ACTIONS(1229), + [anon_sym___unsafe_unretained] = ACTIONS(1229), + [anon_sym___block] = ACTIONS(1229), + [anon_sym___kindof] = ACTIONS(1229), + [anon_sym___unused] = ACTIONS(1229), + [anon_sym__Complex] = ACTIONS(1229), + [anon_sym___complex] = ACTIONS(1229), + [anon_sym_IBOutlet] = ACTIONS(1229), + [anon_sym_IBInspectable] = ACTIONS(1229), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1229), + [anon_sym_signed] = ACTIONS(1229), + [anon_sym_unsigned] = ACTIONS(1229), + [anon_sym_long] = ACTIONS(1229), + [anon_sym_short] = ACTIONS(1229), + [sym_primitive_type] = ACTIONS(1229), + [anon_sym_enum] = ACTIONS(1229), + [anon_sym_struct] = ACTIONS(1229), + [anon_sym_union] = ACTIONS(1229), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1451), - [anon_sym_ATend] = ACTIONS(1449), - [sym_optional] = ACTIONS(1449), - [sym_required] = ACTIONS(1449), - [anon_sym_ATproperty] = ACTIONS(1449), - [sym_method_attribute_specifier] = ACTIONS(1451), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1451), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1451), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1451), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1451), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1451), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1451), - [anon_sym_NS_AVAILABLE] = ACTIONS(1451), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1451), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1451), - [anon_sym_API_AVAILABLE] = ACTIONS(1451), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1451), - [anon_sym_API_DEPRECATED] = ACTIONS(1451), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1451), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1451), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1451), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1451), - [anon_sym___deprecated_msg] = ACTIONS(1451), - [anon_sym___deprecated_enum_msg] = ACTIONS(1451), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1451), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1451), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1451), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1451), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1451), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1451), - [anon_sym_ATsynthesize] = ACTIONS(1449), - [anon_sym_ATdynamic] = ACTIONS(1449), - [anon_sym_typeof] = ACTIONS(1451), - [anon_sym___typeof] = ACTIONS(1451), - [anon_sym___typeof__] = ACTIONS(1451), - [sym_id] = ACTIONS(1451), - [sym_instancetype] = ACTIONS(1451), - [sym_Class] = ACTIONS(1451), - [sym_SEL] = ACTIONS(1451), - [sym_IMP] = ACTIONS(1451), - [sym_BOOL] = ACTIONS(1451), - [sym_auto] = ACTIONS(1451), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1229), + [anon_sym_ATend] = ACTIONS(1227), + [sym_optional] = ACTIONS(1227), + [sym_required] = ACTIONS(1227), + [anon_sym_ATproperty] = ACTIONS(1227), + [sym_method_attribute_specifier] = ACTIONS(1229), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1229), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1229), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1229), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1229), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1229), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1229), + [anon_sym_NS_AVAILABLE] = ACTIONS(1229), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1229), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1229), + [anon_sym_API_AVAILABLE] = ACTIONS(1229), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1229), + [anon_sym_API_DEPRECATED] = ACTIONS(1229), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1229), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1229), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1229), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1229), + [anon_sym___deprecated_msg] = ACTIONS(1229), + [anon_sym___deprecated_enum_msg] = ACTIONS(1229), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1229), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1229), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1229), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1229), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1229), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1229), + [anon_sym_ATsynthesize] = ACTIONS(1227), + [anon_sym_ATdynamic] = ACTIONS(1227), + [anon_sym_NS_ENUM] = ACTIONS(1229), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1229), + [anon_sym_NS_OPTIONS] = ACTIONS(1229), + [anon_sym_typeof] = ACTIONS(1229), + [anon_sym___typeof] = ACTIONS(1229), + [anon_sym___typeof__] = ACTIONS(1229), + [sym_id] = ACTIONS(1229), + [sym_instancetype] = ACTIONS(1229), + [sym_Class] = ACTIONS(1229), + [sym_SEL] = ACTIONS(1229), + [sym_IMP] = ACTIONS(1229), + [sym_BOOL] = ACTIONS(1229), + [sym_auto] = ACTIONS(1229), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -489703,112 +472204,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2986] = { - [sym_identifier] = ACTIONS(1443), - [aux_sym_preproc_def_token1] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_typedef] = ACTIONS(1443), - [anon_sym_extern] = ACTIONS(1443), - [anon_sym___attribute] = ACTIONS(1443), - [anon_sym___attribute__] = ACTIONS(1443), - [anon_sym___declspec] = ACTIONS(1443), - [anon_sym___cdecl] = ACTIONS(1443), - [anon_sym___clrcall] = ACTIONS(1443), - [anon_sym___stdcall] = ACTIONS(1443), - [anon_sym___fastcall] = ACTIONS(1443), - [anon_sym___thiscall] = ACTIONS(1443), - [anon_sym___vectorcall] = ACTIONS(1443), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_auto] = ACTIONS(1443), - [anon_sym_register] = ACTIONS(1443), - [anon_sym_inline] = ACTIONS(1443), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_volatile] = ACTIONS(1443), - [anon_sym_restrict] = ACTIONS(1443), - [anon_sym__Atomic] = ACTIONS(1443), - [anon_sym_in] = ACTIONS(1443), - [anon_sym_out] = ACTIONS(1443), - [anon_sym_inout] = ACTIONS(1443), - [anon_sym_bycopy] = ACTIONS(1443), - [anon_sym_byref] = ACTIONS(1443), - [anon_sym_oneway] = ACTIONS(1443), - [anon_sym__Nullable] = ACTIONS(1443), - [anon_sym__Nonnull] = ACTIONS(1443), - [anon_sym__Nullable_result] = ACTIONS(1443), - [anon_sym__Null_unspecified] = ACTIONS(1443), - [anon_sym___autoreleasing] = ACTIONS(1443), - [anon_sym___nullable] = ACTIONS(1443), - [anon_sym___nonnull] = ACTIONS(1443), - [anon_sym___strong] = ACTIONS(1443), - [anon_sym___weak] = ACTIONS(1443), - [anon_sym___bridge] = ACTIONS(1443), - [anon_sym___bridge_transfer] = ACTIONS(1443), - [anon_sym___bridge_retained] = ACTIONS(1443), - [anon_sym___unsafe_unretained] = ACTIONS(1443), - [anon_sym___block] = ACTIONS(1443), - [anon_sym___kindof] = ACTIONS(1443), - [anon_sym___unused] = ACTIONS(1443), - [anon_sym__Complex] = ACTIONS(1443), - [anon_sym___complex] = ACTIONS(1443), - [anon_sym_IBOutlet] = ACTIONS(1443), - [anon_sym_IBInspectable] = ACTIONS(1443), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1443), - [anon_sym_signed] = ACTIONS(1443), - [anon_sym_unsigned] = ACTIONS(1443), - [anon_sym_long] = ACTIONS(1443), - [anon_sym_short] = ACTIONS(1443), - [sym_primitive_type] = ACTIONS(1443), - [anon_sym_enum] = ACTIONS(1443), - [anon_sym_NS_ENUM] = ACTIONS(1443), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1443), - [anon_sym_NS_OPTIONS] = ACTIONS(1443), - [anon_sym_struct] = ACTIONS(1443), - [anon_sym_union] = ACTIONS(1443), + [2846] = { + [sym_identifier] = ACTIONS(6888), + [aux_sym_preproc_def_token1] = ACTIONS(6890), + [anon_sym_DASH] = ACTIONS(6890), + [anon_sym_PLUS] = ACTIONS(6890), + [anon_sym_typedef] = ACTIONS(6888), + [anon_sym_extern] = ACTIONS(6888), + [anon_sym___attribute] = ACTIONS(6888), + [anon_sym___attribute__] = ACTIONS(6888), + [anon_sym___declspec] = ACTIONS(6888), + [anon_sym___cdecl] = ACTIONS(6888), + [anon_sym___clrcall] = ACTIONS(6888), + [anon_sym___stdcall] = ACTIONS(6888), + [anon_sym___fastcall] = ACTIONS(6888), + [anon_sym___thiscall] = ACTIONS(6888), + [anon_sym___vectorcall] = ACTIONS(6888), + [anon_sym_static] = ACTIONS(6888), + [anon_sym_auto] = ACTIONS(6888), + [anon_sym_register] = ACTIONS(6888), + [anon_sym_inline] = ACTIONS(6888), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6888), + [anon_sym_const] = ACTIONS(6888), + [anon_sym_volatile] = ACTIONS(6888), + [anon_sym_restrict] = ACTIONS(6888), + [anon_sym__Atomic] = ACTIONS(6888), + [anon_sym_in] = ACTIONS(6888), + [anon_sym_out] = ACTIONS(6888), + [anon_sym_inout] = ACTIONS(6888), + [anon_sym_bycopy] = ACTIONS(6888), + [anon_sym_byref] = ACTIONS(6888), + [anon_sym_oneway] = ACTIONS(6888), + [anon_sym__Nullable] = ACTIONS(6888), + [anon_sym__Nonnull] = ACTIONS(6888), + [anon_sym__Nullable_result] = ACTIONS(6888), + [anon_sym__Null_unspecified] = ACTIONS(6888), + [anon_sym___autoreleasing] = ACTIONS(6888), + [anon_sym___nullable] = ACTIONS(6888), + [anon_sym___nonnull] = ACTIONS(6888), + [anon_sym___strong] = ACTIONS(6888), + [anon_sym___weak] = ACTIONS(6888), + [anon_sym___bridge] = ACTIONS(6888), + [anon_sym___bridge_transfer] = ACTIONS(6888), + [anon_sym___bridge_retained] = ACTIONS(6888), + [anon_sym___unsafe_unretained] = ACTIONS(6888), + [anon_sym___block] = ACTIONS(6888), + [anon_sym___kindof] = ACTIONS(6888), + [anon_sym___unused] = ACTIONS(6888), + [anon_sym__Complex] = ACTIONS(6888), + [anon_sym___complex] = ACTIONS(6888), + [anon_sym_IBOutlet] = ACTIONS(6888), + [anon_sym_IBInspectable] = ACTIONS(6888), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6888), + [anon_sym_signed] = ACTIONS(6888), + [anon_sym_unsigned] = ACTIONS(6888), + [anon_sym_long] = ACTIONS(6888), + [anon_sym_short] = ACTIONS(6888), + [sym_primitive_type] = ACTIONS(6888), + [anon_sym_enum] = ACTIONS(6888), + [anon_sym_struct] = ACTIONS(6888), + [anon_sym_union] = ACTIONS(6888), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1443), - [anon_sym_ATend] = ACTIONS(1441), - [sym_optional] = ACTIONS(1441), - [sym_required] = ACTIONS(1441), - [anon_sym_ATproperty] = ACTIONS(1441), - [sym_method_attribute_specifier] = ACTIONS(1443), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1443), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1443), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1443), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1443), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1443), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1443), - [anon_sym_NS_AVAILABLE] = ACTIONS(1443), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1443), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1443), - [anon_sym_API_AVAILABLE] = ACTIONS(1443), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1443), - [anon_sym_API_DEPRECATED] = ACTIONS(1443), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1443), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1443), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1443), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1443), - [anon_sym___deprecated_msg] = ACTIONS(1443), - [anon_sym___deprecated_enum_msg] = ACTIONS(1443), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1443), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1443), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1443), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1443), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1443), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1443), - [anon_sym_ATsynthesize] = ACTIONS(1441), - [anon_sym_ATdynamic] = ACTIONS(1441), - [anon_sym_typeof] = ACTIONS(1443), - [anon_sym___typeof] = ACTIONS(1443), - [anon_sym___typeof__] = ACTIONS(1443), - [sym_id] = ACTIONS(1443), - [sym_instancetype] = ACTIONS(1443), - [sym_Class] = ACTIONS(1443), - [sym_SEL] = ACTIONS(1443), - [sym_IMP] = ACTIONS(1443), - [sym_BOOL] = ACTIONS(1443), - [sym_auto] = ACTIONS(1443), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6888), + [anon_sym_ATend] = ACTIONS(6890), + [sym_optional] = ACTIONS(6890), + [sym_required] = ACTIONS(6890), + [anon_sym_ATproperty] = ACTIONS(6890), + [sym_method_attribute_specifier] = ACTIONS(6888), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6888), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6888), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6888), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6888), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6888), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6888), + [anon_sym_NS_AVAILABLE] = ACTIONS(6888), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6888), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6888), + [anon_sym_API_AVAILABLE] = ACTIONS(6888), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6888), + [anon_sym_API_DEPRECATED] = ACTIONS(6888), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6888), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6888), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6888), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6888), + [anon_sym___deprecated_msg] = ACTIONS(6888), + [anon_sym___deprecated_enum_msg] = ACTIONS(6888), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6888), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6888), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6888), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6888), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6888), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6888), + [anon_sym_ATsynthesize] = ACTIONS(6890), + [anon_sym_ATdynamic] = ACTIONS(6890), + [anon_sym_NS_ENUM] = ACTIONS(6888), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(6888), + [anon_sym_NS_OPTIONS] = ACTIONS(6888), + [anon_sym_typeof] = ACTIONS(6888), + [anon_sym___typeof] = ACTIONS(6888), + [anon_sym___typeof__] = ACTIONS(6888), + [sym_id] = ACTIONS(6888), + [sym_instancetype] = ACTIONS(6888), + [sym_Class] = ACTIONS(6888), + [sym_SEL] = ACTIONS(6888), + [sym_IMP] = ACTIONS(6888), + [sym_BOOL] = ACTIONS(6888), + [sym_auto] = ACTIONS(6888), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -489816,112 +472317,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2987] = { - [sym_identifier] = ACTIONS(1629), - [aux_sym_preproc_def_token1] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_PLUS] = ACTIONS(1631), - [anon_sym_typedef] = ACTIONS(1629), - [anon_sym_extern] = ACTIONS(1629), - [anon_sym___attribute] = ACTIONS(1629), - [anon_sym___attribute__] = ACTIONS(1629), - [anon_sym___declspec] = ACTIONS(1629), - [anon_sym___cdecl] = ACTIONS(1629), - [anon_sym___clrcall] = ACTIONS(1629), - [anon_sym___stdcall] = ACTIONS(1629), - [anon_sym___fastcall] = ACTIONS(1629), - [anon_sym___thiscall] = ACTIONS(1629), - [anon_sym___vectorcall] = ACTIONS(1629), - [anon_sym_static] = ACTIONS(1629), - [anon_sym_auto] = ACTIONS(1629), - [anon_sym_register] = ACTIONS(1629), - [anon_sym_inline] = ACTIONS(1629), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1629), - [anon_sym_const] = ACTIONS(1629), - [anon_sym_volatile] = ACTIONS(1629), - [anon_sym_restrict] = ACTIONS(1629), - [anon_sym__Atomic] = ACTIONS(1629), - [anon_sym_in] = ACTIONS(1629), - [anon_sym_out] = ACTIONS(1629), - [anon_sym_inout] = ACTIONS(1629), - [anon_sym_bycopy] = ACTIONS(1629), - [anon_sym_byref] = ACTIONS(1629), - [anon_sym_oneway] = ACTIONS(1629), - [anon_sym__Nullable] = ACTIONS(1629), - [anon_sym__Nonnull] = ACTIONS(1629), - [anon_sym__Nullable_result] = ACTIONS(1629), - [anon_sym__Null_unspecified] = ACTIONS(1629), - [anon_sym___autoreleasing] = ACTIONS(1629), - [anon_sym___nullable] = ACTIONS(1629), - [anon_sym___nonnull] = ACTIONS(1629), - [anon_sym___strong] = ACTIONS(1629), - [anon_sym___weak] = ACTIONS(1629), - [anon_sym___bridge] = ACTIONS(1629), - [anon_sym___bridge_transfer] = ACTIONS(1629), - [anon_sym___bridge_retained] = ACTIONS(1629), - [anon_sym___unsafe_unretained] = ACTIONS(1629), - [anon_sym___block] = ACTIONS(1629), - [anon_sym___kindof] = ACTIONS(1629), - [anon_sym___unused] = ACTIONS(1629), - [anon_sym__Complex] = ACTIONS(1629), - [anon_sym___complex] = ACTIONS(1629), - [anon_sym_IBOutlet] = ACTIONS(1629), - [anon_sym_IBInspectable] = ACTIONS(1629), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1629), - [anon_sym_signed] = ACTIONS(1629), - [anon_sym_unsigned] = ACTIONS(1629), - [anon_sym_long] = ACTIONS(1629), - [anon_sym_short] = ACTIONS(1629), - [sym_primitive_type] = ACTIONS(1629), - [anon_sym_enum] = ACTIONS(1629), - [anon_sym_NS_ENUM] = ACTIONS(1629), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1629), - [anon_sym_NS_OPTIONS] = ACTIONS(1629), - [anon_sym_struct] = ACTIONS(1629), - [anon_sym_union] = ACTIONS(1629), + [2847] = { + [sym_identifier] = ACTIONS(1201), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1201), + [anon_sym_extern] = ACTIONS(1201), + [anon_sym___attribute] = ACTIONS(1201), + [anon_sym___attribute__] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1201), + [anon_sym___cdecl] = ACTIONS(1201), + [anon_sym___clrcall] = ACTIONS(1201), + [anon_sym___stdcall] = ACTIONS(1201), + [anon_sym___fastcall] = ACTIONS(1201), + [anon_sym___thiscall] = ACTIONS(1201), + [anon_sym___vectorcall] = ACTIONS(1201), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_auto] = ACTIONS(1201), + [anon_sym_register] = ACTIONS(1201), + [anon_sym_inline] = ACTIONS(1201), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_volatile] = ACTIONS(1201), + [anon_sym_restrict] = ACTIONS(1201), + [anon_sym__Atomic] = ACTIONS(1201), + [anon_sym_in] = ACTIONS(1201), + [anon_sym_out] = ACTIONS(1201), + [anon_sym_inout] = ACTIONS(1201), + [anon_sym_bycopy] = ACTIONS(1201), + [anon_sym_byref] = ACTIONS(1201), + [anon_sym_oneway] = ACTIONS(1201), + [anon_sym__Nullable] = ACTIONS(1201), + [anon_sym__Nonnull] = ACTIONS(1201), + [anon_sym__Nullable_result] = ACTIONS(1201), + [anon_sym__Null_unspecified] = ACTIONS(1201), + [anon_sym___autoreleasing] = ACTIONS(1201), + [anon_sym___nullable] = ACTIONS(1201), + [anon_sym___nonnull] = ACTIONS(1201), + [anon_sym___strong] = ACTIONS(1201), + [anon_sym___weak] = ACTIONS(1201), + [anon_sym___bridge] = ACTIONS(1201), + [anon_sym___bridge_transfer] = ACTIONS(1201), + [anon_sym___bridge_retained] = ACTIONS(1201), + [anon_sym___unsafe_unretained] = ACTIONS(1201), + [anon_sym___block] = ACTIONS(1201), + [anon_sym___kindof] = ACTIONS(1201), + [anon_sym___unused] = ACTIONS(1201), + [anon_sym__Complex] = ACTIONS(1201), + [anon_sym___complex] = ACTIONS(1201), + [anon_sym_IBOutlet] = ACTIONS(1201), + [anon_sym_IBInspectable] = ACTIONS(1201), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1201), + [anon_sym_unsigned] = ACTIONS(1201), + [anon_sym_long] = ACTIONS(1201), + [anon_sym_short] = ACTIONS(1201), + [sym_primitive_type] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1629), - [anon_sym_ATend] = ACTIONS(1631), - [sym_optional] = ACTIONS(1631), - [sym_required] = ACTIONS(1631), - [anon_sym_ATproperty] = ACTIONS(1631), - [sym_method_attribute_specifier] = ACTIONS(1629), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1629), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1629), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1629), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1629), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1629), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1629), - [anon_sym_NS_AVAILABLE] = ACTIONS(1629), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1629), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1629), - [anon_sym_API_AVAILABLE] = ACTIONS(1629), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1629), - [anon_sym_API_DEPRECATED] = ACTIONS(1629), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1629), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1629), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1629), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1629), - [anon_sym___deprecated_msg] = ACTIONS(1629), - [anon_sym___deprecated_enum_msg] = ACTIONS(1629), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1629), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1629), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1629), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1629), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1629), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1629), - [anon_sym_ATsynthesize] = ACTIONS(1631), - [anon_sym_ATdynamic] = ACTIONS(1631), - [anon_sym_typeof] = ACTIONS(1629), - [anon_sym___typeof] = ACTIONS(1629), - [anon_sym___typeof__] = ACTIONS(1629), - [sym_id] = ACTIONS(1629), - [sym_instancetype] = ACTIONS(1629), - [sym_Class] = ACTIONS(1629), - [sym_SEL] = ACTIONS(1629), - [sym_IMP] = ACTIONS(1629), - [sym_BOOL] = ACTIONS(1629), - [sym_auto] = ACTIONS(1629), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1201), + [anon_sym_ATend] = ACTIONS(1199), + [sym_optional] = ACTIONS(1199), + [sym_required] = ACTIONS(1199), + [anon_sym_ATproperty] = ACTIONS(1199), + [sym_method_attribute_specifier] = ACTIONS(1201), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1201), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1201), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1201), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1201), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1201), + [anon_sym_NS_AVAILABLE] = ACTIONS(1201), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1201), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_API_AVAILABLE] = ACTIONS(1201), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_API_DEPRECATED] = ACTIONS(1201), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1201), + [anon_sym___deprecated_msg] = ACTIONS(1201), + [anon_sym___deprecated_enum_msg] = ACTIONS(1201), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1201), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1201), + [anon_sym_ATsynthesize] = ACTIONS(1199), + [anon_sym_ATdynamic] = ACTIONS(1199), + [anon_sym_NS_ENUM] = ACTIONS(1201), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1201), + [anon_sym_NS_OPTIONS] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1201), + [anon_sym___typeof] = ACTIONS(1201), + [anon_sym___typeof__] = ACTIONS(1201), + [sym_id] = ACTIONS(1201), + [sym_instancetype] = ACTIONS(1201), + [sym_Class] = ACTIONS(1201), + [sym_SEL] = ACTIONS(1201), + [sym_IMP] = ACTIONS(1201), + [sym_BOOL] = ACTIONS(1201), + [sym_auto] = ACTIONS(1201), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -489929,112 +472430,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2988] = { - [sym_identifier] = ACTIONS(1633), - [aux_sym_preproc_def_token1] = ACTIONS(1635), - [anon_sym_DASH] = ACTIONS(1635), - [anon_sym_PLUS] = ACTIONS(1635), - [anon_sym_typedef] = ACTIONS(1633), - [anon_sym_extern] = ACTIONS(1633), - [anon_sym___attribute] = ACTIONS(1633), - [anon_sym___attribute__] = ACTIONS(1633), - [anon_sym___declspec] = ACTIONS(1633), - [anon_sym___cdecl] = ACTIONS(1633), - [anon_sym___clrcall] = ACTIONS(1633), - [anon_sym___stdcall] = ACTIONS(1633), - [anon_sym___fastcall] = ACTIONS(1633), - [anon_sym___thiscall] = ACTIONS(1633), - [anon_sym___vectorcall] = ACTIONS(1633), - [anon_sym_static] = ACTIONS(1633), - [anon_sym_auto] = ACTIONS(1633), - [anon_sym_register] = ACTIONS(1633), - [anon_sym_inline] = ACTIONS(1633), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [anon_sym_volatile] = ACTIONS(1633), - [anon_sym_restrict] = ACTIONS(1633), - [anon_sym__Atomic] = ACTIONS(1633), - [anon_sym_in] = ACTIONS(1633), - [anon_sym_out] = ACTIONS(1633), - [anon_sym_inout] = ACTIONS(1633), - [anon_sym_bycopy] = ACTIONS(1633), - [anon_sym_byref] = ACTIONS(1633), - [anon_sym_oneway] = ACTIONS(1633), - [anon_sym__Nullable] = ACTIONS(1633), - [anon_sym__Nonnull] = ACTIONS(1633), - [anon_sym__Nullable_result] = ACTIONS(1633), - [anon_sym__Null_unspecified] = ACTIONS(1633), - [anon_sym___autoreleasing] = ACTIONS(1633), - [anon_sym___nullable] = ACTIONS(1633), - [anon_sym___nonnull] = ACTIONS(1633), - [anon_sym___strong] = ACTIONS(1633), - [anon_sym___weak] = ACTIONS(1633), - [anon_sym___bridge] = ACTIONS(1633), - [anon_sym___bridge_transfer] = ACTIONS(1633), - [anon_sym___bridge_retained] = ACTIONS(1633), - [anon_sym___unsafe_unretained] = ACTIONS(1633), - [anon_sym___block] = ACTIONS(1633), - [anon_sym___kindof] = ACTIONS(1633), - [anon_sym___unused] = ACTIONS(1633), - [anon_sym__Complex] = ACTIONS(1633), - [anon_sym___complex] = ACTIONS(1633), - [anon_sym_IBOutlet] = ACTIONS(1633), - [anon_sym_IBInspectable] = ACTIONS(1633), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1633), - [anon_sym_signed] = ACTIONS(1633), - [anon_sym_unsigned] = ACTIONS(1633), - [anon_sym_long] = ACTIONS(1633), - [anon_sym_short] = ACTIONS(1633), - [sym_primitive_type] = ACTIONS(1633), - [anon_sym_enum] = ACTIONS(1633), - [anon_sym_NS_ENUM] = ACTIONS(1633), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1633), - [anon_sym_NS_OPTIONS] = ACTIONS(1633), - [anon_sym_struct] = ACTIONS(1633), - [anon_sym_union] = ACTIONS(1633), + [2848] = { + [sym_identifier] = ACTIONS(1471), + [aux_sym_preproc_def_token1] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_typedef] = ACTIONS(1471), + [anon_sym_extern] = ACTIONS(1471), + [anon_sym___attribute] = ACTIONS(1471), + [anon_sym___attribute__] = ACTIONS(1471), + [anon_sym___declspec] = ACTIONS(1471), + [anon_sym___cdecl] = ACTIONS(1471), + [anon_sym___clrcall] = ACTIONS(1471), + [anon_sym___stdcall] = ACTIONS(1471), + [anon_sym___fastcall] = ACTIONS(1471), + [anon_sym___thiscall] = ACTIONS(1471), + [anon_sym___vectorcall] = ACTIONS(1471), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_auto] = ACTIONS(1471), + [anon_sym_register] = ACTIONS(1471), + [anon_sym_inline] = ACTIONS(1471), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_volatile] = ACTIONS(1471), + [anon_sym_restrict] = ACTIONS(1471), + [anon_sym__Atomic] = ACTIONS(1471), + [anon_sym_in] = ACTIONS(1471), + [anon_sym_out] = ACTIONS(1471), + [anon_sym_inout] = ACTIONS(1471), + [anon_sym_bycopy] = ACTIONS(1471), + [anon_sym_byref] = ACTIONS(1471), + [anon_sym_oneway] = ACTIONS(1471), + [anon_sym__Nullable] = ACTIONS(1471), + [anon_sym__Nonnull] = ACTIONS(1471), + [anon_sym__Nullable_result] = ACTIONS(1471), + [anon_sym__Null_unspecified] = ACTIONS(1471), + [anon_sym___autoreleasing] = ACTIONS(1471), + [anon_sym___nullable] = ACTIONS(1471), + [anon_sym___nonnull] = ACTIONS(1471), + [anon_sym___strong] = ACTIONS(1471), + [anon_sym___weak] = ACTIONS(1471), + [anon_sym___bridge] = ACTIONS(1471), + [anon_sym___bridge_transfer] = ACTIONS(1471), + [anon_sym___bridge_retained] = ACTIONS(1471), + [anon_sym___unsafe_unretained] = ACTIONS(1471), + [anon_sym___block] = ACTIONS(1471), + [anon_sym___kindof] = ACTIONS(1471), + [anon_sym___unused] = ACTIONS(1471), + [anon_sym__Complex] = ACTIONS(1471), + [anon_sym___complex] = ACTIONS(1471), + [anon_sym_IBOutlet] = ACTIONS(1471), + [anon_sym_IBInspectable] = ACTIONS(1471), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1471), + [anon_sym_signed] = ACTIONS(1471), + [anon_sym_unsigned] = ACTIONS(1471), + [anon_sym_long] = ACTIONS(1471), + [anon_sym_short] = ACTIONS(1471), + [sym_primitive_type] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_struct] = ACTIONS(1471), + [anon_sym_union] = ACTIONS(1471), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1633), - [anon_sym_ATend] = ACTIONS(1635), - [sym_optional] = ACTIONS(1635), - [sym_required] = ACTIONS(1635), - [anon_sym_ATproperty] = ACTIONS(1635), - [sym_method_attribute_specifier] = ACTIONS(1633), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1633), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1633), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1633), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1633), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1633), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1633), - [anon_sym_NS_AVAILABLE] = ACTIONS(1633), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1633), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1633), - [anon_sym_API_AVAILABLE] = ACTIONS(1633), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1633), - [anon_sym_API_DEPRECATED] = ACTIONS(1633), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1633), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1633), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1633), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1633), - [anon_sym___deprecated_msg] = ACTIONS(1633), - [anon_sym___deprecated_enum_msg] = ACTIONS(1633), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1633), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1633), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1633), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1633), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1633), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1633), - [anon_sym_ATsynthesize] = ACTIONS(1635), - [anon_sym_ATdynamic] = ACTIONS(1635), - [anon_sym_typeof] = ACTIONS(1633), - [anon_sym___typeof] = ACTIONS(1633), - [anon_sym___typeof__] = ACTIONS(1633), - [sym_id] = ACTIONS(1633), - [sym_instancetype] = ACTIONS(1633), - [sym_Class] = ACTIONS(1633), - [sym_SEL] = ACTIONS(1633), - [sym_IMP] = ACTIONS(1633), - [sym_BOOL] = ACTIONS(1633), - [sym_auto] = ACTIONS(1633), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1471), + [anon_sym_ATend] = ACTIONS(1469), + [sym_optional] = ACTIONS(1469), + [sym_required] = ACTIONS(1469), + [anon_sym_ATproperty] = ACTIONS(1469), + [sym_method_attribute_specifier] = ACTIONS(1471), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1471), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1471), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1471), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1471), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1471), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1471), + [anon_sym_NS_AVAILABLE] = ACTIONS(1471), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1471), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_API_AVAILABLE] = ACTIONS(1471), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1471), + [anon_sym_API_DEPRECATED] = ACTIONS(1471), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1471), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1471), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1471), + [anon_sym___deprecated_msg] = ACTIONS(1471), + [anon_sym___deprecated_enum_msg] = ACTIONS(1471), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1471), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1471), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1471), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1471), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1471), + [anon_sym_ATsynthesize] = ACTIONS(1469), + [anon_sym_ATdynamic] = ACTIONS(1469), + [anon_sym_NS_ENUM] = ACTIONS(1471), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1471), + [anon_sym_NS_OPTIONS] = ACTIONS(1471), + [anon_sym_typeof] = ACTIONS(1471), + [anon_sym___typeof] = ACTIONS(1471), + [anon_sym___typeof__] = ACTIONS(1471), + [sym_id] = ACTIONS(1471), + [sym_instancetype] = ACTIONS(1471), + [sym_Class] = ACTIONS(1471), + [sym_SEL] = ACTIONS(1471), + [sym_IMP] = ACTIONS(1471), + [sym_BOOL] = ACTIONS(1471), + [sym_auto] = ACTIONS(1471), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -490042,112 +472543,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2989] = { - [sym_identifier] = ACTIONS(1637), - [aux_sym_preproc_def_token1] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1639), - [anon_sym_typedef] = ACTIONS(1637), - [anon_sym_extern] = ACTIONS(1637), - [anon_sym___attribute] = ACTIONS(1637), - [anon_sym___attribute__] = ACTIONS(1637), - [anon_sym___declspec] = ACTIONS(1637), - [anon_sym___cdecl] = ACTIONS(1637), - [anon_sym___clrcall] = ACTIONS(1637), - [anon_sym___stdcall] = ACTIONS(1637), - [anon_sym___fastcall] = ACTIONS(1637), - [anon_sym___thiscall] = ACTIONS(1637), - [anon_sym___vectorcall] = ACTIONS(1637), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_auto] = ACTIONS(1637), - [anon_sym_register] = ACTIONS(1637), - [anon_sym_inline] = ACTIONS(1637), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [anon_sym_volatile] = ACTIONS(1637), - [anon_sym_restrict] = ACTIONS(1637), - [anon_sym__Atomic] = ACTIONS(1637), - [anon_sym_in] = ACTIONS(1637), - [anon_sym_out] = ACTIONS(1637), - [anon_sym_inout] = ACTIONS(1637), - [anon_sym_bycopy] = ACTIONS(1637), - [anon_sym_byref] = ACTIONS(1637), - [anon_sym_oneway] = ACTIONS(1637), - [anon_sym__Nullable] = ACTIONS(1637), - [anon_sym__Nonnull] = ACTIONS(1637), - [anon_sym__Nullable_result] = ACTIONS(1637), - [anon_sym__Null_unspecified] = ACTIONS(1637), - [anon_sym___autoreleasing] = ACTIONS(1637), - [anon_sym___nullable] = ACTIONS(1637), - [anon_sym___nonnull] = ACTIONS(1637), - [anon_sym___strong] = ACTIONS(1637), - [anon_sym___weak] = ACTIONS(1637), - [anon_sym___bridge] = ACTIONS(1637), - [anon_sym___bridge_transfer] = ACTIONS(1637), - [anon_sym___bridge_retained] = ACTIONS(1637), - [anon_sym___unsafe_unretained] = ACTIONS(1637), - [anon_sym___block] = ACTIONS(1637), - [anon_sym___kindof] = ACTIONS(1637), - [anon_sym___unused] = ACTIONS(1637), - [anon_sym__Complex] = ACTIONS(1637), - [anon_sym___complex] = ACTIONS(1637), - [anon_sym_IBOutlet] = ACTIONS(1637), - [anon_sym_IBInspectable] = ACTIONS(1637), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1637), - [anon_sym_signed] = ACTIONS(1637), - [anon_sym_unsigned] = ACTIONS(1637), - [anon_sym_long] = ACTIONS(1637), - [anon_sym_short] = ACTIONS(1637), - [sym_primitive_type] = ACTIONS(1637), - [anon_sym_enum] = ACTIONS(1637), - [anon_sym_NS_ENUM] = ACTIONS(1637), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1637), - [anon_sym_NS_OPTIONS] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(1637), - [anon_sym_union] = ACTIONS(1637), + [2849] = { + [sym_identifier] = ACTIONS(1401), + [aux_sym_preproc_def_token1] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_typedef] = ACTIONS(1401), + [anon_sym_extern] = ACTIONS(1401), + [anon_sym___attribute] = ACTIONS(1401), + [anon_sym___attribute__] = ACTIONS(1401), + [anon_sym___declspec] = ACTIONS(1401), + [anon_sym___cdecl] = ACTIONS(1401), + [anon_sym___clrcall] = ACTIONS(1401), + [anon_sym___stdcall] = ACTIONS(1401), + [anon_sym___fastcall] = ACTIONS(1401), + [anon_sym___thiscall] = ACTIONS(1401), + [anon_sym___vectorcall] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_auto] = ACTIONS(1401), + [anon_sym_register] = ACTIONS(1401), + [anon_sym_inline] = ACTIONS(1401), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_volatile] = ACTIONS(1401), + [anon_sym_restrict] = ACTIONS(1401), + [anon_sym__Atomic] = ACTIONS(1401), + [anon_sym_in] = ACTIONS(1401), + [anon_sym_out] = ACTIONS(1401), + [anon_sym_inout] = ACTIONS(1401), + [anon_sym_bycopy] = ACTIONS(1401), + [anon_sym_byref] = ACTIONS(1401), + [anon_sym_oneway] = ACTIONS(1401), + [anon_sym__Nullable] = ACTIONS(1401), + [anon_sym__Nonnull] = ACTIONS(1401), + [anon_sym__Nullable_result] = ACTIONS(1401), + [anon_sym__Null_unspecified] = ACTIONS(1401), + [anon_sym___autoreleasing] = ACTIONS(1401), + [anon_sym___nullable] = ACTIONS(1401), + [anon_sym___nonnull] = ACTIONS(1401), + [anon_sym___strong] = ACTIONS(1401), + [anon_sym___weak] = ACTIONS(1401), + [anon_sym___bridge] = ACTIONS(1401), + [anon_sym___bridge_transfer] = ACTIONS(1401), + [anon_sym___bridge_retained] = ACTIONS(1401), + [anon_sym___unsafe_unretained] = ACTIONS(1401), + [anon_sym___block] = ACTIONS(1401), + [anon_sym___kindof] = ACTIONS(1401), + [anon_sym___unused] = ACTIONS(1401), + [anon_sym__Complex] = ACTIONS(1401), + [anon_sym___complex] = ACTIONS(1401), + [anon_sym_IBOutlet] = ACTIONS(1401), + [anon_sym_IBInspectable] = ACTIONS(1401), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1401), + [anon_sym_signed] = ACTIONS(1401), + [anon_sym_unsigned] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [sym_primitive_type] = ACTIONS(1401), + [anon_sym_enum] = ACTIONS(1401), + [anon_sym_struct] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1401), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1637), - [anon_sym_ATend] = ACTIONS(1639), - [sym_optional] = ACTIONS(1639), - [sym_required] = ACTIONS(1639), - [anon_sym_ATproperty] = ACTIONS(1639), - [sym_method_attribute_specifier] = ACTIONS(1637), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1637), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1637), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1637), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1637), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1637), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1637), - [anon_sym_NS_AVAILABLE] = ACTIONS(1637), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1637), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1637), - [anon_sym_API_AVAILABLE] = ACTIONS(1637), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1637), - [anon_sym_API_DEPRECATED] = ACTIONS(1637), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1637), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1637), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1637), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1637), - [anon_sym___deprecated_msg] = ACTIONS(1637), - [anon_sym___deprecated_enum_msg] = ACTIONS(1637), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1637), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1637), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1637), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1637), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1637), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1637), - [anon_sym_ATsynthesize] = ACTIONS(1639), - [anon_sym_ATdynamic] = ACTIONS(1639), - [anon_sym_typeof] = ACTIONS(1637), - [anon_sym___typeof] = ACTIONS(1637), - [anon_sym___typeof__] = ACTIONS(1637), - [sym_id] = ACTIONS(1637), - [sym_instancetype] = ACTIONS(1637), - [sym_Class] = ACTIONS(1637), - [sym_SEL] = ACTIONS(1637), - [sym_IMP] = ACTIONS(1637), - [sym_BOOL] = ACTIONS(1637), - [sym_auto] = ACTIONS(1637), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1401), + [anon_sym_ATend] = ACTIONS(1399), + [sym_optional] = ACTIONS(1399), + [sym_required] = ACTIONS(1399), + [anon_sym_ATproperty] = ACTIONS(1399), + [sym_method_attribute_specifier] = ACTIONS(1401), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1401), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1401), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1401), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1401), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1401), + [anon_sym_NS_AVAILABLE] = ACTIONS(1401), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1401), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_API_AVAILABLE] = ACTIONS(1401), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_API_DEPRECATED] = ACTIONS(1401), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1401), + [anon_sym___deprecated_msg] = ACTIONS(1401), + [anon_sym___deprecated_enum_msg] = ACTIONS(1401), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1401), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1401), + [anon_sym_ATsynthesize] = ACTIONS(1399), + [anon_sym_ATdynamic] = ACTIONS(1399), + [anon_sym_NS_ENUM] = ACTIONS(1401), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1401), + [anon_sym_NS_OPTIONS] = ACTIONS(1401), + [anon_sym_typeof] = ACTIONS(1401), + [anon_sym___typeof] = ACTIONS(1401), + [anon_sym___typeof__] = ACTIONS(1401), + [sym_id] = ACTIONS(1401), + [sym_instancetype] = ACTIONS(1401), + [sym_Class] = ACTIONS(1401), + [sym_SEL] = ACTIONS(1401), + [sym_IMP] = ACTIONS(1401), + [sym_BOOL] = ACTIONS(1401), + [sym_auto] = ACTIONS(1401), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -490155,112 +472656,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2990] = { - [sym_identifier] = ACTIONS(1641), - [aux_sym_preproc_def_token1] = ACTIONS(1643), - [anon_sym_DASH] = ACTIONS(1643), - [anon_sym_PLUS] = ACTIONS(1643), - [anon_sym_typedef] = ACTIONS(1641), - [anon_sym_extern] = ACTIONS(1641), - [anon_sym___attribute] = ACTIONS(1641), - [anon_sym___attribute__] = ACTIONS(1641), - [anon_sym___declspec] = ACTIONS(1641), - [anon_sym___cdecl] = ACTIONS(1641), - [anon_sym___clrcall] = ACTIONS(1641), - [anon_sym___stdcall] = ACTIONS(1641), - [anon_sym___fastcall] = ACTIONS(1641), - [anon_sym___thiscall] = ACTIONS(1641), - [anon_sym___vectorcall] = ACTIONS(1641), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_auto] = ACTIONS(1641), - [anon_sym_register] = ACTIONS(1641), - [anon_sym_inline] = ACTIONS(1641), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(1641), - [anon_sym_volatile] = ACTIONS(1641), - [anon_sym_restrict] = ACTIONS(1641), - [anon_sym__Atomic] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [anon_sym_out] = ACTIONS(1641), - [anon_sym_inout] = ACTIONS(1641), - [anon_sym_bycopy] = ACTIONS(1641), - [anon_sym_byref] = ACTIONS(1641), - [anon_sym_oneway] = ACTIONS(1641), - [anon_sym__Nullable] = ACTIONS(1641), - [anon_sym__Nonnull] = ACTIONS(1641), - [anon_sym__Nullable_result] = ACTIONS(1641), - [anon_sym__Null_unspecified] = ACTIONS(1641), - [anon_sym___autoreleasing] = ACTIONS(1641), - [anon_sym___nullable] = ACTIONS(1641), - [anon_sym___nonnull] = ACTIONS(1641), - [anon_sym___strong] = ACTIONS(1641), - [anon_sym___weak] = ACTIONS(1641), - [anon_sym___bridge] = ACTIONS(1641), - [anon_sym___bridge_transfer] = ACTIONS(1641), - [anon_sym___bridge_retained] = ACTIONS(1641), - [anon_sym___unsafe_unretained] = ACTIONS(1641), - [anon_sym___block] = ACTIONS(1641), - [anon_sym___kindof] = ACTIONS(1641), - [anon_sym___unused] = ACTIONS(1641), - [anon_sym__Complex] = ACTIONS(1641), - [anon_sym___complex] = ACTIONS(1641), - [anon_sym_IBOutlet] = ACTIONS(1641), - [anon_sym_IBInspectable] = ACTIONS(1641), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1641), - [anon_sym_signed] = ACTIONS(1641), - [anon_sym_unsigned] = ACTIONS(1641), - [anon_sym_long] = ACTIONS(1641), - [anon_sym_short] = ACTIONS(1641), - [sym_primitive_type] = ACTIONS(1641), - [anon_sym_enum] = ACTIONS(1641), - [anon_sym_NS_ENUM] = ACTIONS(1641), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1641), - [anon_sym_NS_OPTIONS] = ACTIONS(1641), - [anon_sym_struct] = ACTIONS(1641), - [anon_sym_union] = ACTIONS(1641), + [2850] = { + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym_in] = ACTIONS(1195), + [anon_sym_out] = ACTIONS(1195), + [anon_sym_inout] = ACTIONS(1195), + [anon_sym_bycopy] = ACTIONS(1195), + [anon_sym_byref] = ACTIONS(1195), + [anon_sym_oneway] = ACTIONS(1195), + [anon_sym__Nullable] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym__Nullable_result] = ACTIONS(1195), + [anon_sym__Null_unspecified] = ACTIONS(1195), + [anon_sym___autoreleasing] = ACTIONS(1195), + [anon_sym___nullable] = ACTIONS(1195), + [anon_sym___nonnull] = ACTIONS(1195), + [anon_sym___strong] = ACTIONS(1195), + [anon_sym___weak] = ACTIONS(1195), + [anon_sym___bridge] = ACTIONS(1195), + [anon_sym___bridge_transfer] = ACTIONS(1195), + [anon_sym___bridge_retained] = ACTIONS(1195), + [anon_sym___unsafe_unretained] = ACTIONS(1195), + [anon_sym___block] = ACTIONS(1195), + [anon_sym___kindof] = ACTIONS(1195), + [anon_sym___unused] = ACTIONS(1195), + [anon_sym__Complex] = ACTIONS(1195), + [anon_sym___complex] = ACTIONS(1195), + [anon_sym_IBOutlet] = ACTIONS(1195), + [anon_sym_IBInspectable] = ACTIONS(1195), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1641), - [anon_sym_ATend] = ACTIONS(1643), - [sym_optional] = ACTIONS(1643), - [sym_required] = ACTIONS(1643), - [anon_sym_ATproperty] = ACTIONS(1643), - [sym_method_attribute_specifier] = ACTIONS(1641), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1641), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1641), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1641), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1641), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1641), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1641), - [anon_sym_NS_AVAILABLE] = ACTIONS(1641), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1641), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1641), - [anon_sym_API_AVAILABLE] = ACTIONS(1641), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1641), - [anon_sym_API_DEPRECATED] = ACTIONS(1641), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1641), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1641), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1641), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1641), - [anon_sym___deprecated_msg] = ACTIONS(1641), - [anon_sym___deprecated_enum_msg] = ACTIONS(1641), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1641), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1641), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1641), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1641), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1641), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1641), - [anon_sym_ATsynthesize] = ACTIONS(1643), - [anon_sym_ATdynamic] = ACTIONS(1643), - [anon_sym_typeof] = ACTIONS(1641), - [anon_sym___typeof] = ACTIONS(1641), - [anon_sym___typeof__] = ACTIONS(1641), - [sym_id] = ACTIONS(1641), - [sym_instancetype] = ACTIONS(1641), - [sym_Class] = ACTIONS(1641), - [sym_SEL] = ACTIONS(1641), - [sym_IMP] = ACTIONS(1641), - [sym_BOOL] = ACTIONS(1641), - [sym_auto] = ACTIONS(1641), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1195), + [anon_sym_ATend] = ACTIONS(1197), + [sym_optional] = ACTIONS(1197), + [sym_required] = ACTIONS(1197), + [anon_sym_ATproperty] = ACTIONS(1197), + [sym_method_attribute_specifier] = ACTIONS(1195), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1195), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE] = ACTIONS(1195), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_API_AVAILABLE] = ACTIONS(1195), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_API_DEPRECATED] = ACTIONS(1195), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1195), + [anon_sym___deprecated_msg] = ACTIONS(1195), + [anon_sym___deprecated_enum_msg] = ACTIONS(1195), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1195), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1195), + [anon_sym_ATsynthesize] = ACTIONS(1197), + [anon_sym_ATdynamic] = ACTIONS(1197), + [anon_sym_NS_ENUM] = ACTIONS(1195), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1195), + [anon_sym_NS_OPTIONS] = ACTIONS(1195), + [anon_sym_typeof] = ACTIONS(1195), + [anon_sym___typeof] = ACTIONS(1195), + [anon_sym___typeof__] = ACTIONS(1195), + [sym_id] = ACTIONS(1195), + [sym_instancetype] = ACTIONS(1195), + [sym_Class] = ACTIONS(1195), + [sym_SEL] = ACTIONS(1195), + [sym_IMP] = ACTIONS(1195), + [sym_BOOL] = ACTIONS(1195), + [sym_auto] = ACTIONS(1195), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -490268,26 +472769,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2991] = { - [sym__declaration_specifiers] = STATE(3954), - [sym_attribute_specifier] = STATE(3007), - [sym_ms_declspec_modifier] = STATE(3007), - [sym_storage_class_specifier] = STATE(3007), - [sym_type_qualifier] = STATE(3007), - [sym__type_specifier] = STATE(3408), - [sym_sized_type_specifier] = STATE(3408), - [sym_enum_specifier] = STATE(3408), - [sym_struct_specifier] = STATE(3408), - [sym_union_specifier] = STATE(3408), - [sym_macro_type_specifier] = STATE(3408), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3408), - [sym_atomic_specifier] = STATE(3408), - [sym_generic_type_specifier] = STATE(3408), - [aux_sym__declaration_specifiers_repeat1] = STATE(3007), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), + [2851] = { + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym_in] = ACTIONS(1195), + [anon_sym_out] = ACTIONS(1195), + [anon_sym_inout] = ACTIONS(1195), + [anon_sym_bycopy] = ACTIONS(1195), + [anon_sym_byref] = ACTIONS(1195), + [anon_sym_oneway] = ACTIONS(1195), + [anon_sym__Nullable] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym__Nullable_result] = ACTIONS(1195), + [anon_sym__Null_unspecified] = ACTIONS(1195), + [anon_sym___autoreleasing] = ACTIONS(1195), + [anon_sym___nullable] = ACTIONS(1195), + [anon_sym___nonnull] = ACTIONS(1195), + [anon_sym___strong] = ACTIONS(1195), + [anon_sym___weak] = ACTIONS(1195), + [anon_sym___bridge] = ACTIONS(1195), + [anon_sym___bridge_transfer] = ACTIONS(1195), + [anon_sym___bridge_retained] = ACTIONS(1195), + [anon_sym___unsafe_unretained] = ACTIONS(1195), + [anon_sym___block] = ACTIONS(1195), + [anon_sym___kindof] = ACTIONS(1195), + [anon_sym___unused] = ACTIONS(1195), + [anon_sym__Complex] = ACTIONS(1195), + [anon_sym___complex] = ACTIONS(1195), + [anon_sym_IBOutlet] = ACTIONS(1195), + [anon_sym_IBInspectable] = ACTIONS(1195), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1195), + [anon_sym_ATend] = ACTIONS(1197), + [sym_optional] = ACTIONS(1197), + [sym_required] = ACTIONS(1197), + [anon_sym_ATproperty] = ACTIONS(1197), + [sym_method_attribute_specifier] = ACTIONS(1195), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1195), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE] = ACTIONS(1195), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_API_AVAILABLE] = ACTIONS(1195), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_API_DEPRECATED] = ACTIONS(1195), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1195), + [anon_sym___deprecated_msg] = ACTIONS(1195), + [anon_sym___deprecated_enum_msg] = ACTIONS(1195), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1195), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1195), + [anon_sym_ATsynthesize] = ACTIONS(1197), + [anon_sym_ATdynamic] = ACTIONS(1197), + [anon_sym_NS_ENUM] = ACTIONS(1195), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1195), + [anon_sym_NS_OPTIONS] = ACTIONS(1195), + [anon_sym_typeof] = ACTIONS(1195), + [anon_sym___typeof] = ACTIONS(1195), + [anon_sym___typeof__] = ACTIONS(1195), + [sym_id] = ACTIONS(1195), + [sym_instancetype] = ACTIONS(1195), + [sym_Class] = ACTIONS(1195), + [sym_SEL] = ACTIONS(1195), + [sym_IMP] = ACTIONS(1195), + [sym_BOOL] = ACTIONS(1195), + [sym_auto] = ACTIONS(1195), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2852] = { + [sym_identifier] = ACTIONS(1704), + [aux_sym_preproc_def_token1] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_typedef] = ACTIONS(1704), + [anon_sym_extern] = ACTIONS(1704), + [anon_sym___attribute] = ACTIONS(1704), + [anon_sym___attribute__] = ACTIONS(1704), + [anon_sym___declspec] = ACTIONS(1704), + [anon_sym___cdecl] = ACTIONS(1704), + [anon_sym___clrcall] = ACTIONS(1704), + [anon_sym___stdcall] = ACTIONS(1704), + [anon_sym___fastcall] = ACTIONS(1704), + [anon_sym___thiscall] = ACTIONS(1704), + [anon_sym___vectorcall] = ACTIONS(1704), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_auto] = ACTIONS(1704), + [anon_sym_register] = ACTIONS(1704), + [anon_sym_inline] = ACTIONS(1704), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_volatile] = ACTIONS(1704), + [anon_sym_restrict] = ACTIONS(1704), + [anon_sym__Atomic] = ACTIONS(1704), + [anon_sym_in] = ACTIONS(1704), + [anon_sym_out] = ACTIONS(1704), + [anon_sym_inout] = ACTIONS(1704), + [anon_sym_bycopy] = ACTIONS(1704), + [anon_sym_byref] = ACTIONS(1704), + [anon_sym_oneway] = ACTIONS(1704), + [anon_sym__Nullable] = ACTIONS(1704), + [anon_sym__Nonnull] = ACTIONS(1704), + [anon_sym__Nullable_result] = ACTIONS(1704), + [anon_sym__Null_unspecified] = ACTIONS(1704), + [anon_sym___autoreleasing] = ACTIONS(1704), + [anon_sym___nullable] = ACTIONS(1704), + [anon_sym___nonnull] = ACTIONS(1704), + [anon_sym___strong] = ACTIONS(1704), + [anon_sym___weak] = ACTIONS(1704), + [anon_sym___bridge] = ACTIONS(1704), + [anon_sym___bridge_transfer] = ACTIONS(1704), + [anon_sym___bridge_retained] = ACTIONS(1704), + [anon_sym___unsafe_unretained] = ACTIONS(1704), + [anon_sym___block] = ACTIONS(1704), + [anon_sym___kindof] = ACTIONS(1704), + [anon_sym___unused] = ACTIONS(1704), + [anon_sym__Complex] = ACTIONS(1704), + [anon_sym___complex] = ACTIONS(1704), + [anon_sym_IBOutlet] = ACTIONS(1704), + [anon_sym_IBInspectable] = ACTIONS(1704), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1704), + [anon_sym_signed] = ACTIONS(1704), + [anon_sym_unsigned] = ACTIONS(1704), + [anon_sym_long] = ACTIONS(1704), + [anon_sym_short] = ACTIONS(1704), + [sym_primitive_type] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(1704), + [anon_sym_struct] = ACTIONS(1704), + [anon_sym_union] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1704), + [anon_sym_ATend] = ACTIONS(1706), + [sym_optional] = ACTIONS(1706), + [sym_required] = ACTIONS(1706), + [anon_sym_ATproperty] = ACTIONS(1706), + [sym_method_attribute_specifier] = ACTIONS(1704), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1704), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1704), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1704), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1704), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1704), + [anon_sym_NS_AVAILABLE] = ACTIONS(1704), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1704), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_API_AVAILABLE] = ACTIONS(1704), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_API_DEPRECATED] = ACTIONS(1704), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1704), + [anon_sym___deprecated_msg] = ACTIONS(1704), + [anon_sym___deprecated_enum_msg] = ACTIONS(1704), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1704), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1704), + [anon_sym_ATsynthesize] = ACTIONS(1706), + [anon_sym_ATdynamic] = ACTIONS(1706), + [anon_sym_NS_ENUM] = ACTIONS(1704), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1704), + [anon_sym_NS_OPTIONS] = ACTIONS(1704), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym___typeof] = ACTIONS(1704), + [anon_sym___typeof__] = ACTIONS(1704), + [sym_id] = ACTIONS(1704), + [sym_instancetype] = ACTIONS(1704), + [sym_Class] = ACTIONS(1704), + [sym_SEL] = ACTIONS(1704), + [sym_IMP] = ACTIONS(1704), + [sym_BOOL] = ACTIONS(1704), + [sym_auto] = ACTIONS(1704), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2853] = { + [sym__declaration_specifiers] = STATE(4731), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), @@ -490332,47 +473060,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(51), [anon_sym_long] = ACTIONS(51), [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(6892), + [sym_primitive_type] = ACTIONS(829), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(6892), + [sym_instancetype] = ACTIONS(829), [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(6892), - [sym_IMP] = ACTIONS(6892), - [sym_BOOL] = ACTIONS(6892), - [sym_auto] = ACTIONS(6892), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -490380,108 +473108,1465 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2992] = { - [sym__type_specifier] = STATE(4757), - [sym_sized_type_specifier] = STATE(4757), - [sym_enum_specifier] = STATE(4757), - [sym_struct_specifier] = STATE(4757), - [sym_union_specifier] = STATE(4757), - [sym__expression] = STATE(4473), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(4757), - [sym_typeof_specifier] = STATE(4757), - [sym_atomic_specifier] = STATE(4757), - [sym_generic_type_specifier] = STATE(4757), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym__receiver] = STATE(4757), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(6982), + [2854] = { + [sym_identifier] = ACTIONS(1221), + [aux_sym_preproc_def_token1] = ACTIONS(1219), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_typedef] = ACTIONS(1221), + [anon_sym_extern] = ACTIONS(1221), + [anon_sym___attribute] = ACTIONS(1221), + [anon_sym___attribute__] = ACTIONS(1221), + [anon_sym___declspec] = ACTIONS(1221), + [anon_sym___cdecl] = ACTIONS(1221), + [anon_sym___clrcall] = ACTIONS(1221), + [anon_sym___stdcall] = ACTIONS(1221), + [anon_sym___fastcall] = ACTIONS(1221), + [anon_sym___thiscall] = ACTIONS(1221), + [anon_sym___vectorcall] = ACTIONS(1221), + [anon_sym_static] = ACTIONS(1221), + [anon_sym_auto] = ACTIONS(1221), + [anon_sym_register] = ACTIONS(1221), + [anon_sym_inline] = ACTIONS(1221), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_volatile] = ACTIONS(1221), + [anon_sym_restrict] = ACTIONS(1221), + [anon_sym__Atomic] = ACTIONS(1221), + [anon_sym_in] = ACTIONS(1221), + [anon_sym_out] = ACTIONS(1221), + [anon_sym_inout] = ACTIONS(1221), + [anon_sym_bycopy] = ACTIONS(1221), + [anon_sym_byref] = ACTIONS(1221), + [anon_sym_oneway] = ACTIONS(1221), + [anon_sym__Nullable] = ACTIONS(1221), + [anon_sym__Nonnull] = ACTIONS(1221), + [anon_sym__Nullable_result] = ACTIONS(1221), + [anon_sym__Null_unspecified] = ACTIONS(1221), + [anon_sym___autoreleasing] = ACTIONS(1221), + [anon_sym___nullable] = ACTIONS(1221), + [anon_sym___nonnull] = ACTIONS(1221), + [anon_sym___strong] = ACTIONS(1221), + [anon_sym___weak] = ACTIONS(1221), + [anon_sym___bridge] = ACTIONS(1221), + [anon_sym___bridge_transfer] = ACTIONS(1221), + [anon_sym___bridge_retained] = ACTIONS(1221), + [anon_sym___unsafe_unretained] = ACTIONS(1221), + [anon_sym___block] = ACTIONS(1221), + [anon_sym___kindof] = ACTIONS(1221), + [anon_sym___unused] = ACTIONS(1221), + [anon_sym__Complex] = ACTIONS(1221), + [anon_sym___complex] = ACTIONS(1221), + [anon_sym_IBOutlet] = ACTIONS(1221), + [anon_sym_IBInspectable] = ACTIONS(1221), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1221), + [anon_sym_signed] = ACTIONS(1221), + [anon_sym_unsigned] = ACTIONS(1221), + [anon_sym_long] = ACTIONS(1221), + [anon_sym_short] = ACTIONS(1221), + [sym_primitive_type] = ACTIONS(1221), + [anon_sym_enum] = ACTIONS(1221), + [anon_sym_struct] = ACTIONS(1221), + [anon_sym_union] = ACTIONS(1221), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1221), + [anon_sym_ATend] = ACTIONS(1219), + [sym_optional] = ACTIONS(1219), + [sym_required] = ACTIONS(1219), + [anon_sym_ATproperty] = ACTIONS(1219), + [sym_method_attribute_specifier] = ACTIONS(1221), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1221), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1221), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1221), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1221), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1221), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1221), + [anon_sym_NS_AVAILABLE] = ACTIONS(1221), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1221), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1221), + [anon_sym_API_AVAILABLE] = ACTIONS(1221), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1221), + [anon_sym_API_DEPRECATED] = ACTIONS(1221), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1221), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1221), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1221), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1221), + [anon_sym___deprecated_msg] = ACTIONS(1221), + [anon_sym___deprecated_enum_msg] = ACTIONS(1221), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1221), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1221), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1221), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1221), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1221), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1221), + [anon_sym_ATsynthesize] = ACTIONS(1219), + [anon_sym_ATdynamic] = ACTIONS(1219), + [anon_sym_NS_ENUM] = ACTIONS(1221), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1221), + [anon_sym_NS_OPTIONS] = ACTIONS(1221), + [anon_sym_typeof] = ACTIONS(1221), + [anon_sym___typeof] = ACTIONS(1221), + [anon_sym___typeof__] = ACTIONS(1221), + [sym_id] = ACTIONS(1221), + [sym_instancetype] = ACTIONS(1221), + [sym_Class] = ACTIONS(1221), + [sym_SEL] = ACTIONS(1221), + [sym_IMP] = ACTIONS(1221), + [sym_BOOL] = ACTIONS(1221), + [sym_auto] = ACTIONS(1221), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2855] = { + [sym_identifier] = ACTIONS(1401), + [aux_sym_preproc_def_token1] = ACTIONS(1399), + [anon_sym_DASH] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1399), + [anon_sym_typedef] = ACTIONS(1401), + [anon_sym_extern] = ACTIONS(1401), + [anon_sym___attribute] = ACTIONS(1401), + [anon_sym___attribute__] = ACTIONS(1401), + [anon_sym___declspec] = ACTIONS(1401), + [anon_sym___cdecl] = ACTIONS(1401), + [anon_sym___clrcall] = ACTIONS(1401), + [anon_sym___stdcall] = ACTIONS(1401), + [anon_sym___fastcall] = ACTIONS(1401), + [anon_sym___thiscall] = ACTIONS(1401), + [anon_sym___vectorcall] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_auto] = ACTIONS(1401), + [anon_sym_register] = ACTIONS(1401), + [anon_sym_inline] = ACTIONS(1401), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_volatile] = ACTIONS(1401), + [anon_sym_restrict] = ACTIONS(1401), + [anon_sym__Atomic] = ACTIONS(1401), + [anon_sym_in] = ACTIONS(1401), + [anon_sym_out] = ACTIONS(1401), + [anon_sym_inout] = ACTIONS(1401), + [anon_sym_bycopy] = ACTIONS(1401), + [anon_sym_byref] = ACTIONS(1401), + [anon_sym_oneway] = ACTIONS(1401), + [anon_sym__Nullable] = ACTIONS(1401), + [anon_sym__Nonnull] = ACTIONS(1401), + [anon_sym__Nullable_result] = ACTIONS(1401), + [anon_sym__Null_unspecified] = ACTIONS(1401), + [anon_sym___autoreleasing] = ACTIONS(1401), + [anon_sym___nullable] = ACTIONS(1401), + [anon_sym___nonnull] = ACTIONS(1401), + [anon_sym___strong] = ACTIONS(1401), + [anon_sym___weak] = ACTIONS(1401), + [anon_sym___bridge] = ACTIONS(1401), + [anon_sym___bridge_transfer] = ACTIONS(1401), + [anon_sym___bridge_retained] = ACTIONS(1401), + [anon_sym___unsafe_unretained] = ACTIONS(1401), + [anon_sym___block] = ACTIONS(1401), + [anon_sym___kindof] = ACTIONS(1401), + [anon_sym___unused] = ACTIONS(1401), + [anon_sym__Complex] = ACTIONS(1401), + [anon_sym___complex] = ACTIONS(1401), + [anon_sym_IBOutlet] = ACTIONS(1401), + [anon_sym_IBInspectable] = ACTIONS(1401), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1401), + [anon_sym_signed] = ACTIONS(1401), + [anon_sym_unsigned] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [sym_primitive_type] = ACTIONS(1401), + [anon_sym_enum] = ACTIONS(1401), + [anon_sym_struct] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1401), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1401), + [anon_sym_ATend] = ACTIONS(1399), + [sym_optional] = ACTIONS(1399), + [sym_required] = ACTIONS(1399), + [anon_sym_ATproperty] = ACTIONS(1399), + [sym_method_attribute_specifier] = ACTIONS(1401), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1401), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1401), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1401), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1401), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1401), + [anon_sym_NS_AVAILABLE] = ACTIONS(1401), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1401), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_API_AVAILABLE] = ACTIONS(1401), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_API_DEPRECATED] = ACTIONS(1401), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1401), + [anon_sym___deprecated_msg] = ACTIONS(1401), + [anon_sym___deprecated_enum_msg] = ACTIONS(1401), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1401), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1401), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1401), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1401), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1401), + [anon_sym_ATsynthesize] = ACTIONS(1399), + [anon_sym_ATdynamic] = ACTIONS(1399), + [anon_sym_NS_ENUM] = ACTIONS(1401), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1401), + [anon_sym_NS_OPTIONS] = ACTIONS(1401), + [anon_sym_typeof] = ACTIONS(1401), + [anon_sym___typeof] = ACTIONS(1401), + [anon_sym___typeof__] = ACTIONS(1401), + [sym_id] = ACTIONS(1401), + [sym_instancetype] = ACTIONS(1401), + [sym_Class] = ACTIONS(1401), + [sym_SEL] = ACTIONS(1401), + [sym_IMP] = ACTIONS(1401), + [sym_BOOL] = ACTIONS(1401), + [sym_auto] = ACTIONS(1401), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2856] = { + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym_in] = ACTIONS(1195), + [anon_sym_out] = ACTIONS(1195), + [anon_sym_inout] = ACTIONS(1195), + [anon_sym_bycopy] = ACTIONS(1195), + [anon_sym_byref] = ACTIONS(1195), + [anon_sym_oneway] = ACTIONS(1195), + [anon_sym__Nullable] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym__Nullable_result] = ACTIONS(1195), + [anon_sym__Null_unspecified] = ACTIONS(1195), + [anon_sym___autoreleasing] = ACTIONS(1195), + [anon_sym___nullable] = ACTIONS(1195), + [anon_sym___nonnull] = ACTIONS(1195), + [anon_sym___strong] = ACTIONS(1195), + [anon_sym___weak] = ACTIONS(1195), + [anon_sym___bridge] = ACTIONS(1195), + [anon_sym___bridge_transfer] = ACTIONS(1195), + [anon_sym___bridge_retained] = ACTIONS(1195), + [anon_sym___unsafe_unretained] = ACTIONS(1195), + [anon_sym___block] = ACTIONS(1195), + [anon_sym___kindof] = ACTIONS(1195), + [anon_sym___unused] = ACTIONS(1195), + [anon_sym__Complex] = ACTIONS(1195), + [anon_sym___complex] = ACTIONS(1195), + [anon_sym_IBOutlet] = ACTIONS(1195), + [anon_sym_IBInspectable] = ACTIONS(1195), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1195), + [anon_sym_ATend] = ACTIONS(1197), + [sym_optional] = ACTIONS(1197), + [sym_required] = ACTIONS(1197), + [anon_sym_ATproperty] = ACTIONS(1197), + [sym_method_attribute_specifier] = ACTIONS(1195), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1195), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE] = ACTIONS(1195), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_API_AVAILABLE] = ACTIONS(1195), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_API_DEPRECATED] = ACTIONS(1195), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1195), + [anon_sym___deprecated_msg] = ACTIONS(1195), + [anon_sym___deprecated_enum_msg] = ACTIONS(1195), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1195), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1195), + [anon_sym_ATsynthesize] = ACTIONS(1197), + [anon_sym_ATdynamic] = ACTIONS(1197), + [anon_sym_NS_ENUM] = ACTIONS(1195), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1195), + [anon_sym_NS_OPTIONS] = ACTIONS(1195), + [anon_sym_typeof] = ACTIONS(1195), + [anon_sym___typeof] = ACTIONS(1195), + [anon_sym___typeof__] = ACTIONS(1195), + [sym_id] = ACTIONS(1195), + [sym_instancetype] = ACTIONS(1195), + [sym_Class] = ACTIONS(1195), + [sym_SEL] = ACTIONS(1195), + [sym_IMP] = ACTIONS(1195), + [sym_BOOL] = ACTIONS(1195), + [sym_auto] = ACTIONS(1195), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2857] = { + [sym_identifier] = ACTIONS(1195), + [aux_sym_preproc_def_token1] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_typedef] = ACTIONS(1195), + [anon_sym_extern] = ACTIONS(1195), + [anon_sym___attribute] = ACTIONS(1195), + [anon_sym___attribute__] = ACTIONS(1195), + [anon_sym___declspec] = ACTIONS(1195), + [anon_sym___cdecl] = ACTIONS(1195), + [anon_sym___clrcall] = ACTIONS(1195), + [anon_sym___stdcall] = ACTIONS(1195), + [anon_sym___fastcall] = ACTIONS(1195), + [anon_sym___thiscall] = ACTIONS(1195), + [anon_sym___vectorcall] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1195), + [anon_sym_auto] = ACTIONS(1195), + [anon_sym_register] = ACTIONS(1195), + [anon_sym_inline] = ACTIONS(1195), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1195), + [anon_sym_const] = ACTIONS(1195), + [anon_sym_volatile] = ACTIONS(1195), + [anon_sym_restrict] = ACTIONS(1195), + [anon_sym__Atomic] = ACTIONS(1195), + [anon_sym_in] = ACTIONS(1195), + [anon_sym_out] = ACTIONS(1195), + [anon_sym_inout] = ACTIONS(1195), + [anon_sym_bycopy] = ACTIONS(1195), + [anon_sym_byref] = ACTIONS(1195), + [anon_sym_oneway] = ACTIONS(1195), + [anon_sym__Nullable] = ACTIONS(1195), + [anon_sym__Nonnull] = ACTIONS(1195), + [anon_sym__Nullable_result] = ACTIONS(1195), + [anon_sym__Null_unspecified] = ACTIONS(1195), + [anon_sym___autoreleasing] = ACTIONS(1195), + [anon_sym___nullable] = ACTIONS(1195), + [anon_sym___nonnull] = ACTIONS(1195), + [anon_sym___strong] = ACTIONS(1195), + [anon_sym___weak] = ACTIONS(1195), + [anon_sym___bridge] = ACTIONS(1195), + [anon_sym___bridge_transfer] = ACTIONS(1195), + [anon_sym___bridge_retained] = ACTIONS(1195), + [anon_sym___unsafe_unretained] = ACTIONS(1195), + [anon_sym___block] = ACTIONS(1195), + [anon_sym___kindof] = ACTIONS(1195), + [anon_sym___unused] = ACTIONS(1195), + [anon_sym__Complex] = ACTIONS(1195), + [anon_sym___complex] = ACTIONS(1195), + [anon_sym_IBOutlet] = ACTIONS(1195), + [anon_sym_IBInspectable] = ACTIONS(1195), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1195), + [anon_sym_signed] = ACTIONS(1195), + [anon_sym_unsigned] = ACTIONS(1195), + [anon_sym_long] = ACTIONS(1195), + [anon_sym_short] = ACTIONS(1195), + [sym_primitive_type] = ACTIONS(1195), + [anon_sym_enum] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_union] = ACTIONS(1195), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1195), + [anon_sym_ATend] = ACTIONS(1197), + [sym_optional] = ACTIONS(1197), + [sym_required] = ACTIONS(1197), + [anon_sym_ATproperty] = ACTIONS(1197), + [sym_method_attribute_specifier] = ACTIONS(1195), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1195), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1195), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE] = ACTIONS(1195), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1195), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_API_AVAILABLE] = ACTIONS(1195), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_API_DEPRECATED] = ACTIONS(1195), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1195), + [anon_sym___deprecated_msg] = ACTIONS(1195), + [anon_sym___deprecated_enum_msg] = ACTIONS(1195), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1195), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1195), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1195), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1195), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1195), + [anon_sym_ATsynthesize] = ACTIONS(1197), + [anon_sym_ATdynamic] = ACTIONS(1197), + [anon_sym_NS_ENUM] = ACTIONS(1195), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1195), + [anon_sym_NS_OPTIONS] = ACTIONS(1195), + [anon_sym_typeof] = ACTIONS(1195), + [anon_sym___typeof] = ACTIONS(1195), + [anon_sym___typeof__] = ACTIONS(1195), + [sym_id] = ACTIONS(1195), + [sym_instancetype] = ACTIONS(1195), + [sym_Class] = ACTIONS(1195), + [sym_SEL] = ACTIONS(1195), + [sym_IMP] = ACTIONS(1195), + [sym_BOOL] = ACTIONS(1195), + [sym_auto] = ACTIONS(1195), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2858] = { + [sym_identifier] = ACTIONS(1217), + [aux_sym_preproc_def_token1] = ACTIONS(1215), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_typedef] = ACTIONS(1217), + [anon_sym_extern] = ACTIONS(1217), + [anon_sym___attribute] = ACTIONS(1217), + [anon_sym___attribute__] = ACTIONS(1217), + [anon_sym___declspec] = ACTIONS(1217), + [anon_sym___cdecl] = ACTIONS(1217), + [anon_sym___clrcall] = ACTIONS(1217), + [anon_sym___stdcall] = ACTIONS(1217), + [anon_sym___fastcall] = ACTIONS(1217), + [anon_sym___thiscall] = ACTIONS(1217), + [anon_sym___vectorcall] = ACTIONS(1217), + [anon_sym_static] = ACTIONS(1217), + [anon_sym_auto] = ACTIONS(1217), + [anon_sym_register] = ACTIONS(1217), + [anon_sym_inline] = ACTIONS(1217), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_volatile] = ACTIONS(1217), + [anon_sym_restrict] = ACTIONS(1217), + [anon_sym__Atomic] = ACTIONS(1217), + [anon_sym_in] = ACTIONS(1217), + [anon_sym_out] = ACTIONS(1217), + [anon_sym_inout] = ACTIONS(1217), + [anon_sym_bycopy] = ACTIONS(1217), + [anon_sym_byref] = ACTIONS(1217), + [anon_sym_oneway] = ACTIONS(1217), + [anon_sym__Nullable] = ACTIONS(1217), + [anon_sym__Nonnull] = ACTIONS(1217), + [anon_sym__Nullable_result] = ACTIONS(1217), + [anon_sym__Null_unspecified] = ACTIONS(1217), + [anon_sym___autoreleasing] = ACTIONS(1217), + [anon_sym___nullable] = ACTIONS(1217), + [anon_sym___nonnull] = ACTIONS(1217), + [anon_sym___strong] = ACTIONS(1217), + [anon_sym___weak] = ACTIONS(1217), + [anon_sym___bridge] = ACTIONS(1217), + [anon_sym___bridge_transfer] = ACTIONS(1217), + [anon_sym___bridge_retained] = ACTIONS(1217), + [anon_sym___unsafe_unretained] = ACTIONS(1217), + [anon_sym___block] = ACTIONS(1217), + [anon_sym___kindof] = ACTIONS(1217), + [anon_sym___unused] = ACTIONS(1217), + [anon_sym__Complex] = ACTIONS(1217), + [anon_sym___complex] = ACTIONS(1217), + [anon_sym_IBOutlet] = ACTIONS(1217), + [anon_sym_IBInspectable] = ACTIONS(1217), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1217), + [anon_sym_signed] = ACTIONS(1217), + [anon_sym_unsigned] = ACTIONS(1217), + [anon_sym_long] = ACTIONS(1217), + [anon_sym_short] = ACTIONS(1217), + [sym_primitive_type] = ACTIONS(1217), + [anon_sym_enum] = ACTIONS(1217), + [anon_sym_struct] = ACTIONS(1217), + [anon_sym_union] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1217), + [anon_sym_ATend] = ACTIONS(1215), + [sym_optional] = ACTIONS(1215), + [sym_required] = ACTIONS(1215), + [anon_sym_ATproperty] = ACTIONS(1215), + [sym_method_attribute_specifier] = ACTIONS(1217), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1217), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1217), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1217), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1217), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1217), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1217), + [anon_sym_NS_AVAILABLE] = ACTIONS(1217), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1217), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1217), + [anon_sym_API_AVAILABLE] = ACTIONS(1217), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1217), + [anon_sym_API_DEPRECATED] = ACTIONS(1217), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1217), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1217), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1217), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1217), + [anon_sym___deprecated_msg] = ACTIONS(1217), + [anon_sym___deprecated_enum_msg] = ACTIONS(1217), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1217), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1217), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1217), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1217), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1217), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1217), + [anon_sym_ATsynthesize] = ACTIONS(1215), + [anon_sym_ATdynamic] = ACTIONS(1215), + [anon_sym_NS_ENUM] = ACTIONS(1217), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1217), + [anon_sym_NS_OPTIONS] = ACTIONS(1217), + [anon_sym_typeof] = ACTIONS(1217), + [anon_sym___typeof] = ACTIONS(1217), + [anon_sym___typeof__] = ACTIONS(1217), + [sym_id] = ACTIONS(1217), + [sym_instancetype] = ACTIONS(1217), + [sym_Class] = ACTIONS(1217), + [sym_SEL] = ACTIONS(1217), + [sym_IMP] = ACTIONS(1217), + [sym_BOOL] = ACTIONS(1217), + [sym_auto] = ACTIONS(1217), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2859] = { + [sym_identifier] = ACTIONS(1213), + [aux_sym_preproc_def_token1] = ACTIONS(1211), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_typedef] = ACTIONS(1213), + [anon_sym_extern] = ACTIONS(1213), + [anon_sym___attribute] = ACTIONS(1213), + [anon_sym___attribute__] = ACTIONS(1213), + [anon_sym___declspec] = ACTIONS(1213), + [anon_sym___cdecl] = ACTIONS(1213), + [anon_sym___clrcall] = ACTIONS(1213), + [anon_sym___stdcall] = ACTIONS(1213), + [anon_sym___fastcall] = ACTIONS(1213), + [anon_sym___thiscall] = ACTIONS(1213), + [anon_sym___vectorcall] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1213), + [anon_sym_auto] = ACTIONS(1213), + [anon_sym_register] = ACTIONS(1213), + [anon_sym_inline] = ACTIONS(1213), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1213), + [anon_sym_const] = ACTIONS(1213), + [anon_sym_volatile] = ACTIONS(1213), + [anon_sym_restrict] = ACTIONS(1213), + [anon_sym__Atomic] = ACTIONS(1213), + [anon_sym_in] = ACTIONS(1213), + [anon_sym_out] = ACTIONS(1213), + [anon_sym_inout] = ACTIONS(1213), + [anon_sym_bycopy] = ACTIONS(1213), + [anon_sym_byref] = ACTIONS(1213), + [anon_sym_oneway] = ACTIONS(1213), + [anon_sym__Nullable] = ACTIONS(1213), + [anon_sym__Nonnull] = ACTIONS(1213), + [anon_sym__Nullable_result] = ACTIONS(1213), + [anon_sym__Null_unspecified] = ACTIONS(1213), + [anon_sym___autoreleasing] = ACTIONS(1213), + [anon_sym___nullable] = ACTIONS(1213), + [anon_sym___nonnull] = ACTIONS(1213), + [anon_sym___strong] = ACTIONS(1213), + [anon_sym___weak] = ACTIONS(1213), + [anon_sym___bridge] = ACTIONS(1213), + [anon_sym___bridge_transfer] = ACTIONS(1213), + [anon_sym___bridge_retained] = ACTIONS(1213), + [anon_sym___unsafe_unretained] = ACTIONS(1213), + [anon_sym___block] = ACTIONS(1213), + [anon_sym___kindof] = ACTIONS(1213), + [anon_sym___unused] = ACTIONS(1213), + [anon_sym__Complex] = ACTIONS(1213), + [anon_sym___complex] = ACTIONS(1213), + [anon_sym_IBOutlet] = ACTIONS(1213), + [anon_sym_IBInspectable] = ACTIONS(1213), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1213), + [anon_sym_signed] = ACTIONS(1213), + [anon_sym_unsigned] = ACTIONS(1213), + [anon_sym_long] = ACTIONS(1213), + [anon_sym_short] = ACTIONS(1213), + [sym_primitive_type] = ACTIONS(1213), + [anon_sym_enum] = ACTIONS(1213), + [anon_sym_struct] = ACTIONS(1213), + [anon_sym_union] = ACTIONS(1213), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1213), + [anon_sym_ATend] = ACTIONS(1211), + [sym_optional] = ACTIONS(1211), + [sym_required] = ACTIONS(1211), + [anon_sym_ATproperty] = ACTIONS(1211), + [sym_method_attribute_specifier] = ACTIONS(1213), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1213), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1213), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1213), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1213), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1213), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1213), + [anon_sym_NS_AVAILABLE] = ACTIONS(1213), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1213), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1213), + [anon_sym_API_AVAILABLE] = ACTIONS(1213), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1213), + [anon_sym_API_DEPRECATED] = ACTIONS(1213), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1213), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1213), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1213), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1213), + [anon_sym___deprecated_msg] = ACTIONS(1213), + [anon_sym___deprecated_enum_msg] = ACTIONS(1213), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1213), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1213), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1213), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1213), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1213), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1213), + [anon_sym_ATsynthesize] = ACTIONS(1211), + [anon_sym_ATdynamic] = ACTIONS(1211), + [anon_sym_NS_ENUM] = ACTIONS(1213), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1213), + [anon_sym_NS_OPTIONS] = ACTIONS(1213), + [anon_sym_typeof] = ACTIONS(1213), + [anon_sym___typeof] = ACTIONS(1213), + [anon_sym___typeof__] = ACTIONS(1213), + [sym_id] = ACTIONS(1213), + [sym_instancetype] = ACTIONS(1213), + [sym_Class] = ACTIONS(1213), + [sym_SEL] = ACTIONS(1213), + [sym_IMP] = ACTIONS(1213), + [sym_BOOL] = ACTIONS(1213), + [sym_auto] = ACTIONS(1213), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2860] = { + [sym_identifier] = ACTIONS(1209), + [aux_sym_preproc_def_token1] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1209), + [anon_sym_extern] = ACTIONS(1209), + [anon_sym___attribute] = ACTIONS(1209), + [anon_sym___attribute__] = ACTIONS(1209), + [anon_sym___declspec] = ACTIONS(1209), + [anon_sym___cdecl] = ACTIONS(1209), + [anon_sym___clrcall] = ACTIONS(1209), + [anon_sym___stdcall] = ACTIONS(1209), + [anon_sym___fastcall] = ACTIONS(1209), + [anon_sym___thiscall] = ACTIONS(1209), + [anon_sym___vectorcall] = ACTIONS(1209), + [anon_sym_static] = ACTIONS(1209), + [anon_sym_auto] = ACTIONS(1209), + [anon_sym_register] = ACTIONS(1209), + [anon_sym_inline] = ACTIONS(1209), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1209), + [anon_sym_const] = ACTIONS(1209), + [anon_sym_volatile] = ACTIONS(1209), + [anon_sym_restrict] = ACTIONS(1209), + [anon_sym__Atomic] = ACTIONS(1209), + [anon_sym_in] = ACTIONS(1209), + [anon_sym_out] = ACTIONS(1209), + [anon_sym_inout] = ACTIONS(1209), + [anon_sym_bycopy] = ACTIONS(1209), + [anon_sym_byref] = ACTIONS(1209), + [anon_sym_oneway] = ACTIONS(1209), + [anon_sym__Nullable] = ACTIONS(1209), + [anon_sym__Nonnull] = ACTIONS(1209), + [anon_sym__Nullable_result] = ACTIONS(1209), + [anon_sym__Null_unspecified] = ACTIONS(1209), + [anon_sym___autoreleasing] = ACTIONS(1209), + [anon_sym___nullable] = ACTIONS(1209), + [anon_sym___nonnull] = ACTIONS(1209), + [anon_sym___strong] = ACTIONS(1209), + [anon_sym___weak] = ACTIONS(1209), + [anon_sym___bridge] = ACTIONS(1209), + [anon_sym___bridge_transfer] = ACTIONS(1209), + [anon_sym___bridge_retained] = ACTIONS(1209), + [anon_sym___unsafe_unretained] = ACTIONS(1209), + [anon_sym___block] = ACTIONS(1209), + [anon_sym___kindof] = ACTIONS(1209), + [anon_sym___unused] = ACTIONS(1209), + [anon_sym__Complex] = ACTIONS(1209), + [anon_sym___complex] = ACTIONS(1209), + [anon_sym_IBOutlet] = ACTIONS(1209), + [anon_sym_IBInspectable] = ACTIONS(1209), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1209), + [anon_sym_signed] = ACTIONS(1209), + [anon_sym_unsigned] = ACTIONS(1209), + [anon_sym_long] = ACTIONS(1209), + [anon_sym_short] = ACTIONS(1209), + [sym_primitive_type] = ACTIONS(1209), + [anon_sym_enum] = ACTIONS(1209), + [anon_sym_struct] = ACTIONS(1209), + [anon_sym_union] = ACTIONS(1209), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1209), + [anon_sym_ATend] = ACTIONS(1207), + [sym_optional] = ACTIONS(1207), + [sym_required] = ACTIONS(1207), + [anon_sym_ATproperty] = ACTIONS(1207), + [sym_method_attribute_specifier] = ACTIONS(1209), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1209), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1209), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1209), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1209), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1209), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1209), + [anon_sym_NS_AVAILABLE] = ACTIONS(1209), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1209), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1209), + [anon_sym_API_AVAILABLE] = ACTIONS(1209), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1209), + [anon_sym_API_DEPRECATED] = ACTIONS(1209), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1209), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1209), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1209), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1209), + [anon_sym___deprecated_msg] = ACTIONS(1209), + [anon_sym___deprecated_enum_msg] = ACTIONS(1209), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1209), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1209), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1209), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1209), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1209), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1209), + [anon_sym_ATsynthesize] = ACTIONS(1207), + [anon_sym_ATdynamic] = ACTIONS(1207), + [anon_sym_NS_ENUM] = ACTIONS(1209), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1209), + [anon_sym_NS_OPTIONS] = ACTIONS(1209), + [anon_sym_typeof] = ACTIONS(1209), + [anon_sym___typeof] = ACTIONS(1209), + [anon_sym___typeof__] = ACTIONS(1209), + [sym_id] = ACTIONS(1209), + [sym_instancetype] = ACTIONS(1209), + [sym_Class] = ACTIONS(1209), + [sym_SEL] = ACTIONS(1209), + [sym_IMP] = ACTIONS(1209), + [sym_BOOL] = ACTIONS(1209), + [sym_auto] = ACTIONS(1209), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2861] = { + [sym_identifier] = ACTIONS(1205), + [aux_sym_preproc_def_token1] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_typedef] = ACTIONS(1205), + [anon_sym_extern] = ACTIONS(1205), + [anon_sym___attribute] = ACTIONS(1205), + [anon_sym___attribute__] = ACTIONS(1205), + [anon_sym___declspec] = ACTIONS(1205), + [anon_sym___cdecl] = ACTIONS(1205), + [anon_sym___clrcall] = ACTIONS(1205), + [anon_sym___stdcall] = ACTIONS(1205), + [anon_sym___fastcall] = ACTIONS(1205), + [anon_sym___thiscall] = ACTIONS(1205), + [anon_sym___vectorcall] = ACTIONS(1205), + [anon_sym_static] = ACTIONS(1205), + [anon_sym_auto] = ACTIONS(1205), + [anon_sym_register] = ACTIONS(1205), + [anon_sym_inline] = ACTIONS(1205), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1205), + [anon_sym_const] = ACTIONS(1205), + [anon_sym_volatile] = ACTIONS(1205), + [anon_sym_restrict] = ACTIONS(1205), + [anon_sym__Atomic] = ACTIONS(1205), + [anon_sym_in] = ACTIONS(1205), + [anon_sym_out] = ACTIONS(1205), + [anon_sym_inout] = ACTIONS(1205), + [anon_sym_bycopy] = ACTIONS(1205), + [anon_sym_byref] = ACTIONS(1205), + [anon_sym_oneway] = ACTIONS(1205), + [anon_sym__Nullable] = ACTIONS(1205), + [anon_sym__Nonnull] = ACTIONS(1205), + [anon_sym__Nullable_result] = ACTIONS(1205), + [anon_sym__Null_unspecified] = ACTIONS(1205), + [anon_sym___autoreleasing] = ACTIONS(1205), + [anon_sym___nullable] = ACTIONS(1205), + [anon_sym___nonnull] = ACTIONS(1205), + [anon_sym___strong] = ACTIONS(1205), + [anon_sym___weak] = ACTIONS(1205), + [anon_sym___bridge] = ACTIONS(1205), + [anon_sym___bridge_transfer] = ACTIONS(1205), + [anon_sym___bridge_retained] = ACTIONS(1205), + [anon_sym___unsafe_unretained] = ACTIONS(1205), + [anon_sym___block] = ACTIONS(1205), + [anon_sym___kindof] = ACTIONS(1205), + [anon_sym___unused] = ACTIONS(1205), + [anon_sym__Complex] = ACTIONS(1205), + [anon_sym___complex] = ACTIONS(1205), + [anon_sym_IBOutlet] = ACTIONS(1205), + [anon_sym_IBInspectable] = ACTIONS(1205), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(1205), + [anon_sym_unsigned] = ACTIONS(1205), + [anon_sym_long] = ACTIONS(1205), + [anon_sym_short] = ACTIONS(1205), + [sym_primitive_type] = ACTIONS(1205), + [anon_sym_enum] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1205), + [anon_sym_union] = ACTIONS(1205), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1205), + [anon_sym_ATend] = ACTIONS(1203), + [sym_optional] = ACTIONS(1203), + [sym_required] = ACTIONS(1203), + [anon_sym_ATproperty] = ACTIONS(1203), + [sym_method_attribute_specifier] = ACTIONS(1205), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1205), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1205), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1205), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1205), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1205), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1205), + [anon_sym_NS_AVAILABLE] = ACTIONS(1205), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1205), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1205), + [anon_sym_API_AVAILABLE] = ACTIONS(1205), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1205), + [anon_sym_API_DEPRECATED] = ACTIONS(1205), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1205), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1205), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1205), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1205), + [anon_sym___deprecated_msg] = ACTIONS(1205), + [anon_sym___deprecated_enum_msg] = ACTIONS(1205), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1205), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1205), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1205), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1205), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1205), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1205), + [anon_sym_ATsynthesize] = ACTIONS(1203), + [anon_sym_ATdynamic] = ACTIONS(1203), + [anon_sym_NS_ENUM] = ACTIONS(1205), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1205), + [anon_sym_NS_OPTIONS] = ACTIONS(1205), + [anon_sym_typeof] = ACTIONS(1205), + [anon_sym___typeof] = ACTIONS(1205), + [anon_sym___typeof__] = ACTIONS(1205), + [sym_id] = ACTIONS(1205), + [sym_instancetype] = ACTIONS(1205), + [sym_Class] = ACTIONS(1205), + [sym_SEL] = ACTIONS(1205), + [sym_IMP] = ACTIONS(1205), + [sym_BOOL] = ACTIONS(1205), + [sym_auto] = ACTIONS(1205), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2862] = { + [sym_identifier] = ACTIONS(1387), + [aux_sym_preproc_def_token1] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_typedef] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym___attribute] = ACTIONS(1387), + [anon_sym___attribute__] = ACTIONS(1387), + [anon_sym___declspec] = ACTIONS(1387), + [anon_sym___cdecl] = ACTIONS(1387), + [anon_sym___clrcall] = ACTIONS(1387), + [anon_sym___stdcall] = ACTIONS(1387), + [anon_sym___fastcall] = ACTIONS(1387), + [anon_sym___thiscall] = ACTIONS(1387), + [anon_sym___vectorcall] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_auto] = ACTIONS(1387), + [anon_sym_register] = ACTIONS(1387), + [anon_sym_inline] = ACTIONS(1387), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_volatile] = ACTIONS(1387), + [anon_sym_restrict] = ACTIONS(1387), + [anon_sym__Atomic] = ACTIONS(1387), + [anon_sym_in] = ACTIONS(1387), + [anon_sym_out] = ACTIONS(1387), + [anon_sym_inout] = ACTIONS(1387), + [anon_sym_bycopy] = ACTIONS(1387), + [anon_sym_byref] = ACTIONS(1387), + [anon_sym_oneway] = ACTIONS(1387), + [anon_sym__Nullable] = ACTIONS(1387), + [anon_sym__Nonnull] = ACTIONS(1387), + [anon_sym__Nullable_result] = ACTIONS(1387), + [anon_sym__Null_unspecified] = ACTIONS(1387), + [anon_sym___autoreleasing] = ACTIONS(1387), + [anon_sym___nullable] = ACTIONS(1387), + [anon_sym___nonnull] = ACTIONS(1387), + [anon_sym___strong] = ACTIONS(1387), + [anon_sym___weak] = ACTIONS(1387), + [anon_sym___bridge] = ACTIONS(1387), + [anon_sym___bridge_transfer] = ACTIONS(1387), + [anon_sym___bridge_retained] = ACTIONS(1387), + [anon_sym___unsafe_unretained] = ACTIONS(1387), + [anon_sym___block] = ACTIONS(1387), + [anon_sym___kindof] = ACTIONS(1387), + [anon_sym___unused] = ACTIONS(1387), + [anon_sym__Complex] = ACTIONS(1387), + [anon_sym___complex] = ACTIONS(1387), + [anon_sym_IBOutlet] = ACTIONS(1387), + [anon_sym_IBInspectable] = ACTIONS(1387), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1387), + [anon_sym_signed] = ACTIONS(1387), + [anon_sym_unsigned] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [sym_primitive_type] = ACTIONS(1387), + [anon_sym_enum] = ACTIONS(1387), + [anon_sym_struct] = ACTIONS(1387), + [anon_sym_union] = ACTIONS(1387), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1387), + [anon_sym_ATend] = ACTIONS(1389), + [sym_optional] = ACTIONS(1389), + [sym_required] = ACTIONS(1389), + [anon_sym_ATproperty] = ACTIONS(1389), + [sym_method_attribute_specifier] = ACTIONS(1387), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1387), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1387), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1387), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1387), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1387), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1387), + [anon_sym_NS_AVAILABLE] = ACTIONS(1387), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1387), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1387), + [anon_sym_API_AVAILABLE] = ACTIONS(1387), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1387), + [anon_sym_API_DEPRECATED] = ACTIONS(1387), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1387), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1387), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1387), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1387), + [anon_sym___deprecated_msg] = ACTIONS(1387), + [anon_sym___deprecated_enum_msg] = ACTIONS(1387), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1387), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1387), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1387), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1387), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1387), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1387), + [anon_sym_ATsynthesize] = ACTIONS(1389), + [anon_sym_ATdynamic] = ACTIONS(1389), + [anon_sym_NS_ENUM] = ACTIONS(1387), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1387), + [anon_sym_NS_OPTIONS] = ACTIONS(1387), + [anon_sym_typeof] = ACTIONS(1387), + [anon_sym___typeof] = ACTIONS(1387), + [anon_sym___typeof__] = ACTIONS(1387), + [sym_id] = ACTIONS(1387), + [sym_instancetype] = ACTIONS(1387), + [sym_Class] = ACTIONS(1387), + [sym_SEL] = ACTIONS(1387), + [sym_IMP] = ACTIONS(1387), + [sym_BOOL] = ACTIONS(1387), + [sym_auto] = ACTIONS(1387), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2863] = { + [sym__declaration_specifiers] = STATE(3912), + [sym_attribute_specifier] = STATE(2946), + [sym_ms_declspec_modifier] = STATE(2946), + [sym_storage_class_specifier] = STATE(2946), + [sym_type_qualifier] = STATE(2946), + [sym__type_specifier] = STATE(3346), + [sym_sized_type_specifier] = STATE(3346), + [sym_enum_specifier] = STATE(3346), + [sym_struct_specifier] = STATE(3346), + [sym_union_specifier] = STATE(3346), + [sym_macro_type_specifier] = STATE(3346), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3346), + [sym_typeof_specifier] = STATE(3346), + [sym_atomic_specifier] = STATE(3346), + [sym_generic_type_specifier] = STATE(3346), + [aux_sym__declaration_specifiers_repeat1] = STATE(2946), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(6803), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(6803), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(6803), + [sym_IMP] = ACTIONS(6803), + [sym_BOOL] = ACTIONS(6803), + [sym_auto] = ACTIONS(6803), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2864] = { + [sym__declaration_specifiers] = STATE(4728), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2865] = { + [sym_identifier] = ACTIONS(1744), + [aux_sym_preproc_def_token1] = ACTIONS(1746), + [anon_sym_DASH] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1746), + [anon_sym_typedef] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1744), + [anon_sym___attribute] = ACTIONS(1744), + [anon_sym___attribute__] = ACTIONS(1744), + [anon_sym___declspec] = ACTIONS(1744), + [anon_sym___cdecl] = ACTIONS(1744), + [anon_sym___clrcall] = ACTIONS(1744), + [anon_sym___stdcall] = ACTIONS(1744), + [anon_sym___fastcall] = ACTIONS(1744), + [anon_sym___thiscall] = ACTIONS(1744), + [anon_sym___vectorcall] = ACTIONS(1744), + [anon_sym_static] = ACTIONS(1744), + [anon_sym_auto] = ACTIONS(1744), + [anon_sym_register] = ACTIONS(1744), + [anon_sym_inline] = ACTIONS(1744), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym__Atomic] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_out] = ACTIONS(1744), + [anon_sym_inout] = ACTIONS(1744), + [anon_sym_bycopy] = ACTIONS(1744), + [anon_sym_byref] = ACTIONS(1744), + [anon_sym_oneway] = ACTIONS(1744), + [anon_sym__Nullable] = ACTIONS(1744), + [anon_sym__Nonnull] = ACTIONS(1744), + [anon_sym__Nullable_result] = ACTIONS(1744), + [anon_sym__Null_unspecified] = ACTIONS(1744), + [anon_sym___autoreleasing] = ACTIONS(1744), + [anon_sym___nullable] = ACTIONS(1744), + [anon_sym___nonnull] = ACTIONS(1744), + [anon_sym___strong] = ACTIONS(1744), + [anon_sym___weak] = ACTIONS(1744), + [anon_sym___bridge] = ACTIONS(1744), + [anon_sym___bridge_transfer] = ACTIONS(1744), + [anon_sym___bridge_retained] = ACTIONS(1744), + [anon_sym___unsafe_unretained] = ACTIONS(1744), + [anon_sym___block] = ACTIONS(1744), + [anon_sym___kindof] = ACTIONS(1744), + [anon_sym___unused] = ACTIONS(1744), + [anon_sym__Complex] = ACTIONS(1744), + [anon_sym___complex] = ACTIONS(1744), + [anon_sym_IBOutlet] = ACTIONS(1744), + [anon_sym_IBInspectable] = ACTIONS(1744), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1744), + [anon_sym_signed] = ACTIONS(1744), + [anon_sym_unsigned] = ACTIONS(1744), + [anon_sym_long] = ACTIONS(1744), + [anon_sym_short] = ACTIONS(1744), + [sym_primitive_type] = ACTIONS(1744), + [anon_sym_enum] = ACTIONS(1744), + [anon_sym_struct] = ACTIONS(1744), + [anon_sym_union] = ACTIONS(1744), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1744), + [anon_sym_ATend] = ACTIONS(1746), + [sym_optional] = ACTIONS(1746), + [sym_required] = ACTIONS(1746), + [anon_sym_ATproperty] = ACTIONS(1746), + [sym_method_attribute_specifier] = ACTIONS(1744), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1744), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1744), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1744), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1744), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1744), + [anon_sym_NS_AVAILABLE] = ACTIONS(1744), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1744), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_API_AVAILABLE] = ACTIONS(1744), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_API_DEPRECATED] = ACTIONS(1744), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1744), + [anon_sym___deprecated_msg] = ACTIONS(1744), + [anon_sym___deprecated_enum_msg] = ACTIONS(1744), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1744), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1744), + [anon_sym_ATsynthesize] = ACTIONS(1746), + [anon_sym_ATdynamic] = ACTIONS(1746), + [anon_sym_NS_ENUM] = ACTIONS(1744), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1744), + [anon_sym_NS_OPTIONS] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(1744), + [anon_sym___typeof] = ACTIONS(1744), + [anon_sym___typeof__] = ACTIONS(1744), + [sym_id] = ACTIONS(1744), + [sym_instancetype] = ACTIONS(1744), + [sym_Class] = ACTIONS(1744), + [sym_SEL] = ACTIONS(1744), + [sym_IMP] = ACTIONS(1744), + [sym_BOOL] = ACTIONS(1744), + [sym_auto] = ACTIONS(1744), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2866] = { + [sym_type_qualifier] = STATE(2933), + [sym__expression] = STATE(4535), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_type_definition_repeat1] = STATE(2933), + [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(23), [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(6892), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(6984), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(6986), - [anon_sym_enum] = ACTIONS(6988), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6990), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(6894), + [anon_sym_const] = ACTIONS(6878), + [anon_sym_volatile] = ACTIONS(6878), + [anon_sym_restrict] = ACTIONS(6878), + [anon_sym__Atomic] = ACTIONS(6878), + [anon_sym_in] = ACTIONS(6878), + [anon_sym_out] = ACTIONS(6878), + [anon_sym_inout] = ACTIONS(6878), + [anon_sym_bycopy] = ACTIONS(6878), + [anon_sym_byref] = ACTIONS(6878), + [anon_sym_oneway] = ACTIONS(6878), + [anon_sym__Nullable] = ACTIONS(6878), + [anon_sym__Nonnull] = ACTIONS(6878), + [anon_sym__Nullable_result] = ACTIONS(6878), + [anon_sym__Null_unspecified] = ACTIONS(6878), + [anon_sym___autoreleasing] = ACTIONS(6878), + [anon_sym___nullable] = ACTIONS(6878), + [anon_sym___nonnull] = ACTIONS(6878), + [anon_sym___strong] = ACTIONS(6878), + [anon_sym___weak] = ACTIONS(6878), + [anon_sym___bridge] = ACTIONS(6878), + [anon_sym___bridge_transfer] = ACTIONS(6878), + [anon_sym___bridge_retained] = ACTIONS(6878), + [anon_sym___unsafe_unretained] = ACTIONS(6878), + [anon_sym___block] = ACTIONS(6878), + [anon_sym___kindof] = ACTIONS(6878), + [anon_sym___unused] = ACTIONS(6878), + [anon_sym__Complex] = ACTIONS(6878), + [anon_sym___complex] = ACTIONS(6878), + [anon_sym_IBOutlet] = ACTIONS(6878), + [anon_sym_IBInspectable] = ACTIONS(6878), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(6986), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(6986), - [sym_IMP] = ACTIONS(6986), - [sym_BOOL] = ACTIONS(6986), - [sym_auto] = ACTIONS(6986), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -490492,111 +474577,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2993] = { - [sym__declaration_specifiers] = STATE(4712), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [2867] = { + [sym_identifier] = ACTIONS(1407), + [aux_sym_preproc_def_token1] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_typedef] = ACTIONS(1407), + [anon_sym_extern] = ACTIONS(1407), + [anon_sym___attribute] = ACTIONS(1407), + [anon_sym___attribute__] = ACTIONS(1407), + [anon_sym___declspec] = ACTIONS(1407), + [anon_sym___cdecl] = ACTIONS(1407), + [anon_sym___clrcall] = ACTIONS(1407), + [anon_sym___stdcall] = ACTIONS(1407), + [anon_sym___fastcall] = ACTIONS(1407), + [anon_sym___thiscall] = ACTIONS(1407), + [anon_sym___vectorcall] = ACTIONS(1407), + [anon_sym_static] = ACTIONS(1407), + [anon_sym_auto] = ACTIONS(1407), + [anon_sym_register] = ACTIONS(1407), + [anon_sym_inline] = ACTIONS(1407), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_volatile] = ACTIONS(1407), + [anon_sym_restrict] = ACTIONS(1407), + [anon_sym__Atomic] = ACTIONS(1407), + [anon_sym_in] = ACTIONS(1407), + [anon_sym_out] = ACTIONS(1407), + [anon_sym_inout] = ACTIONS(1407), + [anon_sym_bycopy] = ACTIONS(1407), + [anon_sym_byref] = ACTIONS(1407), + [anon_sym_oneway] = ACTIONS(1407), + [anon_sym__Nullable] = ACTIONS(1407), + [anon_sym__Nonnull] = ACTIONS(1407), + [anon_sym__Nullable_result] = ACTIONS(1407), + [anon_sym__Null_unspecified] = ACTIONS(1407), + [anon_sym___autoreleasing] = ACTIONS(1407), + [anon_sym___nullable] = ACTIONS(1407), + [anon_sym___nonnull] = ACTIONS(1407), + [anon_sym___strong] = ACTIONS(1407), + [anon_sym___weak] = ACTIONS(1407), + [anon_sym___bridge] = ACTIONS(1407), + [anon_sym___bridge_transfer] = ACTIONS(1407), + [anon_sym___bridge_retained] = ACTIONS(1407), + [anon_sym___unsafe_unretained] = ACTIONS(1407), + [anon_sym___block] = ACTIONS(1407), + [anon_sym___kindof] = ACTIONS(1407), + [anon_sym___unused] = ACTIONS(1407), + [anon_sym__Complex] = ACTIONS(1407), + [anon_sym___complex] = ACTIONS(1407), + [anon_sym_IBOutlet] = ACTIONS(1407), + [anon_sym_IBInspectable] = ACTIONS(1407), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1407), + [anon_sym_signed] = ACTIONS(1407), + [anon_sym_unsigned] = ACTIONS(1407), + [anon_sym_long] = ACTIONS(1407), + [anon_sym_short] = ACTIONS(1407), + [sym_primitive_type] = ACTIONS(1407), + [anon_sym_enum] = ACTIONS(1407), + [anon_sym_struct] = ACTIONS(1407), + [anon_sym_union] = ACTIONS(1407), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1407), + [anon_sym_ATend] = ACTIONS(1409), + [sym_optional] = ACTIONS(1409), + [sym_required] = ACTIONS(1409), + [anon_sym_ATproperty] = ACTIONS(1409), + [sym_method_attribute_specifier] = ACTIONS(1407), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1407), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1407), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1407), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1407), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1407), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1407), + [anon_sym_NS_AVAILABLE] = ACTIONS(1407), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1407), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1407), + [anon_sym_API_AVAILABLE] = ACTIONS(1407), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1407), + [anon_sym_API_DEPRECATED] = ACTIONS(1407), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1407), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1407), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1407), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1407), + [anon_sym___deprecated_msg] = ACTIONS(1407), + [anon_sym___deprecated_enum_msg] = ACTIONS(1407), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1407), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1407), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1407), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1407), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1407), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1407), + [anon_sym_ATsynthesize] = ACTIONS(1409), + [anon_sym_ATdynamic] = ACTIONS(1409), + [anon_sym_NS_ENUM] = ACTIONS(1407), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1407), + [anon_sym_NS_OPTIONS] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1407), + [anon_sym___typeof] = ACTIONS(1407), + [anon_sym___typeof__] = ACTIONS(1407), + [sym_id] = ACTIONS(1407), + [sym_instancetype] = ACTIONS(1407), + [sym_Class] = ACTIONS(1407), + [sym_SEL] = ACTIONS(1407), + [sym_IMP] = ACTIONS(1407), + [sym_BOOL] = ACTIONS(1407), + [sym_auto] = ACTIONS(1407), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -490604,111 +474690,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2994] = { - [sym__declaration_specifiers] = STATE(4697), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [2868] = { + [sym_identifier] = ACTIONS(1411), + [aux_sym_preproc_def_token1] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_typedef] = ACTIONS(1411), + [anon_sym_extern] = ACTIONS(1411), + [anon_sym___attribute] = ACTIONS(1411), + [anon_sym___attribute__] = ACTIONS(1411), + [anon_sym___declspec] = ACTIONS(1411), + [anon_sym___cdecl] = ACTIONS(1411), + [anon_sym___clrcall] = ACTIONS(1411), + [anon_sym___stdcall] = ACTIONS(1411), + [anon_sym___fastcall] = ACTIONS(1411), + [anon_sym___thiscall] = ACTIONS(1411), + [anon_sym___vectorcall] = ACTIONS(1411), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_auto] = ACTIONS(1411), + [anon_sym_register] = ACTIONS(1411), + [anon_sym_inline] = ACTIONS(1411), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1411), + [anon_sym_volatile] = ACTIONS(1411), + [anon_sym_restrict] = ACTIONS(1411), + [anon_sym__Atomic] = ACTIONS(1411), + [anon_sym_in] = ACTIONS(1411), + [anon_sym_out] = ACTIONS(1411), + [anon_sym_inout] = ACTIONS(1411), + [anon_sym_bycopy] = ACTIONS(1411), + [anon_sym_byref] = ACTIONS(1411), + [anon_sym_oneway] = ACTIONS(1411), + [anon_sym__Nullable] = ACTIONS(1411), + [anon_sym__Nonnull] = ACTIONS(1411), + [anon_sym__Nullable_result] = ACTIONS(1411), + [anon_sym__Null_unspecified] = ACTIONS(1411), + [anon_sym___autoreleasing] = ACTIONS(1411), + [anon_sym___nullable] = ACTIONS(1411), + [anon_sym___nonnull] = ACTIONS(1411), + [anon_sym___strong] = ACTIONS(1411), + [anon_sym___weak] = ACTIONS(1411), + [anon_sym___bridge] = ACTIONS(1411), + [anon_sym___bridge_transfer] = ACTIONS(1411), + [anon_sym___bridge_retained] = ACTIONS(1411), + [anon_sym___unsafe_unretained] = ACTIONS(1411), + [anon_sym___block] = ACTIONS(1411), + [anon_sym___kindof] = ACTIONS(1411), + [anon_sym___unused] = ACTIONS(1411), + [anon_sym__Complex] = ACTIONS(1411), + [anon_sym___complex] = ACTIONS(1411), + [anon_sym_IBOutlet] = ACTIONS(1411), + [anon_sym_IBInspectable] = ACTIONS(1411), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1411), + [anon_sym_signed] = ACTIONS(1411), + [anon_sym_unsigned] = ACTIONS(1411), + [anon_sym_long] = ACTIONS(1411), + [anon_sym_short] = ACTIONS(1411), + [sym_primitive_type] = ACTIONS(1411), + [anon_sym_enum] = ACTIONS(1411), + [anon_sym_struct] = ACTIONS(1411), + [anon_sym_union] = ACTIONS(1411), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1411), + [anon_sym_ATend] = ACTIONS(1413), + [sym_optional] = ACTIONS(1413), + [sym_required] = ACTIONS(1413), + [anon_sym_ATproperty] = ACTIONS(1413), + [sym_method_attribute_specifier] = ACTIONS(1411), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1411), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1411), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1411), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1411), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1411), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1411), + [anon_sym_NS_AVAILABLE] = ACTIONS(1411), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1411), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1411), + [anon_sym_API_AVAILABLE] = ACTIONS(1411), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1411), + [anon_sym_API_DEPRECATED] = ACTIONS(1411), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1411), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1411), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1411), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1411), + [anon_sym___deprecated_msg] = ACTIONS(1411), + [anon_sym___deprecated_enum_msg] = ACTIONS(1411), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1411), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1411), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1411), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1411), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1411), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1411), + [anon_sym_ATsynthesize] = ACTIONS(1413), + [anon_sym_ATdynamic] = ACTIONS(1413), + [anon_sym_NS_ENUM] = ACTIONS(1411), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1411), + [anon_sym_NS_OPTIONS] = ACTIONS(1411), + [anon_sym_typeof] = ACTIONS(1411), + [anon_sym___typeof] = ACTIONS(1411), + [anon_sym___typeof__] = ACTIONS(1411), + [sym_id] = ACTIONS(1411), + [sym_instancetype] = ACTIONS(1411), + [sym_Class] = ACTIONS(1411), + [sym_SEL] = ACTIONS(1411), + [sym_IMP] = ACTIONS(1411), + [sym_BOOL] = ACTIONS(1411), + [sym_auto] = ACTIONS(1411), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -490716,111 +474803,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2995] = { - [sym__declaration_specifiers] = STATE(4698), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [2869] = { + [sym_identifier] = ACTIONS(1293), + [aux_sym_preproc_def_token1] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_typedef] = ACTIONS(1293), + [anon_sym_extern] = ACTIONS(1293), + [anon_sym___attribute] = ACTIONS(1293), + [anon_sym___attribute__] = ACTIONS(1293), + [anon_sym___declspec] = ACTIONS(1293), + [anon_sym___cdecl] = ACTIONS(1293), + [anon_sym___clrcall] = ACTIONS(1293), + [anon_sym___stdcall] = ACTIONS(1293), + [anon_sym___fastcall] = ACTIONS(1293), + [anon_sym___thiscall] = ACTIONS(1293), + [anon_sym___vectorcall] = ACTIONS(1293), + [anon_sym_static] = ACTIONS(1293), + [anon_sym_auto] = ACTIONS(1293), + [anon_sym_register] = ACTIONS(1293), + [anon_sym_inline] = ACTIONS(1293), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1293), + [anon_sym_const] = ACTIONS(1293), + [anon_sym_volatile] = ACTIONS(1293), + [anon_sym_restrict] = ACTIONS(1293), + [anon_sym__Atomic] = ACTIONS(1293), + [anon_sym_in] = ACTIONS(1293), + [anon_sym_out] = ACTIONS(1293), + [anon_sym_inout] = ACTIONS(1293), + [anon_sym_bycopy] = ACTIONS(1293), + [anon_sym_byref] = ACTIONS(1293), + [anon_sym_oneway] = ACTIONS(1293), + [anon_sym__Nullable] = ACTIONS(1293), + [anon_sym__Nonnull] = ACTIONS(1293), + [anon_sym__Nullable_result] = ACTIONS(1293), + [anon_sym__Null_unspecified] = ACTIONS(1293), + [anon_sym___autoreleasing] = ACTIONS(1293), + [anon_sym___nullable] = ACTIONS(1293), + [anon_sym___nonnull] = ACTIONS(1293), + [anon_sym___strong] = ACTIONS(1293), + [anon_sym___weak] = ACTIONS(1293), + [anon_sym___bridge] = ACTIONS(1293), + [anon_sym___bridge_transfer] = ACTIONS(1293), + [anon_sym___bridge_retained] = ACTIONS(1293), + [anon_sym___unsafe_unretained] = ACTIONS(1293), + [anon_sym___block] = ACTIONS(1293), + [anon_sym___kindof] = ACTIONS(1293), + [anon_sym___unused] = ACTIONS(1293), + [anon_sym__Complex] = ACTIONS(1293), + [anon_sym___complex] = ACTIONS(1293), + [anon_sym_IBOutlet] = ACTIONS(1293), + [anon_sym_IBInspectable] = ACTIONS(1293), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1293), + [anon_sym_signed] = ACTIONS(1293), + [anon_sym_unsigned] = ACTIONS(1293), + [anon_sym_long] = ACTIONS(1293), + [anon_sym_short] = ACTIONS(1293), + [sym_primitive_type] = ACTIONS(1293), + [anon_sym_enum] = ACTIONS(1293), + [anon_sym_struct] = ACTIONS(1293), + [anon_sym_union] = ACTIONS(1293), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1293), + [anon_sym_ATend] = ACTIONS(1291), + [sym_optional] = ACTIONS(1291), + [sym_required] = ACTIONS(1291), + [anon_sym_ATproperty] = ACTIONS(1291), + [sym_method_attribute_specifier] = ACTIONS(1293), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1293), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1293), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1293), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1293), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1293), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1293), + [anon_sym_NS_AVAILABLE] = ACTIONS(1293), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1293), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1293), + [anon_sym_API_AVAILABLE] = ACTIONS(1293), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1293), + [anon_sym_API_DEPRECATED] = ACTIONS(1293), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1293), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1293), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1293), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1293), + [anon_sym___deprecated_msg] = ACTIONS(1293), + [anon_sym___deprecated_enum_msg] = ACTIONS(1293), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1293), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1293), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1293), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1293), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1293), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1293), + [anon_sym_ATsynthesize] = ACTIONS(1291), + [anon_sym_ATdynamic] = ACTIONS(1291), + [anon_sym_NS_ENUM] = ACTIONS(1293), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1293), + [anon_sym_NS_OPTIONS] = ACTIONS(1293), + [anon_sym_typeof] = ACTIONS(1293), + [anon_sym___typeof] = ACTIONS(1293), + [anon_sym___typeof__] = ACTIONS(1293), + [sym_id] = ACTIONS(1293), + [sym_instancetype] = ACTIONS(1293), + [sym_Class] = ACTIONS(1293), + [sym_SEL] = ACTIONS(1293), + [sym_IMP] = ACTIONS(1293), + [sym_BOOL] = ACTIONS(1293), + [sym_auto] = ACTIONS(1293), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -490828,111 +474916,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2996] = { - [sym__declaration_specifiers] = STATE(4703), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(829), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [2870] = { + [sym_identifier] = ACTIONS(1288), + [aux_sym_preproc_def_token1] = ACTIONS(1285), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1285), + [anon_sym_typedef] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym___attribute] = ACTIONS(1288), + [anon_sym___attribute__] = ACTIONS(1288), + [anon_sym___declspec] = ACTIONS(1288), + [anon_sym___cdecl] = ACTIONS(1288), + [anon_sym___clrcall] = ACTIONS(1288), + [anon_sym___stdcall] = ACTIONS(1288), + [anon_sym___fastcall] = ACTIONS(1288), + [anon_sym___thiscall] = ACTIONS(1288), + [anon_sym___vectorcall] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_auto] = ACTIONS(1288), + [anon_sym_register] = ACTIONS(1288), + [anon_sym_inline] = ACTIONS(1288), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_volatile] = ACTIONS(1288), + [anon_sym_restrict] = ACTIONS(1288), + [anon_sym__Atomic] = ACTIONS(1288), + [anon_sym_in] = ACTIONS(1288), + [anon_sym_out] = ACTIONS(1288), + [anon_sym_inout] = ACTIONS(1288), + [anon_sym_bycopy] = ACTIONS(1288), + [anon_sym_byref] = ACTIONS(1288), + [anon_sym_oneway] = ACTIONS(1288), + [anon_sym__Nullable] = ACTIONS(1288), + [anon_sym__Nonnull] = ACTIONS(1288), + [anon_sym__Nullable_result] = ACTIONS(1288), + [anon_sym__Null_unspecified] = ACTIONS(1288), + [anon_sym___autoreleasing] = ACTIONS(1288), + [anon_sym___nullable] = ACTIONS(1288), + [anon_sym___nonnull] = ACTIONS(1288), + [anon_sym___strong] = ACTIONS(1288), + [anon_sym___weak] = ACTIONS(1288), + [anon_sym___bridge] = ACTIONS(1288), + [anon_sym___bridge_transfer] = ACTIONS(1288), + [anon_sym___bridge_retained] = ACTIONS(1288), + [anon_sym___unsafe_unretained] = ACTIONS(1288), + [anon_sym___block] = ACTIONS(1288), + [anon_sym___kindof] = ACTIONS(1288), + [anon_sym___unused] = ACTIONS(1288), + [anon_sym__Complex] = ACTIONS(1288), + [anon_sym___complex] = ACTIONS(1288), + [anon_sym_IBOutlet] = ACTIONS(1288), + [anon_sym_IBInspectable] = ACTIONS(1288), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1288), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [sym_primitive_type] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(829), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(829), - [sym_IMP] = ACTIONS(829), - [sym_BOOL] = ACTIONS(829), - [sym_auto] = ACTIONS(829), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1288), + [anon_sym_ATend] = ACTIONS(1285), + [sym_optional] = ACTIONS(1285), + [sym_required] = ACTIONS(1285), + [anon_sym_ATproperty] = ACTIONS(1285), + [sym_method_attribute_specifier] = ACTIONS(1288), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1288), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1288), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1288), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1288), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1288), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1288), + [anon_sym_NS_AVAILABLE] = ACTIONS(1288), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1288), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1288), + [anon_sym_API_AVAILABLE] = ACTIONS(1288), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1288), + [anon_sym_API_DEPRECATED] = ACTIONS(1288), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1288), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1288), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1288), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1288), + [anon_sym___deprecated_msg] = ACTIONS(1288), + [anon_sym___deprecated_enum_msg] = ACTIONS(1288), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1288), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1288), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1288), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1288), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1288), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1288), + [anon_sym_ATsynthesize] = ACTIONS(1285), + [anon_sym_ATdynamic] = ACTIONS(1285), + [anon_sym_NS_ENUM] = ACTIONS(1288), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1288), + [anon_sym_NS_OPTIONS] = ACTIONS(1288), + [anon_sym_typeof] = ACTIONS(1288), + [anon_sym___typeof] = ACTIONS(1288), + [anon_sym___typeof__] = ACTIONS(1288), + [sym_id] = ACTIONS(1288), + [sym_instancetype] = ACTIONS(1288), + [sym_Class] = ACTIONS(1288), + [sym_SEL] = ACTIONS(1288), + [sym_IMP] = ACTIONS(1288), + [sym_BOOL] = ACTIONS(1288), + [sym_auto] = ACTIONS(1288), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -490940,111 +475029,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2997] = { - [sym__declaration_specifiers] = STATE(3949), - [sym_attribute_specifier] = STATE(3007), - [sym_ms_declspec_modifier] = STATE(3007), - [sym_storage_class_specifier] = STATE(3007), - [sym_type_qualifier] = STATE(3007), - [sym__type_specifier] = STATE(3408), - [sym_sized_type_specifier] = STATE(3408), - [sym_enum_specifier] = STATE(3408), - [sym_struct_specifier] = STATE(3408), - [sym_union_specifier] = STATE(3408), - [sym_macro_type_specifier] = STATE(3408), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3408), - [sym_atomic_specifier] = STATE(3408), - [sym_generic_type_specifier] = STATE(3408), - [aux_sym__declaration_specifiers_repeat1] = STATE(3007), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(6892), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [2871] = { + [sym_identifier] = ACTIONS(1283), + [aux_sym_preproc_def_token1] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1281), + [anon_sym_typedef] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym___attribute] = ACTIONS(1283), + [anon_sym___attribute__] = ACTIONS(1283), + [anon_sym___declspec] = ACTIONS(1283), + [anon_sym___cdecl] = ACTIONS(1283), + [anon_sym___clrcall] = ACTIONS(1283), + [anon_sym___stdcall] = ACTIONS(1283), + [anon_sym___fastcall] = ACTIONS(1283), + [anon_sym___thiscall] = ACTIONS(1283), + [anon_sym___vectorcall] = ACTIONS(1283), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_auto] = ACTIONS(1283), + [anon_sym_register] = ACTIONS(1283), + [anon_sym_inline] = ACTIONS(1283), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_volatile] = ACTIONS(1283), + [anon_sym_restrict] = ACTIONS(1283), + [anon_sym__Atomic] = ACTIONS(1283), + [anon_sym_in] = ACTIONS(1283), + [anon_sym_out] = ACTIONS(1283), + [anon_sym_inout] = ACTIONS(1283), + [anon_sym_bycopy] = ACTIONS(1283), + [anon_sym_byref] = ACTIONS(1283), + [anon_sym_oneway] = ACTIONS(1283), + [anon_sym__Nullable] = ACTIONS(1283), + [anon_sym__Nonnull] = ACTIONS(1283), + [anon_sym__Nullable_result] = ACTIONS(1283), + [anon_sym__Null_unspecified] = ACTIONS(1283), + [anon_sym___autoreleasing] = ACTIONS(1283), + [anon_sym___nullable] = ACTIONS(1283), + [anon_sym___nonnull] = ACTIONS(1283), + [anon_sym___strong] = ACTIONS(1283), + [anon_sym___weak] = ACTIONS(1283), + [anon_sym___bridge] = ACTIONS(1283), + [anon_sym___bridge_transfer] = ACTIONS(1283), + [anon_sym___bridge_retained] = ACTIONS(1283), + [anon_sym___unsafe_unretained] = ACTIONS(1283), + [anon_sym___block] = ACTIONS(1283), + [anon_sym___kindof] = ACTIONS(1283), + [anon_sym___unused] = ACTIONS(1283), + [anon_sym__Complex] = ACTIONS(1283), + [anon_sym___complex] = ACTIONS(1283), + [anon_sym_IBOutlet] = ACTIONS(1283), + [anon_sym_IBInspectable] = ACTIONS(1283), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1283), + [anon_sym_signed] = ACTIONS(1283), + [anon_sym_unsigned] = ACTIONS(1283), + [anon_sym_long] = ACTIONS(1283), + [anon_sym_short] = ACTIONS(1283), + [sym_primitive_type] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(6892), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(6892), - [sym_IMP] = ACTIONS(6892), - [sym_BOOL] = ACTIONS(6892), - [sym_auto] = ACTIONS(6892), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1283), + [anon_sym_ATend] = ACTIONS(1281), + [sym_optional] = ACTIONS(1281), + [sym_required] = ACTIONS(1281), + [anon_sym_ATproperty] = ACTIONS(1281), + [sym_method_attribute_specifier] = ACTIONS(1283), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1283), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1283), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1283), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1283), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1283), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1283), + [anon_sym_NS_AVAILABLE] = ACTIONS(1283), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1283), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1283), + [anon_sym_API_AVAILABLE] = ACTIONS(1283), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1283), + [anon_sym_API_DEPRECATED] = ACTIONS(1283), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1283), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1283), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1283), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1283), + [anon_sym___deprecated_msg] = ACTIONS(1283), + [anon_sym___deprecated_enum_msg] = ACTIONS(1283), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1283), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1283), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1283), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1283), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1283), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1283), + [anon_sym_ATsynthesize] = ACTIONS(1281), + [anon_sym_ATdynamic] = ACTIONS(1281), + [anon_sym_NS_ENUM] = ACTIONS(1283), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1283), + [anon_sym_NS_OPTIONS] = ACTIONS(1283), + [anon_sym_typeof] = ACTIONS(1283), + [anon_sym___typeof] = ACTIONS(1283), + [anon_sym___typeof__] = ACTIONS(1283), + [sym_id] = ACTIONS(1283), + [sym_instancetype] = ACTIONS(1283), + [sym_Class] = ACTIONS(1283), + [sym_SEL] = ACTIONS(1283), + [sym_IMP] = ACTIONS(1283), + [sym_BOOL] = ACTIONS(1283), + [sym_auto] = ACTIONS(1283), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -491052,108 +475142,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2998] = { - [sym__type_specifier] = STATE(4775), - [sym_sized_type_specifier] = STATE(4775), - [sym_enum_specifier] = STATE(4775), - [sym_struct_specifier] = STATE(4775), - [sym_union_specifier] = STATE(4775), - [sym__expression] = STATE(4473), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(4775), - [sym_typeof_specifier] = STATE(4775), - [sym_atomic_specifier] = STATE(4775), - [sym_generic_type_specifier] = STATE(4775), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym__receiver] = STATE(4775), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(6982), + [2872] = { + [sym_identifier] = ACTIONS(1279), + [aux_sym_preproc_def_token1] = ACTIONS(1277), + [anon_sym_DASH] = ACTIONS(1277), + [anon_sym_PLUS] = ACTIONS(1277), + [anon_sym_typedef] = ACTIONS(1279), + [anon_sym_extern] = ACTIONS(1279), + [anon_sym___attribute] = ACTIONS(1279), + [anon_sym___attribute__] = ACTIONS(1279), + [anon_sym___declspec] = ACTIONS(1279), + [anon_sym___cdecl] = ACTIONS(1279), + [anon_sym___clrcall] = ACTIONS(1279), + [anon_sym___stdcall] = ACTIONS(1279), + [anon_sym___fastcall] = ACTIONS(1279), + [anon_sym___thiscall] = ACTIONS(1279), + [anon_sym___vectorcall] = ACTIONS(1279), + [anon_sym_static] = ACTIONS(1279), + [anon_sym_auto] = ACTIONS(1279), + [anon_sym_register] = ACTIONS(1279), + [anon_sym_inline] = ACTIONS(1279), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_volatile] = ACTIONS(1279), + [anon_sym_restrict] = ACTIONS(1279), + [anon_sym__Atomic] = ACTIONS(1279), + [anon_sym_in] = ACTIONS(1279), + [anon_sym_out] = ACTIONS(1279), + [anon_sym_inout] = ACTIONS(1279), + [anon_sym_bycopy] = ACTIONS(1279), + [anon_sym_byref] = ACTIONS(1279), + [anon_sym_oneway] = ACTIONS(1279), + [anon_sym__Nullable] = ACTIONS(1279), + [anon_sym__Nonnull] = ACTIONS(1279), + [anon_sym__Nullable_result] = ACTIONS(1279), + [anon_sym__Null_unspecified] = ACTIONS(1279), + [anon_sym___autoreleasing] = ACTIONS(1279), + [anon_sym___nullable] = ACTIONS(1279), + [anon_sym___nonnull] = ACTIONS(1279), + [anon_sym___strong] = ACTIONS(1279), + [anon_sym___weak] = ACTIONS(1279), + [anon_sym___bridge] = ACTIONS(1279), + [anon_sym___bridge_transfer] = ACTIONS(1279), + [anon_sym___bridge_retained] = ACTIONS(1279), + [anon_sym___unsafe_unretained] = ACTIONS(1279), + [anon_sym___block] = ACTIONS(1279), + [anon_sym___kindof] = ACTIONS(1279), + [anon_sym___unused] = ACTIONS(1279), + [anon_sym__Complex] = ACTIONS(1279), + [anon_sym___complex] = ACTIONS(1279), + [anon_sym_IBOutlet] = ACTIONS(1279), + [anon_sym_IBInspectable] = ACTIONS(1279), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1279), + [anon_sym_signed] = ACTIONS(1279), + [anon_sym_unsigned] = ACTIONS(1279), + [anon_sym_long] = ACTIONS(1279), + [anon_sym_short] = ACTIONS(1279), + [sym_primitive_type] = ACTIONS(1279), + [anon_sym_enum] = ACTIONS(1279), + [anon_sym_struct] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1279), + [anon_sym_ATend] = ACTIONS(1277), + [sym_optional] = ACTIONS(1277), + [sym_required] = ACTIONS(1277), + [anon_sym_ATproperty] = ACTIONS(1277), + [sym_method_attribute_specifier] = ACTIONS(1279), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1279), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1279), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1279), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1279), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1279), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1279), + [anon_sym_NS_AVAILABLE] = ACTIONS(1279), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1279), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1279), + [anon_sym_API_AVAILABLE] = ACTIONS(1279), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1279), + [anon_sym_API_DEPRECATED] = ACTIONS(1279), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1279), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1279), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1279), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1279), + [anon_sym___deprecated_msg] = ACTIONS(1279), + [anon_sym___deprecated_enum_msg] = ACTIONS(1279), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1279), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1279), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1279), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1279), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1279), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1279), + [anon_sym_ATsynthesize] = ACTIONS(1277), + [anon_sym_ATdynamic] = ACTIONS(1277), + [anon_sym_NS_ENUM] = ACTIONS(1279), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1279), + [anon_sym_NS_OPTIONS] = ACTIONS(1279), + [anon_sym_typeof] = ACTIONS(1279), + [anon_sym___typeof] = ACTIONS(1279), + [anon_sym___typeof__] = ACTIONS(1279), + [sym_id] = ACTIONS(1279), + [sym_instancetype] = ACTIONS(1279), + [sym_Class] = ACTIONS(1279), + [sym_SEL] = ACTIONS(1279), + [sym_IMP] = ACTIONS(1279), + [sym_BOOL] = ACTIONS(1279), + [sym_auto] = ACTIONS(1279), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2873] = { + [sym_identifier] = ACTIONS(1275), + [aux_sym_preproc_def_token1] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_PLUS] = ACTIONS(1273), + [anon_sym_typedef] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym___attribute] = ACTIONS(1275), + [anon_sym___attribute__] = ACTIONS(1275), + [anon_sym___declspec] = ACTIONS(1275), + [anon_sym___cdecl] = ACTIONS(1275), + [anon_sym___clrcall] = ACTIONS(1275), + [anon_sym___stdcall] = ACTIONS(1275), + [anon_sym___fastcall] = ACTIONS(1275), + [anon_sym___thiscall] = ACTIONS(1275), + [anon_sym___vectorcall] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_auto] = ACTIONS(1275), + [anon_sym_register] = ACTIONS(1275), + [anon_sym_inline] = ACTIONS(1275), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_volatile] = ACTIONS(1275), + [anon_sym_restrict] = ACTIONS(1275), + [anon_sym__Atomic] = ACTIONS(1275), + [anon_sym_in] = ACTIONS(1275), + [anon_sym_out] = ACTIONS(1275), + [anon_sym_inout] = ACTIONS(1275), + [anon_sym_bycopy] = ACTIONS(1275), + [anon_sym_byref] = ACTIONS(1275), + [anon_sym_oneway] = ACTIONS(1275), + [anon_sym__Nullable] = ACTIONS(1275), + [anon_sym__Nonnull] = ACTIONS(1275), + [anon_sym__Nullable_result] = ACTIONS(1275), + [anon_sym__Null_unspecified] = ACTIONS(1275), + [anon_sym___autoreleasing] = ACTIONS(1275), + [anon_sym___nullable] = ACTIONS(1275), + [anon_sym___nonnull] = ACTIONS(1275), + [anon_sym___strong] = ACTIONS(1275), + [anon_sym___weak] = ACTIONS(1275), + [anon_sym___bridge] = ACTIONS(1275), + [anon_sym___bridge_transfer] = ACTIONS(1275), + [anon_sym___bridge_retained] = ACTIONS(1275), + [anon_sym___unsafe_unretained] = ACTIONS(1275), + [anon_sym___block] = ACTIONS(1275), + [anon_sym___kindof] = ACTIONS(1275), + [anon_sym___unused] = ACTIONS(1275), + [anon_sym__Complex] = ACTIONS(1275), + [anon_sym___complex] = ACTIONS(1275), + [anon_sym_IBOutlet] = ACTIONS(1275), + [anon_sym_IBInspectable] = ACTIONS(1275), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1275), + [anon_sym_signed] = ACTIONS(1275), + [anon_sym_unsigned] = ACTIONS(1275), + [anon_sym_long] = ACTIONS(1275), + [anon_sym_short] = ACTIONS(1275), + [sym_primitive_type] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1275), + [anon_sym_ATend] = ACTIONS(1273), + [sym_optional] = ACTIONS(1273), + [sym_required] = ACTIONS(1273), + [anon_sym_ATproperty] = ACTIONS(1273), + [sym_method_attribute_specifier] = ACTIONS(1275), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1275), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1275), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1275), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1275), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1275), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1275), + [anon_sym_NS_AVAILABLE] = ACTIONS(1275), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1275), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1275), + [anon_sym_API_AVAILABLE] = ACTIONS(1275), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1275), + [anon_sym_API_DEPRECATED] = ACTIONS(1275), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1275), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1275), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1275), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1275), + [anon_sym___deprecated_msg] = ACTIONS(1275), + [anon_sym___deprecated_enum_msg] = ACTIONS(1275), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1275), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1275), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1275), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1275), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1275), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1275), + [anon_sym_ATsynthesize] = ACTIONS(1273), + [anon_sym_ATdynamic] = ACTIONS(1273), + [anon_sym_NS_ENUM] = ACTIONS(1275), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1275), + [anon_sym_NS_OPTIONS] = ACTIONS(1275), + [anon_sym_typeof] = ACTIONS(1275), + [anon_sym___typeof] = ACTIONS(1275), + [anon_sym___typeof__] = ACTIONS(1275), + [sym_id] = ACTIONS(1275), + [sym_instancetype] = ACTIONS(1275), + [sym_Class] = ACTIONS(1275), + [sym_SEL] = ACTIONS(1275), + [sym_IMP] = ACTIONS(1275), + [sym_BOOL] = ACTIONS(1275), + [sym_auto] = ACTIONS(1275), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2874] = { + [sym_type_qualifier] = STATE(2876), + [sym__expression] = STATE(4533), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_type_definition_repeat1] = STATE(2876), + [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(23), [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(6896), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(6984), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(6992), - [anon_sym_enum] = ACTIONS(6988), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6990), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(6898), + [anon_sym_const] = ACTIONS(6878), + [anon_sym_volatile] = ACTIONS(6878), + [anon_sym_restrict] = ACTIONS(6878), + [anon_sym__Atomic] = ACTIONS(6878), + [anon_sym_in] = ACTIONS(6878), + [anon_sym_out] = ACTIONS(6878), + [anon_sym_inout] = ACTIONS(6878), + [anon_sym_bycopy] = ACTIONS(6878), + [anon_sym_byref] = ACTIONS(6878), + [anon_sym_oneway] = ACTIONS(6878), + [anon_sym__Nullable] = ACTIONS(6878), + [anon_sym__Nonnull] = ACTIONS(6878), + [anon_sym__Nullable_result] = ACTIONS(6878), + [anon_sym__Null_unspecified] = ACTIONS(6878), + [anon_sym___autoreleasing] = ACTIONS(6878), + [anon_sym___nullable] = ACTIONS(6878), + [anon_sym___nonnull] = ACTIONS(6878), + [anon_sym___strong] = ACTIONS(6878), + [anon_sym___weak] = ACTIONS(6878), + [anon_sym___bridge] = ACTIONS(6878), + [anon_sym___bridge_transfer] = ACTIONS(6878), + [anon_sym___bridge_retained] = ACTIONS(6878), + [anon_sym___unsafe_unretained] = ACTIONS(6878), + [anon_sym___block] = ACTIONS(6878), + [anon_sym___kindof] = ACTIONS(6878), + [anon_sym___unused] = ACTIONS(6878), + [anon_sym__Complex] = ACTIONS(6878), + [anon_sym___complex] = ACTIONS(6878), + [anon_sym_IBOutlet] = ACTIONS(6878), + [anon_sym_IBInspectable] = ACTIONS(6878), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(6992), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(6992), - [sym_IMP] = ACTIONS(6992), - [sym_BOOL] = ACTIONS(6992), - [sym_auto] = ACTIONS(6992), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -491164,26 +475481,592 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [2999] = { - [sym__declaration_specifiers] = STATE(3952), - [sym_attribute_specifier] = STATE(3013), - [sym_ms_declspec_modifier] = STATE(3013), - [sym_storage_class_specifier] = STATE(3013), - [sym_type_qualifier] = STATE(3013), - [sym__type_specifier] = STATE(3410), - [sym_sized_type_specifier] = STATE(3410), - [sym_enum_specifier] = STATE(3410), - [sym_struct_specifier] = STATE(3410), - [sym_union_specifier] = STATE(3410), - [sym_macro_type_specifier] = STATE(3410), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3410), - [sym_atomic_specifier] = STATE(3410), - [sym_generic_type_specifier] = STATE(3410), - [aux_sym__declaration_specifiers_repeat1] = STATE(3013), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), + [2875] = { + [sym_identifier] = ACTIONS(1233), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1233), + [anon_sym_extern] = ACTIONS(1233), + [anon_sym___attribute] = ACTIONS(1233), + [anon_sym___attribute__] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1233), + [anon_sym___cdecl] = ACTIONS(1233), + [anon_sym___clrcall] = ACTIONS(1233), + [anon_sym___stdcall] = ACTIONS(1233), + [anon_sym___fastcall] = ACTIONS(1233), + [anon_sym___thiscall] = ACTIONS(1233), + [anon_sym___vectorcall] = ACTIONS(1233), + [anon_sym_static] = ACTIONS(1233), + [anon_sym_auto] = ACTIONS(1233), + [anon_sym_register] = ACTIONS(1233), + [anon_sym_inline] = ACTIONS(1233), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_volatile] = ACTIONS(1233), + [anon_sym_restrict] = ACTIONS(1233), + [anon_sym__Atomic] = ACTIONS(1233), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_out] = ACTIONS(1233), + [anon_sym_inout] = ACTIONS(1233), + [anon_sym_bycopy] = ACTIONS(1233), + [anon_sym_byref] = ACTIONS(1233), + [anon_sym_oneway] = ACTIONS(1233), + [anon_sym__Nullable] = ACTIONS(1233), + [anon_sym__Nonnull] = ACTIONS(1233), + [anon_sym__Nullable_result] = ACTIONS(1233), + [anon_sym__Null_unspecified] = ACTIONS(1233), + [anon_sym___autoreleasing] = ACTIONS(1233), + [anon_sym___nullable] = ACTIONS(1233), + [anon_sym___nonnull] = ACTIONS(1233), + [anon_sym___strong] = ACTIONS(1233), + [anon_sym___weak] = ACTIONS(1233), + [anon_sym___bridge] = ACTIONS(1233), + [anon_sym___bridge_transfer] = ACTIONS(1233), + [anon_sym___bridge_retained] = ACTIONS(1233), + [anon_sym___unsafe_unretained] = ACTIONS(1233), + [anon_sym___block] = ACTIONS(1233), + [anon_sym___kindof] = ACTIONS(1233), + [anon_sym___unused] = ACTIONS(1233), + [anon_sym__Complex] = ACTIONS(1233), + [anon_sym___complex] = ACTIONS(1233), + [anon_sym_IBOutlet] = ACTIONS(1233), + [anon_sym_IBInspectable] = ACTIONS(1233), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1233), + [anon_sym_unsigned] = ACTIONS(1233), + [anon_sym_long] = ACTIONS(1233), + [anon_sym_short] = ACTIONS(1233), + [sym_primitive_type] = ACTIONS(1233), + [anon_sym_enum] = ACTIONS(1233), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_union] = ACTIONS(1233), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1233), + [anon_sym_ATend] = ACTIONS(1231), + [sym_optional] = ACTIONS(1231), + [sym_required] = ACTIONS(1231), + [anon_sym_ATproperty] = ACTIONS(1231), + [sym_method_attribute_specifier] = ACTIONS(1233), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1233), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1233), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1233), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1233), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1233), + [anon_sym_NS_AVAILABLE] = ACTIONS(1233), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1233), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_API_AVAILABLE] = ACTIONS(1233), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_API_DEPRECATED] = ACTIONS(1233), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1233), + [anon_sym___deprecated_msg] = ACTIONS(1233), + [anon_sym___deprecated_enum_msg] = ACTIONS(1233), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1233), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1233), + [anon_sym_ATsynthesize] = ACTIONS(1231), + [anon_sym_ATdynamic] = ACTIONS(1231), + [anon_sym_NS_ENUM] = ACTIONS(1233), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1233), + [anon_sym_NS_OPTIONS] = ACTIONS(1233), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym___typeof] = ACTIONS(1233), + [anon_sym___typeof__] = ACTIONS(1233), + [sym_id] = ACTIONS(1233), + [sym_instancetype] = ACTIONS(1233), + [sym_Class] = ACTIONS(1233), + [sym_SEL] = ACTIONS(1233), + [sym_IMP] = ACTIONS(1233), + [sym_BOOL] = ACTIONS(1233), + [sym_auto] = ACTIONS(1233), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2876] = { + [sym_type_qualifier] = STATE(3414), + [sym__expression] = STATE(4551), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_type_definition_repeat1] = STATE(3414), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_RBRACK] = ACTIONS(6902), + [anon_sym_const] = ACTIONS(6878), + [anon_sym_volatile] = ACTIONS(6878), + [anon_sym_restrict] = ACTIONS(6878), + [anon_sym__Atomic] = ACTIONS(6878), + [anon_sym_in] = ACTIONS(6878), + [anon_sym_out] = ACTIONS(6878), + [anon_sym_inout] = ACTIONS(6878), + [anon_sym_bycopy] = ACTIONS(6878), + [anon_sym_byref] = ACTIONS(6878), + [anon_sym_oneway] = ACTIONS(6878), + [anon_sym__Nullable] = ACTIONS(6878), + [anon_sym__Nonnull] = ACTIONS(6878), + [anon_sym__Nullable_result] = ACTIONS(6878), + [anon_sym__Null_unspecified] = ACTIONS(6878), + [anon_sym___autoreleasing] = ACTIONS(6878), + [anon_sym___nullable] = ACTIONS(6878), + [anon_sym___nonnull] = ACTIONS(6878), + [anon_sym___strong] = ACTIONS(6878), + [anon_sym___weak] = ACTIONS(6878), + [anon_sym___bridge] = ACTIONS(6878), + [anon_sym___bridge_transfer] = ACTIONS(6878), + [anon_sym___bridge_retained] = ACTIONS(6878), + [anon_sym___unsafe_unretained] = ACTIONS(6878), + [anon_sym___block] = ACTIONS(6878), + [anon_sym___kindof] = ACTIONS(6878), + [anon_sym___unused] = ACTIONS(6878), + [anon_sym__Complex] = ACTIONS(6878), + [anon_sym___complex] = ACTIONS(6878), + [anon_sym_IBOutlet] = ACTIONS(6878), + [anon_sym_IBInspectable] = ACTIONS(6878), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2877] = { + [sym_identifier] = ACTIONS(1419), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1419), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym___attribute] = ACTIONS(1419), + [anon_sym___attribute__] = ACTIONS(1419), + [anon_sym___declspec] = ACTIONS(1419), + [anon_sym___cdecl] = ACTIONS(1419), + [anon_sym___clrcall] = ACTIONS(1419), + [anon_sym___stdcall] = ACTIONS(1419), + [anon_sym___fastcall] = ACTIONS(1419), + [anon_sym___thiscall] = ACTIONS(1419), + [anon_sym___vectorcall] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1419), + [anon_sym_auto] = ACTIONS(1419), + [anon_sym_register] = ACTIONS(1419), + [anon_sym_inline] = ACTIONS(1419), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1419), + [anon_sym_volatile] = ACTIONS(1419), + [anon_sym_restrict] = ACTIONS(1419), + [anon_sym__Atomic] = ACTIONS(1419), + [anon_sym_in] = ACTIONS(1419), + [anon_sym_out] = ACTIONS(1419), + [anon_sym_inout] = ACTIONS(1419), + [anon_sym_bycopy] = ACTIONS(1419), + [anon_sym_byref] = ACTIONS(1419), + [anon_sym_oneway] = ACTIONS(1419), + [anon_sym__Nullable] = ACTIONS(1419), + [anon_sym__Nonnull] = ACTIONS(1419), + [anon_sym__Nullable_result] = ACTIONS(1419), + [anon_sym__Null_unspecified] = ACTIONS(1419), + [anon_sym___autoreleasing] = ACTIONS(1419), + [anon_sym___nullable] = ACTIONS(1419), + [anon_sym___nonnull] = ACTIONS(1419), + [anon_sym___strong] = ACTIONS(1419), + [anon_sym___weak] = ACTIONS(1419), + [anon_sym___bridge] = ACTIONS(1419), + [anon_sym___bridge_transfer] = ACTIONS(1419), + [anon_sym___bridge_retained] = ACTIONS(1419), + [anon_sym___unsafe_unretained] = ACTIONS(1419), + [anon_sym___block] = ACTIONS(1419), + [anon_sym___kindof] = ACTIONS(1419), + [anon_sym___unused] = ACTIONS(1419), + [anon_sym__Complex] = ACTIONS(1419), + [anon_sym___complex] = ACTIONS(1419), + [anon_sym_IBOutlet] = ACTIONS(1419), + [anon_sym_IBInspectable] = ACTIONS(1419), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1419), + [anon_sym_signed] = ACTIONS(1419), + [anon_sym_unsigned] = ACTIONS(1419), + [anon_sym_long] = ACTIONS(1419), + [anon_sym_short] = ACTIONS(1419), + [sym_primitive_type] = ACTIONS(1419), + [anon_sym_enum] = ACTIONS(1419), + [anon_sym_struct] = ACTIONS(1419), + [anon_sym_union] = ACTIONS(1419), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1419), + [anon_sym_ATend] = ACTIONS(1422), + [sym_optional] = ACTIONS(1422), + [sym_required] = ACTIONS(1422), + [anon_sym_ATproperty] = ACTIONS(1422), + [sym_method_attribute_specifier] = ACTIONS(1419), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1419), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1419), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1419), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1419), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1419), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1419), + [anon_sym_NS_AVAILABLE] = ACTIONS(1419), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1419), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1419), + [anon_sym_API_AVAILABLE] = ACTIONS(1419), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1419), + [anon_sym_API_DEPRECATED] = ACTIONS(1419), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1419), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1419), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1419), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1419), + [anon_sym___deprecated_msg] = ACTIONS(1419), + [anon_sym___deprecated_enum_msg] = ACTIONS(1419), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1419), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1419), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1419), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1419), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1419), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1419), + [anon_sym_ATsynthesize] = ACTIONS(1422), + [anon_sym_ATdynamic] = ACTIONS(1422), + [anon_sym_NS_ENUM] = ACTIONS(1419), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1419), + [anon_sym_NS_OPTIONS] = ACTIONS(1419), + [anon_sym_typeof] = ACTIONS(1419), + [anon_sym___typeof] = ACTIONS(1419), + [anon_sym___typeof__] = ACTIONS(1419), + [sym_id] = ACTIONS(1419), + [sym_instancetype] = ACTIONS(1419), + [sym_Class] = ACTIONS(1419), + [sym_SEL] = ACTIONS(1419), + [sym_IMP] = ACTIONS(1419), + [sym_BOOL] = ACTIONS(1419), + [sym_auto] = ACTIONS(1419), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2878] = { + [sym_identifier] = ACTIONS(1233), + [aux_sym_preproc_def_token1] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_typedef] = ACTIONS(1233), + [anon_sym_extern] = ACTIONS(1233), + [anon_sym___attribute] = ACTIONS(1233), + [anon_sym___attribute__] = ACTIONS(1233), + [anon_sym___declspec] = ACTIONS(1233), + [anon_sym___cdecl] = ACTIONS(1233), + [anon_sym___clrcall] = ACTIONS(1233), + [anon_sym___stdcall] = ACTIONS(1233), + [anon_sym___fastcall] = ACTIONS(1233), + [anon_sym___thiscall] = ACTIONS(1233), + [anon_sym___vectorcall] = ACTIONS(1233), + [anon_sym_static] = ACTIONS(1233), + [anon_sym_auto] = ACTIONS(1233), + [anon_sym_register] = ACTIONS(1233), + [anon_sym_inline] = ACTIONS(1233), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_volatile] = ACTIONS(1233), + [anon_sym_restrict] = ACTIONS(1233), + [anon_sym__Atomic] = ACTIONS(1233), + [anon_sym_in] = ACTIONS(1233), + [anon_sym_out] = ACTIONS(1233), + [anon_sym_inout] = ACTIONS(1233), + [anon_sym_bycopy] = ACTIONS(1233), + [anon_sym_byref] = ACTIONS(1233), + [anon_sym_oneway] = ACTIONS(1233), + [anon_sym__Nullable] = ACTIONS(1233), + [anon_sym__Nonnull] = ACTIONS(1233), + [anon_sym__Nullable_result] = ACTIONS(1233), + [anon_sym__Null_unspecified] = ACTIONS(1233), + [anon_sym___autoreleasing] = ACTIONS(1233), + [anon_sym___nullable] = ACTIONS(1233), + [anon_sym___nonnull] = ACTIONS(1233), + [anon_sym___strong] = ACTIONS(1233), + [anon_sym___weak] = ACTIONS(1233), + [anon_sym___bridge] = ACTIONS(1233), + [anon_sym___bridge_transfer] = ACTIONS(1233), + [anon_sym___bridge_retained] = ACTIONS(1233), + [anon_sym___unsafe_unretained] = ACTIONS(1233), + [anon_sym___block] = ACTIONS(1233), + [anon_sym___kindof] = ACTIONS(1233), + [anon_sym___unused] = ACTIONS(1233), + [anon_sym__Complex] = ACTIONS(1233), + [anon_sym___complex] = ACTIONS(1233), + [anon_sym_IBOutlet] = ACTIONS(1233), + [anon_sym_IBInspectable] = ACTIONS(1233), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1233), + [anon_sym_signed] = ACTIONS(1233), + [anon_sym_unsigned] = ACTIONS(1233), + [anon_sym_long] = ACTIONS(1233), + [anon_sym_short] = ACTIONS(1233), + [sym_primitive_type] = ACTIONS(1233), + [anon_sym_enum] = ACTIONS(1233), + [anon_sym_struct] = ACTIONS(1233), + [anon_sym_union] = ACTIONS(1233), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1233), + [anon_sym_ATend] = ACTIONS(1231), + [sym_optional] = ACTIONS(1231), + [sym_required] = ACTIONS(1231), + [anon_sym_ATproperty] = ACTIONS(1231), + [sym_method_attribute_specifier] = ACTIONS(1233), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1233), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1233), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1233), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1233), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1233), + [anon_sym_NS_AVAILABLE] = ACTIONS(1233), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1233), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_API_AVAILABLE] = ACTIONS(1233), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_API_DEPRECATED] = ACTIONS(1233), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1233), + [anon_sym___deprecated_msg] = ACTIONS(1233), + [anon_sym___deprecated_enum_msg] = ACTIONS(1233), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1233), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1233), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1233), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1233), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1233), + [anon_sym_ATsynthesize] = ACTIONS(1231), + [anon_sym_ATdynamic] = ACTIONS(1231), + [anon_sym_NS_ENUM] = ACTIONS(1233), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1233), + [anon_sym_NS_OPTIONS] = ACTIONS(1233), + [anon_sym_typeof] = ACTIONS(1233), + [anon_sym___typeof] = ACTIONS(1233), + [anon_sym___typeof__] = ACTIONS(1233), + [sym_id] = ACTIONS(1233), + [sym_instancetype] = ACTIONS(1233), + [sym_Class] = ACTIONS(1233), + [sym_SEL] = ACTIONS(1233), + [sym_IMP] = ACTIONS(1233), + [sym_BOOL] = ACTIONS(1233), + [sym_auto] = ACTIONS(1233), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2879] = { + [sym_identifier] = ACTIONS(1379), + [aux_sym_preproc_def_token1] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_typedef] = ACTIONS(1379), + [anon_sym_extern] = ACTIONS(1379), + [anon_sym___attribute] = ACTIONS(1379), + [anon_sym___attribute__] = ACTIONS(1379), + [anon_sym___declspec] = ACTIONS(1379), + [anon_sym___cdecl] = ACTIONS(1379), + [anon_sym___clrcall] = ACTIONS(1379), + [anon_sym___stdcall] = ACTIONS(1379), + [anon_sym___fastcall] = ACTIONS(1379), + [anon_sym___thiscall] = ACTIONS(1379), + [anon_sym___vectorcall] = ACTIONS(1379), + [anon_sym_static] = ACTIONS(1379), + [anon_sym_auto] = ACTIONS(1379), + [anon_sym_register] = ACTIONS(1379), + [anon_sym_inline] = ACTIONS(1379), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1379), + [anon_sym_volatile] = ACTIONS(1379), + [anon_sym_restrict] = ACTIONS(1379), + [anon_sym__Atomic] = ACTIONS(1379), + [anon_sym_in] = ACTIONS(1379), + [anon_sym_out] = ACTIONS(1379), + [anon_sym_inout] = ACTIONS(1379), + [anon_sym_bycopy] = ACTIONS(1379), + [anon_sym_byref] = ACTIONS(1379), + [anon_sym_oneway] = ACTIONS(1379), + [anon_sym__Nullable] = ACTIONS(1379), + [anon_sym__Nonnull] = ACTIONS(1379), + [anon_sym__Nullable_result] = ACTIONS(1379), + [anon_sym__Null_unspecified] = ACTIONS(1379), + [anon_sym___autoreleasing] = ACTIONS(1379), + [anon_sym___nullable] = ACTIONS(1379), + [anon_sym___nonnull] = ACTIONS(1379), + [anon_sym___strong] = ACTIONS(1379), + [anon_sym___weak] = ACTIONS(1379), + [anon_sym___bridge] = ACTIONS(1379), + [anon_sym___bridge_transfer] = ACTIONS(1379), + [anon_sym___bridge_retained] = ACTIONS(1379), + [anon_sym___unsafe_unretained] = ACTIONS(1379), + [anon_sym___block] = ACTIONS(1379), + [anon_sym___kindof] = ACTIONS(1379), + [anon_sym___unused] = ACTIONS(1379), + [anon_sym__Complex] = ACTIONS(1379), + [anon_sym___complex] = ACTIONS(1379), + [anon_sym_IBOutlet] = ACTIONS(1379), + [anon_sym_IBInspectable] = ACTIONS(1379), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1379), + [anon_sym_signed] = ACTIONS(1379), + [anon_sym_unsigned] = ACTIONS(1379), + [anon_sym_long] = ACTIONS(1379), + [anon_sym_short] = ACTIONS(1379), + [sym_primitive_type] = ACTIONS(1379), + [anon_sym_enum] = ACTIONS(1379), + [anon_sym_struct] = ACTIONS(1379), + [anon_sym_union] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1379), + [anon_sym_ATend] = ACTIONS(1381), + [sym_optional] = ACTIONS(1381), + [sym_required] = ACTIONS(1381), + [anon_sym_ATproperty] = ACTIONS(1381), + [sym_method_attribute_specifier] = ACTIONS(1379), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1379), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1379), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1379), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1379), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1379), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1379), + [anon_sym_NS_AVAILABLE] = ACTIONS(1379), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1379), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1379), + [anon_sym_API_AVAILABLE] = ACTIONS(1379), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1379), + [anon_sym_API_DEPRECATED] = ACTIONS(1379), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1379), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1379), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1379), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1379), + [anon_sym___deprecated_msg] = ACTIONS(1379), + [anon_sym___deprecated_enum_msg] = ACTIONS(1379), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1379), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1379), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1379), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1379), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1379), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1379), + [anon_sym_ATsynthesize] = ACTIONS(1381), + [anon_sym_ATdynamic] = ACTIONS(1381), + [anon_sym_NS_ENUM] = ACTIONS(1379), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1379), + [anon_sym_NS_OPTIONS] = ACTIONS(1379), + [anon_sym_typeof] = ACTIONS(1379), + [anon_sym___typeof] = ACTIONS(1379), + [anon_sym___typeof__] = ACTIONS(1379), + [sym_id] = ACTIONS(1379), + [sym_instancetype] = ACTIONS(1379), + [sym_Class] = ACTIONS(1379), + [sym_SEL] = ACTIONS(1379), + [sym_IMP] = ACTIONS(1379), + [sym_BOOL] = ACTIONS(1379), + [sym_auto] = ACTIONS(1379), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2880] = { + [sym__declaration_specifiers] = STATE(3914), + [sym_attribute_specifier] = STATE(2945), + [sym_ms_declspec_modifier] = STATE(2945), + [sym_storage_class_specifier] = STATE(2945), + [sym_type_qualifier] = STATE(2945), + [sym__type_specifier] = STATE(3352), + [sym_sized_type_specifier] = STATE(3352), + [sym_enum_specifier] = STATE(3352), + [sym_struct_specifier] = STATE(3352), + [sym_union_specifier] = STATE(3352), + [sym_macro_type_specifier] = STATE(3352), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3352), + [sym_typeof_specifier] = STATE(3352), + [sym_atomic_specifier] = STATE(3352), + [sym_generic_type_specifier] = STATE(3352), + [aux_sym__declaration_specifiers_repeat1] = STATE(2945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), @@ -491230,35 +476113,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(1127), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), @@ -491276,26 +476159,1157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3000] = { + [2881] = { + [sym_identifier] = ACTIONS(1425), + [aux_sym_preproc_def_token1] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1427), + [anon_sym_typedef] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym___attribute] = ACTIONS(1425), + [anon_sym___attribute__] = ACTIONS(1425), + [anon_sym___declspec] = ACTIONS(1425), + [anon_sym___cdecl] = ACTIONS(1425), + [anon_sym___clrcall] = ACTIONS(1425), + [anon_sym___stdcall] = ACTIONS(1425), + [anon_sym___fastcall] = ACTIONS(1425), + [anon_sym___thiscall] = ACTIONS(1425), + [anon_sym___vectorcall] = ACTIONS(1425), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_auto] = ACTIONS(1425), + [anon_sym_register] = ACTIONS(1425), + [anon_sym_inline] = ACTIONS(1425), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_volatile] = ACTIONS(1425), + [anon_sym_restrict] = ACTIONS(1425), + [anon_sym__Atomic] = ACTIONS(1425), + [anon_sym_in] = ACTIONS(1425), + [anon_sym_out] = ACTIONS(1425), + [anon_sym_inout] = ACTIONS(1425), + [anon_sym_bycopy] = ACTIONS(1425), + [anon_sym_byref] = ACTIONS(1425), + [anon_sym_oneway] = ACTIONS(1425), + [anon_sym__Nullable] = ACTIONS(1425), + [anon_sym__Nonnull] = ACTIONS(1425), + [anon_sym__Nullable_result] = ACTIONS(1425), + [anon_sym__Null_unspecified] = ACTIONS(1425), + [anon_sym___autoreleasing] = ACTIONS(1425), + [anon_sym___nullable] = ACTIONS(1425), + [anon_sym___nonnull] = ACTIONS(1425), + [anon_sym___strong] = ACTIONS(1425), + [anon_sym___weak] = ACTIONS(1425), + [anon_sym___bridge] = ACTIONS(1425), + [anon_sym___bridge_transfer] = ACTIONS(1425), + [anon_sym___bridge_retained] = ACTIONS(1425), + [anon_sym___unsafe_unretained] = ACTIONS(1425), + [anon_sym___block] = ACTIONS(1425), + [anon_sym___kindof] = ACTIONS(1425), + [anon_sym___unused] = ACTIONS(1425), + [anon_sym__Complex] = ACTIONS(1425), + [anon_sym___complex] = ACTIONS(1425), + [anon_sym_IBOutlet] = ACTIONS(1425), + [anon_sym_IBInspectable] = ACTIONS(1425), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1425), + [anon_sym_signed] = ACTIONS(1425), + [anon_sym_unsigned] = ACTIONS(1425), + [anon_sym_long] = ACTIONS(1425), + [anon_sym_short] = ACTIONS(1425), + [sym_primitive_type] = ACTIONS(1425), + [anon_sym_enum] = ACTIONS(1425), + [anon_sym_struct] = ACTIONS(1425), + [anon_sym_union] = ACTIONS(1425), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1425), + [anon_sym_ATend] = ACTIONS(1427), + [sym_optional] = ACTIONS(1427), + [sym_required] = ACTIONS(1427), + [anon_sym_ATproperty] = ACTIONS(1427), + [sym_method_attribute_specifier] = ACTIONS(1425), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1425), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1425), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1425), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1425), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1425), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1425), + [anon_sym_NS_AVAILABLE] = ACTIONS(1425), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1425), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1425), + [anon_sym_API_AVAILABLE] = ACTIONS(1425), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1425), + [anon_sym_API_DEPRECATED] = ACTIONS(1425), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1425), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1425), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1425), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1425), + [anon_sym___deprecated_msg] = ACTIONS(1425), + [anon_sym___deprecated_enum_msg] = ACTIONS(1425), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1425), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1425), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1425), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1425), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1425), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1425), + [anon_sym_ATsynthesize] = ACTIONS(1427), + [anon_sym_ATdynamic] = ACTIONS(1427), + [anon_sym_NS_ENUM] = ACTIONS(1425), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1425), + [anon_sym_NS_OPTIONS] = ACTIONS(1425), + [anon_sym_typeof] = ACTIONS(1425), + [anon_sym___typeof] = ACTIONS(1425), + [anon_sym___typeof__] = ACTIONS(1425), + [sym_id] = ACTIONS(1425), + [sym_instancetype] = ACTIONS(1425), + [sym_Class] = ACTIONS(1425), + [sym_SEL] = ACTIONS(1425), + [sym_IMP] = ACTIONS(1425), + [sym_BOOL] = ACTIONS(1425), + [sym_auto] = ACTIONS(1425), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2882] = { + [sym_identifier] = ACTIONS(1479), + [aux_sym_preproc_def_token1] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_typedef] = ACTIONS(1479), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym___attribute] = ACTIONS(1479), + [anon_sym___attribute__] = ACTIONS(1479), + [anon_sym___declspec] = ACTIONS(1479), + [anon_sym___cdecl] = ACTIONS(1479), + [anon_sym___clrcall] = ACTIONS(1479), + [anon_sym___stdcall] = ACTIONS(1479), + [anon_sym___fastcall] = ACTIONS(1479), + [anon_sym___thiscall] = ACTIONS(1479), + [anon_sym___vectorcall] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_auto] = ACTIONS(1479), + [anon_sym_register] = ACTIONS(1479), + [anon_sym_inline] = ACTIONS(1479), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [anon_sym_volatile] = ACTIONS(1479), + [anon_sym_restrict] = ACTIONS(1479), + [anon_sym__Atomic] = ACTIONS(1479), + [anon_sym_in] = ACTIONS(1479), + [anon_sym_out] = ACTIONS(1479), + [anon_sym_inout] = ACTIONS(1479), + [anon_sym_bycopy] = ACTIONS(1479), + [anon_sym_byref] = ACTIONS(1479), + [anon_sym_oneway] = ACTIONS(1479), + [anon_sym__Nullable] = ACTIONS(1479), + [anon_sym__Nonnull] = ACTIONS(1479), + [anon_sym__Nullable_result] = ACTIONS(1479), + [anon_sym__Null_unspecified] = ACTIONS(1479), + [anon_sym___autoreleasing] = ACTIONS(1479), + [anon_sym___nullable] = ACTIONS(1479), + [anon_sym___nonnull] = ACTIONS(1479), + [anon_sym___strong] = ACTIONS(1479), + [anon_sym___weak] = ACTIONS(1479), + [anon_sym___bridge] = ACTIONS(1479), + [anon_sym___bridge_transfer] = ACTIONS(1479), + [anon_sym___bridge_retained] = ACTIONS(1479), + [anon_sym___unsafe_unretained] = ACTIONS(1479), + [anon_sym___block] = ACTIONS(1479), + [anon_sym___kindof] = ACTIONS(1479), + [anon_sym___unused] = ACTIONS(1479), + [anon_sym__Complex] = ACTIONS(1479), + [anon_sym___complex] = ACTIONS(1479), + [anon_sym_IBOutlet] = ACTIONS(1479), + [anon_sym_IBInspectable] = ACTIONS(1479), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1479), + [anon_sym_signed] = ACTIONS(1479), + [anon_sym_unsigned] = ACTIONS(1479), + [anon_sym_long] = ACTIONS(1479), + [anon_sym_short] = ACTIONS(1479), + [sym_primitive_type] = ACTIONS(1479), + [anon_sym_enum] = ACTIONS(1479), + [anon_sym_struct] = ACTIONS(1479), + [anon_sym_union] = ACTIONS(1479), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1479), + [anon_sym_ATend] = ACTIONS(1477), + [sym_optional] = ACTIONS(1477), + [sym_required] = ACTIONS(1477), + [anon_sym_ATproperty] = ACTIONS(1477), + [sym_method_attribute_specifier] = ACTIONS(1479), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1479), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1479), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1479), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1479), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1479), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1479), + [anon_sym_NS_AVAILABLE] = ACTIONS(1479), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1479), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1479), + [anon_sym_API_AVAILABLE] = ACTIONS(1479), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1479), + [anon_sym_API_DEPRECATED] = ACTIONS(1479), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1479), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1479), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1479), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1479), + [anon_sym___deprecated_msg] = ACTIONS(1479), + [anon_sym___deprecated_enum_msg] = ACTIONS(1479), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1479), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1479), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1479), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1479), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1479), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1479), + [anon_sym_ATsynthesize] = ACTIONS(1477), + [anon_sym_ATdynamic] = ACTIONS(1477), + [anon_sym_NS_ENUM] = ACTIONS(1479), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1479), + [anon_sym_NS_OPTIONS] = ACTIONS(1479), + [anon_sym_typeof] = ACTIONS(1479), + [anon_sym___typeof] = ACTIONS(1479), + [anon_sym___typeof__] = ACTIONS(1479), + [sym_id] = ACTIONS(1479), + [sym_instancetype] = ACTIONS(1479), + [sym_Class] = ACTIONS(1479), + [sym_SEL] = ACTIONS(1479), + [sym_IMP] = ACTIONS(1479), + [sym_BOOL] = ACTIONS(1479), + [sym_auto] = ACTIONS(1479), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2883] = { + [sym_identifier] = ACTIONS(1375), + [aux_sym_preproc_def_token1] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_typedef] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym___attribute] = ACTIONS(1375), + [anon_sym___attribute__] = ACTIONS(1375), + [anon_sym___declspec] = ACTIONS(1375), + [anon_sym___cdecl] = ACTIONS(1375), + [anon_sym___clrcall] = ACTIONS(1375), + [anon_sym___stdcall] = ACTIONS(1375), + [anon_sym___fastcall] = ACTIONS(1375), + [anon_sym___thiscall] = ACTIONS(1375), + [anon_sym___vectorcall] = ACTIONS(1375), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_auto] = ACTIONS(1375), + [anon_sym_register] = ACTIONS(1375), + [anon_sym_inline] = ACTIONS(1375), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1375), + [anon_sym_volatile] = ACTIONS(1375), + [anon_sym_restrict] = ACTIONS(1375), + [anon_sym__Atomic] = ACTIONS(1375), + [anon_sym_in] = ACTIONS(1375), + [anon_sym_out] = ACTIONS(1375), + [anon_sym_inout] = ACTIONS(1375), + [anon_sym_bycopy] = ACTIONS(1375), + [anon_sym_byref] = ACTIONS(1375), + [anon_sym_oneway] = ACTIONS(1375), + [anon_sym__Nullable] = ACTIONS(1375), + [anon_sym__Nonnull] = ACTIONS(1375), + [anon_sym__Nullable_result] = ACTIONS(1375), + [anon_sym__Null_unspecified] = ACTIONS(1375), + [anon_sym___autoreleasing] = ACTIONS(1375), + [anon_sym___nullable] = ACTIONS(1375), + [anon_sym___nonnull] = ACTIONS(1375), + [anon_sym___strong] = ACTIONS(1375), + [anon_sym___weak] = ACTIONS(1375), + [anon_sym___bridge] = ACTIONS(1375), + [anon_sym___bridge_transfer] = ACTIONS(1375), + [anon_sym___bridge_retained] = ACTIONS(1375), + [anon_sym___unsafe_unretained] = ACTIONS(1375), + [anon_sym___block] = ACTIONS(1375), + [anon_sym___kindof] = ACTIONS(1375), + [anon_sym___unused] = ACTIONS(1375), + [anon_sym__Complex] = ACTIONS(1375), + [anon_sym___complex] = ACTIONS(1375), + [anon_sym_IBOutlet] = ACTIONS(1375), + [anon_sym_IBInspectable] = ACTIONS(1375), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1375), + [anon_sym_signed] = ACTIONS(1375), + [anon_sym_unsigned] = ACTIONS(1375), + [anon_sym_long] = ACTIONS(1375), + [anon_sym_short] = ACTIONS(1375), + [sym_primitive_type] = ACTIONS(1375), + [anon_sym_enum] = ACTIONS(1375), + [anon_sym_struct] = ACTIONS(1375), + [anon_sym_union] = ACTIONS(1375), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1375), + [anon_sym_ATend] = ACTIONS(1377), + [sym_optional] = ACTIONS(1377), + [sym_required] = ACTIONS(1377), + [anon_sym_ATproperty] = ACTIONS(1377), + [sym_method_attribute_specifier] = ACTIONS(1375), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1375), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1375), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1375), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1375), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1375), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1375), + [anon_sym_NS_AVAILABLE] = ACTIONS(1375), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1375), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1375), + [anon_sym_API_AVAILABLE] = ACTIONS(1375), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1375), + [anon_sym_API_DEPRECATED] = ACTIONS(1375), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1375), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1375), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1375), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1375), + [anon_sym___deprecated_msg] = ACTIONS(1375), + [anon_sym___deprecated_enum_msg] = ACTIONS(1375), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1375), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1375), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1375), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1375), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1375), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1375), + [anon_sym_ATsynthesize] = ACTIONS(1377), + [anon_sym_ATdynamic] = ACTIONS(1377), + [anon_sym_NS_ENUM] = ACTIONS(1375), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1375), + [anon_sym_NS_OPTIONS] = ACTIONS(1375), + [anon_sym_typeof] = ACTIONS(1375), + [anon_sym___typeof] = ACTIONS(1375), + [anon_sym___typeof__] = ACTIONS(1375), + [sym_id] = ACTIONS(1375), + [sym_instancetype] = ACTIONS(1375), + [sym_Class] = ACTIONS(1375), + [sym_SEL] = ACTIONS(1375), + [sym_IMP] = ACTIONS(1375), + [sym_BOOL] = ACTIONS(1375), + [sym_auto] = ACTIONS(1375), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2884] = { + [sym_type_qualifier] = STATE(3414), + [sym__expression] = STATE(4526), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_type_definition_repeat1] = STATE(3414), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(6904), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_RBRACK] = ACTIONS(6906), + [anon_sym_const] = ACTIONS(6878), + [anon_sym_volatile] = ACTIONS(6878), + [anon_sym_restrict] = ACTIONS(6878), + [anon_sym__Atomic] = ACTIONS(6878), + [anon_sym_in] = ACTIONS(6878), + [anon_sym_out] = ACTIONS(6878), + [anon_sym_inout] = ACTIONS(6878), + [anon_sym_bycopy] = ACTIONS(6878), + [anon_sym_byref] = ACTIONS(6878), + [anon_sym_oneway] = ACTIONS(6878), + [anon_sym__Nullable] = ACTIONS(6878), + [anon_sym__Nonnull] = ACTIONS(6878), + [anon_sym__Nullable_result] = ACTIONS(6878), + [anon_sym__Null_unspecified] = ACTIONS(6878), + [anon_sym___autoreleasing] = ACTIONS(6878), + [anon_sym___nullable] = ACTIONS(6878), + [anon_sym___nonnull] = ACTIONS(6878), + [anon_sym___strong] = ACTIONS(6878), + [anon_sym___weak] = ACTIONS(6878), + [anon_sym___bridge] = ACTIONS(6878), + [anon_sym___bridge_transfer] = ACTIONS(6878), + [anon_sym___bridge_retained] = ACTIONS(6878), + [anon_sym___unsafe_unretained] = ACTIONS(6878), + [anon_sym___block] = ACTIONS(6878), + [anon_sym___kindof] = ACTIONS(6878), + [anon_sym___unused] = ACTIONS(6878), + [anon_sym__Complex] = ACTIONS(6878), + [anon_sym___complex] = ACTIONS(6878), + [anon_sym_IBOutlet] = ACTIONS(6878), + [anon_sym_IBInspectable] = ACTIONS(6878), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2885] = { + [sym_identifier] = ACTIONS(1457), + [aux_sym_preproc_def_token1] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_typedef] = ACTIONS(1457), + [anon_sym_extern] = ACTIONS(1457), + [anon_sym___attribute] = ACTIONS(1457), + [anon_sym___attribute__] = ACTIONS(1457), + [anon_sym___declspec] = ACTIONS(1457), + [anon_sym___cdecl] = ACTIONS(1457), + [anon_sym___clrcall] = ACTIONS(1457), + [anon_sym___stdcall] = ACTIONS(1457), + [anon_sym___fastcall] = ACTIONS(1457), + [anon_sym___thiscall] = ACTIONS(1457), + [anon_sym___vectorcall] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_auto] = ACTIONS(1457), + [anon_sym_register] = ACTIONS(1457), + [anon_sym_inline] = ACTIONS(1457), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_volatile] = ACTIONS(1457), + [anon_sym_restrict] = ACTIONS(1457), + [anon_sym__Atomic] = ACTIONS(1457), + [anon_sym_in] = ACTIONS(1457), + [anon_sym_out] = ACTIONS(1457), + [anon_sym_inout] = ACTIONS(1457), + [anon_sym_bycopy] = ACTIONS(1457), + [anon_sym_byref] = ACTIONS(1457), + [anon_sym_oneway] = ACTIONS(1457), + [anon_sym__Nullable] = ACTIONS(1457), + [anon_sym__Nonnull] = ACTIONS(1457), + [anon_sym__Nullable_result] = ACTIONS(1457), + [anon_sym__Null_unspecified] = ACTIONS(1457), + [anon_sym___autoreleasing] = ACTIONS(1457), + [anon_sym___nullable] = ACTIONS(1457), + [anon_sym___nonnull] = ACTIONS(1457), + [anon_sym___strong] = ACTIONS(1457), + [anon_sym___weak] = ACTIONS(1457), + [anon_sym___bridge] = ACTIONS(1457), + [anon_sym___bridge_transfer] = ACTIONS(1457), + [anon_sym___bridge_retained] = ACTIONS(1457), + [anon_sym___unsafe_unretained] = ACTIONS(1457), + [anon_sym___block] = ACTIONS(1457), + [anon_sym___kindof] = ACTIONS(1457), + [anon_sym___unused] = ACTIONS(1457), + [anon_sym__Complex] = ACTIONS(1457), + [anon_sym___complex] = ACTIONS(1457), + [anon_sym_IBOutlet] = ACTIONS(1457), + [anon_sym_IBInspectable] = ACTIONS(1457), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1457), + [anon_sym_signed] = ACTIONS(1457), + [anon_sym_unsigned] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [sym_primitive_type] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1457), + [anon_sym_struct] = ACTIONS(1457), + [anon_sym_union] = ACTIONS(1457), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1457), + [anon_sym_ATend] = ACTIONS(1459), + [sym_optional] = ACTIONS(1459), + [sym_required] = ACTIONS(1459), + [anon_sym_ATproperty] = ACTIONS(1459), + [sym_method_attribute_specifier] = ACTIONS(1457), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1457), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1457), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1457), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1457), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1457), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1457), + [anon_sym_NS_AVAILABLE] = ACTIONS(1457), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1457), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1457), + [anon_sym_API_AVAILABLE] = ACTIONS(1457), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1457), + [anon_sym_API_DEPRECATED] = ACTIONS(1457), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1457), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1457), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1457), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1457), + [anon_sym___deprecated_msg] = ACTIONS(1457), + [anon_sym___deprecated_enum_msg] = ACTIONS(1457), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1457), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1457), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1457), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1457), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1457), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1457), + [anon_sym_ATsynthesize] = ACTIONS(1459), + [anon_sym_ATdynamic] = ACTIONS(1459), + [anon_sym_NS_ENUM] = ACTIONS(1457), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1457), + [anon_sym_NS_OPTIONS] = ACTIONS(1457), + [anon_sym_typeof] = ACTIONS(1457), + [anon_sym___typeof] = ACTIONS(1457), + [anon_sym___typeof__] = ACTIONS(1457), + [sym_id] = ACTIONS(1457), + [sym_instancetype] = ACTIONS(1457), + [sym_Class] = ACTIONS(1457), + [sym_SEL] = ACTIONS(1457), + [sym_IMP] = ACTIONS(1457), + [sym_BOOL] = ACTIONS(1457), + [sym_auto] = ACTIONS(1457), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2886] = { + [sym_identifier] = ACTIONS(1816), + [aux_sym_preproc_def_token1] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_typedef] = ACTIONS(1816), + [anon_sym_extern] = ACTIONS(1816), + [anon_sym___attribute] = ACTIONS(1816), + [anon_sym___attribute__] = ACTIONS(1816), + [anon_sym___declspec] = ACTIONS(1816), + [anon_sym___cdecl] = ACTIONS(1816), + [anon_sym___clrcall] = ACTIONS(1816), + [anon_sym___stdcall] = ACTIONS(1816), + [anon_sym___fastcall] = ACTIONS(1816), + [anon_sym___thiscall] = ACTIONS(1816), + [anon_sym___vectorcall] = ACTIONS(1816), + [anon_sym_static] = ACTIONS(1816), + [anon_sym_auto] = ACTIONS(1816), + [anon_sym_register] = ACTIONS(1816), + [anon_sym_inline] = ACTIONS(1816), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1816), + [anon_sym_const] = ACTIONS(1816), + [anon_sym_volatile] = ACTIONS(1816), + [anon_sym_restrict] = ACTIONS(1816), + [anon_sym__Atomic] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1816), + [anon_sym_out] = ACTIONS(1816), + [anon_sym_inout] = ACTIONS(1816), + [anon_sym_bycopy] = ACTIONS(1816), + [anon_sym_byref] = ACTIONS(1816), + [anon_sym_oneway] = ACTIONS(1816), + [anon_sym__Nullable] = ACTIONS(1816), + [anon_sym__Nonnull] = ACTIONS(1816), + [anon_sym__Nullable_result] = ACTIONS(1816), + [anon_sym__Null_unspecified] = ACTIONS(1816), + [anon_sym___autoreleasing] = ACTIONS(1816), + [anon_sym___nullable] = ACTIONS(1816), + [anon_sym___nonnull] = ACTIONS(1816), + [anon_sym___strong] = ACTIONS(1816), + [anon_sym___weak] = ACTIONS(1816), + [anon_sym___bridge] = ACTIONS(1816), + [anon_sym___bridge_transfer] = ACTIONS(1816), + [anon_sym___bridge_retained] = ACTIONS(1816), + [anon_sym___unsafe_unretained] = ACTIONS(1816), + [anon_sym___block] = ACTIONS(1816), + [anon_sym___kindof] = ACTIONS(1816), + [anon_sym___unused] = ACTIONS(1816), + [anon_sym__Complex] = ACTIONS(1816), + [anon_sym___complex] = ACTIONS(1816), + [anon_sym_IBOutlet] = ACTIONS(1816), + [anon_sym_IBInspectable] = ACTIONS(1816), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1816), + [anon_sym_signed] = ACTIONS(1816), + [anon_sym_unsigned] = ACTIONS(1816), + [anon_sym_long] = ACTIONS(1816), + [anon_sym_short] = ACTIONS(1816), + [sym_primitive_type] = ACTIONS(1816), + [anon_sym_enum] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1816), + [anon_sym_union] = ACTIONS(1816), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1816), + [anon_sym_ATend] = ACTIONS(1818), + [sym_optional] = ACTIONS(1818), + [sym_required] = ACTIONS(1818), + [anon_sym_ATproperty] = ACTIONS(1818), + [sym_method_attribute_specifier] = ACTIONS(1816), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1816), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1816), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1816), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1816), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1816), + [anon_sym_NS_AVAILABLE] = ACTIONS(1816), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1816), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_API_AVAILABLE] = ACTIONS(1816), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_API_DEPRECATED] = ACTIONS(1816), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1816), + [anon_sym___deprecated_msg] = ACTIONS(1816), + [anon_sym___deprecated_enum_msg] = ACTIONS(1816), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1816), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1816), + [anon_sym_ATsynthesize] = ACTIONS(1818), + [anon_sym_ATdynamic] = ACTIONS(1818), + [anon_sym_NS_ENUM] = ACTIONS(1816), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1816), + [anon_sym_NS_OPTIONS] = ACTIONS(1816), + [anon_sym_typeof] = ACTIONS(1816), + [anon_sym___typeof] = ACTIONS(1816), + [anon_sym___typeof__] = ACTIONS(1816), + [sym_id] = ACTIONS(1816), + [sym_instancetype] = ACTIONS(1816), + [sym_Class] = ACTIONS(1816), + [sym_SEL] = ACTIONS(1816), + [sym_IMP] = ACTIONS(1816), + [sym_BOOL] = ACTIONS(1816), + [sym_auto] = ACTIONS(1816), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2887] = { + [sym_identifier] = ACTIONS(1465), + [aux_sym_preproc_def_token1] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_typedef] = ACTIONS(1465), + [anon_sym_extern] = ACTIONS(1465), + [anon_sym___attribute] = ACTIONS(1465), + [anon_sym___attribute__] = ACTIONS(1465), + [anon_sym___declspec] = ACTIONS(1465), + [anon_sym___cdecl] = ACTIONS(1465), + [anon_sym___clrcall] = ACTIONS(1465), + [anon_sym___stdcall] = ACTIONS(1465), + [anon_sym___fastcall] = ACTIONS(1465), + [anon_sym___thiscall] = ACTIONS(1465), + [anon_sym___vectorcall] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_auto] = ACTIONS(1465), + [anon_sym_register] = ACTIONS(1465), + [anon_sym_inline] = ACTIONS(1465), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_volatile] = ACTIONS(1465), + [anon_sym_restrict] = ACTIONS(1465), + [anon_sym__Atomic] = ACTIONS(1465), + [anon_sym_in] = ACTIONS(1465), + [anon_sym_out] = ACTIONS(1465), + [anon_sym_inout] = ACTIONS(1465), + [anon_sym_bycopy] = ACTIONS(1465), + [anon_sym_byref] = ACTIONS(1465), + [anon_sym_oneway] = ACTIONS(1465), + [anon_sym__Nullable] = ACTIONS(1465), + [anon_sym__Nonnull] = ACTIONS(1465), + [anon_sym__Nullable_result] = ACTIONS(1465), + [anon_sym__Null_unspecified] = ACTIONS(1465), + [anon_sym___autoreleasing] = ACTIONS(1465), + [anon_sym___nullable] = ACTIONS(1465), + [anon_sym___nonnull] = ACTIONS(1465), + [anon_sym___strong] = ACTIONS(1465), + [anon_sym___weak] = ACTIONS(1465), + [anon_sym___bridge] = ACTIONS(1465), + [anon_sym___bridge_transfer] = ACTIONS(1465), + [anon_sym___bridge_retained] = ACTIONS(1465), + [anon_sym___unsafe_unretained] = ACTIONS(1465), + [anon_sym___block] = ACTIONS(1465), + [anon_sym___kindof] = ACTIONS(1465), + [anon_sym___unused] = ACTIONS(1465), + [anon_sym__Complex] = ACTIONS(1465), + [anon_sym___complex] = ACTIONS(1465), + [anon_sym_IBOutlet] = ACTIONS(1465), + [anon_sym_IBInspectable] = ACTIONS(1465), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1465), + [anon_sym_signed] = ACTIONS(1465), + [anon_sym_unsigned] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [sym_primitive_type] = ACTIONS(1465), + [anon_sym_enum] = ACTIONS(1465), + [anon_sym_struct] = ACTIONS(1465), + [anon_sym_union] = ACTIONS(1465), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1465), + [anon_sym_ATend] = ACTIONS(1467), + [sym_optional] = ACTIONS(1467), + [sym_required] = ACTIONS(1467), + [anon_sym_ATproperty] = ACTIONS(1467), + [sym_method_attribute_specifier] = ACTIONS(1465), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1465), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1465), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1465), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1465), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1465), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1465), + [anon_sym_NS_AVAILABLE] = ACTIONS(1465), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1465), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1465), + [anon_sym_API_AVAILABLE] = ACTIONS(1465), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1465), + [anon_sym_API_DEPRECATED] = ACTIONS(1465), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1465), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1465), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1465), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1465), + [anon_sym___deprecated_msg] = ACTIONS(1465), + [anon_sym___deprecated_enum_msg] = ACTIONS(1465), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1465), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1465), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1465), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1465), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1465), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1465), + [anon_sym_ATsynthesize] = ACTIONS(1467), + [anon_sym_ATdynamic] = ACTIONS(1467), + [anon_sym_NS_ENUM] = ACTIONS(1465), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1465), + [anon_sym_NS_OPTIONS] = ACTIONS(1465), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym___typeof] = ACTIONS(1465), + [anon_sym___typeof__] = ACTIONS(1465), + [sym_id] = ACTIONS(1465), + [sym_instancetype] = ACTIONS(1465), + [sym_Class] = ACTIONS(1465), + [sym_SEL] = ACTIONS(1465), + [sym_IMP] = ACTIONS(1465), + [sym_BOOL] = ACTIONS(1465), + [sym_auto] = ACTIONS(1465), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2888] = { + [sym__declaration_specifiers] = STATE(4733), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(829), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(829), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(829), + [sym_IMP] = ACTIONS(829), + [sym_BOOL] = ACTIONS(829), + [sym_auto] = ACTIONS(829), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2889] = { + [sym_identifier] = ACTIONS(1639), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1639), + [anon_sym___cdecl] = ACTIONS(1639), + [anon_sym___clrcall] = ACTIONS(1639), + [anon_sym___stdcall] = ACTIONS(1639), + [anon_sym___fastcall] = ACTIONS(1639), + [anon_sym___thiscall] = ACTIONS(1639), + [anon_sym___vectorcall] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_auto] = ACTIONS(1639), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_inline] = ACTIONS(1639), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1639), + [anon_sym_restrict] = ACTIONS(1639), + [anon_sym__Atomic] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [anon_sym_out] = ACTIONS(1639), + [anon_sym_inout] = ACTIONS(1639), + [anon_sym_bycopy] = ACTIONS(1639), + [anon_sym_byref] = ACTIONS(1639), + [anon_sym_oneway] = ACTIONS(1639), + [anon_sym__Nullable] = ACTIONS(1639), + [anon_sym__Nonnull] = ACTIONS(1639), + [anon_sym__Nullable_result] = ACTIONS(1639), + [anon_sym__Null_unspecified] = ACTIONS(1639), + [anon_sym___autoreleasing] = ACTIONS(1639), + [anon_sym___nullable] = ACTIONS(1639), + [anon_sym___nonnull] = ACTIONS(1639), + [anon_sym___strong] = ACTIONS(1639), + [anon_sym___weak] = ACTIONS(1639), + [anon_sym___bridge] = ACTIONS(1639), + [anon_sym___bridge_transfer] = ACTIONS(1639), + [anon_sym___bridge_retained] = ACTIONS(1639), + [anon_sym___unsafe_unretained] = ACTIONS(1639), + [anon_sym___block] = ACTIONS(1639), + [anon_sym___kindof] = ACTIONS(1639), + [anon_sym___unused] = ACTIONS(1639), + [anon_sym__Complex] = ACTIONS(1639), + [anon_sym___complex] = ACTIONS(1639), + [anon_sym_IBOutlet] = ACTIONS(1639), + [anon_sym_IBInspectable] = ACTIONS(1639), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1639), + [anon_sym_unsigned] = ACTIONS(1639), + [anon_sym_long] = ACTIONS(1639), + [anon_sym_short] = ACTIONS(1639), + [sym_primitive_type] = ACTIONS(1639), + [anon_sym_enum] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1639), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1639), + [anon_sym_ATend] = ACTIONS(1637), + [sym_optional] = ACTIONS(1637), + [sym_required] = ACTIONS(1637), + [anon_sym_ATproperty] = ACTIONS(1637), + [sym_method_attribute_specifier] = ACTIONS(1639), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1639), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE] = ACTIONS(1639), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_API_AVAILABLE] = ACTIONS(1639), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_API_DEPRECATED] = ACTIONS(1639), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1639), + [anon_sym___deprecated_msg] = ACTIONS(1639), + [anon_sym___deprecated_enum_msg] = ACTIONS(1639), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1639), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1639), + [anon_sym_ATsynthesize] = ACTIONS(1637), + [anon_sym_ATdynamic] = ACTIONS(1637), + [anon_sym_NS_ENUM] = ACTIONS(1639), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1639), + [anon_sym_NS_OPTIONS] = ACTIONS(1639), + [anon_sym_typeof] = ACTIONS(1639), + [anon_sym___typeof] = ACTIONS(1639), + [anon_sym___typeof__] = ACTIONS(1639), + [sym_id] = ACTIONS(1639), + [sym_instancetype] = ACTIONS(1639), + [sym_Class] = ACTIONS(1639), + [sym_SEL] = ACTIONS(1639), + [sym_IMP] = ACTIONS(1639), + [sym_BOOL] = ACTIONS(1639), + [sym_auto] = ACTIONS(1639), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2890] = { + [sym_identifier] = ACTIONS(1241), + [aux_sym_preproc_def_token1] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_typedef] = ACTIONS(1241), + [anon_sym_extern] = ACTIONS(1241), + [anon_sym___attribute] = ACTIONS(1241), + [anon_sym___attribute__] = ACTIONS(1241), + [anon_sym___declspec] = ACTIONS(1241), + [anon_sym___cdecl] = ACTIONS(1241), + [anon_sym___clrcall] = ACTIONS(1241), + [anon_sym___stdcall] = ACTIONS(1241), + [anon_sym___fastcall] = ACTIONS(1241), + [anon_sym___thiscall] = ACTIONS(1241), + [anon_sym___vectorcall] = ACTIONS(1241), + [anon_sym_static] = ACTIONS(1241), + [anon_sym_auto] = ACTIONS(1241), + [anon_sym_register] = ACTIONS(1241), + [anon_sym_inline] = ACTIONS(1241), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1241), + [anon_sym_const] = ACTIONS(1241), + [anon_sym_volatile] = ACTIONS(1241), + [anon_sym_restrict] = ACTIONS(1241), + [anon_sym__Atomic] = ACTIONS(1241), + [anon_sym_in] = ACTIONS(1241), + [anon_sym_out] = ACTIONS(1241), + [anon_sym_inout] = ACTIONS(1241), + [anon_sym_bycopy] = ACTIONS(1241), + [anon_sym_byref] = ACTIONS(1241), + [anon_sym_oneway] = ACTIONS(1241), + [anon_sym__Nullable] = ACTIONS(1241), + [anon_sym__Nonnull] = ACTIONS(1241), + [anon_sym__Nullable_result] = ACTIONS(1241), + [anon_sym__Null_unspecified] = ACTIONS(1241), + [anon_sym___autoreleasing] = ACTIONS(1241), + [anon_sym___nullable] = ACTIONS(1241), + [anon_sym___nonnull] = ACTIONS(1241), + [anon_sym___strong] = ACTIONS(1241), + [anon_sym___weak] = ACTIONS(1241), + [anon_sym___bridge] = ACTIONS(1241), + [anon_sym___bridge_transfer] = ACTIONS(1241), + [anon_sym___bridge_retained] = ACTIONS(1241), + [anon_sym___unsafe_unretained] = ACTIONS(1241), + [anon_sym___block] = ACTIONS(1241), + [anon_sym___kindof] = ACTIONS(1241), + [anon_sym___unused] = ACTIONS(1241), + [anon_sym__Complex] = ACTIONS(1241), + [anon_sym___complex] = ACTIONS(1241), + [anon_sym_IBOutlet] = ACTIONS(1241), + [anon_sym_IBInspectable] = ACTIONS(1241), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1241), + [anon_sym_signed] = ACTIONS(1241), + [anon_sym_unsigned] = ACTIONS(1241), + [anon_sym_long] = ACTIONS(1241), + [anon_sym_short] = ACTIONS(1241), + [sym_primitive_type] = ACTIONS(1241), + [anon_sym_enum] = ACTIONS(1241), + [anon_sym_struct] = ACTIONS(1241), + [anon_sym_union] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1241), + [anon_sym_ATend] = ACTIONS(1239), + [sym_optional] = ACTIONS(1239), + [sym_required] = ACTIONS(1239), + [anon_sym_ATproperty] = ACTIONS(1239), + [sym_method_attribute_specifier] = ACTIONS(1241), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1241), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1241), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1241), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1241), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1241), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1241), + [anon_sym_NS_AVAILABLE] = ACTIONS(1241), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1241), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1241), + [anon_sym_API_AVAILABLE] = ACTIONS(1241), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1241), + [anon_sym_API_DEPRECATED] = ACTIONS(1241), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1241), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1241), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1241), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1241), + [anon_sym___deprecated_msg] = ACTIONS(1241), + [anon_sym___deprecated_enum_msg] = ACTIONS(1241), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1241), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1241), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1241), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1241), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1241), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1241), + [anon_sym_ATsynthesize] = ACTIONS(1239), + [anon_sym_ATdynamic] = ACTIONS(1239), + [anon_sym_NS_ENUM] = ACTIONS(1241), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1241), + [anon_sym_NS_OPTIONS] = ACTIONS(1241), + [anon_sym_typeof] = ACTIONS(1241), + [anon_sym___typeof] = ACTIONS(1241), + [anon_sym___typeof__] = ACTIONS(1241), + [sym_id] = ACTIONS(1241), + [sym_instancetype] = ACTIONS(1241), + [sym_Class] = ACTIONS(1241), + [sym_SEL] = ACTIONS(1241), + [sym_IMP] = ACTIONS(1241), + [sym_BOOL] = ACTIONS(1241), + [sym_auto] = ACTIONS(1241), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2891] = { [sym__declaration_specifiers] = STATE(4714), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), @@ -491342,35 +477356,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(829), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), @@ -491388,26 +477402,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3001] = { - [sym__declaration_specifiers] = STATE(3951), - [sym_attribute_specifier] = STATE(3013), - [sym_ms_declspec_modifier] = STATE(3013), - [sym_storage_class_specifier] = STATE(3013), - [sym_type_qualifier] = STATE(3013), - [sym__type_specifier] = STATE(3410), - [sym_sized_type_specifier] = STATE(3410), - [sym_enum_specifier] = STATE(3410), - [sym_struct_specifier] = STATE(3410), - [sym_union_specifier] = STATE(3410), - [sym_macro_type_specifier] = STATE(3410), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3410), - [sym_atomic_specifier] = STATE(3410), - [sym_generic_type_specifier] = STATE(3410), - [aux_sym__declaration_specifiers_repeat1] = STATE(3013), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), + [2892] = { + [sym__declaration_specifiers] = STATE(3910), + [sym_attribute_specifier] = STATE(2945), + [sym_ms_declspec_modifier] = STATE(2945), + [sym_storage_class_specifier] = STATE(2945), + [sym_type_qualifier] = STATE(2945), + [sym__type_specifier] = STATE(3352), + [sym_sized_type_specifier] = STATE(3352), + [sym_enum_specifier] = STATE(3352), + [sym_struct_specifier] = STATE(3352), + [sym_union_specifier] = STATE(3352), + [sym_macro_type_specifier] = STATE(3352), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3352), + [sym_typeof_specifier] = STATE(3352), + [sym_atomic_specifier] = STATE(3352), + [sym_generic_type_specifier] = STATE(3352), + [aux_sym__declaration_specifiers_repeat1] = STATE(2945), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), @@ -491454,35 +477469,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(1127), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), @@ -491500,108 +477515,1578 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3002] = { - [sym__type_specifier] = STATE(4757), - [sym_sized_type_specifier] = STATE(4757), - [sym_enum_specifier] = STATE(4757), - [sym_struct_specifier] = STATE(4757), - [sym_union_specifier] = STATE(4757), - [sym__expression] = STATE(4430), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_macro_type_specifier] = STATE(4757), - [sym_typeof_specifier] = STATE(4757), - [sym_atomic_specifier] = STATE(4757), - [sym_generic_type_specifier] = STATE(4757), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym__receiver] = STATE(4757), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(6982), + [2893] = { + [sym_identifier] = ACTIONS(1639), + [aux_sym_preproc_def_token1] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_typedef] = ACTIONS(1639), + [anon_sym_extern] = ACTIONS(1639), + [anon_sym___attribute] = ACTIONS(1639), + [anon_sym___attribute__] = ACTIONS(1639), + [anon_sym___declspec] = ACTIONS(1639), + [anon_sym___cdecl] = ACTIONS(1639), + [anon_sym___clrcall] = ACTIONS(1639), + [anon_sym___stdcall] = ACTIONS(1639), + [anon_sym___fastcall] = ACTIONS(1639), + [anon_sym___thiscall] = ACTIONS(1639), + [anon_sym___vectorcall] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_auto] = ACTIONS(1639), + [anon_sym_register] = ACTIONS(1639), + [anon_sym_inline] = ACTIONS(1639), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1639), + [anon_sym_volatile] = ACTIONS(1639), + [anon_sym_restrict] = ACTIONS(1639), + [anon_sym__Atomic] = ACTIONS(1639), + [anon_sym_in] = ACTIONS(1639), + [anon_sym_out] = ACTIONS(1639), + [anon_sym_inout] = ACTIONS(1639), + [anon_sym_bycopy] = ACTIONS(1639), + [anon_sym_byref] = ACTIONS(1639), + [anon_sym_oneway] = ACTIONS(1639), + [anon_sym__Nullable] = ACTIONS(1639), + [anon_sym__Nonnull] = ACTIONS(1639), + [anon_sym__Nullable_result] = ACTIONS(1639), + [anon_sym__Null_unspecified] = ACTIONS(1639), + [anon_sym___autoreleasing] = ACTIONS(1639), + [anon_sym___nullable] = ACTIONS(1639), + [anon_sym___nonnull] = ACTIONS(1639), + [anon_sym___strong] = ACTIONS(1639), + [anon_sym___weak] = ACTIONS(1639), + [anon_sym___bridge] = ACTIONS(1639), + [anon_sym___bridge_transfer] = ACTIONS(1639), + [anon_sym___bridge_retained] = ACTIONS(1639), + [anon_sym___unsafe_unretained] = ACTIONS(1639), + [anon_sym___block] = ACTIONS(1639), + [anon_sym___kindof] = ACTIONS(1639), + [anon_sym___unused] = ACTIONS(1639), + [anon_sym__Complex] = ACTIONS(1639), + [anon_sym___complex] = ACTIONS(1639), + [anon_sym_IBOutlet] = ACTIONS(1639), + [anon_sym_IBInspectable] = ACTIONS(1639), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1639), + [anon_sym_signed] = ACTIONS(1639), + [anon_sym_unsigned] = ACTIONS(1639), + [anon_sym_long] = ACTIONS(1639), + [anon_sym_short] = ACTIONS(1639), + [sym_primitive_type] = ACTIONS(1639), + [anon_sym_enum] = ACTIONS(1639), + [anon_sym_struct] = ACTIONS(1639), + [anon_sym_union] = ACTIONS(1639), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1639), + [anon_sym_ATend] = ACTIONS(1637), + [sym_optional] = ACTIONS(1637), + [sym_required] = ACTIONS(1637), + [anon_sym_ATproperty] = ACTIONS(1637), + [sym_method_attribute_specifier] = ACTIONS(1639), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1639), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1639), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE] = ACTIONS(1639), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1639), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_API_AVAILABLE] = ACTIONS(1639), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_API_DEPRECATED] = ACTIONS(1639), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1639), + [anon_sym___deprecated_msg] = ACTIONS(1639), + [anon_sym___deprecated_enum_msg] = ACTIONS(1639), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1639), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1639), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1639), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1639), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1639), + [anon_sym_ATsynthesize] = ACTIONS(1637), + [anon_sym_ATdynamic] = ACTIONS(1637), + [anon_sym_NS_ENUM] = ACTIONS(1639), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1639), + [anon_sym_NS_OPTIONS] = ACTIONS(1639), + [anon_sym_typeof] = ACTIONS(1639), + [anon_sym___typeof] = ACTIONS(1639), + [anon_sym___typeof__] = ACTIONS(1639), + [sym_id] = ACTIONS(1639), + [sym_instancetype] = ACTIONS(1639), + [sym_Class] = ACTIONS(1639), + [sym_SEL] = ACTIONS(1639), + [sym_IMP] = ACTIONS(1639), + [sym_BOOL] = ACTIONS(1639), + [sym_auto] = ACTIONS(1639), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2894] = { + [sym_identifier] = ACTIONS(1309), + [aux_sym_preproc_def_token1] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_PLUS] = ACTIONS(1307), + [anon_sym_typedef] = ACTIONS(1309), + [anon_sym_extern] = ACTIONS(1309), + [anon_sym___attribute] = ACTIONS(1309), + [anon_sym___attribute__] = ACTIONS(1309), + [anon_sym___declspec] = ACTIONS(1309), + [anon_sym___cdecl] = ACTIONS(1309), + [anon_sym___clrcall] = ACTIONS(1309), + [anon_sym___stdcall] = ACTIONS(1309), + [anon_sym___fastcall] = ACTIONS(1309), + [anon_sym___thiscall] = ACTIONS(1309), + [anon_sym___vectorcall] = ACTIONS(1309), + [anon_sym_static] = ACTIONS(1309), + [anon_sym_auto] = ACTIONS(1309), + [anon_sym_register] = ACTIONS(1309), + [anon_sym_inline] = ACTIONS(1309), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1309), + [anon_sym_const] = ACTIONS(1309), + [anon_sym_volatile] = ACTIONS(1309), + [anon_sym_restrict] = ACTIONS(1309), + [anon_sym__Atomic] = ACTIONS(1309), + [anon_sym_in] = ACTIONS(1309), + [anon_sym_out] = ACTIONS(1309), + [anon_sym_inout] = ACTIONS(1309), + [anon_sym_bycopy] = ACTIONS(1309), + [anon_sym_byref] = ACTIONS(1309), + [anon_sym_oneway] = ACTIONS(1309), + [anon_sym__Nullable] = ACTIONS(1309), + [anon_sym__Nonnull] = ACTIONS(1309), + [anon_sym__Nullable_result] = ACTIONS(1309), + [anon_sym__Null_unspecified] = ACTIONS(1309), + [anon_sym___autoreleasing] = ACTIONS(1309), + [anon_sym___nullable] = ACTIONS(1309), + [anon_sym___nonnull] = ACTIONS(1309), + [anon_sym___strong] = ACTIONS(1309), + [anon_sym___weak] = ACTIONS(1309), + [anon_sym___bridge] = ACTIONS(1309), + [anon_sym___bridge_transfer] = ACTIONS(1309), + [anon_sym___bridge_retained] = ACTIONS(1309), + [anon_sym___unsafe_unretained] = ACTIONS(1309), + [anon_sym___block] = ACTIONS(1309), + [anon_sym___kindof] = ACTIONS(1309), + [anon_sym___unused] = ACTIONS(1309), + [anon_sym__Complex] = ACTIONS(1309), + [anon_sym___complex] = ACTIONS(1309), + [anon_sym_IBOutlet] = ACTIONS(1309), + [anon_sym_IBInspectable] = ACTIONS(1309), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1309), + [anon_sym_signed] = ACTIONS(1309), + [anon_sym_unsigned] = ACTIONS(1309), + [anon_sym_long] = ACTIONS(1309), + [anon_sym_short] = ACTIONS(1309), + [sym_primitive_type] = ACTIONS(1309), + [anon_sym_enum] = ACTIONS(1309), + [anon_sym_struct] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1309), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1309), + [anon_sym_ATend] = ACTIONS(1307), + [sym_optional] = ACTIONS(1307), + [sym_required] = ACTIONS(1307), + [anon_sym_ATproperty] = ACTIONS(1307), + [sym_method_attribute_specifier] = ACTIONS(1309), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1309), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1309), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1309), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1309), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1309), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1309), + [anon_sym_NS_AVAILABLE] = ACTIONS(1309), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1309), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1309), + [anon_sym_API_AVAILABLE] = ACTIONS(1309), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1309), + [anon_sym_API_DEPRECATED] = ACTIONS(1309), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1309), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1309), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1309), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1309), + [anon_sym___deprecated_msg] = ACTIONS(1309), + [anon_sym___deprecated_enum_msg] = ACTIONS(1309), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1309), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1309), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1309), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1309), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1309), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1309), + [anon_sym_ATsynthesize] = ACTIONS(1307), + [anon_sym_ATdynamic] = ACTIONS(1307), + [anon_sym_NS_ENUM] = ACTIONS(1309), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1309), + [anon_sym_NS_OPTIONS] = ACTIONS(1309), + [anon_sym_typeof] = ACTIONS(1309), + [anon_sym___typeof] = ACTIONS(1309), + [anon_sym___typeof__] = ACTIONS(1309), + [sym_id] = ACTIONS(1309), + [sym_instancetype] = ACTIONS(1309), + [sym_Class] = ACTIONS(1309), + [sym_SEL] = ACTIONS(1309), + [sym_IMP] = ACTIONS(1309), + [sym_BOOL] = ACTIONS(1309), + [sym_auto] = ACTIONS(1309), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2895] = { + [sym_identifier] = ACTIONS(1305), + [aux_sym_preproc_def_token1] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_typedef] = ACTIONS(1305), + [anon_sym_extern] = ACTIONS(1305), + [anon_sym___attribute] = ACTIONS(1305), + [anon_sym___attribute__] = ACTIONS(1305), + [anon_sym___declspec] = ACTIONS(1305), + [anon_sym___cdecl] = ACTIONS(1305), + [anon_sym___clrcall] = ACTIONS(1305), + [anon_sym___stdcall] = ACTIONS(1305), + [anon_sym___fastcall] = ACTIONS(1305), + [anon_sym___thiscall] = ACTIONS(1305), + [anon_sym___vectorcall] = ACTIONS(1305), + [anon_sym_static] = ACTIONS(1305), + [anon_sym_auto] = ACTIONS(1305), + [anon_sym_register] = ACTIONS(1305), + [anon_sym_inline] = ACTIONS(1305), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1305), + [anon_sym_const] = ACTIONS(1305), + [anon_sym_volatile] = ACTIONS(1305), + [anon_sym_restrict] = ACTIONS(1305), + [anon_sym__Atomic] = ACTIONS(1305), + [anon_sym_in] = ACTIONS(1305), + [anon_sym_out] = ACTIONS(1305), + [anon_sym_inout] = ACTIONS(1305), + [anon_sym_bycopy] = ACTIONS(1305), + [anon_sym_byref] = ACTIONS(1305), + [anon_sym_oneway] = ACTIONS(1305), + [anon_sym__Nullable] = ACTIONS(1305), + [anon_sym__Nonnull] = ACTIONS(1305), + [anon_sym__Nullable_result] = ACTIONS(1305), + [anon_sym__Null_unspecified] = ACTIONS(1305), + [anon_sym___autoreleasing] = ACTIONS(1305), + [anon_sym___nullable] = ACTIONS(1305), + [anon_sym___nonnull] = ACTIONS(1305), + [anon_sym___strong] = ACTIONS(1305), + [anon_sym___weak] = ACTIONS(1305), + [anon_sym___bridge] = ACTIONS(1305), + [anon_sym___bridge_transfer] = ACTIONS(1305), + [anon_sym___bridge_retained] = ACTIONS(1305), + [anon_sym___unsafe_unretained] = ACTIONS(1305), + [anon_sym___block] = ACTIONS(1305), + [anon_sym___kindof] = ACTIONS(1305), + [anon_sym___unused] = ACTIONS(1305), + [anon_sym__Complex] = ACTIONS(1305), + [anon_sym___complex] = ACTIONS(1305), + [anon_sym_IBOutlet] = ACTIONS(1305), + [anon_sym_IBInspectable] = ACTIONS(1305), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1305), + [anon_sym_signed] = ACTIONS(1305), + [anon_sym_unsigned] = ACTIONS(1305), + [anon_sym_long] = ACTIONS(1305), + [anon_sym_short] = ACTIONS(1305), + [sym_primitive_type] = ACTIONS(1305), + [anon_sym_enum] = ACTIONS(1305), + [anon_sym_struct] = ACTIONS(1305), + [anon_sym_union] = ACTIONS(1305), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1305), + [anon_sym_ATend] = ACTIONS(1303), + [sym_optional] = ACTIONS(1303), + [sym_required] = ACTIONS(1303), + [anon_sym_ATproperty] = ACTIONS(1303), + [sym_method_attribute_specifier] = ACTIONS(1305), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1305), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1305), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1305), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1305), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1305), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1305), + [anon_sym_NS_AVAILABLE] = ACTIONS(1305), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1305), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1305), + [anon_sym_API_AVAILABLE] = ACTIONS(1305), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1305), + [anon_sym_API_DEPRECATED] = ACTIONS(1305), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1305), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1305), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1305), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1305), + [anon_sym___deprecated_msg] = ACTIONS(1305), + [anon_sym___deprecated_enum_msg] = ACTIONS(1305), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1305), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1305), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1305), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1305), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1305), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1305), + [anon_sym_ATsynthesize] = ACTIONS(1303), + [anon_sym_ATdynamic] = ACTIONS(1303), + [anon_sym_NS_ENUM] = ACTIONS(1305), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1305), + [anon_sym_NS_OPTIONS] = ACTIONS(1305), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym___typeof] = ACTIONS(1305), + [anon_sym___typeof__] = ACTIONS(1305), + [sym_id] = ACTIONS(1305), + [sym_instancetype] = ACTIONS(1305), + [sym_Class] = ACTIONS(1305), + [sym_SEL] = ACTIONS(1305), + [sym_IMP] = ACTIONS(1305), + [sym_BOOL] = ACTIONS(1305), + [sym_auto] = ACTIONS(1305), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2896] = { + [sym_identifier] = ACTIONS(1301), + [aux_sym_preproc_def_token1] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_typedef] = ACTIONS(1301), + [anon_sym_extern] = ACTIONS(1301), + [anon_sym___attribute] = ACTIONS(1301), + [anon_sym___attribute__] = ACTIONS(1301), + [anon_sym___declspec] = ACTIONS(1301), + [anon_sym___cdecl] = ACTIONS(1301), + [anon_sym___clrcall] = ACTIONS(1301), + [anon_sym___stdcall] = ACTIONS(1301), + [anon_sym___fastcall] = ACTIONS(1301), + [anon_sym___thiscall] = ACTIONS(1301), + [anon_sym___vectorcall] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_auto] = ACTIONS(1301), + [anon_sym_register] = ACTIONS(1301), + [anon_sym_inline] = ACTIONS(1301), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1301), + [anon_sym_const] = ACTIONS(1301), + [anon_sym_volatile] = ACTIONS(1301), + [anon_sym_restrict] = ACTIONS(1301), + [anon_sym__Atomic] = ACTIONS(1301), + [anon_sym_in] = ACTIONS(1301), + [anon_sym_out] = ACTIONS(1301), + [anon_sym_inout] = ACTIONS(1301), + [anon_sym_bycopy] = ACTIONS(1301), + [anon_sym_byref] = ACTIONS(1301), + [anon_sym_oneway] = ACTIONS(1301), + [anon_sym__Nullable] = ACTIONS(1301), + [anon_sym__Nonnull] = ACTIONS(1301), + [anon_sym__Nullable_result] = ACTIONS(1301), + [anon_sym__Null_unspecified] = ACTIONS(1301), + [anon_sym___autoreleasing] = ACTIONS(1301), + [anon_sym___nullable] = ACTIONS(1301), + [anon_sym___nonnull] = ACTIONS(1301), + [anon_sym___strong] = ACTIONS(1301), + [anon_sym___weak] = ACTIONS(1301), + [anon_sym___bridge] = ACTIONS(1301), + [anon_sym___bridge_transfer] = ACTIONS(1301), + [anon_sym___bridge_retained] = ACTIONS(1301), + [anon_sym___unsafe_unretained] = ACTIONS(1301), + [anon_sym___block] = ACTIONS(1301), + [anon_sym___kindof] = ACTIONS(1301), + [anon_sym___unused] = ACTIONS(1301), + [anon_sym__Complex] = ACTIONS(1301), + [anon_sym___complex] = ACTIONS(1301), + [anon_sym_IBOutlet] = ACTIONS(1301), + [anon_sym_IBInspectable] = ACTIONS(1301), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1301), + [anon_sym_signed] = ACTIONS(1301), + [anon_sym_unsigned] = ACTIONS(1301), + [anon_sym_long] = ACTIONS(1301), + [anon_sym_short] = ACTIONS(1301), + [sym_primitive_type] = ACTIONS(1301), + [anon_sym_enum] = ACTIONS(1301), + [anon_sym_struct] = ACTIONS(1301), + [anon_sym_union] = ACTIONS(1301), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1301), + [anon_sym_ATend] = ACTIONS(1299), + [sym_optional] = ACTIONS(1299), + [sym_required] = ACTIONS(1299), + [anon_sym_ATproperty] = ACTIONS(1299), + [sym_method_attribute_specifier] = ACTIONS(1301), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1301), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1301), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1301), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1301), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1301), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1301), + [anon_sym_NS_AVAILABLE] = ACTIONS(1301), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1301), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1301), + [anon_sym_API_AVAILABLE] = ACTIONS(1301), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1301), + [anon_sym_API_DEPRECATED] = ACTIONS(1301), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1301), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1301), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1301), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1301), + [anon_sym___deprecated_msg] = ACTIONS(1301), + [anon_sym___deprecated_enum_msg] = ACTIONS(1301), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1301), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1301), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1301), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1301), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1301), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1301), + [anon_sym_ATsynthesize] = ACTIONS(1299), + [anon_sym_ATdynamic] = ACTIONS(1299), + [anon_sym_NS_ENUM] = ACTIONS(1301), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1301), + [anon_sym_NS_OPTIONS] = ACTIONS(1301), + [anon_sym_typeof] = ACTIONS(1301), + [anon_sym___typeof] = ACTIONS(1301), + [anon_sym___typeof__] = ACTIONS(1301), + [sym_id] = ACTIONS(1301), + [sym_instancetype] = ACTIONS(1301), + [sym_Class] = ACTIONS(1301), + [sym_SEL] = ACTIONS(1301), + [sym_IMP] = ACTIONS(1301), + [sym_BOOL] = ACTIONS(1301), + [sym_auto] = ACTIONS(1301), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2897] = { + [sym_identifier] = ACTIONS(1297), + [aux_sym_preproc_def_token1] = ACTIONS(1295), + [anon_sym_DASH] = ACTIONS(1295), + [anon_sym_PLUS] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1297), + [anon_sym___attribute] = ACTIONS(1297), + [anon_sym___attribute__] = ACTIONS(1297), + [anon_sym___declspec] = ACTIONS(1297), + [anon_sym___cdecl] = ACTIONS(1297), + [anon_sym___clrcall] = ACTIONS(1297), + [anon_sym___stdcall] = ACTIONS(1297), + [anon_sym___fastcall] = ACTIONS(1297), + [anon_sym___thiscall] = ACTIONS(1297), + [anon_sym___vectorcall] = ACTIONS(1297), + [anon_sym_static] = ACTIONS(1297), + [anon_sym_auto] = ACTIONS(1297), + [anon_sym_register] = ACTIONS(1297), + [anon_sym_inline] = ACTIONS(1297), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_volatile] = ACTIONS(1297), + [anon_sym_restrict] = ACTIONS(1297), + [anon_sym__Atomic] = ACTIONS(1297), + [anon_sym_in] = ACTIONS(1297), + [anon_sym_out] = ACTIONS(1297), + [anon_sym_inout] = ACTIONS(1297), + [anon_sym_bycopy] = ACTIONS(1297), + [anon_sym_byref] = ACTIONS(1297), + [anon_sym_oneway] = ACTIONS(1297), + [anon_sym__Nullable] = ACTIONS(1297), + [anon_sym__Nonnull] = ACTIONS(1297), + [anon_sym__Nullable_result] = ACTIONS(1297), + [anon_sym__Null_unspecified] = ACTIONS(1297), + [anon_sym___autoreleasing] = ACTIONS(1297), + [anon_sym___nullable] = ACTIONS(1297), + [anon_sym___nonnull] = ACTIONS(1297), + [anon_sym___strong] = ACTIONS(1297), + [anon_sym___weak] = ACTIONS(1297), + [anon_sym___bridge] = ACTIONS(1297), + [anon_sym___bridge_transfer] = ACTIONS(1297), + [anon_sym___bridge_retained] = ACTIONS(1297), + [anon_sym___unsafe_unretained] = ACTIONS(1297), + [anon_sym___block] = ACTIONS(1297), + [anon_sym___kindof] = ACTIONS(1297), + [anon_sym___unused] = ACTIONS(1297), + [anon_sym__Complex] = ACTIONS(1297), + [anon_sym___complex] = ACTIONS(1297), + [anon_sym_IBOutlet] = ACTIONS(1297), + [anon_sym_IBInspectable] = ACTIONS(1297), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1297), + [anon_sym_signed] = ACTIONS(1297), + [anon_sym_unsigned] = ACTIONS(1297), + [anon_sym_long] = ACTIONS(1297), + [anon_sym_short] = ACTIONS(1297), + [sym_primitive_type] = ACTIONS(1297), + [anon_sym_enum] = ACTIONS(1297), + [anon_sym_struct] = ACTIONS(1297), + [anon_sym_union] = ACTIONS(1297), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1297), + [anon_sym_ATend] = ACTIONS(1295), + [sym_optional] = ACTIONS(1295), + [sym_required] = ACTIONS(1295), + [anon_sym_ATproperty] = ACTIONS(1295), + [sym_method_attribute_specifier] = ACTIONS(1297), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1297), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1297), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1297), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1297), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1297), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1297), + [anon_sym_NS_AVAILABLE] = ACTIONS(1297), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1297), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1297), + [anon_sym_API_AVAILABLE] = ACTIONS(1297), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1297), + [anon_sym_API_DEPRECATED] = ACTIONS(1297), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1297), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1297), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1297), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1297), + [anon_sym___deprecated_msg] = ACTIONS(1297), + [anon_sym___deprecated_enum_msg] = ACTIONS(1297), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1297), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1297), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1297), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1297), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1297), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1297), + [anon_sym_ATsynthesize] = ACTIONS(1295), + [anon_sym_ATdynamic] = ACTIONS(1295), + [anon_sym_NS_ENUM] = ACTIONS(1297), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1297), + [anon_sym_NS_OPTIONS] = ACTIONS(1297), + [anon_sym_typeof] = ACTIONS(1297), + [anon_sym___typeof] = ACTIONS(1297), + [anon_sym___typeof__] = ACTIONS(1297), + [sym_id] = ACTIONS(1297), + [sym_instancetype] = ACTIONS(1297), + [sym_Class] = ACTIONS(1297), + [sym_SEL] = ACTIONS(1297), + [sym_IMP] = ACTIONS(1297), + [sym_BOOL] = ACTIONS(1297), + [sym_auto] = ACTIONS(1297), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2898] = { + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_def_token1] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym_in] = ACTIONS(1267), + [anon_sym_out] = ACTIONS(1267), + [anon_sym_inout] = ACTIONS(1267), + [anon_sym_bycopy] = ACTIONS(1267), + [anon_sym_byref] = ACTIONS(1267), + [anon_sym_oneway] = ACTIONS(1267), + [anon_sym__Nullable] = ACTIONS(1267), + [anon_sym__Nonnull] = ACTIONS(1267), + [anon_sym__Nullable_result] = ACTIONS(1267), + [anon_sym__Null_unspecified] = ACTIONS(1267), + [anon_sym___autoreleasing] = ACTIONS(1267), + [anon_sym___nullable] = ACTIONS(1267), + [anon_sym___nonnull] = ACTIONS(1267), + [anon_sym___strong] = ACTIONS(1267), + [anon_sym___weak] = ACTIONS(1267), + [anon_sym___bridge] = ACTIONS(1267), + [anon_sym___bridge_transfer] = ACTIONS(1267), + [anon_sym___bridge_retained] = ACTIONS(1267), + [anon_sym___unsafe_unretained] = ACTIONS(1267), + [anon_sym___block] = ACTIONS(1267), + [anon_sym___kindof] = ACTIONS(1267), + [anon_sym___unused] = ACTIONS(1267), + [anon_sym__Complex] = ACTIONS(1267), + [anon_sym___complex] = ACTIONS(1267), + [anon_sym_IBOutlet] = ACTIONS(1267), + [anon_sym_IBInspectable] = ACTIONS(1267), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1267), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1267), + [anon_sym_ATend] = ACTIONS(1265), + [sym_optional] = ACTIONS(1265), + [sym_required] = ACTIONS(1265), + [anon_sym_ATproperty] = ACTIONS(1265), + [sym_method_attribute_specifier] = ACTIONS(1267), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1267), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1267), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1267), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1267), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1267), + [anon_sym_NS_AVAILABLE] = ACTIONS(1267), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1267), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_API_AVAILABLE] = ACTIONS(1267), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_API_DEPRECATED] = ACTIONS(1267), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1267), + [anon_sym___deprecated_msg] = ACTIONS(1267), + [anon_sym___deprecated_enum_msg] = ACTIONS(1267), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1267), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1267), + [anon_sym_ATsynthesize] = ACTIONS(1265), + [anon_sym_ATdynamic] = ACTIONS(1265), + [anon_sym_NS_ENUM] = ACTIONS(1267), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1267), + [anon_sym_NS_OPTIONS] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1267), + [anon_sym___typeof] = ACTIONS(1267), + [anon_sym___typeof__] = ACTIONS(1267), + [sym_id] = ACTIONS(1267), + [sym_instancetype] = ACTIONS(1267), + [sym_Class] = ACTIONS(1267), + [sym_SEL] = ACTIONS(1267), + [sym_IMP] = ACTIONS(1267), + [sym_BOOL] = ACTIONS(1267), + [sym_auto] = ACTIONS(1267), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2899] = { + [sym_identifier] = ACTIONS(1267), + [aux_sym_preproc_def_token1] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_typedef] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym___attribute] = ACTIONS(1267), + [anon_sym___attribute__] = ACTIONS(1267), + [anon_sym___declspec] = ACTIONS(1267), + [anon_sym___cdecl] = ACTIONS(1267), + [anon_sym___clrcall] = ACTIONS(1267), + [anon_sym___stdcall] = ACTIONS(1267), + [anon_sym___fastcall] = ACTIONS(1267), + [anon_sym___thiscall] = ACTIONS(1267), + [anon_sym___vectorcall] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_auto] = ACTIONS(1267), + [anon_sym_register] = ACTIONS(1267), + [anon_sym_inline] = ACTIONS(1267), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_volatile] = ACTIONS(1267), + [anon_sym_restrict] = ACTIONS(1267), + [anon_sym__Atomic] = ACTIONS(1267), + [anon_sym_in] = ACTIONS(1267), + [anon_sym_out] = ACTIONS(1267), + [anon_sym_inout] = ACTIONS(1267), + [anon_sym_bycopy] = ACTIONS(1267), + [anon_sym_byref] = ACTIONS(1267), + [anon_sym_oneway] = ACTIONS(1267), + [anon_sym__Nullable] = ACTIONS(1267), + [anon_sym__Nonnull] = ACTIONS(1267), + [anon_sym__Nullable_result] = ACTIONS(1267), + [anon_sym__Null_unspecified] = ACTIONS(1267), + [anon_sym___autoreleasing] = ACTIONS(1267), + [anon_sym___nullable] = ACTIONS(1267), + [anon_sym___nonnull] = ACTIONS(1267), + [anon_sym___strong] = ACTIONS(1267), + [anon_sym___weak] = ACTIONS(1267), + [anon_sym___bridge] = ACTIONS(1267), + [anon_sym___bridge_transfer] = ACTIONS(1267), + [anon_sym___bridge_retained] = ACTIONS(1267), + [anon_sym___unsafe_unretained] = ACTIONS(1267), + [anon_sym___block] = ACTIONS(1267), + [anon_sym___kindof] = ACTIONS(1267), + [anon_sym___unused] = ACTIONS(1267), + [anon_sym__Complex] = ACTIONS(1267), + [anon_sym___complex] = ACTIONS(1267), + [anon_sym_IBOutlet] = ACTIONS(1267), + [anon_sym_IBInspectable] = ACTIONS(1267), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1267), + [anon_sym_signed] = ACTIONS(1267), + [anon_sym_unsigned] = ACTIONS(1267), + [anon_sym_long] = ACTIONS(1267), + [anon_sym_short] = ACTIONS(1267), + [sym_primitive_type] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1267), + [anon_sym_ATend] = ACTIONS(1265), + [sym_optional] = ACTIONS(1265), + [sym_required] = ACTIONS(1265), + [anon_sym_ATproperty] = ACTIONS(1265), + [sym_method_attribute_specifier] = ACTIONS(1267), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1267), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1267), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1267), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1267), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1267), + [anon_sym_NS_AVAILABLE] = ACTIONS(1267), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1267), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_API_AVAILABLE] = ACTIONS(1267), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_API_DEPRECATED] = ACTIONS(1267), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1267), + [anon_sym___deprecated_msg] = ACTIONS(1267), + [anon_sym___deprecated_enum_msg] = ACTIONS(1267), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1267), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1267), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1267), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1267), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1267), + [anon_sym_ATsynthesize] = ACTIONS(1265), + [anon_sym_ATdynamic] = ACTIONS(1265), + [anon_sym_NS_ENUM] = ACTIONS(1267), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1267), + [anon_sym_NS_OPTIONS] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1267), + [anon_sym___typeof] = ACTIONS(1267), + [anon_sym___typeof__] = ACTIONS(1267), + [sym_id] = ACTIONS(1267), + [sym_instancetype] = ACTIONS(1267), + [sym_Class] = ACTIONS(1267), + [sym_SEL] = ACTIONS(1267), + [sym_IMP] = ACTIONS(1267), + [sym_BOOL] = ACTIONS(1267), + [sym_auto] = ACTIONS(1267), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2900] = { + [sym_identifier] = ACTIONS(1263), + [aux_sym_preproc_def_token1] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_typedef] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym___attribute] = ACTIONS(1263), + [anon_sym___attribute__] = ACTIONS(1263), + [anon_sym___declspec] = ACTIONS(1263), + [anon_sym___cdecl] = ACTIONS(1263), + [anon_sym___clrcall] = ACTIONS(1263), + [anon_sym___stdcall] = ACTIONS(1263), + [anon_sym___fastcall] = ACTIONS(1263), + [anon_sym___thiscall] = ACTIONS(1263), + [anon_sym___vectorcall] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_auto] = ACTIONS(1263), + [anon_sym_register] = ACTIONS(1263), + [anon_sym_inline] = ACTIONS(1263), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_volatile] = ACTIONS(1263), + [anon_sym_restrict] = ACTIONS(1263), + [anon_sym__Atomic] = ACTIONS(1263), + [anon_sym_in] = ACTIONS(1263), + [anon_sym_out] = ACTIONS(1263), + [anon_sym_inout] = ACTIONS(1263), + [anon_sym_bycopy] = ACTIONS(1263), + [anon_sym_byref] = ACTIONS(1263), + [anon_sym_oneway] = ACTIONS(1263), + [anon_sym__Nullable] = ACTIONS(1263), + [anon_sym__Nonnull] = ACTIONS(1263), + [anon_sym__Nullable_result] = ACTIONS(1263), + [anon_sym__Null_unspecified] = ACTIONS(1263), + [anon_sym___autoreleasing] = ACTIONS(1263), + [anon_sym___nullable] = ACTIONS(1263), + [anon_sym___nonnull] = ACTIONS(1263), + [anon_sym___strong] = ACTIONS(1263), + [anon_sym___weak] = ACTIONS(1263), + [anon_sym___bridge] = ACTIONS(1263), + [anon_sym___bridge_transfer] = ACTIONS(1263), + [anon_sym___bridge_retained] = ACTIONS(1263), + [anon_sym___unsafe_unretained] = ACTIONS(1263), + [anon_sym___block] = ACTIONS(1263), + [anon_sym___kindof] = ACTIONS(1263), + [anon_sym___unused] = ACTIONS(1263), + [anon_sym__Complex] = ACTIONS(1263), + [anon_sym___complex] = ACTIONS(1263), + [anon_sym_IBOutlet] = ACTIONS(1263), + [anon_sym_IBInspectable] = ACTIONS(1263), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1263), + [anon_sym_signed] = ACTIONS(1263), + [anon_sym_unsigned] = ACTIONS(1263), + [anon_sym_long] = ACTIONS(1263), + [anon_sym_short] = ACTIONS(1263), + [sym_primitive_type] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1263), + [anon_sym_ATend] = ACTIONS(1261), + [sym_optional] = ACTIONS(1261), + [sym_required] = ACTIONS(1261), + [anon_sym_ATproperty] = ACTIONS(1261), + [sym_method_attribute_specifier] = ACTIONS(1263), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1263), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1263), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1263), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1263), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1263), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1263), + [anon_sym_NS_AVAILABLE] = ACTIONS(1263), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1263), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1263), + [anon_sym_API_AVAILABLE] = ACTIONS(1263), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1263), + [anon_sym_API_DEPRECATED] = ACTIONS(1263), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1263), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1263), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1263), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1263), + [anon_sym___deprecated_msg] = ACTIONS(1263), + [anon_sym___deprecated_enum_msg] = ACTIONS(1263), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1263), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1263), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1263), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1263), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1263), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1263), + [anon_sym_ATsynthesize] = ACTIONS(1261), + [anon_sym_ATdynamic] = ACTIONS(1261), + [anon_sym_NS_ENUM] = ACTIONS(1263), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1263), + [anon_sym_NS_OPTIONS] = ACTIONS(1263), + [anon_sym_typeof] = ACTIONS(1263), + [anon_sym___typeof] = ACTIONS(1263), + [anon_sym___typeof__] = ACTIONS(1263), + [sym_id] = ACTIONS(1263), + [sym_instancetype] = ACTIONS(1263), + [sym_Class] = ACTIONS(1263), + [sym_SEL] = ACTIONS(1263), + [sym_IMP] = ACTIONS(1263), + [sym_BOOL] = ACTIONS(1263), + [sym_auto] = ACTIONS(1263), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2901] = { + [sym_identifier] = ACTIONS(1259), + [aux_sym_preproc_def_token1] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_typedef] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym___attribute] = ACTIONS(1259), + [anon_sym___attribute__] = ACTIONS(1259), + [anon_sym___declspec] = ACTIONS(1259), + [anon_sym___cdecl] = ACTIONS(1259), + [anon_sym___clrcall] = ACTIONS(1259), + [anon_sym___stdcall] = ACTIONS(1259), + [anon_sym___fastcall] = ACTIONS(1259), + [anon_sym___thiscall] = ACTIONS(1259), + [anon_sym___vectorcall] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_auto] = ACTIONS(1259), + [anon_sym_register] = ACTIONS(1259), + [anon_sym_inline] = ACTIONS(1259), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_volatile] = ACTIONS(1259), + [anon_sym_restrict] = ACTIONS(1259), + [anon_sym__Atomic] = ACTIONS(1259), + [anon_sym_in] = ACTIONS(1259), + [anon_sym_out] = ACTIONS(1259), + [anon_sym_inout] = ACTIONS(1259), + [anon_sym_bycopy] = ACTIONS(1259), + [anon_sym_byref] = ACTIONS(1259), + [anon_sym_oneway] = ACTIONS(1259), + [anon_sym__Nullable] = ACTIONS(1259), + [anon_sym__Nonnull] = ACTIONS(1259), + [anon_sym__Nullable_result] = ACTIONS(1259), + [anon_sym__Null_unspecified] = ACTIONS(1259), + [anon_sym___autoreleasing] = ACTIONS(1259), + [anon_sym___nullable] = ACTIONS(1259), + [anon_sym___nonnull] = ACTIONS(1259), + [anon_sym___strong] = ACTIONS(1259), + [anon_sym___weak] = ACTIONS(1259), + [anon_sym___bridge] = ACTIONS(1259), + [anon_sym___bridge_transfer] = ACTIONS(1259), + [anon_sym___bridge_retained] = ACTIONS(1259), + [anon_sym___unsafe_unretained] = ACTIONS(1259), + [anon_sym___block] = ACTIONS(1259), + [anon_sym___kindof] = ACTIONS(1259), + [anon_sym___unused] = ACTIONS(1259), + [anon_sym__Complex] = ACTIONS(1259), + [anon_sym___complex] = ACTIONS(1259), + [anon_sym_IBOutlet] = ACTIONS(1259), + [anon_sym_IBInspectable] = ACTIONS(1259), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1259), + [anon_sym_signed] = ACTIONS(1259), + [anon_sym_unsigned] = ACTIONS(1259), + [anon_sym_long] = ACTIONS(1259), + [anon_sym_short] = ACTIONS(1259), + [sym_primitive_type] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1259), + [anon_sym_ATend] = ACTIONS(1257), + [sym_optional] = ACTIONS(1257), + [sym_required] = ACTIONS(1257), + [anon_sym_ATproperty] = ACTIONS(1257), + [sym_method_attribute_specifier] = ACTIONS(1259), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1259), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1259), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1259), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1259), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1259), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1259), + [anon_sym_NS_AVAILABLE] = ACTIONS(1259), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1259), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1259), + [anon_sym_API_AVAILABLE] = ACTIONS(1259), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1259), + [anon_sym_API_DEPRECATED] = ACTIONS(1259), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1259), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1259), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1259), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1259), + [anon_sym___deprecated_msg] = ACTIONS(1259), + [anon_sym___deprecated_enum_msg] = ACTIONS(1259), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1259), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1259), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1259), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1259), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1259), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1259), + [anon_sym_ATsynthesize] = ACTIONS(1257), + [anon_sym_ATdynamic] = ACTIONS(1257), + [anon_sym_NS_ENUM] = ACTIONS(1259), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1259), + [anon_sym_NS_OPTIONS] = ACTIONS(1259), + [anon_sym_typeof] = ACTIONS(1259), + [anon_sym___typeof] = ACTIONS(1259), + [anon_sym___typeof__] = ACTIONS(1259), + [sym_id] = ACTIONS(1259), + [sym_instancetype] = ACTIONS(1259), + [sym_Class] = ACTIONS(1259), + [sym_SEL] = ACTIONS(1259), + [sym_IMP] = ACTIONS(1259), + [sym_BOOL] = ACTIONS(1259), + [sym_auto] = ACTIONS(1259), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2902] = { + [sym_identifier] = ACTIONS(1254), + [aux_sym_preproc_def_token1] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_typedef] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1254), + [anon_sym___attribute] = ACTIONS(1254), + [anon_sym___attribute__] = ACTIONS(1254), + [anon_sym___declspec] = ACTIONS(1254), + [anon_sym___cdecl] = ACTIONS(1254), + [anon_sym___clrcall] = ACTIONS(1254), + [anon_sym___stdcall] = ACTIONS(1254), + [anon_sym___fastcall] = ACTIONS(1254), + [anon_sym___thiscall] = ACTIONS(1254), + [anon_sym___vectorcall] = ACTIONS(1254), + [anon_sym_static] = ACTIONS(1254), + [anon_sym_auto] = ACTIONS(1254), + [anon_sym_register] = ACTIONS(1254), + [anon_sym_inline] = ACTIONS(1254), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1254), + [anon_sym_const] = ACTIONS(1254), + [anon_sym_volatile] = ACTIONS(1254), + [anon_sym_restrict] = ACTIONS(1254), + [anon_sym__Atomic] = ACTIONS(1254), + [anon_sym_in] = ACTIONS(1254), + [anon_sym_out] = ACTIONS(1254), + [anon_sym_inout] = ACTIONS(1254), + [anon_sym_bycopy] = ACTIONS(1254), + [anon_sym_byref] = ACTIONS(1254), + [anon_sym_oneway] = ACTIONS(1254), + [anon_sym__Nullable] = ACTIONS(1254), + [anon_sym__Nonnull] = ACTIONS(1254), + [anon_sym__Nullable_result] = ACTIONS(1254), + [anon_sym__Null_unspecified] = ACTIONS(1254), + [anon_sym___autoreleasing] = ACTIONS(1254), + [anon_sym___nullable] = ACTIONS(1254), + [anon_sym___nonnull] = ACTIONS(1254), + [anon_sym___strong] = ACTIONS(1254), + [anon_sym___weak] = ACTIONS(1254), + [anon_sym___bridge] = ACTIONS(1254), + [anon_sym___bridge_transfer] = ACTIONS(1254), + [anon_sym___bridge_retained] = ACTIONS(1254), + [anon_sym___unsafe_unretained] = ACTIONS(1254), + [anon_sym___block] = ACTIONS(1254), + [anon_sym___kindof] = ACTIONS(1254), + [anon_sym___unused] = ACTIONS(1254), + [anon_sym__Complex] = ACTIONS(1254), + [anon_sym___complex] = ACTIONS(1254), + [anon_sym_IBOutlet] = ACTIONS(1254), + [anon_sym_IBInspectable] = ACTIONS(1254), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1254), + [anon_sym_unsigned] = ACTIONS(1254), + [anon_sym_long] = ACTIONS(1254), + [anon_sym_short] = ACTIONS(1254), + [sym_primitive_type] = ACTIONS(1254), + [anon_sym_enum] = ACTIONS(1254), + [anon_sym_struct] = ACTIONS(1254), + [anon_sym_union] = ACTIONS(1254), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1254), + [anon_sym_ATend] = ACTIONS(1251), + [sym_optional] = ACTIONS(1251), + [sym_required] = ACTIONS(1251), + [anon_sym_ATproperty] = ACTIONS(1251), + [sym_method_attribute_specifier] = ACTIONS(1254), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1254), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1254), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1254), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1254), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1254), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1254), + [anon_sym_NS_AVAILABLE] = ACTIONS(1254), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1254), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1254), + [anon_sym_API_AVAILABLE] = ACTIONS(1254), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1254), + [anon_sym_API_DEPRECATED] = ACTIONS(1254), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1254), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1254), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1254), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1254), + [anon_sym___deprecated_msg] = ACTIONS(1254), + [anon_sym___deprecated_enum_msg] = ACTIONS(1254), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1254), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1254), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1254), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1254), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1254), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1254), + [anon_sym_ATsynthesize] = ACTIONS(1251), + [anon_sym_ATdynamic] = ACTIONS(1251), + [anon_sym_NS_ENUM] = ACTIONS(1254), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1254), + [anon_sym_NS_OPTIONS] = ACTIONS(1254), + [anon_sym_typeof] = ACTIONS(1254), + [anon_sym___typeof] = ACTIONS(1254), + [anon_sym___typeof__] = ACTIONS(1254), + [sym_id] = ACTIONS(1254), + [sym_instancetype] = ACTIONS(1254), + [sym_Class] = ACTIONS(1254), + [sym_SEL] = ACTIONS(1254), + [sym_IMP] = ACTIONS(1254), + [sym_BOOL] = ACTIONS(1254), + [sym_auto] = ACTIONS(1254), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2903] = { + [sym_identifier] = ACTIONS(1249), + [aux_sym_preproc_def_token1] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_typedef] = ACTIONS(1249), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym___attribute] = ACTIONS(1249), + [anon_sym___attribute__] = ACTIONS(1249), + [anon_sym___declspec] = ACTIONS(1249), + [anon_sym___cdecl] = ACTIONS(1249), + [anon_sym___clrcall] = ACTIONS(1249), + [anon_sym___stdcall] = ACTIONS(1249), + [anon_sym___fastcall] = ACTIONS(1249), + [anon_sym___thiscall] = ACTIONS(1249), + [anon_sym___vectorcall] = ACTIONS(1249), + [anon_sym_static] = ACTIONS(1249), + [anon_sym_auto] = ACTIONS(1249), + [anon_sym_register] = ACTIONS(1249), + [anon_sym_inline] = ACTIONS(1249), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_volatile] = ACTIONS(1249), + [anon_sym_restrict] = ACTIONS(1249), + [anon_sym__Atomic] = ACTIONS(1249), + [anon_sym_in] = ACTIONS(1249), + [anon_sym_out] = ACTIONS(1249), + [anon_sym_inout] = ACTIONS(1249), + [anon_sym_bycopy] = ACTIONS(1249), + [anon_sym_byref] = ACTIONS(1249), + [anon_sym_oneway] = ACTIONS(1249), + [anon_sym__Nullable] = ACTIONS(1249), + [anon_sym__Nonnull] = ACTIONS(1249), + [anon_sym__Nullable_result] = ACTIONS(1249), + [anon_sym__Null_unspecified] = ACTIONS(1249), + [anon_sym___autoreleasing] = ACTIONS(1249), + [anon_sym___nullable] = ACTIONS(1249), + [anon_sym___nonnull] = ACTIONS(1249), + [anon_sym___strong] = ACTIONS(1249), + [anon_sym___weak] = ACTIONS(1249), + [anon_sym___bridge] = ACTIONS(1249), + [anon_sym___bridge_transfer] = ACTIONS(1249), + [anon_sym___bridge_retained] = ACTIONS(1249), + [anon_sym___unsafe_unretained] = ACTIONS(1249), + [anon_sym___block] = ACTIONS(1249), + [anon_sym___kindof] = ACTIONS(1249), + [anon_sym___unused] = ACTIONS(1249), + [anon_sym__Complex] = ACTIONS(1249), + [anon_sym___complex] = ACTIONS(1249), + [anon_sym_IBOutlet] = ACTIONS(1249), + [anon_sym_IBInspectable] = ACTIONS(1249), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1249), + [anon_sym_signed] = ACTIONS(1249), + [anon_sym_unsigned] = ACTIONS(1249), + [anon_sym_long] = ACTIONS(1249), + [anon_sym_short] = ACTIONS(1249), + [sym_primitive_type] = ACTIONS(1249), + [anon_sym_enum] = ACTIONS(1249), + [anon_sym_struct] = ACTIONS(1249), + [anon_sym_union] = ACTIONS(1249), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1249), + [anon_sym_ATend] = ACTIONS(1247), + [sym_optional] = ACTIONS(1247), + [sym_required] = ACTIONS(1247), + [anon_sym_ATproperty] = ACTIONS(1247), + [sym_method_attribute_specifier] = ACTIONS(1249), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1249), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1249), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1249), + [anon_sym_NS_AVAILABLE] = ACTIONS(1249), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1249), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1249), + [anon_sym_API_AVAILABLE] = ACTIONS(1249), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1249), + [anon_sym_API_DEPRECATED] = ACTIONS(1249), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1249), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1249), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1249), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1249), + [anon_sym___deprecated_msg] = ACTIONS(1249), + [anon_sym___deprecated_enum_msg] = ACTIONS(1249), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1249), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1249), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1249), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1249), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1249), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1249), + [anon_sym_ATsynthesize] = ACTIONS(1247), + [anon_sym_ATdynamic] = ACTIONS(1247), + [anon_sym_NS_ENUM] = ACTIONS(1249), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1249), + [anon_sym_NS_OPTIONS] = ACTIONS(1249), + [anon_sym_typeof] = ACTIONS(1249), + [anon_sym___typeof] = ACTIONS(1249), + [anon_sym___typeof__] = ACTIONS(1249), + [sym_id] = ACTIONS(1249), + [sym_instancetype] = ACTIONS(1249), + [sym_Class] = ACTIONS(1249), + [sym_SEL] = ACTIONS(1249), + [sym_IMP] = ACTIONS(1249), + [sym_BOOL] = ACTIONS(1249), + [sym_auto] = ACTIONS(1249), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2904] = { + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_def_token1] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_typedef] = ACTIONS(1563), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym___attribute] = ACTIONS(1563), + [anon_sym___attribute__] = ACTIONS(1563), + [anon_sym___declspec] = ACTIONS(1563), + [anon_sym___cdecl] = ACTIONS(1563), + [anon_sym___clrcall] = ACTIONS(1563), + [anon_sym___stdcall] = ACTIONS(1563), + [anon_sym___fastcall] = ACTIONS(1563), + [anon_sym___thiscall] = ACTIONS(1563), + [anon_sym___vectorcall] = ACTIONS(1563), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_auto] = ACTIONS(1563), + [anon_sym_register] = ACTIONS(1563), + [anon_sym_inline] = ACTIONS(1563), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_volatile] = ACTIONS(1563), + [anon_sym_restrict] = ACTIONS(1563), + [anon_sym__Atomic] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [anon_sym_out] = ACTIONS(1563), + [anon_sym_inout] = ACTIONS(1563), + [anon_sym_bycopy] = ACTIONS(1563), + [anon_sym_byref] = ACTIONS(1563), + [anon_sym_oneway] = ACTIONS(1563), + [anon_sym__Nullable] = ACTIONS(1563), + [anon_sym__Nonnull] = ACTIONS(1563), + [anon_sym__Nullable_result] = ACTIONS(1563), + [anon_sym__Null_unspecified] = ACTIONS(1563), + [anon_sym___autoreleasing] = ACTIONS(1563), + [anon_sym___nullable] = ACTIONS(1563), + [anon_sym___nonnull] = ACTIONS(1563), + [anon_sym___strong] = ACTIONS(1563), + [anon_sym___weak] = ACTIONS(1563), + [anon_sym___bridge] = ACTIONS(1563), + [anon_sym___bridge_transfer] = ACTIONS(1563), + [anon_sym___bridge_retained] = ACTIONS(1563), + [anon_sym___unsafe_unretained] = ACTIONS(1563), + [anon_sym___block] = ACTIONS(1563), + [anon_sym___kindof] = ACTIONS(1563), + [anon_sym___unused] = ACTIONS(1563), + [anon_sym__Complex] = ACTIONS(1563), + [anon_sym___complex] = ACTIONS(1563), + [anon_sym_IBOutlet] = ACTIONS(1563), + [anon_sym_IBInspectable] = ACTIONS(1563), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1563), + [anon_sym_signed] = ACTIONS(1563), + [anon_sym_unsigned] = ACTIONS(1563), + [anon_sym_long] = ACTIONS(1563), + [anon_sym_short] = ACTIONS(1563), + [sym_primitive_type] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1563), + [anon_sym_ATend] = ACTIONS(1561), + [sym_optional] = ACTIONS(1561), + [sym_required] = ACTIONS(1561), + [anon_sym_ATproperty] = ACTIONS(1561), + [sym_method_attribute_specifier] = ACTIONS(1563), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1563), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE] = ACTIONS(1563), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_API_AVAILABLE] = ACTIONS(1563), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_API_DEPRECATED] = ACTIONS(1563), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1563), + [anon_sym___deprecated_msg] = ACTIONS(1563), + [anon_sym___deprecated_enum_msg] = ACTIONS(1563), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1563), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1563), + [anon_sym_ATsynthesize] = ACTIONS(1561), + [anon_sym_ATdynamic] = ACTIONS(1561), + [anon_sym_NS_ENUM] = ACTIONS(1563), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1563), + [anon_sym_NS_OPTIONS] = ACTIONS(1563), + [anon_sym_typeof] = ACTIONS(1563), + [anon_sym___typeof] = ACTIONS(1563), + [anon_sym___typeof__] = ACTIONS(1563), + [sym_id] = ACTIONS(1563), + [sym_instancetype] = ACTIONS(1563), + [sym_Class] = ACTIONS(1563), + [sym_SEL] = ACTIONS(1563), + [sym_IMP] = ACTIONS(1563), + [sym_BOOL] = ACTIONS(1563), + [sym_auto] = ACTIONS(1563), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2905] = { + [sym_identifier] = ACTIONS(6908), + [aux_sym_preproc_def_token1] = ACTIONS(6910), + [anon_sym_DASH] = ACTIONS(6910), + [anon_sym_PLUS] = ACTIONS(6910), + [anon_sym_typedef] = ACTIONS(6908), + [anon_sym_extern] = ACTIONS(6908), + [anon_sym___attribute] = ACTIONS(6908), + [anon_sym___attribute__] = ACTIONS(6908), + [anon_sym___declspec] = ACTIONS(6908), + [anon_sym___cdecl] = ACTIONS(6908), + [anon_sym___clrcall] = ACTIONS(6908), + [anon_sym___stdcall] = ACTIONS(6908), + [anon_sym___fastcall] = ACTIONS(6908), + [anon_sym___thiscall] = ACTIONS(6908), + [anon_sym___vectorcall] = ACTIONS(6908), + [anon_sym_static] = ACTIONS(6908), + [anon_sym_auto] = ACTIONS(6908), + [anon_sym_register] = ACTIONS(6908), + [anon_sym_inline] = ACTIONS(6908), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6908), + [anon_sym_const] = ACTIONS(6908), + [anon_sym_volatile] = ACTIONS(6908), + [anon_sym_restrict] = ACTIONS(6908), + [anon_sym__Atomic] = ACTIONS(6908), + [anon_sym_in] = ACTIONS(6908), + [anon_sym_out] = ACTIONS(6908), + [anon_sym_inout] = ACTIONS(6908), + [anon_sym_bycopy] = ACTIONS(6908), + [anon_sym_byref] = ACTIONS(6908), + [anon_sym_oneway] = ACTIONS(6908), + [anon_sym__Nullable] = ACTIONS(6908), + [anon_sym__Nonnull] = ACTIONS(6908), + [anon_sym__Nullable_result] = ACTIONS(6908), + [anon_sym__Null_unspecified] = ACTIONS(6908), + [anon_sym___autoreleasing] = ACTIONS(6908), + [anon_sym___nullable] = ACTIONS(6908), + [anon_sym___nonnull] = ACTIONS(6908), + [anon_sym___strong] = ACTIONS(6908), + [anon_sym___weak] = ACTIONS(6908), + [anon_sym___bridge] = ACTIONS(6908), + [anon_sym___bridge_transfer] = ACTIONS(6908), + [anon_sym___bridge_retained] = ACTIONS(6908), + [anon_sym___unsafe_unretained] = ACTIONS(6908), + [anon_sym___block] = ACTIONS(6908), + [anon_sym___kindof] = ACTIONS(6908), + [anon_sym___unused] = ACTIONS(6908), + [anon_sym__Complex] = ACTIONS(6908), + [anon_sym___complex] = ACTIONS(6908), + [anon_sym_IBOutlet] = ACTIONS(6908), + [anon_sym_IBInspectable] = ACTIONS(6908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6908), + [anon_sym_signed] = ACTIONS(6908), + [anon_sym_unsigned] = ACTIONS(6908), + [anon_sym_long] = ACTIONS(6908), + [anon_sym_short] = ACTIONS(6908), + [sym_primitive_type] = ACTIONS(6908), + [anon_sym_enum] = ACTIONS(6908), + [anon_sym_struct] = ACTIONS(6908), + [anon_sym_union] = ACTIONS(6908), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6908), + [anon_sym_ATend] = ACTIONS(6910), + [sym_optional] = ACTIONS(6910), + [sym_required] = ACTIONS(6910), + [anon_sym_ATproperty] = ACTIONS(6910), + [sym_method_attribute_specifier] = ACTIONS(6908), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6908), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6908), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6908), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6908), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6908), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6908), + [anon_sym_NS_AVAILABLE] = ACTIONS(6908), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6908), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6908), + [anon_sym_API_AVAILABLE] = ACTIONS(6908), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6908), + [anon_sym_API_DEPRECATED] = ACTIONS(6908), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6908), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6908), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6908), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6908), + [anon_sym___deprecated_msg] = ACTIONS(6908), + [anon_sym___deprecated_enum_msg] = ACTIONS(6908), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6908), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6908), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6908), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6908), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6908), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6908), + [anon_sym_ATsynthesize] = ACTIONS(6910), + [anon_sym_ATdynamic] = ACTIONS(6910), + [anon_sym_NS_ENUM] = ACTIONS(6908), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(6908), + [anon_sym_NS_OPTIONS] = ACTIONS(6908), + [anon_sym_typeof] = ACTIONS(6908), + [anon_sym___typeof] = ACTIONS(6908), + [anon_sym___typeof__] = ACTIONS(6908), + [sym_id] = ACTIONS(6908), + [sym_instancetype] = ACTIONS(6908), + [sym_Class] = ACTIONS(6908), + [sym_SEL] = ACTIONS(6908), + [sym_IMP] = ACTIONS(6908), + [sym_BOOL] = ACTIONS(6908), + [sym_auto] = ACTIONS(6908), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2906] = { + [sym_type_qualifier] = STATE(3414), + [sym__expression] = STATE(4521), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_type_definition_repeat1] = STATE(3414), + [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(23), [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(6912), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(6984), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(6986), - [anon_sym_enum] = ACTIONS(6988), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6990), - [anon_sym_union] = ACTIONS(61), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(6914), + [anon_sym_const] = ACTIONS(6878), + [anon_sym_volatile] = ACTIONS(6878), + [anon_sym_restrict] = ACTIONS(6878), + [anon_sym__Atomic] = ACTIONS(6878), + [anon_sym_in] = ACTIONS(6878), + [anon_sym_out] = ACTIONS(6878), + [anon_sym_inout] = ACTIONS(6878), + [anon_sym_bycopy] = ACTIONS(6878), + [anon_sym_byref] = ACTIONS(6878), + [anon_sym_oneway] = ACTIONS(6878), + [anon_sym__Nullable] = ACTIONS(6878), + [anon_sym__Nonnull] = ACTIONS(6878), + [anon_sym__Nullable_result] = ACTIONS(6878), + [anon_sym__Null_unspecified] = ACTIONS(6878), + [anon_sym___autoreleasing] = ACTIONS(6878), + [anon_sym___nullable] = ACTIONS(6878), + [anon_sym___nonnull] = ACTIONS(6878), + [anon_sym___strong] = ACTIONS(6878), + [anon_sym___weak] = ACTIONS(6878), + [anon_sym___bridge] = ACTIONS(6878), + [anon_sym___bridge_transfer] = ACTIONS(6878), + [anon_sym___bridge_retained] = ACTIONS(6878), + [anon_sym___unsafe_unretained] = ACTIONS(6878), + [anon_sym___block] = ACTIONS(6878), + [anon_sym___kindof] = ACTIONS(6878), + [anon_sym___unused] = ACTIONS(6878), + [anon_sym__Complex] = ACTIONS(6878), + [anon_sym___complex] = ACTIONS(6878), + [anon_sym_IBOutlet] = ACTIONS(6878), + [anon_sym_IBInspectable] = ACTIONS(6878), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(6986), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(6986), - [sym_IMP] = ACTIONS(6986), - [sym_BOOL] = ACTIONS(6986), - [sym_auto] = ACTIONS(6986), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -491612,26 +479097,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3003] = { - [sym__declaration_specifiers] = STATE(4711), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), + [2907] = { + [sym_identifier] = ACTIONS(1245), + [aux_sym_preproc_def_token1] = ACTIONS(1243), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_typedef] = ACTIONS(1245), + [anon_sym_extern] = ACTIONS(1245), + [anon_sym___attribute] = ACTIONS(1245), + [anon_sym___attribute__] = ACTIONS(1245), + [anon_sym___declspec] = ACTIONS(1245), + [anon_sym___cdecl] = ACTIONS(1245), + [anon_sym___clrcall] = ACTIONS(1245), + [anon_sym___stdcall] = ACTIONS(1245), + [anon_sym___fastcall] = ACTIONS(1245), + [anon_sym___thiscall] = ACTIONS(1245), + [anon_sym___vectorcall] = ACTIONS(1245), + [anon_sym_static] = ACTIONS(1245), + [anon_sym_auto] = ACTIONS(1245), + [anon_sym_register] = ACTIONS(1245), + [anon_sym_inline] = ACTIONS(1245), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1245), + [anon_sym_const] = ACTIONS(1245), + [anon_sym_volatile] = ACTIONS(1245), + [anon_sym_restrict] = ACTIONS(1245), + [anon_sym__Atomic] = ACTIONS(1245), + [anon_sym_in] = ACTIONS(1245), + [anon_sym_out] = ACTIONS(1245), + [anon_sym_inout] = ACTIONS(1245), + [anon_sym_bycopy] = ACTIONS(1245), + [anon_sym_byref] = ACTIONS(1245), + [anon_sym_oneway] = ACTIONS(1245), + [anon_sym__Nullable] = ACTIONS(1245), + [anon_sym__Nonnull] = ACTIONS(1245), + [anon_sym__Nullable_result] = ACTIONS(1245), + [anon_sym__Null_unspecified] = ACTIONS(1245), + [anon_sym___autoreleasing] = ACTIONS(1245), + [anon_sym___nullable] = ACTIONS(1245), + [anon_sym___nonnull] = ACTIONS(1245), + [anon_sym___strong] = ACTIONS(1245), + [anon_sym___weak] = ACTIONS(1245), + [anon_sym___bridge] = ACTIONS(1245), + [anon_sym___bridge_transfer] = ACTIONS(1245), + [anon_sym___bridge_retained] = ACTIONS(1245), + [anon_sym___unsafe_unretained] = ACTIONS(1245), + [anon_sym___block] = ACTIONS(1245), + [anon_sym___kindof] = ACTIONS(1245), + [anon_sym___unused] = ACTIONS(1245), + [anon_sym__Complex] = ACTIONS(1245), + [anon_sym___complex] = ACTIONS(1245), + [anon_sym_IBOutlet] = ACTIONS(1245), + [anon_sym_IBInspectable] = ACTIONS(1245), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1245), + [anon_sym_signed] = ACTIONS(1245), + [anon_sym_unsigned] = ACTIONS(1245), + [anon_sym_long] = ACTIONS(1245), + [anon_sym_short] = ACTIONS(1245), + [sym_primitive_type] = ACTIONS(1245), + [anon_sym_enum] = ACTIONS(1245), + [anon_sym_struct] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1245), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1245), + [anon_sym_ATend] = ACTIONS(1243), + [sym_optional] = ACTIONS(1243), + [sym_required] = ACTIONS(1243), + [anon_sym_ATproperty] = ACTIONS(1243), + [sym_method_attribute_specifier] = ACTIONS(1245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1245), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1245), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1245), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1245), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1245), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1245), + [anon_sym_NS_AVAILABLE] = ACTIONS(1245), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1245), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1245), + [anon_sym_API_AVAILABLE] = ACTIONS(1245), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1245), + [anon_sym_API_DEPRECATED] = ACTIONS(1245), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1245), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1245), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1245), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1245), + [anon_sym___deprecated_msg] = ACTIONS(1245), + [anon_sym___deprecated_enum_msg] = ACTIONS(1245), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1245), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1245), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1245), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1245), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1245), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1245), + [anon_sym_ATsynthesize] = ACTIONS(1243), + [anon_sym_ATdynamic] = ACTIONS(1243), + [anon_sym_NS_ENUM] = ACTIONS(1245), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1245), + [anon_sym_NS_OPTIONS] = ACTIONS(1245), + [anon_sym_typeof] = ACTIONS(1245), + [anon_sym___typeof] = ACTIONS(1245), + [anon_sym___typeof__] = ACTIONS(1245), + [sym_id] = ACTIONS(1245), + [sym_instancetype] = ACTIONS(1245), + [sym_Class] = ACTIONS(1245), + [sym_SEL] = ACTIONS(1245), + [sym_IMP] = ACTIONS(1245), + [sym_BOOL] = ACTIONS(1245), + [sym_auto] = ACTIONS(1245), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2908] = { + [sym_identifier] = ACTIONS(1565), + [aux_sym_preproc_def_token1] = ACTIONS(1567), + [anon_sym_DASH] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_typedef] = ACTIONS(1565), + [anon_sym_extern] = ACTIONS(1565), + [anon_sym___attribute] = ACTIONS(1565), + [anon_sym___attribute__] = ACTIONS(1565), + [anon_sym___declspec] = ACTIONS(1565), + [anon_sym___cdecl] = ACTIONS(1565), + [anon_sym___clrcall] = ACTIONS(1565), + [anon_sym___stdcall] = ACTIONS(1565), + [anon_sym___fastcall] = ACTIONS(1565), + [anon_sym___thiscall] = ACTIONS(1565), + [anon_sym___vectorcall] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_auto] = ACTIONS(1565), + [anon_sym_register] = ACTIONS(1565), + [anon_sym_inline] = ACTIONS(1565), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_volatile] = ACTIONS(1565), + [anon_sym_restrict] = ACTIONS(1565), + [anon_sym__Atomic] = ACTIONS(1565), + [anon_sym_in] = ACTIONS(1565), + [anon_sym_out] = ACTIONS(1565), + [anon_sym_inout] = ACTIONS(1565), + [anon_sym_bycopy] = ACTIONS(1565), + [anon_sym_byref] = ACTIONS(1565), + [anon_sym_oneway] = ACTIONS(1565), + [anon_sym__Nullable] = ACTIONS(1565), + [anon_sym__Nonnull] = ACTIONS(1565), + [anon_sym__Nullable_result] = ACTIONS(1565), + [anon_sym__Null_unspecified] = ACTIONS(1565), + [anon_sym___autoreleasing] = ACTIONS(1565), + [anon_sym___nullable] = ACTIONS(1565), + [anon_sym___nonnull] = ACTIONS(1565), + [anon_sym___strong] = ACTIONS(1565), + [anon_sym___weak] = ACTIONS(1565), + [anon_sym___bridge] = ACTIONS(1565), + [anon_sym___bridge_transfer] = ACTIONS(1565), + [anon_sym___bridge_retained] = ACTIONS(1565), + [anon_sym___unsafe_unretained] = ACTIONS(1565), + [anon_sym___block] = ACTIONS(1565), + [anon_sym___kindof] = ACTIONS(1565), + [anon_sym___unused] = ACTIONS(1565), + [anon_sym__Complex] = ACTIONS(1565), + [anon_sym___complex] = ACTIONS(1565), + [anon_sym_IBOutlet] = ACTIONS(1565), + [anon_sym_IBInspectable] = ACTIONS(1565), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1565), + [anon_sym_signed] = ACTIONS(1565), + [anon_sym_unsigned] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [sym_primitive_type] = ACTIONS(1565), + [anon_sym_enum] = ACTIONS(1565), + [anon_sym_struct] = ACTIONS(1565), + [anon_sym_union] = ACTIONS(1565), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1565), + [anon_sym_ATend] = ACTIONS(1567), + [sym_optional] = ACTIONS(1567), + [sym_required] = ACTIONS(1567), + [anon_sym_ATproperty] = ACTIONS(1567), + [sym_method_attribute_specifier] = ACTIONS(1565), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1565), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1565), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1565), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1565), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1565), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1565), + [anon_sym_NS_AVAILABLE] = ACTIONS(1565), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1565), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1565), + [anon_sym_API_AVAILABLE] = ACTIONS(1565), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1565), + [anon_sym_API_DEPRECATED] = ACTIONS(1565), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1565), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1565), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1565), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1565), + [anon_sym___deprecated_msg] = ACTIONS(1565), + [anon_sym___deprecated_enum_msg] = ACTIONS(1565), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1565), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1565), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1565), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1565), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1565), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1565), + [anon_sym_ATsynthesize] = ACTIONS(1567), + [anon_sym_ATdynamic] = ACTIONS(1567), + [anon_sym_NS_ENUM] = ACTIONS(1565), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1565), + [anon_sym_NS_OPTIONS] = ACTIONS(1565), + [anon_sym_typeof] = ACTIONS(1565), + [anon_sym___typeof] = ACTIONS(1565), + [anon_sym___typeof__] = ACTIONS(1565), + [sym_id] = ACTIONS(1565), + [sym_instancetype] = ACTIONS(1565), + [sym_Class] = ACTIONS(1565), + [sym_SEL] = ACTIONS(1565), + [sym_IMP] = ACTIONS(1565), + [sym_BOOL] = ACTIONS(1565), + [sym_auto] = ACTIONS(1565), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2909] = { + [sym__declaration_specifiers] = STATE(4721), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), @@ -491678,35 +479390,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(829), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), @@ -491724,26 +479436,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3004] = { - [sym__declaration_specifiers] = STATE(4713), - [sym_attribute_specifier] = STATE(3031), - [sym_ms_declspec_modifier] = STATE(3031), - [sym_storage_class_specifier] = STATE(3031), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3377), - [sym_sized_type_specifier] = STATE(3377), - [sym_enum_specifier] = STATE(3377), - [sym_struct_specifier] = STATE(3377), - [sym_union_specifier] = STATE(3377), - [sym_macro_type_specifier] = STATE(3377), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3377), - [sym_atomic_specifier] = STATE(3377), - [sym_generic_type_specifier] = STATE(3377), - [aux_sym__declaration_specifiers_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), + [2910] = { + [sym_type_qualifier] = STATE(2884), + [sym__expression] = STATE(4534), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_type_definition_repeat1] = STATE(2884), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(6916), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_RBRACK] = ACTIONS(6918), + [anon_sym_const] = ACTIONS(6878), + [anon_sym_volatile] = ACTIONS(6878), + [anon_sym_restrict] = ACTIONS(6878), + [anon_sym__Atomic] = ACTIONS(6878), + [anon_sym_in] = ACTIONS(6878), + [anon_sym_out] = ACTIONS(6878), + [anon_sym_inout] = ACTIONS(6878), + [anon_sym_bycopy] = ACTIONS(6878), + [anon_sym_byref] = ACTIONS(6878), + [anon_sym_oneway] = ACTIONS(6878), + [anon_sym__Nullable] = ACTIONS(6878), + [anon_sym__Nonnull] = ACTIONS(6878), + [anon_sym__Nullable_result] = ACTIONS(6878), + [anon_sym__Null_unspecified] = ACTIONS(6878), + [anon_sym___autoreleasing] = ACTIONS(6878), + [anon_sym___nullable] = ACTIONS(6878), + [anon_sym___nonnull] = ACTIONS(6878), + [anon_sym___strong] = ACTIONS(6878), + [anon_sym___weak] = ACTIONS(6878), + [anon_sym___bridge] = ACTIONS(6878), + [anon_sym___bridge_transfer] = ACTIONS(6878), + [anon_sym___bridge_retained] = ACTIONS(6878), + [anon_sym___unsafe_unretained] = ACTIONS(6878), + [anon_sym___block] = ACTIONS(6878), + [anon_sym___kindof] = ACTIONS(6878), + [anon_sym___unused] = ACTIONS(6878), + [anon_sym__Complex] = ACTIONS(6878), + [anon_sym___complex] = ACTIONS(6878), + [anon_sym_IBOutlet] = ACTIONS(6878), + [anon_sym_IBInspectable] = ACTIONS(6878), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2911] = { + [sym_identifier] = ACTIONS(1201), + [aux_sym_preproc_def_token1] = ACTIONS(1199), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1201), + [anon_sym_extern] = ACTIONS(1201), + [anon_sym___attribute] = ACTIONS(1201), + [anon_sym___attribute__] = ACTIONS(1201), + [anon_sym___declspec] = ACTIONS(1201), + [anon_sym___cdecl] = ACTIONS(1201), + [anon_sym___clrcall] = ACTIONS(1201), + [anon_sym___stdcall] = ACTIONS(1201), + [anon_sym___fastcall] = ACTIONS(1201), + [anon_sym___thiscall] = ACTIONS(1201), + [anon_sym___vectorcall] = ACTIONS(1201), + [anon_sym_static] = ACTIONS(1201), + [anon_sym_auto] = ACTIONS(1201), + [anon_sym_register] = ACTIONS(1201), + [anon_sym_inline] = ACTIONS(1201), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1201), + [anon_sym_const] = ACTIONS(1201), + [anon_sym_volatile] = ACTIONS(1201), + [anon_sym_restrict] = ACTIONS(1201), + [anon_sym__Atomic] = ACTIONS(1201), + [anon_sym_in] = ACTIONS(1201), + [anon_sym_out] = ACTIONS(1201), + [anon_sym_inout] = ACTIONS(1201), + [anon_sym_bycopy] = ACTIONS(1201), + [anon_sym_byref] = ACTIONS(1201), + [anon_sym_oneway] = ACTIONS(1201), + [anon_sym__Nullable] = ACTIONS(1201), + [anon_sym__Nonnull] = ACTIONS(1201), + [anon_sym__Nullable_result] = ACTIONS(1201), + [anon_sym__Null_unspecified] = ACTIONS(1201), + [anon_sym___autoreleasing] = ACTIONS(1201), + [anon_sym___nullable] = ACTIONS(1201), + [anon_sym___nonnull] = ACTIONS(1201), + [anon_sym___strong] = ACTIONS(1201), + [anon_sym___weak] = ACTIONS(1201), + [anon_sym___bridge] = ACTIONS(1201), + [anon_sym___bridge_transfer] = ACTIONS(1201), + [anon_sym___bridge_retained] = ACTIONS(1201), + [anon_sym___unsafe_unretained] = ACTIONS(1201), + [anon_sym___block] = ACTIONS(1201), + [anon_sym___kindof] = ACTIONS(1201), + [anon_sym___unused] = ACTIONS(1201), + [anon_sym__Complex] = ACTIONS(1201), + [anon_sym___complex] = ACTIONS(1201), + [anon_sym_IBOutlet] = ACTIONS(1201), + [anon_sym_IBInspectable] = ACTIONS(1201), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1201), + [anon_sym_signed] = ACTIONS(1201), + [anon_sym_unsigned] = ACTIONS(1201), + [anon_sym_long] = ACTIONS(1201), + [anon_sym_short] = ACTIONS(1201), + [sym_primitive_type] = ACTIONS(1201), + [anon_sym_enum] = ACTIONS(1201), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_union] = ACTIONS(1201), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1201), + [anon_sym_ATend] = ACTIONS(1199), + [sym_optional] = ACTIONS(1199), + [sym_required] = ACTIONS(1199), + [anon_sym_ATproperty] = ACTIONS(1199), + [sym_method_attribute_specifier] = ACTIONS(1201), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1201), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1201), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1201), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1201), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1201), + [anon_sym_NS_AVAILABLE] = ACTIONS(1201), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1201), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_API_AVAILABLE] = ACTIONS(1201), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_API_DEPRECATED] = ACTIONS(1201), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1201), + [anon_sym___deprecated_msg] = ACTIONS(1201), + [anon_sym___deprecated_enum_msg] = ACTIONS(1201), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1201), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1201), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1201), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1201), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1201), + [anon_sym_ATsynthesize] = ACTIONS(1199), + [anon_sym_ATdynamic] = ACTIONS(1199), + [anon_sym_NS_ENUM] = ACTIONS(1201), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1201), + [anon_sym_NS_OPTIONS] = ACTIONS(1201), + [anon_sym_typeof] = ACTIONS(1201), + [anon_sym___typeof] = ACTIONS(1201), + [anon_sym___typeof__] = ACTIONS(1201), + [sym_id] = ACTIONS(1201), + [sym_instancetype] = ACTIONS(1201), + [sym_Class] = ACTIONS(1201), + [sym_SEL] = ACTIONS(1201), + [sym_IMP] = ACTIONS(1201), + [sym_BOOL] = ACTIONS(1201), + [sym_auto] = ACTIONS(1201), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2912] = { + [sym__declaration_specifiers] = STATE(4735), + [sym_attribute_specifier] = STATE(2947), + [sym_ms_declspec_modifier] = STATE(2947), + [sym_storage_class_specifier] = STATE(2947), + [sym_type_qualifier] = STATE(2947), + [sym__type_specifier] = STATE(3325), + [sym_sized_type_specifier] = STATE(3325), + [sym_enum_specifier] = STATE(3325), + [sym_struct_specifier] = STATE(3325), + [sym_union_specifier] = STATE(3325), + [sym_macro_type_specifier] = STATE(3325), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3325), + [sym_typeof_specifier] = STATE(3325), + [sym_atomic_specifier] = STATE(3325), + [sym_generic_type_specifier] = STATE(3325), + [aux_sym__declaration_specifiers_repeat1] = STATE(2947), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), @@ -491790,35 +479729,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(51), [sym_primitive_type] = ACTIONS(829), [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), [anon_sym_typeof] = ACTIONS(127), [anon_sym___typeof] = ACTIONS(127), [anon_sym___typeof__] = ACTIONS(127), @@ -491836,21 +479775,4420 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3005] = { + [2913] = { + [sym_identifier] = ACTIONS(1627), + [aux_sym_preproc_def_token1] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_typedef] = ACTIONS(1627), + [anon_sym_extern] = ACTIONS(1627), + [anon_sym___attribute] = ACTIONS(1627), + [anon_sym___attribute__] = ACTIONS(1627), + [anon_sym___declspec] = ACTIONS(1627), + [anon_sym___cdecl] = ACTIONS(1627), + [anon_sym___clrcall] = ACTIONS(1627), + [anon_sym___stdcall] = ACTIONS(1627), + [anon_sym___fastcall] = ACTIONS(1627), + [anon_sym___thiscall] = ACTIONS(1627), + [anon_sym___vectorcall] = ACTIONS(1627), + [anon_sym_static] = ACTIONS(1627), + [anon_sym_auto] = ACTIONS(1627), + [anon_sym_register] = ACTIONS(1627), + [anon_sym_inline] = ACTIONS(1627), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1627), + [anon_sym_const] = ACTIONS(1627), + [anon_sym_volatile] = ACTIONS(1627), + [anon_sym_restrict] = ACTIONS(1627), + [anon_sym__Atomic] = ACTIONS(1627), + [anon_sym_in] = ACTIONS(1627), + [anon_sym_out] = ACTIONS(1627), + [anon_sym_inout] = ACTIONS(1627), + [anon_sym_bycopy] = ACTIONS(1627), + [anon_sym_byref] = ACTIONS(1627), + [anon_sym_oneway] = ACTIONS(1627), + [anon_sym__Nullable] = ACTIONS(1627), + [anon_sym__Nonnull] = ACTIONS(1627), + [anon_sym__Nullable_result] = ACTIONS(1627), + [anon_sym__Null_unspecified] = ACTIONS(1627), + [anon_sym___autoreleasing] = ACTIONS(1627), + [anon_sym___nullable] = ACTIONS(1627), + [anon_sym___nonnull] = ACTIONS(1627), + [anon_sym___strong] = ACTIONS(1627), + [anon_sym___weak] = ACTIONS(1627), + [anon_sym___bridge] = ACTIONS(1627), + [anon_sym___bridge_transfer] = ACTIONS(1627), + [anon_sym___bridge_retained] = ACTIONS(1627), + [anon_sym___unsafe_unretained] = ACTIONS(1627), + [anon_sym___block] = ACTIONS(1627), + [anon_sym___kindof] = ACTIONS(1627), + [anon_sym___unused] = ACTIONS(1627), + [anon_sym__Complex] = ACTIONS(1627), + [anon_sym___complex] = ACTIONS(1627), + [anon_sym_IBOutlet] = ACTIONS(1627), + [anon_sym_IBInspectable] = ACTIONS(1627), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1627), + [anon_sym_signed] = ACTIONS(1627), + [anon_sym_unsigned] = ACTIONS(1627), + [anon_sym_long] = ACTIONS(1627), + [anon_sym_short] = ACTIONS(1627), + [sym_primitive_type] = ACTIONS(1627), + [anon_sym_enum] = ACTIONS(1627), + [anon_sym_struct] = ACTIONS(1627), + [anon_sym_union] = ACTIONS(1627), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1627), + [anon_sym_ATend] = ACTIONS(1625), + [sym_optional] = ACTIONS(1625), + [sym_required] = ACTIONS(1625), + [anon_sym_ATproperty] = ACTIONS(1625), + [sym_method_attribute_specifier] = ACTIONS(1627), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1627), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1627), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1627), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1627), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1627), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1627), + [anon_sym_NS_AVAILABLE] = ACTIONS(1627), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1627), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1627), + [anon_sym_API_AVAILABLE] = ACTIONS(1627), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1627), + [anon_sym_API_DEPRECATED] = ACTIONS(1627), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1627), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1627), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1627), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1627), + [anon_sym___deprecated_msg] = ACTIONS(1627), + [anon_sym___deprecated_enum_msg] = ACTIONS(1627), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1627), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1627), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1627), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1627), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1627), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1627), + [anon_sym_ATsynthesize] = ACTIONS(1625), + [anon_sym_ATdynamic] = ACTIONS(1625), + [anon_sym_NS_ENUM] = ACTIONS(1627), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1627), + [anon_sym_NS_OPTIONS] = ACTIONS(1627), + [anon_sym_typeof] = ACTIONS(1627), + [anon_sym___typeof] = ACTIONS(1627), + [anon_sym___typeof__] = ACTIONS(1627), + [sym_id] = ACTIONS(1627), + [sym_instancetype] = ACTIONS(1627), + [sym_Class] = ACTIONS(1627), + [sym_SEL] = ACTIONS(1627), + [sym_IMP] = ACTIONS(1627), + [sym_BOOL] = ACTIONS(1627), + [sym_auto] = ACTIONS(1627), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2914] = { + [sym_identifier] = ACTIONS(1623), + [aux_sym_preproc_def_token1] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_typedef] = ACTIONS(1623), + [anon_sym_extern] = ACTIONS(1623), + [anon_sym___attribute] = ACTIONS(1623), + [anon_sym___attribute__] = ACTIONS(1623), + [anon_sym___declspec] = ACTIONS(1623), + [anon_sym___cdecl] = ACTIONS(1623), + [anon_sym___clrcall] = ACTIONS(1623), + [anon_sym___stdcall] = ACTIONS(1623), + [anon_sym___fastcall] = ACTIONS(1623), + [anon_sym___thiscall] = ACTIONS(1623), + [anon_sym___vectorcall] = ACTIONS(1623), + [anon_sym_static] = ACTIONS(1623), + [anon_sym_auto] = ACTIONS(1623), + [anon_sym_register] = ACTIONS(1623), + [anon_sym_inline] = ACTIONS(1623), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1623), + [anon_sym_const] = ACTIONS(1623), + [anon_sym_volatile] = ACTIONS(1623), + [anon_sym_restrict] = ACTIONS(1623), + [anon_sym__Atomic] = ACTIONS(1623), + [anon_sym_in] = ACTIONS(1623), + [anon_sym_out] = ACTIONS(1623), + [anon_sym_inout] = ACTIONS(1623), + [anon_sym_bycopy] = ACTIONS(1623), + [anon_sym_byref] = ACTIONS(1623), + [anon_sym_oneway] = ACTIONS(1623), + [anon_sym__Nullable] = ACTIONS(1623), + [anon_sym__Nonnull] = ACTIONS(1623), + [anon_sym__Nullable_result] = ACTIONS(1623), + [anon_sym__Null_unspecified] = ACTIONS(1623), + [anon_sym___autoreleasing] = ACTIONS(1623), + [anon_sym___nullable] = ACTIONS(1623), + [anon_sym___nonnull] = ACTIONS(1623), + [anon_sym___strong] = ACTIONS(1623), + [anon_sym___weak] = ACTIONS(1623), + [anon_sym___bridge] = ACTIONS(1623), + [anon_sym___bridge_transfer] = ACTIONS(1623), + [anon_sym___bridge_retained] = ACTIONS(1623), + [anon_sym___unsafe_unretained] = ACTIONS(1623), + [anon_sym___block] = ACTIONS(1623), + [anon_sym___kindof] = ACTIONS(1623), + [anon_sym___unused] = ACTIONS(1623), + [anon_sym__Complex] = ACTIONS(1623), + [anon_sym___complex] = ACTIONS(1623), + [anon_sym_IBOutlet] = ACTIONS(1623), + [anon_sym_IBInspectable] = ACTIONS(1623), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1623), + [anon_sym_signed] = ACTIONS(1623), + [anon_sym_unsigned] = ACTIONS(1623), + [anon_sym_long] = ACTIONS(1623), + [anon_sym_short] = ACTIONS(1623), + [sym_primitive_type] = ACTIONS(1623), + [anon_sym_enum] = ACTIONS(1623), + [anon_sym_struct] = ACTIONS(1623), + [anon_sym_union] = ACTIONS(1623), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1623), + [anon_sym_ATend] = ACTIONS(1621), + [sym_optional] = ACTIONS(1621), + [sym_required] = ACTIONS(1621), + [anon_sym_ATproperty] = ACTIONS(1621), + [sym_method_attribute_specifier] = ACTIONS(1623), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1623), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1623), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1623), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1623), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1623), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1623), + [anon_sym_NS_AVAILABLE] = ACTIONS(1623), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1623), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1623), + [anon_sym_API_AVAILABLE] = ACTIONS(1623), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1623), + [anon_sym_API_DEPRECATED] = ACTIONS(1623), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1623), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1623), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1623), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1623), + [anon_sym___deprecated_msg] = ACTIONS(1623), + [anon_sym___deprecated_enum_msg] = ACTIONS(1623), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1623), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1623), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1623), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1623), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1623), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1623), + [anon_sym_ATsynthesize] = ACTIONS(1621), + [anon_sym_ATdynamic] = ACTIONS(1621), + [anon_sym_NS_ENUM] = ACTIONS(1623), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1623), + [anon_sym_NS_OPTIONS] = ACTIONS(1623), + [anon_sym_typeof] = ACTIONS(1623), + [anon_sym___typeof] = ACTIONS(1623), + [anon_sym___typeof__] = ACTIONS(1623), + [sym_id] = ACTIONS(1623), + [sym_instancetype] = ACTIONS(1623), + [sym_Class] = ACTIONS(1623), + [sym_SEL] = ACTIONS(1623), + [sym_IMP] = ACTIONS(1623), + [sym_BOOL] = ACTIONS(1623), + [sym_auto] = ACTIONS(1623), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2915] = { + [sym_identifier] = ACTIONS(1619), + [aux_sym_preproc_def_token1] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_typedef] = ACTIONS(1619), + [anon_sym_extern] = ACTIONS(1619), + [anon_sym___attribute] = ACTIONS(1619), + [anon_sym___attribute__] = ACTIONS(1619), + [anon_sym___declspec] = ACTIONS(1619), + [anon_sym___cdecl] = ACTIONS(1619), + [anon_sym___clrcall] = ACTIONS(1619), + [anon_sym___stdcall] = ACTIONS(1619), + [anon_sym___fastcall] = ACTIONS(1619), + [anon_sym___thiscall] = ACTIONS(1619), + [anon_sym___vectorcall] = ACTIONS(1619), + [anon_sym_static] = ACTIONS(1619), + [anon_sym_auto] = ACTIONS(1619), + [anon_sym_register] = ACTIONS(1619), + [anon_sym_inline] = ACTIONS(1619), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1619), + [anon_sym_const] = ACTIONS(1619), + [anon_sym_volatile] = ACTIONS(1619), + [anon_sym_restrict] = ACTIONS(1619), + [anon_sym__Atomic] = ACTIONS(1619), + [anon_sym_in] = ACTIONS(1619), + [anon_sym_out] = ACTIONS(1619), + [anon_sym_inout] = ACTIONS(1619), + [anon_sym_bycopy] = ACTIONS(1619), + [anon_sym_byref] = ACTIONS(1619), + [anon_sym_oneway] = ACTIONS(1619), + [anon_sym__Nullable] = ACTIONS(1619), + [anon_sym__Nonnull] = ACTIONS(1619), + [anon_sym__Nullable_result] = ACTIONS(1619), + [anon_sym__Null_unspecified] = ACTIONS(1619), + [anon_sym___autoreleasing] = ACTIONS(1619), + [anon_sym___nullable] = ACTIONS(1619), + [anon_sym___nonnull] = ACTIONS(1619), + [anon_sym___strong] = ACTIONS(1619), + [anon_sym___weak] = ACTIONS(1619), + [anon_sym___bridge] = ACTIONS(1619), + [anon_sym___bridge_transfer] = ACTIONS(1619), + [anon_sym___bridge_retained] = ACTIONS(1619), + [anon_sym___unsafe_unretained] = ACTIONS(1619), + [anon_sym___block] = ACTIONS(1619), + [anon_sym___kindof] = ACTIONS(1619), + [anon_sym___unused] = ACTIONS(1619), + [anon_sym__Complex] = ACTIONS(1619), + [anon_sym___complex] = ACTIONS(1619), + [anon_sym_IBOutlet] = ACTIONS(1619), + [anon_sym_IBInspectable] = ACTIONS(1619), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1619), + [anon_sym_signed] = ACTIONS(1619), + [anon_sym_unsigned] = ACTIONS(1619), + [anon_sym_long] = ACTIONS(1619), + [anon_sym_short] = ACTIONS(1619), + [sym_primitive_type] = ACTIONS(1619), + [anon_sym_enum] = ACTIONS(1619), + [anon_sym_struct] = ACTIONS(1619), + [anon_sym_union] = ACTIONS(1619), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1619), + [anon_sym_ATend] = ACTIONS(1617), + [sym_optional] = ACTIONS(1617), + [sym_required] = ACTIONS(1617), + [anon_sym_ATproperty] = ACTIONS(1617), + [sym_method_attribute_specifier] = ACTIONS(1619), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1619), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1619), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1619), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1619), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1619), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1619), + [anon_sym_NS_AVAILABLE] = ACTIONS(1619), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1619), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1619), + [anon_sym_API_AVAILABLE] = ACTIONS(1619), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1619), + [anon_sym_API_DEPRECATED] = ACTIONS(1619), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1619), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1619), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1619), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1619), + [anon_sym___deprecated_msg] = ACTIONS(1619), + [anon_sym___deprecated_enum_msg] = ACTIONS(1619), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1619), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1619), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1619), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1619), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1619), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1619), + [anon_sym_ATsynthesize] = ACTIONS(1617), + [anon_sym_ATdynamic] = ACTIONS(1617), + [anon_sym_NS_ENUM] = ACTIONS(1619), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1619), + [anon_sym_NS_OPTIONS] = ACTIONS(1619), + [anon_sym_typeof] = ACTIONS(1619), + [anon_sym___typeof] = ACTIONS(1619), + [anon_sym___typeof__] = ACTIONS(1619), + [sym_id] = ACTIONS(1619), + [sym_instancetype] = ACTIONS(1619), + [sym_Class] = ACTIONS(1619), + [sym_SEL] = ACTIONS(1619), + [sym_IMP] = ACTIONS(1619), + [sym_BOOL] = ACTIONS(1619), + [sym_auto] = ACTIONS(1619), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2916] = { + [sym_identifier] = ACTIONS(1615), + [aux_sym_preproc_def_token1] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_typedef] = ACTIONS(1615), + [anon_sym_extern] = ACTIONS(1615), + [anon_sym___attribute] = ACTIONS(1615), + [anon_sym___attribute__] = ACTIONS(1615), + [anon_sym___declspec] = ACTIONS(1615), + [anon_sym___cdecl] = ACTIONS(1615), + [anon_sym___clrcall] = ACTIONS(1615), + [anon_sym___stdcall] = ACTIONS(1615), + [anon_sym___fastcall] = ACTIONS(1615), + [anon_sym___thiscall] = ACTIONS(1615), + [anon_sym___vectorcall] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1615), + [anon_sym_auto] = ACTIONS(1615), + [anon_sym_register] = ACTIONS(1615), + [anon_sym_inline] = ACTIONS(1615), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1615), + [anon_sym_const] = ACTIONS(1615), + [anon_sym_volatile] = ACTIONS(1615), + [anon_sym_restrict] = ACTIONS(1615), + [anon_sym__Atomic] = ACTIONS(1615), + [anon_sym_in] = ACTIONS(1615), + [anon_sym_out] = ACTIONS(1615), + [anon_sym_inout] = ACTIONS(1615), + [anon_sym_bycopy] = ACTIONS(1615), + [anon_sym_byref] = ACTIONS(1615), + [anon_sym_oneway] = ACTIONS(1615), + [anon_sym__Nullable] = ACTIONS(1615), + [anon_sym__Nonnull] = ACTIONS(1615), + [anon_sym__Nullable_result] = ACTIONS(1615), + [anon_sym__Null_unspecified] = ACTIONS(1615), + [anon_sym___autoreleasing] = ACTIONS(1615), + [anon_sym___nullable] = ACTIONS(1615), + [anon_sym___nonnull] = ACTIONS(1615), + [anon_sym___strong] = ACTIONS(1615), + [anon_sym___weak] = ACTIONS(1615), + [anon_sym___bridge] = ACTIONS(1615), + [anon_sym___bridge_transfer] = ACTIONS(1615), + [anon_sym___bridge_retained] = ACTIONS(1615), + [anon_sym___unsafe_unretained] = ACTIONS(1615), + [anon_sym___block] = ACTIONS(1615), + [anon_sym___kindof] = ACTIONS(1615), + [anon_sym___unused] = ACTIONS(1615), + [anon_sym__Complex] = ACTIONS(1615), + [anon_sym___complex] = ACTIONS(1615), + [anon_sym_IBOutlet] = ACTIONS(1615), + [anon_sym_IBInspectable] = ACTIONS(1615), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1615), + [anon_sym_signed] = ACTIONS(1615), + [anon_sym_unsigned] = ACTIONS(1615), + [anon_sym_long] = ACTIONS(1615), + [anon_sym_short] = ACTIONS(1615), + [sym_primitive_type] = ACTIONS(1615), + [anon_sym_enum] = ACTIONS(1615), + [anon_sym_struct] = ACTIONS(1615), + [anon_sym_union] = ACTIONS(1615), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1615), + [anon_sym_ATend] = ACTIONS(1613), + [sym_optional] = ACTIONS(1613), + [sym_required] = ACTIONS(1613), + [anon_sym_ATproperty] = ACTIONS(1613), + [sym_method_attribute_specifier] = ACTIONS(1615), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1615), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1615), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1615), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1615), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1615), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1615), + [anon_sym_NS_AVAILABLE] = ACTIONS(1615), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1615), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1615), + [anon_sym_API_AVAILABLE] = ACTIONS(1615), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1615), + [anon_sym_API_DEPRECATED] = ACTIONS(1615), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1615), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1615), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1615), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1615), + [anon_sym___deprecated_msg] = ACTIONS(1615), + [anon_sym___deprecated_enum_msg] = ACTIONS(1615), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1615), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1615), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1615), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1615), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1615), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1615), + [anon_sym_ATsynthesize] = ACTIONS(1613), + [anon_sym_ATdynamic] = ACTIONS(1613), + [anon_sym_NS_ENUM] = ACTIONS(1615), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1615), + [anon_sym_NS_OPTIONS] = ACTIONS(1615), + [anon_sym_typeof] = ACTIONS(1615), + [anon_sym___typeof] = ACTIONS(1615), + [anon_sym___typeof__] = ACTIONS(1615), + [sym_id] = ACTIONS(1615), + [sym_instancetype] = ACTIONS(1615), + [sym_Class] = ACTIONS(1615), + [sym_SEL] = ACTIONS(1615), + [sym_IMP] = ACTIONS(1615), + [sym_BOOL] = ACTIONS(1615), + [sym_auto] = ACTIONS(1615), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2917] = { + [sym_identifier] = ACTIONS(1611), + [aux_sym_preproc_def_token1] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_typedef] = ACTIONS(1611), + [anon_sym_extern] = ACTIONS(1611), + [anon_sym___attribute] = ACTIONS(1611), + [anon_sym___attribute__] = ACTIONS(1611), + [anon_sym___declspec] = ACTIONS(1611), + [anon_sym___cdecl] = ACTIONS(1611), + [anon_sym___clrcall] = ACTIONS(1611), + [anon_sym___stdcall] = ACTIONS(1611), + [anon_sym___fastcall] = ACTIONS(1611), + [anon_sym___thiscall] = ACTIONS(1611), + [anon_sym___vectorcall] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(1611), + [anon_sym_auto] = ACTIONS(1611), + [anon_sym_register] = ACTIONS(1611), + [anon_sym_inline] = ACTIONS(1611), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1611), + [anon_sym_const] = ACTIONS(1611), + [anon_sym_volatile] = ACTIONS(1611), + [anon_sym_restrict] = ACTIONS(1611), + [anon_sym__Atomic] = ACTIONS(1611), + [anon_sym_in] = ACTIONS(1611), + [anon_sym_out] = ACTIONS(1611), + [anon_sym_inout] = ACTIONS(1611), + [anon_sym_bycopy] = ACTIONS(1611), + [anon_sym_byref] = ACTIONS(1611), + [anon_sym_oneway] = ACTIONS(1611), + [anon_sym__Nullable] = ACTIONS(1611), + [anon_sym__Nonnull] = ACTIONS(1611), + [anon_sym__Nullable_result] = ACTIONS(1611), + [anon_sym__Null_unspecified] = ACTIONS(1611), + [anon_sym___autoreleasing] = ACTIONS(1611), + [anon_sym___nullable] = ACTIONS(1611), + [anon_sym___nonnull] = ACTIONS(1611), + [anon_sym___strong] = ACTIONS(1611), + [anon_sym___weak] = ACTIONS(1611), + [anon_sym___bridge] = ACTIONS(1611), + [anon_sym___bridge_transfer] = ACTIONS(1611), + [anon_sym___bridge_retained] = ACTIONS(1611), + [anon_sym___unsafe_unretained] = ACTIONS(1611), + [anon_sym___block] = ACTIONS(1611), + [anon_sym___kindof] = ACTIONS(1611), + [anon_sym___unused] = ACTIONS(1611), + [anon_sym__Complex] = ACTIONS(1611), + [anon_sym___complex] = ACTIONS(1611), + [anon_sym_IBOutlet] = ACTIONS(1611), + [anon_sym_IBInspectable] = ACTIONS(1611), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1611), + [anon_sym_signed] = ACTIONS(1611), + [anon_sym_unsigned] = ACTIONS(1611), + [anon_sym_long] = ACTIONS(1611), + [anon_sym_short] = ACTIONS(1611), + [sym_primitive_type] = ACTIONS(1611), + [anon_sym_enum] = ACTIONS(1611), + [anon_sym_struct] = ACTIONS(1611), + [anon_sym_union] = ACTIONS(1611), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1611), + [anon_sym_ATend] = ACTIONS(1609), + [sym_optional] = ACTIONS(1609), + [sym_required] = ACTIONS(1609), + [anon_sym_ATproperty] = ACTIONS(1609), + [sym_method_attribute_specifier] = ACTIONS(1611), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1611), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1611), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1611), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1611), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1611), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1611), + [anon_sym_NS_AVAILABLE] = ACTIONS(1611), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1611), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1611), + [anon_sym_API_AVAILABLE] = ACTIONS(1611), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1611), + [anon_sym_API_DEPRECATED] = ACTIONS(1611), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1611), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1611), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1611), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1611), + [anon_sym___deprecated_msg] = ACTIONS(1611), + [anon_sym___deprecated_enum_msg] = ACTIONS(1611), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1611), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1611), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1611), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1611), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1611), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1611), + [anon_sym_ATsynthesize] = ACTIONS(1609), + [anon_sym_ATdynamic] = ACTIONS(1609), + [anon_sym_NS_ENUM] = ACTIONS(1611), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1611), + [anon_sym_NS_OPTIONS] = ACTIONS(1611), + [anon_sym_typeof] = ACTIONS(1611), + [anon_sym___typeof] = ACTIONS(1611), + [anon_sym___typeof__] = ACTIONS(1611), + [sym_id] = ACTIONS(1611), + [sym_instancetype] = ACTIONS(1611), + [sym_Class] = ACTIONS(1611), + [sym_SEL] = ACTIONS(1611), + [sym_IMP] = ACTIONS(1611), + [sym_BOOL] = ACTIONS(1611), + [sym_auto] = ACTIONS(1611), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2918] = { + [sym_identifier] = ACTIONS(1365), + [aux_sym_preproc_def_token1] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_typedef] = ACTIONS(1365), + [anon_sym_extern] = ACTIONS(1365), + [anon_sym___attribute] = ACTIONS(1365), + [anon_sym___attribute__] = ACTIONS(1365), + [anon_sym___declspec] = ACTIONS(1365), + [anon_sym___cdecl] = ACTIONS(1365), + [anon_sym___clrcall] = ACTIONS(1365), + [anon_sym___stdcall] = ACTIONS(1365), + [anon_sym___fastcall] = ACTIONS(1365), + [anon_sym___thiscall] = ACTIONS(1365), + [anon_sym___vectorcall] = ACTIONS(1365), + [anon_sym_static] = ACTIONS(1365), + [anon_sym_auto] = ACTIONS(1365), + [anon_sym_register] = ACTIONS(1365), + [anon_sym_inline] = ACTIONS(1365), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1365), + [anon_sym_volatile] = ACTIONS(1365), + [anon_sym_restrict] = ACTIONS(1365), + [anon_sym__Atomic] = ACTIONS(1365), + [anon_sym_in] = ACTIONS(1365), + [anon_sym_out] = ACTIONS(1365), + [anon_sym_inout] = ACTIONS(1365), + [anon_sym_bycopy] = ACTIONS(1365), + [anon_sym_byref] = ACTIONS(1365), + [anon_sym_oneway] = ACTIONS(1365), + [anon_sym__Nullable] = ACTIONS(1365), + [anon_sym__Nonnull] = ACTIONS(1365), + [anon_sym__Nullable_result] = ACTIONS(1365), + [anon_sym__Null_unspecified] = ACTIONS(1365), + [anon_sym___autoreleasing] = ACTIONS(1365), + [anon_sym___nullable] = ACTIONS(1365), + [anon_sym___nonnull] = ACTIONS(1365), + [anon_sym___strong] = ACTIONS(1365), + [anon_sym___weak] = ACTIONS(1365), + [anon_sym___bridge] = ACTIONS(1365), + [anon_sym___bridge_transfer] = ACTIONS(1365), + [anon_sym___bridge_retained] = ACTIONS(1365), + [anon_sym___unsafe_unretained] = ACTIONS(1365), + [anon_sym___block] = ACTIONS(1365), + [anon_sym___kindof] = ACTIONS(1365), + [anon_sym___unused] = ACTIONS(1365), + [anon_sym__Complex] = ACTIONS(1365), + [anon_sym___complex] = ACTIONS(1365), + [anon_sym_IBOutlet] = ACTIONS(1365), + [anon_sym_IBInspectable] = ACTIONS(1365), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1365), + [anon_sym_signed] = ACTIONS(1365), + [anon_sym_unsigned] = ACTIONS(1365), + [anon_sym_long] = ACTIONS(1365), + [anon_sym_short] = ACTIONS(1365), + [sym_primitive_type] = ACTIONS(1365), + [anon_sym_enum] = ACTIONS(1365), + [anon_sym_struct] = ACTIONS(1365), + [anon_sym_union] = ACTIONS(1365), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1365), + [anon_sym_ATend] = ACTIONS(1363), + [sym_optional] = ACTIONS(1363), + [sym_required] = ACTIONS(1363), + [anon_sym_ATproperty] = ACTIONS(1363), + [sym_method_attribute_specifier] = ACTIONS(1365), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1365), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1365), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1365), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1365), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1365), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1365), + [anon_sym_NS_AVAILABLE] = ACTIONS(1365), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1365), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1365), + [anon_sym_API_AVAILABLE] = ACTIONS(1365), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1365), + [anon_sym_API_DEPRECATED] = ACTIONS(1365), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1365), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1365), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1365), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1365), + [anon_sym___deprecated_msg] = ACTIONS(1365), + [anon_sym___deprecated_enum_msg] = ACTIONS(1365), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1365), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1365), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1365), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1365), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1365), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1365), + [anon_sym_ATsynthesize] = ACTIONS(1363), + [anon_sym_ATdynamic] = ACTIONS(1363), + [anon_sym_NS_ENUM] = ACTIONS(1365), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1365), + [anon_sym_NS_OPTIONS] = ACTIONS(1365), + [anon_sym_typeof] = ACTIONS(1365), + [anon_sym___typeof] = ACTIONS(1365), + [anon_sym___typeof__] = ACTIONS(1365), + [sym_id] = ACTIONS(1365), + [sym_instancetype] = ACTIONS(1365), + [sym_Class] = ACTIONS(1365), + [sym_SEL] = ACTIONS(1365), + [sym_IMP] = ACTIONS(1365), + [sym_BOOL] = ACTIONS(1365), + [sym_auto] = ACTIONS(1365), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2919] = { + [sym_identifier] = ACTIONS(1369), + [aux_sym_preproc_def_token1] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_typedef] = ACTIONS(1369), + [anon_sym_extern] = ACTIONS(1369), + [anon_sym___attribute] = ACTIONS(1369), + [anon_sym___attribute__] = ACTIONS(1369), + [anon_sym___declspec] = ACTIONS(1369), + [anon_sym___cdecl] = ACTIONS(1369), + [anon_sym___clrcall] = ACTIONS(1369), + [anon_sym___stdcall] = ACTIONS(1369), + [anon_sym___fastcall] = ACTIONS(1369), + [anon_sym___thiscall] = ACTIONS(1369), + [anon_sym___vectorcall] = ACTIONS(1369), + [anon_sym_static] = ACTIONS(1369), + [anon_sym_auto] = ACTIONS(1369), + [anon_sym_register] = ACTIONS(1369), + [anon_sym_inline] = ACTIONS(1369), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1369), + [anon_sym_const] = ACTIONS(1369), + [anon_sym_volatile] = ACTIONS(1369), + [anon_sym_restrict] = ACTIONS(1369), + [anon_sym__Atomic] = ACTIONS(1369), + [anon_sym_in] = ACTIONS(1369), + [anon_sym_out] = ACTIONS(1369), + [anon_sym_inout] = ACTIONS(1369), + [anon_sym_bycopy] = ACTIONS(1369), + [anon_sym_byref] = ACTIONS(1369), + [anon_sym_oneway] = ACTIONS(1369), + [anon_sym__Nullable] = ACTIONS(1369), + [anon_sym__Nonnull] = ACTIONS(1369), + [anon_sym__Nullable_result] = ACTIONS(1369), + [anon_sym__Null_unspecified] = ACTIONS(1369), + [anon_sym___autoreleasing] = ACTIONS(1369), + [anon_sym___nullable] = ACTIONS(1369), + [anon_sym___nonnull] = ACTIONS(1369), + [anon_sym___strong] = ACTIONS(1369), + [anon_sym___weak] = ACTIONS(1369), + [anon_sym___bridge] = ACTIONS(1369), + [anon_sym___bridge_transfer] = ACTIONS(1369), + [anon_sym___bridge_retained] = ACTIONS(1369), + [anon_sym___unsafe_unretained] = ACTIONS(1369), + [anon_sym___block] = ACTIONS(1369), + [anon_sym___kindof] = ACTIONS(1369), + [anon_sym___unused] = ACTIONS(1369), + [anon_sym__Complex] = ACTIONS(1369), + [anon_sym___complex] = ACTIONS(1369), + [anon_sym_IBOutlet] = ACTIONS(1369), + [anon_sym_IBInspectable] = ACTIONS(1369), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1369), + [anon_sym_signed] = ACTIONS(1369), + [anon_sym_unsigned] = ACTIONS(1369), + [anon_sym_long] = ACTIONS(1369), + [anon_sym_short] = ACTIONS(1369), + [sym_primitive_type] = ACTIONS(1369), + [anon_sym_enum] = ACTIONS(1369), + [anon_sym_struct] = ACTIONS(1369), + [anon_sym_union] = ACTIONS(1369), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1369), + [anon_sym_ATend] = ACTIONS(1367), + [sym_optional] = ACTIONS(1367), + [sym_required] = ACTIONS(1367), + [anon_sym_ATproperty] = ACTIONS(1367), + [sym_method_attribute_specifier] = ACTIONS(1369), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1369), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1369), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1369), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1369), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1369), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1369), + [anon_sym_NS_AVAILABLE] = ACTIONS(1369), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1369), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1369), + [anon_sym_API_AVAILABLE] = ACTIONS(1369), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1369), + [anon_sym_API_DEPRECATED] = ACTIONS(1369), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1369), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1369), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1369), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1369), + [anon_sym___deprecated_msg] = ACTIONS(1369), + [anon_sym___deprecated_enum_msg] = ACTIONS(1369), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1369), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1369), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1369), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1369), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1369), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1369), + [anon_sym_ATsynthesize] = ACTIONS(1367), + [anon_sym_ATdynamic] = ACTIONS(1367), + [anon_sym_NS_ENUM] = ACTIONS(1369), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1369), + [anon_sym_NS_OPTIONS] = ACTIONS(1369), + [anon_sym_typeof] = ACTIONS(1369), + [anon_sym___typeof] = ACTIONS(1369), + [anon_sym___typeof__] = ACTIONS(1369), + [sym_id] = ACTIONS(1369), + [sym_instancetype] = ACTIONS(1369), + [sym_Class] = ACTIONS(1369), + [sym_SEL] = ACTIONS(1369), + [sym_IMP] = ACTIONS(1369), + [sym_BOOL] = ACTIONS(1369), + [sym_auto] = ACTIONS(1369), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2920] = { + [sym__type_specifier] = STATE(4777), + [sym_sized_type_specifier] = STATE(4777), + [sym_enum_specifier] = STATE(4777), + [sym_struct_specifier] = STATE(4777), + [sym_union_specifier] = STATE(4777), + [sym__expression] = STATE(4451), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(4777), + [sym_ns_enum_specifier] = STATE(4777), + [sym_typeof_specifier] = STATE(4777), + [sym_atomic_specifier] = STATE(4777), + [sym_generic_type_specifier] = STATE(4777), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym__receiver] = STATE(4777), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(6920), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(6922), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(6924), + [anon_sym_enum] = ACTIONS(6926), + [anon_sym_struct] = ACTIONS(6928), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(6924), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(6924), + [sym_IMP] = ACTIONS(6924), + [sym_BOOL] = ACTIONS(6924), + [sym_auto] = ACTIONS(6924), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2921] = { + [sym_identifier] = ACTIONS(1607), + [aux_sym_preproc_def_token1] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_extern] = ACTIONS(1607), + [anon_sym___attribute] = ACTIONS(1607), + [anon_sym___attribute__] = ACTIONS(1607), + [anon_sym___declspec] = ACTIONS(1607), + [anon_sym___cdecl] = ACTIONS(1607), + [anon_sym___clrcall] = ACTIONS(1607), + [anon_sym___stdcall] = ACTIONS(1607), + [anon_sym___fastcall] = ACTIONS(1607), + [anon_sym___thiscall] = ACTIONS(1607), + [anon_sym___vectorcall] = ACTIONS(1607), + [anon_sym_static] = ACTIONS(1607), + [anon_sym_auto] = ACTIONS(1607), + [anon_sym_register] = ACTIONS(1607), + [anon_sym_inline] = ACTIONS(1607), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1607), + [anon_sym_volatile] = ACTIONS(1607), + [anon_sym_restrict] = ACTIONS(1607), + [anon_sym__Atomic] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_out] = ACTIONS(1607), + [anon_sym_inout] = ACTIONS(1607), + [anon_sym_bycopy] = ACTIONS(1607), + [anon_sym_byref] = ACTIONS(1607), + [anon_sym_oneway] = ACTIONS(1607), + [anon_sym__Nullable] = ACTIONS(1607), + [anon_sym__Nonnull] = ACTIONS(1607), + [anon_sym__Nullable_result] = ACTIONS(1607), + [anon_sym__Null_unspecified] = ACTIONS(1607), + [anon_sym___autoreleasing] = ACTIONS(1607), + [anon_sym___nullable] = ACTIONS(1607), + [anon_sym___nonnull] = ACTIONS(1607), + [anon_sym___strong] = ACTIONS(1607), + [anon_sym___weak] = ACTIONS(1607), + [anon_sym___bridge] = ACTIONS(1607), + [anon_sym___bridge_transfer] = ACTIONS(1607), + [anon_sym___bridge_retained] = ACTIONS(1607), + [anon_sym___unsafe_unretained] = ACTIONS(1607), + [anon_sym___block] = ACTIONS(1607), + [anon_sym___kindof] = ACTIONS(1607), + [anon_sym___unused] = ACTIONS(1607), + [anon_sym__Complex] = ACTIONS(1607), + [anon_sym___complex] = ACTIONS(1607), + [anon_sym_IBOutlet] = ACTIONS(1607), + [anon_sym_IBInspectable] = ACTIONS(1607), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1607), + [anon_sym_signed] = ACTIONS(1607), + [anon_sym_unsigned] = ACTIONS(1607), + [anon_sym_long] = ACTIONS(1607), + [anon_sym_short] = ACTIONS(1607), + [sym_primitive_type] = ACTIONS(1607), + [anon_sym_enum] = ACTIONS(1607), + [anon_sym_struct] = ACTIONS(1607), + [anon_sym_union] = ACTIONS(1607), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1607), + [anon_sym_ATend] = ACTIONS(1605), + [sym_optional] = ACTIONS(1605), + [sym_required] = ACTIONS(1605), + [anon_sym_ATproperty] = ACTIONS(1605), + [sym_method_attribute_specifier] = ACTIONS(1607), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1607), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1607), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1607), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1607), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1607), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1607), + [anon_sym_NS_AVAILABLE] = ACTIONS(1607), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1607), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1607), + [anon_sym_API_AVAILABLE] = ACTIONS(1607), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1607), + [anon_sym_API_DEPRECATED] = ACTIONS(1607), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1607), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1607), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1607), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1607), + [anon_sym___deprecated_msg] = ACTIONS(1607), + [anon_sym___deprecated_enum_msg] = ACTIONS(1607), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1607), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1607), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1607), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1607), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1607), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1607), + [anon_sym_ATsynthesize] = ACTIONS(1605), + [anon_sym_ATdynamic] = ACTIONS(1605), + [anon_sym_NS_ENUM] = ACTIONS(1607), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1607), + [anon_sym_NS_OPTIONS] = ACTIONS(1607), + [anon_sym_typeof] = ACTIONS(1607), + [anon_sym___typeof] = ACTIONS(1607), + [anon_sym___typeof__] = ACTIONS(1607), + [sym_id] = ACTIONS(1607), + [sym_instancetype] = ACTIONS(1607), + [sym_Class] = ACTIONS(1607), + [sym_SEL] = ACTIONS(1607), + [sym_IMP] = ACTIONS(1607), + [sym_BOOL] = ACTIONS(1607), + [sym_auto] = ACTIONS(1607), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2922] = { + [sym_identifier] = ACTIONS(1397), + [aux_sym_preproc_def_token1] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1395), + [anon_sym_PLUS] = ACTIONS(1395), + [anon_sym_typedef] = ACTIONS(1397), + [anon_sym_extern] = ACTIONS(1397), + [anon_sym___attribute] = ACTIONS(1397), + [anon_sym___attribute__] = ACTIONS(1397), + [anon_sym___declspec] = ACTIONS(1397), + [anon_sym___cdecl] = ACTIONS(1397), + [anon_sym___clrcall] = ACTIONS(1397), + [anon_sym___stdcall] = ACTIONS(1397), + [anon_sym___fastcall] = ACTIONS(1397), + [anon_sym___thiscall] = ACTIONS(1397), + [anon_sym___vectorcall] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_auto] = ACTIONS(1397), + [anon_sym_register] = ACTIONS(1397), + [anon_sym_inline] = ACTIONS(1397), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_volatile] = ACTIONS(1397), + [anon_sym_restrict] = ACTIONS(1397), + [anon_sym__Atomic] = ACTIONS(1397), + [anon_sym_in] = ACTIONS(1397), + [anon_sym_out] = ACTIONS(1397), + [anon_sym_inout] = ACTIONS(1397), + [anon_sym_bycopy] = ACTIONS(1397), + [anon_sym_byref] = ACTIONS(1397), + [anon_sym_oneway] = ACTIONS(1397), + [anon_sym__Nullable] = ACTIONS(1397), + [anon_sym__Nonnull] = ACTIONS(1397), + [anon_sym__Nullable_result] = ACTIONS(1397), + [anon_sym__Null_unspecified] = ACTIONS(1397), + [anon_sym___autoreleasing] = ACTIONS(1397), + [anon_sym___nullable] = ACTIONS(1397), + [anon_sym___nonnull] = ACTIONS(1397), + [anon_sym___strong] = ACTIONS(1397), + [anon_sym___weak] = ACTIONS(1397), + [anon_sym___bridge] = ACTIONS(1397), + [anon_sym___bridge_transfer] = ACTIONS(1397), + [anon_sym___bridge_retained] = ACTIONS(1397), + [anon_sym___unsafe_unretained] = ACTIONS(1397), + [anon_sym___block] = ACTIONS(1397), + [anon_sym___kindof] = ACTIONS(1397), + [anon_sym___unused] = ACTIONS(1397), + [anon_sym__Complex] = ACTIONS(1397), + [anon_sym___complex] = ACTIONS(1397), + [anon_sym_IBOutlet] = ACTIONS(1397), + [anon_sym_IBInspectable] = ACTIONS(1397), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1397), + [anon_sym_signed] = ACTIONS(1397), + [anon_sym_unsigned] = ACTIONS(1397), + [anon_sym_long] = ACTIONS(1397), + [anon_sym_short] = ACTIONS(1397), + [sym_primitive_type] = ACTIONS(1397), + [anon_sym_enum] = ACTIONS(1397), + [anon_sym_struct] = ACTIONS(1397), + [anon_sym_union] = ACTIONS(1397), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1397), + [anon_sym_ATend] = ACTIONS(1395), + [sym_optional] = ACTIONS(1395), + [sym_required] = ACTIONS(1395), + [anon_sym_ATproperty] = ACTIONS(1395), + [sym_method_attribute_specifier] = ACTIONS(1397), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1397), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1397), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1397), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1397), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1397), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1397), + [anon_sym_NS_AVAILABLE] = ACTIONS(1397), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1397), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1397), + [anon_sym_API_AVAILABLE] = ACTIONS(1397), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1397), + [anon_sym_API_DEPRECATED] = ACTIONS(1397), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1397), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1397), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1397), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1397), + [anon_sym___deprecated_msg] = ACTIONS(1397), + [anon_sym___deprecated_enum_msg] = ACTIONS(1397), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1397), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1397), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1397), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1397), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1397), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1397), + [anon_sym_ATsynthesize] = ACTIONS(1395), + [anon_sym_ATdynamic] = ACTIONS(1395), + [anon_sym_NS_ENUM] = ACTIONS(1397), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1397), + [anon_sym_NS_OPTIONS] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1397), + [anon_sym___typeof] = ACTIONS(1397), + [anon_sym___typeof__] = ACTIONS(1397), + [sym_id] = ACTIONS(1397), + [sym_instancetype] = ACTIONS(1397), + [sym_Class] = ACTIONS(1397), + [sym_SEL] = ACTIONS(1397), + [sym_IMP] = ACTIONS(1397), + [sym_BOOL] = ACTIONS(1397), + [sym_auto] = ACTIONS(1397), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2923] = { + [sym_identifier] = ACTIONS(1602), + [aux_sym_preproc_def_token1] = ACTIONS(1599), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1599), + [anon_sym_typedef] = ACTIONS(1602), + [anon_sym_extern] = ACTIONS(1602), + [anon_sym___attribute] = ACTIONS(1602), + [anon_sym___attribute__] = ACTIONS(1602), + [anon_sym___declspec] = ACTIONS(1602), + [anon_sym___cdecl] = ACTIONS(1602), + [anon_sym___clrcall] = ACTIONS(1602), + [anon_sym___stdcall] = ACTIONS(1602), + [anon_sym___fastcall] = ACTIONS(1602), + [anon_sym___thiscall] = ACTIONS(1602), + [anon_sym___vectorcall] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_auto] = ACTIONS(1602), + [anon_sym_register] = ACTIONS(1602), + [anon_sym_inline] = ACTIONS(1602), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1602), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_volatile] = ACTIONS(1602), + [anon_sym_restrict] = ACTIONS(1602), + [anon_sym__Atomic] = ACTIONS(1602), + [anon_sym_in] = ACTIONS(1602), + [anon_sym_out] = ACTIONS(1602), + [anon_sym_inout] = ACTIONS(1602), + [anon_sym_bycopy] = ACTIONS(1602), + [anon_sym_byref] = ACTIONS(1602), + [anon_sym_oneway] = ACTIONS(1602), + [anon_sym__Nullable] = ACTIONS(1602), + [anon_sym__Nonnull] = ACTIONS(1602), + [anon_sym__Nullable_result] = ACTIONS(1602), + [anon_sym__Null_unspecified] = ACTIONS(1602), + [anon_sym___autoreleasing] = ACTIONS(1602), + [anon_sym___nullable] = ACTIONS(1602), + [anon_sym___nonnull] = ACTIONS(1602), + [anon_sym___strong] = ACTIONS(1602), + [anon_sym___weak] = ACTIONS(1602), + [anon_sym___bridge] = ACTIONS(1602), + [anon_sym___bridge_transfer] = ACTIONS(1602), + [anon_sym___bridge_retained] = ACTIONS(1602), + [anon_sym___unsafe_unretained] = ACTIONS(1602), + [anon_sym___block] = ACTIONS(1602), + [anon_sym___kindof] = ACTIONS(1602), + [anon_sym___unused] = ACTIONS(1602), + [anon_sym__Complex] = ACTIONS(1602), + [anon_sym___complex] = ACTIONS(1602), + [anon_sym_IBOutlet] = ACTIONS(1602), + [anon_sym_IBInspectable] = ACTIONS(1602), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1602), + [anon_sym_signed] = ACTIONS(1602), + [anon_sym_unsigned] = ACTIONS(1602), + [anon_sym_long] = ACTIONS(1602), + [anon_sym_short] = ACTIONS(1602), + [sym_primitive_type] = ACTIONS(1602), + [anon_sym_enum] = ACTIONS(1602), + [anon_sym_struct] = ACTIONS(1602), + [anon_sym_union] = ACTIONS(1602), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1602), + [anon_sym_ATend] = ACTIONS(1599), + [sym_optional] = ACTIONS(1599), + [sym_required] = ACTIONS(1599), + [anon_sym_ATproperty] = ACTIONS(1599), + [sym_method_attribute_specifier] = ACTIONS(1602), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1602), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1602), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1602), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1602), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1602), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1602), + [anon_sym_NS_AVAILABLE] = ACTIONS(1602), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1602), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1602), + [anon_sym_API_AVAILABLE] = ACTIONS(1602), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1602), + [anon_sym_API_DEPRECATED] = ACTIONS(1602), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1602), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1602), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1602), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1602), + [anon_sym___deprecated_msg] = ACTIONS(1602), + [anon_sym___deprecated_enum_msg] = ACTIONS(1602), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1602), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1602), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1602), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1602), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1602), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1602), + [anon_sym_ATsynthesize] = ACTIONS(1599), + [anon_sym_ATdynamic] = ACTIONS(1599), + [anon_sym_NS_ENUM] = ACTIONS(1602), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1602), + [anon_sym_NS_OPTIONS] = ACTIONS(1602), + [anon_sym_typeof] = ACTIONS(1602), + [anon_sym___typeof] = ACTIONS(1602), + [anon_sym___typeof__] = ACTIONS(1602), + [sym_id] = ACTIONS(1602), + [sym_instancetype] = ACTIONS(1602), + [sym_Class] = ACTIONS(1602), + [sym_SEL] = ACTIONS(1602), + [sym_IMP] = ACTIONS(1602), + [sym_BOOL] = ACTIONS(1602), + [sym_auto] = ACTIONS(1602), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2924] = { + [sym_identifier] = ACTIONS(1597), + [aux_sym_preproc_def_token1] = ACTIONS(1595), + [anon_sym_DASH] = ACTIONS(1595), + [anon_sym_PLUS] = ACTIONS(1595), + [anon_sym_typedef] = ACTIONS(1597), + [anon_sym_extern] = ACTIONS(1597), + [anon_sym___attribute] = ACTIONS(1597), + [anon_sym___attribute__] = ACTIONS(1597), + [anon_sym___declspec] = ACTIONS(1597), + [anon_sym___cdecl] = ACTIONS(1597), + [anon_sym___clrcall] = ACTIONS(1597), + [anon_sym___stdcall] = ACTIONS(1597), + [anon_sym___fastcall] = ACTIONS(1597), + [anon_sym___thiscall] = ACTIONS(1597), + [anon_sym___vectorcall] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_auto] = ACTIONS(1597), + [anon_sym_register] = ACTIONS(1597), + [anon_sym_inline] = ACTIONS(1597), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_volatile] = ACTIONS(1597), + [anon_sym_restrict] = ACTIONS(1597), + [anon_sym__Atomic] = ACTIONS(1597), + [anon_sym_in] = ACTIONS(1597), + [anon_sym_out] = ACTIONS(1597), + [anon_sym_inout] = ACTIONS(1597), + [anon_sym_bycopy] = ACTIONS(1597), + [anon_sym_byref] = ACTIONS(1597), + [anon_sym_oneway] = ACTIONS(1597), + [anon_sym__Nullable] = ACTIONS(1597), + [anon_sym__Nonnull] = ACTIONS(1597), + [anon_sym__Nullable_result] = ACTIONS(1597), + [anon_sym__Null_unspecified] = ACTIONS(1597), + [anon_sym___autoreleasing] = ACTIONS(1597), + [anon_sym___nullable] = ACTIONS(1597), + [anon_sym___nonnull] = ACTIONS(1597), + [anon_sym___strong] = ACTIONS(1597), + [anon_sym___weak] = ACTIONS(1597), + [anon_sym___bridge] = ACTIONS(1597), + [anon_sym___bridge_transfer] = ACTIONS(1597), + [anon_sym___bridge_retained] = ACTIONS(1597), + [anon_sym___unsafe_unretained] = ACTIONS(1597), + [anon_sym___block] = ACTIONS(1597), + [anon_sym___kindof] = ACTIONS(1597), + [anon_sym___unused] = ACTIONS(1597), + [anon_sym__Complex] = ACTIONS(1597), + [anon_sym___complex] = ACTIONS(1597), + [anon_sym_IBOutlet] = ACTIONS(1597), + [anon_sym_IBInspectable] = ACTIONS(1597), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1597), + [anon_sym_signed] = ACTIONS(1597), + [anon_sym_unsigned] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [sym_primitive_type] = ACTIONS(1597), + [anon_sym_enum] = ACTIONS(1597), + [anon_sym_struct] = ACTIONS(1597), + [anon_sym_union] = ACTIONS(1597), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1597), + [anon_sym_ATend] = ACTIONS(1595), + [sym_optional] = ACTIONS(1595), + [sym_required] = ACTIONS(1595), + [anon_sym_ATproperty] = ACTIONS(1595), + [sym_method_attribute_specifier] = ACTIONS(1597), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1597), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1597), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1597), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1597), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1597), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1597), + [anon_sym_NS_AVAILABLE] = ACTIONS(1597), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1597), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1597), + [anon_sym_API_AVAILABLE] = ACTIONS(1597), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1597), + [anon_sym_API_DEPRECATED] = ACTIONS(1597), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1597), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1597), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1597), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1597), + [anon_sym___deprecated_msg] = ACTIONS(1597), + [anon_sym___deprecated_enum_msg] = ACTIONS(1597), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1597), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1597), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1597), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1597), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1597), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1597), + [anon_sym_ATsynthesize] = ACTIONS(1595), + [anon_sym_ATdynamic] = ACTIONS(1595), + [anon_sym_NS_ENUM] = ACTIONS(1597), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1597), + [anon_sym_NS_OPTIONS] = ACTIONS(1597), + [anon_sym_typeof] = ACTIONS(1597), + [anon_sym___typeof] = ACTIONS(1597), + [anon_sym___typeof__] = ACTIONS(1597), + [sym_id] = ACTIONS(1597), + [sym_instancetype] = ACTIONS(1597), + [sym_Class] = ACTIONS(1597), + [sym_SEL] = ACTIONS(1597), + [sym_IMP] = ACTIONS(1597), + [sym_BOOL] = ACTIONS(1597), + [sym_auto] = ACTIONS(1597), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2925] = { + [sym_identifier] = ACTIONS(1593), + [aux_sym_preproc_def_token1] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_typedef] = ACTIONS(1593), + [anon_sym_extern] = ACTIONS(1593), + [anon_sym___attribute] = ACTIONS(1593), + [anon_sym___attribute__] = ACTIONS(1593), + [anon_sym___declspec] = ACTIONS(1593), + [anon_sym___cdecl] = ACTIONS(1593), + [anon_sym___clrcall] = ACTIONS(1593), + [anon_sym___stdcall] = ACTIONS(1593), + [anon_sym___fastcall] = ACTIONS(1593), + [anon_sym___thiscall] = ACTIONS(1593), + [anon_sym___vectorcall] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_auto] = ACTIONS(1593), + [anon_sym_register] = ACTIONS(1593), + [anon_sym_inline] = ACTIONS(1593), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_volatile] = ACTIONS(1593), + [anon_sym_restrict] = ACTIONS(1593), + [anon_sym__Atomic] = ACTIONS(1593), + [anon_sym_in] = ACTIONS(1593), + [anon_sym_out] = ACTIONS(1593), + [anon_sym_inout] = ACTIONS(1593), + [anon_sym_bycopy] = ACTIONS(1593), + [anon_sym_byref] = ACTIONS(1593), + [anon_sym_oneway] = ACTIONS(1593), + [anon_sym__Nullable] = ACTIONS(1593), + [anon_sym__Nonnull] = ACTIONS(1593), + [anon_sym__Nullable_result] = ACTIONS(1593), + [anon_sym__Null_unspecified] = ACTIONS(1593), + [anon_sym___autoreleasing] = ACTIONS(1593), + [anon_sym___nullable] = ACTIONS(1593), + [anon_sym___nonnull] = ACTIONS(1593), + [anon_sym___strong] = ACTIONS(1593), + [anon_sym___weak] = ACTIONS(1593), + [anon_sym___bridge] = ACTIONS(1593), + [anon_sym___bridge_transfer] = ACTIONS(1593), + [anon_sym___bridge_retained] = ACTIONS(1593), + [anon_sym___unsafe_unretained] = ACTIONS(1593), + [anon_sym___block] = ACTIONS(1593), + [anon_sym___kindof] = ACTIONS(1593), + [anon_sym___unused] = ACTIONS(1593), + [anon_sym__Complex] = ACTIONS(1593), + [anon_sym___complex] = ACTIONS(1593), + [anon_sym_IBOutlet] = ACTIONS(1593), + [anon_sym_IBInspectable] = ACTIONS(1593), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1593), + [anon_sym_signed] = ACTIONS(1593), + [anon_sym_unsigned] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [sym_primitive_type] = ACTIONS(1593), + [anon_sym_enum] = ACTIONS(1593), + [anon_sym_struct] = ACTIONS(1593), + [anon_sym_union] = ACTIONS(1593), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1593), + [anon_sym_ATend] = ACTIONS(1591), + [sym_optional] = ACTIONS(1591), + [sym_required] = ACTIONS(1591), + [anon_sym_ATproperty] = ACTIONS(1591), + [sym_method_attribute_specifier] = ACTIONS(1593), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1593), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1593), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1593), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1593), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1593), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1593), + [anon_sym_NS_AVAILABLE] = ACTIONS(1593), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1593), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1593), + [anon_sym_API_AVAILABLE] = ACTIONS(1593), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1593), + [anon_sym_API_DEPRECATED] = ACTIONS(1593), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1593), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1593), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1593), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1593), + [anon_sym___deprecated_msg] = ACTIONS(1593), + [anon_sym___deprecated_enum_msg] = ACTIONS(1593), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1593), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1593), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1593), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1593), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1593), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1593), + [anon_sym_ATsynthesize] = ACTIONS(1591), + [anon_sym_ATdynamic] = ACTIONS(1591), + [anon_sym_NS_ENUM] = ACTIONS(1593), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1593), + [anon_sym_NS_OPTIONS] = ACTIONS(1593), + [anon_sym_typeof] = ACTIONS(1593), + [anon_sym___typeof] = ACTIONS(1593), + [anon_sym___typeof__] = ACTIONS(1593), + [sym_id] = ACTIONS(1593), + [sym_instancetype] = ACTIONS(1593), + [sym_Class] = ACTIONS(1593), + [sym_SEL] = ACTIONS(1593), + [sym_IMP] = ACTIONS(1593), + [sym_BOOL] = ACTIONS(1593), + [sym_auto] = ACTIONS(1593), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2926] = { + [sym_identifier] = ACTIONS(1589), + [aux_sym_preproc_def_token1] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1587), + [anon_sym_typedef] = ACTIONS(1589), + [anon_sym_extern] = ACTIONS(1589), + [anon_sym___attribute] = ACTIONS(1589), + [anon_sym___attribute__] = ACTIONS(1589), + [anon_sym___declspec] = ACTIONS(1589), + [anon_sym___cdecl] = ACTIONS(1589), + [anon_sym___clrcall] = ACTIONS(1589), + [anon_sym___stdcall] = ACTIONS(1589), + [anon_sym___fastcall] = ACTIONS(1589), + [anon_sym___thiscall] = ACTIONS(1589), + [anon_sym___vectorcall] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_auto] = ACTIONS(1589), + [anon_sym_register] = ACTIONS(1589), + [anon_sym_inline] = ACTIONS(1589), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_volatile] = ACTIONS(1589), + [anon_sym_restrict] = ACTIONS(1589), + [anon_sym__Atomic] = ACTIONS(1589), + [anon_sym_in] = ACTIONS(1589), + [anon_sym_out] = ACTIONS(1589), + [anon_sym_inout] = ACTIONS(1589), + [anon_sym_bycopy] = ACTIONS(1589), + [anon_sym_byref] = ACTIONS(1589), + [anon_sym_oneway] = ACTIONS(1589), + [anon_sym__Nullable] = ACTIONS(1589), + [anon_sym__Nonnull] = ACTIONS(1589), + [anon_sym__Nullable_result] = ACTIONS(1589), + [anon_sym__Null_unspecified] = ACTIONS(1589), + [anon_sym___autoreleasing] = ACTIONS(1589), + [anon_sym___nullable] = ACTIONS(1589), + [anon_sym___nonnull] = ACTIONS(1589), + [anon_sym___strong] = ACTIONS(1589), + [anon_sym___weak] = ACTIONS(1589), + [anon_sym___bridge] = ACTIONS(1589), + [anon_sym___bridge_transfer] = ACTIONS(1589), + [anon_sym___bridge_retained] = ACTIONS(1589), + [anon_sym___unsafe_unretained] = ACTIONS(1589), + [anon_sym___block] = ACTIONS(1589), + [anon_sym___kindof] = ACTIONS(1589), + [anon_sym___unused] = ACTIONS(1589), + [anon_sym__Complex] = ACTIONS(1589), + [anon_sym___complex] = ACTIONS(1589), + [anon_sym_IBOutlet] = ACTIONS(1589), + [anon_sym_IBInspectable] = ACTIONS(1589), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1589), + [anon_sym_signed] = ACTIONS(1589), + [anon_sym_unsigned] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [sym_primitive_type] = ACTIONS(1589), + [anon_sym_enum] = ACTIONS(1589), + [anon_sym_struct] = ACTIONS(1589), + [anon_sym_union] = ACTIONS(1589), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1589), + [anon_sym_ATend] = ACTIONS(1587), + [sym_optional] = ACTIONS(1587), + [sym_required] = ACTIONS(1587), + [anon_sym_ATproperty] = ACTIONS(1587), + [sym_method_attribute_specifier] = ACTIONS(1589), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1589), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1589), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1589), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1589), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1589), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1589), + [anon_sym_NS_AVAILABLE] = ACTIONS(1589), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1589), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1589), + [anon_sym_API_AVAILABLE] = ACTIONS(1589), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1589), + [anon_sym_API_DEPRECATED] = ACTIONS(1589), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1589), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1589), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1589), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1589), + [anon_sym___deprecated_msg] = ACTIONS(1589), + [anon_sym___deprecated_enum_msg] = ACTIONS(1589), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1589), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1589), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1589), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1589), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1589), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1589), + [anon_sym_ATsynthesize] = ACTIONS(1587), + [anon_sym_ATdynamic] = ACTIONS(1587), + [anon_sym_NS_ENUM] = ACTIONS(1589), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1589), + [anon_sym_NS_OPTIONS] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(1589), + [anon_sym___typeof] = ACTIONS(1589), + [anon_sym___typeof__] = ACTIONS(1589), + [sym_id] = ACTIONS(1589), + [sym_instancetype] = ACTIONS(1589), + [sym_Class] = ACTIONS(1589), + [sym_SEL] = ACTIONS(1589), + [sym_IMP] = ACTIONS(1589), + [sym_BOOL] = ACTIONS(1589), + [sym_auto] = ACTIONS(1589), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2927] = { + [sym__type_specifier] = STATE(4777), + [sym_sized_type_specifier] = STATE(4777), + [sym_enum_specifier] = STATE(4777), + [sym_struct_specifier] = STATE(4777), + [sym_union_specifier] = STATE(4777), + [sym__expression] = STATE(4407), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(4777), + [sym_ns_enum_specifier] = STATE(4777), + [sym_typeof_specifier] = STATE(4777), + [sym_atomic_specifier] = STATE(4777), + [sym_generic_type_specifier] = STATE(4777), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym__receiver] = STATE(4777), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(6920), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(6922), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(6924), + [anon_sym_enum] = ACTIONS(6926), + [anon_sym_struct] = ACTIONS(6928), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(6924), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(6924), + [sym_IMP] = ACTIONS(6924), + [sym_BOOL] = ACTIONS(6924), + [sym_auto] = ACTIONS(6924), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2928] = { + [sym_type_qualifier] = STATE(3414), + [sym__expression] = STATE(4514), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_type_definition_repeat1] = STATE(3414), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(6930), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_RBRACK] = ACTIONS(6932), + [anon_sym_const] = ACTIONS(6878), + [anon_sym_volatile] = ACTIONS(6878), + [anon_sym_restrict] = ACTIONS(6878), + [anon_sym__Atomic] = ACTIONS(6878), + [anon_sym_in] = ACTIONS(6878), + [anon_sym_out] = ACTIONS(6878), + [anon_sym_inout] = ACTIONS(6878), + [anon_sym_bycopy] = ACTIONS(6878), + [anon_sym_byref] = ACTIONS(6878), + [anon_sym_oneway] = ACTIONS(6878), + [anon_sym__Nullable] = ACTIONS(6878), + [anon_sym__Nonnull] = ACTIONS(6878), + [anon_sym__Nullable_result] = ACTIONS(6878), + [anon_sym__Null_unspecified] = ACTIONS(6878), + [anon_sym___autoreleasing] = ACTIONS(6878), + [anon_sym___nullable] = ACTIONS(6878), + [anon_sym___nonnull] = ACTIONS(6878), + [anon_sym___strong] = ACTIONS(6878), + [anon_sym___weak] = ACTIONS(6878), + [anon_sym___bridge] = ACTIONS(6878), + [anon_sym___bridge_transfer] = ACTIONS(6878), + [anon_sym___bridge_retained] = ACTIONS(6878), + [anon_sym___unsafe_unretained] = ACTIONS(6878), + [anon_sym___block] = ACTIONS(6878), + [anon_sym___kindof] = ACTIONS(6878), + [anon_sym___unused] = ACTIONS(6878), + [anon_sym__Complex] = ACTIONS(6878), + [anon_sym___complex] = ACTIONS(6878), + [anon_sym_IBOutlet] = ACTIONS(6878), + [anon_sym_IBInspectable] = ACTIONS(6878), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2929] = { + [sym_identifier] = ACTIONS(1417), + [aux_sym_preproc_def_token1] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_typedef] = ACTIONS(1417), + [anon_sym_extern] = ACTIONS(1417), + [anon_sym___attribute] = ACTIONS(1417), + [anon_sym___attribute__] = ACTIONS(1417), + [anon_sym___declspec] = ACTIONS(1417), + [anon_sym___cdecl] = ACTIONS(1417), + [anon_sym___clrcall] = ACTIONS(1417), + [anon_sym___stdcall] = ACTIONS(1417), + [anon_sym___fastcall] = ACTIONS(1417), + [anon_sym___thiscall] = ACTIONS(1417), + [anon_sym___vectorcall] = ACTIONS(1417), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_auto] = ACTIONS(1417), + [anon_sym_register] = ACTIONS(1417), + [anon_sym_inline] = ACTIONS(1417), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_volatile] = ACTIONS(1417), + [anon_sym_restrict] = ACTIONS(1417), + [anon_sym__Atomic] = ACTIONS(1417), + [anon_sym_in] = ACTIONS(1417), + [anon_sym_out] = ACTIONS(1417), + [anon_sym_inout] = ACTIONS(1417), + [anon_sym_bycopy] = ACTIONS(1417), + [anon_sym_byref] = ACTIONS(1417), + [anon_sym_oneway] = ACTIONS(1417), + [anon_sym__Nullable] = ACTIONS(1417), + [anon_sym__Nonnull] = ACTIONS(1417), + [anon_sym__Nullable_result] = ACTIONS(1417), + [anon_sym__Null_unspecified] = ACTIONS(1417), + [anon_sym___autoreleasing] = ACTIONS(1417), + [anon_sym___nullable] = ACTIONS(1417), + [anon_sym___nonnull] = ACTIONS(1417), + [anon_sym___strong] = ACTIONS(1417), + [anon_sym___weak] = ACTIONS(1417), + [anon_sym___bridge] = ACTIONS(1417), + [anon_sym___bridge_transfer] = ACTIONS(1417), + [anon_sym___bridge_retained] = ACTIONS(1417), + [anon_sym___unsafe_unretained] = ACTIONS(1417), + [anon_sym___block] = ACTIONS(1417), + [anon_sym___kindof] = ACTIONS(1417), + [anon_sym___unused] = ACTIONS(1417), + [anon_sym__Complex] = ACTIONS(1417), + [anon_sym___complex] = ACTIONS(1417), + [anon_sym_IBOutlet] = ACTIONS(1417), + [anon_sym_IBInspectable] = ACTIONS(1417), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1417), + [anon_sym_signed] = ACTIONS(1417), + [anon_sym_unsigned] = ACTIONS(1417), + [anon_sym_long] = ACTIONS(1417), + [anon_sym_short] = ACTIONS(1417), + [sym_primitive_type] = ACTIONS(1417), + [anon_sym_enum] = ACTIONS(1417), + [anon_sym_struct] = ACTIONS(1417), + [anon_sym_union] = ACTIONS(1417), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1417), + [anon_sym_ATend] = ACTIONS(1415), + [sym_optional] = ACTIONS(1415), + [sym_required] = ACTIONS(1415), + [anon_sym_ATproperty] = ACTIONS(1415), + [sym_method_attribute_specifier] = ACTIONS(1417), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1417), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1417), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1417), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1417), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1417), + [anon_sym_NS_AVAILABLE] = ACTIONS(1417), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1417), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_API_AVAILABLE] = ACTIONS(1417), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_API_DEPRECATED] = ACTIONS(1417), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1417), + [anon_sym___deprecated_msg] = ACTIONS(1417), + [anon_sym___deprecated_enum_msg] = ACTIONS(1417), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1417), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1417), + [anon_sym_ATsynthesize] = ACTIONS(1415), + [anon_sym_ATdynamic] = ACTIONS(1415), + [anon_sym_NS_ENUM] = ACTIONS(1417), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1417), + [anon_sym_NS_OPTIONS] = ACTIONS(1417), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym___typeof] = ACTIONS(1417), + [anon_sym___typeof__] = ACTIONS(1417), + [sym_id] = ACTIONS(1417), + [sym_instancetype] = ACTIONS(1417), + [sym_Class] = ACTIONS(1417), + [sym_SEL] = ACTIONS(1417), + [sym_IMP] = ACTIONS(1417), + [sym_BOOL] = ACTIONS(1417), + [sym_auto] = ACTIONS(1417), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2930] = { + [sym_identifier] = ACTIONS(1585), + [aux_sym_preproc_def_token1] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(1583), + [anon_sym_typedef] = ACTIONS(1585), + [anon_sym_extern] = ACTIONS(1585), + [anon_sym___attribute] = ACTIONS(1585), + [anon_sym___attribute__] = ACTIONS(1585), + [anon_sym___declspec] = ACTIONS(1585), + [anon_sym___cdecl] = ACTIONS(1585), + [anon_sym___clrcall] = ACTIONS(1585), + [anon_sym___stdcall] = ACTIONS(1585), + [anon_sym___fastcall] = ACTIONS(1585), + [anon_sym___thiscall] = ACTIONS(1585), + [anon_sym___vectorcall] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_auto] = ACTIONS(1585), + [anon_sym_register] = ACTIONS(1585), + [anon_sym_inline] = ACTIONS(1585), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_volatile] = ACTIONS(1585), + [anon_sym_restrict] = ACTIONS(1585), + [anon_sym__Atomic] = ACTIONS(1585), + [anon_sym_in] = ACTIONS(1585), + [anon_sym_out] = ACTIONS(1585), + [anon_sym_inout] = ACTIONS(1585), + [anon_sym_bycopy] = ACTIONS(1585), + [anon_sym_byref] = ACTIONS(1585), + [anon_sym_oneway] = ACTIONS(1585), + [anon_sym__Nullable] = ACTIONS(1585), + [anon_sym__Nonnull] = ACTIONS(1585), + [anon_sym__Nullable_result] = ACTIONS(1585), + [anon_sym__Null_unspecified] = ACTIONS(1585), + [anon_sym___autoreleasing] = ACTIONS(1585), + [anon_sym___nullable] = ACTIONS(1585), + [anon_sym___nonnull] = ACTIONS(1585), + [anon_sym___strong] = ACTIONS(1585), + [anon_sym___weak] = ACTIONS(1585), + [anon_sym___bridge] = ACTIONS(1585), + [anon_sym___bridge_transfer] = ACTIONS(1585), + [anon_sym___bridge_retained] = ACTIONS(1585), + [anon_sym___unsafe_unretained] = ACTIONS(1585), + [anon_sym___block] = ACTIONS(1585), + [anon_sym___kindof] = ACTIONS(1585), + [anon_sym___unused] = ACTIONS(1585), + [anon_sym__Complex] = ACTIONS(1585), + [anon_sym___complex] = ACTIONS(1585), + [anon_sym_IBOutlet] = ACTIONS(1585), + [anon_sym_IBInspectable] = ACTIONS(1585), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1585), + [anon_sym_signed] = ACTIONS(1585), + [anon_sym_unsigned] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [sym_primitive_type] = ACTIONS(1585), + [anon_sym_enum] = ACTIONS(1585), + [anon_sym_struct] = ACTIONS(1585), + [anon_sym_union] = ACTIONS(1585), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1585), + [anon_sym_ATend] = ACTIONS(1583), + [sym_optional] = ACTIONS(1583), + [sym_required] = ACTIONS(1583), + [anon_sym_ATproperty] = ACTIONS(1583), + [sym_method_attribute_specifier] = ACTIONS(1585), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1585), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1585), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1585), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1585), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1585), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1585), + [anon_sym_NS_AVAILABLE] = ACTIONS(1585), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1585), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1585), + [anon_sym_API_AVAILABLE] = ACTIONS(1585), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1585), + [anon_sym_API_DEPRECATED] = ACTIONS(1585), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1585), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1585), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1585), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1585), + [anon_sym___deprecated_msg] = ACTIONS(1585), + [anon_sym___deprecated_enum_msg] = ACTIONS(1585), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1585), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1585), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1585), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1585), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1585), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1585), + [anon_sym_ATsynthesize] = ACTIONS(1583), + [anon_sym_ATdynamic] = ACTIONS(1583), + [anon_sym_NS_ENUM] = ACTIONS(1585), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1585), + [anon_sym_NS_OPTIONS] = ACTIONS(1585), + [anon_sym_typeof] = ACTIONS(1585), + [anon_sym___typeof] = ACTIONS(1585), + [anon_sym___typeof__] = ACTIONS(1585), + [sym_id] = ACTIONS(1585), + [sym_instancetype] = ACTIONS(1585), + [sym_Class] = ACTIONS(1585), + [sym_SEL] = ACTIONS(1585), + [sym_IMP] = ACTIONS(1585), + [sym_BOOL] = ACTIONS(1585), + [sym_auto] = ACTIONS(1585), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2931] = { + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_def_token1] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_typedef] = ACTIONS(1563), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym___attribute] = ACTIONS(1563), + [anon_sym___attribute__] = ACTIONS(1563), + [anon_sym___declspec] = ACTIONS(1563), + [anon_sym___cdecl] = ACTIONS(1563), + [anon_sym___clrcall] = ACTIONS(1563), + [anon_sym___stdcall] = ACTIONS(1563), + [anon_sym___fastcall] = ACTIONS(1563), + [anon_sym___thiscall] = ACTIONS(1563), + [anon_sym___vectorcall] = ACTIONS(1563), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_auto] = ACTIONS(1563), + [anon_sym_register] = ACTIONS(1563), + [anon_sym_inline] = ACTIONS(1563), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_volatile] = ACTIONS(1563), + [anon_sym_restrict] = ACTIONS(1563), + [anon_sym__Atomic] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [anon_sym_out] = ACTIONS(1563), + [anon_sym_inout] = ACTIONS(1563), + [anon_sym_bycopy] = ACTIONS(1563), + [anon_sym_byref] = ACTIONS(1563), + [anon_sym_oneway] = ACTIONS(1563), + [anon_sym__Nullable] = ACTIONS(1563), + [anon_sym__Nonnull] = ACTIONS(1563), + [anon_sym__Nullable_result] = ACTIONS(1563), + [anon_sym__Null_unspecified] = ACTIONS(1563), + [anon_sym___autoreleasing] = ACTIONS(1563), + [anon_sym___nullable] = ACTIONS(1563), + [anon_sym___nonnull] = ACTIONS(1563), + [anon_sym___strong] = ACTIONS(1563), + [anon_sym___weak] = ACTIONS(1563), + [anon_sym___bridge] = ACTIONS(1563), + [anon_sym___bridge_transfer] = ACTIONS(1563), + [anon_sym___bridge_retained] = ACTIONS(1563), + [anon_sym___unsafe_unretained] = ACTIONS(1563), + [anon_sym___block] = ACTIONS(1563), + [anon_sym___kindof] = ACTIONS(1563), + [anon_sym___unused] = ACTIONS(1563), + [anon_sym__Complex] = ACTIONS(1563), + [anon_sym___complex] = ACTIONS(1563), + [anon_sym_IBOutlet] = ACTIONS(1563), + [anon_sym_IBInspectable] = ACTIONS(1563), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1563), + [anon_sym_signed] = ACTIONS(1563), + [anon_sym_unsigned] = ACTIONS(1563), + [anon_sym_long] = ACTIONS(1563), + [anon_sym_short] = ACTIONS(1563), + [sym_primitive_type] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1563), + [anon_sym_ATend] = ACTIONS(1561), + [sym_optional] = ACTIONS(1561), + [sym_required] = ACTIONS(1561), + [anon_sym_ATproperty] = ACTIONS(1561), + [sym_method_attribute_specifier] = ACTIONS(1563), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1563), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE] = ACTIONS(1563), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_API_AVAILABLE] = ACTIONS(1563), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_API_DEPRECATED] = ACTIONS(1563), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1563), + [anon_sym___deprecated_msg] = ACTIONS(1563), + [anon_sym___deprecated_enum_msg] = ACTIONS(1563), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1563), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1563), + [anon_sym_ATsynthesize] = ACTIONS(1561), + [anon_sym_ATdynamic] = ACTIONS(1561), + [anon_sym_NS_ENUM] = ACTIONS(1563), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1563), + [anon_sym_NS_OPTIONS] = ACTIONS(1563), + [anon_sym_typeof] = ACTIONS(1563), + [anon_sym___typeof] = ACTIONS(1563), + [anon_sym___typeof__] = ACTIONS(1563), + [sym_id] = ACTIONS(1563), + [sym_instancetype] = ACTIONS(1563), + [sym_Class] = ACTIONS(1563), + [sym_SEL] = ACTIONS(1563), + [sym_IMP] = ACTIONS(1563), + [sym_BOOL] = ACTIONS(1563), + [sym_auto] = ACTIONS(1563), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2932] = { + [sym_type_qualifier] = STATE(2928), + [sym__expression] = STATE(4518), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_type_definition_repeat1] = STATE(2928), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(6934), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_RBRACK] = ACTIONS(6936), + [anon_sym_const] = ACTIONS(6878), + [anon_sym_volatile] = ACTIONS(6878), + [anon_sym_restrict] = ACTIONS(6878), + [anon_sym__Atomic] = ACTIONS(6878), + [anon_sym_in] = ACTIONS(6878), + [anon_sym_out] = ACTIONS(6878), + [anon_sym_inout] = ACTIONS(6878), + [anon_sym_bycopy] = ACTIONS(6878), + [anon_sym_byref] = ACTIONS(6878), + [anon_sym_oneway] = ACTIONS(6878), + [anon_sym__Nullable] = ACTIONS(6878), + [anon_sym__Nonnull] = ACTIONS(6878), + [anon_sym__Nullable_result] = ACTIONS(6878), + [anon_sym__Null_unspecified] = ACTIONS(6878), + [anon_sym___autoreleasing] = ACTIONS(6878), + [anon_sym___nullable] = ACTIONS(6878), + [anon_sym___nonnull] = ACTIONS(6878), + [anon_sym___strong] = ACTIONS(6878), + [anon_sym___weak] = ACTIONS(6878), + [anon_sym___bridge] = ACTIONS(6878), + [anon_sym___bridge_transfer] = ACTIONS(6878), + [anon_sym___bridge_retained] = ACTIONS(6878), + [anon_sym___unsafe_unretained] = ACTIONS(6878), + [anon_sym___block] = ACTIONS(6878), + [anon_sym___kindof] = ACTIONS(6878), + [anon_sym___unused] = ACTIONS(6878), + [anon_sym__Complex] = ACTIONS(6878), + [anon_sym___complex] = ACTIONS(6878), + [anon_sym_IBOutlet] = ACTIONS(6878), + [anon_sym_IBInspectable] = ACTIONS(6878), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2933] = { + [sym_type_qualifier] = STATE(3414), + [sym__expression] = STATE(4517), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_type_definition_repeat1] = STATE(3414), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(6938), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_RBRACK] = ACTIONS(6940), + [anon_sym_const] = ACTIONS(6878), + [anon_sym_volatile] = ACTIONS(6878), + [anon_sym_restrict] = ACTIONS(6878), + [anon_sym__Atomic] = ACTIONS(6878), + [anon_sym_in] = ACTIONS(6878), + [anon_sym_out] = ACTIONS(6878), + [anon_sym_inout] = ACTIONS(6878), + [anon_sym_bycopy] = ACTIONS(6878), + [anon_sym_byref] = ACTIONS(6878), + [anon_sym_oneway] = ACTIONS(6878), + [anon_sym__Nullable] = ACTIONS(6878), + [anon_sym__Nonnull] = ACTIONS(6878), + [anon_sym__Nullable_result] = ACTIONS(6878), + [anon_sym__Null_unspecified] = ACTIONS(6878), + [anon_sym___autoreleasing] = ACTIONS(6878), + [anon_sym___nullable] = ACTIONS(6878), + [anon_sym___nonnull] = ACTIONS(6878), + [anon_sym___strong] = ACTIONS(6878), + [anon_sym___weak] = ACTIONS(6878), + [anon_sym___bridge] = ACTIONS(6878), + [anon_sym___bridge_transfer] = ACTIONS(6878), + [anon_sym___bridge_retained] = ACTIONS(6878), + [anon_sym___unsafe_unretained] = ACTIONS(6878), + [anon_sym___block] = ACTIONS(6878), + [anon_sym___kindof] = ACTIONS(6878), + [anon_sym___unused] = ACTIONS(6878), + [anon_sym__Complex] = ACTIONS(6878), + [anon_sym___complex] = ACTIONS(6878), + [anon_sym_IBOutlet] = ACTIONS(6878), + [anon_sym_IBInspectable] = ACTIONS(6878), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2934] = { + [sym_identifier] = ACTIONS(1475), + [aux_sym_preproc_def_token1] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_typedef] = ACTIONS(1475), + [anon_sym_extern] = ACTIONS(1475), + [anon_sym___attribute] = ACTIONS(1475), + [anon_sym___attribute__] = ACTIONS(1475), + [anon_sym___declspec] = ACTIONS(1475), + [anon_sym___cdecl] = ACTIONS(1475), + [anon_sym___clrcall] = ACTIONS(1475), + [anon_sym___stdcall] = ACTIONS(1475), + [anon_sym___fastcall] = ACTIONS(1475), + [anon_sym___thiscall] = ACTIONS(1475), + [anon_sym___vectorcall] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_auto] = ACTIONS(1475), + [anon_sym_register] = ACTIONS(1475), + [anon_sym_inline] = ACTIONS(1475), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1475), + [anon_sym_volatile] = ACTIONS(1475), + [anon_sym_restrict] = ACTIONS(1475), + [anon_sym__Atomic] = ACTIONS(1475), + [anon_sym_in] = ACTIONS(1475), + [anon_sym_out] = ACTIONS(1475), + [anon_sym_inout] = ACTIONS(1475), + [anon_sym_bycopy] = ACTIONS(1475), + [anon_sym_byref] = ACTIONS(1475), + [anon_sym_oneway] = ACTIONS(1475), + [anon_sym__Nullable] = ACTIONS(1475), + [anon_sym__Nonnull] = ACTIONS(1475), + [anon_sym__Nullable_result] = ACTIONS(1475), + [anon_sym__Null_unspecified] = ACTIONS(1475), + [anon_sym___autoreleasing] = ACTIONS(1475), + [anon_sym___nullable] = ACTIONS(1475), + [anon_sym___nonnull] = ACTIONS(1475), + [anon_sym___strong] = ACTIONS(1475), + [anon_sym___weak] = ACTIONS(1475), + [anon_sym___bridge] = ACTIONS(1475), + [anon_sym___bridge_transfer] = ACTIONS(1475), + [anon_sym___bridge_retained] = ACTIONS(1475), + [anon_sym___unsafe_unretained] = ACTIONS(1475), + [anon_sym___block] = ACTIONS(1475), + [anon_sym___kindof] = ACTIONS(1475), + [anon_sym___unused] = ACTIONS(1475), + [anon_sym__Complex] = ACTIONS(1475), + [anon_sym___complex] = ACTIONS(1475), + [anon_sym_IBOutlet] = ACTIONS(1475), + [anon_sym_IBInspectable] = ACTIONS(1475), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1475), + [anon_sym_signed] = ACTIONS(1475), + [anon_sym_unsigned] = ACTIONS(1475), + [anon_sym_long] = ACTIONS(1475), + [anon_sym_short] = ACTIONS(1475), + [sym_primitive_type] = ACTIONS(1475), + [anon_sym_enum] = ACTIONS(1475), + [anon_sym_struct] = ACTIONS(1475), + [anon_sym_union] = ACTIONS(1475), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1475), + [anon_sym_ATend] = ACTIONS(1473), + [sym_optional] = ACTIONS(1473), + [sym_required] = ACTIONS(1473), + [anon_sym_ATproperty] = ACTIONS(1473), + [sym_method_attribute_specifier] = ACTIONS(1475), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1475), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1475), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1475), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1475), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1475), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1475), + [anon_sym_NS_AVAILABLE] = ACTIONS(1475), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1475), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1475), + [anon_sym_API_AVAILABLE] = ACTIONS(1475), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1475), + [anon_sym_API_DEPRECATED] = ACTIONS(1475), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1475), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1475), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1475), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1475), + [anon_sym___deprecated_msg] = ACTIONS(1475), + [anon_sym___deprecated_enum_msg] = ACTIONS(1475), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1475), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1475), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1475), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1475), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1475), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1475), + [anon_sym_ATsynthesize] = ACTIONS(1473), + [anon_sym_ATdynamic] = ACTIONS(1473), + [anon_sym_NS_ENUM] = ACTIONS(1475), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1475), + [anon_sym_NS_OPTIONS] = ACTIONS(1475), + [anon_sym_typeof] = ACTIONS(1475), + [anon_sym___typeof] = ACTIONS(1475), + [anon_sym___typeof__] = ACTIONS(1475), + [sym_id] = ACTIONS(1475), + [sym_instancetype] = ACTIONS(1475), + [sym_Class] = ACTIONS(1475), + [sym_SEL] = ACTIONS(1475), + [sym_IMP] = ACTIONS(1475), + [sym_BOOL] = ACTIONS(1475), + [sym_auto] = ACTIONS(1475), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2935] = { + [sym_identifier] = ACTIONS(1533), + [aux_sym_preproc_def_token1] = ACTIONS(1531), + [anon_sym_DASH] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1531), + [anon_sym_typedef] = ACTIONS(1533), + [anon_sym_extern] = ACTIONS(1533), + [anon_sym___attribute] = ACTIONS(1533), + [anon_sym___attribute__] = ACTIONS(1533), + [anon_sym___declspec] = ACTIONS(1533), + [anon_sym___cdecl] = ACTIONS(1533), + [anon_sym___clrcall] = ACTIONS(1533), + [anon_sym___stdcall] = ACTIONS(1533), + [anon_sym___fastcall] = ACTIONS(1533), + [anon_sym___thiscall] = ACTIONS(1533), + [anon_sym___vectorcall] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_auto] = ACTIONS(1533), + [anon_sym_register] = ACTIONS(1533), + [anon_sym_inline] = ACTIONS(1533), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_volatile] = ACTIONS(1533), + [anon_sym_restrict] = ACTIONS(1533), + [anon_sym__Atomic] = ACTIONS(1533), + [anon_sym_in] = ACTIONS(1533), + [anon_sym_out] = ACTIONS(1533), + [anon_sym_inout] = ACTIONS(1533), + [anon_sym_bycopy] = ACTIONS(1533), + [anon_sym_byref] = ACTIONS(1533), + [anon_sym_oneway] = ACTIONS(1533), + [anon_sym__Nullable] = ACTIONS(1533), + [anon_sym__Nonnull] = ACTIONS(1533), + [anon_sym__Nullable_result] = ACTIONS(1533), + [anon_sym__Null_unspecified] = ACTIONS(1533), + [anon_sym___autoreleasing] = ACTIONS(1533), + [anon_sym___nullable] = ACTIONS(1533), + [anon_sym___nonnull] = ACTIONS(1533), + [anon_sym___strong] = ACTIONS(1533), + [anon_sym___weak] = ACTIONS(1533), + [anon_sym___bridge] = ACTIONS(1533), + [anon_sym___bridge_transfer] = ACTIONS(1533), + [anon_sym___bridge_retained] = ACTIONS(1533), + [anon_sym___unsafe_unretained] = ACTIONS(1533), + [anon_sym___block] = ACTIONS(1533), + [anon_sym___kindof] = ACTIONS(1533), + [anon_sym___unused] = ACTIONS(1533), + [anon_sym__Complex] = ACTIONS(1533), + [anon_sym___complex] = ACTIONS(1533), + [anon_sym_IBOutlet] = ACTIONS(1533), + [anon_sym_IBInspectable] = ACTIONS(1533), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1533), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1533), + [anon_sym_enum] = ACTIONS(1533), + [anon_sym_struct] = ACTIONS(1533), + [anon_sym_union] = ACTIONS(1533), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1533), + [anon_sym_ATend] = ACTIONS(1531), + [sym_optional] = ACTIONS(1531), + [sym_required] = ACTIONS(1531), + [anon_sym_ATproperty] = ACTIONS(1531), + [sym_method_attribute_specifier] = ACTIONS(1533), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1533), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1533), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1533), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1533), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1533), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1533), + [anon_sym_NS_AVAILABLE] = ACTIONS(1533), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1533), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1533), + [anon_sym_API_AVAILABLE] = ACTIONS(1533), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1533), + [anon_sym_API_DEPRECATED] = ACTIONS(1533), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1533), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1533), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1533), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1533), + [anon_sym___deprecated_msg] = ACTIONS(1533), + [anon_sym___deprecated_enum_msg] = ACTIONS(1533), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1533), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1533), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1533), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1533), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1533), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1533), + [anon_sym_ATsynthesize] = ACTIONS(1531), + [anon_sym_ATdynamic] = ACTIONS(1531), + [anon_sym_NS_ENUM] = ACTIONS(1533), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1533), + [anon_sym_NS_OPTIONS] = ACTIONS(1533), + [anon_sym_typeof] = ACTIONS(1533), + [anon_sym___typeof] = ACTIONS(1533), + [anon_sym___typeof__] = ACTIONS(1533), + [sym_id] = ACTIONS(1533), + [sym_instancetype] = ACTIONS(1533), + [sym_Class] = ACTIONS(1533), + [sym_SEL] = ACTIONS(1533), + [sym_IMP] = ACTIONS(1533), + [sym_BOOL] = ACTIONS(1533), + [sym_auto] = ACTIONS(1533), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2936] = { + [sym_identifier] = ACTIONS(1573), + [aux_sym_preproc_def_token1] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1571), + [anon_sym_typedef] = ACTIONS(1573), + [anon_sym_extern] = ACTIONS(1573), + [anon_sym___attribute] = ACTIONS(1573), + [anon_sym___attribute__] = ACTIONS(1573), + [anon_sym___declspec] = ACTIONS(1573), + [anon_sym___cdecl] = ACTIONS(1573), + [anon_sym___clrcall] = ACTIONS(1573), + [anon_sym___stdcall] = ACTIONS(1573), + [anon_sym___fastcall] = ACTIONS(1573), + [anon_sym___thiscall] = ACTIONS(1573), + [anon_sym___vectorcall] = ACTIONS(1573), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_auto] = ACTIONS(1573), + [anon_sym_register] = ACTIONS(1573), + [anon_sym_inline] = ACTIONS(1573), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_volatile] = ACTIONS(1573), + [anon_sym_restrict] = ACTIONS(1573), + [anon_sym__Atomic] = ACTIONS(1573), + [anon_sym_in] = ACTIONS(1573), + [anon_sym_out] = ACTIONS(1573), + [anon_sym_inout] = ACTIONS(1573), + [anon_sym_bycopy] = ACTIONS(1573), + [anon_sym_byref] = ACTIONS(1573), + [anon_sym_oneway] = ACTIONS(1573), + [anon_sym__Nullable] = ACTIONS(1573), + [anon_sym__Nonnull] = ACTIONS(1573), + [anon_sym__Nullable_result] = ACTIONS(1573), + [anon_sym__Null_unspecified] = ACTIONS(1573), + [anon_sym___autoreleasing] = ACTIONS(1573), + [anon_sym___nullable] = ACTIONS(1573), + [anon_sym___nonnull] = ACTIONS(1573), + [anon_sym___strong] = ACTIONS(1573), + [anon_sym___weak] = ACTIONS(1573), + [anon_sym___bridge] = ACTIONS(1573), + [anon_sym___bridge_transfer] = ACTIONS(1573), + [anon_sym___bridge_retained] = ACTIONS(1573), + [anon_sym___unsafe_unretained] = ACTIONS(1573), + [anon_sym___block] = ACTIONS(1573), + [anon_sym___kindof] = ACTIONS(1573), + [anon_sym___unused] = ACTIONS(1573), + [anon_sym__Complex] = ACTIONS(1573), + [anon_sym___complex] = ACTIONS(1573), + [anon_sym_IBOutlet] = ACTIONS(1573), + [anon_sym_IBInspectable] = ACTIONS(1573), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1573), + [anon_sym_signed] = ACTIONS(1573), + [anon_sym_unsigned] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [sym_primitive_type] = ACTIONS(1573), + [anon_sym_enum] = ACTIONS(1573), + [anon_sym_struct] = ACTIONS(1573), + [anon_sym_union] = ACTIONS(1573), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1573), + [anon_sym_ATend] = ACTIONS(1571), + [sym_optional] = ACTIONS(1571), + [sym_required] = ACTIONS(1571), + [anon_sym_ATproperty] = ACTIONS(1571), + [sym_method_attribute_specifier] = ACTIONS(1573), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1573), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1573), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1573), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1573), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1573), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1573), + [anon_sym_NS_AVAILABLE] = ACTIONS(1573), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1573), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1573), + [anon_sym_API_AVAILABLE] = ACTIONS(1573), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1573), + [anon_sym_API_DEPRECATED] = ACTIONS(1573), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1573), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1573), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1573), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1573), + [anon_sym___deprecated_msg] = ACTIONS(1573), + [anon_sym___deprecated_enum_msg] = ACTIONS(1573), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1573), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1573), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1573), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1573), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1573), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1573), + [anon_sym_ATsynthesize] = ACTIONS(1571), + [anon_sym_ATdynamic] = ACTIONS(1571), + [anon_sym_NS_ENUM] = ACTIONS(1573), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1573), + [anon_sym_NS_OPTIONS] = ACTIONS(1573), + [anon_sym_typeof] = ACTIONS(1573), + [anon_sym___typeof] = ACTIONS(1573), + [anon_sym___typeof__] = ACTIONS(1573), + [sym_id] = ACTIONS(1573), + [sym_instancetype] = ACTIONS(1573), + [sym_Class] = ACTIONS(1573), + [sym_SEL] = ACTIONS(1573), + [sym_IMP] = ACTIONS(1573), + [sym_BOOL] = ACTIONS(1573), + [sym_auto] = ACTIONS(1573), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2937] = { + [sym_identifier] = ACTIONS(1659), + [aux_sym_preproc_def_token1] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1657), + [anon_sym_typedef] = ACTIONS(1659), + [anon_sym_extern] = ACTIONS(1659), + [anon_sym___attribute] = ACTIONS(1659), + [anon_sym___attribute__] = ACTIONS(1659), + [anon_sym___declspec] = ACTIONS(1659), + [anon_sym___cdecl] = ACTIONS(1659), + [anon_sym___clrcall] = ACTIONS(1659), + [anon_sym___stdcall] = ACTIONS(1659), + [anon_sym___fastcall] = ACTIONS(1659), + [anon_sym___thiscall] = ACTIONS(1659), + [anon_sym___vectorcall] = ACTIONS(1659), + [anon_sym_static] = ACTIONS(1659), + [anon_sym_auto] = ACTIONS(1659), + [anon_sym_register] = ACTIONS(1659), + [anon_sym_inline] = ACTIONS(1659), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1659), + [anon_sym_volatile] = ACTIONS(1659), + [anon_sym_restrict] = ACTIONS(1659), + [anon_sym__Atomic] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1659), + [anon_sym_out] = ACTIONS(1659), + [anon_sym_inout] = ACTIONS(1659), + [anon_sym_bycopy] = ACTIONS(1659), + [anon_sym_byref] = ACTIONS(1659), + [anon_sym_oneway] = ACTIONS(1659), + [anon_sym__Nullable] = ACTIONS(1659), + [anon_sym__Nonnull] = ACTIONS(1659), + [anon_sym__Nullable_result] = ACTIONS(1659), + [anon_sym__Null_unspecified] = ACTIONS(1659), + [anon_sym___autoreleasing] = ACTIONS(1659), + [anon_sym___nullable] = ACTIONS(1659), + [anon_sym___nonnull] = ACTIONS(1659), + [anon_sym___strong] = ACTIONS(1659), + [anon_sym___weak] = ACTIONS(1659), + [anon_sym___bridge] = ACTIONS(1659), + [anon_sym___bridge_transfer] = ACTIONS(1659), + [anon_sym___bridge_retained] = ACTIONS(1659), + [anon_sym___unsafe_unretained] = ACTIONS(1659), + [anon_sym___block] = ACTIONS(1659), + [anon_sym___kindof] = ACTIONS(1659), + [anon_sym___unused] = ACTIONS(1659), + [anon_sym__Complex] = ACTIONS(1659), + [anon_sym___complex] = ACTIONS(1659), + [anon_sym_IBOutlet] = ACTIONS(1659), + [anon_sym_IBInspectable] = ACTIONS(1659), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1659), + [anon_sym_signed] = ACTIONS(1659), + [anon_sym_unsigned] = ACTIONS(1659), + [anon_sym_long] = ACTIONS(1659), + [anon_sym_short] = ACTIONS(1659), + [sym_primitive_type] = ACTIONS(1659), + [anon_sym_enum] = ACTIONS(1659), + [anon_sym_struct] = ACTIONS(1659), + [anon_sym_union] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1659), + [anon_sym_ATend] = ACTIONS(1657), + [sym_optional] = ACTIONS(1657), + [sym_required] = ACTIONS(1657), + [anon_sym_ATproperty] = ACTIONS(1657), + [sym_method_attribute_specifier] = ACTIONS(1659), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1659), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1659), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1659), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1659), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1659), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1659), + [anon_sym_NS_AVAILABLE] = ACTIONS(1659), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1659), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1659), + [anon_sym_API_AVAILABLE] = ACTIONS(1659), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1659), + [anon_sym_API_DEPRECATED] = ACTIONS(1659), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1659), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1659), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1659), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1659), + [anon_sym___deprecated_msg] = ACTIONS(1659), + [anon_sym___deprecated_enum_msg] = ACTIONS(1659), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1659), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1659), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1659), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1659), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1659), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1659), + [anon_sym_ATsynthesize] = ACTIONS(1657), + [anon_sym_ATdynamic] = ACTIONS(1657), + [anon_sym_NS_ENUM] = ACTIONS(1659), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1659), + [anon_sym_NS_OPTIONS] = ACTIONS(1659), + [anon_sym_typeof] = ACTIONS(1659), + [anon_sym___typeof] = ACTIONS(1659), + [anon_sym___typeof__] = ACTIONS(1659), + [sym_id] = ACTIONS(1659), + [sym_instancetype] = ACTIONS(1659), + [sym_Class] = ACTIONS(1659), + [sym_SEL] = ACTIONS(1659), + [sym_IMP] = ACTIONS(1659), + [sym_BOOL] = ACTIONS(1659), + [sym_auto] = ACTIONS(1659), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2938] = { + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_def_token1] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_typedef] = ACTIONS(1563), + [anon_sym_extern] = ACTIONS(1563), + [anon_sym___attribute] = ACTIONS(1563), + [anon_sym___attribute__] = ACTIONS(1563), + [anon_sym___declspec] = ACTIONS(1563), + [anon_sym___cdecl] = ACTIONS(1563), + [anon_sym___clrcall] = ACTIONS(1563), + [anon_sym___stdcall] = ACTIONS(1563), + [anon_sym___fastcall] = ACTIONS(1563), + [anon_sym___thiscall] = ACTIONS(1563), + [anon_sym___vectorcall] = ACTIONS(1563), + [anon_sym_static] = ACTIONS(1563), + [anon_sym_auto] = ACTIONS(1563), + [anon_sym_register] = ACTIONS(1563), + [anon_sym_inline] = ACTIONS(1563), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1563), + [anon_sym_volatile] = ACTIONS(1563), + [anon_sym_restrict] = ACTIONS(1563), + [anon_sym__Atomic] = ACTIONS(1563), + [anon_sym_in] = ACTIONS(1563), + [anon_sym_out] = ACTIONS(1563), + [anon_sym_inout] = ACTIONS(1563), + [anon_sym_bycopy] = ACTIONS(1563), + [anon_sym_byref] = ACTIONS(1563), + [anon_sym_oneway] = ACTIONS(1563), + [anon_sym__Nullable] = ACTIONS(1563), + [anon_sym__Nonnull] = ACTIONS(1563), + [anon_sym__Nullable_result] = ACTIONS(1563), + [anon_sym__Null_unspecified] = ACTIONS(1563), + [anon_sym___autoreleasing] = ACTIONS(1563), + [anon_sym___nullable] = ACTIONS(1563), + [anon_sym___nonnull] = ACTIONS(1563), + [anon_sym___strong] = ACTIONS(1563), + [anon_sym___weak] = ACTIONS(1563), + [anon_sym___bridge] = ACTIONS(1563), + [anon_sym___bridge_transfer] = ACTIONS(1563), + [anon_sym___bridge_retained] = ACTIONS(1563), + [anon_sym___unsafe_unretained] = ACTIONS(1563), + [anon_sym___block] = ACTIONS(1563), + [anon_sym___kindof] = ACTIONS(1563), + [anon_sym___unused] = ACTIONS(1563), + [anon_sym__Complex] = ACTIONS(1563), + [anon_sym___complex] = ACTIONS(1563), + [anon_sym_IBOutlet] = ACTIONS(1563), + [anon_sym_IBInspectable] = ACTIONS(1563), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1563), + [anon_sym_signed] = ACTIONS(1563), + [anon_sym_unsigned] = ACTIONS(1563), + [anon_sym_long] = ACTIONS(1563), + [anon_sym_short] = ACTIONS(1563), + [sym_primitive_type] = ACTIONS(1563), + [anon_sym_enum] = ACTIONS(1563), + [anon_sym_struct] = ACTIONS(1563), + [anon_sym_union] = ACTIONS(1563), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1563), + [anon_sym_ATend] = ACTIONS(1561), + [sym_optional] = ACTIONS(1561), + [sym_required] = ACTIONS(1561), + [anon_sym_ATproperty] = ACTIONS(1561), + [sym_method_attribute_specifier] = ACTIONS(1563), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1563), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1563), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE] = ACTIONS(1563), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1563), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_API_AVAILABLE] = ACTIONS(1563), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_API_DEPRECATED] = ACTIONS(1563), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1563), + [anon_sym___deprecated_msg] = ACTIONS(1563), + [anon_sym___deprecated_enum_msg] = ACTIONS(1563), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1563), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1563), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1563), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1563), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1563), + [anon_sym_ATsynthesize] = ACTIONS(1561), + [anon_sym_ATdynamic] = ACTIONS(1561), + [anon_sym_NS_ENUM] = ACTIONS(1563), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1563), + [anon_sym_NS_OPTIONS] = ACTIONS(1563), + [anon_sym_typeof] = ACTIONS(1563), + [anon_sym___typeof] = ACTIONS(1563), + [anon_sym___typeof__] = ACTIONS(1563), + [sym_id] = ACTIONS(1563), + [sym_instancetype] = ACTIONS(1563), + [sym_Class] = ACTIONS(1563), + [sym_SEL] = ACTIONS(1563), + [sym_IMP] = ACTIONS(1563), + [sym_BOOL] = ACTIONS(1563), + [sym_auto] = ACTIONS(1563), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2939] = { + [sym_identifier] = ACTIONS(1435), + [aux_sym_preproc_def_token1] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_typedef] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym___attribute] = ACTIONS(1435), + [anon_sym___attribute__] = ACTIONS(1435), + [anon_sym___declspec] = ACTIONS(1435), + [anon_sym___cdecl] = ACTIONS(1435), + [anon_sym___clrcall] = ACTIONS(1435), + [anon_sym___stdcall] = ACTIONS(1435), + [anon_sym___fastcall] = ACTIONS(1435), + [anon_sym___thiscall] = ACTIONS(1435), + [anon_sym___vectorcall] = ACTIONS(1435), + [anon_sym_static] = ACTIONS(1435), + [anon_sym_auto] = ACTIONS(1435), + [anon_sym_register] = ACTIONS(1435), + [anon_sym_inline] = ACTIONS(1435), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_volatile] = ACTIONS(1435), + [anon_sym_restrict] = ACTIONS(1435), + [anon_sym__Atomic] = ACTIONS(1435), + [anon_sym_in] = ACTIONS(1435), + [anon_sym_out] = ACTIONS(1435), + [anon_sym_inout] = ACTIONS(1435), + [anon_sym_bycopy] = ACTIONS(1435), + [anon_sym_byref] = ACTIONS(1435), + [anon_sym_oneway] = ACTIONS(1435), + [anon_sym__Nullable] = ACTIONS(1435), + [anon_sym__Nonnull] = ACTIONS(1435), + [anon_sym__Nullable_result] = ACTIONS(1435), + [anon_sym__Null_unspecified] = ACTIONS(1435), + [anon_sym___autoreleasing] = ACTIONS(1435), + [anon_sym___nullable] = ACTIONS(1435), + [anon_sym___nonnull] = ACTIONS(1435), + [anon_sym___strong] = ACTIONS(1435), + [anon_sym___weak] = ACTIONS(1435), + [anon_sym___bridge] = ACTIONS(1435), + [anon_sym___bridge_transfer] = ACTIONS(1435), + [anon_sym___bridge_retained] = ACTIONS(1435), + [anon_sym___unsafe_unretained] = ACTIONS(1435), + [anon_sym___block] = ACTIONS(1435), + [anon_sym___kindof] = ACTIONS(1435), + [anon_sym___unused] = ACTIONS(1435), + [anon_sym__Complex] = ACTIONS(1435), + [anon_sym___complex] = ACTIONS(1435), + [anon_sym_IBOutlet] = ACTIONS(1435), + [anon_sym_IBInspectable] = ACTIONS(1435), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1435), + [anon_sym_signed] = ACTIONS(1435), + [anon_sym_unsigned] = ACTIONS(1435), + [anon_sym_long] = ACTIONS(1435), + [anon_sym_short] = ACTIONS(1435), + [sym_primitive_type] = ACTIONS(1435), + [anon_sym_enum] = ACTIONS(1435), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1435), + [anon_sym_ATend] = ACTIONS(1433), + [sym_optional] = ACTIONS(1433), + [sym_required] = ACTIONS(1433), + [anon_sym_ATproperty] = ACTIONS(1433), + [sym_method_attribute_specifier] = ACTIONS(1435), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1435), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1435), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1435), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1435), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1435), + [anon_sym_NS_AVAILABLE] = ACTIONS(1435), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1435), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_API_AVAILABLE] = ACTIONS(1435), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_API_DEPRECATED] = ACTIONS(1435), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1435), + [anon_sym___deprecated_msg] = ACTIONS(1435), + [anon_sym___deprecated_enum_msg] = ACTIONS(1435), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1435), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1435), + [anon_sym_ATsynthesize] = ACTIONS(1433), + [anon_sym_ATdynamic] = ACTIONS(1433), + [anon_sym_NS_ENUM] = ACTIONS(1435), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1435), + [anon_sym_NS_OPTIONS] = ACTIONS(1435), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___typeof] = ACTIONS(1435), + [anon_sym___typeof__] = ACTIONS(1435), + [sym_id] = ACTIONS(1435), + [sym_instancetype] = ACTIONS(1435), + [sym_Class] = ACTIONS(1435), + [sym_SEL] = ACTIONS(1435), + [sym_IMP] = ACTIONS(1435), + [sym_BOOL] = ACTIONS(1435), + [sym_auto] = ACTIONS(1435), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2940] = { + [sym_identifier] = ACTIONS(1643), + [aux_sym_preproc_def_token1] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_typedef] = ACTIONS(1643), + [anon_sym_extern] = ACTIONS(1643), + [anon_sym___attribute] = ACTIONS(1643), + [anon_sym___attribute__] = ACTIONS(1643), + [anon_sym___declspec] = ACTIONS(1643), + [anon_sym___cdecl] = ACTIONS(1643), + [anon_sym___clrcall] = ACTIONS(1643), + [anon_sym___stdcall] = ACTIONS(1643), + [anon_sym___fastcall] = ACTIONS(1643), + [anon_sym___thiscall] = ACTIONS(1643), + [anon_sym___vectorcall] = ACTIONS(1643), + [anon_sym_static] = ACTIONS(1643), + [anon_sym_auto] = ACTIONS(1643), + [anon_sym_register] = ACTIONS(1643), + [anon_sym_inline] = ACTIONS(1643), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1643), + [anon_sym_volatile] = ACTIONS(1643), + [anon_sym_restrict] = ACTIONS(1643), + [anon_sym__Atomic] = ACTIONS(1643), + [anon_sym_in] = ACTIONS(1643), + [anon_sym_out] = ACTIONS(1643), + [anon_sym_inout] = ACTIONS(1643), + [anon_sym_bycopy] = ACTIONS(1643), + [anon_sym_byref] = ACTIONS(1643), + [anon_sym_oneway] = ACTIONS(1643), + [anon_sym__Nullable] = ACTIONS(1643), + [anon_sym__Nonnull] = ACTIONS(1643), + [anon_sym__Nullable_result] = ACTIONS(1643), + [anon_sym__Null_unspecified] = ACTIONS(1643), + [anon_sym___autoreleasing] = ACTIONS(1643), + [anon_sym___nullable] = ACTIONS(1643), + [anon_sym___nonnull] = ACTIONS(1643), + [anon_sym___strong] = ACTIONS(1643), + [anon_sym___weak] = ACTIONS(1643), + [anon_sym___bridge] = ACTIONS(1643), + [anon_sym___bridge_transfer] = ACTIONS(1643), + [anon_sym___bridge_retained] = ACTIONS(1643), + [anon_sym___unsafe_unretained] = ACTIONS(1643), + [anon_sym___block] = ACTIONS(1643), + [anon_sym___kindof] = ACTIONS(1643), + [anon_sym___unused] = ACTIONS(1643), + [anon_sym__Complex] = ACTIONS(1643), + [anon_sym___complex] = ACTIONS(1643), + [anon_sym_IBOutlet] = ACTIONS(1643), + [anon_sym_IBInspectable] = ACTIONS(1643), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1643), + [anon_sym_signed] = ACTIONS(1643), + [anon_sym_unsigned] = ACTIONS(1643), + [anon_sym_long] = ACTIONS(1643), + [anon_sym_short] = ACTIONS(1643), + [sym_primitive_type] = ACTIONS(1643), + [anon_sym_enum] = ACTIONS(1643), + [anon_sym_struct] = ACTIONS(1643), + [anon_sym_union] = ACTIONS(1643), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1643), + [anon_sym_ATend] = ACTIONS(1641), + [sym_optional] = ACTIONS(1641), + [sym_required] = ACTIONS(1641), + [anon_sym_ATproperty] = ACTIONS(1641), + [sym_method_attribute_specifier] = ACTIONS(1643), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1643), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1643), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1643), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1643), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1643), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1643), + [anon_sym_NS_AVAILABLE] = ACTIONS(1643), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1643), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1643), + [anon_sym_API_AVAILABLE] = ACTIONS(1643), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1643), + [anon_sym_API_DEPRECATED] = ACTIONS(1643), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1643), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1643), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1643), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1643), + [anon_sym___deprecated_msg] = ACTIONS(1643), + [anon_sym___deprecated_enum_msg] = ACTIONS(1643), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1643), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1643), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1643), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1643), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1643), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1643), + [anon_sym_ATsynthesize] = ACTIONS(1641), + [anon_sym_ATdynamic] = ACTIONS(1641), + [anon_sym_NS_ENUM] = ACTIONS(1643), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1643), + [anon_sym_NS_OPTIONS] = ACTIONS(1643), + [anon_sym_typeof] = ACTIONS(1643), + [anon_sym___typeof] = ACTIONS(1643), + [anon_sym___typeof__] = ACTIONS(1643), + [sym_id] = ACTIONS(1643), + [sym_instancetype] = ACTIONS(1643), + [sym_Class] = ACTIONS(1643), + [sym_SEL] = ACTIONS(1643), + [sym_IMP] = ACTIONS(1643), + [sym_BOOL] = ACTIONS(1643), + [sym_auto] = ACTIONS(1643), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2941] = { + [sym_identifier] = ACTIONS(1435), + [aux_sym_preproc_def_token1] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_typedef] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym___attribute] = ACTIONS(1435), + [anon_sym___attribute__] = ACTIONS(1435), + [anon_sym___declspec] = ACTIONS(1435), + [anon_sym___cdecl] = ACTIONS(1435), + [anon_sym___clrcall] = ACTIONS(1435), + [anon_sym___stdcall] = ACTIONS(1435), + [anon_sym___fastcall] = ACTIONS(1435), + [anon_sym___thiscall] = ACTIONS(1435), + [anon_sym___vectorcall] = ACTIONS(1435), + [anon_sym_static] = ACTIONS(1435), + [anon_sym_auto] = ACTIONS(1435), + [anon_sym_register] = ACTIONS(1435), + [anon_sym_inline] = ACTIONS(1435), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_volatile] = ACTIONS(1435), + [anon_sym_restrict] = ACTIONS(1435), + [anon_sym__Atomic] = ACTIONS(1435), + [anon_sym_in] = ACTIONS(1435), + [anon_sym_out] = ACTIONS(1435), + [anon_sym_inout] = ACTIONS(1435), + [anon_sym_bycopy] = ACTIONS(1435), + [anon_sym_byref] = ACTIONS(1435), + [anon_sym_oneway] = ACTIONS(1435), + [anon_sym__Nullable] = ACTIONS(1435), + [anon_sym__Nonnull] = ACTIONS(1435), + [anon_sym__Nullable_result] = ACTIONS(1435), + [anon_sym__Null_unspecified] = ACTIONS(1435), + [anon_sym___autoreleasing] = ACTIONS(1435), + [anon_sym___nullable] = ACTIONS(1435), + [anon_sym___nonnull] = ACTIONS(1435), + [anon_sym___strong] = ACTIONS(1435), + [anon_sym___weak] = ACTIONS(1435), + [anon_sym___bridge] = ACTIONS(1435), + [anon_sym___bridge_transfer] = ACTIONS(1435), + [anon_sym___bridge_retained] = ACTIONS(1435), + [anon_sym___unsafe_unretained] = ACTIONS(1435), + [anon_sym___block] = ACTIONS(1435), + [anon_sym___kindof] = ACTIONS(1435), + [anon_sym___unused] = ACTIONS(1435), + [anon_sym__Complex] = ACTIONS(1435), + [anon_sym___complex] = ACTIONS(1435), + [anon_sym_IBOutlet] = ACTIONS(1435), + [anon_sym_IBInspectable] = ACTIONS(1435), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1435), + [anon_sym_signed] = ACTIONS(1435), + [anon_sym_unsigned] = ACTIONS(1435), + [anon_sym_long] = ACTIONS(1435), + [anon_sym_short] = ACTIONS(1435), + [sym_primitive_type] = ACTIONS(1435), + [anon_sym_enum] = ACTIONS(1435), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1435), + [anon_sym_ATend] = ACTIONS(1433), + [sym_optional] = ACTIONS(1433), + [sym_required] = ACTIONS(1433), + [anon_sym_ATproperty] = ACTIONS(1433), + [sym_method_attribute_specifier] = ACTIONS(1435), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1435), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1435), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1435), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1435), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1435), + [anon_sym_NS_AVAILABLE] = ACTIONS(1435), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1435), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_API_AVAILABLE] = ACTIONS(1435), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_API_DEPRECATED] = ACTIONS(1435), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1435), + [anon_sym___deprecated_msg] = ACTIONS(1435), + [anon_sym___deprecated_enum_msg] = ACTIONS(1435), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1435), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1435), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1435), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1435), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1435), + [anon_sym_ATsynthesize] = ACTIONS(1433), + [anon_sym_ATdynamic] = ACTIONS(1433), + [anon_sym_NS_ENUM] = ACTIONS(1435), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1435), + [anon_sym_NS_OPTIONS] = ACTIONS(1435), + [anon_sym_typeof] = ACTIONS(1435), + [anon_sym___typeof] = ACTIONS(1435), + [anon_sym___typeof__] = ACTIONS(1435), + [sym_id] = ACTIONS(1435), + [sym_instancetype] = ACTIONS(1435), + [sym_Class] = ACTIONS(1435), + [sym_SEL] = ACTIONS(1435), + [sym_IMP] = ACTIONS(1435), + [sym_BOOL] = ACTIONS(1435), + [sym_auto] = ACTIONS(1435), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2942] = { + [sym_identifier] = ACTIONS(1525), + [aux_sym_preproc_def_token1] = ACTIONS(1523), + [anon_sym_DASH] = ACTIONS(1523), + [anon_sym_PLUS] = ACTIONS(1523), + [anon_sym_typedef] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(1525), + [anon_sym___attribute] = ACTIONS(1525), + [anon_sym___attribute__] = ACTIONS(1525), + [anon_sym___declspec] = ACTIONS(1525), + [anon_sym___cdecl] = ACTIONS(1525), + [anon_sym___clrcall] = ACTIONS(1525), + [anon_sym___stdcall] = ACTIONS(1525), + [anon_sym___fastcall] = ACTIONS(1525), + [anon_sym___thiscall] = ACTIONS(1525), + [anon_sym___vectorcall] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_auto] = ACTIONS(1525), + [anon_sym_register] = ACTIONS(1525), + [anon_sym_inline] = ACTIONS(1525), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_volatile] = ACTIONS(1525), + [anon_sym_restrict] = ACTIONS(1525), + [anon_sym__Atomic] = ACTIONS(1525), + [anon_sym_in] = ACTIONS(1525), + [anon_sym_out] = ACTIONS(1525), + [anon_sym_inout] = ACTIONS(1525), + [anon_sym_bycopy] = ACTIONS(1525), + [anon_sym_byref] = ACTIONS(1525), + [anon_sym_oneway] = ACTIONS(1525), + [anon_sym__Nullable] = ACTIONS(1525), + [anon_sym__Nonnull] = ACTIONS(1525), + [anon_sym__Nullable_result] = ACTIONS(1525), + [anon_sym__Null_unspecified] = ACTIONS(1525), + [anon_sym___autoreleasing] = ACTIONS(1525), + [anon_sym___nullable] = ACTIONS(1525), + [anon_sym___nonnull] = ACTIONS(1525), + [anon_sym___strong] = ACTIONS(1525), + [anon_sym___weak] = ACTIONS(1525), + [anon_sym___bridge] = ACTIONS(1525), + [anon_sym___bridge_transfer] = ACTIONS(1525), + [anon_sym___bridge_retained] = ACTIONS(1525), + [anon_sym___unsafe_unretained] = ACTIONS(1525), + [anon_sym___block] = ACTIONS(1525), + [anon_sym___kindof] = ACTIONS(1525), + [anon_sym___unused] = ACTIONS(1525), + [anon_sym__Complex] = ACTIONS(1525), + [anon_sym___complex] = ACTIONS(1525), + [anon_sym_IBOutlet] = ACTIONS(1525), + [anon_sym_IBInspectable] = ACTIONS(1525), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1525), + [anon_sym_signed] = ACTIONS(1525), + [anon_sym_unsigned] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [sym_primitive_type] = ACTIONS(1525), + [anon_sym_enum] = ACTIONS(1525), + [anon_sym_struct] = ACTIONS(1525), + [anon_sym_union] = ACTIONS(1525), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1525), + [anon_sym_ATend] = ACTIONS(1523), + [sym_optional] = ACTIONS(1523), + [sym_required] = ACTIONS(1523), + [anon_sym_ATproperty] = ACTIONS(1523), + [sym_method_attribute_specifier] = ACTIONS(1525), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1525), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1525), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1525), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1525), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1525), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1525), + [anon_sym_NS_AVAILABLE] = ACTIONS(1525), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1525), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1525), + [anon_sym_API_AVAILABLE] = ACTIONS(1525), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1525), + [anon_sym_API_DEPRECATED] = ACTIONS(1525), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1525), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1525), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1525), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1525), + [anon_sym___deprecated_msg] = ACTIONS(1525), + [anon_sym___deprecated_enum_msg] = ACTIONS(1525), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1525), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1525), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1525), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1525), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1525), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1525), + [anon_sym_ATsynthesize] = ACTIONS(1523), + [anon_sym_ATdynamic] = ACTIONS(1523), + [anon_sym_NS_ENUM] = ACTIONS(1525), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1525), + [anon_sym_NS_OPTIONS] = ACTIONS(1525), + [anon_sym_typeof] = ACTIONS(1525), + [anon_sym___typeof] = ACTIONS(1525), + [anon_sym___typeof__] = ACTIONS(1525), + [sym_id] = ACTIONS(1525), + [sym_instancetype] = ACTIONS(1525), + [sym_Class] = ACTIONS(1525), + [sym_SEL] = ACTIONS(1525), + [sym_IMP] = ACTIONS(1525), + [sym_BOOL] = ACTIONS(1525), + [sym_auto] = ACTIONS(1525), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2943] = { + [sym__type_specifier] = STATE(4785), + [sym_sized_type_specifier] = STATE(4785), + [sym_enum_specifier] = STATE(4785), + [sym_struct_specifier] = STATE(4785), + [sym_union_specifier] = STATE(4785), + [sym__expression] = STATE(4451), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_macro_type_specifier] = STATE(4785), + [sym_ns_enum_specifier] = STATE(4785), + [sym_typeof_specifier] = STATE(4785), + [sym_atomic_specifier] = STATE(4785), + [sym_generic_type_specifier] = STATE(4785), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym__receiver] = STATE(4785), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(6920), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(6922), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(6942), + [anon_sym_enum] = ACTIONS(6926), + [anon_sym_struct] = ACTIONS(6928), + [anon_sym_union] = ACTIONS(59), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(6942), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(6942), + [sym_IMP] = ACTIONS(6942), + [sym_BOOL] = ACTIONS(6942), + [sym_auto] = ACTIONS(6942), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2944] = { + [sym_identifier] = ACTIONS(1417), + [aux_sym_preproc_def_token1] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_typedef] = ACTIONS(1417), + [anon_sym_extern] = ACTIONS(1417), + [anon_sym___attribute] = ACTIONS(1417), + [anon_sym___attribute__] = ACTIONS(1417), + [anon_sym___declspec] = ACTIONS(1417), + [anon_sym___cdecl] = ACTIONS(1417), + [anon_sym___clrcall] = ACTIONS(1417), + [anon_sym___stdcall] = ACTIONS(1417), + [anon_sym___fastcall] = ACTIONS(1417), + [anon_sym___thiscall] = ACTIONS(1417), + [anon_sym___vectorcall] = ACTIONS(1417), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_auto] = ACTIONS(1417), + [anon_sym_register] = ACTIONS(1417), + [anon_sym_inline] = ACTIONS(1417), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_volatile] = ACTIONS(1417), + [anon_sym_restrict] = ACTIONS(1417), + [anon_sym__Atomic] = ACTIONS(1417), + [anon_sym_in] = ACTIONS(1417), + [anon_sym_out] = ACTIONS(1417), + [anon_sym_inout] = ACTIONS(1417), + [anon_sym_bycopy] = ACTIONS(1417), + [anon_sym_byref] = ACTIONS(1417), + [anon_sym_oneway] = ACTIONS(1417), + [anon_sym__Nullable] = ACTIONS(1417), + [anon_sym__Nonnull] = ACTIONS(1417), + [anon_sym__Nullable_result] = ACTIONS(1417), + [anon_sym__Null_unspecified] = ACTIONS(1417), + [anon_sym___autoreleasing] = ACTIONS(1417), + [anon_sym___nullable] = ACTIONS(1417), + [anon_sym___nonnull] = ACTIONS(1417), + [anon_sym___strong] = ACTIONS(1417), + [anon_sym___weak] = ACTIONS(1417), + [anon_sym___bridge] = ACTIONS(1417), + [anon_sym___bridge_transfer] = ACTIONS(1417), + [anon_sym___bridge_retained] = ACTIONS(1417), + [anon_sym___unsafe_unretained] = ACTIONS(1417), + [anon_sym___block] = ACTIONS(1417), + [anon_sym___kindof] = ACTIONS(1417), + [anon_sym___unused] = ACTIONS(1417), + [anon_sym__Complex] = ACTIONS(1417), + [anon_sym___complex] = ACTIONS(1417), + [anon_sym_IBOutlet] = ACTIONS(1417), + [anon_sym_IBInspectable] = ACTIONS(1417), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1417), + [anon_sym_signed] = ACTIONS(1417), + [anon_sym_unsigned] = ACTIONS(1417), + [anon_sym_long] = ACTIONS(1417), + [anon_sym_short] = ACTIONS(1417), + [sym_primitive_type] = ACTIONS(1417), + [anon_sym_enum] = ACTIONS(1417), + [anon_sym_struct] = ACTIONS(1417), + [anon_sym_union] = ACTIONS(1417), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1417), + [anon_sym_ATend] = ACTIONS(1415), + [sym_optional] = ACTIONS(1415), + [sym_required] = ACTIONS(1415), + [anon_sym_ATproperty] = ACTIONS(1415), + [sym_method_attribute_specifier] = ACTIONS(1417), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1417), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1417), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1417), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1417), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1417), + [anon_sym_NS_AVAILABLE] = ACTIONS(1417), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1417), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_API_AVAILABLE] = ACTIONS(1417), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_API_DEPRECATED] = ACTIONS(1417), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1417), + [anon_sym___deprecated_msg] = ACTIONS(1417), + [anon_sym___deprecated_enum_msg] = ACTIONS(1417), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1417), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1417), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1417), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1417), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1417), + [anon_sym_ATsynthesize] = ACTIONS(1415), + [anon_sym_ATdynamic] = ACTIONS(1415), + [anon_sym_NS_ENUM] = ACTIONS(1417), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1417), + [anon_sym_NS_OPTIONS] = ACTIONS(1417), + [anon_sym_typeof] = ACTIONS(1417), + [anon_sym___typeof] = ACTIONS(1417), + [anon_sym___typeof__] = ACTIONS(1417), + [sym_id] = ACTIONS(1417), + [sym_instancetype] = ACTIONS(1417), + [sym_Class] = ACTIONS(1417), + [sym_SEL] = ACTIONS(1417), + [sym_IMP] = ACTIONS(1417), + [sym_BOOL] = ACTIONS(1417), + [sym_auto] = ACTIONS(1417), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2945] = { + [sym_attribute_specifier] = STATE(3192), + [sym_ms_declspec_modifier] = STATE(3192), + [sym_storage_class_specifier] = STATE(3192), + [sym_type_qualifier] = STATE(3192), + [sym__type_specifier] = STATE(3350), + [sym_sized_type_specifier] = STATE(3350), + [sym_enum_specifier] = STATE(3350), + [sym_struct_specifier] = STATE(3350), + [sym_union_specifier] = STATE(3350), + [sym_macro_type_specifier] = STATE(3350), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3350), + [sym_typeof_specifier] = STATE(3350), + [sym_atomic_specifier] = STATE(3350), + [sym_generic_type_specifier] = STATE(3350), + [aux_sym__declaration_specifiers_repeat1] = STATE(3192), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(6944), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(6944), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(6944), + [sym_IMP] = ACTIONS(6944), + [sym_BOOL] = ACTIONS(6944), + [sym_auto] = ACTIONS(6944), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2946] = { + [sym_attribute_specifier] = STATE(3192), + [sym_ms_declspec_modifier] = STATE(3192), + [sym_storage_class_specifier] = STATE(3192), + [sym_type_qualifier] = STATE(3192), + [sym__type_specifier] = STATE(3349), + [sym_sized_type_specifier] = STATE(3349), + [sym_enum_specifier] = STATE(3349), + [sym_struct_specifier] = STATE(3349), + [sym_union_specifier] = STATE(3349), + [sym_macro_type_specifier] = STATE(3349), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3349), + [sym_typeof_specifier] = STATE(3349), + [sym_atomic_specifier] = STATE(3349), + [sym_generic_type_specifier] = STATE(3349), + [aux_sym__declaration_specifiers_repeat1] = STATE(3192), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(6946), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(6946), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(6946), + [sym_IMP] = ACTIONS(6946), + [sym_BOOL] = ACTIONS(6946), + [sym_auto] = ACTIONS(6946), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2947] = { + [sym_attribute_specifier] = STATE(3192), + [sym_ms_declspec_modifier] = STATE(3192), + [sym_storage_class_specifier] = STATE(3192), + [sym_type_qualifier] = STATE(3192), + [sym__type_specifier] = STATE(3319), + [sym_sized_type_specifier] = STATE(3319), + [sym_enum_specifier] = STATE(3319), + [sym_struct_specifier] = STATE(3319), + [sym_union_specifier] = STATE(3319), + [sym_macro_type_specifier] = STATE(3319), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3319), + [sym_typeof_specifier] = STATE(3319), + [sym_atomic_specifier] = STATE(3319), + [sym_generic_type_specifier] = STATE(3319), + [aux_sym__declaration_specifiers_repeat1] = STATE(3192), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(6948), + [anon_sym_enum] = ACTIONS(55), + [anon_sym_struct] = ACTIONS(57), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(6948), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(6948), + [sym_IMP] = ACTIONS(6948), + [sym_BOOL] = ACTIONS(6948), + [sym_auto] = ACTIONS(6948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2948] = { + [sym_attribute_specifier] = STATE(3192), + [sym_ms_declspec_modifier] = STATE(3192), + [sym_storage_class_specifier] = STATE(3192), + [sym_type_qualifier] = STATE(3192), + [sym__type_specifier] = STATE(3319), + [sym_sized_type_specifier] = STATE(3319), + [sym_enum_specifier] = STATE(3319), + [sym_struct_specifier] = STATE(3319), + [sym_union_specifier] = STATE(3319), + [sym_macro_type_specifier] = STATE(3319), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_ns_enum_specifier] = STATE(3319), + [sym_typeof_specifier] = STATE(3319), + [sym_atomic_specifier] = STATE(3319), + [sym_generic_type_specifier] = STATE(3319), + [aux_sym__declaration_specifiers_repeat1] = STATE(3192), + [aux_sym_sized_type_specifier_repeat1] = STATE(3321), + [sym_identifier] = ACTIONS(2184), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [aux_sym_storage_class_specifier_token1] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(49), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(47), + [anon_sym_inout] = ACTIONS(47), + [anon_sym_bycopy] = ACTIONS(47), + [anon_sym_byref] = ACTIONS(47), + [anon_sym_oneway] = ACTIONS(47), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(47), + [anon_sym__Nullable_result] = ACTIONS(47), + [anon_sym__Null_unspecified] = ACTIONS(47), + [anon_sym___autoreleasing] = ACTIONS(47), + [anon_sym___nullable] = ACTIONS(47), + [anon_sym___nonnull] = ACTIONS(47), + [anon_sym___strong] = ACTIONS(47), + [anon_sym___weak] = ACTIONS(47), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(47), + [anon_sym___bridge_retained] = ACTIONS(47), + [anon_sym___unsafe_unretained] = ACTIONS(47), + [anon_sym___block] = ACTIONS(47), + [anon_sym___kindof] = ACTIONS(47), + [anon_sym___unused] = ACTIONS(47), + [anon_sym__Complex] = ACTIONS(47), + [anon_sym___complex] = ACTIONS(47), + [anon_sym_IBOutlet] = ACTIONS(47), + [anon_sym_IBInspectable] = ACTIONS(47), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(51), + [anon_sym_unsigned] = ACTIONS(51), + [anon_sym_long] = ACTIONS(51), + [anon_sym_short] = ACTIONS(51), + [sym_primitive_type] = ACTIONS(6948), + [anon_sym_enum] = ACTIONS(6505), + [anon_sym_struct] = ACTIONS(6507), + [anon_sym_union] = ACTIONS(59), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM] = ACTIONS(125), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(125), + [anon_sym_NS_OPTIONS] = ACTIONS(125), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym___typeof] = ACTIONS(127), + [anon_sym___typeof__] = ACTIONS(127), + [sym_id] = ACTIONS(131), + [sym_instancetype] = ACTIONS(6948), + [sym_Class] = ACTIONS(131), + [sym_SEL] = ACTIONS(6948), + [sym_IMP] = ACTIONS(6948), + [sym_BOOL] = ACTIONS(6948), + [sym_auto] = ACTIONS(6948), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2949] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(6950), + [anon_sym_PLUS] = ACTIONS(6950), + [anon_sym_STAR] = ACTIONS(6950), + [anon_sym_SLASH] = ACTIONS(6950), + [anon_sym_PERCENT] = ACTIONS(6950), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(6952), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_CARET] = ACTIONS(6950), + [anon_sym_AMP] = ACTIONS(6950), + [anon_sym_EQ_EQ] = ACTIONS(6952), + [anon_sym_BANG_EQ] = ACTIONS(6952), + [anon_sym_GT] = ACTIONS(6950), + [anon_sym_GT_EQ] = ACTIONS(6952), + [anon_sym_LT_EQ] = ACTIONS(6952), + [anon_sym_LT] = ACTIONS(6950), + [anon_sym_LT_LT] = ACTIONS(6950), + [anon_sym_GT_GT] = ACTIONS(6950), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_EQ] = ACTIONS(6950), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_STAR_EQ] = ACTIONS(6952), + [anon_sym_SLASH_EQ] = ACTIONS(6952), + [anon_sym_PERCENT_EQ] = ACTIONS(6952), + [anon_sym_PLUS_EQ] = ACTIONS(6952), + [anon_sym_DASH_EQ] = ACTIONS(6952), + [anon_sym_LT_LT_EQ] = ACTIONS(6952), + [anon_sym_GT_GT_EQ] = ACTIONS(6952), + [anon_sym_AMP_EQ] = ACTIONS(6952), + [anon_sym_CARET_EQ] = ACTIONS(6952), + [anon_sym_PIPE_EQ] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2950] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6962), + [anon_sym_COMMA] = ACTIONS(6964), + [anon_sym_RPAREN] = ACTIONS(6964), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(6962), + [anon_sym_PLUS] = ACTIONS(6962), + [anon_sym_STAR] = ACTIONS(6962), + [anon_sym_SLASH] = ACTIONS(6962), + [anon_sym_PERCENT] = ACTIONS(6962), + [anon_sym_PIPE_PIPE] = ACTIONS(6964), + [anon_sym_AMP_AMP] = ACTIONS(6964), + [anon_sym_PIPE] = ACTIONS(6962), + [anon_sym_CARET] = ACTIONS(6962), + [anon_sym_AMP] = ACTIONS(6962), + [anon_sym_EQ_EQ] = ACTIONS(6964), + [anon_sym_BANG_EQ] = ACTIONS(6964), + [anon_sym_GT] = ACTIONS(6962), + [anon_sym_GT_EQ] = ACTIONS(6964), + [anon_sym_LT_EQ] = ACTIONS(6964), + [anon_sym_LT] = ACTIONS(6962), + [anon_sym_LT_LT] = ACTIONS(6962), + [anon_sym_GT_GT] = ACTIONS(6962), + [anon_sym_SEMI] = ACTIONS(6964), + [anon_sym___attribute] = ACTIONS(6962), + [anon_sym___attribute__] = ACTIONS(6962), + [anon_sym_RBRACE] = ACTIONS(6964), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6964), + [anon_sym_EQ] = ACTIONS(6962), + [anon_sym_const] = ACTIONS(6962), + [anon_sym_volatile] = ACTIONS(6962), + [anon_sym_restrict] = ACTIONS(6962), + [anon_sym__Atomic] = ACTIONS(6962), + [anon_sym_in] = ACTIONS(6962), + [anon_sym_out] = ACTIONS(6962), + [anon_sym_inout] = ACTIONS(6962), + [anon_sym_bycopy] = ACTIONS(6962), + [anon_sym_byref] = ACTIONS(6962), + [anon_sym_oneway] = ACTIONS(6962), + [anon_sym__Nullable] = ACTIONS(6962), + [anon_sym__Nonnull] = ACTIONS(6962), + [anon_sym__Nullable_result] = ACTIONS(6962), + [anon_sym__Null_unspecified] = ACTIONS(6962), + [anon_sym___autoreleasing] = ACTIONS(6962), + [anon_sym___nullable] = ACTIONS(6962), + [anon_sym___nonnull] = ACTIONS(6962), + [anon_sym___strong] = ACTIONS(6962), + [anon_sym___weak] = ACTIONS(6962), + [anon_sym___bridge] = ACTIONS(6962), + [anon_sym___bridge_transfer] = ACTIONS(6962), + [anon_sym___bridge_retained] = ACTIONS(6962), + [anon_sym___unsafe_unretained] = ACTIONS(6962), + [anon_sym___block] = ACTIONS(6962), + [anon_sym___kindof] = ACTIONS(6962), + [anon_sym___unused] = ACTIONS(6962), + [anon_sym__Complex] = ACTIONS(6962), + [anon_sym___complex] = ACTIONS(6962), + [anon_sym_IBOutlet] = ACTIONS(6962), + [anon_sym_IBInspectable] = ACTIONS(6962), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6962), + [anon_sym_COLON] = ACTIONS(6964), + [anon_sym_QMARK] = ACTIONS(6964), + [anon_sym_STAR_EQ] = ACTIONS(6964), + [anon_sym_SLASH_EQ] = ACTIONS(6964), + [anon_sym_PERCENT_EQ] = ACTIONS(6964), + [anon_sym_PLUS_EQ] = ACTIONS(6964), + [anon_sym_DASH_EQ] = ACTIONS(6964), + [anon_sym_LT_LT_EQ] = ACTIONS(6964), + [anon_sym_GT_GT_EQ] = ACTIONS(6964), + [anon_sym_AMP_EQ] = ACTIONS(6964), + [anon_sym_CARET_EQ] = ACTIONS(6964), + [anon_sym_PIPE_EQ] = ACTIONS(6964), + [anon_sym_DASH_DASH] = ACTIONS(6964), + [anon_sym_PLUS_PLUS] = ACTIONS(6964), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6962), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6962), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6962), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6962), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6962), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6962), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6962), + [anon_sym_NS_AVAILABLE] = ACTIONS(6962), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6962), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6962), + [anon_sym_API_AVAILABLE] = ACTIONS(6962), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6962), + [anon_sym_API_DEPRECATED] = ACTIONS(6962), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6962), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6962), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6962), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6962), + [anon_sym___deprecated_msg] = ACTIONS(6962), + [anon_sym___deprecated_enum_msg] = ACTIONS(6962), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6962), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6962), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6962), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6962), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6962), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6962), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2951] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6966), + [anon_sym_COMMA] = ACTIONS(6968), + [anon_sym_RPAREN] = ACTIONS(6968), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(6970), + [anon_sym_PLUS] = ACTIONS(6970), + [anon_sym_STAR] = ACTIONS(6972), + [anon_sym_SLASH] = ACTIONS(6972), + [anon_sym_PERCENT] = ACTIONS(6972), + [anon_sym_PIPE_PIPE] = ACTIONS(6974), + [anon_sym_AMP_AMP] = ACTIONS(6976), + [anon_sym_PIPE] = ACTIONS(6978), + [anon_sym_CARET] = ACTIONS(6980), + [anon_sym_AMP] = ACTIONS(6982), + [anon_sym_EQ_EQ] = ACTIONS(6984), + [anon_sym_BANG_EQ] = ACTIONS(6984), + [anon_sym_GT] = ACTIONS(6986), + [anon_sym_GT_EQ] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(6988), + [anon_sym_LT] = ACTIONS(6986), + [anon_sym_LT_LT] = ACTIONS(6990), + [anon_sym_GT_GT] = ACTIONS(6990), + [anon_sym_SEMI] = ACTIONS(6968), + [anon_sym___attribute] = ACTIONS(6966), + [anon_sym___attribute__] = ACTIONS(6966), + [anon_sym_RBRACE] = ACTIONS(6968), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6968), + [anon_sym_EQ] = ACTIONS(6966), + [anon_sym_const] = ACTIONS(6966), + [anon_sym_volatile] = ACTIONS(6966), + [anon_sym_restrict] = ACTIONS(6966), + [anon_sym__Atomic] = ACTIONS(6966), + [anon_sym_in] = ACTIONS(6966), + [anon_sym_out] = ACTIONS(6966), + [anon_sym_inout] = ACTIONS(6966), + [anon_sym_bycopy] = ACTIONS(6966), + [anon_sym_byref] = ACTIONS(6966), + [anon_sym_oneway] = ACTIONS(6966), + [anon_sym__Nullable] = ACTIONS(6966), + [anon_sym__Nonnull] = ACTIONS(6966), + [anon_sym__Nullable_result] = ACTIONS(6966), + [anon_sym__Null_unspecified] = ACTIONS(6966), + [anon_sym___autoreleasing] = ACTIONS(6966), + [anon_sym___nullable] = ACTIONS(6966), + [anon_sym___nonnull] = ACTIONS(6966), + [anon_sym___strong] = ACTIONS(6966), + [anon_sym___weak] = ACTIONS(6966), + [anon_sym___bridge] = ACTIONS(6966), + [anon_sym___bridge_transfer] = ACTIONS(6966), + [anon_sym___bridge_retained] = ACTIONS(6966), + [anon_sym___unsafe_unretained] = ACTIONS(6966), + [anon_sym___block] = ACTIONS(6966), + [anon_sym___kindof] = ACTIONS(6966), + [anon_sym___unused] = ACTIONS(6966), + [anon_sym__Complex] = ACTIONS(6966), + [anon_sym___complex] = ACTIONS(6966), + [anon_sym_IBOutlet] = ACTIONS(6966), + [anon_sym_IBInspectable] = ACTIONS(6966), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6966), + [anon_sym_COLON] = ACTIONS(6968), + [anon_sym_QMARK] = ACTIONS(6992), + [anon_sym_STAR_EQ] = ACTIONS(6968), + [anon_sym_SLASH_EQ] = ACTIONS(6968), + [anon_sym_PERCENT_EQ] = ACTIONS(6968), + [anon_sym_PLUS_EQ] = ACTIONS(6968), + [anon_sym_DASH_EQ] = ACTIONS(6968), + [anon_sym_LT_LT_EQ] = ACTIONS(6968), + [anon_sym_GT_GT_EQ] = ACTIONS(6968), + [anon_sym_AMP_EQ] = ACTIONS(6968), + [anon_sym_CARET_EQ] = ACTIONS(6968), + [anon_sym_PIPE_EQ] = ACTIONS(6968), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6966), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6966), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6966), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6966), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6966), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6966), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6966), + [anon_sym_NS_AVAILABLE] = ACTIONS(6966), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6966), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6966), + [anon_sym_API_AVAILABLE] = ACTIONS(6966), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6966), + [anon_sym_API_DEPRECATED] = ACTIONS(6966), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6966), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6966), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6966), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6966), + [anon_sym___deprecated_msg] = ACTIONS(6966), + [anon_sym___deprecated_enum_msg] = ACTIONS(6966), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6966), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6966), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6966), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6966), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6966), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6966), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2952] = { [sym_identifier] = ACTIONS(6994), [aux_sym_preproc_def_token1] = ACTIONS(6996), - [anon_sym_COMMA] = ACTIONS(6996), - [anon_sym_LPAREN2] = ACTIONS(6996), [anon_sym_DASH] = ACTIONS(6996), [anon_sym_PLUS] = ACTIONS(6996), - [anon_sym_LT] = ACTIONS(6996), - [anon_sym_SEMI] = ACTIONS(6996), + [anon_sym_SEMI] = ACTIONS(6998), [anon_sym_typedef] = ACTIONS(6994), [anon_sym_extern] = ACTIONS(6994), [anon_sym___attribute] = ACTIONS(6994), [anon_sym___attribute__] = ACTIONS(6994), [anon_sym___declspec] = ACTIONS(6994), - [anon_sym_LBRACE] = ACTIONS(6996), + [anon_sym___cdecl] = ACTIONS(6994), + [anon_sym___clrcall] = ACTIONS(6994), + [anon_sym___stdcall] = ACTIONS(6994), + [anon_sym___fastcall] = ACTIONS(6994), + [anon_sym___thiscall] = ACTIONS(6994), + [anon_sym___vectorcall] = ACTIONS(6994), [anon_sym_static] = ACTIONS(6994), [anon_sym_auto] = ACTIONS(6994), [anon_sym_register] = ACTIONS(6994), @@ -491893,18 +484231,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(6994), [sym_primitive_type] = ACTIONS(6994), [anon_sym_enum] = ACTIONS(6994), - [anon_sym_COLON] = ACTIONS(6996), - [anon_sym_NS_ENUM] = ACTIONS(6994), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(6994), - [anon_sym_NS_OPTIONS] = ACTIONS(6994), [anon_sym_struct] = ACTIONS(6994), [anon_sym_union] = ACTIONS(6994), [sym_comment] = ACTIONS(3), [sym__ns_assume_nonnull_declaration] = ACTIONS(6994), [anon_sym_ATend] = ACTIONS(6996), - [sym_optional] = ACTIONS(6996), - [sym_required] = ACTIONS(6996), - [anon_sym_ATproperty] = ACTIONS(6996), [sym_method_attribute_specifier] = ACTIONS(6994), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6994), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6994), @@ -491930,6 +484261,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6994), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6994), [anon_sym_NS_SWIFT_NAME] = ACTIONS(6994), + [anon_sym_ATsynthesize] = ACTIONS(6996), + [anon_sym_ATdynamic] = ACTIONS(6996), + [anon_sym_NS_ENUM] = ACTIONS(6994), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(6994), + [anon_sym_NS_OPTIONS] = ACTIONS(6994), [anon_sym_typeof] = ACTIONS(6994), [anon_sym___typeof] = ACTIONS(6994), [anon_sym___typeof__] = ACTIONS(6994), @@ -491947,110 +484283,1109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3006] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(6998), - [anon_sym_COMMA] = ACTIONS(7000), - [anon_sym_RPAREN] = ACTIONS(7000), - [anon_sym_LPAREN2] = ACTIONS(7002), + [2953] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(6970), + [anon_sym_PLUS] = ACTIONS(6970), + [anon_sym_STAR] = ACTIONS(6972), + [anon_sym_SLASH] = ACTIONS(6972), + [anon_sym_PERCENT] = ACTIONS(6972), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(6952), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_CARET] = ACTIONS(6950), + [anon_sym_AMP] = ACTIONS(6950), + [anon_sym_EQ_EQ] = ACTIONS(6952), + [anon_sym_BANG_EQ] = ACTIONS(6952), + [anon_sym_GT] = ACTIONS(6986), + [anon_sym_GT_EQ] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(6988), + [anon_sym_LT] = ACTIONS(6986), + [anon_sym_LT_LT] = ACTIONS(6990), + [anon_sym_GT_GT] = ACTIONS(6990), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_EQ] = ACTIONS(6950), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_STAR_EQ] = ACTIONS(6952), + [anon_sym_SLASH_EQ] = ACTIONS(6952), + [anon_sym_PERCENT_EQ] = ACTIONS(6952), + [anon_sym_PLUS_EQ] = ACTIONS(6952), + [anon_sym_DASH_EQ] = ACTIONS(6952), + [anon_sym_LT_LT_EQ] = ACTIONS(6952), + [anon_sym_GT_GT_EQ] = ACTIONS(6952), + [anon_sym_AMP_EQ] = ACTIONS(6952), + [anon_sym_CARET_EQ] = ACTIONS(6952), + [anon_sym_PIPE_EQ] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2954] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(6970), + [anon_sym_PLUS] = ACTIONS(6970), + [anon_sym_STAR] = ACTIONS(6972), + [anon_sym_SLASH] = ACTIONS(6972), + [anon_sym_PERCENT] = ACTIONS(6972), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(6952), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_CARET] = ACTIONS(6950), + [anon_sym_AMP] = ACTIONS(6950), + [anon_sym_EQ_EQ] = ACTIONS(6984), + [anon_sym_BANG_EQ] = ACTIONS(6984), + [anon_sym_GT] = ACTIONS(6986), + [anon_sym_GT_EQ] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(6988), + [anon_sym_LT] = ACTIONS(6986), + [anon_sym_LT_LT] = ACTIONS(6990), + [anon_sym_GT_GT] = ACTIONS(6990), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_EQ] = ACTIONS(6950), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_STAR_EQ] = ACTIONS(6952), + [anon_sym_SLASH_EQ] = ACTIONS(6952), + [anon_sym_PERCENT_EQ] = ACTIONS(6952), + [anon_sym_PLUS_EQ] = ACTIONS(6952), + [anon_sym_DASH_EQ] = ACTIONS(6952), + [anon_sym_LT_LT_EQ] = ACTIONS(6952), + [anon_sym_GT_GT_EQ] = ACTIONS(6952), + [anon_sym_AMP_EQ] = ACTIONS(6952), + [anon_sym_CARET_EQ] = ACTIONS(6952), + [anon_sym_PIPE_EQ] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2955] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(6970), + [anon_sym_PLUS] = ACTIONS(6970), + [anon_sym_STAR] = ACTIONS(6972), + [anon_sym_SLASH] = ACTIONS(6972), + [anon_sym_PERCENT] = ACTIONS(6972), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(6952), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_CARET] = ACTIONS(6950), + [anon_sym_AMP] = ACTIONS(6982), + [anon_sym_EQ_EQ] = ACTIONS(6984), + [anon_sym_BANG_EQ] = ACTIONS(6984), + [anon_sym_GT] = ACTIONS(6986), + [anon_sym_GT_EQ] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(6988), + [anon_sym_LT] = ACTIONS(6986), + [anon_sym_LT_LT] = ACTIONS(6990), + [anon_sym_GT_GT] = ACTIONS(6990), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_EQ] = ACTIONS(6950), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_STAR_EQ] = ACTIONS(6952), + [anon_sym_SLASH_EQ] = ACTIONS(6952), + [anon_sym_PERCENT_EQ] = ACTIONS(6952), + [anon_sym_PLUS_EQ] = ACTIONS(6952), + [anon_sym_DASH_EQ] = ACTIONS(6952), + [anon_sym_LT_LT_EQ] = ACTIONS(6952), + [anon_sym_GT_GT_EQ] = ACTIONS(6952), + [anon_sym_AMP_EQ] = ACTIONS(6952), + [anon_sym_CARET_EQ] = ACTIONS(6952), + [anon_sym_PIPE_EQ] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2956] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(7000), + [anon_sym_COMMA] = ACTIONS(7002), + [anon_sym_RPAREN] = ACTIONS(7002), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(6970), + [anon_sym_PLUS] = ACTIONS(6970), + [anon_sym_STAR] = ACTIONS(6972), + [anon_sym_SLASH] = ACTIONS(6972), + [anon_sym_PERCENT] = ACTIONS(6972), + [anon_sym_PIPE_PIPE] = ACTIONS(6974), + [anon_sym_AMP_AMP] = ACTIONS(6976), + [anon_sym_PIPE] = ACTIONS(6978), + [anon_sym_CARET] = ACTIONS(6980), + [anon_sym_AMP] = ACTIONS(6982), + [anon_sym_EQ_EQ] = ACTIONS(6984), + [anon_sym_BANG_EQ] = ACTIONS(6984), + [anon_sym_GT] = ACTIONS(6986), + [anon_sym_GT_EQ] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(6988), + [anon_sym_LT] = ACTIONS(6986), + [anon_sym_LT_LT] = ACTIONS(6990), + [anon_sym_GT_GT] = ACTIONS(6990), + [anon_sym_SEMI] = ACTIONS(7002), + [anon_sym___attribute] = ACTIONS(7000), + [anon_sym___attribute__] = ACTIONS(7000), + [anon_sym_RBRACE] = ACTIONS(7002), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(7002), + [anon_sym_EQ] = ACTIONS(7000), + [anon_sym_const] = ACTIONS(7000), + [anon_sym_volatile] = ACTIONS(7000), + [anon_sym_restrict] = ACTIONS(7000), + [anon_sym__Atomic] = ACTIONS(7000), + [anon_sym_in] = ACTIONS(7000), + [anon_sym_out] = ACTIONS(7000), + [anon_sym_inout] = ACTIONS(7000), + [anon_sym_bycopy] = ACTIONS(7000), + [anon_sym_byref] = ACTIONS(7000), + [anon_sym_oneway] = ACTIONS(7000), + [anon_sym__Nullable] = ACTIONS(7000), + [anon_sym__Nonnull] = ACTIONS(7000), + [anon_sym__Nullable_result] = ACTIONS(7000), + [anon_sym__Null_unspecified] = ACTIONS(7000), + [anon_sym___autoreleasing] = ACTIONS(7000), + [anon_sym___nullable] = ACTIONS(7000), + [anon_sym___nonnull] = ACTIONS(7000), + [anon_sym___strong] = ACTIONS(7000), + [anon_sym___weak] = ACTIONS(7000), + [anon_sym___bridge] = ACTIONS(7000), + [anon_sym___bridge_transfer] = ACTIONS(7000), + [anon_sym___bridge_retained] = ACTIONS(7000), + [anon_sym___unsafe_unretained] = ACTIONS(7000), + [anon_sym___block] = ACTIONS(7000), + [anon_sym___kindof] = ACTIONS(7000), + [anon_sym___unused] = ACTIONS(7000), + [anon_sym__Complex] = ACTIONS(7000), + [anon_sym___complex] = ACTIONS(7000), + [anon_sym_IBOutlet] = ACTIONS(7000), + [anon_sym_IBInspectable] = ACTIONS(7000), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7000), + [anon_sym_COLON] = ACTIONS(7002), + [anon_sym_QMARK] = ACTIONS(7002), + [anon_sym_STAR_EQ] = ACTIONS(7002), + [anon_sym_SLASH_EQ] = ACTIONS(7002), + [anon_sym_PERCENT_EQ] = ACTIONS(7002), + [anon_sym_PLUS_EQ] = ACTIONS(7002), + [anon_sym_DASH_EQ] = ACTIONS(7002), + [anon_sym_LT_LT_EQ] = ACTIONS(7002), + [anon_sym_GT_GT_EQ] = ACTIONS(7002), + [anon_sym_AMP_EQ] = ACTIONS(7002), + [anon_sym_CARET_EQ] = ACTIONS(7002), + [anon_sym_PIPE_EQ] = ACTIONS(7002), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7000), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7000), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7000), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7000), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7000), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7000), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7000), + [anon_sym_NS_AVAILABLE] = ACTIONS(7000), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7000), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7000), + [anon_sym_API_AVAILABLE] = ACTIONS(7000), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7000), + [anon_sym_API_DEPRECATED] = ACTIONS(7000), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7000), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7000), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7000), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7000), + [anon_sym___deprecated_msg] = ACTIONS(7000), + [anon_sym___deprecated_enum_msg] = ACTIONS(7000), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7000), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7000), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7000), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7000), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7000), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7000), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2957] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(6970), + [anon_sym_PLUS] = ACTIONS(6970), + [anon_sym_STAR] = ACTIONS(6972), + [anon_sym_SLASH] = ACTIONS(6972), + [anon_sym_PERCENT] = ACTIONS(6972), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(6952), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_CARET] = ACTIONS(6980), + [anon_sym_AMP] = ACTIONS(6982), + [anon_sym_EQ_EQ] = ACTIONS(6984), + [anon_sym_BANG_EQ] = ACTIONS(6984), + [anon_sym_GT] = ACTIONS(6986), + [anon_sym_GT_EQ] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(6988), + [anon_sym_LT] = ACTIONS(6986), + [anon_sym_LT_LT] = ACTIONS(6990), + [anon_sym_GT_GT] = ACTIONS(6990), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_EQ] = ACTIONS(6950), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_STAR_EQ] = ACTIONS(6952), + [anon_sym_SLASH_EQ] = ACTIONS(6952), + [anon_sym_PERCENT_EQ] = ACTIONS(6952), + [anon_sym_PLUS_EQ] = ACTIONS(6952), + [anon_sym_DASH_EQ] = ACTIONS(6952), + [anon_sym_LT_LT_EQ] = ACTIONS(6952), + [anon_sym_GT_GT_EQ] = ACTIONS(6952), + [anon_sym_AMP_EQ] = ACTIONS(6952), + [anon_sym_CARET_EQ] = ACTIONS(6952), + [anon_sym_PIPE_EQ] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2958] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(7004), + [anon_sym_COMMA] = ACTIONS(7006), + [anon_sym_RPAREN] = ACTIONS(7006), + [anon_sym_LPAREN2] = ACTIONS(6954), [anon_sym_DASH] = ACTIONS(7004), [anon_sym_PLUS] = ACTIONS(7004), - [anon_sym_STAR] = ACTIONS(7006), - [anon_sym_SLASH] = ACTIONS(7006), - [anon_sym_PERCENT] = ACTIONS(7006), - [anon_sym_PIPE_PIPE] = ACTIONS(7008), - [anon_sym_AMP_AMP] = ACTIONS(7010), - [anon_sym_PIPE] = ACTIONS(7012), + [anon_sym_STAR] = ACTIONS(7004), + [anon_sym_SLASH] = ACTIONS(7004), + [anon_sym_PERCENT] = ACTIONS(7004), + [anon_sym_PIPE_PIPE] = ACTIONS(7006), + [anon_sym_AMP_AMP] = ACTIONS(7006), + [anon_sym_PIPE] = ACTIONS(7004), + [anon_sym_CARET] = ACTIONS(7004), + [anon_sym_AMP] = ACTIONS(7004), + [anon_sym_EQ_EQ] = ACTIONS(7006), + [anon_sym_BANG_EQ] = ACTIONS(7006), + [anon_sym_GT] = ACTIONS(7004), + [anon_sym_GT_EQ] = ACTIONS(7006), + [anon_sym_LT_EQ] = ACTIONS(7006), + [anon_sym_LT] = ACTIONS(7004), + [anon_sym_LT_LT] = ACTIONS(7004), + [anon_sym_GT_GT] = ACTIONS(7004), + [anon_sym_SEMI] = ACTIONS(7006), + [anon_sym___attribute] = ACTIONS(7004), + [anon_sym___attribute__] = ACTIONS(7004), + [anon_sym_RBRACE] = ACTIONS(7006), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(7006), + [anon_sym_EQ] = ACTIONS(7004), + [anon_sym_const] = ACTIONS(7004), + [anon_sym_volatile] = ACTIONS(7004), + [anon_sym_restrict] = ACTIONS(7004), + [anon_sym__Atomic] = ACTIONS(7004), + [anon_sym_in] = ACTIONS(7004), + [anon_sym_out] = ACTIONS(7004), + [anon_sym_inout] = ACTIONS(7004), + [anon_sym_bycopy] = ACTIONS(7004), + [anon_sym_byref] = ACTIONS(7004), + [anon_sym_oneway] = ACTIONS(7004), + [anon_sym__Nullable] = ACTIONS(7004), + [anon_sym__Nonnull] = ACTIONS(7004), + [anon_sym__Nullable_result] = ACTIONS(7004), + [anon_sym__Null_unspecified] = ACTIONS(7004), + [anon_sym___autoreleasing] = ACTIONS(7004), + [anon_sym___nullable] = ACTIONS(7004), + [anon_sym___nonnull] = ACTIONS(7004), + [anon_sym___strong] = ACTIONS(7004), + [anon_sym___weak] = ACTIONS(7004), + [anon_sym___bridge] = ACTIONS(7004), + [anon_sym___bridge_transfer] = ACTIONS(7004), + [anon_sym___bridge_retained] = ACTIONS(7004), + [anon_sym___unsafe_unretained] = ACTIONS(7004), + [anon_sym___block] = ACTIONS(7004), + [anon_sym___kindof] = ACTIONS(7004), + [anon_sym___unused] = ACTIONS(7004), + [anon_sym__Complex] = ACTIONS(7004), + [anon_sym___complex] = ACTIONS(7004), + [anon_sym_IBOutlet] = ACTIONS(7004), + [anon_sym_IBInspectable] = ACTIONS(7004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7004), + [anon_sym_COLON] = ACTIONS(7006), + [anon_sym_QMARK] = ACTIONS(7006), + [anon_sym_STAR_EQ] = ACTIONS(7006), + [anon_sym_SLASH_EQ] = ACTIONS(7006), + [anon_sym_PERCENT_EQ] = ACTIONS(7006), + [anon_sym_PLUS_EQ] = ACTIONS(7006), + [anon_sym_DASH_EQ] = ACTIONS(7006), + [anon_sym_LT_LT_EQ] = ACTIONS(7006), + [anon_sym_GT_GT_EQ] = ACTIONS(7006), + [anon_sym_AMP_EQ] = ACTIONS(7006), + [anon_sym_CARET_EQ] = ACTIONS(7006), + [anon_sym_PIPE_EQ] = ACTIONS(7006), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7004), + [anon_sym_NS_AVAILABLE] = ACTIONS(7004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7004), + [anon_sym_API_AVAILABLE] = ACTIONS(7004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7004), + [anon_sym_API_DEPRECATED] = ACTIONS(7004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7004), + [anon_sym___deprecated_msg] = ACTIONS(7004), + [anon_sym___deprecated_enum_msg] = ACTIONS(7004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2959] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(6970), + [anon_sym_PLUS] = ACTIONS(6970), + [anon_sym_STAR] = ACTIONS(6972), + [anon_sym_SLASH] = ACTIONS(6972), + [anon_sym_PERCENT] = ACTIONS(6972), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(6952), + [anon_sym_PIPE] = ACTIONS(6978), + [anon_sym_CARET] = ACTIONS(6980), + [anon_sym_AMP] = ACTIONS(6982), + [anon_sym_EQ_EQ] = ACTIONS(6984), + [anon_sym_BANG_EQ] = ACTIONS(6984), + [anon_sym_GT] = ACTIONS(6986), + [anon_sym_GT_EQ] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(6988), + [anon_sym_LT] = ACTIONS(6986), + [anon_sym_LT_LT] = ACTIONS(6990), + [anon_sym_GT_GT] = ACTIONS(6990), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_EQ] = ACTIONS(6950), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_STAR_EQ] = ACTIONS(6952), + [anon_sym_SLASH_EQ] = ACTIONS(6952), + [anon_sym_PERCENT_EQ] = ACTIONS(6952), + [anon_sym_PLUS_EQ] = ACTIONS(6952), + [anon_sym_DASH_EQ] = ACTIONS(6952), + [anon_sym_LT_LT_EQ] = ACTIONS(6952), + [anon_sym_GT_GT_EQ] = ACTIONS(6952), + [anon_sym_AMP_EQ] = ACTIONS(6952), + [anon_sym_CARET_EQ] = ACTIONS(6952), + [anon_sym_PIPE_EQ] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2960] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(6970), + [anon_sym_PLUS] = ACTIONS(6970), + [anon_sym_STAR] = ACTIONS(6972), + [anon_sym_SLASH] = ACTIONS(6972), + [anon_sym_PERCENT] = ACTIONS(6972), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(6976), + [anon_sym_PIPE] = ACTIONS(6978), + [anon_sym_CARET] = ACTIONS(6980), + [anon_sym_AMP] = ACTIONS(6982), + [anon_sym_EQ_EQ] = ACTIONS(6984), + [anon_sym_BANG_EQ] = ACTIONS(6984), + [anon_sym_GT] = ACTIONS(6986), + [anon_sym_GT_EQ] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(6988), + [anon_sym_LT] = ACTIONS(6986), + [anon_sym_LT_LT] = ACTIONS(6990), + [anon_sym_GT_GT] = ACTIONS(6990), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_EQ] = ACTIONS(6950), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_STAR_EQ] = ACTIONS(6952), + [anon_sym_SLASH_EQ] = ACTIONS(6952), + [anon_sym_PERCENT_EQ] = ACTIONS(6952), + [anon_sym_PLUS_EQ] = ACTIONS(6952), + [anon_sym_DASH_EQ] = ACTIONS(6952), + [anon_sym_LT_LT_EQ] = ACTIONS(6952), + [anon_sym_GT_GT_EQ] = ACTIONS(6952), + [anon_sym_AMP_EQ] = ACTIONS(6952), + [anon_sym_CARET_EQ] = ACTIONS(6952), + [anon_sym_PIPE_EQ] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2961] = { + [sym_identifier] = ACTIONS(7008), + [aux_sym_preproc_def_token1] = ACTIONS(7010), + [anon_sym_DASH] = ACTIONS(7010), + [anon_sym_PLUS] = ACTIONS(7010), + [anon_sym_SEMI] = ACTIONS(7012), + [anon_sym_typedef] = ACTIONS(7008), + [anon_sym_extern] = ACTIONS(7008), + [anon_sym___attribute] = ACTIONS(7008), + [anon_sym___attribute__] = ACTIONS(7008), + [anon_sym___declspec] = ACTIONS(7008), + [anon_sym___cdecl] = ACTIONS(7008), + [anon_sym___clrcall] = ACTIONS(7008), + [anon_sym___stdcall] = ACTIONS(7008), + [anon_sym___fastcall] = ACTIONS(7008), + [anon_sym___thiscall] = ACTIONS(7008), + [anon_sym___vectorcall] = ACTIONS(7008), + [anon_sym_static] = ACTIONS(7008), + [anon_sym_auto] = ACTIONS(7008), + [anon_sym_register] = ACTIONS(7008), + [anon_sym_inline] = ACTIONS(7008), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7008), + [anon_sym_const] = ACTIONS(7008), + [anon_sym_volatile] = ACTIONS(7008), + [anon_sym_restrict] = ACTIONS(7008), + [anon_sym__Atomic] = ACTIONS(7008), + [anon_sym_in] = ACTIONS(7008), + [anon_sym_out] = ACTIONS(7008), + [anon_sym_inout] = ACTIONS(7008), + [anon_sym_bycopy] = ACTIONS(7008), + [anon_sym_byref] = ACTIONS(7008), + [anon_sym_oneway] = ACTIONS(7008), + [anon_sym__Nullable] = ACTIONS(7008), + [anon_sym__Nonnull] = ACTIONS(7008), + [anon_sym__Nullable_result] = ACTIONS(7008), + [anon_sym__Null_unspecified] = ACTIONS(7008), + [anon_sym___autoreleasing] = ACTIONS(7008), + [anon_sym___nullable] = ACTIONS(7008), + [anon_sym___nonnull] = ACTIONS(7008), + [anon_sym___strong] = ACTIONS(7008), + [anon_sym___weak] = ACTIONS(7008), + [anon_sym___bridge] = ACTIONS(7008), + [anon_sym___bridge_transfer] = ACTIONS(7008), + [anon_sym___bridge_retained] = ACTIONS(7008), + [anon_sym___unsafe_unretained] = ACTIONS(7008), + [anon_sym___block] = ACTIONS(7008), + [anon_sym___kindof] = ACTIONS(7008), + [anon_sym___unused] = ACTIONS(7008), + [anon_sym__Complex] = ACTIONS(7008), + [anon_sym___complex] = ACTIONS(7008), + [anon_sym_IBOutlet] = ACTIONS(7008), + [anon_sym_IBInspectable] = ACTIONS(7008), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7008), + [anon_sym_signed] = ACTIONS(7008), + [anon_sym_unsigned] = ACTIONS(7008), + [anon_sym_long] = ACTIONS(7008), + [anon_sym_short] = ACTIONS(7008), + [sym_primitive_type] = ACTIONS(7008), + [anon_sym_enum] = ACTIONS(7008), + [anon_sym_struct] = ACTIONS(7008), + [anon_sym_union] = ACTIONS(7008), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7008), + [anon_sym_ATend] = ACTIONS(7010), + [sym_method_attribute_specifier] = ACTIONS(7008), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7008), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7008), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7008), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7008), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7008), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7008), + [anon_sym_NS_AVAILABLE] = ACTIONS(7008), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7008), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7008), + [anon_sym_API_AVAILABLE] = ACTIONS(7008), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7008), + [anon_sym_API_DEPRECATED] = ACTIONS(7008), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7008), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7008), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7008), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7008), + [anon_sym___deprecated_msg] = ACTIONS(7008), + [anon_sym___deprecated_enum_msg] = ACTIONS(7008), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7008), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7008), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7008), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7008), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7008), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7008), + [anon_sym_ATsynthesize] = ACTIONS(7010), + [anon_sym_ATdynamic] = ACTIONS(7010), + [anon_sym_NS_ENUM] = ACTIONS(7008), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7008), + [anon_sym_NS_OPTIONS] = ACTIONS(7008), + [anon_sym_typeof] = ACTIONS(7008), + [anon_sym___typeof] = ACTIONS(7008), + [anon_sym___typeof__] = ACTIONS(7008), + [sym_id] = ACTIONS(7008), + [sym_instancetype] = ACTIONS(7008), + [sym_Class] = ACTIONS(7008), + [sym_SEL] = ACTIONS(7008), + [sym_IMP] = ACTIONS(7008), + [sym_BOOL] = ACTIONS(7008), + [sym_auto] = ACTIONS(7008), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2962] = { + [sym_identifier] = ACTIONS(7014), + [anon_sym_COMMA] = ACTIONS(7016), + [anon_sym_RPAREN] = ACTIONS(7016), + [anon_sym_LPAREN2] = ACTIONS(7016), + [anon_sym_DASH] = ACTIONS(7014), + [anon_sym_PLUS] = ACTIONS(7014), + [anon_sym_STAR] = ACTIONS(7014), + [anon_sym_SLASH] = ACTIONS(7014), + [anon_sym_PERCENT] = ACTIONS(7014), + [anon_sym_PIPE_PIPE] = ACTIONS(7016), + [anon_sym_AMP_AMP] = ACTIONS(7016), + [anon_sym_PIPE] = ACTIONS(7014), [anon_sym_CARET] = ACTIONS(7014), - [anon_sym_AMP] = ACTIONS(7016), - [anon_sym_EQ_EQ] = ACTIONS(7018), - [anon_sym_BANG_EQ] = ACTIONS(7018), - [anon_sym_GT] = ACTIONS(7020), - [anon_sym_GT_EQ] = ACTIONS(7022), - [anon_sym_LT_EQ] = ACTIONS(7022), - [anon_sym_LT] = ACTIONS(7020), - [anon_sym_LT_LT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7000), - [anon_sym___attribute] = ACTIONS(6998), - [anon_sym___attribute__] = ACTIONS(6998), - [anon_sym_RBRACE] = ACTIONS(7000), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7000), - [anon_sym_EQ] = ACTIONS(6998), - [anon_sym_const] = ACTIONS(6998), - [anon_sym_volatile] = ACTIONS(6998), - [anon_sym_restrict] = ACTIONS(6998), - [anon_sym__Atomic] = ACTIONS(6998), - [anon_sym_in] = ACTIONS(6998), - [anon_sym_out] = ACTIONS(6998), - [anon_sym_inout] = ACTIONS(6998), - [anon_sym_bycopy] = ACTIONS(6998), - [anon_sym_byref] = ACTIONS(6998), - [anon_sym_oneway] = ACTIONS(6998), - [anon_sym__Nullable] = ACTIONS(6998), - [anon_sym__Nonnull] = ACTIONS(6998), - [anon_sym__Nullable_result] = ACTIONS(6998), - [anon_sym__Null_unspecified] = ACTIONS(6998), - [anon_sym___autoreleasing] = ACTIONS(6998), - [anon_sym___nullable] = ACTIONS(6998), - [anon_sym___nonnull] = ACTIONS(6998), - [anon_sym___strong] = ACTIONS(6998), - [anon_sym___weak] = ACTIONS(6998), - [anon_sym___bridge] = ACTIONS(6998), - [anon_sym___bridge_transfer] = ACTIONS(6998), - [anon_sym___bridge_retained] = ACTIONS(6998), - [anon_sym___unsafe_unretained] = ACTIONS(6998), - [anon_sym___block] = ACTIONS(6998), - [anon_sym___kindof] = ACTIONS(6998), - [anon_sym___unused] = ACTIONS(6998), - [anon_sym__Complex] = ACTIONS(6998), - [anon_sym___complex] = ACTIONS(6998), - [anon_sym_IBOutlet] = ACTIONS(6998), - [anon_sym_IBInspectable] = ACTIONS(6998), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6998), - [anon_sym_COLON] = ACTIONS(7000), - [anon_sym_QMARK] = ACTIONS(7028), - [anon_sym_STAR_EQ] = ACTIONS(7000), - [anon_sym_SLASH_EQ] = ACTIONS(7000), - [anon_sym_PERCENT_EQ] = ACTIONS(7000), - [anon_sym_PLUS_EQ] = ACTIONS(7000), - [anon_sym_DASH_EQ] = ACTIONS(7000), - [anon_sym_LT_LT_EQ] = ACTIONS(7000), - [anon_sym_GT_GT_EQ] = ACTIONS(7000), - [anon_sym_AMP_EQ] = ACTIONS(7000), - [anon_sym_CARET_EQ] = ACTIONS(7000), - [anon_sym_PIPE_EQ] = ACTIONS(7000), - [anon_sym_DASH_DASH] = ACTIONS(7030), - [anon_sym_PLUS_PLUS] = ACTIONS(7030), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [anon_sym_AMP] = ACTIONS(7014), + [anon_sym_EQ_EQ] = ACTIONS(7016), + [anon_sym_BANG_EQ] = ACTIONS(7016), + [anon_sym_GT] = ACTIONS(7014), + [anon_sym_GT_EQ] = ACTIONS(7016), + [anon_sym_LT_EQ] = ACTIONS(7016), + [anon_sym_LT] = ACTIONS(7014), + [anon_sym_LT_LT] = ACTIONS(7014), + [anon_sym_GT_GT] = ACTIONS(7014), + [anon_sym_SEMI] = ACTIONS(7016), + [anon_sym___attribute] = ACTIONS(7014), + [anon_sym___attribute__] = ACTIONS(7014), + [anon_sym_LBRACE] = ACTIONS(7016), + [anon_sym_RBRACE] = ACTIONS(7016), + [anon_sym_LBRACK] = ACTIONS(7016), + [anon_sym_RBRACK] = ACTIONS(7016), + [anon_sym_EQ] = ACTIONS(7014), + [anon_sym_const] = ACTIONS(7014), + [anon_sym_volatile] = ACTIONS(7014), + [anon_sym_restrict] = ACTIONS(7014), + [anon_sym__Atomic] = ACTIONS(7014), + [anon_sym_in] = ACTIONS(7014), + [anon_sym_out] = ACTIONS(7014), + [anon_sym_inout] = ACTIONS(7014), + [anon_sym_bycopy] = ACTIONS(7014), + [anon_sym_byref] = ACTIONS(7014), + [anon_sym_oneway] = ACTIONS(7014), + [anon_sym__Nullable] = ACTIONS(7014), + [anon_sym__Nonnull] = ACTIONS(7014), + [anon_sym__Nullable_result] = ACTIONS(7014), + [anon_sym__Null_unspecified] = ACTIONS(7014), + [anon_sym___autoreleasing] = ACTIONS(7014), + [anon_sym___nullable] = ACTIONS(7014), + [anon_sym___nonnull] = ACTIONS(7014), + [anon_sym___strong] = ACTIONS(7014), + [anon_sym___weak] = ACTIONS(7014), + [anon_sym___bridge] = ACTIONS(7014), + [anon_sym___bridge_transfer] = ACTIONS(7014), + [anon_sym___bridge_retained] = ACTIONS(7014), + [anon_sym___unsafe_unretained] = ACTIONS(7014), + [anon_sym___block] = ACTIONS(7014), + [anon_sym___kindof] = ACTIONS(7014), + [anon_sym___unused] = ACTIONS(7014), + [anon_sym__Complex] = ACTIONS(7014), + [anon_sym___complex] = ACTIONS(7014), + [anon_sym_IBOutlet] = ACTIONS(7014), + [anon_sym_IBInspectable] = ACTIONS(7014), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7014), + [anon_sym_COLON] = ACTIONS(7016), + [anon_sym_QMARK] = ACTIONS(7016), + [anon_sym_STAR_EQ] = ACTIONS(7016), + [anon_sym_SLASH_EQ] = ACTIONS(7016), + [anon_sym_PERCENT_EQ] = ACTIONS(7016), + [anon_sym_PLUS_EQ] = ACTIONS(7016), + [anon_sym_DASH_EQ] = ACTIONS(7016), + [anon_sym_LT_LT_EQ] = ACTIONS(7016), + [anon_sym_GT_GT_EQ] = ACTIONS(7016), + [anon_sym_AMP_EQ] = ACTIONS(7016), + [anon_sym_CARET_EQ] = ACTIONS(7016), + [anon_sym_PIPE_EQ] = ACTIONS(7016), + [anon_sym_DASH_DASH] = ACTIONS(7016), + [anon_sym_PLUS_PLUS] = ACTIONS(7016), + [anon_sym_DOT] = ACTIONS(7016), + [anon_sym_DASH_GT] = ACTIONS(7016), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6998), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6998), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6998), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6998), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6998), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6998), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6998), - [anon_sym_NS_AVAILABLE] = ACTIONS(6998), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6998), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6998), - [anon_sym_API_AVAILABLE] = ACTIONS(6998), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6998), - [anon_sym_API_DEPRECATED] = ACTIONS(6998), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6998), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6998), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6998), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6998), - [anon_sym___deprecated_msg] = ACTIONS(6998), - [anon_sym___deprecated_enum_msg] = ACTIONS(6998), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6998), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6998), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6998), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6998), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6998), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6998), + [sym_method_attribute_specifier] = ACTIONS(7014), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7014), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7014), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7014), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7014), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7014), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7014), + [anon_sym_NS_AVAILABLE] = ACTIONS(7014), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7014), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7014), + [anon_sym_API_AVAILABLE] = ACTIONS(7014), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7014), + [anon_sym_API_DEPRECATED] = ACTIONS(7014), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7014), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7014), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7014), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7014), + [anon_sym___deprecated_msg] = ACTIONS(7014), + [anon_sym___deprecated_enum_msg] = ACTIONS(7014), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7014), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7014), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7014), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7014), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7014), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7014), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -492058,110 +485393,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3007] = { - [sym_attribute_specifier] = STATE(3255), - [sym_ms_declspec_modifier] = STATE(3255), - [sym_storage_class_specifier] = STATE(3255), - [sym_type_qualifier] = STATE(3255), - [sym__type_specifier] = STATE(3405), - [sym_sized_type_specifier] = STATE(3405), - [sym_enum_specifier] = STATE(3405), - [sym_struct_specifier] = STATE(3405), - [sym_union_specifier] = STATE(3405), - [sym_macro_type_specifier] = STATE(3405), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3405), - [sym_atomic_specifier] = STATE(3405), - [sym_generic_type_specifier] = STATE(3405), - [aux_sym__declaration_specifiers_repeat1] = STATE(3255), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(7034), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [2963] = { + [sym_identifier] = ACTIONS(7018), + [aux_sym_preproc_def_token1] = ACTIONS(7020), + [anon_sym_DASH] = ACTIONS(7020), + [anon_sym_PLUS] = ACTIONS(7020), + [anon_sym_SEMI] = ACTIONS(7022), + [anon_sym_typedef] = ACTIONS(7018), + [anon_sym_extern] = ACTIONS(7018), + [anon_sym___attribute] = ACTIONS(7018), + [anon_sym___attribute__] = ACTIONS(7018), + [anon_sym___declspec] = ACTIONS(7018), + [anon_sym___cdecl] = ACTIONS(7018), + [anon_sym___clrcall] = ACTIONS(7018), + [anon_sym___stdcall] = ACTIONS(7018), + [anon_sym___fastcall] = ACTIONS(7018), + [anon_sym___thiscall] = ACTIONS(7018), + [anon_sym___vectorcall] = ACTIONS(7018), + [anon_sym_static] = ACTIONS(7018), + [anon_sym_auto] = ACTIONS(7018), + [anon_sym_register] = ACTIONS(7018), + [anon_sym_inline] = ACTIONS(7018), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7018), + [anon_sym_const] = ACTIONS(7018), + [anon_sym_volatile] = ACTIONS(7018), + [anon_sym_restrict] = ACTIONS(7018), + [anon_sym__Atomic] = ACTIONS(7018), + [anon_sym_in] = ACTIONS(7018), + [anon_sym_out] = ACTIONS(7018), + [anon_sym_inout] = ACTIONS(7018), + [anon_sym_bycopy] = ACTIONS(7018), + [anon_sym_byref] = ACTIONS(7018), + [anon_sym_oneway] = ACTIONS(7018), + [anon_sym__Nullable] = ACTIONS(7018), + [anon_sym__Nonnull] = ACTIONS(7018), + [anon_sym__Nullable_result] = ACTIONS(7018), + [anon_sym__Null_unspecified] = ACTIONS(7018), + [anon_sym___autoreleasing] = ACTIONS(7018), + [anon_sym___nullable] = ACTIONS(7018), + [anon_sym___nonnull] = ACTIONS(7018), + [anon_sym___strong] = ACTIONS(7018), + [anon_sym___weak] = ACTIONS(7018), + [anon_sym___bridge] = ACTIONS(7018), + [anon_sym___bridge_transfer] = ACTIONS(7018), + [anon_sym___bridge_retained] = ACTIONS(7018), + [anon_sym___unsafe_unretained] = ACTIONS(7018), + [anon_sym___block] = ACTIONS(7018), + [anon_sym___kindof] = ACTIONS(7018), + [anon_sym___unused] = ACTIONS(7018), + [anon_sym__Complex] = ACTIONS(7018), + [anon_sym___complex] = ACTIONS(7018), + [anon_sym_IBOutlet] = ACTIONS(7018), + [anon_sym_IBInspectable] = ACTIONS(7018), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7018), + [anon_sym_signed] = ACTIONS(7018), + [anon_sym_unsigned] = ACTIONS(7018), + [anon_sym_long] = ACTIONS(7018), + [anon_sym_short] = ACTIONS(7018), + [sym_primitive_type] = ACTIONS(7018), + [anon_sym_enum] = ACTIONS(7018), + [anon_sym_struct] = ACTIONS(7018), + [anon_sym_union] = ACTIONS(7018), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(7034), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(7034), - [sym_IMP] = ACTIONS(7034), - [sym_BOOL] = ACTIONS(7034), - [sym_auto] = ACTIONS(7034), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7018), + [anon_sym_ATend] = ACTIONS(7020), + [sym_method_attribute_specifier] = ACTIONS(7018), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7018), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7018), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7018), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7018), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7018), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7018), + [anon_sym_NS_AVAILABLE] = ACTIONS(7018), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7018), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7018), + [anon_sym_API_AVAILABLE] = ACTIONS(7018), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7018), + [anon_sym_API_DEPRECATED] = ACTIONS(7018), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7018), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7018), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7018), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7018), + [anon_sym___deprecated_msg] = ACTIONS(7018), + [anon_sym___deprecated_enum_msg] = ACTIONS(7018), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7018), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7018), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7018), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7018), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7018), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7018), + [anon_sym_ATsynthesize] = ACTIONS(7020), + [anon_sym_ATdynamic] = ACTIONS(7020), + [anon_sym_NS_ENUM] = ACTIONS(7018), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7018), + [anon_sym_NS_OPTIONS] = ACTIONS(7018), + [anon_sym_typeof] = ACTIONS(7018), + [anon_sym___typeof] = ACTIONS(7018), + [anon_sym___typeof__] = ACTIONS(7018), + [sym_id] = ACTIONS(7018), + [sym_instancetype] = ACTIONS(7018), + [sym_Class] = ACTIONS(7018), + [sym_SEL] = ACTIONS(7018), + [sym_IMP] = ACTIONS(7018), + [sym_BOOL] = ACTIONS(7018), + [sym_auto] = ACTIONS(7018), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -492169,110 +485504,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3008] = { - [sym_identifier] = ACTIONS(7036), - [aux_sym_preproc_def_token1] = ACTIONS(7038), - [anon_sym_DASH] = ACTIONS(7038), - [anon_sym_PLUS] = ACTIONS(7038), - [anon_sym_SEMI] = ACTIONS(7040), - [anon_sym_typedef] = ACTIONS(7036), - [anon_sym_extern] = ACTIONS(7036), - [anon_sym___attribute] = ACTIONS(7036), - [anon_sym___attribute__] = ACTIONS(7036), - [anon_sym___declspec] = ACTIONS(7036), - [anon_sym___cdecl] = ACTIONS(7036), - [anon_sym___clrcall] = ACTIONS(7036), - [anon_sym___stdcall] = ACTIONS(7036), - [anon_sym___fastcall] = ACTIONS(7036), - [anon_sym___thiscall] = ACTIONS(7036), - [anon_sym___vectorcall] = ACTIONS(7036), - [anon_sym_static] = ACTIONS(7036), - [anon_sym_auto] = ACTIONS(7036), - [anon_sym_register] = ACTIONS(7036), - [anon_sym_inline] = ACTIONS(7036), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7036), - [anon_sym_const] = ACTIONS(7036), - [anon_sym_volatile] = ACTIONS(7036), - [anon_sym_restrict] = ACTIONS(7036), - [anon_sym__Atomic] = ACTIONS(7036), - [anon_sym_in] = ACTIONS(7036), - [anon_sym_out] = ACTIONS(7036), - [anon_sym_inout] = ACTIONS(7036), - [anon_sym_bycopy] = ACTIONS(7036), - [anon_sym_byref] = ACTIONS(7036), - [anon_sym_oneway] = ACTIONS(7036), - [anon_sym__Nullable] = ACTIONS(7036), - [anon_sym__Nonnull] = ACTIONS(7036), - [anon_sym__Nullable_result] = ACTIONS(7036), - [anon_sym__Null_unspecified] = ACTIONS(7036), - [anon_sym___autoreleasing] = ACTIONS(7036), - [anon_sym___nullable] = ACTIONS(7036), - [anon_sym___nonnull] = ACTIONS(7036), - [anon_sym___strong] = ACTIONS(7036), - [anon_sym___weak] = ACTIONS(7036), - [anon_sym___bridge] = ACTIONS(7036), - [anon_sym___bridge_transfer] = ACTIONS(7036), - [anon_sym___bridge_retained] = ACTIONS(7036), - [anon_sym___unsafe_unretained] = ACTIONS(7036), - [anon_sym___block] = ACTIONS(7036), - [anon_sym___kindof] = ACTIONS(7036), - [anon_sym___unused] = ACTIONS(7036), - [anon_sym__Complex] = ACTIONS(7036), - [anon_sym___complex] = ACTIONS(7036), - [anon_sym_IBOutlet] = ACTIONS(7036), - [anon_sym_IBInspectable] = ACTIONS(7036), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7036), - [anon_sym_signed] = ACTIONS(7036), - [anon_sym_unsigned] = ACTIONS(7036), - [anon_sym_long] = ACTIONS(7036), - [anon_sym_short] = ACTIONS(7036), - [sym_primitive_type] = ACTIONS(7036), - [anon_sym_enum] = ACTIONS(7036), - [anon_sym_NS_ENUM] = ACTIONS(7036), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7036), - [anon_sym_NS_OPTIONS] = ACTIONS(7036), - [anon_sym_struct] = ACTIONS(7036), - [anon_sym_union] = ACTIONS(7036), + [2964] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(7024), + [anon_sym_COMMA] = ACTIONS(7026), + [anon_sym_RPAREN] = ACTIONS(7026), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(6970), + [anon_sym_PLUS] = ACTIONS(6970), + [anon_sym_STAR] = ACTIONS(6972), + [anon_sym_SLASH] = ACTIONS(6972), + [anon_sym_PERCENT] = ACTIONS(6972), + [anon_sym_PIPE_PIPE] = ACTIONS(6974), + [anon_sym_AMP_AMP] = ACTIONS(6976), + [anon_sym_PIPE] = ACTIONS(6978), + [anon_sym_CARET] = ACTIONS(6980), + [anon_sym_AMP] = ACTIONS(6982), + [anon_sym_EQ_EQ] = ACTIONS(6984), + [anon_sym_BANG_EQ] = ACTIONS(6984), + [anon_sym_GT] = ACTIONS(6986), + [anon_sym_GT_EQ] = ACTIONS(6988), + [anon_sym_LT_EQ] = ACTIONS(6988), + [anon_sym_LT] = ACTIONS(6986), + [anon_sym_LT_LT] = ACTIONS(6990), + [anon_sym_GT_GT] = ACTIONS(6990), + [anon_sym_SEMI] = ACTIONS(7026), + [anon_sym___attribute] = ACTIONS(7024), + [anon_sym___attribute__] = ACTIONS(7024), + [anon_sym_RBRACE] = ACTIONS(7026), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(7026), + [anon_sym_EQ] = ACTIONS(7024), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_volatile] = ACTIONS(7024), + [anon_sym_restrict] = ACTIONS(7024), + [anon_sym__Atomic] = ACTIONS(7024), + [anon_sym_in] = ACTIONS(7024), + [anon_sym_out] = ACTIONS(7024), + [anon_sym_inout] = ACTIONS(7024), + [anon_sym_bycopy] = ACTIONS(7024), + [anon_sym_byref] = ACTIONS(7024), + [anon_sym_oneway] = ACTIONS(7024), + [anon_sym__Nullable] = ACTIONS(7024), + [anon_sym__Nonnull] = ACTIONS(7024), + [anon_sym__Nullable_result] = ACTIONS(7024), + [anon_sym__Null_unspecified] = ACTIONS(7024), + [anon_sym___autoreleasing] = ACTIONS(7024), + [anon_sym___nullable] = ACTIONS(7024), + [anon_sym___nonnull] = ACTIONS(7024), + [anon_sym___strong] = ACTIONS(7024), + [anon_sym___weak] = ACTIONS(7024), + [anon_sym___bridge] = ACTIONS(7024), + [anon_sym___bridge_transfer] = ACTIONS(7024), + [anon_sym___bridge_retained] = ACTIONS(7024), + [anon_sym___unsafe_unretained] = ACTIONS(7024), + [anon_sym___block] = ACTIONS(7024), + [anon_sym___kindof] = ACTIONS(7024), + [anon_sym___unused] = ACTIONS(7024), + [anon_sym__Complex] = ACTIONS(7024), + [anon_sym___complex] = ACTIONS(7024), + [anon_sym_IBOutlet] = ACTIONS(7024), + [anon_sym_IBInspectable] = ACTIONS(7024), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7024), + [anon_sym_COLON] = ACTIONS(7026), + [anon_sym_QMARK] = ACTIONS(6992), + [anon_sym_STAR_EQ] = ACTIONS(7026), + [anon_sym_SLASH_EQ] = ACTIONS(7026), + [anon_sym_PERCENT_EQ] = ACTIONS(7026), + [anon_sym_PLUS_EQ] = ACTIONS(7026), + [anon_sym_DASH_EQ] = ACTIONS(7026), + [anon_sym_LT_LT_EQ] = ACTIONS(7026), + [anon_sym_GT_GT_EQ] = ACTIONS(7026), + [anon_sym_AMP_EQ] = ACTIONS(7026), + [anon_sym_CARET_EQ] = ACTIONS(7026), + [anon_sym_PIPE_EQ] = ACTIONS(7026), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7036), - [anon_sym_ATend] = ACTIONS(7038), - [sym_method_attribute_specifier] = ACTIONS(7036), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7036), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7036), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7036), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7036), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7036), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7036), - [anon_sym_NS_AVAILABLE] = ACTIONS(7036), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7036), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7036), - [anon_sym_API_AVAILABLE] = ACTIONS(7036), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7036), - [anon_sym_API_DEPRECATED] = ACTIONS(7036), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7036), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7036), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7036), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7036), - [anon_sym___deprecated_msg] = ACTIONS(7036), - [anon_sym___deprecated_enum_msg] = ACTIONS(7036), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7036), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7036), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7036), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7036), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7036), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7036), - [anon_sym_ATsynthesize] = ACTIONS(7038), - [anon_sym_ATdynamic] = ACTIONS(7038), - [anon_sym_typeof] = ACTIONS(7036), - [anon_sym___typeof] = ACTIONS(7036), - [anon_sym___typeof__] = ACTIONS(7036), - [sym_id] = ACTIONS(7036), - [sym_instancetype] = ACTIONS(7036), - [sym_Class] = ACTIONS(7036), - [sym_SEL] = ACTIONS(7036), - [sym_IMP] = ACTIONS(7036), - [sym_BOOL] = ACTIONS(7036), - [sym_auto] = ACTIONS(7036), + [sym_method_attribute_specifier] = ACTIONS(7024), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7024), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7024), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7024), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7024), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7024), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7024), + [anon_sym_NS_AVAILABLE] = ACTIONS(7024), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7024), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7024), + [anon_sym_API_AVAILABLE] = ACTIONS(7024), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7024), + [anon_sym_API_DEPRECATED] = ACTIONS(7024), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7024), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7024), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7024), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7024), + [anon_sym___deprecated_msg] = ACTIONS(7024), + [anon_sym___deprecated_enum_msg] = ACTIONS(7024), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7024), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7024), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7024), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7024), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7024), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7024), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -492280,110 +485615,776 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3009] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7042), - [anon_sym_COMMA] = ACTIONS(7044), - [anon_sym_RPAREN] = ACTIONS(7044), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7004), - [anon_sym_PLUS] = ACTIONS(7004), - [anon_sym_STAR] = ACTIONS(7006), - [anon_sym_SLASH] = ACTIONS(7006), - [anon_sym_PERCENT] = ACTIONS(7006), - [anon_sym_PIPE_PIPE] = ACTIONS(7008), - [anon_sym_AMP_AMP] = ACTIONS(7010), - [anon_sym_PIPE] = ACTIONS(7012), - [anon_sym_CARET] = ACTIONS(7014), - [anon_sym_AMP] = ACTIONS(7016), - [anon_sym_EQ_EQ] = ACTIONS(7018), - [anon_sym_BANG_EQ] = ACTIONS(7018), - [anon_sym_GT] = ACTIONS(7020), - [anon_sym_GT_EQ] = ACTIONS(7022), - [anon_sym_LT_EQ] = ACTIONS(7022), - [anon_sym_LT] = ACTIONS(7020), - [anon_sym_LT_LT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), + [2965] = { + [sym_identifier] = ACTIONS(1359), + [aux_sym_preproc_def_token1] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_typedef] = ACTIONS(1359), + [anon_sym_extern] = ACTIONS(1359), + [anon_sym___attribute] = ACTIONS(1359), + [anon_sym___attribute__] = ACTIONS(1359), + [anon_sym___declspec] = ACTIONS(1359), + [anon_sym___cdecl] = ACTIONS(1359), + [anon_sym___clrcall] = ACTIONS(1359), + [anon_sym___stdcall] = ACTIONS(1359), + [anon_sym___fastcall] = ACTIONS(1359), + [anon_sym___thiscall] = ACTIONS(1359), + [anon_sym___vectorcall] = ACTIONS(1359), + [anon_sym_static] = ACTIONS(1359), + [anon_sym_auto] = ACTIONS(1359), + [anon_sym_register] = ACTIONS(1359), + [anon_sym_inline] = ACTIONS(1359), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1359), + [anon_sym_volatile] = ACTIONS(1359), + [anon_sym_restrict] = ACTIONS(1359), + [anon_sym__Atomic] = ACTIONS(1359), + [anon_sym_in] = ACTIONS(1359), + [anon_sym_out] = ACTIONS(1359), + [anon_sym_inout] = ACTIONS(1359), + [anon_sym_bycopy] = ACTIONS(1359), + [anon_sym_byref] = ACTIONS(1359), + [anon_sym_oneway] = ACTIONS(1359), + [anon_sym__Nullable] = ACTIONS(1359), + [anon_sym__Nonnull] = ACTIONS(1359), + [anon_sym__Nullable_result] = ACTIONS(1359), + [anon_sym__Null_unspecified] = ACTIONS(1359), + [anon_sym___autoreleasing] = ACTIONS(1359), + [anon_sym___nullable] = ACTIONS(1359), + [anon_sym___nonnull] = ACTIONS(1359), + [anon_sym___strong] = ACTIONS(1359), + [anon_sym___weak] = ACTIONS(1359), + [anon_sym___bridge] = ACTIONS(1359), + [anon_sym___bridge_transfer] = ACTIONS(1359), + [anon_sym___bridge_retained] = ACTIONS(1359), + [anon_sym___unsafe_unretained] = ACTIONS(1359), + [anon_sym___block] = ACTIONS(1359), + [anon_sym___kindof] = ACTIONS(1359), + [anon_sym___unused] = ACTIONS(1359), + [anon_sym__Complex] = ACTIONS(1359), + [anon_sym___complex] = ACTIONS(1359), + [anon_sym_IBOutlet] = ACTIONS(1359), + [anon_sym_IBInspectable] = ACTIONS(1359), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1359), + [anon_sym_signed] = ACTIONS(1359), + [anon_sym_unsigned] = ACTIONS(1359), + [anon_sym_long] = ACTIONS(1359), + [anon_sym_short] = ACTIONS(1359), + [sym_primitive_type] = ACTIONS(1359), + [anon_sym_enum] = ACTIONS(1359), + [anon_sym_struct] = ACTIONS(1359), + [anon_sym_union] = ACTIONS(1359), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1359), + [anon_sym_ATend] = ACTIONS(1361), + [sym_method_attribute_specifier] = ACTIONS(1359), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1359), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1359), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1359), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1359), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1359), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1359), + [anon_sym_NS_AVAILABLE] = ACTIONS(1359), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1359), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_API_AVAILABLE] = ACTIONS(1359), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1359), + [anon_sym_API_DEPRECATED] = ACTIONS(1359), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1359), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1359), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1359), + [anon_sym___deprecated_msg] = ACTIONS(1359), + [anon_sym___deprecated_enum_msg] = ACTIONS(1359), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1359), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1359), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1359), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1359), + [anon_sym_ATsynthesize] = ACTIONS(1361), + [anon_sym_ATdynamic] = ACTIONS(1361), + [anon_sym_NS_ENUM] = ACTIONS(1359), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1359), + [anon_sym_NS_OPTIONS] = ACTIONS(1359), + [anon_sym_typeof] = ACTIONS(1359), + [anon_sym___typeof] = ACTIONS(1359), + [anon_sym___typeof__] = ACTIONS(1359), + [sym_id] = ACTIONS(1359), + [sym_instancetype] = ACTIONS(1359), + [sym_Class] = ACTIONS(1359), + [sym_SEL] = ACTIONS(1359), + [sym_IMP] = ACTIONS(1359), + [sym_BOOL] = ACTIONS(1359), + [sym_auto] = ACTIONS(1359), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2966] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(6950), + [anon_sym_PLUS] = ACTIONS(6950), + [anon_sym_STAR] = ACTIONS(6972), + [anon_sym_SLASH] = ACTIONS(6972), + [anon_sym_PERCENT] = ACTIONS(6972), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(6952), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_CARET] = ACTIONS(6950), + [anon_sym_AMP] = ACTIONS(6950), + [anon_sym_EQ_EQ] = ACTIONS(6952), + [anon_sym_BANG_EQ] = ACTIONS(6952), + [anon_sym_GT] = ACTIONS(6950), + [anon_sym_GT_EQ] = ACTIONS(6952), + [anon_sym_LT_EQ] = ACTIONS(6952), + [anon_sym_LT] = ACTIONS(6950), + [anon_sym_LT_LT] = ACTIONS(6950), + [anon_sym_GT_GT] = ACTIONS(6950), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_EQ] = ACTIONS(6950), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_STAR_EQ] = ACTIONS(6952), + [anon_sym_SLASH_EQ] = ACTIONS(6952), + [anon_sym_PERCENT_EQ] = ACTIONS(6952), + [anon_sym_PLUS_EQ] = ACTIONS(6952), + [anon_sym_DASH_EQ] = ACTIONS(6952), + [anon_sym_LT_LT_EQ] = ACTIONS(6952), + [anon_sym_GT_GT_EQ] = ACTIONS(6952), + [anon_sym_AMP_EQ] = ACTIONS(6952), + [anon_sym_CARET_EQ] = ACTIONS(6952), + [anon_sym_PIPE_EQ] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2967] = { + [sym_identifier] = ACTIONS(7028), + [aux_sym_preproc_def_token1] = ACTIONS(7030), + [anon_sym_COMMA] = ACTIONS(7030), + [anon_sym_LPAREN2] = ACTIONS(7030), + [anon_sym_DASH] = ACTIONS(7030), + [anon_sym_PLUS] = ACTIONS(7030), + [anon_sym_LT] = ACTIONS(7030), + [anon_sym_SEMI] = ACTIONS(7030), + [anon_sym_typedef] = ACTIONS(7028), + [anon_sym_extern] = ACTIONS(7028), + [anon_sym___attribute] = ACTIONS(7028), + [anon_sym___attribute__] = ACTIONS(7028), + [anon_sym___declspec] = ACTIONS(7028), + [anon_sym_LBRACE] = ACTIONS(7030), + [anon_sym_static] = ACTIONS(7028), + [anon_sym_auto] = ACTIONS(7028), + [anon_sym_register] = ACTIONS(7028), + [anon_sym_inline] = ACTIONS(7028), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7028), + [anon_sym_const] = ACTIONS(7028), + [anon_sym_volatile] = ACTIONS(7028), + [anon_sym_restrict] = ACTIONS(7028), + [anon_sym__Atomic] = ACTIONS(7028), + [anon_sym_in] = ACTIONS(7028), + [anon_sym_out] = ACTIONS(7028), + [anon_sym_inout] = ACTIONS(7028), + [anon_sym_bycopy] = ACTIONS(7028), + [anon_sym_byref] = ACTIONS(7028), + [anon_sym_oneway] = ACTIONS(7028), + [anon_sym__Nullable] = ACTIONS(7028), + [anon_sym__Nonnull] = ACTIONS(7028), + [anon_sym__Nullable_result] = ACTIONS(7028), + [anon_sym__Null_unspecified] = ACTIONS(7028), + [anon_sym___autoreleasing] = ACTIONS(7028), + [anon_sym___nullable] = ACTIONS(7028), + [anon_sym___nonnull] = ACTIONS(7028), + [anon_sym___strong] = ACTIONS(7028), + [anon_sym___weak] = ACTIONS(7028), + [anon_sym___bridge] = ACTIONS(7028), + [anon_sym___bridge_transfer] = ACTIONS(7028), + [anon_sym___bridge_retained] = ACTIONS(7028), + [anon_sym___unsafe_unretained] = ACTIONS(7028), + [anon_sym___block] = ACTIONS(7028), + [anon_sym___kindof] = ACTIONS(7028), + [anon_sym___unused] = ACTIONS(7028), + [anon_sym__Complex] = ACTIONS(7028), + [anon_sym___complex] = ACTIONS(7028), + [anon_sym_IBOutlet] = ACTIONS(7028), + [anon_sym_IBInspectable] = ACTIONS(7028), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7028), + [anon_sym_signed] = ACTIONS(7028), + [anon_sym_unsigned] = ACTIONS(7028), + [anon_sym_long] = ACTIONS(7028), + [anon_sym_short] = ACTIONS(7028), + [sym_primitive_type] = ACTIONS(7028), + [anon_sym_enum] = ACTIONS(7028), + [anon_sym_COLON] = ACTIONS(7030), + [anon_sym_struct] = ACTIONS(7028), + [anon_sym_union] = ACTIONS(7028), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7028), + [anon_sym_ATend] = ACTIONS(7030), + [sym_optional] = ACTIONS(7030), + [sym_required] = ACTIONS(7030), + [anon_sym_ATproperty] = ACTIONS(7030), + [sym_method_attribute_specifier] = ACTIONS(7028), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7028), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7028), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7028), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7028), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7028), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7028), + [anon_sym_NS_AVAILABLE] = ACTIONS(7028), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7028), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7028), + [anon_sym_API_AVAILABLE] = ACTIONS(7028), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7028), + [anon_sym_API_DEPRECATED] = ACTIONS(7028), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7028), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7028), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7028), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7028), + [anon_sym___deprecated_msg] = ACTIONS(7028), + [anon_sym___deprecated_enum_msg] = ACTIONS(7028), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7028), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7028), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7028), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7028), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7028), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7028), + [anon_sym_NS_ENUM] = ACTIONS(7028), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7028), + [anon_sym_NS_OPTIONS] = ACTIONS(7028), + [anon_sym_typeof] = ACTIONS(7028), + [anon_sym___typeof] = ACTIONS(7028), + [anon_sym___typeof__] = ACTIONS(7028), + [sym_id] = ACTIONS(7028), + [sym_instancetype] = ACTIONS(7028), + [sym_Class] = ACTIONS(7028), + [sym_SEL] = ACTIONS(7028), + [sym_IMP] = ACTIONS(7028), + [sym_BOOL] = ACTIONS(7028), + [sym_auto] = ACTIONS(7028), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2968] = { + [sym_identifier] = ACTIONS(1371), + [aux_sym_preproc_def_token1] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_typedef] = ACTIONS(1371), + [anon_sym_extern] = ACTIONS(1371), + [anon_sym___attribute] = ACTIONS(1371), + [anon_sym___attribute__] = ACTIONS(1371), + [anon_sym___declspec] = ACTIONS(1371), + [anon_sym___cdecl] = ACTIONS(1371), + [anon_sym___clrcall] = ACTIONS(1371), + [anon_sym___stdcall] = ACTIONS(1371), + [anon_sym___fastcall] = ACTIONS(1371), + [anon_sym___thiscall] = ACTIONS(1371), + [anon_sym___vectorcall] = ACTIONS(1371), + [anon_sym_static] = ACTIONS(1371), + [anon_sym_auto] = ACTIONS(1371), + [anon_sym_register] = ACTIONS(1371), + [anon_sym_inline] = ACTIONS(1371), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_volatile] = ACTIONS(1371), + [anon_sym_restrict] = ACTIONS(1371), + [anon_sym__Atomic] = ACTIONS(1371), + [anon_sym_in] = ACTIONS(1371), + [anon_sym_out] = ACTIONS(1371), + [anon_sym_inout] = ACTIONS(1371), + [anon_sym_bycopy] = ACTIONS(1371), + [anon_sym_byref] = ACTIONS(1371), + [anon_sym_oneway] = ACTIONS(1371), + [anon_sym__Nullable] = ACTIONS(1371), + [anon_sym__Nonnull] = ACTIONS(1371), + [anon_sym__Nullable_result] = ACTIONS(1371), + [anon_sym__Null_unspecified] = ACTIONS(1371), + [anon_sym___autoreleasing] = ACTIONS(1371), + [anon_sym___nullable] = ACTIONS(1371), + [anon_sym___nonnull] = ACTIONS(1371), + [anon_sym___strong] = ACTIONS(1371), + [anon_sym___weak] = ACTIONS(1371), + [anon_sym___bridge] = ACTIONS(1371), + [anon_sym___bridge_transfer] = ACTIONS(1371), + [anon_sym___bridge_retained] = ACTIONS(1371), + [anon_sym___unsafe_unretained] = ACTIONS(1371), + [anon_sym___block] = ACTIONS(1371), + [anon_sym___kindof] = ACTIONS(1371), + [anon_sym___unused] = ACTIONS(1371), + [anon_sym__Complex] = ACTIONS(1371), + [anon_sym___complex] = ACTIONS(1371), + [anon_sym_IBOutlet] = ACTIONS(1371), + [anon_sym_IBInspectable] = ACTIONS(1371), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1371), + [anon_sym_signed] = ACTIONS(1371), + [anon_sym_unsigned] = ACTIONS(1371), + [anon_sym_long] = ACTIONS(1371), + [anon_sym_short] = ACTIONS(1371), + [sym_primitive_type] = ACTIONS(1371), + [anon_sym_enum] = ACTIONS(1371), + [anon_sym_struct] = ACTIONS(1371), + [anon_sym_union] = ACTIONS(1371), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1371), + [anon_sym_ATend] = ACTIONS(1373), + [sym_method_attribute_specifier] = ACTIONS(1371), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1371), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1371), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1371), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1371), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1371), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1371), + [anon_sym_NS_AVAILABLE] = ACTIONS(1371), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1371), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_API_AVAILABLE] = ACTIONS(1371), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1371), + [anon_sym_API_DEPRECATED] = ACTIONS(1371), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1371), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1371), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1371), + [anon_sym___deprecated_msg] = ACTIONS(1371), + [anon_sym___deprecated_enum_msg] = ACTIONS(1371), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1371), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1371), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1371), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1371), + [anon_sym_ATsynthesize] = ACTIONS(1373), + [anon_sym_ATdynamic] = ACTIONS(1373), + [anon_sym_NS_ENUM] = ACTIONS(1371), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1371), + [anon_sym_NS_OPTIONS] = ACTIONS(1371), + [anon_sym_typeof] = ACTIONS(1371), + [anon_sym___typeof] = ACTIONS(1371), + [anon_sym___typeof__] = ACTIONS(1371), + [sym_id] = ACTIONS(1371), + [sym_instancetype] = ACTIONS(1371), + [sym_Class] = ACTIONS(1371), + [sym_SEL] = ACTIONS(1371), + [sym_IMP] = ACTIONS(1371), + [sym_BOOL] = ACTIONS(1371), + [sym_auto] = ACTIONS(1371), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2969] = { + [sym_identifier] = ACTIONS(7032), + [aux_sym_preproc_def_token1] = ACTIONS(7034), + [anon_sym_DASH] = ACTIONS(7034), + [anon_sym_PLUS] = ACTIONS(7034), + [anon_sym_SEMI] = ACTIONS(7036), + [anon_sym_typedef] = ACTIONS(7032), + [anon_sym_extern] = ACTIONS(7032), + [anon_sym___attribute] = ACTIONS(7032), + [anon_sym___attribute__] = ACTIONS(7032), + [anon_sym___declspec] = ACTIONS(7032), + [anon_sym___cdecl] = ACTIONS(7032), + [anon_sym___clrcall] = ACTIONS(7032), + [anon_sym___stdcall] = ACTIONS(7032), + [anon_sym___fastcall] = ACTIONS(7032), + [anon_sym___thiscall] = ACTIONS(7032), + [anon_sym___vectorcall] = ACTIONS(7032), + [anon_sym_static] = ACTIONS(7032), + [anon_sym_auto] = ACTIONS(7032), + [anon_sym_register] = ACTIONS(7032), + [anon_sym_inline] = ACTIONS(7032), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7032), + [anon_sym_const] = ACTIONS(7032), + [anon_sym_volatile] = ACTIONS(7032), + [anon_sym_restrict] = ACTIONS(7032), + [anon_sym__Atomic] = ACTIONS(7032), + [anon_sym_in] = ACTIONS(7032), + [anon_sym_out] = ACTIONS(7032), + [anon_sym_inout] = ACTIONS(7032), + [anon_sym_bycopy] = ACTIONS(7032), + [anon_sym_byref] = ACTIONS(7032), + [anon_sym_oneway] = ACTIONS(7032), + [anon_sym__Nullable] = ACTIONS(7032), + [anon_sym__Nonnull] = ACTIONS(7032), + [anon_sym__Nullable_result] = ACTIONS(7032), + [anon_sym__Null_unspecified] = ACTIONS(7032), + [anon_sym___autoreleasing] = ACTIONS(7032), + [anon_sym___nullable] = ACTIONS(7032), + [anon_sym___nonnull] = ACTIONS(7032), + [anon_sym___strong] = ACTIONS(7032), + [anon_sym___weak] = ACTIONS(7032), + [anon_sym___bridge] = ACTIONS(7032), + [anon_sym___bridge_transfer] = ACTIONS(7032), + [anon_sym___bridge_retained] = ACTIONS(7032), + [anon_sym___unsafe_unretained] = ACTIONS(7032), + [anon_sym___block] = ACTIONS(7032), + [anon_sym___kindof] = ACTIONS(7032), + [anon_sym___unused] = ACTIONS(7032), + [anon_sym__Complex] = ACTIONS(7032), + [anon_sym___complex] = ACTIONS(7032), + [anon_sym_IBOutlet] = ACTIONS(7032), + [anon_sym_IBInspectable] = ACTIONS(7032), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7032), + [anon_sym_signed] = ACTIONS(7032), + [anon_sym_unsigned] = ACTIONS(7032), + [anon_sym_long] = ACTIONS(7032), + [anon_sym_short] = ACTIONS(7032), + [sym_primitive_type] = ACTIONS(7032), + [anon_sym_enum] = ACTIONS(7032), + [anon_sym_struct] = ACTIONS(7032), + [anon_sym_union] = ACTIONS(7032), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7032), + [anon_sym_ATend] = ACTIONS(7034), + [sym_method_attribute_specifier] = ACTIONS(7032), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7032), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7032), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7032), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7032), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7032), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7032), + [anon_sym_NS_AVAILABLE] = ACTIONS(7032), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7032), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7032), + [anon_sym_API_AVAILABLE] = ACTIONS(7032), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7032), + [anon_sym_API_DEPRECATED] = ACTIONS(7032), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7032), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7032), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7032), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7032), + [anon_sym___deprecated_msg] = ACTIONS(7032), + [anon_sym___deprecated_enum_msg] = ACTIONS(7032), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7032), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7032), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7032), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7032), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7032), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7032), + [anon_sym_ATsynthesize] = ACTIONS(7034), + [anon_sym_ATdynamic] = ACTIONS(7034), + [anon_sym_NS_ENUM] = ACTIONS(7032), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7032), + [anon_sym_NS_OPTIONS] = ACTIONS(7032), + [anon_sym_typeof] = ACTIONS(7032), + [anon_sym___typeof] = ACTIONS(7032), + [anon_sym___typeof__] = ACTIONS(7032), + [sym_id] = ACTIONS(7032), + [sym_instancetype] = ACTIONS(7032), + [sym_Class] = ACTIONS(7032), + [sym_SEL] = ACTIONS(7032), + [sym_IMP] = ACTIONS(7032), + [sym_BOOL] = ACTIONS(7032), + [sym_auto] = ACTIONS(7032), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2970] = { + [sym_identifier] = ACTIONS(7038), + [aux_sym_preproc_def_token1] = ACTIONS(7040), + [anon_sym_DASH] = ACTIONS(7040), + [anon_sym_PLUS] = ACTIONS(7040), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_typedef] = ACTIONS(7038), + [anon_sym_extern] = ACTIONS(7038), + [anon_sym___attribute] = ACTIONS(7038), + [anon_sym___attribute__] = ACTIONS(7038), + [anon_sym___declspec] = ACTIONS(7038), + [anon_sym___cdecl] = ACTIONS(7038), + [anon_sym___clrcall] = ACTIONS(7038), + [anon_sym___stdcall] = ACTIONS(7038), + [anon_sym___fastcall] = ACTIONS(7038), + [anon_sym___thiscall] = ACTIONS(7038), + [anon_sym___vectorcall] = ACTIONS(7038), + [anon_sym_static] = ACTIONS(7038), + [anon_sym_auto] = ACTIONS(7038), + [anon_sym_register] = ACTIONS(7038), + [anon_sym_inline] = ACTIONS(7038), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7038), + [anon_sym_const] = ACTIONS(7038), + [anon_sym_volatile] = ACTIONS(7038), + [anon_sym_restrict] = ACTIONS(7038), + [anon_sym__Atomic] = ACTIONS(7038), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_out] = ACTIONS(7038), + [anon_sym_inout] = ACTIONS(7038), + [anon_sym_bycopy] = ACTIONS(7038), + [anon_sym_byref] = ACTIONS(7038), + [anon_sym_oneway] = ACTIONS(7038), + [anon_sym__Nullable] = ACTIONS(7038), + [anon_sym__Nonnull] = ACTIONS(7038), + [anon_sym__Nullable_result] = ACTIONS(7038), + [anon_sym__Null_unspecified] = ACTIONS(7038), + [anon_sym___autoreleasing] = ACTIONS(7038), + [anon_sym___nullable] = ACTIONS(7038), + [anon_sym___nonnull] = ACTIONS(7038), + [anon_sym___strong] = ACTIONS(7038), + [anon_sym___weak] = ACTIONS(7038), + [anon_sym___bridge] = ACTIONS(7038), + [anon_sym___bridge_transfer] = ACTIONS(7038), + [anon_sym___bridge_retained] = ACTIONS(7038), + [anon_sym___unsafe_unretained] = ACTIONS(7038), + [anon_sym___block] = ACTIONS(7038), + [anon_sym___kindof] = ACTIONS(7038), + [anon_sym___unused] = ACTIONS(7038), + [anon_sym__Complex] = ACTIONS(7038), + [anon_sym___complex] = ACTIONS(7038), + [anon_sym_IBOutlet] = ACTIONS(7038), + [anon_sym_IBInspectable] = ACTIONS(7038), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7038), + [anon_sym_signed] = ACTIONS(7038), + [anon_sym_unsigned] = ACTIONS(7038), + [anon_sym_long] = ACTIONS(7038), + [anon_sym_short] = ACTIONS(7038), + [sym_primitive_type] = ACTIONS(7038), + [anon_sym_enum] = ACTIONS(7038), + [anon_sym_struct] = ACTIONS(7038), + [anon_sym_union] = ACTIONS(7038), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7038), + [anon_sym_ATend] = ACTIONS(7040), + [sym_method_attribute_specifier] = ACTIONS(7038), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7038), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7038), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7038), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7038), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7038), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7038), + [anon_sym_NS_AVAILABLE] = ACTIONS(7038), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7038), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7038), + [anon_sym_API_AVAILABLE] = ACTIONS(7038), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7038), + [anon_sym_API_DEPRECATED] = ACTIONS(7038), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7038), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7038), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7038), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7038), + [anon_sym___deprecated_msg] = ACTIONS(7038), + [anon_sym___deprecated_enum_msg] = ACTIONS(7038), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7038), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7038), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7038), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7038), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7038), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7038), + [anon_sym_ATsynthesize] = ACTIONS(7040), + [anon_sym_ATdynamic] = ACTIONS(7040), + [anon_sym_NS_ENUM] = ACTIONS(7038), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7038), + [anon_sym_NS_OPTIONS] = ACTIONS(7038), + [anon_sym_typeof] = ACTIONS(7038), + [anon_sym___typeof] = ACTIONS(7038), + [anon_sym___typeof__] = ACTIONS(7038), + [sym_id] = ACTIONS(7038), + [sym_instancetype] = ACTIONS(7038), + [sym_Class] = ACTIONS(7038), + [sym_SEL] = ACTIONS(7038), + [sym_IMP] = ACTIONS(7038), + [sym_BOOL] = ACTIONS(7038), + [sym_auto] = ACTIONS(7038), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2971] = { + [sym_identifier] = ACTIONS(7038), + [aux_sym_preproc_def_token1] = ACTIONS(7040), + [anon_sym_DASH] = ACTIONS(7040), + [anon_sym_PLUS] = ACTIONS(7040), [anon_sym_SEMI] = ACTIONS(7044), - [anon_sym___attribute] = ACTIONS(7042), - [anon_sym___attribute__] = ACTIONS(7042), - [anon_sym_RBRACE] = ACTIONS(7044), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7044), - [anon_sym_EQ] = ACTIONS(7042), - [anon_sym_const] = ACTIONS(7042), - [anon_sym_volatile] = ACTIONS(7042), - [anon_sym_restrict] = ACTIONS(7042), - [anon_sym__Atomic] = ACTIONS(7042), - [anon_sym_in] = ACTIONS(7042), - [anon_sym_out] = ACTIONS(7042), - [anon_sym_inout] = ACTIONS(7042), - [anon_sym_bycopy] = ACTIONS(7042), - [anon_sym_byref] = ACTIONS(7042), - [anon_sym_oneway] = ACTIONS(7042), - [anon_sym__Nullable] = ACTIONS(7042), - [anon_sym__Nonnull] = ACTIONS(7042), - [anon_sym__Nullable_result] = ACTIONS(7042), - [anon_sym__Null_unspecified] = ACTIONS(7042), - [anon_sym___autoreleasing] = ACTIONS(7042), - [anon_sym___nullable] = ACTIONS(7042), - [anon_sym___nonnull] = ACTIONS(7042), - [anon_sym___strong] = ACTIONS(7042), - [anon_sym___weak] = ACTIONS(7042), - [anon_sym___bridge] = ACTIONS(7042), - [anon_sym___bridge_transfer] = ACTIONS(7042), - [anon_sym___bridge_retained] = ACTIONS(7042), - [anon_sym___unsafe_unretained] = ACTIONS(7042), - [anon_sym___block] = ACTIONS(7042), - [anon_sym___kindof] = ACTIONS(7042), - [anon_sym___unused] = ACTIONS(7042), - [anon_sym__Complex] = ACTIONS(7042), - [anon_sym___complex] = ACTIONS(7042), - [anon_sym_IBOutlet] = ACTIONS(7042), - [anon_sym_IBInspectable] = ACTIONS(7042), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7042), - [anon_sym_COLON] = ACTIONS(7044), - [anon_sym_QMARK] = ACTIONS(7028), - [anon_sym_STAR_EQ] = ACTIONS(7044), - [anon_sym_SLASH_EQ] = ACTIONS(7044), - [anon_sym_PERCENT_EQ] = ACTIONS(7044), - [anon_sym_PLUS_EQ] = ACTIONS(7044), - [anon_sym_DASH_EQ] = ACTIONS(7044), - [anon_sym_LT_LT_EQ] = ACTIONS(7044), - [anon_sym_GT_GT_EQ] = ACTIONS(7044), - [anon_sym_AMP_EQ] = ACTIONS(7044), - [anon_sym_CARET_EQ] = ACTIONS(7044), - [anon_sym_PIPE_EQ] = ACTIONS(7044), - [anon_sym_DASH_DASH] = ACTIONS(7030), - [anon_sym_PLUS_PLUS] = ACTIONS(7030), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [anon_sym_typedef] = ACTIONS(7038), + [anon_sym_extern] = ACTIONS(7038), + [anon_sym___attribute] = ACTIONS(7038), + [anon_sym___attribute__] = ACTIONS(7038), + [anon_sym___declspec] = ACTIONS(7038), + [anon_sym___cdecl] = ACTIONS(7038), + [anon_sym___clrcall] = ACTIONS(7038), + [anon_sym___stdcall] = ACTIONS(7038), + [anon_sym___fastcall] = ACTIONS(7038), + [anon_sym___thiscall] = ACTIONS(7038), + [anon_sym___vectorcall] = ACTIONS(7038), + [anon_sym_static] = ACTIONS(7038), + [anon_sym_auto] = ACTIONS(7038), + [anon_sym_register] = ACTIONS(7038), + [anon_sym_inline] = ACTIONS(7038), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7038), + [anon_sym_const] = ACTIONS(7038), + [anon_sym_volatile] = ACTIONS(7038), + [anon_sym_restrict] = ACTIONS(7038), + [anon_sym__Atomic] = ACTIONS(7038), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_out] = ACTIONS(7038), + [anon_sym_inout] = ACTIONS(7038), + [anon_sym_bycopy] = ACTIONS(7038), + [anon_sym_byref] = ACTIONS(7038), + [anon_sym_oneway] = ACTIONS(7038), + [anon_sym__Nullable] = ACTIONS(7038), + [anon_sym__Nonnull] = ACTIONS(7038), + [anon_sym__Nullable_result] = ACTIONS(7038), + [anon_sym__Null_unspecified] = ACTIONS(7038), + [anon_sym___autoreleasing] = ACTIONS(7038), + [anon_sym___nullable] = ACTIONS(7038), + [anon_sym___nonnull] = ACTIONS(7038), + [anon_sym___strong] = ACTIONS(7038), + [anon_sym___weak] = ACTIONS(7038), + [anon_sym___bridge] = ACTIONS(7038), + [anon_sym___bridge_transfer] = ACTIONS(7038), + [anon_sym___bridge_retained] = ACTIONS(7038), + [anon_sym___unsafe_unretained] = ACTIONS(7038), + [anon_sym___block] = ACTIONS(7038), + [anon_sym___kindof] = ACTIONS(7038), + [anon_sym___unused] = ACTIONS(7038), + [anon_sym__Complex] = ACTIONS(7038), + [anon_sym___complex] = ACTIONS(7038), + [anon_sym_IBOutlet] = ACTIONS(7038), + [anon_sym_IBInspectable] = ACTIONS(7038), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7038), + [anon_sym_signed] = ACTIONS(7038), + [anon_sym_unsigned] = ACTIONS(7038), + [anon_sym_long] = ACTIONS(7038), + [anon_sym_short] = ACTIONS(7038), + [sym_primitive_type] = ACTIONS(7038), + [anon_sym_enum] = ACTIONS(7038), + [anon_sym_struct] = ACTIONS(7038), + [anon_sym_union] = ACTIONS(7038), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7042), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7042), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7042), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7042), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7042), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7042), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7042), - [anon_sym_NS_AVAILABLE] = ACTIONS(7042), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7042), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7042), - [anon_sym_API_AVAILABLE] = ACTIONS(7042), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7042), - [anon_sym_API_DEPRECATED] = ACTIONS(7042), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7042), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7042), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7042), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7042), - [anon_sym___deprecated_msg] = ACTIONS(7042), - [anon_sym___deprecated_enum_msg] = ACTIONS(7042), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7042), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7042), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7042), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7042), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7042), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7042), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7038), + [anon_sym_ATend] = ACTIONS(7040), + [sym_method_attribute_specifier] = ACTIONS(7038), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7038), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7038), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7038), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7038), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7038), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7038), + [anon_sym_NS_AVAILABLE] = ACTIONS(7038), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7038), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7038), + [anon_sym_API_AVAILABLE] = ACTIONS(7038), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7038), + [anon_sym_API_DEPRECATED] = ACTIONS(7038), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7038), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7038), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7038), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7038), + [anon_sym___deprecated_msg] = ACTIONS(7038), + [anon_sym___deprecated_enum_msg] = ACTIONS(7038), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7038), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7038), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7038), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7038), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7038), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7038), + [anon_sym_ATsynthesize] = ACTIONS(7040), + [anon_sym_ATdynamic] = ACTIONS(7040), + [anon_sym_NS_ENUM] = ACTIONS(7038), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7038), + [anon_sym_NS_OPTIONS] = ACTIONS(7038), + [anon_sym_typeof] = ACTIONS(7038), + [anon_sym___typeof] = ACTIONS(7038), + [anon_sym___typeof__] = ACTIONS(7038), + [sym_id] = ACTIONS(7038), + [sym_instancetype] = ACTIONS(7038), + [sym_Class] = ACTIONS(7038), + [sym_SEL] = ACTIONS(7038), + [sym_IMP] = ACTIONS(7038), + [sym_BOOL] = ACTIONS(7038), + [sym_auto] = ACTIONS(7038), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -492391,7 +486392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3010] = { + [2972] = { [sym_identifier] = ACTIONS(7046), [aux_sym_preproc_def_token1] = ACTIONS(7048), [anon_sym_DASH] = ACTIONS(7048), @@ -492450,9 +486451,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7046), [sym_primitive_type] = ACTIONS(7046), [anon_sym_enum] = ACTIONS(7046), - [anon_sym_NS_ENUM] = ACTIONS(7046), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7046), - [anon_sym_NS_OPTIONS] = ACTIONS(7046), [anon_sym_struct] = ACTIONS(7046), [anon_sym_union] = ACTIONS(7046), [sym_comment] = ACTIONS(3), @@ -492485,6 +486483,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_SWIFT_NAME] = ACTIONS(7046), [anon_sym_ATsynthesize] = ACTIONS(7048), [anon_sym_ATdynamic] = ACTIONS(7048), + [anon_sym_NS_ENUM] = ACTIONS(7046), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7046), + [anon_sym_NS_OPTIONS] = ACTIONS(7046), [anon_sym_typeof] = ACTIONS(7046), [anon_sym___typeof] = ACTIONS(7046), [anon_sym___typeof__] = ACTIONS(7046), @@ -492502,328 +486503,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3011] = { - [sym_identifier] = ACTIONS(1367), - [aux_sym_preproc_def_token1] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_typedef] = ACTIONS(1367), - [anon_sym_extern] = ACTIONS(1367), - [anon_sym___attribute] = ACTIONS(1367), - [anon_sym___attribute__] = ACTIONS(1367), - [anon_sym___declspec] = ACTIONS(1367), - [anon_sym___cdecl] = ACTIONS(1367), - [anon_sym___clrcall] = ACTIONS(1367), - [anon_sym___stdcall] = ACTIONS(1367), - [anon_sym___fastcall] = ACTIONS(1367), - [anon_sym___thiscall] = ACTIONS(1367), - [anon_sym___vectorcall] = ACTIONS(1367), - [anon_sym_static] = ACTIONS(1367), - [anon_sym_auto] = ACTIONS(1367), - [anon_sym_register] = ACTIONS(1367), - [anon_sym_inline] = ACTIONS(1367), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1367), - [anon_sym_const] = ACTIONS(1367), - [anon_sym_volatile] = ACTIONS(1367), - [anon_sym_restrict] = ACTIONS(1367), - [anon_sym__Atomic] = ACTIONS(1367), - [anon_sym_in] = ACTIONS(1367), - [anon_sym_out] = ACTIONS(1367), - [anon_sym_inout] = ACTIONS(1367), - [anon_sym_bycopy] = ACTIONS(1367), - [anon_sym_byref] = ACTIONS(1367), - [anon_sym_oneway] = ACTIONS(1367), - [anon_sym__Nullable] = ACTIONS(1367), - [anon_sym__Nonnull] = ACTIONS(1367), - [anon_sym__Nullable_result] = ACTIONS(1367), - [anon_sym__Null_unspecified] = ACTIONS(1367), - [anon_sym___autoreleasing] = ACTIONS(1367), - [anon_sym___nullable] = ACTIONS(1367), - [anon_sym___nonnull] = ACTIONS(1367), - [anon_sym___strong] = ACTIONS(1367), - [anon_sym___weak] = ACTIONS(1367), - [anon_sym___bridge] = ACTIONS(1367), - [anon_sym___bridge_transfer] = ACTIONS(1367), - [anon_sym___bridge_retained] = ACTIONS(1367), - [anon_sym___unsafe_unretained] = ACTIONS(1367), - [anon_sym___block] = ACTIONS(1367), - [anon_sym___kindof] = ACTIONS(1367), - [anon_sym___unused] = ACTIONS(1367), - [anon_sym__Complex] = ACTIONS(1367), - [anon_sym___complex] = ACTIONS(1367), - [anon_sym_IBOutlet] = ACTIONS(1367), - [anon_sym_IBInspectable] = ACTIONS(1367), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1367), - [anon_sym_signed] = ACTIONS(1367), - [anon_sym_unsigned] = ACTIONS(1367), - [anon_sym_long] = ACTIONS(1367), - [anon_sym_short] = ACTIONS(1367), - [sym_primitive_type] = ACTIONS(1367), - [anon_sym_enum] = ACTIONS(1367), - [anon_sym_NS_ENUM] = ACTIONS(1367), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1367), - [anon_sym_NS_OPTIONS] = ACTIONS(1367), - [anon_sym_struct] = ACTIONS(1367), - [anon_sym_union] = ACTIONS(1367), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1367), - [anon_sym_ATend] = ACTIONS(1365), - [sym_method_attribute_specifier] = ACTIONS(1367), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1367), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1367), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1367), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1367), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1367), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1367), - [anon_sym_NS_AVAILABLE] = ACTIONS(1367), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1367), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_API_AVAILABLE] = ACTIONS(1367), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1367), - [anon_sym_API_DEPRECATED] = ACTIONS(1367), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1367), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1367), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1367), - [anon_sym___deprecated_msg] = ACTIONS(1367), - [anon_sym___deprecated_enum_msg] = ACTIONS(1367), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1367), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1367), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1367), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1367), - [anon_sym_ATsynthesize] = ACTIONS(1365), - [anon_sym_ATdynamic] = ACTIONS(1365), - [anon_sym_typeof] = ACTIONS(1367), - [anon_sym___typeof] = ACTIONS(1367), - [anon_sym___typeof__] = ACTIONS(1367), - [sym_id] = ACTIONS(1367), - [sym_instancetype] = ACTIONS(1367), - [sym_Class] = ACTIONS(1367), - [sym_SEL] = ACTIONS(1367), - [sym_IMP] = ACTIONS(1367), - [sym_BOOL] = ACTIONS(1367), - [sym_auto] = ACTIONS(1367), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3012] = { - [sym_identifier] = ACTIONS(1707), - [aux_sym_preproc_def_token1] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_typedef] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym___attribute] = ACTIONS(1707), - [anon_sym___attribute__] = ACTIONS(1707), - [anon_sym___declspec] = ACTIONS(1707), - [anon_sym___cdecl] = ACTIONS(1707), - [anon_sym___clrcall] = ACTIONS(1707), - [anon_sym___stdcall] = ACTIONS(1707), - [anon_sym___fastcall] = ACTIONS(1707), - [anon_sym___thiscall] = ACTIONS(1707), - [anon_sym___vectorcall] = ACTIONS(1707), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_auto] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_inline] = ACTIONS(1707), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym_restrict] = ACTIONS(1707), - [anon_sym__Atomic] = ACTIONS(1707), - [anon_sym_in] = ACTIONS(1707), - [anon_sym_out] = ACTIONS(1707), - [anon_sym_inout] = ACTIONS(1707), - [anon_sym_bycopy] = ACTIONS(1707), - [anon_sym_byref] = ACTIONS(1707), - [anon_sym_oneway] = ACTIONS(1707), - [anon_sym__Nullable] = ACTIONS(1707), - [anon_sym__Nonnull] = ACTIONS(1707), - [anon_sym__Nullable_result] = ACTIONS(1707), - [anon_sym__Null_unspecified] = ACTIONS(1707), - [anon_sym___autoreleasing] = ACTIONS(1707), - [anon_sym___nullable] = ACTIONS(1707), - [anon_sym___nonnull] = ACTIONS(1707), - [anon_sym___strong] = ACTIONS(1707), - [anon_sym___weak] = ACTIONS(1707), - [anon_sym___bridge] = ACTIONS(1707), - [anon_sym___bridge_transfer] = ACTIONS(1707), - [anon_sym___bridge_retained] = ACTIONS(1707), - [anon_sym___unsafe_unretained] = ACTIONS(1707), - [anon_sym___block] = ACTIONS(1707), - [anon_sym___kindof] = ACTIONS(1707), - [anon_sym___unused] = ACTIONS(1707), - [anon_sym__Complex] = ACTIONS(1707), - [anon_sym___complex] = ACTIONS(1707), - [anon_sym_IBOutlet] = ACTIONS(1707), - [anon_sym_IBInspectable] = ACTIONS(1707), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1707), - [anon_sym_signed] = ACTIONS(1707), - [anon_sym_unsigned] = ACTIONS(1707), - [anon_sym_long] = ACTIONS(1707), - [anon_sym_short] = ACTIONS(1707), - [sym_primitive_type] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_NS_ENUM] = ACTIONS(1707), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1707), - [anon_sym_NS_OPTIONS] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1707), - [anon_sym_ATend] = ACTIONS(1705), - [sym_method_attribute_specifier] = ACTIONS(1707), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1707), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1707), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1707), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1707), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1707), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1707), - [anon_sym_NS_AVAILABLE] = ACTIONS(1707), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1707), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_API_AVAILABLE] = ACTIONS(1707), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1707), - [anon_sym_API_DEPRECATED] = ACTIONS(1707), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1707), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1707), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1707), - [anon_sym___deprecated_msg] = ACTIONS(1707), - [anon_sym___deprecated_enum_msg] = ACTIONS(1707), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1707), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1707), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1707), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1707), - [anon_sym_ATsynthesize] = ACTIONS(1705), - [anon_sym_ATdynamic] = ACTIONS(1705), - [anon_sym_typeof] = ACTIONS(1707), - [anon_sym___typeof] = ACTIONS(1707), - [anon_sym___typeof__] = ACTIONS(1707), - [sym_id] = ACTIONS(1707), - [sym_instancetype] = ACTIONS(1707), - [sym_Class] = ACTIONS(1707), - [sym_SEL] = ACTIONS(1707), - [sym_IMP] = ACTIONS(1707), - [sym_BOOL] = ACTIONS(1707), - [sym_auto] = ACTIONS(1707), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3013] = { - [sym_attribute_specifier] = STATE(3255), - [sym_ms_declspec_modifier] = STATE(3255), - [sym_storage_class_specifier] = STATE(3255), - [sym_type_qualifier] = STATE(3255), - [sym__type_specifier] = STATE(3412), - [sym_sized_type_specifier] = STATE(3412), - [sym_enum_specifier] = STATE(3412), - [sym_struct_specifier] = STATE(3412), - [sym_union_specifier] = STATE(3412), - [sym_macro_type_specifier] = STATE(3412), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3412), - [sym_atomic_specifier] = STATE(3412), - [sym_generic_type_specifier] = STATE(3412), - [aux_sym__declaration_specifiers_repeat1] = STATE(3255), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), + [2973] = { + [sym_identifier] = ACTIONS(7052), + [aux_sym_preproc_def_token1] = ACTIONS(7054), + [anon_sym_COMMA] = ACTIONS(7054), + [anon_sym_LPAREN2] = ACTIONS(7054), + [anon_sym_DASH] = ACTIONS(7054), + [anon_sym_PLUS] = ACTIONS(7054), + [anon_sym_LT] = ACTIONS(7054), + [anon_sym_SEMI] = ACTIONS(7054), + [anon_sym_typedef] = ACTIONS(7052), + [anon_sym_extern] = ACTIONS(7052), + [anon_sym___attribute] = ACTIONS(7052), + [anon_sym___attribute__] = ACTIONS(7052), + [anon_sym___declspec] = ACTIONS(7052), + [anon_sym_LBRACE] = ACTIONS(7054), + [anon_sym_static] = ACTIONS(7052), + [anon_sym_auto] = ACTIONS(7052), + [anon_sym_register] = ACTIONS(7052), + [anon_sym_inline] = ACTIONS(7052), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7052), + [anon_sym_const] = ACTIONS(7052), + [anon_sym_volatile] = ACTIONS(7052), + [anon_sym_restrict] = ACTIONS(7052), + [anon_sym__Atomic] = ACTIONS(7052), + [anon_sym_in] = ACTIONS(7052), + [anon_sym_out] = ACTIONS(7052), + [anon_sym_inout] = ACTIONS(7052), + [anon_sym_bycopy] = ACTIONS(7052), + [anon_sym_byref] = ACTIONS(7052), + [anon_sym_oneway] = ACTIONS(7052), + [anon_sym__Nullable] = ACTIONS(7052), + [anon_sym__Nonnull] = ACTIONS(7052), + [anon_sym__Nullable_result] = ACTIONS(7052), + [anon_sym__Null_unspecified] = ACTIONS(7052), + [anon_sym___autoreleasing] = ACTIONS(7052), + [anon_sym___nullable] = ACTIONS(7052), + [anon_sym___nonnull] = ACTIONS(7052), + [anon_sym___strong] = ACTIONS(7052), + [anon_sym___weak] = ACTIONS(7052), + [anon_sym___bridge] = ACTIONS(7052), + [anon_sym___bridge_transfer] = ACTIONS(7052), + [anon_sym___bridge_retained] = ACTIONS(7052), + [anon_sym___unsafe_unretained] = ACTIONS(7052), + [anon_sym___block] = ACTIONS(7052), + [anon_sym___kindof] = ACTIONS(7052), + [anon_sym___unused] = ACTIONS(7052), + [anon_sym__Complex] = ACTIONS(7052), + [anon_sym___complex] = ACTIONS(7052), + [anon_sym_IBOutlet] = ACTIONS(7052), + [anon_sym_IBInspectable] = ACTIONS(7052), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7052), + [anon_sym_signed] = ACTIONS(7052), + [anon_sym_unsigned] = ACTIONS(7052), + [anon_sym_long] = ACTIONS(7052), + [anon_sym_short] = ACTIONS(7052), [sym_primitive_type] = ACTIONS(7052), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(7052), + [anon_sym_COLON] = ACTIONS(7054), + [anon_sym_struct] = ACTIONS(7052), + [anon_sym_union] = ACTIONS(7052), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7052), + [anon_sym_ATend] = ACTIONS(7054), + [sym_optional] = ACTIONS(7054), + [sym_required] = ACTIONS(7054), + [anon_sym_ATproperty] = ACTIONS(7054), + [sym_method_attribute_specifier] = ACTIONS(7052), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7052), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7052), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7052), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7052), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7052), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7052), + [anon_sym_NS_AVAILABLE] = ACTIONS(7052), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7052), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7052), + [anon_sym_API_AVAILABLE] = ACTIONS(7052), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7052), + [anon_sym_API_DEPRECATED] = ACTIONS(7052), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7052), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7052), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7052), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7052), + [anon_sym___deprecated_msg] = ACTIONS(7052), + [anon_sym___deprecated_enum_msg] = ACTIONS(7052), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7052), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7052), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7052), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7052), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7052), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7052), + [anon_sym_NS_ENUM] = ACTIONS(7052), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7052), + [anon_sym_NS_OPTIONS] = ACTIONS(7052), + [anon_sym_typeof] = ACTIONS(7052), + [anon_sym___typeof] = ACTIONS(7052), + [anon_sym___typeof__] = ACTIONS(7052), + [sym_id] = ACTIONS(7052), [sym_instancetype] = ACTIONS(7052), - [sym_Class] = ACTIONS(131), + [sym_Class] = ACTIONS(7052), [sym_SEL] = ACTIONS(7052), [sym_IMP] = ACTIONS(7052), [sym_BOOL] = ACTIONS(7052), @@ -492835,110 +486614,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3014] = { - [sym_identifier] = ACTIONS(7054), - [aux_sym_preproc_def_token1] = ACTIONS(7056), - [anon_sym_DASH] = ACTIONS(7056), - [anon_sym_PLUS] = ACTIONS(7056), + [2974] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(7056), + [anon_sym_COMMA] = ACTIONS(7058), + [anon_sym_RPAREN] = ACTIONS(7058), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(6970), + [anon_sym_PLUS] = ACTIONS(6970), + [anon_sym_STAR] = ACTIONS(6972), + [anon_sym_SLASH] = ACTIONS(6972), + [anon_sym_PERCENT] = ACTIONS(6972), + [anon_sym_PIPE_PIPE] = ACTIONS(7058), + [anon_sym_AMP_AMP] = ACTIONS(7058), + [anon_sym_PIPE] = ACTIONS(7056), + [anon_sym_CARET] = ACTIONS(7056), + [anon_sym_AMP] = ACTIONS(7056), + [anon_sym_EQ_EQ] = ACTIONS(7058), + [anon_sym_BANG_EQ] = ACTIONS(7058), + [anon_sym_GT] = ACTIONS(7056), + [anon_sym_GT_EQ] = ACTIONS(7058), + [anon_sym_LT_EQ] = ACTIONS(7058), + [anon_sym_LT] = ACTIONS(7056), + [anon_sym_LT_LT] = ACTIONS(6990), + [anon_sym_GT_GT] = ACTIONS(6990), [anon_sym_SEMI] = ACTIONS(7058), - [anon_sym_typedef] = ACTIONS(7054), - [anon_sym_extern] = ACTIONS(7054), - [anon_sym___attribute] = ACTIONS(7054), - [anon_sym___attribute__] = ACTIONS(7054), - [anon_sym___declspec] = ACTIONS(7054), - [anon_sym___cdecl] = ACTIONS(7054), - [anon_sym___clrcall] = ACTIONS(7054), - [anon_sym___stdcall] = ACTIONS(7054), - [anon_sym___fastcall] = ACTIONS(7054), - [anon_sym___thiscall] = ACTIONS(7054), - [anon_sym___vectorcall] = ACTIONS(7054), - [anon_sym_static] = ACTIONS(7054), - [anon_sym_auto] = ACTIONS(7054), - [anon_sym_register] = ACTIONS(7054), - [anon_sym_inline] = ACTIONS(7054), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7054), - [anon_sym_const] = ACTIONS(7054), - [anon_sym_volatile] = ACTIONS(7054), - [anon_sym_restrict] = ACTIONS(7054), - [anon_sym__Atomic] = ACTIONS(7054), - [anon_sym_in] = ACTIONS(7054), - [anon_sym_out] = ACTIONS(7054), - [anon_sym_inout] = ACTIONS(7054), - [anon_sym_bycopy] = ACTIONS(7054), - [anon_sym_byref] = ACTIONS(7054), - [anon_sym_oneway] = ACTIONS(7054), - [anon_sym__Nullable] = ACTIONS(7054), - [anon_sym__Nonnull] = ACTIONS(7054), - [anon_sym__Nullable_result] = ACTIONS(7054), - [anon_sym__Null_unspecified] = ACTIONS(7054), - [anon_sym___autoreleasing] = ACTIONS(7054), - [anon_sym___nullable] = ACTIONS(7054), - [anon_sym___nonnull] = ACTIONS(7054), - [anon_sym___strong] = ACTIONS(7054), - [anon_sym___weak] = ACTIONS(7054), - [anon_sym___bridge] = ACTIONS(7054), - [anon_sym___bridge_transfer] = ACTIONS(7054), - [anon_sym___bridge_retained] = ACTIONS(7054), - [anon_sym___unsafe_unretained] = ACTIONS(7054), - [anon_sym___block] = ACTIONS(7054), - [anon_sym___kindof] = ACTIONS(7054), - [anon_sym___unused] = ACTIONS(7054), - [anon_sym__Complex] = ACTIONS(7054), - [anon_sym___complex] = ACTIONS(7054), - [anon_sym_IBOutlet] = ACTIONS(7054), - [anon_sym_IBInspectable] = ACTIONS(7054), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7054), - [anon_sym_signed] = ACTIONS(7054), - [anon_sym_unsigned] = ACTIONS(7054), - [anon_sym_long] = ACTIONS(7054), - [anon_sym_short] = ACTIONS(7054), - [sym_primitive_type] = ACTIONS(7054), - [anon_sym_enum] = ACTIONS(7054), - [anon_sym_NS_ENUM] = ACTIONS(7054), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7054), - [anon_sym_NS_OPTIONS] = ACTIONS(7054), - [anon_sym_struct] = ACTIONS(7054), - [anon_sym_union] = ACTIONS(7054), + [anon_sym___attribute] = ACTIONS(7056), + [anon_sym___attribute__] = ACTIONS(7056), + [anon_sym_RBRACE] = ACTIONS(7058), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(7058), + [anon_sym_EQ] = ACTIONS(7056), + [anon_sym_const] = ACTIONS(7056), + [anon_sym_volatile] = ACTIONS(7056), + [anon_sym_restrict] = ACTIONS(7056), + [anon_sym__Atomic] = ACTIONS(7056), + [anon_sym_in] = ACTIONS(7056), + [anon_sym_out] = ACTIONS(7056), + [anon_sym_inout] = ACTIONS(7056), + [anon_sym_bycopy] = ACTIONS(7056), + [anon_sym_byref] = ACTIONS(7056), + [anon_sym_oneway] = ACTIONS(7056), + [anon_sym__Nullable] = ACTIONS(7056), + [anon_sym__Nonnull] = ACTIONS(7056), + [anon_sym__Nullable_result] = ACTIONS(7056), + [anon_sym__Null_unspecified] = ACTIONS(7056), + [anon_sym___autoreleasing] = ACTIONS(7056), + [anon_sym___nullable] = ACTIONS(7056), + [anon_sym___nonnull] = ACTIONS(7056), + [anon_sym___strong] = ACTIONS(7056), + [anon_sym___weak] = ACTIONS(7056), + [anon_sym___bridge] = ACTIONS(7056), + [anon_sym___bridge_transfer] = ACTIONS(7056), + [anon_sym___bridge_retained] = ACTIONS(7056), + [anon_sym___unsafe_unretained] = ACTIONS(7056), + [anon_sym___block] = ACTIONS(7056), + [anon_sym___kindof] = ACTIONS(7056), + [anon_sym___unused] = ACTIONS(7056), + [anon_sym__Complex] = ACTIONS(7056), + [anon_sym___complex] = ACTIONS(7056), + [anon_sym_IBOutlet] = ACTIONS(7056), + [anon_sym_IBInspectable] = ACTIONS(7056), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7056), + [anon_sym_COLON] = ACTIONS(7058), + [anon_sym_QMARK] = ACTIONS(7058), + [anon_sym_STAR_EQ] = ACTIONS(7058), + [anon_sym_SLASH_EQ] = ACTIONS(7058), + [anon_sym_PERCENT_EQ] = ACTIONS(7058), + [anon_sym_PLUS_EQ] = ACTIONS(7058), + [anon_sym_DASH_EQ] = ACTIONS(7058), + [anon_sym_LT_LT_EQ] = ACTIONS(7058), + [anon_sym_GT_GT_EQ] = ACTIONS(7058), + [anon_sym_AMP_EQ] = ACTIONS(7058), + [anon_sym_CARET_EQ] = ACTIONS(7058), + [anon_sym_PIPE_EQ] = ACTIONS(7058), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7054), - [anon_sym_ATend] = ACTIONS(7056), - [sym_method_attribute_specifier] = ACTIONS(7054), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7054), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7054), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7054), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7054), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7054), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7054), - [anon_sym_NS_AVAILABLE] = ACTIONS(7054), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7054), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7054), - [anon_sym_API_AVAILABLE] = ACTIONS(7054), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7054), - [anon_sym_API_DEPRECATED] = ACTIONS(7054), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7054), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7054), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7054), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7054), - [anon_sym___deprecated_msg] = ACTIONS(7054), - [anon_sym___deprecated_enum_msg] = ACTIONS(7054), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7054), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7054), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7054), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7054), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7054), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7054), - [anon_sym_ATsynthesize] = ACTIONS(7056), - [anon_sym_ATdynamic] = ACTIONS(7056), - [anon_sym_typeof] = ACTIONS(7054), - [anon_sym___typeof] = ACTIONS(7054), - [anon_sym___typeof__] = ACTIONS(7054), - [sym_id] = ACTIONS(7054), - [sym_instancetype] = ACTIONS(7054), - [sym_Class] = ACTIONS(7054), - [sym_SEL] = ACTIONS(7054), - [sym_IMP] = ACTIONS(7054), - [sym_BOOL] = ACTIONS(7054), - [sym_auto] = ACTIONS(7054), + [sym_method_attribute_specifier] = ACTIONS(7056), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7056), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7056), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7056), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7056), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7056), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7056), + [anon_sym_NS_AVAILABLE] = ACTIONS(7056), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7056), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7056), + [anon_sym_API_AVAILABLE] = ACTIONS(7056), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7056), + [anon_sym_API_DEPRECATED] = ACTIONS(7056), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7056), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7056), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7056), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7056), + [anon_sym___deprecated_msg] = ACTIONS(7056), + [anon_sym___deprecated_enum_msg] = ACTIONS(7056), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7056), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7056), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7056), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7056), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7056), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7056), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -492946,12 +486725,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3015] = { - [sym_argument_list] = STATE(3088), + [2975] = { + [sym_argument_list] = STATE(3012), [sym_identifier] = ACTIONS(7060), [anon_sym_COMMA] = ACTIONS(7062), [anon_sym_RPAREN] = ACTIONS(7062), - [anon_sym_LPAREN2] = ACTIONS(7002), + [anon_sym_LPAREN2] = ACTIONS(6954), [anon_sym_DASH] = ACTIONS(7060), [anon_sym_PLUS] = ACTIONS(7060), [anon_sym_STAR] = ACTIONS(7060), @@ -492974,7 +486753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute] = ACTIONS(7060), [anon_sym___attribute__] = ACTIONS(7060), [anon_sym_RBRACE] = ACTIONS(7062), - [anon_sym_LBRACK] = ACTIONS(7026), + [anon_sym_LBRACK] = ACTIONS(6956), [anon_sym_RBRACK] = ACTIONS(7062), [anon_sym_EQ] = ACTIONS(7060), [anon_sym_const] = ACTIONS(7060), @@ -493020,10 +486799,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(7062), [anon_sym_CARET_EQ] = ACTIONS(7062), [anon_sym_PIPE_EQ] = ACTIONS(7062), - [anon_sym_DASH_DASH] = ACTIONS(7030), - [anon_sym_PLUS_PLUS] = ACTIONS(7030), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), [sym_comment] = ACTIONS(3), [sym_method_attribute_specifier] = ACTIONS(7060), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7060), @@ -493057,17 +486836,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3016] = { - [sym_argument_list] = STATE(3088), + [2976] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(6970), + [anon_sym_PLUS] = ACTIONS(6970), + [anon_sym_STAR] = ACTIONS(6972), + [anon_sym_SLASH] = ACTIONS(6972), + [anon_sym_PERCENT] = ACTIONS(6972), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(6952), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_CARET] = ACTIONS(6950), + [anon_sym_AMP] = ACTIONS(6950), + [anon_sym_EQ_EQ] = ACTIONS(6952), + [anon_sym_BANG_EQ] = ACTIONS(6952), + [anon_sym_GT] = ACTIONS(6950), + [anon_sym_GT_EQ] = ACTIONS(6952), + [anon_sym_LT_EQ] = ACTIONS(6952), + [anon_sym_LT] = ACTIONS(6950), + [anon_sym_LT_LT] = ACTIONS(6950), + [anon_sym_GT_GT] = ACTIONS(6950), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_EQ] = ACTIONS(6950), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_STAR_EQ] = ACTIONS(6952), + [anon_sym_SLASH_EQ] = ACTIONS(6952), + [anon_sym_PERCENT_EQ] = ACTIONS(6952), + [anon_sym_PLUS_EQ] = ACTIONS(6952), + [anon_sym_DASH_EQ] = ACTIONS(6952), + [anon_sym_LT_LT_EQ] = ACTIONS(6952), + [anon_sym_GT_GT_EQ] = ACTIONS(6952), + [anon_sym_AMP_EQ] = ACTIONS(6952), + [anon_sym_CARET_EQ] = ACTIONS(6952), + [anon_sym_PIPE_EQ] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2977] = { + [sym_argument_list] = STATE(3012), [sym_identifier] = ACTIONS(7064), [anon_sym_COMMA] = ACTIONS(7066), [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7004), - [anon_sym_PLUS] = ACTIONS(7004), - [anon_sym_STAR] = ACTIONS(7006), - [anon_sym_SLASH] = ACTIONS(7006), - [anon_sym_PERCENT] = ACTIONS(7006), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(7064), + [anon_sym_PLUS] = ACTIONS(7064), + [anon_sym_STAR] = ACTIONS(7064), + [anon_sym_SLASH] = ACTIONS(7064), + [anon_sym_PERCENT] = ACTIONS(7064), [anon_sym_PIPE_PIPE] = ACTIONS(7066), [anon_sym_AMP_AMP] = ACTIONS(7066), [anon_sym_PIPE] = ACTIONS(7064), @@ -493085,7 +486975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute] = ACTIONS(7064), [anon_sym___attribute__] = ACTIONS(7064), [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), + [anon_sym_LBRACK] = ACTIONS(6956), [anon_sym_RBRACK] = ACTIONS(7066), [anon_sym_EQ] = ACTIONS(7064), [anon_sym_const] = ACTIONS(7064), @@ -493131,10 +487021,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(7066), [anon_sym_CARET_EQ] = ACTIONS(7066), [anon_sym_PIPE_EQ] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7030), - [anon_sym_PLUS_PLUS] = ACTIONS(7030), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), [sym_comment] = ACTIONS(3), [sym_method_attribute_specifier] = ACTIONS(7064), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), @@ -493168,28 +487058,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3017] = { + [2978] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(6970), + [anon_sym_PLUS] = ACTIONS(6970), + [anon_sym_STAR] = ACTIONS(6972), + [anon_sym_SLASH] = ACTIONS(6972), + [anon_sym_PERCENT] = ACTIONS(6972), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(6952), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_CARET] = ACTIONS(6950), + [anon_sym_AMP] = ACTIONS(6950), + [anon_sym_EQ_EQ] = ACTIONS(6952), + [anon_sym_BANG_EQ] = ACTIONS(6952), + [anon_sym_GT] = ACTIONS(6950), + [anon_sym_GT_EQ] = ACTIONS(6952), + [anon_sym_LT_EQ] = ACTIONS(6952), + [anon_sym_LT] = ACTIONS(6950), + [anon_sym_LT_LT] = ACTIONS(6990), + [anon_sym_GT_GT] = ACTIONS(6990), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_EQ] = ACTIONS(6950), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_STAR_EQ] = ACTIONS(6952), + [anon_sym_SLASH_EQ] = ACTIONS(6952), + [anon_sym_PERCENT_EQ] = ACTIONS(6952), + [anon_sym_PLUS_EQ] = ACTIONS(6952), + [anon_sym_DASH_EQ] = ACTIONS(6952), + [anon_sym_LT_LT_EQ] = ACTIONS(6952), + [anon_sym_GT_GT_EQ] = ACTIONS(6952), + [anon_sym_AMP_EQ] = ACTIONS(6952), + [anon_sym_CARET_EQ] = ACTIONS(6952), + [anon_sym_PIPE_EQ] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(6958), + [anon_sym_PLUS_PLUS] = ACTIONS(6958), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2979] = { + [sym_identifier] = ACTIONS(1812), + [aux_sym_preproc_def_token1] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_typedef] = ACTIONS(1812), + [anon_sym_extern] = ACTIONS(1812), + [anon_sym___attribute] = ACTIONS(1812), + [anon_sym___attribute__] = ACTIONS(1812), + [anon_sym___declspec] = ACTIONS(1812), + [anon_sym___cdecl] = ACTIONS(1812), + [anon_sym___clrcall] = ACTIONS(1812), + [anon_sym___stdcall] = ACTIONS(1812), + [anon_sym___fastcall] = ACTIONS(1812), + [anon_sym___thiscall] = ACTIONS(1812), + [anon_sym___vectorcall] = ACTIONS(1812), + [anon_sym_static] = ACTIONS(1812), + [anon_sym_auto] = ACTIONS(1812), + [anon_sym_register] = ACTIONS(1812), + [anon_sym_inline] = ACTIONS(1812), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1812), + [anon_sym_const] = ACTIONS(1812), + [anon_sym_volatile] = ACTIONS(1812), + [anon_sym_restrict] = ACTIONS(1812), + [anon_sym__Atomic] = ACTIONS(1812), + [anon_sym_in] = ACTIONS(1812), + [anon_sym_out] = ACTIONS(1812), + [anon_sym_inout] = ACTIONS(1812), + [anon_sym_bycopy] = ACTIONS(1812), + [anon_sym_byref] = ACTIONS(1812), + [anon_sym_oneway] = ACTIONS(1812), + [anon_sym__Nullable] = ACTIONS(1812), + [anon_sym__Nonnull] = ACTIONS(1812), + [anon_sym__Nullable_result] = ACTIONS(1812), + [anon_sym__Null_unspecified] = ACTIONS(1812), + [anon_sym___autoreleasing] = ACTIONS(1812), + [anon_sym___nullable] = ACTIONS(1812), + [anon_sym___nonnull] = ACTIONS(1812), + [anon_sym___strong] = ACTIONS(1812), + [anon_sym___weak] = ACTIONS(1812), + [anon_sym___bridge] = ACTIONS(1812), + [anon_sym___bridge_transfer] = ACTIONS(1812), + [anon_sym___bridge_retained] = ACTIONS(1812), + [anon_sym___unsafe_unretained] = ACTIONS(1812), + [anon_sym___block] = ACTIONS(1812), + [anon_sym___kindof] = ACTIONS(1812), + [anon_sym___unused] = ACTIONS(1812), + [anon_sym__Complex] = ACTIONS(1812), + [anon_sym___complex] = ACTIONS(1812), + [anon_sym_IBOutlet] = ACTIONS(1812), + [anon_sym_IBInspectable] = ACTIONS(1812), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1812), + [anon_sym_signed] = ACTIONS(1812), + [anon_sym_unsigned] = ACTIONS(1812), + [anon_sym_long] = ACTIONS(1812), + [anon_sym_short] = ACTIONS(1812), + [sym_primitive_type] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1812), + [anon_sym_struct] = ACTIONS(1812), + [anon_sym_union] = ACTIONS(1812), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1812), + [anon_sym_ATend] = ACTIONS(1814), + [sym_method_attribute_specifier] = ACTIONS(1812), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1812), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1812), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1812), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1812), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1812), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1812), + [anon_sym_NS_AVAILABLE] = ACTIONS(1812), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1812), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1812), + [anon_sym_API_AVAILABLE] = ACTIONS(1812), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1812), + [anon_sym_API_DEPRECATED] = ACTIONS(1812), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1812), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1812), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1812), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1812), + [anon_sym___deprecated_msg] = ACTIONS(1812), + [anon_sym___deprecated_enum_msg] = ACTIONS(1812), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1812), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1812), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1812), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1812), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1812), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1812), + [anon_sym_ATsynthesize] = ACTIONS(1814), + [anon_sym_ATdynamic] = ACTIONS(1814), + [anon_sym_NS_ENUM] = ACTIONS(1812), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1812), + [anon_sym_NS_OPTIONS] = ACTIONS(1812), + [anon_sym_typeof] = ACTIONS(1812), + [anon_sym___typeof] = ACTIONS(1812), + [anon_sym___typeof__] = ACTIONS(1812), + [sym_id] = ACTIONS(1812), + [sym_instancetype] = ACTIONS(1812), + [sym_Class] = ACTIONS(1812), + [sym_SEL] = ACTIONS(1812), + [sym_IMP] = ACTIONS(1812), + [sym_BOOL] = ACTIONS(1812), + [sym_auto] = ACTIONS(1812), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2980] = { [sym_identifier] = ACTIONS(7068), - [aux_sym_preproc_def_token1] = ACTIONS(7070), - [anon_sym_DASH] = ACTIONS(7070), - [anon_sym_PLUS] = ACTIONS(7070), - [anon_sym_SEMI] = ACTIONS(7072), - [anon_sym_typedef] = ACTIONS(7068), - [anon_sym_extern] = ACTIONS(7068), + [anon_sym_COMMA] = ACTIONS(7070), + [anon_sym_RPAREN] = ACTIONS(7070), + [anon_sym_LPAREN2] = ACTIONS(7070), + [anon_sym_DASH] = ACTIONS(7068), + [anon_sym_PLUS] = ACTIONS(7068), + [anon_sym_STAR] = ACTIONS(7068), + [anon_sym_SLASH] = ACTIONS(7068), + [anon_sym_PERCENT] = ACTIONS(7068), + [anon_sym_PIPE_PIPE] = ACTIONS(7070), + [anon_sym_AMP_AMP] = ACTIONS(7070), + [anon_sym_PIPE] = ACTIONS(7068), + [anon_sym_CARET] = ACTIONS(7068), + [anon_sym_AMP] = ACTIONS(7068), + [anon_sym_EQ_EQ] = ACTIONS(7070), + [anon_sym_BANG_EQ] = ACTIONS(7070), + [anon_sym_GT] = ACTIONS(7068), + [anon_sym_GT_EQ] = ACTIONS(7070), + [anon_sym_LT_EQ] = ACTIONS(7070), + [anon_sym_LT] = ACTIONS(7068), + [anon_sym_LT_LT] = ACTIONS(7068), + [anon_sym_GT_GT] = ACTIONS(7068), + [anon_sym_SEMI] = ACTIONS(7070), [anon_sym___attribute] = ACTIONS(7068), [anon_sym___attribute__] = ACTIONS(7068), - [anon_sym___declspec] = ACTIONS(7068), - [anon_sym___cdecl] = ACTIONS(7068), - [anon_sym___clrcall] = ACTIONS(7068), - [anon_sym___stdcall] = ACTIONS(7068), - [anon_sym___fastcall] = ACTIONS(7068), - [anon_sym___thiscall] = ACTIONS(7068), - [anon_sym___vectorcall] = ACTIONS(7068), - [anon_sym_static] = ACTIONS(7068), - [anon_sym_auto] = ACTIONS(7068), - [anon_sym_register] = ACTIONS(7068), - [anon_sym_inline] = ACTIONS(7068), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7068), + [anon_sym_RBRACE] = ACTIONS(7070), + [anon_sym_LBRACK] = ACTIONS(7070), + [anon_sym_RBRACK] = ACTIONS(7070), + [anon_sym_EQ] = ACTIONS(7068), [anon_sym_const] = ACTIONS(7068), [anon_sym_volatile] = ACTIONS(7068), [anon_sym_restrict] = ACTIONS(7068), @@ -493221,20 +487340,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_IBOutlet] = ACTIONS(7068), [anon_sym_IBInspectable] = ACTIONS(7068), [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7068), - [anon_sym_signed] = ACTIONS(7068), - [anon_sym_unsigned] = ACTIONS(7068), - [anon_sym_long] = ACTIONS(7068), - [anon_sym_short] = ACTIONS(7068), - [sym_primitive_type] = ACTIONS(7068), - [anon_sym_enum] = ACTIONS(7068), - [anon_sym_NS_ENUM] = ACTIONS(7068), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7068), - [anon_sym_NS_OPTIONS] = ACTIONS(7068), - [anon_sym_struct] = ACTIONS(7068), - [anon_sym_union] = ACTIONS(7068), + [anon_sym_COLON] = ACTIONS(7070), + [anon_sym_QMARK] = ACTIONS(7070), + [anon_sym_STAR_EQ] = ACTIONS(7070), + [anon_sym_SLASH_EQ] = ACTIONS(7070), + [anon_sym_PERCENT_EQ] = ACTIONS(7070), + [anon_sym_PLUS_EQ] = ACTIONS(7070), + [anon_sym_DASH_EQ] = ACTIONS(7070), + [anon_sym_LT_LT_EQ] = ACTIONS(7070), + [anon_sym_GT_GT_EQ] = ACTIONS(7070), + [anon_sym_AMP_EQ] = ACTIONS(7070), + [anon_sym_CARET_EQ] = ACTIONS(7070), + [anon_sym_PIPE_EQ] = ACTIONS(7070), + [anon_sym_DASH_DASH] = ACTIONS(7070), + [anon_sym_PLUS_PLUS] = ACTIONS(7070), + [anon_sym_DOT] = ACTIONS(7070), + [anon_sym_DASH_GT] = ACTIONS(7070), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7068), - [anon_sym_ATend] = ACTIONS(7070), [sym_method_attribute_specifier] = ACTIONS(7068), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7068), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7068), @@ -493260,18 +487382,4076 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7068), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7068), [anon_sym_NS_SWIFT_NAME] = ACTIONS(7068), - [anon_sym_ATsynthesize] = ACTIONS(7070), - [anon_sym_ATdynamic] = ACTIONS(7070), - [anon_sym_typeof] = ACTIONS(7068), - [anon_sym___typeof] = ACTIONS(7068), - [anon_sym___typeof__] = ACTIONS(7068), - [sym_id] = ACTIONS(7068), - [sym_instancetype] = ACTIONS(7068), - [sym_Class] = ACTIONS(7068), - [sym_SEL] = ACTIONS(7068), - [sym_IMP] = ACTIONS(7068), - [sym_BOOL] = ACTIONS(7068), - [sym_auto] = ACTIONS(7068), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2981] = { + [sym_identifier] = ACTIONS(7072), + [anon_sym_COMMA] = ACTIONS(7074), + [anon_sym_RPAREN] = ACTIONS(7074), + [anon_sym_LPAREN2] = ACTIONS(7074), + [anon_sym_DASH] = ACTIONS(7072), + [anon_sym_PLUS] = ACTIONS(7072), + [anon_sym_STAR] = ACTIONS(7072), + [anon_sym_SLASH] = ACTIONS(7072), + [anon_sym_PERCENT] = ACTIONS(7072), + [anon_sym_PIPE_PIPE] = ACTIONS(7074), + [anon_sym_AMP_AMP] = ACTIONS(7074), + [anon_sym_PIPE] = ACTIONS(7072), + [anon_sym_CARET] = ACTIONS(7072), + [anon_sym_AMP] = ACTIONS(7072), + [anon_sym_EQ_EQ] = ACTIONS(7074), + [anon_sym_BANG_EQ] = ACTIONS(7074), + [anon_sym_GT] = ACTIONS(7072), + [anon_sym_GT_EQ] = ACTIONS(7074), + [anon_sym_LT_EQ] = ACTIONS(7074), + [anon_sym_LT] = ACTIONS(7072), + [anon_sym_LT_LT] = ACTIONS(7072), + [anon_sym_GT_GT] = ACTIONS(7072), + [anon_sym_SEMI] = ACTIONS(7074), + [anon_sym___attribute] = ACTIONS(7072), + [anon_sym___attribute__] = ACTIONS(7072), + [anon_sym_RBRACE] = ACTIONS(7074), + [anon_sym_LBRACK] = ACTIONS(7074), + [anon_sym_RBRACK] = ACTIONS(7074), + [anon_sym_EQ] = ACTIONS(7072), + [anon_sym_const] = ACTIONS(7072), + [anon_sym_volatile] = ACTIONS(7072), + [anon_sym_restrict] = ACTIONS(7072), + [anon_sym__Atomic] = ACTIONS(7072), + [anon_sym_in] = ACTIONS(7072), + [anon_sym_out] = ACTIONS(7072), + [anon_sym_inout] = ACTIONS(7072), + [anon_sym_bycopy] = ACTIONS(7072), + [anon_sym_byref] = ACTIONS(7072), + [anon_sym_oneway] = ACTIONS(7072), + [anon_sym__Nullable] = ACTIONS(7072), + [anon_sym__Nonnull] = ACTIONS(7072), + [anon_sym__Nullable_result] = ACTIONS(7072), + [anon_sym__Null_unspecified] = ACTIONS(7072), + [anon_sym___autoreleasing] = ACTIONS(7072), + [anon_sym___nullable] = ACTIONS(7072), + [anon_sym___nonnull] = ACTIONS(7072), + [anon_sym___strong] = ACTIONS(7072), + [anon_sym___weak] = ACTIONS(7072), + [anon_sym___bridge] = ACTIONS(7072), + [anon_sym___bridge_transfer] = ACTIONS(7072), + [anon_sym___bridge_retained] = ACTIONS(7072), + [anon_sym___unsafe_unretained] = ACTIONS(7072), + [anon_sym___block] = ACTIONS(7072), + [anon_sym___kindof] = ACTIONS(7072), + [anon_sym___unused] = ACTIONS(7072), + [anon_sym__Complex] = ACTIONS(7072), + [anon_sym___complex] = ACTIONS(7072), + [anon_sym_IBOutlet] = ACTIONS(7072), + [anon_sym_IBInspectable] = ACTIONS(7072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7072), + [anon_sym_COLON] = ACTIONS(7074), + [anon_sym_QMARK] = ACTIONS(7074), + [anon_sym_STAR_EQ] = ACTIONS(7074), + [anon_sym_SLASH_EQ] = ACTIONS(7074), + [anon_sym_PERCENT_EQ] = ACTIONS(7074), + [anon_sym_PLUS_EQ] = ACTIONS(7074), + [anon_sym_DASH_EQ] = ACTIONS(7074), + [anon_sym_LT_LT_EQ] = ACTIONS(7074), + [anon_sym_GT_GT_EQ] = ACTIONS(7074), + [anon_sym_AMP_EQ] = ACTIONS(7074), + [anon_sym_CARET_EQ] = ACTIONS(7074), + [anon_sym_PIPE_EQ] = ACTIONS(7074), + [anon_sym_DASH_DASH] = ACTIONS(7074), + [anon_sym_PLUS_PLUS] = ACTIONS(7074), + [anon_sym_DOT] = ACTIONS(7074), + [anon_sym_DASH_GT] = ACTIONS(7074), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7072), + [anon_sym_NS_AVAILABLE] = ACTIONS(7072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7072), + [anon_sym_API_AVAILABLE] = ACTIONS(7072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7072), + [anon_sym_API_DEPRECATED] = ACTIONS(7072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7072), + [anon_sym___deprecated_msg] = ACTIONS(7072), + [anon_sym___deprecated_enum_msg] = ACTIONS(7072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2982] = { + [sym_identifier] = ACTIONS(7076), + [anon_sym_COMMA] = ACTIONS(7078), + [anon_sym_RPAREN] = ACTIONS(7078), + [anon_sym_LPAREN2] = ACTIONS(7078), + [anon_sym_DASH] = ACTIONS(7076), + [anon_sym_PLUS] = ACTIONS(7076), + [anon_sym_STAR] = ACTIONS(7076), + [anon_sym_SLASH] = ACTIONS(7076), + [anon_sym_PERCENT] = ACTIONS(7076), + [anon_sym_PIPE_PIPE] = ACTIONS(7078), + [anon_sym_AMP_AMP] = ACTIONS(7078), + [anon_sym_PIPE] = ACTIONS(7076), + [anon_sym_CARET] = ACTIONS(7076), + [anon_sym_AMP] = ACTIONS(7076), + [anon_sym_EQ_EQ] = ACTIONS(7078), + [anon_sym_BANG_EQ] = ACTIONS(7078), + [anon_sym_GT] = ACTIONS(7076), + [anon_sym_GT_EQ] = ACTIONS(7078), + [anon_sym_LT_EQ] = ACTIONS(7078), + [anon_sym_LT] = ACTIONS(7076), + [anon_sym_LT_LT] = ACTIONS(7076), + [anon_sym_GT_GT] = ACTIONS(7076), + [anon_sym_SEMI] = ACTIONS(7078), + [anon_sym___attribute] = ACTIONS(7076), + [anon_sym___attribute__] = ACTIONS(7076), + [anon_sym_RBRACE] = ACTIONS(7078), + [anon_sym_LBRACK] = ACTIONS(7078), + [anon_sym_RBRACK] = ACTIONS(7078), + [anon_sym_EQ] = ACTIONS(7076), + [anon_sym_const] = ACTIONS(7076), + [anon_sym_volatile] = ACTIONS(7076), + [anon_sym_restrict] = ACTIONS(7076), + [anon_sym__Atomic] = ACTIONS(7076), + [anon_sym_in] = ACTIONS(7076), + [anon_sym_out] = ACTIONS(7076), + [anon_sym_inout] = ACTIONS(7076), + [anon_sym_bycopy] = ACTIONS(7076), + [anon_sym_byref] = ACTIONS(7076), + [anon_sym_oneway] = ACTIONS(7076), + [anon_sym__Nullable] = ACTIONS(7076), + [anon_sym__Nonnull] = ACTIONS(7076), + [anon_sym__Nullable_result] = ACTIONS(7076), + [anon_sym__Null_unspecified] = ACTIONS(7076), + [anon_sym___autoreleasing] = ACTIONS(7076), + [anon_sym___nullable] = ACTIONS(7076), + [anon_sym___nonnull] = ACTIONS(7076), + [anon_sym___strong] = ACTIONS(7076), + [anon_sym___weak] = ACTIONS(7076), + [anon_sym___bridge] = ACTIONS(7076), + [anon_sym___bridge_transfer] = ACTIONS(7076), + [anon_sym___bridge_retained] = ACTIONS(7076), + [anon_sym___unsafe_unretained] = ACTIONS(7076), + [anon_sym___block] = ACTIONS(7076), + [anon_sym___kindof] = ACTIONS(7076), + [anon_sym___unused] = ACTIONS(7076), + [anon_sym__Complex] = ACTIONS(7076), + [anon_sym___complex] = ACTIONS(7076), + [anon_sym_IBOutlet] = ACTIONS(7076), + [anon_sym_IBInspectable] = ACTIONS(7076), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7076), + [anon_sym_COLON] = ACTIONS(7078), + [anon_sym_QMARK] = ACTIONS(7078), + [anon_sym_STAR_EQ] = ACTIONS(7078), + [anon_sym_SLASH_EQ] = ACTIONS(7078), + [anon_sym_PERCENT_EQ] = ACTIONS(7078), + [anon_sym_PLUS_EQ] = ACTIONS(7078), + [anon_sym_DASH_EQ] = ACTIONS(7078), + [anon_sym_LT_LT_EQ] = ACTIONS(7078), + [anon_sym_GT_GT_EQ] = ACTIONS(7078), + [anon_sym_AMP_EQ] = ACTIONS(7078), + [anon_sym_CARET_EQ] = ACTIONS(7078), + [anon_sym_PIPE_EQ] = ACTIONS(7078), + [anon_sym_DASH_DASH] = ACTIONS(7078), + [anon_sym_PLUS_PLUS] = ACTIONS(7078), + [anon_sym_DOT] = ACTIONS(7078), + [anon_sym_DASH_GT] = ACTIONS(7078), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7076), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7076), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7076), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7076), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7076), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7076), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7076), + [anon_sym_NS_AVAILABLE] = ACTIONS(7076), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7076), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7076), + [anon_sym_API_AVAILABLE] = ACTIONS(7076), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7076), + [anon_sym_API_DEPRECATED] = ACTIONS(7076), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7076), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7076), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7076), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7076), + [anon_sym___deprecated_msg] = ACTIONS(7076), + [anon_sym___deprecated_enum_msg] = ACTIONS(7076), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7076), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7076), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7076), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7076), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7076), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7076), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2983] = { + [sym_identifier] = ACTIONS(7080), + [anon_sym_COMMA] = ACTIONS(7082), + [anon_sym_RPAREN] = ACTIONS(7082), + [anon_sym_LPAREN2] = ACTIONS(7082), + [anon_sym_DASH] = ACTIONS(7080), + [anon_sym_PLUS] = ACTIONS(7080), + [anon_sym_STAR] = ACTIONS(7080), + [anon_sym_SLASH] = ACTIONS(7080), + [anon_sym_PERCENT] = ACTIONS(7080), + [anon_sym_PIPE_PIPE] = ACTIONS(7082), + [anon_sym_AMP_AMP] = ACTIONS(7082), + [anon_sym_PIPE] = ACTIONS(7080), + [anon_sym_CARET] = ACTIONS(7080), + [anon_sym_AMP] = ACTIONS(7080), + [anon_sym_EQ_EQ] = ACTIONS(7082), + [anon_sym_BANG_EQ] = ACTIONS(7082), + [anon_sym_GT] = ACTIONS(7080), + [anon_sym_GT_EQ] = ACTIONS(7082), + [anon_sym_LT_EQ] = ACTIONS(7082), + [anon_sym_LT] = ACTIONS(7080), + [anon_sym_LT_LT] = ACTIONS(7080), + [anon_sym_GT_GT] = ACTIONS(7080), + [anon_sym_SEMI] = ACTIONS(7082), + [anon_sym___attribute] = ACTIONS(7080), + [anon_sym___attribute__] = ACTIONS(7080), + [anon_sym_RBRACE] = ACTIONS(7082), + [anon_sym_LBRACK] = ACTIONS(7082), + [anon_sym_RBRACK] = ACTIONS(7082), + [anon_sym_EQ] = ACTIONS(7080), + [anon_sym_const] = ACTIONS(7080), + [anon_sym_volatile] = ACTIONS(7080), + [anon_sym_restrict] = ACTIONS(7080), + [anon_sym__Atomic] = ACTIONS(7080), + [anon_sym_in] = ACTIONS(7080), + [anon_sym_out] = ACTIONS(7080), + [anon_sym_inout] = ACTIONS(7080), + [anon_sym_bycopy] = ACTIONS(7080), + [anon_sym_byref] = ACTIONS(7080), + [anon_sym_oneway] = ACTIONS(7080), + [anon_sym__Nullable] = ACTIONS(7080), + [anon_sym__Nonnull] = ACTIONS(7080), + [anon_sym__Nullable_result] = ACTIONS(7080), + [anon_sym__Null_unspecified] = ACTIONS(7080), + [anon_sym___autoreleasing] = ACTIONS(7080), + [anon_sym___nullable] = ACTIONS(7080), + [anon_sym___nonnull] = ACTIONS(7080), + [anon_sym___strong] = ACTIONS(7080), + [anon_sym___weak] = ACTIONS(7080), + [anon_sym___bridge] = ACTIONS(7080), + [anon_sym___bridge_transfer] = ACTIONS(7080), + [anon_sym___bridge_retained] = ACTIONS(7080), + [anon_sym___unsafe_unretained] = ACTIONS(7080), + [anon_sym___block] = ACTIONS(7080), + [anon_sym___kindof] = ACTIONS(7080), + [anon_sym___unused] = ACTIONS(7080), + [anon_sym__Complex] = ACTIONS(7080), + [anon_sym___complex] = ACTIONS(7080), + [anon_sym_IBOutlet] = ACTIONS(7080), + [anon_sym_IBInspectable] = ACTIONS(7080), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7080), + [anon_sym_COLON] = ACTIONS(7082), + [anon_sym_QMARK] = ACTIONS(7082), + [anon_sym_STAR_EQ] = ACTIONS(7082), + [anon_sym_SLASH_EQ] = ACTIONS(7082), + [anon_sym_PERCENT_EQ] = ACTIONS(7082), + [anon_sym_PLUS_EQ] = ACTIONS(7082), + [anon_sym_DASH_EQ] = ACTIONS(7082), + [anon_sym_LT_LT_EQ] = ACTIONS(7082), + [anon_sym_GT_GT_EQ] = ACTIONS(7082), + [anon_sym_AMP_EQ] = ACTIONS(7082), + [anon_sym_CARET_EQ] = ACTIONS(7082), + [anon_sym_PIPE_EQ] = ACTIONS(7082), + [anon_sym_DASH_DASH] = ACTIONS(7082), + [anon_sym_PLUS_PLUS] = ACTIONS(7082), + [anon_sym_DOT] = ACTIONS(7082), + [anon_sym_DASH_GT] = ACTIONS(7082), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7080), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7080), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7080), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7080), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7080), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7080), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7080), + [anon_sym_NS_AVAILABLE] = ACTIONS(7080), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7080), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7080), + [anon_sym_API_AVAILABLE] = ACTIONS(7080), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7080), + [anon_sym_API_DEPRECATED] = ACTIONS(7080), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7080), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7080), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7080), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7080), + [anon_sym___deprecated_msg] = ACTIONS(7080), + [anon_sym___deprecated_enum_msg] = ACTIONS(7080), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7080), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7080), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7080), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7080), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7080), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7080), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2984] = { + [sym_identifier] = ACTIONS(7084), + [anon_sym_COMMA] = ACTIONS(7086), + [anon_sym_RPAREN] = ACTIONS(7086), + [anon_sym_LPAREN2] = ACTIONS(7086), + [anon_sym_DASH] = ACTIONS(7084), + [anon_sym_PLUS] = ACTIONS(7084), + [anon_sym_STAR] = ACTIONS(7084), + [anon_sym_SLASH] = ACTIONS(7084), + [anon_sym_PERCENT] = ACTIONS(7084), + [anon_sym_PIPE_PIPE] = ACTIONS(7086), + [anon_sym_AMP_AMP] = ACTIONS(7086), + [anon_sym_PIPE] = ACTIONS(7084), + [anon_sym_CARET] = ACTIONS(7084), + [anon_sym_AMP] = ACTIONS(7084), + [anon_sym_EQ_EQ] = ACTIONS(7086), + [anon_sym_BANG_EQ] = ACTIONS(7086), + [anon_sym_GT] = ACTIONS(7084), + [anon_sym_GT_EQ] = ACTIONS(7086), + [anon_sym_LT_EQ] = ACTIONS(7086), + [anon_sym_LT] = ACTIONS(7084), + [anon_sym_LT_LT] = ACTIONS(7084), + [anon_sym_GT_GT] = ACTIONS(7084), + [anon_sym_SEMI] = ACTIONS(7086), + [anon_sym___attribute] = ACTIONS(7084), + [anon_sym___attribute__] = ACTIONS(7084), + [anon_sym_RBRACE] = ACTIONS(7086), + [anon_sym_LBRACK] = ACTIONS(7086), + [anon_sym_RBRACK] = ACTIONS(7086), + [anon_sym_EQ] = ACTIONS(7084), + [anon_sym_const] = ACTIONS(7084), + [anon_sym_volatile] = ACTIONS(7084), + [anon_sym_restrict] = ACTIONS(7084), + [anon_sym__Atomic] = ACTIONS(7084), + [anon_sym_in] = ACTIONS(7084), + [anon_sym_out] = ACTIONS(7084), + [anon_sym_inout] = ACTIONS(7084), + [anon_sym_bycopy] = ACTIONS(7084), + [anon_sym_byref] = ACTIONS(7084), + [anon_sym_oneway] = ACTIONS(7084), + [anon_sym__Nullable] = ACTIONS(7084), + [anon_sym__Nonnull] = ACTIONS(7084), + [anon_sym__Nullable_result] = ACTIONS(7084), + [anon_sym__Null_unspecified] = ACTIONS(7084), + [anon_sym___autoreleasing] = ACTIONS(7084), + [anon_sym___nullable] = ACTIONS(7084), + [anon_sym___nonnull] = ACTIONS(7084), + [anon_sym___strong] = ACTIONS(7084), + [anon_sym___weak] = ACTIONS(7084), + [anon_sym___bridge] = ACTIONS(7084), + [anon_sym___bridge_transfer] = ACTIONS(7084), + [anon_sym___bridge_retained] = ACTIONS(7084), + [anon_sym___unsafe_unretained] = ACTIONS(7084), + [anon_sym___block] = ACTIONS(7084), + [anon_sym___kindof] = ACTIONS(7084), + [anon_sym___unused] = ACTIONS(7084), + [anon_sym__Complex] = ACTIONS(7084), + [anon_sym___complex] = ACTIONS(7084), + [anon_sym_IBOutlet] = ACTIONS(7084), + [anon_sym_IBInspectable] = ACTIONS(7084), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7084), + [anon_sym_COLON] = ACTIONS(7086), + [anon_sym_QMARK] = ACTIONS(7086), + [anon_sym_STAR_EQ] = ACTIONS(7086), + [anon_sym_SLASH_EQ] = ACTIONS(7086), + [anon_sym_PERCENT_EQ] = ACTIONS(7086), + [anon_sym_PLUS_EQ] = ACTIONS(7086), + [anon_sym_DASH_EQ] = ACTIONS(7086), + [anon_sym_LT_LT_EQ] = ACTIONS(7086), + [anon_sym_GT_GT_EQ] = ACTIONS(7086), + [anon_sym_AMP_EQ] = ACTIONS(7086), + [anon_sym_CARET_EQ] = ACTIONS(7086), + [anon_sym_PIPE_EQ] = ACTIONS(7086), + [anon_sym_DASH_DASH] = ACTIONS(7086), + [anon_sym_PLUS_PLUS] = ACTIONS(7086), + [anon_sym_DOT] = ACTIONS(7086), + [anon_sym_DASH_GT] = ACTIONS(7086), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7084), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7084), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7084), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7084), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7084), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7084), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7084), + [anon_sym_NS_AVAILABLE] = ACTIONS(7084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7084), + [anon_sym_API_AVAILABLE] = ACTIONS(7084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7084), + [anon_sym_API_DEPRECATED] = ACTIONS(7084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7084), + [anon_sym___deprecated_msg] = ACTIONS(7084), + [anon_sym___deprecated_enum_msg] = ACTIONS(7084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7084), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7084), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7084), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2985] = { + [sym_identifier] = ACTIONS(7088), + [anon_sym_COMMA] = ACTIONS(7090), + [anon_sym_RPAREN] = ACTIONS(7090), + [anon_sym_LPAREN2] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7088), + [anon_sym_PLUS] = ACTIONS(7088), + [anon_sym_STAR] = ACTIONS(7088), + [anon_sym_SLASH] = ACTIONS(7088), + [anon_sym_PERCENT] = ACTIONS(7088), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_PIPE] = ACTIONS(7088), + [anon_sym_CARET] = ACTIONS(7088), + [anon_sym_AMP] = ACTIONS(7088), + [anon_sym_EQ_EQ] = ACTIONS(7090), + [anon_sym_BANG_EQ] = ACTIONS(7090), + [anon_sym_GT] = ACTIONS(7088), + [anon_sym_GT_EQ] = ACTIONS(7090), + [anon_sym_LT_EQ] = ACTIONS(7090), + [anon_sym_LT] = ACTIONS(7088), + [anon_sym_LT_LT] = ACTIONS(7088), + [anon_sym_GT_GT] = ACTIONS(7088), + [anon_sym_SEMI] = ACTIONS(7090), + [anon_sym___attribute] = ACTIONS(7088), + [anon_sym___attribute__] = ACTIONS(7088), + [anon_sym_RBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7090), + [anon_sym_RBRACK] = ACTIONS(7090), + [anon_sym_EQ] = ACTIONS(7088), + [anon_sym_const] = ACTIONS(7088), + [anon_sym_volatile] = ACTIONS(7088), + [anon_sym_restrict] = ACTIONS(7088), + [anon_sym__Atomic] = ACTIONS(7088), + [anon_sym_in] = ACTIONS(7088), + [anon_sym_out] = ACTIONS(7088), + [anon_sym_inout] = ACTIONS(7088), + [anon_sym_bycopy] = ACTIONS(7088), + [anon_sym_byref] = ACTIONS(7088), + [anon_sym_oneway] = ACTIONS(7088), + [anon_sym__Nullable] = ACTIONS(7088), + [anon_sym__Nonnull] = ACTIONS(7088), + [anon_sym__Nullable_result] = ACTIONS(7088), + [anon_sym__Null_unspecified] = ACTIONS(7088), + [anon_sym___autoreleasing] = ACTIONS(7088), + [anon_sym___nullable] = ACTIONS(7088), + [anon_sym___nonnull] = ACTIONS(7088), + [anon_sym___strong] = ACTIONS(7088), + [anon_sym___weak] = ACTIONS(7088), + [anon_sym___bridge] = ACTIONS(7088), + [anon_sym___bridge_transfer] = ACTIONS(7088), + [anon_sym___bridge_retained] = ACTIONS(7088), + [anon_sym___unsafe_unretained] = ACTIONS(7088), + [anon_sym___block] = ACTIONS(7088), + [anon_sym___kindof] = ACTIONS(7088), + [anon_sym___unused] = ACTIONS(7088), + [anon_sym__Complex] = ACTIONS(7088), + [anon_sym___complex] = ACTIONS(7088), + [anon_sym_IBOutlet] = ACTIONS(7088), + [anon_sym_IBInspectable] = ACTIONS(7088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7088), + [anon_sym_COLON] = ACTIONS(7090), + [anon_sym_QMARK] = ACTIONS(7090), + [anon_sym_STAR_EQ] = ACTIONS(7090), + [anon_sym_SLASH_EQ] = ACTIONS(7090), + [anon_sym_PERCENT_EQ] = ACTIONS(7090), + [anon_sym_PLUS_EQ] = ACTIONS(7090), + [anon_sym_DASH_EQ] = ACTIONS(7090), + [anon_sym_LT_LT_EQ] = ACTIONS(7090), + [anon_sym_GT_GT_EQ] = ACTIONS(7090), + [anon_sym_AMP_EQ] = ACTIONS(7090), + [anon_sym_CARET_EQ] = ACTIONS(7090), + [anon_sym_PIPE_EQ] = ACTIONS(7090), + [anon_sym_DASH_DASH] = ACTIONS(7090), + [anon_sym_PLUS_PLUS] = ACTIONS(7090), + [anon_sym_DOT] = ACTIONS(7090), + [anon_sym_DASH_GT] = ACTIONS(7090), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7088), + [anon_sym_NS_AVAILABLE] = ACTIONS(7088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7088), + [anon_sym_API_AVAILABLE] = ACTIONS(7088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7088), + [anon_sym_API_DEPRECATED] = ACTIONS(7088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7088), + [anon_sym___deprecated_msg] = ACTIONS(7088), + [anon_sym___deprecated_enum_msg] = ACTIONS(7088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2986] = { + [sym_identifier] = ACTIONS(7092), + [anon_sym_COMMA] = ACTIONS(7094), + [anon_sym_RPAREN] = ACTIONS(7094), + [anon_sym_LPAREN2] = ACTIONS(7094), + [anon_sym_DASH] = ACTIONS(7092), + [anon_sym_PLUS] = ACTIONS(7092), + [anon_sym_STAR] = ACTIONS(7092), + [anon_sym_SLASH] = ACTIONS(7092), + [anon_sym_PERCENT] = ACTIONS(7092), + [anon_sym_PIPE_PIPE] = ACTIONS(7094), + [anon_sym_AMP_AMP] = ACTIONS(7094), + [anon_sym_PIPE] = ACTIONS(7092), + [anon_sym_CARET] = ACTIONS(7092), + [anon_sym_AMP] = ACTIONS(7092), + [anon_sym_EQ_EQ] = ACTIONS(7094), + [anon_sym_BANG_EQ] = ACTIONS(7094), + [anon_sym_GT] = ACTIONS(7092), + [anon_sym_GT_EQ] = ACTIONS(7094), + [anon_sym_LT_EQ] = ACTIONS(7094), + [anon_sym_LT] = ACTIONS(7092), + [anon_sym_LT_LT] = ACTIONS(7092), + [anon_sym_GT_GT] = ACTIONS(7092), + [anon_sym_SEMI] = ACTIONS(7094), + [anon_sym___attribute] = ACTIONS(7092), + [anon_sym___attribute__] = ACTIONS(7092), + [anon_sym_RBRACE] = ACTIONS(7094), + [anon_sym_LBRACK] = ACTIONS(7094), + [anon_sym_RBRACK] = ACTIONS(7094), + [anon_sym_EQ] = ACTIONS(7092), + [anon_sym_const] = ACTIONS(7092), + [anon_sym_volatile] = ACTIONS(7092), + [anon_sym_restrict] = ACTIONS(7092), + [anon_sym__Atomic] = ACTIONS(7092), + [anon_sym_in] = ACTIONS(7092), + [anon_sym_out] = ACTIONS(7092), + [anon_sym_inout] = ACTIONS(7092), + [anon_sym_bycopy] = ACTIONS(7092), + [anon_sym_byref] = ACTIONS(7092), + [anon_sym_oneway] = ACTIONS(7092), + [anon_sym__Nullable] = ACTIONS(7092), + [anon_sym__Nonnull] = ACTIONS(7092), + [anon_sym__Nullable_result] = ACTIONS(7092), + [anon_sym__Null_unspecified] = ACTIONS(7092), + [anon_sym___autoreleasing] = ACTIONS(7092), + [anon_sym___nullable] = ACTIONS(7092), + [anon_sym___nonnull] = ACTIONS(7092), + [anon_sym___strong] = ACTIONS(7092), + [anon_sym___weak] = ACTIONS(7092), + [anon_sym___bridge] = ACTIONS(7092), + [anon_sym___bridge_transfer] = ACTIONS(7092), + [anon_sym___bridge_retained] = ACTIONS(7092), + [anon_sym___unsafe_unretained] = ACTIONS(7092), + [anon_sym___block] = ACTIONS(7092), + [anon_sym___kindof] = ACTIONS(7092), + [anon_sym___unused] = ACTIONS(7092), + [anon_sym__Complex] = ACTIONS(7092), + [anon_sym___complex] = ACTIONS(7092), + [anon_sym_IBOutlet] = ACTIONS(7092), + [anon_sym_IBInspectable] = ACTIONS(7092), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7092), + [anon_sym_COLON] = ACTIONS(7094), + [anon_sym_QMARK] = ACTIONS(7094), + [anon_sym_STAR_EQ] = ACTIONS(7094), + [anon_sym_SLASH_EQ] = ACTIONS(7094), + [anon_sym_PERCENT_EQ] = ACTIONS(7094), + [anon_sym_PLUS_EQ] = ACTIONS(7094), + [anon_sym_DASH_EQ] = ACTIONS(7094), + [anon_sym_LT_LT_EQ] = ACTIONS(7094), + [anon_sym_GT_GT_EQ] = ACTIONS(7094), + [anon_sym_AMP_EQ] = ACTIONS(7094), + [anon_sym_CARET_EQ] = ACTIONS(7094), + [anon_sym_PIPE_EQ] = ACTIONS(7094), + [anon_sym_DASH_DASH] = ACTIONS(7094), + [anon_sym_PLUS_PLUS] = ACTIONS(7094), + [anon_sym_DOT] = ACTIONS(7094), + [anon_sym_DASH_GT] = ACTIONS(7094), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7092), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7092), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7092), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7092), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7092), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7092), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7092), + [anon_sym_NS_AVAILABLE] = ACTIONS(7092), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7092), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7092), + [anon_sym_API_AVAILABLE] = ACTIONS(7092), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7092), + [anon_sym_API_DEPRECATED] = ACTIONS(7092), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7092), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7092), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7092), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7092), + [anon_sym___deprecated_msg] = ACTIONS(7092), + [anon_sym___deprecated_enum_msg] = ACTIONS(7092), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7092), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7092), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7092), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7092), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7092), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7092), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2987] = { + [sym_identifier] = ACTIONS(7096), + [anon_sym_COMMA] = ACTIONS(7098), + [anon_sym_RPAREN] = ACTIONS(7098), + [anon_sym_LPAREN2] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7096), + [anon_sym_STAR] = ACTIONS(7096), + [anon_sym_SLASH] = ACTIONS(7096), + [anon_sym_PERCENT] = ACTIONS(7096), + [anon_sym_PIPE_PIPE] = ACTIONS(7098), + [anon_sym_AMP_AMP] = ACTIONS(7098), + [anon_sym_PIPE] = ACTIONS(7096), + [anon_sym_CARET] = ACTIONS(7096), + [anon_sym_AMP] = ACTIONS(7096), + [anon_sym_EQ_EQ] = ACTIONS(7098), + [anon_sym_BANG_EQ] = ACTIONS(7098), + [anon_sym_GT] = ACTIONS(7096), + [anon_sym_GT_EQ] = ACTIONS(7098), + [anon_sym_LT_EQ] = ACTIONS(7098), + [anon_sym_LT] = ACTIONS(7096), + [anon_sym_LT_LT] = ACTIONS(7096), + [anon_sym_GT_GT] = ACTIONS(7096), + [anon_sym_SEMI] = ACTIONS(7098), + [anon_sym___attribute] = ACTIONS(7096), + [anon_sym___attribute__] = ACTIONS(7096), + [anon_sym_RBRACE] = ACTIONS(7098), + [anon_sym_LBRACK] = ACTIONS(7098), + [anon_sym_RBRACK] = ACTIONS(7098), + [anon_sym_EQ] = ACTIONS(7096), + [anon_sym_const] = ACTIONS(7096), + [anon_sym_volatile] = ACTIONS(7096), + [anon_sym_restrict] = ACTIONS(7096), + [anon_sym__Atomic] = ACTIONS(7096), + [anon_sym_in] = ACTIONS(7096), + [anon_sym_out] = ACTIONS(7096), + [anon_sym_inout] = ACTIONS(7096), + [anon_sym_bycopy] = ACTIONS(7096), + [anon_sym_byref] = ACTIONS(7096), + [anon_sym_oneway] = ACTIONS(7096), + [anon_sym__Nullable] = ACTIONS(7096), + [anon_sym__Nonnull] = ACTIONS(7096), + [anon_sym__Nullable_result] = ACTIONS(7096), + [anon_sym__Null_unspecified] = ACTIONS(7096), + [anon_sym___autoreleasing] = ACTIONS(7096), + [anon_sym___nullable] = ACTIONS(7096), + [anon_sym___nonnull] = ACTIONS(7096), + [anon_sym___strong] = ACTIONS(7096), + [anon_sym___weak] = ACTIONS(7096), + [anon_sym___bridge] = ACTIONS(7096), + [anon_sym___bridge_transfer] = ACTIONS(7096), + [anon_sym___bridge_retained] = ACTIONS(7096), + [anon_sym___unsafe_unretained] = ACTIONS(7096), + [anon_sym___block] = ACTIONS(7096), + [anon_sym___kindof] = ACTIONS(7096), + [anon_sym___unused] = ACTIONS(7096), + [anon_sym__Complex] = ACTIONS(7096), + [anon_sym___complex] = ACTIONS(7096), + [anon_sym_IBOutlet] = ACTIONS(7096), + [anon_sym_IBInspectable] = ACTIONS(7096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7096), + [anon_sym_COLON] = ACTIONS(7098), + [anon_sym_QMARK] = ACTIONS(7098), + [anon_sym_STAR_EQ] = ACTIONS(7098), + [anon_sym_SLASH_EQ] = ACTIONS(7098), + [anon_sym_PERCENT_EQ] = ACTIONS(7098), + [anon_sym_PLUS_EQ] = ACTIONS(7098), + [anon_sym_DASH_EQ] = ACTIONS(7098), + [anon_sym_LT_LT_EQ] = ACTIONS(7098), + [anon_sym_GT_GT_EQ] = ACTIONS(7098), + [anon_sym_AMP_EQ] = ACTIONS(7098), + [anon_sym_CARET_EQ] = ACTIONS(7098), + [anon_sym_PIPE_EQ] = ACTIONS(7098), + [anon_sym_DASH_DASH] = ACTIONS(7098), + [anon_sym_PLUS_PLUS] = ACTIONS(7098), + [anon_sym_DOT] = ACTIONS(7098), + [anon_sym_DASH_GT] = ACTIONS(7098), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7096), + [anon_sym_NS_AVAILABLE] = ACTIONS(7096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7096), + [anon_sym_API_AVAILABLE] = ACTIONS(7096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7096), + [anon_sym_API_DEPRECATED] = ACTIONS(7096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7096), + [anon_sym___deprecated_msg] = ACTIONS(7096), + [anon_sym___deprecated_enum_msg] = ACTIONS(7096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2988] = { + [sym_identifier] = ACTIONS(7100), + [anon_sym_COMMA] = ACTIONS(7102), + [anon_sym_RPAREN] = ACTIONS(7102), + [anon_sym_LPAREN2] = ACTIONS(7102), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_PLUS] = ACTIONS(7100), + [anon_sym_STAR] = ACTIONS(7100), + [anon_sym_SLASH] = ACTIONS(7100), + [anon_sym_PERCENT] = ACTIONS(7100), + [anon_sym_PIPE_PIPE] = ACTIONS(7102), + [anon_sym_AMP_AMP] = ACTIONS(7102), + [anon_sym_PIPE] = ACTIONS(7100), + [anon_sym_CARET] = ACTIONS(7100), + [anon_sym_AMP] = ACTIONS(7100), + [anon_sym_EQ_EQ] = ACTIONS(7102), + [anon_sym_BANG_EQ] = ACTIONS(7102), + [anon_sym_GT] = ACTIONS(7100), + [anon_sym_GT_EQ] = ACTIONS(7102), + [anon_sym_LT_EQ] = ACTIONS(7102), + [anon_sym_LT] = ACTIONS(7100), + [anon_sym_LT_LT] = ACTIONS(7100), + [anon_sym_GT_GT] = ACTIONS(7100), + [anon_sym_SEMI] = ACTIONS(7102), + [anon_sym___attribute] = ACTIONS(7100), + [anon_sym___attribute__] = ACTIONS(7100), + [anon_sym_RBRACE] = ACTIONS(7102), + [anon_sym_LBRACK] = ACTIONS(7102), + [anon_sym_RBRACK] = ACTIONS(7102), + [anon_sym_EQ] = ACTIONS(7100), + [anon_sym_const] = ACTIONS(7100), + [anon_sym_volatile] = ACTIONS(7100), + [anon_sym_restrict] = ACTIONS(7100), + [anon_sym__Atomic] = ACTIONS(7100), + [anon_sym_in] = ACTIONS(7100), + [anon_sym_out] = ACTIONS(7100), + [anon_sym_inout] = ACTIONS(7100), + [anon_sym_bycopy] = ACTIONS(7100), + [anon_sym_byref] = ACTIONS(7100), + [anon_sym_oneway] = ACTIONS(7100), + [anon_sym__Nullable] = ACTIONS(7100), + [anon_sym__Nonnull] = ACTIONS(7100), + [anon_sym__Nullable_result] = ACTIONS(7100), + [anon_sym__Null_unspecified] = ACTIONS(7100), + [anon_sym___autoreleasing] = ACTIONS(7100), + [anon_sym___nullable] = ACTIONS(7100), + [anon_sym___nonnull] = ACTIONS(7100), + [anon_sym___strong] = ACTIONS(7100), + [anon_sym___weak] = ACTIONS(7100), + [anon_sym___bridge] = ACTIONS(7100), + [anon_sym___bridge_transfer] = ACTIONS(7100), + [anon_sym___bridge_retained] = ACTIONS(7100), + [anon_sym___unsafe_unretained] = ACTIONS(7100), + [anon_sym___block] = ACTIONS(7100), + [anon_sym___kindof] = ACTIONS(7100), + [anon_sym___unused] = ACTIONS(7100), + [anon_sym__Complex] = ACTIONS(7100), + [anon_sym___complex] = ACTIONS(7100), + [anon_sym_IBOutlet] = ACTIONS(7100), + [anon_sym_IBInspectable] = ACTIONS(7100), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7100), + [anon_sym_COLON] = ACTIONS(7102), + [anon_sym_QMARK] = ACTIONS(7102), + [anon_sym_STAR_EQ] = ACTIONS(7102), + [anon_sym_SLASH_EQ] = ACTIONS(7102), + [anon_sym_PERCENT_EQ] = ACTIONS(7102), + [anon_sym_PLUS_EQ] = ACTIONS(7102), + [anon_sym_DASH_EQ] = ACTIONS(7102), + [anon_sym_LT_LT_EQ] = ACTIONS(7102), + [anon_sym_GT_GT_EQ] = ACTIONS(7102), + [anon_sym_AMP_EQ] = ACTIONS(7102), + [anon_sym_CARET_EQ] = ACTIONS(7102), + [anon_sym_PIPE_EQ] = ACTIONS(7102), + [anon_sym_DASH_DASH] = ACTIONS(7102), + [anon_sym_PLUS_PLUS] = ACTIONS(7102), + [anon_sym_DOT] = ACTIONS(7102), + [anon_sym_DASH_GT] = ACTIONS(7102), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7100), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7100), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7100), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7100), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7100), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7100), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7100), + [anon_sym_NS_AVAILABLE] = ACTIONS(7100), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7100), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7100), + [anon_sym_API_AVAILABLE] = ACTIONS(7100), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7100), + [anon_sym_API_DEPRECATED] = ACTIONS(7100), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7100), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7100), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7100), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7100), + [anon_sym___deprecated_msg] = ACTIONS(7100), + [anon_sym___deprecated_enum_msg] = ACTIONS(7100), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7100), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7100), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7100), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7100), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7100), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7100), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2989] = { + [sym_identifier] = ACTIONS(1740), + [aux_sym_preproc_def_token1] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_typedef] = ACTIONS(1740), + [anon_sym_extern] = ACTIONS(1740), + [anon_sym___attribute] = ACTIONS(1740), + [anon_sym___attribute__] = ACTIONS(1740), + [anon_sym___declspec] = ACTIONS(1740), + [anon_sym___cdecl] = ACTIONS(1740), + [anon_sym___clrcall] = ACTIONS(1740), + [anon_sym___stdcall] = ACTIONS(1740), + [anon_sym___fastcall] = ACTIONS(1740), + [anon_sym___thiscall] = ACTIONS(1740), + [anon_sym___vectorcall] = ACTIONS(1740), + [anon_sym_static] = ACTIONS(1740), + [anon_sym_auto] = ACTIONS(1740), + [anon_sym_register] = ACTIONS(1740), + [anon_sym_inline] = ACTIONS(1740), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1740), + [anon_sym_const] = ACTIONS(1740), + [anon_sym_volatile] = ACTIONS(1740), + [anon_sym_restrict] = ACTIONS(1740), + [anon_sym__Atomic] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1740), + [anon_sym_out] = ACTIONS(1740), + [anon_sym_inout] = ACTIONS(1740), + [anon_sym_bycopy] = ACTIONS(1740), + [anon_sym_byref] = ACTIONS(1740), + [anon_sym_oneway] = ACTIONS(1740), + [anon_sym__Nullable] = ACTIONS(1740), + [anon_sym__Nonnull] = ACTIONS(1740), + [anon_sym__Nullable_result] = ACTIONS(1740), + [anon_sym__Null_unspecified] = ACTIONS(1740), + [anon_sym___autoreleasing] = ACTIONS(1740), + [anon_sym___nullable] = ACTIONS(1740), + [anon_sym___nonnull] = ACTIONS(1740), + [anon_sym___strong] = ACTIONS(1740), + [anon_sym___weak] = ACTIONS(1740), + [anon_sym___bridge] = ACTIONS(1740), + [anon_sym___bridge_transfer] = ACTIONS(1740), + [anon_sym___bridge_retained] = ACTIONS(1740), + [anon_sym___unsafe_unretained] = ACTIONS(1740), + [anon_sym___block] = ACTIONS(1740), + [anon_sym___kindof] = ACTIONS(1740), + [anon_sym___unused] = ACTIONS(1740), + [anon_sym__Complex] = ACTIONS(1740), + [anon_sym___complex] = ACTIONS(1740), + [anon_sym_IBOutlet] = ACTIONS(1740), + [anon_sym_IBInspectable] = ACTIONS(1740), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1740), + [anon_sym_signed] = ACTIONS(1740), + [anon_sym_unsigned] = ACTIONS(1740), + [anon_sym_long] = ACTIONS(1740), + [anon_sym_short] = ACTIONS(1740), + [sym_primitive_type] = ACTIONS(1740), + [anon_sym_enum] = ACTIONS(1740), + [anon_sym_struct] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1740), + [anon_sym_ATend] = ACTIONS(1742), + [sym_method_attribute_specifier] = ACTIONS(1740), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1740), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1740), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1740), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1740), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1740), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1740), + [anon_sym_NS_AVAILABLE] = ACTIONS(1740), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1740), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1740), + [anon_sym_API_AVAILABLE] = ACTIONS(1740), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1740), + [anon_sym_API_DEPRECATED] = ACTIONS(1740), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1740), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1740), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1740), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1740), + [anon_sym___deprecated_msg] = ACTIONS(1740), + [anon_sym___deprecated_enum_msg] = ACTIONS(1740), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1740), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1740), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1740), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1740), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1740), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1740), + [anon_sym_ATsynthesize] = ACTIONS(1742), + [anon_sym_ATdynamic] = ACTIONS(1742), + [anon_sym_NS_ENUM] = ACTIONS(1740), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1740), + [anon_sym_NS_OPTIONS] = ACTIONS(1740), + [anon_sym_typeof] = ACTIONS(1740), + [anon_sym___typeof] = ACTIONS(1740), + [anon_sym___typeof__] = ACTIONS(1740), + [sym_id] = ACTIONS(1740), + [sym_instancetype] = ACTIONS(1740), + [sym_Class] = ACTIONS(1740), + [sym_SEL] = ACTIONS(1740), + [sym_IMP] = ACTIONS(1740), + [sym_BOOL] = ACTIONS(1740), + [sym_auto] = ACTIONS(1740), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2990] = { + [sym_identifier] = ACTIONS(7104), + [anon_sym_COMMA] = ACTIONS(7106), + [anon_sym_RPAREN] = ACTIONS(7106), + [anon_sym_LPAREN2] = ACTIONS(7106), + [anon_sym_DASH] = ACTIONS(7104), + [anon_sym_PLUS] = ACTIONS(7104), + [anon_sym_STAR] = ACTIONS(7104), + [anon_sym_SLASH] = ACTIONS(7104), + [anon_sym_PERCENT] = ACTIONS(7104), + [anon_sym_PIPE_PIPE] = ACTIONS(7106), + [anon_sym_AMP_AMP] = ACTIONS(7106), + [anon_sym_PIPE] = ACTIONS(7104), + [anon_sym_CARET] = ACTIONS(7104), + [anon_sym_AMP] = ACTIONS(7104), + [anon_sym_EQ_EQ] = ACTIONS(7106), + [anon_sym_BANG_EQ] = ACTIONS(7106), + [anon_sym_GT] = ACTIONS(7104), + [anon_sym_GT_EQ] = ACTIONS(7106), + [anon_sym_LT_EQ] = ACTIONS(7106), + [anon_sym_LT] = ACTIONS(7104), + [anon_sym_LT_LT] = ACTIONS(7104), + [anon_sym_GT_GT] = ACTIONS(7104), + [anon_sym_SEMI] = ACTIONS(7106), + [anon_sym___attribute] = ACTIONS(7104), + [anon_sym___attribute__] = ACTIONS(7104), + [anon_sym_RBRACE] = ACTIONS(7106), + [anon_sym_LBRACK] = ACTIONS(7106), + [anon_sym_RBRACK] = ACTIONS(7106), + [anon_sym_EQ] = ACTIONS(7104), + [anon_sym_const] = ACTIONS(7104), + [anon_sym_volatile] = ACTIONS(7104), + [anon_sym_restrict] = ACTIONS(7104), + [anon_sym__Atomic] = ACTIONS(7104), + [anon_sym_in] = ACTIONS(7104), + [anon_sym_out] = ACTIONS(7104), + [anon_sym_inout] = ACTIONS(7104), + [anon_sym_bycopy] = ACTIONS(7104), + [anon_sym_byref] = ACTIONS(7104), + [anon_sym_oneway] = ACTIONS(7104), + [anon_sym__Nullable] = ACTIONS(7104), + [anon_sym__Nonnull] = ACTIONS(7104), + [anon_sym__Nullable_result] = ACTIONS(7104), + [anon_sym__Null_unspecified] = ACTIONS(7104), + [anon_sym___autoreleasing] = ACTIONS(7104), + [anon_sym___nullable] = ACTIONS(7104), + [anon_sym___nonnull] = ACTIONS(7104), + [anon_sym___strong] = ACTIONS(7104), + [anon_sym___weak] = ACTIONS(7104), + [anon_sym___bridge] = ACTIONS(7104), + [anon_sym___bridge_transfer] = ACTIONS(7104), + [anon_sym___bridge_retained] = ACTIONS(7104), + [anon_sym___unsafe_unretained] = ACTIONS(7104), + [anon_sym___block] = ACTIONS(7104), + [anon_sym___kindof] = ACTIONS(7104), + [anon_sym___unused] = ACTIONS(7104), + [anon_sym__Complex] = ACTIONS(7104), + [anon_sym___complex] = ACTIONS(7104), + [anon_sym_IBOutlet] = ACTIONS(7104), + [anon_sym_IBInspectable] = ACTIONS(7104), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7104), + [anon_sym_COLON] = ACTIONS(7106), + [anon_sym_QMARK] = ACTIONS(7106), + [anon_sym_STAR_EQ] = ACTIONS(7106), + [anon_sym_SLASH_EQ] = ACTIONS(7106), + [anon_sym_PERCENT_EQ] = ACTIONS(7106), + [anon_sym_PLUS_EQ] = ACTIONS(7106), + [anon_sym_DASH_EQ] = ACTIONS(7106), + [anon_sym_LT_LT_EQ] = ACTIONS(7106), + [anon_sym_GT_GT_EQ] = ACTIONS(7106), + [anon_sym_AMP_EQ] = ACTIONS(7106), + [anon_sym_CARET_EQ] = ACTIONS(7106), + [anon_sym_PIPE_EQ] = ACTIONS(7106), + [anon_sym_DASH_DASH] = ACTIONS(7106), + [anon_sym_PLUS_PLUS] = ACTIONS(7106), + [anon_sym_DOT] = ACTIONS(7106), + [anon_sym_DASH_GT] = ACTIONS(7106), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7104), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7104), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7104), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7104), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7104), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7104), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7104), + [anon_sym_NS_AVAILABLE] = ACTIONS(7104), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7104), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7104), + [anon_sym_API_AVAILABLE] = ACTIONS(7104), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7104), + [anon_sym_API_DEPRECATED] = ACTIONS(7104), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7104), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7104), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7104), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7104), + [anon_sym___deprecated_msg] = ACTIONS(7104), + [anon_sym___deprecated_enum_msg] = ACTIONS(7104), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7104), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7104), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7104), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7104), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7104), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7104), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2991] = { + [sym_identifier] = ACTIONS(1359), + [anon_sym_COMMA] = ACTIONS(1361), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_LPAREN2] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_SLASH] = ACTIONS(1359), + [anon_sym_PERCENT] = ACTIONS(1359), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym___attribute] = ACTIONS(1359), + [anon_sym___attribute__] = ACTIONS(1359), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_RBRACK] = ACTIONS(1361), + [anon_sym_EQ] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1359), + [anon_sym_volatile] = ACTIONS(1359), + [anon_sym_restrict] = ACTIONS(1359), + [anon_sym__Atomic] = ACTIONS(1359), + [anon_sym_in] = ACTIONS(1359), + [anon_sym_out] = ACTIONS(1359), + [anon_sym_inout] = ACTIONS(1359), + [anon_sym_bycopy] = ACTIONS(1359), + [anon_sym_byref] = ACTIONS(1359), + [anon_sym_oneway] = ACTIONS(1359), + [anon_sym__Nullable] = ACTIONS(1359), + [anon_sym__Nonnull] = ACTIONS(1359), + [anon_sym__Nullable_result] = ACTIONS(1359), + [anon_sym__Null_unspecified] = ACTIONS(1359), + [anon_sym___autoreleasing] = ACTIONS(1359), + [anon_sym___nullable] = ACTIONS(1359), + [anon_sym___nonnull] = ACTIONS(1359), + [anon_sym___strong] = ACTIONS(1359), + [anon_sym___weak] = ACTIONS(1359), + [anon_sym___bridge] = ACTIONS(1359), + [anon_sym___bridge_transfer] = ACTIONS(1359), + [anon_sym___bridge_retained] = ACTIONS(1359), + [anon_sym___unsafe_unretained] = ACTIONS(1359), + [anon_sym___block] = ACTIONS(1359), + [anon_sym___kindof] = ACTIONS(1359), + [anon_sym___unused] = ACTIONS(1359), + [anon_sym__Complex] = ACTIONS(1359), + [anon_sym___complex] = ACTIONS(1359), + [anon_sym_IBOutlet] = ACTIONS(1359), + [anon_sym_IBInspectable] = ACTIONS(1359), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1359), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_QMARK] = ACTIONS(1361), + [anon_sym_STAR_EQ] = ACTIONS(1361), + [anon_sym_SLASH_EQ] = ACTIONS(1361), + [anon_sym_PERCENT_EQ] = ACTIONS(1361), + [anon_sym_PLUS_EQ] = ACTIONS(1361), + [anon_sym_DASH_EQ] = ACTIONS(1361), + [anon_sym_LT_LT_EQ] = ACTIONS(1361), + [anon_sym_GT_GT_EQ] = ACTIONS(1361), + [anon_sym_AMP_EQ] = ACTIONS(1361), + [anon_sym_CARET_EQ] = ACTIONS(1361), + [anon_sym_PIPE_EQ] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DOT] = ACTIONS(1361), + [anon_sym_DASH_GT] = ACTIONS(1361), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(1359), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1359), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1359), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1359), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1359), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1359), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1359), + [anon_sym_NS_AVAILABLE] = ACTIONS(1359), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1359), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_API_AVAILABLE] = ACTIONS(1359), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1359), + [anon_sym_API_DEPRECATED] = ACTIONS(1359), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1359), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1359), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1359), + [anon_sym___deprecated_msg] = ACTIONS(1359), + [anon_sym___deprecated_enum_msg] = ACTIONS(1359), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1359), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1359), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1359), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1359), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2992] = { + [sym_identifier] = ACTIONS(7108), + [anon_sym_COMMA] = ACTIONS(7110), + [anon_sym_RPAREN] = ACTIONS(7110), + [anon_sym_LPAREN2] = ACTIONS(7110), + [anon_sym_DASH] = ACTIONS(7108), + [anon_sym_PLUS] = ACTIONS(7108), + [anon_sym_STAR] = ACTIONS(7108), + [anon_sym_SLASH] = ACTIONS(7108), + [anon_sym_PERCENT] = ACTIONS(7108), + [anon_sym_PIPE_PIPE] = ACTIONS(7110), + [anon_sym_AMP_AMP] = ACTIONS(7110), + [anon_sym_PIPE] = ACTIONS(7108), + [anon_sym_CARET] = ACTIONS(7108), + [anon_sym_AMP] = ACTIONS(7108), + [anon_sym_EQ_EQ] = ACTIONS(7110), + [anon_sym_BANG_EQ] = ACTIONS(7110), + [anon_sym_GT] = ACTIONS(7108), + [anon_sym_GT_EQ] = ACTIONS(7110), + [anon_sym_LT_EQ] = ACTIONS(7110), + [anon_sym_LT] = ACTIONS(7108), + [anon_sym_LT_LT] = ACTIONS(7108), + [anon_sym_GT_GT] = ACTIONS(7108), + [anon_sym_SEMI] = ACTIONS(7110), + [anon_sym___attribute] = ACTIONS(7108), + [anon_sym___attribute__] = ACTIONS(7108), + [anon_sym_RBRACE] = ACTIONS(7110), + [anon_sym_LBRACK] = ACTIONS(7110), + [anon_sym_RBRACK] = ACTIONS(7110), + [anon_sym_EQ] = ACTIONS(7108), + [anon_sym_const] = ACTIONS(7108), + [anon_sym_volatile] = ACTIONS(7108), + [anon_sym_restrict] = ACTIONS(7108), + [anon_sym__Atomic] = ACTIONS(7108), + [anon_sym_in] = ACTIONS(7108), + [anon_sym_out] = ACTIONS(7108), + [anon_sym_inout] = ACTIONS(7108), + [anon_sym_bycopy] = ACTIONS(7108), + [anon_sym_byref] = ACTIONS(7108), + [anon_sym_oneway] = ACTIONS(7108), + [anon_sym__Nullable] = ACTIONS(7108), + [anon_sym__Nonnull] = ACTIONS(7108), + [anon_sym__Nullable_result] = ACTIONS(7108), + [anon_sym__Null_unspecified] = ACTIONS(7108), + [anon_sym___autoreleasing] = ACTIONS(7108), + [anon_sym___nullable] = ACTIONS(7108), + [anon_sym___nonnull] = ACTIONS(7108), + [anon_sym___strong] = ACTIONS(7108), + [anon_sym___weak] = ACTIONS(7108), + [anon_sym___bridge] = ACTIONS(7108), + [anon_sym___bridge_transfer] = ACTIONS(7108), + [anon_sym___bridge_retained] = ACTIONS(7108), + [anon_sym___unsafe_unretained] = ACTIONS(7108), + [anon_sym___block] = ACTIONS(7108), + [anon_sym___kindof] = ACTIONS(7108), + [anon_sym___unused] = ACTIONS(7108), + [anon_sym__Complex] = ACTIONS(7108), + [anon_sym___complex] = ACTIONS(7108), + [anon_sym_IBOutlet] = ACTIONS(7108), + [anon_sym_IBInspectable] = ACTIONS(7108), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7108), + [anon_sym_COLON] = ACTIONS(7110), + [anon_sym_QMARK] = ACTIONS(7110), + [anon_sym_STAR_EQ] = ACTIONS(7110), + [anon_sym_SLASH_EQ] = ACTIONS(7110), + [anon_sym_PERCENT_EQ] = ACTIONS(7110), + [anon_sym_PLUS_EQ] = ACTIONS(7110), + [anon_sym_DASH_EQ] = ACTIONS(7110), + [anon_sym_LT_LT_EQ] = ACTIONS(7110), + [anon_sym_GT_GT_EQ] = ACTIONS(7110), + [anon_sym_AMP_EQ] = ACTIONS(7110), + [anon_sym_CARET_EQ] = ACTIONS(7110), + [anon_sym_PIPE_EQ] = ACTIONS(7110), + [anon_sym_DASH_DASH] = ACTIONS(7110), + [anon_sym_PLUS_PLUS] = ACTIONS(7110), + [anon_sym_DOT] = ACTIONS(7110), + [anon_sym_DASH_GT] = ACTIONS(7110), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7108), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7108), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7108), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7108), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7108), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7108), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7108), + [anon_sym_NS_AVAILABLE] = ACTIONS(7108), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7108), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7108), + [anon_sym_API_AVAILABLE] = ACTIONS(7108), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7108), + [anon_sym_API_DEPRECATED] = ACTIONS(7108), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7108), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7108), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7108), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7108), + [anon_sym___deprecated_msg] = ACTIONS(7108), + [anon_sym___deprecated_enum_msg] = ACTIONS(7108), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7108), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7108), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7108), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7108), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7108), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7108), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2993] = { + [sym_identifier] = ACTIONS(7112), + [anon_sym_COMMA] = ACTIONS(7114), + [anon_sym_RPAREN] = ACTIONS(7114), + [anon_sym_LPAREN2] = ACTIONS(7114), + [anon_sym_DASH] = ACTIONS(7112), + [anon_sym_PLUS] = ACTIONS(7112), + [anon_sym_STAR] = ACTIONS(7112), + [anon_sym_SLASH] = ACTIONS(7112), + [anon_sym_PERCENT] = ACTIONS(7112), + [anon_sym_PIPE_PIPE] = ACTIONS(7114), + [anon_sym_AMP_AMP] = ACTIONS(7114), + [anon_sym_PIPE] = ACTIONS(7112), + [anon_sym_CARET] = ACTIONS(7112), + [anon_sym_AMP] = ACTIONS(7112), + [anon_sym_EQ_EQ] = ACTIONS(7114), + [anon_sym_BANG_EQ] = ACTIONS(7114), + [anon_sym_GT] = ACTIONS(7112), + [anon_sym_GT_EQ] = ACTIONS(7114), + [anon_sym_LT_EQ] = ACTIONS(7114), + [anon_sym_LT] = ACTIONS(7112), + [anon_sym_LT_LT] = ACTIONS(7112), + [anon_sym_GT_GT] = ACTIONS(7112), + [anon_sym_SEMI] = ACTIONS(7114), + [anon_sym___attribute] = ACTIONS(7112), + [anon_sym___attribute__] = ACTIONS(7112), + [anon_sym_RBRACE] = ACTIONS(7114), + [anon_sym_LBRACK] = ACTIONS(7114), + [anon_sym_RBRACK] = ACTIONS(7114), + [anon_sym_EQ] = ACTIONS(7112), + [anon_sym_const] = ACTIONS(7112), + [anon_sym_volatile] = ACTIONS(7112), + [anon_sym_restrict] = ACTIONS(7112), + [anon_sym__Atomic] = ACTIONS(7112), + [anon_sym_in] = ACTIONS(7112), + [anon_sym_out] = ACTIONS(7112), + [anon_sym_inout] = ACTIONS(7112), + [anon_sym_bycopy] = ACTIONS(7112), + [anon_sym_byref] = ACTIONS(7112), + [anon_sym_oneway] = ACTIONS(7112), + [anon_sym__Nullable] = ACTIONS(7112), + [anon_sym__Nonnull] = ACTIONS(7112), + [anon_sym__Nullable_result] = ACTIONS(7112), + [anon_sym__Null_unspecified] = ACTIONS(7112), + [anon_sym___autoreleasing] = ACTIONS(7112), + [anon_sym___nullable] = ACTIONS(7112), + [anon_sym___nonnull] = ACTIONS(7112), + [anon_sym___strong] = ACTIONS(7112), + [anon_sym___weak] = ACTIONS(7112), + [anon_sym___bridge] = ACTIONS(7112), + [anon_sym___bridge_transfer] = ACTIONS(7112), + [anon_sym___bridge_retained] = ACTIONS(7112), + [anon_sym___unsafe_unretained] = ACTIONS(7112), + [anon_sym___block] = ACTIONS(7112), + [anon_sym___kindof] = ACTIONS(7112), + [anon_sym___unused] = ACTIONS(7112), + [anon_sym__Complex] = ACTIONS(7112), + [anon_sym___complex] = ACTIONS(7112), + [anon_sym_IBOutlet] = ACTIONS(7112), + [anon_sym_IBInspectable] = ACTIONS(7112), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7112), + [anon_sym_COLON] = ACTIONS(7114), + [anon_sym_QMARK] = ACTIONS(7114), + [anon_sym_STAR_EQ] = ACTIONS(7114), + [anon_sym_SLASH_EQ] = ACTIONS(7114), + [anon_sym_PERCENT_EQ] = ACTIONS(7114), + [anon_sym_PLUS_EQ] = ACTIONS(7114), + [anon_sym_DASH_EQ] = ACTIONS(7114), + [anon_sym_LT_LT_EQ] = ACTIONS(7114), + [anon_sym_GT_GT_EQ] = ACTIONS(7114), + [anon_sym_AMP_EQ] = ACTIONS(7114), + [anon_sym_CARET_EQ] = ACTIONS(7114), + [anon_sym_PIPE_EQ] = ACTIONS(7114), + [anon_sym_DASH_DASH] = ACTIONS(7114), + [anon_sym_PLUS_PLUS] = ACTIONS(7114), + [anon_sym_DOT] = ACTIONS(7114), + [anon_sym_DASH_GT] = ACTIONS(7114), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7112), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7112), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7112), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7112), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7112), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7112), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7112), + [anon_sym_NS_AVAILABLE] = ACTIONS(7112), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7112), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7112), + [anon_sym_API_AVAILABLE] = ACTIONS(7112), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7112), + [anon_sym_API_DEPRECATED] = ACTIONS(7112), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7112), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7112), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7112), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7112), + [anon_sym___deprecated_msg] = ACTIONS(7112), + [anon_sym___deprecated_enum_msg] = ACTIONS(7112), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7112), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7112), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7112), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7112), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7112), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7112), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2994] = { + [sym_identifier] = ACTIONS(7116), + [anon_sym_COMMA] = ACTIONS(7118), + [anon_sym_RPAREN] = ACTIONS(7118), + [anon_sym_LPAREN2] = ACTIONS(7118), + [anon_sym_DASH] = ACTIONS(7116), + [anon_sym_PLUS] = ACTIONS(7116), + [anon_sym_STAR] = ACTIONS(7116), + [anon_sym_SLASH] = ACTIONS(7116), + [anon_sym_PERCENT] = ACTIONS(7116), + [anon_sym_PIPE_PIPE] = ACTIONS(7118), + [anon_sym_AMP_AMP] = ACTIONS(7118), + [anon_sym_PIPE] = ACTIONS(7116), + [anon_sym_CARET] = ACTIONS(7116), + [anon_sym_AMP] = ACTIONS(7116), + [anon_sym_EQ_EQ] = ACTIONS(7118), + [anon_sym_BANG_EQ] = ACTIONS(7118), + [anon_sym_GT] = ACTIONS(7116), + [anon_sym_GT_EQ] = ACTIONS(7118), + [anon_sym_LT_EQ] = ACTIONS(7118), + [anon_sym_LT] = ACTIONS(7116), + [anon_sym_LT_LT] = ACTIONS(7116), + [anon_sym_GT_GT] = ACTIONS(7116), + [anon_sym_SEMI] = ACTIONS(7118), + [anon_sym___attribute] = ACTIONS(7116), + [anon_sym___attribute__] = ACTIONS(7116), + [anon_sym_RBRACE] = ACTIONS(7118), + [anon_sym_LBRACK] = ACTIONS(7118), + [anon_sym_RBRACK] = ACTIONS(7118), + [anon_sym_EQ] = ACTIONS(7116), + [anon_sym_const] = ACTIONS(7116), + [anon_sym_volatile] = ACTIONS(7116), + [anon_sym_restrict] = ACTIONS(7116), + [anon_sym__Atomic] = ACTIONS(7116), + [anon_sym_in] = ACTIONS(7116), + [anon_sym_out] = ACTIONS(7116), + [anon_sym_inout] = ACTIONS(7116), + [anon_sym_bycopy] = ACTIONS(7116), + [anon_sym_byref] = ACTIONS(7116), + [anon_sym_oneway] = ACTIONS(7116), + [anon_sym__Nullable] = ACTIONS(7116), + [anon_sym__Nonnull] = ACTIONS(7116), + [anon_sym__Nullable_result] = ACTIONS(7116), + [anon_sym__Null_unspecified] = ACTIONS(7116), + [anon_sym___autoreleasing] = ACTIONS(7116), + [anon_sym___nullable] = ACTIONS(7116), + [anon_sym___nonnull] = ACTIONS(7116), + [anon_sym___strong] = ACTIONS(7116), + [anon_sym___weak] = ACTIONS(7116), + [anon_sym___bridge] = ACTIONS(7116), + [anon_sym___bridge_transfer] = ACTIONS(7116), + [anon_sym___bridge_retained] = ACTIONS(7116), + [anon_sym___unsafe_unretained] = ACTIONS(7116), + [anon_sym___block] = ACTIONS(7116), + [anon_sym___kindof] = ACTIONS(7116), + [anon_sym___unused] = ACTIONS(7116), + [anon_sym__Complex] = ACTIONS(7116), + [anon_sym___complex] = ACTIONS(7116), + [anon_sym_IBOutlet] = ACTIONS(7116), + [anon_sym_IBInspectable] = ACTIONS(7116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7116), + [anon_sym_COLON] = ACTIONS(7118), + [anon_sym_QMARK] = ACTIONS(7118), + [anon_sym_STAR_EQ] = ACTIONS(7118), + [anon_sym_SLASH_EQ] = ACTIONS(7118), + [anon_sym_PERCENT_EQ] = ACTIONS(7118), + [anon_sym_PLUS_EQ] = ACTIONS(7118), + [anon_sym_DASH_EQ] = ACTIONS(7118), + [anon_sym_LT_LT_EQ] = ACTIONS(7118), + [anon_sym_GT_GT_EQ] = ACTIONS(7118), + [anon_sym_AMP_EQ] = ACTIONS(7118), + [anon_sym_CARET_EQ] = ACTIONS(7118), + [anon_sym_PIPE_EQ] = ACTIONS(7118), + [anon_sym_DASH_DASH] = ACTIONS(7118), + [anon_sym_PLUS_PLUS] = ACTIONS(7118), + [anon_sym_DOT] = ACTIONS(7118), + [anon_sym_DASH_GT] = ACTIONS(7118), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7116), + [anon_sym_NS_AVAILABLE] = ACTIONS(7116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7116), + [anon_sym_API_AVAILABLE] = ACTIONS(7116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7116), + [anon_sym_API_DEPRECATED] = ACTIONS(7116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7116), + [anon_sym___deprecated_msg] = ACTIONS(7116), + [anon_sym___deprecated_enum_msg] = ACTIONS(7116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2995] = { + [sym_identifier] = ACTIONS(6777), + [anon_sym_COMMA] = ACTIONS(6779), + [anon_sym_RPAREN] = ACTIONS(6779), + [anon_sym_LPAREN2] = ACTIONS(6779), + [anon_sym_DASH] = ACTIONS(6777), + [anon_sym_PLUS] = ACTIONS(6777), + [anon_sym_STAR] = ACTIONS(6777), + [anon_sym_SLASH] = ACTIONS(6777), + [anon_sym_PERCENT] = ACTIONS(6777), + [anon_sym_PIPE_PIPE] = ACTIONS(6779), + [anon_sym_AMP_AMP] = ACTIONS(6779), + [anon_sym_PIPE] = ACTIONS(6777), + [anon_sym_CARET] = ACTIONS(6777), + [anon_sym_AMP] = ACTIONS(6777), + [anon_sym_EQ_EQ] = ACTIONS(6779), + [anon_sym_BANG_EQ] = ACTIONS(6779), + [anon_sym_GT] = ACTIONS(6777), + [anon_sym_GT_EQ] = ACTIONS(6779), + [anon_sym_LT_EQ] = ACTIONS(6779), + [anon_sym_LT] = ACTIONS(6777), + [anon_sym_LT_LT] = ACTIONS(6777), + [anon_sym_GT_GT] = ACTIONS(6777), + [anon_sym_SEMI] = ACTIONS(6779), + [anon_sym___attribute] = ACTIONS(6777), + [anon_sym___attribute__] = ACTIONS(6777), + [anon_sym_RBRACE] = ACTIONS(6779), + [anon_sym_LBRACK] = ACTIONS(6779), + [anon_sym_RBRACK] = ACTIONS(6779), + [anon_sym_EQ] = ACTIONS(6777), + [anon_sym_const] = ACTIONS(6777), + [anon_sym_volatile] = ACTIONS(6777), + [anon_sym_restrict] = ACTIONS(6777), + [anon_sym__Atomic] = ACTIONS(6777), + [anon_sym_in] = ACTIONS(6777), + [anon_sym_out] = ACTIONS(6777), + [anon_sym_inout] = ACTIONS(6777), + [anon_sym_bycopy] = ACTIONS(6777), + [anon_sym_byref] = ACTIONS(6777), + [anon_sym_oneway] = ACTIONS(6777), + [anon_sym__Nullable] = ACTIONS(6777), + [anon_sym__Nonnull] = ACTIONS(6777), + [anon_sym__Nullable_result] = ACTIONS(6777), + [anon_sym__Null_unspecified] = ACTIONS(6777), + [anon_sym___autoreleasing] = ACTIONS(6777), + [anon_sym___nullable] = ACTIONS(6777), + [anon_sym___nonnull] = ACTIONS(6777), + [anon_sym___strong] = ACTIONS(6777), + [anon_sym___weak] = ACTIONS(6777), + [anon_sym___bridge] = ACTIONS(6777), + [anon_sym___bridge_transfer] = ACTIONS(6777), + [anon_sym___bridge_retained] = ACTIONS(6777), + [anon_sym___unsafe_unretained] = ACTIONS(6777), + [anon_sym___block] = ACTIONS(6777), + [anon_sym___kindof] = ACTIONS(6777), + [anon_sym___unused] = ACTIONS(6777), + [anon_sym__Complex] = ACTIONS(6777), + [anon_sym___complex] = ACTIONS(6777), + [anon_sym_IBOutlet] = ACTIONS(6777), + [anon_sym_IBInspectable] = ACTIONS(6777), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6777), + [anon_sym_COLON] = ACTIONS(6779), + [anon_sym_QMARK] = ACTIONS(6779), + [anon_sym_STAR_EQ] = ACTIONS(6779), + [anon_sym_SLASH_EQ] = ACTIONS(6779), + [anon_sym_PERCENT_EQ] = ACTIONS(6779), + [anon_sym_PLUS_EQ] = ACTIONS(6779), + [anon_sym_DASH_EQ] = ACTIONS(6779), + [anon_sym_LT_LT_EQ] = ACTIONS(6779), + [anon_sym_GT_GT_EQ] = ACTIONS(6779), + [anon_sym_AMP_EQ] = ACTIONS(6779), + [anon_sym_CARET_EQ] = ACTIONS(6779), + [anon_sym_PIPE_EQ] = ACTIONS(6779), + [anon_sym_DASH_DASH] = ACTIONS(6779), + [anon_sym_PLUS_PLUS] = ACTIONS(6779), + [anon_sym_DOT] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(6779), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6777), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6777), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6777), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6777), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6777), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6777), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6777), + [anon_sym_NS_AVAILABLE] = ACTIONS(6777), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6777), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_API_AVAILABLE] = ACTIONS(6777), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6777), + [anon_sym_API_DEPRECATED] = ACTIONS(6777), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6777), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6777), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6777), + [anon_sym___deprecated_msg] = ACTIONS(6777), + [anon_sym___deprecated_enum_msg] = ACTIONS(6777), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6777), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6777), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6777), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6777), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2996] = { + [sym_identifier] = ACTIONS(7120), + [anon_sym_COMMA] = ACTIONS(7122), + [anon_sym_RPAREN] = ACTIONS(7122), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7120), + [anon_sym_PLUS] = ACTIONS(7120), + [anon_sym_STAR] = ACTIONS(7120), + [anon_sym_SLASH] = ACTIONS(7120), + [anon_sym_PERCENT] = ACTIONS(7120), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_PIPE] = ACTIONS(7120), + [anon_sym_CARET] = ACTIONS(7120), + [anon_sym_AMP] = ACTIONS(7120), + [anon_sym_EQ_EQ] = ACTIONS(7122), + [anon_sym_BANG_EQ] = ACTIONS(7122), + [anon_sym_GT] = ACTIONS(7120), + [anon_sym_GT_EQ] = ACTIONS(7122), + [anon_sym_LT_EQ] = ACTIONS(7122), + [anon_sym_LT] = ACTIONS(7120), + [anon_sym_LT_LT] = ACTIONS(7120), + [anon_sym_GT_GT] = ACTIONS(7120), + [anon_sym_SEMI] = ACTIONS(7122), + [anon_sym___attribute] = ACTIONS(7120), + [anon_sym___attribute__] = ACTIONS(7120), + [anon_sym_RBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7122), + [anon_sym_RBRACK] = ACTIONS(7122), + [anon_sym_EQ] = ACTIONS(7120), + [anon_sym_const] = ACTIONS(7120), + [anon_sym_volatile] = ACTIONS(7120), + [anon_sym_restrict] = ACTIONS(7120), + [anon_sym__Atomic] = ACTIONS(7120), + [anon_sym_in] = ACTIONS(7120), + [anon_sym_out] = ACTIONS(7120), + [anon_sym_inout] = ACTIONS(7120), + [anon_sym_bycopy] = ACTIONS(7120), + [anon_sym_byref] = ACTIONS(7120), + [anon_sym_oneway] = ACTIONS(7120), + [anon_sym__Nullable] = ACTIONS(7120), + [anon_sym__Nonnull] = ACTIONS(7120), + [anon_sym__Nullable_result] = ACTIONS(7120), + [anon_sym__Null_unspecified] = ACTIONS(7120), + [anon_sym___autoreleasing] = ACTIONS(7120), + [anon_sym___nullable] = ACTIONS(7120), + [anon_sym___nonnull] = ACTIONS(7120), + [anon_sym___strong] = ACTIONS(7120), + [anon_sym___weak] = ACTIONS(7120), + [anon_sym___bridge] = ACTIONS(7120), + [anon_sym___bridge_transfer] = ACTIONS(7120), + [anon_sym___bridge_retained] = ACTIONS(7120), + [anon_sym___unsafe_unretained] = ACTIONS(7120), + [anon_sym___block] = ACTIONS(7120), + [anon_sym___kindof] = ACTIONS(7120), + [anon_sym___unused] = ACTIONS(7120), + [anon_sym__Complex] = ACTIONS(7120), + [anon_sym___complex] = ACTIONS(7120), + [anon_sym_IBOutlet] = ACTIONS(7120), + [anon_sym_IBInspectable] = ACTIONS(7120), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7120), + [anon_sym_COLON] = ACTIONS(7122), + [anon_sym_QMARK] = ACTIONS(7122), + [anon_sym_STAR_EQ] = ACTIONS(7122), + [anon_sym_SLASH_EQ] = ACTIONS(7122), + [anon_sym_PERCENT_EQ] = ACTIONS(7122), + [anon_sym_PLUS_EQ] = ACTIONS(7122), + [anon_sym_DASH_EQ] = ACTIONS(7122), + [anon_sym_LT_LT_EQ] = ACTIONS(7122), + [anon_sym_GT_GT_EQ] = ACTIONS(7122), + [anon_sym_AMP_EQ] = ACTIONS(7122), + [anon_sym_CARET_EQ] = ACTIONS(7122), + [anon_sym_PIPE_EQ] = ACTIONS(7122), + [anon_sym_DASH_DASH] = ACTIONS(7122), + [anon_sym_PLUS_PLUS] = ACTIONS(7122), + [anon_sym_DOT] = ACTIONS(7122), + [anon_sym_DASH_GT] = ACTIONS(7122), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7120), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7120), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7120), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7120), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7120), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7120), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7120), + [anon_sym_NS_AVAILABLE] = ACTIONS(7120), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7120), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7120), + [anon_sym_API_AVAILABLE] = ACTIONS(7120), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7120), + [anon_sym_API_DEPRECATED] = ACTIONS(7120), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7120), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7120), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7120), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7120), + [anon_sym___deprecated_msg] = ACTIONS(7120), + [anon_sym___deprecated_enum_msg] = ACTIONS(7120), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7120), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7120), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7120), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7120), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7120), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7120), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2997] = { + [sym_identifier] = ACTIONS(6777), + [anon_sym_COMMA] = ACTIONS(6779), + [anon_sym_RPAREN] = ACTIONS(6779), + [anon_sym_LPAREN2] = ACTIONS(6779), + [anon_sym_DASH] = ACTIONS(6777), + [anon_sym_PLUS] = ACTIONS(6777), + [anon_sym_STAR] = ACTIONS(6777), + [anon_sym_SLASH] = ACTIONS(6777), + [anon_sym_PERCENT] = ACTIONS(6777), + [anon_sym_PIPE_PIPE] = ACTIONS(6779), + [anon_sym_AMP_AMP] = ACTIONS(6779), + [anon_sym_PIPE] = ACTIONS(6777), + [anon_sym_CARET] = ACTIONS(6777), + [anon_sym_AMP] = ACTIONS(6777), + [anon_sym_EQ_EQ] = ACTIONS(6779), + [anon_sym_BANG_EQ] = ACTIONS(6779), + [anon_sym_GT] = ACTIONS(6777), + [anon_sym_GT_EQ] = ACTIONS(6779), + [anon_sym_LT_EQ] = ACTIONS(6779), + [anon_sym_LT] = ACTIONS(6777), + [anon_sym_LT_LT] = ACTIONS(6777), + [anon_sym_GT_GT] = ACTIONS(6777), + [anon_sym_SEMI] = ACTIONS(6779), + [anon_sym___attribute] = ACTIONS(6777), + [anon_sym___attribute__] = ACTIONS(6777), + [anon_sym_RBRACE] = ACTIONS(6779), + [anon_sym_LBRACK] = ACTIONS(6779), + [anon_sym_RBRACK] = ACTIONS(6779), + [anon_sym_EQ] = ACTIONS(6777), + [anon_sym_const] = ACTIONS(6777), + [anon_sym_volatile] = ACTIONS(6777), + [anon_sym_restrict] = ACTIONS(6777), + [anon_sym__Atomic] = ACTIONS(6777), + [anon_sym_in] = ACTIONS(6777), + [anon_sym_out] = ACTIONS(6777), + [anon_sym_inout] = ACTIONS(6777), + [anon_sym_bycopy] = ACTIONS(6777), + [anon_sym_byref] = ACTIONS(6777), + [anon_sym_oneway] = ACTIONS(6777), + [anon_sym__Nullable] = ACTIONS(6777), + [anon_sym__Nonnull] = ACTIONS(6777), + [anon_sym__Nullable_result] = ACTIONS(6777), + [anon_sym__Null_unspecified] = ACTIONS(6777), + [anon_sym___autoreleasing] = ACTIONS(6777), + [anon_sym___nullable] = ACTIONS(6777), + [anon_sym___nonnull] = ACTIONS(6777), + [anon_sym___strong] = ACTIONS(6777), + [anon_sym___weak] = ACTIONS(6777), + [anon_sym___bridge] = ACTIONS(6777), + [anon_sym___bridge_transfer] = ACTIONS(6777), + [anon_sym___bridge_retained] = ACTIONS(6777), + [anon_sym___unsafe_unretained] = ACTIONS(6777), + [anon_sym___block] = ACTIONS(6777), + [anon_sym___kindof] = ACTIONS(6777), + [anon_sym___unused] = ACTIONS(6777), + [anon_sym__Complex] = ACTIONS(6777), + [anon_sym___complex] = ACTIONS(6777), + [anon_sym_IBOutlet] = ACTIONS(6777), + [anon_sym_IBInspectable] = ACTIONS(6777), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6777), + [anon_sym_COLON] = ACTIONS(6779), + [anon_sym_QMARK] = ACTIONS(6779), + [anon_sym_STAR_EQ] = ACTIONS(6779), + [anon_sym_SLASH_EQ] = ACTIONS(6779), + [anon_sym_PERCENT_EQ] = ACTIONS(6779), + [anon_sym_PLUS_EQ] = ACTIONS(6779), + [anon_sym_DASH_EQ] = ACTIONS(6779), + [anon_sym_LT_LT_EQ] = ACTIONS(6779), + [anon_sym_GT_GT_EQ] = ACTIONS(6779), + [anon_sym_AMP_EQ] = ACTIONS(6779), + [anon_sym_CARET_EQ] = ACTIONS(6779), + [anon_sym_PIPE_EQ] = ACTIONS(6779), + [anon_sym_DASH_DASH] = ACTIONS(6779), + [anon_sym_PLUS_PLUS] = ACTIONS(6779), + [anon_sym_DOT] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(6779), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6777), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6777), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6777), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6777), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6777), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6777), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6777), + [anon_sym_NS_AVAILABLE] = ACTIONS(6777), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6777), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_API_AVAILABLE] = ACTIONS(6777), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6777), + [anon_sym_API_DEPRECATED] = ACTIONS(6777), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6777), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6777), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6777), + [anon_sym___deprecated_msg] = ACTIONS(6777), + [anon_sym___deprecated_enum_msg] = ACTIONS(6777), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6777), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6777), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6777), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6777), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2998] = { + [sym_identifier] = ACTIONS(7124), + [anon_sym_COMMA] = ACTIONS(7126), + [anon_sym_RPAREN] = ACTIONS(7126), + [anon_sym_LPAREN2] = ACTIONS(7126), + [anon_sym_DASH] = ACTIONS(7124), + [anon_sym_PLUS] = ACTIONS(7124), + [anon_sym_STAR] = ACTIONS(7124), + [anon_sym_SLASH] = ACTIONS(7124), + [anon_sym_PERCENT] = ACTIONS(7124), + [anon_sym_PIPE_PIPE] = ACTIONS(7126), + [anon_sym_AMP_AMP] = ACTIONS(7126), + [anon_sym_PIPE] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7124), + [anon_sym_AMP] = ACTIONS(7124), + [anon_sym_EQ_EQ] = ACTIONS(7126), + [anon_sym_BANG_EQ] = ACTIONS(7126), + [anon_sym_GT] = ACTIONS(7124), + [anon_sym_GT_EQ] = ACTIONS(7126), + [anon_sym_LT_EQ] = ACTIONS(7126), + [anon_sym_LT] = ACTIONS(7124), + [anon_sym_LT_LT] = ACTIONS(7124), + [anon_sym_GT_GT] = ACTIONS(7124), + [anon_sym_SEMI] = ACTIONS(7126), + [anon_sym___attribute] = ACTIONS(7124), + [anon_sym___attribute__] = ACTIONS(7124), + [anon_sym_RBRACE] = ACTIONS(7126), + [anon_sym_LBRACK] = ACTIONS(7126), + [anon_sym_RBRACK] = ACTIONS(7126), + [anon_sym_EQ] = ACTIONS(7124), + [anon_sym_const] = ACTIONS(7124), + [anon_sym_volatile] = ACTIONS(7124), + [anon_sym_restrict] = ACTIONS(7124), + [anon_sym__Atomic] = ACTIONS(7124), + [anon_sym_in] = ACTIONS(7124), + [anon_sym_out] = ACTIONS(7124), + [anon_sym_inout] = ACTIONS(7124), + [anon_sym_bycopy] = ACTIONS(7124), + [anon_sym_byref] = ACTIONS(7124), + [anon_sym_oneway] = ACTIONS(7124), + [anon_sym__Nullable] = ACTIONS(7124), + [anon_sym__Nonnull] = ACTIONS(7124), + [anon_sym__Nullable_result] = ACTIONS(7124), + [anon_sym__Null_unspecified] = ACTIONS(7124), + [anon_sym___autoreleasing] = ACTIONS(7124), + [anon_sym___nullable] = ACTIONS(7124), + [anon_sym___nonnull] = ACTIONS(7124), + [anon_sym___strong] = ACTIONS(7124), + [anon_sym___weak] = ACTIONS(7124), + [anon_sym___bridge] = ACTIONS(7124), + [anon_sym___bridge_transfer] = ACTIONS(7124), + [anon_sym___bridge_retained] = ACTIONS(7124), + [anon_sym___unsafe_unretained] = ACTIONS(7124), + [anon_sym___block] = ACTIONS(7124), + [anon_sym___kindof] = ACTIONS(7124), + [anon_sym___unused] = ACTIONS(7124), + [anon_sym__Complex] = ACTIONS(7124), + [anon_sym___complex] = ACTIONS(7124), + [anon_sym_IBOutlet] = ACTIONS(7124), + [anon_sym_IBInspectable] = ACTIONS(7124), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7124), + [anon_sym_COLON] = ACTIONS(7126), + [anon_sym_QMARK] = ACTIONS(7126), + [anon_sym_STAR_EQ] = ACTIONS(7126), + [anon_sym_SLASH_EQ] = ACTIONS(7126), + [anon_sym_PERCENT_EQ] = ACTIONS(7126), + [anon_sym_PLUS_EQ] = ACTIONS(7126), + [anon_sym_DASH_EQ] = ACTIONS(7126), + [anon_sym_LT_LT_EQ] = ACTIONS(7126), + [anon_sym_GT_GT_EQ] = ACTIONS(7126), + [anon_sym_AMP_EQ] = ACTIONS(7126), + [anon_sym_CARET_EQ] = ACTIONS(7126), + [anon_sym_PIPE_EQ] = ACTIONS(7126), + [anon_sym_DASH_DASH] = ACTIONS(7126), + [anon_sym_PLUS_PLUS] = ACTIONS(7126), + [anon_sym_DOT] = ACTIONS(7126), + [anon_sym_DASH_GT] = ACTIONS(7126), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7124), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7124), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7124), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7124), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7124), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7124), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7124), + [anon_sym_NS_AVAILABLE] = ACTIONS(7124), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7124), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7124), + [anon_sym_API_AVAILABLE] = ACTIONS(7124), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7124), + [anon_sym_API_DEPRECATED] = ACTIONS(7124), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7124), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7124), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7124), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7124), + [anon_sym___deprecated_msg] = ACTIONS(7124), + [anon_sym___deprecated_enum_msg] = ACTIONS(7124), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7124), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7124), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7124), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7124), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7124), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7124), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [2999] = { + [sym_identifier] = ACTIONS(7128), + [anon_sym_COMMA] = ACTIONS(7130), + [anon_sym_RPAREN] = ACTIONS(7130), + [anon_sym_LPAREN2] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7128), + [anon_sym_PLUS] = ACTIONS(7128), + [anon_sym_STAR] = ACTIONS(7128), + [anon_sym_SLASH] = ACTIONS(7128), + [anon_sym_PERCENT] = ACTIONS(7128), + [anon_sym_PIPE_PIPE] = ACTIONS(7130), + [anon_sym_AMP_AMP] = ACTIONS(7130), + [anon_sym_PIPE] = ACTIONS(7128), + [anon_sym_CARET] = ACTIONS(7128), + [anon_sym_AMP] = ACTIONS(7128), + [anon_sym_EQ_EQ] = ACTIONS(7130), + [anon_sym_BANG_EQ] = ACTIONS(7130), + [anon_sym_GT] = ACTIONS(7128), + [anon_sym_GT_EQ] = ACTIONS(7130), + [anon_sym_LT_EQ] = ACTIONS(7130), + [anon_sym_LT] = ACTIONS(7128), + [anon_sym_LT_LT] = ACTIONS(7128), + [anon_sym_GT_GT] = ACTIONS(7128), + [anon_sym_SEMI] = ACTIONS(7130), + [anon_sym___attribute] = ACTIONS(7128), + [anon_sym___attribute__] = ACTIONS(7128), + [anon_sym_RBRACE] = ACTIONS(7130), + [anon_sym_LBRACK] = ACTIONS(7130), + [anon_sym_RBRACK] = ACTIONS(7130), + [anon_sym_EQ] = ACTIONS(7128), + [anon_sym_const] = ACTIONS(7128), + [anon_sym_volatile] = ACTIONS(7128), + [anon_sym_restrict] = ACTIONS(7128), + [anon_sym__Atomic] = ACTIONS(7128), + [anon_sym_in] = ACTIONS(7128), + [anon_sym_out] = ACTIONS(7128), + [anon_sym_inout] = ACTIONS(7128), + [anon_sym_bycopy] = ACTIONS(7128), + [anon_sym_byref] = ACTIONS(7128), + [anon_sym_oneway] = ACTIONS(7128), + [anon_sym__Nullable] = ACTIONS(7128), + [anon_sym__Nonnull] = ACTIONS(7128), + [anon_sym__Nullable_result] = ACTIONS(7128), + [anon_sym__Null_unspecified] = ACTIONS(7128), + [anon_sym___autoreleasing] = ACTIONS(7128), + [anon_sym___nullable] = ACTIONS(7128), + [anon_sym___nonnull] = ACTIONS(7128), + [anon_sym___strong] = ACTIONS(7128), + [anon_sym___weak] = ACTIONS(7128), + [anon_sym___bridge] = ACTIONS(7128), + [anon_sym___bridge_transfer] = ACTIONS(7128), + [anon_sym___bridge_retained] = ACTIONS(7128), + [anon_sym___unsafe_unretained] = ACTIONS(7128), + [anon_sym___block] = ACTIONS(7128), + [anon_sym___kindof] = ACTIONS(7128), + [anon_sym___unused] = ACTIONS(7128), + [anon_sym__Complex] = ACTIONS(7128), + [anon_sym___complex] = ACTIONS(7128), + [anon_sym_IBOutlet] = ACTIONS(7128), + [anon_sym_IBInspectable] = ACTIONS(7128), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7128), + [anon_sym_COLON] = ACTIONS(7130), + [anon_sym_QMARK] = ACTIONS(7130), + [anon_sym_STAR_EQ] = ACTIONS(7130), + [anon_sym_SLASH_EQ] = ACTIONS(7130), + [anon_sym_PERCENT_EQ] = ACTIONS(7130), + [anon_sym_PLUS_EQ] = ACTIONS(7130), + [anon_sym_DASH_EQ] = ACTIONS(7130), + [anon_sym_LT_LT_EQ] = ACTIONS(7130), + [anon_sym_GT_GT_EQ] = ACTIONS(7130), + [anon_sym_AMP_EQ] = ACTIONS(7130), + [anon_sym_CARET_EQ] = ACTIONS(7130), + [anon_sym_PIPE_EQ] = ACTIONS(7130), + [anon_sym_DASH_DASH] = ACTIONS(7130), + [anon_sym_PLUS_PLUS] = ACTIONS(7130), + [anon_sym_DOT] = ACTIONS(7130), + [anon_sym_DASH_GT] = ACTIONS(7130), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7128), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7128), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7128), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7128), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7128), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7128), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7128), + [anon_sym_NS_AVAILABLE] = ACTIONS(7128), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7128), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7128), + [anon_sym_API_AVAILABLE] = ACTIONS(7128), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7128), + [anon_sym_API_DEPRECATED] = ACTIONS(7128), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7128), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7128), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7128), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7128), + [anon_sym___deprecated_msg] = ACTIONS(7128), + [anon_sym___deprecated_enum_msg] = ACTIONS(7128), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7128), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7128), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7128), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7128), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7128), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7128), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3000] = { + [sym_identifier] = ACTIONS(7132), + [anon_sym_COMMA] = ACTIONS(7134), + [anon_sym_RPAREN] = ACTIONS(7134), + [anon_sym_LPAREN2] = ACTIONS(7134), + [anon_sym_DASH] = ACTIONS(7132), + [anon_sym_PLUS] = ACTIONS(7132), + [anon_sym_STAR] = ACTIONS(7132), + [anon_sym_SLASH] = ACTIONS(7132), + [anon_sym_PERCENT] = ACTIONS(7132), + [anon_sym_PIPE_PIPE] = ACTIONS(7134), + [anon_sym_AMP_AMP] = ACTIONS(7134), + [anon_sym_PIPE] = ACTIONS(7132), + [anon_sym_CARET] = ACTIONS(7132), + [anon_sym_AMP] = ACTIONS(7132), + [anon_sym_EQ_EQ] = ACTIONS(7134), + [anon_sym_BANG_EQ] = ACTIONS(7134), + [anon_sym_GT] = ACTIONS(7132), + [anon_sym_GT_EQ] = ACTIONS(7134), + [anon_sym_LT_EQ] = ACTIONS(7134), + [anon_sym_LT] = ACTIONS(7132), + [anon_sym_LT_LT] = ACTIONS(7132), + [anon_sym_GT_GT] = ACTIONS(7132), + [anon_sym_SEMI] = ACTIONS(7134), + [anon_sym___attribute] = ACTIONS(7132), + [anon_sym___attribute__] = ACTIONS(7132), + [anon_sym_RBRACE] = ACTIONS(7134), + [anon_sym_LBRACK] = ACTIONS(7134), + [anon_sym_RBRACK] = ACTIONS(7134), + [anon_sym_EQ] = ACTIONS(7132), + [anon_sym_const] = ACTIONS(7132), + [anon_sym_volatile] = ACTIONS(7132), + [anon_sym_restrict] = ACTIONS(7132), + [anon_sym__Atomic] = ACTIONS(7132), + [anon_sym_in] = ACTIONS(7132), + [anon_sym_out] = ACTIONS(7132), + [anon_sym_inout] = ACTIONS(7132), + [anon_sym_bycopy] = ACTIONS(7132), + [anon_sym_byref] = ACTIONS(7132), + [anon_sym_oneway] = ACTIONS(7132), + [anon_sym__Nullable] = ACTIONS(7132), + [anon_sym__Nonnull] = ACTIONS(7132), + [anon_sym__Nullable_result] = ACTIONS(7132), + [anon_sym__Null_unspecified] = ACTIONS(7132), + [anon_sym___autoreleasing] = ACTIONS(7132), + [anon_sym___nullable] = ACTIONS(7132), + [anon_sym___nonnull] = ACTIONS(7132), + [anon_sym___strong] = ACTIONS(7132), + [anon_sym___weak] = ACTIONS(7132), + [anon_sym___bridge] = ACTIONS(7132), + [anon_sym___bridge_transfer] = ACTIONS(7132), + [anon_sym___bridge_retained] = ACTIONS(7132), + [anon_sym___unsafe_unretained] = ACTIONS(7132), + [anon_sym___block] = ACTIONS(7132), + [anon_sym___kindof] = ACTIONS(7132), + [anon_sym___unused] = ACTIONS(7132), + [anon_sym__Complex] = ACTIONS(7132), + [anon_sym___complex] = ACTIONS(7132), + [anon_sym_IBOutlet] = ACTIONS(7132), + [anon_sym_IBInspectable] = ACTIONS(7132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7132), + [anon_sym_COLON] = ACTIONS(7134), + [anon_sym_QMARK] = ACTIONS(7134), + [anon_sym_STAR_EQ] = ACTIONS(7134), + [anon_sym_SLASH_EQ] = ACTIONS(7134), + [anon_sym_PERCENT_EQ] = ACTIONS(7134), + [anon_sym_PLUS_EQ] = ACTIONS(7134), + [anon_sym_DASH_EQ] = ACTIONS(7134), + [anon_sym_LT_LT_EQ] = ACTIONS(7134), + [anon_sym_GT_GT_EQ] = ACTIONS(7134), + [anon_sym_AMP_EQ] = ACTIONS(7134), + [anon_sym_CARET_EQ] = ACTIONS(7134), + [anon_sym_PIPE_EQ] = ACTIONS(7134), + [anon_sym_DASH_DASH] = ACTIONS(7134), + [anon_sym_PLUS_PLUS] = ACTIONS(7134), + [anon_sym_DOT] = ACTIONS(7134), + [anon_sym_DASH_GT] = ACTIONS(7134), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7132), + [anon_sym_NS_AVAILABLE] = ACTIONS(7132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7132), + [anon_sym_API_AVAILABLE] = ACTIONS(7132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7132), + [anon_sym_API_DEPRECATED] = ACTIONS(7132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7132), + [anon_sym___deprecated_msg] = ACTIONS(7132), + [anon_sym___deprecated_enum_msg] = ACTIONS(7132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3001] = { + [sym_identifier] = ACTIONS(7136), + [anon_sym_COMMA] = ACTIONS(7138), + [anon_sym_RPAREN] = ACTIONS(7138), + [anon_sym_LPAREN2] = ACTIONS(7138), + [anon_sym_DASH] = ACTIONS(7136), + [anon_sym_PLUS] = ACTIONS(7136), + [anon_sym_STAR] = ACTIONS(7136), + [anon_sym_SLASH] = ACTIONS(7136), + [anon_sym_PERCENT] = ACTIONS(7136), + [anon_sym_PIPE_PIPE] = ACTIONS(7138), + [anon_sym_AMP_AMP] = ACTIONS(7138), + [anon_sym_PIPE] = ACTIONS(7136), + [anon_sym_CARET] = ACTIONS(7136), + [anon_sym_AMP] = ACTIONS(7136), + [anon_sym_EQ_EQ] = ACTIONS(7138), + [anon_sym_BANG_EQ] = ACTIONS(7138), + [anon_sym_GT] = ACTIONS(7136), + [anon_sym_GT_EQ] = ACTIONS(7138), + [anon_sym_LT_EQ] = ACTIONS(7138), + [anon_sym_LT] = ACTIONS(7136), + [anon_sym_LT_LT] = ACTIONS(7136), + [anon_sym_GT_GT] = ACTIONS(7136), + [anon_sym_SEMI] = ACTIONS(7138), + [anon_sym___attribute] = ACTIONS(7136), + [anon_sym___attribute__] = ACTIONS(7136), + [anon_sym_RBRACE] = ACTIONS(7138), + [anon_sym_LBRACK] = ACTIONS(7138), + [anon_sym_RBRACK] = ACTIONS(7138), + [anon_sym_EQ] = ACTIONS(7136), + [anon_sym_const] = ACTIONS(7136), + [anon_sym_volatile] = ACTIONS(7136), + [anon_sym_restrict] = ACTIONS(7136), + [anon_sym__Atomic] = ACTIONS(7136), + [anon_sym_in] = ACTIONS(7136), + [anon_sym_out] = ACTIONS(7136), + [anon_sym_inout] = ACTIONS(7136), + [anon_sym_bycopy] = ACTIONS(7136), + [anon_sym_byref] = ACTIONS(7136), + [anon_sym_oneway] = ACTIONS(7136), + [anon_sym__Nullable] = ACTIONS(7136), + [anon_sym__Nonnull] = ACTIONS(7136), + [anon_sym__Nullable_result] = ACTIONS(7136), + [anon_sym__Null_unspecified] = ACTIONS(7136), + [anon_sym___autoreleasing] = ACTIONS(7136), + [anon_sym___nullable] = ACTIONS(7136), + [anon_sym___nonnull] = ACTIONS(7136), + [anon_sym___strong] = ACTIONS(7136), + [anon_sym___weak] = ACTIONS(7136), + [anon_sym___bridge] = ACTIONS(7136), + [anon_sym___bridge_transfer] = ACTIONS(7136), + [anon_sym___bridge_retained] = ACTIONS(7136), + [anon_sym___unsafe_unretained] = ACTIONS(7136), + [anon_sym___block] = ACTIONS(7136), + [anon_sym___kindof] = ACTIONS(7136), + [anon_sym___unused] = ACTIONS(7136), + [anon_sym__Complex] = ACTIONS(7136), + [anon_sym___complex] = ACTIONS(7136), + [anon_sym_IBOutlet] = ACTIONS(7136), + [anon_sym_IBInspectable] = ACTIONS(7136), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7136), + [anon_sym_COLON] = ACTIONS(7138), + [anon_sym_QMARK] = ACTIONS(7138), + [anon_sym_STAR_EQ] = ACTIONS(7138), + [anon_sym_SLASH_EQ] = ACTIONS(7138), + [anon_sym_PERCENT_EQ] = ACTIONS(7138), + [anon_sym_PLUS_EQ] = ACTIONS(7138), + [anon_sym_DASH_EQ] = ACTIONS(7138), + [anon_sym_LT_LT_EQ] = ACTIONS(7138), + [anon_sym_GT_GT_EQ] = ACTIONS(7138), + [anon_sym_AMP_EQ] = ACTIONS(7138), + [anon_sym_CARET_EQ] = ACTIONS(7138), + [anon_sym_PIPE_EQ] = ACTIONS(7138), + [anon_sym_DASH_DASH] = ACTIONS(7138), + [anon_sym_PLUS_PLUS] = ACTIONS(7138), + [anon_sym_DOT] = ACTIONS(7138), + [anon_sym_DASH_GT] = ACTIONS(7138), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7136), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7136), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7136), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7136), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7136), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7136), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7136), + [anon_sym_NS_AVAILABLE] = ACTIONS(7136), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7136), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7136), + [anon_sym_API_AVAILABLE] = ACTIONS(7136), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7136), + [anon_sym_API_DEPRECATED] = ACTIONS(7136), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7136), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7136), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7136), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7136), + [anon_sym___deprecated_msg] = ACTIONS(7136), + [anon_sym___deprecated_enum_msg] = ACTIONS(7136), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7136), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7136), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7136), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7136), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7136), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7136), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3002] = { + [sym_identifier] = ACTIONS(7140), + [aux_sym_preproc_def_token1] = ACTIONS(7142), + [anon_sym_DASH] = ACTIONS(7142), + [anon_sym_PLUS] = ACTIONS(7142), + [anon_sym_typedef] = ACTIONS(7140), + [anon_sym_extern] = ACTIONS(7140), + [anon_sym___attribute] = ACTIONS(7140), + [anon_sym___attribute__] = ACTIONS(7140), + [anon_sym___declspec] = ACTIONS(7140), + [anon_sym___cdecl] = ACTIONS(7140), + [anon_sym___clrcall] = ACTIONS(7140), + [anon_sym___stdcall] = ACTIONS(7140), + [anon_sym___fastcall] = ACTIONS(7140), + [anon_sym___thiscall] = ACTIONS(7140), + [anon_sym___vectorcall] = ACTIONS(7140), + [anon_sym_static] = ACTIONS(7140), + [anon_sym_auto] = ACTIONS(7140), + [anon_sym_register] = ACTIONS(7140), + [anon_sym_inline] = ACTIONS(7140), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7140), + [anon_sym_const] = ACTIONS(7140), + [anon_sym_volatile] = ACTIONS(7140), + [anon_sym_restrict] = ACTIONS(7140), + [anon_sym__Atomic] = ACTIONS(7140), + [anon_sym_in] = ACTIONS(7140), + [anon_sym_out] = ACTIONS(7140), + [anon_sym_inout] = ACTIONS(7140), + [anon_sym_bycopy] = ACTIONS(7140), + [anon_sym_byref] = ACTIONS(7140), + [anon_sym_oneway] = ACTIONS(7140), + [anon_sym__Nullable] = ACTIONS(7140), + [anon_sym__Nonnull] = ACTIONS(7140), + [anon_sym__Nullable_result] = ACTIONS(7140), + [anon_sym__Null_unspecified] = ACTIONS(7140), + [anon_sym___autoreleasing] = ACTIONS(7140), + [anon_sym___nullable] = ACTIONS(7140), + [anon_sym___nonnull] = ACTIONS(7140), + [anon_sym___strong] = ACTIONS(7140), + [anon_sym___weak] = ACTIONS(7140), + [anon_sym___bridge] = ACTIONS(7140), + [anon_sym___bridge_transfer] = ACTIONS(7140), + [anon_sym___bridge_retained] = ACTIONS(7140), + [anon_sym___unsafe_unretained] = ACTIONS(7140), + [anon_sym___block] = ACTIONS(7140), + [anon_sym___kindof] = ACTIONS(7140), + [anon_sym___unused] = ACTIONS(7140), + [anon_sym__Complex] = ACTIONS(7140), + [anon_sym___complex] = ACTIONS(7140), + [anon_sym_IBOutlet] = ACTIONS(7140), + [anon_sym_IBInspectable] = ACTIONS(7140), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7140), + [anon_sym_signed] = ACTIONS(7140), + [anon_sym_unsigned] = ACTIONS(7140), + [anon_sym_long] = ACTIONS(7140), + [anon_sym_short] = ACTIONS(7140), + [sym_primitive_type] = ACTIONS(7140), + [anon_sym_enum] = ACTIONS(7140), + [anon_sym_struct] = ACTIONS(7140), + [anon_sym_union] = ACTIONS(7140), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7140), + [anon_sym_ATend] = ACTIONS(7142), + [sym_method_attribute_specifier] = ACTIONS(7140), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7140), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7140), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7140), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7140), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7140), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7140), + [anon_sym_NS_AVAILABLE] = ACTIONS(7140), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7140), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7140), + [anon_sym_API_AVAILABLE] = ACTIONS(7140), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7140), + [anon_sym_API_DEPRECATED] = ACTIONS(7140), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7140), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7140), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7140), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7140), + [anon_sym___deprecated_msg] = ACTIONS(7140), + [anon_sym___deprecated_enum_msg] = ACTIONS(7140), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7140), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7140), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7140), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7140), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7140), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7140), + [anon_sym_ATsynthesize] = ACTIONS(7142), + [anon_sym_ATdynamic] = ACTIONS(7142), + [anon_sym_NS_ENUM] = ACTIONS(7140), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7140), + [anon_sym_NS_OPTIONS] = ACTIONS(7140), + [anon_sym_typeof] = ACTIONS(7140), + [anon_sym___typeof] = ACTIONS(7140), + [anon_sym___typeof__] = ACTIONS(7140), + [sym_id] = ACTIONS(7140), + [sym_instancetype] = ACTIONS(7140), + [sym_Class] = ACTIONS(7140), + [sym_SEL] = ACTIONS(7140), + [sym_IMP] = ACTIONS(7140), + [sym_BOOL] = ACTIONS(7140), + [sym_auto] = ACTIONS(7140), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3003] = { + [sym_identifier] = ACTIONS(7144), + [anon_sym_COMMA] = ACTIONS(7146), + [anon_sym_RPAREN] = ACTIONS(7146), + [anon_sym_LPAREN2] = ACTIONS(7146), + [anon_sym_DASH] = ACTIONS(7144), + [anon_sym_PLUS] = ACTIONS(7144), + [anon_sym_STAR] = ACTIONS(7144), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_PERCENT] = ACTIONS(7144), + [anon_sym_PIPE_PIPE] = ACTIONS(7146), + [anon_sym_AMP_AMP] = ACTIONS(7146), + [anon_sym_PIPE] = ACTIONS(7144), + [anon_sym_CARET] = ACTIONS(7144), + [anon_sym_AMP] = ACTIONS(7144), + [anon_sym_EQ_EQ] = ACTIONS(7146), + [anon_sym_BANG_EQ] = ACTIONS(7146), + [anon_sym_GT] = ACTIONS(7144), + [anon_sym_GT_EQ] = ACTIONS(7146), + [anon_sym_LT_EQ] = ACTIONS(7146), + [anon_sym_LT] = ACTIONS(7144), + [anon_sym_LT_LT] = ACTIONS(7144), + [anon_sym_GT_GT] = ACTIONS(7144), + [anon_sym_SEMI] = ACTIONS(7146), + [anon_sym___attribute] = ACTIONS(7144), + [anon_sym___attribute__] = ACTIONS(7144), + [anon_sym_RBRACE] = ACTIONS(7146), + [anon_sym_LBRACK] = ACTIONS(7146), + [anon_sym_RBRACK] = ACTIONS(7146), + [anon_sym_EQ] = ACTIONS(7144), + [anon_sym_const] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym_in] = ACTIONS(7144), + [anon_sym_out] = ACTIONS(7144), + [anon_sym_inout] = ACTIONS(7144), + [anon_sym_bycopy] = ACTIONS(7144), + [anon_sym_byref] = ACTIONS(7144), + [anon_sym_oneway] = ACTIONS(7144), + [anon_sym__Nullable] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym__Nullable_result] = ACTIONS(7144), + [anon_sym__Null_unspecified] = ACTIONS(7144), + [anon_sym___autoreleasing] = ACTIONS(7144), + [anon_sym___nullable] = ACTIONS(7144), + [anon_sym___nonnull] = ACTIONS(7144), + [anon_sym___strong] = ACTIONS(7144), + [anon_sym___weak] = ACTIONS(7144), + [anon_sym___bridge] = ACTIONS(7144), + [anon_sym___bridge_transfer] = ACTIONS(7144), + [anon_sym___bridge_retained] = ACTIONS(7144), + [anon_sym___unsafe_unretained] = ACTIONS(7144), + [anon_sym___block] = ACTIONS(7144), + [anon_sym___kindof] = ACTIONS(7144), + [anon_sym___unused] = ACTIONS(7144), + [anon_sym__Complex] = ACTIONS(7144), + [anon_sym___complex] = ACTIONS(7144), + [anon_sym_IBOutlet] = ACTIONS(7144), + [anon_sym_IBInspectable] = ACTIONS(7144), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7144), + [anon_sym_COLON] = ACTIONS(7146), + [anon_sym_QMARK] = ACTIONS(7146), + [anon_sym_STAR_EQ] = ACTIONS(7146), + [anon_sym_SLASH_EQ] = ACTIONS(7146), + [anon_sym_PERCENT_EQ] = ACTIONS(7146), + [anon_sym_PLUS_EQ] = ACTIONS(7146), + [anon_sym_DASH_EQ] = ACTIONS(7146), + [anon_sym_LT_LT_EQ] = ACTIONS(7146), + [anon_sym_GT_GT_EQ] = ACTIONS(7146), + [anon_sym_AMP_EQ] = ACTIONS(7146), + [anon_sym_CARET_EQ] = ACTIONS(7146), + [anon_sym_PIPE_EQ] = ACTIONS(7146), + [anon_sym_DASH_DASH] = ACTIONS(7146), + [anon_sym_PLUS_PLUS] = ACTIONS(7146), + [anon_sym_DOT] = ACTIONS(7146), + [anon_sym_DASH_GT] = ACTIONS(7146), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7144), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7144), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7144), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7144), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7144), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7144), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7144), + [anon_sym_NS_AVAILABLE] = ACTIONS(7144), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7144), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7144), + [anon_sym_API_AVAILABLE] = ACTIONS(7144), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7144), + [anon_sym_API_DEPRECATED] = ACTIONS(7144), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7144), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7144), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7144), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7144), + [anon_sym___deprecated_msg] = ACTIONS(7144), + [anon_sym___deprecated_enum_msg] = ACTIONS(7144), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7144), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7144), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7144), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7144), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7144), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7144), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3004] = { + [sym_identifier] = ACTIONS(7148), + [anon_sym_COMMA] = ACTIONS(7150), + [anon_sym_RPAREN] = ACTIONS(7150), + [anon_sym_LPAREN2] = ACTIONS(7150), + [anon_sym_DASH] = ACTIONS(7148), + [anon_sym_PLUS] = ACTIONS(7148), + [anon_sym_STAR] = ACTIONS(7148), + [anon_sym_SLASH] = ACTIONS(7148), + [anon_sym_PERCENT] = ACTIONS(7148), + [anon_sym_PIPE_PIPE] = ACTIONS(7150), + [anon_sym_AMP_AMP] = ACTIONS(7150), + [anon_sym_PIPE] = ACTIONS(7148), + [anon_sym_CARET] = ACTIONS(7148), + [anon_sym_AMP] = ACTIONS(7148), + [anon_sym_EQ_EQ] = ACTIONS(7150), + [anon_sym_BANG_EQ] = ACTIONS(7150), + [anon_sym_GT] = ACTIONS(7148), + [anon_sym_GT_EQ] = ACTIONS(7150), + [anon_sym_LT_EQ] = ACTIONS(7150), + [anon_sym_LT] = ACTIONS(7148), + [anon_sym_LT_LT] = ACTIONS(7148), + [anon_sym_GT_GT] = ACTIONS(7148), + [anon_sym_SEMI] = ACTIONS(7150), + [anon_sym___attribute] = ACTIONS(7148), + [anon_sym___attribute__] = ACTIONS(7148), + [anon_sym_RBRACE] = ACTIONS(7150), + [anon_sym_LBRACK] = ACTIONS(7150), + [anon_sym_RBRACK] = ACTIONS(7150), + [anon_sym_EQ] = ACTIONS(7148), + [anon_sym_const] = ACTIONS(7148), + [anon_sym_volatile] = ACTIONS(7148), + [anon_sym_restrict] = ACTIONS(7148), + [anon_sym__Atomic] = ACTIONS(7148), + [anon_sym_in] = ACTIONS(7148), + [anon_sym_out] = ACTIONS(7148), + [anon_sym_inout] = ACTIONS(7148), + [anon_sym_bycopy] = ACTIONS(7148), + [anon_sym_byref] = ACTIONS(7148), + [anon_sym_oneway] = ACTIONS(7148), + [anon_sym__Nullable] = ACTIONS(7148), + [anon_sym__Nonnull] = ACTIONS(7148), + [anon_sym__Nullable_result] = ACTIONS(7148), + [anon_sym__Null_unspecified] = ACTIONS(7148), + [anon_sym___autoreleasing] = ACTIONS(7148), + [anon_sym___nullable] = ACTIONS(7148), + [anon_sym___nonnull] = ACTIONS(7148), + [anon_sym___strong] = ACTIONS(7148), + [anon_sym___weak] = ACTIONS(7148), + [anon_sym___bridge] = ACTIONS(7148), + [anon_sym___bridge_transfer] = ACTIONS(7148), + [anon_sym___bridge_retained] = ACTIONS(7148), + [anon_sym___unsafe_unretained] = ACTIONS(7148), + [anon_sym___block] = ACTIONS(7148), + [anon_sym___kindof] = ACTIONS(7148), + [anon_sym___unused] = ACTIONS(7148), + [anon_sym__Complex] = ACTIONS(7148), + [anon_sym___complex] = ACTIONS(7148), + [anon_sym_IBOutlet] = ACTIONS(7148), + [anon_sym_IBInspectable] = ACTIONS(7148), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7148), + [anon_sym_COLON] = ACTIONS(7150), + [anon_sym_QMARK] = ACTIONS(7150), + [anon_sym_STAR_EQ] = ACTIONS(7150), + [anon_sym_SLASH_EQ] = ACTIONS(7150), + [anon_sym_PERCENT_EQ] = ACTIONS(7150), + [anon_sym_PLUS_EQ] = ACTIONS(7150), + [anon_sym_DASH_EQ] = ACTIONS(7150), + [anon_sym_LT_LT_EQ] = ACTIONS(7150), + [anon_sym_GT_GT_EQ] = ACTIONS(7150), + [anon_sym_AMP_EQ] = ACTIONS(7150), + [anon_sym_CARET_EQ] = ACTIONS(7150), + [anon_sym_PIPE_EQ] = ACTIONS(7150), + [anon_sym_DASH_DASH] = ACTIONS(7150), + [anon_sym_PLUS_PLUS] = ACTIONS(7150), + [anon_sym_DOT] = ACTIONS(7150), + [anon_sym_DASH_GT] = ACTIONS(7150), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7148), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7148), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7148), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7148), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7148), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7148), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7148), + [anon_sym_NS_AVAILABLE] = ACTIONS(7148), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7148), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7148), + [anon_sym_API_AVAILABLE] = ACTIONS(7148), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7148), + [anon_sym_API_DEPRECATED] = ACTIONS(7148), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7148), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7148), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7148), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7148), + [anon_sym___deprecated_msg] = ACTIONS(7148), + [anon_sym___deprecated_enum_msg] = ACTIONS(7148), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7148), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7148), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7148), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7148), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7148), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7148), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3005] = { + [sym_identifier] = ACTIONS(1371), + [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_LPAREN2] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1373), + [anon_sym_AMP_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1371), + [anon_sym_CARET] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_EQ_EQ] = ACTIONS(1373), + [anon_sym_BANG_EQ] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1371), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym___attribute] = ACTIONS(1371), + [anon_sym___attribute__] = ACTIONS(1371), + [anon_sym_RBRACE] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_RBRACK] = ACTIONS(1373), + [anon_sym_EQ] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_volatile] = ACTIONS(1371), + [anon_sym_restrict] = ACTIONS(1371), + [anon_sym__Atomic] = ACTIONS(1371), + [anon_sym_in] = ACTIONS(1371), + [anon_sym_out] = ACTIONS(1371), + [anon_sym_inout] = ACTIONS(1371), + [anon_sym_bycopy] = ACTIONS(1371), + [anon_sym_byref] = ACTIONS(1371), + [anon_sym_oneway] = ACTIONS(1371), + [anon_sym__Nullable] = ACTIONS(1371), + [anon_sym__Nonnull] = ACTIONS(1371), + [anon_sym__Nullable_result] = ACTIONS(1371), + [anon_sym__Null_unspecified] = ACTIONS(1371), + [anon_sym___autoreleasing] = ACTIONS(1371), + [anon_sym___nullable] = ACTIONS(1371), + [anon_sym___nonnull] = ACTIONS(1371), + [anon_sym___strong] = ACTIONS(1371), + [anon_sym___weak] = ACTIONS(1371), + [anon_sym___bridge] = ACTIONS(1371), + [anon_sym___bridge_transfer] = ACTIONS(1371), + [anon_sym___bridge_retained] = ACTIONS(1371), + [anon_sym___unsafe_unretained] = ACTIONS(1371), + [anon_sym___block] = ACTIONS(1371), + [anon_sym___kindof] = ACTIONS(1371), + [anon_sym___unused] = ACTIONS(1371), + [anon_sym__Complex] = ACTIONS(1371), + [anon_sym___complex] = ACTIONS(1371), + [anon_sym_IBOutlet] = ACTIONS(1371), + [anon_sym_IBInspectable] = ACTIONS(1371), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1371), + [anon_sym_COLON] = ACTIONS(1373), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_STAR_EQ] = ACTIONS(1373), + [anon_sym_SLASH_EQ] = ACTIONS(1373), + [anon_sym_PERCENT_EQ] = ACTIONS(1373), + [anon_sym_PLUS_EQ] = ACTIONS(1373), + [anon_sym_DASH_EQ] = ACTIONS(1373), + [anon_sym_LT_LT_EQ] = ACTIONS(1373), + [anon_sym_GT_GT_EQ] = ACTIONS(1373), + [anon_sym_AMP_EQ] = ACTIONS(1373), + [anon_sym_CARET_EQ] = ACTIONS(1373), + [anon_sym_PIPE_EQ] = ACTIONS(1373), + [anon_sym_DASH_DASH] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1373), + [anon_sym_DASH_GT] = ACTIONS(1373), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(1371), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1371), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1371), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1371), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1371), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1371), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1371), + [anon_sym_NS_AVAILABLE] = ACTIONS(1371), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1371), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_API_AVAILABLE] = ACTIONS(1371), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1371), + [anon_sym_API_DEPRECATED] = ACTIONS(1371), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1371), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1371), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1371), + [anon_sym___deprecated_msg] = ACTIONS(1371), + [anon_sym___deprecated_enum_msg] = ACTIONS(1371), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1371), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1371), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1371), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1371), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3006] = { + [sym_identifier] = ACTIONS(7152), + [anon_sym_COMMA] = ACTIONS(7154), + [anon_sym_RPAREN] = ACTIONS(7154), + [anon_sym_LPAREN2] = ACTIONS(7154), + [anon_sym_DASH] = ACTIONS(7152), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7152), + [anon_sym_PIPE_PIPE] = ACTIONS(7154), + [anon_sym_AMP_AMP] = ACTIONS(7154), + [anon_sym_PIPE] = ACTIONS(7152), + [anon_sym_CARET] = ACTIONS(7152), + [anon_sym_AMP] = ACTIONS(7152), + [anon_sym_EQ_EQ] = ACTIONS(7154), + [anon_sym_BANG_EQ] = ACTIONS(7154), + [anon_sym_GT] = ACTIONS(7152), + [anon_sym_GT_EQ] = ACTIONS(7154), + [anon_sym_LT_EQ] = ACTIONS(7154), + [anon_sym_LT] = ACTIONS(7152), + [anon_sym_LT_LT] = ACTIONS(7152), + [anon_sym_GT_GT] = ACTIONS(7152), + [anon_sym_SEMI] = ACTIONS(7154), + [anon_sym___attribute] = ACTIONS(7152), + [anon_sym___attribute__] = ACTIONS(7152), + [anon_sym_RBRACE] = ACTIONS(7154), + [anon_sym_LBRACK] = ACTIONS(7154), + [anon_sym_RBRACK] = ACTIONS(7154), + [anon_sym_EQ] = ACTIONS(7152), + [anon_sym_const] = ACTIONS(7152), + [anon_sym_volatile] = ACTIONS(7152), + [anon_sym_restrict] = ACTIONS(7152), + [anon_sym__Atomic] = ACTIONS(7152), + [anon_sym_in] = ACTIONS(7152), + [anon_sym_out] = ACTIONS(7152), + [anon_sym_inout] = ACTIONS(7152), + [anon_sym_bycopy] = ACTIONS(7152), + [anon_sym_byref] = ACTIONS(7152), + [anon_sym_oneway] = ACTIONS(7152), + [anon_sym__Nullable] = ACTIONS(7152), + [anon_sym__Nonnull] = ACTIONS(7152), + [anon_sym__Nullable_result] = ACTIONS(7152), + [anon_sym__Null_unspecified] = ACTIONS(7152), + [anon_sym___autoreleasing] = ACTIONS(7152), + [anon_sym___nullable] = ACTIONS(7152), + [anon_sym___nonnull] = ACTIONS(7152), + [anon_sym___strong] = ACTIONS(7152), + [anon_sym___weak] = ACTIONS(7152), + [anon_sym___bridge] = ACTIONS(7152), + [anon_sym___bridge_transfer] = ACTIONS(7152), + [anon_sym___bridge_retained] = ACTIONS(7152), + [anon_sym___unsafe_unretained] = ACTIONS(7152), + [anon_sym___block] = ACTIONS(7152), + [anon_sym___kindof] = ACTIONS(7152), + [anon_sym___unused] = ACTIONS(7152), + [anon_sym__Complex] = ACTIONS(7152), + [anon_sym___complex] = ACTIONS(7152), + [anon_sym_IBOutlet] = ACTIONS(7152), + [anon_sym_IBInspectable] = ACTIONS(7152), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7152), + [anon_sym_COLON] = ACTIONS(7154), + [anon_sym_QMARK] = ACTIONS(7154), + [anon_sym_STAR_EQ] = ACTIONS(7154), + [anon_sym_SLASH_EQ] = ACTIONS(7154), + [anon_sym_PERCENT_EQ] = ACTIONS(7154), + [anon_sym_PLUS_EQ] = ACTIONS(7154), + [anon_sym_DASH_EQ] = ACTIONS(7154), + [anon_sym_LT_LT_EQ] = ACTIONS(7154), + [anon_sym_GT_GT_EQ] = ACTIONS(7154), + [anon_sym_AMP_EQ] = ACTIONS(7154), + [anon_sym_CARET_EQ] = ACTIONS(7154), + [anon_sym_PIPE_EQ] = ACTIONS(7154), + [anon_sym_DASH_DASH] = ACTIONS(7154), + [anon_sym_PLUS_PLUS] = ACTIONS(7154), + [anon_sym_DOT] = ACTIONS(7154), + [anon_sym_DASH_GT] = ACTIONS(7154), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7152), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7152), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7152), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7152), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7152), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7152), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7152), + [anon_sym_NS_AVAILABLE] = ACTIONS(7152), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7152), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7152), + [anon_sym_API_AVAILABLE] = ACTIONS(7152), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7152), + [anon_sym_API_DEPRECATED] = ACTIONS(7152), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7152), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7152), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7152), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7152), + [anon_sym___deprecated_msg] = ACTIONS(7152), + [anon_sym___deprecated_enum_msg] = ACTIONS(7152), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7152), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7152), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7152), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7152), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7152), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7152), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3007] = { + [sym_identifier] = ACTIONS(7156), + [aux_sym_preproc_def_token1] = ACTIONS(7158), + [anon_sym_DASH] = ACTIONS(7158), + [anon_sym_PLUS] = ACTIONS(7158), + [anon_sym_typedef] = ACTIONS(7156), + [anon_sym_extern] = ACTIONS(7156), + [anon_sym___attribute] = ACTIONS(7156), + [anon_sym___attribute__] = ACTIONS(7156), + [anon_sym___declspec] = ACTIONS(7156), + [anon_sym___cdecl] = ACTIONS(7156), + [anon_sym___clrcall] = ACTIONS(7156), + [anon_sym___stdcall] = ACTIONS(7156), + [anon_sym___fastcall] = ACTIONS(7156), + [anon_sym___thiscall] = ACTIONS(7156), + [anon_sym___vectorcall] = ACTIONS(7156), + [anon_sym_static] = ACTIONS(7156), + [anon_sym_auto] = ACTIONS(7156), + [anon_sym_register] = ACTIONS(7156), + [anon_sym_inline] = ACTIONS(7156), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7156), + [anon_sym_const] = ACTIONS(7156), + [anon_sym_volatile] = ACTIONS(7156), + [anon_sym_restrict] = ACTIONS(7156), + [anon_sym__Atomic] = ACTIONS(7156), + [anon_sym_in] = ACTIONS(7156), + [anon_sym_out] = ACTIONS(7156), + [anon_sym_inout] = ACTIONS(7156), + [anon_sym_bycopy] = ACTIONS(7156), + [anon_sym_byref] = ACTIONS(7156), + [anon_sym_oneway] = ACTIONS(7156), + [anon_sym__Nullable] = ACTIONS(7156), + [anon_sym__Nonnull] = ACTIONS(7156), + [anon_sym__Nullable_result] = ACTIONS(7156), + [anon_sym__Null_unspecified] = ACTIONS(7156), + [anon_sym___autoreleasing] = ACTIONS(7156), + [anon_sym___nullable] = ACTIONS(7156), + [anon_sym___nonnull] = ACTIONS(7156), + [anon_sym___strong] = ACTIONS(7156), + [anon_sym___weak] = ACTIONS(7156), + [anon_sym___bridge] = ACTIONS(7156), + [anon_sym___bridge_transfer] = ACTIONS(7156), + [anon_sym___bridge_retained] = ACTIONS(7156), + [anon_sym___unsafe_unretained] = ACTIONS(7156), + [anon_sym___block] = ACTIONS(7156), + [anon_sym___kindof] = ACTIONS(7156), + [anon_sym___unused] = ACTIONS(7156), + [anon_sym__Complex] = ACTIONS(7156), + [anon_sym___complex] = ACTIONS(7156), + [anon_sym_IBOutlet] = ACTIONS(7156), + [anon_sym_IBInspectable] = ACTIONS(7156), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7156), + [anon_sym_signed] = ACTIONS(7156), + [anon_sym_unsigned] = ACTIONS(7156), + [anon_sym_long] = ACTIONS(7156), + [anon_sym_short] = ACTIONS(7156), + [sym_primitive_type] = ACTIONS(7156), + [anon_sym_enum] = ACTIONS(7156), + [anon_sym_struct] = ACTIONS(7156), + [anon_sym_union] = ACTIONS(7156), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7156), + [anon_sym_ATend] = ACTIONS(7158), + [sym_method_attribute_specifier] = ACTIONS(7156), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7156), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7156), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7156), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7156), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7156), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7156), + [anon_sym_NS_AVAILABLE] = ACTIONS(7156), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7156), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7156), + [anon_sym_API_AVAILABLE] = ACTIONS(7156), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7156), + [anon_sym_API_DEPRECATED] = ACTIONS(7156), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7156), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7156), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7156), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7156), + [anon_sym___deprecated_msg] = ACTIONS(7156), + [anon_sym___deprecated_enum_msg] = ACTIONS(7156), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7156), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7156), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7156), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7156), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7156), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7156), + [anon_sym_ATsynthesize] = ACTIONS(7158), + [anon_sym_ATdynamic] = ACTIONS(7158), + [anon_sym_NS_ENUM] = ACTIONS(7156), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7156), + [anon_sym_NS_OPTIONS] = ACTIONS(7156), + [anon_sym_typeof] = ACTIONS(7156), + [anon_sym___typeof] = ACTIONS(7156), + [anon_sym___typeof__] = ACTIONS(7156), + [sym_id] = ACTIONS(7156), + [sym_instancetype] = ACTIONS(7156), + [sym_Class] = ACTIONS(7156), + [sym_SEL] = ACTIONS(7156), + [sym_IMP] = ACTIONS(7156), + [sym_BOOL] = ACTIONS(7156), + [sym_auto] = ACTIONS(7156), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3008] = { + [sym_identifier] = ACTIONS(7160), + [anon_sym_COMMA] = ACTIONS(7162), + [anon_sym_RPAREN] = ACTIONS(7162), + [anon_sym_LPAREN2] = ACTIONS(7162), + [anon_sym_DASH] = ACTIONS(7160), + [anon_sym_PLUS] = ACTIONS(7160), + [anon_sym_STAR] = ACTIONS(7160), + [anon_sym_SLASH] = ACTIONS(7160), + [anon_sym_PERCENT] = ACTIONS(7160), + [anon_sym_PIPE_PIPE] = ACTIONS(7162), + [anon_sym_AMP_AMP] = ACTIONS(7162), + [anon_sym_PIPE] = ACTIONS(7160), + [anon_sym_CARET] = ACTIONS(7160), + [anon_sym_AMP] = ACTIONS(7160), + [anon_sym_EQ_EQ] = ACTIONS(7162), + [anon_sym_BANG_EQ] = ACTIONS(7162), + [anon_sym_GT] = ACTIONS(7160), + [anon_sym_GT_EQ] = ACTIONS(7162), + [anon_sym_LT_EQ] = ACTIONS(7162), + [anon_sym_LT] = ACTIONS(7160), + [anon_sym_LT_LT] = ACTIONS(7160), + [anon_sym_GT_GT] = ACTIONS(7160), + [anon_sym_SEMI] = ACTIONS(7162), + [anon_sym___attribute] = ACTIONS(7160), + [anon_sym___attribute__] = ACTIONS(7160), + [anon_sym_RBRACE] = ACTIONS(7162), + [anon_sym_LBRACK] = ACTIONS(7162), + [anon_sym_RBRACK] = ACTIONS(7162), + [anon_sym_EQ] = ACTIONS(7160), + [anon_sym_const] = ACTIONS(7160), + [anon_sym_volatile] = ACTIONS(7160), + [anon_sym_restrict] = ACTIONS(7160), + [anon_sym__Atomic] = ACTIONS(7160), + [anon_sym_in] = ACTIONS(7160), + [anon_sym_out] = ACTIONS(7160), + [anon_sym_inout] = ACTIONS(7160), + [anon_sym_bycopy] = ACTIONS(7160), + [anon_sym_byref] = ACTIONS(7160), + [anon_sym_oneway] = ACTIONS(7160), + [anon_sym__Nullable] = ACTIONS(7160), + [anon_sym__Nonnull] = ACTIONS(7160), + [anon_sym__Nullable_result] = ACTIONS(7160), + [anon_sym__Null_unspecified] = ACTIONS(7160), + [anon_sym___autoreleasing] = ACTIONS(7160), + [anon_sym___nullable] = ACTIONS(7160), + [anon_sym___nonnull] = ACTIONS(7160), + [anon_sym___strong] = ACTIONS(7160), + [anon_sym___weak] = ACTIONS(7160), + [anon_sym___bridge] = ACTIONS(7160), + [anon_sym___bridge_transfer] = ACTIONS(7160), + [anon_sym___bridge_retained] = ACTIONS(7160), + [anon_sym___unsafe_unretained] = ACTIONS(7160), + [anon_sym___block] = ACTIONS(7160), + [anon_sym___kindof] = ACTIONS(7160), + [anon_sym___unused] = ACTIONS(7160), + [anon_sym__Complex] = ACTIONS(7160), + [anon_sym___complex] = ACTIONS(7160), + [anon_sym_IBOutlet] = ACTIONS(7160), + [anon_sym_IBInspectable] = ACTIONS(7160), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7160), + [anon_sym_COLON] = ACTIONS(7162), + [anon_sym_QMARK] = ACTIONS(7162), + [anon_sym_STAR_EQ] = ACTIONS(7162), + [anon_sym_SLASH_EQ] = ACTIONS(7162), + [anon_sym_PERCENT_EQ] = ACTIONS(7162), + [anon_sym_PLUS_EQ] = ACTIONS(7162), + [anon_sym_DASH_EQ] = ACTIONS(7162), + [anon_sym_LT_LT_EQ] = ACTIONS(7162), + [anon_sym_GT_GT_EQ] = ACTIONS(7162), + [anon_sym_AMP_EQ] = ACTIONS(7162), + [anon_sym_CARET_EQ] = ACTIONS(7162), + [anon_sym_PIPE_EQ] = ACTIONS(7162), + [anon_sym_DASH_DASH] = ACTIONS(7162), + [anon_sym_PLUS_PLUS] = ACTIONS(7162), + [anon_sym_DOT] = ACTIONS(7162), + [anon_sym_DASH_GT] = ACTIONS(7162), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7160), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7160), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7160), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7160), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7160), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7160), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7160), + [anon_sym_NS_AVAILABLE] = ACTIONS(7160), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7160), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7160), + [anon_sym_API_AVAILABLE] = ACTIONS(7160), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7160), + [anon_sym_API_DEPRECATED] = ACTIONS(7160), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7160), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7160), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7160), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7160), + [anon_sym___deprecated_msg] = ACTIONS(7160), + [anon_sym___deprecated_enum_msg] = ACTIONS(7160), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7160), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7160), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7160), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7160), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7160), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7160), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3009] = { + [sym_identifier] = ACTIONS(7164), + [aux_sym_preproc_def_token1] = ACTIONS(7166), + [anon_sym_DASH] = ACTIONS(7166), + [anon_sym_PLUS] = ACTIONS(7166), + [anon_sym_typedef] = ACTIONS(7164), + [anon_sym_extern] = ACTIONS(7164), + [anon_sym___attribute] = ACTIONS(7164), + [anon_sym___attribute__] = ACTIONS(7164), + [anon_sym___declspec] = ACTIONS(7164), + [anon_sym___cdecl] = ACTIONS(7164), + [anon_sym___clrcall] = ACTIONS(7164), + [anon_sym___stdcall] = ACTIONS(7164), + [anon_sym___fastcall] = ACTIONS(7164), + [anon_sym___thiscall] = ACTIONS(7164), + [anon_sym___vectorcall] = ACTIONS(7164), + [anon_sym_static] = ACTIONS(7164), + [anon_sym_auto] = ACTIONS(7164), + [anon_sym_register] = ACTIONS(7164), + [anon_sym_inline] = ACTIONS(7164), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7164), + [anon_sym_const] = ACTIONS(7164), + [anon_sym_volatile] = ACTIONS(7164), + [anon_sym_restrict] = ACTIONS(7164), + [anon_sym__Atomic] = ACTIONS(7164), + [anon_sym_in] = ACTIONS(7164), + [anon_sym_out] = ACTIONS(7164), + [anon_sym_inout] = ACTIONS(7164), + [anon_sym_bycopy] = ACTIONS(7164), + [anon_sym_byref] = ACTIONS(7164), + [anon_sym_oneway] = ACTIONS(7164), + [anon_sym__Nullable] = ACTIONS(7164), + [anon_sym__Nonnull] = ACTIONS(7164), + [anon_sym__Nullable_result] = ACTIONS(7164), + [anon_sym__Null_unspecified] = ACTIONS(7164), + [anon_sym___autoreleasing] = ACTIONS(7164), + [anon_sym___nullable] = ACTIONS(7164), + [anon_sym___nonnull] = ACTIONS(7164), + [anon_sym___strong] = ACTIONS(7164), + [anon_sym___weak] = ACTIONS(7164), + [anon_sym___bridge] = ACTIONS(7164), + [anon_sym___bridge_transfer] = ACTIONS(7164), + [anon_sym___bridge_retained] = ACTIONS(7164), + [anon_sym___unsafe_unretained] = ACTIONS(7164), + [anon_sym___block] = ACTIONS(7164), + [anon_sym___kindof] = ACTIONS(7164), + [anon_sym___unused] = ACTIONS(7164), + [anon_sym__Complex] = ACTIONS(7164), + [anon_sym___complex] = ACTIONS(7164), + [anon_sym_IBOutlet] = ACTIONS(7164), + [anon_sym_IBInspectable] = ACTIONS(7164), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7164), + [anon_sym_signed] = ACTIONS(7164), + [anon_sym_unsigned] = ACTIONS(7164), + [anon_sym_long] = ACTIONS(7164), + [anon_sym_short] = ACTIONS(7164), + [sym_primitive_type] = ACTIONS(7164), + [anon_sym_enum] = ACTIONS(7164), + [anon_sym_struct] = ACTIONS(7164), + [anon_sym_union] = ACTIONS(7164), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7164), + [anon_sym_ATend] = ACTIONS(7166), + [sym_method_attribute_specifier] = ACTIONS(7164), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7164), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7164), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7164), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7164), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7164), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7164), + [anon_sym_NS_AVAILABLE] = ACTIONS(7164), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7164), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7164), + [anon_sym_API_AVAILABLE] = ACTIONS(7164), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7164), + [anon_sym_API_DEPRECATED] = ACTIONS(7164), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7164), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7164), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7164), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7164), + [anon_sym___deprecated_msg] = ACTIONS(7164), + [anon_sym___deprecated_enum_msg] = ACTIONS(7164), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7164), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7164), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7164), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7164), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7164), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7164), + [anon_sym_ATsynthesize] = ACTIONS(7166), + [anon_sym_ATdynamic] = ACTIONS(7166), + [anon_sym_NS_ENUM] = ACTIONS(7164), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7164), + [anon_sym_NS_OPTIONS] = ACTIONS(7164), + [anon_sym_typeof] = ACTIONS(7164), + [anon_sym___typeof] = ACTIONS(7164), + [anon_sym___typeof__] = ACTIONS(7164), + [sym_id] = ACTIONS(7164), + [sym_instancetype] = ACTIONS(7164), + [sym_Class] = ACTIONS(7164), + [sym_SEL] = ACTIONS(7164), + [sym_IMP] = ACTIONS(7164), + [sym_BOOL] = ACTIONS(7164), + [sym_auto] = ACTIONS(7164), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3010] = { + [sym_identifier] = ACTIONS(7168), + [aux_sym_preproc_def_token1] = ACTIONS(7170), + [anon_sym_DASH] = ACTIONS(7170), + [anon_sym_PLUS] = ACTIONS(7170), + [anon_sym_typedef] = ACTIONS(7168), + [anon_sym_extern] = ACTIONS(7168), + [anon_sym___attribute] = ACTIONS(7168), + [anon_sym___attribute__] = ACTIONS(7168), + [anon_sym___declspec] = ACTIONS(7168), + [anon_sym___cdecl] = ACTIONS(7168), + [anon_sym___clrcall] = ACTIONS(7168), + [anon_sym___stdcall] = ACTIONS(7168), + [anon_sym___fastcall] = ACTIONS(7168), + [anon_sym___thiscall] = ACTIONS(7168), + [anon_sym___vectorcall] = ACTIONS(7168), + [anon_sym_static] = ACTIONS(7168), + [anon_sym_auto] = ACTIONS(7168), + [anon_sym_register] = ACTIONS(7168), + [anon_sym_inline] = ACTIONS(7168), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7168), + [anon_sym_const] = ACTIONS(7168), + [anon_sym_volatile] = ACTIONS(7168), + [anon_sym_restrict] = ACTIONS(7168), + [anon_sym__Atomic] = ACTIONS(7168), + [anon_sym_in] = ACTIONS(7168), + [anon_sym_out] = ACTIONS(7168), + [anon_sym_inout] = ACTIONS(7168), + [anon_sym_bycopy] = ACTIONS(7168), + [anon_sym_byref] = ACTIONS(7168), + [anon_sym_oneway] = ACTIONS(7168), + [anon_sym__Nullable] = ACTIONS(7168), + [anon_sym__Nonnull] = ACTIONS(7168), + [anon_sym__Nullable_result] = ACTIONS(7168), + [anon_sym__Null_unspecified] = ACTIONS(7168), + [anon_sym___autoreleasing] = ACTIONS(7168), + [anon_sym___nullable] = ACTIONS(7168), + [anon_sym___nonnull] = ACTIONS(7168), + [anon_sym___strong] = ACTIONS(7168), + [anon_sym___weak] = ACTIONS(7168), + [anon_sym___bridge] = ACTIONS(7168), + [anon_sym___bridge_transfer] = ACTIONS(7168), + [anon_sym___bridge_retained] = ACTIONS(7168), + [anon_sym___unsafe_unretained] = ACTIONS(7168), + [anon_sym___block] = ACTIONS(7168), + [anon_sym___kindof] = ACTIONS(7168), + [anon_sym___unused] = ACTIONS(7168), + [anon_sym__Complex] = ACTIONS(7168), + [anon_sym___complex] = ACTIONS(7168), + [anon_sym_IBOutlet] = ACTIONS(7168), + [anon_sym_IBInspectable] = ACTIONS(7168), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7168), + [anon_sym_signed] = ACTIONS(7168), + [anon_sym_unsigned] = ACTIONS(7168), + [anon_sym_long] = ACTIONS(7168), + [anon_sym_short] = ACTIONS(7168), + [sym_primitive_type] = ACTIONS(7168), + [anon_sym_enum] = ACTIONS(7168), + [anon_sym_struct] = ACTIONS(7168), + [anon_sym_union] = ACTIONS(7168), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7168), + [anon_sym_ATend] = ACTIONS(7170), + [sym_method_attribute_specifier] = ACTIONS(7168), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7168), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7168), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7168), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7168), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7168), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7168), + [anon_sym_NS_AVAILABLE] = ACTIONS(7168), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7168), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7168), + [anon_sym_API_AVAILABLE] = ACTIONS(7168), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7168), + [anon_sym_API_DEPRECATED] = ACTIONS(7168), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7168), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7168), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7168), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7168), + [anon_sym___deprecated_msg] = ACTIONS(7168), + [anon_sym___deprecated_enum_msg] = ACTIONS(7168), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7168), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7168), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7168), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7168), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7168), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7168), + [anon_sym_ATsynthesize] = ACTIONS(7170), + [anon_sym_ATdynamic] = ACTIONS(7170), + [anon_sym_NS_ENUM] = ACTIONS(7168), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7168), + [anon_sym_NS_OPTIONS] = ACTIONS(7168), + [anon_sym_typeof] = ACTIONS(7168), + [anon_sym___typeof] = ACTIONS(7168), + [anon_sym___typeof__] = ACTIONS(7168), + [sym_id] = ACTIONS(7168), + [sym_instancetype] = ACTIONS(7168), + [sym_Class] = ACTIONS(7168), + [sym_SEL] = ACTIONS(7168), + [sym_IMP] = ACTIONS(7168), + [sym_BOOL] = ACTIONS(7168), + [sym_auto] = ACTIONS(7168), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3011] = { + [sym_identifier] = ACTIONS(7172), + [aux_sym_preproc_def_token1] = ACTIONS(7174), + [anon_sym_DASH] = ACTIONS(7174), + [anon_sym_PLUS] = ACTIONS(7174), + [anon_sym_typedef] = ACTIONS(7172), + [anon_sym_extern] = ACTIONS(7172), + [anon_sym___attribute] = ACTIONS(7172), + [anon_sym___attribute__] = ACTIONS(7172), + [anon_sym___declspec] = ACTIONS(7172), + [anon_sym___cdecl] = ACTIONS(7172), + [anon_sym___clrcall] = ACTIONS(7172), + [anon_sym___stdcall] = ACTIONS(7172), + [anon_sym___fastcall] = ACTIONS(7172), + [anon_sym___thiscall] = ACTIONS(7172), + [anon_sym___vectorcall] = ACTIONS(7172), + [anon_sym_static] = ACTIONS(7172), + [anon_sym_auto] = ACTIONS(7172), + [anon_sym_register] = ACTIONS(7172), + [anon_sym_inline] = ACTIONS(7172), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7172), + [anon_sym_const] = ACTIONS(7172), + [anon_sym_volatile] = ACTIONS(7172), + [anon_sym_restrict] = ACTIONS(7172), + [anon_sym__Atomic] = ACTIONS(7172), + [anon_sym_in] = ACTIONS(7172), + [anon_sym_out] = ACTIONS(7172), + [anon_sym_inout] = ACTIONS(7172), + [anon_sym_bycopy] = ACTIONS(7172), + [anon_sym_byref] = ACTIONS(7172), + [anon_sym_oneway] = ACTIONS(7172), + [anon_sym__Nullable] = ACTIONS(7172), + [anon_sym__Nonnull] = ACTIONS(7172), + [anon_sym__Nullable_result] = ACTIONS(7172), + [anon_sym__Null_unspecified] = ACTIONS(7172), + [anon_sym___autoreleasing] = ACTIONS(7172), + [anon_sym___nullable] = ACTIONS(7172), + [anon_sym___nonnull] = ACTIONS(7172), + [anon_sym___strong] = ACTIONS(7172), + [anon_sym___weak] = ACTIONS(7172), + [anon_sym___bridge] = ACTIONS(7172), + [anon_sym___bridge_transfer] = ACTIONS(7172), + [anon_sym___bridge_retained] = ACTIONS(7172), + [anon_sym___unsafe_unretained] = ACTIONS(7172), + [anon_sym___block] = ACTIONS(7172), + [anon_sym___kindof] = ACTIONS(7172), + [anon_sym___unused] = ACTIONS(7172), + [anon_sym__Complex] = ACTIONS(7172), + [anon_sym___complex] = ACTIONS(7172), + [anon_sym_IBOutlet] = ACTIONS(7172), + [anon_sym_IBInspectable] = ACTIONS(7172), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7172), + [anon_sym_signed] = ACTIONS(7172), + [anon_sym_unsigned] = ACTIONS(7172), + [anon_sym_long] = ACTIONS(7172), + [anon_sym_short] = ACTIONS(7172), + [sym_primitive_type] = ACTIONS(7172), + [anon_sym_enum] = ACTIONS(7172), + [anon_sym_struct] = ACTIONS(7172), + [anon_sym_union] = ACTIONS(7172), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7172), + [anon_sym_ATend] = ACTIONS(7174), + [sym_method_attribute_specifier] = ACTIONS(7172), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7172), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7172), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7172), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7172), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7172), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7172), + [anon_sym_NS_AVAILABLE] = ACTIONS(7172), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7172), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7172), + [anon_sym_API_AVAILABLE] = ACTIONS(7172), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7172), + [anon_sym_API_DEPRECATED] = ACTIONS(7172), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7172), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7172), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7172), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7172), + [anon_sym___deprecated_msg] = ACTIONS(7172), + [anon_sym___deprecated_enum_msg] = ACTIONS(7172), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7172), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7172), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7172), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7172), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7172), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7172), + [anon_sym_ATsynthesize] = ACTIONS(7174), + [anon_sym_ATdynamic] = ACTIONS(7174), + [anon_sym_NS_ENUM] = ACTIONS(7172), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7172), + [anon_sym_NS_OPTIONS] = ACTIONS(7172), + [anon_sym_typeof] = ACTIONS(7172), + [anon_sym___typeof] = ACTIONS(7172), + [anon_sym___typeof__] = ACTIONS(7172), + [sym_id] = ACTIONS(7172), + [sym_instancetype] = ACTIONS(7172), + [sym_Class] = ACTIONS(7172), + [sym_SEL] = ACTIONS(7172), + [sym_IMP] = ACTIONS(7172), + [sym_BOOL] = ACTIONS(7172), + [sym_auto] = ACTIONS(7172), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3012] = { + [sym_identifier] = ACTIONS(7176), + [anon_sym_COMMA] = ACTIONS(7178), + [anon_sym_RPAREN] = ACTIONS(7178), + [anon_sym_LPAREN2] = ACTIONS(7178), + [anon_sym_DASH] = ACTIONS(7176), + [anon_sym_PLUS] = ACTIONS(7176), + [anon_sym_STAR] = ACTIONS(7176), + [anon_sym_SLASH] = ACTIONS(7176), + [anon_sym_PERCENT] = ACTIONS(7176), + [anon_sym_PIPE_PIPE] = ACTIONS(7178), + [anon_sym_AMP_AMP] = ACTIONS(7178), + [anon_sym_PIPE] = ACTIONS(7176), + [anon_sym_CARET] = ACTIONS(7176), + [anon_sym_AMP] = ACTIONS(7176), + [anon_sym_EQ_EQ] = ACTIONS(7178), + [anon_sym_BANG_EQ] = ACTIONS(7178), + [anon_sym_GT] = ACTIONS(7176), + [anon_sym_GT_EQ] = ACTIONS(7178), + [anon_sym_LT_EQ] = ACTIONS(7178), + [anon_sym_LT] = ACTIONS(7176), + [anon_sym_LT_LT] = ACTIONS(7176), + [anon_sym_GT_GT] = ACTIONS(7176), + [anon_sym_SEMI] = ACTIONS(7178), + [anon_sym___attribute] = ACTIONS(7176), + [anon_sym___attribute__] = ACTIONS(7176), + [anon_sym_RBRACE] = ACTIONS(7178), + [anon_sym_LBRACK] = ACTIONS(7178), + [anon_sym_RBRACK] = ACTIONS(7178), + [anon_sym_EQ] = ACTIONS(7176), + [anon_sym_const] = ACTIONS(7176), + [anon_sym_volatile] = ACTIONS(7176), + [anon_sym_restrict] = ACTIONS(7176), + [anon_sym__Atomic] = ACTIONS(7176), + [anon_sym_in] = ACTIONS(7176), + [anon_sym_out] = ACTIONS(7176), + [anon_sym_inout] = ACTIONS(7176), + [anon_sym_bycopy] = ACTIONS(7176), + [anon_sym_byref] = ACTIONS(7176), + [anon_sym_oneway] = ACTIONS(7176), + [anon_sym__Nullable] = ACTIONS(7176), + [anon_sym__Nonnull] = ACTIONS(7176), + [anon_sym__Nullable_result] = ACTIONS(7176), + [anon_sym__Null_unspecified] = ACTIONS(7176), + [anon_sym___autoreleasing] = ACTIONS(7176), + [anon_sym___nullable] = ACTIONS(7176), + [anon_sym___nonnull] = ACTIONS(7176), + [anon_sym___strong] = ACTIONS(7176), + [anon_sym___weak] = ACTIONS(7176), + [anon_sym___bridge] = ACTIONS(7176), + [anon_sym___bridge_transfer] = ACTIONS(7176), + [anon_sym___bridge_retained] = ACTIONS(7176), + [anon_sym___unsafe_unretained] = ACTIONS(7176), + [anon_sym___block] = ACTIONS(7176), + [anon_sym___kindof] = ACTIONS(7176), + [anon_sym___unused] = ACTIONS(7176), + [anon_sym__Complex] = ACTIONS(7176), + [anon_sym___complex] = ACTIONS(7176), + [anon_sym_IBOutlet] = ACTIONS(7176), + [anon_sym_IBInspectable] = ACTIONS(7176), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7176), + [anon_sym_COLON] = ACTIONS(7178), + [anon_sym_QMARK] = ACTIONS(7178), + [anon_sym_STAR_EQ] = ACTIONS(7178), + [anon_sym_SLASH_EQ] = ACTIONS(7178), + [anon_sym_PERCENT_EQ] = ACTIONS(7178), + [anon_sym_PLUS_EQ] = ACTIONS(7178), + [anon_sym_DASH_EQ] = ACTIONS(7178), + [anon_sym_LT_LT_EQ] = ACTIONS(7178), + [anon_sym_GT_GT_EQ] = ACTIONS(7178), + [anon_sym_AMP_EQ] = ACTIONS(7178), + [anon_sym_CARET_EQ] = ACTIONS(7178), + [anon_sym_PIPE_EQ] = ACTIONS(7178), + [anon_sym_DASH_DASH] = ACTIONS(7178), + [anon_sym_PLUS_PLUS] = ACTIONS(7178), + [anon_sym_DOT] = ACTIONS(7178), + [anon_sym_DASH_GT] = ACTIONS(7178), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7176), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7176), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7176), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7176), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7176), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7176), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7176), + [anon_sym_NS_AVAILABLE] = ACTIONS(7176), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7176), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7176), + [anon_sym_API_AVAILABLE] = ACTIONS(7176), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7176), + [anon_sym_API_DEPRECATED] = ACTIONS(7176), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7176), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7176), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7176), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7176), + [anon_sym___deprecated_msg] = ACTIONS(7176), + [anon_sym___deprecated_enum_msg] = ACTIONS(7176), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7176), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7176), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7176), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7176), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7176), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7176), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3013] = { + [sym_identifier] = ACTIONS(6777), + [anon_sym_COMMA] = ACTIONS(6779), + [anon_sym_RPAREN] = ACTIONS(6779), + [anon_sym_LPAREN2] = ACTIONS(6779), + [anon_sym_DASH] = ACTIONS(6777), + [anon_sym_PLUS] = ACTIONS(6777), + [anon_sym_STAR] = ACTIONS(6777), + [anon_sym_SLASH] = ACTIONS(6777), + [anon_sym_PERCENT] = ACTIONS(6777), + [anon_sym_PIPE_PIPE] = ACTIONS(6779), + [anon_sym_AMP_AMP] = ACTIONS(6779), + [anon_sym_PIPE] = ACTIONS(6777), + [anon_sym_CARET] = ACTIONS(6777), + [anon_sym_AMP] = ACTIONS(6777), + [anon_sym_EQ_EQ] = ACTIONS(6779), + [anon_sym_BANG_EQ] = ACTIONS(6779), + [anon_sym_GT] = ACTIONS(6777), + [anon_sym_GT_EQ] = ACTIONS(6779), + [anon_sym_LT_EQ] = ACTIONS(6779), + [anon_sym_LT] = ACTIONS(6777), + [anon_sym_LT_LT] = ACTIONS(6777), + [anon_sym_GT_GT] = ACTIONS(6777), + [anon_sym_SEMI] = ACTIONS(6779), + [anon_sym___attribute] = ACTIONS(6777), + [anon_sym___attribute__] = ACTIONS(6777), + [anon_sym_RBRACE] = ACTIONS(6779), + [anon_sym_LBRACK] = ACTIONS(6779), + [anon_sym_RBRACK] = ACTIONS(6779), + [anon_sym_EQ] = ACTIONS(6828), + [anon_sym_const] = ACTIONS(6777), + [anon_sym_volatile] = ACTIONS(6777), + [anon_sym_restrict] = ACTIONS(6777), + [anon_sym__Atomic] = ACTIONS(6777), + [anon_sym_in] = ACTIONS(6777), + [anon_sym_out] = ACTIONS(6777), + [anon_sym_inout] = ACTIONS(6777), + [anon_sym_bycopy] = ACTIONS(6777), + [anon_sym_byref] = ACTIONS(6777), + [anon_sym_oneway] = ACTIONS(6777), + [anon_sym__Nullable] = ACTIONS(6777), + [anon_sym__Nonnull] = ACTIONS(6777), + [anon_sym__Nullable_result] = ACTIONS(6777), + [anon_sym__Null_unspecified] = ACTIONS(6777), + [anon_sym___autoreleasing] = ACTIONS(6777), + [anon_sym___nullable] = ACTIONS(6777), + [anon_sym___nonnull] = ACTIONS(6777), + [anon_sym___strong] = ACTIONS(6777), + [anon_sym___weak] = ACTIONS(6777), + [anon_sym___bridge] = ACTIONS(6777), + [anon_sym___bridge_transfer] = ACTIONS(6777), + [anon_sym___bridge_retained] = ACTIONS(6777), + [anon_sym___unsafe_unretained] = ACTIONS(6777), + [anon_sym___block] = ACTIONS(6777), + [anon_sym___kindof] = ACTIONS(6777), + [anon_sym___unused] = ACTIONS(6777), + [anon_sym__Complex] = ACTIONS(6777), + [anon_sym___complex] = ACTIONS(6777), + [anon_sym_IBOutlet] = ACTIONS(6777), + [anon_sym_IBInspectable] = ACTIONS(6777), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6777), + [anon_sym_COLON] = ACTIONS(6779), + [anon_sym_QMARK] = ACTIONS(6779), + [anon_sym_STAR_EQ] = ACTIONS(6832), + [anon_sym_SLASH_EQ] = ACTIONS(6832), + [anon_sym_PERCENT_EQ] = ACTIONS(6832), + [anon_sym_PLUS_EQ] = ACTIONS(6832), + [anon_sym_DASH_EQ] = ACTIONS(6832), + [anon_sym_LT_LT_EQ] = ACTIONS(6832), + [anon_sym_GT_GT_EQ] = ACTIONS(6832), + [anon_sym_AMP_EQ] = ACTIONS(6832), + [anon_sym_CARET_EQ] = ACTIONS(6832), + [anon_sym_PIPE_EQ] = ACTIONS(6832), + [anon_sym_DASH_DASH] = ACTIONS(6779), + [anon_sym_PLUS_PLUS] = ACTIONS(6779), + [anon_sym_DOT] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(6779), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6777), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6777), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6777), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6777), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6777), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6777), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6777), + [anon_sym_NS_AVAILABLE] = ACTIONS(6777), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6777), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_API_AVAILABLE] = ACTIONS(6777), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6777), + [anon_sym_API_DEPRECATED] = ACTIONS(6777), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6777), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6777), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6777), + [anon_sym___deprecated_msg] = ACTIONS(6777), + [anon_sym___deprecated_enum_msg] = ACTIONS(6777), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6777), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6777), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6777), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6777), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3014] = { + [sym_identifier] = ACTIONS(7180), + [aux_sym_preproc_def_token1] = ACTIONS(7182), + [anon_sym_DASH] = ACTIONS(7182), + [anon_sym_PLUS] = ACTIONS(7182), + [anon_sym_typedef] = ACTIONS(7180), + [anon_sym_extern] = ACTIONS(7180), + [anon_sym___attribute] = ACTIONS(7180), + [anon_sym___attribute__] = ACTIONS(7180), + [anon_sym___declspec] = ACTIONS(7180), + [anon_sym___cdecl] = ACTIONS(7180), + [anon_sym___clrcall] = ACTIONS(7180), + [anon_sym___stdcall] = ACTIONS(7180), + [anon_sym___fastcall] = ACTIONS(7180), + [anon_sym___thiscall] = ACTIONS(7180), + [anon_sym___vectorcall] = ACTIONS(7180), + [anon_sym_static] = ACTIONS(7180), + [anon_sym_auto] = ACTIONS(7180), + [anon_sym_register] = ACTIONS(7180), + [anon_sym_inline] = ACTIONS(7180), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7180), + [anon_sym_const] = ACTIONS(7180), + [anon_sym_volatile] = ACTIONS(7180), + [anon_sym_restrict] = ACTIONS(7180), + [anon_sym__Atomic] = ACTIONS(7180), + [anon_sym_in] = ACTIONS(7180), + [anon_sym_out] = ACTIONS(7180), + [anon_sym_inout] = ACTIONS(7180), + [anon_sym_bycopy] = ACTIONS(7180), + [anon_sym_byref] = ACTIONS(7180), + [anon_sym_oneway] = ACTIONS(7180), + [anon_sym__Nullable] = ACTIONS(7180), + [anon_sym__Nonnull] = ACTIONS(7180), + [anon_sym__Nullable_result] = ACTIONS(7180), + [anon_sym__Null_unspecified] = ACTIONS(7180), + [anon_sym___autoreleasing] = ACTIONS(7180), + [anon_sym___nullable] = ACTIONS(7180), + [anon_sym___nonnull] = ACTIONS(7180), + [anon_sym___strong] = ACTIONS(7180), + [anon_sym___weak] = ACTIONS(7180), + [anon_sym___bridge] = ACTIONS(7180), + [anon_sym___bridge_transfer] = ACTIONS(7180), + [anon_sym___bridge_retained] = ACTIONS(7180), + [anon_sym___unsafe_unretained] = ACTIONS(7180), + [anon_sym___block] = ACTIONS(7180), + [anon_sym___kindof] = ACTIONS(7180), + [anon_sym___unused] = ACTIONS(7180), + [anon_sym__Complex] = ACTIONS(7180), + [anon_sym___complex] = ACTIONS(7180), + [anon_sym_IBOutlet] = ACTIONS(7180), + [anon_sym_IBInspectable] = ACTIONS(7180), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7180), + [anon_sym_signed] = ACTIONS(7180), + [anon_sym_unsigned] = ACTIONS(7180), + [anon_sym_long] = ACTIONS(7180), + [anon_sym_short] = ACTIONS(7180), + [sym_primitive_type] = ACTIONS(7180), + [anon_sym_enum] = ACTIONS(7180), + [anon_sym_struct] = ACTIONS(7180), + [anon_sym_union] = ACTIONS(7180), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7180), + [anon_sym_ATend] = ACTIONS(7182), + [sym_method_attribute_specifier] = ACTIONS(7180), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7180), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7180), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7180), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7180), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7180), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7180), + [anon_sym_NS_AVAILABLE] = ACTIONS(7180), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7180), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7180), + [anon_sym_API_AVAILABLE] = ACTIONS(7180), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7180), + [anon_sym_API_DEPRECATED] = ACTIONS(7180), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7180), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7180), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7180), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7180), + [anon_sym___deprecated_msg] = ACTIONS(7180), + [anon_sym___deprecated_enum_msg] = ACTIONS(7180), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7180), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7180), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7180), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7180), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7180), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7180), + [anon_sym_ATsynthesize] = ACTIONS(7182), + [anon_sym_ATdynamic] = ACTIONS(7182), + [anon_sym_NS_ENUM] = ACTIONS(7180), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7180), + [anon_sym_NS_OPTIONS] = ACTIONS(7180), + [anon_sym_typeof] = ACTIONS(7180), + [anon_sym___typeof] = ACTIONS(7180), + [anon_sym___typeof__] = ACTIONS(7180), + [sym_id] = ACTIONS(7180), + [sym_instancetype] = ACTIONS(7180), + [sym_Class] = ACTIONS(7180), + [sym_SEL] = ACTIONS(7180), + [sym_IMP] = ACTIONS(7180), + [sym_BOOL] = ACTIONS(7180), + [sym_auto] = ACTIONS(7180), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3015] = { + [sym_identifier] = ACTIONS(7184), + [anon_sym_COMMA] = ACTIONS(7186), + [anon_sym_RPAREN] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_DASH] = ACTIONS(7184), + [anon_sym_PLUS] = ACTIONS(7184), + [anon_sym_STAR] = ACTIONS(7184), + [anon_sym_SLASH] = ACTIONS(7184), + [anon_sym_PERCENT] = ACTIONS(7184), + [anon_sym_PIPE_PIPE] = ACTIONS(7186), + [anon_sym_AMP_AMP] = ACTIONS(7186), + [anon_sym_PIPE] = ACTIONS(7184), + [anon_sym_CARET] = ACTIONS(7184), + [anon_sym_AMP] = ACTIONS(7184), + [anon_sym_EQ_EQ] = ACTIONS(7186), + [anon_sym_BANG_EQ] = ACTIONS(7186), + [anon_sym_GT] = ACTIONS(7184), + [anon_sym_GT_EQ] = ACTIONS(7186), + [anon_sym_LT_EQ] = ACTIONS(7186), + [anon_sym_LT] = ACTIONS(7184), + [anon_sym_LT_LT] = ACTIONS(7184), + [anon_sym_GT_GT] = ACTIONS(7184), + [anon_sym_SEMI] = ACTIONS(7186), + [anon_sym___attribute] = ACTIONS(7184), + [anon_sym___attribute__] = ACTIONS(7184), + [anon_sym_RBRACE] = ACTIONS(7186), + [anon_sym_LBRACK] = ACTIONS(7186), + [anon_sym_RBRACK] = ACTIONS(7186), + [anon_sym_EQ] = ACTIONS(7184), + [anon_sym_const] = ACTIONS(7184), + [anon_sym_volatile] = ACTIONS(7184), + [anon_sym_restrict] = ACTIONS(7184), + [anon_sym__Atomic] = ACTIONS(7184), + [anon_sym_in] = ACTIONS(7184), + [anon_sym_out] = ACTIONS(7184), + [anon_sym_inout] = ACTIONS(7184), + [anon_sym_bycopy] = ACTIONS(7184), + [anon_sym_byref] = ACTIONS(7184), + [anon_sym_oneway] = ACTIONS(7184), + [anon_sym__Nullable] = ACTIONS(7184), + [anon_sym__Nonnull] = ACTIONS(7184), + [anon_sym__Nullable_result] = ACTIONS(7184), + [anon_sym__Null_unspecified] = ACTIONS(7184), + [anon_sym___autoreleasing] = ACTIONS(7184), + [anon_sym___nullable] = ACTIONS(7184), + [anon_sym___nonnull] = ACTIONS(7184), + [anon_sym___strong] = ACTIONS(7184), + [anon_sym___weak] = ACTIONS(7184), + [anon_sym___bridge] = ACTIONS(7184), + [anon_sym___bridge_transfer] = ACTIONS(7184), + [anon_sym___bridge_retained] = ACTIONS(7184), + [anon_sym___unsafe_unretained] = ACTIONS(7184), + [anon_sym___block] = ACTIONS(7184), + [anon_sym___kindof] = ACTIONS(7184), + [anon_sym___unused] = ACTIONS(7184), + [anon_sym__Complex] = ACTIONS(7184), + [anon_sym___complex] = ACTIONS(7184), + [anon_sym_IBOutlet] = ACTIONS(7184), + [anon_sym_IBInspectable] = ACTIONS(7184), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7184), + [anon_sym_COLON] = ACTIONS(7186), + [anon_sym_QMARK] = ACTIONS(7186), + [anon_sym_STAR_EQ] = ACTIONS(7186), + [anon_sym_SLASH_EQ] = ACTIONS(7186), + [anon_sym_PERCENT_EQ] = ACTIONS(7186), + [anon_sym_PLUS_EQ] = ACTIONS(7186), + [anon_sym_DASH_EQ] = ACTIONS(7186), + [anon_sym_LT_LT_EQ] = ACTIONS(7186), + [anon_sym_GT_GT_EQ] = ACTIONS(7186), + [anon_sym_AMP_EQ] = ACTIONS(7186), + [anon_sym_CARET_EQ] = ACTIONS(7186), + [anon_sym_PIPE_EQ] = ACTIONS(7186), + [anon_sym_DASH_DASH] = ACTIONS(7186), + [anon_sym_PLUS_PLUS] = ACTIONS(7186), + [anon_sym_DOT] = ACTIONS(7186), + [anon_sym_DASH_GT] = ACTIONS(7186), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7184), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7184), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7184), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7184), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7184), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7184), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7184), + [anon_sym_NS_AVAILABLE] = ACTIONS(7184), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7184), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7184), + [anon_sym_API_AVAILABLE] = ACTIONS(7184), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7184), + [anon_sym_API_DEPRECATED] = ACTIONS(7184), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7184), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7184), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7184), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7184), + [anon_sym___deprecated_msg] = ACTIONS(7184), + [anon_sym___deprecated_enum_msg] = ACTIONS(7184), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7184), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7184), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7184), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7184), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7184), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7184), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3016] = { + [sym_identifier] = ACTIONS(7188), + [anon_sym_COMMA] = ACTIONS(7190), + [anon_sym_RPAREN] = ACTIONS(7190), + [anon_sym_LPAREN2] = ACTIONS(7190), + [anon_sym_DASH] = ACTIONS(7188), + [anon_sym_PLUS] = ACTIONS(7188), + [anon_sym_STAR] = ACTIONS(7188), + [anon_sym_SLASH] = ACTIONS(7188), + [anon_sym_PERCENT] = ACTIONS(7188), + [anon_sym_PIPE_PIPE] = ACTIONS(7190), + [anon_sym_AMP_AMP] = ACTIONS(7190), + [anon_sym_PIPE] = ACTIONS(7188), + [anon_sym_CARET] = ACTIONS(7188), + [anon_sym_AMP] = ACTIONS(7188), + [anon_sym_EQ_EQ] = ACTIONS(7190), + [anon_sym_BANG_EQ] = ACTIONS(7190), + [anon_sym_GT] = ACTIONS(7188), + [anon_sym_GT_EQ] = ACTIONS(7190), + [anon_sym_LT_EQ] = ACTIONS(7190), + [anon_sym_LT] = ACTIONS(7188), + [anon_sym_LT_LT] = ACTIONS(7188), + [anon_sym_GT_GT] = ACTIONS(7188), + [anon_sym_SEMI] = ACTIONS(7190), + [anon_sym___attribute] = ACTIONS(7188), + [anon_sym___attribute__] = ACTIONS(7188), + [anon_sym_RBRACE] = ACTIONS(7190), + [anon_sym_LBRACK] = ACTIONS(7190), + [anon_sym_RBRACK] = ACTIONS(7190), + [anon_sym_EQ] = ACTIONS(7188), + [anon_sym_const] = ACTIONS(7188), + [anon_sym_volatile] = ACTIONS(7188), + [anon_sym_restrict] = ACTIONS(7188), + [anon_sym__Atomic] = ACTIONS(7188), + [anon_sym_in] = ACTIONS(7188), + [anon_sym_out] = ACTIONS(7188), + [anon_sym_inout] = ACTIONS(7188), + [anon_sym_bycopy] = ACTIONS(7188), + [anon_sym_byref] = ACTIONS(7188), + [anon_sym_oneway] = ACTIONS(7188), + [anon_sym__Nullable] = ACTIONS(7188), + [anon_sym__Nonnull] = ACTIONS(7188), + [anon_sym__Nullable_result] = ACTIONS(7188), + [anon_sym__Null_unspecified] = ACTIONS(7188), + [anon_sym___autoreleasing] = ACTIONS(7188), + [anon_sym___nullable] = ACTIONS(7188), + [anon_sym___nonnull] = ACTIONS(7188), + [anon_sym___strong] = ACTIONS(7188), + [anon_sym___weak] = ACTIONS(7188), + [anon_sym___bridge] = ACTIONS(7188), + [anon_sym___bridge_transfer] = ACTIONS(7188), + [anon_sym___bridge_retained] = ACTIONS(7188), + [anon_sym___unsafe_unretained] = ACTIONS(7188), + [anon_sym___block] = ACTIONS(7188), + [anon_sym___kindof] = ACTIONS(7188), + [anon_sym___unused] = ACTIONS(7188), + [anon_sym__Complex] = ACTIONS(7188), + [anon_sym___complex] = ACTIONS(7188), + [anon_sym_IBOutlet] = ACTIONS(7188), + [anon_sym_IBInspectable] = ACTIONS(7188), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7188), + [anon_sym_COLON] = ACTIONS(7190), + [anon_sym_QMARK] = ACTIONS(7190), + [anon_sym_STAR_EQ] = ACTIONS(7190), + [anon_sym_SLASH_EQ] = ACTIONS(7190), + [anon_sym_PERCENT_EQ] = ACTIONS(7190), + [anon_sym_PLUS_EQ] = ACTIONS(7190), + [anon_sym_DASH_EQ] = ACTIONS(7190), + [anon_sym_LT_LT_EQ] = ACTIONS(7190), + [anon_sym_GT_GT_EQ] = ACTIONS(7190), + [anon_sym_AMP_EQ] = ACTIONS(7190), + [anon_sym_CARET_EQ] = ACTIONS(7190), + [anon_sym_PIPE_EQ] = ACTIONS(7190), + [anon_sym_DASH_DASH] = ACTIONS(7190), + [anon_sym_PLUS_PLUS] = ACTIONS(7190), + [anon_sym_DOT] = ACTIONS(7190), + [anon_sym_DASH_GT] = ACTIONS(7190), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7188), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7188), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7188), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7188), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7188), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7188), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7188), + [anon_sym_NS_AVAILABLE] = ACTIONS(7188), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7188), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7188), + [anon_sym_API_AVAILABLE] = ACTIONS(7188), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7188), + [anon_sym_API_DEPRECATED] = ACTIONS(7188), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7188), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7188), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7188), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7188), + [anon_sym___deprecated_msg] = ACTIONS(7188), + [anon_sym___deprecated_enum_msg] = ACTIONS(7188), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7188), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7188), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7188), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7188), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7188), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7188), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3017] = { + [sym_identifier] = ACTIONS(7192), + [anon_sym_COMMA] = ACTIONS(7194), + [anon_sym_RPAREN] = ACTIONS(7194), + [anon_sym_LPAREN2] = ACTIONS(7194), + [anon_sym_DASH] = ACTIONS(7192), + [anon_sym_PLUS] = ACTIONS(7192), + [anon_sym_STAR] = ACTIONS(7192), + [anon_sym_SLASH] = ACTIONS(7192), + [anon_sym_PERCENT] = ACTIONS(7192), + [anon_sym_PIPE_PIPE] = ACTIONS(7194), + [anon_sym_AMP_AMP] = ACTIONS(7194), + [anon_sym_PIPE] = ACTIONS(7192), + [anon_sym_CARET] = ACTIONS(7192), + [anon_sym_AMP] = ACTIONS(7192), + [anon_sym_EQ_EQ] = ACTIONS(7194), + [anon_sym_BANG_EQ] = ACTIONS(7194), + [anon_sym_GT] = ACTIONS(7192), + [anon_sym_GT_EQ] = ACTIONS(7194), + [anon_sym_LT_EQ] = ACTIONS(7194), + [anon_sym_LT] = ACTIONS(7192), + [anon_sym_LT_LT] = ACTIONS(7192), + [anon_sym_GT_GT] = ACTIONS(7192), + [anon_sym_SEMI] = ACTIONS(7194), + [anon_sym___attribute] = ACTIONS(7192), + [anon_sym___attribute__] = ACTIONS(7192), + [anon_sym_RBRACE] = ACTIONS(7194), + [anon_sym_LBRACK] = ACTIONS(7194), + [anon_sym_RBRACK] = ACTIONS(7194), + [anon_sym_EQ] = ACTIONS(7192), + [anon_sym_const] = ACTIONS(7192), + [anon_sym_volatile] = ACTIONS(7192), + [anon_sym_restrict] = ACTIONS(7192), + [anon_sym__Atomic] = ACTIONS(7192), + [anon_sym_in] = ACTIONS(7192), + [anon_sym_out] = ACTIONS(7192), + [anon_sym_inout] = ACTIONS(7192), + [anon_sym_bycopy] = ACTIONS(7192), + [anon_sym_byref] = ACTIONS(7192), + [anon_sym_oneway] = ACTIONS(7192), + [anon_sym__Nullable] = ACTIONS(7192), + [anon_sym__Nonnull] = ACTIONS(7192), + [anon_sym__Nullable_result] = ACTIONS(7192), + [anon_sym__Null_unspecified] = ACTIONS(7192), + [anon_sym___autoreleasing] = ACTIONS(7192), + [anon_sym___nullable] = ACTIONS(7192), + [anon_sym___nonnull] = ACTIONS(7192), + [anon_sym___strong] = ACTIONS(7192), + [anon_sym___weak] = ACTIONS(7192), + [anon_sym___bridge] = ACTIONS(7192), + [anon_sym___bridge_transfer] = ACTIONS(7192), + [anon_sym___bridge_retained] = ACTIONS(7192), + [anon_sym___unsafe_unretained] = ACTIONS(7192), + [anon_sym___block] = ACTIONS(7192), + [anon_sym___kindof] = ACTIONS(7192), + [anon_sym___unused] = ACTIONS(7192), + [anon_sym__Complex] = ACTIONS(7192), + [anon_sym___complex] = ACTIONS(7192), + [anon_sym_IBOutlet] = ACTIONS(7192), + [anon_sym_IBInspectable] = ACTIONS(7192), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7192), + [anon_sym_COLON] = ACTIONS(7194), + [anon_sym_QMARK] = ACTIONS(7194), + [anon_sym_STAR_EQ] = ACTIONS(7194), + [anon_sym_SLASH_EQ] = ACTIONS(7194), + [anon_sym_PERCENT_EQ] = ACTIONS(7194), + [anon_sym_PLUS_EQ] = ACTIONS(7194), + [anon_sym_DASH_EQ] = ACTIONS(7194), + [anon_sym_LT_LT_EQ] = ACTIONS(7194), + [anon_sym_GT_GT_EQ] = ACTIONS(7194), + [anon_sym_AMP_EQ] = ACTIONS(7194), + [anon_sym_CARET_EQ] = ACTIONS(7194), + [anon_sym_PIPE_EQ] = ACTIONS(7194), + [anon_sym_DASH_DASH] = ACTIONS(7194), + [anon_sym_PLUS_PLUS] = ACTIONS(7194), + [anon_sym_DOT] = ACTIONS(7194), + [anon_sym_DASH_GT] = ACTIONS(7194), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7192), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7192), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7192), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7192), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7192), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7192), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7192), + [anon_sym_NS_AVAILABLE] = ACTIONS(7192), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7192), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7192), + [anon_sym_API_AVAILABLE] = ACTIONS(7192), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7192), + [anon_sym_API_DEPRECATED] = ACTIONS(7192), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7192), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7192), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7192), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7192), + [anon_sym___deprecated_msg] = ACTIONS(7192), + [anon_sym___deprecated_enum_msg] = ACTIONS(7192), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7192), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7192), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7192), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7192), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7192), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7192), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -493280,109 +491460,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3018] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7004), - [anon_sym_PLUS] = ACTIONS(7004), - [anon_sym_STAR] = ACTIONS(7006), - [anon_sym_SLASH] = ACTIONS(7006), - [anon_sym_PERCENT] = ACTIONS(7006), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7066), - [anon_sym_PIPE] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7064), - [anon_sym_AMP] = ACTIONS(7064), - [anon_sym_EQ_EQ] = ACTIONS(7066), - [anon_sym_BANG_EQ] = ACTIONS(7066), - [anon_sym_GT] = ACTIONS(7064), - [anon_sym_GT_EQ] = ACTIONS(7066), - [anon_sym_LT_EQ] = ACTIONS(7066), - [anon_sym_LT] = ACTIONS(7064), - [anon_sym_LT_LT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7066), - [anon_sym___attribute] = ACTIONS(7064), - [anon_sym___attribute__] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7066), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_const] = ACTIONS(7064), - [anon_sym_volatile] = ACTIONS(7064), - [anon_sym_restrict] = ACTIONS(7064), - [anon_sym__Atomic] = ACTIONS(7064), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_out] = ACTIONS(7064), - [anon_sym_inout] = ACTIONS(7064), - [anon_sym_bycopy] = ACTIONS(7064), - [anon_sym_byref] = ACTIONS(7064), - [anon_sym_oneway] = ACTIONS(7064), - [anon_sym__Nullable] = ACTIONS(7064), - [anon_sym__Nonnull] = ACTIONS(7064), - [anon_sym__Nullable_result] = ACTIONS(7064), - [anon_sym__Null_unspecified] = ACTIONS(7064), - [anon_sym___autoreleasing] = ACTIONS(7064), - [anon_sym___nullable] = ACTIONS(7064), - [anon_sym___nonnull] = ACTIONS(7064), - [anon_sym___strong] = ACTIONS(7064), - [anon_sym___weak] = ACTIONS(7064), - [anon_sym___bridge] = ACTIONS(7064), - [anon_sym___bridge_transfer] = ACTIONS(7064), - [anon_sym___bridge_retained] = ACTIONS(7064), - [anon_sym___unsafe_unretained] = ACTIONS(7064), - [anon_sym___block] = ACTIONS(7064), - [anon_sym___kindof] = ACTIONS(7064), - [anon_sym___unused] = ACTIONS(7064), - [anon_sym__Complex] = ACTIONS(7064), - [anon_sym___complex] = ACTIONS(7064), - [anon_sym_IBOutlet] = ACTIONS(7064), - [anon_sym_IBInspectable] = ACTIONS(7064), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_STAR_EQ] = ACTIONS(7066), - [anon_sym_SLASH_EQ] = ACTIONS(7066), - [anon_sym_PERCENT_EQ] = ACTIONS(7066), - [anon_sym_PLUS_EQ] = ACTIONS(7066), - [anon_sym_DASH_EQ] = ACTIONS(7066), - [anon_sym_LT_LT_EQ] = ACTIONS(7066), - [anon_sym_GT_GT_EQ] = ACTIONS(7066), - [anon_sym_AMP_EQ] = ACTIONS(7066), - [anon_sym_CARET_EQ] = ACTIONS(7066), - [anon_sym_PIPE_EQ] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7030), - [anon_sym_PLUS_PLUS] = ACTIONS(7030), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [sym_identifier] = ACTIONS(7196), + [anon_sym_COMMA] = ACTIONS(7198), + [anon_sym_RPAREN] = ACTIONS(7198), + [anon_sym_LPAREN2] = ACTIONS(7198), + [anon_sym_DASH] = ACTIONS(7196), + [anon_sym_PLUS] = ACTIONS(7196), + [anon_sym_STAR] = ACTIONS(7196), + [anon_sym_SLASH] = ACTIONS(7196), + [anon_sym_PERCENT] = ACTIONS(7196), + [anon_sym_PIPE_PIPE] = ACTIONS(7198), + [anon_sym_AMP_AMP] = ACTIONS(7198), + [anon_sym_PIPE] = ACTIONS(7196), + [anon_sym_CARET] = ACTIONS(7196), + [anon_sym_AMP] = ACTIONS(7196), + [anon_sym_EQ_EQ] = ACTIONS(7198), + [anon_sym_BANG_EQ] = ACTIONS(7198), + [anon_sym_GT] = ACTIONS(7196), + [anon_sym_GT_EQ] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(7198), + [anon_sym_LT] = ACTIONS(7196), + [anon_sym_LT_LT] = ACTIONS(7196), + [anon_sym_GT_GT] = ACTIONS(7196), + [anon_sym_SEMI] = ACTIONS(7198), + [anon_sym___attribute] = ACTIONS(7196), + [anon_sym___attribute__] = ACTIONS(7196), + [anon_sym_RBRACE] = ACTIONS(7198), + [anon_sym_LBRACK] = ACTIONS(7198), + [anon_sym_RBRACK] = ACTIONS(7198), + [anon_sym_EQ] = ACTIONS(7196), + [anon_sym_const] = ACTIONS(7196), + [anon_sym_volatile] = ACTIONS(7196), + [anon_sym_restrict] = ACTIONS(7196), + [anon_sym__Atomic] = ACTIONS(7196), + [anon_sym_in] = ACTIONS(7196), + [anon_sym_out] = ACTIONS(7196), + [anon_sym_inout] = ACTIONS(7196), + [anon_sym_bycopy] = ACTIONS(7196), + [anon_sym_byref] = ACTIONS(7196), + [anon_sym_oneway] = ACTIONS(7196), + [anon_sym__Nullable] = ACTIONS(7196), + [anon_sym__Nonnull] = ACTIONS(7196), + [anon_sym__Nullable_result] = ACTIONS(7196), + [anon_sym__Null_unspecified] = ACTIONS(7196), + [anon_sym___autoreleasing] = ACTIONS(7196), + [anon_sym___nullable] = ACTIONS(7196), + [anon_sym___nonnull] = ACTIONS(7196), + [anon_sym___strong] = ACTIONS(7196), + [anon_sym___weak] = ACTIONS(7196), + [anon_sym___bridge] = ACTIONS(7196), + [anon_sym___bridge_transfer] = ACTIONS(7196), + [anon_sym___bridge_retained] = ACTIONS(7196), + [anon_sym___unsafe_unretained] = ACTIONS(7196), + [anon_sym___block] = ACTIONS(7196), + [anon_sym___kindof] = ACTIONS(7196), + [anon_sym___unused] = ACTIONS(7196), + [anon_sym__Complex] = ACTIONS(7196), + [anon_sym___complex] = ACTIONS(7196), + [anon_sym_IBOutlet] = ACTIONS(7196), + [anon_sym_IBInspectable] = ACTIONS(7196), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7196), + [anon_sym_COLON] = ACTIONS(7198), + [anon_sym_QMARK] = ACTIONS(7198), + [anon_sym_STAR_EQ] = ACTIONS(7198), + [anon_sym_SLASH_EQ] = ACTIONS(7198), + [anon_sym_PERCENT_EQ] = ACTIONS(7198), + [anon_sym_PLUS_EQ] = ACTIONS(7198), + [anon_sym_DASH_EQ] = ACTIONS(7198), + [anon_sym_LT_LT_EQ] = ACTIONS(7198), + [anon_sym_GT_GT_EQ] = ACTIONS(7198), + [anon_sym_AMP_EQ] = ACTIONS(7198), + [anon_sym_CARET_EQ] = ACTIONS(7198), + [anon_sym_PIPE_EQ] = ACTIONS(7198), + [anon_sym_DASH_DASH] = ACTIONS(7198), + [anon_sym_PLUS_PLUS] = ACTIONS(7198), + [anon_sym_DOT] = ACTIONS(7198), + [anon_sym_DASH_GT] = ACTIONS(7198), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7064), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7064), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE] = ACTIONS(7064), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_API_AVAILABLE] = ACTIONS(7064), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_API_DEPRECATED] = ACTIONS(7064), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7064), - [anon_sym___deprecated_msg] = ACTIONS(7064), - [anon_sym___deprecated_enum_msg] = ACTIONS(7064), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7064), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7064), + [sym_method_attribute_specifier] = ACTIONS(7196), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7196), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7196), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7196), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7196), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7196), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7196), + [anon_sym_NS_AVAILABLE] = ACTIONS(7196), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7196), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7196), + [anon_sym_API_AVAILABLE] = ACTIONS(7196), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7196), + [anon_sym_API_DEPRECATED] = ACTIONS(7196), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7196), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7196), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7196), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7196), + [anon_sym___deprecated_msg] = ACTIONS(7196), + [anon_sym___deprecated_enum_msg] = ACTIONS(7196), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7196), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7196), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7196), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7196), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7196), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7196), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -493391,109 +491570,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3019] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7004), - [anon_sym_PLUS] = ACTIONS(7004), - [anon_sym_STAR] = ACTIONS(7006), - [anon_sym_SLASH] = ACTIONS(7006), - [anon_sym_PERCENT] = ACTIONS(7006), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7066), - [anon_sym_PIPE] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7064), - [anon_sym_AMP] = ACTIONS(7064), - [anon_sym_EQ_EQ] = ACTIONS(7066), - [anon_sym_BANG_EQ] = ACTIONS(7066), - [anon_sym_GT] = ACTIONS(7020), - [anon_sym_GT_EQ] = ACTIONS(7022), - [anon_sym_LT_EQ] = ACTIONS(7022), - [anon_sym_LT] = ACTIONS(7020), - [anon_sym_LT_LT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7066), - [anon_sym___attribute] = ACTIONS(7064), - [anon_sym___attribute__] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7066), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_const] = ACTIONS(7064), - [anon_sym_volatile] = ACTIONS(7064), - [anon_sym_restrict] = ACTIONS(7064), - [anon_sym__Atomic] = ACTIONS(7064), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_out] = ACTIONS(7064), - [anon_sym_inout] = ACTIONS(7064), - [anon_sym_bycopy] = ACTIONS(7064), - [anon_sym_byref] = ACTIONS(7064), - [anon_sym_oneway] = ACTIONS(7064), - [anon_sym__Nullable] = ACTIONS(7064), - [anon_sym__Nonnull] = ACTIONS(7064), - [anon_sym__Nullable_result] = ACTIONS(7064), - [anon_sym__Null_unspecified] = ACTIONS(7064), - [anon_sym___autoreleasing] = ACTIONS(7064), - [anon_sym___nullable] = ACTIONS(7064), - [anon_sym___nonnull] = ACTIONS(7064), - [anon_sym___strong] = ACTIONS(7064), - [anon_sym___weak] = ACTIONS(7064), - [anon_sym___bridge] = ACTIONS(7064), - [anon_sym___bridge_transfer] = ACTIONS(7064), - [anon_sym___bridge_retained] = ACTIONS(7064), - [anon_sym___unsafe_unretained] = ACTIONS(7064), - [anon_sym___block] = ACTIONS(7064), - [anon_sym___kindof] = ACTIONS(7064), - [anon_sym___unused] = ACTIONS(7064), - [anon_sym__Complex] = ACTIONS(7064), - [anon_sym___complex] = ACTIONS(7064), - [anon_sym_IBOutlet] = ACTIONS(7064), - [anon_sym_IBInspectable] = ACTIONS(7064), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_STAR_EQ] = ACTIONS(7066), - [anon_sym_SLASH_EQ] = ACTIONS(7066), - [anon_sym_PERCENT_EQ] = ACTIONS(7066), - [anon_sym_PLUS_EQ] = ACTIONS(7066), - [anon_sym_DASH_EQ] = ACTIONS(7066), - [anon_sym_LT_LT_EQ] = ACTIONS(7066), - [anon_sym_GT_GT_EQ] = ACTIONS(7066), - [anon_sym_AMP_EQ] = ACTIONS(7066), - [anon_sym_CARET_EQ] = ACTIONS(7066), - [anon_sym_PIPE_EQ] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7030), - [anon_sym_PLUS_PLUS] = ACTIONS(7030), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [sym_identifier] = ACTIONS(7200), + [anon_sym_COMMA] = ACTIONS(7202), + [anon_sym_RPAREN] = ACTIONS(7202), + [anon_sym_LPAREN2] = ACTIONS(7202), + [anon_sym_DASH] = ACTIONS(7200), + [anon_sym_PLUS] = ACTIONS(7200), + [anon_sym_STAR] = ACTIONS(7200), + [anon_sym_SLASH] = ACTIONS(7200), + [anon_sym_PERCENT] = ACTIONS(7200), + [anon_sym_PIPE_PIPE] = ACTIONS(7202), + [anon_sym_AMP_AMP] = ACTIONS(7202), + [anon_sym_PIPE] = ACTIONS(7200), + [anon_sym_CARET] = ACTIONS(7200), + [anon_sym_AMP] = ACTIONS(7200), + [anon_sym_EQ_EQ] = ACTIONS(7202), + [anon_sym_BANG_EQ] = ACTIONS(7202), + [anon_sym_GT] = ACTIONS(7200), + [anon_sym_GT_EQ] = ACTIONS(7202), + [anon_sym_LT_EQ] = ACTIONS(7202), + [anon_sym_LT] = ACTIONS(7200), + [anon_sym_LT_LT] = ACTIONS(7200), + [anon_sym_GT_GT] = ACTIONS(7200), + [anon_sym_SEMI] = ACTIONS(7202), + [anon_sym___attribute] = ACTIONS(7200), + [anon_sym___attribute__] = ACTIONS(7200), + [anon_sym_RBRACE] = ACTIONS(7202), + [anon_sym_LBRACK] = ACTIONS(7202), + [anon_sym_RBRACK] = ACTIONS(7202), + [anon_sym_EQ] = ACTIONS(7200), + [anon_sym_const] = ACTIONS(7200), + [anon_sym_volatile] = ACTIONS(7200), + [anon_sym_restrict] = ACTIONS(7200), + [anon_sym__Atomic] = ACTIONS(7200), + [anon_sym_in] = ACTIONS(7200), + [anon_sym_out] = ACTIONS(7200), + [anon_sym_inout] = ACTIONS(7200), + [anon_sym_bycopy] = ACTIONS(7200), + [anon_sym_byref] = ACTIONS(7200), + [anon_sym_oneway] = ACTIONS(7200), + [anon_sym__Nullable] = ACTIONS(7200), + [anon_sym__Nonnull] = ACTIONS(7200), + [anon_sym__Nullable_result] = ACTIONS(7200), + [anon_sym__Null_unspecified] = ACTIONS(7200), + [anon_sym___autoreleasing] = ACTIONS(7200), + [anon_sym___nullable] = ACTIONS(7200), + [anon_sym___nonnull] = ACTIONS(7200), + [anon_sym___strong] = ACTIONS(7200), + [anon_sym___weak] = ACTIONS(7200), + [anon_sym___bridge] = ACTIONS(7200), + [anon_sym___bridge_transfer] = ACTIONS(7200), + [anon_sym___bridge_retained] = ACTIONS(7200), + [anon_sym___unsafe_unretained] = ACTIONS(7200), + [anon_sym___block] = ACTIONS(7200), + [anon_sym___kindof] = ACTIONS(7200), + [anon_sym___unused] = ACTIONS(7200), + [anon_sym__Complex] = ACTIONS(7200), + [anon_sym___complex] = ACTIONS(7200), + [anon_sym_IBOutlet] = ACTIONS(7200), + [anon_sym_IBInspectable] = ACTIONS(7200), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7200), + [anon_sym_COLON] = ACTIONS(7202), + [anon_sym_QMARK] = ACTIONS(7202), + [anon_sym_STAR_EQ] = ACTIONS(7202), + [anon_sym_SLASH_EQ] = ACTIONS(7202), + [anon_sym_PERCENT_EQ] = ACTIONS(7202), + [anon_sym_PLUS_EQ] = ACTIONS(7202), + [anon_sym_DASH_EQ] = ACTIONS(7202), + [anon_sym_LT_LT_EQ] = ACTIONS(7202), + [anon_sym_GT_GT_EQ] = ACTIONS(7202), + [anon_sym_AMP_EQ] = ACTIONS(7202), + [anon_sym_CARET_EQ] = ACTIONS(7202), + [anon_sym_PIPE_EQ] = ACTIONS(7202), + [anon_sym_DASH_DASH] = ACTIONS(7202), + [anon_sym_PLUS_PLUS] = ACTIONS(7202), + [anon_sym_DOT] = ACTIONS(7202), + [anon_sym_DASH_GT] = ACTIONS(7202), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7064), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7064), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE] = ACTIONS(7064), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_API_AVAILABLE] = ACTIONS(7064), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_API_DEPRECATED] = ACTIONS(7064), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7064), - [anon_sym___deprecated_msg] = ACTIONS(7064), - [anon_sym___deprecated_enum_msg] = ACTIONS(7064), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7064), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7064), + [sym_method_attribute_specifier] = ACTIONS(7200), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7200), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7200), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7200), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7200), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7200), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7200), + [anon_sym_NS_AVAILABLE] = ACTIONS(7200), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7200), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7200), + [anon_sym_API_AVAILABLE] = ACTIONS(7200), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7200), + [anon_sym_API_DEPRECATED] = ACTIONS(7200), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7200), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7200), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7200), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7200), + [anon_sym___deprecated_msg] = ACTIONS(7200), + [anon_sym___deprecated_enum_msg] = ACTIONS(7200), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7200), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7200), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7200), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7200), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7200), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7200), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -493502,109 +491680,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3020] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7004), - [anon_sym_PLUS] = ACTIONS(7004), - [anon_sym_STAR] = ACTIONS(7006), - [anon_sym_SLASH] = ACTIONS(7006), - [anon_sym_PERCENT] = ACTIONS(7006), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7066), - [anon_sym_PIPE] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7064), - [anon_sym_AMP] = ACTIONS(7064), - [anon_sym_EQ_EQ] = ACTIONS(7018), - [anon_sym_BANG_EQ] = ACTIONS(7018), - [anon_sym_GT] = ACTIONS(7020), - [anon_sym_GT_EQ] = ACTIONS(7022), - [anon_sym_LT_EQ] = ACTIONS(7022), - [anon_sym_LT] = ACTIONS(7020), - [anon_sym_LT_LT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7066), - [anon_sym___attribute] = ACTIONS(7064), - [anon_sym___attribute__] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7066), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_const] = ACTIONS(7064), - [anon_sym_volatile] = ACTIONS(7064), - [anon_sym_restrict] = ACTIONS(7064), - [anon_sym__Atomic] = ACTIONS(7064), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_out] = ACTIONS(7064), - [anon_sym_inout] = ACTIONS(7064), - [anon_sym_bycopy] = ACTIONS(7064), - [anon_sym_byref] = ACTIONS(7064), - [anon_sym_oneway] = ACTIONS(7064), - [anon_sym__Nullable] = ACTIONS(7064), - [anon_sym__Nonnull] = ACTIONS(7064), - [anon_sym__Nullable_result] = ACTIONS(7064), - [anon_sym__Null_unspecified] = ACTIONS(7064), - [anon_sym___autoreleasing] = ACTIONS(7064), - [anon_sym___nullable] = ACTIONS(7064), - [anon_sym___nonnull] = ACTIONS(7064), - [anon_sym___strong] = ACTIONS(7064), - [anon_sym___weak] = ACTIONS(7064), - [anon_sym___bridge] = ACTIONS(7064), - [anon_sym___bridge_transfer] = ACTIONS(7064), - [anon_sym___bridge_retained] = ACTIONS(7064), - [anon_sym___unsafe_unretained] = ACTIONS(7064), - [anon_sym___block] = ACTIONS(7064), - [anon_sym___kindof] = ACTIONS(7064), - [anon_sym___unused] = ACTIONS(7064), - [anon_sym__Complex] = ACTIONS(7064), - [anon_sym___complex] = ACTIONS(7064), - [anon_sym_IBOutlet] = ACTIONS(7064), - [anon_sym_IBInspectable] = ACTIONS(7064), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_STAR_EQ] = ACTIONS(7066), - [anon_sym_SLASH_EQ] = ACTIONS(7066), - [anon_sym_PERCENT_EQ] = ACTIONS(7066), - [anon_sym_PLUS_EQ] = ACTIONS(7066), - [anon_sym_DASH_EQ] = ACTIONS(7066), - [anon_sym_LT_LT_EQ] = ACTIONS(7066), - [anon_sym_GT_GT_EQ] = ACTIONS(7066), - [anon_sym_AMP_EQ] = ACTIONS(7066), - [anon_sym_CARET_EQ] = ACTIONS(7066), - [anon_sym_PIPE_EQ] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7030), - [anon_sym_PLUS_PLUS] = ACTIONS(7030), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [sym_identifier] = ACTIONS(7204), + [anon_sym_COMMA] = ACTIONS(7206), + [anon_sym_RPAREN] = ACTIONS(7206), + [anon_sym_LPAREN2] = ACTIONS(7206), + [anon_sym_DASH] = ACTIONS(7204), + [anon_sym_PLUS] = ACTIONS(7204), + [anon_sym_STAR] = ACTIONS(7204), + [anon_sym_SLASH] = ACTIONS(7204), + [anon_sym_PERCENT] = ACTIONS(7204), + [anon_sym_PIPE_PIPE] = ACTIONS(7206), + [anon_sym_AMP_AMP] = ACTIONS(7206), + [anon_sym_PIPE] = ACTIONS(7204), + [anon_sym_CARET] = ACTIONS(7204), + [anon_sym_AMP] = ACTIONS(7204), + [anon_sym_EQ_EQ] = ACTIONS(7206), + [anon_sym_BANG_EQ] = ACTIONS(7206), + [anon_sym_GT] = ACTIONS(7204), + [anon_sym_GT_EQ] = ACTIONS(7206), + [anon_sym_LT_EQ] = ACTIONS(7206), + [anon_sym_LT] = ACTIONS(7204), + [anon_sym_LT_LT] = ACTIONS(7204), + [anon_sym_GT_GT] = ACTIONS(7204), + [anon_sym_SEMI] = ACTIONS(7206), + [anon_sym___attribute] = ACTIONS(7204), + [anon_sym___attribute__] = ACTIONS(7204), + [anon_sym_RBRACE] = ACTIONS(7206), + [anon_sym_LBRACK] = ACTIONS(7206), + [anon_sym_RBRACK] = ACTIONS(7206), + [anon_sym_EQ] = ACTIONS(7204), + [anon_sym_const] = ACTIONS(7204), + [anon_sym_volatile] = ACTIONS(7204), + [anon_sym_restrict] = ACTIONS(7204), + [anon_sym__Atomic] = ACTIONS(7204), + [anon_sym_in] = ACTIONS(7204), + [anon_sym_out] = ACTIONS(7204), + [anon_sym_inout] = ACTIONS(7204), + [anon_sym_bycopy] = ACTIONS(7204), + [anon_sym_byref] = ACTIONS(7204), + [anon_sym_oneway] = ACTIONS(7204), + [anon_sym__Nullable] = ACTIONS(7204), + [anon_sym__Nonnull] = ACTIONS(7204), + [anon_sym__Nullable_result] = ACTIONS(7204), + [anon_sym__Null_unspecified] = ACTIONS(7204), + [anon_sym___autoreleasing] = ACTIONS(7204), + [anon_sym___nullable] = ACTIONS(7204), + [anon_sym___nonnull] = ACTIONS(7204), + [anon_sym___strong] = ACTIONS(7204), + [anon_sym___weak] = ACTIONS(7204), + [anon_sym___bridge] = ACTIONS(7204), + [anon_sym___bridge_transfer] = ACTIONS(7204), + [anon_sym___bridge_retained] = ACTIONS(7204), + [anon_sym___unsafe_unretained] = ACTIONS(7204), + [anon_sym___block] = ACTIONS(7204), + [anon_sym___kindof] = ACTIONS(7204), + [anon_sym___unused] = ACTIONS(7204), + [anon_sym__Complex] = ACTIONS(7204), + [anon_sym___complex] = ACTIONS(7204), + [anon_sym_IBOutlet] = ACTIONS(7204), + [anon_sym_IBInspectable] = ACTIONS(7204), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7204), + [anon_sym_COLON] = ACTIONS(7206), + [anon_sym_QMARK] = ACTIONS(7206), + [anon_sym_STAR_EQ] = ACTIONS(7206), + [anon_sym_SLASH_EQ] = ACTIONS(7206), + [anon_sym_PERCENT_EQ] = ACTIONS(7206), + [anon_sym_PLUS_EQ] = ACTIONS(7206), + [anon_sym_DASH_EQ] = ACTIONS(7206), + [anon_sym_LT_LT_EQ] = ACTIONS(7206), + [anon_sym_GT_GT_EQ] = ACTIONS(7206), + [anon_sym_AMP_EQ] = ACTIONS(7206), + [anon_sym_CARET_EQ] = ACTIONS(7206), + [anon_sym_PIPE_EQ] = ACTIONS(7206), + [anon_sym_DASH_DASH] = ACTIONS(7206), + [anon_sym_PLUS_PLUS] = ACTIONS(7206), + [anon_sym_DOT] = ACTIONS(7206), + [anon_sym_DASH_GT] = ACTIONS(7206), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7064), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7064), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE] = ACTIONS(7064), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_API_AVAILABLE] = ACTIONS(7064), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_API_DEPRECATED] = ACTIONS(7064), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7064), - [anon_sym___deprecated_msg] = ACTIONS(7064), - [anon_sym___deprecated_enum_msg] = ACTIONS(7064), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7064), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7064), + [sym_method_attribute_specifier] = ACTIONS(7204), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7204), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7204), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7204), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7204), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7204), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7204), + [anon_sym_NS_AVAILABLE] = ACTIONS(7204), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7204), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7204), + [anon_sym_API_AVAILABLE] = ACTIONS(7204), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7204), + [anon_sym_API_DEPRECATED] = ACTIONS(7204), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7204), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7204), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7204), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7204), + [anon_sym___deprecated_msg] = ACTIONS(7204), + [anon_sym___deprecated_enum_msg] = ACTIONS(7204), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7204), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7204), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7204), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7204), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7204), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7204), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -493613,109 +491790,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3021] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7004), - [anon_sym_PLUS] = ACTIONS(7004), - [anon_sym_STAR] = ACTIONS(7006), - [anon_sym_SLASH] = ACTIONS(7006), - [anon_sym_PERCENT] = ACTIONS(7006), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7066), - [anon_sym_PIPE] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7064), - [anon_sym_AMP] = ACTIONS(7016), - [anon_sym_EQ_EQ] = ACTIONS(7018), - [anon_sym_BANG_EQ] = ACTIONS(7018), - [anon_sym_GT] = ACTIONS(7020), - [anon_sym_GT_EQ] = ACTIONS(7022), - [anon_sym_LT_EQ] = ACTIONS(7022), - [anon_sym_LT] = ACTIONS(7020), - [anon_sym_LT_LT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7066), - [anon_sym___attribute] = ACTIONS(7064), - [anon_sym___attribute__] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7066), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_const] = ACTIONS(7064), - [anon_sym_volatile] = ACTIONS(7064), - [anon_sym_restrict] = ACTIONS(7064), - [anon_sym__Atomic] = ACTIONS(7064), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_out] = ACTIONS(7064), - [anon_sym_inout] = ACTIONS(7064), - [anon_sym_bycopy] = ACTIONS(7064), - [anon_sym_byref] = ACTIONS(7064), - [anon_sym_oneway] = ACTIONS(7064), - [anon_sym__Nullable] = ACTIONS(7064), - [anon_sym__Nonnull] = ACTIONS(7064), - [anon_sym__Nullable_result] = ACTIONS(7064), - [anon_sym__Null_unspecified] = ACTIONS(7064), - [anon_sym___autoreleasing] = ACTIONS(7064), - [anon_sym___nullable] = ACTIONS(7064), - [anon_sym___nonnull] = ACTIONS(7064), - [anon_sym___strong] = ACTIONS(7064), - [anon_sym___weak] = ACTIONS(7064), - [anon_sym___bridge] = ACTIONS(7064), - [anon_sym___bridge_transfer] = ACTIONS(7064), - [anon_sym___bridge_retained] = ACTIONS(7064), - [anon_sym___unsafe_unretained] = ACTIONS(7064), - [anon_sym___block] = ACTIONS(7064), - [anon_sym___kindof] = ACTIONS(7064), - [anon_sym___unused] = ACTIONS(7064), - [anon_sym__Complex] = ACTIONS(7064), - [anon_sym___complex] = ACTIONS(7064), - [anon_sym_IBOutlet] = ACTIONS(7064), - [anon_sym_IBInspectable] = ACTIONS(7064), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_STAR_EQ] = ACTIONS(7066), - [anon_sym_SLASH_EQ] = ACTIONS(7066), - [anon_sym_PERCENT_EQ] = ACTIONS(7066), - [anon_sym_PLUS_EQ] = ACTIONS(7066), - [anon_sym_DASH_EQ] = ACTIONS(7066), - [anon_sym_LT_LT_EQ] = ACTIONS(7066), - [anon_sym_GT_GT_EQ] = ACTIONS(7066), - [anon_sym_AMP_EQ] = ACTIONS(7066), - [anon_sym_CARET_EQ] = ACTIONS(7066), - [anon_sym_PIPE_EQ] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7030), - [anon_sym_PLUS_PLUS] = ACTIONS(7030), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [sym_identifier] = ACTIONS(7208), + [anon_sym_COMMA] = ACTIONS(7210), + [anon_sym_RPAREN] = ACTIONS(7210), + [anon_sym_LPAREN2] = ACTIONS(7210), + [anon_sym_DASH] = ACTIONS(7208), + [anon_sym_PLUS] = ACTIONS(7208), + [anon_sym_STAR] = ACTIONS(7208), + [anon_sym_SLASH] = ACTIONS(7208), + [anon_sym_PERCENT] = ACTIONS(7208), + [anon_sym_PIPE_PIPE] = ACTIONS(7210), + [anon_sym_AMP_AMP] = ACTIONS(7210), + [anon_sym_PIPE] = ACTIONS(7208), + [anon_sym_CARET] = ACTIONS(7208), + [anon_sym_AMP] = ACTIONS(7208), + [anon_sym_EQ_EQ] = ACTIONS(7210), + [anon_sym_BANG_EQ] = ACTIONS(7210), + [anon_sym_GT] = ACTIONS(7208), + [anon_sym_GT_EQ] = ACTIONS(7210), + [anon_sym_LT_EQ] = ACTIONS(7210), + [anon_sym_LT] = ACTIONS(7208), + [anon_sym_LT_LT] = ACTIONS(7208), + [anon_sym_GT_GT] = ACTIONS(7208), + [anon_sym_SEMI] = ACTIONS(7210), + [anon_sym___attribute] = ACTIONS(7208), + [anon_sym___attribute__] = ACTIONS(7208), + [anon_sym_RBRACE] = ACTIONS(7210), + [anon_sym_LBRACK] = ACTIONS(7210), + [anon_sym_RBRACK] = ACTIONS(7210), + [anon_sym_EQ] = ACTIONS(7208), + [anon_sym_const] = ACTIONS(7208), + [anon_sym_volatile] = ACTIONS(7208), + [anon_sym_restrict] = ACTIONS(7208), + [anon_sym__Atomic] = ACTIONS(7208), + [anon_sym_in] = ACTIONS(7208), + [anon_sym_out] = ACTIONS(7208), + [anon_sym_inout] = ACTIONS(7208), + [anon_sym_bycopy] = ACTIONS(7208), + [anon_sym_byref] = ACTIONS(7208), + [anon_sym_oneway] = ACTIONS(7208), + [anon_sym__Nullable] = ACTIONS(7208), + [anon_sym__Nonnull] = ACTIONS(7208), + [anon_sym__Nullable_result] = ACTIONS(7208), + [anon_sym__Null_unspecified] = ACTIONS(7208), + [anon_sym___autoreleasing] = ACTIONS(7208), + [anon_sym___nullable] = ACTIONS(7208), + [anon_sym___nonnull] = ACTIONS(7208), + [anon_sym___strong] = ACTIONS(7208), + [anon_sym___weak] = ACTIONS(7208), + [anon_sym___bridge] = ACTIONS(7208), + [anon_sym___bridge_transfer] = ACTIONS(7208), + [anon_sym___bridge_retained] = ACTIONS(7208), + [anon_sym___unsafe_unretained] = ACTIONS(7208), + [anon_sym___block] = ACTIONS(7208), + [anon_sym___kindof] = ACTIONS(7208), + [anon_sym___unused] = ACTIONS(7208), + [anon_sym__Complex] = ACTIONS(7208), + [anon_sym___complex] = ACTIONS(7208), + [anon_sym_IBOutlet] = ACTIONS(7208), + [anon_sym_IBInspectable] = ACTIONS(7208), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7208), + [anon_sym_COLON] = ACTIONS(7210), + [anon_sym_QMARK] = ACTIONS(7210), + [anon_sym_STAR_EQ] = ACTIONS(7210), + [anon_sym_SLASH_EQ] = ACTIONS(7210), + [anon_sym_PERCENT_EQ] = ACTIONS(7210), + [anon_sym_PLUS_EQ] = ACTIONS(7210), + [anon_sym_DASH_EQ] = ACTIONS(7210), + [anon_sym_LT_LT_EQ] = ACTIONS(7210), + [anon_sym_GT_GT_EQ] = ACTIONS(7210), + [anon_sym_AMP_EQ] = ACTIONS(7210), + [anon_sym_CARET_EQ] = ACTIONS(7210), + [anon_sym_PIPE_EQ] = ACTIONS(7210), + [anon_sym_DASH_DASH] = ACTIONS(7210), + [anon_sym_PLUS_PLUS] = ACTIONS(7210), + [anon_sym_DOT] = ACTIONS(7210), + [anon_sym_DASH_GT] = ACTIONS(7210), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7064), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7064), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE] = ACTIONS(7064), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_API_AVAILABLE] = ACTIONS(7064), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_API_DEPRECATED] = ACTIONS(7064), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7064), - [anon_sym___deprecated_msg] = ACTIONS(7064), - [anon_sym___deprecated_enum_msg] = ACTIONS(7064), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7064), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7064), + [sym_method_attribute_specifier] = ACTIONS(7208), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7208), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7208), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7208), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7208), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7208), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7208), + [anon_sym_NS_AVAILABLE] = ACTIONS(7208), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7208), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7208), + [anon_sym_API_AVAILABLE] = ACTIONS(7208), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7208), + [anon_sym_API_DEPRECATED] = ACTIONS(7208), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7208), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7208), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7208), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7208), + [anon_sym___deprecated_msg] = ACTIONS(7208), + [anon_sym___deprecated_enum_msg] = ACTIONS(7208), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7208), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7208), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7208), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7208), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7208), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7208), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -493724,109 +491900,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3022] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7004), - [anon_sym_PLUS] = ACTIONS(7004), - [anon_sym_STAR] = ACTIONS(7006), - [anon_sym_SLASH] = ACTIONS(7006), - [anon_sym_PERCENT] = ACTIONS(7006), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7066), - [anon_sym_PIPE] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7014), - [anon_sym_AMP] = ACTIONS(7016), - [anon_sym_EQ_EQ] = ACTIONS(7018), - [anon_sym_BANG_EQ] = ACTIONS(7018), - [anon_sym_GT] = ACTIONS(7020), - [anon_sym_GT_EQ] = ACTIONS(7022), - [anon_sym_LT_EQ] = ACTIONS(7022), - [anon_sym_LT] = ACTIONS(7020), - [anon_sym_LT_LT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7066), - [anon_sym___attribute] = ACTIONS(7064), - [anon_sym___attribute__] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7066), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_const] = ACTIONS(7064), - [anon_sym_volatile] = ACTIONS(7064), - [anon_sym_restrict] = ACTIONS(7064), - [anon_sym__Atomic] = ACTIONS(7064), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_out] = ACTIONS(7064), - [anon_sym_inout] = ACTIONS(7064), - [anon_sym_bycopy] = ACTIONS(7064), - [anon_sym_byref] = ACTIONS(7064), - [anon_sym_oneway] = ACTIONS(7064), - [anon_sym__Nullable] = ACTIONS(7064), - [anon_sym__Nonnull] = ACTIONS(7064), - [anon_sym__Nullable_result] = ACTIONS(7064), - [anon_sym__Null_unspecified] = ACTIONS(7064), - [anon_sym___autoreleasing] = ACTIONS(7064), - [anon_sym___nullable] = ACTIONS(7064), - [anon_sym___nonnull] = ACTIONS(7064), - [anon_sym___strong] = ACTIONS(7064), - [anon_sym___weak] = ACTIONS(7064), - [anon_sym___bridge] = ACTIONS(7064), - [anon_sym___bridge_transfer] = ACTIONS(7064), - [anon_sym___bridge_retained] = ACTIONS(7064), - [anon_sym___unsafe_unretained] = ACTIONS(7064), - [anon_sym___block] = ACTIONS(7064), - [anon_sym___kindof] = ACTIONS(7064), - [anon_sym___unused] = ACTIONS(7064), - [anon_sym__Complex] = ACTIONS(7064), - [anon_sym___complex] = ACTIONS(7064), - [anon_sym_IBOutlet] = ACTIONS(7064), - [anon_sym_IBInspectable] = ACTIONS(7064), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_STAR_EQ] = ACTIONS(7066), - [anon_sym_SLASH_EQ] = ACTIONS(7066), - [anon_sym_PERCENT_EQ] = ACTIONS(7066), - [anon_sym_PLUS_EQ] = ACTIONS(7066), - [anon_sym_DASH_EQ] = ACTIONS(7066), - [anon_sym_LT_LT_EQ] = ACTIONS(7066), - [anon_sym_GT_GT_EQ] = ACTIONS(7066), - [anon_sym_AMP_EQ] = ACTIONS(7066), - [anon_sym_CARET_EQ] = ACTIONS(7066), - [anon_sym_PIPE_EQ] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7030), - [anon_sym_PLUS_PLUS] = ACTIONS(7030), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [sym_identifier] = ACTIONS(7212), + [anon_sym_COMMA] = ACTIONS(7214), + [anon_sym_RPAREN] = ACTIONS(7214), + [anon_sym_LPAREN2] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7212), + [anon_sym_STAR] = ACTIONS(7212), + [anon_sym_SLASH] = ACTIONS(7212), + [anon_sym_PERCENT] = ACTIONS(7212), + [anon_sym_PIPE_PIPE] = ACTIONS(7214), + [anon_sym_AMP_AMP] = ACTIONS(7214), + [anon_sym_PIPE] = ACTIONS(7212), + [anon_sym_CARET] = ACTIONS(7212), + [anon_sym_AMP] = ACTIONS(7212), + [anon_sym_EQ_EQ] = ACTIONS(7214), + [anon_sym_BANG_EQ] = ACTIONS(7214), + [anon_sym_GT] = ACTIONS(7212), + [anon_sym_GT_EQ] = ACTIONS(7214), + [anon_sym_LT_EQ] = ACTIONS(7214), + [anon_sym_LT] = ACTIONS(7212), + [anon_sym_LT_LT] = ACTIONS(7212), + [anon_sym_GT_GT] = ACTIONS(7212), + [anon_sym_SEMI] = ACTIONS(7214), + [anon_sym___attribute] = ACTIONS(7212), + [anon_sym___attribute__] = ACTIONS(7212), + [anon_sym_RBRACE] = ACTIONS(7214), + [anon_sym_LBRACK] = ACTIONS(7214), + [anon_sym_RBRACK] = ACTIONS(7214), + [anon_sym_EQ] = ACTIONS(7212), + [anon_sym_const] = ACTIONS(7212), + [anon_sym_volatile] = ACTIONS(7212), + [anon_sym_restrict] = ACTIONS(7212), + [anon_sym__Atomic] = ACTIONS(7212), + [anon_sym_in] = ACTIONS(7212), + [anon_sym_out] = ACTIONS(7212), + [anon_sym_inout] = ACTIONS(7212), + [anon_sym_bycopy] = ACTIONS(7212), + [anon_sym_byref] = ACTIONS(7212), + [anon_sym_oneway] = ACTIONS(7212), + [anon_sym__Nullable] = ACTIONS(7212), + [anon_sym__Nonnull] = ACTIONS(7212), + [anon_sym__Nullable_result] = ACTIONS(7212), + [anon_sym__Null_unspecified] = ACTIONS(7212), + [anon_sym___autoreleasing] = ACTIONS(7212), + [anon_sym___nullable] = ACTIONS(7212), + [anon_sym___nonnull] = ACTIONS(7212), + [anon_sym___strong] = ACTIONS(7212), + [anon_sym___weak] = ACTIONS(7212), + [anon_sym___bridge] = ACTIONS(7212), + [anon_sym___bridge_transfer] = ACTIONS(7212), + [anon_sym___bridge_retained] = ACTIONS(7212), + [anon_sym___unsafe_unretained] = ACTIONS(7212), + [anon_sym___block] = ACTIONS(7212), + [anon_sym___kindof] = ACTIONS(7212), + [anon_sym___unused] = ACTIONS(7212), + [anon_sym__Complex] = ACTIONS(7212), + [anon_sym___complex] = ACTIONS(7212), + [anon_sym_IBOutlet] = ACTIONS(7212), + [anon_sym_IBInspectable] = ACTIONS(7212), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7212), + [anon_sym_COLON] = ACTIONS(7214), + [anon_sym_QMARK] = ACTIONS(7214), + [anon_sym_STAR_EQ] = ACTIONS(7214), + [anon_sym_SLASH_EQ] = ACTIONS(7214), + [anon_sym_PERCENT_EQ] = ACTIONS(7214), + [anon_sym_PLUS_EQ] = ACTIONS(7214), + [anon_sym_DASH_EQ] = ACTIONS(7214), + [anon_sym_LT_LT_EQ] = ACTIONS(7214), + [anon_sym_GT_GT_EQ] = ACTIONS(7214), + [anon_sym_AMP_EQ] = ACTIONS(7214), + [anon_sym_CARET_EQ] = ACTIONS(7214), + [anon_sym_PIPE_EQ] = ACTIONS(7214), + [anon_sym_DASH_DASH] = ACTIONS(7214), + [anon_sym_PLUS_PLUS] = ACTIONS(7214), + [anon_sym_DOT] = ACTIONS(7214), + [anon_sym_DASH_GT] = ACTIONS(7214), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7064), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7064), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE] = ACTIONS(7064), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_API_AVAILABLE] = ACTIONS(7064), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_API_DEPRECATED] = ACTIONS(7064), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7064), - [anon_sym___deprecated_msg] = ACTIONS(7064), - [anon_sym___deprecated_enum_msg] = ACTIONS(7064), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7064), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7064), + [sym_method_attribute_specifier] = ACTIONS(7212), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7212), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7212), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7212), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7212), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7212), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7212), + [anon_sym_NS_AVAILABLE] = ACTIONS(7212), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7212), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7212), + [anon_sym_API_AVAILABLE] = ACTIONS(7212), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7212), + [anon_sym_API_DEPRECATED] = ACTIONS(7212), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7212), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7212), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7212), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7212), + [anon_sym___deprecated_msg] = ACTIONS(7212), + [anon_sym___deprecated_enum_msg] = ACTIONS(7212), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7212), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7212), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7212), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7212), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7212), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7212), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -493835,109 +492010,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3023] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7004), - [anon_sym_PLUS] = ACTIONS(7004), - [anon_sym_STAR] = ACTIONS(7006), - [anon_sym_SLASH] = ACTIONS(7006), - [anon_sym_PERCENT] = ACTIONS(7006), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7066), - [anon_sym_PIPE] = ACTIONS(7012), - [anon_sym_CARET] = ACTIONS(7014), - [anon_sym_AMP] = ACTIONS(7016), - [anon_sym_EQ_EQ] = ACTIONS(7018), - [anon_sym_BANG_EQ] = ACTIONS(7018), - [anon_sym_GT] = ACTIONS(7020), - [anon_sym_GT_EQ] = ACTIONS(7022), - [anon_sym_LT_EQ] = ACTIONS(7022), - [anon_sym_LT] = ACTIONS(7020), - [anon_sym_LT_LT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7066), - [anon_sym___attribute] = ACTIONS(7064), - [anon_sym___attribute__] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7066), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_const] = ACTIONS(7064), - [anon_sym_volatile] = ACTIONS(7064), - [anon_sym_restrict] = ACTIONS(7064), - [anon_sym__Atomic] = ACTIONS(7064), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_out] = ACTIONS(7064), - [anon_sym_inout] = ACTIONS(7064), - [anon_sym_bycopy] = ACTIONS(7064), - [anon_sym_byref] = ACTIONS(7064), - [anon_sym_oneway] = ACTIONS(7064), - [anon_sym__Nullable] = ACTIONS(7064), - [anon_sym__Nonnull] = ACTIONS(7064), - [anon_sym__Nullable_result] = ACTIONS(7064), - [anon_sym__Null_unspecified] = ACTIONS(7064), - [anon_sym___autoreleasing] = ACTIONS(7064), - [anon_sym___nullable] = ACTIONS(7064), - [anon_sym___nonnull] = ACTIONS(7064), - [anon_sym___strong] = ACTIONS(7064), - [anon_sym___weak] = ACTIONS(7064), - [anon_sym___bridge] = ACTIONS(7064), - [anon_sym___bridge_transfer] = ACTIONS(7064), - [anon_sym___bridge_retained] = ACTIONS(7064), - [anon_sym___unsafe_unretained] = ACTIONS(7064), - [anon_sym___block] = ACTIONS(7064), - [anon_sym___kindof] = ACTIONS(7064), - [anon_sym___unused] = ACTIONS(7064), - [anon_sym__Complex] = ACTIONS(7064), - [anon_sym___complex] = ACTIONS(7064), - [anon_sym_IBOutlet] = ACTIONS(7064), - [anon_sym_IBInspectable] = ACTIONS(7064), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_STAR_EQ] = ACTIONS(7066), - [anon_sym_SLASH_EQ] = ACTIONS(7066), - [anon_sym_PERCENT_EQ] = ACTIONS(7066), - [anon_sym_PLUS_EQ] = ACTIONS(7066), - [anon_sym_DASH_EQ] = ACTIONS(7066), - [anon_sym_LT_LT_EQ] = ACTIONS(7066), - [anon_sym_GT_GT_EQ] = ACTIONS(7066), - [anon_sym_AMP_EQ] = ACTIONS(7066), - [anon_sym_CARET_EQ] = ACTIONS(7066), - [anon_sym_PIPE_EQ] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7030), - [anon_sym_PLUS_PLUS] = ACTIONS(7030), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [sym_identifier] = ACTIONS(7216), + [anon_sym_COMMA] = ACTIONS(7218), + [anon_sym_RPAREN] = ACTIONS(7218), + [anon_sym_LPAREN2] = ACTIONS(7218), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_PLUS] = ACTIONS(7216), + [anon_sym_STAR] = ACTIONS(7216), + [anon_sym_SLASH] = ACTIONS(7216), + [anon_sym_PERCENT] = ACTIONS(7216), + [anon_sym_PIPE_PIPE] = ACTIONS(7218), + [anon_sym_AMP_AMP] = ACTIONS(7218), + [anon_sym_PIPE] = ACTIONS(7216), + [anon_sym_CARET] = ACTIONS(7216), + [anon_sym_AMP] = ACTIONS(7216), + [anon_sym_EQ_EQ] = ACTIONS(7218), + [anon_sym_BANG_EQ] = ACTIONS(7218), + [anon_sym_GT] = ACTIONS(7216), + [anon_sym_GT_EQ] = ACTIONS(7218), + [anon_sym_LT_EQ] = ACTIONS(7218), + [anon_sym_LT] = ACTIONS(7216), + [anon_sym_LT_LT] = ACTIONS(7216), + [anon_sym_GT_GT] = ACTIONS(7216), + [anon_sym_SEMI] = ACTIONS(7218), + [anon_sym___attribute] = ACTIONS(7216), + [anon_sym___attribute__] = ACTIONS(7216), + [anon_sym_RBRACE] = ACTIONS(7218), + [anon_sym_LBRACK] = ACTIONS(7218), + [anon_sym_RBRACK] = ACTIONS(7218), + [anon_sym_EQ] = ACTIONS(7216), + [anon_sym_const] = ACTIONS(7216), + [anon_sym_volatile] = ACTIONS(7216), + [anon_sym_restrict] = ACTIONS(7216), + [anon_sym__Atomic] = ACTIONS(7216), + [anon_sym_in] = ACTIONS(7216), + [anon_sym_out] = ACTIONS(7216), + [anon_sym_inout] = ACTIONS(7216), + [anon_sym_bycopy] = ACTIONS(7216), + [anon_sym_byref] = ACTIONS(7216), + [anon_sym_oneway] = ACTIONS(7216), + [anon_sym__Nullable] = ACTIONS(7216), + [anon_sym__Nonnull] = ACTIONS(7216), + [anon_sym__Nullable_result] = ACTIONS(7216), + [anon_sym__Null_unspecified] = ACTIONS(7216), + [anon_sym___autoreleasing] = ACTIONS(7216), + [anon_sym___nullable] = ACTIONS(7216), + [anon_sym___nonnull] = ACTIONS(7216), + [anon_sym___strong] = ACTIONS(7216), + [anon_sym___weak] = ACTIONS(7216), + [anon_sym___bridge] = ACTIONS(7216), + [anon_sym___bridge_transfer] = ACTIONS(7216), + [anon_sym___bridge_retained] = ACTIONS(7216), + [anon_sym___unsafe_unretained] = ACTIONS(7216), + [anon_sym___block] = ACTIONS(7216), + [anon_sym___kindof] = ACTIONS(7216), + [anon_sym___unused] = ACTIONS(7216), + [anon_sym__Complex] = ACTIONS(7216), + [anon_sym___complex] = ACTIONS(7216), + [anon_sym_IBOutlet] = ACTIONS(7216), + [anon_sym_IBInspectable] = ACTIONS(7216), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7216), + [anon_sym_COLON] = ACTIONS(7218), + [anon_sym_QMARK] = ACTIONS(7218), + [anon_sym_STAR_EQ] = ACTIONS(7218), + [anon_sym_SLASH_EQ] = ACTIONS(7218), + [anon_sym_PERCENT_EQ] = ACTIONS(7218), + [anon_sym_PLUS_EQ] = ACTIONS(7218), + [anon_sym_DASH_EQ] = ACTIONS(7218), + [anon_sym_LT_LT_EQ] = ACTIONS(7218), + [anon_sym_GT_GT_EQ] = ACTIONS(7218), + [anon_sym_AMP_EQ] = ACTIONS(7218), + [anon_sym_CARET_EQ] = ACTIONS(7218), + [anon_sym_PIPE_EQ] = ACTIONS(7218), + [anon_sym_DASH_DASH] = ACTIONS(7218), + [anon_sym_PLUS_PLUS] = ACTIONS(7218), + [anon_sym_DOT] = ACTIONS(7218), + [anon_sym_DASH_GT] = ACTIONS(7218), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7064), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7064), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE] = ACTIONS(7064), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_API_AVAILABLE] = ACTIONS(7064), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_API_DEPRECATED] = ACTIONS(7064), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7064), - [anon_sym___deprecated_msg] = ACTIONS(7064), - [anon_sym___deprecated_enum_msg] = ACTIONS(7064), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7064), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7064), + [sym_method_attribute_specifier] = ACTIONS(7216), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7216), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7216), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7216), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7216), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7216), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7216), + [anon_sym_NS_AVAILABLE] = ACTIONS(7216), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7216), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7216), + [anon_sym_API_AVAILABLE] = ACTIONS(7216), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7216), + [anon_sym_API_DEPRECATED] = ACTIONS(7216), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7216), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7216), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7216), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7216), + [anon_sym___deprecated_msg] = ACTIONS(7216), + [anon_sym___deprecated_enum_msg] = ACTIONS(7216), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7216), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7216), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7216), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7216), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7216), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7216), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -493946,109 +492120,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3024] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7004), - [anon_sym_PLUS] = ACTIONS(7004), - [anon_sym_STAR] = ACTIONS(7006), - [anon_sym_SLASH] = ACTIONS(7006), - [anon_sym_PERCENT] = ACTIONS(7006), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7010), - [anon_sym_PIPE] = ACTIONS(7012), - [anon_sym_CARET] = ACTIONS(7014), - [anon_sym_AMP] = ACTIONS(7016), - [anon_sym_EQ_EQ] = ACTIONS(7018), - [anon_sym_BANG_EQ] = ACTIONS(7018), - [anon_sym_GT] = ACTIONS(7020), - [anon_sym_GT_EQ] = ACTIONS(7022), - [anon_sym_LT_EQ] = ACTIONS(7022), - [anon_sym_LT] = ACTIONS(7020), - [anon_sym_LT_LT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7066), - [anon_sym___attribute] = ACTIONS(7064), - [anon_sym___attribute__] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7066), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_const] = ACTIONS(7064), - [anon_sym_volatile] = ACTIONS(7064), - [anon_sym_restrict] = ACTIONS(7064), - [anon_sym__Atomic] = ACTIONS(7064), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_out] = ACTIONS(7064), - [anon_sym_inout] = ACTIONS(7064), - [anon_sym_bycopy] = ACTIONS(7064), - [anon_sym_byref] = ACTIONS(7064), - [anon_sym_oneway] = ACTIONS(7064), - [anon_sym__Nullable] = ACTIONS(7064), - [anon_sym__Nonnull] = ACTIONS(7064), - [anon_sym__Nullable_result] = ACTIONS(7064), - [anon_sym__Null_unspecified] = ACTIONS(7064), - [anon_sym___autoreleasing] = ACTIONS(7064), - [anon_sym___nullable] = ACTIONS(7064), - [anon_sym___nonnull] = ACTIONS(7064), - [anon_sym___strong] = ACTIONS(7064), - [anon_sym___weak] = ACTIONS(7064), - [anon_sym___bridge] = ACTIONS(7064), - [anon_sym___bridge_transfer] = ACTIONS(7064), - [anon_sym___bridge_retained] = ACTIONS(7064), - [anon_sym___unsafe_unretained] = ACTIONS(7064), - [anon_sym___block] = ACTIONS(7064), - [anon_sym___kindof] = ACTIONS(7064), - [anon_sym___unused] = ACTIONS(7064), - [anon_sym__Complex] = ACTIONS(7064), - [anon_sym___complex] = ACTIONS(7064), - [anon_sym_IBOutlet] = ACTIONS(7064), - [anon_sym_IBInspectable] = ACTIONS(7064), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_STAR_EQ] = ACTIONS(7066), - [anon_sym_SLASH_EQ] = ACTIONS(7066), - [anon_sym_PERCENT_EQ] = ACTIONS(7066), - [anon_sym_PLUS_EQ] = ACTIONS(7066), - [anon_sym_DASH_EQ] = ACTIONS(7066), - [anon_sym_LT_LT_EQ] = ACTIONS(7066), - [anon_sym_GT_GT_EQ] = ACTIONS(7066), - [anon_sym_AMP_EQ] = ACTIONS(7066), - [anon_sym_CARET_EQ] = ACTIONS(7066), - [anon_sym_PIPE_EQ] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7030), - [anon_sym_PLUS_PLUS] = ACTIONS(7030), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [sym_identifier] = ACTIONS(7220), + [anon_sym_COMMA] = ACTIONS(7222), + [anon_sym_RPAREN] = ACTIONS(7222), + [anon_sym_LPAREN2] = ACTIONS(7222), + [anon_sym_DASH] = ACTIONS(7220), + [anon_sym_PLUS] = ACTIONS(7220), + [anon_sym_STAR] = ACTIONS(7220), + [anon_sym_SLASH] = ACTIONS(7220), + [anon_sym_PERCENT] = ACTIONS(7220), + [anon_sym_PIPE_PIPE] = ACTIONS(7222), + [anon_sym_AMP_AMP] = ACTIONS(7222), + [anon_sym_PIPE] = ACTIONS(7220), + [anon_sym_CARET] = ACTIONS(7220), + [anon_sym_AMP] = ACTIONS(7220), + [anon_sym_EQ_EQ] = ACTIONS(7222), + [anon_sym_BANG_EQ] = ACTIONS(7222), + [anon_sym_GT] = ACTIONS(7220), + [anon_sym_GT_EQ] = ACTIONS(7222), + [anon_sym_LT_EQ] = ACTIONS(7222), + [anon_sym_LT] = ACTIONS(7220), + [anon_sym_LT_LT] = ACTIONS(7220), + [anon_sym_GT_GT] = ACTIONS(7220), + [anon_sym_SEMI] = ACTIONS(7222), + [anon_sym___attribute] = ACTIONS(7220), + [anon_sym___attribute__] = ACTIONS(7220), + [anon_sym_RBRACE] = ACTIONS(7222), + [anon_sym_LBRACK] = ACTIONS(7222), + [anon_sym_RBRACK] = ACTIONS(7222), + [anon_sym_EQ] = ACTIONS(7220), + [anon_sym_const] = ACTIONS(7220), + [anon_sym_volatile] = ACTIONS(7220), + [anon_sym_restrict] = ACTIONS(7220), + [anon_sym__Atomic] = ACTIONS(7220), + [anon_sym_in] = ACTIONS(7220), + [anon_sym_out] = ACTIONS(7220), + [anon_sym_inout] = ACTIONS(7220), + [anon_sym_bycopy] = ACTIONS(7220), + [anon_sym_byref] = ACTIONS(7220), + [anon_sym_oneway] = ACTIONS(7220), + [anon_sym__Nullable] = ACTIONS(7220), + [anon_sym__Nonnull] = ACTIONS(7220), + [anon_sym__Nullable_result] = ACTIONS(7220), + [anon_sym__Null_unspecified] = ACTIONS(7220), + [anon_sym___autoreleasing] = ACTIONS(7220), + [anon_sym___nullable] = ACTIONS(7220), + [anon_sym___nonnull] = ACTIONS(7220), + [anon_sym___strong] = ACTIONS(7220), + [anon_sym___weak] = ACTIONS(7220), + [anon_sym___bridge] = ACTIONS(7220), + [anon_sym___bridge_transfer] = ACTIONS(7220), + [anon_sym___bridge_retained] = ACTIONS(7220), + [anon_sym___unsafe_unretained] = ACTIONS(7220), + [anon_sym___block] = ACTIONS(7220), + [anon_sym___kindof] = ACTIONS(7220), + [anon_sym___unused] = ACTIONS(7220), + [anon_sym__Complex] = ACTIONS(7220), + [anon_sym___complex] = ACTIONS(7220), + [anon_sym_IBOutlet] = ACTIONS(7220), + [anon_sym_IBInspectable] = ACTIONS(7220), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7220), + [anon_sym_COLON] = ACTIONS(7222), + [anon_sym_QMARK] = ACTIONS(7222), + [anon_sym_STAR_EQ] = ACTIONS(7222), + [anon_sym_SLASH_EQ] = ACTIONS(7222), + [anon_sym_PERCENT_EQ] = ACTIONS(7222), + [anon_sym_PLUS_EQ] = ACTIONS(7222), + [anon_sym_DASH_EQ] = ACTIONS(7222), + [anon_sym_LT_LT_EQ] = ACTIONS(7222), + [anon_sym_GT_GT_EQ] = ACTIONS(7222), + [anon_sym_AMP_EQ] = ACTIONS(7222), + [anon_sym_CARET_EQ] = ACTIONS(7222), + [anon_sym_PIPE_EQ] = ACTIONS(7222), + [anon_sym_DASH_DASH] = ACTIONS(7222), + [anon_sym_PLUS_PLUS] = ACTIONS(7222), + [anon_sym_DOT] = ACTIONS(7222), + [anon_sym_DASH_GT] = ACTIONS(7222), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7064), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7064), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE] = ACTIONS(7064), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_API_AVAILABLE] = ACTIONS(7064), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_API_DEPRECATED] = ACTIONS(7064), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7064), - [anon_sym___deprecated_msg] = ACTIONS(7064), - [anon_sym___deprecated_enum_msg] = ACTIONS(7064), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7064), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7064), + [sym_method_attribute_specifier] = ACTIONS(7220), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7220), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7220), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7220), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7220), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7220), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7220), + [anon_sym_NS_AVAILABLE] = ACTIONS(7220), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7220), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7220), + [anon_sym_API_AVAILABLE] = ACTIONS(7220), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7220), + [anon_sym_API_DEPRECATED] = ACTIONS(7220), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7220), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7220), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7220), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7220), + [anon_sym___deprecated_msg] = ACTIONS(7220), + [anon_sym___deprecated_enum_msg] = ACTIONS(7220), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7220), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7220), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7220), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7220), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7220), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7220), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -494057,109 +492230,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3025] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7064), - [anon_sym_PLUS] = ACTIONS(7064), - [anon_sym_STAR] = ACTIONS(7064), - [anon_sym_SLASH] = ACTIONS(7064), - [anon_sym_PERCENT] = ACTIONS(7064), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7066), - [anon_sym_PIPE] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7064), - [anon_sym_AMP] = ACTIONS(7064), - [anon_sym_EQ_EQ] = ACTIONS(7066), - [anon_sym_BANG_EQ] = ACTIONS(7066), - [anon_sym_GT] = ACTIONS(7064), - [anon_sym_GT_EQ] = ACTIONS(7066), - [anon_sym_LT_EQ] = ACTIONS(7066), - [anon_sym_LT] = ACTIONS(7064), - [anon_sym_LT_LT] = ACTIONS(7064), - [anon_sym_GT_GT] = ACTIONS(7064), - [anon_sym_SEMI] = ACTIONS(7066), - [anon_sym___attribute] = ACTIONS(7064), - [anon_sym___attribute__] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7066), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_const] = ACTIONS(7064), - [anon_sym_volatile] = ACTIONS(7064), - [anon_sym_restrict] = ACTIONS(7064), - [anon_sym__Atomic] = ACTIONS(7064), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_out] = ACTIONS(7064), - [anon_sym_inout] = ACTIONS(7064), - [anon_sym_bycopy] = ACTIONS(7064), - [anon_sym_byref] = ACTIONS(7064), - [anon_sym_oneway] = ACTIONS(7064), - [anon_sym__Nullable] = ACTIONS(7064), - [anon_sym__Nonnull] = ACTIONS(7064), - [anon_sym__Nullable_result] = ACTIONS(7064), - [anon_sym__Null_unspecified] = ACTIONS(7064), - [anon_sym___autoreleasing] = ACTIONS(7064), - [anon_sym___nullable] = ACTIONS(7064), - [anon_sym___nonnull] = ACTIONS(7064), - [anon_sym___strong] = ACTIONS(7064), - [anon_sym___weak] = ACTIONS(7064), - [anon_sym___bridge] = ACTIONS(7064), - [anon_sym___bridge_transfer] = ACTIONS(7064), - [anon_sym___bridge_retained] = ACTIONS(7064), - [anon_sym___unsafe_unretained] = ACTIONS(7064), - [anon_sym___block] = ACTIONS(7064), - [anon_sym___kindof] = ACTIONS(7064), - [anon_sym___unused] = ACTIONS(7064), - [anon_sym__Complex] = ACTIONS(7064), - [anon_sym___complex] = ACTIONS(7064), - [anon_sym_IBOutlet] = ACTIONS(7064), - [anon_sym_IBInspectable] = ACTIONS(7064), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_STAR_EQ] = ACTIONS(7066), - [anon_sym_SLASH_EQ] = ACTIONS(7066), - [anon_sym_PERCENT_EQ] = ACTIONS(7066), - [anon_sym_PLUS_EQ] = ACTIONS(7066), - [anon_sym_DASH_EQ] = ACTIONS(7066), - [anon_sym_LT_LT_EQ] = ACTIONS(7066), - [anon_sym_GT_GT_EQ] = ACTIONS(7066), - [anon_sym_AMP_EQ] = ACTIONS(7066), - [anon_sym_CARET_EQ] = ACTIONS(7066), - [anon_sym_PIPE_EQ] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7030), - [anon_sym_PLUS_PLUS] = ACTIONS(7030), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [sym_identifier] = ACTIONS(7224), + [aux_sym_preproc_def_token1] = ACTIONS(7226), + [anon_sym_DASH] = ACTIONS(7226), + [anon_sym_PLUS] = ACTIONS(7226), + [anon_sym_typedef] = ACTIONS(7224), + [anon_sym_extern] = ACTIONS(7224), + [anon_sym___attribute] = ACTIONS(7224), + [anon_sym___attribute__] = ACTIONS(7224), + [anon_sym___declspec] = ACTIONS(7224), + [anon_sym___cdecl] = ACTIONS(7224), + [anon_sym___clrcall] = ACTIONS(7224), + [anon_sym___stdcall] = ACTIONS(7224), + [anon_sym___fastcall] = ACTIONS(7224), + [anon_sym___thiscall] = ACTIONS(7224), + [anon_sym___vectorcall] = ACTIONS(7224), + [anon_sym_static] = ACTIONS(7224), + [anon_sym_auto] = ACTIONS(7224), + [anon_sym_register] = ACTIONS(7224), + [anon_sym_inline] = ACTIONS(7224), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7224), + [anon_sym_const] = ACTIONS(7224), + [anon_sym_volatile] = ACTIONS(7224), + [anon_sym_restrict] = ACTIONS(7224), + [anon_sym__Atomic] = ACTIONS(7224), + [anon_sym_in] = ACTIONS(7224), + [anon_sym_out] = ACTIONS(7224), + [anon_sym_inout] = ACTIONS(7224), + [anon_sym_bycopy] = ACTIONS(7224), + [anon_sym_byref] = ACTIONS(7224), + [anon_sym_oneway] = ACTIONS(7224), + [anon_sym__Nullable] = ACTIONS(7224), + [anon_sym__Nonnull] = ACTIONS(7224), + [anon_sym__Nullable_result] = ACTIONS(7224), + [anon_sym__Null_unspecified] = ACTIONS(7224), + [anon_sym___autoreleasing] = ACTIONS(7224), + [anon_sym___nullable] = ACTIONS(7224), + [anon_sym___nonnull] = ACTIONS(7224), + [anon_sym___strong] = ACTIONS(7224), + [anon_sym___weak] = ACTIONS(7224), + [anon_sym___bridge] = ACTIONS(7224), + [anon_sym___bridge_transfer] = ACTIONS(7224), + [anon_sym___bridge_retained] = ACTIONS(7224), + [anon_sym___unsafe_unretained] = ACTIONS(7224), + [anon_sym___block] = ACTIONS(7224), + [anon_sym___kindof] = ACTIONS(7224), + [anon_sym___unused] = ACTIONS(7224), + [anon_sym__Complex] = ACTIONS(7224), + [anon_sym___complex] = ACTIONS(7224), + [anon_sym_IBOutlet] = ACTIONS(7224), + [anon_sym_IBInspectable] = ACTIONS(7224), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7224), + [anon_sym_signed] = ACTIONS(7224), + [anon_sym_unsigned] = ACTIONS(7224), + [anon_sym_long] = ACTIONS(7224), + [anon_sym_short] = ACTIONS(7224), + [sym_primitive_type] = ACTIONS(7224), + [anon_sym_enum] = ACTIONS(7224), + [anon_sym_struct] = ACTIONS(7224), + [anon_sym_union] = ACTIONS(7224), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7064), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7064), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE] = ACTIONS(7064), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_API_AVAILABLE] = ACTIONS(7064), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_API_DEPRECATED] = ACTIONS(7064), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7064), - [anon_sym___deprecated_msg] = ACTIONS(7064), - [anon_sym___deprecated_enum_msg] = ACTIONS(7064), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7064), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7064), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7224), + [anon_sym_ATend] = ACTIONS(7226), + [sym_method_attribute_specifier] = ACTIONS(7224), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7224), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7224), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7224), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7224), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7224), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7224), + [anon_sym_NS_AVAILABLE] = ACTIONS(7224), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7224), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7224), + [anon_sym_API_AVAILABLE] = ACTIONS(7224), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7224), + [anon_sym_API_DEPRECATED] = ACTIONS(7224), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7224), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7224), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7224), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7224), + [anon_sym___deprecated_msg] = ACTIONS(7224), + [anon_sym___deprecated_enum_msg] = ACTIONS(7224), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7224), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7224), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7224), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7224), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7224), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7224), + [anon_sym_ATsynthesize] = ACTIONS(7226), + [anon_sym_ATdynamic] = ACTIONS(7226), + [anon_sym_NS_ENUM] = ACTIONS(7224), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7224), + [anon_sym_NS_OPTIONS] = ACTIONS(7224), + [anon_sym_typeof] = ACTIONS(7224), + [anon_sym___typeof] = ACTIONS(7224), + [anon_sym___typeof__] = ACTIONS(7224), + [sym_id] = ACTIONS(7224), + [sym_instancetype] = ACTIONS(7224), + [sym_Class] = ACTIONS(7224), + [sym_SEL] = ACTIONS(7224), + [sym_IMP] = ACTIONS(7224), + [sym_BOOL] = ACTIONS(7224), + [sym_auto] = ACTIONS(7224), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -494168,109 +492340,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3026] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7064), - [anon_sym_PLUS] = ACTIONS(7064), - [anon_sym_STAR] = ACTIONS(7006), - [anon_sym_SLASH] = ACTIONS(7006), - [anon_sym_PERCENT] = ACTIONS(7006), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7066), - [anon_sym_PIPE] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7064), - [anon_sym_AMP] = ACTIONS(7064), - [anon_sym_EQ_EQ] = ACTIONS(7066), - [anon_sym_BANG_EQ] = ACTIONS(7066), - [anon_sym_GT] = ACTIONS(7064), - [anon_sym_GT_EQ] = ACTIONS(7066), - [anon_sym_LT_EQ] = ACTIONS(7066), - [anon_sym_LT] = ACTIONS(7064), - [anon_sym_LT_LT] = ACTIONS(7064), - [anon_sym_GT_GT] = ACTIONS(7064), - [anon_sym_SEMI] = ACTIONS(7066), - [anon_sym___attribute] = ACTIONS(7064), - [anon_sym___attribute__] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7066), - [anon_sym_EQ] = ACTIONS(7064), - [anon_sym_const] = ACTIONS(7064), - [anon_sym_volatile] = ACTIONS(7064), - [anon_sym_restrict] = ACTIONS(7064), - [anon_sym__Atomic] = ACTIONS(7064), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_out] = ACTIONS(7064), - [anon_sym_inout] = ACTIONS(7064), - [anon_sym_bycopy] = ACTIONS(7064), - [anon_sym_byref] = ACTIONS(7064), - [anon_sym_oneway] = ACTIONS(7064), - [anon_sym__Nullable] = ACTIONS(7064), - [anon_sym__Nonnull] = ACTIONS(7064), - [anon_sym__Nullable_result] = ACTIONS(7064), - [anon_sym__Null_unspecified] = ACTIONS(7064), - [anon_sym___autoreleasing] = ACTIONS(7064), - [anon_sym___nullable] = ACTIONS(7064), - [anon_sym___nonnull] = ACTIONS(7064), - [anon_sym___strong] = ACTIONS(7064), - [anon_sym___weak] = ACTIONS(7064), - [anon_sym___bridge] = ACTIONS(7064), - [anon_sym___bridge_transfer] = ACTIONS(7064), - [anon_sym___bridge_retained] = ACTIONS(7064), - [anon_sym___unsafe_unretained] = ACTIONS(7064), - [anon_sym___block] = ACTIONS(7064), - [anon_sym___kindof] = ACTIONS(7064), - [anon_sym___unused] = ACTIONS(7064), - [anon_sym__Complex] = ACTIONS(7064), - [anon_sym___complex] = ACTIONS(7064), - [anon_sym_IBOutlet] = ACTIONS(7064), - [anon_sym_IBInspectable] = ACTIONS(7064), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_STAR_EQ] = ACTIONS(7066), - [anon_sym_SLASH_EQ] = ACTIONS(7066), - [anon_sym_PERCENT_EQ] = ACTIONS(7066), - [anon_sym_PLUS_EQ] = ACTIONS(7066), - [anon_sym_DASH_EQ] = ACTIONS(7066), - [anon_sym_LT_LT_EQ] = ACTIONS(7066), - [anon_sym_GT_GT_EQ] = ACTIONS(7066), - [anon_sym_AMP_EQ] = ACTIONS(7066), - [anon_sym_CARET_EQ] = ACTIONS(7066), - [anon_sym_PIPE_EQ] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7030), - [anon_sym_PLUS_PLUS] = ACTIONS(7030), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [sym_identifier] = ACTIONS(7228), + [anon_sym_COMMA] = ACTIONS(7230), + [anon_sym_RPAREN] = ACTIONS(7230), + [anon_sym_LPAREN2] = ACTIONS(7230), + [anon_sym_DASH] = ACTIONS(7228), + [anon_sym_PLUS] = ACTIONS(7228), + [anon_sym_STAR] = ACTIONS(7228), + [anon_sym_SLASH] = ACTIONS(7228), + [anon_sym_PERCENT] = ACTIONS(7228), + [anon_sym_PIPE_PIPE] = ACTIONS(7230), + [anon_sym_AMP_AMP] = ACTIONS(7230), + [anon_sym_PIPE] = ACTIONS(7228), + [anon_sym_CARET] = ACTIONS(7228), + [anon_sym_AMP] = ACTIONS(7228), + [anon_sym_EQ_EQ] = ACTIONS(7230), + [anon_sym_BANG_EQ] = ACTIONS(7230), + [anon_sym_GT] = ACTIONS(7228), + [anon_sym_GT_EQ] = ACTIONS(7230), + [anon_sym_LT_EQ] = ACTIONS(7230), + [anon_sym_LT] = ACTIONS(7228), + [anon_sym_LT_LT] = ACTIONS(7228), + [anon_sym_GT_GT] = ACTIONS(7228), + [anon_sym_SEMI] = ACTIONS(7230), + [anon_sym___attribute] = ACTIONS(7228), + [anon_sym___attribute__] = ACTIONS(7228), + [anon_sym_RBRACE] = ACTIONS(7230), + [anon_sym_LBRACK] = ACTIONS(7230), + [anon_sym_RBRACK] = ACTIONS(7230), + [anon_sym_EQ] = ACTIONS(7228), + [anon_sym_const] = ACTIONS(7228), + [anon_sym_volatile] = ACTIONS(7228), + [anon_sym_restrict] = ACTIONS(7228), + [anon_sym__Atomic] = ACTIONS(7228), + [anon_sym_in] = ACTIONS(7228), + [anon_sym_out] = ACTIONS(7228), + [anon_sym_inout] = ACTIONS(7228), + [anon_sym_bycopy] = ACTIONS(7228), + [anon_sym_byref] = ACTIONS(7228), + [anon_sym_oneway] = ACTIONS(7228), + [anon_sym__Nullable] = ACTIONS(7228), + [anon_sym__Nonnull] = ACTIONS(7228), + [anon_sym__Nullable_result] = ACTIONS(7228), + [anon_sym__Null_unspecified] = ACTIONS(7228), + [anon_sym___autoreleasing] = ACTIONS(7228), + [anon_sym___nullable] = ACTIONS(7228), + [anon_sym___nonnull] = ACTIONS(7228), + [anon_sym___strong] = ACTIONS(7228), + [anon_sym___weak] = ACTIONS(7228), + [anon_sym___bridge] = ACTIONS(7228), + [anon_sym___bridge_transfer] = ACTIONS(7228), + [anon_sym___bridge_retained] = ACTIONS(7228), + [anon_sym___unsafe_unretained] = ACTIONS(7228), + [anon_sym___block] = ACTIONS(7228), + [anon_sym___kindof] = ACTIONS(7228), + [anon_sym___unused] = ACTIONS(7228), + [anon_sym__Complex] = ACTIONS(7228), + [anon_sym___complex] = ACTIONS(7228), + [anon_sym_IBOutlet] = ACTIONS(7228), + [anon_sym_IBInspectable] = ACTIONS(7228), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7228), + [anon_sym_COLON] = ACTIONS(7230), + [anon_sym_QMARK] = ACTIONS(7230), + [anon_sym_STAR_EQ] = ACTIONS(7230), + [anon_sym_SLASH_EQ] = ACTIONS(7230), + [anon_sym_PERCENT_EQ] = ACTIONS(7230), + [anon_sym_PLUS_EQ] = ACTIONS(7230), + [anon_sym_DASH_EQ] = ACTIONS(7230), + [anon_sym_LT_LT_EQ] = ACTIONS(7230), + [anon_sym_GT_GT_EQ] = ACTIONS(7230), + [anon_sym_AMP_EQ] = ACTIONS(7230), + [anon_sym_CARET_EQ] = ACTIONS(7230), + [anon_sym_PIPE_EQ] = ACTIONS(7230), + [anon_sym_DASH_DASH] = ACTIONS(7230), + [anon_sym_PLUS_PLUS] = ACTIONS(7230), + [anon_sym_DOT] = ACTIONS(7230), + [anon_sym_DASH_GT] = ACTIONS(7230), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7064), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7064), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE] = ACTIONS(7064), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_API_AVAILABLE] = ACTIONS(7064), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_API_DEPRECATED] = ACTIONS(7064), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7064), - [anon_sym___deprecated_msg] = ACTIONS(7064), - [anon_sym___deprecated_enum_msg] = ACTIONS(7064), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7064), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7064), + [sym_method_attribute_specifier] = ACTIONS(7228), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7228), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7228), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7228), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7228), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7228), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7228), + [anon_sym_NS_AVAILABLE] = ACTIONS(7228), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7228), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7228), + [anon_sym_API_AVAILABLE] = ACTIONS(7228), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7228), + [anon_sym_API_DEPRECATED] = ACTIONS(7228), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7228), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7228), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7228), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7228), + [anon_sym___deprecated_msg] = ACTIONS(7228), + [anon_sym___deprecated_enum_msg] = ACTIONS(7228), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7228), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7228), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7228), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7228), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7228), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7228), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -494279,109 +492450,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3027] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7074), - [anon_sym_COMMA] = ACTIONS(7076), - [anon_sym_RPAREN] = ACTIONS(7076), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7004), - [anon_sym_PLUS] = ACTIONS(7004), - [anon_sym_STAR] = ACTIONS(7006), - [anon_sym_SLASH] = ACTIONS(7006), - [anon_sym_PERCENT] = ACTIONS(7006), - [anon_sym_PIPE_PIPE] = ACTIONS(7008), - [anon_sym_AMP_AMP] = ACTIONS(7010), - [anon_sym_PIPE] = ACTIONS(7012), - [anon_sym_CARET] = ACTIONS(7014), - [anon_sym_AMP] = ACTIONS(7016), - [anon_sym_EQ_EQ] = ACTIONS(7018), - [anon_sym_BANG_EQ] = ACTIONS(7018), - [anon_sym_GT] = ACTIONS(7020), - [anon_sym_GT_EQ] = ACTIONS(7022), - [anon_sym_LT_EQ] = ACTIONS(7022), - [anon_sym_LT] = ACTIONS(7020), - [anon_sym_LT_LT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7076), - [anon_sym___attribute] = ACTIONS(7074), - [anon_sym___attribute__] = ACTIONS(7074), - [anon_sym_RBRACE] = ACTIONS(7076), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7076), - [anon_sym_EQ] = ACTIONS(7074), - [anon_sym_const] = ACTIONS(7074), - [anon_sym_volatile] = ACTIONS(7074), - [anon_sym_restrict] = ACTIONS(7074), - [anon_sym__Atomic] = ACTIONS(7074), - [anon_sym_in] = ACTIONS(7074), - [anon_sym_out] = ACTIONS(7074), - [anon_sym_inout] = ACTIONS(7074), - [anon_sym_bycopy] = ACTIONS(7074), - [anon_sym_byref] = ACTIONS(7074), - [anon_sym_oneway] = ACTIONS(7074), - [anon_sym__Nullable] = ACTIONS(7074), - [anon_sym__Nonnull] = ACTIONS(7074), - [anon_sym__Nullable_result] = ACTIONS(7074), - [anon_sym__Null_unspecified] = ACTIONS(7074), - [anon_sym___autoreleasing] = ACTIONS(7074), - [anon_sym___nullable] = ACTIONS(7074), - [anon_sym___nonnull] = ACTIONS(7074), - [anon_sym___strong] = ACTIONS(7074), - [anon_sym___weak] = ACTIONS(7074), - [anon_sym___bridge] = ACTIONS(7074), - [anon_sym___bridge_transfer] = ACTIONS(7074), - [anon_sym___bridge_retained] = ACTIONS(7074), - [anon_sym___unsafe_unretained] = ACTIONS(7074), - [anon_sym___block] = ACTIONS(7074), - [anon_sym___kindof] = ACTIONS(7074), - [anon_sym___unused] = ACTIONS(7074), - [anon_sym__Complex] = ACTIONS(7074), - [anon_sym___complex] = ACTIONS(7074), - [anon_sym_IBOutlet] = ACTIONS(7074), - [anon_sym_IBInspectable] = ACTIONS(7074), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7074), - [anon_sym_COLON] = ACTIONS(7076), - [anon_sym_QMARK] = ACTIONS(7076), - [anon_sym_STAR_EQ] = ACTIONS(7076), - [anon_sym_SLASH_EQ] = ACTIONS(7076), - [anon_sym_PERCENT_EQ] = ACTIONS(7076), - [anon_sym_PLUS_EQ] = ACTIONS(7076), - [anon_sym_DASH_EQ] = ACTIONS(7076), - [anon_sym_LT_LT_EQ] = ACTIONS(7076), - [anon_sym_GT_GT_EQ] = ACTIONS(7076), - [anon_sym_AMP_EQ] = ACTIONS(7076), - [anon_sym_CARET_EQ] = ACTIONS(7076), - [anon_sym_PIPE_EQ] = ACTIONS(7076), - [anon_sym_DASH_DASH] = ACTIONS(7030), - [anon_sym_PLUS_PLUS] = ACTIONS(7030), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [sym_identifier] = ACTIONS(7232), + [anon_sym_COMMA] = ACTIONS(7234), + [anon_sym_RPAREN] = ACTIONS(7234), + [anon_sym_LPAREN2] = ACTIONS(7234), + [anon_sym_DASH] = ACTIONS(7232), + [anon_sym_PLUS] = ACTIONS(7232), + [anon_sym_STAR] = ACTIONS(7232), + [anon_sym_SLASH] = ACTIONS(7232), + [anon_sym_PERCENT] = ACTIONS(7232), + [anon_sym_PIPE_PIPE] = ACTIONS(7234), + [anon_sym_AMP_AMP] = ACTIONS(7234), + [anon_sym_PIPE] = ACTIONS(7232), + [anon_sym_CARET] = ACTIONS(7232), + [anon_sym_AMP] = ACTIONS(7232), + [anon_sym_EQ_EQ] = ACTIONS(7234), + [anon_sym_BANG_EQ] = ACTIONS(7234), + [anon_sym_GT] = ACTIONS(7232), + [anon_sym_GT_EQ] = ACTIONS(7234), + [anon_sym_LT_EQ] = ACTIONS(7234), + [anon_sym_LT] = ACTIONS(7232), + [anon_sym_LT_LT] = ACTIONS(7232), + [anon_sym_GT_GT] = ACTIONS(7232), + [anon_sym_SEMI] = ACTIONS(7234), + [anon_sym___attribute] = ACTIONS(7232), + [anon_sym___attribute__] = ACTIONS(7232), + [anon_sym_RBRACE] = ACTIONS(7234), + [anon_sym_LBRACK] = ACTIONS(7234), + [anon_sym_RBRACK] = ACTIONS(7234), + [anon_sym_EQ] = ACTIONS(7232), + [anon_sym_const] = ACTIONS(7232), + [anon_sym_volatile] = ACTIONS(7232), + [anon_sym_restrict] = ACTIONS(7232), + [anon_sym__Atomic] = ACTIONS(7232), + [anon_sym_in] = ACTIONS(7232), + [anon_sym_out] = ACTIONS(7232), + [anon_sym_inout] = ACTIONS(7232), + [anon_sym_bycopy] = ACTIONS(7232), + [anon_sym_byref] = ACTIONS(7232), + [anon_sym_oneway] = ACTIONS(7232), + [anon_sym__Nullable] = ACTIONS(7232), + [anon_sym__Nonnull] = ACTIONS(7232), + [anon_sym__Nullable_result] = ACTIONS(7232), + [anon_sym__Null_unspecified] = ACTIONS(7232), + [anon_sym___autoreleasing] = ACTIONS(7232), + [anon_sym___nullable] = ACTIONS(7232), + [anon_sym___nonnull] = ACTIONS(7232), + [anon_sym___strong] = ACTIONS(7232), + [anon_sym___weak] = ACTIONS(7232), + [anon_sym___bridge] = ACTIONS(7232), + [anon_sym___bridge_transfer] = ACTIONS(7232), + [anon_sym___bridge_retained] = ACTIONS(7232), + [anon_sym___unsafe_unretained] = ACTIONS(7232), + [anon_sym___block] = ACTIONS(7232), + [anon_sym___kindof] = ACTIONS(7232), + [anon_sym___unused] = ACTIONS(7232), + [anon_sym__Complex] = ACTIONS(7232), + [anon_sym___complex] = ACTIONS(7232), + [anon_sym_IBOutlet] = ACTIONS(7232), + [anon_sym_IBInspectable] = ACTIONS(7232), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7232), + [anon_sym_COLON] = ACTIONS(7234), + [anon_sym_QMARK] = ACTIONS(7234), + [anon_sym_STAR_EQ] = ACTIONS(7234), + [anon_sym_SLASH_EQ] = ACTIONS(7234), + [anon_sym_PERCENT_EQ] = ACTIONS(7234), + [anon_sym_PLUS_EQ] = ACTIONS(7234), + [anon_sym_DASH_EQ] = ACTIONS(7234), + [anon_sym_LT_LT_EQ] = ACTIONS(7234), + [anon_sym_GT_GT_EQ] = ACTIONS(7234), + [anon_sym_AMP_EQ] = ACTIONS(7234), + [anon_sym_CARET_EQ] = ACTIONS(7234), + [anon_sym_PIPE_EQ] = ACTIONS(7234), + [anon_sym_DASH_DASH] = ACTIONS(7234), + [anon_sym_PLUS_PLUS] = ACTIONS(7234), + [anon_sym_DOT] = ACTIONS(7234), + [anon_sym_DASH_GT] = ACTIONS(7234), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7074), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7074), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7074), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7074), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7074), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7074), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7074), - [anon_sym_NS_AVAILABLE] = ACTIONS(7074), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7074), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7074), - [anon_sym_API_AVAILABLE] = ACTIONS(7074), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7074), - [anon_sym_API_DEPRECATED] = ACTIONS(7074), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7074), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7074), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7074), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7074), - [anon_sym___deprecated_msg] = ACTIONS(7074), - [anon_sym___deprecated_enum_msg] = ACTIONS(7074), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7074), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7074), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7074), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7074), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7074), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7074), + [sym_method_attribute_specifier] = ACTIONS(7232), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7232), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7232), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7232), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7232), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7232), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7232), + [anon_sym_NS_AVAILABLE] = ACTIONS(7232), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7232), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7232), + [anon_sym_API_AVAILABLE] = ACTIONS(7232), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7232), + [anon_sym_API_DEPRECATED] = ACTIONS(7232), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7232), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7232), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7232), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7232), + [anon_sym___deprecated_msg] = ACTIONS(7232), + [anon_sym___deprecated_enum_msg] = ACTIONS(7232), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7232), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7232), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7232), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7232), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7232), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7232), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -494390,109 +492560,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3028] = { - [sym_identifier] = ACTIONS(7078), - [aux_sym_preproc_def_token1] = ACTIONS(7080), - [anon_sym_DASH] = ACTIONS(7080), - [anon_sym_PLUS] = ACTIONS(7080), - [anon_sym_SEMI] = ACTIONS(7082), - [anon_sym_typedef] = ACTIONS(7078), - [anon_sym_extern] = ACTIONS(7078), - [anon_sym___attribute] = ACTIONS(7078), - [anon_sym___attribute__] = ACTIONS(7078), - [anon_sym___declspec] = ACTIONS(7078), - [anon_sym___cdecl] = ACTIONS(7078), - [anon_sym___clrcall] = ACTIONS(7078), - [anon_sym___stdcall] = ACTIONS(7078), - [anon_sym___fastcall] = ACTIONS(7078), - [anon_sym___thiscall] = ACTIONS(7078), - [anon_sym___vectorcall] = ACTIONS(7078), - [anon_sym_static] = ACTIONS(7078), - [anon_sym_auto] = ACTIONS(7078), - [anon_sym_register] = ACTIONS(7078), - [anon_sym_inline] = ACTIONS(7078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7078), - [anon_sym_const] = ACTIONS(7078), - [anon_sym_volatile] = ACTIONS(7078), - [anon_sym_restrict] = ACTIONS(7078), - [anon_sym__Atomic] = ACTIONS(7078), - [anon_sym_in] = ACTIONS(7078), - [anon_sym_out] = ACTIONS(7078), - [anon_sym_inout] = ACTIONS(7078), - [anon_sym_bycopy] = ACTIONS(7078), - [anon_sym_byref] = ACTIONS(7078), - [anon_sym_oneway] = ACTIONS(7078), - [anon_sym__Nullable] = ACTIONS(7078), - [anon_sym__Nonnull] = ACTIONS(7078), - [anon_sym__Nullable_result] = ACTIONS(7078), - [anon_sym__Null_unspecified] = ACTIONS(7078), - [anon_sym___autoreleasing] = ACTIONS(7078), - [anon_sym___nullable] = ACTIONS(7078), - [anon_sym___nonnull] = ACTIONS(7078), - [anon_sym___strong] = ACTIONS(7078), - [anon_sym___weak] = ACTIONS(7078), - [anon_sym___bridge] = ACTIONS(7078), - [anon_sym___bridge_transfer] = ACTIONS(7078), - [anon_sym___bridge_retained] = ACTIONS(7078), - [anon_sym___unsafe_unretained] = ACTIONS(7078), - [anon_sym___block] = ACTIONS(7078), - [anon_sym___kindof] = ACTIONS(7078), - [anon_sym___unused] = ACTIONS(7078), - [anon_sym__Complex] = ACTIONS(7078), - [anon_sym___complex] = ACTIONS(7078), - [anon_sym_IBOutlet] = ACTIONS(7078), - [anon_sym_IBInspectable] = ACTIONS(7078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7078), - [anon_sym_signed] = ACTIONS(7078), - [anon_sym_unsigned] = ACTIONS(7078), - [anon_sym_long] = ACTIONS(7078), - [anon_sym_short] = ACTIONS(7078), - [sym_primitive_type] = ACTIONS(7078), - [anon_sym_enum] = ACTIONS(7078), - [anon_sym_NS_ENUM] = ACTIONS(7078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7078), - [anon_sym_NS_OPTIONS] = ACTIONS(7078), - [anon_sym_struct] = ACTIONS(7078), - [anon_sym_union] = ACTIONS(7078), + [sym_identifier] = ACTIONS(7236), + [aux_sym_preproc_def_token1] = ACTIONS(7238), + [anon_sym_DASH] = ACTIONS(7238), + [anon_sym_PLUS] = ACTIONS(7238), + [anon_sym_typedef] = ACTIONS(7236), + [anon_sym_extern] = ACTIONS(7236), + [anon_sym___attribute] = ACTIONS(7236), + [anon_sym___attribute__] = ACTIONS(7236), + [anon_sym___declspec] = ACTIONS(7236), + [anon_sym___cdecl] = ACTIONS(7236), + [anon_sym___clrcall] = ACTIONS(7236), + [anon_sym___stdcall] = ACTIONS(7236), + [anon_sym___fastcall] = ACTIONS(7236), + [anon_sym___thiscall] = ACTIONS(7236), + [anon_sym___vectorcall] = ACTIONS(7236), + [anon_sym_static] = ACTIONS(7236), + [anon_sym_auto] = ACTIONS(7236), + [anon_sym_register] = ACTIONS(7236), + [anon_sym_inline] = ACTIONS(7236), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7236), + [anon_sym_const] = ACTIONS(7236), + [anon_sym_volatile] = ACTIONS(7236), + [anon_sym_restrict] = ACTIONS(7236), + [anon_sym__Atomic] = ACTIONS(7236), + [anon_sym_in] = ACTIONS(7236), + [anon_sym_out] = ACTIONS(7236), + [anon_sym_inout] = ACTIONS(7236), + [anon_sym_bycopy] = ACTIONS(7236), + [anon_sym_byref] = ACTIONS(7236), + [anon_sym_oneway] = ACTIONS(7236), + [anon_sym__Nullable] = ACTIONS(7236), + [anon_sym__Nonnull] = ACTIONS(7236), + [anon_sym__Nullable_result] = ACTIONS(7236), + [anon_sym__Null_unspecified] = ACTIONS(7236), + [anon_sym___autoreleasing] = ACTIONS(7236), + [anon_sym___nullable] = ACTIONS(7236), + [anon_sym___nonnull] = ACTIONS(7236), + [anon_sym___strong] = ACTIONS(7236), + [anon_sym___weak] = ACTIONS(7236), + [anon_sym___bridge] = ACTIONS(7236), + [anon_sym___bridge_transfer] = ACTIONS(7236), + [anon_sym___bridge_retained] = ACTIONS(7236), + [anon_sym___unsafe_unretained] = ACTIONS(7236), + [anon_sym___block] = ACTIONS(7236), + [anon_sym___kindof] = ACTIONS(7236), + [anon_sym___unused] = ACTIONS(7236), + [anon_sym__Complex] = ACTIONS(7236), + [anon_sym___complex] = ACTIONS(7236), + [anon_sym_IBOutlet] = ACTIONS(7236), + [anon_sym_IBInspectable] = ACTIONS(7236), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7236), + [anon_sym_signed] = ACTIONS(7236), + [anon_sym_unsigned] = ACTIONS(7236), + [anon_sym_long] = ACTIONS(7236), + [anon_sym_short] = ACTIONS(7236), + [sym_primitive_type] = ACTIONS(7236), + [anon_sym_enum] = ACTIONS(7236), + [anon_sym_struct] = ACTIONS(7236), + [anon_sym_union] = ACTIONS(7236), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7078), - [anon_sym_ATend] = ACTIONS(7080), - [sym_method_attribute_specifier] = ACTIONS(7078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7078), - [anon_sym_NS_AVAILABLE] = ACTIONS(7078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7078), - [anon_sym_API_AVAILABLE] = ACTIONS(7078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7078), - [anon_sym_API_DEPRECATED] = ACTIONS(7078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7078), - [anon_sym___deprecated_msg] = ACTIONS(7078), - [anon_sym___deprecated_enum_msg] = ACTIONS(7078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7078), - [anon_sym_ATsynthesize] = ACTIONS(7080), - [anon_sym_ATdynamic] = ACTIONS(7080), - [anon_sym_typeof] = ACTIONS(7078), - [anon_sym___typeof] = ACTIONS(7078), - [anon_sym___typeof__] = ACTIONS(7078), - [sym_id] = ACTIONS(7078), - [sym_instancetype] = ACTIONS(7078), - [sym_Class] = ACTIONS(7078), - [sym_SEL] = ACTIONS(7078), - [sym_IMP] = ACTIONS(7078), - [sym_BOOL] = ACTIONS(7078), - [sym_auto] = ACTIONS(7078), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7236), + [anon_sym_ATend] = ACTIONS(7238), + [sym_method_attribute_specifier] = ACTIONS(7236), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7236), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7236), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7236), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7236), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7236), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7236), + [anon_sym_NS_AVAILABLE] = ACTIONS(7236), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7236), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7236), + [anon_sym_API_AVAILABLE] = ACTIONS(7236), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7236), + [anon_sym_API_DEPRECATED] = ACTIONS(7236), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7236), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7236), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7236), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7236), + [anon_sym___deprecated_msg] = ACTIONS(7236), + [anon_sym___deprecated_enum_msg] = ACTIONS(7236), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7236), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7236), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7236), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7236), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7236), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7236), + [anon_sym_ATsynthesize] = ACTIONS(7238), + [anon_sym_ATdynamic] = ACTIONS(7238), + [anon_sym_NS_ENUM] = ACTIONS(7236), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7236), + [anon_sym_NS_OPTIONS] = ACTIONS(7236), + [anon_sym_typeof] = ACTIONS(7236), + [anon_sym___typeof] = ACTIONS(7236), + [anon_sym___typeof__] = ACTIONS(7236), + [sym_id] = ACTIONS(7236), + [sym_instancetype] = ACTIONS(7236), + [sym_Class] = ACTIONS(7236), + [sym_SEL] = ACTIONS(7236), + [sym_IMP] = ACTIONS(7236), + [sym_BOOL] = ACTIONS(7236), + [sym_auto] = ACTIONS(7236), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -494501,109 +492670,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3029] = { - [sym_attribute_specifier] = STATE(3255), - [sym_ms_declspec_modifier] = STATE(3255), - [sym_storage_class_specifier] = STATE(3255), - [sym_type_qualifier] = STATE(3255), - [sym__type_specifier] = STATE(3384), - [sym_sized_type_specifier] = STATE(3384), - [sym_enum_specifier] = STATE(3384), - [sym_struct_specifier] = STATE(3384), - [sym_union_specifier] = STATE(3384), - [sym_macro_type_specifier] = STATE(3384), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3384), - [sym_atomic_specifier] = STATE(3384), - [sym_generic_type_specifier] = STATE(3384), - [aux_sym__declaration_specifiers_repeat1] = STATE(3255), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(7084), - [anon_sym_enum] = ACTIONS(6555), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(6557), - [anon_sym_union] = ACTIONS(61), + [sym_identifier] = ACTIONS(7240), + [anon_sym_COMMA] = ACTIONS(7242), + [anon_sym_RPAREN] = ACTIONS(7242), + [anon_sym_LPAREN2] = ACTIONS(7242), + [anon_sym_DASH] = ACTIONS(7240), + [anon_sym_PLUS] = ACTIONS(7240), + [anon_sym_STAR] = ACTIONS(7240), + [anon_sym_SLASH] = ACTIONS(7240), + [anon_sym_PERCENT] = ACTIONS(7240), + [anon_sym_PIPE_PIPE] = ACTIONS(7242), + [anon_sym_AMP_AMP] = ACTIONS(7242), + [anon_sym_PIPE] = ACTIONS(7240), + [anon_sym_CARET] = ACTIONS(7240), + [anon_sym_AMP] = ACTIONS(7240), + [anon_sym_EQ_EQ] = ACTIONS(7242), + [anon_sym_BANG_EQ] = ACTIONS(7242), + [anon_sym_GT] = ACTIONS(7240), + [anon_sym_GT_EQ] = ACTIONS(7242), + [anon_sym_LT_EQ] = ACTIONS(7242), + [anon_sym_LT] = ACTIONS(7240), + [anon_sym_LT_LT] = ACTIONS(7240), + [anon_sym_GT_GT] = ACTIONS(7240), + [anon_sym_SEMI] = ACTIONS(7242), + [anon_sym___attribute] = ACTIONS(7240), + [anon_sym___attribute__] = ACTIONS(7240), + [anon_sym_RBRACE] = ACTIONS(7242), + [anon_sym_LBRACK] = ACTIONS(7242), + [anon_sym_RBRACK] = ACTIONS(7242), + [anon_sym_EQ] = ACTIONS(7240), + [anon_sym_const] = ACTIONS(7240), + [anon_sym_volatile] = ACTIONS(7240), + [anon_sym_restrict] = ACTIONS(7240), + [anon_sym__Atomic] = ACTIONS(7240), + [anon_sym_in] = ACTIONS(7240), + [anon_sym_out] = ACTIONS(7240), + [anon_sym_inout] = ACTIONS(7240), + [anon_sym_bycopy] = ACTIONS(7240), + [anon_sym_byref] = ACTIONS(7240), + [anon_sym_oneway] = ACTIONS(7240), + [anon_sym__Nullable] = ACTIONS(7240), + [anon_sym__Nonnull] = ACTIONS(7240), + [anon_sym__Nullable_result] = ACTIONS(7240), + [anon_sym__Null_unspecified] = ACTIONS(7240), + [anon_sym___autoreleasing] = ACTIONS(7240), + [anon_sym___nullable] = ACTIONS(7240), + [anon_sym___nonnull] = ACTIONS(7240), + [anon_sym___strong] = ACTIONS(7240), + [anon_sym___weak] = ACTIONS(7240), + [anon_sym___bridge] = ACTIONS(7240), + [anon_sym___bridge_transfer] = ACTIONS(7240), + [anon_sym___bridge_retained] = ACTIONS(7240), + [anon_sym___unsafe_unretained] = ACTIONS(7240), + [anon_sym___block] = ACTIONS(7240), + [anon_sym___kindof] = ACTIONS(7240), + [anon_sym___unused] = ACTIONS(7240), + [anon_sym__Complex] = ACTIONS(7240), + [anon_sym___complex] = ACTIONS(7240), + [anon_sym_IBOutlet] = ACTIONS(7240), + [anon_sym_IBInspectable] = ACTIONS(7240), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7240), + [anon_sym_COLON] = ACTIONS(7242), + [anon_sym_QMARK] = ACTIONS(7242), + [anon_sym_STAR_EQ] = ACTIONS(7242), + [anon_sym_SLASH_EQ] = ACTIONS(7242), + [anon_sym_PERCENT_EQ] = ACTIONS(7242), + [anon_sym_PLUS_EQ] = ACTIONS(7242), + [anon_sym_DASH_EQ] = ACTIONS(7242), + [anon_sym_LT_LT_EQ] = ACTIONS(7242), + [anon_sym_GT_GT_EQ] = ACTIONS(7242), + [anon_sym_AMP_EQ] = ACTIONS(7242), + [anon_sym_CARET_EQ] = ACTIONS(7242), + [anon_sym_PIPE_EQ] = ACTIONS(7242), + [anon_sym_DASH_DASH] = ACTIONS(7242), + [anon_sym_PLUS_PLUS] = ACTIONS(7242), + [anon_sym_DOT] = ACTIONS(7242), + [anon_sym_DASH_GT] = ACTIONS(7242), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(7084), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(7084), - [sym_IMP] = ACTIONS(7084), - [sym_BOOL] = ACTIONS(7084), - [sym_auto] = ACTIONS(7084), + [sym_method_attribute_specifier] = ACTIONS(7240), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7240), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7240), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7240), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7240), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7240), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7240), + [anon_sym_NS_AVAILABLE] = ACTIONS(7240), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7240), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7240), + [anon_sym_API_AVAILABLE] = ACTIONS(7240), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7240), + [anon_sym_API_DEPRECATED] = ACTIONS(7240), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7240), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7240), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7240), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7240), + [anon_sym___deprecated_msg] = ACTIONS(7240), + [anon_sym___deprecated_enum_msg] = ACTIONS(7240), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7240), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7240), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7240), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7240), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7240), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7240), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -494612,109 +492780,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3030] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7086), - [anon_sym_COMMA] = ACTIONS(7088), - [anon_sym_RPAREN] = ACTIONS(7088), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7086), - [anon_sym_PLUS] = ACTIONS(7086), - [anon_sym_STAR] = ACTIONS(7086), - [anon_sym_SLASH] = ACTIONS(7086), - [anon_sym_PERCENT] = ACTIONS(7086), - [anon_sym_PIPE_PIPE] = ACTIONS(7088), - [anon_sym_AMP_AMP] = ACTIONS(7088), - [anon_sym_PIPE] = ACTIONS(7086), - [anon_sym_CARET] = ACTIONS(7086), - [anon_sym_AMP] = ACTIONS(7086), - [anon_sym_EQ_EQ] = ACTIONS(7088), - [anon_sym_BANG_EQ] = ACTIONS(7088), - [anon_sym_GT] = ACTIONS(7086), - [anon_sym_GT_EQ] = ACTIONS(7088), - [anon_sym_LT_EQ] = ACTIONS(7088), - [anon_sym_LT] = ACTIONS(7086), - [anon_sym_LT_LT] = ACTIONS(7086), - [anon_sym_GT_GT] = ACTIONS(7086), - [anon_sym_SEMI] = ACTIONS(7088), - [anon_sym___attribute] = ACTIONS(7086), - [anon_sym___attribute__] = ACTIONS(7086), - [anon_sym_RBRACE] = ACTIONS(7088), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7088), - [anon_sym_EQ] = ACTIONS(7086), - [anon_sym_const] = ACTIONS(7086), - [anon_sym_volatile] = ACTIONS(7086), - [anon_sym_restrict] = ACTIONS(7086), - [anon_sym__Atomic] = ACTIONS(7086), - [anon_sym_in] = ACTIONS(7086), - [anon_sym_out] = ACTIONS(7086), - [anon_sym_inout] = ACTIONS(7086), - [anon_sym_bycopy] = ACTIONS(7086), - [anon_sym_byref] = ACTIONS(7086), - [anon_sym_oneway] = ACTIONS(7086), - [anon_sym__Nullable] = ACTIONS(7086), - [anon_sym__Nonnull] = ACTIONS(7086), - [anon_sym__Nullable_result] = ACTIONS(7086), - [anon_sym__Null_unspecified] = ACTIONS(7086), - [anon_sym___autoreleasing] = ACTIONS(7086), - [anon_sym___nullable] = ACTIONS(7086), - [anon_sym___nonnull] = ACTIONS(7086), - [anon_sym___strong] = ACTIONS(7086), - [anon_sym___weak] = ACTIONS(7086), - [anon_sym___bridge] = ACTIONS(7086), - [anon_sym___bridge_transfer] = ACTIONS(7086), - [anon_sym___bridge_retained] = ACTIONS(7086), - [anon_sym___unsafe_unretained] = ACTIONS(7086), - [anon_sym___block] = ACTIONS(7086), - [anon_sym___kindof] = ACTIONS(7086), - [anon_sym___unused] = ACTIONS(7086), - [anon_sym__Complex] = ACTIONS(7086), - [anon_sym___complex] = ACTIONS(7086), - [anon_sym_IBOutlet] = ACTIONS(7086), - [anon_sym_IBInspectable] = ACTIONS(7086), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7086), - [anon_sym_COLON] = ACTIONS(7088), - [anon_sym_QMARK] = ACTIONS(7088), - [anon_sym_STAR_EQ] = ACTIONS(7088), - [anon_sym_SLASH_EQ] = ACTIONS(7088), - [anon_sym_PERCENT_EQ] = ACTIONS(7088), - [anon_sym_PLUS_EQ] = ACTIONS(7088), - [anon_sym_DASH_EQ] = ACTIONS(7088), - [anon_sym_LT_LT_EQ] = ACTIONS(7088), - [anon_sym_GT_GT_EQ] = ACTIONS(7088), - [anon_sym_AMP_EQ] = ACTIONS(7088), - [anon_sym_CARET_EQ] = ACTIONS(7088), - [anon_sym_PIPE_EQ] = ACTIONS(7088), - [anon_sym_DASH_DASH] = ACTIONS(7030), - [anon_sym_PLUS_PLUS] = ACTIONS(7030), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [sym_identifier] = ACTIONS(7244), + [aux_sym_preproc_def_token1] = ACTIONS(7246), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_typedef] = ACTIONS(7244), + [anon_sym_extern] = ACTIONS(7244), + [anon_sym___attribute] = ACTIONS(7244), + [anon_sym___attribute__] = ACTIONS(7244), + [anon_sym___declspec] = ACTIONS(7244), + [anon_sym___cdecl] = ACTIONS(7244), + [anon_sym___clrcall] = ACTIONS(7244), + [anon_sym___stdcall] = ACTIONS(7244), + [anon_sym___fastcall] = ACTIONS(7244), + [anon_sym___thiscall] = ACTIONS(7244), + [anon_sym___vectorcall] = ACTIONS(7244), + [anon_sym_static] = ACTIONS(7244), + [anon_sym_auto] = ACTIONS(7244), + [anon_sym_register] = ACTIONS(7244), + [anon_sym_inline] = ACTIONS(7244), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7244), + [anon_sym_const] = ACTIONS(7244), + [anon_sym_volatile] = ACTIONS(7244), + [anon_sym_restrict] = ACTIONS(7244), + [anon_sym__Atomic] = ACTIONS(7244), + [anon_sym_in] = ACTIONS(7244), + [anon_sym_out] = ACTIONS(7244), + [anon_sym_inout] = ACTIONS(7244), + [anon_sym_bycopy] = ACTIONS(7244), + [anon_sym_byref] = ACTIONS(7244), + [anon_sym_oneway] = ACTIONS(7244), + [anon_sym__Nullable] = ACTIONS(7244), + [anon_sym__Nonnull] = ACTIONS(7244), + [anon_sym__Nullable_result] = ACTIONS(7244), + [anon_sym__Null_unspecified] = ACTIONS(7244), + [anon_sym___autoreleasing] = ACTIONS(7244), + [anon_sym___nullable] = ACTIONS(7244), + [anon_sym___nonnull] = ACTIONS(7244), + [anon_sym___strong] = ACTIONS(7244), + [anon_sym___weak] = ACTIONS(7244), + [anon_sym___bridge] = ACTIONS(7244), + [anon_sym___bridge_transfer] = ACTIONS(7244), + [anon_sym___bridge_retained] = ACTIONS(7244), + [anon_sym___unsafe_unretained] = ACTIONS(7244), + [anon_sym___block] = ACTIONS(7244), + [anon_sym___kindof] = ACTIONS(7244), + [anon_sym___unused] = ACTIONS(7244), + [anon_sym__Complex] = ACTIONS(7244), + [anon_sym___complex] = ACTIONS(7244), + [anon_sym_IBOutlet] = ACTIONS(7244), + [anon_sym_IBInspectable] = ACTIONS(7244), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7244), + [anon_sym_signed] = ACTIONS(7244), + [anon_sym_unsigned] = ACTIONS(7244), + [anon_sym_long] = ACTIONS(7244), + [anon_sym_short] = ACTIONS(7244), + [sym_primitive_type] = ACTIONS(7244), + [anon_sym_enum] = ACTIONS(7244), + [anon_sym_struct] = ACTIONS(7244), + [anon_sym_union] = ACTIONS(7244), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7086), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7086), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7086), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7086), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7086), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7086), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7086), - [anon_sym_NS_AVAILABLE] = ACTIONS(7086), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7086), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7086), - [anon_sym_API_AVAILABLE] = ACTIONS(7086), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7086), - [anon_sym_API_DEPRECATED] = ACTIONS(7086), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7086), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7086), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7086), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7086), - [anon_sym___deprecated_msg] = ACTIONS(7086), - [anon_sym___deprecated_enum_msg] = ACTIONS(7086), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7086), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7086), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7086), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7086), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7086), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7086), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7244), + [anon_sym_ATend] = ACTIONS(7246), + [sym_method_attribute_specifier] = ACTIONS(7244), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7244), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7244), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7244), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7244), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7244), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7244), + [anon_sym_NS_AVAILABLE] = ACTIONS(7244), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7244), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7244), + [anon_sym_API_AVAILABLE] = ACTIONS(7244), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7244), + [anon_sym_API_DEPRECATED] = ACTIONS(7244), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7244), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7244), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7244), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7244), + [anon_sym___deprecated_msg] = ACTIONS(7244), + [anon_sym___deprecated_enum_msg] = ACTIONS(7244), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7244), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7244), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7244), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7244), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7244), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7244), + [anon_sym_ATsynthesize] = ACTIONS(7246), + [anon_sym_ATdynamic] = ACTIONS(7246), + [anon_sym_NS_ENUM] = ACTIONS(7244), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7244), + [anon_sym_NS_OPTIONS] = ACTIONS(7244), + [anon_sym_typeof] = ACTIONS(7244), + [anon_sym___typeof] = ACTIONS(7244), + [anon_sym___typeof__] = ACTIONS(7244), + [sym_id] = ACTIONS(7244), + [sym_instancetype] = ACTIONS(7244), + [sym_Class] = ACTIONS(7244), + [sym_SEL] = ACTIONS(7244), + [sym_IMP] = ACTIONS(7244), + [sym_BOOL] = ACTIONS(7244), + [sym_auto] = ACTIONS(7244), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -494723,109 +492890,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3031] = { - [sym_attribute_specifier] = STATE(3255), - [sym_ms_declspec_modifier] = STATE(3255), - [sym_storage_class_specifier] = STATE(3255), - [sym_type_qualifier] = STATE(3255), - [sym__type_specifier] = STATE(3384), - [sym_sized_type_specifier] = STATE(3384), - [sym_enum_specifier] = STATE(3384), - [sym_struct_specifier] = STATE(3384), - [sym_union_specifier] = STATE(3384), - [sym_macro_type_specifier] = STATE(3384), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_typeof_specifier] = STATE(3384), - [sym_atomic_specifier] = STATE(3384), - [sym_generic_type_specifier] = STATE(3384), - [aux_sym__declaration_specifiers_repeat1] = STATE(3255), - [aux_sym_sized_type_specifier_repeat1] = STATE(3382), - [sym_identifier] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [aux_sym_storage_class_specifier_token1] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(49), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(47), - [anon_sym_inout] = ACTIONS(47), - [anon_sym_bycopy] = ACTIONS(47), - [anon_sym_byref] = ACTIONS(47), - [anon_sym_oneway] = ACTIONS(47), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(47), - [anon_sym__Nullable_result] = ACTIONS(47), - [anon_sym__Null_unspecified] = ACTIONS(47), - [anon_sym___autoreleasing] = ACTIONS(47), - [anon_sym___nullable] = ACTIONS(47), - [anon_sym___nonnull] = ACTIONS(47), - [anon_sym___strong] = ACTIONS(47), - [anon_sym___weak] = ACTIONS(47), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(47), - [anon_sym___bridge_retained] = ACTIONS(47), - [anon_sym___unsafe_unretained] = ACTIONS(47), - [anon_sym___block] = ACTIONS(47), - [anon_sym___kindof] = ACTIONS(47), - [anon_sym___unused] = ACTIONS(47), - [anon_sym__Complex] = ACTIONS(47), - [anon_sym___complex] = ACTIONS(47), - [anon_sym_IBOutlet] = ACTIONS(47), - [anon_sym_IBInspectable] = ACTIONS(47), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(51), - [anon_sym_unsigned] = ACTIONS(51), - [anon_sym_long] = ACTIONS(51), - [anon_sym_short] = ACTIONS(51), - [sym_primitive_type] = ACTIONS(7084), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_NS_ENUM] = ACTIONS(57), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(57), - [anon_sym_NS_OPTIONS] = ACTIONS(57), - [anon_sym_struct] = ACTIONS(59), - [anon_sym_union] = ACTIONS(61), + [sym_identifier] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7250), + [anon_sym_RPAREN] = ACTIONS(7250), + [anon_sym_LPAREN2] = ACTIONS(7250), + [anon_sym_DASH] = ACTIONS(7248), + [anon_sym_PLUS] = ACTIONS(7248), + [anon_sym_STAR] = ACTIONS(7248), + [anon_sym_SLASH] = ACTIONS(7248), + [anon_sym_PERCENT] = ACTIONS(7248), + [anon_sym_PIPE_PIPE] = ACTIONS(7250), + [anon_sym_AMP_AMP] = ACTIONS(7250), + [anon_sym_PIPE] = ACTIONS(7248), + [anon_sym_CARET] = ACTIONS(7248), + [anon_sym_AMP] = ACTIONS(7248), + [anon_sym_EQ_EQ] = ACTIONS(7250), + [anon_sym_BANG_EQ] = ACTIONS(7250), + [anon_sym_GT] = ACTIONS(7248), + [anon_sym_GT_EQ] = ACTIONS(7250), + [anon_sym_LT_EQ] = ACTIONS(7250), + [anon_sym_LT] = ACTIONS(7248), + [anon_sym_LT_LT] = ACTIONS(7248), + [anon_sym_GT_GT] = ACTIONS(7248), + [anon_sym_SEMI] = ACTIONS(7250), + [anon_sym___attribute] = ACTIONS(7248), + [anon_sym___attribute__] = ACTIONS(7248), + [anon_sym_RBRACE] = ACTIONS(7250), + [anon_sym_LBRACK] = ACTIONS(7250), + [anon_sym_RBRACK] = ACTIONS(7250), + [anon_sym_EQ] = ACTIONS(7248), + [anon_sym_const] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym_in] = ACTIONS(7248), + [anon_sym_out] = ACTIONS(7248), + [anon_sym_inout] = ACTIONS(7248), + [anon_sym_bycopy] = ACTIONS(7248), + [anon_sym_byref] = ACTIONS(7248), + [anon_sym_oneway] = ACTIONS(7248), + [anon_sym__Nullable] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym__Nullable_result] = ACTIONS(7248), + [anon_sym__Null_unspecified] = ACTIONS(7248), + [anon_sym___autoreleasing] = ACTIONS(7248), + [anon_sym___nullable] = ACTIONS(7248), + [anon_sym___nonnull] = ACTIONS(7248), + [anon_sym___strong] = ACTIONS(7248), + [anon_sym___weak] = ACTIONS(7248), + [anon_sym___bridge] = ACTIONS(7248), + [anon_sym___bridge_transfer] = ACTIONS(7248), + [anon_sym___bridge_retained] = ACTIONS(7248), + [anon_sym___unsafe_unretained] = ACTIONS(7248), + [anon_sym___block] = ACTIONS(7248), + [anon_sym___kindof] = ACTIONS(7248), + [anon_sym___unused] = ACTIONS(7248), + [anon_sym__Complex] = ACTIONS(7248), + [anon_sym___complex] = ACTIONS(7248), + [anon_sym_IBOutlet] = ACTIONS(7248), + [anon_sym_IBInspectable] = ACTIONS(7248), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7248), + [anon_sym_COLON] = ACTIONS(7250), + [anon_sym_QMARK] = ACTIONS(7250), + [anon_sym_STAR_EQ] = ACTIONS(7250), + [anon_sym_SLASH_EQ] = ACTIONS(7250), + [anon_sym_PERCENT_EQ] = ACTIONS(7250), + [anon_sym_PLUS_EQ] = ACTIONS(7250), + [anon_sym_DASH_EQ] = ACTIONS(7250), + [anon_sym_LT_LT_EQ] = ACTIONS(7250), + [anon_sym_GT_GT_EQ] = ACTIONS(7250), + [anon_sym_AMP_EQ] = ACTIONS(7250), + [anon_sym_CARET_EQ] = ACTIONS(7250), + [anon_sym_PIPE_EQ] = ACTIONS(7250), + [anon_sym_DASH_DASH] = ACTIONS(7250), + [anon_sym_PLUS_PLUS] = ACTIONS(7250), + [anon_sym_DOT] = ACTIONS(7250), + [anon_sym_DASH_GT] = ACTIONS(7250), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym___typeof] = ACTIONS(127), - [anon_sym___typeof__] = ACTIONS(127), - [sym_id] = ACTIONS(131), - [sym_instancetype] = ACTIONS(7084), - [sym_Class] = ACTIONS(131), - [sym_SEL] = ACTIONS(7084), - [sym_IMP] = ACTIONS(7084), - [sym_BOOL] = ACTIONS(7084), - [sym_auto] = ACTIONS(7084), + [sym_method_attribute_specifier] = ACTIONS(7248), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7248), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7248), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7248), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7248), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7248), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7248), + [anon_sym_NS_AVAILABLE] = ACTIONS(7248), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7248), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7248), + [anon_sym_API_AVAILABLE] = ACTIONS(7248), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7248), + [anon_sym_API_DEPRECATED] = ACTIONS(7248), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7248), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7248), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7248), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7248), + [anon_sym___deprecated_msg] = ACTIONS(7248), + [anon_sym___deprecated_enum_msg] = ACTIONS(7248), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7248), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7248), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7248), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7248), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7248), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7248), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -494834,109 +493000,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3032] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7092), - [anon_sym_RPAREN] = ACTIONS(7092), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_STAR] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7090), - [anon_sym_PERCENT] = ACTIONS(7090), - [anon_sym_PIPE_PIPE] = ACTIONS(7092), - [anon_sym_AMP_AMP] = ACTIONS(7092), - [anon_sym_PIPE] = ACTIONS(7090), - [anon_sym_CARET] = ACTIONS(7090), - [anon_sym_AMP] = ACTIONS(7090), - [anon_sym_EQ_EQ] = ACTIONS(7092), - [anon_sym_BANG_EQ] = ACTIONS(7092), - [anon_sym_GT] = ACTIONS(7090), - [anon_sym_GT_EQ] = ACTIONS(7092), - [anon_sym_LT_EQ] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7090), - [anon_sym_LT_LT] = ACTIONS(7090), - [anon_sym_GT_GT] = ACTIONS(7090), - [anon_sym_SEMI] = ACTIONS(7092), - [anon_sym___attribute] = ACTIONS(7090), - [anon_sym___attribute__] = ACTIONS(7090), - [anon_sym_RBRACE] = ACTIONS(7092), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7092), - [anon_sym_EQ] = ACTIONS(7090), - [anon_sym_const] = ACTIONS(7090), - [anon_sym_volatile] = ACTIONS(7090), - [anon_sym_restrict] = ACTIONS(7090), - [anon_sym__Atomic] = ACTIONS(7090), - [anon_sym_in] = ACTIONS(7090), - [anon_sym_out] = ACTIONS(7090), - [anon_sym_inout] = ACTIONS(7090), - [anon_sym_bycopy] = ACTIONS(7090), - [anon_sym_byref] = ACTIONS(7090), - [anon_sym_oneway] = ACTIONS(7090), - [anon_sym__Nullable] = ACTIONS(7090), - [anon_sym__Nonnull] = ACTIONS(7090), - [anon_sym__Nullable_result] = ACTIONS(7090), - [anon_sym__Null_unspecified] = ACTIONS(7090), - [anon_sym___autoreleasing] = ACTIONS(7090), - [anon_sym___nullable] = ACTIONS(7090), - [anon_sym___nonnull] = ACTIONS(7090), - [anon_sym___strong] = ACTIONS(7090), - [anon_sym___weak] = ACTIONS(7090), - [anon_sym___bridge] = ACTIONS(7090), - [anon_sym___bridge_transfer] = ACTIONS(7090), - [anon_sym___bridge_retained] = ACTIONS(7090), - [anon_sym___unsafe_unretained] = ACTIONS(7090), - [anon_sym___block] = ACTIONS(7090), - [anon_sym___kindof] = ACTIONS(7090), - [anon_sym___unused] = ACTIONS(7090), - [anon_sym__Complex] = ACTIONS(7090), - [anon_sym___complex] = ACTIONS(7090), - [anon_sym_IBOutlet] = ACTIONS(7090), - [anon_sym_IBInspectable] = ACTIONS(7090), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7090), - [anon_sym_COLON] = ACTIONS(7092), - [anon_sym_QMARK] = ACTIONS(7092), - [anon_sym_STAR_EQ] = ACTIONS(7092), - [anon_sym_SLASH_EQ] = ACTIONS(7092), - [anon_sym_PERCENT_EQ] = ACTIONS(7092), - [anon_sym_PLUS_EQ] = ACTIONS(7092), - [anon_sym_DASH_EQ] = ACTIONS(7092), - [anon_sym_LT_LT_EQ] = ACTIONS(7092), - [anon_sym_GT_GT_EQ] = ACTIONS(7092), - [anon_sym_AMP_EQ] = ACTIONS(7092), - [anon_sym_CARET_EQ] = ACTIONS(7092), - [anon_sym_PIPE_EQ] = ACTIONS(7092), - [anon_sym_DASH_DASH] = ACTIONS(7030), - [anon_sym_PLUS_PLUS] = ACTIONS(7030), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [sym_identifier] = ACTIONS(7252), + [anon_sym_COMMA] = ACTIONS(7254), + [anon_sym_RPAREN] = ACTIONS(7254), + [anon_sym_LPAREN2] = ACTIONS(7254), + [anon_sym_DASH] = ACTIONS(7252), + [anon_sym_PLUS] = ACTIONS(7252), + [anon_sym_STAR] = ACTIONS(7252), + [anon_sym_SLASH] = ACTIONS(7252), + [anon_sym_PERCENT] = ACTIONS(7252), + [anon_sym_PIPE_PIPE] = ACTIONS(7254), + [anon_sym_AMP_AMP] = ACTIONS(7254), + [anon_sym_PIPE] = ACTIONS(7252), + [anon_sym_CARET] = ACTIONS(7252), + [anon_sym_AMP] = ACTIONS(7252), + [anon_sym_EQ_EQ] = ACTIONS(7254), + [anon_sym_BANG_EQ] = ACTIONS(7254), + [anon_sym_GT] = ACTIONS(7252), + [anon_sym_GT_EQ] = ACTIONS(7254), + [anon_sym_LT_EQ] = ACTIONS(7254), + [anon_sym_LT] = ACTIONS(7252), + [anon_sym_LT_LT] = ACTIONS(7252), + [anon_sym_GT_GT] = ACTIONS(7252), + [anon_sym_SEMI] = ACTIONS(7254), + [anon_sym___attribute] = ACTIONS(7252), + [anon_sym___attribute__] = ACTIONS(7252), + [anon_sym_RBRACE] = ACTIONS(7254), + [anon_sym_LBRACK] = ACTIONS(7254), + [anon_sym_RBRACK] = ACTIONS(7254), + [anon_sym_EQ] = ACTIONS(7252), + [anon_sym_const] = ACTIONS(7252), + [anon_sym_volatile] = ACTIONS(7252), + [anon_sym_restrict] = ACTIONS(7252), + [anon_sym__Atomic] = ACTIONS(7252), + [anon_sym_in] = ACTIONS(7252), + [anon_sym_out] = ACTIONS(7252), + [anon_sym_inout] = ACTIONS(7252), + [anon_sym_bycopy] = ACTIONS(7252), + [anon_sym_byref] = ACTIONS(7252), + [anon_sym_oneway] = ACTIONS(7252), + [anon_sym__Nullable] = ACTIONS(7252), + [anon_sym__Nonnull] = ACTIONS(7252), + [anon_sym__Nullable_result] = ACTIONS(7252), + [anon_sym__Null_unspecified] = ACTIONS(7252), + [anon_sym___autoreleasing] = ACTIONS(7252), + [anon_sym___nullable] = ACTIONS(7252), + [anon_sym___nonnull] = ACTIONS(7252), + [anon_sym___strong] = ACTIONS(7252), + [anon_sym___weak] = ACTIONS(7252), + [anon_sym___bridge] = ACTIONS(7252), + [anon_sym___bridge_transfer] = ACTIONS(7252), + [anon_sym___bridge_retained] = ACTIONS(7252), + [anon_sym___unsafe_unretained] = ACTIONS(7252), + [anon_sym___block] = ACTIONS(7252), + [anon_sym___kindof] = ACTIONS(7252), + [anon_sym___unused] = ACTIONS(7252), + [anon_sym__Complex] = ACTIONS(7252), + [anon_sym___complex] = ACTIONS(7252), + [anon_sym_IBOutlet] = ACTIONS(7252), + [anon_sym_IBInspectable] = ACTIONS(7252), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7252), + [anon_sym_COLON] = ACTIONS(7254), + [anon_sym_QMARK] = ACTIONS(7254), + [anon_sym_STAR_EQ] = ACTIONS(7254), + [anon_sym_SLASH_EQ] = ACTIONS(7254), + [anon_sym_PERCENT_EQ] = ACTIONS(7254), + [anon_sym_PLUS_EQ] = ACTIONS(7254), + [anon_sym_DASH_EQ] = ACTIONS(7254), + [anon_sym_LT_LT_EQ] = ACTIONS(7254), + [anon_sym_GT_GT_EQ] = ACTIONS(7254), + [anon_sym_AMP_EQ] = ACTIONS(7254), + [anon_sym_CARET_EQ] = ACTIONS(7254), + [anon_sym_PIPE_EQ] = ACTIONS(7254), + [anon_sym_DASH_DASH] = ACTIONS(7254), + [anon_sym_PLUS_PLUS] = ACTIONS(7254), + [anon_sym_DOT] = ACTIONS(7254), + [anon_sym_DASH_GT] = ACTIONS(7254), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7090), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7090), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7090), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7090), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7090), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7090), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7090), - [anon_sym_NS_AVAILABLE] = ACTIONS(7090), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7090), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7090), - [anon_sym_API_AVAILABLE] = ACTIONS(7090), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7090), - [anon_sym_API_DEPRECATED] = ACTIONS(7090), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7090), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7090), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7090), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7090), - [anon_sym___deprecated_msg] = ACTIONS(7090), - [anon_sym___deprecated_enum_msg] = ACTIONS(7090), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7090), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7090), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7090), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7090), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7090), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7090), + [sym_method_attribute_specifier] = ACTIONS(7252), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7252), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7252), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7252), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7252), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7252), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7252), + [anon_sym_NS_AVAILABLE] = ACTIONS(7252), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7252), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7252), + [anon_sym_API_AVAILABLE] = ACTIONS(7252), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7252), + [anon_sym_API_DEPRECATED] = ACTIONS(7252), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7252), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7252), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7252), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7252), + [anon_sym___deprecated_msg] = ACTIONS(7252), + [anon_sym___deprecated_enum_msg] = ACTIONS(7252), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7252), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7252), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7252), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7252), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7252), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7252), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -494945,109 +493110,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3033] = { - [sym_identifier] = ACTIONS(7094), - [aux_sym_preproc_def_token1] = ACTIONS(7096), - [anon_sym_COMMA] = ACTIONS(7096), - [anon_sym_LPAREN2] = ACTIONS(7096), - [anon_sym_DASH] = ACTIONS(7096), - [anon_sym_PLUS] = ACTIONS(7096), - [anon_sym_LT] = ACTIONS(7096), - [anon_sym_SEMI] = ACTIONS(7096), - [anon_sym_typedef] = ACTIONS(7094), - [anon_sym_extern] = ACTIONS(7094), - [anon_sym___attribute] = ACTIONS(7094), - [anon_sym___attribute__] = ACTIONS(7094), - [anon_sym___declspec] = ACTIONS(7094), - [anon_sym_LBRACE] = ACTIONS(7096), - [anon_sym_static] = ACTIONS(7094), - [anon_sym_auto] = ACTIONS(7094), - [anon_sym_register] = ACTIONS(7094), - [anon_sym_inline] = ACTIONS(7094), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7094), - [anon_sym_const] = ACTIONS(7094), - [anon_sym_volatile] = ACTIONS(7094), - [anon_sym_restrict] = ACTIONS(7094), - [anon_sym__Atomic] = ACTIONS(7094), - [anon_sym_in] = ACTIONS(7094), - [anon_sym_out] = ACTIONS(7094), - [anon_sym_inout] = ACTIONS(7094), - [anon_sym_bycopy] = ACTIONS(7094), - [anon_sym_byref] = ACTIONS(7094), - [anon_sym_oneway] = ACTIONS(7094), - [anon_sym__Nullable] = ACTIONS(7094), - [anon_sym__Nonnull] = ACTIONS(7094), - [anon_sym__Nullable_result] = ACTIONS(7094), - [anon_sym__Null_unspecified] = ACTIONS(7094), - [anon_sym___autoreleasing] = ACTIONS(7094), - [anon_sym___nullable] = ACTIONS(7094), - [anon_sym___nonnull] = ACTIONS(7094), - [anon_sym___strong] = ACTIONS(7094), - [anon_sym___weak] = ACTIONS(7094), - [anon_sym___bridge] = ACTIONS(7094), - [anon_sym___bridge_transfer] = ACTIONS(7094), - [anon_sym___bridge_retained] = ACTIONS(7094), - [anon_sym___unsafe_unretained] = ACTIONS(7094), - [anon_sym___block] = ACTIONS(7094), - [anon_sym___kindof] = ACTIONS(7094), - [anon_sym___unused] = ACTIONS(7094), - [anon_sym__Complex] = ACTIONS(7094), - [anon_sym___complex] = ACTIONS(7094), - [anon_sym_IBOutlet] = ACTIONS(7094), - [anon_sym_IBInspectable] = ACTIONS(7094), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7094), - [anon_sym_signed] = ACTIONS(7094), - [anon_sym_unsigned] = ACTIONS(7094), - [anon_sym_long] = ACTIONS(7094), - [anon_sym_short] = ACTIONS(7094), - [sym_primitive_type] = ACTIONS(7094), - [anon_sym_enum] = ACTIONS(7094), - [anon_sym_COLON] = ACTIONS(7096), - [anon_sym_NS_ENUM] = ACTIONS(7094), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7094), - [anon_sym_NS_OPTIONS] = ACTIONS(7094), - [anon_sym_struct] = ACTIONS(7094), - [anon_sym_union] = ACTIONS(7094), + [sym_identifier] = ACTIONS(7256), + [anon_sym_COMMA] = ACTIONS(7258), + [anon_sym_RPAREN] = ACTIONS(7258), + [anon_sym_LPAREN2] = ACTIONS(7258), + [anon_sym_DASH] = ACTIONS(7256), + [anon_sym_PLUS] = ACTIONS(7256), + [anon_sym_STAR] = ACTIONS(7256), + [anon_sym_SLASH] = ACTIONS(7256), + [anon_sym_PERCENT] = ACTIONS(7256), + [anon_sym_PIPE_PIPE] = ACTIONS(7258), + [anon_sym_AMP_AMP] = ACTIONS(7258), + [anon_sym_PIPE] = ACTIONS(7256), + [anon_sym_CARET] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7256), + [anon_sym_EQ_EQ] = ACTIONS(7258), + [anon_sym_BANG_EQ] = ACTIONS(7258), + [anon_sym_GT] = ACTIONS(7256), + [anon_sym_GT_EQ] = ACTIONS(7258), + [anon_sym_LT_EQ] = ACTIONS(7258), + [anon_sym_LT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_GT_GT] = ACTIONS(7256), + [anon_sym_SEMI] = ACTIONS(7258), + [anon_sym___attribute] = ACTIONS(7256), + [anon_sym___attribute__] = ACTIONS(7256), + [anon_sym_RBRACE] = ACTIONS(7258), + [anon_sym_LBRACK] = ACTIONS(7258), + [anon_sym_RBRACK] = ACTIONS(7258), + [anon_sym_EQ] = ACTIONS(7256), + [anon_sym_const] = ACTIONS(7256), + [anon_sym_volatile] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym_in] = ACTIONS(7256), + [anon_sym_out] = ACTIONS(7256), + [anon_sym_inout] = ACTIONS(7256), + [anon_sym_bycopy] = ACTIONS(7256), + [anon_sym_byref] = ACTIONS(7256), + [anon_sym_oneway] = ACTIONS(7256), + [anon_sym__Nullable] = ACTIONS(7256), + [anon_sym__Nonnull] = ACTIONS(7256), + [anon_sym__Nullable_result] = ACTIONS(7256), + [anon_sym__Null_unspecified] = ACTIONS(7256), + [anon_sym___autoreleasing] = ACTIONS(7256), + [anon_sym___nullable] = ACTIONS(7256), + [anon_sym___nonnull] = ACTIONS(7256), + [anon_sym___strong] = ACTIONS(7256), + [anon_sym___weak] = ACTIONS(7256), + [anon_sym___bridge] = ACTIONS(7256), + [anon_sym___bridge_transfer] = ACTIONS(7256), + [anon_sym___bridge_retained] = ACTIONS(7256), + [anon_sym___unsafe_unretained] = ACTIONS(7256), + [anon_sym___block] = ACTIONS(7256), + [anon_sym___kindof] = ACTIONS(7256), + [anon_sym___unused] = ACTIONS(7256), + [anon_sym__Complex] = ACTIONS(7256), + [anon_sym___complex] = ACTIONS(7256), + [anon_sym_IBOutlet] = ACTIONS(7256), + [anon_sym_IBInspectable] = ACTIONS(7256), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7256), + [anon_sym_COLON] = ACTIONS(7258), + [anon_sym_QMARK] = ACTIONS(7258), + [anon_sym_STAR_EQ] = ACTIONS(7258), + [anon_sym_SLASH_EQ] = ACTIONS(7258), + [anon_sym_PERCENT_EQ] = ACTIONS(7258), + [anon_sym_PLUS_EQ] = ACTIONS(7258), + [anon_sym_DASH_EQ] = ACTIONS(7258), + [anon_sym_LT_LT_EQ] = ACTIONS(7258), + [anon_sym_GT_GT_EQ] = ACTIONS(7258), + [anon_sym_AMP_EQ] = ACTIONS(7258), + [anon_sym_CARET_EQ] = ACTIONS(7258), + [anon_sym_PIPE_EQ] = ACTIONS(7258), + [anon_sym_DASH_DASH] = ACTIONS(7258), + [anon_sym_PLUS_PLUS] = ACTIONS(7258), + [anon_sym_DOT] = ACTIONS(7258), + [anon_sym_DASH_GT] = ACTIONS(7258), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7094), - [anon_sym_ATend] = ACTIONS(7096), - [sym_optional] = ACTIONS(7096), - [sym_required] = ACTIONS(7096), - [anon_sym_ATproperty] = ACTIONS(7096), - [sym_method_attribute_specifier] = ACTIONS(7094), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7094), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7094), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7094), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7094), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7094), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7094), - [anon_sym_NS_AVAILABLE] = ACTIONS(7094), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7094), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7094), - [anon_sym_API_AVAILABLE] = ACTIONS(7094), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7094), - [anon_sym_API_DEPRECATED] = ACTIONS(7094), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7094), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7094), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7094), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7094), - [anon_sym___deprecated_msg] = ACTIONS(7094), - [anon_sym___deprecated_enum_msg] = ACTIONS(7094), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7094), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7094), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7094), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7094), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7094), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7094), - [anon_sym_typeof] = ACTIONS(7094), - [anon_sym___typeof] = ACTIONS(7094), - [anon_sym___typeof__] = ACTIONS(7094), - [sym_id] = ACTIONS(7094), - [sym_instancetype] = ACTIONS(7094), - [sym_Class] = ACTIONS(7094), - [sym_SEL] = ACTIONS(7094), - [sym_IMP] = ACTIONS(7094), - [sym_BOOL] = ACTIONS(7094), - [sym_auto] = ACTIONS(7094), + [sym_method_attribute_specifier] = ACTIONS(7256), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7256), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7256), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7256), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7256), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7256), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7256), + [anon_sym_NS_AVAILABLE] = ACTIONS(7256), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7256), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7256), + [anon_sym_API_AVAILABLE] = ACTIONS(7256), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7256), + [anon_sym_API_DEPRECATED] = ACTIONS(7256), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7256), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7256), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7256), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7256), + [anon_sym___deprecated_msg] = ACTIONS(7256), + [anon_sym___deprecated_enum_msg] = ACTIONS(7256), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7256), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7256), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7256), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7256), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7256), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7256), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -495056,109 +493220,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3034] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7098), - [anon_sym_COMMA] = ACTIONS(7100), - [anon_sym_RPAREN] = ACTIONS(7100), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7004), - [anon_sym_PLUS] = ACTIONS(7004), - [anon_sym_STAR] = ACTIONS(7006), - [anon_sym_SLASH] = ACTIONS(7006), - [anon_sym_PERCENT] = ACTIONS(7006), - [anon_sym_PIPE_PIPE] = ACTIONS(7100), - [anon_sym_AMP_AMP] = ACTIONS(7100), - [anon_sym_PIPE] = ACTIONS(7098), - [anon_sym_CARET] = ACTIONS(7098), - [anon_sym_AMP] = ACTIONS(7098), - [anon_sym_EQ_EQ] = ACTIONS(7100), - [anon_sym_BANG_EQ] = ACTIONS(7100), - [anon_sym_GT] = ACTIONS(7098), - [anon_sym_GT_EQ] = ACTIONS(7100), - [anon_sym_LT_EQ] = ACTIONS(7100), - [anon_sym_LT] = ACTIONS(7098), - [anon_sym_LT_LT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7100), - [anon_sym___attribute] = ACTIONS(7098), - [anon_sym___attribute__] = ACTIONS(7098), - [anon_sym_RBRACE] = ACTIONS(7100), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7100), - [anon_sym_EQ] = ACTIONS(7098), - [anon_sym_const] = ACTIONS(7098), - [anon_sym_volatile] = ACTIONS(7098), - [anon_sym_restrict] = ACTIONS(7098), - [anon_sym__Atomic] = ACTIONS(7098), - [anon_sym_in] = ACTIONS(7098), - [anon_sym_out] = ACTIONS(7098), - [anon_sym_inout] = ACTIONS(7098), - [anon_sym_bycopy] = ACTIONS(7098), - [anon_sym_byref] = ACTIONS(7098), - [anon_sym_oneway] = ACTIONS(7098), - [anon_sym__Nullable] = ACTIONS(7098), - [anon_sym__Nonnull] = ACTIONS(7098), - [anon_sym__Nullable_result] = ACTIONS(7098), - [anon_sym__Null_unspecified] = ACTIONS(7098), - [anon_sym___autoreleasing] = ACTIONS(7098), - [anon_sym___nullable] = ACTIONS(7098), - [anon_sym___nonnull] = ACTIONS(7098), - [anon_sym___strong] = ACTIONS(7098), - [anon_sym___weak] = ACTIONS(7098), - [anon_sym___bridge] = ACTIONS(7098), - [anon_sym___bridge_transfer] = ACTIONS(7098), - [anon_sym___bridge_retained] = ACTIONS(7098), - [anon_sym___unsafe_unretained] = ACTIONS(7098), - [anon_sym___block] = ACTIONS(7098), - [anon_sym___kindof] = ACTIONS(7098), - [anon_sym___unused] = ACTIONS(7098), - [anon_sym__Complex] = ACTIONS(7098), - [anon_sym___complex] = ACTIONS(7098), - [anon_sym_IBOutlet] = ACTIONS(7098), - [anon_sym_IBInspectable] = ACTIONS(7098), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7098), - [anon_sym_COLON] = ACTIONS(7100), - [anon_sym_QMARK] = ACTIONS(7100), - [anon_sym_STAR_EQ] = ACTIONS(7100), - [anon_sym_SLASH_EQ] = ACTIONS(7100), - [anon_sym_PERCENT_EQ] = ACTIONS(7100), - [anon_sym_PLUS_EQ] = ACTIONS(7100), - [anon_sym_DASH_EQ] = ACTIONS(7100), - [anon_sym_LT_LT_EQ] = ACTIONS(7100), - [anon_sym_GT_GT_EQ] = ACTIONS(7100), - [anon_sym_AMP_EQ] = ACTIONS(7100), - [anon_sym_CARET_EQ] = ACTIONS(7100), - [anon_sym_PIPE_EQ] = ACTIONS(7100), - [anon_sym_DASH_DASH] = ACTIONS(7030), - [anon_sym_PLUS_PLUS] = ACTIONS(7030), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [sym_identifier] = ACTIONS(7244), + [aux_sym_preproc_def_token1] = ACTIONS(7246), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_typedef] = ACTIONS(7244), + [anon_sym_extern] = ACTIONS(7244), + [anon_sym___attribute] = ACTIONS(7244), + [anon_sym___attribute__] = ACTIONS(7244), + [anon_sym___declspec] = ACTIONS(7244), + [anon_sym___cdecl] = ACTIONS(7244), + [anon_sym___clrcall] = ACTIONS(7244), + [anon_sym___stdcall] = ACTIONS(7244), + [anon_sym___fastcall] = ACTIONS(7244), + [anon_sym___thiscall] = ACTIONS(7244), + [anon_sym___vectorcall] = ACTIONS(7244), + [anon_sym_static] = ACTIONS(7244), + [anon_sym_auto] = ACTIONS(7244), + [anon_sym_register] = ACTIONS(7244), + [anon_sym_inline] = ACTIONS(7244), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7244), + [anon_sym_const] = ACTIONS(7244), + [anon_sym_volatile] = ACTIONS(7244), + [anon_sym_restrict] = ACTIONS(7244), + [anon_sym__Atomic] = ACTIONS(7244), + [anon_sym_in] = ACTIONS(7244), + [anon_sym_out] = ACTIONS(7244), + [anon_sym_inout] = ACTIONS(7244), + [anon_sym_bycopy] = ACTIONS(7244), + [anon_sym_byref] = ACTIONS(7244), + [anon_sym_oneway] = ACTIONS(7244), + [anon_sym__Nullable] = ACTIONS(7244), + [anon_sym__Nonnull] = ACTIONS(7244), + [anon_sym__Nullable_result] = ACTIONS(7244), + [anon_sym__Null_unspecified] = ACTIONS(7244), + [anon_sym___autoreleasing] = ACTIONS(7244), + [anon_sym___nullable] = ACTIONS(7244), + [anon_sym___nonnull] = ACTIONS(7244), + [anon_sym___strong] = ACTIONS(7244), + [anon_sym___weak] = ACTIONS(7244), + [anon_sym___bridge] = ACTIONS(7244), + [anon_sym___bridge_transfer] = ACTIONS(7244), + [anon_sym___bridge_retained] = ACTIONS(7244), + [anon_sym___unsafe_unretained] = ACTIONS(7244), + [anon_sym___block] = ACTIONS(7244), + [anon_sym___kindof] = ACTIONS(7244), + [anon_sym___unused] = ACTIONS(7244), + [anon_sym__Complex] = ACTIONS(7244), + [anon_sym___complex] = ACTIONS(7244), + [anon_sym_IBOutlet] = ACTIONS(7244), + [anon_sym_IBInspectable] = ACTIONS(7244), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7244), + [anon_sym_signed] = ACTIONS(7244), + [anon_sym_unsigned] = ACTIONS(7244), + [anon_sym_long] = ACTIONS(7244), + [anon_sym_short] = ACTIONS(7244), + [sym_primitive_type] = ACTIONS(7244), + [anon_sym_enum] = ACTIONS(7244), + [anon_sym_struct] = ACTIONS(7244), + [anon_sym_union] = ACTIONS(7244), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7098), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7098), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7098), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7098), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7098), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7098), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7098), - [anon_sym_NS_AVAILABLE] = ACTIONS(7098), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7098), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7098), - [anon_sym_API_AVAILABLE] = ACTIONS(7098), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7098), - [anon_sym_API_DEPRECATED] = ACTIONS(7098), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7098), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7098), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7098), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7098), - [anon_sym___deprecated_msg] = ACTIONS(7098), - [anon_sym___deprecated_enum_msg] = ACTIONS(7098), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7098), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7098), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7098), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7098), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7098), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7098), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7244), + [anon_sym_ATend] = ACTIONS(7246), + [sym_method_attribute_specifier] = ACTIONS(7244), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7244), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7244), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7244), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7244), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7244), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7244), + [anon_sym_NS_AVAILABLE] = ACTIONS(7244), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7244), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7244), + [anon_sym_API_AVAILABLE] = ACTIONS(7244), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7244), + [anon_sym_API_DEPRECATED] = ACTIONS(7244), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7244), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7244), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7244), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7244), + [anon_sym___deprecated_msg] = ACTIONS(7244), + [anon_sym___deprecated_enum_msg] = ACTIONS(7244), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7244), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7244), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7244), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7244), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7244), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7244), + [anon_sym_ATsynthesize] = ACTIONS(7246), + [anon_sym_ATdynamic] = ACTIONS(7246), + [anon_sym_NS_ENUM] = ACTIONS(7244), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7244), + [anon_sym_NS_OPTIONS] = ACTIONS(7244), + [anon_sym_typeof] = ACTIONS(7244), + [anon_sym___typeof] = ACTIONS(7244), + [anon_sym___typeof__] = ACTIONS(7244), + [sym_id] = ACTIONS(7244), + [sym_instancetype] = ACTIONS(7244), + [sym_Class] = ACTIONS(7244), + [sym_SEL] = ACTIONS(7244), + [sym_IMP] = ACTIONS(7244), + [sym_BOOL] = ACTIONS(7244), + [sym_auto] = ACTIONS(7244), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -495167,109 +493330,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3035] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7102), - [anon_sym_COMMA] = ACTIONS(7104), - [anon_sym_RPAREN] = ACTIONS(7104), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7102), - [anon_sym_PLUS] = ACTIONS(7102), - [anon_sym_STAR] = ACTIONS(7102), - [anon_sym_SLASH] = ACTIONS(7102), - [anon_sym_PERCENT] = ACTIONS(7102), - [anon_sym_PIPE_PIPE] = ACTIONS(7104), - [anon_sym_AMP_AMP] = ACTIONS(7104), - [anon_sym_PIPE] = ACTIONS(7102), - [anon_sym_CARET] = ACTIONS(7102), - [anon_sym_AMP] = ACTIONS(7102), - [anon_sym_EQ_EQ] = ACTIONS(7104), - [anon_sym_BANG_EQ] = ACTIONS(7104), - [anon_sym_GT] = ACTIONS(7102), - [anon_sym_GT_EQ] = ACTIONS(7104), - [anon_sym_LT_EQ] = ACTIONS(7104), - [anon_sym_LT] = ACTIONS(7102), - [anon_sym_LT_LT] = ACTIONS(7102), - [anon_sym_GT_GT] = ACTIONS(7102), - [anon_sym_SEMI] = ACTIONS(7104), - [anon_sym___attribute] = ACTIONS(7102), - [anon_sym___attribute__] = ACTIONS(7102), - [anon_sym_RBRACE] = ACTIONS(7104), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7104), - [anon_sym_EQ] = ACTIONS(7102), - [anon_sym_const] = ACTIONS(7102), - [anon_sym_volatile] = ACTIONS(7102), - [anon_sym_restrict] = ACTIONS(7102), - [anon_sym__Atomic] = ACTIONS(7102), - [anon_sym_in] = ACTIONS(7102), - [anon_sym_out] = ACTIONS(7102), - [anon_sym_inout] = ACTIONS(7102), - [anon_sym_bycopy] = ACTIONS(7102), - [anon_sym_byref] = ACTIONS(7102), - [anon_sym_oneway] = ACTIONS(7102), - [anon_sym__Nullable] = ACTIONS(7102), - [anon_sym__Nonnull] = ACTIONS(7102), - [anon_sym__Nullable_result] = ACTIONS(7102), - [anon_sym__Null_unspecified] = ACTIONS(7102), - [anon_sym___autoreleasing] = ACTIONS(7102), - [anon_sym___nullable] = ACTIONS(7102), - [anon_sym___nonnull] = ACTIONS(7102), - [anon_sym___strong] = ACTIONS(7102), - [anon_sym___weak] = ACTIONS(7102), - [anon_sym___bridge] = ACTIONS(7102), - [anon_sym___bridge_transfer] = ACTIONS(7102), - [anon_sym___bridge_retained] = ACTIONS(7102), - [anon_sym___unsafe_unretained] = ACTIONS(7102), - [anon_sym___block] = ACTIONS(7102), - [anon_sym___kindof] = ACTIONS(7102), - [anon_sym___unused] = ACTIONS(7102), - [anon_sym__Complex] = ACTIONS(7102), - [anon_sym___complex] = ACTIONS(7102), - [anon_sym_IBOutlet] = ACTIONS(7102), - [anon_sym_IBInspectable] = ACTIONS(7102), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7102), - [anon_sym_COLON] = ACTIONS(7104), - [anon_sym_QMARK] = ACTIONS(7104), - [anon_sym_STAR_EQ] = ACTIONS(7104), - [anon_sym_SLASH_EQ] = ACTIONS(7104), - [anon_sym_PERCENT_EQ] = ACTIONS(7104), - [anon_sym_PLUS_EQ] = ACTIONS(7104), - [anon_sym_DASH_EQ] = ACTIONS(7104), - [anon_sym_LT_LT_EQ] = ACTIONS(7104), - [anon_sym_GT_GT_EQ] = ACTIONS(7104), - [anon_sym_AMP_EQ] = ACTIONS(7104), - [anon_sym_CARET_EQ] = ACTIONS(7104), - [anon_sym_PIPE_EQ] = ACTIONS(7104), - [anon_sym_DASH_DASH] = ACTIONS(7104), - [anon_sym_PLUS_PLUS] = ACTIONS(7104), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [sym_identifier] = ACTIONS(7260), + [aux_sym_preproc_def_token1] = ACTIONS(7262), + [anon_sym_DASH] = ACTIONS(7262), + [anon_sym_PLUS] = ACTIONS(7262), + [anon_sym_typedef] = ACTIONS(7260), + [anon_sym_extern] = ACTIONS(7260), + [anon_sym___attribute] = ACTIONS(7260), + [anon_sym___attribute__] = ACTIONS(7260), + [anon_sym___declspec] = ACTIONS(7260), + [anon_sym___cdecl] = ACTIONS(7260), + [anon_sym___clrcall] = ACTIONS(7260), + [anon_sym___stdcall] = ACTIONS(7260), + [anon_sym___fastcall] = ACTIONS(7260), + [anon_sym___thiscall] = ACTIONS(7260), + [anon_sym___vectorcall] = ACTIONS(7260), + [anon_sym_static] = ACTIONS(7260), + [anon_sym_auto] = ACTIONS(7260), + [anon_sym_register] = ACTIONS(7260), + [anon_sym_inline] = ACTIONS(7260), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7260), + [anon_sym_const] = ACTIONS(7260), + [anon_sym_volatile] = ACTIONS(7260), + [anon_sym_restrict] = ACTIONS(7260), + [anon_sym__Atomic] = ACTIONS(7260), + [anon_sym_in] = ACTIONS(7260), + [anon_sym_out] = ACTIONS(7260), + [anon_sym_inout] = ACTIONS(7260), + [anon_sym_bycopy] = ACTIONS(7260), + [anon_sym_byref] = ACTIONS(7260), + [anon_sym_oneway] = ACTIONS(7260), + [anon_sym__Nullable] = ACTIONS(7260), + [anon_sym__Nonnull] = ACTIONS(7260), + [anon_sym__Nullable_result] = ACTIONS(7260), + [anon_sym__Null_unspecified] = ACTIONS(7260), + [anon_sym___autoreleasing] = ACTIONS(7260), + [anon_sym___nullable] = ACTIONS(7260), + [anon_sym___nonnull] = ACTIONS(7260), + [anon_sym___strong] = ACTIONS(7260), + [anon_sym___weak] = ACTIONS(7260), + [anon_sym___bridge] = ACTIONS(7260), + [anon_sym___bridge_transfer] = ACTIONS(7260), + [anon_sym___bridge_retained] = ACTIONS(7260), + [anon_sym___unsafe_unretained] = ACTIONS(7260), + [anon_sym___block] = ACTIONS(7260), + [anon_sym___kindof] = ACTIONS(7260), + [anon_sym___unused] = ACTIONS(7260), + [anon_sym__Complex] = ACTIONS(7260), + [anon_sym___complex] = ACTIONS(7260), + [anon_sym_IBOutlet] = ACTIONS(7260), + [anon_sym_IBInspectable] = ACTIONS(7260), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7260), + [anon_sym_signed] = ACTIONS(7260), + [anon_sym_unsigned] = ACTIONS(7260), + [anon_sym_long] = ACTIONS(7260), + [anon_sym_short] = ACTIONS(7260), + [sym_primitive_type] = ACTIONS(7260), + [anon_sym_enum] = ACTIONS(7260), + [anon_sym_struct] = ACTIONS(7260), + [anon_sym_union] = ACTIONS(7260), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7102), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7102), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7102), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7102), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7102), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7102), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7102), - [anon_sym_NS_AVAILABLE] = ACTIONS(7102), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7102), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7102), - [anon_sym_API_AVAILABLE] = ACTIONS(7102), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7102), - [anon_sym_API_DEPRECATED] = ACTIONS(7102), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7102), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7102), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7102), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7102), - [anon_sym___deprecated_msg] = ACTIONS(7102), - [anon_sym___deprecated_enum_msg] = ACTIONS(7102), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7102), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7102), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7102), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7102), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7102), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7102), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7260), + [anon_sym_ATend] = ACTIONS(7262), + [sym_method_attribute_specifier] = ACTIONS(7260), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7260), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7260), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7260), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7260), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7260), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7260), + [anon_sym_NS_AVAILABLE] = ACTIONS(7260), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7260), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7260), + [anon_sym_API_AVAILABLE] = ACTIONS(7260), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7260), + [anon_sym_API_DEPRECATED] = ACTIONS(7260), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7260), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7260), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7260), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7260), + [anon_sym___deprecated_msg] = ACTIONS(7260), + [anon_sym___deprecated_enum_msg] = ACTIONS(7260), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7260), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7260), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7260), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7260), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7260), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7260), + [anon_sym_ATsynthesize] = ACTIONS(7262), + [anon_sym_ATdynamic] = ACTIONS(7262), + [anon_sym_NS_ENUM] = ACTIONS(7260), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7260), + [anon_sym_NS_OPTIONS] = ACTIONS(7260), + [anon_sym_typeof] = ACTIONS(7260), + [anon_sym___typeof] = ACTIONS(7260), + [anon_sym___typeof__] = ACTIONS(7260), + [sym_id] = ACTIONS(7260), + [sym_instancetype] = ACTIONS(7260), + [sym_Class] = ACTIONS(7260), + [sym_SEL] = ACTIONS(7260), + [sym_IMP] = ACTIONS(7260), + [sym_BOOL] = ACTIONS(7260), + [sym_auto] = ACTIONS(7260), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -495278,109 +493440,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3036] = { - [sym_identifier] = ACTIONS(7106), - [anon_sym_COMMA] = ACTIONS(7108), - [anon_sym_RPAREN] = ACTIONS(7108), - [anon_sym_LPAREN2] = ACTIONS(7108), - [anon_sym_DASH] = ACTIONS(7106), - [anon_sym_PLUS] = ACTIONS(7106), - [anon_sym_STAR] = ACTIONS(7106), - [anon_sym_SLASH] = ACTIONS(7106), - [anon_sym_PERCENT] = ACTIONS(7106), - [anon_sym_PIPE_PIPE] = ACTIONS(7108), - [anon_sym_AMP_AMP] = ACTIONS(7108), - [anon_sym_PIPE] = ACTIONS(7106), - [anon_sym_CARET] = ACTIONS(7106), - [anon_sym_AMP] = ACTIONS(7106), - [anon_sym_EQ_EQ] = ACTIONS(7108), - [anon_sym_BANG_EQ] = ACTIONS(7108), - [anon_sym_GT] = ACTIONS(7106), - [anon_sym_GT_EQ] = ACTIONS(7108), - [anon_sym_LT_EQ] = ACTIONS(7108), - [anon_sym_LT] = ACTIONS(7106), - [anon_sym_LT_LT] = ACTIONS(7106), - [anon_sym_GT_GT] = ACTIONS(7106), - [anon_sym_SEMI] = ACTIONS(7108), - [anon_sym___attribute] = ACTIONS(7106), - [anon_sym___attribute__] = ACTIONS(7106), - [anon_sym_LBRACE] = ACTIONS(7108), - [anon_sym_RBRACE] = ACTIONS(7108), - [anon_sym_LBRACK] = ACTIONS(7108), - [anon_sym_RBRACK] = ACTIONS(7108), - [anon_sym_EQ] = ACTIONS(7106), - [anon_sym_const] = ACTIONS(7106), - [anon_sym_volatile] = ACTIONS(7106), - [anon_sym_restrict] = ACTIONS(7106), - [anon_sym__Atomic] = ACTIONS(7106), - [anon_sym_in] = ACTIONS(7106), - [anon_sym_out] = ACTIONS(7106), - [anon_sym_inout] = ACTIONS(7106), - [anon_sym_bycopy] = ACTIONS(7106), - [anon_sym_byref] = ACTIONS(7106), - [anon_sym_oneway] = ACTIONS(7106), - [anon_sym__Nullable] = ACTIONS(7106), - [anon_sym__Nonnull] = ACTIONS(7106), - [anon_sym__Nullable_result] = ACTIONS(7106), - [anon_sym__Null_unspecified] = ACTIONS(7106), - [anon_sym___autoreleasing] = ACTIONS(7106), - [anon_sym___nullable] = ACTIONS(7106), - [anon_sym___nonnull] = ACTIONS(7106), - [anon_sym___strong] = ACTIONS(7106), - [anon_sym___weak] = ACTIONS(7106), - [anon_sym___bridge] = ACTIONS(7106), - [anon_sym___bridge_transfer] = ACTIONS(7106), - [anon_sym___bridge_retained] = ACTIONS(7106), - [anon_sym___unsafe_unretained] = ACTIONS(7106), - [anon_sym___block] = ACTIONS(7106), - [anon_sym___kindof] = ACTIONS(7106), - [anon_sym___unused] = ACTIONS(7106), - [anon_sym__Complex] = ACTIONS(7106), - [anon_sym___complex] = ACTIONS(7106), - [anon_sym_IBOutlet] = ACTIONS(7106), - [anon_sym_IBInspectable] = ACTIONS(7106), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7106), - [anon_sym_COLON] = ACTIONS(7108), - [anon_sym_QMARK] = ACTIONS(7108), - [anon_sym_STAR_EQ] = ACTIONS(7108), - [anon_sym_SLASH_EQ] = ACTIONS(7108), - [anon_sym_PERCENT_EQ] = ACTIONS(7108), - [anon_sym_PLUS_EQ] = ACTIONS(7108), - [anon_sym_DASH_EQ] = ACTIONS(7108), - [anon_sym_LT_LT_EQ] = ACTIONS(7108), - [anon_sym_GT_GT_EQ] = ACTIONS(7108), - [anon_sym_AMP_EQ] = ACTIONS(7108), - [anon_sym_CARET_EQ] = ACTIONS(7108), - [anon_sym_PIPE_EQ] = ACTIONS(7108), - [anon_sym_DASH_DASH] = ACTIONS(7108), - [anon_sym_PLUS_PLUS] = ACTIONS(7108), - [anon_sym_DOT] = ACTIONS(7108), - [anon_sym_DASH_GT] = ACTIONS(7108), + [sym_identifier] = ACTIONS(7264), + [anon_sym_COMMA] = ACTIONS(7266), + [anon_sym_RPAREN] = ACTIONS(7266), + [anon_sym_LPAREN2] = ACTIONS(7266), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_STAR] = ACTIONS(7264), + [anon_sym_SLASH] = ACTIONS(7264), + [anon_sym_PERCENT] = ACTIONS(7264), + [anon_sym_PIPE_PIPE] = ACTIONS(7266), + [anon_sym_AMP_AMP] = ACTIONS(7266), + [anon_sym_PIPE] = ACTIONS(7264), + [anon_sym_CARET] = ACTIONS(7264), + [anon_sym_AMP] = ACTIONS(7264), + [anon_sym_EQ_EQ] = ACTIONS(7266), + [anon_sym_BANG_EQ] = ACTIONS(7266), + [anon_sym_GT] = ACTIONS(7264), + [anon_sym_GT_EQ] = ACTIONS(7266), + [anon_sym_LT_EQ] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7264), + [anon_sym_LT_LT] = ACTIONS(7264), + [anon_sym_GT_GT] = ACTIONS(7264), + [anon_sym_SEMI] = ACTIONS(7266), + [anon_sym___attribute] = ACTIONS(7264), + [anon_sym___attribute__] = ACTIONS(7264), + [anon_sym_RBRACE] = ACTIONS(7266), + [anon_sym_LBRACK] = ACTIONS(7266), + [anon_sym_RBRACK] = ACTIONS(7266), + [anon_sym_EQ] = ACTIONS(7264), + [anon_sym_const] = ACTIONS(7264), + [anon_sym_volatile] = ACTIONS(7264), + [anon_sym_restrict] = ACTIONS(7264), + [anon_sym__Atomic] = ACTIONS(7264), + [anon_sym_in] = ACTIONS(7264), + [anon_sym_out] = ACTIONS(7264), + [anon_sym_inout] = ACTIONS(7264), + [anon_sym_bycopy] = ACTIONS(7264), + [anon_sym_byref] = ACTIONS(7264), + [anon_sym_oneway] = ACTIONS(7264), + [anon_sym__Nullable] = ACTIONS(7264), + [anon_sym__Nonnull] = ACTIONS(7264), + [anon_sym__Nullable_result] = ACTIONS(7264), + [anon_sym__Null_unspecified] = ACTIONS(7264), + [anon_sym___autoreleasing] = ACTIONS(7264), + [anon_sym___nullable] = ACTIONS(7264), + [anon_sym___nonnull] = ACTIONS(7264), + [anon_sym___strong] = ACTIONS(7264), + [anon_sym___weak] = ACTIONS(7264), + [anon_sym___bridge] = ACTIONS(7264), + [anon_sym___bridge_transfer] = ACTIONS(7264), + [anon_sym___bridge_retained] = ACTIONS(7264), + [anon_sym___unsafe_unretained] = ACTIONS(7264), + [anon_sym___block] = ACTIONS(7264), + [anon_sym___kindof] = ACTIONS(7264), + [anon_sym___unused] = ACTIONS(7264), + [anon_sym__Complex] = ACTIONS(7264), + [anon_sym___complex] = ACTIONS(7264), + [anon_sym_IBOutlet] = ACTIONS(7264), + [anon_sym_IBInspectable] = ACTIONS(7264), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7264), + [anon_sym_COLON] = ACTIONS(7266), + [anon_sym_QMARK] = ACTIONS(7266), + [anon_sym_STAR_EQ] = ACTIONS(7266), + [anon_sym_SLASH_EQ] = ACTIONS(7266), + [anon_sym_PERCENT_EQ] = ACTIONS(7266), + [anon_sym_PLUS_EQ] = ACTIONS(7266), + [anon_sym_DASH_EQ] = ACTIONS(7266), + [anon_sym_LT_LT_EQ] = ACTIONS(7266), + [anon_sym_GT_GT_EQ] = ACTIONS(7266), + [anon_sym_AMP_EQ] = ACTIONS(7266), + [anon_sym_CARET_EQ] = ACTIONS(7266), + [anon_sym_PIPE_EQ] = ACTIONS(7266), + [anon_sym_DASH_DASH] = ACTIONS(7266), + [anon_sym_PLUS_PLUS] = ACTIONS(7266), + [anon_sym_DOT] = ACTIONS(7266), + [anon_sym_DASH_GT] = ACTIONS(7266), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7106), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7106), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7106), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7106), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7106), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7106), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7106), - [anon_sym_NS_AVAILABLE] = ACTIONS(7106), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7106), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7106), - [anon_sym_API_AVAILABLE] = ACTIONS(7106), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7106), - [anon_sym_API_DEPRECATED] = ACTIONS(7106), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7106), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7106), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7106), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7106), - [anon_sym___deprecated_msg] = ACTIONS(7106), - [anon_sym___deprecated_enum_msg] = ACTIONS(7106), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7106), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7106), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7106), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7106), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7106), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7106), + [sym_method_attribute_specifier] = ACTIONS(7264), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7264), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7264), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7264), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7264), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7264), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7264), + [anon_sym_NS_AVAILABLE] = ACTIONS(7264), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7264), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7264), + [anon_sym_API_AVAILABLE] = ACTIONS(7264), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7264), + [anon_sym_API_DEPRECATED] = ACTIONS(7264), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7264), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7264), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7264), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7264), + [anon_sym___deprecated_msg] = ACTIONS(7264), + [anon_sym___deprecated_enum_msg] = ACTIONS(7264), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7264), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7264), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7264), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7264), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7264), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7264), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -495389,109 +493550,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3037] = { - [sym_identifier] = ACTIONS(7110), - [aux_sym_preproc_def_token1] = ACTIONS(7112), - [anon_sym_DASH] = ACTIONS(7112), - [anon_sym_PLUS] = ACTIONS(7112), - [anon_sym_SEMI] = ACTIONS(7114), - [anon_sym_typedef] = ACTIONS(7110), - [anon_sym_extern] = ACTIONS(7110), - [anon_sym___attribute] = ACTIONS(7110), - [anon_sym___attribute__] = ACTIONS(7110), - [anon_sym___declspec] = ACTIONS(7110), - [anon_sym___cdecl] = ACTIONS(7110), - [anon_sym___clrcall] = ACTIONS(7110), - [anon_sym___stdcall] = ACTIONS(7110), - [anon_sym___fastcall] = ACTIONS(7110), - [anon_sym___thiscall] = ACTIONS(7110), - [anon_sym___vectorcall] = ACTIONS(7110), - [anon_sym_static] = ACTIONS(7110), - [anon_sym_auto] = ACTIONS(7110), - [anon_sym_register] = ACTIONS(7110), - [anon_sym_inline] = ACTIONS(7110), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7110), - [anon_sym_const] = ACTIONS(7110), - [anon_sym_volatile] = ACTIONS(7110), - [anon_sym_restrict] = ACTIONS(7110), - [anon_sym__Atomic] = ACTIONS(7110), - [anon_sym_in] = ACTIONS(7110), - [anon_sym_out] = ACTIONS(7110), - [anon_sym_inout] = ACTIONS(7110), - [anon_sym_bycopy] = ACTIONS(7110), - [anon_sym_byref] = ACTIONS(7110), - [anon_sym_oneway] = ACTIONS(7110), - [anon_sym__Nullable] = ACTIONS(7110), - [anon_sym__Nonnull] = ACTIONS(7110), - [anon_sym__Nullable_result] = ACTIONS(7110), - [anon_sym__Null_unspecified] = ACTIONS(7110), - [anon_sym___autoreleasing] = ACTIONS(7110), - [anon_sym___nullable] = ACTIONS(7110), - [anon_sym___nonnull] = ACTIONS(7110), - [anon_sym___strong] = ACTIONS(7110), - [anon_sym___weak] = ACTIONS(7110), - [anon_sym___bridge] = ACTIONS(7110), - [anon_sym___bridge_transfer] = ACTIONS(7110), - [anon_sym___bridge_retained] = ACTIONS(7110), - [anon_sym___unsafe_unretained] = ACTIONS(7110), - [anon_sym___block] = ACTIONS(7110), - [anon_sym___kindof] = ACTIONS(7110), - [anon_sym___unused] = ACTIONS(7110), - [anon_sym__Complex] = ACTIONS(7110), - [anon_sym___complex] = ACTIONS(7110), - [anon_sym_IBOutlet] = ACTIONS(7110), - [anon_sym_IBInspectable] = ACTIONS(7110), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7110), - [anon_sym_signed] = ACTIONS(7110), - [anon_sym_unsigned] = ACTIONS(7110), - [anon_sym_long] = ACTIONS(7110), - [anon_sym_short] = ACTIONS(7110), - [sym_primitive_type] = ACTIONS(7110), - [anon_sym_enum] = ACTIONS(7110), - [anon_sym_NS_ENUM] = ACTIONS(7110), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7110), - [anon_sym_NS_OPTIONS] = ACTIONS(7110), - [anon_sym_struct] = ACTIONS(7110), - [anon_sym_union] = ACTIONS(7110), + [sym_identifier] = ACTIONS(7268), + [anon_sym_COMMA] = ACTIONS(7270), + [anon_sym_RPAREN] = ACTIONS(7270), + [anon_sym_LPAREN2] = ACTIONS(7270), + [anon_sym_SEMI] = ACTIONS(7270), + [anon_sym_typedef] = ACTIONS(7268), + [anon_sym_extern] = ACTIONS(7268), + [anon_sym___attribute] = ACTIONS(7268), + [anon_sym___attribute__] = ACTIONS(7268), + [anon_sym___declspec] = ACTIONS(7268), + [anon_sym_LBRACE] = ACTIONS(7270), + [anon_sym_RBRACE] = ACTIONS(7270), + [anon_sym_LBRACK] = ACTIONS(7270), + [anon_sym_static] = ACTIONS(7268), + [anon_sym_auto] = ACTIONS(7268), + [anon_sym_register] = ACTIONS(7268), + [anon_sym_inline] = ACTIONS(7268), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7268), + [anon_sym_const] = ACTIONS(7268), + [anon_sym_volatile] = ACTIONS(7268), + [anon_sym_restrict] = ACTIONS(7268), + [anon_sym__Atomic] = ACTIONS(7268), + [anon_sym_in] = ACTIONS(7268), + [anon_sym_out] = ACTIONS(7268), + [anon_sym_inout] = ACTIONS(7268), + [anon_sym_bycopy] = ACTIONS(7268), + [anon_sym_byref] = ACTIONS(7268), + [anon_sym_oneway] = ACTIONS(7268), + [anon_sym__Nullable] = ACTIONS(7268), + [anon_sym__Nonnull] = ACTIONS(7268), + [anon_sym__Nullable_result] = ACTIONS(7268), + [anon_sym__Null_unspecified] = ACTIONS(7268), + [anon_sym___autoreleasing] = ACTIONS(7268), + [anon_sym___nullable] = ACTIONS(7268), + [anon_sym___nonnull] = ACTIONS(7268), + [anon_sym___strong] = ACTIONS(7268), + [anon_sym___weak] = ACTIONS(7268), + [anon_sym___bridge] = ACTIONS(7268), + [anon_sym___bridge_transfer] = ACTIONS(7268), + [anon_sym___bridge_retained] = ACTIONS(7268), + [anon_sym___unsafe_unretained] = ACTIONS(7268), + [anon_sym___block] = ACTIONS(7268), + [anon_sym___kindof] = ACTIONS(7268), + [anon_sym___unused] = ACTIONS(7268), + [anon_sym__Complex] = ACTIONS(7268), + [anon_sym___complex] = ACTIONS(7268), + [anon_sym_IBOutlet] = ACTIONS(7268), + [anon_sym_IBInspectable] = ACTIONS(7268), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7268), + [anon_sym_signed] = ACTIONS(7268), + [anon_sym_unsigned] = ACTIONS(7268), + [anon_sym_long] = ACTIONS(7268), + [anon_sym_short] = ACTIONS(7268), + [sym_primitive_type] = ACTIONS(7268), + [anon_sym_enum] = ACTIONS(7268), + [anon_sym_COLON] = ACTIONS(7270), + [anon_sym_struct] = ACTIONS(7268), + [anon_sym_ATdefs] = ACTIONS(7270), + [anon_sym_union] = ACTIONS(7268), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7110), - [anon_sym_ATend] = ACTIONS(7112), - [sym_method_attribute_specifier] = ACTIONS(7110), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7110), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7110), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7110), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7110), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7110), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7110), - [anon_sym_NS_AVAILABLE] = ACTIONS(7110), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7110), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7110), - [anon_sym_API_AVAILABLE] = ACTIONS(7110), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7110), - [anon_sym_API_DEPRECATED] = ACTIONS(7110), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7110), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7110), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7110), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7110), - [anon_sym___deprecated_msg] = ACTIONS(7110), - [anon_sym___deprecated_enum_msg] = ACTIONS(7110), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7110), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7110), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7110), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7110), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7110), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7110), - [anon_sym_ATsynthesize] = ACTIONS(7112), - [anon_sym_ATdynamic] = ACTIONS(7112), - [anon_sym_typeof] = ACTIONS(7110), - [anon_sym___typeof] = ACTIONS(7110), - [anon_sym___typeof__] = ACTIONS(7110), - [sym_id] = ACTIONS(7110), - [sym_instancetype] = ACTIONS(7110), - [sym_Class] = ACTIONS(7110), - [sym_SEL] = ACTIONS(7110), - [sym_IMP] = ACTIONS(7110), - [sym_BOOL] = ACTIONS(7110), - [sym_auto] = ACTIONS(7110), + [anon_sym_ATprotocol] = ACTIONS(7270), + [anon_sym_ATinterface] = ACTIONS(7270), + [sym_method_attribute_specifier] = ACTIONS(7268), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7268), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7268), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7268), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7268), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7268), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7268), + [anon_sym_NS_AVAILABLE] = ACTIONS(7268), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7268), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7268), + [anon_sym_API_AVAILABLE] = ACTIONS(7268), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7268), + [anon_sym_API_DEPRECATED] = ACTIONS(7268), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7268), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7268), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7268), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7268), + [anon_sym___deprecated_msg] = ACTIONS(7268), + [anon_sym___deprecated_enum_msg] = ACTIONS(7268), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7268), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7268), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7268), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7268), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7268), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7268), + [anon_sym_ATimplementation] = ACTIONS(7270), + [anon_sym_NS_ENUM] = ACTIONS(7268), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7268), + [anon_sym_NS_OPTIONS] = ACTIONS(7268), + [anon_sym_typeof] = ACTIONS(7268), + [anon_sym___typeof] = ACTIONS(7268), + [anon_sym___typeof__] = ACTIONS(7268), + [sym_id] = ACTIONS(7268), + [sym_instancetype] = ACTIONS(7268), + [sym_Class] = ACTIONS(7268), + [sym_SEL] = ACTIONS(7268), + [sym_IMP] = ACTIONS(7268), + [sym_BOOL] = ACTIONS(7268), + [sym_auto] = ACTIONS(7268), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -495500,109 +493659,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3038] = { - [sym_identifier] = ACTIONS(7078), - [aux_sym_preproc_def_token1] = ACTIONS(7080), - [anon_sym_DASH] = ACTIONS(7080), - [anon_sym_PLUS] = ACTIONS(7080), - [anon_sym_SEMI] = ACTIONS(7116), - [anon_sym_typedef] = ACTIONS(7078), - [anon_sym_extern] = ACTIONS(7078), - [anon_sym___attribute] = ACTIONS(7078), - [anon_sym___attribute__] = ACTIONS(7078), - [anon_sym___declspec] = ACTIONS(7078), - [anon_sym___cdecl] = ACTIONS(7078), - [anon_sym___clrcall] = ACTIONS(7078), - [anon_sym___stdcall] = ACTIONS(7078), - [anon_sym___fastcall] = ACTIONS(7078), - [anon_sym___thiscall] = ACTIONS(7078), - [anon_sym___vectorcall] = ACTIONS(7078), - [anon_sym_static] = ACTIONS(7078), - [anon_sym_auto] = ACTIONS(7078), - [anon_sym_register] = ACTIONS(7078), - [anon_sym_inline] = ACTIONS(7078), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7078), - [anon_sym_const] = ACTIONS(7078), - [anon_sym_volatile] = ACTIONS(7078), - [anon_sym_restrict] = ACTIONS(7078), - [anon_sym__Atomic] = ACTIONS(7078), - [anon_sym_in] = ACTIONS(7078), - [anon_sym_out] = ACTIONS(7078), - [anon_sym_inout] = ACTIONS(7078), - [anon_sym_bycopy] = ACTIONS(7078), - [anon_sym_byref] = ACTIONS(7078), - [anon_sym_oneway] = ACTIONS(7078), - [anon_sym__Nullable] = ACTIONS(7078), - [anon_sym__Nonnull] = ACTIONS(7078), - [anon_sym__Nullable_result] = ACTIONS(7078), - [anon_sym__Null_unspecified] = ACTIONS(7078), - [anon_sym___autoreleasing] = ACTIONS(7078), - [anon_sym___nullable] = ACTIONS(7078), - [anon_sym___nonnull] = ACTIONS(7078), - [anon_sym___strong] = ACTIONS(7078), - [anon_sym___weak] = ACTIONS(7078), - [anon_sym___bridge] = ACTIONS(7078), - [anon_sym___bridge_transfer] = ACTIONS(7078), - [anon_sym___bridge_retained] = ACTIONS(7078), - [anon_sym___unsafe_unretained] = ACTIONS(7078), - [anon_sym___block] = ACTIONS(7078), - [anon_sym___kindof] = ACTIONS(7078), - [anon_sym___unused] = ACTIONS(7078), - [anon_sym__Complex] = ACTIONS(7078), - [anon_sym___complex] = ACTIONS(7078), - [anon_sym_IBOutlet] = ACTIONS(7078), - [anon_sym_IBInspectable] = ACTIONS(7078), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7078), - [anon_sym_signed] = ACTIONS(7078), - [anon_sym_unsigned] = ACTIONS(7078), - [anon_sym_long] = ACTIONS(7078), - [anon_sym_short] = ACTIONS(7078), - [sym_primitive_type] = ACTIONS(7078), - [anon_sym_enum] = ACTIONS(7078), - [anon_sym_NS_ENUM] = ACTIONS(7078), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7078), - [anon_sym_NS_OPTIONS] = ACTIONS(7078), - [anon_sym_struct] = ACTIONS(7078), - [anon_sym_union] = ACTIONS(7078), + [sym_identifier] = ACTIONS(7272), + [aux_sym_preproc_def_token1] = ACTIONS(7274), + [anon_sym_LPAREN2] = ACTIONS(7274), + [anon_sym_DASH] = ACTIONS(7274), + [anon_sym_PLUS] = ACTIONS(7274), + [anon_sym_LT] = ACTIONS(7274), + [anon_sym_typedef] = ACTIONS(7272), + [anon_sym_extern] = ACTIONS(7272), + [anon_sym___attribute] = ACTIONS(7272), + [anon_sym___attribute__] = ACTIONS(7272), + [anon_sym___declspec] = ACTIONS(7272), + [anon_sym_LBRACE] = ACTIONS(7274), + [anon_sym_static] = ACTIONS(7272), + [anon_sym_auto] = ACTIONS(7272), + [anon_sym_register] = ACTIONS(7272), + [anon_sym_inline] = ACTIONS(7272), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7272), + [anon_sym_const] = ACTIONS(7272), + [anon_sym_volatile] = ACTIONS(7272), + [anon_sym_restrict] = ACTIONS(7272), + [anon_sym__Atomic] = ACTIONS(7272), + [anon_sym_in] = ACTIONS(7272), + [anon_sym_out] = ACTIONS(7272), + [anon_sym_inout] = ACTIONS(7272), + [anon_sym_bycopy] = ACTIONS(7272), + [anon_sym_byref] = ACTIONS(7272), + [anon_sym_oneway] = ACTIONS(7272), + [anon_sym__Nullable] = ACTIONS(7272), + [anon_sym__Nonnull] = ACTIONS(7272), + [anon_sym__Nullable_result] = ACTIONS(7272), + [anon_sym__Null_unspecified] = ACTIONS(7272), + [anon_sym___autoreleasing] = ACTIONS(7272), + [anon_sym___nullable] = ACTIONS(7272), + [anon_sym___nonnull] = ACTIONS(7272), + [anon_sym___strong] = ACTIONS(7272), + [anon_sym___weak] = ACTIONS(7272), + [anon_sym___bridge] = ACTIONS(7272), + [anon_sym___bridge_transfer] = ACTIONS(7272), + [anon_sym___bridge_retained] = ACTIONS(7272), + [anon_sym___unsafe_unretained] = ACTIONS(7272), + [anon_sym___block] = ACTIONS(7272), + [anon_sym___kindof] = ACTIONS(7272), + [anon_sym___unused] = ACTIONS(7272), + [anon_sym__Complex] = ACTIONS(7272), + [anon_sym___complex] = ACTIONS(7272), + [anon_sym_IBOutlet] = ACTIONS(7272), + [anon_sym_IBInspectable] = ACTIONS(7272), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7272), + [anon_sym_signed] = ACTIONS(7272), + [anon_sym_unsigned] = ACTIONS(7272), + [anon_sym_long] = ACTIONS(7272), + [anon_sym_short] = ACTIONS(7272), + [sym_primitive_type] = ACTIONS(7272), + [anon_sym_enum] = ACTIONS(7272), + [anon_sym_COLON] = ACTIONS(7274), + [anon_sym_struct] = ACTIONS(7272), + [anon_sym_union] = ACTIONS(7272), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7078), - [anon_sym_ATend] = ACTIONS(7080), - [sym_method_attribute_specifier] = ACTIONS(7078), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7078), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7078), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7078), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7078), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7078), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7078), - [anon_sym_NS_AVAILABLE] = ACTIONS(7078), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7078), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7078), - [anon_sym_API_AVAILABLE] = ACTIONS(7078), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7078), - [anon_sym_API_DEPRECATED] = ACTIONS(7078), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7078), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7078), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7078), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7078), - [anon_sym___deprecated_msg] = ACTIONS(7078), - [anon_sym___deprecated_enum_msg] = ACTIONS(7078), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7078), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7078), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7078), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7078), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7078), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7078), - [anon_sym_ATsynthesize] = ACTIONS(7080), - [anon_sym_ATdynamic] = ACTIONS(7080), - [anon_sym_typeof] = ACTIONS(7078), - [anon_sym___typeof] = ACTIONS(7078), - [anon_sym___typeof__] = ACTIONS(7078), - [sym_id] = ACTIONS(7078), - [sym_instancetype] = ACTIONS(7078), - [sym_Class] = ACTIONS(7078), - [sym_SEL] = ACTIONS(7078), - [sym_IMP] = ACTIONS(7078), - [sym_BOOL] = ACTIONS(7078), - [sym_auto] = ACTIONS(7078), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7272), + [anon_sym_ATend] = ACTIONS(7274), + [sym_optional] = ACTIONS(7274), + [sym_required] = ACTIONS(7274), + [anon_sym_ATproperty] = ACTIONS(7274), + [sym_method_attribute_specifier] = ACTIONS(7272), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7272), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7272), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7272), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7272), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7272), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7272), + [anon_sym_NS_AVAILABLE] = ACTIONS(7272), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7272), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7272), + [anon_sym_API_AVAILABLE] = ACTIONS(7272), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7272), + [anon_sym_API_DEPRECATED] = ACTIONS(7272), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7272), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7272), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7272), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7272), + [anon_sym___deprecated_msg] = ACTIONS(7272), + [anon_sym___deprecated_enum_msg] = ACTIONS(7272), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7272), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7272), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7272), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7272), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7272), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7272), + [anon_sym_NS_ENUM] = ACTIONS(7272), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7272), + [anon_sym_NS_OPTIONS] = ACTIONS(7272), + [anon_sym_typeof] = ACTIONS(7272), + [anon_sym___typeof] = ACTIONS(7272), + [anon_sym___typeof__] = ACTIONS(7272), + [sym_id] = ACTIONS(7272), + [sym_instancetype] = ACTIONS(7272), + [sym_Class] = ACTIONS(7272), + [sym_SEL] = ACTIONS(7272), + [sym_IMP] = ACTIONS(7272), + [sym_BOOL] = ACTIONS(7272), + [sym_auto] = ACTIONS(7272), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -495611,108 +493768,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3039] = { - [sym_identifier] = ACTIONS(6820), - [anon_sym_COMMA] = ACTIONS(6822), - [anon_sym_RPAREN] = ACTIONS(6822), - [anon_sym_LPAREN2] = ACTIONS(6822), - [anon_sym_DASH] = ACTIONS(6820), - [anon_sym_PLUS] = ACTIONS(6820), - [anon_sym_STAR] = ACTIONS(6820), - [anon_sym_SLASH] = ACTIONS(6820), - [anon_sym_PERCENT] = ACTIONS(6820), - [anon_sym_PIPE_PIPE] = ACTIONS(6822), - [anon_sym_AMP_AMP] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6820), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_EQ_EQ] = ACTIONS(6822), - [anon_sym_BANG_EQ] = ACTIONS(6822), - [anon_sym_GT] = ACTIONS(6820), - [anon_sym_GT_EQ] = ACTIONS(6822), - [anon_sym_LT_EQ] = ACTIONS(6822), - [anon_sym_LT] = ACTIONS(6820), - [anon_sym_LT_LT] = ACTIONS(6820), - [anon_sym_GT_GT] = ACTIONS(6820), - [anon_sym_SEMI] = ACTIONS(6822), - [anon_sym___attribute] = ACTIONS(6820), - [anon_sym___attribute__] = ACTIONS(6820), - [anon_sym_RBRACE] = ACTIONS(6822), - [anon_sym_LBRACK] = ACTIONS(6822), - [anon_sym_RBRACK] = ACTIONS(6822), - [anon_sym_EQ] = ACTIONS(6853), - [anon_sym_const] = ACTIONS(6820), - [anon_sym_volatile] = ACTIONS(6820), - [anon_sym_restrict] = ACTIONS(6820), - [anon_sym__Atomic] = ACTIONS(6820), - [anon_sym_in] = ACTIONS(6820), - [anon_sym_out] = ACTIONS(6820), - [anon_sym_inout] = ACTIONS(6820), - [anon_sym_bycopy] = ACTIONS(6820), - [anon_sym_byref] = ACTIONS(6820), - [anon_sym_oneway] = ACTIONS(6820), - [anon_sym__Nullable] = ACTIONS(6820), - [anon_sym__Nonnull] = ACTIONS(6820), - [anon_sym__Nullable_result] = ACTIONS(6820), - [anon_sym__Null_unspecified] = ACTIONS(6820), - [anon_sym___autoreleasing] = ACTIONS(6820), - [anon_sym___nullable] = ACTIONS(6820), - [anon_sym___nonnull] = ACTIONS(6820), - [anon_sym___strong] = ACTIONS(6820), - [anon_sym___weak] = ACTIONS(6820), - [anon_sym___bridge] = ACTIONS(6820), - [anon_sym___bridge_transfer] = ACTIONS(6820), - [anon_sym___bridge_retained] = ACTIONS(6820), - [anon_sym___unsafe_unretained] = ACTIONS(6820), - [anon_sym___block] = ACTIONS(6820), - [anon_sym___kindof] = ACTIONS(6820), - [anon_sym___unused] = ACTIONS(6820), - [anon_sym__Complex] = ACTIONS(6820), - [anon_sym___complex] = ACTIONS(6820), - [anon_sym_IBOutlet] = ACTIONS(6820), - [anon_sym_IBInspectable] = ACTIONS(6820), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6820), - [anon_sym_COLON] = ACTIONS(6822), - [anon_sym_QMARK] = ACTIONS(6822), - [anon_sym_STAR_EQ] = ACTIONS(6857), - [anon_sym_SLASH_EQ] = ACTIONS(6857), - [anon_sym_PERCENT_EQ] = ACTIONS(6857), - [anon_sym_PLUS_EQ] = ACTIONS(6857), - [anon_sym_DASH_EQ] = ACTIONS(6857), - [anon_sym_LT_LT_EQ] = ACTIONS(6857), - [anon_sym_GT_GT_EQ] = ACTIONS(6857), - [anon_sym_AMP_EQ] = ACTIONS(6857), - [anon_sym_CARET_EQ] = ACTIONS(6857), - [anon_sym_PIPE_EQ] = ACTIONS(6857), - [anon_sym_DASH_DASH] = ACTIONS(6822), - [anon_sym_PLUS_PLUS] = ACTIONS(6822), - [anon_sym_DOT] = ACTIONS(6822), - [anon_sym_DASH_GT] = ACTIONS(6822), + [sym_identifier] = ACTIONS(7276), + [aux_sym_preproc_def_token1] = ACTIONS(7278), + [anon_sym_LPAREN2] = ACTIONS(7278), + [anon_sym_DASH] = ACTIONS(7278), + [anon_sym_PLUS] = ACTIONS(7278), + [anon_sym_LT] = ACTIONS(7278), + [anon_sym_typedef] = ACTIONS(7276), + [anon_sym_extern] = ACTIONS(7276), + [anon_sym___attribute] = ACTIONS(7276), + [anon_sym___attribute__] = ACTIONS(7276), + [anon_sym___declspec] = ACTIONS(7276), + [anon_sym_LBRACE] = ACTIONS(7278), + [anon_sym_static] = ACTIONS(7276), + [anon_sym_auto] = ACTIONS(7276), + [anon_sym_register] = ACTIONS(7276), + [anon_sym_inline] = ACTIONS(7276), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7276), + [anon_sym_const] = ACTIONS(7276), + [anon_sym_volatile] = ACTIONS(7276), + [anon_sym_restrict] = ACTIONS(7276), + [anon_sym__Atomic] = ACTIONS(7276), + [anon_sym_in] = ACTIONS(7276), + [anon_sym_out] = ACTIONS(7276), + [anon_sym_inout] = ACTIONS(7276), + [anon_sym_bycopy] = ACTIONS(7276), + [anon_sym_byref] = ACTIONS(7276), + [anon_sym_oneway] = ACTIONS(7276), + [anon_sym__Nullable] = ACTIONS(7276), + [anon_sym__Nonnull] = ACTIONS(7276), + [anon_sym__Nullable_result] = ACTIONS(7276), + [anon_sym__Null_unspecified] = ACTIONS(7276), + [anon_sym___autoreleasing] = ACTIONS(7276), + [anon_sym___nullable] = ACTIONS(7276), + [anon_sym___nonnull] = ACTIONS(7276), + [anon_sym___strong] = ACTIONS(7276), + [anon_sym___weak] = ACTIONS(7276), + [anon_sym___bridge] = ACTIONS(7276), + [anon_sym___bridge_transfer] = ACTIONS(7276), + [anon_sym___bridge_retained] = ACTIONS(7276), + [anon_sym___unsafe_unretained] = ACTIONS(7276), + [anon_sym___block] = ACTIONS(7276), + [anon_sym___kindof] = ACTIONS(7276), + [anon_sym___unused] = ACTIONS(7276), + [anon_sym__Complex] = ACTIONS(7276), + [anon_sym___complex] = ACTIONS(7276), + [anon_sym_IBOutlet] = ACTIONS(7276), + [anon_sym_IBInspectable] = ACTIONS(7276), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7276), + [anon_sym_signed] = ACTIONS(7276), + [anon_sym_unsigned] = ACTIONS(7276), + [anon_sym_long] = ACTIONS(7276), + [anon_sym_short] = ACTIONS(7276), + [sym_primitive_type] = ACTIONS(7276), + [anon_sym_enum] = ACTIONS(7276), + [anon_sym_COLON] = ACTIONS(7278), + [anon_sym_struct] = ACTIONS(7276), + [anon_sym_union] = ACTIONS(7276), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6820), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6820), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6820), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6820), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6820), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6820), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6820), - [anon_sym_NS_AVAILABLE] = ACTIONS(6820), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6820), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_API_AVAILABLE] = ACTIONS(6820), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6820), - [anon_sym_API_DEPRECATED] = ACTIONS(6820), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6820), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6820), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6820), - [anon_sym___deprecated_msg] = ACTIONS(6820), - [anon_sym___deprecated_enum_msg] = ACTIONS(6820), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6820), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6820), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6820), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6820), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7276), + [anon_sym_ATend] = ACTIONS(7278), + [sym_optional] = ACTIONS(7278), + [sym_required] = ACTIONS(7278), + [anon_sym_ATproperty] = ACTIONS(7278), + [sym_method_attribute_specifier] = ACTIONS(7276), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7276), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7276), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7276), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7276), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7276), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7276), + [anon_sym_NS_AVAILABLE] = ACTIONS(7276), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7276), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7276), + [anon_sym_API_AVAILABLE] = ACTIONS(7276), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7276), + [anon_sym_API_DEPRECATED] = ACTIONS(7276), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7276), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7276), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7276), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7276), + [anon_sym___deprecated_msg] = ACTIONS(7276), + [anon_sym___deprecated_enum_msg] = ACTIONS(7276), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7276), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7276), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7276), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7276), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7276), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7276), + [anon_sym_NS_ENUM] = ACTIONS(7276), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7276), + [anon_sym_NS_OPTIONS] = ACTIONS(7276), + [anon_sym_typeof] = ACTIONS(7276), + [anon_sym___typeof] = ACTIONS(7276), + [anon_sym___typeof__] = ACTIONS(7276), + [sym_id] = ACTIONS(7276), + [sym_instancetype] = ACTIONS(7276), + [sym_Class] = ACTIONS(7276), + [sym_SEL] = ACTIONS(7276), + [sym_IMP] = ACTIONS(7276), + [sym_BOOL] = ACTIONS(7276), + [sym_auto] = ACTIONS(7276), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -495721,108 +493877,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3040] = { - [sym_identifier] = ACTIONS(7118), - [anon_sym_COMMA] = ACTIONS(7120), - [anon_sym_RPAREN] = ACTIONS(7120), - [anon_sym_LPAREN2] = ACTIONS(7120), - [anon_sym_DASH] = ACTIONS(7118), - [anon_sym_PLUS] = ACTIONS(7118), - [anon_sym_STAR] = ACTIONS(7118), - [anon_sym_SLASH] = ACTIONS(7118), - [anon_sym_PERCENT] = ACTIONS(7118), - [anon_sym_PIPE_PIPE] = ACTIONS(7120), - [anon_sym_AMP_AMP] = ACTIONS(7120), - [anon_sym_PIPE] = ACTIONS(7118), - [anon_sym_CARET] = ACTIONS(7118), - [anon_sym_AMP] = ACTIONS(7118), - [anon_sym_EQ_EQ] = ACTIONS(7120), - [anon_sym_BANG_EQ] = ACTIONS(7120), - [anon_sym_GT] = ACTIONS(7118), - [anon_sym_GT_EQ] = ACTIONS(7120), - [anon_sym_LT_EQ] = ACTIONS(7120), - [anon_sym_LT] = ACTIONS(7118), - [anon_sym_LT_LT] = ACTIONS(7118), - [anon_sym_GT_GT] = ACTIONS(7118), - [anon_sym_SEMI] = ACTIONS(7120), - [anon_sym___attribute] = ACTIONS(7118), - [anon_sym___attribute__] = ACTIONS(7118), - [anon_sym_RBRACE] = ACTIONS(7120), - [anon_sym_LBRACK] = ACTIONS(7120), - [anon_sym_RBRACK] = ACTIONS(7120), - [anon_sym_EQ] = ACTIONS(7118), - [anon_sym_const] = ACTIONS(7118), - [anon_sym_volatile] = ACTIONS(7118), - [anon_sym_restrict] = ACTIONS(7118), - [anon_sym__Atomic] = ACTIONS(7118), - [anon_sym_in] = ACTIONS(7118), - [anon_sym_out] = ACTIONS(7118), - [anon_sym_inout] = ACTIONS(7118), - [anon_sym_bycopy] = ACTIONS(7118), - [anon_sym_byref] = ACTIONS(7118), - [anon_sym_oneway] = ACTIONS(7118), - [anon_sym__Nullable] = ACTIONS(7118), - [anon_sym__Nonnull] = ACTIONS(7118), - [anon_sym__Nullable_result] = ACTIONS(7118), - [anon_sym__Null_unspecified] = ACTIONS(7118), - [anon_sym___autoreleasing] = ACTIONS(7118), - [anon_sym___nullable] = ACTIONS(7118), - [anon_sym___nonnull] = ACTIONS(7118), - [anon_sym___strong] = ACTIONS(7118), - [anon_sym___weak] = ACTIONS(7118), - [anon_sym___bridge] = ACTIONS(7118), - [anon_sym___bridge_transfer] = ACTIONS(7118), - [anon_sym___bridge_retained] = ACTIONS(7118), - [anon_sym___unsafe_unretained] = ACTIONS(7118), - [anon_sym___block] = ACTIONS(7118), - [anon_sym___kindof] = ACTIONS(7118), - [anon_sym___unused] = ACTIONS(7118), - [anon_sym__Complex] = ACTIONS(7118), - [anon_sym___complex] = ACTIONS(7118), - [anon_sym_IBOutlet] = ACTIONS(7118), - [anon_sym_IBInspectable] = ACTIONS(7118), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7118), - [anon_sym_COLON] = ACTIONS(7120), - [anon_sym_QMARK] = ACTIONS(7120), - [anon_sym_STAR_EQ] = ACTIONS(7120), - [anon_sym_SLASH_EQ] = ACTIONS(7120), - [anon_sym_PERCENT_EQ] = ACTIONS(7120), - [anon_sym_PLUS_EQ] = ACTIONS(7120), - [anon_sym_DASH_EQ] = ACTIONS(7120), - [anon_sym_LT_LT_EQ] = ACTIONS(7120), - [anon_sym_GT_GT_EQ] = ACTIONS(7120), - [anon_sym_AMP_EQ] = ACTIONS(7120), - [anon_sym_CARET_EQ] = ACTIONS(7120), - [anon_sym_PIPE_EQ] = ACTIONS(7120), - [anon_sym_DASH_DASH] = ACTIONS(7120), - [anon_sym_PLUS_PLUS] = ACTIONS(7120), - [anon_sym_DOT] = ACTIONS(7120), - [anon_sym_DASH_GT] = ACTIONS(7120), + [sym_identifier] = ACTIONS(2256), + [anon_sym_COMMA] = ACTIONS(7280), + [anon_sym_RPAREN] = ACTIONS(7280), + [anon_sym_LPAREN2] = ACTIONS(7280), + [anon_sym_SEMI] = ACTIONS(7280), + [anon_sym_typedef] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(7280), + [anon_sym_RBRACE] = ACTIONS(7280), + [anon_sym_LBRACK] = ACTIONS(7280), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_auto] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_out] = ACTIONS(2256), + [anon_sym_inout] = ACTIONS(2256), + [anon_sym_bycopy] = ACTIONS(2256), + [anon_sym_byref] = ACTIONS(2256), + [anon_sym_oneway] = ACTIONS(2256), + [anon_sym__Nullable] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym__Nullable_result] = ACTIONS(2256), + [anon_sym__Null_unspecified] = ACTIONS(2256), + [anon_sym___autoreleasing] = ACTIONS(2256), + [anon_sym___nullable] = ACTIONS(2256), + [anon_sym___nonnull] = ACTIONS(2256), + [anon_sym___strong] = ACTIONS(2256), + [anon_sym___weak] = ACTIONS(2256), + [anon_sym___bridge] = ACTIONS(2256), + [anon_sym___bridge_transfer] = ACTIONS(2256), + [anon_sym___bridge_retained] = ACTIONS(2256), + [anon_sym___unsafe_unretained] = ACTIONS(2256), + [anon_sym___block] = ACTIONS(2256), + [anon_sym___kindof] = ACTIONS(2256), + [anon_sym___unused] = ACTIONS(2256), + [anon_sym__Complex] = ACTIONS(2256), + [anon_sym___complex] = ACTIONS(2256), + [anon_sym_IBOutlet] = ACTIONS(2256), + [anon_sym_IBInspectable] = ACTIONS(2256), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2256), + [anon_sym_signed] = ACTIONS(2256), + [anon_sym_unsigned] = ACTIONS(2256), + [anon_sym_long] = ACTIONS(2256), + [anon_sym_short] = ACTIONS(2256), + [sym_primitive_type] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(7280), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_ATdefs] = ACTIONS(7280), + [anon_sym_union] = ACTIONS(2256), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7118), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7118), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7118), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7118), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7118), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7118), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7118), - [anon_sym_NS_AVAILABLE] = ACTIONS(7118), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7118), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7118), - [anon_sym_API_AVAILABLE] = ACTIONS(7118), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7118), - [anon_sym_API_DEPRECATED] = ACTIONS(7118), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7118), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7118), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7118), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7118), - [anon_sym___deprecated_msg] = ACTIONS(7118), - [anon_sym___deprecated_enum_msg] = ACTIONS(7118), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7118), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7118), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7118), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7118), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7118), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7118), + [anon_sym_ATprotocol] = ACTIONS(7280), + [anon_sym_ATinterface] = ACTIONS(7280), + [sym_method_attribute_specifier] = ACTIONS(2256), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2256), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE] = ACTIONS(2256), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_API_AVAILABLE] = ACTIONS(2256), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_API_DEPRECATED] = ACTIONS(2256), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2256), + [anon_sym___deprecated_msg] = ACTIONS(2256), + [anon_sym___deprecated_enum_msg] = ACTIONS(2256), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2256), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(2256), + [anon_sym_ATimplementation] = ACTIONS(7280), + [anon_sym_NS_ENUM] = ACTIONS(2256), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(2256), + [anon_sym_NS_OPTIONS] = ACTIONS(2256), + [anon_sym_typeof] = ACTIONS(2256), + [anon_sym___typeof] = ACTIONS(2256), + [anon_sym___typeof__] = ACTIONS(2256), + [sym_id] = ACTIONS(2256), + [sym_instancetype] = ACTIONS(2256), + [sym_Class] = ACTIONS(2256), + [sym_SEL] = ACTIONS(2256), + [sym_IMP] = ACTIONS(2256), + [sym_BOOL] = ACTIONS(2256), + [sym_auto] = ACTIONS(2256), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -495831,5095 +493986,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3041] = { - [sym_identifier] = ACTIONS(7122), - [anon_sym_COMMA] = ACTIONS(7124), - [anon_sym_RPAREN] = ACTIONS(7124), - [anon_sym_LPAREN2] = ACTIONS(7124), - [anon_sym_DASH] = ACTIONS(7122), - [anon_sym_PLUS] = ACTIONS(7122), - [anon_sym_STAR] = ACTIONS(7122), - [anon_sym_SLASH] = ACTIONS(7122), - [anon_sym_PERCENT] = ACTIONS(7122), - [anon_sym_PIPE_PIPE] = ACTIONS(7124), - [anon_sym_AMP_AMP] = ACTIONS(7124), - [anon_sym_PIPE] = ACTIONS(7122), - [anon_sym_CARET] = ACTIONS(7122), - [anon_sym_AMP] = ACTIONS(7122), - [anon_sym_EQ_EQ] = ACTIONS(7124), - [anon_sym_BANG_EQ] = ACTIONS(7124), - [anon_sym_GT] = ACTIONS(7122), - [anon_sym_GT_EQ] = ACTIONS(7124), - [anon_sym_LT_EQ] = ACTIONS(7124), - [anon_sym_LT] = ACTIONS(7122), - [anon_sym_LT_LT] = ACTIONS(7122), - [anon_sym_GT_GT] = ACTIONS(7122), - [anon_sym_SEMI] = ACTIONS(7124), - [anon_sym___attribute] = ACTIONS(7122), - [anon_sym___attribute__] = ACTIONS(7122), - [anon_sym_RBRACE] = ACTIONS(7124), - [anon_sym_LBRACK] = ACTIONS(7124), - [anon_sym_RBRACK] = ACTIONS(7124), - [anon_sym_EQ] = ACTIONS(7122), - [anon_sym_const] = ACTIONS(7122), - [anon_sym_volatile] = ACTIONS(7122), - [anon_sym_restrict] = ACTIONS(7122), - [anon_sym__Atomic] = ACTIONS(7122), - [anon_sym_in] = ACTIONS(7122), - [anon_sym_out] = ACTIONS(7122), - [anon_sym_inout] = ACTIONS(7122), - [anon_sym_bycopy] = ACTIONS(7122), - [anon_sym_byref] = ACTIONS(7122), - [anon_sym_oneway] = ACTIONS(7122), - [anon_sym__Nullable] = ACTIONS(7122), - [anon_sym__Nonnull] = ACTIONS(7122), - [anon_sym__Nullable_result] = ACTIONS(7122), - [anon_sym__Null_unspecified] = ACTIONS(7122), - [anon_sym___autoreleasing] = ACTIONS(7122), - [anon_sym___nullable] = ACTIONS(7122), - [anon_sym___nonnull] = ACTIONS(7122), - [anon_sym___strong] = ACTIONS(7122), - [anon_sym___weak] = ACTIONS(7122), - [anon_sym___bridge] = ACTIONS(7122), - [anon_sym___bridge_transfer] = ACTIONS(7122), - [anon_sym___bridge_retained] = ACTIONS(7122), - [anon_sym___unsafe_unretained] = ACTIONS(7122), - [anon_sym___block] = ACTIONS(7122), - [anon_sym___kindof] = ACTIONS(7122), - [anon_sym___unused] = ACTIONS(7122), - [anon_sym__Complex] = ACTIONS(7122), - [anon_sym___complex] = ACTIONS(7122), - [anon_sym_IBOutlet] = ACTIONS(7122), - [anon_sym_IBInspectable] = ACTIONS(7122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7122), - [anon_sym_COLON] = ACTIONS(7124), - [anon_sym_QMARK] = ACTIONS(7124), - [anon_sym_STAR_EQ] = ACTIONS(7124), - [anon_sym_SLASH_EQ] = ACTIONS(7124), - [anon_sym_PERCENT_EQ] = ACTIONS(7124), - [anon_sym_PLUS_EQ] = ACTIONS(7124), - [anon_sym_DASH_EQ] = ACTIONS(7124), - [anon_sym_LT_LT_EQ] = ACTIONS(7124), - [anon_sym_GT_GT_EQ] = ACTIONS(7124), - [anon_sym_AMP_EQ] = ACTIONS(7124), - [anon_sym_CARET_EQ] = ACTIONS(7124), - [anon_sym_PIPE_EQ] = ACTIONS(7124), - [anon_sym_DASH_DASH] = ACTIONS(7124), - [anon_sym_PLUS_PLUS] = ACTIONS(7124), - [anon_sym_DOT] = ACTIONS(7124), - [anon_sym_DASH_GT] = ACTIONS(7124), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7122), - [anon_sym_NS_AVAILABLE] = ACTIONS(7122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7122), - [anon_sym_API_AVAILABLE] = ACTIONS(7122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7122), - [anon_sym_API_DEPRECATED] = ACTIONS(7122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7122), - [anon_sym___deprecated_msg] = ACTIONS(7122), - [anon_sym___deprecated_enum_msg] = ACTIONS(7122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3042] = { - [sym_identifier] = ACTIONS(7126), - [anon_sym_COMMA] = ACTIONS(7128), - [anon_sym_RPAREN] = ACTIONS(7128), - [anon_sym_LPAREN2] = ACTIONS(7128), - [anon_sym_DASH] = ACTIONS(7126), - [anon_sym_PLUS] = ACTIONS(7126), - [anon_sym_STAR] = ACTIONS(7126), - [anon_sym_SLASH] = ACTIONS(7126), - [anon_sym_PERCENT] = ACTIONS(7126), - [anon_sym_PIPE_PIPE] = ACTIONS(7128), - [anon_sym_AMP_AMP] = ACTIONS(7128), - [anon_sym_PIPE] = ACTIONS(7126), - [anon_sym_CARET] = ACTIONS(7126), - [anon_sym_AMP] = ACTIONS(7126), - [anon_sym_EQ_EQ] = ACTIONS(7128), - [anon_sym_BANG_EQ] = ACTIONS(7128), - [anon_sym_GT] = ACTIONS(7126), - [anon_sym_GT_EQ] = ACTIONS(7128), - [anon_sym_LT_EQ] = ACTIONS(7128), - [anon_sym_LT] = ACTIONS(7126), - [anon_sym_LT_LT] = ACTIONS(7126), - [anon_sym_GT_GT] = ACTIONS(7126), - [anon_sym_SEMI] = ACTIONS(7128), - [anon_sym___attribute] = ACTIONS(7126), - [anon_sym___attribute__] = ACTIONS(7126), - [anon_sym_RBRACE] = ACTIONS(7128), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(7128), - [anon_sym_EQ] = ACTIONS(7126), - [anon_sym_const] = ACTIONS(7126), - [anon_sym_volatile] = ACTIONS(7126), - [anon_sym_restrict] = ACTIONS(7126), - [anon_sym__Atomic] = ACTIONS(7126), - [anon_sym_in] = ACTIONS(7126), - [anon_sym_out] = ACTIONS(7126), - [anon_sym_inout] = ACTIONS(7126), - [anon_sym_bycopy] = ACTIONS(7126), - [anon_sym_byref] = ACTIONS(7126), - [anon_sym_oneway] = ACTIONS(7126), - [anon_sym__Nullable] = ACTIONS(7126), - [anon_sym__Nonnull] = ACTIONS(7126), - [anon_sym__Nullable_result] = ACTIONS(7126), - [anon_sym__Null_unspecified] = ACTIONS(7126), - [anon_sym___autoreleasing] = ACTIONS(7126), - [anon_sym___nullable] = ACTIONS(7126), - [anon_sym___nonnull] = ACTIONS(7126), - [anon_sym___strong] = ACTIONS(7126), - [anon_sym___weak] = ACTIONS(7126), - [anon_sym___bridge] = ACTIONS(7126), - [anon_sym___bridge_transfer] = ACTIONS(7126), - [anon_sym___bridge_retained] = ACTIONS(7126), - [anon_sym___unsafe_unretained] = ACTIONS(7126), - [anon_sym___block] = ACTIONS(7126), - [anon_sym___kindof] = ACTIONS(7126), - [anon_sym___unused] = ACTIONS(7126), - [anon_sym__Complex] = ACTIONS(7126), - [anon_sym___complex] = ACTIONS(7126), - [anon_sym_IBOutlet] = ACTIONS(7126), - [anon_sym_IBInspectable] = ACTIONS(7126), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7126), - [anon_sym_COLON] = ACTIONS(7128), - [anon_sym_QMARK] = ACTIONS(7128), - [anon_sym_STAR_EQ] = ACTIONS(7128), - [anon_sym_SLASH_EQ] = ACTIONS(7128), - [anon_sym_PERCENT_EQ] = ACTIONS(7128), - [anon_sym_PLUS_EQ] = ACTIONS(7128), - [anon_sym_DASH_EQ] = ACTIONS(7128), - [anon_sym_LT_LT_EQ] = ACTIONS(7128), - [anon_sym_GT_GT_EQ] = ACTIONS(7128), - [anon_sym_AMP_EQ] = ACTIONS(7128), - [anon_sym_CARET_EQ] = ACTIONS(7128), - [anon_sym_PIPE_EQ] = ACTIONS(7128), - [anon_sym_DASH_DASH] = ACTIONS(7128), - [anon_sym_PLUS_PLUS] = ACTIONS(7128), - [anon_sym_DOT] = ACTIONS(7128), - [anon_sym_DASH_GT] = ACTIONS(7128), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7126), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7126), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7126), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7126), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7126), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7126), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7126), - [anon_sym_NS_AVAILABLE] = ACTIONS(7126), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7126), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7126), - [anon_sym_API_AVAILABLE] = ACTIONS(7126), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7126), - [anon_sym_API_DEPRECATED] = ACTIONS(7126), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7126), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7126), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7126), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7126), - [anon_sym___deprecated_msg] = ACTIONS(7126), - [anon_sym___deprecated_enum_msg] = ACTIONS(7126), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7126), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7126), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7126), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7126), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7126), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7126), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3043] = { - [sym_identifier] = ACTIONS(7130), - [anon_sym_COMMA] = ACTIONS(7132), - [anon_sym_RPAREN] = ACTIONS(7132), - [anon_sym_LPAREN2] = ACTIONS(7132), - [anon_sym_DASH] = ACTIONS(7130), - [anon_sym_PLUS] = ACTIONS(7130), - [anon_sym_STAR] = ACTIONS(7130), - [anon_sym_SLASH] = ACTIONS(7130), - [anon_sym_PERCENT] = ACTIONS(7130), - [anon_sym_PIPE_PIPE] = ACTIONS(7132), - [anon_sym_AMP_AMP] = ACTIONS(7132), - [anon_sym_PIPE] = ACTIONS(7130), - [anon_sym_CARET] = ACTIONS(7130), - [anon_sym_AMP] = ACTIONS(7130), - [anon_sym_EQ_EQ] = ACTIONS(7132), - [anon_sym_BANG_EQ] = ACTIONS(7132), - [anon_sym_GT] = ACTIONS(7130), - [anon_sym_GT_EQ] = ACTIONS(7132), - [anon_sym_LT_EQ] = ACTIONS(7132), - [anon_sym_LT] = ACTIONS(7130), - [anon_sym_LT_LT] = ACTIONS(7130), - [anon_sym_GT_GT] = ACTIONS(7130), - [anon_sym_SEMI] = ACTIONS(7132), - [anon_sym___attribute] = ACTIONS(7130), - [anon_sym___attribute__] = ACTIONS(7130), - [anon_sym_RBRACE] = ACTIONS(7132), - [anon_sym_LBRACK] = ACTIONS(7132), - [anon_sym_RBRACK] = ACTIONS(7132), - [anon_sym_EQ] = ACTIONS(7130), - [anon_sym_const] = ACTIONS(7130), - [anon_sym_volatile] = ACTIONS(7130), - [anon_sym_restrict] = ACTIONS(7130), - [anon_sym__Atomic] = ACTIONS(7130), - [anon_sym_in] = ACTIONS(7130), - [anon_sym_out] = ACTIONS(7130), - [anon_sym_inout] = ACTIONS(7130), - [anon_sym_bycopy] = ACTIONS(7130), - [anon_sym_byref] = ACTIONS(7130), - [anon_sym_oneway] = ACTIONS(7130), - [anon_sym__Nullable] = ACTIONS(7130), - [anon_sym__Nonnull] = ACTIONS(7130), - [anon_sym__Nullable_result] = ACTIONS(7130), - [anon_sym__Null_unspecified] = ACTIONS(7130), - [anon_sym___autoreleasing] = ACTIONS(7130), - [anon_sym___nullable] = ACTIONS(7130), - [anon_sym___nonnull] = ACTIONS(7130), - [anon_sym___strong] = ACTIONS(7130), - [anon_sym___weak] = ACTIONS(7130), - [anon_sym___bridge] = ACTIONS(7130), - [anon_sym___bridge_transfer] = ACTIONS(7130), - [anon_sym___bridge_retained] = ACTIONS(7130), - [anon_sym___unsafe_unretained] = ACTIONS(7130), - [anon_sym___block] = ACTIONS(7130), - [anon_sym___kindof] = ACTIONS(7130), - [anon_sym___unused] = ACTIONS(7130), - [anon_sym__Complex] = ACTIONS(7130), - [anon_sym___complex] = ACTIONS(7130), - [anon_sym_IBOutlet] = ACTIONS(7130), - [anon_sym_IBInspectable] = ACTIONS(7130), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7130), - [anon_sym_COLON] = ACTIONS(7132), - [anon_sym_QMARK] = ACTIONS(7132), - [anon_sym_STAR_EQ] = ACTIONS(7132), - [anon_sym_SLASH_EQ] = ACTIONS(7132), - [anon_sym_PERCENT_EQ] = ACTIONS(7132), - [anon_sym_PLUS_EQ] = ACTIONS(7132), - [anon_sym_DASH_EQ] = ACTIONS(7132), - [anon_sym_LT_LT_EQ] = ACTIONS(7132), - [anon_sym_GT_GT_EQ] = ACTIONS(7132), - [anon_sym_AMP_EQ] = ACTIONS(7132), - [anon_sym_CARET_EQ] = ACTIONS(7132), - [anon_sym_PIPE_EQ] = ACTIONS(7132), - [anon_sym_DASH_DASH] = ACTIONS(7132), - [anon_sym_PLUS_PLUS] = ACTIONS(7132), - [anon_sym_DOT] = ACTIONS(7132), - [anon_sym_DASH_GT] = ACTIONS(7132), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7130), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7130), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7130), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7130), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7130), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7130), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7130), - [anon_sym_NS_AVAILABLE] = ACTIONS(7130), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7130), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7130), - [anon_sym_API_AVAILABLE] = ACTIONS(7130), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7130), - [anon_sym_API_DEPRECATED] = ACTIONS(7130), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7130), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7130), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7130), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7130), - [anon_sym___deprecated_msg] = ACTIONS(7130), - [anon_sym___deprecated_enum_msg] = ACTIONS(7130), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7130), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7130), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7130), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7130), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7130), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7130), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3044] = { - [sym_identifier] = ACTIONS(7134), - [anon_sym_COMMA] = ACTIONS(7136), - [anon_sym_RPAREN] = ACTIONS(7136), - [anon_sym_LPAREN2] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(7134), - [anon_sym_PLUS] = ACTIONS(7134), - [anon_sym_STAR] = ACTIONS(7134), - [anon_sym_SLASH] = ACTIONS(7134), - [anon_sym_PERCENT] = ACTIONS(7134), - [anon_sym_PIPE_PIPE] = ACTIONS(7136), - [anon_sym_AMP_AMP] = ACTIONS(7136), - [anon_sym_PIPE] = ACTIONS(7134), - [anon_sym_CARET] = ACTIONS(7134), - [anon_sym_AMP] = ACTIONS(7134), - [anon_sym_EQ_EQ] = ACTIONS(7136), - [anon_sym_BANG_EQ] = ACTIONS(7136), - [anon_sym_GT] = ACTIONS(7134), - [anon_sym_GT_EQ] = ACTIONS(7136), - [anon_sym_LT_EQ] = ACTIONS(7136), - [anon_sym_LT] = ACTIONS(7134), - [anon_sym_LT_LT] = ACTIONS(7134), - [anon_sym_GT_GT] = ACTIONS(7134), - [anon_sym_SEMI] = ACTIONS(7136), - [anon_sym___attribute] = ACTIONS(7134), - [anon_sym___attribute__] = ACTIONS(7134), - [anon_sym_RBRACE] = ACTIONS(7136), - [anon_sym_LBRACK] = ACTIONS(7136), - [anon_sym_RBRACK] = ACTIONS(7136), - [anon_sym_EQ] = ACTIONS(7134), - [anon_sym_const] = ACTIONS(7134), - [anon_sym_volatile] = ACTIONS(7134), - [anon_sym_restrict] = ACTIONS(7134), - [anon_sym__Atomic] = ACTIONS(7134), - [anon_sym_in] = ACTIONS(7134), - [anon_sym_out] = ACTIONS(7134), - [anon_sym_inout] = ACTIONS(7134), - [anon_sym_bycopy] = ACTIONS(7134), - [anon_sym_byref] = ACTIONS(7134), - [anon_sym_oneway] = ACTIONS(7134), - [anon_sym__Nullable] = ACTIONS(7134), - [anon_sym__Nonnull] = ACTIONS(7134), - [anon_sym__Nullable_result] = ACTIONS(7134), - [anon_sym__Null_unspecified] = ACTIONS(7134), - [anon_sym___autoreleasing] = ACTIONS(7134), - [anon_sym___nullable] = ACTIONS(7134), - [anon_sym___nonnull] = ACTIONS(7134), - [anon_sym___strong] = ACTIONS(7134), - [anon_sym___weak] = ACTIONS(7134), - [anon_sym___bridge] = ACTIONS(7134), - [anon_sym___bridge_transfer] = ACTIONS(7134), - [anon_sym___bridge_retained] = ACTIONS(7134), - [anon_sym___unsafe_unretained] = ACTIONS(7134), - [anon_sym___block] = ACTIONS(7134), - [anon_sym___kindof] = ACTIONS(7134), - [anon_sym___unused] = ACTIONS(7134), - [anon_sym__Complex] = ACTIONS(7134), - [anon_sym___complex] = ACTIONS(7134), - [anon_sym_IBOutlet] = ACTIONS(7134), - [anon_sym_IBInspectable] = ACTIONS(7134), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7134), - [anon_sym_COLON] = ACTIONS(7136), - [anon_sym_QMARK] = ACTIONS(7136), - [anon_sym_STAR_EQ] = ACTIONS(7136), - [anon_sym_SLASH_EQ] = ACTIONS(7136), - [anon_sym_PERCENT_EQ] = ACTIONS(7136), - [anon_sym_PLUS_EQ] = ACTIONS(7136), - [anon_sym_DASH_EQ] = ACTIONS(7136), - [anon_sym_LT_LT_EQ] = ACTIONS(7136), - [anon_sym_GT_GT_EQ] = ACTIONS(7136), - [anon_sym_AMP_EQ] = ACTIONS(7136), - [anon_sym_CARET_EQ] = ACTIONS(7136), - [anon_sym_PIPE_EQ] = ACTIONS(7136), - [anon_sym_DASH_DASH] = ACTIONS(7136), - [anon_sym_PLUS_PLUS] = ACTIONS(7136), - [anon_sym_DOT] = ACTIONS(7136), - [anon_sym_DASH_GT] = ACTIONS(7136), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7134), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7134), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7134), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7134), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7134), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7134), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7134), - [anon_sym_NS_AVAILABLE] = ACTIONS(7134), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7134), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7134), - [anon_sym_API_AVAILABLE] = ACTIONS(7134), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7134), - [anon_sym_API_DEPRECATED] = ACTIONS(7134), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7134), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7134), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7134), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7134), - [anon_sym___deprecated_msg] = ACTIONS(7134), - [anon_sym___deprecated_enum_msg] = ACTIONS(7134), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7134), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7134), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7134), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7134), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7134), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7134), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3045] = { - [sym_identifier] = ACTIONS(7138), - [aux_sym_preproc_def_token1] = ACTIONS(7140), - [anon_sym_DASH] = ACTIONS(7140), - [anon_sym_PLUS] = ACTIONS(7140), - [anon_sym_typedef] = ACTIONS(7138), - [anon_sym_extern] = ACTIONS(7138), - [anon_sym___attribute] = ACTIONS(7138), - [anon_sym___attribute__] = ACTIONS(7138), - [anon_sym___declspec] = ACTIONS(7138), - [anon_sym___cdecl] = ACTIONS(7138), - [anon_sym___clrcall] = ACTIONS(7138), - [anon_sym___stdcall] = ACTIONS(7138), - [anon_sym___fastcall] = ACTIONS(7138), - [anon_sym___thiscall] = ACTIONS(7138), - [anon_sym___vectorcall] = ACTIONS(7138), - [anon_sym_static] = ACTIONS(7138), - [anon_sym_auto] = ACTIONS(7138), - [anon_sym_register] = ACTIONS(7138), - [anon_sym_inline] = ACTIONS(7138), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7138), - [anon_sym_const] = ACTIONS(7138), - [anon_sym_volatile] = ACTIONS(7138), - [anon_sym_restrict] = ACTIONS(7138), - [anon_sym__Atomic] = ACTIONS(7138), - [anon_sym_in] = ACTIONS(7138), - [anon_sym_out] = ACTIONS(7138), - [anon_sym_inout] = ACTIONS(7138), - [anon_sym_bycopy] = ACTIONS(7138), - [anon_sym_byref] = ACTIONS(7138), - [anon_sym_oneway] = ACTIONS(7138), - [anon_sym__Nullable] = ACTIONS(7138), - [anon_sym__Nonnull] = ACTIONS(7138), - [anon_sym__Nullable_result] = ACTIONS(7138), - [anon_sym__Null_unspecified] = ACTIONS(7138), - [anon_sym___autoreleasing] = ACTIONS(7138), - [anon_sym___nullable] = ACTIONS(7138), - [anon_sym___nonnull] = ACTIONS(7138), - [anon_sym___strong] = ACTIONS(7138), - [anon_sym___weak] = ACTIONS(7138), - [anon_sym___bridge] = ACTIONS(7138), - [anon_sym___bridge_transfer] = ACTIONS(7138), - [anon_sym___bridge_retained] = ACTIONS(7138), - [anon_sym___unsafe_unretained] = ACTIONS(7138), - [anon_sym___block] = ACTIONS(7138), - [anon_sym___kindof] = ACTIONS(7138), - [anon_sym___unused] = ACTIONS(7138), - [anon_sym__Complex] = ACTIONS(7138), - [anon_sym___complex] = ACTIONS(7138), - [anon_sym_IBOutlet] = ACTIONS(7138), - [anon_sym_IBInspectable] = ACTIONS(7138), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7138), - [anon_sym_signed] = ACTIONS(7138), - [anon_sym_unsigned] = ACTIONS(7138), - [anon_sym_long] = ACTIONS(7138), - [anon_sym_short] = ACTIONS(7138), - [sym_primitive_type] = ACTIONS(7138), - [anon_sym_enum] = ACTIONS(7138), - [anon_sym_NS_ENUM] = ACTIONS(7138), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7138), - [anon_sym_NS_OPTIONS] = ACTIONS(7138), - [anon_sym_struct] = ACTIONS(7138), - [anon_sym_union] = ACTIONS(7138), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7138), - [anon_sym_ATend] = ACTIONS(7140), - [sym_method_attribute_specifier] = ACTIONS(7138), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7138), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7138), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7138), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7138), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7138), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7138), - [anon_sym_NS_AVAILABLE] = ACTIONS(7138), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7138), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7138), - [anon_sym_API_AVAILABLE] = ACTIONS(7138), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7138), - [anon_sym_API_DEPRECATED] = ACTIONS(7138), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7138), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7138), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7138), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7138), - [anon_sym___deprecated_msg] = ACTIONS(7138), - [anon_sym___deprecated_enum_msg] = ACTIONS(7138), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7138), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7138), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7138), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7138), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7138), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7138), - [anon_sym_ATsynthesize] = ACTIONS(7140), - [anon_sym_ATdynamic] = ACTIONS(7140), - [anon_sym_typeof] = ACTIONS(7138), - [anon_sym___typeof] = ACTIONS(7138), - [anon_sym___typeof__] = ACTIONS(7138), - [sym_id] = ACTIONS(7138), - [sym_instancetype] = ACTIONS(7138), - [sym_Class] = ACTIONS(7138), - [sym_SEL] = ACTIONS(7138), - [sym_IMP] = ACTIONS(7138), - [sym_BOOL] = ACTIONS(7138), - [sym_auto] = ACTIONS(7138), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3046] = { - [sym_identifier] = ACTIONS(1950), - [aux_sym_preproc_def_token1] = ACTIONS(1952), - [anon_sym_DASH] = ACTIONS(1952), - [anon_sym_PLUS] = ACTIONS(1952), - [anon_sym_typedef] = ACTIONS(1950), - [anon_sym_extern] = ACTIONS(1950), - [anon_sym___attribute] = ACTIONS(1950), - [anon_sym___attribute__] = ACTIONS(1950), - [anon_sym___declspec] = ACTIONS(1950), - [anon_sym___cdecl] = ACTIONS(1950), - [anon_sym___clrcall] = ACTIONS(1950), - [anon_sym___stdcall] = ACTIONS(1950), - [anon_sym___fastcall] = ACTIONS(1950), - [anon_sym___thiscall] = ACTIONS(1950), - [anon_sym___vectorcall] = ACTIONS(1950), - [anon_sym_static] = ACTIONS(1950), - [anon_sym_auto] = ACTIONS(1950), - [anon_sym_register] = ACTIONS(1950), - [anon_sym_inline] = ACTIONS(1950), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1950), - [anon_sym_const] = ACTIONS(1950), - [anon_sym_volatile] = ACTIONS(1950), - [anon_sym_restrict] = ACTIONS(1950), - [anon_sym__Atomic] = ACTIONS(1950), - [anon_sym_in] = ACTIONS(1950), - [anon_sym_out] = ACTIONS(1950), - [anon_sym_inout] = ACTIONS(1950), - [anon_sym_bycopy] = ACTIONS(1950), - [anon_sym_byref] = ACTIONS(1950), - [anon_sym_oneway] = ACTIONS(1950), - [anon_sym__Nullable] = ACTIONS(1950), - [anon_sym__Nonnull] = ACTIONS(1950), - [anon_sym__Nullable_result] = ACTIONS(1950), - [anon_sym__Null_unspecified] = ACTIONS(1950), - [anon_sym___autoreleasing] = ACTIONS(1950), - [anon_sym___nullable] = ACTIONS(1950), - [anon_sym___nonnull] = ACTIONS(1950), - [anon_sym___strong] = ACTIONS(1950), - [anon_sym___weak] = ACTIONS(1950), - [anon_sym___bridge] = ACTIONS(1950), - [anon_sym___bridge_transfer] = ACTIONS(1950), - [anon_sym___bridge_retained] = ACTIONS(1950), - [anon_sym___unsafe_unretained] = ACTIONS(1950), - [anon_sym___block] = ACTIONS(1950), - [anon_sym___kindof] = ACTIONS(1950), - [anon_sym___unused] = ACTIONS(1950), - [anon_sym__Complex] = ACTIONS(1950), - [anon_sym___complex] = ACTIONS(1950), - [anon_sym_IBOutlet] = ACTIONS(1950), - [anon_sym_IBInspectable] = ACTIONS(1950), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1950), - [anon_sym_signed] = ACTIONS(1950), - [anon_sym_unsigned] = ACTIONS(1950), - [anon_sym_long] = ACTIONS(1950), - [anon_sym_short] = ACTIONS(1950), - [sym_primitive_type] = ACTIONS(1950), - [anon_sym_enum] = ACTIONS(1950), - [anon_sym_NS_ENUM] = ACTIONS(1950), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1950), - [anon_sym_NS_OPTIONS] = ACTIONS(1950), - [anon_sym_struct] = ACTIONS(1950), - [anon_sym_union] = ACTIONS(1950), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1950), - [anon_sym_ATend] = ACTIONS(1952), - [sym_method_attribute_specifier] = ACTIONS(1950), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1950), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1950), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1950), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1950), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1950), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1950), - [anon_sym_NS_AVAILABLE] = ACTIONS(1950), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1950), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1950), - [anon_sym_API_AVAILABLE] = ACTIONS(1950), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1950), - [anon_sym_API_DEPRECATED] = ACTIONS(1950), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1950), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1950), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1950), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1950), - [anon_sym___deprecated_msg] = ACTIONS(1950), - [anon_sym___deprecated_enum_msg] = ACTIONS(1950), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1950), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1950), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1950), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1950), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1950), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1950), - [anon_sym_ATsynthesize] = ACTIONS(1952), - [anon_sym_ATdynamic] = ACTIONS(1952), - [anon_sym_typeof] = ACTIONS(1950), - [anon_sym___typeof] = ACTIONS(1950), - [anon_sym___typeof__] = ACTIONS(1950), - [sym_id] = ACTIONS(1950), - [sym_instancetype] = ACTIONS(1950), - [sym_Class] = ACTIONS(1950), - [sym_SEL] = ACTIONS(1950), - [sym_IMP] = ACTIONS(1950), - [sym_BOOL] = ACTIONS(1950), - [sym_auto] = ACTIONS(1950), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3047] = { - [sym_identifier] = ACTIONS(7142), - [aux_sym_preproc_def_token1] = ACTIONS(7144), - [anon_sym_DASH] = ACTIONS(7144), - [anon_sym_PLUS] = ACTIONS(7144), - [anon_sym_typedef] = ACTIONS(7142), - [anon_sym_extern] = ACTIONS(7142), - [anon_sym___attribute] = ACTIONS(7142), - [anon_sym___attribute__] = ACTIONS(7142), - [anon_sym___declspec] = ACTIONS(7142), - [anon_sym___cdecl] = ACTIONS(7142), - [anon_sym___clrcall] = ACTIONS(7142), - [anon_sym___stdcall] = ACTIONS(7142), - [anon_sym___fastcall] = ACTIONS(7142), - [anon_sym___thiscall] = ACTIONS(7142), - [anon_sym___vectorcall] = ACTIONS(7142), - [anon_sym_static] = ACTIONS(7142), - [anon_sym_auto] = ACTIONS(7142), - [anon_sym_register] = ACTIONS(7142), - [anon_sym_inline] = ACTIONS(7142), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7142), - [anon_sym_const] = ACTIONS(7142), - [anon_sym_volatile] = ACTIONS(7142), - [anon_sym_restrict] = ACTIONS(7142), - [anon_sym__Atomic] = ACTIONS(7142), - [anon_sym_in] = ACTIONS(7142), - [anon_sym_out] = ACTIONS(7142), - [anon_sym_inout] = ACTIONS(7142), - [anon_sym_bycopy] = ACTIONS(7142), - [anon_sym_byref] = ACTIONS(7142), - [anon_sym_oneway] = ACTIONS(7142), - [anon_sym__Nullable] = ACTIONS(7142), - [anon_sym__Nonnull] = ACTIONS(7142), - [anon_sym__Nullable_result] = ACTIONS(7142), - [anon_sym__Null_unspecified] = ACTIONS(7142), - [anon_sym___autoreleasing] = ACTIONS(7142), - [anon_sym___nullable] = ACTIONS(7142), - [anon_sym___nonnull] = ACTIONS(7142), - [anon_sym___strong] = ACTIONS(7142), - [anon_sym___weak] = ACTIONS(7142), - [anon_sym___bridge] = ACTIONS(7142), - [anon_sym___bridge_transfer] = ACTIONS(7142), - [anon_sym___bridge_retained] = ACTIONS(7142), - [anon_sym___unsafe_unretained] = ACTIONS(7142), - [anon_sym___block] = ACTIONS(7142), - [anon_sym___kindof] = ACTIONS(7142), - [anon_sym___unused] = ACTIONS(7142), - [anon_sym__Complex] = ACTIONS(7142), - [anon_sym___complex] = ACTIONS(7142), - [anon_sym_IBOutlet] = ACTIONS(7142), - [anon_sym_IBInspectable] = ACTIONS(7142), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7142), - [anon_sym_signed] = ACTIONS(7142), - [anon_sym_unsigned] = ACTIONS(7142), - [anon_sym_long] = ACTIONS(7142), - [anon_sym_short] = ACTIONS(7142), - [sym_primitive_type] = ACTIONS(7142), - [anon_sym_enum] = ACTIONS(7142), - [anon_sym_NS_ENUM] = ACTIONS(7142), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7142), - [anon_sym_NS_OPTIONS] = ACTIONS(7142), - [anon_sym_struct] = ACTIONS(7142), - [anon_sym_union] = ACTIONS(7142), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7142), - [anon_sym_ATend] = ACTIONS(7144), - [sym_method_attribute_specifier] = ACTIONS(7142), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7142), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7142), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7142), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7142), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7142), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7142), - [anon_sym_NS_AVAILABLE] = ACTIONS(7142), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7142), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7142), - [anon_sym_API_AVAILABLE] = ACTIONS(7142), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7142), - [anon_sym_API_DEPRECATED] = ACTIONS(7142), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7142), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7142), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7142), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7142), - [anon_sym___deprecated_msg] = ACTIONS(7142), - [anon_sym___deprecated_enum_msg] = ACTIONS(7142), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7142), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7142), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7142), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7142), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7142), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7142), - [anon_sym_ATsynthesize] = ACTIONS(7144), - [anon_sym_ATdynamic] = ACTIONS(7144), - [anon_sym_typeof] = ACTIONS(7142), - [anon_sym___typeof] = ACTIONS(7142), - [anon_sym___typeof__] = ACTIONS(7142), - [sym_id] = ACTIONS(7142), - [sym_instancetype] = ACTIONS(7142), - [sym_Class] = ACTIONS(7142), - [sym_SEL] = ACTIONS(7142), - [sym_IMP] = ACTIONS(7142), - [sym_BOOL] = ACTIONS(7142), - [sym_auto] = ACTIONS(7142), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3048] = { - [sym_identifier] = ACTIONS(7146), - [anon_sym_COMMA] = ACTIONS(7148), - [anon_sym_RPAREN] = ACTIONS(7148), - [anon_sym_LPAREN2] = ACTIONS(7148), - [anon_sym_DASH] = ACTIONS(7146), - [anon_sym_PLUS] = ACTIONS(7146), - [anon_sym_STAR] = ACTIONS(7146), - [anon_sym_SLASH] = ACTIONS(7146), - [anon_sym_PERCENT] = ACTIONS(7146), - [anon_sym_PIPE_PIPE] = ACTIONS(7148), - [anon_sym_AMP_AMP] = ACTIONS(7148), - [anon_sym_PIPE] = ACTIONS(7146), - [anon_sym_CARET] = ACTIONS(7146), - [anon_sym_AMP] = ACTIONS(7146), - [anon_sym_EQ_EQ] = ACTIONS(7148), - [anon_sym_BANG_EQ] = ACTIONS(7148), - [anon_sym_GT] = ACTIONS(7146), - [anon_sym_GT_EQ] = ACTIONS(7148), - [anon_sym_LT_EQ] = ACTIONS(7148), - [anon_sym_LT] = ACTIONS(7146), - [anon_sym_LT_LT] = ACTIONS(7146), - [anon_sym_GT_GT] = ACTIONS(7146), - [anon_sym_SEMI] = ACTIONS(7148), - [anon_sym___attribute] = ACTIONS(7146), - [anon_sym___attribute__] = ACTIONS(7146), - [anon_sym_RBRACE] = ACTIONS(7148), - [anon_sym_LBRACK] = ACTIONS(7148), - [anon_sym_RBRACK] = ACTIONS(7148), - [anon_sym_EQ] = ACTIONS(7146), - [anon_sym_const] = ACTIONS(7146), - [anon_sym_volatile] = ACTIONS(7146), - [anon_sym_restrict] = ACTIONS(7146), - [anon_sym__Atomic] = ACTIONS(7146), - [anon_sym_in] = ACTIONS(7146), - [anon_sym_out] = ACTIONS(7146), - [anon_sym_inout] = ACTIONS(7146), - [anon_sym_bycopy] = ACTIONS(7146), - [anon_sym_byref] = ACTIONS(7146), - [anon_sym_oneway] = ACTIONS(7146), - [anon_sym__Nullable] = ACTIONS(7146), - [anon_sym__Nonnull] = ACTIONS(7146), - [anon_sym__Nullable_result] = ACTIONS(7146), - [anon_sym__Null_unspecified] = ACTIONS(7146), - [anon_sym___autoreleasing] = ACTIONS(7146), - [anon_sym___nullable] = ACTIONS(7146), - [anon_sym___nonnull] = ACTIONS(7146), - [anon_sym___strong] = ACTIONS(7146), - [anon_sym___weak] = ACTIONS(7146), - [anon_sym___bridge] = ACTIONS(7146), - [anon_sym___bridge_transfer] = ACTIONS(7146), - [anon_sym___bridge_retained] = ACTIONS(7146), - [anon_sym___unsafe_unretained] = ACTIONS(7146), - [anon_sym___block] = ACTIONS(7146), - [anon_sym___kindof] = ACTIONS(7146), - [anon_sym___unused] = ACTIONS(7146), - [anon_sym__Complex] = ACTIONS(7146), - [anon_sym___complex] = ACTIONS(7146), - [anon_sym_IBOutlet] = ACTIONS(7146), - [anon_sym_IBInspectable] = ACTIONS(7146), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7146), - [anon_sym_COLON] = ACTIONS(7148), - [anon_sym_QMARK] = ACTIONS(7148), - [anon_sym_STAR_EQ] = ACTIONS(7148), - [anon_sym_SLASH_EQ] = ACTIONS(7148), - [anon_sym_PERCENT_EQ] = ACTIONS(7148), - [anon_sym_PLUS_EQ] = ACTIONS(7148), - [anon_sym_DASH_EQ] = ACTIONS(7148), - [anon_sym_LT_LT_EQ] = ACTIONS(7148), - [anon_sym_GT_GT_EQ] = ACTIONS(7148), - [anon_sym_AMP_EQ] = ACTIONS(7148), - [anon_sym_CARET_EQ] = ACTIONS(7148), - [anon_sym_PIPE_EQ] = ACTIONS(7148), - [anon_sym_DASH_DASH] = ACTIONS(7148), - [anon_sym_PLUS_PLUS] = ACTIONS(7148), - [anon_sym_DOT] = ACTIONS(7148), - [anon_sym_DASH_GT] = ACTIONS(7148), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7146), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7146), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7146), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7146), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7146), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7146), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7146), - [anon_sym_NS_AVAILABLE] = ACTIONS(7146), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7146), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7146), - [anon_sym_API_AVAILABLE] = ACTIONS(7146), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7146), - [anon_sym_API_DEPRECATED] = ACTIONS(7146), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7146), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7146), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7146), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7146), - [anon_sym___deprecated_msg] = ACTIONS(7146), - [anon_sym___deprecated_enum_msg] = ACTIONS(7146), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7146), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7146), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7146), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7146), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7146), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7146), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3049] = { - [sym_identifier] = ACTIONS(7150), - [anon_sym_COMMA] = ACTIONS(7152), - [anon_sym_RPAREN] = ACTIONS(7152), - [anon_sym_LPAREN2] = ACTIONS(7152), - [anon_sym_DASH] = ACTIONS(7150), - [anon_sym_PLUS] = ACTIONS(7150), - [anon_sym_STAR] = ACTIONS(7150), - [anon_sym_SLASH] = ACTIONS(7150), - [anon_sym_PERCENT] = ACTIONS(7150), - [anon_sym_PIPE_PIPE] = ACTIONS(7152), - [anon_sym_AMP_AMP] = ACTIONS(7152), - [anon_sym_PIPE] = ACTIONS(7150), - [anon_sym_CARET] = ACTIONS(7150), - [anon_sym_AMP] = ACTIONS(7150), - [anon_sym_EQ_EQ] = ACTIONS(7152), - [anon_sym_BANG_EQ] = ACTIONS(7152), - [anon_sym_GT] = ACTIONS(7150), - [anon_sym_GT_EQ] = ACTIONS(7152), - [anon_sym_LT_EQ] = ACTIONS(7152), - [anon_sym_LT] = ACTIONS(7150), - [anon_sym_LT_LT] = ACTIONS(7150), - [anon_sym_GT_GT] = ACTIONS(7150), - [anon_sym_SEMI] = ACTIONS(7152), - [anon_sym___attribute] = ACTIONS(7150), - [anon_sym___attribute__] = ACTIONS(7150), - [anon_sym_RBRACE] = ACTIONS(7152), - [anon_sym_LBRACK] = ACTIONS(7152), - [anon_sym_RBRACK] = ACTIONS(7152), - [anon_sym_EQ] = ACTIONS(7150), - [anon_sym_const] = ACTIONS(7150), - [anon_sym_volatile] = ACTIONS(7150), - [anon_sym_restrict] = ACTIONS(7150), - [anon_sym__Atomic] = ACTIONS(7150), - [anon_sym_in] = ACTIONS(7150), - [anon_sym_out] = ACTIONS(7150), - [anon_sym_inout] = ACTIONS(7150), - [anon_sym_bycopy] = ACTIONS(7150), - [anon_sym_byref] = ACTIONS(7150), - [anon_sym_oneway] = ACTIONS(7150), - [anon_sym__Nullable] = ACTIONS(7150), - [anon_sym__Nonnull] = ACTIONS(7150), - [anon_sym__Nullable_result] = ACTIONS(7150), - [anon_sym__Null_unspecified] = ACTIONS(7150), - [anon_sym___autoreleasing] = ACTIONS(7150), - [anon_sym___nullable] = ACTIONS(7150), - [anon_sym___nonnull] = ACTIONS(7150), - [anon_sym___strong] = ACTIONS(7150), - [anon_sym___weak] = ACTIONS(7150), - [anon_sym___bridge] = ACTIONS(7150), - [anon_sym___bridge_transfer] = ACTIONS(7150), - [anon_sym___bridge_retained] = ACTIONS(7150), - [anon_sym___unsafe_unretained] = ACTIONS(7150), - [anon_sym___block] = ACTIONS(7150), - [anon_sym___kindof] = ACTIONS(7150), - [anon_sym___unused] = ACTIONS(7150), - [anon_sym__Complex] = ACTIONS(7150), - [anon_sym___complex] = ACTIONS(7150), - [anon_sym_IBOutlet] = ACTIONS(7150), - [anon_sym_IBInspectable] = ACTIONS(7150), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7150), - [anon_sym_COLON] = ACTIONS(7152), - [anon_sym_QMARK] = ACTIONS(7152), - [anon_sym_STAR_EQ] = ACTIONS(7152), - [anon_sym_SLASH_EQ] = ACTIONS(7152), - [anon_sym_PERCENT_EQ] = ACTIONS(7152), - [anon_sym_PLUS_EQ] = ACTIONS(7152), - [anon_sym_DASH_EQ] = ACTIONS(7152), - [anon_sym_LT_LT_EQ] = ACTIONS(7152), - [anon_sym_GT_GT_EQ] = ACTIONS(7152), - [anon_sym_AMP_EQ] = ACTIONS(7152), - [anon_sym_CARET_EQ] = ACTIONS(7152), - [anon_sym_PIPE_EQ] = ACTIONS(7152), - [anon_sym_DASH_DASH] = ACTIONS(7152), - [anon_sym_PLUS_PLUS] = ACTIONS(7152), - [anon_sym_DOT] = ACTIONS(7152), - [anon_sym_DASH_GT] = ACTIONS(7152), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7150), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7150), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7150), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7150), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7150), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7150), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7150), - [anon_sym_NS_AVAILABLE] = ACTIONS(7150), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7150), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7150), - [anon_sym_API_AVAILABLE] = ACTIONS(7150), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7150), - [anon_sym_API_DEPRECATED] = ACTIONS(7150), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7150), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7150), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7150), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7150), - [anon_sym___deprecated_msg] = ACTIONS(7150), - [anon_sym___deprecated_enum_msg] = ACTIONS(7150), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7150), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7150), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7150), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7150), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7150), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7150), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3050] = { - [sym_identifier] = ACTIONS(7154), - [anon_sym_COMMA] = ACTIONS(7156), - [anon_sym_RPAREN] = ACTIONS(7156), - [anon_sym_LPAREN2] = ACTIONS(7156), - [anon_sym_DASH] = ACTIONS(7154), - [anon_sym_PLUS] = ACTIONS(7154), - [anon_sym_STAR] = ACTIONS(7154), - [anon_sym_SLASH] = ACTIONS(7154), - [anon_sym_PERCENT] = ACTIONS(7154), - [anon_sym_PIPE_PIPE] = ACTIONS(7156), - [anon_sym_AMP_AMP] = ACTIONS(7156), - [anon_sym_PIPE] = ACTIONS(7154), - [anon_sym_CARET] = ACTIONS(7154), - [anon_sym_AMP] = ACTIONS(7154), - [anon_sym_EQ_EQ] = ACTIONS(7156), - [anon_sym_BANG_EQ] = ACTIONS(7156), - [anon_sym_GT] = ACTIONS(7154), - [anon_sym_GT_EQ] = ACTIONS(7156), - [anon_sym_LT_EQ] = ACTIONS(7156), - [anon_sym_LT] = ACTIONS(7154), - [anon_sym_LT_LT] = ACTIONS(7154), - [anon_sym_GT_GT] = ACTIONS(7154), - [anon_sym_SEMI] = ACTIONS(7156), - [anon_sym___attribute] = ACTIONS(7154), - [anon_sym___attribute__] = ACTIONS(7154), - [anon_sym_RBRACE] = ACTIONS(7156), - [anon_sym_LBRACK] = ACTIONS(7156), - [anon_sym_RBRACK] = ACTIONS(7156), - [anon_sym_EQ] = ACTIONS(7154), - [anon_sym_const] = ACTIONS(7154), - [anon_sym_volatile] = ACTIONS(7154), - [anon_sym_restrict] = ACTIONS(7154), - [anon_sym__Atomic] = ACTIONS(7154), - [anon_sym_in] = ACTIONS(7154), - [anon_sym_out] = ACTIONS(7154), - [anon_sym_inout] = ACTIONS(7154), - [anon_sym_bycopy] = ACTIONS(7154), - [anon_sym_byref] = ACTIONS(7154), - [anon_sym_oneway] = ACTIONS(7154), - [anon_sym__Nullable] = ACTIONS(7154), - [anon_sym__Nonnull] = ACTIONS(7154), - [anon_sym__Nullable_result] = ACTIONS(7154), - [anon_sym__Null_unspecified] = ACTIONS(7154), - [anon_sym___autoreleasing] = ACTIONS(7154), - [anon_sym___nullable] = ACTIONS(7154), - [anon_sym___nonnull] = ACTIONS(7154), - [anon_sym___strong] = ACTIONS(7154), - [anon_sym___weak] = ACTIONS(7154), - [anon_sym___bridge] = ACTIONS(7154), - [anon_sym___bridge_transfer] = ACTIONS(7154), - [anon_sym___bridge_retained] = ACTIONS(7154), - [anon_sym___unsafe_unretained] = ACTIONS(7154), - [anon_sym___block] = ACTIONS(7154), - [anon_sym___kindof] = ACTIONS(7154), - [anon_sym___unused] = ACTIONS(7154), - [anon_sym__Complex] = ACTIONS(7154), - [anon_sym___complex] = ACTIONS(7154), - [anon_sym_IBOutlet] = ACTIONS(7154), - [anon_sym_IBInspectable] = ACTIONS(7154), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7154), - [anon_sym_COLON] = ACTIONS(7156), - [anon_sym_QMARK] = ACTIONS(7156), - [anon_sym_STAR_EQ] = ACTIONS(7156), - [anon_sym_SLASH_EQ] = ACTIONS(7156), - [anon_sym_PERCENT_EQ] = ACTIONS(7156), - [anon_sym_PLUS_EQ] = ACTIONS(7156), - [anon_sym_DASH_EQ] = ACTIONS(7156), - [anon_sym_LT_LT_EQ] = ACTIONS(7156), - [anon_sym_GT_GT_EQ] = ACTIONS(7156), - [anon_sym_AMP_EQ] = ACTIONS(7156), - [anon_sym_CARET_EQ] = ACTIONS(7156), - [anon_sym_PIPE_EQ] = ACTIONS(7156), - [anon_sym_DASH_DASH] = ACTIONS(7156), - [anon_sym_PLUS_PLUS] = ACTIONS(7156), - [anon_sym_DOT] = ACTIONS(7156), - [anon_sym_DASH_GT] = ACTIONS(7156), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7154), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7154), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7154), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7154), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7154), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7154), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7154), - [anon_sym_NS_AVAILABLE] = ACTIONS(7154), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7154), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7154), - [anon_sym_API_AVAILABLE] = ACTIONS(7154), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7154), - [anon_sym_API_DEPRECATED] = ACTIONS(7154), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7154), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7154), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7154), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7154), - [anon_sym___deprecated_msg] = ACTIONS(7154), - [anon_sym___deprecated_enum_msg] = ACTIONS(7154), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7154), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7154), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7154), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7154), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7154), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7154), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3051] = { - [sym_identifier] = ACTIONS(7158), - [anon_sym_COMMA] = ACTIONS(7160), - [anon_sym_RPAREN] = ACTIONS(7160), - [anon_sym_LPAREN2] = ACTIONS(7160), - [anon_sym_DASH] = ACTIONS(7158), - [anon_sym_PLUS] = ACTIONS(7158), - [anon_sym_STAR] = ACTIONS(7158), - [anon_sym_SLASH] = ACTIONS(7158), - [anon_sym_PERCENT] = ACTIONS(7158), - [anon_sym_PIPE_PIPE] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(7160), - [anon_sym_PIPE] = ACTIONS(7158), - [anon_sym_CARET] = ACTIONS(7158), - [anon_sym_AMP] = ACTIONS(7158), - [anon_sym_EQ_EQ] = ACTIONS(7160), - [anon_sym_BANG_EQ] = ACTIONS(7160), - [anon_sym_GT] = ACTIONS(7158), - [anon_sym_GT_EQ] = ACTIONS(7160), - [anon_sym_LT_EQ] = ACTIONS(7160), - [anon_sym_LT] = ACTIONS(7158), - [anon_sym_LT_LT] = ACTIONS(7158), - [anon_sym_GT_GT] = ACTIONS(7158), - [anon_sym_SEMI] = ACTIONS(7160), - [anon_sym___attribute] = ACTIONS(7158), - [anon_sym___attribute__] = ACTIONS(7158), - [anon_sym_RBRACE] = ACTIONS(7160), - [anon_sym_LBRACK] = ACTIONS(7160), - [anon_sym_RBRACK] = ACTIONS(7160), - [anon_sym_EQ] = ACTIONS(7158), - [anon_sym_const] = ACTIONS(7158), - [anon_sym_volatile] = ACTIONS(7158), - [anon_sym_restrict] = ACTIONS(7158), - [anon_sym__Atomic] = ACTIONS(7158), - [anon_sym_in] = ACTIONS(7158), - [anon_sym_out] = ACTIONS(7158), - [anon_sym_inout] = ACTIONS(7158), - [anon_sym_bycopy] = ACTIONS(7158), - [anon_sym_byref] = ACTIONS(7158), - [anon_sym_oneway] = ACTIONS(7158), - [anon_sym__Nullable] = ACTIONS(7158), - [anon_sym__Nonnull] = ACTIONS(7158), - [anon_sym__Nullable_result] = ACTIONS(7158), - [anon_sym__Null_unspecified] = ACTIONS(7158), - [anon_sym___autoreleasing] = ACTIONS(7158), - [anon_sym___nullable] = ACTIONS(7158), - [anon_sym___nonnull] = ACTIONS(7158), - [anon_sym___strong] = ACTIONS(7158), - [anon_sym___weak] = ACTIONS(7158), - [anon_sym___bridge] = ACTIONS(7158), - [anon_sym___bridge_transfer] = ACTIONS(7158), - [anon_sym___bridge_retained] = ACTIONS(7158), - [anon_sym___unsafe_unretained] = ACTIONS(7158), - [anon_sym___block] = ACTIONS(7158), - [anon_sym___kindof] = ACTIONS(7158), - [anon_sym___unused] = ACTIONS(7158), - [anon_sym__Complex] = ACTIONS(7158), - [anon_sym___complex] = ACTIONS(7158), - [anon_sym_IBOutlet] = ACTIONS(7158), - [anon_sym_IBInspectable] = ACTIONS(7158), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7158), - [anon_sym_COLON] = ACTIONS(7160), - [anon_sym_QMARK] = ACTIONS(7160), - [anon_sym_STAR_EQ] = ACTIONS(7160), - [anon_sym_SLASH_EQ] = ACTIONS(7160), - [anon_sym_PERCENT_EQ] = ACTIONS(7160), - [anon_sym_PLUS_EQ] = ACTIONS(7160), - [anon_sym_DASH_EQ] = ACTIONS(7160), - [anon_sym_LT_LT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_AMP_EQ] = ACTIONS(7160), - [anon_sym_CARET_EQ] = ACTIONS(7160), - [anon_sym_PIPE_EQ] = ACTIONS(7160), - [anon_sym_DASH_DASH] = ACTIONS(7160), - [anon_sym_PLUS_PLUS] = ACTIONS(7160), - [anon_sym_DOT] = ACTIONS(7160), - [anon_sym_DASH_GT] = ACTIONS(7160), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7158), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7158), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7158), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7158), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7158), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7158), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7158), - [anon_sym_NS_AVAILABLE] = ACTIONS(7158), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7158), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7158), - [anon_sym_API_AVAILABLE] = ACTIONS(7158), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7158), - [anon_sym_API_DEPRECATED] = ACTIONS(7158), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7158), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7158), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7158), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7158), - [anon_sym___deprecated_msg] = ACTIONS(7158), - [anon_sym___deprecated_enum_msg] = ACTIONS(7158), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7158), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7158), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7158), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7158), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7158), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7158), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3052] = { - [sym_identifier] = ACTIONS(7162), - [aux_sym_preproc_def_token1] = ACTIONS(7164), - [anon_sym_DASH] = ACTIONS(7164), - [anon_sym_PLUS] = ACTIONS(7164), - [anon_sym_typedef] = ACTIONS(7162), - [anon_sym_extern] = ACTIONS(7162), - [anon_sym___attribute] = ACTIONS(7162), - [anon_sym___attribute__] = ACTIONS(7162), - [anon_sym___declspec] = ACTIONS(7162), - [anon_sym___cdecl] = ACTIONS(7162), - [anon_sym___clrcall] = ACTIONS(7162), - [anon_sym___stdcall] = ACTIONS(7162), - [anon_sym___fastcall] = ACTIONS(7162), - [anon_sym___thiscall] = ACTIONS(7162), - [anon_sym___vectorcall] = ACTIONS(7162), - [anon_sym_static] = ACTIONS(7162), - [anon_sym_auto] = ACTIONS(7162), - [anon_sym_register] = ACTIONS(7162), - [anon_sym_inline] = ACTIONS(7162), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7162), - [anon_sym_const] = ACTIONS(7162), - [anon_sym_volatile] = ACTIONS(7162), - [anon_sym_restrict] = ACTIONS(7162), - [anon_sym__Atomic] = ACTIONS(7162), - [anon_sym_in] = ACTIONS(7162), - [anon_sym_out] = ACTIONS(7162), - [anon_sym_inout] = ACTIONS(7162), - [anon_sym_bycopy] = ACTIONS(7162), - [anon_sym_byref] = ACTIONS(7162), - [anon_sym_oneway] = ACTIONS(7162), - [anon_sym__Nullable] = ACTIONS(7162), - [anon_sym__Nonnull] = ACTIONS(7162), - [anon_sym__Nullable_result] = ACTIONS(7162), - [anon_sym__Null_unspecified] = ACTIONS(7162), - [anon_sym___autoreleasing] = ACTIONS(7162), - [anon_sym___nullable] = ACTIONS(7162), - [anon_sym___nonnull] = ACTIONS(7162), - [anon_sym___strong] = ACTIONS(7162), - [anon_sym___weak] = ACTIONS(7162), - [anon_sym___bridge] = ACTIONS(7162), - [anon_sym___bridge_transfer] = ACTIONS(7162), - [anon_sym___bridge_retained] = ACTIONS(7162), - [anon_sym___unsafe_unretained] = ACTIONS(7162), - [anon_sym___block] = ACTIONS(7162), - [anon_sym___kindof] = ACTIONS(7162), - [anon_sym___unused] = ACTIONS(7162), - [anon_sym__Complex] = ACTIONS(7162), - [anon_sym___complex] = ACTIONS(7162), - [anon_sym_IBOutlet] = ACTIONS(7162), - [anon_sym_IBInspectable] = ACTIONS(7162), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7162), - [anon_sym_signed] = ACTIONS(7162), - [anon_sym_unsigned] = ACTIONS(7162), - [anon_sym_long] = ACTIONS(7162), - [anon_sym_short] = ACTIONS(7162), - [sym_primitive_type] = ACTIONS(7162), - [anon_sym_enum] = ACTIONS(7162), - [anon_sym_NS_ENUM] = ACTIONS(7162), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7162), - [anon_sym_NS_OPTIONS] = ACTIONS(7162), - [anon_sym_struct] = ACTIONS(7162), - [anon_sym_union] = ACTIONS(7162), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7162), - [anon_sym_ATend] = ACTIONS(7164), - [sym_method_attribute_specifier] = ACTIONS(7162), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7162), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7162), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7162), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7162), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7162), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7162), - [anon_sym_NS_AVAILABLE] = ACTIONS(7162), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7162), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7162), - [anon_sym_API_AVAILABLE] = ACTIONS(7162), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7162), - [anon_sym_API_DEPRECATED] = ACTIONS(7162), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7162), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7162), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7162), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7162), - [anon_sym___deprecated_msg] = ACTIONS(7162), - [anon_sym___deprecated_enum_msg] = ACTIONS(7162), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7162), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7162), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7162), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7162), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7162), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7162), - [anon_sym_ATsynthesize] = ACTIONS(7164), - [anon_sym_ATdynamic] = ACTIONS(7164), - [anon_sym_typeof] = ACTIONS(7162), - [anon_sym___typeof] = ACTIONS(7162), - [anon_sym___typeof__] = ACTIONS(7162), - [sym_id] = ACTIONS(7162), - [sym_instancetype] = ACTIONS(7162), - [sym_Class] = ACTIONS(7162), - [sym_SEL] = ACTIONS(7162), - [sym_IMP] = ACTIONS(7162), - [sym_BOOL] = ACTIONS(7162), - [sym_auto] = ACTIONS(7162), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3053] = { - [sym_identifier] = ACTIONS(7166), - [aux_sym_preproc_def_token1] = ACTIONS(7168), - [anon_sym_DASH] = ACTIONS(7168), - [anon_sym_PLUS] = ACTIONS(7168), - [anon_sym_typedef] = ACTIONS(7166), - [anon_sym_extern] = ACTIONS(7166), - [anon_sym___attribute] = ACTIONS(7166), - [anon_sym___attribute__] = ACTIONS(7166), - [anon_sym___declspec] = ACTIONS(7166), - [anon_sym___cdecl] = ACTIONS(7166), - [anon_sym___clrcall] = ACTIONS(7166), - [anon_sym___stdcall] = ACTIONS(7166), - [anon_sym___fastcall] = ACTIONS(7166), - [anon_sym___thiscall] = ACTIONS(7166), - [anon_sym___vectorcall] = ACTIONS(7166), - [anon_sym_static] = ACTIONS(7166), - [anon_sym_auto] = ACTIONS(7166), - [anon_sym_register] = ACTIONS(7166), - [anon_sym_inline] = ACTIONS(7166), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7166), - [anon_sym_const] = ACTIONS(7166), - [anon_sym_volatile] = ACTIONS(7166), - [anon_sym_restrict] = ACTIONS(7166), - [anon_sym__Atomic] = ACTIONS(7166), - [anon_sym_in] = ACTIONS(7166), - [anon_sym_out] = ACTIONS(7166), - [anon_sym_inout] = ACTIONS(7166), - [anon_sym_bycopy] = ACTIONS(7166), - [anon_sym_byref] = ACTIONS(7166), - [anon_sym_oneway] = ACTIONS(7166), - [anon_sym__Nullable] = ACTIONS(7166), - [anon_sym__Nonnull] = ACTIONS(7166), - [anon_sym__Nullable_result] = ACTIONS(7166), - [anon_sym__Null_unspecified] = ACTIONS(7166), - [anon_sym___autoreleasing] = ACTIONS(7166), - [anon_sym___nullable] = ACTIONS(7166), - [anon_sym___nonnull] = ACTIONS(7166), - [anon_sym___strong] = ACTIONS(7166), - [anon_sym___weak] = ACTIONS(7166), - [anon_sym___bridge] = ACTIONS(7166), - [anon_sym___bridge_transfer] = ACTIONS(7166), - [anon_sym___bridge_retained] = ACTIONS(7166), - [anon_sym___unsafe_unretained] = ACTIONS(7166), - [anon_sym___block] = ACTIONS(7166), - [anon_sym___kindof] = ACTIONS(7166), - [anon_sym___unused] = ACTIONS(7166), - [anon_sym__Complex] = ACTIONS(7166), - [anon_sym___complex] = ACTIONS(7166), - [anon_sym_IBOutlet] = ACTIONS(7166), - [anon_sym_IBInspectable] = ACTIONS(7166), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7166), - [anon_sym_signed] = ACTIONS(7166), - [anon_sym_unsigned] = ACTIONS(7166), - [anon_sym_long] = ACTIONS(7166), - [anon_sym_short] = ACTIONS(7166), - [sym_primitive_type] = ACTIONS(7166), - [anon_sym_enum] = ACTIONS(7166), - [anon_sym_NS_ENUM] = ACTIONS(7166), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7166), - [anon_sym_NS_OPTIONS] = ACTIONS(7166), - [anon_sym_struct] = ACTIONS(7166), - [anon_sym_union] = ACTIONS(7166), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7166), - [anon_sym_ATend] = ACTIONS(7168), - [sym_method_attribute_specifier] = ACTIONS(7166), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7166), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7166), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7166), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7166), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7166), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7166), - [anon_sym_NS_AVAILABLE] = ACTIONS(7166), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7166), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7166), - [anon_sym_API_AVAILABLE] = ACTIONS(7166), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7166), - [anon_sym_API_DEPRECATED] = ACTIONS(7166), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7166), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7166), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7166), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7166), - [anon_sym___deprecated_msg] = ACTIONS(7166), - [anon_sym___deprecated_enum_msg] = ACTIONS(7166), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7166), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7166), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7166), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7166), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7166), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7166), - [anon_sym_ATsynthesize] = ACTIONS(7168), - [anon_sym_ATdynamic] = ACTIONS(7168), - [anon_sym_typeof] = ACTIONS(7166), - [anon_sym___typeof] = ACTIONS(7166), - [anon_sym___typeof__] = ACTIONS(7166), - [sym_id] = ACTIONS(7166), - [sym_instancetype] = ACTIONS(7166), - [sym_Class] = ACTIONS(7166), - [sym_SEL] = ACTIONS(7166), - [sym_IMP] = ACTIONS(7166), - [sym_BOOL] = ACTIONS(7166), - [sym_auto] = ACTIONS(7166), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3054] = { - [sym_identifier] = ACTIONS(7170), - [anon_sym_COMMA] = ACTIONS(7172), - [anon_sym_RPAREN] = ACTIONS(7172), - [anon_sym_LPAREN2] = ACTIONS(7172), - [anon_sym_DASH] = ACTIONS(7170), - [anon_sym_PLUS] = ACTIONS(7170), - [anon_sym_STAR] = ACTIONS(7170), - [anon_sym_SLASH] = ACTIONS(7170), - [anon_sym_PERCENT] = ACTIONS(7170), - [anon_sym_PIPE_PIPE] = ACTIONS(7172), - [anon_sym_AMP_AMP] = ACTIONS(7172), - [anon_sym_PIPE] = ACTIONS(7170), - [anon_sym_CARET] = ACTIONS(7170), - [anon_sym_AMP] = ACTIONS(7170), - [anon_sym_EQ_EQ] = ACTIONS(7172), - [anon_sym_BANG_EQ] = ACTIONS(7172), - [anon_sym_GT] = ACTIONS(7170), - [anon_sym_GT_EQ] = ACTIONS(7172), - [anon_sym_LT_EQ] = ACTIONS(7172), - [anon_sym_LT] = ACTIONS(7170), - [anon_sym_LT_LT] = ACTIONS(7170), - [anon_sym_GT_GT] = ACTIONS(7170), - [anon_sym_SEMI] = ACTIONS(7172), - [anon_sym___attribute] = ACTIONS(7170), - [anon_sym___attribute__] = ACTIONS(7170), - [anon_sym_RBRACE] = ACTIONS(7172), - [anon_sym_LBRACK] = ACTIONS(7172), - [anon_sym_RBRACK] = ACTIONS(7172), - [anon_sym_EQ] = ACTIONS(7170), - [anon_sym_const] = ACTIONS(7170), - [anon_sym_volatile] = ACTIONS(7170), - [anon_sym_restrict] = ACTIONS(7170), - [anon_sym__Atomic] = ACTIONS(7170), - [anon_sym_in] = ACTIONS(7170), - [anon_sym_out] = ACTIONS(7170), - [anon_sym_inout] = ACTIONS(7170), - [anon_sym_bycopy] = ACTIONS(7170), - [anon_sym_byref] = ACTIONS(7170), - [anon_sym_oneway] = ACTIONS(7170), - [anon_sym__Nullable] = ACTIONS(7170), - [anon_sym__Nonnull] = ACTIONS(7170), - [anon_sym__Nullable_result] = ACTIONS(7170), - [anon_sym__Null_unspecified] = ACTIONS(7170), - [anon_sym___autoreleasing] = ACTIONS(7170), - [anon_sym___nullable] = ACTIONS(7170), - [anon_sym___nonnull] = ACTIONS(7170), - [anon_sym___strong] = ACTIONS(7170), - [anon_sym___weak] = ACTIONS(7170), - [anon_sym___bridge] = ACTIONS(7170), - [anon_sym___bridge_transfer] = ACTIONS(7170), - [anon_sym___bridge_retained] = ACTIONS(7170), - [anon_sym___unsafe_unretained] = ACTIONS(7170), - [anon_sym___block] = ACTIONS(7170), - [anon_sym___kindof] = ACTIONS(7170), - [anon_sym___unused] = ACTIONS(7170), - [anon_sym__Complex] = ACTIONS(7170), - [anon_sym___complex] = ACTIONS(7170), - [anon_sym_IBOutlet] = ACTIONS(7170), - [anon_sym_IBInspectable] = ACTIONS(7170), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7170), - [anon_sym_COLON] = ACTIONS(7172), - [anon_sym_QMARK] = ACTIONS(7172), - [anon_sym_STAR_EQ] = ACTIONS(7172), - [anon_sym_SLASH_EQ] = ACTIONS(7172), - [anon_sym_PERCENT_EQ] = ACTIONS(7172), - [anon_sym_PLUS_EQ] = ACTIONS(7172), - [anon_sym_DASH_EQ] = ACTIONS(7172), - [anon_sym_LT_LT_EQ] = ACTIONS(7172), - [anon_sym_GT_GT_EQ] = ACTIONS(7172), - [anon_sym_AMP_EQ] = ACTIONS(7172), - [anon_sym_CARET_EQ] = ACTIONS(7172), - [anon_sym_PIPE_EQ] = ACTIONS(7172), - [anon_sym_DASH_DASH] = ACTIONS(7172), - [anon_sym_PLUS_PLUS] = ACTIONS(7172), - [anon_sym_DOT] = ACTIONS(7172), - [anon_sym_DASH_GT] = ACTIONS(7172), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7170), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7170), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7170), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7170), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7170), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7170), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7170), - [anon_sym_NS_AVAILABLE] = ACTIONS(7170), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7170), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7170), - [anon_sym_API_AVAILABLE] = ACTIONS(7170), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7170), - [anon_sym_API_DEPRECATED] = ACTIONS(7170), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7170), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7170), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7170), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7170), - [anon_sym___deprecated_msg] = ACTIONS(7170), - [anon_sym___deprecated_enum_msg] = ACTIONS(7170), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7170), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7170), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7170), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7170), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7170), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7170), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3055] = { - [sym_identifier] = ACTIONS(7174), - [anon_sym_COMMA] = ACTIONS(7176), - [anon_sym_RPAREN] = ACTIONS(7176), - [anon_sym_LPAREN2] = ACTIONS(7176), - [anon_sym_DASH] = ACTIONS(7174), - [anon_sym_PLUS] = ACTIONS(7174), - [anon_sym_STAR] = ACTIONS(7174), - [anon_sym_SLASH] = ACTIONS(7174), - [anon_sym_PERCENT] = ACTIONS(7174), - [anon_sym_PIPE_PIPE] = ACTIONS(7176), - [anon_sym_AMP_AMP] = ACTIONS(7176), - [anon_sym_PIPE] = ACTIONS(7174), - [anon_sym_CARET] = ACTIONS(7174), - [anon_sym_AMP] = ACTIONS(7174), - [anon_sym_EQ_EQ] = ACTIONS(7176), - [anon_sym_BANG_EQ] = ACTIONS(7176), - [anon_sym_GT] = ACTIONS(7174), - [anon_sym_GT_EQ] = ACTIONS(7176), - [anon_sym_LT_EQ] = ACTIONS(7176), - [anon_sym_LT] = ACTIONS(7174), - [anon_sym_LT_LT] = ACTIONS(7174), - [anon_sym_GT_GT] = ACTIONS(7174), - [anon_sym_SEMI] = ACTIONS(7176), - [anon_sym___attribute] = ACTIONS(7174), - [anon_sym___attribute__] = ACTIONS(7174), - [anon_sym_RBRACE] = ACTIONS(7176), - [anon_sym_LBRACK] = ACTIONS(7176), - [anon_sym_RBRACK] = ACTIONS(7176), - [anon_sym_EQ] = ACTIONS(7174), - [anon_sym_const] = ACTIONS(7174), - [anon_sym_volatile] = ACTIONS(7174), - [anon_sym_restrict] = ACTIONS(7174), - [anon_sym__Atomic] = ACTIONS(7174), - [anon_sym_in] = ACTIONS(7174), - [anon_sym_out] = ACTIONS(7174), - [anon_sym_inout] = ACTIONS(7174), - [anon_sym_bycopy] = ACTIONS(7174), - [anon_sym_byref] = ACTIONS(7174), - [anon_sym_oneway] = ACTIONS(7174), - [anon_sym__Nullable] = ACTIONS(7174), - [anon_sym__Nonnull] = ACTIONS(7174), - [anon_sym__Nullable_result] = ACTIONS(7174), - [anon_sym__Null_unspecified] = ACTIONS(7174), - [anon_sym___autoreleasing] = ACTIONS(7174), - [anon_sym___nullable] = ACTIONS(7174), - [anon_sym___nonnull] = ACTIONS(7174), - [anon_sym___strong] = ACTIONS(7174), - [anon_sym___weak] = ACTIONS(7174), - [anon_sym___bridge] = ACTIONS(7174), - [anon_sym___bridge_transfer] = ACTIONS(7174), - [anon_sym___bridge_retained] = ACTIONS(7174), - [anon_sym___unsafe_unretained] = ACTIONS(7174), - [anon_sym___block] = ACTIONS(7174), - [anon_sym___kindof] = ACTIONS(7174), - [anon_sym___unused] = ACTIONS(7174), - [anon_sym__Complex] = ACTIONS(7174), - [anon_sym___complex] = ACTIONS(7174), - [anon_sym_IBOutlet] = ACTIONS(7174), - [anon_sym_IBInspectable] = ACTIONS(7174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7174), - [anon_sym_COLON] = ACTIONS(7176), - [anon_sym_QMARK] = ACTIONS(7176), - [anon_sym_STAR_EQ] = ACTIONS(7176), - [anon_sym_SLASH_EQ] = ACTIONS(7176), - [anon_sym_PERCENT_EQ] = ACTIONS(7176), - [anon_sym_PLUS_EQ] = ACTIONS(7176), - [anon_sym_DASH_EQ] = ACTIONS(7176), - [anon_sym_LT_LT_EQ] = ACTIONS(7176), - [anon_sym_GT_GT_EQ] = ACTIONS(7176), - [anon_sym_AMP_EQ] = ACTIONS(7176), - [anon_sym_CARET_EQ] = ACTIONS(7176), - [anon_sym_PIPE_EQ] = ACTIONS(7176), - [anon_sym_DASH_DASH] = ACTIONS(7176), - [anon_sym_PLUS_PLUS] = ACTIONS(7176), - [anon_sym_DOT] = ACTIONS(7176), - [anon_sym_DASH_GT] = ACTIONS(7176), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7174), - [anon_sym_NS_AVAILABLE] = ACTIONS(7174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7174), - [anon_sym_API_AVAILABLE] = ACTIONS(7174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7174), - [anon_sym_API_DEPRECATED] = ACTIONS(7174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7174), - [anon_sym___deprecated_msg] = ACTIONS(7174), - [anon_sym___deprecated_enum_msg] = ACTIONS(7174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3056] = { - [sym_identifier] = ACTIONS(6820), - [anon_sym_COMMA] = ACTIONS(6822), - [anon_sym_RPAREN] = ACTIONS(6822), - [anon_sym_LPAREN2] = ACTIONS(6822), - [anon_sym_DASH] = ACTIONS(6820), - [anon_sym_PLUS] = ACTIONS(6820), - [anon_sym_STAR] = ACTIONS(6820), - [anon_sym_SLASH] = ACTIONS(6820), - [anon_sym_PERCENT] = ACTIONS(6820), - [anon_sym_PIPE_PIPE] = ACTIONS(6822), - [anon_sym_AMP_AMP] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6820), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_EQ_EQ] = ACTIONS(6822), - [anon_sym_BANG_EQ] = ACTIONS(6822), - [anon_sym_GT] = ACTIONS(6820), - [anon_sym_GT_EQ] = ACTIONS(6822), - [anon_sym_LT_EQ] = ACTIONS(6822), - [anon_sym_LT] = ACTIONS(6820), - [anon_sym_LT_LT] = ACTIONS(6820), - [anon_sym_GT_GT] = ACTIONS(6820), - [anon_sym_SEMI] = ACTIONS(6822), - [anon_sym___attribute] = ACTIONS(6820), - [anon_sym___attribute__] = ACTIONS(6820), - [anon_sym_RBRACE] = ACTIONS(6822), - [anon_sym_LBRACK] = ACTIONS(6822), - [anon_sym_RBRACK] = ACTIONS(6822), - [anon_sym_EQ] = ACTIONS(6820), - [anon_sym_const] = ACTIONS(6820), - [anon_sym_volatile] = ACTIONS(6820), - [anon_sym_restrict] = ACTIONS(6820), - [anon_sym__Atomic] = ACTIONS(6820), - [anon_sym_in] = ACTIONS(6820), - [anon_sym_out] = ACTIONS(6820), - [anon_sym_inout] = ACTIONS(6820), - [anon_sym_bycopy] = ACTIONS(6820), - [anon_sym_byref] = ACTIONS(6820), - [anon_sym_oneway] = ACTIONS(6820), - [anon_sym__Nullable] = ACTIONS(6820), - [anon_sym__Nonnull] = ACTIONS(6820), - [anon_sym__Nullable_result] = ACTIONS(6820), - [anon_sym__Null_unspecified] = ACTIONS(6820), - [anon_sym___autoreleasing] = ACTIONS(6820), - [anon_sym___nullable] = ACTIONS(6820), - [anon_sym___nonnull] = ACTIONS(6820), - [anon_sym___strong] = ACTIONS(6820), - [anon_sym___weak] = ACTIONS(6820), - [anon_sym___bridge] = ACTIONS(6820), - [anon_sym___bridge_transfer] = ACTIONS(6820), - [anon_sym___bridge_retained] = ACTIONS(6820), - [anon_sym___unsafe_unretained] = ACTIONS(6820), - [anon_sym___block] = ACTIONS(6820), - [anon_sym___kindof] = ACTIONS(6820), - [anon_sym___unused] = ACTIONS(6820), - [anon_sym__Complex] = ACTIONS(6820), - [anon_sym___complex] = ACTIONS(6820), - [anon_sym_IBOutlet] = ACTIONS(6820), - [anon_sym_IBInspectable] = ACTIONS(6820), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6820), - [anon_sym_COLON] = ACTIONS(6822), - [anon_sym_QMARK] = ACTIONS(6822), - [anon_sym_STAR_EQ] = ACTIONS(6822), - [anon_sym_SLASH_EQ] = ACTIONS(6822), - [anon_sym_PERCENT_EQ] = ACTIONS(6822), - [anon_sym_PLUS_EQ] = ACTIONS(6822), - [anon_sym_DASH_EQ] = ACTIONS(6822), - [anon_sym_LT_LT_EQ] = ACTIONS(6822), - [anon_sym_GT_GT_EQ] = ACTIONS(6822), - [anon_sym_AMP_EQ] = ACTIONS(6822), - [anon_sym_CARET_EQ] = ACTIONS(6822), - [anon_sym_PIPE_EQ] = ACTIONS(6822), - [anon_sym_DASH_DASH] = ACTIONS(6822), - [anon_sym_PLUS_PLUS] = ACTIONS(6822), - [anon_sym_DOT] = ACTIONS(6822), - [anon_sym_DASH_GT] = ACTIONS(6822), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6820), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6820), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6820), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6820), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6820), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6820), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6820), - [anon_sym_NS_AVAILABLE] = ACTIONS(6820), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6820), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_API_AVAILABLE] = ACTIONS(6820), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6820), - [anon_sym_API_DEPRECATED] = ACTIONS(6820), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6820), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6820), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6820), - [anon_sym___deprecated_msg] = ACTIONS(6820), - [anon_sym___deprecated_enum_msg] = ACTIONS(6820), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6820), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6820), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6820), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6820), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3057] = { - [sym_identifier] = ACTIONS(7178), - [anon_sym_COMMA] = ACTIONS(7180), - [anon_sym_RPAREN] = ACTIONS(7180), - [anon_sym_LPAREN2] = ACTIONS(7180), - [anon_sym_DASH] = ACTIONS(7178), - [anon_sym_PLUS] = ACTIONS(7178), - [anon_sym_STAR] = ACTIONS(7178), - [anon_sym_SLASH] = ACTIONS(7178), - [anon_sym_PERCENT] = ACTIONS(7178), - [anon_sym_PIPE_PIPE] = ACTIONS(7180), - [anon_sym_AMP_AMP] = ACTIONS(7180), - [anon_sym_PIPE] = ACTIONS(7178), - [anon_sym_CARET] = ACTIONS(7178), - [anon_sym_AMP] = ACTIONS(7178), - [anon_sym_EQ_EQ] = ACTIONS(7180), - [anon_sym_BANG_EQ] = ACTIONS(7180), - [anon_sym_GT] = ACTIONS(7178), - [anon_sym_GT_EQ] = ACTIONS(7180), - [anon_sym_LT_EQ] = ACTIONS(7180), - [anon_sym_LT] = ACTIONS(7178), - [anon_sym_LT_LT] = ACTIONS(7178), - [anon_sym_GT_GT] = ACTIONS(7178), - [anon_sym_SEMI] = ACTIONS(7180), - [anon_sym___attribute] = ACTIONS(7178), - [anon_sym___attribute__] = ACTIONS(7178), - [anon_sym_RBRACE] = ACTIONS(7180), - [anon_sym_LBRACK] = ACTIONS(7180), - [anon_sym_RBRACK] = ACTIONS(7180), - [anon_sym_EQ] = ACTIONS(7178), - [anon_sym_const] = ACTIONS(7178), - [anon_sym_volatile] = ACTIONS(7178), - [anon_sym_restrict] = ACTIONS(7178), - [anon_sym__Atomic] = ACTIONS(7178), - [anon_sym_in] = ACTIONS(7178), - [anon_sym_out] = ACTIONS(7178), - [anon_sym_inout] = ACTIONS(7178), - [anon_sym_bycopy] = ACTIONS(7178), - [anon_sym_byref] = ACTIONS(7178), - [anon_sym_oneway] = ACTIONS(7178), - [anon_sym__Nullable] = ACTIONS(7178), - [anon_sym__Nonnull] = ACTIONS(7178), - [anon_sym__Nullable_result] = ACTIONS(7178), - [anon_sym__Null_unspecified] = ACTIONS(7178), - [anon_sym___autoreleasing] = ACTIONS(7178), - [anon_sym___nullable] = ACTIONS(7178), - [anon_sym___nonnull] = ACTIONS(7178), - [anon_sym___strong] = ACTIONS(7178), - [anon_sym___weak] = ACTIONS(7178), - [anon_sym___bridge] = ACTIONS(7178), - [anon_sym___bridge_transfer] = ACTIONS(7178), - [anon_sym___bridge_retained] = ACTIONS(7178), - [anon_sym___unsafe_unretained] = ACTIONS(7178), - [anon_sym___block] = ACTIONS(7178), - [anon_sym___kindof] = ACTIONS(7178), - [anon_sym___unused] = ACTIONS(7178), - [anon_sym__Complex] = ACTIONS(7178), - [anon_sym___complex] = ACTIONS(7178), - [anon_sym_IBOutlet] = ACTIONS(7178), - [anon_sym_IBInspectable] = ACTIONS(7178), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7178), - [anon_sym_COLON] = ACTIONS(7180), - [anon_sym_QMARK] = ACTIONS(7180), - [anon_sym_STAR_EQ] = ACTIONS(7180), - [anon_sym_SLASH_EQ] = ACTIONS(7180), - [anon_sym_PERCENT_EQ] = ACTIONS(7180), - [anon_sym_PLUS_EQ] = ACTIONS(7180), - [anon_sym_DASH_EQ] = ACTIONS(7180), - [anon_sym_LT_LT_EQ] = ACTIONS(7180), - [anon_sym_GT_GT_EQ] = ACTIONS(7180), - [anon_sym_AMP_EQ] = ACTIONS(7180), - [anon_sym_CARET_EQ] = ACTIONS(7180), - [anon_sym_PIPE_EQ] = ACTIONS(7180), - [anon_sym_DASH_DASH] = ACTIONS(7180), - [anon_sym_PLUS_PLUS] = ACTIONS(7180), - [anon_sym_DOT] = ACTIONS(7180), - [anon_sym_DASH_GT] = ACTIONS(7180), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7178), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7178), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7178), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7178), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7178), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7178), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7178), - [anon_sym_NS_AVAILABLE] = ACTIONS(7178), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7178), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7178), - [anon_sym_API_AVAILABLE] = ACTIONS(7178), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7178), - [anon_sym_API_DEPRECATED] = ACTIONS(7178), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7178), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7178), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7178), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7178), - [anon_sym___deprecated_msg] = ACTIONS(7178), - [anon_sym___deprecated_enum_msg] = ACTIONS(7178), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7178), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7178), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7178), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7178), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7178), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7178), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3058] = { - [sym_identifier] = ACTIONS(6820), - [anon_sym_COMMA] = ACTIONS(6822), - [anon_sym_RPAREN] = ACTIONS(6822), - [anon_sym_LPAREN2] = ACTIONS(6822), - [anon_sym_DASH] = ACTIONS(6820), - [anon_sym_PLUS] = ACTIONS(6820), - [anon_sym_STAR] = ACTIONS(6820), - [anon_sym_SLASH] = ACTIONS(6820), - [anon_sym_PERCENT] = ACTIONS(6820), - [anon_sym_PIPE_PIPE] = ACTIONS(6822), - [anon_sym_AMP_AMP] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6820), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_EQ_EQ] = ACTIONS(6822), - [anon_sym_BANG_EQ] = ACTIONS(6822), - [anon_sym_GT] = ACTIONS(6820), - [anon_sym_GT_EQ] = ACTIONS(6822), - [anon_sym_LT_EQ] = ACTIONS(6822), - [anon_sym_LT] = ACTIONS(6820), - [anon_sym_LT_LT] = ACTIONS(6820), - [anon_sym_GT_GT] = ACTIONS(6820), - [anon_sym_SEMI] = ACTIONS(6822), - [anon_sym___attribute] = ACTIONS(6820), - [anon_sym___attribute__] = ACTIONS(6820), - [anon_sym_RBRACE] = ACTIONS(6822), - [anon_sym_LBRACK] = ACTIONS(6822), - [anon_sym_RBRACK] = ACTIONS(6822), - [anon_sym_EQ] = ACTIONS(6820), - [anon_sym_const] = ACTIONS(6820), - [anon_sym_volatile] = ACTIONS(6820), - [anon_sym_restrict] = ACTIONS(6820), - [anon_sym__Atomic] = ACTIONS(6820), - [anon_sym_in] = ACTIONS(6820), - [anon_sym_out] = ACTIONS(6820), - [anon_sym_inout] = ACTIONS(6820), - [anon_sym_bycopy] = ACTIONS(6820), - [anon_sym_byref] = ACTIONS(6820), - [anon_sym_oneway] = ACTIONS(6820), - [anon_sym__Nullable] = ACTIONS(6820), - [anon_sym__Nonnull] = ACTIONS(6820), - [anon_sym__Nullable_result] = ACTIONS(6820), - [anon_sym__Null_unspecified] = ACTIONS(6820), - [anon_sym___autoreleasing] = ACTIONS(6820), - [anon_sym___nullable] = ACTIONS(6820), - [anon_sym___nonnull] = ACTIONS(6820), - [anon_sym___strong] = ACTIONS(6820), - [anon_sym___weak] = ACTIONS(6820), - [anon_sym___bridge] = ACTIONS(6820), - [anon_sym___bridge_transfer] = ACTIONS(6820), - [anon_sym___bridge_retained] = ACTIONS(6820), - [anon_sym___unsafe_unretained] = ACTIONS(6820), - [anon_sym___block] = ACTIONS(6820), - [anon_sym___kindof] = ACTIONS(6820), - [anon_sym___unused] = ACTIONS(6820), - [anon_sym__Complex] = ACTIONS(6820), - [anon_sym___complex] = ACTIONS(6820), - [anon_sym_IBOutlet] = ACTIONS(6820), - [anon_sym_IBInspectable] = ACTIONS(6820), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6820), - [anon_sym_COLON] = ACTIONS(6822), - [anon_sym_QMARK] = ACTIONS(6822), - [anon_sym_STAR_EQ] = ACTIONS(6822), - [anon_sym_SLASH_EQ] = ACTIONS(6822), - [anon_sym_PERCENT_EQ] = ACTIONS(6822), - [anon_sym_PLUS_EQ] = ACTIONS(6822), - [anon_sym_DASH_EQ] = ACTIONS(6822), - [anon_sym_LT_LT_EQ] = ACTIONS(6822), - [anon_sym_GT_GT_EQ] = ACTIONS(6822), - [anon_sym_AMP_EQ] = ACTIONS(6822), - [anon_sym_CARET_EQ] = ACTIONS(6822), - [anon_sym_PIPE_EQ] = ACTIONS(6822), - [anon_sym_DASH_DASH] = ACTIONS(6822), - [anon_sym_PLUS_PLUS] = ACTIONS(6822), - [anon_sym_DOT] = ACTIONS(6822), - [anon_sym_DASH_GT] = ACTIONS(6822), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6820), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6820), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6820), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6820), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6820), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6820), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6820), - [anon_sym_NS_AVAILABLE] = ACTIONS(6820), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6820), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_API_AVAILABLE] = ACTIONS(6820), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6820), - [anon_sym_API_DEPRECATED] = ACTIONS(6820), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6820), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6820), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6820), - [anon_sym___deprecated_msg] = ACTIONS(6820), - [anon_sym___deprecated_enum_msg] = ACTIONS(6820), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6820), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6820), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6820), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6820), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3059] = { - [sym_identifier] = ACTIONS(7182), - [anon_sym_COMMA] = ACTIONS(7184), - [anon_sym_RPAREN] = ACTIONS(7184), - [anon_sym_LPAREN2] = ACTIONS(7184), - [anon_sym_DASH] = ACTIONS(7182), - [anon_sym_PLUS] = ACTIONS(7182), - [anon_sym_STAR] = ACTIONS(7182), - [anon_sym_SLASH] = ACTIONS(7182), - [anon_sym_PERCENT] = ACTIONS(7182), - [anon_sym_PIPE_PIPE] = ACTIONS(7184), - [anon_sym_AMP_AMP] = ACTIONS(7184), - [anon_sym_PIPE] = ACTIONS(7182), - [anon_sym_CARET] = ACTIONS(7182), - [anon_sym_AMP] = ACTIONS(7182), - [anon_sym_EQ_EQ] = ACTIONS(7184), - [anon_sym_BANG_EQ] = ACTIONS(7184), - [anon_sym_GT] = ACTIONS(7182), - [anon_sym_GT_EQ] = ACTIONS(7184), - [anon_sym_LT_EQ] = ACTIONS(7184), - [anon_sym_LT] = ACTIONS(7182), - [anon_sym_LT_LT] = ACTIONS(7182), - [anon_sym_GT_GT] = ACTIONS(7182), - [anon_sym_SEMI] = ACTIONS(7184), - [anon_sym___attribute] = ACTIONS(7182), - [anon_sym___attribute__] = ACTIONS(7182), - [anon_sym_RBRACE] = ACTIONS(7184), - [anon_sym_LBRACK] = ACTIONS(7184), - [anon_sym_RBRACK] = ACTIONS(7184), - [anon_sym_EQ] = ACTIONS(7182), - [anon_sym_const] = ACTIONS(7182), - [anon_sym_volatile] = ACTIONS(7182), - [anon_sym_restrict] = ACTIONS(7182), - [anon_sym__Atomic] = ACTIONS(7182), - [anon_sym_in] = ACTIONS(7182), - [anon_sym_out] = ACTIONS(7182), - [anon_sym_inout] = ACTIONS(7182), - [anon_sym_bycopy] = ACTIONS(7182), - [anon_sym_byref] = ACTIONS(7182), - [anon_sym_oneway] = ACTIONS(7182), - [anon_sym__Nullable] = ACTIONS(7182), - [anon_sym__Nonnull] = ACTIONS(7182), - [anon_sym__Nullable_result] = ACTIONS(7182), - [anon_sym__Null_unspecified] = ACTIONS(7182), - [anon_sym___autoreleasing] = ACTIONS(7182), - [anon_sym___nullable] = ACTIONS(7182), - [anon_sym___nonnull] = ACTIONS(7182), - [anon_sym___strong] = ACTIONS(7182), - [anon_sym___weak] = ACTIONS(7182), - [anon_sym___bridge] = ACTIONS(7182), - [anon_sym___bridge_transfer] = ACTIONS(7182), - [anon_sym___bridge_retained] = ACTIONS(7182), - [anon_sym___unsafe_unretained] = ACTIONS(7182), - [anon_sym___block] = ACTIONS(7182), - [anon_sym___kindof] = ACTIONS(7182), - [anon_sym___unused] = ACTIONS(7182), - [anon_sym__Complex] = ACTIONS(7182), - [anon_sym___complex] = ACTIONS(7182), - [anon_sym_IBOutlet] = ACTIONS(7182), - [anon_sym_IBInspectable] = ACTIONS(7182), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7182), - [anon_sym_COLON] = ACTIONS(7184), - [anon_sym_QMARK] = ACTIONS(7184), - [anon_sym_STAR_EQ] = ACTIONS(7184), - [anon_sym_SLASH_EQ] = ACTIONS(7184), - [anon_sym_PERCENT_EQ] = ACTIONS(7184), - [anon_sym_PLUS_EQ] = ACTIONS(7184), - [anon_sym_DASH_EQ] = ACTIONS(7184), - [anon_sym_LT_LT_EQ] = ACTIONS(7184), - [anon_sym_GT_GT_EQ] = ACTIONS(7184), - [anon_sym_AMP_EQ] = ACTIONS(7184), - [anon_sym_CARET_EQ] = ACTIONS(7184), - [anon_sym_PIPE_EQ] = ACTIONS(7184), - [anon_sym_DASH_DASH] = ACTIONS(7184), - [anon_sym_PLUS_PLUS] = ACTIONS(7184), - [anon_sym_DOT] = ACTIONS(7184), - [anon_sym_DASH_GT] = ACTIONS(7184), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7182), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7182), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7182), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7182), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7182), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7182), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7182), - [anon_sym_NS_AVAILABLE] = ACTIONS(7182), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7182), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7182), - [anon_sym_API_AVAILABLE] = ACTIONS(7182), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7182), - [anon_sym_API_DEPRECATED] = ACTIONS(7182), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7182), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7182), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7182), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7182), - [anon_sym___deprecated_msg] = ACTIONS(7182), - [anon_sym___deprecated_enum_msg] = ACTIONS(7182), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7182), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7182), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7182), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7182), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7182), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7182), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3060] = { - [sym_identifier] = ACTIONS(7186), - [aux_sym_preproc_def_token1] = ACTIONS(7188), - [anon_sym_DASH] = ACTIONS(7188), - [anon_sym_PLUS] = ACTIONS(7188), - [anon_sym_typedef] = ACTIONS(7186), - [anon_sym_extern] = ACTIONS(7186), - [anon_sym___attribute] = ACTIONS(7186), - [anon_sym___attribute__] = ACTIONS(7186), - [anon_sym___declspec] = ACTIONS(7186), - [anon_sym___cdecl] = ACTIONS(7186), - [anon_sym___clrcall] = ACTIONS(7186), - [anon_sym___stdcall] = ACTIONS(7186), - [anon_sym___fastcall] = ACTIONS(7186), - [anon_sym___thiscall] = ACTIONS(7186), - [anon_sym___vectorcall] = ACTIONS(7186), - [anon_sym_static] = ACTIONS(7186), - [anon_sym_auto] = ACTIONS(7186), - [anon_sym_register] = ACTIONS(7186), - [anon_sym_inline] = ACTIONS(7186), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7186), - [anon_sym_const] = ACTIONS(7186), - [anon_sym_volatile] = ACTIONS(7186), - [anon_sym_restrict] = ACTIONS(7186), - [anon_sym__Atomic] = ACTIONS(7186), - [anon_sym_in] = ACTIONS(7186), - [anon_sym_out] = ACTIONS(7186), - [anon_sym_inout] = ACTIONS(7186), - [anon_sym_bycopy] = ACTIONS(7186), - [anon_sym_byref] = ACTIONS(7186), - [anon_sym_oneway] = ACTIONS(7186), - [anon_sym__Nullable] = ACTIONS(7186), - [anon_sym__Nonnull] = ACTIONS(7186), - [anon_sym__Nullable_result] = ACTIONS(7186), - [anon_sym__Null_unspecified] = ACTIONS(7186), - [anon_sym___autoreleasing] = ACTIONS(7186), - [anon_sym___nullable] = ACTIONS(7186), - [anon_sym___nonnull] = ACTIONS(7186), - [anon_sym___strong] = ACTIONS(7186), - [anon_sym___weak] = ACTIONS(7186), - [anon_sym___bridge] = ACTIONS(7186), - [anon_sym___bridge_transfer] = ACTIONS(7186), - [anon_sym___bridge_retained] = ACTIONS(7186), - [anon_sym___unsafe_unretained] = ACTIONS(7186), - [anon_sym___block] = ACTIONS(7186), - [anon_sym___kindof] = ACTIONS(7186), - [anon_sym___unused] = ACTIONS(7186), - [anon_sym__Complex] = ACTIONS(7186), - [anon_sym___complex] = ACTIONS(7186), - [anon_sym_IBOutlet] = ACTIONS(7186), - [anon_sym_IBInspectable] = ACTIONS(7186), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7186), - [anon_sym_signed] = ACTIONS(7186), - [anon_sym_unsigned] = ACTIONS(7186), - [anon_sym_long] = ACTIONS(7186), - [anon_sym_short] = ACTIONS(7186), - [sym_primitive_type] = ACTIONS(7186), - [anon_sym_enum] = ACTIONS(7186), - [anon_sym_NS_ENUM] = ACTIONS(7186), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7186), - [anon_sym_NS_OPTIONS] = ACTIONS(7186), - [anon_sym_struct] = ACTIONS(7186), - [anon_sym_union] = ACTIONS(7186), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7186), - [anon_sym_ATend] = ACTIONS(7188), - [sym_method_attribute_specifier] = ACTIONS(7186), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7186), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7186), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7186), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7186), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7186), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7186), - [anon_sym_NS_AVAILABLE] = ACTIONS(7186), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7186), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7186), - [anon_sym_API_AVAILABLE] = ACTIONS(7186), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7186), - [anon_sym_API_DEPRECATED] = ACTIONS(7186), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7186), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7186), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7186), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7186), - [anon_sym___deprecated_msg] = ACTIONS(7186), - [anon_sym___deprecated_enum_msg] = ACTIONS(7186), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7186), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7186), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7186), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7186), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7186), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7186), - [anon_sym_ATsynthesize] = ACTIONS(7188), - [anon_sym_ATdynamic] = ACTIONS(7188), - [anon_sym_typeof] = ACTIONS(7186), - [anon_sym___typeof] = ACTIONS(7186), - [anon_sym___typeof__] = ACTIONS(7186), - [sym_id] = ACTIONS(7186), - [sym_instancetype] = ACTIONS(7186), - [sym_Class] = ACTIONS(7186), - [sym_SEL] = ACTIONS(7186), - [sym_IMP] = ACTIONS(7186), - [sym_BOOL] = ACTIONS(7186), - [sym_auto] = ACTIONS(7186), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3061] = { - [sym_identifier] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_LPAREN2] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_SLASH] = ACTIONS(1367), - [anon_sym_PERCENT] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1367), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1367), - [anon_sym_LT_LT] = ACTIONS(1367), - [anon_sym_GT_GT] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym___attribute] = ACTIONS(1367), - [anon_sym___attribute__] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_RBRACK] = ACTIONS(1365), - [anon_sym_EQ] = ACTIONS(1367), - [anon_sym_const] = ACTIONS(1367), - [anon_sym_volatile] = ACTIONS(1367), - [anon_sym_restrict] = ACTIONS(1367), - [anon_sym__Atomic] = ACTIONS(1367), - [anon_sym_in] = ACTIONS(1367), - [anon_sym_out] = ACTIONS(1367), - [anon_sym_inout] = ACTIONS(1367), - [anon_sym_bycopy] = ACTIONS(1367), - [anon_sym_byref] = ACTIONS(1367), - [anon_sym_oneway] = ACTIONS(1367), - [anon_sym__Nullable] = ACTIONS(1367), - [anon_sym__Nonnull] = ACTIONS(1367), - [anon_sym__Nullable_result] = ACTIONS(1367), - [anon_sym__Null_unspecified] = ACTIONS(1367), - [anon_sym___autoreleasing] = ACTIONS(1367), - [anon_sym___nullable] = ACTIONS(1367), - [anon_sym___nonnull] = ACTIONS(1367), - [anon_sym___strong] = ACTIONS(1367), - [anon_sym___weak] = ACTIONS(1367), - [anon_sym___bridge] = ACTIONS(1367), - [anon_sym___bridge_transfer] = ACTIONS(1367), - [anon_sym___bridge_retained] = ACTIONS(1367), - [anon_sym___unsafe_unretained] = ACTIONS(1367), - [anon_sym___block] = ACTIONS(1367), - [anon_sym___kindof] = ACTIONS(1367), - [anon_sym___unused] = ACTIONS(1367), - [anon_sym__Complex] = ACTIONS(1367), - [anon_sym___complex] = ACTIONS(1367), - [anon_sym_IBOutlet] = ACTIONS(1367), - [anon_sym_IBInspectable] = ACTIONS(1367), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1367), - [anon_sym_COLON] = ACTIONS(1365), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_STAR_EQ] = ACTIONS(1365), - [anon_sym_SLASH_EQ] = ACTIONS(1365), - [anon_sym_PERCENT_EQ] = ACTIONS(1365), - [anon_sym_PLUS_EQ] = ACTIONS(1365), - [anon_sym_DASH_EQ] = ACTIONS(1365), - [anon_sym_LT_LT_EQ] = ACTIONS(1365), - [anon_sym_GT_GT_EQ] = ACTIONS(1365), - [anon_sym_AMP_EQ] = ACTIONS(1365), - [anon_sym_CARET_EQ] = ACTIONS(1365), - [anon_sym_PIPE_EQ] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DOT] = ACTIONS(1365), - [anon_sym_DASH_GT] = ACTIONS(1365), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(1367), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1367), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1367), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1367), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1367), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1367), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1367), - [anon_sym_NS_AVAILABLE] = ACTIONS(1367), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1367), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_API_AVAILABLE] = ACTIONS(1367), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1367), - [anon_sym_API_DEPRECATED] = ACTIONS(1367), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1367), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1367), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1367), - [anon_sym___deprecated_msg] = ACTIONS(1367), - [anon_sym___deprecated_enum_msg] = ACTIONS(1367), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1367), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1367), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1367), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1367), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3062] = { - [sym_identifier] = ACTIONS(2086), - [aux_sym_preproc_def_token1] = ACTIONS(2088), - [anon_sym_DASH] = ACTIONS(2088), - [anon_sym_PLUS] = ACTIONS(2088), - [anon_sym_typedef] = ACTIONS(2086), - [anon_sym_extern] = ACTIONS(2086), - [anon_sym___attribute] = ACTIONS(2086), - [anon_sym___attribute__] = ACTIONS(2086), - [anon_sym___declspec] = ACTIONS(2086), - [anon_sym___cdecl] = ACTIONS(2086), - [anon_sym___clrcall] = ACTIONS(2086), - [anon_sym___stdcall] = ACTIONS(2086), - [anon_sym___fastcall] = ACTIONS(2086), - [anon_sym___thiscall] = ACTIONS(2086), - [anon_sym___vectorcall] = ACTIONS(2086), - [anon_sym_static] = ACTIONS(2086), - [anon_sym_auto] = ACTIONS(2086), - [anon_sym_register] = ACTIONS(2086), - [anon_sym_inline] = ACTIONS(2086), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2086), - [anon_sym_const] = ACTIONS(2086), - [anon_sym_volatile] = ACTIONS(2086), - [anon_sym_restrict] = ACTIONS(2086), - [anon_sym__Atomic] = ACTIONS(2086), - [anon_sym_in] = ACTIONS(2086), - [anon_sym_out] = ACTIONS(2086), - [anon_sym_inout] = ACTIONS(2086), - [anon_sym_bycopy] = ACTIONS(2086), - [anon_sym_byref] = ACTIONS(2086), - [anon_sym_oneway] = ACTIONS(2086), - [anon_sym__Nullable] = ACTIONS(2086), - [anon_sym__Nonnull] = ACTIONS(2086), - [anon_sym__Nullable_result] = ACTIONS(2086), - [anon_sym__Null_unspecified] = ACTIONS(2086), - [anon_sym___autoreleasing] = ACTIONS(2086), - [anon_sym___nullable] = ACTIONS(2086), - [anon_sym___nonnull] = ACTIONS(2086), - [anon_sym___strong] = ACTIONS(2086), - [anon_sym___weak] = ACTIONS(2086), - [anon_sym___bridge] = ACTIONS(2086), - [anon_sym___bridge_transfer] = ACTIONS(2086), - [anon_sym___bridge_retained] = ACTIONS(2086), - [anon_sym___unsafe_unretained] = ACTIONS(2086), - [anon_sym___block] = ACTIONS(2086), - [anon_sym___kindof] = ACTIONS(2086), - [anon_sym___unused] = ACTIONS(2086), - [anon_sym__Complex] = ACTIONS(2086), - [anon_sym___complex] = ACTIONS(2086), - [anon_sym_IBOutlet] = ACTIONS(2086), - [anon_sym_IBInspectable] = ACTIONS(2086), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2086), - [anon_sym_signed] = ACTIONS(2086), - [anon_sym_unsigned] = ACTIONS(2086), - [anon_sym_long] = ACTIONS(2086), - [anon_sym_short] = ACTIONS(2086), - [sym_primitive_type] = ACTIONS(2086), - [anon_sym_enum] = ACTIONS(2086), - [anon_sym_NS_ENUM] = ACTIONS(2086), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2086), - [anon_sym_NS_OPTIONS] = ACTIONS(2086), - [anon_sym_struct] = ACTIONS(2086), - [anon_sym_union] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(2086), - [anon_sym_ATend] = ACTIONS(2088), - [sym_method_attribute_specifier] = ACTIONS(2086), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2086), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2086), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2086), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2086), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2086), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2086), - [anon_sym_NS_AVAILABLE] = ACTIONS(2086), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2086), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2086), - [anon_sym_API_AVAILABLE] = ACTIONS(2086), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2086), - [anon_sym_API_DEPRECATED] = ACTIONS(2086), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2086), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2086), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2086), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2086), - [anon_sym___deprecated_msg] = ACTIONS(2086), - [anon_sym___deprecated_enum_msg] = ACTIONS(2086), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2086), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2086), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2086), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2086), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2086), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2086), - [anon_sym_ATsynthesize] = ACTIONS(2088), - [anon_sym_ATdynamic] = ACTIONS(2088), - [anon_sym_typeof] = ACTIONS(2086), - [anon_sym___typeof] = ACTIONS(2086), - [anon_sym___typeof__] = ACTIONS(2086), - [sym_id] = ACTIONS(2086), - [sym_instancetype] = ACTIONS(2086), - [sym_Class] = ACTIONS(2086), - [sym_SEL] = ACTIONS(2086), - [sym_IMP] = ACTIONS(2086), - [sym_BOOL] = ACTIONS(2086), - [sym_auto] = ACTIONS(2086), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3063] = { - [sym_identifier] = ACTIONS(1707), - [anon_sym_COMMA] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1707), - [anon_sym_PERCENT] = ACTIONS(1707), - [anon_sym_PIPE_PIPE] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_EQ_EQ] = ACTIONS(1705), - [anon_sym_BANG_EQ] = ACTIONS(1705), - [anon_sym_GT] = ACTIONS(1707), - [anon_sym_GT_EQ] = ACTIONS(1705), - [anon_sym_LT_EQ] = ACTIONS(1705), - [anon_sym_LT] = ACTIONS(1707), - [anon_sym_LT_LT] = ACTIONS(1707), - [anon_sym_GT_GT] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym___attribute] = ACTIONS(1707), - [anon_sym___attribute__] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_RBRACK] = ACTIONS(1705), - [anon_sym_EQ] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym_restrict] = ACTIONS(1707), - [anon_sym__Atomic] = ACTIONS(1707), - [anon_sym_in] = ACTIONS(1707), - [anon_sym_out] = ACTIONS(1707), - [anon_sym_inout] = ACTIONS(1707), - [anon_sym_bycopy] = ACTIONS(1707), - [anon_sym_byref] = ACTIONS(1707), - [anon_sym_oneway] = ACTIONS(1707), - [anon_sym__Nullable] = ACTIONS(1707), - [anon_sym__Nonnull] = ACTIONS(1707), - [anon_sym__Nullable_result] = ACTIONS(1707), - [anon_sym__Null_unspecified] = ACTIONS(1707), - [anon_sym___autoreleasing] = ACTIONS(1707), - [anon_sym___nullable] = ACTIONS(1707), - [anon_sym___nonnull] = ACTIONS(1707), - [anon_sym___strong] = ACTIONS(1707), - [anon_sym___weak] = ACTIONS(1707), - [anon_sym___bridge] = ACTIONS(1707), - [anon_sym___bridge_transfer] = ACTIONS(1707), - [anon_sym___bridge_retained] = ACTIONS(1707), - [anon_sym___unsafe_unretained] = ACTIONS(1707), - [anon_sym___block] = ACTIONS(1707), - [anon_sym___kindof] = ACTIONS(1707), - [anon_sym___unused] = ACTIONS(1707), - [anon_sym__Complex] = ACTIONS(1707), - [anon_sym___complex] = ACTIONS(1707), - [anon_sym_IBOutlet] = ACTIONS(1707), - [anon_sym_IBInspectable] = ACTIONS(1707), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1707), - [anon_sym_COLON] = ACTIONS(1705), - [anon_sym_QMARK] = ACTIONS(1705), - [anon_sym_STAR_EQ] = ACTIONS(1705), - [anon_sym_SLASH_EQ] = ACTIONS(1705), - [anon_sym_PERCENT_EQ] = ACTIONS(1705), - [anon_sym_PLUS_EQ] = ACTIONS(1705), - [anon_sym_DASH_EQ] = ACTIONS(1705), - [anon_sym_LT_LT_EQ] = ACTIONS(1705), - [anon_sym_GT_GT_EQ] = ACTIONS(1705), - [anon_sym_AMP_EQ] = ACTIONS(1705), - [anon_sym_CARET_EQ] = ACTIONS(1705), - [anon_sym_PIPE_EQ] = ACTIONS(1705), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_PLUS_PLUS] = ACTIONS(1705), - [anon_sym_DOT] = ACTIONS(1705), - [anon_sym_DASH_GT] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(1707), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1707), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1707), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1707), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1707), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1707), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1707), - [anon_sym_NS_AVAILABLE] = ACTIONS(1707), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1707), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_API_AVAILABLE] = ACTIONS(1707), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1707), - [anon_sym_API_DEPRECATED] = ACTIONS(1707), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1707), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1707), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1707), - [anon_sym___deprecated_msg] = ACTIONS(1707), - [anon_sym___deprecated_enum_msg] = ACTIONS(1707), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1707), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1707), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1707), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1707), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3064] = { - [sym_identifier] = ACTIONS(7190), - [anon_sym_COMMA] = ACTIONS(7192), - [anon_sym_RPAREN] = ACTIONS(7192), - [anon_sym_LPAREN2] = ACTIONS(7192), - [anon_sym_DASH] = ACTIONS(7190), - [anon_sym_PLUS] = ACTIONS(7190), - [anon_sym_STAR] = ACTIONS(7190), - [anon_sym_SLASH] = ACTIONS(7190), - [anon_sym_PERCENT] = ACTIONS(7190), - [anon_sym_PIPE_PIPE] = ACTIONS(7192), - [anon_sym_AMP_AMP] = ACTIONS(7192), - [anon_sym_PIPE] = ACTIONS(7190), - [anon_sym_CARET] = ACTIONS(7190), - [anon_sym_AMP] = ACTIONS(7190), - [anon_sym_EQ_EQ] = ACTIONS(7192), - [anon_sym_BANG_EQ] = ACTIONS(7192), - [anon_sym_GT] = ACTIONS(7190), - [anon_sym_GT_EQ] = ACTIONS(7192), - [anon_sym_LT_EQ] = ACTIONS(7192), - [anon_sym_LT] = ACTIONS(7190), - [anon_sym_LT_LT] = ACTIONS(7190), - [anon_sym_GT_GT] = ACTIONS(7190), - [anon_sym_SEMI] = ACTIONS(7192), - [anon_sym___attribute] = ACTIONS(7190), - [anon_sym___attribute__] = ACTIONS(7190), - [anon_sym_RBRACE] = ACTIONS(7192), - [anon_sym_LBRACK] = ACTIONS(7192), - [anon_sym_RBRACK] = ACTIONS(7192), - [anon_sym_EQ] = ACTIONS(7190), - [anon_sym_const] = ACTIONS(7190), - [anon_sym_volatile] = ACTIONS(7190), - [anon_sym_restrict] = ACTIONS(7190), - [anon_sym__Atomic] = ACTIONS(7190), - [anon_sym_in] = ACTIONS(7190), - [anon_sym_out] = ACTIONS(7190), - [anon_sym_inout] = ACTIONS(7190), - [anon_sym_bycopy] = ACTIONS(7190), - [anon_sym_byref] = ACTIONS(7190), - [anon_sym_oneway] = ACTIONS(7190), - [anon_sym__Nullable] = ACTIONS(7190), - [anon_sym__Nonnull] = ACTIONS(7190), - [anon_sym__Nullable_result] = ACTIONS(7190), - [anon_sym__Null_unspecified] = ACTIONS(7190), - [anon_sym___autoreleasing] = ACTIONS(7190), - [anon_sym___nullable] = ACTIONS(7190), - [anon_sym___nonnull] = ACTIONS(7190), - [anon_sym___strong] = ACTIONS(7190), - [anon_sym___weak] = ACTIONS(7190), - [anon_sym___bridge] = ACTIONS(7190), - [anon_sym___bridge_transfer] = ACTIONS(7190), - [anon_sym___bridge_retained] = ACTIONS(7190), - [anon_sym___unsafe_unretained] = ACTIONS(7190), - [anon_sym___block] = ACTIONS(7190), - [anon_sym___kindof] = ACTIONS(7190), - [anon_sym___unused] = ACTIONS(7190), - [anon_sym__Complex] = ACTIONS(7190), - [anon_sym___complex] = ACTIONS(7190), - [anon_sym_IBOutlet] = ACTIONS(7190), - [anon_sym_IBInspectable] = ACTIONS(7190), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7190), - [anon_sym_COLON] = ACTIONS(7192), - [anon_sym_QMARK] = ACTIONS(7192), - [anon_sym_STAR_EQ] = ACTIONS(7192), - [anon_sym_SLASH_EQ] = ACTIONS(7192), - [anon_sym_PERCENT_EQ] = ACTIONS(7192), - [anon_sym_PLUS_EQ] = ACTIONS(7192), - [anon_sym_DASH_EQ] = ACTIONS(7192), - [anon_sym_LT_LT_EQ] = ACTIONS(7192), - [anon_sym_GT_GT_EQ] = ACTIONS(7192), - [anon_sym_AMP_EQ] = ACTIONS(7192), - [anon_sym_CARET_EQ] = ACTIONS(7192), - [anon_sym_PIPE_EQ] = ACTIONS(7192), - [anon_sym_DASH_DASH] = ACTIONS(7192), - [anon_sym_PLUS_PLUS] = ACTIONS(7192), - [anon_sym_DOT] = ACTIONS(7192), - [anon_sym_DASH_GT] = ACTIONS(7192), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7190), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7190), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7190), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7190), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7190), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7190), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7190), - [anon_sym_NS_AVAILABLE] = ACTIONS(7190), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7190), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7190), - [anon_sym_API_AVAILABLE] = ACTIONS(7190), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7190), - [anon_sym_API_DEPRECATED] = ACTIONS(7190), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7190), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7190), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7190), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7190), - [anon_sym___deprecated_msg] = ACTIONS(7190), - [anon_sym___deprecated_enum_msg] = ACTIONS(7190), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7190), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7190), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7190), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7190), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7190), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7190), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3065] = { - [sym_identifier] = ACTIONS(7194), - [anon_sym_COMMA] = ACTIONS(7196), - [anon_sym_RPAREN] = ACTIONS(7196), - [anon_sym_LPAREN2] = ACTIONS(7196), - [anon_sym_DASH] = ACTIONS(7194), - [anon_sym_PLUS] = ACTIONS(7194), - [anon_sym_STAR] = ACTIONS(7194), - [anon_sym_SLASH] = ACTIONS(7194), - [anon_sym_PERCENT] = ACTIONS(7194), - [anon_sym_PIPE_PIPE] = ACTIONS(7196), - [anon_sym_AMP_AMP] = ACTIONS(7196), - [anon_sym_PIPE] = ACTIONS(7194), - [anon_sym_CARET] = ACTIONS(7194), - [anon_sym_AMP] = ACTIONS(7194), - [anon_sym_EQ_EQ] = ACTIONS(7196), - [anon_sym_BANG_EQ] = ACTIONS(7196), - [anon_sym_GT] = ACTIONS(7194), - [anon_sym_GT_EQ] = ACTIONS(7196), - [anon_sym_LT_EQ] = ACTIONS(7196), - [anon_sym_LT] = ACTIONS(7194), - [anon_sym_LT_LT] = ACTIONS(7194), - [anon_sym_GT_GT] = ACTIONS(7194), - [anon_sym_SEMI] = ACTIONS(7196), - [anon_sym___attribute] = ACTIONS(7194), - [anon_sym___attribute__] = ACTIONS(7194), - [anon_sym_RBRACE] = ACTIONS(7196), - [anon_sym_LBRACK] = ACTIONS(7196), - [anon_sym_RBRACK] = ACTIONS(7196), - [anon_sym_EQ] = ACTIONS(7194), - [anon_sym_const] = ACTIONS(7194), - [anon_sym_volatile] = ACTIONS(7194), - [anon_sym_restrict] = ACTIONS(7194), - [anon_sym__Atomic] = ACTIONS(7194), - [anon_sym_in] = ACTIONS(7194), - [anon_sym_out] = ACTIONS(7194), - [anon_sym_inout] = ACTIONS(7194), - [anon_sym_bycopy] = ACTIONS(7194), - [anon_sym_byref] = ACTIONS(7194), - [anon_sym_oneway] = ACTIONS(7194), - [anon_sym__Nullable] = ACTIONS(7194), - [anon_sym__Nonnull] = ACTIONS(7194), - [anon_sym__Nullable_result] = ACTIONS(7194), - [anon_sym__Null_unspecified] = ACTIONS(7194), - [anon_sym___autoreleasing] = ACTIONS(7194), - [anon_sym___nullable] = ACTIONS(7194), - [anon_sym___nonnull] = ACTIONS(7194), - [anon_sym___strong] = ACTIONS(7194), - [anon_sym___weak] = ACTIONS(7194), - [anon_sym___bridge] = ACTIONS(7194), - [anon_sym___bridge_transfer] = ACTIONS(7194), - [anon_sym___bridge_retained] = ACTIONS(7194), - [anon_sym___unsafe_unretained] = ACTIONS(7194), - [anon_sym___block] = ACTIONS(7194), - [anon_sym___kindof] = ACTIONS(7194), - [anon_sym___unused] = ACTIONS(7194), - [anon_sym__Complex] = ACTIONS(7194), - [anon_sym___complex] = ACTIONS(7194), - [anon_sym_IBOutlet] = ACTIONS(7194), - [anon_sym_IBInspectable] = ACTIONS(7194), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7194), - [anon_sym_COLON] = ACTIONS(7196), - [anon_sym_QMARK] = ACTIONS(7196), - [anon_sym_STAR_EQ] = ACTIONS(7196), - [anon_sym_SLASH_EQ] = ACTIONS(7196), - [anon_sym_PERCENT_EQ] = ACTIONS(7196), - [anon_sym_PLUS_EQ] = ACTIONS(7196), - [anon_sym_DASH_EQ] = ACTIONS(7196), - [anon_sym_LT_LT_EQ] = ACTIONS(7196), - [anon_sym_GT_GT_EQ] = ACTIONS(7196), - [anon_sym_AMP_EQ] = ACTIONS(7196), - [anon_sym_CARET_EQ] = ACTIONS(7196), - [anon_sym_PIPE_EQ] = ACTIONS(7196), - [anon_sym_DASH_DASH] = ACTIONS(7196), - [anon_sym_PLUS_PLUS] = ACTIONS(7196), - [anon_sym_DOT] = ACTIONS(7196), - [anon_sym_DASH_GT] = ACTIONS(7196), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7194), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7194), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7194), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7194), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7194), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7194), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7194), - [anon_sym_NS_AVAILABLE] = ACTIONS(7194), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7194), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7194), - [anon_sym_API_AVAILABLE] = ACTIONS(7194), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7194), - [anon_sym_API_DEPRECATED] = ACTIONS(7194), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7194), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7194), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7194), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7194), - [anon_sym___deprecated_msg] = ACTIONS(7194), - [anon_sym___deprecated_enum_msg] = ACTIONS(7194), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7194), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7194), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7194), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7194), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7194), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7194), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3066] = { - [sym_identifier] = ACTIONS(7198), - [anon_sym_COMMA] = ACTIONS(7200), - [anon_sym_RPAREN] = ACTIONS(7200), - [anon_sym_LPAREN2] = ACTIONS(7200), - [anon_sym_DASH] = ACTIONS(7198), - [anon_sym_PLUS] = ACTIONS(7198), - [anon_sym_STAR] = ACTIONS(7198), - [anon_sym_SLASH] = ACTIONS(7198), - [anon_sym_PERCENT] = ACTIONS(7198), - [anon_sym_PIPE_PIPE] = ACTIONS(7200), - [anon_sym_AMP_AMP] = ACTIONS(7200), - [anon_sym_PIPE] = ACTIONS(7198), - [anon_sym_CARET] = ACTIONS(7198), - [anon_sym_AMP] = ACTIONS(7198), - [anon_sym_EQ_EQ] = ACTIONS(7200), - [anon_sym_BANG_EQ] = ACTIONS(7200), - [anon_sym_GT] = ACTIONS(7198), - [anon_sym_GT_EQ] = ACTIONS(7200), - [anon_sym_LT_EQ] = ACTIONS(7200), - [anon_sym_LT] = ACTIONS(7198), - [anon_sym_LT_LT] = ACTIONS(7198), - [anon_sym_GT_GT] = ACTIONS(7198), - [anon_sym_SEMI] = ACTIONS(7200), - [anon_sym___attribute] = ACTIONS(7198), - [anon_sym___attribute__] = ACTIONS(7198), - [anon_sym_RBRACE] = ACTIONS(7200), - [anon_sym_LBRACK] = ACTIONS(7200), - [anon_sym_RBRACK] = ACTIONS(7200), - [anon_sym_EQ] = ACTIONS(7198), - [anon_sym_const] = ACTIONS(7198), - [anon_sym_volatile] = ACTIONS(7198), - [anon_sym_restrict] = ACTIONS(7198), - [anon_sym__Atomic] = ACTIONS(7198), - [anon_sym_in] = ACTIONS(7198), - [anon_sym_out] = ACTIONS(7198), - [anon_sym_inout] = ACTIONS(7198), - [anon_sym_bycopy] = ACTIONS(7198), - [anon_sym_byref] = ACTIONS(7198), - [anon_sym_oneway] = ACTIONS(7198), - [anon_sym__Nullable] = ACTIONS(7198), - [anon_sym__Nonnull] = ACTIONS(7198), - [anon_sym__Nullable_result] = ACTIONS(7198), - [anon_sym__Null_unspecified] = ACTIONS(7198), - [anon_sym___autoreleasing] = ACTIONS(7198), - [anon_sym___nullable] = ACTIONS(7198), - [anon_sym___nonnull] = ACTIONS(7198), - [anon_sym___strong] = ACTIONS(7198), - [anon_sym___weak] = ACTIONS(7198), - [anon_sym___bridge] = ACTIONS(7198), - [anon_sym___bridge_transfer] = ACTIONS(7198), - [anon_sym___bridge_retained] = ACTIONS(7198), - [anon_sym___unsafe_unretained] = ACTIONS(7198), - [anon_sym___block] = ACTIONS(7198), - [anon_sym___kindof] = ACTIONS(7198), - [anon_sym___unused] = ACTIONS(7198), - [anon_sym__Complex] = ACTIONS(7198), - [anon_sym___complex] = ACTIONS(7198), - [anon_sym_IBOutlet] = ACTIONS(7198), - [anon_sym_IBInspectable] = ACTIONS(7198), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7198), - [anon_sym_COLON] = ACTIONS(7200), - [anon_sym_QMARK] = ACTIONS(7200), - [anon_sym_STAR_EQ] = ACTIONS(7200), - [anon_sym_SLASH_EQ] = ACTIONS(7200), - [anon_sym_PERCENT_EQ] = ACTIONS(7200), - [anon_sym_PLUS_EQ] = ACTIONS(7200), - [anon_sym_DASH_EQ] = ACTIONS(7200), - [anon_sym_LT_LT_EQ] = ACTIONS(7200), - [anon_sym_GT_GT_EQ] = ACTIONS(7200), - [anon_sym_AMP_EQ] = ACTIONS(7200), - [anon_sym_CARET_EQ] = ACTIONS(7200), - [anon_sym_PIPE_EQ] = ACTIONS(7200), - [anon_sym_DASH_DASH] = ACTIONS(7200), - [anon_sym_PLUS_PLUS] = ACTIONS(7200), - [anon_sym_DOT] = ACTIONS(7200), - [anon_sym_DASH_GT] = ACTIONS(7200), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7198), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7198), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7198), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7198), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7198), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7198), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7198), - [anon_sym_NS_AVAILABLE] = ACTIONS(7198), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7198), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7198), - [anon_sym_API_AVAILABLE] = ACTIONS(7198), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7198), - [anon_sym_API_DEPRECATED] = ACTIONS(7198), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7198), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7198), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7198), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7198), - [anon_sym___deprecated_msg] = ACTIONS(7198), - [anon_sym___deprecated_enum_msg] = ACTIONS(7198), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7198), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7198), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7198), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7198), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7198), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7198), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3067] = { - [sym_identifier] = ACTIONS(7202), - [anon_sym_COMMA] = ACTIONS(7204), - [anon_sym_RPAREN] = ACTIONS(7204), - [anon_sym_LPAREN2] = ACTIONS(7204), - [anon_sym_DASH] = ACTIONS(7202), - [anon_sym_PLUS] = ACTIONS(7202), - [anon_sym_STAR] = ACTIONS(7202), - [anon_sym_SLASH] = ACTIONS(7202), - [anon_sym_PERCENT] = ACTIONS(7202), - [anon_sym_PIPE_PIPE] = ACTIONS(7204), - [anon_sym_AMP_AMP] = ACTIONS(7204), - [anon_sym_PIPE] = ACTIONS(7202), - [anon_sym_CARET] = ACTIONS(7202), - [anon_sym_AMP] = ACTIONS(7202), - [anon_sym_EQ_EQ] = ACTIONS(7204), - [anon_sym_BANG_EQ] = ACTIONS(7204), - [anon_sym_GT] = ACTIONS(7202), - [anon_sym_GT_EQ] = ACTIONS(7204), - [anon_sym_LT_EQ] = ACTIONS(7204), - [anon_sym_LT] = ACTIONS(7202), - [anon_sym_LT_LT] = ACTIONS(7202), - [anon_sym_GT_GT] = ACTIONS(7202), - [anon_sym_SEMI] = ACTIONS(7204), - [anon_sym___attribute] = ACTIONS(7202), - [anon_sym___attribute__] = ACTIONS(7202), - [anon_sym_RBRACE] = ACTIONS(7204), - [anon_sym_LBRACK] = ACTIONS(7204), - [anon_sym_RBRACK] = ACTIONS(7204), - [anon_sym_EQ] = ACTIONS(7202), - [anon_sym_const] = ACTIONS(7202), - [anon_sym_volatile] = ACTIONS(7202), - [anon_sym_restrict] = ACTIONS(7202), - [anon_sym__Atomic] = ACTIONS(7202), - [anon_sym_in] = ACTIONS(7202), - [anon_sym_out] = ACTIONS(7202), - [anon_sym_inout] = ACTIONS(7202), - [anon_sym_bycopy] = ACTIONS(7202), - [anon_sym_byref] = ACTIONS(7202), - [anon_sym_oneway] = ACTIONS(7202), - [anon_sym__Nullable] = ACTIONS(7202), - [anon_sym__Nonnull] = ACTIONS(7202), - [anon_sym__Nullable_result] = ACTIONS(7202), - [anon_sym__Null_unspecified] = ACTIONS(7202), - [anon_sym___autoreleasing] = ACTIONS(7202), - [anon_sym___nullable] = ACTIONS(7202), - [anon_sym___nonnull] = ACTIONS(7202), - [anon_sym___strong] = ACTIONS(7202), - [anon_sym___weak] = ACTIONS(7202), - [anon_sym___bridge] = ACTIONS(7202), - [anon_sym___bridge_transfer] = ACTIONS(7202), - [anon_sym___bridge_retained] = ACTIONS(7202), - [anon_sym___unsafe_unretained] = ACTIONS(7202), - [anon_sym___block] = ACTIONS(7202), - [anon_sym___kindof] = ACTIONS(7202), - [anon_sym___unused] = ACTIONS(7202), - [anon_sym__Complex] = ACTIONS(7202), - [anon_sym___complex] = ACTIONS(7202), - [anon_sym_IBOutlet] = ACTIONS(7202), - [anon_sym_IBInspectable] = ACTIONS(7202), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7202), - [anon_sym_COLON] = ACTIONS(7204), - [anon_sym_QMARK] = ACTIONS(7204), - [anon_sym_STAR_EQ] = ACTIONS(7204), - [anon_sym_SLASH_EQ] = ACTIONS(7204), - [anon_sym_PERCENT_EQ] = ACTIONS(7204), - [anon_sym_PLUS_EQ] = ACTIONS(7204), - [anon_sym_DASH_EQ] = ACTIONS(7204), - [anon_sym_LT_LT_EQ] = ACTIONS(7204), - [anon_sym_GT_GT_EQ] = ACTIONS(7204), - [anon_sym_AMP_EQ] = ACTIONS(7204), - [anon_sym_CARET_EQ] = ACTIONS(7204), - [anon_sym_PIPE_EQ] = ACTIONS(7204), - [anon_sym_DASH_DASH] = ACTIONS(7204), - [anon_sym_PLUS_PLUS] = ACTIONS(7204), - [anon_sym_DOT] = ACTIONS(7204), - [anon_sym_DASH_GT] = ACTIONS(7204), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7202), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7202), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7202), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7202), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7202), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7202), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7202), - [anon_sym_NS_AVAILABLE] = ACTIONS(7202), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7202), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7202), - [anon_sym_API_AVAILABLE] = ACTIONS(7202), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7202), - [anon_sym_API_DEPRECATED] = ACTIONS(7202), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7202), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7202), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7202), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7202), - [anon_sym___deprecated_msg] = ACTIONS(7202), - [anon_sym___deprecated_enum_msg] = ACTIONS(7202), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7202), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7202), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7202), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7202), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7202), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7202), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3068] = { - [sym_identifier] = ACTIONS(7206), - [anon_sym_COMMA] = ACTIONS(7208), - [anon_sym_RPAREN] = ACTIONS(7208), - [anon_sym_LPAREN2] = ACTIONS(7208), - [anon_sym_DASH] = ACTIONS(7206), - [anon_sym_PLUS] = ACTIONS(7206), - [anon_sym_STAR] = ACTIONS(7206), - [anon_sym_SLASH] = ACTIONS(7206), - [anon_sym_PERCENT] = ACTIONS(7206), - [anon_sym_PIPE_PIPE] = ACTIONS(7208), - [anon_sym_AMP_AMP] = ACTIONS(7208), - [anon_sym_PIPE] = ACTIONS(7206), - [anon_sym_CARET] = ACTIONS(7206), - [anon_sym_AMP] = ACTIONS(7206), - [anon_sym_EQ_EQ] = ACTIONS(7208), - [anon_sym_BANG_EQ] = ACTIONS(7208), - [anon_sym_GT] = ACTIONS(7206), - [anon_sym_GT_EQ] = ACTIONS(7208), - [anon_sym_LT_EQ] = ACTIONS(7208), - [anon_sym_LT] = ACTIONS(7206), - [anon_sym_LT_LT] = ACTIONS(7206), - [anon_sym_GT_GT] = ACTIONS(7206), - [anon_sym_SEMI] = ACTIONS(7208), - [anon_sym___attribute] = ACTIONS(7206), - [anon_sym___attribute__] = ACTIONS(7206), - [anon_sym_RBRACE] = ACTIONS(7208), - [anon_sym_LBRACK] = ACTIONS(7208), - [anon_sym_RBRACK] = ACTIONS(7208), - [anon_sym_EQ] = ACTIONS(7206), - [anon_sym_const] = ACTIONS(7206), - [anon_sym_volatile] = ACTIONS(7206), - [anon_sym_restrict] = ACTIONS(7206), - [anon_sym__Atomic] = ACTIONS(7206), - [anon_sym_in] = ACTIONS(7206), - [anon_sym_out] = ACTIONS(7206), - [anon_sym_inout] = ACTIONS(7206), - [anon_sym_bycopy] = ACTIONS(7206), - [anon_sym_byref] = ACTIONS(7206), - [anon_sym_oneway] = ACTIONS(7206), - [anon_sym__Nullable] = ACTIONS(7206), - [anon_sym__Nonnull] = ACTIONS(7206), - [anon_sym__Nullable_result] = ACTIONS(7206), - [anon_sym__Null_unspecified] = ACTIONS(7206), - [anon_sym___autoreleasing] = ACTIONS(7206), - [anon_sym___nullable] = ACTIONS(7206), - [anon_sym___nonnull] = ACTIONS(7206), - [anon_sym___strong] = ACTIONS(7206), - [anon_sym___weak] = ACTIONS(7206), - [anon_sym___bridge] = ACTIONS(7206), - [anon_sym___bridge_transfer] = ACTIONS(7206), - [anon_sym___bridge_retained] = ACTIONS(7206), - [anon_sym___unsafe_unretained] = ACTIONS(7206), - [anon_sym___block] = ACTIONS(7206), - [anon_sym___kindof] = ACTIONS(7206), - [anon_sym___unused] = ACTIONS(7206), - [anon_sym__Complex] = ACTIONS(7206), - [anon_sym___complex] = ACTIONS(7206), - [anon_sym_IBOutlet] = ACTIONS(7206), - [anon_sym_IBInspectable] = ACTIONS(7206), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7206), - [anon_sym_COLON] = ACTIONS(7208), - [anon_sym_QMARK] = ACTIONS(7208), - [anon_sym_STAR_EQ] = ACTIONS(7208), - [anon_sym_SLASH_EQ] = ACTIONS(7208), - [anon_sym_PERCENT_EQ] = ACTIONS(7208), - [anon_sym_PLUS_EQ] = ACTIONS(7208), - [anon_sym_DASH_EQ] = ACTIONS(7208), - [anon_sym_LT_LT_EQ] = ACTIONS(7208), - [anon_sym_GT_GT_EQ] = ACTIONS(7208), - [anon_sym_AMP_EQ] = ACTIONS(7208), - [anon_sym_CARET_EQ] = ACTIONS(7208), - [anon_sym_PIPE_EQ] = ACTIONS(7208), - [anon_sym_DASH_DASH] = ACTIONS(7208), - [anon_sym_PLUS_PLUS] = ACTIONS(7208), - [anon_sym_DOT] = ACTIONS(7208), - [anon_sym_DASH_GT] = ACTIONS(7208), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7206), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7206), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7206), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7206), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7206), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7206), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7206), - [anon_sym_NS_AVAILABLE] = ACTIONS(7206), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7206), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7206), - [anon_sym_API_AVAILABLE] = ACTIONS(7206), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7206), - [anon_sym_API_DEPRECATED] = ACTIONS(7206), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7206), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7206), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7206), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7206), - [anon_sym___deprecated_msg] = ACTIONS(7206), - [anon_sym___deprecated_enum_msg] = ACTIONS(7206), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7206), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7206), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7206), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7206), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7206), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7206), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3069] = { - [sym_identifier] = ACTIONS(7210), - [anon_sym_COMMA] = ACTIONS(7212), - [anon_sym_RPAREN] = ACTIONS(7212), - [anon_sym_LPAREN2] = ACTIONS(7212), - [anon_sym_DASH] = ACTIONS(7210), - [anon_sym_PLUS] = ACTIONS(7210), - [anon_sym_STAR] = ACTIONS(7210), - [anon_sym_SLASH] = ACTIONS(7210), - [anon_sym_PERCENT] = ACTIONS(7210), - [anon_sym_PIPE_PIPE] = ACTIONS(7212), - [anon_sym_AMP_AMP] = ACTIONS(7212), - [anon_sym_PIPE] = ACTIONS(7210), - [anon_sym_CARET] = ACTIONS(7210), - [anon_sym_AMP] = ACTIONS(7210), - [anon_sym_EQ_EQ] = ACTIONS(7212), - [anon_sym_BANG_EQ] = ACTIONS(7212), - [anon_sym_GT] = ACTIONS(7210), - [anon_sym_GT_EQ] = ACTIONS(7212), - [anon_sym_LT_EQ] = ACTIONS(7212), - [anon_sym_LT] = ACTIONS(7210), - [anon_sym_LT_LT] = ACTIONS(7210), - [anon_sym_GT_GT] = ACTIONS(7210), - [anon_sym_SEMI] = ACTIONS(7212), - [anon_sym___attribute] = ACTIONS(7210), - [anon_sym___attribute__] = ACTIONS(7210), - [anon_sym_RBRACE] = ACTIONS(7212), - [anon_sym_LBRACK] = ACTIONS(7212), - [anon_sym_RBRACK] = ACTIONS(7212), - [anon_sym_EQ] = ACTIONS(7210), - [anon_sym_const] = ACTIONS(7210), - [anon_sym_volatile] = ACTIONS(7210), - [anon_sym_restrict] = ACTIONS(7210), - [anon_sym__Atomic] = ACTIONS(7210), - [anon_sym_in] = ACTIONS(7210), - [anon_sym_out] = ACTIONS(7210), - [anon_sym_inout] = ACTIONS(7210), - [anon_sym_bycopy] = ACTIONS(7210), - [anon_sym_byref] = ACTIONS(7210), - [anon_sym_oneway] = ACTIONS(7210), - [anon_sym__Nullable] = ACTIONS(7210), - [anon_sym__Nonnull] = ACTIONS(7210), - [anon_sym__Nullable_result] = ACTIONS(7210), - [anon_sym__Null_unspecified] = ACTIONS(7210), - [anon_sym___autoreleasing] = ACTIONS(7210), - [anon_sym___nullable] = ACTIONS(7210), - [anon_sym___nonnull] = ACTIONS(7210), - [anon_sym___strong] = ACTIONS(7210), - [anon_sym___weak] = ACTIONS(7210), - [anon_sym___bridge] = ACTIONS(7210), - [anon_sym___bridge_transfer] = ACTIONS(7210), - [anon_sym___bridge_retained] = ACTIONS(7210), - [anon_sym___unsafe_unretained] = ACTIONS(7210), - [anon_sym___block] = ACTIONS(7210), - [anon_sym___kindof] = ACTIONS(7210), - [anon_sym___unused] = ACTIONS(7210), - [anon_sym__Complex] = ACTIONS(7210), - [anon_sym___complex] = ACTIONS(7210), - [anon_sym_IBOutlet] = ACTIONS(7210), - [anon_sym_IBInspectable] = ACTIONS(7210), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7210), - [anon_sym_COLON] = ACTIONS(7212), - [anon_sym_QMARK] = ACTIONS(7212), - [anon_sym_STAR_EQ] = ACTIONS(7212), - [anon_sym_SLASH_EQ] = ACTIONS(7212), - [anon_sym_PERCENT_EQ] = ACTIONS(7212), - [anon_sym_PLUS_EQ] = ACTIONS(7212), - [anon_sym_DASH_EQ] = ACTIONS(7212), - [anon_sym_LT_LT_EQ] = ACTIONS(7212), - [anon_sym_GT_GT_EQ] = ACTIONS(7212), - [anon_sym_AMP_EQ] = ACTIONS(7212), - [anon_sym_CARET_EQ] = ACTIONS(7212), - [anon_sym_PIPE_EQ] = ACTIONS(7212), - [anon_sym_DASH_DASH] = ACTIONS(7212), - [anon_sym_PLUS_PLUS] = ACTIONS(7212), - [anon_sym_DOT] = ACTIONS(7212), - [anon_sym_DASH_GT] = ACTIONS(7212), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7210), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7210), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7210), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7210), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7210), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7210), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7210), - [anon_sym_NS_AVAILABLE] = ACTIONS(7210), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7210), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7210), - [anon_sym_API_AVAILABLE] = ACTIONS(7210), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7210), - [anon_sym_API_DEPRECATED] = ACTIONS(7210), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7210), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7210), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7210), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7210), - [anon_sym___deprecated_msg] = ACTIONS(7210), - [anon_sym___deprecated_enum_msg] = ACTIONS(7210), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7210), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7210), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7210), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7210), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7210), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7210), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3070] = { - [sym_identifier] = ACTIONS(7214), - [aux_sym_preproc_def_token1] = ACTIONS(7216), - [anon_sym_DASH] = ACTIONS(7216), - [anon_sym_PLUS] = ACTIONS(7216), - [anon_sym_typedef] = ACTIONS(7214), - [anon_sym_extern] = ACTIONS(7214), - [anon_sym___attribute] = ACTIONS(7214), - [anon_sym___attribute__] = ACTIONS(7214), - [anon_sym___declspec] = ACTIONS(7214), - [anon_sym___cdecl] = ACTIONS(7214), - [anon_sym___clrcall] = ACTIONS(7214), - [anon_sym___stdcall] = ACTIONS(7214), - [anon_sym___fastcall] = ACTIONS(7214), - [anon_sym___thiscall] = ACTIONS(7214), - [anon_sym___vectorcall] = ACTIONS(7214), - [anon_sym_static] = ACTIONS(7214), - [anon_sym_auto] = ACTIONS(7214), - [anon_sym_register] = ACTIONS(7214), - [anon_sym_inline] = ACTIONS(7214), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7214), - [anon_sym_const] = ACTIONS(7214), - [anon_sym_volatile] = ACTIONS(7214), - [anon_sym_restrict] = ACTIONS(7214), - [anon_sym__Atomic] = ACTIONS(7214), - [anon_sym_in] = ACTIONS(7214), - [anon_sym_out] = ACTIONS(7214), - [anon_sym_inout] = ACTIONS(7214), - [anon_sym_bycopy] = ACTIONS(7214), - [anon_sym_byref] = ACTIONS(7214), - [anon_sym_oneway] = ACTIONS(7214), - [anon_sym__Nullable] = ACTIONS(7214), - [anon_sym__Nonnull] = ACTIONS(7214), - [anon_sym__Nullable_result] = ACTIONS(7214), - [anon_sym__Null_unspecified] = ACTIONS(7214), - [anon_sym___autoreleasing] = ACTIONS(7214), - [anon_sym___nullable] = ACTIONS(7214), - [anon_sym___nonnull] = ACTIONS(7214), - [anon_sym___strong] = ACTIONS(7214), - [anon_sym___weak] = ACTIONS(7214), - [anon_sym___bridge] = ACTIONS(7214), - [anon_sym___bridge_transfer] = ACTIONS(7214), - [anon_sym___bridge_retained] = ACTIONS(7214), - [anon_sym___unsafe_unretained] = ACTIONS(7214), - [anon_sym___block] = ACTIONS(7214), - [anon_sym___kindof] = ACTIONS(7214), - [anon_sym___unused] = ACTIONS(7214), - [anon_sym__Complex] = ACTIONS(7214), - [anon_sym___complex] = ACTIONS(7214), - [anon_sym_IBOutlet] = ACTIONS(7214), - [anon_sym_IBInspectable] = ACTIONS(7214), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7214), - [anon_sym_signed] = ACTIONS(7214), - [anon_sym_unsigned] = ACTIONS(7214), - [anon_sym_long] = ACTIONS(7214), - [anon_sym_short] = ACTIONS(7214), - [sym_primitive_type] = ACTIONS(7214), - [anon_sym_enum] = ACTIONS(7214), - [anon_sym_NS_ENUM] = ACTIONS(7214), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7214), - [anon_sym_NS_OPTIONS] = ACTIONS(7214), - [anon_sym_struct] = ACTIONS(7214), - [anon_sym_union] = ACTIONS(7214), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7214), - [anon_sym_ATend] = ACTIONS(7216), - [sym_method_attribute_specifier] = ACTIONS(7214), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7214), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7214), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7214), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7214), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7214), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7214), - [anon_sym_NS_AVAILABLE] = ACTIONS(7214), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7214), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7214), - [anon_sym_API_AVAILABLE] = ACTIONS(7214), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7214), - [anon_sym_API_DEPRECATED] = ACTIONS(7214), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7214), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7214), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7214), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7214), - [anon_sym___deprecated_msg] = ACTIONS(7214), - [anon_sym___deprecated_enum_msg] = ACTIONS(7214), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7214), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7214), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7214), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7214), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7214), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7214), - [anon_sym_ATsynthesize] = ACTIONS(7216), - [anon_sym_ATdynamic] = ACTIONS(7216), - [anon_sym_typeof] = ACTIONS(7214), - [anon_sym___typeof] = ACTIONS(7214), - [anon_sym___typeof__] = ACTIONS(7214), - [sym_id] = ACTIONS(7214), - [sym_instancetype] = ACTIONS(7214), - [sym_Class] = ACTIONS(7214), - [sym_SEL] = ACTIONS(7214), - [sym_IMP] = ACTIONS(7214), - [sym_BOOL] = ACTIONS(7214), - [sym_auto] = ACTIONS(7214), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3071] = { - [sym_identifier] = ACTIONS(7218), - [anon_sym_COMMA] = ACTIONS(7220), - [anon_sym_RPAREN] = ACTIONS(7220), - [anon_sym_LPAREN2] = ACTIONS(7220), - [anon_sym_DASH] = ACTIONS(7218), - [anon_sym_PLUS] = ACTIONS(7218), - [anon_sym_STAR] = ACTIONS(7218), - [anon_sym_SLASH] = ACTIONS(7218), - [anon_sym_PERCENT] = ACTIONS(7218), - [anon_sym_PIPE_PIPE] = ACTIONS(7220), - [anon_sym_AMP_AMP] = ACTIONS(7220), - [anon_sym_PIPE] = ACTIONS(7218), - [anon_sym_CARET] = ACTIONS(7218), - [anon_sym_AMP] = ACTIONS(7218), - [anon_sym_EQ_EQ] = ACTIONS(7220), - [anon_sym_BANG_EQ] = ACTIONS(7220), - [anon_sym_GT] = ACTIONS(7218), - [anon_sym_GT_EQ] = ACTIONS(7220), - [anon_sym_LT_EQ] = ACTIONS(7220), - [anon_sym_LT] = ACTIONS(7218), - [anon_sym_LT_LT] = ACTIONS(7218), - [anon_sym_GT_GT] = ACTIONS(7218), - [anon_sym_SEMI] = ACTIONS(7220), - [anon_sym___attribute] = ACTIONS(7218), - [anon_sym___attribute__] = ACTIONS(7218), - [anon_sym_RBRACE] = ACTIONS(7220), - [anon_sym_LBRACK] = ACTIONS(7220), - [anon_sym_RBRACK] = ACTIONS(7220), - [anon_sym_EQ] = ACTIONS(7218), - [anon_sym_const] = ACTIONS(7218), - [anon_sym_volatile] = ACTIONS(7218), - [anon_sym_restrict] = ACTIONS(7218), - [anon_sym__Atomic] = ACTIONS(7218), - [anon_sym_in] = ACTIONS(7218), - [anon_sym_out] = ACTIONS(7218), - [anon_sym_inout] = ACTIONS(7218), - [anon_sym_bycopy] = ACTIONS(7218), - [anon_sym_byref] = ACTIONS(7218), - [anon_sym_oneway] = ACTIONS(7218), - [anon_sym__Nullable] = ACTIONS(7218), - [anon_sym__Nonnull] = ACTIONS(7218), - [anon_sym__Nullable_result] = ACTIONS(7218), - [anon_sym__Null_unspecified] = ACTIONS(7218), - [anon_sym___autoreleasing] = ACTIONS(7218), - [anon_sym___nullable] = ACTIONS(7218), - [anon_sym___nonnull] = ACTIONS(7218), - [anon_sym___strong] = ACTIONS(7218), - [anon_sym___weak] = ACTIONS(7218), - [anon_sym___bridge] = ACTIONS(7218), - [anon_sym___bridge_transfer] = ACTIONS(7218), - [anon_sym___bridge_retained] = ACTIONS(7218), - [anon_sym___unsafe_unretained] = ACTIONS(7218), - [anon_sym___block] = ACTIONS(7218), - [anon_sym___kindof] = ACTIONS(7218), - [anon_sym___unused] = ACTIONS(7218), - [anon_sym__Complex] = ACTIONS(7218), - [anon_sym___complex] = ACTIONS(7218), - [anon_sym_IBOutlet] = ACTIONS(7218), - [anon_sym_IBInspectable] = ACTIONS(7218), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7218), - [anon_sym_COLON] = ACTIONS(7220), - [anon_sym_QMARK] = ACTIONS(7220), - [anon_sym_STAR_EQ] = ACTIONS(7220), - [anon_sym_SLASH_EQ] = ACTIONS(7220), - [anon_sym_PERCENT_EQ] = ACTIONS(7220), - [anon_sym_PLUS_EQ] = ACTIONS(7220), - [anon_sym_DASH_EQ] = ACTIONS(7220), - [anon_sym_LT_LT_EQ] = ACTIONS(7220), - [anon_sym_GT_GT_EQ] = ACTIONS(7220), - [anon_sym_AMP_EQ] = ACTIONS(7220), - [anon_sym_CARET_EQ] = ACTIONS(7220), - [anon_sym_PIPE_EQ] = ACTIONS(7220), - [anon_sym_DASH_DASH] = ACTIONS(7220), - [anon_sym_PLUS_PLUS] = ACTIONS(7220), - [anon_sym_DOT] = ACTIONS(7220), - [anon_sym_DASH_GT] = ACTIONS(7220), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7218), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7218), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7218), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7218), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7218), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7218), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7218), - [anon_sym_NS_AVAILABLE] = ACTIONS(7218), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7218), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7218), - [anon_sym_API_AVAILABLE] = ACTIONS(7218), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7218), - [anon_sym_API_DEPRECATED] = ACTIONS(7218), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7218), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7218), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7218), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7218), - [anon_sym___deprecated_msg] = ACTIONS(7218), - [anon_sym___deprecated_enum_msg] = ACTIONS(7218), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7218), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7218), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7218), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7218), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7218), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7218), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3072] = { - [sym_identifier] = ACTIONS(7222), - [anon_sym_COMMA] = ACTIONS(7224), - [anon_sym_RPAREN] = ACTIONS(7224), - [anon_sym_LPAREN2] = ACTIONS(7224), - [anon_sym_DASH] = ACTIONS(7222), - [anon_sym_PLUS] = ACTIONS(7222), - [anon_sym_STAR] = ACTIONS(7222), - [anon_sym_SLASH] = ACTIONS(7222), - [anon_sym_PERCENT] = ACTIONS(7222), - [anon_sym_PIPE_PIPE] = ACTIONS(7224), - [anon_sym_AMP_AMP] = ACTIONS(7224), - [anon_sym_PIPE] = ACTIONS(7222), - [anon_sym_CARET] = ACTIONS(7222), - [anon_sym_AMP] = ACTIONS(7222), - [anon_sym_EQ_EQ] = ACTIONS(7224), - [anon_sym_BANG_EQ] = ACTIONS(7224), - [anon_sym_GT] = ACTIONS(7222), - [anon_sym_GT_EQ] = ACTIONS(7224), - [anon_sym_LT_EQ] = ACTIONS(7224), - [anon_sym_LT] = ACTIONS(7222), - [anon_sym_LT_LT] = ACTIONS(7222), - [anon_sym_GT_GT] = ACTIONS(7222), - [anon_sym_SEMI] = ACTIONS(7224), - [anon_sym___attribute] = ACTIONS(7222), - [anon_sym___attribute__] = ACTIONS(7222), - [anon_sym_RBRACE] = ACTIONS(7224), - [anon_sym_LBRACK] = ACTIONS(7224), - [anon_sym_RBRACK] = ACTIONS(7224), - [anon_sym_EQ] = ACTIONS(7222), - [anon_sym_const] = ACTIONS(7222), - [anon_sym_volatile] = ACTIONS(7222), - [anon_sym_restrict] = ACTIONS(7222), - [anon_sym__Atomic] = ACTIONS(7222), - [anon_sym_in] = ACTIONS(7222), - [anon_sym_out] = ACTIONS(7222), - [anon_sym_inout] = ACTIONS(7222), - [anon_sym_bycopy] = ACTIONS(7222), - [anon_sym_byref] = ACTIONS(7222), - [anon_sym_oneway] = ACTIONS(7222), - [anon_sym__Nullable] = ACTIONS(7222), - [anon_sym__Nonnull] = ACTIONS(7222), - [anon_sym__Nullable_result] = ACTIONS(7222), - [anon_sym__Null_unspecified] = ACTIONS(7222), - [anon_sym___autoreleasing] = ACTIONS(7222), - [anon_sym___nullable] = ACTIONS(7222), - [anon_sym___nonnull] = ACTIONS(7222), - [anon_sym___strong] = ACTIONS(7222), - [anon_sym___weak] = ACTIONS(7222), - [anon_sym___bridge] = ACTIONS(7222), - [anon_sym___bridge_transfer] = ACTIONS(7222), - [anon_sym___bridge_retained] = ACTIONS(7222), - [anon_sym___unsafe_unretained] = ACTIONS(7222), - [anon_sym___block] = ACTIONS(7222), - [anon_sym___kindof] = ACTIONS(7222), - [anon_sym___unused] = ACTIONS(7222), - [anon_sym__Complex] = ACTIONS(7222), - [anon_sym___complex] = ACTIONS(7222), - [anon_sym_IBOutlet] = ACTIONS(7222), - [anon_sym_IBInspectable] = ACTIONS(7222), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7222), - [anon_sym_COLON] = ACTIONS(7224), - [anon_sym_QMARK] = ACTIONS(7224), - [anon_sym_STAR_EQ] = ACTIONS(7224), - [anon_sym_SLASH_EQ] = ACTIONS(7224), - [anon_sym_PERCENT_EQ] = ACTIONS(7224), - [anon_sym_PLUS_EQ] = ACTIONS(7224), - [anon_sym_DASH_EQ] = ACTIONS(7224), - [anon_sym_LT_LT_EQ] = ACTIONS(7224), - [anon_sym_GT_GT_EQ] = ACTIONS(7224), - [anon_sym_AMP_EQ] = ACTIONS(7224), - [anon_sym_CARET_EQ] = ACTIONS(7224), - [anon_sym_PIPE_EQ] = ACTIONS(7224), - [anon_sym_DASH_DASH] = ACTIONS(7224), - [anon_sym_PLUS_PLUS] = ACTIONS(7224), - [anon_sym_DOT] = ACTIONS(7224), - [anon_sym_DASH_GT] = ACTIONS(7224), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7222), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7222), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7222), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7222), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7222), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7222), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7222), - [anon_sym_NS_AVAILABLE] = ACTIONS(7222), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7222), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7222), - [anon_sym_API_AVAILABLE] = ACTIONS(7222), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7222), - [anon_sym_API_DEPRECATED] = ACTIONS(7222), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7222), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7222), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7222), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7222), - [anon_sym___deprecated_msg] = ACTIONS(7222), - [anon_sym___deprecated_enum_msg] = ACTIONS(7222), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7222), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7222), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7222), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7222), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7222), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7222), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3073] = { - [sym_identifier] = ACTIONS(7226), - [anon_sym_COMMA] = ACTIONS(7228), - [anon_sym_RPAREN] = ACTIONS(7228), - [anon_sym_LPAREN2] = ACTIONS(7228), - [anon_sym_DASH] = ACTIONS(7226), - [anon_sym_PLUS] = ACTIONS(7226), - [anon_sym_STAR] = ACTIONS(7226), - [anon_sym_SLASH] = ACTIONS(7226), - [anon_sym_PERCENT] = ACTIONS(7226), - [anon_sym_PIPE_PIPE] = ACTIONS(7228), - [anon_sym_AMP_AMP] = ACTIONS(7228), - [anon_sym_PIPE] = ACTIONS(7226), - [anon_sym_CARET] = ACTIONS(7226), - [anon_sym_AMP] = ACTIONS(7226), - [anon_sym_EQ_EQ] = ACTIONS(7228), - [anon_sym_BANG_EQ] = ACTIONS(7228), - [anon_sym_GT] = ACTIONS(7226), - [anon_sym_GT_EQ] = ACTIONS(7228), - [anon_sym_LT_EQ] = ACTIONS(7228), - [anon_sym_LT] = ACTIONS(7226), - [anon_sym_LT_LT] = ACTIONS(7226), - [anon_sym_GT_GT] = ACTIONS(7226), - [anon_sym_SEMI] = ACTIONS(7228), - [anon_sym___attribute] = ACTIONS(7226), - [anon_sym___attribute__] = ACTIONS(7226), - [anon_sym_RBRACE] = ACTIONS(7228), - [anon_sym_LBRACK] = ACTIONS(7228), - [anon_sym_RBRACK] = ACTIONS(7228), - [anon_sym_EQ] = ACTIONS(7226), - [anon_sym_const] = ACTIONS(7226), - [anon_sym_volatile] = ACTIONS(7226), - [anon_sym_restrict] = ACTIONS(7226), - [anon_sym__Atomic] = ACTIONS(7226), - [anon_sym_in] = ACTIONS(7226), - [anon_sym_out] = ACTIONS(7226), - [anon_sym_inout] = ACTIONS(7226), - [anon_sym_bycopy] = ACTIONS(7226), - [anon_sym_byref] = ACTIONS(7226), - [anon_sym_oneway] = ACTIONS(7226), - [anon_sym__Nullable] = ACTIONS(7226), - [anon_sym__Nonnull] = ACTIONS(7226), - [anon_sym__Nullable_result] = ACTIONS(7226), - [anon_sym__Null_unspecified] = ACTIONS(7226), - [anon_sym___autoreleasing] = ACTIONS(7226), - [anon_sym___nullable] = ACTIONS(7226), - [anon_sym___nonnull] = ACTIONS(7226), - [anon_sym___strong] = ACTIONS(7226), - [anon_sym___weak] = ACTIONS(7226), - [anon_sym___bridge] = ACTIONS(7226), - [anon_sym___bridge_transfer] = ACTIONS(7226), - [anon_sym___bridge_retained] = ACTIONS(7226), - [anon_sym___unsafe_unretained] = ACTIONS(7226), - [anon_sym___block] = ACTIONS(7226), - [anon_sym___kindof] = ACTIONS(7226), - [anon_sym___unused] = ACTIONS(7226), - [anon_sym__Complex] = ACTIONS(7226), - [anon_sym___complex] = ACTIONS(7226), - [anon_sym_IBOutlet] = ACTIONS(7226), - [anon_sym_IBInspectable] = ACTIONS(7226), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7226), - [anon_sym_COLON] = ACTIONS(7228), - [anon_sym_QMARK] = ACTIONS(7228), - [anon_sym_STAR_EQ] = ACTIONS(7228), - [anon_sym_SLASH_EQ] = ACTIONS(7228), - [anon_sym_PERCENT_EQ] = ACTIONS(7228), - [anon_sym_PLUS_EQ] = ACTIONS(7228), - [anon_sym_DASH_EQ] = ACTIONS(7228), - [anon_sym_LT_LT_EQ] = ACTIONS(7228), - [anon_sym_GT_GT_EQ] = ACTIONS(7228), - [anon_sym_AMP_EQ] = ACTIONS(7228), - [anon_sym_CARET_EQ] = ACTIONS(7228), - [anon_sym_PIPE_EQ] = ACTIONS(7228), - [anon_sym_DASH_DASH] = ACTIONS(7228), - [anon_sym_PLUS_PLUS] = ACTIONS(7228), - [anon_sym_DOT] = ACTIONS(7228), - [anon_sym_DASH_GT] = ACTIONS(7228), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7226), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7226), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7226), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7226), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7226), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7226), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7226), - [anon_sym_NS_AVAILABLE] = ACTIONS(7226), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7226), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7226), - [anon_sym_API_AVAILABLE] = ACTIONS(7226), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7226), - [anon_sym_API_DEPRECATED] = ACTIONS(7226), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7226), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7226), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7226), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7226), - [anon_sym___deprecated_msg] = ACTIONS(7226), - [anon_sym___deprecated_enum_msg] = ACTIONS(7226), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7226), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7226), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7226), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7226), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7226), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7226), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3074] = { - [sym_identifier] = ACTIONS(7230), - [aux_sym_preproc_def_token1] = ACTIONS(7232), - [anon_sym_DASH] = ACTIONS(7232), - [anon_sym_PLUS] = ACTIONS(7232), - [anon_sym_typedef] = ACTIONS(7230), - [anon_sym_extern] = ACTIONS(7230), - [anon_sym___attribute] = ACTIONS(7230), - [anon_sym___attribute__] = ACTIONS(7230), - [anon_sym___declspec] = ACTIONS(7230), - [anon_sym___cdecl] = ACTIONS(7230), - [anon_sym___clrcall] = ACTIONS(7230), - [anon_sym___stdcall] = ACTIONS(7230), - [anon_sym___fastcall] = ACTIONS(7230), - [anon_sym___thiscall] = ACTIONS(7230), - [anon_sym___vectorcall] = ACTIONS(7230), - [anon_sym_static] = ACTIONS(7230), - [anon_sym_auto] = ACTIONS(7230), - [anon_sym_register] = ACTIONS(7230), - [anon_sym_inline] = ACTIONS(7230), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7230), - [anon_sym_const] = ACTIONS(7230), - [anon_sym_volatile] = ACTIONS(7230), - [anon_sym_restrict] = ACTIONS(7230), - [anon_sym__Atomic] = ACTIONS(7230), - [anon_sym_in] = ACTIONS(7230), - [anon_sym_out] = ACTIONS(7230), - [anon_sym_inout] = ACTIONS(7230), - [anon_sym_bycopy] = ACTIONS(7230), - [anon_sym_byref] = ACTIONS(7230), - [anon_sym_oneway] = ACTIONS(7230), - [anon_sym__Nullable] = ACTIONS(7230), - [anon_sym__Nonnull] = ACTIONS(7230), - [anon_sym__Nullable_result] = ACTIONS(7230), - [anon_sym__Null_unspecified] = ACTIONS(7230), - [anon_sym___autoreleasing] = ACTIONS(7230), - [anon_sym___nullable] = ACTIONS(7230), - [anon_sym___nonnull] = ACTIONS(7230), - [anon_sym___strong] = ACTIONS(7230), - [anon_sym___weak] = ACTIONS(7230), - [anon_sym___bridge] = ACTIONS(7230), - [anon_sym___bridge_transfer] = ACTIONS(7230), - [anon_sym___bridge_retained] = ACTIONS(7230), - [anon_sym___unsafe_unretained] = ACTIONS(7230), - [anon_sym___block] = ACTIONS(7230), - [anon_sym___kindof] = ACTIONS(7230), - [anon_sym___unused] = ACTIONS(7230), - [anon_sym__Complex] = ACTIONS(7230), - [anon_sym___complex] = ACTIONS(7230), - [anon_sym_IBOutlet] = ACTIONS(7230), - [anon_sym_IBInspectable] = ACTIONS(7230), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7230), - [anon_sym_signed] = ACTIONS(7230), - [anon_sym_unsigned] = ACTIONS(7230), - [anon_sym_long] = ACTIONS(7230), - [anon_sym_short] = ACTIONS(7230), - [sym_primitive_type] = ACTIONS(7230), - [anon_sym_enum] = ACTIONS(7230), - [anon_sym_NS_ENUM] = ACTIONS(7230), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7230), - [anon_sym_NS_OPTIONS] = ACTIONS(7230), - [anon_sym_struct] = ACTIONS(7230), - [anon_sym_union] = ACTIONS(7230), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7230), - [anon_sym_ATend] = ACTIONS(7232), - [sym_method_attribute_specifier] = ACTIONS(7230), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7230), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7230), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7230), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7230), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7230), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7230), - [anon_sym_NS_AVAILABLE] = ACTIONS(7230), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7230), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7230), - [anon_sym_API_AVAILABLE] = ACTIONS(7230), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7230), - [anon_sym_API_DEPRECATED] = ACTIONS(7230), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7230), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7230), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7230), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7230), - [anon_sym___deprecated_msg] = ACTIONS(7230), - [anon_sym___deprecated_enum_msg] = ACTIONS(7230), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7230), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7230), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7230), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7230), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7230), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7230), - [anon_sym_ATsynthesize] = ACTIONS(7232), - [anon_sym_ATdynamic] = ACTIONS(7232), - [anon_sym_typeof] = ACTIONS(7230), - [anon_sym___typeof] = ACTIONS(7230), - [anon_sym___typeof__] = ACTIONS(7230), - [sym_id] = ACTIONS(7230), - [sym_instancetype] = ACTIONS(7230), - [sym_Class] = ACTIONS(7230), - [sym_SEL] = ACTIONS(7230), - [sym_IMP] = ACTIONS(7230), - [sym_BOOL] = ACTIONS(7230), - [sym_auto] = ACTIONS(7230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3075] = { - [sym_identifier] = ACTIONS(7234), - [anon_sym_COMMA] = ACTIONS(7236), - [anon_sym_RPAREN] = ACTIONS(7236), - [anon_sym_LPAREN2] = ACTIONS(7236), - [anon_sym_DASH] = ACTIONS(7234), - [anon_sym_PLUS] = ACTIONS(7234), - [anon_sym_STAR] = ACTIONS(7234), - [anon_sym_SLASH] = ACTIONS(7234), - [anon_sym_PERCENT] = ACTIONS(7234), - [anon_sym_PIPE_PIPE] = ACTIONS(7236), - [anon_sym_AMP_AMP] = ACTIONS(7236), - [anon_sym_PIPE] = ACTIONS(7234), - [anon_sym_CARET] = ACTIONS(7234), - [anon_sym_AMP] = ACTIONS(7234), - [anon_sym_EQ_EQ] = ACTIONS(7236), - [anon_sym_BANG_EQ] = ACTIONS(7236), - [anon_sym_GT] = ACTIONS(7234), - [anon_sym_GT_EQ] = ACTIONS(7236), - [anon_sym_LT_EQ] = ACTIONS(7236), - [anon_sym_LT] = ACTIONS(7234), - [anon_sym_LT_LT] = ACTIONS(7234), - [anon_sym_GT_GT] = ACTIONS(7234), - [anon_sym_SEMI] = ACTIONS(7236), - [anon_sym___attribute] = ACTIONS(7234), - [anon_sym___attribute__] = ACTIONS(7234), - [anon_sym_RBRACE] = ACTIONS(7236), - [anon_sym_LBRACK] = ACTIONS(7236), - [anon_sym_RBRACK] = ACTIONS(7236), - [anon_sym_EQ] = ACTIONS(7234), - [anon_sym_const] = ACTIONS(7234), - [anon_sym_volatile] = ACTIONS(7234), - [anon_sym_restrict] = ACTIONS(7234), - [anon_sym__Atomic] = ACTIONS(7234), - [anon_sym_in] = ACTIONS(7234), - [anon_sym_out] = ACTIONS(7234), - [anon_sym_inout] = ACTIONS(7234), - [anon_sym_bycopy] = ACTIONS(7234), - [anon_sym_byref] = ACTIONS(7234), - [anon_sym_oneway] = ACTIONS(7234), - [anon_sym__Nullable] = ACTIONS(7234), - [anon_sym__Nonnull] = ACTIONS(7234), - [anon_sym__Nullable_result] = ACTIONS(7234), - [anon_sym__Null_unspecified] = ACTIONS(7234), - [anon_sym___autoreleasing] = ACTIONS(7234), - [anon_sym___nullable] = ACTIONS(7234), - [anon_sym___nonnull] = ACTIONS(7234), - [anon_sym___strong] = ACTIONS(7234), - [anon_sym___weak] = ACTIONS(7234), - [anon_sym___bridge] = ACTIONS(7234), - [anon_sym___bridge_transfer] = ACTIONS(7234), - [anon_sym___bridge_retained] = ACTIONS(7234), - [anon_sym___unsafe_unretained] = ACTIONS(7234), - [anon_sym___block] = ACTIONS(7234), - [anon_sym___kindof] = ACTIONS(7234), - [anon_sym___unused] = ACTIONS(7234), - [anon_sym__Complex] = ACTIONS(7234), - [anon_sym___complex] = ACTIONS(7234), - [anon_sym_IBOutlet] = ACTIONS(7234), - [anon_sym_IBInspectable] = ACTIONS(7234), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7234), - [anon_sym_COLON] = ACTIONS(7236), - [anon_sym_QMARK] = ACTIONS(7236), - [anon_sym_STAR_EQ] = ACTIONS(7236), - [anon_sym_SLASH_EQ] = ACTIONS(7236), - [anon_sym_PERCENT_EQ] = ACTIONS(7236), - [anon_sym_PLUS_EQ] = ACTIONS(7236), - [anon_sym_DASH_EQ] = ACTIONS(7236), - [anon_sym_LT_LT_EQ] = ACTIONS(7236), - [anon_sym_GT_GT_EQ] = ACTIONS(7236), - [anon_sym_AMP_EQ] = ACTIONS(7236), - [anon_sym_CARET_EQ] = ACTIONS(7236), - [anon_sym_PIPE_EQ] = ACTIONS(7236), - [anon_sym_DASH_DASH] = ACTIONS(7236), - [anon_sym_PLUS_PLUS] = ACTIONS(7236), - [anon_sym_DOT] = ACTIONS(7236), - [anon_sym_DASH_GT] = ACTIONS(7236), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7234), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7234), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7234), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7234), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7234), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7234), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7234), - [anon_sym_NS_AVAILABLE] = ACTIONS(7234), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7234), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7234), - [anon_sym_API_AVAILABLE] = ACTIONS(7234), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7234), - [anon_sym_API_DEPRECATED] = ACTIONS(7234), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7234), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7234), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7234), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7234), - [anon_sym___deprecated_msg] = ACTIONS(7234), - [anon_sym___deprecated_enum_msg] = ACTIONS(7234), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7234), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7234), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7234), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7234), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7234), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7234), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3076] = { - [sym_identifier] = ACTIONS(7238), - [aux_sym_preproc_def_token1] = ACTIONS(7240), - [anon_sym_DASH] = ACTIONS(7240), - [anon_sym_PLUS] = ACTIONS(7240), - [anon_sym_typedef] = ACTIONS(7238), - [anon_sym_extern] = ACTIONS(7238), - [anon_sym___attribute] = ACTIONS(7238), - [anon_sym___attribute__] = ACTIONS(7238), - [anon_sym___declspec] = ACTIONS(7238), - [anon_sym___cdecl] = ACTIONS(7238), - [anon_sym___clrcall] = ACTIONS(7238), - [anon_sym___stdcall] = ACTIONS(7238), - [anon_sym___fastcall] = ACTIONS(7238), - [anon_sym___thiscall] = ACTIONS(7238), - [anon_sym___vectorcall] = ACTIONS(7238), - [anon_sym_static] = ACTIONS(7238), - [anon_sym_auto] = ACTIONS(7238), - [anon_sym_register] = ACTIONS(7238), - [anon_sym_inline] = ACTIONS(7238), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7238), - [anon_sym_const] = ACTIONS(7238), - [anon_sym_volatile] = ACTIONS(7238), - [anon_sym_restrict] = ACTIONS(7238), - [anon_sym__Atomic] = ACTIONS(7238), - [anon_sym_in] = ACTIONS(7238), - [anon_sym_out] = ACTIONS(7238), - [anon_sym_inout] = ACTIONS(7238), - [anon_sym_bycopy] = ACTIONS(7238), - [anon_sym_byref] = ACTIONS(7238), - [anon_sym_oneway] = ACTIONS(7238), - [anon_sym__Nullable] = ACTIONS(7238), - [anon_sym__Nonnull] = ACTIONS(7238), - [anon_sym__Nullable_result] = ACTIONS(7238), - [anon_sym__Null_unspecified] = ACTIONS(7238), - [anon_sym___autoreleasing] = ACTIONS(7238), - [anon_sym___nullable] = ACTIONS(7238), - [anon_sym___nonnull] = ACTIONS(7238), - [anon_sym___strong] = ACTIONS(7238), - [anon_sym___weak] = ACTIONS(7238), - [anon_sym___bridge] = ACTIONS(7238), - [anon_sym___bridge_transfer] = ACTIONS(7238), - [anon_sym___bridge_retained] = ACTIONS(7238), - [anon_sym___unsafe_unretained] = ACTIONS(7238), - [anon_sym___block] = ACTIONS(7238), - [anon_sym___kindof] = ACTIONS(7238), - [anon_sym___unused] = ACTIONS(7238), - [anon_sym__Complex] = ACTIONS(7238), - [anon_sym___complex] = ACTIONS(7238), - [anon_sym_IBOutlet] = ACTIONS(7238), - [anon_sym_IBInspectable] = ACTIONS(7238), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7238), - [anon_sym_signed] = ACTIONS(7238), - [anon_sym_unsigned] = ACTIONS(7238), - [anon_sym_long] = ACTIONS(7238), - [anon_sym_short] = ACTIONS(7238), - [sym_primitive_type] = ACTIONS(7238), - [anon_sym_enum] = ACTIONS(7238), - [anon_sym_NS_ENUM] = ACTIONS(7238), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7238), - [anon_sym_NS_OPTIONS] = ACTIONS(7238), - [anon_sym_struct] = ACTIONS(7238), - [anon_sym_union] = ACTIONS(7238), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7238), - [anon_sym_ATend] = ACTIONS(7240), - [sym_method_attribute_specifier] = ACTIONS(7238), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7238), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7238), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7238), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7238), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7238), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7238), - [anon_sym_NS_AVAILABLE] = ACTIONS(7238), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7238), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7238), - [anon_sym_API_AVAILABLE] = ACTIONS(7238), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7238), - [anon_sym_API_DEPRECATED] = ACTIONS(7238), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7238), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7238), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7238), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7238), - [anon_sym___deprecated_msg] = ACTIONS(7238), - [anon_sym___deprecated_enum_msg] = ACTIONS(7238), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7238), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7238), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7238), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7238), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7238), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7238), - [anon_sym_ATsynthesize] = ACTIONS(7240), - [anon_sym_ATdynamic] = ACTIONS(7240), - [anon_sym_typeof] = ACTIONS(7238), - [anon_sym___typeof] = ACTIONS(7238), - [anon_sym___typeof__] = ACTIONS(7238), - [sym_id] = ACTIONS(7238), - [sym_instancetype] = ACTIONS(7238), - [sym_Class] = ACTIONS(7238), - [sym_SEL] = ACTIONS(7238), - [sym_IMP] = ACTIONS(7238), - [sym_BOOL] = ACTIONS(7238), - [sym_auto] = ACTIONS(7238), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3077] = { - [sym_identifier] = ACTIONS(7242), - [anon_sym_COMMA] = ACTIONS(7244), - [anon_sym_RPAREN] = ACTIONS(7244), - [anon_sym_LPAREN2] = ACTIONS(7244), - [anon_sym_DASH] = ACTIONS(7242), - [anon_sym_PLUS] = ACTIONS(7242), - [anon_sym_STAR] = ACTIONS(7242), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7242), - [anon_sym_PIPE_PIPE] = ACTIONS(7244), - [anon_sym_AMP_AMP] = ACTIONS(7244), - [anon_sym_PIPE] = ACTIONS(7242), - [anon_sym_CARET] = ACTIONS(7242), - [anon_sym_AMP] = ACTIONS(7242), - [anon_sym_EQ_EQ] = ACTIONS(7244), - [anon_sym_BANG_EQ] = ACTIONS(7244), - [anon_sym_GT] = ACTIONS(7242), - [anon_sym_GT_EQ] = ACTIONS(7244), - [anon_sym_LT_EQ] = ACTIONS(7244), - [anon_sym_LT] = ACTIONS(7242), - [anon_sym_LT_LT] = ACTIONS(7242), - [anon_sym_GT_GT] = ACTIONS(7242), - [anon_sym_SEMI] = ACTIONS(7244), - [anon_sym___attribute] = ACTIONS(7242), - [anon_sym___attribute__] = ACTIONS(7242), - [anon_sym_RBRACE] = ACTIONS(7244), - [anon_sym_LBRACK] = ACTIONS(7244), - [anon_sym_RBRACK] = ACTIONS(7244), - [anon_sym_EQ] = ACTIONS(7242), - [anon_sym_const] = ACTIONS(7242), - [anon_sym_volatile] = ACTIONS(7242), - [anon_sym_restrict] = ACTIONS(7242), - [anon_sym__Atomic] = ACTIONS(7242), - [anon_sym_in] = ACTIONS(7242), - [anon_sym_out] = ACTIONS(7242), - [anon_sym_inout] = ACTIONS(7242), - [anon_sym_bycopy] = ACTIONS(7242), - [anon_sym_byref] = ACTIONS(7242), - [anon_sym_oneway] = ACTIONS(7242), - [anon_sym__Nullable] = ACTIONS(7242), - [anon_sym__Nonnull] = ACTIONS(7242), - [anon_sym__Nullable_result] = ACTIONS(7242), - [anon_sym__Null_unspecified] = ACTIONS(7242), - [anon_sym___autoreleasing] = ACTIONS(7242), - [anon_sym___nullable] = ACTIONS(7242), - [anon_sym___nonnull] = ACTIONS(7242), - [anon_sym___strong] = ACTIONS(7242), - [anon_sym___weak] = ACTIONS(7242), - [anon_sym___bridge] = ACTIONS(7242), - [anon_sym___bridge_transfer] = ACTIONS(7242), - [anon_sym___bridge_retained] = ACTIONS(7242), - [anon_sym___unsafe_unretained] = ACTIONS(7242), - [anon_sym___block] = ACTIONS(7242), - [anon_sym___kindof] = ACTIONS(7242), - [anon_sym___unused] = ACTIONS(7242), - [anon_sym__Complex] = ACTIONS(7242), - [anon_sym___complex] = ACTIONS(7242), - [anon_sym_IBOutlet] = ACTIONS(7242), - [anon_sym_IBInspectable] = ACTIONS(7242), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7242), - [anon_sym_COLON] = ACTIONS(7244), - [anon_sym_QMARK] = ACTIONS(7244), - [anon_sym_STAR_EQ] = ACTIONS(7244), - [anon_sym_SLASH_EQ] = ACTIONS(7244), - [anon_sym_PERCENT_EQ] = ACTIONS(7244), - [anon_sym_PLUS_EQ] = ACTIONS(7244), - [anon_sym_DASH_EQ] = ACTIONS(7244), - [anon_sym_LT_LT_EQ] = ACTIONS(7244), - [anon_sym_GT_GT_EQ] = ACTIONS(7244), - [anon_sym_AMP_EQ] = ACTIONS(7244), - [anon_sym_CARET_EQ] = ACTIONS(7244), - [anon_sym_PIPE_EQ] = ACTIONS(7244), - [anon_sym_DASH_DASH] = ACTIONS(7244), - [anon_sym_PLUS_PLUS] = ACTIONS(7244), - [anon_sym_DOT] = ACTIONS(7244), - [anon_sym_DASH_GT] = ACTIONS(7244), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7242), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7242), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7242), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7242), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7242), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7242), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7242), - [anon_sym_NS_AVAILABLE] = ACTIONS(7242), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7242), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7242), - [anon_sym_API_AVAILABLE] = ACTIONS(7242), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7242), - [anon_sym_API_DEPRECATED] = ACTIONS(7242), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7242), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7242), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7242), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7242), - [anon_sym___deprecated_msg] = ACTIONS(7242), - [anon_sym___deprecated_enum_msg] = ACTIONS(7242), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7242), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7242), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7242), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7242), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7242), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7242), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3078] = { - [sym_identifier] = ACTIONS(7246), - [anon_sym_COMMA] = ACTIONS(7248), - [anon_sym_RPAREN] = ACTIONS(7248), - [anon_sym_LPAREN2] = ACTIONS(7248), - [anon_sym_DASH] = ACTIONS(7246), - [anon_sym_PLUS] = ACTIONS(7246), - [anon_sym_STAR] = ACTIONS(7246), - [anon_sym_SLASH] = ACTIONS(7246), - [anon_sym_PERCENT] = ACTIONS(7246), - [anon_sym_PIPE_PIPE] = ACTIONS(7248), - [anon_sym_AMP_AMP] = ACTIONS(7248), - [anon_sym_PIPE] = ACTIONS(7246), - [anon_sym_CARET] = ACTIONS(7246), - [anon_sym_AMP] = ACTIONS(7246), - [anon_sym_EQ_EQ] = ACTIONS(7248), - [anon_sym_BANG_EQ] = ACTIONS(7248), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_GT_EQ] = ACTIONS(7248), - [anon_sym_LT_EQ] = ACTIONS(7248), - [anon_sym_LT] = ACTIONS(7246), - [anon_sym_LT_LT] = ACTIONS(7246), - [anon_sym_GT_GT] = ACTIONS(7246), - [anon_sym_SEMI] = ACTIONS(7248), - [anon_sym___attribute] = ACTIONS(7246), - [anon_sym___attribute__] = ACTIONS(7246), - [anon_sym_RBRACE] = ACTIONS(7248), - [anon_sym_LBRACK] = ACTIONS(7248), - [anon_sym_RBRACK] = ACTIONS(7248), - [anon_sym_EQ] = ACTIONS(7246), - [anon_sym_const] = ACTIONS(7246), - [anon_sym_volatile] = ACTIONS(7246), - [anon_sym_restrict] = ACTIONS(7246), - [anon_sym__Atomic] = ACTIONS(7246), - [anon_sym_in] = ACTIONS(7246), - [anon_sym_out] = ACTIONS(7246), - [anon_sym_inout] = ACTIONS(7246), - [anon_sym_bycopy] = ACTIONS(7246), - [anon_sym_byref] = ACTIONS(7246), - [anon_sym_oneway] = ACTIONS(7246), - [anon_sym__Nullable] = ACTIONS(7246), - [anon_sym__Nonnull] = ACTIONS(7246), - [anon_sym__Nullable_result] = ACTIONS(7246), - [anon_sym__Null_unspecified] = ACTIONS(7246), - [anon_sym___autoreleasing] = ACTIONS(7246), - [anon_sym___nullable] = ACTIONS(7246), - [anon_sym___nonnull] = ACTIONS(7246), - [anon_sym___strong] = ACTIONS(7246), - [anon_sym___weak] = ACTIONS(7246), - [anon_sym___bridge] = ACTIONS(7246), - [anon_sym___bridge_transfer] = ACTIONS(7246), - [anon_sym___bridge_retained] = ACTIONS(7246), - [anon_sym___unsafe_unretained] = ACTIONS(7246), - [anon_sym___block] = ACTIONS(7246), - [anon_sym___kindof] = ACTIONS(7246), - [anon_sym___unused] = ACTIONS(7246), - [anon_sym__Complex] = ACTIONS(7246), - [anon_sym___complex] = ACTIONS(7246), - [anon_sym_IBOutlet] = ACTIONS(7246), - [anon_sym_IBInspectable] = ACTIONS(7246), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7246), - [anon_sym_COLON] = ACTIONS(7248), - [anon_sym_QMARK] = ACTIONS(7248), - [anon_sym_STAR_EQ] = ACTIONS(7248), - [anon_sym_SLASH_EQ] = ACTIONS(7248), - [anon_sym_PERCENT_EQ] = ACTIONS(7248), - [anon_sym_PLUS_EQ] = ACTIONS(7248), - [anon_sym_DASH_EQ] = ACTIONS(7248), - [anon_sym_LT_LT_EQ] = ACTIONS(7248), - [anon_sym_GT_GT_EQ] = ACTIONS(7248), - [anon_sym_AMP_EQ] = ACTIONS(7248), - [anon_sym_CARET_EQ] = ACTIONS(7248), - [anon_sym_PIPE_EQ] = ACTIONS(7248), - [anon_sym_DASH_DASH] = ACTIONS(7248), - [anon_sym_PLUS_PLUS] = ACTIONS(7248), - [anon_sym_DOT] = ACTIONS(7248), - [anon_sym_DASH_GT] = ACTIONS(7248), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7246), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7246), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7246), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7246), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7246), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7246), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7246), - [anon_sym_NS_AVAILABLE] = ACTIONS(7246), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7246), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7246), - [anon_sym_API_AVAILABLE] = ACTIONS(7246), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7246), - [anon_sym_API_DEPRECATED] = ACTIONS(7246), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7246), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7246), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7246), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7246), - [anon_sym___deprecated_msg] = ACTIONS(7246), - [anon_sym___deprecated_enum_msg] = ACTIONS(7246), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7246), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7246), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7246), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7246), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7246), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7246), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3079] = { - [sym_identifier] = ACTIONS(7250), - [anon_sym_COMMA] = ACTIONS(7252), - [anon_sym_RPAREN] = ACTIONS(7252), - [anon_sym_LPAREN2] = ACTIONS(7252), - [anon_sym_DASH] = ACTIONS(7250), - [anon_sym_PLUS] = ACTIONS(7250), - [anon_sym_STAR] = ACTIONS(7250), - [anon_sym_SLASH] = ACTIONS(7250), - [anon_sym_PERCENT] = ACTIONS(7250), - [anon_sym_PIPE_PIPE] = ACTIONS(7252), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE] = ACTIONS(7250), - [anon_sym_CARET] = ACTIONS(7250), - [anon_sym_AMP] = ACTIONS(7250), - [anon_sym_EQ_EQ] = ACTIONS(7252), - [anon_sym_BANG_EQ] = ACTIONS(7252), - [anon_sym_GT] = ACTIONS(7250), - [anon_sym_GT_EQ] = ACTIONS(7252), - [anon_sym_LT_EQ] = ACTIONS(7252), - [anon_sym_LT] = ACTIONS(7250), - [anon_sym_LT_LT] = ACTIONS(7250), - [anon_sym_GT_GT] = ACTIONS(7250), - [anon_sym_SEMI] = ACTIONS(7252), - [anon_sym___attribute] = ACTIONS(7250), - [anon_sym___attribute__] = ACTIONS(7250), - [anon_sym_RBRACE] = ACTIONS(7252), - [anon_sym_LBRACK] = ACTIONS(7252), - [anon_sym_RBRACK] = ACTIONS(7252), - [anon_sym_EQ] = ACTIONS(7250), - [anon_sym_const] = ACTIONS(7250), - [anon_sym_volatile] = ACTIONS(7250), - [anon_sym_restrict] = ACTIONS(7250), - [anon_sym__Atomic] = ACTIONS(7250), - [anon_sym_in] = ACTIONS(7250), - [anon_sym_out] = ACTIONS(7250), - [anon_sym_inout] = ACTIONS(7250), - [anon_sym_bycopy] = ACTIONS(7250), - [anon_sym_byref] = ACTIONS(7250), - [anon_sym_oneway] = ACTIONS(7250), - [anon_sym__Nullable] = ACTIONS(7250), - [anon_sym__Nonnull] = ACTIONS(7250), - [anon_sym__Nullable_result] = ACTIONS(7250), - [anon_sym__Null_unspecified] = ACTIONS(7250), - [anon_sym___autoreleasing] = ACTIONS(7250), - [anon_sym___nullable] = ACTIONS(7250), - [anon_sym___nonnull] = ACTIONS(7250), - [anon_sym___strong] = ACTIONS(7250), - [anon_sym___weak] = ACTIONS(7250), - [anon_sym___bridge] = ACTIONS(7250), - [anon_sym___bridge_transfer] = ACTIONS(7250), - [anon_sym___bridge_retained] = ACTIONS(7250), - [anon_sym___unsafe_unretained] = ACTIONS(7250), - [anon_sym___block] = ACTIONS(7250), - [anon_sym___kindof] = ACTIONS(7250), - [anon_sym___unused] = ACTIONS(7250), - [anon_sym__Complex] = ACTIONS(7250), - [anon_sym___complex] = ACTIONS(7250), - [anon_sym_IBOutlet] = ACTIONS(7250), - [anon_sym_IBInspectable] = ACTIONS(7250), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7250), - [anon_sym_COLON] = ACTIONS(7252), - [anon_sym_QMARK] = ACTIONS(7252), - [anon_sym_STAR_EQ] = ACTIONS(7252), - [anon_sym_SLASH_EQ] = ACTIONS(7252), - [anon_sym_PERCENT_EQ] = ACTIONS(7252), - [anon_sym_PLUS_EQ] = ACTIONS(7252), - [anon_sym_DASH_EQ] = ACTIONS(7252), - [anon_sym_LT_LT_EQ] = ACTIONS(7252), - [anon_sym_GT_GT_EQ] = ACTIONS(7252), - [anon_sym_AMP_EQ] = ACTIONS(7252), - [anon_sym_CARET_EQ] = ACTIONS(7252), - [anon_sym_PIPE_EQ] = ACTIONS(7252), - [anon_sym_DASH_DASH] = ACTIONS(7252), - [anon_sym_PLUS_PLUS] = ACTIONS(7252), - [anon_sym_DOT] = ACTIONS(7252), - [anon_sym_DASH_GT] = ACTIONS(7252), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7250), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7250), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7250), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7250), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7250), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7250), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7250), - [anon_sym_NS_AVAILABLE] = ACTIONS(7250), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7250), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7250), - [anon_sym_API_AVAILABLE] = ACTIONS(7250), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7250), - [anon_sym_API_DEPRECATED] = ACTIONS(7250), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7250), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7250), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7250), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7250), - [anon_sym___deprecated_msg] = ACTIONS(7250), - [anon_sym___deprecated_enum_msg] = ACTIONS(7250), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7250), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7250), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7250), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7250), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7250), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7250), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3080] = { - [sym_identifier] = ACTIONS(7254), - [anon_sym_COMMA] = ACTIONS(7256), - [anon_sym_RPAREN] = ACTIONS(7256), - [anon_sym_LPAREN2] = ACTIONS(7256), - [anon_sym_DASH] = ACTIONS(7254), - [anon_sym_PLUS] = ACTIONS(7254), - [anon_sym_STAR] = ACTIONS(7254), - [anon_sym_SLASH] = ACTIONS(7254), - [anon_sym_PERCENT] = ACTIONS(7254), - [anon_sym_PIPE_PIPE] = ACTIONS(7256), - [anon_sym_AMP_AMP] = ACTIONS(7256), - [anon_sym_PIPE] = ACTIONS(7254), - [anon_sym_CARET] = ACTIONS(7254), - [anon_sym_AMP] = ACTIONS(7254), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_GT] = ACTIONS(7254), - [anon_sym_GT_EQ] = ACTIONS(7256), - [anon_sym_LT_EQ] = ACTIONS(7256), - [anon_sym_LT] = ACTIONS(7254), - [anon_sym_LT_LT] = ACTIONS(7254), - [anon_sym_GT_GT] = ACTIONS(7254), - [anon_sym_SEMI] = ACTIONS(7256), - [anon_sym___attribute] = ACTIONS(7254), - [anon_sym___attribute__] = ACTIONS(7254), - [anon_sym_RBRACE] = ACTIONS(7256), - [anon_sym_LBRACK] = ACTIONS(7256), - [anon_sym_RBRACK] = ACTIONS(7256), - [anon_sym_EQ] = ACTIONS(7254), - [anon_sym_const] = ACTIONS(7254), - [anon_sym_volatile] = ACTIONS(7254), - [anon_sym_restrict] = ACTIONS(7254), - [anon_sym__Atomic] = ACTIONS(7254), - [anon_sym_in] = ACTIONS(7254), - [anon_sym_out] = ACTIONS(7254), - [anon_sym_inout] = ACTIONS(7254), - [anon_sym_bycopy] = ACTIONS(7254), - [anon_sym_byref] = ACTIONS(7254), - [anon_sym_oneway] = ACTIONS(7254), - [anon_sym__Nullable] = ACTIONS(7254), - [anon_sym__Nonnull] = ACTIONS(7254), - [anon_sym__Nullable_result] = ACTIONS(7254), - [anon_sym__Null_unspecified] = ACTIONS(7254), - [anon_sym___autoreleasing] = ACTIONS(7254), - [anon_sym___nullable] = ACTIONS(7254), - [anon_sym___nonnull] = ACTIONS(7254), - [anon_sym___strong] = ACTIONS(7254), - [anon_sym___weak] = ACTIONS(7254), - [anon_sym___bridge] = ACTIONS(7254), - [anon_sym___bridge_transfer] = ACTIONS(7254), - [anon_sym___bridge_retained] = ACTIONS(7254), - [anon_sym___unsafe_unretained] = ACTIONS(7254), - [anon_sym___block] = ACTIONS(7254), - [anon_sym___kindof] = ACTIONS(7254), - [anon_sym___unused] = ACTIONS(7254), - [anon_sym__Complex] = ACTIONS(7254), - [anon_sym___complex] = ACTIONS(7254), - [anon_sym_IBOutlet] = ACTIONS(7254), - [anon_sym_IBInspectable] = ACTIONS(7254), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7254), - [anon_sym_COLON] = ACTIONS(7256), - [anon_sym_QMARK] = ACTIONS(7256), - [anon_sym_STAR_EQ] = ACTIONS(7256), - [anon_sym_SLASH_EQ] = ACTIONS(7256), - [anon_sym_PERCENT_EQ] = ACTIONS(7256), - [anon_sym_PLUS_EQ] = ACTIONS(7256), - [anon_sym_DASH_EQ] = ACTIONS(7256), - [anon_sym_LT_LT_EQ] = ACTIONS(7256), - [anon_sym_GT_GT_EQ] = ACTIONS(7256), - [anon_sym_AMP_EQ] = ACTIONS(7256), - [anon_sym_CARET_EQ] = ACTIONS(7256), - [anon_sym_PIPE_EQ] = ACTIONS(7256), - [anon_sym_DASH_DASH] = ACTIONS(7256), - [anon_sym_PLUS_PLUS] = ACTIONS(7256), - [anon_sym_DOT] = ACTIONS(7256), - [anon_sym_DASH_GT] = ACTIONS(7256), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7254), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7254), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7254), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7254), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7254), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7254), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7254), - [anon_sym_NS_AVAILABLE] = ACTIONS(7254), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7254), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7254), - [anon_sym_API_AVAILABLE] = ACTIONS(7254), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7254), - [anon_sym_API_DEPRECATED] = ACTIONS(7254), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7254), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7254), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7254), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7254), - [anon_sym___deprecated_msg] = ACTIONS(7254), - [anon_sym___deprecated_enum_msg] = ACTIONS(7254), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7254), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7254), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7254), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7254), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7254), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7254), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3081] = { - [sym_identifier] = ACTIONS(7258), - [anon_sym_COMMA] = ACTIONS(7260), - [anon_sym_RPAREN] = ACTIONS(7260), - [anon_sym_LPAREN2] = ACTIONS(7260), - [anon_sym_DASH] = ACTIONS(7258), - [anon_sym_PLUS] = ACTIONS(7258), - [anon_sym_STAR] = ACTIONS(7258), - [anon_sym_SLASH] = ACTIONS(7258), - [anon_sym_PERCENT] = ACTIONS(7258), - [anon_sym_PIPE_PIPE] = ACTIONS(7260), - [anon_sym_AMP_AMP] = ACTIONS(7260), - [anon_sym_PIPE] = ACTIONS(7258), - [anon_sym_CARET] = ACTIONS(7258), - [anon_sym_AMP] = ACTIONS(7258), - [anon_sym_EQ_EQ] = ACTIONS(7260), - [anon_sym_BANG_EQ] = ACTIONS(7260), - [anon_sym_GT] = ACTIONS(7258), - [anon_sym_GT_EQ] = ACTIONS(7260), - [anon_sym_LT_EQ] = ACTIONS(7260), - [anon_sym_LT] = ACTIONS(7258), - [anon_sym_LT_LT] = ACTIONS(7258), - [anon_sym_GT_GT] = ACTIONS(7258), - [anon_sym_SEMI] = ACTIONS(7260), - [anon_sym___attribute] = ACTIONS(7258), - [anon_sym___attribute__] = ACTIONS(7258), - [anon_sym_RBRACE] = ACTIONS(7260), - [anon_sym_LBRACK] = ACTIONS(7260), - [anon_sym_RBRACK] = ACTIONS(7260), - [anon_sym_EQ] = ACTIONS(7258), - [anon_sym_const] = ACTIONS(7258), - [anon_sym_volatile] = ACTIONS(7258), - [anon_sym_restrict] = ACTIONS(7258), - [anon_sym__Atomic] = ACTIONS(7258), - [anon_sym_in] = ACTIONS(7258), - [anon_sym_out] = ACTIONS(7258), - [anon_sym_inout] = ACTIONS(7258), - [anon_sym_bycopy] = ACTIONS(7258), - [anon_sym_byref] = ACTIONS(7258), - [anon_sym_oneway] = ACTIONS(7258), - [anon_sym__Nullable] = ACTIONS(7258), - [anon_sym__Nonnull] = ACTIONS(7258), - [anon_sym__Nullable_result] = ACTIONS(7258), - [anon_sym__Null_unspecified] = ACTIONS(7258), - [anon_sym___autoreleasing] = ACTIONS(7258), - [anon_sym___nullable] = ACTIONS(7258), - [anon_sym___nonnull] = ACTIONS(7258), - [anon_sym___strong] = ACTIONS(7258), - [anon_sym___weak] = ACTIONS(7258), - [anon_sym___bridge] = ACTIONS(7258), - [anon_sym___bridge_transfer] = ACTIONS(7258), - [anon_sym___bridge_retained] = ACTIONS(7258), - [anon_sym___unsafe_unretained] = ACTIONS(7258), - [anon_sym___block] = ACTIONS(7258), - [anon_sym___kindof] = ACTIONS(7258), - [anon_sym___unused] = ACTIONS(7258), - [anon_sym__Complex] = ACTIONS(7258), - [anon_sym___complex] = ACTIONS(7258), - [anon_sym_IBOutlet] = ACTIONS(7258), - [anon_sym_IBInspectable] = ACTIONS(7258), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7258), - [anon_sym_COLON] = ACTIONS(7260), - [anon_sym_QMARK] = ACTIONS(7260), - [anon_sym_STAR_EQ] = ACTIONS(7260), - [anon_sym_SLASH_EQ] = ACTIONS(7260), - [anon_sym_PERCENT_EQ] = ACTIONS(7260), - [anon_sym_PLUS_EQ] = ACTIONS(7260), - [anon_sym_DASH_EQ] = ACTIONS(7260), - [anon_sym_LT_LT_EQ] = ACTIONS(7260), - [anon_sym_GT_GT_EQ] = ACTIONS(7260), - [anon_sym_AMP_EQ] = ACTIONS(7260), - [anon_sym_CARET_EQ] = ACTIONS(7260), - [anon_sym_PIPE_EQ] = ACTIONS(7260), - [anon_sym_DASH_DASH] = ACTIONS(7260), - [anon_sym_PLUS_PLUS] = ACTIONS(7260), - [anon_sym_DOT] = ACTIONS(7260), - [anon_sym_DASH_GT] = ACTIONS(7260), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7258), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7258), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7258), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7258), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7258), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7258), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7258), - [anon_sym_NS_AVAILABLE] = ACTIONS(7258), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7258), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7258), - [anon_sym_API_AVAILABLE] = ACTIONS(7258), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7258), - [anon_sym_API_DEPRECATED] = ACTIONS(7258), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7258), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7258), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7258), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7258), - [anon_sym___deprecated_msg] = ACTIONS(7258), - [anon_sym___deprecated_enum_msg] = ACTIONS(7258), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7258), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7258), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7258), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7258), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7258), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7258), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3082] = { - [sym_identifier] = ACTIONS(7262), - [anon_sym_COMMA] = ACTIONS(7264), - [anon_sym_RPAREN] = ACTIONS(7264), - [anon_sym_LPAREN2] = ACTIONS(7264), - [anon_sym_DASH] = ACTIONS(7262), - [anon_sym_PLUS] = ACTIONS(7262), - [anon_sym_STAR] = ACTIONS(7262), - [anon_sym_SLASH] = ACTIONS(7262), - [anon_sym_PERCENT] = ACTIONS(7262), - [anon_sym_PIPE_PIPE] = ACTIONS(7264), - [anon_sym_AMP_AMP] = ACTIONS(7264), - [anon_sym_PIPE] = ACTIONS(7262), - [anon_sym_CARET] = ACTIONS(7262), - [anon_sym_AMP] = ACTIONS(7262), - [anon_sym_EQ_EQ] = ACTIONS(7264), - [anon_sym_BANG_EQ] = ACTIONS(7264), - [anon_sym_GT] = ACTIONS(7262), - [anon_sym_GT_EQ] = ACTIONS(7264), - [anon_sym_LT_EQ] = ACTIONS(7264), - [anon_sym_LT] = ACTIONS(7262), - [anon_sym_LT_LT] = ACTIONS(7262), - [anon_sym_GT_GT] = ACTIONS(7262), - [anon_sym_SEMI] = ACTIONS(7264), - [anon_sym___attribute] = ACTIONS(7262), - [anon_sym___attribute__] = ACTIONS(7262), - [anon_sym_RBRACE] = ACTIONS(7264), - [anon_sym_LBRACK] = ACTIONS(7264), - [anon_sym_RBRACK] = ACTIONS(7264), - [anon_sym_EQ] = ACTIONS(7262), - [anon_sym_const] = ACTIONS(7262), - [anon_sym_volatile] = ACTIONS(7262), - [anon_sym_restrict] = ACTIONS(7262), - [anon_sym__Atomic] = ACTIONS(7262), - [anon_sym_in] = ACTIONS(7262), - [anon_sym_out] = ACTIONS(7262), - [anon_sym_inout] = ACTIONS(7262), - [anon_sym_bycopy] = ACTIONS(7262), - [anon_sym_byref] = ACTIONS(7262), - [anon_sym_oneway] = ACTIONS(7262), - [anon_sym__Nullable] = ACTIONS(7262), - [anon_sym__Nonnull] = ACTIONS(7262), - [anon_sym__Nullable_result] = ACTIONS(7262), - [anon_sym__Null_unspecified] = ACTIONS(7262), - [anon_sym___autoreleasing] = ACTIONS(7262), - [anon_sym___nullable] = ACTIONS(7262), - [anon_sym___nonnull] = ACTIONS(7262), - [anon_sym___strong] = ACTIONS(7262), - [anon_sym___weak] = ACTIONS(7262), - [anon_sym___bridge] = ACTIONS(7262), - [anon_sym___bridge_transfer] = ACTIONS(7262), - [anon_sym___bridge_retained] = ACTIONS(7262), - [anon_sym___unsafe_unretained] = ACTIONS(7262), - [anon_sym___block] = ACTIONS(7262), - [anon_sym___kindof] = ACTIONS(7262), - [anon_sym___unused] = ACTIONS(7262), - [anon_sym__Complex] = ACTIONS(7262), - [anon_sym___complex] = ACTIONS(7262), - [anon_sym_IBOutlet] = ACTIONS(7262), - [anon_sym_IBInspectable] = ACTIONS(7262), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7262), - [anon_sym_COLON] = ACTIONS(7264), - [anon_sym_QMARK] = ACTIONS(7264), - [anon_sym_STAR_EQ] = ACTIONS(7264), - [anon_sym_SLASH_EQ] = ACTIONS(7264), - [anon_sym_PERCENT_EQ] = ACTIONS(7264), - [anon_sym_PLUS_EQ] = ACTIONS(7264), - [anon_sym_DASH_EQ] = ACTIONS(7264), - [anon_sym_LT_LT_EQ] = ACTIONS(7264), - [anon_sym_GT_GT_EQ] = ACTIONS(7264), - [anon_sym_AMP_EQ] = ACTIONS(7264), - [anon_sym_CARET_EQ] = ACTIONS(7264), - [anon_sym_PIPE_EQ] = ACTIONS(7264), - [anon_sym_DASH_DASH] = ACTIONS(7264), - [anon_sym_PLUS_PLUS] = ACTIONS(7264), - [anon_sym_DOT] = ACTIONS(7264), - [anon_sym_DASH_GT] = ACTIONS(7264), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7262), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7262), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7262), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7262), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7262), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7262), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7262), - [anon_sym_NS_AVAILABLE] = ACTIONS(7262), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7262), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7262), - [anon_sym_API_AVAILABLE] = ACTIONS(7262), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7262), - [anon_sym_API_DEPRECATED] = ACTIONS(7262), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7262), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7262), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7262), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7262), - [anon_sym___deprecated_msg] = ACTIONS(7262), - [anon_sym___deprecated_enum_msg] = ACTIONS(7262), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7262), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7262), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7262), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7262), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7262), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7262), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3083] = { - [sym_identifier] = ACTIONS(7266), - [anon_sym_COMMA] = ACTIONS(7268), - [anon_sym_RPAREN] = ACTIONS(7268), - [anon_sym_LPAREN2] = ACTIONS(7268), - [anon_sym_DASH] = ACTIONS(7266), - [anon_sym_PLUS] = ACTIONS(7266), - [anon_sym_STAR] = ACTIONS(7266), - [anon_sym_SLASH] = ACTIONS(7266), - [anon_sym_PERCENT] = ACTIONS(7266), - [anon_sym_PIPE_PIPE] = ACTIONS(7268), - [anon_sym_AMP_AMP] = ACTIONS(7268), - [anon_sym_PIPE] = ACTIONS(7266), - [anon_sym_CARET] = ACTIONS(7266), - [anon_sym_AMP] = ACTIONS(7266), - [anon_sym_EQ_EQ] = ACTIONS(7268), - [anon_sym_BANG_EQ] = ACTIONS(7268), - [anon_sym_GT] = ACTIONS(7266), - [anon_sym_GT_EQ] = ACTIONS(7268), - [anon_sym_LT_EQ] = ACTIONS(7268), - [anon_sym_LT] = ACTIONS(7266), - [anon_sym_LT_LT] = ACTIONS(7266), - [anon_sym_GT_GT] = ACTIONS(7266), - [anon_sym_SEMI] = ACTIONS(7268), - [anon_sym___attribute] = ACTIONS(7266), - [anon_sym___attribute__] = ACTIONS(7266), - [anon_sym_RBRACE] = ACTIONS(7268), - [anon_sym_LBRACK] = ACTIONS(7268), - [anon_sym_RBRACK] = ACTIONS(7268), - [anon_sym_EQ] = ACTIONS(7266), - [anon_sym_const] = ACTIONS(7266), - [anon_sym_volatile] = ACTIONS(7266), - [anon_sym_restrict] = ACTIONS(7266), - [anon_sym__Atomic] = ACTIONS(7266), - [anon_sym_in] = ACTIONS(7266), - [anon_sym_out] = ACTIONS(7266), - [anon_sym_inout] = ACTIONS(7266), - [anon_sym_bycopy] = ACTIONS(7266), - [anon_sym_byref] = ACTIONS(7266), - [anon_sym_oneway] = ACTIONS(7266), - [anon_sym__Nullable] = ACTIONS(7266), - [anon_sym__Nonnull] = ACTIONS(7266), - [anon_sym__Nullable_result] = ACTIONS(7266), - [anon_sym__Null_unspecified] = ACTIONS(7266), - [anon_sym___autoreleasing] = ACTIONS(7266), - [anon_sym___nullable] = ACTIONS(7266), - [anon_sym___nonnull] = ACTIONS(7266), - [anon_sym___strong] = ACTIONS(7266), - [anon_sym___weak] = ACTIONS(7266), - [anon_sym___bridge] = ACTIONS(7266), - [anon_sym___bridge_transfer] = ACTIONS(7266), - [anon_sym___bridge_retained] = ACTIONS(7266), - [anon_sym___unsafe_unretained] = ACTIONS(7266), - [anon_sym___block] = ACTIONS(7266), - [anon_sym___kindof] = ACTIONS(7266), - [anon_sym___unused] = ACTIONS(7266), - [anon_sym__Complex] = ACTIONS(7266), - [anon_sym___complex] = ACTIONS(7266), - [anon_sym_IBOutlet] = ACTIONS(7266), - [anon_sym_IBInspectable] = ACTIONS(7266), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7266), - [anon_sym_COLON] = ACTIONS(7268), - [anon_sym_QMARK] = ACTIONS(7268), - [anon_sym_STAR_EQ] = ACTIONS(7268), - [anon_sym_SLASH_EQ] = ACTIONS(7268), - [anon_sym_PERCENT_EQ] = ACTIONS(7268), - [anon_sym_PLUS_EQ] = ACTIONS(7268), - [anon_sym_DASH_EQ] = ACTIONS(7268), - [anon_sym_LT_LT_EQ] = ACTIONS(7268), - [anon_sym_GT_GT_EQ] = ACTIONS(7268), - [anon_sym_AMP_EQ] = ACTIONS(7268), - [anon_sym_CARET_EQ] = ACTIONS(7268), - [anon_sym_PIPE_EQ] = ACTIONS(7268), - [anon_sym_DASH_DASH] = ACTIONS(7268), - [anon_sym_PLUS_PLUS] = ACTIONS(7268), - [anon_sym_DOT] = ACTIONS(7268), - [anon_sym_DASH_GT] = ACTIONS(7268), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7266), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7266), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7266), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7266), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7266), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7266), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7266), - [anon_sym_NS_AVAILABLE] = ACTIONS(7266), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7266), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7266), - [anon_sym_API_AVAILABLE] = ACTIONS(7266), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7266), - [anon_sym_API_DEPRECATED] = ACTIONS(7266), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7266), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7266), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7266), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7266), - [anon_sym___deprecated_msg] = ACTIONS(7266), - [anon_sym___deprecated_enum_msg] = ACTIONS(7266), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7266), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7266), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7266), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7266), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7266), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7266), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3084] = { - [sym_identifier] = ACTIONS(7270), - [anon_sym_COMMA] = ACTIONS(7272), - [anon_sym_RPAREN] = ACTIONS(7272), - [anon_sym_LPAREN2] = ACTIONS(7272), - [anon_sym_DASH] = ACTIONS(7270), - [anon_sym_PLUS] = ACTIONS(7270), - [anon_sym_STAR] = ACTIONS(7270), - [anon_sym_SLASH] = ACTIONS(7270), - [anon_sym_PERCENT] = ACTIONS(7270), - [anon_sym_PIPE_PIPE] = ACTIONS(7272), - [anon_sym_AMP_AMP] = ACTIONS(7272), - [anon_sym_PIPE] = ACTIONS(7270), - [anon_sym_CARET] = ACTIONS(7270), - [anon_sym_AMP] = ACTIONS(7270), - [anon_sym_EQ_EQ] = ACTIONS(7272), - [anon_sym_BANG_EQ] = ACTIONS(7272), - [anon_sym_GT] = ACTIONS(7270), - [anon_sym_GT_EQ] = ACTIONS(7272), - [anon_sym_LT_EQ] = ACTIONS(7272), - [anon_sym_LT] = ACTIONS(7270), - [anon_sym_LT_LT] = ACTIONS(7270), - [anon_sym_GT_GT] = ACTIONS(7270), - [anon_sym_SEMI] = ACTIONS(7272), - [anon_sym___attribute] = ACTIONS(7270), - [anon_sym___attribute__] = ACTIONS(7270), - [anon_sym_RBRACE] = ACTIONS(7272), - [anon_sym_LBRACK] = ACTIONS(7272), - [anon_sym_RBRACK] = ACTIONS(7272), - [anon_sym_EQ] = ACTIONS(7270), - [anon_sym_const] = ACTIONS(7270), - [anon_sym_volatile] = ACTIONS(7270), - [anon_sym_restrict] = ACTIONS(7270), - [anon_sym__Atomic] = ACTIONS(7270), - [anon_sym_in] = ACTIONS(7270), - [anon_sym_out] = ACTIONS(7270), - [anon_sym_inout] = ACTIONS(7270), - [anon_sym_bycopy] = ACTIONS(7270), - [anon_sym_byref] = ACTIONS(7270), - [anon_sym_oneway] = ACTIONS(7270), - [anon_sym__Nullable] = ACTIONS(7270), - [anon_sym__Nonnull] = ACTIONS(7270), - [anon_sym__Nullable_result] = ACTIONS(7270), - [anon_sym__Null_unspecified] = ACTIONS(7270), - [anon_sym___autoreleasing] = ACTIONS(7270), - [anon_sym___nullable] = ACTIONS(7270), - [anon_sym___nonnull] = ACTIONS(7270), - [anon_sym___strong] = ACTIONS(7270), - [anon_sym___weak] = ACTIONS(7270), - [anon_sym___bridge] = ACTIONS(7270), - [anon_sym___bridge_transfer] = ACTIONS(7270), - [anon_sym___bridge_retained] = ACTIONS(7270), - [anon_sym___unsafe_unretained] = ACTIONS(7270), - [anon_sym___block] = ACTIONS(7270), - [anon_sym___kindof] = ACTIONS(7270), - [anon_sym___unused] = ACTIONS(7270), - [anon_sym__Complex] = ACTIONS(7270), - [anon_sym___complex] = ACTIONS(7270), - [anon_sym_IBOutlet] = ACTIONS(7270), - [anon_sym_IBInspectable] = ACTIONS(7270), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7270), - [anon_sym_COLON] = ACTIONS(7272), - [anon_sym_QMARK] = ACTIONS(7272), - [anon_sym_STAR_EQ] = ACTIONS(7272), - [anon_sym_SLASH_EQ] = ACTIONS(7272), - [anon_sym_PERCENT_EQ] = ACTIONS(7272), - [anon_sym_PLUS_EQ] = ACTIONS(7272), - [anon_sym_DASH_EQ] = ACTIONS(7272), - [anon_sym_LT_LT_EQ] = ACTIONS(7272), - [anon_sym_GT_GT_EQ] = ACTIONS(7272), - [anon_sym_AMP_EQ] = ACTIONS(7272), - [anon_sym_CARET_EQ] = ACTIONS(7272), - [anon_sym_PIPE_EQ] = ACTIONS(7272), - [anon_sym_DASH_DASH] = ACTIONS(7272), - [anon_sym_PLUS_PLUS] = ACTIONS(7272), - [anon_sym_DOT] = ACTIONS(7272), - [anon_sym_DASH_GT] = ACTIONS(7272), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7270), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7270), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7270), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7270), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7270), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7270), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7270), - [anon_sym_NS_AVAILABLE] = ACTIONS(7270), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7270), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7270), - [anon_sym_API_AVAILABLE] = ACTIONS(7270), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7270), - [anon_sym_API_DEPRECATED] = ACTIONS(7270), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7270), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7270), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7270), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7270), - [anon_sym___deprecated_msg] = ACTIONS(7270), - [anon_sym___deprecated_enum_msg] = ACTIONS(7270), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7270), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7270), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7270), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7270), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7270), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7270), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3085] = { - [sym_identifier] = ACTIONS(7274), - [anon_sym_COMMA] = ACTIONS(7276), - [anon_sym_RPAREN] = ACTIONS(7276), - [anon_sym_LPAREN2] = ACTIONS(7276), - [anon_sym_DASH] = ACTIONS(7274), - [anon_sym_PLUS] = ACTIONS(7274), - [anon_sym_STAR] = ACTIONS(7274), - [anon_sym_SLASH] = ACTIONS(7274), - [anon_sym_PERCENT] = ACTIONS(7274), - [anon_sym_PIPE_PIPE] = ACTIONS(7276), - [anon_sym_AMP_AMP] = ACTIONS(7276), - [anon_sym_PIPE] = ACTIONS(7274), - [anon_sym_CARET] = ACTIONS(7274), - [anon_sym_AMP] = ACTIONS(7274), - [anon_sym_EQ_EQ] = ACTIONS(7276), - [anon_sym_BANG_EQ] = ACTIONS(7276), - [anon_sym_GT] = ACTIONS(7274), - [anon_sym_GT_EQ] = ACTIONS(7276), - [anon_sym_LT_EQ] = ACTIONS(7276), - [anon_sym_LT] = ACTIONS(7274), - [anon_sym_LT_LT] = ACTIONS(7274), - [anon_sym_GT_GT] = ACTIONS(7274), - [anon_sym_SEMI] = ACTIONS(7276), - [anon_sym___attribute] = ACTIONS(7274), - [anon_sym___attribute__] = ACTIONS(7274), - [anon_sym_RBRACE] = ACTIONS(7276), - [anon_sym_LBRACK] = ACTIONS(7276), - [anon_sym_RBRACK] = ACTIONS(7276), - [anon_sym_EQ] = ACTIONS(7274), - [anon_sym_const] = ACTIONS(7274), - [anon_sym_volatile] = ACTIONS(7274), - [anon_sym_restrict] = ACTIONS(7274), - [anon_sym__Atomic] = ACTIONS(7274), - [anon_sym_in] = ACTIONS(7274), - [anon_sym_out] = ACTIONS(7274), - [anon_sym_inout] = ACTIONS(7274), - [anon_sym_bycopy] = ACTIONS(7274), - [anon_sym_byref] = ACTIONS(7274), - [anon_sym_oneway] = ACTIONS(7274), - [anon_sym__Nullable] = ACTIONS(7274), - [anon_sym__Nonnull] = ACTIONS(7274), - [anon_sym__Nullable_result] = ACTIONS(7274), - [anon_sym__Null_unspecified] = ACTIONS(7274), - [anon_sym___autoreleasing] = ACTIONS(7274), - [anon_sym___nullable] = ACTIONS(7274), - [anon_sym___nonnull] = ACTIONS(7274), - [anon_sym___strong] = ACTIONS(7274), - [anon_sym___weak] = ACTIONS(7274), - [anon_sym___bridge] = ACTIONS(7274), - [anon_sym___bridge_transfer] = ACTIONS(7274), - [anon_sym___bridge_retained] = ACTIONS(7274), - [anon_sym___unsafe_unretained] = ACTIONS(7274), - [anon_sym___block] = ACTIONS(7274), - [anon_sym___kindof] = ACTIONS(7274), - [anon_sym___unused] = ACTIONS(7274), - [anon_sym__Complex] = ACTIONS(7274), - [anon_sym___complex] = ACTIONS(7274), - [anon_sym_IBOutlet] = ACTIONS(7274), - [anon_sym_IBInspectable] = ACTIONS(7274), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7274), - [anon_sym_COLON] = ACTIONS(7276), - [anon_sym_QMARK] = ACTIONS(7276), - [anon_sym_STAR_EQ] = ACTIONS(7276), - [anon_sym_SLASH_EQ] = ACTIONS(7276), - [anon_sym_PERCENT_EQ] = ACTIONS(7276), - [anon_sym_PLUS_EQ] = ACTIONS(7276), - [anon_sym_DASH_EQ] = ACTIONS(7276), - [anon_sym_LT_LT_EQ] = ACTIONS(7276), - [anon_sym_GT_GT_EQ] = ACTIONS(7276), - [anon_sym_AMP_EQ] = ACTIONS(7276), - [anon_sym_CARET_EQ] = ACTIONS(7276), - [anon_sym_PIPE_EQ] = ACTIONS(7276), - [anon_sym_DASH_DASH] = ACTIONS(7276), - [anon_sym_PLUS_PLUS] = ACTIONS(7276), - [anon_sym_DOT] = ACTIONS(7276), - [anon_sym_DASH_GT] = ACTIONS(7276), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7274), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7274), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7274), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7274), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7274), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7274), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7274), - [anon_sym_NS_AVAILABLE] = ACTIONS(7274), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7274), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7274), - [anon_sym_API_AVAILABLE] = ACTIONS(7274), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7274), - [anon_sym_API_DEPRECATED] = ACTIONS(7274), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7274), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7274), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7274), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7274), - [anon_sym___deprecated_msg] = ACTIONS(7274), - [anon_sym___deprecated_enum_msg] = ACTIONS(7274), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7274), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7274), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7274), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7274), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7274), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7274), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3086] = { - [sym_identifier] = ACTIONS(7278), - [anon_sym_COMMA] = ACTIONS(7280), - [anon_sym_RPAREN] = ACTIONS(7280), - [anon_sym_LPAREN2] = ACTIONS(7280), - [anon_sym_DASH] = ACTIONS(7278), - [anon_sym_PLUS] = ACTIONS(7278), - [anon_sym_STAR] = ACTIONS(7278), - [anon_sym_SLASH] = ACTIONS(7278), - [anon_sym_PERCENT] = ACTIONS(7278), - [anon_sym_PIPE_PIPE] = ACTIONS(7280), - [anon_sym_AMP_AMP] = ACTIONS(7280), - [anon_sym_PIPE] = ACTIONS(7278), - [anon_sym_CARET] = ACTIONS(7278), - [anon_sym_AMP] = ACTIONS(7278), - [anon_sym_EQ_EQ] = ACTIONS(7280), - [anon_sym_BANG_EQ] = ACTIONS(7280), - [anon_sym_GT] = ACTIONS(7278), - [anon_sym_GT_EQ] = ACTIONS(7280), - [anon_sym_LT_EQ] = ACTIONS(7280), - [anon_sym_LT] = ACTIONS(7278), - [anon_sym_LT_LT] = ACTIONS(7278), - [anon_sym_GT_GT] = ACTIONS(7278), - [anon_sym_SEMI] = ACTIONS(7280), - [anon_sym___attribute] = ACTIONS(7278), - [anon_sym___attribute__] = ACTIONS(7278), - [anon_sym_RBRACE] = ACTIONS(7280), - [anon_sym_LBRACK] = ACTIONS(7280), - [anon_sym_RBRACK] = ACTIONS(7280), - [anon_sym_EQ] = ACTIONS(7278), - [anon_sym_const] = ACTIONS(7278), - [anon_sym_volatile] = ACTIONS(7278), - [anon_sym_restrict] = ACTIONS(7278), - [anon_sym__Atomic] = ACTIONS(7278), - [anon_sym_in] = ACTIONS(7278), - [anon_sym_out] = ACTIONS(7278), - [anon_sym_inout] = ACTIONS(7278), - [anon_sym_bycopy] = ACTIONS(7278), - [anon_sym_byref] = ACTIONS(7278), - [anon_sym_oneway] = ACTIONS(7278), - [anon_sym__Nullable] = ACTIONS(7278), - [anon_sym__Nonnull] = ACTIONS(7278), - [anon_sym__Nullable_result] = ACTIONS(7278), - [anon_sym__Null_unspecified] = ACTIONS(7278), - [anon_sym___autoreleasing] = ACTIONS(7278), - [anon_sym___nullable] = ACTIONS(7278), - [anon_sym___nonnull] = ACTIONS(7278), - [anon_sym___strong] = ACTIONS(7278), - [anon_sym___weak] = ACTIONS(7278), - [anon_sym___bridge] = ACTIONS(7278), - [anon_sym___bridge_transfer] = ACTIONS(7278), - [anon_sym___bridge_retained] = ACTIONS(7278), - [anon_sym___unsafe_unretained] = ACTIONS(7278), - [anon_sym___block] = ACTIONS(7278), - [anon_sym___kindof] = ACTIONS(7278), - [anon_sym___unused] = ACTIONS(7278), - [anon_sym__Complex] = ACTIONS(7278), - [anon_sym___complex] = ACTIONS(7278), - [anon_sym_IBOutlet] = ACTIONS(7278), - [anon_sym_IBInspectable] = ACTIONS(7278), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7278), - [anon_sym_COLON] = ACTIONS(7280), - [anon_sym_QMARK] = ACTIONS(7280), - [anon_sym_STAR_EQ] = ACTIONS(7280), - [anon_sym_SLASH_EQ] = ACTIONS(7280), - [anon_sym_PERCENT_EQ] = ACTIONS(7280), - [anon_sym_PLUS_EQ] = ACTIONS(7280), - [anon_sym_DASH_EQ] = ACTIONS(7280), - [anon_sym_LT_LT_EQ] = ACTIONS(7280), - [anon_sym_GT_GT_EQ] = ACTIONS(7280), - [anon_sym_AMP_EQ] = ACTIONS(7280), - [anon_sym_CARET_EQ] = ACTIONS(7280), - [anon_sym_PIPE_EQ] = ACTIONS(7280), - [anon_sym_DASH_DASH] = ACTIONS(7280), - [anon_sym_PLUS_PLUS] = ACTIONS(7280), - [anon_sym_DOT] = ACTIONS(7280), - [anon_sym_DASH_GT] = ACTIONS(7280), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7278), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7278), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7278), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7278), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7278), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7278), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7278), - [anon_sym_NS_AVAILABLE] = ACTIONS(7278), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7278), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7278), - [anon_sym_API_AVAILABLE] = ACTIONS(7278), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7278), - [anon_sym_API_DEPRECATED] = ACTIONS(7278), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7278), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7278), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7278), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7278), - [anon_sym___deprecated_msg] = ACTIONS(7278), - [anon_sym___deprecated_enum_msg] = ACTIONS(7278), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7278), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7278), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7278), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7278), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7278), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7278), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3087] = { [sym_identifier] = ACTIONS(7282), [anon_sym_COMMA] = ACTIONS(7284), [anon_sym_RPAREN] = ACTIONS(7284), [anon_sym_LPAREN2] = ACTIONS(7284), - [anon_sym_DASH] = ACTIONS(7282), - [anon_sym_PLUS] = ACTIONS(7282), - [anon_sym_STAR] = ACTIONS(7282), - [anon_sym_SLASH] = ACTIONS(7282), - [anon_sym_PERCENT] = ACTIONS(7282), - [anon_sym_PIPE_PIPE] = ACTIONS(7284), - [anon_sym_AMP_AMP] = ACTIONS(7284), - [anon_sym_PIPE] = ACTIONS(7282), - [anon_sym_CARET] = ACTIONS(7282), - [anon_sym_AMP] = ACTIONS(7282), - [anon_sym_EQ_EQ] = ACTIONS(7284), - [anon_sym_BANG_EQ] = ACTIONS(7284), - [anon_sym_GT] = ACTIONS(7282), - [anon_sym_GT_EQ] = ACTIONS(7284), - [anon_sym_LT_EQ] = ACTIONS(7284), - [anon_sym_LT] = ACTIONS(7282), - [anon_sym_LT_LT] = ACTIONS(7282), - [anon_sym_GT_GT] = ACTIONS(7282), [anon_sym_SEMI] = ACTIONS(7284), + [anon_sym_typedef] = ACTIONS(7282), + [anon_sym_extern] = ACTIONS(7282), [anon_sym___attribute] = ACTIONS(7282), [anon_sym___attribute__] = ACTIONS(7282), + [anon_sym___declspec] = ACTIONS(7282), + [anon_sym_LBRACE] = ACTIONS(7284), [anon_sym_RBRACE] = ACTIONS(7284), [anon_sym_LBRACK] = ACTIONS(7284), - [anon_sym_RBRACK] = ACTIONS(7284), - [anon_sym_EQ] = ACTIONS(7282), + [anon_sym_static] = ACTIONS(7282), + [anon_sym_auto] = ACTIONS(7282), + [anon_sym_register] = ACTIONS(7282), + [anon_sym_inline] = ACTIONS(7282), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7282), [anon_sym_const] = ACTIONS(7282), [anon_sym_volatile] = ACTIONS(7282), [anon_sym_restrict] = ACTIONS(7282), @@ -500951,23 +494035,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_IBOutlet] = ACTIONS(7282), [anon_sym_IBInspectable] = ACTIONS(7282), [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7282), + [anon_sym_signed] = ACTIONS(7282), + [anon_sym_unsigned] = ACTIONS(7282), + [anon_sym_long] = ACTIONS(7282), + [anon_sym_short] = ACTIONS(7282), + [sym_primitive_type] = ACTIONS(7282), + [anon_sym_enum] = ACTIONS(7282), [anon_sym_COLON] = ACTIONS(7284), - [anon_sym_QMARK] = ACTIONS(7284), - [anon_sym_STAR_EQ] = ACTIONS(7284), - [anon_sym_SLASH_EQ] = ACTIONS(7284), - [anon_sym_PERCENT_EQ] = ACTIONS(7284), - [anon_sym_PLUS_EQ] = ACTIONS(7284), - [anon_sym_DASH_EQ] = ACTIONS(7284), - [anon_sym_LT_LT_EQ] = ACTIONS(7284), - [anon_sym_GT_GT_EQ] = ACTIONS(7284), - [anon_sym_AMP_EQ] = ACTIONS(7284), - [anon_sym_CARET_EQ] = ACTIONS(7284), - [anon_sym_PIPE_EQ] = ACTIONS(7284), - [anon_sym_DASH_DASH] = ACTIONS(7284), - [anon_sym_PLUS_PLUS] = ACTIONS(7284), - [anon_sym_DOT] = ACTIONS(7284), - [anon_sym_DASH_GT] = ACTIONS(7284), + [anon_sym_struct] = ACTIONS(7282), + [anon_sym_ATdefs] = ACTIONS(7284), + [anon_sym_union] = ACTIONS(7282), [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(7284), + [anon_sym_ATinterface] = ACTIONS(7284), [sym_method_attribute_specifier] = ACTIONS(7282), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7282), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7282), @@ -500993,6 +494073,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7282), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7282), [anon_sym_NS_SWIFT_NAME] = ACTIONS(7282), + [anon_sym_ATimplementation] = ACTIONS(7284), + [anon_sym_NS_ENUM] = ACTIONS(7282), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7282), + [anon_sym_NS_OPTIONS] = ACTIONS(7282), + [anon_sym_typeof] = ACTIONS(7282), + [anon_sym___typeof] = ACTIONS(7282), + [anon_sym___typeof__] = ACTIONS(7282), + [sym_id] = ACTIONS(7282), + [sym_instancetype] = ACTIONS(7282), + [sym_Class] = ACTIONS(7282), + [sym_SEL] = ACTIONS(7282), + [sym_IMP] = ACTIONS(7282), + [sym_BOOL] = ACTIONS(7282), + [sym_auto] = ACTIONS(7282), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -501000,36 +494094,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3088] = { + [3042] = { [sym_identifier] = ACTIONS(7286), - [anon_sym_COMMA] = ACTIONS(7288), - [anon_sym_RPAREN] = ACTIONS(7288), + [aux_sym_preproc_def_token1] = ACTIONS(7288), [anon_sym_LPAREN2] = ACTIONS(7288), - [anon_sym_DASH] = ACTIONS(7286), - [anon_sym_PLUS] = ACTIONS(7286), - [anon_sym_STAR] = ACTIONS(7286), - [anon_sym_SLASH] = ACTIONS(7286), - [anon_sym_PERCENT] = ACTIONS(7286), - [anon_sym_PIPE_PIPE] = ACTIONS(7288), - [anon_sym_AMP_AMP] = ACTIONS(7288), - [anon_sym_PIPE] = ACTIONS(7286), - [anon_sym_CARET] = ACTIONS(7286), - [anon_sym_AMP] = ACTIONS(7286), - [anon_sym_EQ_EQ] = ACTIONS(7288), - [anon_sym_BANG_EQ] = ACTIONS(7288), - [anon_sym_GT] = ACTIONS(7286), - [anon_sym_GT_EQ] = ACTIONS(7288), - [anon_sym_LT_EQ] = ACTIONS(7288), - [anon_sym_LT] = ACTIONS(7286), - [anon_sym_LT_LT] = ACTIONS(7286), - [anon_sym_GT_GT] = ACTIONS(7286), - [anon_sym_SEMI] = ACTIONS(7288), + [anon_sym_DASH] = ACTIONS(7288), + [anon_sym_PLUS] = ACTIONS(7288), + [anon_sym_LT] = ACTIONS(7288), + [anon_sym_typedef] = ACTIONS(7286), + [anon_sym_extern] = ACTIONS(7286), [anon_sym___attribute] = ACTIONS(7286), [anon_sym___attribute__] = ACTIONS(7286), - [anon_sym_RBRACE] = ACTIONS(7288), - [anon_sym_LBRACK] = ACTIONS(7288), - [anon_sym_RBRACK] = ACTIONS(7288), - [anon_sym_EQ] = ACTIONS(7286), + [anon_sym___declspec] = ACTIONS(7286), + [anon_sym_LBRACE] = ACTIONS(7288), + [anon_sym_static] = ACTIONS(7286), + [anon_sym_auto] = ACTIONS(7286), + [anon_sym_register] = ACTIONS(7286), + [anon_sym_inline] = ACTIONS(7286), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7286), [anon_sym_const] = ACTIONS(7286), [anon_sym_volatile] = ACTIONS(7286), [anon_sym_restrict] = ACTIONS(7286), @@ -501061,23 +494143,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_IBOutlet] = ACTIONS(7286), [anon_sym_IBInspectable] = ACTIONS(7286), [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7286), + [anon_sym_signed] = ACTIONS(7286), + [anon_sym_unsigned] = ACTIONS(7286), + [anon_sym_long] = ACTIONS(7286), + [anon_sym_short] = ACTIONS(7286), + [sym_primitive_type] = ACTIONS(7286), + [anon_sym_enum] = ACTIONS(7286), [anon_sym_COLON] = ACTIONS(7288), - [anon_sym_QMARK] = ACTIONS(7288), - [anon_sym_STAR_EQ] = ACTIONS(7288), - [anon_sym_SLASH_EQ] = ACTIONS(7288), - [anon_sym_PERCENT_EQ] = ACTIONS(7288), - [anon_sym_PLUS_EQ] = ACTIONS(7288), - [anon_sym_DASH_EQ] = ACTIONS(7288), - [anon_sym_LT_LT_EQ] = ACTIONS(7288), - [anon_sym_GT_GT_EQ] = ACTIONS(7288), - [anon_sym_AMP_EQ] = ACTIONS(7288), - [anon_sym_CARET_EQ] = ACTIONS(7288), - [anon_sym_PIPE_EQ] = ACTIONS(7288), - [anon_sym_DASH_DASH] = ACTIONS(7288), - [anon_sym_PLUS_PLUS] = ACTIONS(7288), - [anon_sym_DOT] = ACTIONS(7288), - [anon_sym_DASH_GT] = ACTIONS(7288), + [anon_sym_struct] = ACTIONS(7286), + [anon_sym_union] = ACTIONS(7286), [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7286), + [anon_sym_ATend] = ACTIONS(7288), + [sym_optional] = ACTIONS(7288), + [sym_required] = ACTIONS(7288), + [anon_sym_ATproperty] = ACTIONS(7288), [sym_method_attribute_specifier] = ACTIONS(7286), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7286), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7286), @@ -501103,6 +494183,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7286), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7286), [anon_sym_NS_SWIFT_NAME] = ACTIONS(7286), + [anon_sym_NS_ENUM] = ACTIONS(7286), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7286), + [anon_sym_NS_OPTIONS] = ACTIONS(7286), + [anon_sym_typeof] = ACTIONS(7286), + [anon_sym___typeof] = ACTIONS(7286), + [anon_sym___typeof__] = ACTIONS(7286), + [sym_id] = ACTIONS(7286), + [sym_instancetype] = ACTIONS(7286), + [sym_Class] = ACTIONS(7286), + [sym_SEL] = ACTIONS(7286), + [sym_IMP] = ACTIONS(7286), + [sym_BOOL] = ACTIONS(7286), + [sym_auto] = ACTIONS(7286), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -501110,36 +494203,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3089] = { + [3043] = { [sym_identifier] = ACTIONS(7290), [anon_sym_COMMA] = ACTIONS(7292), [anon_sym_RPAREN] = ACTIONS(7292), [anon_sym_LPAREN2] = ACTIONS(7292), - [anon_sym_DASH] = ACTIONS(7290), - [anon_sym_PLUS] = ACTIONS(7290), - [anon_sym_STAR] = ACTIONS(7290), - [anon_sym_SLASH] = ACTIONS(7290), - [anon_sym_PERCENT] = ACTIONS(7290), - [anon_sym_PIPE_PIPE] = ACTIONS(7292), - [anon_sym_AMP_AMP] = ACTIONS(7292), - [anon_sym_PIPE] = ACTIONS(7290), - [anon_sym_CARET] = ACTIONS(7290), - [anon_sym_AMP] = ACTIONS(7290), - [anon_sym_EQ_EQ] = ACTIONS(7292), - [anon_sym_BANG_EQ] = ACTIONS(7292), - [anon_sym_GT] = ACTIONS(7290), - [anon_sym_GT_EQ] = ACTIONS(7292), - [anon_sym_LT_EQ] = ACTIONS(7292), - [anon_sym_LT] = ACTIONS(7290), - [anon_sym_LT_LT] = ACTIONS(7290), - [anon_sym_GT_GT] = ACTIONS(7290), [anon_sym_SEMI] = ACTIONS(7292), + [anon_sym_typedef] = ACTIONS(7290), + [anon_sym_extern] = ACTIONS(7290), [anon_sym___attribute] = ACTIONS(7290), [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___declspec] = ACTIONS(7290), + [anon_sym_LBRACE] = ACTIONS(7292), [anon_sym_RBRACE] = ACTIONS(7292), [anon_sym_LBRACK] = ACTIONS(7292), - [anon_sym_RBRACK] = ACTIONS(7292), - [anon_sym_EQ] = ACTIONS(7290), + [anon_sym_static] = ACTIONS(7290), + [anon_sym_auto] = ACTIONS(7290), + [anon_sym_register] = ACTIONS(7290), + [anon_sym_inline] = ACTIONS(7290), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7290), [anon_sym_const] = ACTIONS(7290), [anon_sym_volatile] = ACTIONS(7290), [anon_sym_restrict] = ACTIONS(7290), @@ -501171,23 +494253,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_IBOutlet] = ACTIONS(7290), [anon_sym_IBInspectable] = ACTIONS(7290), [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7290), + [anon_sym_signed] = ACTIONS(7290), + [anon_sym_unsigned] = ACTIONS(7290), + [anon_sym_long] = ACTIONS(7290), + [anon_sym_short] = ACTIONS(7290), + [sym_primitive_type] = ACTIONS(7290), + [anon_sym_enum] = ACTIONS(7290), [anon_sym_COLON] = ACTIONS(7292), - [anon_sym_QMARK] = ACTIONS(7292), - [anon_sym_STAR_EQ] = ACTIONS(7292), - [anon_sym_SLASH_EQ] = ACTIONS(7292), - [anon_sym_PERCENT_EQ] = ACTIONS(7292), - [anon_sym_PLUS_EQ] = ACTIONS(7292), - [anon_sym_DASH_EQ] = ACTIONS(7292), - [anon_sym_LT_LT_EQ] = ACTIONS(7292), - [anon_sym_GT_GT_EQ] = ACTIONS(7292), - [anon_sym_AMP_EQ] = ACTIONS(7292), - [anon_sym_CARET_EQ] = ACTIONS(7292), - [anon_sym_PIPE_EQ] = ACTIONS(7292), - [anon_sym_DASH_DASH] = ACTIONS(7292), - [anon_sym_PLUS_PLUS] = ACTIONS(7292), - [anon_sym_DOT] = ACTIONS(7292), - [anon_sym_DASH_GT] = ACTIONS(7292), + [anon_sym_struct] = ACTIONS(7290), + [anon_sym_ATdefs] = ACTIONS(7292), + [anon_sym_union] = ACTIONS(7290), [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(7292), + [anon_sym_ATinterface] = ACTIONS(7292), [sym_method_attribute_specifier] = ACTIONS(7290), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7290), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7290), @@ -501213,6 +494291,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7290), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7290), [anon_sym_NS_SWIFT_NAME] = ACTIONS(7290), + [anon_sym_ATimplementation] = ACTIONS(7292), + [anon_sym_NS_ENUM] = ACTIONS(7290), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7290), + [anon_sym_NS_OPTIONS] = ACTIONS(7290), + [anon_sym_typeof] = ACTIONS(7290), + [anon_sym___typeof] = ACTIONS(7290), + [anon_sym___typeof__] = ACTIONS(7290), + [sym_id] = ACTIONS(7290), + [sym_instancetype] = ACTIONS(7290), + [sym_Class] = ACTIONS(7290), + [sym_SEL] = ACTIONS(7290), + [sym_IMP] = ACTIONS(7290), + [sym_BOOL] = ACTIONS(7290), + [sym_auto] = ACTIONS(7290), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -501220,22 +494312,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3090] = { + [3044] = { [sym_identifier] = ACTIONS(7294), - [aux_sym_preproc_def_token1] = ACTIONS(7296), - [anon_sym_DASH] = ACTIONS(7296), - [anon_sym_PLUS] = ACTIONS(7296), + [anon_sym_COMMA] = ACTIONS(7296), + [anon_sym_RPAREN] = ACTIONS(7296), + [anon_sym_LPAREN2] = ACTIONS(7296), + [anon_sym_SEMI] = ACTIONS(7296), [anon_sym_typedef] = ACTIONS(7294), [anon_sym_extern] = ACTIONS(7294), [anon_sym___attribute] = ACTIONS(7294), [anon_sym___attribute__] = ACTIONS(7294), [anon_sym___declspec] = ACTIONS(7294), - [anon_sym___cdecl] = ACTIONS(7294), - [anon_sym___clrcall] = ACTIONS(7294), - [anon_sym___stdcall] = ACTIONS(7294), - [anon_sym___fastcall] = ACTIONS(7294), - [anon_sym___thiscall] = ACTIONS(7294), - [anon_sym___vectorcall] = ACTIONS(7294), + [anon_sym_LBRACE] = ACTIONS(7296), + [anon_sym_RBRACE] = ACTIONS(7296), + [anon_sym_LBRACK] = ACTIONS(7296), [anon_sym_static] = ACTIONS(7294), [anon_sym_auto] = ACTIONS(7294), [anon_sym_register] = ACTIONS(7294), @@ -501278,14 +494368,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7294), [sym_primitive_type] = ACTIONS(7294), [anon_sym_enum] = ACTIONS(7294), - [anon_sym_NS_ENUM] = ACTIONS(7294), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7294), - [anon_sym_NS_OPTIONS] = ACTIONS(7294), + [anon_sym_COLON] = ACTIONS(7296), [anon_sym_struct] = ACTIONS(7294), + [anon_sym_ATdefs] = ACTIONS(7296), [anon_sym_union] = ACTIONS(7294), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7294), - [anon_sym_ATend] = ACTIONS(7296), + [anon_sym_ATprotocol] = ACTIONS(7296), + [anon_sym_ATinterface] = ACTIONS(7296), [sym_method_attribute_specifier] = ACTIONS(7294), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7294), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7294), @@ -501311,8 +494400,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7294), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7294), [anon_sym_NS_SWIFT_NAME] = ACTIONS(7294), - [anon_sym_ATsynthesize] = ACTIONS(7296), - [anon_sym_ATdynamic] = ACTIONS(7296), + [anon_sym_ATimplementation] = ACTIONS(7296), + [anon_sym_NS_ENUM] = ACTIONS(7294), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7294), + [anon_sym_NS_OPTIONS] = ACTIONS(7294), [anon_sym_typeof] = ACTIONS(7294), [anon_sym___typeof] = ACTIONS(7294), [anon_sym___typeof__] = ACTIONS(7294), @@ -501330,36 +494421,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3091] = { + [3045] = { [sym_identifier] = ACTIONS(7298), [anon_sym_COMMA] = ACTIONS(7300), [anon_sym_RPAREN] = ACTIONS(7300), [anon_sym_LPAREN2] = ACTIONS(7300), - [anon_sym_DASH] = ACTIONS(7298), - [anon_sym_PLUS] = ACTIONS(7298), - [anon_sym_STAR] = ACTIONS(7298), - [anon_sym_SLASH] = ACTIONS(7298), - [anon_sym_PERCENT] = ACTIONS(7298), - [anon_sym_PIPE_PIPE] = ACTIONS(7300), - [anon_sym_AMP_AMP] = ACTIONS(7300), - [anon_sym_PIPE] = ACTIONS(7298), - [anon_sym_CARET] = ACTIONS(7298), - [anon_sym_AMP] = ACTIONS(7298), - [anon_sym_EQ_EQ] = ACTIONS(7300), - [anon_sym_BANG_EQ] = ACTIONS(7300), - [anon_sym_GT] = ACTIONS(7298), - [anon_sym_GT_EQ] = ACTIONS(7300), - [anon_sym_LT_EQ] = ACTIONS(7300), - [anon_sym_LT] = ACTIONS(7298), - [anon_sym_LT_LT] = ACTIONS(7298), - [anon_sym_GT_GT] = ACTIONS(7298), [anon_sym_SEMI] = ACTIONS(7300), + [anon_sym_typedef] = ACTIONS(7298), + [anon_sym_extern] = ACTIONS(7298), [anon_sym___attribute] = ACTIONS(7298), [anon_sym___attribute__] = ACTIONS(7298), + [anon_sym___declspec] = ACTIONS(7298), + [anon_sym_LBRACE] = ACTIONS(7300), [anon_sym_RBRACE] = ACTIONS(7300), [anon_sym_LBRACK] = ACTIONS(7300), - [anon_sym_RBRACK] = ACTIONS(7300), - [anon_sym_EQ] = ACTIONS(7298), + [anon_sym_static] = ACTIONS(7298), + [anon_sym_auto] = ACTIONS(7298), + [anon_sym_register] = ACTIONS(7298), + [anon_sym_inline] = ACTIONS(7298), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7298), [anon_sym_const] = ACTIONS(7298), [anon_sym_volatile] = ACTIONS(7298), [anon_sym_restrict] = ACTIONS(7298), @@ -501391,23 +494471,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_IBOutlet] = ACTIONS(7298), [anon_sym_IBInspectable] = ACTIONS(7298), [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7298), + [anon_sym_signed] = ACTIONS(7298), + [anon_sym_unsigned] = ACTIONS(7298), + [anon_sym_long] = ACTIONS(7298), + [anon_sym_short] = ACTIONS(7298), + [sym_primitive_type] = ACTIONS(7298), + [anon_sym_enum] = ACTIONS(7298), [anon_sym_COLON] = ACTIONS(7300), - [anon_sym_QMARK] = ACTIONS(7300), - [anon_sym_STAR_EQ] = ACTIONS(7300), - [anon_sym_SLASH_EQ] = ACTIONS(7300), - [anon_sym_PERCENT_EQ] = ACTIONS(7300), - [anon_sym_PLUS_EQ] = ACTIONS(7300), - [anon_sym_DASH_EQ] = ACTIONS(7300), - [anon_sym_LT_LT_EQ] = ACTIONS(7300), - [anon_sym_GT_GT_EQ] = ACTIONS(7300), - [anon_sym_AMP_EQ] = ACTIONS(7300), - [anon_sym_CARET_EQ] = ACTIONS(7300), - [anon_sym_PIPE_EQ] = ACTIONS(7300), - [anon_sym_DASH_DASH] = ACTIONS(7300), - [anon_sym_PLUS_PLUS] = ACTIONS(7300), - [anon_sym_DOT] = ACTIONS(7300), - [anon_sym_DASH_GT] = ACTIONS(7300), + [anon_sym_struct] = ACTIONS(7298), + [anon_sym_ATdefs] = ACTIONS(7300), + [anon_sym_union] = ACTIONS(7298), [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(7300), + [anon_sym_ATinterface] = ACTIONS(7300), [sym_method_attribute_specifier] = ACTIONS(7298), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7298), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7298), @@ -501433,6 +494509,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7298), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7298), [anon_sym_NS_SWIFT_NAME] = ACTIONS(7298), + [anon_sym_ATimplementation] = ACTIONS(7300), + [anon_sym_NS_ENUM] = ACTIONS(7298), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7298), + [anon_sym_NS_OPTIONS] = ACTIONS(7298), + [anon_sym_typeof] = ACTIONS(7298), + [anon_sym___typeof] = ACTIONS(7298), + [anon_sym___typeof__] = ACTIONS(7298), + [sym_id] = ACTIONS(7298), + [sym_instancetype] = ACTIONS(7298), + [sym_Class] = ACTIONS(7298), + [sym_SEL] = ACTIONS(7298), + [sym_IMP] = ACTIONS(7298), + [sym_BOOL] = ACTIONS(7298), + [sym_auto] = ACTIONS(7298), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -501440,36 +494530,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3092] = { + [3046] = { [sym_identifier] = ACTIONS(7302), [anon_sym_COMMA] = ACTIONS(7304), [anon_sym_RPAREN] = ACTIONS(7304), [anon_sym_LPAREN2] = ACTIONS(7304), - [anon_sym_DASH] = ACTIONS(7302), - [anon_sym_PLUS] = ACTIONS(7302), - [anon_sym_STAR] = ACTIONS(7302), - [anon_sym_SLASH] = ACTIONS(7302), - [anon_sym_PERCENT] = ACTIONS(7302), - [anon_sym_PIPE_PIPE] = ACTIONS(7304), - [anon_sym_AMP_AMP] = ACTIONS(7304), - [anon_sym_PIPE] = ACTIONS(7302), - [anon_sym_CARET] = ACTIONS(7302), - [anon_sym_AMP] = ACTIONS(7302), - [anon_sym_EQ_EQ] = ACTIONS(7304), - [anon_sym_BANG_EQ] = ACTIONS(7304), - [anon_sym_GT] = ACTIONS(7302), - [anon_sym_GT_EQ] = ACTIONS(7304), - [anon_sym_LT_EQ] = ACTIONS(7304), - [anon_sym_LT] = ACTIONS(7302), - [anon_sym_LT_LT] = ACTIONS(7302), - [anon_sym_GT_GT] = ACTIONS(7302), [anon_sym_SEMI] = ACTIONS(7304), + [anon_sym_typedef] = ACTIONS(7302), + [anon_sym_extern] = ACTIONS(7302), [anon_sym___attribute] = ACTIONS(7302), [anon_sym___attribute__] = ACTIONS(7302), + [anon_sym___declspec] = ACTIONS(7302), + [anon_sym_LBRACE] = ACTIONS(7304), [anon_sym_RBRACE] = ACTIONS(7304), [anon_sym_LBRACK] = ACTIONS(7304), - [anon_sym_RBRACK] = ACTIONS(7304), - [anon_sym_EQ] = ACTIONS(7302), + [anon_sym_static] = ACTIONS(7302), + [anon_sym_auto] = ACTIONS(7302), + [anon_sym_register] = ACTIONS(7302), + [anon_sym_inline] = ACTIONS(7302), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7302), [anon_sym_const] = ACTIONS(7302), [anon_sym_volatile] = ACTIONS(7302), [anon_sym_restrict] = ACTIONS(7302), @@ -501501,23 +494580,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_IBOutlet] = ACTIONS(7302), [anon_sym_IBInspectable] = ACTIONS(7302), [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7302), + [anon_sym_signed] = ACTIONS(7302), + [anon_sym_unsigned] = ACTIONS(7302), + [anon_sym_long] = ACTIONS(7302), + [anon_sym_short] = ACTIONS(7302), + [sym_primitive_type] = ACTIONS(7302), + [anon_sym_enum] = ACTIONS(7302), [anon_sym_COLON] = ACTIONS(7304), - [anon_sym_QMARK] = ACTIONS(7304), - [anon_sym_STAR_EQ] = ACTIONS(7304), - [anon_sym_SLASH_EQ] = ACTIONS(7304), - [anon_sym_PERCENT_EQ] = ACTIONS(7304), - [anon_sym_PLUS_EQ] = ACTIONS(7304), - [anon_sym_DASH_EQ] = ACTIONS(7304), - [anon_sym_LT_LT_EQ] = ACTIONS(7304), - [anon_sym_GT_GT_EQ] = ACTIONS(7304), - [anon_sym_AMP_EQ] = ACTIONS(7304), - [anon_sym_CARET_EQ] = ACTIONS(7304), - [anon_sym_PIPE_EQ] = ACTIONS(7304), - [anon_sym_DASH_DASH] = ACTIONS(7304), - [anon_sym_PLUS_PLUS] = ACTIONS(7304), - [anon_sym_DOT] = ACTIONS(7304), - [anon_sym_DASH_GT] = ACTIONS(7304), + [anon_sym_struct] = ACTIONS(7302), + [anon_sym_ATdefs] = ACTIONS(7304), + [anon_sym_union] = ACTIONS(7302), [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(7304), + [anon_sym_ATinterface] = ACTIONS(7304), [sym_method_attribute_specifier] = ACTIONS(7302), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7302), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7302), @@ -501543,6 +494618,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7302), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7302), [anon_sym_NS_SWIFT_NAME] = ACTIONS(7302), + [anon_sym_ATimplementation] = ACTIONS(7304), + [anon_sym_NS_ENUM] = ACTIONS(7302), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7302), + [anon_sym_NS_OPTIONS] = ACTIONS(7302), + [anon_sym_typeof] = ACTIONS(7302), + [anon_sym___typeof] = ACTIONS(7302), + [anon_sym___typeof__] = ACTIONS(7302), + [sym_id] = ACTIONS(7302), + [sym_instancetype] = ACTIONS(7302), + [sym_Class] = ACTIONS(7302), + [sym_SEL] = ACTIONS(7302), + [sym_IMP] = ACTIONS(7302), + [sym_BOOL] = ACTIONS(7302), + [sym_auto] = ACTIONS(7302), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -501550,22 +494639,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3093] = { + [3047] = { [sym_identifier] = ACTIONS(7306), [aux_sym_preproc_def_token1] = ACTIONS(7308), + [anon_sym_LPAREN2] = ACTIONS(7308), [anon_sym_DASH] = ACTIONS(7308), [anon_sym_PLUS] = ACTIONS(7308), + [anon_sym_LT] = ACTIONS(7308), [anon_sym_typedef] = ACTIONS(7306), [anon_sym_extern] = ACTIONS(7306), [anon_sym___attribute] = ACTIONS(7306), [anon_sym___attribute__] = ACTIONS(7306), [anon_sym___declspec] = ACTIONS(7306), - [anon_sym___cdecl] = ACTIONS(7306), - [anon_sym___clrcall] = ACTIONS(7306), - [anon_sym___stdcall] = ACTIONS(7306), - [anon_sym___fastcall] = ACTIONS(7306), - [anon_sym___thiscall] = ACTIONS(7306), - [anon_sym___vectorcall] = ACTIONS(7306), + [anon_sym_LBRACE] = ACTIONS(7308), [anon_sym_static] = ACTIONS(7306), [anon_sym_auto] = ACTIONS(7306), [anon_sym_register] = ACTIONS(7306), @@ -501608,14 +494694,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7306), [sym_primitive_type] = ACTIONS(7306), [anon_sym_enum] = ACTIONS(7306), - [anon_sym_NS_ENUM] = ACTIONS(7306), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7306), - [anon_sym_NS_OPTIONS] = ACTIONS(7306), + [anon_sym_COLON] = ACTIONS(7308), [anon_sym_struct] = ACTIONS(7306), [anon_sym_union] = ACTIONS(7306), [sym_comment] = ACTIONS(3), [sym__ns_assume_nonnull_declaration] = ACTIONS(7306), [anon_sym_ATend] = ACTIONS(7308), + [sym_optional] = ACTIONS(7308), + [sym_required] = ACTIONS(7308), + [anon_sym_ATproperty] = ACTIONS(7308), [sym_method_attribute_specifier] = ACTIONS(7306), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7306), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7306), @@ -501641,8 +494728,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7306), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7306), [anon_sym_NS_SWIFT_NAME] = ACTIONS(7306), - [anon_sym_ATsynthesize] = ACTIONS(7308), - [anon_sym_ATdynamic] = ACTIONS(7308), + [anon_sym_NS_ENUM] = ACTIONS(7306), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7306), + [anon_sym_NS_OPTIONS] = ACTIONS(7306), [anon_sym_typeof] = ACTIONS(7306), [anon_sym___typeof] = ACTIONS(7306), [anon_sym___typeof__] = ACTIONS(7306), @@ -501660,146 +494748,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3094] = { - [sym_identifier] = ACTIONS(7294), - [aux_sym_preproc_def_token1] = ACTIONS(7296), - [anon_sym_DASH] = ACTIONS(7296), - [anon_sym_PLUS] = ACTIONS(7296), - [anon_sym_typedef] = ACTIONS(7294), - [anon_sym_extern] = ACTIONS(7294), - [anon_sym___attribute] = ACTIONS(7294), - [anon_sym___attribute__] = ACTIONS(7294), - [anon_sym___declspec] = ACTIONS(7294), - [anon_sym___cdecl] = ACTIONS(7294), - [anon_sym___clrcall] = ACTIONS(7294), - [anon_sym___stdcall] = ACTIONS(7294), - [anon_sym___fastcall] = ACTIONS(7294), - [anon_sym___thiscall] = ACTIONS(7294), - [anon_sym___vectorcall] = ACTIONS(7294), - [anon_sym_static] = ACTIONS(7294), - [anon_sym_auto] = ACTIONS(7294), - [anon_sym_register] = ACTIONS(7294), - [anon_sym_inline] = ACTIONS(7294), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7294), - [anon_sym_const] = ACTIONS(7294), - [anon_sym_volatile] = ACTIONS(7294), - [anon_sym_restrict] = ACTIONS(7294), - [anon_sym__Atomic] = ACTIONS(7294), - [anon_sym_in] = ACTIONS(7294), - [anon_sym_out] = ACTIONS(7294), - [anon_sym_inout] = ACTIONS(7294), - [anon_sym_bycopy] = ACTIONS(7294), - [anon_sym_byref] = ACTIONS(7294), - [anon_sym_oneway] = ACTIONS(7294), - [anon_sym__Nullable] = ACTIONS(7294), - [anon_sym__Nonnull] = ACTIONS(7294), - [anon_sym__Nullable_result] = ACTIONS(7294), - [anon_sym__Null_unspecified] = ACTIONS(7294), - [anon_sym___autoreleasing] = ACTIONS(7294), - [anon_sym___nullable] = ACTIONS(7294), - [anon_sym___nonnull] = ACTIONS(7294), - [anon_sym___strong] = ACTIONS(7294), - [anon_sym___weak] = ACTIONS(7294), - [anon_sym___bridge] = ACTIONS(7294), - [anon_sym___bridge_transfer] = ACTIONS(7294), - [anon_sym___bridge_retained] = ACTIONS(7294), - [anon_sym___unsafe_unretained] = ACTIONS(7294), - [anon_sym___block] = ACTIONS(7294), - [anon_sym___kindof] = ACTIONS(7294), - [anon_sym___unused] = ACTIONS(7294), - [anon_sym__Complex] = ACTIONS(7294), - [anon_sym___complex] = ACTIONS(7294), - [anon_sym_IBOutlet] = ACTIONS(7294), - [anon_sym_IBInspectable] = ACTIONS(7294), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7294), - [anon_sym_signed] = ACTIONS(7294), - [anon_sym_unsigned] = ACTIONS(7294), - [anon_sym_long] = ACTIONS(7294), - [anon_sym_short] = ACTIONS(7294), - [sym_primitive_type] = ACTIONS(7294), - [anon_sym_enum] = ACTIONS(7294), - [anon_sym_NS_ENUM] = ACTIONS(7294), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7294), - [anon_sym_NS_OPTIONS] = ACTIONS(7294), - [anon_sym_struct] = ACTIONS(7294), - [anon_sym_union] = ACTIONS(7294), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7294), - [anon_sym_ATend] = ACTIONS(7296), - [sym_method_attribute_specifier] = ACTIONS(7294), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7294), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7294), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7294), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7294), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7294), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7294), - [anon_sym_NS_AVAILABLE] = ACTIONS(7294), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7294), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7294), - [anon_sym_API_AVAILABLE] = ACTIONS(7294), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7294), - [anon_sym_API_DEPRECATED] = ACTIONS(7294), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7294), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7294), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7294), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7294), - [anon_sym___deprecated_msg] = ACTIONS(7294), - [anon_sym___deprecated_enum_msg] = ACTIONS(7294), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7294), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7294), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7294), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7294), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7294), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7294), - [anon_sym_ATsynthesize] = ACTIONS(7296), - [anon_sym_ATdynamic] = ACTIONS(7296), - [anon_sym_typeof] = ACTIONS(7294), - [anon_sym___typeof] = ACTIONS(7294), - [anon_sym___typeof__] = ACTIONS(7294), - [sym_id] = ACTIONS(7294), - [sym_instancetype] = ACTIONS(7294), - [sym_Class] = ACTIONS(7294), - [sym_SEL] = ACTIONS(7294), - [sym_IMP] = ACTIONS(7294), - [sym_BOOL] = ACTIONS(7294), - [sym_auto] = ACTIONS(7294), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3095] = { + [3048] = { [sym_identifier] = ACTIONS(7310), [anon_sym_COMMA] = ACTIONS(7312), [anon_sym_RPAREN] = ACTIONS(7312), [anon_sym_LPAREN2] = ACTIONS(7312), - [anon_sym_DASH] = ACTIONS(7310), - [anon_sym_PLUS] = ACTIONS(7310), - [anon_sym_STAR] = ACTIONS(7310), - [anon_sym_SLASH] = ACTIONS(7310), - [anon_sym_PERCENT] = ACTIONS(7310), - [anon_sym_PIPE_PIPE] = ACTIONS(7312), - [anon_sym_AMP_AMP] = ACTIONS(7312), - [anon_sym_PIPE] = ACTIONS(7310), - [anon_sym_CARET] = ACTIONS(7310), - [anon_sym_AMP] = ACTIONS(7310), - [anon_sym_EQ_EQ] = ACTIONS(7312), - [anon_sym_BANG_EQ] = ACTIONS(7312), - [anon_sym_GT] = ACTIONS(7310), - [anon_sym_GT_EQ] = ACTIONS(7312), - [anon_sym_LT_EQ] = ACTIONS(7312), - [anon_sym_LT] = ACTIONS(7310), - [anon_sym_LT_LT] = ACTIONS(7310), - [anon_sym_GT_GT] = ACTIONS(7310), [anon_sym_SEMI] = ACTIONS(7312), + [anon_sym_typedef] = ACTIONS(7310), + [anon_sym_extern] = ACTIONS(7310), [anon_sym___attribute] = ACTIONS(7310), [anon_sym___attribute__] = ACTIONS(7310), + [anon_sym___declspec] = ACTIONS(7310), + [anon_sym_LBRACE] = ACTIONS(7312), [anon_sym_RBRACE] = ACTIONS(7312), [anon_sym_LBRACK] = ACTIONS(7312), - [anon_sym_RBRACK] = ACTIONS(7312), - [anon_sym_EQ] = ACTIONS(7310), + [anon_sym_static] = ACTIONS(7310), + [anon_sym_auto] = ACTIONS(7310), + [anon_sym_register] = ACTIONS(7310), + [anon_sym_inline] = ACTIONS(7310), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7310), [anon_sym_const] = ACTIONS(7310), [anon_sym_volatile] = ACTIONS(7310), [anon_sym_restrict] = ACTIONS(7310), @@ -501831,23 +494798,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_IBOutlet] = ACTIONS(7310), [anon_sym_IBInspectable] = ACTIONS(7310), [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7310), + [anon_sym_signed] = ACTIONS(7310), + [anon_sym_unsigned] = ACTIONS(7310), + [anon_sym_long] = ACTIONS(7310), + [anon_sym_short] = ACTIONS(7310), + [sym_primitive_type] = ACTIONS(7310), + [anon_sym_enum] = ACTIONS(7310), [anon_sym_COLON] = ACTIONS(7312), - [anon_sym_QMARK] = ACTIONS(7312), - [anon_sym_STAR_EQ] = ACTIONS(7312), - [anon_sym_SLASH_EQ] = ACTIONS(7312), - [anon_sym_PERCENT_EQ] = ACTIONS(7312), - [anon_sym_PLUS_EQ] = ACTIONS(7312), - [anon_sym_DASH_EQ] = ACTIONS(7312), - [anon_sym_LT_LT_EQ] = ACTIONS(7312), - [anon_sym_GT_GT_EQ] = ACTIONS(7312), - [anon_sym_AMP_EQ] = ACTIONS(7312), - [anon_sym_CARET_EQ] = ACTIONS(7312), - [anon_sym_PIPE_EQ] = ACTIONS(7312), - [anon_sym_DASH_DASH] = ACTIONS(7312), - [anon_sym_PLUS_PLUS] = ACTIONS(7312), - [anon_sym_DOT] = ACTIONS(7312), - [anon_sym_DASH_GT] = ACTIONS(7312), + [anon_sym_struct] = ACTIONS(7310), + [anon_sym_ATdefs] = ACTIONS(7312), + [anon_sym_union] = ACTIONS(7310), [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(7312), + [anon_sym_ATinterface] = ACTIONS(7312), [sym_method_attribute_specifier] = ACTIONS(7310), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7310), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7310), @@ -501873,6 +494836,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7310), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7310), [anon_sym_NS_SWIFT_NAME] = ACTIONS(7310), + [anon_sym_ATimplementation] = ACTIONS(7312), + [anon_sym_NS_ENUM] = ACTIONS(7310), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7310), + [anon_sym_NS_OPTIONS] = ACTIONS(7310), + [anon_sym_typeof] = ACTIONS(7310), + [anon_sym___typeof] = ACTIONS(7310), + [anon_sym___typeof__] = ACTIONS(7310), + [sym_id] = ACTIONS(7310), + [sym_instancetype] = ACTIONS(7310), + [sym_Class] = ACTIONS(7310), + [sym_SEL] = ACTIONS(7310), + [sym_IMP] = ACTIONS(7310), + [sym_BOOL] = ACTIONS(7310), + [sym_auto] = ACTIONS(7310), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -501880,109 +494857,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3096] = { - [sym_identifier] = ACTIONS(7314), - [anon_sym_COMMA] = ACTIONS(7316), - [anon_sym_RPAREN] = ACTIONS(7316), - [anon_sym_LPAREN2] = ACTIONS(7316), - [anon_sym_DASH] = ACTIONS(7314), - [anon_sym_PLUS] = ACTIONS(7314), - [anon_sym_STAR] = ACTIONS(7314), - [anon_sym_SLASH] = ACTIONS(7314), - [anon_sym_PERCENT] = ACTIONS(7314), - [anon_sym_PIPE_PIPE] = ACTIONS(7316), - [anon_sym_AMP_AMP] = ACTIONS(7316), - [anon_sym_PIPE] = ACTIONS(7314), - [anon_sym_CARET] = ACTIONS(7314), - [anon_sym_AMP] = ACTIONS(7314), - [anon_sym_EQ_EQ] = ACTIONS(7316), - [anon_sym_BANG_EQ] = ACTIONS(7316), - [anon_sym_GT] = ACTIONS(7314), - [anon_sym_GT_EQ] = ACTIONS(7316), - [anon_sym_LT_EQ] = ACTIONS(7316), + [3049] = { + [sym_generic_type_references] = STATE(2750), + [sym_identifier] = ACTIONS(6781), + [aux_sym_preproc_def_token1] = ACTIONS(6783), + [anon_sym_DASH] = ACTIONS(6783), + [anon_sym_PLUS] = ACTIONS(6783), [anon_sym_LT] = ACTIONS(7314), - [anon_sym_LT_LT] = ACTIONS(7314), - [anon_sym_GT_GT] = ACTIONS(7314), - [anon_sym_SEMI] = ACTIONS(7316), - [anon_sym___attribute] = ACTIONS(7314), - [anon_sym___attribute__] = ACTIONS(7314), - [anon_sym_RBRACE] = ACTIONS(7316), - [anon_sym_LBRACK] = ACTIONS(7316), - [anon_sym_RBRACK] = ACTIONS(7316), - [anon_sym_EQ] = ACTIONS(7314), - [anon_sym_const] = ACTIONS(7314), - [anon_sym_volatile] = ACTIONS(7314), - [anon_sym_restrict] = ACTIONS(7314), - [anon_sym__Atomic] = ACTIONS(7314), - [anon_sym_in] = ACTIONS(7314), - [anon_sym_out] = ACTIONS(7314), - [anon_sym_inout] = ACTIONS(7314), - [anon_sym_bycopy] = ACTIONS(7314), - [anon_sym_byref] = ACTIONS(7314), - [anon_sym_oneway] = ACTIONS(7314), - [anon_sym__Nullable] = ACTIONS(7314), - [anon_sym__Nonnull] = ACTIONS(7314), - [anon_sym__Nullable_result] = ACTIONS(7314), - [anon_sym__Null_unspecified] = ACTIONS(7314), - [anon_sym___autoreleasing] = ACTIONS(7314), - [anon_sym___nullable] = ACTIONS(7314), - [anon_sym___nonnull] = ACTIONS(7314), - [anon_sym___strong] = ACTIONS(7314), - [anon_sym___weak] = ACTIONS(7314), - [anon_sym___bridge] = ACTIONS(7314), - [anon_sym___bridge_transfer] = ACTIONS(7314), - [anon_sym___bridge_retained] = ACTIONS(7314), - [anon_sym___unsafe_unretained] = ACTIONS(7314), - [anon_sym___block] = ACTIONS(7314), - [anon_sym___kindof] = ACTIONS(7314), - [anon_sym___unused] = ACTIONS(7314), - [anon_sym__Complex] = ACTIONS(7314), - [anon_sym___complex] = ACTIONS(7314), - [anon_sym_IBOutlet] = ACTIONS(7314), - [anon_sym_IBInspectable] = ACTIONS(7314), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7314), - [anon_sym_COLON] = ACTIONS(7316), - [anon_sym_QMARK] = ACTIONS(7316), - [anon_sym_STAR_EQ] = ACTIONS(7316), - [anon_sym_SLASH_EQ] = ACTIONS(7316), - [anon_sym_PERCENT_EQ] = ACTIONS(7316), - [anon_sym_PLUS_EQ] = ACTIONS(7316), - [anon_sym_DASH_EQ] = ACTIONS(7316), - [anon_sym_LT_LT_EQ] = ACTIONS(7316), - [anon_sym_GT_GT_EQ] = ACTIONS(7316), - [anon_sym_AMP_EQ] = ACTIONS(7316), - [anon_sym_CARET_EQ] = ACTIONS(7316), - [anon_sym_PIPE_EQ] = ACTIONS(7316), - [anon_sym_DASH_DASH] = ACTIONS(7316), - [anon_sym_PLUS_PLUS] = ACTIONS(7316), - [anon_sym_DOT] = ACTIONS(7316), - [anon_sym_DASH_GT] = ACTIONS(7316), + [anon_sym_typedef] = ACTIONS(6781), + [anon_sym_extern] = ACTIONS(6781), + [anon_sym___attribute] = ACTIONS(6781), + [anon_sym___attribute__] = ACTIONS(6781), + [anon_sym___declspec] = ACTIONS(6781), + [anon_sym_LBRACE] = ACTIONS(6783), + [anon_sym_static] = ACTIONS(6781), + [anon_sym_auto] = ACTIONS(6781), + [anon_sym_register] = ACTIONS(6781), + [anon_sym_inline] = ACTIONS(6781), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6781), + [anon_sym_const] = ACTIONS(6781), + [anon_sym_volatile] = ACTIONS(6781), + [anon_sym_restrict] = ACTIONS(6781), + [anon_sym__Atomic] = ACTIONS(6781), + [anon_sym_in] = ACTIONS(6781), + [anon_sym_out] = ACTIONS(6781), + [anon_sym_inout] = ACTIONS(6781), + [anon_sym_bycopy] = ACTIONS(6781), + [anon_sym_byref] = ACTIONS(6781), + [anon_sym_oneway] = ACTIONS(6781), + [anon_sym__Nullable] = ACTIONS(6781), + [anon_sym__Nonnull] = ACTIONS(6781), + [anon_sym__Nullable_result] = ACTIONS(6781), + [anon_sym__Null_unspecified] = ACTIONS(6781), + [anon_sym___autoreleasing] = ACTIONS(6781), + [anon_sym___nullable] = ACTIONS(6781), + [anon_sym___nonnull] = ACTIONS(6781), + [anon_sym___strong] = ACTIONS(6781), + [anon_sym___weak] = ACTIONS(6781), + [anon_sym___bridge] = ACTIONS(6781), + [anon_sym___bridge_transfer] = ACTIONS(6781), + [anon_sym___bridge_retained] = ACTIONS(6781), + [anon_sym___unsafe_unretained] = ACTIONS(6781), + [anon_sym___block] = ACTIONS(6781), + [anon_sym___kindof] = ACTIONS(6781), + [anon_sym___unused] = ACTIONS(6781), + [anon_sym__Complex] = ACTIONS(6781), + [anon_sym___complex] = ACTIONS(6781), + [anon_sym_IBOutlet] = ACTIONS(6781), + [anon_sym_IBInspectable] = ACTIONS(6781), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6781), + [anon_sym_signed] = ACTIONS(6781), + [anon_sym_unsigned] = ACTIONS(6781), + [anon_sym_long] = ACTIONS(6781), + [anon_sym_short] = ACTIONS(6781), + [sym_primitive_type] = ACTIONS(6781), + [anon_sym_enum] = ACTIONS(6781), + [anon_sym_struct] = ACTIONS(6781), + [anon_sym_union] = ACTIONS(6781), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7314), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7314), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7314), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7314), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7314), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7314), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7314), - [anon_sym_NS_AVAILABLE] = ACTIONS(7314), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7314), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7314), - [anon_sym_API_AVAILABLE] = ACTIONS(7314), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7314), - [anon_sym_API_DEPRECATED] = ACTIONS(7314), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7314), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7314), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7314), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7314), - [anon_sym___deprecated_msg] = ACTIONS(7314), - [anon_sym___deprecated_enum_msg] = ACTIONS(7314), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7314), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7314), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7314), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7314), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7314), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7314), + [sym__ns_assume_nonnull_declaration] = ACTIONS(6781), + [anon_sym_ATend] = ACTIONS(6783), + [sym_optional] = ACTIONS(6783), + [sym_required] = ACTIONS(6783), + [anon_sym_ATproperty] = ACTIONS(6783), + [sym_method_attribute_specifier] = ACTIONS(6781), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6781), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6781), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6781), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6781), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6781), + [anon_sym_NS_AVAILABLE] = ACTIONS(6781), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6781), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_API_AVAILABLE] = ACTIONS(6781), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_API_DEPRECATED] = ACTIONS(6781), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6781), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6781), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6781), + [anon_sym___deprecated_msg] = ACTIONS(6781), + [anon_sym___deprecated_enum_msg] = ACTIONS(6781), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6781), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6781), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6781), + [anon_sym_NS_ENUM] = ACTIONS(6781), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(6781), + [anon_sym_NS_OPTIONS] = ACTIONS(6781), + [anon_sym_typeof] = ACTIONS(6781), + [anon_sym___typeof] = ACTIONS(6781), + [anon_sym___typeof__] = ACTIONS(6781), + [sym_id] = ACTIONS(6781), + [sym_instancetype] = ACTIONS(6781), + [sym_Class] = ACTIONS(6781), + [sym_SEL] = ACTIONS(6781), + [sym_IMP] = ACTIONS(6781), + [sym_BOOL] = ACTIONS(6781), + [sym_auto] = ACTIONS(6781), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -501990,108 +494965,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3097] = { - [sym_identifier] = ACTIONS(7318), - [anon_sym_COMMA] = ACTIONS(7320), - [anon_sym_RPAREN] = ACTIONS(7320), - [anon_sym_LPAREN2] = ACTIONS(7320), - [anon_sym_SEMI] = ACTIONS(7320), - [anon_sym_typedef] = ACTIONS(7318), - [anon_sym_extern] = ACTIONS(7318), - [anon_sym___attribute] = ACTIONS(7318), - [anon_sym___attribute__] = ACTIONS(7318), - [anon_sym___declspec] = ACTIONS(7318), - [anon_sym_LBRACE] = ACTIONS(7320), - [anon_sym_RBRACE] = ACTIONS(7320), - [anon_sym_LBRACK] = ACTIONS(7320), - [anon_sym_static] = ACTIONS(7318), - [anon_sym_auto] = ACTIONS(7318), - [anon_sym_register] = ACTIONS(7318), - [anon_sym_inline] = ACTIONS(7318), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7318), - [anon_sym_const] = ACTIONS(7318), - [anon_sym_volatile] = ACTIONS(7318), - [anon_sym_restrict] = ACTIONS(7318), - [anon_sym__Atomic] = ACTIONS(7318), - [anon_sym_in] = ACTIONS(7318), - [anon_sym_out] = ACTIONS(7318), - [anon_sym_inout] = ACTIONS(7318), - [anon_sym_bycopy] = ACTIONS(7318), - [anon_sym_byref] = ACTIONS(7318), - [anon_sym_oneway] = ACTIONS(7318), - [anon_sym__Nullable] = ACTIONS(7318), - [anon_sym__Nonnull] = ACTIONS(7318), - [anon_sym__Nullable_result] = ACTIONS(7318), - [anon_sym__Null_unspecified] = ACTIONS(7318), - [anon_sym___autoreleasing] = ACTIONS(7318), - [anon_sym___nullable] = ACTIONS(7318), - [anon_sym___nonnull] = ACTIONS(7318), - [anon_sym___strong] = ACTIONS(7318), - [anon_sym___weak] = ACTIONS(7318), - [anon_sym___bridge] = ACTIONS(7318), - [anon_sym___bridge_transfer] = ACTIONS(7318), - [anon_sym___bridge_retained] = ACTIONS(7318), - [anon_sym___unsafe_unretained] = ACTIONS(7318), - [anon_sym___block] = ACTIONS(7318), - [anon_sym___kindof] = ACTIONS(7318), - [anon_sym___unused] = ACTIONS(7318), - [anon_sym__Complex] = ACTIONS(7318), - [anon_sym___complex] = ACTIONS(7318), - [anon_sym_IBOutlet] = ACTIONS(7318), - [anon_sym_IBInspectable] = ACTIONS(7318), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7318), - [anon_sym_signed] = ACTIONS(7318), - [anon_sym_unsigned] = ACTIONS(7318), - [anon_sym_long] = ACTIONS(7318), - [anon_sym_short] = ACTIONS(7318), - [sym_primitive_type] = ACTIONS(7318), - [anon_sym_enum] = ACTIONS(7318), - [anon_sym_COLON] = ACTIONS(7320), - [anon_sym_NS_ENUM] = ACTIONS(7318), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7318), - [anon_sym_NS_OPTIONS] = ACTIONS(7318), - [anon_sym_struct] = ACTIONS(7318), - [anon_sym_ATdefs] = ACTIONS(7320), - [anon_sym_union] = ACTIONS(7318), + [3050] = { + [sym_string_literal] = STATE(3056), + [aux_sym_string_expression_repeat1] = STATE(3051), + [sym_identifier] = ACTIONS(6760), + [anon_sym_COMMA] = ACTIONS(6762), + [anon_sym_RPAREN] = ACTIONS(6762), + [anon_sym_LPAREN2] = ACTIONS(6762), + [anon_sym_DASH] = ACTIONS(6760), + [anon_sym_PLUS] = ACTIONS(6760), + [anon_sym_STAR] = ACTIONS(6762), + [anon_sym_SLASH] = ACTIONS(6760), + [anon_sym_PERCENT] = ACTIONS(6762), + [anon_sym_PIPE_PIPE] = ACTIONS(6762), + [anon_sym_AMP_AMP] = ACTIONS(6762), + [anon_sym_PIPE] = ACTIONS(6760), + [anon_sym_CARET] = ACTIONS(6762), + [anon_sym_AMP] = ACTIONS(6760), + [anon_sym_EQ_EQ] = ACTIONS(6762), + [anon_sym_BANG_EQ] = ACTIONS(6762), + [anon_sym_GT] = ACTIONS(6760), + [anon_sym_GT_EQ] = ACTIONS(6762), + [anon_sym_LT_EQ] = ACTIONS(6762), + [anon_sym_LT] = ACTIONS(6760), + [anon_sym_LT_LT] = ACTIONS(6762), + [anon_sym_GT_GT] = ACTIONS(6762), + [anon_sym_SEMI] = ACTIONS(6762), + [anon_sym___attribute] = ACTIONS(6760), + [anon_sym___attribute__] = ACTIONS(6760), + [anon_sym_RBRACE] = ACTIONS(6762), + [anon_sym_LBRACK] = ACTIONS(6762), + [anon_sym_RBRACK] = ACTIONS(6762), + [anon_sym_const] = ACTIONS(6760), + [anon_sym_volatile] = ACTIONS(6760), + [anon_sym_restrict] = ACTIONS(6760), + [anon_sym__Atomic] = ACTIONS(6760), + [anon_sym_in] = ACTIONS(6760), + [anon_sym_out] = ACTIONS(6760), + [anon_sym_inout] = ACTIONS(6760), + [anon_sym_bycopy] = ACTIONS(6760), + [anon_sym_byref] = ACTIONS(6760), + [anon_sym_oneway] = ACTIONS(6760), + [anon_sym__Nullable] = ACTIONS(6760), + [anon_sym__Nonnull] = ACTIONS(6760), + [anon_sym__Nullable_result] = ACTIONS(6760), + [anon_sym__Null_unspecified] = ACTIONS(6760), + [anon_sym___autoreleasing] = ACTIONS(6760), + [anon_sym___nullable] = ACTIONS(6760), + [anon_sym___nonnull] = ACTIONS(6760), + [anon_sym___strong] = ACTIONS(6760), + [anon_sym___weak] = ACTIONS(6760), + [anon_sym___bridge] = ACTIONS(6760), + [anon_sym___bridge_transfer] = ACTIONS(6760), + [anon_sym___bridge_retained] = ACTIONS(6760), + [anon_sym___unsafe_unretained] = ACTIONS(6760), + [anon_sym___block] = ACTIONS(6760), + [anon_sym___kindof] = ACTIONS(6760), + [anon_sym___unused] = ACTIONS(6760), + [anon_sym__Complex] = ACTIONS(6760), + [anon_sym___complex] = ACTIONS(6760), + [anon_sym_IBOutlet] = ACTIONS(6760), + [anon_sym_IBInspectable] = ACTIONS(6760), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6760), + [anon_sym_COLON] = ACTIONS(6762), + [anon_sym_QMARK] = ACTIONS(6762), + [anon_sym_DASH_DASH] = ACTIONS(6762), + [anon_sym_PLUS_PLUS] = ACTIONS(6762), + [anon_sym_DOT] = ACTIONS(6762), + [anon_sym_DASH_GT] = ACTIONS(6762), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(7320), - [anon_sym_ATinterface] = ACTIONS(7320), - [sym_method_attribute_specifier] = ACTIONS(7318), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7318), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7318), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7318), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7318), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7318), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7318), - [anon_sym_NS_AVAILABLE] = ACTIONS(7318), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7318), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7318), - [anon_sym_API_AVAILABLE] = ACTIONS(7318), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7318), - [anon_sym_API_DEPRECATED] = ACTIONS(7318), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7318), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7318), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7318), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7318), - [anon_sym___deprecated_msg] = ACTIONS(7318), - [anon_sym___deprecated_enum_msg] = ACTIONS(7318), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7318), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7318), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7318), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7318), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7318), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7318), - [anon_sym_ATimplementation] = ACTIONS(7320), - [anon_sym_typeof] = ACTIONS(7318), - [anon_sym___typeof] = ACTIONS(7318), - [anon_sym___typeof__] = ACTIONS(7318), - [sym_id] = ACTIONS(7318), - [sym_instancetype] = ACTIONS(7318), - [sym_Class] = ACTIONS(7318), - [sym_SEL] = ACTIONS(7318), - [sym_IMP] = ACTIONS(7318), - [sym_BOOL] = ACTIONS(7318), - [sym_auto] = ACTIONS(7318), + [sym_method_attribute_specifier] = ACTIONS(6760), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6760), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6760), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6760), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6760), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6760), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6760), + [anon_sym_NS_AVAILABLE] = ACTIONS(6760), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6760), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6760), + [anon_sym_API_AVAILABLE] = ACTIONS(6760), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6760), + [anon_sym_API_DEPRECATED] = ACTIONS(6760), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6760), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6760), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6760), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6760), + [anon_sym___deprecated_msg] = ACTIONS(6760), + [anon_sym___deprecated_enum_msg] = ACTIONS(6760), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6760), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6760), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6760), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6760), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6760), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6760), + [anon_sym_AT] = ACTIONS(7317), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -502099,108 +495072,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3098] = { - [sym_identifier] = ACTIONS(7322), - [anon_sym_COMMA] = ACTIONS(7324), - [anon_sym_RPAREN] = ACTIONS(7324), - [anon_sym_LPAREN2] = ACTIONS(7324), - [anon_sym_SEMI] = ACTIONS(7324), - [anon_sym_typedef] = ACTIONS(7322), - [anon_sym_extern] = ACTIONS(7322), - [anon_sym___attribute] = ACTIONS(7322), - [anon_sym___attribute__] = ACTIONS(7322), - [anon_sym___declspec] = ACTIONS(7322), - [anon_sym_LBRACE] = ACTIONS(7324), - [anon_sym_RBRACE] = ACTIONS(7324), - [anon_sym_LBRACK] = ACTIONS(7324), - [anon_sym_static] = ACTIONS(7322), - [anon_sym_auto] = ACTIONS(7322), - [anon_sym_register] = ACTIONS(7322), - [anon_sym_inline] = ACTIONS(7322), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7322), - [anon_sym_const] = ACTIONS(7322), - [anon_sym_volatile] = ACTIONS(7322), - [anon_sym_restrict] = ACTIONS(7322), - [anon_sym__Atomic] = ACTIONS(7322), - [anon_sym_in] = ACTIONS(7322), - [anon_sym_out] = ACTIONS(7322), - [anon_sym_inout] = ACTIONS(7322), - [anon_sym_bycopy] = ACTIONS(7322), - [anon_sym_byref] = ACTIONS(7322), - [anon_sym_oneway] = ACTIONS(7322), - [anon_sym__Nullable] = ACTIONS(7322), - [anon_sym__Nonnull] = ACTIONS(7322), - [anon_sym__Nullable_result] = ACTIONS(7322), - [anon_sym__Null_unspecified] = ACTIONS(7322), - [anon_sym___autoreleasing] = ACTIONS(7322), - [anon_sym___nullable] = ACTIONS(7322), - [anon_sym___nonnull] = ACTIONS(7322), - [anon_sym___strong] = ACTIONS(7322), - [anon_sym___weak] = ACTIONS(7322), - [anon_sym___bridge] = ACTIONS(7322), - [anon_sym___bridge_transfer] = ACTIONS(7322), - [anon_sym___bridge_retained] = ACTIONS(7322), - [anon_sym___unsafe_unretained] = ACTIONS(7322), - [anon_sym___block] = ACTIONS(7322), - [anon_sym___kindof] = ACTIONS(7322), - [anon_sym___unused] = ACTIONS(7322), - [anon_sym__Complex] = ACTIONS(7322), - [anon_sym___complex] = ACTIONS(7322), - [anon_sym_IBOutlet] = ACTIONS(7322), - [anon_sym_IBInspectable] = ACTIONS(7322), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7322), - [anon_sym_signed] = ACTIONS(7322), - [anon_sym_unsigned] = ACTIONS(7322), - [anon_sym_long] = ACTIONS(7322), - [anon_sym_short] = ACTIONS(7322), - [sym_primitive_type] = ACTIONS(7322), - [anon_sym_enum] = ACTIONS(7322), - [anon_sym_COLON] = ACTIONS(7324), - [anon_sym_NS_ENUM] = ACTIONS(7322), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7322), - [anon_sym_NS_OPTIONS] = ACTIONS(7322), - [anon_sym_struct] = ACTIONS(7322), - [anon_sym_ATdefs] = ACTIONS(7324), - [anon_sym_union] = ACTIONS(7322), + [3051] = { + [sym_string_literal] = STATE(3056), + [aux_sym_string_expression_repeat1] = STATE(3052), + [sym_identifier] = ACTIONS(6744), + [anon_sym_COMMA] = ACTIONS(6746), + [anon_sym_RPAREN] = ACTIONS(6746), + [anon_sym_LPAREN2] = ACTIONS(6746), + [anon_sym_DASH] = ACTIONS(6744), + [anon_sym_PLUS] = ACTIONS(6744), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6744), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6746), + [anon_sym_AMP_AMP] = ACTIONS(6746), + [anon_sym_PIPE] = ACTIONS(6744), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6746), + [anon_sym_BANG_EQ] = ACTIONS(6746), + [anon_sym_GT] = ACTIONS(6744), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6744), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym_SEMI] = ACTIONS(6746), + [anon_sym___attribute] = ACTIONS(6744), + [anon_sym___attribute__] = ACTIONS(6744), + [anon_sym_RBRACE] = ACTIONS(6746), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_RBRACK] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6744), + [anon_sym_volatile] = ACTIONS(6744), + [anon_sym_restrict] = ACTIONS(6744), + [anon_sym__Atomic] = ACTIONS(6744), + [anon_sym_in] = ACTIONS(6744), + [anon_sym_out] = ACTIONS(6744), + [anon_sym_inout] = ACTIONS(6744), + [anon_sym_bycopy] = ACTIONS(6744), + [anon_sym_byref] = ACTIONS(6744), + [anon_sym_oneway] = ACTIONS(6744), + [anon_sym__Nullable] = ACTIONS(6744), + [anon_sym__Nonnull] = ACTIONS(6744), + [anon_sym__Nullable_result] = ACTIONS(6744), + [anon_sym__Null_unspecified] = ACTIONS(6744), + [anon_sym___autoreleasing] = ACTIONS(6744), + [anon_sym___nullable] = ACTIONS(6744), + [anon_sym___nonnull] = ACTIONS(6744), + [anon_sym___strong] = ACTIONS(6744), + [anon_sym___weak] = ACTIONS(6744), + [anon_sym___bridge] = ACTIONS(6744), + [anon_sym___bridge_transfer] = ACTIONS(6744), + [anon_sym___bridge_retained] = ACTIONS(6744), + [anon_sym___unsafe_unretained] = ACTIONS(6744), + [anon_sym___block] = ACTIONS(6744), + [anon_sym___kindof] = ACTIONS(6744), + [anon_sym___unused] = ACTIONS(6744), + [anon_sym__Complex] = ACTIONS(6744), + [anon_sym___complex] = ACTIONS(6744), + [anon_sym_IBOutlet] = ACTIONS(6744), + [anon_sym_IBInspectable] = ACTIONS(6744), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6744), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_QMARK] = ACTIONS(6746), + [anon_sym_DASH_DASH] = ACTIONS(6746), + [anon_sym_PLUS_PLUS] = ACTIONS(6746), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DASH_GT] = ACTIONS(6746), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(7324), - [anon_sym_ATinterface] = ACTIONS(7324), - [sym_method_attribute_specifier] = ACTIONS(7322), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7322), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7322), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7322), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7322), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7322), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7322), - [anon_sym_NS_AVAILABLE] = ACTIONS(7322), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7322), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7322), - [anon_sym_API_AVAILABLE] = ACTIONS(7322), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7322), - [anon_sym_API_DEPRECATED] = ACTIONS(7322), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7322), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7322), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7322), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7322), - [anon_sym___deprecated_msg] = ACTIONS(7322), - [anon_sym___deprecated_enum_msg] = ACTIONS(7322), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7322), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7322), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7322), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7322), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7322), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7322), - [anon_sym_ATimplementation] = ACTIONS(7324), - [anon_sym_typeof] = ACTIONS(7322), - [anon_sym___typeof] = ACTIONS(7322), - [anon_sym___typeof__] = ACTIONS(7322), - [sym_id] = ACTIONS(7322), - [sym_instancetype] = ACTIONS(7322), - [sym_Class] = ACTIONS(7322), - [sym_SEL] = ACTIONS(7322), - [sym_IMP] = ACTIONS(7322), - [sym_BOOL] = ACTIONS(7322), - [sym_auto] = ACTIONS(7322), + [sym_method_attribute_specifier] = ACTIONS(6744), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6744), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6744), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6744), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6744), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6744), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6744), + [anon_sym_NS_AVAILABLE] = ACTIONS(6744), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6744), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6744), + [anon_sym_API_AVAILABLE] = ACTIONS(6744), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6744), + [anon_sym_API_DEPRECATED] = ACTIONS(6744), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6744), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6744), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6744), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6744), + [anon_sym___deprecated_msg] = ACTIONS(6744), + [anon_sym___deprecated_enum_msg] = ACTIONS(6744), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6744), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6744), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6744), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6744), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6744), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6744), + [anon_sym_AT] = ACTIONS(7317), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -502208,108 +495179,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3099] = { - [sym_identifier] = ACTIONS(7326), - [anon_sym_COMMA] = ACTIONS(7328), - [anon_sym_RPAREN] = ACTIONS(7328), - [anon_sym_LPAREN2] = ACTIONS(7328), - [anon_sym_SEMI] = ACTIONS(7328), - [anon_sym_typedef] = ACTIONS(7326), - [anon_sym_extern] = ACTIONS(7326), - [anon_sym___attribute] = ACTIONS(7326), - [anon_sym___attribute__] = ACTIONS(7326), - [anon_sym___declspec] = ACTIONS(7326), - [anon_sym_LBRACE] = ACTIONS(7328), - [anon_sym_RBRACE] = ACTIONS(7328), - [anon_sym_LBRACK] = ACTIONS(7328), - [anon_sym_static] = ACTIONS(7326), - [anon_sym_auto] = ACTIONS(7326), - [anon_sym_register] = ACTIONS(7326), - [anon_sym_inline] = ACTIONS(7326), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7326), - [anon_sym_const] = ACTIONS(7326), - [anon_sym_volatile] = ACTIONS(7326), - [anon_sym_restrict] = ACTIONS(7326), - [anon_sym__Atomic] = ACTIONS(7326), - [anon_sym_in] = ACTIONS(7326), - [anon_sym_out] = ACTIONS(7326), - [anon_sym_inout] = ACTIONS(7326), - [anon_sym_bycopy] = ACTIONS(7326), - [anon_sym_byref] = ACTIONS(7326), - [anon_sym_oneway] = ACTIONS(7326), - [anon_sym__Nullable] = ACTIONS(7326), - [anon_sym__Nonnull] = ACTIONS(7326), - [anon_sym__Nullable_result] = ACTIONS(7326), - [anon_sym__Null_unspecified] = ACTIONS(7326), - [anon_sym___autoreleasing] = ACTIONS(7326), - [anon_sym___nullable] = ACTIONS(7326), - [anon_sym___nonnull] = ACTIONS(7326), - [anon_sym___strong] = ACTIONS(7326), - [anon_sym___weak] = ACTIONS(7326), - [anon_sym___bridge] = ACTIONS(7326), - [anon_sym___bridge_transfer] = ACTIONS(7326), - [anon_sym___bridge_retained] = ACTIONS(7326), - [anon_sym___unsafe_unretained] = ACTIONS(7326), - [anon_sym___block] = ACTIONS(7326), - [anon_sym___kindof] = ACTIONS(7326), - [anon_sym___unused] = ACTIONS(7326), - [anon_sym__Complex] = ACTIONS(7326), - [anon_sym___complex] = ACTIONS(7326), - [anon_sym_IBOutlet] = ACTIONS(7326), - [anon_sym_IBInspectable] = ACTIONS(7326), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7326), - [anon_sym_signed] = ACTIONS(7326), - [anon_sym_unsigned] = ACTIONS(7326), - [anon_sym_long] = ACTIONS(7326), - [anon_sym_short] = ACTIONS(7326), - [sym_primitive_type] = ACTIONS(7326), - [anon_sym_enum] = ACTIONS(7326), - [anon_sym_COLON] = ACTIONS(7328), - [anon_sym_NS_ENUM] = ACTIONS(7326), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7326), - [anon_sym_NS_OPTIONS] = ACTIONS(7326), - [anon_sym_struct] = ACTIONS(7326), - [anon_sym_ATdefs] = ACTIONS(7328), - [anon_sym_union] = ACTIONS(7326), + [3052] = { + [sym_string_literal] = STATE(3056), + [aux_sym_string_expression_repeat1] = STATE(3052), + [sym_identifier] = ACTIONS(6750), + [anon_sym_COMMA] = ACTIONS(6752), + [anon_sym_RPAREN] = ACTIONS(6752), + [anon_sym_LPAREN2] = ACTIONS(6752), + [anon_sym_DASH] = ACTIONS(6750), + [anon_sym_PLUS] = ACTIONS(6750), + [anon_sym_STAR] = ACTIONS(6752), + [anon_sym_SLASH] = ACTIONS(6750), + [anon_sym_PERCENT] = ACTIONS(6752), + [anon_sym_PIPE_PIPE] = ACTIONS(6752), + [anon_sym_AMP_AMP] = ACTIONS(6752), + [anon_sym_PIPE] = ACTIONS(6750), + [anon_sym_CARET] = ACTIONS(6752), + [anon_sym_AMP] = ACTIONS(6750), + [anon_sym_EQ_EQ] = ACTIONS(6752), + [anon_sym_BANG_EQ] = ACTIONS(6752), + [anon_sym_GT] = ACTIONS(6750), + [anon_sym_GT_EQ] = ACTIONS(6752), + [anon_sym_LT_EQ] = ACTIONS(6752), + [anon_sym_LT] = ACTIONS(6750), + [anon_sym_LT_LT] = ACTIONS(6752), + [anon_sym_GT_GT] = ACTIONS(6752), + [anon_sym_SEMI] = ACTIONS(6752), + [anon_sym___attribute] = ACTIONS(6750), + [anon_sym___attribute__] = ACTIONS(6750), + [anon_sym_RBRACE] = ACTIONS(6752), + [anon_sym_LBRACK] = ACTIONS(6752), + [anon_sym_RBRACK] = ACTIONS(6752), + [anon_sym_const] = ACTIONS(6750), + [anon_sym_volatile] = ACTIONS(6750), + [anon_sym_restrict] = ACTIONS(6750), + [anon_sym__Atomic] = ACTIONS(6750), + [anon_sym_in] = ACTIONS(6750), + [anon_sym_out] = ACTIONS(6750), + [anon_sym_inout] = ACTIONS(6750), + [anon_sym_bycopy] = ACTIONS(6750), + [anon_sym_byref] = ACTIONS(6750), + [anon_sym_oneway] = ACTIONS(6750), + [anon_sym__Nullable] = ACTIONS(6750), + [anon_sym__Nonnull] = ACTIONS(6750), + [anon_sym__Nullable_result] = ACTIONS(6750), + [anon_sym__Null_unspecified] = ACTIONS(6750), + [anon_sym___autoreleasing] = ACTIONS(6750), + [anon_sym___nullable] = ACTIONS(6750), + [anon_sym___nonnull] = ACTIONS(6750), + [anon_sym___strong] = ACTIONS(6750), + [anon_sym___weak] = ACTIONS(6750), + [anon_sym___bridge] = ACTIONS(6750), + [anon_sym___bridge_transfer] = ACTIONS(6750), + [anon_sym___bridge_retained] = ACTIONS(6750), + [anon_sym___unsafe_unretained] = ACTIONS(6750), + [anon_sym___block] = ACTIONS(6750), + [anon_sym___kindof] = ACTIONS(6750), + [anon_sym___unused] = ACTIONS(6750), + [anon_sym__Complex] = ACTIONS(6750), + [anon_sym___complex] = ACTIONS(6750), + [anon_sym_IBOutlet] = ACTIONS(6750), + [anon_sym_IBInspectable] = ACTIONS(6750), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6750), + [anon_sym_COLON] = ACTIONS(6752), + [anon_sym_QMARK] = ACTIONS(6752), + [anon_sym_DASH_DASH] = ACTIONS(6752), + [anon_sym_PLUS_PLUS] = ACTIONS(6752), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_DASH_GT] = ACTIONS(6752), + [anon_sym_L_DQUOTE] = ACTIONS(7319), + [anon_sym_u_DQUOTE] = ACTIONS(7319), + [anon_sym_U_DQUOTE] = ACTIONS(7319), + [anon_sym_u8_DQUOTE] = ACTIONS(7319), + [anon_sym_DQUOTE] = ACTIONS(7319), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(7328), - [anon_sym_ATinterface] = ACTIONS(7328), - [sym_method_attribute_specifier] = ACTIONS(7326), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7326), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7326), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7326), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7326), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7326), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7326), - [anon_sym_NS_AVAILABLE] = ACTIONS(7326), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7326), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7326), - [anon_sym_API_AVAILABLE] = ACTIONS(7326), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7326), - [anon_sym_API_DEPRECATED] = ACTIONS(7326), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7326), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7326), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7326), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7326), - [anon_sym___deprecated_msg] = ACTIONS(7326), - [anon_sym___deprecated_enum_msg] = ACTIONS(7326), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7326), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7326), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7326), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7326), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7326), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7326), - [anon_sym_ATimplementation] = ACTIONS(7328), - [anon_sym_typeof] = ACTIONS(7326), - [anon_sym___typeof] = ACTIONS(7326), - [anon_sym___typeof__] = ACTIONS(7326), - [sym_id] = ACTIONS(7326), - [sym_instancetype] = ACTIONS(7326), - [sym_Class] = ACTIONS(7326), - [sym_SEL] = ACTIONS(7326), - [sym_IMP] = ACTIONS(7326), - [sym_BOOL] = ACTIONS(7326), - [sym_auto] = ACTIONS(7326), + [sym_method_attribute_specifier] = ACTIONS(6750), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6750), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6750), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6750), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6750), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6750), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6750), + [anon_sym_NS_AVAILABLE] = ACTIONS(6750), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6750), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6750), + [anon_sym_API_AVAILABLE] = ACTIONS(6750), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6750), + [anon_sym_API_DEPRECATED] = ACTIONS(6750), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6750), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6750), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6750), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6750), + [anon_sym___deprecated_msg] = ACTIONS(6750), + [anon_sym___deprecated_enum_msg] = ACTIONS(6750), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6750), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6750), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6750), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6750), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6750), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6750), + [anon_sym_AT] = ACTIONS(7322), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -502317,108 +495286,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3100] = { - [sym_identifier] = ACTIONS(7330), - [aux_sym_preproc_def_token1] = ACTIONS(7332), - [anon_sym_LPAREN2] = ACTIONS(7332), - [anon_sym_DASH] = ACTIONS(7332), - [anon_sym_PLUS] = ACTIONS(7332), - [anon_sym_LT] = ACTIONS(7332), - [anon_sym_typedef] = ACTIONS(7330), - [anon_sym_extern] = ACTIONS(7330), - [anon_sym___attribute] = ACTIONS(7330), - [anon_sym___attribute__] = ACTIONS(7330), - [anon_sym___declspec] = ACTIONS(7330), - [anon_sym_LBRACE] = ACTIONS(7332), - [anon_sym_static] = ACTIONS(7330), - [anon_sym_auto] = ACTIONS(7330), - [anon_sym_register] = ACTIONS(7330), - [anon_sym_inline] = ACTIONS(7330), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7330), - [anon_sym_const] = ACTIONS(7330), - [anon_sym_volatile] = ACTIONS(7330), - [anon_sym_restrict] = ACTIONS(7330), - [anon_sym__Atomic] = ACTIONS(7330), - [anon_sym_in] = ACTIONS(7330), - [anon_sym_out] = ACTIONS(7330), - [anon_sym_inout] = ACTIONS(7330), - [anon_sym_bycopy] = ACTIONS(7330), - [anon_sym_byref] = ACTIONS(7330), - [anon_sym_oneway] = ACTIONS(7330), - [anon_sym__Nullable] = ACTIONS(7330), - [anon_sym__Nonnull] = ACTIONS(7330), - [anon_sym__Nullable_result] = ACTIONS(7330), - [anon_sym__Null_unspecified] = ACTIONS(7330), - [anon_sym___autoreleasing] = ACTIONS(7330), - [anon_sym___nullable] = ACTIONS(7330), - [anon_sym___nonnull] = ACTIONS(7330), - [anon_sym___strong] = ACTIONS(7330), - [anon_sym___weak] = ACTIONS(7330), - [anon_sym___bridge] = ACTIONS(7330), - [anon_sym___bridge_transfer] = ACTIONS(7330), - [anon_sym___bridge_retained] = ACTIONS(7330), - [anon_sym___unsafe_unretained] = ACTIONS(7330), - [anon_sym___block] = ACTIONS(7330), - [anon_sym___kindof] = ACTIONS(7330), - [anon_sym___unused] = ACTIONS(7330), - [anon_sym__Complex] = ACTIONS(7330), - [anon_sym___complex] = ACTIONS(7330), - [anon_sym_IBOutlet] = ACTIONS(7330), - [anon_sym_IBInspectable] = ACTIONS(7330), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7330), - [anon_sym_signed] = ACTIONS(7330), - [anon_sym_unsigned] = ACTIONS(7330), - [anon_sym_long] = ACTIONS(7330), - [anon_sym_short] = ACTIONS(7330), - [sym_primitive_type] = ACTIONS(7330), - [anon_sym_enum] = ACTIONS(7330), - [anon_sym_COLON] = ACTIONS(7332), - [anon_sym_NS_ENUM] = ACTIONS(7330), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7330), - [anon_sym_NS_OPTIONS] = ACTIONS(7330), - [anon_sym_struct] = ACTIONS(7330), - [anon_sym_union] = ACTIONS(7330), + [3053] = { + [sym_string_literal] = STATE(3053), + [aux_sym_concatenated_string_repeat1] = STATE(3053), + [sym_identifier] = ACTIONS(6770), + [anon_sym_COMMA] = ACTIONS(6772), + [anon_sym_RPAREN] = ACTIONS(6772), + [anon_sym_LPAREN2] = ACTIONS(6772), + [anon_sym_DASH] = ACTIONS(6770), + [anon_sym_PLUS] = ACTIONS(6770), + [anon_sym_STAR] = ACTIONS(6772), + [anon_sym_SLASH] = ACTIONS(6770), + [anon_sym_PERCENT] = ACTIONS(6772), + [anon_sym_PIPE_PIPE] = ACTIONS(6772), + [anon_sym_AMP_AMP] = ACTIONS(6772), + [anon_sym_PIPE] = ACTIONS(6770), + [anon_sym_CARET] = ACTIONS(6772), + [anon_sym_AMP] = ACTIONS(6770), + [anon_sym_EQ_EQ] = ACTIONS(6772), + [anon_sym_BANG_EQ] = ACTIONS(6772), + [anon_sym_GT] = ACTIONS(6770), + [anon_sym_GT_EQ] = ACTIONS(6772), + [anon_sym_LT_EQ] = ACTIONS(6772), + [anon_sym_LT] = ACTIONS(6770), + [anon_sym_LT_LT] = ACTIONS(6772), + [anon_sym_GT_GT] = ACTIONS(6772), + [anon_sym_SEMI] = ACTIONS(6772), + [anon_sym___attribute] = ACTIONS(6770), + [anon_sym___attribute__] = ACTIONS(6770), + [anon_sym_RBRACE] = ACTIONS(6772), + [anon_sym_LBRACK] = ACTIONS(6772), + [anon_sym_RBRACK] = ACTIONS(6772), + [anon_sym_const] = ACTIONS(6770), + [anon_sym_volatile] = ACTIONS(6770), + [anon_sym_restrict] = ACTIONS(6770), + [anon_sym__Atomic] = ACTIONS(6770), + [anon_sym_in] = ACTIONS(6770), + [anon_sym_out] = ACTIONS(6770), + [anon_sym_inout] = ACTIONS(6770), + [anon_sym_bycopy] = ACTIONS(6770), + [anon_sym_byref] = ACTIONS(6770), + [anon_sym_oneway] = ACTIONS(6770), + [anon_sym__Nullable] = ACTIONS(6770), + [anon_sym__Nonnull] = ACTIONS(6770), + [anon_sym__Nullable_result] = ACTIONS(6770), + [anon_sym__Null_unspecified] = ACTIONS(6770), + [anon_sym___autoreleasing] = ACTIONS(6770), + [anon_sym___nullable] = ACTIONS(6770), + [anon_sym___nonnull] = ACTIONS(6770), + [anon_sym___strong] = ACTIONS(6770), + [anon_sym___weak] = ACTIONS(6770), + [anon_sym___bridge] = ACTIONS(6770), + [anon_sym___bridge_transfer] = ACTIONS(6770), + [anon_sym___bridge_retained] = ACTIONS(6770), + [anon_sym___unsafe_unretained] = ACTIONS(6770), + [anon_sym___block] = ACTIONS(6770), + [anon_sym___kindof] = ACTIONS(6770), + [anon_sym___unused] = ACTIONS(6770), + [anon_sym__Complex] = ACTIONS(6770), + [anon_sym___complex] = ACTIONS(6770), + [anon_sym_IBOutlet] = ACTIONS(6770), + [anon_sym_IBInspectable] = ACTIONS(6770), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6770), + [anon_sym_COLON] = ACTIONS(6772), + [anon_sym_QMARK] = ACTIONS(6772), + [anon_sym_DASH_DASH] = ACTIONS(6772), + [anon_sym_PLUS_PLUS] = ACTIONS(6772), + [anon_sym_DOT] = ACTIONS(6772), + [anon_sym_DASH_GT] = ACTIONS(6772), + [anon_sym_L_DQUOTE] = ACTIONS(7325), + [anon_sym_u_DQUOTE] = ACTIONS(7325), + [anon_sym_U_DQUOTE] = ACTIONS(7325), + [anon_sym_u8_DQUOTE] = ACTIONS(7325), + [anon_sym_DQUOTE] = ACTIONS(7325), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7330), - [anon_sym_ATend] = ACTIONS(7332), - [sym_optional] = ACTIONS(7332), - [sym_required] = ACTIONS(7332), - [anon_sym_ATproperty] = ACTIONS(7332), - [sym_method_attribute_specifier] = ACTIONS(7330), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7330), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7330), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7330), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7330), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7330), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7330), - [anon_sym_NS_AVAILABLE] = ACTIONS(7330), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7330), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7330), - [anon_sym_API_AVAILABLE] = ACTIONS(7330), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7330), - [anon_sym_API_DEPRECATED] = ACTIONS(7330), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7330), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7330), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7330), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7330), - [anon_sym___deprecated_msg] = ACTIONS(7330), - [anon_sym___deprecated_enum_msg] = ACTIONS(7330), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7330), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7330), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7330), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7330), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7330), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7330), - [anon_sym_typeof] = ACTIONS(7330), - [anon_sym___typeof] = ACTIONS(7330), - [anon_sym___typeof__] = ACTIONS(7330), - [sym_id] = ACTIONS(7330), - [sym_instancetype] = ACTIONS(7330), - [sym_Class] = ACTIONS(7330), - [sym_SEL] = ACTIONS(7330), - [sym_IMP] = ACTIONS(7330), - [sym_BOOL] = ACTIONS(7330), - [sym_auto] = ACTIONS(7330), + [sym_method_attribute_specifier] = ACTIONS(6770), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6770), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6770), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6770), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6770), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6770), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6770), + [anon_sym_NS_AVAILABLE] = ACTIONS(6770), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6770), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6770), + [anon_sym_API_AVAILABLE] = ACTIONS(6770), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6770), + [anon_sym_API_DEPRECATED] = ACTIONS(6770), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6770), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6770), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6770), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6770), + [anon_sym___deprecated_msg] = ACTIONS(6770), + [anon_sym___deprecated_enum_msg] = ACTIONS(6770), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6770), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6770), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6770), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6770), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6770), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6770), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -502426,108 +495392,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3101] = { - [sym_identifier] = ACTIONS(2300), - [anon_sym_COMMA] = ACTIONS(7334), - [anon_sym_RPAREN] = ACTIONS(7334), - [anon_sym_LPAREN2] = ACTIONS(7334), - [anon_sym_SEMI] = ACTIONS(7334), - [anon_sym_typedef] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym___attribute] = ACTIONS(2300), - [anon_sym___attribute__] = ACTIONS(2300), - [anon_sym___declspec] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(7334), - [anon_sym_RBRACE] = ACTIONS(7334), - [anon_sym_LBRACK] = ACTIONS(7334), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_auto] = ACTIONS(2300), - [anon_sym_register] = ACTIONS(2300), - [anon_sym_inline] = ACTIONS(2300), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_volatile] = ACTIONS(2300), - [anon_sym_restrict] = ACTIONS(2300), - [anon_sym__Atomic] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_out] = ACTIONS(2300), - [anon_sym_inout] = ACTIONS(2300), - [anon_sym_bycopy] = ACTIONS(2300), - [anon_sym_byref] = ACTIONS(2300), - [anon_sym_oneway] = ACTIONS(2300), - [anon_sym__Nullable] = ACTIONS(2300), - [anon_sym__Nonnull] = ACTIONS(2300), - [anon_sym__Nullable_result] = ACTIONS(2300), - [anon_sym__Null_unspecified] = ACTIONS(2300), - [anon_sym___autoreleasing] = ACTIONS(2300), - [anon_sym___nullable] = ACTIONS(2300), - [anon_sym___nonnull] = ACTIONS(2300), - [anon_sym___strong] = ACTIONS(2300), - [anon_sym___weak] = ACTIONS(2300), - [anon_sym___bridge] = ACTIONS(2300), - [anon_sym___bridge_transfer] = ACTIONS(2300), - [anon_sym___bridge_retained] = ACTIONS(2300), - [anon_sym___unsafe_unretained] = ACTIONS(2300), - [anon_sym___block] = ACTIONS(2300), - [anon_sym___kindof] = ACTIONS(2300), - [anon_sym___unused] = ACTIONS(2300), - [anon_sym__Complex] = ACTIONS(2300), - [anon_sym___complex] = ACTIONS(2300), - [anon_sym_IBOutlet] = ACTIONS(2300), - [anon_sym_IBInspectable] = ACTIONS(2300), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2300), - [anon_sym_signed] = ACTIONS(2300), - [anon_sym_unsigned] = ACTIONS(2300), - [anon_sym_long] = ACTIONS(2300), - [anon_sym_short] = ACTIONS(2300), - [sym_primitive_type] = ACTIONS(2300), - [anon_sym_enum] = ACTIONS(2300), - [anon_sym_COLON] = ACTIONS(7334), - [anon_sym_NS_ENUM] = ACTIONS(2300), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2300), - [anon_sym_NS_OPTIONS] = ACTIONS(2300), - [anon_sym_struct] = ACTIONS(2300), - [anon_sym_ATdefs] = ACTIONS(7334), - [anon_sym_union] = ACTIONS(2300), + [3054] = { + [sym_string_literal] = STATE(3053), + [aux_sym_concatenated_string_repeat1] = STATE(3053), + [sym_identifier] = ACTIONS(6793), + [anon_sym_COMMA] = ACTIONS(6795), + [anon_sym_RPAREN] = ACTIONS(6795), + [anon_sym_LPAREN2] = ACTIONS(6795), + [anon_sym_DASH] = ACTIONS(6793), + [anon_sym_PLUS] = ACTIONS(6793), + [anon_sym_STAR] = ACTIONS(6795), + [anon_sym_SLASH] = ACTIONS(6793), + [anon_sym_PERCENT] = ACTIONS(6795), + [anon_sym_PIPE_PIPE] = ACTIONS(6795), + [anon_sym_AMP_AMP] = ACTIONS(6795), + [anon_sym_PIPE] = ACTIONS(6793), + [anon_sym_CARET] = ACTIONS(6795), + [anon_sym_AMP] = ACTIONS(6793), + [anon_sym_EQ_EQ] = ACTIONS(6795), + [anon_sym_BANG_EQ] = ACTIONS(6795), + [anon_sym_GT] = ACTIONS(6793), + [anon_sym_GT_EQ] = ACTIONS(6795), + [anon_sym_LT_EQ] = ACTIONS(6795), + [anon_sym_LT] = ACTIONS(6793), + [anon_sym_LT_LT] = ACTIONS(6795), + [anon_sym_GT_GT] = ACTIONS(6795), + [anon_sym_SEMI] = ACTIONS(6795), + [anon_sym___attribute] = ACTIONS(6793), + [anon_sym___attribute__] = ACTIONS(6793), + [anon_sym_RBRACE] = ACTIONS(6795), + [anon_sym_LBRACK] = ACTIONS(6795), + [anon_sym_RBRACK] = ACTIONS(6795), + [anon_sym_const] = ACTIONS(6793), + [anon_sym_volatile] = ACTIONS(6793), + [anon_sym_restrict] = ACTIONS(6793), + [anon_sym__Atomic] = ACTIONS(6793), + [anon_sym_in] = ACTIONS(6793), + [anon_sym_out] = ACTIONS(6793), + [anon_sym_inout] = ACTIONS(6793), + [anon_sym_bycopy] = ACTIONS(6793), + [anon_sym_byref] = ACTIONS(6793), + [anon_sym_oneway] = ACTIONS(6793), + [anon_sym__Nullable] = ACTIONS(6793), + [anon_sym__Nonnull] = ACTIONS(6793), + [anon_sym__Nullable_result] = ACTIONS(6793), + [anon_sym__Null_unspecified] = ACTIONS(6793), + [anon_sym___autoreleasing] = ACTIONS(6793), + [anon_sym___nullable] = ACTIONS(6793), + [anon_sym___nonnull] = ACTIONS(6793), + [anon_sym___strong] = ACTIONS(6793), + [anon_sym___weak] = ACTIONS(6793), + [anon_sym___bridge] = ACTIONS(6793), + [anon_sym___bridge_transfer] = ACTIONS(6793), + [anon_sym___bridge_retained] = ACTIONS(6793), + [anon_sym___unsafe_unretained] = ACTIONS(6793), + [anon_sym___block] = ACTIONS(6793), + [anon_sym___kindof] = ACTIONS(6793), + [anon_sym___unused] = ACTIONS(6793), + [anon_sym__Complex] = ACTIONS(6793), + [anon_sym___complex] = ACTIONS(6793), + [anon_sym_IBOutlet] = ACTIONS(6793), + [anon_sym_IBInspectable] = ACTIONS(6793), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6793), + [anon_sym_COLON] = ACTIONS(6795), + [anon_sym_QMARK] = ACTIONS(6795), + [anon_sym_DASH_DASH] = ACTIONS(6795), + [anon_sym_PLUS_PLUS] = ACTIONS(6795), + [anon_sym_DOT] = ACTIONS(6795), + [anon_sym_DASH_GT] = ACTIONS(6795), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(7334), - [anon_sym_ATinterface] = ACTIONS(7334), - [sym_method_attribute_specifier] = ACTIONS(2300), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2300), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE] = ACTIONS(2300), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_API_AVAILABLE] = ACTIONS(2300), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_API_DEPRECATED] = ACTIONS(2300), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2300), - [anon_sym___deprecated_msg] = ACTIONS(2300), - [anon_sym___deprecated_enum_msg] = ACTIONS(2300), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2300), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2300), - [anon_sym_ATimplementation] = ACTIONS(7334), - [anon_sym_typeof] = ACTIONS(2300), - [anon_sym___typeof] = ACTIONS(2300), - [anon_sym___typeof__] = ACTIONS(2300), - [sym_id] = ACTIONS(2300), - [sym_instancetype] = ACTIONS(2300), - [sym_Class] = ACTIONS(2300), - [sym_SEL] = ACTIONS(2300), - [sym_IMP] = ACTIONS(2300), - [sym_BOOL] = ACTIONS(2300), - [sym_auto] = ACTIONS(2300), + [sym_method_attribute_specifier] = ACTIONS(6793), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6793), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6793), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6793), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6793), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6793), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6793), + [anon_sym_NS_AVAILABLE] = ACTIONS(6793), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6793), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6793), + [anon_sym_API_AVAILABLE] = ACTIONS(6793), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6793), + [anon_sym_API_DEPRECATED] = ACTIONS(6793), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6793), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6793), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6793), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6793), + [anon_sym___deprecated_msg] = ACTIONS(6793), + [anon_sym___deprecated_enum_msg] = ACTIONS(6793), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6793), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6793), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6793), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6793), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6793), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6793), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -502535,19 +495498,437 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3102] = { + [3055] = { + [sym_string_literal] = STATE(3054), + [aux_sym_concatenated_string_repeat1] = STATE(3054), + [sym_identifier] = ACTIONS(6777), + [anon_sym_COMMA] = ACTIONS(6779), + [anon_sym_RPAREN] = ACTIONS(6779), + [anon_sym_LPAREN2] = ACTIONS(6779), + [anon_sym_DASH] = ACTIONS(6777), + [anon_sym_PLUS] = ACTIONS(6777), + [anon_sym_STAR] = ACTIONS(6779), + [anon_sym_SLASH] = ACTIONS(6777), + [anon_sym_PERCENT] = ACTIONS(6779), + [anon_sym_PIPE_PIPE] = ACTIONS(6779), + [anon_sym_AMP_AMP] = ACTIONS(6779), + [anon_sym_PIPE] = ACTIONS(6777), + [anon_sym_CARET] = ACTIONS(6779), + [anon_sym_AMP] = ACTIONS(6777), + [anon_sym_EQ_EQ] = ACTIONS(6779), + [anon_sym_BANG_EQ] = ACTIONS(6779), + [anon_sym_GT] = ACTIONS(6777), + [anon_sym_GT_EQ] = ACTIONS(6779), + [anon_sym_LT_EQ] = ACTIONS(6779), + [anon_sym_LT] = ACTIONS(6777), + [anon_sym_LT_LT] = ACTIONS(6779), + [anon_sym_GT_GT] = ACTIONS(6779), + [anon_sym_SEMI] = ACTIONS(6779), + [anon_sym___attribute] = ACTIONS(6777), + [anon_sym___attribute__] = ACTIONS(6777), + [anon_sym_RBRACE] = ACTIONS(6779), + [anon_sym_LBRACK] = ACTIONS(6779), + [anon_sym_RBRACK] = ACTIONS(6779), + [anon_sym_const] = ACTIONS(6777), + [anon_sym_volatile] = ACTIONS(6777), + [anon_sym_restrict] = ACTIONS(6777), + [anon_sym__Atomic] = ACTIONS(6777), + [anon_sym_in] = ACTIONS(6777), + [anon_sym_out] = ACTIONS(6777), + [anon_sym_inout] = ACTIONS(6777), + [anon_sym_bycopy] = ACTIONS(6777), + [anon_sym_byref] = ACTIONS(6777), + [anon_sym_oneway] = ACTIONS(6777), + [anon_sym__Nullable] = ACTIONS(6777), + [anon_sym__Nonnull] = ACTIONS(6777), + [anon_sym__Nullable_result] = ACTIONS(6777), + [anon_sym__Null_unspecified] = ACTIONS(6777), + [anon_sym___autoreleasing] = ACTIONS(6777), + [anon_sym___nullable] = ACTIONS(6777), + [anon_sym___nonnull] = ACTIONS(6777), + [anon_sym___strong] = ACTIONS(6777), + [anon_sym___weak] = ACTIONS(6777), + [anon_sym___bridge] = ACTIONS(6777), + [anon_sym___bridge_transfer] = ACTIONS(6777), + [anon_sym___bridge_retained] = ACTIONS(6777), + [anon_sym___unsafe_unretained] = ACTIONS(6777), + [anon_sym___block] = ACTIONS(6777), + [anon_sym___kindof] = ACTIONS(6777), + [anon_sym___unused] = ACTIONS(6777), + [anon_sym__Complex] = ACTIONS(6777), + [anon_sym___complex] = ACTIONS(6777), + [anon_sym_IBOutlet] = ACTIONS(6777), + [anon_sym_IBInspectable] = ACTIONS(6777), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6777), + [anon_sym_COLON] = ACTIONS(6779), + [anon_sym_QMARK] = ACTIONS(6779), + [anon_sym_DASH_DASH] = ACTIONS(6779), + [anon_sym_PLUS_PLUS] = ACTIONS(6779), + [anon_sym_DOT] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(6779), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6777), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6777), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6777), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6777), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6777), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6777), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6777), + [anon_sym_NS_AVAILABLE] = ACTIONS(6777), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6777), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_API_AVAILABLE] = ACTIONS(6777), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6777), + [anon_sym_API_DEPRECATED] = ACTIONS(6777), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6777), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6777), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6777), + [anon_sym___deprecated_msg] = ACTIONS(6777), + [anon_sym___deprecated_enum_msg] = ACTIONS(6777), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6777), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6777), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6777), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6777), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3056] = { + [sym_identifier] = ACTIONS(6844), + [anon_sym_COMMA] = ACTIONS(6846), + [anon_sym_RPAREN] = ACTIONS(6846), + [anon_sym_LPAREN2] = ACTIONS(6846), + [anon_sym_DASH] = ACTIONS(6844), + [anon_sym_PLUS] = ACTIONS(6844), + [anon_sym_STAR] = ACTIONS(6846), + [anon_sym_SLASH] = ACTIONS(6844), + [anon_sym_PERCENT] = ACTIONS(6846), + [anon_sym_PIPE_PIPE] = ACTIONS(6846), + [anon_sym_AMP_AMP] = ACTIONS(6846), + [anon_sym_PIPE] = ACTIONS(6844), + [anon_sym_CARET] = ACTIONS(6846), + [anon_sym_AMP] = ACTIONS(6844), + [anon_sym_EQ_EQ] = ACTIONS(6846), + [anon_sym_BANG_EQ] = ACTIONS(6846), + [anon_sym_GT] = ACTIONS(6844), + [anon_sym_GT_EQ] = ACTIONS(6846), + [anon_sym_LT_EQ] = ACTIONS(6846), + [anon_sym_LT] = ACTIONS(6844), + [anon_sym_LT_LT] = ACTIONS(6846), + [anon_sym_GT_GT] = ACTIONS(6846), + [anon_sym_SEMI] = ACTIONS(6846), + [anon_sym___attribute] = ACTIONS(6844), + [anon_sym___attribute__] = ACTIONS(6844), + [anon_sym_RBRACE] = ACTIONS(6846), + [anon_sym_LBRACK] = ACTIONS(6846), + [anon_sym_RBRACK] = ACTIONS(6846), + [anon_sym_const] = ACTIONS(6844), + [anon_sym_volatile] = ACTIONS(6844), + [anon_sym_restrict] = ACTIONS(6844), + [anon_sym__Atomic] = ACTIONS(6844), + [anon_sym_in] = ACTIONS(6844), + [anon_sym_out] = ACTIONS(6844), + [anon_sym_inout] = ACTIONS(6844), + [anon_sym_bycopy] = ACTIONS(6844), + [anon_sym_byref] = ACTIONS(6844), + [anon_sym_oneway] = ACTIONS(6844), + [anon_sym__Nullable] = ACTIONS(6844), + [anon_sym__Nonnull] = ACTIONS(6844), + [anon_sym__Nullable_result] = ACTIONS(6844), + [anon_sym__Null_unspecified] = ACTIONS(6844), + [anon_sym___autoreleasing] = ACTIONS(6844), + [anon_sym___nullable] = ACTIONS(6844), + [anon_sym___nonnull] = ACTIONS(6844), + [anon_sym___strong] = ACTIONS(6844), + [anon_sym___weak] = ACTIONS(6844), + [anon_sym___bridge] = ACTIONS(6844), + [anon_sym___bridge_transfer] = ACTIONS(6844), + [anon_sym___bridge_retained] = ACTIONS(6844), + [anon_sym___unsafe_unretained] = ACTIONS(6844), + [anon_sym___block] = ACTIONS(6844), + [anon_sym___kindof] = ACTIONS(6844), + [anon_sym___unused] = ACTIONS(6844), + [anon_sym__Complex] = ACTIONS(6844), + [anon_sym___complex] = ACTIONS(6844), + [anon_sym_IBOutlet] = ACTIONS(6844), + [anon_sym_IBInspectable] = ACTIONS(6844), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6844), + [anon_sym_COLON] = ACTIONS(6846), + [anon_sym_QMARK] = ACTIONS(6846), + [anon_sym_DASH_DASH] = ACTIONS(6846), + [anon_sym_PLUS_PLUS] = ACTIONS(6846), + [anon_sym_DOT] = ACTIONS(6846), + [anon_sym_DASH_GT] = ACTIONS(6846), + [anon_sym_L_DQUOTE] = ACTIONS(6846), + [anon_sym_u_DQUOTE] = ACTIONS(6846), + [anon_sym_U_DQUOTE] = ACTIONS(6846), + [anon_sym_u8_DQUOTE] = ACTIONS(6846), + [anon_sym_DQUOTE] = ACTIONS(6846), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6844), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6844), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6844), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6844), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6844), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6844), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6844), + [anon_sym_NS_AVAILABLE] = ACTIONS(6844), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6844), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6844), + [anon_sym_API_AVAILABLE] = ACTIONS(6844), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6844), + [anon_sym_API_DEPRECATED] = ACTIONS(6844), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6844), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6844), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6844), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6844), + [anon_sym___deprecated_msg] = ACTIONS(6844), + [anon_sym___deprecated_enum_msg] = ACTIONS(6844), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6844), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6844), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6844), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6844), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6844), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6844), + [anon_sym_AT] = ACTIONS(6846), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3057] = { + [sym_identifier] = ACTIONS(7328), + [aux_sym_preproc_def_token1] = ACTIONS(7330), + [anon_sym_DASH] = ACTIONS(7330), + [anon_sym_PLUS] = ACTIONS(7330), + [anon_sym_typedef] = ACTIONS(7328), + [anon_sym_extern] = ACTIONS(7328), + [anon_sym___attribute] = ACTIONS(7328), + [anon_sym___attribute__] = ACTIONS(7328), + [anon_sym___declspec] = ACTIONS(7328), + [anon_sym_static] = ACTIONS(7328), + [anon_sym_auto] = ACTIONS(7328), + [anon_sym_register] = ACTIONS(7328), + [anon_sym_inline] = ACTIONS(7328), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7328), + [anon_sym_const] = ACTIONS(7328), + [anon_sym_volatile] = ACTIONS(7328), + [anon_sym_restrict] = ACTIONS(7328), + [anon_sym__Atomic] = ACTIONS(7328), + [anon_sym_in] = ACTIONS(7328), + [anon_sym_out] = ACTIONS(7328), + [anon_sym_inout] = ACTIONS(7328), + [anon_sym_bycopy] = ACTIONS(7328), + [anon_sym_byref] = ACTIONS(7328), + [anon_sym_oneway] = ACTIONS(7328), + [anon_sym__Nullable] = ACTIONS(7328), + [anon_sym__Nonnull] = ACTIONS(7328), + [anon_sym__Nullable_result] = ACTIONS(7328), + [anon_sym__Null_unspecified] = ACTIONS(7328), + [anon_sym___autoreleasing] = ACTIONS(7328), + [anon_sym___nullable] = ACTIONS(7328), + [anon_sym___nonnull] = ACTIONS(7328), + [anon_sym___strong] = ACTIONS(7328), + [anon_sym___weak] = ACTIONS(7328), + [anon_sym___bridge] = ACTIONS(7328), + [anon_sym___bridge_transfer] = ACTIONS(7328), + [anon_sym___bridge_retained] = ACTIONS(7328), + [anon_sym___unsafe_unretained] = ACTIONS(7328), + [anon_sym___block] = ACTIONS(7328), + [anon_sym___kindof] = ACTIONS(7328), + [anon_sym___unused] = ACTIONS(7328), + [anon_sym__Complex] = ACTIONS(7328), + [anon_sym___complex] = ACTIONS(7328), + [anon_sym_IBOutlet] = ACTIONS(7328), + [anon_sym_IBInspectable] = ACTIONS(7328), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7328), + [anon_sym_signed] = ACTIONS(7328), + [anon_sym_unsigned] = ACTIONS(7328), + [anon_sym_long] = ACTIONS(7328), + [anon_sym_short] = ACTIONS(7328), + [sym_primitive_type] = ACTIONS(7328), + [anon_sym_enum] = ACTIONS(7328), + [anon_sym_struct] = ACTIONS(7328), + [anon_sym_union] = ACTIONS(7328), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7328), + [anon_sym_ATend] = ACTIONS(7330), + [sym_optional] = ACTIONS(7330), + [sym_required] = ACTIONS(7330), + [anon_sym_ATproperty] = ACTIONS(7330), + [sym_method_attribute_specifier] = ACTIONS(7328), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7328), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7328), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7328), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7328), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7328), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7328), + [anon_sym_NS_AVAILABLE] = ACTIONS(7328), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7328), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7328), + [anon_sym_API_AVAILABLE] = ACTIONS(7328), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7328), + [anon_sym_API_DEPRECATED] = ACTIONS(7328), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7328), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7328), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7328), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7328), + [anon_sym___deprecated_msg] = ACTIONS(7328), + [anon_sym___deprecated_enum_msg] = ACTIONS(7328), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7328), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7328), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7328), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7328), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7328), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7328), + [anon_sym_NS_ENUM] = ACTIONS(7328), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7328), + [anon_sym_NS_OPTIONS] = ACTIONS(7328), + [anon_sym_typeof] = ACTIONS(7328), + [anon_sym___typeof] = ACTIONS(7328), + [anon_sym___typeof__] = ACTIONS(7328), + [sym_id] = ACTIONS(7328), + [sym_instancetype] = ACTIONS(7328), + [sym_Class] = ACTIONS(7328), + [sym_SEL] = ACTIONS(7328), + [sym_IMP] = ACTIONS(7328), + [sym_BOOL] = ACTIONS(7328), + [sym_auto] = ACTIONS(7328), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3058] = { + [sym_identifier] = ACTIONS(7332), + [aux_sym_preproc_def_token1] = ACTIONS(7334), + [anon_sym_DASH] = ACTIONS(7334), + [anon_sym_PLUS] = ACTIONS(7334), + [anon_sym_typedef] = ACTIONS(7332), + [anon_sym_extern] = ACTIONS(7332), + [anon_sym___attribute] = ACTIONS(7332), + [anon_sym___attribute__] = ACTIONS(7332), + [anon_sym___declspec] = ACTIONS(7332), + [anon_sym_static] = ACTIONS(7332), + [anon_sym_auto] = ACTIONS(7332), + [anon_sym_register] = ACTIONS(7332), + [anon_sym_inline] = ACTIONS(7332), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7332), + [anon_sym_const] = ACTIONS(7332), + [anon_sym_volatile] = ACTIONS(7332), + [anon_sym_restrict] = ACTIONS(7332), + [anon_sym__Atomic] = ACTIONS(7332), + [anon_sym_in] = ACTIONS(7332), + [anon_sym_out] = ACTIONS(7332), + [anon_sym_inout] = ACTIONS(7332), + [anon_sym_bycopy] = ACTIONS(7332), + [anon_sym_byref] = ACTIONS(7332), + [anon_sym_oneway] = ACTIONS(7332), + [anon_sym__Nullable] = ACTIONS(7332), + [anon_sym__Nonnull] = ACTIONS(7332), + [anon_sym__Nullable_result] = ACTIONS(7332), + [anon_sym__Null_unspecified] = ACTIONS(7332), + [anon_sym___autoreleasing] = ACTIONS(7332), + [anon_sym___nullable] = ACTIONS(7332), + [anon_sym___nonnull] = ACTIONS(7332), + [anon_sym___strong] = ACTIONS(7332), + [anon_sym___weak] = ACTIONS(7332), + [anon_sym___bridge] = ACTIONS(7332), + [anon_sym___bridge_transfer] = ACTIONS(7332), + [anon_sym___bridge_retained] = ACTIONS(7332), + [anon_sym___unsafe_unretained] = ACTIONS(7332), + [anon_sym___block] = ACTIONS(7332), + [anon_sym___kindof] = ACTIONS(7332), + [anon_sym___unused] = ACTIONS(7332), + [anon_sym__Complex] = ACTIONS(7332), + [anon_sym___complex] = ACTIONS(7332), + [anon_sym_IBOutlet] = ACTIONS(7332), + [anon_sym_IBInspectable] = ACTIONS(7332), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7332), + [anon_sym_signed] = ACTIONS(7332), + [anon_sym_unsigned] = ACTIONS(7332), + [anon_sym_long] = ACTIONS(7332), + [anon_sym_short] = ACTIONS(7332), + [sym_primitive_type] = ACTIONS(7332), + [anon_sym_enum] = ACTIONS(7332), + [anon_sym_struct] = ACTIONS(7332), + [anon_sym_union] = ACTIONS(7332), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7332), + [anon_sym_ATend] = ACTIONS(7334), + [sym_optional] = ACTIONS(7334), + [sym_required] = ACTIONS(7334), + [anon_sym_ATproperty] = ACTIONS(7334), + [sym_method_attribute_specifier] = ACTIONS(7332), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7332), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7332), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7332), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7332), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7332), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7332), + [anon_sym_NS_AVAILABLE] = ACTIONS(7332), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7332), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7332), + [anon_sym_API_AVAILABLE] = ACTIONS(7332), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7332), + [anon_sym_API_DEPRECATED] = ACTIONS(7332), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7332), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7332), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7332), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7332), + [anon_sym___deprecated_msg] = ACTIONS(7332), + [anon_sym___deprecated_enum_msg] = ACTIONS(7332), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7332), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7332), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7332), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7332), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7332), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7332), + [anon_sym_NS_ENUM] = ACTIONS(7332), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7332), + [anon_sym_NS_OPTIONS] = ACTIONS(7332), + [anon_sym_typeof] = ACTIONS(7332), + [anon_sym___typeof] = ACTIONS(7332), + [anon_sym___typeof__] = ACTIONS(7332), + [sym_id] = ACTIONS(7332), + [sym_instancetype] = ACTIONS(7332), + [sym_Class] = ACTIONS(7332), + [sym_SEL] = ACTIONS(7332), + [sym_IMP] = ACTIONS(7332), + [sym_BOOL] = ACTIONS(7332), + [sym_auto] = ACTIONS(7332), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3059] = { [sym_identifier] = ACTIONS(7336), [aux_sym_preproc_def_token1] = ACTIONS(7338), - [anon_sym_LPAREN2] = ACTIONS(7338), [anon_sym_DASH] = ACTIONS(7338), [anon_sym_PLUS] = ACTIONS(7338), - [anon_sym_LT] = ACTIONS(7338), [anon_sym_typedef] = ACTIONS(7336), [anon_sym_extern] = ACTIONS(7336), [anon_sym___attribute] = ACTIONS(7336), [anon_sym___attribute__] = ACTIONS(7336), [anon_sym___declspec] = ACTIONS(7336), - [anon_sym_LBRACE] = ACTIONS(7338), [anon_sym_static] = ACTIONS(7336), [anon_sym_auto] = ACTIONS(7336), [anon_sym_register] = ACTIONS(7336), @@ -502590,10 +495971,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7336), [sym_primitive_type] = ACTIONS(7336), [anon_sym_enum] = ACTIONS(7336), - [anon_sym_COLON] = ACTIONS(7338), - [anon_sym_NS_ENUM] = ACTIONS(7336), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7336), - [anon_sym_NS_OPTIONS] = ACTIONS(7336), [anon_sym_struct] = ACTIONS(7336), [anon_sym_union] = ACTIONS(7336), [sym_comment] = ACTIONS(3), @@ -502627,6 +496004,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7336), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7336), [anon_sym_NS_SWIFT_NAME] = ACTIONS(7336), + [anon_sym_NS_ENUM] = ACTIONS(7336), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7336), + [anon_sym_NS_OPTIONS] = ACTIONS(7336), [anon_sym_typeof] = ACTIONS(7336), [anon_sym___typeof] = ACTIONS(7336), [anon_sym___typeof__] = ACTIONS(7336), @@ -502644,19 +496024,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3103] = { + [3060] = { [sym_identifier] = ACTIONS(7340), [aux_sym_preproc_def_token1] = ACTIONS(7342), - [anon_sym_LPAREN2] = ACTIONS(7342), [anon_sym_DASH] = ACTIONS(7342), [anon_sym_PLUS] = ACTIONS(7342), - [anon_sym_LT] = ACTIONS(7342), [anon_sym_typedef] = ACTIONS(7340), [anon_sym_extern] = ACTIONS(7340), [anon_sym___attribute] = ACTIONS(7340), [anon_sym___attribute__] = ACTIONS(7340), [anon_sym___declspec] = ACTIONS(7340), - [anon_sym_LBRACE] = ACTIONS(7342), [anon_sym_static] = ACTIONS(7340), [anon_sym_auto] = ACTIONS(7340), [anon_sym_register] = ACTIONS(7340), @@ -502699,10 +496076,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7340), [sym_primitive_type] = ACTIONS(7340), [anon_sym_enum] = ACTIONS(7340), - [anon_sym_COLON] = ACTIONS(7342), - [anon_sym_NS_ENUM] = ACTIONS(7340), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7340), - [anon_sym_NS_OPTIONS] = ACTIONS(7340), [anon_sym_struct] = ACTIONS(7340), [anon_sym_union] = ACTIONS(7340), [sym_comment] = ACTIONS(3), @@ -502736,6 +496109,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7340), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7340), [anon_sym_NS_SWIFT_NAME] = ACTIONS(7340), + [anon_sym_NS_ENUM] = ACTIONS(7340), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7340), + [anon_sym_NS_OPTIONS] = ACTIONS(7340), [anon_sym_typeof] = ACTIONS(7340), [anon_sym___typeof] = ACTIONS(7340), [anon_sym___typeof__] = ACTIONS(7340), @@ -502753,20 +496129,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3104] = { + [3061] = { [sym_identifier] = ACTIONS(7344), - [anon_sym_COMMA] = ACTIONS(7346), - [anon_sym_RPAREN] = ACTIONS(7346), - [anon_sym_LPAREN2] = ACTIONS(7346), - [anon_sym_SEMI] = ACTIONS(7346), + [aux_sym_preproc_def_token1] = ACTIONS(7346), + [anon_sym_DASH] = ACTIONS(7346), + [anon_sym_PLUS] = ACTIONS(7346), [anon_sym_typedef] = ACTIONS(7344), [anon_sym_extern] = ACTIONS(7344), [anon_sym___attribute] = ACTIONS(7344), [anon_sym___attribute__] = ACTIONS(7344), [anon_sym___declspec] = ACTIONS(7344), - [anon_sym_LBRACE] = ACTIONS(7346), - [anon_sym_RBRACE] = ACTIONS(7346), - [anon_sym_LBRACK] = ACTIONS(7346), [anon_sym_static] = ACTIONS(7344), [anon_sym_auto] = ACTIONS(7344), [anon_sym_register] = ACTIONS(7344), @@ -502809,16 +496181,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7344), [sym_primitive_type] = ACTIONS(7344), [anon_sym_enum] = ACTIONS(7344), - [anon_sym_COLON] = ACTIONS(7346), - [anon_sym_NS_ENUM] = ACTIONS(7344), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7344), - [anon_sym_NS_OPTIONS] = ACTIONS(7344), [anon_sym_struct] = ACTIONS(7344), - [anon_sym_ATdefs] = ACTIONS(7346), [anon_sym_union] = ACTIONS(7344), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(7346), - [anon_sym_ATinterface] = ACTIONS(7346), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7344), + [anon_sym_ATend] = ACTIONS(7346), + [sym_optional] = ACTIONS(7346), + [sym_required] = ACTIONS(7346), + [anon_sym_ATproperty] = ACTIONS(7346), [sym_method_attribute_specifier] = ACTIONS(7344), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7344), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7344), @@ -502844,7 +496214,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7344), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7344), [anon_sym_NS_SWIFT_NAME] = ACTIONS(7344), - [anon_sym_ATimplementation] = ACTIONS(7346), + [anon_sym_NS_ENUM] = ACTIONS(7344), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7344), + [anon_sym_NS_OPTIONS] = ACTIONS(7344), [anon_sym_typeof] = ACTIONS(7344), [anon_sym___typeof] = ACTIONS(7344), [anon_sym___typeof__] = ACTIONS(7344), @@ -502862,20 +496234,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3105] = { + [3062] = { [sym_identifier] = ACTIONS(7348), - [anon_sym_COMMA] = ACTIONS(7350), - [anon_sym_RPAREN] = ACTIONS(7350), - [anon_sym_LPAREN2] = ACTIONS(7350), - [anon_sym_SEMI] = ACTIONS(7350), + [aux_sym_preproc_def_token1] = ACTIONS(7350), + [anon_sym_DASH] = ACTIONS(7350), + [anon_sym_PLUS] = ACTIONS(7350), [anon_sym_typedef] = ACTIONS(7348), [anon_sym_extern] = ACTIONS(7348), [anon_sym___attribute] = ACTIONS(7348), [anon_sym___attribute__] = ACTIONS(7348), [anon_sym___declspec] = ACTIONS(7348), - [anon_sym_LBRACE] = ACTIONS(7350), - [anon_sym_RBRACE] = ACTIONS(7350), - [anon_sym_LBRACK] = ACTIONS(7350), [anon_sym_static] = ACTIONS(7348), [anon_sym_auto] = ACTIONS(7348), [anon_sym_register] = ACTIONS(7348), @@ -502918,16 +496286,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7348), [sym_primitive_type] = ACTIONS(7348), [anon_sym_enum] = ACTIONS(7348), - [anon_sym_COLON] = ACTIONS(7350), - [anon_sym_NS_ENUM] = ACTIONS(7348), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7348), - [anon_sym_NS_OPTIONS] = ACTIONS(7348), [anon_sym_struct] = ACTIONS(7348), - [anon_sym_ATdefs] = ACTIONS(7350), [anon_sym_union] = ACTIONS(7348), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(7350), - [anon_sym_ATinterface] = ACTIONS(7350), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7348), + [anon_sym_ATend] = ACTIONS(7350), + [sym_optional] = ACTIONS(7350), + [sym_required] = ACTIONS(7350), + [anon_sym_ATproperty] = ACTIONS(7350), [sym_method_attribute_specifier] = ACTIONS(7348), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7348), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7348), @@ -502953,7 +496319,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7348), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7348), [anon_sym_NS_SWIFT_NAME] = ACTIONS(7348), - [anon_sym_ATimplementation] = ACTIONS(7350), + [anon_sym_NS_ENUM] = ACTIONS(7348), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7348), + [anon_sym_NS_OPTIONS] = ACTIONS(7348), [anon_sym_typeof] = ACTIONS(7348), [anon_sym___typeof] = ACTIONS(7348), [anon_sym___typeof__] = ACTIONS(7348), @@ -502971,20 +496339,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3106] = { + [3063] = { + [sym_identifier] = ACTIONS(6852), + [anon_sym_COMMA] = ACTIONS(6854), + [anon_sym_RPAREN] = ACTIONS(6854), + [anon_sym_LPAREN2] = ACTIONS(6854), + [anon_sym_DASH] = ACTIONS(6852), + [anon_sym_PLUS] = ACTIONS(6852), + [anon_sym_STAR] = ACTIONS(6854), + [anon_sym_SLASH] = ACTIONS(6852), + [anon_sym_PERCENT] = ACTIONS(6854), + [anon_sym_PIPE_PIPE] = ACTIONS(6854), + [anon_sym_AMP_AMP] = ACTIONS(6854), + [anon_sym_PIPE] = ACTIONS(6852), + [anon_sym_CARET] = ACTIONS(6854), + [anon_sym_AMP] = ACTIONS(6852), + [anon_sym_EQ_EQ] = ACTIONS(6854), + [anon_sym_BANG_EQ] = ACTIONS(6854), + [anon_sym_GT] = ACTIONS(6852), + [anon_sym_GT_EQ] = ACTIONS(6854), + [anon_sym_LT_EQ] = ACTIONS(6854), + [anon_sym_LT] = ACTIONS(6852), + [anon_sym_LT_LT] = ACTIONS(6854), + [anon_sym_GT_GT] = ACTIONS(6854), + [anon_sym_SEMI] = ACTIONS(6854), + [anon_sym___attribute] = ACTIONS(6852), + [anon_sym___attribute__] = ACTIONS(6852), + [anon_sym_RBRACE] = ACTIONS(6854), + [anon_sym_LBRACK] = ACTIONS(6854), + [anon_sym_RBRACK] = ACTIONS(6854), + [anon_sym_const] = ACTIONS(6852), + [anon_sym_volatile] = ACTIONS(6852), + [anon_sym_restrict] = ACTIONS(6852), + [anon_sym__Atomic] = ACTIONS(6852), + [anon_sym_in] = ACTIONS(6852), + [anon_sym_out] = ACTIONS(6852), + [anon_sym_inout] = ACTIONS(6852), + [anon_sym_bycopy] = ACTIONS(6852), + [anon_sym_byref] = ACTIONS(6852), + [anon_sym_oneway] = ACTIONS(6852), + [anon_sym__Nullable] = ACTIONS(6852), + [anon_sym__Nonnull] = ACTIONS(6852), + [anon_sym__Nullable_result] = ACTIONS(6852), + [anon_sym__Null_unspecified] = ACTIONS(6852), + [anon_sym___autoreleasing] = ACTIONS(6852), + [anon_sym___nullable] = ACTIONS(6852), + [anon_sym___nonnull] = ACTIONS(6852), + [anon_sym___strong] = ACTIONS(6852), + [anon_sym___weak] = ACTIONS(6852), + [anon_sym___bridge] = ACTIONS(6852), + [anon_sym___bridge_transfer] = ACTIONS(6852), + [anon_sym___bridge_retained] = ACTIONS(6852), + [anon_sym___unsafe_unretained] = ACTIONS(6852), + [anon_sym___block] = ACTIONS(6852), + [anon_sym___kindof] = ACTIONS(6852), + [anon_sym___unused] = ACTIONS(6852), + [anon_sym__Complex] = ACTIONS(6852), + [anon_sym___complex] = ACTIONS(6852), + [anon_sym_IBOutlet] = ACTIONS(6852), + [anon_sym_IBInspectable] = ACTIONS(6852), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6852), + [anon_sym_COLON] = ACTIONS(6854), + [anon_sym_QMARK] = ACTIONS(6854), + [anon_sym_DASH_DASH] = ACTIONS(6854), + [anon_sym_PLUS_PLUS] = ACTIONS(6854), + [anon_sym_DOT] = ACTIONS(6854), + [anon_sym_DASH_GT] = ACTIONS(6854), + [anon_sym_L_DQUOTE] = ACTIONS(6854), + [anon_sym_u_DQUOTE] = ACTIONS(6854), + [anon_sym_U_DQUOTE] = ACTIONS(6854), + [anon_sym_u8_DQUOTE] = ACTIONS(6854), + [anon_sym_DQUOTE] = ACTIONS(6854), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6852), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6852), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6852), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6852), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6852), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6852), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6852), + [anon_sym_NS_AVAILABLE] = ACTIONS(6852), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6852), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6852), + [anon_sym_API_AVAILABLE] = ACTIONS(6852), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6852), + [anon_sym_API_DEPRECATED] = ACTIONS(6852), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6852), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6852), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6852), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6852), + [anon_sym___deprecated_msg] = ACTIONS(6852), + [anon_sym___deprecated_enum_msg] = ACTIONS(6852), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6852), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6852), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6852), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6852), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6852), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6852), + [anon_sym_AT] = ACTIONS(6854), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3064] = { [sym_identifier] = ACTIONS(7352), - [anon_sym_COMMA] = ACTIONS(7354), - [anon_sym_RPAREN] = ACTIONS(7354), - [anon_sym_LPAREN2] = ACTIONS(7354), - [anon_sym_SEMI] = ACTIONS(7354), + [aux_sym_preproc_def_token1] = ACTIONS(7354), + [anon_sym_DASH] = ACTIONS(7354), + [anon_sym_PLUS] = ACTIONS(7354), [anon_sym_typedef] = ACTIONS(7352), [anon_sym_extern] = ACTIONS(7352), [anon_sym___attribute] = ACTIONS(7352), [anon_sym___attribute__] = ACTIONS(7352), [anon_sym___declspec] = ACTIONS(7352), - [anon_sym_LBRACE] = ACTIONS(7354), - [anon_sym_RBRACE] = ACTIONS(7354), - [anon_sym_LBRACK] = ACTIONS(7354), [anon_sym_static] = ACTIONS(7352), [anon_sym_auto] = ACTIONS(7352), [anon_sym_register] = ACTIONS(7352), @@ -503027,16 +496496,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7352), [sym_primitive_type] = ACTIONS(7352), [anon_sym_enum] = ACTIONS(7352), - [anon_sym_COLON] = ACTIONS(7354), - [anon_sym_NS_ENUM] = ACTIONS(7352), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7352), - [anon_sym_NS_OPTIONS] = ACTIONS(7352), [anon_sym_struct] = ACTIONS(7352), - [anon_sym_ATdefs] = ACTIONS(7354), [anon_sym_union] = ACTIONS(7352), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(7354), - [anon_sym_ATinterface] = ACTIONS(7354), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7352), + [anon_sym_ATend] = ACTIONS(7354), + [sym_optional] = ACTIONS(7354), + [sym_required] = ACTIONS(7354), + [anon_sym_ATproperty] = ACTIONS(7354), [sym_method_attribute_specifier] = ACTIONS(7352), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7352), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7352), @@ -503062,7 +496529,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7352), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7352), [anon_sym_NS_SWIFT_NAME] = ACTIONS(7352), - [anon_sym_ATimplementation] = ACTIONS(7354), + [anon_sym_NS_ENUM] = ACTIONS(7352), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7352), + [anon_sym_NS_OPTIONS] = ACTIONS(7352), [anon_sym_typeof] = ACTIONS(7352), [anon_sym___typeof] = ACTIONS(7352), [anon_sym___typeof__] = ACTIONS(7352), @@ -503080,19 +496549,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3107] = { + [3065] = { [sym_identifier] = ACTIONS(7356), [aux_sym_preproc_def_token1] = ACTIONS(7358), - [anon_sym_LPAREN2] = ACTIONS(7358), [anon_sym_DASH] = ACTIONS(7358), [anon_sym_PLUS] = ACTIONS(7358), - [anon_sym_LT] = ACTIONS(7358), [anon_sym_typedef] = ACTIONS(7356), [anon_sym_extern] = ACTIONS(7356), [anon_sym___attribute] = ACTIONS(7356), [anon_sym___attribute__] = ACTIONS(7356), [anon_sym___declspec] = ACTIONS(7356), - [anon_sym_LBRACE] = ACTIONS(7358), [anon_sym_static] = ACTIONS(7356), [anon_sym_auto] = ACTIONS(7356), [anon_sym_register] = ACTIONS(7356), @@ -503135,10 +496601,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7356), [sym_primitive_type] = ACTIONS(7356), [anon_sym_enum] = ACTIONS(7356), - [anon_sym_COLON] = ACTIONS(7358), - [anon_sym_NS_ENUM] = ACTIONS(7356), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7356), - [anon_sym_NS_OPTIONS] = ACTIONS(7356), [anon_sym_struct] = ACTIONS(7356), [anon_sym_union] = ACTIONS(7356), [sym_comment] = ACTIONS(3), @@ -503172,6 +496634,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7356), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7356), [anon_sym_NS_SWIFT_NAME] = ACTIONS(7356), + [anon_sym_NS_ENUM] = ACTIONS(7356), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7356), + [anon_sym_NS_OPTIONS] = ACTIONS(7356), [anon_sym_typeof] = ACTIONS(7356), [anon_sym___typeof] = ACTIONS(7356), [anon_sym___typeof__] = ACTIONS(7356), @@ -503189,20 +496654,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3108] = { + [3066] = { [sym_identifier] = ACTIONS(7360), - [anon_sym_COMMA] = ACTIONS(7362), - [anon_sym_RPAREN] = ACTIONS(7362), - [anon_sym_LPAREN2] = ACTIONS(7362), - [anon_sym_SEMI] = ACTIONS(7362), + [aux_sym_preproc_def_token1] = ACTIONS(7362), + [anon_sym_DASH] = ACTIONS(7362), + [anon_sym_PLUS] = ACTIONS(7362), [anon_sym_typedef] = ACTIONS(7360), [anon_sym_extern] = ACTIONS(7360), [anon_sym___attribute] = ACTIONS(7360), [anon_sym___attribute__] = ACTIONS(7360), [anon_sym___declspec] = ACTIONS(7360), - [anon_sym_LBRACE] = ACTIONS(7362), - [anon_sym_RBRACE] = ACTIONS(7362), - [anon_sym_LBRACK] = ACTIONS(7362), [anon_sym_static] = ACTIONS(7360), [anon_sym_auto] = ACTIONS(7360), [anon_sym_register] = ACTIONS(7360), @@ -503245,16 +496706,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7360), [sym_primitive_type] = ACTIONS(7360), [anon_sym_enum] = ACTIONS(7360), - [anon_sym_COLON] = ACTIONS(7362), - [anon_sym_NS_ENUM] = ACTIONS(7360), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7360), - [anon_sym_NS_OPTIONS] = ACTIONS(7360), [anon_sym_struct] = ACTIONS(7360), - [anon_sym_ATdefs] = ACTIONS(7362), [anon_sym_union] = ACTIONS(7360), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(7362), - [anon_sym_ATinterface] = ACTIONS(7362), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7360), + [anon_sym_ATend] = ACTIONS(7362), + [sym_optional] = ACTIONS(7362), + [sym_required] = ACTIONS(7362), + [anon_sym_ATproperty] = ACTIONS(7362), [sym_method_attribute_specifier] = ACTIONS(7360), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7360), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7360), @@ -503280,7 +496739,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7360), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7360), [anon_sym_NS_SWIFT_NAME] = ACTIONS(7360), - [anon_sym_ATimplementation] = ACTIONS(7362), + [anon_sym_NS_ENUM] = ACTIONS(7360), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7360), + [anon_sym_NS_OPTIONS] = ACTIONS(7360), [anon_sym_typeof] = ACTIONS(7360), [anon_sym___typeof] = ACTIONS(7360), [anon_sym___typeof__] = ACTIONS(7360), @@ -503298,107 +496759,4514 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3109] = { - [sym_generic_type_references] = STATE(2778), - [sym_identifier] = ACTIONS(6814), - [aux_sym_preproc_def_token1] = ACTIONS(6816), - [anon_sym_DASH] = ACTIONS(6816), - [anon_sym_PLUS] = ACTIONS(6816), - [anon_sym_LT] = ACTIONS(7364), - [anon_sym_typedef] = ACTIONS(6814), - [anon_sym_extern] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___declspec] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6816), - [anon_sym_static] = ACTIONS(6814), - [anon_sym_auto] = ACTIONS(6814), - [anon_sym_register] = ACTIONS(6814), - [anon_sym_inline] = ACTIONS(6814), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6814), - [anon_sym_const] = ACTIONS(6814), - [anon_sym_volatile] = ACTIONS(6814), - [anon_sym_restrict] = ACTIONS(6814), - [anon_sym__Atomic] = ACTIONS(6814), - [anon_sym_in] = ACTIONS(6814), - [anon_sym_out] = ACTIONS(6814), - [anon_sym_inout] = ACTIONS(6814), - [anon_sym_bycopy] = ACTIONS(6814), - [anon_sym_byref] = ACTIONS(6814), - [anon_sym_oneway] = ACTIONS(6814), - [anon_sym__Nullable] = ACTIONS(6814), - [anon_sym__Nonnull] = ACTIONS(6814), - [anon_sym__Nullable_result] = ACTIONS(6814), - [anon_sym__Null_unspecified] = ACTIONS(6814), - [anon_sym___autoreleasing] = ACTIONS(6814), - [anon_sym___nullable] = ACTIONS(6814), - [anon_sym___nonnull] = ACTIONS(6814), - [anon_sym___strong] = ACTIONS(6814), - [anon_sym___weak] = ACTIONS(6814), - [anon_sym___bridge] = ACTIONS(6814), - [anon_sym___bridge_transfer] = ACTIONS(6814), - [anon_sym___bridge_retained] = ACTIONS(6814), - [anon_sym___unsafe_unretained] = ACTIONS(6814), - [anon_sym___block] = ACTIONS(6814), - [anon_sym___kindof] = ACTIONS(6814), - [anon_sym___unused] = ACTIONS(6814), - [anon_sym__Complex] = ACTIONS(6814), - [anon_sym___complex] = ACTIONS(6814), - [anon_sym_IBOutlet] = ACTIONS(6814), - [anon_sym_IBInspectable] = ACTIONS(6814), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6814), - [anon_sym_signed] = ACTIONS(6814), - [anon_sym_unsigned] = ACTIONS(6814), - [anon_sym_long] = ACTIONS(6814), - [anon_sym_short] = ACTIONS(6814), - [sym_primitive_type] = ACTIONS(6814), - [anon_sym_enum] = ACTIONS(6814), - [anon_sym_NS_ENUM] = ACTIONS(6814), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(6814), - [anon_sym_NS_OPTIONS] = ACTIONS(6814), - [anon_sym_struct] = ACTIONS(6814), - [anon_sym_union] = ACTIONS(6814), + [3067] = { + [sym_identifier] = ACTIONS(7364), + [aux_sym_preproc_def_token1] = ACTIONS(7366), + [anon_sym_DASH] = ACTIONS(7366), + [anon_sym_PLUS] = ACTIONS(7366), + [anon_sym_typedef] = ACTIONS(7364), + [anon_sym_extern] = ACTIONS(7364), + [anon_sym___attribute] = ACTIONS(7364), + [anon_sym___attribute__] = ACTIONS(7364), + [anon_sym___declspec] = ACTIONS(7364), + [anon_sym_static] = ACTIONS(7364), + [anon_sym_auto] = ACTIONS(7364), + [anon_sym_register] = ACTIONS(7364), + [anon_sym_inline] = ACTIONS(7364), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7364), + [anon_sym_const] = ACTIONS(7364), + [anon_sym_volatile] = ACTIONS(7364), + [anon_sym_restrict] = ACTIONS(7364), + [anon_sym__Atomic] = ACTIONS(7364), + [anon_sym_in] = ACTIONS(7364), + [anon_sym_out] = ACTIONS(7364), + [anon_sym_inout] = ACTIONS(7364), + [anon_sym_bycopy] = ACTIONS(7364), + [anon_sym_byref] = ACTIONS(7364), + [anon_sym_oneway] = ACTIONS(7364), + [anon_sym__Nullable] = ACTIONS(7364), + [anon_sym__Nonnull] = ACTIONS(7364), + [anon_sym__Nullable_result] = ACTIONS(7364), + [anon_sym__Null_unspecified] = ACTIONS(7364), + [anon_sym___autoreleasing] = ACTIONS(7364), + [anon_sym___nullable] = ACTIONS(7364), + [anon_sym___nonnull] = ACTIONS(7364), + [anon_sym___strong] = ACTIONS(7364), + [anon_sym___weak] = ACTIONS(7364), + [anon_sym___bridge] = ACTIONS(7364), + [anon_sym___bridge_transfer] = ACTIONS(7364), + [anon_sym___bridge_retained] = ACTIONS(7364), + [anon_sym___unsafe_unretained] = ACTIONS(7364), + [anon_sym___block] = ACTIONS(7364), + [anon_sym___kindof] = ACTIONS(7364), + [anon_sym___unused] = ACTIONS(7364), + [anon_sym__Complex] = ACTIONS(7364), + [anon_sym___complex] = ACTIONS(7364), + [anon_sym_IBOutlet] = ACTIONS(7364), + [anon_sym_IBInspectable] = ACTIONS(7364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7364), + [anon_sym_signed] = ACTIONS(7364), + [anon_sym_unsigned] = ACTIONS(7364), + [anon_sym_long] = ACTIONS(7364), + [anon_sym_short] = ACTIONS(7364), + [sym_primitive_type] = ACTIONS(7364), + [anon_sym_enum] = ACTIONS(7364), + [anon_sym_struct] = ACTIONS(7364), + [anon_sym_union] = ACTIONS(7364), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(6814), - [anon_sym_ATend] = ACTIONS(6816), - [sym_optional] = ACTIONS(6816), - [sym_required] = ACTIONS(6816), - [anon_sym_ATproperty] = ACTIONS(6816), - [sym_method_attribute_specifier] = ACTIONS(6814), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6814), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6814), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6814), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6814), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6814), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6814), - [anon_sym_NS_AVAILABLE] = ACTIONS(6814), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6814), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6814), - [anon_sym_API_AVAILABLE] = ACTIONS(6814), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6814), - [anon_sym_API_DEPRECATED] = ACTIONS(6814), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6814), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6814), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6814), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6814), - [anon_sym___deprecated_msg] = ACTIONS(6814), - [anon_sym___deprecated_enum_msg] = ACTIONS(6814), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6814), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6814), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6814), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6814), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6814), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6814), - [anon_sym_typeof] = ACTIONS(6814), - [anon_sym___typeof] = ACTIONS(6814), - [anon_sym___typeof__] = ACTIONS(6814), - [sym_id] = ACTIONS(6814), - [sym_instancetype] = ACTIONS(6814), - [sym_Class] = ACTIONS(6814), - [sym_SEL] = ACTIONS(6814), - [sym_IMP] = ACTIONS(6814), - [sym_BOOL] = ACTIONS(6814), - [sym_auto] = ACTIONS(6814), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7364), + [anon_sym_ATend] = ACTIONS(7366), + [sym_optional] = ACTIONS(7366), + [sym_required] = ACTIONS(7366), + [anon_sym_ATproperty] = ACTIONS(7366), + [sym_method_attribute_specifier] = ACTIONS(7364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7364), + [anon_sym_NS_AVAILABLE] = ACTIONS(7364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7364), + [anon_sym_API_AVAILABLE] = ACTIONS(7364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7364), + [anon_sym_API_DEPRECATED] = ACTIONS(7364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7364), + [anon_sym___deprecated_msg] = ACTIONS(7364), + [anon_sym___deprecated_enum_msg] = ACTIONS(7364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7364), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7364), + [anon_sym_NS_ENUM] = ACTIONS(7364), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7364), + [anon_sym_NS_OPTIONS] = ACTIONS(7364), + [anon_sym_typeof] = ACTIONS(7364), + [anon_sym___typeof] = ACTIONS(7364), + [anon_sym___typeof__] = ACTIONS(7364), + [sym_id] = ACTIONS(7364), + [sym_instancetype] = ACTIONS(7364), + [sym_Class] = ACTIONS(7364), + [sym_SEL] = ACTIONS(7364), + [sym_IMP] = ACTIONS(7364), + [sym_BOOL] = ACTIONS(7364), + [sym_auto] = ACTIONS(7364), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3068] = { + [sym_identifier] = ACTIONS(7364), + [aux_sym_preproc_def_token1] = ACTIONS(7366), + [anon_sym_DASH] = ACTIONS(7366), + [anon_sym_PLUS] = ACTIONS(7366), + [anon_sym_typedef] = ACTIONS(7364), + [anon_sym_extern] = ACTIONS(7364), + [anon_sym___attribute] = ACTIONS(7364), + [anon_sym___attribute__] = ACTIONS(7364), + [anon_sym___declspec] = ACTIONS(7364), + [anon_sym_static] = ACTIONS(7364), + [anon_sym_auto] = ACTIONS(7364), + [anon_sym_register] = ACTIONS(7364), + [anon_sym_inline] = ACTIONS(7364), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7364), + [anon_sym_const] = ACTIONS(7364), + [anon_sym_volatile] = ACTIONS(7364), + [anon_sym_restrict] = ACTIONS(7364), + [anon_sym__Atomic] = ACTIONS(7364), + [anon_sym_in] = ACTIONS(7364), + [anon_sym_out] = ACTIONS(7364), + [anon_sym_inout] = ACTIONS(7364), + [anon_sym_bycopy] = ACTIONS(7364), + [anon_sym_byref] = ACTIONS(7364), + [anon_sym_oneway] = ACTIONS(7364), + [anon_sym__Nullable] = ACTIONS(7364), + [anon_sym__Nonnull] = ACTIONS(7364), + [anon_sym__Nullable_result] = ACTIONS(7364), + [anon_sym__Null_unspecified] = ACTIONS(7364), + [anon_sym___autoreleasing] = ACTIONS(7364), + [anon_sym___nullable] = ACTIONS(7364), + [anon_sym___nonnull] = ACTIONS(7364), + [anon_sym___strong] = ACTIONS(7364), + [anon_sym___weak] = ACTIONS(7364), + [anon_sym___bridge] = ACTIONS(7364), + [anon_sym___bridge_transfer] = ACTIONS(7364), + [anon_sym___bridge_retained] = ACTIONS(7364), + [anon_sym___unsafe_unretained] = ACTIONS(7364), + [anon_sym___block] = ACTIONS(7364), + [anon_sym___kindof] = ACTIONS(7364), + [anon_sym___unused] = ACTIONS(7364), + [anon_sym__Complex] = ACTIONS(7364), + [anon_sym___complex] = ACTIONS(7364), + [anon_sym_IBOutlet] = ACTIONS(7364), + [anon_sym_IBInspectable] = ACTIONS(7364), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7364), + [anon_sym_signed] = ACTIONS(7364), + [anon_sym_unsigned] = ACTIONS(7364), + [anon_sym_long] = ACTIONS(7364), + [anon_sym_short] = ACTIONS(7364), + [sym_primitive_type] = ACTIONS(7364), + [anon_sym_enum] = ACTIONS(7364), + [anon_sym_struct] = ACTIONS(7364), + [anon_sym_union] = ACTIONS(7364), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7364), + [anon_sym_ATend] = ACTIONS(7366), + [sym_optional] = ACTIONS(7366), + [sym_required] = ACTIONS(7366), + [anon_sym_ATproperty] = ACTIONS(7366), + [sym_method_attribute_specifier] = ACTIONS(7364), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7364), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7364), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7364), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7364), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7364), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7364), + [anon_sym_NS_AVAILABLE] = ACTIONS(7364), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7364), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7364), + [anon_sym_API_AVAILABLE] = ACTIONS(7364), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7364), + [anon_sym_API_DEPRECATED] = ACTIONS(7364), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7364), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7364), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7364), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7364), + [anon_sym___deprecated_msg] = ACTIONS(7364), + [anon_sym___deprecated_enum_msg] = ACTIONS(7364), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7364), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7364), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7364), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7364), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7364), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7364), + [anon_sym_NS_ENUM] = ACTIONS(7364), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7364), + [anon_sym_NS_OPTIONS] = ACTIONS(7364), + [anon_sym_typeof] = ACTIONS(7364), + [anon_sym___typeof] = ACTIONS(7364), + [anon_sym___typeof__] = ACTIONS(7364), + [sym_id] = ACTIONS(7364), + [sym_instancetype] = ACTIONS(7364), + [sym_Class] = ACTIONS(7364), + [sym_SEL] = ACTIONS(7364), + [sym_IMP] = ACTIONS(7364), + [sym_BOOL] = ACTIONS(7364), + [sym_auto] = ACTIONS(7364), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3069] = { + [sym_identifier] = ACTIONS(7368), + [aux_sym_preproc_def_token1] = ACTIONS(7370), + [anon_sym_DASH] = ACTIONS(7370), + [anon_sym_PLUS] = ACTIONS(7370), + [anon_sym_typedef] = ACTIONS(7368), + [anon_sym_extern] = ACTIONS(7368), + [anon_sym___attribute] = ACTIONS(7368), + [anon_sym___attribute__] = ACTIONS(7368), + [anon_sym___declspec] = ACTIONS(7368), + [anon_sym_static] = ACTIONS(7368), + [anon_sym_auto] = ACTIONS(7368), + [anon_sym_register] = ACTIONS(7368), + [anon_sym_inline] = ACTIONS(7368), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7368), + [anon_sym_const] = ACTIONS(7368), + [anon_sym_volatile] = ACTIONS(7368), + [anon_sym_restrict] = ACTIONS(7368), + [anon_sym__Atomic] = ACTIONS(7368), + [anon_sym_in] = ACTIONS(7368), + [anon_sym_out] = ACTIONS(7368), + [anon_sym_inout] = ACTIONS(7368), + [anon_sym_bycopy] = ACTIONS(7368), + [anon_sym_byref] = ACTIONS(7368), + [anon_sym_oneway] = ACTIONS(7368), + [anon_sym__Nullable] = ACTIONS(7368), + [anon_sym__Nonnull] = ACTIONS(7368), + [anon_sym__Nullable_result] = ACTIONS(7368), + [anon_sym__Null_unspecified] = ACTIONS(7368), + [anon_sym___autoreleasing] = ACTIONS(7368), + [anon_sym___nullable] = ACTIONS(7368), + [anon_sym___nonnull] = ACTIONS(7368), + [anon_sym___strong] = ACTIONS(7368), + [anon_sym___weak] = ACTIONS(7368), + [anon_sym___bridge] = ACTIONS(7368), + [anon_sym___bridge_transfer] = ACTIONS(7368), + [anon_sym___bridge_retained] = ACTIONS(7368), + [anon_sym___unsafe_unretained] = ACTIONS(7368), + [anon_sym___block] = ACTIONS(7368), + [anon_sym___kindof] = ACTIONS(7368), + [anon_sym___unused] = ACTIONS(7368), + [anon_sym__Complex] = ACTIONS(7368), + [anon_sym___complex] = ACTIONS(7368), + [anon_sym_IBOutlet] = ACTIONS(7368), + [anon_sym_IBInspectable] = ACTIONS(7368), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7368), + [anon_sym_signed] = ACTIONS(7368), + [anon_sym_unsigned] = ACTIONS(7368), + [anon_sym_long] = ACTIONS(7368), + [anon_sym_short] = ACTIONS(7368), + [sym_primitive_type] = ACTIONS(7368), + [anon_sym_enum] = ACTIONS(7368), + [anon_sym_struct] = ACTIONS(7368), + [anon_sym_union] = ACTIONS(7368), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7368), + [anon_sym_ATend] = ACTIONS(7370), + [sym_optional] = ACTIONS(7370), + [sym_required] = ACTIONS(7370), + [anon_sym_ATproperty] = ACTIONS(7370), + [sym_method_attribute_specifier] = ACTIONS(7368), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7368), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7368), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7368), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7368), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7368), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7368), + [anon_sym_NS_AVAILABLE] = ACTIONS(7368), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7368), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7368), + [anon_sym_API_AVAILABLE] = ACTIONS(7368), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7368), + [anon_sym_API_DEPRECATED] = ACTIONS(7368), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7368), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7368), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7368), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7368), + [anon_sym___deprecated_msg] = ACTIONS(7368), + [anon_sym___deprecated_enum_msg] = ACTIONS(7368), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7368), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7368), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7368), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7368), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7368), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7368), + [anon_sym_NS_ENUM] = ACTIONS(7368), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7368), + [anon_sym_NS_OPTIONS] = ACTIONS(7368), + [anon_sym_typeof] = ACTIONS(7368), + [anon_sym___typeof] = ACTIONS(7368), + [anon_sym___typeof__] = ACTIONS(7368), + [sym_id] = ACTIONS(7368), + [sym_instancetype] = ACTIONS(7368), + [sym_Class] = ACTIONS(7368), + [sym_SEL] = ACTIONS(7368), + [sym_IMP] = ACTIONS(7368), + [sym_BOOL] = ACTIONS(7368), + [sym_auto] = ACTIONS(7368), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3070] = { + [sym_identifier] = ACTIONS(7368), + [aux_sym_preproc_def_token1] = ACTIONS(7370), + [anon_sym_DASH] = ACTIONS(7370), + [anon_sym_PLUS] = ACTIONS(7370), + [anon_sym_typedef] = ACTIONS(7368), + [anon_sym_extern] = ACTIONS(7368), + [anon_sym___attribute] = ACTIONS(7368), + [anon_sym___attribute__] = ACTIONS(7368), + [anon_sym___declspec] = ACTIONS(7368), + [anon_sym_static] = ACTIONS(7368), + [anon_sym_auto] = ACTIONS(7368), + [anon_sym_register] = ACTIONS(7368), + [anon_sym_inline] = ACTIONS(7368), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7368), + [anon_sym_const] = ACTIONS(7368), + [anon_sym_volatile] = ACTIONS(7368), + [anon_sym_restrict] = ACTIONS(7368), + [anon_sym__Atomic] = ACTIONS(7368), + [anon_sym_in] = ACTIONS(7368), + [anon_sym_out] = ACTIONS(7368), + [anon_sym_inout] = ACTIONS(7368), + [anon_sym_bycopy] = ACTIONS(7368), + [anon_sym_byref] = ACTIONS(7368), + [anon_sym_oneway] = ACTIONS(7368), + [anon_sym__Nullable] = ACTIONS(7368), + [anon_sym__Nonnull] = ACTIONS(7368), + [anon_sym__Nullable_result] = ACTIONS(7368), + [anon_sym__Null_unspecified] = ACTIONS(7368), + [anon_sym___autoreleasing] = ACTIONS(7368), + [anon_sym___nullable] = ACTIONS(7368), + [anon_sym___nonnull] = ACTIONS(7368), + [anon_sym___strong] = ACTIONS(7368), + [anon_sym___weak] = ACTIONS(7368), + [anon_sym___bridge] = ACTIONS(7368), + [anon_sym___bridge_transfer] = ACTIONS(7368), + [anon_sym___bridge_retained] = ACTIONS(7368), + [anon_sym___unsafe_unretained] = ACTIONS(7368), + [anon_sym___block] = ACTIONS(7368), + [anon_sym___kindof] = ACTIONS(7368), + [anon_sym___unused] = ACTIONS(7368), + [anon_sym__Complex] = ACTIONS(7368), + [anon_sym___complex] = ACTIONS(7368), + [anon_sym_IBOutlet] = ACTIONS(7368), + [anon_sym_IBInspectable] = ACTIONS(7368), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7368), + [anon_sym_signed] = ACTIONS(7368), + [anon_sym_unsigned] = ACTIONS(7368), + [anon_sym_long] = ACTIONS(7368), + [anon_sym_short] = ACTIONS(7368), + [sym_primitive_type] = ACTIONS(7368), + [anon_sym_enum] = ACTIONS(7368), + [anon_sym_struct] = ACTIONS(7368), + [anon_sym_union] = ACTIONS(7368), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7368), + [anon_sym_ATend] = ACTIONS(7370), + [sym_optional] = ACTIONS(7370), + [sym_required] = ACTIONS(7370), + [anon_sym_ATproperty] = ACTIONS(7370), + [sym_method_attribute_specifier] = ACTIONS(7368), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7368), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7368), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7368), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7368), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7368), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7368), + [anon_sym_NS_AVAILABLE] = ACTIONS(7368), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7368), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7368), + [anon_sym_API_AVAILABLE] = ACTIONS(7368), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7368), + [anon_sym_API_DEPRECATED] = ACTIONS(7368), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7368), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7368), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7368), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7368), + [anon_sym___deprecated_msg] = ACTIONS(7368), + [anon_sym___deprecated_enum_msg] = ACTIONS(7368), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7368), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7368), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7368), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7368), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7368), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7368), + [anon_sym_NS_ENUM] = ACTIONS(7368), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7368), + [anon_sym_NS_OPTIONS] = ACTIONS(7368), + [anon_sym_typeof] = ACTIONS(7368), + [anon_sym___typeof] = ACTIONS(7368), + [anon_sym___typeof__] = ACTIONS(7368), + [sym_id] = ACTIONS(7368), + [sym_instancetype] = ACTIONS(7368), + [sym_Class] = ACTIONS(7368), + [sym_SEL] = ACTIONS(7368), + [sym_IMP] = ACTIONS(7368), + [sym_BOOL] = ACTIONS(7368), + [sym_auto] = ACTIONS(7368), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3071] = { + [sym_identifier] = ACTIONS(7372), + [aux_sym_preproc_def_token1] = ACTIONS(7374), + [anon_sym_DASH] = ACTIONS(7374), + [anon_sym_PLUS] = ACTIONS(7374), + [anon_sym_typedef] = ACTIONS(7372), + [anon_sym_extern] = ACTIONS(7372), + [anon_sym___attribute] = ACTIONS(7372), + [anon_sym___attribute__] = ACTIONS(7372), + [anon_sym___declspec] = ACTIONS(7372), + [anon_sym_static] = ACTIONS(7372), + [anon_sym_auto] = ACTIONS(7372), + [anon_sym_register] = ACTIONS(7372), + [anon_sym_inline] = ACTIONS(7372), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7372), + [anon_sym_const] = ACTIONS(7372), + [anon_sym_volatile] = ACTIONS(7372), + [anon_sym_restrict] = ACTIONS(7372), + [anon_sym__Atomic] = ACTIONS(7372), + [anon_sym_in] = ACTIONS(7372), + [anon_sym_out] = ACTIONS(7372), + [anon_sym_inout] = ACTIONS(7372), + [anon_sym_bycopy] = ACTIONS(7372), + [anon_sym_byref] = ACTIONS(7372), + [anon_sym_oneway] = ACTIONS(7372), + [anon_sym__Nullable] = ACTIONS(7372), + [anon_sym__Nonnull] = ACTIONS(7372), + [anon_sym__Nullable_result] = ACTIONS(7372), + [anon_sym__Null_unspecified] = ACTIONS(7372), + [anon_sym___autoreleasing] = ACTIONS(7372), + [anon_sym___nullable] = ACTIONS(7372), + [anon_sym___nonnull] = ACTIONS(7372), + [anon_sym___strong] = ACTIONS(7372), + [anon_sym___weak] = ACTIONS(7372), + [anon_sym___bridge] = ACTIONS(7372), + [anon_sym___bridge_transfer] = ACTIONS(7372), + [anon_sym___bridge_retained] = ACTIONS(7372), + [anon_sym___unsafe_unretained] = ACTIONS(7372), + [anon_sym___block] = ACTIONS(7372), + [anon_sym___kindof] = ACTIONS(7372), + [anon_sym___unused] = ACTIONS(7372), + [anon_sym__Complex] = ACTIONS(7372), + [anon_sym___complex] = ACTIONS(7372), + [anon_sym_IBOutlet] = ACTIONS(7372), + [anon_sym_IBInspectable] = ACTIONS(7372), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7372), + [anon_sym_signed] = ACTIONS(7372), + [anon_sym_unsigned] = ACTIONS(7372), + [anon_sym_long] = ACTIONS(7372), + [anon_sym_short] = ACTIONS(7372), + [sym_primitive_type] = ACTIONS(7372), + [anon_sym_enum] = ACTIONS(7372), + [anon_sym_struct] = ACTIONS(7372), + [anon_sym_union] = ACTIONS(7372), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7372), + [anon_sym_ATend] = ACTIONS(7374), + [sym_optional] = ACTIONS(7374), + [sym_required] = ACTIONS(7374), + [anon_sym_ATproperty] = ACTIONS(7374), + [sym_method_attribute_specifier] = ACTIONS(7372), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7372), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7372), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7372), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7372), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7372), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7372), + [anon_sym_NS_AVAILABLE] = ACTIONS(7372), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7372), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7372), + [anon_sym_API_AVAILABLE] = ACTIONS(7372), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7372), + [anon_sym_API_DEPRECATED] = ACTIONS(7372), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7372), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7372), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7372), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7372), + [anon_sym___deprecated_msg] = ACTIONS(7372), + [anon_sym___deprecated_enum_msg] = ACTIONS(7372), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7372), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7372), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7372), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7372), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7372), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7372), + [anon_sym_NS_ENUM] = ACTIONS(7372), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7372), + [anon_sym_NS_OPTIONS] = ACTIONS(7372), + [anon_sym_typeof] = ACTIONS(7372), + [anon_sym___typeof] = ACTIONS(7372), + [anon_sym___typeof__] = ACTIONS(7372), + [sym_id] = ACTIONS(7372), + [sym_instancetype] = ACTIONS(7372), + [sym_Class] = ACTIONS(7372), + [sym_SEL] = ACTIONS(7372), + [sym_IMP] = ACTIONS(7372), + [sym_BOOL] = ACTIONS(7372), + [sym_auto] = ACTIONS(7372), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3072] = { + [sym_identifier] = ACTIONS(7376), + [aux_sym_preproc_def_token1] = ACTIONS(7378), + [anon_sym_DASH] = ACTIONS(7378), + [anon_sym_PLUS] = ACTIONS(7378), + [anon_sym_typedef] = ACTIONS(7376), + [anon_sym_extern] = ACTIONS(7376), + [anon_sym___attribute] = ACTIONS(7376), + [anon_sym___attribute__] = ACTIONS(7376), + [anon_sym___declspec] = ACTIONS(7376), + [anon_sym_static] = ACTIONS(7376), + [anon_sym_auto] = ACTIONS(7376), + [anon_sym_register] = ACTIONS(7376), + [anon_sym_inline] = ACTIONS(7376), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7376), + [anon_sym_const] = ACTIONS(7376), + [anon_sym_volatile] = ACTIONS(7376), + [anon_sym_restrict] = ACTIONS(7376), + [anon_sym__Atomic] = ACTIONS(7376), + [anon_sym_in] = ACTIONS(7376), + [anon_sym_out] = ACTIONS(7376), + [anon_sym_inout] = ACTIONS(7376), + [anon_sym_bycopy] = ACTIONS(7376), + [anon_sym_byref] = ACTIONS(7376), + [anon_sym_oneway] = ACTIONS(7376), + [anon_sym__Nullable] = ACTIONS(7376), + [anon_sym__Nonnull] = ACTIONS(7376), + [anon_sym__Nullable_result] = ACTIONS(7376), + [anon_sym__Null_unspecified] = ACTIONS(7376), + [anon_sym___autoreleasing] = ACTIONS(7376), + [anon_sym___nullable] = ACTIONS(7376), + [anon_sym___nonnull] = ACTIONS(7376), + [anon_sym___strong] = ACTIONS(7376), + [anon_sym___weak] = ACTIONS(7376), + [anon_sym___bridge] = ACTIONS(7376), + [anon_sym___bridge_transfer] = ACTIONS(7376), + [anon_sym___bridge_retained] = ACTIONS(7376), + [anon_sym___unsafe_unretained] = ACTIONS(7376), + [anon_sym___block] = ACTIONS(7376), + [anon_sym___kindof] = ACTIONS(7376), + [anon_sym___unused] = ACTIONS(7376), + [anon_sym__Complex] = ACTIONS(7376), + [anon_sym___complex] = ACTIONS(7376), + [anon_sym_IBOutlet] = ACTIONS(7376), + [anon_sym_IBInspectable] = ACTIONS(7376), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7376), + [anon_sym_signed] = ACTIONS(7376), + [anon_sym_unsigned] = ACTIONS(7376), + [anon_sym_long] = ACTIONS(7376), + [anon_sym_short] = ACTIONS(7376), + [sym_primitive_type] = ACTIONS(7376), + [anon_sym_enum] = ACTIONS(7376), + [anon_sym_struct] = ACTIONS(7376), + [anon_sym_union] = ACTIONS(7376), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7376), + [anon_sym_ATend] = ACTIONS(7378), + [sym_optional] = ACTIONS(7378), + [sym_required] = ACTIONS(7378), + [anon_sym_ATproperty] = ACTIONS(7378), + [sym_method_attribute_specifier] = ACTIONS(7376), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7376), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7376), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7376), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7376), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7376), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7376), + [anon_sym_NS_AVAILABLE] = ACTIONS(7376), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7376), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7376), + [anon_sym_API_AVAILABLE] = ACTIONS(7376), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7376), + [anon_sym_API_DEPRECATED] = ACTIONS(7376), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7376), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7376), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7376), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7376), + [anon_sym___deprecated_msg] = ACTIONS(7376), + [anon_sym___deprecated_enum_msg] = ACTIONS(7376), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7376), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7376), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7376), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7376), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7376), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7376), + [anon_sym_NS_ENUM] = ACTIONS(7376), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7376), + [anon_sym_NS_OPTIONS] = ACTIONS(7376), + [anon_sym_typeof] = ACTIONS(7376), + [anon_sym___typeof] = ACTIONS(7376), + [anon_sym___typeof__] = ACTIONS(7376), + [sym_id] = ACTIONS(7376), + [sym_instancetype] = ACTIONS(7376), + [sym_Class] = ACTIONS(7376), + [sym_SEL] = ACTIONS(7376), + [sym_IMP] = ACTIONS(7376), + [sym_BOOL] = ACTIONS(7376), + [sym_auto] = ACTIONS(7376), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3073] = { + [sym_identifier] = ACTIONS(7376), + [aux_sym_preproc_def_token1] = ACTIONS(7378), + [anon_sym_DASH] = ACTIONS(7378), + [anon_sym_PLUS] = ACTIONS(7378), + [anon_sym_typedef] = ACTIONS(7376), + [anon_sym_extern] = ACTIONS(7376), + [anon_sym___attribute] = ACTIONS(7376), + [anon_sym___attribute__] = ACTIONS(7376), + [anon_sym___declspec] = ACTIONS(7376), + [anon_sym_static] = ACTIONS(7376), + [anon_sym_auto] = ACTIONS(7376), + [anon_sym_register] = ACTIONS(7376), + [anon_sym_inline] = ACTIONS(7376), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7376), + [anon_sym_const] = ACTIONS(7376), + [anon_sym_volatile] = ACTIONS(7376), + [anon_sym_restrict] = ACTIONS(7376), + [anon_sym__Atomic] = ACTIONS(7376), + [anon_sym_in] = ACTIONS(7376), + [anon_sym_out] = ACTIONS(7376), + [anon_sym_inout] = ACTIONS(7376), + [anon_sym_bycopy] = ACTIONS(7376), + [anon_sym_byref] = ACTIONS(7376), + [anon_sym_oneway] = ACTIONS(7376), + [anon_sym__Nullable] = ACTIONS(7376), + [anon_sym__Nonnull] = ACTIONS(7376), + [anon_sym__Nullable_result] = ACTIONS(7376), + [anon_sym__Null_unspecified] = ACTIONS(7376), + [anon_sym___autoreleasing] = ACTIONS(7376), + [anon_sym___nullable] = ACTIONS(7376), + [anon_sym___nonnull] = ACTIONS(7376), + [anon_sym___strong] = ACTIONS(7376), + [anon_sym___weak] = ACTIONS(7376), + [anon_sym___bridge] = ACTIONS(7376), + [anon_sym___bridge_transfer] = ACTIONS(7376), + [anon_sym___bridge_retained] = ACTIONS(7376), + [anon_sym___unsafe_unretained] = ACTIONS(7376), + [anon_sym___block] = ACTIONS(7376), + [anon_sym___kindof] = ACTIONS(7376), + [anon_sym___unused] = ACTIONS(7376), + [anon_sym__Complex] = ACTIONS(7376), + [anon_sym___complex] = ACTIONS(7376), + [anon_sym_IBOutlet] = ACTIONS(7376), + [anon_sym_IBInspectable] = ACTIONS(7376), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7376), + [anon_sym_signed] = ACTIONS(7376), + [anon_sym_unsigned] = ACTIONS(7376), + [anon_sym_long] = ACTIONS(7376), + [anon_sym_short] = ACTIONS(7376), + [sym_primitive_type] = ACTIONS(7376), + [anon_sym_enum] = ACTIONS(7376), + [anon_sym_struct] = ACTIONS(7376), + [anon_sym_union] = ACTIONS(7376), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7376), + [anon_sym_ATend] = ACTIONS(7378), + [sym_optional] = ACTIONS(7378), + [sym_required] = ACTIONS(7378), + [anon_sym_ATproperty] = ACTIONS(7378), + [sym_method_attribute_specifier] = ACTIONS(7376), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7376), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7376), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7376), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7376), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7376), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7376), + [anon_sym_NS_AVAILABLE] = ACTIONS(7376), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7376), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7376), + [anon_sym_API_AVAILABLE] = ACTIONS(7376), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7376), + [anon_sym_API_DEPRECATED] = ACTIONS(7376), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7376), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7376), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7376), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7376), + [anon_sym___deprecated_msg] = ACTIONS(7376), + [anon_sym___deprecated_enum_msg] = ACTIONS(7376), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7376), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7376), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7376), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7376), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7376), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7376), + [anon_sym_NS_ENUM] = ACTIONS(7376), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7376), + [anon_sym_NS_OPTIONS] = ACTIONS(7376), + [anon_sym_typeof] = ACTIONS(7376), + [anon_sym___typeof] = ACTIONS(7376), + [anon_sym___typeof__] = ACTIONS(7376), + [sym_id] = ACTIONS(7376), + [sym_instancetype] = ACTIONS(7376), + [sym_Class] = ACTIONS(7376), + [sym_SEL] = ACTIONS(7376), + [sym_IMP] = ACTIONS(7376), + [sym_BOOL] = ACTIONS(7376), + [sym_auto] = ACTIONS(7376), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3074] = { + [sym_identifier] = ACTIONS(7380), + [aux_sym_preproc_def_token1] = ACTIONS(7382), + [anon_sym_DASH] = ACTIONS(7382), + [anon_sym_PLUS] = ACTIONS(7382), + [anon_sym_typedef] = ACTIONS(7380), + [anon_sym_extern] = ACTIONS(7380), + [anon_sym___attribute] = ACTIONS(7380), + [anon_sym___attribute__] = ACTIONS(7380), + [anon_sym___declspec] = ACTIONS(7380), + [anon_sym_static] = ACTIONS(7380), + [anon_sym_auto] = ACTIONS(7380), + [anon_sym_register] = ACTIONS(7380), + [anon_sym_inline] = ACTIONS(7380), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7380), + [anon_sym_const] = ACTIONS(7380), + [anon_sym_volatile] = ACTIONS(7380), + [anon_sym_restrict] = ACTIONS(7380), + [anon_sym__Atomic] = ACTIONS(7380), + [anon_sym_in] = ACTIONS(7380), + [anon_sym_out] = ACTIONS(7380), + [anon_sym_inout] = ACTIONS(7380), + [anon_sym_bycopy] = ACTIONS(7380), + [anon_sym_byref] = ACTIONS(7380), + [anon_sym_oneway] = ACTIONS(7380), + [anon_sym__Nullable] = ACTIONS(7380), + [anon_sym__Nonnull] = ACTIONS(7380), + [anon_sym__Nullable_result] = ACTIONS(7380), + [anon_sym__Null_unspecified] = ACTIONS(7380), + [anon_sym___autoreleasing] = ACTIONS(7380), + [anon_sym___nullable] = ACTIONS(7380), + [anon_sym___nonnull] = ACTIONS(7380), + [anon_sym___strong] = ACTIONS(7380), + [anon_sym___weak] = ACTIONS(7380), + [anon_sym___bridge] = ACTIONS(7380), + [anon_sym___bridge_transfer] = ACTIONS(7380), + [anon_sym___bridge_retained] = ACTIONS(7380), + [anon_sym___unsafe_unretained] = ACTIONS(7380), + [anon_sym___block] = ACTIONS(7380), + [anon_sym___kindof] = ACTIONS(7380), + [anon_sym___unused] = ACTIONS(7380), + [anon_sym__Complex] = ACTIONS(7380), + [anon_sym___complex] = ACTIONS(7380), + [anon_sym_IBOutlet] = ACTIONS(7380), + [anon_sym_IBInspectable] = ACTIONS(7380), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7380), + [anon_sym_signed] = ACTIONS(7380), + [anon_sym_unsigned] = ACTIONS(7380), + [anon_sym_long] = ACTIONS(7380), + [anon_sym_short] = ACTIONS(7380), + [sym_primitive_type] = ACTIONS(7380), + [anon_sym_enum] = ACTIONS(7380), + [anon_sym_struct] = ACTIONS(7380), + [anon_sym_union] = ACTIONS(7380), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7380), + [anon_sym_ATend] = ACTIONS(7382), + [sym_optional] = ACTIONS(7382), + [sym_required] = ACTIONS(7382), + [anon_sym_ATproperty] = ACTIONS(7382), + [sym_method_attribute_specifier] = ACTIONS(7380), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7380), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7380), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7380), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7380), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7380), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7380), + [anon_sym_NS_AVAILABLE] = ACTIONS(7380), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7380), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7380), + [anon_sym_API_AVAILABLE] = ACTIONS(7380), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7380), + [anon_sym_API_DEPRECATED] = ACTIONS(7380), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7380), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7380), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7380), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7380), + [anon_sym___deprecated_msg] = ACTIONS(7380), + [anon_sym___deprecated_enum_msg] = ACTIONS(7380), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7380), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7380), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7380), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7380), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7380), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7380), + [anon_sym_NS_ENUM] = ACTIONS(7380), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7380), + [anon_sym_NS_OPTIONS] = ACTIONS(7380), + [anon_sym_typeof] = ACTIONS(7380), + [anon_sym___typeof] = ACTIONS(7380), + [anon_sym___typeof__] = ACTIONS(7380), + [sym_id] = ACTIONS(7380), + [sym_instancetype] = ACTIONS(7380), + [sym_Class] = ACTIONS(7380), + [sym_SEL] = ACTIONS(7380), + [sym_IMP] = ACTIONS(7380), + [sym_BOOL] = ACTIONS(7380), + [sym_auto] = ACTIONS(7380), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3075] = { + [sym_identifier] = ACTIONS(7384), + [aux_sym_preproc_def_token1] = ACTIONS(7386), + [anon_sym_DASH] = ACTIONS(7386), + [anon_sym_PLUS] = ACTIONS(7386), + [anon_sym_typedef] = ACTIONS(7384), + [anon_sym_extern] = ACTIONS(7384), + [anon_sym___attribute] = ACTIONS(7384), + [anon_sym___attribute__] = ACTIONS(7384), + [anon_sym___declspec] = ACTIONS(7384), + [anon_sym_static] = ACTIONS(7384), + [anon_sym_auto] = ACTIONS(7384), + [anon_sym_register] = ACTIONS(7384), + [anon_sym_inline] = ACTIONS(7384), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7384), + [anon_sym_const] = ACTIONS(7384), + [anon_sym_volatile] = ACTIONS(7384), + [anon_sym_restrict] = ACTIONS(7384), + [anon_sym__Atomic] = ACTIONS(7384), + [anon_sym_in] = ACTIONS(7384), + [anon_sym_out] = ACTIONS(7384), + [anon_sym_inout] = ACTIONS(7384), + [anon_sym_bycopy] = ACTIONS(7384), + [anon_sym_byref] = ACTIONS(7384), + [anon_sym_oneway] = ACTIONS(7384), + [anon_sym__Nullable] = ACTIONS(7384), + [anon_sym__Nonnull] = ACTIONS(7384), + [anon_sym__Nullable_result] = ACTIONS(7384), + [anon_sym__Null_unspecified] = ACTIONS(7384), + [anon_sym___autoreleasing] = ACTIONS(7384), + [anon_sym___nullable] = ACTIONS(7384), + [anon_sym___nonnull] = ACTIONS(7384), + [anon_sym___strong] = ACTIONS(7384), + [anon_sym___weak] = ACTIONS(7384), + [anon_sym___bridge] = ACTIONS(7384), + [anon_sym___bridge_transfer] = ACTIONS(7384), + [anon_sym___bridge_retained] = ACTIONS(7384), + [anon_sym___unsafe_unretained] = ACTIONS(7384), + [anon_sym___block] = ACTIONS(7384), + [anon_sym___kindof] = ACTIONS(7384), + [anon_sym___unused] = ACTIONS(7384), + [anon_sym__Complex] = ACTIONS(7384), + [anon_sym___complex] = ACTIONS(7384), + [anon_sym_IBOutlet] = ACTIONS(7384), + [anon_sym_IBInspectable] = ACTIONS(7384), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7384), + [anon_sym_signed] = ACTIONS(7384), + [anon_sym_unsigned] = ACTIONS(7384), + [anon_sym_long] = ACTIONS(7384), + [anon_sym_short] = ACTIONS(7384), + [sym_primitive_type] = ACTIONS(7384), + [anon_sym_enum] = ACTIONS(7384), + [anon_sym_struct] = ACTIONS(7384), + [anon_sym_union] = ACTIONS(7384), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7384), + [anon_sym_ATend] = ACTIONS(7386), + [sym_optional] = ACTIONS(7386), + [sym_required] = ACTIONS(7386), + [anon_sym_ATproperty] = ACTIONS(7386), + [sym_method_attribute_specifier] = ACTIONS(7384), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7384), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7384), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7384), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7384), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7384), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7384), + [anon_sym_NS_AVAILABLE] = ACTIONS(7384), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7384), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7384), + [anon_sym_API_AVAILABLE] = ACTIONS(7384), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7384), + [anon_sym_API_DEPRECATED] = ACTIONS(7384), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7384), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7384), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7384), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7384), + [anon_sym___deprecated_msg] = ACTIONS(7384), + [anon_sym___deprecated_enum_msg] = ACTIONS(7384), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7384), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7384), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7384), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7384), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7384), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7384), + [anon_sym_NS_ENUM] = ACTIONS(7384), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7384), + [anon_sym_NS_OPTIONS] = ACTIONS(7384), + [anon_sym_typeof] = ACTIONS(7384), + [anon_sym___typeof] = ACTIONS(7384), + [anon_sym___typeof__] = ACTIONS(7384), + [sym_id] = ACTIONS(7384), + [sym_instancetype] = ACTIONS(7384), + [sym_Class] = ACTIONS(7384), + [sym_SEL] = ACTIONS(7384), + [sym_IMP] = ACTIONS(7384), + [sym_BOOL] = ACTIONS(7384), + [sym_auto] = ACTIONS(7384), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3076] = { + [sym_identifier] = ACTIONS(7388), + [aux_sym_preproc_def_token1] = ACTIONS(7390), + [anon_sym_DASH] = ACTIONS(7390), + [anon_sym_PLUS] = ACTIONS(7390), + [anon_sym_typedef] = ACTIONS(7388), + [anon_sym_extern] = ACTIONS(7388), + [anon_sym___attribute] = ACTIONS(7388), + [anon_sym___attribute__] = ACTIONS(7388), + [anon_sym___declspec] = ACTIONS(7388), + [anon_sym_static] = ACTIONS(7388), + [anon_sym_auto] = ACTIONS(7388), + [anon_sym_register] = ACTIONS(7388), + [anon_sym_inline] = ACTIONS(7388), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7388), + [anon_sym_const] = ACTIONS(7388), + [anon_sym_volatile] = ACTIONS(7388), + [anon_sym_restrict] = ACTIONS(7388), + [anon_sym__Atomic] = ACTIONS(7388), + [anon_sym_in] = ACTIONS(7388), + [anon_sym_out] = ACTIONS(7388), + [anon_sym_inout] = ACTIONS(7388), + [anon_sym_bycopy] = ACTIONS(7388), + [anon_sym_byref] = ACTIONS(7388), + [anon_sym_oneway] = ACTIONS(7388), + [anon_sym__Nullable] = ACTIONS(7388), + [anon_sym__Nonnull] = ACTIONS(7388), + [anon_sym__Nullable_result] = ACTIONS(7388), + [anon_sym__Null_unspecified] = ACTIONS(7388), + [anon_sym___autoreleasing] = ACTIONS(7388), + [anon_sym___nullable] = ACTIONS(7388), + [anon_sym___nonnull] = ACTIONS(7388), + [anon_sym___strong] = ACTIONS(7388), + [anon_sym___weak] = ACTIONS(7388), + [anon_sym___bridge] = ACTIONS(7388), + [anon_sym___bridge_transfer] = ACTIONS(7388), + [anon_sym___bridge_retained] = ACTIONS(7388), + [anon_sym___unsafe_unretained] = ACTIONS(7388), + [anon_sym___block] = ACTIONS(7388), + [anon_sym___kindof] = ACTIONS(7388), + [anon_sym___unused] = ACTIONS(7388), + [anon_sym__Complex] = ACTIONS(7388), + [anon_sym___complex] = ACTIONS(7388), + [anon_sym_IBOutlet] = ACTIONS(7388), + [anon_sym_IBInspectable] = ACTIONS(7388), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7388), + [anon_sym_signed] = ACTIONS(7388), + [anon_sym_unsigned] = ACTIONS(7388), + [anon_sym_long] = ACTIONS(7388), + [anon_sym_short] = ACTIONS(7388), + [sym_primitive_type] = ACTIONS(7388), + [anon_sym_enum] = ACTIONS(7388), + [anon_sym_struct] = ACTIONS(7388), + [anon_sym_union] = ACTIONS(7388), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7388), + [anon_sym_ATend] = ACTIONS(7390), + [sym_optional] = ACTIONS(7390), + [sym_required] = ACTIONS(7390), + [anon_sym_ATproperty] = ACTIONS(7390), + [sym_method_attribute_specifier] = ACTIONS(7388), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7388), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7388), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7388), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7388), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7388), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7388), + [anon_sym_NS_AVAILABLE] = ACTIONS(7388), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7388), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7388), + [anon_sym_API_AVAILABLE] = ACTIONS(7388), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7388), + [anon_sym_API_DEPRECATED] = ACTIONS(7388), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7388), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7388), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7388), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7388), + [anon_sym___deprecated_msg] = ACTIONS(7388), + [anon_sym___deprecated_enum_msg] = ACTIONS(7388), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7388), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7388), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7388), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7388), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7388), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7388), + [anon_sym_NS_ENUM] = ACTIONS(7388), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7388), + [anon_sym_NS_OPTIONS] = ACTIONS(7388), + [anon_sym_typeof] = ACTIONS(7388), + [anon_sym___typeof] = ACTIONS(7388), + [anon_sym___typeof__] = ACTIONS(7388), + [sym_id] = ACTIONS(7388), + [sym_instancetype] = ACTIONS(7388), + [sym_Class] = ACTIONS(7388), + [sym_SEL] = ACTIONS(7388), + [sym_IMP] = ACTIONS(7388), + [sym_BOOL] = ACTIONS(7388), + [sym_auto] = ACTIONS(7388), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3077] = { + [sym_identifier] = ACTIONS(7392), + [aux_sym_preproc_def_token1] = ACTIONS(7394), + [anon_sym_DASH] = ACTIONS(7394), + [anon_sym_PLUS] = ACTIONS(7394), + [anon_sym_typedef] = ACTIONS(7392), + [anon_sym_extern] = ACTIONS(7392), + [anon_sym___attribute] = ACTIONS(7392), + [anon_sym___attribute__] = ACTIONS(7392), + [anon_sym___declspec] = ACTIONS(7392), + [anon_sym_static] = ACTIONS(7392), + [anon_sym_auto] = ACTIONS(7392), + [anon_sym_register] = ACTIONS(7392), + [anon_sym_inline] = ACTIONS(7392), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7392), + [anon_sym_const] = ACTIONS(7392), + [anon_sym_volatile] = ACTIONS(7392), + [anon_sym_restrict] = ACTIONS(7392), + [anon_sym__Atomic] = ACTIONS(7392), + [anon_sym_in] = ACTIONS(7392), + [anon_sym_out] = ACTIONS(7392), + [anon_sym_inout] = ACTIONS(7392), + [anon_sym_bycopy] = ACTIONS(7392), + [anon_sym_byref] = ACTIONS(7392), + [anon_sym_oneway] = ACTIONS(7392), + [anon_sym__Nullable] = ACTIONS(7392), + [anon_sym__Nonnull] = ACTIONS(7392), + [anon_sym__Nullable_result] = ACTIONS(7392), + [anon_sym__Null_unspecified] = ACTIONS(7392), + [anon_sym___autoreleasing] = ACTIONS(7392), + [anon_sym___nullable] = ACTIONS(7392), + [anon_sym___nonnull] = ACTIONS(7392), + [anon_sym___strong] = ACTIONS(7392), + [anon_sym___weak] = ACTIONS(7392), + [anon_sym___bridge] = ACTIONS(7392), + [anon_sym___bridge_transfer] = ACTIONS(7392), + [anon_sym___bridge_retained] = ACTIONS(7392), + [anon_sym___unsafe_unretained] = ACTIONS(7392), + [anon_sym___block] = ACTIONS(7392), + [anon_sym___kindof] = ACTIONS(7392), + [anon_sym___unused] = ACTIONS(7392), + [anon_sym__Complex] = ACTIONS(7392), + [anon_sym___complex] = ACTIONS(7392), + [anon_sym_IBOutlet] = ACTIONS(7392), + [anon_sym_IBInspectable] = ACTIONS(7392), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7392), + [anon_sym_signed] = ACTIONS(7392), + [anon_sym_unsigned] = ACTIONS(7392), + [anon_sym_long] = ACTIONS(7392), + [anon_sym_short] = ACTIONS(7392), + [sym_primitive_type] = ACTIONS(7392), + [anon_sym_enum] = ACTIONS(7392), + [anon_sym_struct] = ACTIONS(7392), + [anon_sym_union] = ACTIONS(7392), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7392), + [anon_sym_ATend] = ACTIONS(7394), + [sym_optional] = ACTIONS(7394), + [sym_required] = ACTIONS(7394), + [anon_sym_ATproperty] = ACTIONS(7394), + [sym_method_attribute_specifier] = ACTIONS(7392), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7392), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7392), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7392), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7392), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7392), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7392), + [anon_sym_NS_AVAILABLE] = ACTIONS(7392), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7392), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7392), + [anon_sym_API_AVAILABLE] = ACTIONS(7392), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7392), + [anon_sym_API_DEPRECATED] = ACTIONS(7392), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7392), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7392), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7392), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7392), + [anon_sym___deprecated_msg] = ACTIONS(7392), + [anon_sym___deprecated_enum_msg] = ACTIONS(7392), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7392), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7392), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7392), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7392), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7392), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7392), + [anon_sym_NS_ENUM] = ACTIONS(7392), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7392), + [anon_sym_NS_OPTIONS] = ACTIONS(7392), + [anon_sym_typeof] = ACTIONS(7392), + [anon_sym___typeof] = ACTIONS(7392), + [anon_sym___typeof__] = ACTIONS(7392), + [sym_id] = ACTIONS(7392), + [sym_instancetype] = ACTIONS(7392), + [sym_Class] = ACTIONS(7392), + [sym_SEL] = ACTIONS(7392), + [sym_IMP] = ACTIONS(7392), + [sym_BOOL] = ACTIONS(7392), + [sym_auto] = ACTIONS(7392), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3078] = { + [sym_identifier] = ACTIONS(7396), + [aux_sym_preproc_def_token1] = ACTIONS(7398), + [anon_sym_DASH] = ACTIONS(7398), + [anon_sym_PLUS] = ACTIONS(7398), + [anon_sym_typedef] = ACTIONS(7396), + [anon_sym_extern] = ACTIONS(7396), + [anon_sym___attribute] = ACTIONS(7396), + [anon_sym___attribute__] = ACTIONS(7396), + [anon_sym___declspec] = ACTIONS(7396), + [anon_sym_static] = ACTIONS(7396), + [anon_sym_auto] = ACTIONS(7396), + [anon_sym_register] = ACTIONS(7396), + [anon_sym_inline] = ACTIONS(7396), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7396), + [anon_sym_const] = ACTIONS(7396), + [anon_sym_volatile] = ACTIONS(7396), + [anon_sym_restrict] = ACTIONS(7396), + [anon_sym__Atomic] = ACTIONS(7396), + [anon_sym_in] = ACTIONS(7396), + [anon_sym_out] = ACTIONS(7396), + [anon_sym_inout] = ACTIONS(7396), + [anon_sym_bycopy] = ACTIONS(7396), + [anon_sym_byref] = ACTIONS(7396), + [anon_sym_oneway] = ACTIONS(7396), + [anon_sym__Nullable] = ACTIONS(7396), + [anon_sym__Nonnull] = ACTIONS(7396), + [anon_sym__Nullable_result] = ACTIONS(7396), + [anon_sym__Null_unspecified] = ACTIONS(7396), + [anon_sym___autoreleasing] = ACTIONS(7396), + [anon_sym___nullable] = ACTIONS(7396), + [anon_sym___nonnull] = ACTIONS(7396), + [anon_sym___strong] = ACTIONS(7396), + [anon_sym___weak] = ACTIONS(7396), + [anon_sym___bridge] = ACTIONS(7396), + [anon_sym___bridge_transfer] = ACTIONS(7396), + [anon_sym___bridge_retained] = ACTIONS(7396), + [anon_sym___unsafe_unretained] = ACTIONS(7396), + [anon_sym___block] = ACTIONS(7396), + [anon_sym___kindof] = ACTIONS(7396), + [anon_sym___unused] = ACTIONS(7396), + [anon_sym__Complex] = ACTIONS(7396), + [anon_sym___complex] = ACTIONS(7396), + [anon_sym_IBOutlet] = ACTIONS(7396), + [anon_sym_IBInspectable] = ACTIONS(7396), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7396), + [anon_sym_signed] = ACTIONS(7396), + [anon_sym_unsigned] = ACTIONS(7396), + [anon_sym_long] = ACTIONS(7396), + [anon_sym_short] = ACTIONS(7396), + [sym_primitive_type] = ACTIONS(7396), + [anon_sym_enum] = ACTIONS(7396), + [anon_sym_struct] = ACTIONS(7396), + [anon_sym_union] = ACTIONS(7396), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7396), + [anon_sym_ATend] = ACTIONS(7398), + [sym_optional] = ACTIONS(7398), + [sym_required] = ACTIONS(7398), + [anon_sym_ATproperty] = ACTIONS(7398), + [sym_method_attribute_specifier] = ACTIONS(7396), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7396), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7396), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7396), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7396), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7396), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7396), + [anon_sym_NS_AVAILABLE] = ACTIONS(7396), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7396), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7396), + [anon_sym_API_AVAILABLE] = ACTIONS(7396), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7396), + [anon_sym_API_DEPRECATED] = ACTIONS(7396), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7396), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7396), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7396), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7396), + [anon_sym___deprecated_msg] = ACTIONS(7396), + [anon_sym___deprecated_enum_msg] = ACTIONS(7396), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7396), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7396), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7396), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7396), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7396), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7396), + [anon_sym_NS_ENUM] = ACTIONS(7396), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7396), + [anon_sym_NS_OPTIONS] = ACTIONS(7396), + [anon_sym_typeof] = ACTIONS(7396), + [anon_sym___typeof] = ACTIONS(7396), + [anon_sym___typeof__] = ACTIONS(7396), + [sym_id] = ACTIONS(7396), + [sym_instancetype] = ACTIONS(7396), + [sym_Class] = ACTIONS(7396), + [sym_SEL] = ACTIONS(7396), + [sym_IMP] = ACTIONS(7396), + [sym_BOOL] = ACTIONS(7396), + [sym_auto] = ACTIONS(7396), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3079] = { + [sym_identifier] = ACTIONS(7400), + [aux_sym_preproc_def_token1] = ACTIONS(7402), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_typedef] = ACTIONS(7400), + [anon_sym_extern] = ACTIONS(7400), + [anon_sym___attribute] = ACTIONS(7400), + [anon_sym___attribute__] = ACTIONS(7400), + [anon_sym___declspec] = ACTIONS(7400), + [anon_sym_static] = ACTIONS(7400), + [anon_sym_auto] = ACTIONS(7400), + [anon_sym_register] = ACTIONS(7400), + [anon_sym_inline] = ACTIONS(7400), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7400), + [anon_sym_const] = ACTIONS(7400), + [anon_sym_volatile] = ACTIONS(7400), + [anon_sym_restrict] = ACTIONS(7400), + [anon_sym__Atomic] = ACTIONS(7400), + [anon_sym_in] = ACTIONS(7400), + [anon_sym_out] = ACTIONS(7400), + [anon_sym_inout] = ACTIONS(7400), + [anon_sym_bycopy] = ACTIONS(7400), + [anon_sym_byref] = ACTIONS(7400), + [anon_sym_oneway] = ACTIONS(7400), + [anon_sym__Nullable] = ACTIONS(7400), + [anon_sym__Nonnull] = ACTIONS(7400), + [anon_sym__Nullable_result] = ACTIONS(7400), + [anon_sym__Null_unspecified] = ACTIONS(7400), + [anon_sym___autoreleasing] = ACTIONS(7400), + [anon_sym___nullable] = ACTIONS(7400), + [anon_sym___nonnull] = ACTIONS(7400), + [anon_sym___strong] = ACTIONS(7400), + [anon_sym___weak] = ACTIONS(7400), + [anon_sym___bridge] = ACTIONS(7400), + [anon_sym___bridge_transfer] = ACTIONS(7400), + [anon_sym___bridge_retained] = ACTIONS(7400), + [anon_sym___unsafe_unretained] = ACTIONS(7400), + [anon_sym___block] = ACTIONS(7400), + [anon_sym___kindof] = ACTIONS(7400), + [anon_sym___unused] = ACTIONS(7400), + [anon_sym__Complex] = ACTIONS(7400), + [anon_sym___complex] = ACTIONS(7400), + [anon_sym_IBOutlet] = ACTIONS(7400), + [anon_sym_IBInspectable] = ACTIONS(7400), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7400), + [anon_sym_signed] = ACTIONS(7400), + [anon_sym_unsigned] = ACTIONS(7400), + [anon_sym_long] = ACTIONS(7400), + [anon_sym_short] = ACTIONS(7400), + [sym_primitive_type] = ACTIONS(7400), + [anon_sym_enum] = ACTIONS(7400), + [anon_sym_struct] = ACTIONS(7400), + [anon_sym_union] = ACTIONS(7400), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7400), + [anon_sym_ATend] = ACTIONS(7402), + [sym_optional] = ACTIONS(7402), + [sym_required] = ACTIONS(7402), + [anon_sym_ATproperty] = ACTIONS(7402), + [sym_method_attribute_specifier] = ACTIONS(7400), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7400), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7400), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7400), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7400), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7400), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7400), + [anon_sym_NS_AVAILABLE] = ACTIONS(7400), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7400), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7400), + [anon_sym_API_AVAILABLE] = ACTIONS(7400), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7400), + [anon_sym_API_DEPRECATED] = ACTIONS(7400), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7400), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7400), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7400), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7400), + [anon_sym___deprecated_msg] = ACTIONS(7400), + [anon_sym___deprecated_enum_msg] = ACTIONS(7400), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7400), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7400), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7400), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7400), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7400), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7400), + [anon_sym_NS_ENUM] = ACTIONS(7400), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7400), + [anon_sym_NS_OPTIONS] = ACTIONS(7400), + [anon_sym_typeof] = ACTIONS(7400), + [anon_sym___typeof] = ACTIONS(7400), + [anon_sym___typeof__] = ACTIONS(7400), + [sym_id] = ACTIONS(7400), + [sym_instancetype] = ACTIONS(7400), + [sym_Class] = ACTIONS(7400), + [sym_SEL] = ACTIONS(7400), + [sym_IMP] = ACTIONS(7400), + [sym_BOOL] = ACTIONS(7400), + [sym_auto] = ACTIONS(7400), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3080] = { + [sym_identifier] = ACTIONS(7404), + [aux_sym_preproc_def_token1] = ACTIONS(7406), + [anon_sym_DASH] = ACTIONS(7406), + [anon_sym_PLUS] = ACTIONS(7406), + [anon_sym_typedef] = ACTIONS(7404), + [anon_sym_extern] = ACTIONS(7404), + [anon_sym___attribute] = ACTIONS(7404), + [anon_sym___attribute__] = ACTIONS(7404), + [anon_sym___declspec] = ACTIONS(7404), + [anon_sym_static] = ACTIONS(7404), + [anon_sym_auto] = ACTIONS(7404), + [anon_sym_register] = ACTIONS(7404), + [anon_sym_inline] = ACTIONS(7404), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7404), + [anon_sym_const] = ACTIONS(7404), + [anon_sym_volatile] = ACTIONS(7404), + [anon_sym_restrict] = ACTIONS(7404), + [anon_sym__Atomic] = ACTIONS(7404), + [anon_sym_in] = ACTIONS(7404), + [anon_sym_out] = ACTIONS(7404), + [anon_sym_inout] = ACTIONS(7404), + [anon_sym_bycopy] = ACTIONS(7404), + [anon_sym_byref] = ACTIONS(7404), + [anon_sym_oneway] = ACTIONS(7404), + [anon_sym__Nullable] = ACTIONS(7404), + [anon_sym__Nonnull] = ACTIONS(7404), + [anon_sym__Nullable_result] = ACTIONS(7404), + [anon_sym__Null_unspecified] = ACTIONS(7404), + [anon_sym___autoreleasing] = ACTIONS(7404), + [anon_sym___nullable] = ACTIONS(7404), + [anon_sym___nonnull] = ACTIONS(7404), + [anon_sym___strong] = ACTIONS(7404), + [anon_sym___weak] = ACTIONS(7404), + [anon_sym___bridge] = ACTIONS(7404), + [anon_sym___bridge_transfer] = ACTIONS(7404), + [anon_sym___bridge_retained] = ACTIONS(7404), + [anon_sym___unsafe_unretained] = ACTIONS(7404), + [anon_sym___block] = ACTIONS(7404), + [anon_sym___kindof] = ACTIONS(7404), + [anon_sym___unused] = ACTIONS(7404), + [anon_sym__Complex] = ACTIONS(7404), + [anon_sym___complex] = ACTIONS(7404), + [anon_sym_IBOutlet] = ACTIONS(7404), + [anon_sym_IBInspectable] = ACTIONS(7404), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7404), + [anon_sym_signed] = ACTIONS(7404), + [anon_sym_unsigned] = ACTIONS(7404), + [anon_sym_long] = ACTIONS(7404), + [anon_sym_short] = ACTIONS(7404), + [sym_primitive_type] = ACTIONS(7404), + [anon_sym_enum] = ACTIONS(7404), + [anon_sym_struct] = ACTIONS(7404), + [anon_sym_union] = ACTIONS(7404), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7404), + [anon_sym_ATend] = ACTIONS(7406), + [sym_optional] = ACTIONS(7406), + [sym_required] = ACTIONS(7406), + [anon_sym_ATproperty] = ACTIONS(7406), + [sym_method_attribute_specifier] = ACTIONS(7404), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7404), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7404), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7404), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7404), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7404), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7404), + [anon_sym_NS_AVAILABLE] = ACTIONS(7404), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7404), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7404), + [anon_sym_API_AVAILABLE] = ACTIONS(7404), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7404), + [anon_sym_API_DEPRECATED] = ACTIONS(7404), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7404), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7404), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7404), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7404), + [anon_sym___deprecated_msg] = ACTIONS(7404), + [anon_sym___deprecated_enum_msg] = ACTIONS(7404), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7404), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7404), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7404), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7404), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7404), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7404), + [anon_sym_NS_ENUM] = ACTIONS(7404), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7404), + [anon_sym_NS_OPTIONS] = ACTIONS(7404), + [anon_sym_typeof] = ACTIONS(7404), + [anon_sym___typeof] = ACTIONS(7404), + [anon_sym___typeof__] = ACTIONS(7404), + [sym_id] = ACTIONS(7404), + [sym_instancetype] = ACTIONS(7404), + [sym_Class] = ACTIONS(7404), + [sym_SEL] = ACTIONS(7404), + [sym_IMP] = ACTIONS(7404), + [sym_BOOL] = ACTIONS(7404), + [sym_auto] = ACTIONS(7404), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3081] = { + [sym_identifier] = ACTIONS(7408), + [aux_sym_preproc_def_token1] = ACTIONS(7410), + [anon_sym_DASH] = ACTIONS(7410), + [anon_sym_PLUS] = ACTIONS(7410), + [anon_sym_typedef] = ACTIONS(7408), + [anon_sym_extern] = ACTIONS(7408), + [anon_sym___attribute] = ACTIONS(7408), + [anon_sym___attribute__] = ACTIONS(7408), + [anon_sym___declspec] = ACTIONS(7408), + [anon_sym_static] = ACTIONS(7408), + [anon_sym_auto] = ACTIONS(7408), + [anon_sym_register] = ACTIONS(7408), + [anon_sym_inline] = ACTIONS(7408), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7408), + [anon_sym_const] = ACTIONS(7408), + [anon_sym_volatile] = ACTIONS(7408), + [anon_sym_restrict] = ACTIONS(7408), + [anon_sym__Atomic] = ACTIONS(7408), + [anon_sym_in] = ACTIONS(7408), + [anon_sym_out] = ACTIONS(7408), + [anon_sym_inout] = ACTIONS(7408), + [anon_sym_bycopy] = ACTIONS(7408), + [anon_sym_byref] = ACTIONS(7408), + [anon_sym_oneway] = ACTIONS(7408), + [anon_sym__Nullable] = ACTIONS(7408), + [anon_sym__Nonnull] = ACTIONS(7408), + [anon_sym__Nullable_result] = ACTIONS(7408), + [anon_sym__Null_unspecified] = ACTIONS(7408), + [anon_sym___autoreleasing] = ACTIONS(7408), + [anon_sym___nullable] = ACTIONS(7408), + [anon_sym___nonnull] = ACTIONS(7408), + [anon_sym___strong] = ACTIONS(7408), + [anon_sym___weak] = ACTIONS(7408), + [anon_sym___bridge] = ACTIONS(7408), + [anon_sym___bridge_transfer] = ACTIONS(7408), + [anon_sym___bridge_retained] = ACTIONS(7408), + [anon_sym___unsafe_unretained] = ACTIONS(7408), + [anon_sym___block] = ACTIONS(7408), + [anon_sym___kindof] = ACTIONS(7408), + [anon_sym___unused] = ACTIONS(7408), + [anon_sym__Complex] = ACTIONS(7408), + [anon_sym___complex] = ACTIONS(7408), + [anon_sym_IBOutlet] = ACTIONS(7408), + [anon_sym_IBInspectable] = ACTIONS(7408), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7408), + [anon_sym_signed] = ACTIONS(7408), + [anon_sym_unsigned] = ACTIONS(7408), + [anon_sym_long] = ACTIONS(7408), + [anon_sym_short] = ACTIONS(7408), + [sym_primitive_type] = ACTIONS(7408), + [anon_sym_enum] = ACTIONS(7408), + [anon_sym_struct] = ACTIONS(7408), + [anon_sym_union] = ACTIONS(7408), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7408), + [anon_sym_ATend] = ACTIONS(7410), + [sym_optional] = ACTIONS(7410), + [sym_required] = ACTIONS(7410), + [anon_sym_ATproperty] = ACTIONS(7410), + [sym_method_attribute_specifier] = ACTIONS(7408), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7408), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7408), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7408), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7408), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7408), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7408), + [anon_sym_NS_AVAILABLE] = ACTIONS(7408), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7408), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7408), + [anon_sym_API_AVAILABLE] = ACTIONS(7408), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7408), + [anon_sym_API_DEPRECATED] = ACTIONS(7408), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7408), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7408), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7408), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7408), + [anon_sym___deprecated_msg] = ACTIONS(7408), + [anon_sym___deprecated_enum_msg] = ACTIONS(7408), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7408), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7408), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7408), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7408), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7408), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7408), + [anon_sym_NS_ENUM] = ACTIONS(7408), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7408), + [anon_sym_NS_OPTIONS] = ACTIONS(7408), + [anon_sym_typeof] = ACTIONS(7408), + [anon_sym___typeof] = ACTIONS(7408), + [anon_sym___typeof__] = ACTIONS(7408), + [sym_id] = ACTIONS(7408), + [sym_instancetype] = ACTIONS(7408), + [sym_Class] = ACTIONS(7408), + [sym_SEL] = ACTIONS(7408), + [sym_IMP] = ACTIONS(7408), + [sym_BOOL] = ACTIONS(7408), + [sym_auto] = ACTIONS(7408), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3082] = { + [sym_identifier] = ACTIONS(7412), + [aux_sym_preproc_def_token1] = ACTIONS(7414), + [anon_sym_DASH] = ACTIONS(7414), + [anon_sym_PLUS] = ACTIONS(7414), + [anon_sym_typedef] = ACTIONS(7412), + [anon_sym_extern] = ACTIONS(7412), + [anon_sym___attribute] = ACTIONS(7412), + [anon_sym___attribute__] = ACTIONS(7412), + [anon_sym___declspec] = ACTIONS(7412), + [anon_sym_static] = ACTIONS(7412), + [anon_sym_auto] = ACTIONS(7412), + [anon_sym_register] = ACTIONS(7412), + [anon_sym_inline] = ACTIONS(7412), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7412), + [anon_sym_const] = ACTIONS(7412), + [anon_sym_volatile] = ACTIONS(7412), + [anon_sym_restrict] = ACTIONS(7412), + [anon_sym__Atomic] = ACTIONS(7412), + [anon_sym_in] = ACTIONS(7412), + [anon_sym_out] = ACTIONS(7412), + [anon_sym_inout] = ACTIONS(7412), + [anon_sym_bycopy] = ACTIONS(7412), + [anon_sym_byref] = ACTIONS(7412), + [anon_sym_oneway] = ACTIONS(7412), + [anon_sym__Nullable] = ACTIONS(7412), + [anon_sym__Nonnull] = ACTIONS(7412), + [anon_sym__Nullable_result] = ACTIONS(7412), + [anon_sym__Null_unspecified] = ACTIONS(7412), + [anon_sym___autoreleasing] = ACTIONS(7412), + [anon_sym___nullable] = ACTIONS(7412), + [anon_sym___nonnull] = ACTIONS(7412), + [anon_sym___strong] = ACTIONS(7412), + [anon_sym___weak] = ACTIONS(7412), + [anon_sym___bridge] = ACTIONS(7412), + [anon_sym___bridge_transfer] = ACTIONS(7412), + [anon_sym___bridge_retained] = ACTIONS(7412), + [anon_sym___unsafe_unretained] = ACTIONS(7412), + [anon_sym___block] = ACTIONS(7412), + [anon_sym___kindof] = ACTIONS(7412), + [anon_sym___unused] = ACTIONS(7412), + [anon_sym__Complex] = ACTIONS(7412), + [anon_sym___complex] = ACTIONS(7412), + [anon_sym_IBOutlet] = ACTIONS(7412), + [anon_sym_IBInspectable] = ACTIONS(7412), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7412), + [anon_sym_signed] = ACTIONS(7412), + [anon_sym_unsigned] = ACTIONS(7412), + [anon_sym_long] = ACTIONS(7412), + [anon_sym_short] = ACTIONS(7412), + [sym_primitive_type] = ACTIONS(7412), + [anon_sym_enum] = ACTIONS(7412), + [anon_sym_struct] = ACTIONS(7412), + [anon_sym_union] = ACTIONS(7412), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7412), + [anon_sym_ATend] = ACTIONS(7414), + [sym_optional] = ACTIONS(7414), + [sym_required] = ACTIONS(7414), + [anon_sym_ATproperty] = ACTIONS(7414), + [sym_method_attribute_specifier] = ACTIONS(7412), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7412), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7412), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7412), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7412), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7412), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7412), + [anon_sym_NS_AVAILABLE] = ACTIONS(7412), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7412), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7412), + [anon_sym_API_AVAILABLE] = ACTIONS(7412), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7412), + [anon_sym_API_DEPRECATED] = ACTIONS(7412), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7412), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7412), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7412), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7412), + [anon_sym___deprecated_msg] = ACTIONS(7412), + [anon_sym___deprecated_enum_msg] = ACTIONS(7412), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7412), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7412), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7412), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7412), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7412), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7412), + [anon_sym_NS_ENUM] = ACTIONS(7412), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7412), + [anon_sym_NS_OPTIONS] = ACTIONS(7412), + [anon_sym_typeof] = ACTIONS(7412), + [anon_sym___typeof] = ACTIONS(7412), + [anon_sym___typeof__] = ACTIONS(7412), + [sym_id] = ACTIONS(7412), + [sym_instancetype] = ACTIONS(7412), + [sym_Class] = ACTIONS(7412), + [sym_SEL] = ACTIONS(7412), + [sym_IMP] = ACTIONS(7412), + [sym_BOOL] = ACTIONS(7412), + [sym_auto] = ACTIONS(7412), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3083] = { + [sym_identifier] = ACTIONS(7416), + [aux_sym_preproc_def_token1] = ACTIONS(7418), + [anon_sym_DASH] = ACTIONS(7418), + [anon_sym_PLUS] = ACTIONS(7418), + [anon_sym_typedef] = ACTIONS(7416), + [anon_sym_extern] = ACTIONS(7416), + [anon_sym___attribute] = ACTIONS(7416), + [anon_sym___attribute__] = ACTIONS(7416), + [anon_sym___declspec] = ACTIONS(7416), + [anon_sym_static] = ACTIONS(7416), + [anon_sym_auto] = ACTIONS(7416), + [anon_sym_register] = ACTIONS(7416), + [anon_sym_inline] = ACTIONS(7416), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7416), + [anon_sym_const] = ACTIONS(7416), + [anon_sym_volatile] = ACTIONS(7416), + [anon_sym_restrict] = ACTIONS(7416), + [anon_sym__Atomic] = ACTIONS(7416), + [anon_sym_in] = ACTIONS(7416), + [anon_sym_out] = ACTIONS(7416), + [anon_sym_inout] = ACTIONS(7416), + [anon_sym_bycopy] = ACTIONS(7416), + [anon_sym_byref] = ACTIONS(7416), + [anon_sym_oneway] = ACTIONS(7416), + [anon_sym__Nullable] = ACTIONS(7416), + [anon_sym__Nonnull] = ACTIONS(7416), + [anon_sym__Nullable_result] = ACTIONS(7416), + [anon_sym__Null_unspecified] = ACTIONS(7416), + [anon_sym___autoreleasing] = ACTIONS(7416), + [anon_sym___nullable] = ACTIONS(7416), + [anon_sym___nonnull] = ACTIONS(7416), + [anon_sym___strong] = ACTIONS(7416), + [anon_sym___weak] = ACTIONS(7416), + [anon_sym___bridge] = ACTIONS(7416), + [anon_sym___bridge_transfer] = ACTIONS(7416), + [anon_sym___bridge_retained] = ACTIONS(7416), + [anon_sym___unsafe_unretained] = ACTIONS(7416), + [anon_sym___block] = ACTIONS(7416), + [anon_sym___kindof] = ACTIONS(7416), + [anon_sym___unused] = ACTIONS(7416), + [anon_sym__Complex] = ACTIONS(7416), + [anon_sym___complex] = ACTIONS(7416), + [anon_sym_IBOutlet] = ACTIONS(7416), + [anon_sym_IBInspectable] = ACTIONS(7416), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7416), + [anon_sym_signed] = ACTIONS(7416), + [anon_sym_unsigned] = ACTIONS(7416), + [anon_sym_long] = ACTIONS(7416), + [anon_sym_short] = ACTIONS(7416), + [sym_primitive_type] = ACTIONS(7416), + [anon_sym_enum] = ACTIONS(7416), + [anon_sym_struct] = ACTIONS(7416), + [anon_sym_union] = ACTIONS(7416), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7416), + [anon_sym_ATend] = ACTIONS(7418), + [sym_optional] = ACTIONS(7418), + [sym_required] = ACTIONS(7418), + [anon_sym_ATproperty] = ACTIONS(7418), + [sym_method_attribute_specifier] = ACTIONS(7416), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7416), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7416), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7416), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7416), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7416), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7416), + [anon_sym_NS_AVAILABLE] = ACTIONS(7416), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7416), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7416), + [anon_sym_API_AVAILABLE] = ACTIONS(7416), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7416), + [anon_sym_API_DEPRECATED] = ACTIONS(7416), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7416), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7416), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7416), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7416), + [anon_sym___deprecated_msg] = ACTIONS(7416), + [anon_sym___deprecated_enum_msg] = ACTIONS(7416), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7416), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7416), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7416), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7416), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7416), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7416), + [anon_sym_NS_ENUM] = ACTIONS(7416), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7416), + [anon_sym_NS_OPTIONS] = ACTIONS(7416), + [anon_sym_typeof] = ACTIONS(7416), + [anon_sym___typeof] = ACTIONS(7416), + [anon_sym___typeof__] = ACTIONS(7416), + [sym_id] = ACTIONS(7416), + [sym_instancetype] = ACTIONS(7416), + [sym_Class] = ACTIONS(7416), + [sym_SEL] = ACTIONS(7416), + [sym_IMP] = ACTIONS(7416), + [sym_BOOL] = ACTIONS(7416), + [sym_auto] = ACTIONS(7416), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3084] = { + [sym_identifier] = ACTIONS(7420), + [aux_sym_preproc_def_token1] = ACTIONS(7422), + [anon_sym_DASH] = ACTIONS(7422), + [anon_sym_PLUS] = ACTIONS(7422), + [anon_sym_typedef] = ACTIONS(7420), + [anon_sym_extern] = ACTIONS(7420), + [anon_sym___attribute] = ACTIONS(7420), + [anon_sym___attribute__] = ACTIONS(7420), + [anon_sym___declspec] = ACTIONS(7420), + [anon_sym_static] = ACTIONS(7420), + [anon_sym_auto] = ACTIONS(7420), + [anon_sym_register] = ACTIONS(7420), + [anon_sym_inline] = ACTIONS(7420), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7420), + [anon_sym_const] = ACTIONS(7420), + [anon_sym_volatile] = ACTIONS(7420), + [anon_sym_restrict] = ACTIONS(7420), + [anon_sym__Atomic] = ACTIONS(7420), + [anon_sym_in] = ACTIONS(7420), + [anon_sym_out] = ACTIONS(7420), + [anon_sym_inout] = ACTIONS(7420), + [anon_sym_bycopy] = ACTIONS(7420), + [anon_sym_byref] = ACTIONS(7420), + [anon_sym_oneway] = ACTIONS(7420), + [anon_sym__Nullable] = ACTIONS(7420), + [anon_sym__Nonnull] = ACTIONS(7420), + [anon_sym__Nullable_result] = ACTIONS(7420), + [anon_sym__Null_unspecified] = ACTIONS(7420), + [anon_sym___autoreleasing] = ACTIONS(7420), + [anon_sym___nullable] = ACTIONS(7420), + [anon_sym___nonnull] = ACTIONS(7420), + [anon_sym___strong] = ACTIONS(7420), + [anon_sym___weak] = ACTIONS(7420), + [anon_sym___bridge] = ACTIONS(7420), + [anon_sym___bridge_transfer] = ACTIONS(7420), + [anon_sym___bridge_retained] = ACTIONS(7420), + [anon_sym___unsafe_unretained] = ACTIONS(7420), + [anon_sym___block] = ACTIONS(7420), + [anon_sym___kindof] = ACTIONS(7420), + [anon_sym___unused] = ACTIONS(7420), + [anon_sym__Complex] = ACTIONS(7420), + [anon_sym___complex] = ACTIONS(7420), + [anon_sym_IBOutlet] = ACTIONS(7420), + [anon_sym_IBInspectable] = ACTIONS(7420), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7420), + [anon_sym_signed] = ACTIONS(7420), + [anon_sym_unsigned] = ACTIONS(7420), + [anon_sym_long] = ACTIONS(7420), + [anon_sym_short] = ACTIONS(7420), + [sym_primitive_type] = ACTIONS(7420), + [anon_sym_enum] = ACTIONS(7420), + [anon_sym_struct] = ACTIONS(7420), + [anon_sym_union] = ACTIONS(7420), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7420), + [anon_sym_ATend] = ACTIONS(7422), + [sym_optional] = ACTIONS(7422), + [sym_required] = ACTIONS(7422), + [anon_sym_ATproperty] = ACTIONS(7422), + [sym_method_attribute_specifier] = ACTIONS(7420), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7420), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7420), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7420), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7420), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7420), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7420), + [anon_sym_NS_AVAILABLE] = ACTIONS(7420), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7420), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7420), + [anon_sym_API_AVAILABLE] = ACTIONS(7420), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7420), + [anon_sym_API_DEPRECATED] = ACTIONS(7420), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7420), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7420), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7420), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7420), + [anon_sym___deprecated_msg] = ACTIONS(7420), + [anon_sym___deprecated_enum_msg] = ACTIONS(7420), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7420), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7420), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7420), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7420), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7420), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7420), + [anon_sym_NS_ENUM] = ACTIONS(7420), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7420), + [anon_sym_NS_OPTIONS] = ACTIONS(7420), + [anon_sym_typeof] = ACTIONS(7420), + [anon_sym___typeof] = ACTIONS(7420), + [anon_sym___typeof__] = ACTIONS(7420), + [sym_id] = ACTIONS(7420), + [sym_instancetype] = ACTIONS(7420), + [sym_Class] = ACTIONS(7420), + [sym_SEL] = ACTIONS(7420), + [sym_IMP] = ACTIONS(7420), + [sym_BOOL] = ACTIONS(7420), + [sym_auto] = ACTIONS(7420), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3085] = { + [sym_identifier] = ACTIONS(7424), + [aux_sym_preproc_def_token1] = ACTIONS(7426), + [anon_sym_DASH] = ACTIONS(7426), + [anon_sym_PLUS] = ACTIONS(7426), + [anon_sym_typedef] = ACTIONS(7424), + [anon_sym_extern] = ACTIONS(7424), + [anon_sym___attribute] = ACTIONS(7424), + [anon_sym___attribute__] = ACTIONS(7424), + [anon_sym___declspec] = ACTIONS(7424), + [anon_sym_static] = ACTIONS(7424), + [anon_sym_auto] = ACTIONS(7424), + [anon_sym_register] = ACTIONS(7424), + [anon_sym_inline] = ACTIONS(7424), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7424), + [anon_sym_const] = ACTIONS(7424), + [anon_sym_volatile] = ACTIONS(7424), + [anon_sym_restrict] = ACTIONS(7424), + [anon_sym__Atomic] = ACTIONS(7424), + [anon_sym_in] = ACTIONS(7424), + [anon_sym_out] = ACTIONS(7424), + [anon_sym_inout] = ACTIONS(7424), + [anon_sym_bycopy] = ACTIONS(7424), + [anon_sym_byref] = ACTIONS(7424), + [anon_sym_oneway] = ACTIONS(7424), + [anon_sym__Nullable] = ACTIONS(7424), + [anon_sym__Nonnull] = ACTIONS(7424), + [anon_sym__Nullable_result] = ACTIONS(7424), + [anon_sym__Null_unspecified] = ACTIONS(7424), + [anon_sym___autoreleasing] = ACTIONS(7424), + [anon_sym___nullable] = ACTIONS(7424), + [anon_sym___nonnull] = ACTIONS(7424), + [anon_sym___strong] = ACTIONS(7424), + [anon_sym___weak] = ACTIONS(7424), + [anon_sym___bridge] = ACTIONS(7424), + [anon_sym___bridge_transfer] = ACTIONS(7424), + [anon_sym___bridge_retained] = ACTIONS(7424), + [anon_sym___unsafe_unretained] = ACTIONS(7424), + [anon_sym___block] = ACTIONS(7424), + [anon_sym___kindof] = ACTIONS(7424), + [anon_sym___unused] = ACTIONS(7424), + [anon_sym__Complex] = ACTIONS(7424), + [anon_sym___complex] = ACTIONS(7424), + [anon_sym_IBOutlet] = ACTIONS(7424), + [anon_sym_IBInspectable] = ACTIONS(7424), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7424), + [anon_sym_signed] = ACTIONS(7424), + [anon_sym_unsigned] = ACTIONS(7424), + [anon_sym_long] = ACTIONS(7424), + [anon_sym_short] = ACTIONS(7424), + [sym_primitive_type] = ACTIONS(7424), + [anon_sym_enum] = ACTIONS(7424), + [anon_sym_struct] = ACTIONS(7424), + [anon_sym_union] = ACTIONS(7424), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7424), + [anon_sym_ATend] = ACTIONS(7426), + [sym_optional] = ACTIONS(7426), + [sym_required] = ACTIONS(7426), + [anon_sym_ATproperty] = ACTIONS(7426), + [sym_method_attribute_specifier] = ACTIONS(7424), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7424), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7424), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7424), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7424), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7424), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7424), + [anon_sym_NS_AVAILABLE] = ACTIONS(7424), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7424), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7424), + [anon_sym_API_AVAILABLE] = ACTIONS(7424), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7424), + [anon_sym_API_DEPRECATED] = ACTIONS(7424), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7424), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7424), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7424), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7424), + [anon_sym___deprecated_msg] = ACTIONS(7424), + [anon_sym___deprecated_enum_msg] = ACTIONS(7424), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7424), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7424), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7424), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7424), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7424), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7424), + [anon_sym_NS_ENUM] = ACTIONS(7424), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7424), + [anon_sym_NS_OPTIONS] = ACTIONS(7424), + [anon_sym_typeof] = ACTIONS(7424), + [anon_sym___typeof] = ACTIONS(7424), + [anon_sym___typeof__] = ACTIONS(7424), + [sym_id] = ACTIONS(7424), + [sym_instancetype] = ACTIONS(7424), + [sym_Class] = ACTIONS(7424), + [sym_SEL] = ACTIONS(7424), + [sym_IMP] = ACTIONS(7424), + [sym_BOOL] = ACTIONS(7424), + [sym_auto] = ACTIONS(7424), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3086] = { + [sym_identifier] = ACTIONS(7428), + [aux_sym_preproc_def_token1] = ACTIONS(7430), + [anon_sym_DASH] = ACTIONS(7430), + [anon_sym_PLUS] = ACTIONS(7430), + [anon_sym_typedef] = ACTIONS(7428), + [anon_sym_extern] = ACTIONS(7428), + [anon_sym___attribute] = ACTIONS(7428), + [anon_sym___attribute__] = ACTIONS(7428), + [anon_sym___declspec] = ACTIONS(7428), + [anon_sym_static] = ACTIONS(7428), + [anon_sym_auto] = ACTIONS(7428), + [anon_sym_register] = ACTIONS(7428), + [anon_sym_inline] = ACTIONS(7428), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7428), + [anon_sym_const] = ACTIONS(7428), + [anon_sym_volatile] = ACTIONS(7428), + [anon_sym_restrict] = ACTIONS(7428), + [anon_sym__Atomic] = ACTIONS(7428), + [anon_sym_in] = ACTIONS(7428), + [anon_sym_out] = ACTIONS(7428), + [anon_sym_inout] = ACTIONS(7428), + [anon_sym_bycopy] = ACTIONS(7428), + [anon_sym_byref] = ACTIONS(7428), + [anon_sym_oneway] = ACTIONS(7428), + [anon_sym__Nullable] = ACTIONS(7428), + [anon_sym__Nonnull] = ACTIONS(7428), + [anon_sym__Nullable_result] = ACTIONS(7428), + [anon_sym__Null_unspecified] = ACTIONS(7428), + [anon_sym___autoreleasing] = ACTIONS(7428), + [anon_sym___nullable] = ACTIONS(7428), + [anon_sym___nonnull] = ACTIONS(7428), + [anon_sym___strong] = ACTIONS(7428), + [anon_sym___weak] = ACTIONS(7428), + [anon_sym___bridge] = ACTIONS(7428), + [anon_sym___bridge_transfer] = ACTIONS(7428), + [anon_sym___bridge_retained] = ACTIONS(7428), + [anon_sym___unsafe_unretained] = ACTIONS(7428), + [anon_sym___block] = ACTIONS(7428), + [anon_sym___kindof] = ACTIONS(7428), + [anon_sym___unused] = ACTIONS(7428), + [anon_sym__Complex] = ACTIONS(7428), + [anon_sym___complex] = ACTIONS(7428), + [anon_sym_IBOutlet] = ACTIONS(7428), + [anon_sym_IBInspectable] = ACTIONS(7428), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7428), + [anon_sym_signed] = ACTIONS(7428), + [anon_sym_unsigned] = ACTIONS(7428), + [anon_sym_long] = ACTIONS(7428), + [anon_sym_short] = ACTIONS(7428), + [sym_primitive_type] = ACTIONS(7428), + [anon_sym_enum] = ACTIONS(7428), + [anon_sym_struct] = ACTIONS(7428), + [anon_sym_union] = ACTIONS(7428), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7428), + [anon_sym_ATend] = ACTIONS(7430), + [sym_optional] = ACTIONS(7430), + [sym_required] = ACTIONS(7430), + [anon_sym_ATproperty] = ACTIONS(7430), + [sym_method_attribute_specifier] = ACTIONS(7428), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7428), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7428), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7428), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7428), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7428), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7428), + [anon_sym_NS_AVAILABLE] = ACTIONS(7428), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7428), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7428), + [anon_sym_API_AVAILABLE] = ACTIONS(7428), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7428), + [anon_sym_API_DEPRECATED] = ACTIONS(7428), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7428), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7428), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7428), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7428), + [anon_sym___deprecated_msg] = ACTIONS(7428), + [anon_sym___deprecated_enum_msg] = ACTIONS(7428), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7428), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7428), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7428), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7428), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7428), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7428), + [anon_sym_NS_ENUM] = ACTIONS(7428), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7428), + [anon_sym_NS_OPTIONS] = ACTIONS(7428), + [anon_sym_typeof] = ACTIONS(7428), + [anon_sym___typeof] = ACTIONS(7428), + [anon_sym___typeof__] = ACTIONS(7428), + [sym_id] = ACTIONS(7428), + [sym_instancetype] = ACTIONS(7428), + [sym_Class] = ACTIONS(7428), + [sym_SEL] = ACTIONS(7428), + [sym_IMP] = ACTIONS(7428), + [sym_BOOL] = ACTIONS(7428), + [sym_auto] = ACTIONS(7428), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3087] = { + [sym_identifier] = ACTIONS(7432), + [aux_sym_preproc_def_token1] = ACTIONS(7434), + [anon_sym_DASH] = ACTIONS(7434), + [anon_sym_PLUS] = ACTIONS(7434), + [anon_sym_typedef] = ACTIONS(7432), + [anon_sym_extern] = ACTIONS(7432), + [anon_sym___attribute] = ACTIONS(7432), + [anon_sym___attribute__] = ACTIONS(7432), + [anon_sym___declspec] = ACTIONS(7432), + [anon_sym_static] = ACTIONS(7432), + [anon_sym_auto] = ACTIONS(7432), + [anon_sym_register] = ACTIONS(7432), + [anon_sym_inline] = ACTIONS(7432), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7432), + [anon_sym_const] = ACTIONS(7432), + [anon_sym_volatile] = ACTIONS(7432), + [anon_sym_restrict] = ACTIONS(7432), + [anon_sym__Atomic] = ACTIONS(7432), + [anon_sym_in] = ACTIONS(7432), + [anon_sym_out] = ACTIONS(7432), + [anon_sym_inout] = ACTIONS(7432), + [anon_sym_bycopy] = ACTIONS(7432), + [anon_sym_byref] = ACTIONS(7432), + [anon_sym_oneway] = ACTIONS(7432), + [anon_sym__Nullable] = ACTIONS(7432), + [anon_sym__Nonnull] = ACTIONS(7432), + [anon_sym__Nullable_result] = ACTIONS(7432), + [anon_sym__Null_unspecified] = ACTIONS(7432), + [anon_sym___autoreleasing] = ACTIONS(7432), + [anon_sym___nullable] = ACTIONS(7432), + [anon_sym___nonnull] = ACTIONS(7432), + [anon_sym___strong] = ACTIONS(7432), + [anon_sym___weak] = ACTIONS(7432), + [anon_sym___bridge] = ACTIONS(7432), + [anon_sym___bridge_transfer] = ACTIONS(7432), + [anon_sym___bridge_retained] = ACTIONS(7432), + [anon_sym___unsafe_unretained] = ACTIONS(7432), + [anon_sym___block] = ACTIONS(7432), + [anon_sym___kindof] = ACTIONS(7432), + [anon_sym___unused] = ACTIONS(7432), + [anon_sym__Complex] = ACTIONS(7432), + [anon_sym___complex] = ACTIONS(7432), + [anon_sym_IBOutlet] = ACTIONS(7432), + [anon_sym_IBInspectable] = ACTIONS(7432), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7432), + [anon_sym_signed] = ACTIONS(7432), + [anon_sym_unsigned] = ACTIONS(7432), + [anon_sym_long] = ACTIONS(7432), + [anon_sym_short] = ACTIONS(7432), + [sym_primitive_type] = ACTIONS(7432), + [anon_sym_enum] = ACTIONS(7432), + [anon_sym_struct] = ACTIONS(7432), + [anon_sym_union] = ACTIONS(7432), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7432), + [anon_sym_ATend] = ACTIONS(7434), + [sym_optional] = ACTIONS(7434), + [sym_required] = ACTIONS(7434), + [anon_sym_ATproperty] = ACTIONS(7434), + [sym_method_attribute_specifier] = ACTIONS(7432), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7432), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7432), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7432), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7432), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7432), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7432), + [anon_sym_NS_AVAILABLE] = ACTIONS(7432), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7432), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7432), + [anon_sym_API_AVAILABLE] = ACTIONS(7432), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7432), + [anon_sym_API_DEPRECATED] = ACTIONS(7432), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7432), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7432), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7432), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7432), + [anon_sym___deprecated_msg] = ACTIONS(7432), + [anon_sym___deprecated_enum_msg] = ACTIONS(7432), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7432), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7432), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7432), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7432), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7432), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7432), + [anon_sym_NS_ENUM] = ACTIONS(7432), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7432), + [anon_sym_NS_OPTIONS] = ACTIONS(7432), + [anon_sym_typeof] = ACTIONS(7432), + [anon_sym___typeof] = ACTIONS(7432), + [anon_sym___typeof__] = ACTIONS(7432), + [sym_id] = ACTIONS(7432), + [sym_instancetype] = ACTIONS(7432), + [sym_Class] = ACTIONS(7432), + [sym_SEL] = ACTIONS(7432), + [sym_IMP] = ACTIONS(7432), + [sym_BOOL] = ACTIONS(7432), + [sym_auto] = ACTIONS(7432), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3088] = { + [sym_identifier] = ACTIONS(7436), + [aux_sym_preproc_def_token1] = ACTIONS(7438), + [anon_sym_DASH] = ACTIONS(7438), + [anon_sym_PLUS] = ACTIONS(7438), + [anon_sym_typedef] = ACTIONS(7436), + [anon_sym_extern] = ACTIONS(7436), + [anon_sym___attribute] = ACTIONS(7436), + [anon_sym___attribute__] = ACTIONS(7436), + [anon_sym___declspec] = ACTIONS(7436), + [anon_sym_static] = ACTIONS(7436), + [anon_sym_auto] = ACTIONS(7436), + [anon_sym_register] = ACTIONS(7436), + [anon_sym_inline] = ACTIONS(7436), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7436), + [anon_sym_const] = ACTIONS(7436), + [anon_sym_volatile] = ACTIONS(7436), + [anon_sym_restrict] = ACTIONS(7436), + [anon_sym__Atomic] = ACTIONS(7436), + [anon_sym_in] = ACTIONS(7436), + [anon_sym_out] = ACTIONS(7436), + [anon_sym_inout] = ACTIONS(7436), + [anon_sym_bycopy] = ACTIONS(7436), + [anon_sym_byref] = ACTIONS(7436), + [anon_sym_oneway] = ACTIONS(7436), + [anon_sym__Nullable] = ACTIONS(7436), + [anon_sym__Nonnull] = ACTIONS(7436), + [anon_sym__Nullable_result] = ACTIONS(7436), + [anon_sym__Null_unspecified] = ACTIONS(7436), + [anon_sym___autoreleasing] = ACTIONS(7436), + [anon_sym___nullable] = ACTIONS(7436), + [anon_sym___nonnull] = ACTIONS(7436), + [anon_sym___strong] = ACTIONS(7436), + [anon_sym___weak] = ACTIONS(7436), + [anon_sym___bridge] = ACTIONS(7436), + [anon_sym___bridge_transfer] = ACTIONS(7436), + [anon_sym___bridge_retained] = ACTIONS(7436), + [anon_sym___unsafe_unretained] = ACTIONS(7436), + [anon_sym___block] = ACTIONS(7436), + [anon_sym___kindof] = ACTIONS(7436), + [anon_sym___unused] = ACTIONS(7436), + [anon_sym__Complex] = ACTIONS(7436), + [anon_sym___complex] = ACTIONS(7436), + [anon_sym_IBOutlet] = ACTIONS(7436), + [anon_sym_IBInspectable] = ACTIONS(7436), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7436), + [anon_sym_signed] = ACTIONS(7436), + [anon_sym_unsigned] = ACTIONS(7436), + [anon_sym_long] = ACTIONS(7436), + [anon_sym_short] = ACTIONS(7436), + [sym_primitive_type] = ACTIONS(7436), + [anon_sym_enum] = ACTIONS(7436), + [anon_sym_struct] = ACTIONS(7436), + [anon_sym_union] = ACTIONS(7436), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7436), + [anon_sym_ATend] = ACTIONS(7438), + [sym_optional] = ACTIONS(7438), + [sym_required] = ACTIONS(7438), + [anon_sym_ATproperty] = ACTIONS(7438), + [sym_method_attribute_specifier] = ACTIONS(7436), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7436), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7436), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7436), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7436), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7436), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7436), + [anon_sym_NS_AVAILABLE] = ACTIONS(7436), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7436), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7436), + [anon_sym_API_AVAILABLE] = ACTIONS(7436), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7436), + [anon_sym_API_DEPRECATED] = ACTIONS(7436), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7436), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7436), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7436), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7436), + [anon_sym___deprecated_msg] = ACTIONS(7436), + [anon_sym___deprecated_enum_msg] = ACTIONS(7436), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7436), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7436), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7436), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7436), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7436), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7436), + [anon_sym_NS_ENUM] = ACTIONS(7436), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7436), + [anon_sym_NS_OPTIONS] = ACTIONS(7436), + [anon_sym_typeof] = ACTIONS(7436), + [anon_sym___typeof] = ACTIONS(7436), + [anon_sym___typeof__] = ACTIONS(7436), + [sym_id] = ACTIONS(7436), + [sym_instancetype] = ACTIONS(7436), + [sym_Class] = ACTIONS(7436), + [sym_SEL] = ACTIONS(7436), + [sym_IMP] = ACTIONS(7436), + [sym_BOOL] = ACTIONS(7436), + [sym_auto] = ACTIONS(7436), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3089] = { + [sym_identifier] = ACTIONS(7440), + [aux_sym_preproc_def_token1] = ACTIONS(7442), + [anon_sym_DASH] = ACTIONS(7442), + [anon_sym_PLUS] = ACTIONS(7442), + [anon_sym_typedef] = ACTIONS(7440), + [anon_sym_extern] = ACTIONS(7440), + [anon_sym___attribute] = ACTIONS(7440), + [anon_sym___attribute__] = ACTIONS(7440), + [anon_sym___declspec] = ACTIONS(7440), + [anon_sym_static] = ACTIONS(7440), + [anon_sym_auto] = ACTIONS(7440), + [anon_sym_register] = ACTIONS(7440), + [anon_sym_inline] = ACTIONS(7440), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7440), + [anon_sym_const] = ACTIONS(7440), + [anon_sym_volatile] = ACTIONS(7440), + [anon_sym_restrict] = ACTIONS(7440), + [anon_sym__Atomic] = ACTIONS(7440), + [anon_sym_in] = ACTIONS(7440), + [anon_sym_out] = ACTIONS(7440), + [anon_sym_inout] = ACTIONS(7440), + [anon_sym_bycopy] = ACTIONS(7440), + [anon_sym_byref] = ACTIONS(7440), + [anon_sym_oneway] = ACTIONS(7440), + [anon_sym__Nullable] = ACTIONS(7440), + [anon_sym__Nonnull] = ACTIONS(7440), + [anon_sym__Nullable_result] = ACTIONS(7440), + [anon_sym__Null_unspecified] = ACTIONS(7440), + [anon_sym___autoreleasing] = ACTIONS(7440), + [anon_sym___nullable] = ACTIONS(7440), + [anon_sym___nonnull] = ACTIONS(7440), + [anon_sym___strong] = ACTIONS(7440), + [anon_sym___weak] = ACTIONS(7440), + [anon_sym___bridge] = ACTIONS(7440), + [anon_sym___bridge_transfer] = ACTIONS(7440), + [anon_sym___bridge_retained] = ACTIONS(7440), + [anon_sym___unsafe_unretained] = ACTIONS(7440), + [anon_sym___block] = ACTIONS(7440), + [anon_sym___kindof] = ACTIONS(7440), + [anon_sym___unused] = ACTIONS(7440), + [anon_sym__Complex] = ACTIONS(7440), + [anon_sym___complex] = ACTIONS(7440), + [anon_sym_IBOutlet] = ACTIONS(7440), + [anon_sym_IBInspectable] = ACTIONS(7440), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7440), + [anon_sym_signed] = ACTIONS(7440), + [anon_sym_unsigned] = ACTIONS(7440), + [anon_sym_long] = ACTIONS(7440), + [anon_sym_short] = ACTIONS(7440), + [sym_primitive_type] = ACTIONS(7440), + [anon_sym_enum] = ACTIONS(7440), + [anon_sym_struct] = ACTIONS(7440), + [anon_sym_union] = ACTIONS(7440), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7440), + [anon_sym_ATend] = ACTIONS(7442), + [sym_optional] = ACTIONS(7442), + [sym_required] = ACTIONS(7442), + [anon_sym_ATproperty] = ACTIONS(7442), + [sym_method_attribute_specifier] = ACTIONS(7440), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7440), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7440), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7440), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7440), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7440), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7440), + [anon_sym_NS_AVAILABLE] = ACTIONS(7440), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7440), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7440), + [anon_sym_API_AVAILABLE] = ACTIONS(7440), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7440), + [anon_sym_API_DEPRECATED] = ACTIONS(7440), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7440), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7440), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7440), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7440), + [anon_sym___deprecated_msg] = ACTIONS(7440), + [anon_sym___deprecated_enum_msg] = ACTIONS(7440), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7440), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7440), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7440), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7440), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7440), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7440), + [anon_sym_NS_ENUM] = ACTIONS(7440), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7440), + [anon_sym_NS_OPTIONS] = ACTIONS(7440), + [anon_sym_typeof] = ACTIONS(7440), + [anon_sym___typeof] = ACTIONS(7440), + [anon_sym___typeof__] = ACTIONS(7440), + [sym_id] = ACTIONS(7440), + [sym_instancetype] = ACTIONS(7440), + [sym_Class] = ACTIONS(7440), + [sym_SEL] = ACTIONS(7440), + [sym_IMP] = ACTIONS(7440), + [sym_BOOL] = ACTIONS(7440), + [sym_auto] = ACTIONS(7440), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3090] = { + [sym_identifier] = ACTIONS(7444), + [aux_sym_preproc_def_token1] = ACTIONS(7446), + [anon_sym_DASH] = ACTIONS(7446), + [anon_sym_PLUS] = ACTIONS(7446), + [anon_sym_typedef] = ACTIONS(7444), + [anon_sym_extern] = ACTIONS(7444), + [anon_sym___attribute] = ACTIONS(7444), + [anon_sym___attribute__] = ACTIONS(7444), + [anon_sym___declspec] = ACTIONS(7444), + [anon_sym_static] = ACTIONS(7444), + [anon_sym_auto] = ACTIONS(7444), + [anon_sym_register] = ACTIONS(7444), + [anon_sym_inline] = ACTIONS(7444), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7444), + [anon_sym_const] = ACTIONS(7444), + [anon_sym_volatile] = ACTIONS(7444), + [anon_sym_restrict] = ACTIONS(7444), + [anon_sym__Atomic] = ACTIONS(7444), + [anon_sym_in] = ACTIONS(7444), + [anon_sym_out] = ACTIONS(7444), + [anon_sym_inout] = ACTIONS(7444), + [anon_sym_bycopy] = ACTIONS(7444), + [anon_sym_byref] = ACTIONS(7444), + [anon_sym_oneway] = ACTIONS(7444), + [anon_sym__Nullable] = ACTIONS(7444), + [anon_sym__Nonnull] = ACTIONS(7444), + [anon_sym__Nullable_result] = ACTIONS(7444), + [anon_sym__Null_unspecified] = ACTIONS(7444), + [anon_sym___autoreleasing] = ACTIONS(7444), + [anon_sym___nullable] = ACTIONS(7444), + [anon_sym___nonnull] = ACTIONS(7444), + [anon_sym___strong] = ACTIONS(7444), + [anon_sym___weak] = ACTIONS(7444), + [anon_sym___bridge] = ACTIONS(7444), + [anon_sym___bridge_transfer] = ACTIONS(7444), + [anon_sym___bridge_retained] = ACTIONS(7444), + [anon_sym___unsafe_unretained] = ACTIONS(7444), + [anon_sym___block] = ACTIONS(7444), + [anon_sym___kindof] = ACTIONS(7444), + [anon_sym___unused] = ACTIONS(7444), + [anon_sym__Complex] = ACTIONS(7444), + [anon_sym___complex] = ACTIONS(7444), + [anon_sym_IBOutlet] = ACTIONS(7444), + [anon_sym_IBInspectable] = ACTIONS(7444), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7444), + [anon_sym_signed] = ACTIONS(7444), + [anon_sym_unsigned] = ACTIONS(7444), + [anon_sym_long] = ACTIONS(7444), + [anon_sym_short] = ACTIONS(7444), + [sym_primitive_type] = ACTIONS(7444), + [anon_sym_enum] = ACTIONS(7444), + [anon_sym_struct] = ACTIONS(7444), + [anon_sym_union] = ACTIONS(7444), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7444), + [anon_sym_ATend] = ACTIONS(7446), + [sym_optional] = ACTIONS(7446), + [sym_required] = ACTIONS(7446), + [anon_sym_ATproperty] = ACTIONS(7446), + [sym_method_attribute_specifier] = ACTIONS(7444), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7444), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7444), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7444), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7444), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7444), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7444), + [anon_sym_NS_AVAILABLE] = ACTIONS(7444), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7444), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7444), + [anon_sym_API_AVAILABLE] = ACTIONS(7444), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7444), + [anon_sym_API_DEPRECATED] = ACTIONS(7444), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7444), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7444), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7444), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7444), + [anon_sym___deprecated_msg] = ACTIONS(7444), + [anon_sym___deprecated_enum_msg] = ACTIONS(7444), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7444), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7444), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7444), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7444), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7444), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7444), + [anon_sym_NS_ENUM] = ACTIONS(7444), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7444), + [anon_sym_NS_OPTIONS] = ACTIONS(7444), + [anon_sym_typeof] = ACTIONS(7444), + [anon_sym___typeof] = ACTIONS(7444), + [anon_sym___typeof__] = ACTIONS(7444), + [sym_id] = ACTIONS(7444), + [sym_instancetype] = ACTIONS(7444), + [sym_Class] = ACTIONS(7444), + [sym_SEL] = ACTIONS(7444), + [sym_IMP] = ACTIONS(7444), + [sym_BOOL] = ACTIONS(7444), + [sym_auto] = ACTIONS(7444), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3091] = { + [sym_identifier] = ACTIONS(7448), + [aux_sym_preproc_def_token1] = ACTIONS(7450), + [anon_sym_DASH] = ACTIONS(7450), + [anon_sym_PLUS] = ACTIONS(7450), + [anon_sym_typedef] = ACTIONS(7448), + [anon_sym_extern] = ACTIONS(7448), + [anon_sym___attribute] = ACTIONS(7448), + [anon_sym___attribute__] = ACTIONS(7448), + [anon_sym___declspec] = ACTIONS(7448), + [anon_sym_static] = ACTIONS(7448), + [anon_sym_auto] = ACTIONS(7448), + [anon_sym_register] = ACTIONS(7448), + [anon_sym_inline] = ACTIONS(7448), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7448), + [anon_sym_const] = ACTIONS(7448), + [anon_sym_volatile] = ACTIONS(7448), + [anon_sym_restrict] = ACTIONS(7448), + [anon_sym__Atomic] = ACTIONS(7448), + [anon_sym_in] = ACTIONS(7448), + [anon_sym_out] = ACTIONS(7448), + [anon_sym_inout] = ACTIONS(7448), + [anon_sym_bycopy] = ACTIONS(7448), + [anon_sym_byref] = ACTIONS(7448), + [anon_sym_oneway] = ACTIONS(7448), + [anon_sym__Nullable] = ACTIONS(7448), + [anon_sym__Nonnull] = ACTIONS(7448), + [anon_sym__Nullable_result] = ACTIONS(7448), + [anon_sym__Null_unspecified] = ACTIONS(7448), + [anon_sym___autoreleasing] = ACTIONS(7448), + [anon_sym___nullable] = ACTIONS(7448), + [anon_sym___nonnull] = ACTIONS(7448), + [anon_sym___strong] = ACTIONS(7448), + [anon_sym___weak] = ACTIONS(7448), + [anon_sym___bridge] = ACTIONS(7448), + [anon_sym___bridge_transfer] = ACTIONS(7448), + [anon_sym___bridge_retained] = ACTIONS(7448), + [anon_sym___unsafe_unretained] = ACTIONS(7448), + [anon_sym___block] = ACTIONS(7448), + [anon_sym___kindof] = ACTIONS(7448), + [anon_sym___unused] = ACTIONS(7448), + [anon_sym__Complex] = ACTIONS(7448), + [anon_sym___complex] = ACTIONS(7448), + [anon_sym_IBOutlet] = ACTIONS(7448), + [anon_sym_IBInspectable] = ACTIONS(7448), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7448), + [anon_sym_signed] = ACTIONS(7448), + [anon_sym_unsigned] = ACTIONS(7448), + [anon_sym_long] = ACTIONS(7448), + [anon_sym_short] = ACTIONS(7448), + [sym_primitive_type] = ACTIONS(7448), + [anon_sym_enum] = ACTIONS(7448), + [anon_sym_struct] = ACTIONS(7448), + [anon_sym_union] = ACTIONS(7448), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7448), + [anon_sym_ATend] = ACTIONS(7450), + [sym_optional] = ACTIONS(7450), + [sym_required] = ACTIONS(7450), + [anon_sym_ATproperty] = ACTIONS(7450), + [sym_method_attribute_specifier] = ACTIONS(7448), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7448), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7448), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7448), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7448), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7448), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7448), + [anon_sym_NS_AVAILABLE] = ACTIONS(7448), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7448), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7448), + [anon_sym_API_AVAILABLE] = ACTIONS(7448), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7448), + [anon_sym_API_DEPRECATED] = ACTIONS(7448), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7448), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7448), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7448), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7448), + [anon_sym___deprecated_msg] = ACTIONS(7448), + [anon_sym___deprecated_enum_msg] = ACTIONS(7448), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7448), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7448), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7448), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7448), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7448), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7448), + [anon_sym_NS_ENUM] = ACTIONS(7448), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7448), + [anon_sym_NS_OPTIONS] = ACTIONS(7448), + [anon_sym_typeof] = ACTIONS(7448), + [anon_sym___typeof] = ACTIONS(7448), + [anon_sym___typeof__] = ACTIONS(7448), + [sym_id] = ACTIONS(7448), + [sym_instancetype] = ACTIONS(7448), + [sym_Class] = ACTIONS(7448), + [sym_SEL] = ACTIONS(7448), + [sym_IMP] = ACTIONS(7448), + [sym_BOOL] = ACTIONS(7448), + [sym_auto] = ACTIONS(7448), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3092] = { + [sym_identifier] = ACTIONS(7448), + [aux_sym_preproc_def_token1] = ACTIONS(7450), + [anon_sym_DASH] = ACTIONS(7450), + [anon_sym_PLUS] = ACTIONS(7450), + [anon_sym_typedef] = ACTIONS(7448), + [anon_sym_extern] = ACTIONS(7448), + [anon_sym___attribute] = ACTIONS(7448), + [anon_sym___attribute__] = ACTIONS(7448), + [anon_sym___declspec] = ACTIONS(7448), + [anon_sym_static] = ACTIONS(7448), + [anon_sym_auto] = ACTIONS(7448), + [anon_sym_register] = ACTIONS(7448), + [anon_sym_inline] = ACTIONS(7448), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7448), + [anon_sym_const] = ACTIONS(7448), + [anon_sym_volatile] = ACTIONS(7448), + [anon_sym_restrict] = ACTIONS(7448), + [anon_sym__Atomic] = ACTIONS(7448), + [anon_sym_in] = ACTIONS(7448), + [anon_sym_out] = ACTIONS(7448), + [anon_sym_inout] = ACTIONS(7448), + [anon_sym_bycopy] = ACTIONS(7448), + [anon_sym_byref] = ACTIONS(7448), + [anon_sym_oneway] = ACTIONS(7448), + [anon_sym__Nullable] = ACTIONS(7448), + [anon_sym__Nonnull] = ACTIONS(7448), + [anon_sym__Nullable_result] = ACTIONS(7448), + [anon_sym__Null_unspecified] = ACTIONS(7448), + [anon_sym___autoreleasing] = ACTIONS(7448), + [anon_sym___nullable] = ACTIONS(7448), + [anon_sym___nonnull] = ACTIONS(7448), + [anon_sym___strong] = ACTIONS(7448), + [anon_sym___weak] = ACTIONS(7448), + [anon_sym___bridge] = ACTIONS(7448), + [anon_sym___bridge_transfer] = ACTIONS(7448), + [anon_sym___bridge_retained] = ACTIONS(7448), + [anon_sym___unsafe_unretained] = ACTIONS(7448), + [anon_sym___block] = ACTIONS(7448), + [anon_sym___kindof] = ACTIONS(7448), + [anon_sym___unused] = ACTIONS(7448), + [anon_sym__Complex] = ACTIONS(7448), + [anon_sym___complex] = ACTIONS(7448), + [anon_sym_IBOutlet] = ACTIONS(7448), + [anon_sym_IBInspectable] = ACTIONS(7448), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7448), + [anon_sym_signed] = ACTIONS(7448), + [anon_sym_unsigned] = ACTIONS(7448), + [anon_sym_long] = ACTIONS(7448), + [anon_sym_short] = ACTIONS(7448), + [sym_primitive_type] = ACTIONS(7448), + [anon_sym_enum] = ACTIONS(7448), + [anon_sym_struct] = ACTIONS(7448), + [anon_sym_union] = ACTIONS(7448), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7448), + [anon_sym_ATend] = ACTIONS(7450), + [sym_optional] = ACTIONS(7450), + [sym_required] = ACTIONS(7450), + [anon_sym_ATproperty] = ACTIONS(7450), + [sym_method_attribute_specifier] = ACTIONS(7448), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7448), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7448), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7448), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7448), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7448), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7448), + [anon_sym_NS_AVAILABLE] = ACTIONS(7448), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7448), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7448), + [anon_sym_API_AVAILABLE] = ACTIONS(7448), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7448), + [anon_sym_API_DEPRECATED] = ACTIONS(7448), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7448), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7448), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7448), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7448), + [anon_sym___deprecated_msg] = ACTIONS(7448), + [anon_sym___deprecated_enum_msg] = ACTIONS(7448), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7448), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7448), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7448), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7448), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7448), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7448), + [anon_sym_NS_ENUM] = ACTIONS(7448), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7448), + [anon_sym_NS_OPTIONS] = ACTIONS(7448), + [anon_sym_typeof] = ACTIONS(7448), + [anon_sym___typeof] = ACTIONS(7448), + [anon_sym___typeof__] = ACTIONS(7448), + [sym_id] = ACTIONS(7448), + [sym_instancetype] = ACTIONS(7448), + [sym_Class] = ACTIONS(7448), + [sym_SEL] = ACTIONS(7448), + [sym_IMP] = ACTIONS(7448), + [sym_BOOL] = ACTIONS(7448), + [sym_auto] = ACTIONS(7448), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3093] = { + [sym_identifier] = ACTIONS(7452), + [aux_sym_preproc_def_token1] = ACTIONS(7454), + [anon_sym_DASH] = ACTIONS(7454), + [anon_sym_PLUS] = ACTIONS(7454), + [anon_sym_typedef] = ACTIONS(7452), + [anon_sym_extern] = ACTIONS(7452), + [anon_sym___attribute] = ACTIONS(7452), + [anon_sym___attribute__] = ACTIONS(7452), + [anon_sym___declspec] = ACTIONS(7452), + [anon_sym_static] = ACTIONS(7452), + [anon_sym_auto] = ACTIONS(7452), + [anon_sym_register] = ACTIONS(7452), + [anon_sym_inline] = ACTIONS(7452), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7452), + [anon_sym_const] = ACTIONS(7452), + [anon_sym_volatile] = ACTIONS(7452), + [anon_sym_restrict] = ACTIONS(7452), + [anon_sym__Atomic] = ACTIONS(7452), + [anon_sym_in] = ACTIONS(7452), + [anon_sym_out] = ACTIONS(7452), + [anon_sym_inout] = ACTIONS(7452), + [anon_sym_bycopy] = ACTIONS(7452), + [anon_sym_byref] = ACTIONS(7452), + [anon_sym_oneway] = ACTIONS(7452), + [anon_sym__Nullable] = ACTIONS(7452), + [anon_sym__Nonnull] = ACTIONS(7452), + [anon_sym__Nullable_result] = ACTIONS(7452), + [anon_sym__Null_unspecified] = ACTIONS(7452), + [anon_sym___autoreleasing] = ACTIONS(7452), + [anon_sym___nullable] = ACTIONS(7452), + [anon_sym___nonnull] = ACTIONS(7452), + [anon_sym___strong] = ACTIONS(7452), + [anon_sym___weak] = ACTIONS(7452), + [anon_sym___bridge] = ACTIONS(7452), + [anon_sym___bridge_transfer] = ACTIONS(7452), + [anon_sym___bridge_retained] = ACTIONS(7452), + [anon_sym___unsafe_unretained] = ACTIONS(7452), + [anon_sym___block] = ACTIONS(7452), + [anon_sym___kindof] = ACTIONS(7452), + [anon_sym___unused] = ACTIONS(7452), + [anon_sym__Complex] = ACTIONS(7452), + [anon_sym___complex] = ACTIONS(7452), + [anon_sym_IBOutlet] = ACTIONS(7452), + [anon_sym_IBInspectable] = ACTIONS(7452), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7452), + [anon_sym_signed] = ACTIONS(7452), + [anon_sym_unsigned] = ACTIONS(7452), + [anon_sym_long] = ACTIONS(7452), + [anon_sym_short] = ACTIONS(7452), + [sym_primitive_type] = ACTIONS(7452), + [anon_sym_enum] = ACTIONS(7452), + [anon_sym_struct] = ACTIONS(7452), + [anon_sym_union] = ACTIONS(7452), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7452), + [anon_sym_ATend] = ACTIONS(7454), + [sym_optional] = ACTIONS(7454), + [sym_required] = ACTIONS(7454), + [anon_sym_ATproperty] = ACTIONS(7454), + [sym_method_attribute_specifier] = ACTIONS(7452), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7452), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7452), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7452), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7452), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7452), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7452), + [anon_sym_NS_AVAILABLE] = ACTIONS(7452), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7452), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7452), + [anon_sym_API_AVAILABLE] = ACTIONS(7452), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7452), + [anon_sym_API_DEPRECATED] = ACTIONS(7452), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7452), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7452), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7452), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7452), + [anon_sym___deprecated_msg] = ACTIONS(7452), + [anon_sym___deprecated_enum_msg] = ACTIONS(7452), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7452), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7452), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7452), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7452), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7452), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7452), + [anon_sym_NS_ENUM] = ACTIONS(7452), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7452), + [anon_sym_NS_OPTIONS] = ACTIONS(7452), + [anon_sym_typeof] = ACTIONS(7452), + [anon_sym___typeof] = ACTIONS(7452), + [anon_sym___typeof__] = ACTIONS(7452), + [sym_id] = ACTIONS(7452), + [sym_instancetype] = ACTIONS(7452), + [sym_Class] = ACTIONS(7452), + [sym_SEL] = ACTIONS(7452), + [sym_IMP] = ACTIONS(7452), + [sym_BOOL] = ACTIONS(7452), + [sym_auto] = ACTIONS(7452), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3094] = { + [sym_identifier] = ACTIONS(7456), + [aux_sym_preproc_def_token1] = ACTIONS(7458), + [anon_sym_DASH] = ACTIONS(7458), + [anon_sym_PLUS] = ACTIONS(7458), + [anon_sym_typedef] = ACTIONS(7456), + [anon_sym_extern] = ACTIONS(7456), + [anon_sym___attribute] = ACTIONS(7456), + [anon_sym___attribute__] = ACTIONS(7456), + [anon_sym___declspec] = ACTIONS(7456), + [anon_sym_static] = ACTIONS(7456), + [anon_sym_auto] = ACTIONS(7456), + [anon_sym_register] = ACTIONS(7456), + [anon_sym_inline] = ACTIONS(7456), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7456), + [anon_sym_const] = ACTIONS(7456), + [anon_sym_volatile] = ACTIONS(7456), + [anon_sym_restrict] = ACTIONS(7456), + [anon_sym__Atomic] = ACTIONS(7456), + [anon_sym_in] = ACTIONS(7456), + [anon_sym_out] = ACTIONS(7456), + [anon_sym_inout] = ACTIONS(7456), + [anon_sym_bycopy] = ACTIONS(7456), + [anon_sym_byref] = ACTIONS(7456), + [anon_sym_oneway] = ACTIONS(7456), + [anon_sym__Nullable] = ACTIONS(7456), + [anon_sym__Nonnull] = ACTIONS(7456), + [anon_sym__Nullable_result] = ACTIONS(7456), + [anon_sym__Null_unspecified] = ACTIONS(7456), + [anon_sym___autoreleasing] = ACTIONS(7456), + [anon_sym___nullable] = ACTIONS(7456), + [anon_sym___nonnull] = ACTIONS(7456), + [anon_sym___strong] = ACTIONS(7456), + [anon_sym___weak] = ACTIONS(7456), + [anon_sym___bridge] = ACTIONS(7456), + [anon_sym___bridge_transfer] = ACTIONS(7456), + [anon_sym___bridge_retained] = ACTIONS(7456), + [anon_sym___unsafe_unretained] = ACTIONS(7456), + [anon_sym___block] = ACTIONS(7456), + [anon_sym___kindof] = ACTIONS(7456), + [anon_sym___unused] = ACTIONS(7456), + [anon_sym__Complex] = ACTIONS(7456), + [anon_sym___complex] = ACTIONS(7456), + [anon_sym_IBOutlet] = ACTIONS(7456), + [anon_sym_IBInspectable] = ACTIONS(7456), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7456), + [anon_sym_signed] = ACTIONS(7456), + [anon_sym_unsigned] = ACTIONS(7456), + [anon_sym_long] = ACTIONS(7456), + [anon_sym_short] = ACTIONS(7456), + [sym_primitive_type] = ACTIONS(7456), + [anon_sym_enum] = ACTIONS(7456), + [anon_sym_struct] = ACTIONS(7456), + [anon_sym_union] = ACTIONS(7456), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7456), + [anon_sym_ATend] = ACTIONS(7458), + [sym_optional] = ACTIONS(7458), + [sym_required] = ACTIONS(7458), + [anon_sym_ATproperty] = ACTIONS(7458), + [sym_method_attribute_specifier] = ACTIONS(7456), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7456), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7456), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7456), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7456), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7456), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7456), + [anon_sym_NS_AVAILABLE] = ACTIONS(7456), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7456), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7456), + [anon_sym_API_AVAILABLE] = ACTIONS(7456), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7456), + [anon_sym_API_DEPRECATED] = ACTIONS(7456), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7456), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7456), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7456), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7456), + [anon_sym___deprecated_msg] = ACTIONS(7456), + [anon_sym___deprecated_enum_msg] = ACTIONS(7456), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7456), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7456), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7456), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7456), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7456), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7456), + [anon_sym_NS_ENUM] = ACTIONS(7456), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7456), + [anon_sym_NS_OPTIONS] = ACTIONS(7456), + [anon_sym_typeof] = ACTIONS(7456), + [anon_sym___typeof] = ACTIONS(7456), + [anon_sym___typeof__] = ACTIONS(7456), + [sym_id] = ACTIONS(7456), + [sym_instancetype] = ACTIONS(7456), + [sym_Class] = ACTIONS(7456), + [sym_SEL] = ACTIONS(7456), + [sym_IMP] = ACTIONS(7456), + [sym_BOOL] = ACTIONS(7456), + [sym_auto] = ACTIONS(7456), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3095] = { + [sym_identifier] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1686), + [anon_sym_RPAREN] = ACTIONS(1686), + [anon_sym_LPAREN2] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_STAR] = ACTIONS(1686), + [anon_sym_SLASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1686), + [anon_sym_PIPE_PIPE] = ACTIONS(1686), + [anon_sym_AMP_AMP] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1684), + [anon_sym_CARET] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1686), + [anon_sym_BANG_EQ] = ACTIONS(1686), + [anon_sym_GT] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1686), + [anon_sym_LT_EQ] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1684), + [anon_sym_LT_LT] = ACTIONS(1686), + [anon_sym_GT_GT] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym___attribute] = ACTIONS(1684), + [anon_sym___attribute__] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_RBRACK] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1684), + [anon_sym_volatile] = ACTIONS(1684), + [anon_sym_restrict] = ACTIONS(1684), + [anon_sym__Atomic] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1684), + [anon_sym_out] = ACTIONS(1684), + [anon_sym_inout] = ACTIONS(1684), + [anon_sym_bycopy] = ACTIONS(1684), + [anon_sym_byref] = ACTIONS(1684), + [anon_sym_oneway] = ACTIONS(1684), + [anon_sym__Nullable] = ACTIONS(1684), + [anon_sym__Nonnull] = ACTIONS(1684), + [anon_sym__Nullable_result] = ACTIONS(1684), + [anon_sym__Null_unspecified] = ACTIONS(1684), + [anon_sym___autoreleasing] = ACTIONS(1684), + [anon_sym___nullable] = ACTIONS(1684), + [anon_sym___nonnull] = ACTIONS(1684), + [anon_sym___strong] = ACTIONS(1684), + [anon_sym___weak] = ACTIONS(1684), + [anon_sym___bridge] = ACTIONS(1684), + [anon_sym___bridge_transfer] = ACTIONS(1684), + [anon_sym___bridge_retained] = ACTIONS(1684), + [anon_sym___unsafe_unretained] = ACTIONS(1684), + [anon_sym___block] = ACTIONS(1684), + [anon_sym___kindof] = ACTIONS(1684), + [anon_sym___unused] = ACTIONS(1684), + [anon_sym__Complex] = ACTIONS(1684), + [anon_sym___complex] = ACTIONS(1684), + [anon_sym_IBOutlet] = ACTIONS(1684), + [anon_sym_IBInspectable] = ACTIONS(1684), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1684), + [anon_sym_COLON] = ACTIONS(1686), + [anon_sym_QMARK] = ACTIONS(1686), + [anon_sym_DASH_DASH] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1686), + [anon_sym_DOT] = ACTIONS(1686), + [anon_sym_DASH_GT] = ACTIONS(1686), + [anon_sym_L_DQUOTE] = ACTIONS(1686), + [anon_sym_u_DQUOTE] = ACTIONS(1686), + [anon_sym_U_DQUOTE] = ACTIONS(1686), + [anon_sym_u8_DQUOTE] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1686), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(1684), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1684), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1684), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1684), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1684), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1684), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1684), + [anon_sym_NS_AVAILABLE] = ACTIONS(1684), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1684), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_API_AVAILABLE] = ACTIONS(1684), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1684), + [anon_sym_API_DEPRECATED] = ACTIONS(1684), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1684), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1684), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1684), + [anon_sym___deprecated_msg] = ACTIONS(1684), + [anon_sym___deprecated_enum_msg] = ACTIONS(1684), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1684), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1684), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1684), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1684), + [anon_sym_AT] = ACTIONS(1686), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3096] = { + [sym_identifier] = ACTIONS(7440), + [aux_sym_preproc_def_token1] = ACTIONS(7442), + [anon_sym_DASH] = ACTIONS(7442), + [anon_sym_PLUS] = ACTIONS(7442), + [anon_sym_typedef] = ACTIONS(7440), + [anon_sym_extern] = ACTIONS(7440), + [anon_sym___attribute] = ACTIONS(7440), + [anon_sym___attribute__] = ACTIONS(7440), + [anon_sym___declspec] = ACTIONS(7440), + [anon_sym_static] = ACTIONS(7440), + [anon_sym_auto] = ACTIONS(7440), + [anon_sym_register] = ACTIONS(7440), + [anon_sym_inline] = ACTIONS(7440), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7440), + [anon_sym_const] = ACTIONS(7440), + [anon_sym_volatile] = ACTIONS(7440), + [anon_sym_restrict] = ACTIONS(7440), + [anon_sym__Atomic] = ACTIONS(7440), + [anon_sym_in] = ACTIONS(7440), + [anon_sym_out] = ACTIONS(7440), + [anon_sym_inout] = ACTIONS(7440), + [anon_sym_bycopy] = ACTIONS(7440), + [anon_sym_byref] = ACTIONS(7440), + [anon_sym_oneway] = ACTIONS(7440), + [anon_sym__Nullable] = ACTIONS(7440), + [anon_sym__Nonnull] = ACTIONS(7440), + [anon_sym__Nullable_result] = ACTIONS(7440), + [anon_sym__Null_unspecified] = ACTIONS(7440), + [anon_sym___autoreleasing] = ACTIONS(7440), + [anon_sym___nullable] = ACTIONS(7440), + [anon_sym___nonnull] = ACTIONS(7440), + [anon_sym___strong] = ACTIONS(7440), + [anon_sym___weak] = ACTIONS(7440), + [anon_sym___bridge] = ACTIONS(7440), + [anon_sym___bridge_transfer] = ACTIONS(7440), + [anon_sym___bridge_retained] = ACTIONS(7440), + [anon_sym___unsafe_unretained] = ACTIONS(7440), + [anon_sym___block] = ACTIONS(7440), + [anon_sym___kindof] = ACTIONS(7440), + [anon_sym___unused] = ACTIONS(7440), + [anon_sym__Complex] = ACTIONS(7440), + [anon_sym___complex] = ACTIONS(7440), + [anon_sym_IBOutlet] = ACTIONS(7440), + [anon_sym_IBInspectable] = ACTIONS(7440), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7440), + [anon_sym_signed] = ACTIONS(7440), + [anon_sym_unsigned] = ACTIONS(7440), + [anon_sym_long] = ACTIONS(7440), + [anon_sym_short] = ACTIONS(7440), + [sym_primitive_type] = ACTIONS(7440), + [anon_sym_enum] = ACTIONS(7440), + [anon_sym_struct] = ACTIONS(7440), + [anon_sym_union] = ACTIONS(7440), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7440), + [anon_sym_ATend] = ACTIONS(7442), + [sym_optional] = ACTIONS(7442), + [sym_required] = ACTIONS(7442), + [anon_sym_ATproperty] = ACTIONS(7442), + [sym_method_attribute_specifier] = ACTIONS(7440), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7440), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7440), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7440), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7440), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7440), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7440), + [anon_sym_NS_AVAILABLE] = ACTIONS(7440), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7440), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7440), + [anon_sym_API_AVAILABLE] = ACTIONS(7440), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7440), + [anon_sym_API_DEPRECATED] = ACTIONS(7440), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7440), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7440), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7440), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7440), + [anon_sym___deprecated_msg] = ACTIONS(7440), + [anon_sym___deprecated_enum_msg] = ACTIONS(7440), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7440), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7440), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7440), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7440), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7440), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7440), + [anon_sym_NS_ENUM] = ACTIONS(7440), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7440), + [anon_sym_NS_OPTIONS] = ACTIONS(7440), + [anon_sym_typeof] = ACTIONS(7440), + [anon_sym___typeof] = ACTIONS(7440), + [anon_sym___typeof__] = ACTIONS(7440), + [sym_id] = ACTIONS(7440), + [sym_instancetype] = ACTIONS(7440), + [sym_Class] = ACTIONS(7440), + [sym_SEL] = ACTIONS(7440), + [sym_IMP] = ACTIONS(7440), + [sym_BOOL] = ACTIONS(7440), + [sym_auto] = ACTIONS(7440), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3097] = { + [sym_identifier] = ACTIONS(7460), + [aux_sym_preproc_def_token1] = ACTIONS(7462), + [anon_sym_DASH] = ACTIONS(7462), + [anon_sym_PLUS] = ACTIONS(7462), + [anon_sym_typedef] = ACTIONS(7460), + [anon_sym_extern] = ACTIONS(7460), + [anon_sym___attribute] = ACTIONS(7460), + [anon_sym___attribute__] = ACTIONS(7460), + [anon_sym___declspec] = ACTIONS(7460), + [anon_sym_static] = ACTIONS(7460), + [anon_sym_auto] = ACTIONS(7460), + [anon_sym_register] = ACTIONS(7460), + [anon_sym_inline] = ACTIONS(7460), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7460), + [anon_sym_const] = ACTIONS(7460), + [anon_sym_volatile] = ACTIONS(7460), + [anon_sym_restrict] = ACTIONS(7460), + [anon_sym__Atomic] = ACTIONS(7460), + [anon_sym_in] = ACTIONS(7460), + [anon_sym_out] = ACTIONS(7460), + [anon_sym_inout] = ACTIONS(7460), + [anon_sym_bycopy] = ACTIONS(7460), + [anon_sym_byref] = ACTIONS(7460), + [anon_sym_oneway] = ACTIONS(7460), + [anon_sym__Nullable] = ACTIONS(7460), + [anon_sym__Nonnull] = ACTIONS(7460), + [anon_sym__Nullable_result] = ACTIONS(7460), + [anon_sym__Null_unspecified] = ACTIONS(7460), + [anon_sym___autoreleasing] = ACTIONS(7460), + [anon_sym___nullable] = ACTIONS(7460), + [anon_sym___nonnull] = ACTIONS(7460), + [anon_sym___strong] = ACTIONS(7460), + [anon_sym___weak] = ACTIONS(7460), + [anon_sym___bridge] = ACTIONS(7460), + [anon_sym___bridge_transfer] = ACTIONS(7460), + [anon_sym___bridge_retained] = ACTIONS(7460), + [anon_sym___unsafe_unretained] = ACTIONS(7460), + [anon_sym___block] = ACTIONS(7460), + [anon_sym___kindof] = ACTIONS(7460), + [anon_sym___unused] = ACTIONS(7460), + [anon_sym__Complex] = ACTIONS(7460), + [anon_sym___complex] = ACTIONS(7460), + [anon_sym_IBOutlet] = ACTIONS(7460), + [anon_sym_IBInspectable] = ACTIONS(7460), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7460), + [anon_sym_signed] = ACTIONS(7460), + [anon_sym_unsigned] = ACTIONS(7460), + [anon_sym_long] = ACTIONS(7460), + [anon_sym_short] = ACTIONS(7460), + [sym_primitive_type] = ACTIONS(7460), + [anon_sym_enum] = ACTIONS(7460), + [anon_sym_struct] = ACTIONS(7460), + [anon_sym_union] = ACTIONS(7460), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7460), + [anon_sym_ATend] = ACTIONS(7462), + [sym_optional] = ACTIONS(7462), + [sym_required] = ACTIONS(7462), + [anon_sym_ATproperty] = ACTIONS(7462), + [sym_method_attribute_specifier] = ACTIONS(7460), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7460), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7460), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7460), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7460), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7460), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7460), + [anon_sym_NS_AVAILABLE] = ACTIONS(7460), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7460), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7460), + [anon_sym_API_AVAILABLE] = ACTIONS(7460), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7460), + [anon_sym_API_DEPRECATED] = ACTIONS(7460), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7460), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7460), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7460), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7460), + [anon_sym___deprecated_msg] = ACTIONS(7460), + [anon_sym___deprecated_enum_msg] = ACTIONS(7460), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7460), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7460), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7460), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7460), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7460), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7460), + [anon_sym_NS_ENUM] = ACTIONS(7460), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7460), + [anon_sym_NS_OPTIONS] = ACTIONS(7460), + [anon_sym_typeof] = ACTIONS(7460), + [anon_sym___typeof] = ACTIONS(7460), + [anon_sym___typeof__] = ACTIONS(7460), + [sym_id] = ACTIONS(7460), + [sym_instancetype] = ACTIONS(7460), + [sym_Class] = ACTIONS(7460), + [sym_SEL] = ACTIONS(7460), + [sym_IMP] = ACTIONS(7460), + [sym_BOOL] = ACTIONS(7460), + [sym_auto] = ACTIONS(7460), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3098] = { + [sym_identifier] = ACTIONS(7464), + [aux_sym_preproc_def_token1] = ACTIONS(7466), + [anon_sym_DASH] = ACTIONS(7466), + [anon_sym_PLUS] = ACTIONS(7466), + [anon_sym_typedef] = ACTIONS(7464), + [anon_sym_extern] = ACTIONS(7464), + [anon_sym___attribute] = ACTIONS(7464), + [anon_sym___attribute__] = ACTIONS(7464), + [anon_sym___declspec] = ACTIONS(7464), + [anon_sym_static] = ACTIONS(7464), + [anon_sym_auto] = ACTIONS(7464), + [anon_sym_register] = ACTIONS(7464), + [anon_sym_inline] = ACTIONS(7464), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7464), + [anon_sym_const] = ACTIONS(7464), + [anon_sym_volatile] = ACTIONS(7464), + [anon_sym_restrict] = ACTIONS(7464), + [anon_sym__Atomic] = ACTIONS(7464), + [anon_sym_in] = ACTIONS(7464), + [anon_sym_out] = ACTIONS(7464), + [anon_sym_inout] = ACTIONS(7464), + [anon_sym_bycopy] = ACTIONS(7464), + [anon_sym_byref] = ACTIONS(7464), + [anon_sym_oneway] = ACTIONS(7464), + [anon_sym__Nullable] = ACTIONS(7464), + [anon_sym__Nonnull] = ACTIONS(7464), + [anon_sym__Nullable_result] = ACTIONS(7464), + [anon_sym__Null_unspecified] = ACTIONS(7464), + [anon_sym___autoreleasing] = ACTIONS(7464), + [anon_sym___nullable] = ACTIONS(7464), + [anon_sym___nonnull] = ACTIONS(7464), + [anon_sym___strong] = ACTIONS(7464), + [anon_sym___weak] = ACTIONS(7464), + [anon_sym___bridge] = ACTIONS(7464), + [anon_sym___bridge_transfer] = ACTIONS(7464), + [anon_sym___bridge_retained] = ACTIONS(7464), + [anon_sym___unsafe_unretained] = ACTIONS(7464), + [anon_sym___block] = ACTIONS(7464), + [anon_sym___kindof] = ACTIONS(7464), + [anon_sym___unused] = ACTIONS(7464), + [anon_sym__Complex] = ACTIONS(7464), + [anon_sym___complex] = ACTIONS(7464), + [anon_sym_IBOutlet] = ACTIONS(7464), + [anon_sym_IBInspectable] = ACTIONS(7464), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7464), + [anon_sym_signed] = ACTIONS(7464), + [anon_sym_unsigned] = ACTIONS(7464), + [anon_sym_long] = ACTIONS(7464), + [anon_sym_short] = ACTIONS(7464), + [sym_primitive_type] = ACTIONS(7464), + [anon_sym_enum] = ACTIONS(7464), + [anon_sym_struct] = ACTIONS(7464), + [anon_sym_union] = ACTIONS(7464), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7464), + [anon_sym_ATend] = ACTIONS(7466), + [sym_optional] = ACTIONS(7466), + [sym_required] = ACTIONS(7466), + [anon_sym_ATproperty] = ACTIONS(7466), + [sym_method_attribute_specifier] = ACTIONS(7464), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7464), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7464), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7464), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7464), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7464), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7464), + [anon_sym_NS_AVAILABLE] = ACTIONS(7464), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7464), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7464), + [anon_sym_API_AVAILABLE] = ACTIONS(7464), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7464), + [anon_sym_API_DEPRECATED] = ACTIONS(7464), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7464), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7464), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7464), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7464), + [anon_sym___deprecated_msg] = ACTIONS(7464), + [anon_sym___deprecated_enum_msg] = ACTIONS(7464), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7464), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7464), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7464), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7464), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7464), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7464), + [anon_sym_NS_ENUM] = ACTIONS(7464), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7464), + [anon_sym_NS_OPTIONS] = ACTIONS(7464), + [anon_sym_typeof] = ACTIONS(7464), + [anon_sym___typeof] = ACTIONS(7464), + [anon_sym___typeof__] = ACTIONS(7464), + [sym_id] = ACTIONS(7464), + [sym_instancetype] = ACTIONS(7464), + [sym_Class] = ACTIONS(7464), + [sym_SEL] = ACTIONS(7464), + [sym_IMP] = ACTIONS(7464), + [sym_BOOL] = ACTIONS(7464), + [sym_auto] = ACTIONS(7464), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3099] = { + [sym_identifier] = ACTIONS(7468), + [aux_sym_preproc_def_token1] = ACTIONS(7470), + [anon_sym_DASH] = ACTIONS(7470), + [anon_sym_PLUS] = ACTIONS(7470), + [anon_sym_typedef] = ACTIONS(7468), + [anon_sym_extern] = ACTIONS(7468), + [anon_sym___attribute] = ACTIONS(7468), + [anon_sym___attribute__] = ACTIONS(7468), + [anon_sym___declspec] = ACTIONS(7468), + [anon_sym_static] = ACTIONS(7468), + [anon_sym_auto] = ACTIONS(7468), + [anon_sym_register] = ACTIONS(7468), + [anon_sym_inline] = ACTIONS(7468), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7468), + [anon_sym_const] = ACTIONS(7468), + [anon_sym_volatile] = ACTIONS(7468), + [anon_sym_restrict] = ACTIONS(7468), + [anon_sym__Atomic] = ACTIONS(7468), + [anon_sym_in] = ACTIONS(7468), + [anon_sym_out] = ACTIONS(7468), + [anon_sym_inout] = ACTIONS(7468), + [anon_sym_bycopy] = ACTIONS(7468), + [anon_sym_byref] = ACTIONS(7468), + [anon_sym_oneway] = ACTIONS(7468), + [anon_sym__Nullable] = ACTIONS(7468), + [anon_sym__Nonnull] = ACTIONS(7468), + [anon_sym__Nullable_result] = ACTIONS(7468), + [anon_sym__Null_unspecified] = ACTIONS(7468), + [anon_sym___autoreleasing] = ACTIONS(7468), + [anon_sym___nullable] = ACTIONS(7468), + [anon_sym___nonnull] = ACTIONS(7468), + [anon_sym___strong] = ACTIONS(7468), + [anon_sym___weak] = ACTIONS(7468), + [anon_sym___bridge] = ACTIONS(7468), + [anon_sym___bridge_transfer] = ACTIONS(7468), + [anon_sym___bridge_retained] = ACTIONS(7468), + [anon_sym___unsafe_unretained] = ACTIONS(7468), + [anon_sym___block] = ACTIONS(7468), + [anon_sym___kindof] = ACTIONS(7468), + [anon_sym___unused] = ACTIONS(7468), + [anon_sym__Complex] = ACTIONS(7468), + [anon_sym___complex] = ACTIONS(7468), + [anon_sym_IBOutlet] = ACTIONS(7468), + [anon_sym_IBInspectable] = ACTIONS(7468), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7468), + [anon_sym_signed] = ACTIONS(7468), + [anon_sym_unsigned] = ACTIONS(7468), + [anon_sym_long] = ACTIONS(7468), + [anon_sym_short] = ACTIONS(7468), + [sym_primitive_type] = ACTIONS(7468), + [anon_sym_enum] = ACTIONS(7468), + [anon_sym_struct] = ACTIONS(7468), + [anon_sym_union] = ACTIONS(7468), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7468), + [anon_sym_ATend] = ACTIONS(7470), + [sym_optional] = ACTIONS(7470), + [sym_required] = ACTIONS(7470), + [anon_sym_ATproperty] = ACTIONS(7470), + [sym_method_attribute_specifier] = ACTIONS(7468), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7468), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7468), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7468), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7468), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7468), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7468), + [anon_sym_NS_AVAILABLE] = ACTIONS(7468), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7468), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7468), + [anon_sym_API_AVAILABLE] = ACTIONS(7468), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7468), + [anon_sym_API_DEPRECATED] = ACTIONS(7468), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7468), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7468), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7468), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7468), + [anon_sym___deprecated_msg] = ACTIONS(7468), + [anon_sym___deprecated_enum_msg] = ACTIONS(7468), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7468), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7468), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7468), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7468), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7468), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7468), + [anon_sym_NS_ENUM] = ACTIONS(7468), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7468), + [anon_sym_NS_OPTIONS] = ACTIONS(7468), + [anon_sym_typeof] = ACTIONS(7468), + [anon_sym___typeof] = ACTIONS(7468), + [anon_sym___typeof__] = ACTIONS(7468), + [sym_id] = ACTIONS(7468), + [sym_instancetype] = ACTIONS(7468), + [sym_Class] = ACTIONS(7468), + [sym_SEL] = ACTIONS(7468), + [sym_IMP] = ACTIONS(7468), + [sym_BOOL] = ACTIONS(7468), + [sym_auto] = ACTIONS(7468), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3100] = { + [sym_identifier] = ACTIONS(7472), + [aux_sym_preproc_def_token1] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7474), + [anon_sym_PLUS] = ACTIONS(7474), + [anon_sym_typedef] = ACTIONS(7472), + [anon_sym_extern] = ACTIONS(7472), + [anon_sym___attribute] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(7472), + [anon_sym___declspec] = ACTIONS(7472), + [anon_sym_static] = ACTIONS(7472), + [anon_sym_auto] = ACTIONS(7472), + [anon_sym_register] = ACTIONS(7472), + [anon_sym_inline] = ACTIONS(7472), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7472), + [anon_sym_const] = ACTIONS(7472), + [anon_sym_volatile] = ACTIONS(7472), + [anon_sym_restrict] = ACTIONS(7472), + [anon_sym__Atomic] = ACTIONS(7472), + [anon_sym_in] = ACTIONS(7472), + [anon_sym_out] = ACTIONS(7472), + [anon_sym_inout] = ACTIONS(7472), + [anon_sym_bycopy] = ACTIONS(7472), + [anon_sym_byref] = ACTIONS(7472), + [anon_sym_oneway] = ACTIONS(7472), + [anon_sym__Nullable] = ACTIONS(7472), + [anon_sym__Nonnull] = ACTIONS(7472), + [anon_sym__Nullable_result] = ACTIONS(7472), + [anon_sym__Null_unspecified] = ACTIONS(7472), + [anon_sym___autoreleasing] = ACTIONS(7472), + [anon_sym___nullable] = ACTIONS(7472), + [anon_sym___nonnull] = ACTIONS(7472), + [anon_sym___strong] = ACTIONS(7472), + [anon_sym___weak] = ACTIONS(7472), + [anon_sym___bridge] = ACTIONS(7472), + [anon_sym___bridge_transfer] = ACTIONS(7472), + [anon_sym___bridge_retained] = ACTIONS(7472), + [anon_sym___unsafe_unretained] = ACTIONS(7472), + [anon_sym___block] = ACTIONS(7472), + [anon_sym___kindof] = ACTIONS(7472), + [anon_sym___unused] = ACTIONS(7472), + [anon_sym__Complex] = ACTIONS(7472), + [anon_sym___complex] = ACTIONS(7472), + [anon_sym_IBOutlet] = ACTIONS(7472), + [anon_sym_IBInspectable] = ACTIONS(7472), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7472), + [anon_sym_signed] = ACTIONS(7472), + [anon_sym_unsigned] = ACTIONS(7472), + [anon_sym_long] = ACTIONS(7472), + [anon_sym_short] = ACTIONS(7472), + [sym_primitive_type] = ACTIONS(7472), + [anon_sym_enum] = ACTIONS(7472), + [anon_sym_struct] = ACTIONS(7472), + [anon_sym_union] = ACTIONS(7472), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7472), + [anon_sym_ATend] = ACTIONS(7474), + [sym_optional] = ACTIONS(7474), + [sym_required] = ACTIONS(7474), + [anon_sym_ATproperty] = ACTIONS(7474), + [sym_method_attribute_specifier] = ACTIONS(7472), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7472), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7472), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7472), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7472), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7472), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7472), + [anon_sym_NS_AVAILABLE] = ACTIONS(7472), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7472), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7472), + [anon_sym_API_AVAILABLE] = ACTIONS(7472), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7472), + [anon_sym_API_DEPRECATED] = ACTIONS(7472), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7472), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7472), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7472), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7472), + [anon_sym___deprecated_msg] = ACTIONS(7472), + [anon_sym___deprecated_enum_msg] = ACTIONS(7472), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7472), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7472), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7472), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7472), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7472), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7472), + [anon_sym_NS_ENUM] = ACTIONS(7472), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7472), + [anon_sym_NS_OPTIONS] = ACTIONS(7472), + [anon_sym_typeof] = ACTIONS(7472), + [anon_sym___typeof] = ACTIONS(7472), + [anon_sym___typeof__] = ACTIONS(7472), + [sym_id] = ACTIONS(7472), + [sym_instancetype] = ACTIONS(7472), + [sym_Class] = ACTIONS(7472), + [sym_SEL] = ACTIONS(7472), + [sym_IMP] = ACTIONS(7472), + [sym_BOOL] = ACTIONS(7472), + [sym_auto] = ACTIONS(7472), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3101] = { + [sym_identifier] = ACTIONS(7328), + [aux_sym_preproc_def_token1] = ACTIONS(7330), + [anon_sym_DASH] = ACTIONS(7330), + [anon_sym_PLUS] = ACTIONS(7330), + [anon_sym_typedef] = ACTIONS(7328), + [anon_sym_extern] = ACTIONS(7328), + [anon_sym___attribute] = ACTIONS(7328), + [anon_sym___attribute__] = ACTIONS(7328), + [anon_sym___declspec] = ACTIONS(7328), + [anon_sym_static] = ACTIONS(7328), + [anon_sym_auto] = ACTIONS(7328), + [anon_sym_register] = ACTIONS(7328), + [anon_sym_inline] = ACTIONS(7328), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7328), + [anon_sym_const] = ACTIONS(7328), + [anon_sym_volatile] = ACTIONS(7328), + [anon_sym_restrict] = ACTIONS(7328), + [anon_sym__Atomic] = ACTIONS(7328), + [anon_sym_in] = ACTIONS(7328), + [anon_sym_out] = ACTIONS(7328), + [anon_sym_inout] = ACTIONS(7328), + [anon_sym_bycopy] = ACTIONS(7328), + [anon_sym_byref] = ACTIONS(7328), + [anon_sym_oneway] = ACTIONS(7328), + [anon_sym__Nullable] = ACTIONS(7328), + [anon_sym__Nonnull] = ACTIONS(7328), + [anon_sym__Nullable_result] = ACTIONS(7328), + [anon_sym__Null_unspecified] = ACTIONS(7328), + [anon_sym___autoreleasing] = ACTIONS(7328), + [anon_sym___nullable] = ACTIONS(7328), + [anon_sym___nonnull] = ACTIONS(7328), + [anon_sym___strong] = ACTIONS(7328), + [anon_sym___weak] = ACTIONS(7328), + [anon_sym___bridge] = ACTIONS(7328), + [anon_sym___bridge_transfer] = ACTIONS(7328), + [anon_sym___bridge_retained] = ACTIONS(7328), + [anon_sym___unsafe_unretained] = ACTIONS(7328), + [anon_sym___block] = ACTIONS(7328), + [anon_sym___kindof] = ACTIONS(7328), + [anon_sym___unused] = ACTIONS(7328), + [anon_sym__Complex] = ACTIONS(7328), + [anon_sym___complex] = ACTIONS(7328), + [anon_sym_IBOutlet] = ACTIONS(7328), + [anon_sym_IBInspectable] = ACTIONS(7328), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7328), + [anon_sym_signed] = ACTIONS(7328), + [anon_sym_unsigned] = ACTIONS(7328), + [anon_sym_long] = ACTIONS(7328), + [anon_sym_short] = ACTIONS(7328), + [sym_primitive_type] = ACTIONS(7328), + [anon_sym_enum] = ACTIONS(7328), + [anon_sym_struct] = ACTIONS(7328), + [anon_sym_union] = ACTIONS(7328), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7328), + [anon_sym_ATend] = ACTIONS(7330), + [sym_optional] = ACTIONS(7330), + [sym_required] = ACTIONS(7330), + [anon_sym_ATproperty] = ACTIONS(7330), + [sym_method_attribute_specifier] = ACTIONS(7328), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7328), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7328), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7328), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7328), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7328), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7328), + [anon_sym_NS_AVAILABLE] = ACTIONS(7328), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7328), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7328), + [anon_sym_API_AVAILABLE] = ACTIONS(7328), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7328), + [anon_sym_API_DEPRECATED] = ACTIONS(7328), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7328), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7328), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7328), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7328), + [anon_sym___deprecated_msg] = ACTIONS(7328), + [anon_sym___deprecated_enum_msg] = ACTIONS(7328), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7328), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7328), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7328), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7328), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7328), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7328), + [anon_sym_NS_ENUM] = ACTIONS(7328), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7328), + [anon_sym_NS_OPTIONS] = ACTIONS(7328), + [anon_sym_typeof] = ACTIONS(7328), + [anon_sym___typeof] = ACTIONS(7328), + [anon_sym___typeof__] = ACTIONS(7328), + [sym_id] = ACTIONS(7328), + [sym_instancetype] = ACTIONS(7328), + [sym_Class] = ACTIONS(7328), + [sym_SEL] = ACTIONS(7328), + [sym_IMP] = ACTIONS(7328), + [sym_BOOL] = ACTIONS(7328), + [sym_auto] = ACTIONS(7328), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3102] = { + [sym_identifier] = ACTIONS(7476), + [aux_sym_preproc_def_token1] = ACTIONS(7478), + [anon_sym_DASH] = ACTIONS(7478), + [anon_sym_PLUS] = ACTIONS(7478), + [anon_sym_typedef] = ACTIONS(7476), + [anon_sym_extern] = ACTIONS(7476), + [anon_sym___attribute] = ACTIONS(7476), + [anon_sym___attribute__] = ACTIONS(7476), + [anon_sym___declspec] = ACTIONS(7476), + [anon_sym_static] = ACTIONS(7476), + [anon_sym_auto] = ACTIONS(7476), + [anon_sym_register] = ACTIONS(7476), + [anon_sym_inline] = ACTIONS(7476), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7476), + [anon_sym_const] = ACTIONS(7476), + [anon_sym_volatile] = ACTIONS(7476), + [anon_sym_restrict] = ACTIONS(7476), + [anon_sym__Atomic] = ACTIONS(7476), + [anon_sym_in] = ACTIONS(7476), + [anon_sym_out] = ACTIONS(7476), + [anon_sym_inout] = ACTIONS(7476), + [anon_sym_bycopy] = ACTIONS(7476), + [anon_sym_byref] = ACTIONS(7476), + [anon_sym_oneway] = ACTIONS(7476), + [anon_sym__Nullable] = ACTIONS(7476), + [anon_sym__Nonnull] = ACTIONS(7476), + [anon_sym__Nullable_result] = ACTIONS(7476), + [anon_sym__Null_unspecified] = ACTIONS(7476), + [anon_sym___autoreleasing] = ACTIONS(7476), + [anon_sym___nullable] = ACTIONS(7476), + [anon_sym___nonnull] = ACTIONS(7476), + [anon_sym___strong] = ACTIONS(7476), + [anon_sym___weak] = ACTIONS(7476), + [anon_sym___bridge] = ACTIONS(7476), + [anon_sym___bridge_transfer] = ACTIONS(7476), + [anon_sym___bridge_retained] = ACTIONS(7476), + [anon_sym___unsafe_unretained] = ACTIONS(7476), + [anon_sym___block] = ACTIONS(7476), + [anon_sym___kindof] = ACTIONS(7476), + [anon_sym___unused] = ACTIONS(7476), + [anon_sym__Complex] = ACTIONS(7476), + [anon_sym___complex] = ACTIONS(7476), + [anon_sym_IBOutlet] = ACTIONS(7476), + [anon_sym_IBInspectable] = ACTIONS(7476), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7476), + [anon_sym_signed] = ACTIONS(7476), + [anon_sym_unsigned] = ACTIONS(7476), + [anon_sym_long] = ACTIONS(7476), + [anon_sym_short] = ACTIONS(7476), + [sym_primitive_type] = ACTIONS(7476), + [anon_sym_enum] = ACTIONS(7476), + [anon_sym_struct] = ACTIONS(7476), + [anon_sym_union] = ACTIONS(7476), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7476), + [anon_sym_ATend] = ACTIONS(7478), + [sym_optional] = ACTIONS(7478), + [sym_required] = ACTIONS(7478), + [anon_sym_ATproperty] = ACTIONS(7478), + [sym_method_attribute_specifier] = ACTIONS(7476), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7476), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7476), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7476), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7476), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7476), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7476), + [anon_sym_NS_AVAILABLE] = ACTIONS(7476), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7476), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7476), + [anon_sym_API_AVAILABLE] = ACTIONS(7476), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7476), + [anon_sym_API_DEPRECATED] = ACTIONS(7476), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7476), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7476), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7476), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7476), + [anon_sym___deprecated_msg] = ACTIONS(7476), + [anon_sym___deprecated_enum_msg] = ACTIONS(7476), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7476), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7476), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7476), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7476), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7476), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7476), + [anon_sym_NS_ENUM] = ACTIONS(7476), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7476), + [anon_sym_NS_OPTIONS] = ACTIONS(7476), + [anon_sym_typeof] = ACTIONS(7476), + [anon_sym___typeof] = ACTIONS(7476), + [anon_sym___typeof__] = ACTIONS(7476), + [sym_id] = ACTIONS(7476), + [sym_instancetype] = ACTIONS(7476), + [sym_Class] = ACTIONS(7476), + [sym_SEL] = ACTIONS(7476), + [sym_IMP] = ACTIONS(7476), + [sym_BOOL] = ACTIONS(7476), + [sym_auto] = ACTIONS(7476), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3103] = { + [sym_identifier] = ACTIONS(7480), + [aux_sym_preproc_def_token1] = ACTIONS(7482), + [anon_sym_DASH] = ACTIONS(7482), + [anon_sym_PLUS] = ACTIONS(7482), + [anon_sym_typedef] = ACTIONS(7480), + [anon_sym_extern] = ACTIONS(7480), + [anon_sym___attribute] = ACTIONS(7480), + [anon_sym___attribute__] = ACTIONS(7480), + [anon_sym___declspec] = ACTIONS(7480), + [anon_sym_static] = ACTIONS(7480), + [anon_sym_auto] = ACTIONS(7480), + [anon_sym_register] = ACTIONS(7480), + [anon_sym_inline] = ACTIONS(7480), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7480), + [anon_sym_const] = ACTIONS(7480), + [anon_sym_volatile] = ACTIONS(7480), + [anon_sym_restrict] = ACTIONS(7480), + [anon_sym__Atomic] = ACTIONS(7480), + [anon_sym_in] = ACTIONS(7480), + [anon_sym_out] = ACTIONS(7480), + [anon_sym_inout] = ACTIONS(7480), + [anon_sym_bycopy] = ACTIONS(7480), + [anon_sym_byref] = ACTIONS(7480), + [anon_sym_oneway] = ACTIONS(7480), + [anon_sym__Nullable] = ACTIONS(7480), + [anon_sym__Nonnull] = ACTIONS(7480), + [anon_sym__Nullable_result] = ACTIONS(7480), + [anon_sym__Null_unspecified] = ACTIONS(7480), + [anon_sym___autoreleasing] = ACTIONS(7480), + [anon_sym___nullable] = ACTIONS(7480), + [anon_sym___nonnull] = ACTIONS(7480), + [anon_sym___strong] = ACTIONS(7480), + [anon_sym___weak] = ACTIONS(7480), + [anon_sym___bridge] = ACTIONS(7480), + [anon_sym___bridge_transfer] = ACTIONS(7480), + [anon_sym___bridge_retained] = ACTIONS(7480), + [anon_sym___unsafe_unretained] = ACTIONS(7480), + [anon_sym___block] = ACTIONS(7480), + [anon_sym___kindof] = ACTIONS(7480), + [anon_sym___unused] = ACTIONS(7480), + [anon_sym__Complex] = ACTIONS(7480), + [anon_sym___complex] = ACTIONS(7480), + [anon_sym_IBOutlet] = ACTIONS(7480), + [anon_sym_IBInspectable] = ACTIONS(7480), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7480), + [anon_sym_signed] = ACTIONS(7480), + [anon_sym_unsigned] = ACTIONS(7480), + [anon_sym_long] = ACTIONS(7480), + [anon_sym_short] = ACTIONS(7480), + [sym_primitive_type] = ACTIONS(7480), + [anon_sym_enum] = ACTIONS(7480), + [anon_sym_struct] = ACTIONS(7480), + [anon_sym_union] = ACTIONS(7480), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7480), + [anon_sym_ATend] = ACTIONS(7482), + [sym_optional] = ACTIONS(7482), + [sym_required] = ACTIONS(7482), + [anon_sym_ATproperty] = ACTIONS(7482), + [sym_method_attribute_specifier] = ACTIONS(7480), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7480), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7480), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7480), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7480), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7480), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7480), + [anon_sym_NS_AVAILABLE] = ACTIONS(7480), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7480), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7480), + [anon_sym_API_AVAILABLE] = ACTIONS(7480), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7480), + [anon_sym_API_DEPRECATED] = ACTIONS(7480), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7480), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7480), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7480), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7480), + [anon_sym___deprecated_msg] = ACTIONS(7480), + [anon_sym___deprecated_enum_msg] = ACTIONS(7480), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7480), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7480), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7480), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7480), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7480), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7480), + [anon_sym_NS_ENUM] = ACTIONS(7480), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7480), + [anon_sym_NS_OPTIONS] = ACTIONS(7480), + [anon_sym_typeof] = ACTIONS(7480), + [anon_sym___typeof] = ACTIONS(7480), + [anon_sym___typeof__] = ACTIONS(7480), + [sym_id] = ACTIONS(7480), + [sym_instancetype] = ACTIONS(7480), + [sym_Class] = ACTIONS(7480), + [sym_SEL] = ACTIONS(7480), + [sym_IMP] = ACTIONS(7480), + [sym_BOOL] = ACTIONS(7480), + [sym_auto] = ACTIONS(7480), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3104] = { + [sym_identifier] = ACTIONS(7484), + [aux_sym_preproc_def_token1] = ACTIONS(7486), + [anon_sym_DASH] = ACTIONS(7486), + [anon_sym_PLUS] = ACTIONS(7486), + [anon_sym_typedef] = ACTIONS(7484), + [anon_sym_extern] = ACTIONS(7484), + [anon_sym___attribute] = ACTIONS(7484), + [anon_sym___attribute__] = ACTIONS(7484), + [anon_sym___declspec] = ACTIONS(7484), + [anon_sym_static] = ACTIONS(7484), + [anon_sym_auto] = ACTIONS(7484), + [anon_sym_register] = ACTIONS(7484), + [anon_sym_inline] = ACTIONS(7484), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7484), + [anon_sym_const] = ACTIONS(7484), + [anon_sym_volatile] = ACTIONS(7484), + [anon_sym_restrict] = ACTIONS(7484), + [anon_sym__Atomic] = ACTIONS(7484), + [anon_sym_in] = ACTIONS(7484), + [anon_sym_out] = ACTIONS(7484), + [anon_sym_inout] = ACTIONS(7484), + [anon_sym_bycopy] = ACTIONS(7484), + [anon_sym_byref] = ACTIONS(7484), + [anon_sym_oneway] = ACTIONS(7484), + [anon_sym__Nullable] = ACTIONS(7484), + [anon_sym__Nonnull] = ACTIONS(7484), + [anon_sym__Nullable_result] = ACTIONS(7484), + [anon_sym__Null_unspecified] = ACTIONS(7484), + [anon_sym___autoreleasing] = ACTIONS(7484), + [anon_sym___nullable] = ACTIONS(7484), + [anon_sym___nonnull] = ACTIONS(7484), + [anon_sym___strong] = ACTIONS(7484), + [anon_sym___weak] = ACTIONS(7484), + [anon_sym___bridge] = ACTIONS(7484), + [anon_sym___bridge_transfer] = ACTIONS(7484), + [anon_sym___bridge_retained] = ACTIONS(7484), + [anon_sym___unsafe_unretained] = ACTIONS(7484), + [anon_sym___block] = ACTIONS(7484), + [anon_sym___kindof] = ACTIONS(7484), + [anon_sym___unused] = ACTIONS(7484), + [anon_sym__Complex] = ACTIONS(7484), + [anon_sym___complex] = ACTIONS(7484), + [anon_sym_IBOutlet] = ACTIONS(7484), + [anon_sym_IBInspectable] = ACTIONS(7484), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7484), + [anon_sym_signed] = ACTIONS(7484), + [anon_sym_unsigned] = ACTIONS(7484), + [anon_sym_long] = ACTIONS(7484), + [anon_sym_short] = ACTIONS(7484), + [sym_primitive_type] = ACTIONS(7484), + [anon_sym_enum] = ACTIONS(7484), + [anon_sym_struct] = ACTIONS(7484), + [anon_sym_union] = ACTIONS(7484), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7484), + [anon_sym_ATend] = ACTIONS(7486), + [sym_optional] = ACTIONS(7486), + [sym_required] = ACTIONS(7486), + [anon_sym_ATproperty] = ACTIONS(7486), + [sym_method_attribute_specifier] = ACTIONS(7484), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7484), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7484), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7484), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7484), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7484), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7484), + [anon_sym_NS_AVAILABLE] = ACTIONS(7484), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7484), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7484), + [anon_sym_API_AVAILABLE] = ACTIONS(7484), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7484), + [anon_sym_API_DEPRECATED] = ACTIONS(7484), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7484), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7484), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7484), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7484), + [anon_sym___deprecated_msg] = ACTIONS(7484), + [anon_sym___deprecated_enum_msg] = ACTIONS(7484), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7484), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7484), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7484), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7484), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7484), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7484), + [anon_sym_NS_ENUM] = ACTIONS(7484), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7484), + [anon_sym_NS_OPTIONS] = ACTIONS(7484), + [anon_sym_typeof] = ACTIONS(7484), + [anon_sym___typeof] = ACTIONS(7484), + [anon_sym___typeof__] = ACTIONS(7484), + [sym_id] = ACTIONS(7484), + [sym_instancetype] = ACTIONS(7484), + [sym_Class] = ACTIONS(7484), + [sym_SEL] = ACTIONS(7484), + [sym_IMP] = ACTIONS(7484), + [sym_BOOL] = ACTIONS(7484), + [sym_auto] = ACTIONS(7484), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3105] = { + [sym_identifier] = ACTIONS(7488), + [aux_sym_preproc_def_token1] = ACTIONS(7490), + [anon_sym_DASH] = ACTIONS(7490), + [anon_sym_PLUS] = ACTIONS(7490), + [anon_sym_typedef] = ACTIONS(7488), + [anon_sym_extern] = ACTIONS(7488), + [anon_sym___attribute] = ACTIONS(7488), + [anon_sym___attribute__] = ACTIONS(7488), + [anon_sym___declspec] = ACTIONS(7488), + [anon_sym_static] = ACTIONS(7488), + [anon_sym_auto] = ACTIONS(7488), + [anon_sym_register] = ACTIONS(7488), + [anon_sym_inline] = ACTIONS(7488), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7488), + [anon_sym_const] = ACTIONS(7488), + [anon_sym_volatile] = ACTIONS(7488), + [anon_sym_restrict] = ACTIONS(7488), + [anon_sym__Atomic] = ACTIONS(7488), + [anon_sym_in] = ACTIONS(7488), + [anon_sym_out] = ACTIONS(7488), + [anon_sym_inout] = ACTIONS(7488), + [anon_sym_bycopy] = ACTIONS(7488), + [anon_sym_byref] = ACTIONS(7488), + [anon_sym_oneway] = ACTIONS(7488), + [anon_sym__Nullable] = ACTIONS(7488), + [anon_sym__Nonnull] = ACTIONS(7488), + [anon_sym__Nullable_result] = ACTIONS(7488), + [anon_sym__Null_unspecified] = ACTIONS(7488), + [anon_sym___autoreleasing] = ACTIONS(7488), + [anon_sym___nullable] = ACTIONS(7488), + [anon_sym___nonnull] = ACTIONS(7488), + [anon_sym___strong] = ACTIONS(7488), + [anon_sym___weak] = ACTIONS(7488), + [anon_sym___bridge] = ACTIONS(7488), + [anon_sym___bridge_transfer] = ACTIONS(7488), + [anon_sym___bridge_retained] = ACTIONS(7488), + [anon_sym___unsafe_unretained] = ACTIONS(7488), + [anon_sym___block] = ACTIONS(7488), + [anon_sym___kindof] = ACTIONS(7488), + [anon_sym___unused] = ACTIONS(7488), + [anon_sym__Complex] = ACTIONS(7488), + [anon_sym___complex] = ACTIONS(7488), + [anon_sym_IBOutlet] = ACTIONS(7488), + [anon_sym_IBInspectable] = ACTIONS(7488), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7488), + [anon_sym_signed] = ACTIONS(7488), + [anon_sym_unsigned] = ACTIONS(7488), + [anon_sym_long] = ACTIONS(7488), + [anon_sym_short] = ACTIONS(7488), + [sym_primitive_type] = ACTIONS(7488), + [anon_sym_enum] = ACTIONS(7488), + [anon_sym_struct] = ACTIONS(7488), + [anon_sym_union] = ACTIONS(7488), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7488), + [anon_sym_ATend] = ACTIONS(7490), + [sym_optional] = ACTIONS(7490), + [sym_required] = ACTIONS(7490), + [anon_sym_ATproperty] = ACTIONS(7490), + [sym_method_attribute_specifier] = ACTIONS(7488), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7488), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7488), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7488), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7488), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7488), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7488), + [anon_sym_NS_AVAILABLE] = ACTIONS(7488), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7488), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7488), + [anon_sym_API_AVAILABLE] = ACTIONS(7488), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7488), + [anon_sym_API_DEPRECATED] = ACTIONS(7488), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7488), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7488), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7488), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7488), + [anon_sym___deprecated_msg] = ACTIONS(7488), + [anon_sym___deprecated_enum_msg] = ACTIONS(7488), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7488), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7488), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7488), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7488), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7488), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7488), + [anon_sym_NS_ENUM] = ACTIONS(7488), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7488), + [anon_sym_NS_OPTIONS] = ACTIONS(7488), + [anon_sym_typeof] = ACTIONS(7488), + [anon_sym___typeof] = ACTIONS(7488), + [anon_sym___typeof__] = ACTIONS(7488), + [sym_id] = ACTIONS(7488), + [sym_instancetype] = ACTIONS(7488), + [sym_Class] = ACTIONS(7488), + [sym_SEL] = ACTIONS(7488), + [sym_IMP] = ACTIONS(7488), + [sym_BOOL] = ACTIONS(7488), + [sym_auto] = ACTIONS(7488), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3106] = { + [sym_identifier] = ACTIONS(7456), + [aux_sym_preproc_def_token1] = ACTIONS(7458), + [anon_sym_DASH] = ACTIONS(7458), + [anon_sym_PLUS] = ACTIONS(7458), + [anon_sym_typedef] = ACTIONS(7456), + [anon_sym_extern] = ACTIONS(7456), + [anon_sym___attribute] = ACTIONS(7456), + [anon_sym___attribute__] = ACTIONS(7456), + [anon_sym___declspec] = ACTIONS(7456), + [anon_sym_static] = ACTIONS(7456), + [anon_sym_auto] = ACTIONS(7456), + [anon_sym_register] = ACTIONS(7456), + [anon_sym_inline] = ACTIONS(7456), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7456), + [anon_sym_const] = ACTIONS(7456), + [anon_sym_volatile] = ACTIONS(7456), + [anon_sym_restrict] = ACTIONS(7456), + [anon_sym__Atomic] = ACTIONS(7456), + [anon_sym_in] = ACTIONS(7456), + [anon_sym_out] = ACTIONS(7456), + [anon_sym_inout] = ACTIONS(7456), + [anon_sym_bycopy] = ACTIONS(7456), + [anon_sym_byref] = ACTIONS(7456), + [anon_sym_oneway] = ACTIONS(7456), + [anon_sym__Nullable] = ACTIONS(7456), + [anon_sym__Nonnull] = ACTIONS(7456), + [anon_sym__Nullable_result] = ACTIONS(7456), + [anon_sym__Null_unspecified] = ACTIONS(7456), + [anon_sym___autoreleasing] = ACTIONS(7456), + [anon_sym___nullable] = ACTIONS(7456), + [anon_sym___nonnull] = ACTIONS(7456), + [anon_sym___strong] = ACTIONS(7456), + [anon_sym___weak] = ACTIONS(7456), + [anon_sym___bridge] = ACTIONS(7456), + [anon_sym___bridge_transfer] = ACTIONS(7456), + [anon_sym___bridge_retained] = ACTIONS(7456), + [anon_sym___unsafe_unretained] = ACTIONS(7456), + [anon_sym___block] = ACTIONS(7456), + [anon_sym___kindof] = ACTIONS(7456), + [anon_sym___unused] = ACTIONS(7456), + [anon_sym__Complex] = ACTIONS(7456), + [anon_sym___complex] = ACTIONS(7456), + [anon_sym_IBOutlet] = ACTIONS(7456), + [anon_sym_IBInspectable] = ACTIONS(7456), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7456), + [anon_sym_signed] = ACTIONS(7456), + [anon_sym_unsigned] = ACTIONS(7456), + [anon_sym_long] = ACTIONS(7456), + [anon_sym_short] = ACTIONS(7456), + [sym_primitive_type] = ACTIONS(7456), + [anon_sym_enum] = ACTIONS(7456), + [anon_sym_struct] = ACTIONS(7456), + [anon_sym_union] = ACTIONS(7456), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7456), + [anon_sym_ATend] = ACTIONS(7458), + [sym_optional] = ACTIONS(7458), + [sym_required] = ACTIONS(7458), + [anon_sym_ATproperty] = ACTIONS(7458), + [sym_method_attribute_specifier] = ACTIONS(7456), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7456), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7456), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7456), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7456), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7456), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7456), + [anon_sym_NS_AVAILABLE] = ACTIONS(7456), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7456), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7456), + [anon_sym_API_AVAILABLE] = ACTIONS(7456), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7456), + [anon_sym_API_DEPRECATED] = ACTIONS(7456), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7456), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7456), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7456), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7456), + [anon_sym___deprecated_msg] = ACTIONS(7456), + [anon_sym___deprecated_enum_msg] = ACTIONS(7456), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7456), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7456), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7456), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7456), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7456), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7456), + [anon_sym_NS_ENUM] = ACTIONS(7456), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7456), + [anon_sym_NS_OPTIONS] = ACTIONS(7456), + [anon_sym_typeof] = ACTIONS(7456), + [anon_sym___typeof] = ACTIONS(7456), + [anon_sym___typeof__] = ACTIONS(7456), + [sym_id] = ACTIONS(7456), + [sym_instancetype] = ACTIONS(7456), + [sym_Class] = ACTIONS(7456), + [sym_SEL] = ACTIONS(7456), + [sym_IMP] = ACTIONS(7456), + [sym_BOOL] = ACTIONS(7456), + [sym_auto] = ACTIONS(7456), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3107] = { + [sym_identifier] = ACTIONS(7488), + [aux_sym_preproc_def_token1] = ACTIONS(7490), + [anon_sym_DASH] = ACTIONS(7490), + [anon_sym_PLUS] = ACTIONS(7490), + [anon_sym_typedef] = ACTIONS(7488), + [anon_sym_extern] = ACTIONS(7488), + [anon_sym___attribute] = ACTIONS(7488), + [anon_sym___attribute__] = ACTIONS(7488), + [anon_sym___declspec] = ACTIONS(7488), + [anon_sym_static] = ACTIONS(7488), + [anon_sym_auto] = ACTIONS(7488), + [anon_sym_register] = ACTIONS(7488), + [anon_sym_inline] = ACTIONS(7488), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7488), + [anon_sym_const] = ACTIONS(7488), + [anon_sym_volatile] = ACTIONS(7488), + [anon_sym_restrict] = ACTIONS(7488), + [anon_sym__Atomic] = ACTIONS(7488), + [anon_sym_in] = ACTIONS(7488), + [anon_sym_out] = ACTIONS(7488), + [anon_sym_inout] = ACTIONS(7488), + [anon_sym_bycopy] = ACTIONS(7488), + [anon_sym_byref] = ACTIONS(7488), + [anon_sym_oneway] = ACTIONS(7488), + [anon_sym__Nullable] = ACTIONS(7488), + [anon_sym__Nonnull] = ACTIONS(7488), + [anon_sym__Nullable_result] = ACTIONS(7488), + [anon_sym__Null_unspecified] = ACTIONS(7488), + [anon_sym___autoreleasing] = ACTIONS(7488), + [anon_sym___nullable] = ACTIONS(7488), + [anon_sym___nonnull] = ACTIONS(7488), + [anon_sym___strong] = ACTIONS(7488), + [anon_sym___weak] = ACTIONS(7488), + [anon_sym___bridge] = ACTIONS(7488), + [anon_sym___bridge_transfer] = ACTIONS(7488), + [anon_sym___bridge_retained] = ACTIONS(7488), + [anon_sym___unsafe_unretained] = ACTIONS(7488), + [anon_sym___block] = ACTIONS(7488), + [anon_sym___kindof] = ACTIONS(7488), + [anon_sym___unused] = ACTIONS(7488), + [anon_sym__Complex] = ACTIONS(7488), + [anon_sym___complex] = ACTIONS(7488), + [anon_sym_IBOutlet] = ACTIONS(7488), + [anon_sym_IBInspectable] = ACTIONS(7488), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7488), + [anon_sym_signed] = ACTIONS(7488), + [anon_sym_unsigned] = ACTIONS(7488), + [anon_sym_long] = ACTIONS(7488), + [anon_sym_short] = ACTIONS(7488), + [sym_primitive_type] = ACTIONS(7488), + [anon_sym_enum] = ACTIONS(7488), + [anon_sym_struct] = ACTIONS(7488), + [anon_sym_union] = ACTIONS(7488), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7488), + [anon_sym_ATend] = ACTIONS(7490), + [sym_optional] = ACTIONS(7490), + [sym_required] = ACTIONS(7490), + [anon_sym_ATproperty] = ACTIONS(7490), + [sym_method_attribute_specifier] = ACTIONS(7488), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7488), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7488), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7488), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7488), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7488), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7488), + [anon_sym_NS_AVAILABLE] = ACTIONS(7488), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7488), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7488), + [anon_sym_API_AVAILABLE] = ACTIONS(7488), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7488), + [anon_sym_API_DEPRECATED] = ACTIONS(7488), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7488), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7488), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7488), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7488), + [anon_sym___deprecated_msg] = ACTIONS(7488), + [anon_sym___deprecated_enum_msg] = ACTIONS(7488), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7488), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7488), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7488), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7488), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7488), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7488), + [anon_sym_NS_ENUM] = ACTIONS(7488), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7488), + [anon_sym_NS_OPTIONS] = ACTIONS(7488), + [anon_sym_typeof] = ACTIONS(7488), + [anon_sym___typeof] = ACTIONS(7488), + [anon_sym___typeof__] = ACTIONS(7488), + [sym_id] = ACTIONS(7488), + [sym_instancetype] = ACTIONS(7488), + [sym_Class] = ACTIONS(7488), + [sym_SEL] = ACTIONS(7488), + [sym_IMP] = ACTIONS(7488), + [sym_BOOL] = ACTIONS(7488), + [sym_auto] = ACTIONS(7488), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3108] = { + [sym_identifier] = ACTIONS(7492), + [aux_sym_preproc_def_token1] = ACTIONS(7494), + [anon_sym_DASH] = ACTIONS(7494), + [anon_sym_PLUS] = ACTIONS(7494), + [anon_sym_typedef] = ACTIONS(7492), + [anon_sym_extern] = ACTIONS(7492), + [anon_sym___attribute] = ACTIONS(7492), + [anon_sym___attribute__] = ACTIONS(7492), + [anon_sym___declspec] = ACTIONS(7492), + [anon_sym_static] = ACTIONS(7492), + [anon_sym_auto] = ACTIONS(7492), + [anon_sym_register] = ACTIONS(7492), + [anon_sym_inline] = ACTIONS(7492), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7492), + [anon_sym_const] = ACTIONS(7492), + [anon_sym_volatile] = ACTIONS(7492), + [anon_sym_restrict] = ACTIONS(7492), + [anon_sym__Atomic] = ACTIONS(7492), + [anon_sym_in] = ACTIONS(7492), + [anon_sym_out] = ACTIONS(7492), + [anon_sym_inout] = ACTIONS(7492), + [anon_sym_bycopy] = ACTIONS(7492), + [anon_sym_byref] = ACTIONS(7492), + [anon_sym_oneway] = ACTIONS(7492), + [anon_sym__Nullable] = ACTIONS(7492), + [anon_sym__Nonnull] = ACTIONS(7492), + [anon_sym__Nullable_result] = ACTIONS(7492), + [anon_sym__Null_unspecified] = ACTIONS(7492), + [anon_sym___autoreleasing] = ACTIONS(7492), + [anon_sym___nullable] = ACTIONS(7492), + [anon_sym___nonnull] = ACTIONS(7492), + [anon_sym___strong] = ACTIONS(7492), + [anon_sym___weak] = ACTIONS(7492), + [anon_sym___bridge] = ACTIONS(7492), + [anon_sym___bridge_transfer] = ACTIONS(7492), + [anon_sym___bridge_retained] = ACTIONS(7492), + [anon_sym___unsafe_unretained] = ACTIONS(7492), + [anon_sym___block] = ACTIONS(7492), + [anon_sym___kindof] = ACTIONS(7492), + [anon_sym___unused] = ACTIONS(7492), + [anon_sym__Complex] = ACTIONS(7492), + [anon_sym___complex] = ACTIONS(7492), + [anon_sym_IBOutlet] = ACTIONS(7492), + [anon_sym_IBInspectable] = ACTIONS(7492), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7492), + [anon_sym_signed] = ACTIONS(7492), + [anon_sym_unsigned] = ACTIONS(7492), + [anon_sym_long] = ACTIONS(7492), + [anon_sym_short] = ACTIONS(7492), + [sym_primitive_type] = ACTIONS(7492), + [anon_sym_enum] = ACTIONS(7492), + [anon_sym_struct] = ACTIONS(7492), + [anon_sym_union] = ACTIONS(7492), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7492), + [anon_sym_ATend] = ACTIONS(7494), + [sym_optional] = ACTIONS(7494), + [sym_required] = ACTIONS(7494), + [anon_sym_ATproperty] = ACTIONS(7494), + [sym_method_attribute_specifier] = ACTIONS(7492), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7492), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7492), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7492), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7492), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7492), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7492), + [anon_sym_NS_AVAILABLE] = ACTIONS(7492), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7492), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7492), + [anon_sym_API_AVAILABLE] = ACTIONS(7492), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7492), + [anon_sym_API_DEPRECATED] = ACTIONS(7492), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7492), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7492), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7492), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7492), + [anon_sym___deprecated_msg] = ACTIONS(7492), + [anon_sym___deprecated_enum_msg] = ACTIONS(7492), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7492), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7492), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7492), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7492), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7492), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7492), + [anon_sym_NS_ENUM] = ACTIONS(7492), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7492), + [anon_sym_NS_OPTIONS] = ACTIONS(7492), + [anon_sym_typeof] = ACTIONS(7492), + [anon_sym___typeof] = ACTIONS(7492), + [anon_sym___typeof__] = ACTIONS(7492), + [sym_id] = ACTIONS(7492), + [sym_instancetype] = ACTIONS(7492), + [sym_Class] = ACTIONS(7492), + [sym_SEL] = ACTIONS(7492), + [sym_IMP] = ACTIONS(7492), + [sym_BOOL] = ACTIONS(7492), + [sym_auto] = ACTIONS(7492), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3109] = { + [sym_identifier] = ACTIONS(7496), + [aux_sym_preproc_def_token1] = ACTIONS(7498), + [anon_sym_DASH] = ACTIONS(7498), + [anon_sym_PLUS] = ACTIONS(7498), + [anon_sym_typedef] = ACTIONS(7496), + [anon_sym_extern] = ACTIONS(7496), + [anon_sym___attribute] = ACTIONS(7496), + [anon_sym___attribute__] = ACTIONS(7496), + [anon_sym___declspec] = ACTIONS(7496), + [anon_sym_static] = ACTIONS(7496), + [anon_sym_auto] = ACTIONS(7496), + [anon_sym_register] = ACTIONS(7496), + [anon_sym_inline] = ACTIONS(7496), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7496), + [anon_sym_const] = ACTIONS(7496), + [anon_sym_volatile] = ACTIONS(7496), + [anon_sym_restrict] = ACTIONS(7496), + [anon_sym__Atomic] = ACTIONS(7496), + [anon_sym_in] = ACTIONS(7496), + [anon_sym_out] = ACTIONS(7496), + [anon_sym_inout] = ACTIONS(7496), + [anon_sym_bycopy] = ACTIONS(7496), + [anon_sym_byref] = ACTIONS(7496), + [anon_sym_oneway] = ACTIONS(7496), + [anon_sym__Nullable] = ACTIONS(7496), + [anon_sym__Nonnull] = ACTIONS(7496), + [anon_sym__Nullable_result] = ACTIONS(7496), + [anon_sym__Null_unspecified] = ACTIONS(7496), + [anon_sym___autoreleasing] = ACTIONS(7496), + [anon_sym___nullable] = ACTIONS(7496), + [anon_sym___nonnull] = ACTIONS(7496), + [anon_sym___strong] = ACTIONS(7496), + [anon_sym___weak] = ACTIONS(7496), + [anon_sym___bridge] = ACTIONS(7496), + [anon_sym___bridge_transfer] = ACTIONS(7496), + [anon_sym___bridge_retained] = ACTIONS(7496), + [anon_sym___unsafe_unretained] = ACTIONS(7496), + [anon_sym___block] = ACTIONS(7496), + [anon_sym___kindof] = ACTIONS(7496), + [anon_sym___unused] = ACTIONS(7496), + [anon_sym__Complex] = ACTIONS(7496), + [anon_sym___complex] = ACTIONS(7496), + [anon_sym_IBOutlet] = ACTIONS(7496), + [anon_sym_IBInspectable] = ACTIONS(7496), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7496), + [anon_sym_signed] = ACTIONS(7496), + [anon_sym_unsigned] = ACTIONS(7496), + [anon_sym_long] = ACTIONS(7496), + [anon_sym_short] = ACTIONS(7496), + [sym_primitive_type] = ACTIONS(7496), + [anon_sym_enum] = ACTIONS(7496), + [anon_sym_struct] = ACTIONS(7496), + [anon_sym_union] = ACTIONS(7496), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7496), + [anon_sym_ATend] = ACTIONS(7498), + [sym_optional] = ACTIONS(7498), + [sym_required] = ACTIONS(7498), + [anon_sym_ATproperty] = ACTIONS(7498), + [sym_method_attribute_specifier] = ACTIONS(7496), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7496), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7496), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7496), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7496), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7496), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7496), + [anon_sym_NS_AVAILABLE] = ACTIONS(7496), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7496), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7496), + [anon_sym_API_AVAILABLE] = ACTIONS(7496), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7496), + [anon_sym_API_DEPRECATED] = ACTIONS(7496), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7496), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7496), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7496), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7496), + [anon_sym___deprecated_msg] = ACTIONS(7496), + [anon_sym___deprecated_enum_msg] = ACTIONS(7496), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7496), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7496), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7496), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7496), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7496), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7496), + [anon_sym_NS_ENUM] = ACTIONS(7496), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7496), + [anon_sym_NS_OPTIONS] = ACTIONS(7496), + [anon_sym_typeof] = ACTIONS(7496), + [anon_sym___typeof] = ACTIONS(7496), + [anon_sym___typeof__] = ACTIONS(7496), + [sym_id] = ACTIONS(7496), + [sym_instancetype] = ACTIONS(7496), + [sym_Class] = ACTIONS(7496), + [sym_SEL] = ACTIONS(7496), + [sym_IMP] = ACTIONS(7496), + [sym_BOOL] = ACTIONS(7496), + [sym_auto] = ACTIONS(7496), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -503407,105 +501275,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3110] = { - [sym_string_literal] = STATE(3179), - [aux_sym_string_expression_repeat1] = STATE(3111), - [sym_identifier] = ACTIONS(6800), - [anon_sym_COMMA] = ACTIONS(6802), - [anon_sym_RPAREN] = ACTIONS(6802), - [anon_sym_LPAREN2] = ACTIONS(6802), - [anon_sym_DASH] = ACTIONS(6800), - [anon_sym_PLUS] = ACTIONS(6800), - [anon_sym_STAR] = ACTIONS(6802), - [anon_sym_SLASH] = ACTIONS(6800), - [anon_sym_PERCENT] = ACTIONS(6802), - [anon_sym_PIPE_PIPE] = ACTIONS(6802), - [anon_sym_AMP_AMP] = ACTIONS(6802), - [anon_sym_PIPE] = ACTIONS(6800), - [anon_sym_CARET] = ACTIONS(6802), - [anon_sym_AMP] = ACTIONS(6800), - [anon_sym_EQ_EQ] = ACTIONS(6802), - [anon_sym_BANG_EQ] = ACTIONS(6802), - [anon_sym_GT] = ACTIONS(6800), - [anon_sym_GT_EQ] = ACTIONS(6802), - [anon_sym_LT_EQ] = ACTIONS(6802), - [anon_sym_LT] = ACTIONS(6800), - [anon_sym_LT_LT] = ACTIONS(6802), - [anon_sym_GT_GT] = ACTIONS(6802), - [anon_sym_SEMI] = ACTIONS(6802), - [anon_sym___attribute] = ACTIONS(6800), - [anon_sym___attribute__] = ACTIONS(6800), - [anon_sym_RBRACE] = ACTIONS(6802), - [anon_sym_LBRACK] = ACTIONS(6802), - [anon_sym_RBRACK] = ACTIONS(6802), - [anon_sym_const] = ACTIONS(6800), - [anon_sym_volatile] = ACTIONS(6800), - [anon_sym_restrict] = ACTIONS(6800), - [anon_sym__Atomic] = ACTIONS(6800), - [anon_sym_in] = ACTIONS(6800), - [anon_sym_out] = ACTIONS(6800), - [anon_sym_inout] = ACTIONS(6800), - [anon_sym_bycopy] = ACTIONS(6800), - [anon_sym_byref] = ACTIONS(6800), - [anon_sym_oneway] = ACTIONS(6800), - [anon_sym__Nullable] = ACTIONS(6800), - [anon_sym__Nonnull] = ACTIONS(6800), - [anon_sym__Nullable_result] = ACTIONS(6800), - [anon_sym__Null_unspecified] = ACTIONS(6800), - [anon_sym___autoreleasing] = ACTIONS(6800), - [anon_sym___nullable] = ACTIONS(6800), - [anon_sym___nonnull] = ACTIONS(6800), - [anon_sym___strong] = ACTIONS(6800), - [anon_sym___weak] = ACTIONS(6800), - [anon_sym___bridge] = ACTIONS(6800), - [anon_sym___bridge_transfer] = ACTIONS(6800), - [anon_sym___bridge_retained] = ACTIONS(6800), - [anon_sym___unsafe_unretained] = ACTIONS(6800), - [anon_sym___block] = ACTIONS(6800), - [anon_sym___kindof] = ACTIONS(6800), - [anon_sym___unused] = ACTIONS(6800), - [anon_sym__Complex] = ACTIONS(6800), - [anon_sym___complex] = ACTIONS(6800), - [anon_sym_IBOutlet] = ACTIONS(6800), - [anon_sym_IBInspectable] = ACTIONS(6800), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6800), - [anon_sym_COLON] = ACTIONS(6802), - [anon_sym_QMARK] = ACTIONS(6802), - [anon_sym_DASH_DASH] = ACTIONS(6802), - [anon_sym_PLUS_PLUS] = ACTIONS(6802), - [anon_sym_DOT] = ACTIONS(6802), - [anon_sym_DASH_GT] = ACTIONS(6802), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), + [sym_identifier] = ACTIONS(7500), + [aux_sym_preproc_def_token1] = ACTIONS(7502), + [anon_sym_DASH] = ACTIONS(7502), + [anon_sym_PLUS] = ACTIONS(7502), + [anon_sym_typedef] = ACTIONS(7500), + [anon_sym_extern] = ACTIONS(7500), + [anon_sym___attribute] = ACTIONS(7500), + [anon_sym___attribute__] = ACTIONS(7500), + [anon_sym___declspec] = ACTIONS(7500), + [anon_sym_static] = ACTIONS(7500), + [anon_sym_auto] = ACTIONS(7500), + [anon_sym_register] = ACTIONS(7500), + [anon_sym_inline] = ACTIONS(7500), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7500), + [anon_sym_const] = ACTIONS(7500), + [anon_sym_volatile] = ACTIONS(7500), + [anon_sym_restrict] = ACTIONS(7500), + [anon_sym__Atomic] = ACTIONS(7500), + [anon_sym_in] = ACTIONS(7500), + [anon_sym_out] = ACTIONS(7500), + [anon_sym_inout] = ACTIONS(7500), + [anon_sym_bycopy] = ACTIONS(7500), + [anon_sym_byref] = ACTIONS(7500), + [anon_sym_oneway] = ACTIONS(7500), + [anon_sym__Nullable] = ACTIONS(7500), + [anon_sym__Nonnull] = ACTIONS(7500), + [anon_sym__Nullable_result] = ACTIONS(7500), + [anon_sym__Null_unspecified] = ACTIONS(7500), + [anon_sym___autoreleasing] = ACTIONS(7500), + [anon_sym___nullable] = ACTIONS(7500), + [anon_sym___nonnull] = ACTIONS(7500), + [anon_sym___strong] = ACTIONS(7500), + [anon_sym___weak] = ACTIONS(7500), + [anon_sym___bridge] = ACTIONS(7500), + [anon_sym___bridge_transfer] = ACTIONS(7500), + [anon_sym___bridge_retained] = ACTIONS(7500), + [anon_sym___unsafe_unretained] = ACTIONS(7500), + [anon_sym___block] = ACTIONS(7500), + [anon_sym___kindof] = ACTIONS(7500), + [anon_sym___unused] = ACTIONS(7500), + [anon_sym__Complex] = ACTIONS(7500), + [anon_sym___complex] = ACTIONS(7500), + [anon_sym_IBOutlet] = ACTIONS(7500), + [anon_sym_IBInspectable] = ACTIONS(7500), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7500), + [anon_sym_signed] = ACTIONS(7500), + [anon_sym_unsigned] = ACTIONS(7500), + [anon_sym_long] = ACTIONS(7500), + [anon_sym_short] = ACTIONS(7500), + [sym_primitive_type] = ACTIONS(7500), + [anon_sym_enum] = ACTIONS(7500), + [anon_sym_struct] = ACTIONS(7500), + [anon_sym_union] = ACTIONS(7500), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6800), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6800), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6800), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6800), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6800), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6800), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6800), - [anon_sym_NS_AVAILABLE] = ACTIONS(6800), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6800), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6800), - [anon_sym_API_AVAILABLE] = ACTIONS(6800), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6800), - [anon_sym_API_DEPRECATED] = ACTIONS(6800), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6800), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6800), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6800), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6800), - [anon_sym___deprecated_msg] = ACTIONS(6800), - [anon_sym___deprecated_enum_msg] = ACTIONS(6800), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6800), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6800), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6800), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6800), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6800), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6800), - [anon_sym_AT] = ACTIONS(7367), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7500), + [anon_sym_ATend] = ACTIONS(7502), + [sym_optional] = ACTIONS(7502), + [sym_required] = ACTIONS(7502), + [anon_sym_ATproperty] = ACTIONS(7502), + [sym_method_attribute_specifier] = ACTIONS(7500), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7500), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7500), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7500), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7500), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7500), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7500), + [anon_sym_NS_AVAILABLE] = ACTIONS(7500), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7500), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7500), + [anon_sym_API_AVAILABLE] = ACTIONS(7500), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7500), + [anon_sym_API_DEPRECATED] = ACTIONS(7500), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7500), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7500), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7500), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7500), + [anon_sym___deprecated_msg] = ACTIONS(7500), + [anon_sym___deprecated_enum_msg] = ACTIONS(7500), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7500), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7500), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7500), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7500), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7500), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7500), + [anon_sym_NS_ENUM] = ACTIONS(7500), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7500), + [anon_sym_NS_OPTIONS] = ACTIONS(7500), + [anon_sym_typeof] = ACTIONS(7500), + [anon_sym___typeof] = ACTIONS(7500), + [anon_sym___typeof__] = ACTIONS(7500), + [sym_id] = ACTIONS(7500), + [sym_instancetype] = ACTIONS(7500), + [sym_Class] = ACTIONS(7500), + [sym_SEL] = ACTIONS(7500), + [sym_IMP] = ACTIONS(7500), + [sym_BOOL] = ACTIONS(7500), + [sym_auto] = ACTIONS(7500), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -503514,105 +501380,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3111] = { - [sym_string_literal] = STATE(3179), - [aux_sym_string_expression_repeat1] = STATE(3112), - [sym_identifier] = ACTIONS(6794), - [anon_sym_COMMA] = ACTIONS(6796), - [anon_sym_RPAREN] = ACTIONS(6796), - [anon_sym_LPAREN2] = ACTIONS(6796), - [anon_sym_DASH] = ACTIONS(6794), - [anon_sym_PLUS] = ACTIONS(6794), - [anon_sym_STAR] = ACTIONS(6796), - [anon_sym_SLASH] = ACTIONS(6794), - [anon_sym_PERCENT] = ACTIONS(6796), - [anon_sym_PIPE_PIPE] = ACTIONS(6796), - [anon_sym_AMP_AMP] = ACTIONS(6796), - [anon_sym_PIPE] = ACTIONS(6794), - [anon_sym_CARET] = ACTIONS(6796), - [anon_sym_AMP] = ACTIONS(6794), - [anon_sym_EQ_EQ] = ACTIONS(6796), - [anon_sym_BANG_EQ] = ACTIONS(6796), - [anon_sym_GT] = ACTIONS(6794), - [anon_sym_GT_EQ] = ACTIONS(6796), - [anon_sym_LT_EQ] = ACTIONS(6796), - [anon_sym_LT] = ACTIONS(6794), - [anon_sym_LT_LT] = ACTIONS(6796), - [anon_sym_GT_GT] = ACTIONS(6796), - [anon_sym_SEMI] = ACTIONS(6796), - [anon_sym___attribute] = ACTIONS(6794), - [anon_sym___attribute__] = ACTIONS(6794), - [anon_sym_RBRACE] = ACTIONS(6796), - [anon_sym_LBRACK] = ACTIONS(6796), - [anon_sym_RBRACK] = ACTIONS(6796), - [anon_sym_const] = ACTIONS(6794), - [anon_sym_volatile] = ACTIONS(6794), - [anon_sym_restrict] = ACTIONS(6794), - [anon_sym__Atomic] = ACTIONS(6794), - [anon_sym_in] = ACTIONS(6794), - [anon_sym_out] = ACTIONS(6794), - [anon_sym_inout] = ACTIONS(6794), - [anon_sym_bycopy] = ACTIONS(6794), - [anon_sym_byref] = ACTIONS(6794), - [anon_sym_oneway] = ACTIONS(6794), - [anon_sym__Nullable] = ACTIONS(6794), - [anon_sym__Nonnull] = ACTIONS(6794), - [anon_sym__Nullable_result] = ACTIONS(6794), - [anon_sym__Null_unspecified] = ACTIONS(6794), - [anon_sym___autoreleasing] = ACTIONS(6794), - [anon_sym___nullable] = ACTIONS(6794), - [anon_sym___nonnull] = ACTIONS(6794), - [anon_sym___strong] = ACTIONS(6794), - [anon_sym___weak] = ACTIONS(6794), - [anon_sym___bridge] = ACTIONS(6794), - [anon_sym___bridge_transfer] = ACTIONS(6794), - [anon_sym___bridge_retained] = ACTIONS(6794), - [anon_sym___unsafe_unretained] = ACTIONS(6794), - [anon_sym___block] = ACTIONS(6794), - [anon_sym___kindof] = ACTIONS(6794), - [anon_sym___unused] = ACTIONS(6794), - [anon_sym__Complex] = ACTIONS(6794), - [anon_sym___complex] = ACTIONS(6794), - [anon_sym_IBOutlet] = ACTIONS(6794), - [anon_sym_IBInspectable] = ACTIONS(6794), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6794), - [anon_sym_COLON] = ACTIONS(6796), - [anon_sym_QMARK] = ACTIONS(6796), - [anon_sym_DASH_DASH] = ACTIONS(6796), - [anon_sym_PLUS_PLUS] = ACTIONS(6796), - [anon_sym_DOT] = ACTIONS(6796), - [anon_sym_DASH_GT] = ACTIONS(6796), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), + [sym_identifier] = ACTIONS(7504), + [aux_sym_preproc_def_token1] = ACTIONS(7506), + [anon_sym_DASH] = ACTIONS(7506), + [anon_sym_PLUS] = ACTIONS(7506), + [anon_sym_typedef] = ACTIONS(7504), + [anon_sym_extern] = ACTIONS(7504), + [anon_sym___attribute] = ACTIONS(7504), + [anon_sym___attribute__] = ACTIONS(7504), + [anon_sym___declspec] = ACTIONS(7504), + [anon_sym_static] = ACTIONS(7504), + [anon_sym_auto] = ACTIONS(7504), + [anon_sym_register] = ACTIONS(7504), + [anon_sym_inline] = ACTIONS(7504), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7504), + [anon_sym_const] = ACTIONS(7504), + [anon_sym_volatile] = ACTIONS(7504), + [anon_sym_restrict] = ACTIONS(7504), + [anon_sym__Atomic] = ACTIONS(7504), + [anon_sym_in] = ACTIONS(7504), + [anon_sym_out] = ACTIONS(7504), + [anon_sym_inout] = ACTIONS(7504), + [anon_sym_bycopy] = ACTIONS(7504), + [anon_sym_byref] = ACTIONS(7504), + [anon_sym_oneway] = ACTIONS(7504), + [anon_sym__Nullable] = ACTIONS(7504), + [anon_sym__Nonnull] = ACTIONS(7504), + [anon_sym__Nullable_result] = ACTIONS(7504), + [anon_sym__Null_unspecified] = ACTIONS(7504), + [anon_sym___autoreleasing] = ACTIONS(7504), + [anon_sym___nullable] = ACTIONS(7504), + [anon_sym___nonnull] = ACTIONS(7504), + [anon_sym___strong] = ACTIONS(7504), + [anon_sym___weak] = ACTIONS(7504), + [anon_sym___bridge] = ACTIONS(7504), + [anon_sym___bridge_transfer] = ACTIONS(7504), + [anon_sym___bridge_retained] = ACTIONS(7504), + [anon_sym___unsafe_unretained] = ACTIONS(7504), + [anon_sym___block] = ACTIONS(7504), + [anon_sym___kindof] = ACTIONS(7504), + [anon_sym___unused] = ACTIONS(7504), + [anon_sym__Complex] = ACTIONS(7504), + [anon_sym___complex] = ACTIONS(7504), + [anon_sym_IBOutlet] = ACTIONS(7504), + [anon_sym_IBInspectable] = ACTIONS(7504), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7504), + [anon_sym_signed] = ACTIONS(7504), + [anon_sym_unsigned] = ACTIONS(7504), + [anon_sym_long] = ACTIONS(7504), + [anon_sym_short] = ACTIONS(7504), + [sym_primitive_type] = ACTIONS(7504), + [anon_sym_enum] = ACTIONS(7504), + [anon_sym_struct] = ACTIONS(7504), + [anon_sym_union] = ACTIONS(7504), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6794), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6794), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6794), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6794), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6794), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6794), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6794), - [anon_sym_NS_AVAILABLE] = ACTIONS(6794), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6794), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6794), - [anon_sym_API_AVAILABLE] = ACTIONS(6794), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6794), - [anon_sym_API_DEPRECATED] = ACTIONS(6794), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6794), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6794), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6794), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6794), - [anon_sym___deprecated_msg] = ACTIONS(6794), - [anon_sym___deprecated_enum_msg] = ACTIONS(6794), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6794), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6794), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6794), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6794), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6794), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6794), - [anon_sym_AT] = ACTIONS(7367), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7504), + [anon_sym_ATend] = ACTIONS(7506), + [sym_optional] = ACTIONS(7506), + [sym_required] = ACTIONS(7506), + [anon_sym_ATproperty] = ACTIONS(7506), + [sym_method_attribute_specifier] = ACTIONS(7504), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7504), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7504), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7504), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7504), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7504), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7504), + [anon_sym_NS_AVAILABLE] = ACTIONS(7504), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7504), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7504), + [anon_sym_API_AVAILABLE] = ACTIONS(7504), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7504), + [anon_sym_API_DEPRECATED] = ACTIONS(7504), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7504), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7504), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7504), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7504), + [anon_sym___deprecated_msg] = ACTIONS(7504), + [anon_sym___deprecated_enum_msg] = ACTIONS(7504), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7504), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7504), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7504), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7504), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7504), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7504), + [anon_sym_NS_ENUM] = ACTIONS(7504), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7504), + [anon_sym_NS_OPTIONS] = ACTIONS(7504), + [anon_sym_typeof] = ACTIONS(7504), + [anon_sym___typeof] = ACTIONS(7504), + [anon_sym___typeof__] = ACTIONS(7504), + [sym_id] = ACTIONS(7504), + [sym_instancetype] = ACTIONS(7504), + [sym_Class] = ACTIONS(7504), + [sym_SEL] = ACTIONS(7504), + [sym_IMP] = ACTIONS(7504), + [sym_BOOL] = ACTIONS(7504), + [sym_auto] = ACTIONS(7504), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -503621,105 +501485,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3112] = { - [sym_string_literal] = STATE(3179), - [aux_sym_string_expression_repeat1] = STATE(3112), - [sym_identifier] = ACTIONS(6804), - [anon_sym_COMMA] = ACTIONS(6806), - [anon_sym_RPAREN] = ACTIONS(6806), - [anon_sym_LPAREN2] = ACTIONS(6806), - [anon_sym_DASH] = ACTIONS(6804), - [anon_sym_PLUS] = ACTIONS(6804), - [anon_sym_STAR] = ACTIONS(6806), - [anon_sym_SLASH] = ACTIONS(6804), - [anon_sym_PERCENT] = ACTIONS(6806), - [anon_sym_PIPE_PIPE] = ACTIONS(6806), - [anon_sym_AMP_AMP] = ACTIONS(6806), - [anon_sym_PIPE] = ACTIONS(6804), - [anon_sym_CARET] = ACTIONS(6806), - [anon_sym_AMP] = ACTIONS(6804), - [anon_sym_EQ_EQ] = ACTIONS(6806), - [anon_sym_BANG_EQ] = ACTIONS(6806), - [anon_sym_GT] = ACTIONS(6804), - [anon_sym_GT_EQ] = ACTIONS(6806), - [anon_sym_LT_EQ] = ACTIONS(6806), - [anon_sym_LT] = ACTIONS(6804), - [anon_sym_LT_LT] = ACTIONS(6806), - [anon_sym_GT_GT] = ACTIONS(6806), - [anon_sym_SEMI] = ACTIONS(6806), - [anon_sym___attribute] = ACTIONS(6804), - [anon_sym___attribute__] = ACTIONS(6804), - [anon_sym_RBRACE] = ACTIONS(6806), - [anon_sym_LBRACK] = ACTIONS(6806), - [anon_sym_RBRACK] = ACTIONS(6806), - [anon_sym_const] = ACTIONS(6804), - [anon_sym_volatile] = ACTIONS(6804), - [anon_sym_restrict] = ACTIONS(6804), - [anon_sym__Atomic] = ACTIONS(6804), - [anon_sym_in] = ACTIONS(6804), - [anon_sym_out] = ACTIONS(6804), - [anon_sym_inout] = ACTIONS(6804), - [anon_sym_bycopy] = ACTIONS(6804), - [anon_sym_byref] = ACTIONS(6804), - [anon_sym_oneway] = ACTIONS(6804), - [anon_sym__Nullable] = ACTIONS(6804), - [anon_sym__Nonnull] = ACTIONS(6804), - [anon_sym__Nullable_result] = ACTIONS(6804), - [anon_sym__Null_unspecified] = ACTIONS(6804), - [anon_sym___autoreleasing] = ACTIONS(6804), - [anon_sym___nullable] = ACTIONS(6804), - [anon_sym___nonnull] = ACTIONS(6804), - [anon_sym___strong] = ACTIONS(6804), - [anon_sym___weak] = ACTIONS(6804), - [anon_sym___bridge] = ACTIONS(6804), - [anon_sym___bridge_transfer] = ACTIONS(6804), - [anon_sym___bridge_retained] = ACTIONS(6804), - [anon_sym___unsafe_unretained] = ACTIONS(6804), - [anon_sym___block] = ACTIONS(6804), - [anon_sym___kindof] = ACTIONS(6804), - [anon_sym___unused] = ACTIONS(6804), - [anon_sym__Complex] = ACTIONS(6804), - [anon_sym___complex] = ACTIONS(6804), - [anon_sym_IBOutlet] = ACTIONS(6804), - [anon_sym_IBInspectable] = ACTIONS(6804), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6804), - [anon_sym_COLON] = ACTIONS(6806), - [anon_sym_QMARK] = ACTIONS(6806), - [anon_sym_DASH_DASH] = ACTIONS(6806), - [anon_sym_PLUS_PLUS] = ACTIONS(6806), - [anon_sym_DOT] = ACTIONS(6806), - [anon_sym_DASH_GT] = ACTIONS(6806), - [anon_sym_L_DQUOTE] = ACTIONS(7369), - [anon_sym_u_DQUOTE] = ACTIONS(7369), - [anon_sym_U_DQUOTE] = ACTIONS(7369), - [anon_sym_u8_DQUOTE] = ACTIONS(7369), - [anon_sym_DQUOTE] = ACTIONS(7369), + [sym_identifier] = ACTIONS(7508), + [aux_sym_preproc_def_token1] = ACTIONS(7510), + [anon_sym_DASH] = ACTIONS(7510), + [anon_sym_PLUS] = ACTIONS(7510), + [anon_sym_typedef] = ACTIONS(7508), + [anon_sym_extern] = ACTIONS(7508), + [anon_sym___attribute] = ACTIONS(7508), + [anon_sym___attribute__] = ACTIONS(7508), + [anon_sym___declspec] = ACTIONS(7508), + [anon_sym_static] = ACTIONS(7508), + [anon_sym_auto] = ACTIONS(7508), + [anon_sym_register] = ACTIONS(7508), + [anon_sym_inline] = ACTIONS(7508), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7508), + [anon_sym_const] = ACTIONS(7508), + [anon_sym_volatile] = ACTIONS(7508), + [anon_sym_restrict] = ACTIONS(7508), + [anon_sym__Atomic] = ACTIONS(7508), + [anon_sym_in] = ACTIONS(7508), + [anon_sym_out] = ACTIONS(7508), + [anon_sym_inout] = ACTIONS(7508), + [anon_sym_bycopy] = ACTIONS(7508), + [anon_sym_byref] = ACTIONS(7508), + [anon_sym_oneway] = ACTIONS(7508), + [anon_sym__Nullable] = ACTIONS(7508), + [anon_sym__Nonnull] = ACTIONS(7508), + [anon_sym__Nullable_result] = ACTIONS(7508), + [anon_sym__Null_unspecified] = ACTIONS(7508), + [anon_sym___autoreleasing] = ACTIONS(7508), + [anon_sym___nullable] = ACTIONS(7508), + [anon_sym___nonnull] = ACTIONS(7508), + [anon_sym___strong] = ACTIONS(7508), + [anon_sym___weak] = ACTIONS(7508), + [anon_sym___bridge] = ACTIONS(7508), + [anon_sym___bridge_transfer] = ACTIONS(7508), + [anon_sym___bridge_retained] = ACTIONS(7508), + [anon_sym___unsafe_unretained] = ACTIONS(7508), + [anon_sym___block] = ACTIONS(7508), + [anon_sym___kindof] = ACTIONS(7508), + [anon_sym___unused] = ACTIONS(7508), + [anon_sym__Complex] = ACTIONS(7508), + [anon_sym___complex] = ACTIONS(7508), + [anon_sym_IBOutlet] = ACTIONS(7508), + [anon_sym_IBInspectable] = ACTIONS(7508), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7508), + [anon_sym_signed] = ACTIONS(7508), + [anon_sym_unsigned] = ACTIONS(7508), + [anon_sym_long] = ACTIONS(7508), + [anon_sym_short] = ACTIONS(7508), + [sym_primitive_type] = ACTIONS(7508), + [anon_sym_enum] = ACTIONS(7508), + [anon_sym_struct] = ACTIONS(7508), + [anon_sym_union] = ACTIONS(7508), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6804), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6804), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6804), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6804), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6804), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6804), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6804), - [anon_sym_NS_AVAILABLE] = ACTIONS(6804), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6804), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6804), - [anon_sym_API_AVAILABLE] = ACTIONS(6804), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6804), - [anon_sym_API_DEPRECATED] = ACTIONS(6804), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6804), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6804), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6804), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6804), - [anon_sym___deprecated_msg] = ACTIONS(6804), - [anon_sym___deprecated_enum_msg] = ACTIONS(6804), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6804), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6804), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6804), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6804), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6804), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6804), - [anon_sym_AT] = ACTIONS(7372), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7508), + [anon_sym_ATend] = ACTIONS(7510), + [sym_optional] = ACTIONS(7510), + [sym_required] = ACTIONS(7510), + [anon_sym_ATproperty] = ACTIONS(7510), + [sym_method_attribute_specifier] = ACTIONS(7508), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7508), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7508), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7508), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7508), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7508), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7508), + [anon_sym_NS_AVAILABLE] = ACTIONS(7508), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7508), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7508), + [anon_sym_API_AVAILABLE] = ACTIONS(7508), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7508), + [anon_sym_API_DEPRECATED] = ACTIONS(7508), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7508), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7508), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7508), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7508), + [anon_sym___deprecated_msg] = ACTIONS(7508), + [anon_sym___deprecated_enum_msg] = ACTIONS(7508), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7508), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7508), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7508), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7508), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7508), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7508), + [anon_sym_NS_ENUM] = ACTIONS(7508), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7508), + [anon_sym_NS_OPTIONS] = ACTIONS(7508), + [anon_sym_typeof] = ACTIONS(7508), + [anon_sym___typeof] = ACTIONS(7508), + [anon_sym___typeof__] = ACTIONS(7508), + [sym_id] = ACTIONS(7508), + [sym_instancetype] = ACTIONS(7508), + [sym_Class] = ACTIONS(7508), + [sym_SEL] = ACTIONS(7508), + [sym_IMP] = ACTIONS(7508), + [sym_BOOL] = ACTIONS(7508), + [sym_auto] = ACTIONS(7508), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -503728,104 +501590,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3113] = { - [sym_string_literal] = STATE(3113), - [aux_sym_concatenated_string_repeat1] = STATE(3113), - [sym_identifier] = ACTIONS(6824), - [anon_sym_COMMA] = ACTIONS(6826), - [anon_sym_RPAREN] = ACTIONS(6826), - [anon_sym_LPAREN2] = ACTIONS(6826), - [anon_sym_DASH] = ACTIONS(6824), - [anon_sym_PLUS] = ACTIONS(6824), - [anon_sym_STAR] = ACTIONS(6826), - [anon_sym_SLASH] = ACTIONS(6824), - [anon_sym_PERCENT] = ACTIONS(6826), - [anon_sym_PIPE_PIPE] = ACTIONS(6826), - [anon_sym_AMP_AMP] = ACTIONS(6826), - [anon_sym_PIPE] = ACTIONS(6824), - [anon_sym_CARET] = ACTIONS(6826), - [anon_sym_AMP] = ACTIONS(6824), - [anon_sym_EQ_EQ] = ACTIONS(6826), - [anon_sym_BANG_EQ] = ACTIONS(6826), - [anon_sym_GT] = ACTIONS(6824), - [anon_sym_GT_EQ] = ACTIONS(6826), - [anon_sym_LT_EQ] = ACTIONS(6826), - [anon_sym_LT] = ACTIONS(6824), - [anon_sym_LT_LT] = ACTIONS(6826), - [anon_sym_GT_GT] = ACTIONS(6826), - [anon_sym_SEMI] = ACTIONS(6826), - [anon_sym___attribute] = ACTIONS(6824), - [anon_sym___attribute__] = ACTIONS(6824), - [anon_sym_RBRACE] = ACTIONS(6826), - [anon_sym_LBRACK] = ACTIONS(6826), - [anon_sym_RBRACK] = ACTIONS(6826), - [anon_sym_const] = ACTIONS(6824), - [anon_sym_volatile] = ACTIONS(6824), - [anon_sym_restrict] = ACTIONS(6824), - [anon_sym__Atomic] = ACTIONS(6824), - [anon_sym_in] = ACTIONS(6824), - [anon_sym_out] = ACTIONS(6824), - [anon_sym_inout] = ACTIONS(6824), - [anon_sym_bycopy] = ACTIONS(6824), - [anon_sym_byref] = ACTIONS(6824), - [anon_sym_oneway] = ACTIONS(6824), - [anon_sym__Nullable] = ACTIONS(6824), - [anon_sym__Nonnull] = ACTIONS(6824), - [anon_sym__Nullable_result] = ACTIONS(6824), - [anon_sym__Null_unspecified] = ACTIONS(6824), - [anon_sym___autoreleasing] = ACTIONS(6824), - [anon_sym___nullable] = ACTIONS(6824), - [anon_sym___nonnull] = ACTIONS(6824), - [anon_sym___strong] = ACTIONS(6824), - [anon_sym___weak] = ACTIONS(6824), - [anon_sym___bridge] = ACTIONS(6824), - [anon_sym___bridge_transfer] = ACTIONS(6824), - [anon_sym___bridge_retained] = ACTIONS(6824), - [anon_sym___unsafe_unretained] = ACTIONS(6824), - [anon_sym___block] = ACTIONS(6824), - [anon_sym___kindof] = ACTIONS(6824), - [anon_sym___unused] = ACTIONS(6824), - [anon_sym__Complex] = ACTIONS(6824), - [anon_sym___complex] = ACTIONS(6824), - [anon_sym_IBOutlet] = ACTIONS(6824), - [anon_sym_IBInspectable] = ACTIONS(6824), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6824), - [anon_sym_COLON] = ACTIONS(6826), - [anon_sym_QMARK] = ACTIONS(6826), - [anon_sym_DASH_DASH] = ACTIONS(6826), - [anon_sym_PLUS_PLUS] = ACTIONS(6826), - [anon_sym_DOT] = ACTIONS(6826), - [anon_sym_DASH_GT] = ACTIONS(6826), - [anon_sym_L_DQUOTE] = ACTIONS(7375), - [anon_sym_u_DQUOTE] = ACTIONS(7375), - [anon_sym_U_DQUOTE] = ACTIONS(7375), - [anon_sym_u8_DQUOTE] = ACTIONS(7375), - [anon_sym_DQUOTE] = ACTIONS(7375), + [sym_identifier] = ACTIONS(7512), + [aux_sym_preproc_def_token1] = ACTIONS(7514), + [anon_sym_DASH] = ACTIONS(7514), + [anon_sym_PLUS] = ACTIONS(7514), + [anon_sym_typedef] = ACTIONS(7512), + [anon_sym_extern] = ACTIONS(7512), + [anon_sym___attribute] = ACTIONS(7512), + [anon_sym___attribute__] = ACTIONS(7512), + [anon_sym___declspec] = ACTIONS(7512), + [anon_sym_static] = ACTIONS(7512), + [anon_sym_auto] = ACTIONS(7512), + [anon_sym_register] = ACTIONS(7512), + [anon_sym_inline] = ACTIONS(7512), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7512), + [anon_sym_const] = ACTIONS(7512), + [anon_sym_volatile] = ACTIONS(7512), + [anon_sym_restrict] = ACTIONS(7512), + [anon_sym__Atomic] = ACTIONS(7512), + [anon_sym_in] = ACTIONS(7512), + [anon_sym_out] = ACTIONS(7512), + [anon_sym_inout] = ACTIONS(7512), + [anon_sym_bycopy] = ACTIONS(7512), + [anon_sym_byref] = ACTIONS(7512), + [anon_sym_oneway] = ACTIONS(7512), + [anon_sym__Nullable] = ACTIONS(7512), + [anon_sym__Nonnull] = ACTIONS(7512), + [anon_sym__Nullable_result] = ACTIONS(7512), + [anon_sym__Null_unspecified] = ACTIONS(7512), + [anon_sym___autoreleasing] = ACTIONS(7512), + [anon_sym___nullable] = ACTIONS(7512), + [anon_sym___nonnull] = ACTIONS(7512), + [anon_sym___strong] = ACTIONS(7512), + [anon_sym___weak] = ACTIONS(7512), + [anon_sym___bridge] = ACTIONS(7512), + [anon_sym___bridge_transfer] = ACTIONS(7512), + [anon_sym___bridge_retained] = ACTIONS(7512), + [anon_sym___unsafe_unretained] = ACTIONS(7512), + [anon_sym___block] = ACTIONS(7512), + [anon_sym___kindof] = ACTIONS(7512), + [anon_sym___unused] = ACTIONS(7512), + [anon_sym__Complex] = ACTIONS(7512), + [anon_sym___complex] = ACTIONS(7512), + [anon_sym_IBOutlet] = ACTIONS(7512), + [anon_sym_IBInspectable] = ACTIONS(7512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7512), + [anon_sym_signed] = ACTIONS(7512), + [anon_sym_unsigned] = ACTIONS(7512), + [anon_sym_long] = ACTIONS(7512), + [anon_sym_short] = ACTIONS(7512), + [sym_primitive_type] = ACTIONS(7512), + [anon_sym_enum] = ACTIONS(7512), + [anon_sym_struct] = ACTIONS(7512), + [anon_sym_union] = ACTIONS(7512), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6824), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6824), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6824), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6824), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6824), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6824), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6824), - [anon_sym_NS_AVAILABLE] = ACTIONS(6824), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6824), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6824), - [anon_sym_API_AVAILABLE] = ACTIONS(6824), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6824), - [anon_sym_API_DEPRECATED] = ACTIONS(6824), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6824), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6824), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6824), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6824), - [anon_sym___deprecated_msg] = ACTIONS(6824), - [anon_sym___deprecated_enum_msg] = ACTIONS(6824), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6824), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6824), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6824), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6824), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6824), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6824), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7512), + [anon_sym_ATend] = ACTIONS(7514), + [sym_optional] = ACTIONS(7514), + [sym_required] = ACTIONS(7514), + [anon_sym_ATproperty] = ACTIONS(7514), + [sym_method_attribute_specifier] = ACTIONS(7512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7512), + [anon_sym_NS_AVAILABLE] = ACTIONS(7512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7512), + [anon_sym_API_AVAILABLE] = ACTIONS(7512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7512), + [anon_sym_API_DEPRECATED] = ACTIONS(7512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7512), + [anon_sym___deprecated_msg] = ACTIONS(7512), + [anon_sym___deprecated_enum_msg] = ACTIONS(7512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7512), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7512), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7512), + [anon_sym_NS_ENUM] = ACTIONS(7512), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7512), + [anon_sym_NS_OPTIONS] = ACTIONS(7512), + [anon_sym_typeof] = ACTIONS(7512), + [anon_sym___typeof] = ACTIONS(7512), + [anon_sym___typeof__] = ACTIONS(7512), + [sym_id] = ACTIONS(7512), + [sym_instancetype] = ACTIONS(7512), + [sym_Class] = ACTIONS(7512), + [sym_SEL] = ACTIONS(7512), + [sym_IMP] = ACTIONS(7512), + [sym_BOOL] = ACTIONS(7512), + [sym_auto] = ACTIONS(7512), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -503834,104 +501695,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3114] = { - [sym_string_literal] = STATE(3113), - [aux_sym_concatenated_string_repeat1] = STATE(3113), - [sym_identifier] = ACTIONS(6831), - [anon_sym_COMMA] = ACTIONS(6833), - [anon_sym_RPAREN] = ACTIONS(6833), - [anon_sym_LPAREN2] = ACTIONS(6833), - [anon_sym_DASH] = ACTIONS(6831), - [anon_sym_PLUS] = ACTIONS(6831), - [anon_sym_STAR] = ACTIONS(6833), - [anon_sym_SLASH] = ACTIONS(6831), - [anon_sym_PERCENT] = ACTIONS(6833), - [anon_sym_PIPE_PIPE] = ACTIONS(6833), - [anon_sym_AMP_AMP] = ACTIONS(6833), - [anon_sym_PIPE] = ACTIONS(6831), - [anon_sym_CARET] = ACTIONS(6833), - [anon_sym_AMP] = ACTIONS(6831), - [anon_sym_EQ_EQ] = ACTIONS(6833), - [anon_sym_BANG_EQ] = ACTIONS(6833), - [anon_sym_GT] = ACTIONS(6831), - [anon_sym_GT_EQ] = ACTIONS(6833), - [anon_sym_LT_EQ] = ACTIONS(6833), - [anon_sym_LT] = ACTIONS(6831), - [anon_sym_LT_LT] = ACTIONS(6833), - [anon_sym_GT_GT] = ACTIONS(6833), - [anon_sym_SEMI] = ACTIONS(6833), - [anon_sym___attribute] = ACTIONS(6831), - [anon_sym___attribute__] = ACTIONS(6831), - [anon_sym_RBRACE] = ACTIONS(6833), - [anon_sym_LBRACK] = ACTIONS(6833), - [anon_sym_RBRACK] = ACTIONS(6833), - [anon_sym_const] = ACTIONS(6831), - [anon_sym_volatile] = ACTIONS(6831), - [anon_sym_restrict] = ACTIONS(6831), - [anon_sym__Atomic] = ACTIONS(6831), - [anon_sym_in] = ACTIONS(6831), - [anon_sym_out] = ACTIONS(6831), - [anon_sym_inout] = ACTIONS(6831), - [anon_sym_bycopy] = ACTIONS(6831), - [anon_sym_byref] = ACTIONS(6831), - [anon_sym_oneway] = ACTIONS(6831), - [anon_sym__Nullable] = ACTIONS(6831), - [anon_sym__Nonnull] = ACTIONS(6831), - [anon_sym__Nullable_result] = ACTIONS(6831), - [anon_sym__Null_unspecified] = ACTIONS(6831), - [anon_sym___autoreleasing] = ACTIONS(6831), - [anon_sym___nullable] = ACTIONS(6831), - [anon_sym___nonnull] = ACTIONS(6831), - [anon_sym___strong] = ACTIONS(6831), - [anon_sym___weak] = ACTIONS(6831), - [anon_sym___bridge] = ACTIONS(6831), - [anon_sym___bridge_transfer] = ACTIONS(6831), - [anon_sym___bridge_retained] = ACTIONS(6831), - [anon_sym___unsafe_unretained] = ACTIONS(6831), - [anon_sym___block] = ACTIONS(6831), - [anon_sym___kindof] = ACTIONS(6831), - [anon_sym___unused] = ACTIONS(6831), - [anon_sym__Complex] = ACTIONS(6831), - [anon_sym___complex] = ACTIONS(6831), - [anon_sym_IBOutlet] = ACTIONS(6831), - [anon_sym_IBInspectable] = ACTIONS(6831), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6831), - [anon_sym_COLON] = ACTIONS(6833), - [anon_sym_QMARK] = ACTIONS(6833), - [anon_sym_DASH_DASH] = ACTIONS(6833), - [anon_sym_PLUS_PLUS] = ACTIONS(6833), - [anon_sym_DOT] = ACTIONS(6833), - [anon_sym_DASH_GT] = ACTIONS(6833), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), + [sym_identifier] = ACTIONS(7516), + [aux_sym_preproc_def_token1] = ACTIONS(7518), + [anon_sym_DASH] = ACTIONS(7518), + [anon_sym_PLUS] = ACTIONS(7518), + [anon_sym_typedef] = ACTIONS(7516), + [anon_sym_extern] = ACTIONS(7516), + [anon_sym___attribute] = ACTIONS(7516), + [anon_sym___attribute__] = ACTIONS(7516), + [anon_sym___declspec] = ACTIONS(7516), + [anon_sym_static] = ACTIONS(7516), + [anon_sym_auto] = ACTIONS(7516), + [anon_sym_register] = ACTIONS(7516), + [anon_sym_inline] = ACTIONS(7516), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7516), + [anon_sym_const] = ACTIONS(7516), + [anon_sym_volatile] = ACTIONS(7516), + [anon_sym_restrict] = ACTIONS(7516), + [anon_sym__Atomic] = ACTIONS(7516), + [anon_sym_in] = ACTIONS(7516), + [anon_sym_out] = ACTIONS(7516), + [anon_sym_inout] = ACTIONS(7516), + [anon_sym_bycopy] = ACTIONS(7516), + [anon_sym_byref] = ACTIONS(7516), + [anon_sym_oneway] = ACTIONS(7516), + [anon_sym__Nullable] = ACTIONS(7516), + [anon_sym__Nonnull] = ACTIONS(7516), + [anon_sym__Nullable_result] = ACTIONS(7516), + [anon_sym__Null_unspecified] = ACTIONS(7516), + [anon_sym___autoreleasing] = ACTIONS(7516), + [anon_sym___nullable] = ACTIONS(7516), + [anon_sym___nonnull] = ACTIONS(7516), + [anon_sym___strong] = ACTIONS(7516), + [anon_sym___weak] = ACTIONS(7516), + [anon_sym___bridge] = ACTIONS(7516), + [anon_sym___bridge_transfer] = ACTIONS(7516), + [anon_sym___bridge_retained] = ACTIONS(7516), + [anon_sym___unsafe_unretained] = ACTIONS(7516), + [anon_sym___block] = ACTIONS(7516), + [anon_sym___kindof] = ACTIONS(7516), + [anon_sym___unused] = ACTIONS(7516), + [anon_sym__Complex] = ACTIONS(7516), + [anon_sym___complex] = ACTIONS(7516), + [anon_sym_IBOutlet] = ACTIONS(7516), + [anon_sym_IBInspectable] = ACTIONS(7516), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7516), + [anon_sym_signed] = ACTIONS(7516), + [anon_sym_unsigned] = ACTIONS(7516), + [anon_sym_long] = ACTIONS(7516), + [anon_sym_short] = ACTIONS(7516), + [sym_primitive_type] = ACTIONS(7516), + [anon_sym_enum] = ACTIONS(7516), + [anon_sym_struct] = ACTIONS(7516), + [anon_sym_union] = ACTIONS(7516), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6831), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6831), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6831), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6831), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6831), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6831), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6831), - [anon_sym_NS_AVAILABLE] = ACTIONS(6831), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6831), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6831), - [anon_sym_API_AVAILABLE] = ACTIONS(6831), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6831), - [anon_sym_API_DEPRECATED] = ACTIONS(6831), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6831), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6831), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6831), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6831), - [anon_sym___deprecated_msg] = ACTIONS(6831), - [anon_sym___deprecated_enum_msg] = ACTIONS(6831), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6831), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6831), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6831), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6831), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6831), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6831), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7516), + [anon_sym_ATend] = ACTIONS(7518), + [sym_optional] = ACTIONS(7518), + [sym_required] = ACTIONS(7518), + [anon_sym_ATproperty] = ACTIONS(7518), + [sym_method_attribute_specifier] = ACTIONS(7516), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7516), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7516), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7516), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7516), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7516), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7516), + [anon_sym_NS_AVAILABLE] = ACTIONS(7516), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7516), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7516), + [anon_sym_API_AVAILABLE] = ACTIONS(7516), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7516), + [anon_sym_API_DEPRECATED] = ACTIONS(7516), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7516), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7516), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7516), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7516), + [anon_sym___deprecated_msg] = ACTIONS(7516), + [anon_sym___deprecated_enum_msg] = ACTIONS(7516), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7516), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7516), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7516), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7516), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7516), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7516), + [anon_sym_NS_ENUM] = ACTIONS(7516), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7516), + [anon_sym_NS_OPTIONS] = ACTIONS(7516), + [anon_sym_typeof] = ACTIONS(7516), + [anon_sym___typeof] = ACTIONS(7516), + [anon_sym___typeof__] = ACTIONS(7516), + [sym_id] = ACTIONS(7516), + [sym_instancetype] = ACTIONS(7516), + [sym_Class] = ACTIONS(7516), + [sym_SEL] = ACTIONS(7516), + [sym_IMP] = ACTIONS(7516), + [sym_BOOL] = ACTIONS(7516), + [sym_auto] = ACTIONS(7516), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -503940,104 +501800,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3115] = { - [sym_string_literal] = STATE(3114), - [aux_sym_concatenated_string_repeat1] = STATE(3114), - [sym_identifier] = ACTIONS(6820), - [anon_sym_COMMA] = ACTIONS(6822), - [anon_sym_RPAREN] = ACTIONS(6822), - [anon_sym_LPAREN2] = ACTIONS(6822), - [anon_sym_DASH] = ACTIONS(6820), - [anon_sym_PLUS] = ACTIONS(6820), - [anon_sym_STAR] = ACTIONS(6822), - [anon_sym_SLASH] = ACTIONS(6820), - [anon_sym_PERCENT] = ACTIONS(6822), - [anon_sym_PIPE_PIPE] = ACTIONS(6822), - [anon_sym_AMP_AMP] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6822), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_EQ_EQ] = ACTIONS(6822), - [anon_sym_BANG_EQ] = ACTIONS(6822), - [anon_sym_GT] = ACTIONS(6820), - [anon_sym_GT_EQ] = ACTIONS(6822), - [anon_sym_LT_EQ] = ACTIONS(6822), - [anon_sym_LT] = ACTIONS(6820), - [anon_sym_LT_LT] = ACTIONS(6822), - [anon_sym_GT_GT] = ACTIONS(6822), - [anon_sym_SEMI] = ACTIONS(6822), - [anon_sym___attribute] = ACTIONS(6820), - [anon_sym___attribute__] = ACTIONS(6820), - [anon_sym_RBRACE] = ACTIONS(6822), - [anon_sym_LBRACK] = ACTIONS(6822), - [anon_sym_RBRACK] = ACTIONS(6822), - [anon_sym_const] = ACTIONS(6820), - [anon_sym_volatile] = ACTIONS(6820), - [anon_sym_restrict] = ACTIONS(6820), - [anon_sym__Atomic] = ACTIONS(6820), - [anon_sym_in] = ACTIONS(6820), - [anon_sym_out] = ACTIONS(6820), - [anon_sym_inout] = ACTIONS(6820), - [anon_sym_bycopy] = ACTIONS(6820), - [anon_sym_byref] = ACTIONS(6820), - [anon_sym_oneway] = ACTIONS(6820), - [anon_sym__Nullable] = ACTIONS(6820), - [anon_sym__Nonnull] = ACTIONS(6820), - [anon_sym__Nullable_result] = ACTIONS(6820), - [anon_sym__Null_unspecified] = ACTIONS(6820), - [anon_sym___autoreleasing] = ACTIONS(6820), - [anon_sym___nullable] = ACTIONS(6820), - [anon_sym___nonnull] = ACTIONS(6820), - [anon_sym___strong] = ACTIONS(6820), - [anon_sym___weak] = ACTIONS(6820), - [anon_sym___bridge] = ACTIONS(6820), - [anon_sym___bridge_transfer] = ACTIONS(6820), - [anon_sym___bridge_retained] = ACTIONS(6820), - [anon_sym___unsafe_unretained] = ACTIONS(6820), - [anon_sym___block] = ACTIONS(6820), - [anon_sym___kindof] = ACTIONS(6820), - [anon_sym___unused] = ACTIONS(6820), - [anon_sym__Complex] = ACTIONS(6820), - [anon_sym___complex] = ACTIONS(6820), - [anon_sym_IBOutlet] = ACTIONS(6820), - [anon_sym_IBInspectable] = ACTIONS(6820), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6820), - [anon_sym_COLON] = ACTIONS(6822), - [anon_sym_QMARK] = ACTIONS(6822), - [anon_sym_DASH_DASH] = ACTIONS(6822), - [anon_sym_PLUS_PLUS] = ACTIONS(6822), - [anon_sym_DOT] = ACTIONS(6822), - [anon_sym_DASH_GT] = ACTIONS(6822), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), + [sym_identifier] = ACTIONS(7520), + [aux_sym_preproc_def_token1] = ACTIONS(7522), + [anon_sym_DASH] = ACTIONS(7522), + [anon_sym_PLUS] = ACTIONS(7522), + [anon_sym_typedef] = ACTIONS(7520), + [anon_sym_extern] = ACTIONS(7520), + [anon_sym___attribute] = ACTIONS(7520), + [anon_sym___attribute__] = ACTIONS(7520), + [anon_sym___declspec] = ACTIONS(7520), + [anon_sym_static] = ACTIONS(7520), + [anon_sym_auto] = ACTIONS(7520), + [anon_sym_register] = ACTIONS(7520), + [anon_sym_inline] = ACTIONS(7520), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7520), + [anon_sym_const] = ACTIONS(7520), + [anon_sym_volatile] = ACTIONS(7520), + [anon_sym_restrict] = ACTIONS(7520), + [anon_sym__Atomic] = ACTIONS(7520), + [anon_sym_in] = ACTIONS(7520), + [anon_sym_out] = ACTIONS(7520), + [anon_sym_inout] = ACTIONS(7520), + [anon_sym_bycopy] = ACTIONS(7520), + [anon_sym_byref] = ACTIONS(7520), + [anon_sym_oneway] = ACTIONS(7520), + [anon_sym__Nullable] = ACTIONS(7520), + [anon_sym__Nonnull] = ACTIONS(7520), + [anon_sym__Nullable_result] = ACTIONS(7520), + [anon_sym__Null_unspecified] = ACTIONS(7520), + [anon_sym___autoreleasing] = ACTIONS(7520), + [anon_sym___nullable] = ACTIONS(7520), + [anon_sym___nonnull] = ACTIONS(7520), + [anon_sym___strong] = ACTIONS(7520), + [anon_sym___weak] = ACTIONS(7520), + [anon_sym___bridge] = ACTIONS(7520), + [anon_sym___bridge_transfer] = ACTIONS(7520), + [anon_sym___bridge_retained] = ACTIONS(7520), + [anon_sym___unsafe_unretained] = ACTIONS(7520), + [anon_sym___block] = ACTIONS(7520), + [anon_sym___kindof] = ACTIONS(7520), + [anon_sym___unused] = ACTIONS(7520), + [anon_sym__Complex] = ACTIONS(7520), + [anon_sym___complex] = ACTIONS(7520), + [anon_sym_IBOutlet] = ACTIONS(7520), + [anon_sym_IBInspectable] = ACTIONS(7520), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7520), + [anon_sym_signed] = ACTIONS(7520), + [anon_sym_unsigned] = ACTIONS(7520), + [anon_sym_long] = ACTIONS(7520), + [anon_sym_short] = ACTIONS(7520), + [sym_primitive_type] = ACTIONS(7520), + [anon_sym_enum] = ACTIONS(7520), + [anon_sym_struct] = ACTIONS(7520), + [anon_sym_union] = ACTIONS(7520), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6820), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6820), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6820), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6820), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6820), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6820), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6820), - [anon_sym_NS_AVAILABLE] = ACTIONS(6820), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6820), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_API_AVAILABLE] = ACTIONS(6820), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6820), - [anon_sym_API_DEPRECATED] = ACTIONS(6820), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6820), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6820), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6820), - [anon_sym___deprecated_msg] = ACTIONS(6820), - [anon_sym___deprecated_enum_msg] = ACTIONS(6820), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6820), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6820), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6820), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6820), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7520), + [anon_sym_ATend] = ACTIONS(7522), + [sym_optional] = ACTIONS(7522), + [sym_required] = ACTIONS(7522), + [anon_sym_ATproperty] = ACTIONS(7522), + [sym_method_attribute_specifier] = ACTIONS(7520), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7520), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7520), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7520), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7520), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7520), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7520), + [anon_sym_NS_AVAILABLE] = ACTIONS(7520), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7520), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7520), + [anon_sym_API_AVAILABLE] = ACTIONS(7520), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7520), + [anon_sym_API_DEPRECATED] = ACTIONS(7520), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7520), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7520), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7520), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7520), + [anon_sym___deprecated_msg] = ACTIONS(7520), + [anon_sym___deprecated_enum_msg] = ACTIONS(7520), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7520), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7520), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7520), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7520), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7520), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7520), + [anon_sym_NS_ENUM] = ACTIONS(7520), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7520), + [anon_sym_NS_OPTIONS] = ACTIONS(7520), + [anon_sym_typeof] = ACTIONS(7520), + [anon_sym___typeof] = ACTIONS(7520), + [anon_sym___typeof__] = ACTIONS(7520), + [sym_id] = ACTIONS(7520), + [sym_instancetype] = ACTIONS(7520), + [sym_Class] = ACTIONS(7520), + [sym_SEL] = ACTIONS(7520), + [sym_IMP] = ACTIONS(7520), + [sym_BOOL] = ACTIONS(7520), + [sym_auto] = ACTIONS(7520), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -504046,103 +501905,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3116] = { - [sym_identifier] = ACTIONS(7378), - [aux_sym_preproc_def_token1] = ACTIONS(7380), - [anon_sym_DASH] = ACTIONS(7380), - [anon_sym_PLUS] = ACTIONS(7380), - [anon_sym_typedef] = ACTIONS(7378), - [anon_sym_extern] = ACTIONS(7378), - [anon_sym___attribute] = ACTIONS(7378), - [anon_sym___attribute__] = ACTIONS(7378), - [anon_sym___declspec] = ACTIONS(7378), - [anon_sym_static] = ACTIONS(7378), - [anon_sym_auto] = ACTIONS(7378), - [anon_sym_register] = ACTIONS(7378), - [anon_sym_inline] = ACTIONS(7378), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7378), - [anon_sym_const] = ACTIONS(7378), - [anon_sym_volatile] = ACTIONS(7378), - [anon_sym_restrict] = ACTIONS(7378), - [anon_sym__Atomic] = ACTIONS(7378), - [anon_sym_in] = ACTIONS(7378), - [anon_sym_out] = ACTIONS(7378), - [anon_sym_inout] = ACTIONS(7378), - [anon_sym_bycopy] = ACTIONS(7378), - [anon_sym_byref] = ACTIONS(7378), - [anon_sym_oneway] = ACTIONS(7378), - [anon_sym__Nullable] = ACTIONS(7378), - [anon_sym__Nonnull] = ACTIONS(7378), - [anon_sym__Nullable_result] = ACTIONS(7378), - [anon_sym__Null_unspecified] = ACTIONS(7378), - [anon_sym___autoreleasing] = ACTIONS(7378), - [anon_sym___nullable] = ACTIONS(7378), - [anon_sym___nonnull] = ACTIONS(7378), - [anon_sym___strong] = ACTIONS(7378), - [anon_sym___weak] = ACTIONS(7378), - [anon_sym___bridge] = ACTIONS(7378), - [anon_sym___bridge_transfer] = ACTIONS(7378), - [anon_sym___bridge_retained] = ACTIONS(7378), - [anon_sym___unsafe_unretained] = ACTIONS(7378), - [anon_sym___block] = ACTIONS(7378), - [anon_sym___kindof] = ACTIONS(7378), - [anon_sym___unused] = ACTIONS(7378), - [anon_sym__Complex] = ACTIONS(7378), - [anon_sym___complex] = ACTIONS(7378), - [anon_sym_IBOutlet] = ACTIONS(7378), - [anon_sym_IBInspectable] = ACTIONS(7378), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7378), - [anon_sym_signed] = ACTIONS(7378), - [anon_sym_unsigned] = ACTIONS(7378), - [anon_sym_long] = ACTIONS(7378), - [anon_sym_short] = ACTIONS(7378), - [sym_primitive_type] = ACTIONS(7378), - [anon_sym_enum] = ACTIONS(7378), - [anon_sym_NS_ENUM] = ACTIONS(7378), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7378), - [anon_sym_NS_OPTIONS] = ACTIONS(7378), - [anon_sym_struct] = ACTIONS(7378), - [anon_sym_union] = ACTIONS(7378), + [sym_identifier] = ACTIONS(7524), + [aux_sym_preproc_def_token1] = ACTIONS(7526), + [anon_sym_DASH] = ACTIONS(7526), + [anon_sym_PLUS] = ACTIONS(7526), + [anon_sym_typedef] = ACTIONS(7524), + [anon_sym_extern] = ACTIONS(7524), + [anon_sym___attribute] = ACTIONS(7524), + [anon_sym___attribute__] = ACTIONS(7524), + [anon_sym___declspec] = ACTIONS(7524), + [anon_sym_static] = ACTIONS(7524), + [anon_sym_auto] = ACTIONS(7524), + [anon_sym_register] = ACTIONS(7524), + [anon_sym_inline] = ACTIONS(7524), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7524), + [anon_sym_const] = ACTIONS(7524), + [anon_sym_volatile] = ACTIONS(7524), + [anon_sym_restrict] = ACTIONS(7524), + [anon_sym__Atomic] = ACTIONS(7524), + [anon_sym_in] = ACTIONS(7524), + [anon_sym_out] = ACTIONS(7524), + [anon_sym_inout] = ACTIONS(7524), + [anon_sym_bycopy] = ACTIONS(7524), + [anon_sym_byref] = ACTIONS(7524), + [anon_sym_oneway] = ACTIONS(7524), + [anon_sym__Nullable] = ACTIONS(7524), + [anon_sym__Nonnull] = ACTIONS(7524), + [anon_sym__Nullable_result] = ACTIONS(7524), + [anon_sym__Null_unspecified] = ACTIONS(7524), + [anon_sym___autoreleasing] = ACTIONS(7524), + [anon_sym___nullable] = ACTIONS(7524), + [anon_sym___nonnull] = ACTIONS(7524), + [anon_sym___strong] = ACTIONS(7524), + [anon_sym___weak] = ACTIONS(7524), + [anon_sym___bridge] = ACTIONS(7524), + [anon_sym___bridge_transfer] = ACTIONS(7524), + [anon_sym___bridge_retained] = ACTIONS(7524), + [anon_sym___unsafe_unretained] = ACTIONS(7524), + [anon_sym___block] = ACTIONS(7524), + [anon_sym___kindof] = ACTIONS(7524), + [anon_sym___unused] = ACTIONS(7524), + [anon_sym__Complex] = ACTIONS(7524), + [anon_sym___complex] = ACTIONS(7524), + [anon_sym_IBOutlet] = ACTIONS(7524), + [anon_sym_IBInspectable] = ACTIONS(7524), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7524), + [anon_sym_signed] = ACTIONS(7524), + [anon_sym_unsigned] = ACTIONS(7524), + [anon_sym_long] = ACTIONS(7524), + [anon_sym_short] = ACTIONS(7524), + [sym_primitive_type] = ACTIONS(7524), + [anon_sym_enum] = ACTIONS(7524), + [anon_sym_struct] = ACTIONS(7524), + [anon_sym_union] = ACTIONS(7524), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7378), - [anon_sym_ATend] = ACTIONS(7380), - [sym_optional] = ACTIONS(7380), - [sym_required] = ACTIONS(7380), - [anon_sym_ATproperty] = ACTIONS(7380), - [sym_method_attribute_specifier] = ACTIONS(7378), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7378), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7378), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7378), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7378), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7378), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7378), - [anon_sym_NS_AVAILABLE] = ACTIONS(7378), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7378), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7378), - [anon_sym_API_AVAILABLE] = ACTIONS(7378), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7378), - [anon_sym_API_DEPRECATED] = ACTIONS(7378), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7378), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7378), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7378), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7378), - [anon_sym___deprecated_msg] = ACTIONS(7378), - [anon_sym___deprecated_enum_msg] = ACTIONS(7378), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7378), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7378), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7378), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7378), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7378), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7378), - [anon_sym_typeof] = ACTIONS(7378), - [anon_sym___typeof] = ACTIONS(7378), - [anon_sym___typeof__] = ACTIONS(7378), - [sym_id] = ACTIONS(7378), - [sym_instancetype] = ACTIONS(7378), - [sym_Class] = ACTIONS(7378), - [sym_SEL] = ACTIONS(7378), - [sym_IMP] = ACTIONS(7378), - [sym_BOOL] = ACTIONS(7378), - [sym_auto] = ACTIONS(7378), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7524), + [anon_sym_ATend] = ACTIONS(7526), + [sym_optional] = ACTIONS(7526), + [sym_required] = ACTIONS(7526), + [anon_sym_ATproperty] = ACTIONS(7526), + [sym_method_attribute_specifier] = ACTIONS(7524), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7524), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7524), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7524), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7524), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7524), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7524), + [anon_sym_NS_AVAILABLE] = ACTIONS(7524), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7524), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7524), + [anon_sym_API_AVAILABLE] = ACTIONS(7524), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7524), + [anon_sym_API_DEPRECATED] = ACTIONS(7524), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7524), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7524), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7524), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7524), + [anon_sym___deprecated_msg] = ACTIONS(7524), + [anon_sym___deprecated_enum_msg] = ACTIONS(7524), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7524), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7524), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7524), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7524), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7524), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7524), + [anon_sym_NS_ENUM] = ACTIONS(7524), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7524), + [anon_sym_NS_OPTIONS] = ACTIONS(7524), + [anon_sym_typeof] = ACTIONS(7524), + [anon_sym___typeof] = ACTIONS(7524), + [anon_sym___typeof__] = ACTIONS(7524), + [sym_id] = ACTIONS(7524), + [sym_instancetype] = ACTIONS(7524), + [sym_Class] = ACTIONS(7524), + [sym_SEL] = ACTIONS(7524), + [sym_IMP] = ACTIONS(7524), + [sym_BOOL] = ACTIONS(7524), + [sym_auto] = ACTIONS(7524), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -504151,103 +502010,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3117] = { - [sym_identifier] = ACTIONS(7382), - [aux_sym_preproc_def_token1] = ACTIONS(7384), - [anon_sym_DASH] = ACTIONS(7384), - [anon_sym_PLUS] = ACTIONS(7384), - [anon_sym_typedef] = ACTIONS(7382), - [anon_sym_extern] = ACTIONS(7382), - [anon_sym___attribute] = ACTIONS(7382), - [anon_sym___attribute__] = ACTIONS(7382), - [anon_sym___declspec] = ACTIONS(7382), - [anon_sym_static] = ACTIONS(7382), - [anon_sym_auto] = ACTIONS(7382), - [anon_sym_register] = ACTIONS(7382), - [anon_sym_inline] = ACTIONS(7382), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7382), - [anon_sym_const] = ACTIONS(7382), - [anon_sym_volatile] = ACTIONS(7382), - [anon_sym_restrict] = ACTIONS(7382), - [anon_sym__Atomic] = ACTIONS(7382), - [anon_sym_in] = ACTIONS(7382), - [anon_sym_out] = ACTIONS(7382), - [anon_sym_inout] = ACTIONS(7382), - [anon_sym_bycopy] = ACTIONS(7382), - [anon_sym_byref] = ACTIONS(7382), - [anon_sym_oneway] = ACTIONS(7382), - [anon_sym__Nullable] = ACTIONS(7382), - [anon_sym__Nonnull] = ACTIONS(7382), - [anon_sym__Nullable_result] = ACTIONS(7382), - [anon_sym__Null_unspecified] = ACTIONS(7382), - [anon_sym___autoreleasing] = ACTIONS(7382), - [anon_sym___nullable] = ACTIONS(7382), - [anon_sym___nonnull] = ACTIONS(7382), - [anon_sym___strong] = ACTIONS(7382), - [anon_sym___weak] = ACTIONS(7382), - [anon_sym___bridge] = ACTIONS(7382), - [anon_sym___bridge_transfer] = ACTIONS(7382), - [anon_sym___bridge_retained] = ACTIONS(7382), - [anon_sym___unsafe_unretained] = ACTIONS(7382), - [anon_sym___block] = ACTIONS(7382), - [anon_sym___kindof] = ACTIONS(7382), - [anon_sym___unused] = ACTIONS(7382), - [anon_sym__Complex] = ACTIONS(7382), - [anon_sym___complex] = ACTIONS(7382), - [anon_sym_IBOutlet] = ACTIONS(7382), - [anon_sym_IBInspectable] = ACTIONS(7382), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7382), - [anon_sym_signed] = ACTIONS(7382), - [anon_sym_unsigned] = ACTIONS(7382), - [anon_sym_long] = ACTIONS(7382), - [anon_sym_short] = ACTIONS(7382), - [sym_primitive_type] = ACTIONS(7382), - [anon_sym_enum] = ACTIONS(7382), - [anon_sym_NS_ENUM] = ACTIONS(7382), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7382), - [anon_sym_NS_OPTIONS] = ACTIONS(7382), - [anon_sym_struct] = ACTIONS(7382), - [anon_sym_union] = ACTIONS(7382), + [sym_identifier] = ACTIONS(7528), + [aux_sym_preproc_def_token1] = ACTIONS(7530), + [anon_sym_DASH] = ACTIONS(7530), + [anon_sym_PLUS] = ACTIONS(7530), + [anon_sym_typedef] = ACTIONS(7528), + [anon_sym_extern] = ACTIONS(7528), + [anon_sym___attribute] = ACTIONS(7528), + [anon_sym___attribute__] = ACTIONS(7528), + [anon_sym___declspec] = ACTIONS(7528), + [anon_sym_static] = ACTIONS(7528), + [anon_sym_auto] = ACTIONS(7528), + [anon_sym_register] = ACTIONS(7528), + [anon_sym_inline] = ACTIONS(7528), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7528), + [anon_sym_const] = ACTIONS(7528), + [anon_sym_volatile] = ACTIONS(7528), + [anon_sym_restrict] = ACTIONS(7528), + [anon_sym__Atomic] = ACTIONS(7528), + [anon_sym_in] = ACTIONS(7528), + [anon_sym_out] = ACTIONS(7528), + [anon_sym_inout] = ACTIONS(7528), + [anon_sym_bycopy] = ACTIONS(7528), + [anon_sym_byref] = ACTIONS(7528), + [anon_sym_oneway] = ACTIONS(7528), + [anon_sym__Nullable] = ACTIONS(7528), + [anon_sym__Nonnull] = ACTIONS(7528), + [anon_sym__Nullable_result] = ACTIONS(7528), + [anon_sym__Null_unspecified] = ACTIONS(7528), + [anon_sym___autoreleasing] = ACTIONS(7528), + [anon_sym___nullable] = ACTIONS(7528), + [anon_sym___nonnull] = ACTIONS(7528), + [anon_sym___strong] = ACTIONS(7528), + [anon_sym___weak] = ACTIONS(7528), + [anon_sym___bridge] = ACTIONS(7528), + [anon_sym___bridge_transfer] = ACTIONS(7528), + [anon_sym___bridge_retained] = ACTIONS(7528), + [anon_sym___unsafe_unretained] = ACTIONS(7528), + [anon_sym___block] = ACTIONS(7528), + [anon_sym___kindof] = ACTIONS(7528), + [anon_sym___unused] = ACTIONS(7528), + [anon_sym__Complex] = ACTIONS(7528), + [anon_sym___complex] = ACTIONS(7528), + [anon_sym_IBOutlet] = ACTIONS(7528), + [anon_sym_IBInspectable] = ACTIONS(7528), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7528), + [anon_sym_signed] = ACTIONS(7528), + [anon_sym_unsigned] = ACTIONS(7528), + [anon_sym_long] = ACTIONS(7528), + [anon_sym_short] = ACTIONS(7528), + [sym_primitive_type] = ACTIONS(7528), + [anon_sym_enum] = ACTIONS(7528), + [anon_sym_struct] = ACTIONS(7528), + [anon_sym_union] = ACTIONS(7528), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7382), - [anon_sym_ATend] = ACTIONS(7384), - [sym_optional] = ACTIONS(7384), - [sym_required] = ACTIONS(7384), - [anon_sym_ATproperty] = ACTIONS(7384), - [sym_method_attribute_specifier] = ACTIONS(7382), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7382), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7382), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7382), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7382), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7382), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7382), - [anon_sym_NS_AVAILABLE] = ACTIONS(7382), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7382), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7382), - [anon_sym_API_AVAILABLE] = ACTIONS(7382), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7382), - [anon_sym_API_DEPRECATED] = ACTIONS(7382), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7382), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7382), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7382), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7382), - [anon_sym___deprecated_msg] = ACTIONS(7382), - [anon_sym___deprecated_enum_msg] = ACTIONS(7382), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7382), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7382), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7382), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7382), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7382), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7382), - [anon_sym_typeof] = ACTIONS(7382), - [anon_sym___typeof] = ACTIONS(7382), - [anon_sym___typeof__] = ACTIONS(7382), - [sym_id] = ACTIONS(7382), - [sym_instancetype] = ACTIONS(7382), - [sym_Class] = ACTIONS(7382), - [sym_SEL] = ACTIONS(7382), - [sym_IMP] = ACTIONS(7382), - [sym_BOOL] = ACTIONS(7382), - [sym_auto] = ACTIONS(7382), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7528), + [anon_sym_ATend] = ACTIONS(7530), + [sym_optional] = ACTIONS(7530), + [sym_required] = ACTIONS(7530), + [anon_sym_ATproperty] = ACTIONS(7530), + [sym_method_attribute_specifier] = ACTIONS(7528), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7528), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7528), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7528), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7528), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7528), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7528), + [anon_sym_NS_AVAILABLE] = ACTIONS(7528), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7528), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7528), + [anon_sym_API_AVAILABLE] = ACTIONS(7528), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7528), + [anon_sym_API_DEPRECATED] = ACTIONS(7528), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7528), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7528), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7528), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7528), + [anon_sym___deprecated_msg] = ACTIONS(7528), + [anon_sym___deprecated_enum_msg] = ACTIONS(7528), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7528), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7528), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7528), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7528), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7528), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7528), + [anon_sym_NS_ENUM] = ACTIONS(7528), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7528), + [anon_sym_NS_OPTIONS] = ACTIONS(7528), + [anon_sym_typeof] = ACTIONS(7528), + [anon_sym___typeof] = ACTIONS(7528), + [anon_sym___typeof__] = ACTIONS(7528), + [sym_id] = ACTIONS(7528), + [sym_instancetype] = ACTIONS(7528), + [sym_Class] = ACTIONS(7528), + [sym_SEL] = ACTIONS(7528), + [sym_IMP] = ACTIONS(7528), + [sym_BOOL] = ACTIONS(7528), + [sym_auto] = ACTIONS(7528), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -504256,103 +502115,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3118] = { - [sym_identifier] = ACTIONS(7386), - [aux_sym_preproc_def_token1] = ACTIONS(7388), - [anon_sym_DASH] = ACTIONS(7388), - [anon_sym_PLUS] = ACTIONS(7388), - [anon_sym_typedef] = ACTIONS(7386), - [anon_sym_extern] = ACTIONS(7386), - [anon_sym___attribute] = ACTIONS(7386), - [anon_sym___attribute__] = ACTIONS(7386), - [anon_sym___declspec] = ACTIONS(7386), - [anon_sym_static] = ACTIONS(7386), - [anon_sym_auto] = ACTIONS(7386), - [anon_sym_register] = ACTIONS(7386), - [anon_sym_inline] = ACTIONS(7386), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7386), - [anon_sym_const] = ACTIONS(7386), - [anon_sym_volatile] = ACTIONS(7386), - [anon_sym_restrict] = ACTIONS(7386), - [anon_sym__Atomic] = ACTIONS(7386), - [anon_sym_in] = ACTIONS(7386), - [anon_sym_out] = ACTIONS(7386), - [anon_sym_inout] = ACTIONS(7386), - [anon_sym_bycopy] = ACTIONS(7386), - [anon_sym_byref] = ACTIONS(7386), - [anon_sym_oneway] = ACTIONS(7386), - [anon_sym__Nullable] = ACTIONS(7386), - [anon_sym__Nonnull] = ACTIONS(7386), - [anon_sym__Nullable_result] = ACTIONS(7386), - [anon_sym__Null_unspecified] = ACTIONS(7386), - [anon_sym___autoreleasing] = ACTIONS(7386), - [anon_sym___nullable] = ACTIONS(7386), - [anon_sym___nonnull] = ACTIONS(7386), - [anon_sym___strong] = ACTIONS(7386), - [anon_sym___weak] = ACTIONS(7386), - [anon_sym___bridge] = ACTIONS(7386), - [anon_sym___bridge_transfer] = ACTIONS(7386), - [anon_sym___bridge_retained] = ACTIONS(7386), - [anon_sym___unsafe_unretained] = ACTIONS(7386), - [anon_sym___block] = ACTIONS(7386), - [anon_sym___kindof] = ACTIONS(7386), - [anon_sym___unused] = ACTIONS(7386), - [anon_sym__Complex] = ACTIONS(7386), - [anon_sym___complex] = ACTIONS(7386), - [anon_sym_IBOutlet] = ACTIONS(7386), - [anon_sym_IBInspectable] = ACTIONS(7386), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7386), - [anon_sym_signed] = ACTIONS(7386), - [anon_sym_unsigned] = ACTIONS(7386), - [anon_sym_long] = ACTIONS(7386), - [anon_sym_short] = ACTIONS(7386), - [sym_primitive_type] = ACTIONS(7386), - [anon_sym_enum] = ACTIONS(7386), - [anon_sym_NS_ENUM] = ACTIONS(7386), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7386), - [anon_sym_NS_OPTIONS] = ACTIONS(7386), - [anon_sym_struct] = ACTIONS(7386), - [anon_sym_union] = ACTIONS(7386), + [sym_identifier] = ACTIONS(7532), + [aux_sym_preproc_def_token1] = ACTIONS(7534), + [anon_sym_DASH] = ACTIONS(7534), + [anon_sym_PLUS] = ACTIONS(7534), + [anon_sym_typedef] = ACTIONS(7532), + [anon_sym_extern] = ACTIONS(7532), + [anon_sym___attribute] = ACTIONS(7532), + [anon_sym___attribute__] = ACTIONS(7532), + [anon_sym___declspec] = ACTIONS(7532), + [anon_sym_static] = ACTIONS(7532), + [anon_sym_auto] = ACTIONS(7532), + [anon_sym_register] = ACTIONS(7532), + [anon_sym_inline] = ACTIONS(7532), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7532), + [anon_sym_const] = ACTIONS(7532), + [anon_sym_volatile] = ACTIONS(7532), + [anon_sym_restrict] = ACTIONS(7532), + [anon_sym__Atomic] = ACTIONS(7532), + [anon_sym_in] = ACTIONS(7532), + [anon_sym_out] = ACTIONS(7532), + [anon_sym_inout] = ACTIONS(7532), + [anon_sym_bycopy] = ACTIONS(7532), + [anon_sym_byref] = ACTIONS(7532), + [anon_sym_oneway] = ACTIONS(7532), + [anon_sym__Nullable] = ACTIONS(7532), + [anon_sym__Nonnull] = ACTIONS(7532), + [anon_sym__Nullable_result] = ACTIONS(7532), + [anon_sym__Null_unspecified] = ACTIONS(7532), + [anon_sym___autoreleasing] = ACTIONS(7532), + [anon_sym___nullable] = ACTIONS(7532), + [anon_sym___nonnull] = ACTIONS(7532), + [anon_sym___strong] = ACTIONS(7532), + [anon_sym___weak] = ACTIONS(7532), + [anon_sym___bridge] = ACTIONS(7532), + [anon_sym___bridge_transfer] = ACTIONS(7532), + [anon_sym___bridge_retained] = ACTIONS(7532), + [anon_sym___unsafe_unretained] = ACTIONS(7532), + [anon_sym___block] = ACTIONS(7532), + [anon_sym___kindof] = ACTIONS(7532), + [anon_sym___unused] = ACTIONS(7532), + [anon_sym__Complex] = ACTIONS(7532), + [anon_sym___complex] = ACTIONS(7532), + [anon_sym_IBOutlet] = ACTIONS(7532), + [anon_sym_IBInspectable] = ACTIONS(7532), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7532), + [anon_sym_signed] = ACTIONS(7532), + [anon_sym_unsigned] = ACTIONS(7532), + [anon_sym_long] = ACTIONS(7532), + [anon_sym_short] = ACTIONS(7532), + [sym_primitive_type] = ACTIONS(7532), + [anon_sym_enum] = ACTIONS(7532), + [anon_sym_struct] = ACTIONS(7532), + [anon_sym_union] = ACTIONS(7532), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7386), - [anon_sym_ATend] = ACTIONS(7388), - [sym_optional] = ACTIONS(7388), - [sym_required] = ACTIONS(7388), - [anon_sym_ATproperty] = ACTIONS(7388), - [sym_method_attribute_specifier] = ACTIONS(7386), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7386), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7386), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7386), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7386), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7386), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7386), - [anon_sym_NS_AVAILABLE] = ACTIONS(7386), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7386), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7386), - [anon_sym_API_AVAILABLE] = ACTIONS(7386), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7386), - [anon_sym_API_DEPRECATED] = ACTIONS(7386), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7386), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7386), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7386), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7386), - [anon_sym___deprecated_msg] = ACTIONS(7386), - [anon_sym___deprecated_enum_msg] = ACTIONS(7386), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7386), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7386), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7386), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7386), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7386), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7386), - [anon_sym_typeof] = ACTIONS(7386), - [anon_sym___typeof] = ACTIONS(7386), - [anon_sym___typeof__] = ACTIONS(7386), - [sym_id] = ACTIONS(7386), - [sym_instancetype] = ACTIONS(7386), - [sym_Class] = ACTIONS(7386), - [sym_SEL] = ACTIONS(7386), - [sym_IMP] = ACTIONS(7386), - [sym_BOOL] = ACTIONS(7386), - [sym_auto] = ACTIONS(7386), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7532), + [anon_sym_ATend] = ACTIONS(7534), + [sym_optional] = ACTIONS(7534), + [sym_required] = ACTIONS(7534), + [anon_sym_ATproperty] = ACTIONS(7534), + [sym_method_attribute_specifier] = ACTIONS(7532), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7532), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7532), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7532), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7532), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7532), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7532), + [anon_sym_NS_AVAILABLE] = ACTIONS(7532), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7532), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7532), + [anon_sym_API_AVAILABLE] = ACTIONS(7532), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7532), + [anon_sym_API_DEPRECATED] = ACTIONS(7532), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7532), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7532), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7532), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7532), + [anon_sym___deprecated_msg] = ACTIONS(7532), + [anon_sym___deprecated_enum_msg] = ACTIONS(7532), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7532), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7532), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7532), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7532), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7532), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7532), + [anon_sym_NS_ENUM] = ACTIONS(7532), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7532), + [anon_sym_NS_OPTIONS] = ACTIONS(7532), + [anon_sym_typeof] = ACTIONS(7532), + [anon_sym___typeof] = ACTIONS(7532), + [anon_sym___typeof__] = ACTIONS(7532), + [sym_id] = ACTIONS(7532), + [sym_instancetype] = ACTIONS(7532), + [sym_Class] = ACTIONS(7532), + [sym_SEL] = ACTIONS(7532), + [sym_IMP] = ACTIONS(7532), + [sym_BOOL] = ACTIONS(7532), + [sym_auto] = ACTIONS(7532), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -504361,103 +502220,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3119] = { - [sym_identifier] = ACTIONS(7390), - [aux_sym_preproc_def_token1] = ACTIONS(7392), - [anon_sym_DASH] = ACTIONS(7392), - [anon_sym_PLUS] = ACTIONS(7392), - [anon_sym_typedef] = ACTIONS(7390), - [anon_sym_extern] = ACTIONS(7390), - [anon_sym___attribute] = ACTIONS(7390), - [anon_sym___attribute__] = ACTIONS(7390), - [anon_sym___declspec] = ACTIONS(7390), - [anon_sym_static] = ACTIONS(7390), - [anon_sym_auto] = ACTIONS(7390), - [anon_sym_register] = ACTIONS(7390), - [anon_sym_inline] = ACTIONS(7390), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7390), - [anon_sym_const] = ACTIONS(7390), - [anon_sym_volatile] = ACTIONS(7390), - [anon_sym_restrict] = ACTIONS(7390), - [anon_sym__Atomic] = ACTIONS(7390), - [anon_sym_in] = ACTIONS(7390), - [anon_sym_out] = ACTIONS(7390), - [anon_sym_inout] = ACTIONS(7390), - [anon_sym_bycopy] = ACTIONS(7390), - [anon_sym_byref] = ACTIONS(7390), - [anon_sym_oneway] = ACTIONS(7390), - [anon_sym__Nullable] = ACTIONS(7390), - [anon_sym__Nonnull] = ACTIONS(7390), - [anon_sym__Nullable_result] = ACTIONS(7390), - [anon_sym__Null_unspecified] = ACTIONS(7390), - [anon_sym___autoreleasing] = ACTIONS(7390), - [anon_sym___nullable] = ACTIONS(7390), - [anon_sym___nonnull] = ACTIONS(7390), - [anon_sym___strong] = ACTIONS(7390), - [anon_sym___weak] = ACTIONS(7390), - [anon_sym___bridge] = ACTIONS(7390), - [anon_sym___bridge_transfer] = ACTIONS(7390), - [anon_sym___bridge_retained] = ACTIONS(7390), - [anon_sym___unsafe_unretained] = ACTIONS(7390), - [anon_sym___block] = ACTIONS(7390), - [anon_sym___kindof] = ACTIONS(7390), - [anon_sym___unused] = ACTIONS(7390), - [anon_sym__Complex] = ACTIONS(7390), - [anon_sym___complex] = ACTIONS(7390), - [anon_sym_IBOutlet] = ACTIONS(7390), - [anon_sym_IBInspectable] = ACTIONS(7390), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7390), - [anon_sym_signed] = ACTIONS(7390), - [anon_sym_unsigned] = ACTIONS(7390), - [anon_sym_long] = ACTIONS(7390), - [anon_sym_short] = ACTIONS(7390), - [sym_primitive_type] = ACTIONS(7390), - [anon_sym_enum] = ACTIONS(7390), - [anon_sym_NS_ENUM] = ACTIONS(7390), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7390), - [anon_sym_NS_OPTIONS] = ACTIONS(7390), - [anon_sym_struct] = ACTIONS(7390), - [anon_sym_union] = ACTIONS(7390), + [sym_identifier] = ACTIONS(7536), + [aux_sym_preproc_def_token1] = ACTIONS(7538), + [anon_sym_DASH] = ACTIONS(7538), + [anon_sym_PLUS] = ACTIONS(7538), + [anon_sym_typedef] = ACTIONS(7536), + [anon_sym_extern] = ACTIONS(7536), + [anon_sym___attribute] = ACTIONS(7536), + [anon_sym___attribute__] = ACTIONS(7536), + [anon_sym___declspec] = ACTIONS(7536), + [anon_sym_static] = ACTIONS(7536), + [anon_sym_auto] = ACTIONS(7536), + [anon_sym_register] = ACTIONS(7536), + [anon_sym_inline] = ACTIONS(7536), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7536), + [anon_sym_const] = ACTIONS(7536), + [anon_sym_volatile] = ACTIONS(7536), + [anon_sym_restrict] = ACTIONS(7536), + [anon_sym__Atomic] = ACTIONS(7536), + [anon_sym_in] = ACTIONS(7536), + [anon_sym_out] = ACTIONS(7536), + [anon_sym_inout] = ACTIONS(7536), + [anon_sym_bycopy] = ACTIONS(7536), + [anon_sym_byref] = ACTIONS(7536), + [anon_sym_oneway] = ACTIONS(7536), + [anon_sym__Nullable] = ACTIONS(7536), + [anon_sym__Nonnull] = ACTIONS(7536), + [anon_sym__Nullable_result] = ACTIONS(7536), + [anon_sym__Null_unspecified] = ACTIONS(7536), + [anon_sym___autoreleasing] = ACTIONS(7536), + [anon_sym___nullable] = ACTIONS(7536), + [anon_sym___nonnull] = ACTIONS(7536), + [anon_sym___strong] = ACTIONS(7536), + [anon_sym___weak] = ACTIONS(7536), + [anon_sym___bridge] = ACTIONS(7536), + [anon_sym___bridge_transfer] = ACTIONS(7536), + [anon_sym___bridge_retained] = ACTIONS(7536), + [anon_sym___unsafe_unretained] = ACTIONS(7536), + [anon_sym___block] = ACTIONS(7536), + [anon_sym___kindof] = ACTIONS(7536), + [anon_sym___unused] = ACTIONS(7536), + [anon_sym__Complex] = ACTIONS(7536), + [anon_sym___complex] = ACTIONS(7536), + [anon_sym_IBOutlet] = ACTIONS(7536), + [anon_sym_IBInspectable] = ACTIONS(7536), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7536), + [anon_sym_signed] = ACTIONS(7536), + [anon_sym_unsigned] = ACTIONS(7536), + [anon_sym_long] = ACTIONS(7536), + [anon_sym_short] = ACTIONS(7536), + [sym_primitive_type] = ACTIONS(7536), + [anon_sym_enum] = ACTIONS(7536), + [anon_sym_struct] = ACTIONS(7536), + [anon_sym_union] = ACTIONS(7536), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7390), - [anon_sym_ATend] = ACTIONS(7392), - [sym_optional] = ACTIONS(7392), - [sym_required] = ACTIONS(7392), - [anon_sym_ATproperty] = ACTIONS(7392), - [sym_method_attribute_specifier] = ACTIONS(7390), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7390), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7390), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7390), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7390), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7390), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7390), - [anon_sym_NS_AVAILABLE] = ACTIONS(7390), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7390), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7390), - [anon_sym_API_AVAILABLE] = ACTIONS(7390), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7390), - [anon_sym_API_DEPRECATED] = ACTIONS(7390), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7390), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7390), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7390), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7390), - [anon_sym___deprecated_msg] = ACTIONS(7390), - [anon_sym___deprecated_enum_msg] = ACTIONS(7390), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7390), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7390), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7390), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7390), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7390), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7390), - [anon_sym_typeof] = ACTIONS(7390), - [anon_sym___typeof] = ACTIONS(7390), - [anon_sym___typeof__] = ACTIONS(7390), - [sym_id] = ACTIONS(7390), - [sym_instancetype] = ACTIONS(7390), - [sym_Class] = ACTIONS(7390), - [sym_SEL] = ACTIONS(7390), - [sym_IMP] = ACTIONS(7390), - [sym_BOOL] = ACTIONS(7390), - [sym_auto] = ACTIONS(7390), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7536), + [anon_sym_ATend] = ACTIONS(7538), + [sym_optional] = ACTIONS(7538), + [sym_required] = ACTIONS(7538), + [anon_sym_ATproperty] = ACTIONS(7538), + [sym_method_attribute_specifier] = ACTIONS(7536), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7536), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7536), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7536), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7536), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7536), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7536), + [anon_sym_NS_AVAILABLE] = ACTIONS(7536), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7536), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7536), + [anon_sym_API_AVAILABLE] = ACTIONS(7536), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7536), + [anon_sym_API_DEPRECATED] = ACTIONS(7536), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7536), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7536), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7536), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7536), + [anon_sym___deprecated_msg] = ACTIONS(7536), + [anon_sym___deprecated_enum_msg] = ACTIONS(7536), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7536), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7536), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7536), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7536), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7536), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7536), + [anon_sym_NS_ENUM] = ACTIONS(7536), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7536), + [anon_sym_NS_OPTIONS] = ACTIONS(7536), + [anon_sym_typeof] = ACTIONS(7536), + [anon_sym___typeof] = ACTIONS(7536), + [anon_sym___typeof__] = ACTIONS(7536), + [sym_id] = ACTIONS(7536), + [sym_instancetype] = ACTIONS(7536), + [sym_Class] = ACTIONS(7536), + [sym_SEL] = ACTIONS(7536), + [sym_IMP] = ACTIONS(7536), + [sym_BOOL] = ACTIONS(7536), + [sym_auto] = ACTIONS(7536), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -504466,103 +502325,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3120] = { - [sym_identifier] = ACTIONS(7394), - [aux_sym_preproc_def_token1] = ACTIONS(7396), - [anon_sym_DASH] = ACTIONS(7396), - [anon_sym_PLUS] = ACTIONS(7396), - [anon_sym_typedef] = ACTIONS(7394), - [anon_sym_extern] = ACTIONS(7394), - [anon_sym___attribute] = ACTIONS(7394), - [anon_sym___attribute__] = ACTIONS(7394), - [anon_sym___declspec] = ACTIONS(7394), - [anon_sym_static] = ACTIONS(7394), - [anon_sym_auto] = ACTIONS(7394), - [anon_sym_register] = ACTIONS(7394), - [anon_sym_inline] = ACTIONS(7394), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7394), - [anon_sym_const] = ACTIONS(7394), - [anon_sym_volatile] = ACTIONS(7394), - [anon_sym_restrict] = ACTIONS(7394), - [anon_sym__Atomic] = ACTIONS(7394), - [anon_sym_in] = ACTIONS(7394), - [anon_sym_out] = ACTIONS(7394), - [anon_sym_inout] = ACTIONS(7394), - [anon_sym_bycopy] = ACTIONS(7394), - [anon_sym_byref] = ACTIONS(7394), - [anon_sym_oneway] = ACTIONS(7394), - [anon_sym__Nullable] = ACTIONS(7394), - [anon_sym__Nonnull] = ACTIONS(7394), - [anon_sym__Nullable_result] = ACTIONS(7394), - [anon_sym__Null_unspecified] = ACTIONS(7394), - [anon_sym___autoreleasing] = ACTIONS(7394), - [anon_sym___nullable] = ACTIONS(7394), - [anon_sym___nonnull] = ACTIONS(7394), - [anon_sym___strong] = ACTIONS(7394), - [anon_sym___weak] = ACTIONS(7394), - [anon_sym___bridge] = ACTIONS(7394), - [anon_sym___bridge_transfer] = ACTIONS(7394), - [anon_sym___bridge_retained] = ACTIONS(7394), - [anon_sym___unsafe_unretained] = ACTIONS(7394), - [anon_sym___block] = ACTIONS(7394), - [anon_sym___kindof] = ACTIONS(7394), - [anon_sym___unused] = ACTIONS(7394), - [anon_sym__Complex] = ACTIONS(7394), - [anon_sym___complex] = ACTIONS(7394), - [anon_sym_IBOutlet] = ACTIONS(7394), - [anon_sym_IBInspectable] = ACTIONS(7394), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7394), - [anon_sym_signed] = ACTIONS(7394), - [anon_sym_unsigned] = ACTIONS(7394), - [anon_sym_long] = ACTIONS(7394), - [anon_sym_short] = ACTIONS(7394), - [sym_primitive_type] = ACTIONS(7394), - [anon_sym_enum] = ACTIONS(7394), - [anon_sym_NS_ENUM] = ACTIONS(7394), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7394), - [anon_sym_NS_OPTIONS] = ACTIONS(7394), - [anon_sym_struct] = ACTIONS(7394), - [anon_sym_union] = ACTIONS(7394), + [sym_identifier] = ACTIONS(7540), + [aux_sym_preproc_def_token1] = ACTIONS(7542), + [anon_sym_DASH] = ACTIONS(7542), + [anon_sym_PLUS] = ACTIONS(7542), + [anon_sym_typedef] = ACTIONS(7540), + [anon_sym_extern] = ACTIONS(7540), + [anon_sym___attribute] = ACTIONS(7540), + [anon_sym___attribute__] = ACTIONS(7540), + [anon_sym___declspec] = ACTIONS(7540), + [anon_sym_static] = ACTIONS(7540), + [anon_sym_auto] = ACTIONS(7540), + [anon_sym_register] = ACTIONS(7540), + [anon_sym_inline] = ACTIONS(7540), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7540), + [anon_sym_const] = ACTIONS(7540), + [anon_sym_volatile] = ACTIONS(7540), + [anon_sym_restrict] = ACTIONS(7540), + [anon_sym__Atomic] = ACTIONS(7540), + [anon_sym_in] = ACTIONS(7540), + [anon_sym_out] = ACTIONS(7540), + [anon_sym_inout] = ACTIONS(7540), + [anon_sym_bycopy] = ACTIONS(7540), + [anon_sym_byref] = ACTIONS(7540), + [anon_sym_oneway] = ACTIONS(7540), + [anon_sym__Nullable] = ACTIONS(7540), + [anon_sym__Nonnull] = ACTIONS(7540), + [anon_sym__Nullable_result] = ACTIONS(7540), + [anon_sym__Null_unspecified] = ACTIONS(7540), + [anon_sym___autoreleasing] = ACTIONS(7540), + [anon_sym___nullable] = ACTIONS(7540), + [anon_sym___nonnull] = ACTIONS(7540), + [anon_sym___strong] = ACTIONS(7540), + [anon_sym___weak] = ACTIONS(7540), + [anon_sym___bridge] = ACTIONS(7540), + [anon_sym___bridge_transfer] = ACTIONS(7540), + [anon_sym___bridge_retained] = ACTIONS(7540), + [anon_sym___unsafe_unretained] = ACTIONS(7540), + [anon_sym___block] = ACTIONS(7540), + [anon_sym___kindof] = ACTIONS(7540), + [anon_sym___unused] = ACTIONS(7540), + [anon_sym__Complex] = ACTIONS(7540), + [anon_sym___complex] = ACTIONS(7540), + [anon_sym_IBOutlet] = ACTIONS(7540), + [anon_sym_IBInspectable] = ACTIONS(7540), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7540), + [anon_sym_signed] = ACTIONS(7540), + [anon_sym_unsigned] = ACTIONS(7540), + [anon_sym_long] = ACTIONS(7540), + [anon_sym_short] = ACTIONS(7540), + [sym_primitive_type] = ACTIONS(7540), + [anon_sym_enum] = ACTIONS(7540), + [anon_sym_struct] = ACTIONS(7540), + [anon_sym_union] = ACTIONS(7540), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7394), - [anon_sym_ATend] = ACTIONS(7396), - [sym_optional] = ACTIONS(7396), - [sym_required] = ACTIONS(7396), - [anon_sym_ATproperty] = ACTIONS(7396), - [sym_method_attribute_specifier] = ACTIONS(7394), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7394), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7394), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7394), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7394), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7394), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7394), - [anon_sym_NS_AVAILABLE] = ACTIONS(7394), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7394), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7394), - [anon_sym_API_AVAILABLE] = ACTIONS(7394), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7394), - [anon_sym_API_DEPRECATED] = ACTIONS(7394), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7394), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7394), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7394), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7394), - [anon_sym___deprecated_msg] = ACTIONS(7394), - [anon_sym___deprecated_enum_msg] = ACTIONS(7394), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7394), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7394), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7394), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7394), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7394), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7394), - [anon_sym_typeof] = ACTIONS(7394), - [anon_sym___typeof] = ACTIONS(7394), - [anon_sym___typeof__] = ACTIONS(7394), - [sym_id] = ACTIONS(7394), - [sym_instancetype] = ACTIONS(7394), - [sym_Class] = ACTIONS(7394), - [sym_SEL] = ACTIONS(7394), - [sym_IMP] = ACTIONS(7394), - [sym_BOOL] = ACTIONS(7394), - [sym_auto] = ACTIONS(7394), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7540), + [anon_sym_ATend] = ACTIONS(7542), + [sym_optional] = ACTIONS(7542), + [sym_required] = ACTIONS(7542), + [anon_sym_ATproperty] = ACTIONS(7542), + [sym_method_attribute_specifier] = ACTIONS(7540), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7540), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7540), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7540), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7540), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7540), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7540), + [anon_sym_NS_AVAILABLE] = ACTIONS(7540), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7540), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7540), + [anon_sym_API_AVAILABLE] = ACTIONS(7540), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7540), + [anon_sym_API_DEPRECATED] = ACTIONS(7540), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7540), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7540), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7540), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7540), + [anon_sym___deprecated_msg] = ACTIONS(7540), + [anon_sym___deprecated_enum_msg] = ACTIONS(7540), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7540), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7540), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7540), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7540), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7540), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7540), + [anon_sym_NS_ENUM] = ACTIONS(7540), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7540), + [anon_sym_NS_OPTIONS] = ACTIONS(7540), + [anon_sym_typeof] = ACTIONS(7540), + [anon_sym___typeof] = ACTIONS(7540), + [anon_sym___typeof__] = ACTIONS(7540), + [sym_id] = ACTIONS(7540), + [sym_instancetype] = ACTIONS(7540), + [sym_Class] = ACTIONS(7540), + [sym_SEL] = ACTIONS(7540), + [sym_IMP] = ACTIONS(7540), + [sym_BOOL] = ACTIONS(7540), + [sym_auto] = ACTIONS(7540), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -504571,103 +502430,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3121] = { - [sym_identifier] = ACTIONS(7398), - [aux_sym_preproc_def_token1] = ACTIONS(7400), - [anon_sym_DASH] = ACTIONS(7400), - [anon_sym_PLUS] = ACTIONS(7400), - [anon_sym_typedef] = ACTIONS(7398), - [anon_sym_extern] = ACTIONS(7398), - [anon_sym___attribute] = ACTIONS(7398), - [anon_sym___attribute__] = ACTIONS(7398), - [anon_sym___declspec] = ACTIONS(7398), - [anon_sym_static] = ACTIONS(7398), - [anon_sym_auto] = ACTIONS(7398), - [anon_sym_register] = ACTIONS(7398), - [anon_sym_inline] = ACTIONS(7398), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7398), - [anon_sym_const] = ACTIONS(7398), - [anon_sym_volatile] = ACTIONS(7398), - [anon_sym_restrict] = ACTIONS(7398), - [anon_sym__Atomic] = ACTIONS(7398), - [anon_sym_in] = ACTIONS(7398), - [anon_sym_out] = ACTIONS(7398), - [anon_sym_inout] = ACTIONS(7398), - [anon_sym_bycopy] = ACTIONS(7398), - [anon_sym_byref] = ACTIONS(7398), - [anon_sym_oneway] = ACTIONS(7398), - [anon_sym__Nullable] = ACTIONS(7398), - [anon_sym__Nonnull] = ACTIONS(7398), - [anon_sym__Nullable_result] = ACTIONS(7398), - [anon_sym__Null_unspecified] = ACTIONS(7398), - [anon_sym___autoreleasing] = ACTIONS(7398), - [anon_sym___nullable] = ACTIONS(7398), - [anon_sym___nonnull] = ACTIONS(7398), - [anon_sym___strong] = ACTIONS(7398), - [anon_sym___weak] = ACTIONS(7398), - [anon_sym___bridge] = ACTIONS(7398), - [anon_sym___bridge_transfer] = ACTIONS(7398), - [anon_sym___bridge_retained] = ACTIONS(7398), - [anon_sym___unsafe_unretained] = ACTIONS(7398), - [anon_sym___block] = ACTIONS(7398), - [anon_sym___kindof] = ACTIONS(7398), - [anon_sym___unused] = ACTIONS(7398), - [anon_sym__Complex] = ACTIONS(7398), - [anon_sym___complex] = ACTIONS(7398), - [anon_sym_IBOutlet] = ACTIONS(7398), - [anon_sym_IBInspectable] = ACTIONS(7398), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7398), - [anon_sym_signed] = ACTIONS(7398), - [anon_sym_unsigned] = ACTIONS(7398), - [anon_sym_long] = ACTIONS(7398), - [anon_sym_short] = ACTIONS(7398), - [sym_primitive_type] = ACTIONS(7398), - [anon_sym_enum] = ACTIONS(7398), - [anon_sym_NS_ENUM] = ACTIONS(7398), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7398), - [anon_sym_NS_OPTIONS] = ACTIONS(7398), - [anon_sym_struct] = ACTIONS(7398), - [anon_sym_union] = ACTIONS(7398), + [sym_identifier] = ACTIONS(7544), + [aux_sym_preproc_def_token1] = ACTIONS(7546), + [anon_sym_DASH] = ACTIONS(7546), + [anon_sym_PLUS] = ACTIONS(7546), + [anon_sym_typedef] = ACTIONS(7544), + [anon_sym_extern] = ACTIONS(7544), + [anon_sym___attribute] = ACTIONS(7544), + [anon_sym___attribute__] = ACTIONS(7544), + [anon_sym___declspec] = ACTIONS(7544), + [anon_sym_static] = ACTIONS(7544), + [anon_sym_auto] = ACTIONS(7544), + [anon_sym_register] = ACTIONS(7544), + [anon_sym_inline] = ACTIONS(7544), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7544), + [anon_sym_const] = ACTIONS(7544), + [anon_sym_volatile] = ACTIONS(7544), + [anon_sym_restrict] = ACTIONS(7544), + [anon_sym__Atomic] = ACTIONS(7544), + [anon_sym_in] = ACTIONS(7544), + [anon_sym_out] = ACTIONS(7544), + [anon_sym_inout] = ACTIONS(7544), + [anon_sym_bycopy] = ACTIONS(7544), + [anon_sym_byref] = ACTIONS(7544), + [anon_sym_oneway] = ACTIONS(7544), + [anon_sym__Nullable] = ACTIONS(7544), + [anon_sym__Nonnull] = ACTIONS(7544), + [anon_sym__Nullable_result] = ACTIONS(7544), + [anon_sym__Null_unspecified] = ACTIONS(7544), + [anon_sym___autoreleasing] = ACTIONS(7544), + [anon_sym___nullable] = ACTIONS(7544), + [anon_sym___nonnull] = ACTIONS(7544), + [anon_sym___strong] = ACTIONS(7544), + [anon_sym___weak] = ACTIONS(7544), + [anon_sym___bridge] = ACTIONS(7544), + [anon_sym___bridge_transfer] = ACTIONS(7544), + [anon_sym___bridge_retained] = ACTIONS(7544), + [anon_sym___unsafe_unretained] = ACTIONS(7544), + [anon_sym___block] = ACTIONS(7544), + [anon_sym___kindof] = ACTIONS(7544), + [anon_sym___unused] = ACTIONS(7544), + [anon_sym__Complex] = ACTIONS(7544), + [anon_sym___complex] = ACTIONS(7544), + [anon_sym_IBOutlet] = ACTIONS(7544), + [anon_sym_IBInspectable] = ACTIONS(7544), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7544), + [anon_sym_signed] = ACTIONS(7544), + [anon_sym_unsigned] = ACTIONS(7544), + [anon_sym_long] = ACTIONS(7544), + [anon_sym_short] = ACTIONS(7544), + [sym_primitive_type] = ACTIONS(7544), + [anon_sym_enum] = ACTIONS(7544), + [anon_sym_struct] = ACTIONS(7544), + [anon_sym_union] = ACTIONS(7544), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7398), - [anon_sym_ATend] = ACTIONS(7400), - [sym_optional] = ACTIONS(7400), - [sym_required] = ACTIONS(7400), - [anon_sym_ATproperty] = ACTIONS(7400), - [sym_method_attribute_specifier] = ACTIONS(7398), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7398), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7398), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7398), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7398), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7398), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7398), - [anon_sym_NS_AVAILABLE] = ACTIONS(7398), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7398), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7398), - [anon_sym_API_AVAILABLE] = ACTIONS(7398), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7398), - [anon_sym_API_DEPRECATED] = ACTIONS(7398), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7398), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7398), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7398), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7398), - [anon_sym___deprecated_msg] = ACTIONS(7398), - [anon_sym___deprecated_enum_msg] = ACTIONS(7398), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7398), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7398), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7398), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7398), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7398), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7398), - [anon_sym_typeof] = ACTIONS(7398), - [anon_sym___typeof] = ACTIONS(7398), - [anon_sym___typeof__] = ACTIONS(7398), - [sym_id] = ACTIONS(7398), - [sym_instancetype] = ACTIONS(7398), - [sym_Class] = ACTIONS(7398), - [sym_SEL] = ACTIONS(7398), - [sym_IMP] = ACTIONS(7398), - [sym_BOOL] = ACTIONS(7398), - [sym_auto] = ACTIONS(7398), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7544), + [anon_sym_ATend] = ACTIONS(7546), + [sym_optional] = ACTIONS(7546), + [sym_required] = ACTIONS(7546), + [anon_sym_ATproperty] = ACTIONS(7546), + [sym_method_attribute_specifier] = ACTIONS(7544), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7544), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7544), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7544), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7544), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7544), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7544), + [anon_sym_NS_AVAILABLE] = ACTIONS(7544), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7544), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7544), + [anon_sym_API_AVAILABLE] = ACTIONS(7544), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7544), + [anon_sym_API_DEPRECATED] = ACTIONS(7544), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7544), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7544), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7544), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7544), + [anon_sym___deprecated_msg] = ACTIONS(7544), + [anon_sym___deprecated_enum_msg] = ACTIONS(7544), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7544), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7544), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7544), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7544), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7544), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7544), + [anon_sym_NS_ENUM] = ACTIONS(7544), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7544), + [anon_sym_NS_OPTIONS] = ACTIONS(7544), + [anon_sym_typeof] = ACTIONS(7544), + [anon_sym___typeof] = ACTIONS(7544), + [anon_sym___typeof__] = ACTIONS(7544), + [sym_id] = ACTIONS(7544), + [sym_instancetype] = ACTIONS(7544), + [sym_Class] = ACTIONS(7544), + [sym_SEL] = ACTIONS(7544), + [sym_IMP] = ACTIONS(7544), + [sym_BOOL] = ACTIONS(7544), + [sym_auto] = ACTIONS(7544), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -504676,103 +502535,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3122] = { - [sym_identifier] = ACTIONS(7402), - [aux_sym_preproc_def_token1] = ACTIONS(7404), - [anon_sym_DASH] = ACTIONS(7404), - [anon_sym_PLUS] = ACTIONS(7404), - [anon_sym_typedef] = ACTIONS(7402), - [anon_sym_extern] = ACTIONS(7402), - [anon_sym___attribute] = ACTIONS(7402), - [anon_sym___attribute__] = ACTIONS(7402), - [anon_sym___declspec] = ACTIONS(7402), - [anon_sym_static] = ACTIONS(7402), - [anon_sym_auto] = ACTIONS(7402), - [anon_sym_register] = ACTIONS(7402), - [anon_sym_inline] = ACTIONS(7402), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7402), - [anon_sym_const] = ACTIONS(7402), - [anon_sym_volatile] = ACTIONS(7402), - [anon_sym_restrict] = ACTIONS(7402), - [anon_sym__Atomic] = ACTIONS(7402), - [anon_sym_in] = ACTIONS(7402), - [anon_sym_out] = ACTIONS(7402), - [anon_sym_inout] = ACTIONS(7402), - [anon_sym_bycopy] = ACTIONS(7402), - [anon_sym_byref] = ACTIONS(7402), - [anon_sym_oneway] = ACTIONS(7402), - [anon_sym__Nullable] = ACTIONS(7402), - [anon_sym__Nonnull] = ACTIONS(7402), - [anon_sym__Nullable_result] = ACTIONS(7402), - [anon_sym__Null_unspecified] = ACTIONS(7402), - [anon_sym___autoreleasing] = ACTIONS(7402), - [anon_sym___nullable] = ACTIONS(7402), - [anon_sym___nonnull] = ACTIONS(7402), - [anon_sym___strong] = ACTIONS(7402), - [anon_sym___weak] = ACTIONS(7402), - [anon_sym___bridge] = ACTIONS(7402), - [anon_sym___bridge_transfer] = ACTIONS(7402), - [anon_sym___bridge_retained] = ACTIONS(7402), - [anon_sym___unsafe_unretained] = ACTIONS(7402), - [anon_sym___block] = ACTIONS(7402), - [anon_sym___kindof] = ACTIONS(7402), - [anon_sym___unused] = ACTIONS(7402), - [anon_sym__Complex] = ACTIONS(7402), - [anon_sym___complex] = ACTIONS(7402), - [anon_sym_IBOutlet] = ACTIONS(7402), - [anon_sym_IBInspectable] = ACTIONS(7402), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7402), - [anon_sym_signed] = ACTIONS(7402), - [anon_sym_unsigned] = ACTIONS(7402), - [anon_sym_long] = ACTIONS(7402), - [anon_sym_short] = ACTIONS(7402), - [sym_primitive_type] = ACTIONS(7402), - [anon_sym_enum] = ACTIONS(7402), - [anon_sym_NS_ENUM] = ACTIONS(7402), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7402), - [anon_sym_NS_OPTIONS] = ACTIONS(7402), - [anon_sym_struct] = ACTIONS(7402), - [anon_sym_union] = ACTIONS(7402), + [sym_identifier] = ACTIONS(7548), + [aux_sym_preproc_def_token1] = ACTIONS(7550), + [anon_sym_DASH] = ACTIONS(7550), + [anon_sym_PLUS] = ACTIONS(7550), + [anon_sym_typedef] = ACTIONS(7548), + [anon_sym_extern] = ACTIONS(7548), + [anon_sym___attribute] = ACTIONS(7548), + [anon_sym___attribute__] = ACTIONS(7548), + [anon_sym___declspec] = ACTIONS(7548), + [anon_sym_static] = ACTIONS(7548), + [anon_sym_auto] = ACTIONS(7548), + [anon_sym_register] = ACTIONS(7548), + [anon_sym_inline] = ACTIONS(7548), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7548), + [anon_sym_const] = ACTIONS(7548), + [anon_sym_volatile] = ACTIONS(7548), + [anon_sym_restrict] = ACTIONS(7548), + [anon_sym__Atomic] = ACTIONS(7548), + [anon_sym_in] = ACTIONS(7548), + [anon_sym_out] = ACTIONS(7548), + [anon_sym_inout] = ACTIONS(7548), + [anon_sym_bycopy] = ACTIONS(7548), + [anon_sym_byref] = ACTIONS(7548), + [anon_sym_oneway] = ACTIONS(7548), + [anon_sym__Nullable] = ACTIONS(7548), + [anon_sym__Nonnull] = ACTIONS(7548), + [anon_sym__Nullable_result] = ACTIONS(7548), + [anon_sym__Null_unspecified] = ACTIONS(7548), + [anon_sym___autoreleasing] = ACTIONS(7548), + [anon_sym___nullable] = ACTIONS(7548), + [anon_sym___nonnull] = ACTIONS(7548), + [anon_sym___strong] = ACTIONS(7548), + [anon_sym___weak] = ACTIONS(7548), + [anon_sym___bridge] = ACTIONS(7548), + [anon_sym___bridge_transfer] = ACTIONS(7548), + [anon_sym___bridge_retained] = ACTIONS(7548), + [anon_sym___unsafe_unretained] = ACTIONS(7548), + [anon_sym___block] = ACTIONS(7548), + [anon_sym___kindof] = ACTIONS(7548), + [anon_sym___unused] = ACTIONS(7548), + [anon_sym__Complex] = ACTIONS(7548), + [anon_sym___complex] = ACTIONS(7548), + [anon_sym_IBOutlet] = ACTIONS(7548), + [anon_sym_IBInspectable] = ACTIONS(7548), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7548), + [anon_sym_signed] = ACTIONS(7548), + [anon_sym_unsigned] = ACTIONS(7548), + [anon_sym_long] = ACTIONS(7548), + [anon_sym_short] = ACTIONS(7548), + [sym_primitive_type] = ACTIONS(7548), + [anon_sym_enum] = ACTIONS(7548), + [anon_sym_struct] = ACTIONS(7548), + [anon_sym_union] = ACTIONS(7548), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7402), - [anon_sym_ATend] = ACTIONS(7404), - [sym_optional] = ACTIONS(7404), - [sym_required] = ACTIONS(7404), - [anon_sym_ATproperty] = ACTIONS(7404), - [sym_method_attribute_specifier] = ACTIONS(7402), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7402), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7402), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7402), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7402), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7402), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7402), - [anon_sym_NS_AVAILABLE] = ACTIONS(7402), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7402), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7402), - [anon_sym_API_AVAILABLE] = ACTIONS(7402), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7402), - [anon_sym_API_DEPRECATED] = ACTIONS(7402), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7402), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7402), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7402), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7402), - [anon_sym___deprecated_msg] = ACTIONS(7402), - [anon_sym___deprecated_enum_msg] = ACTIONS(7402), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7402), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7402), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7402), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7402), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7402), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7402), - [anon_sym_typeof] = ACTIONS(7402), - [anon_sym___typeof] = ACTIONS(7402), - [anon_sym___typeof__] = ACTIONS(7402), - [sym_id] = ACTIONS(7402), - [sym_instancetype] = ACTIONS(7402), - [sym_Class] = ACTIONS(7402), - [sym_SEL] = ACTIONS(7402), - [sym_IMP] = ACTIONS(7402), - [sym_BOOL] = ACTIONS(7402), - [sym_auto] = ACTIONS(7402), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7548), + [anon_sym_ATend] = ACTIONS(7550), + [sym_optional] = ACTIONS(7550), + [sym_required] = ACTIONS(7550), + [anon_sym_ATproperty] = ACTIONS(7550), + [sym_method_attribute_specifier] = ACTIONS(7548), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7548), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7548), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7548), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7548), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7548), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7548), + [anon_sym_NS_AVAILABLE] = ACTIONS(7548), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7548), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7548), + [anon_sym_API_AVAILABLE] = ACTIONS(7548), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7548), + [anon_sym_API_DEPRECATED] = ACTIONS(7548), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7548), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7548), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7548), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7548), + [anon_sym___deprecated_msg] = ACTIONS(7548), + [anon_sym___deprecated_enum_msg] = ACTIONS(7548), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7548), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7548), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7548), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7548), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7548), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7548), + [anon_sym_NS_ENUM] = ACTIONS(7548), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7548), + [anon_sym_NS_OPTIONS] = ACTIONS(7548), + [anon_sym_typeof] = ACTIONS(7548), + [anon_sym___typeof] = ACTIONS(7548), + [anon_sym___typeof__] = ACTIONS(7548), + [sym_id] = ACTIONS(7548), + [sym_instancetype] = ACTIONS(7548), + [sym_Class] = ACTIONS(7548), + [sym_SEL] = ACTIONS(7548), + [sym_IMP] = ACTIONS(7548), + [sym_BOOL] = ACTIONS(7548), + [sym_auto] = ACTIONS(7548), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -504781,103 +502640,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3123] = { - [sym_identifier] = ACTIONS(7406), - [aux_sym_preproc_def_token1] = ACTIONS(7408), - [anon_sym_DASH] = ACTIONS(7408), - [anon_sym_PLUS] = ACTIONS(7408), - [anon_sym_typedef] = ACTIONS(7406), - [anon_sym_extern] = ACTIONS(7406), - [anon_sym___attribute] = ACTIONS(7406), - [anon_sym___attribute__] = ACTIONS(7406), - [anon_sym___declspec] = ACTIONS(7406), - [anon_sym_static] = ACTIONS(7406), - [anon_sym_auto] = ACTIONS(7406), - [anon_sym_register] = ACTIONS(7406), - [anon_sym_inline] = ACTIONS(7406), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7406), - [anon_sym_const] = ACTIONS(7406), - [anon_sym_volatile] = ACTIONS(7406), - [anon_sym_restrict] = ACTIONS(7406), - [anon_sym__Atomic] = ACTIONS(7406), - [anon_sym_in] = ACTIONS(7406), - [anon_sym_out] = ACTIONS(7406), - [anon_sym_inout] = ACTIONS(7406), - [anon_sym_bycopy] = ACTIONS(7406), - [anon_sym_byref] = ACTIONS(7406), - [anon_sym_oneway] = ACTIONS(7406), - [anon_sym__Nullable] = ACTIONS(7406), - [anon_sym__Nonnull] = ACTIONS(7406), - [anon_sym__Nullable_result] = ACTIONS(7406), - [anon_sym__Null_unspecified] = ACTIONS(7406), - [anon_sym___autoreleasing] = ACTIONS(7406), - [anon_sym___nullable] = ACTIONS(7406), - [anon_sym___nonnull] = ACTIONS(7406), - [anon_sym___strong] = ACTIONS(7406), - [anon_sym___weak] = ACTIONS(7406), - [anon_sym___bridge] = ACTIONS(7406), - [anon_sym___bridge_transfer] = ACTIONS(7406), - [anon_sym___bridge_retained] = ACTIONS(7406), - [anon_sym___unsafe_unretained] = ACTIONS(7406), - [anon_sym___block] = ACTIONS(7406), - [anon_sym___kindof] = ACTIONS(7406), - [anon_sym___unused] = ACTIONS(7406), - [anon_sym__Complex] = ACTIONS(7406), - [anon_sym___complex] = ACTIONS(7406), - [anon_sym_IBOutlet] = ACTIONS(7406), - [anon_sym_IBInspectable] = ACTIONS(7406), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7406), - [anon_sym_signed] = ACTIONS(7406), - [anon_sym_unsigned] = ACTIONS(7406), - [anon_sym_long] = ACTIONS(7406), - [anon_sym_short] = ACTIONS(7406), - [sym_primitive_type] = ACTIONS(7406), - [anon_sym_enum] = ACTIONS(7406), - [anon_sym_NS_ENUM] = ACTIONS(7406), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7406), - [anon_sym_NS_OPTIONS] = ACTIONS(7406), - [anon_sym_struct] = ACTIONS(7406), - [anon_sym_union] = ACTIONS(7406), + [sym_identifier] = ACTIONS(7552), + [aux_sym_preproc_def_token1] = ACTIONS(7554), + [anon_sym_DASH] = ACTIONS(7554), + [anon_sym_PLUS] = ACTIONS(7554), + [anon_sym_typedef] = ACTIONS(7552), + [anon_sym_extern] = ACTIONS(7552), + [anon_sym___attribute] = ACTIONS(7552), + [anon_sym___attribute__] = ACTIONS(7552), + [anon_sym___declspec] = ACTIONS(7552), + [anon_sym_static] = ACTIONS(7552), + [anon_sym_auto] = ACTIONS(7552), + [anon_sym_register] = ACTIONS(7552), + [anon_sym_inline] = ACTIONS(7552), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7552), + [anon_sym_const] = ACTIONS(7552), + [anon_sym_volatile] = ACTIONS(7552), + [anon_sym_restrict] = ACTIONS(7552), + [anon_sym__Atomic] = ACTIONS(7552), + [anon_sym_in] = ACTIONS(7552), + [anon_sym_out] = ACTIONS(7552), + [anon_sym_inout] = ACTIONS(7552), + [anon_sym_bycopy] = ACTIONS(7552), + [anon_sym_byref] = ACTIONS(7552), + [anon_sym_oneway] = ACTIONS(7552), + [anon_sym__Nullable] = ACTIONS(7552), + [anon_sym__Nonnull] = ACTIONS(7552), + [anon_sym__Nullable_result] = ACTIONS(7552), + [anon_sym__Null_unspecified] = ACTIONS(7552), + [anon_sym___autoreleasing] = ACTIONS(7552), + [anon_sym___nullable] = ACTIONS(7552), + [anon_sym___nonnull] = ACTIONS(7552), + [anon_sym___strong] = ACTIONS(7552), + [anon_sym___weak] = ACTIONS(7552), + [anon_sym___bridge] = ACTIONS(7552), + [anon_sym___bridge_transfer] = ACTIONS(7552), + [anon_sym___bridge_retained] = ACTIONS(7552), + [anon_sym___unsafe_unretained] = ACTIONS(7552), + [anon_sym___block] = ACTIONS(7552), + [anon_sym___kindof] = ACTIONS(7552), + [anon_sym___unused] = ACTIONS(7552), + [anon_sym__Complex] = ACTIONS(7552), + [anon_sym___complex] = ACTIONS(7552), + [anon_sym_IBOutlet] = ACTIONS(7552), + [anon_sym_IBInspectable] = ACTIONS(7552), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7552), + [anon_sym_signed] = ACTIONS(7552), + [anon_sym_unsigned] = ACTIONS(7552), + [anon_sym_long] = ACTIONS(7552), + [anon_sym_short] = ACTIONS(7552), + [sym_primitive_type] = ACTIONS(7552), + [anon_sym_enum] = ACTIONS(7552), + [anon_sym_struct] = ACTIONS(7552), + [anon_sym_union] = ACTIONS(7552), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7406), - [anon_sym_ATend] = ACTIONS(7408), - [sym_optional] = ACTIONS(7408), - [sym_required] = ACTIONS(7408), - [anon_sym_ATproperty] = ACTIONS(7408), - [sym_method_attribute_specifier] = ACTIONS(7406), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7406), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7406), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7406), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7406), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7406), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7406), - [anon_sym_NS_AVAILABLE] = ACTIONS(7406), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7406), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7406), - [anon_sym_API_AVAILABLE] = ACTIONS(7406), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7406), - [anon_sym_API_DEPRECATED] = ACTIONS(7406), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7406), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7406), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7406), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7406), - [anon_sym___deprecated_msg] = ACTIONS(7406), - [anon_sym___deprecated_enum_msg] = ACTIONS(7406), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7406), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7406), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7406), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7406), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7406), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7406), - [anon_sym_typeof] = ACTIONS(7406), - [anon_sym___typeof] = ACTIONS(7406), - [anon_sym___typeof__] = ACTIONS(7406), - [sym_id] = ACTIONS(7406), - [sym_instancetype] = ACTIONS(7406), - [sym_Class] = ACTIONS(7406), - [sym_SEL] = ACTIONS(7406), - [sym_IMP] = ACTIONS(7406), - [sym_BOOL] = ACTIONS(7406), - [sym_auto] = ACTIONS(7406), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7552), + [anon_sym_ATend] = ACTIONS(7554), + [sym_optional] = ACTIONS(7554), + [sym_required] = ACTIONS(7554), + [anon_sym_ATproperty] = ACTIONS(7554), + [sym_method_attribute_specifier] = ACTIONS(7552), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7552), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7552), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7552), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7552), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7552), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7552), + [anon_sym_NS_AVAILABLE] = ACTIONS(7552), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7552), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7552), + [anon_sym_API_AVAILABLE] = ACTIONS(7552), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7552), + [anon_sym_API_DEPRECATED] = ACTIONS(7552), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7552), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7552), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7552), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7552), + [anon_sym___deprecated_msg] = ACTIONS(7552), + [anon_sym___deprecated_enum_msg] = ACTIONS(7552), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7552), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7552), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7552), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7552), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7552), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7552), + [anon_sym_NS_ENUM] = ACTIONS(7552), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7552), + [anon_sym_NS_OPTIONS] = ACTIONS(7552), + [anon_sym_typeof] = ACTIONS(7552), + [anon_sym___typeof] = ACTIONS(7552), + [anon_sym___typeof__] = ACTIONS(7552), + [sym_id] = ACTIONS(7552), + [sym_instancetype] = ACTIONS(7552), + [sym_Class] = ACTIONS(7552), + [sym_SEL] = ACTIONS(7552), + [sym_IMP] = ACTIONS(7552), + [sym_BOOL] = ACTIONS(7552), + [sym_auto] = ACTIONS(7552), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -504886,103 +502745,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3124] = { - [sym_identifier] = ACTIONS(2022), - [anon_sym_COMMA] = ACTIONS(2024), - [anon_sym_RPAREN] = ACTIONS(2024), - [anon_sym_LPAREN2] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2022), - [anon_sym_PLUS] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(2024), - [anon_sym_SLASH] = ACTIONS(2022), - [anon_sym_PERCENT] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_CARET] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2022), - [anon_sym_EQ_EQ] = ACTIONS(2024), - [anon_sym_BANG_EQ] = ACTIONS(2024), - [anon_sym_GT] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2024), - [anon_sym_LT_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2022), - [anon_sym_LT_LT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym___attribute] = ACTIONS(2022), - [anon_sym___attribute__] = ACTIONS(2022), - [anon_sym_RBRACE] = ACTIONS(2024), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_RBRACK] = ACTIONS(2024), - [anon_sym_const] = ACTIONS(2022), - [anon_sym_volatile] = ACTIONS(2022), - [anon_sym_restrict] = ACTIONS(2022), - [anon_sym__Atomic] = ACTIONS(2022), - [anon_sym_in] = ACTIONS(2022), - [anon_sym_out] = ACTIONS(2022), - [anon_sym_inout] = ACTIONS(2022), - [anon_sym_bycopy] = ACTIONS(2022), - [anon_sym_byref] = ACTIONS(2022), - [anon_sym_oneway] = ACTIONS(2022), - [anon_sym__Nullable] = ACTIONS(2022), - [anon_sym__Nonnull] = ACTIONS(2022), - [anon_sym__Nullable_result] = ACTIONS(2022), - [anon_sym__Null_unspecified] = ACTIONS(2022), - [anon_sym___autoreleasing] = ACTIONS(2022), - [anon_sym___nullable] = ACTIONS(2022), - [anon_sym___nonnull] = ACTIONS(2022), - [anon_sym___strong] = ACTIONS(2022), - [anon_sym___weak] = ACTIONS(2022), - [anon_sym___bridge] = ACTIONS(2022), - [anon_sym___bridge_transfer] = ACTIONS(2022), - [anon_sym___bridge_retained] = ACTIONS(2022), - [anon_sym___unsafe_unretained] = ACTIONS(2022), - [anon_sym___block] = ACTIONS(2022), - [anon_sym___kindof] = ACTIONS(2022), - [anon_sym___unused] = ACTIONS(2022), - [anon_sym__Complex] = ACTIONS(2022), - [anon_sym___complex] = ACTIONS(2022), - [anon_sym_IBOutlet] = ACTIONS(2022), - [anon_sym_IBInspectable] = ACTIONS(2022), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2022), - [anon_sym_COLON] = ACTIONS(2024), - [anon_sym_QMARK] = ACTIONS(2024), - [anon_sym_DASH_DASH] = ACTIONS(2024), - [anon_sym_PLUS_PLUS] = ACTIONS(2024), - [anon_sym_DOT] = ACTIONS(2024), - [anon_sym_DASH_GT] = ACTIONS(2024), - [anon_sym_L_DQUOTE] = ACTIONS(2024), - [anon_sym_u_DQUOTE] = ACTIONS(2024), - [anon_sym_U_DQUOTE] = ACTIONS(2024), - [anon_sym_u8_DQUOTE] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2024), + [sym_identifier] = ACTIONS(7532), + [aux_sym_preproc_def_token1] = ACTIONS(7534), + [anon_sym_DASH] = ACTIONS(7534), + [anon_sym_PLUS] = ACTIONS(7534), + [anon_sym_typedef] = ACTIONS(7532), + [anon_sym_extern] = ACTIONS(7532), + [anon_sym___attribute] = ACTIONS(7532), + [anon_sym___attribute__] = ACTIONS(7532), + [anon_sym___declspec] = ACTIONS(7532), + [anon_sym_static] = ACTIONS(7532), + [anon_sym_auto] = ACTIONS(7532), + [anon_sym_register] = ACTIONS(7532), + [anon_sym_inline] = ACTIONS(7532), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7532), + [anon_sym_const] = ACTIONS(7532), + [anon_sym_volatile] = ACTIONS(7532), + [anon_sym_restrict] = ACTIONS(7532), + [anon_sym__Atomic] = ACTIONS(7532), + [anon_sym_in] = ACTIONS(7532), + [anon_sym_out] = ACTIONS(7532), + [anon_sym_inout] = ACTIONS(7532), + [anon_sym_bycopy] = ACTIONS(7532), + [anon_sym_byref] = ACTIONS(7532), + [anon_sym_oneway] = ACTIONS(7532), + [anon_sym__Nullable] = ACTIONS(7532), + [anon_sym__Nonnull] = ACTIONS(7532), + [anon_sym__Nullable_result] = ACTIONS(7532), + [anon_sym__Null_unspecified] = ACTIONS(7532), + [anon_sym___autoreleasing] = ACTIONS(7532), + [anon_sym___nullable] = ACTIONS(7532), + [anon_sym___nonnull] = ACTIONS(7532), + [anon_sym___strong] = ACTIONS(7532), + [anon_sym___weak] = ACTIONS(7532), + [anon_sym___bridge] = ACTIONS(7532), + [anon_sym___bridge_transfer] = ACTIONS(7532), + [anon_sym___bridge_retained] = ACTIONS(7532), + [anon_sym___unsafe_unretained] = ACTIONS(7532), + [anon_sym___block] = ACTIONS(7532), + [anon_sym___kindof] = ACTIONS(7532), + [anon_sym___unused] = ACTIONS(7532), + [anon_sym__Complex] = ACTIONS(7532), + [anon_sym___complex] = ACTIONS(7532), + [anon_sym_IBOutlet] = ACTIONS(7532), + [anon_sym_IBInspectable] = ACTIONS(7532), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7532), + [anon_sym_signed] = ACTIONS(7532), + [anon_sym_unsigned] = ACTIONS(7532), + [anon_sym_long] = ACTIONS(7532), + [anon_sym_short] = ACTIONS(7532), + [sym_primitive_type] = ACTIONS(7532), + [anon_sym_enum] = ACTIONS(7532), + [anon_sym_struct] = ACTIONS(7532), + [anon_sym_union] = ACTIONS(7532), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(2022), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2022), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2022), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2022), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2022), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2022), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2022), - [anon_sym_NS_AVAILABLE] = ACTIONS(2022), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2022), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_API_AVAILABLE] = ACTIONS(2022), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2022), - [anon_sym_API_DEPRECATED] = ACTIONS(2022), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2022), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2022), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2022), - [anon_sym___deprecated_msg] = ACTIONS(2022), - [anon_sym___deprecated_enum_msg] = ACTIONS(2022), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2022), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2022), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2022), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2022), - [anon_sym_AT] = ACTIONS(2024), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7532), + [anon_sym_ATend] = ACTIONS(7534), + [sym_optional] = ACTIONS(7534), + [sym_required] = ACTIONS(7534), + [anon_sym_ATproperty] = ACTIONS(7534), + [sym_method_attribute_specifier] = ACTIONS(7532), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7532), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7532), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7532), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7532), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7532), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7532), + [anon_sym_NS_AVAILABLE] = ACTIONS(7532), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7532), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7532), + [anon_sym_API_AVAILABLE] = ACTIONS(7532), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7532), + [anon_sym_API_DEPRECATED] = ACTIONS(7532), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7532), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7532), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7532), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7532), + [anon_sym___deprecated_msg] = ACTIONS(7532), + [anon_sym___deprecated_enum_msg] = ACTIONS(7532), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7532), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7532), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7532), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7532), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7532), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7532), + [anon_sym_NS_ENUM] = ACTIONS(7532), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7532), + [anon_sym_NS_OPTIONS] = ACTIONS(7532), + [anon_sym_typeof] = ACTIONS(7532), + [anon_sym___typeof] = ACTIONS(7532), + [anon_sym___typeof__] = ACTIONS(7532), + [sym_id] = ACTIONS(7532), + [sym_instancetype] = ACTIONS(7532), + [sym_Class] = ACTIONS(7532), + [sym_SEL] = ACTIONS(7532), + [sym_IMP] = ACTIONS(7532), + [sym_BOOL] = ACTIONS(7532), + [sym_auto] = ACTIONS(7532), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -504991,103 +502850,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3125] = { - [sym_identifier] = ACTIONS(7406), - [aux_sym_preproc_def_token1] = ACTIONS(7408), - [anon_sym_DASH] = ACTIONS(7408), - [anon_sym_PLUS] = ACTIONS(7408), - [anon_sym_typedef] = ACTIONS(7406), - [anon_sym_extern] = ACTIONS(7406), - [anon_sym___attribute] = ACTIONS(7406), - [anon_sym___attribute__] = ACTIONS(7406), - [anon_sym___declspec] = ACTIONS(7406), - [anon_sym_static] = ACTIONS(7406), - [anon_sym_auto] = ACTIONS(7406), - [anon_sym_register] = ACTIONS(7406), - [anon_sym_inline] = ACTIONS(7406), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7406), - [anon_sym_const] = ACTIONS(7406), - [anon_sym_volatile] = ACTIONS(7406), - [anon_sym_restrict] = ACTIONS(7406), - [anon_sym__Atomic] = ACTIONS(7406), - [anon_sym_in] = ACTIONS(7406), - [anon_sym_out] = ACTIONS(7406), - [anon_sym_inout] = ACTIONS(7406), - [anon_sym_bycopy] = ACTIONS(7406), - [anon_sym_byref] = ACTIONS(7406), - [anon_sym_oneway] = ACTIONS(7406), - [anon_sym__Nullable] = ACTIONS(7406), - [anon_sym__Nonnull] = ACTIONS(7406), - [anon_sym__Nullable_result] = ACTIONS(7406), - [anon_sym__Null_unspecified] = ACTIONS(7406), - [anon_sym___autoreleasing] = ACTIONS(7406), - [anon_sym___nullable] = ACTIONS(7406), - [anon_sym___nonnull] = ACTIONS(7406), - [anon_sym___strong] = ACTIONS(7406), - [anon_sym___weak] = ACTIONS(7406), - [anon_sym___bridge] = ACTIONS(7406), - [anon_sym___bridge_transfer] = ACTIONS(7406), - [anon_sym___bridge_retained] = ACTIONS(7406), - [anon_sym___unsafe_unretained] = ACTIONS(7406), - [anon_sym___block] = ACTIONS(7406), - [anon_sym___kindof] = ACTIONS(7406), - [anon_sym___unused] = ACTIONS(7406), - [anon_sym__Complex] = ACTIONS(7406), - [anon_sym___complex] = ACTIONS(7406), - [anon_sym_IBOutlet] = ACTIONS(7406), - [anon_sym_IBInspectable] = ACTIONS(7406), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7406), - [anon_sym_signed] = ACTIONS(7406), - [anon_sym_unsigned] = ACTIONS(7406), - [anon_sym_long] = ACTIONS(7406), - [anon_sym_short] = ACTIONS(7406), - [sym_primitive_type] = ACTIONS(7406), - [anon_sym_enum] = ACTIONS(7406), - [anon_sym_NS_ENUM] = ACTIONS(7406), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7406), - [anon_sym_NS_OPTIONS] = ACTIONS(7406), - [anon_sym_struct] = ACTIONS(7406), - [anon_sym_union] = ACTIONS(7406), + [sym_identifier] = ACTIONS(7552), + [aux_sym_preproc_def_token1] = ACTIONS(7554), + [anon_sym_DASH] = ACTIONS(7554), + [anon_sym_PLUS] = ACTIONS(7554), + [anon_sym_typedef] = ACTIONS(7552), + [anon_sym_extern] = ACTIONS(7552), + [anon_sym___attribute] = ACTIONS(7552), + [anon_sym___attribute__] = ACTIONS(7552), + [anon_sym___declspec] = ACTIONS(7552), + [anon_sym_static] = ACTIONS(7552), + [anon_sym_auto] = ACTIONS(7552), + [anon_sym_register] = ACTIONS(7552), + [anon_sym_inline] = ACTIONS(7552), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7552), + [anon_sym_const] = ACTIONS(7552), + [anon_sym_volatile] = ACTIONS(7552), + [anon_sym_restrict] = ACTIONS(7552), + [anon_sym__Atomic] = ACTIONS(7552), + [anon_sym_in] = ACTIONS(7552), + [anon_sym_out] = ACTIONS(7552), + [anon_sym_inout] = ACTIONS(7552), + [anon_sym_bycopy] = ACTIONS(7552), + [anon_sym_byref] = ACTIONS(7552), + [anon_sym_oneway] = ACTIONS(7552), + [anon_sym__Nullable] = ACTIONS(7552), + [anon_sym__Nonnull] = ACTIONS(7552), + [anon_sym__Nullable_result] = ACTIONS(7552), + [anon_sym__Null_unspecified] = ACTIONS(7552), + [anon_sym___autoreleasing] = ACTIONS(7552), + [anon_sym___nullable] = ACTIONS(7552), + [anon_sym___nonnull] = ACTIONS(7552), + [anon_sym___strong] = ACTIONS(7552), + [anon_sym___weak] = ACTIONS(7552), + [anon_sym___bridge] = ACTIONS(7552), + [anon_sym___bridge_transfer] = ACTIONS(7552), + [anon_sym___bridge_retained] = ACTIONS(7552), + [anon_sym___unsafe_unretained] = ACTIONS(7552), + [anon_sym___block] = ACTIONS(7552), + [anon_sym___kindof] = ACTIONS(7552), + [anon_sym___unused] = ACTIONS(7552), + [anon_sym__Complex] = ACTIONS(7552), + [anon_sym___complex] = ACTIONS(7552), + [anon_sym_IBOutlet] = ACTIONS(7552), + [anon_sym_IBInspectable] = ACTIONS(7552), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7552), + [anon_sym_signed] = ACTIONS(7552), + [anon_sym_unsigned] = ACTIONS(7552), + [anon_sym_long] = ACTIONS(7552), + [anon_sym_short] = ACTIONS(7552), + [sym_primitive_type] = ACTIONS(7552), + [anon_sym_enum] = ACTIONS(7552), + [anon_sym_struct] = ACTIONS(7552), + [anon_sym_union] = ACTIONS(7552), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7406), - [anon_sym_ATend] = ACTIONS(7408), - [sym_optional] = ACTIONS(7408), - [sym_required] = ACTIONS(7408), - [anon_sym_ATproperty] = ACTIONS(7408), - [sym_method_attribute_specifier] = ACTIONS(7406), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7406), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7406), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7406), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7406), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7406), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7406), - [anon_sym_NS_AVAILABLE] = ACTIONS(7406), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7406), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7406), - [anon_sym_API_AVAILABLE] = ACTIONS(7406), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7406), - [anon_sym_API_DEPRECATED] = ACTIONS(7406), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7406), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7406), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7406), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7406), - [anon_sym___deprecated_msg] = ACTIONS(7406), - [anon_sym___deprecated_enum_msg] = ACTIONS(7406), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7406), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7406), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7406), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7406), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7406), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7406), - [anon_sym_typeof] = ACTIONS(7406), - [anon_sym___typeof] = ACTIONS(7406), - [anon_sym___typeof__] = ACTIONS(7406), - [sym_id] = ACTIONS(7406), - [sym_instancetype] = ACTIONS(7406), - [sym_Class] = ACTIONS(7406), - [sym_SEL] = ACTIONS(7406), - [sym_IMP] = ACTIONS(7406), - [sym_BOOL] = ACTIONS(7406), - [sym_auto] = ACTIONS(7406), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7552), + [anon_sym_ATend] = ACTIONS(7554), + [sym_optional] = ACTIONS(7554), + [sym_required] = ACTIONS(7554), + [anon_sym_ATproperty] = ACTIONS(7554), + [sym_method_attribute_specifier] = ACTIONS(7552), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7552), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7552), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7552), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7552), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7552), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7552), + [anon_sym_NS_AVAILABLE] = ACTIONS(7552), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7552), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7552), + [anon_sym_API_AVAILABLE] = ACTIONS(7552), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7552), + [anon_sym_API_DEPRECATED] = ACTIONS(7552), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7552), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7552), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7552), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7552), + [anon_sym___deprecated_msg] = ACTIONS(7552), + [anon_sym___deprecated_enum_msg] = ACTIONS(7552), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7552), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7552), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7552), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7552), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7552), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7552), + [anon_sym_NS_ENUM] = ACTIONS(7552), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7552), + [anon_sym_NS_OPTIONS] = ACTIONS(7552), + [anon_sym_typeof] = ACTIONS(7552), + [anon_sym___typeof] = ACTIONS(7552), + [anon_sym___typeof__] = ACTIONS(7552), + [sym_id] = ACTIONS(7552), + [sym_instancetype] = ACTIONS(7552), + [sym_Class] = ACTIONS(7552), + [sym_SEL] = ACTIONS(7552), + [sym_IMP] = ACTIONS(7552), + [sym_BOOL] = ACTIONS(7552), + [sym_auto] = ACTIONS(7552), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -505096,103 +502955,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3126] = { - [sym_identifier] = ACTIONS(7410), - [aux_sym_preproc_def_token1] = ACTIONS(7412), - [anon_sym_DASH] = ACTIONS(7412), - [anon_sym_PLUS] = ACTIONS(7412), - [anon_sym_typedef] = ACTIONS(7410), - [anon_sym_extern] = ACTIONS(7410), - [anon_sym___attribute] = ACTIONS(7410), - [anon_sym___attribute__] = ACTIONS(7410), - [anon_sym___declspec] = ACTIONS(7410), - [anon_sym_static] = ACTIONS(7410), - [anon_sym_auto] = ACTIONS(7410), - [anon_sym_register] = ACTIONS(7410), - [anon_sym_inline] = ACTIONS(7410), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7410), - [anon_sym_const] = ACTIONS(7410), - [anon_sym_volatile] = ACTIONS(7410), - [anon_sym_restrict] = ACTIONS(7410), - [anon_sym__Atomic] = ACTIONS(7410), - [anon_sym_in] = ACTIONS(7410), - [anon_sym_out] = ACTIONS(7410), - [anon_sym_inout] = ACTIONS(7410), - [anon_sym_bycopy] = ACTIONS(7410), - [anon_sym_byref] = ACTIONS(7410), - [anon_sym_oneway] = ACTIONS(7410), - [anon_sym__Nullable] = ACTIONS(7410), - [anon_sym__Nonnull] = ACTIONS(7410), - [anon_sym__Nullable_result] = ACTIONS(7410), - [anon_sym__Null_unspecified] = ACTIONS(7410), - [anon_sym___autoreleasing] = ACTIONS(7410), - [anon_sym___nullable] = ACTIONS(7410), - [anon_sym___nonnull] = ACTIONS(7410), - [anon_sym___strong] = ACTIONS(7410), - [anon_sym___weak] = ACTIONS(7410), - [anon_sym___bridge] = ACTIONS(7410), - [anon_sym___bridge_transfer] = ACTIONS(7410), - [anon_sym___bridge_retained] = ACTIONS(7410), - [anon_sym___unsafe_unretained] = ACTIONS(7410), - [anon_sym___block] = ACTIONS(7410), - [anon_sym___kindof] = ACTIONS(7410), - [anon_sym___unused] = ACTIONS(7410), - [anon_sym__Complex] = ACTIONS(7410), - [anon_sym___complex] = ACTIONS(7410), - [anon_sym_IBOutlet] = ACTIONS(7410), - [anon_sym_IBInspectable] = ACTIONS(7410), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7410), - [anon_sym_signed] = ACTIONS(7410), - [anon_sym_unsigned] = ACTIONS(7410), - [anon_sym_long] = ACTIONS(7410), - [anon_sym_short] = ACTIONS(7410), - [sym_primitive_type] = ACTIONS(7410), - [anon_sym_enum] = ACTIONS(7410), - [anon_sym_NS_ENUM] = ACTIONS(7410), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7410), - [anon_sym_NS_OPTIONS] = ACTIONS(7410), - [anon_sym_struct] = ACTIONS(7410), - [anon_sym_union] = ACTIONS(7410), + [sym_identifier] = ACTIONS(7556), + [aux_sym_preproc_def_token1] = ACTIONS(7558), + [anon_sym_DASH] = ACTIONS(7558), + [anon_sym_PLUS] = ACTIONS(7558), + [anon_sym_typedef] = ACTIONS(7556), + [anon_sym_extern] = ACTIONS(7556), + [anon_sym___attribute] = ACTIONS(7556), + [anon_sym___attribute__] = ACTIONS(7556), + [anon_sym___declspec] = ACTIONS(7556), + [anon_sym_static] = ACTIONS(7556), + [anon_sym_auto] = ACTIONS(7556), + [anon_sym_register] = ACTIONS(7556), + [anon_sym_inline] = ACTIONS(7556), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7556), + [anon_sym_const] = ACTIONS(7556), + [anon_sym_volatile] = ACTIONS(7556), + [anon_sym_restrict] = ACTIONS(7556), + [anon_sym__Atomic] = ACTIONS(7556), + [anon_sym_in] = ACTIONS(7556), + [anon_sym_out] = ACTIONS(7556), + [anon_sym_inout] = ACTIONS(7556), + [anon_sym_bycopy] = ACTIONS(7556), + [anon_sym_byref] = ACTIONS(7556), + [anon_sym_oneway] = ACTIONS(7556), + [anon_sym__Nullable] = ACTIONS(7556), + [anon_sym__Nonnull] = ACTIONS(7556), + [anon_sym__Nullable_result] = ACTIONS(7556), + [anon_sym__Null_unspecified] = ACTIONS(7556), + [anon_sym___autoreleasing] = ACTIONS(7556), + [anon_sym___nullable] = ACTIONS(7556), + [anon_sym___nonnull] = ACTIONS(7556), + [anon_sym___strong] = ACTIONS(7556), + [anon_sym___weak] = ACTIONS(7556), + [anon_sym___bridge] = ACTIONS(7556), + [anon_sym___bridge_transfer] = ACTIONS(7556), + [anon_sym___bridge_retained] = ACTIONS(7556), + [anon_sym___unsafe_unretained] = ACTIONS(7556), + [anon_sym___block] = ACTIONS(7556), + [anon_sym___kindof] = ACTIONS(7556), + [anon_sym___unused] = ACTIONS(7556), + [anon_sym__Complex] = ACTIONS(7556), + [anon_sym___complex] = ACTIONS(7556), + [anon_sym_IBOutlet] = ACTIONS(7556), + [anon_sym_IBInspectable] = ACTIONS(7556), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7556), + [anon_sym_signed] = ACTIONS(7556), + [anon_sym_unsigned] = ACTIONS(7556), + [anon_sym_long] = ACTIONS(7556), + [anon_sym_short] = ACTIONS(7556), + [sym_primitive_type] = ACTIONS(7556), + [anon_sym_enum] = ACTIONS(7556), + [anon_sym_struct] = ACTIONS(7556), + [anon_sym_union] = ACTIONS(7556), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7410), - [anon_sym_ATend] = ACTIONS(7412), - [sym_optional] = ACTIONS(7412), - [sym_required] = ACTIONS(7412), - [anon_sym_ATproperty] = ACTIONS(7412), - [sym_method_attribute_specifier] = ACTIONS(7410), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7410), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7410), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7410), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7410), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7410), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7410), - [anon_sym_NS_AVAILABLE] = ACTIONS(7410), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7410), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7410), - [anon_sym_API_AVAILABLE] = ACTIONS(7410), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7410), - [anon_sym_API_DEPRECATED] = ACTIONS(7410), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7410), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7410), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7410), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7410), - [anon_sym___deprecated_msg] = ACTIONS(7410), - [anon_sym___deprecated_enum_msg] = ACTIONS(7410), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7410), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7410), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7410), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7410), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7410), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7410), - [anon_sym_typeof] = ACTIONS(7410), - [anon_sym___typeof] = ACTIONS(7410), - [anon_sym___typeof__] = ACTIONS(7410), - [sym_id] = ACTIONS(7410), - [sym_instancetype] = ACTIONS(7410), - [sym_Class] = ACTIONS(7410), - [sym_SEL] = ACTIONS(7410), - [sym_IMP] = ACTIONS(7410), - [sym_BOOL] = ACTIONS(7410), - [sym_auto] = ACTIONS(7410), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7556), + [anon_sym_ATend] = ACTIONS(7558), + [sym_optional] = ACTIONS(7558), + [sym_required] = ACTIONS(7558), + [anon_sym_ATproperty] = ACTIONS(7558), + [sym_method_attribute_specifier] = ACTIONS(7556), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7556), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7556), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7556), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7556), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7556), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7556), + [anon_sym_NS_AVAILABLE] = ACTIONS(7556), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7556), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7556), + [anon_sym_API_AVAILABLE] = ACTIONS(7556), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7556), + [anon_sym_API_DEPRECATED] = ACTIONS(7556), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7556), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7556), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7556), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7556), + [anon_sym___deprecated_msg] = ACTIONS(7556), + [anon_sym___deprecated_enum_msg] = ACTIONS(7556), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7556), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7556), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7556), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7556), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7556), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7556), + [anon_sym_NS_ENUM] = ACTIONS(7556), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7556), + [anon_sym_NS_OPTIONS] = ACTIONS(7556), + [anon_sym_typeof] = ACTIONS(7556), + [anon_sym___typeof] = ACTIONS(7556), + [anon_sym___typeof__] = ACTIONS(7556), + [sym_id] = ACTIONS(7556), + [sym_instancetype] = ACTIONS(7556), + [sym_Class] = ACTIONS(7556), + [sym_SEL] = ACTIONS(7556), + [sym_IMP] = ACTIONS(7556), + [sym_BOOL] = ACTIONS(7556), + [sym_auto] = ACTIONS(7556), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -505201,103 +503060,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3127] = { - [sym_identifier] = ACTIONS(7414), - [aux_sym_preproc_def_token1] = ACTIONS(7416), - [anon_sym_DASH] = ACTIONS(7416), - [anon_sym_PLUS] = ACTIONS(7416), - [anon_sym_typedef] = ACTIONS(7414), - [anon_sym_extern] = ACTIONS(7414), - [anon_sym___attribute] = ACTIONS(7414), - [anon_sym___attribute__] = ACTIONS(7414), - [anon_sym___declspec] = ACTIONS(7414), - [anon_sym_static] = ACTIONS(7414), - [anon_sym_auto] = ACTIONS(7414), - [anon_sym_register] = ACTIONS(7414), - [anon_sym_inline] = ACTIONS(7414), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7414), - [anon_sym_const] = ACTIONS(7414), - [anon_sym_volatile] = ACTIONS(7414), - [anon_sym_restrict] = ACTIONS(7414), - [anon_sym__Atomic] = ACTIONS(7414), - [anon_sym_in] = ACTIONS(7414), - [anon_sym_out] = ACTIONS(7414), - [anon_sym_inout] = ACTIONS(7414), - [anon_sym_bycopy] = ACTIONS(7414), - [anon_sym_byref] = ACTIONS(7414), - [anon_sym_oneway] = ACTIONS(7414), - [anon_sym__Nullable] = ACTIONS(7414), - [anon_sym__Nonnull] = ACTIONS(7414), - [anon_sym__Nullable_result] = ACTIONS(7414), - [anon_sym__Null_unspecified] = ACTIONS(7414), - [anon_sym___autoreleasing] = ACTIONS(7414), - [anon_sym___nullable] = ACTIONS(7414), - [anon_sym___nonnull] = ACTIONS(7414), - [anon_sym___strong] = ACTIONS(7414), - [anon_sym___weak] = ACTIONS(7414), - [anon_sym___bridge] = ACTIONS(7414), - [anon_sym___bridge_transfer] = ACTIONS(7414), - [anon_sym___bridge_retained] = ACTIONS(7414), - [anon_sym___unsafe_unretained] = ACTIONS(7414), - [anon_sym___block] = ACTIONS(7414), - [anon_sym___kindof] = ACTIONS(7414), - [anon_sym___unused] = ACTIONS(7414), - [anon_sym__Complex] = ACTIONS(7414), - [anon_sym___complex] = ACTIONS(7414), - [anon_sym_IBOutlet] = ACTIONS(7414), - [anon_sym_IBInspectable] = ACTIONS(7414), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7414), - [anon_sym_signed] = ACTIONS(7414), - [anon_sym_unsigned] = ACTIONS(7414), - [anon_sym_long] = ACTIONS(7414), - [anon_sym_short] = ACTIONS(7414), - [sym_primitive_type] = ACTIONS(7414), - [anon_sym_enum] = ACTIONS(7414), - [anon_sym_NS_ENUM] = ACTIONS(7414), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7414), - [anon_sym_NS_OPTIONS] = ACTIONS(7414), - [anon_sym_struct] = ACTIONS(7414), - [anon_sym_union] = ACTIONS(7414), + [sym_identifier] = ACTIONS(1696), + [aux_sym_preproc_def_token1] = ACTIONS(1698), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_typedef] = ACTIONS(1696), + [anon_sym_extern] = ACTIONS(1696), + [anon_sym___attribute] = ACTIONS(1696), + [anon_sym___attribute__] = ACTIONS(1696), + [anon_sym___declspec] = ACTIONS(1696), + [anon_sym_static] = ACTIONS(1696), + [anon_sym_auto] = ACTIONS(1696), + [anon_sym_register] = ACTIONS(1696), + [anon_sym_inline] = ACTIONS(1696), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1696), + [anon_sym_volatile] = ACTIONS(1696), + [anon_sym_restrict] = ACTIONS(1696), + [anon_sym__Atomic] = ACTIONS(1696), + [anon_sym_in] = ACTIONS(1696), + [anon_sym_out] = ACTIONS(1696), + [anon_sym_inout] = ACTIONS(1696), + [anon_sym_bycopy] = ACTIONS(1696), + [anon_sym_byref] = ACTIONS(1696), + [anon_sym_oneway] = ACTIONS(1696), + [anon_sym__Nullable] = ACTIONS(1696), + [anon_sym__Nonnull] = ACTIONS(1696), + [anon_sym__Nullable_result] = ACTIONS(1696), + [anon_sym__Null_unspecified] = ACTIONS(1696), + [anon_sym___autoreleasing] = ACTIONS(1696), + [anon_sym___nullable] = ACTIONS(1696), + [anon_sym___nonnull] = ACTIONS(1696), + [anon_sym___strong] = ACTIONS(1696), + [anon_sym___weak] = ACTIONS(1696), + [anon_sym___bridge] = ACTIONS(1696), + [anon_sym___bridge_transfer] = ACTIONS(1696), + [anon_sym___bridge_retained] = ACTIONS(1696), + [anon_sym___unsafe_unretained] = ACTIONS(1696), + [anon_sym___block] = ACTIONS(1696), + [anon_sym___kindof] = ACTIONS(1696), + [anon_sym___unused] = ACTIONS(1696), + [anon_sym__Complex] = ACTIONS(1696), + [anon_sym___complex] = ACTIONS(1696), + [anon_sym_IBOutlet] = ACTIONS(1696), + [anon_sym_IBInspectable] = ACTIONS(1696), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1696), + [anon_sym_signed] = ACTIONS(1696), + [anon_sym_unsigned] = ACTIONS(1696), + [anon_sym_long] = ACTIONS(1696), + [anon_sym_short] = ACTIONS(1696), + [sym_primitive_type] = ACTIONS(1696), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7414), - [anon_sym_ATend] = ACTIONS(7416), - [sym_optional] = ACTIONS(7416), - [sym_required] = ACTIONS(7416), - [anon_sym_ATproperty] = ACTIONS(7416), - [sym_method_attribute_specifier] = ACTIONS(7414), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7414), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7414), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7414), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7414), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7414), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7414), - [anon_sym_NS_AVAILABLE] = ACTIONS(7414), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7414), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7414), - [anon_sym_API_AVAILABLE] = ACTIONS(7414), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7414), - [anon_sym_API_DEPRECATED] = ACTIONS(7414), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7414), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7414), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7414), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7414), - [anon_sym___deprecated_msg] = ACTIONS(7414), - [anon_sym___deprecated_enum_msg] = ACTIONS(7414), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7414), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7414), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7414), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7414), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7414), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7414), - [anon_sym_typeof] = ACTIONS(7414), - [anon_sym___typeof] = ACTIONS(7414), - [anon_sym___typeof__] = ACTIONS(7414), - [sym_id] = ACTIONS(7414), - [sym_instancetype] = ACTIONS(7414), - [sym_Class] = ACTIONS(7414), - [sym_SEL] = ACTIONS(7414), - [sym_IMP] = ACTIONS(7414), - [sym_BOOL] = ACTIONS(7414), - [sym_auto] = ACTIONS(7414), + [sym__ns_assume_nonnull_declaration] = ACTIONS(1696), + [anon_sym_ATend] = ACTIONS(1698), + [sym_optional] = ACTIONS(1698), + [sym_required] = ACTIONS(1698), + [anon_sym_ATproperty] = ACTIONS(1698), + [sym_method_attribute_specifier] = ACTIONS(1696), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1696), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1696), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1696), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1696), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1696), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1696), + [anon_sym_NS_AVAILABLE] = ACTIONS(1696), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1696), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1696), + [anon_sym_API_AVAILABLE] = ACTIONS(1696), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1696), + [anon_sym_API_DEPRECATED] = ACTIONS(1696), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1696), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1696), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1696), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1696), + [anon_sym___deprecated_msg] = ACTIONS(1696), + [anon_sym___deprecated_enum_msg] = ACTIONS(1696), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1696), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1696), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1696), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1696), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1696), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1696), + [anon_sym_NS_ENUM] = ACTIONS(1696), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1696), + [anon_sym_NS_OPTIONS] = ACTIONS(1696), + [anon_sym_typeof] = ACTIONS(1696), + [anon_sym___typeof] = ACTIONS(1696), + [anon_sym___typeof__] = ACTIONS(1696), + [sym_id] = ACTIONS(1696), + [sym_instancetype] = ACTIONS(1696), + [sym_Class] = ACTIONS(1696), + [sym_SEL] = ACTIONS(1696), + [sym_IMP] = ACTIONS(1696), + [sym_BOOL] = ACTIONS(1696), + [sym_auto] = ACTIONS(1696), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -505306,103 +503165,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3128] = { - [sym_identifier] = ACTIONS(7418), - [aux_sym_preproc_def_token1] = ACTIONS(7420), - [anon_sym_DASH] = ACTIONS(7420), - [anon_sym_PLUS] = ACTIONS(7420), - [anon_sym_typedef] = ACTIONS(7418), - [anon_sym_extern] = ACTIONS(7418), - [anon_sym___attribute] = ACTIONS(7418), - [anon_sym___attribute__] = ACTIONS(7418), - [anon_sym___declspec] = ACTIONS(7418), - [anon_sym_static] = ACTIONS(7418), - [anon_sym_auto] = ACTIONS(7418), - [anon_sym_register] = ACTIONS(7418), - [anon_sym_inline] = ACTIONS(7418), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7418), - [anon_sym_const] = ACTIONS(7418), - [anon_sym_volatile] = ACTIONS(7418), - [anon_sym_restrict] = ACTIONS(7418), - [anon_sym__Atomic] = ACTIONS(7418), - [anon_sym_in] = ACTIONS(7418), - [anon_sym_out] = ACTIONS(7418), - [anon_sym_inout] = ACTIONS(7418), - [anon_sym_bycopy] = ACTIONS(7418), - [anon_sym_byref] = ACTIONS(7418), - [anon_sym_oneway] = ACTIONS(7418), - [anon_sym__Nullable] = ACTIONS(7418), - [anon_sym__Nonnull] = ACTIONS(7418), - [anon_sym__Nullable_result] = ACTIONS(7418), - [anon_sym__Null_unspecified] = ACTIONS(7418), - [anon_sym___autoreleasing] = ACTIONS(7418), - [anon_sym___nullable] = ACTIONS(7418), - [anon_sym___nonnull] = ACTIONS(7418), - [anon_sym___strong] = ACTIONS(7418), - [anon_sym___weak] = ACTIONS(7418), - [anon_sym___bridge] = ACTIONS(7418), - [anon_sym___bridge_transfer] = ACTIONS(7418), - [anon_sym___bridge_retained] = ACTIONS(7418), - [anon_sym___unsafe_unretained] = ACTIONS(7418), - [anon_sym___block] = ACTIONS(7418), - [anon_sym___kindof] = ACTIONS(7418), - [anon_sym___unused] = ACTIONS(7418), - [anon_sym__Complex] = ACTIONS(7418), - [anon_sym___complex] = ACTIONS(7418), - [anon_sym_IBOutlet] = ACTIONS(7418), - [anon_sym_IBInspectable] = ACTIONS(7418), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7418), - [anon_sym_signed] = ACTIONS(7418), - [anon_sym_unsigned] = ACTIONS(7418), - [anon_sym_long] = ACTIONS(7418), - [anon_sym_short] = ACTIONS(7418), - [sym_primitive_type] = ACTIONS(7418), - [anon_sym_enum] = ACTIONS(7418), - [anon_sym_NS_ENUM] = ACTIONS(7418), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7418), - [anon_sym_NS_OPTIONS] = ACTIONS(7418), - [anon_sym_struct] = ACTIONS(7418), - [anon_sym_union] = ACTIONS(7418), + [sym_identifier] = ACTIONS(7560), + [aux_sym_preproc_def_token1] = ACTIONS(7562), + [anon_sym_DASH] = ACTIONS(7562), + [anon_sym_PLUS] = ACTIONS(7562), + [anon_sym_typedef] = ACTIONS(7560), + [anon_sym_extern] = ACTIONS(7560), + [anon_sym___attribute] = ACTIONS(7560), + [anon_sym___attribute__] = ACTIONS(7560), + [anon_sym___declspec] = ACTIONS(7560), + [anon_sym_static] = ACTIONS(7560), + [anon_sym_auto] = ACTIONS(7560), + [anon_sym_register] = ACTIONS(7560), + [anon_sym_inline] = ACTIONS(7560), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7560), + [anon_sym_const] = ACTIONS(7560), + [anon_sym_volatile] = ACTIONS(7560), + [anon_sym_restrict] = ACTIONS(7560), + [anon_sym__Atomic] = ACTIONS(7560), + [anon_sym_in] = ACTIONS(7560), + [anon_sym_out] = ACTIONS(7560), + [anon_sym_inout] = ACTIONS(7560), + [anon_sym_bycopy] = ACTIONS(7560), + [anon_sym_byref] = ACTIONS(7560), + [anon_sym_oneway] = ACTIONS(7560), + [anon_sym__Nullable] = ACTIONS(7560), + [anon_sym__Nonnull] = ACTIONS(7560), + [anon_sym__Nullable_result] = ACTIONS(7560), + [anon_sym__Null_unspecified] = ACTIONS(7560), + [anon_sym___autoreleasing] = ACTIONS(7560), + [anon_sym___nullable] = ACTIONS(7560), + [anon_sym___nonnull] = ACTIONS(7560), + [anon_sym___strong] = ACTIONS(7560), + [anon_sym___weak] = ACTIONS(7560), + [anon_sym___bridge] = ACTIONS(7560), + [anon_sym___bridge_transfer] = ACTIONS(7560), + [anon_sym___bridge_retained] = ACTIONS(7560), + [anon_sym___unsafe_unretained] = ACTIONS(7560), + [anon_sym___block] = ACTIONS(7560), + [anon_sym___kindof] = ACTIONS(7560), + [anon_sym___unused] = ACTIONS(7560), + [anon_sym__Complex] = ACTIONS(7560), + [anon_sym___complex] = ACTIONS(7560), + [anon_sym_IBOutlet] = ACTIONS(7560), + [anon_sym_IBInspectable] = ACTIONS(7560), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7560), + [anon_sym_signed] = ACTIONS(7560), + [anon_sym_unsigned] = ACTIONS(7560), + [anon_sym_long] = ACTIONS(7560), + [anon_sym_short] = ACTIONS(7560), + [sym_primitive_type] = ACTIONS(7560), + [anon_sym_enum] = ACTIONS(7560), + [anon_sym_struct] = ACTIONS(7560), + [anon_sym_union] = ACTIONS(7560), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7418), - [anon_sym_ATend] = ACTIONS(7420), - [sym_optional] = ACTIONS(7420), - [sym_required] = ACTIONS(7420), - [anon_sym_ATproperty] = ACTIONS(7420), - [sym_method_attribute_specifier] = ACTIONS(7418), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7418), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7418), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7418), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7418), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7418), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7418), - [anon_sym_NS_AVAILABLE] = ACTIONS(7418), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7418), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7418), - [anon_sym_API_AVAILABLE] = ACTIONS(7418), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7418), - [anon_sym_API_DEPRECATED] = ACTIONS(7418), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7418), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7418), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7418), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7418), - [anon_sym___deprecated_msg] = ACTIONS(7418), - [anon_sym___deprecated_enum_msg] = ACTIONS(7418), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7418), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7418), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7418), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7418), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7418), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7418), - [anon_sym_typeof] = ACTIONS(7418), - [anon_sym___typeof] = ACTIONS(7418), - [anon_sym___typeof__] = ACTIONS(7418), - [sym_id] = ACTIONS(7418), - [sym_instancetype] = ACTIONS(7418), - [sym_Class] = ACTIONS(7418), - [sym_SEL] = ACTIONS(7418), - [sym_IMP] = ACTIONS(7418), - [sym_BOOL] = ACTIONS(7418), - [sym_auto] = ACTIONS(7418), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7560), + [anon_sym_ATend] = ACTIONS(7562), + [sym_optional] = ACTIONS(7562), + [sym_required] = ACTIONS(7562), + [anon_sym_ATproperty] = ACTIONS(7562), + [sym_method_attribute_specifier] = ACTIONS(7560), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7560), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7560), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7560), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7560), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7560), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7560), + [anon_sym_NS_AVAILABLE] = ACTIONS(7560), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7560), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7560), + [anon_sym_API_AVAILABLE] = ACTIONS(7560), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7560), + [anon_sym_API_DEPRECATED] = ACTIONS(7560), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7560), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7560), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7560), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7560), + [anon_sym___deprecated_msg] = ACTIONS(7560), + [anon_sym___deprecated_enum_msg] = ACTIONS(7560), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7560), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7560), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7560), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7560), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7560), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7560), + [anon_sym_NS_ENUM] = ACTIONS(7560), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7560), + [anon_sym_NS_OPTIONS] = ACTIONS(7560), + [anon_sym_typeof] = ACTIONS(7560), + [anon_sym___typeof] = ACTIONS(7560), + [anon_sym___typeof__] = ACTIONS(7560), + [sym_id] = ACTIONS(7560), + [sym_instancetype] = ACTIONS(7560), + [sym_Class] = ACTIONS(7560), + [sym_SEL] = ACTIONS(7560), + [sym_IMP] = ACTIONS(7560), + [sym_BOOL] = ACTIONS(7560), + [sym_auto] = ACTIONS(7560), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -505411,103 +503270,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3129] = { - [sym_identifier] = ACTIONS(7422), - [aux_sym_preproc_def_token1] = ACTIONS(7424), - [anon_sym_DASH] = ACTIONS(7424), - [anon_sym_PLUS] = ACTIONS(7424), - [anon_sym_typedef] = ACTIONS(7422), - [anon_sym_extern] = ACTIONS(7422), - [anon_sym___attribute] = ACTIONS(7422), - [anon_sym___attribute__] = ACTIONS(7422), - [anon_sym___declspec] = ACTIONS(7422), - [anon_sym_static] = ACTIONS(7422), - [anon_sym_auto] = ACTIONS(7422), - [anon_sym_register] = ACTIONS(7422), - [anon_sym_inline] = ACTIONS(7422), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7422), - [anon_sym_const] = ACTIONS(7422), - [anon_sym_volatile] = ACTIONS(7422), - [anon_sym_restrict] = ACTIONS(7422), - [anon_sym__Atomic] = ACTIONS(7422), - [anon_sym_in] = ACTIONS(7422), - [anon_sym_out] = ACTIONS(7422), - [anon_sym_inout] = ACTIONS(7422), - [anon_sym_bycopy] = ACTIONS(7422), - [anon_sym_byref] = ACTIONS(7422), - [anon_sym_oneway] = ACTIONS(7422), - [anon_sym__Nullable] = ACTIONS(7422), - [anon_sym__Nonnull] = ACTIONS(7422), - [anon_sym__Nullable_result] = ACTIONS(7422), - [anon_sym__Null_unspecified] = ACTIONS(7422), - [anon_sym___autoreleasing] = ACTIONS(7422), - [anon_sym___nullable] = ACTIONS(7422), - [anon_sym___nonnull] = ACTIONS(7422), - [anon_sym___strong] = ACTIONS(7422), - [anon_sym___weak] = ACTIONS(7422), - [anon_sym___bridge] = ACTIONS(7422), - [anon_sym___bridge_transfer] = ACTIONS(7422), - [anon_sym___bridge_retained] = ACTIONS(7422), - [anon_sym___unsafe_unretained] = ACTIONS(7422), - [anon_sym___block] = ACTIONS(7422), - [anon_sym___kindof] = ACTIONS(7422), - [anon_sym___unused] = ACTIONS(7422), - [anon_sym__Complex] = ACTIONS(7422), - [anon_sym___complex] = ACTIONS(7422), - [anon_sym_IBOutlet] = ACTIONS(7422), - [anon_sym_IBInspectable] = ACTIONS(7422), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7422), - [anon_sym_signed] = ACTIONS(7422), - [anon_sym_unsigned] = ACTIONS(7422), - [anon_sym_long] = ACTIONS(7422), - [anon_sym_short] = ACTIONS(7422), - [sym_primitive_type] = ACTIONS(7422), - [anon_sym_enum] = ACTIONS(7422), - [anon_sym_NS_ENUM] = ACTIONS(7422), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7422), - [anon_sym_NS_OPTIONS] = ACTIONS(7422), - [anon_sym_struct] = ACTIONS(7422), - [anon_sym_union] = ACTIONS(7422), + [sym_identifier] = ACTIONS(7564), + [aux_sym_preproc_def_token1] = ACTIONS(7566), + [anon_sym_DASH] = ACTIONS(7566), + [anon_sym_PLUS] = ACTIONS(7566), + [anon_sym_typedef] = ACTIONS(7564), + [anon_sym_extern] = ACTIONS(7564), + [anon_sym___attribute] = ACTIONS(7564), + [anon_sym___attribute__] = ACTIONS(7564), + [anon_sym___declspec] = ACTIONS(7564), + [anon_sym_static] = ACTIONS(7564), + [anon_sym_auto] = ACTIONS(7564), + [anon_sym_register] = ACTIONS(7564), + [anon_sym_inline] = ACTIONS(7564), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7564), + [anon_sym_const] = ACTIONS(7564), + [anon_sym_volatile] = ACTIONS(7564), + [anon_sym_restrict] = ACTIONS(7564), + [anon_sym__Atomic] = ACTIONS(7564), + [anon_sym_in] = ACTIONS(7564), + [anon_sym_out] = ACTIONS(7564), + [anon_sym_inout] = ACTIONS(7564), + [anon_sym_bycopy] = ACTIONS(7564), + [anon_sym_byref] = ACTIONS(7564), + [anon_sym_oneway] = ACTIONS(7564), + [anon_sym__Nullable] = ACTIONS(7564), + [anon_sym__Nonnull] = ACTIONS(7564), + [anon_sym__Nullable_result] = ACTIONS(7564), + [anon_sym__Null_unspecified] = ACTIONS(7564), + [anon_sym___autoreleasing] = ACTIONS(7564), + [anon_sym___nullable] = ACTIONS(7564), + [anon_sym___nonnull] = ACTIONS(7564), + [anon_sym___strong] = ACTIONS(7564), + [anon_sym___weak] = ACTIONS(7564), + [anon_sym___bridge] = ACTIONS(7564), + [anon_sym___bridge_transfer] = ACTIONS(7564), + [anon_sym___bridge_retained] = ACTIONS(7564), + [anon_sym___unsafe_unretained] = ACTIONS(7564), + [anon_sym___block] = ACTIONS(7564), + [anon_sym___kindof] = ACTIONS(7564), + [anon_sym___unused] = ACTIONS(7564), + [anon_sym__Complex] = ACTIONS(7564), + [anon_sym___complex] = ACTIONS(7564), + [anon_sym_IBOutlet] = ACTIONS(7564), + [anon_sym_IBInspectable] = ACTIONS(7564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7564), + [anon_sym_signed] = ACTIONS(7564), + [anon_sym_unsigned] = ACTIONS(7564), + [anon_sym_long] = ACTIONS(7564), + [anon_sym_short] = ACTIONS(7564), + [sym_primitive_type] = ACTIONS(7564), + [anon_sym_enum] = ACTIONS(7564), + [anon_sym_struct] = ACTIONS(7564), + [anon_sym_union] = ACTIONS(7564), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7422), - [anon_sym_ATend] = ACTIONS(7424), - [sym_optional] = ACTIONS(7424), - [sym_required] = ACTIONS(7424), - [anon_sym_ATproperty] = ACTIONS(7424), - [sym_method_attribute_specifier] = ACTIONS(7422), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7422), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7422), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7422), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7422), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7422), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7422), - [anon_sym_NS_AVAILABLE] = ACTIONS(7422), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7422), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7422), - [anon_sym_API_AVAILABLE] = ACTIONS(7422), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7422), - [anon_sym_API_DEPRECATED] = ACTIONS(7422), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7422), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7422), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7422), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7422), - [anon_sym___deprecated_msg] = ACTIONS(7422), - [anon_sym___deprecated_enum_msg] = ACTIONS(7422), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7422), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7422), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7422), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7422), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7422), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7422), - [anon_sym_typeof] = ACTIONS(7422), - [anon_sym___typeof] = ACTIONS(7422), - [anon_sym___typeof__] = ACTIONS(7422), - [sym_id] = ACTIONS(7422), - [sym_instancetype] = ACTIONS(7422), - [sym_Class] = ACTIONS(7422), - [sym_SEL] = ACTIONS(7422), - [sym_IMP] = ACTIONS(7422), - [sym_BOOL] = ACTIONS(7422), - [sym_auto] = ACTIONS(7422), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7564), + [anon_sym_ATend] = ACTIONS(7566), + [sym_optional] = ACTIONS(7566), + [sym_required] = ACTIONS(7566), + [anon_sym_ATproperty] = ACTIONS(7566), + [sym_method_attribute_specifier] = ACTIONS(7564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7564), + [anon_sym_NS_AVAILABLE] = ACTIONS(7564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7564), + [anon_sym_API_AVAILABLE] = ACTIONS(7564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7564), + [anon_sym_API_DEPRECATED] = ACTIONS(7564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7564), + [anon_sym___deprecated_msg] = ACTIONS(7564), + [anon_sym___deprecated_enum_msg] = ACTIONS(7564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7564), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7564), + [anon_sym_NS_ENUM] = ACTIONS(7564), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7564), + [anon_sym_NS_OPTIONS] = ACTIONS(7564), + [anon_sym_typeof] = ACTIONS(7564), + [anon_sym___typeof] = ACTIONS(7564), + [anon_sym___typeof__] = ACTIONS(7564), + [sym_id] = ACTIONS(7564), + [sym_instancetype] = ACTIONS(7564), + [sym_Class] = ACTIONS(7564), + [sym_SEL] = ACTIONS(7564), + [sym_IMP] = ACTIONS(7564), + [sym_BOOL] = ACTIONS(7564), + [sym_auto] = ACTIONS(7564), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -505516,103 +503375,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3130] = { - [sym_identifier] = ACTIONS(7426), - [aux_sym_preproc_def_token1] = ACTIONS(7428), - [anon_sym_DASH] = ACTIONS(7428), - [anon_sym_PLUS] = ACTIONS(7428), - [anon_sym_typedef] = ACTIONS(7426), - [anon_sym_extern] = ACTIONS(7426), - [anon_sym___attribute] = ACTIONS(7426), - [anon_sym___attribute__] = ACTIONS(7426), - [anon_sym___declspec] = ACTIONS(7426), - [anon_sym_static] = ACTIONS(7426), - [anon_sym_auto] = ACTIONS(7426), - [anon_sym_register] = ACTIONS(7426), - [anon_sym_inline] = ACTIONS(7426), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7426), - [anon_sym_const] = ACTIONS(7426), - [anon_sym_volatile] = ACTIONS(7426), - [anon_sym_restrict] = ACTIONS(7426), - [anon_sym__Atomic] = ACTIONS(7426), - [anon_sym_in] = ACTIONS(7426), - [anon_sym_out] = ACTIONS(7426), - [anon_sym_inout] = ACTIONS(7426), - [anon_sym_bycopy] = ACTIONS(7426), - [anon_sym_byref] = ACTIONS(7426), - [anon_sym_oneway] = ACTIONS(7426), - [anon_sym__Nullable] = ACTIONS(7426), - [anon_sym__Nonnull] = ACTIONS(7426), - [anon_sym__Nullable_result] = ACTIONS(7426), - [anon_sym__Null_unspecified] = ACTIONS(7426), - [anon_sym___autoreleasing] = ACTIONS(7426), - [anon_sym___nullable] = ACTIONS(7426), - [anon_sym___nonnull] = ACTIONS(7426), - [anon_sym___strong] = ACTIONS(7426), - [anon_sym___weak] = ACTIONS(7426), - [anon_sym___bridge] = ACTIONS(7426), - [anon_sym___bridge_transfer] = ACTIONS(7426), - [anon_sym___bridge_retained] = ACTIONS(7426), - [anon_sym___unsafe_unretained] = ACTIONS(7426), - [anon_sym___block] = ACTIONS(7426), - [anon_sym___kindof] = ACTIONS(7426), - [anon_sym___unused] = ACTIONS(7426), - [anon_sym__Complex] = ACTIONS(7426), - [anon_sym___complex] = ACTIONS(7426), - [anon_sym_IBOutlet] = ACTIONS(7426), - [anon_sym_IBInspectable] = ACTIONS(7426), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7426), - [anon_sym_signed] = ACTIONS(7426), - [anon_sym_unsigned] = ACTIONS(7426), - [anon_sym_long] = ACTIONS(7426), - [anon_sym_short] = ACTIONS(7426), - [sym_primitive_type] = ACTIONS(7426), - [anon_sym_enum] = ACTIONS(7426), - [anon_sym_NS_ENUM] = ACTIONS(7426), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7426), - [anon_sym_NS_OPTIONS] = ACTIONS(7426), - [anon_sym_struct] = ACTIONS(7426), - [anon_sym_union] = ACTIONS(7426), + [sym_identifier] = ACTIONS(7564), + [aux_sym_preproc_def_token1] = ACTIONS(7566), + [anon_sym_DASH] = ACTIONS(7566), + [anon_sym_PLUS] = ACTIONS(7566), + [anon_sym_typedef] = ACTIONS(7564), + [anon_sym_extern] = ACTIONS(7564), + [anon_sym___attribute] = ACTIONS(7564), + [anon_sym___attribute__] = ACTIONS(7564), + [anon_sym___declspec] = ACTIONS(7564), + [anon_sym_static] = ACTIONS(7564), + [anon_sym_auto] = ACTIONS(7564), + [anon_sym_register] = ACTIONS(7564), + [anon_sym_inline] = ACTIONS(7564), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7564), + [anon_sym_const] = ACTIONS(7564), + [anon_sym_volatile] = ACTIONS(7564), + [anon_sym_restrict] = ACTIONS(7564), + [anon_sym__Atomic] = ACTIONS(7564), + [anon_sym_in] = ACTIONS(7564), + [anon_sym_out] = ACTIONS(7564), + [anon_sym_inout] = ACTIONS(7564), + [anon_sym_bycopy] = ACTIONS(7564), + [anon_sym_byref] = ACTIONS(7564), + [anon_sym_oneway] = ACTIONS(7564), + [anon_sym__Nullable] = ACTIONS(7564), + [anon_sym__Nonnull] = ACTIONS(7564), + [anon_sym__Nullable_result] = ACTIONS(7564), + [anon_sym__Null_unspecified] = ACTIONS(7564), + [anon_sym___autoreleasing] = ACTIONS(7564), + [anon_sym___nullable] = ACTIONS(7564), + [anon_sym___nonnull] = ACTIONS(7564), + [anon_sym___strong] = ACTIONS(7564), + [anon_sym___weak] = ACTIONS(7564), + [anon_sym___bridge] = ACTIONS(7564), + [anon_sym___bridge_transfer] = ACTIONS(7564), + [anon_sym___bridge_retained] = ACTIONS(7564), + [anon_sym___unsafe_unretained] = ACTIONS(7564), + [anon_sym___block] = ACTIONS(7564), + [anon_sym___kindof] = ACTIONS(7564), + [anon_sym___unused] = ACTIONS(7564), + [anon_sym__Complex] = ACTIONS(7564), + [anon_sym___complex] = ACTIONS(7564), + [anon_sym_IBOutlet] = ACTIONS(7564), + [anon_sym_IBInspectable] = ACTIONS(7564), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7564), + [anon_sym_signed] = ACTIONS(7564), + [anon_sym_unsigned] = ACTIONS(7564), + [anon_sym_long] = ACTIONS(7564), + [anon_sym_short] = ACTIONS(7564), + [sym_primitive_type] = ACTIONS(7564), + [anon_sym_enum] = ACTIONS(7564), + [anon_sym_struct] = ACTIONS(7564), + [anon_sym_union] = ACTIONS(7564), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7426), - [anon_sym_ATend] = ACTIONS(7428), - [sym_optional] = ACTIONS(7428), - [sym_required] = ACTIONS(7428), - [anon_sym_ATproperty] = ACTIONS(7428), - [sym_method_attribute_specifier] = ACTIONS(7426), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7426), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7426), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7426), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7426), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7426), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7426), - [anon_sym_NS_AVAILABLE] = ACTIONS(7426), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7426), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7426), - [anon_sym_API_AVAILABLE] = ACTIONS(7426), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7426), - [anon_sym_API_DEPRECATED] = ACTIONS(7426), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7426), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7426), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7426), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7426), - [anon_sym___deprecated_msg] = ACTIONS(7426), - [anon_sym___deprecated_enum_msg] = ACTIONS(7426), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7426), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7426), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7426), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7426), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7426), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7426), - [anon_sym_typeof] = ACTIONS(7426), - [anon_sym___typeof] = ACTIONS(7426), - [anon_sym___typeof__] = ACTIONS(7426), - [sym_id] = ACTIONS(7426), - [sym_instancetype] = ACTIONS(7426), - [sym_Class] = ACTIONS(7426), - [sym_SEL] = ACTIONS(7426), - [sym_IMP] = ACTIONS(7426), - [sym_BOOL] = ACTIONS(7426), - [sym_auto] = ACTIONS(7426), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7564), + [anon_sym_ATend] = ACTIONS(7566), + [sym_optional] = ACTIONS(7566), + [sym_required] = ACTIONS(7566), + [anon_sym_ATproperty] = ACTIONS(7566), + [sym_method_attribute_specifier] = ACTIONS(7564), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7564), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7564), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7564), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7564), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7564), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7564), + [anon_sym_NS_AVAILABLE] = ACTIONS(7564), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7564), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7564), + [anon_sym_API_AVAILABLE] = ACTIONS(7564), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7564), + [anon_sym_API_DEPRECATED] = ACTIONS(7564), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7564), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7564), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7564), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7564), + [anon_sym___deprecated_msg] = ACTIONS(7564), + [anon_sym___deprecated_enum_msg] = ACTIONS(7564), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7564), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7564), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7564), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7564), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7564), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7564), + [anon_sym_NS_ENUM] = ACTIONS(7564), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7564), + [anon_sym_NS_OPTIONS] = ACTIONS(7564), + [anon_sym_typeof] = ACTIONS(7564), + [anon_sym___typeof] = ACTIONS(7564), + [anon_sym___typeof__] = ACTIONS(7564), + [sym_id] = ACTIONS(7564), + [sym_instancetype] = ACTIONS(7564), + [sym_Class] = ACTIONS(7564), + [sym_SEL] = ACTIONS(7564), + [sym_IMP] = ACTIONS(7564), + [sym_BOOL] = ACTIONS(7564), + [sym_auto] = ACTIONS(7564), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -505621,103 +503480,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3131] = { - [sym_identifier] = ACTIONS(7430), - [aux_sym_preproc_def_token1] = ACTIONS(7432), - [anon_sym_DASH] = ACTIONS(7432), - [anon_sym_PLUS] = ACTIONS(7432), - [anon_sym_typedef] = ACTIONS(7430), - [anon_sym_extern] = ACTIONS(7430), - [anon_sym___attribute] = ACTIONS(7430), - [anon_sym___attribute__] = ACTIONS(7430), - [anon_sym___declspec] = ACTIONS(7430), - [anon_sym_static] = ACTIONS(7430), - [anon_sym_auto] = ACTIONS(7430), - [anon_sym_register] = ACTIONS(7430), - [anon_sym_inline] = ACTIONS(7430), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7430), - [anon_sym_const] = ACTIONS(7430), - [anon_sym_volatile] = ACTIONS(7430), - [anon_sym_restrict] = ACTIONS(7430), - [anon_sym__Atomic] = ACTIONS(7430), - [anon_sym_in] = ACTIONS(7430), - [anon_sym_out] = ACTIONS(7430), - [anon_sym_inout] = ACTIONS(7430), - [anon_sym_bycopy] = ACTIONS(7430), - [anon_sym_byref] = ACTIONS(7430), - [anon_sym_oneway] = ACTIONS(7430), - [anon_sym__Nullable] = ACTIONS(7430), - [anon_sym__Nonnull] = ACTIONS(7430), - [anon_sym__Nullable_result] = ACTIONS(7430), - [anon_sym__Null_unspecified] = ACTIONS(7430), - [anon_sym___autoreleasing] = ACTIONS(7430), - [anon_sym___nullable] = ACTIONS(7430), - [anon_sym___nonnull] = ACTIONS(7430), - [anon_sym___strong] = ACTIONS(7430), - [anon_sym___weak] = ACTIONS(7430), - [anon_sym___bridge] = ACTIONS(7430), - [anon_sym___bridge_transfer] = ACTIONS(7430), - [anon_sym___bridge_retained] = ACTIONS(7430), - [anon_sym___unsafe_unretained] = ACTIONS(7430), - [anon_sym___block] = ACTIONS(7430), - [anon_sym___kindof] = ACTIONS(7430), - [anon_sym___unused] = ACTIONS(7430), - [anon_sym__Complex] = ACTIONS(7430), - [anon_sym___complex] = ACTIONS(7430), - [anon_sym_IBOutlet] = ACTIONS(7430), - [anon_sym_IBInspectable] = ACTIONS(7430), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7430), - [anon_sym_signed] = ACTIONS(7430), - [anon_sym_unsigned] = ACTIONS(7430), - [anon_sym_long] = ACTIONS(7430), - [anon_sym_short] = ACTIONS(7430), - [sym_primitive_type] = ACTIONS(7430), - [anon_sym_enum] = ACTIONS(7430), - [anon_sym_NS_ENUM] = ACTIONS(7430), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7430), - [anon_sym_NS_OPTIONS] = ACTIONS(7430), - [anon_sym_struct] = ACTIONS(7430), - [anon_sym_union] = ACTIONS(7430), + [sym_identifier] = ACTIONS(7568), + [aux_sym_preproc_def_token1] = ACTIONS(7570), + [anon_sym_DASH] = ACTIONS(7570), + [anon_sym_PLUS] = ACTIONS(7570), + [anon_sym_typedef] = ACTIONS(7568), + [anon_sym_extern] = ACTIONS(7568), + [anon_sym___attribute] = ACTIONS(7568), + [anon_sym___attribute__] = ACTIONS(7568), + [anon_sym___declspec] = ACTIONS(7568), + [anon_sym_static] = ACTIONS(7568), + [anon_sym_auto] = ACTIONS(7568), + [anon_sym_register] = ACTIONS(7568), + [anon_sym_inline] = ACTIONS(7568), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7568), + [anon_sym_const] = ACTIONS(7568), + [anon_sym_volatile] = ACTIONS(7568), + [anon_sym_restrict] = ACTIONS(7568), + [anon_sym__Atomic] = ACTIONS(7568), + [anon_sym_in] = ACTIONS(7568), + [anon_sym_out] = ACTIONS(7568), + [anon_sym_inout] = ACTIONS(7568), + [anon_sym_bycopy] = ACTIONS(7568), + [anon_sym_byref] = ACTIONS(7568), + [anon_sym_oneway] = ACTIONS(7568), + [anon_sym__Nullable] = ACTIONS(7568), + [anon_sym__Nonnull] = ACTIONS(7568), + [anon_sym__Nullable_result] = ACTIONS(7568), + [anon_sym__Null_unspecified] = ACTIONS(7568), + [anon_sym___autoreleasing] = ACTIONS(7568), + [anon_sym___nullable] = ACTIONS(7568), + [anon_sym___nonnull] = ACTIONS(7568), + [anon_sym___strong] = ACTIONS(7568), + [anon_sym___weak] = ACTIONS(7568), + [anon_sym___bridge] = ACTIONS(7568), + [anon_sym___bridge_transfer] = ACTIONS(7568), + [anon_sym___bridge_retained] = ACTIONS(7568), + [anon_sym___unsafe_unretained] = ACTIONS(7568), + [anon_sym___block] = ACTIONS(7568), + [anon_sym___kindof] = ACTIONS(7568), + [anon_sym___unused] = ACTIONS(7568), + [anon_sym__Complex] = ACTIONS(7568), + [anon_sym___complex] = ACTIONS(7568), + [anon_sym_IBOutlet] = ACTIONS(7568), + [anon_sym_IBInspectable] = ACTIONS(7568), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7568), + [anon_sym_signed] = ACTIONS(7568), + [anon_sym_unsigned] = ACTIONS(7568), + [anon_sym_long] = ACTIONS(7568), + [anon_sym_short] = ACTIONS(7568), + [sym_primitive_type] = ACTIONS(7568), + [anon_sym_enum] = ACTIONS(7568), + [anon_sym_struct] = ACTIONS(7568), + [anon_sym_union] = ACTIONS(7568), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7430), - [anon_sym_ATend] = ACTIONS(7432), - [sym_optional] = ACTIONS(7432), - [sym_required] = ACTIONS(7432), - [anon_sym_ATproperty] = ACTIONS(7432), - [sym_method_attribute_specifier] = ACTIONS(7430), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7430), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7430), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7430), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7430), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7430), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7430), - [anon_sym_NS_AVAILABLE] = ACTIONS(7430), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7430), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7430), - [anon_sym_API_AVAILABLE] = ACTIONS(7430), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7430), - [anon_sym_API_DEPRECATED] = ACTIONS(7430), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7430), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7430), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7430), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7430), - [anon_sym___deprecated_msg] = ACTIONS(7430), - [anon_sym___deprecated_enum_msg] = ACTIONS(7430), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7430), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7430), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7430), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7430), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7430), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7430), - [anon_sym_typeof] = ACTIONS(7430), - [anon_sym___typeof] = ACTIONS(7430), - [anon_sym___typeof__] = ACTIONS(7430), - [sym_id] = ACTIONS(7430), - [sym_instancetype] = ACTIONS(7430), - [sym_Class] = ACTIONS(7430), - [sym_SEL] = ACTIONS(7430), - [sym_IMP] = ACTIONS(7430), - [sym_BOOL] = ACTIONS(7430), - [sym_auto] = ACTIONS(7430), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7568), + [anon_sym_ATend] = ACTIONS(7570), + [sym_optional] = ACTIONS(7570), + [sym_required] = ACTIONS(7570), + [anon_sym_ATproperty] = ACTIONS(7570), + [sym_method_attribute_specifier] = ACTIONS(7568), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7568), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7568), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7568), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7568), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7568), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7568), + [anon_sym_NS_AVAILABLE] = ACTIONS(7568), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7568), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7568), + [anon_sym_API_AVAILABLE] = ACTIONS(7568), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7568), + [anon_sym_API_DEPRECATED] = ACTIONS(7568), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7568), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7568), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7568), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7568), + [anon_sym___deprecated_msg] = ACTIONS(7568), + [anon_sym___deprecated_enum_msg] = ACTIONS(7568), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7568), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7568), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7568), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7568), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7568), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7568), + [anon_sym_NS_ENUM] = ACTIONS(7568), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7568), + [anon_sym_NS_OPTIONS] = ACTIONS(7568), + [anon_sym_typeof] = ACTIONS(7568), + [anon_sym___typeof] = ACTIONS(7568), + [anon_sym___typeof__] = ACTIONS(7568), + [sym_id] = ACTIONS(7568), + [sym_instancetype] = ACTIONS(7568), + [sym_Class] = ACTIONS(7568), + [sym_SEL] = ACTIONS(7568), + [sym_IMP] = ACTIONS(7568), + [sym_BOOL] = ACTIONS(7568), + [sym_auto] = ACTIONS(7568), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -505726,103 +503585,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3132] = { - [sym_identifier] = ACTIONS(7434), - [aux_sym_preproc_def_token1] = ACTIONS(7436), - [anon_sym_DASH] = ACTIONS(7436), - [anon_sym_PLUS] = ACTIONS(7436), - [anon_sym_typedef] = ACTIONS(7434), - [anon_sym_extern] = ACTIONS(7434), - [anon_sym___attribute] = ACTIONS(7434), - [anon_sym___attribute__] = ACTIONS(7434), - [anon_sym___declspec] = ACTIONS(7434), - [anon_sym_static] = ACTIONS(7434), - [anon_sym_auto] = ACTIONS(7434), - [anon_sym_register] = ACTIONS(7434), - [anon_sym_inline] = ACTIONS(7434), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7434), - [anon_sym_const] = ACTIONS(7434), - [anon_sym_volatile] = ACTIONS(7434), - [anon_sym_restrict] = ACTIONS(7434), - [anon_sym__Atomic] = ACTIONS(7434), - [anon_sym_in] = ACTIONS(7434), - [anon_sym_out] = ACTIONS(7434), - [anon_sym_inout] = ACTIONS(7434), - [anon_sym_bycopy] = ACTIONS(7434), - [anon_sym_byref] = ACTIONS(7434), - [anon_sym_oneway] = ACTIONS(7434), - [anon_sym__Nullable] = ACTIONS(7434), - [anon_sym__Nonnull] = ACTIONS(7434), - [anon_sym__Nullable_result] = ACTIONS(7434), - [anon_sym__Null_unspecified] = ACTIONS(7434), - [anon_sym___autoreleasing] = ACTIONS(7434), - [anon_sym___nullable] = ACTIONS(7434), - [anon_sym___nonnull] = ACTIONS(7434), - [anon_sym___strong] = ACTIONS(7434), - [anon_sym___weak] = ACTIONS(7434), - [anon_sym___bridge] = ACTIONS(7434), - [anon_sym___bridge_transfer] = ACTIONS(7434), - [anon_sym___bridge_retained] = ACTIONS(7434), - [anon_sym___unsafe_unretained] = ACTIONS(7434), - [anon_sym___block] = ACTIONS(7434), - [anon_sym___kindof] = ACTIONS(7434), - [anon_sym___unused] = ACTIONS(7434), - [anon_sym__Complex] = ACTIONS(7434), - [anon_sym___complex] = ACTIONS(7434), - [anon_sym_IBOutlet] = ACTIONS(7434), - [anon_sym_IBInspectable] = ACTIONS(7434), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7434), - [anon_sym_signed] = ACTIONS(7434), - [anon_sym_unsigned] = ACTIONS(7434), - [anon_sym_long] = ACTIONS(7434), - [anon_sym_short] = ACTIONS(7434), - [sym_primitive_type] = ACTIONS(7434), - [anon_sym_enum] = ACTIONS(7434), - [anon_sym_NS_ENUM] = ACTIONS(7434), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7434), - [anon_sym_NS_OPTIONS] = ACTIONS(7434), - [anon_sym_struct] = ACTIONS(7434), - [anon_sym_union] = ACTIONS(7434), + [sym_identifier] = ACTIONS(7572), + [aux_sym_preproc_def_token1] = ACTIONS(7574), + [anon_sym_DASH] = ACTIONS(7574), + [anon_sym_PLUS] = ACTIONS(7574), + [anon_sym_typedef] = ACTIONS(7572), + [anon_sym_extern] = ACTIONS(7572), + [anon_sym___attribute] = ACTIONS(7572), + [anon_sym___attribute__] = ACTIONS(7572), + [anon_sym___declspec] = ACTIONS(7572), + [anon_sym_static] = ACTIONS(7572), + [anon_sym_auto] = ACTIONS(7572), + [anon_sym_register] = ACTIONS(7572), + [anon_sym_inline] = ACTIONS(7572), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7572), + [anon_sym_const] = ACTIONS(7572), + [anon_sym_volatile] = ACTIONS(7572), + [anon_sym_restrict] = ACTIONS(7572), + [anon_sym__Atomic] = ACTIONS(7572), + [anon_sym_in] = ACTIONS(7572), + [anon_sym_out] = ACTIONS(7572), + [anon_sym_inout] = ACTIONS(7572), + [anon_sym_bycopy] = ACTIONS(7572), + [anon_sym_byref] = ACTIONS(7572), + [anon_sym_oneway] = ACTIONS(7572), + [anon_sym__Nullable] = ACTIONS(7572), + [anon_sym__Nonnull] = ACTIONS(7572), + [anon_sym__Nullable_result] = ACTIONS(7572), + [anon_sym__Null_unspecified] = ACTIONS(7572), + [anon_sym___autoreleasing] = ACTIONS(7572), + [anon_sym___nullable] = ACTIONS(7572), + [anon_sym___nonnull] = ACTIONS(7572), + [anon_sym___strong] = ACTIONS(7572), + [anon_sym___weak] = ACTIONS(7572), + [anon_sym___bridge] = ACTIONS(7572), + [anon_sym___bridge_transfer] = ACTIONS(7572), + [anon_sym___bridge_retained] = ACTIONS(7572), + [anon_sym___unsafe_unretained] = ACTIONS(7572), + [anon_sym___block] = ACTIONS(7572), + [anon_sym___kindof] = ACTIONS(7572), + [anon_sym___unused] = ACTIONS(7572), + [anon_sym__Complex] = ACTIONS(7572), + [anon_sym___complex] = ACTIONS(7572), + [anon_sym_IBOutlet] = ACTIONS(7572), + [anon_sym_IBInspectable] = ACTIONS(7572), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7572), + [anon_sym_signed] = ACTIONS(7572), + [anon_sym_unsigned] = ACTIONS(7572), + [anon_sym_long] = ACTIONS(7572), + [anon_sym_short] = ACTIONS(7572), + [sym_primitive_type] = ACTIONS(7572), + [anon_sym_enum] = ACTIONS(7572), + [anon_sym_struct] = ACTIONS(7572), + [anon_sym_union] = ACTIONS(7572), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7434), - [anon_sym_ATend] = ACTIONS(7436), - [sym_optional] = ACTIONS(7436), - [sym_required] = ACTIONS(7436), - [anon_sym_ATproperty] = ACTIONS(7436), - [sym_method_attribute_specifier] = ACTIONS(7434), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7434), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7434), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7434), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7434), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7434), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7434), - [anon_sym_NS_AVAILABLE] = ACTIONS(7434), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7434), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7434), - [anon_sym_API_AVAILABLE] = ACTIONS(7434), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7434), - [anon_sym_API_DEPRECATED] = ACTIONS(7434), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7434), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7434), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7434), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7434), - [anon_sym___deprecated_msg] = ACTIONS(7434), - [anon_sym___deprecated_enum_msg] = ACTIONS(7434), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7434), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7434), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7434), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7434), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7434), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7434), - [anon_sym_typeof] = ACTIONS(7434), - [anon_sym___typeof] = ACTIONS(7434), - [anon_sym___typeof__] = ACTIONS(7434), - [sym_id] = ACTIONS(7434), - [sym_instancetype] = ACTIONS(7434), - [sym_Class] = ACTIONS(7434), - [sym_SEL] = ACTIONS(7434), - [sym_IMP] = ACTIONS(7434), - [sym_BOOL] = ACTIONS(7434), - [sym_auto] = ACTIONS(7434), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7572), + [anon_sym_ATend] = ACTIONS(7574), + [sym_optional] = ACTIONS(7574), + [sym_required] = ACTIONS(7574), + [anon_sym_ATproperty] = ACTIONS(7574), + [sym_method_attribute_specifier] = ACTIONS(7572), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7572), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7572), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7572), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7572), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7572), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7572), + [anon_sym_NS_AVAILABLE] = ACTIONS(7572), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7572), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7572), + [anon_sym_API_AVAILABLE] = ACTIONS(7572), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7572), + [anon_sym_API_DEPRECATED] = ACTIONS(7572), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7572), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7572), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7572), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7572), + [anon_sym___deprecated_msg] = ACTIONS(7572), + [anon_sym___deprecated_enum_msg] = ACTIONS(7572), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7572), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7572), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7572), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7572), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7572), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7572), + [anon_sym_NS_ENUM] = ACTIONS(7572), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7572), + [anon_sym_NS_OPTIONS] = ACTIONS(7572), + [anon_sym_typeof] = ACTIONS(7572), + [anon_sym___typeof] = ACTIONS(7572), + [anon_sym___typeof__] = ACTIONS(7572), + [sym_id] = ACTIONS(7572), + [sym_instancetype] = ACTIONS(7572), + [sym_Class] = ACTIONS(7572), + [sym_SEL] = ACTIONS(7572), + [sym_IMP] = ACTIONS(7572), + [sym_BOOL] = ACTIONS(7572), + [sym_auto] = ACTIONS(7572), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -505831,103 +503690,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3133] = { - [sym_identifier] = ACTIONS(7434), - [aux_sym_preproc_def_token1] = ACTIONS(7436), - [anon_sym_DASH] = ACTIONS(7436), - [anon_sym_PLUS] = ACTIONS(7436), - [anon_sym_typedef] = ACTIONS(7434), - [anon_sym_extern] = ACTIONS(7434), - [anon_sym___attribute] = ACTIONS(7434), - [anon_sym___attribute__] = ACTIONS(7434), - [anon_sym___declspec] = ACTIONS(7434), - [anon_sym_static] = ACTIONS(7434), - [anon_sym_auto] = ACTIONS(7434), - [anon_sym_register] = ACTIONS(7434), - [anon_sym_inline] = ACTIONS(7434), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7434), - [anon_sym_const] = ACTIONS(7434), - [anon_sym_volatile] = ACTIONS(7434), - [anon_sym_restrict] = ACTIONS(7434), - [anon_sym__Atomic] = ACTIONS(7434), - [anon_sym_in] = ACTIONS(7434), - [anon_sym_out] = ACTIONS(7434), - [anon_sym_inout] = ACTIONS(7434), - [anon_sym_bycopy] = ACTIONS(7434), - [anon_sym_byref] = ACTIONS(7434), - [anon_sym_oneway] = ACTIONS(7434), - [anon_sym__Nullable] = ACTIONS(7434), - [anon_sym__Nonnull] = ACTIONS(7434), - [anon_sym__Nullable_result] = ACTIONS(7434), - [anon_sym__Null_unspecified] = ACTIONS(7434), - [anon_sym___autoreleasing] = ACTIONS(7434), - [anon_sym___nullable] = ACTIONS(7434), - [anon_sym___nonnull] = ACTIONS(7434), - [anon_sym___strong] = ACTIONS(7434), - [anon_sym___weak] = ACTIONS(7434), - [anon_sym___bridge] = ACTIONS(7434), - [anon_sym___bridge_transfer] = ACTIONS(7434), - [anon_sym___bridge_retained] = ACTIONS(7434), - [anon_sym___unsafe_unretained] = ACTIONS(7434), - [anon_sym___block] = ACTIONS(7434), - [anon_sym___kindof] = ACTIONS(7434), - [anon_sym___unused] = ACTIONS(7434), - [anon_sym__Complex] = ACTIONS(7434), - [anon_sym___complex] = ACTIONS(7434), - [anon_sym_IBOutlet] = ACTIONS(7434), - [anon_sym_IBInspectable] = ACTIONS(7434), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7434), - [anon_sym_signed] = ACTIONS(7434), - [anon_sym_unsigned] = ACTIONS(7434), - [anon_sym_long] = ACTIONS(7434), - [anon_sym_short] = ACTIONS(7434), - [sym_primitive_type] = ACTIONS(7434), - [anon_sym_enum] = ACTIONS(7434), - [anon_sym_NS_ENUM] = ACTIONS(7434), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7434), - [anon_sym_NS_OPTIONS] = ACTIONS(7434), - [anon_sym_struct] = ACTIONS(7434), - [anon_sym_union] = ACTIONS(7434), + [sym_identifier] = ACTIONS(7576), + [aux_sym_preproc_def_token1] = ACTIONS(7578), + [anon_sym_DASH] = ACTIONS(7578), + [anon_sym_PLUS] = ACTIONS(7578), + [anon_sym_typedef] = ACTIONS(7576), + [anon_sym_extern] = ACTIONS(7576), + [anon_sym___attribute] = ACTIONS(7576), + [anon_sym___attribute__] = ACTIONS(7576), + [anon_sym___declspec] = ACTIONS(7576), + [anon_sym_static] = ACTIONS(7576), + [anon_sym_auto] = ACTIONS(7576), + [anon_sym_register] = ACTIONS(7576), + [anon_sym_inline] = ACTIONS(7576), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7576), + [anon_sym_const] = ACTIONS(7576), + [anon_sym_volatile] = ACTIONS(7576), + [anon_sym_restrict] = ACTIONS(7576), + [anon_sym__Atomic] = ACTIONS(7576), + [anon_sym_in] = ACTIONS(7576), + [anon_sym_out] = ACTIONS(7576), + [anon_sym_inout] = ACTIONS(7576), + [anon_sym_bycopy] = ACTIONS(7576), + [anon_sym_byref] = ACTIONS(7576), + [anon_sym_oneway] = ACTIONS(7576), + [anon_sym__Nullable] = ACTIONS(7576), + [anon_sym__Nonnull] = ACTIONS(7576), + [anon_sym__Nullable_result] = ACTIONS(7576), + [anon_sym__Null_unspecified] = ACTIONS(7576), + [anon_sym___autoreleasing] = ACTIONS(7576), + [anon_sym___nullable] = ACTIONS(7576), + [anon_sym___nonnull] = ACTIONS(7576), + [anon_sym___strong] = ACTIONS(7576), + [anon_sym___weak] = ACTIONS(7576), + [anon_sym___bridge] = ACTIONS(7576), + [anon_sym___bridge_transfer] = ACTIONS(7576), + [anon_sym___bridge_retained] = ACTIONS(7576), + [anon_sym___unsafe_unretained] = ACTIONS(7576), + [anon_sym___block] = ACTIONS(7576), + [anon_sym___kindof] = ACTIONS(7576), + [anon_sym___unused] = ACTIONS(7576), + [anon_sym__Complex] = ACTIONS(7576), + [anon_sym___complex] = ACTIONS(7576), + [anon_sym_IBOutlet] = ACTIONS(7576), + [anon_sym_IBInspectable] = ACTIONS(7576), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7576), + [anon_sym_signed] = ACTIONS(7576), + [anon_sym_unsigned] = ACTIONS(7576), + [anon_sym_long] = ACTIONS(7576), + [anon_sym_short] = ACTIONS(7576), + [sym_primitive_type] = ACTIONS(7576), + [anon_sym_enum] = ACTIONS(7576), + [anon_sym_struct] = ACTIONS(7576), + [anon_sym_union] = ACTIONS(7576), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7434), - [anon_sym_ATend] = ACTIONS(7436), - [sym_optional] = ACTIONS(7436), - [sym_required] = ACTIONS(7436), - [anon_sym_ATproperty] = ACTIONS(7436), - [sym_method_attribute_specifier] = ACTIONS(7434), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7434), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7434), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7434), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7434), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7434), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7434), - [anon_sym_NS_AVAILABLE] = ACTIONS(7434), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7434), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7434), - [anon_sym_API_AVAILABLE] = ACTIONS(7434), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7434), - [anon_sym_API_DEPRECATED] = ACTIONS(7434), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7434), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7434), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7434), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7434), - [anon_sym___deprecated_msg] = ACTIONS(7434), - [anon_sym___deprecated_enum_msg] = ACTIONS(7434), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7434), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7434), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7434), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7434), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7434), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7434), - [anon_sym_typeof] = ACTIONS(7434), - [anon_sym___typeof] = ACTIONS(7434), - [anon_sym___typeof__] = ACTIONS(7434), - [sym_id] = ACTIONS(7434), - [sym_instancetype] = ACTIONS(7434), - [sym_Class] = ACTIONS(7434), - [sym_SEL] = ACTIONS(7434), - [sym_IMP] = ACTIONS(7434), - [sym_BOOL] = ACTIONS(7434), - [sym_auto] = ACTIONS(7434), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7576), + [anon_sym_ATend] = ACTIONS(7578), + [sym_optional] = ACTIONS(7578), + [sym_required] = ACTIONS(7578), + [anon_sym_ATproperty] = ACTIONS(7578), + [sym_method_attribute_specifier] = ACTIONS(7576), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7576), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7576), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7576), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7576), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7576), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7576), + [anon_sym_NS_AVAILABLE] = ACTIONS(7576), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7576), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7576), + [anon_sym_API_AVAILABLE] = ACTIONS(7576), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7576), + [anon_sym_API_DEPRECATED] = ACTIONS(7576), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7576), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7576), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7576), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7576), + [anon_sym___deprecated_msg] = ACTIONS(7576), + [anon_sym___deprecated_enum_msg] = ACTIONS(7576), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7576), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7576), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7576), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7576), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7576), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7576), + [anon_sym_NS_ENUM] = ACTIONS(7576), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7576), + [anon_sym_NS_OPTIONS] = ACTIONS(7576), + [anon_sym_typeof] = ACTIONS(7576), + [anon_sym___typeof] = ACTIONS(7576), + [anon_sym___typeof__] = ACTIONS(7576), + [sym_id] = ACTIONS(7576), + [sym_instancetype] = ACTIONS(7576), + [sym_Class] = ACTIONS(7576), + [sym_SEL] = ACTIONS(7576), + [sym_IMP] = ACTIONS(7576), + [sym_BOOL] = ACTIONS(7576), + [sym_auto] = ACTIONS(7576), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -505936,103 +503795,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3134] = { - [sym_identifier] = ACTIONS(7438), - [aux_sym_preproc_def_token1] = ACTIONS(7440), - [anon_sym_DASH] = ACTIONS(7440), - [anon_sym_PLUS] = ACTIONS(7440), - [anon_sym_typedef] = ACTIONS(7438), - [anon_sym_extern] = ACTIONS(7438), - [anon_sym___attribute] = ACTIONS(7438), - [anon_sym___attribute__] = ACTIONS(7438), - [anon_sym___declspec] = ACTIONS(7438), - [anon_sym_static] = ACTIONS(7438), - [anon_sym_auto] = ACTIONS(7438), - [anon_sym_register] = ACTIONS(7438), - [anon_sym_inline] = ACTIONS(7438), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7438), - [anon_sym_const] = ACTIONS(7438), - [anon_sym_volatile] = ACTIONS(7438), - [anon_sym_restrict] = ACTIONS(7438), - [anon_sym__Atomic] = ACTIONS(7438), - [anon_sym_in] = ACTIONS(7438), - [anon_sym_out] = ACTIONS(7438), - [anon_sym_inout] = ACTIONS(7438), - [anon_sym_bycopy] = ACTIONS(7438), - [anon_sym_byref] = ACTIONS(7438), - [anon_sym_oneway] = ACTIONS(7438), - [anon_sym__Nullable] = ACTIONS(7438), - [anon_sym__Nonnull] = ACTIONS(7438), - [anon_sym__Nullable_result] = ACTIONS(7438), - [anon_sym__Null_unspecified] = ACTIONS(7438), - [anon_sym___autoreleasing] = ACTIONS(7438), - [anon_sym___nullable] = ACTIONS(7438), - [anon_sym___nonnull] = ACTIONS(7438), - [anon_sym___strong] = ACTIONS(7438), - [anon_sym___weak] = ACTIONS(7438), - [anon_sym___bridge] = ACTIONS(7438), - [anon_sym___bridge_transfer] = ACTIONS(7438), - [anon_sym___bridge_retained] = ACTIONS(7438), - [anon_sym___unsafe_unretained] = ACTIONS(7438), - [anon_sym___block] = ACTIONS(7438), - [anon_sym___kindof] = ACTIONS(7438), - [anon_sym___unused] = ACTIONS(7438), - [anon_sym__Complex] = ACTIONS(7438), - [anon_sym___complex] = ACTIONS(7438), - [anon_sym_IBOutlet] = ACTIONS(7438), - [anon_sym_IBInspectable] = ACTIONS(7438), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7438), - [anon_sym_signed] = ACTIONS(7438), - [anon_sym_unsigned] = ACTIONS(7438), - [anon_sym_long] = ACTIONS(7438), - [anon_sym_short] = ACTIONS(7438), - [sym_primitive_type] = ACTIONS(7438), - [anon_sym_enum] = ACTIONS(7438), - [anon_sym_NS_ENUM] = ACTIONS(7438), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7438), - [anon_sym_NS_OPTIONS] = ACTIONS(7438), - [anon_sym_struct] = ACTIONS(7438), - [anon_sym_union] = ACTIONS(7438), + [sym_identifier] = ACTIONS(7580), + [aux_sym_preproc_def_token1] = ACTIONS(7582), + [anon_sym_DASH] = ACTIONS(7582), + [anon_sym_PLUS] = ACTIONS(7582), + [anon_sym_typedef] = ACTIONS(7580), + [anon_sym_extern] = ACTIONS(7580), + [anon_sym___attribute] = ACTIONS(7580), + [anon_sym___attribute__] = ACTIONS(7580), + [anon_sym___declspec] = ACTIONS(7580), + [anon_sym_static] = ACTIONS(7580), + [anon_sym_auto] = ACTIONS(7580), + [anon_sym_register] = ACTIONS(7580), + [anon_sym_inline] = ACTIONS(7580), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7580), + [anon_sym_const] = ACTIONS(7580), + [anon_sym_volatile] = ACTIONS(7580), + [anon_sym_restrict] = ACTIONS(7580), + [anon_sym__Atomic] = ACTIONS(7580), + [anon_sym_in] = ACTIONS(7580), + [anon_sym_out] = ACTIONS(7580), + [anon_sym_inout] = ACTIONS(7580), + [anon_sym_bycopy] = ACTIONS(7580), + [anon_sym_byref] = ACTIONS(7580), + [anon_sym_oneway] = ACTIONS(7580), + [anon_sym__Nullable] = ACTIONS(7580), + [anon_sym__Nonnull] = ACTIONS(7580), + [anon_sym__Nullable_result] = ACTIONS(7580), + [anon_sym__Null_unspecified] = ACTIONS(7580), + [anon_sym___autoreleasing] = ACTIONS(7580), + [anon_sym___nullable] = ACTIONS(7580), + [anon_sym___nonnull] = ACTIONS(7580), + [anon_sym___strong] = ACTIONS(7580), + [anon_sym___weak] = ACTIONS(7580), + [anon_sym___bridge] = ACTIONS(7580), + [anon_sym___bridge_transfer] = ACTIONS(7580), + [anon_sym___bridge_retained] = ACTIONS(7580), + [anon_sym___unsafe_unretained] = ACTIONS(7580), + [anon_sym___block] = ACTIONS(7580), + [anon_sym___kindof] = ACTIONS(7580), + [anon_sym___unused] = ACTIONS(7580), + [anon_sym__Complex] = ACTIONS(7580), + [anon_sym___complex] = ACTIONS(7580), + [anon_sym_IBOutlet] = ACTIONS(7580), + [anon_sym_IBInspectable] = ACTIONS(7580), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7580), + [anon_sym_signed] = ACTIONS(7580), + [anon_sym_unsigned] = ACTIONS(7580), + [anon_sym_long] = ACTIONS(7580), + [anon_sym_short] = ACTIONS(7580), + [sym_primitive_type] = ACTIONS(7580), + [anon_sym_enum] = ACTIONS(7580), + [anon_sym_struct] = ACTIONS(7580), + [anon_sym_union] = ACTIONS(7580), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7438), - [anon_sym_ATend] = ACTIONS(7440), - [sym_optional] = ACTIONS(7440), - [sym_required] = ACTIONS(7440), - [anon_sym_ATproperty] = ACTIONS(7440), - [sym_method_attribute_specifier] = ACTIONS(7438), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7438), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7438), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7438), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7438), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7438), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7438), - [anon_sym_NS_AVAILABLE] = ACTIONS(7438), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7438), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7438), - [anon_sym_API_AVAILABLE] = ACTIONS(7438), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7438), - [anon_sym_API_DEPRECATED] = ACTIONS(7438), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7438), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7438), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7438), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7438), - [anon_sym___deprecated_msg] = ACTIONS(7438), - [anon_sym___deprecated_enum_msg] = ACTIONS(7438), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7438), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7438), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7438), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7438), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7438), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7438), - [anon_sym_typeof] = ACTIONS(7438), - [anon_sym___typeof] = ACTIONS(7438), - [anon_sym___typeof__] = ACTIONS(7438), - [sym_id] = ACTIONS(7438), - [sym_instancetype] = ACTIONS(7438), - [sym_Class] = ACTIONS(7438), - [sym_SEL] = ACTIONS(7438), - [sym_IMP] = ACTIONS(7438), - [sym_BOOL] = ACTIONS(7438), - [sym_auto] = ACTIONS(7438), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7580), + [anon_sym_ATend] = ACTIONS(7582), + [sym_optional] = ACTIONS(7582), + [sym_required] = ACTIONS(7582), + [anon_sym_ATproperty] = ACTIONS(7582), + [sym_method_attribute_specifier] = ACTIONS(7580), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7580), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7580), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7580), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7580), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7580), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7580), + [anon_sym_NS_AVAILABLE] = ACTIONS(7580), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7580), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7580), + [anon_sym_API_AVAILABLE] = ACTIONS(7580), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7580), + [anon_sym_API_DEPRECATED] = ACTIONS(7580), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7580), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7580), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7580), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7580), + [anon_sym___deprecated_msg] = ACTIONS(7580), + [anon_sym___deprecated_enum_msg] = ACTIONS(7580), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7580), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7580), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7580), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7580), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7580), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7580), + [anon_sym_NS_ENUM] = ACTIONS(7580), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7580), + [anon_sym_NS_OPTIONS] = ACTIONS(7580), + [anon_sym_typeof] = ACTIONS(7580), + [anon_sym___typeof] = ACTIONS(7580), + [anon_sym___typeof__] = ACTIONS(7580), + [sym_id] = ACTIONS(7580), + [sym_instancetype] = ACTIONS(7580), + [sym_Class] = ACTIONS(7580), + [sym_SEL] = ACTIONS(7580), + [sym_IMP] = ACTIONS(7580), + [sym_BOOL] = ACTIONS(7580), + [sym_auto] = ACTIONS(7580), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -506041,103 +503900,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3135] = { - [sym_identifier] = ACTIONS(7442), - [aux_sym_preproc_def_token1] = ACTIONS(7444), - [anon_sym_DASH] = ACTIONS(7444), - [anon_sym_PLUS] = ACTIONS(7444), - [anon_sym_typedef] = ACTIONS(7442), - [anon_sym_extern] = ACTIONS(7442), - [anon_sym___attribute] = ACTIONS(7442), - [anon_sym___attribute__] = ACTIONS(7442), - [anon_sym___declspec] = ACTIONS(7442), - [anon_sym_static] = ACTIONS(7442), - [anon_sym_auto] = ACTIONS(7442), - [anon_sym_register] = ACTIONS(7442), - [anon_sym_inline] = ACTIONS(7442), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7442), - [anon_sym_const] = ACTIONS(7442), - [anon_sym_volatile] = ACTIONS(7442), - [anon_sym_restrict] = ACTIONS(7442), - [anon_sym__Atomic] = ACTIONS(7442), - [anon_sym_in] = ACTIONS(7442), - [anon_sym_out] = ACTIONS(7442), - [anon_sym_inout] = ACTIONS(7442), - [anon_sym_bycopy] = ACTIONS(7442), - [anon_sym_byref] = ACTIONS(7442), - [anon_sym_oneway] = ACTIONS(7442), - [anon_sym__Nullable] = ACTIONS(7442), - [anon_sym__Nonnull] = ACTIONS(7442), - [anon_sym__Nullable_result] = ACTIONS(7442), - [anon_sym__Null_unspecified] = ACTIONS(7442), - [anon_sym___autoreleasing] = ACTIONS(7442), - [anon_sym___nullable] = ACTIONS(7442), - [anon_sym___nonnull] = ACTIONS(7442), - [anon_sym___strong] = ACTIONS(7442), - [anon_sym___weak] = ACTIONS(7442), - [anon_sym___bridge] = ACTIONS(7442), - [anon_sym___bridge_transfer] = ACTIONS(7442), - [anon_sym___bridge_retained] = ACTIONS(7442), - [anon_sym___unsafe_unretained] = ACTIONS(7442), - [anon_sym___block] = ACTIONS(7442), - [anon_sym___kindof] = ACTIONS(7442), - [anon_sym___unused] = ACTIONS(7442), - [anon_sym__Complex] = ACTIONS(7442), - [anon_sym___complex] = ACTIONS(7442), - [anon_sym_IBOutlet] = ACTIONS(7442), - [anon_sym_IBInspectable] = ACTIONS(7442), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7442), - [anon_sym_signed] = ACTIONS(7442), - [anon_sym_unsigned] = ACTIONS(7442), - [anon_sym_long] = ACTIONS(7442), - [anon_sym_short] = ACTIONS(7442), - [sym_primitive_type] = ACTIONS(7442), - [anon_sym_enum] = ACTIONS(7442), - [anon_sym_NS_ENUM] = ACTIONS(7442), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7442), - [anon_sym_NS_OPTIONS] = ACTIONS(7442), - [anon_sym_struct] = ACTIONS(7442), - [anon_sym_union] = ACTIONS(7442), + [sym_identifier] = ACTIONS(7584), + [aux_sym_preproc_def_token1] = ACTIONS(7586), + [anon_sym_DASH] = ACTIONS(7586), + [anon_sym_PLUS] = ACTIONS(7586), + [anon_sym_typedef] = ACTIONS(7584), + [anon_sym_extern] = ACTIONS(7584), + [anon_sym___attribute] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7584), + [anon_sym___declspec] = ACTIONS(7584), + [anon_sym_static] = ACTIONS(7584), + [anon_sym_auto] = ACTIONS(7584), + [anon_sym_register] = ACTIONS(7584), + [anon_sym_inline] = ACTIONS(7584), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7584), + [anon_sym_volatile] = ACTIONS(7584), + [anon_sym_restrict] = ACTIONS(7584), + [anon_sym__Atomic] = ACTIONS(7584), + [anon_sym_in] = ACTIONS(7584), + [anon_sym_out] = ACTIONS(7584), + [anon_sym_inout] = ACTIONS(7584), + [anon_sym_bycopy] = ACTIONS(7584), + [anon_sym_byref] = ACTIONS(7584), + [anon_sym_oneway] = ACTIONS(7584), + [anon_sym__Nullable] = ACTIONS(7584), + [anon_sym__Nonnull] = ACTIONS(7584), + [anon_sym__Nullable_result] = ACTIONS(7584), + [anon_sym__Null_unspecified] = ACTIONS(7584), + [anon_sym___autoreleasing] = ACTIONS(7584), + [anon_sym___nullable] = ACTIONS(7584), + [anon_sym___nonnull] = ACTIONS(7584), + [anon_sym___strong] = ACTIONS(7584), + [anon_sym___weak] = ACTIONS(7584), + [anon_sym___bridge] = ACTIONS(7584), + [anon_sym___bridge_transfer] = ACTIONS(7584), + [anon_sym___bridge_retained] = ACTIONS(7584), + [anon_sym___unsafe_unretained] = ACTIONS(7584), + [anon_sym___block] = ACTIONS(7584), + [anon_sym___kindof] = ACTIONS(7584), + [anon_sym___unused] = ACTIONS(7584), + [anon_sym__Complex] = ACTIONS(7584), + [anon_sym___complex] = ACTIONS(7584), + [anon_sym_IBOutlet] = ACTIONS(7584), + [anon_sym_IBInspectable] = ACTIONS(7584), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7584), + [anon_sym_signed] = ACTIONS(7584), + [anon_sym_unsigned] = ACTIONS(7584), + [anon_sym_long] = ACTIONS(7584), + [anon_sym_short] = ACTIONS(7584), + [sym_primitive_type] = ACTIONS(7584), + [anon_sym_enum] = ACTIONS(7584), + [anon_sym_struct] = ACTIONS(7584), + [anon_sym_union] = ACTIONS(7584), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7442), - [anon_sym_ATend] = ACTIONS(7444), - [sym_optional] = ACTIONS(7444), - [sym_required] = ACTIONS(7444), - [anon_sym_ATproperty] = ACTIONS(7444), - [sym_method_attribute_specifier] = ACTIONS(7442), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7442), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7442), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7442), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7442), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7442), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7442), - [anon_sym_NS_AVAILABLE] = ACTIONS(7442), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7442), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7442), - [anon_sym_API_AVAILABLE] = ACTIONS(7442), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7442), - [anon_sym_API_DEPRECATED] = ACTIONS(7442), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7442), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7442), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7442), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7442), - [anon_sym___deprecated_msg] = ACTIONS(7442), - [anon_sym___deprecated_enum_msg] = ACTIONS(7442), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7442), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7442), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7442), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7442), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7442), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7442), - [anon_sym_typeof] = ACTIONS(7442), - [anon_sym___typeof] = ACTIONS(7442), - [anon_sym___typeof__] = ACTIONS(7442), - [sym_id] = ACTIONS(7442), - [sym_instancetype] = ACTIONS(7442), - [sym_Class] = ACTIONS(7442), - [sym_SEL] = ACTIONS(7442), - [sym_IMP] = ACTIONS(7442), - [sym_BOOL] = ACTIONS(7442), - [sym_auto] = ACTIONS(7442), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7584), + [anon_sym_ATend] = ACTIONS(7586), + [sym_optional] = ACTIONS(7586), + [sym_required] = ACTIONS(7586), + [anon_sym_ATproperty] = ACTIONS(7586), + [sym_method_attribute_specifier] = ACTIONS(7584), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7584), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7584), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7584), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7584), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7584), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7584), + [anon_sym_NS_AVAILABLE] = ACTIONS(7584), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7584), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7584), + [anon_sym_API_AVAILABLE] = ACTIONS(7584), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7584), + [anon_sym_API_DEPRECATED] = ACTIONS(7584), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7584), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7584), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7584), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7584), + [anon_sym___deprecated_msg] = ACTIONS(7584), + [anon_sym___deprecated_enum_msg] = ACTIONS(7584), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7584), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7584), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7584), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7584), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7584), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7584), + [anon_sym_NS_ENUM] = ACTIONS(7584), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7584), + [anon_sym_NS_OPTIONS] = ACTIONS(7584), + [anon_sym_typeof] = ACTIONS(7584), + [anon_sym___typeof] = ACTIONS(7584), + [anon_sym___typeof__] = ACTIONS(7584), + [sym_id] = ACTIONS(7584), + [sym_instancetype] = ACTIONS(7584), + [sym_Class] = ACTIONS(7584), + [sym_SEL] = ACTIONS(7584), + [sym_IMP] = ACTIONS(7584), + [sym_BOOL] = ACTIONS(7584), + [sym_auto] = ACTIONS(7584), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -506146,103 +504005,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3136] = { - [sym_identifier] = ACTIONS(7438), - [aux_sym_preproc_def_token1] = ACTIONS(7440), - [anon_sym_DASH] = ACTIONS(7440), - [anon_sym_PLUS] = ACTIONS(7440), - [anon_sym_typedef] = ACTIONS(7438), - [anon_sym_extern] = ACTIONS(7438), - [anon_sym___attribute] = ACTIONS(7438), - [anon_sym___attribute__] = ACTIONS(7438), - [anon_sym___declspec] = ACTIONS(7438), - [anon_sym_static] = ACTIONS(7438), - [anon_sym_auto] = ACTIONS(7438), - [anon_sym_register] = ACTIONS(7438), - [anon_sym_inline] = ACTIONS(7438), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7438), - [anon_sym_const] = ACTIONS(7438), - [anon_sym_volatile] = ACTIONS(7438), - [anon_sym_restrict] = ACTIONS(7438), - [anon_sym__Atomic] = ACTIONS(7438), - [anon_sym_in] = ACTIONS(7438), - [anon_sym_out] = ACTIONS(7438), - [anon_sym_inout] = ACTIONS(7438), - [anon_sym_bycopy] = ACTIONS(7438), - [anon_sym_byref] = ACTIONS(7438), - [anon_sym_oneway] = ACTIONS(7438), - [anon_sym__Nullable] = ACTIONS(7438), - [anon_sym__Nonnull] = ACTIONS(7438), - [anon_sym__Nullable_result] = ACTIONS(7438), - [anon_sym__Null_unspecified] = ACTIONS(7438), - [anon_sym___autoreleasing] = ACTIONS(7438), - [anon_sym___nullable] = ACTIONS(7438), - [anon_sym___nonnull] = ACTIONS(7438), - [anon_sym___strong] = ACTIONS(7438), - [anon_sym___weak] = ACTIONS(7438), - [anon_sym___bridge] = ACTIONS(7438), - [anon_sym___bridge_transfer] = ACTIONS(7438), - [anon_sym___bridge_retained] = ACTIONS(7438), - [anon_sym___unsafe_unretained] = ACTIONS(7438), - [anon_sym___block] = ACTIONS(7438), - [anon_sym___kindof] = ACTIONS(7438), - [anon_sym___unused] = ACTIONS(7438), - [anon_sym__Complex] = ACTIONS(7438), - [anon_sym___complex] = ACTIONS(7438), - [anon_sym_IBOutlet] = ACTIONS(7438), - [anon_sym_IBInspectable] = ACTIONS(7438), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7438), - [anon_sym_signed] = ACTIONS(7438), - [anon_sym_unsigned] = ACTIONS(7438), - [anon_sym_long] = ACTIONS(7438), - [anon_sym_short] = ACTIONS(7438), - [sym_primitive_type] = ACTIONS(7438), - [anon_sym_enum] = ACTIONS(7438), - [anon_sym_NS_ENUM] = ACTIONS(7438), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7438), - [anon_sym_NS_OPTIONS] = ACTIONS(7438), - [anon_sym_struct] = ACTIONS(7438), - [anon_sym_union] = ACTIONS(7438), + [sym_identifier] = ACTIONS(7584), + [aux_sym_preproc_def_token1] = ACTIONS(7586), + [anon_sym_DASH] = ACTIONS(7586), + [anon_sym_PLUS] = ACTIONS(7586), + [anon_sym_typedef] = ACTIONS(7584), + [anon_sym_extern] = ACTIONS(7584), + [anon_sym___attribute] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7584), + [anon_sym___declspec] = ACTIONS(7584), + [anon_sym_static] = ACTIONS(7584), + [anon_sym_auto] = ACTIONS(7584), + [anon_sym_register] = ACTIONS(7584), + [anon_sym_inline] = ACTIONS(7584), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7584), + [anon_sym_volatile] = ACTIONS(7584), + [anon_sym_restrict] = ACTIONS(7584), + [anon_sym__Atomic] = ACTIONS(7584), + [anon_sym_in] = ACTIONS(7584), + [anon_sym_out] = ACTIONS(7584), + [anon_sym_inout] = ACTIONS(7584), + [anon_sym_bycopy] = ACTIONS(7584), + [anon_sym_byref] = ACTIONS(7584), + [anon_sym_oneway] = ACTIONS(7584), + [anon_sym__Nullable] = ACTIONS(7584), + [anon_sym__Nonnull] = ACTIONS(7584), + [anon_sym__Nullable_result] = ACTIONS(7584), + [anon_sym__Null_unspecified] = ACTIONS(7584), + [anon_sym___autoreleasing] = ACTIONS(7584), + [anon_sym___nullable] = ACTIONS(7584), + [anon_sym___nonnull] = ACTIONS(7584), + [anon_sym___strong] = ACTIONS(7584), + [anon_sym___weak] = ACTIONS(7584), + [anon_sym___bridge] = ACTIONS(7584), + [anon_sym___bridge_transfer] = ACTIONS(7584), + [anon_sym___bridge_retained] = ACTIONS(7584), + [anon_sym___unsafe_unretained] = ACTIONS(7584), + [anon_sym___block] = ACTIONS(7584), + [anon_sym___kindof] = ACTIONS(7584), + [anon_sym___unused] = ACTIONS(7584), + [anon_sym__Complex] = ACTIONS(7584), + [anon_sym___complex] = ACTIONS(7584), + [anon_sym_IBOutlet] = ACTIONS(7584), + [anon_sym_IBInspectable] = ACTIONS(7584), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7584), + [anon_sym_signed] = ACTIONS(7584), + [anon_sym_unsigned] = ACTIONS(7584), + [anon_sym_long] = ACTIONS(7584), + [anon_sym_short] = ACTIONS(7584), + [sym_primitive_type] = ACTIONS(7584), + [anon_sym_enum] = ACTIONS(7584), + [anon_sym_struct] = ACTIONS(7584), + [anon_sym_union] = ACTIONS(7584), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7438), - [anon_sym_ATend] = ACTIONS(7440), - [sym_optional] = ACTIONS(7440), - [sym_required] = ACTIONS(7440), - [anon_sym_ATproperty] = ACTIONS(7440), - [sym_method_attribute_specifier] = ACTIONS(7438), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7438), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7438), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7438), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7438), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7438), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7438), - [anon_sym_NS_AVAILABLE] = ACTIONS(7438), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7438), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7438), - [anon_sym_API_AVAILABLE] = ACTIONS(7438), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7438), - [anon_sym_API_DEPRECATED] = ACTIONS(7438), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7438), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7438), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7438), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7438), - [anon_sym___deprecated_msg] = ACTIONS(7438), - [anon_sym___deprecated_enum_msg] = ACTIONS(7438), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7438), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7438), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7438), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7438), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7438), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7438), - [anon_sym_typeof] = ACTIONS(7438), - [anon_sym___typeof] = ACTIONS(7438), - [anon_sym___typeof__] = ACTIONS(7438), - [sym_id] = ACTIONS(7438), - [sym_instancetype] = ACTIONS(7438), - [sym_Class] = ACTIONS(7438), - [sym_SEL] = ACTIONS(7438), - [sym_IMP] = ACTIONS(7438), - [sym_BOOL] = ACTIONS(7438), - [sym_auto] = ACTIONS(7438), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7584), + [anon_sym_ATend] = ACTIONS(7586), + [sym_optional] = ACTIONS(7586), + [sym_required] = ACTIONS(7586), + [anon_sym_ATproperty] = ACTIONS(7586), + [sym_method_attribute_specifier] = ACTIONS(7584), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7584), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7584), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7584), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7584), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7584), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7584), + [anon_sym_NS_AVAILABLE] = ACTIONS(7584), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7584), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7584), + [anon_sym_API_AVAILABLE] = ACTIONS(7584), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7584), + [anon_sym_API_DEPRECATED] = ACTIONS(7584), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7584), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7584), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7584), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7584), + [anon_sym___deprecated_msg] = ACTIONS(7584), + [anon_sym___deprecated_enum_msg] = ACTIONS(7584), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7584), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7584), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7584), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7584), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7584), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7584), + [anon_sym_NS_ENUM] = ACTIONS(7584), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7584), + [anon_sym_NS_OPTIONS] = ACTIONS(7584), + [anon_sym_typeof] = ACTIONS(7584), + [anon_sym___typeof] = ACTIONS(7584), + [anon_sym___typeof__] = ACTIONS(7584), + [sym_id] = ACTIONS(7584), + [sym_instancetype] = ACTIONS(7584), + [sym_Class] = ACTIONS(7584), + [sym_SEL] = ACTIONS(7584), + [sym_IMP] = ACTIONS(7584), + [sym_BOOL] = ACTIONS(7584), + [sym_auto] = ACTIONS(7584), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -506251,103 +504110,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3137] = { - [sym_identifier] = ACTIONS(7446), - [aux_sym_preproc_def_token1] = ACTIONS(7448), - [anon_sym_DASH] = ACTIONS(7448), - [anon_sym_PLUS] = ACTIONS(7448), - [anon_sym_typedef] = ACTIONS(7446), - [anon_sym_extern] = ACTIONS(7446), - [anon_sym___attribute] = ACTIONS(7446), - [anon_sym___attribute__] = ACTIONS(7446), - [anon_sym___declspec] = ACTIONS(7446), - [anon_sym_static] = ACTIONS(7446), - [anon_sym_auto] = ACTIONS(7446), - [anon_sym_register] = ACTIONS(7446), - [anon_sym_inline] = ACTIONS(7446), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7446), - [anon_sym_const] = ACTIONS(7446), - [anon_sym_volatile] = ACTIONS(7446), - [anon_sym_restrict] = ACTIONS(7446), - [anon_sym__Atomic] = ACTIONS(7446), - [anon_sym_in] = ACTIONS(7446), - [anon_sym_out] = ACTIONS(7446), - [anon_sym_inout] = ACTIONS(7446), - [anon_sym_bycopy] = ACTIONS(7446), - [anon_sym_byref] = ACTIONS(7446), - [anon_sym_oneway] = ACTIONS(7446), - [anon_sym__Nullable] = ACTIONS(7446), - [anon_sym__Nonnull] = ACTIONS(7446), - [anon_sym__Nullable_result] = ACTIONS(7446), - [anon_sym__Null_unspecified] = ACTIONS(7446), - [anon_sym___autoreleasing] = ACTIONS(7446), - [anon_sym___nullable] = ACTIONS(7446), - [anon_sym___nonnull] = ACTIONS(7446), - [anon_sym___strong] = ACTIONS(7446), - [anon_sym___weak] = ACTIONS(7446), - [anon_sym___bridge] = ACTIONS(7446), - [anon_sym___bridge_transfer] = ACTIONS(7446), - [anon_sym___bridge_retained] = ACTIONS(7446), - [anon_sym___unsafe_unretained] = ACTIONS(7446), - [anon_sym___block] = ACTIONS(7446), - [anon_sym___kindof] = ACTIONS(7446), - [anon_sym___unused] = ACTIONS(7446), - [anon_sym__Complex] = ACTIONS(7446), - [anon_sym___complex] = ACTIONS(7446), - [anon_sym_IBOutlet] = ACTIONS(7446), - [anon_sym_IBInspectable] = ACTIONS(7446), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7446), - [anon_sym_signed] = ACTIONS(7446), - [anon_sym_unsigned] = ACTIONS(7446), - [anon_sym_long] = ACTIONS(7446), - [anon_sym_short] = ACTIONS(7446), - [sym_primitive_type] = ACTIONS(7446), - [anon_sym_enum] = ACTIONS(7446), - [anon_sym_NS_ENUM] = ACTIONS(7446), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7446), - [anon_sym_NS_OPTIONS] = ACTIONS(7446), - [anon_sym_struct] = ACTIONS(7446), - [anon_sym_union] = ACTIONS(7446), + [sym_identifier] = ACTIONS(7588), + [aux_sym_preproc_def_token1] = ACTIONS(7590), + [anon_sym_DASH] = ACTIONS(7590), + [anon_sym_PLUS] = ACTIONS(7590), + [anon_sym_typedef] = ACTIONS(7588), + [anon_sym_extern] = ACTIONS(7588), + [anon_sym___attribute] = ACTIONS(7588), + [anon_sym___attribute__] = ACTIONS(7588), + [anon_sym___declspec] = ACTIONS(7588), + [anon_sym_static] = ACTIONS(7588), + [anon_sym_auto] = ACTIONS(7588), + [anon_sym_register] = ACTIONS(7588), + [anon_sym_inline] = ACTIONS(7588), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7588), + [anon_sym_const] = ACTIONS(7588), + [anon_sym_volatile] = ACTIONS(7588), + [anon_sym_restrict] = ACTIONS(7588), + [anon_sym__Atomic] = ACTIONS(7588), + [anon_sym_in] = ACTIONS(7588), + [anon_sym_out] = ACTIONS(7588), + [anon_sym_inout] = ACTIONS(7588), + [anon_sym_bycopy] = ACTIONS(7588), + [anon_sym_byref] = ACTIONS(7588), + [anon_sym_oneway] = ACTIONS(7588), + [anon_sym__Nullable] = ACTIONS(7588), + [anon_sym__Nonnull] = ACTIONS(7588), + [anon_sym__Nullable_result] = ACTIONS(7588), + [anon_sym__Null_unspecified] = ACTIONS(7588), + [anon_sym___autoreleasing] = ACTIONS(7588), + [anon_sym___nullable] = ACTIONS(7588), + [anon_sym___nonnull] = ACTIONS(7588), + [anon_sym___strong] = ACTIONS(7588), + [anon_sym___weak] = ACTIONS(7588), + [anon_sym___bridge] = ACTIONS(7588), + [anon_sym___bridge_transfer] = ACTIONS(7588), + [anon_sym___bridge_retained] = ACTIONS(7588), + [anon_sym___unsafe_unretained] = ACTIONS(7588), + [anon_sym___block] = ACTIONS(7588), + [anon_sym___kindof] = ACTIONS(7588), + [anon_sym___unused] = ACTIONS(7588), + [anon_sym__Complex] = ACTIONS(7588), + [anon_sym___complex] = ACTIONS(7588), + [anon_sym_IBOutlet] = ACTIONS(7588), + [anon_sym_IBInspectable] = ACTIONS(7588), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7588), + [anon_sym_signed] = ACTIONS(7588), + [anon_sym_unsigned] = ACTIONS(7588), + [anon_sym_long] = ACTIONS(7588), + [anon_sym_short] = ACTIONS(7588), + [sym_primitive_type] = ACTIONS(7588), + [anon_sym_enum] = ACTIONS(7588), + [anon_sym_struct] = ACTIONS(7588), + [anon_sym_union] = ACTIONS(7588), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7446), - [anon_sym_ATend] = ACTIONS(7448), - [sym_optional] = ACTIONS(7448), - [sym_required] = ACTIONS(7448), - [anon_sym_ATproperty] = ACTIONS(7448), - [sym_method_attribute_specifier] = ACTIONS(7446), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7446), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7446), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7446), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7446), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7446), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7446), - [anon_sym_NS_AVAILABLE] = ACTIONS(7446), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7446), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7446), - [anon_sym_API_AVAILABLE] = ACTIONS(7446), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7446), - [anon_sym_API_DEPRECATED] = ACTIONS(7446), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7446), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7446), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7446), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7446), - [anon_sym___deprecated_msg] = ACTIONS(7446), - [anon_sym___deprecated_enum_msg] = ACTIONS(7446), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7446), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7446), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7446), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7446), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7446), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7446), - [anon_sym_typeof] = ACTIONS(7446), - [anon_sym___typeof] = ACTIONS(7446), - [anon_sym___typeof__] = ACTIONS(7446), - [sym_id] = ACTIONS(7446), - [sym_instancetype] = ACTIONS(7446), - [sym_Class] = ACTIONS(7446), - [sym_SEL] = ACTIONS(7446), - [sym_IMP] = ACTIONS(7446), - [sym_BOOL] = ACTIONS(7446), - [sym_auto] = ACTIONS(7446), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7588), + [anon_sym_ATend] = ACTIONS(7590), + [sym_optional] = ACTIONS(7590), + [sym_required] = ACTIONS(7590), + [anon_sym_ATproperty] = ACTIONS(7590), + [sym_method_attribute_specifier] = ACTIONS(7588), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7588), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7588), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7588), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7588), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7588), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7588), + [anon_sym_NS_AVAILABLE] = ACTIONS(7588), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7588), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7588), + [anon_sym_API_AVAILABLE] = ACTIONS(7588), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7588), + [anon_sym_API_DEPRECATED] = ACTIONS(7588), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7588), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7588), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7588), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7588), + [anon_sym___deprecated_msg] = ACTIONS(7588), + [anon_sym___deprecated_enum_msg] = ACTIONS(7588), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7588), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7588), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7588), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7588), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7588), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7588), + [anon_sym_NS_ENUM] = ACTIONS(7588), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7588), + [anon_sym_NS_OPTIONS] = ACTIONS(7588), + [anon_sym_typeof] = ACTIONS(7588), + [anon_sym___typeof] = ACTIONS(7588), + [anon_sym___typeof__] = ACTIONS(7588), + [sym_id] = ACTIONS(7588), + [sym_instancetype] = ACTIONS(7588), + [sym_Class] = ACTIONS(7588), + [sym_SEL] = ACTIONS(7588), + [sym_IMP] = ACTIONS(7588), + [sym_BOOL] = ACTIONS(7588), + [sym_auto] = ACTIONS(7588), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -506356,103 +504215,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3138] = { - [sym_identifier] = ACTIONS(7450), - [aux_sym_preproc_def_token1] = ACTIONS(7452), - [anon_sym_DASH] = ACTIONS(7452), - [anon_sym_PLUS] = ACTIONS(7452), - [anon_sym_typedef] = ACTIONS(7450), - [anon_sym_extern] = ACTIONS(7450), - [anon_sym___attribute] = ACTIONS(7450), - [anon_sym___attribute__] = ACTIONS(7450), - [anon_sym___declspec] = ACTIONS(7450), - [anon_sym_static] = ACTIONS(7450), - [anon_sym_auto] = ACTIONS(7450), - [anon_sym_register] = ACTIONS(7450), - [anon_sym_inline] = ACTIONS(7450), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7450), - [anon_sym_const] = ACTIONS(7450), - [anon_sym_volatile] = ACTIONS(7450), - [anon_sym_restrict] = ACTIONS(7450), - [anon_sym__Atomic] = ACTIONS(7450), - [anon_sym_in] = ACTIONS(7450), - [anon_sym_out] = ACTIONS(7450), - [anon_sym_inout] = ACTIONS(7450), - [anon_sym_bycopy] = ACTIONS(7450), - [anon_sym_byref] = ACTIONS(7450), - [anon_sym_oneway] = ACTIONS(7450), - [anon_sym__Nullable] = ACTIONS(7450), - [anon_sym__Nonnull] = ACTIONS(7450), - [anon_sym__Nullable_result] = ACTIONS(7450), - [anon_sym__Null_unspecified] = ACTIONS(7450), - [anon_sym___autoreleasing] = ACTIONS(7450), - [anon_sym___nullable] = ACTIONS(7450), - [anon_sym___nonnull] = ACTIONS(7450), - [anon_sym___strong] = ACTIONS(7450), - [anon_sym___weak] = ACTIONS(7450), - [anon_sym___bridge] = ACTIONS(7450), - [anon_sym___bridge_transfer] = ACTIONS(7450), - [anon_sym___bridge_retained] = ACTIONS(7450), - [anon_sym___unsafe_unretained] = ACTIONS(7450), - [anon_sym___block] = ACTIONS(7450), - [anon_sym___kindof] = ACTIONS(7450), - [anon_sym___unused] = ACTIONS(7450), - [anon_sym__Complex] = ACTIONS(7450), - [anon_sym___complex] = ACTIONS(7450), - [anon_sym_IBOutlet] = ACTIONS(7450), - [anon_sym_IBInspectable] = ACTIONS(7450), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7450), - [anon_sym_signed] = ACTIONS(7450), - [anon_sym_unsigned] = ACTIONS(7450), - [anon_sym_long] = ACTIONS(7450), - [anon_sym_short] = ACTIONS(7450), - [sym_primitive_type] = ACTIONS(7450), - [anon_sym_enum] = ACTIONS(7450), - [anon_sym_NS_ENUM] = ACTIONS(7450), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7450), - [anon_sym_NS_OPTIONS] = ACTIONS(7450), - [anon_sym_struct] = ACTIONS(7450), - [anon_sym_union] = ACTIONS(7450), + [sym_identifier] = ACTIONS(7592), + [aux_sym_preproc_def_token1] = ACTIONS(7594), + [anon_sym_DASH] = ACTIONS(7594), + [anon_sym_PLUS] = ACTIONS(7594), + [anon_sym_typedef] = ACTIONS(7592), + [anon_sym_extern] = ACTIONS(7592), + [anon_sym___attribute] = ACTIONS(7592), + [anon_sym___attribute__] = ACTIONS(7592), + [anon_sym___declspec] = ACTIONS(7592), + [anon_sym_static] = ACTIONS(7592), + [anon_sym_auto] = ACTIONS(7592), + [anon_sym_register] = ACTIONS(7592), + [anon_sym_inline] = ACTIONS(7592), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7592), + [anon_sym_const] = ACTIONS(7592), + [anon_sym_volatile] = ACTIONS(7592), + [anon_sym_restrict] = ACTIONS(7592), + [anon_sym__Atomic] = ACTIONS(7592), + [anon_sym_in] = ACTIONS(7592), + [anon_sym_out] = ACTIONS(7592), + [anon_sym_inout] = ACTIONS(7592), + [anon_sym_bycopy] = ACTIONS(7592), + [anon_sym_byref] = ACTIONS(7592), + [anon_sym_oneway] = ACTIONS(7592), + [anon_sym__Nullable] = ACTIONS(7592), + [anon_sym__Nonnull] = ACTIONS(7592), + [anon_sym__Nullable_result] = ACTIONS(7592), + [anon_sym__Null_unspecified] = ACTIONS(7592), + [anon_sym___autoreleasing] = ACTIONS(7592), + [anon_sym___nullable] = ACTIONS(7592), + [anon_sym___nonnull] = ACTIONS(7592), + [anon_sym___strong] = ACTIONS(7592), + [anon_sym___weak] = ACTIONS(7592), + [anon_sym___bridge] = ACTIONS(7592), + [anon_sym___bridge_transfer] = ACTIONS(7592), + [anon_sym___bridge_retained] = ACTIONS(7592), + [anon_sym___unsafe_unretained] = ACTIONS(7592), + [anon_sym___block] = ACTIONS(7592), + [anon_sym___kindof] = ACTIONS(7592), + [anon_sym___unused] = ACTIONS(7592), + [anon_sym__Complex] = ACTIONS(7592), + [anon_sym___complex] = ACTIONS(7592), + [anon_sym_IBOutlet] = ACTIONS(7592), + [anon_sym_IBInspectable] = ACTIONS(7592), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7592), + [anon_sym_signed] = ACTIONS(7592), + [anon_sym_unsigned] = ACTIONS(7592), + [anon_sym_long] = ACTIONS(7592), + [anon_sym_short] = ACTIONS(7592), + [sym_primitive_type] = ACTIONS(7592), + [anon_sym_enum] = ACTIONS(7592), + [anon_sym_struct] = ACTIONS(7592), + [anon_sym_union] = ACTIONS(7592), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7450), - [anon_sym_ATend] = ACTIONS(7452), - [sym_optional] = ACTIONS(7452), - [sym_required] = ACTIONS(7452), - [anon_sym_ATproperty] = ACTIONS(7452), - [sym_method_attribute_specifier] = ACTIONS(7450), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7450), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7450), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7450), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7450), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7450), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7450), - [anon_sym_NS_AVAILABLE] = ACTIONS(7450), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7450), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7450), - [anon_sym_API_AVAILABLE] = ACTIONS(7450), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7450), - [anon_sym_API_DEPRECATED] = ACTIONS(7450), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7450), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7450), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7450), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7450), - [anon_sym___deprecated_msg] = ACTIONS(7450), - [anon_sym___deprecated_enum_msg] = ACTIONS(7450), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7450), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7450), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7450), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7450), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7450), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7450), - [anon_sym_typeof] = ACTIONS(7450), - [anon_sym___typeof] = ACTIONS(7450), - [anon_sym___typeof__] = ACTIONS(7450), - [sym_id] = ACTIONS(7450), - [sym_instancetype] = ACTIONS(7450), - [sym_Class] = ACTIONS(7450), - [sym_SEL] = ACTIONS(7450), - [sym_IMP] = ACTIONS(7450), - [sym_BOOL] = ACTIONS(7450), - [sym_auto] = ACTIONS(7450), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7592), + [anon_sym_ATend] = ACTIONS(7594), + [sym_optional] = ACTIONS(7594), + [sym_required] = ACTIONS(7594), + [anon_sym_ATproperty] = ACTIONS(7594), + [sym_method_attribute_specifier] = ACTIONS(7592), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7592), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7592), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7592), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7592), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7592), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7592), + [anon_sym_NS_AVAILABLE] = ACTIONS(7592), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7592), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7592), + [anon_sym_API_AVAILABLE] = ACTIONS(7592), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7592), + [anon_sym_API_DEPRECATED] = ACTIONS(7592), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7592), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7592), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7592), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7592), + [anon_sym___deprecated_msg] = ACTIONS(7592), + [anon_sym___deprecated_enum_msg] = ACTIONS(7592), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7592), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7592), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7592), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7592), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7592), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7592), + [anon_sym_NS_ENUM] = ACTIONS(7592), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7592), + [anon_sym_NS_OPTIONS] = ACTIONS(7592), + [anon_sym_typeof] = ACTIONS(7592), + [anon_sym___typeof] = ACTIONS(7592), + [anon_sym___typeof__] = ACTIONS(7592), + [sym_id] = ACTIONS(7592), + [sym_instancetype] = ACTIONS(7592), + [sym_Class] = ACTIONS(7592), + [sym_SEL] = ACTIONS(7592), + [sym_IMP] = ACTIONS(7592), + [sym_BOOL] = ACTIONS(7592), + [sym_auto] = ACTIONS(7592), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -506461,5325 +504320,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3139] = { - [sym_identifier] = ACTIONS(7454), - [aux_sym_preproc_def_token1] = ACTIONS(7456), - [anon_sym_DASH] = ACTIONS(7456), - [anon_sym_PLUS] = ACTIONS(7456), - [anon_sym_typedef] = ACTIONS(7454), - [anon_sym_extern] = ACTIONS(7454), - [anon_sym___attribute] = ACTIONS(7454), - [anon_sym___attribute__] = ACTIONS(7454), - [anon_sym___declspec] = ACTIONS(7454), - [anon_sym_static] = ACTIONS(7454), - [anon_sym_auto] = ACTIONS(7454), - [anon_sym_register] = ACTIONS(7454), - [anon_sym_inline] = ACTIONS(7454), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7454), - [anon_sym_const] = ACTIONS(7454), - [anon_sym_volatile] = ACTIONS(7454), - [anon_sym_restrict] = ACTIONS(7454), - [anon_sym__Atomic] = ACTIONS(7454), - [anon_sym_in] = ACTIONS(7454), - [anon_sym_out] = ACTIONS(7454), - [anon_sym_inout] = ACTIONS(7454), - [anon_sym_bycopy] = ACTIONS(7454), - [anon_sym_byref] = ACTIONS(7454), - [anon_sym_oneway] = ACTIONS(7454), - [anon_sym__Nullable] = ACTIONS(7454), - [anon_sym__Nonnull] = ACTIONS(7454), - [anon_sym__Nullable_result] = ACTIONS(7454), - [anon_sym__Null_unspecified] = ACTIONS(7454), - [anon_sym___autoreleasing] = ACTIONS(7454), - [anon_sym___nullable] = ACTIONS(7454), - [anon_sym___nonnull] = ACTIONS(7454), - [anon_sym___strong] = ACTIONS(7454), - [anon_sym___weak] = ACTIONS(7454), - [anon_sym___bridge] = ACTIONS(7454), - [anon_sym___bridge_transfer] = ACTIONS(7454), - [anon_sym___bridge_retained] = ACTIONS(7454), - [anon_sym___unsafe_unretained] = ACTIONS(7454), - [anon_sym___block] = ACTIONS(7454), - [anon_sym___kindof] = ACTIONS(7454), - [anon_sym___unused] = ACTIONS(7454), - [anon_sym__Complex] = ACTIONS(7454), - [anon_sym___complex] = ACTIONS(7454), - [anon_sym_IBOutlet] = ACTIONS(7454), - [anon_sym_IBInspectable] = ACTIONS(7454), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7454), - [anon_sym_signed] = ACTIONS(7454), - [anon_sym_unsigned] = ACTIONS(7454), - [anon_sym_long] = ACTIONS(7454), - [anon_sym_short] = ACTIONS(7454), - [sym_primitive_type] = ACTIONS(7454), - [anon_sym_enum] = ACTIONS(7454), - [anon_sym_NS_ENUM] = ACTIONS(7454), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7454), - [anon_sym_NS_OPTIONS] = ACTIONS(7454), - [anon_sym_struct] = ACTIONS(7454), - [anon_sym_union] = ACTIONS(7454), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7454), - [anon_sym_ATend] = ACTIONS(7456), - [sym_optional] = ACTIONS(7456), - [sym_required] = ACTIONS(7456), - [anon_sym_ATproperty] = ACTIONS(7456), - [sym_method_attribute_specifier] = ACTIONS(7454), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7454), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7454), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7454), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7454), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7454), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7454), - [anon_sym_NS_AVAILABLE] = ACTIONS(7454), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7454), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7454), - [anon_sym_API_AVAILABLE] = ACTIONS(7454), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7454), - [anon_sym_API_DEPRECATED] = ACTIONS(7454), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7454), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7454), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7454), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7454), - [anon_sym___deprecated_msg] = ACTIONS(7454), - [anon_sym___deprecated_enum_msg] = ACTIONS(7454), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7454), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7454), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7454), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7454), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7454), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7454), - [anon_sym_typeof] = ACTIONS(7454), - [anon_sym___typeof] = ACTIONS(7454), - [anon_sym___typeof__] = ACTIONS(7454), - [sym_id] = ACTIONS(7454), - [sym_instancetype] = ACTIONS(7454), - [sym_Class] = ACTIONS(7454), - [sym_SEL] = ACTIONS(7454), - [sym_IMP] = ACTIONS(7454), - [sym_BOOL] = ACTIONS(7454), - [sym_auto] = ACTIONS(7454), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3140] = { - [sym_identifier] = ACTIONS(7458), - [aux_sym_preproc_def_token1] = ACTIONS(7460), - [anon_sym_DASH] = ACTIONS(7460), - [anon_sym_PLUS] = ACTIONS(7460), - [anon_sym_typedef] = ACTIONS(7458), - [anon_sym_extern] = ACTIONS(7458), - [anon_sym___attribute] = ACTIONS(7458), - [anon_sym___attribute__] = ACTIONS(7458), - [anon_sym___declspec] = ACTIONS(7458), - [anon_sym_static] = ACTIONS(7458), - [anon_sym_auto] = ACTIONS(7458), - [anon_sym_register] = ACTIONS(7458), - [anon_sym_inline] = ACTIONS(7458), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7458), - [anon_sym_const] = ACTIONS(7458), - [anon_sym_volatile] = ACTIONS(7458), - [anon_sym_restrict] = ACTIONS(7458), - [anon_sym__Atomic] = ACTIONS(7458), - [anon_sym_in] = ACTIONS(7458), - [anon_sym_out] = ACTIONS(7458), - [anon_sym_inout] = ACTIONS(7458), - [anon_sym_bycopy] = ACTIONS(7458), - [anon_sym_byref] = ACTIONS(7458), - [anon_sym_oneway] = ACTIONS(7458), - [anon_sym__Nullable] = ACTIONS(7458), - [anon_sym__Nonnull] = ACTIONS(7458), - [anon_sym__Nullable_result] = ACTIONS(7458), - [anon_sym__Null_unspecified] = ACTIONS(7458), - [anon_sym___autoreleasing] = ACTIONS(7458), - [anon_sym___nullable] = ACTIONS(7458), - [anon_sym___nonnull] = ACTIONS(7458), - [anon_sym___strong] = ACTIONS(7458), - [anon_sym___weak] = ACTIONS(7458), - [anon_sym___bridge] = ACTIONS(7458), - [anon_sym___bridge_transfer] = ACTIONS(7458), - [anon_sym___bridge_retained] = ACTIONS(7458), - [anon_sym___unsafe_unretained] = ACTIONS(7458), - [anon_sym___block] = ACTIONS(7458), - [anon_sym___kindof] = ACTIONS(7458), - [anon_sym___unused] = ACTIONS(7458), - [anon_sym__Complex] = ACTIONS(7458), - [anon_sym___complex] = ACTIONS(7458), - [anon_sym_IBOutlet] = ACTIONS(7458), - [anon_sym_IBInspectable] = ACTIONS(7458), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7458), - [anon_sym_signed] = ACTIONS(7458), - [anon_sym_unsigned] = ACTIONS(7458), - [anon_sym_long] = ACTIONS(7458), - [anon_sym_short] = ACTIONS(7458), - [sym_primitive_type] = ACTIONS(7458), - [anon_sym_enum] = ACTIONS(7458), - [anon_sym_NS_ENUM] = ACTIONS(7458), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7458), - [anon_sym_NS_OPTIONS] = ACTIONS(7458), - [anon_sym_struct] = ACTIONS(7458), - [anon_sym_union] = ACTIONS(7458), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7458), - [anon_sym_ATend] = ACTIONS(7460), - [sym_optional] = ACTIONS(7460), - [sym_required] = ACTIONS(7460), - [anon_sym_ATproperty] = ACTIONS(7460), - [sym_method_attribute_specifier] = ACTIONS(7458), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7458), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7458), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7458), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7458), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7458), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7458), - [anon_sym_NS_AVAILABLE] = ACTIONS(7458), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7458), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7458), - [anon_sym_API_AVAILABLE] = ACTIONS(7458), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7458), - [anon_sym_API_DEPRECATED] = ACTIONS(7458), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7458), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7458), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7458), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7458), - [anon_sym___deprecated_msg] = ACTIONS(7458), - [anon_sym___deprecated_enum_msg] = ACTIONS(7458), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7458), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7458), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7458), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7458), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7458), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7458), - [anon_sym_typeof] = ACTIONS(7458), - [anon_sym___typeof] = ACTIONS(7458), - [anon_sym___typeof__] = ACTIONS(7458), - [sym_id] = ACTIONS(7458), - [sym_instancetype] = ACTIONS(7458), - [sym_Class] = ACTIONS(7458), - [sym_SEL] = ACTIONS(7458), - [sym_IMP] = ACTIONS(7458), - [sym_BOOL] = ACTIONS(7458), - [sym_auto] = ACTIONS(7458), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3141] = { - [sym_identifier] = ACTIONS(7462), - [aux_sym_preproc_def_token1] = ACTIONS(7464), - [anon_sym_DASH] = ACTIONS(7464), - [anon_sym_PLUS] = ACTIONS(7464), - [anon_sym_typedef] = ACTIONS(7462), - [anon_sym_extern] = ACTIONS(7462), - [anon_sym___attribute] = ACTIONS(7462), - [anon_sym___attribute__] = ACTIONS(7462), - [anon_sym___declspec] = ACTIONS(7462), - [anon_sym_static] = ACTIONS(7462), - [anon_sym_auto] = ACTIONS(7462), - [anon_sym_register] = ACTIONS(7462), - [anon_sym_inline] = ACTIONS(7462), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7462), - [anon_sym_const] = ACTIONS(7462), - [anon_sym_volatile] = ACTIONS(7462), - [anon_sym_restrict] = ACTIONS(7462), - [anon_sym__Atomic] = ACTIONS(7462), - [anon_sym_in] = ACTIONS(7462), - [anon_sym_out] = ACTIONS(7462), - [anon_sym_inout] = ACTIONS(7462), - [anon_sym_bycopy] = ACTIONS(7462), - [anon_sym_byref] = ACTIONS(7462), - [anon_sym_oneway] = ACTIONS(7462), - [anon_sym__Nullable] = ACTIONS(7462), - [anon_sym__Nonnull] = ACTIONS(7462), - [anon_sym__Nullable_result] = ACTIONS(7462), - [anon_sym__Null_unspecified] = ACTIONS(7462), - [anon_sym___autoreleasing] = ACTIONS(7462), - [anon_sym___nullable] = ACTIONS(7462), - [anon_sym___nonnull] = ACTIONS(7462), - [anon_sym___strong] = ACTIONS(7462), - [anon_sym___weak] = ACTIONS(7462), - [anon_sym___bridge] = ACTIONS(7462), - [anon_sym___bridge_transfer] = ACTIONS(7462), - [anon_sym___bridge_retained] = ACTIONS(7462), - [anon_sym___unsafe_unretained] = ACTIONS(7462), - [anon_sym___block] = ACTIONS(7462), - [anon_sym___kindof] = ACTIONS(7462), - [anon_sym___unused] = ACTIONS(7462), - [anon_sym__Complex] = ACTIONS(7462), - [anon_sym___complex] = ACTIONS(7462), - [anon_sym_IBOutlet] = ACTIONS(7462), - [anon_sym_IBInspectable] = ACTIONS(7462), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7462), - [anon_sym_signed] = ACTIONS(7462), - [anon_sym_unsigned] = ACTIONS(7462), - [anon_sym_long] = ACTIONS(7462), - [anon_sym_short] = ACTIONS(7462), - [sym_primitive_type] = ACTIONS(7462), - [anon_sym_enum] = ACTIONS(7462), - [anon_sym_NS_ENUM] = ACTIONS(7462), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7462), - [anon_sym_NS_OPTIONS] = ACTIONS(7462), - [anon_sym_struct] = ACTIONS(7462), - [anon_sym_union] = ACTIONS(7462), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7462), - [anon_sym_ATend] = ACTIONS(7464), - [sym_optional] = ACTIONS(7464), - [sym_required] = ACTIONS(7464), - [anon_sym_ATproperty] = ACTIONS(7464), - [sym_method_attribute_specifier] = ACTIONS(7462), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7462), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7462), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7462), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7462), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7462), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7462), - [anon_sym_NS_AVAILABLE] = ACTIONS(7462), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7462), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7462), - [anon_sym_API_AVAILABLE] = ACTIONS(7462), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7462), - [anon_sym_API_DEPRECATED] = ACTIONS(7462), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7462), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7462), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7462), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7462), - [anon_sym___deprecated_msg] = ACTIONS(7462), - [anon_sym___deprecated_enum_msg] = ACTIONS(7462), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7462), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7462), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7462), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7462), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7462), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7462), - [anon_sym_typeof] = ACTIONS(7462), - [anon_sym___typeof] = ACTIONS(7462), - [anon_sym___typeof__] = ACTIONS(7462), - [sym_id] = ACTIONS(7462), - [sym_instancetype] = ACTIONS(7462), - [sym_Class] = ACTIONS(7462), - [sym_SEL] = ACTIONS(7462), - [sym_IMP] = ACTIONS(7462), - [sym_BOOL] = ACTIONS(7462), - [sym_auto] = ACTIONS(7462), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3142] = { - [sym_identifier] = ACTIONS(7462), - [aux_sym_preproc_def_token1] = ACTIONS(7464), - [anon_sym_DASH] = ACTIONS(7464), - [anon_sym_PLUS] = ACTIONS(7464), - [anon_sym_typedef] = ACTIONS(7462), - [anon_sym_extern] = ACTIONS(7462), - [anon_sym___attribute] = ACTIONS(7462), - [anon_sym___attribute__] = ACTIONS(7462), - [anon_sym___declspec] = ACTIONS(7462), - [anon_sym_static] = ACTIONS(7462), - [anon_sym_auto] = ACTIONS(7462), - [anon_sym_register] = ACTIONS(7462), - [anon_sym_inline] = ACTIONS(7462), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7462), - [anon_sym_const] = ACTIONS(7462), - [anon_sym_volatile] = ACTIONS(7462), - [anon_sym_restrict] = ACTIONS(7462), - [anon_sym__Atomic] = ACTIONS(7462), - [anon_sym_in] = ACTIONS(7462), - [anon_sym_out] = ACTIONS(7462), - [anon_sym_inout] = ACTIONS(7462), - [anon_sym_bycopy] = ACTIONS(7462), - [anon_sym_byref] = ACTIONS(7462), - [anon_sym_oneway] = ACTIONS(7462), - [anon_sym__Nullable] = ACTIONS(7462), - [anon_sym__Nonnull] = ACTIONS(7462), - [anon_sym__Nullable_result] = ACTIONS(7462), - [anon_sym__Null_unspecified] = ACTIONS(7462), - [anon_sym___autoreleasing] = ACTIONS(7462), - [anon_sym___nullable] = ACTIONS(7462), - [anon_sym___nonnull] = ACTIONS(7462), - [anon_sym___strong] = ACTIONS(7462), - [anon_sym___weak] = ACTIONS(7462), - [anon_sym___bridge] = ACTIONS(7462), - [anon_sym___bridge_transfer] = ACTIONS(7462), - [anon_sym___bridge_retained] = ACTIONS(7462), - [anon_sym___unsafe_unretained] = ACTIONS(7462), - [anon_sym___block] = ACTIONS(7462), - [anon_sym___kindof] = ACTIONS(7462), - [anon_sym___unused] = ACTIONS(7462), - [anon_sym__Complex] = ACTIONS(7462), - [anon_sym___complex] = ACTIONS(7462), - [anon_sym_IBOutlet] = ACTIONS(7462), - [anon_sym_IBInspectable] = ACTIONS(7462), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7462), - [anon_sym_signed] = ACTIONS(7462), - [anon_sym_unsigned] = ACTIONS(7462), - [anon_sym_long] = ACTIONS(7462), - [anon_sym_short] = ACTIONS(7462), - [sym_primitive_type] = ACTIONS(7462), - [anon_sym_enum] = ACTIONS(7462), - [anon_sym_NS_ENUM] = ACTIONS(7462), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7462), - [anon_sym_NS_OPTIONS] = ACTIONS(7462), - [anon_sym_struct] = ACTIONS(7462), - [anon_sym_union] = ACTIONS(7462), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7462), - [anon_sym_ATend] = ACTIONS(7464), - [sym_optional] = ACTIONS(7464), - [sym_required] = ACTIONS(7464), - [anon_sym_ATproperty] = ACTIONS(7464), - [sym_method_attribute_specifier] = ACTIONS(7462), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7462), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7462), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7462), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7462), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7462), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7462), - [anon_sym_NS_AVAILABLE] = ACTIONS(7462), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7462), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7462), - [anon_sym_API_AVAILABLE] = ACTIONS(7462), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7462), - [anon_sym_API_DEPRECATED] = ACTIONS(7462), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7462), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7462), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7462), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7462), - [anon_sym___deprecated_msg] = ACTIONS(7462), - [anon_sym___deprecated_enum_msg] = ACTIONS(7462), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7462), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7462), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7462), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7462), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7462), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7462), - [anon_sym_typeof] = ACTIONS(7462), - [anon_sym___typeof] = ACTIONS(7462), - [anon_sym___typeof__] = ACTIONS(7462), - [sym_id] = ACTIONS(7462), - [sym_instancetype] = ACTIONS(7462), - [sym_Class] = ACTIONS(7462), - [sym_SEL] = ACTIONS(7462), - [sym_IMP] = ACTIONS(7462), - [sym_BOOL] = ACTIONS(7462), - [sym_auto] = ACTIONS(7462), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3143] = { - [sym_identifier] = ACTIONS(7466), - [aux_sym_preproc_def_token1] = ACTIONS(7468), - [anon_sym_DASH] = ACTIONS(7468), - [anon_sym_PLUS] = ACTIONS(7468), - [anon_sym_typedef] = ACTIONS(7466), - [anon_sym_extern] = ACTIONS(7466), - [anon_sym___attribute] = ACTIONS(7466), - [anon_sym___attribute__] = ACTIONS(7466), - [anon_sym___declspec] = ACTIONS(7466), - [anon_sym_static] = ACTIONS(7466), - [anon_sym_auto] = ACTIONS(7466), - [anon_sym_register] = ACTIONS(7466), - [anon_sym_inline] = ACTIONS(7466), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7466), - [anon_sym_const] = ACTIONS(7466), - [anon_sym_volatile] = ACTIONS(7466), - [anon_sym_restrict] = ACTIONS(7466), - [anon_sym__Atomic] = ACTIONS(7466), - [anon_sym_in] = ACTIONS(7466), - [anon_sym_out] = ACTIONS(7466), - [anon_sym_inout] = ACTIONS(7466), - [anon_sym_bycopy] = ACTIONS(7466), - [anon_sym_byref] = ACTIONS(7466), - [anon_sym_oneway] = ACTIONS(7466), - [anon_sym__Nullable] = ACTIONS(7466), - [anon_sym__Nonnull] = ACTIONS(7466), - [anon_sym__Nullable_result] = ACTIONS(7466), - [anon_sym__Null_unspecified] = ACTIONS(7466), - [anon_sym___autoreleasing] = ACTIONS(7466), - [anon_sym___nullable] = ACTIONS(7466), - [anon_sym___nonnull] = ACTIONS(7466), - [anon_sym___strong] = ACTIONS(7466), - [anon_sym___weak] = ACTIONS(7466), - [anon_sym___bridge] = ACTIONS(7466), - [anon_sym___bridge_transfer] = ACTIONS(7466), - [anon_sym___bridge_retained] = ACTIONS(7466), - [anon_sym___unsafe_unretained] = ACTIONS(7466), - [anon_sym___block] = ACTIONS(7466), - [anon_sym___kindof] = ACTIONS(7466), - [anon_sym___unused] = ACTIONS(7466), - [anon_sym__Complex] = ACTIONS(7466), - [anon_sym___complex] = ACTIONS(7466), - [anon_sym_IBOutlet] = ACTIONS(7466), - [anon_sym_IBInspectable] = ACTIONS(7466), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7466), - [anon_sym_signed] = ACTIONS(7466), - [anon_sym_unsigned] = ACTIONS(7466), - [anon_sym_long] = ACTIONS(7466), - [anon_sym_short] = ACTIONS(7466), - [sym_primitive_type] = ACTIONS(7466), - [anon_sym_enum] = ACTIONS(7466), - [anon_sym_NS_ENUM] = ACTIONS(7466), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7466), - [anon_sym_NS_OPTIONS] = ACTIONS(7466), - [anon_sym_struct] = ACTIONS(7466), - [anon_sym_union] = ACTIONS(7466), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7466), - [anon_sym_ATend] = ACTIONS(7468), - [sym_optional] = ACTIONS(7468), - [sym_required] = ACTIONS(7468), - [anon_sym_ATproperty] = ACTIONS(7468), - [sym_method_attribute_specifier] = ACTIONS(7466), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7466), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7466), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7466), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7466), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7466), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7466), - [anon_sym_NS_AVAILABLE] = ACTIONS(7466), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7466), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7466), - [anon_sym_API_AVAILABLE] = ACTIONS(7466), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7466), - [anon_sym_API_DEPRECATED] = ACTIONS(7466), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7466), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7466), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7466), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7466), - [anon_sym___deprecated_msg] = ACTIONS(7466), - [anon_sym___deprecated_enum_msg] = ACTIONS(7466), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7466), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7466), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7466), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7466), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7466), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7466), - [anon_sym_typeof] = ACTIONS(7466), - [anon_sym___typeof] = ACTIONS(7466), - [anon_sym___typeof__] = ACTIONS(7466), - [sym_id] = ACTIONS(7466), - [sym_instancetype] = ACTIONS(7466), - [sym_Class] = ACTIONS(7466), - [sym_SEL] = ACTIONS(7466), - [sym_IMP] = ACTIONS(7466), - [sym_BOOL] = ACTIONS(7466), - [sym_auto] = ACTIONS(7466), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3144] = { - [sym_identifier] = ACTIONS(7470), - [aux_sym_preproc_def_token1] = ACTIONS(7472), - [anon_sym_DASH] = ACTIONS(7472), - [anon_sym_PLUS] = ACTIONS(7472), - [anon_sym_typedef] = ACTIONS(7470), - [anon_sym_extern] = ACTIONS(7470), - [anon_sym___attribute] = ACTIONS(7470), - [anon_sym___attribute__] = ACTIONS(7470), - [anon_sym___declspec] = ACTIONS(7470), - [anon_sym_static] = ACTIONS(7470), - [anon_sym_auto] = ACTIONS(7470), - [anon_sym_register] = ACTIONS(7470), - [anon_sym_inline] = ACTIONS(7470), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7470), - [anon_sym_const] = ACTIONS(7470), - [anon_sym_volatile] = ACTIONS(7470), - [anon_sym_restrict] = ACTIONS(7470), - [anon_sym__Atomic] = ACTIONS(7470), - [anon_sym_in] = ACTIONS(7470), - [anon_sym_out] = ACTIONS(7470), - [anon_sym_inout] = ACTIONS(7470), - [anon_sym_bycopy] = ACTIONS(7470), - [anon_sym_byref] = ACTIONS(7470), - [anon_sym_oneway] = ACTIONS(7470), - [anon_sym__Nullable] = ACTIONS(7470), - [anon_sym__Nonnull] = ACTIONS(7470), - [anon_sym__Nullable_result] = ACTIONS(7470), - [anon_sym__Null_unspecified] = ACTIONS(7470), - [anon_sym___autoreleasing] = ACTIONS(7470), - [anon_sym___nullable] = ACTIONS(7470), - [anon_sym___nonnull] = ACTIONS(7470), - [anon_sym___strong] = ACTIONS(7470), - [anon_sym___weak] = ACTIONS(7470), - [anon_sym___bridge] = ACTIONS(7470), - [anon_sym___bridge_transfer] = ACTIONS(7470), - [anon_sym___bridge_retained] = ACTIONS(7470), - [anon_sym___unsafe_unretained] = ACTIONS(7470), - [anon_sym___block] = ACTIONS(7470), - [anon_sym___kindof] = ACTIONS(7470), - [anon_sym___unused] = ACTIONS(7470), - [anon_sym__Complex] = ACTIONS(7470), - [anon_sym___complex] = ACTIONS(7470), - [anon_sym_IBOutlet] = ACTIONS(7470), - [anon_sym_IBInspectable] = ACTIONS(7470), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7470), - [anon_sym_signed] = ACTIONS(7470), - [anon_sym_unsigned] = ACTIONS(7470), - [anon_sym_long] = ACTIONS(7470), - [anon_sym_short] = ACTIONS(7470), - [sym_primitive_type] = ACTIONS(7470), - [anon_sym_enum] = ACTIONS(7470), - [anon_sym_NS_ENUM] = ACTIONS(7470), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7470), - [anon_sym_NS_OPTIONS] = ACTIONS(7470), - [anon_sym_struct] = ACTIONS(7470), - [anon_sym_union] = ACTIONS(7470), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7470), - [anon_sym_ATend] = ACTIONS(7472), - [sym_optional] = ACTIONS(7472), - [sym_required] = ACTIONS(7472), - [anon_sym_ATproperty] = ACTIONS(7472), - [sym_method_attribute_specifier] = ACTIONS(7470), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7470), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7470), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7470), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7470), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7470), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7470), - [anon_sym_NS_AVAILABLE] = ACTIONS(7470), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7470), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7470), - [anon_sym_API_AVAILABLE] = ACTIONS(7470), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7470), - [anon_sym_API_DEPRECATED] = ACTIONS(7470), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7470), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7470), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7470), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7470), - [anon_sym___deprecated_msg] = ACTIONS(7470), - [anon_sym___deprecated_enum_msg] = ACTIONS(7470), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7470), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7470), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7470), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7470), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7470), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7470), - [anon_sym_typeof] = ACTIONS(7470), - [anon_sym___typeof] = ACTIONS(7470), - [anon_sym___typeof__] = ACTIONS(7470), - [sym_id] = ACTIONS(7470), - [sym_instancetype] = ACTIONS(7470), - [sym_Class] = ACTIONS(7470), - [sym_SEL] = ACTIONS(7470), - [sym_IMP] = ACTIONS(7470), - [sym_BOOL] = ACTIONS(7470), - [sym_auto] = ACTIONS(7470), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3145] = { - [sym_identifier] = ACTIONS(7474), - [aux_sym_preproc_def_token1] = ACTIONS(7476), - [anon_sym_DASH] = ACTIONS(7476), - [anon_sym_PLUS] = ACTIONS(7476), - [anon_sym_typedef] = ACTIONS(7474), - [anon_sym_extern] = ACTIONS(7474), - [anon_sym___attribute] = ACTIONS(7474), - [anon_sym___attribute__] = ACTIONS(7474), - [anon_sym___declspec] = ACTIONS(7474), - [anon_sym_static] = ACTIONS(7474), - [anon_sym_auto] = ACTIONS(7474), - [anon_sym_register] = ACTIONS(7474), - [anon_sym_inline] = ACTIONS(7474), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7474), - [anon_sym_const] = ACTIONS(7474), - [anon_sym_volatile] = ACTIONS(7474), - [anon_sym_restrict] = ACTIONS(7474), - [anon_sym__Atomic] = ACTIONS(7474), - [anon_sym_in] = ACTIONS(7474), - [anon_sym_out] = ACTIONS(7474), - [anon_sym_inout] = ACTIONS(7474), - [anon_sym_bycopy] = ACTIONS(7474), - [anon_sym_byref] = ACTIONS(7474), - [anon_sym_oneway] = ACTIONS(7474), - [anon_sym__Nullable] = ACTIONS(7474), - [anon_sym__Nonnull] = ACTIONS(7474), - [anon_sym__Nullable_result] = ACTIONS(7474), - [anon_sym__Null_unspecified] = ACTIONS(7474), - [anon_sym___autoreleasing] = ACTIONS(7474), - [anon_sym___nullable] = ACTIONS(7474), - [anon_sym___nonnull] = ACTIONS(7474), - [anon_sym___strong] = ACTIONS(7474), - [anon_sym___weak] = ACTIONS(7474), - [anon_sym___bridge] = ACTIONS(7474), - [anon_sym___bridge_transfer] = ACTIONS(7474), - [anon_sym___bridge_retained] = ACTIONS(7474), - [anon_sym___unsafe_unretained] = ACTIONS(7474), - [anon_sym___block] = ACTIONS(7474), - [anon_sym___kindof] = ACTIONS(7474), - [anon_sym___unused] = ACTIONS(7474), - [anon_sym__Complex] = ACTIONS(7474), - [anon_sym___complex] = ACTIONS(7474), - [anon_sym_IBOutlet] = ACTIONS(7474), - [anon_sym_IBInspectable] = ACTIONS(7474), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7474), - [anon_sym_signed] = ACTIONS(7474), - [anon_sym_unsigned] = ACTIONS(7474), - [anon_sym_long] = ACTIONS(7474), - [anon_sym_short] = ACTIONS(7474), - [sym_primitive_type] = ACTIONS(7474), - [anon_sym_enum] = ACTIONS(7474), - [anon_sym_NS_ENUM] = ACTIONS(7474), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7474), - [anon_sym_NS_OPTIONS] = ACTIONS(7474), - [anon_sym_struct] = ACTIONS(7474), - [anon_sym_union] = ACTIONS(7474), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7474), - [anon_sym_ATend] = ACTIONS(7476), - [sym_optional] = ACTIONS(7476), - [sym_required] = ACTIONS(7476), - [anon_sym_ATproperty] = ACTIONS(7476), - [sym_method_attribute_specifier] = ACTIONS(7474), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7474), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7474), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7474), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7474), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7474), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7474), - [anon_sym_NS_AVAILABLE] = ACTIONS(7474), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7474), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7474), - [anon_sym_API_AVAILABLE] = ACTIONS(7474), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7474), - [anon_sym_API_DEPRECATED] = ACTIONS(7474), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7474), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7474), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7474), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7474), - [anon_sym___deprecated_msg] = ACTIONS(7474), - [anon_sym___deprecated_enum_msg] = ACTIONS(7474), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7474), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7474), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7474), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7474), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7474), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7474), - [anon_sym_typeof] = ACTIONS(7474), - [anon_sym___typeof] = ACTIONS(7474), - [anon_sym___typeof__] = ACTIONS(7474), - [sym_id] = ACTIONS(7474), - [sym_instancetype] = ACTIONS(7474), - [sym_Class] = ACTIONS(7474), - [sym_SEL] = ACTIONS(7474), - [sym_IMP] = ACTIONS(7474), - [sym_BOOL] = ACTIONS(7474), - [sym_auto] = ACTIONS(7474), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3146] = { - [sym_identifier] = ACTIONS(7478), - [aux_sym_preproc_def_token1] = ACTIONS(7480), - [anon_sym_DASH] = ACTIONS(7480), - [anon_sym_PLUS] = ACTIONS(7480), - [anon_sym_typedef] = ACTIONS(7478), - [anon_sym_extern] = ACTIONS(7478), - [anon_sym___attribute] = ACTIONS(7478), - [anon_sym___attribute__] = ACTIONS(7478), - [anon_sym___declspec] = ACTIONS(7478), - [anon_sym_static] = ACTIONS(7478), - [anon_sym_auto] = ACTIONS(7478), - [anon_sym_register] = ACTIONS(7478), - [anon_sym_inline] = ACTIONS(7478), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7478), - [anon_sym_const] = ACTIONS(7478), - [anon_sym_volatile] = ACTIONS(7478), - [anon_sym_restrict] = ACTIONS(7478), - [anon_sym__Atomic] = ACTIONS(7478), - [anon_sym_in] = ACTIONS(7478), - [anon_sym_out] = ACTIONS(7478), - [anon_sym_inout] = ACTIONS(7478), - [anon_sym_bycopy] = ACTIONS(7478), - [anon_sym_byref] = ACTIONS(7478), - [anon_sym_oneway] = ACTIONS(7478), - [anon_sym__Nullable] = ACTIONS(7478), - [anon_sym__Nonnull] = ACTIONS(7478), - [anon_sym__Nullable_result] = ACTIONS(7478), - [anon_sym__Null_unspecified] = ACTIONS(7478), - [anon_sym___autoreleasing] = ACTIONS(7478), - [anon_sym___nullable] = ACTIONS(7478), - [anon_sym___nonnull] = ACTIONS(7478), - [anon_sym___strong] = ACTIONS(7478), - [anon_sym___weak] = ACTIONS(7478), - [anon_sym___bridge] = ACTIONS(7478), - [anon_sym___bridge_transfer] = ACTIONS(7478), - [anon_sym___bridge_retained] = ACTIONS(7478), - [anon_sym___unsafe_unretained] = ACTIONS(7478), - [anon_sym___block] = ACTIONS(7478), - [anon_sym___kindof] = ACTIONS(7478), - [anon_sym___unused] = ACTIONS(7478), - [anon_sym__Complex] = ACTIONS(7478), - [anon_sym___complex] = ACTIONS(7478), - [anon_sym_IBOutlet] = ACTIONS(7478), - [anon_sym_IBInspectable] = ACTIONS(7478), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7478), - [anon_sym_signed] = ACTIONS(7478), - [anon_sym_unsigned] = ACTIONS(7478), - [anon_sym_long] = ACTIONS(7478), - [anon_sym_short] = ACTIONS(7478), - [sym_primitive_type] = ACTIONS(7478), - [anon_sym_enum] = ACTIONS(7478), - [anon_sym_NS_ENUM] = ACTIONS(7478), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7478), - [anon_sym_NS_OPTIONS] = ACTIONS(7478), - [anon_sym_struct] = ACTIONS(7478), - [anon_sym_union] = ACTIONS(7478), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7478), - [anon_sym_ATend] = ACTIONS(7480), - [sym_optional] = ACTIONS(7480), - [sym_required] = ACTIONS(7480), - [anon_sym_ATproperty] = ACTIONS(7480), - [sym_method_attribute_specifier] = ACTIONS(7478), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7478), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7478), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7478), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7478), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7478), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7478), - [anon_sym_NS_AVAILABLE] = ACTIONS(7478), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7478), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7478), - [anon_sym_API_AVAILABLE] = ACTIONS(7478), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7478), - [anon_sym_API_DEPRECATED] = ACTIONS(7478), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7478), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7478), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7478), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7478), - [anon_sym___deprecated_msg] = ACTIONS(7478), - [anon_sym___deprecated_enum_msg] = ACTIONS(7478), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7478), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7478), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7478), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7478), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7478), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7478), - [anon_sym_typeof] = ACTIONS(7478), - [anon_sym___typeof] = ACTIONS(7478), - [anon_sym___typeof__] = ACTIONS(7478), - [sym_id] = ACTIONS(7478), - [sym_instancetype] = ACTIONS(7478), - [sym_Class] = ACTIONS(7478), - [sym_SEL] = ACTIONS(7478), - [sym_IMP] = ACTIONS(7478), - [sym_BOOL] = ACTIONS(7478), - [sym_auto] = ACTIONS(7478), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3147] = { - [sym_identifier] = ACTIONS(7482), - [aux_sym_preproc_def_token1] = ACTIONS(7484), - [anon_sym_DASH] = ACTIONS(7484), - [anon_sym_PLUS] = ACTIONS(7484), - [anon_sym_typedef] = ACTIONS(7482), - [anon_sym_extern] = ACTIONS(7482), - [anon_sym___attribute] = ACTIONS(7482), - [anon_sym___attribute__] = ACTIONS(7482), - [anon_sym___declspec] = ACTIONS(7482), - [anon_sym_static] = ACTIONS(7482), - [anon_sym_auto] = ACTIONS(7482), - [anon_sym_register] = ACTIONS(7482), - [anon_sym_inline] = ACTIONS(7482), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7482), - [anon_sym_const] = ACTIONS(7482), - [anon_sym_volatile] = ACTIONS(7482), - [anon_sym_restrict] = ACTIONS(7482), - [anon_sym__Atomic] = ACTIONS(7482), - [anon_sym_in] = ACTIONS(7482), - [anon_sym_out] = ACTIONS(7482), - [anon_sym_inout] = ACTIONS(7482), - [anon_sym_bycopy] = ACTIONS(7482), - [anon_sym_byref] = ACTIONS(7482), - [anon_sym_oneway] = ACTIONS(7482), - [anon_sym__Nullable] = ACTIONS(7482), - [anon_sym__Nonnull] = ACTIONS(7482), - [anon_sym__Nullable_result] = ACTIONS(7482), - [anon_sym__Null_unspecified] = ACTIONS(7482), - [anon_sym___autoreleasing] = ACTIONS(7482), - [anon_sym___nullable] = ACTIONS(7482), - [anon_sym___nonnull] = ACTIONS(7482), - [anon_sym___strong] = ACTIONS(7482), - [anon_sym___weak] = ACTIONS(7482), - [anon_sym___bridge] = ACTIONS(7482), - [anon_sym___bridge_transfer] = ACTIONS(7482), - [anon_sym___bridge_retained] = ACTIONS(7482), - [anon_sym___unsafe_unretained] = ACTIONS(7482), - [anon_sym___block] = ACTIONS(7482), - [anon_sym___kindof] = ACTIONS(7482), - [anon_sym___unused] = ACTIONS(7482), - [anon_sym__Complex] = ACTIONS(7482), - [anon_sym___complex] = ACTIONS(7482), - [anon_sym_IBOutlet] = ACTIONS(7482), - [anon_sym_IBInspectable] = ACTIONS(7482), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7482), - [anon_sym_signed] = ACTIONS(7482), - [anon_sym_unsigned] = ACTIONS(7482), - [anon_sym_long] = ACTIONS(7482), - [anon_sym_short] = ACTIONS(7482), - [sym_primitive_type] = ACTIONS(7482), - [anon_sym_enum] = ACTIONS(7482), - [anon_sym_NS_ENUM] = ACTIONS(7482), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7482), - [anon_sym_NS_OPTIONS] = ACTIONS(7482), - [anon_sym_struct] = ACTIONS(7482), - [anon_sym_union] = ACTIONS(7482), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7482), - [anon_sym_ATend] = ACTIONS(7484), - [sym_optional] = ACTIONS(7484), - [sym_required] = ACTIONS(7484), - [anon_sym_ATproperty] = ACTIONS(7484), - [sym_method_attribute_specifier] = ACTIONS(7482), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7482), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7482), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7482), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7482), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7482), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7482), - [anon_sym_NS_AVAILABLE] = ACTIONS(7482), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7482), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7482), - [anon_sym_API_AVAILABLE] = ACTIONS(7482), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7482), - [anon_sym_API_DEPRECATED] = ACTIONS(7482), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7482), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7482), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7482), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7482), - [anon_sym___deprecated_msg] = ACTIONS(7482), - [anon_sym___deprecated_enum_msg] = ACTIONS(7482), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7482), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7482), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7482), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7482), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7482), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7482), - [anon_sym_typeof] = ACTIONS(7482), - [anon_sym___typeof] = ACTIONS(7482), - [anon_sym___typeof__] = ACTIONS(7482), - [sym_id] = ACTIONS(7482), - [sym_instancetype] = ACTIONS(7482), - [sym_Class] = ACTIONS(7482), - [sym_SEL] = ACTIONS(7482), - [sym_IMP] = ACTIONS(7482), - [sym_BOOL] = ACTIONS(7482), - [sym_auto] = ACTIONS(7482), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3148] = { - [sym_identifier] = ACTIONS(7470), - [aux_sym_preproc_def_token1] = ACTIONS(7472), - [anon_sym_DASH] = ACTIONS(7472), - [anon_sym_PLUS] = ACTIONS(7472), - [anon_sym_typedef] = ACTIONS(7470), - [anon_sym_extern] = ACTIONS(7470), - [anon_sym___attribute] = ACTIONS(7470), - [anon_sym___attribute__] = ACTIONS(7470), - [anon_sym___declspec] = ACTIONS(7470), - [anon_sym_static] = ACTIONS(7470), - [anon_sym_auto] = ACTIONS(7470), - [anon_sym_register] = ACTIONS(7470), - [anon_sym_inline] = ACTIONS(7470), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7470), - [anon_sym_const] = ACTIONS(7470), - [anon_sym_volatile] = ACTIONS(7470), - [anon_sym_restrict] = ACTIONS(7470), - [anon_sym__Atomic] = ACTIONS(7470), - [anon_sym_in] = ACTIONS(7470), - [anon_sym_out] = ACTIONS(7470), - [anon_sym_inout] = ACTIONS(7470), - [anon_sym_bycopy] = ACTIONS(7470), - [anon_sym_byref] = ACTIONS(7470), - [anon_sym_oneway] = ACTIONS(7470), - [anon_sym__Nullable] = ACTIONS(7470), - [anon_sym__Nonnull] = ACTIONS(7470), - [anon_sym__Nullable_result] = ACTIONS(7470), - [anon_sym__Null_unspecified] = ACTIONS(7470), - [anon_sym___autoreleasing] = ACTIONS(7470), - [anon_sym___nullable] = ACTIONS(7470), - [anon_sym___nonnull] = ACTIONS(7470), - [anon_sym___strong] = ACTIONS(7470), - [anon_sym___weak] = ACTIONS(7470), - [anon_sym___bridge] = ACTIONS(7470), - [anon_sym___bridge_transfer] = ACTIONS(7470), - [anon_sym___bridge_retained] = ACTIONS(7470), - [anon_sym___unsafe_unretained] = ACTIONS(7470), - [anon_sym___block] = ACTIONS(7470), - [anon_sym___kindof] = ACTIONS(7470), - [anon_sym___unused] = ACTIONS(7470), - [anon_sym__Complex] = ACTIONS(7470), - [anon_sym___complex] = ACTIONS(7470), - [anon_sym_IBOutlet] = ACTIONS(7470), - [anon_sym_IBInspectable] = ACTIONS(7470), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7470), - [anon_sym_signed] = ACTIONS(7470), - [anon_sym_unsigned] = ACTIONS(7470), - [anon_sym_long] = ACTIONS(7470), - [anon_sym_short] = ACTIONS(7470), - [sym_primitive_type] = ACTIONS(7470), - [anon_sym_enum] = ACTIONS(7470), - [anon_sym_NS_ENUM] = ACTIONS(7470), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7470), - [anon_sym_NS_OPTIONS] = ACTIONS(7470), - [anon_sym_struct] = ACTIONS(7470), - [anon_sym_union] = ACTIONS(7470), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7470), - [anon_sym_ATend] = ACTIONS(7472), - [sym_optional] = ACTIONS(7472), - [sym_required] = ACTIONS(7472), - [anon_sym_ATproperty] = ACTIONS(7472), - [sym_method_attribute_specifier] = ACTIONS(7470), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7470), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7470), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7470), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7470), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7470), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7470), - [anon_sym_NS_AVAILABLE] = ACTIONS(7470), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7470), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7470), - [anon_sym_API_AVAILABLE] = ACTIONS(7470), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7470), - [anon_sym_API_DEPRECATED] = ACTIONS(7470), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7470), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7470), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7470), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7470), - [anon_sym___deprecated_msg] = ACTIONS(7470), - [anon_sym___deprecated_enum_msg] = ACTIONS(7470), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7470), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7470), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7470), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7470), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7470), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7470), - [anon_sym_typeof] = ACTIONS(7470), - [anon_sym___typeof] = ACTIONS(7470), - [anon_sym___typeof__] = ACTIONS(7470), - [sym_id] = ACTIONS(7470), - [sym_instancetype] = ACTIONS(7470), - [sym_Class] = ACTIONS(7470), - [sym_SEL] = ACTIONS(7470), - [sym_IMP] = ACTIONS(7470), - [sym_BOOL] = ACTIONS(7470), - [sym_auto] = ACTIONS(7470), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3149] = { - [sym_identifier] = ACTIONS(7478), - [aux_sym_preproc_def_token1] = ACTIONS(7480), - [anon_sym_DASH] = ACTIONS(7480), - [anon_sym_PLUS] = ACTIONS(7480), - [anon_sym_typedef] = ACTIONS(7478), - [anon_sym_extern] = ACTIONS(7478), - [anon_sym___attribute] = ACTIONS(7478), - [anon_sym___attribute__] = ACTIONS(7478), - [anon_sym___declspec] = ACTIONS(7478), - [anon_sym_static] = ACTIONS(7478), - [anon_sym_auto] = ACTIONS(7478), - [anon_sym_register] = ACTIONS(7478), - [anon_sym_inline] = ACTIONS(7478), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7478), - [anon_sym_const] = ACTIONS(7478), - [anon_sym_volatile] = ACTIONS(7478), - [anon_sym_restrict] = ACTIONS(7478), - [anon_sym__Atomic] = ACTIONS(7478), - [anon_sym_in] = ACTIONS(7478), - [anon_sym_out] = ACTIONS(7478), - [anon_sym_inout] = ACTIONS(7478), - [anon_sym_bycopy] = ACTIONS(7478), - [anon_sym_byref] = ACTIONS(7478), - [anon_sym_oneway] = ACTIONS(7478), - [anon_sym__Nullable] = ACTIONS(7478), - [anon_sym__Nonnull] = ACTIONS(7478), - [anon_sym__Nullable_result] = ACTIONS(7478), - [anon_sym__Null_unspecified] = ACTIONS(7478), - [anon_sym___autoreleasing] = ACTIONS(7478), - [anon_sym___nullable] = ACTIONS(7478), - [anon_sym___nonnull] = ACTIONS(7478), - [anon_sym___strong] = ACTIONS(7478), - [anon_sym___weak] = ACTIONS(7478), - [anon_sym___bridge] = ACTIONS(7478), - [anon_sym___bridge_transfer] = ACTIONS(7478), - [anon_sym___bridge_retained] = ACTIONS(7478), - [anon_sym___unsafe_unretained] = ACTIONS(7478), - [anon_sym___block] = ACTIONS(7478), - [anon_sym___kindof] = ACTIONS(7478), - [anon_sym___unused] = ACTIONS(7478), - [anon_sym__Complex] = ACTIONS(7478), - [anon_sym___complex] = ACTIONS(7478), - [anon_sym_IBOutlet] = ACTIONS(7478), - [anon_sym_IBInspectable] = ACTIONS(7478), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7478), - [anon_sym_signed] = ACTIONS(7478), - [anon_sym_unsigned] = ACTIONS(7478), - [anon_sym_long] = ACTIONS(7478), - [anon_sym_short] = ACTIONS(7478), - [sym_primitive_type] = ACTIONS(7478), - [anon_sym_enum] = ACTIONS(7478), - [anon_sym_NS_ENUM] = ACTIONS(7478), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7478), - [anon_sym_NS_OPTIONS] = ACTIONS(7478), - [anon_sym_struct] = ACTIONS(7478), - [anon_sym_union] = ACTIONS(7478), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7478), - [anon_sym_ATend] = ACTIONS(7480), - [sym_optional] = ACTIONS(7480), - [sym_required] = ACTIONS(7480), - [anon_sym_ATproperty] = ACTIONS(7480), - [sym_method_attribute_specifier] = ACTIONS(7478), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7478), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7478), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7478), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7478), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7478), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7478), - [anon_sym_NS_AVAILABLE] = ACTIONS(7478), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7478), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7478), - [anon_sym_API_AVAILABLE] = ACTIONS(7478), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7478), - [anon_sym_API_DEPRECATED] = ACTIONS(7478), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7478), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7478), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7478), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7478), - [anon_sym___deprecated_msg] = ACTIONS(7478), - [anon_sym___deprecated_enum_msg] = ACTIONS(7478), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7478), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7478), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7478), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7478), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7478), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7478), - [anon_sym_typeof] = ACTIONS(7478), - [anon_sym___typeof] = ACTIONS(7478), - [anon_sym___typeof__] = ACTIONS(7478), - [sym_id] = ACTIONS(7478), - [sym_instancetype] = ACTIONS(7478), - [sym_Class] = ACTIONS(7478), - [sym_SEL] = ACTIONS(7478), - [sym_IMP] = ACTIONS(7478), - [sym_BOOL] = ACTIONS(7478), - [sym_auto] = ACTIONS(7478), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3150] = { - [sym_identifier] = ACTIONS(7486), - [aux_sym_preproc_def_token1] = ACTIONS(7488), - [anon_sym_DASH] = ACTIONS(7488), - [anon_sym_PLUS] = ACTIONS(7488), - [anon_sym_typedef] = ACTIONS(7486), - [anon_sym_extern] = ACTIONS(7486), - [anon_sym___attribute] = ACTIONS(7486), - [anon_sym___attribute__] = ACTIONS(7486), - [anon_sym___declspec] = ACTIONS(7486), - [anon_sym_static] = ACTIONS(7486), - [anon_sym_auto] = ACTIONS(7486), - [anon_sym_register] = ACTIONS(7486), - [anon_sym_inline] = ACTIONS(7486), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7486), - [anon_sym_const] = ACTIONS(7486), - [anon_sym_volatile] = ACTIONS(7486), - [anon_sym_restrict] = ACTIONS(7486), - [anon_sym__Atomic] = ACTIONS(7486), - [anon_sym_in] = ACTIONS(7486), - [anon_sym_out] = ACTIONS(7486), - [anon_sym_inout] = ACTIONS(7486), - [anon_sym_bycopy] = ACTIONS(7486), - [anon_sym_byref] = ACTIONS(7486), - [anon_sym_oneway] = ACTIONS(7486), - [anon_sym__Nullable] = ACTIONS(7486), - [anon_sym__Nonnull] = ACTIONS(7486), - [anon_sym__Nullable_result] = ACTIONS(7486), - [anon_sym__Null_unspecified] = ACTIONS(7486), - [anon_sym___autoreleasing] = ACTIONS(7486), - [anon_sym___nullable] = ACTIONS(7486), - [anon_sym___nonnull] = ACTIONS(7486), - [anon_sym___strong] = ACTIONS(7486), - [anon_sym___weak] = ACTIONS(7486), - [anon_sym___bridge] = ACTIONS(7486), - [anon_sym___bridge_transfer] = ACTIONS(7486), - [anon_sym___bridge_retained] = ACTIONS(7486), - [anon_sym___unsafe_unretained] = ACTIONS(7486), - [anon_sym___block] = ACTIONS(7486), - [anon_sym___kindof] = ACTIONS(7486), - [anon_sym___unused] = ACTIONS(7486), - [anon_sym__Complex] = ACTIONS(7486), - [anon_sym___complex] = ACTIONS(7486), - [anon_sym_IBOutlet] = ACTIONS(7486), - [anon_sym_IBInspectable] = ACTIONS(7486), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7486), - [anon_sym_signed] = ACTIONS(7486), - [anon_sym_unsigned] = ACTIONS(7486), - [anon_sym_long] = ACTIONS(7486), - [anon_sym_short] = ACTIONS(7486), - [sym_primitive_type] = ACTIONS(7486), - [anon_sym_enum] = ACTIONS(7486), - [anon_sym_NS_ENUM] = ACTIONS(7486), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7486), - [anon_sym_NS_OPTIONS] = ACTIONS(7486), - [anon_sym_struct] = ACTIONS(7486), - [anon_sym_union] = ACTIONS(7486), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7486), - [anon_sym_ATend] = ACTIONS(7488), - [sym_optional] = ACTIONS(7488), - [sym_required] = ACTIONS(7488), - [anon_sym_ATproperty] = ACTIONS(7488), - [sym_method_attribute_specifier] = ACTIONS(7486), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7486), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7486), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7486), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7486), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7486), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7486), - [anon_sym_NS_AVAILABLE] = ACTIONS(7486), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7486), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7486), - [anon_sym_API_AVAILABLE] = ACTIONS(7486), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7486), - [anon_sym_API_DEPRECATED] = ACTIONS(7486), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7486), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7486), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7486), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7486), - [anon_sym___deprecated_msg] = ACTIONS(7486), - [anon_sym___deprecated_enum_msg] = ACTIONS(7486), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7486), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7486), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7486), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7486), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7486), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7486), - [anon_sym_typeof] = ACTIONS(7486), - [anon_sym___typeof] = ACTIONS(7486), - [anon_sym___typeof__] = ACTIONS(7486), - [sym_id] = ACTIONS(7486), - [sym_instancetype] = ACTIONS(7486), - [sym_Class] = ACTIONS(7486), - [sym_SEL] = ACTIONS(7486), - [sym_IMP] = ACTIONS(7486), - [sym_BOOL] = ACTIONS(7486), - [sym_auto] = ACTIONS(7486), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3151] = { - [sym_identifier] = ACTIONS(7490), - [aux_sym_preproc_def_token1] = ACTIONS(7492), - [anon_sym_DASH] = ACTIONS(7492), - [anon_sym_PLUS] = ACTIONS(7492), - [anon_sym_typedef] = ACTIONS(7490), - [anon_sym_extern] = ACTIONS(7490), - [anon_sym___attribute] = ACTIONS(7490), - [anon_sym___attribute__] = ACTIONS(7490), - [anon_sym___declspec] = ACTIONS(7490), - [anon_sym_static] = ACTIONS(7490), - [anon_sym_auto] = ACTIONS(7490), - [anon_sym_register] = ACTIONS(7490), - [anon_sym_inline] = ACTIONS(7490), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7490), - [anon_sym_const] = ACTIONS(7490), - [anon_sym_volatile] = ACTIONS(7490), - [anon_sym_restrict] = ACTIONS(7490), - [anon_sym__Atomic] = ACTIONS(7490), - [anon_sym_in] = ACTIONS(7490), - [anon_sym_out] = ACTIONS(7490), - [anon_sym_inout] = ACTIONS(7490), - [anon_sym_bycopy] = ACTIONS(7490), - [anon_sym_byref] = ACTIONS(7490), - [anon_sym_oneway] = ACTIONS(7490), - [anon_sym__Nullable] = ACTIONS(7490), - [anon_sym__Nonnull] = ACTIONS(7490), - [anon_sym__Nullable_result] = ACTIONS(7490), - [anon_sym__Null_unspecified] = ACTIONS(7490), - [anon_sym___autoreleasing] = ACTIONS(7490), - [anon_sym___nullable] = ACTIONS(7490), - [anon_sym___nonnull] = ACTIONS(7490), - [anon_sym___strong] = ACTIONS(7490), - [anon_sym___weak] = ACTIONS(7490), - [anon_sym___bridge] = ACTIONS(7490), - [anon_sym___bridge_transfer] = ACTIONS(7490), - [anon_sym___bridge_retained] = ACTIONS(7490), - [anon_sym___unsafe_unretained] = ACTIONS(7490), - [anon_sym___block] = ACTIONS(7490), - [anon_sym___kindof] = ACTIONS(7490), - [anon_sym___unused] = ACTIONS(7490), - [anon_sym__Complex] = ACTIONS(7490), - [anon_sym___complex] = ACTIONS(7490), - [anon_sym_IBOutlet] = ACTIONS(7490), - [anon_sym_IBInspectable] = ACTIONS(7490), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7490), - [anon_sym_signed] = ACTIONS(7490), - [anon_sym_unsigned] = ACTIONS(7490), - [anon_sym_long] = ACTIONS(7490), - [anon_sym_short] = ACTIONS(7490), - [sym_primitive_type] = ACTIONS(7490), - [anon_sym_enum] = ACTIONS(7490), - [anon_sym_NS_ENUM] = ACTIONS(7490), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7490), - [anon_sym_NS_OPTIONS] = ACTIONS(7490), - [anon_sym_struct] = ACTIONS(7490), - [anon_sym_union] = ACTIONS(7490), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7490), - [anon_sym_ATend] = ACTIONS(7492), - [sym_optional] = ACTIONS(7492), - [sym_required] = ACTIONS(7492), - [anon_sym_ATproperty] = ACTIONS(7492), - [sym_method_attribute_specifier] = ACTIONS(7490), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7490), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7490), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7490), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7490), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7490), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7490), - [anon_sym_NS_AVAILABLE] = ACTIONS(7490), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7490), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7490), - [anon_sym_API_AVAILABLE] = ACTIONS(7490), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7490), - [anon_sym_API_DEPRECATED] = ACTIONS(7490), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7490), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7490), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7490), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7490), - [anon_sym___deprecated_msg] = ACTIONS(7490), - [anon_sym___deprecated_enum_msg] = ACTIONS(7490), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7490), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7490), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7490), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7490), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7490), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7490), - [anon_sym_typeof] = ACTIONS(7490), - [anon_sym___typeof] = ACTIONS(7490), - [anon_sym___typeof__] = ACTIONS(7490), - [sym_id] = ACTIONS(7490), - [sym_instancetype] = ACTIONS(7490), - [sym_Class] = ACTIONS(7490), - [sym_SEL] = ACTIONS(7490), - [sym_IMP] = ACTIONS(7490), - [sym_BOOL] = ACTIONS(7490), - [sym_auto] = ACTIONS(7490), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3152] = { - [sym_identifier] = ACTIONS(1882), - [aux_sym_preproc_def_token1] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1884), - [anon_sym_typedef] = ACTIONS(1882), - [anon_sym_extern] = ACTIONS(1882), - [anon_sym___attribute] = ACTIONS(1882), - [anon_sym___attribute__] = ACTIONS(1882), - [anon_sym___declspec] = ACTIONS(1882), - [anon_sym_static] = ACTIONS(1882), - [anon_sym_auto] = ACTIONS(1882), - [anon_sym_register] = ACTIONS(1882), - [anon_sym_inline] = ACTIONS(1882), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1882), - [anon_sym_const] = ACTIONS(1882), - [anon_sym_volatile] = ACTIONS(1882), - [anon_sym_restrict] = ACTIONS(1882), - [anon_sym__Atomic] = ACTIONS(1882), - [anon_sym_in] = ACTIONS(1882), - [anon_sym_out] = ACTIONS(1882), - [anon_sym_inout] = ACTIONS(1882), - [anon_sym_bycopy] = ACTIONS(1882), - [anon_sym_byref] = ACTIONS(1882), - [anon_sym_oneway] = ACTIONS(1882), - [anon_sym__Nullable] = ACTIONS(1882), - [anon_sym__Nonnull] = ACTIONS(1882), - [anon_sym__Nullable_result] = ACTIONS(1882), - [anon_sym__Null_unspecified] = ACTIONS(1882), - [anon_sym___autoreleasing] = ACTIONS(1882), - [anon_sym___nullable] = ACTIONS(1882), - [anon_sym___nonnull] = ACTIONS(1882), - [anon_sym___strong] = ACTIONS(1882), - [anon_sym___weak] = ACTIONS(1882), - [anon_sym___bridge] = ACTIONS(1882), - [anon_sym___bridge_transfer] = ACTIONS(1882), - [anon_sym___bridge_retained] = ACTIONS(1882), - [anon_sym___unsafe_unretained] = ACTIONS(1882), - [anon_sym___block] = ACTIONS(1882), - [anon_sym___kindof] = ACTIONS(1882), - [anon_sym___unused] = ACTIONS(1882), - [anon_sym__Complex] = ACTIONS(1882), - [anon_sym___complex] = ACTIONS(1882), - [anon_sym_IBOutlet] = ACTIONS(1882), - [anon_sym_IBInspectable] = ACTIONS(1882), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1882), - [anon_sym_signed] = ACTIONS(1882), - [anon_sym_unsigned] = ACTIONS(1882), - [anon_sym_long] = ACTIONS(1882), - [anon_sym_short] = ACTIONS(1882), - [sym_primitive_type] = ACTIONS(1882), - [anon_sym_enum] = ACTIONS(1882), - [anon_sym_NS_ENUM] = ACTIONS(1882), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1882), - [anon_sym_NS_OPTIONS] = ACTIONS(1882), - [anon_sym_struct] = ACTIONS(1882), - [anon_sym_union] = ACTIONS(1882), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(1882), - [anon_sym_ATend] = ACTIONS(1884), - [sym_optional] = ACTIONS(1884), - [sym_required] = ACTIONS(1884), - [anon_sym_ATproperty] = ACTIONS(1884), - [sym_method_attribute_specifier] = ACTIONS(1882), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1882), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1882), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1882), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1882), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1882), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1882), - [anon_sym_NS_AVAILABLE] = ACTIONS(1882), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1882), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1882), - [anon_sym_API_AVAILABLE] = ACTIONS(1882), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1882), - [anon_sym_API_DEPRECATED] = ACTIONS(1882), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1882), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1882), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1882), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1882), - [anon_sym___deprecated_msg] = ACTIONS(1882), - [anon_sym___deprecated_enum_msg] = ACTIONS(1882), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1882), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1882), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1882), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1882), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1882), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1882), - [anon_sym_typeof] = ACTIONS(1882), - [anon_sym___typeof] = ACTIONS(1882), - [anon_sym___typeof__] = ACTIONS(1882), - [sym_id] = ACTIONS(1882), - [sym_instancetype] = ACTIONS(1882), - [sym_Class] = ACTIONS(1882), - [sym_SEL] = ACTIONS(1882), - [sym_IMP] = ACTIONS(1882), - [sym_BOOL] = ACTIONS(1882), - [sym_auto] = ACTIONS(1882), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3153] = { - [sym_identifier] = ACTIONS(7494), - [aux_sym_preproc_def_token1] = ACTIONS(7496), - [anon_sym_DASH] = ACTIONS(7496), - [anon_sym_PLUS] = ACTIONS(7496), - [anon_sym_typedef] = ACTIONS(7494), - [anon_sym_extern] = ACTIONS(7494), - [anon_sym___attribute] = ACTIONS(7494), - [anon_sym___attribute__] = ACTIONS(7494), - [anon_sym___declspec] = ACTIONS(7494), - [anon_sym_static] = ACTIONS(7494), - [anon_sym_auto] = ACTIONS(7494), - [anon_sym_register] = ACTIONS(7494), - [anon_sym_inline] = ACTIONS(7494), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7494), - [anon_sym_const] = ACTIONS(7494), - [anon_sym_volatile] = ACTIONS(7494), - [anon_sym_restrict] = ACTIONS(7494), - [anon_sym__Atomic] = ACTIONS(7494), - [anon_sym_in] = ACTIONS(7494), - [anon_sym_out] = ACTIONS(7494), - [anon_sym_inout] = ACTIONS(7494), - [anon_sym_bycopy] = ACTIONS(7494), - [anon_sym_byref] = ACTIONS(7494), - [anon_sym_oneway] = ACTIONS(7494), - [anon_sym__Nullable] = ACTIONS(7494), - [anon_sym__Nonnull] = ACTIONS(7494), - [anon_sym__Nullable_result] = ACTIONS(7494), - [anon_sym__Null_unspecified] = ACTIONS(7494), - [anon_sym___autoreleasing] = ACTIONS(7494), - [anon_sym___nullable] = ACTIONS(7494), - [anon_sym___nonnull] = ACTIONS(7494), - [anon_sym___strong] = ACTIONS(7494), - [anon_sym___weak] = ACTIONS(7494), - [anon_sym___bridge] = ACTIONS(7494), - [anon_sym___bridge_transfer] = ACTIONS(7494), - [anon_sym___bridge_retained] = ACTIONS(7494), - [anon_sym___unsafe_unretained] = ACTIONS(7494), - [anon_sym___block] = ACTIONS(7494), - [anon_sym___kindof] = ACTIONS(7494), - [anon_sym___unused] = ACTIONS(7494), - [anon_sym__Complex] = ACTIONS(7494), - [anon_sym___complex] = ACTIONS(7494), - [anon_sym_IBOutlet] = ACTIONS(7494), - [anon_sym_IBInspectable] = ACTIONS(7494), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7494), - [anon_sym_signed] = ACTIONS(7494), - [anon_sym_unsigned] = ACTIONS(7494), - [anon_sym_long] = ACTIONS(7494), - [anon_sym_short] = ACTIONS(7494), - [sym_primitive_type] = ACTIONS(7494), - [anon_sym_enum] = ACTIONS(7494), - [anon_sym_NS_ENUM] = ACTIONS(7494), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7494), - [anon_sym_NS_OPTIONS] = ACTIONS(7494), - [anon_sym_struct] = ACTIONS(7494), - [anon_sym_union] = ACTIONS(7494), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7494), - [anon_sym_ATend] = ACTIONS(7496), - [sym_optional] = ACTIONS(7496), - [sym_required] = ACTIONS(7496), - [anon_sym_ATproperty] = ACTIONS(7496), - [sym_method_attribute_specifier] = ACTIONS(7494), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7494), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7494), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7494), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7494), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7494), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7494), - [anon_sym_NS_AVAILABLE] = ACTIONS(7494), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7494), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7494), - [anon_sym_API_AVAILABLE] = ACTIONS(7494), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7494), - [anon_sym_API_DEPRECATED] = ACTIONS(7494), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7494), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7494), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7494), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7494), - [anon_sym___deprecated_msg] = ACTIONS(7494), - [anon_sym___deprecated_enum_msg] = ACTIONS(7494), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7494), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7494), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7494), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7494), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7494), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7494), - [anon_sym_typeof] = ACTIONS(7494), - [anon_sym___typeof] = ACTIONS(7494), - [anon_sym___typeof__] = ACTIONS(7494), - [sym_id] = ACTIONS(7494), - [sym_instancetype] = ACTIONS(7494), - [sym_Class] = ACTIONS(7494), - [sym_SEL] = ACTIONS(7494), - [sym_IMP] = ACTIONS(7494), - [sym_BOOL] = ACTIONS(7494), - [sym_auto] = ACTIONS(7494), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3154] = { - [sym_identifier] = ACTIONS(7498), - [aux_sym_preproc_def_token1] = ACTIONS(7500), - [anon_sym_DASH] = ACTIONS(7500), - [anon_sym_PLUS] = ACTIONS(7500), - [anon_sym_typedef] = ACTIONS(7498), - [anon_sym_extern] = ACTIONS(7498), - [anon_sym___attribute] = ACTIONS(7498), - [anon_sym___attribute__] = ACTIONS(7498), - [anon_sym___declspec] = ACTIONS(7498), - [anon_sym_static] = ACTIONS(7498), - [anon_sym_auto] = ACTIONS(7498), - [anon_sym_register] = ACTIONS(7498), - [anon_sym_inline] = ACTIONS(7498), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7498), - [anon_sym_const] = ACTIONS(7498), - [anon_sym_volatile] = ACTIONS(7498), - [anon_sym_restrict] = ACTIONS(7498), - [anon_sym__Atomic] = ACTIONS(7498), - [anon_sym_in] = ACTIONS(7498), - [anon_sym_out] = ACTIONS(7498), - [anon_sym_inout] = ACTIONS(7498), - [anon_sym_bycopy] = ACTIONS(7498), - [anon_sym_byref] = ACTIONS(7498), - [anon_sym_oneway] = ACTIONS(7498), - [anon_sym__Nullable] = ACTIONS(7498), - [anon_sym__Nonnull] = ACTIONS(7498), - [anon_sym__Nullable_result] = ACTIONS(7498), - [anon_sym__Null_unspecified] = ACTIONS(7498), - [anon_sym___autoreleasing] = ACTIONS(7498), - [anon_sym___nullable] = ACTIONS(7498), - [anon_sym___nonnull] = ACTIONS(7498), - [anon_sym___strong] = ACTIONS(7498), - [anon_sym___weak] = ACTIONS(7498), - [anon_sym___bridge] = ACTIONS(7498), - [anon_sym___bridge_transfer] = ACTIONS(7498), - [anon_sym___bridge_retained] = ACTIONS(7498), - [anon_sym___unsafe_unretained] = ACTIONS(7498), - [anon_sym___block] = ACTIONS(7498), - [anon_sym___kindof] = ACTIONS(7498), - [anon_sym___unused] = ACTIONS(7498), - [anon_sym__Complex] = ACTIONS(7498), - [anon_sym___complex] = ACTIONS(7498), - [anon_sym_IBOutlet] = ACTIONS(7498), - [anon_sym_IBInspectable] = ACTIONS(7498), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7498), - [anon_sym_signed] = ACTIONS(7498), - [anon_sym_unsigned] = ACTIONS(7498), - [anon_sym_long] = ACTIONS(7498), - [anon_sym_short] = ACTIONS(7498), - [sym_primitive_type] = ACTIONS(7498), - [anon_sym_enum] = ACTIONS(7498), - [anon_sym_NS_ENUM] = ACTIONS(7498), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7498), - [anon_sym_NS_OPTIONS] = ACTIONS(7498), - [anon_sym_struct] = ACTIONS(7498), - [anon_sym_union] = ACTIONS(7498), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7498), - [anon_sym_ATend] = ACTIONS(7500), - [sym_optional] = ACTIONS(7500), - [sym_required] = ACTIONS(7500), - [anon_sym_ATproperty] = ACTIONS(7500), - [sym_method_attribute_specifier] = ACTIONS(7498), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7498), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7498), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7498), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7498), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7498), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7498), - [anon_sym_NS_AVAILABLE] = ACTIONS(7498), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7498), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7498), - [anon_sym_API_AVAILABLE] = ACTIONS(7498), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7498), - [anon_sym_API_DEPRECATED] = ACTIONS(7498), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7498), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7498), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7498), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7498), - [anon_sym___deprecated_msg] = ACTIONS(7498), - [anon_sym___deprecated_enum_msg] = ACTIONS(7498), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7498), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7498), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7498), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7498), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7498), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7498), - [anon_sym_typeof] = ACTIONS(7498), - [anon_sym___typeof] = ACTIONS(7498), - [anon_sym___typeof__] = ACTIONS(7498), - [sym_id] = ACTIONS(7498), - [sym_instancetype] = ACTIONS(7498), - [sym_Class] = ACTIONS(7498), - [sym_SEL] = ACTIONS(7498), - [sym_IMP] = ACTIONS(7498), - [sym_BOOL] = ACTIONS(7498), - [sym_auto] = ACTIONS(7498), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3155] = { - [sym_identifier] = ACTIONS(7502), - [aux_sym_preproc_def_token1] = ACTIONS(7504), - [anon_sym_DASH] = ACTIONS(7504), - [anon_sym_PLUS] = ACTIONS(7504), - [anon_sym_typedef] = ACTIONS(7502), - [anon_sym_extern] = ACTIONS(7502), - [anon_sym___attribute] = ACTIONS(7502), - [anon_sym___attribute__] = ACTIONS(7502), - [anon_sym___declspec] = ACTIONS(7502), - [anon_sym_static] = ACTIONS(7502), - [anon_sym_auto] = ACTIONS(7502), - [anon_sym_register] = ACTIONS(7502), - [anon_sym_inline] = ACTIONS(7502), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7502), - [anon_sym_const] = ACTIONS(7502), - [anon_sym_volatile] = ACTIONS(7502), - [anon_sym_restrict] = ACTIONS(7502), - [anon_sym__Atomic] = ACTIONS(7502), - [anon_sym_in] = ACTIONS(7502), - [anon_sym_out] = ACTIONS(7502), - [anon_sym_inout] = ACTIONS(7502), - [anon_sym_bycopy] = ACTIONS(7502), - [anon_sym_byref] = ACTIONS(7502), - [anon_sym_oneway] = ACTIONS(7502), - [anon_sym__Nullable] = ACTIONS(7502), - [anon_sym__Nonnull] = ACTIONS(7502), - [anon_sym__Nullable_result] = ACTIONS(7502), - [anon_sym__Null_unspecified] = ACTIONS(7502), - [anon_sym___autoreleasing] = ACTIONS(7502), - [anon_sym___nullable] = ACTIONS(7502), - [anon_sym___nonnull] = ACTIONS(7502), - [anon_sym___strong] = ACTIONS(7502), - [anon_sym___weak] = ACTIONS(7502), - [anon_sym___bridge] = ACTIONS(7502), - [anon_sym___bridge_transfer] = ACTIONS(7502), - [anon_sym___bridge_retained] = ACTIONS(7502), - [anon_sym___unsafe_unretained] = ACTIONS(7502), - [anon_sym___block] = ACTIONS(7502), - [anon_sym___kindof] = ACTIONS(7502), - [anon_sym___unused] = ACTIONS(7502), - [anon_sym__Complex] = ACTIONS(7502), - [anon_sym___complex] = ACTIONS(7502), - [anon_sym_IBOutlet] = ACTIONS(7502), - [anon_sym_IBInspectable] = ACTIONS(7502), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7502), - [anon_sym_signed] = ACTIONS(7502), - [anon_sym_unsigned] = ACTIONS(7502), - [anon_sym_long] = ACTIONS(7502), - [anon_sym_short] = ACTIONS(7502), - [sym_primitive_type] = ACTIONS(7502), - [anon_sym_enum] = ACTIONS(7502), - [anon_sym_NS_ENUM] = ACTIONS(7502), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7502), - [anon_sym_NS_OPTIONS] = ACTIONS(7502), - [anon_sym_struct] = ACTIONS(7502), - [anon_sym_union] = ACTIONS(7502), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7502), - [anon_sym_ATend] = ACTIONS(7504), - [sym_optional] = ACTIONS(7504), - [sym_required] = ACTIONS(7504), - [anon_sym_ATproperty] = ACTIONS(7504), - [sym_method_attribute_specifier] = ACTIONS(7502), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7502), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7502), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7502), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7502), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7502), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7502), - [anon_sym_NS_AVAILABLE] = ACTIONS(7502), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7502), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7502), - [anon_sym_API_AVAILABLE] = ACTIONS(7502), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7502), - [anon_sym_API_DEPRECATED] = ACTIONS(7502), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7502), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7502), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7502), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7502), - [anon_sym___deprecated_msg] = ACTIONS(7502), - [anon_sym___deprecated_enum_msg] = ACTIONS(7502), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7502), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7502), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7502), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7502), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7502), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7502), - [anon_sym_typeof] = ACTIONS(7502), - [anon_sym___typeof] = ACTIONS(7502), - [anon_sym___typeof__] = ACTIONS(7502), - [sym_id] = ACTIONS(7502), - [sym_instancetype] = ACTIONS(7502), - [sym_Class] = ACTIONS(7502), - [sym_SEL] = ACTIONS(7502), - [sym_IMP] = ACTIONS(7502), - [sym_BOOL] = ACTIONS(7502), - [sym_auto] = ACTIONS(7502), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3156] = { - [sym_identifier] = ACTIONS(7506), - [aux_sym_preproc_def_token1] = ACTIONS(7508), - [anon_sym_DASH] = ACTIONS(7508), - [anon_sym_PLUS] = ACTIONS(7508), - [anon_sym_typedef] = ACTIONS(7506), - [anon_sym_extern] = ACTIONS(7506), - [anon_sym___attribute] = ACTIONS(7506), - [anon_sym___attribute__] = ACTIONS(7506), - [anon_sym___declspec] = ACTIONS(7506), - [anon_sym_static] = ACTIONS(7506), - [anon_sym_auto] = ACTIONS(7506), - [anon_sym_register] = ACTIONS(7506), - [anon_sym_inline] = ACTIONS(7506), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7506), - [anon_sym_const] = ACTIONS(7506), - [anon_sym_volatile] = ACTIONS(7506), - [anon_sym_restrict] = ACTIONS(7506), - [anon_sym__Atomic] = ACTIONS(7506), - [anon_sym_in] = ACTIONS(7506), - [anon_sym_out] = ACTIONS(7506), - [anon_sym_inout] = ACTIONS(7506), - [anon_sym_bycopy] = ACTIONS(7506), - [anon_sym_byref] = ACTIONS(7506), - [anon_sym_oneway] = ACTIONS(7506), - [anon_sym__Nullable] = ACTIONS(7506), - [anon_sym__Nonnull] = ACTIONS(7506), - [anon_sym__Nullable_result] = ACTIONS(7506), - [anon_sym__Null_unspecified] = ACTIONS(7506), - [anon_sym___autoreleasing] = ACTIONS(7506), - [anon_sym___nullable] = ACTIONS(7506), - [anon_sym___nonnull] = ACTIONS(7506), - [anon_sym___strong] = ACTIONS(7506), - [anon_sym___weak] = ACTIONS(7506), - [anon_sym___bridge] = ACTIONS(7506), - [anon_sym___bridge_transfer] = ACTIONS(7506), - [anon_sym___bridge_retained] = ACTIONS(7506), - [anon_sym___unsafe_unretained] = ACTIONS(7506), - [anon_sym___block] = ACTIONS(7506), - [anon_sym___kindof] = ACTIONS(7506), - [anon_sym___unused] = ACTIONS(7506), - [anon_sym__Complex] = ACTIONS(7506), - [anon_sym___complex] = ACTIONS(7506), - [anon_sym_IBOutlet] = ACTIONS(7506), - [anon_sym_IBInspectable] = ACTIONS(7506), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7506), - [anon_sym_signed] = ACTIONS(7506), - [anon_sym_unsigned] = ACTIONS(7506), - [anon_sym_long] = ACTIONS(7506), - [anon_sym_short] = ACTIONS(7506), - [sym_primitive_type] = ACTIONS(7506), - [anon_sym_enum] = ACTIONS(7506), - [anon_sym_NS_ENUM] = ACTIONS(7506), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7506), - [anon_sym_NS_OPTIONS] = ACTIONS(7506), - [anon_sym_struct] = ACTIONS(7506), - [anon_sym_union] = ACTIONS(7506), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7506), - [anon_sym_ATend] = ACTIONS(7508), - [sym_optional] = ACTIONS(7508), - [sym_required] = ACTIONS(7508), - [anon_sym_ATproperty] = ACTIONS(7508), - [sym_method_attribute_specifier] = ACTIONS(7506), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7506), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7506), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7506), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7506), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7506), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7506), - [anon_sym_NS_AVAILABLE] = ACTIONS(7506), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7506), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7506), - [anon_sym_API_AVAILABLE] = ACTIONS(7506), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7506), - [anon_sym_API_DEPRECATED] = ACTIONS(7506), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7506), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7506), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7506), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7506), - [anon_sym___deprecated_msg] = ACTIONS(7506), - [anon_sym___deprecated_enum_msg] = ACTIONS(7506), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7506), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7506), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7506), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7506), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7506), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7506), - [anon_sym_typeof] = ACTIONS(7506), - [anon_sym___typeof] = ACTIONS(7506), - [anon_sym___typeof__] = ACTIONS(7506), - [sym_id] = ACTIONS(7506), - [sym_instancetype] = ACTIONS(7506), - [sym_Class] = ACTIONS(7506), - [sym_SEL] = ACTIONS(7506), - [sym_IMP] = ACTIONS(7506), - [sym_BOOL] = ACTIONS(7506), - [sym_auto] = ACTIONS(7506), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3157] = { - [sym_identifier] = ACTIONS(7510), - [aux_sym_preproc_def_token1] = ACTIONS(7512), - [anon_sym_DASH] = ACTIONS(7512), - [anon_sym_PLUS] = ACTIONS(7512), - [anon_sym_typedef] = ACTIONS(7510), - [anon_sym_extern] = ACTIONS(7510), - [anon_sym___attribute] = ACTIONS(7510), - [anon_sym___attribute__] = ACTIONS(7510), - [anon_sym___declspec] = ACTIONS(7510), - [anon_sym_static] = ACTIONS(7510), - [anon_sym_auto] = ACTIONS(7510), - [anon_sym_register] = ACTIONS(7510), - [anon_sym_inline] = ACTIONS(7510), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7510), - [anon_sym_const] = ACTIONS(7510), - [anon_sym_volatile] = ACTIONS(7510), - [anon_sym_restrict] = ACTIONS(7510), - [anon_sym__Atomic] = ACTIONS(7510), - [anon_sym_in] = ACTIONS(7510), - [anon_sym_out] = ACTIONS(7510), - [anon_sym_inout] = ACTIONS(7510), - [anon_sym_bycopy] = ACTIONS(7510), - [anon_sym_byref] = ACTIONS(7510), - [anon_sym_oneway] = ACTIONS(7510), - [anon_sym__Nullable] = ACTIONS(7510), - [anon_sym__Nonnull] = ACTIONS(7510), - [anon_sym__Nullable_result] = ACTIONS(7510), - [anon_sym__Null_unspecified] = ACTIONS(7510), - [anon_sym___autoreleasing] = ACTIONS(7510), - [anon_sym___nullable] = ACTIONS(7510), - [anon_sym___nonnull] = ACTIONS(7510), - [anon_sym___strong] = ACTIONS(7510), - [anon_sym___weak] = ACTIONS(7510), - [anon_sym___bridge] = ACTIONS(7510), - [anon_sym___bridge_transfer] = ACTIONS(7510), - [anon_sym___bridge_retained] = ACTIONS(7510), - [anon_sym___unsafe_unretained] = ACTIONS(7510), - [anon_sym___block] = ACTIONS(7510), - [anon_sym___kindof] = ACTIONS(7510), - [anon_sym___unused] = ACTIONS(7510), - [anon_sym__Complex] = ACTIONS(7510), - [anon_sym___complex] = ACTIONS(7510), - [anon_sym_IBOutlet] = ACTIONS(7510), - [anon_sym_IBInspectable] = ACTIONS(7510), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7510), - [anon_sym_signed] = ACTIONS(7510), - [anon_sym_unsigned] = ACTIONS(7510), - [anon_sym_long] = ACTIONS(7510), - [anon_sym_short] = ACTIONS(7510), - [sym_primitive_type] = ACTIONS(7510), - [anon_sym_enum] = ACTIONS(7510), - [anon_sym_NS_ENUM] = ACTIONS(7510), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7510), - [anon_sym_NS_OPTIONS] = ACTIONS(7510), - [anon_sym_struct] = ACTIONS(7510), - [anon_sym_union] = ACTIONS(7510), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7510), - [anon_sym_ATend] = ACTIONS(7512), - [sym_optional] = ACTIONS(7512), - [sym_required] = ACTIONS(7512), - [anon_sym_ATproperty] = ACTIONS(7512), - [sym_method_attribute_specifier] = ACTIONS(7510), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7510), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7510), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7510), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7510), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7510), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7510), - [anon_sym_NS_AVAILABLE] = ACTIONS(7510), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7510), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7510), - [anon_sym_API_AVAILABLE] = ACTIONS(7510), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7510), - [anon_sym_API_DEPRECATED] = ACTIONS(7510), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7510), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7510), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7510), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7510), - [anon_sym___deprecated_msg] = ACTIONS(7510), - [anon_sym___deprecated_enum_msg] = ACTIONS(7510), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7510), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7510), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7510), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7510), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7510), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7510), - [anon_sym_typeof] = ACTIONS(7510), - [anon_sym___typeof] = ACTIONS(7510), - [anon_sym___typeof__] = ACTIONS(7510), - [sym_id] = ACTIONS(7510), - [sym_instancetype] = ACTIONS(7510), - [sym_Class] = ACTIONS(7510), - [sym_SEL] = ACTIONS(7510), - [sym_IMP] = ACTIONS(7510), - [sym_BOOL] = ACTIONS(7510), - [sym_auto] = ACTIONS(7510), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3158] = { - [sym_identifier] = ACTIONS(7514), - [aux_sym_preproc_def_token1] = ACTIONS(7516), - [anon_sym_DASH] = ACTIONS(7516), - [anon_sym_PLUS] = ACTIONS(7516), - [anon_sym_typedef] = ACTIONS(7514), - [anon_sym_extern] = ACTIONS(7514), - [anon_sym___attribute] = ACTIONS(7514), - [anon_sym___attribute__] = ACTIONS(7514), - [anon_sym___declspec] = ACTIONS(7514), - [anon_sym_static] = ACTIONS(7514), - [anon_sym_auto] = ACTIONS(7514), - [anon_sym_register] = ACTIONS(7514), - [anon_sym_inline] = ACTIONS(7514), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7514), - [anon_sym_const] = ACTIONS(7514), - [anon_sym_volatile] = ACTIONS(7514), - [anon_sym_restrict] = ACTIONS(7514), - [anon_sym__Atomic] = ACTIONS(7514), - [anon_sym_in] = ACTIONS(7514), - [anon_sym_out] = ACTIONS(7514), - [anon_sym_inout] = ACTIONS(7514), - [anon_sym_bycopy] = ACTIONS(7514), - [anon_sym_byref] = ACTIONS(7514), - [anon_sym_oneway] = ACTIONS(7514), - [anon_sym__Nullable] = ACTIONS(7514), - [anon_sym__Nonnull] = ACTIONS(7514), - [anon_sym__Nullable_result] = ACTIONS(7514), - [anon_sym__Null_unspecified] = ACTIONS(7514), - [anon_sym___autoreleasing] = ACTIONS(7514), - [anon_sym___nullable] = ACTIONS(7514), - [anon_sym___nonnull] = ACTIONS(7514), - [anon_sym___strong] = ACTIONS(7514), - [anon_sym___weak] = ACTIONS(7514), - [anon_sym___bridge] = ACTIONS(7514), - [anon_sym___bridge_transfer] = ACTIONS(7514), - [anon_sym___bridge_retained] = ACTIONS(7514), - [anon_sym___unsafe_unretained] = ACTIONS(7514), - [anon_sym___block] = ACTIONS(7514), - [anon_sym___kindof] = ACTIONS(7514), - [anon_sym___unused] = ACTIONS(7514), - [anon_sym__Complex] = ACTIONS(7514), - [anon_sym___complex] = ACTIONS(7514), - [anon_sym_IBOutlet] = ACTIONS(7514), - [anon_sym_IBInspectable] = ACTIONS(7514), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7514), - [anon_sym_signed] = ACTIONS(7514), - [anon_sym_unsigned] = ACTIONS(7514), - [anon_sym_long] = ACTIONS(7514), - [anon_sym_short] = ACTIONS(7514), - [sym_primitive_type] = ACTIONS(7514), - [anon_sym_enum] = ACTIONS(7514), - [anon_sym_NS_ENUM] = ACTIONS(7514), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7514), - [anon_sym_NS_OPTIONS] = ACTIONS(7514), - [anon_sym_struct] = ACTIONS(7514), - [anon_sym_union] = ACTIONS(7514), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7514), - [anon_sym_ATend] = ACTIONS(7516), - [sym_optional] = ACTIONS(7516), - [sym_required] = ACTIONS(7516), - [anon_sym_ATproperty] = ACTIONS(7516), - [sym_method_attribute_specifier] = ACTIONS(7514), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7514), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7514), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7514), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7514), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7514), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7514), - [anon_sym_NS_AVAILABLE] = ACTIONS(7514), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7514), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7514), - [anon_sym_API_AVAILABLE] = ACTIONS(7514), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7514), - [anon_sym_API_DEPRECATED] = ACTIONS(7514), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7514), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7514), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7514), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7514), - [anon_sym___deprecated_msg] = ACTIONS(7514), - [anon_sym___deprecated_enum_msg] = ACTIONS(7514), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7514), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7514), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7514), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7514), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7514), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7514), - [anon_sym_typeof] = ACTIONS(7514), - [anon_sym___typeof] = ACTIONS(7514), - [anon_sym___typeof__] = ACTIONS(7514), - [sym_id] = ACTIONS(7514), - [sym_instancetype] = ACTIONS(7514), - [sym_Class] = ACTIONS(7514), - [sym_SEL] = ACTIONS(7514), - [sym_IMP] = ACTIONS(7514), - [sym_BOOL] = ACTIONS(7514), - [sym_auto] = ACTIONS(7514), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3159] = { - [sym_identifier] = ACTIONS(7518), - [aux_sym_preproc_def_token1] = ACTIONS(7520), - [anon_sym_DASH] = ACTIONS(7520), - [anon_sym_PLUS] = ACTIONS(7520), - [anon_sym_typedef] = ACTIONS(7518), - [anon_sym_extern] = ACTIONS(7518), - [anon_sym___attribute] = ACTIONS(7518), - [anon_sym___attribute__] = ACTIONS(7518), - [anon_sym___declspec] = ACTIONS(7518), - [anon_sym_static] = ACTIONS(7518), - [anon_sym_auto] = ACTIONS(7518), - [anon_sym_register] = ACTIONS(7518), - [anon_sym_inline] = ACTIONS(7518), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7518), - [anon_sym_const] = ACTIONS(7518), - [anon_sym_volatile] = ACTIONS(7518), - [anon_sym_restrict] = ACTIONS(7518), - [anon_sym__Atomic] = ACTIONS(7518), - [anon_sym_in] = ACTIONS(7518), - [anon_sym_out] = ACTIONS(7518), - [anon_sym_inout] = ACTIONS(7518), - [anon_sym_bycopy] = ACTIONS(7518), - [anon_sym_byref] = ACTIONS(7518), - [anon_sym_oneway] = ACTIONS(7518), - [anon_sym__Nullable] = ACTIONS(7518), - [anon_sym__Nonnull] = ACTIONS(7518), - [anon_sym__Nullable_result] = ACTIONS(7518), - [anon_sym__Null_unspecified] = ACTIONS(7518), - [anon_sym___autoreleasing] = ACTIONS(7518), - [anon_sym___nullable] = ACTIONS(7518), - [anon_sym___nonnull] = ACTIONS(7518), - [anon_sym___strong] = ACTIONS(7518), - [anon_sym___weak] = ACTIONS(7518), - [anon_sym___bridge] = ACTIONS(7518), - [anon_sym___bridge_transfer] = ACTIONS(7518), - [anon_sym___bridge_retained] = ACTIONS(7518), - [anon_sym___unsafe_unretained] = ACTIONS(7518), - [anon_sym___block] = ACTIONS(7518), - [anon_sym___kindof] = ACTIONS(7518), - [anon_sym___unused] = ACTIONS(7518), - [anon_sym__Complex] = ACTIONS(7518), - [anon_sym___complex] = ACTIONS(7518), - [anon_sym_IBOutlet] = ACTIONS(7518), - [anon_sym_IBInspectable] = ACTIONS(7518), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7518), - [anon_sym_signed] = ACTIONS(7518), - [anon_sym_unsigned] = ACTIONS(7518), - [anon_sym_long] = ACTIONS(7518), - [anon_sym_short] = ACTIONS(7518), - [sym_primitive_type] = ACTIONS(7518), - [anon_sym_enum] = ACTIONS(7518), - [anon_sym_NS_ENUM] = ACTIONS(7518), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7518), - [anon_sym_NS_OPTIONS] = ACTIONS(7518), - [anon_sym_struct] = ACTIONS(7518), - [anon_sym_union] = ACTIONS(7518), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7518), - [anon_sym_ATend] = ACTIONS(7520), - [sym_optional] = ACTIONS(7520), - [sym_required] = ACTIONS(7520), - [anon_sym_ATproperty] = ACTIONS(7520), - [sym_method_attribute_specifier] = ACTIONS(7518), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7518), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7518), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7518), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7518), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7518), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7518), - [anon_sym_NS_AVAILABLE] = ACTIONS(7518), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7518), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7518), - [anon_sym_API_AVAILABLE] = ACTIONS(7518), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7518), - [anon_sym_API_DEPRECATED] = ACTIONS(7518), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7518), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7518), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7518), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7518), - [anon_sym___deprecated_msg] = ACTIONS(7518), - [anon_sym___deprecated_enum_msg] = ACTIONS(7518), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7518), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7518), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7518), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7518), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7518), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7518), - [anon_sym_typeof] = ACTIONS(7518), - [anon_sym___typeof] = ACTIONS(7518), - [anon_sym___typeof__] = ACTIONS(7518), - [sym_id] = ACTIONS(7518), - [sym_instancetype] = ACTIONS(7518), - [sym_Class] = ACTIONS(7518), - [sym_SEL] = ACTIONS(7518), - [sym_IMP] = ACTIONS(7518), - [sym_BOOL] = ACTIONS(7518), - [sym_auto] = ACTIONS(7518), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3160] = { - [sym_identifier] = ACTIONS(7522), - [aux_sym_preproc_def_token1] = ACTIONS(7524), - [anon_sym_DASH] = ACTIONS(7524), - [anon_sym_PLUS] = ACTIONS(7524), - [anon_sym_typedef] = ACTIONS(7522), - [anon_sym_extern] = ACTIONS(7522), - [anon_sym___attribute] = ACTIONS(7522), - [anon_sym___attribute__] = ACTIONS(7522), - [anon_sym___declspec] = ACTIONS(7522), - [anon_sym_static] = ACTIONS(7522), - [anon_sym_auto] = ACTIONS(7522), - [anon_sym_register] = ACTIONS(7522), - [anon_sym_inline] = ACTIONS(7522), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7522), - [anon_sym_const] = ACTIONS(7522), - [anon_sym_volatile] = ACTIONS(7522), - [anon_sym_restrict] = ACTIONS(7522), - [anon_sym__Atomic] = ACTIONS(7522), - [anon_sym_in] = ACTIONS(7522), - [anon_sym_out] = ACTIONS(7522), - [anon_sym_inout] = ACTIONS(7522), - [anon_sym_bycopy] = ACTIONS(7522), - [anon_sym_byref] = ACTIONS(7522), - [anon_sym_oneway] = ACTIONS(7522), - [anon_sym__Nullable] = ACTIONS(7522), - [anon_sym__Nonnull] = ACTIONS(7522), - [anon_sym__Nullable_result] = ACTIONS(7522), - [anon_sym__Null_unspecified] = ACTIONS(7522), - [anon_sym___autoreleasing] = ACTIONS(7522), - [anon_sym___nullable] = ACTIONS(7522), - [anon_sym___nonnull] = ACTIONS(7522), - [anon_sym___strong] = ACTIONS(7522), - [anon_sym___weak] = ACTIONS(7522), - [anon_sym___bridge] = ACTIONS(7522), - [anon_sym___bridge_transfer] = ACTIONS(7522), - [anon_sym___bridge_retained] = ACTIONS(7522), - [anon_sym___unsafe_unretained] = ACTIONS(7522), - [anon_sym___block] = ACTIONS(7522), - [anon_sym___kindof] = ACTIONS(7522), - [anon_sym___unused] = ACTIONS(7522), - [anon_sym__Complex] = ACTIONS(7522), - [anon_sym___complex] = ACTIONS(7522), - [anon_sym_IBOutlet] = ACTIONS(7522), - [anon_sym_IBInspectable] = ACTIONS(7522), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7522), - [anon_sym_signed] = ACTIONS(7522), - [anon_sym_unsigned] = ACTIONS(7522), - [anon_sym_long] = ACTIONS(7522), - [anon_sym_short] = ACTIONS(7522), - [sym_primitive_type] = ACTIONS(7522), - [anon_sym_enum] = ACTIONS(7522), - [anon_sym_NS_ENUM] = ACTIONS(7522), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7522), - [anon_sym_NS_OPTIONS] = ACTIONS(7522), - [anon_sym_struct] = ACTIONS(7522), - [anon_sym_union] = ACTIONS(7522), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7522), - [anon_sym_ATend] = ACTIONS(7524), - [sym_optional] = ACTIONS(7524), - [sym_required] = ACTIONS(7524), - [anon_sym_ATproperty] = ACTIONS(7524), - [sym_method_attribute_specifier] = ACTIONS(7522), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7522), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7522), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7522), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7522), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7522), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7522), - [anon_sym_NS_AVAILABLE] = ACTIONS(7522), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7522), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7522), - [anon_sym_API_AVAILABLE] = ACTIONS(7522), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7522), - [anon_sym_API_DEPRECATED] = ACTIONS(7522), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7522), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7522), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7522), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7522), - [anon_sym___deprecated_msg] = ACTIONS(7522), - [anon_sym___deprecated_enum_msg] = ACTIONS(7522), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7522), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7522), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7522), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7522), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7522), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7522), - [anon_sym_typeof] = ACTIONS(7522), - [anon_sym___typeof] = ACTIONS(7522), - [anon_sym___typeof__] = ACTIONS(7522), - [sym_id] = ACTIONS(7522), - [sym_instancetype] = ACTIONS(7522), - [sym_Class] = ACTIONS(7522), - [sym_SEL] = ACTIONS(7522), - [sym_IMP] = ACTIONS(7522), - [sym_BOOL] = ACTIONS(7522), - [sym_auto] = ACTIONS(7522), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3161] = { - [sym_identifier] = ACTIONS(7526), - [aux_sym_preproc_def_token1] = ACTIONS(7528), - [anon_sym_DASH] = ACTIONS(7528), - [anon_sym_PLUS] = ACTIONS(7528), - [anon_sym_typedef] = ACTIONS(7526), - [anon_sym_extern] = ACTIONS(7526), - [anon_sym___attribute] = ACTIONS(7526), - [anon_sym___attribute__] = ACTIONS(7526), - [anon_sym___declspec] = ACTIONS(7526), - [anon_sym_static] = ACTIONS(7526), - [anon_sym_auto] = ACTIONS(7526), - [anon_sym_register] = ACTIONS(7526), - [anon_sym_inline] = ACTIONS(7526), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7526), - [anon_sym_const] = ACTIONS(7526), - [anon_sym_volatile] = ACTIONS(7526), - [anon_sym_restrict] = ACTIONS(7526), - [anon_sym__Atomic] = ACTIONS(7526), - [anon_sym_in] = ACTIONS(7526), - [anon_sym_out] = ACTIONS(7526), - [anon_sym_inout] = ACTIONS(7526), - [anon_sym_bycopy] = ACTIONS(7526), - [anon_sym_byref] = ACTIONS(7526), - [anon_sym_oneway] = ACTIONS(7526), - [anon_sym__Nullable] = ACTIONS(7526), - [anon_sym__Nonnull] = ACTIONS(7526), - [anon_sym__Nullable_result] = ACTIONS(7526), - [anon_sym__Null_unspecified] = ACTIONS(7526), - [anon_sym___autoreleasing] = ACTIONS(7526), - [anon_sym___nullable] = ACTIONS(7526), - [anon_sym___nonnull] = ACTIONS(7526), - [anon_sym___strong] = ACTIONS(7526), - [anon_sym___weak] = ACTIONS(7526), - [anon_sym___bridge] = ACTIONS(7526), - [anon_sym___bridge_transfer] = ACTIONS(7526), - [anon_sym___bridge_retained] = ACTIONS(7526), - [anon_sym___unsafe_unretained] = ACTIONS(7526), - [anon_sym___block] = ACTIONS(7526), - [anon_sym___kindof] = ACTIONS(7526), - [anon_sym___unused] = ACTIONS(7526), - [anon_sym__Complex] = ACTIONS(7526), - [anon_sym___complex] = ACTIONS(7526), - [anon_sym_IBOutlet] = ACTIONS(7526), - [anon_sym_IBInspectable] = ACTIONS(7526), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7526), - [anon_sym_signed] = ACTIONS(7526), - [anon_sym_unsigned] = ACTIONS(7526), - [anon_sym_long] = ACTIONS(7526), - [anon_sym_short] = ACTIONS(7526), - [sym_primitive_type] = ACTIONS(7526), - [anon_sym_enum] = ACTIONS(7526), - [anon_sym_NS_ENUM] = ACTIONS(7526), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7526), - [anon_sym_NS_OPTIONS] = ACTIONS(7526), - [anon_sym_struct] = ACTIONS(7526), - [anon_sym_union] = ACTIONS(7526), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7526), - [anon_sym_ATend] = ACTIONS(7528), - [sym_optional] = ACTIONS(7528), - [sym_required] = ACTIONS(7528), - [anon_sym_ATproperty] = ACTIONS(7528), - [sym_method_attribute_specifier] = ACTIONS(7526), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7526), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7526), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7526), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7526), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7526), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7526), - [anon_sym_NS_AVAILABLE] = ACTIONS(7526), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7526), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7526), - [anon_sym_API_AVAILABLE] = ACTIONS(7526), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7526), - [anon_sym_API_DEPRECATED] = ACTIONS(7526), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7526), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7526), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7526), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7526), - [anon_sym___deprecated_msg] = ACTIONS(7526), - [anon_sym___deprecated_enum_msg] = ACTIONS(7526), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7526), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7526), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7526), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7526), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7526), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7526), - [anon_sym_typeof] = ACTIONS(7526), - [anon_sym___typeof] = ACTIONS(7526), - [anon_sym___typeof__] = ACTIONS(7526), - [sym_id] = ACTIONS(7526), - [sym_instancetype] = ACTIONS(7526), - [sym_Class] = ACTIONS(7526), - [sym_SEL] = ACTIONS(7526), - [sym_IMP] = ACTIONS(7526), - [sym_BOOL] = ACTIONS(7526), - [sym_auto] = ACTIONS(7526), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3162] = { - [sym_identifier] = ACTIONS(7530), - [aux_sym_preproc_def_token1] = ACTIONS(7532), - [anon_sym_DASH] = ACTIONS(7532), - [anon_sym_PLUS] = ACTIONS(7532), - [anon_sym_typedef] = ACTIONS(7530), - [anon_sym_extern] = ACTIONS(7530), - [anon_sym___attribute] = ACTIONS(7530), - [anon_sym___attribute__] = ACTIONS(7530), - [anon_sym___declspec] = ACTIONS(7530), - [anon_sym_static] = ACTIONS(7530), - [anon_sym_auto] = ACTIONS(7530), - [anon_sym_register] = ACTIONS(7530), - [anon_sym_inline] = ACTIONS(7530), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7530), - [anon_sym_const] = ACTIONS(7530), - [anon_sym_volatile] = ACTIONS(7530), - [anon_sym_restrict] = ACTIONS(7530), - [anon_sym__Atomic] = ACTIONS(7530), - [anon_sym_in] = ACTIONS(7530), - [anon_sym_out] = ACTIONS(7530), - [anon_sym_inout] = ACTIONS(7530), - [anon_sym_bycopy] = ACTIONS(7530), - [anon_sym_byref] = ACTIONS(7530), - [anon_sym_oneway] = ACTIONS(7530), - [anon_sym__Nullable] = ACTIONS(7530), - [anon_sym__Nonnull] = ACTIONS(7530), - [anon_sym__Nullable_result] = ACTIONS(7530), - [anon_sym__Null_unspecified] = ACTIONS(7530), - [anon_sym___autoreleasing] = ACTIONS(7530), - [anon_sym___nullable] = ACTIONS(7530), - [anon_sym___nonnull] = ACTIONS(7530), - [anon_sym___strong] = ACTIONS(7530), - [anon_sym___weak] = ACTIONS(7530), - [anon_sym___bridge] = ACTIONS(7530), - [anon_sym___bridge_transfer] = ACTIONS(7530), - [anon_sym___bridge_retained] = ACTIONS(7530), - [anon_sym___unsafe_unretained] = ACTIONS(7530), - [anon_sym___block] = ACTIONS(7530), - [anon_sym___kindof] = ACTIONS(7530), - [anon_sym___unused] = ACTIONS(7530), - [anon_sym__Complex] = ACTIONS(7530), - [anon_sym___complex] = ACTIONS(7530), - [anon_sym_IBOutlet] = ACTIONS(7530), - [anon_sym_IBInspectable] = ACTIONS(7530), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7530), - [anon_sym_signed] = ACTIONS(7530), - [anon_sym_unsigned] = ACTIONS(7530), - [anon_sym_long] = ACTIONS(7530), - [anon_sym_short] = ACTIONS(7530), - [sym_primitive_type] = ACTIONS(7530), - [anon_sym_enum] = ACTIONS(7530), - [anon_sym_NS_ENUM] = ACTIONS(7530), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7530), - [anon_sym_NS_OPTIONS] = ACTIONS(7530), - [anon_sym_struct] = ACTIONS(7530), - [anon_sym_union] = ACTIONS(7530), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7530), - [anon_sym_ATend] = ACTIONS(7532), - [sym_optional] = ACTIONS(7532), - [sym_required] = ACTIONS(7532), - [anon_sym_ATproperty] = ACTIONS(7532), - [sym_method_attribute_specifier] = ACTIONS(7530), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7530), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7530), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7530), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7530), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7530), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7530), - [anon_sym_NS_AVAILABLE] = ACTIONS(7530), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7530), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7530), - [anon_sym_API_AVAILABLE] = ACTIONS(7530), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7530), - [anon_sym_API_DEPRECATED] = ACTIONS(7530), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7530), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7530), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7530), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7530), - [anon_sym___deprecated_msg] = ACTIONS(7530), - [anon_sym___deprecated_enum_msg] = ACTIONS(7530), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7530), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7530), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7530), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7530), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7530), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7530), - [anon_sym_typeof] = ACTIONS(7530), - [anon_sym___typeof] = ACTIONS(7530), - [anon_sym___typeof__] = ACTIONS(7530), - [sym_id] = ACTIONS(7530), - [sym_instancetype] = ACTIONS(7530), - [sym_Class] = ACTIONS(7530), - [sym_SEL] = ACTIONS(7530), - [sym_IMP] = ACTIONS(7530), - [sym_BOOL] = ACTIONS(7530), - [sym_auto] = ACTIONS(7530), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3163] = { - [sym_identifier] = ACTIONS(7534), - [aux_sym_preproc_def_token1] = ACTIONS(7536), - [anon_sym_DASH] = ACTIONS(7536), - [anon_sym_PLUS] = ACTIONS(7536), - [anon_sym_typedef] = ACTIONS(7534), - [anon_sym_extern] = ACTIONS(7534), - [anon_sym___attribute] = ACTIONS(7534), - [anon_sym___attribute__] = ACTIONS(7534), - [anon_sym___declspec] = ACTIONS(7534), - [anon_sym_static] = ACTIONS(7534), - [anon_sym_auto] = ACTIONS(7534), - [anon_sym_register] = ACTIONS(7534), - [anon_sym_inline] = ACTIONS(7534), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7534), - [anon_sym_const] = ACTIONS(7534), - [anon_sym_volatile] = ACTIONS(7534), - [anon_sym_restrict] = ACTIONS(7534), - [anon_sym__Atomic] = ACTIONS(7534), - [anon_sym_in] = ACTIONS(7534), - [anon_sym_out] = ACTIONS(7534), - [anon_sym_inout] = ACTIONS(7534), - [anon_sym_bycopy] = ACTIONS(7534), - [anon_sym_byref] = ACTIONS(7534), - [anon_sym_oneway] = ACTIONS(7534), - [anon_sym__Nullable] = ACTIONS(7534), - [anon_sym__Nonnull] = ACTIONS(7534), - [anon_sym__Nullable_result] = ACTIONS(7534), - [anon_sym__Null_unspecified] = ACTIONS(7534), - [anon_sym___autoreleasing] = ACTIONS(7534), - [anon_sym___nullable] = ACTIONS(7534), - [anon_sym___nonnull] = ACTIONS(7534), - [anon_sym___strong] = ACTIONS(7534), - [anon_sym___weak] = ACTIONS(7534), - [anon_sym___bridge] = ACTIONS(7534), - [anon_sym___bridge_transfer] = ACTIONS(7534), - [anon_sym___bridge_retained] = ACTIONS(7534), - [anon_sym___unsafe_unretained] = ACTIONS(7534), - [anon_sym___block] = ACTIONS(7534), - [anon_sym___kindof] = ACTIONS(7534), - [anon_sym___unused] = ACTIONS(7534), - [anon_sym__Complex] = ACTIONS(7534), - [anon_sym___complex] = ACTIONS(7534), - [anon_sym_IBOutlet] = ACTIONS(7534), - [anon_sym_IBInspectable] = ACTIONS(7534), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7534), - [anon_sym_signed] = ACTIONS(7534), - [anon_sym_unsigned] = ACTIONS(7534), - [anon_sym_long] = ACTIONS(7534), - [anon_sym_short] = ACTIONS(7534), - [sym_primitive_type] = ACTIONS(7534), - [anon_sym_enum] = ACTIONS(7534), - [anon_sym_NS_ENUM] = ACTIONS(7534), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7534), - [anon_sym_NS_OPTIONS] = ACTIONS(7534), - [anon_sym_struct] = ACTIONS(7534), - [anon_sym_union] = ACTIONS(7534), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7534), - [anon_sym_ATend] = ACTIONS(7536), - [sym_optional] = ACTIONS(7536), - [sym_required] = ACTIONS(7536), - [anon_sym_ATproperty] = ACTIONS(7536), - [sym_method_attribute_specifier] = ACTIONS(7534), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7534), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7534), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7534), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7534), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7534), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7534), - [anon_sym_NS_AVAILABLE] = ACTIONS(7534), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7534), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7534), - [anon_sym_API_AVAILABLE] = ACTIONS(7534), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7534), - [anon_sym_API_DEPRECATED] = ACTIONS(7534), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7534), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7534), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7534), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7534), - [anon_sym___deprecated_msg] = ACTIONS(7534), - [anon_sym___deprecated_enum_msg] = ACTIONS(7534), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7534), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7534), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7534), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7534), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7534), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7534), - [anon_sym_typeof] = ACTIONS(7534), - [anon_sym___typeof] = ACTIONS(7534), - [anon_sym___typeof__] = ACTIONS(7534), - [sym_id] = ACTIONS(7534), - [sym_instancetype] = ACTIONS(7534), - [sym_Class] = ACTIONS(7534), - [sym_SEL] = ACTIONS(7534), - [sym_IMP] = ACTIONS(7534), - [sym_BOOL] = ACTIONS(7534), - [sym_auto] = ACTIONS(7534), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3164] = { - [sym_identifier] = ACTIONS(7538), - [aux_sym_preproc_def_token1] = ACTIONS(7540), - [anon_sym_DASH] = ACTIONS(7540), - [anon_sym_PLUS] = ACTIONS(7540), - [anon_sym_typedef] = ACTIONS(7538), - [anon_sym_extern] = ACTIONS(7538), - [anon_sym___attribute] = ACTIONS(7538), - [anon_sym___attribute__] = ACTIONS(7538), - [anon_sym___declspec] = ACTIONS(7538), - [anon_sym_static] = ACTIONS(7538), - [anon_sym_auto] = ACTIONS(7538), - [anon_sym_register] = ACTIONS(7538), - [anon_sym_inline] = ACTIONS(7538), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7538), - [anon_sym_const] = ACTIONS(7538), - [anon_sym_volatile] = ACTIONS(7538), - [anon_sym_restrict] = ACTIONS(7538), - [anon_sym__Atomic] = ACTIONS(7538), - [anon_sym_in] = ACTIONS(7538), - [anon_sym_out] = ACTIONS(7538), - [anon_sym_inout] = ACTIONS(7538), - [anon_sym_bycopy] = ACTIONS(7538), - [anon_sym_byref] = ACTIONS(7538), - [anon_sym_oneway] = ACTIONS(7538), - [anon_sym__Nullable] = ACTIONS(7538), - [anon_sym__Nonnull] = ACTIONS(7538), - [anon_sym__Nullable_result] = ACTIONS(7538), - [anon_sym__Null_unspecified] = ACTIONS(7538), - [anon_sym___autoreleasing] = ACTIONS(7538), - [anon_sym___nullable] = ACTIONS(7538), - [anon_sym___nonnull] = ACTIONS(7538), - [anon_sym___strong] = ACTIONS(7538), - [anon_sym___weak] = ACTIONS(7538), - [anon_sym___bridge] = ACTIONS(7538), - [anon_sym___bridge_transfer] = ACTIONS(7538), - [anon_sym___bridge_retained] = ACTIONS(7538), - [anon_sym___unsafe_unretained] = ACTIONS(7538), - [anon_sym___block] = ACTIONS(7538), - [anon_sym___kindof] = ACTIONS(7538), - [anon_sym___unused] = ACTIONS(7538), - [anon_sym__Complex] = ACTIONS(7538), - [anon_sym___complex] = ACTIONS(7538), - [anon_sym_IBOutlet] = ACTIONS(7538), - [anon_sym_IBInspectable] = ACTIONS(7538), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7538), - [anon_sym_signed] = ACTIONS(7538), - [anon_sym_unsigned] = ACTIONS(7538), - [anon_sym_long] = ACTIONS(7538), - [anon_sym_short] = ACTIONS(7538), - [sym_primitive_type] = ACTIONS(7538), - [anon_sym_enum] = ACTIONS(7538), - [anon_sym_NS_ENUM] = ACTIONS(7538), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7538), - [anon_sym_NS_OPTIONS] = ACTIONS(7538), - [anon_sym_struct] = ACTIONS(7538), - [anon_sym_union] = ACTIONS(7538), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7538), - [anon_sym_ATend] = ACTIONS(7540), - [sym_optional] = ACTIONS(7540), - [sym_required] = ACTIONS(7540), - [anon_sym_ATproperty] = ACTIONS(7540), - [sym_method_attribute_specifier] = ACTIONS(7538), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7538), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7538), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7538), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7538), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7538), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7538), - [anon_sym_NS_AVAILABLE] = ACTIONS(7538), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7538), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7538), - [anon_sym_API_AVAILABLE] = ACTIONS(7538), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7538), - [anon_sym_API_DEPRECATED] = ACTIONS(7538), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7538), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7538), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7538), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7538), - [anon_sym___deprecated_msg] = ACTIONS(7538), - [anon_sym___deprecated_enum_msg] = ACTIONS(7538), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7538), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7538), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7538), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7538), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7538), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7538), - [anon_sym_typeof] = ACTIONS(7538), - [anon_sym___typeof] = ACTIONS(7538), - [anon_sym___typeof__] = ACTIONS(7538), - [sym_id] = ACTIONS(7538), - [sym_instancetype] = ACTIONS(7538), - [sym_Class] = ACTIONS(7538), - [sym_SEL] = ACTIONS(7538), - [sym_IMP] = ACTIONS(7538), - [sym_BOOL] = ACTIONS(7538), - [sym_auto] = ACTIONS(7538), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3165] = { - [sym_identifier] = ACTIONS(7542), - [aux_sym_preproc_def_token1] = ACTIONS(7544), - [anon_sym_DASH] = ACTIONS(7544), - [anon_sym_PLUS] = ACTIONS(7544), - [anon_sym_typedef] = ACTIONS(7542), - [anon_sym_extern] = ACTIONS(7542), - [anon_sym___attribute] = ACTIONS(7542), - [anon_sym___attribute__] = ACTIONS(7542), - [anon_sym___declspec] = ACTIONS(7542), - [anon_sym_static] = ACTIONS(7542), - [anon_sym_auto] = ACTIONS(7542), - [anon_sym_register] = ACTIONS(7542), - [anon_sym_inline] = ACTIONS(7542), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7542), - [anon_sym_const] = ACTIONS(7542), - [anon_sym_volatile] = ACTIONS(7542), - [anon_sym_restrict] = ACTIONS(7542), - [anon_sym__Atomic] = ACTIONS(7542), - [anon_sym_in] = ACTIONS(7542), - [anon_sym_out] = ACTIONS(7542), - [anon_sym_inout] = ACTIONS(7542), - [anon_sym_bycopy] = ACTIONS(7542), - [anon_sym_byref] = ACTIONS(7542), - [anon_sym_oneway] = ACTIONS(7542), - [anon_sym__Nullable] = ACTIONS(7542), - [anon_sym__Nonnull] = ACTIONS(7542), - [anon_sym__Nullable_result] = ACTIONS(7542), - [anon_sym__Null_unspecified] = ACTIONS(7542), - [anon_sym___autoreleasing] = ACTIONS(7542), - [anon_sym___nullable] = ACTIONS(7542), - [anon_sym___nonnull] = ACTIONS(7542), - [anon_sym___strong] = ACTIONS(7542), - [anon_sym___weak] = ACTIONS(7542), - [anon_sym___bridge] = ACTIONS(7542), - [anon_sym___bridge_transfer] = ACTIONS(7542), - [anon_sym___bridge_retained] = ACTIONS(7542), - [anon_sym___unsafe_unretained] = ACTIONS(7542), - [anon_sym___block] = ACTIONS(7542), - [anon_sym___kindof] = ACTIONS(7542), - [anon_sym___unused] = ACTIONS(7542), - [anon_sym__Complex] = ACTIONS(7542), - [anon_sym___complex] = ACTIONS(7542), - [anon_sym_IBOutlet] = ACTIONS(7542), - [anon_sym_IBInspectable] = ACTIONS(7542), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7542), - [anon_sym_signed] = ACTIONS(7542), - [anon_sym_unsigned] = ACTIONS(7542), - [anon_sym_long] = ACTIONS(7542), - [anon_sym_short] = ACTIONS(7542), - [sym_primitive_type] = ACTIONS(7542), - [anon_sym_enum] = ACTIONS(7542), - [anon_sym_NS_ENUM] = ACTIONS(7542), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7542), - [anon_sym_NS_OPTIONS] = ACTIONS(7542), - [anon_sym_struct] = ACTIONS(7542), - [anon_sym_union] = ACTIONS(7542), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7542), - [anon_sym_ATend] = ACTIONS(7544), - [sym_optional] = ACTIONS(7544), - [sym_required] = ACTIONS(7544), - [anon_sym_ATproperty] = ACTIONS(7544), - [sym_method_attribute_specifier] = ACTIONS(7542), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7542), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7542), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7542), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7542), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7542), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7542), - [anon_sym_NS_AVAILABLE] = ACTIONS(7542), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7542), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7542), - [anon_sym_API_AVAILABLE] = ACTIONS(7542), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7542), - [anon_sym_API_DEPRECATED] = ACTIONS(7542), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7542), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7542), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7542), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7542), - [anon_sym___deprecated_msg] = ACTIONS(7542), - [anon_sym___deprecated_enum_msg] = ACTIONS(7542), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7542), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7542), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7542), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7542), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7542), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7542), - [anon_sym_typeof] = ACTIONS(7542), - [anon_sym___typeof] = ACTIONS(7542), - [anon_sym___typeof__] = ACTIONS(7542), - [sym_id] = ACTIONS(7542), - [sym_instancetype] = ACTIONS(7542), - [sym_Class] = ACTIONS(7542), - [sym_SEL] = ACTIONS(7542), - [sym_IMP] = ACTIONS(7542), - [sym_BOOL] = ACTIONS(7542), - [sym_auto] = ACTIONS(7542), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3166] = { - [sym_identifier] = ACTIONS(7546), - [aux_sym_preproc_def_token1] = ACTIONS(7548), - [anon_sym_DASH] = ACTIONS(7548), - [anon_sym_PLUS] = ACTIONS(7548), - [anon_sym_typedef] = ACTIONS(7546), - [anon_sym_extern] = ACTIONS(7546), - [anon_sym___attribute] = ACTIONS(7546), - [anon_sym___attribute__] = ACTIONS(7546), - [anon_sym___declspec] = ACTIONS(7546), - [anon_sym_static] = ACTIONS(7546), - [anon_sym_auto] = ACTIONS(7546), - [anon_sym_register] = ACTIONS(7546), - [anon_sym_inline] = ACTIONS(7546), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7546), - [anon_sym_const] = ACTIONS(7546), - [anon_sym_volatile] = ACTIONS(7546), - [anon_sym_restrict] = ACTIONS(7546), - [anon_sym__Atomic] = ACTIONS(7546), - [anon_sym_in] = ACTIONS(7546), - [anon_sym_out] = ACTIONS(7546), - [anon_sym_inout] = ACTIONS(7546), - [anon_sym_bycopy] = ACTIONS(7546), - [anon_sym_byref] = ACTIONS(7546), - [anon_sym_oneway] = ACTIONS(7546), - [anon_sym__Nullable] = ACTIONS(7546), - [anon_sym__Nonnull] = ACTIONS(7546), - [anon_sym__Nullable_result] = ACTIONS(7546), - [anon_sym__Null_unspecified] = ACTIONS(7546), - [anon_sym___autoreleasing] = ACTIONS(7546), - [anon_sym___nullable] = ACTIONS(7546), - [anon_sym___nonnull] = ACTIONS(7546), - [anon_sym___strong] = ACTIONS(7546), - [anon_sym___weak] = ACTIONS(7546), - [anon_sym___bridge] = ACTIONS(7546), - [anon_sym___bridge_transfer] = ACTIONS(7546), - [anon_sym___bridge_retained] = ACTIONS(7546), - [anon_sym___unsafe_unretained] = ACTIONS(7546), - [anon_sym___block] = ACTIONS(7546), - [anon_sym___kindof] = ACTIONS(7546), - [anon_sym___unused] = ACTIONS(7546), - [anon_sym__Complex] = ACTIONS(7546), - [anon_sym___complex] = ACTIONS(7546), - [anon_sym_IBOutlet] = ACTIONS(7546), - [anon_sym_IBInspectable] = ACTIONS(7546), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7546), - [anon_sym_signed] = ACTIONS(7546), - [anon_sym_unsigned] = ACTIONS(7546), - [anon_sym_long] = ACTIONS(7546), - [anon_sym_short] = ACTIONS(7546), - [sym_primitive_type] = ACTIONS(7546), - [anon_sym_enum] = ACTIONS(7546), - [anon_sym_NS_ENUM] = ACTIONS(7546), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7546), - [anon_sym_NS_OPTIONS] = ACTIONS(7546), - [anon_sym_struct] = ACTIONS(7546), - [anon_sym_union] = ACTIONS(7546), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7546), - [anon_sym_ATend] = ACTIONS(7548), - [sym_optional] = ACTIONS(7548), - [sym_required] = ACTIONS(7548), - [anon_sym_ATproperty] = ACTIONS(7548), - [sym_method_attribute_specifier] = ACTIONS(7546), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7546), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7546), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7546), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7546), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7546), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7546), - [anon_sym_NS_AVAILABLE] = ACTIONS(7546), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7546), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7546), - [anon_sym_API_AVAILABLE] = ACTIONS(7546), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7546), - [anon_sym_API_DEPRECATED] = ACTIONS(7546), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7546), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7546), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7546), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7546), - [anon_sym___deprecated_msg] = ACTIONS(7546), - [anon_sym___deprecated_enum_msg] = ACTIONS(7546), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7546), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7546), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7546), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7546), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7546), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7546), - [anon_sym_typeof] = ACTIONS(7546), - [anon_sym___typeof] = ACTIONS(7546), - [anon_sym___typeof__] = ACTIONS(7546), - [sym_id] = ACTIONS(7546), - [sym_instancetype] = ACTIONS(7546), - [sym_Class] = ACTIONS(7546), - [sym_SEL] = ACTIONS(7546), - [sym_IMP] = ACTIONS(7546), - [sym_BOOL] = ACTIONS(7546), - [sym_auto] = ACTIONS(7546), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3167] = { - [sym_identifier] = ACTIONS(2030), - [anon_sym_COMMA] = ACTIONS(2032), - [anon_sym_RPAREN] = ACTIONS(2032), - [anon_sym_LPAREN2] = ACTIONS(2032), - [anon_sym_DASH] = ACTIONS(2030), - [anon_sym_PLUS] = ACTIONS(2030), - [anon_sym_STAR] = ACTIONS(2032), - [anon_sym_SLASH] = ACTIONS(2030), - [anon_sym_PERCENT] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE] = ACTIONS(2030), - [anon_sym_CARET] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2030), - [anon_sym_EQ_EQ] = ACTIONS(2032), - [anon_sym_BANG_EQ] = ACTIONS(2032), - [anon_sym_GT] = ACTIONS(2030), - [anon_sym_GT_EQ] = ACTIONS(2032), - [anon_sym_LT_EQ] = ACTIONS(2032), - [anon_sym_LT] = ACTIONS(2030), - [anon_sym_LT_LT] = ACTIONS(2032), - [anon_sym_GT_GT] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym___attribute] = ACTIONS(2030), - [anon_sym___attribute__] = ACTIONS(2030), - [anon_sym_RBRACE] = ACTIONS(2032), - [anon_sym_LBRACK] = ACTIONS(2032), - [anon_sym_RBRACK] = ACTIONS(2032), - [anon_sym_const] = ACTIONS(2030), - [anon_sym_volatile] = ACTIONS(2030), - [anon_sym_restrict] = ACTIONS(2030), - [anon_sym__Atomic] = ACTIONS(2030), - [anon_sym_in] = ACTIONS(2030), - [anon_sym_out] = ACTIONS(2030), - [anon_sym_inout] = ACTIONS(2030), - [anon_sym_bycopy] = ACTIONS(2030), - [anon_sym_byref] = ACTIONS(2030), - [anon_sym_oneway] = ACTIONS(2030), - [anon_sym__Nullable] = ACTIONS(2030), - [anon_sym__Nonnull] = ACTIONS(2030), - [anon_sym__Nullable_result] = ACTIONS(2030), - [anon_sym__Null_unspecified] = ACTIONS(2030), - [anon_sym___autoreleasing] = ACTIONS(2030), - [anon_sym___nullable] = ACTIONS(2030), - [anon_sym___nonnull] = ACTIONS(2030), - [anon_sym___strong] = ACTIONS(2030), - [anon_sym___weak] = ACTIONS(2030), - [anon_sym___bridge] = ACTIONS(2030), - [anon_sym___bridge_transfer] = ACTIONS(2030), - [anon_sym___bridge_retained] = ACTIONS(2030), - [anon_sym___unsafe_unretained] = ACTIONS(2030), - [anon_sym___block] = ACTIONS(2030), - [anon_sym___kindof] = ACTIONS(2030), - [anon_sym___unused] = ACTIONS(2030), - [anon_sym__Complex] = ACTIONS(2030), - [anon_sym___complex] = ACTIONS(2030), - [anon_sym_IBOutlet] = ACTIONS(2030), - [anon_sym_IBInspectable] = ACTIONS(2030), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2030), - [anon_sym_COLON] = ACTIONS(2032), - [anon_sym_QMARK] = ACTIONS(2032), - [anon_sym_DASH_DASH] = ACTIONS(2032), - [anon_sym_PLUS_PLUS] = ACTIONS(2032), - [anon_sym_DOT] = ACTIONS(2032), - [anon_sym_DASH_GT] = ACTIONS(2032), - [anon_sym_L_DQUOTE] = ACTIONS(2032), - [anon_sym_u_DQUOTE] = ACTIONS(2032), - [anon_sym_U_DQUOTE] = ACTIONS(2032), - [anon_sym_u8_DQUOTE] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(2030), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2030), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2030), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2030), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2030), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2030), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2030), - [anon_sym_NS_AVAILABLE] = ACTIONS(2030), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2030), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_API_AVAILABLE] = ACTIONS(2030), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2030), - [anon_sym_API_DEPRECATED] = ACTIONS(2030), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2030), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2030), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2030), - [anon_sym___deprecated_msg] = ACTIONS(2030), - [anon_sym___deprecated_enum_msg] = ACTIONS(2030), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2030), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2030), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2030), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2030), - [anon_sym_AT] = ACTIONS(2032), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3168] = { - [sym_identifier] = ACTIONS(7550), - [aux_sym_preproc_def_token1] = ACTIONS(7552), - [anon_sym_DASH] = ACTIONS(7552), - [anon_sym_PLUS] = ACTIONS(7552), - [anon_sym_typedef] = ACTIONS(7550), - [anon_sym_extern] = ACTIONS(7550), - [anon_sym___attribute] = ACTIONS(7550), - [anon_sym___attribute__] = ACTIONS(7550), - [anon_sym___declspec] = ACTIONS(7550), - [anon_sym_static] = ACTIONS(7550), - [anon_sym_auto] = ACTIONS(7550), - [anon_sym_register] = ACTIONS(7550), - [anon_sym_inline] = ACTIONS(7550), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7550), - [anon_sym_const] = ACTIONS(7550), - [anon_sym_volatile] = ACTIONS(7550), - [anon_sym_restrict] = ACTIONS(7550), - [anon_sym__Atomic] = ACTIONS(7550), - [anon_sym_in] = ACTIONS(7550), - [anon_sym_out] = ACTIONS(7550), - [anon_sym_inout] = ACTIONS(7550), - [anon_sym_bycopy] = ACTIONS(7550), - [anon_sym_byref] = ACTIONS(7550), - [anon_sym_oneway] = ACTIONS(7550), - [anon_sym__Nullable] = ACTIONS(7550), - [anon_sym__Nonnull] = ACTIONS(7550), - [anon_sym__Nullable_result] = ACTIONS(7550), - [anon_sym__Null_unspecified] = ACTIONS(7550), - [anon_sym___autoreleasing] = ACTIONS(7550), - [anon_sym___nullable] = ACTIONS(7550), - [anon_sym___nonnull] = ACTIONS(7550), - [anon_sym___strong] = ACTIONS(7550), - [anon_sym___weak] = ACTIONS(7550), - [anon_sym___bridge] = ACTIONS(7550), - [anon_sym___bridge_transfer] = ACTIONS(7550), - [anon_sym___bridge_retained] = ACTIONS(7550), - [anon_sym___unsafe_unretained] = ACTIONS(7550), - [anon_sym___block] = ACTIONS(7550), - [anon_sym___kindof] = ACTIONS(7550), - [anon_sym___unused] = ACTIONS(7550), - [anon_sym__Complex] = ACTIONS(7550), - [anon_sym___complex] = ACTIONS(7550), - [anon_sym_IBOutlet] = ACTIONS(7550), - [anon_sym_IBInspectable] = ACTIONS(7550), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7550), - [anon_sym_signed] = ACTIONS(7550), - [anon_sym_unsigned] = ACTIONS(7550), - [anon_sym_long] = ACTIONS(7550), - [anon_sym_short] = ACTIONS(7550), - [sym_primitive_type] = ACTIONS(7550), - [anon_sym_enum] = ACTIONS(7550), - [anon_sym_NS_ENUM] = ACTIONS(7550), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7550), - [anon_sym_NS_OPTIONS] = ACTIONS(7550), - [anon_sym_struct] = ACTIONS(7550), - [anon_sym_union] = ACTIONS(7550), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7550), - [anon_sym_ATend] = ACTIONS(7552), - [sym_optional] = ACTIONS(7552), - [sym_required] = ACTIONS(7552), - [anon_sym_ATproperty] = ACTIONS(7552), - [sym_method_attribute_specifier] = ACTIONS(7550), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7550), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7550), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7550), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7550), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7550), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7550), - [anon_sym_NS_AVAILABLE] = ACTIONS(7550), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7550), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7550), - [anon_sym_API_AVAILABLE] = ACTIONS(7550), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7550), - [anon_sym_API_DEPRECATED] = ACTIONS(7550), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7550), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7550), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7550), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7550), - [anon_sym___deprecated_msg] = ACTIONS(7550), - [anon_sym___deprecated_enum_msg] = ACTIONS(7550), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7550), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7550), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7550), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7550), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7550), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7550), - [anon_sym_typeof] = ACTIONS(7550), - [anon_sym___typeof] = ACTIONS(7550), - [anon_sym___typeof__] = ACTIONS(7550), - [sym_id] = ACTIONS(7550), - [sym_instancetype] = ACTIONS(7550), - [sym_Class] = ACTIONS(7550), - [sym_SEL] = ACTIONS(7550), - [sym_IMP] = ACTIONS(7550), - [sym_BOOL] = ACTIONS(7550), - [sym_auto] = ACTIONS(7550), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3169] = { - [sym_identifier] = ACTIONS(7482), - [aux_sym_preproc_def_token1] = ACTIONS(7484), - [anon_sym_DASH] = ACTIONS(7484), - [anon_sym_PLUS] = ACTIONS(7484), - [anon_sym_typedef] = ACTIONS(7482), - [anon_sym_extern] = ACTIONS(7482), - [anon_sym___attribute] = ACTIONS(7482), - [anon_sym___attribute__] = ACTIONS(7482), - [anon_sym___declspec] = ACTIONS(7482), - [anon_sym_static] = ACTIONS(7482), - [anon_sym_auto] = ACTIONS(7482), - [anon_sym_register] = ACTIONS(7482), - [anon_sym_inline] = ACTIONS(7482), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7482), - [anon_sym_const] = ACTIONS(7482), - [anon_sym_volatile] = ACTIONS(7482), - [anon_sym_restrict] = ACTIONS(7482), - [anon_sym__Atomic] = ACTIONS(7482), - [anon_sym_in] = ACTIONS(7482), - [anon_sym_out] = ACTIONS(7482), - [anon_sym_inout] = ACTIONS(7482), - [anon_sym_bycopy] = ACTIONS(7482), - [anon_sym_byref] = ACTIONS(7482), - [anon_sym_oneway] = ACTIONS(7482), - [anon_sym__Nullable] = ACTIONS(7482), - [anon_sym__Nonnull] = ACTIONS(7482), - [anon_sym__Nullable_result] = ACTIONS(7482), - [anon_sym__Null_unspecified] = ACTIONS(7482), - [anon_sym___autoreleasing] = ACTIONS(7482), - [anon_sym___nullable] = ACTIONS(7482), - [anon_sym___nonnull] = ACTIONS(7482), - [anon_sym___strong] = ACTIONS(7482), - [anon_sym___weak] = ACTIONS(7482), - [anon_sym___bridge] = ACTIONS(7482), - [anon_sym___bridge_transfer] = ACTIONS(7482), - [anon_sym___bridge_retained] = ACTIONS(7482), - [anon_sym___unsafe_unretained] = ACTIONS(7482), - [anon_sym___block] = ACTIONS(7482), - [anon_sym___kindof] = ACTIONS(7482), - [anon_sym___unused] = ACTIONS(7482), - [anon_sym__Complex] = ACTIONS(7482), - [anon_sym___complex] = ACTIONS(7482), - [anon_sym_IBOutlet] = ACTIONS(7482), - [anon_sym_IBInspectable] = ACTIONS(7482), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7482), - [anon_sym_signed] = ACTIONS(7482), - [anon_sym_unsigned] = ACTIONS(7482), - [anon_sym_long] = ACTIONS(7482), - [anon_sym_short] = ACTIONS(7482), - [sym_primitive_type] = ACTIONS(7482), - [anon_sym_enum] = ACTIONS(7482), - [anon_sym_NS_ENUM] = ACTIONS(7482), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7482), - [anon_sym_NS_OPTIONS] = ACTIONS(7482), - [anon_sym_struct] = ACTIONS(7482), - [anon_sym_union] = ACTIONS(7482), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7482), - [anon_sym_ATend] = ACTIONS(7484), - [sym_optional] = ACTIONS(7484), - [sym_required] = ACTIONS(7484), - [anon_sym_ATproperty] = ACTIONS(7484), - [sym_method_attribute_specifier] = ACTIONS(7482), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7482), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7482), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7482), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7482), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7482), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7482), - [anon_sym_NS_AVAILABLE] = ACTIONS(7482), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7482), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7482), - [anon_sym_API_AVAILABLE] = ACTIONS(7482), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7482), - [anon_sym_API_DEPRECATED] = ACTIONS(7482), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7482), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7482), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7482), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7482), - [anon_sym___deprecated_msg] = ACTIONS(7482), - [anon_sym___deprecated_enum_msg] = ACTIONS(7482), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7482), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7482), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7482), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7482), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7482), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7482), - [anon_sym_typeof] = ACTIONS(7482), - [anon_sym___typeof] = ACTIONS(7482), - [anon_sym___typeof__] = ACTIONS(7482), - [sym_id] = ACTIONS(7482), - [sym_instancetype] = ACTIONS(7482), - [sym_Class] = ACTIONS(7482), - [sym_SEL] = ACTIONS(7482), - [sym_IMP] = ACTIONS(7482), - [sym_BOOL] = ACTIONS(7482), - [sym_auto] = ACTIONS(7482), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3170] = { - [sym_identifier] = ACTIONS(7554), - [aux_sym_preproc_def_token1] = ACTIONS(7556), - [anon_sym_DASH] = ACTIONS(7556), - [anon_sym_PLUS] = ACTIONS(7556), - [anon_sym_typedef] = ACTIONS(7554), - [anon_sym_extern] = ACTIONS(7554), - [anon_sym___attribute] = ACTIONS(7554), - [anon_sym___attribute__] = ACTIONS(7554), - [anon_sym___declspec] = ACTIONS(7554), - [anon_sym_static] = ACTIONS(7554), - [anon_sym_auto] = ACTIONS(7554), - [anon_sym_register] = ACTIONS(7554), - [anon_sym_inline] = ACTIONS(7554), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7554), - [anon_sym_const] = ACTIONS(7554), - [anon_sym_volatile] = ACTIONS(7554), - [anon_sym_restrict] = ACTIONS(7554), - [anon_sym__Atomic] = ACTIONS(7554), - [anon_sym_in] = ACTIONS(7554), - [anon_sym_out] = ACTIONS(7554), - [anon_sym_inout] = ACTIONS(7554), - [anon_sym_bycopy] = ACTIONS(7554), - [anon_sym_byref] = ACTIONS(7554), - [anon_sym_oneway] = ACTIONS(7554), - [anon_sym__Nullable] = ACTIONS(7554), - [anon_sym__Nonnull] = ACTIONS(7554), - [anon_sym__Nullable_result] = ACTIONS(7554), - [anon_sym__Null_unspecified] = ACTIONS(7554), - [anon_sym___autoreleasing] = ACTIONS(7554), - [anon_sym___nullable] = ACTIONS(7554), - [anon_sym___nonnull] = ACTIONS(7554), - [anon_sym___strong] = ACTIONS(7554), - [anon_sym___weak] = ACTIONS(7554), - [anon_sym___bridge] = ACTIONS(7554), - [anon_sym___bridge_transfer] = ACTIONS(7554), - [anon_sym___bridge_retained] = ACTIONS(7554), - [anon_sym___unsafe_unretained] = ACTIONS(7554), - [anon_sym___block] = ACTIONS(7554), - [anon_sym___kindof] = ACTIONS(7554), - [anon_sym___unused] = ACTIONS(7554), - [anon_sym__Complex] = ACTIONS(7554), - [anon_sym___complex] = ACTIONS(7554), - [anon_sym_IBOutlet] = ACTIONS(7554), - [anon_sym_IBInspectable] = ACTIONS(7554), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7554), - [anon_sym_signed] = ACTIONS(7554), - [anon_sym_unsigned] = ACTIONS(7554), - [anon_sym_long] = ACTIONS(7554), - [anon_sym_short] = ACTIONS(7554), - [sym_primitive_type] = ACTIONS(7554), - [anon_sym_enum] = ACTIONS(7554), - [anon_sym_NS_ENUM] = ACTIONS(7554), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7554), - [anon_sym_NS_OPTIONS] = ACTIONS(7554), - [anon_sym_struct] = ACTIONS(7554), - [anon_sym_union] = ACTIONS(7554), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7554), - [anon_sym_ATend] = ACTIONS(7556), - [sym_optional] = ACTIONS(7556), - [sym_required] = ACTIONS(7556), - [anon_sym_ATproperty] = ACTIONS(7556), - [sym_method_attribute_specifier] = ACTIONS(7554), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7554), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7554), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7554), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7554), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7554), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7554), - [anon_sym_NS_AVAILABLE] = ACTIONS(7554), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7554), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7554), - [anon_sym_API_AVAILABLE] = ACTIONS(7554), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7554), - [anon_sym_API_DEPRECATED] = ACTIONS(7554), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7554), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7554), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7554), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7554), - [anon_sym___deprecated_msg] = ACTIONS(7554), - [anon_sym___deprecated_enum_msg] = ACTIONS(7554), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7554), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7554), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7554), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7554), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7554), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7554), - [anon_sym_typeof] = ACTIONS(7554), - [anon_sym___typeof] = ACTIONS(7554), - [anon_sym___typeof__] = ACTIONS(7554), - [sym_id] = ACTIONS(7554), - [sym_instancetype] = ACTIONS(7554), - [sym_Class] = ACTIONS(7554), - [sym_SEL] = ACTIONS(7554), - [sym_IMP] = ACTIONS(7554), - [sym_BOOL] = ACTIONS(7554), - [sym_auto] = ACTIONS(7554), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3171] = { - [sym_identifier] = ACTIONS(7558), - [aux_sym_preproc_def_token1] = ACTIONS(7560), - [anon_sym_DASH] = ACTIONS(7560), - [anon_sym_PLUS] = ACTIONS(7560), - [anon_sym_typedef] = ACTIONS(7558), - [anon_sym_extern] = ACTIONS(7558), - [anon_sym___attribute] = ACTIONS(7558), - [anon_sym___attribute__] = ACTIONS(7558), - [anon_sym___declspec] = ACTIONS(7558), - [anon_sym_static] = ACTIONS(7558), - [anon_sym_auto] = ACTIONS(7558), - [anon_sym_register] = ACTIONS(7558), - [anon_sym_inline] = ACTIONS(7558), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7558), - [anon_sym_const] = ACTIONS(7558), - [anon_sym_volatile] = ACTIONS(7558), - [anon_sym_restrict] = ACTIONS(7558), - [anon_sym__Atomic] = ACTIONS(7558), - [anon_sym_in] = ACTIONS(7558), - [anon_sym_out] = ACTIONS(7558), - [anon_sym_inout] = ACTIONS(7558), - [anon_sym_bycopy] = ACTIONS(7558), - [anon_sym_byref] = ACTIONS(7558), - [anon_sym_oneway] = ACTIONS(7558), - [anon_sym__Nullable] = ACTIONS(7558), - [anon_sym__Nonnull] = ACTIONS(7558), - [anon_sym__Nullable_result] = ACTIONS(7558), - [anon_sym__Null_unspecified] = ACTIONS(7558), - [anon_sym___autoreleasing] = ACTIONS(7558), - [anon_sym___nullable] = ACTIONS(7558), - [anon_sym___nonnull] = ACTIONS(7558), - [anon_sym___strong] = ACTIONS(7558), - [anon_sym___weak] = ACTIONS(7558), - [anon_sym___bridge] = ACTIONS(7558), - [anon_sym___bridge_transfer] = ACTIONS(7558), - [anon_sym___bridge_retained] = ACTIONS(7558), - [anon_sym___unsafe_unretained] = ACTIONS(7558), - [anon_sym___block] = ACTIONS(7558), - [anon_sym___kindof] = ACTIONS(7558), - [anon_sym___unused] = ACTIONS(7558), - [anon_sym__Complex] = ACTIONS(7558), - [anon_sym___complex] = ACTIONS(7558), - [anon_sym_IBOutlet] = ACTIONS(7558), - [anon_sym_IBInspectable] = ACTIONS(7558), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7558), - [anon_sym_signed] = ACTIONS(7558), - [anon_sym_unsigned] = ACTIONS(7558), - [anon_sym_long] = ACTIONS(7558), - [anon_sym_short] = ACTIONS(7558), - [sym_primitive_type] = ACTIONS(7558), - [anon_sym_enum] = ACTIONS(7558), - [anon_sym_NS_ENUM] = ACTIONS(7558), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7558), - [anon_sym_NS_OPTIONS] = ACTIONS(7558), - [anon_sym_struct] = ACTIONS(7558), - [anon_sym_union] = ACTIONS(7558), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7558), - [anon_sym_ATend] = ACTIONS(7560), - [sym_optional] = ACTIONS(7560), - [sym_required] = ACTIONS(7560), - [anon_sym_ATproperty] = ACTIONS(7560), - [sym_method_attribute_specifier] = ACTIONS(7558), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7558), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7558), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7558), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7558), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7558), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7558), - [anon_sym_NS_AVAILABLE] = ACTIONS(7558), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7558), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7558), - [anon_sym_API_AVAILABLE] = ACTIONS(7558), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7558), - [anon_sym_API_DEPRECATED] = ACTIONS(7558), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7558), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7558), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7558), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7558), - [anon_sym___deprecated_msg] = ACTIONS(7558), - [anon_sym___deprecated_enum_msg] = ACTIONS(7558), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7558), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7558), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7558), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7558), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7558), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7558), - [anon_sym_typeof] = ACTIONS(7558), - [anon_sym___typeof] = ACTIONS(7558), - [anon_sym___typeof__] = ACTIONS(7558), - [sym_id] = ACTIONS(7558), - [sym_instancetype] = ACTIONS(7558), - [sym_Class] = ACTIONS(7558), - [sym_SEL] = ACTIONS(7558), - [sym_IMP] = ACTIONS(7558), - [sym_BOOL] = ACTIONS(7558), - [sym_auto] = ACTIONS(7558), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3172] = { - [sym_identifier] = ACTIONS(7562), - [aux_sym_preproc_def_token1] = ACTIONS(7564), - [anon_sym_DASH] = ACTIONS(7564), - [anon_sym_PLUS] = ACTIONS(7564), - [anon_sym_typedef] = ACTIONS(7562), - [anon_sym_extern] = ACTIONS(7562), - [anon_sym___attribute] = ACTIONS(7562), - [anon_sym___attribute__] = ACTIONS(7562), - [anon_sym___declspec] = ACTIONS(7562), - [anon_sym_static] = ACTIONS(7562), - [anon_sym_auto] = ACTIONS(7562), - [anon_sym_register] = ACTIONS(7562), - [anon_sym_inline] = ACTIONS(7562), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7562), - [anon_sym_const] = ACTIONS(7562), - [anon_sym_volatile] = ACTIONS(7562), - [anon_sym_restrict] = ACTIONS(7562), - [anon_sym__Atomic] = ACTIONS(7562), - [anon_sym_in] = ACTIONS(7562), - [anon_sym_out] = ACTIONS(7562), - [anon_sym_inout] = ACTIONS(7562), - [anon_sym_bycopy] = ACTIONS(7562), - [anon_sym_byref] = ACTIONS(7562), - [anon_sym_oneway] = ACTIONS(7562), - [anon_sym__Nullable] = ACTIONS(7562), - [anon_sym__Nonnull] = ACTIONS(7562), - [anon_sym__Nullable_result] = ACTIONS(7562), - [anon_sym__Null_unspecified] = ACTIONS(7562), - [anon_sym___autoreleasing] = ACTIONS(7562), - [anon_sym___nullable] = ACTIONS(7562), - [anon_sym___nonnull] = ACTIONS(7562), - [anon_sym___strong] = ACTIONS(7562), - [anon_sym___weak] = ACTIONS(7562), - [anon_sym___bridge] = ACTIONS(7562), - [anon_sym___bridge_transfer] = ACTIONS(7562), - [anon_sym___bridge_retained] = ACTIONS(7562), - [anon_sym___unsafe_unretained] = ACTIONS(7562), - [anon_sym___block] = ACTIONS(7562), - [anon_sym___kindof] = ACTIONS(7562), - [anon_sym___unused] = ACTIONS(7562), - [anon_sym__Complex] = ACTIONS(7562), - [anon_sym___complex] = ACTIONS(7562), - [anon_sym_IBOutlet] = ACTIONS(7562), - [anon_sym_IBInspectable] = ACTIONS(7562), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7562), - [anon_sym_signed] = ACTIONS(7562), - [anon_sym_unsigned] = ACTIONS(7562), - [anon_sym_long] = ACTIONS(7562), - [anon_sym_short] = ACTIONS(7562), - [sym_primitive_type] = ACTIONS(7562), - [anon_sym_enum] = ACTIONS(7562), - [anon_sym_NS_ENUM] = ACTIONS(7562), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7562), - [anon_sym_NS_OPTIONS] = ACTIONS(7562), - [anon_sym_struct] = ACTIONS(7562), - [anon_sym_union] = ACTIONS(7562), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7562), - [anon_sym_ATend] = ACTIONS(7564), - [sym_optional] = ACTIONS(7564), - [sym_required] = ACTIONS(7564), - [anon_sym_ATproperty] = ACTIONS(7564), - [sym_method_attribute_specifier] = ACTIONS(7562), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7562), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7562), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7562), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7562), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7562), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7562), - [anon_sym_NS_AVAILABLE] = ACTIONS(7562), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7562), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7562), - [anon_sym_API_AVAILABLE] = ACTIONS(7562), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7562), - [anon_sym_API_DEPRECATED] = ACTIONS(7562), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7562), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7562), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7562), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7562), - [anon_sym___deprecated_msg] = ACTIONS(7562), - [anon_sym___deprecated_enum_msg] = ACTIONS(7562), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7562), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7562), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7562), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7562), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7562), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7562), - [anon_sym_typeof] = ACTIONS(7562), - [anon_sym___typeof] = ACTIONS(7562), - [anon_sym___typeof__] = ACTIONS(7562), - [sym_id] = ACTIONS(7562), - [sym_instancetype] = ACTIONS(7562), - [sym_Class] = ACTIONS(7562), - [sym_SEL] = ACTIONS(7562), - [sym_IMP] = ACTIONS(7562), - [sym_BOOL] = ACTIONS(7562), - [sym_auto] = ACTIONS(7562), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3173] = { - [sym_identifier] = ACTIONS(7566), - [aux_sym_preproc_def_token1] = ACTIONS(7568), - [anon_sym_DASH] = ACTIONS(7568), - [anon_sym_PLUS] = ACTIONS(7568), - [anon_sym_typedef] = ACTIONS(7566), - [anon_sym_extern] = ACTIONS(7566), - [anon_sym___attribute] = ACTIONS(7566), - [anon_sym___attribute__] = ACTIONS(7566), - [anon_sym___declspec] = ACTIONS(7566), - [anon_sym_static] = ACTIONS(7566), - [anon_sym_auto] = ACTIONS(7566), - [anon_sym_register] = ACTIONS(7566), - [anon_sym_inline] = ACTIONS(7566), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7566), - [anon_sym_const] = ACTIONS(7566), - [anon_sym_volatile] = ACTIONS(7566), - [anon_sym_restrict] = ACTIONS(7566), - [anon_sym__Atomic] = ACTIONS(7566), - [anon_sym_in] = ACTIONS(7566), - [anon_sym_out] = ACTIONS(7566), - [anon_sym_inout] = ACTIONS(7566), - [anon_sym_bycopy] = ACTIONS(7566), - [anon_sym_byref] = ACTIONS(7566), - [anon_sym_oneway] = ACTIONS(7566), - [anon_sym__Nullable] = ACTIONS(7566), - [anon_sym__Nonnull] = ACTIONS(7566), - [anon_sym__Nullable_result] = ACTIONS(7566), - [anon_sym__Null_unspecified] = ACTIONS(7566), - [anon_sym___autoreleasing] = ACTIONS(7566), - [anon_sym___nullable] = ACTIONS(7566), - [anon_sym___nonnull] = ACTIONS(7566), - [anon_sym___strong] = ACTIONS(7566), - [anon_sym___weak] = ACTIONS(7566), - [anon_sym___bridge] = ACTIONS(7566), - [anon_sym___bridge_transfer] = ACTIONS(7566), - [anon_sym___bridge_retained] = ACTIONS(7566), - [anon_sym___unsafe_unretained] = ACTIONS(7566), - [anon_sym___block] = ACTIONS(7566), - [anon_sym___kindof] = ACTIONS(7566), - [anon_sym___unused] = ACTIONS(7566), - [anon_sym__Complex] = ACTIONS(7566), - [anon_sym___complex] = ACTIONS(7566), - [anon_sym_IBOutlet] = ACTIONS(7566), - [anon_sym_IBInspectable] = ACTIONS(7566), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7566), - [anon_sym_signed] = ACTIONS(7566), - [anon_sym_unsigned] = ACTIONS(7566), - [anon_sym_long] = ACTIONS(7566), - [anon_sym_short] = ACTIONS(7566), - [sym_primitive_type] = ACTIONS(7566), - [anon_sym_enum] = ACTIONS(7566), - [anon_sym_NS_ENUM] = ACTIONS(7566), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7566), - [anon_sym_NS_OPTIONS] = ACTIONS(7566), - [anon_sym_struct] = ACTIONS(7566), - [anon_sym_union] = ACTIONS(7566), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7566), - [anon_sym_ATend] = ACTIONS(7568), - [sym_optional] = ACTIONS(7568), - [sym_required] = ACTIONS(7568), - [anon_sym_ATproperty] = ACTIONS(7568), - [sym_method_attribute_specifier] = ACTIONS(7566), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7566), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7566), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7566), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7566), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7566), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7566), - [anon_sym_NS_AVAILABLE] = ACTIONS(7566), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7566), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7566), - [anon_sym_API_AVAILABLE] = ACTIONS(7566), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7566), - [anon_sym_API_DEPRECATED] = ACTIONS(7566), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7566), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7566), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7566), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7566), - [anon_sym___deprecated_msg] = ACTIONS(7566), - [anon_sym___deprecated_enum_msg] = ACTIONS(7566), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7566), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7566), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7566), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7566), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7566), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7566), - [anon_sym_typeof] = ACTIONS(7566), - [anon_sym___typeof] = ACTIONS(7566), - [anon_sym___typeof__] = ACTIONS(7566), - [sym_id] = ACTIONS(7566), - [sym_instancetype] = ACTIONS(7566), - [sym_Class] = ACTIONS(7566), - [sym_SEL] = ACTIONS(7566), - [sym_IMP] = ACTIONS(7566), - [sym_BOOL] = ACTIONS(7566), - [sym_auto] = ACTIONS(7566), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3174] = { - [sym_identifier] = ACTIONS(7570), - [aux_sym_preproc_def_token1] = ACTIONS(7572), - [anon_sym_DASH] = ACTIONS(7572), - [anon_sym_PLUS] = ACTIONS(7572), - [anon_sym_typedef] = ACTIONS(7570), - [anon_sym_extern] = ACTIONS(7570), - [anon_sym___attribute] = ACTIONS(7570), - [anon_sym___attribute__] = ACTIONS(7570), - [anon_sym___declspec] = ACTIONS(7570), - [anon_sym_static] = ACTIONS(7570), - [anon_sym_auto] = ACTIONS(7570), - [anon_sym_register] = ACTIONS(7570), - [anon_sym_inline] = ACTIONS(7570), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7570), - [anon_sym_const] = ACTIONS(7570), - [anon_sym_volatile] = ACTIONS(7570), - [anon_sym_restrict] = ACTIONS(7570), - [anon_sym__Atomic] = ACTIONS(7570), - [anon_sym_in] = ACTIONS(7570), - [anon_sym_out] = ACTIONS(7570), - [anon_sym_inout] = ACTIONS(7570), - [anon_sym_bycopy] = ACTIONS(7570), - [anon_sym_byref] = ACTIONS(7570), - [anon_sym_oneway] = ACTIONS(7570), - [anon_sym__Nullable] = ACTIONS(7570), - [anon_sym__Nonnull] = ACTIONS(7570), - [anon_sym__Nullable_result] = ACTIONS(7570), - [anon_sym__Null_unspecified] = ACTIONS(7570), - [anon_sym___autoreleasing] = ACTIONS(7570), - [anon_sym___nullable] = ACTIONS(7570), - [anon_sym___nonnull] = ACTIONS(7570), - [anon_sym___strong] = ACTIONS(7570), - [anon_sym___weak] = ACTIONS(7570), - [anon_sym___bridge] = ACTIONS(7570), - [anon_sym___bridge_transfer] = ACTIONS(7570), - [anon_sym___bridge_retained] = ACTIONS(7570), - [anon_sym___unsafe_unretained] = ACTIONS(7570), - [anon_sym___block] = ACTIONS(7570), - [anon_sym___kindof] = ACTIONS(7570), - [anon_sym___unused] = ACTIONS(7570), - [anon_sym__Complex] = ACTIONS(7570), - [anon_sym___complex] = ACTIONS(7570), - [anon_sym_IBOutlet] = ACTIONS(7570), - [anon_sym_IBInspectable] = ACTIONS(7570), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7570), - [anon_sym_signed] = ACTIONS(7570), - [anon_sym_unsigned] = ACTIONS(7570), - [anon_sym_long] = ACTIONS(7570), - [anon_sym_short] = ACTIONS(7570), - [sym_primitive_type] = ACTIONS(7570), - [anon_sym_enum] = ACTIONS(7570), - [anon_sym_NS_ENUM] = ACTIONS(7570), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7570), - [anon_sym_NS_OPTIONS] = ACTIONS(7570), - [anon_sym_struct] = ACTIONS(7570), - [anon_sym_union] = ACTIONS(7570), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7570), - [anon_sym_ATend] = ACTIONS(7572), - [sym_optional] = ACTIONS(7572), - [sym_required] = ACTIONS(7572), - [anon_sym_ATproperty] = ACTIONS(7572), - [sym_method_attribute_specifier] = ACTIONS(7570), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7570), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7570), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7570), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7570), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7570), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7570), - [anon_sym_NS_AVAILABLE] = ACTIONS(7570), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7570), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7570), - [anon_sym_API_AVAILABLE] = ACTIONS(7570), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7570), - [anon_sym_API_DEPRECATED] = ACTIONS(7570), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7570), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7570), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7570), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7570), - [anon_sym___deprecated_msg] = ACTIONS(7570), - [anon_sym___deprecated_enum_msg] = ACTIONS(7570), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7570), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7570), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7570), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7570), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7570), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7570), - [anon_sym_typeof] = ACTIONS(7570), - [anon_sym___typeof] = ACTIONS(7570), - [anon_sym___typeof__] = ACTIONS(7570), - [sym_id] = ACTIONS(7570), - [sym_instancetype] = ACTIONS(7570), - [sym_Class] = ACTIONS(7570), - [sym_SEL] = ACTIONS(7570), - [sym_IMP] = ACTIONS(7570), - [sym_BOOL] = ACTIONS(7570), - [sym_auto] = ACTIONS(7570), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3175] = { - [sym_identifier] = ACTIONS(7562), - [aux_sym_preproc_def_token1] = ACTIONS(7564), - [anon_sym_DASH] = ACTIONS(7564), - [anon_sym_PLUS] = ACTIONS(7564), - [anon_sym_typedef] = ACTIONS(7562), - [anon_sym_extern] = ACTIONS(7562), - [anon_sym___attribute] = ACTIONS(7562), - [anon_sym___attribute__] = ACTIONS(7562), - [anon_sym___declspec] = ACTIONS(7562), - [anon_sym_static] = ACTIONS(7562), - [anon_sym_auto] = ACTIONS(7562), - [anon_sym_register] = ACTIONS(7562), - [anon_sym_inline] = ACTIONS(7562), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7562), - [anon_sym_const] = ACTIONS(7562), - [anon_sym_volatile] = ACTIONS(7562), - [anon_sym_restrict] = ACTIONS(7562), - [anon_sym__Atomic] = ACTIONS(7562), - [anon_sym_in] = ACTIONS(7562), - [anon_sym_out] = ACTIONS(7562), - [anon_sym_inout] = ACTIONS(7562), - [anon_sym_bycopy] = ACTIONS(7562), - [anon_sym_byref] = ACTIONS(7562), - [anon_sym_oneway] = ACTIONS(7562), - [anon_sym__Nullable] = ACTIONS(7562), - [anon_sym__Nonnull] = ACTIONS(7562), - [anon_sym__Nullable_result] = ACTIONS(7562), - [anon_sym__Null_unspecified] = ACTIONS(7562), - [anon_sym___autoreleasing] = ACTIONS(7562), - [anon_sym___nullable] = ACTIONS(7562), - [anon_sym___nonnull] = ACTIONS(7562), - [anon_sym___strong] = ACTIONS(7562), - [anon_sym___weak] = ACTIONS(7562), - [anon_sym___bridge] = ACTIONS(7562), - [anon_sym___bridge_transfer] = ACTIONS(7562), - [anon_sym___bridge_retained] = ACTIONS(7562), - [anon_sym___unsafe_unretained] = ACTIONS(7562), - [anon_sym___block] = ACTIONS(7562), - [anon_sym___kindof] = ACTIONS(7562), - [anon_sym___unused] = ACTIONS(7562), - [anon_sym__Complex] = ACTIONS(7562), - [anon_sym___complex] = ACTIONS(7562), - [anon_sym_IBOutlet] = ACTIONS(7562), - [anon_sym_IBInspectable] = ACTIONS(7562), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7562), - [anon_sym_signed] = ACTIONS(7562), - [anon_sym_unsigned] = ACTIONS(7562), - [anon_sym_long] = ACTIONS(7562), - [anon_sym_short] = ACTIONS(7562), - [sym_primitive_type] = ACTIONS(7562), - [anon_sym_enum] = ACTIONS(7562), - [anon_sym_NS_ENUM] = ACTIONS(7562), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7562), - [anon_sym_NS_OPTIONS] = ACTIONS(7562), - [anon_sym_struct] = ACTIONS(7562), - [anon_sym_union] = ACTIONS(7562), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7562), - [anon_sym_ATend] = ACTIONS(7564), - [sym_optional] = ACTIONS(7564), - [sym_required] = ACTIONS(7564), - [anon_sym_ATproperty] = ACTIONS(7564), - [sym_method_attribute_specifier] = ACTIONS(7562), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7562), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7562), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7562), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7562), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7562), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7562), - [anon_sym_NS_AVAILABLE] = ACTIONS(7562), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7562), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7562), - [anon_sym_API_AVAILABLE] = ACTIONS(7562), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7562), - [anon_sym_API_DEPRECATED] = ACTIONS(7562), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7562), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7562), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7562), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7562), - [anon_sym___deprecated_msg] = ACTIONS(7562), - [anon_sym___deprecated_enum_msg] = ACTIONS(7562), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7562), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7562), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7562), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7562), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7562), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7562), - [anon_sym_typeof] = ACTIONS(7562), - [anon_sym___typeof] = ACTIONS(7562), - [anon_sym___typeof__] = ACTIONS(7562), - [sym_id] = ACTIONS(7562), - [sym_instancetype] = ACTIONS(7562), - [sym_Class] = ACTIONS(7562), - [sym_SEL] = ACTIONS(7562), - [sym_IMP] = ACTIONS(7562), - [sym_BOOL] = ACTIONS(7562), - [sym_auto] = ACTIONS(7562), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3176] = { - [sym_identifier] = ACTIONS(7574), - [aux_sym_preproc_def_token1] = ACTIONS(7576), - [anon_sym_DASH] = ACTIONS(7576), - [anon_sym_PLUS] = ACTIONS(7576), - [anon_sym_typedef] = ACTIONS(7574), - [anon_sym_extern] = ACTIONS(7574), - [anon_sym___attribute] = ACTIONS(7574), - [anon_sym___attribute__] = ACTIONS(7574), - [anon_sym___declspec] = ACTIONS(7574), - [anon_sym_static] = ACTIONS(7574), - [anon_sym_auto] = ACTIONS(7574), - [anon_sym_register] = ACTIONS(7574), - [anon_sym_inline] = ACTIONS(7574), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7574), - [anon_sym_const] = ACTIONS(7574), - [anon_sym_volatile] = ACTIONS(7574), - [anon_sym_restrict] = ACTIONS(7574), - [anon_sym__Atomic] = ACTIONS(7574), - [anon_sym_in] = ACTIONS(7574), - [anon_sym_out] = ACTIONS(7574), - [anon_sym_inout] = ACTIONS(7574), - [anon_sym_bycopy] = ACTIONS(7574), - [anon_sym_byref] = ACTIONS(7574), - [anon_sym_oneway] = ACTIONS(7574), - [anon_sym__Nullable] = ACTIONS(7574), - [anon_sym__Nonnull] = ACTIONS(7574), - [anon_sym__Nullable_result] = ACTIONS(7574), - [anon_sym__Null_unspecified] = ACTIONS(7574), - [anon_sym___autoreleasing] = ACTIONS(7574), - [anon_sym___nullable] = ACTIONS(7574), - [anon_sym___nonnull] = ACTIONS(7574), - [anon_sym___strong] = ACTIONS(7574), - [anon_sym___weak] = ACTIONS(7574), - [anon_sym___bridge] = ACTIONS(7574), - [anon_sym___bridge_transfer] = ACTIONS(7574), - [anon_sym___bridge_retained] = ACTIONS(7574), - [anon_sym___unsafe_unretained] = ACTIONS(7574), - [anon_sym___block] = ACTIONS(7574), - [anon_sym___kindof] = ACTIONS(7574), - [anon_sym___unused] = ACTIONS(7574), - [anon_sym__Complex] = ACTIONS(7574), - [anon_sym___complex] = ACTIONS(7574), - [anon_sym_IBOutlet] = ACTIONS(7574), - [anon_sym_IBInspectable] = ACTIONS(7574), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7574), - [anon_sym_signed] = ACTIONS(7574), - [anon_sym_unsigned] = ACTIONS(7574), - [anon_sym_long] = ACTIONS(7574), - [anon_sym_short] = ACTIONS(7574), - [sym_primitive_type] = ACTIONS(7574), - [anon_sym_enum] = ACTIONS(7574), - [anon_sym_NS_ENUM] = ACTIONS(7574), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7574), - [anon_sym_NS_OPTIONS] = ACTIONS(7574), - [anon_sym_struct] = ACTIONS(7574), - [anon_sym_union] = ACTIONS(7574), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7574), - [anon_sym_ATend] = ACTIONS(7576), - [sym_optional] = ACTIONS(7576), - [sym_required] = ACTIONS(7576), - [anon_sym_ATproperty] = ACTIONS(7576), - [sym_method_attribute_specifier] = ACTIONS(7574), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7574), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7574), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7574), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7574), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7574), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7574), - [anon_sym_NS_AVAILABLE] = ACTIONS(7574), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7574), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7574), - [anon_sym_API_AVAILABLE] = ACTIONS(7574), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7574), - [anon_sym_API_DEPRECATED] = ACTIONS(7574), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7574), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7574), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7574), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7574), - [anon_sym___deprecated_msg] = ACTIONS(7574), - [anon_sym___deprecated_enum_msg] = ACTIONS(7574), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7574), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7574), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7574), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7574), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7574), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7574), - [anon_sym_typeof] = ACTIONS(7574), - [anon_sym___typeof] = ACTIONS(7574), - [anon_sym___typeof__] = ACTIONS(7574), - [sym_id] = ACTIONS(7574), - [sym_instancetype] = ACTIONS(7574), - [sym_Class] = ACTIONS(7574), - [sym_SEL] = ACTIONS(7574), - [sym_IMP] = ACTIONS(7574), - [sym_BOOL] = ACTIONS(7574), - [sym_auto] = ACTIONS(7574), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3177] = { - [sym_identifier] = ACTIONS(7578), - [aux_sym_preproc_def_token1] = ACTIONS(7580), - [anon_sym_DASH] = ACTIONS(7580), - [anon_sym_PLUS] = ACTIONS(7580), - [anon_sym_typedef] = ACTIONS(7578), - [anon_sym_extern] = ACTIONS(7578), - [anon_sym___attribute] = ACTIONS(7578), - [anon_sym___attribute__] = ACTIONS(7578), - [anon_sym___declspec] = ACTIONS(7578), - [anon_sym_static] = ACTIONS(7578), - [anon_sym_auto] = ACTIONS(7578), - [anon_sym_register] = ACTIONS(7578), - [anon_sym_inline] = ACTIONS(7578), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7578), - [anon_sym_const] = ACTIONS(7578), - [anon_sym_volatile] = ACTIONS(7578), - [anon_sym_restrict] = ACTIONS(7578), - [anon_sym__Atomic] = ACTIONS(7578), - [anon_sym_in] = ACTIONS(7578), - [anon_sym_out] = ACTIONS(7578), - [anon_sym_inout] = ACTIONS(7578), - [anon_sym_bycopy] = ACTIONS(7578), - [anon_sym_byref] = ACTIONS(7578), - [anon_sym_oneway] = ACTIONS(7578), - [anon_sym__Nullable] = ACTIONS(7578), - [anon_sym__Nonnull] = ACTIONS(7578), - [anon_sym__Nullable_result] = ACTIONS(7578), - [anon_sym__Null_unspecified] = ACTIONS(7578), - [anon_sym___autoreleasing] = ACTIONS(7578), - [anon_sym___nullable] = ACTIONS(7578), - [anon_sym___nonnull] = ACTIONS(7578), - [anon_sym___strong] = ACTIONS(7578), - [anon_sym___weak] = ACTIONS(7578), - [anon_sym___bridge] = ACTIONS(7578), - [anon_sym___bridge_transfer] = ACTIONS(7578), - [anon_sym___bridge_retained] = ACTIONS(7578), - [anon_sym___unsafe_unretained] = ACTIONS(7578), - [anon_sym___block] = ACTIONS(7578), - [anon_sym___kindof] = ACTIONS(7578), - [anon_sym___unused] = ACTIONS(7578), - [anon_sym__Complex] = ACTIONS(7578), - [anon_sym___complex] = ACTIONS(7578), - [anon_sym_IBOutlet] = ACTIONS(7578), - [anon_sym_IBInspectable] = ACTIONS(7578), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7578), - [anon_sym_signed] = ACTIONS(7578), - [anon_sym_unsigned] = ACTIONS(7578), - [anon_sym_long] = ACTIONS(7578), - [anon_sym_short] = ACTIONS(7578), - [sym_primitive_type] = ACTIONS(7578), - [anon_sym_enum] = ACTIONS(7578), - [anon_sym_NS_ENUM] = ACTIONS(7578), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7578), - [anon_sym_NS_OPTIONS] = ACTIONS(7578), - [anon_sym_struct] = ACTIONS(7578), - [anon_sym_union] = ACTIONS(7578), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7578), - [anon_sym_ATend] = ACTIONS(7580), - [sym_optional] = ACTIONS(7580), - [sym_required] = ACTIONS(7580), - [anon_sym_ATproperty] = ACTIONS(7580), - [sym_method_attribute_specifier] = ACTIONS(7578), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7578), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7578), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7578), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7578), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7578), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7578), - [anon_sym_NS_AVAILABLE] = ACTIONS(7578), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7578), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7578), - [anon_sym_API_AVAILABLE] = ACTIONS(7578), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7578), - [anon_sym_API_DEPRECATED] = ACTIONS(7578), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7578), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7578), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7578), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7578), - [anon_sym___deprecated_msg] = ACTIONS(7578), - [anon_sym___deprecated_enum_msg] = ACTIONS(7578), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7578), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7578), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7578), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7578), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7578), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7578), - [anon_sym_typeof] = ACTIONS(7578), - [anon_sym___typeof] = ACTIONS(7578), - [anon_sym___typeof__] = ACTIONS(7578), - [sym_id] = ACTIONS(7578), - [sym_instancetype] = ACTIONS(7578), - [sym_Class] = ACTIONS(7578), - [sym_SEL] = ACTIONS(7578), - [sym_IMP] = ACTIONS(7578), - [sym_BOOL] = ACTIONS(7578), - [sym_auto] = ACTIONS(7578), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3178] = { - [sym_identifier] = ACTIONS(7582), - [aux_sym_preproc_def_token1] = ACTIONS(7584), - [anon_sym_DASH] = ACTIONS(7584), - [anon_sym_PLUS] = ACTIONS(7584), - [anon_sym_typedef] = ACTIONS(7582), - [anon_sym_extern] = ACTIONS(7582), - [anon_sym___attribute] = ACTIONS(7582), - [anon_sym___attribute__] = ACTIONS(7582), - [anon_sym___declspec] = ACTIONS(7582), - [anon_sym_static] = ACTIONS(7582), - [anon_sym_auto] = ACTIONS(7582), - [anon_sym_register] = ACTIONS(7582), - [anon_sym_inline] = ACTIONS(7582), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7582), - [anon_sym_const] = ACTIONS(7582), - [anon_sym_volatile] = ACTIONS(7582), - [anon_sym_restrict] = ACTIONS(7582), - [anon_sym__Atomic] = ACTIONS(7582), - [anon_sym_in] = ACTIONS(7582), - [anon_sym_out] = ACTIONS(7582), - [anon_sym_inout] = ACTIONS(7582), - [anon_sym_bycopy] = ACTIONS(7582), - [anon_sym_byref] = ACTIONS(7582), - [anon_sym_oneway] = ACTIONS(7582), - [anon_sym__Nullable] = ACTIONS(7582), - [anon_sym__Nonnull] = ACTIONS(7582), - [anon_sym__Nullable_result] = ACTIONS(7582), - [anon_sym__Null_unspecified] = ACTIONS(7582), - [anon_sym___autoreleasing] = ACTIONS(7582), - [anon_sym___nullable] = ACTIONS(7582), - [anon_sym___nonnull] = ACTIONS(7582), - [anon_sym___strong] = ACTIONS(7582), - [anon_sym___weak] = ACTIONS(7582), - [anon_sym___bridge] = ACTIONS(7582), - [anon_sym___bridge_transfer] = ACTIONS(7582), - [anon_sym___bridge_retained] = ACTIONS(7582), - [anon_sym___unsafe_unretained] = ACTIONS(7582), - [anon_sym___block] = ACTIONS(7582), - [anon_sym___kindof] = ACTIONS(7582), - [anon_sym___unused] = ACTIONS(7582), - [anon_sym__Complex] = ACTIONS(7582), - [anon_sym___complex] = ACTIONS(7582), - [anon_sym_IBOutlet] = ACTIONS(7582), - [anon_sym_IBInspectable] = ACTIONS(7582), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7582), - [anon_sym_signed] = ACTIONS(7582), - [anon_sym_unsigned] = ACTIONS(7582), - [anon_sym_long] = ACTIONS(7582), - [anon_sym_short] = ACTIONS(7582), - [sym_primitive_type] = ACTIONS(7582), - [anon_sym_enum] = ACTIONS(7582), - [anon_sym_NS_ENUM] = ACTIONS(7582), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7582), - [anon_sym_NS_OPTIONS] = ACTIONS(7582), - [anon_sym_struct] = ACTIONS(7582), - [anon_sym_union] = ACTIONS(7582), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7582), - [anon_sym_ATend] = ACTIONS(7584), - [sym_optional] = ACTIONS(7584), - [sym_required] = ACTIONS(7584), - [anon_sym_ATproperty] = ACTIONS(7584), - [sym_method_attribute_specifier] = ACTIONS(7582), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7582), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7582), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7582), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7582), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7582), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7582), - [anon_sym_NS_AVAILABLE] = ACTIONS(7582), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7582), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7582), - [anon_sym_API_AVAILABLE] = ACTIONS(7582), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7582), - [anon_sym_API_DEPRECATED] = ACTIONS(7582), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7582), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7582), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7582), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7582), - [anon_sym___deprecated_msg] = ACTIONS(7582), - [anon_sym___deprecated_enum_msg] = ACTIONS(7582), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7582), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7582), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7582), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7582), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7582), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7582), - [anon_sym_typeof] = ACTIONS(7582), - [anon_sym___typeof] = ACTIONS(7582), - [anon_sym___typeof__] = ACTIONS(7582), - [sym_id] = ACTIONS(7582), - [sym_instancetype] = ACTIONS(7582), - [sym_Class] = ACTIONS(7582), - [sym_SEL] = ACTIONS(7582), - [sym_IMP] = ACTIONS(7582), - [sym_BOOL] = ACTIONS(7582), - [sym_auto] = ACTIONS(7582), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3179] = { - [sym_identifier] = ACTIONS(6878), - [anon_sym_COMMA] = ACTIONS(6880), - [anon_sym_RPAREN] = ACTIONS(6880), - [anon_sym_LPAREN2] = ACTIONS(6880), - [anon_sym_DASH] = ACTIONS(6878), - [anon_sym_PLUS] = ACTIONS(6878), - [anon_sym_STAR] = ACTIONS(6880), - [anon_sym_SLASH] = ACTIONS(6878), - [anon_sym_PERCENT] = ACTIONS(6880), - [anon_sym_PIPE_PIPE] = ACTIONS(6880), - [anon_sym_AMP_AMP] = ACTIONS(6880), - [anon_sym_PIPE] = ACTIONS(6878), - [anon_sym_CARET] = ACTIONS(6880), - [anon_sym_AMP] = ACTIONS(6878), - [anon_sym_EQ_EQ] = ACTIONS(6880), - [anon_sym_BANG_EQ] = ACTIONS(6880), - [anon_sym_GT] = ACTIONS(6878), - [anon_sym_GT_EQ] = ACTIONS(6880), - [anon_sym_LT_EQ] = ACTIONS(6880), - [anon_sym_LT] = ACTIONS(6878), - [anon_sym_LT_LT] = ACTIONS(6880), - [anon_sym_GT_GT] = ACTIONS(6880), - [anon_sym_SEMI] = ACTIONS(6880), - [anon_sym___attribute] = ACTIONS(6878), - [anon_sym___attribute__] = ACTIONS(6878), - [anon_sym_RBRACE] = ACTIONS(6880), - [anon_sym_LBRACK] = ACTIONS(6880), - [anon_sym_RBRACK] = ACTIONS(6880), - [anon_sym_const] = ACTIONS(6878), - [anon_sym_volatile] = ACTIONS(6878), - [anon_sym_restrict] = ACTIONS(6878), - [anon_sym__Atomic] = ACTIONS(6878), - [anon_sym_in] = ACTIONS(6878), - [anon_sym_out] = ACTIONS(6878), - [anon_sym_inout] = ACTIONS(6878), - [anon_sym_bycopy] = ACTIONS(6878), - [anon_sym_byref] = ACTIONS(6878), - [anon_sym_oneway] = ACTIONS(6878), - [anon_sym__Nullable] = ACTIONS(6878), - [anon_sym__Nonnull] = ACTIONS(6878), - [anon_sym__Nullable_result] = ACTIONS(6878), - [anon_sym__Null_unspecified] = ACTIONS(6878), - [anon_sym___autoreleasing] = ACTIONS(6878), - [anon_sym___nullable] = ACTIONS(6878), - [anon_sym___nonnull] = ACTIONS(6878), - [anon_sym___strong] = ACTIONS(6878), - [anon_sym___weak] = ACTIONS(6878), - [anon_sym___bridge] = ACTIONS(6878), - [anon_sym___bridge_transfer] = ACTIONS(6878), - [anon_sym___bridge_retained] = ACTIONS(6878), - [anon_sym___unsafe_unretained] = ACTIONS(6878), - [anon_sym___block] = ACTIONS(6878), - [anon_sym___kindof] = ACTIONS(6878), - [anon_sym___unused] = ACTIONS(6878), - [anon_sym__Complex] = ACTIONS(6878), - [anon_sym___complex] = ACTIONS(6878), - [anon_sym_IBOutlet] = ACTIONS(6878), - [anon_sym_IBInspectable] = ACTIONS(6878), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6878), - [anon_sym_COLON] = ACTIONS(6880), - [anon_sym_QMARK] = ACTIONS(6880), - [anon_sym_DASH_DASH] = ACTIONS(6880), - [anon_sym_PLUS_PLUS] = ACTIONS(6880), - [anon_sym_DOT] = ACTIONS(6880), - [anon_sym_DASH_GT] = ACTIONS(6880), - [anon_sym_L_DQUOTE] = ACTIONS(6880), - [anon_sym_u_DQUOTE] = ACTIONS(6880), - [anon_sym_U_DQUOTE] = ACTIONS(6880), - [anon_sym_u8_DQUOTE] = ACTIONS(6880), - [anon_sym_DQUOTE] = ACTIONS(6880), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6878), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6878), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6878), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6878), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6878), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6878), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6878), - [anon_sym_NS_AVAILABLE] = ACTIONS(6878), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6878), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6878), - [anon_sym_API_AVAILABLE] = ACTIONS(6878), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6878), - [anon_sym_API_DEPRECATED] = ACTIONS(6878), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6878), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6878), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6878), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6878), - [anon_sym___deprecated_msg] = ACTIONS(6878), - [anon_sym___deprecated_enum_msg] = ACTIONS(6878), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6878), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6878), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6878), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6878), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6878), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6878), - [anon_sym_AT] = ACTIONS(6880), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3180] = { - [sym_identifier] = ACTIONS(7586), - [aux_sym_preproc_def_token1] = ACTIONS(7588), - [anon_sym_DASH] = ACTIONS(7588), - [anon_sym_PLUS] = ACTIONS(7588), - [anon_sym_typedef] = ACTIONS(7586), - [anon_sym_extern] = ACTIONS(7586), - [anon_sym___attribute] = ACTIONS(7586), - [anon_sym___attribute__] = ACTIONS(7586), - [anon_sym___declspec] = ACTIONS(7586), - [anon_sym_static] = ACTIONS(7586), - [anon_sym_auto] = ACTIONS(7586), - [anon_sym_register] = ACTIONS(7586), - [anon_sym_inline] = ACTIONS(7586), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7586), - [anon_sym_const] = ACTIONS(7586), - [anon_sym_volatile] = ACTIONS(7586), - [anon_sym_restrict] = ACTIONS(7586), - [anon_sym__Atomic] = ACTIONS(7586), - [anon_sym_in] = ACTIONS(7586), - [anon_sym_out] = ACTIONS(7586), - [anon_sym_inout] = ACTIONS(7586), - [anon_sym_bycopy] = ACTIONS(7586), - [anon_sym_byref] = ACTIONS(7586), - [anon_sym_oneway] = ACTIONS(7586), - [anon_sym__Nullable] = ACTIONS(7586), - [anon_sym__Nonnull] = ACTIONS(7586), - [anon_sym__Nullable_result] = ACTIONS(7586), - [anon_sym__Null_unspecified] = ACTIONS(7586), - [anon_sym___autoreleasing] = ACTIONS(7586), - [anon_sym___nullable] = ACTIONS(7586), - [anon_sym___nonnull] = ACTIONS(7586), - [anon_sym___strong] = ACTIONS(7586), - [anon_sym___weak] = ACTIONS(7586), - [anon_sym___bridge] = ACTIONS(7586), - [anon_sym___bridge_transfer] = ACTIONS(7586), - [anon_sym___bridge_retained] = ACTIONS(7586), - [anon_sym___unsafe_unretained] = ACTIONS(7586), - [anon_sym___block] = ACTIONS(7586), - [anon_sym___kindof] = ACTIONS(7586), - [anon_sym___unused] = ACTIONS(7586), - [anon_sym__Complex] = ACTIONS(7586), - [anon_sym___complex] = ACTIONS(7586), - [anon_sym_IBOutlet] = ACTIONS(7586), - [anon_sym_IBInspectable] = ACTIONS(7586), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7586), - [anon_sym_signed] = ACTIONS(7586), - [anon_sym_unsigned] = ACTIONS(7586), - [anon_sym_long] = ACTIONS(7586), - [anon_sym_short] = ACTIONS(7586), - [sym_primitive_type] = ACTIONS(7586), - [anon_sym_enum] = ACTIONS(7586), - [anon_sym_NS_ENUM] = ACTIONS(7586), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7586), - [anon_sym_NS_OPTIONS] = ACTIONS(7586), - [anon_sym_struct] = ACTIONS(7586), - [anon_sym_union] = ACTIONS(7586), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7586), - [anon_sym_ATend] = ACTIONS(7588), - [sym_optional] = ACTIONS(7588), - [sym_required] = ACTIONS(7588), - [anon_sym_ATproperty] = ACTIONS(7588), - [sym_method_attribute_specifier] = ACTIONS(7586), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7586), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7586), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7586), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7586), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7586), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7586), - [anon_sym_NS_AVAILABLE] = ACTIONS(7586), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7586), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7586), - [anon_sym_API_AVAILABLE] = ACTIONS(7586), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7586), - [anon_sym_API_DEPRECATED] = ACTIONS(7586), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7586), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7586), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7586), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7586), - [anon_sym___deprecated_msg] = ACTIONS(7586), - [anon_sym___deprecated_enum_msg] = ACTIONS(7586), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7586), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7586), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7586), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7586), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7586), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7586), - [anon_sym_typeof] = ACTIONS(7586), - [anon_sym___typeof] = ACTIONS(7586), - [anon_sym___typeof__] = ACTIONS(7586), - [sym_id] = ACTIONS(7586), - [sym_instancetype] = ACTIONS(7586), - [sym_Class] = ACTIONS(7586), - [sym_SEL] = ACTIONS(7586), - [sym_IMP] = ACTIONS(7586), - [sym_BOOL] = ACTIONS(7586), - [sym_auto] = ACTIONS(7586), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3181] = { - [sym_identifier] = ACTIONS(7590), - [aux_sym_preproc_def_token1] = ACTIONS(7592), - [anon_sym_DASH] = ACTIONS(7592), - [anon_sym_PLUS] = ACTIONS(7592), - [anon_sym_typedef] = ACTIONS(7590), - [anon_sym_extern] = ACTIONS(7590), - [anon_sym___attribute] = ACTIONS(7590), - [anon_sym___attribute__] = ACTIONS(7590), - [anon_sym___declspec] = ACTIONS(7590), - [anon_sym_static] = ACTIONS(7590), - [anon_sym_auto] = ACTIONS(7590), - [anon_sym_register] = ACTIONS(7590), - [anon_sym_inline] = ACTIONS(7590), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7590), - [anon_sym_const] = ACTIONS(7590), - [anon_sym_volatile] = ACTIONS(7590), - [anon_sym_restrict] = ACTIONS(7590), - [anon_sym__Atomic] = ACTIONS(7590), - [anon_sym_in] = ACTIONS(7590), - [anon_sym_out] = ACTIONS(7590), - [anon_sym_inout] = ACTIONS(7590), - [anon_sym_bycopy] = ACTIONS(7590), - [anon_sym_byref] = ACTIONS(7590), - [anon_sym_oneway] = ACTIONS(7590), - [anon_sym__Nullable] = ACTIONS(7590), - [anon_sym__Nonnull] = ACTIONS(7590), - [anon_sym__Nullable_result] = ACTIONS(7590), - [anon_sym__Null_unspecified] = ACTIONS(7590), - [anon_sym___autoreleasing] = ACTIONS(7590), - [anon_sym___nullable] = ACTIONS(7590), - [anon_sym___nonnull] = ACTIONS(7590), - [anon_sym___strong] = ACTIONS(7590), - [anon_sym___weak] = ACTIONS(7590), - [anon_sym___bridge] = ACTIONS(7590), - [anon_sym___bridge_transfer] = ACTIONS(7590), - [anon_sym___bridge_retained] = ACTIONS(7590), - [anon_sym___unsafe_unretained] = ACTIONS(7590), - [anon_sym___block] = ACTIONS(7590), - [anon_sym___kindof] = ACTIONS(7590), - [anon_sym___unused] = ACTIONS(7590), - [anon_sym__Complex] = ACTIONS(7590), - [anon_sym___complex] = ACTIONS(7590), - [anon_sym_IBOutlet] = ACTIONS(7590), - [anon_sym_IBInspectable] = ACTIONS(7590), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7590), - [anon_sym_signed] = ACTIONS(7590), - [anon_sym_unsigned] = ACTIONS(7590), - [anon_sym_long] = ACTIONS(7590), - [anon_sym_short] = ACTIONS(7590), - [sym_primitive_type] = ACTIONS(7590), - [anon_sym_enum] = ACTIONS(7590), - [anon_sym_NS_ENUM] = ACTIONS(7590), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7590), - [anon_sym_NS_OPTIONS] = ACTIONS(7590), - [anon_sym_struct] = ACTIONS(7590), - [anon_sym_union] = ACTIONS(7590), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7590), - [anon_sym_ATend] = ACTIONS(7592), - [sym_optional] = ACTIONS(7592), - [sym_required] = ACTIONS(7592), - [anon_sym_ATproperty] = ACTIONS(7592), - [sym_method_attribute_specifier] = ACTIONS(7590), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7590), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7590), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7590), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7590), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7590), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7590), - [anon_sym_NS_AVAILABLE] = ACTIONS(7590), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7590), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7590), - [anon_sym_API_AVAILABLE] = ACTIONS(7590), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7590), - [anon_sym_API_DEPRECATED] = ACTIONS(7590), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7590), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7590), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7590), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7590), - [anon_sym___deprecated_msg] = ACTIONS(7590), - [anon_sym___deprecated_enum_msg] = ACTIONS(7590), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7590), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7590), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7590), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7590), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7590), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7590), - [anon_sym_typeof] = ACTIONS(7590), - [anon_sym___typeof] = ACTIONS(7590), - [anon_sym___typeof__] = ACTIONS(7590), - [sym_id] = ACTIONS(7590), - [sym_instancetype] = ACTIONS(7590), - [sym_Class] = ACTIONS(7590), - [sym_SEL] = ACTIONS(7590), - [sym_IMP] = ACTIONS(7590), - [sym_BOOL] = ACTIONS(7590), - [sym_auto] = ACTIONS(7590), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3182] = { - [sym_identifier] = ACTIONS(7594), - [aux_sym_preproc_def_token1] = ACTIONS(7596), - [anon_sym_DASH] = ACTIONS(7596), - [anon_sym_PLUS] = ACTIONS(7596), - [anon_sym_typedef] = ACTIONS(7594), - [anon_sym_extern] = ACTIONS(7594), - [anon_sym___attribute] = ACTIONS(7594), - [anon_sym___attribute__] = ACTIONS(7594), - [anon_sym___declspec] = ACTIONS(7594), - [anon_sym_static] = ACTIONS(7594), - [anon_sym_auto] = ACTIONS(7594), - [anon_sym_register] = ACTIONS(7594), - [anon_sym_inline] = ACTIONS(7594), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7594), - [anon_sym_const] = ACTIONS(7594), - [anon_sym_volatile] = ACTIONS(7594), - [anon_sym_restrict] = ACTIONS(7594), - [anon_sym__Atomic] = ACTIONS(7594), - [anon_sym_in] = ACTIONS(7594), - [anon_sym_out] = ACTIONS(7594), - [anon_sym_inout] = ACTIONS(7594), - [anon_sym_bycopy] = ACTIONS(7594), - [anon_sym_byref] = ACTIONS(7594), - [anon_sym_oneway] = ACTIONS(7594), - [anon_sym__Nullable] = ACTIONS(7594), - [anon_sym__Nonnull] = ACTIONS(7594), - [anon_sym__Nullable_result] = ACTIONS(7594), - [anon_sym__Null_unspecified] = ACTIONS(7594), - [anon_sym___autoreleasing] = ACTIONS(7594), - [anon_sym___nullable] = ACTIONS(7594), - [anon_sym___nonnull] = ACTIONS(7594), - [anon_sym___strong] = ACTIONS(7594), - [anon_sym___weak] = ACTIONS(7594), - [anon_sym___bridge] = ACTIONS(7594), - [anon_sym___bridge_transfer] = ACTIONS(7594), - [anon_sym___bridge_retained] = ACTIONS(7594), - [anon_sym___unsafe_unretained] = ACTIONS(7594), - [anon_sym___block] = ACTIONS(7594), - [anon_sym___kindof] = ACTIONS(7594), - [anon_sym___unused] = ACTIONS(7594), - [anon_sym__Complex] = ACTIONS(7594), - [anon_sym___complex] = ACTIONS(7594), - [anon_sym_IBOutlet] = ACTIONS(7594), - [anon_sym_IBInspectable] = ACTIONS(7594), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7594), - [anon_sym_signed] = ACTIONS(7594), - [anon_sym_unsigned] = ACTIONS(7594), - [anon_sym_long] = ACTIONS(7594), - [anon_sym_short] = ACTIONS(7594), - [sym_primitive_type] = ACTIONS(7594), - [anon_sym_enum] = ACTIONS(7594), - [anon_sym_NS_ENUM] = ACTIONS(7594), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7594), - [anon_sym_NS_OPTIONS] = ACTIONS(7594), - [anon_sym_struct] = ACTIONS(7594), - [anon_sym_union] = ACTIONS(7594), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7594), - [anon_sym_ATend] = ACTIONS(7596), - [sym_optional] = ACTIONS(7596), - [sym_required] = ACTIONS(7596), - [anon_sym_ATproperty] = ACTIONS(7596), - [sym_method_attribute_specifier] = ACTIONS(7594), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7594), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7594), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7594), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7594), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7594), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7594), - [anon_sym_NS_AVAILABLE] = ACTIONS(7594), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7594), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7594), - [anon_sym_API_AVAILABLE] = ACTIONS(7594), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7594), - [anon_sym_API_DEPRECATED] = ACTIONS(7594), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7594), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7594), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7594), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7594), - [anon_sym___deprecated_msg] = ACTIONS(7594), - [anon_sym___deprecated_enum_msg] = ACTIONS(7594), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7594), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7594), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7594), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7594), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7594), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7594), - [anon_sym_typeof] = ACTIONS(7594), - [anon_sym___typeof] = ACTIONS(7594), - [anon_sym___typeof__] = ACTIONS(7594), - [sym_id] = ACTIONS(7594), - [sym_instancetype] = ACTIONS(7594), - [sym_Class] = ACTIONS(7594), - [sym_SEL] = ACTIONS(7594), - [sym_IMP] = ACTIONS(7594), - [sym_BOOL] = ACTIONS(7594), - [sym_auto] = ACTIONS(7594), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3183] = { - [sym_identifier] = ACTIONS(7598), - [aux_sym_preproc_def_token1] = ACTIONS(7600), - [anon_sym_DASH] = ACTIONS(7600), - [anon_sym_PLUS] = ACTIONS(7600), - [anon_sym_typedef] = ACTIONS(7598), - [anon_sym_extern] = ACTIONS(7598), - [anon_sym___attribute] = ACTIONS(7598), - [anon_sym___attribute__] = ACTIONS(7598), - [anon_sym___declspec] = ACTIONS(7598), - [anon_sym_static] = ACTIONS(7598), - [anon_sym_auto] = ACTIONS(7598), - [anon_sym_register] = ACTIONS(7598), - [anon_sym_inline] = ACTIONS(7598), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7598), - [anon_sym_const] = ACTIONS(7598), - [anon_sym_volatile] = ACTIONS(7598), - [anon_sym_restrict] = ACTIONS(7598), - [anon_sym__Atomic] = ACTIONS(7598), - [anon_sym_in] = ACTIONS(7598), - [anon_sym_out] = ACTIONS(7598), - [anon_sym_inout] = ACTIONS(7598), - [anon_sym_bycopy] = ACTIONS(7598), - [anon_sym_byref] = ACTIONS(7598), - [anon_sym_oneway] = ACTIONS(7598), - [anon_sym__Nullable] = ACTIONS(7598), - [anon_sym__Nonnull] = ACTIONS(7598), - [anon_sym__Nullable_result] = ACTIONS(7598), - [anon_sym__Null_unspecified] = ACTIONS(7598), - [anon_sym___autoreleasing] = ACTIONS(7598), - [anon_sym___nullable] = ACTIONS(7598), - [anon_sym___nonnull] = ACTIONS(7598), - [anon_sym___strong] = ACTIONS(7598), - [anon_sym___weak] = ACTIONS(7598), - [anon_sym___bridge] = ACTIONS(7598), - [anon_sym___bridge_transfer] = ACTIONS(7598), - [anon_sym___bridge_retained] = ACTIONS(7598), - [anon_sym___unsafe_unretained] = ACTIONS(7598), - [anon_sym___block] = ACTIONS(7598), - [anon_sym___kindof] = ACTIONS(7598), - [anon_sym___unused] = ACTIONS(7598), - [anon_sym__Complex] = ACTIONS(7598), - [anon_sym___complex] = ACTIONS(7598), - [anon_sym_IBOutlet] = ACTIONS(7598), - [anon_sym_IBInspectable] = ACTIONS(7598), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7598), - [anon_sym_signed] = ACTIONS(7598), - [anon_sym_unsigned] = ACTIONS(7598), - [anon_sym_long] = ACTIONS(7598), - [anon_sym_short] = ACTIONS(7598), - [sym_primitive_type] = ACTIONS(7598), - [anon_sym_enum] = ACTIONS(7598), - [anon_sym_NS_ENUM] = ACTIONS(7598), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7598), - [anon_sym_NS_OPTIONS] = ACTIONS(7598), - [anon_sym_struct] = ACTIONS(7598), - [anon_sym_union] = ACTIONS(7598), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7598), - [anon_sym_ATend] = ACTIONS(7600), - [sym_optional] = ACTIONS(7600), - [sym_required] = ACTIONS(7600), - [anon_sym_ATproperty] = ACTIONS(7600), - [sym_method_attribute_specifier] = ACTIONS(7598), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7598), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7598), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7598), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7598), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7598), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7598), - [anon_sym_NS_AVAILABLE] = ACTIONS(7598), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7598), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7598), - [anon_sym_API_AVAILABLE] = ACTIONS(7598), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7598), - [anon_sym_API_DEPRECATED] = ACTIONS(7598), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7598), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7598), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7598), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7598), - [anon_sym___deprecated_msg] = ACTIONS(7598), - [anon_sym___deprecated_enum_msg] = ACTIONS(7598), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7598), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7598), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7598), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7598), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7598), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7598), - [anon_sym_typeof] = ACTIONS(7598), - [anon_sym___typeof] = ACTIONS(7598), - [anon_sym___typeof__] = ACTIONS(7598), - [sym_id] = ACTIONS(7598), - [sym_instancetype] = ACTIONS(7598), - [sym_Class] = ACTIONS(7598), - [sym_SEL] = ACTIONS(7598), - [sym_IMP] = ACTIONS(7598), - [sym_BOOL] = ACTIONS(7598), - [sym_auto] = ACTIONS(7598), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3184] = { - [sym_identifier] = ACTIONS(7590), - [aux_sym_preproc_def_token1] = ACTIONS(7592), - [anon_sym_DASH] = ACTIONS(7592), - [anon_sym_PLUS] = ACTIONS(7592), - [anon_sym_typedef] = ACTIONS(7590), - [anon_sym_extern] = ACTIONS(7590), - [anon_sym___attribute] = ACTIONS(7590), - [anon_sym___attribute__] = ACTIONS(7590), - [anon_sym___declspec] = ACTIONS(7590), - [anon_sym_static] = ACTIONS(7590), - [anon_sym_auto] = ACTIONS(7590), - [anon_sym_register] = ACTIONS(7590), - [anon_sym_inline] = ACTIONS(7590), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7590), - [anon_sym_const] = ACTIONS(7590), - [anon_sym_volatile] = ACTIONS(7590), - [anon_sym_restrict] = ACTIONS(7590), - [anon_sym__Atomic] = ACTIONS(7590), - [anon_sym_in] = ACTIONS(7590), - [anon_sym_out] = ACTIONS(7590), - [anon_sym_inout] = ACTIONS(7590), - [anon_sym_bycopy] = ACTIONS(7590), - [anon_sym_byref] = ACTIONS(7590), - [anon_sym_oneway] = ACTIONS(7590), - [anon_sym__Nullable] = ACTIONS(7590), - [anon_sym__Nonnull] = ACTIONS(7590), - [anon_sym__Nullable_result] = ACTIONS(7590), - [anon_sym__Null_unspecified] = ACTIONS(7590), - [anon_sym___autoreleasing] = ACTIONS(7590), - [anon_sym___nullable] = ACTIONS(7590), - [anon_sym___nonnull] = ACTIONS(7590), - [anon_sym___strong] = ACTIONS(7590), - [anon_sym___weak] = ACTIONS(7590), - [anon_sym___bridge] = ACTIONS(7590), - [anon_sym___bridge_transfer] = ACTIONS(7590), - [anon_sym___bridge_retained] = ACTIONS(7590), - [anon_sym___unsafe_unretained] = ACTIONS(7590), - [anon_sym___block] = ACTIONS(7590), - [anon_sym___kindof] = ACTIONS(7590), - [anon_sym___unused] = ACTIONS(7590), - [anon_sym__Complex] = ACTIONS(7590), - [anon_sym___complex] = ACTIONS(7590), - [anon_sym_IBOutlet] = ACTIONS(7590), - [anon_sym_IBInspectable] = ACTIONS(7590), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7590), - [anon_sym_signed] = ACTIONS(7590), - [anon_sym_unsigned] = ACTIONS(7590), - [anon_sym_long] = ACTIONS(7590), - [anon_sym_short] = ACTIONS(7590), - [sym_primitive_type] = ACTIONS(7590), - [anon_sym_enum] = ACTIONS(7590), - [anon_sym_NS_ENUM] = ACTIONS(7590), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7590), - [anon_sym_NS_OPTIONS] = ACTIONS(7590), - [anon_sym_struct] = ACTIONS(7590), - [anon_sym_union] = ACTIONS(7590), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7590), - [anon_sym_ATend] = ACTIONS(7592), - [sym_optional] = ACTIONS(7592), - [sym_required] = ACTIONS(7592), - [anon_sym_ATproperty] = ACTIONS(7592), - [sym_method_attribute_specifier] = ACTIONS(7590), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7590), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7590), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7590), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7590), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7590), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7590), - [anon_sym_NS_AVAILABLE] = ACTIONS(7590), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7590), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7590), - [anon_sym_API_AVAILABLE] = ACTIONS(7590), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7590), - [anon_sym_API_DEPRECATED] = ACTIONS(7590), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7590), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7590), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7590), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7590), - [anon_sym___deprecated_msg] = ACTIONS(7590), - [anon_sym___deprecated_enum_msg] = ACTIONS(7590), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7590), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7590), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7590), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7590), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7590), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7590), - [anon_sym_typeof] = ACTIONS(7590), - [anon_sym___typeof] = ACTIONS(7590), - [anon_sym___typeof__] = ACTIONS(7590), - [sym_id] = ACTIONS(7590), - [sym_instancetype] = ACTIONS(7590), - [sym_Class] = ACTIONS(7590), - [sym_SEL] = ACTIONS(7590), - [sym_IMP] = ACTIONS(7590), - [sym_BOOL] = ACTIONS(7590), - [sym_auto] = ACTIONS(7590), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3185] = { - [sym_identifier] = ACTIONS(7594), - [aux_sym_preproc_def_token1] = ACTIONS(7596), - [anon_sym_DASH] = ACTIONS(7596), - [anon_sym_PLUS] = ACTIONS(7596), - [anon_sym_typedef] = ACTIONS(7594), - [anon_sym_extern] = ACTIONS(7594), - [anon_sym___attribute] = ACTIONS(7594), - [anon_sym___attribute__] = ACTIONS(7594), - [anon_sym___declspec] = ACTIONS(7594), - [anon_sym_static] = ACTIONS(7594), - [anon_sym_auto] = ACTIONS(7594), - [anon_sym_register] = ACTIONS(7594), - [anon_sym_inline] = ACTIONS(7594), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7594), - [anon_sym_const] = ACTIONS(7594), - [anon_sym_volatile] = ACTIONS(7594), - [anon_sym_restrict] = ACTIONS(7594), - [anon_sym__Atomic] = ACTIONS(7594), - [anon_sym_in] = ACTIONS(7594), - [anon_sym_out] = ACTIONS(7594), - [anon_sym_inout] = ACTIONS(7594), - [anon_sym_bycopy] = ACTIONS(7594), - [anon_sym_byref] = ACTIONS(7594), - [anon_sym_oneway] = ACTIONS(7594), - [anon_sym__Nullable] = ACTIONS(7594), - [anon_sym__Nonnull] = ACTIONS(7594), - [anon_sym__Nullable_result] = ACTIONS(7594), - [anon_sym__Null_unspecified] = ACTIONS(7594), - [anon_sym___autoreleasing] = ACTIONS(7594), - [anon_sym___nullable] = ACTIONS(7594), - [anon_sym___nonnull] = ACTIONS(7594), - [anon_sym___strong] = ACTIONS(7594), - [anon_sym___weak] = ACTIONS(7594), - [anon_sym___bridge] = ACTIONS(7594), - [anon_sym___bridge_transfer] = ACTIONS(7594), - [anon_sym___bridge_retained] = ACTIONS(7594), - [anon_sym___unsafe_unretained] = ACTIONS(7594), - [anon_sym___block] = ACTIONS(7594), - [anon_sym___kindof] = ACTIONS(7594), - [anon_sym___unused] = ACTIONS(7594), - [anon_sym__Complex] = ACTIONS(7594), - [anon_sym___complex] = ACTIONS(7594), - [anon_sym_IBOutlet] = ACTIONS(7594), - [anon_sym_IBInspectable] = ACTIONS(7594), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7594), - [anon_sym_signed] = ACTIONS(7594), - [anon_sym_unsigned] = ACTIONS(7594), - [anon_sym_long] = ACTIONS(7594), - [anon_sym_short] = ACTIONS(7594), - [sym_primitive_type] = ACTIONS(7594), - [anon_sym_enum] = ACTIONS(7594), - [anon_sym_NS_ENUM] = ACTIONS(7594), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7594), - [anon_sym_NS_OPTIONS] = ACTIONS(7594), - [anon_sym_struct] = ACTIONS(7594), - [anon_sym_union] = ACTIONS(7594), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7594), - [anon_sym_ATend] = ACTIONS(7596), - [sym_optional] = ACTIONS(7596), - [sym_required] = ACTIONS(7596), - [anon_sym_ATproperty] = ACTIONS(7596), - [sym_method_attribute_specifier] = ACTIONS(7594), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7594), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7594), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7594), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7594), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7594), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7594), - [anon_sym_NS_AVAILABLE] = ACTIONS(7594), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7594), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7594), - [anon_sym_API_AVAILABLE] = ACTIONS(7594), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7594), - [anon_sym_API_DEPRECATED] = ACTIONS(7594), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7594), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7594), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7594), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7594), - [anon_sym___deprecated_msg] = ACTIONS(7594), - [anon_sym___deprecated_enum_msg] = ACTIONS(7594), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7594), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7594), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7594), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7594), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7594), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7594), - [anon_sym_typeof] = ACTIONS(7594), - [anon_sym___typeof] = ACTIONS(7594), - [anon_sym___typeof__] = ACTIONS(7594), - [sym_id] = ACTIONS(7594), - [sym_instancetype] = ACTIONS(7594), - [sym_Class] = ACTIONS(7594), - [sym_SEL] = ACTIONS(7594), - [sym_IMP] = ACTIONS(7594), - [sym_BOOL] = ACTIONS(7594), - [sym_auto] = ACTIONS(7594), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3186] = { - [sym_identifier] = ACTIONS(7602), - [aux_sym_preproc_def_token1] = ACTIONS(7604), - [anon_sym_DASH] = ACTIONS(7604), - [anon_sym_PLUS] = ACTIONS(7604), - [anon_sym_typedef] = ACTIONS(7602), - [anon_sym_extern] = ACTIONS(7602), - [anon_sym___attribute] = ACTIONS(7602), - [anon_sym___attribute__] = ACTIONS(7602), - [anon_sym___declspec] = ACTIONS(7602), - [anon_sym_static] = ACTIONS(7602), - [anon_sym_auto] = ACTIONS(7602), - [anon_sym_register] = ACTIONS(7602), - [anon_sym_inline] = ACTIONS(7602), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7602), - [anon_sym_const] = ACTIONS(7602), - [anon_sym_volatile] = ACTIONS(7602), - [anon_sym_restrict] = ACTIONS(7602), - [anon_sym__Atomic] = ACTIONS(7602), - [anon_sym_in] = ACTIONS(7602), - [anon_sym_out] = ACTIONS(7602), - [anon_sym_inout] = ACTIONS(7602), - [anon_sym_bycopy] = ACTIONS(7602), - [anon_sym_byref] = ACTIONS(7602), - [anon_sym_oneway] = ACTIONS(7602), - [anon_sym__Nullable] = ACTIONS(7602), - [anon_sym__Nonnull] = ACTIONS(7602), - [anon_sym__Nullable_result] = ACTIONS(7602), - [anon_sym__Null_unspecified] = ACTIONS(7602), - [anon_sym___autoreleasing] = ACTIONS(7602), - [anon_sym___nullable] = ACTIONS(7602), - [anon_sym___nonnull] = ACTIONS(7602), - [anon_sym___strong] = ACTIONS(7602), - [anon_sym___weak] = ACTIONS(7602), - [anon_sym___bridge] = ACTIONS(7602), - [anon_sym___bridge_transfer] = ACTIONS(7602), - [anon_sym___bridge_retained] = ACTIONS(7602), - [anon_sym___unsafe_unretained] = ACTIONS(7602), - [anon_sym___block] = ACTIONS(7602), - [anon_sym___kindof] = ACTIONS(7602), - [anon_sym___unused] = ACTIONS(7602), - [anon_sym__Complex] = ACTIONS(7602), - [anon_sym___complex] = ACTIONS(7602), - [anon_sym_IBOutlet] = ACTIONS(7602), - [anon_sym_IBInspectable] = ACTIONS(7602), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7602), + [sym_attribute_specifier] = STATE(3737), + [sym_type_qualifier] = STATE(3741), + [sym__type_specifier] = STATE(3533), + [sym_sized_type_specifier] = STATE(3533), + [sym_enum_specifier] = STATE(3533), + [sym_struct_specifier] = STATE(3533), + [sym_union_specifier] = STATE(3533), + [sym_macro_type_specifier] = STATE(3533), + [sym_property_attributes] = STATE(3156), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3882), + [sym_availability_attribute_specifier] = STATE(3882), + [sym_ns_enum_specifier] = STATE(3533), + [sym_typeof_specifier] = STATE(3533), + [sym_atomic_specifier] = STATE(3533), + [sym_generic_type_specifier] = STATE(3533), + [aux_sym_type_definition_repeat1] = STATE(3741), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_LPAREN2] = ACTIONS(7598), + [anon_sym___attribute] = ACTIONS(7600), + [anon_sym___attribute__] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), [anon_sym_signed] = ACTIONS(7602), [anon_sym_unsigned] = ACTIONS(7602), [anon_sym_long] = ACTIONS(7602), [anon_sym_short] = ACTIONS(7602), - [sym_primitive_type] = ACTIONS(7602), - [anon_sym_enum] = ACTIONS(7602), - [anon_sym_NS_ENUM] = ACTIONS(7602), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7602), - [anon_sym_NS_OPTIONS] = ACTIONS(7602), - [anon_sym_struct] = ACTIONS(7602), - [anon_sym_union] = ACTIONS(7602), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7602), - [anon_sym_ATend] = ACTIONS(7604), - [sym_optional] = ACTIONS(7604), - [sym_required] = ACTIONS(7604), - [anon_sym_ATproperty] = ACTIONS(7604), - [sym_method_attribute_specifier] = ACTIONS(7602), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7602), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7602), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7602), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7602), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7602), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7602), - [anon_sym_NS_AVAILABLE] = ACTIONS(7602), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7602), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7602), - [anon_sym_API_AVAILABLE] = ACTIONS(7602), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7602), - [anon_sym_API_DEPRECATED] = ACTIONS(7602), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7602), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7602), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7602), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7602), - [anon_sym___deprecated_msg] = ACTIONS(7602), - [anon_sym___deprecated_enum_msg] = ACTIONS(7602), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7602), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7602), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7602), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7602), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7602), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7602), - [anon_sym_typeof] = ACTIONS(7602), - [anon_sym___typeof] = ACTIONS(7602), - [anon_sym___typeof__] = ACTIONS(7602), - [sym_id] = ACTIONS(7602), - [sym_instancetype] = ACTIONS(7602), - [sym_Class] = ACTIONS(7602), - [sym_SEL] = ACTIONS(7602), - [sym_IMP] = ACTIONS(7602), - [sym_BOOL] = ACTIONS(7602), - [sym_auto] = ACTIONS(7602), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3187] = { - [sym_identifier] = ACTIONS(7606), - [aux_sym_preproc_def_token1] = ACTIONS(7608), - [anon_sym_DASH] = ACTIONS(7608), - [anon_sym_PLUS] = ACTIONS(7608), - [anon_sym_typedef] = ACTIONS(7606), - [anon_sym_extern] = ACTIONS(7606), - [anon_sym___attribute] = ACTIONS(7606), - [anon_sym___attribute__] = ACTIONS(7606), - [anon_sym___declspec] = ACTIONS(7606), - [anon_sym_static] = ACTIONS(7606), - [anon_sym_auto] = ACTIONS(7606), - [anon_sym_register] = ACTIONS(7606), - [anon_sym_inline] = ACTIONS(7606), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7606), - [anon_sym_const] = ACTIONS(7606), - [anon_sym_volatile] = ACTIONS(7606), - [anon_sym_restrict] = ACTIONS(7606), - [anon_sym__Atomic] = ACTIONS(7606), - [anon_sym_in] = ACTIONS(7606), - [anon_sym_out] = ACTIONS(7606), - [anon_sym_inout] = ACTIONS(7606), - [anon_sym_bycopy] = ACTIONS(7606), - [anon_sym_byref] = ACTIONS(7606), - [anon_sym_oneway] = ACTIONS(7606), - [anon_sym__Nullable] = ACTIONS(7606), - [anon_sym__Nonnull] = ACTIONS(7606), - [anon_sym__Nullable_result] = ACTIONS(7606), - [anon_sym__Null_unspecified] = ACTIONS(7606), - [anon_sym___autoreleasing] = ACTIONS(7606), - [anon_sym___nullable] = ACTIONS(7606), - [anon_sym___nonnull] = ACTIONS(7606), - [anon_sym___strong] = ACTIONS(7606), - [anon_sym___weak] = ACTIONS(7606), - [anon_sym___bridge] = ACTIONS(7606), - [anon_sym___bridge_transfer] = ACTIONS(7606), - [anon_sym___bridge_retained] = ACTIONS(7606), - [anon_sym___unsafe_unretained] = ACTIONS(7606), - [anon_sym___block] = ACTIONS(7606), - [anon_sym___kindof] = ACTIONS(7606), - [anon_sym___unused] = ACTIONS(7606), - [anon_sym__Complex] = ACTIONS(7606), - [anon_sym___complex] = ACTIONS(7606), - [anon_sym_IBOutlet] = ACTIONS(7606), - [anon_sym_IBInspectable] = ACTIONS(7606), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7606), - [anon_sym_signed] = ACTIONS(7606), - [anon_sym_unsigned] = ACTIONS(7606), - [anon_sym_long] = ACTIONS(7606), - [anon_sym_short] = ACTIONS(7606), - [sym_primitive_type] = ACTIONS(7606), + [sym_primitive_type] = ACTIONS(7604), [anon_sym_enum] = ACTIONS(7606), - [anon_sym_NS_ENUM] = ACTIONS(7606), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7606), - [anon_sym_NS_OPTIONS] = ACTIONS(7606), - [anon_sym_struct] = ACTIONS(7606), - [anon_sym_union] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7606), - [anon_sym_ATend] = ACTIONS(7608), - [sym_optional] = ACTIONS(7608), - [sym_required] = ACTIONS(7608), - [anon_sym_ATproperty] = ACTIONS(7608), - [sym_method_attribute_specifier] = ACTIONS(7606), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7606), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7606), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7606), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7606), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7606), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7606), - [anon_sym_NS_AVAILABLE] = ACTIONS(7606), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7606), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7606), - [anon_sym_API_AVAILABLE] = ACTIONS(7606), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7606), - [anon_sym_API_DEPRECATED] = ACTIONS(7606), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7606), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7606), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7606), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7606), - [anon_sym___deprecated_msg] = ACTIONS(7606), - [anon_sym___deprecated_enum_msg] = ACTIONS(7606), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7606), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7606), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7606), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7606), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7606), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7606), - [anon_sym_typeof] = ACTIONS(7606), - [anon_sym___typeof] = ACTIONS(7606), - [anon_sym___typeof__] = ACTIONS(7606), - [sym_id] = ACTIONS(7606), - [sym_instancetype] = ACTIONS(7606), - [sym_Class] = ACTIONS(7606), - [sym_SEL] = ACTIONS(7606), - [sym_IMP] = ACTIONS(7606), - [sym_BOOL] = ACTIONS(7606), - [sym_auto] = ACTIONS(7606), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3188] = { - [sym_identifier] = ACTIONS(7610), - [aux_sym_preproc_def_token1] = ACTIONS(7612), - [anon_sym_DASH] = ACTIONS(7612), - [anon_sym_PLUS] = ACTIONS(7612), - [anon_sym_typedef] = ACTIONS(7610), - [anon_sym_extern] = ACTIONS(7610), - [anon_sym___attribute] = ACTIONS(7610), - [anon_sym___attribute__] = ACTIONS(7610), - [anon_sym___declspec] = ACTIONS(7610), - [anon_sym_static] = ACTIONS(7610), - [anon_sym_auto] = ACTIONS(7610), - [anon_sym_register] = ACTIONS(7610), - [anon_sym_inline] = ACTIONS(7610), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7610), - [anon_sym_const] = ACTIONS(7610), - [anon_sym_volatile] = ACTIONS(7610), - [anon_sym_restrict] = ACTIONS(7610), - [anon_sym__Atomic] = ACTIONS(7610), - [anon_sym_in] = ACTIONS(7610), - [anon_sym_out] = ACTIONS(7610), - [anon_sym_inout] = ACTIONS(7610), - [anon_sym_bycopy] = ACTIONS(7610), - [anon_sym_byref] = ACTIONS(7610), - [anon_sym_oneway] = ACTIONS(7610), - [anon_sym__Nullable] = ACTIONS(7610), - [anon_sym__Nonnull] = ACTIONS(7610), - [anon_sym__Nullable_result] = ACTIONS(7610), - [anon_sym__Null_unspecified] = ACTIONS(7610), - [anon_sym___autoreleasing] = ACTIONS(7610), - [anon_sym___nullable] = ACTIONS(7610), - [anon_sym___nonnull] = ACTIONS(7610), - [anon_sym___strong] = ACTIONS(7610), - [anon_sym___weak] = ACTIONS(7610), - [anon_sym___bridge] = ACTIONS(7610), - [anon_sym___bridge_transfer] = ACTIONS(7610), - [anon_sym___bridge_retained] = ACTIONS(7610), - [anon_sym___unsafe_unretained] = ACTIONS(7610), - [anon_sym___block] = ACTIONS(7610), - [anon_sym___kindof] = ACTIONS(7610), - [anon_sym___unused] = ACTIONS(7610), - [anon_sym__Complex] = ACTIONS(7610), - [anon_sym___complex] = ACTIONS(7610), - [anon_sym_IBOutlet] = ACTIONS(7610), - [anon_sym_IBInspectable] = ACTIONS(7610), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7610), - [anon_sym_signed] = ACTIONS(7610), - [anon_sym_unsigned] = ACTIONS(7610), - [anon_sym_long] = ACTIONS(7610), - [anon_sym_short] = ACTIONS(7610), - [sym_primitive_type] = ACTIONS(7610), - [anon_sym_enum] = ACTIONS(7610), - [anon_sym_NS_ENUM] = ACTIONS(7610), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7610), - [anon_sym_NS_OPTIONS] = ACTIONS(7610), - [anon_sym_struct] = ACTIONS(7610), - [anon_sym_union] = ACTIONS(7610), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7610), - [anon_sym_ATend] = ACTIONS(7612), - [sym_optional] = ACTIONS(7612), - [sym_required] = ACTIONS(7612), - [anon_sym_ATproperty] = ACTIONS(7612), - [sym_method_attribute_specifier] = ACTIONS(7610), + [sym_method_attribute_specifier] = ACTIONS(7608), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7610), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7610), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7610), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7610), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7610), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7610), - [anon_sym_NS_AVAILABLE] = ACTIONS(7610), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7610), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7610), - [anon_sym_API_AVAILABLE] = ACTIONS(7610), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7610), - [anon_sym_API_DEPRECATED] = ACTIONS(7610), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7610), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7610), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7610), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7610), - [anon_sym___deprecated_msg] = ACTIONS(7610), - [anon_sym___deprecated_enum_msg] = ACTIONS(7610), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7610), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7610), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7610), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7610), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7610), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7610), - [anon_sym_typeof] = ACTIONS(7610), - [anon_sym___typeof] = ACTIONS(7610), - [anon_sym___typeof__] = ACTIONS(7610), - [sym_id] = ACTIONS(7610), - [sym_instancetype] = ACTIONS(7610), - [sym_Class] = ACTIONS(7610), - [sym_SEL] = ACTIONS(7610), - [sym_IMP] = ACTIONS(7610), - [sym_BOOL] = ACTIONS(7610), - [sym_auto] = ACTIONS(7610), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3189] = { - [sym_identifier] = ACTIONS(7614), - [aux_sym_preproc_def_token1] = ACTIONS(7616), - [anon_sym_DASH] = ACTIONS(7616), - [anon_sym_PLUS] = ACTIONS(7616), - [anon_sym_typedef] = ACTIONS(7614), - [anon_sym_extern] = ACTIONS(7614), - [anon_sym___attribute] = ACTIONS(7614), - [anon_sym___attribute__] = ACTIONS(7614), - [anon_sym___declspec] = ACTIONS(7614), - [anon_sym_static] = ACTIONS(7614), - [anon_sym_auto] = ACTIONS(7614), - [anon_sym_register] = ACTIONS(7614), - [anon_sym_inline] = ACTIONS(7614), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7614), - [anon_sym_const] = ACTIONS(7614), - [anon_sym_volatile] = ACTIONS(7614), - [anon_sym_restrict] = ACTIONS(7614), - [anon_sym__Atomic] = ACTIONS(7614), - [anon_sym_in] = ACTIONS(7614), - [anon_sym_out] = ACTIONS(7614), - [anon_sym_inout] = ACTIONS(7614), - [anon_sym_bycopy] = ACTIONS(7614), - [anon_sym_byref] = ACTIONS(7614), - [anon_sym_oneway] = ACTIONS(7614), - [anon_sym__Nullable] = ACTIONS(7614), - [anon_sym__Nonnull] = ACTIONS(7614), - [anon_sym__Nullable_result] = ACTIONS(7614), - [anon_sym__Null_unspecified] = ACTIONS(7614), - [anon_sym___autoreleasing] = ACTIONS(7614), - [anon_sym___nullable] = ACTIONS(7614), - [anon_sym___nonnull] = ACTIONS(7614), - [anon_sym___strong] = ACTIONS(7614), - [anon_sym___weak] = ACTIONS(7614), - [anon_sym___bridge] = ACTIONS(7614), - [anon_sym___bridge_transfer] = ACTIONS(7614), - [anon_sym___bridge_retained] = ACTIONS(7614), - [anon_sym___unsafe_unretained] = ACTIONS(7614), - [anon_sym___block] = ACTIONS(7614), - [anon_sym___kindof] = ACTIONS(7614), - [anon_sym___unused] = ACTIONS(7614), - [anon_sym__Complex] = ACTIONS(7614), - [anon_sym___complex] = ACTIONS(7614), - [anon_sym_IBOutlet] = ACTIONS(7614), - [anon_sym_IBInspectable] = ACTIONS(7614), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7614), - [anon_sym_signed] = ACTIONS(7614), - [anon_sym_unsigned] = ACTIONS(7614), - [anon_sym_long] = ACTIONS(7614), - [anon_sym_short] = ACTIONS(7614), - [sym_primitive_type] = ACTIONS(7614), - [anon_sym_enum] = ACTIONS(7614), - [anon_sym_NS_ENUM] = ACTIONS(7614), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7614), - [anon_sym_NS_OPTIONS] = ACTIONS(7614), - [anon_sym_struct] = ACTIONS(7614), - [anon_sym_union] = ACTIONS(7614), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7614), - [anon_sym_ATend] = ACTIONS(7616), - [sym_optional] = ACTIONS(7616), - [sym_required] = ACTIONS(7616), - [anon_sym_ATproperty] = ACTIONS(7616), - [sym_method_attribute_specifier] = ACTIONS(7614), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7614), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7614), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7614), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7614), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7614), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7614), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7612), [anon_sym_NS_AVAILABLE] = ACTIONS(7614), [anon_sym___IOS_AVAILABLE] = ACTIONS(7614), [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7614), @@ -511796,18 +504404,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7614), [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7614), [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7614), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7614), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7614), - [anon_sym_typeof] = ACTIONS(7614), - [anon_sym___typeof] = ACTIONS(7614), - [anon_sym___typeof__] = ACTIONS(7614), - [sym_id] = ACTIONS(7614), - [sym_instancetype] = ACTIONS(7614), - [sym_Class] = ACTIONS(7614), - [sym_SEL] = ACTIONS(7614), - [sym_IMP] = ACTIONS(7614), - [sym_BOOL] = ACTIONS(7614), - [sym_auto] = ACTIONS(7614), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7604), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7604), + [sym_IMP] = ACTIONS(7604), + [sym_BOOL] = ACTIONS(7604), + [sym_auto] = ACTIONS(7604), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -511815,104 +504424,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3190] = { - [sym_identifier] = ACTIONS(7618), - [aux_sym_preproc_def_token1] = ACTIONS(7620), - [anon_sym_DASH] = ACTIONS(7620), - [anon_sym_PLUS] = ACTIONS(7620), - [anon_sym_typedef] = ACTIONS(7618), - [anon_sym_extern] = ACTIONS(7618), - [anon_sym___attribute] = ACTIONS(7618), - [anon_sym___attribute__] = ACTIONS(7618), - [anon_sym___declspec] = ACTIONS(7618), - [anon_sym_static] = ACTIONS(7618), - [anon_sym_auto] = ACTIONS(7618), - [anon_sym_register] = ACTIONS(7618), - [anon_sym_inline] = ACTIONS(7618), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7618), - [anon_sym_const] = ACTIONS(7618), - [anon_sym_volatile] = ACTIONS(7618), - [anon_sym_restrict] = ACTIONS(7618), - [anon_sym__Atomic] = ACTIONS(7618), - [anon_sym_in] = ACTIONS(7618), - [anon_sym_out] = ACTIONS(7618), - [anon_sym_inout] = ACTIONS(7618), - [anon_sym_bycopy] = ACTIONS(7618), - [anon_sym_byref] = ACTIONS(7618), - [anon_sym_oneway] = ACTIONS(7618), - [anon_sym__Nullable] = ACTIONS(7618), - [anon_sym__Nonnull] = ACTIONS(7618), - [anon_sym__Nullable_result] = ACTIONS(7618), - [anon_sym__Null_unspecified] = ACTIONS(7618), - [anon_sym___autoreleasing] = ACTIONS(7618), - [anon_sym___nullable] = ACTIONS(7618), - [anon_sym___nonnull] = ACTIONS(7618), - [anon_sym___strong] = ACTIONS(7618), - [anon_sym___weak] = ACTIONS(7618), - [anon_sym___bridge] = ACTIONS(7618), - [anon_sym___bridge_transfer] = ACTIONS(7618), - [anon_sym___bridge_retained] = ACTIONS(7618), - [anon_sym___unsafe_unretained] = ACTIONS(7618), - [anon_sym___block] = ACTIONS(7618), - [anon_sym___kindof] = ACTIONS(7618), - [anon_sym___unused] = ACTIONS(7618), - [anon_sym__Complex] = ACTIONS(7618), - [anon_sym___complex] = ACTIONS(7618), - [anon_sym_IBOutlet] = ACTIONS(7618), - [anon_sym_IBInspectable] = ACTIONS(7618), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7618), - [anon_sym_signed] = ACTIONS(7618), - [anon_sym_unsigned] = ACTIONS(7618), - [anon_sym_long] = ACTIONS(7618), - [anon_sym_short] = ACTIONS(7618), - [sym_primitive_type] = ACTIONS(7618), - [anon_sym_enum] = ACTIONS(7618), - [anon_sym_NS_ENUM] = ACTIONS(7618), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7618), - [anon_sym_NS_OPTIONS] = ACTIONS(7618), - [anon_sym_struct] = ACTIONS(7618), - [anon_sym_union] = ACTIONS(7618), + [3140] = { + [sym_identifier] = ACTIONS(7616), + [aux_sym_preproc_def_token1] = ACTIONS(7618), + [anon_sym_DASH] = ACTIONS(7618), + [anon_sym_PLUS] = ACTIONS(7618), + [anon_sym_typedef] = ACTIONS(7616), + [anon_sym_extern] = ACTIONS(7616), + [anon_sym___attribute] = ACTIONS(7616), + [anon_sym___attribute__] = ACTIONS(7616), + [anon_sym___declspec] = ACTIONS(7616), + [anon_sym_static] = ACTIONS(7616), + [anon_sym_auto] = ACTIONS(7616), + [anon_sym_register] = ACTIONS(7616), + [anon_sym_inline] = ACTIONS(7616), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7616), + [anon_sym_const] = ACTIONS(7616), + [anon_sym_volatile] = ACTIONS(7616), + [anon_sym_restrict] = ACTIONS(7616), + [anon_sym__Atomic] = ACTIONS(7616), + [anon_sym_in] = ACTIONS(7616), + [anon_sym_out] = ACTIONS(7616), + [anon_sym_inout] = ACTIONS(7616), + [anon_sym_bycopy] = ACTIONS(7616), + [anon_sym_byref] = ACTIONS(7616), + [anon_sym_oneway] = ACTIONS(7616), + [anon_sym__Nullable] = ACTIONS(7616), + [anon_sym__Nonnull] = ACTIONS(7616), + [anon_sym__Nullable_result] = ACTIONS(7616), + [anon_sym__Null_unspecified] = ACTIONS(7616), + [anon_sym___autoreleasing] = ACTIONS(7616), + [anon_sym___nullable] = ACTIONS(7616), + [anon_sym___nonnull] = ACTIONS(7616), + [anon_sym___strong] = ACTIONS(7616), + [anon_sym___weak] = ACTIONS(7616), + [anon_sym___bridge] = ACTIONS(7616), + [anon_sym___bridge_transfer] = ACTIONS(7616), + [anon_sym___bridge_retained] = ACTIONS(7616), + [anon_sym___unsafe_unretained] = ACTIONS(7616), + [anon_sym___block] = ACTIONS(7616), + [anon_sym___kindof] = ACTIONS(7616), + [anon_sym___unused] = ACTIONS(7616), + [anon_sym__Complex] = ACTIONS(7616), + [anon_sym___complex] = ACTIONS(7616), + [anon_sym_IBOutlet] = ACTIONS(7616), + [anon_sym_IBInspectable] = ACTIONS(7616), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7616), + [anon_sym_signed] = ACTIONS(7616), + [anon_sym_unsigned] = ACTIONS(7616), + [anon_sym_long] = ACTIONS(7616), + [anon_sym_short] = ACTIONS(7616), + [sym_primitive_type] = ACTIONS(7616), + [anon_sym_enum] = ACTIONS(7616), + [anon_sym_struct] = ACTIONS(7616), + [anon_sym_union] = ACTIONS(7616), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7618), - [anon_sym_ATend] = ACTIONS(7620), - [sym_optional] = ACTIONS(7620), - [sym_required] = ACTIONS(7620), - [anon_sym_ATproperty] = ACTIONS(7620), - [sym_method_attribute_specifier] = ACTIONS(7618), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7618), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7618), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7618), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7618), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7618), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7618), - [anon_sym_NS_AVAILABLE] = ACTIONS(7618), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7618), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7618), - [anon_sym_API_AVAILABLE] = ACTIONS(7618), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7618), - [anon_sym_API_DEPRECATED] = ACTIONS(7618), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7618), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7618), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7618), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7618), - [anon_sym___deprecated_msg] = ACTIONS(7618), - [anon_sym___deprecated_enum_msg] = ACTIONS(7618), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7618), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7618), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7618), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7618), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7618), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7618), - [anon_sym_typeof] = ACTIONS(7618), - [anon_sym___typeof] = ACTIONS(7618), - [anon_sym___typeof__] = ACTIONS(7618), - [sym_id] = ACTIONS(7618), - [sym_instancetype] = ACTIONS(7618), - [sym_Class] = ACTIONS(7618), - [sym_SEL] = ACTIONS(7618), - [sym_IMP] = ACTIONS(7618), - [sym_BOOL] = ACTIONS(7618), - [sym_auto] = ACTIONS(7618), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7616), + [anon_sym_ATend] = ACTIONS(7618), + [sym_optional] = ACTIONS(7618), + [sym_required] = ACTIONS(7618), + [anon_sym_ATproperty] = ACTIONS(7618), + [sym_method_attribute_specifier] = ACTIONS(7616), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7616), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7616), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7616), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7616), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7616), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7616), + [anon_sym_NS_AVAILABLE] = ACTIONS(7616), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7616), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7616), + [anon_sym_API_AVAILABLE] = ACTIONS(7616), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7616), + [anon_sym_API_DEPRECATED] = ACTIONS(7616), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7616), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7616), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7616), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7616), + [anon_sym___deprecated_msg] = ACTIONS(7616), + [anon_sym___deprecated_enum_msg] = ACTIONS(7616), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7616), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7616), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7616), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7616), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7616), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7616), + [anon_sym_NS_ENUM] = ACTIONS(7616), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7616), + [anon_sym_NS_OPTIONS] = ACTIONS(7616), + [anon_sym_typeof] = ACTIONS(7616), + [anon_sym___typeof] = ACTIONS(7616), + [anon_sym___typeof__] = ACTIONS(7616), + [sym_id] = ACTIONS(7616), + [sym_instancetype] = ACTIONS(7616), + [sym_Class] = ACTIONS(7616), + [sym_SEL] = ACTIONS(7616), + [sym_IMP] = ACTIONS(7616), + [sym_BOOL] = ACTIONS(7616), + [sym_auto] = ACTIONS(7616), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -511920,104 +504529,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3191] = { - [sym_identifier] = ACTIONS(7622), - [aux_sym_preproc_def_token1] = ACTIONS(7624), - [anon_sym_DASH] = ACTIONS(7624), - [anon_sym_PLUS] = ACTIONS(7624), - [anon_sym_typedef] = ACTIONS(7622), - [anon_sym_extern] = ACTIONS(7622), - [anon_sym___attribute] = ACTIONS(7622), - [anon_sym___attribute__] = ACTIONS(7622), - [anon_sym___declspec] = ACTIONS(7622), - [anon_sym_static] = ACTIONS(7622), - [anon_sym_auto] = ACTIONS(7622), - [anon_sym_register] = ACTIONS(7622), - [anon_sym_inline] = ACTIONS(7622), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7622), - [anon_sym_const] = ACTIONS(7622), - [anon_sym_volatile] = ACTIONS(7622), - [anon_sym_restrict] = ACTIONS(7622), - [anon_sym__Atomic] = ACTIONS(7622), - [anon_sym_in] = ACTIONS(7622), - [anon_sym_out] = ACTIONS(7622), - [anon_sym_inout] = ACTIONS(7622), - [anon_sym_bycopy] = ACTIONS(7622), - [anon_sym_byref] = ACTIONS(7622), - [anon_sym_oneway] = ACTIONS(7622), - [anon_sym__Nullable] = ACTIONS(7622), - [anon_sym__Nonnull] = ACTIONS(7622), - [anon_sym__Nullable_result] = ACTIONS(7622), - [anon_sym__Null_unspecified] = ACTIONS(7622), - [anon_sym___autoreleasing] = ACTIONS(7622), - [anon_sym___nullable] = ACTIONS(7622), - [anon_sym___nonnull] = ACTIONS(7622), - [anon_sym___strong] = ACTIONS(7622), - [anon_sym___weak] = ACTIONS(7622), - [anon_sym___bridge] = ACTIONS(7622), - [anon_sym___bridge_transfer] = ACTIONS(7622), - [anon_sym___bridge_retained] = ACTIONS(7622), - [anon_sym___unsafe_unretained] = ACTIONS(7622), - [anon_sym___block] = ACTIONS(7622), - [anon_sym___kindof] = ACTIONS(7622), - [anon_sym___unused] = ACTIONS(7622), - [anon_sym__Complex] = ACTIONS(7622), - [anon_sym___complex] = ACTIONS(7622), - [anon_sym_IBOutlet] = ACTIONS(7622), - [anon_sym_IBInspectable] = ACTIONS(7622), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7622), - [anon_sym_signed] = ACTIONS(7622), - [anon_sym_unsigned] = ACTIONS(7622), - [anon_sym_long] = ACTIONS(7622), - [anon_sym_short] = ACTIONS(7622), - [sym_primitive_type] = ACTIONS(7622), - [anon_sym_enum] = ACTIONS(7622), - [anon_sym_NS_ENUM] = ACTIONS(7622), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7622), - [anon_sym_NS_OPTIONS] = ACTIONS(7622), - [anon_sym_struct] = ACTIONS(7622), - [anon_sym_union] = ACTIONS(7622), + [3141] = { + [sym_identifier] = ACTIONS(7620), + [aux_sym_preproc_def_token1] = ACTIONS(7622), + [anon_sym_DASH] = ACTIONS(7622), + [anon_sym_PLUS] = ACTIONS(7622), + [anon_sym_typedef] = ACTIONS(7620), + [anon_sym_extern] = ACTIONS(7620), + [anon_sym___attribute] = ACTIONS(7620), + [anon_sym___attribute__] = ACTIONS(7620), + [anon_sym___declspec] = ACTIONS(7620), + [anon_sym_static] = ACTIONS(7620), + [anon_sym_auto] = ACTIONS(7620), + [anon_sym_register] = ACTIONS(7620), + [anon_sym_inline] = ACTIONS(7620), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7620), + [anon_sym_const] = ACTIONS(7620), + [anon_sym_volatile] = ACTIONS(7620), + [anon_sym_restrict] = ACTIONS(7620), + [anon_sym__Atomic] = ACTIONS(7620), + [anon_sym_in] = ACTIONS(7620), + [anon_sym_out] = ACTIONS(7620), + [anon_sym_inout] = ACTIONS(7620), + [anon_sym_bycopy] = ACTIONS(7620), + [anon_sym_byref] = ACTIONS(7620), + [anon_sym_oneway] = ACTIONS(7620), + [anon_sym__Nullable] = ACTIONS(7620), + [anon_sym__Nonnull] = ACTIONS(7620), + [anon_sym__Nullable_result] = ACTIONS(7620), + [anon_sym__Null_unspecified] = ACTIONS(7620), + [anon_sym___autoreleasing] = ACTIONS(7620), + [anon_sym___nullable] = ACTIONS(7620), + [anon_sym___nonnull] = ACTIONS(7620), + [anon_sym___strong] = ACTIONS(7620), + [anon_sym___weak] = ACTIONS(7620), + [anon_sym___bridge] = ACTIONS(7620), + [anon_sym___bridge_transfer] = ACTIONS(7620), + [anon_sym___bridge_retained] = ACTIONS(7620), + [anon_sym___unsafe_unretained] = ACTIONS(7620), + [anon_sym___block] = ACTIONS(7620), + [anon_sym___kindof] = ACTIONS(7620), + [anon_sym___unused] = ACTIONS(7620), + [anon_sym__Complex] = ACTIONS(7620), + [anon_sym___complex] = ACTIONS(7620), + [anon_sym_IBOutlet] = ACTIONS(7620), + [anon_sym_IBInspectable] = ACTIONS(7620), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7620), + [anon_sym_signed] = ACTIONS(7620), + [anon_sym_unsigned] = ACTIONS(7620), + [anon_sym_long] = ACTIONS(7620), + [anon_sym_short] = ACTIONS(7620), + [sym_primitive_type] = ACTIONS(7620), + [anon_sym_enum] = ACTIONS(7620), + [anon_sym_struct] = ACTIONS(7620), + [anon_sym_union] = ACTIONS(7620), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7622), - [anon_sym_ATend] = ACTIONS(7624), - [sym_optional] = ACTIONS(7624), - [sym_required] = ACTIONS(7624), - [anon_sym_ATproperty] = ACTIONS(7624), - [sym_method_attribute_specifier] = ACTIONS(7622), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7622), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7622), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7622), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7622), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7622), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7622), - [anon_sym_NS_AVAILABLE] = ACTIONS(7622), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7622), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7622), - [anon_sym_API_AVAILABLE] = ACTIONS(7622), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7622), - [anon_sym_API_DEPRECATED] = ACTIONS(7622), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7622), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7622), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7622), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7622), - [anon_sym___deprecated_msg] = ACTIONS(7622), - [anon_sym___deprecated_enum_msg] = ACTIONS(7622), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7622), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7622), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7622), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7622), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7622), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7622), - [anon_sym_typeof] = ACTIONS(7622), - [anon_sym___typeof] = ACTIONS(7622), - [anon_sym___typeof__] = ACTIONS(7622), - [sym_id] = ACTIONS(7622), - [sym_instancetype] = ACTIONS(7622), - [sym_Class] = ACTIONS(7622), - [sym_SEL] = ACTIONS(7622), - [sym_IMP] = ACTIONS(7622), - [sym_BOOL] = ACTIONS(7622), - [sym_auto] = ACTIONS(7622), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7620), + [anon_sym_ATend] = ACTIONS(7622), + [sym_optional] = ACTIONS(7622), + [sym_required] = ACTIONS(7622), + [anon_sym_ATproperty] = ACTIONS(7622), + [sym_method_attribute_specifier] = ACTIONS(7620), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7620), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7620), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7620), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7620), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7620), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7620), + [anon_sym_NS_AVAILABLE] = ACTIONS(7620), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7620), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7620), + [anon_sym_API_AVAILABLE] = ACTIONS(7620), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7620), + [anon_sym_API_DEPRECATED] = ACTIONS(7620), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7620), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7620), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7620), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7620), + [anon_sym___deprecated_msg] = ACTIONS(7620), + [anon_sym___deprecated_enum_msg] = ACTIONS(7620), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7620), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7620), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7620), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7620), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7620), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7620), + [anon_sym_NS_ENUM] = ACTIONS(7620), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7620), + [anon_sym_NS_OPTIONS] = ACTIONS(7620), + [anon_sym_typeof] = ACTIONS(7620), + [anon_sym___typeof] = ACTIONS(7620), + [anon_sym___typeof__] = ACTIONS(7620), + [sym_id] = ACTIONS(7620), + [sym_instancetype] = ACTIONS(7620), + [sym_Class] = ACTIONS(7620), + [sym_SEL] = ACTIONS(7620), + [sym_IMP] = ACTIONS(7620), + [sym_BOOL] = ACTIONS(7620), + [sym_auto] = ACTIONS(7620), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -512025,104 +504634,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3192] = { - [sym_identifier] = ACTIONS(7626), - [aux_sym_preproc_def_token1] = ACTIONS(7628), - [anon_sym_DASH] = ACTIONS(7628), - [anon_sym_PLUS] = ACTIONS(7628), - [anon_sym_typedef] = ACTIONS(7626), - [anon_sym_extern] = ACTIONS(7626), - [anon_sym___attribute] = ACTIONS(7626), - [anon_sym___attribute__] = ACTIONS(7626), - [anon_sym___declspec] = ACTIONS(7626), - [anon_sym_static] = ACTIONS(7626), - [anon_sym_auto] = ACTIONS(7626), - [anon_sym_register] = ACTIONS(7626), - [anon_sym_inline] = ACTIONS(7626), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7626), - [anon_sym_const] = ACTIONS(7626), - [anon_sym_volatile] = ACTIONS(7626), - [anon_sym_restrict] = ACTIONS(7626), - [anon_sym__Atomic] = ACTIONS(7626), - [anon_sym_in] = ACTIONS(7626), - [anon_sym_out] = ACTIONS(7626), - [anon_sym_inout] = ACTIONS(7626), - [anon_sym_bycopy] = ACTIONS(7626), - [anon_sym_byref] = ACTIONS(7626), - [anon_sym_oneway] = ACTIONS(7626), - [anon_sym__Nullable] = ACTIONS(7626), - [anon_sym__Nonnull] = ACTIONS(7626), - [anon_sym__Nullable_result] = ACTIONS(7626), - [anon_sym__Null_unspecified] = ACTIONS(7626), - [anon_sym___autoreleasing] = ACTIONS(7626), - [anon_sym___nullable] = ACTIONS(7626), - [anon_sym___nonnull] = ACTIONS(7626), - [anon_sym___strong] = ACTIONS(7626), - [anon_sym___weak] = ACTIONS(7626), - [anon_sym___bridge] = ACTIONS(7626), - [anon_sym___bridge_transfer] = ACTIONS(7626), - [anon_sym___bridge_retained] = ACTIONS(7626), - [anon_sym___unsafe_unretained] = ACTIONS(7626), - [anon_sym___block] = ACTIONS(7626), - [anon_sym___kindof] = ACTIONS(7626), - [anon_sym___unused] = ACTIONS(7626), - [anon_sym__Complex] = ACTIONS(7626), - [anon_sym___complex] = ACTIONS(7626), - [anon_sym_IBOutlet] = ACTIONS(7626), - [anon_sym_IBInspectable] = ACTIONS(7626), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7626), - [anon_sym_signed] = ACTIONS(7626), - [anon_sym_unsigned] = ACTIONS(7626), - [anon_sym_long] = ACTIONS(7626), - [anon_sym_short] = ACTIONS(7626), - [sym_primitive_type] = ACTIONS(7626), - [anon_sym_enum] = ACTIONS(7626), - [anon_sym_NS_ENUM] = ACTIONS(7626), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7626), - [anon_sym_NS_OPTIONS] = ACTIONS(7626), - [anon_sym_struct] = ACTIONS(7626), - [anon_sym_union] = ACTIONS(7626), + [3142] = { + [sym_identifier] = ACTIONS(7624), + [aux_sym_preproc_def_token1] = ACTIONS(7626), + [anon_sym_DASH] = ACTIONS(7626), + [anon_sym_PLUS] = ACTIONS(7626), + [anon_sym_typedef] = ACTIONS(7624), + [anon_sym_extern] = ACTIONS(7624), + [anon_sym___attribute] = ACTIONS(7624), + [anon_sym___attribute__] = ACTIONS(7624), + [anon_sym___declspec] = ACTIONS(7624), + [anon_sym_static] = ACTIONS(7624), + [anon_sym_auto] = ACTIONS(7624), + [anon_sym_register] = ACTIONS(7624), + [anon_sym_inline] = ACTIONS(7624), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7624), + [anon_sym_const] = ACTIONS(7624), + [anon_sym_volatile] = ACTIONS(7624), + [anon_sym_restrict] = ACTIONS(7624), + [anon_sym__Atomic] = ACTIONS(7624), + [anon_sym_in] = ACTIONS(7624), + [anon_sym_out] = ACTIONS(7624), + [anon_sym_inout] = ACTIONS(7624), + [anon_sym_bycopy] = ACTIONS(7624), + [anon_sym_byref] = ACTIONS(7624), + [anon_sym_oneway] = ACTIONS(7624), + [anon_sym__Nullable] = ACTIONS(7624), + [anon_sym__Nonnull] = ACTIONS(7624), + [anon_sym__Nullable_result] = ACTIONS(7624), + [anon_sym__Null_unspecified] = ACTIONS(7624), + [anon_sym___autoreleasing] = ACTIONS(7624), + [anon_sym___nullable] = ACTIONS(7624), + [anon_sym___nonnull] = ACTIONS(7624), + [anon_sym___strong] = ACTIONS(7624), + [anon_sym___weak] = ACTIONS(7624), + [anon_sym___bridge] = ACTIONS(7624), + [anon_sym___bridge_transfer] = ACTIONS(7624), + [anon_sym___bridge_retained] = ACTIONS(7624), + [anon_sym___unsafe_unretained] = ACTIONS(7624), + [anon_sym___block] = ACTIONS(7624), + [anon_sym___kindof] = ACTIONS(7624), + [anon_sym___unused] = ACTIONS(7624), + [anon_sym__Complex] = ACTIONS(7624), + [anon_sym___complex] = ACTIONS(7624), + [anon_sym_IBOutlet] = ACTIONS(7624), + [anon_sym_IBInspectable] = ACTIONS(7624), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7624), + [anon_sym_signed] = ACTIONS(7624), + [anon_sym_unsigned] = ACTIONS(7624), + [anon_sym_long] = ACTIONS(7624), + [anon_sym_short] = ACTIONS(7624), + [sym_primitive_type] = ACTIONS(7624), + [anon_sym_enum] = ACTIONS(7624), + [anon_sym_struct] = ACTIONS(7624), + [anon_sym_union] = ACTIONS(7624), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7626), - [anon_sym_ATend] = ACTIONS(7628), - [sym_optional] = ACTIONS(7628), - [sym_required] = ACTIONS(7628), - [anon_sym_ATproperty] = ACTIONS(7628), - [sym_method_attribute_specifier] = ACTIONS(7626), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7626), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7626), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7626), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7626), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7626), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7626), - [anon_sym_NS_AVAILABLE] = ACTIONS(7626), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7626), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7626), - [anon_sym_API_AVAILABLE] = ACTIONS(7626), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7626), - [anon_sym_API_DEPRECATED] = ACTIONS(7626), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7626), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7626), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7626), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7626), - [anon_sym___deprecated_msg] = ACTIONS(7626), - [anon_sym___deprecated_enum_msg] = ACTIONS(7626), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7626), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7626), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7626), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7626), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7626), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7626), - [anon_sym_typeof] = ACTIONS(7626), - [anon_sym___typeof] = ACTIONS(7626), - [anon_sym___typeof__] = ACTIONS(7626), - [sym_id] = ACTIONS(7626), - [sym_instancetype] = ACTIONS(7626), - [sym_Class] = ACTIONS(7626), - [sym_SEL] = ACTIONS(7626), - [sym_IMP] = ACTIONS(7626), - [sym_BOOL] = ACTIONS(7626), - [sym_auto] = ACTIONS(7626), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7624), + [anon_sym_ATend] = ACTIONS(7626), + [sym_optional] = ACTIONS(7626), + [sym_required] = ACTIONS(7626), + [anon_sym_ATproperty] = ACTIONS(7626), + [sym_method_attribute_specifier] = ACTIONS(7624), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7624), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7624), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7624), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7624), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7624), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7624), + [anon_sym_NS_AVAILABLE] = ACTIONS(7624), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7624), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7624), + [anon_sym_API_AVAILABLE] = ACTIONS(7624), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7624), + [anon_sym_API_DEPRECATED] = ACTIONS(7624), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7624), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7624), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7624), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7624), + [anon_sym___deprecated_msg] = ACTIONS(7624), + [anon_sym___deprecated_enum_msg] = ACTIONS(7624), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7624), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7624), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7624), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7624), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7624), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7624), + [anon_sym_NS_ENUM] = ACTIONS(7624), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7624), + [anon_sym_NS_OPTIONS] = ACTIONS(7624), + [anon_sym_typeof] = ACTIONS(7624), + [anon_sym___typeof] = ACTIONS(7624), + [anon_sym___typeof__] = ACTIONS(7624), + [sym_id] = ACTIONS(7624), + [sym_instancetype] = ACTIONS(7624), + [sym_Class] = ACTIONS(7624), + [sym_SEL] = ACTIONS(7624), + [sym_IMP] = ACTIONS(7624), + [sym_BOOL] = ACTIONS(7624), + [sym_auto] = ACTIONS(7624), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -512130,104 +504739,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3193] = { - [sym_identifier] = ACTIONS(7630), - [aux_sym_preproc_def_token1] = ACTIONS(7632), - [anon_sym_DASH] = ACTIONS(7632), - [anon_sym_PLUS] = ACTIONS(7632), - [anon_sym_typedef] = ACTIONS(7630), - [anon_sym_extern] = ACTIONS(7630), - [anon_sym___attribute] = ACTIONS(7630), - [anon_sym___attribute__] = ACTIONS(7630), - [anon_sym___declspec] = ACTIONS(7630), - [anon_sym_static] = ACTIONS(7630), - [anon_sym_auto] = ACTIONS(7630), - [anon_sym_register] = ACTIONS(7630), - [anon_sym_inline] = ACTIONS(7630), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7630), - [anon_sym_const] = ACTIONS(7630), - [anon_sym_volatile] = ACTIONS(7630), - [anon_sym_restrict] = ACTIONS(7630), - [anon_sym__Atomic] = ACTIONS(7630), - [anon_sym_in] = ACTIONS(7630), - [anon_sym_out] = ACTIONS(7630), - [anon_sym_inout] = ACTIONS(7630), - [anon_sym_bycopy] = ACTIONS(7630), - [anon_sym_byref] = ACTIONS(7630), - [anon_sym_oneway] = ACTIONS(7630), - [anon_sym__Nullable] = ACTIONS(7630), - [anon_sym__Nonnull] = ACTIONS(7630), - [anon_sym__Nullable_result] = ACTIONS(7630), - [anon_sym__Null_unspecified] = ACTIONS(7630), - [anon_sym___autoreleasing] = ACTIONS(7630), - [anon_sym___nullable] = ACTIONS(7630), - [anon_sym___nonnull] = ACTIONS(7630), - [anon_sym___strong] = ACTIONS(7630), - [anon_sym___weak] = ACTIONS(7630), - [anon_sym___bridge] = ACTIONS(7630), - [anon_sym___bridge_transfer] = ACTIONS(7630), - [anon_sym___bridge_retained] = ACTIONS(7630), - [anon_sym___unsafe_unretained] = ACTIONS(7630), - [anon_sym___block] = ACTIONS(7630), - [anon_sym___kindof] = ACTIONS(7630), - [anon_sym___unused] = ACTIONS(7630), - [anon_sym__Complex] = ACTIONS(7630), - [anon_sym___complex] = ACTIONS(7630), - [anon_sym_IBOutlet] = ACTIONS(7630), - [anon_sym_IBInspectable] = ACTIONS(7630), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7630), - [anon_sym_signed] = ACTIONS(7630), - [anon_sym_unsigned] = ACTIONS(7630), - [anon_sym_long] = ACTIONS(7630), - [anon_sym_short] = ACTIONS(7630), - [sym_primitive_type] = ACTIONS(7630), - [anon_sym_enum] = ACTIONS(7630), - [anon_sym_NS_ENUM] = ACTIONS(7630), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7630), - [anon_sym_NS_OPTIONS] = ACTIONS(7630), - [anon_sym_struct] = ACTIONS(7630), - [anon_sym_union] = ACTIONS(7630), + [3143] = { + [sym_identifier] = ACTIONS(7628), + [aux_sym_preproc_def_token1] = ACTIONS(7630), + [anon_sym_DASH] = ACTIONS(7630), + [anon_sym_PLUS] = ACTIONS(7630), + [anon_sym_typedef] = ACTIONS(7628), + [anon_sym_extern] = ACTIONS(7628), + [anon_sym___attribute] = ACTIONS(7628), + [anon_sym___attribute__] = ACTIONS(7628), + [anon_sym___declspec] = ACTIONS(7628), + [anon_sym_static] = ACTIONS(7628), + [anon_sym_auto] = ACTIONS(7628), + [anon_sym_register] = ACTIONS(7628), + [anon_sym_inline] = ACTIONS(7628), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7628), + [anon_sym_const] = ACTIONS(7628), + [anon_sym_volatile] = ACTIONS(7628), + [anon_sym_restrict] = ACTIONS(7628), + [anon_sym__Atomic] = ACTIONS(7628), + [anon_sym_in] = ACTIONS(7628), + [anon_sym_out] = ACTIONS(7628), + [anon_sym_inout] = ACTIONS(7628), + [anon_sym_bycopy] = ACTIONS(7628), + [anon_sym_byref] = ACTIONS(7628), + [anon_sym_oneway] = ACTIONS(7628), + [anon_sym__Nullable] = ACTIONS(7628), + [anon_sym__Nonnull] = ACTIONS(7628), + [anon_sym__Nullable_result] = ACTIONS(7628), + [anon_sym__Null_unspecified] = ACTIONS(7628), + [anon_sym___autoreleasing] = ACTIONS(7628), + [anon_sym___nullable] = ACTIONS(7628), + [anon_sym___nonnull] = ACTIONS(7628), + [anon_sym___strong] = ACTIONS(7628), + [anon_sym___weak] = ACTIONS(7628), + [anon_sym___bridge] = ACTIONS(7628), + [anon_sym___bridge_transfer] = ACTIONS(7628), + [anon_sym___bridge_retained] = ACTIONS(7628), + [anon_sym___unsafe_unretained] = ACTIONS(7628), + [anon_sym___block] = ACTIONS(7628), + [anon_sym___kindof] = ACTIONS(7628), + [anon_sym___unused] = ACTIONS(7628), + [anon_sym__Complex] = ACTIONS(7628), + [anon_sym___complex] = ACTIONS(7628), + [anon_sym_IBOutlet] = ACTIONS(7628), + [anon_sym_IBInspectable] = ACTIONS(7628), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7628), + [anon_sym_signed] = ACTIONS(7628), + [anon_sym_unsigned] = ACTIONS(7628), + [anon_sym_long] = ACTIONS(7628), + [anon_sym_short] = ACTIONS(7628), + [sym_primitive_type] = ACTIONS(7628), + [anon_sym_enum] = ACTIONS(7628), + [anon_sym_struct] = ACTIONS(7628), + [anon_sym_union] = ACTIONS(7628), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7630), - [anon_sym_ATend] = ACTIONS(7632), - [sym_optional] = ACTIONS(7632), - [sym_required] = ACTIONS(7632), - [anon_sym_ATproperty] = ACTIONS(7632), - [sym_method_attribute_specifier] = ACTIONS(7630), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7630), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7630), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7630), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7630), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7630), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7630), - [anon_sym_NS_AVAILABLE] = ACTIONS(7630), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7630), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7630), - [anon_sym_API_AVAILABLE] = ACTIONS(7630), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7630), - [anon_sym_API_DEPRECATED] = ACTIONS(7630), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7630), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7630), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7630), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7630), - [anon_sym___deprecated_msg] = ACTIONS(7630), - [anon_sym___deprecated_enum_msg] = ACTIONS(7630), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7630), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7630), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7630), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7630), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7630), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7630), - [anon_sym_typeof] = ACTIONS(7630), - [anon_sym___typeof] = ACTIONS(7630), - [anon_sym___typeof__] = ACTIONS(7630), - [sym_id] = ACTIONS(7630), - [sym_instancetype] = ACTIONS(7630), - [sym_Class] = ACTIONS(7630), - [sym_SEL] = ACTIONS(7630), - [sym_IMP] = ACTIONS(7630), - [sym_BOOL] = ACTIONS(7630), - [sym_auto] = ACTIONS(7630), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7628), + [anon_sym_ATend] = ACTIONS(7630), + [sym_optional] = ACTIONS(7630), + [sym_required] = ACTIONS(7630), + [anon_sym_ATproperty] = ACTIONS(7630), + [sym_method_attribute_specifier] = ACTIONS(7628), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7628), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7628), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7628), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7628), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7628), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7628), + [anon_sym_NS_AVAILABLE] = ACTIONS(7628), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7628), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7628), + [anon_sym_API_AVAILABLE] = ACTIONS(7628), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7628), + [anon_sym_API_DEPRECATED] = ACTIONS(7628), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7628), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7628), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7628), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7628), + [anon_sym___deprecated_msg] = ACTIONS(7628), + [anon_sym___deprecated_enum_msg] = ACTIONS(7628), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7628), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7628), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7628), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7628), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7628), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7628), + [anon_sym_NS_ENUM] = ACTIONS(7628), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7628), + [anon_sym_NS_OPTIONS] = ACTIONS(7628), + [anon_sym_typeof] = ACTIONS(7628), + [anon_sym___typeof] = ACTIONS(7628), + [anon_sym___typeof__] = ACTIONS(7628), + [sym_id] = ACTIONS(7628), + [sym_instancetype] = ACTIONS(7628), + [sym_Class] = ACTIONS(7628), + [sym_SEL] = ACTIONS(7628), + [sym_IMP] = ACTIONS(7628), + [sym_BOOL] = ACTIONS(7628), + [sym_auto] = ACTIONS(7628), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -512235,104 +504844,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3194] = { - [sym_identifier] = ACTIONS(7634), - [aux_sym_preproc_def_token1] = ACTIONS(7636), - [anon_sym_DASH] = ACTIONS(7636), - [anon_sym_PLUS] = ACTIONS(7636), - [anon_sym_typedef] = ACTIONS(7634), - [anon_sym_extern] = ACTIONS(7634), - [anon_sym___attribute] = ACTIONS(7634), - [anon_sym___attribute__] = ACTIONS(7634), - [anon_sym___declspec] = ACTIONS(7634), - [anon_sym_static] = ACTIONS(7634), - [anon_sym_auto] = ACTIONS(7634), - [anon_sym_register] = ACTIONS(7634), - [anon_sym_inline] = ACTIONS(7634), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7634), - [anon_sym_const] = ACTIONS(7634), - [anon_sym_volatile] = ACTIONS(7634), - [anon_sym_restrict] = ACTIONS(7634), - [anon_sym__Atomic] = ACTIONS(7634), - [anon_sym_in] = ACTIONS(7634), - [anon_sym_out] = ACTIONS(7634), - [anon_sym_inout] = ACTIONS(7634), - [anon_sym_bycopy] = ACTIONS(7634), - [anon_sym_byref] = ACTIONS(7634), - [anon_sym_oneway] = ACTIONS(7634), - [anon_sym__Nullable] = ACTIONS(7634), - [anon_sym__Nonnull] = ACTIONS(7634), - [anon_sym__Nullable_result] = ACTIONS(7634), - [anon_sym__Null_unspecified] = ACTIONS(7634), - [anon_sym___autoreleasing] = ACTIONS(7634), - [anon_sym___nullable] = ACTIONS(7634), - [anon_sym___nonnull] = ACTIONS(7634), - [anon_sym___strong] = ACTIONS(7634), - [anon_sym___weak] = ACTIONS(7634), - [anon_sym___bridge] = ACTIONS(7634), - [anon_sym___bridge_transfer] = ACTIONS(7634), - [anon_sym___bridge_retained] = ACTIONS(7634), - [anon_sym___unsafe_unretained] = ACTIONS(7634), - [anon_sym___block] = ACTIONS(7634), - [anon_sym___kindof] = ACTIONS(7634), - [anon_sym___unused] = ACTIONS(7634), - [anon_sym__Complex] = ACTIONS(7634), - [anon_sym___complex] = ACTIONS(7634), - [anon_sym_IBOutlet] = ACTIONS(7634), - [anon_sym_IBInspectable] = ACTIONS(7634), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7634), - [anon_sym_signed] = ACTIONS(7634), - [anon_sym_unsigned] = ACTIONS(7634), - [anon_sym_long] = ACTIONS(7634), - [anon_sym_short] = ACTIONS(7634), - [sym_primitive_type] = ACTIONS(7634), - [anon_sym_enum] = ACTIONS(7634), - [anon_sym_NS_ENUM] = ACTIONS(7634), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7634), - [anon_sym_NS_OPTIONS] = ACTIONS(7634), - [anon_sym_struct] = ACTIONS(7634), - [anon_sym_union] = ACTIONS(7634), + [3144] = { + [sym_identifier] = ACTIONS(1680), + [anon_sym_COMMA] = ACTIONS(1682), + [anon_sym_RPAREN] = ACTIONS(1682), + [anon_sym_LPAREN2] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1680), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_PIPE_PIPE] = ACTIONS(1682), + [anon_sym_AMP_AMP] = ACTIONS(1682), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_CARET] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1680), + [anon_sym_GT_EQ] = ACTIONS(1682), + [anon_sym_LT_EQ] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(1680), + [anon_sym_LT_LT] = ACTIONS(1682), + [anon_sym_GT_GT] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym___attribute] = ACTIONS(1680), + [anon_sym___attribute__] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_RBRACK] = ACTIONS(1682), + [anon_sym_const] = ACTIONS(1680), + [anon_sym_volatile] = ACTIONS(1680), + [anon_sym_restrict] = ACTIONS(1680), + [anon_sym__Atomic] = ACTIONS(1680), + [anon_sym_in] = ACTIONS(1680), + [anon_sym_out] = ACTIONS(1680), + [anon_sym_inout] = ACTIONS(1680), + [anon_sym_bycopy] = ACTIONS(1680), + [anon_sym_byref] = ACTIONS(1680), + [anon_sym_oneway] = ACTIONS(1680), + [anon_sym__Nullable] = ACTIONS(1680), + [anon_sym__Nonnull] = ACTIONS(1680), + [anon_sym__Nullable_result] = ACTIONS(1680), + [anon_sym__Null_unspecified] = ACTIONS(1680), + [anon_sym___autoreleasing] = ACTIONS(1680), + [anon_sym___nullable] = ACTIONS(1680), + [anon_sym___nonnull] = ACTIONS(1680), + [anon_sym___strong] = ACTIONS(1680), + [anon_sym___weak] = ACTIONS(1680), + [anon_sym___bridge] = ACTIONS(1680), + [anon_sym___bridge_transfer] = ACTIONS(1680), + [anon_sym___bridge_retained] = ACTIONS(1680), + [anon_sym___unsafe_unretained] = ACTIONS(1680), + [anon_sym___block] = ACTIONS(1680), + [anon_sym___kindof] = ACTIONS(1680), + [anon_sym___unused] = ACTIONS(1680), + [anon_sym__Complex] = ACTIONS(1680), + [anon_sym___complex] = ACTIONS(1680), + [anon_sym_IBOutlet] = ACTIONS(1680), + [anon_sym_IBInspectable] = ACTIONS(1680), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1680), + [anon_sym_COLON] = ACTIONS(1682), + [anon_sym_QMARK] = ACTIONS(1682), + [anon_sym_DASH_DASH] = ACTIONS(1682), + [anon_sym_PLUS_PLUS] = ACTIONS(1682), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_DASH_GT] = ACTIONS(1682), + [anon_sym_L_DQUOTE] = ACTIONS(1682), + [anon_sym_u_DQUOTE] = ACTIONS(1682), + [anon_sym_U_DQUOTE] = ACTIONS(1682), + [anon_sym_u8_DQUOTE] = ACTIONS(1682), + [anon_sym_DQUOTE] = ACTIONS(1682), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7634), - [anon_sym_ATend] = ACTIONS(7636), - [sym_optional] = ACTIONS(7636), - [sym_required] = ACTIONS(7636), - [anon_sym_ATproperty] = ACTIONS(7636), - [sym_method_attribute_specifier] = ACTIONS(7634), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7634), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7634), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7634), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7634), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7634), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7634), - [anon_sym_NS_AVAILABLE] = ACTIONS(7634), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7634), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7634), - [anon_sym_API_AVAILABLE] = ACTIONS(7634), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7634), - [anon_sym_API_DEPRECATED] = ACTIONS(7634), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7634), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7634), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7634), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7634), - [anon_sym___deprecated_msg] = ACTIONS(7634), - [anon_sym___deprecated_enum_msg] = ACTIONS(7634), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7634), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7634), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7634), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7634), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7634), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7634), - [anon_sym_typeof] = ACTIONS(7634), - [anon_sym___typeof] = ACTIONS(7634), - [anon_sym___typeof__] = ACTIONS(7634), - [sym_id] = ACTIONS(7634), - [sym_instancetype] = ACTIONS(7634), - [sym_Class] = ACTIONS(7634), - [sym_SEL] = ACTIONS(7634), - [sym_IMP] = ACTIONS(7634), - [sym_BOOL] = ACTIONS(7634), - [sym_auto] = ACTIONS(7634), + [sym_method_attribute_specifier] = ACTIONS(1680), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1680), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1680), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1680), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1680), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1680), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1680), + [anon_sym_NS_AVAILABLE] = ACTIONS(1680), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1680), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_API_AVAILABLE] = ACTIONS(1680), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1680), + [anon_sym_API_DEPRECATED] = ACTIONS(1680), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1680), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1680), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1680), + [anon_sym___deprecated_msg] = ACTIONS(1680), + [anon_sym___deprecated_enum_msg] = ACTIONS(1680), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1680), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1680), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1680), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1680), + [anon_sym_AT] = ACTIONS(1682), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -512340,104 +504949,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3195] = { - [sym_identifier] = ACTIONS(7638), - [aux_sym_preproc_def_token1] = ACTIONS(7640), - [anon_sym_DASH] = ACTIONS(7640), - [anon_sym_PLUS] = ACTIONS(7640), - [anon_sym_typedef] = ACTIONS(7638), - [anon_sym_extern] = ACTIONS(7638), - [anon_sym___attribute] = ACTIONS(7638), - [anon_sym___attribute__] = ACTIONS(7638), - [anon_sym___declspec] = ACTIONS(7638), - [anon_sym_static] = ACTIONS(7638), - [anon_sym_auto] = ACTIONS(7638), - [anon_sym_register] = ACTIONS(7638), - [anon_sym_inline] = ACTIONS(7638), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7638), - [anon_sym_const] = ACTIONS(7638), - [anon_sym_volatile] = ACTIONS(7638), - [anon_sym_restrict] = ACTIONS(7638), - [anon_sym__Atomic] = ACTIONS(7638), - [anon_sym_in] = ACTIONS(7638), - [anon_sym_out] = ACTIONS(7638), - [anon_sym_inout] = ACTIONS(7638), - [anon_sym_bycopy] = ACTIONS(7638), - [anon_sym_byref] = ACTIONS(7638), - [anon_sym_oneway] = ACTIONS(7638), - [anon_sym__Nullable] = ACTIONS(7638), - [anon_sym__Nonnull] = ACTIONS(7638), - [anon_sym__Nullable_result] = ACTIONS(7638), - [anon_sym__Null_unspecified] = ACTIONS(7638), - [anon_sym___autoreleasing] = ACTIONS(7638), - [anon_sym___nullable] = ACTIONS(7638), - [anon_sym___nonnull] = ACTIONS(7638), - [anon_sym___strong] = ACTIONS(7638), - [anon_sym___weak] = ACTIONS(7638), - [anon_sym___bridge] = ACTIONS(7638), - [anon_sym___bridge_transfer] = ACTIONS(7638), - [anon_sym___bridge_retained] = ACTIONS(7638), - [anon_sym___unsafe_unretained] = ACTIONS(7638), - [anon_sym___block] = ACTIONS(7638), - [anon_sym___kindof] = ACTIONS(7638), - [anon_sym___unused] = ACTIONS(7638), - [anon_sym__Complex] = ACTIONS(7638), - [anon_sym___complex] = ACTIONS(7638), - [anon_sym_IBOutlet] = ACTIONS(7638), - [anon_sym_IBInspectable] = ACTIONS(7638), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7638), - [anon_sym_signed] = ACTIONS(7638), - [anon_sym_unsigned] = ACTIONS(7638), - [anon_sym_long] = ACTIONS(7638), - [anon_sym_short] = ACTIONS(7638), - [sym_primitive_type] = ACTIONS(7638), - [anon_sym_enum] = ACTIONS(7638), - [anon_sym_NS_ENUM] = ACTIONS(7638), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7638), - [anon_sym_NS_OPTIONS] = ACTIONS(7638), - [anon_sym_struct] = ACTIONS(7638), - [anon_sym_union] = ACTIONS(7638), + [3145] = { + [sym_identifier] = ACTIONS(7632), + [aux_sym_preproc_def_token1] = ACTIONS(7634), + [anon_sym_DASH] = ACTIONS(7634), + [anon_sym_PLUS] = ACTIONS(7634), + [anon_sym_typedef] = ACTIONS(7632), + [anon_sym_extern] = ACTIONS(7632), + [anon_sym___attribute] = ACTIONS(7632), + [anon_sym___attribute__] = ACTIONS(7632), + [anon_sym___declspec] = ACTIONS(7632), + [anon_sym_static] = ACTIONS(7632), + [anon_sym_auto] = ACTIONS(7632), + [anon_sym_register] = ACTIONS(7632), + [anon_sym_inline] = ACTIONS(7632), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7632), + [anon_sym_const] = ACTIONS(7632), + [anon_sym_volatile] = ACTIONS(7632), + [anon_sym_restrict] = ACTIONS(7632), + [anon_sym__Atomic] = ACTIONS(7632), + [anon_sym_in] = ACTIONS(7632), + [anon_sym_out] = ACTIONS(7632), + [anon_sym_inout] = ACTIONS(7632), + [anon_sym_bycopy] = ACTIONS(7632), + [anon_sym_byref] = ACTIONS(7632), + [anon_sym_oneway] = ACTIONS(7632), + [anon_sym__Nullable] = ACTIONS(7632), + [anon_sym__Nonnull] = ACTIONS(7632), + [anon_sym__Nullable_result] = ACTIONS(7632), + [anon_sym__Null_unspecified] = ACTIONS(7632), + [anon_sym___autoreleasing] = ACTIONS(7632), + [anon_sym___nullable] = ACTIONS(7632), + [anon_sym___nonnull] = ACTIONS(7632), + [anon_sym___strong] = ACTIONS(7632), + [anon_sym___weak] = ACTIONS(7632), + [anon_sym___bridge] = ACTIONS(7632), + [anon_sym___bridge_transfer] = ACTIONS(7632), + [anon_sym___bridge_retained] = ACTIONS(7632), + [anon_sym___unsafe_unretained] = ACTIONS(7632), + [anon_sym___block] = ACTIONS(7632), + [anon_sym___kindof] = ACTIONS(7632), + [anon_sym___unused] = ACTIONS(7632), + [anon_sym__Complex] = ACTIONS(7632), + [anon_sym___complex] = ACTIONS(7632), + [anon_sym_IBOutlet] = ACTIONS(7632), + [anon_sym_IBInspectable] = ACTIONS(7632), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7632), + [anon_sym_signed] = ACTIONS(7632), + [anon_sym_unsigned] = ACTIONS(7632), + [anon_sym_long] = ACTIONS(7632), + [anon_sym_short] = ACTIONS(7632), + [sym_primitive_type] = ACTIONS(7632), + [anon_sym_enum] = ACTIONS(7632), + [anon_sym_struct] = ACTIONS(7632), + [anon_sym_union] = ACTIONS(7632), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7638), - [anon_sym_ATend] = ACTIONS(7640), - [sym_optional] = ACTIONS(7640), - [sym_required] = ACTIONS(7640), - [anon_sym_ATproperty] = ACTIONS(7640), - [sym_method_attribute_specifier] = ACTIONS(7638), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7638), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7638), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7638), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7638), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7638), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7638), - [anon_sym_NS_AVAILABLE] = ACTIONS(7638), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7638), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7638), - [anon_sym_API_AVAILABLE] = ACTIONS(7638), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7638), - [anon_sym_API_DEPRECATED] = ACTIONS(7638), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7638), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7638), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7638), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7638), - [anon_sym___deprecated_msg] = ACTIONS(7638), - [anon_sym___deprecated_enum_msg] = ACTIONS(7638), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7638), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7638), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7638), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7638), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7638), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7638), - [anon_sym_typeof] = ACTIONS(7638), - [anon_sym___typeof] = ACTIONS(7638), - [anon_sym___typeof__] = ACTIONS(7638), - [sym_id] = ACTIONS(7638), - [sym_instancetype] = ACTIONS(7638), - [sym_Class] = ACTIONS(7638), - [sym_SEL] = ACTIONS(7638), - [sym_IMP] = ACTIONS(7638), - [sym_BOOL] = ACTIONS(7638), - [sym_auto] = ACTIONS(7638), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7632), + [anon_sym_ATend] = ACTIONS(7634), + [sym_optional] = ACTIONS(7634), + [sym_required] = ACTIONS(7634), + [anon_sym_ATproperty] = ACTIONS(7634), + [sym_method_attribute_specifier] = ACTIONS(7632), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7632), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7632), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7632), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7632), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7632), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7632), + [anon_sym_NS_AVAILABLE] = ACTIONS(7632), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7632), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7632), + [anon_sym_API_AVAILABLE] = ACTIONS(7632), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7632), + [anon_sym_API_DEPRECATED] = ACTIONS(7632), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7632), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7632), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7632), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7632), + [anon_sym___deprecated_msg] = ACTIONS(7632), + [anon_sym___deprecated_enum_msg] = ACTIONS(7632), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7632), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7632), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7632), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7632), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7632), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7632), + [anon_sym_NS_ENUM] = ACTIONS(7632), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7632), + [anon_sym_NS_OPTIONS] = ACTIONS(7632), + [anon_sym_typeof] = ACTIONS(7632), + [anon_sym___typeof] = ACTIONS(7632), + [anon_sym___typeof__] = ACTIONS(7632), + [sym_id] = ACTIONS(7632), + [sym_instancetype] = ACTIONS(7632), + [sym_Class] = ACTIONS(7632), + [sym_SEL] = ACTIONS(7632), + [sym_IMP] = ACTIONS(7632), + [sym_BOOL] = ACTIONS(7632), + [sym_auto] = ACTIONS(7632), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -512445,104 +505054,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3196] = { - [sym_identifier] = ACTIONS(7642), - [aux_sym_preproc_def_token1] = ACTIONS(7644), - [anon_sym_DASH] = ACTIONS(7644), - [anon_sym_PLUS] = ACTIONS(7644), - [anon_sym_typedef] = ACTIONS(7642), - [anon_sym_extern] = ACTIONS(7642), - [anon_sym___attribute] = ACTIONS(7642), - [anon_sym___attribute__] = ACTIONS(7642), - [anon_sym___declspec] = ACTIONS(7642), - [anon_sym_static] = ACTIONS(7642), - [anon_sym_auto] = ACTIONS(7642), - [anon_sym_register] = ACTIONS(7642), - [anon_sym_inline] = ACTIONS(7642), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7642), - [anon_sym_const] = ACTIONS(7642), - [anon_sym_volatile] = ACTIONS(7642), - [anon_sym_restrict] = ACTIONS(7642), - [anon_sym__Atomic] = ACTIONS(7642), - [anon_sym_in] = ACTIONS(7642), - [anon_sym_out] = ACTIONS(7642), - [anon_sym_inout] = ACTIONS(7642), - [anon_sym_bycopy] = ACTIONS(7642), - [anon_sym_byref] = ACTIONS(7642), - [anon_sym_oneway] = ACTIONS(7642), - [anon_sym__Nullable] = ACTIONS(7642), - [anon_sym__Nonnull] = ACTIONS(7642), - [anon_sym__Nullable_result] = ACTIONS(7642), - [anon_sym__Null_unspecified] = ACTIONS(7642), - [anon_sym___autoreleasing] = ACTIONS(7642), - [anon_sym___nullable] = ACTIONS(7642), - [anon_sym___nonnull] = ACTIONS(7642), - [anon_sym___strong] = ACTIONS(7642), - [anon_sym___weak] = ACTIONS(7642), - [anon_sym___bridge] = ACTIONS(7642), - [anon_sym___bridge_transfer] = ACTIONS(7642), - [anon_sym___bridge_retained] = ACTIONS(7642), - [anon_sym___unsafe_unretained] = ACTIONS(7642), - [anon_sym___block] = ACTIONS(7642), - [anon_sym___kindof] = ACTIONS(7642), - [anon_sym___unused] = ACTIONS(7642), - [anon_sym__Complex] = ACTIONS(7642), - [anon_sym___complex] = ACTIONS(7642), - [anon_sym_IBOutlet] = ACTIONS(7642), - [anon_sym_IBInspectable] = ACTIONS(7642), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7642), - [anon_sym_signed] = ACTIONS(7642), - [anon_sym_unsigned] = ACTIONS(7642), - [anon_sym_long] = ACTIONS(7642), - [anon_sym_short] = ACTIONS(7642), - [sym_primitive_type] = ACTIONS(7642), - [anon_sym_enum] = ACTIONS(7642), - [anon_sym_NS_ENUM] = ACTIONS(7642), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7642), - [anon_sym_NS_OPTIONS] = ACTIONS(7642), - [anon_sym_struct] = ACTIONS(7642), - [anon_sym_union] = ACTIONS(7642), + [3146] = { + [sym_identifier] = ACTIONS(7636), + [aux_sym_preproc_def_token1] = ACTIONS(7638), + [anon_sym_DASH] = ACTIONS(7638), + [anon_sym_PLUS] = ACTIONS(7638), + [anon_sym_typedef] = ACTIONS(7636), + [anon_sym_extern] = ACTIONS(7636), + [anon_sym___attribute] = ACTIONS(7636), + [anon_sym___attribute__] = ACTIONS(7636), + [anon_sym___declspec] = ACTIONS(7636), + [anon_sym_static] = ACTIONS(7636), + [anon_sym_auto] = ACTIONS(7636), + [anon_sym_register] = ACTIONS(7636), + [anon_sym_inline] = ACTIONS(7636), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7636), + [anon_sym_const] = ACTIONS(7636), + [anon_sym_volatile] = ACTIONS(7636), + [anon_sym_restrict] = ACTIONS(7636), + [anon_sym__Atomic] = ACTIONS(7636), + [anon_sym_in] = ACTIONS(7636), + [anon_sym_out] = ACTIONS(7636), + [anon_sym_inout] = ACTIONS(7636), + [anon_sym_bycopy] = ACTIONS(7636), + [anon_sym_byref] = ACTIONS(7636), + [anon_sym_oneway] = ACTIONS(7636), + [anon_sym__Nullable] = ACTIONS(7636), + [anon_sym__Nonnull] = ACTIONS(7636), + [anon_sym__Nullable_result] = ACTIONS(7636), + [anon_sym__Null_unspecified] = ACTIONS(7636), + [anon_sym___autoreleasing] = ACTIONS(7636), + [anon_sym___nullable] = ACTIONS(7636), + [anon_sym___nonnull] = ACTIONS(7636), + [anon_sym___strong] = ACTIONS(7636), + [anon_sym___weak] = ACTIONS(7636), + [anon_sym___bridge] = ACTIONS(7636), + [anon_sym___bridge_transfer] = ACTIONS(7636), + [anon_sym___bridge_retained] = ACTIONS(7636), + [anon_sym___unsafe_unretained] = ACTIONS(7636), + [anon_sym___block] = ACTIONS(7636), + [anon_sym___kindof] = ACTIONS(7636), + [anon_sym___unused] = ACTIONS(7636), + [anon_sym__Complex] = ACTIONS(7636), + [anon_sym___complex] = ACTIONS(7636), + [anon_sym_IBOutlet] = ACTIONS(7636), + [anon_sym_IBInspectable] = ACTIONS(7636), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7636), + [anon_sym_signed] = ACTIONS(7636), + [anon_sym_unsigned] = ACTIONS(7636), + [anon_sym_long] = ACTIONS(7636), + [anon_sym_short] = ACTIONS(7636), + [sym_primitive_type] = ACTIONS(7636), + [anon_sym_enum] = ACTIONS(7636), + [anon_sym_struct] = ACTIONS(7636), + [anon_sym_union] = ACTIONS(7636), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7642), - [anon_sym_ATend] = ACTIONS(7644), - [sym_optional] = ACTIONS(7644), - [sym_required] = ACTIONS(7644), - [anon_sym_ATproperty] = ACTIONS(7644), - [sym_method_attribute_specifier] = ACTIONS(7642), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7642), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7642), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7642), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7642), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7642), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7642), - [anon_sym_NS_AVAILABLE] = ACTIONS(7642), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7642), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7642), - [anon_sym_API_AVAILABLE] = ACTIONS(7642), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7642), - [anon_sym_API_DEPRECATED] = ACTIONS(7642), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7642), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7642), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7642), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7642), - [anon_sym___deprecated_msg] = ACTIONS(7642), - [anon_sym___deprecated_enum_msg] = ACTIONS(7642), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7642), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7642), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7642), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7642), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7642), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7642), - [anon_sym_typeof] = ACTIONS(7642), - [anon_sym___typeof] = ACTIONS(7642), - [anon_sym___typeof__] = ACTIONS(7642), - [sym_id] = ACTIONS(7642), - [sym_instancetype] = ACTIONS(7642), - [sym_Class] = ACTIONS(7642), - [sym_SEL] = ACTIONS(7642), - [sym_IMP] = ACTIONS(7642), - [sym_BOOL] = ACTIONS(7642), - [sym_auto] = ACTIONS(7642), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7636), + [anon_sym_ATend] = ACTIONS(7638), + [sym_optional] = ACTIONS(7638), + [sym_required] = ACTIONS(7638), + [anon_sym_ATproperty] = ACTIONS(7638), + [sym_method_attribute_specifier] = ACTIONS(7636), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7636), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7636), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7636), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7636), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7636), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7636), + [anon_sym_NS_AVAILABLE] = ACTIONS(7636), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7636), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7636), + [anon_sym_API_AVAILABLE] = ACTIONS(7636), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7636), + [anon_sym_API_DEPRECATED] = ACTIONS(7636), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7636), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7636), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7636), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7636), + [anon_sym___deprecated_msg] = ACTIONS(7636), + [anon_sym___deprecated_enum_msg] = ACTIONS(7636), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7636), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7636), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7636), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7636), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7636), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7636), + [anon_sym_NS_ENUM] = ACTIONS(7636), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7636), + [anon_sym_NS_OPTIONS] = ACTIONS(7636), + [anon_sym_typeof] = ACTIONS(7636), + [anon_sym___typeof] = ACTIONS(7636), + [anon_sym___typeof__] = ACTIONS(7636), + [sym_id] = ACTIONS(7636), + [sym_instancetype] = ACTIONS(7636), + [sym_Class] = ACTIONS(7636), + [sym_SEL] = ACTIONS(7636), + [sym_IMP] = ACTIONS(7636), + [sym_BOOL] = ACTIONS(7636), + [sym_auto] = ACTIONS(7636), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -512550,104 +505159,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3197] = { - [sym_identifier] = ACTIONS(7646), - [aux_sym_preproc_def_token1] = ACTIONS(7648), - [anon_sym_DASH] = ACTIONS(7648), - [anon_sym_PLUS] = ACTIONS(7648), - [anon_sym_typedef] = ACTIONS(7646), - [anon_sym_extern] = ACTIONS(7646), - [anon_sym___attribute] = ACTIONS(7646), - [anon_sym___attribute__] = ACTIONS(7646), - [anon_sym___declspec] = ACTIONS(7646), - [anon_sym_static] = ACTIONS(7646), - [anon_sym_auto] = ACTIONS(7646), - [anon_sym_register] = ACTIONS(7646), - [anon_sym_inline] = ACTIONS(7646), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7646), - [anon_sym_const] = ACTIONS(7646), - [anon_sym_volatile] = ACTIONS(7646), - [anon_sym_restrict] = ACTIONS(7646), - [anon_sym__Atomic] = ACTIONS(7646), - [anon_sym_in] = ACTIONS(7646), - [anon_sym_out] = ACTIONS(7646), - [anon_sym_inout] = ACTIONS(7646), - [anon_sym_bycopy] = ACTIONS(7646), - [anon_sym_byref] = ACTIONS(7646), - [anon_sym_oneway] = ACTIONS(7646), - [anon_sym__Nullable] = ACTIONS(7646), - [anon_sym__Nonnull] = ACTIONS(7646), - [anon_sym__Nullable_result] = ACTIONS(7646), - [anon_sym__Null_unspecified] = ACTIONS(7646), - [anon_sym___autoreleasing] = ACTIONS(7646), - [anon_sym___nullable] = ACTIONS(7646), - [anon_sym___nonnull] = ACTIONS(7646), - [anon_sym___strong] = ACTIONS(7646), - [anon_sym___weak] = ACTIONS(7646), - [anon_sym___bridge] = ACTIONS(7646), - [anon_sym___bridge_transfer] = ACTIONS(7646), - [anon_sym___bridge_retained] = ACTIONS(7646), - [anon_sym___unsafe_unretained] = ACTIONS(7646), - [anon_sym___block] = ACTIONS(7646), - [anon_sym___kindof] = ACTIONS(7646), - [anon_sym___unused] = ACTIONS(7646), - [anon_sym__Complex] = ACTIONS(7646), - [anon_sym___complex] = ACTIONS(7646), - [anon_sym_IBOutlet] = ACTIONS(7646), - [anon_sym_IBInspectable] = ACTIONS(7646), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7646), - [anon_sym_signed] = ACTIONS(7646), - [anon_sym_unsigned] = ACTIONS(7646), - [anon_sym_long] = ACTIONS(7646), - [anon_sym_short] = ACTIONS(7646), - [sym_primitive_type] = ACTIONS(7646), - [anon_sym_enum] = ACTIONS(7646), - [anon_sym_NS_ENUM] = ACTIONS(7646), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7646), - [anon_sym_NS_OPTIONS] = ACTIONS(7646), - [anon_sym_struct] = ACTIONS(7646), - [anon_sym_union] = ACTIONS(7646), + [3147] = { + [sym_identifier] = ACTIONS(7640), + [aux_sym_preproc_def_token1] = ACTIONS(7642), + [anon_sym_DASH] = ACTIONS(7642), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_typedef] = ACTIONS(7640), + [anon_sym_extern] = ACTIONS(7640), + [anon_sym___attribute] = ACTIONS(7640), + [anon_sym___attribute__] = ACTIONS(7640), + [anon_sym___declspec] = ACTIONS(7640), + [anon_sym_static] = ACTIONS(7640), + [anon_sym_auto] = ACTIONS(7640), + [anon_sym_register] = ACTIONS(7640), + [anon_sym_inline] = ACTIONS(7640), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7640), + [anon_sym_const] = ACTIONS(7640), + [anon_sym_volatile] = ACTIONS(7640), + [anon_sym_restrict] = ACTIONS(7640), + [anon_sym__Atomic] = ACTIONS(7640), + [anon_sym_in] = ACTIONS(7640), + [anon_sym_out] = ACTIONS(7640), + [anon_sym_inout] = ACTIONS(7640), + [anon_sym_bycopy] = ACTIONS(7640), + [anon_sym_byref] = ACTIONS(7640), + [anon_sym_oneway] = ACTIONS(7640), + [anon_sym__Nullable] = ACTIONS(7640), + [anon_sym__Nonnull] = ACTIONS(7640), + [anon_sym__Nullable_result] = ACTIONS(7640), + [anon_sym__Null_unspecified] = ACTIONS(7640), + [anon_sym___autoreleasing] = ACTIONS(7640), + [anon_sym___nullable] = ACTIONS(7640), + [anon_sym___nonnull] = ACTIONS(7640), + [anon_sym___strong] = ACTIONS(7640), + [anon_sym___weak] = ACTIONS(7640), + [anon_sym___bridge] = ACTIONS(7640), + [anon_sym___bridge_transfer] = ACTIONS(7640), + [anon_sym___bridge_retained] = ACTIONS(7640), + [anon_sym___unsafe_unretained] = ACTIONS(7640), + [anon_sym___block] = ACTIONS(7640), + [anon_sym___kindof] = ACTIONS(7640), + [anon_sym___unused] = ACTIONS(7640), + [anon_sym__Complex] = ACTIONS(7640), + [anon_sym___complex] = ACTIONS(7640), + [anon_sym_IBOutlet] = ACTIONS(7640), + [anon_sym_IBInspectable] = ACTIONS(7640), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7640), + [anon_sym_signed] = ACTIONS(7640), + [anon_sym_unsigned] = ACTIONS(7640), + [anon_sym_long] = ACTIONS(7640), + [anon_sym_short] = ACTIONS(7640), + [sym_primitive_type] = ACTIONS(7640), + [anon_sym_enum] = ACTIONS(7640), + [anon_sym_struct] = ACTIONS(7640), + [anon_sym_union] = ACTIONS(7640), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7646), - [anon_sym_ATend] = ACTIONS(7648), - [sym_optional] = ACTIONS(7648), - [sym_required] = ACTIONS(7648), - [anon_sym_ATproperty] = ACTIONS(7648), - [sym_method_attribute_specifier] = ACTIONS(7646), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7646), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7646), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7646), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7646), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7646), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7646), - [anon_sym_NS_AVAILABLE] = ACTIONS(7646), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7646), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7646), - [anon_sym_API_AVAILABLE] = ACTIONS(7646), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7646), - [anon_sym_API_DEPRECATED] = ACTIONS(7646), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7646), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7646), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7646), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7646), - [anon_sym___deprecated_msg] = ACTIONS(7646), - [anon_sym___deprecated_enum_msg] = ACTIONS(7646), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7646), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7646), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7646), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7646), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7646), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7646), - [anon_sym_typeof] = ACTIONS(7646), - [anon_sym___typeof] = ACTIONS(7646), - [anon_sym___typeof__] = ACTIONS(7646), - [sym_id] = ACTIONS(7646), - [sym_instancetype] = ACTIONS(7646), - [sym_Class] = ACTIONS(7646), - [sym_SEL] = ACTIONS(7646), - [sym_IMP] = ACTIONS(7646), - [sym_BOOL] = ACTIONS(7646), - [sym_auto] = ACTIONS(7646), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7640), + [anon_sym_ATend] = ACTIONS(7642), + [sym_optional] = ACTIONS(7642), + [sym_required] = ACTIONS(7642), + [anon_sym_ATproperty] = ACTIONS(7642), + [sym_method_attribute_specifier] = ACTIONS(7640), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7640), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7640), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7640), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7640), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7640), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7640), + [anon_sym_NS_AVAILABLE] = ACTIONS(7640), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7640), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7640), + [anon_sym_API_AVAILABLE] = ACTIONS(7640), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7640), + [anon_sym_API_DEPRECATED] = ACTIONS(7640), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7640), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7640), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7640), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7640), + [anon_sym___deprecated_msg] = ACTIONS(7640), + [anon_sym___deprecated_enum_msg] = ACTIONS(7640), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7640), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7640), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7640), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7640), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7640), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7640), + [anon_sym_NS_ENUM] = ACTIONS(7640), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7640), + [anon_sym_NS_OPTIONS] = ACTIONS(7640), + [anon_sym_typeof] = ACTIONS(7640), + [anon_sym___typeof] = ACTIONS(7640), + [anon_sym___typeof__] = ACTIONS(7640), + [sym_id] = ACTIONS(7640), + [sym_instancetype] = ACTIONS(7640), + [sym_Class] = ACTIONS(7640), + [sym_SEL] = ACTIONS(7640), + [sym_IMP] = ACTIONS(7640), + [sym_BOOL] = ACTIONS(7640), + [sym_auto] = ACTIONS(7640), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -512655,104 +505264,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3198] = { - [sym_identifier] = ACTIONS(7650), - [aux_sym_preproc_def_token1] = ACTIONS(7652), - [anon_sym_DASH] = ACTIONS(7652), - [anon_sym_PLUS] = ACTIONS(7652), - [anon_sym_typedef] = ACTIONS(7650), - [anon_sym_extern] = ACTIONS(7650), - [anon_sym___attribute] = ACTIONS(7650), - [anon_sym___attribute__] = ACTIONS(7650), - [anon_sym___declspec] = ACTIONS(7650), - [anon_sym_static] = ACTIONS(7650), - [anon_sym_auto] = ACTIONS(7650), - [anon_sym_register] = ACTIONS(7650), - [anon_sym_inline] = ACTIONS(7650), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7650), - [anon_sym_const] = ACTIONS(7650), - [anon_sym_volatile] = ACTIONS(7650), - [anon_sym_restrict] = ACTIONS(7650), - [anon_sym__Atomic] = ACTIONS(7650), - [anon_sym_in] = ACTIONS(7650), - [anon_sym_out] = ACTIONS(7650), - [anon_sym_inout] = ACTIONS(7650), - [anon_sym_bycopy] = ACTIONS(7650), - [anon_sym_byref] = ACTIONS(7650), - [anon_sym_oneway] = ACTIONS(7650), - [anon_sym__Nullable] = ACTIONS(7650), - [anon_sym__Nonnull] = ACTIONS(7650), - [anon_sym__Nullable_result] = ACTIONS(7650), - [anon_sym__Null_unspecified] = ACTIONS(7650), - [anon_sym___autoreleasing] = ACTIONS(7650), - [anon_sym___nullable] = ACTIONS(7650), - [anon_sym___nonnull] = ACTIONS(7650), - [anon_sym___strong] = ACTIONS(7650), - [anon_sym___weak] = ACTIONS(7650), - [anon_sym___bridge] = ACTIONS(7650), - [anon_sym___bridge_transfer] = ACTIONS(7650), - [anon_sym___bridge_retained] = ACTIONS(7650), - [anon_sym___unsafe_unretained] = ACTIONS(7650), - [anon_sym___block] = ACTIONS(7650), - [anon_sym___kindof] = ACTIONS(7650), - [anon_sym___unused] = ACTIONS(7650), - [anon_sym__Complex] = ACTIONS(7650), - [anon_sym___complex] = ACTIONS(7650), - [anon_sym_IBOutlet] = ACTIONS(7650), - [anon_sym_IBInspectable] = ACTIONS(7650), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7650), - [anon_sym_signed] = ACTIONS(7650), - [anon_sym_unsigned] = ACTIONS(7650), - [anon_sym_long] = ACTIONS(7650), - [anon_sym_short] = ACTIONS(7650), - [sym_primitive_type] = ACTIONS(7650), - [anon_sym_enum] = ACTIONS(7650), - [anon_sym_NS_ENUM] = ACTIONS(7650), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7650), - [anon_sym_NS_OPTIONS] = ACTIONS(7650), - [anon_sym_struct] = ACTIONS(7650), - [anon_sym_union] = ACTIONS(7650), + [3148] = { + [sym_identifier] = ACTIONS(7644), + [aux_sym_preproc_def_token1] = ACTIONS(7646), + [anon_sym_DASH] = ACTIONS(7646), + [anon_sym_PLUS] = ACTIONS(7646), + [anon_sym_typedef] = ACTIONS(7644), + [anon_sym_extern] = ACTIONS(7644), + [anon_sym___attribute] = ACTIONS(7644), + [anon_sym___attribute__] = ACTIONS(7644), + [anon_sym___declspec] = ACTIONS(7644), + [anon_sym_static] = ACTIONS(7644), + [anon_sym_auto] = ACTIONS(7644), + [anon_sym_register] = ACTIONS(7644), + [anon_sym_inline] = ACTIONS(7644), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7644), + [anon_sym_const] = ACTIONS(7644), + [anon_sym_volatile] = ACTIONS(7644), + [anon_sym_restrict] = ACTIONS(7644), + [anon_sym__Atomic] = ACTIONS(7644), + [anon_sym_in] = ACTIONS(7644), + [anon_sym_out] = ACTIONS(7644), + [anon_sym_inout] = ACTIONS(7644), + [anon_sym_bycopy] = ACTIONS(7644), + [anon_sym_byref] = ACTIONS(7644), + [anon_sym_oneway] = ACTIONS(7644), + [anon_sym__Nullable] = ACTIONS(7644), + [anon_sym__Nonnull] = ACTIONS(7644), + [anon_sym__Nullable_result] = ACTIONS(7644), + [anon_sym__Null_unspecified] = ACTIONS(7644), + [anon_sym___autoreleasing] = ACTIONS(7644), + [anon_sym___nullable] = ACTIONS(7644), + [anon_sym___nonnull] = ACTIONS(7644), + [anon_sym___strong] = ACTIONS(7644), + [anon_sym___weak] = ACTIONS(7644), + [anon_sym___bridge] = ACTIONS(7644), + [anon_sym___bridge_transfer] = ACTIONS(7644), + [anon_sym___bridge_retained] = ACTIONS(7644), + [anon_sym___unsafe_unretained] = ACTIONS(7644), + [anon_sym___block] = ACTIONS(7644), + [anon_sym___kindof] = ACTIONS(7644), + [anon_sym___unused] = ACTIONS(7644), + [anon_sym__Complex] = ACTIONS(7644), + [anon_sym___complex] = ACTIONS(7644), + [anon_sym_IBOutlet] = ACTIONS(7644), + [anon_sym_IBInspectable] = ACTIONS(7644), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7644), + [anon_sym_signed] = ACTIONS(7644), + [anon_sym_unsigned] = ACTIONS(7644), + [anon_sym_long] = ACTIONS(7644), + [anon_sym_short] = ACTIONS(7644), + [sym_primitive_type] = ACTIONS(7644), + [anon_sym_enum] = ACTIONS(7644), + [anon_sym_struct] = ACTIONS(7644), + [anon_sym_union] = ACTIONS(7644), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7650), - [anon_sym_ATend] = ACTIONS(7652), - [sym_optional] = ACTIONS(7652), - [sym_required] = ACTIONS(7652), - [anon_sym_ATproperty] = ACTIONS(7652), - [sym_method_attribute_specifier] = ACTIONS(7650), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7650), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7650), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7650), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7650), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7650), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7650), - [anon_sym_NS_AVAILABLE] = ACTIONS(7650), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7650), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7650), - [anon_sym_API_AVAILABLE] = ACTIONS(7650), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7650), - [anon_sym_API_DEPRECATED] = ACTIONS(7650), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7650), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7650), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7650), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7650), - [anon_sym___deprecated_msg] = ACTIONS(7650), - [anon_sym___deprecated_enum_msg] = ACTIONS(7650), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7650), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7650), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7650), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7650), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7650), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7650), - [anon_sym_typeof] = ACTIONS(7650), - [anon_sym___typeof] = ACTIONS(7650), - [anon_sym___typeof__] = ACTIONS(7650), - [sym_id] = ACTIONS(7650), - [sym_instancetype] = ACTIONS(7650), - [sym_Class] = ACTIONS(7650), - [sym_SEL] = ACTIONS(7650), - [sym_IMP] = ACTIONS(7650), - [sym_BOOL] = ACTIONS(7650), - [sym_auto] = ACTIONS(7650), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7644), + [anon_sym_ATend] = ACTIONS(7646), + [sym_optional] = ACTIONS(7646), + [sym_required] = ACTIONS(7646), + [anon_sym_ATproperty] = ACTIONS(7646), + [sym_method_attribute_specifier] = ACTIONS(7644), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7644), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7644), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7644), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7644), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7644), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7644), + [anon_sym_NS_AVAILABLE] = ACTIONS(7644), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7644), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7644), + [anon_sym_API_AVAILABLE] = ACTIONS(7644), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7644), + [anon_sym_API_DEPRECATED] = ACTIONS(7644), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7644), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7644), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7644), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7644), + [anon_sym___deprecated_msg] = ACTIONS(7644), + [anon_sym___deprecated_enum_msg] = ACTIONS(7644), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7644), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7644), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7644), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7644), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7644), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7644), + [anon_sym_NS_ENUM] = ACTIONS(7644), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7644), + [anon_sym_NS_OPTIONS] = ACTIONS(7644), + [anon_sym_typeof] = ACTIONS(7644), + [anon_sym___typeof] = ACTIONS(7644), + [anon_sym___typeof__] = ACTIONS(7644), + [sym_id] = ACTIONS(7644), + [sym_instancetype] = ACTIONS(7644), + [sym_Class] = ACTIONS(7644), + [sym_SEL] = ACTIONS(7644), + [sym_IMP] = ACTIONS(7644), + [sym_BOOL] = ACTIONS(7644), + [sym_auto] = ACTIONS(7644), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -512760,100 +505369,409 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3199] = { - [sym_identifier] = ACTIONS(7654), - [aux_sym_preproc_def_token1] = ACTIONS(7656), - [anon_sym_DASH] = ACTIONS(7656), - [anon_sym_PLUS] = ACTIONS(7656), - [anon_sym_typedef] = ACTIONS(7654), - [anon_sym_extern] = ACTIONS(7654), - [anon_sym___attribute] = ACTIONS(7654), - [anon_sym___attribute__] = ACTIONS(7654), - [anon_sym___declspec] = ACTIONS(7654), - [anon_sym_static] = ACTIONS(7654), - [anon_sym_auto] = ACTIONS(7654), - [anon_sym_register] = ACTIONS(7654), - [anon_sym_inline] = ACTIONS(7654), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7654), - [anon_sym_const] = ACTIONS(7654), - [anon_sym_volatile] = ACTIONS(7654), - [anon_sym_restrict] = ACTIONS(7654), - [anon_sym__Atomic] = ACTIONS(7654), - [anon_sym_in] = ACTIONS(7654), - [anon_sym_out] = ACTIONS(7654), - [anon_sym_inout] = ACTIONS(7654), - [anon_sym_bycopy] = ACTIONS(7654), - [anon_sym_byref] = ACTIONS(7654), - [anon_sym_oneway] = ACTIONS(7654), - [anon_sym__Nullable] = ACTIONS(7654), - [anon_sym__Nonnull] = ACTIONS(7654), - [anon_sym__Nullable_result] = ACTIONS(7654), - [anon_sym__Null_unspecified] = ACTIONS(7654), - [anon_sym___autoreleasing] = ACTIONS(7654), - [anon_sym___nullable] = ACTIONS(7654), - [anon_sym___nonnull] = ACTIONS(7654), - [anon_sym___strong] = ACTIONS(7654), - [anon_sym___weak] = ACTIONS(7654), - [anon_sym___bridge] = ACTIONS(7654), - [anon_sym___bridge_transfer] = ACTIONS(7654), - [anon_sym___bridge_retained] = ACTIONS(7654), - [anon_sym___unsafe_unretained] = ACTIONS(7654), - [anon_sym___block] = ACTIONS(7654), - [anon_sym___kindof] = ACTIONS(7654), - [anon_sym___unused] = ACTIONS(7654), - [anon_sym__Complex] = ACTIONS(7654), - [anon_sym___complex] = ACTIONS(7654), - [anon_sym_IBOutlet] = ACTIONS(7654), - [anon_sym_IBInspectable] = ACTIONS(7654), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7654), - [anon_sym_signed] = ACTIONS(7654), - [anon_sym_unsigned] = ACTIONS(7654), - [anon_sym_long] = ACTIONS(7654), - [anon_sym_short] = ACTIONS(7654), + [3149] = { + [sym_identifier] = ACTIONS(7648), + [aux_sym_preproc_def_token1] = ACTIONS(7650), + [anon_sym_DASH] = ACTIONS(7650), + [anon_sym_PLUS] = ACTIONS(7650), + [anon_sym_typedef] = ACTIONS(7648), + [anon_sym_extern] = ACTIONS(7648), + [anon_sym___attribute] = ACTIONS(7648), + [anon_sym___attribute__] = ACTIONS(7648), + [anon_sym___declspec] = ACTIONS(7648), + [anon_sym_static] = ACTIONS(7648), + [anon_sym_auto] = ACTIONS(7648), + [anon_sym_register] = ACTIONS(7648), + [anon_sym_inline] = ACTIONS(7648), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7648), + [anon_sym_const] = ACTIONS(7648), + [anon_sym_volatile] = ACTIONS(7648), + [anon_sym_restrict] = ACTIONS(7648), + [anon_sym__Atomic] = ACTIONS(7648), + [anon_sym_in] = ACTIONS(7648), + [anon_sym_out] = ACTIONS(7648), + [anon_sym_inout] = ACTIONS(7648), + [anon_sym_bycopy] = ACTIONS(7648), + [anon_sym_byref] = ACTIONS(7648), + [anon_sym_oneway] = ACTIONS(7648), + [anon_sym__Nullable] = ACTIONS(7648), + [anon_sym__Nonnull] = ACTIONS(7648), + [anon_sym__Nullable_result] = ACTIONS(7648), + [anon_sym__Null_unspecified] = ACTIONS(7648), + [anon_sym___autoreleasing] = ACTIONS(7648), + [anon_sym___nullable] = ACTIONS(7648), + [anon_sym___nonnull] = ACTIONS(7648), + [anon_sym___strong] = ACTIONS(7648), + [anon_sym___weak] = ACTIONS(7648), + [anon_sym___bridge] = ACTIONS(7648), + [anon_sym___bridge_transfer] = ACTIONS(7648), + [anon_sym___bridge_retained] = ACTIONS(7648), + [anon_sym___unsafe_unretained] = ACTIONS(7648), + [anon_sym___block] = ACTIONS(7648), + [anon_sym___kindof] = ACTIONS(7648), + [anon_sym___unused] = ACTIONS(7648), + [anon_sym__Complex] = ACTIONS(7648), + [anon_sym___complex] = ACTIONS(7648), + [anon_sym_IBOutlet] = ACTIONS(7648), + [anon_sym_IBInspectable] = ACTIONS(7648), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7648), + [anon_sym_signed] = ACTIONS(7648), + [anon_sym_unsigned] = ACTIONS(7648), + [anon_sym_long] = ACTIONS(7648), + [anon_sym_short] = ACTIONS(7648), + [sym_primitive_type] = ACTIONS(7648), + [anon_sym_enum] = ACTIONS(7648), + [anon_sym_struct] = ACTIONS(7648), + [anon_sym_union] = ACTIONS(7648), + [sym_comment] = ACTIONS(3), + [sym__ns_assume_nonnull_declaration] = ACTIONS(7648), + [anon_sym_ATend] = ACTIONS(7650), + [sym_optional] = ACTIONS(7650), + [sym_required] = ACTIONS(7650), + [anon_sym_ATproperty] = ACTIONS(7650), + [sym_method_attribute_specifier] = ACTIONS(7648), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7648), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7648), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7648), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7648), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7648), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7648), + [anon_sym_NS_AVAILABLE] = ACTIONS(7648), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7648), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7648), + [anon_sym_API_AVAILABLE] = ACTIONS(7648), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7648), + [anon_sym_API_DEPRECATED] = ACTIONS(7648), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7648), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7648), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7648), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7648), + [anon_sym___deprecated_msg] = ACTIONS(7648), + [anon_sym___deprecated_enum_msg] = ACTIONS(7648), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7648), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7648), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7648), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7648), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7648), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7648), + [anon_sym_NS_ENUM] = ACTIONS(7648), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7648), + [anon_sym_NS_OPTIONS] = ACTIONS(7648), + [anon_sym_typeof] = ACTIONS(7648), + [anon_sym___typeof] = ACTIONS(7648), + [anon_sym___typeof__] = ACTIONS(7648), + [sym_id] = ACTIONS(7648), + [sym_instancetype] = ACTIONS(7648), + [sym_Class] = ACTIONS(7648), + [sym_SEL] = ACTIONS(7648), + [sym_IMP] = ACTIONS(7648), + [sym_BOOL] = ACTIONS(7648), + [sym_auto] = ACTIONS(7648), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3150] = { + [sym_identifier] = ACTIONS(1680), + [anon_sym_extern] = ACTIONS(1680), + [anon_sym___attribute] = ACTIONS(1680), + [anon_sym___attribute__] = ACTIONS(1680), + [anon_sym___declspec] = ACTIONS(1680), + [anon_sym___cdecl] = ACTIONS(1680), + [anon_sym___clrcall] = ACTIONS(1680), + [anon_sym___stdcall] = ACTIONS(1680), + [anon_sym___fastcall] = ACTIONS(1680), + [anon_sym___thiscall] = ACTIONS(1680), + [anon_sym___vectorcall] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_static] = ACTIONS(1680), + [anon_sym_auto] = ACTIONS(1680), + [anon_sym_register] = ACTIONS(1680), + [anon_sym_inline] = ACTIONS(1680), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1680), + [anon_sym_const] = ACTIONS(1680), + [anon_sym_volatile] = ACTIONS(1680), + [anon_sym_restrict] = ACTIONS(1680), + [anon_sym__Atomic] = ACTIONS(1680), + [anon_sym_in] = ACTIONS(1680), + [anon_sym_out] = ACTIONS(1680), + [anon_sym_inout] = ACTIONS(1680), + [anon_sym_bycopy] = ACTIONS(1680), + [anon_sym_byref] = ACTIONS(1680), + [anon_sym_oneway] = ACTIONS(1680), + [anon_sym__Nullable] = ACTIONS(1680), + [anon_sym__Nonnull] = ACTIONS(1680), + [anon_sym__Nullable_result] = ACTIONS(1680), + [anon_sym__Null_unspecified] = ACTIONS(1680), + [anon_sym___autoreleasing] = ACTIONS(1680), + [anon_sym___nullable] = ACTIONS(1680), + [anon_sym___nonnull] = ACTIONS(1680), + [anon_sym___strong] = ACTIONS(1680), + [anon_sym___weak] = ACTIONS(1680), + [anon_sym___bridge] = ACTIONS(1680), + [anon_sym___bridge_transfer] = ACTIONS(1680), + [anon_sym___bridge_retained] = ACTIONS(1680), + [anon_sym___unsafe_unretained] = ACTIONS(1680), + [anon_sym___block] = ACTIONS(1680), + [anon_sym___kindof] = ACTIONS(1680), + [anon_sym___unused] = ACTIONS(1680), + [anon_sym__Complex] = ACTIONS(1680), + [anon_sym___complex] = ACTIONS(1680), + [anon_sym_IBOutlet] = ACTIONS(1680), + [anon_sym_IBInspectable] = ACTIONS(1680), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1680), + [anon_sym_signed] = ACTIONS(1680), + [anon_sym_unsigned] = ACTIONS(1680), + [anon_sym_long] = ACTIONS(1680), + [anon_sym_short] = ACTIONS(1680), + [sym_primitive_type] = ACTIONS(1680), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(1680), + [anon_sym_union] = ACTIONS(1680), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(1680), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1680), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1680), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1680), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1680), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1680), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1680), + [anon_sym_NS_AVAILABLE] = ACTIONS(1680), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1680), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_API_AVAILABLE] = ACTIONS(1680), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1680), + [anon_sym_API_DEPRECATED] = ACTIONS(1680), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1680), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1680), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1680), + [anon_sym___deprecated_msg] = ACTIONS(1680), + [anon_sym___deprecated_enum_msg] = ACTIONS(1680), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1680), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1680), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1680), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1680), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1680), + [anon_sym_NS_ENUM] = ACTIONS(1680), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1680), + [anon_sym_NS_OPTIONS] = ACTIONS(1680), + [anon_sym_typeof] = ACTIONS(1680), + [anon_sym___typeof] = ACTIONS(1680), + [anon_sym___typeof__] = ACTIONS(1680), + [sym_id] = ACTIONS(1680), + [sym_instancetype] = ACTIONS(1680), + [sym_Class] = ACTIONS(1680), + [sym_SEL] = ACTIONS(1680), + [sym_IMP] = ACTIONS(1680), + [sym_BOOL] = ACTIONS(1680), + [sym_auto] = ACTIONS(1680), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3151] = { + [sym_attribute_specifier] = STATE(3766), + [sym_type_qualifier] = STATE(3764), + [sym__type_specifier] = STATE(3506), + [sym_sized_type_specifier] = STATE(3506), + [sym_enum_specifier] = STATE(3506), + [sym_struct_specifier] = STATE(3506), + [sym_union_specifier] = STATE(3506), + [sym_macro_type_specifier] = STATE(3506), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3882), + [sym_availability_attribute_specifier] = STATE(3882), + [sym_ns_enum_specifier] = STATE(3466), + [sym_typeof_specifier] = STATE(3506), + [sym_atomic_specifier] = STATE(3506), + [sym_generic_type_specifier] = STATE(3506), + [aux_sym_type_definition_repeat1] = STATE(3764), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym___attribute] = ACTIONS(7600), + [anon_sym___attribute__] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7652), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7608), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_NS_AVAILABLE] = ACTIONS(7614), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7614), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_API_AVAILABLE] = ACTIONS(7614), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_API_DEPRECATED] = ACTIONS(7614), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7614), + [anon_sym___deprecated_msg] = ACTIONS(7614), + [anon_sym___deprecated_enum_msg] = ACTIONS(7614), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7652), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7652), + [sym_IMP] = ACTIONS(7652), + [sym_BOOL] = ACTIONS(7652), + [sym_auto] = ACTIONS(7652), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3152] = { + [sym_attribute_specifier] = STATE(3743), + [sym_type_qualifier] = STATE(3752), + [sym__type_specifier] = STATE(3569), + [sym_sized_type_specifier] = STATE(3569), + [sym_enum_specifier] = STATE(3569), + [sym_struct_specifier] = STATE(3569), + [sym_union_specifier] = STATE(3569), + [sym_macro_type_specifier] = STATE(3569), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3882), + [sym_availability_attribute_specifier] = STATE(3882), + [sym_ns_enum_specifier] = STATE(3445), + [sym_typeof_specifier] = STATE(3569), + [sym_atomic_specifier] = STATE(3569), + [sym_generic_type_specifier] = STATE(3569), + [aux_sym_type_definition_repeat1] = STATE(3752), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym___attribute] = ACTIONS(7600), + [anon_sym___attribute__] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), [sym_primitive_type] = ACTIONS(7654), - [anon_sym_enum] = ACTIONS(7654), - [anon_sym_NS_ENUM] = ACTIONS(7654), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7654), - [anon_sym_NS_OPTIONS] = ACTIONS(7654), - [anon_sym_struct] = ACTIONS(7654), - [anon_sym_union] = ACTIONS(7654), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7654), - [anon_sym_ATend] = ACTIONS(7656), - [sym_optional] = ACTIONS(7656), - [sym_required] = ACTIONS(7656), - [anon_sym_ATproperty] = ACTIONS(7656), - [sym_method_attribute_specifier] = ACTIONS(7654), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7654), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7654), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7654), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7654), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7654), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7654), - [anon_sym_NS_AVAILABLE] = ACTIONS(7654), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7654), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7654), - [anon_sym_API_AVAILABLE] = ACTIONS(7654), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7654), - [anon_sym_API_DEPRECATED] = ACTIONS(7654), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7654), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7654), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7654), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7654), - [anon_sym___deprecated_msg] = ACTIONS(7654), - [anon_sym___deprecated_enum_msg] = ACTIONS(7654), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7654), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7654), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7654), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7654), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7654), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7654), - [anon_sym_typeof] = ACTIONS(7654), - [anon_sym___typeof] = ACTIONS(7654), - [anon_sym___typeof__] = ACTIONS(7654), - [sym_id] = ACTIONS(7654), + [sym_method_attribute_specifier] = ACTIONS(7608), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_NS_AVAILABLE] = ACTIONS(7614), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7614), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_API_AVAILABLE] = ACTIONS(7614), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_API_DEPRECATED] = ACTIONS(7614), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7614), + [anon_sym___deprecated_msg] = ACTIONS(7614), + [anon_sym___deprecated_enum_msg] = ACTIONS(7614), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), [sym_instancetype] = ACTIONS(7654), - [sym_Class] = ACTIONS(7654), + [sym_Class] = ACTIONS(1163), [sym_SEL] = ACTIONS(7654), [sym_IMP] = ACTIONS(7654), [sym_BOOL] = ACTIONS(7654), @@ -512865,100 +505783,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3200] = { - [sym_identifier] = ACTIONS(7658), - [aux_sym_preproc_def_token1] = ACTIONS(7660), - [anon_sym_DASH] = ACTIONS(7660), - [anon_sym_PLUS] = ACTIONS(7660), - [anon_sym_typedef] = ACTIONS(7658), - [anon_sym_extern] = ACTIONS(7658), - [anon_sym___attribute] = ACTIONS(7658), - [anon_sym___attribute__] = ACTIONS(7658), - [anon_sym___declspec] = ACTIONS(7658), - [anon_sym_static] = ACTIONS(7658), - [anon_sym_auto] = ACTIONS(7658), - [anon_sym_register] = ACTIONS(7658), - [anon_sym_inline] = ACTIONS(7658), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7658), - [anon_sym_const] = ACTIONS(7658), - [anon_sym_volatile] = ACTIONS(7658), - [anon_sym_restrict] = ACTIONS(7658), - [anon_sym__Atomic] = ACTIONS(7658), - [anon_sym_in] = ACTIONS(7658), - [anon_sym_out] = ACTIONS(7658), - [anon_sym_inout] = ACTIONS(7658), - [anon_sym_bycopy] = ACTIONS(7658), - [anon_sym_byref] = ACTIONS(7658), - [anon_sym_oneway] = ACTIONS(7658), - [anon_sym__Nullable] = ACTIONS(7658), - [anon_sym__Nonnull] = ACTIONS(7658), - [anon_sym__Nullable_result] = ACTIONS(7658), - [anon_sym__Null_unspecified] = ACTIONS(7658), - [anon_sym___autoreleasing] = ACTIONS(7658), - [anon_sym___nullable] = ACTIONS(7658), - [anon_sym___nonnull] = ACTIONS(7658), - [anon_sym___strong] = ACTIONS(7658), - [anon_sym___weak] = ACTIONS(7658), - [anon_sym___bridge] = ACTIONS(7658), - [anon_sym___bridge_transfer] = ACTIONS(7658), - [anon_sym___bridge_retained] = ACTIONS(7658), - [anon_sym___unsafe_unretained] = ACTIONS(7658), - [anon_sym___block] = ACTIONS(7658), - [anon_sym___kindof] = ACTIONS(7658), - [anon_sym___unused] = ACTIONS(7658), - [anon_sym__Complex] = ACTIONS(7658), - [anon_sym___complex] = ACTIONS(7658), - [anon_sym_IBOutlet] = ACTIONS(7658), - [anon_sym_IBInspectable] = ACTIONS(7658), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7658), - [anon_sym_signed] = ACTIONS(7658), - [anon_sym_unsigned] = ACTIONS(7658), - [anon_sym_long] = ACTIONS(7658), - [anon_sym_short] = ACTIONS(7658), - [sym_primitive_type] = ACTIONS(7658), - [anon_sym_enum] = ACTIONS(7658), - [anon_sym_NS_ENUM] = ACTIONS(7658), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7658), - [anon_sym_NS_OPTIONS] = ACTIONS(7658), - [anon_sym_struct] = ACTIONS(7658), - [anon_sym_union] = ACTIONS(7658), + [3153] = { + [sym_attribute_specifier] = STATE(3771), + [sym_type_qualifier] = STATE(3769), + [sym__type_specifier] = STATE(3507), + [sym_sized_type_specifier] = STATE(3507), + [sym_enum_specifier] = STATE(3507), + [sym_struct_specifier] = STATE(3507), + [sym_union_specifier] = STATE(3507), + [sym_macro_type_specifier] = STATE(3507), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3882), + [sym_availability_attribute_specifier] = STATE(3882), + [sym_ns_enum_specifier] = STATE(3483), + [sym_typeof_specifier] = STATE(3507), + [sym_atomic_specifier] = STATE(3507), + [sym_generic_type_specifier] = STATE(3507), + [aux_sym_type_definition_repeat1] = STATE(3769), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym___attribute] = ACTIONS(7600), + [anon_sym___attribute__] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7656), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7658), - [anon_sym_ATend] = ACTIONS(7660), - [sym_optional] = ACTIONS(7660), - [sym_required] = ACTIONS(7660), - [anon_sym_ATproperty] = ACTIONS(7660), - [sym_method_attribute_specifier] = ACTIONS(7658), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7658), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7658), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7658), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7658), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7658), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7658), - [anon_sym_NS_AVAILABLE] = ACTIONS(7658), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7658), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7658), - [anon_sym_API_AVAILABLE] = ACTIONS(7658), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7658), - [anon_sym_API_DEPRECATED] = ACTIONS(7658), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7658), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7658), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7658), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7658), - [anon_sym___deprecated_msg] = ACTIONS(7658), - [anon_sym___deprecated_enum_msg] = ACTIONS(7658), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7658), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7658), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7658), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7658), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7658), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7658), - [anon_sym_typeof] = ACTIONS(7658), - [anon_sym___typeof] = ACTIONS(7658), - [anon_sym___typeof__] = ACTIONS(7658), - [sym_id] = ACTIONS(7658), + [sym_method_attribute_specifier] = ACTIONS(7608), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_NS_AVAILABLE] = ACTIONS(7614), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7614), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_API_AVAILABLE] = ACTIONS(7614), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_API_DEPRECATED] = ACTIONS(7614), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7614), + [anon_sym___deprecated_msg] = ACTIONS(7614), + [anon_sym___deprecated_enum_msg] = ACTIONS(7614), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7656), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7656), + [sym_IMP] = ACTIONS(7656), + [sym_BOOL] = ACTIONS(7656), + [sym_auto] = ACTIONS(7656), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3154] = { + [sym_identifier] = ACTIONS(1684), + [anon_sym_extern] = ACTIONS(1684), + [anon_sym___attribute] = ACTIONS(1684), + [anon_sym___attribute__] = ACTIONS(1684), + [anon_sym___declspec] = ACTIONS(1684), + [anon_sym___cdecl] = ACTIONS(1684), + [anon_sym___clrcall] = ACTIONS(1684), + [anon_sym___stdcall] = ACTIONS(1684), + [anon_sym___fastcall] = ACTIONS(1684), + [anon_sym___thiscall] = ACTIONS(1684), + [anon_sym___vectorcall] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_static] = ACTIONS(1684), + [anon_sym_auto] = ACTIONS(1684), + [anon_sym_register] = ACTIONS(1684), + [anon_sym_inline] = ACTIONS(1684), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1684), + [anon_sym_const] = ACTIONS(1684), + [anon_sym_volatile] = ACTIONS(1684), + [anon_sym_restrict] = ACTIONS(1684), + [anon_sym__Atomic] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1684), + [anon_sym_out] = ACTIONS(1684), + [anon_sym_inout] = ACTIONS(1684), + [anon_sym_bycopy] = ACTIONS(1684), + [anon_sym_byref] = ACTIONS(1684), + [anon_sym_oneway] = ACTIONS(1684), + [anon_sym__Nullable] = ACTIONS(1684), + [anon_sym__Nonnull] = ACTIONS(1684), + [anon_sym__Nullable_result] = ACTIONS(1684), + [anon_sym__Null_unspecified] = ACTIONS(1684), + [anon_sym___autoreleasing] = ACTIONS(1684), + [anon_sym___nullable] = ACTIONS(1684), + [anon_sym___nonnull] = ACTIONS(1684), + [anon_sym___strong] = ACTIONS(1684), + [anon_sym___weak] = ACTIONS(1684), + [anon_sym___bridge] = ACTIONS(1684), + [anon_sym___bridge_transfer] = ACTIONS(1684), + [anon_sym___bridge_retained] = ACTIONS(1684), + [anon_sym___unsafe_unretained] = ACTIONS(1684), + [anon_sym___block] = ACTIONS(1684), + [anon_sym___kindof] = ACTIONS(1684), + [anon_sym___unused] = ACTIONS(1684), + [anon_sym__Complex] = ACTIONS(1684), + [anon_sym___complex] = ACTIONS(1684), + [anon_sym_IBOutlet] = ACTIONS(1684), + [anon_sym_IBInspectable] = ACTIONS(1684), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1684), + [anon_sym_signed] = ACTIONS(1684), + [anon_sym_unsigned] = ACTIONS(1684), + [anon_sym_long] = ACTIONS(1684), + [anon_sym_short] = ACTIONS(1684), + [sym_primitive_type] = ACTIONS(1684), + [anon_sym_enum] = ACTIONS(1684), + [anon_sym_struct] = ACTIONS(1684), + [anon_sym_union] = ACTIONS(1684), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(1684), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1684), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1684), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1684), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1684), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1684), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1684), + [anon_sym_NS_AVAILABLE] = ACTIONS(1684), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1684), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_API_AVAILABLE] = ACTIONS(1684), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1684), + [anon_sym_API_DEPRECATED] = ACTIONS(1684), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1684), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1684), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1684), + [anon_sym___deprecated_msg] = ACTIONS(1684), + [anon_sym___deprecated_enum_msg] = ACTIONS(1684), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1684), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1684), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1684), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1684), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1684), + [anon_sym_NS_ENUM] = ACTIONS(1684), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1684), + [anon_sym_NS_OPTIONS] = ACTIONS(1684), + [anon_sym_typeof] = ACTIONS(1684), + [anon_sym___typeof] = ACTIONS(1684), + [anon_sym___typeof__] = ACTIONS(1684), + [sym_id] = ACTIONS(1684), + [sym_instancetype] = ACTIONS(1684), + [sym_Class] = ACTIONS(1684), + [sym_SEL] = ACTIONS(1684), + [sym_IMP] = ACTIONS(1684), + [sym_BOOL] = ACTIONS(1684), + [sym_auto] = ACTIONS(1684), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3155] = { + [sym_attribute_specifier] = STATE(3747), + [sym_type_qualifier] = STATE(3722), + [sym__type_specifier] = STATE(3550), + [sym_sized_type_specifier] = STATE(3550), + [sym_enum_specifier] = STATE(3550), + [sym_struct_specifier] = STATE(3550), + [sym_union_specifier] = STATE(3550), + [sym_macro_type_specifier] = STATE(3550), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3882), + [sym_availability_attribute_specifier] = STATE(3882), + [sym_ns_enum_specifier] = STATE(3431), + [sym_typeof_specifier] = STATE(3550), + [sym_atomic_specifier] = STATE(3550), + [sym_generic_type_specifier] = STATE(3550), + [aux_sym_type_definition_repeat1] = STATE(3722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym___attribute] = ACTIONS(7600), + [anon_sym___attribute__] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7658), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7608), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_NS_AVAILABLE] = ACTIONS(7614), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7614), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_API_AVAILABLE] = ACTIONS(7614), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_API_DEPRECATED] = ACTIONS(7614), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7614), + [anon_sym___deprecated_msg] = ACTIONS(7614), + [anon_sym___deprecated_enum_msg] = ACTIONS(7614), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), [sym_instancetype] = ACTIONS(7658), - [sym_Class] = ACTIONS(7658), + [sym_Class] = ACTIONS(1163), [sym_SEL] = ACTIONS(7658), [sym_IMP] = ACTIONS(7658), [sym_BOOL] = ACTIONS(7658), @@ -512970,100 +506092,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3201] = { - [sym_identifier] = ACTIONS(7662), - [aux_sym_preproc_def_token1] = ACTIONS(7664), - [anon_sym_DASH] = ACTIONS(7664), - [anon_sym_PLUS] = ACTIONS(7664), - [anon_sym_typedef] = ACTIONS(7662), - [anon_sym_extern] = ACTIONS(7662), - [anon_sym___attribute] = ACTIONS(7662), - [anon_sym___attribute__] = ACTIONS(7662), - [anon_sym___declspec] = ACTIONS(7662), - [anon_sym_static] = ACTIONS(7662), - [anon_sym_auto] = ACTIONS(7662), - [anon_sym_register] = ACTIONS(7662), - [anon_sym_inline] = ACTIONS(7662), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7662), - [anon_sym_const] = ACTIONS(7662), - [anon_sym_volatile] = ACTIONS(7662), - [anon_sym_restrict] = ACTIONS(7662), - [anon_sym__Atomic] = ACTIONS(7662), - [anon_sym_in] = ACTIONS(7662), - [anon_sym_out] = ACTIONS(7662), - [anon_sym_inout] = ACTIONS(7662), - [anon_sym_bycopy] = ACTIONS(7662), - [anon_sym_byref] = ACTIONS(7662), - [anon_sym_oneway] = ACTIONS(7662), - [anon_sym__Nullable] = ACTIONS(7662), - [anon_sym__Nonnull] = ACTIONS(7662), - [anon_sym__Nullable_result] = ACTIONS(7662), - [anon_sym__Null_unspecified] = ACTIONS(7662), - [anon_sym___autoreleasing] = ACTIONS(7662), - [anon_sym___nullable] = ACTIONS(7662), - [anon_sym___nonnull] = ACTIONS(7662), - [anon_sym___strong] = ACTIONS(7662), - [anon_sym___weak] = ACTIONS(7662), - [anon_sym___bridge] = ACTIONS(7662), - [anon_sym___bridge_transfer] = ACTIONS(7662), - [anon_sym___bridge_retained] = ACTIONS(7662), - [anon_sym___unsafe_unretained] = ACTIONS(7662), - [anon_sym___block] = ACTIONS(7662), - [anon_sym___kindof] = ACTIONS(7662), - [anon_sym___unused] = ACTIONS(7662), - [anon_sym__Complex] = ACTIONS(7662), - [anon_sym___complex] = ACTIONS(7662), - [anon_sym_IBOutlet] = ACTIONS(7662), - [anon_sym_IBInspectable] = ACTIONS(7662), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7662), - [anon_sym_signed] = ACTIONS(7662), - [anon_sym_unsigned] = ACTIONS(7662), - [anon_sym_long] = ACTIONS(7662), - [anon_sym_short] = ACTIONS(7662), - [sym_primitive_type] = ACTIONS(7662), - [anon_sym_enum] = ACTIONS(7662), - [anon_sym_NS_ENUM] = ACTIONS(7662), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7662), - [anon_sym_NS_OPTIONS] = ACTIONS(7662), - [anon_sym_struct] = ACTIONS(7662), - [anon_sym_union] = ACTIONS(7662), + [3156] = { + [sym_attribute_specifier] = STATE(3781), + [sym_type_qualifier] = STATE(3782), + [sym__type_specifier] = STATE(3511), + [sym_sized_type_specifier] = STATE(3511), + [sym_enum_specifier] = STATE(3511), + [sym_struct_specifier] = STATE(3511), + [sym_union_specifier] = STATE(3511), + [sym_macro_type_specifier] = STATE(3511), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3882), + [sym_availability_attribute_specifier] = STATE(3882), + [sym_ns_enum_specifier] = STATE(3511), + [sym_typeof_specifier] = STATE(3511), + [sym_atomic_specifier] = STATE(3511), + [sym_generic_type_specifier] = STATE(3511), + [aux_sym_type_definition_repeat1] = STATE(3782), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym___attribute] = ACTIONS(7600), + [anon_sym___attribute__] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7660), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7662), - [anon_sym_ATend] = ACTIONS(7664), - [sym_optional] = ACTIONS(7664), - [sym_required] = ACTIONS(7664), - [anon_sym_ATproperty] = ACTIONS(7664), - [sym_method_attribute_specifier] = ACTIONS(7662), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7662), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7662), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7662), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7662), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7662), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7662), - [anon_sym_NS_AVAILABLE] = ACTIONS(7662), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7662), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7662), - [anon_sym_API_AVAILABLE] = ACTIONS(7662), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7662), - [anon_sym_API_DEPRECATED] = ACTIONS(7662), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7662), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7662), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7662), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7662), - [anon_sym___deprecated_msg] = ACTIONS(7662), - [anon_sym___deprecated_enum_msg] = ACTIONS(7662), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7662), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7662), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7662), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7662), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7662), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7662), - [anon_sym_typeof] = ACTIONS(7662), - [anon_sym___typeof] = ACTIONS(7662), - [anon_sym___typeof__] = ACTIONS(7662), - [sym_id] = ACTIONS(7662), + [sym_method_attribute_specifier] = ACTIONS(7608), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_NS_AVAILABLE] = ACTIONS(7614), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7614), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_API_AVAILABLE] = ACTIONS(7614), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_API_DEPRECATED] = ACTIONS(7614), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7614), + [anon_sym___deprecated_msg] = ACTIONS(7614), + [anon_sym___deprecated_enum_msg] = ACTIONS(7614), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7660), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7660), + [sym_IMP] = ACTIONS(7660), + [sym_BOOL] = ACTIONS(7660), + [sym_auto] = ACTIONS(7660), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3157] = { + [sym_attribute_specifier] = STATE(3729), + [sym_type_qualifier] = STATE(3730), + [sym__type_specifier] = STATE(3545), + [sym_sized_type_specifier] = STATE(3545), + [sym_enum_specifier] = STATE(3545), + [sym_struct_specifier] = STATE(3545), + [sym_union_specifier] = STATE(3545), + [sym_macro_type_specifier] = STATE(3545), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3882), + [sym_availability_attribute_specifier] = STATE(3882), + [sym_ns_enum_specifier] = STATE(3459), + [sym_typeof_specifier] = STATE(3545), + [sym_atomic_specifier] = STATE(3545), + [sym_generic_type_specifier] = STATE(3545), + [aux_sym_type_definition_repeat1] = STATE(3730), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym___attribute] = ACTIONS(7600), + [anon_sym___attribute__] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7662), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7608), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_NS_AVAILABLE] = ACTIONS(7614), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7614), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_API_AVAILABLE] = ACTIONS(7614), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_API_DEPRECATED] = ACTIONS(7614), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7614), + [anon_sym___deprecated_msg] = ACTIONS(7614), + [anon_sym___deprecated_enum_msg] = ACTIONS(7614), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), [sym_instancetype] = ACTIONS(7662), - [sym_Class] = ACTIONS(7662), + [sym_Class] = ACTIONS(1163), [sym_SEL] = ACTIONS(7662), [sym_IMP] = ACTIONS(7662), [sym_BOOL] = ACTIONS(7662), @@ -513075,100 +506298,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3202] = { - [sym_identifier] = ACTIONS(7666), - [aux_sym_preproc_def_token1] = ACTIONS(7668), - [anon_sym_DASH] = ACTIONS(7668), - [anon_sym_PLUS] = ACTIONS(7668), - [anon_sym_typedef] = ACTIONS(7666), - [anon_sym_extern] = ACTIONS(7666), - [anon_sym___attribute] = ACTIONS(7666), - [anon_sym___attribute__] = ACTIONS(7666), - [anon_sym___declspec] = ACTIONS(7666), - [anon_sym_static] = ACTIONS(7666), - [anon_sym_auto] = ACTIONS(7666), - [anon_sym_register] = ACTIONS(7666), - [anon_sym_inline] = ACTIONS(7666), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7666), - [anon_sym_const] = ACTIONS(7666), - [anon_sym_volatile] = ACTIONS(7666), - [anon_sym_restrict] = ACTIONS(7666), - [anon_sym__Atomic] = ACTIONS(7666), - [anon_sym_in] = ACTIONS(7666), - [anon_sym_out] = ACTIONS(7666), - [anon_sym_inout] = ACTIONS(7666), - [anon_sym_bycopy] = ACTIONS(7666), - [anon_sym_byref] = ACTIONS(7666), - [anon_sym_oneway] = ACTIONS(7666), - [anon_sym__Nullable] = ACTIONS(7666), - [anon_sym__Nonnull] = ACTIONS(7666), - [anon_sym__Nullable_result] = ACTIONS(7666), - [anon_sym__Null_unspecified] = ACTIONS(7666), - [anon_sym___autoreleasing] = ACTIONS(7666), - [anon_sym___nullable] = ACTIONS(7666), - [anon_sym___nonnull] = ACTIONS(7666), - [anon_sym___strong] = ACTIONS(7666), - [anon_sym___weak] = ACTIONS(7666), - [anon_sym___bridge] = ACTIONS(7666), - [anon_sym___bridge_transfer] = ACTIONS(7666), - [anon_sym___bridge_retained] = ACTIONS(7666), - [anon_sym___unsafe_unretained] = ACTIONS(7666), - [anon_sym___block] = ACTIONS(7666), - [anon_sym___kindof] = ACTIONS(7666), - [anon_sym___unused] = ACTIONS(7666), - [anon_sym__Complex] = ACTIONS(7666), - [anon_sym___complex] = ACTIONS(7666), - [anon_sym_IBOutlet] = ACTIONS(7666), - [anon_sym_IBInspectable] = ACTIONS(7666), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7666), - [anon_sym_signed] = ACTIONS(7666), - [anon_sym_unsigned] = ACTIONS(7666), - [anon_sym_long] = ACTIONS(7666), - [anon_sym_short] = ACTIONS(7666), - [sym_primitive_type] = ACTIONS(7666), - [anon_sym_enum] = ACTIONS(7666), - [anon_sym_NS_ENUM] = ACTIONS(7666), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7666), - [anon_sym_NS_OPTIONS] = ACTIONS(7666), - [anon_sym_struct] = ACTIONS(7666), - [anon_sym_union] = ACTIONS(7666), + [3158] = { + [sym_attribute_specifier] = STATE(3773), + [sym_type_qualifier] = STATE(3774), + [sym__type_specifier] = STATE(3546), + [sym_sized_type_specifier] = STATE(3546), + [sym_enum_specifier] = STATE(3546), + [sym_struct_specifier] = STATE(3546), + [sym_union_specifier] = STATE(3546), + [sym_macro_type_specifier] = STATE(3546), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3882), + [sym_availability_attribute_specifier] = STATE(3882), + [sym_ns_enum_specifier] = STATE(3443), + [sym_typeof_specifier] = STATE(3546), + [sym_atomic_specifier] = STATE(3546), + [sym_generic_type_specifier] = STATE(3546), + [aux_sym_type_definition_repeat1] = STATE(3774), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym___attribute] = ACTIONS(7600), + [anon_sym___attribute__] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7664), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7666), - [anon_sym_ATend] = ACTIONS(7668), - [sym_optional] = ACTIONS(7668), - [sym_required] = ACTIONS(7668), - [anon_sym_ATproperty] = ACTIONS(7668), - [sym_method_attribute_specifier] = ACTIONS(7666), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7666), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7666), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7666), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7666), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7666), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7666), - [anon_sym_NS_AVAILABLE] = ACTIONS(7666), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7666), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7666), - [anon_sym_API_AVAILABLE] = ACTIONS(7666), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7666), - [anon_sym_API_DEPRECATED] = ACTIONS(7666), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7666), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7666), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7666), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7666), - [anon_sym___deprecated_msg] = ACTIONS(7666), - [anon_sym___deprecated_enum_msg] = ACTIONS(7666), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7666), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7666), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7666), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7666), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7666), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7666), - [anon_sym_typeof] = ACTIONS(7666), - [anon_sym___typeof] = ACTIONS(7666), - [anon_sym___typeof__] = ACTIONS(7666), - [sym_id] = ACTIONS(7666), + [sym_method_attribute_specifier] = ACTIONS(7608), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_NS_AVAILABLE] = ACTIONS(7614), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7614), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_API_AVAILABLE] = ACTIONS(7614), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_API_DEPRECATED] = ACTIONS(7614), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7614), + [anon_sym___deprecated_msg] = ACTIONS(7614), + [anon_sym___deprecated_enum_msg] = ACTIONS(7614), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7664), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7664), + [sym_IMP] = ACTIONS(7664), + [sym_BOOL] = ACTIONS(7664), + [sym_auto] = ACTIONS(7664), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3159] = { + [sym_attribute_specifier] = STATE(3749), + [sym_type_qualifier] = STATE(3748), + [sym__type_specifier] = STATE(3539), + [sym_sized_type_specifier] = STATE(3539), + [sym_enum_specifier] = STATE(3539), + [sym_struct_specifier] = STATE(3539), + [sym_union_specifier] = STATE(3539), + [sym_macro_type_specifier] = STATE(3539), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3882), + [sym_availability_attribute_specifier] = STATE(3882), + [sym_ns_enum_specifier] = STATE(3495), + [sym_typeof_specifier] = STATE(3539), + [sym_atomic_specifier] = STATE(3539), + [sym_generic_type_specifier] = STATE(3539), + [aux_sym_type_definition_repeat1] = STATE(3748), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym___attribute] = ACTIONS(7600), + [anon_sym___attribute__] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7666), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7608), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_NS_AVAILABLE] = ACTIONS(7614), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7614), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_API_AVAILABLE] = ACTIONS(7614), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_API_DEPRECATED] = ACTIONS(7614), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7614), + [anon_sym___deprecated_msg] = ACTIONS(7614), + [anon_sym___deprecated_enum_msg] = ACTIONS(7614), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), [sym_instancetype] = ACTIONS(7666), - [sym_Class] = ACTIONS(7666), + [sym_Class] = ACTIONS(1163), [sym_SEL] = ACTIONS(7666), [sym_IMP] = ACTIONS(7666), [sym_BOOL] = ACTIONS(7666), @@ -513180,100 +506504,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3203] = { - [sym_identifier] = ACTIONS(7670), - [aux_sym_preproc_def_token1] = ACTIONS(7672), - [anon_sym_DASH] = ACTIONS(7672), - [anon_sym_PLUS] = ACTIONS(7672), - [anon_sym_typedef] = ACTIONS(7670), - [anon_sym_extern] = ACTIONS(7670), - [anon_sym___attribute] = ACTIONS(7670), - [anon_sym___attribute__] = ACTIONS(7670), - [anon_sym___declspec] = ACTIONS(7670), - [anon_sym_static] = ACTIONS(7670), - [anon_sym_auto] = ACTIONS(7670), - [anon_sym_register] = ACTIONS(7670), - [anon_sym_inline] = ACTIONS(7670), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7670), - [anon_sym_const] = ACTIONS(7670), - [anon_sym_volatile] = ACTIONS(7670), - [anon_sym_restrict] = ACTIONS(7670), - [anon_sym__Atomic] = ACTIONS(7670), - [anon_sym_in] = ACTIONS(7670), - [anon_sym_out] = ACTIONS(7670), - [anon_sym_inout] = ACTIONS(7670), - [anon_sym_bycopy] = ACTIONS(7670), - [anon_sym_byref] = ACTIONS(7670), - [anon_sym_oneway] = ACTIONS(7670), - [anon_sym__Nullable] = ACTIONS(7670), - [anon_sym__Nonnull] = ACTIONS(7670), - [anon_sym__Nullable_result] = ACTIONS(7670), - [anon_sym__Null_unspecified] = ACTIONS(7670), - [anon_sym___autoreleasing] = ACTIONS(7670), - [anon_sym___nullable] = ACTIONS(7670), - [anon_sym___nonnull] = ACTIONS(7670), - [anon_sym___strong] = ACTIONS(7670), - [anon_sym___weak] = ACTIONS(7670), - [anon_sym___bridge] = ACTIONS(7670), - [anon_sym___bridge_transfer] = ACTIONS(7670), - [anon_sym___bridge_retained] = ACTIONS(7670), - [anon_sym___unsafe_unretained] = ACTIONS(7670), - [anon_sym___block] = ACTIONS(7670), - [anon_sym___kindof] = ACTIONS(7670), - [anon_sym___unused] = ACTIONS(7670), - [anon_sym__Complex] = ACTIONS(7670), - [anon_sym___complex] = ACTIONS(7670), - [anon_sym_IBOutlet] = ACTIONS(7670), - [anon_sym_IBInspectable] = ACTIONS(7670), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7670), - [anon_sym_signed] = ACTIONS(7670), - [anon_sym_unsigned] = ACTIONS(7670), - [anon_sym_long] = ACTIONS(7670), - [anon_sym_short] = ACTIONS(7670), - [sym_primitive_type] = ACTIONS(7670), - [anon_sym_enum] = ACTIONS(7670), - [anon_sym_NS_ENUM] = ACTIONS(7670), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7670), - [anon_sym_NS_OPTIONS] = ACTIONS(7670), - [anon_sym_struct] = ACTIONS(7670), - [anon_sym_union] = ACTIONS(7670), + [3160] = { + [sym_attribute_specifier] = STATE(3733), + [sym_type_qualifier] = STATE(3755), + [sym__type_specifier] = STATE(3524), + [sym_sized_type_specifier] = STATE(3524), + [sym_enum_specifier] = STATE(3524), + [sym_struct_specifier] = STATE(3524), + [sym_union_specifier] = STATE(3524), + [sym_macro_type_specifier] = STATE(3524), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3882), + [sym_availability_attribute_specifier] = STATE(3882), + [sym_ns_enum_specifier] = STATE(3488), + [sym_typeof_specifier] = STATE(3524), + [sym_atomic_specifier] = STATE(3524), + [sym_generic_type_specifier] = STATE(3524), + [aux_sym_type_definition_repeat1] = STATE(3755), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym___attribute] = ACTIONS(7600), + [anon_sym___attribute__] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7668), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7670), - [anon_sym_ATend] = ACTIONS(7672), - [sym_optional] = ACTIONS(7672), - [sym_required] = ACTIONS(7672), - [anon_sym_ATproperty] = ACTIONS(7672), - [sym_method_attribute_specifier] = ACTIONS(7670), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7670), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7670), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7670), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7670), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7670), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7670), - [anon_sym_NS_AVAILABLE] = ACTIONS(7670), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7670), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7670), - [anon_sym_API_AVAILABLE] = ACTIONS(7670), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7670), - [anon_sym_API_DEPRECATED] = ACTIONS(7670), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7670), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7670), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7670), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7670), - [anon_sym___deprecated_msg] = ACTIONS(7670), - [anon_sym___deprecated_enum_msg] = ACTIONS(7670), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7670), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7670), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7670), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7670), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7670), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7670), - [anon_sym_typeof] = ACTIONS(7670), - [anon_sym___typeof] = ACTIONS(7670), - [anon_sym___typeof__] = ACTIONS(7670), - [sym_id] = ACTIONS(7670), + [sym_method_attribute_specifier] = ACTIONS(7608), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_NS_AVAILABLE] = ACTIONS(7614), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7614), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_API_AVAILABLE] = ACTIONS(7614), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_API_DEPRECATED] = ACTIONS(7614), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7614), + [anon_sym___deprecated_msg] = ACTIONS(7614), + [anon_sym___deprecated_enum_msg] = ACTIONS(7614), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7668), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7668), + [sym_IMP] = ACTIONS(7668), + [sym_BOOL] = ACTIONS(7668), + [sym_auto] = ACTIONS(7668), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3161] = { + [sym_attribute_specifier] = STATE(3783), + [sym_type_qualifier] = STATE(3779), + [sym__type_specifier] = STATE(3527), + [sym_sized_type_specifier] = STATE(3527), + [sym_enum_specifier] = STATE(3527), + [sym_struct_specifier] = STATE(3527), + [sym_union_specifier] = STATE(3527), + [sym_macro_type_specifier] = STATE(3527), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3882), + [sym_availability_attribute_specifier] = STATE(3882), + [sym_ns_enum_specifier] = STATE(3470), + [sym_typeof_specifier] = STATE(3527), + [sym_atomic_specifier] = STATE(3527), + [sym_generic_type_specifier] = STATE(3527), + [aux_sym_type_definition_repeat1] = STATE(3779), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym___attribute] = ACTIONS(7600), + [anon_sym___attribute__] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7670), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7608), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_NS_AVAILABLE] = ACTIONS(7614), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7614), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_API_AVAILABLE] = ACTIONS(7614), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_API_DEPRECATED] = ACTIONS(7614), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7614), + [anon_sym___deprecated_msg] = ACTIONS(7614), + [anon_sym___deprecated_enum_msg] = ACTIONS(7614), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), [sym_instancetype] = ACTIONS(7670), - [sym_Class] = ACTIONS(7670), + [sym_Class] = ACTIONS(1163), [sym_SEL] = ACTIONS(7670), [sym_IMP] = ACTIONS(7670), [sym_BOOL] = ACTIONS(7670), @@ -513285,104 +506710,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3204] = { - [sym_identifier] = ACTIONS(6865), - [anon_sym_COMMA] = ACTIONS(6867), - [anon_sym_RPAREN] = ACTIONS(6867), - [anon_sym_LPAREN2] = ACTIONS(6867), - [anon_sym_DASH] = ACTIONS(6865), - [anon_sym_PLUS] = ACTIONS(6865), - [anon_sym_STAR] = ACTIONS(6867), - [anon_sym_SLASH] = ACTIONS(6865), - [anon_sym_PERCENT] = ACTIONS(6867), - [anon_sym_PIPE_PIPE] = ACTIONS(6867), - [anon_sym_AMP_AMP] = ACTIONS(6867), - [anon_sym_PIPE] = ACTIONS(6865), - [anon_sym_CARET] = ACTIONS(6867), - [anon_sym_AMP] = ACTIONS(6865), - [anon_sym_EQ_EQ] = ACTIONS(6867), - [anon_sym_BANG_EQ] = ACTIONS(6867), - [anon_sym_GT] = ACTIONS(6865), - [anon_sym_GT_EQ] = ACTIONS(6867), - [anon_sym_LT_EQ] = ACTIONS(6867), - [anon_sym_LT] = ACTIONS(6865), - [anon_sym_LT_LT] = ACTIONS(6867), - [anon_sym_GT_GT] = ACTIONS(6867), - [anon_sym_SEMI] = ACTIONS(6867), - [anon_sym___attribute] = ACTIONS(6865), - [anon_sym___attribute__] = ACTIONS(6865), - [anon_sym_RBRACE] = ACTIONS(6867), - [anon_sym_LBRACK] = ACTIONS(6867), - [anon_sym_RBRACK] = ACTIONS(6867), - [anon_sym_const] = ACTIONS(6865), - [anon_sym_volatile] = ACTIONS(6865), - [anon_sym_restrict] = ACTIONS(6865), - [anon_sym__Atomic] = ACTIONS(6865), - [anon_sym_in] = ACTIONS(6865), - [anon_sym_out] = ACTIONS(6865), - [anon_sym_inout] = ACTIONS(6865), - [anon_sym_bycopy] = ACTIONS(6865), - [anon_sym_byref] = ACTIONS(6865), - [anon_sym_oneway] = ACTIONS(6865), - [anon_sym__Nullable] = ACTIONS(6865), - [anon_sym__Nonnull] = ACTIONS(6865), - [anon_sym__Nullable_result] = ACTIONS(6865), - [anon_sym__Null_unspecified] = ACTIONS(6865), - [anon_sym___autoreleasing] = ACTIONS(6865), - [anon_sym___nullable] = ACTIONS(6865), - [anon_sym___nonnull] = ACTIONS(6865), - [anon_sym___strong] = ACTIONS(6865), - [anon_sym___weak] = ACTIONS(6865), - [anon_sym___bridge] = ACTIONS(6865), - [anon_sym___bridge_transfer] = ACTIONS(6865), - [anon_sym___bridge_retained] = ACTIONS(6865), - [anon_sym___unsafe_unretained] = ACTIONS(6865), - [anon_sym___block] = ACTIONS(6865), - [anon_sym___kindof] = ACTIONS(6865), - [anon_sym___unused] = ACTIONS(6865), - [anon_sym__Complex] = ACTIONS(6865), - [anon_sym___complex] = ACTIONS(6865), - [anon_sym_IBOutlet] = ACTIONS(6865), - [anon_sym_IBInspectable] = ACTIONS(6865), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6865), - [anon_sym_COLON] = ACTIONS(6867), - [anon_sym_QMARK] = ACTIONS(6867), - [anon_sym_DASH_DASH] = ACTIONS(6867), - [anon_sym_PLUS_PLUS] = ACTIONS(6867), - [anon_sym_DOT] = ACTIONS(6867), - [anon_sym_DASH_GT] = ACTIONS(6867), - [anon_sym_L_DQUOTE] = ACTIONS(6867), - [anon_sym_u_DQUOTE] = ACTIONS(6867), - [anon_sym_U_DQUOTE] = ACTIONS(6867), - [anon_sym_u8_DQUOTE] = ACTIONS(6867), - [anon_sym_DQUOTE] = ACTIONS(6867), + [3162] = { + [sym_attribute_specifier] = STATE(3776), + [sym_type_qualifier] = STATE(3778), + [sym__type_specifier] = STATE(3549), + [sym_sized_type_specifier] = STATE(3549), + [sym_enum_specifier] = STATE(3549), + [sym_struct_specifier] = STATE(3549), + [sym_union_specifier] = STATE(3549), + [sym_macro_type_specifier] = STATE(3549), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3882), + [sym_availability_attribute_specifier] = STATE(3882), + [sym_ns_enum_specifier] = STATE(3425), + [sym_typeof_specifier] = STATE(3549), + [sym_atomic_specifier] = STATE(3549), + [sym_generic_type_specifier] = STATE(3549), + [aux_sym_type_definition_repeat1] = STATE(3778), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym___attribute] = ACTIONS(7600), + [anon_sym___attribute__] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7672), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6865), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6865), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6865), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6865), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6865), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6865), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6865), - [anon_sym_NS_AVAILABLE] = ACTIONS(6865), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6865), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6865), - [anon_sym_API_AVAILABLE] = ACTIONS(6865), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6865), - [anon_sym_API_DEPRECATED] = ACTIONS(6865), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6865), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6865), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6865), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6865), - [anon_sym___deprecated_msg] = ACTIONS(6865), - [anon_sym___deprecated_enum_msg] = ACTIONS(6865), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6865), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6865), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6865), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6865), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6865), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6865), - [anon_sym_AT] = ACTIONS(6867), + [sym_method_attribute_specifier] = ACTIONS(7608), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_NS_AVAILABLE] = ACTIONS(7614), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7614), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_API_AVAILABLE] = ACTIONS(7614), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_API_DEPRECATED] = ACTIONS(7614), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7614), + [anon_sym___deprecated_msg] = ACTIONS(7614), + [anon_sym___deprecated_enum_msg] = ACTIONS(7614), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7672), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7672), + [sym_IMP] = ACTIONS(7672), + [sym_BOOL] = ACTIONS(7672), + [sym_auto] = ACTIONS(7672), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -513390,205 +506813,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3205] = { - [sym_identifier] = ACTIONS(7626), - [aux_sym_preproc_def_token1] = ACTIONS(7628), - [anon_sym_DASH] = ACTIONS(7628), - [anon_sym_PLUS] = ACTIONS(7628), - [anon_sym_typedef] = ACTIONS(7626), - [anon_sym_extern] = ACTIONS(7626), - [anon_sym___attribute] = ACTIONS(7626), - [anon_sym___attribute__] = ACTIONS(7626), - [anon_sym___declspec] = ACTIONS(7626), - [anon_sym_static] = ACTIONS(7626), - [anon_sym_auto] = ACTIONS(7626), - [anon_sym_register] = ACTIONS(7626), - [anon_sym_inline] = ACTIONS(7626), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7626), - [anon_sym_const] = ACTIONS(7626), - [anon_sym_volatile] = ACTIONS(7626), - [anon_sym_restrict] = ACTIONS(7626), - [anon_sym__Atomic] = ACTIONS(7626), - [anon_sym_in] = ACTIONS(7626), - [anon_sym_out] = ACTIONS(7626), - [anon_sym_inout] = ACTIONS(7626), - [anon_sym_bycopy] = ACTIONS(7626), - [anon_sym_byref] = ACTIONS(7626), - [anon_sym_oneway] = ACTIONS(7626), - [anon_sym__Nullable] = ACTIONS(7626), - [anon_sym__Nonnull] = ACTIONS(7626), - [anon_sym__Nullable_result] = ACTIONS(7626), - [anon_sym__Null_unspecified] = ACTIONS(7626), - [anon_sym___autoreleasing] = ACTIONS(7626), - [anon_sym___nullable] = ACTIONS(7626), - [anon_sym___nonnull] = ACTIONS(7626), - [anon_sym___strong] = ACTIONS(7626), - [anon_sym___weak] = ACTIONS(7626), - [anon_sym___bridge] = ACTIONS(7626), - [anon_sym___bridge_transfer] = ACTIONS(7626), - [anon_sym___bridge_retained] = ACTIONS(7626), - [anon_sym___unsafe_unretained] = ACTIONS(7626), - [anon_sym___block] = ACTIONS(7626), - [anon_sym___kindof] = ACTIONS(7626), - [anon_sym___unused] = ACTIONS(7626), - [anon_sym__Complex] = ACTIONS(7626), - [anon_sym___complex] = ACTIONS(7626), - [anon_sym_IBOutlet] = ACTIONS(7626), - [anon_sym_IBInspectable] = ACTIONS(7626), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7626), - [anon_sym_signed] = ACTIONS(7626), - [anon_sym_unsigned] = ACTIONS(7626), - [anon_sym_long] = ACTIONS(7626), - [anon_sym_short] = ACTIONS(7626), - [sym_primitive_type] = ACTIONS(7626), - [anon_sym_enum] = ACTIONS(7626), - [anon_sym_NS_ENUM] = ACTIONS(7626), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7626), - [anon_sym_NS_OPTIONS] = ACTIONS(7626), - [anon_sym_struct] = ACTIONS(7626), - [anon_sym_union] = ACTIONS(7626), - [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7626), - [anon_sym_ATend] = ACTIONS(7628), - [sym_optional] = ACTIONS(7628), - [sym_required] = ACTIONS(7628), - [anon_sym_ATproperty] = ACTIONS(7628), - [sym_method_attribute_specifier] = ACTIONS(7626), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7626), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7626), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7626), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7626), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7626), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7626), - [anon_sym_NS_AVAILABLE] = ACTIONS(7626), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7626), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7626), - [anon_sym_API_AVAILABLE] = ACTIONS(7626), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7626), - [anon_sym_API_DEPRECATED] = ACTIONS(7626), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7626), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7626), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7626), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7626), - [anon_sym___deprecated_msg] = ACTIONS(7626), - [anon_sym___deprecated_enum_msg] = ACTIONS(7626), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7626), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7626), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7626), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7626), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7626), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7626), - [anon_sym_typeof] = ACTIONS(7626), - [anon_sym___typeof] = ACTIONS(7626), - [anon_sym___typeof__] = ACTIONS(7626), - [sym_id] = ACTIONS(7626), - [sym_instancetype] = ACTIONS(7626), - [sym_Class] = ACTIONS(7626), - [sym_SEL] = ACTIONS(7626), - [sym_IMP] = ACTIONS(7626), - [sym_BOOL] = ACTIONS(7626), - [sym_auto] = ACTIONS(7626), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3206] = { - [sym_identifier] = ACTIONS(7674), - [aux_sym_preproc_def_token1] = ACTIONS(7676), - [anon_sym_DASH] = ACTIONS(7676), - [anon_sym_PLUS] = ACTIONS(7676), - [anon_sym_typedef] = ACTIONS(7674), - [anon_sym_extern] = ACTIONS(7674), - [anon_sym___attribute] = ACTIONS(7674), - [anon_sym___attribute__] = ACTIONS(7674), - [anon_sym___declspec] = ACTIONS(7674), - [anon_sym_static] = ACTIONS(7674), - [anon_sym_auto] = ACTIONS(7674), - [anon_sym_register] = ACTIONS(7674), - [anon_sym_inline] = ACTIONS(7674), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7674), - [anon_sym_const] = ACTIONS(7674), - [anon_sym_volatile] = ACTIONS(7674), - [anon_sym_restrict] = ACTIONS(7674), - [anon_sym__Atomic] = ACTIONS(7674), - [anon_sym_in] = ACTIONS(7674), - [anon_sym_out] = ACTIONS(7674), - [anon_sym_inout] = ACTIONS(7674), - [anon_sym_bycopy] = ACTIONS(7674), - [anon_sym_byref] = ACTIONS(7674), - [anon_sym_oneway] = ACTIONS(7674), - [anon_sym__Nullable] = ACTIONS(7674), - [anon_sym__Nonnull] = ACTIONS(7674), - [anon_sym__Nullable_result] = ACTIONS(7674), - [anon_sym__Null_unspecified] = ACTIONS(7674), - [anon_sym___autoreleasing] = ACTIONS(7674), - [anon_sym___nullable] = ACTIONS(7674), - [anon_sym___nonnull] = ACTIONS(7674), - [anon_sym___strong] = ACTIONS(7674), - [anon_sym___weak] = ACTIONS(7674), - [anon_sym___bridge] = ACTIONS(7674), - [anon_sym___bridge_transfer] = ACTIONS(7674), - [anon_sym___bridge_retained] = ACTIONS(7674), - [anon_sym___unsafe_unretained] = ACTIONS(7674), - [anon_sym___block] = ACTIONS(7674), - [anon_sym___kindof] = ACTIONS(7674), - [anon_sym___unused] = ACTIONS(7674), - [anon_sym__Complex] = ACTIONS(7674), - [anon_sym___complex] = ACTIONS(7674), - [anon_sym_IBOutlet] = ACTIONS(7674), - [anon_sym_IBInspectable] = ACTIONS(7674), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7674), - [anon_sym_signed] = ACTIONS(7674), - [anon_sym_unsigned] = ACTIONS(7674), - [anon_sym_long] = ACTIONS(7674), - [anon_sym_short] = ACTIONS(7674), + [3163] = { + [sym_attribute_specifier] = STATE(3724), + [sym_type_qualifier] = STATE(3744), + [sym__type_specifier] = STATE(3537), + [sym_sized_type_specifier] = STATE(3537), + [sym_enum_specifier] = STATE(3537), + [sym_struct_specifier] = STATE(3537), + [sym_union_specifier] = STATE(3537), + [sym_macro_type_specifier] = STATE(3537), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3882), + [sym_availability_attribute_specifier] = STATE(3882), + [sym_ns_enum_specifier] = STATE(3405), + [sym_typeof_specifier] = STATE(3537), + [sym_atomic_specifier] = STATE(3537), + [sym_generic_type_specifier] = STATE(3537), + [aux_sym_type_definition_repeat1] = STATE(3744), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym___attribute] = ACTIONS(7600), + [anon_sym___attribute__] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), [sym_primitive_type] = ACTIONS(7674), - [anon_sym_enum] = ACTIONS(7674), - [anon_sym_NS_ENUM] = ACTIONS(7674), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7674), - [anon_sym_NS_OPTIONS] = ACTIONS(7674), - [anon_sym_struct] = ACTIONS(7674), - [anon_sym_union] = ACTIONS(7674), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7674), - [anon_sym_ATend] = ACTIONS(7676), - [sym_optional] = ACTIONS(7676), - [sym_required] = ACTIONS(7676), - [anon_sym_ATproperty] = ACTIONS(7676), - [sym_method_attribute_specifier] = ACTIONS(7674), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7674), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7674), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7674), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7674), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7674), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7674), - [anon_sym_NS_AVAILABLE] = ACTIONS(7674), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7674), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7674), - [anon_sym_API_AVAILABLE] = ACTIONS(7674), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7674), - [anon_sym_API_DEPRECATED] = ACTIONS(7674), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7674), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7674), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7674), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7674), - [anon_sym___deprecated_msg] = ACTIONS(7674), - [anon_sym___deprecated_enum_msg] = ACTIONS(7674), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7674), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7674), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7674), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7674), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7674), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7674), - [anon_sym_typeof] = ACTIONS(7674), - [anon_sym___typeof] = ACTIONS(7674), - [anon_sym___typeof__] = ACTIONS(7674), - [sym_id] = ACTIONS(7674), + [sym_method_attribute_specifier] = ACTIONS(7608), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_NS_AVAILABLE] = ACTIONS(7614), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7614), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_API_AVAILABLE] = ACTIONS(7614), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_API_DEPRECATED] = ACTIONS(7614), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7614), + [anon_sym___deprecated_msg] = ACTIONS(7614), + [anon_sym___deprecated_enum_msg] = ACTIONS(7614), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), [sym_instancetype] = ACTIONS(7674), - [sym_Class] = ACTIONS(7674), + [sym_Class] = ACTIONS(1163), [sym_SEL] = ACTIONS(7674), [sym_IMP] = ACTIONS(7674), [sym_BOOL] = ACTIONS(7674), @@ -513600,104 +506916,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3207] = { - [sym_identifier] = ACTIONS(7422), - [aux_sym_preproc_def_token1] = ACTIONS(7424), - [anon_sym_DASH] = ACTIONS(7424), - [anon_sym_PLUS] = ACTIONS(7424), - [anon_sym_typedef] = ACTIONS(7422), - [anon_sym_extern] = ACTIONS(7422), - [anon_sym___attribute] = ACTIONS(7422), - [anon_sym___attribute__] = ACTIONS(7422), - [anon_sym___declspec] = ACTIONS(7422), - [anon_sym_static] = ACTIONS(7422), - [anon_sym_auto] = ACTIONS(7422), - [anon_sym_register] = ACTIONS(7422), - [anon_sym_inline] = ACTIONS(7422), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7422), - [anon_sym_const] = ACTIONS(7422), - [anon_sym_volatile] = ACTIONS(7422), - [anon_sym_restrict] = ACTIONS(7422), - [anon_sym__Atomic] = ACTIONS(7422), - [anon_sym_in] = ACTIONS(7422), - [anon_sym_out] = ACTIONS(7422), - [anon_sym_inout] = ACTIONS(7422), - [anon_sym_bycopy] = ACTIONS(7422), - [anon_sym_byref] = ACTIONS(7422), - [anon_sym_oneway] = ACTIONS(7422), - [anon_sym__Nullable] = ACTIONS(7422), - [anon_sym__Nonnull] = ACTIONS(7422), - [anon_sym__Nullable_result] = ACTIONS(7422), - [anon_sym__Null_unspecified] = ACTIONS(7422), - [anon_sym___autoreleasing] = ACTIONS(7422), - [anon_sym___nullable] = ACTIONS(7422), - [anon_sym___nonnull] = ACTIONS(7422), - [anon_sym___strong] = ACTIONS(7422), - [anon_sym___weak] = ACTIONS(7422), - [anon_sym___bridge] = ACTIONS(7422), - [anon_sym___bridge_transfer] = ACTIONS(7422), - [anon_sym___bridge_retained] = ACTIONS(7422), - [anon_sym___unsafe_unretained] = ACTIONS(7422), - [anon_sym___block] = ACTIONS(7422), - [anon_sym___kindof] = ACTIONS(7422), - [anon_sym___unused] = ACTIONS(7422), - [anon_sym__Complex] = ACTIONS(7422), - [anon_sym___complex] = ACTIONS(7422), - [anon_sym_IBOutlet] = ACTIONS(7422), - [anon_sym_IBInspectable] = ACTIONS(7422), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7422), - [anon_sym_signed] = ACTIONS(7422), - [anon_sym_unsigned] = ACTIONS(7422), - [anon_sym_long] = ACTIONS(7422), - [anon_sym_short] = ACTIONS(7422), - [sym_primitive_type] = ACTIONS(7422), - [anon_sym_enum] = ACTIONS(7422), - [anon_sym_NS_ENUM] = ACTIONS(7422), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7422), - [anon_sym_NS_OPTIONS] = ACTIONS(7422), - [anon_sym_struct] = ACTIONS(7422), - [anon_sym_union] = ACTIONS(7422), + [3164] = { + [sym_attribute_specifier] = STATE(3763), + [sym_type_qualifier] = STATE(3758), + [sym__type_specifier] = STATE(3572), + [sym_sized_type_specifier] = STATE(3572), + [sym_enum_specifier] = STATE(3572), + [sym_struct_specifier] = STATE(3572), + [sym_union_specifier] = STATE(3572), + [sym_macro_type_specifier] = STATE(3572), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3882), + [sym_availability_attribute_specifier] = STATE(3882), + [sym_ns_enum_specifier] = STATE(3482), + [sym_typeof_specifier] = STATE(3572), + [sym_atomic_specifier] = STATE(3572), + [sym_generic_type_specifier] = STATE(3572), + [aux_sym_type_definition_repeat1] = STATE(3758), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym___attribute] = ACTIONS(7600), + [anon_sym___attribute__] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7676), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7422), - [anon_sym_ATend] = ACTIONS(7424), - [sym_optional] = ACTIONS(7424), - [sym_required] = ACTIONS(7424), - [anon_sym_ATproperty] = ACTIONS(7424), - [sym_method_attribute_specifier] = ACTIONS(7422), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7422), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7422), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7422), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7422), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7422), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7422), - [anon_sym_NS_AVAILABLE] = ACTIONS(7422), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7422), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7422), - [anon_sym_API_AVAILABLE] = ACTIONS(7422), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7422), - [anon_sym_API_DEPRECATED] = ACTIONS(7422), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7422), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7422), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7422), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7422), - [anon_sym___deprecated_msg] = ACTIONS(7422), - [anon_sym___deprecated_enum_msg] = ACTIONS(7422), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7422), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7422), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7422), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7422), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7422), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7422), - [anon_sym_typeof] = ACTIONS(7422), - [anon_sym___typeof] = ACTIONS(7422), - [anon_sym___typeof__] = ACTIONS(7422), - [sym_id] = ACTIONS(7422), - [sym_instancetype] = ACTIONS(7422), - [sym_Class] = ACTIONS(7422), - [sym_SEL] = ACTIONS(7422), - [sym_IMP] = ACTIONS(7422), - [sym_BOOL] = ACTIONS(7422), - [sym_auto] = ACTIONS(7422), + [sym_method_attribute_specifier] = ACTIONS(7608), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7610), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7612), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7612), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7612), + [anon_sym_NS_AVAILABLE] = ACTIONS(7614), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7614), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_API_AVAILABLE] = ACTIONS(7614), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_API_DEPRECATED] = ACTIONS(7614), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7614), + [anon_sym___deprecated_msg] = ACTIONS(7614), + [anon_sym___deprecated_enum_msg] = ACTIONS(7614), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7614), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7614), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7614), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7676), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7676), + [sym_IMP] = ACTIONS(7676), + [sym_BOOL] = ACTIONS(7676), + [sym_auto] = ACTIONS(7676), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -513705,16 +507019,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3208] = { + [3165] = { [sym_identifier] = ACTIONS(7678), - [aux_sym_preproc_def_token1] = ACTIONS(7680), - [anon_sym_DASH] = ACTIONS(7680), - [anon_sym_PLUS] = ACTIONS(7680), + [anon_sym_COMMA] = ACTIONS(7680), + [anon_sym_SEMI] = ACTIONS(7680), [anon_sym_typedef] = ACTIONS(7678), [anon_sym_extern] = ACTIONS(7678), [anon_sym___attribute] = ACTIONS(7678), [anon_sym___attribute__] = ACTIONS(7678), [anon_sym___declspec] = ACTIONS(7678), + [anon_sym_RBRACE] = ACTIONS(7680), [anon_sym_static] = ACTIONS(7678), [anon_sym_auto] = ACTIONS(7678), [anon_sym_register] = ACTIONS(7678), @@ -513757,17 +507071,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7678), [sym_primitive_type] = ACTIONS(7678), [anon_sym_enum] = ACTIONS(7678), - [anon_sym_NS_ENUM] = ACTIONS(7678), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7678), - [anon_sym_NS_OPTIONS] = ACTIONS(7678), [anon_sym_struct] = ACTIONS(7678), [anon_sym_union] = ACTIONS(7678), [sym_comment] = ACTIONS(3), - [sym__ns_assume_nonnull_declaration] = ACTIONS(7678), - [anon_sym_ATend] = ACTIONS(7680), - [sym_optional] = ACTIONS(7680), - [sym_required] = ACTIONS(7680), - [anon_sym_ATproperty] = ACTIONS(7680), + [anon_sym_ATprotocol] = ACTIONS(7680), + [anon_sym_ATinterface] = ACTIONS(7680), [sym_method_attribute_specifier] = ACTIONS(7678), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7678), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7678), @@ -513793,6 +507101,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7678), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7678), [anon_sym_NS_SWIFT_NAME] = ACTIONS(7678), + [anon_sym_NS_ENUM] = ACTIONS(7678), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7678), + [anon_sym_NS_OPTIONS] = ACTIONS(7678), [anon_sym_typeof] = ACTIONS(7678), [anon_sym___typeof] = ACTIONS(7678), [anon_sym___typeof__] = ACTIONS(7678), @@ -513810,103 +507121,1019 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3209] = { - [sym_attribute_specifier] = STATE(3826), - [sym_type_qualifier] = STATE(3825), - [sym__type_specifier] = STATE(3569), - [sym_sized_type_specifier] = STATE(3569), - [sym_enum_specifier] = STATE(3569), - [sym_struct_specifier] = STATE(3569), - [sym_union_specifier] = STATE(3569), - [sym_macro_type_specifier] = STATE(3569), - [sym_property_attributes] = STATE(3243), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3922), - [sym_availability_attribute_specifier] = STATE(3922), - [sym_typeof_specifier] = STATE(3569), - [sym_atomic_specifier] = STATE(3569), - [sym_generic_type_specifier] = STATE(3569), - [aux_sym_type_definition_repeat1] = STATE(3825), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), + [3166] = { [sym_identifier] = ACTIONS(7682), - [anon_sym_LPAREN2] = ACTIONS(7684), + [aux_sym_preproc_def_token1] = ACTIONS(7682), + [aux_sym_preproc_if_token1] = ACTIONS(7682), + [aux_sym_preproc_if_token2] = ACTIONS(7682), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7682), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7682), + [aux_sym_preproc_else_token1] = ACTIONS(7682), + [aux_sym_preproc_elif_token1] = ACTIONS(7682), + [sym_preproc_directive] = ACTIONS(7682), + [anon_sym_extern] = ACTIONS(7682), + [anon_sym___attribute] = ACTIONS(7682), + [anon_sym___attribute__] = ACTIONS(7682), + [anon_sym___declspec] = ACTIONS(7682), + [anon_sym_static] = ACTIONS(7682), + [anon_sym_auto] = ACTIONS(7682), + [anon_sym_register] = ACTIONS(7682), + [anon_sym_inline] = ACTIONS(7682), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7682), + [anon_sym_const] = ACTIONS(7682), + [anon_sym_volatile] = ACTIONS(7682), + [anon_sym_restrict] = ACTIONS(7682), + [anon_sym__Atomic] = ACTIONS(7682), + [anon_sym_in] = ACTIONS(7682), + [anon_sym_out] = ACTIONS(7682), + [anon_sym_inout] = ACTIONS(7682), + [anon_sym_bycopy] = ACTIONS(7682), + [anon_sym_byref] = ACTIONS(7682), + [anon_sym_oneway] = ACTIONS(7682), + [anon_sym__Nullable] = ACTIONS(7682), + [anon_sym__Nonnull] = ACTIONS(7682), + [anon_sym__Nullable_result] = ACTIONS(7682), + [anon_sym__Null_unspecified] = ACTIONS(7682), + [anon_sym___autoreleasing] = ACTIONS(7682), + [anon_sym___nullable] = ACTIONS(7682), + [anon_sym___nonnull] = ACTIONS(7682), + [anon_sym___strong] = ACTIONS(7682), + [anon_sym___weak] = ACTIONS(7682), + [anon_sym___bridge] = ACTIONS(7682), + [anon_sym___bridge_transfer] = ACTIONS(7682), + [anon_sym___bridge_retained] = ACTIONS(7682), + [anon_sym___unsafe_unretained] = ACTIONS(7682), + [anon_sym___block] = ACTIONS(7682), + [anon_sym___kindof] = ACTIONS(7682), + [anon_sym___unused] = ACTIONS(7682), + [anon_sym__Complex] = ACTIONS(7682), + [anon_sym___complex] = ACTIONS(7682), + [anon_sym_IBOutlet] = ACTIONS(7682), + [anon_sym_IBInspectable] = ACTIONS(7682), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7682), + [anon_sym_signed] = ACTIONS(7682), + [anon_sym_unsigned] = ACTIONS(7682), + [anon_sym_long] = ACTIONS(7682), + [anon_sym_short] = ACTIONS(7682), + [sym_primitive_type] = ACTIONS(7682), + [anon_sym_enum] = ACTIONS(7682), + [anon_sym_struct] = ACTIONS(7682), + [anon_sym_union] = ACTIONS(7682), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7682), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7682), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7682), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7682), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7682), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7682), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7682), + [anon_sym_NS_AVAILABLE] = ACTIONS(7682), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7682), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7682), + [anon_sym_API_AVAILABLE] = ACTIONS(7682), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7682), + [anon_sym_API_DEPRECATED] = ACTIONS(7682), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7682), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7682), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7682), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7682), + [anon_sym___deprecated_msg] = ACTIONS(7682), + [anon_sym___deprecated_enum_msg] = ACTIONS(7682), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7682), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7682), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7682), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7682), + [anon_sym_NS_ENUM] = ACTIONS(7682), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7682), + [anon_sym_NS_OPTIONS] = ACTIONS(7682), + [anon_sym_typeof] = ACTIONS(7682), + [anon_sym___typeof] = ACTIONS(7682), + [anon_sym___typeof__] = ACTIONS(7682), + [sym_id] = ACTIONS(7682), + [sym_instancetype] = ACTIONS(7682), + [sym_Class] = ACTIONS(7682), + [sym_SEL] = ACTIONS(7682), + [sym_IMP] = ACTIONS(7682), + [sym_BOOL] = ACTIONS(7682), + [sym_auto] = ACTIONS(7682), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3167] = { + [sym_identifier] = ACTIONS(7684), + [aux_sym_preproc_def_token1] = ACTIONS(7684), + [aux_sym_preproc_if_token1] = ACTIONS(7684), + [aux_sym_preproc_if_token2] = ACTIONS(7684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7684), + [aux_sym_preproc_else_token1] = ACTIONS(7684), + [aux_sym_preproc_elif_token1] = ACTIONS(7684), + [sym_preproc_directive] = ACTIONS(7684), + [anon_sym_extern] = ACTIONS(7684), + [anon_sym___attribute] = ACTIONS(7684), + [anon_sym___attribute__] = ACTIONS(7684), + [anon_sym___declspec] = ACTIONS(7684), + [anon_sym_static] = ACTIONS(7684), + [anon_sym_auto] = ACTIONS(7684), + [anon_sym_register] = ACTIONS(7684), + [anon_sym_inline] = ACTIONS(7684), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7684), + [anon_sym_const] = ACTIONS(7684), + [anon_sym_volatile] = ACTIONS(7684), + [anon_sym_restrict] = ACTIONS(7684), + [anon_sym__Atomic] = ACTIONS(7684), + [anon_sym_in] = ACTIONS(7684), + [anon_sym_out] = ACTIONS(7684), + [anon_sym_inout] = ACTIONS(7684), + [anon_sym_bycopy] = ACTIONS(7684), + [anon_sym_byref] = ACTIONS(7684), + [anon_sym_oneway] = ACTIONS(7684), + [anon_sym__Nullable] = ACTIONS(7684), + [anon_sym__Nonnull] = ACTIONS(7684), + [anon_sym__Nullable_result] = ACTIONS(7684), + [anon_sym__Null_unspecified] = ACTIONS(7684), + [anon_sym___autoreleasing] = ACTIONS(7684), + [anon_sym___nullable] = ACTIONS(7684), + [anon_sym___nonnull] = ACTIONS(7684), + [anon_sym___strong] = ACTIONS(7684), + [anon_sym___weak] = ACTIONS(7684), + [anon_sym___bridge] = ACTIONS(7684), + [anon_sym___bridge_transfer] = ACTIONS(7684), + [anon_sym___bridge_retained] = ACTIONS(7684), + [anon_sym___unsafe_unretained] = ACTIONS(7684), + [anon_sym___block] = ACTIONS(7684), + [anon_sym___kindof] = ACTIONS(7684), + [anon_sym___unused] = ACTIONS(7684), + [anon_sym__Complex] = ACTIONS(7684), + [anon_sym___complex] = ACTIONS(7684), + [anon_sym_IBOutlet] = ACTIONS(7684), + [anon_sym_IBInspectable] = ACTIONS(7684), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7684), + [anon_sym_signed] = ACTIONS(7684), + [anon_sym_unsigned] = ACTIONS(7684), + [anon_sym_long] = ACTIONS(7684), + [anon_sym_short] = ACTIONS(7684), + [sym_primitive_type] = ACTIONS(7684), + [anon_sym_enum] = ACTIONS(7684), + [anon_sym_struct] = ACTIONS(7684), + [anon_sym_union] = ACTIONS(7684), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7684), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7684), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7684), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7684), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7684), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7684), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7684), + [anon_sym_NS_AVAILABLE] = ACTIONS(7684), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7684), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7684), + [anon_sym_API_AVAILABLE] = ACTIONS(7684), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7684), + [anon_sym_API_DEPRECATED] = ACTIONS(7684), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7684), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7684), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7684), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7684), + [anon_sym___deprecated_msg] = ACTIONS(7684), + [anon_sym___deprecated_enum_msg] = ACTIONS(7684), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7684), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7684), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7684), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7684), + [anon_sym_NS_ENUM] = ACTIONS(7684), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7684), + [anon_sym_NS_OPTIONS] = ACTIONS(7684), + [anon_sym_typeof] = ACTIONS(7684), + [anon_sym___typeof] = ACTIONS(7684), + [anon_sym___typeof__] = ACTIONS(7684), + [sym_id] = ACTIONS(7684), + [sym_instancetype] = ACTIONS(7684), + [sym_Class] = ACTIONS(7684), + [sym_SEL] = ACTIONS(7684), + [sym_IMP] = ACTIONS(7684), + [sym_BOOL] = ACTIONS(7684), + [sym_auto] = ACTIONS(7684), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3168] = { + [sym_identifier] = ACTIONS(7686), + [aux_sym_preproc_def_token1] = ACTIONS(7686), + [aux_sym_preproc_if_token1] = ACTIONS(7686), + [aux_sym_preproc_if_token2] = ACTIONS(7686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7686), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7686), + [aux_sym_preproc_else_token1] = ACTIONS(7686), + [aux_sym_preproc_elif_token1] = ACTIONS(7686), + [sym_preproc_directive] = ACTIONS(7686), + [anon_sym_extern] = ACTIONS(7686), [anon_sym___attribute] = ACTIONS(7686), [anon_sym___attribute__] = ACTIONS(7686), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym___declspec] = ACTIONS(7686), + [anon_sym_static] = ACTIONS(7686), + [anon_sym_auto] = ACTIONS(7686), + [anon_sym_register] = ACTIONS(7686), + [anon_sym_inline] = ACTIONS(7686), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7686), + [anon_sym_const] = ACTIONS(7686), + [anon_sym_volatile] = ACTIONS(7686), + [anon_sym_restrict] = ACTIONS(7686), + [anon_sym__Atomic] = ACTIONS(7686), + [anon_sym_in] = ACTIONS(7686), + [anon_sym_out] = ACTIONS(7686), + [anon_sym_inout] = ACTIONS(7686), + [anon_sym_bycopy] = ACTIONS(7686), + [anon_sym_byref] = ACTIONS(7686), + [anon_sym_oneway] = ACTIONS(7686), + [anon_sym__Nullable] = ACTIONS(7686), + [anon_sym__Nonnull] = ACTIONS(7686), + [anon_sym__Nullable_result] = ACTIONS(7686), + [anon_sym__Null_unspecified] = ACTIONS(7686), + [anon_sym___autoreleasing] = ACTIONS(7686), + [anon_sym___nullable] = ACTIONS(7686), + [anon_sym___nonnull] = ACTIONS(7686), + [anon_sym___strong] = ACTIONS(7686), + [anon_sym___weak] = ACTIONS(7686), + [anon_sym___bridge] = ACTIONS(7686), + [anon_sym___bridge_transfer] = ACTIONS(7686), + [anon_sym___bridge_retained] = ACTIONS(7686), + [anon_sym___unsafe_unretained] = ACTIONS(7686), + [anon_sym___block] = ACTIONS(7686), + [anon_sym___kindof] = ACTIONS(7686), + [anon_sym___unused] = ACTIONS(7686), + [anon_sym__Complex] = ACTIONS(7686), + [anon_sym___complex] = ACTIONS(7686), + [anon_sym_IBOutlet] = ACTIONS(7686), + [anon_sym_IBInspectable] = ACTIONS(7686), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7686), + [anon_sym_signed] = ACTIONS(7686), + [anon_sym_unsigned] = ACTIONS(7686), + [anon_sym_long] = ACTIONS(7686), + [anon_sym_short] = ACTIONS(7686), + [sym_primitive_type] = ACTIONS(7686), + [anon_sym_enum] = ACTIONS(7686), + [anon_sym_struct] = ACTIONS(7686), + [anon_sym_union] = ACTIONS(7686), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7686), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7686), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7686), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7686), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7686), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7686), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7686), + [anon_sym_NS_AVAILABLE] = ACTIONS(7686), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7686), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7686), + [anon_sym_API_AVAILABLE] = ACTIONS(7686), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7686), + [anon_sym_API_DEPRECATED] = ACTIONS(7686), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7686), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7686), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7686), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7686), + [anon_sym___deprecated_msg] = ACTIONS(7686), + [anon_sym___deprecated_enum_msg] = ACTIONS(7686), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7686), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7686), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7686), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7686), + [anon_sym_NS_ENUM] = ACTIONS(7686), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7686), + [anon_sym_NS_OPTIONS] = ACTIONS(7686), + [anon_sym_typeof] = ACTIONS(7686), + [anon_sym___typeof] = ACTIONS(7686), + [anon_sym___typeof__] = ACTIONS(7686), + [sym_id] = ACTIONS(7686), + [sym_instancetype] = ACTIONS(7686), + [sym_Class] = ACTIONS(7686), + [sym_SEL] = ACTIONS(7686), + [sym_IMP] = ACTIONS(7686), + [sym_BOOL] = ACTIONS(7686), + [sym_auto] = ACTIONS(7686), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3169] = { + [sym_identifier] = ACTIONS(7688), + [anon_sym_COMMA] = ACTIONS(7690), + [anon_sym_SEMI] = ACTIONS(7690), + [anon_sym_typedef] = ACTIONS(7688), + [anon_sym_extern] = ACTIONS(7688), + [anon_sym___attribute] = ACTIONS(7688), + [anon_sym___attribute__] = ACTIONS(7688), + [anon_sym___declspec] = ACTIONS(7688), + [anon_sym_RBRACE] = ACTIONS(7690), + [anon_sym_static] = ACTIONS(7688), + [anon_sym_auto] = ACTIONS(7688), + [anon_sym_register] = ACTIONS(7688), + [anon_sym_inline] = ACTIONS(7688), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7688), + [anon_sym_const] = ACTIONS(7688), + [anon_sym_volatile] = ACTIONS(7688), + [anon_sym_restrict] = ACTIONS(7688), + [anon_sym__Atomic] = ACTIONS(7688), + [anon_sym_in] = ACTIONS(7688), + [anon_sym_out] = ACTIONS(7688), + [anon_sym_inout] = ACTIONS(7688), + [anon_sym_bycopy] = ACTIONS(7688), + [anon_sym_byref] = ACTIONS(7688), + [anon_sym_oneway] = ACTIONS(7688), + [anon_sym__Nullable] = ACTIONS(7688), + [anon_sym__Nonnull] = ACTIONS(7688), + [anon_sym__Nullable_result] = ACTIONS(7688), + [anon_sym__Null_unspecified] = ACTIONS(7688), + [anon_sym___autoreleasing] = ACTIONS(7688), + [anon_sym___nullable] = ACTIONS(7688), + [anon_sym___nonnull] = ACTIONS(7688), + [anon_sym___strong] = ACTIONS(7688), + [anon_sym___weak] = ACTIONS(7688), + [anon_sym___bridge] = ACTIONS(7688), + [anon_sym___bridge_transfer] = ACTIONS(7688), + [anon_sym___bridge_retained] = ACTIONS(7688), + [anon_sym___unsafe_unretained] = ACTIONS(7688), + [anon_sym___block] = ACTIONS(7688), + [anon_sym___kindof] = ACTIONS(7688), + [anon_sym___unused] = ACTIONS(7688), + [anon_sym__Complex] = ACTIONS(7688), + [anon_sym___complex] = ACTIONS(7688), + [anon_sym_IBOutlet] = ACTIONS(7688), + [anon_sym_IBInspectable] = ACTIONS(7688), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7688), [anon_sym_signed] = ACTIONS(7688), [anon_sym_unsigned] = ACTIONS(7688), [anon_sym_long] = ACTIONS(7688), [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7690), + [sym_primitive_type] = ACTIONS(7688), + [anon_sym_enum] = ACTIONS(7688), + [anon_sym_struct] = ACTIONS(7688), + [anon_sym_union] = ACTIONS(7688), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(7690), + [anon_sym_ATinterface] = ACTIONS(7690), + [sym_method_attribute_specifier] = ACTIONS(7688), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7688), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7688), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7688), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7688), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7688), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7688), + [anon_sym_NS_AVAILABLE] = ACTIONS(7688), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7688), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7688), + [anon_sym_API_AVAILABLE] = ACTIONS(7688), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7688), + [anon_sym_API_DEPRECATED] = ACTIONS(7688), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7688), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7688), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7688), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7688), + [anon_sym___deprecated_msg] = ACTIONS(7688), + [anon_sym___deprecated_enum_msg] = ACTIONS(7688), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7688), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7688), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7688), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7688), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7688), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7688), + [anon_sym_NS_ENUM] = ACTIONS(7688), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7688), + [anon_sym_NS_OPTIONS] = ACTIONS(7688), + [anon_sym_typeof] = ACTIONS(7688), + [anon_sym___typeof] = ACTIONS(7688), + [anon_sym___typeof__] = ACTIONS(7688), + [sym_id] = ACTIONS(7688), + [sym_instancetype] = ACTIONS(7688), + [sym_Class] = ACTIONS(7688), + [sym_SEL] = ACTIONS(7688), + [sym_IMP] = ACTIONS(7688), + [sym_BOOL] = ACTIONS(7688), + [sym_auto] = ACTIONS(7688), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3170] = { + [sym_identifier] = ACTIONS(7692), + [aux_sym_preproc_def_token1] = ACTIONS(7692), + [aux_sym_preproc_if_token1] = ACTIONS(7692), + [aux_sym_preproc_if_token2] = ACTIONS(7692), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7692), + [aux_sym_preproc_else_token1] = ACTIONS(7692), + [aux_sym_preproc_elif_token1] = ACTIONS(7692), + [sym_preproc_directive] = ACTIONS(7692), + [anon_sym_extern] = ACTIONS(7692), + [anon_sym___attribute] = ACTIONS(7692), + [anon_sym___attribute__] = ACTIONS(7692), + [anon_sym___declspec] = ACTIONS(7692), + [anon_sym_static] = ACTIONS(7692), + [anon_sym_auto] = ACTIONS(7692), + [anon_sym_register] = ACTIONS(7692), + [anon_sym_inline] = ACTIONS(7692), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7692), + [anon_sym_const] = ACTIONS(7692), + [anon_sym_volatile] = ACTIONS(7692), + [anon_sym_restrict] = ACTIONS(7692), + [anon_sym__Atomic] = ACTIONS(7692), + [anon_sym_in] = ACTIONS(7692), + [anon_sym_out] = ACTIONS(7692), + [anon_sym_inout] = ACTIONS(7692), + [anon_sym_bycopy] = ACTIONS(7692), + [anon_sym_byref] = ACTIONS(7692), + [anon_sym_oneway] = ACTIONS(7692), + [anon_sym__Nullable] = ACTIONS(7692), + [anon_sym__Nonnull] = ACTIONS(7692), + [anon_sym__Nullable_result] = ACTIONS(7692), + [anon_sym__Null_unspecified] = ACTIONS(7692), + [anon_sym___autoreleasing] = ACTIONS(7692), + [anon_sym___nullable] = ACTIONS(7692), + [anon_sym___nonnull] = ACTIONS(7692), + [anon_sym___strong] = ACTIONS(7692), + [anon_sym___weak] = ACTIONS(7692), + [anon_sym___bridge] = ACTIONS(7692), + [anon_sym___bridge_transfer] = ACTIONS(7692), + [anon_sym___bridge_retained] = ACTIONS(7692), + [anon_sym___unsafe_unretained] = ACTIONS(7692), + [anon_sym___block] = ACTIONS(7692), + [anon_sym___kindof] = ACTIONS(7692), + [anon_sym___unused] = ACTIONS(7692), + [anon_sym__Complex] = ACTIONS(7692), + [anon_sym___complex] = ACTIONS(7692), + [anon_sym_IBOutlet] = ACTIONS(7692), + [anon_sym_IBInspectable] = ACTIONS(7692), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7692), + [anon_sym_signed] = ACTIONS(7692), + [anon_sym_unsigned] = ACTIONS(7692), + [anon_sym_long] = ACTIONS(7692), + [anon_sym_short] = ACTIONS(7692), + [sym_primitive_type] = ACTIONS(7692), [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [anon_sym_struct] = ACTIONS(7692), + [anon_sym_union] = ACTIONS(7692), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7692), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7692), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7692), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7692), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7692), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7692), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7692), + [anon_sym_NS_AVAILABLE] = ACTIONS(7692), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7692), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7692), + [anon_sym_API_AVAILABLE] = ACTIONS(7692), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7692), + [anon_sym_API_DEPRECATED] = ACTIONS(7692), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7692), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7692), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7692), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7692), + [anon_sym___deprecated_msg] = ACTIONS(7692), + [anon_sym___deprecated_enum_msg] = ACTIONS(7692), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7692), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7692), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7692), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7692), + [anon_sym_NS_ENUM] = ACTIONS(7692), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7692), + [anon_sym_NS_OPTIONS] = ACTIONS(7692), + [anon_sym_typeof] = ACTIONS(7692), + [anon_sym___typeof] = ACTIONS(7692), + [anon_sym___typeof__] = ACTIONS(7692), + [sym_id] = ACTIONS(7692), + [sym_instancetype] = ACTIONS(7692), + [sym_Class] = ACTIONS(7692), + [sym_SEL] = ACTIONS(7692), + [sym_IMP] = ACTIONS(7692), + [sym_BOOL] = ACTIONS(7692), + [sym_auto] = ACTIONS(7692), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3171] = { + [sym_identifier] = ACTIONS(7694), + [aux_sym_preproc_def_token1] = ACTIONS(7694), + [aux_sym_preproc_if_token1] = ACTIONS(7694), + [aux_sym_preproc_if_token2] = ACTIONS(7694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7694), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7694), + [aux_sym_preproc_else_token1] = ACTIONS(7694), + [aux_sym_preproc_elif_token1] = ACTIONS(7694), + [sym_preproc_directive] = ACTIONS(7694), + [anon_sym_extern] = ACTIONS(7694), + [anon_sym___attribute] = ACTIONS(7694), + [anon_sym___attribute__] = ACTIONS(7694), + [anon_sym___declspec] = ACTIONS(7694), + [anon_sym_static] = ACTIONS(7694), + [anon_sym_auto] = ACTIONS(7694), + [anon_sym_register] = ACTIONS(7694), + [anon_sym_inline] = ACTIONS(7694), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7694), + [anon_sym_const] = ACTIONS(7694), + [anon_sym_volatile] = ACTIONS(7694), + [anon_sym_restrict] = ACTIONS(7694), + [anon_sym__Atomic] = ACTIONS(7694), + [anon_sym_in] = ACTIONS(7694), + [anon_sym_out] = ACTIONS(7694), + [anon_sym_inout] = ACTIONS(7694), + [anon_sym_bycopy] = ACTIONS(7694), + [anon_sym_byref] = ACTIONS(7694), + [anon_sym_oneway] = ACTIONS(7694), + [anon_sym__Nullable] = ACTIONS(7694), + [anon_sym__Nonnull] = ACTIONS(7694), + [anon_sym__Nullable_result] = ACTIONS(7694), + [anon_sym__Null_unspecified] = ACTIONS(7694), + [anon_sym___autoreleasing] = ACTIONS(7694), + [anon_sym___nullable] = ACTIONS(7694), + [anon_sym___nonnull] = ACTIONS(7694), + [anon_sym___strong] = ACTIONS(7694), + [anon_sym___weak] = ACTIONS(7694), + [anon_sym___bridge] = ACTIONS(7694), + [anon_sym___bridge_transfer] = ACTIONS(7694), + [anon_sym___bridge_retained] = ACTIONS(7694), + [anon_sym___unsafe_unretained] = ACTIONS(7694), + [anon_sym___block] = ACTIONS(7694), + [anon_sym___kindof] = ACTIONS(7694), + [anon_sym___unused] = ACTIONS(7694), + [anon_sym__Complex] = ACTIONS(7694), + [anon_sym___complex] = ACTIONS(7694), + [anon_sym_IBOutlet] = ACTIONS(7694), + [anon_sym_IBInspectable] = ACTIONS(7694), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7694), + [anon_sym_signed] = ACTIONS(7694), + [anon_sym_unsigned] = ACTIONS(7694), + [anon_sym_long] = ACTIONS(7694), + [anon_sym_short] = ACTIONS(7694), + [sym_primitive_type] = ACTIONS(7694), + [anon_sym_enum] = ACTIONS(7694), + [anon_sym_struct] = ACTIONS(7694), + [anon_sym_union] = ACTIONS(7694), [sym_comment] = ACTIONS(3), [sym_method_attribute_specifier] = ACTIONS(7694), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7694), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7694), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7694), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7694), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7694), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7694), + [anon_sym_NS_AVAILABLE] = ACTIONS(7694), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7694), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7694), + [anon_sym_API_AVAILABLE] = ACTIONS(7694), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7694), + [anon_sym_API_DEPRECATED] = ACTIONS(7694), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7694), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7694), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7694), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7694), + [anon_sym___deprecated_msg] = ACTIONS(7694), + [anon_sym___deprecated_enum_msg] = ACTIONS(7694), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7694), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7694), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7694), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7694), + [anon_sym_NS_ENUM] = ACTIONS(7694), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7694), + [anon_sym_NS_OPTIONS] = ACTIONS(7694), + [anon_sym_typeof] = ACTIONS(7694), + [anon_sym___typeof] = ACTIONS(7694), + [anon_sym___typeof__] = ACTIONS(7694), + [sym_id] = ACTIONS(7694), + [sym_instancetype] = ACTIONS(7694), + [sym_Class] = ACTIONS(7694), + [sym_SEL] = ACTIONS(7694), + [sym_IMP] = ACTIONS(7694), + [sym_BOOL] = ACTIONS(7694), + [sym_auto] = ACTIONS(7694), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3172] = { + [sym_identifier] = ACTIONS(1704), + [aux_sym_preproc_def_token1] = ACTIONS(1704), + [aux_sym_preproc_if_token1] = ACTIONS(1704), + [aux_sym_preproc_if_token2] = ACTIONS(1704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1704), + [aux_sym_preproc_else_token1] = ACTIONS(1704), + [aux_sym_preproc_elif_token1] = ACTIONS(1704), + [sym_preproc_directive] = ACTIONS(1704), + [anon_sym_extern] = ACTIONS(1704), + [anon_sym___attribute] = ACTIONS(1704), + [anon_sym___attribute__] = ACTIONS(1704), + [anon_sym___declspec] = ACTIONS(1704), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_auto] = ACTIONS(1704), + [anon_sym_register] = ACTIONS(1704), + [anon_sym_inline] = ACTIONS(1704), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_volatile] = ACTIONS(1704), + [anon_sym_restrict] = ACTIONS(1704), + [anon_sym__Atomic] = ACTIONS(1704), + [anon_sym_in] = ACTIONS(1704), + [anon_sym_out] = ACTIONS(1704), + [anon_sym_inout] = ACTIONS(1704), + [anon_sym_bycopy] = ACTIONS(1704), + [anon_sym_byref] = ACTIONS(1704), + [anon_sym_oneway] = ACTIONS(1704), + [anon_sym__Nullable] = ACTIONS(1704), + [anon_sym__Nonnull] = ACTIONS(1704), + [anon_sym__Nullable_result] = ACTIONS(1704), + [anon_sym__Null_unspecified] = ACTIONS(1704), + [anon_sym___autoreleasing] = ACTIONS(1704), + [anon_sym___nullable] = ACTIONS(1704), + [anon_sym___nonnull] = ACTIONS(1704), + [anon_sym___strong] = ACTIONS(1704), + [anon_sym___weak] = ACTIONS(1704), + [anon_sym___bridge] = ACTIONS(1704), + [anon_sym___bridge_transfer] = ACTIONS(1704), + [anon_sym___bridge_retained] = ACTIONS(1704), + [anon_sym___unsafe_unretained] = ACTIONS(1704), + [anon_sym___block] = ACTIONS(1704), + [anon_sym___kindof] = ACTIONS(1704), + [anon_sym___unused] = ACTIONS(1704), + [anon_sym__Complex] = ACTIONS(1704), + [anon_sym___complex] = ACTIONS(1704), + [anon_sym_IBOutlet] = ACTIONS(1704), + [anon_sym_IBInspectable] = ACTIONS(1704), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1704), + [anon_sym_signed] = ACTIONS(1704), + [anon_sym_unsigned] = ACTIONS(1704), + [anon_sym_long] = ACTIONS(1704), + [anon_sym_short] = ACTIONS(1704), + [sym_primitive_type] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(1704), + [anon_sym_struct] = ACTIONS(1704), + [anon_sym_union] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(1704), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1704), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1704), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1704), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1704), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1704), + [anon_sym_NS_AVAILABLE] = ACTIONS(1704), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1704), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_API_AVAILABLE] = ACTIONS(1704), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_API_DEPRECATED] = ACTIONS(1704), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1704), + [anon_sym___deprecated_msg] = ACTIONS(1704), + [anon_sym___deprecated_enum_msg] = ACTIONS(1704), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_NS_ENUM] = ACTIONS(1704), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1704), + [anon_sym_NS_OPTIONS] = ACTIONS(1704), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym___typeof] = ACTIONS(1704), + [anon_sym___typeof__] = ACTIONS(1704), + [sym_id] = ACTIONS(1704), + [sym_instancetype] = ACTIONS(1704), + [sym_Class] = ACTIONS(1704), + [sym_SEL] = ACTIONS(1704), + [sym_IMP] = ACTIONS(1704), + [sym_BOOL] = ACTIONS(1704), + [sym_auto] = ACTIONS(1704), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3173] = { + [sym_identifier] = ACTIONS(1744), + [aux_sym_preproc_def_token1] = ACTIONS(1744), + [aux_sym_preproc_if_token1] = ACTIONS(1744), + [aux_sym_preproc_if_token2] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1744), + [aux_sym_preproc_else_token1] = ACTIONS(1744), + [aux_sym_preproc_elif_token1] = ACTIONS(1744), + [sym_preproc_directive] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1744), + [anon_sym___attribute] = ACTIONS(1744), + [anon_sym___attribute__] = ACTIONS(1744), + [anon_sym___declspec] = ACTIONS(1744), + [anon_sym_static] = ACTIONS(1744), + [anon_sym_auto] = ACTIONS(1744), + [anon_sym_register] = ACTIONS(1744), + [anon_sym_inline] = ACTIONS(1744), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym__Atomic] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_out] = ACTIONS(1744), + [anon_sym_inout] = ACTIONS(1744), + [anon_sym_bycopy] = ACTIONS(1744), + [anon_sym_byref] = ACTIONS(1744), + [anon_sym_oneway] = ACTIONS(1744), + [anon_sym__Nullable] = ACTIONS(1744), + [anon_sym__Nonnull] = ACTIONS(1744), + [anon_sym__Nullable_result] = ACTIONS(1744), + [anon_sym__Null_unspecified] = ACTIONS(1744), + [anon_sym___autoreleasing] = ACTIONS(1744), + [anon_sym___nullable] = ACTIONS(1744), + [anon_sym___nonnull] = ACTIONS(1744), + [anon_sym___strong] = ACTIONS(1744), + [anon_sym___weak] = ACTIONS(1744), + [anon_sym___bridge] = ACTIONS(1744), + [anon_sym___bridge_transfer] = ACTIONS(1744), + [anon_sym___bridge_retained] = ACTIONS(1744), + [anon_sym___unsafe_unretained] = ACTIONS(1744), + [anon_sym___block] = ACTIONS(1744), + [anon_sym___kindof] = ACTIONS(1744), + [anon_sym___unused] = ACTIONS(1744), + [anon_sym__Complex] = ACTIONS(1744), + [anon_sym___complex] = ACTIONS(1744), + [anon_sym_IBOutlet] = ACTIONS(1744), + [anon_sym_IBInspectable] = ACTIONS(1744), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1744), + [anon_sym_signed] = ACTIONS(1744), + [anon_sym_unsigned] = ACTIONS(1744), + [anon_sym_long] = ACTIONS(1744), + [anon_sym_short] = ACTIONS(1744), + [sym_primitive_type] = ACTIONS(1744), + [anon_sym_enum] = ACTIONS(1744), + [anon_sym_struct] = ACTIONS(1744), + [anon_sym_union] = ACTIONS(1744), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(1744), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1744), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1744), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1744), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1744), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1744), + [anon_sym_NS_AVAILABLE] = ACTIONS(1744), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1744), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_API_AVAILABLE] = ACTIONS(1744), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_API_DEPRECATED] = ACTIONS(1744), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1744), + [anon_sym___deprecated_msg] = ACTIONS(1744), + [anon_sym___deprecated_enum_msg] = ACTIONS(1744), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_NS_ENUM] = ACTIONS(1744), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1744), + [anon_sym_NS_OPTIONS] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(1744), + [anon_sym___typeof] = ACTIONS(1744), + [anon_sym___typeof__] = ACTIONS(1744), + [sym_id] = ACTIONS(1744), + [sym_instancetype] = ACTIONS(1744), + [sym_Class] = ACTIONS(1744), + [sym_SEL] = ACTIONS(1744), + [sym_IMP] = ACTIONS(1744), + [sym_BOOL] = ACTIONS(1744), + [sym_auto] = ACTIONS(1744), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3174] = { + [sym_identifier] = ACTIONS(7696), + [aux_sym_preproc_def_token1] = ACTIONS(7696), + [aux_sym_preproc_if_token1] = ACTIONS(7696), + [aux_sym_preproc_if_token2] = ACTIONS(7696), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7696), + [aux_sym_preproc_else_token1] = ACTIONS(7696), + [aux_sym_preproc_elif_token1] = ACTIONS(7696), + [sym_preproc_directive] = ACTIONS(7696), + [anon_sym_extern] = ACTIONS(7696), + [anon_sym___attribute] = ACTIONS(7696), + [anon_sym___attribute__] = ACTIONS(7696), + [anon_sym___declspec] = ACTIONS(7696), + [anon_sym_static] = ACTIONS(7696), + [anon_sym_auto] = ACTIONS(7696), + [anon_sym_register] = ACTIONS(7696), + [anon_sym_inline] = ACTIONS(7696), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7696), + [anon_sym_const] = ACTIONS(7696), + [anon_sym_volatile] = ACTIONS(7696), + [anon_sym_restrict] = ACTIONS(7696), + [anon_sym__Atomic] = ACTIONS(7696), + [anon_sym_in] = ACTIONS(7696), + [anon_sym_out] = ACTIONS(7696), + [anon_sym_inout] = ACTIONS(7696), + [anon_sym_bycopy] = ACTIONS(7696), + [anon_sym_byref] = ACTIONS(7696), + [anon_sym_oneway] = ACTIONS(7696), + [anon_sym__Nullable] = ACTIONS(7696), + [anon_sym__Nonnull] = ACTIONS(7696), + [anon_sym__Nullable_result] = ACTIONS(7696), + [anon_sym__Null_unspecified] = ACTIONS(7696), + [anon_sym___autoreleasing] = ACTIONS(7696), + [anon_sym___nullable] = ACTIONS(7696), + [anon_sym___nonnull] = ACTIONS(7696), + [anon_sym___strong] = ACTIONS(7696), + [anon_sym___weak] = ACTIONS(7696), + [anon_sym___bridge] = ACTIONS(7696), + [anon_sym___bridge_transfer] = ACTIONS(7696), + [anon_sym___bridge_retained] = ACTIONS(7696), + [anon_sym___unsafe_unretained] = ACTIONS(7696), + [anon_sym___block] = ACTIONS(7696), + [anon_sym___kindof] = ACTIONS(7696), + [anon_sym___unused] = ACTIONS(7696), + [anon_sym__Complex] = ACTIONS(7696), + [anon_sym___complex] = ACTIONS(7696), + [anon_sym_IBOutlet] = ACTIONS(7696), + [anon_sym_IBInspectable] = ACTIONS(7696), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7696), + [anon_sym_signed] = ACTIONS(7696), + [anon_sym_unsigned] = ACTIONS(7696), + [anon_sym_long] = ACTIONS(7696), + [anon_sym_short] = ACTIONS(7696), + [sym_primitive_type] = ACTIONS(7696), + [anon_sym_enum] = ACTIONS(7696), + [anon_sym_struct] = ACTIONS(7696), + [anon_sym_union] = ACTIONS(7696), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7696), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7696), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7696), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7696), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7696), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7696), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7696), + [anon_sym_NS_AVAILABLE] = ACTIONS(7696), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7696), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7696), + [anon_sym_API_AVAILABLE] = ACTIONS(7696), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7696), + [anon_sym_API_DEPRECATED] = ACTIONS(7696), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7696), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7696), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7696), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7696), + [anon_sym___deprecated_msg] = ACTIONS(7696), + [anon_sym___deprecated_enum_msg] = ACTIONS(7696), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7696), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7696), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7696), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7696), + [anon_sym_NS_ENUM] = ACTIONS(7696), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7696), + [anon_sym_NS_OPTIONS] = ACTIONS(7696), + [anon_sym_typeof] = ACTIONS(7696), + [anon_sym___typeof] = ACTIONS(7696), + [anon_sym___typeof__] = ACTIONS(7696), + [sym_id] = ACTIONS(7696), + [sym_instancetype] = ACTIONS(7696), + [sym_Class] = ACTIONS(7696), + [sym_SEL] = ACTIONS(7696), + [sym_IMP] = ACTIONS(7696), + [sym_BOOL] = ACTIONS(7696), + [sym_auto] = ACTIONS(7696), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3175] = { + [sym_identifier] = ACTIONS(7698), + [anon_sym_COMMA] = ACTIONS(7700), + [anon_sym_SEMI] = ACTIONS(7700), + [anon_sym_typedef] = ACTIONS(7698), + [anon_sym_extern] = ACTIONS(7698), + [anon_sym___attribute] = ACTIONS(7698), + [anon_sym___attribute__] = ACTIONS(7698), + [anon_sym___declspec] = ACTIONS(7698), + [anon_sym_RBRACE] = ACTIONS(7700), + [anon_sym_static] = ACTIONS(7698), + [anon_sym_auto] = ACTIONS(7698), + [anon_sym_register] = ACTIONS(7698), + [anon_sym_inline] = ACTIONS(7698), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7698), + [anon_sym_const] = ACTIONS(7698), + [anon_sym_volatile] = ACTIONS(7698), + [anon_sym_restrict] = ACTIONS(7698), + [anon_sym__Atomic] = ACTIONS(7698), + [anon_sym_in] = ACTIONS(7698), + [anon_sym_out] = ACTIONS(7698), + [anon_sym_inout] = ACTIONS(7698), + [anon_sym_bycopy] = ACTIONS(7698), + [anon_sym_byref] = ACTIONS(7698), + [anon_sym_oneway] = ACTIONS(7698), + [anon_sym__Nullable] = ACTIONS(7698), + [anon_sym__Nonnull] = ACTIONS(7698), + [anon_sym__Nullable_result] = ACTIONS(7698), + [anon_sym__Null_unspecified] = ACTIONS(7698), + [anon_sym___autoreleasing] = ACTIONS(7698), + [anon_sym___nullable] = ACTIONS(7698), + [anon_sym___nonnull] = ACTIONS(7698), + [anon_sym___strong] = ACTIONS(7698), + [anon_sym___weak] = ACTIONS(7698), + [anon_sym___bridge] = ACTIONS(7698), + [anon_sym___bridge_transfer] = ACTIONS(7698), + [anon_sym___bridge_retained] = ACTIONS(7698), + [anon_sym___unsafe_unretained] = ACTIONS(7698), + [anon_sym___block] = ACTIONS(7698), + [anon_sym___kindof] = ACTIONS(7698), + [anon_sym___unused] = ACTIONS(7698), + [anon_sym__Complex] = ACTIONS(7698), + [anon_sym___complex] = ACTIONS(7698), + [anon_sym_IBOutlet] = ACTIONS(7698), + [anon_sym_IBInspectable] = ACTIONS(7698), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7698), + [anon_sym_signed] = ACTIONS(7698), + [anon_sym_unsigned] = ACTIONS(7698), + [anon_sym_long] = ACTIONS(7698), + [anon_sym_short] = ACTIONS(7698), + [sym_primitive_type] = ACTIONS(7698), + [anon_sym_enum] = ACTIONS(7698), + [anon_sym_struct] = ACTIONS(7698), + [anon_sym_union] = ACTIONS(7698), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(7700), + [anon_sym_ATinterface] = ACTIONS(7700), + [sym_method_attribute_specifier] = ACTIONS(7698), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7698), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7698), [anon_sym_NS_UNAVAILABLE] = ACTIONS(7698), [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7698), [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7698), [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_NS_AVAILABLE] = ACTIONS(7700), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7700), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_API_AVAILABLE] = ACTIONS(7700), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_API_DEPRECATED] = ACTIONS(7700), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7700), - [anon_sym___deprecated_msg] = ACTIONS(7700), - [anon_sym___deprecated_enum_msg] = ACTIONS(7700), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7690), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7690), - [sym_IMP] = ACTIONS(7690), - [sym_BOOL] = ACTIONS(7690), - [sym_auto] = ACTIONS(7690), + [anon_sym_NS_AVAILABLE] = ACTIONS(7698), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7698), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7698), + [anon_sym_API_AVAILABLE] = ACTIONS(7698), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7698), + [anon_sym_API_DEPRECATED] = ACTIONS(7698), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7698), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7698), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7698), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7698), + [anon_sym___deprecated_msg] = ACTIONS(7698), + [anon_sym___deprecated_enum_msg] = ACTIONS(7698), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7698), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7698), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7698), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7698), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7698), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7698), + [anon_sym_NS_ENUM] = ACTIONS(7698), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7698), + [anon_sym_NS_OPTIONS] = ACTIONS(7698), + [anon_sym_typeof] = ACTIONS(7698), + [anon_sym___typeof] = ACTIONS(7698), + [anon_sym___typeof__] = ACTIONS(7698), + [sym_id] = ACTIONS(7698), + [sym_instancetype] = ACTIONS(7698), + [sym_Class] = ACTIONS(7698), + [sym_SEL] = ACTIONS(7698), + [sym_IMP] = ACTIONS(7698), + [sym_BOOL] = ACTIONS(7698), + [sym_auto] = ACTIONS(7698), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -513914,213 +508141,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3210] = { - [sym_identifier] = ACTIONS(2022), - [anon_sym_extern] = ACTIONS(2022), - [anon_sym___attribute] = ACTIONS(2022), - [anon_sym___attribute__] = ACTIONS(2022), - [anon_sym___declspec] = ACTIONS(2022), - [anon_sym___cdecl] = ACTIONS(2022), - [anon_sym___clrcall] = ACTIONS(2022), - [anon_sym___stdcall] = ACTIONS(2022), - [anon_sym___fastcall] = ACTIONS(2022), - [anon_sym___thiscall] = ACTIONS(2022), - [anon_sym___vectorcall] = ACTIONS(2022), - [anon_sym_LBRACE] = ACTIONS(2024), - [anon_sym_static] = ACTIONS(2022), - [anon_sym_auto] = ACTIONS(2022), - [anon_sym_register] = ACTIONS(2022), - [anon_sym_inline] = ACTIONS(2022), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2022), - [anon_sym_const] = ACTIONS(2022), - [anon_sym_volatile] = ACTIONS(2022), - [anon_sym_restrict] = ACTIONS(2022), - [anon_sym__Atomic] = ACTIONS(2022), - [anon_sym_in] = ACTIONS(2022), - [anon_sym_out] = ACTIONS(2022), - [anon_sym_inout] = ACTIONS(2022), - [anon_sym_bycopy] = ACTIONS(2022), - [anon_sym_byref] = ACTIONS(2022), - [anon_sym_oneway] = ACTIONS(2022), - [anon_sym__Nullable] = ACTIONS(2022), - [anon_sym__Nonnull] = ACTIONS(2022), - [anon_sym__Nullable_result] = ACTIONS(2022), - [anon_sym__Null_unspecified] = ACTIONS(2022), - [anon_sym___autoreleasing] = ACTIONS(2022), - [anon_sym___nullable] = ACTIONS(2022), - [anon_sym___nonnull] = ACTIONS(2022), - [anon_sym___strong] = ACTIONS(2022), - [anon_sym___weak] = ACTIONS(2022), - [anon_sym___bridge] = ACTIONS(2022), - [anon_sym___bridge_transfer] = ACTIONS(2022), - [anon_sym___bridge_retained] = ACTIONS(2022), - [anon_sym___unsafe_unretained] = ACTIONS(2022), - [anon_sym___block] = ACTIONS(2022), - [anon_sym___kindof] = ACTIONS(2022), - [anon_sym___unused] = ACTIONS(2022), - [anon_sym__Complex] = ACTIONS(2022), - [anon_sym___complex] = ACTIONS(2022), - [anon_sym_IBOutlet] = ACTIONS(2022), - [anon_sym_IBInspectable] = ACTIONS(2022), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2022), - [anon_sym_signed] = ACTIONS(2022), - [anon_sym_unsigned] = ACTIONS(2022), - [anon_sym_long] = ACTIONS(2022), - [anon_sym_short] = ACTIONS(2022), - [sym_primitive_type] = ACTIONS(2022), - [anon_sym_enum] = ACTIONS(2022), - [anon_sym_NS_ENUM] = ACTIONS(2022), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2022), - [anon_sym_NS_OPTIONS] = ACTIONS(2022), - [anon_sym_struct] = ACTIONS(2022), - [anon_sym_union] = ACTIONS(2022), + [3176] = { + [sym_identifier] = ACTIONS(1748), + [aux_sym_preproc_def_token1] = ACTIONS(1748), + [aux_sym_preproc_if_token1] = ACTIONS(1748), + [aux_sym_preproc_if_token2] = ACTIONS(1748), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1748), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1748), + [aux_sym_preproc_else_token1] = ACTIONS(1748), + [aux_sym_preproc_elif_token1] = ACTIONS(1748), + [sym_preproc_directive] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym___attribute] = ACTIONS(1748), + [anon_sym___attribute__] = ACTIONS(1748), + [anon_sym___declspec] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_auto] = ACTIONS(1748), + [anon_sym_register] = ACTIONS(1748), + [anon_sym_inline] = ACTIONS(1748), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_volatile] = ACTIONS(1748), + [anon_sym_restrict] = ACTIONS(1748), + [anon_sym__Atomic] = ACTIONS(1748), + [anon_sym_in] = ACTIONS(1748), + [anon_sym_out] = ACTIONS(1748), + [anon_sym_inout] = ACTIONS(1748), + [anon_sym_bycopy] = ACTIONS(1748), + [anon_sym_byref] = ACTIONS(1748), + [anon_sym_oneway] = ACTIONS(1748), + [anon_sym__Nullable] = ACTIONS(1748), + [anon_sym__Nonnull] = ACTIONS(1748), + [anon_sym__Nullable_result] = ACTIONS(1748), + [anon_sym__Null_unspecified] = ACTIONS(1748), + [anon_sym___autoreleasing] = ACTIONS(1748), + [anon_sym___nullable] = ACTIONS(1748), + [anon_sym___nonnull] = ACTIONS(1748), + [anon_sym___strong] = ACTIONS(1748), + [anon_sym___weak] = ACTIONS(1748), + [anon_sym___bridge] = ACTIONS(1748), + [anon_sym___bridge_transfer] = ACTIONS(1748), + [anon_sym___bridge_retained] = ACTIONS(1748), + [anon_sym___unsafe_unretained] = ACTIONS(1748), + [anon_sym___block] = ACTIONS(1748), + [anon_sym___kindof] = ACTIONS(1748), + [anon_sym___unused] = ACTIONS(1748), + [anon_sym__Complex] = ACTIONS(1748), + [anon_sym___complex] = ACTIONS(1748), + [anon_sym_IBOutlet] = ACTIONS(1748), + [anon_sym_IBInspectable] = ACTIONS(1748), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1748), + [anon_sym_signed] = ACTIONS(1748), + [anon_sym_unsigned] = ACTIONS(1748), + [anon_sym_long] = ACTIONS(1748), + [anon_sym_short] = ACTIONS(1748), + [sym_primitive_type] = ACTIONS(1748), + [anon_sym_enum] = ACTIONS(1748), + [anon_sym_struct] = ACTIONS(1748), + [anon_sym_union] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(2022), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2022), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2022), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2022), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2022), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2022), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2022), - [anon_sym_NS_AVAILABLE] = ACTIONS(2022), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2022), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_API_AVAILABLE] = ACTIONS(2022), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2022), - [anon_sym_API_DEPRECATED] = ACTIONS(2022), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2022), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2022), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2022), - [anon_sym___deprecated_msg] = ACTIONS(2022), - [anon_sym___deprecated_enum_msg] = ACTIONS(2022), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2022), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2022), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2022), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2022), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2022), - [anon_sym_typeof] = ACTIONS(2022), - [anon_sym___typeof] = ACTIONS(2022), - [anon_sym___typeof__] = ACTIONS(2022), - [sym_id] = ACTIONS(2022), - [sym_instancetype] = ACTIONS(2022), - [sym_Class] = ACTIONS(2022), - [sym_SEL] = ACTIONS(2022), - [sym_IMP] = ACTIONS(2022), - [sym_BOOL] = ACTIONS(2022), - [sym_auto] = ACTIONS(2022), + [sym_method_attribute_specifier] = ACTIONS(1748), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1748), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1748), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1748), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1748), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1748), + [anon_sym_NS_AVAILABLE] = ACTIONS(1748), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1748), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_API_AVAILABLE] = ACTIONS(1748), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_API_DEPRECATED] = ACTIONS(1748), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1748), + [anon_sym___deprecated_msg] = ACTIONS(1748), + [anon_sym___deprecated_enum_msg] = ACTIONS(1748), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_NS_ENUM] = ACTIONS(1748), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1748), + [anon_sym_NS_OPTIONS] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(1748), + [anon_sym___typeof] = ACTIONS(1748), + [anon_sym___typeof__] = ACTIONS(1748), + [sym_id] = ACTIONS(1748), + [sym_instancetype] = ACTIONS(1748), + [sym_Class] = ACTIONS(1748), + [sym_SEL] = ACTIONS(1748), + [sym_IMP] = ACTIONS(1748), + [sym_BOOL] = ACTIONS(1748), + [sym_auto] = ACTIONS(1748), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), }, - [3211] = { - [sym_identifier] = ACTIONS(2030), - [anon_sym_extern] = ACTIONS(2030), - [anon_sym___attribute] = ACTIONS(2030), - [anon_sym___attribute__] = ACTIONS(2030), - [anon_sym___declspec] = ACTIONS(2030), - [anon_sym___cdecl] = ACTIONS(2030), - [anon_sym___clrcall] = ACTIONS(2030), - [anon_sym___stdcall] = ACTIONS(2030), - [anon_sym___fastcall] = ACTIONS(2030), - [anon_sym___thiscall] = ACTIONS(2030), - [anon_sym___vectorcall] = ACTIONS(2030), - [anon_sym_LBRACE] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2030), - [anon_sym_auto] = ACTIONS(2030), - [anon_sym_register] = ACTIONS(2030), - [anon_sym_inline] = ACTIONS(2030), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2030), - [anon_sym_const] = ACTIONS(2030), - [anon_sym_volatile] = ACTIONS(2030), - [anon_sym_restrict] = ACTIONS(2030), - [anon_sym__Atomic] = ACTIONS(2030), - [anon_sym_in] = ACTIONS(2030), - [anon_sym_out] = ACTIONS(2030), - [anon_sym_inout] = ACTIONS(2030), - [anon_sym_bycopy] = ACTIONS(2030), - [anon_sym_byref] = ACTIONS(2030), - [anon_sym_oneway] = ACTIONS(2030), - [anon_sym__Nullable] = ACTIONS(2030), - [anon_sym__Nonnull] = ACTIONS(2030), - [anon_sym__Nullable_result] = ACTIONS(2030), - [anon_sym__Null_unspecified] = ACTIONS(2030), - [anon_sym___autoreleasing] = ACTIONS(2030), - [anon_sym___nullable] = ACTIONS(2030), - [anon_sym___nonnull] = ACTIONS(2030), - [anon_sym___strong] = ACTIONS(2030), - [anon_sym___weak] = ACTIONS(2030), - [anon_sym___bridge] = ACTIONS(2030), - [anon_sym___bridge_transfer] = ACTIONS(2030), - [anon_sym___bridge_retained] = ACTIONS(2030), - [anon_sym___unsafe_unretained] = ACTIONS(2030), - [anon_sym___block] = ACTIONS(2030), - [anon_sym___kindof] = ACTIONS(2030), - [anon_sym___unused] = ACTIONS(2030), - [anon_sym__Complex] = ACTIONS(2030), - [anon_sym___complex] = ACTIONS(2030), - [anon_sym_IBOutlet] = ACTIONS(2030), - [anon_sym_IBInspectable] = ACTIONS(2030), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2030), - [anon_sym_signed] = ACTIONS(2030), - [anon_sym_unsigned] = ACTIONS(2030), - [anon_sym_long] = ACTIONS(2030), - [anon_sym_short] = ACTIONS(2030), - [sym_primitive_type] = ACTIONS(2030), - [anon_sym_enum] = ACTIONS(2030), - [anon_sym_NS_ENUM] = ACTIONS(2030), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2030), - [anon_sym_NS_OPTIONS] = ACTIONS(2030), - [anon_sym_struct] = ACTIONS(2030), - [anon_sym_union] = ACTIONS(2030), + [3177] = { + [sym_identifier] = ACTIONS(1816), + [aux_sym_preproc_def_token1] = ACTIONS(1816), + [aux_sym_preproc_if_token1] = ACTIONS(1816), + [aux_sym_preproc_if_token2] = ACTIONS(1816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1816), + [aux_sym_preproc_else_token1] = ACTIONS(1816), + [aux_sym_preproc_elif_token1] = ACTIONS(1816), + [sym_preproc_directive] = ACTIONS(1816), + [anon_sym_extern] = ACTIONS(1816), + [anon_sym___attribute] = ACTIONS(1816), + [anon_sym___attribute__] = ACTIONS(1816), + [anon_sym___declspec] = ACTIONS(1816), + [anon_sym_static] = ACTIONS(1816), + [anon_sym_auto] = ACTIONS(1816), + [anon_sym_register] = ACTIONS(1816), + [anon_sym_inline] = ACTIONS(1816), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1816), + [anon_sym_const] = ACTIONS(1816), + [anon_sym_volatile] = ACTIONS(1816), + [anon_sym_restrict] = ACTIONS(1816), + [anon_sym__Atomic] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1816), + [anon_sym_out] = ACTIONS(1816), + [anon_sym_inout] = ACTIONS(1816), + [anon_sym_bycopy] = ACTIONS(1816), + [anon_sym_byref] = ACTIONS(1816), + [anon_sym_oneway] = ACTIONS(1816), + [anon_sym__Nullable] = ACTIONS(1816), + [anon_sym__Nonnull] = ACTIONS(1816), + [anon_sym__Nullable_result] = ACTIONS(1816), + [anon_sym__Null_unspecified] = ACTIONS(1816), + [anon_sym___autoreleasing] = ACTIONS(1816), + [anon_sym___nullable] = ACTIONS(1816), + [anon_sym___nonnull] = ACTIONS(1816), + [anon_sym___strong] = ACTIONS(1816), + [anon_sym___weak] = ACTIONS(1816), + [anon_sym___bridge] = ACTIONS(1816), + [anon_sym___bridge_transfer] = ACTIONS(1816), + [anon_sym___bridge_retained] = ACTIONS(1816), + [anon_sym___unsafe_unretained] = ACTIONS(1816), + [anon_sym___block] = ACTIONS(1816), + [anon_sym___kindof] = ACTIONS(1816), + [anon_sym___unused] = ACTIONS(1816), + [anon_sym__Complex] = ACTIONS(1816), + [anon_sym___complex] = ACTIONS(1816), + [anon_sym_IBOutlet] = ACTIONS(1816), + [anon_sym_IBInspectable] = ACTIONS(1816), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1816), + [anon_sym_signed] = ACTIONS(1816), + [anon_sym_unsigned] = ACTIONS(1816), + [anon_sym_long] = ACTIONS(1816), + [anon_sym_short] = ACTIONS(1816), + [sym_primitive_type] = ACTIONS(1816), + [anon_sym_enum] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1816), + [anon_sym_union] = ACTIONS(1816), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(2030), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2030), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2030), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2030), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2030), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2030), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2030), - [anon_sym_NS_AVAILABLE] = ACTIONS(2030), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2030), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_API_AVAILABLE] = ACTIONS(2030), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2030), - [anon_sym_API_DEPRECATED] = ACTIONS(2030), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2030), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2030), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2030), - [anon_sym___deprecated_msg] = ACTIONS(2030), - [anon_sym___deprecated_enum_msg] = ACTIONS(2030), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2030), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2030), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2030), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(2030), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(2030), - [anon_sym_typeof] = ACTIONS(2030), - [anon_sym___typeof] = ACTIONS(2030), - [anon_sym___typeof__] = ACTIONS(2030), - [sym_id] = ACTIONS(2030), - [sym_instancetype] = ACTIONS(2030), - [sym_Class] = ACTIONS(2030), - [sym_SEL] = ACTIONS(2030), - [sym_IMP] = ACTIONS(2030), - [sym_BOOL] = ACTIONS(2030), - [sym_auto] = ACTIONS(2030), + [sym_method_attribute_specifier] = ACTIONS(1816), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1816), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1816), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1816), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1816), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1816), + [anon_sym_NS_AVAILABLE] = ACTIONS(1816), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1816), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_API_AVAILABLE] = ACTIONS(1816), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_API_DEPRECATED] = ACTIONS(1816), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1816), + [anon_sym___deprecated_msg] = ACTIONS(1816), + [anon_sym___deprecated_enum_msg] = ACTIONS(1816), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_NS_ENUM] = ACTIONS(1816), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1816), + [anon_sym_NS_OPTIONS] = ACTIONS(1816), + [anon_sym_typeof] = ACTIONS(1816), + [anon_sym___typeof] = ACTIONS(1816), + [anon_sym___typeof__] = ACTIONS(1816), + [sym_id] = ACTIONS(1816), + [sym_instancetype] = ACTIONS(1816), + [sym_Class] = ACTIONS(1816), + [sym_SEL] = ACTIONS(1816), + [sym_IMP] = ACTIONS(1816), + [sym_BOOL] = ACTIONS(1816), + [sym_auto] = ACTIONS(1816), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), }, - [3212] = { + [3178] = { [sym_identifier] = ACTIONS(7702), [anon_sym_COMMA] = ACTIONS(7704), [anon_sym_SEMI] = ACTIONS(7704), @@ -514172,9 +508397,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7702), [sym_primitive_type] = ACTIONS(7702), [anon_sym_enum] = ACTIONS(7702), - [anon_sym_NS_ENUM] = ACTIONS(7702), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7702), - [anon_sym_NS_OPTIONS] = ACTIONS(7702), [anon_sym_struct] = ACTIONS(7702), [anon_sym_union] = ACTIONS(7702), [sym_comment] = ACTIONS(3), @@ -514205,6 +508427,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7702), [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7702), [anon_sym_NS_SWIFT_NAME] = ACTIONS(7702), + [anon_sym_NS_ENUM] = ACTIONS(7702), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7702), + [anon_sym_NS_OPTIONS] = ACTIONS(7702), [anon_sym_typeof] = ACTIONS(7702), [anon_sym___typeof] = ACTIONS(7702), [anon_sym___typeof__] = ACTIONS(7702), @@ -514222,7 +508447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3213] = { + [3179] = { [sym_identifier] = ACTIONS(7706), [aux_sym_preproc_def_token1] = ACTIONS(7706), [aux_sym_preproc_if_token1] = ACTIONS(7706), @@ -514278,9 +508503,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7706), [sym_primitive_type] = ACTIONS(7706), [anon_sym_enum] = ACTIONS(7706), - [anon_sym_NS_ENUM] = ACTIONS(7706), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7706), - [anon_sym_NS_OPTIONS] = ACTIONS(7706), [anon_sym_struct] = ACTIONS(7706), [anon_sym_union] = ACTIONS(7706), [sym_comment] = ACTIONS(3), @@ -514307,6 +508529,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7706), [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7706), [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7706), + [anon_sym_NS_ENUM] = ACTIONS(7706), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7706), + [anon_sym_NS_OPTIONS] = ACTIONS(7706), [anon_sym_typeof] = ACTIONS(7706), [anon_sym___typeof] = ACTIONS(7706), [anon_sym___typeof__] = ACTIONS(7706), @@ -514324,20 +508549,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(5), }, - [3214] = { + [3180] = { [sym_identifier] = ACTIONS(7708), - [aux_sym_preproc_def_token1] = ACTIONS(7708), - [aux_sym_preproc_if_token1] = ACTIONS(7708), - [aux_sym_preproc_if_token2] = ACTIONS(7708), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7708), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7708), - [aux_sym_preproc_else_token1] = ACTIONS(7708), - [aux_sym_preproc_elif_token1] = ACTIONS(7708), - [sym_preproc_directive] = ACTIONS(7708), + [anon_sym_COMMA] = ACTIONS(7710), + [anon_sym_SEMI] = ACTIONS(7710), + [anon_sym_typedef] = ACTIONS(7708), [anon_sym_extern] = ACTIONS(7708), [anon_sym___attribute] = ACTIONS(7708), [anon_sym___attribute__] = ACTIONS(7708), [anon_sym___declspec] = ACTIONS(7708), + [anon_sym_RBRACE] = ACTIONS(7710), [anon_sym_static] = ACTIONS(7708), [anon_sym_auto] = ACTIONS(7708), [anon_sym_register] = ACTIONS(7708), @@ -514380,12 +508601,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7708), [sym_primitive_type] = ACTIONS(7708), [anon_sym_enum] = ACTIONS(7708), - [anon_sym_NS_ENUM] = ACTIONS(7708), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7708), - [anon_sym_NS_OPTIONS] = ACTIONS(7708), [anon_sym_struct] = ACTIONS(7708), [anon_sym_union] = ACTIONS(7708), [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(7710), + [anon_sym_ATinterface] = ACTIONS(7710), [sym_method_attribute_specifier] = ACTIONS(7708), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7708), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7708), @@ -514409,6 +508629,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7708), [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7708), [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7708), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7708), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7708), + [anon_sym_NS_ENUM] = ACTIONS(7708), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7708), + [anon_sym_NS_OPTIONS] = ACTIONS(7708), [anon_sym_typeof] = ACTIONS(7708), [anon_sym___typeof] = ACTIONS(7708), [anon_sym___typeof__] = ACTIONS(7708), @@ -514422,105 +508647,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3215] = { - [sym_identifier] = ACTIONS(7710), - [anon_sym_COMMA] = ACTIONS(7712), - [anon_sym_SEMI] = ACTIONS(7712), - [anon_sym_typedef] = ACTIONS(7710), - [anon_sym_extern] = ACTIONS(7710), - [anon_sym___attribute] = ACTIONS(7710), - [anon_sym___attribute__] = ACTIONS(7710), - [anon_sym___declspec] = ACTIONS(7710), - [anon_sym_RBRACE] = ACTIONS(7712), - [anon_sym_static] = ACTIONS(7710), - [anon_sym_auto] = ACTIONS(7710), - [anon_sym_register] = ACTIONS(7710), - [anon_sym_inline] = ACTIONS(7710), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7710), - [anon_sym_const] = ACTIONS(7710), - [anon_sym_volatile] = ACTIONS(7710), - [anon_sym_restrict] = ACTIONS(7710), - [anon_sym__Atomic] = ACTIONS(7710), - [anon_sym_in] = ACTIONS(7710), - [anon_sym_out] = ACTIONS(7710), - [anon_sym_inout] = ACTIONS(7710), - [anon_sym_bycopy] = ACTIONS(7710), - [anon_sym_byref] = ACTIONS(7710), - [anon_sym_oneway] = ACTIONS(7710), - [anon_sym__Nullable] = ACTIONS(7710), - [anon_sym__Nonnull] = ACTIONS(7710), - [anon_sym__Nullable_result] = ACTIONS(7710), - [anon_sym__Null_unspecified] = ACTIONS(7710), - [anon_sym___autoreleasing] = ACTIONS(7710), - [anon_sym___nullable] = ACTIONS(7710), - [anon_sym___nonnull] = ACTIONS(7710), - [anon_sym___strong] = ACTIONS(7710), - [anon_sym___weak] = ACTIONS(7710), - [anon_sym___bridge] = ACTIONS(7710), - [anon_sym___bridge_transfer] = ACTIONS(7710), - [anon_sym___bridge_retained] = ACTIONS(7710), - [anon_sym___unsafe_unretained] = ACTIONS(7710), - [anon_sym___block] = ACTIONS(7710), - [anon_sym___kindof] = ACTIONS(7710), - [anon_sym___unused] = ACTIONS(7710), - [anon_sym__Complex] = ACTIONS(7710), - [anon_sym___complex] = ACTIONS(7710), - [anon_sym_IBOutlet] = ACTIONS(7710), - [anon_sym_IBInspectable] = ACTIONS(7710), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7710), - [anon_sym_signed] = ACTIONS(7710), - [anon_sym_unsigned] = ACTIONS(7710), - [anon_sym_long] = ACTIONS(7710), - [anon_sym_short] = ACTIONS(7710), - [sym_primitive_type] = ACTIONS(7710), - [anon_sym_enum] = ACTIONS(7710), - [anon_sym_NS_ENUM] = ACTIONS(7710), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7710), - [anon_sym_NS_OPTIONS] = ACTIONS(7710), - [anon_sym_struct] = ACTIONS(7710), - [anon_sym_union] = ACTIONS(7710), + [3181] = { + [sym_identifier] = ACTIONS(7712), + [anon_sym_COMMA] = ACTIONS(7714), + [anon_sym_SEMI] = ACTIONS(7714), + [anon_sym_typedef] = ACTIONS(7712), + [anon_sym_extern] = ACTIONS(7712), + [anon_sym___attribute] = ACTIONS(7712), + [anon_sym___attribute__] = ACTIONS(7712), + [anon_sym___declspec] = ACTIONS(7712), + [anon_sym_RBRACE] = ACTIONS(7714), + [anon_sym_static] = ACTIONS(7712), + [anon_sym_auto] = ACTIONS(7712), + [anon_sym_register] = ACTIONS(7712), + [anon_sym_inline] = ACTIONS(7712), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7712), + [anon_sym_const] = ACTIONS(7712), + [anon_sym_volatile] = ACTIONS(7712), + [anon_sym_restrict] = ACTIONS(7712), + [anon_sym__Atomic] = ACTIONS(7712), + [anon_sym_in] = ACTIONS(7712), + [anon_sym_out] = ACTIONS(7712), + [anon_sym_inout] = ACTIONS(7712), + [anon_sym_bycopy] = ACTIONS(7712), + [anon_sym_byref] = ACTIONS(7712), + [anon_sym_oneway] = ACTIONS(7712), + [anon_sym__Nullable] = ACTIONS(7712), + [anon_sym__Nonnull] = ACTIONS(7712), + [anon_sym__Nullable_result] = ACTIONS(7712), + [anon_sym__Null_unspecified] = ACTIONS(7712), + [anon_sym___autoreleasing] = ACTIONS(7712), + [anon_sym___nullable] = ACTIONS(7712), + [anon_sym___nonnull] = ACTIONS(7712), + [anon_sym___strong] = ACTIONS(7712), + [anon_sym___weak] = ACTIONS(7712), + [anon_sym___bridge] = ACTIONS(7712), + [anon_sym___bridge_transfer] = ACTIONS(7712), + [anon_sym___bridge_retained] = ACTIONS(7712), + [anon_sym___unsafe_unretained] = ACTIONS(7712), + [anon_sym___block] = ACTIONS(7712), + [anon_sym___kindof] = ACTIONS(7712), + [anon_sym___unused] = ACTIONS(7712), + [anon_sym__Complex] = ACTIONS(7712), + [anon_sym___complex] = ACTIONS(7712), + [anon_sym_IBOutlet] = ACTIONS(7712), + [anon_sym_IBInspectable] = ACTIONS(7712), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7712), + [anon_sym_signed] = ACTIONS(7712), + [anon_sym_unsigned] = ACTIONS(7712), + [anon_sym_long] = ACTIONS(7712), + [anon_sym_short] = ACTIONS(7712), + [sym_primitive_type] = ACTIONS(7712), + [anon_sym_enum] = ACTIONS(7712), + [anon_sym_struct] = ACTIONS(7712), + [anon_sym_union] = ACTIONS(7712), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(7712), - [anon_sym_ATinterface] = ACTIONS(7712), - [sym_method_attribute_specifier] = ACTIONS(7710), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7710), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7710), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7710), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7710), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7710), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7710), - [anon_sym_NS_AVAILABLE] = ACTIONS(7710), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7710), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7710), - [anon_sym_API_AVAILABLE] = ACTIONS(7710), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7710), - [anon_sym_API_DEPRECATED] = ACTIONS(7710), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7710), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7710), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7710), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7710), - [anon_sym___deprecated_msg] = ACTIONS(7710), - [anon_sym___deprecated_enum_msg] = ACTIONS(7710), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7710), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7710), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7710), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7710), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7710), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7710), - [anon_sym_typeof] = ACTIONS(7710), - [anon_sym___typeof] = ACTIONS(7710), - [anon_sym___typeof__] = ACTIONS(7710), - [sym_id] = ACTIONS(7710), - [sym_instancetype] = ACTIONS(7710), - [sym_Class] = ACTIONS(7710), - [sym_SEL] = ACTIONS(7710), - [sym_IMP] = ACTIONS(7710), - [sym_BOOL] = ACTIONS(7710), - [sym_auto] = ACTIONS(7710), + [anon_sym_ATprotocol] = ACTIONS(7714), + [anon_sym_ATinterface] = ACTIONS(7714), + [sym_method_attribute_specifier] = ACTIONS(7712), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7712), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7712), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7712), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7712), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7712), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7712), + [anon_sym_NS_AVAILABLE] = ACTIONS(7712), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7712), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7712), + [anon_sym_API_AVAILABLE] = ACTIONS(7712), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7712), + [anon_sym_API_DEPRECATED] = ACTIONS(7712), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7712), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7712), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7712), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7712), + [anon_sym___deprecated_msg] = ACTIONS(7712), + [anon_sym___deprecated_enum_msg] = ACTIONS(7712), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7712), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7712), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7712), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7712), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7712), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7712), + [anon_sym_NS_ENUM] = ACTIONS(7712), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7712), + [anon_sym_NS_OPTIONS] = ACTIONS(7712), + [anon_sym_typeof] = ACTIONS(7712), + [anon_sym___typeof] = ACTIONS(7712), + [anon_sym___typeof__] = ACTIONS(7712), + [sym_id] = ACTIONS(7712), + [sym_instancetype] = ACTIONS(7712), + [sym_Class] = ACTIONS(7712), + [sym_SEL] = ACTIONS(7712), + [sym_IMP] = ACTIONS(7712), + [sym_BOOL] = ACTIONS(7712), + [sym_auto] = ACTIONS(7712), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -514528,109 +508753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3216] = { - [sym_identifier] = ACTIONS(7714), - [aux_sym_preproc_def_token1] = ACTIONS(7714), - [aux_sym_preproc_if_token1] = ACTIONS(7714), - [aux_sym_preproc_if_token2] = ACTIONS(7714), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7714), - [aux_sym_preproc_else_token1] = ACTIONS(7714), - [aux_sym_preproc_elif_token1] = ACTIONS(7714), - [sym_preproc_directive] = ACTIONS(7714), - [anon_sym_extern] = ACTIONS(7714), - [anon_sym___attribute] = ACTIONS(7714), - [anon_sym___attribute__] = ACTIONS(7714), - [anon_sym___declspec] = ACTIONS(7714), - [anon_sym_static] = ACTIONS(7714), - [anon_sym_auto] = ACTIONS(7714), - [anon_sym_register] = ACTIONS(7714), - [anon_sym_inline] = ACTIONS(7714), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7714), - [anon_sym_const] = ACTIONS(7714), - [anon_sym_volatile] = ACTIONS(7714), - [anon_sym_restrict] = ACTIONS(7714), - [anon_sym__Atomic] = ACTIONS(7714), - [anon_sym_in] = ACTIONS(7714), - [anon_sym_out] = ACTIONS(7714), - [anon_sym_inout] = ACTIONS(7714), - [anon_sym_bycopy] = ACTIONS(7714), - [anon_sym_byref] = ACTIONS(7714), - [anon_sym_oneway] = ACTIONS(7714), - [anon_sym__Nullable] = ACTIONS(7714), - [anon_sym__Nonnull] = ACTIONS(7714), - [anon_sym__Nullable_result] = ACTIONS(7714), - [anon_sym__Null_unspecified] = ACTIONS(7714), - [anon_sym___autoreleasing] = ACTIONS(7714), - [anon_sym___nullable] = ACTIONS(7714), - [anon_sym___nonnull] = ACTIONS(7714), - [anon_sym___strong] = ACTIONS(7714), - [anon_sym___weak] = ACTIONS(7714), - [anon_sym___bridge] = ACTIONS(7714), - [anon_sym___bridge_transfer] = ACTIONS(7714), - [anon_sym___bridge_retained] = ACTIONS(7714), - [anon_sym___unsafe_unretained] = ACTIONS(7714), - [anon_sym___block] = ACTIONS(7714), - [anon_sym___kindof] = ACTIONS(7714), - [anon_sym___unused] = ACTIONS(7714), - [anon_sym__Complex] = ACTIONS(7714), - [anon_sym___complex] = ACTIONS(7714), - [anon_sym_IBOutlet] = ACTIONS(7714), - [anon_sym_IBInspectable] = ACTIONS(7714), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7714), - [anon_sym_signed] = ACTIONS(7714), - [anon_sym_unsigned] = ACTIONS(7714), - [anon_sym_long] = ACTIONS(7714), - [anon_sym_short] = ACTIONS(7714), - [sym_primitive_type] = ACTIONS(7714), - [anon_sym_enum] = ACTIONS(7714), - [anon_sym_NS_ENUM] = ACTIONS(7714), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7714), - [anon_sym_NS_OPTIONS] = ACTIONS(7714), - [anon_sym_struct] = ACTIONS(7714), - [anon_sym_union] = ACTIONS(7714), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7714), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7714), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7714), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7714), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7714), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7714), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7714), - [anon_sym_NS_AVAILABLE] = ACTIONS(7714), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7714), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7714), - [anon_sym_API_AVAILABLE] = ACTIONS(7714), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7714), - [anon_sym_API_DEPRECATED] = ACTIONS(7714), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7714), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7714), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7714), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7714), - [anon_sym___deprecated_msg] = ACTIONS(7714), - [anon_sym___deprecated_enum_msg] = ACTIONS(7714), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7714), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7714), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7714), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7714), - [anon_sym_typeof] = ACTIONS(7714), - [anon_sym___typeof] = ACTIONS(7714), - [anon_sym___typeof__] = ACTIONS(7714), - [sym_id] = ACTIONS(7714), - [sym_instancetype] = ACTIONS(7714), - [sym_Class] = ACTIONS(7714), - [sym_SEL] = ACTIONS(7714), - [sym_IMP] = ACTIONS(7714), - [sym_BOOL] = ACTIONS(7714), - [sym_auto] = ACTIONS(7714), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3217] = { + [3182] = { [sym_identifier] = ACTIONS(7716), [aux_sym_preproc_def_token1] = ACTIONS(7716), [aux_sym_preproc_if_token1] = ACTIONS(7716), @@ -514686,9 +508809,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7716), [sym_primitive_type] = ACTIONS(7716), [anon_sym_enum] = ACTIONS(7716), - [anon_sym_NS_ENUM] = ACTIONS(7716), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7716), - [anon_sym_NS_OPTIONS] = ACTIONS(7716), [anon_sym_struct] = ACTIONS(7716), [anon_sym_union] = ACTIONS(7716), [sym_comment] = ACTIONS(3), @@ -514715,6 +508835,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7716), [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7716), [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7716), + [anon_sym_NS_ENUM] = ACTIONS(7716), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7716), + [anon_sym_NS_OPTIONS] = ACTIONS(7716), [anon_sym_typeof] = ACTIONS(7716), [anon_sym___typeof] = ACTIONS(7716), [anon_sym___typeof__] = ACTIONS(7716), @@ -514732,97 +508855,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(5), }, - [3218] = { - [sym_attribute_specifier] = STATE(3854), - [sym_type_qualifier] = STATE(3856), - [sym__type_specifier] = STATE(3531), - [sym_sized_type_specifier] = STATE(3531), - [sym_enum_specifier] = STATE(3531), - [sym_struct_specifier] = STATE(3531), - [sym_union_specifier] = STATE(3531), - [sym_macro_type_specifier] = STATE(3531), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3922), - [sym_availability_attribute_specifier] = STATE(3922), - [sym_typeof_specifier] = STATE(3531), - [sym_atomic_specifier] = STATE(3531), - [sym_generic_type_specifier] = STATE(3531), - [aux_sym_type_definition_repeat1] = STATE(3856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym___attribute] = ACTIONS(7686), - [anon_sym___attribute__] = ACTIONS(7686), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), + [3183] = { + [sym_identifier] = ACTIONS(7718), + [aux_sym_preproc_def_token1] = ACTIONS(7718), + [aux_sym_preproc_if_token1] = ACTIONS(7718), + [aux_sym_preproc_if_token2] = ACTIONS(7718), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7718), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7718), + [aux_sym_preproc_else_token1] = ACTIONS(7718), + [aux_sym_preproc_elif_token1] = ACTIONS(7718), + [sym_preproc_directive] = ACTIONS(7718), + [anon_sym_extern] = ACTIONS(7718), + [anon_sym___attribute] = ACTIONS(7718), + [anon_sym___attribute__] = ACTIONS(7718), + [anon_sym___declspec] = ACTIONS(7718), + [anon_sym_static] = ACTIONS(7718), + [anon_sym_auto] = ACTIONS(7718), + [anon_sym_register] = ACTIONS(7718), + [anon_sym_inline] = ACTIONS(7718), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym_in] = ACTIONS(7718), + [anon_sym_out] = ACTIONS(7718), + [anon_sym_inout] = ACTIONS(7718), + [anon_sym_bycopy] = ACTIONS(7718), + [anon_sym_byref] = ACTIONS(7718), + [anon_sym_oneway] = ACTIONS(7718), + [anon_sym__Nullable] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym__Nullable_result] = ACTIONS(7718), + [anon_sym__Null_unspecified] = ACTIONS(7718), + [anon_sym___autoreleasing] = ACTIONS(7718), + [anon_sym___nullable] = ACTIONS(7718), + [anon_sym___nonnull] = ACTIONS(7718), + [anon_sym___strong] = ACTIONS(7718), + [anon_sym___weak] = ACTIONS(7718), + [anon_sym___bridge] = ACTIONS(7718), + [anon_sym___bridge_transfer] = ACTIONS(7718), + [anon_sym___bridge_retained] = ACTIONS(7718), + [anon_sym___unsafe_unretained] = ACTIONS(7718), + [anon_sym___block] = ACTIONS(7718), + [anon_sym___kindof] = ACTIONS(7718), + [anon_sym___unused] = ACTIONS(7718), + [anon_sym__Complex] = ACTIONS(7718), + [anon_sym___complex] = ACTIONS(7718), + [anon_sym_IBOutlet] = ACTIONS(7718), + [anon_sym_IBInspectable] = ACTIONS(7718), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7718), + [anon_sym_signed] = ACTIONS(7718), + [anon_sym_unsigned] = ACTIONS(7718), + [anon_sym_long] = ACTIONS(7718), + [anon_sym_short] = ACTIONS(7718), [sym_primitive_type] = ACTIONS(7718), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [anon_sym_enum] = ACTIONS(7718), + [anon_sym_struct] = ACTIONS(7718), + [anon_sym_union] = ACTIONS(7718), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7694), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7698), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7698), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_NS_AVAILABLE] = ACTIONS(7700), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7700), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_API_AVAILABLE] = ACTIONS(7700), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_API_DEPRECATED] = ACTIONS(7700), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7700), - [anon_sym___deprecated_msg] = ACTIONS(7700), - [anon_sym___deprecated_enum_msg] = ACTIONS(7700), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), + [sym_method_attribute_specifier] = ACTIONS(7718), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7718), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7718), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7718), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7718), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7718), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7718), + [anon_sym_NS_AVAILABLE] = ACTIONS(7718), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7718), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7718), + [anon_sym_API_AVAILABLE] = ACTIONS(7718), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7718), + [anon_sym_API_DEPRECATED] = ACTIONS(7718), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7718), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7718), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7718), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7718), + [anon_sym___deprecated_msg] = ACTIONS(7718), + [anon_sym___deprecated_enum_msg] = ACTIONS(7718), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7718), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7718), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7718), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7718), + [anon_sym_NS_ENUM] = ACTIONS(7718), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7718), + [anon_sym_NS_OPTIONS] = ACTIONS(7718), + [anon_sym_typeof] = ACTIONS(7718), + [anon_sym___typeof] = ACTIONS(7718), + [anon_sym___typeof__] = ACTIONS(7718), + [sym_id] = ACTIONS(7718), [sym_instancetype] = ACTIONS(7718), - [sym_Class] = ACTIONS(1163), + [sym_Class] = ACTIONS(7718), [sym_SEL] = ACTIONS(7718), [sym_IMP] = ACTIONS(7718), [sym_BOOL] = ACTIONS(7718), @@ -514830,101 +508953,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), }, - [3219] = { - [sym_attribute_specifier] = STATE(3861), - [sym_type_qualifier] = STATE(3849), - [sym__type_specifier] = STATE(3563), - [sym_sized_type_specifier] = STATE(3563), - [sym_enum_specifier] = STATE(3563), - [sym_struct_specifier] = STATE(3563), - [sym_union_specifier] = STATE(3563), - [sym_macro_type_specifier] = STATE(3563), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3922), - [sym_availability_attribute_specifier] = STATE(3922), - [sym_typeof_specifier] = STATE(3563), - [sym_atomic_specifier] = STATE(3563), - [sym_generic_type_specifier] = STATE(3563), - [aux_sym_type_definition_repeat1] = STATE(3849), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym___attribute] = ACTIONS(7686), - [anon_sym___attribute__] = ACTIONS(7686), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), + [3184] = { + [sym_identifier] = ACTIONS(7720), + [aux_sym_preproc_def_token1] = ACTIONS(7720), + [aux_sym_preproc_if_token1] = ACTIONS(7720), + [aux_sym_preproc_if_token2] = ACTIONS(7720), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7720), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7720), + [aux_sym_preproc_else_token1] = ACTIONS(7720), + [aux_sym_preproc_elif_token1] = ACTIONS(7720), + [sym_preproc_directive] = ACTIONS(7720), + [anon_sym_extern] = ACTIONS(7720), + [anon_sym___attribute] = ACTIONS(7720), + [anon_sym___attribute__] = ACTIONS(7720), + [anon_sym___declspec] = ACTIONS(7720), + [anon_sym_static] = ACTIONS(7720), + [anon_sym_auto] = ACTIONS(7720), + [anon_sym_register] = ACTIONS(7720), + [anon_sym_inline] = ACTIONS(7720), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7720), + [anon_sym_const] = ACTIONS(7720), + [anon_sym_volatile] = ACTIONS(7720), + [anon_sym_restrict] = ACTIONS(7720), + [anon_sym__Atomic] = ACTIONS(7720), + [anon_sym_in] = ACTIONS(7720), + [anon_sym_out] = ACTIONS(7720), + [anon_sym_inout] = ACTIONS(7720), + [anon_sym_bycopy] = ACTIONS(7720), + [anon_sym_byref] = ACTIONS(7720), + [anon_sym_oneway] = ACTIONS(7720), + [anon_sym__Nullable] = ACTIONS(7720), + [anon_sym__Nonnull] = ACTIONS(7720), + [anon_sym__Nullable_result] = ACTIONS(7720), + [anon_sym__Null_unspecified] = ACTIONS(7720), + [anon_sym___autoreleasing] = ACTIONS(7720), + [anon_sym___nullable] = ACTIONS(7720), + [anon_sym___nonnull] = ACTIONS(7720), + [anon_sym___strong] = ACTIONS(7720), + [anon_sym___weak] = ACTIONS(7720), + [anon_sym___bridge] = ACTIONS(7720), + [anon_sym___bridge_transfer] = ACTIONS(7720), + [anon_sym___bridge_retained] = ACTIONS(7720), + [anon_sym___unsafe_unretained] = ACTIONS(7720), + [anon_sym___block] = ACTIONS(7720), + [anon_sym___kindof] = ACTIONS(7720), + [anon_sym___unused] = ACTIONS(7720), + [anon_sym__Complex] = ACTIONS(7720), + [anon_sym___complex] = ACTIONS(7720), + [anon_sym_IBOutlet] = ACTIONS(7720), + [anon_sym_IBInspectable] = ACTIONS(7720), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7720), + [anon_sym_signed] = ACTIONS(7720), + [anon_sym_unsigned] = ACTIONS(7720), + [anon_sym_long] = ACTIONS(7720), + [anon_sym_short] = ACTIONS(7720), [sym_primitive_type] = ACTIONS(7720), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [anon_sym_enum] = ACTIONS(7720), + [anon_sym_struct] = ACTIONS(7720), + [anon_sym_union] = ACTIONS(7720), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7694), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7698), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7698), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_NS_AVAILABLE] = ACTIONS(7700), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7700), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_API_AVAILABLE] = ACTIONS(7700), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_API_DEPRECATED] = ACTIONS(7700), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7700), - [anon_sym___deprecated_msg] = ACTIONS(7700), - [anon_sym___deprecated_enum_msg] = ACTIONS(7700), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), + [sym_method_attribute_specifier] = ACTIONS(7720), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7720), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7720), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7720), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7720), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7720), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7720), + [anon_sym_NS_AVAILABLE] = ACTIONS(7720), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7720), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7720), + [anon_sym_API_AVAILABLE] = ACTIONS(7720), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7720), + [anon_sym_API_DEPRECATED] = ACTIONS(7720), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7720), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7720), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7720), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7720), + [anon_sym___deprecated_msg] = ACTIONS(7720), + [anon_sym___deprecated_enum_msg] = ACTIONS(7720), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7720), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7720), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7720), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7720), + [anon_sym_NS_ENUM] = ACTIONS(7720), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7720), + [anon_sym_NS_OPTIONS] = ACTIONS(7720), + [anon_sym_typeof] = ACTIONS(7720), + [anon_sym___typeof] = ACTIONS(7720), + [anon_sym___typeof__] = ACTIONS(7720), + [sym_id] = ACTIONS(7720), [sym_instancetype] = ACTIONS(7720), - [sym_Class] = ACTIONS(1163), + [sym_Class] = ACTIONS(7720), [sym_SEL] = ACTIONS(7720), [sym_IMP] = ACTIONS(7720), [sym_BOOL] = ACTIONS(7720), @@ -514932,101 +509055,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), }, - [3220] = { - [sym_attribute_specifier] = STATE(3818), - [sym_type_qualifier] = STATE(3848), - [sym__type_specifier] = STATE(3468), - [sym_sized_type_specifier] = STATE(3468), - [sym_enum_specifier] = STATE(3468), - [sym_struct_specifier] = STATE(3468), - [sym_union_specifier] = STATE(3468), - [sym_macro_type_specifier] = STATE(3468), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3922), - [sym_availability_attribute_specifier] = STATE(3922), - [sym_typeof_specifier] = STATE(3468), - [sym_atomic_specifier] = STATE(3468), - [sym_generic_type_specifier] = STATE(3468), - [aux_sym_type_definition_repeat1] = STATE(3848), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym___attribute] = ACTIONS(7686), - [anon_sym___attribute__] = ACTIONS(7686), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), + [3185] = { + [sym_identifier] = ACTIONS(7722), + [aux_sym_preproc_def_token1] = ACTIONS(7722), + [aux_sym_preproc_if_token1] = ACTIONS(7722), + [aux_sym_preproc_if_token2] = ACTIONS(7722), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7722), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7722), + [aux_sym_preproc_else_token1] = ACTIONS(7722), + [aux_sym_preproc_elif_token1] = ACTIONS(7722), + [sym_preproc_directive] = ACTIONS(7722), + [anon_sym_extern] = ACTIONS(7722), + [anon_sym___attribute] = ACTIONS(7722), + [anon_sym___attribute__] = ACTIONS(7722), + [anon_sym___declspec] = ACTIONS(7722), + [anon_sym_static] = ACTIONS(7722), + [anon_sym_auto] = ACTIONS(7722), + [anon_sym_register] = ACTIONS(7722), + [anon_sym_inline] = ACTIONS(7722), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7722), + [anon_sym_const] = ACTIONS(7722), + [anon_sym_volatile] = ACTIONS(7722), + [anon_sym_restrict] = ACTIONS(7722), + [anon_sym__Atomic] = ACTIONS(7722), + [anon_sym_in] = ACTIONS(7722), + [anon_sym_out] = ACTIONS(7722), + [anon_sym_inout] = ACTIONS(7722), + [anon_sym_bycopy] = ACTIONS(7722), + [anon_sym_byref] = ACTIONS(7722), + [anon_sym_oneway] = ACTIONS(7722), + [anon_sym__Nullable] = ACTIONS(7722), + [anon_sym__Nonnull] = ACTIONS(7722), + [anon_sym__Nullable_result] = ACTIONS(7722), + [anon_sym__Null_unspecified] = ACTIONS(7722), + [anon_sym___autoreleasing] = ACTIONS(7722), + [anon_sym___nullable] = ACTIONS(7722), + [anon_sym___nonnull] = ACTIONS(7722), + [anon_sym___strong] = ACTIONS(7722), + [anon_sym___weak] = ACTIONS(7722), + [anon_sym___bridge] = ACTIONS(7722), + [anon_sym___bridge_transfer] = ACTIONS(7722), + [anon_sym___bridge_retained] = ACTIONS(7722), + [anon_sym___unsafe_unretained] = ACTIONS(7722), + [anon_sym___block] = ACTIONS(7722), + [anon_sym___kindof] = ACTIONS(7722), + [anon_sym___unused] = ACTIONS(7722), + [anon_sym__Complex] = ACTIONS(7722), + [anon_sym___complex] = ACTIONS(7722), + [anon_sym_IBOutlet] = ACTIONS(7722), + [anon_sym_IBInspectable] = ACTIONS(7722), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7722), + [anon_sym_signed] = ACTIONS(7722), + [anon_sym_unsigned] = ACTIONS(7722), + [anon_sym_long] = ACTIONS(7722), + [anon_sym_short] = ACTIONS(7722), [sym_primitive_type] = ACTIONS(7722), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [anon_sym_enum] = ACTIONS(7722), + [anon_sym_struct] = ACTIONS(7722), + [anon_sym_union] = ACTIONS(7722), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7694), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7698), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7698), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_NS_AVAILABLE] = ACTIONS(7700), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7700), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_API_AVAILABLE] = ACTIONS(7700), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_API_DEPRECATED] = ACTIONS(7700), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7700), - [anon_sym___deprecated_msg] = ACTIONS(7700), - [anon_sym___deprecated_enum_msg] = ACTIONS(7700), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), + [sym_method_attribute_specifier] = ACTIONS(7722), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7722), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7722), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7722), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7722), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7722), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7722), + [anon_sym_NS_AVAILABLE] = ACTIONS(7722), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7722), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7722), + [anon_sym_API_AVAILABLE] = ACTIONS(7722), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7722), + [anon_sym_API_DEPRECATED] = ACTIONS(7722), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7722), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7722), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7722), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7722), + [anon_sym___deprecated_msg] = ACTIONS(7722), + [anon_sym___deprecated_enum_msg] = ACTIONS(7722), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7722), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7722), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7722), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7722), + [anon_sym_NS_ENUM] = ACTIONS(7722), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7722), + [anon_sym_NS_OPTIONS] = ACTIONS(7722), + [anon_sym_typeof] = ACTIONS(7722), + [anon_sym___typeof] = ACTIONS(7722), + [anon_sym___typeof__] = ACTIONS(7722), + [sym_id] = ACTIONS(7722), [sym_instancetype] = ACTIONS(7722), - [sym_Class] = ACTIONS(1163), + [sym_Class] = ACTIONS(7722), [sym_SEL] = ACTIONS(7722), [sym_IMP] = ACTIONS(7722), [sym_BOOL] = ACTIONS(7722), @@ -515034,20 +509157,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), }, - [3221] = { + [3186] = { [sym_identifier] = ACTIONS(7724), - [anon_sym_COMMA] = ACTIONS(7726), - [anon_sym_SEMI] = ACTIONS(7726), - [anon_sym_typedef] = ACTIONS(7724), + [aux_sym_preproc_def_token1] = ACTIONS(7724), + [aux_sym_preproc_if_token1] = ACTIONS(7724), + [aux_sym_preproc_if_token2] = ACTIONS(7724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7724), + [aux_sym_preproc_else_token1] = ACTIONS(7724), + [aux_sym_preproc_elif_token1] = ACTIONS(7724), + [sym_preproc_directive] = ACTIONS(7724), [anon_sym_extern] = ACTIONS(7724), [anon_sym___attribute] = ACTIONS(7724), [anon_sym___attribute__] = ACTIONS(7724), [anon_sym___declspec] = ACTIONS(7724), - [anon_sym_RBRACE] = ACTIONS(7726), [anon_sym_static] = ACTIONS(7724), [anon_sym_auto] = ACTIONS(7724), [anon_sym_register] = ACTIONS(7724), @@ -515090,14 +509217,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7724), [sym_primitive_type] = ACTIONS(7724), [anon_sym_enum] = ACTIONS(7724), - [anon_sym_NS_ENUM] = ACTIONS(7724), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7724), - [anon_sym_NS_OPTIONS] = ACTIONS(7724), [anon_sym_struct] = ACTIONS(7724), [anon_sym_union] = ACTIONS(7724), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(7726), - [anon_sym_ATinterface] = ACTIONS(7726), [sym_method_attribute_specifier] = ACTIONS(7724), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7724), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7724), @@ -515121,8 +509243,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7724), [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7724), [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7724), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7724), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7724), + [anon_sym_NS_ENUM] = ACTIONS(7724), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7724), + [anon_sym_NS_OPTIONS] = ACTIONS(7724), [anon_sym_typeof] = ACTIONS(7724), [anon_sym___typeof] = ACTIONS(7724), [anon_sym___typeof__] = ACTIONS(7724), @@ -515136,11 +509259,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), }, - [3222] = { + [3187] = { + [sym_identifier] = ACTIONS(7726), + [aux_sym_preproc_def_token1] = ACTIONS(7726), + [aux_sym_preproc_if_token1] = ACTIONS(7726), + [aux_sym_preproc_if_token2] = ACTIONS(7726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7726), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7726), + [aux_sym_preproc_else_token1] = ACTIONS(7726), + [aux_sym_preproc_elif_token1] = ACTIONS(7726), + [sym_preproc_directive] = ACTIONS(7726), + [anon_sym_extern] = ACTIONS(7726), + [anon_sym___attribute] = ACTIONS(7726), + [anon_sym___attribute__] = ACTIONS(7726), + [anon_sym___declspec] = ACTIONS(7726), + [anon_sym_static] = ACTIONS(7726), + [anon_sym_auto] = ACTIONS(7726), + [anon_sym_register] = ACTIONS(7726), + [anon_sym_inline] = ACTIONS(7726), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7726), + [anon_sym_const] = ACTIONS(7726), + [anon_sym_volatile] = ACTIONS(7726), + [anon_sym_restrict] = ACTIONS(7726), + [anon_sym__Atomic] = ACTIONS(7726), + [anon_sym_in] = ACTIONS(7726), + [anon_sym_out] = ACTIONS(7726), + [anon_sym_inout] = ACTIONS(7726), + [anon_sym_bycopy] = ACTIONS(7726), + [anon_sym_byref] = ACTIONS(7726), + [anon_sym_oneway] = ACTIONS(7726), + [anon_sym__Nullable] = ACTIONS(7726), + [anon_sym__Nonnull] = ACTIONS(7726), + [anon_sym__Nullable_result] = ACTIONS(7726), + [anon_sym__Null_unspecified] = ACTIONS(7726), + [anon_sym___autoreleasing] = ACTIONS(7726), + [anon_sym___nullable] = ACTIONS(7726), + [anon_sym___nonnull] = ACTIONS(7726), + [anon_sym___strong] = ACTIONS(7726), + [anon_sym___weak] = ACTIONS(7726), + [anon_sym___bridge] = ACTIONS(7726), + [anon_sym___bridge_transfer] = ACTIONS(7726), + [anon_sym___bridge_retained] = ACTIONS(7726), + [anon_sym___unsafe_unretained] = ACTIONS(7726), + [anon_sym___block] = ACTIONS(7726), + [anon_sym___kindof] = ACTIONS(7726), + [anon_sym___unused] = ACTIONS(7726), + [anon_sym__Complex] = ACTIONS(7726), + [anon_sym___complex] = ACTIONS(7726), + [anon_sym_IBOutlet] = ACTIONS(7726), + [anon_sym_IBInspectable] = ACTIONS(7726), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7726), + [anon_sym_signed] = ACTIONS(7726), + [anon_sym_unsigned] = ACTIONS(7726), + [anon_sym_long] = ACTIONS(7726), + [anon_sym_short] = ACTIONS(7726), + [sym_primitive_type] = ACTIONS(7726), + [anon_sym_enum] = ACTIONS(7726), + [anon_sym_struct] = ACTIONS(7726), + [anon_sym_union] = ACTIONS(7726), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7726), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7726), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7726), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7726), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7726), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7726), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7726), + [anon_sym_NS_AVAILABLE] = ACTIONS(7726), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7726), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7726), + [anon_sym_API_AVAILABLE] = ACTIONS(7726), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7726), + [anon_sym_API_DEPRECATED] = ACTIONS(7726), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7726), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7726), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7726), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7726), + [anon_sym___deprecated_msg] = ACTIONS(7726), + [anon_sym___deprecated_enum_msg] = ACTIONS(7726), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7726), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7726), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7726), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7726), + [anon_sym_NS_ENUM] = ACTIONS(7726), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7726), + [anon_sym_NS_OPTIONS] = ACTIONS(7726), + [anon_sym_typeof] = ACTIONS(7726), + [anon_sym___typeof] = ACTIONS(7726), + [anon_sym___typeof__] = ACTIONS(7726), + [sym_id] = ACTIONS(7726), + [sym_instancetype] = ACTIONS(7726), + [sym_Class] = ACTIONS(7726), + [sym_SEL] = ACTIONS(7726), + [sym_IMP] = ACTIONS(7726), + [sym_BOOL] = ACTIONS(7726), + [sym_auto] = ACTIONS(7726), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3188] = { [sym_identifier] = ACTIONS(7728), [aux_sym_preproc_def_token1] = ACTIONS(7728), [aux_sym_preproc_if_token1] = ACTIONS(7728), @@ -515196,9 +509421,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7728), [sym_primitive_type] = ACTIONS(7728), [anon_sym_enum] = ACTIONS(7728), - [anon_sym_NS_ENUM] = ACTIONS(7728), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7728), - [anon_sym_NS_OPTIONS] = ACTIONS(7728), [anon_sym_struct] = ACTIONS(7728), [anon_sym_union] = ACTIONS(7728), [sym_comment] = ACTIONS(3), @@ -515225,6 +509447,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7728), [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7728), [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7728), + [anon_sym_NS_ENUM] = ACTIONS(7728), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7728), + [anon_sym_NS_OPTIONS] = ACTIONS(7728), [anon_sym_typeof] = ACTIONS(7728), [anon_sym___typeof] = ACTIONS(7728), [anon_sym___typeof__] = ACTIONS(7728), @@ -515242,20 +509467,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(5), }, - [3223] = { + [3189] = { [sym_identifier] = ACTIONS(7730), - [aux_sym_preproc_def_token1] = ACTIONS(7730), - [aux_sym_preproc_if_token1] = ACTIONS(7730), - [aux_sym_preproc_if_token2] = ACTIONS(7730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7730), - [aux_sym_preproc_else_token1] = ACTIONS(7730), - [aux_sym_preproc_elif_token1] = ACTIONS(7730), - [sym_preproc_directive] = ACTIONS(7730), + [anon_sym_COMMA] = ACTIONS(7732), + [anon_sym_SEMI] = ACTIONS(7732), + [anon_sym_typedef] = ACTIONS(7730), [anon_sym_extern] = ACTIONS(7730), [anon_sym___attribute] = ACTIONS(7730), [anon_sym___attribute__] = ACTIONS(7730), [anon_sym___declspec] = ACTIONS(7730), + [anon_sym_RBRACE] = ACTIONS(7732), [anon_sym_static] = ACTIONS(7730), [anon_sym_auto] = ACTIONS(7730), [anon_sym_register] = ACTIONS(7730), @@ -515298,12 +509519,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7730), [sym_primitive_type] = ACTIONS(7730), [anon_sym_enum] = ACTIONS(7730), - [anon_sym_NS_ENUM] = ACTIONS(7730), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7730), - [anon_sym_NS_OPTIONS] = ACTIONS(7730), [anon_sym_struct] = ACTIONS(7730), [anon_sym_union] = ACTIONS(7730), [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(7732), + [anon_sym_ATinterface] = ACTIONS(7732), [sym_method_attribute_specifier] = ACTIONS(7730), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7730), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7730), @@ -515327,6 +509547,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7730), [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7730), [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7730), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7730), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7730), + [anon_sym_NS_ENUM] = ACTIONS(7730), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7730), + [anon_sym_NS_OPTIONS] = ACTIONS(7730), [anon_sym_typeof] = ACTIONS(7730), [anon_sym___typeof] = ACTIONS(7730), [anon_sym___typeof__] = ACTIONS(7730), @@ -515340,113 +509565,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3224] = { - [sym_identifier] = ACTIONS(7732), - [anon_sym_COMMA] = ACTIONS(7734), - [anon_sym_SEMI] = ACTIONS(7734), - [anon_sym_typedef] = ACTIONS(7732), - [anon_sym_extern] = ACTIONS(7732), - [anon_sym___attribute] = ACTIONS(7732), - [anon_sym___attribute__] = ACTIONS(7732), - [anon_sym___declspec] = ACTIONS(7732), - [anon_sym_RBRACE] = ACTIONS(7734), - [anon_sym_static] = ACTIONS(7732), - [anon_sym_auto] = ACTIONS(7732), - [anon_sym_register] = ACTIONS(7732), - [anon_sym_inline] = ACTIONS(7732), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7732), - [anon_sym_const] = ACTIONS(7732), - [anon_sym_volatile] = ACTIONS(7732), - [anon_sym_restrict] = ACTIONS(7732), - [anon_sym__Atomic] = ACTIONS(7732), - [anon_sym_in] = ACTIONS(7732), - [anon_sym_out] = ACTIONS(7732), - [anon_sym_inout] = ACTIONS(7732), - [anon_sym_bycopy] = ACTIONS(7732), - [anon_sym_byref] = ACTIONS(7732), - [anon_sym_oneway] = ACTIONS(7732), - [anon_sym__Nullable] = ACTIONS(7732), - [anon_sym__Nonnull] = ACTIONS(7732), - [anon_sym__Nullable_result] = ACTIONS(7732), - [anon_sym__Null_unspecified] = ACTIONS(7732), - [anon_sym___autoreleasing] = ACTIONS(7732), - [anon_sym___nullable] = ACTIONS(7732), - [anon_sym___nonnull] = ACTIONS(7732), - [anon_sym___strong] = ACTIONS(7732), - [anon_sym___weak] = ACTIONS(7732), - [anon_sym___bridge] = ACTIONS(7732), - [anon_sym___bridge_transfer] = ACTIONS(7732), - [anon_sym___bridge_retained] = ACTIONS(7732), - [anon_sym___unsafe_unretained] = ACTIONS(7732), - [anon_sym___block] = ACTIONS(7732), - [anon_sym___kindof] = ACTIONS(7732), - [anon_sym___unused] = ACTIONS(7732), - [anon_sym__Complex] = ACTIONS(7732), - [anon_sym___complex] = ACTIONS(7732), - [anon_sym_IBOutlet] = ACTIONS(7732), - [anon_sym_IBInspectable] = ACTIONS(7732), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7732), - [anon_sym_signed] = ACTIONS(7732), - [anon_sym_unsigned] = ACTIONS(7732), - [anon_sym_long] = ACTIONS(7732), - [anon_sym_short] = ACTIONS(7732), - [sym_primitive_type] = ACTIONS(7732), - [anon_sym_enum] = ACTIONS(7732), - [anon_sym_NS_ENUM] = ACTIONS(7732), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7732), - [anon_sym_NS_OPTIONS] = ACTIONS(7732), - [anon_sym_struct] = ACTIONS(7732), - [anon_sym_union] = ACTIONS(7732), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(7734), - [anon_sym_ATinterface] = ACTIONS(7734), - [sym_method_attribute_specifier] = ACTIONS(7732), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7732), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7732), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7732), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7732), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7732), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7732), - [anon_sym_NS_AVAILABLE] = ACTIONS(7732), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7732), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7732), - [anon_sym_API_AVAILABLE] = ACTIONS(7732), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7732), - [anon_sym_API_DEPRECATED] = ACTIONS(7732), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7732), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7732), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7732), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7732), - [anon_sym___deprecated_msg] = ACTIONS(7732), - [anon_sym___deprecated_enum_msg] = ACTIONS(7732), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7732), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7732), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7732), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7732), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7732), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7732), - [anon_sym_typeof] = ACTIONS(7732), - [anon_sym___typeof] = ACTIONS(7732), - [anon_sym___typeof__] = ACTIONS(7732), - [sym_id] = ACTIONS(7732), - [sym_instancetype] = ACTIONS(7732), - [sym_Class] = ACTIONS(7732), - [sym_SEL] = ACTIONS(7732), - [sym_IMP] = ACTIONS(7732), - [sym_BOOL] = ACTIONS(7732), - [sym_auto] = ACTIONS(7732), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), [sym__ifdef_else_ignore] = ACTIONS(3), [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3225] = { + [3190] = { + [sym_identifier] = ACTIONS(7734), + [aux_sym_preproc_def_token1] = ACTIONS(7734), + [aux_sym_preproc_if_token1] = ACTIONS(7734), + [aux_sym_preproc_if_token2] = ACTIONS(7734), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7734), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7734), + [aux_sym_preproc_else_token1] = ACTIONS(7734), + [aux_sym_preproc_elif_token1] = ACTIONS(7734), + [sym_preproc_directive] = ACTIONS(7734), + [anon_sym_extern] = ACTIONS(7734), + [anon_sym___attribute] = ACTIONS(7734), + [anon_sym___attribute__] = ACTIONS(7734), + [anon_sym___declspec] = ACTIONS(7734), + [anon_sym_static] = ACTIONS(7734), + [anon_sym_auto] = ACTIONS(7734), + [anon_sym_register] = ACTIONS(7734), + [anon_sym_inline] = ACTIONS(7734), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7734), + [anon_sym_const] = ACTIONS(7734), + [anon_sym_volatile] = ACTIONS(7734), + [anon_sym_restrict] = ACTIONS(7734), + [anon_sym__Atomic] = ACTIONS(7734), + [anon_sym_in] = ACTIONS(7734), + [anon_sym_out] = ACTIONS(7734), + [anon_sym_inout] = ACTIONS(7734), + [anon_sym_bycopy] = ACTIONS(7734), + [anon_sym_byref] = ACTIONS(7734), + [anon_sym_oneway] = ACTIONS(7734), + [anon_sym__Nullable] = ACTIONS(7734), + [anon_sym__Nonnull] = ACTIONS(7734), + [anon_sym__Nullable_result] = ACTIONS(7734), + [anon_sym__Null_unspecified] = ACTIONS(7734), + [anon_sym___autoreleasing] = ACTIONS(7734), + [anon_sym___nullable] = ACTIONS(7734), + [anon_sym___nonnull] = ACTIONS(7734), + [anon_sym___strong] = ACTIONS(7734), + [anon_sym___weak] = ACTIONS(7734), + [anon_sym___bridge] = ACTIONS(7734), + [anon_sym___bridge_transfer] = ACTIONS(7734), + [anon_sym___bridge_retained] = ACTIONS(7734), + [anon_sym___unsafe_unretained] = ACTIONS(7734), + [anon_sym___block] = ACTIONS(7734), + [anon_sym___kindof] = ACTIONS(7734), + [anon_sym___unused] = ACTIONS(7734), + [anon_sym__Complex] = ACTIONS(7734), + [anon_sym___complex] = ACTIONS(7734), + [anon_sym_IBOutlet] = ACTIONS(7734), + [anon_sym_IBInspectable] = ACTIONS(7734), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7734), + [anon_sym_signed] = ACTIONS(7734), + [anon_sym_unsigned] = ACTIONS(7734), + [anon_sym_long] = ACTIONS(7734), + [anon_sym_short] = ACTIONS(7734), + [sym_primitive_type] = ACTIONS(7734), + [anon_sym_enum] = ACTIONS(7734), + [anon_sym_struct] = ACTIONS(7734), + [anon_sym_union] = ACTIONS(7734), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7734), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7734), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7734), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7734), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7734), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7734), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7734), + [anon_sym_NS_AVAILABLE] = ACTIONS(7734), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7734), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7734), + [anon_sym_API_AVAILABLE] = ACTIONS(7734), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7734), + [anon_sym_API_DEPRECATED] = ACTIONS(7734), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7734), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7734), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7734), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7734), + [anon_sym___deprecated_msg] = ACTIONS(7734), + [anon_sym___deprecated_enum_msg] = ACTIONS(7734), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7734), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7734), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7734), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7734), + [anon_sym_NS_ENUM] = ACTIONS(7734), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7734), + [anon_sym_NS_OPTIONS] = ACTIONS(7734), + [anon_sym_typeof] = ACTIONS(7734), + [anon_sym___typeof] = ACTIONS(7734), + [anon_sym___typeof__] = ACTIONS(7734), + [sym_id] = ACTIONS(7734), + [sym_instancetype] = ACTIONS(7734), + [sym_Class] = ACTIONS(7734), + [sym_SEL] = ACTIONS(7734), + [sym_IMP] = ACTIONS(7734), + [sym_BOOL] = ACTIONS(7734), + [sym_auto] = ACTIONS(7734), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3191] = { [sym_identifier] = ACTIONS(7736), [aux_sym_preproc_def_token1] = ACTIONS(7736), [aux_sym_preproc_if_token1] = ACTIONS(7736), @@ -515502,9 +509727,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7736), [sym_primitive_type] = ACTIONS(7736), [anon_sym_enum] = ACTIONS(7736), - [anon_sym_NS_ENUM] = ACTIONS(7736), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7736), - [anon_sym_NS_OPTIONS] = ACTIONS(7736), [anon_sym_struct] = ACTIONS(7736), [anon_sym_union] = ACTIONS(7736), [sym_comment] = ACTIONS(3), @@ -515531,6 +509753,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7736), [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7736), [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7736), + [anon_sym_NS_ENUM] = ACTIONS(7736), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7736), + [anon_sym_NS_OPTIONS] = ACTIONS(7736), [anon_sym_typeof] = ACTIONS(7736), [anon_sym___typeof] = ACTIONS(7736), [anon_sym___typeof__] = ACTIONS(7736), @@ -515548,91 +509773,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(5), }, - [3226] = { + [3192] = { + [sym_attribute_specifier] = STATE(3192), + [sym_ms_declspec_modifier] = STATE(3192), + [sym_storage_class_specifier] = STATE(3192), + [sym_type_qualifier] = STATE(3192), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [aux_sym__declaration_specifiers_repeat1] = STATE(3192), [sym_identifier] = ACTIONS(7738), - [aux_sym_preproc_def_token1] = ACTIONS(7738), - [aux_sym_preproc_if_token1] = ACTIONS(7738), - [aux_sym_preproc_if_token2] = ACTIONS(7738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7738), - [aux_sym_preproc_else_token1] = ACTIONS(7738), - [aux_sym_preproc_elif_token1] = ACTIONS(7738), - [sym_preproc_directive] = ACTIONS(7738), - [anon_sym_extern] = ACTIONS(7738), - [anon_sym___attribute] = ACTIONS(7738), - [anon_sym___attribute__] = ACTIONS(7738), - [anon_sym___declspec] = ACTIONS(7738), - [anon_sym_static] = ACTIONS(7738), - [anon_sym_auto] = ACTIONS(7738), - [anon_sym_register] = ACTIONS(7738), - [anon_sym_inline] = ACTIONS(7738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7738), - [anon_sym_const] = ACTIONS(7738), - [anon_sym_volatile] = ACTIONS(7738), - [anon_sym_restrict] = ACTIONS(7738), - [anon_sym__Atomic] = ACTIONS(7738), - [anon_sym_in] = ACTIONS(7738), - [anon_sym_out] = ACTIONS(7738), - [anon_sym_inout] = ACTIONS(7738), - [anon_sym_bycopy] = ACTIONS(7738), - [anon_sym_byref] = ACTIONS(7738), - [anon_sym_oneway] = ACTIONS(7738), - [anon_sym__Nullable] = ACTIONS(7738), - [anon_sym__Nonnull] = ACTIONS(7738), - [anon_sym__Nullable_result] = ACTIONS(7738), - [anon_sym__Null_unspecified] = ACTIONS(7738), - [anon_sym___autoreleasing] = ACTIONS(7738), - [anon_sym___nullable] = ACTIONS(7738), - [anon_sym___nonnull] = ACTIONS(7738), - [anon_sym___strong] = ACTIONS(7738), - [anon_sym___weak] = ACTIONS(7738), - [anon_sym___bridge] = ACTIONS(7738), - [anon_sym___bridge_transfer] = ACTIONS(7738), - [anon_sym___bridge_retained] = ACTIONS(7738), - [anon_sym___unsafe_unretained] = ACTIONS(7738), - [anon_sym___block] = ACTIONS(7738), - [anon_sym___kindof] = ACTIONS(7738), - [anon_sym___unused] = ACTIONS(7738), - [anon_sym__Complex] = ACTIONS(7738), - [anon_sym___complex] = ACTIONS(7738), - [anon_sym_IBOutlet] = ACTIONS(7738), - [anon_sym_IBInspectable] = ACTIONS(7738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7738), + [anon_sym_extern] = ACTIONS(7740), + [anon_sym___attribute] = ACTIONS(7743), + [anon_sym___attribute__] = ACTIONS(7743), + [anon_sym___declspec] = ACTIONS(7746), + [anon_sym_static] = ACTIONS(7740), + [anon_sym_auto] = ACTIONS(7740), + [anon_sym_register] = ACTIONS(7740), + [anon_sym_inline] = ACTIONS(7740), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7740), + [anon_sym_const] = ACTIONS(7749), + [anon_sym_volatile] = ACTIONS(7749), + [anon_sym_restrict] = ACTIONS(7749), + [anon_sym__Atomic] = ACTIONS(7749), + [anon_sym_in] = ACTIONS(7749), + [anon_sym_out] = ACTIONS(7749), + [anon_sym_inout] = ACTIONS(7749), + [anon_sym_bycopy] = ACTIONS(7749), + [anon_sym_byref] = ACTIONS(7749), + [anon_sym_oneway] = ACTIONS(7749), + [anon_sym__Nullable] = ACTIONS(7749), + [anon_sym__Nonnull] = ACTIONS(7749), + [anon_sym__Nullable_result] = ACTIONS(7749), + [anon_sym__Null_unspecified] = ACTIONS(7749), + [anon_sym___autoreleasing] = ACTIONS(7749), + [anon_sym___nullable] = ACTIONS(7749), + [anon_sym___nonnull] = ACTIONS(7749), + [anon_sym___strong] = ACTIONS(7749), + [anon_sym___weak] = ACTIONS(7749), + [anon_sym___bridge] = ACTIONS(7749), + [anon_sym___bridge_transfer] = ACTIONS(7749), + [anon_sym___bridge_retained] = ACTIONS(7749), + [anon_sym___unsafe_unretained] = ACTIONS(7749), + [anon_sym___block] = ACTIONS(7749), + [anon_sym___kindof] = ACTIONS(7749), + [anon_sym___unused] = ACTIONS(7749), + [anon_sym__Complex] = ACTIONS(7749), + [anon_sym___complex] = ACTIONS(7749), + [anon_sym_IBOutlet] = ACTIONS(7749), + [anon_sym_IBInspectable] = ACTIONS(7749), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7749), [anon_sym_signed] = ACTIONS(7738), [anon_sym_unsigned] = ACTIONS(7738), [anon_sym_long] = ACTIONS(7738), [anon_sym_short] = ACTIONS(7738), [sym_primitive_type] = ACTIONS(7738), [anon_sym_enum] = ACTIONS(7738), - [anon_sym_NS_ENUM] = ACTIONS(7738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7738), - [anon_sym_NS_OPTIONS] = ACTIONS(7738), [anon_sym_struct] = ACTIONS(7738), [anon_sym_union] = ACTIONS(7738), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7738), - [anon_sym_NS_AVAILABLE] = ACTIONS(7738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7738), - [anon_sym_API_AVAILABLE] = ACTIONS(7738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7738), - [anon_sym_API_DEPRECATED] = ACTIONS(7738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7738), - [anon_sym___deprecated_msg] = ACTIONS(7738), - [anon_sym___deprecated_enum_msg] = ACTIONS(7738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7738), + [sym_method_attribute_specifier] = ACTIONS(7752), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7755), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7755), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7758), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7758), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7758), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7758), + [anon_sym_NS_AVAILABLE] = ACTIONS(7761), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7761), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7761), + [anon_sym_API_AVAILABLE] = ACTIONS(7761), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7761), + [anon_sym_API_DEPRECATED] = ACTIONS(7761), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7761), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7761), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7761), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7761), + [anon_sym___deprecated_msg] = ACTIONS(7761), + [anon_sym___deprecated_enum_msg] = ACTIONS(7761), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7761), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7761), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7761), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7761), + [anon_sym_NS_ENUM] = ACTIONS(7738), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7738), + [anon_sym_NS_OPTIONS] = ACTIONS(7738), [anon_sym_typeof] = ACTIONS(7738), [anon_sym___typeof] = ACTIONS(7738), [anon_sym___typeof__] = ACTIONS(7738), @@ -515646,1427 +509870,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3227] = { - [sym_identifier] = ACTIONS(7740), - [aux_sym_preproc_def_token1] = ACTIONS(7740), - [aux_sym_preproc_if_token1] = ACTIONS(7740), - [aux_sym_preproc_if_token2] = ACTIONS(7740), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7740), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7740), - [aux_sym_preproc_else_token1] = ACTIONS(7740), - [aux_sym_preproc_elif_token1] = ACTIONS(7740), - [sym_preproc_directive] = ACTIONS(7740), - [anon_sym_extern] = ACTIONS(7740), - [anon_sym___attribute] = ACTIONS(7740), - [anon_sym___attribute__] = ACTIONS(7740), - [anon_sym___declspec] = ACTIONS(7740), - [anon_sym_static] = ACTIONS(7740), - [anon_sym_auto] = ACTIONS(7740), - [anon_sym_register] = ACTIONS(7740), - [anon_sym_inline] = ACTIONS(7740), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7740), - [anon_sym_const] = ACTIONS(7740), - [anon_sym_volatile] = ACTIONS(7740), - [anon_sym_restrict] = ACTIONS(7740), - [anon_sym__Atomic] = ACTIONS(7740), - [anon_sym_in] = ACTIONS(7740), - [anon_sym_out] = ACTIONS(7740), - [anon_sym_inout] = ACTIONS(7740), - [anon_sym_bycopy] = ACTIONS(7740), - [anon_sym_byref] = ACTIONS(7740), - [anon_sym_oneway] = ACTIONS(7740), - [anon_sym__Nullable] = ACTIONS(7740), - [anon_sym__Nonnull] = ACTIONS(7740), - [anon_sym__Nullable_result] = ACTIONS(7740), - [anon_sym__Null_unspecified] = ACTIONS(7740), - [anon_sym___autoreleasing] = ACTIONS(7740), - [anon_sym___nullable] = ACTIONS(7740), - [anon_sym___nonnull] = ACTIONS(7740), - [anon_sym___strong] = ACTIONS(7740), - [anon_sym___weak] = ACTIONS(7740), - [anon_sym___bridge] = ACTIONS(7740), - [anon_sym___bridge_transfer] = ACTIONS(7740), - [anon_sym___bridge_retained] = ACTIONS(7740), - [anon_sym___unsafe_unretained] = ACTIONS(7740), - [anon_sym___block] = ACTIONS(7740), - [anon_sym___kindof] = ACTIONS(7740), - [anon_sym___unused] = ACTIONS(7740), - [anon_sym__Complex] = ACTIONS(7740), - [anon_sym___complex] = ACTIONS(7740), - [anon_sym_IBOutlet] = ACTIONS(7740), - [anon_sym_IBInspectable] = ACTIONS(7740), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7740), - [anon_sym_signed] = ACTIONS(7740), - [anon_sym_unsigned] = ACTIONS(7740), - [anon_sym_long] = ACTIONS(7740), - [anon_sym_short] = ACTIONS(7740), - [sym_primitive_type] = ACTIONS(7740), - [anon_sym_enum] = ACTIONS(7740), - [anon_sym_NS_ENUM] = ACTIONS(7740), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7740), - [anon_sym_NS_OPTIONS] = ACTIONS(7740), - [anon_sym_struct] = ACTIONS(7740), - [anon_sym_union] = ACTIONS(7740), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7740), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7740), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7740), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7740), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7740), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7740), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7740), - [anon_sym_NS_AVAILABLE] = ACTIONS(7740), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7740), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7740), - [anon_sym_API_AVAILABLE] = ACTIONS(7740), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7740), - [anon_sym_API_DEPRECATED] = ACTIONS(7740), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7740), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7740), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7740), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7740), - [anon_sym___deprecated_msg] = ACTIONS(7740), - [anon_sym___deprecated_enum_msg] = ACTIONS(7740), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7740), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7740), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7740), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7740), - [anon_sym_typeof] = ACTIONS(7740), - [anon_sym___typeof] = ACTIONS(7740), - [anon_sym___typeof__] = ACTIONS(7740), - [sym_id] = ACTIONS(7740), - [sym_instancetype] = ACTIONS(7740), - [sym_Class] = ACTIONS(7740), - [sym_SEL] = ACTIONS(7740), - [sym_IMP] = ACTIONS(7740), - [sym_BOOL] = ACTIONS(7740), - [sym_auto] = ACTIONS(7740), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3228] = { - [sym_identifier] = ACTIONS(7742), - [aux_sym_preproc_def_token1] = ACTIONS(7742), - [aux_sym_preproc_if_token1] = ACTIONS(7742), - [aux_sym_preproc_if_token2] = ACTIONS(7742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7742), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7742), - [aux_sym_preproc_else_token1] = ACTIONS(7742), - [aux_sym_preproc_elif_token1] = ACTIONS(7742), - [sym_preproc_directive] = ACTIONS(7742), - [anon_sym_extern] = ACTIONS(7742), - [anon_sym___attribute] = ACTIONS(7742), - [anon_sym___attribute__] = ACTIONS(7742), - [anon_sym___declspec] = ACTIONS(7742), - [anon_sym_static] = ACTIONS(7742), - [anon_sym_auto] = ACTIONS(7742), - [anon_sym_register] = ACTIONS(7742), - [anon_sym_inline] = ACTIONS(7742), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7742), - [anon_sym_const] = ACTIONS(7742), - [anon_sym_volatile] = ACTIONS(7742), - [anon_sym_restrict] = ACTIONS(7742), - [anon_sym__Atomic] = ACTIONS(7742), - [anon_sym_in] = ACTIONS(7742), - [anon_sym_out] = ACTIONS(7742), - [anon_sym_inout] = ACTIONS(7742), - [anon_sym_bycopy] = ACTIONS(7742), - [anon_sym_byref] = ACTIONS(7742), - [anon_sym_oneway] = ACTIONS(7742), - [anon_sym__Nullable] = ACTIONS(7742), - [anon_sym__Nonnull] = ACTIONS(7742), - [anon_sym__Nullable_result] = ACTIONS(7742), - [anon_sym__Null_unspecified] = ACTIONS(7742), - [anon_sym___autoreleasing] = ACTIONS(7742), - [anon_sym___nullable] = ACTIONS(7742), - [anon_sym___nonnull] = ACTIONS(7742), - [anon_sym___strong] = ACTIONS(7742), - [anon_sym___weak] = ACTIONS(7742), - [anon_sym___bridge] = ACTIONS(7742), - [anon_sym___bridge_transfer] = ACTIONS(7742), - [anon_sym___bridge_retained] = ACTIONS(7742), - [anon_sym___unsafe_unretained] = ACTIONS(7742), - [anon_sym___block] = ACTIONS(7742), - [anon_sym___kindof] = ACTIONS(7742), - [anon_sym___unused] = ACTIONS(7742), - [anon_sym__Complex] = ACTIONS(7742), - [anon_sym___complex] = ACTIONS(7742), - [anon_sym_IBOutlet] = ACTIONS(7742), - [anon_sym_IBInspectable] = ACTIONS(7742), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7742), - [anon_sym_signed] = ACTIONS(7742), - [anon_sym_unsigned] = ACTIONS(7742), - [anon_sym_long] = ACTIONS(7742), - [anon_sym_short] = ACTIONS(7742), - [sym_primitive_type] = ACTIONS(7742), - [anon_sym_enum] = ACTIONS(7742), - [anon_sym_NS_ENUM] = ACTIONS(7742), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7742), - [anon_sym_NS_OPTIONS] = ACTIONS(7742), - [anon_sym_struct] = ACTIONS(7742), - [anon_sym_union] = ACTIONS(7742), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7742), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7742), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7742), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7742), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7742), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7742), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7742), - [anon_sym_NS_AVAILABLE] = ACTIONS(7742), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7742), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7742), - [anon_sym_API_AVAILABLE] = ACTIONS(7742), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7742), - [anon_sym_API_DEPRECATED] = ACTIONS(7742), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7742), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7742), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7742), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7742), - [anon_sym___deprecated_msg] = ACTIONS(7742), - [anon_sym___deprecated_enum_msg] = ACTIONS(7742), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7742), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7742), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7742), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7742), - [anon_sym_typeof] = ACTIONS(7742), - [anon_sym___typeof] = ACTIONS(7742), - [anon_sym___typeof__] = ACTIONS(7742), - [sym_id] = ACTIONS(7742), - [sym_instancetype] = ACTIONS(7742), - [sym_Class] = ACTIONS(7742), - [sym_SEL] = ACTIONS(7742), - [sym_IMP] = ACTIONS(7742), - [sym_BOOL] = ACTIONS(7742), - [sym_auto] = ACTIONS(7742), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3229] = { - [sym_attribute_specifier] = STATE(3845), - [sym_type_qualifier] = STATE(3842), - [sym__type_specifier] = STATE(3564), - [sym_sized_type_specifier] = STATE(3564), - [sym_enum_specifier] = STATE(3564), - [sym_struct_specifier] = STATE(3564), - [sym_union_specifier] = STATE(3564), - [sym_macro_type_specifier] = STATE(3564), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3922), - [sym_availability_attribute_specifier] = STATE(3922), - [sym_typeof_specifier] = STATE(3564), - [sym_atomic_specifier] = STATE(3564), - [sym_generic_type_specifier] = STATE(3564), - [aux_sym_type_definition_repeat1] = STATE(3842), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym___attribute] = ACTIONS(7686), - [anon_sym___attribute__] = ACTIONS(7686), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7744), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7694), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7698), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7698), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_NS_AVAILABLE] = ACTIONS(7700), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7700), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_API_AVAILABLE] = ACTIONS(7700), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_API_DEPRECATED] = ACTIONS(7700), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7700), - [anon_sym___deprecated_msg] = ACTIONS(7700), - [anon_sym___deprecated_enum_msg] = ACTIONS(7700), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7744), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7744), - [sym_IMP] = ACTIONS(7744), - [sym_BOOL] = ACTIONS(7744), - [sym_auto] = ACTIONS(7744), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), [sym__ifdef_else_ignore] = ACTIONS(3), [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3230] = { - [sym_identifier] = ACTIONS(7746), - [aux_sym_preproc_def_token1] = ACTIONS(7746), - [aux_sym_preproc_if_token1] = ACTIONS(7746), - [aux_sym_preproc_if_token2] = ACTIONS(7746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7746), - [aux_sym_preproc_else_token1] = ACTIONS(7746), - [aux_sym_preproc_elif_token1] = ACTIONS(7746), - [sym_preproc_directive] = ACTIONS(7746), - [anon_sym_extern] = ACTIONS(7746), - [anon_sym___attribute] = ACTIONS(7746), - [anon_sym___attribute__] = ACTIONS(7746), - [anon_sym___declspec] = ACTIONS(7746), - [anon_sym_static] = ACTIONS(7746), - [anon_sym_auto] = ACTIONS(7746), - [anon_sym_register] = ACTIONS(7746), - [anon_sym_inline] = ACTIONS(7746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7746), - [anon_sym_const] = ACTIONS(7746), - [anon_sym_volatile] = ACTIONS(7746), - [anon_sym_restrict] = ACTIONS(7746), - [anon_sym__Atomic] = ACTIONS(7746), - [anon_sym_in] = ACTIONS(7746), - [anon_sym_out] = ACTIONS(7746), - [anon_sym_inout] = ACTIONS(7746), - [anon_sym_bycopy] = ACTIONS(7746), - [anon_sym_byref] = ACTIONS(7746), - [anon_sym_oneway] = ACTIONS(7746), - [anon_sym__Nullable] = ACTIONS(7746), - [anon_sym__Nonnull] = ACTIONS(7746), - [anon_sym__Nullable_result] = ACTIONS(7746), - [anon_sym__Null_unspecified] = ACTIONS(7746), - [anon_sym___autoreleasing] = ACTIONS(7746), - [anon_sym___nullable] = ACTIONS(7746), - [anon_sym___nonnull] = ACTIONS(7746), - [anon_sym___strong] = ACTIONS(7746), - [anon_sym___weak] = ACTIONS(7746), - [anon_sym___bridge] = ACTIONS(7746), - [anon_sym___bridge_transfer] = ACTIONS(7746), - [anon_sym___bridge_retained] = ACTIONS(7746), - [anon_sym___unsafe_unretained] = ACTIONS(7746), - [anon_sym___block] = ACTIONS(7746), - [anon_sym___kindof] = ACTIONS(7746), - [anon_sym___unused] = ACTIONS(7746), - [anon_sym__Complex] = ACTIONS(7746), - [anon_sym___complex] = ACTIONS(7746), - [anon_sym_IBOutlet] = ACTIONS(7746), - [anon_sym_IBInspectable] = ACTIONS(7746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7746), - [anon_sym_signed] = ACTIONS(7746), - [anon_sym_unsigned] = ACTIONS(7746), - [anon_sym_long] = ACTIONS(7746), - [anon_sym_short] = ACTIONS(7746), - [sym_primitive_type] = ACTIONS(7746), - [anon_sym_enum] = ACTIONS(7746), - [anon_sym_NS_ENUM] = ACTIONS(7746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7746), - [anon_sym_NS_OPTIONS] = ACTIONS(7746), - [anon_sym_struct] = ACTIONS(7746), - [anon_sym_union] = ACTIONS(7746), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7746), - [anon_sym_NS_AVAILABLE] = ACTIONS(7746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7746), - [anon_sym_API_AVAILABLE] = ACTIONS(7746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7746), - [anon_sym_API_DEPRECATED] = ACTIONS(7746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7746), - [anon_sym___deprecated_msg] = ACTIONS(7746), - [anon_sym___deprecated_enum_msg] = ACTIONS(7746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7746), - [anon_sym_typeof] = ACTIONS(7746), - [anon_sym___typeof] = ACTIONS(7746), - [anon_sym___typeof__] = ACTIONS(7746), - [sym_id] = ACTIONS(7746), - [sym_instancetype] = ACTIONS(7746), - [sym_Class] = ACTIONS(7746), - [sym_SEL] = ACTIONS(7746), - [sym_IMP] = ACTIONS(7746), - [sym_BOOL] = ACTIONS(7746), - [sym_auto] = ACTIONS(7746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3231] = { - [sym_identifier] = ACTIONS(7748), - [anon_sym_COMMA] = ACTIONS(7750), - [anon_sym_SEMI] = ACTIONS(7750), - [anon_sym_typedef] = ACTIONS(7748), - [anon_sym_extern] = ACTIONS(7748), - [anon_sym___attribute] = ACTIONS(7748), - [anon_sym___attribute__] = ACTIONS(7748), - [anon_sym___declspec] = ACTIONS(7748), - [anon_sym_RBRACE] = ACTIONS(7750), - [anon_sym_static] = ACTIONS(7748), - [anon_sym_auto] = ACTIONS(7748), - [anon_sym_register] = ACTIONS(7748), - [anon_sym_inline] = ACTIONS(7748), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7748), - [anon_sym_const] = ACTIONS(7748), - [anon_sym_volatile] = ACTIONS(7748), - [anon_sym_restrict] = ACTIONS(7748), - [anon_sym__Atomic] = ACTIONS(7748), - [anon_sym_in] = ACTIONS(7748), - [anon_sym_out] = ACTIONS(7748), - [anon_sym_inout] = ACTIONS(7748), - [anon_sym_bycopy] = ACTIONS(7748), - [anon_sym_byref] = ACTIONS(7748), - [anon_sym_oneway] = ACTIONS(7748), - [anon_sym__Nullable] = ACTIONS(7748), - [anon_sym__Nonnull] = ACTIONS(7748), - [anon_sym__Nullable_result] = ACTIONS(7748), - [anon_sym__Null_unspecified] = ACTIONS(7748), - [anon_sym___autoreleasing] = ACTIONS(7748), - [anon_sym___nullable] = ACTIONS(7748), - [anon_sym___nonnull] = ACTIONS(7748), - [anon_sym___strong] = ACTIONS(7748), - [anon_sym___weak] = ACTIONS(7748), - [anon_sym___bridge] = ACTIONS(7748), - [anon_sym___bridge_transfer] = ACTIONS(7748), - [anon_sym___bridge_retained] = ACTIONS(7748), - [anon_sym___unsafe_unretained] = ACTIONS(7748), - [anon_sym___block] = ACTIONS(7748), - [anon_sym___kindof] = ACTIONS(7748), - [anon_sym___unused] = ACTIONS(7748), - [anon_sym__Complex] = ACTIONS(7748), - [anon_sym___complex] = ACTIONS(7748), - [anon_sym_IBOutlet] = ACTIONS(7748), - [anon_sym_IBInspectable] = ACTIONS(7748), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7748), - [anon_sym_signed] = ACTIONS(7748), - [anon_sym_unsigned] = ACTIONS(7748), - [anon_sym_long] = ACTIONS(7748), - [anon_sym_short] = ACTIONS(7748), - [sym_primitive_type] = ACTIONS(7748), - [anon_sym_enum] = ACTIONS(7748), - [anon_sym_NS_ENUM] = ACTIONS(7748), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7748), - [anon_sym_NS_OPTIONS] = ACTIONS(7748), - [anon_sym_struct] = ACTIONS(7748), - [anon_sym_union] = ACTIONS(7748), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(7750), - [anon_sym_ATinterface] = ACTIONS(7750), - [sym_method_attribute_specifier] = ACTIONS(7748), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7748), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7748), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7748), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7748), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7748), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7748), - [anon_sym_NS_AVAILABLE] = ACTIONS(7748), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7748), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7748), - [anon_sym_API_AVAILABLE] = ACTIONS(7748), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7748), - [anon_sym_API_DEPRECATED] = ACTIONS(7748), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7748), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7748), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7748), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7748), - [anon_sym___deprecated_msg] = ACTIONS(7748), - [anon_sym___deprecated_enum_msg] = ACTIONS(7748), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7748), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7748), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7748), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7748), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7748), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7748), - [anon_sym_typeof] = ACTIONS(7748), - [anon_sym___typeof] = ACTIONS(7748), - [anon_sym___typeof__] = ACTIONS(7748), - [sym_id] = ACTIONS(7748), - [sym_instancetype] = ACTIONS(7748), - [sym_Class] = ACTIONS(7748), - [sym_SEL] = ACTIONS(7748), - [sym_IMP] = ACTIONS(7748), - [sym_BOOL] = ACTIONS(7748), - [sym_auto] = ACTIONS(7748), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3232] = { - [sym_identifier] = ACTIONS(7752), - [aux_sym_preproc_def_token1] = ACTIONS(7752), - [aux_sym_preproc_if_token1] = ACTIONS(7752), - [aux_sym_preproc_if_token2] = ACTIONS(7752), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7752), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7752), - [aux_sym_preproc_else_token1] = ACTIONS(7752), - [aux_sym_preproc_elif_token1] = ACTIONS(7752), - [sym_preproc_directive] = ACTIONS(7752), - [anon_sym_extern] = ACTIONS(7752), - [anon_sym___attribute] = ACTIONS(7752), - [anon_sym___attribute__] = ACTIONS(7752), - [anon_sym___declspec] = ACTIONS(7752), - [anon_sym_static] = ACTIONS(7752), - [anon_sym_auto] = ACTIONS(7752), - [anon_sym_register] = ACTIONS(7752), - [anon_sym_inline] = ACTIONS(7752), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7752), - [anon_sym_const] = ACTIONS(7752), - [anon_sym_volatile] = ACTIONS(7752), - [anon_sym_restrict] = ACTIONS(7752), - [anon_sym__Atomic] = ACTIONS(7752), - [anon_sym_in] = ACTIONS(7752), - [anon_sym_out] = ACTIONS(7752), - [anon_sym_inout] = ACTIONS(7752), - [anon_sym_bycopy] = ACTIONS(7752), - [anon_sym_byref] = ACTIONS(7752), - [anon_sym_oneway] = ACTIONS(7752), - [anon_sym__Nullable] = ACTIONS(7752), - [anon_sym__Nonnull] = ACTIONS(7752), - [anon_sym__Nullable_result] = ACTIONS(7752), - [anon_sym__Null_unspecified] = ACTIONS(7752), - [anon_sym___autoreleasing] = ACTIONS(7752), - [anon_sym___nullable] = ACTIONS(7752), - [anon_sym___nonnull] = ACTIONS(7752), - [anon_sym___strong] = ACTIONS(7752), - [anon_sym___weak] = ACTIONS(7752), - [anon_sym___bridge] = ACTIONS(7752), - [anon_sym___bridge_transfer] = ACTIONS(7752), - [anon_sym___bridge_retained] = ACTIONS(7752), - [anon_sym___unsafe_unretained] = ACTIONS(7752), - [anon_sym___block] = ACTIONS(7752), - [anon_sym___kindof] = ACTIONS(7752), - [anon_sym___unused] = ACTIONS(7752), - [anon_sym__Complex] = ACTIONS(7752), - [anon_sym___complex] = ACTIONS(7752), - [anon_sym_IBOutlet] = ACTIONS(7752), - [anon_sym_IBInspectable] = ACTIONS(7752), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7752), - [anon_sym_signed] = ACTIONS(7752), - [anon_sym_unsigned] = ACTIONS(7752), - [anon_sym_long] = ACTIONS(7752), - [anon_sym_short] = ACTIONS(7752), - [sym_primitive_type] = ACTIONS(7752), - [anon_sym_enum] = ACTIONS(7752), - [anon_sym_NS_ENUM] = ACTIONS(7752), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7752), - [anon_sym_NS_OPTIONS] = ACTIONS(7752), - [anon_sym_struct] = ACTIONS(7752), - [anon_sym_union] = ACTIONS(7752), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7752), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7752), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7752), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7752), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7752), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7752), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7752), - [anon_sym_NS_AVAILABLE] = ACTIONS(7752), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7752), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7752), - [anon_sym_API_AVAILABLE] = ACTIONS(7752), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7752), - [anon_sym_API_DEPRECATED] = ACTIONS(7752), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7752), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7752), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7752), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7752), - [anon_sym___deprecated_msg] = ACTIONS(7752), - [anon_sym___deprecated_enum_msg] = ACTIONS(7752), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7752), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7752), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7752), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7752), - [anon_sym_typeof] = ACTIONS(7752), - [anon_sym___typeof] = ACTIONS(7752), - [anon_sym___typeof__] = ACTIONS(7752), - [sym_id] = ACTIONS(7752), - [sym_instancetype] = ACTIONS(7752), - [sym_Class] = ACTIONS(7752), - [sym_SEL] = ACTIONS(7752), - [sym_IMP] = ACTIONS(7752), - [sym_BOOL] = ACTIONS(7752), - [sym_auto] = ACTIONS(7752), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3233] = { - [sym_attribute_specifier] = STATE(3834), - [sym_type_qualifier] = STATE(3838), - [sym__type_specifier] = STATE(3452), - [sym_sized_type_specifier] = STATE(3452), - [sym_enum_specifier] = STATE(3452), - [sym_struct_specifier] = STATE(3452), - [sym_union_specifier] = STATE(3452), - [sym_macro_type_specifier] = STATE(3452), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3922), - [sym_availability_attribute_specifier] = STATE(3922), - [sym_typeof_specifier] = STATE(3452), - [sym_atomic_specifier] = STATE(3452), - [sym_generic_type_specifier] = STATE(3452), - [aux_sym_type_definition_repeat1] = STATE(3838), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym___attribute] = ACTIONS(7686), - [anon_sym___attribute__] = ACTIONS(7686), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7754), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7694), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7698), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7698), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_NS_AVAILABLE] = ACTIONS(7700), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7700), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_API_AVAILABLE] = ACTIONS(7700), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_API_DEPRECATED] = ACTIONS(7700), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7700), - [anon_sym___deprecated_msg] = ACTIONS(7700), - [anon_sym___deprecated_enum_msg] = ACTIONS(7700), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7754), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7754), - [sym_IMP] = ACTIONS(7754), - [sym_BOOL] = ACTIONS(7754), - [sym_auto] = ACTIONS(7754), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3234] = { - [sym_attribute_specifier] = STATE(3836), - [sym_type_qualifier] = STATE(3835), - [sym__type_specifier] = STATE(3491), - [sym_sized_type_specifier] = STATE(3491), - [sym_enum_specifier] = STATE(3491), - [sym_struct_specifier] = STATE(3491), - [sym_union_specifier] = STATE(3491), - [sym_macro_type_specifier] = STATE(3491), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3922), - [sym_availability_attribute_specifier] = STATE(3922), - [sym_typeof_specifier] = STATE(3491), - [sym_atomic_specifier] = STATE(3491), - [sym_generic_type_specifier] = STATE(3491), - [aux_sym_type_definition_repeat1] = STATE(3835), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym___attribute] = ACTIONS(7686), - [anon_sym___attribute__] = ACTIONS(7686), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7756), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7694), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7698), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7698), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_NS_AVAILABLE] = ACTIONS(7700), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7700), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_API_AVAILABLE] = ACTIONS(7700), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_API_DEPRECATED] = ACTIONS(7700), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7700), - [anon_sym___deprecated_msg] = ACTIONS(7700), - [anon_sym___deprecated_enum_msg] = ACTIONS(7700), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7756), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7756), - [sym_IMP] = ACTIONS(7756), - [sym_BOOL] = ACTIONS(7756), - [sym_auto] = ACTIONS(7756), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3235] = { - [sym_attribute_specifier] = STATE(3851), - [sym_type_qualifier] = STATE(3844), - [sym__type_specifier] = STATE(3503), - [sym_sized_type_specifier] = STATE(3503), - [sym_enum_specifier] = STATE(3503), - [sym_struct_specifier] = STATE(3503), - [sym_union_specifier] = STATE(3503), - [sym_macro_type_specifier] = STATE(3503), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3922), - [sym_availability_attribute_specifier] = STATE(3922), - [sym_typeof_specifier] = STATE(3503), - [sym_atomic_specifier] = STATE(3503), - [sym_generic_type_specifier] = STATE(3503), - [aux_sym_type_definition_repeat1] = STATE(3844), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym___attribute] = ACTIONS(7686), - [anon_sym___attribute__] = ACTIONS(7686), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7758), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7694), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7698), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7698), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_NS_AVAILABLE] = ACTIONS(7700), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7700), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_API_AVAILABLE] = ACTIONS(7700), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_API_DEPRECATED] = ACTIONS(7700), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7700), - [anon_sym___deprecated_msg] = ACTIONS(7700), - [anon_sym___deprecated_enum_msg] = ACTIONS(7700), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7758), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7758), - [sym_IMP] = ACTIONS(7758), - [sym_BOOL] = ACTIONS(7758), - [sym_auto] = ACTIONS(7758), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3236] = { - [sym_identifier] = ACTIONS(7760), - [anon_sym_COMMA] = ACTIONS(7762), - [anon_sym_SEMI] = ACTIONS(7762), - [anon_sym_typedef] = ACTIONS(7760), - [anon_sym_extern] = ACTIONS(7760), - [anon_sym___attribute] = ACTIONS(7760), - [anon_sym___attribute__] = ACTIONS(7760), - [anon_sym___declspec] = ACTIONS(7760), - [anon_sym_RBRACE] = ACTIONS(7762), - [anon_sym_static] = ACTIONS(7760), - [anon_sym_auto] = ACTIONS(7760), - [anon_sym_register] = ACTIONS(7760), - [anon_sym_inline] = ACTIONS(7760), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7760), - [anon_sym_const] = ACTIONS(7760), - [anon_sym_volatile] = ACTIONS(7760), - [anon_sym_restrict] = ACTIONS(7760), - [anon_sym__Atomic] = ACTIONS(7760), - [anon_sym_in] = ACTIONS(7760), - [anon_sym_out] = ACTIONS(7760), - [anon_sym_inout] = ACTIONS(7760), - [anon_sym_bycopy] = ACTIONS(7760), - [anon_sym_byref] = ACTIONS(7760), - [anon_sym_oneway] = ACTIONS(7760), - [anon_sym__Nullable] = ACTIONS(7760), - [anon_sym__Nonnull] = ACTIONS(7760), - [anon_sym__Nullable_result] = ACTIONS(7760), - [anon_sym__Null_unspecified] = ACTIONS(7760), - [anon_sym___autoreleasing] = ACTIONS(7760), - [anon_sym___nullable] = ACTIONS(7760), - [anon_sym___nonnull] = ACTIONS(7760), - [anon_sym___strong] = ACTIONS(7760), - [anon_sym___weak] = ACTIONS(7760), - [anon_sym___bridge] = ACTIONS(7760), - [anon_sym___bridge_transfer] = ACTIONS(7760), - [anon_sym___bridge_retained] = ACTIONS(7760), - [anon_sym___unsafe_unretained] = ACTIONS(7760), - [anon_sym___block] = ACTIONS(7760), - [anon_sym___kindof] = ACTIONS(7760), - [anon_sym___unused] = ACTIONS(7760), - [anon_sym__Complex] = ACTIONS(7760), - [anon_sym___complex] = ACTIONS(7760), - [anon_sym_IBOutlet] = ACTIONS(7760), - [anon_sym_IBInspectable] = ACTIONS(7760), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7760), - [anon_sym_signed] = ACTIONS(7760), - [anon_sym_unsigned] = ACTIONS(7760), - [anon_sym_long] = ACTIONS(7760), - [anon_sym_short] = ACTIONS(7760), - [sym_primitive_type] = ACTIONS(7760), - [anon_sym_enum] = ACTIONS(7760), - [anon_sym_NS_ENUM] = ACTIONS(7760), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7760), - [anon_sym_NS_OPTIONS] = ACTIONS(7760), - [anon_sym_struct] = ACTIONS(7760), - [anon_sym_union] = ACTIONS(7760), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(7762), - [anon_sym_ATinterface] = ACTIONS(7762), - [sym_method_attribute_specifier] = ACTIONS(7760), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7760), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7760), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7760), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7760), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7760), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7760), - [anon_sym_NS_AVAILABLE] = ACTIONS(7760), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7760), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7760), - [anon_sym_API_AVAILABLE] = ACTIONS(7760), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7760), - [anon_sym_API_DEPRECATED] = ACTIONS(7760), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7760), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7760), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7760), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7760), - [anon_sym___deprecated_msg] = ACTIONS(7760), - [anon_sym___deprecated_enum_msg] = ACTIONS(7760), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7760), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7760), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7760), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7760), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7760), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7760), - [anon_sym_typeof] = ACTIONS(7760), - [anon_sym___typeof] = ACTIONS(7760), - [anon_sym___typeof__] = ACTIONS(7760), - [sym_id] = ACTIONS(7760), - [sym_instancetype] = ACTIONS(7760), - [sym_Class] = ACTIONS(7760), - [sym_SEL] = ACTIONS(7760), - [sym_IMP] = ACTIONS(7760), - [sym_BOOL] = ACTIONS(7760), - [sym_auto] = ACTIONS(7760), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3237] = { - [sym_identifier] = ACTIONS(2090), - [aux_sym_preproc_def_token1] = ACTIONS(2090), - [aux_sym_preproc_if_token1] = ACTIONS(2090), - [aux_sym_preproc_if_token2] = ACTIONS(2090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2090), - [aux_sym_preproc_else_token1] = ACTIONS(2090), - [aux_sym_preproc_elif_token1] = ACTIONS(2090), - [sym_preproc_directive] = ACTIONS(2090), - [anon_sym_extern] = ACTIONS(2090), - [anon_sym___attribute] = ACTIONS(2090), - [anon_sym___attribute__] = ACTIONS(2090), - [anon_sym___declspec] = ACTIONS(2090), - [anon_sym_static] = ACTIONS(2090), - [anon_sym_auto] = ACTIONS(2090), - [anon_sym_register] = ACTIONS(2090), - [anon_sym_inline] = ACTIONS(2090), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2090), - [anon_sym_volatile] = ACTIONS(2090), - [anon_sym_restrict] = ACTIONS(2090), - [anon_sym__Atomic] = ACTIONS(2090), - [anon_sym_in] = ACTIONS(2090), - [anon_sym_out] = ACTIONS(2090), - [anon_sym_inout] = ACTIONS(2090), - [anon_sym_bycopy] = ACTIONS(2090), - [anon_sym_byref] = ACTIONS(2090), - [anon_sym_oneway] = ACTIONS(2090), - [anon_sym__Nullable] = ACTIONS(2090), - [anon_sym__Nonnull] = ACTIONS(2090), - [anon_sym__Nullable_result] = ACTIONS(2090), - [anon_sym__Null_unspecified] = ACTIONS(2090), - [anon_sym___autoreleasing] = ACTIONS(2090), - [anon_sym___nullable] = ACTIONS(2090), - [anon_sym___nonnull] = ACTIONS(2090), - [anon_sym___strong] = ACTIONS(2090), - [anon_sym___weak] = ACTIONS(2090), - [anon_sym___bridge] = ACTIONS(2090), - [anon_sym___bridge_transfer] = ACTIONS(2090), - [anon_sym___bridge_retained] = ACTIONS(2090), - [anon_sym___unsafe_unretained] = ACTIONS(2090), - [anon_sym___block] = ACTIONS(2090), - [anon_sym___kindof] = ACTIONS(2090), - [anon_sym___unused] = ACTIONS(2090), - [anon_sym__Complex] = ACTIONS(2090), - [anon_sym___complex] = ACTIONS(2090), - [anon_sym_IBOutlet] = ACTIONS(2090), - [anon_sym_IBInspectable] = ACTIONS(2090), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2090), - [anon_sym_signed] = ACTIONS(2090), - [anon_sym_unsigned] = ACTIONS(2090), - [anon_sym_long] = ACTIONS(2090), - [anon_sym_short] = ACTIONS(2090), - [sym_primitive_type] = ACTIONS(2090), - [anon_sym_enum] = ACTIONS(2090), - [anon_sym_NS_ENUM] = ACTIONS(2090), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2090), - [anon_sym_NS_OPTIONS] = ACTIONS(2090), - [anon_sym_struct] = ACTIONS(2090), - [anon_sym_union] = ACTIONS(2090), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(2090), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2090), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2090), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2090), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2090), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2090), - [anon_sym_NS_AVAILABLE] = ACTIONS(2090), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2090), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_API_AVAILABLE] = ACTIONS(2090), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_API_DEPRECATED] = ACTIONS(2090), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2090), - [anon_sym___deprecated_msg] = ACTIONS(2090), - [anon_sym___deprecated_enum_msg] = ACTIONS(2090), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_typeof] = ACTIONS(2090), - [anon_sym___typeof] = ACTIONS(2090), - [anon_sym___typeof__] = ACTIONS(2090), - [sym_id] = ACTIONS(2090), - [sym_instancetype] = ACTIONS(2090), - [sym_Class] = ACTIONS(2090), - [sym_SEL] = ACTIONS(2090), - [sym_IMP] = ACTIONS(2090), - [sym_BOOL] = ACTIONS(2090), - [sym_auto] = ACTIONS(2090), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3238] = { - [sym_identifier] = ACTIONS(1958), - [aux_sym_preproc_def_token1] = ACTIONS(1958), - [aux_sym_preproc_if_token1] = ACTIONS(1958), - [aux_sym_preproc_if_token2] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [aux_sym_preproc_else_token1] = ACTIONS(1958), - [aux_sym_preproc_elif_token1] = ACTIONS(1958), - [sym_preproc_directive] = ACTIONS(1958), - [anon_sym_extern] = ACTIONS(1958), - [anon_sym___attribute] = ACTIONS(1958), - [anon_sym___attribute__] = ACTIONS(1958), - [anon_sym___declspec] = ACTIONS(1958), - [anon_sym_static] = ACTIONS(1958), - [anon_sym_auto] = ACTIONS(1958), - [anon_sym_register] = ACTIONS(1958), - [anon_sym_inline] = ACTIONS(1958), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1958), - [anon_sym_const] = ACTIONS(1958), - [anon_sym_volatile] = ACTIONS(1958), - [anon_sym_restrict] = ACTIONS(1958), - [anon_sym__Atomic] = ACTIONS(1958), - [anon_sym_in] = ACTIONS(1958), - [anon_sym_out] = ACTIONS(1958), - [anon_sym_inout] = ACTIONS(1958), - [anon_sym_bycopy] = ACTIONS(1958), - [anon_sym_byref] = ACTIONS(1958), - [anon_sym_oneway] = ACTIONS(1958), - [anon_sym__Nullable] = ACTIONS(1958), - [anon_sym__Nonnull] = ACTIONS(1958), - [anon_sym__Nullable_result] = ACTIONS(1958), - [anon_sym__Null_unspecified] = ACTIONS(1958), - [anon_sym___autoreleasing] = ACTIONS(1958), - [anon_sym___nullable] = ACTIONS(1958), - [anon_sym___nonnull] = ACTIONS(1958), - [anon_sym___strong] = ACTIONS(1958), - [anon_sym___weak] = ACTIONS(1958), - [anon_sym___bridge] = ACTIONS(1958), - [anon_sym___bridge_transfer] = ACTIONS(1958), - [anon_sym___bridge_retained] = ACTIONS(1958), - [anon_sym___unsafe_unretained] = ACTIONS(1958), - [anon_sym___block] = ACTIONS(1958), - [anon_sym___kindof] = ACTIONS(1958), - [anon_sym___unused] = ACTIONS(1958), - [anon_sym__Complex] = ACTIONS(1958), - [anon_sym___complex] = ACTIONS(1958), - [anon_sym_IBOutlet] = ACTIONS(1958), - [anon_sym_IBInspectable] = ACTIONS(1958), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1958), - [anon_sym_signed] = ACTIONS(1958), - [anon_sym_unsigned] = ACTIONS(1958), - [anon_sym_long] = ACTIONS(1958), - [anon_sym_short] = ACTIONS(1958), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_enum] = ACTIONS(1958), - [anon_sym_NS_ENUM] = ACTIONS(1958), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1958), - [anon_sym_NS_OPTIONS] = ACTIONS(1958), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(1958), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1958), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1958), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1958), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1958), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1958), - [anon_sym_NS_AVAILABLE] = ACTIONS(1958), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1958), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_API_AVAILABLE] = ACTIONS(1958), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_API_DEPRECATED] = ACTIONS(1958), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1958), - [anon_sym___deprecated_msg] = ACTIONS(1958), - [anon_sym___deprecated_enum_msg] = ACTIONS(1958), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_typeof] = ACTIONS(1958), - [anon_sym___typeof] = ACTIONS(1958), - [anon_sym___typeof__] = ACTIONS(1958), - [sym_id] = ACTIONS(1958), - [sym_instancetype] = ACTIONS(1958), - [sym_Class] = ACTIONS(1958), - [sym_SEL] = ACTIONS(1958), - [sym_IMP] = ACTIONS(1958), - [sym_BOOL] = ACTIONS(1958), - [sym_auto] = ACTIONS(1958), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3239] = { - [sym_identifier] = ACTIONS(1954), - [aux_sym_preproc_def_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1954), - [aux_sym_preproc_else_token1] = ACTIONS(1954), - [aux_sym_preproc_elif_token1] = ACTIONS(1954), - [sym_preproc_directive] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym___attribute] = ACTIONS(1954), - [anon_sym___attribute__] = ACTIONS(1954), - [anon_sym___declspec] = ACTIONS(1954), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_auto] = ACTIONS(1954), - [anon_sym_register] = ACTIONS(1954), - [anon_sym_inline] = ACTIONS(1954), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_volatile] = ACTIONS(1954), - [anon_sym_restrict] = ACTIONS(1954), - [anon_sym__Atomic] = ACTIONS(1954), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_out] = ACTIONS(1954), - [anon_sym_inout] = ACTIONS(1954), - [anon_sym_bycopy] = ACTIONS(1954), - [anon_sym_byref] = ACTIONS(1954), - [anon_sym_oneway] = ACTIONS(1954), - [anon_sym__Nullable] = ACTIONS(1954), - [anon_sym__Nonnull] = ACTIONS(1954), - [anon_sym__Nullable_result] = ACTIONS(1954), - [anon_sym__Null_unspecified] = ACTIONS(1954), - [anon_sym___autoreleasing] = ACTIONS(1954), - [anon_sym___nullable] = ACTIONS(1954), - [anon_sym___nonnull] = ACTIONS(1954), - [anon_sym___strong] = ACTIONS(1954), - [anon_sym___weak] = ACTIONS(1954), - [anon_sym___bridge] = ACTIONS(1954), - [anon_sym___bridge_transfer] = ACTIONS(1954), - [anon_sym___bridge_retained] = ACTIONS(1954), - [anon_sym___unsafe_unretained] = ACTIONS(1954), - [anon_sym___block] = ACTIONS(1954), - [anon_sym___kindof] = ACTIONS(1954), - [anon_sym___unused] = ACTIONS(1954), - [anon_sym__Complex] = ACTIONS(1954), - [anon_sym___complex] = ACTIONS(1954), - [anon_sym_IBOutlet] = ACTIONS(1954), - [anon_sym_IBInspectable] = ACTIONS(1954), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1954), - [anon_sym_signed] = ACTIONS(1954), - [anon_sym_unsigned] = ACTIONS(1954), - [anon_sym_long] = ACTIONS(1954), - [anon_sym_short] = ACTIONS(1954), - [sym_primitive_type] = ACTIONS(1954), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_NS_ENUM] = ACTIONS(1954), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1954), - [anon_sym_NS_OPTIONS] = ACTIONS(1954), - [anon_sym_struct] = ACTIONS(1954), - [anon_sym_union] = ACTIONS(1954), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(1954), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1954), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1954), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1954), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1954), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1954), - [anon_sym_NS_AVAILABLE] = ACTIONS(1954), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1954), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_API_AVAILABLE] = ACTIONS(1954), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_API_DEPRECATED] = ACTIONS(1954), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1954), - [anon_sym___deprecated_msg] = ACTIONS(1954), - [anon_sym___deprecated_enum_msg] = ACTIONS(1954), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_typeof] = ACTIONS(1954), - [anon_sym___typeof] = ACTIONS(1954), - [anon_sym___typeof__] = ACTIONS(1954), - [sym_id] = ACTIONS(1954), - [sym_instancetype] = ACTIONS(1954), - [sym_Class] = ACTIONS(1954), - [sym_SEL] = ACTIONS(1954), - [sym_IMP] = ACTIONS(1954), - [sym_BOOL] = ACTIONS(1954), - [sym_auto] = ACTIONS(1954), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3240] = { - [sym_attribute_specifier] = STATE(3855), - [sym_type_qualifier] = STATE(3832), - [sym__type_specifier] = STATE(3489), - [sym_sized_type_specifier] = STATE(3489), - [sym_enum_specifier] = STATE(3489), - [sym_struct_specifier] = STATE(3489), - [sym_union_specifier] = STATE(3489), - [sym_macro_type_specifier] = STATE(3489), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3922), - [sym_availability_attribute_specifier] = STATE(3922), - [sym_typeof_specifier] = STATE(3489), - [sym_atomic_specifier] = STATE(3489), - [sym_generic_type_specifier] = STATE(3489), - [aux_sym_type_definition_repeat1] = STATE(3832), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym___attribute] = ACTIONS(7686), - [anon_sym___attribute__] = ACTIONS(7686), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), + [3193] = { + [sym_swift_name_attribute_sepcifier] = STATE(5655), + [sym_identifier] = ACTIONS(7764), + [anon_sym_typedef] = ACTIONS(6797), + [anon_sym_extern] = ACTIONS(7764), + [anon_sym___attribute] = ACTIONS(7766), + [anon_sym___attribute__] = ACTIONS(7766), + [anon_sym___declspec] = ACTIONS(7764), + [anon_sym_static] = ACTIONS(7764), + [anon_sym_auto] = ACTIONS(7764), + [anon_sym_register] = ACTIONS(7764), + [anon_sym_inline] = ACTIONS(7764), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7764), + [anon_sym_const] = ACTIONS(7764), + [anon_sym_volatile] = ACTIONS(7764), + [anon_sym_restrict] = ACTIONS(7764), + [anon_sym__Atomic] = ACTIONS(7764), + [anon_sym_in] = ACTIONS(7764), + [anon_sym_out] = ACTIONS(7764), + [anon_sym_inout] = ACTIONS(7764), + [anon_sym_bycopy] = ACTIONS(7764), + [anon_sym_byref] = ACTIONS(7764), + [anon_sym_oneway] = ACTIONS(7764), + [anon_sym__Nullable] = ACTIONS(7764), + [anon_sym__Nonnull] = ACTIONS(7764), + [anon_sym__Nullable_result] = ACTIONS(7764), + [anon_sym__Null_unspecified] = ACTIONS(7764), + [anon_sym___autoreleasing] = ACTIONS(7764), + [anon_sym___nullable] = ACTIONS(7764), + [anon_sym___nonnull] = ACTIONS(7764), + [anon_sym___strong] = ACTIONS(7764), + [anon_sym___weak] = ACTIONS(7764), + [anon_sym___bridge] = ACTIONS(7764), + [anon_sym___bridge_transfer] = ACTIONS(7764), + [anon_sym___bridge_retained] = ACTIONS(7764), + [anon_sym___unsafe_unretained] = ACTIONS(7764), + [anon_sym___block] = ACTIONS(7764), + [anon_sym___kindof] = ACTIONS(7764), + [anon_sym___unused] = ACTIONS(7764), + [anon_sym__Complex] = ACTIONS(7764), + [anon_sym___complex] = ACTIONS(7764), + [anon_sym_IBOutlet] = ACTIONS(7764), + [anon_sym_IBInspectable] = ACTIONS(7764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7764), + [anon_sym_signed] = ACTIONS(7764), + [anon_sym_unsigned] = ACTIONS(7764), + [anon_sym_long] = ACTIONS(7764), + [anon_sym_short] = ACTIONS(7764), [sym_primitive_type] = ACTIONS(7764), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [anon_sym_enum] = ACTIONS(7764), + [anon_sym_struct] = ACTIONS(7764), + [anon_sym_union] = ACTIONS(7764), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7694), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7698), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7698), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_NS_AVAILABLE] = ACTIONS(7700), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7700), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_API_AVAILABLE] = ACTIONS(7700), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_API_DEPRECATED] = ACTIONS(7700), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7700), - [anon_sym___deprecated_msg] = ACTIONS(7700), - [anon_sym___deprecated_enum_msg] = ACTIONS(7700), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), + [anon_sym_ATprotocol] = ACTIONS(6799), + [anon_sym_ATinterface] = ACTIONS(7769), + [sym_method_attribute_specifier] = ACTIONS(7766), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7766), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7766), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7766), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7766), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7766), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7766), + [anon_sym_NS_AVAILABLE] = ACTIONS(7766), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7766), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_API_AVAILABLE] = ACTIONS(7766), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7766), + [anon_sym_API_DEPRECATED] = ACTIONS(7766), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7766), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7766), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7766), + [anon_sym___deprecated_msg] = ACTIONS(7766), + [anon_sym___deprecated_enum_msg] = ACTIONS(7766), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7766), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7766), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(7771), + [anon_sym_NS_ENUM] = ACTIONS(7764), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7764), + [anon_sym_NS_OPTIONS] = ACTIONS(7764), + [anon_sym_typeof] = ACTIONS(7764), + [anon_sym___typeof] = ACTIONS(7764), + [anon_sym___typeof__] = ACTIONS(7764), + [sym_id] = ACTIONS(7764), [sym_instancetype] = ACTIONS(7764), - [sym_Class] = ACTIONS(1163), + [sym_Class] = ACTIONS(7764), [sym_SEL] = ACTIONS(7764), [sym_IMP] = ACTIONS(7764), [sym_BOOL] = ACTIONS(7764), @@ -517078,101 +509975,401 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3241] = { - [sym_identifier] = ACTIONS(1890), - [aux_sym_preproc_def_token1] = ACTIONS(1890), - [aux_sym_preproc_if_token1] = ACTIONS(1890), - [aux_sym_preproc_if_token2] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1890), - [aux_sym_preproc_else_token1] = ACTIONS(1890), - [aux_sym_preproc_elif_token1] = ACTIONS(1890), - [sym_preproc_directive] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym___attribute] = ACTIONS(1890), - [anon_sym___attribute__] = ACTIONS(1890), - [anon_sym___declspec] = ACTIONS(1890), - [anon_sym_static] = ACTIONS(1890), - [anon_sym_auto] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_inline] = ACTIONS(1890), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [anon_sym_volatile] = ACTIONS(1890), - [anon_sym_restrict] = ACTIONS(1890), - [anon_sym__Atomic] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(1890), - [anon_sym_out] = ACTIONS(1890), - [anon_sym_inout] = ACTIONS(1890), - [anon_sym_bycopy] = ACTIONS(1890), - [anon_sym_byref] = ACTIONS(1890), - [anon_sym_oneway] = ACTIONS(1890), - [anon_sym__Nullable] = ACTIONS(1890), - [anon_sym__Nonnull] = ACTIONS(1890), - [anon_sym__Nullable_result] = ACTIONS(1890), - [anon_sym__Null_unspecified] = ACTIONS(1890), - [anon_sym___autoreleasing] = ACTIONS(1890), - [anon_sym___nullable] = ACTIONS(1890), - [anon_sym___nonnull] = ACTIONS(1890), - [anon_sym___strong] = ACTIONS(1890), - [anon_sym___weak] = ACTIONS(1890), - [anon_sym___bridge] = ACTIONS(1890), - [anon_sym___bridge_transfer] = ACTIONS(1890), - [anon_sym___bridge_retained] = ACTIONS(1890), - [anon_sym___unsafe_unretained] = ACTIONS(1890), - [anon_sym___block] = ACTIONS(1890), - [anon_sym___kindof] = ACTIONS(1890), - [anon_sym___unused] = ACTIONS(1890), - [anon_sym__Complex] = ACTIONS(1890), - [anon_sym___complex] = ACTIONS(1890), - [anon_sym_IBOutlet] = ACTIONS(1890), - [anon_sym_IBInspectable] = ACTIONS(1890), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1890), - [anon_sym_signed] = ACTIONS(1890), - [anon_sym_unsigned] = ACTIONS(1890), - [anon_sym_long] = ACTIONS(1890), - [anon_sym_short] = ACTIONS(1890), - [sym_primitive_type] = ACTIONS(1890), - [anon_sym_enum] = ACTIONS(1890), - [anon_sym_NS_ENUM] = ACTIONS(1890), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1890), - [anon_sym_NS_OPTIONS] = ACTIONS(1890), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1890), + [3194] = { + [sym_swift_name_attribute_sepcifier] = STATE(5796), + [sym_identifier] = ACTIONS(7764), + [anon_sym_typedef] = ACTIONS(6764), + [anon_sym_extern] = ACTIONS(7764), + [anon_sym___attribute] = ACTIONS(7766), + [anon_sym___attribute__] = ACTIONS(7766), + [anon_sym___declspec] = ACTIONS(7764), + [anon_sym_static] = ACTIONS(7764), + [anon_sym_auto] = ACTIONS(7764), + [anon_sym_register] = ACTIONS(7764), + [anon_sym_inline] = ACTIONS(7764), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7764), + [anon_sym_const] = ACTIONS(7764), + [anon_sym_volatile] = ACTIONS(7764), + [anon_sym_restrict] = ACTIONS(7764), + [anon_sym__Atomic] = ACTIONS(7764), + [anon_sym_in] = ACTIONS(7764), + [anon_sym_out] = ACTIONS(7764), + [anon_sym_inout] = ACTIONS(7764), + [anon_sym_bycopy] = ACTIONS(7764), + [anon_sym_byref] = ACTIONS(7764), + [anon_sym_oneway] = ACTIONS(7764), + [anon_sym__Nullable] = ACTIONS(7764), + [anon_sym__Nonnull] = ACTIONS(7764), + [anon_sym__Nullable_result] = ACTIONS(7764), + [anon_sym__Null_unspecified] = ACTIONS(7764), + [anon_sym___autoreleasing] = ACTIONS(7764), + [anon_sym___nullable] = ACTIONS(7764), + [anon_sym___nonnull] = ACTIONS(7764), + [anon_sym___strong] = ACTIONS(7764), + [anon_sym___weak] = ACTIONS(7764), + [anon_sym___bridge] = ACTIONS(7764), + [anon_sym___bridge_transfer] = ACTIONS(7764), + [anon_sym___bridge_retained] = ACTIONS(7764), + [anon_sym___unsafe_unretained] = ACTIONS(7764), + [anon_sym___block] = ACTIONS(7764), + [anon_sym___kindof] = ACTIONS(7764), + [anon_sym___unused] = ACTIONS(7764), + [anon_sym__Complex] = ACTIONS(7764), + [anon_sym___complex] = ACTIONS(7764), + [anon_sym_IBOutlet] = ACTIONS(7764), + [anon_sym_IBInspectable] = ACTIONS(7764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7764), + [anon_sym_signed] = ACTIONS(7764), + [anon_sym_unsigned] = ACTIONS(7764), + [anon_sym_long] = ACTIONS(7764), + [anon_sym_short] = ACTIONS(7764), + [sym_primitive_type] = ACTIONS(7764), + [anon_sym_enum] = ACTIONS(7764), + [anon_sym_struct] = ACTIONS(7764), + [anon_sym_union] = ACTIONS(7764), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(1890), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1890), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1890), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1890), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1890), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1890), - [anon_sym_NS_AVAILABLE] = ACTIONS(1890), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1890), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_API_AVAILABLE] = ACTIONS(1890), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_API_DEPRECATED] = ACTIONS(1890), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1890), - [anon_sym___deprecated_msg] = ACTIONS(1890), - [anon_sym___deprecated_enum_msg] = ACTIONS(1890), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_typeof] = ACTIONS(1890), - [anon_sym___typeof] = ACTIONS(1890), - [anon_sym___typeof__] = ACTIONS(1890), - [sym_id] = ACTIONS(1890), - [sym_instancetype] = ACTIONS(1890), - [sym_Class] = ACTIONS(1890), - [sym_SEL] = ACTIONS(1890), - [sym_IMP] = ACTIONS(1890), - [sym_BOOL] = ACTIONS(1890), - [sym_auto] = ACTIONS(1890), + [anon_sym_ATprotocol] = ACTIONS(6766), + [anon_sym_ATinterface] = ACTIONS(7769), + [sym_method_attribute_specifier] = ACTIONS(7766), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7766), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7766), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7766), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7766), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7766), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7766), + [anon_sym_NS_AVAILABLE] = ACTIONS(7766), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7766), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_API_AVAILABLE] = ACTIONS(7766), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7766), + [anon_sym_API_DEPRECATED] = ACTIONS(7766), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7766), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7766), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7766), + [anon_sym___deprecated_msg] = ACTIONS(7766), + [anon_sym___deprecated_enum_msg] = ACTIONS(7766), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7766), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7766), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(7773), + [anon_sym_NS_ENUM] = ACTIONS(7764), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7764), + [anon_sym_NS_OPTIONS] = ACTIONS(7764), + [anon_sym_typeof] = ACTIONS(7764), + [anon_sym___typeof] = ACTIONS(7764), + [anon_sym___typeof__] = ACTIONS(7764), + [sym_id] = ACTIONS(7764), + [sym_instancetype] = ACTIONS(7764), + [sym_Class] = ACTIONS(7764), + [sym_SEL] = ACTIONS(7764), + [sym_IMP] = ACTIONS(7764), + [sym_BOOL] = ACTIONS(7764), + [sym_auto] = ACTIONS(7764), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3195] = { + [sym_swift_name_attribute_sepcifier] = STATE(5854), + [sym_identifier] = ACTIONS(7764), + [anon_sym_typedef] = ACTIONS(6787), + [anon_sym_extern] = ACTIONS(7764), + [anon_sym___attribute] = ACTIONS(7766), + [anon_sym___attribute__] = ACTIONS(7766), + [anon_sym___declspec] = ACTIONS(7764), + [anon_sym_static] = ACTIONS(7764), + [anon_sym_auto] = ACTIONS(7764), + [anon_sym_register] = ACTIONS(7764), + [anon_sym_inline] = ACTIONS(7764), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7764), + [anon_sym_const] = ACTIONS(7764), + [anon_sym_volatile] = ACTIONS(7764), + [anon_sym_restrict] = ACTIONS(7764), + [anon_sym__Atomic] = ACTIONS(7764), + [anon_sym_in] = ACTIONS(7764), + [anon_sym_out] = ACTIONS(7764), + [anon_sym_inout] = ACTIONS(7764), + [anon_sym_bycopy] = ACTIONS(7764), + [anon_sym_byref] = ACTIONS(7764), + [anon_sym_oneway] = ACTIONS(7764), + [anon_sym__Nullable] = ACTIONS(7764), + [anon_sym__Nonnull] = ACTIONS(7764), + [anon_sym__Nullable_result] = ACTIONS(7764), + [anon_sym__Null_unspecified] = ACTIONS(7764), + [anon_sym___autoreleasing] = ACTIONS(7764), + [anon_sym___nullable] = ACTIONS(7764), + [anon_sym___nonnull] = ACTIONS(7764), + [anon_sym___strong] = ACTIONS(7764), + [anon_sym___weak] = ACTIONS(7764), + [anon_sym___bridge] = ACTIONS(7764), + [anon_sym___bridge_transfer] = ACTIONS(7764), + [anon_sym___bridge_retained] = ACTIONS(7764), + [anon_sym___unsafe_unretained] = ACTIONS(7764), + [anon_sym___block] = ACTIONS(7764), + [anon_sym___kindof] = ACTIONS(7764), + [anon_sym___unused] = ACTIONS(7764), + [anon_sym__Complex] = ACTIONS(7764), + [anon_sym___complex] = ACTIONS(7764), + [anon_sym_IBOutlet] = ACTIONS(7764), + [anon_sym_IBInspectable] = ACTIONS(7764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7764), + [anon_sym_signed] = ACTIONS(7764), + [anon_sym_unsigned] = ACTIONS(7764), + [anon_sym_long] = ACTIONS(7764), + [anon_sym_short] = ACTIONS(7764), + [sym_primitive_type] = ACTIONS(7764), + [anon_sym_enum] = ACTIONS(7764), + [anon_sym_struct] = ACTIONS(7764), + [anon_sym_union] = ACTIONS(7764), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(6789), + [anon_sym_ATinterface] = ACTIONS(7769), + [sym_method_attribute_specifier] = ACTIONS(7766), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7766), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7766), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7766), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7766), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7766), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7766), + [anon_sym_NS_AVAILABLE] = ACTIONS(7766), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7766), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_API_AVAILABLE] = ACTIONS(7766), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7766), + [anon_sym_API_DEPRECATED] = ACTIONS(7766), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7766), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7766), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7766), + [anon_sym___deprecated_msg] = ACTIONS(7766), + [anon_sym___deprecated_enum_msg] = ACTIONS(7766), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7766), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7766), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_ATimplementation] = ACTIONS(7775), + [anon_sym_NS_ENUM] = ACTIONS(7764), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7764), + [anon_sym_NS_OPTIONS] = ACTIONS(7764), + [anon_sym_typeof] = ACTIONS(7764), + [anon_sym___typeof] = ACTIONS(7764), + [anon_sym___typeof__] = ACTIONS(7764), + [sym_id] = ACTIONS(7764), + [sym_instancetype] = ACTIONS(7764), + [sym_Class] = ACTIONS(7764), + [sym_SEL] = ACTIONS(7764), + [sym_IMP] = ACTIONS(7764), + [sym_BOOL] = ACTIONS(7764), + [sym_auto] = ACTIONS(7764), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3196] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(7004), + [anon_sym_COMMA] = ACTIONS(7006), + [anon_sym_RPAREN] = ACTIONS(7006), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(7004), + [anon_sym_PLUS] = ACTIONS(7004), + [anon_sym_STAR] = ACTIONS(7006), + [anon_sym_SLASH] = ACTIONS(7004), + [anon_sym_PERCENT] = ACTIONS(7006), + [anon_sym_PIPE_PIPE] = ACTIONS(7006), + [anon_sym_AMP_AMP] = ACTIONS(7006), + [anon_sym_PIPE] = ACTIONS(7004), + [anon_sym_CARET] = ACTIONS(7006), + [anon_sym_AMP] = ACTIONS(7004), + [anon_sym_EQ_EQ] = ACTIONS(7006), + [anon_sym_BANG_EQ] = ACTIONS(7006), + [anon_sym_GT] = ACTIONS(7004), + [anon_sym_GT_EQ] = ACTIONS(7006), + [anon_sym_LT_EQ] = ACTIONS(7006), + [anon_sym_LT] = ACTIONS(7004), + [anon_sym_LT_LT] = ACTIONS(7006), + [anon_sym_GT_GT] = ACTIONS(7006), + [anon_sym_SEMI] = ACTIONS(7006), + [anon_sym___attribute] = ACTIONS(7004), + [anon_sym___attribute__] = ACTIONS(7004), + [anon_sym_RBRACE] = ACTIONS(7006), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(7006), + [anon_sym_const] = ACTIONS(7004), + [anon_sym_volatile] = ACTIONS(7004), + [anon_sym_restrict] = ACTIONS(7004), + [anon_sym__Atomic] = ACTIONS(7004), + [anon_sym_in] = ACTIONS(7004), + [anon_sym_out] = ACTIONS(7004), + [anon_sym_inout] = ACTIONS(7004), + [anon_sym_bycopy] = ACTIONS(7004), + [anon_sym_byref] = ACTIONS(7004), + [anon_sym_oneway] = ACTIONS(7004), + [anon_sym__Nullable] = ACTIONS(7004), + [anon_sym__Nonnull] = ACTIONS(7004), + [anon_sym__Nullable_result] = ACTIONS(7004), + [anon_sym__Null_unspecified] = ACTIONS(7004), + [anon_sym___autoreleasing] = ACTIONS(7004), + [anon_sym___nullable] = ACTIONS(7004), + [anon_sym___nonnull] = ACTIONS(7004), + [anon_sym___strong] = ACTIONS(7004), + [anon_sym___weak] = ACTIONS(7004), + [anon_sym___bridge] = ACTIONS(7004), + [anon_sym___bridge_transfer] = ACTIONS(7004), + [anon_sym___bridge_retained] = ACTIONS(7004), + [anon_sym___unsafe_unretained] = ACTIONS(7004), + [anon_sym___block] = ACTIONS(7004), + [anon_sym___kindof] = ACTIONS(7004), + [anon_sym___unused] = ACTIONS(7004), + [anon_sym__Complex] = ACTIONS(7004), + [anon_sym___complex] = ACTIONS(7004), + [anon_sym_IBOutlet] = ACTIONS(7004), + [anon_sym_IBInspectable] = ACTIONS(7004), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7004), + [anon_sym_COLON] = ACTIONS(7006), + [anon_sym_QMARK] = ACTIONS(7006), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7004), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7004), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7004), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7004), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7004), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7004), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7004), + [anon_sym_NS_AVAILABLE] = ACTIONS(7004), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7004), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7004), + [anon_sym_API_AVAILABLE] = ACTIONS(7004), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7004), + [anon_sym_API_DEPRECATED] = ACTIONS(7004), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7004), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7004), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7004), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7004), + [anon_sym___deprecated_msg] = ACTIONS(7004), + [anon_sym___deprecated_enum_msg] = ACTIONS(7004), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7004), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7004), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7004), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7004), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7004), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7004), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3197] = { + [sym_identifier] = ACTIONS(7718), + [aux_sym_preproc_def_token1] = ACTIONS(7718), + [aux_sym_preproc_if_token1] = ACTIONS(7718), + [aux_sym_preproc_if_token2] = ACTIONS(7718), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7718), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7718), + [sym_preproc_directive] = ACTIONS(7718), + [anon_sym_extern] = ACTIONS(7718), + [anon_sym___attribute] = ACTIONS(7718), + [anon_sym___attribute__] = ACTIONS(7718), + [anon_sym___declspec] = ACTIONS(7718), + [anon_sym_static] = ACTIONS(7718), + [anon_sym_auto] = ACTIONS(7718), + [anon_sym_register] = ACTIONS(7718), + [anon_sym_inline] = ACTIONS(7718), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym_in] = ACTIONS(7718), + [anon_sym_out] = ACTIONS(7718), + [anon_sym_inout] = ACTIONS(7718), + [anon_sym_bycopy] = ACTIONS(7718), + [anon_sym_byref] = ACTIONS(7718), + [anon_sym_oneway] = ACTIONS(7718), + [anon_sym__Nullable] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym__Nullable_result] = ACTIONS(7718), + [anon_sym__Null_unspecified] = ACTIONS(7718), + [anon_sym___autoreleasing] = ACTIONS(7718), + [anon_sym___nullable] = ACTIONS(7718), + [anon_sym___nonnull] = ACTIONS(7718), + [anon_sym___strong] = ACTIONS(7718), + [anon_sym___weak] = ACTIONS(7718), + [anon_sym___bridge] = ACTIONS(7718), + [anon_sym___bridge_transfer] = ACTIONS(7718), + [anon_sym___bridge_retained] = ACTIONS(7718), + [anon_sym___unsafe_unretained] = ACTIONS(7718), + [anon_sym___block] = ACTIONS(7718), + [anon_sym___kindof] = ACTIONS(7718), + [anon_sym___unused] = ACTIONS(7718), + [anon_sym__Complex] = ACTIONS(7718), + [anon_sym___complex] = ACTIONS(7718), + [anon_sym_IBOutlet] = ACTIONS(7718), + [anon_sym_IBInspectable] = ACTIONS(7718), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7718), + [anon_sym_signed] = ACTIONS(7718), + [anon_sym_unsigned] = ACTIONS(7718), + [anon_sym_long] = ACTIONS(7718), + [anon_sym_short] = ACTIONS(7718), + [sym_primitive_type] = ACTIONS(7718), + [anon_sym_enum] = ACTIONS(7718), + [anon_sym_struct] = ACTIONS(7718), + [anon_sym_union] = ACTIONS(7718), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7718), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7718), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7718), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7718), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7718), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7718), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7718), + [anon_sym_NS_AVAILABLE] = ACTIONS(7718), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7718), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7718), + [anon_sym_API_AVAILABLE] = ACTIONS(7718), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7718), + [anon_sym_API_DEPRECATED] = ACTIONS(7718), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7718), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7718), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7718), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7718), + [anon_sym___deprecated_msg] = ACTIONS(7718), + [anon_sym___deprecated_enum_msg] = ACTIONS(7718), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7718), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7718), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7718), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7718), + [anon_sym_NS_ENUM] = ACTIONS(7718), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7718), + [anon_sym_NS_OPTIONS] = ACTIONS(7718), + [anon_sym_typeof] = ACTIONS(7718), + [anon_sym___typeof] = ACTIONS(7718), + [anon_sym___typeof__] = ACTIONS(7718), + [sym_id] = ACTIONS(7718), + [sym_instancetype] = ACTIONS(7718), + [sym_Class] = ACTIONS(7718), + [sym_SEL] = ACTIONS(7718), + [sym_IMP] = ACTIONS(7718), + [sym_BOOL] = ACTIONS(7718), + [sym_auto] = ACTIONS(7718), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -517180,407 +510377,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(5), }, - [3242] = { - [sym_attribute_specifier] = STATE(3823), - [sym_type_qualifier] = STATE(3831), - [sym__type_specifier] = STATE(3481), - [sym_sized_type_specifier] = STATE(3481), - [sym_enum_specifier] = STATE(3481), - [sym_struct_specifier] = STATE(3481), - [sym_union_specifier] = STATE(3481), - [sym_macro_type_specifier] = STATE(3481), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3922), - [sym_availability_attribute_specifier] = STATE(3922), - [sym_typeof_specifier] = STATE(3481), - [sym_atomic_specifier] = STATE(3481), - [sym_generic_type_specifier] = STATE(3481), - [aux_sym_type_definition_repeat1] = STATE(3831), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym___attribute] = ACTIONS(7686), - [anon_sym___attribute__] = ACTIONS(7686), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7766), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [3198] = { + [sym_identifier] = ACTIONS(7718), + [aux_sym_preproc_def_token1] = ACTIONS(7718), + [aux_sym_preproc_if_token1] = ACTIONS(7718), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7718), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7718), + [sym_preproc_directive] = ACTIONS(7718), + [anon_sym_extern] = ACTIONS(7718), + [anon_sym___attribute] = ACTIONS(7718), + [anon_sym___attribute__] = ACTIONS(7718), + [anon_sym___declspec] = ACTIONS(7718), + [anon_sym_RBRACE] = ACTIONS(7779), + [anon_sym_static] = ACTIONS(7718), + [anon_sym_auto] = ACTIONS(7718), + [anon_sym_register] = ACTIONS(7718), + [anon_sym_inline] = ACTIONS(7718), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym_in] = ACTIONS(7718), + [anon_sym_out] = ACTIONS(7718), + [anon_sym_inout] = ACTIONS(7718), + [anon_sym_bycopy] = ACTIONS(7718), + [anon_sym_byref] = ACTIONS(7718), + [anon_sym_oneway] = ACTIONS(7718), + [anon_sym__Nullable] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym__Nullable_result] = ACTIONS(7718), + [anon_sym__Null_unspecified] = ACTIONS(7718), + [anon_sym___autoreleasing] = ACTIONS(7718), + [anon_sym___nullable] = ACTIONS(7718), + [anon_sym___nonnull] = ACTIONS(7718), + [anon_sym___strong] = ACTIONS(7718), + [anon_sym___weak] = ACTIONS(7718), + [anon_sym___bridge] = ACTIONS(7718), + [anon_sym___bridge_transfer] = ACTIONS(7718), + [anon_sym___bridge_retained] = ACTIONS(7718), + [anon_sym___unsafe_unretained] = ACTIONS(7718), + [anon_sym___block] = ACTIONS(7718), + [anon_sym___kindof] = ACTIONS(7718), + [anon_sym___unused] = ACTIONS(7718), + [anon_sym__Complex] = ACTIONS(7718), + [anon_sym___complex] = ACTIONS(7718), + [anon_sym_IBOutlet] = ACTIONS(7718), + [anon_sym_IBInspectable] = ACTIONS(7718), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7718), + [anon_sym_signed] = ACTIONS(7718), + [anon_sym_unsigned] = ACTIONS(7718), + [anon_sym_long] = ACTIONS(7718), + [anon_sym_short] = ACTIONS(7718), + [sym_primitive_type] = ACTIONS(7718), + [anon_sym_enum] = ACTIONS(7718), + [anon_sym_struct] = ACTIONS(7718), + [anon_sym_union] = ACTIONS(7718), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7694), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7698), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7698), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_NS_AVAILABLE] = ACTIONS(7700), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7700), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_API_AVAILABLE] = ACTIONS(7700), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_API_DEPRECATED] = ACTIONS(7700), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7700), - [anon_sym___deprecated_msg] = ACTIONS(7700), - [anon_sym___deprecated_enum_msg] = ACTIONS(7700), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7766), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7766), - [sym_IMP] = ACTIONS(7766), - [sym_BOOL] = ACTIONS(7766), - [sym_auto] = ACTIONS(7766), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3243] = { - [sym_attribute_specifier] = STATE(3841), - [sym_type_qualifier] = STATE(3839), - [sym__type_specifier] = STATE(3609), - [sym_sized_type_specifier] = STATE(3609), - [sym_enum_specifier] = STATE(3609), - [sym_struct_specifier] = STATE(3609), - [sym_union_specifier] = STATE(3609), - [sym_macro_type_specifier] = STATE(3609), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3922), - [sym_availability_attribute_specifier] = STATE(3922), - [sym_typeof_specifier] = STATE(3609), - [sym_atomic_specifier] = STATE(3609), - [sym_generic_type_specifier] = STATE(3609), - [aux_sym_type_definition_repeat1] = STATE(3839), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym___attribute] = ACTIONS(7686), - [anon_sym___attribute__] = ACTIONS(7686), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7768), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7694), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7698), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7698), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_NS_AVAILABLE] = ACTIONS(7700), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7700), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_API_AVAILABLE] = ACTIONS(7700), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_API_DEPRECATED] = ACTIONS(7700), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7700), - [anon_sym___deprecated_msg] = ACTIONS(7700), - [anon_sym___deprecated_enum_msg] = ACTIONS(7700), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7768), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7768), - [sym_IMP] = ACTIONS(7768), - [sym_BOOL] = ACTIONS(7768), - [sym_auto] = ACTIONS(7768), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3244] = { - [sym_attribute_specifier] = STATE(3822), - [sym_type_qualifier] = STATE(3819), - [sym__type_specifier] = STATE(3458), - [sym_sized_type_specifier] = STATE(3458), - [sym_enum_specifier] = STATE(3458), - [sym_struct_specifier] = STATE(3458), - [sym_union_specifier] = STATE(3458), - [sym_macro_type_specifier] = STATE(3458), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3922), - [sym_availability_attribute_specifier] = STATE(3922), - [sym_typeof_specifier] = STATE(3458), - [sym_atomic_specifier] = STATE(3458), - [sym_generic_type_specifier] = STATE(3458), - [aux_sym_type_definition_repeat1] = STATE(3819), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym___attribute] = ACTIONS(7686), - [anon_sym___attribute__] = ACTIONS(7686), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7770), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7694), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7698), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7698), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_NS_AVAILABLE] = ACTIONS(7700), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7700), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_API_AVAILABLE] = ACTIONS(7700), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_API_DEPRECATED] = ACTIONS(7700), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7700), - [anon_sym___deprecated_msg] = ACTIONS(7700), - [anon_sym___deprecated_enum_msg] = ACTIONS(7700), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7770), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7770), - [sym_IMP] = ACTIONS(7770), - [sym_BOOL] = ACTIONS(7770), - [sym_auto] = ACTIONS(7770), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3245] = { - [sym_identifier] = ACTIONS(7772), - [aux_sym_preproc_def_token1] = ACTIONS(7772), - [aux_sym_preproc_if_token1] = ACTIONS(7772), - [aux_sym_preproc_if_token2] = ACTIONS(7772), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7772), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7772), - [aux_sym_preproc_else_token1] = ACTIONS(7772), - [aux_sym_preproc_elif_token1] = ACTIONS(7772), - [sym_preproc_directive] = ACTIONS(7772), - [anon_sym_extern] = ACTIONS(7772), - [anon_sym___attribute] = ACTIONS(7772), - [anon_sym___attribute__] = ACTIONS(7772), - [anon_sym___declspec] = ACTIONS(7772), - [anon_sym_static] = ACTIONS(7772), - [anon_sym_auto] = ACTIONS(7772), - [anon_sym_register] = ACTIONS(7772), - [anon_sym_inline] = ACTIONS(7772), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7772), - [anon_sym_const] = ACTIONS(7772), - [anon_sym_volatile] = ACTIONS(7772), - [anon_sym_restrict] = ACTIONS(7772), - [anon_sym__Atomic] = ACTIONS(7772), - [anon_sym_in] = ACTIONS(7772), - [anon_sym_out] = ACTIONS(7772), - [anon_sym_inout] = ACTIONS(7772), - [anon_sym_bycopy] = ACTIONS(7772), - [anon_sym_byref] = ACTIONS(7772), - [anon_sym_oneway] = ACTIONS(7772), - [anon_sym__Nullable] = ACTIONS(7772), - [anon_sym__Nonnull] = ACTIONS(7772), - [anon_sym__Nullable_result] = ACTIONS(7772), - [anon_sym__Null_unspecified] = ACTIONS(7772), - [anon_sym___autoreleasing] = ACTIONS(7772), - [anon_sym___nullable] = ACTIONS(7772), - [anon_sym___nonnull] = ACTIONS(7772), - [anon_sym___strong] = ACTIONS(7772), - [anon_sym___weak] = ACTIONS(7772), - [anon_sym___bridge] = ACTIONS(7772), - [anon_sym___bridge_transfer] = ACTIONS(7772), - [anon_sym___bridge_retained] = ACTIONS(7772), - [anon_sym___unsafe_unretained] = ACTIONS(7772), - [anon_sym___block] = ACTIONS(7772), - [anon_sym___kindof] = ACTIONS(7772), - [anon_sym___unused] = ACTIONS(7772), - [anon_sym__Complex] = ACTIONS(7772), - [anon_sym___complex] = ACTIONS(7772), - [anon_sym_IBOutlet] = ACTIONS(7772), - [anon_sym_IBInspectable] = ACTIONS(7772), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7772), - [anon_sym_signed] = ACTIONS(7772), - [anon_sym_unsigned] = ACTIONS(7772), - [anon_sym_long] = ACTIONS(7772), - [anon_sym_short] = ACTIONS(7772), - [sym_primitive_type] = ACTIONS(7772), - [anon_sym_enum] = ACTIONS(7772), - [anon_sym_NS_ENUM] = ACTIONS(7772), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7772), - [anon_sym_NS_OPTIONS] = ACTIONS(7772), - [anon_sym_struct] = ACTIONS(7772), - [anon_sym_union] = ACTIONS(7772), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7772), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7772), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7772), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7772), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7772), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7772), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7772), - [anon_sym_NS_AVAILABLE] = ACTIONS(7772), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7772), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7772), - [anon_sym_API_AVAILABLE] = ACTIONS(7772), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7772), - [anon_sym_API_DEPRECATED] = ACTIONS(7772), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7772), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7772), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7772), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7772), - [anon_sym___deprecated_msg] = ACTIONS(7772), - [anon_sym___deprecated_enum_msg] = ACTIONS(7772), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7772), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7772), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7772), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7772), - [anon_sym_typeof] = ACTIONS(7772), - [anon_sym___typeof] = ACTIONS(7772), - [anon_sym___typeof__] = ACTIONS(7772), - [sym_id] = ACTIONS(7772), - [sym_instancetype] = ACTIONS(7772), - [sym_Class] = ACTIONS(7772), - [sym_SEL] = ACTIONS(7772), - [sym_IMP] = ACTIONS(7772), - [sym_BOOL] = ACTIONS(7772), - [sym_auto] = ACTIONS(7772), + [sym_method_attribute_specifier] = ACTIONS(7718), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7718), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7718), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7718), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7718), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7718), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7718), + [anon_sym_NS_AVAILABLE] = ACTIONS(7718), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7718), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7718), + [anon_sym_API_AVAILABLE] = ACTIONS(7718), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7718), + [anon_sym_API_DEPRECATED] = ACTIONS(7718), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7718), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7718), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7718), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7718), + [anon_sym___deprecated_msg] = ACTIONS(7718), + [anon_sym___deprecated_enum_msg] = ACTIONS(7718), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7718), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7718), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7718), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7718), + [anon_sym_NS_ENUM] = ACTIONS(7718), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7718), + [anon_sym_NS_OPTIONS] = ACTIONS(7718), + [anon_sym_typeof] = ACTIONS(7718), + [anon_sym___typeof] = ACTIONS(7718), + [anon_sym___typeof__] = ACTIONS(7718), + [sym_id] = ACTIONS(7718), + [sym_instancetype] = ACTIONS(7718), + [sym_Class] = ACTIONS(7718), + [sym_SEL] = ACTIONS(7718), + [sym_IMP] = ACTIONS(7718), + [sym_BOOL] = ACTIONS(7718), + [sym_auto] = ACTIONS(7718), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -517588,101 +510477,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(5), }, - [3246] = { - [sym_attribute_specifier] = STATE(3827), - [sym_type_qualifier] = STATE(3828), - [sym__type_specifier] = STATE(3463), - [sym_sized_type_specifier] = STATE(3463), - [sym_enum_specifier] = STATE(3463), - [sym_struct_specifier] = STATE(3463), - [sym_union_specifier] = STATE(3463), - [sym_macro_type_specifier] = STATE(3463), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3922), - [sym_availability_attribute_specifier] = STATE(3922), - [sym_typeof_specifier] = STATE(3463), - [sym_atomic_specifier] = STATE(3463), - [sym_generic_type_specifier] = STATE(3463), - [aux_sym_type_definition_repeat1] = STATE(3828), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym___attribute] = ACTIONS(7686), - [anon_sym___attribute__] = ACTIONS(7686), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7774), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [3199] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(6950), + [anon_sym_PLUS] = ACTIONS(6950), + [anon_sym_STAR] = ACTIONS(6952), + [anon_sym_SLASH] = ACTIONS(6950), + [anon_sym_PERCENT] = ACTIONS(6952), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(6952), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_CARET] = ACTIONS(6952), + [anon_sym_AMP] = ACTIONS(6950), + [anon_sym_EQ_EQ] = ACTIONS(6952), + [anon_sym_BANG_EQ] = ACTIONS(6952), + [anon_sym_GT] = ACTIONS(6950), + [anon_sym_GT_EQ] = ACTIONS(6952), + [anon_sym_LT_EQ] = ACTIONS(6952), + [anon_sym_LT] = ACTIONS(6950), + [anon_sym_LT_LT] = ACTIONS(6952), + [anon_sym_GT_GT] = ACTIONS(6952), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7694), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7698), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7698), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_NS_AVAILABLE] = ACTIONS(7700), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7700), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_API_AVAILABLE] = ACTIONS(7700), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_API_DEPRECATED] = ACTIONS(7700), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7700), - [anon_sym___deprecated_msg] = ACTIONS(7700), - [anon_sym___deprecated_enum_msg] = ACTIONS(7700), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7774), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7774), - [sym_IMP] = ACTIONS(7774), - [sym_BOOL] = ACTIONS(7774), - [sym_auto] = ACTIONS(7774), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -517690,203 +510577,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3247] = { - [sym_identifier] = ACTIONS(7776), - [aux_sym_preproc_def_token1] = ACTIONS(7776), - [aux_sym_preproc_if_token1] = ACTIONS(7776), - [aux_sym_preproc_if_token2] = ACTIONS(7776), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7776), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7776), - [aux_sym_preproc_else_token1] = ACTIONS(7776), - [aux_sym_preproc_elif_token1] = ACTIONS(7776), - [sym_preproc_directive] = ACTIONS(7776), - [anon_sym_extern] = ACTIONS(7776), - [anon_sym___attribute] = ACTIONS(7776), - [anon_sym___attribute__] = ACTIONS(7776), - [anon_sym___declspec] = ACTIONS(7776), - [anon_sym_static] = ACTIONS(7776), - [anon_sym_auto] = ACTIONS(7776), - [anon_sym_register] = ACTIONS(7776), - [anon_sym_inline] = ACTIONS(7776), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7776), - [anon_sym_const] = ACTIONS(7776), - [anon_sym_volatile] = ACTIONS(7776), - [anon_sym_restrict] = ACTIONS(7776), - [anon_sym__Atomic] = ACTIONS(7776), - [anon_sym_in] = ACTIONS(7776), - [anon_sym_out] = ACTIONS(7776), - [anon_sym_inout] = ACTIONS(7776), - [anon_sym_bycopy] = ACTIONS(7776), - [anon_sym_byref] = ACTIONS(7776), - [anon_sym_oneway] = ACTIONS(7776), - [anon_sym__Nullable] = ACTIONS(7776), - [anon_sym__Nonnull] = ACTIONS(7776), - [anon_sym__Nullable_result] = ACTIONS(7776), - [anon_sym__Null_unspecified] = ACTIONS(7776), - [anon_sym___autoreleasing] = ACTIONS(7776), - [anon_sym___nullable] = ACTIONS(7776), - [anon_sym___nonnull] = ACTIONS(7776), - [anon_sym___strong] = ACTIONS(7776), - [anon_sym___weak] = ACTIONS(7776), - [anon_sym___bridge] = ACTIONS(7776), - [anon_sym___bridge_transfer] = ACTIONS(7776), - [anon_sym___bridge_retained] = ACTIONS(7776), - [anon_sym___unsafe_unretained] = ACTIONS(7776), - [anon_sym___block] = ACTIONS(7776), - [anon_sym___kindof] = ACTIONS(7776), - [anon_sym___unused] = ACTIONS(7776), - [anon_sym__Complex] = ACTIONS(7776), - [anon_sym___complex] = ACTIONS(7776), - [anon_sym_IBOutlet] = ACTIONS(7776), - [anon_sym_IBInspectable] = ACTIONS(7776), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7776), - [anon_sym_signed] = ACTIONS(7776), - [anon_sym_unsigned] = ACTIONS(7776), - [anon_sym_long] = ACTIONS(7776), - [anon_sym_short] = ACTIONS(7776), - [sym_primitive_type] = ACTIONS(7776), - [anon_sym_enum] = ACTIONS(7776), - [anon_sym_NS_ENUM] = ACTIONS(7776), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7776), - [anon_sym_NS_OPTIONS] = ACTIONS(7776), - [anon_sym_struct] = ACTIONS(7776), - [anon_sym_union] = ACTIONS(7776), + [3200] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(7781), + [anon_sym_PLUS] = ACTIONS(7781), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7785), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(7787), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7791), + [anon_sym_AMP] = ACTIONS(7793), + [anon_sym_EQ_EQ] = ACTIONS(7795), + [anon_sym_BANG_EQ] = ACTIONS(7795), + [anon_sym_GT] = ACTIONS(7797), + [anon_sym_GT_EQ] = ACTIONS(7799), + [anon_sym_LT_EQ] = ACTIONS(7799), + [anon_sym_LT] = ACTIONS(7797), + [anon_sym_LT_LT] = ACTIONS(7801), + [anon_sym_GT_GT] = ACTIONS(7801), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7776), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7776), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7776), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7776), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7776), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7776), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7776), - [anon_sym_NS_AVAILABLE] = ACTIONS(7776), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7776), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7776), - [anon_sym_API_AVAILABLE] = ACTIONS(7776), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7776), - [anon_sym_API_DEPRECATED] = ACTIONS(7776), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7776), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7776), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7776), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7776), - [anon_sym___deprecated_msg] = ACTIONS(7776), - [anon_sym___deprecated_enum_msg] = ACTIONS(7776), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7776), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7776), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7776), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7776), - [anon_sym_typeof] = ACTIONS(7776), - [anon_sym___typeof] = ACTIONS(7776), - [anon_sym___typeof__] = ACTIONS(7776), - [sym_id] = ACTIONS(7776), - [sym_instancetype] = ACTIONS(7776), - [sym_Class] = ACTIONS(7776), - [sym_SEL] = ACTIONS(7776), - [sym_IMP] = ACTIONS(7776), - [sym_BOOL] = ACTIONS(7776), - [sym_auto] = ACTIONS(7776), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3248] = { - [sym_identifier] = ACTIONS(7778), - [anon_sym_COMMA] = ACTIONS(7780), - [anon_sym_SEMI] = ACTIONS(7780), - [anon_sym_typedef] = ACTIONS(7778), - [anon_sym_extern] = ACTIONS(7778), - [anon_sym___attribute] = ACTIONS(7778), - [anon_sym___attribute__] = ACTIONS(7778), - [anon_sym___declspec] = ACTIONS(7778), - [anon_sym_RBRACE] = ACTIONS(7780), - [anon_sym_static] = ACTIONS(7778), - [anon_sym_auto] = ACTIONS(7778), - [anon_sym_register] = ACTIONS(7778), - [anon_sym_inline] = ACTIONS(7778), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7778), - [anon_sym_const] = ACTIONS(7778), - [anon_sym_volatile] = ACTIONS(7778), - [anon_sym_restrict] = ACTIONS(7778), - [anon_sym__Atomic] = ACTIONS(7778), - [anon_sym_in] = ACTIONS(7778), - [anon_sym_out] = ACTIONS(7778), - [anon_sym_inout] = ACTIONS(7778), - [anon_sym_bycopy] = ACTIONS(7778), - [anon_sym_byref] = ACTIONS(7778), - [anon_sym_oneway] = ACTIONS(7778), - [anon_sym__Nullable] = ACTIONS(7778), - [anon_sym__Nonnull] = ACTIONS(7778), - [anon_sym__Nullable_result] = ACTIONS(7778), - [anon_sym__Null_unspecified] = ACTIONS(7778), - [anon_sym___autoreleasing] = ACTIONS(7778), - [anon_sym___nullable] = ACTIONS(7778), - [anon_sym___nonnull] = ACTIONS(7778), - [anon_sym___strong] = ACTIONS(7778), - [anon_sym___weak] = ACTIONS(7778), - [anon_sym___bridge] = ACTIONS(7778), - [anon_sym___bridge_transfer] = ACTIONS(7778), - [anon_sym___bridge_retained] = ACTIONS(7778), - [anon_sym___unsafe_unretained] = ACTIONS(7778), - [anon_sym___block] = ACTIONS(7778), - [anon_sym___kindof] = ACTIONS(7778), - [anon_sym___unused] = ACTIONS(7778), - [anon_sym__Complex] = ACTIONS(7778), - [anon_sym___complex] = ACTIONS(7778), - [anon_sym_IBOutlet] = ACTIONS(7778), - [anon_sym_IBInspectable] = ACTIONS(7778), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7778), - [anon_sym_signed] = ACTIONS(7778), - [anon_sym_unsigned] = ACTIONS(7778), - [anon_sym_long] = ACTIONS(7778), - [anon_sym_short] = ACTIONS(7778), - [sym_primitive_type] = ACTIONS(7778), - [anon_sym_enum] = ACTIONS(7778), - [anon_sym_NS_ENUM] = ACTIONS(7778), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7778), - [anon_sym_NS_OPTIONS] = ACTIONS(7778), - [anon_sym_struct] = ACTIONS(7778), - [anon_sym_union] = ACTIONS(7778), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(7780), - [anon_sym_ATinterface] = ACTIONS(7780), - [sym_method_attribute_specifier] = ACTIONS(7778), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7778), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7778), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7778), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7778), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7778), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7778), - [anon_sym_NS_AVAILABLE] = ACTIONS(7778), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7778), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7778), - [anon_sym_API_AVAILABLE] = ACTIONS(7778), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7778), - [anon_sym_API_DEPRECATED] = ACTIONS(7778), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7778), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7778), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7778), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7778), - [anon_sym___deprecated_msg] = ACTIONS(7778), - [anon_sym___deprecated_enum_msg] = ACTIONS(7778), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7778), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7778), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7778), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7778), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7778), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7778), - [anon_sym_typeof] = ACTIONS(7778), - [anon_sym___typeof] = ACTIONS(7778), - [anon_sym___typeof__] = ACTIONS(7778), - [sym_id] = ACTIONS(7778), - [sym_instancetype] = ACTIONS(7778), - [sym_Class] = ACTIONS(7778), - [sym_SEL] = ACTIONS(7778), - [sym_IMP] = ACTIONS(7778), - [sym_BOOL] = ACTIONS(7778), - [sym_auto] = ACTIONS(7778), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -517894,1617 +510677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3249] = { - [sym_attribute_specifier] = STATE(3860), - [sym_type_qualifier] = STATE(3852), - [sym__type_specifier] = STATE(3544), - [sym_sized_type_specifier] = STATE(3544), - [sym_enum_specifier] = STATE(3544), - [sym_struct_specifier] = STATE(3544), - [sym_union_specifier] = STATE(3544), - [sym_macro_type_specifier] = STATE(3544), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3922), - [sym_availability_attribute_specifier] = STATE(3922), - [sym_typeof_specifier] = STATE(3544), - [sym_atomic_specifier] = STATE(3544), - [sym_generic_type_specifier] = STATE(3544), - [aux_sym_type_definition_repeat1] = STATE(3852), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym___attribute] = ACTIONS(7686), - [anon_sym___attribute__] = ACTIONS(7686), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7782), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7694), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7696), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7698), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7698), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7698), - [anon_sym_NS_AVAILABLE] = ACTIONS(7700), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7700), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_API_AVAILABLE] = ACTIONS(7700), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_API_DEPRECATED] = ACTIONS(7700), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7700), - [anon_sym___deprecated_msg] = ACTIONS(7700), - [anon_sym___deprecated_enum_msg] = ACTIONS(7700), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7700), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7700), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7700), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7782), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7782), - [sym_IMP] = ACTIONS(7782), - [sym_BOOL] = ACTIONS(7782), - [sym_auto] = ACTIONS(7782), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3250] = { - [sym_identifier] = ACTIONS(7784), - [aux_sym_preproc_def_token1] = ACTIONS(7784), - [aux_sym_preproc_if_token1] = ACTIONS(7784), - [aux_sym_preproc_if_token2] = ACTIONS(7784), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7784), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7784), - [aux_sym_preproc_else_token1] = ACTIONS(7784), - [aux_sym_preproc_elif_token1] = ACTIONS(7784), - [sym_preproc_directive] = ACTIONS(7784), - [anon_sym_extern] = ACTIONS(7784), - [anon_sym___attribute] = ACTIONS(7784), - [anon_sym___attribute__] = ACTIONS(7784), - [anon_sym___declspec] = ACTIONS(7784), - [anon_sym_static] = ACTIONS(7784), - [anon_sym_auto] = ACTIONS(7784), - [anon_sym_register] = ACTIONS(7784), - [anon_sym_inline] = ACTIONS(7784), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7784), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_volatile] = ACTIONS(7784), - [anon_sym_restrict] = ACTIONS(7784), - [anon_sym__Atomic] = ACTIONS(7784), - [anon_sym_in] = ACTIONS(7784), - [anon_sym_out] = ACTIONS(7784), - [anon_sym_inout] = ACTIONS(7784), - [anon_sym_bycopy] = ACTIONS(7784), - [anon_sym_byref] = ACTIONS(7784), - [anon_sym_oneway] = ACTIONS(7784), - [anon_sym__Nullable] = ACTIONS(7784), - [anon_sym__Nonnull] = ACTIONS(7784), - [anon_sym__Nullable_result] = ACTIONS(7784), - [anon_sym__Null_unspecified] = ACTIONS(7784), - [anon_sym___autoreleasing] = ACTIONS(7784), - [anon_sym___nullable] = ACTIONS(7784), - [anon_sym___nonnull] = ACTIONS(7784), - [anon_sym___strong] = ACTIONS(7784), - [anon_sym___weak] = ACTIONS(7784), - [anon_sym___bridge] = ACTIONS(7784), - [anon_sym___bridge_transfer] = ACTIONS(7784), - [anon_sym___bridge_retained] = ACTIONS(7784), - [anon_sym___unsafe_unretained] = ACTIONS(7784), - [anon_sym___block] = ACTIONS(7784), - [anon_sym___kindof] = ACTIONS(7784), - [anon_sym___unused] = ACTIONS(7784), - [anon_sym__Complex] = ACTIONS(7784), - [anon_sym___complex] = ACTIONS(7784), - [anon_sym_IBOutlet] = ACTIONS(7784), - [anon_sym_IBInspectable] = ACTIONS(7784), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7784), - [anon_sym_signed] = ACTIONS(7784), - [anon_sym_unsigned] = ACTIONS(7784), - [anon_sym_long] = ACTIONS(7784), - [anon_sym_short] = ACTIONS(7784), - [sym_primitive_type] = ACTIONS(7784), - [anon_sym_enum] = ACTIONS(7784), - [anon_sym_NS_ENUM] = ACTIONS(7784), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7784), - [anon_sym_NS_OPTIONS] = ACTIONS(7784), - [anon_sym_struct] = ACTIONS(7784), - [anon_sym_union] = ACTIONS(7784), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7784), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7784), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7784), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7784), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7784), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7784), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7784), - [anon_sym_NS_AVAILABLE] = ACTIONS(7784), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7784), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7784), - [anon_sym_API_AVAILABLE] = ACTIONS(7784), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7784), - [anon_sym_API_DEPRECATED] = ACTIONS(7784), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7784), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7784), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7784), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7784), - [anon_sym___deprecated_msg] = ACTIONS(7784), - [anon_sym___deprecated_enum_msg] = ACTIONS(7784), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7784), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7784), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7784), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7784), - [anon_sym_typeof] = ACTIONS(7784), - [anon_sym___typeof] = ACTIONS(7784), - [anon_sym___typeof__] = ACTIONS(7784), - [sym_id] = ACTIONS(7784), - [sym_instancetype] = ACTIONS(7784), - [sym_Class] = ACTIONS(7784), - [sym_SEL] = ACTIONS(7784), - [sym_IMP] = ACTIONS(7784), - [sym_BOOL] = ACTIONS(7784), - [sym_auto] = ACTIONS(7784), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3251] = { - [sym_identifier] = ACTIONS(7786), - [aux_sym_preproc_def_token1] = ACTIONS(7786), - [aux_sym_preproc_if_token1] = ACTIONS(7786), - [aux_sym_preproc_if_token2] = ACTIONS(7786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7786), - [aux_sym_preproc_else_token1] = ACTIONS(7786), - [aux_sym_preproc_elif_token1] = ACTIONS(7786), - [sym_preproc_directive] = ACTIONS(7786), - [anon_sym_extern] = ACTIONS(7786), - [anon_sym___attribute] = ACTIONS(7786), - [anon_sym___attribute__] = ACTIONS(7786), - [anon_sym___declspec] = ACTIONS(7786), - [anon_sym_static] = ACTIONS(7786), - [anon_sym_auto] = ACTIONS(7786), - [anon_sym_register] = ACTIONS(7786), - [anon_sym_inline] = ACTIONS(7786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7786), - [anon_sym_const] = ACTIONS(7786), - [anon_sym_volatile] = ACTIONS(7786), - [anon_sym_restrict] = ACTIONS(7786), - [anon_sym__Atomic] = ACTIONS(7786), - [anon_sym_in] = ACTIONS(7786), - [anon_sym_out] = ACTIONS(7786), - [anon_sym_inout] = ACTIONS(7786), - [anon_sym_bycopy] = ACTIONS(7786), - [anon_sym_byref] = ACTIONS(7786), - [anon_sym_oneway] = ACTIONS(7786), - [anon_sym__Nullable] = ACTIONS(7786), - [anon_sym__Nonnull] = ACTIONS(7786), - [anon_sym__Nullable_result] = ACTIONS(7786), - [anon_sym__Null_unspecified] = ACTIONS(7786), - [anon_sym___autoreleasing] = ACTIONS(7786), - [anon_sym___nullable] = ACTIONS(7786), - [anon_sym___nonnull] = ACTIONS(7786), - [anon_sym___strong] = ACTIONS(7786), - [anon_sym___weak] = ACTIONS(7786), - [anon_sym___bridge] = ACTIONS(7786), - [anon_sym___bridge_transfer] = ACTIONS(7786), - [anon_sym___bridge_retained] = ACTIONS(7786), - [anon_sym___unsafe_unretained] = ACTIONS(7786), - [anon_sym___block] = ACTIONS(7786), - [anon_sym___kindof] = ACTIONS(7786), - [anon_sym___unused] = ACTIONS(7786), - [anon_sym__Complex] = ACTIONS(7786), - [anon_sym___complex] = ACTIONS(7786), - [anon_sym_IBOutlet] = ACTIONS(7786), - [anon_sym_IBInspectable] = ACTIONS(7786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7786), - [anon_sym_signed] = ACTIONS(7786), - [anon_sym_unsigned] = ACTIONS(7786), - [anon_sym_long] = ACTIONS(7786), - [anon_sym_short] = ACTIONS(7786), - [sym_primitive_type] = ACTIONS(7786), - [anon_sym_enum] = ACTIONS(7786), - [anon_sym_NS_ENUM] = ACTIONS(7786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7786), - [anon_sym_NS_OPTIONS] = ACTIONS(7786), - [anon_sym_struct] = ACTIONS(7786), - [anon_sym_union] = ACTIONS(7786), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7786), - [anon_sym_NS_AVAILABLE] = ACTIONS(7786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7786), - [anon_sym_API_AVAILABLE] = ACTIONS(7786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7786), - [anon_sym_API_DEPRECATED] = ACTIONS(7786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7786), - [anon_sym___deprecated_msg] = ACTIONS(7786), - [anon_sym___deprecated_enum_msg] = ACTIONS(7786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7786), - [anon_sym_typeof] = ACTIONS(7786), - [anon_sym___typeof] = ACTIONS(7786), - [anon_sym___typeof__] = ACTIONS(7786), - [sym_id] = ACTIONS(7786), - [sym_instancetype] = ACTIONS(7786), - [sym_Class] = ACTIONS(7786), - [sym_SEL] = ACTIONS(7786), - [sym_IMP] = ACTIONS(7786), - [sym_BOOL] = ACTIONS(7786), - [sym_auto] = ACTIONS(7786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3252] = { - [sym_swift_name_attribute_sepcifier] = STATE(5710), - [sym_identifier] = ACTIONS(7788), - [anon_sym_typedef] = ACTIONS(6886), - [anon_sym_extern] = ACTIONS(7788), - [anon_sym___attribute] = ACTIONS(7790), - [anon_sym___attribute__] = ACTIONS(7790), - [anon_sym___declspec] = ACTIONS(7788), - [anon_sym_static] = ACTIONS(7788), - [anon_sym_auto] = ACTIONS(7788), - [anon_sym_register] = ACTIONS(7788), - [anon_sym_inline] = ACTIONS(7788), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7788), - [anon_sym_const] = ACTIONS(7788), - [anon_sym_volatile] = ACTIONS(7788), - [anon_sym_restrict] = ACTIONS(7788), - [anon_sym__Atomic] = ACTIONS(7788), - [anon_sym_in] = ACTIONS(7788), - [anon_sym_out] = ACTIONS(7788), - [anon_sym_inout] = ACTIONS(7788), - [anon_sym_bycopy] = ACTIONS(7788), - [anon_sym_byref] = ACTIONS(7788), - [anon_sym_oneway] = ACTIONS(7788), - [anon_sym__Nullable] = ACTIONS(7788), - [anon_sym__Nonnull] = ACTIONS(7788), - [anon_sym__Nullable_result] = ACTIONS(7788), - [anon_sym__Null_unspecified] = ACTIONS(7788), - [anon_sym___autoreleasing] = ACTIONS(7788), - [anon_sym___nullable] = ACTIONS(7788), - [anon_sym___nonnull] = ACTIONS(7788), - [anon_sym___strong] = ACTIONS(7788), - [anon_sym___weak] = ACTIONS(7788), - [anon_sym___bridge] = ACTIONS(7788), - [anon_sym___bridge_transfer] = ACTIONS(7788), - [anon_sym___bridge_retained] = ACTIONS(7788), - [anon_sym___unsafe_unretained] = ACTIONS(7788), - [anon_sym___block] = ACTIONS(7788), - [anon_sym___kindof] = ACTIONS(7788), - [anon_sym___unused] = ACTIONS(7788), - [anon_sym__Complex] = ACTIONS(7788), - [anon_sym___complex] = ACTIONS(7788), - [anon_sym_IBOutlet] = ACTIONS(7788), - [anon_sym_IBInspectable] = ACTIONS(7788), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7788), - [anon_sym_signed] = ACTIONS(7788), - [anon_sym_unsigned] = ACTIONS(7788), - [anon_sym_long] = ACTIONS(7788), - [anon_sym_short] = ACTIONS(7788), - [sym_primitive_type] = ACTIONS(7788), - [anon_sym_enum] = ACTIONS(7788), - [anon_sym_NS_ENUM] = ACTIONS(7788), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7788), - [anon_sym_NS_OPTIONS] = ACTIONS(7788), - [anon_sym_struct] = ACTIONS(7788), - [anon_sym_union] = ACTIONS(7788), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(6888), - [anon_sym_ATinterface] = ACTIONS(7793), - [sym_method_attribute_specifier] = ACTIONS(7790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7790), - [anon_sym_NS_AVAILABLE] = ACTIONS(7790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_API_AVAILABLE] = ACTIONS(7790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7790), - [anon_sym_API_DEPRECATED] = ACTIONS(7790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7790), - [anon_sym___deprecated_msg] = ACTIONS(7790), - [anon_sym___deprecated_enum_msg] = ACTIONS(7790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(7795), - [anon_sym_typeof] = ACTIONS(7788), - [anon_sym___typeof] = ACTIONS(7788), - [anon_sym___typeof__] = ACTIONS(7788), - [sym_id] = ACTIONS(7788), - [sym_instancetype] = ACTIONS(7788), - [sym_Class] = ACTIONS(7788), - [sym_SEL] = ACTIONS(7788), - [sym_IMP] = ACTIONS(7788), - [sym_BOOL] = ACTIONS(7788), - [sym_auto] = ACTIONS(7788), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3253] = { - [sym_swift_name_attribute_sepcifier] = STATE(5894), - [sym_identifier] = ACTIONS(7788), - [anon_sym_typedef] = ACTIONS(6904), - [anon_sym_extern] = ACTIONS(7788), - [anon_sym___attribute] = ACTIONS(7790), - [anon_sym___attribute__] = ACTIONS(7790), - [anon_sym___declspec] = ACTIONS(7788), - [anon_sym_static] = ACTIONS(7788), - [anon_sym_auto] = ACTIONS(7788), - [anon_sym_register] = ACTIONS(7788), - [anon_sym_inline] = ACTIONS(7788), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7788), - [anon_sym_const] = ACTIONS(7788), - [anon_sym_volatile] = ACTIONS(7788), - [anon_sym_restrict] = ACTIONS(7788), - [anon_sym__Atomic] = ACTIONS(7788), - [anon_sym_in] = ACTIONS(7788), - [anon_sym_out] = ACTIONS(7788), - [anon_sym_inout] = ACTIONS(7788), - [anon_sym_bycopy] = ACTIONS(7788), - [anon_sym_byref] = ACTIONS(7788), - [anon_sym_oneway] = ACTIONS(7788), - [anon_sym__Nullable] = ACTIONS(7788), - [anon_sym__Nonnull] = ACTIONS(7788), - [anon_sym__Nullable_result] = ACTIONS(7788), - [anon_sym__Null_unspecified] = ACTIONS(7788), - [anon_sym___autoreleasing] = ACTIONS(7788), - [anon_sym___nullable] = ACTIONS(7788), - [anon_sym___nonnull] = ACTIONS(7788), - [anon_sym___strong] = ACTIONS(7788), - [anon_sym___weak] = ACTIONS(7788), - [anon_sym___bridge] = ACTIONS(7788), - [anon_sym___bridge_transfer] = ACTIONS(7788), - [anon_sym___bridge_retained] = ACTIONS(7788), - [anon_sym___unsafe_unretained] = ACTIONS(7788), - [anon_sym___block] = ACTIONS(7788), - [anon_sym___kindof] = ACTIONS(7788), - [anon_sym___unused] = ACTIONS(7788), - [anon_sym__Complex] = ACTIONS(7788), - [anon_sym___complex] = ACTIONS(7788), - [anon_sym_IBOutlet] = ACTIONS(7788), - [anon_sym_IBInspectable] = ACTIONS(7788), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7788), - [anon_sym_signed] = ACTIONS(7788), - [anon_sym_unsigned] = ACTIONS(7788), - [anon_sym_long] = ACTIONS(7788), - [anon_sym_short] = ACTIONS(7788), - [sym_primitive_type] = ACTIONS(7788), - [anon_sym_enum] = ACTIONS(7788), - [anon_sym_NS_ENUM] = ACTIONS(7788), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7788), - [anon_sym_NS_OPTIONS] = ACTIONS(7788), - [anon_sym_struct] = ACTIONS(7788), - [anon_sym_union] = ACTIONS(7788), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(6906), - [anon_sym_ATinterface] = ACTIONS(7793), - [sym_method_attribute_specifier] = ACTIONS(7790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7790), - [anon_sym_NS_AVAILABLE] = ACTIONS(7790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_API_AVAILABLE] = ACTIONS(7790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7790), - [anon_sym_API_DEPRECATED] = ACTIONS(7790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7790), - [anon_sym___deprecated_msg] = ACTIONS(7790), - [anon_sym___deprecated_enum_msg] = ACTIONS(7790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(7797), - [anon_sym_typeof] = ACTIONS(7788), - [anon_sym___typeof] = ACTIONS(7788), - [anon_sym___typeof__] = ACTIONS(7788), - [sym_id] = ACTIONS(7788), - [sym_instancetype] = ACTIONS(7788), - [sym_Class] = ACTIONS(7788), - [sym_SEL] = ACTIONS(7788), - [sym_IMP] = ACTIONS(7788), - [sym_BOOL] = ACTIONS(7788), - [sym_auto] = ACTIONS(7788), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3254] = { - [sym_swift_name_attribute_sepcifier] = STATE(5836), - [sym_identifier] = ACTIONS(7788), - [anon_sym_typedef] = ACTIONS(6898), - [anon_sym_extern] = ACTIONS(7788), - [anon_sym___attribute] = ACTIONS(7790), - [anon_sym___attribute__] = ACTIONS(7790), - [anon_sym___declspec] = ACTIONS(7788), - [anon_sym_static] = ACTIONS(7788), - [anon_sym_auto] = ACTIONS(7788), - [anon_sym_register] = ACTIONS(7788), - [anon_sym_inline] = ACTIONS(7788), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7788), - [anon_sym_const] = ACTIONS(7788), - [anon_sym_volatile] = ACTIONS(7788), - [anon_sym_restrict] = ACTIONS(7788), - [anon_sym__Atomic] = ACTIONS(7788), - [anon_sym_in] = ACTIONS(7788), - [anon_sym_out] = ACTIONS(7788), - [anon_sym_inout] = ACTIONS(7788), - [anon_sym_bycopy] = ACTIONS(7788), - [anon_sym_byref] = ACTIONS(7788), - [anon_sym_oneway] = ACTIONS(7788), - [anon_sym__Nullable] = ACTIONS(7788), - [anon_sym__Nonnull] = ACTIONS(7788), - [anon_sym__Nullable_result] = ACTIONS(7788), - [anon_sym__Null_unspecified] = ACTIONS(7788), - [anon_sym___autoreleasing] = ACTIONS(7788), - [anon_sym___nullable] = ACTIONS(7788), - [anon_sym___nonnull] = ACTIONS(7788), - [anon_sym___strong] = ACTIONS(7788), - [anon_sym___weak] = ACTIONS(7788), - [anon_sym___bridge] = ACTIONS(7788), - [anon_sym___bridge_transfer] = ACTIONS(7788), - [anon_sym___bridge_retained] = ACTIONS(7788), - [anon_sym___unsafe_unretained] = ACTIONS(7788), - [anon_sym___block] = ACTIONS(7788), - [anon_sym___kindof] = ACTIONS(7788), - [anon_sym___unused] = ACTIONS(7788), - [anon_sym__Complex] = ACTIONS(7788), - [anon_sym___complex] = ACTIONS(7788), - [anon_sym_IBOutlet] = ACTIONS(7788), - [anon_sym_IBInspectable] = ACTIONS(7788), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7788), - [anon_sym_signed] = ACTIONS(7788), - [anon_sym_unsigned] = ACTIONS(7788), - [anon_sym_long] = ACTIONS(7788), - [anon_sym_short] = ACTIONS(7788), - [sym_primitive_type] = ACTIONS(7788), - [anon_sym_enum] = ACTIONS(7788), - [anon_sym_NS_ENUM] = ACTIONS(7788), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7788), - [anon_sym_NS_OPTIONS] = ACTIONS(7788), - [anon_sym_struct] = ACTIONS(7788), - [anon_sym_union] = ACTIONS(7788), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(6900), - [anon_sym_ATinterface] = ACTIONS(7793), - [sym_method_attribute_specifier] = ACTIONS(7790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7790), - [anon_sym_NS_AVAILABLE] = ACTIONS(7790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_API_AVAILABLE] = ACTIONS(7790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7790), - [anon_sym_API_DEPRECATED] = ACTIONS(7790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7790), - [anon_sym___deprecated_msg] = ACTIONS(7790), - [anon_sym___deprecated_enum_msg] = ACTIONS(7790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7790), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_ATimplementation] = ACTIONS(7799), - [anon_sym_typeof] = ACTIONS(7788), - [anon_sym___typeof] = ACTIONS(7788), - [anon_sym___typeof__] = ACTIONS(7788), - [sym_id] = ACTIONS(7788), - [sym_instancetype] = ACTIONS(7788), - [sym_Class] = ACTIONS(7788), - [sym_SEL] = ACTIONS(7788), - [sym_IMP] = ACTIONS(7788), - [sym_BOOL] = ACTIONS(7788), - [sym_auto] = ACTIONS(7788), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3255] = { - [sym_attribute_specifier] = STATE(3255), - [sym_ms_declspec_modifier] = STATE(3255), - [sym_storage_class_specifier] = STATE(3255), - [sym_type_qualifier] = STATE(3255), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [aux_sym__declaration_specifiers_repeat1] = STATE(3255), - [sym_identifier] = ACTIONS(7801), - [anon_sym_extern] = ACTIONS(7803), - [anon_sym___attribute] = ACTIONS(7806), - [anon_sym___attribute__] = ACTIONS(7806), - [anon_sym___declspec] = ACTIONS(7809), - [anon_sym_static] = ACTIONS(7803), - [anon_sym_auto] = ACTIONS(7803), - [anon_sym_register] = ACTIONS(7803), - [anon_sym_inline] = ACTIONS(7803), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7803), - [anon_sym_const] = ACTIONS(7812), - [anon_sym_volatile] = ACTIONS(7812), - [anon_sym_restrict] = ACTIONS(7812), - [anon_sym__Atomic] = ACTIONS(7812), - [anon_sym_in] = ACTIONS(7812), - [anon_sym_out] = ACTIONS(7812), - [anon_sym_inout] = ACTIONS(7812), - [anon_sym_bycopy] = ACTIONS(7812), - [anon_sym_byref] = ACTIONS(7812), - [anon_sym_oneway] = ACTIONS(7812), - [anon_sym__Nullable] = ACTIONS(7812), - [anon_sym__Nonnull] = ACTIONS(7812), - [anon_sym__Nullable_result] = ACTIONS(7812), - [anon_sym__Null_unspecified] = ACTIONS(7812), - [anon_sym___autoreleasing] = ACTIONS(7812), - [anon_sym___nullable] = ACTIONS(7812), - [anon_sym___nonnull] = ACTIONS(7812), - [anon_sym___strong] = ACTIONS(7812), - [anon_sym___weak] = ACTIONS(7812), - [anon_sym___bridge] = ACTIONS(7812), - [anon_sym___bridge_transfer] = ACTIONS(7812), - [anon_sym___bridge_retained] = ACTIONS(7812), - [anon_sym___unsafe_unretained] = ACTIONS(7812), - [anon_sym___block] = ACTIONS(7812), - [anon_sym___kindof] = ACTIONS(7812), - [anon_sym___unused] = ACTIONS(7812), - [anon_sym__Complex] = ACTIONS(7812), - [anon_sym___complex] = ACTIONS(7812), - [anon_sym_IBOutlet] = ACTIONS(7812), - [anon_sym_IBInspectable] = ACTIONS(7812), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7812), - [anon_sym_signed] = ACTIONS(7801), - [anon_sym_unsigned] = ACTIONS(7801), - [anon_sym_long] = ACTIONS(7801), - [anon_sym_short] = ACTIONS(7801), - [sym_primitive_type] = ACTIONS(7801), - [anon_sym_enum] = ACTIONS(7801), - [anon_sym_NS_ENUM] = ACTIONS(7801), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7801), - [anon_sym_NS_OPTIONS] = ACTIONS(7801), - [anon_sym_struct] = ACTIONS(7801), - [anon_sym_union] = ACTIONS(7801), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7815), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7818), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7818), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7821), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7821), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7821), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7821), - [anon_sym_NS_AVAILABLE] = ACTIONS(7824), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7824), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7824), - [anon_sym_API_AVAILABLE] = ACTIONS(7824), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7824), - [anon_sym_API_DEPRECATED] = ACTIONS(7824), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7824), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7824), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7824), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7824), - [anon_sym___deprecated_msg] = ACTIONS(7824), - [anon_sym___deprecated_enum_msg] = ACTIONS(7824), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7824), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7824), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7824), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7824), - [anon_sym_typeof] = ACTIONS(7801), - [anon_sym___typeof] = ACTIONS(7801), - [anon_sym___typeof__] = ACTIONS(7801), - [sym_id] = ACTIONS(7801), - [sym_instancetype] = ACTIONS(7801), - [sym_Class] = ACTIONS(7801), - [sym_SEL] = ACTIONS(7801), - [sym_IMP] = ACTIONS(7801), - [sym_BOOL] = ACTIONS(7801), - [sym_auto] = ACTIONS(7801), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3256] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7092), - [anon_sym_RPAREN] = ACTIONS(7092), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7090), - [anon_sym_PLUS] = ACTIONS(7090), - [anon_sym_STAR] = ACTIONS(7092), - [anon_sym_SLASH] = ACTIONS(7090), - [anon_sym_PERCENT] = ACTIONS(7092), - [anon_sym_PIPE_PIPE] = ACTIONS(7092), - [anon_sym_AMP_AMP] = ACTIONS(7092), - [anon_sym_PIPE] = ACTIONS(7090), - [anon_sym_CARET] = ACTIONS(7092), - [anon_sym_AMP] = ACTIONS(7090), - [anon_sym_EQ_EQ] = ACTIONS(7092), - [anon_sym_BANG_EQ] = ACTIONS(7092), - [anon_sym_GT] = ACTIONS(7090), - [anon_sym_GT_EQ] = ACTIONS(7092), - [anon_sym_LT_EQ] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7090), - [anon_sym_LT_LT] = ACTIONS(7092), - [anon_sym_GT_GT] = ACTIONS(7092), - [anon_sym_SEMI] = ACTIONS(7092), - [anon_sym___attribute] = ACTIONS(7090), - [anon_sym___attribute__] = ACTIONS(7090), - [anon_sym_RBRACE] = ACTIONS(7092), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7092), - [anon_sym_const] = ACTIONS(7090), - [anon_sym_volatile] = ACTIONS(7090), - [anon_sym_restrict] = ACTIONS(7090), - [anon_sym__Atomic] = ACTIONS(7090), - [anon_sym_in] = ACTIONS(7090), - [anon_sym_out] = ACTIONS(7090), - [anon_sym_inout] = ACTIONS(7090), - [anon_sym_bycopy] = ACTIONS(7090), - [anon_sym_byref] = ACTIONS(7090), - [anon_sym_oneway] = ACTIONS(7090), - [anon_sym__Nullable] = ACTIONS(7090), - [anon_sym__Nonnull] = ACTIONS(7090), - [anon_sym__Nullable_result] = ACTIONS(7090), - [anon_sym__Null_unspecified] = ACTIONS(7090), - [anon_sym___autoreleasing] = ACTIONS(7090), - [anon_sym___nullable] = ACTIONS(7090), - [anon_sym___nonnull] = ACTIONS(7090), - [anon_sym___strong] = ACTIONS(7090), - [anon_sym___weak] = ACTIONS(7090), - [anon_sym___bridge] = ACTIONS(7090), - [anon_sym___bridge_transfer] = ACTIONS(7090), - [anon_sym___bridge_retained] = ACTIONS(7090), - [anon_sym___unsafe_unretained] = ACTIONS(7090), - [anon_sym___block] = ACTIONS(7090), - [anon_sym___kindof] = ACTIONS(7090), - [anon_sym___unused] = ACTIONS(7090), - [anon_sym__Complex] = ACTIONS(7090), - [anon_sym___complex] = ACTIONS(7090), - [anon_sym_IBOutlet] = ACTIONS(7090), - [anon_sym_IBInspectable] = ACTIONS(7090), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7090), - [anon_sym_COLON] = ACTIONS(7092), - [anon_sym_QMARK] = ACTIONS(7092), - [anon_sym_DASH_DASH] = ACTIONS(7827), - [anon_sym_PLUS_PLUS] = ACTIONS(7827), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7090), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7090), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7090), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7090), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7090), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7090), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7090), - [anon_sym_NS_AVAILABLE] = ACTIONS(7090), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7090), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7090), - [anon_sym_API_AVAILABLE] = ACTIONS(7090), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7090), - [anon_sym_API_DEPRECATED] = ACTIONS(7090), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7090), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7090), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7090), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7090), - [anon_sym___deprecated_msg] = ACTIONS(7090), - [anon_sym___deprecated_enum_msg] = ACTIONS(7090), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7090), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7090), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7090), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7090), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7090), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7090), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3257] = { - [sym_identifier] = ACTIONS(7706), - [aux_sym_preproc_def_token1] = ACTIONS(7706), - [aux_sym_preproc_if_token1] = ACTIONS(7706), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7706), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7706), - [sym_preproc_directive] = ACTIONS(7706), - [anon_sym_extern] = ACTIONS(7706), - [anon_sym___attribute] = ACTIONS(7706), - [anon_sym___attribute__] = ACTIONS(7706), - [anon_sym___declspec] = ACTIONS(7706), - [anon_sym_RBRACE] = ACTIONS(7829), - [anon_sym_static] = ACTIONS(7706), - [anon_sym_auto] = ACTIONS(7706), - [anon_sym_register] = ACTIONS(7706), - [anon_sym_inline] = ACTIONS(7706), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7706), - [anon_sym_const] = ACTIONS(7706), - [anon_sym_volatile] = ACTIONS(7706), - [anon_sym_restrict] = ACTIONS(7706), - [anon_sym__Atomic] = ACTIONS(7706), - [anon_sym_in] = ACTIONS(7706), - [anon_sym_out] = ACTIONS(7706), - [anon_sym_inout] = ACTIONS(7706), - [anon_sym_bycopy] = ACTIONS(7706), - [anon_sym_byref] = ACTIONS(7706), - [anon_sym_oneway] = ACTIONS(7706), - [anon_sym__Nullable] = ACTIONS(7706), - [anon_sym__Nonnull] = ACTIONS(7706), - [anon_sym__Nullable_result] = ACTIONS(7706), - [anon_sym__Null_unspecified] = ACTIONS(7706), - [anon_sym___autoreleasing] = ACTIONS(7706), - [anon_sym___nullable] = ACTIONS(7706), - [anon_sym___nonnull] = ACTIONS(7706), - [anon_sym___strong] = ACTIONS(7706), - [anon_sym___weak] = ACTIONS(7706), - [anon_sym___bridge] = ACTIONS(7706), - [anon_sym___bridge_transfer] = ACTIONS(7706), - [anon_sym___bridge_retained] = ACTIONS(7706), - [anon_sym___unsafe_unretained] = ACTIONS(7706), - [anon_sym___block] = ACTIONS(7706), - [anon_sym___kindof] = ACTIONS(7706), - [anon_sym___unused] = ACTIONS(7706), - [anon_sym__Complex] = ACTIONS(7706), - [anon_sym___complex] = ACTIONS(7706), - [anon_sym_IBOutlet] = ACTIONS(7706), - [anon_sym_IBInspectable] = ACTIONS(7706), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7706), - [anon_sym_signed] = ACTIONS(7706), - [anon_sym_unsigned] = ACTIONS(7706), - [anon_sym_long] = ACTIONS(7706), - [anon_sym_short] = ACTIONS(7706), - [sym_primitive_type] = ACTIONS(7706), - [anon_sym_enum] = ACTIONS(7706), - [anon_sym_NS_ENUM] = ACTIONS(7706), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7706), - [anon_sym_NS_OPTIONS] = ACTIONS(7706), - [anon_sym_struct] = ACTIONS(7706), - [anon_sym_union] = ACTIONS(7706), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7706), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7706), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7706), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7706), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7706), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7706), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7706), - [anon_sym_NS_AVAILABLE] = ACTIONS(7706), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7706), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7706), - [anon_sym_API_AVAILABLE] = ACTIONS(7706), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7706), - [anon_sym_API_DEPRECATED] = ACTIONS(7706), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7706), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7706), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7706), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7706), - [anon_sym___deprecated_msg] = ACTIONS(7706), - [anon_sym___deprecated_enum_msg] = ACTIONS(7706), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7706), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7706), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7706), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7706), - [anon_sym_typeof] = ACTIONS(7706), - [anon_sym___typeof] = ACTIONS(7706), - [anon_sym___typeof__] = ACTIONS(7706), - [sym_id] = ACTIONS(7706), - [sym_instancetype] = ACTIONS(7706), - [sym_Class] = ACTIONS(7706), - [sym_SEL] = ACTIONS(7706), - [sym_IMP] = ACTIONS(7706), - [sym_BOOL] = ACTIONS(7706), - [sym_auto] = ACTIONS(7706), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3258] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7064), - [anon_sym_PLUS] = ACTIONS(7064), - [anon_sym_STAR] = ACTIONS(7831), - [anon_sym_SLASH] = ACTIONS(7833), - [anon_sym_PERCENT] = ACTIONS(7831), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7066), - [anon_sym_PIPE] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7066), - [anon_sym_AMP] = ACTIONS(7064), - [anon_sym_EQ_EQ] = ACTIONS(7066), - [anon_sym_BANG_EQ] = ACTIONS(7066), - [anon_sym_GT] = ACTIONS(7064), - [anon_sym_GT_EQ] = ACTIONS(7066), - [anon_sym_LT_EQ] = ACTIONS(7066), - [anon_sym_LT] = ACTIONS(7064), - [anon_sym_LT_LT] = ACTIONS(7066), - [anon_sym_GT_GT] = ACTIONS(7066), - [anon_sym_SEMI] = ACTIONS(7066), - [anon_sym___attribute] = ACTIONS(7064), - [anon_sym___attribute__] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7066), - [anon_sym_const] = ACTIONS(7064), - [anon_sym_volatile] = ACTIONS(7064), - [anon_sym_restrict] = ACTIONS(7064), - [anon_sym__Atomic] = ACTIONS(7064), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_out] = ACTIONS(7064), - [anon_sym_inout] = ACTIONS(7064), - [anon_sym_bycopy] = ACTIONS(7064), - [anon_sym_byref] = ACTIONS(7064), - [anon_sym_oneway] = ACTIONS(7064), - [anon_sym__Nullable] = ACTIONS(7064), - [anon_sym__Nonnull] = ACTIONS(7064), - [anon_sym__Nullable_result] = ACTIONS(7064), - [anon_sym__Null_unspecified] = ACTIONS(7064), - [anon_sym___autoreleasing] = ACTIONS(7064), - [anon_sym___nullable] = ACTIONS(7064), - [anon_sym___nonnull] = ACTIONS(7064), - [anon_sym___strong] = ACTIONS(7064), - [anon_sym___weak] = ACTIONS(7064), - [anon_sym___bridge] = ACTIONS(7064), - [anon_sym___bridge_transfer] = ACTIONS(7064), - [anon_sym___bridge_retained] = ACTIONS(7064), - [anon_sym___unsafe_unretained] = ACTIONS(7064), - [anon_sym___block] = ACTIONS(7064), - [anon_sym___kindof] = ACTIONS(7064), - [anon_sym___unused] = ACTIONS(7064), - [anon_sym__Complex] = ACTIONS(7064), - [anon_sym___complex] = ACTIONS(7064), - [anon_sym_IBOutlet] = ACTIONS(7064), - [anon_sym_IBInspectable] = ACTIONS(7064), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7827), - [anon_sym_PLUS_PLUS] = ACTIONS(7827), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7064), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7064), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE] = ACTIONS(7064), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_API_AVAILABLE] = ACTIONS(7064), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_API_DEPRECATED] = ACTIONS(7064), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7064), - [anon_sym___deprecated_msg] = ACTIONS(7064), - [anon_sym___deprecated_enum_msg] = ACTIONS(7064), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7064), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7064), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3259] = { - [sym_identifier] = ACTIONS(7776), - [aux_sym_preproc_def_token1] = ACTIONS(7776), - [aux_sym_preproc_if_token1] = ACTIONS(7776), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7776), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7776), - [sym_preproc_directive] = ACTIONS(7776), - [anon_sym_extern] = ACTIONS(7776), - [anon_sym___attribute] = ACTIONS(7776), - [anon_sym___attribute__] = ACTIONS(7776), - [anon_sym___declspec] = ACTIONS(7776), - [anon_sym_RBRACE] = ACTIONS(7835), - [anon_sym_static] = ACTIONS(7776), - [anon_sym_auto] = ACTIONS(7776), - [anon_sym_register] = ACTIONS(7776), - [anon_sym_inline] = ACTIONS(7776), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7776), - [anon_sym_const] = ACTIONS(7776), - [anon_sym_volatile] = ACTIONS(7776), - [anon_sym_restrict] = ACTIONS(7776), - [anon_sym__Atomic] = ACTIONS(7776), - [anon_sym_in] = ACTIONS(7776), - [anon_sym_out] = ACTIONS(7776), - [anon_sym_inout] = ACTIONS(7776), - [anon_sym_bycopy] = ACTIONS(7776), - [anon_sym_byref] = ACTIONS(7776), - [anon_sym_oneway] = ACTIONS(7776), - [anon_sym__Nullable] = ACTIONS(7776), - [anon_sym__Nonnull] = ACTIONS(7776), - [anon_sym__Nullable_result] = ACTIONS(7776), - [anon_sym__Null_unspecified] = ACTIONS(7776), - [anon_sym___autoreleasing] = ACTIONS(7776), - [anon_sym___nullable] = ACTIONS(7776), - [anon_sym___nonnull] = ACTIONS(7776), - [anon_sym___strong] = ACTIONS(7776), - [anon_sym___weak] = ACTIONS(7776), - [anon_sym___bridge] = ACTIONS(7776), - [anon_sym___bridge_transfer] = ACTIONS(7776), - [anon_sym___bridge_retained] = ACTIONS(7776), - [anon_sym___unsafe_unretained] = ACTIONS(7776), - [anon_sym___block] = ACTIONS(7776), - [anon_sym___kindof] = ACTIONS(7776), - [anon_sym___unused] = ACTIONS(7776), - [anon_sym__Complex] = ACTIONS(7776), - [anon_sym___complex] = ACTIONS(7776), - [anon_sym_IBOutlet] = ACTIONS(7776), - [anon_sym_IBInspectable] = ACTIONS(7776), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7776), - [anon_sym_signed] = ACTIONS(7776), - [anon_sym_unsigned] = ACTIONS(7776), - [anon_sym_long] = ACTIONS(7776), - [anon_sym_short] = ACTIONS(7776), - [sym_primitive_type] = ACTIONS(7776), - [anon_sym_enum] = ACTIONS(7776), - [anon_sym_NS_ENUM] = ACTIONS(7776), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7776), - [anon_sym_NS_OPTIONS] = ACTIONS(7776), - [anon_sym_struct] = ACTIONS(7776), - [anon_sym_union] = ACTIONS(7776), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7776), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7776), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7776), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7776), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7776), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7776), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7776), - [anon_sym_NS_AVAILABLE] = ACTIONS(7776), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7776), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7776), - [anon_sym_API_AVAILABLE] = ACTIONS(7776), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7776), - [anon_sym_API_DEPRECATED] = ACTIONS(7776), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7776), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7776), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7776), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7776), - [anon_sym___deprecated_msg] = ACTIONS(7776), - [anon_sym___deprecated_enum_msg] = ACTIONS(7776), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7776), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7776), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7776), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7776), - [anon_sym_typeof] = ACTIONS(7776), - [anon_sym___typeof] = ACTIONS(7776), - [anon_sym___typeof__] = ACTIONS(7776), - [sym_id] = ACTIONS(7776), - [sym_instancetype] = ACTIONS(7776), - [sym_Class] = ACTIONS(7776), - [sym_SEL] = ACTIONS(7776), - [sym_IMP] = ACTIONS(7776), - [sym_BOOL] = ACTIONS(7776), - [sym_auto] = ACTIONS(7776), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3260] = { - [sym_identifier] = ACTIONS(1890), - [aux_sym_preproc_def_token1] = ACTIONS(1890), - [aux_sym_preproc_if_token1] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1890), - [sym_preproc_directive] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym___attribute] = ACTIONS(1890), - [anon_sym___attribute__] = ACTIONS(1890), - [anon_sym___declspec] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1890), - [anon_sym_auto] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_inline] = ACTIONS(1890), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [anon_sym_volatile] = ACTIONS(1890), - [anon_sym_restrict] = ACTIONS(1890), - [anon_sym__Atomic] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(1890), - [anon_sym_out] = ACTIONS(1890), - [anon_sym_inout] = ACTIONS(1890), - [anon_sym_bycopy] = ACTIONS(1890), - [anon_sym_byref] = ACTIONS(1890), - [anon_sym_oneway] = ACTIONS(1890), - [anon_sym__Nullable] = ACTIONS(1890), - [anon_sym__Nonnull] = ACTIONS(1890), - [anon_sym__Nullable_result] = ACTIONS(1890), - [anon_sym__Null_unspecified] = ACTIONS(1890), - [anon_sym___autoreleasing] = ACTIONS(1890), - [anon_sym___nullable] = ACTIONS(1890), - [anon_sym___nonnull] = ACTIONS(1890), - [anon_sym___strong] = ACTIONS(1890), - [anon_sym___weak] = ACTIONS(1890), - [anon_sym___bridge] = ACTIONS(1890), - [anon_sym___bridge_transfer] = ACTIONS(1890), - [anon_sym___bridge_retained] = ACTIONS(1890), - [anon_sym___unsafe_unretained] = ACTIONS(1890), - [anon_sym___block] = ACTIONS(1890), - [anon_sym___kindof] = ACTIONS(1890), - [anon_sym___unused] = ACTIONS(1890), - [anon_sym__Complex] = ACTIONS(1890), - [anon_sym___complex] = ACTIONS(1890), - [anon_sym_IBOutlet] = ACTIONS(1890), - [anon_sym_IBInspectable] = ACTIONS(1890), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1890), - [anon_sym_signed] = ACTIONS(1890), - [anon_sym_unsigned] = ACTIONS(1890), - [anon_sym_long] = ACTIONS(1890), - [anon_sym_short] = ACTIONS(1890), - [sym_primitive_type] = ACTIONS(1890), - [anon_sym_enum] = ACTIONS(1890), - [anon_sym_NS_ENUM] = ACTIONS(1890), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1890), - [anon_sym_NS_OPTIONS] = ACTIONS(1890), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1890), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(1890), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1890), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1890), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1890), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1890), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1890), - [anon_sym_NS_AVAILABLE] = ACTIONS(1890), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1890), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_API_AVAILABLE] = ACTIONS(1890), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_API_DEPRECATED] = ACTIONS(1890), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1890), - [anon_sym___deprecated_msg] = ACTIONS(1890), - [anon_sym___deprecated_enum_msg] = ACTIONS(1890), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_typeof] = ACTIONS(1890), - [anon_sym___typeof] = ACTIONS(1890), - [anon_sym___typeof__] = ACTIONS(1890), - [sym_id] = ACTIONS(1890), - [sym_instancetype] = ACTIONS(1890), - [sym_Class] = ACTIONS(1890), - [sym_SEL] = ACTIONS(1890), - [sym_IMP] = ACTIONS(1890), - [sym_BOOL] = ACTIONS(1890), - [sym_auto] = ACTIONS(1890), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3261] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7098), - [anon_sym_COMMA] = ACTIONS(7100), - [anon_sym_RPAREN] = ACTIONS(7100), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7837), - [anon_sym_PLUS] = ACTIONS(7837), - [anon_sym_STAR] = ACTIONS(7831), - [anon_sym_SLASH] = ACTIONS(7833), - [anon_sym_PERCENT] = ACTIONS(7831), - [anon_sym_PIPE_PIPE] = ACTIONS(7100), - [anon_sym_AMP_AMP] = ACTIONS(7100), - [anon_sym_PIPE] = ACTIONS(7098), - [anon_sym_CARET] = ACTIONS(7100), - [anon_sym_AMP] = ACTIONS(7098), - [anon_sym_EQ_EQ] = ACTIONS(7100), - [anon_sym_BANG_EQ] = ACTIONS(7100), - [anon_sym_GT] = ACTIONS(7098), - [anon_sym_GT_EQ] = ACTIONS(7100), - [anon_sym_LT_EQ] = ACTIONS(7100), - [anon_sym_LT] = ACTIONS(7098), - [anon_sym_LT_LT] = ACTIONS(7839), - [anon_sym_GT_GT] = ACTIONS(7839), - [anon_sym_SEMI] = ACTIONS(7100), - [anon_sym___attribute] = ACTIONS(7098), - [anon_sym___attribute__] = ACTIONS(7098), - [anon_sym_RBRACE] = ACTIONS(7100), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7100), - [anon_sym_const] = ACTIONS(7098), - [anon_sym_volatile] = ACTIONS(7098), - [anon_sym_restrict] = ACTIONS(7098), - [anon_sym__Atomic] = ACTIONS(7098), - [anon_sym_in] = ACTIONS(7098), - [anon_sym_out] = ACTIONS(7098), - [anon_sym_inout] = ACTIONS(7098), - [anon_sym_bycopy] = ACTIONS(7098), - [anon_sym_byref] = ACTIONS(7098), - [anon_sym_oneway] = ACTIONS(7098), - [anon_sym__Nullable] = ACTIONS(7098), - [anon_sym__Nonnull] = ACTIONS(7098), - [anon_sym__Nullable_result] = ACTIONS(7098), - [anon_sym__Null_unspecified] = ACTIONS(7098), - [anon_sym___autoreleasing] = ACTIONS(7098), - [anon_sym___nullable] = ACTIONS(7098), - [anon_sym___nonnull] = ACTIONS(7098), - [anon_sym___strong] = ACTIONS(7098), - [anon_sym___weak] = ACTIONS(7098), - [anon_sym___bridge] = ACTIONS(7098), - [anon_sym___bridge_transfer] = ACTIONS(7098), - [anon_sym___bridge_retained] = ACTIONS(7098), - [anon_sym___unsafe_unretained] = ACTIONS(7098), - [anon_sym___block] = ACTIONS(7098), - [anon_sym___kindof] = ACTIONS(7098), - [anon_sym___unused] = ACTIONS(7098), - [anon_sym__Complex] = ACTIONS(7098), - [anon_sym___complex] = ACTIONS(7098), - [anon_sym_IBOutlet] = ACTIONS(7098), - [anon_sym_IBInspectable] = ACTIONS(7098), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7098), - [anon_sym_COLON] = ACTIONS(7100), - [anon_sym_QMARK] = ACTIONS(7100), - [anon_sym_DASH_DASH] = ACTIONS(7827), - [anon_sym_PLUS_PLUS] = ACTIONS(7827), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7098), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7098), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7098), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7098), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7098), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7098), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7098), - [anon_sym_NS_AVAILABLE] = ACTIONS(7098), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7098), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7098), - [anon_sym_API_AVAILABLE] = ACTIONS(7098), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7098), - [anon_sym_API_DEPRECATED] = ACTIONS(7098), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7098), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7098), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7098), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7098), - [anon_sym___deprecated_msg] = ACTIONS(7098), - [anon_sym___deprecated_enum_msg] = ACTIONS(7098), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7098), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7098), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7098), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7098), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7098), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7098), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3262] = { - [sym_identifier] = ACTIONS(7742), - [aux_sym_preproc_def_token1] = ACTIONS(7742), - [aux_sym_preproc_if_token1] = ACTIONS(7742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7742), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7742), - [sym_preproc_directive] = ACTIONS(7742), - [anon_sym_extern] = ACTIONS(7742), - [anon_sym___attribute] = ACTIONS(7742), - [anon_sym___attribute__] = ACTIONS(7742), - [anon_sym___declspec] = ACTIONS(7742), - [anon_sym_RBRACE] = ACTIONS(7841), - [anon_sym_static] = ACTIONS(7742), - [anon_sym_auto] = ACTIONS(7742), - [anon_sym_register] = ACTIONS(7742), - [anon_sym_inline] = ACTIONS(7742), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7742), - [anon_sym_const] = ACTIONS(7742), - [anon_sym_volatile] = ACTIONS(7742), - [anon_sym_restrict] = ACTIONS(7742), - [anon_sym__Atomic] = ACTIONS(7742), - [anon_sym_in] = ACTIONS(7742), - [anon_sym_out] = ACTIONS(7742), - [anon_sym_inout] = ACTIONS(7742), - [anon_sym_bycopy] = ACTIONS(7742), - [anon_sym_byref] = ACTIONS(7742), - [anon_sym_oneway] = ACTIONS(7742), - [anon_sym__Nullable] = ACTIONS(7742), - [anon_sym__Nonnull] = ACTIONS(7742), - [anon_sym__Nullable_result] = ACTIONS(7742), - [anon_sym__Null_unspecified] = ACTIONS(7742), - [anon_sym___autoreleasing] = ACTIONS(7742), - [anon_sym___nullable] = ACTIONS(7742), - [anon_sym___nonnull] = ACTIONS(7742), - [anon_sym___strong] = ACTIONS(7742), - [anon_sym___weak] = ACTIONS(7742), - [anon_sym___bridge] = ACTIONS(7742), - [anon_sym___bridge_transfer] = ACTIONS(7742), - [anon_sym___bridge_retained] = ACTIONS(7742), - [anon_sym___unsafe_unretained] = ACTIONS(7742), - [anon_sym___block] = ACTIONS(7742), - [anon_sym___kindof] = ACTIONS(7742), - [anon_sym___unused] = ACTIONS(7742), - [anon_sym__Complex] = ACTIONS(7742), - [anon_sym___complex] = ACTIONS(7742), - [anon_sym_IBOutlet] = ACTIONS(7742), - [anon_sym_IBInspectable] = ACTIONS(7742), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7742), - [anon_sym_signed] = ACTIONS(7742), - [anon_sym_unsigned] = ACTIONS(7742), - [anon_sym_long] = ACTIONS(7742), - [anon_sym_short] = ACTIONS(7742), - [sym_primitive_type] = ACTIONS(7742), - [anon_sym_enum] = ACTIONS(7742), - [anon_sym_NS_ENUM] = ACTIONS(7742), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7742), - [anon_sym_NS_OPTIONS] = ACTIONS(7742), - [anon_sym_struct] = ACTIONS(7742), - [anon_sym_union] = ACTIONS(7742), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7742), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7742), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7742), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7742), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7742), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7742), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7742), - [anon_sym_NS_AVAILABLE] = ACTIONS(7742), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7742), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7742), - [anon_sym_API_AVAILABLE] = ACTIONS(7742), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7742), - [anon_sym_API_DEPRECATED] = ACTIONS(7742), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7742), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7742), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7742), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7742), - [anon_sym___deprecated_msg] = ACTIONS(7742), - [anon_sym___deprecated_enum_msg] = ACTIONS(7742), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7742), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7742), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7742), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7742), - [anon_sym_typeof] = ACTIONS(7742), - [anon_sym___typeof] = ACTIONS(7742), - [anon_sym___typeof__] = ACTIONS(7742), - [sym_id] = ACTIONS(7742), - [sym_instancetype] = ACTIONS(7742), - [sym_Class] = ACTIONS(7742), - [sym_SEL] = ACTIONS(7742), - [sym_IMP] = ACTIONS(7742), - [sym_BOOL] = ACTIONS(7742), - [sym_auto] = ACTIONS(7742), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3263] = { - [sym_identifier] = ACTIONS(7738), - [aux_sym_preproc_def_token1] = ACTIONS(7738), - [aux_sym_preproc_if_token1] = ACTIONS(7738), - [aux_sym_preproc_if_token2] = ACTIONS(7738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7738), - [sym_preproc_directive] = ACTIONS(7738), - [anon_sym_extern] = ACTIONS(7738), - [anon_sym___attribute] = ACTIONS(7738), - [anon_sym___attribute__] = ACTIONS(7738), - [anon_sym___declspec] = ACTIONS(7738), - [anon_sym_static] = ACTIONS(7738), - [anon_sym_auto] = ACTIONS(7738), - [anon_sym_register] = ACTIONS(7738), - [anon_sym_inline] = ACTIONS(7738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7738), - [anon_sym_const] = ACTIONS(7738), - [anon_sym_volatile] = ACTIONS(7738), - [anon_sym_restrict] = ACTIONS(7738), - [anon_sym__Atomic] = ACTIONS(7738), - [anon_sym_in] = ACTIONS(7738), - [anon_sym_out] = ACTIONS(7738), - [anon_sym_inout] = ACTIONS(7738), - [anon_sym_bycopy] = ACTIONS(7738), - [anon_sym_byref] = ACTIONS(7738), - [anon_sym_oneway] = ACTIONS(7738), - [anon_sym__Nullable] = ACTIONS(7738), - [anon_sym__Nonnull] = ACTIONS(7738), - [anon_sym__Nullable_result] = ACTIONS(7738), - [anon_sym__Null_unspecified] = ACTIONS(7738), - [anon_sym___autoreleasing] = ACTIONS(7738), - [anon_sym___nullable] = ACTIONS(7738), - [anon_sym___nonnull] = ACTIONS(7738), - [anon_sym___strong] = ACTIONS(7738), - [anon_sym___weak] = ACTIONS(7738), - [anon_sym___bridge] = ACTIONS(7738), - [anon_sym___bridge_transfer] = ACTIONS(7738), - [anon_sym___bridge_retained] = ACTIONS(7738), - [anon_sym___unsafe_unretained] = ACTIONS(7738), - [anon_sym___block] = ACTIONS(7738), - [anon_sym___kindof] = ACTIONS(7738), - [anon_sym___unused] = ACTIONS(7738), - [anon_sym__Complex] = ACTIONS(7738), - [anon_sym___complex] = ACTIONS(7738), - [anon_sym_IBOutlet] = ACTIONS(7738), - [anon_sym_IBInspectable] = ACTIONS(7738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7738), - [anon_sym_signed] = ACTIONS(7738), - [anon_sym_unsigned] = ACTIONS(7738), - [anon_sym_long] = ACTIONS(7738), - [anon_sym_short] = ACTIONS(7738), - [sym_primitive_type] = ACTIONS(7738), - [anon_sym_enum] = ACTIONS(7738), - [anon_sym_NS_ENUM] = ACTIONS(7738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7738), - [anon_sym_NS_OPTIONS] = ACTIONS(7738), - [anon_sym_struct] = ACTIONS(7738), - [anon_sym_union] = ACTIONS(7738), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7738), - [anon_sym_NS_AVAILABLE] = ACTIONS(7738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7738), - [anon_sym_API_AVAILABLE] = ACTIONS(7738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7738), - [anon_sym_API_DEPRECATED] = ACTIONS(7738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7738), - [anon_sym___deprecated_msg] = ACTIONS(7738), - [anon_sym___deprecated_enum_msg] = ACTIONS(7738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7738), - [anon_sym_typeof] = ACTIONS(7738), - [anon_sym___typeof] = ACTIONS(7738), - [anon_sym___typeof__] = ACTIONS(7738), - [sym_id] = ACTIONS(7738), - [sym_instancetype] = ACTIONS(7738), - [sym_Class] = ACTIONS(7738), - [sym_SEL] = ACTIONS(7738), - [sym_IMP] = ACTIONS(7738), - [sym_BOOL] = ACTIONS(7738), - [sym_auto] = ACTIONS(7738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3264] = { - [sym_identifier] = ACTIONS(7708), - [aux_sym_preproc_def_token1] = ACTIONS(7708), - [aux_sym_preproc_if_token1] = ACTIONS(7708), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7708), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7708), - [sym_preproc_directive] = ACTIONS(7708), - [anon_sym_extern] = ACTIONS(7708), - [anon_sym___attribute] = ACTIONS(7708), - [anon_sym___attribute__] = ACTIONS(7708), - [anon_sym___declspec] = ACTIONS(7708), - [anon_sym_RBRACE] = ACTIONS(7843), - [anon_sym_static] = ACTIONS(7708), - [anon_sym_auto] = ACTIONS(7708), - [anon_sym_register] = ACTIONS(7708), - [anon_sym_inline] = ACTIONS(7708), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7708), - [anon_sym_const] = ACTIONS(7708), - [anon_sym_volatile] = ACTIONS(7708), - [anon_sym_restrict] = ACTIONS(7708), - [anon_sym__Atomic] = ACTIONS(7708), - [anon_sym_in] = ACTIONS(7708), - [anon_sym_out] = ACTIONS(7708), - [anon_sym_inout] = ACTIONS(7708), - [anon_sym_bycopy] = ACTIONS(7708), - [anon_sym_byref] = ACTIONS(7708), - [anon_sym_oneway] = ACTIONS(7708), - [anon_sym__Nullable] = ACTIONS(7708), - [anon_sym__Nonnull] = ACTIONS(7708), - [anon_sym__Nullable_result] = ACTIONS(7708), - [anon_sym__Null_unspecified] = ACTIONS(7708), - [anon_sym___autoreleasing] = ACTIONS(7708), - [anon_sym___nullable] = ACTIONS(7708), - [anon_sym___nonnull] = ACTIONS(7708), - [anon_sym___strong] = ACTIONS(7708), - [anon_sym___weak] = ACTIONS(7708), - [anon_sym___bridge] = ACTIONS(7708), - [anon_sym___bridge_transfer] = ACTIONS(7708), - [anon_sym___bridge_retained] = ACTIONS(7708), - [anon_sym___unsafe_unretained] = ACTIONS(7708), - [anon_sym___block] = ACTIONS(7708), - [anon_sym___kindof] = ACTIONS(7708), - [anon_sym___unused] = ACTIONS(7708), - [anon_sym__Complex] = ACTIONS(7708), - [anon_sym___complex] = ACTIONS(7708), - [anon_sym_IBOutlet] = ACTIONS(7708), - [anon_sym_IBInspectable] = ACTIONS(7708), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7708), - [anon_sym_signed] = ACTIONS(7708), - [anon_sym_unsigned] = ACTIONS(7708), - [anon_sym_long] = ACTIONS(7708), - [anon_sym_short] = ACTIONS(7708), - [sym_primitive_type] = ACTIONS(7708), - [anon_sym_enum] = ACTIONS(7708), - [anon_sym_NS_ENUM] = ACTIONS(7708), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7708), - [anon_sym_NS_OPTIONS] = ACTIONS(7708), - [anon_sym_struct] = ACTIONS(7708), - [anon_sym_union] = ACTIONS(7708), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7708), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7708), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7708), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7708), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7708), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7708), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7708), - [anon_sym_NS_AVAILABLE] = ACTIONS(7708), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7708), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7708), - [anon_sym_API_AVAILABLE] = ACTIONS(7708), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7708), - [anon_sym_API_DEPRECATED] = ACTIONS(7708), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7708), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7708), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7708), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7708), - [anon_sym___deprecated_msg] = ACTIONS(7708), - [anon_sym___deprecated_enum_msg] = ACTIONS(7708), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7708), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7708), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7708), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7708), - [anon_sym_typeof] = ACTIONS(7708), - [anon_sym___typeof] = ACTIONS(7708), - [anon_sym___typeof__] = ACTIONS(7708), - [sym_id] = ACTIONS(7708), - [sym_instancetype] = ACTIONS(7708), - [sym_Class] = ACTIONS(7708), - [sym_SEL] = ACTIONS(7708), - [sym_IMP] = ACTIONS(7708), - [sym_BOOL] = ACTIONS(7708), - [sym_auto] = ACTIONS(7708), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3265] = { + [3201] = { [sym_identifier] = ACTIONS(7736), [aux_sym_preproc_def_token1] = ACTIONS(7736), [aux_sym_preproc_if_token1] = ACTIONS(7736), @@ -519515,7 +510688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute] = ACTIONS(7736), [anon_sym___attribute__] = ACTIONS(7736), [anon_sym___declspec] = ACTIONS(7736), - [anon_sym_RBRACE] = ACTIONS(7845), + [anon_sym_RBRACE] = ACTIONS(7803), [anon_sym_static] = ACTIONS(7736), [anon_sym_auto] = ACTIONS(7736), [anon_sym_register] = ACTIONS(7736), @@ -519558,9 +510731,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7736), [sym_primitive_type] = ACTIONS(7736), [anon_sym_enum] = ACTIONS(7736), - [anon_sym_NS_ENUM] = ACTIONS(7736), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7736), - [anon_sym_NS_OPTIONS] = ACTIONS(7736), [anon_sym_struct] = ACTIONS(7736), [anon_sym_union] = ACTIONS(7736), [sym_comment] = ACTIONS(3), @@ -519587,6 +510757,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7736), [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7736), [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7736), + [anon_sym_NS_ENUM] = ACTIONS(7736), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7736), + [anon_sym_NS_OPTIONS] = ACTIONS(7736), [anon_sym_typeof] = ACTIONS(7736), [anon_sym___typeof] = ACTIONS(7736), [anon_sym___typeof__] = ACTIONS(7736), @@ -519604,7 +510777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(5), }, - [3266] = { + [3202] = { [sym_identifier] = ACTIONS(7716), [aux_sym_preproc_def_token1] = ACTIONS(7716), [aux_sym_preproc_if_token1] = ACTIONS(7716), @@ -519615,7 +510788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute] = ACTIONS(7716), [anon_sym___attribute__] = ACTIONS(7716), [anon_sym___declspec] = ACTIONS(7716), - [anon_sym_RBRACE] = ACTIONS(7847), + [anon_sym_RBRACE] = ACTIONS(7805), [anon_sym_static] = ACTIONS(7716), [anon_sym_auto] = ACTIONS(7716), [anon_sym_register] = ACTIONS(7716), @@ -519658,9 +510831,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7716), [sym_primitive_type] = ACTIONS(7716), [anon_sym_enum] = ACTIONS(7716), - [anon_sym_NS_ENUM] = ACTIONS(7716), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7716), - [anon_sym_NS_OPTIONS] = ACTIONS(7716), [anon_sym_struct] = ACTIONS(7716), [anon_sym_union] = ACTIONS(7716), [sym_comment] = ACTIONS(3), @@ -519687,1206 +510857,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7716), [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7716), [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7716), - [anon_sym_typeof] = ACTIONS(7716), - [anon_sym___typeof] = ACTIONS(7716), - [anon_sym___typeof__] = ACTIONS(7716), - [sym_id] = ACTIONS(7716), - [sym_instancetype] = ACTIONS(7716), - [sym_Class] = ACTIONS(7716), - [sym_SEL] = ACTIONS(7716), - [sym_IMP] = ACTIONS(7716), - [sym_BOOL] = ACTIONS(7716), - [sym_auto] = ACTIONS(7716), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3267] = { - [sym_identifier] = ACTIONS(7772), - [aux_sym_preproc_def_token1] = ACTIONS(7772), - [aux_sym_preproc_if_token1] = ACTIONS(7772), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7772), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7772), - [sym_preproc_directive] = ACTIONS(7772), - [anon_sym_extern] = ACTIONS(7772), - [anon_sym___attribute] = ACTIONS(7772), - [anon_sym___attribute__] = ACTIONS(7772), - [anon_sym___declspec] = ACTIONS(7772), - [anon_sym_RBRACE] = ACTIONS(7849), - [anon_sym_static] = ACTIONS(7772), - [anon_sym_auto] = ACTIONS(7772), - [anon_sym_register] = ACTIONS(7772), - [anon_sym_inline] = ACTIONS(7772), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7772), - [anon_sym_const] = ACTIONS(7772), - [anon_sym_volatile] = ACTIONS(7772), - [anon_sym_restrict] = ACTIONS(7772), - [anon_sym__Atomic] = ACTIONS(7772), - [anon_sym_in] = ACTIONS(7772), - [anon_sym_out] = ACTIONS(7772), - [anon_sym_inout] = ACTIONS(7772), - [anon_sym_bycopy] = ACTIONS(7772), - [anon_sym_byref] = ACTIONS(7772), - [anon_sym_oneway] = ACTIONS(7772), - [anon_sym__Nullable] = ACTIONS(7772), - [anon_sym__Nonnull] = ACTIONS(7772), - [anon_sym__Nullable_result] = ACTIONS(7772), - [anon_sym__Null_unspecified] = ACTIONS(7772), - [anon_sym___autoreleasing] = ACTIONS(7772), - [anon_sym___nullable] = ACTIONS(7772), - [anon_sym___nonnull] = ACTIONS(7772), - [anon_sym___strong] = ACTIONS(7772), - [anon_sym___weak] = ACTIONS(7772), - [anon_sym___bridge] = ACTIONS(7772), - [anon_sym___bridge_transfer] = ACTIONS(7772), - [anon_sym___bridge_retained] = ACTIONS(7772), - [anon_sym___unsafe_unretained] = ACTIONS(7772), - [anon_sym___block] = ACTIONS(7772), - [anon_sym___kindof] = ACTIONS(7772), - [anon_sym___unused] = ACTIONS(7772), - [anon_sym__Complex] = ACTIONS(7772), - [anon_sym___complex] = ACTIONS(7772), - [anon_sym_IBOutlet] = ACTIONS(7772), - [anon_sym_IBInspectable] = ACTIONS(7772), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7772), - [anon_sym_signed] = ACTIONS(7772), - [anon_sym_unsigned] = ACTIONS(7772), - [anon_sym_long] = ACTIONS(7772), - [anon_sym_short] = ACTIONS(7772), - [sym_primitive_type] = ACTIONS(7772), - [anon_sym_enum] = ACTIONS(7772), - [anon_sym_NS_ENUM] = ACTIONS(7772), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7772), - [anon_sym_NS_OPTIONS] = ACTIONS(7772), - [anon_sym_struct] = ACTIONS(7772), - [anon_sym_union] = ACTIONS(7772), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7772), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7772), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7772), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7772), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7772), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7772), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7772), - [anon_sym_NS_AVAILABLE] = ACTIONS(7772), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7772), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7772), - [anon_sym_API_AVAILABLE] = ACTIONS(7772), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7772), - [anon_sym_API_DEPRECATED] = ACTIONS(7772), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7772), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7772), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7772), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7772), - [anon_sym___deprecated_msg] = ACTIONS(7772), - [anon_sym___deprecated_enum_msg] = ACTIONS(7772), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7772), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7772), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7772), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7772), - [anon_sym_typeof] = ACTIONS(7772), - [anon_sym___typeof] = ACTIONS(7772), - [anon_sym___typeof__] = ACTIONS(7772), - [sym_id] = ACTIONS(7772), - [sym_instancetype] = ACTIONS(7772), - [sym_Class] = ACTIONS(7772), - [sym_SEL] = ACTIONS(7772), - [sym_IMP] = ACTIONS(7772), - [sym_BOOL] = ACTIONS(7772), - [sym_auto] = ACTIONS(7772), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3268] = { - [sym_identifier] = ACTIONS(7786), - [aux_sym_preproc_def_token1] = ACTIONS(7786), - [aux_sym_preproc_if_token1] = ACTIONS(7786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7786), - [sym_preproc_directive] = ACTIONS(7786), - [anon_sym_extern] = ACTIONS(7786), - [anon_sym___attribute] = ACTIONS(7786), - [anon_sym___attribute__] = ACTIONS(7786), - [anon_sym___declspec] = ACTIONS(7786), - [anon_sym_RBRACE] = ACTIONS(7851), - [anon_sym_static] = ACTIONS(7786), - [anon_sym_auto] = ACTIONS(7786), - [anon_sym_register] = ACTIONS(7786), - [anon_sym_inline] = ACTIONS(7786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7786), - [anon_sym_const] = ACTIONS(7786), - [anon_sym_volatile] = ACTIONS(7786), - [anon_sym_restrict] = ACTIONS(7786), - [anon_sym__Atomic] = ACTIONS(7786), - [anon_sym_in] = ACTIONS(7786), - [anon_sym_out] = ACTIONS(7786), - [anon_sym_inout] = ACTIONS(7786), - [anon_sym_bycopy] = ACTIONS(7786), - [anon_sym_byref] = ACTIONS(7786), - [anon_sym_oneway] = ACTIONS(7786), - [anon_sym__Nullable] = ACTIONS(7786), - [anon_sym__Nonnull] = ACTIONS(7786), - [anon_sym__Nullable_result] = ACTIONS(7786), - [anon_sym__Null_unspecified] = ACTIONS(7786), - [anon_sym___autoreleasing] = ACTIONS(7786), - [anon_sym___nullable] = ACTIONS(7786), - [anon_sym___nonnull] = ACTIONS(7786), - [anon_sym___strong] = ACTIONS(7786), - [anon_sym___weak] = ACTIONS(7786), - [anon_sym___bridge] = ACTIONS(7786), - [anon_sym___bridge_transfer] = ACTIONS(7786), - [anon_sym___bridge_retained] = ACTIONS(7786), - [anon_sym___unsafe_unretained] = ACTIONS(7786), - [anon_sym___block] = ACTIONS(7786), - [anon_sym___kindof] = ACTIONS(7786), - [anon_sym___unused] = ACTIONS(7786), - [anon_sym__Complex] = ACTIONS(7786), - [anon_sym___complex] = ACTIONS(7786), - [anon_sym_IBOutlet] = ACTIONS(7786), - [anon_sym_IBInspectable] = ACTIONS(7786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7786), - [anon_sym_signed] = ACTIONS(7786), - [anon_sym_unsigned] = ACTIONS(7786), - [anon_sym_long] = ACTIONS(7786), - [anon_sym_short] = ACTIONS(7786), - [sym_primitive_type] = ACTIONS(7786), - [anon_sym_enum] = ACTIONS(7786), - [anon_sym_NS_ENUM] = ACTIONS(7786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7786), - [anon_sym_NS_OPTIONS] = ACTIONS(7786), - [anon_sym_struct] = ACTIONS(7786), - [anon_sym_union] = ACTIONS(7786), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7786), - [anon_sym_NS_AVAILABLE] = ACTIONS(7786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7786), - [anon_sym_API_AVAILABLE] = ACTIONS(7786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7786), - [anon_sym_API_DEPRECATED] = ACTIONS(7786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7786), - [anon_sym___deprecated_msg] = ACTIONS(7786), - [anon_sym___deprecated_enum_msg] = ACTIONS(7786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7786), - [anon_sym_typeof] = ACTIONS(7786), - [anon_sym___typeof] = ACTIONS(7786), - [anon_sym___typeof__] = ACTIONS(7786), - [sym_id] = ACTIONS(7786), - [sym_instancetype] = ACTIONS(7786), - [sym_Class] = ACTIONS(7786), - [sym_SEL] = ACTIONS(7786), - [sym_IMP] = ACTIONS(7786), - [sym_BOOL] = ACTIONS(7786), - [sym_auto] = ACTIONS(7786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3269] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7064), - [anon_sym_PLUS] = ACTIONS(7064), - [anon_sym_STAR] = ACTIONS(7066), - [anon_sym_SLASH] = ACTIONS(7064), - [anon_sym_PERCENT] = ACTIONS(7066), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7066), - [anon_sym_PIPE] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7066), - [anon_sym_AMP] = ACTIONS(7064), - [anon_sym_EQ_EQ] = ACTIONS(7066), - [anon_sym_BANG_EQ] = ACTIONS(7066), - [anon_sym_GT] = ACTIONS(7064), - [anon_sym_GT_EQ] = ACTIONS(7066), - [anon_sym_LT_EQ] = ACTIONS(7066), - [anon_sym_LT] = ACTIONS(7064), - [anon_sym_LT_LT] = ACTIONS(7066), - [anon_sym_GT_GT] = ACTIONS(7066), - [anon_sym_SEMI] = ACTIONS(7066), - [anon_sym___attribute] = ACTIONS(7064), - [anon_sym___attribute__] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7066), - [anon_sym_const] = ACTIONS(7064), - [anon_sym_volatile] = ACTIONS(7064), - [anon_sym_restrict] = ACTIONS(7064), - [anon_sym__Atomic] = ACTIONS(7064), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_out] = ACTIONS(7064), - [anon_sym_inout] = ACTIONS(7064), - [anon_sym_bycopy] = ACTIONS(7064), - [anon_sym_byref] = ACTIONS(7064), - [anon_sym_oneway] = ACTIONS(7064), - [anon_sym__Nullable] = ACTIONS(7064), - [anon_sym__Nonnull] = ACTIONS(7064), - [anon_sym__Nullable_result] = ACTIONS(7064), - [anon_sym__Null_unspecified] = ACTIONS(7064), - [anon_sym___autoreleasing] = ACTIONS(7064), - [anon_sym___nullable] = ACTIONS(7064), - [anon_sym___nonnull] = ACTIONS(7064), - [anon_sym___strong] = ACTIONS(7064), - [anon_sym___weak] = ACTIONS(7064), - [anon_sym___bridge] = ACTIONS(7064), - [anon_sym___bridge_transfer] = ACTIONS(7064), - [anon_sym___bridge_retained] = ACTIONS(7064), - [anon_sym___unsafe_unretained] = ACTIONS(7064), - [anon_sym___block] = ACTIONS(7064), - [anon_sym___kindof] = ACTIONS(7064), - [anon_sym___unused] = ACTIONS(7064), - [anon_sym__Complex] = ACTIONS(7064), - [anon_sym___complex] = ACTIONS(7064), - [anon_sym_IBOutlet] = ACTIONS(7064), - [anon_sym_IBInspectable] = ACTIONS(7064), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7827), - [anon_sym_PLUS_PLUS] = ACTIONS(7827), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7064), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7064), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE] = ACTIONS(7064), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_API_AVAILABLE] = ACTIONS(7064), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_API_DEPRECATED] = ACTIONS(7064), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7064), - [anon_sym___deprecated_msg] = ACTIONS(7064), - [anon_sym___deprecated_enum_msg] = ACTIONS(7064), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7064), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7064), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3270] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7837), - [anon_sym_PLUS] = ACTIONS(7837), - [anon_sym_STAR] = ACTIONS(7831), - [anon_sym_SLASH] = ACTIONS(7833), - [anon_sym_PERCENT] = ACTIONS(7831), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7853), - [anon_sym_PIPE] = ACTIONS(7855), - [anon_sym_CARET] = ACTIONS(7857), - [anon_sym_AMP] = ACTIONS(7859), - [anon_sym_EQ_EQ] = ACTIONS(7861), - [anon_sym_BANG_EQ] = ACTIONS(7861), - [anon_sym_GT] = ACTIONS(7863), - [anon_sym_GT_EQ] = ACTIONS(7865), - [anon_sym_LT_EQ] = ACTIONS(7865), - [anon_sym_LT] = ACTIONS(7863), - [anon_sym_LT_LT] = ACTIONS(7839), - [anon_sym_GT_GT] = ACTIONS(7839), - [anon_sym_SEMI] = ACTIONS(7066), - [anon_sym___attribute] = ACTIONS(7064), - [anon_sym___attribute__] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7066), - [anon_sym_const] = ACTIONS(7064), - [anon_sym_volatile] = ACTIONS(7064), - [anon_sym_restrict] = ACTIONS(7064), - [anon_sym__Atomic] = ACTIONS(7064), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_out] = ACTIONS(7064), - [anon_sym_inout] = ACTIONS(7064), - [anon_sym_bycopy] = ACTIONS(7064), - [anon_sym_byref] = ACTIONS(7064), - [anon_sym_oneway] = ACTIONS(7064), - [anon_sym__Nullable] = ACTIONS(7064), - [anon_sym__Nonnull] = ACTIONS(7064), - [anon_sym__Nullable_result] = ACTIONS(7064), - [anon_sym__Null_unspecified] = ACTIONS(7064), - [anon_sym___autoreleasing] = ACTIONS(7064), - [anon_sym___nullable] = ACTIONS(7064), - [anon_sym___nonnull] = ACTIONS(7064), - [anon_sym___strong] = ACTIONS(7064), - [anon_sym___weak] = ACTIONS(7064), - [anon_sym___bridge] = ACTIONS(7064), - [anon_sym___bridge_transfer] = ACTIONS(7064), - [anon_sym___bridge_retained] = ACTIONS(7064), - [anon_sym___unsafe_unretained] = ACTIONS(7064), - [anon_sym___block] = ACTIONS(7064), - [anon_sym___kindof] = ACTIONS(7064), - [anon_sym___unused] = ACTIONS(7064), - [anon_sym__Complex] = ACTIONS(7064), - [anon_sym___complex] = ACTIONS(7064), - [anon_sym_IBOutlet] = ACTIONS(7064), - [anon_sym_IBInspectable] = ACTIONS(7064), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7827), - [anon_sym_PLUS_PLUS] = ACTIONS(7827), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7064), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7064), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE] = ACTIONS(7064), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_API_AVAILABLE] = ACTIONS(7064), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_API_DEPRECATED] = ACTIONS(7064), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7064), - [anon_sym___deprecated_msg] = ACTIONS(7064), - [anon_sym___deprecated_enum_msg] = ACTIONS(7064), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7064), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7064), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3271] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7837), - [anon_sym_PLUS] = ACTIONS(7837), - [anon_sym_STAR] = ACTIONS(7831), - [anon_sym_SLASH] = ACTIONS(7833), - [anon_sym_PERCENT] = ACTIONS(7831), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7066), - [anon_sym_PIPE] = ACTIONS(7855), - [anon_sym_CARET] = ACTIONS(7857), - [anon_sym_AMP] = ACTIONS(7859), - [anon_sym_EQ_EQ] = ACTIONS(7861), - [anon_sym_BANG_EQ] = ACTIONS(7861), - [anon_sym_GT] = ACTIONS(7863), - [anon_sym_GT_EQ] = ACTIONS(7865), - [anon_sym_LT_EQ] = ACTIONS(7865), - [anon_sym_LT] = ACTIONS(7863), - [anon_sym_LT_LT] = ACTIONS(7839), - [anon_sym_GT_GT] = ACTIONS(7839), - [anon_sym_SEMI] = ACTIONS(7066), - [anon_sym___attribute] = ACTIONS(7064), - [anon_sym___attribute__] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7066), - [anon_sym_const] = ACTIONS(7064), - [anon_sym_volatile] = ACTIONS(7064), - [anon_sym_restrict] = ACTIONS(7064), - [anon_sym__Atomic] = ACTIONS(7064), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_out] = ACTIONS(7064), - [anon_sym_inout] = ACTIONS(7064), - [anon_sym_bycopy] = ACTIONS(7064), - [anon_sym_byref] = ACTIONS(7064), - [anon_sym_oneway] = ACTIONS(7064), - [anon_sym__Nullable] = ACTIONS(7064), - [anon_sym__Nonnull] = ACTIONS(7064), - [anon_sym__Nullable_result] = ACTIONS(7064), - [anon_sym__Null_unspecified] = ACTIONS(7064), - [anon_sym___autoreleasing] = ACTIONS(7064), - [anon_sym___nullable] = ACTIONS(7064), - [anon_sym___nonnull] = ACTIONS(7064), - [anon_sym___strong] = ACTIONS(7064), - [anon_sym___weak] = ACTIONS(7064), - [anon_sym___bridge] = ACTIONS(7064), - [anon_sym___bridge_transfer] = ACTIONS(7064), - [anon_sym___bridge_retained] = ACTIONS(7064), - [anon_sym___unsafe_unretained] = ACTIONS(7064), - [anon_sym___block] = ACTIONS(7064), - [anon_sym___kindof] = ACTIONS(7064), - [anon_sym___unused] = ACTIONS(7064), - [anon_sym__Complex] = ACTIONS(7064), - [anon_sym___complex] = ACTIONS(7064), - [anon_sym_IBOutlet] = ACTIONS(7064), - [anon_sym_IBInspectable] = ACTIONS(7064), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7827), - [anon_sym_PLUS_PLUS] = ACTIONS(7827), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7064), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7064), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE] = ACTIONS(7064), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_API_AVAILABLE] = ACTIONS(7064), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_API_DEPRECATED] = ACTIONS(7064), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7064), - [anon_sym___deprecated_msg] = ACTIONS(7064), - [anon_sym___deprecated_enum_msg] = ACTIONS(7064), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7064), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7064), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3272] = { - [sym_string_literal] = STATE(2742), - [sym_identifier] = ACTIONS(7867), - [anon_sym_extern] = ACTIONS(7867), - [anon_sym___attribute] = ACTIONS(7867), - [anon_sym___attribute__] = ACTIONS(7867), - [anon_sym___declspec] = ACTIONS(7867), - [anon_sym_static] = ACTIONS(7867), - [anon_sym_auto] = ACTIONS(7867), - [anon_sym_register] = ACTIONS(7867), - [anon_sym_inline] = ACTIONS(7867), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7867), - [anon_sym_const] = ACTIONS(7867), - [anon_sym_volatile] = ACTIONS(7867), - [anon_sym_restrict] = ACTIONS(7867), - [anon_sym__Atomic] = ACTIONS(7867), - [anon_sym_in] = ACTIONS(7867), - [anon_sym_out] = ACTIONS(7867), - [anon_sym_inout] = ACTIONS(7867), - [anon_sym_bycopy] = ACTIONS(7867), - [anon_sym_byref] = ACTIONS(7867), - [anon_sym_oneway] = ACTIONS(7867), - [anon_sym__Nullable] = ACTIONS(7867), - [anon_sym__Nonnull] = ACTIONS(7867), - [anon_sym__Nullable_result] = ACTIONS(7867), - [anon_sym__Null_unspecified] = ACTIONS(7867), - [anon_sym___autoreleasing] = ACTIONS(7867), - [anon_sym___nullable] = ACTIONS(7867), - [anon_sym___nonnull] = ACTIONS(7867), - [anon_sym___strong] = ACTIONS(7867), - [anon_sym___weak] = ACTIONS(7867), - [anon_sym___bridge] = ACTIONS(7867), - [anon_sym___bridge_transfer] = ACTIONS(7867), - [anon_sym___bridge_retained] = ACTIONS(7867), - [anon_sym___unsafe_unretained] = ACTIONS(7867), - [anon_sym___block] = ACTIONS(7867), - [anon_sym___kindof] = ACTIONS(7867), - [anon_sym___unused] = ACTIONS(7867), - [anon_sym__Complex] = ACTIONS(7867), - [anon_sym___complex] = ACTIONS(7867), - [anon_sym_IBOutlet] = ACTIONS(7867), - [anon_sym_IBInspectable] = ACTIONS(7867), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7867), - [anon_sym_signed] = ACTIONS(7867), - [anon_sym_unsigned] = ACTIONS(7867), - [anon_sym_long] = ACTIONS(7867), - [anon_sym_short] = ACTIONS(7867), - [sym_primitive_type] = ACTIONS(7867), - [anon_sym_enum] = ACTIONS(7867), - [anon_sym_NS_ENUM] = ACTIONS(7867), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7867), - [anon_sym_NS_OPTIONS] = ACTIONS(7867), - [anon_sym_struct] = ACTIONS(7867), - [anon_sym_union] = ACTIONS(7867), - [anon_sym_L_DQUOTE] = ACTIONS(7869), - [anon_sym_u_DQUOTE] = ACTIONS(7869), - [anon_sym_U_DQUOTE] = ACTIONS(7869), - [anon_sym_u8_DQUOTE] = ACTIONS(7869), - [anon_sym_DQUOTE] = ACTIONS(7869), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7867), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7867), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7867), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7867), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7867), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7867), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7867), - [anon_sym_NS_AVAILABLE] = ACTIONS(7867), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7867), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_API_AVAILABLE] = ACTIONS(7867), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7867), - [anon_sym_API_DEPRECATED] = ACTIONS(7867), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7867), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7867), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7867), - [anon_sym___deprecated_msg] = ACTIONS(7867), - [anon_sym___deprecated_enum_msg] = ACTIONS(7867), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7867), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7867), - [anon_sym_typeof] = ACTIONS(7867), - [anon_sym___typeof] = ACTIONS(7867), - [anon_sym___typeof__] = ACTIONS(7867), - [sym_id] = ACTIONS(7867), - [sym_instancetype] = ACTIONS(7867), - [sym_Class] = ACTIONS(7867), - [sym_SEL] = ACTIONS(7867), - [sym_IMP] = ACTIONS(7867), - [sym_BOOL] = ACTIONS(7867), - [sym_auto] = ACTIONS(7867), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3273] = { - [sym_identifier] = ACTIONS(1958), - [aux_sym_preproc_def_token1] = ACTIONS(1958), - [aux_sym_preproc_if_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [sym_preproc_directive] = ACTIONS(1958), - [anon_sym_extern] = ACTIONS(1958), - [anon_sym___attribute] = ACTIONS(1958), - [anon_sym___attribute__] = ACTIONS(1958), - [anon_sym___declspec] = ACTIONS(1958), - [anon_sym_RBRACE] = ACTIONS(1960), - [anon_sym_static] = ACTIONS(1958), - [anon_sym_auto] = ACTIONS(1958), - [anon_sym_register] = ACTIONS(1958), - [anon_sym_inline] = ACTIONS(1958), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1958), - [anon_sym_const] = ACTIONS(1958), - [anon_sym_volatile] = ACTIONS(1958), - [anon_sym_restrict] = ACTIONS(1958), - [anon_sym__Atomic] = ACTIONS(1958), - [anon_sym_in] = ACTIONS(1958), - [anon_sym_out] = ACTIONS(1958), - [anon_sym_inout] = ACTIONS(1958), - [anon_sym_bycopy] = ACTIONS(1958), - [anon_sym_byref] = ACTIONS(1958), - [anon_sym_oneway] = ACTIONS(1958), - [anon_sym__Nullable] = ACTIONS(1958), - [anon_sym__Nonnull] = ACTIONS(1958), - [anon_sym__Nullable_result] = ACTIONS(1958), - [anon_sym__Null_unspecified] = ACTIONS(1958), - [anon_sym___autoreleasing] = ACTIONS(1958), - [anon_sym___nullable] = ACTIONS(1958), - [anon_sym___nonnull] = ACTIONS(1958), - [anon_sym___strong] = ACTIONS(1958), - [anon_sym___weak] = ACTIONS(1958), - [anon_sym___bridge] = ACTIONS(1958), - [anon_sym___bridge_transfer] = ACTIONS(1958), - [anon_sym___bridge_retained] = ACTIONS(1958), - [anon_sym___unsafe_unretained] = ACTIONS(1958), - [anon_sym___block] = ACTIONS(1958), - [anon_sym___kindof] = ACTIONS(1958), - [anon_sym___unused] = ACTIONS(1958), - [anon_sym__Complex] = ACTIONS(1958), - [anon_sym___complex] = ACTIONS(1958), - [anon_sym_IBOutlet] = ACTIONS(1958), - [anon_sym_IBInspectable] = ACTIONS(1958), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1958), - [anon_sym_signed] = ACTIONS(1958), - [anon_sym_unsigned] = ACTIONS(1958), - [anon_sym_long] = ACTIONS(1958), - [anon_sym_short] = ACTIONS(1958), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_enum] = ACTIONS(1958), - [anon_sym_NS_ENUM] = ACTIONS(1958), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1958), - [anon_sym_NS_OPTIONS] = ACTIONS(1958), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(1958), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1958), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1958), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1958), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1958), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1958), - [anon_sym_NS_AVAILABLE] = ACTIONS(1958), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1958), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_API_AVAILABLE] = ACTIONS(1958), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_API_DEPRECATED] = ACTIONS(1958), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1958), - [anon_sym___deprecated_msg] = ACTIONS(1958), - [anon_sym___deprecated_enum_msg] = ACTIONS(1958), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_typeof] = ACTIONS(1958), - [anon_sym___typeof] = ACTIONS(1958), - [anon_sym___typeof__] = ACTIONS(1958), - [sym_id] = ACTIONS(1958), - [sym_instancetype] = ACTIONS(1958), - [sym_Class] = ACTIONS(1958), - [sym_SEL] = ACTIONS(1958), - [sym_IMP] = ACTIONS(1958), - [sym_BOOL] = ACTIONS(1958), - [sym_auto] = ACTIONS(1958), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3274] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7042), - [anon_sym_COMMA] = ACTIONS(7044), - [anon_sym_RPAREN] = ACTIONS(7044), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7837), - [anon_sym_PLUS] = ACTIONS(7837), - [anon_sym_STAR] = ACTIONS(7831), - [anon_sym_SLASH] = ACTIONS(7833), - [anon_sym_PERCENT] = ACTIONS(7831), - [anon_sym_PIPE_PIPE] = ACTIONS(7871), - [anon_sym_AMP_AMP] = ACTIONS(7853), - [anon_sym_PIPE] = ACTIONS(7855), - [anon_sym_CARET] = ACTIONS(7857), - [anon_sym_AMP] = ACTIONS(7859), - [anon_sym_EQ_EQ] = ACTIONS(7861), - [anon_sym_BANG_EQ] = ACTIONS(7861), - [anon_sym_GT] = ACTIONS(7863), - [anon_sym_GT_EQ] = ACTIONS(7865), - [anon_sym_LT_EQ] = ACTIONS(7865), - [anon_sym_LT] = ACTIONS(7863), - [anon_sym_LT_LT] = ACTIONS(7839), - [anon_sym_GT_GT] = ACTIONS(7839), - [anon_sym_SEMI] = ACTIONS(7044), - [anon_sym___attribute] = ACTIONS(7042), - [anon_sym___attribute__] = ACTIONS(7042), - [anon_sym_RBRACE] = ACTIONS(7044), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7044), - [anon_sym_const] = ACTIONS(7042), - [anon_sym_volatile] = ACTIONS(7042), - [anon_sym_restrict] = ACTIONS(7042), - [anon_sym__Atomic] = ACTIONS(7042), - [anon_sym_in] = ACTIONS(7042), - [anon_sym_out] = ACTIONS(7042), - [anon_sym_inout] = ACTIONS(7042), - [anon_sym_bycopy] = ACTIONS(7042), - [anon_sym_byref] = ACTIONS(7042), - [anon_sym_oneway] = ACTIONS(7042), - [anon_sym__Nullable] = ACTIONS(7042), - [anon_sym__Nonnull] = ACTIONS(7042), - [anon_sym__Nullable_result] = ACTIONS(7042), - [anon_sym__Null_unspecified] = ACTIONS(7042), - [anon_sym___autoreleasing] = ACTIONS(7042), - [anon_sym___nullable] = ACTIONS(7042), - [anon_sym___nonnull] = ACTIONS(7042), - [anon_sym___strong] = ACTIONS(7042), - [anon_sym___weak] = ACTIONS(7042), - [anon_sym___bridge] = ACTIONS(7042), - [anon_sym___bridge_transfer] = ACTIONS(7042), - [anon_sym___bridge_retained] = ACTIONS(7042), - [anon_sym___unsafe_unretained] = ACTIONS(7042), - [anon_sym___block] = ACTIONS(7042), - [anon_sym___kindof] = ACTIONS(7042), - [anon_sym___unused] = ACTIONS(7042), - [anon_sym__Complex] = ACTIONS(7042), - [anon_sym___complex] = ACTIONS(7042), - [anon_sym_IBOutlet] = ACTIONS(7042), - [anon_sym_IBInspectable] = ACTIONS(7042), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7042), - [anon_sym_COLON] = ACTIONS(7044), - [anon_sym_QMARK] = ACTIONS(7873), - [anon_sym_DASH_DASH] = ACTIONS(7827), - [anon_sym_PLUS_PLUS] = ACTIONS(7827), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7042), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7042), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7042), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7042), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7042), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7042), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7042), - [anon_sym_NS_AVAILABLE] = ACTIONS(7042), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7042), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7042), - [anon_sym_API_AVAILABLE] = ACTIONS(7042), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7042), - [anon_sym_API_DEPRECATED] = ACTIONS(7042), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7042), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7042), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7042), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7042), - [anon_sym___deprecated_msg] = ACTIONS(7042), - [anon_sym___deprecated_enum_msg] = ACTIONS(7042), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7042), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7042), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7042), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7042), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7042), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7042), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3275] = { - [sym_identifier] = ACTIONS(2090), - [aux_sym_preproc_def_token1] = ACTIONS(2090), - [aux_sym_preproc_if_token1] = ACTIONS(2090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2090), - [sym_preproc_directive] = ACTIONS(2090), - [anon_sym_extern] = ACTIONS(2090), - [anon_sym___attribute] = ACTIONS(2090), - [anon_sym___attribute__] = ACTIONS(2090), - [anon_sym___declspec] = ACTIONS(2090), - [anon_sym_RBRACE] = ACTIONS(2092), - [anon_sym_static] = ACTIONS(2090), - [anon_sym_auto] = ACTIONS(2090), - [anon_sym_register] = ACTIONS(2090), - [anon_sym_inline] = ACTIONS(2090), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2090), - [anon_sym_volatile] = ACTIONS(2090), - [anon_sym_restrict] = ACTIONS(2090), - [anon_sym__Atomic] = ACTIONS(2090), - [anon_sym_in] = ACTIONS(2090), - [anon_sym_out] = ACTIONS(2090), - [anon_sym_inout] = ACTIONS(2090), - [anon_sym_bycopy] = ACTIONS(2090), - [anon_sym_byref] = ACTIONS(2090), - [anon_sym_oneway] = ACTIONS(2090), - [anon_sym__Nullable] = ACTIONS(2090), - [anon_sym__Nonnull] = ACTIONS(2090), - [anon_sym__Nullable_result] = ACTIONS(2090), - [anon_sym__Null_unspecified] = ACTIONS(2090), - [anon_sym___autoreleasing] = ACTIONS(2090), - [anon_sym___nullable] = ACTIONS(2090), - [anon_sym___nonnull] = ACTIONS(2090), - [anon_sym___strong] = ACTIONS(2090), - [anon_sym___weak] = ACTIONS(2090), - [anon_sym___bridge] = ACTIONS(2090), - [anon_sym___bridge_transfer] = ACTIONS(2090), - [anon_sym___bridge_retained] = ACTIONS(2090), - [anon_sym___unsafe_unretained] = ACTIONS(2090), - [anon_sym___block] = ACTIONS(2090), - [anon_sym___kindof] = ACTIONS(2090), - [anon_sym___unused] = ACTIONS(2090), - [anon_sym__Complex] = ACTIONS(2090), - [anon_sym___complex] = ACTIONS(2090), - [anon_sym_IBOutlet] = ACTIONS(2090), - [anon_sym_IBInspectable] = ACTIONS(2090), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2090), - [anon_sym_signed] = ACTIONS(2090), - [anon_sym_unsigned] = ACTIONS(2090), - [anon_sym_long] = ACTIONS(2090), - [anon_sym_short] = ACTIONS(2090), - [sym_primitive_type] = ACTIONS(2090), - [anon_sym_enum] = ACTIONS(2090), - [anon_sym_NS_ENUM] = ACTIONS(2090), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2090), - [anon_sym_NS_OPTIONS] = ACTIONS(2090), - [anon_sym_struct] = ACTIONS(2090), - [anon_sym_union] = ACTIONS(2090), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(2090), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2090), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2090), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2090), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2090), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2090), - [anon_sym_NS_AVAILABLE] = ACTIONS(2090), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2090), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_API_AVAILABLE] = ACTIONS(2090), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_API_DEPRECATED] = ACTIONS(2090), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2090), - [anon_sym___deprecated_msg] = ACTIONS(2090), - [anon_sym___deprecated_enum_msg] = ACTIONS(2090), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_typeof] = ACTIONS(2090), - [anon_sym___typeof] = ACTIONS(2090), - [anon_sym___typeof__] = ACTIONS(2090), - [sym_id] = ACTIONS(2090), - [sym_instancetype] = ACTIONS(2090), - [sym_Class] = ACTIONS(2090), - [sym_SEL] = ACTIONS(2090), - [sym_IMP] = ACTIONS(2090), - [sym_BOOL] = ACTIONS(2090), - [sym_auto] = ACTIONS(2090), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3276] = { - [sym_identifier] = ACTIONS(7708), - [aux_sym_preproc_def_token1] = ACTIONS(7708), - [aux_sym_preproc_if_token1] = ACTIONS(7708), - [aux_sym_preproc_if_token2] = ACTIONS(7708), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7708), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7708), - [sym_preproc_directive] = ACTIONS(7708), - [anon_sym_extern] = ACTIONS(7708), - [anon_sym___attribute] = ACTIONS(7708), - [anon_sym___attribute__] = ACTIONS(7708), - [anon_sym___declspec] = ACTIONS(7708), - [anon_sym_static] = ACTIONS(7708), - [anon_sym_auto] = ACTIONS(7708), - [anon_sym_register] = ACTIONS(7708), - [anon_sym_inline] = ACTIONS(7708), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7708), - [anon_sym_const] = ACTIONS(7708), - [anon_sym_volatile] = ACTIONS(7708), - [anon_sym_restrict] = ACTIONS(7708), - [anon_sym__Atomic] = ACTIONS(7708), - [anon_sym_in] = ACTIONS(7708), - [anon_sym_out] = ACTIONS(7708), - [anon_sym_inout] = ACTIONS(7708), - [anon_sym_bycopy] = ACTIONS(7708), - [anon_sym_byref] = ACTIONS(7708), - [anon_sym_oneway] = ACTIONS(7708), - [anon_sym__Nullable] = ACTIONS(7708), - [anon_sym__Nonnull] = ACTIONS(7708), - [anon_sym__Nullable_result] = ACTIONS(7708), - [anon_sym__Null_unspecified] = ACTIONS(7708), - [anon_sym___autoreleasing] = ACTIONS(7708), - [anon_sym___nullable] = ACTIONS(7708), - [anon_sym___nonnull] = ACTIONS(7708), - [anon_sym___strong] = ACTIONS(7708), - [anon_sym___weak] = ACTIONS(7708), - [anon_sym___bridge] = ACTIONS(7708), - [anon_sym___bridge_transfer] = ACTIONS(7708), - [anon_sym___bridge_retained] = ACTIONS(7708), - [anon_sym___unsafe_unretained] = ACTIONS(7708), - [anon_sym___block] = ACTIONS(7708), - [anon_sym___kindof] = ACTIONS(7708), - [anon_sym___unused] = ACTIONS(7708), - [anon_sym__Complex] = ACTIONS(7708), - [anon_sym___complex] = ACTIONS(7708), - [anon_sym_IBOutlet] = ACTIONS(7708), - [anon_sym_IBInspectable] = ACTIONS(7708), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7708), - [anon_sym_signed] = ACTIONS(7708), - [anon_sym_unsigned] = ACTIONS(7708), - [anon_sym_long] = ACTIONS(7708), - [anon_sym_short] = ACTIONS(7708), - [sym_primitive_type] = ACTIONS(7708), - [anon_sym_enum] = ACTIONS(7708), - [anon_sym_NS_ENUM] = ACTIONS(7708), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7708), - [anon_sym_NS_OPTIONS] = ACTIONS(7708), - [anon_sym_struct] = ACTIONS(7708), - [anon_sym_union] = ACTIONS(7708), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7708), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7708), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7708), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7708), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7708), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7708), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7708), - [anon_sym_NS_AVAILABLE] = ACTIONS(7708), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7708), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7708), - [anon_sym_API_AVAILABLE] = ACTIONS(7708), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7708), - [anon_sym_API_DEPRECATED] = ACTIONS(7708), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7708), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7708), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7708), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7708), - [anon_sym___deprecated_msg] = ACTIONS(7708), - [anon_sym___deprecated_enum_msg] = ACTIONS(7708), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7708), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7708), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7708), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7708), - [anon_sym_typeof] = ACTIONS(7708), - [anon_sym___typeof] = ACTIONS(7708), - [anon_sym___typeof__] = ACTIONS(7708), - [sym_id] = ACTIONS(7708), - [sym_instancetype] = ACTIONS(7708), - [sym_Class] = ACTIONS(7708), - [sym_SEL] = ACTIONS(7708), - [sym_IMP] = ACTIONS(7708), - [sym_BOOL] = ACTIONS(7708), - [sym_auto] = ACTIONS(7708), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3277] = { - [sym_identifier] = ACTIONS(7740), - [aux_sym_preproc_def_token1] = ACTIONS(7740), - [aux_sym_preproc_if_token1] = ACTIONS(7740), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7740), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7740), - [sym_preproc_directive] = ACTIONS(7740), - [anon_sym_extern] = ACTIONS(7740), - [anon_sym___attribute] = ACTIONS(7740), - [anon_sym___attribute__] = ACTIONS(7740), - [anon_sym___declspec] = ACTIONS(7740), - [anon_sym_RBRACE] = ACTIONS(7875), - [anon_sym_static] = ACTIONS(7740), - [anon_sym_auto] = ACTIONS(7740), - [anon_sym_register] = ACTIONS(7740), - [anon_sym_inline] = ACTIONS(7740), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7740), - [anon_sym_const] = ACTIONS(7740), - [anon_sym_volatile] = ACTIONS(7740), - [anon_sym_restrict] = ACTIONS(7740), - [anon_sym__Atomic] = ACTIONS(7740), - [anon_sym_in] = ACTIONS(7740), - [anon_sym_out] = ACTIONS(7740), - [anon_sym_inout] = ACTIONS(7740), - [anon_sym_bycopy] = ACTIONS(7740), - [anon_sym_byref] = ACTIONS(7740), - [anon_sym_oneway] = ACTIONS(7740), - [anon_sym__Nullable] = ACTIONS(7740), - [anon_sym__Nonnull] = ACTIONS(7740), - [anon_sym__Nullable_result] = ACTIONS(7740), - [anon_sym__Null_unspecified] = ACTIONS(7740), - [anon_sym___autoreleasing] = ACTIONS(7740), - [anon_sym___nullable] = ACTIONS(7740), - [anon_sym___nonnull] = ACTIONS(7740), - [anon_sym___strong] = ACTIONS(7740), - [anon_sym___weak] = ACTIONS(7740), - [anon_sym___bridge] = ACTIONS(7740), - [anon_sym___bridge_transfer] = ACTIONS(7740), - [anon_sym___bridge_retained] = ACTIONS(7740), - [anon_sym___unsafe_unretained] = ACTIONS(7740), - [anon_sym___block] = ACTIONS(7740), - [anon_sym___kindof] = ACTIONS(7740), - [anon_sym___unused] = ACTIONS(7740), - [anon_sym__Complex] = ACTIONS(7740), - [anon_sym___complex] = ACTIONS(7740), - [anon_sym_IBOutlet] = ACTIONS(7740), - [anon_sym_IBInspectable] = ACTIONS(7740), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7740), - [anon_sym_signed] = ACTIONS(7740), - [anon_sym_unsigned] = ACTIONS(7740), - [anon_sym_long] = ACTIONS(7740), - [anon_sym_short] = ACTIONS(7740), - [sym_primitive_type] = ACTIONS(7740), - [anon_sym_enum] = ACTIONS(7740), - [anon_sym_NS_ENUM] = ACTIONS(7740), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7740), - [anon_sym_NS_OPTIONS] = ACTIONS(7740), - [anon_sym_struct] = ACTIONS(7740), - [anon_sym_union] = ACTIONS(7740), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7740), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7740), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7740), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7740), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7740), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7740), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7740), - [anon_sym_NS_AVAILABLE] = ACTIONS(7740), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7740), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7740), - [anon_sym_API_AVAILABLE] = ACTIONS(7740), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7740), - [anon_sym_API_DEPRECATED] = ACTIONS(7740), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7740), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7740), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7740), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7740), - [anon_sym___deprecated_msg] = ACTIONS(7740), - [anon_sym___deprecated_enum_msg] = ACTIONS(7740), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7740), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7740), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7740), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7740), - [anon_sym_typeof] = ACTIONS(7740), - [anon_sym___typeof] = ACTIONS(7740), - [anon_sym___typeof__] = ACTIONS(7740), - [sym_id] = ACTIONS(7740), - [sym_instancetype] = ACTIONS(7740), - [sym_Class] = ACTIONS(7740), - [sym_SEL] = ACTIONS(7740), - [sym_IMP] = ACTIONS(7740), - [sym_BOOL] = ACTIONS(7740), - [sym_auto] = ACTIONS(7740), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3278] = { - [sym_identifier] = ACTIONS(7716), - [aux_sym_preproc_def_token1] = ACTIONS(7716), - [aux_sym_preproc_if_token1] = ACTIONS(7716), - [aux_sym_preproc_if_token2] = ACTIONS(7716), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7716), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7716), - [sym_preproc_directive] = ACTIONS(7716), - [anon_sym_extern] = ACTIONS(7716), - [anon_sym___attribute] = ACTIONS(7716), - [anon_sym___attribute__] = ACTIONS(7716), - [anon_sym___declspec] = ACTIONS(7716), - [anon_sym_static] = ACTIONS(7716), - [anon_sym_auto] = ACTIONS(7716), - [anon_sym_register] = ACTIONS(7716), - [anon_sym_inline] = ACTIONS(7716), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7716), - [anon_sym_const] = ACTIONS(7716), - [anon_sym_volatile] = ACTIONS(7716), - [anon_sym_restrict] = ACTIONS(7716), - [anon_sym__Atomic] = ACTIONS(7716), - [anon_sym_in] = ACTIONS(7716), - [anon_sym_out] = ACTIONS(7716), - [anon_sym_inout] = ACTIONS(7716), - [anon_sym_bycopy] = ACTIONS(7716), - [anon_sym_byref] = ACTIONS(7716), - [anon_sym_oneway] = ACTIONS(7716), - [anon_sym__Nullable] = ACTIONS(7716), - [anon_sym__Nonnull] = ACTIONS(7716), - [anon_sym__Nullable_result] = ACTIONS(7716), - [anon_sym__Null_unspecified] = ACTIONS(7716), - [anon_sym___autoreleasing] = ACTIONS(7716), - [anon_sym___nullable] = ACTIONS(7716), - [anon_sym___nonnull] = ACTIONS(7716), - [anon_sym___strong] = ACTIONS(7716), - [anon_sym___weak] = ACTIONS(7716), - [anon_sym___bridge] = ACTIONS(7716), - [anon_sym___bridge_transfer] = ACTIONS(7716), - [anon_sym___bridge_retained] = ACTIONS(7716), - [anon_sym___unsafe_unretained] = ACTIONS(7716), - [anon_sym___block] = ACTIONS(7716), - [anon_sym___kindof] = ACTIONS(7716), - [anon_sym___unused] = ACTIONS(7716), - [anon_sym__Complex] = ACTIONS(7716), - [anon_sym___complex] = ACTIONS(7716), - [anon_sym_IBOutlet] = ACTIONS(7716), - [anon_sym_IBInspectable] = ACTIONS(7716), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7716), - [anon_sym_signed] = ACTIONS(7716), - [anon_sym_unsigned] = ACTIONS(7716), - [anon_sym_long] = ACTIONS(7716), - [anon_sym_short] = ACTIONS(7716), - [sym_primitive_type] = ACTIONS(7716), - [anon_sym_enum] = ACTIONS(7716), [anon_sym_NS_ENUM] = ACTIONS(7716), [anon_sym_NS_ERROR_ENUM] = ACTIONS(7716), [anon_sym_NS_OPTIONS] = ACTIONS(7716), - [anon_sym_struct] = ACTIONS(7716), - [anon_sym_union] = ACTIONS(7716), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7716), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7716), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7716), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7716), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7716), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7716), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7716), - [anon_sym_NS_AVAILABLE] = ACTIONS(7716), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7716), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7716), - [anon_sym_API_AVAILABLE] = ACTIONS(7716), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7716), - [anon_sym_API_DEPRECATED] = ACTIONS(7716), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7716), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7716), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7716), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7716), - [anon_sym___deprecated_msg] = ACTIONS(7716), - [anon_sym___deprecated_enum_msg] = ACTIONS(7716), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7716), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7716), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7716), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7716), [anon_sym_typeof] = ACTIONS(7716), [anon_sym___typeof] = ACTIONS(7716), [anon_sym___typeof__] = ACTIONS(7716), @@ -520904,899 +510877,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(5), }, - [3279] = { - [sym_identifier] = ACTIONS(7746), - [aux_sym_preproc_def_token1] = ACTIONS(7746), - [aux_sym_preproc_if_token1] = ACTIONS(7746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7746), - [sym_preproc_directive] = ACTIONS(7746), - [anon_sym_extern] = ACTIONS(7746), - [anon_sym___attribute] = ACTIONS(7746), - [anon_sym___attribute__] = ACTIONS(7746), - [anon_sym___declspec] = ACTIONS(7746), - [anon_sym_RBRACE] = ACTIONS(7877), - [anon_sym_static] = ACTIONS(7746), - [anon_sym_auto] = ACTIONS(7746), - [anon_sym_register] = ACTIONS(7746), - [anon_sym_inline] = ACTIONS(7746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7746), - [anon_sym_const] = ACTIONS(7746), - [anon_sym_volatile] = ACTIONS(7746), - [anon_sym_restrict] = ACTIONS(7746), - [anon_sym__Atomic] = ACTIONS(7746), - [anon_sym_in] = ACTIONS(7746), - [anon_sym_out] = ACTIONS(7746), - [anon_sym_inout] = ACTIONS(7746), - [anon_sym_bycopy] = ACTIONS(7746), - [anon_sym_byref] = ACTIONS(7746), - [anon_sym_oneway] = ACTIONS(7746), - [anon_sym__Nullable] = ACTIONS(7746), - [anon_sym__Nonnull] = ACTIONS(7746), - [anon_sym__Nullable_result] = ACTIONS(7746), - [anon_sym__Null_unspecified] = ACTIONS(7746), - [anon_sym___autoreleasing] = ACTIONS(7746), - [anon_sym___nullable] = ACTIONS(7746), - [anon_sym___nonnull] = ACTIONS(7746), - [anon_sym___strong] = ACTIONS(7746), - [anon_sym___weak] = ACTIONS(7746), - [anon_sym___bridge] = ACTIONS(7746), - [anon_sym___bridge_transfer] = ACTIONS(7746), - [anon_sym___bridge_retained] = ACTIONS(7746), - [anon_sym___unsafe_unretained] = ACTIONS(7746), - [anon_sym___block] = ACTIONS(7746), - [anon_sym___kindof] = ACTIONS(7746), - [anon_sym___unused] = ACTIONS(7746), - [anon_sym__Complex] = ACTIONS(7746), - [anon_sym___complex] = ACTIONS(7746), - [anon_sym_IBOutlet] = ACTIONS(7746), - [anon_sym_IBInspectable] = ACTIONS(7746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7746), - [anon_sym_signed] = ACTIONS(7746), - [anon_sym_unsigned] = ACTIONS(7746), - [anon_sym_long] = ACTIONS(7746), - [anon_sym_short] = ACTIONS(7746), - [sym_primitive_type] = ACTIONS(7746), - [anon_sym_enum] = ACTIONS(7746), - [anon_sym_NS_ENUM] = ACTIONS(7746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7746), - [anon_sym_NS_OPTIONS] = ACTIONS(7746), - [anon_sym_struct] = ACTIONS(7746), - [anon_sym_union] = ACTIONS(7746), + [3203] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(7781), + [anon_sym_PLUS] = ACTIONS(7781), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7785), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(6952), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7791), + [anon_sym_AMP] = ACTIONS(7793), + [anon_sym_EQ_EQ] = ACTIONS(7795), + [anon_sym_BANG_EQ] = ACTIONS(7795), + [anon_sym_GT] = ACTIONS(7797), + [anon_sym_GT_EQ] = ACTIONS(7799), + [anon_sym_LT_EQ] = ACTIONS(7799), + [anon_sym_LT] = ACTIONS(7797), + [anon_sym_LT_LT] = ACTIONS(7801), + [anon_sym_GT_GT] = ACTIONS(7801), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7746), - [anon_sym_NS_AVAILABLE] = ACTIONS(7746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7746), - [anon_sym_API_AVAILABLE] = ACTIONS(7746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7746), - [anon_sym_API_DEPRECATED] = ACTIONS(7746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7746), - [anon_sym___deprecated_msg] = ACTIONS(7746), - [anon_sym___deprecated_enum_msg] = ACTIONS(7746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7746), - [anon_sym_typeof] = ACTIONS(7746), - [anon_sym___typeof] = ACTIONS(7746), - [anon_sym___typeof__] = ACTIONS(7746), - [sym_id] = ACTIONS(7746), - [sym_instancetype] = ACTIONS(7746), - [sym_Class] = ACTIONS(7746), - [sym_SEL] = ACTIONS(7746), - [sym_IMP] = ACTIONS(7746), - [sym_BOOL] = ACTIONS(7746), - [sym_auto] = ACTIONS(7746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3280] = { - [sym_identifier] = ACTIONS(7784), - [aux_sym_preproc_def_token1] = ACTIONS(7784), - [aux_sym_preproc_if_token1] = ACTIONS(7784), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7784), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7784), - [sym_preproc_directive] = ACTIONS(7784), - [anon_sym_extern] = ACTIONS(7784), - [anon_sym___attribute] = ACTIONS(7784), - [anon_sym___attribute__] = ACTIONS(7784), - [anon_sym___declspec] = ACTIONS(7784), - [anon_sym_RBRACE] = ACTIONS(7879), - [anon_sym_static] = ACTIONS(7784), - [anon_sym_auto] = ACTIONS(7784), - [anon_sym_register] = ACTIONS(7784), - [anon_sym_inline] = ACTIONS(7784), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7784), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_volatile] = ACTIONS(7784), - [anon_sym_restrict] = ACTIONS(7784), - [anon_sym__Atomic] = ACTIONS(7784), - [anon_sym_in] = ACTIONS(7784), - [anon_sym_out] = ACTIONS(7784), - [anon_sym_inout] = ACTIONS(7784), - [anon_sym_bycopy] = ACTIONS(7784), - [anon_sym_byref] = ACTIONS(7784), - [anon_sym_oneway] = ACTIONS(7784), - [anon_sym__Nullable] = ACTIONS(7784), - [anon_sym__Nonnull] = ACTIONS(7784), - [anon_sym__Nullable_result] = ACTIONS(7784), - [anon_sym__Null_unspecified] = ACTIONS(7784), - [anon_sym___autoreleasing] = ACTIONS(7784), - [anon_sym___nullable] = ACTIONS(7784), - [anon_sym___nonnull] = ACTIONS(7784), - [anon_sym___strong] = ACTIONS(7784), - [anon_sym___weak] = ACTIONS(7784), - [anon_sym___bridge] = ACTIONS(7784), - [anon_sym___bridge_transfer] = ACTIONS(7784), - [anon_sym___bridge_retained] = ACTIONS(7784), - [anon_sym___unsafe_unretained] = ACTIONS(7784), - [anon_sym___block] = ACTIONS(7784), - [anon_sym___kindof] = ACTIONS(7784), - [anon_sym___unused] = ACTIONS(7784), - [anon_sym__Complex] = ACTIONS(7784), - [anon_sym___complex] = ACTIONS(7784), - [anon_sym_IBOutlet] = ACTIONS(7784), - [anon_sym_IBInspectable] = ACTIONS(7784), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7784), - [anon_sym_signed] = ACTIONS(7784), - [anon_sym_unsigned] = ACTIONS(7784), - [anon_sym_long] = ACTIONS(7784), - [anon_sym_short] = ACTIONS(7784), - [sym_primitive_type] = ACTIONS(7784), - [anon_sym_enum] = ACTIONS(7784), - [anon_sym_NS_ENUM] = ACTIONS(7784), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7784), - [anon_sym_NS_OPTIONS] = ACTIONS(7784), - [anon_sym_struct] = ACTIONS(7784), - [anon_sym_union] = ACTIONS(7784), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7784), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7784), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7784), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7784), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7784), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7784), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7784), - [anon_sym_NS_AVAILABLE] = ACTIONS(7784), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7784), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7784), - [anon_sym_API_AVAILABLE] = ACTIONS(7784), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7784), - [anon_sym_API_DEPRECATED] = ACTIONS(7784), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7784), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7784), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7784), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7784), - [anon_sym___deprecated_msg] = ACTIONS(7784), - [anon_sym___deprecated_enum_msg] = ACTIONS(7784), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7784), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7784), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7784), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7784), - [anon_sym_typeof] = ACTIONS(7784), - [anon_sym___typeof] = ACTIONS(7784), - [anon_sym___typeof__] = ACTIONS(7784), - [sym_id] = ACTIONS(7784), - [sym_instancetype] = ACTIONS(7784), - [sym_Class] = ACTIONS(7784), - [sym_SEL] = ACTIONS(7784), - [sym_IMP] = ACTIONS(7784), - [sym_BOOL] = ACTIONS(7784), - [sym_auto] = ACTIONS(7784), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3281] = { - [sym_identifier] = ACTIONS(7714), - [aux_sym_preproc_def_token1] = ACTIONS(7714), - [aux_sym_preproc_if_token1] = ACTIONS(7714), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7714), - [sym_preproc_directive] = ACTIONS(7714), - [anon_sym_extern] = ACTIONS(7714), - [anon_sym___attribute] = ACTIONS(7714), - [anon_sym___attribute__] = ACTIONS(7714), - [anon_sym___declspec] = ACTIONS(7714), - [anon_sym_RBRACE] = ACTIONS(7881), - [anon_sym_static] = ACTIONS(7714), - [anon_sym_auto] = ACTIONS(7714), - [anon_sym_register] = ACTIONS(7714), - [anon_sym_inline] = ACTIONS(7714), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7714), - [anon_sym_const] = ACTIONS(7714), - [anon_sym_volatile] = ACTIONS(7714), - [anon_sym_restrict] = ACTIONS(7714), - [anon_sym__Atomic] = ACTIONS(7714), - [anon_sym_in] = ACTIONS(7714), - [anon_sym_out] = ACTIONS(7714), - [anon_sym_inout] = ACTIONS(7714), - [anon_sym_bycopy] = ACTIONS(7714), - [anon_sym_byref] = ACTIONS(7714), - [anon_sym_oneway] = ACTIONS(7714), - [anon_sym__Nullable] = ACTIONS(7714), - [anon_sym__Nonnull] = ACTIONS(7714), - [anon_sym__Nullable_result] = ACTIONS(7714), - [anon_sym__Null_unspecified] = ACTIONS(7714), - [anon_sym___autoreleasing] = ACTIONS(7714), - [anon_sym___nullable] = ACTIONS(7714), - [anon_sym___nonnull] = ACTIONS(7714), - [anon_sym___strong] = ACTIONS(7714), - [anon_sym___weak] = ACTIONS(7714), - [anon_sym___bridge] = ACTIONS(7714), - [anon_sym___bridge_transfer] = ACTIONS(7714), - [anon_sym___bridge_retained] = ACTIONS(7714), - [anon_sym___unsafe_unretained] = ACTIONS(7714), - [anon_sym___block] = ACTIONS(7714), - [anon_sym___kindof] = ACTIONS(7714), - [anon_sym___unused] = ACTIONS(7714), - [anon_sym__Complex] = ACTIONS(7714), - [anon_sym___complex] = ACTIONS(7714), - [anon_sym_IBOutlet] = ACTIONS(7714), - [anon_sym_IBInspectable] = ACTIONS(7714), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7714), - [anon_sym_signed] = ACTIONS(7714), - [anon_sym_unsigned] = ACTIONS(7714), - [anon_sym_long] = ACTIONS(7714), - [anon_sym_short] = ACTIONS(7714), - [sym_primitive_type] = ACTIONS(7714), - [anon_sym_enum] = ACTIONS(7714), - [anon_sym_NS_ENUM] = ACTIONS(7714), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7714), - [anon_sym_NS_OPTIONS] = ACTIONS(7714), - [anon_sym_struct] = ACTIONS(7714), - [anon_sym_union] = ACTIONS(7714), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7714), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7714), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7714), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7714), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7714), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7714), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7714), - [anon_sym_NS_AVAILABLE] = ACTIONS(7714), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7714), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7714), - [anon_sym_API_AVAILABLE] = ACTIONS(7714), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7714), - [anon_sym_API_DEPRECATED] = ACTIONS(7714), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7714), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7714), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7714), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7714), - [anon_sym___deprecated_msg] = ACTIONS(7714), - [anon_sym___deprecated_enum_msg] = ACTIONS(7714), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7714), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7714), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7714), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7714), - [anon_sym_typeof] = ACTIONS(7714), - [anon_sym___typeof] = ACTIONS(7714), - [anon_sym___typeof__] = ACTIONS(7714), - [sym_id] = ACTIONS(7714), - [sym_instancetype] = ACTIONS(7714), - [sym_Class] = ACTIONS(7714), - [sym_SEL] = ACTIONS(7714), - [sym_IMP] = ACTIONS(7714), - [sym_BOOL] = ACTIONS(7714), - [sym_auto] = ACTIONS(7714), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3282] = { - [sym_identifier] = ACTIONS(7746), - [aux_sym_preproc_def_token1] = ACTIONS(7746), - [aux_sym_preproc_if_token1] = ACTIONS(7746), - [aux_sym_preproc_if_token2] = ACTIONS(7746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7746), - [sym_preproc_directive] = ACTIONS(7746), - [anon_sym_extern] = ACTIONS(7746), - [anon_sym___attribute] = ACTIONS(7746), - [anon_sym___attribute__] = ACTIONS(7746), - [anon_sym___declspec] = ACTIONS(7746), - [anon_sym_static] = ACTIONS(7746), - [anon_sym_auto] = ACTIONS(7746), - [anon_sym_register] = ACTIONS(7746), - [anon_sym_inline] = ACTIONS(7746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7746), - [anon_sym_const] = ACTIONS(7746), - [anon_sym_volatile] = ACTIONS(7746), - [anon_sym_restrict] = ACTIONS(7746), - [anon_sym__Atomic] = ACTIONS(7746), - [anon_sym_in] = ACTIONS(7746), - [anon_sym_out] = ACTIONS(7746), - [anon_sym_inout] = ACTIONS(7746), - [anon_sym_bycopy] = ACTIONS(7746), - [anon_sym_byref] = ACTIONS(7746), - [anon_sym_oneway] = ACTIONS(7746), - [anon_sym__Nullable] = ACTIONS(7746), - [anon_sym__Nonnull] = ACTIONS(7746), - [anon_sym__Nullable_result] = ACTIONS(7746), - [anon_sym__Null_unspecified] = ACTIONS(7746), - [anon_sym___autoreleasing] = ACTIONS(7746), - [anon_sym___nullable] = ACTIONS(7746), - [anon_sym___nonnull] = ACTIONS(7746), - [anon_sym___strong] = ACTIONS(7746), - [anon_sym___weak] = ACTIONS(7746), - [anon_sym___bridge] = ACTIONS(7746), - [anon_sym___bridge_transfer] = ACTIONS(7746), - [anon_sym___bridge_retained] = ACTIONS(7746), - [anon_sym___unsafe_unretained] = ACTIONS(7746), - [anon_sym___block] = ACTIONS(7746), - [anon_sym___kindof] = ACTIONS(7746), - [anon_sym___unused] = ACTIONS(7746), - [anon_sym__Complex] = ACTIONS(7746), - [anon_sym___complex] = ACTIONS(7746), - [anon_sym_IBOutlet] = ACTIONS(7746), - [anon_sym_IBInspectable] = ACTIONS(7746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7746), - [anon_sym_signed] = ACTIONS(7746), - [anon_sym_unsigned] = ACTIONS(7746), - [anon_sym_long] = ACTIONS(7746), - [anon_sym_short] = ACTIONS(7746), - [sym_primitive_type] = ACTIONS(7746), - [anon_sym_enum] = ACTIONS(7746), - [anon_sym_NS_ENUM] = ACTIONS(7746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7746), - [anon_sym_NS_OPTIONS] = ACTIONS(7746), - [anon_sym_struct] = ACTIONS(7746), - [anon_sym_union] = ACTIONS(7746), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7746), - [anon_sym_NS_AVAILABLE] = ACTIONS(7746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7746), - [anon_sym_API_AVAILABLE] = ACTIONS(7746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7746), - [anon_sym_API_DEPRECATED] = ACTIONS(7746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7746), - [anon_sym___deprecated_msg] = ACTIONS(7746), - [anon_sym___deprecated_enum_msg] = ACTIONS(7746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7746), - [anon_sym_typeof] = ACTIONS(7746), - [anon_sym___typeof] = ACTIONS(7746), - [anon_sym___typeof__] = ACTIONS(7746), - [sym_id] = ACTIONS(7746), - [sym_instancetype] = ACTIONS(7746), - [sym_Class] = ACTIONS(7746), - [sym_SEL] = ACTIONS(7746), - [sym_IMP] = ACTIONS(7746), - [sym_BOOL] = ACTIONS(7746), - [sym_auto] = ACTIONS(7746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3283] = { - [sym_identifier] = ACTIONS(7730), - [aux_sym_preproc_def_token1] = ACTIONS(7730), - [aux_sym_preproc_if_token1] = ACTIONS(7730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7730), - [sym_preproc_directive] = ACTIONS(7730), - [anon_sym_extern] = ACTIONS(7730), - [anon_sym___attribute] = ACTIONS(7730), - [anon_sym___attribute__] = ACTIONS(7730), - [anon_sym___declspec] = ACTIONS(7730), - [anon_sym_RBRACE] = ACTIONS(7883), - [anon_sym_static] = ACTIONS(7730), - [anon_sym_auto] = ACTIONS(7730), - [anon_sym_register] = ACTIONS(7730), - [anon_sym_inline] = ACTIONS(7730), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7730), - [anon_sym_const] = ACTIONS(7730), - [anon_sym_volatile] = ACTIONS(7730), - [anon_sym_restrict] = ACTIONS(7730), - [anon_sym__Atomic] = ACTIONS(7730), - [anon_sym_in] = ACTIONS(7730), - [anon_sym_out] = ACTIONS(7730), - [anon_sym_inout] = ACTIONS(7730), - [anon_sym_bycopy] = ACTIONS(7730), - [anon_sym_byref] = ACTIONS(7730), - [anon_sym_oneway] = ACTIONS(7730), - [anon_sym__Nullable] = ACTIONS(7730), - [anon_sym__Nonnull] = ACTIONS(7730), - [anon_sym__Nullable_result] = ACTIONS(7730), - [anon_sym__Null_unspecified] = ACTIONS(7730), - [anon_sym___autoreleasing] = ACTIONS(7730), - [anon_sym___nullable] = ACTIONS(7730), - [anon_sym___nonnull] = ACTIONS(7730), - [anon_sym___strong] = ACTIONS(7730), - [anon_sym___weak] = ACTIONS(7730), - [anon_sym___bridge] = ACTIONS(7730), - [anon_sym___bridge_transfer] = ACTIONS(7730), - [anon_sym___bridge_retained] = ACTIONS(7730), - [anon_sym___unsafe_unretained] = ACTIONS(7730), - [anon_sym___block] = ACTIONS(7730), - [anon_sym___kindof] = ACTIONS(7730), - [anon_sym___unused] = ACTIONS(7730), - [anon_sym__Complex] = ACTIONS(7730), - [anon_sym___complex] = ACTIONS(7730), - [anon_sym_IBOutlet] = ACTIONS(7730), - [anon_sym_IBInspectable] = ACTIONS(7730), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7730), - [anon_sym_signed] = ACTIONS(7730), - [anon_sym_unsigned] = ACTIONS(7730), - [anon_sym_long] = ACTIONS(7730), - [anon_sym_short] = ACTIONS(7730), - [sym_primitive_type] = ACTIONS(7730), - [anon_sym_enum] = ACTIONS(7730), - [anon_sym_NS_ENUM] = ACTIONS(7730), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7730), - [anon_sym_NS_OPTIONS] = ACTIONS(7730), - [anon_sym_struct] = ACTIONS(7730), - [anon_sym_union] = ACTIONS(7730), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7730), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7730), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7730), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7730), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7730), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7730), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7730), - [anon_sym_NS_AVAILABLE] = ACTIONS(7730), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7730), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7730), - [anon_sym_API_AVAILABLE] = ACTIONS(7730), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7730), - [anon_sym_API_DEPRECATED] = ACTIONS(7730), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7730), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7730), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7730), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7730), - [anon_sym___deprecated_msg] = ACTIONS(7730), - [anon_sym___deprecated_enum_msg] = ACTIONS(7730), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7730), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7730), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7730), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7730), - [anon_sym_typeof] = ACTIONS(7730), - [anon_sym___typeof] = ACTIONS(7730), - [anon_sym___typeof__] = ACTIONS(7730), - [sym_id] = ACTIONS(7730), - [sym_instancetype] = ACTIONS(7730), - [sym_Class] = ACTIONS(7730), - [sym_SEL] = ACTIONS(7730), - [sym_IMP] = ACTIONS(7730), - [sym_BOOL] = ACTIONS(7730), - [sym_auto] = ACTIONS(7730), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3284] = { - [sym_identifier] = ACTIONS(1890), - [aux_sym_preproc_def_token1] = ACTIONS(1890), - [aux_sym_preproc_if_token1] = ACTIONS(1890), - [aux_sym_preproc_if_token2] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1890), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1890), - [sym_preproc_directive] = ACTIONS(1890), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym___attribute] = ACTIONS(1890), - [anon_sym___attribute__] = ACTIONS(1890), - [anon_sym___declspec] = ACTIONS(1890), - [anon_sym_static] = ACTIONS(1890), - [anon_sym_auto] = ACTIONS(1890), - [anon_sym_register] = ACTIONS(1890), - [anon_sym_inline] = ACTIONS(1890), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [anon_sym_volatile] = ACTIONS(1890), - [anon_sym_restrict] = ACTIONS(1890), - [anon_sym__Atomic] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(1890), - [anon_sym_out] = ACTIONS(1890), - [anon_sym_inout] = ACTIONS(1890), - [anon_sym_bycopy] = ACTIONS(1890), - [anon_sym_byref] = ACTIONS(1890), - [anon_sym_oneway] = ACTIONS(1890), - [anon_sym__Nullable] = ACTIONS(1890), - [anon_sym__Nonnull] = ACTIONS(1890), - [anon_sym__Nullable_result] = ACTIONS(1890), - [anon_sym__Null_unspecified] = ACTIONS(1890), - [anon_sym___autoreleasing] = ACTIONS(1890), - [anon_sym___nullable] = ACTIONS(1890), - [anon_sym___nonnull] = ACTIONS(1890), - [anon_sym___strong] = ACTIONS(1890), - [anon_sym___weak] = ACTIONS(1890), - [anon_sym___bridge] = ACTIONS(1890), - [anon_sym___bridge_transfer] = ACTIONS(1890), - [anon_sym___bridge_retained] = ACTIONS(1890), - [anon_sym___unsafe_unretained] = ACTIONS(1890), - [anon_sym___block] = ACTIONS(1890), - [anon_sym___kindof] = ACTIONS(1890), - [anon_sym___unused] = ACTIONS(1890), - [anon_sym__Complex] = ACTIONS(1890), - [anon_sym___complex] = ACTIONS(1890), - [anon_sym_IBOutlet] = ACTIONS(1890), - [anon_sym_IBInspectable] = ACTIONS(1890), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1890), - [anon_sym_signed] = ACTIONS(1890), - [anon_sym_unsigned] = ACTIONS(1890), - [anon_sym_long] = ACTIONS(1890), - [anon_sym_short] = ACTIONS(1890), - [sym_primitive_type] = ACTIONS(1890), - [anon_sym_enum] = ACTIONS(1890), - [anon_sym_NS_ENUM] = ACTIONS(1890), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1890), - [anon_sym_NS_OPTIONS] = ACTIONS(1890), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1890), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(1890), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1890), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1890), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1890), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1890), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1890), - [anon_sym_NS_AVAILABLE] = ACTIONS(1890), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1890), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_API_AVAILABLE] = ACTIONS(1890), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_API_DEPRECATED] = ACTIONS(1890), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1890), - [anon_sym___deprecated_msg] = ACTIONS(1890), - [anon_sym___deprecated_enum_msg] = ACTIONS(1890), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1890), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1890), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1890), - [anon_sym_typeof] = ACTIONS(1890), - [anon_sym___typeof] = ACTIONS(1890), - [anon_sym___typeof__] = ACTIONS(1890), - [sym_id] = ACTIONS(1890), - [sym_instancetype] = ACTIONS(1890), - [sym_Class] = ACTIONS(1890), - [sym_SEL] = ACTIONS(1890), - [sym_IMP] = ACTIONS(1890), - [sym_BOOL] = ACTIONS(1890), - [sym_auto] = ACTIONS(1890), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3285] = { - [sym_identifier] = ACTIONS(7740), - [aux_sym_preproc_def_token1] = ACTIONS(7740), - [aux_sym_preproc_if_token1] = ACTIONS(7740), - [aux_sym_preproc_if_token2] = ACTIONS(7740), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7740), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7740), - [sym_preproc_directive] = ACTIONS(7740), - [anon_sym_extern] = ACTIONS(7740), - [anon_sym___attribute] = ACTIONS(7740), - [anon_sym___attribute__] = ACTIONS(7740), - [anon_sym___declspec] = ACTIONS(7740), - [anon_sym_static] = ACTIONS(7740), - [anon_sym_auto] = ACTIONS(7740), - [anon_sym_register] = ACTIONS(7740), - [anon_sym_inline] = ACTIONS(7740), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7740), - [anon_sym_const] = ACTIONS(7740), - [anon_sym_volatile] = ACTIONS(7740), - [anon_sym_restrict] = ACTIONS(7740), - [anon_sym__Atomic] = ACTIONS(7740), - [anon_sym_in] = ACTIONS(7740), - [anon_sym_out] = ACTIONS(7740), - [anon_sym_inout] = ACTIONS(7740), - [anon_sym_bycopy] = ACTIONS(7740), - [anon_sym_byref] = ACTIONS(7740), - [anon_sym_oneway] = ACTIONS(7740), - [anon_sym__Nullable] = ACTIONS(7740), - [anon_sym__Nonnull] = ACTIONS(7740), - [anon_sym__Nullable_result] = ACTIONS(7740), - [anon_sym__Null_unspecified] = ACTIONS(7740), - [anon_sym___autoreleasing] = ACTIONS(7740), - [anon_sym___nullable] = ACTIONS(7740), - [anon_sym___nonnull] = ACTIONS(7740), - [anon_sym___strong] = ACTIONS(7740), - [anon_sym___weak] = ACTIONS(7740), - [anon_sym___bridge] = ACTIONS(7740), - [anon_sym___bridge_transfer] = ACTIONS(7740), - [anon_sym___bridge_retained] = ACTIONS(7740), - [anon_sym___unsafe_unretained] = ACTIONS(7740), - [anon_sym___block] = ACTIONS(7740), - [anon_sym___kindof] = ACTIONS(7740), - [anon_sym___unused] = ACTIONS(7740), - [anon_sym__Complex] = ACTIONS(7740), - [anon_sym___complex] = ACTIONS(7740), - [anon_sym_IBOutlet] = ACTIONS(7740), - [anon_sym_IBInspectable] = ACTIONS(7740), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7740), - [anon_sym_signed] = ACTIONS(7740), - [anon_sym_unsigned] = ACTIONS(7740), - [anon_sym_long] = ACTIONS(7740), - [anon_sym_short] = ACTIONS(7740), - [sym_primitive_type] = ACTIONS(7740), - [anon_sym_enum] = ACTIONS(7740), - [anon_sym_NS_ENUM] = ACTIONS(7740), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7740), - [anon_sym_NS_OPTIONS] = ACTIONS(7740), - [anon_sym_struct] = ACTIONS(7740), - [anon_sym_union] = ACTIONS(7740), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7740), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7740), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7740), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7740), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7740), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7740), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7740), - [anon_sym_NS_AVAILABLE] = ACTIONS(7740), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7740), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7740), - [anon_sym_API_AVAILABLE] = ACTIONS(7740), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7740), - [anon_sym_API_DEPRECATED] = ACTIONS(7740), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7740), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7740), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7740), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7740), - [anon_sym___deprecated_msg] = ACTIONS(7740), - [anon_sym___deprecated_enum_msg] = ACTIONS(7740), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7740), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7740), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7740), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7740), - [anon_sym_typeof] = ACTIONS(7740), - [anon_sym___typeof] = ACTIONS(7740), - [anon_sym___typeof__] = ACTIONS(7740), - [sym_id] = ACTIONS(7740), - [sym_instancetype] = ACTIONS(7740), - [sym_Class] = ACTIONS(7740), - [sym_SEL] = ACTIONS(7740), - [sym_IMP] = ACTIONS(7740), - [sym_BOOL] = ACTIONS(7740), - [sym_auto] = ACTIONS(7740), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3286] = { - [sym_identifier] = ACTIONS(7752), - [aux_sym_preproc_def_token1] = ACTIONS(7752), - [aux_sym_preproc_if_token1] = ACTIONS(7752), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7752), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7752), - [sym_preproc_directive] = ACTIONS(7752), - [anon_sym_extern] = ACTIONS(7752), - [anon_sym___attribute] = ACTIONS(7752), - [anon_sym___attribute__] = ACTIONS(7752), - [anon_sym___declspec] = ACTIONS(7752), - [anon_sym_RBRACE] = ACTIONS(7885), - [anon_sym_static] = ACTIONS(7752), - [anon_sym_auto] = ACTIONS(7752), - [anon_sym_register] = ACTIONS(7752), - [anon_sym_inline] = ACTIONS(7752), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7752), - [anon_sym_const] = ACTIONS(7752), - [anon_sym_volatile] = ACTIONS(7752), - [anon_sym_restrict] = ACTIONS(7752), - [anon_sym__Atomic] = ACTIONS(7752), - [anon_sym_in] = ACTIONS(7752), - [anon_sym_out] = ACTIONS(7752), - [anon_sym_inout] = ACTIONS(7752), - [anon_sym_bycopy] = ACTIONS(7752), - [anon_sym_byref] = ACTIONS(7752), - [anon_sym_oneway] = ACTIONS(7752), - [anon_sym__Nullable] = ACTIONS(7752), - [anon_sym__Nonnull] = ACTIONS(7752), - [anon_sym__Nullable_result] = ACTIONS(7752), - [anon_sym__Null_unspecified] = ACTIONS(7752), - [anon_sym___autoreleasing] = ACTIONS(7752), - [anon_sym___nullable] = ACTIONS(7752), - [anon_sym___nonnull] = ACTIONS(7752), - [anon_sym___strong] = ACTIONS(7752), - [anon_sym___weak] = ACTIONS(7752), - [anon_sym___bridge] = ACTIONS(7752), - [anon_sym___bridge_transfer] = ACTIONS(7752), - [anon_sym___bridge_retained] = ACTIONS(7752), - [anon_sym___unsafe_unretained] = ACTIONS(7752), - [anon_sym___block] = ACTIONS(7752), - [anon_sym___kindof] = ACTIONS(7752), - [anon_sym___unused] = ACTIONS(7752), - [anon_sym__Complex] = ACTIONS(7752), - [anon_sym___complex] = ACTIONS(7752), - [anon_sym_IBOutlet] = ACTIONS(7752), - [anon_sym_IBInspectable] = ACTIONS(7752), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7752), - [anon_sym_signed] = ACTIONS(7752), - [anon_sym_unsigned] = ACTIONS(7752), - [anon_sym_long] = ACTIONS(7752), - [anon_sym_short] = ACTIONS(7752), - [sym_primitive_type] = ACTIONS(7752), - [anon_sym_enum] = ACTIONS(7752), - [anon_sym_NS_ENUM] = ACTIONS(7752), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7752), - [anon_sym_NS_OPTIONS] = ACTIONS(7752), - [anon_sym_struct] = ACTIONS(7752), - [anon_sym_union] = ACTIONS(7752), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7752), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7752), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7752), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7752), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7752), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7752), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7752), - [anon_sym_NS_AVAILABLE] = ACTIONS(7752), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7752), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7752), - [anon_sym_API_AVAILABLE] = ACTIONS(7752), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7752), - [anon_sym_API_DEPRECATED] = ACTIONS(7752), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7752), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7752), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7752), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7752), - [anon_sym___deprecated_msg] = ACTIONS(7752), - [anon_sym___deprecated_enum_msg] = ACTIONS(7752), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7752), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7752), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7752), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7752), - [anon_sym_typeof] = ACTIONS(7752), - [anon_sym___typeof] = ACTIONS(7752), - [anon_sym___typeof__] = ACTIONS(7752), - [sym_id] = ACTIONS(7752), - [sym_instancetype] = ACTIONS(7752), - [sym_Class] = ACTIONS(7752), - [sym_SEL] = ACTIONS(7752), - [sym_IMP] = ACTIONS(7752), - [sym_BOOL] = ACTIONS(7752), - [sym_auto] = ACTIONS(7752), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3287] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7060), - [anon_sym_COMMA] = ACTIONS(7062), - [anon_sym_RPAREN] = ACTIONS(7062), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7060), - [anon_sym_PLUS] = ACTIONS(7060), - [anon_sym_STAR] = ACTIONS(7062), - [anon_sym_SLASH] = ACTIONS(7060), - [anon_sym_PERCENT] = ACTIONS(7062), - [anon_sym_PIPE_PIPE] = ACTIONS(7062), - [anon_sym_AMP_AMP] = ACTIONS(7062), - [anon_sym_PIPE] = ACTIONS(7060), - [anon_sym_CARET] = ACTIONS(7062), - [anon_sym_AMP] = ACTIONS(7060), - [anon_sym_EQ_EQ] = ACTIONS(7062), - [anon_sym_BANG_EQ] = ACTIONS(7062), - [anon_sym_GT] = ACTIONS(7060), - [anon_sym_GT_EQ] = ACTIONS(7062), - [anon_sym_LT_EQ] = ACTIONS(7062), - [anon_sym_LT] = ACTIONS(7060), - [anon_sym_LT_LT] = ACTIONS(7062), - [anon_sym_GT_GT] = ACTIONS(7062), - [anon_sym_SEMI] = ACTIONS(7062), - [anon_sym___attribute] = ACTIONS(7060), - [anon_sym___attribute__] = ACTIONS(7060), - [anon_sym_RBRACE] = ACTIONS(7062), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7062), - [anon_sym_const] = ACTIONS(7060), - [anon_sym_volatile] = ACTIONS(7060), - [anon_sym_restrict] = ACTIONS(7060), - [anon_sym__Atomic] = ACTIONS(7060), - [anon_sym_in] = ACTIONS(7060), - [anon_sym_out] = ACTIONS(7060), - [anon_sym_inout] = ACTIONS(7060), - [anon_sym_bycopy] = ACTIONS(7060), - [anon_sym_byref] = ACTIONS(7060), - [anon_sym_oneway] = ACTIONS(7060), - [anon_sym__Nullable] = ACTIONS(7060), - [anon_sym__Nonnull] = ACTIONS(7060), - [anon_sym__Nullable_result] = ACTIONS(7060), - [anon_sym__Null_unspecified] = ACTIONS(7060), - [anon_sym___autoreleasing] = ACTIONS(7060), - [anon_sym___nullable] = ACTIONS(7060), - [anon_sym___nonnull] = ACTIONS(7060), - [anon_sym___strong] = ACTIONS(7060), - [anon_sym___weak] = ACTIONS(7060), - [anon_sym___bridge] = ACTIONS(7060), - [anon_sym___bridge_transfer] = ACTIONS(7060), - [anon_sym___bridge_retained] = ACTIONS(7060), - [anon_sym___unsafe_unretained] = ACTIONS(7060), - [anon_sym___block] = ACTIONS(7060), - [anon_sym___kindof] = ACTIONS(7060), - [anon_sym___unused] = ACTIONS(7060), - [anon_sym__Complex] = ACTIONS(7060), - [anon_sym___complex] = ACTIONS(7060), - [anon_sym_IBOutlet] = ACTIONS(7060), - [anon_sym_IBInspectable] = ACTIONS(7060), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7060), - [anon_sym_COLON] = ACTIONS(7062), - [anon_sym_QMARK] = ACTIONS(7062), - [anon_sym_DASH_DASH] = ACTIONS(7827), - [anon_sym_PLUS_PLUS] = ACTIONS(7827), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7060), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7060), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7060), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7060), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7060), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7060), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7060), - [anon_sym_NS_AVAILABLE] = ACTIONS(7060), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7060), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7060), - [anon_sym_API_AVAILABLE] = ACTIONS(7060), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7060), - [anon_sym_API_DEPRECATED] = ACTIONS(7060), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7060), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7060), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7060), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7060), - [anon_sym___deprecated_msg] = ACTIONS(7060), - [anon_sym___deprecated_enum_msg] = ACTIONS(7060), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7060), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7060), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7060), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7060), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7060), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7060), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -521804,199 +510977,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3288] = { - [sym_identifier] = ACTIONS(1954), - [aux_sym_preproc_def_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token2] = ACTIONS(1954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1954), - [sym_preproc_directive] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym___attribute] = ACTIONS(1954), - [anon_sym___attribute__] = ACTIONS(1954), - [anon_sym___declspec] = ACTIONS(1954), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_auto] = ACTIONS(1954), - [anon_sym_register] = ACTIONS(1954), - [anon_sym_inline] = ACTIONS(1954), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_volatile] = ACTIONS(1954), - [anon_sym_restrict] = ACTIONS(1954), - [anon_sym__Atomic] = ACTIONS(1954), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_out] = ACTIONS(1954), - [anon_sym_inout] = ACTIONS(1954), - [anon_sym_bycopy] = ACTIONS(1954), - [anon_sym_byref] = ACTIONS(1954), - [anon_sym_oneway] = ACTIONS(1954), - [anon_sym__Nullable] = ACTIONS(1954), - [anon_sym__Nonnull] = ACTIONS(1954), - [anon_sym__Nullable_result] = ACTIONS(1954), - [anon_sym__Null_unspecified] = ACTIONS(1954), - [anon_sym___autoreleasing] = ACTIONS(1954), - [anon_sym___nullable] = ACTIONS(1954), - [anon_sym___nonnull] = ACTIONS(1954), - [anon_sym___strong] = ACTIONS(1954), - [anon_sym___weak] = ACTIONS(1954), - [anon_sym___bridge] = ACTIONS(1954), - [anon_sym___bridge_transfer] = ACTIONS(1954), - [anon_sym___bridge_retained] = ACTIONS(1954), - [anon_sym___unsafe_unretained] = ACTIONS(1954), - [anon_sym___block] = ACTIONS(1954), - [anon_sym___kindof] = ACTIONS(1954), - [anon_sym___unused] = ACTIONS(1954), - [anon_sym__Complex] = ACTIONS(1954), - [anon_sym___complex] = ACTIONS(1954), - [anon_sym_IBOutlet] = ACTIONS(1954), - [anon_sym_IBInspectable] = ACTIONS(1954), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1954), - [anon_sym_signed] = ACTIONS(1954), - [anon_sym_unsigned] = ACTIONS(1954), - [anon_sym_long] = ACTIONS(1954), - [anon_sym_short] = ACTIONS(1954), - [sym_primitive_type] = ACTIONS(1954), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_NS_ENUM] = ACTIONS(1954), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1954), - [anon_sym_NS_OPTIONS] = ACTIONS(1954), - [anon_sym_struct] = ACTIONS(1954), - [anon_sym_union] = ACTIONS(1954), + [3204] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(7781), + [anon_sym_PLUS] = ACTIONS(7781), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7785), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(6952), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_CARET] = ACTIONS(7791), + [anon_sym_AMP] = ACTIONS(7793), + [anon_sym_EQ_EQ] = ACTIONS(7795), + [anon_sym_BANG_EQ] = ACTIONS(7795), + [anon_sym_GT] = ACTIONS(7797), + [anon_sym_GT_EQ] = ACTIONS(7799), + [anon_sym_LT_EQ] = ACTIONS(7799), + [anon_sym_LT] = ACTIONS(7797), + [anon_sym_LT_LT] = ACTIONS(7801), + [anon_sym_GT_GT] = ACTIONS(7801), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(1954), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1954), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1954), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1954), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1954), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1954), - [anon_sym_NS_AVAILABLE] = ACTIONS(1954), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1954), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_API_AVAILABLE] = ACTIONS(1954), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_API_DEPRECATED] = ACTIONS(1954), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1954), - [anon_sym___deprecated_msg] = ACTIONS(1954), - [anon_sym___deprecated_enum_msg] = ACTIONS(1954), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_typeof] = ACTIONS(1954), - [anon_sym___typeof] = ACTIONS(1954), - [anon_sym___typeof__] = ACTIONS(1954), - [sym_id] = ACTIONS(1954), - [sym_instancetype] = ACTIONS(1954), - [sym_Class] = ACTIONS(1954), - [sym_SEL] = ACTIONS(1954), - [sym_IMP] = ACTIONS(1954), - [sym_BOOL] = ACTIONS(1954), - [sym_auto] = ACTIONS(1954), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3289] = { - [sym_string_literal] = STATE(2735), - [sym_identifier] = ACTIONS(7867), - [anon_sym_extern] = ACTIONS(7867), - [anon_sym___attribute] = ACTIONS(7867), - [anon_sym___attribute__] = ACTIONS(7867), - [anon_sym___declspec] = ACTIONS(7867), - [anon_sym_static] = ACTIONS(7867), - [anon_sym_auto] = ACTIONS(7867), - [anon_sym_register] = ACTIONS(7867), - [anon_sym_inline] = ACTIONS(7867), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7867), - [anon_sym_const] = ACTIONS(7867), - [anon_sym_volatile] = ACTIONS(7867), - [anon_sym_restrict] = ACTIONS(7867), - [anon_sym__Atomic] = ACTIONS(7867), - [anon_sym_in] = ACTIONS(7867), - [anon_sym_out] = ACTIONS(7867), - [anon_sym_inout] = ACTIONS(7867), - [anon_sym_bycopy] = ACTIONS(7867), - [anon_sym_byref] = ACTIONS(7867), - [anon_sym_oneway] = ACTIONS(7867), - [anon_sym__Nullable] = ACTIONS(7867), - [anon_sym__Nonnull] = ACTIONS(7867), - [anon_sym__Nullable_result] = ACTIONS(7867), - [anon_sym__Null_unspecified] = ACTIONS(7867), - [anon_sym___autoreleasing] = ACTIONS(7867), - [anon_sym___nullable] = ACTIONS(7867), - [anon_sym___nonnull] = ACTIONS(7867), - [anon_sym___strong] = ACTIONS(7867), - [anon_sym___weak] = ACTIONS(7867), - [anon_sym___bridge] = ACTIONS(7867), - [anon_sym___bridge_transfer] = ACTIONS(7867), - [anon_sym___bridge_retained] = ACTIONS(7867), - [anon_sym___unsafe_unretained] = ACTIONS(7867), - [anon_sym___block] = ACTIONS(7867), - [anon_sym___kindof] = ACTIONS(7867), - [anon_sym___unused] = ACTIONS(7867), - [anon_sym__Complex] = ACTIONS(7867), - [anon_sym___complex] = ACTIONS(7867), - [anon_sym_IBOutlet] = ACTIONS(7867), - [anon_sym_IBInspectable] = ACTIONS(7867), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7867), - [anon_sym_signed] = ACTIONS(7867), - [anon_sym_unsigned] = ACTIONS(7867), - [anon_sym_long] = ACTIONS(7867), - [anon_sym_short] = ACTIONS(7867), - [sym_primitive_type] = ACTIONS(7867), - [anon_sym_enum] = ACTIONS(7867), - [anon_sym_NS_ENUM] = ACTIONS(7867), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7867), - [anon_sym_NS_OPTIONS] = ACTIONS(7867), - [anon_sym_struct] = ACTIONS(7867), - [anon_sym_union] = ACTIONS(7867), - [anon_sym_L_DQUOTE] = ACTIONS(7869), - [anon_sym_u_DQUOTE] = ACTIONS(7869), - [anon_sym_U_DQUOTE] = ACTIONS(7869), - [anon_sym_u8_DQUOTE] = ACTIONS(7869), - [anon_sym_DQUOTE] = ACTIONS(7869), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7867), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7867), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7867), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7867), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7867), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7867), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7867), - [anon_sym_NS_AVAILABLE] = ACTIONS(7867), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7867), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_API_AVAILABLE] = ACTIONS(7867), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7867), - [anon_sym_API_DEPRECATED] = ACTIONS(7867), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7867), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7867), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7867), - [anon_sym___deprecated_msg] = ACTIONS(7867), - [anon_sym___deprecated_enum_msg] = ACTIONS(7867), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7867), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7867), - [anon_sym_typeof] = ACTIONS(7867), - [anon_sym___typeof] = ACTIONS(7867), - [anon_sym___typeof__] = ACTIONS(7867), - [sym_id] = ACTIONS(7867), - [sym_instancetype] = ACTIONS(7867), - [sym_Class] = ACTIONS(7867), - [sym_SEL] = ACTIONS(7867), - [sym_IMP] = ACTIONS(7867), - [sym_BOOL] = ACTIONS(7867), - [sym_auto] = ACTIONS(7867), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -522004,599 +511077,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3290] = { - [sym_identifier] = ACTIONS(1958), - [aux_sym_preproc_def_token1] = ACTIONS(1958), - [aux_sym_preproc_if_token1] = ACTIONS(1958), - [aux_sym_preproc_if_token2] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1958), - [sym_preproc_directive] = ACTIONS(1958), - [anon_sym_extern] = ACTIONS(1958), - [anon_sym___attribute] = ACTIONS(1958), - [anon_sym___attribute__] = ACTIONS(1958), - [anon_sym___declspec] = ACTIONS(1958), - [anon_sym_static] = ACTIONS(1958), - [anon_sym_auto] = ACTIONS(1958), - [anon_sym_register] = ACTIONS(1958), - [anon_sym_inline] = ACTIONS(1958), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1958), - [anon_sym_const] = ACTIONS(1958), - [anon_sym_volatile] = ACTIONS(1958), - [anon_sym_restrict] = ACTIONS(1958), - [anon_sym__Atomic] = ACTIONS(1958), - [anon_sym_in] = ACTIONS(1958), - [anon_sym_out] = ACTIONS(1958), - [anon_sym_inout] = ACTIONS(1958), - [anon_sym_bycopy] = ACTIONS(1958), - [anon_sym_byref] = ACTIONS(1958), - [anon_sym_oneway] = ACTIONS(1958), - [anon_sym__Nullable] = ACTIONS(1958), - [anon_sym__Nonnull] = ACTIONS(1958), - [anon_sym__Nullable_result] = ACTIONS(1958), - [anon_sym__Null_unspecified] = ACTIONS(1958), - [anon_sym___autoreleasing] = ACTIONS(1958), - [anon_sym___nullable] = ACTIONS(1958), - [anon_sym___nonnull] = ACTIONS(1958), - [anon_sym___strong] = ACTIONS(1958), - [anon_sym___weak] = ACTIONS(1958), - [anon_sym___bridge] = ACTIONS(1958), - [anon_sym___bridge_transfer] = ACTIONS(1958), - [anon_sym___bridge_retained] = ACTIONS(1958), - [anon_sym___unsafe_unretained] = ACTIONS(1958), - [anon_sym___block] = ACTIONS(1958), - [anon_sym___kindof] = ACTIONS(1958), - [anon_sym___unused] = ACTIONS(1958), - [anon_sym__Complex] = ACTIONS(1958), - [anon_sym___complex] = ACTIONS(1958), - [anon_sym_IBOutlet] = ACTIONS(1958), - [anon_sym_IBInspectable] = ACTIONS(1958), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1958), - [anon_sym_signed] = ACTIONS(1958), - [anon_sym_unsigned] = ACTIONS(1958), - [anon_sym_long] = ACTIONS(1958), - [anon_sym_short] = ACTIONS(1958), - [sym_primitive_type] = ACTIONS(1958), - [anon_sym_enum] = ACTIONS(1958), - [anon_sym_NS_ENUM] = ACTIONS(1958), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1958), - [anon_sym_NS_OPTIONS] = ACTIONS(1958), - [anon_sym_struct] = ACTIONS(1958), - [anon_sym_union] = ACTIONS(1958), + [3205] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(7781), + [anon_sym_PLUS] = ACTIONS(7781), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7785), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(6952), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_CARET] = ACTIONS(6952), + [anon_sym_AMP] = ACTIONS(7793), + [anon_sym_EQ_EQ] = ACTIONS(7795), + [anon_sym_BANG_EQ] = ACTIONS(7795), + [anon_sym_GT] = ACTIONS(7797), + [anon_sym_GT_EQ] = ACTIONS(7799), + [anon_sym_LT_EQ] = ACTIONS(7799), + [anon_sym_LT] = ACTIONS(7797), + [anon_sym_LT_LT] = ACTIONS(7801), + [anon_sym_GT_GT] = ACTIONS(7801), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(1958), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1958), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1958), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1958), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1958), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1958), - [anon_sym_NS_AVAILABLE] = ACTIONS(1958), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1958), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_API_AVAILABLE] = ACTIONS(1958), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_API_DEPRECATED] = ACTIONS(1958), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1958), - [anon_sym___deprecated_msg] = ACTIONS(1958), - [anon_sym___deprecated_enum_msg] = ACTIONS(1958), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1958), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1958), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1958), - [anon_sym_typeof] = ACTIONS(1958), - [anon_sym___typeof] = ACTIONS(1958), - [anon_sym___typeof__] = ACTIONS(1958), - [sym_id] = ACTIONS(1958), - [sym_instancetype] = ACTIONS(1958), - [sym_Class] = ACTIONS(1958), - [sym_SEL] = ACTIONS(1958), - [sym_IMP] = ACTIONS(1958), - [sym_BOOL] = ACTIONS(1958), - [sym_auto] = ACTIONS(1958), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3291] = { - [sym_identifier] = ACTIONS(7742), - [aux_sym_preproc_def_token1] = ACTIONS(7742), - [aux_sym_preproc_if_token1] = ACTIONS(7742), - [aux_sym_preproc_if_token2] = ACTIONS(7742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7742), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7742), - [sym_preproc_directive] = ACTIONS(7742), - [anon_sym_extern] = ACTIONS(7742), - [anon_sym___attribute] = ACTIONS(7742), - [anon_sym___attribute__] = ACTIONS(7742), - [anon_sym___declspec] = ACTIONS(7742), - [anon_sym_static] = ACTIONS(7742), - [anon_sym_auto] = ACTIONS(7742), - [anon_sym_register] = ACTIONS(7742), - [anon_sym_inline] = ACTIONS(7742), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7742), - [anon_sym_const] = ACTIONS(7742), - [anon_sym_volatile] = ACTIONS(7742), - [anon_sym_restrict] = ACTIONS(7742), - [anon_sym__Atomic] = ACTIONS(7742), - [anon_sym_in] = ACTIONS(7742), - [anon_sym_out] = ACTIONS(7742), - [anon_sym_inout] = ACTIONS(7742), - [anon_sym_bycopy] = ACTIONS(7742), - [anon_sym_byref] = ACTIONS(7742), - [anon_sym_oneway] = ACTIONS(7742), - [anon_sym__Nullable] = ACTIONS(7742), - [anon_sym__Nonnull] = ACTIONS(7742), - [anon_sym__Nullable_result] = ACTIONS(7742), - [anon_sym__Null_unspecified] = ACTIONS(7742), - [anon_sym___autoreleasing] = ACTIONS(7742), - [anon_sym___nullable] = ACTIONS(7742), - [anon_sym___nonnull] = ACTIONS(7742), - [anon_sym___strong] = ACTIONS(7742), - [anon_sym___weak] = ACTIONS(7742), - [anon_sym___bridge] = ACTIONS(7742), - [anon_sym___bridge_transfer] = ACTIONS(7742), - [anon_sym___bridge_retained] = ACTIONS(7742), - [anon_sym___unsafe_unretained] = ACTIONS(7742), - [anon_sym___block] = ACTIONS(7742), - [anon_sym___kindof] = ACTIONS(7742), - [anon_sym___unused] = ACTIONS(7742), - [anon_sym__Complex] = ACTIONS(7742), - [anon_sym___complex] = ACTIONS(7742), - [anon_sym_IBOutlet] = ACTIONS(7742), - [anon_sym_IBInspectable] = ACTIONS(7742), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7742), - [anon_sym_signed] = ACTIONS(7742), - [anon_sym_unsigned] = ACTIONS(7742), - [anon_sym_long] = ACTIONS(7742), - [anon_sym_short] = ACTIONS(7742), - [sym_primitive_type] = ACTIONS(7742), - [anon_sym_enum] = ACTIONS(7742), - [anon_sym_NS_ENUM] = ACTIONS(7742), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7742), - [anon_sym_NS_OPTIONS] = ACTIONS(7742), - [anon_sym_struct] = ACTIONS(7742), - [anon_sym_union] = ACTIONS(7742), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7742), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7742), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7742), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7742), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7742), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7742), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7742), - [anon_sym_NS_AVAILABLE] = ACTIONS(7742), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7742), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7742), - [anon_sym_API_AVAILABLE] = ACTIONS(7742), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7742), - [anon_sym_API_DEPRECATED] = ACTIONS(7742), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7742), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7742), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7742), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7742), - [anon_sym___deprecated_msg] = ACTIONS(7742), - [anon_sym___deprecated_enum_msg] = ACTIONS(7742), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7742), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7742), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7742), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7742), - [anon_sym_typeof] = ACTIONS(7742), - [anon_sym___typeof] = ACTIONS(7742), - [anon_sym___typeof__] = ACTIONS(7742), - [sym_id] = ACTIONS(7742), - [sym_instancetype] = ACTIONS(7742), - [sym_Class] = ACTIONS(7742), - [sym_SEL] = ACTIONS(7742), - [sym_IMP] = ACTIONS(7742), - [sym_BOOL] = ACTIONS(7742), - [sym_auto] = ACTIONS(7742), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3292] = { - [sym_identifier] = ACTIONS(2090), - [aux_sym_preproc_def_token1] = ACTIONS(2090), - [aux_sym_preproc_if_token1] = ACTIONS(2090), - [aux_sym_preproc_if_token2] = ACTIONS(2090), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2090), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2090), - [sym_preproc_directive] = ACTIONS(2090), - [anon_sym_extern] = ACTIONS(2090), - [anon_sym___attribute] = ACTIONS(2090), - [anon_sym___attribute__] = ACTIONS(2090), - [anon_sym___declspec] = ACTIONS(2090), - [anon_sym_static] = ACTIONS(2090), - [anon_sym_auto] = ACTIONS(2090), - [anon_sym_register] = ACTIONS(2090), - [anon_sym_inline] = ACTIONS(2090), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2090), - [anon_sym_volatile] = ACTIONS(2090), - [anon_sym_restrict] = ACTIONS(2090), - [anon_sym__Atomic] = ACTIONS(2090), - [anon_sym_in] = ACTIONS(2090), - [anon_sym_out] = ACTIONS(2090), - [anon_sym_inout] = ACTIONS(2090), - [anon_sym_bycopy] = ACTIONS(2090), - [anon_sym_byref] = ACTIONS(2090), - [anon_sym_oneway] = ACTIONS(2090), - [anon_sym__Nullable] = ACTIONS(2090), - [anon_sym__Nonnull] = ACTIONS(2090), - [anon_sym__Nullable_result] = ACTIONS(2090), - [anon_sym__Null_unspecified] = ACTIONS(2090), - [anon_sym___autoreleasing] = ACTIONS(2090), - [anon_sym___nullable] = ACTIONS(2090), - [anon_sym___nonnull] = ACTIONS(2090), - [anon_sym___strong] = ACTIONS(2090), - [anon_sym___weak] = ACTIONS(2090), - [anon_sym___bridge] = ACTIONS(2090), - [anon_sym___bridge_transfer] = ACTIONS(2090), - [anon_sym___bridge_retained] = ACTIONS(2090), - [anon_sym___unsafe_unretained] = ACTIONS(2090), - [anon_sym___block] = ACTIONS(2090), - [anon_sym___kindof] = ACTIONS(2090), - [anon_sym___unused] = ACTIONS(2090), - [anon_sym__Complex] = ACTIONS(2090), - [anon_sym___complex] = ACTIONS(2090), - [anon_sym_IBOutlet] = ACTIONS(2090), - [anon_sym_IBInspectable] = ACTIONS(2090), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2090), - [anon_sym_signed] = ACTIONS(2090), - [anon_sym_unsigned] = ACTIONS(2090), - [anon_sym_long] = ACTIONS(2090), - [anon_sym_short] = ACTIONS(2090), - [sym_primitive_type] = ACTIONS(2090), - [anon_sym_enum] = ACTIONS(2090), - [anon_sym_NS_ENUM] = ACTIONS(2090), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(2090), - [anon_sym_NS_OPTIONS] = ACTIONS(2090), - [anon_sym_struct] = ACTIONS(2090), - [anon_sym_union] = ACTIONS(2090), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(2090), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2090), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2090), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2090), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2090), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2090), - [anon_sym_NS_AVAILABLE] = ACTIONS(2090), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2090), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_API_AVAILABLE] = ACTIONS(2090), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_API_DEPRECATED] = ACTIONS(2090), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2090), - [anon_sym___deprecated_msg] = ACTIONS(2090), - [anon_sym___deprecated_enum_msg] = ACTIONS(2090), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2090), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2090), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2090), - [anon_sym_typeof] = ACTIONS(2090), - [anon_sym___typeof] = ACTIONS(2090), - [anon_sym___typeof__] = ACTIONS(2090), - [sym_id] = ACTIONS(2090), - [sym_instancetype] = ACTIONS(2090), - [sym_Class] = ACTIONS(2090), - [sym_SEL] = ACTIONS(2090), - [sym_IMP] = ACTIONS(2090), - [sym_BOOL] = ACTIONS(2090), - [sym_auto] = ACTIONS(2090), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3293] = { - [sym_identifier] = ACTIONS(7714), - [aux_sym_preproc_def_token1] = ACTIONS(7714), - [aux_sym_preproc_if_token1] = ACTIONS(7714), - [aux_sym_preproc_if_token2] = ACTIONS(7714), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7714), - [sym_preproc_directive] = ACTIONS(7714), - [anon_sym_extern] = ACTIONS(7714), - [anon_sym___attribute] = ACTIONS(7714), - [anon_sym___attribute__] = ACTIONS(7714), - [anon_sym___declspec] = ACTIONS(7714), - [anon_sym_static] = ACTIONS(7714), - [anon_sym_auto] = ACTIONS(7714), - [anon_sym_register] = ACTIONS(7714), - [anon_sym_inline] = ACTIONS(7714), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7714), - [anon_sym_const] = ACTIONS(7714), - [anon_sym_volatile] = ACTIONS(7714), - [anon_sym_restrict] = ACTIONS(7714), - [anon_sym__Atomic] = ACTIONS(7714), - [anon_sym_in] = ACTIONS(7714), - [anon_sym_out] = ACTIONS(7714), - [anon_sym_inout] = ACTIONS(7714), - [anon_sym_bycopy] = ACTIONS(7714), - [anon_sym_byref] = ACTIONS(7714), - [anon_sym_oneway] = ACTIONS(7714), - [anon_sym__Nullable] = ACTIONS(7714), - [anon_sym__Nonnull] = ACTIONS(7714), - [anon_sym__Nullable_result] = ACTIONS(7714), - [anon_sym__Null_unspecified] = ACTIONS(7714), - [anon_sym___autoreleasing] = ACTIONS(7714), - [anon_sym___nullable] = ACTIONS(7714), - [anon_sym___nonnull] = ACTIONS(7714), - [anon_sym___strong] = ACTIONS(7714), - [anon_sym___weak] = ACTIONS(7714), - [anon_sym___bridge] = ACTIONS(7714), - [anon_sym___bridge_transfer] = ACTIONS(7714), - [anon_sym___bridge_retained] = ACTIONS(7714), - [anon_sym___unsafe_unretained] = ACTIONS(7714), - [anon_sym___block] = ACTIONS(7714), - [anon_sym___kindof] = ACTIONS(7714), - [anon_sym___unused] = ACTIONS(7714), - [anon_sym__Complex] = ACTIONS(7714), - [anon_sym___complex] = ACTIONS(7714), - [anon_sym_IBOutlet] = ACTIONS(7714), - [anon_sym_IBInspectable] = ACTIONS(7714), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7714), - [anon_sym_signed] = ACTIONS(7714), - [anon_sym_unsigned] = ACTIONS(7714), - [anon_sym_long] = ACTIONS(7714), - [anon_sym_short] = ACTIONS(7714), - [sym_primitive_type] = ACTIONS(7714), - [anon_sym_enum] = ACTIONS(7714), - [anon_sym_NS_ENUM] = ACTIONS(7714), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7714), - [anon_sym_NS_OPTIONS] = ACTIONS(7714), - [anon_sym_struct] = ACTIONS(7714), - [anon_sym_union] = ACTIONS(7714), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7714), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7714), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7714), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7714), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7714), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7714), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7714), - [anon_sym_NS_AVAILABLE] = ACTIONS(7714), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7714), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7714), - [anon_sym_API_AVAILABLE] = ACTIONS(7714), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7714), - [anon_sym_API_DEPRECATED] = ACTIONS(7714), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7714), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7714), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7714), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7714), - [anon_sym___deprecated_msg] = ACTIONS(7714), - [anon_sym___deprecated_enum_msg] = ACTIONS(7714), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7714), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7714), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7714), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7714), - [anon_sym_typeof] = ACTIONS(7714), - [anon_sym___typeof] = ACTIONS(7714), - [anon_sym___typeof__] = ACTIONS(7714), - [sym_id] = ACTIONS(7714), - [sym_instancetype] = ACTIONS(7714), - [sym_Class] = ACTIONS(7714), - [sym_SEL] = ACTIONS(7714), - [sym_IMP] = ACTIONS(7714), - [sym_BOOL] = ACTIONS(7714), - [sym_auto] = ACTIONS(7714), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3294] = { - [sym_identifier] = ACTIONS(7730), - [aux_sym_preproc_def_token1] = ACTIONS(7730), - [aux_sym_preproc_if_token1] = ACTIONS(7730), - [aux_sym_preproc_if_token2] = ACTIONS(7730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7730), - [sym_preproc_directive] = ACTIONS(7730), - [anon_sym_extern] = ACTIONS(7730), - [anon_sym___attribute] = ACTIONS(7730), - [anon_sym___attribute__] = ACTIONS(7730), - [anon_sym___declspec] = ACTIONS(7730), - [anon_sym_static] = ACTIONS(7730), - [anon_sym_auto] = ACTIONS(7730), - [anon_sym_register] = ACTIONS(7730), - [anon_sym_inline] = ACTIONS(7730), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7730), - [anon_sym_const] = ACTIONS(7730), - [anon_sym_volatile] = ACTIONS(7730), - [anon_sym_restrict] = ACTIONS(7730), - [anon_sym__Atomic] = ACTIONS(7730), - [anon_sym_in] = ACTIONS(7730), - [anon_sym_out] = ACTIONS(7730), - [anon_sym_inout] = ACTIONS(7730), - [anon_sym_bycopy] = ACTIONS(7730), - [anon_sym_byref] = ACTIONS(7730), - [anon_sym_oneway] = ACTIONS(7730), - [anon_sym__Nullable] = ACTIONS(7730), - [anon_sym__Nonnull] = ACTIONS(7730), - [anon_sym__Nullable_result] = ACTIONS(7730), - [anon_sym__Null_unspecified] = ACTIONS(7730), - [anon_sym___autoreleasing] = ACTIONS(7730), - [anon_sym___nullable] = ACTIONS(7730), - [anon_sym___nonnull] = ACTIONS(7730), - [anon_sym___strong] = ACTIONS(7730), - [anon_sym___weak] = ACTIONS(7730), - [anon_sym___bridge] = ACTIONS(7730), - [anon_sym___bridge_transfer] = ACTIONS(7730), - [anon_sym___bridge_retained] = ACTIONS(7730), - [anon_sym___unsafe_unretained] = ACTIONS(7730), - [anon_sym___block] = ACTIONS(7730), - [anon_sym___kindof] = ACTIONS(7730), - [anon_sym___unused] = ACTIONS(7730), - [anon_sym__Complex] = ACTIONS(7730), - [anon_sym___complex] = ACTIONS(7730), - [anon_sym_IBOutlet] = ACTIONS(7730), - [anon_sym_IBInspectable] = ACTIONS(7730), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7730), - [anon_sym_signed] = ACTIONS(7730), - [anon_sym_unsigned] = ACTIONS(7730), - [anon_sym_long] = ACTIONS(7730), - [anon_sym_short] = ACTIONS(7730), - [sym_primitive_type] = ACTIONS(7730), - [anon_sym_enum] = ACTIONS(7730), - [anon_sym_NS_ENUM] = ACTIONS(7730), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7730), - [anon_sym_NS_OPTIONS] = ACTIONS(7730), - [anon_sym_struct] = ACTIONS(7730), - [anon_sym_union] = ACTIONS(7730), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7730), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7730), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7730), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7730), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7730), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7730), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7730), - [anon_sym_NS_AVAILABLE] = ACTIONS(7730), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7730), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7730), - [anon_sym_API_AVAILABLE] = ACTIONS(7730), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7730), - [anon_sym_API_DEPRECATED] = ACTIONS(7730), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7730), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7730), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7730), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7730), - [anon_sym___deprecated_msg] = ACTIONS(7730), - [anon_sym___deprecated_enum_msg] = ACTIONS(7730), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7730), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7730), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7730), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7730), - [anon_sym_typeof] = ACTIONS(7730), - [anon_sym___typeof] = ACTIONS(7730), - [anon_sym___typeof__] = ACTIONS(7730), - [sym_id] = ACTIONS(7730), - [sym_instancetype] = ACTIONS(7730), - [sym_Class] = ACTIONS(7730), - [sym_SEL] = ACTIONS(7730), - [sym_IMP] = ACTIONS(7730), - [sym_BOOL] = ACTIONS(7730), - [sym_auto] = ACTIONS(7730), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3295] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7837), - [anon_sym_PLUS] = ACTIONS(7837), - [anon_sym_STAR] = ACTIONS(7831), - [anon_sym_SLASH] = ACTIONS(7833), - [anon_sym_PERCENT] = ACTIONS(7831), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7066), - [anon_sym_PIPE] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7857), - [anon_sym_AMP] = ACTIONS(7859), - [anon_sym_EQ_EQ] = ACTIONS(7861), - [anon_sym_BANG_EQ] = ACTIONS(7861), - [anon_sym_GT] = ACTIONS(7863), - [anon_sym_GT_EQ] = ACTIONS(7865), - [anon_sym_LT_EQ] = ACTIONS(7865), - [anon_sym_LT] = ACTIONS(7863), - [anon_sym_LT_LT] = ACTIONS(7839), - [anon_sym_GT_GT] = ACTIONS(7839), - [anon_sym_SEMI] = ACTIONS(7066), - [anon_sym___attribute] = ACTIONS(7064), - [anon_sym___attribute__] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7066), - [anon_sym_const] = ACTIONS(7064), - [anon_sym_volatile] = ACTIONS(7064), - [anon_sym_restrict] = ACTIONS(7064), - [anon_sym__Atomic] = ACTIONS(7064), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_out] = ACTIONS(7064), - [anon_sym_inout] = ACTIONS(7064), - [anon_sym_bycopy] = ACTIONS(7064), - [anon_sym_byref] = ACTIONS(7064), - [anon_sym_oneway] = ACTIONS(7064), - [anon_sym__Nullable] = ACTIONS(7064), - [anon_sym__Nonnull] = ACTIONS(7064), - [anon_sym__Nullable_result] = ACTIONS(7064), - [anon_sym__Null_unspecified] = ACTIONS(7064), - [anon_sym___autoreleasing] = ACTIONS(7064), - [anon_sym___nullable] = ACTIONS(7064), - [anon_sym___nonnull] = ACTIONS(7064), - [anon_sym___strong] = ACTIONS(7064), - [anon_sym___weak] = ACTIONS(7064), - [anon_sym___bridge] = ACTIONS(7064), - [anon_sym___bridge_transfer] = ACTIONS(7064), - [anon_sym___bridge_retained] = ACTIONS(7064), - [anon_sym___unsafe_unretained] = ACTIONS(7064), - [anon_sym___block] = ACTIONS(7064), - [anon_sym___kindof] = ACTIONS(7064), - [anon_sym___unused] = ACTIONS(7064), - [anon_sym__Complex] = ACTIONS(7064), - [anon_sym___complex] = ACTIONS(7064), - [anon_sym_IBOutlet] = ACTIONS(7064), - [anon_sym_IBInspectable] = ACTIONS(7064), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7827), - [anon_sym_PLUS_PLUS] = ACTIONS(7827), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7064), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7064), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE] = ACTIONS(7064), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_API_AVAILABLE] = ACTIONS(7064), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_API_DEPRECATED] = ACTIONS(7064), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7064), - [anon_sym___deprecated_msg] = ACTIONS(7064), - [anon_sym___deprecated_enum_msg] = ACTIONS(7064), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7064), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7064), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -522604,99 +511177,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3296] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7837), - [anon_sym_PLUS] = ACTIONS(7837), - [anon_sym_STAR] = ACTIONS(7831), - [anon_sym_SLASH] = ACTIONS(7833), - [anon_sym_PERCENT] = ACTIONS(7831), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7066), - [anon_sym_PIPE] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7066), - [anon_sym_AMP] = ACTIONS(7859), - [anon_sym_EQ_EQ] = ACTIONS(7861), - [anon_sym_BANG_EQ] = ACTIONS(7861), - [anon_sym_GT] = ACTIONS(7863), - [anon_sym_GT_EQ] = ACTIONS(7865), - [anon_sym_LT_EQ] = ACTIONS(7865), - [anon_sym_LT] = ACTIONS(7863), - [anon_sym_LT_LT] = ACTIONS(7839), - [anon_sym_GT_GT] = ACTIONS(7839), - [anon_sym_SEMI] = ACTIONS(7066), - [anon_sym___attribute] = ACTIONS(7064), - [anon_sym___attribute__] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7066), - [anon_sym_const] = ACTIONS(7064), - [anon_sym_volatile] = ACTIONS(7064), - [anon_sym_restrict] = ACTIONS(7064), - [anon_sym__Atomic] = ACTIONS(7064), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_out] = ACTIONS(7064), - [anon_sym_inout] = ACTIONS(7064), - [anon_sym_bycopy] = ACTIONS(7064), - [anon_sym_byref] = ACTIONS(7064), - [anon_sym_oneway] = ACTIONS(7064), - [anon_sym__Nullable] = ACTIONS(7064), - [anon_sym__Nonnull] = ACTIONS(7064), - [anon_sym__Nullable_result] = ACTIONS(7064), - [anon_sym__Null_unspecified] = ACTIONS(7064), - [anon_sym___autoreleasing] = ACTIONS(7064), - [anon_sym___nullable] = ACTIONS(7064), - [anon_sym___nonnull] = ACTIONS(7064), - [anon_sym___strong] = ACTIONS(7064), - [anon_sym___weak] = ACTIONS(7064), - [anon_sym___bridge] = ACTIONS(7064), - [anon_sym___bridge_transfer] = ACTIONS(7064), - [anon_sym___bridge_retained] = ACTIONS(7064), - [anon_sym___unsafe_unretained] = ACTIONS(7064), - [anon_sym___block] = ACTIONS(7064), - [anon_sym___kindof] = ACTIONS(7064), - [anon_sym___unused] = ACTIONS(7064), - [anon_sym__Complex] = ACTIONS(7064), - [anon_sym___complex] = ACTIONS(7064), - [anon_sym_IBOutlet] = ACTIONS(7064), - [anon_sym_IBInspectable] = ACTIONS(7064), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7827), - [anon_sym_PLUS_PLUS] = ACTIONS(7827), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [3206] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(7781), + [anon_sym_PLUS] = ACTIONS(7781), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7785), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(6952), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_CARET] = ACTIONS(6952), + [anon_sym_AMP] = ACTIONS(6950), + [anon_sym_EQ_EQ] = ACTIONS(7795), + [anon_sym_BANG_EQ] = ACTIONS(7795), + [anon_sym_GT] = ACTIONS(7797), + [anon_sym_GT_EQ] = ACTIONS(7799), + [anon_sym_LT_EQ] = ACTIONS(7799), + [anon_sym_LT] = ACTIONS(7797), + [anon_sym_LT_LT] = ACTIONS(7801), + [anon_sym_GT_GT] = ACTIONS(7801), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7064), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7064), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE] = ACTIONS(7064), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_API_AVAILABLE] = ACTIONS(7064), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_API_DEPRECATED] = ACTIONS(7064), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7064), - [anon_sym___deprecated_msg] = ACTIONS(7064), - [anon_sym___deprecated_enum_msg] = ACTIONS(7064), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7064), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7064), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -522704,1307 +511277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3297] = { - [sym_string_literal] = STATE(2739), - [sym_identifier] = ACTIONS(7867), - [anon_sym_extern] = ACTIONS(7867), - [anon_sym___attribute] = ACTIONS(7867), - [anon_sym___attribute__] = ACTIONS(7867), - [anon_sym___declspec] = ACTIONS(7867), - [anon_sym_static] = ACTIONS(7867), - [anon_sym_auto] = ACTIONS(7867), - [anon_sym_register] = ACTIONS(7867), - [anon_sym_inline] = ACTIONS(7867), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7867), - [anon_sym_const] = ACTIONS(7867), - [anon_sym_volatile] = ACTIONS(7867), - [anon_sym_restrict] = ACTIONS(7867), - [anon_sym__Atomic] = ACTIONS(7867), - [anon_sym_in] = ACTIONS(7867), - [anon_sym_out] = ACTIONS(7867), - [anon_sym_inout] = ACTIONS(7867), - [anon_sym_bycopy] = ACTIONS(7867), - [anon_sym_byref] = ACTIONS(7867), - [anon_sym_oneway] = ACTIONS(7867), - [anon_sym__Nullable] = ACTIONS(7867), - [anon_sym__Nonnull] = ACTIONS(7867), - [anon_sym__Nullable_result] = ACTIONS(7867), - [anon_sym__Null_unspecified] = ACTIONS(7867), - [anon_sym___autoreleasing] = ACTIONS(7867), - [anon_sym___nullable] = ACTIONS(7867), - [anon_sym___nonnull] = ACTIONS(7867), - [anon_sym___strong] = ACTIONS(7867), - [anon_sym___weak] = ACTIONS(7867), - [anon_sym___bridge] = ACTIONS(7867), - [anon_sym___bridge_transfer] = ACTIONS(7867), - [anon_sym___bridge_retained] = ACTIONS(7867), - [anon_sym___unsafe_unretained] = ACTIONS(7867), - [anon_sym___block] = ACTIONS(7867), - [anon_sym___kindof] = ACTIONS(7867), - [anon_sym___unused] = ACTIONS(7867), - [anon_sym__Complex] = ACTIONS(7867), - [anon_sym___complex] = ACTIONS(7867), - [anon_sym_IBOutlet] = ACTIONS(7867), - [anon_sym_IBInspectable] = ACTIONS(7867), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7867), - [anon_sym_signed] = ACTIONS(7867), - [anon_sym_unsigned] = ACTIONS(7867), - [anon_sym_long] = ACTIONS(7867), - [anon_sym_short] = ACTIONS(7867), - [sym_primitive_type] = ACTIONS(7867), - [anon_sym_enum] = ACTIONS(7867), - [anon_sym_NS_ENUM] = ACTIONS(7867), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7867), - [anon_sym_NS_OPTIONS] = ACTIONS(7867), - [anon_sym_struct] = ACTIONS(7867), - [anon_sym_union] = ACTIONS(7867), - [anon_sym_L_DQUOTE] = ACTIONS(7869), - [anon_sym_u_DQUOTE] = ACTIONS(7869), - [anon_sym_U_DQUOTE] = ACTIONS(7869), - [anon_sym_u8_DQUOTE] = ACTIONS(7869), - [anon_sym_DQUOTE] = ACTIONS(7869), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7867), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7867), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7867), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7867), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7867), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7867), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7867), - [anon_sym_NS_AVAILABLE] = ACTIONS(7867), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7867), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_API_AVAILABLE] = ACTIONS(7867), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7867), - [anon_sym_API_DEPRECATED] = ACTIONS(7867), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7867), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7867), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7867), - [anon_sym___deprecated_msg] = ACTIONS(7867), - [anon_sym___deprecated_enum_msg] = ACTIONS(7867), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7867), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7867), - [anon_sym_typeof] = ACTIONS(7867), - [anon_sym___typeof] = ACTIONS(7867), - [anon_sym___typeof__] = ACTIONS(7867), - [sym_id] = ACTIONS(7867), - [sym_instancetype] = ACTIONS(7867), - [sym_Class] = ACTIONS(7867), - [sym_SEL] = ACTIONS(7867), - [sym_IMP] = ACTIONS(7867), - [sym_BOOL] = ACTIONS(7867), - [sym_auto] = ACTIONS(7867), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3298] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7837), - [anon_sym_PLUS] = ACTIONS(7837), - [anon_sym_STAR] = ACTIONS(7831), - [anon_sym_SLASH] = ACTIONS(7833), - [anon_sym_PERCENT] = ACTIONS(7831), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7066), - [anon_sym_PIPE] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7066), - [anon_sym_AMP] = ACTIONS(7064), - [anon_sym_EQ_EQ] = ACTIONS(7861), - [anon_sym_BANG_EQ] = ACTIONS(7861), - [anon_sym_GT] = ACTIONS(7863), - [anon_sym_GT_EQ] = ACTIONS(7865), - [anon_sym_LT_EQ] = ACTIONS(7865), - [anon_sym_LT] = ACTIONS(7863), - [anon_sym_LT_LT] = ACTIONS(7839), - [anon_sym_GT_GT] = ACTIONS(7839), - [anon_sym_SEMI] = ACTIONS(7066), - [anon_sym___attribute] = ACTIONS(7064), - [anon_sym___attribute__] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7066), - [anon_sym_const] = ACTIONS(7064), - [anon_sym_volatile] = ACTIONS(7064), - [anon_sym_restrict] = ACTIONS(7064), - [anon_sym__Atomic] = ACTIONS(7064), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_out] = ACTIONS(7064), - [anon_sym_inout] = ACTIONS(7064), - [anon_sym_bycopy] = ACTIONS(7064), - [anon_sym_byref] = ACTIONS(7064), - [anon_sym_oneway] = ACTIONS(7064), - [anon_sym__Nullable] = ACTIONS(7064), - [anon_sym__Nonnull] = ACTIONS(7064), - [anon_sym__Nullable_result] = ACTIONS(7064), - [anon_sym__Null_unspecified] = ACTIONS(7064), - [anon_sym___autoreleasing] = ACTIONS(7064), - [anon_sym___nullable] = ACTIONS(7064), - [anon_sym___nonnull] = ACTIONS(7064), - [anon_sym___strong] = ACTIONS(7064), - [anon_sym___weak] = ACTIONS(7064), - [anon_sym___bridge] = ACTIONS(7064), - [anon_sym___bridge_transfer] = ACTIONS(7064), - [anon_sym___bridge_retained] = ACTIONS(7064), - [anon_sym___unsafe_unretained] = ACTIONS(7064), - [anon_sym___block] = ACTIONS(7064), - [anon_sym___kindof] = ACTIONS(7064), - [anon_sym___unused] = ACTIONS(7064), - [anon_sym__Complex] = ACTIONS(7064), - [anon_sym___complex] = ACTIONS(7064), - [anon_sym_IBOutlet] = ACTIONS(7064), - [anon_sym_IBInspectable] = ACTIONS(7064), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7827), - [anon_sym_PLUS_PLUS] = ACTIONS(7827), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7064), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7064), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE] = ACTIONS(7064), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_API_AVAILABLE] = ACTIONS(7064), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_API_DEPRECATED] = ACTIONS(7064), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7064), - [anon_sym___deprecated_msg] = ACTIONS(7064), - [anon_sym___deprecated_enum_msg] = ACTIONS(7064), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7064), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7064), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3299] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7837), - [anon_sym_PLUS] = ACTIONS(7837), - [anon_sym_STAR] = ACTIONS(7831), - [anon_sym_SLASH] = ACTIONS(7833), - [anon_sym_PERCENT] = ACTIONS(7831), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7066), - [anon_sym_PIPE] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7066), - [anon_sym_AMP] = ACTIONS(7064), - [anon_sym_EQ_EQ] = ACTIONS(7066), - [anon_sym_BANG_EQ] = ACTIONS(7066), - [anon_sym_GT] = ACTIONS(7863), - [anon_sym_GT_EQ] = ACTIONS(7865), - [anon_sym_LT_EQ] = ACTIONS(7865), - [anon_sym_LT] = ACTIONS(7863), - [anon_sym_LT_LT] = ACTIONS(7839), - [anon_sym_GT_GT] = ACTIONS(7839), - [anon_sym_SEMI] = ACTIONS(7066), - [anon_sym___attribute] = ACTIONS(7064), - [anon_sym___attribute__] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7066), - [anon_sym_const] = ACTIONS(7064), - [anon_sym_volatile] = ACTIONS(7064), - [anon_sym_restrict] = ACTIONS(7064), - [anon_sym__Atomic] = ACTIONS(7064), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_out] = ACTIONS(7064), - [anon_sym_inout] = ACTIONS(7064), - [anon_sym_bycopy] = ACTIONS(7064), - [anon_sym_byref] = ACTIONS(7064), - [anon_sym_oneway] = ACTIONS(7064), - [anon_sym__Nullable] = ACTIONS(7064), - [anon_sym__Nonnull] = ACTIONS(7064), - [anon_sym__Nullable_result] = ACTIONS(7064), - [anon_sym__Null_unspecified] = ACTIONS(7064), - [anon_sym___autoreleasing] = ACTIONS(7064), - [anon_sym___nullable] = ACTIONS(7064), - [anon_sym___nonnull] = ACTIONS(7064), - [anon_sym___strong] = ACTIONS(7064), - [anon_sym___weak] = ACTIONS(7064), - [anon_sym___bridge] = ACTIONS(7064), - [anon_sym___bridge_transfer] = ACTIONS(7064), - [anon_sym___bridge_retained] = ACTIONS(7064), - [anon_sym___unsafe_unretained] = ACTIONS(7064), - [anon_sym___block] = ACTIONS(7064), - [anon_sym___kindof] = ACTIONS(7064), - [anon_sym___unused] = ACTIONS(7064), - [anon_sym__Complex] = ACTIONS(7064), - [anon_sym___complex] = ACTIONS(7064), - [anon_sym_IBOutlet] = ACTIONS(7064), - [anon_sym_IBInspectable] = ACTIONS(7064), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7827), - [anon_sym_PLUS_PLUS] = ACTIONS(7827), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7064), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7064), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE] = ACTIONS(7064), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_API_AVAILABLE] = ACTIONS(7064), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_API_DEPRECATED] = ACTIONS(7064), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7064), - [anon_sym___deprecated_msg] = ACTIONS(7064), - [anon_sym___deprecated_enum_msg] = ACTIONS(7064), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7064), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7064), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3300] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7074), - [anon_sym_COMMA] = ACTIONS(7076), - [anon_sym_RPAREN] = ACTIONS(7076), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7837), - [anon_sym_PLUS] = ACTIONS(7837), - [anon_sym_STAR] = ACTIONS(7831), - [anon_sym_SLASH] = ACTIONS(7833), - [anon_sym_PERCENT] = ACTIONS(7831), - [anon_sym_PIPE_PIPE] = ACTIONS(7871), - [anon_sym_AMP_AMP] = ACTIONS(7853), - [anon_sym_PIPE] = ACTIONS(7855), - [anon_sym_CARET] = ACTIONS(7857), - [anon_sym_AMP] = ACTIONS(7859), - [anon_sym_EQ_EQ] = ACTIONS(7861), - [anon_sym_BANG_EQ] = ACTIONS(7861), - [anon_sym_GT] = ACTIONS(7863), - [anon_sym_GT_EQ] = ACTIONS(7865), - [anon_sym_LT_EQ] = ACTIONS(7865), - [anon_sym_LT] = ACTIONS(7863), - [anon_sym_LT_LT] = ACTIONS(7839), - [anon_sym_GT_GT] = ACTIONS(7839), - [anon_sym_SEMI] = ACTIONS(7076), - [anon_sym___attribute] = ACTIONS(7074), - [anon_sym___attribute__] = ACTIONS(7074), - [anon_sym_RBRACE] = ACTIONS(7076), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7076), - [anon_sym_const] = ACTIONS(7074), - [anon_sym_volatile] = ACTIONS(7074), - [anon_sym_restrict] = ACTIONS(7074), - [anon_sym__Atomic] = ACTIONS(7074), - [anon_sym_in] = ACTIONS(7074), - [anon_sym_out] = ACTIONS(7074), - [anon_sym_inout] = ACTIONS(7074), - [anon_sym_bycopy] = ACTIONS(7074), - [anon_sym_byref] = ACTIONS(7074), - [anon_sym_oneway] = ACTIONS(7074), - [anon_sym__Nullable] = ACTIONS(7074), - [anon_sym__Nonnull] = ACTIONS(7074), - [anon_sym__Nullable_result] = ACTIONS(7074), - [anon_sym__Null_unspecified] = ACTIONS(7074), - [anon_sym___autoreleasing] = ACTIONS(7074), - [anon_sym___nullable] = ACTIONS(7074), - [anon_sym___nonnull] = ACTIONS(7074), - [anon_sym___strong] = ACTIONS(7074), - [anon_sym___weak] = ACTIONS(7074), - [anon_sym___bridge] = ACTIONS(7074), - [anon_sym___bridge_transfer] = ACTIONS(7074), - [anon_sym___bridge_retained] = ACTIONS(7074), - [anon_sym___unsafe_unretained] = ACTIONS(7074), - [anon_sym___block] = ACTIONS(7074), - [anon_sym___kindof] = ACTIONS(7074), - [anon_sym___unused] = ACTIONS(7074), - [anon_sym__Complex] = ACTIONS(7074), - [anon_sym___complex] = ACTIONS(7074), - [anon_sym_IBOutlet] = ACTIONS(7074), - [anon_sym_IBInspectable] = ACTIONS(7074), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7074), - [anon_sym_COLON] = ACTIONS(7076), - [anon_sym_QMARK] = ACTIONS(7076), - [anon_sym_DASH_DASH] = ACTIONS(7827), - [anon_sym_PLUS_PLUS] = ACTIONS(7827), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7074), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7074), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7074), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7074), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7074), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7074), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7074), - [anon_sym_NS_AVAILABLE] = ACTIONS(7074), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7074), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7074), - [anon_sym_API_AVAILABLE] = ACTIONS(7074), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7074), - [anon_sym_API_DEPRECATED] = ACTIONS(7074), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7074), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7074), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7074), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7074), - [anon_sym___deprecated_msg] = ACTIONS(7074), - [anon_sym___deprecated_enum_msg] = ACTIONS(7074), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7074), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7074), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7074), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7074), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7074), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7074), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3301] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(6998), - [anon_sym_COMMA] = ACTIONS(7000), - [anon_sym_RPAREN] = ACTIONS(7000), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7837), - [anon_sym_PLUS] = ACTIONS(7837), - [anon_sym_STAR] = ACTIONS(7831), - [anon_sym_SLASH] = ACTIONS(7833), - [anon_sym_PERCENT] = ACTIONS(7831), - [anon_sym_PIPE_PIPE] = ACTIONS(7871), - [anon_sym_AMP_AMP] = ACTIONS(7853), - [anon_sym_PIPE] = ACTIONS(7855), - [anon_sym_CARET] = ACTIONS(7857), - [anon_sym_AMP] = ACTIONS(7859), - [anon_sym_EQ_EQ] = ACTIONS(7861), - [anon_sym_BANG_EQ] = ACTIONS(7861), - [anon_sym_GT] = ACTIONS(7863), - [anon_sym_GT_EQ] = ACTIONS(7865), - [anon_sym_LT_EQ] = ACTIONS(7865), - [anon_sym_LT] = ACTIONS(7863), - [anon_sym_LT_LT] = ACTIONS(7839), - [anon_sym_GT_GT] = ACTIONS(7839), - [anon_sym_SEMI] = ACTIONS(7000), - [anon_sym___attribute] = ACTIONS(6998), - [anon_sym___attribute__] = ACTIONS(6998), - [anon_sym_RBRACE] = ACTIONS(7000), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7000), - [anon_sym_const] = ACTIONS(6998), - [anon_sym_volatile] = ACTIONS(6998), - [anon_sym_restrict] = ACTIONS(6998), - [anon_sym__Atomic] = ACTIONS(6998), - [anon_sym_in] = ACTIONS(6998), - [anon_sym_out] = ACTIONS(6998), - [anon_sym_inout] = ACTIONS(6998), - [anon_sym_bycopy] = ACTIONS(6998), - [anon_sym_byref] = ACTIONS(6998), - [anon_sym_oneway] = ACTIONS(6998), - [anon_sym__Nullable] = ACTIONS(6998), - [anon_sym__Nonnull] = ACTIONS(6998), - [anon_sym__Nullable_result] = ACTIONS(6998), - [anon_sym__Null_unspecified] = ACTIONS(6998), - [anon_sym___autoreleasing] = ACTIONS(6998), - [anon_sym___nullable] = ACTIONS(6998), - [anon_sym___nonnull] = ACTIONS(6998), - [anon_sym___strong] = ACTIONS(6998), - [anon_sym___weak] = ACTIONS(6998), - [anon_sym___bridge] = ACTIONS(6998), - [anon_sym___bridge_transfer] = ACTIONS(6998), - [anon_sym___bridge_retained] = ACTIONS(6998), - [anon_sym___unsafe_unretained] = ACTIONS(6998), - [anon_sym___block] = ACTIONS(6998), - [anon_sym___kindof] = ACTIONS(6998), - [anon_sym___unused] = ACTIONS(6998), - [anon_sym__Complex] = ACTIONS(6998), - [anon_sym___complex] = ACTIONS(6998), - [anon_sym_IBOutlet] = ACTIONS(6998), - [anon_sym_IBInspectable] = ACTIONS(6998), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6998), - [anon_sym_COLON] = ACTIONS(7000), - [anon_sym_QMARK] = ACTIONS(7873), - [anon_sym_DASH_DASH] = ACTIONS(7827), - [anon_sym_PLUS_PLUS] = ACTIONS(7827), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6998), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6998), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6998), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6998), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6998), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6998), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6998), - [anon_sym_NS_AVAILABLE] = ACTIONS(6998), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6998), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6998), - [anon_sym_API_AVAILABLE] = ACTIONS(6998), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6998), - [anon_sym_API_DEPRECATED] = ACTIONS(6998), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6998), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6998), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6998), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6998), - [anon_sym___deprecated_msg] = ACTIONS(6998), - [anon_sym___deprecated_enum_msg] = ACTIONS(6998), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6998), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6998), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6998), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6998), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6998), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6998), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3302] = { - [sym_identifier] = ACTIONS(7786), - [aux_sym_preproc_def_token1] = ACTIONS(7786), - [aux_sym_preproc_if_token1] = ACTIONS(7786), - [aux_sym_preproc_if_token2] = ACTIONS(7786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7786), - [sym_preproc_directive] = ACTIONS(7786), - [anon_sym_extern] = ACTIONS(7786), - [anon_sym___attribute] = ACTIONS(7786), - [anon_sym___attribute__] = ACTIONS(7786), - [anon_sym___declspec] = ACTIONS(7786), - [anon_sym_static] = ACTIONS(7786), - [anon_sym_auto] = ACTIONS(7786), - [anon_sym_register] = ACTIONS(7786), - [anon_sym_inline] = ACTIONS(7786), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7786), - [anon_sym_const] = ACTIONS(7786), - [anon_sym_volatile] = ACTIONS(7786), - [anon_sym_restrict] = ACTIONS(7786), - [anon_sym__Atomic] = ACTIONS(7786), - [anon_sym_in] = ACTIONS(7786), - [anon_sym_out] = ACTIONS(7786), - [anon_sym_inout] = ACTIONS(7786), - [anon_sym_bycopy] = ACTIONS(7786), - [anon_sym_byref] = ACTIONS(7786), - [anon_sym_oneway] = ACTIONS(7786), - [anon_sym__Nullable] = ACTIONS(7786), - [anon_sym__Nonnull] = ACTIONS(7786), - [anon_sym__Nullable_result] = ACTIONS(7786), - [anon_sym__Null_unspecified] = ACTIONS(7786), - [anon_sym___autoreleasing] = ACTIONS(7786), - [anon_sym___nullable] = ACTIONS(7786), - [anon_sym___nonnull] = ACTIONS(7786), - [anon_sym___strong] = ACTIONS(7786), - [anon_sym___weak] = ACTIONS(7786), - [anon_sym___bridge] = ACTIONS(7786), - [anon_sym___bridge_transfer] = ACTIONS(7786), - [anon_sym___bridge_retained] = ACTIONS(7786), - [anon_sym___unsafe_unretained] = ACTIONS(7786), - [anon_sym___block] = ACTIONS(7786), - [anon_sym___kindof] = ACTIONS(7786), - [anon_sym___unused] = ACTIONS(7786), - [anon_sym__Complex] = ACTIONS(7786), - [anon_sym___complex] = ACTIONS(7786), - [anon_sym_IBOutlet] = ACTIONS(7786), - [anon_sym_IBInspectable] = ACTIONS(7786), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7786), - [anon_sym_signed] = ACTIONS(7786), - [anon_sym_unsigned] = ACTIONS(7786), - [anon_sym_long] = ACTIONS(7786), - [anon_sym_short] = ACTIONS(7786), - [sym_primitive_type] = ACTIONS(7786), - [anon_sym_enum] = ACTIONS(7786), - [anon_sym_NS_ENUM] = ACTIONS(7786), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7786), - [anon_sym_NS_OPTIONS] = ACTIONS(7786), - [anon_sym_struct] = ACTIONS(7786), - [anon_sym_union] = ACTIONS(7786), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7786), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7786), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7786), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7786), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7786), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7786), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7786), - [anon_sym_NS_AVAILABLE] = ACTIONS(7786), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7786), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7786), - [anon_sym_API_AVAILABLE] = ACTIONS(7786), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7786), - [anon_sym_API_DEPRECATED] = ACTIONS(7786), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7786), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7786), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7786), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7786), - [anon_sym___deprecated_msg] = ACTIONS(7786), - [anon_sym___deprecated_enum_msg] = ACTIONS(7786), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7786), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7786), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7786), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7786), - [anon_sym_typeof] = ACTIONS(7786), - [anon_sym___typeof] = ACTIONS(7786), - [anon_sym___typeof__] = ACTIONS(7786), - [sym_id] = ACTIONS(7786), - [sym_instancetype] = ACTIONS(7786), - [sym_Class] = ACTIONS(7786), - [sym_SEL] = ACTIONS(7786), - [sym_IMP] = ACTIONS(7786), - [sym_BOOL] = ACTIONS(7786), - [sym_auto] = ACTIONS(7786), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3303] = { - [sym_identifier] = ACTIONS(7728), - [aux_sym_preproc_def_token1] = ACTIONS(7728), - [aux_sym_preproc_if_token1] = ACTIONS(7728), - [aux_sym_preproc_if_token2] = ACTIONS(7728), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7728), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7728), - [sym_preproc_directive] = ACTIONS(7728), - [anon_sym_extern] = ACTIONS(7728), - [anon_sym___attribute] = ACTIONS(7728), - [anon_sym___attribute__] = ACTIONS(7728), - [anon_sym___declspec] = ACTIONS(7728), - [anon_sym_static] = ACTIONS(7728), - [anon_sym_auto] = ACTIONS(7728), - [anon_sym_register] = ACTIONS(7728), - [anon_sym_inline] = ACTIONS(7728), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7728), - [anon_sym_const] = ACTIONS(7728), - [anon_sym_volatile] = ACTIONS(7728), - [anon_sym_restrict] = ACTIONS(7728), - [anon_sym__Atomic] = ACTIONS(7728), - [anon_sym_in] = ACTIONS(7728), - [anon_sym_out] = ACTIONS(7728), - [anon_sym_inout] = ACTIONS(7728), - [anon_sym_bycopy] = ACTIONS(7728), - [anon_sym_byref] = ACTIONS(7728), - [anon_sym_oneway] = ACTIONS(7728), - [anon_sym__Nullable] = ACTIONS(7728), - [anon_sym__Nonnull] = ACTIONS(7728), - [anon_sym__Nullable_result] = ACTIONS(7728), - [anon_sym__Null_unspecified] = ACTIONS(7728), - [anon_sym___autoreleasing] = ACTIONS(7728), - [anon_sym___nullable] = ACTIONS(7728), - [anon_sym___nonnull] = ACTIONS(7728), - [anon_sym___strong] = ACTIONS(7728), - [anon_sym___weak] = ACTIONS(7728), - [anon_sym___bridge] = ACTIONS(7728), - [anon_sym___bridge_transfer] = ACTIONS(7728), - [anon_sym___bridge_retained] = ACTIONS(7728), - [anon_sym___unsafe_unretained] = ACTIONS(7728), - [anon_sym___block] = ACTIONS(7728), - [anon_sym___kindof] = ACTIONS(7728), - [anon_sym___unused] = ACTIONS(7728), - [anon_sym__Complex] = ACTIONS(7728), - [anon_sym___complex] = ACTIONS(7728), - [anon_sym_IBOutlet] = ACTIONS(7728), - [anon_sym_IBInspectable] = ACTIONS(7728), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7728), - [anon_sym_signed] = ACTIONS(7728), - [anon_sym_unsigned] = ACTIONS(7728), - [anon_sym_long] = ACTIONS(7728), - [anon_sym_short] = ACTIONS(7728), - [sym_primitive_type] = ACTIONS(7728), - [anon_sym_enum] = ACTIONS(7728), - [anon_sym_NS_ENUM] = ACTIONS(7728), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7728), - [anon_sym_NS_OPTIONS] = ACTIONS(7728), - [anon_sym_struct] = ACTIONS(7728), - [anon_sym_union] = ACTIONS(7728), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7728), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7728), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7728), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7728), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7728), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7728), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7728), - [anon_sym_NS_AVAILABLE] = ACTIONS(7728), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7728), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7728), - [anon_sym_API_AVAILABLE] = ACTIONS(7728), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7728), - [anon_sym_API_DEPRECATED] = ACTIONS(7728), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7728), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7728), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7728), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7728), - [anon_sym___deprecated_msg] = ACTIONS(7728), - [anon_sym___deprecated_enum_msg] = ACTIONS(7728), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7728), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7728), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7728), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7728), - [anon_sym_typeof] = ACTIONS(7728), - [anon_sym___typeof] = ACTIONS(7728), - [anon_sym___typeof__] = ACTIONS(7728), - [sym_id] = ACTIONS(7728), - [sym_instancetype] = ACTIONS(7728), - [sym_Class] = ACTIONS(7728), - [sym_SEL] = ACTIONS(7728), - [sym_IMP] = ACTIONS(7728), - [sym_BOOL] = ACTIONS(7728), - [sym_auto] = ACTIONS(7728), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3304] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7102), - [anon_sym_COMMA] = ACTIONS(7104), - [anon_sym_RPAREN] = ACTIONS(7104), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7102), - [anon_sym_PLUS] = ACTIONS(7102), - [anon_sym_STAR] = ACTIONS(7104), - [anon_sym_SLASH] = ACTIONS(7102), - [anon_sym_PERCENT] = ACTIONS(7104), - [anon_sym_PIPE_PIPE] = ACTIONS(7104), - [anon_sym_AMP_AMP] = ACTIONS(7104), - [anon_sym_PIPE] = ACTIONS(7102), - [anon_sym_CARET] = ACTIONS(7104), - [anon_sym_AMP] = ACTIONS(7102), - [anon_sym_EQ_EQ] = ACTIONS(7104), - [anon_sym_BANG_EQ] = ACTIONS(7104), - [anon_sym_GT] = ACTIONS(7102), - [anon_sym_GT_EQ] = ACTIONS(7104), - [anon_sym_LT_EQ] = ACTIONS(7104), - [anon_sym_LT] = ACTIONS(7102), - [anon_sym_LT_LT] = ACTIONS(7104), - [anon_sym_GT_GT] = ACTIONS(7104), - [anon_sym_SEMI] = ACTIONS(7104), - [anon_sym___attribute] = ACTIONS(7102), - [anon_sym___attribute__] = ACTIONS(7102), - [anon_sym_RBRACE] = ACTIONS(7104), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7104), - [anon_sym_const] = ACTIONS(7102), - [anon_sym_volatile] = ACTIONS(7102), - [anon_sym_restrict] = ACTIONS(7102), - [anon_sym__Atomic] = ACTIONS(7102), - [anon_sym_in] = ACTIONS(7102), - [anon_sym_out] = ACTIONS(7102), - [anon_sym_inout] = ACTIONS(7102), - [anon_sym_bycopy] = ACTIONS(7102), - [anon_sym_byref] = ACTIONS(7102), - [anon_sym_oneway] = ACTIONS(7102), - [anon_sym__Nullable] = ACTIONS(7102), - [anon_sym__Nonnull] = ACTIONS(7102), - [anon_sym__Nullable_result] = ACTIONS(7102), - [anon_sym__Null_unspecified] = ACTIONS(7102), - [anon_sym___autoreleasing] = ACTIONS(7102), - [anon_sym___nullable] = ACTIONS(7102), - [anon_sym___nonnull] = ACTIONS(7102), - [anon_sym___strong] = ACTIONS(7102), - [anon_sym___weak] = ACTIONS(7102), - [anon_sym___bridge] = ACTIONS(7102), - [anon_sym___bridge_transfer] = ACTIONS(7102), - [anon_sym___bridge_retained] = ACTIONS(7102), - [anon_sym___unsafe_unretained] = ACTIONS(7102), - [anon_sym___block] = ACTIONS(7102), - [anon_sym___kindof] = ACTIONS(7102), - [anon_sym___unused] = ACTIONS(7102), - [anon_sym__Complex] = ACTIONS(7102), - [anon_sym___complex] = ACTIONS(7102), - [anon_sym_IBOutlet] = ACTIONS(7102), - [anon_sym_IBInspectable] = ACTIONS(7102), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7102), - [anon_sym_COLON] = ACTIONS(7104), - [anon_sym_QMARK] = ACTIONS(7104), - [anon_sym_DASH_DASH] = ACTIONS(7104), - [anon_sym_PLUS_PLUS] = ACTIONS(7104), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7102), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7102), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7102), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7102), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7102), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7102), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7102), - [anon_sym_NS_AVAILABLE] = ACTIONS(7102), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7102), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7102), - [anon_sym_API_AVAILABLE] = ACTIONS(7102), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7102), - [anon_sym_API_DEPRECATED] = ACTIONS(7102), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7102), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7102), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7102), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7102), - [anon_sym___deprecated_msg] = ACTIONS(7102), - [anon_sym___deprecated_enum_msg] = ACTIONS(7102), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7102), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7102), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7102), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7102), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7102), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7102), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3305] = { - [sym_identifier] = ACTIONS(7772), - [aux_sym_preproc_def_token1] = ACTIONS(7772), - [aux_sym_preproc_if_token1] = ACTIONS(7772), - [aux_sym_preproc_if_token2] = ACTIONS(7772), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7772), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7772), - [sym_preproc_directive] = ACTIONS(7772), - [anon_sym_extern] = ACTIONS(7772), - [anon_sym___attribute] = ACTIONS(7772), - [anon_sym___attribute__] = ACTIONS(7772), - [anon_sym___declspec] = ACTIONS(7772), - [anon_sym_static] = ACTIONS(7772), - [anon_sym_auto] = ACTIONS(7772), - [anon_sym_register] = ACTIONS(7772), - [anon_sym_inline] = ACTIONS(7772), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7772), - [anon_sym_const] = ACTIONS(7772), - [anon_sym_volatile] = ACTIONS(7772), - [anon_sym_restrict] = ACTIONS(7772), - [anon_sym__Atomic] = ACTIONS(7772), - [anon_sym_in] = ACTIONS(7772), - [anon_sym_out] = ACTIONS(7772), - [anon_sym_inout] = ACTIONS(7772), - [anon_sym_bycopy] = ACTIONS(7772), - [anon_sym_byref] = ACTIONS(7772), - [anon_sym_oneway] = ACTIONS(7772), - [anon_sym__Nullable] = ACTIONS(7772), - [anon_sym__Nonnull] = ACTIONS(7772), - [anon_sym__Nullable_result] = ACTIONS(7772), - [anon_sym__Null_unspecified] = ACTIONS(7772), - [anon_sym___autoreleasing] = ACTIONS(7772), - [anon_sym___nullable] = ACTIONS(7772), - [anon_sym___nonnull] = ACTIONS(7772), - [anon_sym___strong] = ACTIONS(7772), - [anon_sym___weak] = ACTIONS(7772), - [anon_sym___bridge] = ACTIONS(7772), - [anon_sym___bridge_transfer] = ACTIONS(7772), - [anon_sym___bridge_retained] = ACTIONS(7772), - [anon_sym___unsafe_unretained] = ACTIONS(7772), - [anon_sym___block] = ACTIONS(7772), - [anon_sym___kindof] = ACTIONS(7772), - [anon_sym___unused] = ACTIONS(7772), - [anon_sym__Complex] = ACTIONS(7772), - [anon_sym___complex] = ACTIONS(7772), - [anon_sym_IBOutlet] = ACTIONS(7772), - [anon_sym_IBInspectable] = ACTIONS(7772), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7772), - [anon_sym_signed] = ACTIONS(7772), - [anon_sym_unsigned] = ACTIONS(7772), - [anon_sym_long] = ACTIONS(7772), - [anon_sym_short] = ACTIONS(7772), - [sym_primitive_type] = ACTIONS(7772), - [anon_sym_enum] = ACTIONS(7772), - [anon_sym_NS_ENUM] = ACTIONS(7772), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7772), - [anon_sym_NS_OPTIONS] = ACTIONS(7772), - [anon_sym_struct] = ACTIONS(7772), - [anon_sym_union] = ACTIONS(7772), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7772), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7772), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7772), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7772), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7772), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7772), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7772), - [anon_sym_NS_AVAILABLE] = ACTIONS(7772), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7772), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7772), - [anon_sym_API_AVAILABLE] = ACTIONS(7772), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7772), - [anon_sym_API_DEPRECATED] = ACTIONS(7772), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7772), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7772), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7772), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7772), - [anon_sym___deprecated_msg] = ACTIONS(7772), - [anon_sym___deprecated_enum_msg] = ACTIONS(7772), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7772), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7772), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7772), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7772), - [anon_sym_typeof] = ACTIONS(7772), - [anon_sym___typeof] = ACTIONS(7772), - [anon_sym___typeof__] = ACTIONS(7772), - [sym_id] = ACTIONS(7772), - [sym_instancetype] = ACTIONS(7772), - [sym_Class] = ACTIONS(7772), - [sym_SEL] = ACTIONS(7772), - [sym_IMP] = ACTIONS(7772), - [sym_BOOL] = ACTIONS(7772), - [sym_auto] = ACTIONS(7772), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3306] = { - [sym_identifier] = ACTIONS(7776), - [aux_sym_preproc_def_token1] = ACTIONS(7776), - [aux_sym_preproc_if_token1] = ACTIONS(7776), - [aux_sym_preproc_if_token2] = ACTIONS(7776), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7776), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7776), - [sym_preproc_directive] = ACTIONS(7776), - [anon_sym_extern] = ACTIONS(7776), - [anon_sym___attribute] = ACTIONS(7776), - [anon_sym___attribute__] = ACTIONS(7776), - [anon_sym___declspec] = ACTIONS(7776), - [anon_sym_static] = ACTIONS(7776), - [anon_sym_auto] = ACTIONS(7776), - [anon_sym_register] = ACTIONS(7776), - [anon_sym_inline] = ACTIONS(7776), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7776), - [anon_sym_const] = ACTIONS(7776), - [anon_sym_volatile] = ACTIONS(7776), - [anon_sym_restrict] = ACTIONS(7776), - [anon_sym__Atomic] = ACTIONS(7776), - [anon_sym_in] = ACTIONS(7776), - [anon_sym_out] = ACTIONS(7776), - [anon_sym_inout] = ACTIONS(7776), - [anon_sym_bycopy] = ACTIONS(7776), - [anon_sym_byref] = ACTIONS(7776), - [anon_sym_oneway] = ACTIONS(7776), - [anon_sym__Nullable] = ACTIONS(7776), - [anon_sym__Nonnull] = ACTIONS(7776), - [anon_sym__Nullable_result] = ACTIONS(7776), - [anon_sym__Null_unspecified] = ACTIONS(7776), - [anon_sym___autoreleasing] = ACTIONS(7776), - [anon_sym___nullable] = ACTIONS(7776), - [anon_sym___nonnull] = ACTIONS(7776), - [anon_sym___strong] = ACTIONS(7776), - [anon_sym___weak] = ACTIONS(7776), - [anon_sym___bridge] = ACTIONS(7776), - [anon_sym___bridge_transfer] = ACTIONS(7776), - [anon_sym___bridge_retained] = ACTIONS(7776), - [anon_sym___unsafe_unretained] = ACTIONS(7776), - [anon_sym___block] = ACTIONS(7776), - [anon_sym___kindof] = ACTIONS(7776), - [anon_sym___unused] = ACTIONS(7776), - [anon_sym__Complex] = ACTIONS(7776), - [anon_sym___complex] = ACTIONS(7776), - [anon_sym_IBOutlet] = ACTIONS(7776), - [anon_sym_IBInspectable] = ACTIONS(7776), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7776), - [anon_sym_signed] = ACTIONS(7776), - [anon_sym_unsigned] = ACTIONS(7776), - [anon_sym_long] = ACTIONS(7776), - [anon_sym_short] = ACTIONS(7776), - [sym_primitive_type] = ACTIONS(7776), - [anon_sym_enum] = ACTIONS(7776), - [anon_sym_NS_ENUM] = ACTIONS(7776), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7776), - [anon_sym_NS_OPTIONS] = ACTIONS(7776), - [anon_sym_struct] = ACTIONS(7776), - [anon_sym_union] = ACTIONS(7776), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7776), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7776), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7776), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7776), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7776), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7776), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7776), - [anon_sym_NS_AVAILABLE] = ACTIONS(7776), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7776), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7776), - [anon_sym_API_AVAILABLE] = ACTIONS(7776), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7776), - [anon_sym_API_DEPRECATED] = ACTIONS(7776), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7776), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7776), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7776), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7776), - [anon_sym___deprecated_msg] = ACTIONS(7776), - [anon_sym___deprecated_enum_msg] = ACTIONS(7776), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7776), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7776), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7776), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7776), - [anon_sym_typeof] = ACTIONS(7776), - [anon_sym___typeof] = ACTIONS(7776), - [anon_sym___typeof__] = ACTIONS(7776), - [sym_id] = ACTIONS(7776), - [sym_instancetype] = ACTIONS(7776), - [sym_Class] = ACTIONS(7776), - [sym_SEL] = ACTIONS(7776), - [sym_IMP] = ACTIONS(7776), - [sym_BOOL] = ACTIONS(7776), - [sym_auto] = ACTIONS(7776), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3307] = { - [sym_identifier] = ACTIONS(1954), - [aux_sym_preproc_def_token1] = ACTIONS(1954), - [aux_sym_preproc_if_token1] = ACTIONS(1954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1954), - [sym_preproc_directive] = ACTIONS(1954), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym___attribute] = ACTIONS(1954), - [anon_sym___attribute__] = ACTIONS(1954), - [anon_sym___declspec] = ACTIONS(1954), - [anon_sym_RBRACE] = ACTIONS(1956), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_auto] = ACTIONS(1954), - [anon_sym_register] = ACTIONS(1954), - [anon_sym_inline] = ACTIONS(1954), - [aux_sym_storage_class_specifier_token1] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_volatile] = ACTIONS(1954), - [anon_sym_restrict] = ACTIONS(1954), - [anon_sym__Atomic] = ACTIONS(1954), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_out] = ACTIONS(1954), - [anon_sym_inout] = ACTIONS(1954), - [anon_sym_bycopy] = ACTIONS(1954), - [anon_sym_byref] = ACTIONS(1954), - [anon_sym_oneway] = ACTIONS(1954), - [anon_sym__Nullable] = ACTIONS(1954), - [anon_sym__Nonnull] = ACTIONS(1954), - [anon_sym__Nullable_result] = ACTIONS(1954), - [anon_sym__Null_unspecified] = ACTIONS(1954), - [anon_sym___autoreleasing] = ACTIONS(1954), - [anon_sym___nullable] = ACTIONS(1954), - [anon_sym___nonnull] = ACTIONS(1954), - [anon_sym___strong] = ACTIONS(1954), - [anon_sym___weak] = ACTIONS(1954), - [anon_sym___bridge] = ACTIONS(1954), - [anon_sym___bridge_transfer] = ACTIONS(1954), - [anon_sym___bridge_retained] = ACTIONS(1954), - [anon_sym___unsafe_unretained] = ACTIONS(1954), - [anon_sym___block] = ACTIONS(1954), - [anon_sym___kindof] = ACTIONS(1954), - [anon_sym___unused] = ACTIONS(1954), - [anon_sym__Complex] = ACTIONS(1954), - [anon_sym___complex] = ACTIONS(1954), - [anon_sym_IBOutlet] = ACTIONS(1954), - [anon_sym_IBInspectable] = ACTIONS(1954), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1954), - [anon_sym_signed] = ACTIONS(1954), - [anon_sym_unsigned] = ACTIONS(1954), - [anon_sym_long] = ACTIONS(1954), - [anon_sym_short] = ACTIONS(1954), - [sym_primitive_type] = ACTIONS(1954), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_NS_ENUM] = ACTIONS(1954), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1954), - [anon_sym_NS_OPTIONS] = ACTIONS(1954), - [anon_sym_struct] = ACTIONS(1954), - [anon_sym_union] = ACTIONS(1954), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(1954), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1954), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1954), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1954), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1954), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1954), - [anon_sym_NS_AVAILABLE] = ACTIONS(1954), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1954), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_API_AVAILABLE] = ACTIONS(1954), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_API_DEPRECATED] = ACTIONS(1954), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1954), - [anon_sym___deprecated_msg] = ACTIONS(1954), - [anon_sym___deprecated_enum_msg] = ACTIONS(1954), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1954), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1954), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1954), - [anon_sym_typeof] = ACTIONS(1954), - [anon_sym___typeof] = ACTIONS(1954), - [anon_sym___typeof__] = ACTIONS(1954), - [sym_id] = ACTIONS(1954), - [sym_instancetype] = ACTIONS(1954), - [sym_Class] = ACTIONS(1954), - [sym_SEL] = ACTIONS(1954), - [sym_IMP] = ACTIONS(1954), - [sym_BOOL] = ACTIONS(1954), - [sym_auto] = ACTIONS(1954), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3308] = { - [sym_identifier] = ACTIONS(7784), - [aux_sym_preproc_def_token1] = ACTIONS(7784), - [aux_sym_preproc_if_token1] = ACTIONS(7784), - [aux_sym_preproc_if_token2] = ACTIONS(7784), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7784), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7784), - [sym_preproc_directive] = ACTIONS(7784), - [anon_sym_extern] = ACTIONS(7784), - [anon_sym___attribute] = ACTIONS(7784), - [anon_sym___attribute__] = ACTIONS(7784), - [anon_sym___declspec] = ACTIONS(7784), - [anon_sym_static] = ACTIONS(7784), - [anon_sym_auto] = ACTIONS(7784), - [anon_sym_register] = ACTIONS(7784), - [anon_sym_inline] = ACTIONS(7784), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7784), - [anon_sym_const] = ACTIONS(7784), - [anon_sym_volatile] = ACTIONS(7784), - [anon_sym_restrict] = ACTIONS(7784), - [anon_sym__Atomic] = ACTIONS(7784), - [anon_sym_in] = ACTIONS(7784), - [anon_sym_out] = ACTIONS(7784), - [anon_sym_inout] = ACTIONS(7784), - [anon_sym_bycopy] = ACTIONS(7784), - [anon_sym_byref] = ACTIONS(7784), - [anon_sym_oneway] = ACTIONS(7784), - [anon_sym__Nullable] = ACTIONS(7784), - [anon_sym__Nonnull] = ACTIONS(7784), - [anon_sym__Nullable_result] = ACTIONS(7784), - [anon_sym__Null_unspecified] = ACTIONS(7784), - [anon_sym___autoreleasing] = ACTIONS(7784), - [anon_sym___nullable] = ACTIONS(7784), - [anon_sym___nonnull] = ACTIONS(7784), - [anon_sym___strong] = ACTIONS(7784), - [anon_sym___weak] = ACTIONS(7784), - [anon_sym___bridge] = ACTIONS(7784), - [anon_sym___bridge_transfer] = ACTIONS(7784), - [anon_sym___bridge_retained] = ACTIONS(7784), - [anon_sym___unsafe_unretained] = ACTIONS(7784), - [anon_sym___block] = ACTIONS(7784), - [anon_sym___kindof] = ACTIONS(7784), - [anon_sym___unused] = ACTIONS(7784), - [anon_sym__Complex] = ACTIONS(7784), - [anon_sym___complex] = ACTIONS(7784), - [anon_sym_IBOutlet] = ACTIONS(7784), - [anon_sym_IBInspectable] = ACTIONS(7784), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7784), - [anon_sym_signed] = ACTIONS(7784), - [anon_sym_unsigned] = ACTIONS(7784), - [anon_sym_long] = ACTIONS(7784), - [anon_sym_short] = ACTIONS(7784), - [sym_primitive_type] = ACTIONS(7784), - [anon_sym_enum] = ACTIONS(7784), - [anon_sym_NS_ENUM] = ACTIONS(7784), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7784), - [anon_sym_NS_OPTIONS] = ACTIONS(7784), - [anon_sym_struct] = ACTIONS(7784), - [anon_sym_union] = ACTIONS(7784), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7784), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7784), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7784), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7784), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7784), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7784), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7784), - [anon_sym_NS_AVAILABLE] = ACTIONS(7784), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7784), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7784), - [anon_sym_API_AVAILABLE] = ACTIONS(7784), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7784), - [anon_sym_API_DEPRECATED] = ACTIONS(7784), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7784), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7784), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7784), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7784), - [anon_sym___deprecated_msg] = ACTIONS(7784), - [anon_sym___deprecated_enum_msg] = ACTIONS(7784), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7784), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7784), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7784), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7784), - [anon_sym_typeof] = ACTIONS(7784), - [anon_sym___typeof] = ACTIONS(7784), - [anon_sym___typeof__] = ACTIONS(7784), - [sym_id] = ACTIONS(7784), - [sym_instancetype] = ACTIONS(7784), - [sym_Class] = ACTIONS(7784), - [sym_SEL] = ACTIONS(7784), - [sym_IMP] = ACTIONS(7784), - [sym_BOOL] = ACTIONS(7784), - [sym_auto] = ACTIONS(7784), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3309] = { - [sym_identifier] = ACTIONS(7752), - [aux_sym_preproc_def_token1] = ACTIONS(7752), - [aux_sym_preproc_if_token1] = ACTIONS(7752), - [aux_sym_preproc_if_token2] = ACTIONS(7752), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7752), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7752), - [sym_preproc_directive] = ACTIONS(7752), - [anon_sym_extern] = ACTIONS(7752), - [anon_sym___attribute] = ACTIONS(7752), - [anon_sym___attribute__] = ACTIONS(7752), - [anon_sym___declspec] = ACTIONS(7752), - [anon_sym_static] = ACTIONS(7752), - [anon_sym_auto] = ACTIONS(7752), - [anon_sym_register] = ACTIONS(7752), - [anon_sym_inline] = ACTIONS(7752), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7752), - [anon_sym_const] = ACTIONS(7752), - [anon_sym_volatile] = ACTIONS(7752), - [anon_sym_restrict] = ACTIONS(7752), - [anon_sym__Atomic] = ACTIONS(7752), - [anon_sym_in] = ACTIONS(7752), - [anon_sym_out] = ACTIONS(7752), - [anon_sym_inout] = ACTIONS(7752), - [anon_sym_bycopy] = ACTIONS(7752), - [anon_sym_byref] = ACTIONS(7752), - [anon_sym_oneway] = ACTIONS(7752), - [anon_sym__Nullable] = ACTIONS(7752), - [anon_sym__Nonnull] = ACTIONS(7752), - [anon_sym__Nullable_result] = ACTIONS(7752), - [anon_sym__Null_unspecified] = ACTIONS(7752), - [anon_sym___autoreleasing] = ACTIONS(7752), - [anon_sym___nullable] = ACTIONS(7752), - [anon_sym___nonnull] = ACTIONS(7752), - [anon_sym___strong] = ACTIONS(7752), - [anon_sym___weak] = ACTIONS(7752), - [anon_sym___bridge] = ACTIONS(7752), - [anon_sym___bridge_transfer] = ACTIONS(7752), - [anon_sym___bridge_retained] = ACTIONS(7752), - [anon_sym___unsafe_unretained] = ACTIONS(7752), - [anon_sym___block] = ACTIONS(7752), - [anon_sym___kindof] = ACTIONS(7752), - [anon_sym___unused] = ACTIONS(7752), - [anon_sym__Complex] = ACTIONS(7752), - [anon_sym___complex] = ACTIONS(7752), - [anon_sym_IBOutlet] = ACTIONS(7752), - [anon_sym_IBInspectable] = ACTIONS(7752), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7752), - [anon_sym_signed] = ACTIONS(7752), - [anon_sym_unsigned] = ACTIONS(7752), - [anon_sym_long] = ACTIONS(7752), - [anon_sym_short] = ACTIONS(7752), - [sym_primitive_type] = ACTIONS(7752), - [anon_sym_enum] = ACTIONS(7752), - [anon_sym_NS_ENUM] = ACTIONS(7752), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7752), - [anon_sym_NS_OPTIONS] = ACTIONS(7752), - [anon_sym_struct] = ACTIONS(7752), - [anon_sym_union] = ACTIONS(7752), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7752), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7752), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7752), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7752), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7752), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7752), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7752), - [anon_sym_NS_AVAILABLE] = ACTIONS(7752), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7752), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7752), - [anon_sym_API_AVAILABLE] = ACTIONS(7752), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7752), - [anon_sym_API_DEPRECATED] = ACTIONS(7752), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7752), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7752), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7752), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7752), - [anon_sym___deprecated_msg] = ACTIONS(7752), - [anon_sym___deprecated_enum_msg] = ACTIONS(7752), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7752), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7752), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7752), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7752), - [anon_sym_typeof] = ACTIONS(7752), - [anon_sym___typeof] = ACTIONS(7752), - [anon_sym___typeof__] = ACTIONS(7752), - [sym_id] = ACTIONS(7752), - [sym_instancetype] = ACTIONS(7752), - [sym_Class] = ACTIONS(7752), - [sym_SEL] = ACTIONS(7752), - [sym_IMP] = ACTIONS(7752), - [sym_BOOL] = ACTIONS(7752), - [sym_auto] = ACTIONS(7752), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3310] = { + [3207] = { [sym_identifier] = ACTIONS(7706), [aux_sym_preproc_def_token1] = ACTIONS(7706), [aux_sym_preproc_if_token1] = ACTIONS(7706), @@ -524058,9 +511331,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7706), [sym_primitive_type] = ACTIONS(7706), [anon_sym_enum] = ACTIONS(7706), - [anon_sym_NS_ENUM] = ACTIONS(7706), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7706), - [anon_sym_NS_OPTIONS] = ACTIONS(7706), [anon_sym_struct] = ACTIONS(7706), [anon_sym_union] = ACTIONS(7706), [sym_comment] = ACTIONS(3), @@ -524087,6 +511357,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7706), [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7706), [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7706), + [anon_sym_NS_ENUM] = ACTIONS(7706), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7706), + [anon_sym_NS_OPTIONS] = ACTIONS(7706), [anon_sym_typeof] = ACTIONS(7706), [anon_sym___typeof] = ACTIONS(7706), [anon_sym___typeof__] = ACTIONS(7706), @@ -524104,99 +511377,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(5), }, - [3311] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7837), - [anon_sym_PLUS] = ACTIONS(7837), - [anon_sym_STAR] = ACTIONS(7831), - [anon_sym_SLASH] = ACTIONS(7833), - [anon_sym_PERCENT] = ACTIONS(7831), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7066), - [anon_sym_PIPE] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7066), - [anon_sym_AMP] = ACTIONS(7064), - [anon_sym_EQ_EQ] = ACTIONS(7066), - [anon_sym_BANG_EQ] = ACTIONS(7066), - [anon_sym_GT] = ACTIONS(7064), - [anon_sym_GT_EQ] = ACTIONS(7066), - [anon_sym_LT_EQ] = ACTIONS(7066), - [anon_sym_LT] = ACTIONS(7064), - [anon_sym_LT_LT] = ACTIONS(7839), - [anon_sym_GT_GT] = ACTIONS(7839), - [anon_sym_SEMI] = ACTIONS(7066), - [anon_sym___attribute] = ACTIONS(7064), - [anon_sym___attribute__] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7066), - [anon_sym_const] = ACTIONS(7064), - [anon_sym_volatile] = ACTIONS(7064), - [anon_sym_restrict] = ACTIONS(7064), - [anon_sym__Atomic] = ACTIONS(7064), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_out] = ACTIONS(7064), - [anon_sym_inout] = ACTIONS(7064), - [anon_sym_bycopy] = ACTIONS(7064), - [anon_sym_byref] = ACTIONS(7064), - [anon_sym_oneway] = ACTIONS(7064), - [anon_sym__Nullable] = ACTIONS(7064), - [anon_sym__Nonnull] = ACTIONS(7064), - [anon_sym__Nullable_result] = ACTIONS(7064), - [anon_sym__Null_unspecified] = ACTIONS(7064), - [anon_sym___autoreleasing] = ACTIONS(7064), - [anon_sym___nullable] = ACTIONS(7064), - [anon_sym___nonnull] = ACTIONS(7064), - [anon_sym___strong] = ACTIONS(7064), - [anon_sym___weak] = ACTIONS(7064), - [anon_sym___bridge] = ACTIONS(7064), - [anon_sym___bridge_transfer] = ACTIONS(7064), - [anon_sym___bridge_retained] = ACTIONS(7064), - [anon_sym___unsafe_unretained] = ACTIONS(7064), - [anon_sym___block] = ACTIONS(7064), - [anon_sym___kindof] = ACTIONS(7064), - [anon_sym___unused] = ACTIONS(7064), - [anon_sym__Complex] = ACTIONS(7064), - [anon_sym___complex] = ACTIONS(7064), - [anon_sym_IBOutlet] = ACTIONS(7064), - [anon_sym_IBInspectable] = ACTIONS(7064), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7827), - [anon_sym_PLUS_PLUS] = ACTIONS(7827), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [3208] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(7781), + [anon_sym_PLUS] = ACTIONS(7781), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7785), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(6952), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_CARET] = ACTIONS(6952), + [anon_sym_AMP] = ACTIONS(6950), + [anon_sym_EQ_EQ] = ACTIONS(6952), + [anon_sym_BANG_EQ] = ACTIONS(6952), + [anon_sym_GT] = ACTIONS(7797), + [anon_sym_GT_EQ] = ACTIONS(7799), + [anon_sym_LT_EQ] = ACTIONS(7799), + [anon_sym_LT] = ACTIONS(7797), + [anon_sym_LT_LT] = ACTIONS(7801), + [anon_sym_GT_GT] = ACTIONS(7801), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7064), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7064), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE] = ACTIONS(7064), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_API_AVAILABLE] = ACTIONS(7064), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_API_DEPRECATED] = ACTIONS(7064), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7064), - [anon_sym___deprecated_msg] = ACTIONS(7064), - [anon_sym___deprecated_enum_msg] = ACTIONS(7064), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7064), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7064), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -524204,99 +511477,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3312] = { - [sym_argument_list] = STATE(3088), - [sym_identifier] = ACTIONS(7064), - [anon_sym_COMMA] = ACTIONS(7066), - [anon_sym_RPAREN] = ACTIONS(7066), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7837), - [anon_sym_PLUS] = ACTIONS(7837), - [anon_sym_STAR] = ACTIONS(7831), - [anon_sym_SLASH] = ACTIONS(7833), - [anon_sym_PERCENT] = ACTIONS(7831), - [anon_sym_PIPE_PIPE] = ACTIONS(7066), - [anon_sym_AMP_AMP] = ACTIONS(7066), - [anon_sym_PIPE] = ACTIONS(7064), - [anon_sym_CARET] = ACTIONS(7066), - [anon_sym_AMP] = ACTIONS(7064), - [anon_sym_EQ_EQ] = ACTIONS(7066), - [anon_sym_BANG_EQ] = ACTIONS(7066), - [anon_sym_GT] = ACTIONS(7064), - [anon_sym_GT_EQ] = ACTIONS(7066), - [anon_sym_LT_EQ] = ACTIONS(7066), - [anon_sym_LT] = ACTIONS(7064), - [anon_sym_LT_LT] = ACTIONS(7066), - [anon_sym_GT_GT] = ACTIONS(7066), - [anon_sym_SEMI] = ACTIONS(7066), - [anon_sym___attribute] = ACTIONS(7064), - [anon_sym___attribute__] = ACTIONS(7064), - [anon_sym_RBRACE] = ACTIONS(7066), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7066), - [anon_sym_const] = ACTIONS(7064), - [anon_sym_volatile] = ACTIONS(7064), - [anon_sym_restrict] = ACTIONS(7064), - [anon_sym__Atomic] = ACTIONS(7064), - [anon_sym_in] = ACTIONS(7064), - [anon_sym_out] = ACTIONS(7064), - [anon_sym_inout] = ACTIONS(7064), - [anon_sym_bycopy] = ACTIONS(7064), - [anon_sym_byref] = ACTIONS(7064), - [anon_sym_oneway] = ACTIONS(7064), - [anon_sym__Nullable] = ACTIONS(7064), - [anon_sym__Nonnull] = ACTIONS(7064), - [anon_sym__Nullable_result] = ACTIONS(7064), - [anon_sym__Null_unspecified] = ACTIONS(7064), - [anon_sym___autoreleasing] = ACTIONS(7064), - [anon_sym___nullable] = ACTIONS(7064), - [anon_sym___nonnull] = ACTIONS(7064), - [anon_sym___strong] = ACTIONS(7064), - [anon_sym___weak] = ACTIONS(7064), - [anon_sym___bridge] = ACTIONS(7064), - [anon_sym___bridge_transfer] = ACTIONS(7064), - [anon_sym___bridge_retained] = ACTIONS(7064), - [anon_sym___unsafe_unretained] = ACTIONS(7064), - [anon_sym___block] = ACTIONS(7064), - [anon_sym___kindof] = ACTIONS(7064), - [anon_sym___unused] = ACTIONS(7064), - [anon_sym__Complex] = ACTIONS(7064), - [anon_sym___complex] = ACTIONS(7064), - [anon_sym_IBOutlet] = ACTIONS(7064), - [anon_sym_IBInspectable] = ACTIONS(7064), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7064), - [anon_sym_COLON] = ACTIONS(7066), - [anon_sym_QMARK] = ACTIONS(7066), - [anon_sym_DASH_DASH] = ACTIONS(7827), - [anon_sym_PLUS_PLUS] = ACTIONS(7827), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), + [3209] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(7781), + [anon_sym_PLUS] = ACTIONS(7781), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7785), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(6952), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_CARET] = ACTIONS(6952), + [anon_sym_AMP] = ACTIONS(6950), + [anon_sym_EQ_EQ] = ACTIONS(6952), + [anon_sym_BANG_EQ] = ACTIONS(6952), + [anon_sym_GT] = ACTIONS(6950), + [anon_sym_GT_EQ] = ACTIONS(6952), + [anon_sym_LT_EQ] = ACTIONS(6952), + [anon_sym_LT] = ACTIONS(6950), + [anon_sym_LT_LT] = ACTIONS(7801), + [anon_sym_GT_GT] = ACTIONS(7801), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7064), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7064), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7064), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE] = ACTIONS(7064), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7064), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_API_AVAILABLE] = ACTIONS(7064), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_API_DEPRECATED] = ACTIONS(7064), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7064), - [anon_sym___deprecated_msg] = ACTIONS(7064), - [anon_sym___deprecated_enum_msg] = ACTIONS(7064), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7064), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7064), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7064), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7064), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7064), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -524304,99 +511577,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3313] = { - [sym_identifier] = ACTIONS(7728), - [aux_sym_preproc_def_token1] = ACTIONS(7728), - [aux_sym_preproc_if_token1] = ACTIONS(7728), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7728), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7728), - [sym_preproc_directive] = ACTIONS(7728), - [anon_sym_extern] = ACTIONS(7728), - [anon_sym___attribute] = ACTIONS(7728), - [anon_sym___attribute__] = ACTIONS(7728), - [anon_sym___declspec] = ACTIONS(7728), - [anon_sym_RBRACE] = ACTIONS(7887), - [anon_sym_static] = ACTIONS(7728), - [anon_sym_auto] = ACTIONS(7728), - [anon_sym_register] = ACTIONS(7728), - [anon_sym_inline] = ACTIONS(7728), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7728), - [anon_sym_const] = ACTIONS(7728), - [anon_sym_volatile] = ACTIONS(7728), - [anon_sym_restrict] = ACTIONS(7728), - [anon_sym__Atomic] = ACTIONS(7728), - [anon_sym_in] = ACTIONS(7728), - [anon_sym_out] = ACTIONS(7728), - [anon_sym_inout] = ACTIONS(7728), - [anon_sym_bycopy] = ACTIONS(7728), - [anon_sym_byref] = ACTIONS(7728), - [anon_sym_oneway] = ACTIONS(7728), - [anon_sym__Nullable] = ACTIONS(7728), - [anon_sym__Nonnull] = ACTIONS(7728), - [anon_sym__Nullable_result] = ACTIONS(7728), - [anon_sym__Null_unspecified] = ACTIONS(7728), - [anon_sym___autoreleasing] = ACTIONS(7728), - [anon_sym___nullable] = ACTIONS(7728), - [anon_sym___nonnull] = ACTIONS(7728), - [anon_sym___strong] = ACTIONS(7728), - [anon_sym___weak] = ACTIONS(7728), - [anon_sym___bridge] = ACTIONS(7728), - [anon_sym___bridge_transfer] = ACTIONS(7728), - [anon_sym___bridge_retained] = ACTIONS(7728), - [anon_sym___unsafe_unretained] = ACTIONS(7728), - [anon_sym___block] = ACTIONS(7728), - [anon_sym___kindof] = ACTIONS(7728), - [anon_sym___unused] = ACTIONS(7728), - [anon_sym__Complex] = ACTIONS(7728), - [anon_sym___complex] = ACTIONS(7728), - [anon_sym_IBOutlet] = ACTIONS(7728), - [anon_sym_IBInspectable] = ACTIONS(7728), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7728), - [anon_sym_signed] = ACTIONS(7728), - [anon_sym_unsigned] = ACTIONS(7728), - [anon_sym_long] = ACTIONS(7728), - [anon_sym_short] = ACTIONS(7728), - [sym_primitive_type] = ACTIONS(7728), - [anon_sym_enum] = ACTIONS(7728), - [anon_sym_NS_ENUM] = ACTIONS(7728), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7728), - [anon_sym_NS_OPTIONS] = ACTIONS(7728), - [anon_sym_struct] = ACTIONS(7728), - [anon_sym_union] = ACTIONS(7728), + [3210] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(7781), + [anon_sym_PLUS] = ACTIONS(7781), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7785), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(6952), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_CARET] = ACTIONS(6952), + [anon_sym_AMP] = ACTIONS(6950), + [anon_sym_EQ_EQ] = ACTIONS(6952), + [anon_sym_BANG_EQ] = ACTIONS(6952), + [anon_sym_GT] = ACTIONS(6950), + [anon_sym_GT_EQ] = ACTIONS(6952), + [anon_sym_LT_EQ] = ACTIONS(6952), + [anon_sym_LT] = ACTIONS(6950), + [anon_sym_LT_LT] = ACTIONS(6952), + [anon_sym_GT_GT] = ACTIONS(6952), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7728), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7728), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7728), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7728), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7728), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7728), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7728), - [anon_sym_NS_AVAILABLE] = ACTIONS(7728), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7728), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7728), - [anon_sym_API_AVAILABLE] = ACTIONS(7728), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7728), - [anon_sym_API_DEPRECATED] = ACTIONS(7728), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7728), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7728), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7728), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7728), - [anon_sym___deprecated_msg] = ACTIONS(7728), - [anon_sym___deprecated_enum_msg] = ACTIONS(7728), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7728), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7728), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7728), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7728), - [anon_sym_typeof] = ACTIONS(7728), - [anon_sym___typeof] = ACTIONS(7728), - [anon_sym___typeof__] = ACTIONS(7728), - [sym_id] = ACTIONS(7728), - [sym_instancetype] = ACTIONS(7728), - [sym_Class] = ACTIONS(7728), - [sym_SEL] = ACTIONS(7728), - [sym_IMP] = ACTIONS(7728), - [sym_BOOL] = ACTIONS(7728), - [sym_auto] = ACTIONS(7728), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3211] = { + [sym_identifier] = ACTIONS(7692), + [aux_sym_preproc_def_token1] = ACTIONS(7692), + [aux_sym_preproc_if_token1] = ACTIONS(7692), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7692), + [sym_preproc_directive] = ACTIONS(7692), + [anon_sym_extern] = ACTIONS(7692), + [anon_sym___attribute] = ACTIONS(7692), + [anon_sym___attribute__] = ACTIONS(7692), + [anon_sym___declspec] = ACTIONS(7692), + [anon_sym_RBRACE] = ACTIONS(7807), + [anon_sym_static] = ACTIONS(7692), + [anon_sym_auto] = ACTIONS(7692), + [anon_sym_register] = ACTIONS(7692), + [anon_sym_inline] = ACTIONS(7692), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7692), + [anon_sym_const] = ACTIONS(7692), + [anon_sym_volatile] = ACTIONS(7692), + [anon_sym_restrict] = ACTIONS(7692), + [anon_sym__Atomic] = ACTIONS(7692), + [anon_sym_in] = ACTIONS(7692), + [anon_sym_out] = ACTIONS(7692), + [anon_sym_inout] = ACTIONS(7692), + [anon_sym_bycopy] = ACTIONS(7692), + [anon_sym_byref] = ACTIONS(7692), + [anon_sym_oneway] = ACTIONS(7692), + [anon_sym__Nullable] = ACTIONS(7692), + [anon_sym__Nonnull] = ACTIONS(7692), + [anon_sym__Nullable_result] = ACTIONS(7692), + [anon_sym__Null_unspecified] = ACTIONS(7692), + [anon_sym___autoreleasing] = ACTIONS(7692), + [anon_sym___nullable] = ACTIONS(7692), + [anon_sym___nonnull] = ACTIONS(7692), + [anon_sym___strong] = ACTIONS(7692), + [anon_sym___weak] = ACTIONS(7692), + [anon_sym___bridge] = ACTIONS(7692), + [anon_sym___bridge_transfer] = ACTIONS(7692), + [anon_sym___bridge_retained] = ACTIONS(7692), + [anon_sym___unsafe_unretained] = ACTIONS(7692), + [anon_sym___block] = ACTIONS(7692), + [anon_sym___kindof] = ACTIONS(7692), + [anon_sym___unused] = ACTIONS(7692), + [anon_sym__Complex] = ACTIONS(7692), + [anon_sym___complex] = ACTIONS(7692), + [anon_sym_IBOutlet] = ACTIONS(7692), + [anon_sym_IBInspectable] = ACTIONS(7692), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7692), + [anon_sym_signed] = ACTIONS(7692), + [anon_sym_unsigned] = ACTIONS(7692), + [anon_sym_long] = ACTIONS(7692), + [anon_sym_short] = ACTIONS(7692), + [sym_primitive_type] = ACTIONS(7692), + [anon_sym_enum] = ACTIONS(7692), + [anon_sym_struct] = ACTIONS(7692), + [anon_sym_union] = ACTIONS(7692), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7692), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7692), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7692), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7692), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7692), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7692), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7692), + [anon_sym_NS_AVAILABLE] = ACTIONS(7692), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7692), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7692), + [anon_sym_API_AVAILABLE] = ACTIONS(7692), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7692), + [anon_sym_API_DEPRECATED] = ACTIONS(7692), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7692), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7692), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7692), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7692), + [anon_sym___deprecated_msg] = ACTIONS(7692), + [anon_sym___deprecated_enum_msg] = ACTIONS(7692), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7692), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7692), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7692), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7692), + [anon_sym_NS_ENUM] = ACTIONS(7692), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7692), + [anon_sym_NS_OPTIONS] = ACTIONS(7692), + [anon_sym_typeof] = ACTIONS(7692), + [anon_sym___typeof] = ACTIONS(7692), + [anon_sym___typeof__] = ACTIONS(7692), + [sym_id] = ACTIONS(7692), + [sym_instancetype] = ACTIONS(7692), + [sym_Class] = ACTIONS(7692), + [sym_SEL] = ACTIONS(7692), + [sym_IMP] = ACTIONS(7692), + [sym_BOOL] = ACTIONS(7692), + [sym_auto] = ACTIONS(7692), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -524404,107 +511777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(5), }, - [3314] = { - [sym_identifier] = ACTIONS(7738), - [aux_sym_preproc_def_token1] = ACTIONS(7738), - [aux_sym_preproc_if_token1] = ACTIONS(7738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(7738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(7738), - [sym_preproc_directive] = ACTIONS(7738), - [anon_sym_extern] = ACTIONS(7738), - [anon_sym___attribute] = ACTIONS(7738), - [anon_sym___attribute__] = ACTIONS(7738), - [anon_sym___declspec] = ACTIONS(7738), - [anon_sym_RBRACE] = ACTIONS(7889), - [anon_sym_static] = ACTIONS(7738), - [anon_sym_auto] = ACTIONS(7738), - [anon_sym_register] = ACTIONS(7738), - [anon_sym_inline] = ACTIONS(7738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7738), - [anon_sym_const] = ACTIONS(7738), - [anon_sym_volatile] = ACTIONS(7738), - [anon_sym_restrict] = ACTIONS(7738), - [anon_sym__Atomic] = ACTIONS(7738), - [anon_sym_in] = ACTIONS(7738), - [anon_sym_out] = ACTIONS(7738), - [anon_sym_inout] = ACTIONS(7738), - [anon_sym_bycopy] = ACTIONS(7738), - [anon_sym_byref] = ACTIONS(7738), - [anon_sym_oneway] = ACTIONS(7738), - [anon_sym__Nullable] = ACTIONS(7738), - [anon_sym__Nonnull] = ACTIONS(7738), - [anon_sym__Nullable_result] = ACTIONS(7738), - [anon_sym__Null_unspecified] = ACTIONS(7738), - [anon_sym___autoreleasing] = ACTIONS(7738), - [anon_sym___nullable] = ACTIONS(7738), - [anon_sym___nonnull] = ACTIONS(7738), - [anon_sym___strong] = ACTIONS(7738), - [anon_sym___weak] = ACTIONS(7738), - [anon_sym___bridge] = ACTIONS(7738), - [anon_sym___bridge_transfer] = ACTIONS(7738), - [anon_sym___bridge_retained] = ACTIONS(7738), - [anon_sym___unsafe_unretained] = ACTIONS(7738), - [anon_sym___block] = ACTIONS(7738), - [anon_sym___kindof] = ACTIONS(7738), - [anon_sym___unused] = ACTIONS(7738), - [anon_sym__Complex] = ACTIONS(7738), - [anon_sym___complex] = ACTIONS(7738), - [anon_sym_IBOutlet] = ACTIONS(7738), - [anon_sym_IBInspectable] = ACTIONS(7738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7738), - [anon_sym_signed] = ACTIONS(7738), - [anon_sym_unsigned] = ACTIONS(7738), - [anon_sym_long] = ACTIONS(7738), - [anon_sym_short] = ACTIONS(7738), - [sym_primitive_type] = ACTIONS(7738), - [anon_sym_enum] = ACTIONS(7738), - [anon_sym_NS_ENUM] = ACTIONS(7738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7738), - [anon_sym_NS_OPTIONS] = ACTIONS(7738), - [anon_sym_struct] = ACTIONS(7738), - [anon_sym_union] = ACTIONS(7738), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7738), - [anon_sym_NS_AVAILABLE] = ACTIONS(7738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7738), - [anon_sym_API_AVAILABLE] = ACTIONS(7738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7738), - [anon_sym_API_DEPRECATED] = ACTIONS(7738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7738), - [anon_sym___deprecated_msg] = ACTIONS(7738), - [anon_sym___deprecated_enum_msg] = ACTIONS(7738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7738), - [anon_sym_typeof] = ACTIONS(7738), - [anon_sym___typeof] = ACTIONS(7738), - [anon_sym___typeof__] = ACTIONS(7738), - [sym_id] = ACTIONS(7738), - [sym_instancetype] = ACTIONS(7738), - [sym_Class] = ACTIONS(7738), - [sym_SEL] = ACTIONS(7738), - [sym_IMP] = ACTIONS(7738), - [sym_BOOL] = ACTIONS(7738), - [sym_auto] = ACTIONS(7738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(5), - [sym__ifdef_endif_retain] = ACTIONS(5), - [sym__ifdef_undef_retain] = ACTIONS(5), - }, - [3315] = { + [3212] = { [sym_identifier] = ACTIONS(7736), [aux_sym_preproc_def_token1] = ACTIONS(7736), [aux_sym_preproc_if_token1] = ACTIONS(7736), @@ -524558,9 +511831,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7736), [sym_primitive_type] = ACTIONS(7736), [anon_sym_enum] = ACTIONS(7736), - [anon_sym_NS_ENUM] = ACTIONS(7736), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7736), - [anon_sym_NS_OPTIONS] = ACTIONS(7736), [anon_sym_struct] = ACTIONS(7736), [anon_sym_union] = ACTIONS(7736), [sym_comment] = ACTIONS(3), @@ -524587,6 +511857,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7736), [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7736), [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7736), + [anon_sym_NS_ENUM] = ACTIONS(7736), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7736), + [anon_sym_NS_OPTIONS] = ACTIONS(7736), [anon_sym_typeof] = ACTIONS(7736), [anon_sym___typeof] = ACTIONS(7736), [anon_sym___typeof__] = ACTIONS(7736), @@ -524604,98 +511877,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(5), [sym__ifdef_undef_retain] = ACTIONS(5), }, - [3316] = { - [sym_identifier] = ACTIONS(7234), - [anon_sym_COMMA] = ACTIONS(7236), - [anon_sym_RPAREN] = ACTIONS(7236), - [anon_sym_LPAREN2] = ACTIONS(7236), - [anon_sym_DASH] = ACTIONS(7234), - [anon_sym_PLUS] = ACTIONS(7234), - [anon_sym_STAR] = ACTIONS(7236), - [anon_sym_SLASH] = ACTIONS(7234), - [anon_sym_PERCENT] = ACTIONS(7236), - [anon_sym_PIPE_PIPE] = ACTIONS(7236), - [anon_sym_AMP_AMP] = ACTIONS(7236), - [anon_sym_PIPE] = ACTIONS(7234), - [anon_sym_CARET] = ACTIONS(7236), - [anon_sym_AMP] = ACTIONS(7234), - [anon_sym_EQ_EQ] = ACTIONS(7236), - [anon_sym_BANG_EQ] = ACTIONS(7236), - [anon_sym_GT] = ACTIONS(7234), - [anon_sym_GT_EQ] = ACTIONS(7236), - [anon_sym_LT_EQ] = ACTIONS(7236), - [anon_sym_LT] = ACTIONS(7234), - [anon_sym_LT_LT] = ACTIONS(7236), - [anon_sym_GT_GT] = ACTIONS(7236), - [anon_sym_SEMI] = ACTIONS(7236), - [anon_sym___attribute] = ACTIONS(7234), - [anon_sym___attribute__] = ACTIONS(7234), - [anon_sym_RBRACE] = ACTIONS(7236), - [anon_sym_LBRACK] = ACTIONS(7236), - [anon_sym_RBRACK] = ACTIONS(7236), - [anon_sym_const] = ACTIONS(7234), - [anon_sym_volatile] = ACTIONS(7234), - [anon_sym_restrict] = ACTIONS(7234), - [anon_sym__Atomic] = ACTIONS(7234), - [anon_sym_in] = ACTIONS(7234), - [anon_sym_out] = ACTIONS(7234), - [anon_sym_inout] = ACTIONS(7234), - [anon_sym_bycopy] = ACTIONS(7234), - [anon_sym_byref] = ACTIONS(7234), - [anon_sym_oneway] = ACTIONS(7234), - [anon_sym__Nullable] = ACTIONS(7234), - [anon_sym__Nonnull] = ACTIONS(7234), - [anon_sym__Nullable_result] = ACTIONS(7234), - [anon_sym__Null_unspecified] = ACTIONS(7234), - [anon_sym___autoreleasing] = ACTIONS(7234), - [anon_sym___nullable] = ACTIONS(7234), - [anon_sym___nonnull] = ACTIONS(7234), - [anon_sym___strong] = ACTIONS(7234), - [anon_sym___weak] = ACTIONS(7234), - [anon_sym___bridge] = ACTIONS(7234), - [anon_sym___bridge_transfer] = ACTIONS(7234), - [anon_sym___bridge_retained] = ACTIONS(7234), - [anon_sym___unsafe_unretained] = ACTIONS(7234), - [anon_sym___block] = ACTIONS(7234), - [anon_sym___kindof] = ACTIONS(7234), - [anon_sym___unused] = ACTIONS(7234), - [anon_sym__Complex] = ACTIONS(7234), - [anon_sym___complex] = ACTIONS(7234), - [anon_sym_IBOutlet] = ACTIONS(7234), - [anon_sym_IBInspectable] = ACTIONS(7234), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7234), - [anon_sym_COLON] = ACTIONS(7236), - [anon_sym_QMARK] = ACTIONS(7236), - [anon_sym_DASH_DASH] = ACTIONS(7236), - [anon_sym_PLUS_PLUS] = ACTIONS(7236), - [anon_sym_DOT] = ACTIONS(7236), - [anon_sym_DASH_GT] = ACTIONS(7236), + [3213] = { + [sym_identifier] = ACTIONS(7692), + [aux_sym_preproc_def_token1] = ACTIONS(7692), + [aux_sym_preproc_if_token1] = ACTIONS(7692), + [aux_sym_preproc_if_token2] = ACTIONS(7692), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7692), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7692), + [sym_preproc_directive] = ACTIONS(7692), + [anon_sym_extern] = ACTIONS(7692), + [anon_sym___attribute] = ACTIONS(7692), + [anon_sym___attribute__] = ACTIONS(7692), + [anon_sym___declspec] = ACTIONS(7692), + [anon_sym_static] = ACTIONS(7692), + [anon_sym_auto] = ACTIONS(7692), + [anon_sym_register] = ACTIONS(7692), + [anon_sym_inline] = ACTIONS(7692), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7692), + [anon_sym_const] = ACTIONS(7692), + [anon_sym_volatile] = ACTIONS(7692), + [anon_sym_restrict] = ACTIONS(7692), + [anon_sym__Atomic] = ACTIONS(7692), + [anon_sym_in] = ACTIONS(7692), + [anon_sym_out] = ACTIONS(7692), + [anon_sym_inout] = ACTIONS(7692), + [anon_sym_bycopy] = ACTIONS(7692), + [anon_sym_byref] = ACTIONS(7692), + [anon_sym_oneway] = ACTIONS(7692), + [anon_sym__Nullable] = ACTIONS(7692), + [anon_sym__Nonnull] = ACTIONS(7692), + [anon_sym__Nullable_result] = ACTIONS(7692), + [anon_sym__Null_unspecified] = ACTIONS(7692), + [anon_sym___autoreleasing] = ACTIONS(7692), + [anon_sym___nullable] = ACTIONS(7692), + [anon_sym___nonnull] = ACTIONS(7692), + [anon_sym___strong] = ACTIONS(7692), + [anon_sym___weak] = ACTIONS(7692), + [anon_sym___bridge] = ACTIONS(7692), + [anon_sym___bridge_transfer] = ACTIONS(7692), + [anon_sym___bridge_retained] = ACTIONS(7692), + [anon_sym___unsafe_unretained] = ACTIONS(7692), + [anon_sym___block] = ACTIONS(7692), + [anon_sym___kindof] = ACTIONS(7692), + [anon_sym___unused] = ACTIONS(7692), + [anon_sym__Complex] = ACTIONS(7692), + [anon_sym___complex] = ACTIONS(7692), + [anon_sym_IBOutlet] = ACTIONS(7692), + [anon_sym_IBInspectable] = ACTIONS(7692), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7692), + [anon_sym_signed] = ACTIONS(7692), + [anon_sym_unsigned] = ACTIONS(7692), + [anon_sym_long] = ACTIONS(7692), + [anon_sym_short] = ACTIONS(7692), + [sym_primitive_type] = ACTIONS(7692), + [anon_sym_enum] = ACTIONS(7692), + [anon_sym_struct] = ACTIONS(7692), + [anon_sym_union] = ACTIONS(7692), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7234), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7234), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7234), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7234), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7234), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7234), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7234), - [anon_sym_NS_AVAILABLE] = ACTIONS(7234), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7234), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7234), - [anon_sym_API_AVAILABLE] = ACTIONS(7234), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7234), - [anon_sym_API_DEPRECATED] = ACTIONS(7234), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7234), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7234), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7234), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7234), - [anon_sym___deprecated_msg] = ACTIONS(7234), - [anon_sym___deprecated_enum_msg] = ACTIONS(7234), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7234), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7234), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7234), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7234), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7234), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7234), + [sym_method_attribute_specifier] = ACTIONS(7692), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7692), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7692), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7692), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7692), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7692), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7692), + [anon_sym_NS_AVAILABLE] = ACTIONS(7692), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7692), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7692), + [anon_sym_API_AVAILABLE] = ACTIONS(7692), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7692), + [anon_sym_API_DEPRECATED] = ACTIONS(7692), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7692), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7692), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7692), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7692), + [anon_sym___deprecated_msg] = ACTIONS(7692), + [anon_sym___deprecated_enum_msg] = ACTIONS(7692), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7692), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7692), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7692), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7692), + [anon_sym_NS_ENUM] = ACTIONS(7692), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7692), + [anon_sym_NS_OPTIONS] = ACTIONS(7692), + [anon_sym_typeof] = ACTIONS(7692), + [anon_sym___typeof] = ACTIONS(7692), + [anon_sym___typeof__] = ACTIONS(7692), + [sym_id] = ACTIONS(7692), + [sym_instancetype] = ACTIONS(7692), + [sym_Class] = ACTIONS(7692), + [sym_SEL] = ACTIONS(7692), + [sym_IMP] = ACTIONS(7692), + [sym_BOOL] = ACTIONS(7692), + [sym_auto] = ACTIONS(7692), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3214] = { + [sym_identifier] = ACTIONS(7696), + [aux_sym_preproc_def_token1] = ACTIONS(7696), + [aux_sym_preproc_if_token1] = ACTIONS(7696), + [aux_sym_preproc_if_token2] = ACTIONS(7696), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7696), + [sym_preproc_directive] = ACTIONS(7696), + [anon_sym_extern] = ACTIONS(7696), + [anon_sym___attribute] = ACTIONS(7696), + [anon_sym___attribute__] = ACTIONS(7696), + [anon_sym___declspec] = ACTIONS(7696), + [anon_sym_static] = ACTIONS(7696), + [anon_sym_auto] = ACTIONS(7696), + [anon_sym_register] = ACTIONS(7696), + [anon_sym_inline] = ACTIONS(7696), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7696), + [anon_sym_const] = ACTIONS(7696), + [anon_sym_volatile] = ACTIONS(7696), + [anon_sym_restrict] = ACTIONS(7696), + [anon_sym__Atomic] = ACTIONS(7696), + [anon_sym_in] = ACTIONS(7696), + [anon_sym_out] = ACTIONS(7696), + [anon_sym_inout] = ACTIONS(7696), + [anon_sym_bycopy] = ACTIONS(7696), + [anon_sym_byref] = ACTIONS(7696), + [anon_sym_oneway] = ACTIONS(7696), + [anon_sym__Nullable] = ACTIONS(7696), + [anon_sym__Nonnull] = ACTIONS(7696), + [anon_sym__Nullable_result] = ACTIONS(7696), + [anon_sym__Null_unspecified] = ACTIONS(7696), + [anon_sym___autoreleasing] = ACTIONS(7696), + [anon_sym___nullable] = ACTIONS(7696), + [anon_sym___nonnull] = ACTIONS(7696), + [anon_sym___strong] = ACTIONS(7696), + [anon_sym___weak] = ACTIONS(7696), + [anon_sym___bridge] = ACTIONS(7696), + [anon_sym___bridge_transfer] = ACTIONS(7696), + [anon_sym___bridge_retained] = ACTIONS(7696), + [anon_sym___unsafe_unretained] = ACTIONS(7696), + [anon_sym___block] = ACTIONS(7696), + [anon_sym___kindof] = ACTIONS(7696), + [anon_sym___unused] = ACTIONS(7696), + [anon_sym__Complex] = ACTIONS(7696), + [anon_sym___complex] = ACTIONS(7696), + [anon_sym_IBOutlet] = ACTIONS(7696), + [anon_sym_IBInspectable] = ACTIONS(7696), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7696), + [anon_sym_signed] = ACTIONS(7696), + [anon_sym_unsigned] = ACTIONS(7696), + [anon_sym_long] = ACTIONS(7696), + [anon_sym_short] = ACTIONS(7696), + [sym_primitive_type] = ACTIONS(7696), + [anon_sym_enum] = ACTIONS(7696), + [anon_sym_struct] = ACTIONS(7696), + [anon_sym_union] = ACTIONS(7696), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7696), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7696), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7696), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7696), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7696), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7696), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7696), + [anon_sym_NS_AVAILABLE] = ACTIONS(7696), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7696), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7696), + [anon_sym_API_AVAILABLE] = ACTIONS(7696), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7696), + [anon_sym_API_DEPRECATED] = ACTIONS(7696), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7696), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7696), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7696), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7696), + [anon_sym___deprecated_msg] = ACTIONS(7696), + [anon_sym___deprecated_enum_msg] = ACTIONS(7696), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7696), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7696), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7696), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7696), + [anon_sym_NS_ENUM] = ACTIONS(7696), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7696), + [anon_sym_NS_OPTIONS] = ACTIONS(7696), + [anon_sym_typeof] = ACTIONS(7696), + [anon_sym___typeof] = ACTIONS(7696), + [anon_sym___typeof__] = ACTIONS(7696), + [sym_id] = ACTIONS(7696), + [sym_instancetype] = ACTIONS(7696), + [sym_Class] = ACTIONS(7696), + [sym_SEL] = ACTIONS(7696), + [sym_IMP] = ACTIONS(7696), + [sym_BOOL] = ACTIONS(7696), + [sym_auto] = ACTIONS(7696), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3215] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6962), + [anon_sym_COMMA] = ACTIONS(6964), + [anon_sym_RPAREN] = ACTIONS(6964), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(6962), + [anon_sym_PLUS] = ACTIONS(6962), + [anon_sym_STAR] = ACTIONS(6964), + [anon_sym_SLASH] = ACTIONS(6962), + [anon_sym_PERCENT] = ACTIONS(6964), + [anon_sym_PIPE_PIPE] = ACTIONS(6964), + [anon_sym_AMP_AMP] = ACTIONS(6964), + [anon_sym_PIPE] = ACTIONS(6962), + [anon_sym_CARET] = ACTIONS(6964), + [anon_sym_AMP] = ACTIONS(6962), + [anon_sym_EQ_EQ] = ACTIONS(6964), + [anon_sym_BANG_EQ] = ACTIONS(6964), + [anon_sym_GT] = ACTIONS(6962), + [anon_sym_GT_EQ] = ACTIONS(6964), + [anon_sym_LT_EQ] = ACTIONS(6964), + [anon_sym_LT] = ACTIONS(6962), + [anon_sym_LT_LT] = ACTIONS(6964), + [anon_sym_GT_GT] = ACTIONS(6964), + [anon_sym_SEMI] = ACTIONS(6964), + [anon_sym___attribute] = ACTIONS(6962), + [anon_sym___attribute__] = ACTIONS(6962), + [anon_sym_RBRACE] = ACTIONS(6964), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6964), + [anon_sym_const] = ACTIONS(6962), + [anon_sym_volatile] = ACTIONS(6962), + [anon_sym_restrict] = ACTIONS(6962), + [anon_sym__Atomic] = ACTIONS(6962), + [anon_sym_in] = ACTIONS(6962), + [anon_sym_out] = ACTIONS(6962), + [anon_sym_inout] = ACTIONS(6962), + [anon_sym_bycopy] = ACTIONS(6962), + [anon_sym_byref] = ACTIONS(6962), + [anon_sym_oneway] = ACTIONS(6962), + [anon_sym__Nullable] = ACTIONS(6962), + [anon_sym__Nonnull] = ACTIONS(6962), + [anon_sym__Nullable_result] = ACTIONS(6962), + [anon_sym__Null_unspecified] = ACTIONS(6962), + [anon_sym___autoreleasing] = ACTIONS(6962), + [anon_sym___nullable] = ACTIONS(6962), + [anon_sym___nonnull] = ACTIONS(6962), + [anon_sym___strong] = ACTIONS(6962), + [anon_sym___weak] = ACTIONS(6962), + [anon_sym___bridge] = ACTIONS(6962), + [anon_sym___bridge_transfer] = ACTIONS(6962), + [anon_sym___bridge_retained] = ACTIONS(6962), + [anon_sym___unsafe_unretained] = ACTIONS(6962), + [anon_sym___block] = ACTIONS(6962), + [anon_sym___kindof] = ACTIONS(6962), + [anon_sym___unused] = ACTIONS(6962), + [anon_sym__Complex] = ACTIONS(6962), + [anon_sym___complex] = ACTIONS(6962), + [anon_sym_IBOutlet] = ACTIONS(6962), + [anon_sym_IBInspectable] = ACTIONS(6962), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6962), + [anon_sym_COLON] = ACTIONS(6964), + [anon_sym_QMARK] = ACTIONS(6964), + [anon_sym_DASH_DASH] = ACTIONS(6964), + [anon_sym_PLUS_PLUS] = ACTIONS(6964), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6962), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6962), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6962), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6962), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6962), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6962), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6962), + [anon_sym_NS_AVAILABLE] = ACTIONS(6962), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6962), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6962), + [anon_sym_API_AVAILABLE] = ACTIONS(6962), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6962), + [anon_sym_API_DEPRECATED] = ACTIONS(6962), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6962), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6962), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6962), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6962), + [anon_sym___deprecated_msg] = ACTIONS(6962), + [anon_sym___deprecated_enum_msg] = ACTIONS(6962), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6962), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6962), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6962), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6962), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6962), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6962), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -524703,98 +512177,999 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3317] = { - [sym_identifier] = ACTIONS(7134), - [anon_sym_COMMA] = ACTIONS(7136), - [anon_sym_RPAREN] = ACTIONS(7136), - [anon_sym_LPAREN2] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(7134), - [anon_sym_PLUS] = ACTIONS(7134), - [anon_sym_STAR] = ACTIONS(7136), - [anon_sym_SLASH] = ACTIONS(7134), - [anon_sym_PERCENT] = ACTIONS(7136), - [anon_sym_PIPE_PIPE] = ACTIONS(7136), - [anon_sym_AMP_AMP] = ACTIONS(7136), - [anon_sym_PIPE] = ACTIONS(7134), - [anon_sym_CARET] = ACTIONS(7136), - [anon_sym_AMP] = ACTIONS(7134), - [anon_sym_EQ_EQ] = ACTIONS(7136), - [anon_sym_BANG_EQ] = ACTIONS(7136), - [anon_sym_GT] = ACTIONS(7134), - [anon_sym_GT_EQ] = ACTIONS(7136), - [anon_sym_LT_EQ] = ACTIONS(7136), - [anon_sym_LT] = ACTIONS(7134), - [anon_sym_LT_LT] = ACTIONS(7136), - [anon_sym_GT_GT] = ACTIONS(7136), - [anon_sym_SEMI] = ACTIONS(7136), - [anon_sym___attribute] = ACTIONS(7134), - [anon_sym___attribute__] = ACTIONS(7134), - [anon_sym_RBRACE] = ACTIONS(7136), - [anon_sym_LBRACK] = ACTIONS(7136), - [anon_sym_RBRACK] = ACTIONS(7136), - [anon_sym_const] = ACTIONS(7134), - [anon_sym_volatile] = ACTIONS(7134), - [anon_sym_restrict] = ACTIONS(7134), - [anon_sym__Atomic] = ACTIONS(7134), - [anon_sym_in] = ACTIONS(7134), - [anon_sym_out] = ACTIONS(7134), - [anon_sym_inout] = ACTIONS(7134), - [anon_sym_bycopy] = ACTIONS(7134), - [anon_sym_byref] = ACTIONS(7134), - [anon_sym_oneway] = ACTIONS(7134), - [anon_sym__Nullable] = ACTIONS(7134), - [anon_sym__Nonnull] = ACTIONS(7134), - [anon_sym__Nullable_result] = ACTIONS(7134), - [anon_sym__Null_unspecified] = ACTIONS(7134), - [anon_sym___autoreleasing] = ACTIONS(7134), - [anon_sym___nullable] = ACTIONS(7134), - [anon_sym___nonnull] = ACTIONS(7134), - [anon_sym___strong] = ACTIONS(7134), - [anon_sym___weak] = ACTIONS(7134), - [anon_sym___bridge] = ACTIONS(7134), - [anon_sym___bridge_transfer] = ACTIONS(7134), - [anon_sym___bridge_retained] = ACTIONS(7134), - [anon_sym___unsafe_unretained] = ACTIONS(7134), - [anon_sym___block] = ACTIONS(7134), - [anon_sym___kindof] = ACTIONS(7134), - [anon_sym___unused] = ACTIONS(7134), - [anon_sym__Complex] = ACTIONS(7134), - [anon_sym___complex] = ACTIONS(7134), - [anon_sym_IBOutlet] = ACTIONS(7134), - [anon_sym_IBInspectable] = ACTIONS(7134), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7134), - [anon_sym_COLON] = ACTIONS(7136), - [anon_sym_QMARK] = ACTIONS(7136), - [anon_sym_DASH_DASH] = ACTIONS(7136), - [anon_sym_PLUS_PLUS] = ACTIONS(7136), - [anon_sym_DOT] = ACTIONS(7136), - [anon_sym_DASH_GT] = ACTIONS(7136), + [3216] = { + [sym_identifier] = ACTIONS(7694), + [aux_sym_preproc_def_token1] = ACTIONS(7694), + [aux_sym_preproc_if_token1] = ACTIONS(7694), + [aux_sym_preproc_if_token2] = ACTIONS(7694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7694), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7694), + [sym_preproc_directive] = ACTIONS(7694), + [anon_sym_extern] = ACTIONS(7694), + [anon_sym___attribute] = ACTIONS(7694), + [anon_sym___attribute__] = ACTIONS(7694), + [anon_sym___declspec] = ACTIONS(7694), + [anon_sym_static] = ACTIONS(7694), + [anon_sym_auto] = ACTIONS(7694), + [anon_sym_register] = ACTIONS(7694), + [anon_sym_inline] = ACTIONS(7694), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7694), + [anon_sym_const] = ACTIONS(7694), + [anon_sym_volatile] = ACTIONS(7694), + [anon_sym_restrict] = ACTIONS(7694), + [anon_sym__Atomic] = ACTIONS(7694), + [anon_sym_in] = ACTIONS(7694), + [anon_sym_out] = ACTIONS(7694), + [anon_sym_inout] = ACTIONS(7694), + [anon_sym_bycopy] = ACTIONS(7694), + [anon_sym_byref] = ACTIONS(7694), + [anon_sym_oneway] = ACTIONS(7694), + [anon_sym__Nullable] = ACTIONS(7694), + [anon_sym__Nonnull] = ACTIONS(7694), + [anon_sym__Nullable_result] = ACTIONS(7694), + [anon_sym__Null_unspecified] = ACTIONS(7694), + [anon_sym___autoreleasing] = ACTIONS(7694), + [anon_sym___nullable] = ACTIONS(7694), + [anon_sym___nonnull] = ACTIONS(7694), + [anon_sym___strong] = ACTIONS(7694), + [anon_sym___weak] = ACTIONS(7694), + [anon_sym___bridge] = ACTIONS(7694), + [anon_sym___bridge_transfer] = ACTIONS(7694), + [anon_sym___bridge_retained] = ACTIONS(7694), + [anon_sym___unsafe_unretained] = ACTIONS(7694), + [anon_sym___block] = ACTIONS(7694), + [anon_sym___kindof] = ACTIONS(7694), + [anon_sym___unused] = ACTIONS(7694), + [anon_sym__Complex] = ACTIONS(7694), + [anon_sym___complex] = ACTIONS(7694), + [anon_sym_IBOutlet] = ACTIONS(7694), + [anon_sym_IBInspectable] = ACTIONS(7694), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7694), + [anon_sym_signed] = ACTIONS(7694), + [anon_sym_unsigned] = ACTIONS(7694), + [anon_sym_long] = ACTIONS(7694), + [anon_sym_short] = ACTIONS(7694), + [sym_primitive_type] = ACTIONS(7694), + [anon_sym_enum] = ACTIONS(7694), + [anon_sym_struct] = ACTIONS(7694), + [anon_sym_union] = ACTIONS(7694), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7134), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7134), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7134), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7134), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7134), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7134), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7134), - [anon_sym_NS_AVAILABLE] = ACTIONS(7134), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7134), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7134), - [anon_sym_API_AVAILABLE] = ACTIONS(7134), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7134), - [anon_sym_API_DEPRECATED] = ACTIONS(7134), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7134), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7134), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7134), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7134), - [anon_sym___deprecated_msg] = ACTIONS(7134), - [anon_sym___deprecated_enum_msg] = ACTIONS(7134), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7134), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7134), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7134), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7134), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7134), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7134), + [sym_method_attribute_specifier] = ACTIONS(7694), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7694), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7694), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7694), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7694), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7694), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7694), + [anon_sym_NS_AVAILABLE] = ACTIONS(7694), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7694), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7694), + [anon_sym_API_AVAILABLE] = ACTIONS(7694), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7694), + [anon_sym_API_DEPRECATED] = ACTIONS(7694), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7694), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7694), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7694), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7694), + [anon_sym___deprecated_msg] = ACTIONS(7694), + [anon_sym___deprecated_enum_msg] = ACTIONS(7694), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7694), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7694), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7694), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7694), + [anon_sym_NS_ENUM] = ACTIONS(7694), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7694), + [anon_sym_NS_OPTIONS] = ACTIONS(7694), + [anon_sym_typeof] = ACTIONS(7694), + [anon_sym___typeof] = ACTIONS(7694), + [anon_sym___typeof__] = ACTIONS(7694), + [sym_id] = ACTIONS(7694), + [sym_instancetype] = ACTIONS(7694), + [sym_Class] = ACTIONS(7694), + [sym_SEL] = ACTIONS(7694), + [sym_IMP] = ACTIONS(7694), + [sym_BOOL] = ACTIONS(7694), + [sym_auto] = ACTIONS(7694), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3217] = { + [sym_identifier] = ACTIONS(7724), + [aux_sym_preproc_def_token1] = ACTIONS(7724), + [aux_sym_preproc_if_token1] = ACTIONS(7724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7724), + [sym_preproc_directive] = ACTIONS(7724), + [anon_sym_extern] = ACTIONS(7724), + [anon_sym___attribute] = ACTIONS(7724), + [anon_sym___attribute__] = ACTIONS(7724), + [anon_sym___declspec] = ACTIONS(7724), + [anon_sym_RBRACE] = ACTIONS(7809), + [anon_sym_static] = ACTIONS(7724), + [anon_sym_auto] = ACTIONS(7724), + [anon_sym_register] = ACTIONS(7724), + [anon_sym_inline] = ACTIONS(7724), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7724), + [anon_sym_const] = ACTIONS(7724), + [anon_sym_volatile] = ACTIONS(7724), + [anon_sym_restrict] = ACTIONS(7724), + [anon_sym__Atomic] = ACTIONS(7724), + [anon_sym_in] = ACTIONS(7724), + [anon_sym_out] = ACTIONS(7724), + [anon_sym_inout] = ACTIONS(7724), + [anon_sym_bycopy] = ACTIONS(7724), + [anon_sym_byref] = ACTIONS(7724), + [anon_sym_oneway] = ACTIONS(7724), + [anon_sym__Nullable] = ACTIONS(7724), + [anon_sym__Nonnull] = ACTIONS(7724), + [anon_sym__Nullable_result] = ACTIONS(7724), + [anon_sym__Null_unspecified] = ACTIONS(7724), + [anon_sym___autoreleasing] = ACTIONS(7724), + [anon_sym___nullable] = ACTIONS(7724), + [anon_sym___nonnull] = ACTIONS(7724), + [anon_sym___strong] = ACTIONS(7724), + [anon_sym___weak] = ACTIONS(7724), + [anon_sym___bridge] = ACTIONS(7724), + [anon_sym___bridge_transfer] = ACTIONS(7724), + [anon_sym___bridge_retained] = ACTIONS(7724), + [anon_sym___unsafe_unretained] = ACTIONS(7724), + [anon_sym___block] = ACTIONS(7724), + [anon_sym___kindof] = ACTIONS(7724), + [anon_sym___unused] = ACTIONS(7724), + [anon_sym__Complex] = ACTIONS(7724), + [anon_sym___complex] = ACTIONS(7724), + [anon_sym_IBOutlet] = ACTIONS(7724), + [anon_sym_IBInspectable] = ACTIONS(7724), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7724), + [anon_sym_signed] = ACTIONS(7724), + [anon_sym_unsigned] = ACTIONS(7724), + [anon_sym_long] = ACTIONS(7724), + [anon_sym_short] = ACTIONS(7724), + [sym_primitive_type] = ACTIONS(7724), + [anon_sym_enum] = ACTIONS(7724), + [anon_sym_struct] = ACTIONS(7724), + [anon_sym_union] = ACTIONS(7724), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7724), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7724), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7724), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7724), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7724), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7724), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7724), + [anon_sym_NS_AVAILABLE] = ACTIONS(7724), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7724), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7724), + [anon_sym_API_AVAILABLE] = ACTIONS(7724), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7724), + [anon_sym_API_DEPRECATED] = ACTIONS(7724), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7724), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7724), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7724), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7724), + [anon_sym___deprecated_msg] = ACTIONS(7724), + [anon_sym___deprecated_enum_msg] = ACTIONS(7724), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7724), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7724), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7724), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7724), + [anon_sym_NS_ENUM] = ACTIONS(7724), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7724), + [anon_sym_NS_OPTIONS] = ACTIONS(7724), + [anon_sym_typeof] = ACTIONS(7724), + [anon_sym___typeof] = ACTIONS(7724), + [anon_sym___typeof__] = ACTIONS(7724), + [sym_id] = ACTIONS(7724), + [sym_instancetype] = ACTIONS(7724), + [sym_Class] = ACTIONS(7724), + [sym_SEL] = ACTIONS(7724), + [sym_IMP] = ACTIONS(7724), + [sym_BOOL] = ACTIONS(7724), + [sym_auto] = ACTIONS(7724), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3218] = { + [sym_identifier] = ACTIONS(7696), + [aux_sym_preproc_def_token1] = ACTIONS(7696), + [aux_sym_preproc_if_token1] = ACTIONS(7696), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7696), + [sym_preproc_directive] = ACTIONS(7696), + [anon_sym_extern] = ACTIONS(7696), + [anon_sym___attribute] = ACTIONS(7696), + [anon_sym___attribute__] = ACTIONS(7696), + [anon_sym___declspec] = ACTIONS(7696), + [anon_sym_RBRACE] = ACTIONS(7811), + [anon_sym_static] = ACTIONS(7696), + [anon_sym_auto] = ACTIONS(7696), + [anon_sym_register] = ACTIONS(7696), + [anon_sym_inline] = ACTIONS(7696), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7696), + [anon_sym_const] = ACTIONS(7696), + [anon_sym_volatile] = ACTIONS(7696), + [anon_sym_restrict] = ACTIONS(7696), + [anon_sym__Atomic] = ACTIONS(7696), + [anon_sym_in] = ACTIONS(7696), + [anon_sym_out] = ACTIONS(7696), + [anon_sym_inout] = ACTIONS(7696), + [anon_sym_bycopy] = ACTIONS(7696), + [anon_sym_byref] = ACTIONS(7696), + [anon_sym_oneway] = ACTIONS(7696), + [anon_sym__Nullable] = ACTIONS(7696), + [anon_sym__Nonnull] = ACTIONS(7696), + [anon_sym__Nullable_result] = ACTIONS(7696), + [anon_sym__Null_unspecified] = ACTIONS(7696), + [anon_sym___autoreleasing] = ACTIONS(7696), + [anon_sym___nullable] = ACTIONS(7696), + [anon_sym___nonnull] = ACTIONS(7696), + [anon_sym___strong] = ACTIONS(7696), + [anon_sym___weak] = ACTIONS(7696), + [anon_sym___bridge] = ACTIONS(7696), + [anon_sym___bridge_transfer] = ACTIONS(7696), + [anon_sym___bridge_retained] = ACTIONS(7696), + [anon_sym___unsafe_unretained] = ACTIONS(7696), + [anon_sym___block] = ACTIONS(7696), + [anon_sym___kindof] = ACTIONS(7696), + [anon_sym___unused] = ACTIONS(7696), + [anon_sym__Complex] = ACTIONS(7696), + [anon_sym___complex] = ACTIONS(7696), + [anon_sym_IBOutlet] = ACTIONS(7696), + [anon_sym_IBInspectable] = ACTIONS(7696), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7696), + [anon_sym_signed] = ACTIONS(7696), + [anon_sym_unsigned] = ACTIONS(7696), + [anon_sym_long] = ACTIONS(7696), + [anon_sym_short] = ACTIONS(7696), + [sym_primitive_type] = ACTIONS(7696), + [anon_sym_enum] = ACTIONS(7696), + [anon_sym_struct] = ACTIONS(7696), + [anon_sym_union] = ACTIONS(7696), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7696), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7696), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7696), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7696), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7696), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7696), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7696), + [anon_sym_NS_AVAILABLE] = ACTIONS(7696), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7696), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7696), + [anon_sym_API_AVAILABLE] = ACTIONS(7696), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7696), + [anon_sym_API_DEPRECATED] = ACTIONS(7696), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7696), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7696), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7696), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7696), + [anon_sym___deprecated_msg] = ACTIONS(7696), + [anon_sym___deprecated_enum_msg] = ACTIONS(7696), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7696), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7696), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7696), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7696), + [anon_sym_NS_ENUM] = ACTIONS(7696), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7696), + [anon_sym_NS_OPTIONS] = ACTIONS(7696), + [anon_sym_typeof] = ACTIONS(7696), + [anon_sym___typeof] = ACTIONS(7696), + [anon_sym___typeof__] = ACTIONS(7696), + [sym_id] = ACTIONS(7696), + [sym_instancetype] = ACTIONS(7696), + [sym_Class] = ACTIONS(7696), + [sym_SEL] = ACTIONS(7696), + [sym_IMP] = ACTIONS(7696), + [sym_BOOL] = ACTIONS(7696), + [sym_auto] = ACTIONS(7696), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3219] = { + [sym_identifier] = ACTIONS(7726), + [aux_sym_preproc_def_token1] = ACTIONS(7726), + [aux_sym_preproc_if_token1] = ACTIONS(7726), + [aux_sym_preproc_if_token2] = ACTIONS(7726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7726), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7726), + [sym_preproc_directive] = ACTIONS(7726), + [anon_sym_extern] = ACTIONS(7726), + [anon_sym___attribute] = ACTIONS(7726), + [anon_sym___attribute__] = ACTIONS(7726), + [anon_sym___declspec] = ACTIONS(7726), + [anon_sym_static] = ACTIONS(7726), + [anon_sym_auto] = ACTIONS(7726), + [anon_sym_register] = ACTIONS(7726), + [anon_sym_inline] = ACTIONS(7726), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7726), + [anon_sym_const] = ACTIONS(7726), + [anon_sym_volatile] = ACTIONS(7726), + [anon_sym_restrict] = ACTIONS(7726), + [anon_sym__Atomic] = ACTIONS(7726), + [anon_sym_in] = ACTIONS(7726), + [anon_sym_out] = ACTIONS(7726), + [anon_sym_inout] = ACTIONS(7726), + [anon_sym_bycopy] = ACTIONS(7726), + [anon_sym_byref] = ACTIONS(7726), + [anon_sym_oneway] = ACTIONS(7726), + [anon_sym__Nullable] = ACTIONS(7726), + [anon_sym__Nonnull] = ACTIONS(7726), + [anon_sym__Nullable_result] = ACTIONS(7726), + [anon_sym__Null_unspecified] = ACTIONS(7726), + [anon_sym___autoreleasing] = ACTIONS(7726), + [anon_sym___nullable] = ACTIONS(7726), + [anon_sym___nonnull] = ACTIONS(7726), + [anon_sym___strong] = ACTIONS(7726), + [anon_sym___weak] = ACTIONS(7726), + [anon_sym___bridge] = ACTIONS(7726), + [anon_sym___bridge_transfer] = ACTIONS(7726), + [anon_sym___bridge_retained] = ACTIONS(7726), + [anon_sym___unsafe_unretained] = ACTIONS(7726), + [anon_sym___block] = ACTIONS(7726), + [anon_sym___kindof] = ACTIONS(7726), + [anon_sym___unused] = ACTIONS(7726), + [anon_sym__Complex] = ACTIONS(7726), + [anon_sym___complex] = ACTIONS(7726), + [anon_sym_IBOutlet] = ACTIONS(7726), + [anon_sym_IBInspectable] = ACTIONS(7726), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7726), + [anon_sym_signed] = ACTIONS(7726), + [anon_sym_unsigned] = ACTIONS(7726), + [anon_sym_long] = ACTIONS(7726), + [anon_sym_short] = ACTIONS(7726), + [sym_primitive_type] = ACTIONS(7726), + [anon_sym_enum] = ACTIONS(7726), + [anon_sym_struct] = ACTIONS(7726), + [anon_sym_union] = ACTIONS(7726), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7726), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7726), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7726), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7726), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7726), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7726), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7726), + [anon_sym_NS_AVAILABLE] = ACTIONS(7726), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7726), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7726), + [anon_sym_API_AVAILABLE] = ACTIONS(7726), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7726), + [anon_sym_API_DEPRECATED] = ACTIONS(7726), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7726), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7726), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7726), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7726), + [anon_sym___deprecated_msg] = ACTIONS(7726), + [anon_sym___deprecated_enum_msg] = ACTIONS(7726), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7726), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7726), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7726), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7726), + [anon_sym_NS_ENUM] = ACTIONS(7726), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7726), + [anon_sym_NS_OPTIONS] = ACTIONS(7726), + [anon_sym_typeof] = ACTIONS(7726), + [anon_sym___typeof] = ACTIONS(7726), + [anon_sym___typeof__] = ACTIONS(7726), + [sym_id] = ACTIONS(7726), + [sym_instancetype] = ACTIONS(7726), + [sym_Class] = ACTIONS(7726), + [sym_SEL] = ACTIONS(7726), + [sym_IMP] = ACTIONS(7726), + [sym_BOOL] = ACTIONS(7726), + [sym_auto] = ACTIONS(7726), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3220] = { + [sym_identifier] = ACTIONS(7684), + [aux_sym_preproc_def_token1] = ACTIONS(7684), + [aux_sym_preproc_if_token1] = ACTIONS(7684), + [aux_sym_preproc_if_token2] = ACTIONS(7684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7684), + [sym_preproc_directive] = ACTIONS(7684), + [anon_sym_extern] = ACTIONS(7684), + [anon_sym___attribute] = ACTIONS(7684), + [anon_sym___attribute__] = ACTIONS(7684), + [anon_sym___declspec] = ACTIONS(7684), + [anon_sym_static] = ACTIONS(7684), + [anon_sym_auto] = ACTIONS(7684), + [anon_sym_register] = ACTIONS(7684), + [anon_sym_inline] = ACTIONS(7684), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7684), + [anon_sym_const] = ACTIONS(7684), + [anon_sym_volatile] = ACTIONS(7684), + [anon_sym_restrict] = ACTIONS(7684), + [anon_sym__Atomic] = ACTIONS(7684), + [anon_sym_in] = ACTIONS(7684), + [anon_sym_out] = ACTIONS(7684), + [anon_sym_inout] = ACTIONS(7684), + [anon_sym_bycopy] = ACTIONS(7684), + [anon_sym_byref] = ACTIONS(7684), + [anon_sym_oneway] = ACTIONS(7684), + [anon_sym__Nullable] = ACTIONS(7684), + [anon_sym__Nonnull] = ACTIONS(7684), + [anon_sym__Nullable_result] = ACTIONS(7684), + [anon_sym__Null_unspecified] = ACTIONS(7684), + [anon_sym___autoreleasing] = ACTIONS(7684), + [anon_sym___nullable] = ACTIONS(7684), + [anon_sym___nonnull] = ACTIONS(7684), + [anon_sym___strong] = ACTIONS(7684), + [anon_sym___weak] = ACTIONS(7684), + [anon_sym___bridge] = ACTIONS(7684), + [anon_sym___bridge_transfer] = ACTIONS(7684), + [anon_sym___bridge_retained] = ACTIONS(7684), + [anon_sym___unsafe_unretained] = ACTIONS(7684), + [anon_sym___block] = ACTIONS(7684), + [anon_sym___kindof] = ACTIONS(7684), + [anon_sym___unused] = ACTIONS(7684), + [anon_sym__Complex] = ACTIONS(7684), + [anon_sym___complex] = ACTIONS(7684), + [anon_sym_IBOutlet] = ACTIONS(7684), + [anon_sym_IBInspectable] = ACTIONS(7684), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7684), + [anon_sym_signed] = ACTIONS(7684), + [anon_sym_unsigned] = ACTIONS(7684), + [anon_sym_long] = ACTIONS(7684), + [anon_sym_short] = ACTIONS(7684), + [sym_primitive_type] = ACTIONS(7684), + [anon_sym_enum] = ACTIONS(7684), + [anon_sym_struct] = ACTIONS(7684), + [anon_sym_union] = ACTIONS(7684), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7684), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7684), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7684), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7684), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7684), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7684), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7684), + [anon_sym_NS_AVAILABLE] = ACTIONS(7684), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7684), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7684), + [anon_sym_API_AVAILABLE] = ACTIONS(7684), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7684), + [anon_sym_API_DEPRECATED] = ACTIONS(7684), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7684), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7684), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7684), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7684), + [anon_sym___deprecated_msg] = ACTIONS(7684), + [anon_sym___deprecated_enum_msg] = ACTIONS(7684), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7684), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7684), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7684), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7684), + [anon_sym_NS_ENUM] = ACTIONS(7684), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7684), + [anon_sym_NS_OPTIONS] = ACTIONS(7684), + [anon_sym_typeof] = ACTIONS(7684), + [anon_sym___typeof] = ACTIONS(7684), + [anon_sym___typeof__] = ACTIONS(7684), + [sym_id] = ACTIONS(7684), + [sym_instancetype] = ACTIONS(7684), + [sym_Class] = ACTIONS(7684), + [sym_SEL] = ACTIONS(7684), + [sym_IMP] = ACTIONS(7684), + [sym_BOOL] = ACTIONS(7684), + [sym_auto] = ACTIONS(7684), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3221] = { + [sym_identifier] = ACTIONS(7686), + [aux_sym_preproc_def_token1] = ACTIONS(7686), + [aux_sym_preproc_if_token1] = ACTIONS(7686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7686), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7686), + [sym_preproc_directive] = ACTIONS(7686), + [anon_sym_extern] = ACTIONS(7686), + [anon_sym___attribute] = ACTIONS(7686), + [anon_sym___attribute__] = ACTIONS(7686), + [anon_sym___declspec] = ACTIONS(7686), + [anon_sym_RBRACE] = ACTIONS(7813), + [anon_sym_static] = ACTIONS(7686), + [anon_sym_auto] = ACTIONS(7686), + [anon_sym_register] = ACTIONS(7686), + [anon_sym_inline] = ACTIONS(7686), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7686), + [anon_sym_const] = ACTIONS(7686), + [anon_sym_volatile] = ACTIONS(7686), + [anon_sym_restrict] = ACTIONS(7686), + [anon_sym__Atomic] = ACTIONS(7686), + [anon_sym_in] = ACTIONS(7686), + [anon_sym_out] = ACTIONS(7686), + [anon_sym_inout] = ACTIONS(7686), + [anon_sym_bycopy] = ACTIONS(7686), + [anon_sym_byref] = ACTIONS(7686), + [anon_sym_oneway] = ACTIONS(7686), + [anon_sym__Nullable] = ACTIONS(7686), + [anon_sym__Nonnull] = ACTIONS(7686), + [anon_sym__Nullable_result] = ACTIONS(7686), + [anon_sym__Null_unspecified] = ACTIONS(7686), + [anon_sym___autoreleasing] = ACTIONS(7686), + [anon_sym___nullable] = ACTIONS(7686), + [anon_sym___nonnull] = ACTIONS(7686), + [anon_sym___strong] = ACTIONS(7686), + [anon_sym___weak] = ACTIONS(7686), + [anon_sym___bridge] = ACTIONS(7686), + [anon_sym___bridge_transfer] = ACTIONS(7686), + [anon_sym___bridge_retained] = ACTIONS(7686), + [anon_sym___unsafe_unretained] = ACTIONS(7686), + [anon_sym___block] = ACTIONS(7686), + [anon_sym___kindof] = ACTIONS(7686), + [anon_sym___unused] = ACTIONS(7686), + [anon_sym__Complex] = ACTIONS(7686), + [anon_sym___complex] = ACTIONS(7686), + [anon_sym_IBOutlet] = ACTIONS(7686), + [anon_sym_IBInspectable] = ACTIONS(7686), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7686), + [anon_sym_signed] = ACTIONS(7686), + [anon_sym_unsigned] = ACTIONS(7686), + [anon_sym_long] = ACTIONS(7686), + [anon_sym_short] = ACTIONS(7686), + [sym_primitive_type] = ACTIONS(7686), + [anon_sym_enum] = ACTIONS(7686), + [anon_sym_struct] = ACTIONS(7686), + [anon_sym_union] = ACTIONS(7686), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7686), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7686), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7686), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7686), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7686), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7686), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7686), + [anon_sym_NS_AVAILABLE] = ACTIONS(7686), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7686), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7686), + [anon_sym_API_AVAILABLE] = ACTIONS(7686), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7686), + [anon_sym_API_DEPRECATED] = ACTIONS(7686), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7686), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7686), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7686), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7686), + [anon_sym___deprecated_msg] = ACTIONS(7686), + [anon_sym___deprecated_enum_msg] = ACTIONS(7686), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7686), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7686), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7686), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7686), + [anon_sym_NS_ENUM] = ACTIONS(7686), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7686), + [anon_sym_NS_OPTIONS] = ACTIONS(7686), + [anon_sym_typeof] = ACTIONS(7686), + [anon_sym___typeof] = ACTIONS(7686), + [anon_sym___typeof__] = ACTIONS(7686), + [sym_id] = ACTIONS(7686), + [sym_instancetype] = ACTIONS(7686), + [sym_Class] = ACTIONS(7686), + [sym_SEL] = ACTIONS(7686), + [sym_IMP] = ACTIONS(7686), + [sym_BOOL] = ACTIONS(7686), + [sym_auto] = ACTIONS(7686), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3222] = { + [sym_identifier] = ACTIONS(7686), + [aux_sym_preproc_def_token1] = ACTIONS(7686), + [aux_sym_preproc_if_token1] = ACTIONS(7686), + [aux_sym_preproc_if_token2] = ACTIONS(7686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7686), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7686), + [sym_preproc_directive] = ACTIONS(7686), + [anon_sym_extern] = ACTIONS(7686), + [anon_sym___attribute] = ACTIONS(7686), + [anon_sym___attribute__] = ACTIONS(7686), + [anon_sym___declspec] = ACTIONS(7686), + [anon_sym_static] = ACTIONS(7686), + [anon_sym_auto] = ACTIONS(7686), + [anon_sym_register] = ACTIONS(7686), + [anon_sym_inline] = ACTIONS(7686), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7686), + [anon_sym_const] = ACTIONS(7686), + [anon_sym_volatile] = ACTIONS(7686), + [anon_sym_restrict] = ACTIONS(7686), + [anon_sym__Atomic] = ACTIONS(7686), + [anon_sym_in] = ACTIONS(7686), + [anon_sym_out] = ACTIONS(7686), + [anon_sym_inout] = ACTIONS(7686), + [anon_sym_bycopy] = ACTIONS(7686), + [anon_sym_byref] = ACTIONS(7686), + [anon_sym_oneway] = ACTIONS(7686), + [anon_sym__Nullable] = ACTIONS(7686), + [anon_sym__Nonnull] = ACTIONS(7686), + [anon_sym__Nullable_result] = ACTIONS(7686), + [anon_sym__Null_unspecified] = ACTIONS(7686), + [anon_sym___autoreleasing] = ACTIONS(7686), + [anon_sym___nullable] = ACTIONS(7686), + [anon_sym___nonnull] = ACTIONS(7686), + [anon_sym___strong] = ACTIONS(7686), + [anon_sym___weak] = ACTIONS(7686), + [anon_sym___bridge] = ACTIONS(7686), + [anon_sym___bridge_transfer] = ACTIONS(7686), + [anon_sym___bridge_retained] = ACTIONS(7686), + [anon_sym___unsafe_unretained] = ACTIONS(7686), + [anon_sym___block] = ACTIONS(7686), + [anon_sym___kindof] = ACTIONS(7686), + [anon_sym___unused] = ACTIONS(7686), + [anon_sym__Complex] = ACTIONS(7686), + [anon_sym___complex] = ACTIONS(7686), + [anon_sym_IBOutlet] = ACTIONS(7686), + [anon_sym_IBInspectable] = ACTIONS(7686), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7686), + [anon_sym_signed] = ACTIONS(7686), + [anon_sym_unsigned] = ACTIONS(7686), + [anon_sym_long] = ACTIONS(7686), + [anon_sym_short] = ACTIONS(7686), + [sym_primitive_type] = ACTIONS(7686), + [anon_sym_enum] = ACTIONS(7686), + [anon_sym_struct] = ACTIONS(7686), + [anon_sym_union] = ACTIONS(7686), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7686), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7686), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7686), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7686), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7686), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7686), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7686), + [anon_sym_NS_AVAILABLE] = ACTIONS(7686), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7686), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7686), + [anon_sym_API_AVAILABLE] = ACTIONS(7686), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7686), + [anon_sym_API_DEPRECATED] = ACTIONS(7686), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7686), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7686), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7686), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7686), + [anon_sym___deprecated_msg] = ACTIONS(7686), + [anon_sym___deprecated_enum_msg] = ACTIONS(7686), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7686), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7686), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7686), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7686), + [anon_sym_NS_ENUM] = ACTIONS(7686), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7686), + [anon_sym_NS_OPTIONS] = ACTIONS(7686), + [anon_sym_typeof] = ACTIONS(7686), + [anon_sym___typeof] = ACTIONS(7686), + [anon_sym___typeof__] = ACTIONS(7686), + [sym_id] = ACTIONS(7686), + [sym_instancetype] = ACTIONS(7686), + [sym_Class] = ACTIONS(7686), + [sym_SEL] = ACTIONS(7686), + [sym_IMP] = ACTIONS(7686), + [sym_BOOL] = ACTIONS(7686), + [sym_auto] = ACTIONS(7686), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3223] = { + [sym_identifier] = ACTIONS(7720), + [aux_sym_preproc_def_token1] = ACTIONS(7720), + [aux_sym_preproc_if_token1] = ACTIONS(7720), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7720), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7720), + [sym_preproc_directive] = ACTIONS(7720), + [anon_sym_extern] = ACTIONS(7720), + [anon_sym___attribute] = ACTIONS(7720), + [anon_sym___attribute__] = ACTIONS(7720), + [anon_sym___declspec] = ACTIONS(7720), + [anon_sym_RBRACE] = ACTIONS(7815), + [anon_sym_static] = ACTIONS(7720), + [anon_sym_auto] = ACTIONS(7720), + [anon_sym_register] = ACTIONS(7720), + [anon_sym_inline] = ACTIONS(7720), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7720), + [anon_sym_const] = ACTIONS(7720), + [anon_sym_volatile] = ACTIONS(7720), + [anon_sym_restrict] = ACTIONS(7720), + [anon_sym__Atomic] = ACTIONS(7720), + [anon_sym_in] = ACTIONS(7720), + [anon_sym_out] = ACTIONS(7720), + [anon_sym_inout] = ACTIONS(7720), + [anon_sym_bycopy] = ACTIONS(7720), + [anon_sym_byref] = ACTIONS(7720), + [anon_sym_oneway] = ACTIONS(7720), + [anon_sym__Nullable] = ACTIONS(7720), + [anon_sym__Nonnull] = ACTIONS(7720), + [anon_sym__Nullable_result] = ACTIONS(7720), + [anon_sym__Null_unspecified] = ACTIONS(7720), + [anon_sym___autoreleasing] = ACTIONS(7720), + [anon_sym___nullable] = ACTIONS(7720), + [anon_sym___nonnull] = ACTIONS(7720), + [anon_sym___strong] = ACTIONS(7720), + [anon_sym___weak] = ACTIONS(7720), + [anon_sym___bridge] = ACTIONS(7720), + [anon_sym___bridge_transfer] = ACTIONS(7720), + [anon_sym___bridge_retained] = ACTIONS(7720), + [anon_sym___unsafe_unretained] = ACTIONS(7720), + [anon_sym___block] = ACTIONS(7720), + [anon_sym___kindof] = ACTIONS(7720), + [anon_sym___unused] = ACTIONS(7720), + [anon_sym__Complex] = ACTIONS(7720), + [anon_sym___complex] = ACTIONS(7720), + [anon_sym_IBOutlet] = ACTIONS(7720), + [anon_sym_IBInspectable] = ACTIONS(7720), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7720), + [anon_sym_signed] = ACTIONS(7720), + [anon_sym_unsigned] = ACTIONS(7720), + [anon_sym_long] = ACTIONS(7720), + [anon_sym_short] = ACTIONS(7720), + [sym_primitive_type] = ACTIONS(7720), + [anon_sym_enum] = ACTIONS(7720), + [anon_sym_struct] = ACTIONS(7720), + [anon_sym_union] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7720), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7720), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7720), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7720), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7720), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7720), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7720), + [anon_sym_NS_AVAILABLE] = ACTIONS(7720), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7720), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7720), + [anon_sym_API_AVAILABLE] = ACTIONS(7720), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7720), + [anon_sym_API_DEPRECATED] = ACTIONS(7720), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7720), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7720), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7720), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7720), + [anon_sym___deprecated_msg] = ACTIONS(7720), + [anon_sym___deprecated_enum_msg] = ACTIONS(7720), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7720), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7720), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7720), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7720), + [anon_sym_NS_ENUM] = ACTIONS(7720), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7720), + [anon_sym_NS_OPTIONS] = ACTIONS(7720), + [anon_sym_typeof] = ACTIONS(7720), + [anon_sym___typeof] = ACTIONS(7720), + [anon_sym___typeof__] = ACTIONS(7720), + [sym_id] = ACTIONS(7720), + [sym_instancetype] = ACTIONS(7720), + [sym_Class] = ACTIONS(7720), + [sym_SEL] = ACTIONS(7720), + [sym_IMP] = ACTIONS(7720), + [sym_BOOL] = ACTIONS(7720), + [sym_auto] = ACTIONS(7720), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3224] = { + [sym_identifier] = ACTIONS(7684), + [aux_sym_preproc_def_token1] = ACTIONS(7684), + [aux_sym_preproc_if_token1] = ACTIONS(7684), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7684), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7684), + [sym_preproc_directive] = ACTIONS(7684), + [anon_sym_extern] = ACTIONS(7684), + [anon_sym___attribute] = ACTIONS(7684), + [anon_sym___attribute__] = ACTIONS(7684), + [anon_sym___declspec] = ACTIONS(7684), + [anon_sym_RBRACE] = ACTIONS(7817), + [anon_sym_static] = ACTIONS(7684), + [anon_sym_auto] = ACTIONS(7684), + [anon_sym_register] = ACTIONS(7684), + [anon_sym_inline] = ACTIONS(7684), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7684), + [anon_sym_const] = ACTIONS(7684), + [anon_sym_volatile] = ACTIONS(7684), + [anon_sym_restrict] = ACTIONS(7684), + [anon_sym__Atomic] = ACTIONS(7684), + [anon_sym_in] = ACTIONS(7684), + [anon_sym_out] = ACTIONS(7684), + [anon_sym_inout] = ACTIONS(7684), + [anon_sym_bycopy] = ACTIONS(7684), + [anon_sym_byref] = ACTIONS(7684), + [anon_sym_oneway] = ACTIONS(7684), + [anon_sym__Nullable] = ACTIONS(7684), + [anon_sym__Nonnull] = ACTIONS(7684), + [anon_sym__Nullable_result] = ACTIONS(7684), + [anon_sym__Null_unspecified] = ACTIONS(7684), + [anon_sym___autoreleasing] = ACTIONS(7684), + [anon_sym___nullable] = ACTIONS(7684), + [anon_sym___nonnull] = ACTIONS(7684), + [anon_sym___strong] = ACTIONS(7684), + [anon_sym___weak] = ACTIONS(7684), + [anon_sym___bridge] = ACTIONS(7684), + [anon_sym___bridge_transfer] = ACTIONS(7684), + [anon_sym___bridge_retained] = ACTIONS(7684), + [anon_sym___unsafe_unretained] = ACTIONS(7684), + [anon_sym___block] = ACTIONS(7684), + [anon_sym___kindof] = ACTIONS(7684), + [anon_sym___unused] = ACTIONS(7684), + [anon_sym__Complex] = ACTIONS(7684), + [anon_sym___complex] = ACTIONS(7684), + [anon_sym_IBOutlet] = ACTIONS(7684), + [anon_sym_IBInspectable] = ACTIONS(7684), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7684), + [anon_sym_signed] = ACTIONS(7684), + [anon_sym_unsigned] = ACTIONS(7684), + [anon_sym_long] = ACTIONS(7684), + [anon_sym_short] = ACTIONS(7684), + [sym_primitive_type] = ACTIONS(7684), + [anon_sym_enum] = ACTIONS(7684), + [anon_sym_struct] = ACTIONS(7684), + [anon_sym_union] = ACTIONS(7684), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7684), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7684), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7684), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7684), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7684), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7684), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7684), + [anon_sym_NS_AVAILABLE] = ACTIONS(7684), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7684), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7684), + [anon_sym_API_AVAILABLE] = ACTIONS(7684), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7684), + [anon_sym_API_DEPRECATED] = ACTIONS(7684), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7684), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7684), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7684), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7684), + [anon_sym___deprecated_msg] = ACTIONS(7684), + [anon_sym___deprecated_enum_msg] = ACTIONS(7684), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7684), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7684), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7684), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7684), + [anon_sym_NS_ENUM] = ACTIONS(7684), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7684), + [anon_sym_NS_OPTIONS] = ACTIONS(7684), + [anon_sym_typeof] = ACTIONS(7684), + [anon_sym___typeof] = ACTIONS(7684), + [anon_sym___typeof__] = ACTIONS(7684), + [sym_id] = ACTIONS(7684), + [sym_instancetype] = ACTIONS(7684), + [sym_Class] = ACTIONS(7684), + [sym_SEL] = ACTIONS(7684), + [sym_IMP] = ACTIONS(7684), + [sym_BOOL] = ACTIONS(7684), + [sym_auto] = ACTIONS(7684), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3225] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6966), + [anon_sym_COMMA] = ACTIONS(6968), + [anon_sym_RPAREN] = ACTIONS(6968), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(7781), + [anon_sym_PLUS] = ACTIONS(7781), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7785), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(7819), + [anon_sym_AMP_AMP] = ACTIONS(7787), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7791), + [anon_sym_AMP] = ACTIONS(7793), + [anon_sym_EQ_EQ] = ACTIONS(7795), + [anon_sym_BANG_EQ] = ACTIONS(7795), + [anon_sym_GT] = ACTIONS(7797), + [anon_sym_GT_EQ] = ACTIONS(7799), + [anon_sym_LT_EQ] = ACTIONS(7799), + [anon_sym_LT] = ACTIONS(7797), + [anon_sym_LT_LT] = ACTIONS(7801), + [anon_sym_GT_GT] = ACTIONS(7801), + [anon_sym_SEMI] = ACTIONS(6968), + [anon_sym___attribute] = ACTIONS(6966), + [anon_sym___attribute__] = ACTIONS(6966), + [anon_sym_RBRACE] = ACTIONS(6968), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6968), + [anon_sym_const] = ACTIONS(6966), + [anon_sym_volatile] = ACTIONS(6966), + [anon_sym_restrict] = ACTIONS(6966), + [anon_sym__Atomic] = ACTIONS(6966), + [anon_sym_in] = ACTIONS(6966), + [anon_sym_out] = ACTIONS(6966), + [anon_sym_inout] = ACTIONS(6966), + [anon_sym_bycopy] = ACTIONS(6966), + [anon_sym_byref] = ACTIONS(6966), + [anon_sym_oneway] = ACTIONS(6966), + [anon_sym__Nullable] = ACTIONS(6966), + [anon_sym__Nonnull] = ACTIONS(6966), + [anon_sym__Nullable_result] = ACTIONS(6966), + [anon_sym__Null_unspecified] = ACTIONS(6966), + [anon_sym___autoreleasing] = ACTIONS(6966), + [anon_sym___nullable] = ACTIONS(6966), + [anon_sym___nonnull] = ACTIONS(6966), + [anon_sym___strong] = ACTIONS(6966), + [anon_sym___weak] = ACTIONS(6966), + [anon_sym___bridge] = ACTIONS(6966), + [anon_sym___bridge_transfer] = ACTIONS(6966), + [anon_sym___bridge_retained] = ACTIONS(6966), + [anon_sym___unsafe_unretained] = ACTIONS(6966), + [anon_sym___block] = ACTIONS(6966), + [anon_sym___kindof] = ACTIONS(6966), + [anon_sym___unused] = ACTIONS(6966), + [anon_sym__Complex] = ACTIONS(6966), + [anon_sym___complex] = ACTIONS(6966), + [anon_sym_IBOutlet] = ACTIONS(6966), + [anon_sym_IBInspectable] = ACTIONS(6966), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6966), + [anon_sym_COLON] = ACTIONS(6968), + [anon_sym_QMARK] = ACTIONS(7821), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6966), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6966), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6966), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6966), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6966), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6966), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6966), + [anon_sym_NS_AVAILABLE] = ACTIONS(6966), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6966), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6966), + [anon_sym_API_AVAILABLE] = ACTIONS(6966), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6966), + [anon_sym_API_DEPRECATED] = ACTIONS(6966), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6966), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6966), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6966), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6966), + [anon_sym___deprecated_msg] = ACTIONS(6966), + [anon_sym___deprecated_enum_msg] = ACTIONS(6966), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6966), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6966), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6966), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6966), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6966), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6966), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -524802,98 +513177,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3318] = { - [sym_identifier] = ACTIONS(7194), - [anon_sym_COMMA] = ACTIONS(7196), - [anon_sym_RPAREN] = ACTIONS(7196), - [anon_sym_LPAREN2] = ACTIONS(7196), - [anon_sym_DASH] = ACTIONS(7194), - [anon_sym_PLUS] = ACTIONS(7194), - [anon_sym_STAR] = ACTIONS(7196), - [anon_sym_SLASH] = ACTIONS(7194), - [anon_sym_PERCENT] = ACTIONS(7196), - [anon_sym_PIPE_PIPE] = ACTIONS(7196), - [anon_sym_AMP_AMP] = ACTIONS(7196), - [anon_sym_PIPE] = ACTIONS(7194), - [anon_sym_CARET] = ACTIONS(7196), - [anon_sym_AMP] = ACTIONS(7194), - [anon_sym_EQ_EQ] = ACTIONS(7196), - [anon_sym_BANG_EQ] = ACTIONS(7196), - [anon_sym_GT] = ACTIONS(7194), - [anon_sym_GT_EQ] = ACTIONS(7196), - [anon_sym_LT_EQ] = ACTIONS(7196), - [anon_sym_LT] = ACTIONS(7194), - [anon_sym_LT_LT] = ACTIONS(7196), - [anon_sym_GT_GT] = ACTIONS(7196), - [anon_sym_SEMI] = ACTIONS(7196), - [anon_sym___attribute] = ACTIONS(7194), - [anon_sym___attribute__] = ACTIONS(7194), - [anon_sym_RBRACE] = ACTIONS(7196), - [anon_sym_LBRACK] = ACTIONS(7196), - [anon_sym_RBRACK] = ACTIONS(7196), - [anon_sym_const] = ACTIONS(7194), - [anon_sym_volatile] = ACTIONS(7194), - [anon_sym_restrict] = ACTIONS(7194), - [anon_sym__Atomic] = ACTIONS(7194), - [anon_sym_in] = ACTIONS(7194), - [anon_sym_out] = ACTIONS(7194), - [anon_sym_inout] = ACTIONS(7194), - [anon_sym_bycopy] = ACTIONS(7194), - [anon_sym_byref] = ACTIONS(7194), - [anon_sym_oneway] = ACTIONS(7194), - [anon_sym__Nullable] = ACTIONS(7194), - [anon_sym__Nonnull] = ACTIONS(7194), - [anon_sym__Nullable_result] = ACTIONS(7194), - [anon_sym__Null_unspecified] = ACTIONS(7194), - [anon_sym___autoreleasing] = ACTIONS(7194), - [anon_sym___nullable] = ACTIONS(7194), - [anon_sym___nonnull] = ACTIONS(7194), - [anon_sym___strong] = ACTIONS(7194), - [anon_sym___weak] = ACTIONS(7194), - [anon_sym___bridge] = ACTIONS(7194), - [anon_sym___bridge_transfer] = ACTIONS(7194), - [anon_sym___bridge_retained] = ACTIONS(7194), - [anon_sym___unsafe_unretained] = ACTIONS(7194), - [anon_sym___block] = ACTIONS(7194), - [anon_sym___kindof] = ACTIONS(7194), - [anon_sym___unused] = ACTIONS(7194), - [anon_sym__Complex] = ACTIONS(7194), - [anon_sym___complex] = ACTIONS(7194), - [anon_sym_IBOutlet] = ACTIONS(7194), - [anon_sym_IBInspectable] = ACTIONS(7194), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7194), - [anon_sym_COLON] = ACTIONS(7196), - [anon_sym_QMARK] = ACTIONS(7196), - [anon_sym_DASH_DASH] = ACTIONS(7196), - [anon_sym_PLUS_PLUS] = ACTIONS(7196), - [anon_sym_DOT] = ACTIONS(7196), - [anon_sym_DASH_GT] = ACTIONS(7196), + [3226] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(7000), + [anon_sym_COMMA] = ACTIONS(7002), + [anon_sym_RPAREN] = ACTIONS(7002), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(7781), + [anon_sym_PLUS] = ACTIONS(7781), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7785), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(7819), + [anon_sym_AMP_AMP] = ACTIONS(7787), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7791), + [anon_sym_AMP] = ACTIONS(7793), + [anon_sym_EQ_EQ] = ACTIONS(7795), + [anon_sym_BANG_EQ] = ACTIONS(7795), + [anon_sym_GT] = ACTIONS(7797), + [anon_sym_GT_EQ] = ACTIONS(7799), + [anon_sym_LT_EQ] = ACTIONS(7799), + [anon_sym_LT] = ACTIONS(7797), + [anon_sym_LT_LT] = ACTIONS(7801), + [anon_sym_GT_GT] = ACTIONS(7801), + [anon_sym_SEMI] = ACTIONS(7002), + [anon_sym___attribute] = ACTIONS(7000), + [anon_sym___attribute__] = ACTIONS(7000), + [anon_sym_RBRACE] = ACTIONS(7002), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(7002), + [anon_sym_const] = ACTIONS(7000), + [anon_sym_volatile] = ACTIONS(7000), + [anon_sym_restrict] = ACTIONS(7000), + [anon_sym__Atomic] = ACTIONS(7000), + [anon_sym_in] = ACTIONS(7000), + [anon_sym_out] = ACTIONS(7000), + [anon_sym_inout] = ACTIONS(7000), + [anon_sym_bycopy] = ACTIONS(7000), + [anon_sym_byref] = ACTIONS(7000), + [anon_sym_oneway] = ACTIONS(7000), + [anon_sym__Nullable] = ACTIONS(7000), + [anon_sym__Nonnull] = ACTIONS(7000), + [anon_sym__Nullable_result] = ACTIONS(7000), + [anon_sym__Null_unspecified] = ACTIONS(7000), + [anon_sym___autoreleasing] = ACTIONS(7000), + [anon_sym___nullable] = ACTIONS(7000), + [anon_sym___nonnull] = ACTIONS(7000), + [anon_sym___strong] = ACTIONS(7000), + [anon_sym___weak] = ACTIONS(7000), + [anon_sym___bridge] = ACTIONS(7000), + [anon_sym___bridge_transfer] = ACTIONS(7000), + [anon_sym___bridge_retained] = ACTIONS(7000), + [anon_sym___unsafe_unretained] = ACTIONS(7000), + [anon_sym___block] = ACTIONS(7000), + [anon_sym___kindof] = ACTIONS(7000), + [anon_sym___unused] = ACTIONS(7000), + [anon_sym__Complex] = ACTIONS(7000), + [anon_sym___complex] = ACTIONS(7000), + [anon_sym_IBOutlet] = ACTIONS(7000), + [anon_sym_IBInspectable] = ACTIONS(7000), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7000), + [anon_sym_COLON] = ACTIONS(7002), + [anon_sym_QMARK] = ACTIONS(7002), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7194), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7194), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7194), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7194), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7194), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7194), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7194), - [anon_sym_NS_AVAILABLE] = ACTIONS(7194), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7194), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7194), - [anon_sym_API_AVAILABLE] = ACTIONS(7194), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7194), - [anon_sym_API_DEPRECATED] = ACTIONS(7194), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7194), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7194), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7194), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7194), - [anon_sym___deprecated_msg] = ACTIONS(7194), - [anon_sym___deprecated_enum_msg] = ACTIONS(7194), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7194), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7194), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7194), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7194), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7194), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7194), + [sym_method_attribute_specifier] = ACTIONS(7000), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7000), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7000), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7000), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7000), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7000), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7000), + [anon_sym_NS_AVAILABLE] = ACTIONS(7000), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7000), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7000), + [anon_sym_API_AVAILABLE] = ACTIONS(7000), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7000), + [anon_sym_API_DEPRECATED] = ACTIONS(7000), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7000), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7000), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7000), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7000), + [anon_sym___deprecated_msg] = ACTIONS(7000), + [anon_sym___deprecated_enum_msg] = ACTIONS(7000), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7000), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7000), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7000), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7000), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7000), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7000), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -524901,3874 +513277,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3319] = { - [sym_identifier] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_LPAREN2] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1365), - [anon_sym_SLASH] = ACTIONS(1367), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_PIPE_PIPE] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_EQ_EQ] = ACTIONS(1365), - [anon_sym_BANG_EQ] = ACTIONS(1365), - [anon_sym_GT] = ACTIONS(1367), - [anon_sym_GT_EQ] = ACTIONS(1365), - [anon_sym_LT_EQ] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1367), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym___attribute] = ACTIONS(1367), - [anon_sym___attribute__] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_RBRACK] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1367), - [anon_sym_volatile] = ACTIONS(1367), - [anon_sym_restrict] = ACTIONS(1367), - [anon_sym__Atomic] = ACTIONS(1367), - [anon_sym_in] = ACTIONS(1367), - [anon_sym_out] = ACTIONS(1367), - [anon_sym_inout] = ACTIONS(1367), - [anon_sym_bycopy] = ACTIONS(1367), - [anon_sym_byref] = ACTIONS(1367), - [anon_sym_oneway] = ACTIONS(1367), - [anon_sym__Nullable] = ACTIONS(1367), - [anon_sym__Nonnull] = ACTIONS(1367), - [anon_sym__Nullable_result] = ACTIONS(1367), - [anon_sym__Null_unspecified] = ACTIONS(1367), - [anon_sym___autoreleasing] = ACTIONS(1367), - [anon_sym___nullable] = ACTIONS(1367), - [anon_sym___nonnull] = ACTIONS(1367), - [anon_sym___strong] = ACTIONS(1367), - [anon_sym___weak] = ACTIONS(1367), - [anon_sym___bridge] = ACTIONS(1367), - [anon_sym___bridge_transfer] = ACTIONS(1367), - [anon_sym___bridge_retained] = ACTIONS(1367), - [anon_sym___unsafe_unretained] = ACTIONS(1367), - [anon_sym___block] = ACTIONS(1367), - [anon_sym___kindof] = ACTIONS(1367), - [anon_sym___unused] = ACTIONS(1367), - [anon_sym__Complex] = ACTIONS(1367), - [anon_sym___complex] = ACTIONS(1367), - [anon_sym_IBOutlet] = ACTIONS(1367), - [anon_sym_IBInspectable] = ACTIONS(1367), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1367), - [anon_sym_COLON] = ACTIONS(1365), - [anon_sym_QMARK] = ACTIONS(1365), - [anon_sym_DASH_DASH] = ACTIONS(1365), - [anon_sym_PLUS_PLUS] = ACTIONS(1365), - [anon_sym_DOT] = ACTIONS(1365), - [anon_sym_DASH_GT] = ACTIONS(1365), + [3227] = { + [sym_identifier] = ACTIONS(7734), + [aux_sym_preproc_def_token1] = ACTIONS(7734), + [aux_sym_preproc_if_token1] = ACTIONS(7734), + [aux_sym_preproc_if_token2] = ACTIONS(7734), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7734), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7734), + [sym_preproc_directive] = ACTIONS(7734), + [anon_sym_extern] = ACTIONS(7734), + [anon_sym___attribute] = ACTIONS(7734), + [anon_sym___attribute__] = ACTIONS(7734), + [anon_sym___declspec] = ACTIONS(7734), + [anon_sym_static] = ACTIONS(7734), + [anon_sym_auto] = ACTIONS(7734), + [anon_sym_register] = ACTIONS(7734), + [anon_sym_inline] = ACTIONS(7734), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7734), + [anon_sym_const] = ACTIONS(7734), + [anon_sym_volatile] = ACTIONS(7734), + [anon_sym_restrict] = ACTIONS(7734), + [anon_sym__Atomic] = ACTIONS(7734), + [anon_sym_in] = ACTIONS(7734), + [anon_sym_out] = ACTIONS(7734), + [anon_sym_inout] = ACTIONS(7734), + [anon_sym_bycopy] = ACTIONS(7734), + [anon_sym_byref] = ACTIONS(7734), + [anon_sym_oneway] = ACTIONS(7734), + [anon_sym__Nullable] = ACTIONS(7734), + [anon_sym__Nonnull] = ACTIONS(7734), + [anon_sym__Nullable_result] = ACTIONS(7734), + [anon_sym__Null_unspecified] = ACTIONS(7734), + [anon_sym___autoreleasing] = ACTIONS(7734), + [anon_sym___nullable] = ACTIONS(7734), + [anon_sym___nonnull] = ACTIONS(7734), + [anon_sym___strong] = ACTIONS(7734), + [anon_sym___weak] = ACTIONS(7734), + [anon_sym___bridge] = ACTIONS(7734), + [anon_sym___bridge_transfer] = ACTIONS(7734), + [anon_sym___bridge_retained] = ACTIONS(7734), + [anon_sym___unsafe_unretained] = ACTIONS(7734), + [anon_sym___block] = ACTIONS(7734), + [anon_sym___kindof] = ACTIONS(7734), + [anon_sym___unused] = ACTIONS(7734), + [anon_sym__Complex] = ACTIONS(7734), + [anon_sym___complex] = ACTIONS(7734), + [anon_sym_IBOutlet] = ACTIONS(7734), + [anon_sym_IBInspectable] = ACTIONS(7734), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7734), + [anon_sym_signed] = ACTIONS(7734), + [anon_sym_unsigned] = ACTIONS(7734), + [anon_sym_long] = ACTIONS(7734), + [anon_sym_short] = ACTIONS(7734), + [sym_primitive_type] = ACTIONS(7734), + [anon_sym_enum] = ACTIONS(7734), + [anon_sym_struct] = ACTIONS(7734), + [anon_sym_union] = ACTIONS(7734), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(1367), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1367), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1367), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1367), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1367), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1367), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1367), - [anon_sym_NS_AVAILABLE] = ACTIONS(1367), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1367), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_API_AVAILABLE] = ACTIONS(1367), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1367), - [anon_sym_API_DEPRECATED] = ACTIONS(1367), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1367), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1367), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1367), - [anon_sym___deprecated_msg] = ACTIONS(1367), - [anon_sym___deprecated_enum_msg] = ACTIONS(1367), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1367), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1367), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1367), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1367), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1367), + [sym_method_attribute_specifier] = ACTIONS(7734), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7734), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7734), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7734), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7734), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7734), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7734), + [anon_sym_NS_AVAILABLE] = ACTIONS(7734), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7734), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7734), + [anon_sym_API_AVAILABLE] = ACTIONS(7734), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7734), + [anon_sym_API_DEPRECATED] = ACTIONS(7734), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7734), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7734), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7734), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7734), + [anon_sym___deprecated_msg] = ACTIONS(7734), + [anon_sym___deprecated_enum_msg] = ACTIONS(7734), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7734), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7734), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7734), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7734), + [anon_sym_NS_ENUM] = ACTIONS(7734), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7734), + [anon_sym_NS_OPTIONS] = ACTIONS(7734), + [anon_sym_typeof] = ACTIONS(7734), + [anon_sym___typeof] = ACTIONS(7734), + [anon_sym___typeof__] = ACTIONS(7734), + [sym_id] = ACTIONS(7734), + [sym_instancetype] = ACTIONS(7734), + [sym_Class] = ACTIONS(7734), + [sym_SEL] = ACTIONS(7734), + [sym_IMP] = ACTIONS(7734), + [sym_BOOL] = ACTIONS(7734), + [sym_auto] = ACTIONS(7734), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), }, - [3320] = { - [sym_identifier] = ACTIONS(7752), - [anon_sym_extern] = ACTIONS(7752), - [anon_sym___attribute] = ACTIONS(7752), - [anon_sym___attribute__] = ACTIONS(7752), - [anon_sym___declspec] = ACTIONS(7752), - [anon_sym_RBRACE] = ACTIONS(7885), - [anon_sym_static] = ACTIONS(7752), - [anon_sym_auto] = ACTIONS(7752), - [anon_sym_register] = ACTIONS(7752), - [anon_sym_inline] = ACTIONS(7752), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7752), - [anon_sym_const] = ACTIONS(7752), - [anon_sym_volatile] = ACTIONS(7752), - [anon_sym_restrict] = ACTIONS(7752), - [anon_sym__Atomic] = ACTIONS(7752), - [anon_sym_in] = ACTIONS(7752), - [anon_sym_out] = ACTIONS(7752), - [anon_sym_inout] = ACTIONS(7752), - [anon_sym_bycopy] = ACTIONS(7752), - [anon_sym_byref] = ACTIONS(7752), - [anon_sym_oneway] = ACTIONS(7752), - [anon_sym__Nullable] = ACTIONS(7752), - [anon_sym__Nonnull] = ACTIONS(7752), - [anon_sym__Nullable_result] = ACTIONS(7752), - [anon_sym__Null_unspecified] = ACTIONS(7752), - [anon_sym___autoreleasing] = ACTIONS(7752), - [anon_sym___nullable] = ACTIONS(7752), - [anon_sym___nonnull] = ACTIONS(7752), - [anon_sym___strong] = ACTIONS(7752), - [anon_sym___weak] = ACTIONS(7752), - [anon_sym___bridge] = ACTIONS(7752), - [anon_sym___bridge_transfer] = ACTIONS(7752), - [anon_sym___bridge_retained] = ACTIONS(7752), - [anon_sym___unsafe_unretained] = ACTIONS(7752), - [anon_sym___block] = ACTIONS(7752), - [anon_sym___kindof] = ACTIONS(7752), - [anon_sym___unused] = ACTIONS(7752), - [anon_sym__Complex] = ACTIONS(7752), - [anon_sym___complex] = ACTIONS(7752), - [anon_sym_IBOutlet] = ACTIONS(7752), - [anon_sym_IBInspectable] = ACTIONS(7752), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7752), - [anon_sym_signed] = ACTIONS(7752), - [anon_sym_unsigned] = ACTIONS(7752), - [anon_sym_long] = ACTIONS(7752), - [anon_sym_short] = ACTIONS(7752), - [sym_primitive_type] = ACTIONS(7752), - [anon_sym_enum] = ACTIONS(7752), - [anon_sym_NS_ENUM] = ACTIONS(7752), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7752), - [anon_sym_NS_OPTIONS] = ACTIONS(7752), - [anon_sym_struct] = ACTIONS(7752), - [anon_sym_union] = ACTIONS(7752), + [3228] = { + [sym_identifier] = ACTIONS(7682), + [aux_sym_preproc_def_token1] = ACTIONS(7682), + [aux_sym_preproc_if_token1] = ACTIONS(7682), + [aux_sym_preproc_if_token2] = ACTIONS(7682), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7682), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7682), + [sym_preproc_directive] = ACTIONS(7682), + [anon_sym_extern] = ACTIONS(7682), + [anon_sym___attribute] = ACTIONS(7682), + [anon_sym___attribute__] = ACTIONS(7682), + [anon_sym___declspec] = ACTIONS(7682), + [anon_sym_static] = ACTIONS(7682), + [anon_sym_auto] = ACTIONS(7682), + [anon_sym_register] = ACTIONS(7682), + [anon_sym_inline] = ACTIONS(7682), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7682), + [anon_sym_const] = ACTIONS(7682), + [anon_sym_volatile] = ACTIONS(7682), + [anon_sym_restrict] = ACTIONS(7682), + [anon_sym__Atomic] = ACTIONS(7682), + [anon_sym_in] = ACTIONS(7682), + [anon_sym_out] = ACTIONS(7682), + [anon_sym_inout] = ACTIONS(7682), + [anon_sym_bycopy] = ACTIONS(7682), + [anon_sym_byref] = ACTIONS(7682), + [anon_sym_oneway] = ACTIONS(7682), + [anon_sym__Nullable] = ACTIONS(7682), + [anon_sym__Nonnull] = ACTIONS(7682), + [anon_sym__Nullable_result] = ACTIONS(7682), + [anon_sym__Null_unspecified] = ACTIONS(7682), + [anon_sym___autoreleasing] = ACTIONS(7682), + [anon_sym___nullable] = ACTIONS(7682), + [anon_sym___nonnull] = ACTIONS(7682), + [anon_sym___strong] = ACTIONS(7682), + [anon_sym___weak] = ACTIONS(7682), + [anon_sym___bridge] = ACTIONS(7682), + [anon_sym___bridge_transfer] = ACTIONS(7682), + [anon_sym___bridge_retained] = ACTIONS(7682), + [anon_sym___unsafe_unretained] = ACTIONS(7682), + [anon_sym___block] = ACTIONS(7682), + [anon_sym___kindof] = ACTIONS(7682), + [anon_sym___unused] = ACTIONS(7682), + [anon_sym__Complex] = ACTIONS(7682), + [anon_sym___complex] = ACTIONS(7682), + [anon_sym_IBOutlet] = ACTIONS(7682), + [anon_sym_IBInspectable] = ACTIONS(7682), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7682), + [anon_sym_signed] = ACTIONS(7682), + [anon_sym_unsigned] = ACTIONS(7682), + [anon_sym_long] = ACTIONS(7682), + [anon_sym_short] = ACTIONS(7682), + [sym_primitive_type] = ACTIONS(7682), + [anon_sym_enum] = ACTIONS(7682), + [anon_sym_struct] = ACTIONS(7682), + [anon_sym_union] = ACTIONS(7682), [sym_comment] = ACTIONS(3), - [sym_private] = ACTIONS(7885), - [sym_public] = ACTIONS(7885), - [sym_protected] = ACTIONS(7885), - [sym_package] = ACTIONS(7885), - [sym_method_attribute_specifier] = ACTIONS(7752), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7752), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7752), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7752), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7752), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7752), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7752), - [anon_sym_NS_AVAILABLE] = ACTIONS(7752), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7752), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7752), - [anon_sym_API_AVAILABLE] = ACTIONS(7752), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7752), - [anon_sym_API_DEPRECATED] = ACTIONS(7752), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7752), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7752), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7752), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7752), - [anon_sym___deprecated_msg] = ACTIONS(7752), - [anon_sym___deprecated_enum_msg] = ACTIONS(7752), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7752), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7752), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7752), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7752), - [anon_sym_typeof] = ACTIONS(7752), - [anon_sym___typeof] = ACTIONS(7752), - [anon_sym___typeof__] = ACTIONS(7752), - [sym_id] = ACTIONS(7752), - [sym_instancetype] = ACTIONS(7752), - [sym_Class] = ACTIONS(7752), - [sym_SEL] = ACTIONS(7752), - [sym_IMP] = ACTIONS(7752), - [sym_BOOL] = ACTIONS(7752), - [sym_auto] = ACTIONS(7752), + [sym_method_attribute_specifier] = ACTIONS(7682), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7682), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7682), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7682), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7682), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7682), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7682), + [anon_sym_NS_AVAILABLE] = ACTIONS(7682), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7682), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7682), + [anon_sym_API_AVAILABLE] = ACTIONS(7682), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7682), + [anon_sym_API_DEPRECATED] = ACTIONS(7682), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7682), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7682), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7682), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7682), + [anon_sym___deprecated_msg] = ACTIONS(7682), + [anon_sym___deprecated_enum_msg] = ACTIONS(7682), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7682), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7682), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7682), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7682), + [anon_sym_NS_ENUM] = ACTIONS(7682), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7682), + [anon_sym_NS_OPTIONS] = ACTIONS(7682), + [anon_sym_typeof] = ACTIONS(7682), + [anon_sym___typeof] = ACTIONS(7682), + [anon_sym___typeof__] = ACTIONS(7682), + [sym_id] = ACTIONS(7682), + [sym_instancetype] = ACTIONS(7682), + [sym_Class] = ACTIONS(7682), + [sym_SEL] = ACTIONS(7682), + [sym_IMP] = ACTIONS(7682), + [sym_BOOL] = ACTIONS(7682), + [sym_auto] = ACTIONS(7682), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), }, - [3321] = { - [sym_identifier] = ACTIONS(7262), - [anon_sym_COMMA] = ACTIONS(7264), - [anon_sym_RPAREN] = ACTIONS(7264), - [anon_sym_LPAREN2] = ACTIONS(7264), - [anon_sym_DASH] = ACTIONS(7262), - [anon_sym_PLUS] = ACTIONS(7262), - [anon_sym_STAR] = ACTIONS(7264), - [anon_sym_SLASH] = ACTIONS(7262), - [anon_sym_PERCENT] = ACTIONS(7264), - [anon_sym_PIPE_PIPE] = ACTIONS(7264), - [anon_sym_AMP_AMP] = ACTIONS(7264), - [anon_sym_PIPE] = ACTIONS(7262), - [anon_sym_CARET] = ACTIONS(7264), - [anon_sym_AMP] = ACTIONS(7262), - [anon_sym_EQ_EQ] = ACTIONS(7264), - [anon_sym_BANG_EQ] = ACTIONS(7264), - [anon_sym_GT] = ACTIONS(7262), - [anon_sym_GT_EQ] = ACTIONS(7264), - [anon_sym_LT_EQ] = ACTIONS(7264), - [anon_sym_LT] = ACTIONS(7262), - [anon_sym_LT_LT] = ACTIONS(7264), - [anon_sym_GT_GT] = ACTIONS(7264), - [anon_sym_SEMI] = ACTIONS(7264), - [anon_sym___attribute] = ACTIONS(7262), - [anon_sym___attribute__] = ACTIONS(7262), - [anon_sym_RBRACE] = ACTIONS(7264), - [anon_sym_LBRACK] = ACTIONS(7264), - [anon_sym_RBRACK] = ACTIONS(7264), - [anon_sym_const] = ACTIONS(7262), - [anon_sym_volatile] = ACTIONS(7262), - [anon_sym_restrict] = ACTIONS(7262), - [anon_sym__Atomic] = ACTIONS(7262), - [anon_sym_in] = ACTIONS(7262), - [anon_sym_out] = ACTIONS(7262), - [anon_sym_inout] = ACTIONS(7262), - [anon_sym_bycopy] = ACTIONS(7262), - [anon_sym_byref] = ACTIONS(7262), - [anon_sym_oneway] = ACTIONS(7262), - [anon_sym__Nullable] = ACTIONS(7262), - [anon_sym__Nonnull] = ACTIONS(7262), - [anon_sym__Nullable_result] = ACTIONS(7262), - [anon_sym__Null_unspecified] = ACTIONS(7262), - [anon_sym___autoreleasing] = ACTIONS(7262), - [anon_sym___nullable] = ACTIONS(7262), - [anon_sym___nonnull] = ACTIONS(7262), - [anon_sym___strong] = ACTIONS(7262), - [anon_sym___weak] = ACTIONS(7262), - [anon_sym___bridge] = ACTIONS(7262), - [anon_sym___bridge_transfer] = ACTIONS(7262), - [anon_sym___bridge_retained] = ACTIONS(7262), - [anon_sym___unsafe_unretained] = ACTIONS(7262), - [anon_sym___block] = ACTIONS(7262), - [anon_sym___kindof] = ACTIONS(7262), - [anon_sym___unused] = ACTIONS(7262), - [anon_sym__Complex] = ACTIONS(7262), - [anon_sym___complex] = ACTIONS(7262), - [anon_sym_IBOutlet] = ACTIONS(7262), - [anon_sym_IBInspectable] = ACTIONS(7262), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7262), - [anon_sym_COLON] = ACTIONS(7264), - [anon_sym_QMARK] = ACTIONS(7264), - [anon_sym_DASH_DASH] = ACTIONS(7264), - [anon_sym_PLUS_PLUS] = ACTIONS(7264), - [anon_sym_DOT] = ACTIONS(7264), - [anon_sym_DASH_GT] = ACTIONS(7264), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7262), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7262), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7262), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7262), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7262), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7262), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7262), - [anon_sym_NS_AVAILABLE] = ACTIONS(7262), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7262), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7262), - [anon_sym_API_AVAILABLE] = ACTIONS(7262), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7262), - [anon_sym_API_DEPRECATED] = ACTIONS(7262), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7262), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7262), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7262), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7262), - [anon_sym___deprecated_msg] = ACTIONS(7262), - [anon_sym___deprecated_enum_msg] = ACTIONS(7262), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7262), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7262), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7262), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7262), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7262), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7262), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3322] = { - [sym_identifier] = ACTIONS(7290), - [anon_sym_COMMA] = ACTIONS(7292), - [anon_sym_RPAREN] = ACTIONS(7292), - [anon_sym_LPAREN2] = ACTIONS(7292), - [anon_sym_DASH] = ACTIONS(7290), - [anon_sym_PLUS] = ACTIONS(7290), - [anon_sym_STAR] = ACTIONS(7292), - [anon_sym_SLASH] = ACTIONS(7290), - [anon_sym_PERCENT] = ACTIONS(7292), - [anon_sym_PIPE_PIPE] = ACTIONS(7292), - [anon_sym_AMP_AMP] = ACTIONS(7292), - [anon_sym_PIPE] = ACTIONS(7290), - [anon_sym_CARET] = ACTIONS(7292), - [anon_sym_AMP] = ACTIONS(7290), - [anon_sym_EQ_EQ] = ACTIONS(7292), - [anon_sym_BANG_EQ] = ACTIONS(7292), - [anon_sym_GT] = ACTIONS(7290), - [anon_sym_GT_EQ] = ACTIONS(7292), - [anon_sym_LT_EQ] = ACTIONS(7292), - [anon_sym_LT] = ACTIONS(7290), - [anon_sym_LT_LT] = ACTIONS(7292), - [anon_sym_GT_GT] = ACTIONS(7292), - [anon_sym_SEMI] = ACTIONS(7292), - [anon_sym___attribute] = ACTIONS(7290), - [anon_sym___attribute__] = ACTIONS(7290), - [anon_sym_RBRACE] = ACTIONS(7292), - [anon_sym_LBRACK] = ACTIONS(7292), - [anon_sym_RBRACK] = ACTIONS(7292), - [anon_sym_const] = ACTIONS(7290), - [anon_sym_volatile] = ACTIONS(7290), - [anon_sym_restrict] = ACTIONS(7290), - [anon_sym__Atomic] = ACTIONS(7290), - [anon_sym_in] = ACTIONS(7290), - [anon_sym_out] = ACTIONS(7290), - [anon_sym_inout] = ACTIONS(7290), - [anon_sym_bycopy] = ACTIONS(7290), - [anon_sym_byref] = ACTIONS(7290), - [anon_sym_oneway] = ACTIONS(7290), - [anon_sym__Nullable] = ACTIONS(7290), - [anon_sym__Nonnull] = ACTIONS(7290), - [anon_sym__Nullable_result] = ACTIONS(7290), - [anon_sym__Null_unspecified] = ACTIONS(7290), - [anon_sym___autoreleasing] = ACTIONS(7290), - [anon_sym___nullable] = ACTIONS(7290), - [anon_sym___nonnull] = ACTIONS(7290), - [anon_sym___strong] = ACTIONS(7290), - [anon_sym___weak] = ACTIONS(7290), - [anon_sym___bridge] = ACTIONS(7290), - [anon_sym___bridge_transfer] = ACTIONS(7290), - [anon_sym___bridge_retained] = ACTIONS(7290), - [anon_sym___unsafe_unretained] = ACTIONS(7290), - [anon_sym___block] = ACTIONS(7290), - [anon_sym___kindof] = ACTIONS(7290), - [anon_sym___unused] = ACTIONS(7290), - [anon_sym__Complex] = ACTIONS(7290), - [anon_sym___complex] = ACTIONS(7290), - [anon_sym_IBOutlet] = ACTIONS(7290), - [anon_sym_IBInspectable] = ACTIONS(7290), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7290), - [anon_sym_COLON] = ACTIONS(7292), - [anon_sym_QMARK] = ACTIONS(7292), - [anon_sym_DASH_DASH] = ACTIONS(7292), - [anon_sym_PLUS_PLUS] = ACTIONS(7292), - [anon_sym_DOT] = ACTIONS(7292), - [anon_sym_DASH_GT] = ACTIONS(7292), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7290), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7290), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7290), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7290), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7290), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7290), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7290), - [anon_sym_NS_AVAILABLE] = ACTIONS(7290), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7290), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7290), - [anon_sym_API_AVAILABLE] = ACTIONS(7290), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7290), - [anon_sym_API_DEPRECATED] = ACTIONS(7290), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7290), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7290), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7290), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7290), - [anon_sym___deprecated_msg] = ACTIONS(7290), - [anon_sym___deprecated_enum_msg] = ACTIONS(7290), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7290), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7290), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7290), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7290), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7290), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7290), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3323] = { - [sym_identifier] = ACTIONS(7242), - [anon_sym_COMMA] = ACTIONS(7244), - [anon_sym_RPAREN] = ACTIONS(7244), - [anon_sym_LPAREN2] = ACTIONS(7244), - [anon_sym_DASH] = ACTIONS(7242), - [anon_sym_PLUS] = ACTIONS(7242), - [anon_sym_STAR] = ACTIONS(7244), - [anon_sym_SLASH] = ACTIONS(7242), - [anon_sym_PERCENT] = ACTIONS(7244), - [anon_sym_PIPE_PIPE] = ACTIONS(7244), - [anon_sym_AMP_AMP] = ACTIONS(7244), - [anon_sym_PIPE] = ACTIONS(7242), - [anon_sym_CARET] = ACTIONS(7244), - [anon_sym_AMP] = ACTIONS(7242), - [anon_sym_EQ_EQ] = ACTIONS(7244), - [anon_sym_BANG_EQ] = ACTIONS(7244), - [anon_sym_GT] = ACTIONS(7242), - [anon_sym_GT_EQ] = ACTIONS(7244), - [anon_sym_LT_EQ] = ACTIONS(7244), - [anon_sym_LT] = ACTIONS(7242), - [anon_sym_LT_LT] = ACTIONS(7244), - [anon_sym_GT_GT] = ACTIONS(7244), - [anon_sym_SEMI] = ACTIONS(7244), - [anon_sym___attribute] = ACTIONS(7242), - [anon_sym___attribute__] = ACTIONS(7242), - [anon_sym_RBRACE] = ACTIONS(7244), - [anon_sym_LBRACK] = ACTIONS(7244), - [anon_sym_RBRACK] = ACTIONS(7244), - [anon_sym_const] = ACTIONS(7242), - [anon_sym_volatile] = ACTIONS(7242), - [anon_sym_restrict] = ACTIONS(7242), - [anon_sym__Atomic] = ACTIONS(7242), - [anon_sym_in] = ACTIONS(7242), - [anon_sym_out] = ACTIONS(7242), - [anon_sym_inout] = ACTIONS(7242), - [anon_sym_bycopy] = ACTIONS(7242), - [anon_sym_byref] = ACTIONS(7242), - [anon_sym_oneway] = ACTIONS(7242), - [anon_sym__Nullable] = ACTIONS(7242), - [anon_sym__Nonnull] = ACTIONS(7242), - [anon_sym__Nullable_result] = ACTIONS(7242), - [anon_sym__Null_unspecified] = ACTIONS(7242), - [anon_sym___autoreleasing] = ACTIONS(7242), - [anon_sym___nullable] = ACTIONS(7242), - [anon_sym___nonnull] = ACTIONS(7242), - [anon_sym___strong] = ACTIONS(7242), - [anon_sym___weak] = ACTIONS(7242), - [anon_sym___bridge] = ACTIONS(7242), - [anon_sym___bridge_transfer] = ACTIONS(7242), - [anon_sym___bridge_retained] = ACTIONS(7242), - [anon_sym___unsafe_unretained] = ACTIONS(7242), - [anon_sym___block] = ACTIONS(7242), - [anon_sym___kindof] = ACTIONS(7242), - [anon_sym___unused] = ACTIONS(7242), - [anon_sym__Complex] = ACTIONS(7242), - [anon_sym___complex] = ACTIONS(7242), - [anon_sym_IBOutlet] = ACTIONS(7242), - [anon_sym_IBInspectable] = ACTIONS(7242), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7242), - [anon_sym_COLON] = ACTIONS(7244), - [anon_sym_QMARK] = ACTIONS(7244), - [anon_sym_DASH_DASH] = ACTIONS(7244), - [anon_sym_PLUS_PLUS] = ACTIONS(7244), - [anon_sym_DOT] = ACTIONS(7244), - [anon_sym_DASH_GT] = ACTIONS(7244), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7242), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7242), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7242), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7242), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7242), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7242), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7242), - [anon_sym_NS_AVAILABLE] = ACTIONS(7242), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7242), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7242), - [anon_sym_API_AVAILABLE] = ACTIONS(7242), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7242), - [anon_sym_API_DEPRECATED] = ACTIONS(7242), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7242), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7242), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7242), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7242), - [anon_sym___deprecated_msg] = ACTIONS(7242), - [anon_sym___deprecated_enum_msg] = ACTIONS(7242), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7242), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7242), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7242), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7242), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7242), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7242), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3324] = { - [sym_identifier] = ACTIONS(7178), - [anon_sym_COMMA] = ACTIONS(7180), - [anon_sym_RPAREN] = ACTIONS(7180), - [anon_sym_LPAREN2] = ACTIONS(7180), - [anon_sym_DASH] = ACTIONS(7178), - [anon_sym_PLUS] = ACTIONS(7178), - [anon_sym_STAR] = ACTIONS(7180), - [anon_sym_SLASH] = ACTIONS(7178), - [anon_sym_PERCENT] = ACTIONS(7180), - [anon_sym_PIPE_PIPE] = ACTIONS(7180), - [anon_sym_AMP_AMP] = ACTIONS(7180), - [anon_sym_PIPE] = ACTIONS(7178), - [anon_sym_CARET] = ACTIONS(7180), - [anon_sym_AMP] = ACTIONS(7178), - [anon_sym_EQ_EQ] = ACTIONS(7180), - [anon_sym_BANG_EQ] = ACTIONS(7180), - [anon_sym_GT] = ACTIONS(7178), - [anon_sym_GT_EQ] = ACTIONS(7180), - [anon_sym_LT_EQ] = ACTIONS(7180), - [anon_sym_LT] = ACTIONS(7178), - [anon_sym_LT_LT] = ACTIONS(7180), - [anon_sym_GT_GT] = ACTIONS(7180), - [anon_sym_SEMI] = ACTIONS(7180), - [anon_sym___attribute] = ACTIONS(7178), - [anon_sym___attribute__] = ACTIONS(7178), - [anon_sym_RBRACE] = ACTIONS(7180), - [anon_sym_LBRACK] = ACTIONS(7180), - [anon_sym_RBRACK] = ACTIONS(7180), - [anon_sym_const] = ACTIONS(7178), - [anon_sym_volatile] = ACTIONS(7178), - [anon_sym_restrict] = ACTIONS(7178), - [anon_sym__Atomic] = ACTIONS(7178), - [anon_sym_in] = ACTIONS(7178), - [anon_sym_out] = ACTIONS(7178), - [anon_sym_inout] = ACTIONS(7178), - [anon_sym_bycopy] = ACTIONS(7178), - [anon_sym_byref] = ACTIONS(7178), - [anon_sym_oneway] = ACTIONS(7178), - [anon_sym__Nullable] = ACTIONS(7178), - [anon_sym__Nonnull] = ACTIONS(7178), - [anon_sym__Nullable_result] = ACTIONS(7178), - [anon_sym__Null_unspecified] = ACTIONS(7178), - [anon_sym___autoreleasing] = ACTIONS(7178), - [anon_sym___nullable] = ACTIONS(7178), - [anon_sym___nonnull] = ACTIONS(7178), - [anon_sym___strong] = ACTIONS(7178), - [anon_sym___weak] = ACTIONS(7178), - [anon_sym___bridge] = ACTIONS(7178), - [anon_sym___bridge_transfer] = ACTIONS(7178), - [anon_sym___bridge_retained] = ACTIONS(7178), - [anon_sym___unsafe_unretained] = ACTIONS(7178), - [anon_sym___block] = ACTIONS(7178), - [anon_sym___kindof] = ACTIONS(7178), - [anon_sym___unused] = ACTIONS(7178), - [anon_sym__Complex] = ACTIONS(7178), - [anon_sym___complex] = ACTIONS(7178), - [anon_sym_IBOutlet] = ACTIONS(7178), - [anon_sym_IBInspectable] = ACTIONS(7178), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7178), - [anon_sym_COLON] = ACTIONS(7180), - [anon_sym_QMARK] = ACTIONS(7180), - [anon_sym_DASH_DASH] = ACTIONS(7180), - [anon_sym_PLUS_PLUS] = ACTIONS(7180), - [anon_sym_DOT] = ACTIONS(7180), - [anon_sym_DASH_GT] = ACTIONS(7180), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7178), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7178), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7178), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7178), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7178), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7178), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7178), - [anon_sym_NS_AVAILABLE] = ACTIONS(7178), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7178), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7178), - [anon_sym_API_AVAILABLE] = ACTIONS(7178), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7178), - [anon_sym_API_DEPRECATED] = ACTIONS(7178), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7178), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7178), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7178), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7178), - [anon_sym___deprecated_msg] = ACTIONS(7178), - [anon_sym___deprecated_enum_msg] = ACTIONS(7178), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7178), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7178), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7178), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7178), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7178), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7178), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3325] = { - [sym_identifier] = ACTIONS(7190), - [anon_sym_COMMA] = ACTIONS(7192), - [anon_sym_RPAREN] = ACTIONS(7192), - [anon_sym_LPAREN2] = ACTIONS(7192), - [anon_sym_DASH] = ACTIONS(7190), - [anon_sym_PLUS] = ACTIONS(7190), - [anon_sym_STAR] = ACTIONS(7192), - [anon_sym_SLASH] = ACTIONS(7190), - [anon_sym_PERCENT] = ACTIONS(7192), - [anon_sym_PIPE_PIPE] = ACTIONS(7192), - [anon_sym_AMP_AMP] = ACTIONS(7192), - [anon_sym_PIPE] = ACTIONS(7190), - [anon_sym_CARET] = ACTIONS(7192), - [anon_sym_AMP] = ACTIONS(7190), - [anon_sym_EQ_EQ] = ACTIONS(7192), - [anon_sym_BANG_EQ] = ACTIONS(7192), - [anon_sym_GT] = ACTIONS(7190), - [anon_sym_GT_EQ] = ACTIONS(7192), - [anon_sym_LT_EQ] = ACTIONS(7192), - [anon_sym_LT] = ACTIONS(7190), - [anon_sym_LT_LT] = ACTIONS(7192), - [anon_sym_GT_GT] = ACTIONS(7192), - [anon_sym_SEMI] = ACTIONS(7192), - [anon_sym___attribute] = ACTIONS(7190), - [anon_sym___attribute__] = ACTIONS(7190), - [anon_sym_RBRACE] = ACTIONS(7192), - [anon_sym_LBRACK] = ACTIONS(7192), - [anon_sym_RBRACK] = ACTIONS(7192), - [anon_sym_const] = ACTIONS(7190), - [anon_sym_volatile] = ACTIONS(7190), - [anon_sym_restrict] = ACTIONS(7190), - [anon_sym__Atomic] = ACTIONS(7190), - [anon_sym_in] = ACTIONS(7190), - [anon_sym_out] = ACTIONS(7190), - [anon_sym_inout] = ACTIONS(7190), - [anon_sym_bycopy] = ACTIONS(7190), - [anon_sym_byref] = ACTIONS(7190), - [anon_sym_oneway] = ACTIONS(7190), - [anon_sym__Nullable] = ACTIONS(7190), - [anon_sym__Nonnull] = ACTIONS(7190), - [anon_sym__Nullable_result] = ACTIONS(7190), - [anon_sym__Null_unspecified] = ACTIONS(7190), - [anon_sym___autoreleasing] = ACTIONS(7190), - [anon_sym___nullable] = ACTIONS(7190), - [anon_sym___nonnull] = ACTIONS(7190), - [anon_sym___strong] = ACTIONS(7190), - [anon_sym___weak] = ACTIONS(7190), - [anon_sym___bridge] = ACTIONS(7190), - [anon_sym___bridge_transfer] = ACTIONS(7190), - [anon_sym___bridge_retained] = ACTIONS(7190), - [anon_sym___unsafe_unretained] = ACTIONS(7190), - [anon_sym___block] = ACTIONS(7190), - [anon_sym___kindof] = ACTIONS(7190), - [anon_sym___unused] = ACTIONS(7190), - [anon_sym__Complex] = ACTIONS(7190), - [anon_sym___complex] = ACTIONS(7190), - [anon_sym_IBOutlet] = ACTIONS(7190), - [anon_sym_IBInspectable] = ACTIONS(7190), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7190), - [anon_sym_COLON] = ACTIONS(7192), - [anon_sym_QMARK] = ACTIONS(7192), - [anon_sym_DASH_DASH] = ACTIONS(7192), - [anon_sym_PLUS_PLUS] = ACTIONS(7192), - [anon_sym_DOT] = ACTIONS(7192), - [anon_sym_DASH_GT] = ACTIONS(7192), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7190), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7190), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7190), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7190), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7190), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7190), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7190), - [anon_sym_NS_AVAILABLE] = ACTIONS(7190), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7190), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7190), - [anon_sym_API_AVAILABLE] = ACTIONS(7190), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7190), - [anon_sym_API_DEPRECATED] = ACTIONS(7190), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7190), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7190), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7190), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7190), - [anon_sym___deprecated_msg] = ACTIONS(7190), - [anon_sym___deprecated_enum_msg] = ACTIONS(7190), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7190), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7190), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7190), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7190), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7190), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7190), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3326] = { - [sym_identifier] = ACTIONS(7310), - [anon_sym_COMMA] = ACTIONS(7312), - [anon_sym_RPAREN] = ACTIONS(7312), - [anon_sym_LPAREN2] = ACTIONS(7312), - [anon_sym_DASH] = ACTIONS(7310), - [anon_sym_PLUS] = ACTIONS(7310), - [anon_sym_STAR] = ACTIONS(7312), - [anon_sym_SLASH] = ACTIONS(7310), - [anon_sym_PERCENT] = ACTIONS(7312), - [anon_sym_PIPE_PIPE] = ACTIONS(7312), - [anon_sym_AMP_AMP] = ACTIONS(7312), - [anon_sym_PIPE] = ACTIONS(7310), - [anon_sym_CARET] = ACTIONS(7312), - [anon_sym_AMP] = ACTIONS(7310), - [anon_sym_EQ_EQ] = ACTIONS(7312), - [anon_sym_BANG_EQ] = ACTIONS(7312), - [anon_sym_GT] = ACTIONS(7310), - [anon_sym_GT_EQ] = ACTIONS(7312), - [anon_sym_LT_EQ] = ACTIONS(7312), - [anon_sym_LT] = ACTIONS(7310), - [anon_sym_LT_LT] = ACTIONS(7312), - [anon_sym_GT_GT] = ACTIONS(7312), - [anon_sym_SEMI] = ACTIONS(7312), - [anon_sym___attribute] = ACTIONS(7310), - [anon_sym___attribute__] = ACTIONS(7310), - [anon_sym_RBRACE] = ACTIONS(7312), - [anon_sym_LBRACK] = ACTIONS(7312), - [anon_sym_RBRACK] = ACTIONS(7312), - [anon_sym_const] = ACTIONS(7310), - [anon_sym_volatile] = ACTIONS(7310), - [anon_sym_restrict] = ACTIONS(7310), - [anon_sym__Atomic] = ACTIONS(7310), - [anon_sym_in] = ACTIONS(7310), - [anon_sym_out] = ACTIONS(7310), - [anon_sym_inout] = ACTIONS(7310), - [anon_sym_bycopy] = ACTIONS(7310), - [anon_sym_byref] = ACTIONS(7310), - [anon_sym_oneway] = ACTIONS(7310), - [anon_sym__Nullable] = ACTIONS(7310), - [anon_sym__Nonnull] = ACTIONS(7310), - [anon_sym__Nullable_result] = ACTIONS(7310), - [anon_sym__Null_unspecified] = ACTIONS(7310), - [anon_sym___autoreleasing] = ACTIONS(7310), - [anon_sym___nullable] = ACTIONS(7310), - [anon_sym___nonnull] = ACTIONS(7310), - [anon_sym___strong] = ACTIONS(7310), - [anon_sym___weak] = ACTIONS(7310), - [anon_sym___bridge] = ACTIONS(7310), - [anon_sym___bridge_transfer] = ACTIONS(7310), - [anon_sym___bridge_retained] = ACTIONS(7310), - [anon_sym___unsafe_unretained] = ACTIONS(7310), - [anon_sym___block] = ACTIONS(7310), - [anon_sym___kindof] = ACTIONS(7310), - [anon_sym___unused] = ACTIONS(7310), - [anon_sym__Complex] = ACTIONS(7310), - [anon_sym___complex] = ACTIONS(7310), - [anon_sym_IBOutlet] = ACTIONS(7310), - [anon_sym_IBInspectable] = ACTIONS(7310), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7310), - [anon_sym_COLON] = ACTIONS(7312), - [anon_sym_QMARK] = ACTIONS(7312), - [anon_sym_DASH_DASH] = ACTIONS(7312), - [anon_sym_PLUS_PLUS] = ACTIONS(7312), - [anon_sym_DOT] = ACTIONS(7312), - [anon_sym_DASH_GT] = ACTIONS(7312), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7310), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7310), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7310), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7310), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7310), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7310), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7310), - [anon_sym_NS_AVAILABLE] = ACTIONS(7310), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7310), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7310), - [anon_sym_API_AVAILABLE] = ACTIONS(7310), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7310), - [anon_sym_API_DEPRECATED] = ACTIONS(7310), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7310), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7310), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7310), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7310), - [anon_sym___deprecated_msg] = ACTIONS(7310), - [anon_sym___deprecated_enum_msg] = ACTIONS(7310), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7310), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7310), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7310), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7310), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7310), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7310), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3327] = { - [sym_identifier] = ACTIONS(7126), - [anon_sym_COMMA] = ACTIONS(7128), - [anon_sym_RPAREN] = ACTIONS(7128), - [anon_sym_LPAREN2] = ACTIONS(7128), - [anon_sym_DASH] = ACTIONS(7126), - [anon_sym_PLUS] = ACTIONS(7126), - [anon_sym_STAR] = ACTIONS(7128), - [anon_sym_SLASH] = ACTIONS(7126), - [anon_sym_PERCENT] = ACTIONS(7128), - [anon_sym_PIPE_PIPE] = ACTIONS(7128), - [anon_sym_AMP_AMP] = ACTIONS(7128), - [anon_sym_PIPE] = ACTIONS(7126), - [anon_sym_CARET] = ACTIONS(7128), - [anon_sym_AMP] = ACTIONS(7126), - [anon_sym_EQ_EQ] = ACTIONS(7128), - [anon_sym_BANG_EQ] = ACTIONS(7128), - [anon_sym_GT] = ACTIONS(7126), - [anon_sym_GT_EQ] = ACTIONS(7128), - [anon_sym_LT_EQ] = ACTIONS(7128), - [anon_sym_LT] = ACTIONS(7126), - [anon_sym_LT_LT] = ACTIONS(7128), - [anon_sym_GT_GT] = ACTIONS(7128), - [anon_sym_SEMI] = ACTIONS(7128), - [anon_sym___attribute] = ACTIONS(7126), - [anon_sym___attribute__] = ACTIONS(7126), - [anon_sym_RBRACE] = ACTIONS(7128), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(7128), - [anon_sym_const] = ACTIONS(7126), - [anon_sym_volatile] = ACTIONS(7126), - [anon_sym_restrict] = ACTIONS(7126), - [anon_sym__Atomic] = ACTIONS(7126), - [anon_sym_in] = ACTIONS(7126), - [anon_sym_out] = ACTIONS(7126), - [anon_sym_inout] = ACTIONS(7126), - [anon_sym_bycopy] = ACTIONS(7126), - [anon_sym_byref] = ACTIONS(7126), - [anon_sym_oneway] = ACTIONS(7126), - [anon_sym__Nullable] = ACTIONS(7126), - [anon_sym__Nonnull] = ACTIONS(7126), - [anon_sym__Nullable_result] = ACTIONS(7126), - [anon_sym__Null_unspecified] = ACTIONS(7126), - [anon_sym___autoreleasing] = ACTIONS(7126), - [anon_sym___nullable] = ACTIONS(7126), - [anon_sym___nonnull] = ACTIONS(7126), - [anon_sym___strong] = ACTIONS(7126), - [anon_sym___weak] = ACTIONS(7126), - [anon_sym___bridge] = ACTIONS(7126), - [anon_sym___bridge_transfer] = ACTIONS(7126), - [anon_sym___bridge_retained] = ACTIONS(7126), - [anon_sym___unsafe_unretained] = ACTIONS(7126), - [anon_sym___block] = ACTIONS(7126), - [anon_sym___kindof] = ACTIONS(7126), - [anon_sym___unused] = ACTIONS(7126), - [anon_sym__Complex] = ACTIONS(7126), - [anon_sym___complex] = ACTIONS(7126), - [anon_sym_IBOutlet] = ACTIONS(7126), - [anon_sym_IBInspectable] = ACTIONS(7126), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7126), - [anon_sym_COLON] = ACTIONS(7128), - [anon_sym_QMARK] = ACTIONS(7128), - [anon_sym_DASH_DASH] = ACTIONS(7128), - [anon_sym_PLUS_PLUS] = ACTIONS(7128), - [anon_sym_DOT] = ACTIONS(7128), - [anon_sym_DASH_GT] = ACTIONS(7128), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7126), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7126), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7126), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7126), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7126), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7126), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7126), - [anon_sym_NS_AVAILABLE] = ACTIONS(7126), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7126), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7126), - [anon_sym_API_AVAILABLE] = ACTIONS(7126), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7126), - [anon_sym_API_DEPRECATED] = ACTIONS(7126), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7126), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7126), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7126), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7126), - [anon_sym___deprecated_msg] = ACTIONS(7126), - [anon_sym___deprecated_enum_msg] = ACTIONS(7126), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7126), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7126), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7126), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7126), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7126), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7126), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3328] = { - [sym_identifier] = ACTIONS(7202), - [anon_sym_COMMA] = ACTIONS(7204), - [anon_sym_RPAREN] = ACTIONS(7204), - [anon_sym_LPAREN2] = ACTIONS(7204), - [anon_sym_DASH] = ACTIONS(7202), - [anon_sym_PLUS] = ACTIONS(7202), - [anon_sym_STAR] = ACTIONS(7204), - [anon_sym_SLASH] = ACTIONS(7202), - [anon_sym_PERCENT] = ACTIONS(7204), - [anon_sym_PIPE_PIPE] = ACTIONS(7204), - [anon_sym_AMP_AMP] = ACTIONS(7204), - [anon_sym_PIPE] = ACTIONS(7202), - [anon_sym_CARET] = ACTIONS(7204), - [anon_sym_AMP] = ACTIONS(7202), - [anon_sym_EQ_EQ] = ACTIONS(7204), - [anon_sym_BANG_EQ] = ACTIONS(7204), - [anon_sym_GT] = ACTIONS(7202), - [anon_sym_GT_EQ] = ACTIONS(7204), - [anon_sym_LT_EQ] = ACTIONS(7204), - [anon_sym_LT] = ACTIONS(7202), - [anon_sym_LT_LT] = ACTIONS(7204), - [anon_sym_GT_GT] = ACTIONS(7204), - [anon_sym_SEMI] = ACTIONS(7204), - [anon_sym___attribute] = ACTIONS(7202), - [anon_sym___attribute__] = ACTIONS(7202), - [anon_sym_RBRACE] = ACTIONS(7204), - [anon_sym_LBRACK] = ACTIONS(7204), - [anon_sym_RBRACK] = ACTIONS(7204), - [anon_sym_const] = ACTIONS(7202), - [anon_sym_volatile] = ACTIONS(7202), - [anon_sym_restrict] = ACTIONS(7202), - [anon_sym__Atomic] = ACTIONS(7202), - [anon_sym_in] = ACTIONS(7202), - [anon_sym_out] = ACTIONS(7202), - [anon_sym_inout] = ACTIONS(7202), - [anon_sym_bycopy] = ACTIONS(7202), - [anon_sym_byref] = ACTIONS(7202), - [anon_sym_oneway] = ACTIONS(7202), - [anon_sym__Nullable] = ACTIONS(7202), - [anon_sym__Nonnull] = ACTIONS(7202), - [anon_sym__Nullable_result] = ACTIONS(7202), - [anon_sym__Null_unspecified] = ACTIONS(7202), - [anon_sym___autoreleasing] = ACTIONS(7202), - [anon_sym___nullable] = ACTIONS(7202), - [anon_sym___nonnull] = ACTIONS(7202), - [anon_sym___strong] = ACTIONS(7202), - [anon_sym___weak] = ACTIONS(7202), - [anon_sym___bridge] = ACTIONS(7202), - [anon_sym___bridge_transfer] = ACTIONS(7202), - [anon_sym___bridge_retained] = ACTIONS(7202), - [anon_sym___unsafe_unretained] = ACTIONS(7202), - [anon_sym___block] = ACTIONS(7202), - [anon_sym___kindof] = ACTIONS(7202), - [anon_sym___unused] = ACTIONS(7202), - [anon_sym__Complex] = ACTIONS(7202), - [anon_sym___complex] = ACTIONS(7202), - [anon_sym_IBOutlet] = ACTIONS(7202), - [anon_sym_IBInspectable] = ACTIONS(7202), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7202), - [anon_sym_COLON] = ACTIONS(7204), - [anon_sym_QMARK] = ACTIONS(7204), - [anon_sym_DASH_DASH] = ACTIONS(7204), - [anon_sym_PLUS_PLUS] = ACTIONS(7204), - [anon_sym_DOT] = ACTIONS(7204), - [anon_sym_DASH_GT] = ACTIONS(7204), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7202), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7202), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7202), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7202), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7202), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7202), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7202), - [anon_sym_NS_AVAILABLE] = ACTIONS(7202), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7202), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7202), - [anon_sym_API_AVAILABLE] = ACTIONS(7202), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7202), - [anon_sym_API_DEPRECATED] = ACTIONS(7202), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7202), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7202), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7202), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7202), - [anon_sym___deprecated_msg] = ACTIONS(7202), - [anon_sym___deprecated_enum_msg] = ACTIONS(7202), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7202), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7202), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7202), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7202), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7202), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7202), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3329] = { - [sym_identifier] = ACTIONS(7174), - [anon_sym_COMMA] = ACTIONS(7176), - [anon_sym_RPAREN] = ACTIONS(7176), - [anon_sym_LPAREN2] = ACTIONS(7176), - [anon_sym_DASH] = ACTIONS(7174), - [anon_sym_PLUS] = ACTIONS(7174), - [anon_sym_STAR] = ACTIONS(7176), - [anon_sym_SLASH] = ACTIONS(7174), - [anon_sym_PERCENT] = ACTIONS(7176), - [anon_sym_PIPE_PIPE] = ACTIONS(7176), - [anon_sym_AMP_AMP] = ACTIONS(7176), - [anon_sym_PIPE] = ACTIONS(7174), - [anon_sym_CARET] = ACTIONS(7176), - [anon_sym_AMP] = ACTIONS(7174), - [anon_sym_EQ_EQ] = ACTIONS(7176), - [anon_sym_BANG_EQ] = ACTIONS(7176), - [anon_sym_GT] = ACTIONS(7174), - [anon_sym_GT_EQ] = ACTIONS(7176), - [anon_sym_LT_EQ] = ACTIONS(7176), - [anon_sym_LT] = ACTIONS(7174), - [anon_sym_LT_LT] = ACTIONS(7176), - [anon_sym_GT_GT] = ACTIONS(7176), - [anon_sym_SEMI] = ACTIONS(7176), - [anon_sym___attribute] = ACTIONS(7174), - [anon_sym___attribute__] = ACTIONS(7174), - [anon_sym_RBRACE] = ACTIONS(7176), - [anon_sym_LBRACK] = ACTIONS(7176), - [anon_sym_RBRACK] = ACTIONS(7176), - [anon_sym_const] = ACTIONS(7174), - [anon_sym_volatile] = ACTIONS(7174), - [anon_sym_restrict] = ACTIONS(7174), - [anon_sym__Atomic] = ACTIONS(7174), - [anon_sym_in] = ACTIONS(7174), - [anon_sym_out] = ACTIONS(7174), - [anon_sym_inout] = ACTIONS(7174), - [anon_sym_bycopy] = ACTIONS(7174), - [anon_sym_byref] = ACTIONS(7174), - [anon_sym_oneway] = ACTIONS(7174), - [anon_sym__Nullable] = ACTIONS(7174), - [anon_sym__Nonnull] = ACTIONS(7174), - [anon_sym__Nullable_result] = ACTIONS(7174), - [anon_sym__Null_unspecified] = ACTIONS(7174), - [anon_sym___autoreleasing] = ACTIONS(7174), - [anon_sym___nullable] = ACTIONS(7174), - [anon_sym___nonnull] = ACTIONS(7174), - [anon_sym___strong] = ACTIONS(7174), - [anon_sym___weak] = ACTIONS(7174), - [anon_sym___bridge] = ACTIONS(7174), - [anon_sym___bridge_transfer] = ACTIONS(7174), - [anon_sym___bridge_retained] = ACTIONS(7174), - [anon_sym___unsafe_unretained] = ACTIONS(7174), - [anon_sym___block] = ACTIONS(7174), - [anon_sym___kindof] = ACTIONS(7174), - [anon_sym___unused] = ACTIONS(7174), - [anon_sym__Complex] = ACTIONS(7174), - [anon_sym___complex] = ACTIONS(7174), - [anon_sym_IBOutlet] = ACTIONS(7174), - [anon_sym_IBInspectable] = ACTIONS(7174), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7174), - [anon_sym_COLON] = ACTIONS(7176), - [anon_sym_QMARK] = ACTIONS(7176), - [anon_sym_DASH_DASH] = ACTIONS(7176), - [anon_sym_PLUS_PLUS] = ACTIONS(7176), - [anon_sym_DOT] = ACTIONS(7176), - [anon_sym_DASH_GT] = ACTIONS(7176), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7174), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7174), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7174), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7174), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7174), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7174), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7174), - [anon_sym_NS_AVAILABLE] = ACTIONS(7174), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7174), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7174), - [anon_sym_API_AVAILABLE] = ACTIONS(7174), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7174), - [anon_sym_API_DEPRECATED] = ACTIONS(7174), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7174), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7174), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7174), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7174), - [anon_sym___deprecated_msg] = ACTIONS(7174), - [anon_sym___deprecated_enum_msg] = ACTIONS(7174), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7174), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7174), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7174), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7174), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7174), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7174), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3330] = { - [sym_identifier] = ACTIONS(7314), - [anon_sym_COMMA] = ACTIONS(7316), - [anon_sym_RPAREN] = ACTIONS(7316), - [anon_sym_LPAREN2] = ACTIONS(7316), - [anon_sym_DASH] = ACTIONS(7314), - [anon_sym_PLUS] = ACTIONS(7314), - [anon_sym_STAR] = ACTIONS(7316), - [anon_sym_SLASH] = ACTIONS(7314), - [anon_sym_PERCENT] = ACTIONS(7316), - [anon_sym_PIPE_PIPE] = ACTIONS(7316), - [anon_sym_AMP_AMP] = ACTIONS(7316), - [anon_sym_PIPE] = ACTIONS(7314), - [anon_sym_CARET] = ACTIONS(7316), - [anon_sym_AMP] = ACTIONS(7314), - [anon_sym_EQ_EQ] = ACTIONS(7316), - [anon_sym_BANG_EQ] = ACTIONS(7316), - [anon_sym_GT] = ACTIONS(7314), - [anon_sym_GT_EQ] = ACTIONS(7316), - [anon_sym_LT_EQ] = ACTIONS(7316), - [anon_sym_LT] = ACTIONS(7314), - [anon_sym_LT_LT] = ACTIONS(7316), - [anon_sym_GT_GT] = ACTIONS(7316), - [anon_sym_SEMI] = ACTIONS(7316), - [anon_sym___attribute] = ACTIONS(7314), - [anon_sym___attribute__] = ACTIONS(7314), - [anon_sym_RBRACE] = ACTIONS(7316), - [anon_sym_LBRACK] = ACTIONS(7316), - [anon_sym_RBRACK] = ACTIONS(7316), - [anon_sym_const] = ACTIONS(7314), - [anon_sym_volatile] = ACTIONS(7314), - [anon_sym_restrict] = ACTIONS(7314), - [anon_sym__Atomic] = ACTIONS(7314), - [anon_sym_in] = ACTIONS(7314), - [anon_sym_out] = ACTIONS(7314), - [anon_sym_inout] = ACTIONS(7314), - [anon_sym_bycopy] = ACTIONS(7314), - [anon_sym_byref] = ACTIONS(7314), - [anon_sym_oneway] = ACTIONS(7314), - [anon_sym__Nullable] = ACTIONS(7314), - [anon_sym__Nonnull] = ACTIONS(7314), - [anon_sym__Nullable_result] = ACTIONS(7314), - [anon_sym__Null_unspecified] = ACTIONS(7314), - [anon_sym___autoreleasing] = ACTIONS(7314), - [anon_sym___nullable] = ACTIONS(7314), - [anon_sym___nonnull] = ACTIONS(7314), - [anon_sym___strong] = ACTIONS(7314), - [anon_sym___weak] = ACTIONS(7314), - [anon_sym___bridge] = ACTIONS(7314), - [anon_sym___bridge_transfer] = ACTIONS(7314), - [anon_sym___bridge_retained] = ACTIONS(7314), - [anon_sym___unsafe_unretained] = ACTIONS(7314), - [anon_sym___block] = ACTIONS(7314), - [anon_sym___kindof] = ACTIONS(7314), - [anon_sym___unused] = ACTIONS(7314), - [anon_sym__Complex] = ACTIONS(7314), - [anon_sym___complex] = ACTIONS(7314), - [anon_sym_IBOutlet] = ACTIONS(7314), - [anon_sym_IBInspectable] = ACTIONS(7314), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7314), - [anon_sym_COLON] = ACTIONS(7316), - [anon_sym_QMARK] = ACTIONS(7316), - [anon_sym_DASH_DASH] = ACTIONS(7316), - [anon_sym_PLUS_PLUS] = ACTIONS(7316), - [anon_sym_DOT] = ACTIONS(7316), - [anon_sym_DASH_GT] = ACTIONS(7316), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7314), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7314), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7314), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7314), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7314), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7314), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7314), - [anon_sym_NS_AVAILABLE] = ACTIONS(7314), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7314), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7314), - [anon_sym_API_AVAILABLE] = ACTIONS(7314), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7314), - [anon_sym_API_DEPRECATED] = ACTIONS(7314), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7314), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7314), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7314), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7314), - [anon_sym___deprecated_msg] = ACTIONS(7314), - [anon_sym___deprecated_enum_msg] = ACTIONS(7314), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7314), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7314), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7314), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7314), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7314), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7314), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3331] = { - [sym_identifier] = ACTIONS(7170), - [anon_sym_COMMA] = ACTIONS(7172), - [anon_sym_RPAREN] = ACTIONS(7172), - [anon_sym_LPAREN2] = ACTIONS(7172), - [anon_sym_DASH] = ACTIONS(7170), - [anon_sym_PLUS] = ACTIONS(7170), - [anon_sym_STAR] = ACTIONS(7172), - [anon_sym_SLASH] = ACTIONS(7170), - [anon_sym_PERCENT] = ACTIONS(7172), - [anon_sym_PIPE_PIPE] = ACTIONS(7172), - [anon_sym_AMP_AMP] = ACTIONS(7172), - [anon_sym_PIPE] = ACTIONS(7170), - [anon_sym_CARET] = ACTIONS(7172), - [anon_sym_AMP] = ACTIONS(7170), - [anon_sym_EQ_EQ] = ACTIONS(7172), - [anon_sym_BANG_EQ] = ACTIONS(7172), - [anon_sym_GT] = ACTIONS(7170), - [anon_sym_GT_EQ] = ACTIONS(7172), - [anon_sym_LT_EQ] = ACTIONS(7172), - [anon_sym_LT] = ACTIONS(7170), - [anon_sym_LT_LT] = ACTIONS(7172), - [anon_sym_GT_GT] = ACTIONS(7172), - [anon_sym_SEMI] = ACTIONS(7172), - [anon_sym___attribute] = ACTIONS(7170), - [anon_sym___attribute__] = ACTIONS(7170), - [anon_sym_RBRACE] = ACTIONS(7172), - [anon_sym_LBRACK] = ACTIONS(7172), - [anon_sym_RBRACK] = ACTIONS(7172), - [anon_sym_const] = ACTIONS(7170), - [anon_sym_volatile] = ACTIONS(7170), - [anon_sym_restrict] = ACTIONS(7170), - [anon_sym__Atomic] = ACTIONS(7170), - [anon_sym_in] = ACTIONS(7170), - [anon_sym_out] = ACTIONS(7170), - [anon_sym_inout] = ACTIONS(7170), - [anon_sym_bycopy] = ACTIONS(7170), - [anon_sym_byref] = ACTIONS(7170), - [anon_sym_oneway] = ACTIONS(7170), - [anon_sym__Nullable] = ACTIONS(7170), - [anon_sym__Nonnull] = ACTIONS(7170), - [anon_sym__Nullable_result] = ACTIONS(7170), - [anon_sym__Null_unspecified] = ACTIONS(7170), - [anon_sym___autoreleasing] = ACTIONS(7170), - [anon_sym___nullable] = ACTIONS(7170), - [anon_sym___nonnull] = ACTIONS(7170), - [anon_sym___strong] = ACTIONS(7170), - [anon_sym___weak] = ACTIONS(7170), - [anon_sym___bridge] = ACTIONS(7170), - [anon_sym___bridge_transfer] = ACTIONS(7170), - [anon_sym___bridge_retained] = ACTIONS(7170), - [anon_sym___unsafe_unretained] = ACTIONS(7170), - [anon_sym___block] = ACTIONS(7170), - [anon_sym___kindof] = ACTIONS(7170), - [anon_sym___unused] = ACTIONS(7170), - [anon_sym__Complex] = ACTIONS(7170), - [anon_sym___complex] = ACTIONS(7170), - [anon_sym_IBOutlet] = ACTIONS(7170), - [anon_sym_IBInspectable] = ACTIONS(7170), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7170), - [anon_sym_COLON] = ACTIONS(7172), - [anon_sym_QMARK] = ACTIONS(7172), - [anon_sym_DASH_DASH] = ACTIONS(7172), - [anon_sym_PLUS_PLUS] = ACTIONS(7172), - [anon_sym_DOT] = ACTIONS(7172), - [anon_sym_DASH_GT] = ACTIONS(7172), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7170), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7170), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7170), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7170), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7170), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7170), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7170), - [anon_sym_NS_AVAILABLE] = ACTIONS(7170), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7170), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7170), - [anon_sym_API_AVAILABLE] = ACTIONS(7170), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7170), - [anon_sym_API_DEPRECATED] = ACTIONS(7170), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7170), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7170), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7170), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7170), - [anon_sym___deprecated_msg] = ACTIONS(7170), - [anon_sym___deprecated_enum_msg] = ACTIONS(7170), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7170), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7170), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7170), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7170), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7170), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7170), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3332] = { - [sym_identifier] = ACTIONS(7706), - [anon_sym_extern] = ACTIONS(7706), - [anon_sym___attribute] = ACTIONS(7706), - [anon_sym___attribute__] = ACTIONS(7706), - [anon_sym___declspec] = ACTIONS(7706), - [anon_sym_RBRACE] = ACTIONS(7829), - [anon_sym_static] = ACTIONS(7706), - [anon_sym_auto] = ACTIONS(7706), - [anon_sym_register] = ACTIONS(7706), - [anon_sym_inline] = ACTIONS(7706), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7706), - [anon_sym_const] = ACTIONS(7706), - [anon_sym_volatile] = ACTIONS(7706), - [anon_sym_restrict] = ACTIONS(7706), - [anon_sym__Atomic] = ACTIONS(7706), - [anon_sym_in] = ACTIONS(7706), - [anon_sym_out] = ACTIONS(7706), - [anon_sym_inout] = ACTIONS(7706), - [anon_sym_bycopy] = ACTIONS(7706), - [anon_sym_byref] = ACTIONS(7706), - [anon_sym_oneway] = ACTIONS(7706), - [anon_sym__Nullable] = ACTIONS(7706), - [anon_sym__Nonnull] = ACTIONS(7706), - [anon_sym__Nullable_result] = ACTIONS(7706), - [anon_sym__Null_unspecified] = ACTIONS(7706), - [anon_sym___autoreleasing] = ACTIONS(7706), - [anon_sym___nullable] = ACTIONS(7706), - [anon_sym___nonnull] = ACTIONS(7706), - [anon_sym___strong] = ACTIONS(7706), - [anon_sym___weak] = ACTIONS(7706), - [anon_sym___bridge] = ACTIONS(7706), - [anon_sym___bridge_transfer] = ACTIONS(7706), - [anon_sym___bridge_retained] = ACTIONS(7706), - [anon_sym___unsafe_unretained] = ACTIONS(7706), - [anon_sym___block] = ACTIONS(7706), - [anon_sym___kindof] = ACTIONS(7706), - [anon_sym___unused] = ACTIONS(7706), - [anon_sym__Complex] = ACTIONS(7706), - [anon_sym___complex] = ACTIONS(7706), - [anon_sym_IBOutlet] = ACTIONS(7706), - [anon_sym_IBInspectable] = ACTIONS(7706), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7706), - [anon_sym_signed] = ACTIONS(7706), - [anon_sym_unsigned] = ACTIONS(7706), - [anon_sym_long] = ACTIONS(7706), - [anon_sym_short] = ACTIONS(7706), - [sym_primitive_type] = ACTIONS(7706), - [anon_sym_enum] = ACTIONS(7706), - [anon_sym_NS_ENUM] = ACTIONS(7706), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7706), - [anon_sym_NS_OPTIONS] = ACTIONS(7706), - [anon_sym_struct] = ACTIONS(7706), - [anon_sym_union] = ACTIONS(7706), - [sym_comment] = ACTIONS(3), - [sym_private] = ACTIONS(7829), - [sym_public] = ACTIONS(7829), - [sym_protected] = ACTIONS(7829), - [sym_package] = ACTIONS(7829), - [sym_method_attribute_specifier] = ACTIONS(7706), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7706), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7706), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7706), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7706), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7706), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7706), - [anon_sym_NS_AVAILABLE] = ACTIONS(7706), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7706), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7706), - [anon_sym_API_AVAILABLE] = ACTIONS(7706), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7706), - [anon_sym_API_DEPRECATED] = ACTIONS(7706), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7706), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7706), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7706), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7706), - [anon_sym___deprecated_msg] = ACTIONS(7706), - [anon_sym___deprecated_enum_msg] = ACTIONS(7706), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7706), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7706), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7706), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7706), - [anon_sym_typeof] = ACTIONS(7706), - [anon_sym___typeof] = ACTIONS(7706), - [anon_sym___typeof__] = ACTIONS(7706), - [sym_id] = ACTIONS(7706), - [sym_instancetype] = ACTIONS(7706), - [sym_Class] = ACTIONS(7706), - [sym_SEL] = ACTIONS(7706), - [sym_IMP] = ACTIONS(7706), - [sym_BOOL] = ACTIONS(7706), - [sym_auto] = ACTIONS(7706), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3333] = { - [sym_identifier] = ACTIONS(7158), - [anon_sym_COMMA] = ACTIONS(7160), - [anon_sym_RPAREN] = ACTIONS(7160), - [anon_sym_LPAREN2] = ACTIONS(7160), - [anon_sym_DASH] = ACTIONS(7158), - [anon_sym_PLUS] = ACTIONS(7158), - [anon_sym_STAR] = ACTIONS(7160), - [anon_sym_SLASH] = ACTIONS(7158), - [anon_sym_PERCENT] = ACTIONS(7160), - [anon_sym_PIPE_PIPE] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(7160), - [anon_sym_PIPE] = ACTIONS(7158), - [anon_sym_CARET] = ACTIONS(7160), - [anon_sym_AMP] = ACTIONS(7158), - [anon_sym_EQ_EQ] = ACTIONS(7160), - [anon_sym_BANG_EQ] = ACTIONS(7160), - [anon_sym_GT] = ACTIONS(7158), - [anon_sym_GT_EQ] = ACTIONS(7160), - [anon_sym_LT_EQ] = ACTIONS(7160), - [anon_sym_LT] = ACTIONS(7158), - [anon_sym_LT_LT] = ACTIONS(7160), - [anon_sym_GT_GT] = ACTIONS(7160), - [anon_sym_SEMI] = ACTIONS(7160), - [anon_sym___attribute] = ACTIONS(7158), - [anon_sym___attribute__] = ACTIONS(7158), - [anon_sym_RBRACE] = ACTIONS(7160), - [anon_sym_LBRACK] = ACTIONS(7160), - [anon_sym_RBRACK] = ACTIONS(7160), - [anon_sym_const] = ACTIONS(7158), - [anon_sym_volatile] = ACTIONS(7158), - [anon_sym_restrict] = ACTIONS(7158), - [anon_sym__Atomic] = ACTIONS(7158), - [anon_sym_in] = ACTIONS(7158), - [anon_sym_out] = ACTIONS(7158), - [anon_sym_inout] = ACTIONS(7158), - [anon_sym_bycopy] = ACTIONS(7158), - [anon_sym_byref] = ACTIONS(7158), - [anon_sym_oneway] = ACTIONS(7158), - [anon_sym__Nullable] = ACTIONS(7158), - [anon_sym__Nonnull] = ACTIONS(7158), - [anon_sym__Nullable_result] = ACTIONS(7158), - [anon_sym__Null_unspecified] = ACTIONS(7158), - [anon_sym___autoreleasing] = ACTIONS(7158), - [anon_sym___nullable] = ACTIONS(7158), - [anon_sym___nonnull] = ACTIONS(7158), - [anon_sym___strong] = ACTIONS(7158), - [anon_sym___weak] = ACTIONS(7158), - [anon_sym___bridge] = ACTIONS(7158), - [anon_sym___bridge_transfer] = ACTIONS(7158), - [anon_sym___bridge_retained] = ACTIONS(7158), - [anon_sym___unsafe_unretained] = ACTIONS(7158), - [anon_sym___block] = ACTIONS(7158), - [anon_sym___kindof] = ACTIONS(7158), - [anon_sym___unused] = ACTIONS(7158), - [anon_sym__Complex] = ACTIONS(7158), - [anon_sym___complex] = ACTIONS(7158), - [anon_sym_IBOutlet] = ACTIONS(7158), - [anon_sym_IBInspectable] = ACTIONS(7158), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7158), - [anon_sym_COLON] = ACTIONS(7160), - [anon_sym_QMARK] = ACTIONS(7160), - [anon_sym_DASH_DASH] = ACTIONS(7160), - [anon_sym_PLUS_PLUS] = ACTIONS(7160), - [anon_sym_DOT] = ACTIONS(7160), - [anon_sym_DASH_GT] = ACTIONS(7160), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7158), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7158), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7158), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7158), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7158), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7158), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7158), - [anon_sym_NS_AVAILABLE] = ACTIONS(7158), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7158), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7158), - [anon_sym_API_AVAILABLE] = ACTIONS(7158), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7158), - [anon_sym_API_DEPRECATED] = ACTIONS(7158), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7158), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7158), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7158), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7158), - [anon_sym___deprecated_msg] = ACTIONS(7158), - [anon_sym___deprecated_enum_msg] = ACTIONS(7158), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7158), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7158), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7158), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7158), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7158), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7158), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3334] = { - [sym_identifier] = ACTIONS(7146), - [anon_sym_COMMA] = ACTIONS(7148), - [anon_sym_RPAREN] = ACTIONS(7148), - [anon_sym_LPAREN2] = ACTIONS(7148), - [anon_sym_DASH] = ACTIONS(7146), - [anon_sym_PLUS] = ACTIONS(7146), - [anon_sym_STAR] = ACTIONS(7148), - [anon_sym_SLASH] = ACTIONS(7146), - [anon_sym_PERCENT] = ACTIONS(7148), - [anon_sym_PIPE_PIPE] = ACTIONS(7148), - [anon_sym_AMP_AMP] = ACTIONS(7148), - [anon_sym_PIPE] = ACTIONS(7146), - [anon_sym_CARET] = ACTIONS(7148), - [anon_sym_AMP] = ACTIONS(7146), - [anon_sym_EQ_EQ] = ACTIONS(7148), - [anon_sym_BANG_EQ] = ACTIONS(7148), - [anon_sym_GT] = ACTIONS(7146), - [anon_sym_GT_EQ] = ACTIONS(7148), - [anon_sym_LT_EQ] = ACTIONS(7148), - [anon_sym_LT] = ACTIONS(7146), - [anon_sym_LT_LT] = ACTIONS(7148), - [anon_sym_GT_GT] = ACTIONS(7148), - [anon_sym_SEMI] = ACTIONS(7148), - [anon_sym___attribute] = ACTIONS(7146), - [anon_sym___attribute__] = ACTIONS(7146), - [anon_sym_RBRACE] = ACTIONS(7148), - [anon_sym_LBRACK] = ACTIONS(7148), - [anon_sym_RBRACK] = ACTIONS(7148), - [anon_sym_const] = ACTIONS(7146), - [anon_sym_volatile] = ACTIONS(7146), - [anon_sym_restrict] = ACTIONS(7146), - [anon_sym__Atomic] = ACTIONS(7146), - [anon_sym_in] = ACTIONS(7146), - [anon_sym_out] = ACTIONS(7146), - [anon_sym_inout] = ACTIONS(7146), - [anon_sym_bycopy] = ACTIONS(7146), - [anon_sym_byref] = ACTIONS(7146), - [anon_sym_oneway] = ACTIONS(7146), - [anon_sym__Nullable] = ACTIONS(7146), - [anon_sym__Nonnull] = ACTIONS(7146), - [anon_sym__Nullable_result] = ACTIONS(7146), - [anon_sym__Null_unspecified] = ACTIONS(7146), - [anon_sym___autoreleasing] = ACTIONS(7146), - [anon_sym___nullable] = ACTIONS(7146), - [anon_sym___nonnull] = ACTIONS(7146), - [anon_sym___strong] = ACTIONS(7146), - [anon_sym___weak] = ACTIONS(7146), - [anon_sym___bridge] = ACTIONS(7146), - [anon_sym___bridge_transfer] = ACTIONS(7146), - [anon_sym___bridge_retained] = ACTIONS(7146), - [anon_sym___unsafe_unretained] = ACTIONS(7146), - [anon_sym___block] = ACTIONS(7146), - [anon_sym___kindof] = ACTIONS(7146), - [anon_sym___unused] = ACTIONS(7146), - [anon_sym__Complex] = ACTIONS(7146), - [anon_sym___complex] = ACTIONS(7146), - [anon_sym_IBOutlet] = ACTIONS(7146), - [anon_sym_IBInspectable] = ACTIONS(7146), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7146), - [anon_sym_COLON] = ACTIONS(7148), - [anon_sym_QMARK] = ACTIONS(7148), - [anon_sym_DASH_DASH] = ACTIONS(7148), - [anon_sym_PLUS_PLUS] = ACTIONS(7148), - [anon_sym_DOT] = ACTIONS(7148), - [anon_sym_DASH_GT] = ACTIONS(7148), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7146), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7146), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7146), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7146), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7146), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7146), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7146), - [anon_sym_NS_AVAILABLE] = ACTIONS(7146), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7146), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7146), - [anon_sym_API_AVAILABLE] = ACTIONS(7146), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7146), - [anon_sym_API_DEPRECATED] = ACTIONS(7146), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7146), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7146), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7146), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7146), - [anon_sym___deprecated_msg] = ACTIONS(7146), - [anon_sym___deprecated_enum_msg] = ACTIONS(7146), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7146), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7146), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7146), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7146), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7146), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7146), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3335] = { - [sym_identifier] = ACTIONS(7198), - [anon_sym_COMMA] = ACTIONS(7200), - [anon_sym_RPAREN] = ACTIONS(7200), - [anon_sym_LPAREN2] = ACTIONS(7200), - [anon_sym_DASH] = ACTIONS(7198), - [anon_sym_PLUS] = ACTIONS(7198), - [anon_sym_STAR] = ACTIONS(7200), - [anon_sym_SLASH] = ACTIONS(7198), - [anon_sym_PERCENT] = ACTIONS(7200), - [anon_sym_PIPE_PIPE] = ACTIONS(7200), - [anon_sym_AMP_AMP] = ACTIONS(7200), - [anon_sym_PIPE] = ACTIONS(7198), - [anon_sym_CARET] = ACTIONS(7200), - [anon_sym_AMP] = ACTIONS(7198), - [anon_sym_EQ_EQ] = ACTIONS(7200), - [anon_sym_BANG_EQ] = ACTIONS(7200), - [anon_sym_GT] = ACTIONS(7198), - [anon_sym_GT_EQ] = ACTIONS(7200), - [anon_sym_LT_EQ] = ACTIONS(7200), - [anon_sym_LT] = ACTIONS(7198), - [anon_sym_LT_LT] = ACTIONS(7200), - [anon_sym_GT_GT] = ACTIONS(7200), - [anon_sym_SEMI] = ACTIONS(7200), - [anon_sym___attribute] = ACTIONS(7198), - [anon_sym___attribute__] = ACTIONS(7198), - [anon_sym_RBRACE] = ACTIONS(7200), - [anon_sym_LBRACK] = ACTIONS(7200), - [anon_sym_RBRACK] = ACTIONS(7200), - [anon_sym_const] = ACTIONS(7198), - [anon_sym_volatile] = ACTIONS(7198), - [anon_sym_restrict] = ACTIONS(7198), - [anon_sym__Atomic] = ACTIONS(7198), - [anon_sym_in] = ACTIONS(7198), - [anon_sym_out] = ACTIONS(7198), - [anon_sym_inout] = ACTIONS(7198), - [anon_sym_bycopy] = ACTIONS(7198), - [anon_sym_byref] = ACTIONS(7198), - [anon_sym_oneway] = ACTIONS(7198), - [anon_sym__Nullable] = ACTIONS(7198), - [anon_sym__Nonnull] = ACTIONS(7198), - [anon_sym__Nullable_result] = ACTIONS(7198), - [anon_sym__Null_unspecified] = ACTIONS(7198), - [anon_sym___autoreleasing] = ACTIONS(7198), - [anon_sym___nullable] = ACTIONS(7198), - [anon_sym___nonnull] = ACTIONS(7198), - [anon_sym___strong] = ACTIONS(7198), - [anon_sym___weak] = ACTIONS(7198), - [anon_sym___bridge] = ACTIONS(7198), - [anon_sym___bridge_transfer] = ACTIONS(7198), - [anon_sym___bridge_retained] = ACTIONS(7198), - [anon_sym___unsafe_unretained] = ACTIONS(7198), - [anon_sym___block] = ACTIONS(7198), - [anon_sym___kindof] = ACTIONS(7198), - [anon_sym___unused] = ACTIONS(7198), - [anon_sym__Complex] = ACTIONS(7198), - [anon_sym___complex] = ACTIONS(7198), - [anon_sym_IBOutlet] = ACTIONS(7198), - [anon_sym_IBInspectable] = ACTIONS(7198), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7198), - [anon_sym_COLON] = ACTIONS(7200), - [anon_sym_QMARK] = ACTIONS(7200), - [anon_sym_DASH_DASH] = ACTIONS(7200), - [anon_sym_PLUS_PLUS] = ACTIONS(7200), - [anon_sym_DOT] = ACTIONS(7200), - [anon_sym_DASH_GT] = ACTIONS(7200), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7198), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7198), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7198), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7198), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7198), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7198), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7198), - [anon_sym_NS_AVAILABLE] = ACTIONS(7198), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7198), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7198), - [anon_sym_API_AVAILABLE] = ACTIONS(7198), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7198), - [anon_sym_API_DEPRECATED] = ACTIONS(7198), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7198), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7198), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7198), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7198), - [anon_sym___deprecated_msg] = ACTIONS(7198), - [anon_sym___deprecated_enum_msg] = ACTIONS(7198), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7198), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7198), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7198), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7198), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7198), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7198), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3336] = { - [sym_identifier] = ACTIONS(7150), - [anon_sym_COMMA] = ACTIONS(7152), - [anon_sym_RPAREN] = ACTIONS(7152), - [anon_sym_LPAREN2] = ACTIONS(7152), - [anon_sym_DASH] = ACTIONS(7150), - [anon_sym_PLUS] = ACTIONS(7150), - [anon_sym_STAR] = ACTIONS(7152), - [anon_sym_SLASH] = ACTIONS(7150), - [anon_sym_PERCENT] = ACTIONS(7152), - [anon_sym_PIPE_PIPE] = ACTIONS(7152), - [anon_sym_AMP_AMP] = ACTIONS(7152), - [anon_sym_PIPE] = ACTIONS(7150), - [anon_sym_CARET] = ACTIONS(7152), - [anon_sym_AMP] = ACTIONS(7150), - [anon_sym_EQ_EQ] = ACTIONS(7152), - [anon_sym_BANG_EQ] = ACTIONS(7152), - [anon_sym_GT] = ACTIONS(7150), - [anon_sym_GT_EQ] = ACTIONS(7152), - [anon_sym_LT_EQ] = ACTIONS(7152), - [anon_sym_LT] = ACTIONS(7150), - [anon_sym_LT_LT] = ACTIONS(7152), - [anon_sym_GT_GT] = ACTIONS(7152), - [anon_sym_SEMI] = ACTIONS(7152), - [anon_sym___attribute] = ACTIONS(7150), - [anon_sym___attribute__] = ACTIONS(7150), - [anon_sym_RBRACE] = ACTIONS(7152), - [anon_sym_LBRACK] = ACTIONS(7152), - [anon_sym_RBRACK] = ACTIONS(7152), - [anon_sym_const] = ACTIONS(7150), - [anon_sym_volatile] = ACTIONS(7150), - [anon_sym_restrict] = ACTIONS(7150), - [anon_sym__Atomic] = ACTIONS(7150), - [anon_sym_in] = ACTIONS(7150), - [anon_sym_out] = ACTIONS(7150), - [anon_sym_inout] = ACTIONS(7150), - [anon_sym_bycopy] = ACTIONS(7150), - [anon_sym_byref] = ACTIONS(7150), - [anon_sym_oneway] = ACTIONS(7150), - [anon_sym__Nullable] = ACTIONS(7150), - [anon_sym__Nonnull] = ACTIONS(7150), - [anon_sym__Nullable_result] = ACTIONS(7150), - [anon_sym__Null_unspecified] = ACTIONS(7150), - [anon_sym___autoreleasing] = ACTIONS(7150), - [anon_sym___nullable] = ACTIONS(7150), - [anon_sym___nonnull] = ACTIONS(7150), - [anon_sym___strong] = ACTIONS(7150), - [anon_sym___weak] = ACTIONS(7150), - [anon_sym___bridge] = ACTIONS(7150), - [anon_sym___bridge_transfer] = ACTIONS(7150), - [anon_sym___bridge_retained] = ACTIONS(7150), - [anon_sym___unsafe_unretained] = ACTIONS(7150), - [anon_sym___block] = ACTIONS(7150), - [anon_sym___kindof] = ACTIONS(7150), - [anon_sym___unused] = ACTIONS(7150), - [anon_sym__Complex] = ACTIONS(7150), - [anon_sym___complex] = ACTIONS(7150), - [anon_sym_IBOutlet] = ACTIONS(7150), - [anon_sym_IBInspectable] = ACTIONS(7150), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7150), - [anon_sym_COLON] = ACTIONS(7152), - [anon_sym_QMARK] = ACTIONS(7152), - [anon_sym_DASH_DASH] = ACTIONS(7152), - [anon_sym_PLUS_PLUS] = ACTIONS(7152), - [anon_sym_DOT] = ACTIONS(7152), - [anon_sym_DASH_GT] = ACTIONS(7152), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7150), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7150), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7150), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7150), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7150), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7150), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7150), - [anon_sym_NS_AVAILABLE] = ACTIONS(7150), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7150), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7150), - [anon_sym_API_AVAILABLE] = ACTIONS(7150), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7150), - [anon_sym_API_DEPRECATED] = ACTIONS(7150), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7150), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7150), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7150), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7150), - [anon_sym___deprecated_msg] = ACTIONS(7150), - [anon_sym___deprecated_enum_msg] = ACTIONS(7150), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7150), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7150), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7150), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7150), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7150), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7150), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3337] = { - [sym_identifier] = ACTIONS(7246), - [anon_sym_COMMA] = ACTIONS(7248), - [anon_sym_RPAREN] = ACTIONS(7248), - [anon_sym_LPAREN2] = ACTIONS(7248), - [anon_sym_DASH] = ACTIONS(7246), - [anon_sym_PLUS] = ACTIONS(7246), - [anon_sym_STAR] = ACTIONS(7248), - [anon_sym_SLASH] = ACTIONS(7246), - [anon_sym_PERCENT] = ACTIONS(7248), - [anon_sym_PIPE_PIPE] = ACTIONS(7248), - [anon_sym_AMP_AMP] = ACTIONS(7248), - [anon_sym_PIPE] = ACTIONS(7246), - [anon_sym_CARET] = ACTIONS(7248), - [anon_sym_AMP] = ACTIONS(7246), - [anon_sym_EQ_EQ] = ACTIONS(7248), - [anon_sym_BANG_EQ] = ACTIONS(7248), - [anon_sym_GT] = ACTIONS(7246), - [anon_sym_GT_EQ] = ACTIONS(7248), - [anon_sym_LT_EQ] = ACTIONS(7248), - [anon_sym_LT] = ACTIONS(7246), - [anon_sym_LT_LT] = ACTIONS(7248), - [anon_sym_GT_GT] = ACTIONS(7248), - [anon_sym_SEMI] = ACTIONS(7248), - [anon_sym___attribute] = ACTIONS(7246), - [anon_sym___attribute__] = ACTIONS(7246), - [anon_sym_RBRACE] = ACTIONS(7248), - [anon_sym_LBRACK] = ACTIONS(7248), - [anon_sym_RBRACK] = ACTIONS(7248), - [anon_sym_const] = ACTIONS(7246), - [anon_sym_volatile] = ACTIONS(7246), - [anon_sym_restrict] = ACTIONS(7246), - [anon_sym__Atomic] = ACTIONS(7246), - [anon_sym_in] = ACTIONS(7246), - [anon_sym_out] = ACTIONS(7246), - [anon_sym_inout] = ACTIONS(7246), - [anon_sym_bycopy] = ACTIONS(7246), - [anon_sym_byref] = ACTIONS(7246), - [anon_sym_oneway] = ACTIONS(7246), - [anon_sym__Nullable] = ACTIONS(7246), - [anon_sym__Nonnull] = ACTIONS(7246), - [anon_sym__Nullable_result] = ACTIONS(7246), - [anon_sym__Null_unspecified] = ACTIONS(7246), - [anon_sym___autoreleasing] = ACTIONS(7246), - [anon_sym___nullable] = ACTIONS(7246), - [anon_sym___nonnull] = ACTIONS(7246), - [anon_sym___strong] = ACTIONS(7246), - [anon_sym___weak] = ACTIONS(7246), - [anon_sym___bridge] = ACTIONS(7246), - [anon_sym___bridge_transfer] = ACTIONS(7246), - [anon_sym___bridge_retained] = ACTIONS(7246), - [anon_sym___unsafe_unretained] = ACTIONS(7246), - [anon_sym___block] = ACTIONS(7246), - [anon_sym___kindof] = ACTIONS(7246), - [anon_sym___unused] = ACTIONS(7246), - [anon_sym__Complex] = ACTIONS(7246), - [anon_sym___complex] = ACTIONS(7246), - [anon_sym_IBOutlet] = ACTIONS(7246), - [anon_sym_IBInspectable] = ACTIONS(7246), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7246), - [anon_sym_COLON] = ACTIONS(7248), - [anon_sym_QMARK] = ACTIONS(7248), - [anon_sym_DASH_DASH] = ACTIONS(7248), - [anon_sym_PLUS_PLUS] = ACTIONS(7248), - [anon_sym_DOT] = ACTIONS(7248), - [anon_sym_DASH_GT] = ACTIONS(7248), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7246), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7246), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7246), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7246), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7246), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7246), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7246), - [anon_sym_NS_AVAILABLE] = ACTIONS(7246), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7246), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7246), - [anon_sym_API_AVAILABLE] = ACTIONS(7246), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7246), - [anon_sym_API_DEPRECATED] = ACTIONS(7246), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7246), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7246), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7246), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7246), - [anon_sym___deprecated_msg] = ACTIONS(7246), - [anon_sym___deprecated_enum_msg] = ACTIONS(7246), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7246), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7246), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7246), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7246), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7246), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7246), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3338] = { - [sym_identifier] = ACTIONS(7218), - [anon_sym_COMMA] = ACTIONS(7220), - [anon_sym_RPAREN] = ACTIONS(7220), - [anon_sym_LPAREN2] = ACTIONS(7220), - [anon_sym_DASH] = ACTIONS(7218), - [anon_sym_PLUS] = ACTIONS(7218), - [anon_sym_STAR] = ACTIONS(7220), - [anon_sym_SLASH] = ACTIONS(7218), - [anon_sym_PERCENT] = ACTIONS(7220), - [anon_sym_PIPE_PIPE] = ACTIONS(7220), - [anon_sym_AMP_AMP] = ACTIONS(7220), - [anon_sym_PIPE] = ACTIONS(7218), - [anon_sym_CARET] = ACTIONS(7220), - [anon_sym_AMP] = ACTIONS(7218), - [anon_sym_EQ_EQ] = ACTIONS(7220), - [anon_sym_BANG_EQ] = ACTIONS(7220), - [anon_sym_GT] = ACTIONS(7218), - [anon_sym_GT_EQ] = ACTIONS(7220), - [anon_sym_LT_EQ] = ACTIONS(7220), - [anon_sym_LT] = ACTIONS(7218), - [anon_sym_LT_LT] = ACTIONS(7220), - [anon_sym_GT_GT] = ACTIONS(7220), - [anon_sym_SEMI] = ACTIONS(7220), - [anon_sym___attribute] = ACTIONS(7218), - [anon_sym___attribute__] = ACTIONS(7218), - [anon_sym_RBRACE] = ACTIONS(7220), - [anon_sym_LBRACK] = ACTIONS(7220), - [anon_sym_RBRACK] = ACTIONS(7220), - [anon_sym_const] = ACTIONS(7218), - [anon_sym_volatile] = ACTIONS(7218), - [anon_sym_restrict] = ACTIONS(7218), - [anon_sym__Atomic] = ACTIONS(7218), - [anon_sym_in] = ACTIONS(7218), - [anon_sym_out] = ACTIONS(7218), - [anon_sym_inout] = ACTIONS(7218), - [anon_sym_bycopy] = ACTIONS(7218), - [anon_sym_byref] = ACTIONS(7218), - [anon_sym_oneway] = ACTIONS(7218), - [anon_sym__Nullable] = ACTIONS(7218), - [anon_sym__Nonnull] = ACTIONS(7218), - [anon_sym__Nullable_result] = ACTIONS(7218), - [anon_sym__Null_unspecified] = ACTIONS(7218), - [anon_sym___autoreleasing] = ACTIONS(7218), - [anon_sym___nullable] = ACTIONS(7218), - [anon_sym___nonnull] = ACTIONS(7218), - [anon_sym___strong] = ACTIONS(7218), - [anon_sym___weak] = ACTIONS(7218), - [anon_sym___bridge] = ACTIONS(7218), - [anon_sym___bridge_transfer] = ACTIONS(7218), - [anon_sym___bridge_retained] = ACTIONS(7218), - [anon_sym___unsafe_unretained] = ACTIONS(7218), - [anon_sym___block] = ACTIONS(7218), - [anon_sym___kindof] = ACTIONS(7218), - [anon_sym___unused] = ACTIONS(7218), - [anon_sym__Complex] = ACTIONS(7218), - [anon_sym___complex] = ACTIONS(7218), - [anon_sym_IBOutlet] = ACTIONS(7218), - [anon_sym_IBInspectable] = ACTIONS(7218), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7218), - [anon_sym_COLON] = ACTIONS(7220), - [anon_sym_QMARK] = ACTIONS(7220), - [anon_sym_DASH_DASH] = ACTIONS(7220), - [anon_sym_PLUS_PLUS] = ACTIONS(7220), - [anon_sym_DOT] = ACTIONS(7220), - [anon_sym_DASH_GT] = ACTIONS(7220), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7218), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7218), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7218), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7218), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7218), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7218), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7218), - [anon_sym_NS_AVAILABLE] = ACTIONS(7218), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7218), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7218), - [anon_sym_API_AVAILABLE] = ACTIONS(7218), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7218), - [anon_sym_API_DEPRECATED] = ACTIONS(7218), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7218), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7218), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7218), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7218), - [anon_sym___deprecated_msg] = ACTIONS(7218), - [anon_sym___deprecated_enum_msg] = ACTIONS(7218), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7218), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7218), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7218), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7218), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7218), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7218), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3339] = { - [sym_identifier] = ACTIONS(7298), - [anon_sym_COMMA] = ACTIONS(7300), - [anon_sym_RPAREN] = ACTIONS(7300), - [anon_sym_LPAREN2] = ACTIONS(7300), - [anon_sym_DASH] = ACTIONS(7298), - [anon_sym_PLUS] = ACTIONS(7298), - [anon_sym_STAR] = ACTIONS(7300), - [anon_sym_SLASH] = ACTIONS(7298), - [anon_sym_PERCENT] = ACTIONS(7300), - [anon_sym_PIPE_PIPE] = ACTIONS(7300), - [anon_sym_AMP_AMP] = ACTIONS(7300), - [anon_sym_PIPE] = ACTIONS(7298), - [anon_sym_CARET] = ACTIONS(7300), - [anon_sym_AMP] = ACTIONS(7298), - [anon_sym_EQ_EQ] = ACTIONS(7300), - [anon_sym_BANG_EQ] = ACTIONS(7300), - [anon_sym_GT] = ACTIONS(7298), - [anon_sym_GT_EQ] = ACTIONS(7300), - [anon_sym_LT_EQ] = ACTIONS(7300), - [anon_sym_LT] = ACTIONS(7298), - [anon_sym_LT_LT] = ACTIONS(7300), - [anon_sym_GT_GT] = ACTIONS(7300), - [anon_sym_SEMI] = ACTIONS(7300), - [anon_sym___attribute] = ACTIONS(7298), - [anon_sym___attribute__] = ACTIONS(7298), - [anon_sym_RBRACE] = ACTIONS(7300), - [anon_sym_LBRACK] = ACTIONS(7300), - [anon_sym_RBRACK] = ACTIONS(7300), - [anon_sym_const] = ACTIONS(7298), - [anon_sym_volatile] = ACTIONS(7298), - [anon_sym_restrict] = ACTIONS(7298), - [anon_sym__Atomic] = ACTIONS(7298), - [anon_sym_in] = ACTIONS(7298), - [anon_sym_out] = ACTIONS(7298), - [anon_sym_inout] = ACTIONS(7298), - [anon_sym_bycopy] = ACTIONS(7298), - [anon_sym_byref] = ACTIONS(7298), - [anon_sym_oneway] = ACTIONS(7298), - [anon_sym__Nullable] = ACTIONS(7298), - [anon_sym__Nonnull] = ACTIONS(7298), - [anon_sym__Nullable_result] = ACTIONS(7298), - [anon_sym__Null_unspecified] = ACTIONS(7298), - [anon_sym___autoreleasing] = ACTIONS(7298), - [anon_sym___nullable] = ACTIONS(7298), - [anon_sym___nonnull] = ACTIONS(7298), - [anon_sym___strong] = ACTIONS(7298), - [anon_sym___weak] = ACTIONS(7298), - [anon_sym___bridge] = ACTIONS(7298), - [anon_sym___bridge_transfer] = ACTIONS(7298), - [anon_sym___bridge_retained] = ACTIONS(7298), - [anon_sym___unsafe_unretained] = ACTIONS(7298), - [anon_sym___block] = ACTIONS(7298), - [anon_sym___kindof] = ACTIONS(7298), - [anon_sym___unused] = ACTIONS(7298), - [anon_sym__Complex] = ACTIONS(7298), - [anon_sym___complex] = ACTIONS(7298), - [anon_sym_IBOutlet] = ACTIONS(7298), - [anon_sym_IBInspectable] = ACTIONS(7298), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7298), - [anon_sym_COLON] = ACTIONS(7300), - [anon_sym_QMARK] = ACTIONS(7300), - [anon_sym_DASH_DASH] = ACTIONS(7300), - [anon_sym_PLUS_PLUS] = ACTIONS(7300), - [anon_sym_DOT] = ACTIONS(7300), - [anon_sym_DASH_GT] = ACTIONS(7300), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7298), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7298), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7298), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7298), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7298), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7298), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7298), - [anon_sym_NS_AVAILABLE] = ACTIONS(7298), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7298), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7298), - [anon_sym_API_AVAILABLE] = ACTIONS(7298), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7298), - [anon_sym_API_DEPRECATED] = ACTIONS(7298), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7298), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7298), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7298), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7298), - [anon_sym___deprecated_msg] = ACTIONS(7298), - [anon_sym___deprecated_enum_msg] = ACTIONS(7298), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7298), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7298), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7298), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7298), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7298), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7298), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3340] = { - [sym_identifier] = ACTIONS(7226), - [anon_sym_COMMA] = ACTIONS(7228), - [anon_sym_RPAREN] = ACTIONS(7228), - [anon_sym_LPAREN2] = ACTIONS(7228), - [anon_sym_DASH] = ACTIONS(7226), - [anon_sym_PLUS] = ACTIONS(7226), - [anon_sym_STAR] = ACTIONS(7228), - [anon_sym_SLASH] = ACTIONS(7226), - [anon_sym_PERCENT] = ACTIONS(7228), - [anon_sym_PIPE_PIPE] = ACTIONS(7228), - [anon_sym_AMP_AMP] = ACTIONS(7228), - [anon_sym_PIPE] = ACTIONS(7226), - [anon_sym_CARET] = ACTIONS(7228), - [anon_sym_AMP] = ACTIONS(7226), - [anon_sym_EQ_EQ] = ACTIONS(7228), - [anon_sym_BANG_EQ] = ACTIONS(7228), - [anon_sym_GT] = ACTIONS(7226), - [anon_sym_GT_EQ] = ACTIONS(7228), - [anon_sym_LT_EQ] = ACTIONS(7228), - [anon_sym_LT] = ACTIONS(7226), - [anon_sym_LT_LT] = ACTIONS(7228), - [anon_sym_GT_GT] = ACTIONS(7228), - [anon_sym_SEMI] = ACTIONS(7228), - [anon_sym___attribute] = ACTIONS(7226), - [anon_sym___attribute__] = ACTIONS(7226), - [anon_sym_RBRACE] = ACTIONS(7228), - [anon_sym_LBRACK] = ACTIONS(7228), - [anon_sym_RBRACK] = ACTIONS(7228), - [anon_sym_const] = ACTIONS(7226), - [anon_sym_volatile] = ACTIONS(7226), - [anon_sym_restrict] = ACTIONS(7226), - [anon_sym__Atomic] = ACTIONS(7226), - [anon_sym_in] = ACTIONS(7226), - [anon_sym_out] = ACTIONS(7226), - [anon_sym_inout] = ACTIONS(7226), - [anon_sym_bycopy] = ACTIONS(7226), - [anon_sym_byref] = ACTIONS(7226), - [anon_sym_oneway] = ACTIONS(7226), - [anon_sym__Nullable] = ACTIONS(7226), - [anon_sym__Nonnull] = ACTIONS(7226), - [anon_sym__Nullable_result] = ACTIONS(7226), - [anon_sym__Null_unspecified] = ACTIONS(7226), - [anon_sym___autoreleasing] = ACTIONS(7226), - [anon_sym___nullable] = ACTIONS(7226), - [anon_sym___nonnull] = ACTIONS(7226), - [anon_sym___strong] = ACTIONS(7226), - [anon_sym___weak] = ACTIONS(7226), - [anon_sym___bridge] = ACTIONS(7226), - [anon_sym___bridge_transfer] = ACTIONS(7226), - [anon_sym___bridge_retained] = ACTIONS(7226), - [anon_sym___unsafe_unretained] = ACTIONS(7226), - [anon_sym___block] = ACTIONS(7226), - [anon_sym___kindof] = ACTIONS(7226), - [anon_sym___unused] = ACTIONS(7226), - [anon_sym__Complex] = ACTIONS(7226), - [anon_sym___complex] = ACTIONS(7226), - [anon_sym_IBOutlet] = ACTIONS(7226), - [anon_sym_IBInspectable] = ACTIONS(7226), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7226), - [anon_sym_COLON] = ACTIONS(7228), - [anon_sym_QMARK] = ACTIONS(7228), - [anon_sym_DASH_DASH] = ACTIONS(7228), - [anon_sym_PLUS_PLUS] = ACTIONS(7228), - [anon_sym_DOT] = ACTIONS(7228), - [anon_sym_DASH_GT] = ACTIONS(7228), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7226), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7226), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7226), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7226), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7226), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7226), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7226), - [anon_sym_NS_AVAILABLE] = ACTIONS(7226), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7226), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7226), - [anon_sym_API_AVAILABLE] = ACTIONS(7226), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7226), - [anon_sym_API_DEPRECATED] = ACTIONS(7226), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7226), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7226), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7226), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7226), - [anon_sym___deprecated_msg] = ACTIONS(7226), - [anon_sym___deprecated_enum_msg] = ACTIONS(7226), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7226), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7226), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7226), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7226), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7226), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7226), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3341] = { - [sym_identifier] = ACTIONS(7302), - [anon_sym_COMMA] = ACTIONS(7304), - [anon_sym_RPAREN] = ACTIONS(7304), - [anon_sym_LPAREN2] = ACTIONS(7304), - [anon_sym_DASH] = ACTIONS(7302), - [anon_sym_PLUS] = ACTIONS(7302), - [anon_sym_STAR] = ACTIONS(7304), - [anon_sym_SLASH] = ACTIONS(7302), - [anon_sym_PERCENT] = ACTIONS(7304), - [anon_sym_PIPE_PIPE] = ACTIONS(7304), - [anon_sym_AMP_AMP] = ACTIONS(7304), - [anon_sym_PIPE] = ACTIONS(7302), - [anon_sym_CARET] = ACTIONS(7304), - [anon_sym_AMP] = ACTIONS(7302), - [anon_sym_EQ_EQ] = ACTIONS(7304), - [anon_sym_BANG_EQ] = ACTIONS(7304), - [anon_sym_GT] = ACTIONS(7302), - [anon_sym_GT_EQ] = ACTIONS(7304), - [anon_sym_LT_EQ] = ACTIONS(7304), - [anon_sym_LT] = ACTIONS(7302), - [anon_sym_LT_LT] = ACTIONS(7304), - [anon_sym_GT_GT] = ACTIONS(7304), - [anon_sym_SEMI] = ACTIONS(7304), - [anon_sym___attribute] = ACTIONS(7302), - [anon_sym___attribute__] = ACTIONS(7302), - [anon_sym_RBRACE] = ACTIONS(7304), - [anon_sym_LBRACK] = ACTIONS(7304), - [anon_sym_RBRACK] = ACTIONS(7304), - [anon_sym_const] = ACTIONS(7302), - [anon_sym_volatile] = ACTIONS(7302), - [anon_sym_restrict] = ACTIONS(7302), - [anon_sym__Atomic] = ACTIONS(7302), - [anon_sym_in] = ACTIONS(7302), - [anon_sym_out] = ACTIONS(7302), - [anon_sym_inout] = ACTIONS(7302), - [anon_sym_bycopy] = ACTIONS(7302), - [anon_sym_byref] = ACTIONS(7302), - [anon_sym_oneway] = ACTIONS(7302), - [anon_sym__Nullable] = ACTIONS(7302), - [anon_sym__Nonnull] = ACTIONS(7302), - [anon_sym__Nullable_result] = ACTIONS(7302), - [anon_sym__Null_unspecified] = ACTIONS(7302), - [anon_sym___autoreleasing] = ACTIONS(7302), - [anon_sym___nullable] = ACTIONS(7302), - [anon_sym___nonnull] = ACTIONS(7302), - [anon_sym___strong] = ACTIONS(7302), - [anon_sym___weak] = ACTIONS(7302), - [anon_sym___bridge] = ACTIONS(7302), - [anon_sym___bridge_transfer] = ACTIONS(7302), - [anon_sym___bridge_retained] = ACTIONS(7302), - [anon_sym___unsafe_unretained] = ACTIONS(7302), - [anon_sym___block] = ACTIONS(7302), - [anon_sym___kindof] = ACTIONS(7302), - [anon_sym___unused] = ACTIONS(7302), - [anon_sym__Complex] = ACTIONS(7302), - [anon_sym___complex] = ACTIONS(7302), - [anon_sym_IBOutlet] = ACTIONS(7302), - [anon_sym_IBInspectable] = ACTIONS(7302), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7302), - [anon_sym_COLON] = ACTIONS(7304), - [anon_sym_QMARK] = ACTIONS(7304), - [anon_sym_DASH_DASH] = ACTIONS(7304), - [anon_sym_PLUS_PLUS] = ACTIONS(7304), - [anon_sym_DOT] = ACTIONS(7304), - [anon_sym_DASH_GT] = ACTIONS(7304), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7302), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7302), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7302), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7302), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7302), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7302), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7302), - [anon_sym_NS_AVAILABLE] = ACTIONS(7302), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7302), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7302), - [anon_sym_API_AVAILABLE] = ACTIONS(7302), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7302), - [anon_sym_API_DEPRECATED] = ACTIONS(7302), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7302), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7302), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7302), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7302), - [anon_sym___deprecated_msg] = ACTIONS(7302), - [anon_sym___deprecated_enum_msg] = ACTIONS(7302), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7302), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7302), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7302), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7302), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7302), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7302), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3342] = { - [sym_identifier] = ACTIONS(7746), - [anon_sym_extern] = ACTIONS(7746), - [anon_sym___attribute] = ACTIONS(7746), - [anon_sym___attribute__] = ACTIONS(7746), - [anon_sym___declspec] = ACTIONS(7746), - [anon_sym_RBRACE] = ACTIONS(7877), - [anon_sym_static] = ACTIONS(7746), - [anon_sym_auto] = ACTIONS(7746), - [anon_sym_register] = ACTIONS(7746), - [anon_sym_inline] = ACTIONS(7746), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7746), - [anon_sym_const] = ACTIONS(7746), - [anon_sym_volatile] = ACTIONS(7746), - [anon_sym_restrict] = ACTIONS(7746), - [anon_sym__Atomic] = ACTIONS(7746), - [anon_sym_in] = ACTIONS(7746), - [anon_sym_out] = ACTIONS(7746), - [anon_sym_inout] = ACTIONS(7746), - [anon_sym_bycopy] = ACTIONS(7746), - [anon_sym_byref] = ACTIONS(7746), - [anon_sym_oneway] = ACTIONS(7746), - [anon_sym__Nullable] = ACTIONS(7746), - [anon_sym__Nonnull] = ACTIONS(7746), - [anon_sym__Nullable_result] = ACTIONS(7746), - [anon_sym__Null_unspecified] = ACTIONS(7746), - [anon_sym___autoreleasing] = ACTIONS(7746), - [anon_sym___nullable] = ACTIONS(7746), - [anon_sym___nonnull] = ACTIONS(7746), - [anon_sym___strong] = ACTIONS(7746), - [anon_sym___weak] = ACTIONS(7746), - [anon_sym___bridge] = ACTIONS(7746), - [anon_sym___bridge_transfer] = ACTIONS(7746), - [anon_sym___bridge_retained] = ACTIONS(7746), - [anon_sym___unsafe_unretained] = ACTIONS(7746), - [anon_sym___block] = ACTIONS(7746), - [anon_sym___kindof] = ACTIONS(7746), - [anon_sym___unused] = ACTIONS(7746), - [anon_sym__Complex] = ACTIONS(7746), - [anon_sym___complex] = ACTIONS(7746), - [anon_sym_IBOutlet] = ACTIONS(7746), - [anon_sym_IBInspectable] = ACTIONS(7746), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7746), - [anon_sym_signed] = ACTIONS(7746), - [anon_sym_unsigned] = ACTIONS(7746), - [anon_sym_long] = ACTIONS(7746), - [anon_sym_short] = ACTIONS(7746), - [sym_primitive_type] = ACTIONS(7746), - [anon_sym_enum] = ACTIONS(7746), - [anon_sym_NS_ENUM] = ACTIONS(7746), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7746), - [anon_sym_NS_OPTIONS] = ACTIONS(7746), - [anon_sym_struct] = ACTIONS(7746), - [anon_sym_union] = ACTIONS(7746), - [sym_comment] = ACTIONS(3), - [sym_private] = ACTIONS(7877), - [sym_public] = ACTIONS(7877), - [sym_protected] = ACTIONS(7877), - [sym_package] = ACTIONS(7877), - [sym_method_attribute_specifier] = ACTIONS(7746), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7746), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7746), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7746), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7746), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7746), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7746), - [anon_sym_NS_AVAILABLE] = ACTIONS(7746), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7746), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7746), - [anon_sym_API_AVAILABLE] = ACTIONS(7746), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7746), - [anon_sym_API_DEPRECATED] = ACTIONS(7746), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7746), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7746), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7746), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7746), - [anon_sym___deprecated_msg] = ACTIONS(7746), - [anon_sym___deprecated_enum_msg] = ACTIONS(7746), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7746), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7746), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7746), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7746), - [anon_sym_typeof] = ACTIONS(7746), - [anon_sym___typeof] = ACTIONS(7746), - [anon_sym___typeof__] = ACTIONS(7746), - [sym_id] = ACTIONS(7746), - [sym_instancetype] = ACTIONS(7746), - [sym_Class] = ACTIONS(7746), - [sym_SEL] = ACTIONS(7746), - [sym_IMP] = ACTIONS(7746), - [sym_BOOL] = ACTIONS(7746), - [sym_auto] = ACTIONS(7746), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3343] = { - [sym_identifier] = ACTIONS(7122), - [anon_sym_COMMA] = ACTIONS(7124), - [anon_sym_RPAREN] = ACTIONS(7124), - [anon_sym_LPAREN2] = ACTIONS(7124), - [anon_sym_DASH] = ACTIONS(7122), - [anon_sym_PLUS] = ACTIONS(7122), - [anon_sym_STAR] = ACTIONS(7124), - [anon_sym_SLASH] = ACTIONS(7122), - [anon_sym_PERCENT] = ACTIONS(7124), - [anon_sym_PIPE_PIPE] = ACTIONS(7124), - [anon_sym_AMP_AMP] = ACTIONS(7124), - [anon_sym_PIPE] = ACTIONS(7122), - [anon_sym_CARET] = ACTIONS(7124), - [anon_sym_AMP] = ACTIONS(7122), - [anon_sym_EQ_EQ] = ACTIONS(7124), - [anon_sym_BANG_EQ] = ACTIONS(7124), - [anon_sym_GT] = ACTIONS(7122), - [anon_sym_GT_EQ] = ACTIONS(7124), - [anon_sym_LT_EQ] = ACTIONS(7124), - [anon_sym_LT] = ACTIONS(7122), - [anon_sym_LT_LT] = ACTIONS(7124), - [anon_sym_GT_GT] = ACTIONS(7124), - [anon_sym_SEMI] = ACTIONS(7124), - [anon_sym___attribute] = ACTIONS(7122), - [anon_sym___attribute__] = ACTIONS(7122), - [anon_sym_RBRACE] = ACTIONS(7124), - [anon_sym_LBRACK] = ACTIONS(7124), - [anon_sym_RBRACK] = ACTIONS(7124), - [anon_sym_const] = ACTIONS(7122), - [anon_sym_volatile] = ACTIONS(7122), - [anon_sym_restrict] = ACTIONS(7122), - [anon_sym__Atomic] = ACTIONS(7122), - [anon_sym_in] = ACTIONS(7122), - [anon_sym_out] = ACTIONS(7122), - [anon_sym_inout] = ACTIONS(7122), - [anon_sym_bycopy] = ACTIONS(7122), - [anon_sym_byref] = ACTIONS(7122), - [anon_sym_oneway] = ACTIONS(7122), - [anon_sym__Nullable] = ACTIONS(7122), - [anon_sym__Nonnull] = ACTIONS(7122), - [anon_sym__Nullable_result] = ACTIONS(7122), - [anon_sym__Null_unspecified] = ACTIONS(7122), - [anon_sym___autoreleasing] = ACTIONS(7122), - [anon_sym___nullable] = ACTIONS(7122), - [anon_sym___nonnull] = ACTIONS(7122), - [anon_sym___strong] = ACTIONS(7122), - [anon_sym___weak] = ACTIONS(7122), - [anon_sym___bridge] = ACTIONS(7122), - [anon_sym___bridge_transfer] = ACTIONS(7122), - [anon_sym___bridge_retained] = ACTIONS(7122), - [anon_sym___unsafe_unretained] = ACTIONS(7122), - [anon_sym___block] = ACTIONS(7122), - [anon_sym___kindof] = ACTIONS(7122), - [anon_sym___unused] = ACTIONS(7122), - [anon_sym__Complex] = ACTIONS(7122), - [anon_sym___complex] = ACTIONS(7122), - [anon_sym_IBOutlet] = ACTIONS(7122), - [anon_sym_IBInspectable] = ACTIONS(7122), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7122), - [anon_sym_COLON] = ACTIONS(7124), - [anon_sym_QMARK] = ACTIONS(7124), - [anon_sym_DASH_DASH] = ACTIONS(7124), - [anon_sym_PLUS_PLUS] = ACTIONS(7124), - [anon_sym_DOT] = ACTIONS(7124), - [anon_sym_DASH_GT] = ACTIONS(7124), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7122), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7122), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7122), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7122), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7122), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7122), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7122), - [anon_sym_NS_AVAILABLE] = ACTIONS(7122), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7122), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7122), - [anon_sym_API_AVAILABLE] = ACTIONS(7122), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7122), - [anon_sym_API_DEPRECATED] = ACTIONS(7122), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7122), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7122), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7122), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7122), - [anon_sym___deprecated_msg] = ACTIONS(7122), - [anon_sym___deprecated_enum_msg] = ACTIONS(7122), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7122), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7122), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7122), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7122), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7122), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7122), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3344] = { - [sym_identifier] = ACTIONS(7282), - [anon_sym_COMMA] = ACTIONS(7284), - [anon_sym_RPAREN] = ACTIONS(7284), - [anon_sym_LPAREN2] = ACTIONS(7284), - [anon_sym_DASH] = ACTIONS(7282), - [anon_sym_PLUS] = ACTIONS(7282), - [anon_sym_STAR] = ACTIONS(7284), - [anon_sym_SLASH] = ACTIONS(7282), - [anon_sym_PERCENT] = ACTIONS(7284), - [anon_sym_PIPE_PIPE] = ACTIONS(7284), - [anon_sym_AMP_AMP] = ACTIONS(7284), - [anon_sym_PIPE] = ACTIONS(7282), - [anon_sym_CARET] = ACTIONS(7284), - [anon_sym_AMP] = ACTIONS(7282), - [anon_sym_EQ_EQ] = ACTIONS(7284), - [anon_sym_BANG_EQ] = ACTIONS(7284), - [anon_sym_GT] = ACTIONS(7282), - [anon_sym_GT_EQ] = ACTIONS(7284), - [anon_sym_LT_EQ] = ACTIONS(7284), - [anon_sym_LT] = ACTIONS(7282), - [anon_sym_LT_LT] = ACTIONS(7284), - [anon_sym_GT_GT] = ACTIONS(7284), - [anon_sym_SEMI] = ACTIONS(7284), - [anon_sym___attribute] = ACTIONS(7282), - [anon_sym___attribute__] = ACTIONS(7282), - [anon_sym_RBRACE] = ACTIONS(7284), - [anon_sym_LBRACK] = ACTIONS(7284), - [anon_sym_RBRACK] = ACTIONS(7284), - [anon_sym_const] = ACTIONS(7282), - [anon_sym_volatile] = ACTIONS(7282), - [anon_sym_restrict] = ACTIONS(7282), - [anon_sym__Atomic] = ACTIONS(7282), - [anon_sym_in] = ACTIONS(7282), - [anon_sym_out] = ACTIONS(7282), - [anon_sym_inout] = ACTIONS(7282), - [anon_sym_bycopy] = ACTIONS(7282), - [anon_sym_byref] = ACTIONS(7282), - [anon_sym_oneway] = ACTIONS(7282), - [anon_sym__Nullable] = ACTIONS(7282), - [anon_sym__Nonnull] = ACTIONS(7282), - [anon_sym__Nullable_result] = ACTIONS(7282), - [anon_sym__Null_unspecified] = ACTIONS(7282), - [anon_sym___autoreleasing] = ACTIONS(7282), - [anon_sym___nullable] = ACTIONS(7282), - [anon_sym___nonnull] = ACTIONS(7282), - [anon_sym___strong] = ACTIONS(7282), - [anon_sym___weak] = ACTIONS(7282), - [anon_sym___bridge] = ACTIONS(7282), - [anon_sym___bridge_transfer] = ACTIONS(7282), - [anon_sym___bridge_retained] = ACTIONS(7282), - [anon_sym___unsafe_unretained] = ACTIONS(7282), - [anon_sym___block] = ACTIONS(7282), - [anon_sym___kindof] = ACTIONS(7282), - [anon_sym___unused] = ACTIONS(7282), - [anon_sym__Complex] = ACTIONS(7282), - [anon_sym___complex] = ACTIONS(7282), - [anon_sym_IBOutlet] = ACTIONS(7282), - [anon_sym_IBInspectable] = ACTIONS(7282), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7282), - [anon_sym_COLON] = ACTIONS(7284), - [anon_sym_QMARK] = ACTIONS(7284), - [anon_sym_DASH_DASH] = ACTIONS(7284), - [anon_sym_PLUS_PLUS] = ACTIONS(7284), - [anon_sym_DOT] = ACTIONS(7284), - [anon_sym_DASH_GT] = ACTIONS(7284), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7282), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7282), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7282), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7282), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7282), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7282), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7282), - [anon_sym_NS_AVAILABLE] = ACTIONS(7282), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7282), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7282), - [anon_sym_API_AVAILABLE] = ACTIONS(7282), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7282), - [anon_sym_API_DEPRECATED] = ACTIONS(7282), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7282), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7282), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7282), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7282), - [anon_sym___deprecated_msg] = ACTIONS(7282), - [anon_sym___deprecated_enum_msg] = ACTIONS(7282), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7282), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7282), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7282), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7282), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7282), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7282), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3345] = { - [sym_identifier] = ACTIONS(7222), - [anon_sym_COMMA] = ACTIONS(7224), - [anon_sym_RPAREN] = ACTIONS(7224), - [anon_sym_LPAREN2] = ACTIONS(7224), - [anon_sym_DASH] = ACTIONS(7222), - [anon_sym_PLUS] = ACTIONS(7222), - [anon_sym_STAR] = ACTIONS(7224), - [anon_sym_SLASH] = ACTIONS(7222), - [anon_sym_PERCENT] = ACTIONS(7224), - [anon_sym_PIPE_PIPE] = ACTIONS(7224), - [anon_sym_AMP_AMP] = ACTIONS(7224), - [anon_sym_PIPE] = ACTIONS(7222), - [anon_sym_CARET] = ACTIONS(7224), - [anon_sym_AMP] = ACTIONS(7222), - [anon_sym_EQ_EQ] = ACTIONS(7224), - [anon_sym_BANG_EQ] = ACTIONS(7224), - [anon_sym_GT] = ACTIONS(7222), - [anon_sym_GT_EQ] = ACTIONS(7224), - [anon_sym_LT_EQ] = ACTIONS(7224), - [anon_sym_LT] = ACTIONS(7222), - [anon_sym_LT_LT] = ACTIONS(7224), - [anon_sym_GT_GT] = ACTIONS(7224), - [anon_sym_SEMI] = ACTIONS(7224), - [anon_sym___attribute] = ACTIONS(7222), - [anon_sym___attribute__] = ACTIONS(7222), - [anon_sym_RBRACE] = ACTIONS(7224), - [anon_sym_LBRACK] = ACTIONS(7224), - [anon_sym_RBRACK] = ACTIONS(7224), - [anon_sym_const] = ACTIONS(7222), - [anon_sym_volatile] = ACTIONS(7222), - [anon_sym_restrict] = ACTIONS(7222), - [anon_sym__Atomic] = ACTIONS(7222), - [anon_sym_in] = ACTIONS(7222), - [anon_sym_out] = ACTIONS(7222), - [anon_sym_inout] = ACTIONS(7222), - [anon_sym_bycopy] = ACTIONS(7222), - [anon_sym_byref] = ACTIONS(7222), - [anon_sym_oneway] = ACTIONS(7222), - [anon_sym__Nullable] = ACTIONS(7222), - [anon_sym__Nonnull] = ACTIONS(7222), - [anon_sym__Nullable_result] = ACTIONS(7222), - [anon_sym__Null_unspecified] = ACTIONS(7222), - [anon_sym___autoreleasing] = ACTIONS(7222), - [anon_sym___nullable] = ACTIONS(7222), - [anon_sym___nonnull] = ACTIONS(7222), - [anon_sym___strong] = ACTIONS(7222), - [anon_sym___weak] = ACTIONS(7222), - [anon_sym___bridge] = ACTIONS(7222), - [anon_sym___bridge_transfer] = ACTIONS(7222), - [anon_sym___bridge_retained] = ACTIONS(7222), - [anon_sym___unsafe_unretained] = ACTIONS(7222), - [anon_sym___block] = ACTIONS(7222), - [anon_sym___kindof] = ACTIONS(7222), - [anon_sym___unused] = ACTIONS(7222), - [anon_sym__Complex] = ACTIONS(7222), - [anon_sym___complex] = ACTIONS(7222), - [anon_sym_IBOutlet] = ACTIONS(7222), - [anon_sym_IBInspectable] = ACTIONS(7222), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7222), - [anon_sym_COLON] = ACTIONS(7224), - [anon_sym_QMARK] = ACTIONS(7224), - [anon_sym_DASH_DASH] = ACTIONS(7224), - [anon_sym_PLUS_PLUS] = ACTIONS(7224), - [anon_sym_DOT] = ACTIONS(7224), - [anon_sym_DASH_GT] = ACTIONS(7224), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7222), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7222), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7222), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7222), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7222), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7222), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7222), - [anon_sym_NS_AVAILABLE] = ACTIONS(7222), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7222), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7222), - [anon_sym_API_AVAILABLE] = ACTIONS(7222), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7222), - [anon_sym_API_DEPRECATED] = ACTIONS(7222), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7222), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7222), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7222), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7222), - [anon_sym___deprecated_msg] = ACTIONS(7222), - [anon_sym___deprecated_enum_msg] = ACTIONS(7222), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7222), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7222), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7222), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7222), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7222), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7222), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3346] = { - [sym_identifier] = ACTIONS(7254), - [anon_sym_COMMA] = ACTIONS(7256), - [anon_sym_RPAREN] = ACTIONS(7256), - [anon_sym_LPAREN2] = ACTIONS(7256), - [anon_sym_DASH] = ACTIONS(7254), - [anon_sym_PLUS] = ACTIONS(7254), - [anon_sym_STAR] = ACTIONS(7256), - [anon_sym_SLASH] = ACTIONS(7254), - [anon_sym_PERCENT] = ACTIONS(7256), - [anon_sym_PIPE_PIPE] = ACTIONS(7256), - [anon_sym_AMP_AMP] = ACTIONS(7256), - [anon_sym_PIPE] = ACTIONS(7254), - [anon_sym_CARET] = ACTIONS(7256), - [anon_sym_AMP] = ACTIONS(7254), - [anon_sym_EQ_EQ] = ACTIONS(7256), - [anon_sym_BANG_EQ] = ACTIONS(7256), - [anon_sym_GT] = ACTIONS(7254), - [anon_sym_GT_EQ] = ACTIONS(7256), - [anon_sym_LT_EQ] = ACTIONS(7256), - [anon_sym_LT] = ACTIONS(7254), - [anon_sym_LT_LT] = ACTIONS(7256), - [anon_sym_GT_GT] = ACTIONS(7256), - [anon_sym_SEMI] = ACTIONS(7256), - [anon_sym___attribute] = ACTIONS(7254), - [anon_sym___attribute__] = ACTIONS(7254), - [anon_sym_RBRACE] = ACTIONS(7256), - [anon_sym_LBRACK] = ACTIONS(7256), - [anon_sym_RBRACK] = ACTIONS(7256), - [anon_sym_const] = ACTIONS(7254), - [anon_sym_volatile] = ACTIONS(7254), - [anon_sym_restrict] = ACTIONS(7254), - [anon_sym__Atomic] = ACTIONS(7254), - [anon_sym_in] = ACTIONS(7254), - [anon_sym_out] = ACTIONS(7254), - [anon_sym_inout] = ACTIONS(7254), - [anon_sym_bycopy] = ACTIONS(7254), - [anon_sym_byref] = ACTIONS(7254), - [anon_sym_oneway] = ACTIONS(7254), - [anon_sym__Nullable] = ACTIONS(7254), - [anon_sym__Nonnull] = ACTIONS(7254), - [anon_sym__Nullable_result] = ACTIONS(7254), - [anon_sym__Null_unspecified] = ACTIONS(7254), - [anon_sym___autoreleasing] = ACTIONS(7254), - [anon_sym___nullable] = ACTIONS(7254), - [anon_sym___nonnull] = ACTIONS(7254), - [anon_sym___strong] = ACTIONS(7254), - [anon_sym___weak] = ACTIONS(7254), - [anon_sym___bridge] = ACTIONS(7254), - [anon_sym___bridge_transfer] = ACTIONS(7254), - [anon_sym___bridge_retained] = ACTIONS(7254), - [anon_sym___unsafe_unretained] = ACTIONS(7254), - [anon_sym___block] = ACTIONS(7254), - [anon_sym___kindof] = ACTIONS(7254), - [anon_sym___unused] = ACTIONS(7254), - [anon_sym__Complex] = ACTIONS(7254), - [anon_sym___complex] = ACTIONS(7254), - [anon_sym_IBOutlet] = ACTIONS(7254), - [anon_sym_IBInspectable] = ACTIONS(7254), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7254), - [anon_sym_COLON] = ACTIONS(7256), - [anon_sym_QMARK] = ACTIONS(7256), - [anon_sym_DASH_DASH] = ACTIONS(7256), - [anon_sym_PLUS_PLUS] = ACTIONS(7256), - [anon_sym_DOT] = ACTIONS(7256), - [anon_sym_DASH_GT] = ACTIONS(7256), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7254), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7254), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7254), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7254), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7254), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7254), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7254), - [anon_sym_NS_AVAILABLE] = ACTIONS(7254), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7254), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7254), - [anon_sym_API_AVAILABLE] = ACTIONS(7254), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7254), - [anon_sym_API_DEPRECATED] = ACTIONS(7254), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7254), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7254), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7254), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7254), - [anon_sym___deprecated_msg] = ACTIONS(7254), - [anon_sym___deprecated_enum_msg] = ACTIONS(7254), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7254), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7254), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7254), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7254), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7254), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7254), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3347] = { - [sym_identifier] = ACTIONS(7210), - [anon_sym_COMMA] = ACTIONS(7212), - [anon_sym_RPAREN] = ACTIONS(7212), - [anon_sym_LPAREN2] = ACTIONS(7212), - [anon_sym_DASH] = ACTIONS(7210), - [anon_sym_PLUS] = ACTIONS(7210), - [anon_sym_STAR] = ACTIONS(7212), - [anon_sym_SLASH] = ACTIONS(7210), - [anon_sym_PERCENT] = ACTIONS(7212), - [anon_sym_PIPE_PIPE] = ACTIONS(7212), - [anon_sym_AMP_AMP] = ACTIONS(7212), - [anon_sym_PIPE] = ACTIONS(7210), - [anon_sym_CARET] = ACTIONS(7212), - [anon_sym_AMP] = ACTIONS(7210), - [anon_sym_EQ_EQ] = ACTIONS(7212), - [anon_sym_BANG_EQ] = ACTIONS(7212), - [anon_sym_GT] = ACTIONS(7210), - [anon_sym_GT_EQ] = ACTIONS(7212), - [anon_sym_LT_EQ] = ACTIONS(7212), - [anon_sym_LT] = ACTIONS(7210), - [anon_sym_LT_LT] = ACTIONS(7212), - [anon_sym_GT_GT] = ACTIONS(7212), - [anon_sym_SEMI] = ACTIONS(7212), - [anon_sym___attribute] = ACTIONS(7210), - [anon_sym___attribute__] = ACTIONS(7210), - [anon_sym_RBRACE] = ACTIONS(7212), - [anon_sym_LBRACK] = ACTIONS(7212), - [anon_sym_RBRACK] = ACTIONS(7212), - [anon_sym_const] = ACTIONS(7210), - [anon_sym_volatile] = ACTIONS(7210), - [anon_sym_restrict] = ACTIONS(7210), - [anon_sym__Atomic] = ACTIONS(7210), - [anon_sym_in] = ACTIONS(7210), - [anon_sym_out] = ACTIONS(7210), - [anon_sym_inout] = ACTIONS(7210), - [anon_sym_bycopy] = ACTIONS(7210), - [anon_sym_byref] = ACTIONS(7210), - [anon_sym_oneway] = ACTIONS(7210), - [anon_sym__Nullable] = ACTIONS(7210), - [anon_sym__Nonnull] = ACTIONS(7210), - [anon_sym__Nullable_result] = ACTIONS(7210), - [anon_sym__Null_unspecified] = ACTIONS(7210), - [anon_sym___autoreleasing] = ACTIONS(7210), - [anon_sym___nullable] = ACTIONS(7210), - [anon_sym___nonnull] = ACTIONS(7210), - [anon_sym___strong] = ACTIONS(7210), - [anon_sym___weak] = ACTIONS(7210), - [anon_sym___bridge] = ACTIONS(7210), - [anon_sym___bridge_transfer] = ACTIONS(7210), - [anon_sym___bridge_retained] = ACTIONS(7210), - [anon_sym___unsafe_unretained] = ACTIONS(7210), - [anon_sym___block] = ACTIONS(7210), - [anon_sym___kindof] = ACTIONS(7210), - [anon_sym___unused] = ACTIONS(7210), - [anon_sym__Complex] = ACTIONS(7210), - [anon_sym___complex] = ACTIONS(7210), - [anon_sym_IBOutlet] = ACTIONS(7210), - [anon_sym_IBInspectable] = ACTIONS(7210), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7210), - [anon_sym_COLON] = ACTIONS(7212), - [anon_sym_QMARK] = ACTIONS(7212), - [anon_sym_DASH_DASH] = ACTIONS(7212), - [anon_sym_PLUS_PLUS] = ACTIONS(7212), - [anon_sym_DOT] = ACTIONS(7212), - [anon_sym_DASH_GT] = ACTIONS(7212), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7210), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7210), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7210), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7210), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7210), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7210), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7210), - [anon_sym_NS_AVAILABLE] = ACTIONS(7210), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7210), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7210), - [anon_sym_API_AVAILABLE] = ACTIONS(7210), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7210), - [anon_sym_API_DEPRECATED] = ACTIONS(7210), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7210), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7210), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7210), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7210), - [anon_sym___deprecated_msg] = ACTIONS(7210), - [anon_sym___deprecated_enum_msg] = ACTIONS(7210), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7210), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7210), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7210), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7210), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7210), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7210), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3348] = { - [sym_identifier] = ACTIONS(7278), - [anon_sym_COMMA] = ACTIONS(7280), - [anon_sym_RPAREN] = ACTIONS(7280), - [anon_sym_LPAREN2] = ACTIONS(7280), - [anon_sym_DASH] = ACTIONS(7278), - [anon_sym_PLUS] = ACTIONS(7278), - [anon_sym_STAR] = ACTIONS(7280), - [anon_sym_SLASH] = ACTIONS(7278), - [anon_sym_PERCENT] = ACTIONS(7280), - [anon_sym_PIPE_PIPE] = ACTIONS(7280), - [anon_sym_AMP_AMP] = ACTIONS(7280), - [anon_sym_PIPE] = ACTIONS(7278), - [anon_sym_CARET] = ACTIONS(7280), - [anon_sym_AMP] = ACTIONS(7278), - [anon_sym_EQ_EQ] = ACTIONS(7280), - [anon_sym_BANG_EQ] = ACTIONS(7280), - [anon_sym_GT] = ACTIONS(7278), - [anon_sym_GT_EQ] = ACTIONS(7280), - [anon_sym_LT_EQ] = ACTIONS(7280), - [anon_sym_LT] = ACTIONS(7278), - [anon_sym_LT_LT] = ACTIONS(7280), - [anon_sym_GT_GT] = ACTIONS(7280), - [anon_sym_SEMI] = ACTIONS(7280), - [anon_sym___attribute] = ACTIONS(7278), - [anon_sym___attribute__] = ACTIONS(7278), - [anon_sym_RBRACE] = ACTIONS(7280), - [anon_sym_LBRACK] = ACTIONS(7280), - [anon_sym_RBRACK] = ACTIONS(7280), - [anon_sym_const] = ACTIONS(7278), - [anon_sym_volatile] = ACTIONS(7278), - [anon_sym_restrict] = ACTIONS(7278), - [anon_sym__Atomic] = ACTIONS(7278), - [anon_sym_in] = ACTIONS(7278), - [anon_sym_out] = ACTIONS(7278), - [anon_sym_inout] = ACTIONS(7278), - [anon_sym_bycopy] = ACTIONS(7278), - [anon_sym_byref] = ACTIONS(7278), - [anon_sym_oneway] = ACTIONS(7278), - [anon_sym__Nullable] = ACTIONS(7278), - [anon_sym__Nonnull] = ACTIONS(7278), - [anon_sym__Nullable_result] = ACTIONS(7278), - [anon_sym__Null_unspecified] = ACTIONS(7278), - [anon_sym___autoreleasing] = ACTIONS(7278), - [anon_sym___nullable] = ACTIONS(7278), - [anon_sym___nonnull] = ACTIONS(7278), - [anon_sym___strong] = ACTIONS(7278), - [anon_sym___weak] = ACTIONS(7278), - [anon_sym___bridge] = ACTIONS(7278), - [anon_sym___bridge_transfer] = ACTIONS(7278), - [anon_sym___bridge_retained] = ACTIONS(7278), - [anon_sym___unsafe_unretained] = ACTIONS(7278), - [anon_sym___block] = ACTIONS(7278), - [anon_sym___kindof] = ACTIONS(7278), - [anon_sym___unused] = ACTIONS(7278), - [anon_sym__Complex] = ACTIONS(7278), - [anon_sym___complex] = ACTIONS(7278), - [anon_sym_IBOutlet] = ACTIONS(7278), - [anon_sym_IBInspectable] = ACTIONS(7278), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7278), - [anon_sym_COLON] = ACTIONS(7280), - [anon_sym_QMARK] = ACTIONS(7280), - [anon_sym_DASH_DASH] = ACTIONS(7280), - [anon_sym_PLUS_PLUS] = ACTIONS(7280), - [anon_sym_DOT] = ACTIONS(7280), - [anon_sym_DASH_GT] = ACTIONS(7280), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7278), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7278), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7278), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7278), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7278), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7278), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7278), - [anon_sym_NS_AVAILABLE] = ACTIONS(7278), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7278), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7278), - [anon_sym_API_AVAILABLE] = ACTIONS(7278), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7278), - [anon_sym_API_DEPRECATED] = ACTIONS(7278), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7278), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7278), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7278), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7278), - [anon_sym___deprecated_msg] = ACTIONS(7278), - [anon_sym___deprecated_enum_msg] = ACTIONS(7278), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7278), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7278), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7278), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7278), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7278), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7278), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3349] = { - [sym_identifier] = ACTIONS(7274), - [anon_sym_COMMA] = ACTIONS(7276), - [anon_sym_RPAREN] = ACTIONS(7276), - [anon_sym_LPAREN2] = ACTIONS(7276), - [anon_sym_DASH] = ACTIONS(7274), - [anon_sym_PLUS] = ACTIONS(7274), - [anon_sym_STAR] = ACTIONS(7276), - [anon_sym_SLASH] = ACTIONS(7274), - [anon_sym_PERCENT] = ACTIONS(7276), - [anon_sym_PIPE_PIPE] = ACTIONS(7276), - [anon_sym_AMP_AMP] = ACTIONS(7276), - [anon_sym_PIPE] = ACTIONS(7274), - [anon_sym_CARET] = ACTIONS(7276), - [anon_sym_AMP] = ACTIONS(7274), - [anon_sym_EQ_EQ] = ACTIONS(7276), - [anon_sym_BANG_EQ] = ACTIONS(7276), - [anon_sym_GT] = ACTIONS(7274), - [anon_sym_GT_EQ] = ACTIONS(7276), - [anon_sym_LT_EQ] = ACTIONS(7276), - [anon_sym_LT] = ACTIONS(7274), - [anon_sym_LT_LT] = ACTIONS(7276), - [anon_sym_GT_GT] = ACTIONS(7276), - [anon_sym_SEMI] = ACTIONS(7276), - [anon_sym___attribute] = ACTIONS(7274), - [anon_sym___attribute__] = ACTIONS(7274), - [anon_sym_RBRACE] = ACTIONS(7276), - [anon_sym_LBRACK] = ACTIONS(7276), - [anon_sym_RBRACK] = ACTIONS(7276), - [anon_sym_const] = ACTIONS(7274), - [anon_sym_volatile] = ACTIONS(7274), - [anon_sym_restrict] = ACTIONS(7274), - [anon_sym__Atomic] = ACTIONS(7274), - [anon_sym_in] = ACTIONS(7274), - [anon_sym_out] = ACTIONS(7274), - [anon_sym_inout] = ACTIONS(7274), - [anon_sym_bycopy] = ACTIONS(7274), - [anon_sym_byref] = ACTIONS(7274), - [anon_sym_oneway] = ACTIONS(7274), - [anon_sym__Nullable] = ACTIONS(7274), - [anon_sym__Nonnull] = ACTIONS(7274), - [anon_sym__Nullable_result] = ACTIONS(7274), - [anon_sym__Null_unspecified] = ACTIONS(7274), - [anon_sym___autoreleasing] = ACTIONS(7274), - [anon_sym___nullable] = ACTIONS(7274), - [anon_sym___nonnull] = ACTIONS(7274), - [anon_sym___strong] = ACTIONS(7274), - [anon_sym___weak] = ACTIONS(7274), - [anon_sym___bridge] = ACTIONS(7274), - [anon_sym___bridge_transfer] = ACTIONS(7274), - [anon_sym___bridge_retained] = ACTIONS(7274), - [anon_sym___unsafe_unretained] = ACTIONS(7274), - [anon_sym___block] = ACTIONS(7274), - [anon_sym___kindof] = ACTIONS(7274), - [anon_sym___unused] = ACTIONS(7274), - [anon_sym__Complex] = ACTIONS(7274), - [anon_sym___complex] = ACTIONS(7274), - [anon_sym_IBOutlet] = ACTIONS(7274), - [anon_sym_IBInspectable] = ACTIONS(7274), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7274), - [anon_sym_COLON] = ACTIONS(7276), - [anon_sym_QMARK] = ACTIONS(7276), - [anon_sym_DASH_DASH] = ACTIONS(7276), - [anon_sym_PLUS_PLUS] = ACTIONS(7276), - [anon_sym_DOT] = ACTIONS(7276), - [anon_sym_DASH_GT] = ACTIONS(7276), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7274), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7274), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7274), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7274), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7274), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7274), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7274), - [anon_sym_NS_AVAILABLE] = ACTIONS(7274), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7274), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7274), - [anon_sym_API_AVAILABLE] = ACTIONS(7274), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7274), - [anon_sym_API_DEPRECATED] = ACTIONS(7274), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7274), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7274), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7274), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7274), - [anon_sym___deprecated_msg] = ACTIONS(7274), - [anon_sym___deprecated_enum_msg] = ACTIONS(7274), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7274), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7274), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7274), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7274), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7274), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7274), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3350] = { - [sym_identifier] = ACTIONS(7736), - [anon_sym_extern] = ACTIONS(7736), - [anon_sym___attribute] = ACTIONS(7736), - [anon_sym___attribute__] = ACTIONS(7736), - [anon_sym___declspec] = ACTIONS(7736), - [anon_sym_RBRACE] = ACTIONS(7845), - [anon_sym_static] = ACTIONS(7736), - [anon_sym_auto] = ACTIONS(7736), - [anon_sym_register] = ACTIONS(7736), - [anon_sym_inline] = ACTIONS(7736), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7736), - [anon_sym_const] = ACTIONS(7736), - [anon_sym_volatile] = ACTIONS(7736), - [anon_sym_restrict] = ACTIONS(7736), - [anon_sym__Atomic] = ACTIONS(7736), - [anon_sym_in] = ACTIONS(7736), - [anon_sym_out] = ACTIONS(7736), - [anon_sym_inout] = ACTIONS(7736), - [anon_sym_bycopy] = ACTIONS(7736), - [anon_sym_byref] = ACTIONS(7736), - [anon_sym_oneway] = ACTIONS(7736), - [anon_sym__Nullable] = ACTIONS(7736), - [anon_sym__Nonnull] = ACTIONS(7736), - [anon_sym__Nullable_result] = ACTIONS(7736), - [anon_sym__Null_unspecified] = ACTIONS(7736), - [anon_sym___autoreleasing] = ACTIONS(7736), - [anon_sym___nullable] = ACTIONS(7736), - [anon_sym___nonnull] = ACTIONS(7736), - [anon_sym___strong] = ACTIONS(7736), - [anon_sym___weak] = ACTIONS(7736), - [anon_sym___bridge] = ACTIONS(7736), - [anon_sym___bridge_transfer] = ACTIONS(7736), - [anon_sym___bridge_retained] = ACTIONS(7736), - [anon_sym___unsafe_unretained] = ACTIONS(7736), - [anon_sym___block] = ACTIONS(7736), - [anon_sym___kindof] = ACTIONS(7736), - [anon_sym___unused] = ACTIONS(7736), - [anon_sym__Complex] = ACTIONS(7736), - [anon_sym___complex] = ACTIONS(7736), - [anon_sym_IBOutlet] = ACTIONS(7736), - [anon_sym_IBInspectable] = ACTIONS(7736), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7736), - [anon_sym_signed] = ACTIONS(7736), - [anon_sym_unsigned] = ACTIONS(7736), - [anon_sym_long] = ACTIONS(7736), - [anon_sym_short] = ACTIONS(7736), - [sym_primitive_type] = ACTIONS(7736), - [anon_sym_enum] = ACTIONS(7736), - [anon_sym_NS_ENUM] = ACTIONS(7736), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7736), - [anon_sym_NS_OPTIONS] = ACTIONS(7736), - [anon_sym_struct] = ACTIONS(7736), - [anon_sym_union] = ACTIONS(7736), - [sym_comment] = ACTIONS(3), - [sym_private] = ACTIONS(7845), - [sym_public] = ACTIONS(7845), - [sym_protected] = ACTIONS(7845), - [sym_package] = ACTIONS(7845), - [sym_method_attribute_specifier] = ACTIONS(7736), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7736), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7736), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7736), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7736), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7736), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7736), - [anon_sym_NS_AVAILABLE] = ACTIONS(7736), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7736), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7736), - [anon_sym_API_AVAILABLE] = ACTIONS(7736), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7736), - [anon_sym_API_DEPRECATED] = ACTIONS(7736), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7736), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7736), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7736), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7736), - [anon_sym___deprecated_msg] = ACTIONS(7736), - [anon_sym___deprecated_enum_msg] = ACTIONS(7736), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7736), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7736), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7736), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7736), - [anon_sym_typeof] = ACTIONS(7736), - [anon_sym___typeof] = ACTIONS(7736), - [anon_sym___typeof__] = ACTIONS(7736), - [sym_id] = ACTIONS(7736), - [sym_instancetype] = ACTIONS(7736), - [sym_Class] = ACTIONS(7736), - [sym_SEL] = ACTIONS(7736), - [sym_IMP] = ACTIONS(7736), - [sym_BOOL] = ACTIONS(7736), - [sym_auto] = ACTIONS(7736), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3351] = { - [sym_identifier] = ACTIONS(6820), - [anon_sym_COMMA] = ACTIONS(6822), - [anon_sym_RPAREN] = ACTIONS(6822), - [anon_sym_LPAREN2] = ACTIONS(6822), - [anon_sym_DASH] = ACTIONS(6820), - [anon_sym_PLUS] = ACTIONS(6820), - [anon_sym_STAR] = ACTIONS(6822), - [anon_sym_SLASH] = ACTIONS(6820), - [anon_sym_PERCENT] = ACTIONS(6822), - [anon_sym_PIPE_PIPE] = ACTIONS(6822), - [anon_sym_AMP_AMP] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6822), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_EQ_EQ] = ACTIONS(6822), - [anon_sym_BANG_EQ] = ACTIONS(6822), - [anon_sym_GT] = ACTIONS(6820), - [anon_sym_GT_EQ] = ACTIONS(6822), - [anon_sym_LT_EQ] = ACTIONS(6822), - [anon_sym_LT] = ACTIONS(6820), - [anon_sym_LT_LT] = ACTIONS(6822), - [anon_sym_GT_GT] = ACTIONS(6822), - [anon_sym_SEMI] = ACTIONS(6822), - [anon_sym___attribute] = ACTIONS(6820), - [anon_sym___attribute__] = ACTIONS(6820), - [anon_sym_RBRACE] = ACTIONS(6822), - [anon_sym_LBRACK] = ACTIONS(6822), - [anon_sym_RBRACK] = ACTIONS(6822), - [anon_sym_const] = ACTIONS(6820), - [anon_sym_volatile] = ACTIONS(6820), - [anon_sym_restrict] = ACTIONS(6820), - [anon_sym__Atomic] = ACTIONS(6820), - [anon_sym_in] = ACTIONS(6820), - [anon_sym_out] = ACTIONS(6820), - [anon_sym_inout] = ACTIONS(6820), - [anon_sym_bycopy] = ACTIONS(6820), - [anon_sym_byref] = ACTIONS(6820), - [anon_sym_oneway] = ACTIONS(6820), - [anon_sym__Nullable] = ACTIONS(6820), - [anon_sym__Nonnull] = ACTIONS(6820), - [anon_sym__Nullable_result] = ACTIONS(6820), - [anon_sym__Null_unspecified] = ACTIONS(6820), - [anon_sym___autoreleasing] = ACTIONS(6820), - [anon_sym___nullable] = ACTIONS(6820), - [anon_sym___nonnull] = ACTIONS(6820), - [anon_sym___strong] = ACTIONS(6820), - [anon_sym___weak] = ACTIONS(6820), - [anon_sym___bridge] = ACTIONS(6820), - [anon_sym___bridge_transfer] = ACTIONS(6820), - [anon_sym___bridge_retained] = ACTIONS(6820), - [anon_sym___unsafe_unretained] = ACTIONS(6820), - [anon_sym___block] = ACTIONS(6820), - [anon_sym___kindof] = ACTIONS(6820), - [anon_sym___unused] = ACTIONS(6820), - [anon_sym__Complex] = ACTIONS(6820), - [anon_sym___complex] = ACTIONS(6820), - [anon_sym_IBOutlet] = ACTIONS(6820), - [anon_sym_IBInspectable] = ACTIONS(6820), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6820), - [anon_sym_COLON] = ACTIONS(6822), - [anon_sym_QMARK] = ACTIONS(6822), - [anon_sym_DASH_DASH] = ACTIONS(6822), - [anon_sym_PLUS_PLUS] = ACTIONS(6822), - [anon_sym_DOT] = ACTIONS(6822), - [anon_sym_DASH_GT] = ACTIONS(6822), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6820), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6820), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6820), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6820), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6820), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6820), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6820), - [anon_sym_NS_AVAILABLE] = ACTIONS(6820), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6820), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_API_AVAILABLE] = ACTIONS(6820), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6820), - [anon_sym_API_DEPRECATED] = ACTIONS(6820), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6820), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6820), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6820), - [anon_sym___deprecated_msg] = ACTIONS(6820), - [anon_sym___deprecated_enum_msg] = ACTIONS(6820), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6820), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6820), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6820), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6820), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(6820), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3352] = { - [sym_identifier] = ACTIONS(7270), - [anon_sym_COMMA] = ACTIONS(7272), - [anon_sym_RPAREN] = ACTIONS(7272), - [anon_sym_LPAREN2] = ACTIONS(7272), - [anon_sym_DASH] = ACTIONS(7270), - [anon_sym_PLUS] = ACTIONS(7270), - [anon_sym_STAR] = ACTIONS(7272), - [anon_sym_SLASH] = ACTIONS(7270), - [anon_sym_PERCENT] = ACTIONS(7272), - [anon_sym_PIPE_PIPE] = ACTIONS(7272), - [anon_sym_AMP_AMP] = ACTIONS(7272), - [anon_sym_PIPE] = ACTIONS(7270), - [anon_sym_CARET] = ACTIONS(7272), - [anon_sym_AMP] = ACTIONS(7270), - [anon_sym_EQ_EQ] = ACTIONS(7272), - [anon_sym_BANG_EQ] = ACTIONS(7272), - [anon_sym_GT] = ACTIONS(7270), - [anon_sym_GT_EQ] = ACTIONS(7272), - [anon_sym_LT_EQ] = ACTIONS(7272), - [anon_sym_LT] = ACTIONS(7270), - [anon_sym_LT_LT] = ACTIONS(7272), - [anon_sym_GT_GT] = ACTIONS(7272), - [anon_sym_SEMI] = ACTIONS(7272), - [anon_sym___attribute] = ACTIONS(7270), - [anon_sym___attribute__] = ACTIONS(7270), - [anon_sym_RBRACE] = ACTIONS(7272), - [anon_sym_LBRACK] = ACTIONS(7272), - [anon_sym_RBRACK] = ACTIONS(7272), - [anon_sym_const] = ACTIONS(7270), - [anon_sym_volatile] = ACTIONS(7270), - [anon_sym_restrict] = ACTIONS(7270), - [anon_sym__Atomic] = ACTIONS(7270), - [anon_sym_in] = ACTIONS(7270), - [anon_sym_out] = ACTIONS(7270), - [anon_sym_inout] = ACTIONS(7270), - [anon_sym_bycopy] = ACTIONS(7270), - [anon_sym_byref] = ACTIONS(7270), - [anon_sym_oneway] = ACTIONS(7270), - [anon_sym__Nullable] = ACTIONS(7270), - [anon_sym__Nonnull] = ACTIONS(7270), - [anon_sym__Nullable_result] = ACTIONS(7270), - [anon_sym__Null_unspecified] = ACTIONS(7270), - [anon_sym___autoreleasing] = ACTIONS(7270), - [anon_sym___nullable] = ACTIONS(7270), - [anon_sym___nonnull] = ACTIONS(7270), - [anon_sym___strong] = ACTIONS(7270), - [anon_sym___weak] = ACTIONS(7270), - [anon_sym___bridge] = ACTIONS(7270), - [anon_sym___bridge_transfer] = ACTIONS(7270), - [anon_sym___bridge_retained] = ACTIONS(7270), - [anon_sym___unsafe_unretained] = ACTIONS(7270), - [anon_sym___block] = ACTIONS(7270), - [anon_sym___kindof] = ACTIONS(7270), - [anon_sym___unused] = ACTIONS(7270), - [anon_sym__Complex] = ACTIONS(7270), - [anon_sym___complex] = ACTIONS(7270), - [anon_sym_IBOutlet] = ACTIONS(7270), - [anon_sym_IBInspectable] = ACTIONS(7270), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7270), - [anon_sym_COLON] = ACTIONS(7272), - [anon_sym_QMARK] = ACTIONS(7272), - [anon_sym_DASH_DASH] = ACTIONS(7272), - [anon_sym_PLUS_PLUS] = ACTIONS(7272), - [anon_sym_DOT] = ACTIONS(7272), - [anon_sym_DASH_GT] = ACTIONS(7272), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7270), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7270), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7270), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7270), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7270), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7270), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7270), - [anon_sym_NS_AVAILABLE] = ACTIONS(7270), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7270), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7270), - [anon_sym_API_AVAILABLE] = ACTIONS(7270), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7270), - [anon_sym_API_DEPRECATED] = ACTIONS(7270), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7270), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7270), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7270), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7270), - [anon_sym___deprecated_msg] = ACTIONS(7270), - [anon_sym___deprecated_enum_msg] = ACTIONS(7270), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7270), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7270), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7270), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7270), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7270), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7270), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3353] = { - [sym_identifier] = ACTIONS(7206), - [anon_sym_COMMA] = ACTIONS(7208), - [anon_sym_RPAREN] = ACTIONS(7208), - [anon_sym_LPAREN2] = ACTIONS(7208), - [anon_sym_DASH] = ACTIONS(7206), - [anon_sym_PLUS] = ACTIONS(7206), - [anon_sym_STAR] = ACTIONS(7208), - [anon_sym_SLASH] = ACTIONS(7206), - [anon_sym_PERCENT] = ACTIONS(7208), - [anon_sym_PIPE_PIPE] = ACTIONS(7208), - [anon_sym_AMP_AMP] = ACTIONS(7208), - [anon_sym_PIPE] = ACTIONS(7206), - [anon_sym_CARET] = ACTIONS(7208), - [anon_sym_AMP] = ACTIONS(7206), - [anon_sym_EQ_EQ] = ACTIONS(7208), - [anon_sym_BANG_EQ] = ACTIONS(7208), - [anon_sym_GT] = ACTIONS(7206), - [anon_sym_GT_EQ] = ACTIONS(7208), - [anon_sym_LT_EQ] = ACTIONS(7208), - [anon_sym_LT] = ACTIONS(7206), - [anon_sym_LT_LT] = ACTIONS(7208), - [anon_sym_GT_GT] = ACTIONS(7208), - [anon_sym_SEMI] = ACTIONS(7208), - [anon_sym___attribute] = ACTIONS(7206), - [anon_sym___attribute__] = ACTIONS(7206), - [anon_sym_RBRACE] = ACTIONS(7208), - [anon_sym_LBRACK] = ACTIONS(7208), - [anon_sym_RBRACK] = ACTIONS(7208), - [anon_sym_const] = ACTIONS(7206), - [anon_sym_volatile] = ACTIONS(7206), - [anon_sym_restrict] = ACTIONS(7206), - [anon_sym__Atomic] = ACTIONS(7206), - [anon_sym_in] = ACTIONS(7206), - [anon_sym_out] = ACTIONS(7206), - [anon_sym_inout] = ACTIONS(7206), - [anon_sym_bycopy] = ACTIONS(7206), - [anon_sym_byref] = ACTIONS(7206), - [anon_sym_oneway] = ACTIONS(7206), - [anon_sym__Nullable] = ACTIONS(7206), - [anon_sym__Nonnull] = ACTIONS(7206), - [anon_sym__Nullable_result] = ACTIONS(7206), - [anon_sym__Null_unspecified] = ACTIONS(7206), - [anon_sym___autoreleasing] = ACTIONS(7206), - [anon_sym___nullable] = ACTIONS(7206), - [anon_sym___nonnull] = ACTIONS(7206), - [anon_sym___strong] = ACTIONS(7206), - [anon_sym___weak] = ACTIONS(7206), - [anon_sym___bridge] = ACTIONS(7206), - [anon_sym___bridge_transfer] = ACTIONS(7206), - [anon_sym___bridge_retained] = ACTIONS(7206), - [anon_sym___unsafe_unretained] = ACTIONS(7206), - [anon_sym___block] = ACTIONS(7206), - [anon_sym___kindof] = ACTIONS(7206), - [anon_sym___unused] = ACTIONS(7206), - [anon_sym__Complex] = ACTIONS(7206), - [anon_sym___complex] = ACTIONS(7206), - [anon_sym_IBOutlet] = ACTIONS(7206), - [anon_sym_IBInspectable] = ACTIONS(7206), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7206), - [anon_sym_COLON] = ACTIONS(7208), - [anon_sym_QMARK] = ACTIONS(7208), - [anon_sym_DASH_DASH] = ACTIONS(7208), - [anon_sym_PLUS_PLUS] = ACTIONS(7208), - [anon_sym_DOT] = ACTIONS(7208), - [anon_sym_DASH_GT] = ACTIONS(7208), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7206), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7206), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7206), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7206), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7206), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7206), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7206), - [anon_sym_NS_AVAILABLE] = ACTIONS(7206), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7206), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7206), - [anon_sym_API_AVAILABLE] = ACTIONS(7206), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7206), - [anon_sym_API_DEPRECATED] = ACTIONS(7206), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7206), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7206), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7206), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7206), - [anon_sym___deprecated_msg] = ACTIONS(7206), - [anon_sym___deprecated_enum_msg] = ACTIONS(7206), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7206), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7206), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7206), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7206), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7206), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7206), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3354] = { - [sym_identifier] = ACTIONS(7266), - [anon_sym_COMMA] = ACTIONS(7268), - [anon_sym_RPAREN] = ACTIONS(7268), - [anon_sym_LPAREN2] = ACTIONS(7268), - [anon_sym_DASH] = ACTIONS(7266), - [anon_sym_PLUS] = ACTIONS(7266), - [anon_sym_STAR] = ACTIONS(7268), - [anon_sym_SLASH] = ACTIONS(7266), - [anon_sym_PERCENT] = ACTIONS(7268), - [anon_sym_PIPE_PIPE] = ACTIONS(7268), - [anon_sym_AMP_AMP] = ACTIONS(7268), - [anon_sym_PIPE] = ACTIONS(7266), - [anon_sym_CARET] = ACTIONS(7268), - [anon_sym_AMP] = ACTIONS(7266), - [anon_sym_EQ_EQ] = ACTIONS(7268), - [anon_sym_BANG_EQ] = ACTIONS(7268), - [anon_sym_GT] = ACTIONS(7266), - [anon_sym_GT_EQ] = ACTIONS(7268), - [anon_sym_LT_EQ] = ACTIONS(7268), - [anon_sym_LT] = ACTIONS(7266), - [anon_sym_LT_LT] = ACTIONS(7268), - [anon_sym_GT_GT] = ACTIONS(7268), - [anon_sym_SEMI] = ACTIONS(7268), - [anon_sym___attribute] = ACTIONS(7266), - [anon_sym___attribute__] = ACTIONS(7266), - [anon_sym_RBRACE] = ACTIONS(7268), - [anon_sym_LBRACK] = ACTIONS(7268), - [anon_sym_RBRACK] = ACTIONS(7268), - [anon_sym_const] = ACTIONS(7266), - [anon_sym_volatile] = ACTIONS(7266), - [anon_sym_restrict] = ACTIONS(7266), - [anon_sym__Atomic] = ACTIONS(7266), - [anon_sym_in] = ACTIONS(7266), - [anon_sym_out] = ACTIONS(7266), - [anon_sym_inout] = ACTIONS(7266), - [anon_sym_bycopy] = ACTIONS(7266), - [anon_sym_byref] = ACTIONS(7266), - [anon_sym_oneway] = ACTIONS(7266), - [anon_sym__Nullable] = ACTIONS(7266), - [anon_sym__Nonnull] = ACTIONS(7266), - [anon_sym__Nullable_result] = ACTIONS(7266), - [anon_sym__Null_unspecified] = ACTIONS(7266), - [anon_sym___autoreleasing] = ACTIONS(7266), - [anon_sym___nullable] = ACTIONS(7266), - [anon_sym___nonnull] = ACTIONS(7266), - [anon_sym___strong] = ACTIONS(7266), - [anon_sym___weak] = ACTIONS(7266), - [anon_sym___bridge] = ACTIONS(7266), - [anon_sym___bridge_transfer] = ACTIONS(7266), - [anon_sym___bridge_retained] = ACTIONS(7266), - [anon_sym___unsafe_unretained] = ACTIONS(7266), - [anon_sym___block] = ACTIONS(7266), - [anon_sym___kindof] = ACTIONS(7266), - [anon_sym___unused] = ACTIONS(7266), - [anon_sym__Complex] = ACTIONS(7266), - [anon_sym___complex] = ACTIONS(7266), - [anon_sym_IBOutlet] = ACTIONS(7266), - [anon_sym_IBInspectable] = ACTIONS(7266), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7266), - [anon_sym_COLON] = ACTIONS(7268), - [anon_sym_QMARK] = ACTIONS(7268), - [anon_sym_DASH_DASH] = ACTIONS(7268), - [anon_sym_PLUS_PLUS] = ACTIONS(7268), - [anon_sym_DOT] = ACTIONS(7268), - [anon_sym_DASH_GT] = ACTIONS(7268), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7266), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7266), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7266), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7266), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7266), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7266), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7266), - [anon_sym_NS_AVAILABLE] = ACTIONS(7266), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7266), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7266), - [anon_sym_API_AVAILABLE] = ACTIONS(7266), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7266), - [anon_sym_API_DEPRECATED] = ACTIONS(7266), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7266), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7266), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7266), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7266), - [anon_sym___deprecated_msg] = ACTIONS(7266), - [anon_sym___deprecated_enum_msg] = ACTIONS(7266), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7266), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7266), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7266), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7266), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7266), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7266), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3355] = { - [sym_identifier] = ACTIONS(7738), - [anon_sym_extern] = ACTIONS(7738), - [anon_sym___attribute] = ACTIONS(7738), - [anon_sym___attribute__] = ACTIONS(7738), - [anon_sym___declspec] = ACTIONS(7738), - [anon_sym_RBRACE] = ACTIONS(7889), - [anon_sym_static] = ACTIONS(7738), - [anon_sym_auto] = ACTIONS(7738), - [anon_sym_register] = ACTIONS(7738), - [anon_sym_inline] = ACTIONS(7738), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7738), - [anon_sym_const] = ACTIONS(7738), - [anon_sym_volatile] = ACTIONS(7738), - [anon_sym_restrict] = ACTIONS(7738), - [anon_sym__Atomic] = ACTIONS(7738), - [anon_sym_in] = ACTIONS(7738), - [anon_sym_out] = ACTIONS(7738), - [anon_sym_inout] = ACTIONS(7738), - [anon_sym_bycopy] = ACTIONS(7738), - [anon_sym_byref] = ACTIONS(7738), - [anon_sym_oneway] = ACTIONS(7738), - [anon_sym__Nullable] = ACTIONS(7738), - [anon_sym__Nonnull] = ACTIONS(7738), - [anon_sym__Nullable_result] = ACTIONS(7738), - [anon_sym__Null_unspecified] = ACTIONS(7738), - [anon_sym___autoreleasing] = ACTIONS(7738), - [anon_sym___nullable] = ACTIONS(7738), - [anon_sym___nonnull] = ACTIONS(7738), - [anon_sym___strong] = ACTIONS(7738), - [anon_sym___weak] = ACTIONS(7738), - [anon_sym___bridge] = ACTIONS(7738), - [anon_sym___bridge_transfer] = ACTIONS(7738), - [anon_sym___bridge_retained] = ACTIONS(7738), - [anon_sym___unsafe_unretained] = ACTIONS(7738), - [anon_sym___block] = ACTIONS(7738), - [anon_sym___kindof] = ACTIONS(7738), - [anon_sym___unused] = ACTIONS(7738), - [anon_sym__Complex] = ACTIONS(7738), - [anon_sym___complex] = ACTIONS(7738), - [anon_sym_IBOutlet] = ACTIONS(7738), - [anon_sym_IBInspectable] = ACTIONS(7738), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7738), - [anon_sym_signed] = ACTIONS(7738), - [anon_sym_unsigned] = ACTIONS(7738), - [anon_sym_long] = ACTIONS(7738), - [anon_sym_short] = ACTIONS(7738), - [sym_primitive_type] = ACTIONS(7738), - [anon_sym_enum] = ACTIONS(7738), - [anon_sym_NS_ENUM] = ACTIONS(7738), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7738), - [anon_sym_NS_OPTIONS] = ACTIONS(7738), - [anon_sym_struct] = ACTIONS(7738), - [anon_sym_union] = ACTIONS(7738), - [sym_comment] = ACTIONS(3), - [sym_private] = ACTIONS(7889), - [sym_public] = ACTIONS(7889), - [sym_protected] = ACTIONS(7889), - [sym_package] = ACTIONS(7889), - [sym_method_attribute_specifier] = ACTIONS(7738), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7738), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7738), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7738), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7738), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7738), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7738), - [anon_sym_NS_AVAILABLE] = ACTIONS(7738), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7738), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7738), - [anon_sym_API_AVAILABLE] = ACTIONS(7738), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7738), - [anon_sym_API_DEPRECATED] = ACTIONS(7738), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7738), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7738), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7738), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7738), - [anon_sym___deprecated_msg] = ACTIONS(7738), - [anon_sym___deprecated_enum_msg] = ACTIONS(7738), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7738), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7738), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7738), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7738), - [anon_sym_typeof] = ACTIONS(7738), - [anon_sym___typeof] = ACTIONS(7738), - [anon_sym___typeof__] = ACTIONS(7738), - [sym_id] = ACTIONS(7738), - [sym_instancetype] = ACTIONS(7738), - [sym_Class] = ACTIONS(7738), - [sym_SEL] = ACTIONS(7738), - [sym_IMP] = ACTIONS(7738), - [sym_BOOL] = ACTIONS(7738), - [sym_auto] = ACTIONS(7738), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3356] = { - [sym_identifier] = ACTIONS(1707), - [anon_sym_COMMA] = ACTIONS(1705), - [anon_sym_RPAREN] = ACTIONS(1705), - [anon_sym_LPAREN2] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1705), - [anon_sym_SLASH] = ACTIONS(1707), - [anon_sym_PERCENT] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_CARET] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_EQ_EQ] = ACTIONS(1705), - [anon_sym_BANG_EQ] = ACTIONS(1705), - [anon_sym_GT] = ACTIONS(1707), - [anon_sym_GT_EQ] = ACTIONS(1705), - [anon_sym_LT_EQ] = ACTIONS(1705), - [anon_sym_LT] = ACTIONS(1707), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym___attribute] = ACTIONS(1707), - [anon_sym___attribute__] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_RBRACK] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_volatile] = ACTIONS(1707), - [anon_sym_restrict] = ACTIONS(1707), - [anon_sym__Atomic] = ACTIONS(1707), - [anon_sym_in] = ACTIONS(1707), - [anon_sym_out] = ACTIONS(1707), - [anon_sym_inout] = ACTIONS(1707), - [anon_sym_bycopy] = ACTIONS(1707), - [anon_sym_byref] = ACTIONS(1707), - [anon_sym_oneway] = ACTIONS(1707), - [anon_sym__Nullable] = ACTIONS(1707), - [anon_sym__Nonnull] = ACTIONS(1707), - [anon_sym__Nullable_result] = ACTIONS(1707), - [anon_sym__Null_unspecified] = ACTIONS(1707), - [anon_sym___autoreleasing] = ACTIONS(1707), - [anon_sym___nullable] = ACTIONS(1707), - [anon_sym___nonnull] = ACTIONS(1707), - [anon_sym___strong] = ACTIONS(1707), - [anon_sym___weak] = ACTIONS(1707), - [anon_sym___bridge] = ACTIONS(1707), - [anon_sym___bridge_transfer] = ACTIONS(1707), - [anon_sym___bridge_retained] = ACTIONS(1707), - [anon_sym___unsafe_unretained] = ACTIONS(1707), - [anon_sym___block] = ACTIONS(1707), - [anon_sym___kindof] = ACTIONS(1707), - [anon_sym___unused] = ACTIONS(1707), - [anon_sym__Complex] = ACTIONS(1707), - [anon_sym___complex] = ACTIONS(1707), - [anon_sym_IBOutlet] = ACTIONS(1707), - [anon_sym_IBInspectable] = ACTIONS(1707), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1707), - [anon_sym_COLON] = ACTIONS(1705), - [anon_sym_QMARK] = ACTIONS(1705), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [anon_sym_PLUS_PLUS] = ACTIONS(1705), - [anon_sym_DOT] = ACTIONS(1705), - [anon_sym_DASH_GT] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(1707), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1707), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1707), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(1707), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1707), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1707), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1707), - [anon_sym_NS_AVAILABLE] = ACTIONS(1707), - [anon_sym___IOS_AVAILABLE] = ACTIONS(1707), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_API_AVAILABLE] = ACTIONS(1707), - [anon_sym_API_UNAVAILABLE] = ACTIONS(1707), - [anon_sym_API_DEPRECATED] = ACTIONS(1707), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1707), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1707), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1707), - [anon_sym___deprecated_msg] = ACTIONS(1707), - [anon_sym___deprecated_enum_msg] = ACTIONS(1707), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1707), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1707), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1707), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1707), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(1707), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3357] = { - [sym_identifier] = ACTIONS(7250), - [anon_sym_COMMA] = ACTIONS(7252), - [anon_sym_RPAREN] = ACTIONS(7252), - [anon_sym_LPAREN2] = ACTIONS(7252), - [anon_sym_DASH] = ACTIONS(7250), - [anon_sym_PLUS] = ACTIONS(7250), - [anon_sym_STAR] = ACTIONS(7252), - [anon_sym_SLASH] = ACTIONS(7250), - [anon_sym_PERCENT] = ACTIONS(7252), - [anon_sym_PIPE_PIPE] = ACTIONS(7252), - [anon_sym_AMP_AMP] = ACTIONS(7252), - [anon_sym_PIPE] = ACTIONS(7250), - [anon_sym_CARET] = ACTIONS(7252), - [anon_sym_AMP] = ACTIONS(7250), - [anon_sym_EQ_EQ] = ACTIONS(7252), - [anon_sym_BANG_EQ] = ACTIONS(7252), - [anon_sym_GT] = ACTIONS(7250), - [anon_sym_GT_EQ] = ACTIONS(7252), - [anon_sym_LT_EQ] = ACTIONS(7252), - [anon_sym_LT] = ACTIONS(7250), - [anon_sym_LT_LT] = ACTIONS(7252), - [anon_sym_GT_GT] = ACTIONS(7252), - [anon_sym_SEMI] = ACTIONS(7252), - [anon_sym___attribute] = ACTIONS(7250), - [anon_sym___attribute__] = ACTIONS(7250), - [anon_sym_RBRACE] = ACTIONS(7252), - [anon_sym_LBRACK] = ACTIONS(7252), - [anon_sym_RBRACK] = ACTIONS(7252), - [anon_sym_const] = ACTIONS(7250), - [anon_sym_volatile] = ACTIONS(7250), - [anon_sym_restrict] = ACTIONS(7250), - [anon_sym__Atomic] = ACTIONS(7250), - [anon_sym_in] = ACTIONS(7250), - [anon_sym_out] = ACTIONS(7250), - [anon_sym_inout] = ACTIONS(7250), - [anon_sym_bycopy] = ACTIONS(7250), - [anon_sym_byref] = ACTIONS(7250), - [anon_sym_oneway] = ACTIONS(7250), - [anon_sym__Nullable] = ACTIONS(7250), - [anon_sym__Nonnull] = ACTIONS(7250), - [anon_sym__Nullable_result] = ACTIONS(7250), - [anon_sym__Null_unspecified] = ACTIONS(7250), - [anon_sym___autoreleasing] = ACTIONS(7250), - [anon_sym___nullable] = ACTIONS(7250), - [anon_sym___nonnull] = ACTIONS(7250), - [anon_sym___strong] = ACTIONS(7250), - [anon_sym___weak] = ACTIONS(7250), - [anon_sym___bridge] = ACTIONS(7250), - [anon_sym___bridge_transfer] = ACTIONS(7250), - [anon_sym___bridge_retained] = ACTIONS(7250), - [anon_sym___unsafe_unretained] = ACTIONS(7250), - [anon_sym___block] = ACTIONS(7250), - [anon_sym___kindof] = ACTIONS(7250), - [anon_sym___unused] = ACTIONS(7250), - [anon_sym__Complex] = ACTIONS(7250), - [anon_sym___complex] = ACTIONS(7250), - [anon_sym_IBOutlet] = ACTIONS(7250), - [anon_sym_IBInspectable] = ACTIONS(7250), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7250), - [anon_sym_COLON] = ACTIONS(7252), - [anon_sym_QMARK] = ACTIONS(7252), - [anon_sym_DASH_DASH] = ACTIONS(7252), - [anon_sym_PLUS_PLUS] = ACTIONS(7252), - [anon_sym_DOT] = ACTIONS(7252), - [anon_sym_DASH_GT] = ACTIONS(7252), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7250), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7250), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7250), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7250), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7250), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7250), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7250), - [anon_sym_NS_AVAILABLE] = ACTIONS(7250), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7250), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7250), - [anon_sym_API_AVAILABLE] = ACTIONS(7250), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7250), - [anon_sym_API_DEPRECATED] = ACTIONS(7250), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7250), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7250), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7250), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7250), - [anon_sym___deprecated_msg] = ACTIONS(7250), - [anon_sym___deprecated_enum_msg] = ACTIONS(7250), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7250), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7250), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7250), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7250), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7250), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(7250), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3358] = { + [3229] = { [sym_identifier] = ACTIONS(7728), + [aux_sym_preproc_def_token1] = ACTIONS(7728), + [aux_sym_preproc_if_token1] = ACTIONS(7728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7728), + [sym_preproc_directive] = ACTIONS(7728), [anon_sym_extern] = ACTIONS(7728), [anon_sym___attribute] = ACTIONS(7728), [anon_sym___attribute__] = ACTIONS(7728), [anon_sym___declspec] = ACTIONS(7728), - [anon_sym_RBRACE] = ACTIONS(7887), + [anon_sym_RBRACE] = ACTIONS(7823), [anon_sym_static] = ACTIONS(7728), [anon_sym_auto] = ACTIONS(7728), [anon_sym_register] = ACTIONS(7728), @@ -528811,16 +513531,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_short] = ACTIONS(7728), [sym_primitive_type] = ACTIONS(7728), [anon_sym_enum] = ACTIONS(7728), - [anon_sym_NS_ENUM] = ACTIONS(7728), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7728), - [anon_sym_NS_OPTIONS] = ACTIONS(7728), [anon_sym_struct] = ACTIONS(7728), [anon_sym_union] = ACTIONS(7728), [sym_comment] = ACTIONS(3), - [sym_private] = ACTIONS(7887), - [sym_public] = ACTIONS(7887), - [sym_protected] = ACTIONS(7887), - [sym_package] = ACTIONS(7887), [sym_method_attribute_specifier] = ACTIONS(7728), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7728), [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7728), @@ -528844,6 +513557,5381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7728), [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7728), [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7728), + [anon_sym_NS_ENUM] = ACTIONS(7728), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7728), + [anon_sym_NS_OPTIONS] = ACTIONS(7728), + [anon_sym_typeof] = ACTIONS(7728), + [anon_sym___typeof] = ACTIONS(7728), + [anon_sym___typeof__] = ACTIONS(7728), + [sym_id] = ACTIONS(7728), + [sym_instancetype] = ACTIONS(7728), + [sym_Class] = ACTIONS(7728), + [sym_SEL] = ACTIONS(7728), + [sym_IMP] = ACTIONS(7728), + [sym_BOOL] = ACTIONS(7728), + [sym_auto] = ACTIONS(7728), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3230] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(7024), + [anon_sym_COMMA] = ACTIONS(7026), + [anon_sym_RPAREN] = ACTIONS(7026), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(7781), + [anon_sym_PLUS] = ACTIONS(7781), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7785), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(7819), + [anon_sym_AMP_AMP] = ACTIONS(7787), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7791), + [anon_sym_AMP] = ACTIONS(7793), + [anon_sym_EQ_EQ] = ACTIONS(7795), + [anon_sym_BANG_EQ] = ACTIONS(7795), + [anon_sym_GT] = ACTIONS(7797), + [anon_sym_GT_EQ] = ACTIONS(7799), + [anon_sym_LT_EQ] = ACTIONS(7799), + [anon_sym_LT] = ACTIONS(7797), + [anon_sym_LT_LT] = ACTIONS(7801), + [anon_sym_GT_GT] = ACTIONS(7801), + [anon_sym_SEMI] = ACTIONS(7026), + [anon_sym___attribute] = ACTIONS(7024), + [anon_sym___attribute__] = ACTIONS(7024), + [anon_sym_RBRACE] = ACTIONS(7026), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(7026), + [anon_sym_const] = ACTIONS(7024), + [anon_sym_volatile] = ACTIONS(7024), + [anon_sym_restrict] = ACTIONS(7024), + [anon_sym__Atomic] = ACTIONS(7024), + [anon_sym_in] = ACTIONS(7024), + [anon_sym_out] = ACTIONS(7024), + [anon_sym_inout] = ACTIONS(7024), + [anon_sym_bycopy] = ACTIONS(7024), + [anon_sym_byref] = ACTIONS(7024), + [anon_sym_oneway] = ACTIONS(7024), + [anon_sym__Nullable] = ACTIONS(7024), + [anon_sym__Nonnull] = ACTIONS(7024), + [anon_sym__Nullable_result] = ACTIONS(7024), + [anon_sym__Null_unspecified] = ACTIONS(7024), + [anon_sym___autoreleasing] = ACTIONS(7024), + [anon_sym___nullable] = ACTIONS(7024), + [anon_sym___nonnull] = ACTIONS(7024), + [anon_sym___strong] = ACTIONS(7024), + [anon_sym___weak] = ACTIONS(7024), + [anon_sym___bridge] = ACTIONS(7024), + [anon_sym___bridge_transfer] = ACTIONS(7024), + [anon_sym___bridge_retained] = ACTIONS(7024), + [anon_sym___unsafe_unretained] = ACTIONS(7024), + [anon_sym___block] = ACTIONS(7024), + [anon_sym___kindof] = ACTIONS(7024), + [anon_sym___unused] = ACTIONS(7024), + [anon_sym__Complex] = ACTIONS(7024), + [anon_sym___complex] = ACTIONS(7024), + [anon_sym_IBOutlet] = ACTIONS(7024), + [anon_sym_IBInspectable] = ACTIONS(7024), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7024), + [anon_sym_COLON] = ACTIONS(7026), + [anon_sym_QMARK] = ACTIONS(7821), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7024), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7024), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7024), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7024), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7024), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7024), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7024), + [anon_sym_NS_AVAILABLE] = ACTIONS(7024), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7024), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7024), + [anon_sym_API_AVAILABLE] = ACTIONS(7024), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7024), + [anon_sym_API_DEPRECATED] = ACTIONS(7024), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7024), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7024), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7024), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7024), + [anon_sym___deprecated_msg] = ACTIONS(7024), + [anon_sym___deprecated_enum_msg] = ACTIONS(7024), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7024), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7024), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7024), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7024), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7024), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7024), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3231] = { + [sym_identifier] = ACTIONS(7722), + [aux_sym_preproc_def_token1] = ACTIONS(7722), + [aux_sym_preproc_if_token1] = ACTIONS(7722), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7722), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7722), + [sym_preproc_directive] = ACTIONS(7722), + [anon_sym_extern] = ACTIONS(7722), + [anon_sym___attribute] = ACTIONS(7722), + [anon_sym___attribute__] = ACTIONS(7722), + [anon_sym___declspec] = ACTIONS(7722), + [anon_sym_RBRACE] = ACTIONS(7825), + [anon_sym_static] = ACTIONS(7722), + [anon_sym_auto] = ACTIONS(7722), + [anon_sym_register] = ACTIONS(7722), + [anon_sym_inline] = ACTIONS(7722), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7722), + [anon_sym_const] = ACTIONS(7722), + [anon_sym_volatile] = ACTIONS(7722), + [anon_sym_restrict] = ACTIONS(7722), + [anon_sym__Atomic] = ACTIONS(7722), + [anon_sym_in] = ACTIONS(7722), + [anon_sym_out] = ACTIONS(7722), + [anon_sym_inout] = ACTIONS(7722), + [anon_sym_bycopy] = ACTIONS(7722), + [anon_sym_byref] = ACTIONS(7722), + [anon_sym_oneway] = ACTIONS(7722), + [anon_sym__Nullable] = ACTIONS(7722), + [anon_sym__Nonnull] = ACTIONS(7722), + [anon_sym__Nullable_result] = ACTIONS(7722), + [anon_sym__Null_unspecified] = ACTIONS(7722), + [anon_sym___autoreleasing] = ACTIONS(7722), + [anon_sym___nullable] = ACTIONS(7722), + [anon_sym___nonnull] = ACTIONS(7722), + [anon_sym___strong] = ACTIONS(7722), + [anon_sym___weak] = ACTIONS(7722), + [anon_sym___bridge] = ACTIONS(7722), + [anon_sym___bridge_transfer] = ACTIONS(7722), + [anon_sym___bridge_retained] = ACTIONS(7722), + [anon_sym___unsafe_unretained] = ACTIONS(7722), + [anon_sym___block] = ACTIONS(7722), + [anon_sym___kindof] = ACTIONS(7722), + [anon_sym___unused] = ACTIONS(7722), + [anon_sym__Complex] = ACTIONS(7722), + [anon_sym___complex] = ACTIONS(7722), + [anon_sym_IBOutlet] = ACTIONS(7722), + [anon_sym_IBInspectable] = ACTIONS(7722), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7722), + [anon_sym_signed] = ACTIONS(7722), + [anon_sym_unsigned] = ACTIONS(7722), + [anon_sym_long] = ACTIONS(7722), + [anon_sym_short] = ACTIONS(7722), + [sym_primitive_type] = ACTIONS(7722), + [anon_sym_enum] = ACTIONS(7722), + [anon_sym_struct] = ACTIONS(7722), + [anon_sym_union] = ACTIONS(7722), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7722), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7722), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7722), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7722), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7722), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7722), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7722), + [anon_sym_NS_AVAILABLE] = ACTIONS(7722), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7722), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7722), + [anon_sym_API_AVAILABLE] = ACTIONS(7722), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7722), + [anon_sym_API_DEPRECATED] = ACTIONS(7722), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7722), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7722), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7722), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7722), + [anon_sym___deprecated_msg] = ACTIONS(7722), + [anon_sym___deprecated_enum_msg] = ACTIONS(7722), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7722), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7722), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7722), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7722), + [anon_sym_NS_ENUM] = ACTIONS(7722), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7722), + [anon_sym_NS_OPTIONS] = ACTIONS(7722), + [anon_sym_typeof] = ACTIONS(7722), + [anon_sym___typeof] = ACTIONS(7722), + [anon_sym___typeof__] = ACTIONS(7722), + [sym_id] = ACTIONS(7722), + [sym_instancetype] = ACTIONS(7722), + [sym_Class] = ACTIONS(7722), + [sym_SEL] = ACTIONS(7722), + [sym_IMP] = ACTIONS(7722), + [sym_BOOL] = ACTIONS(7722), + [sym_auto] = ACTIONS(7722), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3232] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(7060), + [anon_sym_COMMA] = ACTIONS(7062), + [anon_sym_RPAREN] = ACTIONS(7062), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_PLUS] = ACTIONS(7060), + [anon_sym_STAR] = ACTIONS(7062), + [anon_sym_SLASH] = ACTIONS(7060), + [anon_sym_PERCENT] = ACTIONS(7062), + [anon_sym_PIPE_PIPE] = ACTIONS(7062), + [anon_sym_AMP_AMP] = ACTIONS(7062), + [anon_sym_PIPE] = ACTIONS(7060), + [anon_sym_CARET] = ACTIONS(7062), + [anon_sym_AMP] = ACTIONS(7060), + [anon_sym_EQ_EQ] = ACTIONS(7062), + [anon_sym_BANG_EQ] = ACTIONS(7062), + [anon_sym_GT] = ACTIONS(7060), + [anon_sym_GT_EQ] = ACTIONS(7062), + [anon_sym_LT_EQ] = ACTIONS(7062), + [anon_sym_LT] = ACTIONS(7060), + [anon_sym_LT_LT] = ACTIONS(7062), + [anon_sym_GT_GT] = ACTIONS(7062), + [anon_sym_SEMI] = ACTIONS(7062), + [anon_sym___attribute] = ACTIONS(7060), + [anon_sym___attribute__] = ACTIONS(7060), + [anon_sym_RBRACE] = ACTIONS(7062), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(7062), + [anon_sym_const] = ACTIONS(7060), + [anon_sym_volatile] = ACTIONS(7060), + [anon_sym_restrict] = ACTIONS(7060), + [anon_sym__Atomic] = ACTIONS(7060), + [anon_sym_in] = ACTIONS(7060), + [anon_sym_out] = ACTIONS(7060), + [anon_sym_inout] = ACTIONS(7060), + [anon_sym_bycopy] = ACTIONS(7060), + [anon_sym_byref] = ACTIONS(7060), + [anon_sym_oneway] = ACTIONS(7060), + [anon_sym__Nullable] = ACTIONS(7060), + [anon_sym__Nonnull] = ACTIONS(7060), + [anon_sym__Nullable_result] = ACTIONS(7060), + [anon_sym__Null_unspecified] = ACTIONS(7060), + [anon_sym___autoreleasing] = ACTIONS(7060), + [anon_sym___nullable] = ACTIONS(7060), + [anon_sym___nonnull] = ACTIONS(7060), + [anon_sym___strong] = ACTIONS(7060), + [anon_sym___weak] = ACTIONS(7060), + [anon_sym___bridge] = ACTIONS(7060), + [anon_sym___bridge_transfer] = ACTIONS(7060), + [anon_sym___bridge_retained] = ACTIONS(7060), + [anon_sym___unsafe_unretained] = ACTIONS(7060), + [anon_sym___block] = ACTIONS(7060), + [anon_sym___kindof] = ACTIONS(7060), + [anon_sym___unused] = ACTIONS(7060), + [anon_sym__Complex] = ACTIONS(7060), + [anon_sym___complex] = ACTIONS(7060), + [anon_sym_IBOutlet] = ACTIONS(7060), + [anon_sym_IBInspectable] = ACTIONS(7060), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7060), + [anon_sym_COLON] = ACTIONS(7062), + [anon_sym_QMARK] = ACTIONS(7062), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7060), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7060), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7060), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7060), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7060), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7060), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7060), + [anon_sym_NS_AVAILABLE] = ACTIONS(7060), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7060), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7060), + [anon_sym_API_AVAILABLE] = ACTIONS(7060), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7060), + [anon_sym_API_DEPRECATED] = ACTIONS(7060), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7060), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7060), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7060), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7060), + [anon_sym___deprecated_msg] = ACTIONS(7060), + [anon_sym___deprecated_enum_msg] = ACTIONS(7060), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7060), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7060), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7060), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7060), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7060), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7060), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3233] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(7056), + [anon_sym_COMMA] = ACTIONS(7058), + [anon_sym_RPAREN] = ACTIONS(7058), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(7781), + [anon_sym_PLUS] = ACTIONS(7781), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7785), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(7058), + [anon_sym_AMP_AMP] = ACTIONS(7058), + [anon_sym_PIPE] = ACTIONS(7056), + [anon_sym_CARET] = ACTIONS(7058), + [anon_sym_AMP] = ACTIONS(7056), + [anon_sym_EQ_EQ] = ACTIONS(7058), + [anon_sym_BANG_EQ] = ACTIONS(7058), + [anon_sym_GT] = ACTIONS(7056), + [anon_sym_GT_EQ] = ACTIONS(7058), + [anon_sym_LT_EQ] = ACTIONS(7058), + [anon_sym_LT] = ACTIONS(7056), + [anon_sym_LT_LT] = ACTIONS(7801), + [anon_sym_GT_GT] = ACTIONS(7801), + [anon_sym_SEMI] = ACTIONS(7058), + [anon_sym___attribute] = ACTIONS(7056), + [anon_sym___attribute__] = ACTIONS(7056), + [anon_sym_RBRACE] = ACTIONS(7058), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(7058), + [anon_sym_const] = ACTIONS(7056), + [anon_sym_volatile] = ACTIONS(7056), + [anon_sym_restrict] = ACTIONS(7056), + [anon_sym__Atomic] = ACTIONS(7056), + [anon_sym_in] = ACTIONS(7056), + [anon_sym_out] = ACTIONS(7056), + [anon_sym_inout] = ACTIONS(7056), + [anon_sym_bycopy] = ACTIONS(7056), + [anon_sym_byref] = ACTIONS(7056), + [anon_sym_oneway] = ACTIONS(7056), + [anon_sym__Nullable] = ACTIONS(7056), + [anon_sym__Nonnull] = ACTIONS(7056), + [anon_sym__Nullable_result] = ACTIONS(7056), + [anon_sym__Null_unspecified] = ACTIONS(7056), + [anon_sym___autoreleasing] = ACTIONS(7056), + [anon_sym___nullable] = ACTIONS(7056), + [anon_sym___nonnull] = ACTIONS(7056), + [anon_sym___strong] = ACTIONS(7056), + [anon_sym___weak] = ACTIONS(7056), + [anon_sym___bridge] = ACTIONS(7056), + [anon_sym___bridge_transfer] = ACTIONS(7056), + [anon_sym___bridge_retained] = ACTIONS(7056), + [anon_sym___unsafe_unretained] = ACTIONS(7056), + [anon_sym___block] = ACTIONS(7056), + [anon_sym___kindof] = ACTIONS(7056), + [anon_sym___unused] = ACTIONS(7056), + [anon_sym__Complex] = ACTIONS(7056), + [anon_sym___complex] = ACTIONS(7056), + [anon_sym_IBOutlet] = ACTIONS(7056), + [anon_sym_IBInspectable] = ACTIONS(7056), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7056), + [anon_sym_COLON] = ACTIONS(7058), + [anon_sym_QMARK] = ACTIONS(7058), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7056), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7056), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7056), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7056), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7056), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7056), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7056), + [anon_sym_NS_AVAILABLE] = ACTIONS(7056), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7056), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7056), + [anon_sym_API_AVAILABLE] = ACTIONS(7056), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7056), + [anon_sym_API_DEPRECATED] = ACTIONS(7056), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7056), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7056), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7056), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7056), + [anon_sym___deprecated_msg] = ACTIONS(7056), + [anon_sym___deprecated_enum_msg] = ACTIONS(7056), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7056), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7056), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7056), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7056), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7056), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7056), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3234] = { + [sym_identifier] = ACTIONS(7706), + [aux_sym_preproc_def_token1] = ACTIONS(7706), + [aux_sym_preproc_if_token1] = ACTIONS(7706), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7706), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7706), + [sym_preproc_directive] = ACTIONS(7706), + [anon_sym_extern] = ACTIONS(7706), + [anon_sym___attribute] = ACTIONS(7706), + [anon_sym___attribute__] = ACTIONS(7706), + [anon_sym___declspec] = ACTIONS(7706), + [anon_sym_RBRACE] = ACTIONS(7827), + [anon_sym_static] = ACTIONS(7706), + [anon_sym_auto] = ACTIONS(7706), + [anon_sym_register] = ACTIONS(7706), + [anon_sym_inline] = ACTIONS(7706), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7706), + [anon_sym_const] = ACTIONS(7706), + [anon_sym_volatile] = ACTIONS(7706), + [anon_sym_restrict] = ACTIONS(7706), + [anon_sym__Atomic] = ACTIONS(7706), + [anon_sym_in] = ACTIONS(7706), + [anon_sym_out] = ACTIONS(7706), + [anon_sym_inout] = ACTIONS(7706), + [anon_sym_bycopy] = ACTIONS(7706), + [anon_sym_byref] = ACTIONS(7706), + [anon_sym_oneway] = ACTIONS(7706), + [anon_sym__Nullable] = ACTIONS(7706), + [anon_sym__Nonnull] = ACTIONS(7706), + [anon_sym__Nullable_result] = ACTIONS(7706), + [anon_sym__Null_unspecified] = ACTIONS(7706), + [anon_sym___autoreleasing] = ACTIONS(7706), + [anon_sym___nullable] = ACTIONS(7706), + [anon_sym___nonnull] = ACTIONS(7706), + [anon_sym___strong] = ACTIONS(7706), + [anon_sym___weak] = ACTIONS(7706), + [anon_sym___bridge] = ACTIONS(7706), + [anon_sym___bridge_transfer] = ACTIONS(7706), + [anon_sym___bridge_retained] = ACTIONS(7706), + [anon_sym___unsafe_unretained] = ACTIONS(7706), + [anon_sym___block] = ACTIONS(7706), + [anon_sym___kindof] = ACTIONS(7706), + [anon_sym___unused] = ACTIONS(7706), + [anon_sym__Complex] = ACTIONS(7706), + [anon_sym___complex] = ACTIONS(7706), + [anon_sym_IBOutlet] = ACTIONS(7706), + [anon_sym_IBInspectable] = ACTIONS(7706), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7706), + [anon_sym_signed] = ACTIONS(7706), + [anon_sym_unsigned] = ACTIONS(7706), + [anon_sym_long] = ACTIONS(7706), + [anon_sym_short] = ACTIONS(7706), + [sym_primitive_type] = ACTIONS(7706), + [anon_sym_enum] = ACTIONS(7706), + [anon_sym_struct] = ACTIONS(7706), + [anon_sym_union] = ACTIONS(7706), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7706), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7706), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7706), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7706), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7706), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7706), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7706), + [anon_sym_NS_AVAILABLE] = ACTIONS(7706), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7706), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7706), + [anon_sym_API_AVAILABLE] = ACTIONS(7706), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7706), + [anon_sym_API_DEPRECATED] = ACTIONS(7706), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7706), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7706), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7706), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7706), + [anon_sym___deprecated_msg] = ACTIONS(7706), + [anon_sym___deprecated_enum_msg] = ACTIONS(7706), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7706), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7706), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7706), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7706), + [anon_sym_NS_ENUM] = ACTIONS(7706), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7706), + [anon_sym_NS_OPTIONS] = ACTIONS(7706), + [anon_sym_typeof] = ACTIONS(7706), + [anon_sym___typeof] = ACTIONS(7706), + [anon_sym___typeof__] = ACTIONS(7706), + [sym_id] = ACTIONS(7706), + [sym_instancetype] = ACTIONS(7706), + [sym_Class] = ACTIONS(7706), + [sym_SEL] = ACTIONS(7706), + [sym_IMP] = ACTIONS(7706), + [sym_BOOL] = ACTIONS(7706), + [sym_auto] = ACTIONS(7706), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3235] = { + [sym_identifier] = ACTIONS(1816), + [aux_sym_preproc_def_token1] = ACTIONS(1816), + [aux_sym_preproc_if_token1] = ACTIONS(1816), + [aux_sym_preproc_if_token2] = ACTIONS(1816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1816), + [sym_preproc_directive] = ACTIONS(1816), + [anon_sym_extern] = ACTIONS(1816), + [anon_sym___attribute] = ACTIONS(1816), + [anon_sym___attribute__] = ACTIONS(1816), + [anon_sym___declspec] = ACTIONS(1816), + [anon_sym_static] = ACTIONS(1816), + [anon_sym_auto] = ACTIONS(1816), + [anon_sym_register] = ACTIONS(1816), + [anon_sym_inline] = ACTIONS(1816), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1816), + [anon_sym_const] = ACTIONS(1816), + [anon_sym_volatile] = ACTIONS(1816), + [anon_sym_restrict] = ACTIONS(1816), + [anon_sym__Atomic] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1816), + [anon_sym_out] = ACTIONS(1816), + [anon_sym_inout] = ACTIONS(1816), + [anon_sym_bycopy] = ACTIONS(1816), + [anon_sym_byref] = ACTIONS(1816), + [anon_sym_oneway] = ACTIONS(1816), + [anon_sym__Nullable] = ACTIONS(1816), + [anon_sym__Nonnull] = ACTIONS(1816), + [anon_sym__Nullable_result] = ACTIONS(1816), + [anon_sym__Null_unspecified] = ACTIONS(1816), + [anon_sym___autoreleasing] = ACTIONS(1816), + [anon_sym___nullable] = ACTIONS(1816), + [anon_sym___nonnull] = ACTIONS(1816), + [anon_sym___strong] = ACTIONS(1816), + [anon_sym___weak] = ACTIONS(1816), + [anon_sym___bridge] = ACTIONS(1816), + [anon_sym___bridge_transfer] = ACTIONS(1816), + [anon_sym___bridge_retained] = ACTIONS(1816), + [anon_sym___unsafe_unretained] = ACTIONS(1816), + [anon_sym___block] = ACTIONS(1816), + [anon_sym___kindof] = ACTIONS(1816), + [anon_sym___unused] = ACTIONS(1816), + [anon_sym__Complex] = ACTIONS(1816), + [anon_sym___complex] = ACTIONS(1816), + [anon_sym_IBOutlet] = ACTIONS(1816), + [anon_sym_IBInspectable] = ACTIONS(1816), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1816), + [anon_sym_signed] = ACTIONS(1816), + [anon_sym_unsigned] = ACTIONS(1816), + [anon_sym_long] = ACTIONS(1816), + [anon_sym_short] = ACTIONS(1816), + [sym_primitive_type] = ACTIONS(1816), + [anon_sym_enum] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1816), + [anon_sym_union] = ACTIONS(1816), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(1816), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1816), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1816), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1816), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1816), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1816), + [anon_sym_NS_AVAILABLE] = ACTIONS(1816), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1816), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_API_AVAILABLE] = ACTIONS(1816), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_API_DEPRECATED] = ACTIONS(1816), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1816), + [anon_sym___deprecated_msg] = ACTIONS(1816), + [anon_sym___deprecated_enum_msg] = ACTIONS(1816), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_NS_ENUM] = ACTIONS(1816), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1816), + [anon_sym_NS_OPTIONS] = ACTIONS(1816), + [anon_sym_typeof] = ACTIONS(1816), + [anon_sym___typeof] = ACTIONS(1816), + [anon_sym___typeof__] = ACTIONS(1816), + [sym_id] = ACTIONS(1816), + [sym_instancetype] = ACTIONS(1816), + [sym_Class] = ACTIONS(1816), + [sym_SEL] = ACTIONS(1816), + [sym_IMP] = ACTIONS(1816), + [sym_BOOL] = ACTIONS(1816), + [sym_auto] = ACTIONS(1816), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3236] = { + [sym_identifier] = ACTIONS(7726), + [aux_sym_preproc_def_token1] = ACTIONS(7726), + [aux_sym_preproc_if_token1] = ACTIONS(7726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7726), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7726), + [sym_preproc_directive] = ACTIONS(7726), + [anon_sym_extern] = ACTIONS(7726), + [anon_sym___attribute] = ACTIONS(7726), + [anon_sym___attribute__] = ACTIONS(7726), + [anon_sym___declspec] = ACTIONS(7726), + [anon_sym_RBRACE] = ACTIONS(7829), + [anon_sym_static] = ACTIONS(7726), + [anon_sym_auto] = ACTIONS(7726), + [anon_sym_register] = ACTIONS(7726), + [anon_sym_inline] = ACTIONS(7726), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7726), + [anon_sym_const] = ACTIONS(7726), + [anon_sym_volatile] = ACTIONS(7726), + [anon_sym_restrict] = ACTIONS(7726), + [anon_sym__Atomic] = ACTIONS(7726), + [anon_sym_in] = ACTIONS(7726), + [anon_sym_out] = ACTIONS(7726), + [anon_sym_inout] = ACTIONS(7726), + [anon_sym_bycopy] = ACTIONS(7726), + [anon_sym_byref] = ACTIONS(7726), + [anon_sym_oneway] = ACTIONS(7726), + [anon_sym__Nullable] = ACTIONS(7726), + [anon_sym__Nonnull] = ACTIONS(7726), + [anon_sym__Nullable_result] = ACTIONS(7726), + [anon_sym__Null_unspecified] = ACTIONS(7726), + [anon_sym___autoreleasing] = ACTIONS(7726), + [anon_sym___nullable] = ACTIONS(7726), + [anon_sym___nonnull] = ACTIONS(7726), + [anon_sym___strong] = ACTIONS(7726), + [anon_sym___weak] = ACTIONS(7726), + [anon_sym___bridge] = ACTIONS(7726), + [anon_sym___bridge_transfer] = ACTIONS(7726), + [anon_sym___bridge_retained] = ACTIONS(7726), + [anon_sym___unsafe_unretained] = ACTIONS(7726), + [anon_sym___block] = ACTIONS(7726), + [anon_sym___kindof] = ACTIONS(7726), + [anon_sym___unused] = ACTIONS(7726), + [anon_sym__Complex] = ACTIONS(7726), + [anon_sym___complex] = ACTIONS(7726), + [anon_sym_IBOutlet] = ACTIONS(7726), + [anon_sym_IBInspectable] = ACTIONS(7726), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7726), + [anon_sym_signed] = ACTIONS(7726), + [anon_sym_unsigned] = ACTIONS(7726), + [anon_sym_long] = ACTIONS(7726), + [anon_sym_short] = ACTIONS(7726), + [sym_primitive_type] = ACTIONS(7726), + [anon_sym_enum] = ACTIONS(7726), + [anon_sym_struct] = ACTIONS(7726), + [anon_sym_union] = ACTIONS(7726), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7726), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7726), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7726), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7726), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7726), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7726), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7726), + [anon_sym_NS_AVAILABLE] = ACTIONS(7726), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7726), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7726), + [anon_sym_API_AVAILABLE] = ACTIONS(7726), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7726), + [anon_sym_API_DEPRECATED] = ACTIONS(7726), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7726), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7726), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7726), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7726), + [anon_sym___deprecated_msg] = ACTIONS(7726), + [anon_sym___deprecated_enum_msg] = ACTIONS(7726), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7726), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7726), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7726), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7726), + [anon_sym_NS_ENUM] = ACTIONS(7726), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7726), + [anon_sym_NS_OPTIONS] = ACTIONS(7726), + [anon_sym_typeof] = ACTIONS(7726), + [anon_sym___typeof] = ACTIONS(7726), + [anon_sym___typeof__] = ACTIONS(7726), + [sym_id] = ACTIONS(7726), + [sym_instancetype] = ACTIONS(7726), + [sym_Class] = ACTIONS(7726), + [sym_SEL] = ACTIONS(7726), + [sym_IMP] = ACTIONS(7726), + [sym_BOOL] = ACTIONS(7726), + [sym_auto] = ACTIONS(7726), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3237] = { + [sym_identifier] = ACTIONS(7720), + [aux_sym_preproc_def_token1] = ACTIONS(7720), + [aux_sym_preproc_if_token1] = ACTIONS(7720), + [aux_sym_preproc_if_token2] = ACTIONS(7720), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7720), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7720), + [sym_preproc_directive] = ACTIONS(7720), + [anon_sym_extern] = ACTIONS(7720), + [anon_sym___attribute] = ACTIONS(7720), + [anon_sym___attribute__] = ACTIONS(7720), + [anon_sym___declspec] = ACTIONS(7720), + [anon_sym_static] = ACTIONS(7720), + [anon_sym_auto] = ACTIONS(7720), + [anon_sym_register] = ACTIONS(7720), + [anon_sym_inline] = ACTIONS(7720), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7720), + [anon_sym_const] = ACTIONS(7720), + [anon_sym_volatile] = ACTIONS(7720), + [anon_sym_restrict] = ACTIONS(7720), + [anon_sym__Atomic] = ACTIONS(7720), + [anon_sym_in] = ACTIONS(7720), + [anon_sym_out] = ACTIONS(7720), + [anon_sym_inout] = ACTIONS(7720), + [anon_sym_bycopy] = ACTIONS(7720), + [anon_sym_byref] = ACTIONS(7720), + [anon_sym_oneway] = ACTIONS(7720), + [anon_sym__Nullable] = ACTIONS(7720), + [anon_sym__Nonnull] = ACTIONS(7720), + [anon_sym__Nullable_result] = ACTIONS(7720), + [anon_sym__Null_unspecified] = ACTIONS(7720), + [anon_sym___autoreleasing] = ACTIONS(7720), + [anon_sym___nullable] = ACTIONS(7720), + [anon_sym___nonnull] = ACTIONS(7720), + [anon_sym___strong] = ACTIONS(7720), + [anon_sym___weak] = ACTIONS(7720), + [anon_sym___bridge] = ACTIONS(7720), + [anon_sym___bridge_transfer] = ACTIONS(7720), + [anon_sym___bridge_retained] = ACTIONS(7720), + [anon_sym___unsafe_unretained] = ACTIONS(7720), + [anon_sym___block] = ACTIONS(7720), + [anon_sym___kindof] = ACTIONS(7720), + [anon_sym___unused] = ACTIONS(7720), + [anon_sym__Complex] = ACTIONS(7720), + [anon_sym___complex] = ACTIONS(7720), + [anon_sym_IBOutlet] = ACTIONS(7720), + [anon_sym_IBInspectable] = ACTIONS(7720), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7720), + [anon_sym_signed] = ACTIONS(7720), + [anon_sym_unsigned] = ACTIONS(7720), + [anon_sym_long] = ACTIONS(7720), + [anon_sym_short] = ACTIONS(7720), + [sym_primitive_type] = ACTIONS(7720), + [anon_sym_enum] = ACTIONS(7720), + [anon_sym_struct] = ACTIONS(7720), + [anon_sym_union] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7720), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7720), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7720), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7720), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7720), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7720), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7720), + [anon_sym_NS_AVAILABLE] = ACTIONS(7720), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7720), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7720), + [anon_sym_API_AVAILABLE] = ACTIONS(7720), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7720), + [anon_sym_API_DEPRECATED] = ACTIONS(7720), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7720), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7720), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7720), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7720), + [anon_sym___deprecated_msg] = ACTIONS(7720), + [anon_sym___deprecated_enum_msg] = ACTIONS(7720), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7720), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7720), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7720), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7720), + [anon_sym_NS_ENUM] = ACTIONS(7720), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7720), + [anon_sym_NS_OPTIONS] = ACTIONS(7720), + [anon_sym_typeof] = ACTIONS(7720), + [anon_sym___typeof] = ACTIONS(7720), + [anon_sym___typeof__] = ACTIONS(7720), + [sym_id] = ACTIONS(7720), + [sym_instancetype] = ACTIONS(7720), + [sym_Class] = ACTIONS(7720), + [sym_SEL] = ACTIONS(7720), + [sym_IMP] = ACTIONS(7720), + [sym_BOOL] = ACTIONS(7720), + [sym_auto] = ACTIONS(7720), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3238] = { + [sym_identifier] = ACTIONS(7716), + [aux_sym_preproc_def_token1] = ACTIONS(7716), + [aux_sym_preproc_if_token1] = ACTIONS(7716), + [aux_sym_preproc_if_token2] = ACTIONS(7716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7716), + [sym_preproc_directive] = ACTIONS(7716), + [anon_sym_extern] = ACTIONS(7716), + [anon_sym___attribute] = ACTIONS(7716), + [anon_sym___attribute__] = ACTIONS(7716), + [anon_sym___declspec] = ACTIONS(7716), + [anon_sym_static] = ACTIONS(7716), + [anon_sym_auto] = ACTIONS(7716), + [anon_sym_register] = ACTIONS(7716), + [anon_sym_inline] = ACTIONS(7716), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7716), + [anon_sym_const] = ACTIONS(7716), + [anon_sym_volatile] = ACTIONS(7716), + [anon_sym_restrict] = ACTIONS(7716), + [anon_sym__Atomic] = ACTIONS(7716), + [anon_sym_in] = ACTIONS(7716), + [anon_sym_out] = ACTIONS(7716), + [anon_sym_inout] = ACTIONS(7716), + [anon_sym_bycopy] = ACTIONS(7716), + [anon_sym_byref] = ACTIONS(7716), + [anon_sym_oneway] = ACTIONS(7716), + [anon_sym__Nullable] = ACTIONS(7716), + [anon_sym__Nonnull] = ACTIONS(7716), + [anon_sym__Nullable_result] = ACTIONS(7716), + [anon_sym__Null_unspecified] = ACTIONS(7716), + [anon_sym___autoreleasing] = ACTIONS(7716), + [anon_sym___nullable] = ACTIONS(7716), + [anon_sym___nonnull] = ACTIONS(7716), + [anon_sym___strong] = ACTIONS(7716), + [anon_sym___weak] = ACTIONS(7716), + [anon_sym___bridge] = ACTIONS(7716), + [anon_sym___bridge_transfer] = ACTIONS(7716), + [anon_sym___bridge_retained] = ACTIONS(7716), + [anon_sym___unsafe_unretained] = ACTIONS(7716), + [anon_sym___block] = ACTIONS(7716), + [anon_sym___kindof] = ACTIONS(7716), + [anon_sym___unused] = ACTIONS(7716), + [anon_sym__Complex] = ACTIONS(7716), + [anon_sym___complex] = ACTIONS(7716), + [anon_sym_IBOutlet] = ACTIONS(7716), + [anon_sym_IBInspectable] = ACTIONS(7716), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7716), + [anon_sym_signed] = ACTIONS(7716), + [anon_sym_unsigned] = ACTIONS(7716), + [anon_sym_long] = ACTIONS(7716), + [anon_sym_short] = ACTIONS(7716), + [sym_primitive_type] = ACTIONS(7716), + [anon_sym_enum] = ACTIONS(7716), + [anon_sym_struct] = ACTIONS(7716), + [anon_sym_union] = ACTIONS(7716), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7716), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7716), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7716), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7716), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7716), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7716), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7716), + [anon_sym_NS_AVAILABLE] = ACTIONS(7716), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7716), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7716), + [anon_sym_API_AVAILABLE] = ACTIONS(7716), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7716), + [anon_sym_API_DEPRECATED] = ACTIONS(7716), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7716), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7716), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7716), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7716), + [anon_sym___deprecated_msg] = ACTIONS(7716), + [anon_sym___deprecated_enum_msg] = ACTIONS(7716), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7716), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7716), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7716), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7716), + [anon_sym_NS_ENUM] = ACTIONS(7716), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7716), + [anon_sym_NS_OPTIONS] = ACTIONS(7716), + [anon_sym_typeof] = ACTIONS(7716), + [anon_sym___typeof] = ACTIONS(7716), + [anon_sym___typeof__] = ACTIONS(7716), + [sym_id] = ACTIONS(7716), + [sym_instancetype] = ACTIONS(7716), + [sym_Class] = ACTIONS(7716), + [sym_SEL] = ACTIONS(7716), + [sym_IMP] = ACTIONS(7716), + [sym_BOOL] = ACTIONS(7716), + [sym_auto] = ACTIONS(7716), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3239] = { + [sym_identifier] = ACTIONS(1744), + [aux_sym_preproc_def_token1] = ACTIONS(1744), + [aux_sym_preproc_if_token1] = ACTIONS(1744), + [aux_sym_preproc_if_token2] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1744), + [sym_preproc_directive] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1744), + [anon_sym___attribute] = ACTIONS(1744), + [anon_sym___attribute__] = ACTIONS(1744), + [anon_sym___declspec] = ACTIONS(1744), + [anon_sym_static] = ACTIONS(1744), + [anon_sym_auto] = ACTIONS(1744), + [anon_sym_register] = ACTIONS(1744), + [anon_sym_inline] = ACTIONS(1744), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym__Atomic] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_out] = ACTIONS(1744), + [anon_sym_inout] = ACTIONS(1744), + [anon_sym_bycopy] = ACTIONS(1744), + [anon_sym_byref] = ACTIONS(1744), + [anon_sym_oneway] = ACTIONS(1744), + [anon_sym__Nullable] = ACTIONS(1744), + [anon_sym__Nonnull] = ACTIONS(1744), + [anon_sym__Nullable_result] = ACTIONS(1744), + [anon_sym__Null_unspecified] = ACTIONS(1744), + [anon_sym___autoreleasing] = ACTIONS(1744), + [anon_sym___nullable] = ACTIONS(1744), + [anon_sym___nonnull] = ACTIONS(1744), + [anon_sym___strong] = ACTIONS(1744), + [anon_sym___weak] = ACTIONS(1744), + [anon_sym___bridge] = ACTIONS(1744), + [anon_sym___bridge_transfer] = ACTIONS(1744), + [anon_sym___bridge_retained] = ACTIONS(1744), + [anon_sym___unsafe_unretained] = ACTIONS(1744), + [anon_sym___block] = ACTIONS(1744), + [anon_sym___kindof] = ACTIONS(1744), + [anon_sym___unused] = ACTIONS(1744), + [anon_sym__Complex] = ACTIONS(1744), + [anon_sym___complex] = ACTIONS(1744), + [anon_sym_IBOutlet] = ACTIONS(1744), + [anon_sym_IBInspectable] = ACTIONS(1744), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1744), + [anon_sym_signed] = ACTIONS(1744), + [anon_sym_unsigned] = ACTIONS(1744), + [anon_sym_long] = ACTIONS(1744), + [anon_sym_short] = ACTIONS(1744), + [sym_primitive_type] = ACTIONS(1744), + [anon_sym_enum] = ACTIONS(1744), + [anon_sym_struct] = ACTIONS(1744), + [anon_sym_union] = ACTIONS(1744), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(1744), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1744), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1744), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1744), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1744), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1744), + [anon_sym_NS_AVAILABLE] = ACTIONS(1744), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1744), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_API_AVAILABLE] = ACTIONS(1744), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_API_DEPRECATED] = ACTIONS(1744), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1744), + [anon_sym___deprecated_msg] = ACTIONS(1744), + [anon_sym___deprecated_enum_msg] = ACTIONS(1744), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_NS_ENUM] = ACTIONS(1744), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1744), + [anon_sym_NS_OPTIONS] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(1744), + [anon_sym___typeof] = ACTIONS(1744), + [anon_sym___typeof__] = ACTIONS(1744), + [sym_id] = ACTIONS(1744), + [sym_instancetype] = ACTIONS(1744), + [sym_Class] = ACTIONS(1744), + [sym_SEL] = ACTIONS(1744), + [sym_IMP] = ACTIONS(1744), + [sym_BOOL] = ACTIONS(1744), + [sym_auto] = ACTIONS(1744), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3240] = { + [sym_identifier] = ACTIONS(1704), + [aux_sym_preproc_def_token1] = ACTIONS(1704), + [aux_sym_preproc_if_token1] = ACTIONS(1704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1704), + [sym_preproc_directive] = ACTIONS(1704), + [anon_sym_extern] = ACTIONS(1704), + [anon_sym___attribute] = ACTIONS(1704), + [anon_sym___attribute__] = ACTIONS(1704), + [anon_sym___declspec] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_auto] = ACTIONS(1704), + [anon_sym_register] = ACTIONS(1704), + [anon_sym_inline] = ACTIONS(1704), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_volatile] = ACTIONS(1704), + [anon_sym_restrict] = ACTIONS(1704), + [anon_sym__Atomic] = ACTIONS(1704), + [anon_sym_in] = ACTIONS(1704), + [anon_sym_out] = ACTIONS(1704), + [anon_sym_inout] = ACTIONS(1704), + [anon_sym_bycopy] = ACTIONS(1704), + [anon_sym_byref] = ACTIONS(1704), + [anon_sym_oneway] = ACTIONS(1704), + [anon_sym__Nullable] = ACTIONS(1704), + [anon_sym__Nonnull] = ACTIONS(1704), + [anon_sym__Nullable_result] = ACTIONS(1704), + [anon_sym__Null_unspecified] = ACTIONS(1704), + [anon_sym___autoreleasing] = ACTIONS(1704), + [anon_sym___nullable] = ACTIONS(1704), + [anon_sym___nonnull] = ACTIONS(1704), + [anon_sym___strong] = ACTIONS(1704), + [anon_sym___weak] = ACTIONS(1704), + [anon_sym___bridge] = ACTIONS(1704), + [anon_sym___bridge_transfer] = ACTIONS(1704), + [anon_sym___bridge_retained] = ACTIONS(1704), + [anon_sym___unsafe_unretained] = ACTIONS(1704), + [anon_sym___block] = ACTIONS(1704), + [anon_sym___kindof] = ACTIONS(1704), + [anon_sym___unused] = ACTIONS(1704), + [anon_sym__Complex] = ACTIONS(1704), + [anon_sym___complex] = ACTIONS(1704), + [anon_sym_IBOutlet] = ACTIONS(1704), + [anon_sym_IBInspectable] = ACTIONS(1704), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1704), + [anon_sym_signed] = ACTIONS(1704), + [anon_sym_unsigned] = ACTIONS(1704), + [anon_sym_long] = ACTIONS(1704), + [anon_sym_short] = ACTIONS(1704), + [sym_primitive_type] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(1704), + [anon_sym_struct] = ACTIONS(1704), + [anon_sym_union] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(1704), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1704), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1704), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1704), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1704), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1704), + [anon_sym_NS_AVAILABLE] = ACTIONS(1704), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1704), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_API_AVAILABLE] = ACTIONS(1704), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_API_DEPRECATED] = ACTIONS(1704), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1704), + [anon_sym___deprecated_msg] = ACTIONS(1704), + [anon_sym___deprecated_enum_msg] = ACTIONS(1704), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_NS_ENUM] = ACTIONS(1704), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1704), + [anon_sym_NS_OPTIONS] = ACTIONS(1704), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym___typeof] = ACTIONS(1704), + [anon_sym___typeof__] = ACTIONS(1704), + [sym_id] = ACTIONS(1704), + [sym_instancetype] = ACTIONS(1704), + [sym_Class] = ACTIONS(1704), + [sym_SEL] = ACTIONS(1704), + [sym_IMP] = ACTIONS(1704), + [sym_BOOL] = ACTIONS(1704), + [sym_auto] = ACTIONS(1704), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3241] = { + [sym_identifier] = ACTIONS(1744), + [aux_sym_preproc_def_token1] = ACTIONS(1744), + [aux_sym_preproc_if_token1] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1744), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1744), + [sym_preproc_directive] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1744), + [anon_sym___attribute] = ACTIONS(1744), + [anon_sym___attribute__] = ACTIONS(1744), + [anon_sym___declspec] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(1744), + [anon_sym_auto] = ACTIONS(1744), + [anon_sym_register] = ACTIONS(1744), + [anon_sym_inline] = ACTIONS(1744), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_volatile] = ACTIONS(1744), + [anon_sym_restrict] = ACTIONS(1744), + [anon_sym__Atomic] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_out] = ACTIONS(1744), + [anon_sym_inout] = ACTIONS(1744), + [anon_sym_bycopy] = ACTIONS(1744), + [anon_sym_byref] = ACTIONS(1744), + [anon_sym_oneway] = ACTIONS(1744), + [anon_sym__Nullable] = ACTIONS(1744), + [anon_sym__Nonnull] = ACTIONS(1744), + [anon_sym__Nullable_result] = ACTIONS(1744), + [anon_sym__Null_unspecified] = ACTIONS(1744), + [anon_sym___autoreleasing] = ACTIONS(1744), + [anon_sym___nullable] = ACTIONS(1744), + [anon_sym___nonnull] = ACTIONS(1744), + [anon_sym___strong] = ACTIONS(1744), + [anon_sym___weak] = ACTIONS(1744), + [anon_sym___bridge] = ACTIONS(1744), + [anon_sym___bridge_transfer] = ACTIONS(1744), + [anon_sym___bridge_retained] = ACTIONS(1744), + [anon_sym___unsafe_unretained] = ACTIONS(1744), + [anon_sym___block] = ACTIONS(1744), + [anon_sym___kindof] = ACTIONS(1744), + [anon_sym___unused] = ACTIONS(1744), + [anon_sym__Complex] = ACTIONS(1744), + [anon_sym___complex] = ACTIONS(1744), + [anon_sym_IBOutlet] = ACTIONS(1744), + [anon_sym_IBInspectable] = ACTIONS(1744), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1744), + [anon_sym_signed] = ACTIONS(1744), + [anon_sym_unsigned] = ACTIONS(1744), + [anon_sym_long] = ACTIONS(1744), + [anon_sym_short] = ACTIONS(1744), + [sym_primitive_type] = ACTIONS(1744), + [anon_sym_enum] = ACTIONS(1744), + [anon_sym_struct] = ACTIONS(1744), + [anon_sym_union] = ACTIONS(1744), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(1744), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1744), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1744), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1744), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1744), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1744), + [anon_sym_NS_AVAILABLE] = ACTIONS(1744), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1744), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_API_AVAILABLE] = ACTIONS(1744), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_API_DEPRECATED] = ACTIONS(1744), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1744), + [anon_sym___deprecated_msg] = ACTIONS(1744), + [anon_sym___deprecated_enum_msg] = ACTIONS(1744), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1744), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1744), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1744), + [anon_sym_NS_ENUM] = ACTIONS(1744), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1744), + [anon_sym_NS_OPTIONS] = ACTIONS(1744), + [anon_sym_typeof] = ACTIONS(1744), + [anon_sym___typeof] = ACTIONS(1744), + [anon_sym___typeof__] = ACTIONS(1744), + [sym_id] = ACTIONS(1744), + [sym_instancetype] = ACTIONS(1744), + [sym_Class] = ACTIONS(1744), + [sym_SEL] = ACTIONS(1744), + [sym_IMP] = ACTIONS(1744), + [sym_BOOL] = ACTIONS(1744), + [sym_auto] = ACTIONS(1744), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3242] = { + [sym_identifier] = ACTIONS(1748), + [aux_sym_preproc_def_token1] = ACTIONS(1748), + [aux_sym_preproc_if_token1] = ACTIONS(1748), + [aux_sym_preproc_if_token2] = ACTIONS(1748), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1748), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1748), + [sym_preproc_directive] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym___attribute] = ACTIONS(1748), + [anon_sym___attribute__] = ACTIONS(1748), + [anon_sym___declspec] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_auto] = ACTIONS(1748), + [anon_sym_register] = ACTIONS(1748), + [anon_sym_inline] = ACTIONS(1748), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_volatile] = ACTIONS(1748), + [anon_sym_restrict] = ACTIONS(1748), + [anon_sym__Atomic] = ACTIONS(1748), + [anon_sym_in] = ACTIONS(1748), + [anon_sym_out] = ACTIONS(1748), + [anon_sym_inout] = ACTIONS(1748), + [anon_sym_bycopy] = ACTIONS(1748), + [anon_sym_byref] = ACTIONS(1748), + [anon_sym_oneway] = ACTIONS(1748), + [anon_sym__Nullable] = ACTIONS(1748), + [anon_sym__Nonnull] = ACTIONS(1748), + [anon_sym__Nullable_result] = ACTIONS(1748), + [anon_sym__Null_unspecified] = ACTIONS(1748), + [anon_sym___autoreleasing] = ACTIONS(1748), + [anon_sym___nullable] = ACTIONS(1748), + [anon_sym___nonnull] = ACTIONS(1748), + [anon_sym___strong] = ACTIONS(1748), + [anon_sym___weak] = ACTIONS(1748), + [anon_sym___bridge] = ACTIONS(1748), + [anon_sym___bridge_transfer] = ACTIONS(1748), + [anon_sym___bridge_retained] = ACTIONS(1748), + [anon_sym___unsafe_unretained] = ACTIONS(1748), + [anon_sym___block] = ACTIONS(1748), + [anon_sym___kindof] = ACTIONS(1748), + [anon_sym___unused] = ACTIONS(1748), + [anon_sym__Complex] = ACTIONS(1748), + [anon_sym___complex] = ACTIONS(1748), + [anon_sym_IBOutlet] = ACTIONS(1748), + [anon_sym_IBInspectable] = ACTIONS(1748), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1748), + [anon_sym_signed] = ACTIONS(1748), + [anon_sym_unsigned] = ACTIONS(1748), + [anon_sym_long] = ACTIONS(1748), + [anon_sym_short] = ACTIONS(1748), + [sym_primitive_type] = ACTIONS(1748), + [anon_sym_enum] = ACTIONS(1748), + [anon_sym_struct] = ACTIONS(1748), + [anon_sym_union] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(1748), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1748), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1748), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1748), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1748), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1748), + [anon_sym_NS_AVAILABLE] = ACTIONS(1748), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1748), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_API_AVAILABLE] = ACTIONS(1748), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_API_DEPRECATED] = ACTIONS(1748), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1748), + [anon_sym___deprecated_msg] = ACTIONS(1748), + [anon_sym___deprecated_enum_msg] = ACTIONS(1748), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_NS_ENUM] = ACTIONS(1748), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1748), + [anon_sym_NS_OPTIONS] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(1748), + [anon_sym___typeof] = ACTIONS(1748), + [anon_sym___typeof__] = ACTIONS(1748), + [sym_id] = ACTIONS(1748), + [sym_instancetype] = ACTIONS(1748), + [sym_Class] = ACTIONS(1748), + [sym_SEL] = ACTIONS(1748), + [sym_IMP] = ACTIONS(1748), + [sym_BOOL] = ACTIONS(1748), + [sym_auto] = ACTIONS(1748), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3243] = { + [sym_string_literal] = STATE(2693), + [sym_identifier] = ACTIONS(7831), + [anon_sym_extern] = ACTIONS(7831), + [anon_sym___attribute] = ACTIONS(7831), + [anon_sym___attribute__] = ACTIONS(7831), + [anon_sym___declspec] = ACTIONS(7831), + [anon_sym_static] = ACTIONS(7831), + [anon_sym_auto] = ACTIONS(7831), + [anon_sym_register] = ACTIONS(7831), + [anon_sym_inline] = ACTIONS(7831), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7831), + [anon_sym_const] = ACTIONS(7831), + [anon_sym_volatile] = ACTIONS(7831), + [anon_sym_restrict] = ACTIONS(7831), + [anon_sym__Atomic] = ACTIONS(7831), + [anon_sym_in] = ACTIONS(7831), + [anon_sym_out] = ACTIONS(7831), + [anon_sym_inout] = ACTIONS(7831), + [anon_sym_bycopy] = ACTIONS(7831), + [anon_sym_byref] = ACTIONS(7831), + [anon_sym_oneway] = ACTIONS(7831), + [anon_sym__Nullable] = ACTIONS(7831), + [anon_sym__Nonnull] = ACTIONS(7831), + [anon_sym__Nullable_result] = ACTIONS(7831), + [anon_sym__Null_unspecified] = ACTIONS(7831), + [anon_sym___autoreleasing] = ACTIONS(7831), + [anon_sym___nullable] = ACTIONS(7831), + [anon_sym___nonnull] = ACTIONS(7831), + [anon_sym___strong] = ACTIONS(7831), + [anon_sym___weak] = ACTIONS(7831), + [anon_sym___bridge] = ACTIONS(7831), + [anon_sym___bridge_transfer] = ACTIONS(7831), + [anon_sym___bridge_retained] = ACTIONS(7831), + [anon_sym___unsafe_unretained] = ACTIONS(7831), + [anon_sym___block] = ACTIONS(7831), + [anon_sym___kindof] = ACTIONS(7831), + [anon_sym___unused] = ACTIONS(7831), + [anon_sym__Complex] = ACTIONS(7831), + [anon_sym___complex] = ACTIONS(7831), + [anon_sym_IBOutlet] = ACTIONS(7831), + [anon_sym_IBInspectable] = ACTIONS(7831), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7831), + [anon_sym_signed] = ACTIONS(7831), + [anon_sym_unsigned] = ACTIONS(7831), + [anon_sym_long] = ACTIONS(7831), + [anon_sym_short] = ACTIONS(7831), + [sym_primitive_type] = ACTIONS(7831), + [anon_sym_enum] = ACTIONS(7831), + [anon_sym_struct] = ACTIONS(7831), + [anon_sym_union] = ACTIONS(7831), + [anon_sym_L_DQUOTE] = ACTIONS(7833), + [anon_sym_u_DQUOTE] = ACTIONS(7833), + [anon_sym_U_DQUOTE] = ACTIONS(7833), + [anon_sym_u8_DQUOTE] = ACTIONS(7833), + [anon_sym_DQUOTE] = ACTIONS(7833), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7831), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7831), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7831), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7831), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7831), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7831), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7831), + [anon_sym_NS_AVAILABLE] = ACTIONS(7831), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7831), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_API_AVAILABLE] = ACTIONS(7831), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7831), + [anon_sym_API_DEPRECATED] = ACTIONS(7831), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7831), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7831), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7831), + [anon_sym___deprecated_msg] = ACTIONS(7831), + [anon_sym___deprecated_enum_msg] = ACTIONS(7831), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7831), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7831), + [anon_sym_NS_ENUM] = ACTIONS(7831), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7831), + [anon_sym_NS_OPTIONS] = ACTIONS(7831), + [anon_sym_typeof] = ACTIONS(7831), + [anon_sym___typeof] = ACTIONS(7831), + [anon_sym___typeof__] = ACTIONS(7831), + [sym_id] = ACTIONS(7831), + [sym_instancetype] = ACTIONS(7831), + [sym_Class] = ACTIONS(7831), + [sym_SEL] = ACTIONS(7831), + [sym_IMP] = ACTIONS(7831), + [sym_BOOL] = ACTIONS(7831), + [sym_auto] = ACTIONS(7831), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3244] = { + [sym_identifier] = ACTIONS(7694), + [aux_sym_preproc_def_token1] = ACTIONS(7694), + [aux_sym_preproc_if_token1] = ACTIONS(7694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7694), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7694), + [sym_preproc_directive] = ACTIONS(7694), + [anon_sym_extern] = ACTIONS(7694), + [anon_sym___attribute] = ACTIONS(7694), + [anon_sym___attribute__] = ACTIONS(7694), + [anon_sym___declspec] = ACTIONS(7694), + [anon_sym_RBRACE] = ACTIONS(7835), + [anon_sym_static] = ACTIONS(7694), + [anon_sym_auto] = ACTIONS(7694), + [anon_sym_register] = ACTIONS(7694), + [anon_sym_inline] = ACTIONS(7694), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7694), + [anon_sym_const] = ACTIONS(7694), + [anon_sym_volatile] = ACTIONS(7694), + [anon_sym_restrict] = ACTIONS(7694), + [anon_sym__Atomic] = ACTIONS(7694), + [anon_sym_in] = ACTIONS(7694), + [anon_sym_out] = ACTIONS(7694), + [anon_sym_inout] = ACTIONS(7694), + [anon_sym_bycopy] = ACTIONS(7694), + [anon_sym_byref] = ACTIONS(7694), + [anon_sym_oneway] = ACTIONS(7694), + [anon_sym__Nullable] = ACTIONS(7694), + [anon_sym__Nonnull] = ACTIONS(7694), + [anon_sym__Nullable_result] = ACTIONS(7694), + [anon_sym__Null_unspecified] = ACTIONS(7694), + [anon_sym___autoreleasing] = ACTIONS(7694), + [anon_sym___nullable] = ACTIONS(7694), + [anon_sym___nonnull] = ACTIONS(7694), + [anon_sym___strong] = ACTIONS(7694), + [anon_sym___weak] = ACTIONS(7694), + [anon_sym___bridge] = ACTIONS(7694), + [anon_sym___bridge_transfer] = ACTIONS(7694), + [anon_sym___bridge_retained] = ACTIONS(7694), + [anon_sym___unsafe_unretained] = ACTIONS(7694), + [anon_sym___block] = ACTIONS(7694), + [anon_sym___kindof] = ACTIONS(7694), + [anon_sym___unused] = ACTIONS(7694), + [anon_sym__Complex] = ACTIONS(7694), + [anon_sym___complex] = ACTIONS(7694), + [anon_sym_IBOutlet] = ACTIONS(7694), + [anon_sym_IBInspectable] = ACTIONS(7694), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7694), + [anon_sym_signed] = ACTIONS(7694), + [anon_sym_unsigned] = ACTIONS(7694), + [anon_sym_long] = ACTIONS(7694), + [anon_sym_short] = ACTIONS(7694), + [sym_primitive_type] = ACTIONS(7694), + [anon_sym_enum] = ACTIONS(7694), + [anon_sym_struct] = ACTIONS(7694), + [anon_sym_union] = ACTIONS(7694), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7694), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7694), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7694), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7694), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7694), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7694), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7694), + [anon_sym_NS_AVAILABLE] = ACTIONS(7694), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7694), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7694), + [anon_sym_API_AVAILABLE] = ACTIONS(7694), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7694), + [anon_sym_API_DEPRECATED] = ACTIONS(7694), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7694), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7694), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7694), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7694), + [anon_sym___deprecated_msg] = ACTIONS(7694), + [anon_sym___deprecated_enum_msg] = ACTIONS(7694), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7694), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7694), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7694), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7694), + [anon_sym_NS_ENUM] = ACTIONS(7694), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7694), + [anon_sym_NS_OPTIONS] = ACTIONS(7694), + [anon_sym_typeof] = ACTIONS(7694), + [anon_sym___typeof] = ACTIONS(7694), + [anon_sym___typeof__] = ACTIONS(7694), + [sym_id] = ACTIONS(7694), + [sym_instancetype] = ACTIONS(7694), + [sym_Class] = ACTIONS(7694), + [sym_SEL] = ACTIONS(7694), + [sym_IMP] = ACTIONS(7694), + [sym_BOOL] = ACTIONS(7694), + [sym_auto] = ACTIONS(7694), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3245] = { + [sym_identifier] = ACTIONS(7734), + [aux_sym_preproc_def_token1] = ACTIONS(7734), + [aux_sym_preproc_if_token1] = ACTIONS(7734), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7734), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7734), + [sym_preproc_directive] = ACTIONS(7734), + [anon_sym_extern] = ACTIONS(7734), + [anon_sym___attribute] = ACTIONS(7734), + [anon_sym___attribute__] = ACTIONS(7734), + [anon_sym___declspec] = ACTIONS(7734), + [anon_sym_RBRACE] = ACTIONS(7837), + [anon_sym_static] = ACTIONS(7734), + [anon_sym_auto] = ACTIONS(7734), + [anon_sym_register] = ACTIONS(7734), + [anon_sym_inline] = ACTIONS(7734), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7734), + [anon_sym_const] = ACTIONS(7734), + [anon_sym_volatile] = ACTIONS(7734), + [anon_sym_restrict] = ACTIONS(7734), + [anon_sym__Atomic] = ACTIONS(7734), + [anon_sym_in] = ACTIONS(7734), + [anon_sym_out] = ACTIONS(7734), + [anon_sym_inout] = ACTIONS(7734), + [anon_sym_bycopy] = ACTIONS(7734), + [anon_sym_byref] = ACTIONS(7734), + [anon_sym_oneway] = ACTIONS(7734), + [anon_sym__Nullable] = ACTIONS(7734), + [anon_sym__Nonnull] = ACTIONS(7734), + [anon_sym__Nullable_result] = ACTIONS(7734), + [anon_sym__Null_unspecified] = ACTIONS(7734), + [anon_sym___autoreleasing] = ACTIONS(7734), + [anon_sym___nullable] = ACTIONS(7734), + [anon_sym___nonnull] = ACTIONS(7734), + [anon_sym___strong] = ACTIONS(7734), + [anon_sym___weak] = ACTIONS(7734), + [anon_sym___bridge] = ACTIONS(7734), + [anon_sym___bridge_transfer] = ACTIONS(7734), + [anon_sym___bridge_retained] = ACTIONS(7734), + [anon_sym___unsafe_unretained] = ACTIONS(7734), + [anon_sym___block] = ACTIONS(7734), + [anon_sym___kindof] = ACTIONS(7734), + [anon_sym___unused] = ACTIONS(7734), + [anon_sym__Complex] = ACTIONS(7734), + [anon_sym___complex] = ACTIONS(7734), + [anon_sym_IBOutlet] = ACTIONS(7734), + [anon_sym_IBInspectable] = ACTIONS(7734), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7734), + [anon_sym_signed] = ACTIONS(7734), + [anon_sym_unsigned] = ACTIONS(7734), + [anon_sym_long] = ACTIONS(7734), + [anon_sym_short] = ACTIONS(7734), + [sym_primitive_type] = ACTIONS(7734), + [anon_sym_enum] = ACTIONS(7734), + [anon_sym_struct] = ACTIONS(7734), + [anon_sym_union] = ACTIONS(7734), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7734), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7734), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7734), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7734), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7734), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7734), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7734), + [anon_sym_NS_AVAILABLE] = ACTIONS(7734), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7734), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7734), + [anon_sym_API_AVAILABLE] = ACTIONS(7734), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7734), + [anon_sym_API_DEPRECATED] = ACTIONS(7734), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7734), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7734), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7734), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7734), + [anon_sym___deprecated_msg] = ACTIONS(7734), + [anon_sym___deprecated_enum_msg] = ACTIONS(7734), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7734), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7734), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7734), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7734), + [anon_sym_NS_ENUM] = ACTIONS(7734), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7734), + [anon_sym_NS_OPTIONS] = ACTIONS(7734), + [anon_sym_typeof] = ACTIONS(7734), + [anon_sym___typeof] = ACTIONS(7734), + [anon_sym___typeof__] = ACTIONS(7734), + [sym_id] = ACTIONS(7734), + [sym_instancetype] = ACTIONS(7734), + [sym_Class] = ACTIONS(7734), + [sym_SEL] = ACTIONS(7734), + [sym_IMP] = ACTIONS(7734), + [sym_BOOL] = ACTIONS(7734), + [sym_auto] = ACTIONS(7734), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3246] = { + [sym_identifier] = ACTIONS(1704), + [aux_sym_preproc_def_token1] = ACTIONS(1704), + [aux_sym_preproc_if_token1] = ACTIONS(1704), + [aux_sym_preproc_if_token2] = ACTIONS(1704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1704), + [sym_preproc_directive] = ACTIONS(1704), + [anon_sym_extern] = ACTIONS(1704), + [anon_sym___attribute] = ACTIONS(1704), + [anon_sym___attribute__] = ACTIONS(1704), + [anon_sym___declspec] = ACTIONS(1704), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_auto] = ACTIONS(1704), + [anon_sym_register] = ACTIONS(1704), + [anon_sym_inline] = ACTIONS(1704), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_volatile] = ACTIONS(1704), + [anon_sym_restrict] = ACTIONS(1704), + [anon_sym__Atomic] = ACTIONS(1704), + [anon_sym_in] = ACTIONS(1704), + [anon_sym_out] = ACTIONS(1704), + [anon_sym_inout] = ACTIONS(1704), + [anon_sym_bycopy] = ACTIONS(1704), + [anon_sym_byref] = ACTIONS(1704), + [anon_sym_oneway] = ACTIONS(1704), + [anon_sym__Nullable] = ACTIONS(1704), + [anon_sym__Nonnull] = ACTIONS(1704), + [anon_sym__Nullable_result] = ACTIONS(1704), + [anon_sym__Null_unspecified] = ACTIONS(1704), + [anon_sym___autoreleasing] = ACTIONS(1704), + [anon_sym___nullable] = ACTIONS(1704), + [anon_sym___nonnull] = ACTIONS(1704), + [anon_sym___strong] = ACTIONS(1704), + [anon_sym___weak] = ACTIONS(1704), + [anon_sym___bridge] = ACTIONS(1704), + [anon_sym___bridge_transfer] = ACTIONS(1704), + [anon_sym___bridge_retained] = ACTIONS(1704), + [anon_sym___unsafe_unretained] = ACTIONS(1704), + [anon_sym___block] = ACTIONS(1704), + [anon_sym___kindof] = ACTIONS(1704), + [anon_sym___unused] = ACTIONS(1704), + [anon_sym__Complex] = ACTIONS(1704), + [anon_sym___complex] = ACTIONS(1704), + [anon_sym_IBOutlet] = ACTIONS(1704), + [anon_sym_IBInspectable] = ACTIONS(1704), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1704), + [anon_sym_signed] = ACTIONS(1704), + [anon_sym_unsigned] = ACTIONS(1704), + [anon_sym_long] = ACTIONS(1704), + [anon_sym_short] = ACTIONS(1704), + [sym_primitive_type] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(1704), + [anon_sym_struct] = ACTIONS(1704), + [anon_sym_union] = ACTIONS(1704), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(1704), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1704), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1704), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1704), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1704), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1704), + [anon_sym_NS_AVAILABLE] = ACTIONS(1704), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1704), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_API_AVAILABLE] = ACTIONS(1704), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_API_DEPRECATED] = ACTIONS(1704), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1704), + [anon_sym___deprecated_msg] = ACTIONS(1704), + [anon_sym___deprecated_enum_msg] = ACTIONS(1704), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1704), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1704), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1704), + [anon_sym_NS_ENUM] = ACTIONS(1704), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1704), + [anon_sym_NS_OPTIONS] = ACTIONS(1704), + [anon_sym_typeof] = ACTIONS(1704), + [anon_sym___typeof] = ACTIONS(1704), + [anon_sym___typeof__] = ACTIONS(1704), + [sym_id] = ACTIONS(1704), + [sym_instancetype] = ACTIONS(1704), + [sym_Class] = ACTIONS(1704), + [sym_SEL] = ACTIONS(1704), + [sym_IMP] = ACTIONS(1704), + [sym_BOOL] = ACTIONS(1704), + [sym_auto] = ACTIONS(1704), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3247] = { + [sym_identifier] = ACTIONS(1748), + [aux_sym_preproc_def_token1] = ACTIONS(1748), + [aux_sym_preproc_if_token1] = ACTIONS(1748), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1748), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1748), + [sym_preproc_directive] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym___attribute] = ACTIONS(1748), + [anon_sym___attribute__] = ACTIONS(1748), + [anon_sym___declspec] = ACTIONS(1748), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_auto] = ACTIONS(1748), + [anon_sym_register] = ACTIONS(1748), + [anon_sym_inline] = ACTIONS(1748), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_volatile] = ACTIONS(1748), + [anon_sym_restrict] = ACTIONS(1748), + [anon_sym__Atomic] = ACTIONS(1748), + [anon_sym_in] = ACTIONS(1748), + [anon_sym_out] = ACTIONS(1748), + [anon_sym_inout] = ACTIONS(1748), + [anon_sym_bycopy] = ACTIONS(1748), + [anon_sym_byref] = ACTIONS(1748), + [anon_sym_oneway] = ACTIONS(1748), + [anon_sym__Nullable] = ACTIONS(1748), + [anon_sym__Nonnull] = ACTIONS(1748), + [anon_sym__Nullable_result] = ACTIONS(1748), + [anon_sym__Null_unspecified] = ACTIONS(1748), + [anon_sym___autoreleasing] = ACTIONS(1748), + [anon_sym___nullable] = ACTIONS(1748), + [anon_sym___nonnull] = ACTIONS(1748), + [anon_sym___strong] = ACTIONS(1748), + [anon_sym___weak] = ACTIONS(1748), + [anon_sym___bridge] = ACTIONS(1748), + [anon_sym___bridge_transfer] = ACTIONS(1748), + [anon_sym___bridge_retained] = ACTIONS(1748), + [anon_sym___unsafe_unretained] = ACTIONS(1748), + [anon_sym___block] = ACTIONS(1748), + [anon_sym___kindof] = ACTIONS(1748), + [anon_sym___unused] = ACTIONS(1748), + [anon_sym__Complex] = ACTIONS(1748), + [anon_sym___complex] = ACTIONS(1748), + [anon_sym_IBOutlet] = ACTIONS(1748), + [anon_sym_IBInspectable] = ACTIONS(1748), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1748), + [anon_sym_signed] = ACTIONS(1748), + [anon_sym_unsigned] = ACTIONS(1748), + [anon_sym_long] = ACTIONS(1748), + [anon_sym_short] = ACTIONS(1748), + [sym_primitive_type] = ACTIONS(1748), + [anon_sym_enum] = ACTIONS(1748), + [anon_sym_struct] = ACTIONS(1748), + [anon_sym_union] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(1748), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1748), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1748), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1748), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1748), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1748), + [anon_sym_NS_AVAILABLE] = ACTIONS(1748), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1748), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_API_AVAILABLE] = ACTIONS(1748), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_API_DEPRECATED] = ACTIONS(1748), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1748), + [anon_sym___deprecated_msg] = ACTIONS(1748), + [anon_sym___deprecated_enum_msg] = ACTIONS(1748), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1748), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1748), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1748), + [anon_sym_NS_ENUM] = ACTIONS(1748), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1748), + [anon_sym_NS_OPTIONS] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(1748), + [anon_sym___typeof] = ACTIONS(1748), + [anon_sym___typeof__] = ACTIONS(1748), + [sym_id] = ACTIONS(1748), + [sym_instancetype] = ACTIONS(1748), + [sym_Class] = ACTIONS(1748), + [sym_SEL] = ACTIONS(1748), + [sym_IMP] = ACTIONS(1748), + [sym_BOOL] = ACTIONS(1748), + [sym_auto] = ACTIONS(1748), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3248] = { + [sym_string_literal] = STATE(2702), + [sym_identifier] = ACTIONS(7831), + [anon_sym_extern] = ACTIONS(7831), + [anon_sym___attribute] = ACTIONS(7831), + [anon_sym___attribute__] = ACTIONS(7831), + [anon_sym___declspec] = ACTIONS(7831), + [anon_sym_static] = ACTIONS(7831), + [anon_sym_auto] = ACTIONS(7831), + [anon_sym_register] = ACTIONS(7831), + [anon_sym_inline] = ACTIONS(7831), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7831), + [anon_sym_const] = ACTIONS(7831), + [anon_sym_volatile] = ACTIONS(7831), + [anon_sym_restrict] = ACTIONS(7831), + [anon_sym__Atomic] = ACTIONS(7831), + [anon_sym_in] = ACTIONS(7831), + [anon_sym_out] = ACTIONS(7831), + [anon_sym_inout] = ACTIONS(7831), + [anon_sym_bycopy] = ACTIONS(7831), + [anon_sym_byref] = ACTIONS(7831), + [anon_sym_oneway] = ACTIONS(7831), + [anon_sym__Nullable] = ACTIONS(7831), + [anon_sym__Nonnull] = ACTIONS(7831), + [anon_sym__Nullable_result] = ACTIONS(7831), + [anon_sym__Null_unspecified] = ACTIONS(7831), + [anon_sym___autoreleasing] = ACTIONS(7831), + [anon_sym___nullable] = ACTIONS(7831), + [anon_sym___nonnull] = ACTIONS(7831), + [anon_sym___strong] = ACTIONS(7831), + [anon_sym___weak] = ACTIONS(7831), + [anon_sym___bridge] = ACTIONS(7831), + [anon_sym___bridge_transfer] = ACTIONS(7831), + [anon_sym___bridge_retained] = ACTIONS(7831), + [anon_sym___unsafe_unretained] = ACTIONS(7831), + [anon_sym___block] = ACTIONS(7831), + [anon_sym___kindof] = ACTIONS(7831), + [anon_sym___unused] = ACTIONS(7831), + [anon_sym__Complex] = ACTIONS(7831), + [anon_sym___complex] = ACTIONS(7831), + [anon_sym_IBOutlet] = ACTIONS(7831), + [anon_sym_IBInspectable] = ACTIONS(7831), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7831), + [anon_sym_signed] = ACTIONS(7831), + [anon_sym_unsigned] = ACTIONS(7831), + [anon_sym_long] = ACTIONS(7831), + [anon_sym_short] = ACTIONS(7831), + [sym_primitive_type] = ACTIONS(7831), + [anon_sym_enum] = ACTIONS(7831), + [anon_sym_struct] = ACTIONS(7831), + [anon_sym_union] = ACTIONS(7831), + [anon_sym_L_DQUOTE] = ACTIONS(7833), + [anon_sym_u_DQUOTE] = ACTIONS(7833), + [anon_sym_U_DQUOTE] = ACTIONS(7833), + [anon_sym_u8_DQUOTE] = ACTIONS(7833), + [anon_sym_DQUOTE] = ACTIONS(7833), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7831), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7831), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7831), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7831), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7831), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7831), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7831), + [anon_sym_NS_AVAILABLE] = ACTIONS(7831), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7831), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_API_AVAILABLE] = ACTIONS(7831), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7831), + [anon_sym_API_DEPRECATED] = ACTIONS(7831), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7831), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7831), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7831), + [anon_sym___deprecated_msg] = ACTIONS(7831), + [anon_sym___deprecated_enum_msg] = ACTIONS(7831), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7831), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7831), + [anon_sym_NS_ENUM] = ACTIONS(7831), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7831), + [anon_sym_NS_OPTIONS] = ACTIONS(7831), + [anon_sym_typeof] = ACTIONS(7831), + [anon_sym___typeof] = ACTIONS(7831), + [anon_sym___typeof__] = ACTIONS(7831), + [sym_id] = ACTIONS(7831), + [sym_instancetype] = ACTIONS(7831), + [sym_Class] = ACTIONS(7831), + [sym_SEL] = ACTIONS(7831), + [sym_IMP] = ACTIONS(7831), + [sym_BOOL] = ACTIONS(7831), + [sym_auto] = ACTIONS(7831), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3249] = { + [sym_identifier] = ACTIONS(7682), + [aux_sym_preproc_def_token1] = ACTIONS(7682), + [aux_sym_preproc_if_token1] = ACTIONS(7682), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7682), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7682), + [sym_preproc_directive] = ACTIONS(7682), + [anon_sym_extern] = ACTIONS(7682), + [anon_sym___attribute] = ACTIONS(7682), + [anon_sym___attribute__] = ACTIONS(7682), + [anon_sym___declspec] = ACTIONS(7682), + [anon_sym_RBRACE] = ACTIONS(7839), + [anon_sym_static] = ACTIONS(7682), + [anon_sym_auto] = ACTIONS(7682), + [anon_sym_register] = ACTIONS(7682), + [anon_sym_inline] = ACTIONS(7682), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7682), + [anon_sym_const] = ACTIONS(7682), + [anon_sym_volatile] = ACTIONS(7682), + [anon_sym_restrict] = ACTIONS(7682), + [anon_sym__Atomic] = ACTIONS(7682), + [anon_sym_in] = ACTIONS(7682), + [anon_sym_out] = ACTIONS(7682), + [anon_sym_inout] = ACTIONS(7682), + [anon_sym_bycopy] = ACTIONS(7682), + [anon_sym_byref] = ACTIONS(7682), + [anon_sym_oneway] = ACTIONS(7682), + [anon_sym__Nullable] = ACTIONS(7682), + [anon_sym__Nonnull] = ACTIONS(7682), + [anon_sym__Nullable_result] = ACTIONS(7682), + [anon_sym__Null_unspecified] = ACTIONS(7682), + [anon_sym___autoreleasing] = ACTIONS(7682), + [anon_sym___nullable] = ACTIONS(7682), + [anon_sym___nonnull] = ACTIONS(7682), + [anon_sym___strong] = ACTIONS(7682), + [anon_sym___weak] = ACTIONS(7682), + [anon_sym___bridge] = ACTIONS(7682), + [anon_sym___bridge_transfer] = ACTIONS(7682), + [anon_sym___bridge_retained] = ACTIONS(7682), + [anon_sym___unsafe_unretained] = ACTIONS(7682), + [anon_sym___block] = ACTIONS(7682), + [anon_sym___kindof] = ACTIONS(7682), + [anon_sym___unused] = ACTIONS(7682), + [anon_sym__Complex] = ACTIONS(7682), + [anon_sym___complex] = ACTIONS(7682), + [anon_sym_IBOutlet] = ACTIONS(7682), + [anon_sym_IBInspectable] = ACTIONS(7682), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7682), + [anon_sym_signed] = ACTIONS(7682), + [anon_sym_unsigned] = ACTIONS(7682), + [anon_sym_long] = ACTIONS(7682), + [anon_sym_short] = ACTIONS(7682), + [sym_primitive_type] = ACTIONS(7682), + [anon_sym_enum] = ACTIONS(7682), + [anon_sym_struct] = ACTIONS(7682), + [anon_sym_union] = ACTIONS(7682), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7682), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7682), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7682), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7682), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7682), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7682), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7682), + [anon_sym_NS_AVAILABLE] = ACTIONS(7682), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7682), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7682), + [anon_sym_API_AVAILABLE] = ACTIONS(7682), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7682), + [anon_sym_API_DEPRECATED] = ACTIONS(7682), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7682), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7682), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7682), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7682), + [anon_sym___deprecated_msg] = ACTIONS(7682), + [anon_sym___deprecated_enum_msg] = ACTIONS(7682), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7682), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7682), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7682), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7682), + [anon_sym_NS_ENUM] = ACTIONS(7682), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7682), + [anon_sym_NS_OPTIONS] = ACTIONS(7682), + [anon_sym_typeof] = ACTIONS(7682), + [anon_sym___typeof] = ACTIONS(7682), + [anon_sym___typeof__] = ACTIONS(7682), + [sym_id] = ACTIONS(7682), + [sym_instancetype] = ACTIONS(7682), + [sym_Class] = ACTIONS(7682), + [sym_SEL] = ACTIONS(7682), + [sym_IMP] = ACTIONS(7682), + [sym_BOOL] = ACTIONS(7682), + [sym_auto] = ACTIONS(7682), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3250] = { + [sym_string_literal] = STATE(2690), + [sym_identifier] = ACTIONS(7831), + [anon_sym_extern] = ACTIONS(7831), + [anon_sym___attribute] = ACTIONS(7831), + [anon_sym___attribute__] = ACTIONS(7831), + [anon_sym___declspec] = ACTIONS(7831), + [anon_sym_static] = ACTIONS(7831), + [anon_sym_auto] = ACTIONS(7831), + [anon_sym_register] = ACTIONS(7831), + [anon_sym_inline] = ACTIONS(7831), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7831), + [anon_sym_const] = ACTIONS(7831), + [anon_sym_volatile] = ACTIONS(7831), + [anon_sym_restrict] = ACTIONS(7831), + [anon_sym__Atomic] = ACTIONS(7831), + [anon_sym_in] = ACTIONS(7831), + [anon_sym_out] = ACTIONS(7831), + [anon_sym_inout] = ACTIONS(7831), + [anon_sym_bycopy] = ACTIONS(7831), + [anon_sym_byref] = ACTIONS(7831), + [anon_sym_oneway] = ACTIONS(7831), + [anon_sym__Nullable] = ACTIONS(7831), + [anon_sym__Nonnull] = ACTIONS(7831), + [anon_sym__Nullable_result] = ACTIONS(7831), + [anon_sym__Null_unspecified] = ACTIONS(7831), + [anon_sym___autoreleasing] = ACTIONS(7831), + [anon_sym___nullable] = ACTIONS(7831), + [anon_sym___nonnull] = ACTIONS(7831), + [anon_sym___strong] = ACTIONS(7831), + [anon_sym___weak] = ACTIONS(7831), + [anon_sym___bridge] = ACTIONS(7831), + [anon_sym___bridge_transfer] = ACTIONS(7831), + [anon_sym___bridge_retained] = ACTIONS(7831), + [anon_sym___unsafe_unretained] = ACTIONS(7831), + [anon_sym___block] = ACTIONS(7831), + [anon_sym___kindof] = ACTIONS(7831), + [anon_sym___unused] = ACTIONS(7831), + [anon_sym__Complex] = ACTIONS(7831), + [anon_sym___complex] = ACTIONS(7831), + [anon_sym_IBOutlet] = ACTIONS(7831), + [anon_sym_IBInspectable] = ACTIONS(7831), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7831), + [anon_sym_signed] = ACTIONS(7831), + [anon_sym_unsigned] = ACTIONS(7831), + [anon_sym_long] = ACTIONS(7831), + [anon_sym_short] = ACTIONS(7831), + [sym_primitive_type] = ACTIONS(7831), + [anon_sym_enum] = ACTIONS(7831), + [anon_sym_struct] = ACTIONS(7831), + [anon_sym_union] = ACTIONS(7831), + [anon_sym_L_DQUOTE] = ACTIONS(7833), + [anon_sym_u_DQUOTE] = ACTIONS(7833), + [anon_sym_U_DQUOTE] = ACTIONS(7833), + [anon_sym_u8_DQUOTE] = ACTIONS(7833), + [anon_sym_DQUOTE] = ACTIONS(7833), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7831), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7831), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7831), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7831), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7831), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7831), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7831), + [anon_sym_NS_AVAILABLE] = ACTIONS(7831), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7831), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_API_AVAILABLE] = ACTIONS(7831), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7831), + [anon_sym_API_DEPRECATED] = ACTIONS(7831), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7831), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7831), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7831), + [anon_sym___deprecated_msg] = ACTIONS(7831), + [anon_sym___deprecated_enum_msg] = ACTIONS(7831), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7831), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7831), + [anon_sym_NS_ENUM] = ACTIONS(7831), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7831), + [anon_sym_NS_OPTIONS] = ACTIONS(7831), + [anon_sym_typeof] = ACTIONS(7831), + [anon_sym___typeof] = ACTIONS(7831), + [anon_sym___typeof__] = ACTIONS(7831), + [sym_id] = ACTIONS(7831), + [sym_instancetype] = ACTIONS(7831), + [sym_Class] = ACTIONS(7831), + [sym_SEL] = ACTIONS(7831), + [sym_IMP] = ACTIONS(7831), + [sym_BOOL] = ACTIONS(7831), + [sym_auto] = ACTIONS(7831), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3251] = { + [sym_identifier] = ACTIONS(7722), + [aux_sym_preproc_def_token1] = ACTIONS(7722), + [aux_sym_preproc_if_token1] = ACTIONS(7722), + [aux_sym_preproc_if_token2] = ACTIONS(7722), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7722), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7722), + [sym_preproc_directive] = ACTIONS(7722), + [anon_sym_extern] = ACTIONS(7722), + [anon_sym___attribute] = ACTIONS(7722), + [anon_sym___attribute__] = ACTIONS(7722), + [anon_sym___declspec] = ACTIONS(7722), + [anon_sym_static] = ACTIONS(7722), + [anon_sym_auto] = ACTIONS(7722), + [anon_sym_register] = ACTIONS(7722), + [anon_sym_inline] = ACTIONS(7722), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7722), + [anon_sym_const] = ACTIONS(7722), + [anon_sym_volatile] = ACTIONS(7722), + [anon_sym_restrict] = ACTIONS(7722), + [anon_sym__Atomic] = ACTIONS(7722), + [anon_sym_in] = ACTIONS(7722), + [anon_sym_out] = ACTIONS(7722), + [anon_sym_inout] = ACTIONS(7722), + [anon_sym_bycopy] = ACTIONS(7722), + [anon_sym_byref] = ACTIONS(7722), + [anon_sym_oneway] = ACTIONS(7722), + [anon_sym__Nullable] = ACTIONS(7722), + [anon_sym__Nonnull] = ACTIONS(7722), + [anon_sym__Nullable_result] = ACTIONS(7722), + [anon_sym__Null_unspecified] = ACTIONS(7722), + [anon_sym___autoreleasing] = ACTIONS(7722), + [anon_sym___nullable] = ACTIONS(7722), + [anon_sym___nonnull] = ACTIONS(7722), + [anon_sym___strong] = ACTIONS(7722), + [anon_sym___weak] = ACTIONS(7722), + [anon_sym___bridge] = ACTIONS(7722), + [anon_sym___bridge_transfer] = ACTIONS(7722), + [anon_sym___bridge_retained] = ACTIONS(7722), + [anon_sym___unsafe_unretained] = ACTIONS(7722), + [anon_sym___block] = ACTIONS(7722), + [anon_sym___kindof] = ACTIONS(7722), + [anon_sym___unused] = ACTIONS(7722), + [anon_sym__Complex] = ACTIONS(7722), + [anon_sym___complex] = ACTIONS(7722), + [anon_sym_IBOutlet] = ACTIONS(7722), + [anon_sym_IBInspectable] = ACTIONS(7722), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7722), + [anon_sym_signed] = ACTIONS(7722), + [anon_sym_unsigned] = ACTIONS(7722), + [anon_sym_long] = ACTIONS(7722), + [anon_sym_short] = ACTIONS(7722), + [sym_primitive_type] = ACTIONS(7722), + [anon_sym_enum] = ACTIONS(7722), + [anon_sym_struct] = ACTIONS(7722), + [anon_sym_union] = ACTIONS(7722), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7722), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7722), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7722), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7722), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7722), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7722), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7722), + [anon_sym_NS_AVAILABLE] = ACTIONS(7722), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7722), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7722), + [anon_sym_API_AVAILABLE] = ACTIONS(7722), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7722), + [anon_sym_API_DEPRECATED] = ACTIONS(7722), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7722), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7722), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7722), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7722), + [anon_sym___deprecated_msg] = ACTIONS(7722), + [anon_sym___deprecated_enum_msg] = ACTIONS(7722), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7722), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7722), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7722), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7722), + [anon_sym_NS_ENUM] = ACTIONS(7722), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7722), + [anon_sym_NS_OPTIONS] = ACTIONS(7722), + [anon_sym_typeof] = ACTIONS(7722), + [anon_sym___typeof] = ACTIONS(7722), + [anon_sym___typeof__] = ACTIONS(7722), + [sym_id] = ACTIONS(7722), + [sym_instancetype] = ACTIONS(7722), + [sym_Class] = ACTIONS(7722), + [sym_SEL] = ACTIONS(7722), + [sym_IMP] = ACTIONS(7722), + [sym_BOOL] = ACTIONS(7722), + [sym_auto] = ACTIONS(7722), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3252] = { + [sym_identifier] = ACTIONS(7724), + [aux_sym_preproc_def_token1] = ACTIONS(7724), + [aux_sym_preproc_if_token1] = ACTIONS(7724), + [aux_sym_preproc_if_token2] = ACTIONS(7724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7724), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7724), + [sym_preproc_directive] = ACTIONS(7724), + [anon_sym_extern] = ACTIONS(7724), + [anon_sym___attribute] = ACTIONS(7724), + [anon_sym___attribute__] = ACTIONS(7724), + [anon_sym___declspec] = ACTIONS(7724), + [anon_sym_static] = ACTIONS(7724), + [anon_sym_auto] = ACTIONS(7724), + [anon_sym_register] = ACTIONS(7724), + [anon_sym_inline] = ACTIONS(7724), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7724), + [anon_sym_const] = ACTIONS(7724), + [anon_sym_volatile] = ACTIONS(7724), + [anon_sym_restrict] = ACTIONS(7724), + [anon_sym__Atomic] = ACTIONS(7724), + [anon_sym_in] = ACTIONS(7724), + [anon_sym_out] = ACTIONS(7724), + [anon_sym_inout] = ACTIONS(7724), + [anon_sym_bycopy] = ACTIONS(7724), + [anon_sym_byref] = ACTIONS(7724), + [anon_sym_oneway] = ACTIONS(7724), + [anon_sym__Nullable] = ACTIONS(7724), + [anon_sym__Nonnull] = ACTIONS(7724), + [anon_sym__Nullable_result] = ACTIONS(7724), + [anon_sym__Null_unspecified] = ACTIONS(7724), + [anon_sym___autoreleasing] = ACTIONS(7724), + [anon_sym___nullable] = ACTIONS(7724), + [anon_sym___nonnull] = ACTIONS(7724), + [anon_sym___strong] = ACTIONS(7724), + [anon_sym___weak] = ACTIONS(7724), + [anon_sym___bridge] = ACTIONS(7724), + [anon_sym___bridge_transfer] = ACTIONS(7724), + [anon_sym___bridge_retained] = ACTIONS(7724), + [anon_sym___unsafe_unretained] = ACTIONS(7724), + [anon_sym___block] = ACTIONS(7724), + [anon_sym___kindof] = ACTIONS(7724), + [anon_sym___unused] = ACTIONS(7724), + [anon_sym__Complex] = ACTIONS(7724), + [anon_sym___complex] = ACTIONS(7724), + [anon_sym_IBOutlet] = ACTIONS(7724), + [anon_sym_IBInspectable] = ACTIONS(7724), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7724), + [anon_sym_signed] = ACTIONS(7724), + [anon_sym_unsigned] = ACTIONS(7724), + [anon_sym_long] = ACTIONS(7724), + [anon_sym_short] = ACTIONS(7724), + [sym_primitive_type] = ACTIONS(7724), + [anon_sym_enum] = ACTIONS(7724), + [anon_sym_struct] = ACTIONS(7724), + [anon_sym_union] = ACTIONS(7724), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7724), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7724), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7724), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7724), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7724), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7724), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7724), + [anon_sym_NS_AVAILABLE] = ACTIONS(7724), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7724), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7724), + [anon_sym_API_AVAILABLE] = ACTIONS(7724), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7724), + [anon_sym_API_DEPRECATED] = ACTIONS(7724), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7724), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7724), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7724), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7724), + [anon_sym___deprecated_msg] = ACTIONS(7724), + [anon_sym___deprecated_enum_msg] = ACTIONS(7724), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7724), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7724), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7724), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7724), + [anon_sym_NS_ENUM] = ACTIONS(7724), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7724), + [anon_sym_NS_OPTIONS] = ACTIONS(7724), + [anon_sym_typeof] = ACTIONS(7724), + [anon_sym___typeof] = ACTIONS(7724), + [anon_sym___typeof__] = ACTIONS(7724), + [sym_id] = ACTIONS(7724), + [sym_instancetype] = ACTIONS(7724), + [sym_Class] = ACTIONS(7724), + [sym_SEL] = ACTIONS(7724), + [sym_IMP] = ACTIONS(7724), + [sym_BOOL] = ACTIONS(7724), + [sym_auto] = ACTIONS(7724), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3253] = { + [sym_identifier] = ACTIONS(1816), + [aux_sym_preproc_def_token1] = ACTIONS(1816), + [aux_sym_preproc_if_token1] = ACTIONS(1816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1816), + [sym_preproc_directive] = ACTIONS(1816), + [anon_sym_extern] = ACTIONS(1816), + [anon_sym___attribute] = ACTIONS(1816), + [anon_sym___attribute__] = ACTIONS(1816), + [anon_sym___declspec] = ACTIONS(1816), + [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_static] = ACTIONS(1816), + [anon_sym_auto] = ACTIONS(1816), + [anon_sym_register] = ACTIONS(1816), + [anon_sym_inline] = ACTIONS(1816), + [aux_sym_storage_class_specifier_token1] = ACTIONS(1816), + [anon_sym_const] = ACTIONS(1816), + [anon_sym_volatile] = ACTIONS(1816), + [anon_sym_restrict] = ACTIONS(1816), + [anon_sym__Atomic] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1816), + [anon_sym_out] = ACTIONS(1816), + [anon_sym_inout] = ACTIONS(1816), + [anon_sym_bycopy] = ACTIONS(1816), + [anon_sym_byref] = ACTIONS(1816), + [anon_sym_oneway] = ACTIONS(1816), + [anon_sym__Nullable] = ACTIONS(1816), + [anon_sym__Nonnull] = ACTIONS(1816), + [anon_sym__Nullable_result] = ACTIONS(1816), + [anon_sym__Null_unspecified] = ACTIONS(1816), + [anon_sym___autoreleasing] = ACTIONS(1816), + [anon_sym___nullable] = ACTIONS(1816), + [anon_sym___nonnull] = ACTIONS(1816), + [anon_sym___strong] = ACTIONS(1816), + [anon_sym___weak] = ACTIONS(1816), + [anon_sym___bridge] = ACTIONS(1816), + [anon_sym___bridge_transfer] = ACTIONS(1816), + [anon_sym___bridge_retained] = ACTIONS(1816), + [anon_sym___unsafe_unretained] = ACTIONS(1816), + [anon_sym___block] = ACTIONS(1816), + [anon_sym___kindof] = ACTIONS(1816), + [anon_sym___unused] = ACTIONS(1816), + [anon_sym__Complex] = ACTIONS(1816), + [anon_sym___complex] = ACTIONS(1816), + [anon_sym_IBOutlet] = ACTIONS(1816), + [anon_sym_IBInspectable] = ACTIONS(1816), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1816), + [anon_sym_signed] = ACTIONS(1816), + [anon_sym_unsigned] = ACTIONS(1816), + [anon_sym_long] = ACTIONS(1816), + [anon_sym_short] = ACTIONS(1816), + [sym_primitive_type] = ACTIONS(1816), + [anon_sym_enum] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1816), + [anon_sym_union] = ACTIONS(1816), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(1816), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1816), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1816), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1816), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1816), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1816), + [anon_sym_NS_AVAILABLE] = ACTIONS(1816), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1816), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_API_AVAILABLE] = ACTIONS(1816), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_API_DEPRECATED] = ACTIONS(1816), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1816), + [anon_sym___deprecated_msg] = ACTIONS(1816), + [anon_sym___deprecated_enum_msg] = ACTIONS(1816), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1816), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1816), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1816), + [anon_sym_NS_ENUM] = ACTIONS(1816), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1816), + [anon_sym_NS_OPTIONS] = ACTIONS(1816), + [anon_sym_typeof] = ACTIONS(1816), + [anon_sym___typeof] = ACTIONS(1816), + [anon_sym___typeof__] = ACTIONS(1816), + [sym_id] = ACTIONS(1816), + [sym_instancetype] = ACTIONS(1816), + [sym_Class] = ACTIONS(1816), + [sym_SEL] = ACTIONS(1816), + [sym_IMP] = ACTIONS(1816), + [sym_BOOL] = ACTIONS(1816), + [sym_auto] = ACTIONS(1816), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3254] = { + [sym_identifier] = ACTIONS(7728), + [aux_sym_preproc_def_token1] = ACTIONS(7728), + [aux_sym_preproc_if_token1] = ACTIONS(7728), + [aux_sym_preproc_if_token2] = ACTIONS(7728), + [aux_sym_preproc_ifdef_token1] = ACTIONS(7728), + [aux_sym_preproc_ifdef_token2] = ACTIONS(7728), + [sym_preproc_directive] = ACTIONS(7728), + [anon_sym_extern] = ACTIONS(7728), + [anon_sym___attribute] = ACTIONS(7728), + [anon_sym___attribute__] = ACTIONS(7728), + [anon_sym___declspec] = ACTIONS(7728), + [anon_sym_static] = ACTIONS(7728), + [anon_sym_auto] = ACTIONS(7728), + [anon_sym_register] = ACTIONS(7728), + [anon_sym_inline] = ACTIONS(7728), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7728), + [anon_sym_const] = ACTIONS(7728), + [anon_sym_volatile] = ACTIONS(7728), + [anon_sym_restrict] = ACTIONS(7728), + [anon_sym__Atomic] = ACTIONS(7728), + [anon_sym_in] = ACTIONS(7728), + [anon_sym_out] = ACTIONS(7728), + [anon_sym_inout] = ACTIONS(7728), + [anon_sym_bycopy] = ACTIONS(7728), + [anon_sym_byref] = ACTIONS(7728), + [anon_sym_oneway] = ACTIONS(7728), + [anon_sym__Nullable] = ACTIONS(7728), + [anon_sym__Nonnull] = ACTIONS(7728), + [anon_sym__Nullable_result] = ACTIONS(7728), + [anon_sym__Null_unspecified] = ACTIONS(7728), + [anon_sym___autoreleasing] = ACTIONS(7728), + [anon_sym___nullable] = ACTIONS(7728), + [anon_sym___nonnull] = ACTIONS(7728), + [anon_sym___strong] = ACTIONS(7728), + [anon_sym___weak] = ACTIONS(7728), + [anon_sym___bridge] = ACTIONS(7728), + [anon_sym___bridge_transfer] = ACTIONS(7728), + [anon_sym___bridge_retained] = ACTIONS(7728), + [anon_sym___unsafe_unretained] = ACTIONS(7728), + [anon_sym___block] = ACTIONS(7728), + [anon_sym___kindof] = ACTIONS(7728), + [anon_sym___unused] = ACTIONS(7728), + [anon_sym__Complex] = ACTIONS(7728), + [anon_sym___complex] = ACTIONS(7728), + [anon_sym_IBOutlet] = ACTIONS(7728), + [anon_sym_IBInspectable] = ACTIONS(7728), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7728), + [anon_sym_signed] = ACTIONS(7728), + [anon_sym_unsigned] = ACTIONS(7728), + [anon_sym_long] = ACTIONS(7728), + [anon_sym_short] = ACTIONS(7728), + [sym_primitive_type] = ACTIONS(7728), + [anon_sym_enum] = ACTIONS(7728), + [anon_sym_struct] = ACTIONS(7728), + [anon_sym_union] = ACTIONS(7728), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7728), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7728), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7728), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7728), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7728), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7728), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7728), + [anon_sym_NS_AVAILABLE] = ACTIONS(7728), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7728), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7728), + [anon_sym_API_AVAILABLE] = ACTIONS(7728), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7728), + [anon_sym_API_DEPRECATED] = ACTIONS(7728), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7728), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7728), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7728), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7728), + [anon_sym___deprecated_msg] = ACTIONS(7728), + [anon_sym___deprecated_enum_msg] = ACTIONS(7728), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7728), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7728), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7728), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7728), + [anon_sym_NS_ENUM] = ACTIONS(7728), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7728), + [anon_sym_NS_OPTIONS] = ACTIONS(7728), + [anon_sym_typeof] = ACTIONS(7728), + [anon_sym___typeof] = ACTIONS(7728), + [anon_sym___typeof__] = ACTIONS(7728), + [sym_id] = ACTIONS(7728), + [sym_instancetype] = ACTIONS(7728), + [sym_Class] = ACTIONS(7728), + [sym_SEL] = ACTIONS(7728), + [sym_IMP] = ACTIONS(7728), + [sym_BOOL] = ACTIONS(7728), + [sym_auto] = ACTIONS(7728), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(5), + [sym__ifdef_endif_retain] = ACTIONS(5), + [sym__ifdef_undef_retain] = ACTIONS(5), + }, + [3255] = { + [sym_argument_list] = STATE(3012), + [sym_identifier] = ACTIONS(6950), + [anon_sym_COMMA] = ACTIONS(6952), + [anon_sym_RPAREN] = ACTIONS(6952), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(6950), + [anon_sym_PLUS] = ACTIONS(6950), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7785), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(6952), + [anon_sym_AMP_AMP] = ACTIONS(6952), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_CARET] = ACTIONS(6952), + [anon_sym_AMP] = ACTIONS(6950), + [anon_sym_EQ_EQ] = ACTIONS(6952), + [anon_sym_BANG_EQ] = ACTIONS(6952), + [anon_sym_GT] = ACTIONS(6950), + [anon_sym_GT_EQ] = ACTIONS(6952), + [anon_sym_LT_EQ] = ACTIONS(6952), + [anon_sym_LT] = ACTIONS(6950), + [anon_sym_LT_LT] = ACTIONS(6952), + [anon_sym_GT_GT] = ACTIONS(6952), + [anon_sym_SEMI] = ACTIONS(6952), + [anon_sym___attribute] = ACTIONS(6950), + [anon_sym___attribute__] = ACTIONS(6950), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_RBRACK] = ACTIONS(6952), + [anon_sym_const] = ACTIONS(6950), + [anon_sym_volatile] = ACTIONS(6950), + [anon_sym_restrict] = ACTIONS(6950), + [anon_sym__Atomic] = ACTIONS(6950), + [anon_sym_in] = ACTIONS(6950), + [anon_sym_out] = ACTIONS(6950), + [anon_sym_inout] = ACTIONS(6950), + [anon_sym_bycopy] = ACTIONS(6950), + [anon_sym_byref] = ACTIONS(6950), + [anon_sym_oneway] = ACTIONS(6950), + [anon_sym__Nullable] = ACTIONS(6950), + [anon_sym__Nonnull] = ACTIONS(6950), + [anon_sym__Nullable_result] = ACTIONS(6950), + [anon_sym__Null_unspecified] = ACTIONS(6950), + [anon_sym___autoreleasing] = ACTIONS(6950), + [anon_sym___nullable] = ACTIONS(6950), + [anon_sym___nonnull] = ACTIONS(6950), + [anon_sym___strong] = ACTIONS(6950), + [anon_sym___weak] = ACTIONS(6950), + [anon_sym___bridge] = ACTIONS(6950), + [anon_sym___bridge_transfer] = ACTIONS(6950), + [anon_sym___bridge_retained] = ACTIONS(6950), + [anon_sym___unsafe_unretained] = ACTIONS(6950), + [anon_sym___block] = ACTIONS(6950), + [anon_sym___kindof] = ACTIONS(6950), + [anon_sym___unused] = ACTIONS(6950), + [anon_sym__Complex] = ACTIONS(6950), + [anon_sym___complex] = ACTIONS(6950), + [anon_sym_IBOutlet] = ACTIONS(6950), + [anon_sym_IBInspectable] = ACTIONS(6950), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6950), + [anon_sym_COLON] = ACTIONS(6952), + [anon_sym_QMARK] = ACTIONS(6952), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6950), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6950), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6950), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE] = ACTIONS(6950), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6950), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_API_AVAILABLE] = ACTIONS(6950), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_API_DEPRECATED] = ACTIONS(6950), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6950), + [anon_sym___deprecated_msg] = ACTIONS(6950), + [anon_sym___deprecated_enum_msg] = ACTIONS(6950), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6950), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6950), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6950), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6950), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6950), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3256] = { + [sym_identifier] = ACTIONS(7694), + [anon_sym_extern] = ACTIONS(7694), + [anon_sym___attribute] = ACTIONS(7694), + [anon_sym___attribute__] = ACTIONS(7694), + [anon_sym___declspec] = ACTIONS(7694), + [anon_sym_RBRACE] = ACTIONS(7835), + [anon_sym_static] = ACTIONS(7694), + [anon_sym_auto] = ACTIONS(7694), + [anon_sym_register] = ACTIONS(7694), + [anon_sym_inline] = ACTIONS(7694), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7694), + [anon_sym_const] = ACTIONS(7694), + [anon_sym_volatile] = ACTIONS(7694), + [anon_sym_restrict] = ACTIONS(7694), + [anon_sym__Atomic] = ACTIONS(7694), + [anon_sym_in] = ACTIONS(7694), + [anon_sym_out] = ACTIONS(7694), + [anon_sym_inout] = ACTIONS(7694), + [anon_sym_bycopy] = ACTIONS(7694), + [anon_sym_byref] = ACTIONS(7694), + [anon_sym_oneway] = ACTIONS(7694), + [anon_sym__Nullable] = ACTIONS(7694), + [anon_sym__Nonnull] = ACTIONS(7694), + [anon_sym__Nullable_result] = ACTIONS(7694), + [anon_sym__Null_unspecified] = ACTIONS(7694), + [anon_sym___autoreleasing] = ACTIONS(7694), + [anon_sym___nullable] = ACTIONS(7694), + [anon_sym___nonnull] = ACTIONS(7694), + [anon_sym___strong] = ACTIONS(7694), + [anon_sym___weak] = ACTIONS(7694), + [anon_sym___bridge] = ACTIONS(7694), + [anon_sym___bridge_transfer] = ACTIONS(7694), + [anon_sym___bridge_retained] = ACTIONS(7694), + [anon_sym___unsafe_unretained] = ACTIONS(7694), + [anon_sym___block] = ACTIONS(7694), + [anon_sym___kindof] = ACTIONS(7694), + [anon_sym___unused] = ACTIONS(7694), + [anon_sym__Complex] = ACTIONS(7694), + [anon_sym___complex] = ACTIONS(7694), + [anon_sym_IBOutlet] = ACTIONS(7694), + [anon_sym_IBInspectable] = ACTIONS(7694), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7694), + [anon_sym_signed] = ACTIONS(7694), + [anon_sym_unsigned] = ACTIONS(7694), + [anon_sym_long] = ACTIONS(7694), + [anon_sym_short] = ACTIONS(7694), + [sym_primitive_type] = ACTIONS(7694), + [anon_sym_enum] = ACTIONS(7694), + [anon_sym_struct] = ACTIONS(7694), + [anon_sym_union] = ACTIONS(7694), + [sym_comment] = ACTIONS(3), + [sym_private] = ACTIONS(7835), + [sym_public] = ACTIONS(7835), + [sym_protected] = ACTIONS(7835), + [sym_package] = ACTIONS(7835), + [sym_method_attribute_specifier] = ACTIONS(7694), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7694), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7694), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7694), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7694), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7694), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7694), + [anon_sym_NS_AVAILABLE] = ACTIONS(7694), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7694), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7694), + [anon_sym_API_AVAILABLE] = ACTIONS(7694), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7694), + [anon_sym_API_DEPRECATED] = ACTIONS(7694), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7694), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7694), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7694), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7694), + [anon_sym___deprecated_msg] = ACTIONS(7694), + [anon_sym___deprecated_enum_msg] = ACTIONS(7694), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7694), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7694), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7694), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7694), + [anon_sym_NS_ENUM] = ACTIONS(7694), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7694), + [anon_sym_NS_OPTIONS] = ACTIONS(7694), + [anon_sym_typeof] = ACTIONS(7694), + [anon_sym___typeof] = ACTIONS(7694), + [anon_sym___typeof__] = ACTIONS(7694), + [sym_id] = ACTIONS(7694), + [sym_instancetype] = ACTIONS(7694), + [sym_Class] = ACTIONS(7694), + [sym_SEL] = ACTIONS(7694), + [sym_IMP] = ACTIONS(7694), + [sym_BOOL] = ACTIONS(7694), + [sym_auto] = ACTIONS(7694), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3257] = { + [sym_identifier] = ACTIONS(7212), + [anon_sym_COMMA] = ACTIONS(7214), + [anon_sym_RPAREN] = ACTIONS(7214), + [anon_sym_LPAREN2] = ACTIONS(7214), + [anon_sym_DASH] = ACTIONS(7212), + [anon_sym_PLUS] = ACTIONS(7212), + [anon_sym_STAR] = ACTIONS(7214), + [anon_sym_SLASH] = ACTIONS(7212), + [anon_sym_PERCENT] = ACTIONS(7214), + [anon_sym_PIPE_PIPE] = ACTIONS(7214), + [anon_sym_AMP_AMP] = ACTIONS(7214), + [anon_sym_PIPE] = ACTIONS(7212), + [anon_sym_CARET] = ACTIONS(7214), + [anon_sym_AMP] = ACTIONS(7212), + [anon_sym_EQ_EQ] = ACTIONS(7214), + [anon_sym_BANG_EQ] = ACTIONS(7214), + [anon_sym_GT] = ACTIONS(7212), + [anon_sym_GT_EQ] = ACTIONS(7214), + [anon_sym_LT_EQ] = ACTIONS(7214), + [anon_sym_LT] = ACTIONS(7212), + [anon_sym_LT_LT] = ACTIONS(7214), + [anon_sym_GT_GT] = ACTIONS(7214), + [anon_sym_SEMI] = ACTIONS(7214), + [anon_sym___attribute] = ACTIONS(7212), + [anon_sym___attribute__] = ACTIONS(7212), + [anon_sym_RBRACE] = ACTIONS(7214), + [anon_sym_LBRACK] = ACTIONS(7214), + [anon_sym_RBRACK] = ACTIONS(7214), + [anon_sym_const] = ACTIONS(7212), + [anon_sym_volatile] = ACTIONS(7212), + [anon_sym_restrict] = ACTIONS(7212), + [anon_sym__Atomic] = ACTIONS(7212), + [anon_sym_in] = ACTIONS(7212), + [anon_sym_out] = ACTIONS(7212), + [anon_sym_inout] = ACTIONS(7212), + [anon_sym_bycopy] = ACTIONS(7212), + [anon_sym_byref] = ACTIONS(7212), + [anon_sym_oneway] = ACTIONS(7212), + [anon_sym__Nullable] = ACTIONS(7212), + [anon_sym__Nonnull] = ACTIONS(7212), + [anon_sym__Nullable_result] = ACTIONS(7212), + [anon_sym__Null_unspecified] = ACTIONS(7212), + [anon_sym___autoreleasing] = ACTIONS(7212), + [anon_sym___nullable] = ACTIONS(7212), + [anon_sym___nonnull] = ACTIONS(7212), + [anon_sym___strong] = ACTIONS(7212), + [anon_sym___weak] = ACTIONS(7212), + [anon_sym___bridge] = ACTIONS(7212), + [anon_sym___bridge_transfer] = ACTIONS(7212), + [anon_sym___bridge_retained] = ACTIONS(7212), + [anon_sym___unsafe_unretained] = ACTIONS(7212), + [anon_sym___block] = ACTIONS(7212), + [anon_sym___kindof] = ACTIONS(7212), + [anon_sym___unused] = ACTIONS(7212), + [anon_sym__Complex] = ACTIONS(7212), + [anon_sym___complex] = ACTIONS(7212), + [anon_sym_IBOutlet] = ACTIONS(7212), + [anon_sym_IBInspectable] = ACTIONS(7212), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7212), + [anon_sym_COLON] = ACTIONS(7214), + [anon_sym_QMARK] = ACTIONS(7214), + [anon_sym_DASH_DASH] = ACTIONS(7214), + [anon_sym_PLUS_PLUS] = ACTIONS(7214), + [anon_sym_DOT] = ACTIONS(7214), + [anon_sym_DASH_GT] = ACTIONS(7214), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7212), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7212), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7212), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7212), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7212), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7212), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7212), + [anon_sym_NS_AVAILABLE] = ACTIONS(7212), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7212), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7212), + [anon_sym_API_AVAILABLE] = ACTIONS(7212), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7212), + [anon_sym_API_DEPRECATED] = ACTIONS(7212), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7212), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7212), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7212), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7212), + [anon_sym___deprecated_msg] = ACTIONS(7212), + [anon_sym___deprecated_enum_msg] = ACTIONS(7212), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7212), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7212), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7212), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7212), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7212), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7212), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3258] = { + [sym_identifier] = ACTIONS(7200), + [anon_sym_COMMA] = ACTIONS(7202), + [anon_sym_RPAREN] = ACTIONS(7202), + [anon_sym_LPAREN2] = ACTIONS(7202), + [anon_sym_DASH] = ACTIONS(7200), + [anon_sym_PLUS] = ACTIONS(7200), + [anon_sym_STAR] = ACTIONS(7202), + [anon_sym_SLASH] = ACTIONS(7200), + [anon_sym_PERCENT] = ACTIONS(7202), + [anon_sym_PIPE_PIPE] = ACTIONS(7202), + [anon_sym_AMP_AMP] = ACTIONS(7202), + [anon_sym_PIPE] = ACTIONS(7200), + [anon_sym_CARET] = ACTIONS(7202), + [anon_sym_AMP] = ACTIONS(7200), + [anon_sym_EQ_EQ] = ACTIONS(7202), + [anon_sym_BANG_EQ] = ACTIONS(7202), + [anon_sym_GT] = ACTIONS(7200), + [anon_sym_GT_EQ] = ACTIONS(7202), + [anon_sym_LT_EQ] = ACTIONS(7202), + [anon_sym_LT] = ACTIONS(7200), + [anon_sym_LT_LT] = ACTIONS(7202), + [anon_sym_GT_GT] = ACTIONS(7202), + [anon_sym_SEMI] = ACTIONS(7202), + [anon_sym___attribute] = ACTIONS(7200), + [anon_sym___attribute__] = ACTIONS(7200), + [anon_sym_RBRACE] = ACTIONS(7202), + [anon_sym_LBRACK] = ACTIONS(7202), + [anon_sym_RBRACK] = ACTIONS(7202), + [anon_sym_const] = ACTIONS(7200), + [anon_sym_volatile] = ACTIONS(7200), + [anon_sym_restrict] = ACTIONS(7200), + [anon_sym__Atomic] = ACTIONS(7200), + [anon_sym_in] = ACTIONS(7200), + [anon_sym_out] = ACTIONS(7200), + [anon_sym_inout] = ACTIONS(7200), + [anon_sym_bycopy] = ACTIONS(7200), + [anon_sym_byref] = ACTIONS(7200), + [anon_sym_oneway] = ACTIONS(7200), + [anon_sym__Nullable] = ACTIONS(7200), + [anon_sym__Nonnull] = ACTIONS(7200), + [anon_sym__Nullable_result] = ACTIONS(7200), + [anon_sym__Null_unspecified] = ACTIONS(7200), + [anon_sym___autoreleasing] = ACTIONS(7200), + [anon_sym___nullable] = ACTIONS(7200), + [anon_sym___nonnull] = ACTIONS(7200), + [anon_sym___strong] = ACTIONS(7200), + [anon_sym___weak] = ACTIONS(7200), + [anon_sym___bridge] = ACTIONS(7200), + [anon_sym___bridge_transfer] = ACTIONS(7200), + [anon_sym___bridge_retained] = ACTIONS(7200), + [anon_sym___unsafe_unretained] = ACTIONS(7200), + [anon_sym___block] = ACTIONS(7200), + [anon_sym___kindof] = ACTIONS(7200), + [anon_sym___unused] = ACTIONS(7200), + [anon_sym__Complex] = ACTIONS(7200), + [anon_sym___complex] = ACTIONS(7200), + [anon_sym_IBOutlet] = ACTIONS(7200), + [anon_sym_IBInspectable] = ACTIONS(7200), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7200), + [anon_sym_COLON] = ACTIONS(7202), + [anon_sym_QMARK] = ACTIONS(7202), + [anon_sym_DASH_DASH] = ACTIONS(7202), + [anon_sym_PLUS_PLUS] = ACTIONS(7202), + [anon_sym_DOT] = ACTIONS(7202), + [anon_sym_DASH_GT] = ACTIONS(7202), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7200), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7200), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7200), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7200), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7200), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7200), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7200), + [anon_sym_NS_AVAILABLE] = ACTIONS(7200), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7200), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7200), + [anon_sym_API_AVAILABLE] = ACTIONS(7200), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7200), + [anon_sym_API_DEPRECATED] = ACTIONS(7200), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7200), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7200), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7200), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7200), + [anon_sym___deprecated_msg] = ACTIONS(7200), + [anon_sym___deprecated_enum_msg] = ACTIONS(7200), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7200), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7200), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7200), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7200), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7200), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7200), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3259] = { + [sym_identifier] = ACTIONS(1359), + [anon_sym_COMMA] = ACTIONS(1361), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_LPAREN2] = ACTIONS(1361), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1361), + [anon_sym_SLASH] = ACTIONS(1359), + [anon_sym_PERCENT] = ACTIONS(1361), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1361), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(1361), + [anon_sym_GT_GT] = ACTIONS(1361), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym___attribute] = ACTIONS(1359), + [anon_sym___attribute__] = ACTIONS(1359), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_RBRACK] = ACTIONS(1361), + [anon_sym_const] = ACTIONS(1359), + [anon_sym_volatile] = ACTIONS(1359), + [anon_sym_restrict] = ACTIONS(1359), + [anon_sym__Atomic] = ACTIONS(1359), + [anon_sym_in] = ACTIONS(1359), + [anon_sym_out] = ACTIONS(1359), + [anon_sym_inout] = ACTIONS(1359), + [anon_sym_bycopy] = ACTIONS(1359), + [anon_sym_byref] = ACTIONS(1359), + [anon_sym_oneway] = ACTIONS(1359), + [anon_sym__Nullable] = ACTIONS(1359), + [anon_sym__Nonnull] = ACTIONS(1359), + [anon_sym__Nullable_result] = ACTIONS(1359), + [anon_sym__Null_unspecified] = ACTIONS(1359), + [anon_sym___autoreleasing] = ACTIONS(1359), + [anon_sym___nullable] = ACTIONS(1359), + [anon_sym___nonnull] = ACTIONS(1359), + [anon_sym___strong] = ACTIONS(1359), + [anon_sym___weak] = ACTIONS(1359), + [anon_sym___bridge] = ACTIONS(1359), + [anon_sym___bridge_transfer] = ACTIONS(1359), + [anon_sym___bridge_retained] = ACTIONS(1359), + [anon_sym___unsafe_unretained] = ACTIONS(1359), + [anon_sym___block] = ACTIONS(1359), + [anon_sym___kindof] = ACTIONS(1359), + [anon_sym___unused] = ACTIONS(1359), + [anon_sym__Complex] = ACTIONS(1359), + [anon_sym___complex] = ACTIONS(1359), + [anon_sym_IBOutlet] = ACTIONS(1359), + [anon_sym_IBInspectable] = ACTIONS(1359), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1359), + [anon_sym_COLON] = ACTIONS(1361), + [anon_sym_QMARK] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DOT] = ACTIONS(1361), + [anon_sym_DASH_GT] = ACTIONS(1361), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(1359), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1359), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1359), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1359), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1359), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1359), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1359), + [anon_sym_NS_AVAILABLE] = ACTIONS(1359), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1359), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_API_AVAILABLE] = ACTIONS(1359), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1359), + [anon_sym_API_DEPRECATED] = ACTIONS(1359), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1359), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1359), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1359), + [anon_sym___deprecated_msg] = ACTIONS(1359), + [anon_sym___deprecated_enum_msg] = ACTIONS(1359), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1359), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1359), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1359), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1359), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1359), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3260] = { + [sym_identifier] = ACTIONS(7240), + [anon_sym_COMMA] = ACTIONS(7242), + [anon_sym_RPAREN] = ACTIONS(7242), + [anon_sym_LPAREN2] = ACTIONS(7242), + [anon_sym_DASH] = ACTIONS(7240), + [anon_sym_PLUS] = ACTIONS(7240), + [anon_sym_STAR] = ACTIONS(7242), + [anon_sym_SLASH] = ACTIONS(7240), + [anon_sym_PERCENT] = ACTIONS(7242), + [anon_sym_PIPE_PIPE] = ACTIONS(7242), + [anon_sym_AMP_AMP] = ACTIONS(7242), + [anon_sym_PIPE] = ACTIONS(7240), + [anon_sym_CARET] = ACTIONS(7242), + [anon_sym_AMP] = ACTIONS(7240), + [anon_sym_EQ_EQ] = ACTIONS(7242), + [anon_sym_BANG_EQ] = ACTIONS(7242), + [anon_sym_GT] = ACTIONS(7240), + [anon_sym_GT_EQ] = ACTIONS(7242), + [anon_sym_LT_EQ] = ACTIONS(7242), + [anon_sym_LT] = ACTIONS(7240), + [anon_sym_LT_LT] = ACTIONS(7242), + [anon_sym_GT_GT] = ACTIONS(7242), + [anon_sym_SEMI] = ACTIONS(7242), + [anon_sym___attribute] = ACTIONS(7240), + [anon_sym___attribute__] = ACTIONS(7240), + [anon_sym_RBRACE] = ACTIONS(7242), + [anon_sym_LBRACK] = ACTIONS(7242), + [anon_sym_RBRACK] = ACTIONS(7242), + [anon_sym_const] = ACTIONS(7240), + [anon_sym_volatile] = ACTIONS(7240), + [anon_sym_restrict] = ACTIONS(7240), + [anon_sym__Atomic] = ACTIONS(7240), + [anon_sym_in] = ACTIONS(7240), + [anon_sym_out] = ACTIONS(7240), + [anon_sym_inout] = ACTIONS(7240), + [anon_sym_bycopy] = ACTIONS(7240), + [anon_sym_byref] = ACTIONS(7240), + [anon_sym_oneway] = ACTIONS(7240), + [anon_sym__Nullable] = ACTIONS(7240), + [anon_sym__Nonnull] = ACTIONS(7240), + [anon_sym__Nullable_result] = ACTIONS(7240), + [anon_sym__Null_unspecified] = ACTIONS(7240), + [anon_sym___autoreleasing] = ACTIONS(7240), + [anon_sym___nullable] = ACTIONS(7240), + [anon_sym___nonnull] = ACTIONS(7240), + [anon_sym___strong] = ACTIONS(7240), + [anon_sym___weak] = ACTIONS(7240), + [anon_sym___bridge] = ACTIONS(7240), + [anon_sym___bridge_transfer] = ACTIONS(7240), + [anon_sym___bridge_retained] = ACTIONS(7240), + [anon_sym___unsafe_unretained] = ACTIONS(7240), + [anon_sym___block] = ACTIONS(7240), + [anon_sym___kindof] = ACTIONS(7240), + [anon_sym___unused] = ACTIONS(7240), + [anon_sym__Complex] = ACTIONS(7240), + [anon_sym___complex] = ACTIONS(7240), + [anon_sym_IBOutlet] = ACTIONS(7240), + [anon_sym_IBInspectable] = ACTIONS(7240), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7240), + [anon_sym_COLON] = ACTIONS(7242), + [anon_sym_QMARK] = ACTIONS(7242), + [anon_sym_DASH_DASH] = ACTIONS(7242), + [anon_sym_PLUS_PLUS] = ACTIONS(7242), + [anon_sym_DOT] = ACTIONS(7242), + [anon_sym_DASH_GT] = ACTIONS(7242), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7240), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7240), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7240), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7240), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7240), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7240), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7240), + [anon_sym_NS_AVAILABLE] = ACTIONS(7240), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7240), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7240), + [anon_sym_API_AVAILABLE] = ACTIONS(7240), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7240), + [anon_sym_API_DEPRECATED] = ACTIONS(7240), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7240), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7240), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7240), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7240), + [anon_sym___deprecated_msg] = ACTIONS(7240), + [anon_sym___deprecated_enum_msg] = ACTIONS(7240), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7240), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7240), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7240), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7240), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7240), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7240), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3261] = { + [sym_identifier] = ACTIONS(7148), + [anon_sym_COMMA] = ACTIONS(7150), + [anon_sym_RPAREN] = ACTIONS(7150), + [anon_sym_LPAREN2] = ACTIONS(7150), + [anon_sym_DASH] = ACTIONS(7148), + [anon_sym_PLUS] = ACTIONS(7148), + [anon_sym_STAR] = ACTIONS(7150), + [anon_sym_SLASH] = ACTIONS(7148), + [anon_sym_PERCENT] = ACTIONS(7150), + [anon_sym_PIPE_PIPE] = ACTIONS(7150), + [anon_sym_AMP_AMP] = ACTIONS(7150), + [anon_sym_PIPE] = ACTIONS(7148), + [anon_sym_CARET] = ACTIONS(7150), + [anon_sym_AMP] = ACTIONS(7148), + [anon_sym_EQ_EQ] = ACTIONS(7150), + [anon_sym_BANG_EQ] = ACTIONS(7150), + [anon_sym_GT] = ACTIONS(7148), + [anon_sym_GT_EQ] = ACTIONS(7150), + [anon_sym_LT_EQ] = ACTIONS(7150), + [anon_sym_LT] = ACTIONS(7148), + [anon_sym_LT_LT] = ACTIONS(7150), + [anon_sym_GT_GT] = ACTIONS(7150), + [anon_sym_SEMI] = ACTIONS(7150), + [anon_sym___attribute] = ACTIONS(7148), + [anon_sym___attribute__] = ACTIONS(7148), + [anon_sym_RBRACE] = ACTIONS(7150), + [anon_sym_LBRACK] = ACTIONS(7150), + [anon_sym_RBRACK] = ACTIONS(7150), + [anon_sym_const] = ACTIONS(7148), + [anon_sym_volatile] = ACTIONS(7148), + [anon_sym_restrict] = ACTIONS(7148), + [anon_sym__Atomic] = ACTIONS(7148), + [anon_sym_in] = ACTIONS(7148), + [anon_sym_out] = ACTIONS(7148), + [anon_sym_inout] = ACTIONS(7148), + [anon_sym_bycopy] = ACTIONS(7148), + [anon_sym_byref] = ACTIONS(7148), + [anon_sym_oneway] = ACTIONS(7148), + [anon_sym__Nullable] = ACTIONS(7148), + [anon_sym__Nonnull] = ACTIONS(7148), + [anon_sym__Nullable_result] = ACTIONS(7148), + [anon_sym__Null_unspecified] = ACTIONS(7148), + [anon_sym___autoreleasing] = ACTIONS(7148), + [anon_sym___nullable] = ACTIONS(7148), + [anon_sym___nonnull] = ACTIONS(7148), + [anon_sym___strong] = ACTIONS(7148), + [anon_sym___weak] = ACTIONS(7148), + [anon_sym___bridge] = ACTIONS(7148), + [anon_sym___bridge_transfer] = ACTIONS(7148), + [anon_sym___bridge_retained] = ACTIONS(7148), + [anon_sym___unsafe_unretained] = ACTIONS(7148), + [anon_sym___block] = ACTIONS(7148), + [anon_sym___kindof] = ACTIONS(7148), + [anon_sym___unused] = ACTIONS(7148), + [anon_sym__Complex] = ACTIONS(7148), + [anon_sym___complex] = ACTIONS(7148), + [anon_sym_IBOutlet] = ACTIONS(7148), + [anon_sym_IBInspectable] = ACTIONS(7148), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7148), + [anon_sym_COLON] = ACTIONS(7150), + [anon_sym_QMARK] = ACTIONS(7150), + [anon_sym_DASH_DASH] = ACTIONS(7150), + [anon_sym_PLUS_PLUS] = ACTIONS(7150), + [anon_sym_DOT] = ACTIONS(7150), + [anon_sym_DASH_GT] = ACTIONS(7150), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7148), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7148), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7148), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7148), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7148), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7148), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7148), + [anon_sym_NS_AVAILABLE] = ACTIONS(7148), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7148), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7148), + [anon_sym_API_AVAILABLE] = ACTIONS(7148), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7148), + [anon_sym_API_DEPRECATED] = ACTIONS(7148), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7148), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7148), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7148), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7148), + [anon_sym___deprecated_msg] = ACTIONS(7148), + [anon_sym___deprecated_enum_msg] = ACTIONS(7148), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7148), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7148), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7148), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7148), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7148), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7148), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3262] = { + [sym_identifier] = ACTIONS(7256), + [anon_sym_COMMA] = ACTIONS(7258), + [anon_sym_RPAREN] = ACTIONS(7258), + [anon_sym_LPAREN2] = ACTIONS(7258), + [anon_sym_DASH] = ACTIONS(7256), + [anon_sym_PLUS] = ACTIONS(7256), + [anon_sym_STAR] = ACTIONS(7258), + [anon_sym_SLASH] = ACTIONS(7256), + [anon_sym_PERCENT] = ACTIONS(7258), + [anon_sym_PIPE_PIPE] = ACTIONS(7258), + [anon_sym_AMP_AMP] = ACTIONS(7258), + [anon_sym_PIPE] = ACTIONS(7256), + [anon_sym_CARET] = ACTIONS(7258), + [anon_sym_AMP] = ACTIONS(7256), + [anon_sym_EQ_EQ] = ACTIONS(7258), + [anon_sym_BANG_EQ] = ACTIONS(7258), + [anon_sym_GT] = ACTIONS(7256), + [anon_sym_GT_EQ] = ACTIONS(7258), + [anon_sym_LT_EQ] = ACTIONS(7258), + [anon_sym_LT] = ACTIONS(7256), + [anon_sym_LT_LT] = ACTIONS(7258), + [anon_sym_GT_GT] = ACTIONS(7258), + [anon_sym_SEMI] = ACTIONS(7258), + [anon_sym___attribute] = ACTIONS(7256), + [anon_sym___attribute__] = ACTIONS(7256), + [anon_sym_RBRACE] = ACTIONS(7258), + [anon_sym_LBRACK] = ACTIONS(7258), + [anon_sym_RBRACK] = ACTIONS(7258), + [anon_sym_const] = ACTIONS(7256), + [anon_sym_volatile] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym_in] = ACTIONS(7256), + [anon_sym_out] = ACTIONS(7256), + [anon_sym_inout] = ACTIONS(7256), + [anon_sym_bycopy] = ACTIONS(7256), + [anon_sym_byref] = ACTIONS(7256), + [anon_sym_oneway] = ACTIONS(7256), + [anon_sym__Nullable] = ACTIONS(7256), + [anon_sym__Nonnull] = ACTIONS(7256), + [anon_sym__Nullable_result] = ACTIONS(7256), + [anon_sym__Null_unspecified] = ACTIONS(7256), + [anon_sym___autoreleasing] = ACTIONS(7256), + [anon_sym___nullable] = ACTIONS(7256), + [anon_sym___nonnull] = ACTIONS(7256), + [anon_sym___strong] = ACTIONS(7256), + [anon_sym___weak] = ACTIONS(7256), + [anon_sym___bridge] = ACTIONS(7256), + [anon_sym___bridge_transfer] = ACTIONS(7256), + [anon_sym___bridge_retained] = ACTIONS(7256), + [anon_sym___unsafe_unretained] = ACTIONS(7256), + [anon_sym___block] = ACTIONS(7256), + [anon_sym___kindof] = ACTIONS(7256), + [anon_sym___unused] = ACTIONS(7256), + [anon_sym__Complex] = ACTIONS(7256), + [anon_sym___complex] = ACTIONS(7256), + [anon_sym_IBOutlet] = ACTIONS(7256), + [anon_sym_IBInspectable] = ACTIONS(7256), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7256), + [anon_sym_COLON] = ACTIONS(7258), + [anon_sym_QMARK] = ACTIONS(7258), + [anon_sym_DASH_DASH] = ACTIONS(7258), + [anon_sym_PLUS_PLUS] = ACTIONS(7258), + [anon_sym_DOT] = ACTIONS(7258), + [anon_sym_DASH_GT] = ACTIONS(7258), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7256), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7256), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7256), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7256), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7256), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7256), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7256), + [anon_sym_NS_AVAILABLE] = ACTIONS(7256), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7256), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7256), + [anon_sym_API_AVAILABLE] = ACTIONS(7256), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7256), + [anon_sym_API_DEPRECATED] = ACTIONS(7256), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7256), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7256), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7256), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7256), + [anon_sym___deprecated_msg] = ACTIONS(7256), + [anon_sym___deprecated_enum_msg] = ACTIONS(7256), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7256), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7256), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7256), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7256), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7256), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7256), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3263] = { + [sym_identifier] = ACTIONS(7072), + [anon_sym_COMMA] = ACTIONS(7074), + [anon_sym_RPAREN] = ACTIONS(7074), + [anon_sym_LPAREN2] = ACTIONS(7074), + [anon_sym_DASH] = ACTIONS(7072), + [anon_sym_PLUS] = ACTIONS(7072), + [anon_sym_STAR] = ACTIONS(7074), + [anon_sym_SLASH] = ACTIONS(7072), + [anon_sym_PERCENT] = ACTIONS(7074), + [anon_sym_PIPE_PIPE] = ACTIONS(7074), + [anon_sym_AMP_AMP] = ACTIONS(7074), + [anon_sym_PIPE] = ACTIONS(7072), + [anon_sym_CARET] = ACTIONS(7074), + [anon_sym_AMP] = ACTIONS(7072), + [anon_sym_EQ_EQ] = ACTIONS(7074), + [anon_sym_BANG_EQ] = ACTIONS(7074), + [anon_sym_GT] = ACTIONS(7072), + [anon_sym_GT_EQ] = ACTIONS(7074), + [anon_sym_LT_EQ] = ACTIONS(7074), + [anon_sym_LT] = ACTIONS(7072), + [anon_sym_LT_LT] = ACTIONS(7074), + [anon_sym_GT_GT] = ACTIONS(7074), + [anon_sym_SEMI] = ACTIONS(7074), + [anon_sym___attribute] = ACTIONS(7072), + [anon_sym___attribute__] = ACTIONS(7072), + [anon_sym_RBRACE] = ACTIONS(7074), + [anon_sym_LBRACK] = ACTIONS(7074), + [anon_sym_RBRACK] = ACTIONS(7074), + [anon_sym_const] = ACTIONS(7072), + [anon_sym_volatile] = ACTIONS(7072), + [anon_sym_restrict] = ACTIONS(7072), + [anon_sym__Atomic] = ACTIONS(7072), + [anon_sym_in] = ACTIONS(7072), + [anon_sym_out] = ACTIONS(7072), + [anon_sym_inout] = ACTIONS(7072), + [anon_sym_bycopy] = ACTIONS(7072), + [anon_sym_byref] = ACTIONS(7072), + [anon_sym_oneway] = ACTIONS(7072), + [anon_sym__Nullable] = ACTIONS(7072), + [anon_sym__Nonnull] = ACTIONS(7072), + [anon_sym__Nullable_result] = ACTIONS(7072), + [anon_sym__Null_unspecified] = ACTIONS(7072), + [anon_sym___autoreleasing] = ACTIONS(7072), + [anon_sym___nullable] = ACTIONS(7072), + [anon_sym___nonnull] = ACTIONS(7072), + [anon_sym___strong] = ACTIONS(7072), + [anon_sym___weak] = ACTIONS(7072), + [anon_sym___bridge] = ACTIONS(7072), + [anon_sym___bridge_transfer] = ACTIONS(7072), + [anon_sym___bridge_retained] = ACTIONS(7072), + [anon_sym___unsafe_unretained] = ACTIONS(7072), + [anon_sym___block] = ACTIONS(7072), + [anon_sym___kindof] = ACTIONS(7072), + [anon_sym___unused] = ACTIONS(7072), + [anon_sym__Complex] = ACTIONS(7072), + [anon_sym___complex] = ACTIONS(7072), + [anon_sym_IBOutlet] = ACTIONS(7072), + [anon_sym_IBInspectable] = ACTIONS(7072), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7072), + [anon_sym_COLON] = ACTIONS(7074), + [anon_sym_QMARK] = ACTIONS(7074), + [anon_sym_DASH_DASH] = ACTIONS(7074), + [anon_sym_PLUS_PLUS] = ACTIONS(7074), + [anon_sym_DOT] = ACTIONS(7074), + [anon_sym_DASH_GT] = ACTIONS(7074), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7072), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7072), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7072), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7072), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7072), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7072), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7072), + [anon_sym_NS_AVAILABLE] = ACTIONS(7072), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7072), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7072), + [anon_sym_API_AVAILABLE] = ACTIONS(7072), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7072), + [anon_sym_API_DEPRECATED] = ACTIONS(7072), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7072), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7072), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7072), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7072), + [anon_sym___deprecated_msg] = ACTIONS(7072), + [anon_sym___deprecated_enum_msg] = ACTIONS(7072), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7072), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7072), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7072), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7072), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7072), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7072), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3264] = { + [sym_identifier] = ACTIONS(7228), + [anon_sym_COMMA] = ACTIONS(7230), + [anon_sym_RPAREN] = ACTIONS(7230), + [anon_sym_LPAREN2] = ACTIONS(7230), + [anon_sym_DASH] = ACTIONS(7228), + [anon_sym_PLUS] = ACTIONS(7228), + [anon_sym_STAR] = ACTIONS(7230), + [anon_sym_SLASH] = ACTIONS(7228), + [anon_sym_PERCENT] = ACTIONS(7230), + [anon_sym_PIPE_PIPE] = ACTIONS(7230), + [anon_sym_AMP_AMP] = ACTIONS(7230), + [anon_sym_PIPE] = ACTIONS(7228), + [anon_sym_CARET] = ACTIONS(7230), + [anon_sym_AMP] = ACTIONS(7228), + [anon_sym_EQ_EQ] = ACTIONS(7230), + [anon_sym_BANG_EQ] = ACTIONS(7230), + [anon_sym_GT] = ACTIONS(7228), + [anon_sym_GT_EQ] = ACTIONS(7230), + [anon_sym_LT_EQ] = ACTIONS(7230), + [anon_sym_LT] = ACTIONS(7228), + [anon_sym_LT_LT] = ACTIONS(7230), + [anon_sym_GT_GT] = ACTIONS(7230), + [anon_sym_SEMI] = ACTIONS(7230), + [anon_sym___attribute] = ACTIONS(7228), + [anon_sym___attribute__] = ACTIONS(7228), + [anon_sym_RBRACE] = ACTIONS(7230), + [anon_sym_LBRACK] = ACTIONS(7230), + [anon_sym_RBRACK] = ACTIONS(7230), + [anon_sym_const] = ACTIONS(7228), + [anon_sym_volatile] = ACTIONS(7228), + [anon_sym_restrict] = ACTIONS(7228), + [anon_sym__Atomic] = ACTIONS(7228), + [anon_sym_in] = ACTIONS(7228), + [anon_sym_out] = ACTIONS(7228), + [anon_sym_inout] = ACTIONS(7228), + [anon_sym_bycopy] = ACTIONS(7228), + [anon_sym_byref] = ACTIONS(7228), + [anon_sym_oneway] = ACTIONS(7228), + [anon_sym__Nullable] = ACTIONS(7228), + [anon_sym__Nonnull] = ACTIONS(7228), + [anon_sym__Nullable_result] = ACTIONS(7228), + [anon_sym__Null_unspecified] = ACTIONS(7228), + [anon_sym___autoreleasing] = ACTIONS(7228), + [anon_sym___nullable] = ACTIONS(7228), + [anon_sym___nonnull] = ACTIONS(7228), + [anon_sym___strong] = ACTIONS(7228), + [anon_sym___weak] = ACTIONS(7228), + [anon_sym___bridge] = ACTIONS(7228), + [anon_sym___bridge_transfer] = ACTIONS(7228), + [anon_sym___bridge_retained] = ACTIONS(7228), + [anon_sym___unsafe_unretained] = ACTIONS(7228), + [anon_sym___block] = ACTIONS(7228), + [anon_sym___kindof] = ACTIONS(7228), + [anon_sym___unused] = ACTIONS(7228), + [anon_sym__Complex] = ACTIONS(7228), + [anon_sym___complex] = ACTIONS(7228), + [anon_sym_IBOutlet] = ACTIONS(7228), + [anon_sym_IBInspectable] = ACTIONS(7228), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7228), + [anon_sym_COLON] = ACTIONS(7230), + [anon_sym_QMARK] = ACTIONS(7230), + [anon_sym_DASH_DASH] = ACTIONS(7230), + [anon_sym_PLUS_PLUS] = ACTIONS(7230), + [anon_sym_DOT] = ACTIONS(7230), + [anon_sym_DASH_GT] = ACTIONS(7230), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7228), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7228), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7228), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7228), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7228), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7228), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7228), + [anon_sym_NS_AVAILABLE] = ACTIONS(7228), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7228), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7228), + [anon_sym_API_AVAILABLE] = ACTIONS(7228), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7228), + [anon_sym_API_DEPRECATED] = ACTIONS(7228), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7228), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7228), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7228), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7228), + [anon_sym___deprecated_msg] = ACTIONS(7228), + [anon_sym___deprecated_enum_msg] = ACTIONS(7228), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7228), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7228), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7228), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7228), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7228), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7228), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3265] = { + [sym_identifier] = ACTIONS(7184), + [anon_sym_COMMA] = ACTIONS(7186), + [anon_sym_RPAREN] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_DASH] = ACTIONS(7184), + [anon_sym_PLUS] = ACTIONS(7184), + [anon_sym_STAR] = ACTIONS(7186), + [anon_sym_SLASH] = ACTIONS(7184), + [anon_sym_PERCENT] = ACTIONS(7186), + [anon_sym_PIPE_PIPE] = ACTIONS(7186), + [anon_sym_AMP_AMP] = ACTIONS(7186), + [anon_sym_PIPE] = ACTIONS(7184), + [anon_sym_CARET] = ACTIONS(7186), + [anon_sym_AMP] = ACTIONS(7184), + [anon_sym_EQ_EQ] = ACTIONS(7186), + [anon_sym_BANG_EQ] = ACTIONS(7186), + [anon_sym_GT] = ACTIONS(7184), + [anon_sym_GT_EQ] = ACTIONS(7186), + [anon_sym_LT_EQ] = ACTIONS(7186), + [anon_sym_LT] = ACTIONS(7184), + [anon_sym_LT_LT] = ACTIONS(7186), + [anon_sym_GT_GT] = ACTIONS(7186), + [anon_sym_SEMI] = ACTIONS(7186), + [anon_sym___attribute] = ACTIONS(7184), + [anon_sym___attribute__] = ACTIONS(7184), + [anon_sym_RBRACE] = ACTIONS(7186), + [anon_sym_LBRACK] = ACTIONS(7186), + [anon_sym_RBRACK] = ACTIONS(7186), + [anon_sym_const] = ACTIONS(7184), + [anon_sym_volatile] = ACTIONS(7184), + [anon_sym_restrict] = ACTIONS(7184), + [anon_sym__Atomic] = ACTIONS(7184), + [anon_sym_in] = ACTIONS(7184), + [anon_sym_out] = ACTIONS(7184), + [anon_sym_inout] = ACTIONS(7184), + [anon_sym_bycopy] = ACTIONS(7184), + [anon_sym_byref] = ACTIONS(7184), + [anon_sym_oneway] = ACTIONS(7184), + [anon_sym__Nullable] = ACTIONS(7184), + [anon_sym__Nonnull] = ACTIONS(7184), + [anon_sym__Nullable_result] = ACTIONS(7184), + [anon_sym__Null_unspecified] = ACTIONS(7184), + [anon_sym___autoreleasing] = ACTIONS(7184), + [anon_sym___nullable] = ACTIONS(7184), + [anon_sym___nonnull] = ACTIONS(7184), + [anon_sym___strong] = ACTIONS(7184), + [anon_sym___weak] = ACTIONS(7184), + [anon_sym___bridge] = ACTIONS(7184), + [anon_sym___bridge_transfer] = ACTIONS(7184), + [anon_sym___bridge_retained] = ACTIONS(7184), + [anon_sym___unsafe_unretained] = ACTIONS(7184), + [anon_sym___block] = ACTIONS(7184), + [anon_sym___kindof] = ACTIONS(7184), + [anon_sym___unused] = ACTIONS(7184), + [anon_sym__Complex] = ACTIONS(7184), + [anon_sym___complex] = ACTIONS(7184), + [anon_sym_IBOutlet] = ACTIONS(7184), + [anon_sym_IBInspectable] = ACTIONS(7184), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7184), + [anon_sym_COLON] = ACTIONS(7186), + [anon_sym_QMARK] = ACTIONS(7186), + [anon_sym_DASH_DASH] = ACTIONS(7186), + [anon_sym_PLUS_PLUS] = ACTIONS(7186), + [anon_sym_DOT] = ACTIONS(7186), + [anon_sym_DASH_GT] = ACTIONS(7186), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7184), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7184), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7184), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7184), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7184), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7184), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7184), + [anon_sym_NS_AVAILABLE] = ACTIONS(7184), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7184), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7184), + [anon_sym_API_AVAILABLE] = ACTIONS(7184), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7184), + [anon_sym_API_DEPRECATED] = ACTIONS(7184), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7184), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7184), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7184), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7184), + [anon_sym___deprecated_msg] = ACTIONS(7184), + [anon_sym___deprecated_enum_msg] = ACTIONS(7184), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7184), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7184), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7184), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7184), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7184), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7184), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3266] = { + [sym_identifier] = ACTIONS(7192), + [anon_sym_COMMA] = ACTIONS(7194), + [anon_sym_RPAREN] = ACTIONS(7194), + [anon_sym_LPAREN2] = ACTIONS(7194), + [anon_sym_DASH] = ACTIONS(7192), + [anon_sym_PLUS] = ACTIONS(7192), + [anon_sym_STAR] = ACTIONS(7194), + [anon_sym_SLASH] = ACTIONS(7192), + [anon_sym_PERCENT] = ACTIONS(7194), + [anon_sym_PIPE_PIPE] = ACTIONS(7194), + [anon_sym_AMP_AMP] = ACTIONS(7194), + [anon_sym_PIPE] = ACTIONS(7192), + [anon_sym_CARET] = ACTIONS(7194), + [anon_sym_AMP] = ACTIONS(7192), + [anon_sym_EQ_EQ] = ACTIONS(7194), + [anon_sym_BANG_EQ] = ACTIONS(7194), + [anon_sym_GT] = ACTIONS(7192), + [anon_sym_GT_EQ] = ACTIONS(7194), + [anon_sym_LT_EQ] = ACTIONS(7194), + [anon_sym_LT] = ACTIONS(7192), + [anon_sym_LT_LT] = ACTIONS(7194), + [anon_sym_GT_GT] = ACTIONS(7194), + [anon_sym_SEMI] = ACTIONS(7194), + [anon_sym___attribute] = ACTIONS(7192), + [anon_sym___attribute__] = ACTIONS(7192), + [anon_sym_RBRACE] = ACTIONS(7194), + [anon_sym_LBRACK] = ACTIONS(7194), + [anon_sym_RBRACK] = ACTIONS(7194), + [anon_sym_const] = ACTIONS(7192), + [anon_sym_volatile] = ACTIONS(7192), + [anon_sym_restrict] = ACTIONS(7192), + [anon_sym__Atomic] = ACTIONS(7192), + [anon_sym_in] = ACTIONS(7192), + [anon_sym_out] = ACTIONS(7192), + [anon_sym_inout] = ACTIONS(7192), + [anon_sym_bycopy] = ACTIONS(7192), + [anon_sym_byref] = ACTIONS(7192), + [anon_sym_oneway] = ACTIONS(7192), + [anon_sym__Nullable] = ACTIONS(7192), + [anon_sym__Nonnull] = ACTIONS(7192), + [anon_sym__Nullable_result] = ACTIONS(7192), + [anon_sym__Null_unspecified] = ACTIONS(7192), + [anon_sym___autoreleasing] = ACTIONS(7192), + [anon_sym___nullable] = ACTIONS(7192), + [anon_sym___nonnull] = ACTIONS(7192), + [anon_sym___strong] = ACTIONS(7192), + [anon_sym___weak] = ACTIONS(7192), + [anon_sym___bridge] = ACTIONS(7192), + [anon_sym___bridge_transfer] = ACTIONS(7192), + [anon_sym___bridge_retained] = ACTIONS(7192), + [anon_sym___unsafe_unretained] = ACTIONS(7192), + [anon_sym___block] = ACTIONS(7192), + [anon_sym___kindof] = ACTIONS(7192), + [anon_sym___unused] = ACTIONS(7192), + [anon_sym__Complex] = ACTIONS(7192), + [anon_sym___complex] = ACTIONS(7192), + [anon_sym_IBOutlet] = ACTIONS(7192), + [anon_sym_IBInspectable] = ACTIONS(7192), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7192), + [anon_sym_COLON] = ACTIONS(7194), + [anon_sym_QMARK] = ACTIONS(7194), + [anon_sym_DASH_DASH] = ACTIONS(7194), + [anon_sym_PLUS_PLUS] = ACTIONS(7194), + [anon_sym_DOT] = ACTIONS(7194), + [anon_sym_DASH_GT] = ACTIONS(7194), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7192), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7192), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7192), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7192), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7192), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7192), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7192), + [anon_sym_NS_AVAILABLE] = ACTIONS(7192), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7192), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7192), + [anon_sym_API_AVAILABLE] = ACTIONS(7192), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7192), + [anon_sym_API_DEPRECATED] = ACTIONS(7192), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7192), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7192), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7192), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7192), + [anon_sym___deprecated_msg] = ACTIONS(7192), + [anon_sym___deprecated_enum_msg] = ACTIONS(7192), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7192), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7192), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7192), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7192), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7192), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7192), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3267] = { + [sym_identifier] = ACTIONS(7088), + [anon_sym_COMMA] = ACTIONS(7090), + [anon_sym_RPAREN] = ACTIONS(7090), + [anon_sym_LPAREN2] = ACTIONS(7090), + [anon_sym_DASH] = ACTIONS(7088), + [anon_sym_PLUS] = ACTIONS(7088), + [anon_sym_STAR] = ACTIONS(7090), + [anon_sym_SLASH] = ACTIONS(7088), + [anon_sym_PERCENT] = ACTIONS(7090), + [anon_sym_PIPE_PIPE] = ACTIONS(7090), + [anon_sym_AMP_AMP] = ACTIONS(7090), + [anon_sym_PIPE] = ACTIONS(7088), + [anon_sym_CARET] = ACTIONS(7090), + [anon_sym_AMP] = ACTIONS(7088), + [anon_sym_EQ_EQ] = ACTIONS(7090), + [anon_sym_BANG_EQ] = ACTIONS(7090), + [anon_sym_GT] = ACTIONS(7088), + [anon_sym_GT_EQ] = ACTIONS(7090), + [anon_sym_LT_EQ] = ACTIONS(7090), + [anon_sym_LT] = ACTIONS(7088), + [anon_sym_LT_LT] = ACTIONS(7090), + [anon_sym_GT_GT] = ACTIONS(7090), + [anon_sym_SEMI] = ACTIONS(7090), + [anon_sym___attribute] = ACTIONS(7088), + [anon_sym___attribute__] = ACTIONS(7088), + [anon_sym_RBRACE] = ACTIONS(7090), + [anon_sym_LBRACK] = ACTIONS(7090), + [anon_sym_RBRACK] = ACTIONS(7090), + [anon_sym_const] = ACTIONS(7088), + [anon_sym_volatile] = ACTIONS(7088), + [anon_sym_restrict] = ACTIONS(7088), + [anon_sym__Atomic] = ACTIONS(7088), + [anon_sym_in] = ACTIONS(7088), + [anon_sym_out] = ACTIONS(7088), + [anon_sym_inout] = ACTIONS(7088), + [anon_sym_bycopy] = ACTIONS(7088), + [anon_sym_byref] = ACTIONS(7088), + [anon_sym_oneway] = ACTIONS(7088), + [anon_sym__Nullable] = ACTIONS(7088), + [anon_sym__Nonnull] = ACTIONS(7088), + [anon_sym__Nullable_result] = ACTIONS(7088), + [anon_sym__Null_unspecified] = ACTIONS(7088), + [anon_sym___autoreleasing] = ACTIONS(7088), + [anon_sym___nullable] = ACTIONS(7088), + [anon_sym___nonnull] = ACTIONS(7088), + [anon_sym___strong] = ACTIONS(7088), + [anon_sym___weak] = ACTIONS(7088), + [anon_sym___bridge] = ACTIONS(7088), + [anon_sym___bridge_transfer] = ACTIONS(7088), + [anon_sym___bridge_retained] = ACTIONS(7088), + [anon_sym___unsafe_unretained] = ACTIONS(7088), + [anon_sym___block] = ACTIONS(7088), + [anon_sym___kindof] = ACTIONS(7088), + [anon_sym___unused] = ACTIONS(7088), + [anon_sym__Complex] = ACTIONS(7088), + [anon_sym___complex] = ACTIONS(7088), + [anon_sym_IBOutlet] = ACTIONS(7088), + [anon_sym_IBInspectable] = ACTIONS(7088), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7088), + [anon_sym_COLON] = ACTIONS(7090), + [anon_sym_QMARK] = ACTIONS(7090), + [anon_sym_DASH_DASH] = ACTIONS(7090), + [anon_sym_PLUS_PLUS] = ACTIONS(7090), + [anon_sym_DOT] = ACTIONS(7090), + [anon_sym_DASH_GT] = ACTIONS(7090), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7088), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7088), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7088), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7088), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7088), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7088), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7088), + [anon_sym_NS_AVAILABLE] = ACTIONS(7088), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7088), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7088), + [anon_sym_API_AVAILABLE] = ACTIONS(7088), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7088), + [anon_sym_API_DEPRECATED] = ACTIONS(7088), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7088), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7088), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7088), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7088), + [anon_sym___deprecated_msg] = ACTIONS(7088), + [anon_sym___deprecated_enum_msg] = ACTIONS(7088), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7088), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7088), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7088), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7088), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7088), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7088), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3268] = { + [sym_identifier] = ACTIONS(7068), + [anon_sym_COMMA] = ACTIONS(7070), + [anon_sym_RPAREN] = ACTIONS(7070), + [anon_sym_LPAREN2] = ACTIONS(7070), + [anon_sym_DASH] = ACTIONS(7068), + [anon_sym_PLUS] = ACTIONS(7068), + [anon_sym_STAR] = ACTIONS(7070), + [anon_sym_SLASH] = ACTIONS(7068), + [anon_sym_PERCENT] = ACTIONS(7070), + [anon_sym_PIPE_PIPE] = ACTIONS(7070), + [anon_sym_AMP_AMP] = ACTIONS(7070), + [anon_sym_PIPE] = ACTIONS(7068), + [anon_sym_CARET] = ACTIONS(7070), + [anon_sym_AMP] = ACTIONS(7068), + [anon_sym_EQ_EQ] = ACTIONS(7070), + [anon_sym_BANG_EQ] = ACTIONS(7070), + [anon_sym_GT] = ACTIONS(7068), + [anon_sym_GT_EQ] = ACTIONS(7070), + [anon_sym_LT_EQ] = ACTIONS(7070), + [anon_sym_LT] = ACTIONS(7068), + [anon_sym_LT_LT] = ACTIONS(7070), + [anon_sym_GT_GT] = ACTIONS(7070), + [anon_sym_SEMI] = ACTIONS(7070), + [anon_sym___attribute] = ACTIONS(7068), + [anon_sym___attribute__] = ACTIONS(7068), + [anon_sym_RBRACE] = ACTIONS(7070), + [anon_sym_LBRACK] = ACTIONS(7070), + [anon_sym_RBRACK] = ACTIONS(7070), + [anon_sym_const] = ACTIONS(7068), + [anon_sym_volatile] = ACTIONS(7068), + [anon_sym_restrict] = ACTIONS(7068), + [anon_sym__Atomic] = ACTIONS(7068), + [anon_sym_in] = ACTIONS(7068), + [anon_sym_out] = ACTIONS(7068), + [anon_sym_inout] = ACTIONS(7068), + [anon_sym_bycopy] = ACTIONS(7068), + [anon_sym_byref] = ACTIONS(7068), + [anon_sym_oneway] = ACTIONS(7068), + [anon_sym__Nullable] = ACTIONS(7068), + [anon_sym__Nonnull] = ACTIONS(7068), + [anon_sym__Nullable_result] = ACTIONS(7068), + [anon_sym__Null_unspecified] = ACTIONS(7068), + [anon_sym___autoreleasing] = ACTIONS(7068), + [anon_sym___nullable] = ACTIONS(7068), + [anon_sym___nonnull] = ACTIONS(7068), + [anon_sym___strong] = ACTIONS(7068), + [anon_sym___weak] = ACTIONS(7068), + [anon_sym___bridge] = ACTIONS(7068), + [anon_sym___bridge_transfer] = ACTIONS(7068), + [anon_sym___bridge_retained] = ACTIONS(7068), + [anon_sym___unsafe_unretained] = ACTIONS(7068), + [anon_sym___block] = ACTIONS(7068), + [anon_sym___kindof] = ACTIONS(7068), + [anon_sym___unused] = ACTIONS(7068), + [anon_sym__Complex] = ACTIONS(7068), + [anon_sym___complex] = ACTIONS(7068), + [anon_sym_IBOutlet] = ACTIONS(7068), + [anon_sym_IBInspectable] = ACTIONS(7068), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7068), + [anon_sym_COLON] = ACTIONS(7070), + [anon_sym_QMARK] = ACTIONS(7070), + [anon_sym_DASH_DASH] = ACTIONS(7070), + [anon_sym_PLUS_PLUS] = ACTIONS(7070), + [anon_sym_DOT] = ACTIONS(7070), + [anon_sym_DASH_GT] = ACTIONS(7070), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7068), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7068), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7068), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7068), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7068), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7068), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7068), + [anon_sym_NS_AVAILABLE] = ACTIONS(7068), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7068), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7068), + [anon_sym_API_AVAILABLE] = ACTIONS(7068), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7068), + [anon_sym_API_DEPRECATED] = ACTIONS(7068), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7068), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7068), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7068), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7068), + [anon_sym___deprecated_msg] = ACTIONS(7068), + [anon_sym___deprecated_enum_msg] = ACTIONS(7068), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7068), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7068), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7068), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7068), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7068), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7068), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3269] = { + [sym_identifier] = ACTIONS(7100), + [anon_sym_COMMA] = ACTIONS(7102), + [anon_sym_RPAREN] = ACTIONS(7102), + [anon_sym_LPAREN2] = ACTIONS(7102), + [anon_sym_DASH] = ACTIONS(7100), + [anon_sym_PLUS] = ACTIONS(7100), + [anon_sym_STAR] = ACTIONS(7102), + [anon_sym_SLASH] = ACTIONS(7100), + [anon_sym_PERCENT] = ACTIONS(7102), + [anon_sym_PIPE_PIPE] = ACTIONS(7102), + [anon_sym_AMP_AMP] = ACTIONS(7102), + [anon_sym_PIPE] = ACTIONS(7100), + [anon_sym_CARET] = ACTIONS(7102), + [anon_sym_AMP] = ACTIONS(7100), + [anon_sym_EQ_EQ] = ACTIONS(7102), + [anon_sym_BANG_EQ] = ACTIONS(7102), + [anon_sym_GT] = ACTIONS(7100), + [anon_sym_GT_EQ] = ACTIONS(7102), + [anon_sym_LT_EQ] = ACTIONS(7102), + [anon_sym_LT] = ACTIONS(7100), + [anon_sym_LT_LT] = ACTIONS(7102), + [anon_sym_GT_GT] = ACTIONS(7102), + [anon_sym_SEMI] = ACTIONS(7102), + [anon_sym___attribute] = ACTIONS(7100), + [anon_sym___attribute__] = ACTIONS(7100), + [anon_sym_RBRACE] = ACTIONS(7102), + [anon_sym_LBRACK] = ACTIONS(7102), + [anon_sym_RBRACK] = ACTIONS(7102), + [anon_sym_const] = ACTIONS(7100), + [anon_sym_volatile] = ACTIONS(7100), + [anon_sym_restrict] = ACTIONS(7100), + [anon_sym__Atomic] = ACTIONS(7100), + [anon_sym_in] = ACTIONS(7100), + [anon_sym_out] = ACTIONS(7100), + [anon_sym_inout] = ACTIONS(7100), + [anon_sym_bycopy] = ACTIONS(7100), + [anon_sym_byref] = ACTIONS(7100), + [anon_sym_oneway] = ACTIONS(7100), + [anon_sym__Nullable] = ACTIONS(7100), + [anon_sym__Nonnull] = ACTIONS(7100), + [anon_sym__Nullable_result] = ACTIONS(7100), + [anon_sym__Null_unspecified] = ACTIONS(7100), + [anon_sym___autoreleasing] = ACTIONS(7100), + [anon_sym___nullable] = ACTIONS(7100), + [anon_sym___nonnull] = ACTIONS(7100), + [anon_sym___strong] = ACTIONS(7100), + [anon_sym___weak] = ACTIONS(7100), + [anon_sym___bridge] = ACTIONS(7100), + [anon_sym___bridge_transfer] = ACTIONS(7100), + [anon_sym___bridge_retained] = ACTIONS(7100), + [anon_sym___unsafe_unretained] = ACTIONS(7100), + [anon_sym___block] = ACTIONS(7100), + [anon_sym___kindof] = ACTIONS(7100), + [anon_sym___unused] = ACTIONS(7100), + [anon_sym__Complex] = ACTIONS(7100), + [anon_sym___complex] = ACTIONS(7100), + [anon_sym_IBOutlet] = ACTIONS(7100), + [anon_sym_IBInspectable] = ACTIONS(7100), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7100), + [anon_sym_COLON] = ACTIONS(7102), + [anon_sym_QMARK] = ACTIONS(7102), + [anon_sym_DASH_DASH] = ACTIONS(7102), + [anon_sym_PLUS_PLUS] = ACTIONS(7102), + [anon_sym_DOT] = ACTIONS(7102), + [anon_sym_DASH_GT] = ACTIONS(7102), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7100), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7100), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7100), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7100), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7100), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7100), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7100), + [anon_sym_NS_AVAILABLE] = ACTIONS(7100), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7100), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7100), + [anon_sym_API_AVAILABLE] = ACTIONS(7100), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7100), + [anon_sym_API_DEPRECATED] = ACTIONS(7100), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7100), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7100), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7100), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7100), + [anon_sym___deprecated_msg] = ACTIONS(7100), + [anon_sym___deprecated_enum_msg] = ACTIONS(7100), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7100), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7100), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7100), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7100), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7100), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7100), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3270] = { + [sym_identifier] = ACTIONS(7116), + [anon_sym_COMMA] = ACTIONS(7118), + [anon_sym_RPAREN] = ACTIONS(7118), + [anon_sym_LPAREN2] = ACTIONS(7118), + [anon_sym_DASH] = ACTIONS(7116), + [anon_sym_PLUS] = ACTIONS(7116), + [anon_sym_STAR] = ACTIONS(7118), + [anon_sym_SLASH] = ACTIONS(7116), + [anon_sym_PERCENT] = ACTIONS(7118), + [anon_sym_PIPE_PIPE] = ACTIONS(7118), + [anon_sym_AMP_AMP] = ACTIONS(7118), + [anon_sym_PIPE] = ACTIONS(7116), + [anon_sym_CARET] = ACTIONS(7118), + [anon_sym_AMP] = ACTIONS(7116), + [anon_sym_EQ_EQ] = ACTIONS(7118), + [anon_sym_BANG_EQ] = ACTIONS(7118), + [anon_sym_GT] = ACTIONS(7116), + [anon_sym_GT_EQ] = ACTIONS(7118), + [anon_sym_LT_EQ] = ACTIONS(7118), + [anon_sym_LT] = ACTIONS(7116), + [anon_sym_LT_LT] = ACTIONS(7118), + [anon_sym_GT_GT] = ACTIONS(7118), + [anon_sym_SEMI] = ACTIONS(7118), + [anon_sym___attribute] = ACTIONS(7116), + [anon_sym___attribute__] = ACTIONS(7116), + [anon_sym_RBRACE] = ACTIONS(7118), + [anon_sym_LBRACK] = ACTIONS(7118), + [anon_sym_RBRACK] = ACTIONS(7118), + [anon_sym_const] = ACTIONS(7116), + [anon_sym_volatile] = ACTIONS(7116), + [anon_sym_restrict] = ACTIONS(7116), + [anon_sym__Atomic] = ACTIONS(7116), + [anon_sym_in] = ACTIONS(7116), + [anon_sym_out] = ACTIONS(7116), + [anon_sym_inout] = ACTIONS(7116), + [anon_sym_bycopy] = ACTIONS(7116), + [anon_sym_byref] = ACTIONS(7116), + [anon_sym_oneway] = ACTIONS(7116), + [anon_sym__Nullable] = ACTIONS(7116), + [anon_sym__Nonnull] = ACTIONS(7116), + [anon_sym__Nullable_result] = ACTIONS(7116), + [anon_sym__Null_unspecified] = ACTIONS(7116), + [anon_sym___autoreleasing] = ACTIONS(7116), + [anon_sym___nullable] = ACTIONS(7116), + [anon_sym___nonnull] = ACTIONS(7116), + [anon_sym___strong] = ACTIONS(7116), + [anon_sym___weak] = ACTIONS(7116), + [anon_sym___bridge] = ACTIONS(7116), + [anon_sym___bridge_transfer] = ACTIONS(7116), + [anon_sym___bridge_retained] = ACTIONS(7116), + [anon_sym___unsafe_unretained] = ACTIONS(7116), + [anon_sym___block] = ACTIONS(7116), + [anon_sym___kindof] = ACTIONS(7116), + [anon_sym___unused] = ACTIONS(7116), + [anon_sym__Complex] = ACTIONS(7116), + [anon_sym___complex] = ACTIONS(7116), + [anon_sym_IBOutlet] = ACTIONS(7116), + [anon_sym_IBInspectable] = ACTIONS(7116), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7116), + [anon_sym_COLON] = ACTIONS(7118), + [anon_sym_QMARK] = ACTIONS(7118), + [anon_sym_DASH_DASH] = ACTIONS(7118), + [anon_sym_PLUS_PLUS] = ACTIONS(7118), + [anon_sym_DOT] = ACTIONS(7118), + [anon_sym_DASH_GT] = ACTIONS(7118), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7116), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7116), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7116), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7116), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7116), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7116), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7116), + [anon_sym_NS_AVAILABLE] = ACTIONS(7116), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7116), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7116), + [anon_sym_API_AVAILABLE] = ACTIONS(7116), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7116), + [anon_sym_API_DEPRECATED] = ACTIONS(7116), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7116), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7116), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7116), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7116), + [anon_sym___deprecated_msg] = ACTIONS(7116), + [anon_sym___deprecated_enum_msg] = ACTIONS(7116), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7116), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7116), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7116), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7116), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7116), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7116), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3271] = { + [sym_identifier] = ACTIONS(7160), + [anon_sym_COMMA] = ACTIONS(7162), + [anon_sym_RPAREN] = ACTIONS(7162), + [anon_sym_LPAREN2] = ACTIONS(7162), + [anon_sym_DASH] = ACTIONS(7160), + [anon_sym_PLUS] = ACTIONS(7160), + [anon_sym_STAR] = ACTIONS(7162), + [anon_sym_SLASH] = ACTIONS(7160), + [anon_sym_PERCENT] = ACTIONS(7162), + [anon_sym_PIPE_PIPE] = ACTIONS(7162), + [anon_sym_AMP_AMP] = ACTIONS(7162), + [anon_sym_PIPE] = ACTIONS(7160), + [anon_sym_CARET] = ACTIONS(7162), + [anon_sym_AMP] = ACTIONS(7160), + [anon_sym_EQ_EQ] = ACTIONS(7162), + [anon_sym_BANG_EQ] = ACTIONS(7162), + [anon_sym_GT] = ACTIONS(7160), + [anon_sym_GT_EQ] = ACTIONS(7162), + [anon_sym_LT_EQ] = ACTIONS(7162), + [anon_sym_LT] = ACTIONS(7160), + [anon_sym_LT_LT] = ACTIONS(7162), + [anon_sym_GT_GT] = ACTIONS(7162), + [anon_sym_SEMI] = ACTIONS(7162), + [anon_sym___attribute] = ACTIONS(7160), + [anon_sym___attribute__] = ACTIONS(7160), + [anon_sym_RBRACE] = ACTIONS(7162), + [anon_sym_LBRACK] = ACTIONS(7162), + [anon_sym_RBRACK] = ACTIONS(7162), + [anon_sym_const] = ACTIONS(7160), + [anon_sym_volatile] = ACTIONS(7160), + [anon_sym_restrict] = ACTIONS(7160), + [anon_sym__Atomic] = ACTIONS(7160), + [anon_sym_in] = ACTIONS(7160), + [anon_sym_out] = ACTIONS(7160), + [anon_sym_inout] = ACTIONS(7160), + [anon_sym_bycopy] = ACTIONS(7160), + [anon_sym_byref] = ACTIONS(7160), + [anon_sym_oneway] = ACTIONS(7160), + [anon_sym__Nullable] = ACTIONS(7160), + [anon_sym__Nonnull] = ACTIONS(7160), + [anon_sym__Nullable_result] = ACTIONS(7160), + [anon_sym__Null_unspecified] = ACTIONS(7160), + [anon_sym___autoreleasing] = ACTIONS(7160), + [anon_sym___nullable] = ACTIONS(7160), + [anon_sym___nonnull] = ACTIONS(7160), + [anon_sym___strong] = ACTIONS(7160), + [anon_sym___weak] = ACTIONS(7160), + [anon_sym___bridge] = ACTIONS(7160), + [anon_sym___bridge_transfer] = ACTIONS(7160), + [anon_sym___bridge_retained] = ACTIONS(7160), + [anon_sym___unsafe_unretained] = ACTIONS(7160), + [anon_sym___block] = ACTIONS(7160), + [anon_sym___kindof] = ACTIONS(7160), + [anon_sym___unused] = ACTIONS(7160), + [anon_sym__Complex] = ACTIONS(7160), + [anon_sym___complex] = ACTIONS(7160), + [anon_sym_IBOutlet] = ACTIONS(7160), + [anon_sym_IBInspectable] = ACTIONS(7160), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7160), + [anon_sym_COLON] = ACTIONS(7162), + [anon_sym_QMARK] = ACTIONS(7162), + [anon_sym_DASH_DASH] = ACTIONS(7162), + [anon_sym_PLUS_PLUS] = ACTIONS(7162), + [anon_sym_DOT] = ACTIONS(7162), + [anon_sym_DASH_GT] = ACTIONS(7162), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7160), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7160), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7160), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7160), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7160), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7160), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7160), + [anon_sym_NS_AVAILABLE] = ACTIONS(7160), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7160), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7160), + [anon_sym_API_AVAILABLE] = ACTIONS(7160), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7160), + [anon_sym_API_DEPRECATED] = ACTIONS(7160), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7160), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7160), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7160), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7160), + [anon_sym___deprecated_msg] = ACTIONS(7160), + [anon_sym___deprecated_enum_msg] = ACTIONS(7160), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7160), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7160), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7160), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7160), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7160), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7160), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3272] = { + [sym_identifier] = ACTIONS(7124), + [anon_sym_COMMA] = ACTIONS(7126), + [anon_sym_RPAREN] = ACTIONS(7126), + [anon_sym_LPAREN2] = ACTIONS(7126), + [anon_sym_DASH] = ACTIONS(7124), + [anon_sym_PLUS] = ACTIONS(7124), + [anon_sym_STAR] = ACTIONS(7126), + [anon_sym_SLASH] = ACTIONS(7124), + [anon_sym_PERCENT] = ACTIONS(7126), + [anon_sym_PIPE_PIPE] = ACTIONS(7126), + [anon_sym_AMP_AMP] = ACTIONS(7126), + [anon_sym_PIPE] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7126), + [anon_sym_AMP] = ACTIONS(7124), + [anon_sym_EQ_EQ] = ACTIONS(7126), + [anon_sym_BANG_EQ] = ACTIONS(7126), + [anon_sym_GT] = ACTIONS(7124), + [anon_sym_GT_EQ] = ACTIONS(7126), + [anon_sym_LT_EQ] = ACTIONS(7126), + [anon_sym_LT] = ACTIONS(7124), + [anon_sym_LT_LT] = ACTIONS(7126), + [anon_sym_GT_GT] = ACTIONS(7126), + [anon_sym_SEMI] = ACTIONS(7126), + [anon_sym___attribute] = ACTIONS(7124), + [anon_sym___attribute__] = ACTIONS(7124), + [anon_sym_RBRACE] = ACTIONS(7126), + [anon_sym_LBRACK] = ACTIONS(7126), + [anon_sym_RBRACK] = ACTIONS(7126), + [anon_sym_const] = ACTIONS(7124), + [anon_sym_volatile] = ACTIONS(7124), + [anon_sym_restrict] = ACTIONS(7124), + [anon_sym__Atomic] = ACTIONS(7124), + [anon_sym_in] = ACTIONS(7124), + [anon_sym_out] = ACTIONS(7124), + [anon_sym_inout] = ACTIONS(7124), + [anon_sym_bycopy] = ACTIONS(7124), + [anon_sym_byref] = ACTIONS(7124), + [anon_sym_oneway] = ACTIONS(7124), + [anon_sym__Nullable] = ACTIONS(7124), + [anon_sym__Nonnull] = ACTIONS(7124), + [anon_sym__Nullable_result] = ACTIONS(7124), + [anon_sym__Null_unspecified] = ACTIONS(7124), + [anon_sym___autoreleasing] = ACTIONS(7124), + [anon_sym___nullable] = ACTIONS(7124), + [anon_sym___nonnull] = ACTIONS(7124), + [anon_sym___strong] = ACTIONS(7124), + [anon_sym___weak] = ACTIONS(7124), + [anon_sym___bridge] = ACTIONS(7124), + [anon_sym___bridge_transfer] = ACTIONS(7124), + [anon_sym___bridge_retained] = ACTIONS(7124), + [anon_sym___unsafe_unretained] = ACTIONS(7124), + [anon_sym___block] = ACTIONS(7124), + [anon_sym___kindof] = ACTIONS(7124), + [anon_sym___unused] = ACTIONS(7124), + [anon_sym__Complex] = ACTIONS(7124), + [anon_sym___complex] = ACTIONS(7124), + [anon_sym_IBOutlet] = ACTIONS(7124), + [anon_sym_IBInspectable] = ACTIONS(7124), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7124), + [anon_sym_COLON] = ACTIONS(7126), + [anon_sym_QMARK] = ACTIONS(7126), + [anon_sym_DASH_DASH] = ACTIONS(7126), + [anon_sym_PLUS_PLUS] = ACTIONS(7126), + [anon_sym_DOT] = ACTIONS(7126), + [anon_sym_DASH_GT] = ACTIONS(7126), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7124), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7124), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7124), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7124), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7124), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7124), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7124), + [anon_sym_NS_AVAILABLE] = ACTIONS(7124), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7124), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7124), + [anon_sym_API_AVAILABLE] = ACTIONS(7124), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7124), + [anon_sym_API_DEPRECATED] = ACTIONS(7124), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7124), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7124), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7124), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7124), + [anon_sym___deprecated_msg] = ACTIONS(7124), + [anon_sym___deprecated_enum_msg] = ACTIONS(7124), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7124), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7124), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7124), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7124), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7124), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7124), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3273] = { + [sym_identifier] = ACTIONS(7128), + [anon_sym_COMMA] = ACTIONS(7130), + [anon_sym_RPAREN] = ACTIONS(7130), + [anon_sym_LPAREN2] = ACTIONS(7130), + [anon_sym_DASH] = ACTIONS(7128), + [anon_sym_PLUS] = ACTIONS(7128), + [anon_sym_STAR] = ACTIONS(7130), + [anon_sym_SLASH] = ACTIONS(7128), + [anon_sym_PERCENT] = ACTIONS(7130), + [anon_sym_PIPE_PIPE] = ACTIONS(7130), + [anon_sym_AMP_AMP] = ACTIONS(7130), + [anon_sym_PIPE] = ACTIONS(7128), + [anon_sym_CARET] = ACTIONS(7130), + [anon_sym_AMP] = ACTIONS(7128), + [anon_sym_EQ_EQ] = ACTIONS(7130), + [anon_sym_BANG_EQ] = ACTIONS(7130), + [anon_sym_GT] = ACTIONS(7128), + [anon_sym_GT_EQ] = ACTIONS(7130), + [anon_sym_LT_EQ] = ACTIONS(7130), + [anon_sym_LT] = ACTIONS(7128), + [anon_sym_LT_LT] = ACTIONS(7130), + [anon_sym_GT_GT] = ACTIONS(7130), + [anon_sym_SEMI] = ACTIONS(7130), + [anon_sym___attribute] = ACTIONS(7128), + [anon_sym___attribute__] = ACTIONS(7128), + [anon_sym_RBRACE] = ACTIONS(7130), + [anon_sym_LBRACK] = ACTIONS(7130), + [anon_sym_RBRACK] = ACTIONS(7130), + [anon_sym_const] = ACTIONS(7128), + [anon_sym_volatile] = ACTIONS(7128), + [anon_sym_restrict] = ACTIONS(7128), + [anon_sym__Atomic] = ACTIONS(7128), + [anon_sym_in] = ACTIONS(7128), + [anon_sym_out] = ACTIONS(7128), + [anon_sym_inout] = ACTIONS(7128), + [anon_sym_bycopy] = ACTIONS(7128), + [anon_sym_byref] = ACTIONS(7128), + [anon_sym_oneway] = ACTIONS(7128), + [anon_sym__Nullable] = ACTIONS(7128), + [anon_sym__Nonnull] = ACTIONS(7128), + [anon_sym__Nullable_result] = ACTIONS(7128), + [anon_sym__Null_unspecified] = ACTIONS(7128), + [anon_sym___autoreleasing] = ACTIONS(7128), + [anon_sym___nullable] = ACTIONS(7128), + [anon_sym___nonnull] = ACTIONS(7128), + [anon_sym___strong] = ACTIONS(7128), + [anon_sym___weak] = ACTIONS(7128), + [anon_sym___bridge] = ACTIONS(7128), + [anon_sym___bridge_transfer] = ACTIONS(7128), + [anon_sym___bridge_retained] = ACTIONS(7128), + [anon_sym___unsafe_unretained] = ACTIONS(7128), + [anon_sym___block] = ACTIONS(7128), + [anon_sym___kindof] = ACTIONS(7128), + [anon_sym___unused] = ACTIONS(7128), + [anon_sym__Complex] = ACTIONS(7128), + [anon_sym___complex] = ACTIONS(7128), + [anon_sym_IBOutlet] = ACTIONS(7128), + [anon_sym_IBInspectable] = ACTIONS(7128), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7128), + [anon_sym_COLON] = ACTIONS(7130), + [anon_sym_QMARK] = ACTIONS(7130), + [anon_sym_DASH_DASH] = ACTIONS(7130), + [anon_sym_PLUS_PLUS] = ACTIONS(7130), + [anon_sym_DOT] = ACTIONS(7130), + [anon_sym_DASH_GT] = ACTIONS(7130), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7128), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7128), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7128), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7128), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7128), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7128), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7128), + [anon_sym_NS_AVAILABLE] = ACTIONS(7128), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7128), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7128), + [anon_sym_API_AVAILABLE] = ACTIONS(7128), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7128), + [anon_sym_API_DEPRECATED] = ACTIONS(7128), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7128), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7128), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7128), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7128), + [anon_sym___deprecated_msg] = ACTIONS(7128), + [anon_sym___deprecated_enum_msg] = ACTIONS(7128), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7128), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7128), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7128), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7128), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7128), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7128), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3274] = { + [sym_identifier] = ACTIONS(7112), + [anon_sym_COMMA] = ACTIONS(7114), + [anon_sym_RPAREN] = ACTIONS(7114), + [anon_sym_LPAREN2] = ACTIONS(7114), + [anon_sym_DASH] = ACTIONS(7112), + [anon_sym_PLUS] = ACTIONS(7112), + [anon_sym_STAR] = ACTIONS(7114), + [anon_sym_SLASH] = ACTIONS(7112), + [anon_sym_PERCENT] = ACTIONS(7114), + [anon_sym_PIPE_PIPE] = ACTIONS(7114), + [anon_sym_AMP_AMP] = ACTIONS(7114), + [anon_sym_PIPE] = ACTIONS(7112), + [anon_sym_CARET] = ACTIONS(7114), + [anon_sym_AMP] = ACTIONS(7112), + [anon_sym_EQ_EQ] = ACTIONS(7114), + [anon_sym_BANG_EQ] = ACTIONS(7114), + [anon_sym_GT] = ACTIONS(7112), + [anon_sym_GT_EQ] = ACTIONS(7114), + [anon_sym_LT_EQ] = ACTIONS(7114), + [anon_sym_LT] = ACTIONS(7112), + [anon_sym_LT_LT] = ACTIONS(7114), + [anon_sym_GT_GT] = ACTIONS(7114), + [anon_sym_SEMI] = ACTIONS(7114), + [anon_sym___attribute] = ACTIONS(7112), + [anon_sym___attribute__] = ACTIONS(7112), + [anon_sym_RBRACE] = ACTIONS(7114), + [anon_sym_LBRACK] = ACTIONS(7114), + [anon_sym_RBRACK] = ACTIONS(7114), + [anon_sym_const] = ACTIONS(7112), + [anon_sym_volatile] = ACTIONS(7112), + [anon_sym_restrict] = ACTIONS(7112), + [anon_sym__Atomic] = ACTIONS(7112), + [anon_sym_in] = ACTIONS(7112), + [anon_sym_out] = ACTIONS(7112), + [anon_sym_inout] = ACTIONS(7112), + [anon_sym_bycopy] = ACTIONS(7112), + [anon_sym_byref] = ACTIONS(7112), + [anon_sym_oneway] = ACTIONS(7112), + [anon_sym__Nullable] = ACTIONS(7112), + [anon_sym__Nonnull] = ACTIONS(7112), + [anon_sym__Nullable_result] = ACTIONS(7112), + [anon_sym__Null_unspecified] = ACTIONS(7112), + [anon_sym___autoreleasing] = ACTIONS(7112), + [anon_sym___nullable] = ACTIONS(7112), + [anon_sym___nonnull] = ACTIONS(7112), + [anon_sym___strong] = ACTIONS(7112), + [anon_sym___weak] = ACTIONS(7112), + [anon_sym___bridge] = ACTIONS(7112), + [anon_sym___bridge_transfer] = ACTIONS(7112), + [anon_sym___bridge_retained] = ACTIONS(7112), + [anon_sym___unsafe_unretained] = ACTIONS(7112), + [anon_sym___block] = ACTIONS(7112), + [anon_sym___kindof] = ACTIONS(7112), + [anon_sym___unused] = ACTIONS(7112), + [anon_sym__Complex] = ACTIONS(7112), + [anon_sym___complex] = ACTIONS(7112), + [anon_sym_IBOutlet] = ACTIONS(7112), + [anon_sym_IBInspectable] = ACTIONS(7112), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7112), + [anon_sym_COLON] = ACTIONS(7114), + [anon_sym_QMARK] = ACTIONS(7114), + [anon_sym_DASH_DASH] = ACTIONS(7114), + [anon_sym_PLUS_PLUS] = ACTIONS(7114), + [anon_sym_DOT] = ACTIONS(7114), + [anon_sym_DASH_GT] = ACTIONS(7114), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7112), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7112), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7112), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7112), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7112), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7112), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7112), + [anon_sym_NS_AVAILABLE] = ACTIONS(7112), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7112), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7112), + [anon_sym_API_AVAILABLE] = ACTIONS(7112), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7112), + [anon_sym_API_DEPRECATED] = ACTIONS(7112), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7112), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7112), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7112), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7112), + [anon_sym___deprecated_msg] = ACTIONS(7112), + [anon_sym___deprecated_enum_msg] = ACTIONS(7112), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7112), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7112), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7112), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7112), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7112), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7112), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3275] = { + [sym_identifier] = ACTIONS(7120), + [anon_sym_COMMA] = ACTIONS(7122), + [anon_sym_RPAREN] = ACTIONS(7122), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7120), + [anon_sym_PLUS] = ACTIONS(7120), + [anon_sym_STAR] = ACTIONS(7122), + [anon_sym_SLASH] = ACTIONS(7120), + [anon_sym_PERCENT] = ACTIONS(7122), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_PIPE] = ACTIONS(7120), + [anon_sym_CARET] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7120), + [anon_sym_EQ_EQ] = ACTIONS(7122), + [anon_sym_BANG_EQ] = ACTIONS(7122), + [anon_sym_GT] = ACTIONS(7120), + [anon_sym_GT_EQ] = ACTIONS(7122), + [anon_sym_LT_EQ] = ACTIONS(7122), + [anon_sym_LT] = ACTIONS(7120), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_GT_GT] = ACTIONS(7122), + [anon_sym_SEMI] = ACTIONS(7122), + [anon_sym___attribute] = ACTIONS(7120), + [anon_sym___attribute__] = ACTIONS(7120), + [anon_sym_RBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7122), + [anon_sym_RBRACK] = ACTIONS(7122), + [anon_sym_const] = ACTIONS(7120), + [anon_sym_volatile] = ACTIONS(7120), + [anon_sym_restrict] = ACTIONS(7120), + [anon_sym__Atomic] = ACTIONS(7120), + [anon_sym_in] = ACTIONS(7120), + [anon_sym_out] = ACTIONS(7120), + [anon_sym_inout] = ACTIONS(7120), + [anon_sym_bycopy] = ACTIONS(7120), + [anon_sym_byref] = ACTIONS(7120), + [anon_sym_oneway] = ACTIONS(7120), + [anon_sym__Nullable] = ACTIONS(7120), + [anon_sym__Nonnull] = ACTIONS(7120), + [anon_sym__Nullable_result] = ACTIONS(7120), + [anon_sym__Null_unspecified] = ACTIONS(7120), + [anon_sym___autoreleasing] = ACTIONS(7120), + [anon_sym___nullable] = ACTIONS(7120), + [anon_sym___nonnull] = ACTIONS(7120), + [anon_sym___strong] = ACTIONS(7120), + [anon_sym___weak] = ACTIONS(7120), + [anon_sym___bridge] = ACTIONS(7120), + [anon_sym___bridge_transfer] = ACTIONS(7120), + [anon_sym___bridge_retained] = ACTIONS(7120), + [anon_sym___unsafe_unretained] = ACTIONS(7120), + [anon_sym___block] = ACTIONS(7120), + [anon_sym___kindof] = ACTIONS(7120), + [anon_sym___unused] = ACTIONS(7120), + [anon_sym__Complex] = ACTIONS(7120), + [anon_sym___complex] = ACTIONS(7120), + [anon_sym_IBOutlet] = ACTIONS(7120), + [anon_sym_IBInspectable] = ACTIONS(7120), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7120), + [anon_sym_COLON] = ACTIONS(7122), + [anon_sym_QMARK] = ACTIONS(7122), + [anon_sym_DASH_DASH] = ACTIONS(7122), + [anon_sym_PLUS_PLUS] = ACTIONS(7122), + [anon_sym_DOT] = ACTIONS(7122), + [anon_sym_DASH_GT] = ACTIONS(7122), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7120), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7120), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7120), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7120), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7120), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7120), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7120), + [anon_sym_NS_AVAILABLE] = ACTIONS(7120), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7120), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7120), + [anon_sym_API_AVAILABLE] = ACTIONS(7120), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7120), + [anon_sym_API_DEPRECATED] = ACTIONS(7120), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7120), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7120), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7120), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7120), + [anon_sym___deprecated_msg] = ACTIONS(7120), + [anon_sym___deprecated_enum_msg] = ACTIONS(7120), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7120), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7120), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7120), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7120), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7120), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7120), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3276] = { + [sym_identifier] = ACTIONS(7132), + [anon_sym_COMMA] = ACTIONS(7134), + [anon_sym_RPAREN] = ACTIONS(7134), + [anon_sym_LPAREN2] = ACTIONS(7134), + [anon_sym_DASH] = ACTIONS(7132), + [anon_sym_PLUS] = ACTIONS(7132), + [anon_sym_STAR] = ACTIONS(7134), + [anon_sym_SLASH] = ACTIONS(7132), + [anon_sym_PERCENT] = ACTIONS(7134), + [anon_sym_PIPE_PIPE] = ACTIONS(7134), + [anon_sym_AMP_AMP] = ACTIONS(7134), + [anon_sym_PIPE] = ACTIONS(7132), + [anon_sym_CARET] = ACTIONS(7134), + [anon_sym_AMP] = ACTIONS(7132), + [anon_sym_EQ_EQ] = ACTIONS(7134), + [anon_sym_BANG_EQ] = ACTIONS(7134), + [anon_sym_GT] = ACTIONS(7132), + [anon_sym_GT_EQ] = ACTIONS(7134), + [anon_sym_LT_EQ] = ACTIONS(7134), + [anon_sym_LT] = ACTIONS(7132), + [anon_sym_LT_LT] = ACTIONS(7134), + [anon_sym_GT_GT] = ACTIONS(7134), + [anon_sym_SEMI] = ACTIONS(7134), + [anon_sym___attribute] = ACTIONS(7132), + [anon_sym___attribute__] = ACTIONS(7132), + [anon_sym_RBRACE] = ACTIONS(7134), + [anon_sym_LBRACK] = ACTIONS(7134), + [anon_sym_RBRACK] = ACTIONS(7134), + [anon_sym_const] = ACTIONS(7132), + [anon_sym_volatile] = ACTIONS(7132), + [anon_sym_restrict] = ACTIONS(7132), + [anon_sym__Atomic] = ACTIONS(7132), + [anon_sym_in] = ACTIONS(7132), + [anon_sym_out] = ACTIONS(7132), + [anon_sym_inout] = ACTIONS(7132), + [anon_sym_bycopy] = ACTIONS(7132), + [anon_sym_byref] = ACTIONS(7132), + [anon_sym_oneway] = ACTIONS(7132), + [anon_sym__Nullable] = ACTIONS(7132), + [anon_sym__Nonnull] = ACTIONS(7132), + [anon_sym__Nullable_result] = ACTIONS(7132), + [anon_sym__Null_unspecified] = ACTIONS(7132), + [anon_sym___autoreleasing] = ACTIONS(7132), + [anon_sym___nullable] = ACTIONS(7132), + [anon_sym___nonnull] = ACTIONS(7132), + [anon_sym___strong] = ACTIONS(7132), + [anon_sym___weak] = ACTIONS(7132), + [anon_sym___bridge] = ACTIONS(7132), + [anon_sym___bridge_transfer] = ACTIONS(7132), + [anon_sym___bridge_retained] = ACTIONS(7132), + [anon_sym___unsafe_unretained] = ACTIONS(7132), + [anon_sym___block] = ACTIONS(7132), + [anon_sym___kindof] = ACTIONS(7132), + [anon_sym___unused] = ACTIONS(7132), + [anon_sym__Complex] = ACTIONS(7132), + [anon_sym___complex] = ACTIONS(7132), + [anon_sym_IBOutlet] = ACTIONS(7132), + [anon_sym_IBInspectable] = ACTIONS(7132), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7132), + [anon_sym_COLON] = ACTIONS(7134), + [anon_sym_QMARK] = ACTIONS(7134), + [anon_sym_DASH_DASH] = ACTIONS(7134), + [anon_sym_PLUS_PLUS] = ACTIONS(7134), + [anon_sym_DOT] = ACTIONS(7134), + [anon_sym_DASH_GT] = ACTIONS(7134), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7132), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7132), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7132), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7132), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7132), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7132), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7132), + [anon_sym_NS_AVAILABLE] = ACTIONS(7132), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7132), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7132), + [anon_sym_API_AVAILABLE] = ACTIONS(7132), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7132), + [anon_sym_API_DEPRECATED] = ACTIONS(7132), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7132), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7132), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7132), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7132), + [anon_sym___deprecated_msg] = ACTIONS(7132), + [anon_sym___deprecated_enum_msg] = ACTIONS(7132), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7132), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7132), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7132), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7132), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7132), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7132), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3277] = { + [sym_identifier] = ACTIONS(7136), + [anon_sym_COMMA] = ACTIONS(7138), + [anon_sym_RPAREN] = ACTIONS(7138), + [anon_sym_LPAREN2] = ACTIONS(7138), + [anon_sym_DASH] = ACTIONS(7136), + [anon_sym_PLUS] = ACTIONS(7136), + [anon_sym_STAR] = ACTIONS(7138), + [anon_sym_SLASH] = ACTIONS(7136), + [anon_sym_PERCENT] = ACTIONS(7138), + [anon_sym_PIPE_PIPE] = ACTIONS(7138), + [anon_sym_AMP_AMP] = ACTIONS(7138), + [anon_sym_PIPE] = ACTIONS(7136), + [anon_sym_CARET] = ACTIONS(7138), + [anon_sym_AMP] = ACTIONS(7136), + [anon_sym_EQ_EQ] = ACTIONS(7138), + [anon_sym_BANG_EQ] = ACTIONS(7138), + [anon_sym_GT] = ACTIONS(7136), + [anon_sym_GT_EQ] = ACTIONS(7138), + [anon_sym_LT_EQ] = ACTIONS(7138), + [anon_sym_LT] = ACTIONS(7136), + [anon_sym_LT_LT] = ACTIONS(7138), + [anon_sym_GT_GT] = ACTIONS(7138), + [anon_sym_SEMI] = ACTIONS(7138), + [anon_sym___attribute] = ACTIONS(7136), + [anon_sym___attribute__] = ACTIONS(7136), + [anon_sym_RBRACE] = ACTIONS(7138), + [anon_sym_LBRACK] = ACTIONS(7138), + [anon_sym_RBRACK] = ACTIONS(7138), + [anon_sym_const] = ACTIONS(7136), + [anon_sym_volatile] = ACTIONS(7136), + [anon_sym_restrict] = ACTIONS(7136), + [anon_sym__Atomic] = ACTIONS(7136), + [anon_sym_in] = ACTIONS(7136), + [anon_sym_out] = ACTIONS(7136), + [anon_sym_inout] = ACTIONS(7136), + [anon_sym_bycopy] = ACTIONS(7136), + [anon_sym_byref] = ACTIONS(7136), + [anon_sym_oneway] = ACTIONS(7136), + [anon_sym__Nullable] = ACTIONS(7136), + [anon_sym__Nonnull] = ACTIONS(7136), + [anon_sym__Nullable_result] = ACTIONS(7136), + [anon_sym__Null_unspecified] = ACTIONS(7136), + [anon_sym___autoreleasing] = ACTIONS(7136), + [anon_sym___nullable] = ACTIONS(7136), + [anon_sym___nonnull] = ACTIONS(7136), + [anon_sym___strong] = ACTIONS(7136), + [anon_sym___weak] = ACTIONS(7136), + [anon_sym___bridge] = ACTIONS(7136), + [anon_sym___bridge_transfer] = ACTIONS(7136), + [anon_sym___bridge_retained] = ACTIONS(7136), + [anon_sym___unsafe_unretained] = ACTIONS(7136), + [anon_sym___block] = ACTIONS(7136), + [anon_sym___kindof] = ACTIONS(7136), + [anon_sym___unused] = ACTIONS(7136), + [anon_sym__Complex] = ACTIONS(7136), + [anon_sym___complex] = ACTIONS(7136), + [anon_sym_IBOutlet] = ACTIONS(7136), + [anon_sym_IBInspectable] = ACTIONS(7136), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7136), + [anon_sym_COLON] = ACTIONS(7138), + [anon_sym_QMARK] = ACTIONS(7138), + [anon_sym_DASH_DASH] = ACTIONS(7138), + [anon_sym_PLUS_PLUS] = ACTIONS(7138), + [anon_sym_DOT] = ACTIONS(7138), + [anon_sym_DASH_GT] = ACTIONS(7138), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7136), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7136), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7136), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7136), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7136), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7136), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7136), + [anon_sym_NS_AVAILABLE] = ACTIONS(7136), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7136), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7136), + [anon_sym_API_AVAILABLE] = ACTIONS(7136), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7136), + [anon_sym_API_DEPRECATED] = ACTIONS(7136), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7136), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7136), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7136), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7136), + [anon_sym___deprecated_msg] = ACTIONS(7136), + [anon_sym___deprecated_enum_msg] = ACTIONS(7136), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7136), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7136), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7136), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7136), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7136), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7136), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3278] = { + [sym_identifier] = ACTIONS(7682), + [anon_sym_extern] = ACTIONS(7682), + [anon_sym___attribute] = ACTIONS(7682), + [anon_sym___attribute__] = ACTIONS(7682), + [anon_sym___declspec] = ACTIONS(7682), + [anon_sym_RBRACE] = ACTIONS(7839), + [anon_sym_static] = ACTIONS(7682), + [anon_sym_auto] = ACTIONS(7682), + [anon_sym_register] = ACTIONS(7682), + [anon_sym_inline] = ACTIONS(7682), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7682), + [anon_sym_const] = ACTIONS(7682), + [anon_sym_volatile] = ACTIONS(7682), + [anon_sym_restrict] = ACTIONS(7682), + [anon_sym__Atomic] = ACTIONS(7682), + [anon_sym_in] = ACTIONS(7682), + [anon_sym_out] = ACTIONS(7682), + [anon_sym_inout] = ACTIONS(7682), + [anon_sym_bycopy] = ACTIONS(7682), + [anon_sym_byref] = ACTIONS(7682), + [anon_sym_oneway] = ACTIONS(7682), + [anon_sym__Nullable] = ACTIONS(7682), + [anon_sym__Nonnull] = ACTIONS(7682), + [anon_sym__Nullable_result] = ACTIONS(7682), + [anon_sym__Null_unspecified] = ACTIONS(7682), + [anon_sym___autoreleasing] = ACTIONS(7682), + [anon_sym___nullable] = ACTIONS(7682), + [anon_sym___nonnull] = ACTIONS(7682), + [anon_sym___strong] = ACTIONS(7682), + [anon_sym___weak] = ACTIONS(7682), + [anon_sym___bridge] = ACTIONS(7682), + [anon_sym___bridge_transfer] = ACTIONS(7682), + [anon_sym___bridge_retained] = ACTIONS(7682), + [anon_sym___unsafe_unretained] = ACTIONS(7682), + [anon_sym___block] = ACTIONS(7682), + [anon_sym___kindof] = ACTIONS(7682), + [anon_sym___unused] = ACTIONS(7682), + [anon_sym__Complex] = ACTIONS(7682), + [anon_sym___complex] = ACTIONS(7682), + [anon_sym_IBOutlet] = ACTIONS(7682), + [anon_sym_IBInspectable] = ACTIONS(7682), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7682), + [anon_sym_signed] = ACTIONS(7682), + [anon_sym_unsigned] = ACTIONS(7682), + [anon_sym_long] = ACTIONS(7682), + [anon_sym_short] = ACTIONS(7682), + [sym_primitive_type] = ACTIONS(7682), + [anon_sym_enum] = ACTIONS(7682), + [anon_sym_struct] = ACTIONS(7682), + [anon_sym_union] = ACTIONS(7682), + [sym_comment] = ACTIONS(3), + [sym_private] = ACTIONS(7839), + [sym_public] = ACTIONS(7839), + [sym_protected] = ACTIONS(7839), + [sym_package] = ACTIONS(7839), + [sym_method_attribute_specifier] = ACTIONS(7682), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7682), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7682), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7682), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7682), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7682), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7682), + [anon_sym_NS_AVAILABLE] = ACTIONS(7682), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7682), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7682), + [anon_sym_API_AVAILABLE] = ACTIONS(7682), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7682), + [anon_sym_API_DEPRECATED] = ACTIONS(7682), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7682), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7682), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7682), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7682), + [anon_sym___deprecated_msg] = ACTIONS(7682), + [anon_sym___deprecated_enum_msg] = ACTIONS(7682), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7682), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7682), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7682), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7682), + [anon_sym_NS_ENUM] = ACTIONS(7682), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7682), + [anon_sym_NS_OPTIONS] = ACTIONS(7682), + [anon_sym_typeof] = ACTIONS(7682), + [anon_sym___typeof] = ACTIONS(7682), + [anon_sym___typeof__] = ACTIONS(7682), + [sym_id] = ACTIONS(7682), + [sym_instancetype] = ACTIONS(7682), + [sym_Class] = ACTIONS(7682), + [sym_SEL] = ACTIONS(7682), + [sym_IMP] = ACTIONS(7682), + [sym_BOOL] = ACTIONS(7682), + [sym_auto] = ACTIONS(7682), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3279] = { + [sym_identifier] = ACTIONS(7734), + [anon_sym_extern] = ACTIONS(7734), + [anon_sym___attribute] = ACTIONS(7734), + [anon_sym___attribute__] = ACTIONS(7734), + [anon_sym___declspec] = ACTIONS(7734), + [anon_sym_RBRACE] = ACTIONS(7837), + [anon_sym_static] = ACTIONS(7734), + [anon_sym_auto] = ACTIONS(7734), + [anon_sym_register] = ACTIONS(7734), + [anon_sym_inline] = ACTIONS(7734), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7734), + [anon_sym_const] = ACTIONS(7734), + [anon_sym_volatile] = ACTIONS(7734), + [anon_sym_restrict] = ACTIONS(7734), + [anon_sym__Atomic] = ACTIONS(7734), + [anon_sym_in] = ACTIONS(7734), + [anon_sym_out] = ACTIONS(7734), + [anon_sym_inout] = ACTIONS(7734), + [anon_sym_bycopy] = ACTIONS(7734), + [anon_sym_byref] = ACTIONS(7734), + [anon_sym_oneway] = ACTIONS(7734), + [anon_sym__Nullable] = ACTIONS(7734), + [anon_sym__Nonnull] = ACTIONS(7734), + [anon_sym__Nullable_result] = ACTIONS(7734), + [anon_sym__Null_unspecified] = ACTIONS(7734), + [anon_sym___autoreleasing] = ACTIONS(7734), + [anon_sym___nullable] = ACTIONS(7734), + [anon_sym___nonnull] = ACTIONS(7734), + [anon_sym___strong] = ACTIONS(7734), + [anon_sym___weak] = ACTIONS(7734), + [anon_sym___bridge] = ACTIONS(7734), + [anon_sym___bridge_transfer] = ACTIONS(7734), + [anon_sym___bridge_retained] = ACTIONS(7734), + [anon_sym___unsafe_unretained] = ACTIONS(7734), + [anon_sym___block] = ACTIONS(7734), + [anon_sym___kindof] = ACTIONS(7734), + [anon_sym___unused] = ACTIONS(7734), + [anon_sym__Complex] = ACTIONS(7734), + [anon_sym___complex] = ACTIONS(7734), + [anon_sym_IBOutlet] = ACTIONS(7734), + [anon_sym_IBInspectable] = ACTIONS(7734), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7734), + [anon_sym_signed] = ACTIONS(7734), + [anon_sym_unsigned] = ACTIONS(7734), + [anon_sym_long] = ACTIONS(7734), + [anon_sym_short] = ACTIONS(7734), + [sym_primitive_type] = ACTIONS(7734), + [anon_sym_enum] = ACTIONS(7734), + [anon_sym_struct] = ACTIONS(7734), + [anon_sym_union] = ACTIONS(7734), + [sym_comment] = ACTIONS(3), + [sym_private] = ACTIONS(7837), + [sym_public] = ACTIONS(7837), + [sym_protected] = ACTIONS(7837), + [sym_package] = ACTIONS(7837), + [sym_method_attribute_specifier] = ACTIONS(7734), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7734), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7734), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7734), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7734), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7734), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7734), + [anon_sym_NS_AVAILABLE] = ACTIONS(7734), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7734), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7734), + [anon_sym_API_AVAILABLE] = ACTIONS(7734), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7734), + [anon_sym_API_DEPRECATED] = ACTIONS(7734), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7734), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7734), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7734), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7734), + [anon_sym___deprecated_msg] = ACTIONS(7734), + [anon_sym___deprecated_enum_msg] = ACTIONS(7734), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7734), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7734), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7734), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7734), + [anon_sym_NS_ENUM] = ACTIONS(7734), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7734), + [anon_sym_NS_OPTIONS] = ACTIONS(7734), + [anon_sym_typeof] = ACTIONS(7734), + [anon_sym___typeof] = ACTIONS(7734), + [anon_sym___typeof__] = ACTIONS(7734), + [sym_id] = ACTIONS(7734), + [sym_instancetype] = ACTIONS(7734), + [sym_Class] = ACTIONS(7734), + [sym_SEL] = ACTIONS(7734), + [sym_IMP] = ACTIONS(7734), + [sym_BOOL] = ACTIONS(7734), + [sym_auto] = ACTIONS(7734), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3280] = { + [sym_identifier] = ACTIONS(6777), + [anon_sym_COMMA] = ACTIONS(6779), + [anon_sym_RPAREN] = ACTIONS(6779), + [anon_sym_LPAREN2] = ACTIONS(6779), + [anon_sym_DASH] = ACTIONS(6777), + [anon_sym_PLUS] = ACTIONS(6777), + [anon_sym_STAR] = ACTIONS(6779), + [anon_sym_SLASH] = ACTIONS(6777), + [anon_sym_PERCENT] = ACTIONS(6779), + [anon_sym_PIPE_PIPE] = ACTIONS(6779), + [anon_sym_AMP_AMP] = ACTIONS(6779), + [anon_sym_PIPE] = ACTIONS(6777), + [anon_sym_CARET] = ACTIONS(6779), + [anon_sym_AMP] = ACTIONS(6777), + [anon_sym_EQ_EQ] = ACTIONS(6779), + [anon_sym_BANG_EQ] = ACTIONS(6779), + [anon_sym_GT] = ACTIONS(6777), + [anon_sym_GT_EQ] = ACTIONS(6779), + [anon_sym_LT_EQ] = ACTIONS(6779), + [anon_sym_LT] = ACTIONS(6777), + [anon_sym_LT_LT] = ACTIONS(6779), + [anon_sym_GT_GT] = ACTIONS(6779), + [anon_sym_SEMI] = ACTIONS(6779), + [anon_sym___attribute] = ACTIONS(6777), + [anon_sym___attribute__] = ACTIONS(6777), + [anon_sym_RBRACE] = ACTIONS(6779), + [anon_sym_LBRACK] = ACTIONS(6779), + [anon_sym_RBRACK] = ACTIONS(6779), + [anon_sym_const] = ACTIONS(6777), + [anon_sym_volatile] = ACTIONS(6777), + [anon_sym_restrict] = ACTIONS(6777), + [anon_sym__Atomic] = ACTIONS(6777), + [anon_sym_in] = ACTIONS(6777), + [anon_sym_out] = ACTIONS(6777), + [anon_sym_inout] = ACTIONS(6777), + [anon_sym_bycopy] = ACTIONS(6777), + [anon_sym_byref] = ACTIONS(6777), + [anon_sym_oneway] = ACTIONS(6777), + [anon_sym__Nullable] = ACTIONS(6777), + [anon_sym__Nonnull] = ACTIONS(6777), + [anon_sym__Nullable_result] = ACTIONS(6777), + [anon_sym__Null_unspecified] = ACTIONS(6777), + [anon_sym___autoreleasing] = ACTIONS(6777), + [anon_sym___nullable] = ACTIONS(6777), + [anon_sym___nonnull] = ACTIONS(6777), + [anon_sym___strong] = ACTIONS(6777), + [anon_sym___weak] = ACTIONS(6777), + [anon_sym___bridge] = ACTIONS(6777), + [anon_sym___bridge_transfer] = ACTIONS(6777), + [anon_sym___bridge_retained] = ACTIONS(6777), + [anon_sym___unsafe_unretained] = ACTIONS(6777), + [anon_sym___block] = ACTIONS(6777), + [anon_sym___kindof] = ACTIONS(6777), + [anon_sym___unused] = ACTIONS(6777), + [anon_sym__Complex] = ACTIONS(6777), + [anon_sym___complex] = ACTIONS(6777), + [anon_sym_IBOutlet] = ACTIONS(6777), + [anon_sym_IBInspectable] = ACTIONS(6777), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6777), + [anon_sym_COLON] = ACTIONS(6779), + [anon_sym_QMARK] = ACTIONS(6779), + [anon_sym_DASH_DASH] = ACTIONS(6779), + [anon_sym_PLUS_PLUS] = ACTIONS(6779), + [anon_sym_DOT] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(6779), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6777), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6777), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6777), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6777), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6777), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6777), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6777), + [anon_sym_NS_AVAILABLE] = ACTIONS(6777), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6777), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_API_AVAILABLE] = ACTIONS(6777), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6777), + [anon_sym_API_DEPRECATED] = ACTIONS(6777), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6777), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6777), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6777), + [anon_sym___deprecated_msg] = ACTIONS(6777), + [anon_sym___deprecated_enum_msg] = ACTIONS(6777), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6777), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6777), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6777), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(6777), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(6777), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3281] = { + [sym_identifier] = ACTIONS(7232), + [anon_sym_COMMA] = ACTIONS(7234), + [anon_sym_RPAREN] = ACTIONS(7234), + [anon_sym_LPAREN2] = ACTIONS(7234), + [anon_sym_DASH] = ACTIONS(7232), + [anon_sym_PLUS] = ACTIONS(7232), + [anon_sym_STAR] = ACTIONS(7234), + [anon_sym_SLASH] = ACTIONS(7232), + [anon_sym_PERCENT] = ACTIONS(7234), + [anon_sym_PIPE_PIPE] = ACTIONS(7234), + [anon_sym_AMP_AMP] = ACTIONS(7234), + [anon_sym_PIPE] = ACTIONS(7232), + [anon_sym_CARET] = ACTIONS(7234), + [anon_sym_AMP] = ACTIONS(7232), + [anon_sym_EQ_EQ] = ACTIONS(7234), + [anon_sym_BANG_EQ] = ACTIONS(7234), + [anon_sym_GT] = ACTIONS(7232), + [anon_sym_GT_EQ] = ACTIONS(7234), + [anon_sym_LT_EQ] = ACTIONS(7234), + [anon_sym_LT] = ACTIONS(7232), + [anon_sym_LT_LT] = ACTIONS(7234), + [anon_sym_GT_GT] = ACTIONS(7234), + [anon_sym_SEMI] = ACTIONS(7234), + [anon_sym___attribute] = ACTIONS(7232), + [anon_sym___attribute__] = ACTIONS(7232), + [anon_sym_RBRACE] = ACTIONS(7234), + [anon_sym_LBRACK] = ACTIONS(7234), + [anon_sym_RBRACK] = ACTIONS(7234), + [anon_sym_const] = ACTIONS(7232), + [anon_sym_volatile] = ACTIONS(7232), + [anon_sym_restrict] = ACTIONS(7232), + [anon_sym__Atomic] = ACTIONS(7232), + [anon_sym_in] = ACTIONS(7232), + [anon_sym_out] = ACTIONS(7232), + [anon_sym_inout] = ACTIONS(7232), + [anon_sym_bycopy] = ACTIONS(7232), + [anon_sym_byref] = ACTIONS(7232), + [anon_sym_oneway] = ACTIONS(7232), + [anon_sym__Nullable] = ACTIONS(7232), + [anon_sym__Nonnull] = ACTIONS(7232), + [anon_sym__Nullable_result] = ACTIONS(7232), + [anon_sym__Null_unspecified] = ACTIONS(7232), + [anon_sym___autoreleasing] = ACTIONS(7232), + [anon_sym___nullable] = ACTIONS(7232), + [anon_sym___nonnull] = ACTIONS(7232), + [anon_sym___strong] = ACTIONS(7232), + [anon_sym___weak] = ACTIONS(7232), + [anon_sym___bridge] = ACTIONS(7232), + [anon_sym___bridge_transfer] = ACTIONS(7232), + [anon_sym___bridge_retained] = ACTIONS(7232), + [anon_sym___unsafe_unretained] = ACTIONS(7232), + [anon_sym___block] = ACTIONS(7232), + [anon_sym___kindof] = ACTIONS(7232), + [anon_sym___unused] = ACTIONS(7232), + [anon_sym__Complex] = ACTIONS(7232), + [anon_sym___complex] = ACTIONS(7232), + [anon_sym_IBOutlet] = ACTIONS(7232), + [anon_sym_IBInspectable] = ACTIONS(7232), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7232), + [anon_sym_COLON] = ACTIONS(7234), + [anon_sym_QMARK] = ACTIONS(7234), + [anon_sym_DASH_DASH] = ACTIONS(7234), + [anon_sym_PLUS_PLUS] = ACTIONS(7234), + [anon_sym_DOT] = ACTIONS(7234), + [anon_sym_DASH_GT] = ACTIONS(7234), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7232), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7232), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7232), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7232), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7232), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7232), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7232), + [anon_sym_NS_AVAILABLE] = ACTIONS(7232), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7232), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7232), + [anon_sym_API_AVAILABLE] = ACTIONS(7232), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7232), + [anon_sym_API_DEPRECATED] = ACTIONS(7232), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7232), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7232), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7232), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7232), + [anon_sym___deprecated_msg] = ACTIONS(7232), + [anon_sym___deprecated_enum_msg] = ACTIONS(7232), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7232), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7232), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7232), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7232), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7232), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7232), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3282] = { + [sym_identifier] = ACTIONS(7104), + [anon_sym_COMMA] = ACTIONS(7106), + [anon_sym_RPAREN] = ACTIONS(7106), + [anon_sym_LPAREN2] = ACTIONS(7106), + [anon_sym_DASH] = ACTIONS(7104), + [anon_sym_PLUS] = ACTIONS(7104), + [anon_sym_STAR] = ACTIONS(7106), + [anon_sym_SLASH] = ACTIONS(7104), + [anon_sym_PERCENT] = ACTIONS(7106), + [anon_sym_PIPE_PIPE] = ACTIONS(7106), + [anon_sym_AMP_AMP] = ACTIONS(7106), + [anon_sym_PIPE] = ACTIONS(7104), + [anon_sym_CARET] = ACTIONS(7106), + [anon_sym_AMP] = ACTIONS(7104), + [anon_sym_EQ_EQ] = ACTIONS(7106), + [anon_sym_BANG_EQ] = ACTIONS(7106), + [anon_sym_GT] = ACTIONS(7104), + [anon_sym_GT_EQ] = ACTIONS(7106), + [anon_sym_LT_EQ] = ACTIONS(7106), + [anon_sym_LT] = ACTIONS(7104), + [anon_sym_LT_LT] = ACTIONS(7106), + [anon_sym_GT_GT] = ACTIONS(7106), + [anon_sym_SEMI] = ACTIONS(7106), + [anon_sym___attribute] = ACTIONS(7104), + [anon_sym___attribute__] = ACTIONS(7104), + [anon_sym_RBRACE] = ACTIONS(7106), + [anon_sym_LBRACK] = ACTIONS(7106), + [anon_sym_RBRACK] = ACTIONS(7106), + [anon_sym_const] = ACTIONS(7104), + [anon_sym_volatile] = ACTIONS(7104), + [anon_sym_restrict] = ACTIONS(7104), + [anon_sym__Atomic] = ACTIONS(7104), + [anon_sym_in] = ACTIONS(7104), + [anon_sym_out] = ACTIONS(7104), + [anon_sym_inout] = ACTIONS(7104), + [anon_sym_bycopy] = ACTIONS(7104), + [anon_sym_byref] = ACTIONS(7104), + [anon_sym_oneway] = ACTIONS(7104), + [anon_sym__Nullable] = ACTIONS(7104), + [anon_sym__Nonnull] = ACTIONS(7104), + [anon_sym__Nullable_result] = ACTIONS(7104), + [anon_sym__Null_unspecified] = ACTIONS(7104), + [anon_sym___autoreleasing] = ACTIONS(7104), + [anon_sym___nullable] = ACTIONS(7104), + [anon_sym___nonnull] = ACTIONS(7104), + [anon_sym___strong] = ACTIONS(7104), + [anon_sym___weak] = ACTIONS(7104), + [anon_sym___bridge] = ACTIONS(7104), + [anon_sym___bridge_transfer] = ACTIONS(7104), + [anon_sym___bridge_retained] = ACTIONS(7104), + [anon_sym___unsafe_unretained] = ACTIONS(7104), + [anon_sym___block] = ACTIONS(7104), + [anon_sym___kindof] = ACTIONS(7104), + [anon_sym___unused] = ACTIONS(7104), + [anon_sym__Complex] = ACTIONS(7104), + [anon_sym___complex] = ACTIONS(7104), + [anon_sym_IBOutlet] = ACTIONS(7104), + [anon_sym_IBInspectable] = ACTIONS(7104), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7104), + [anon_sym_COLON] = ACTIONS(7106), + [anon_sym_QMARK] = ACTIONS(7106), + [anon_sym_DASH_DASH] = ACTIONS(7106), + [anon_sym_PLUS_PLUS] = ACTIONS(7106), + [anon_sym_DOT] = ACTIONS(7106), + [anon_sym_DASH_GT] = ACTIONS(7106), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7104), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7104), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7104), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7104), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7104), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7104), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7104), + [anon_sym_NS_AVAILABLE] = ACTIONS(7104), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7104), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7104), + [anon_sym_API_AVAILABLE] = ACTIONS(7104), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7104), + [anon_sym_API_DEPRECATED] = ACTIONS(7104), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7104), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7104), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7104), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7104), + [anon_sym___deprecated_msg] = ACTIONS(7104), + [anon_sym___deprecated_enum_msg] = ACTIONS(7104), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7104), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7104), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7104), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7104), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7104), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7104), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3283] = { + [sym_identifier] = ACTIONS(7728), + [anon_sym_extern] = ACTIONS(7728), + [anon_sym___attribute] = ACTIONS(7728), + [anon_sym___attribute__] = ACTIONS(7728), + [anon_sym___declspec] = ACTIONS(7728), + [anon_sym_RBRACE] = ACTIONS(7823), + [anon_sym_static] = ACTIONS(7728), + [anon_sym_auto] = ACTIONS(7728), + [anon_sym_register] = ACTIONS(7728), + [anon_sym_inline] = ACTIONS(7728), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7728), + [anon_sym_const] = ACTIONS(7728), + [anon_sym_volatile] = ACTIONS(7728), + [anon_sym_restrict] = ACTIONS(7728), + [anon_sym__Atomic] = ACTIONS(7728), + [anon_sym_in] = ACTIONS(7728), + [anon_sym_out] = ACTIONS(7728), + [anon_sym_inout] = ACTIONS(7728), + [anon_sym_bycopy] = ACTIONS(7728), + [anon_sym_byref] = ACTIONS(7728), + [anon_sym_oneway] = ACTIONS(7728), + [anon_sym__Nullable] = ACTIONS(7728), + [anon_sym__Nonnull] = ACTIONS(7728), + [anon_sym__Nullable_result] = ACTIONS(7728), + [anon_sym__Null_unspecified] = ACTIONS(7728), + [anon_sym___autoreleasing] = ACTIONS(7728), + [anon_sym___nullable] = ACTIONS(7728), + [anon_sym___nonnull] = ACTIONS(7728), + [anon_sym___strong] = ACTIONS(7728), + [anon_sym___weak] = ACTIONS(7728), + [anon_sym___bridge] = ACTIONS(7728), + [anon_sym___bridge_transfer] = ACTIONS(7728), + [anon_sym___bridge_retained] = ACTIONS(7728), + [anon_sym___unsafe_unretained] = ACTIONS(7728), + [anon_sym___block] = ACTIONS(7728), + [anon_sym___kindof] = ACTIONS(7728), + [anon_sym___unused] = ACTIONS(7728), + [anon_sym__Complex] = ACTIONS(7728), + [anon_sym___complex] = ACTIONS(7728), + [anon_sym_IBOutlet] = ACTIONS(7728), + [anon_sym_IBInspectable] = ACTIONS(7728), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7728), + [anon_sym_signed] = ACTIONS(7728), + [anon_sym_unsigned] = ACTIONS(7728), + [anon_sym_long] = ACTIONS(7728), + [anon_sym_short] = ACTIONS(7728), + [sym_primitive_type] = ACTIONS(7728), + [anon_sym_enum] = ACTIONS(7728), + [anon_sym_struct] = ACTIONS(7728), + [anon_sym_union] = ACTIONS(7728), + [sym_comment] = ACTIONS(3), + [sym_private] = ACTIONS(7823), + [sym_public] = ACTIONS(7823), + [sym_protected] = ACTIONS(7823), + [sym_package] = ACTIONS(7823), + [sym_method_attribute_specifier] = ACTIONS(7728), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7728), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7728), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7728), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7728), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7728), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7728), + [anon_sym_NS_AVAILABLE] = ACTIONS(7728), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7728), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7728), + [anon_sym_API_AVAILABLE] = ACTIONS(7728), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7728), + [anon_sym_API_DEPRECATED] = ACTIONS(7728), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7728), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7728), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7728), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7728), + [anon_sym___deprecated_msg] = ACTIONS(7728), + [anon_sym___deprecated_enum_msg] = ACTIONS(7728), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7728), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7728), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7728), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7728), + [anon_sym_NS_ENUM] = ACTIONS(7728), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7728), + [anon_sym_NS_OPTIONS] = ACTIONS(7728), [anon_sym_typeof] = ACTIONS(7728), [anon_sym___typeof] = ACTIONS(7728), [anon_sym___typeof__] = ACTIONS(7728), @@ -528861,97 +518949,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3359] = { - [sym_swift_name_attribute_sepcifier] = STATE(5710), - [sym_identifier] = ACTIONS(7788), - [anon_sym_typedef] = ACTIONS(6886), - [anon_sym_extern] = ACTIONS(7788), - [anon_sym___attribute] = ACTIONS(7788), - [anon_sym___attribute__] = ACTIONS(7788), - [anon_sym___declspec] = ACTIONS(7788), - [anon_sym_static] = ACTIONS(7788), - [anon_sym_auto] = ACTIONS(7788), - [anon_sym_register] = ACTIONS(7788), - [anon_sym_inline] = ACTIONS(7788), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7788), - [anon_sym_const] = ACTIONS(7788), - [anon_sym_volatile] = ACTIONS(7788), - [anon_sym_restrict] = ACTIONS(7788), - [anon_sym__Atomic] = ACTIONS(7788), - [anon_sym_in] = ACTIONS(7788), - [anon_sym_out] = ACTIONS(7788), - [anon_sym_inout] = ACTIONS(7788), - [anon_sym_bycopy] = ACTIONS(7788), - [anon_sym_byref] = ACTIONS(7788), - [anon_sym_oneway] = ACTIONS(7788), - [anon_sym__Nullable] = ACTIONS(7788), - [anon_sym__Nonnull] = ACTIONS(7788), - [anon_sym__Nullable_result] = ACTIONS(7788), - [anon_sym__Null_unspecified] = ACTIONS(7788), - [anon_sym___autoreleasing] = ACTIONS(7788), - [anon_sym___nullable] = ACTIONS(7788), - [anon_sym___nonnull] = ACTIONS(7788), - [anon_sym___strong] = ACTIONS(7788), - [anon_sym___weak] = ACTIONS(7788), - [anon_sym___bridge] = ACTIONS(7788), - [anon_sym___bridge_transfer] = ACTIONS(7788), - [anon_sym___bridge_retained] = ACTIONS(7788), - [anon_sym___unsafe_unretained] = ACTIONS(7788), - [anon_sym___block] = ACTIONS(7788), - [anon_sym___kindof] = ACTIONS(7788), - [anon_sym___unused] = ACTIONS(7788), - [anon_sym__Complex] = ACTIONS(7788), - [anon_sym___complex] = ACTIONS(7788), - [anon_sym_IBOutlet] = ACTIONS(7788), - [anon_sym_IBInspectable] = ACTIONS(7788), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7788), - [anon_sym_signed] = ACTIONS(7788), - [anon_sym_unsigned] = ACTIONS(7788), - [anon_sym_long] = ACTIONS(7788), - [anon_sym_short] = ACTIONS(7788), - [sym_primitive_type] = ACTIONS(7788), - [anon_sym_enum] = ACTIONS(7788), - [anon_sym_NS_ENUM] = ACTIONS(7788), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7788), - [anon_sym_NS_OPTIONS] = ACTIONS(7788), - [anon_sym_struct] = ACTIONS(7788), - [anon_sym_union] = ACTIONS(7788), + [3284] = { + [sym_identifier] = ACTIONS(7092), + [anon_sym_COMMA] = ACTIONS(7094), + [anon_sym_RPAREN] = ACTIONS(7094), + [anon_sym_LPAREN2] = ACTIONS(7094), + [anon_sym_DASH] = ACTIONS(7092), + [anon_sym_PLUS] = ACTIONS(7092), + [anon_sym_STAR] = ACTIONS(7094), + [anon_sym_SLASH] = ACTIONS(7092), + [anon_sym_PERCENT] = ACTIONS(7094), + [anon_sym_PIPE_PIPE] = ACTIONS(7094), + [anon_sym_AMP_AMP] = ACTIONS(7094), + [anon_sym_PIPE] = ACTIONS(7092), + [anon_sym_CARET] = ACTIONS(7094), + [anon_sym_AMP] = ACTIONS(7092), + [anon_sym_EQ_EQ] = ACTIONS(7094), + [anon_sym_BANG_EQ] = ACTIONS(7094), + [anon_sym_GT] = ACTIONS(7092), + [anon_sym_GT_EQ] = ACTIONS(7094), + [anon_sym_LT_EQ] = ACTIONS(7094), + [anon_sym_LT] = ACTIONS(7092), + [anon_sym_LT_LT] = ACTIONS(7094), + [anon_sym_GT_GT] = ACTIONS(7094), + [anon_sym_SEMI] = ACTIONS(7094), + [anon_sym___attribute] = ACTIONS(7092), + [anon_sym___attribute__] = ACTIONS(7092), + [anon_sym_RBRACE] = ACTIONS(7094), + [anon_sym_LBRACK] = ACTIONS(7094), + [anon_sym_RBRACK] = ACTIONS(7094), + [anon_sym_const] = ACTIONS(7092), + [anon_sym_volatile] = ACTIONS(7092), + [anon_sym_restrict] = ACTIONS(7092), + [anon_sym__Atomic] = ACTIONS(7092), + [anon_sym_in] = ACTIONS(7092), + [anon_sym_out] = ACTIONS(7092), + [anon_sym_inout] = ACTIONS(7092), + [anon_sym_bycopy] = ACTIONS(7092), + [anon_sym_byref] = ACTIONS(7092), + [anon_sym_oneway] = ACTIONS(7092), + [anon_sym__Nullable] = ACTIONS(7092), + [anon_sym__Nonnull] = ACTIONS(7092), + [anon_sym__Nullable_result] = ACTIONS(7092), + [anon_sym__Null_unspecified] = ACTIONS(7092), + [anon_sym___autoreleasing] = ACTIONS(7092), + [anon_sym___nullable] = ACTIONS(7092), + [anon_sym___nonnull] = ACTIONS(7092), + [anon_sym___strong] = ACTIONS(7092), + [anon_sym___weak] = ACTIONS(7092), + [anon_sym___bridge] = ACTIONS(7092), + [anon_sym___bridge_transfer] = ACTIONS(7092), + [anon_sym___bridge_retained] = ACTIONS(7092), + [anon_sym___unsafe_unretained] = ACTIONS(7092), + [anon_sym___block] = ACTIONS(7092), + [anon_sym___kindof] = ACTIONS(7092), + [anon_sym___unused] = ACTIONS(7092), + [anon_sym__Complex] = ACTIONS(7092), + [anon_sym___complex] = ACTIONS(7092), + [anon_sym_IBOutlet] = ACTIONS(7092), + [anon_sym_IBInspectable] = ACTIONS(7092), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7092), + [anon_sym_COLON] = ACTIONS(7094), + [anon_sym_QMARK] = ACTIONS(7094), + [anon_sym_DASH_DASH] = ACTIONS(7094), + [anon_sym_PLUS_PLUS] = ACTIONS(7094), + [anon_sym_DOT] = ACTIONS(7094), + [anon_sym_DASH_GT] = ACTIONS(7094), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7788), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7788), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7788), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7788), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7788), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7788), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7788), - [anon_sym_NS_AVAILABLE] = ACTIONS(7788), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7788), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_API_AVAILABLE] = ACTIONS(7788), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7788), - [anon_sym_API_DEPRECATED] = ACTIONS(7788), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7788), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7788), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7788), - [anon_sym___deprecated_msg] = ACTIONS(7788), - [anon_sym___deprecated_enum_msg] = ACTIONS(7788), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7788), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7788), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(7788), - [anon_sym___typeof] = ACTIONS(7788), - [anon_sym___typeof__] = ACTIONS(7788), - [sym_id] = ACTIONS(7788), - [sym_instancetype] = ACTIONS(7788), - [sym_Class] = ACTIONS(7788), - [sym_SEL] = ACTIONS(7788), - [sym_IMP] = ACTIONS(7788), - [sym_BOOL] = ACTIONS(7788), - [sym_auto] = ACTIONS(7788), + [sym_method_attribute_specifier] = ACTIONS(7092), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7092), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7092), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7092), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7092), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7092), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7092), + [anon_sym_NS_AVAILABLE] = ACTIONS(7092), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7092), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7092), + [anon_sym_API_AVAILABLE] = ACTIONS(7092), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7092), + [anon_sym_API_DEPRECATED] = ACTIONS(7092), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7092), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7092), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7092), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7092), + [anon_sym___deprecated_msg] = ACTIONS(7092), + [anon_sym___deprecated_enum_msg] = ACTIONS(7092), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7092), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7092), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7092), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7092), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7092), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7092), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -528959,97 +519048,1581 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3360] = { + [3285] = { + [sym_identifier] = ACTIONS(7718), + [anon_sym_extern] = ACTIONS(7718), + [anon_sym___attribute] = ACTIONS(7718), + [anon_sym___attribute__] = ACTIONS(7718), + [anon_sym___declspec] = ACTIONS(7718), + [anon_sym_RBRACE] = ACTIONS(7779), + [anon_sym_static] = ACTIONS(7718), + [anon_sym_auto] = ACTIONS(7718), + [anon_sym_register] = ACTIONS(7718), + [anon_sym_inline] = ACTIONS(7718), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym_in] = ACTIONS(7718), + [anon_sym_out] = ACTIONS(7718), + [anon_sym_inout] = ACTIONS(7718), + [anon_sym_bycopy] = ACTIONS(7718), + [anon_sym_byref] = ACTIONS(7718), + [anon_sym_oneway] = ACTIONS(7718), + [anon_sym__Nullable] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym__Nullable_result] = ACTIONS(7718), + [anon_sym__Null_unspecified] = ACTIONS(7718), + [anon_sym___autoreleasing] = ACTIONS(7718), + [anon_sym___nullable] = ACTIONS(7718), + [anon_sym___nonnull] = ACTIONS(7718), + [anon_sym___strong] = ACTIONS(7718), + [anon_sym___weak] = ACTIONS(7718), + [anon_sym___bridge] = ACTIONS(7718), + [anon_sym___bridge_transfer] = ACTIONS(7718), + [anon_sym___bridge_retained] = ACTIONS(7718), + [anon_sym___unsafe_unretained] = ACTIONS(7718), + [anon_sym___block] = ACTIONS(7718), + [anon_sym___kindof] = ACTIONS(7718), + [anon_sym___unused] = ACTIONS(7718), + [anon_sym__Complex] = ACTIONS(7718), + [anon_sym___complex] = ACTIONS(7718), + [anon_sym_IBOutlet] = ACTIONS(7718), + [anon_sym_IBInspectable] = ACTIONS(7718), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7718), + [anon_sym_signed] = ACTIONS(7718), + [anon_sym_unsigned] = ACTIONS(7718), + [anon_sym_long] = ACTIONS(7718), + [anon_sym_short] = ACTIONS(7718), + [sym_primitive_type] = ACTIONS(7718), + [anon_sym_enum] = ACTIONS(7718), + [anon_sym_struct] = ACTIONS(7718), + [anon_sym_union] = ACTIONS(7718), + [sym_comment] = ACTIONS(3), + [sym_private] = ACTIONS(7779), + [sym_public] = ACTIONS(7779), + [sym_protected] = ACTIONS(7779), + [sym_package] = ACTIONS(7779), + [sym_method_attribute_specifier] = ACTIONS(7718), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7718), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7718), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7718), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7718), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7718), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7718), + [anon_sym_NS_AVAILABLE] = ACTIONS(7718), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7718), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7718), + [anon_sym_API_AVAILABLE] = ACTIONS(7718), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7718), + [anon_sym_API_DEPRECATED] = ACTIONS(7718), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7718), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7718), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7718), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7718), + [anon_sym___deprecated_msg] = ACTIONS(7718), + [anon_sym___deprecated_enum_msg] = ACTIONS(7718), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7718), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7718), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7718), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7718), + [anon_sym_NS_ENUM] = ACTIONS(7718), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7718), + [anon_sym_NS_OPTIONS] = ACTIONS(7718), + [anon_sym_typeof] = ACTIONS(7718), + [anon_sym___typeof] = ACTIONS(7718), + [anon_sym___typeof__] = ACTIONS(7718), + [sym_id] = ACTIONS(7718), + [sym_instancetype] = ACTIONS(7718), + [sym_Class] = ACTIONS(7718), + [sym_SEL] = ACTIONS(7718), + [sym_IMP] = ACTIONS(7718), + [sym_BOOL] = ACTIONS(7718), + [sym_auto] = ACTIONS(7718), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3286] = { + [sym_identifier] = ACTIONS(7716), + [anon_sym_extern] = ACTIONS(7716), + [anon_sym___attribute] = ACTIONS(7716), + [anon_sym___attribute__] = ACTIONS(7716), + [anon_sym___declspec] = ACTIONS(7716), + [anon_sym_RBRACE] = ACTIONS(7805), + [anon_sym_static] = ACTIONS(7716), + [anon_sym_auto] = ACTIONS(7716), + [anon_sym_register] = ACTIONS(7716), + [anon_sym_inline] = ACTIONS(7716), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7716), + [anon_sym_const] = ACTIONS(7716), + [anon_sym_volatile] = ACTIONS(7716), + [anon_sym_restrict] = ACTIONS(7716), + [anon_sym__Atomic] = ACTIONS(7716), + [anon_sym_in] = ACTIONS(7716), + [anon_sym_out] = ACTIONS(7716), + [anon_sym_inout] = ACTIONS(7716), + [anon_sym_bycopy] = ACTIONS(7716), + [anon_sym_byref] = ACTIONS(7716), + [anon_sym_oneway] = ACTIONS(7716), + [anon_sym__Nullable] = ACTIONS(7716), + [anon_sym__Nonnull] = ACTIONS(7716), + [anon_sym__Nullable_result] = ACTIONS(7716), + [anon_sym__Null_unspecified] = ACTIONS(7716), + [anon_sym___autoreleasing] = ACTIONS(7716), + [anon_sym___nullable] = ACTIONS(7716), + [anon_sym___nonnull] = ACTIONS(7716), + [anon_sym___strong] = ACTIONS(7716), + [anon_sym___weak] = ACTIONS(7716), + [anon_sym___bridge] = ACTIONS(7716), + [anon_sym___bridge_transfer] = ACTIONS(7716), + [anon_sym___bridge_retained] = ACTIONS(7716), + [anon_sym___unsafe_unretained] = ACTIONS(7716), + [anon_sym___block] = ACTIONS(7716), + [anon_sym___kindof] = ACTIONS(7716), + [anon_sym___unused] = ACTIONS(7716), + [anon_sym__Complex] = ACTIONS(7716), + [anon_sym___complex] = ACTIONS(7716), + [anon_sym_IBOutlet] = ACTIONS(7716), + [anon_sym_IBInspectable] = ACTIONS(7716), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7716), + [anon_sym_signed] = ACTIONS(7716), + [anon_sym_unsigned] = ACTIONS(7716), + [anon_sym_long] = ACTIONS(7716), + [anon_sym_short] = ACTIONS(7716), + [sym_primitive_type] = ACTIONS(7716), + [anon_sym_enum] = ACTIONS(7716), + [anon_sym_struct] = ACTIONS(7716), + [anon_sym_union] = ACTIONS(7716), + [sym_comment] = ACTIONS(3), + [sym_private] = ACTIONS(7805), + [sym_public] = ACTIONS(7805), + [sym_protected] = ACTIONS(7805), + [sym_package] = ACTIONS(7805), + [sym_method_attribute_specifier] = ACTIONS(7716), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7716), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7716), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7716), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7716), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7716), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7716), + [anon_sym_NS_AVAILABLE] = ACTIONS(7716), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7716), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7716), + [anon_sym_API_AVAILABLE] = ACTIONS(7716), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7716), + [anon_sym_API_DEPRECATED] = ACTIONS(7716), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7716), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7716), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7716), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7716), + [anon_sym___deprecated_msg] = ACTIONS(7716), + [anon_sym___deprecated_enum_msg] = ACTIONS(7716), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7716), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7716), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7716), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7716), + [anon_sym_NS_ENUM] = ACTIONS(7716), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7716), + [anon_sym_NS_OPTIONS] = ACTIONS(7716), + [anon_sym_typeof] = ACTIONS(7716), + [anon_sym___typeof] = ACTIONS(7716), + [anon_sym___typeof__] = ACTIONS(7716), + [sym_id] = ACTIONS(7716), + [sym_instancetype] = ACTIONS(7716), + [sym_Class] = ACTIONS(7716), + [sym_SEL] = ACTIONS(7716), + [sym_IMP] = ACTIONS(7716), + [sym_BOOL] = ACTIONS(7716), + [sym_auto] = ACTIONS(7716), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3287] = { + [sym_identifier] = ACTIONS(7144), + [anon_sym_COMMA] = ACTIONS(7146), + [anon_sym_RPAREN] = ACTIONS(7146), + [anon_sym_LPAREN2] = ACTIONS(7146), + [anon_sym_DASH] = ACTIONS(7144), + [anon_sym_PLUS] = ACTIONS(7144), + [anon_sym_STAR] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_PERCENT] = ACTIONS(7146), + [anon_sym_PIPE_PIPE] = ACTIONS(7146), + [anon_sym_AMP_AMP] = ACTIONS(7146), + [anon_sym_PIPE] = ACTIONS(7144), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_AMP] = ACTIONS(7144), + [anon_sym_EQ_EQ] = ACTIONS(7146), + [anon_sym_BANG_EQ] = ACTIONS(7146), + [anon_sym_GT] = ACTIONS(7144), + [anon_sym_GT_EQ] = ACTIONS(7146), + [anon_sym_LT_EQ] = ACTIONS(7146), + [anon_sym_LT] = ACTIONS(7144), + [anon_sym_LT_LT] = ACTIONS(7146), + [anon_sym_GT_GT] = ACTIONS(7146), + [anon_sym_SEMI] = ACTIONS(7146), + [anon_sym___attribute] = ACTIONS(7144), + [anon_sym___attribute__] = ACTIONS(7144), + [anon_sym_RBRACE] = ACTIONS(7146), + [anon_sym_LBRACK] = ACTIONS(7146), + [anon_sym_RBRACK] = ACTIONS(7146), + [anon_sym_const] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym_in] = ACTIONS(7144), + [anon_sym_out] = ACTIONS(7144), + [anon_sym_inout] = ACTIONS(7144), + [anon_sym_bycopy] = ACTIONS(7144), + [anon_sym_byref] = ACTIONS(7144), + [anon_sym_oneway] = ACTIONS(7144), + [anon_sym__Nullable] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym__Nullable_result] = ACTIONS(7144), + [anon_sym__Null_unspecified] = ACTIONS(7144), + [anon_sym___autoreleasing] = ACTIONS(7144), + [anon_sym___nullable] = ACTIONS(7144), + [anon_sym___nonnull] = ACTIONS(7144), + [anon_sym___strong] = ACTIONS(7144), + [anon_sym___weak] = ACTIONS(7144), + [anon_sym___bridge] = ACTIONS(7144), + [anon_sym___bridge_transfer] = ACTIONS(7144), + [anon_sym___bridge_retained] = ACTIONS(7144), + [anon_sym___unsafe_unretained] = ACTIONS(7144), + [anon_sym___block] = ACTIONS(7144), + [anon_sym___kindof] = ACTIONS(7144), + [anon_sym___unused] = ACTIONS(7144), + [anon_sym__Complex] = ACTIONS(7144), + [anon_sym___complex] = ACTIONS(7144), + [anon_sym_IBOutlet] = ACTIONS(7144), + [anon_sym_IBInspectable] = ACTIONS(7144), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7144), + [anon_sym_COLON] = ACTIONS(7146), + [anon_sym_QMARK] = ACTIONS(7146), + [anon_sym_DASH_DASH] = ACTIONS(7146), + [anon_sym_PLUS_PLUS] = ACTIONS(7146), + [anon_sym_DOT] = ACTIONS(7146), + [anon_sym_DASH_GT] = ACTIONS(7146), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7144), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7144), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7144), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7144), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7144), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7144), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7144), + [anon_sym_NS_AVAILABLE] = ACTIONS(7144), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7144), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7144), + [anon_sym_API_AVAILABLE] = ACTIONS(7144), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7144), + [anon_sym_API_DEPRECATED] = ACTIONS(7144), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7144), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7144), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7144), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7144), + [anon_sym___deprecated_msg] = ACTIONS(7144), + [anon_sym___deprecated_enum_msg] = ACTIONS(7144), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7144), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7144), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7144), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7144), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7144), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7144), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3288] = { + [sym_identifier] = ACTIONS(7196), + [anon_sym_COMMA] = ACTIONS(7198), + [anon_sym_RPAREN] = ACTIONS(7198), + [anon_sym_LPAREN2] = ACTIONS(7198), + [anon_sym_DASH] = ACTIONS(7196), + [anon_sym_PLUS] = ACTIONS(7196), + [anon_sym_STAR] = ACTIONS(7198), + [anon_sym_SLASH] = ACTIONS(7196), + [anon_sym_PERCENT] = ACTIONS(7198), + [anon_sym_PIPE_PIPE] = ACTIONS(7198), + [anon_sym_AMP_AMP] = ACTIONS(7198), + [anon_sym_PIPE] = ACTIONS(7196), + [anon_sym_CARET] = ACTIONS(7198), + [anon_sym_AMP] = ACTIONS(7196), + [anon_sym_EQ_EQ] = ACTIONS(7198), + [anon_sym_BANG_EQ] = ACTIONS(7198), + [anon_sym_GT] = ACTIONS(7196), + [anon_sym_GT_EQ] = ACTIONS(7198), + [anon_sym_LT_EQ] = ACTIONS(7198), + [anon_sym_LT] = ACTIONS(7196), + [anon_sym_LT_LT] = ACTIONS(7198), + [anon_sym_GT_GT] = ACTIONS(7198), + [anon_sym_SEMI] = ACTIONS(7198), + [anon_sym___attribute] = ACTIONS(7196), + [anon_sym___attribute__] = ACTIONS(7196), + [anon_sym_RBRACE] = ACTIONS(7198), + [anon_sym_LBRACK] = ACTIONS(7198), + [anon_sym_RBRACK] = ACTIONS(7198), + [anon_sym_const] = ACTIONS(7196), + [anon_sym_volatile] = ACTIONS(7196), + [anon_sym_restrict] = ACTIONS(7196), + [anon_sym__Atomic] = ACTIONS(7196), + [anon_sym_in] = ACTIONS(7196), + [anon_sym_out] = ACTIONS(7196), + [anon_sym_inout] = ACTIONS(7196), + [anon_sym_bycopy] = ACTIONS(7196), + [anon_sym_byref] = ACTIONS(7196), + [anon_sym_oneway] = ACTIONS(7196), + [anon_sym__Nullable] = ACTIONS(7196), + [anon_sym__Nonnull] = ACTIONS(7196), + [anon_sym__Nullable_result] = ACTIONS(7196), + [anon_sym__Null_unspecified] = ACTIONS(7196), + [anon_sym___autoreleasing] = ACTIONS(7196), + [anon_sym___nullable] = ACTIONS(7196), + [anon_sym___nonnull] = ACTIONS(7196), + [anon_sym___strong] = ACTIONS(7196), + [anon_sym___weak] = ACTIONS(7196), + [anon_sym___bridge] = ACTIONS(7196), + [anon_sym___bridge_transfer] = ACTIONS(7196), + [anon_sym___bridge_retained] = ACTIONS(7196), + [anon_sym___unsafe_unretained] = ACTIONS(7196), + [anon_sym___block] = ACTIONS(7196), + [anon_sym___kindof] = ACTIONS(7196), + [anon_sym___unused] = ACTIONS(7196), + [anon_sym__Complex] = ACTIONS(7196), + [anon_sym___complex] = ACTIONS(7196), + [anon_sym_IBOutlet] = ACTIONS(7196), + [anon_sym_IBInspectable] = ACTIONS(7196), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7196), + [anon_sym_COLON] = ACTIONS(7198), + [anon_sym_QMARK] = ACTIONS(7198), + [anon_sym_DASH_DASH] = ACTIONS(7198), + [anon_sym_PLUS_PLUS] = ACTIONS(7198), + [anon_sym_DOT] = ACTIONS(7198), + [anon_sym_DASH_GT] = ACTIONS(7198), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7196), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7196), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7196), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7196), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7196), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7196), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7196), + [anon_sym_NS_AVAILABLE] = ACTIONS(7196), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7196), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7196), + [anon_sym_API_AVAILABLE] = ACTIONS(7196), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7196), + [anon_sym_API_DEPRECATED] = ACTIONS(7196), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7196), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7196), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7196), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7196), + [anon_sym___deprecated_msg] = ACTIONS(7196), + [anon_sym___deprecated_enum_msg] = ACTIONS(7196), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7196), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7196), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7196), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7196), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7196), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7196), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3289] = { + [sym_identifier] = ACTIONS(7152), + [anon_sym_COMMA] = ACTIONS(7154), + [anon_sym_RPAREN] = ACTIONS(7154), + [anon_sym_LPAREN2] = ACTIONS(7154), + [anon_sym_DASH] = ACTIONS(7152), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_STAR] = ACTIONS(7154), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7154), + [anon_sym_PIPE_PIPE] = ACTIONS(7154), + [anon_sym_AMP_AMP] = ACTIONS(7154), + [anon_sym_PIPE] = ACTIONS(7152), + [anon_sym_CARET] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7152), + [anon_sym_EQ_EQ] = ACTIONS(7154), + [anon_sym_BANG_EQ] = ACTIONS(7154), + [anon_sym_GT] = ACTIONS(7152), + [anon_sym_GT_EQ] = ACTIONS(7154), + [anon_sym_LT_EQ] = ACTIONS(7154), + [anon_sym_LT] = ACTIONS(7152), + [anon_sym_LT_LT] = ACTIONS(7154), + [anon_sym_GT_GT] = ACTIONS(7154), + [anon_sym_SEMI] = ACTIONS(7154), + [anon_sym___attribute] = ACTIONS(7152), + [anon_sym___attribute__] = ACTIONS(7152), + [anon_sym_RBRACE] = ACTIONS(7154), + [anon_sym_LBRACK] = ACTIONS(7154), + [anon_sym_RBRACK] = ACTIONS(7154), + [anon_sym_const] = ACTIONS(7152), + [anon_sym_volatile] = ACTIONS(7152), + [anon_sym_restrict] = ACTIONS(7152), + [anon_sym__Atomic] = ACTIONS(7152), + [anon_sym_in] = ACTIONS(7152), + [anon_sym_out] = ACTIONS(7152), + [anon_sym_inout] = ACTIONS(7152), + [anon_sym_bycopy] = ACTIONS(7152), + [anon_sym_byref] = ACTIONS(7152), + [anon_sym_oneway] = ACTIONS(7152), + [anon_sym__Nullable] = ACTIONS(7152), + [anon_sym__Nonnull] = ACTIONS(7152), + [anon_sym__Nullable_result] = ACTIONS(7152), + [anon_sym__Null_unspecified] = ACTIONS(7152), + [anon_sym___autoreleasing] = ACTIONS(7152), + [anon_sym___nullable] = ACTIONS(7152), + [anon_sym___nonnull] = ACTIONS(7152), + [anon_sym___strong] = ACTIONS(7152), + [anon_sym___weak] = ACTIONS(7152), + [anon_sym___bridge] = ACTIONS(7152), + [anon_sym___bridge_transfer] = ACTIONS(7152), + [anon_sym___bridge_retained] = ACTIONS(7152), + [anon_sym___unsafe_unretained] = ACTIONS(7152), + [anon_sym___block] = ACTIONS(7152), + [anon_sym___kindof] = ACTIONS(7152), + [anon_sym___unused] = ACTIONS(7152), + [anon_sym__Complex] = ACTIONS(7152), + [anon_sym___complex] = ACTIONS(7152), + [anon_sym_IBOutlet] = ACTIONS(7152), + [anon_sym_IBInspectable] = ACTIONS(7152), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7152), + [anon_sym_COLON] = ACTIONS(7154), + [anon_sym_QMARK] = ACTIONS(7154), + [anon_sym_DASH_DASH] = ACTIONS(7154), + [anon_sym_PLUS_PLUS] = ACTIONS(7154), + [anon_sym_DOT] = ACTIONS(7154), + [anon_sym_DASH_GT] = ACTIONS(7154), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7152), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7152), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7152), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7152), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7152), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7152), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7152), + [anon_sym_NS_AVAILABLE] = ACTIONS(7152), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7152), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7152), + [anon_sym_API_AVAILABLE] = ACTIONS(7152), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7152), + [anon_sym_API_DEPRECATED] = ACTIONS(7152), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7152), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7152), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7152), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7152), + [anon_sym___deprecated_msg] = ACTIONS(7152), + [anon_sym___deprecated_enum_msg] = ACTIONS(7152), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7152), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7152), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7152), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7152), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7152), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7152), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3290] = { + [sym_identifier] = ACTIONS(1371), + [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_LPAREN2] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1373), + [anon_sym_SLASH] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1373), + [anon_sym_PIPE_PIPE] = ACTIONS(1373), + [anon_sym_AMP_AMP] = ACTIONS(1373), + [anon_sym_PIPE] = ACTIONS(1371), + [anon_sym_CARET] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_EQ_EQ] = ACTIONS(1373), + [anon_sym_BANG_EQ] = ACTIONS(1373), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_GT_EQ] = ACTIONS(1373), + [anon_sym_LT_EQ] = ACTIONS(1373), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_LT_LT] = ACTIONS(1373), + [anon_sym_GT_GT] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym___attribute] = ACTIONS(1371), + [anon_sym___attribute__] = ACTIONS(1371), + [anon_sym_RBRACE] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1373), + [anon_sym_RBRACK] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_volatile] = ACTIONS(1371), + [anon_sym_restrict] = ACTIONS(1371), + [anon_sym__Atomic] = ACTIONS(1371), + [anon_sym_in] = ACTIONS(1371), + [anon_sym_out] = ACTIONS(1371), + [anon_sym_inout] = ACTIONS(1371), + [anon_sym_bycopy] = ACTIONS(1371), + [anon_sym_byref] = ACTIONS(1371), + [anon_sym_oneway] = ACTIONS(1371), + [anon_sym__Nullable] = ACTIONS(1371), + [anon_sym__Nonnull] = ACTIONS(1371), + [anon_sym__Nullable_result] = ACTIONS(1371), + [anon_sym__Null_unspecified] = ACTIONS(1371), + [anon_sym___autoreleasing] = ACTIONS(1371), + [anon_sym___nullable] = ACTIONS(1371), + [anon_sym___nonnull] = ACTIONS(1371), + [anon_sym___strong] = ACTIONS(1371), + [anon_sym___weak] = ACTIONS(1371), + [anon_sym___bridge] = ACTIONS(1371), + [anon_sym___bridge_transfer] = ACTIONS(1371), + [anon_sym___bridge_retained] = ACTIONS(1371), + [anon_sym___unsafe_unretained] = ACTIONS(1371), + [anon_sym___block] = ACTIONS(1371), + [anon_sym___kindof] = ACTIONS(1371), + [anon_sym___unused] = ACTIONS(1371), + [anon_sym__Complex] = ACTIONS(1371), + [anon_sym___complex] = ACTIONS(1371), + [anon_sym_IBOutlet] = ACTIONS(1371), + [anon_sym_IBInspectable] = ACTIONS(1371), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1371), + [anon_sym_COLON] = ACTIONS(1373), + [anon_sym_QMARK] = ACTIONS(1373), + [anon_sym_DASH_DASH] = ACTIONS(1373), + [anon_sym_PLUS_PLUS] = ACTIONS(1373), + [anon_sym_DOT] = ACTIONS(1373), + [anon_sym_DASH_GT] = ACTIONS(1373), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(1371), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(1371), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(1371), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(1371), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(1371), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(1371), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(1371), + [anon_sym_NS_AVAILABLE] = ACTIONS(1371), + [anon_sym___IOS_AVAILABLE] = ACTIONS(1371), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_API_AVAILABLE] = ACTIONS(1371), + [anon_sym_API_UNAVAILABLE] = ACTIONS(1371), + [anon_sym_API_DEPRECATED] = ACTIONS(1371), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(1371), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(1371), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(1371), + [anon_sym___deprecated_msg] = ACTIONS(1371), + [anon_sym___deprecated_enum_msg] = ACTIONS(1371), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(1371), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(1371), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(1371), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(1371), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(1371), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3291] = { + [sym_identifier] = ACTIONS(7188), + [anon_sym_COMMA] = ACTIONS(7190), + [anon_sym_RPAREN] = ACTIONS(7190), + [anon_sym_LPAREN2] = ACTIONS(7190), + [anon_sym_DASH] = ACTIONS(7188), + [anon_sym_PLUS] = ACTIONS(7188), + [anon_sym_STAR] = ACTIONS(7190), + [anon_sym_SLASH] = ACTIONS(7188), + [anon_sym_PERCENT] = ACTIONS(7190), + [anon_sym_PIPE_PIPE] = ACTIONS(7190), + [anon_sym_AMP_AMP] = ACTIONS(7190), + [anon_sym_PIPE] = ACTIONS(7188), + [anon_sym_CARET] = ACTIONS(7190), + [anon_sym_AMP] = ACTIONS(7188), + [anon_sym_EQ_EQ] = ACTIONS(7190), + [anon_sym_BANG_EQ] = ACTIONS(7190), + [anon_sym_GT] = ACTIONS(7188), + [anon_sym_GT_EQ] = ACTIONS(7190), + [anon_sym_LT_EQ] = ACTIONS(7190), + [anon_sym_LT] = ACTIONS(7188), + [anon_sym_LT_LT] = ACTIONS(7190), + [anon_sym_GT_GT] = ACTIONS(7190), + [anon_sym_SEMI] = ACTIONS(7190), + [anon_sym___attribute] = ACTIONS(7188), + [anon_sym___attribute__] = ACTIONS(7188), + [anon_sym_RBRACE] = ACTIONS(7190), + [anon_sym_LBRACK] = ACTIONS(7190), + [anon_sym_RBRACK] = ACTIONS(7190), + [anon_sym_const] = ACTIONS(7188), + [anon_sym_volatile] = ACTIONS(7188), + [anon_sym_restrict] = ACTIONS(7188), + [anon_sym__Atomic] = ACTIONS(7188), + [anon_sym_in] = ACTIONS(7188), + [anon_sym_out] = ACTIONS(7188), + [anon_sym_inout] = ACTIONS(7188), + [anon_sym_bycopy] = ACTIONS(7188), + [anon_sym_byref] = ACTIONS(7188), + [anon_sym_oneway] = ACTIONS(7188), + [anon_sym__Nullable] = ACTIONS(7188), + [anon_sym__Nonnull] = ACTIONS(7188), + [anon_sym__Nullable_result] = ACTIONS(7188), + [anon_sym__Null_unspecified] = ACTIONS(7188), + [anon_sym___autoreleasing] = ACTIONS(7188), + [anon_sym___nullable] = ACTIONS(7188), + [anon_sym___nonnull] = ACTIONS(7188), + [anon_sym___strong] = ACTIONS(7188), + [anon_sym___weak] = ACTIONS(7188), + [anon_sym___bridge] = ACTIONS(7188), + [anon_sym___bridge_transfer] = ACTIONS(7188), + [anon_sym___bridge_retained] = ACTIONS(7188), + [anon_sym___unsafe_unretained] = ACTIONS(7188), + [anon_sym___block] = ACTIONS(7188), + [anon_sym___kindof] = ACTIONS(7188), + [anon_sym___unused] = ACTIONS(7188), + [anon_sym__Complex] = ACTIONS(7188), + [anon_sym___complex] = ACTIONS(7188), + [anon_sym_IBOutlet] = ACTIONS(7188), + [anon_sym_IBInspectable] = ACTIONS(7188), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7188), + [anon_sym_COLON] = ACTIONS(7190), + [anon_sym_QMARK] = ACTIONS(7190), + [anon_sym_DASH_DASH] = ACTIONS(7190), + [anon_sym_PLUS_PLUS] = ACTIONS(7190), + [anon_sym_DOT] = ACTIONS(7190), + [anon_sym_DASH_GT] = ACTIONS(7190), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7188), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7188), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7188), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7188), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7188), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7188), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7188), + [anon_sym_NS_AVAILABLE] = ACTIONS(7188), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7188), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7188), + [anon_sym_API_AVAILABLE] = ACTIONS(7188), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7188), + [anon_sym_API_DEPRECATED] = ACTIONS(7188), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7188), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7188), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7188), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7188), + [anon_sym___deprecated_msg] = ACTIONS(7188), + [anon_sym___deprecated_enum_msg] = ACTIONS(7188), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7188), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7188), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7188), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7188), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7188), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7188), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3292] = { + [sym_identifier] = ACTIONS(7108), + [anon_sym_COMMA] = ACTIONS(7110), + [anon_sym_RPAREN] = ACTIONS(7110), + [anon_sym_LPAREN2] = ACTIONS(7110), + [anon_sym_DASH] = ACTIONS(7108), + [anon_sym_PLUS] = ACTIONS(7108), + [anon_sym_STAR] = ACTIONS(7110), + [anon_sym_SLASH] = ACTIONS(7108), + [anon_sym_PERCENT] = ACTIONS(7110), + [anon_sym_PIPE_PIPE] = ACTIONS(7110), + [anon_sym_AMP_AMP] = ACTIONS(7110), + [anon_sym_PIPE] = ACTIONS(7108), + [anon_sym_CARET] = ACTIONS(7110), + [anon_sym_AMP] = ACTIONS(7108), + [anon_sym_EQ_EQ] = ACTIONS(7110), + [anon_sym_BANG_EQ] = ACTIONS(7110), + [anon_sym_GT] = ACTIONS(7108), + [anon_sym_GT_EQ] = ACTIONS(7110), + [anon_sym_LT_EQ] = ACTIONS(7110), + [anon_sym_LT] = ACTIONS(7108), + [anon_sym_LT_LT] = ACTIONS(7110), + [anon_sym_GT_GT] = ACTIONS(7110), + [anon_sym_SEMI] = ACTIONS(7110), + [anon_sym___attribute] = ACTIONS(7108), + [anon_sym___attribute__] = ACTIONS(7108), + [anon_sym_RBRACE] = ACTIONS(7110), + [anon_sym_LBRACK] = ACTIONS(7110), + [anon_sym_RBRACK] = ACTIONS(7110), + [anon_sym_const] = ACTIONS(7108), + [anon_sym_volatile] = ACTIONS(7108), + [anon_sym_restrict] = ACTIONS(7108), + [anon_sym__Atomic] = ACTIONS(7108), + [anon_sym_in] = ACTIONS(7108), + [anon_sym_out] = ACTIONS(7108), + [anon_sym_inout] = ACTIONS(7108), + [anon_sym_bycopy] = ACTIONS(7108), + [anon_sym_byref] = ACTIONS(7108), + [anon_sym_oneway] = ACTIONS(7108), + [anon_sym__Nullable] = ACTIONS(7108), + [anon_sym__Nonnull] = ACTIONS(7108), + [anon_sym__Nullable_result] = ACTIONS(7108), + [anon_sym__Null_unspecified] = ACTIONS(7108), + [anon_sym___autoreleasing] = ACTIONS(7108), + [anon_sym___nullable] = ACTIONS(7108), + [anon_sym___nonnull] = ACTIONS(7108), + [anon_sym___strong] = ACTIONS(7108), + [anon_sym___weak] = ACTIONS(7108), + [anon_sym___bridge] = ACTIONS(7108), + [anon_sym___bridge_transfer] = ACTIONS(7108), + [anon_sym___bridge_retained] = ACTIONS(7108), + [anon_sym___unsafe_unretained] = ACTIONS(7108), + [anon_sym___block] = ACTIONS(7108), + [anon_sym___kindof] = ACTIONS(7108), + [anon_sym___unused] = ACTIONS(7108), + [anon_sym__Complex] = ACTIONS(7108), + [anon_sym___complex] = ACTIONS(7108), + [anon_sym_IBOutlet] = ACTIONS(7108), + [anon_sym_IBInspectable] = ACTIONS(7108), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7108), + [anon_sym_COLON] = ACTIONS(7110), + [anon_sym_QMARK] = ACTIONS(7110), + [anon_sym_DASH_DASH] = ACTIONS(7110), + [anon_sym_PLUS_PLUS] = ACTIONS(7110), + [anon_sym_DOT] = ACTIONS(7110), + [anon_sym_DASH_GT] = ACTIONS(7110), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7108), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7108), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7108), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7108), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7108), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7108), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7108), + [anon_sym_NS_AVAILABLE] = ACTIONS(7108), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7108), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7108), + [anon_sym_API_AVAILABLE] = ACTIONS(7108), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7108), + [anon_sym_API_DEPRECATED] = ACTIONS(7108), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7108), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7108), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7108), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7108), + [anon_sym___deprecated_msg] = ACTIONS(7108), + [anon_sym___deprecated_enum_msg] = ACTIONS(7108), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7108), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7108), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7108), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7108), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7108), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7108), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3293] = { + [sym_identifier] = ACTIONS(7264), + [anon_sym_COMMA] = ACTIONS(7266), + [anon_sym_RPAREN] = ACTIONS(7266), + [anon_sym_LPAREN2] = ACTIONS(7266), + [anon_sym_DASH] = ACTIONS(7264), + [anon_sym_PLUS] = ACTIONS(7264), + [anon_sym_STAR] = ACTIONS(7266), + [anon_sym_SLASH] = ACTIONS(7264), + [anon_sym_PERCENT] = ACTIONS(7266), + [anon_sym_PIPE_PIPE] = ACTIONS(7266), + [anon_sym_AMP_AMP] = ACTIONS(7266), + [anon_sym_PIPE] = ACTIONS(7264), + [anon_sym_CARET] = ACTIONS(7266), + [anon_sym_AMP] = ACTIONS(7264), + [anon_sym_EQ_EQ] = ACTIONS(7266), + [anon_sym_BANG_EQ] = ACTIONS(7266), + [anon_sym_GT] = ACTIONS(7264), + [anon_sym_GT_EQ] = ACTIONS(7266), + [anon_sym_LT_EQ] = ACTIONS(7266), + [anon_sym_LT] = ACTIONS(7264), + [anon_sym_LT_LT] = ACTIONS(7266), + [anon_sym_GT_GT] = ACTIONS(7266), + [anon_sym_SEMI] = ACTIONS(7266), + [anon_sym___attribute] = ACTIONS(7264), + [anon_sym___attribute__] = ACTIONS(7264), + [anon_sym_RBRACE] = ACTIONS(7266), + [anon_sym_LBRACK] = ACTIONS(7266), + [anon_sym_RBRACK] = ACTIONS(7266), + [anon_sym_const] = ACTIONS(7264), + [anon_sym_volatile] = ACTIONS(7264), + [anon_sym_restrict] = ACTIONS(7264), + [anon_sym__Atomic] = ACTIONS(7264), + [anon_sym_in] = ACTIONS(7264), + [anon_sym_out] = ACTIONS(7264), + [anon_sym_inout] = ACTIONS(7264), + [anon_sym_bycopy] = ACTIONS(7264), + [anon_sym_byref] = ACTIONS(7264), + [anon_sym_oneway] = ACTIONS(7264), + [anon_sym__Nullable] = ACTIONS(7264), + [anon_sym__Nonnull] = ACTIONS(7264), + [anon_sym__Nullable_result] = ACTIONS(7264), + [anon_sym__Null_unspecified] = ACTIONS(7264), + [anon_sym___autoreleasing] = ACTIONS(7264), + [anon_sym___nullable] = ACTIONS(7264), + [anon_sym___nonnull] = ACTIONS(7264), + [anon_sym___strong] = ACTIONS(7264), + [anon_sym___weak] = ACTIONS(7264), + [anon_sym___bridge] = ACTIONS(7264), + [anon_sym___bridge_transfer] = ACTIONS(7264), + [anon_sym___bridge_retained] = ACTIONS(7264), + [anon_sym___unsafe_unretained] = ACTIONS(7264), + [anon_sym___block] = ACTIONS(7264), + [anon_sym___kindof] = ACTIONS(7264), + [anon_sym___unused] = ACTIONS(7264), + [anon_sym__Complex] = ACTIONS(7264), + [anon_sym___complex] = ACTIONS(7264), + [anon_sym_IBOutlet] = ACTIONS(7264), + [anon_sym_IBInspectable] = ACTIONS(7264), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7264), + [anon_sym_COLON] = ACTIONS(7266), + [anon_sym_QMARK] = ACTIONS(7266), + [anon_sym_DASH_DASH] = ACTIONS(7266), + [anon_sym_PLUS_PLUS] = ACTIONS(7266), + [anon_sym_DOT] = ACTIONS(7266), + [anon_sym_DASH_GT] = ACTIONS(7266), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7264), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7264), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7264), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7264), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7264), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7264), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7264), + [anon_sym_NS_AVAILABLE] = ACTIONS(7264), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7264), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7264), + [anon_sym_API_AVAILABLE] = ACTIONS(7264), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7264), + [anon_sym_API_DEPRECATED] = ACTIONS(7264), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7264), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7264), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7264), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7264), + [anon_sym___deprecated_msg] = ACTIONS(7264), + [anon_sym___deprecated_enum_msg] = ACTIONS(7264), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7264), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7264), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7264), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7264), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7264), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7264), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3294] = { + [sym_identifier] = ACTIONS(7096), + [anon_sym_COMMA] = ACTIONS(7098), + [anon_sym_RPAREN] = ACTIONS(7098), + [anon_sym_LPAREN2] = ACTIONS(7098), + [anon_sym_DASH] = ACTIONS(7096), + [anon_sym_PLUS] = ACTIONS(7096), + [anon_sym_STAR] = ACTIONS(7098), + [anon_sym_SLASH] = ACTIONS(7096), + [anon_sym_PERCENT] = ACTIONS(7098), + [anon_sym_PIPE_PIPE] = ACTIONS(7098), + [anon_sym_AMP_AMP] = ACTIONS(7098), + [anon_sym_PIPE] = ACTIONS(7096), + [anon_sym_CARET] = ACTIONS(7098), + [anon_sym_AMP] = ACTIONS(7096), + [anon_sym_EQ_EQ] = ACTIONS(7098), + [anon_sym_BANG_EQ] = ACTIONS(7098), + [anon_sym_GT] = ACTIONS(7096), + [anon_sym_GT_EQ] = ACTIONS(7098), + [anon_sym_LT_EQ] = ACTIONS(7098), + [anon_sym_LT] = ACTIONS(7096), + [anon_sym_LT_LT] = ACTIONS(7098), + [anon_sym_GT_GT] = ACTIONS(7098), + [anon_sym_SEMI] = ACTIONS(7098), + [anon_sym___attribute] = ACTIONS(7096), + [anon_sym___attribute__] = ACTIONS(7096), + [anon_sym_RBRACE] = ACTIONS(7098), + [anon_sym_LBRACK] = ACTIONS(7098), + [anon_sym_RBRACK] = ACTIONS(7098), + [anon_sym_const] = ACTIONS(7096), + [anon_sym_volatile] = ACTIONS(7096), + [anon_sym_restrict] = ACTIONS(7096), + [anon_sym__Atomic] = ACTIONS(7096), + [anon_sym_in] = ACTIONS(7096), + [anon_sym_out] = ACTIONS(7096), + [anon_sym_inout] = ACTIONS(7096), + [anon_sym_bycopy] = ACTIONS(7096), + [anon_sym_byref] = ACTIONS(7096), + [anon_sym_oneway] = ACTIONS(7096), + [anon_sym__Nullable] = ACTIONS(7096), + [anon_sym__Nonnull] = ACTIONS(7096), + [anon_sym__Nullable_result] = ACTIONS(7096), + [anon_sym__Null_unspecified] = ACTIONS(7096), + [anon_sym___autoreleasing] = ACTIONS(7096), + [anon_sym___nullable] = ACTIONS(7096), + [anon_sym___nonnull] = ACTIONS(7096), + [anon_sym___strong] = ACTIONS(7096), + [anon_sym___weak] = ACTIONS(7096), + [anon_sym___bridge] = ACTIONS(7096), + [anon_sym___bridge_transfer] = ACTIONS(7096), + [anon_sym___bridge_retained] = ACTIONS(7096), + [anon_sym___unsafe_unretained] = ACTIONS(7096), + [anon_sym___block] = ACTIONS(7096), + [anon_sym___kindof] = ACTIONS(7096), + [anon_sym___unused] = ACTIONS(7096), + [anon_sym__Complex] = ACTIONS(7096), + [anon_sym___complex] = ACTIONS(7096), + [anon_sym_IBOutlet] = ACTIONS(7096), + [anon_sym_IBInspectable] = ACTIONS(7096), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7096), + [anon_sym_COLON] = ACTIONS(7098), + [anon_sym_QMARK] = ACTIONS(7098), + [anon_sym_DASH_DASH] = ACTIONS(7098), + [anon_sym_PLUS_PLUS] = ACTIONS(7098), + [anon_sym_DOT] = ACTIONS(7098), + [anon_sym_DASH_GT] = ACTIONS(7098), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7096), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7096), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7096), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7096), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7096), + [anon_sym_NS_AVAILABLE] = ACTIONS(7096), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7096), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7096), + [anon_sym_API_AVAILABLE] = ACTIONS(7096), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7096), + [anon_sym_API_DEPRECATED] = ACTIONS(7096), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7096), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7096), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7096), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7096), + [anon_sym___deprecated_msg] = ACTIONS(7096), + [anon_sym___deprecated_enum_msg] = ACTIONS(7096), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7096), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7096), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7096), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7096), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7096), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7096), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3295] = { + [sym_identifier] = ACTIONS(7204), + [anon_sym_COMMA] = ACTIONS(7206), + [anon_sym_RPAREN] = ACTIONS(7206), + [anon_sym_LPAREN2] = ACTIONS(7206), + [anon_sym_DASH] = ACTIONS(7204), + [anon_sym_PLUS] = ACTIONS(7204), + [anon_sym_STAR] = ACTIONS(7206), + [anon_sym_SLASH] = ACTIONS(7204), + [anon_sym_PERCENT] = ACTIONS(7206), + [anon_sym_PIPE_PIPE] = ACTIONS(7206), + [anon_sym_AMP_AMP] = ACTIONS(7206), + [anon_sym_PIPE] = ACTIONS(7204), + [anon_sym_CARET] = ACTIONS(7206), + [anon_sym_AMP] = ACTIONS(7204), + [anon_sym_EQ_EQ] = ACTIONS(7206), + [anon_sym_BANG_EQ] = ACTIONS(7206), + [anon_sym_GT] = ACTIONS(7204), + [anon_sym_GT_EQ] = ACTIONS(7206), + [anon_sym_LT_EQ] = ACTIONS(7206), + [anon_sym_LT] = ACTIONS(7204), + [anon_sym_LT_LT] = ACTIONS(7206), + [anon_sym_GT_GT] = ACTIONS(7206), + [anon_sym_SEMI] = ACTIONS(7206), + [anon_sym___attribute] = ACTIONS(7204), + [anon_sym___attribute__] = ACTIONS(7204), + [anon_sym_RBRACE] = ACTIONS(7206), + [anon_sym_LBRACK] = ACTIONS(7206), + [anon_sym_RBRACK] = ACTIONS(7206), + [anon_sym_const] = ACTIONS(7204), + [anon_sym_volatile] = ACTIONS(7204), + [anon_sym_restrict] = ACTIONS(7204), + [anon_sym__Atomic] = ACTIONS(7204), + [anon_sym_in] = ACTIONS(7204), + [anon_sym_out] = ACTIONS(7204), + [anon_sym_inout] = ACTIONS(7204), + [anon_sym_bycopy] = ACTIONS(7204), + [anon_sym_byref] = ACTIONS(7204), + [anon_sym_oneway] = ACTIONS(7204), + [anon_sym__Nullable] = ACTIONS(7204), + [anon_sym__Nonnull] = ACTIONS(7204), + [anon_sym__Nullable_result] = ACTIONS(7204), + [anon_sym__Null_unspecified] = ACTIONS(7204), + [anon_sym___autoreleasing] = ACTIONS(7204), + [anon_sym___nullable] = ACTIONS(7204), + [anon_sym___nonnull] = ACTIONS(7204), + [anon_sym___strong] = ACTIONS(7204), + [anon_sym___weak] = ACTIONS(7204), + [anon_sym___bridge] = ACTIONS(7204), + [anon_sym___bridge_transfer] = ACTIONS(7204), + [anon_sym___bridge_retained] = ACTIONS(7204), + [anon_sym___unsafe_unretained] = ACTIONS(7204), + [anon_sym___block] = ACTIONS(7204), + [anon_sym___kindof] = ACTIONS(7204), + [anon_sym___unused] = ACTIONS(7204), + [anon_sym__Complex] = ACTIONS(7204), + [anon_sym___complex] = ACTIONS(7204), + [anon_sym_IBOutlet] = ACTIONS(7204), + [anon_sym_IBInspectable] = ACTIONS(7204), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7204), + [anon_sym_COLON] = ACTIONS(7206), + [anon_sym_QMARK] = ACTIONS(7206), + [anon_sym_DASH_DASH] = ACTIONS(7206), + [anon_sym_PLUS_PLUS] = ACTIONS(7206), + [anon_sym_DOT] = ACTIONS(7206), + [anon_sym_DASH_GT] = ACTIONS(7206), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7204), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7204), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7204), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7204), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7204), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7204), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7204), + [anon_sym_NS_AVAILABLE] = ACTIONS(7204), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7204), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7204), + [anon_sym_API_AVAILABLE] = ACTIONS(7204), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7204), + [anon_sym_API_DEPRECATED] = ACTIONS(7204), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7204), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7204), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7204), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7204), + [anon_sym___deprecated_msg] = ACTIONS(7204), + [anon_sym___deprecated_enum_msg] = ACTIONS(7204), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7204), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7204), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7204), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7204), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7204), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7204), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3296] = { + [sym_identifier] = ACTIONS(7216), + [anon_sym_COMMA] = ACTIONS(7218), + [anon_sym_RPAREN] = ACTIONS(7218), + [anon_sym_LPAREN2] = ACTIONS(7218), + [anon_sym_DASH] = ACTIONS(7216), + [anon_sym_PLUS] = ACTIONS(7216), + [anon_sym_STAR] = ACTIONS(7218), + [anon_sym_SLASH] = ACTIONS(7216), + [anon_sym_PERCENT] = ACTIONS(7218), + [anon_sym_PIPE_PIPE] = ACTIONS(7218), + [anon_sym_AMP_AMP] = ACTIONS(7218), + [anon_sym_PIPE] = ACTIONS(7216), + [anon_sym_CARET] = ACTIONS(7218), + [anon_sym_AMP] = ACTIONS(7216), + [anon_sym_EQ_EQ] = ACTIONS(7218), + [anon_sym_BANG_EQ] = ACTIONS(7218), + [anon_sym_GT] = ACTIONS(7216), + [anon_sym_GT_EQ] = ACTIONS(7218), + [anon_sym_LT_EQ] = ACTIONS(7218), + [anon_sym_LT] = ACTIONS(7216), + [anon_sym_LT_LT] = ACTIONS(7218), + [anon_sym_GT_GT] = ACTIONS(7218), + [anon_sym_SEMI] = ACTIONS(7218), + [anon_sym___attribute] = ACTIONS(7216), + [anon_sym___attribute__] = ACTIONS(7216), + [anon_sym_RBRACE] = ACTIONS(7218), + [anon_sym_LBRACK] = ACTIONS(7218), + [anon_sym_RBRACK] = ACTIONS(7218), + [anon_sym_const] = ACTIONS(7216), + [anon_sym_volatile] = ACTIONS(7216), + [anon_sym_restrict] = ACTIONS(7216), + [anon_sym__Atomic] = ACTIONS(7216), + [anon_sym_in] = ACTIONS(7216), + [anon_sym_out] = ACTIONS(7216), + [anon_sym_inout] = ACTIONS(7216), + [anon_sym_bycopy] = ACTIONS(7216), + [anon_sym_byref] = ACTIONS(7216), + [anon_sym_oneway] = ACTIONS(7216), + [anon_sym__Nullable] = ACTIONS(7216), + [anon_sym__Nonnull] = ACTIONS(7216), + [anon_sym__Nullable_result] = ACTIONS(7216), + [anon_sym__Null_unspecified] = ACTIONS(7216), + [anon_sym___autoreleasing] = ACTIONS(7216), + [anon_sym___nullable] = ACTIONS(7216), + [anon_sym___nonnull] = ACTIONS(7216), + [anon_sym___strong] = ACTIONS(7216), + [anon_sym___weak] = ACTIONS(7216), + [anon_sym___bridge] = ACTIONS(7216), + [anon_sym___bridge_transfer] = ACTIONS(7216), + [anon_sym___bridge_retained] = ACTIONS(7216), + [anon_sym___unsafe_unretained] = ACTIONS(7216), + [anon_sym___block] = ACTIONS(7216), + [anon_sym___kindof] = ACTIONS(7216), + [anon_sym___unused] = ACTIONS(7216), + [anon_sym__Complex] = ACTIONS(7216), + [anon_sym___complex] = ACTIONS(7216), + [anon_sym_IBOutlet] = ACTIONS(7216), + [anon_sym_IBInspectable] = ACTIONS(7216), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7216), + [anon_sym_COLON] = ACTIONS(7218), + [anon_sym_QMARK] = ACTIONS(7218), + [anon_sym_DASH_DASH] = ACTIONS(7218), + [anon_sym_PLUS_PLUS] = ACTIONS(7218), + [anon_sym_DOT] = ACTIONS(7218), + [anon_sym_DASH_GT] = ACTIONS(7218), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7216), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7216), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7216), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7216), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7216), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7216), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7216), + [anon_sym_NS_AVAILABLE] = ACTIONS(7216), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7216), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7216), + [anon_sym_API_AVAILABLE] = ACTIONS(7216), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7216), + [anon_sym_API_DEPRECATED] = ACTIONS(7216), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7216), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7216), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7216), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7216), + [anon_sym___deprecated_msg] = ACTIONS(7216), + [anon_sym___deprecated_enum_msg] = ACTIONS(7216), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7216), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7216), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7216), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7216), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7216), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7216), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3297] = { + [sym_identifier] = ACTIONS(7076), + [anon_sym_COMMA] = ACTIONS(7078), + [anon_sym_RPAREN] = ACTIONS(7078), + [anon_sym_LPAREN2] = ACTIONS(7078), + [anon_sym_DASH] = ACTIONS(7076), + [anon_sym_PLUS] = ACTIONS(7076), + [anon_sym_STAR] = ACTIONS(7078), + [anon_sym_SLASH] = ACTIONS(7076), + [anon_sym_PERCENT] = ACTIONS(7078), + [anon_sym_PIPE_PIPE] = ACTIONS(7078), + [anon_sym_AMP_AMP] = ACTIONS(7078), + [anon_sym_PIPE] = ACTIONS(7076), + [anon_sym_CARET] = ACTIONS(7078), + [anon_sym_AMP] = ACTIONS(7076), + [anon_sym_EQ_EQ] = ACTIONS(7078), + [anon_sym_BANG_EQ] = ACTIONS(7078), + [anon_sym_GT] = ACTIONS(7076), + [anon_sym_GT_EQ] = ACTIONS(7078), + [anon_sym_LT_EQ] = ACTIONS(7078), + [anon_sym_LT] = ACTIONS(7076), + [anon_sym_LT_LT] = ACTIONS(7078), + [anon_sym_GT_GT] = ACTIONS(7078), + [anon_sym_SEMI] = ACTIONS(7078), + [anon_sym___attribute] = ACTIONS(7076), + [anon_sym___attribute__] = ACTIONS(7076), + [anon_sym_RBRACE] = ACTIONS(7078), + [anon_sym_LBRACK] = ACTIONS(7078), + [anon_sym_RBRACK] = ACTIONS(7078), + [anon_sym_const] = ACTIONS(7076), + [anon_sym_volatile] = ACTIONS(7076), + [anon_sym_restrict] = ACTIONS(7076), + [anon_sym__Atomic] = ACTIONS(7076), + [anon_sym_in] = ACTIONS(7076), + [anon_sym_out] = ACTIONS(7076), + [anon_sym_inout] = ACTIONS(7076), + [anon_sym_bycopy] = ACTIONS(7076), + [anon_sym_byref] = ACTIONS(7076), + [anon_sym_oneway] = ACTIONS(7076), + [anon_sym__Nullable] = ACTIONS(7076), + [anon_sym__Nonnull] = ACTIONS(7076), + [anon_sym__Nullable_result] = ACTIONS(7076), + [anon_sym__Null_unspecified] = ACTIONS(7076), + [anon_sym___autoreleasing] = ACTIONS(7076), + [anon_sym___nullable] = ACTIONS(7076), + [anon_sym___nonnull] = ACTIONS(7076), + [anon_sym___strong] = ACTIONS(7076), + [anon_sym___weak] = ACTIONS(7076), + [anon_sym___bridge] = ACTIONS(7076), + [anon_sym___bridge_transfer] = ACTIONS(7076), + [anon_sym___bridge_retained] = ACTIONS(7076), + [anon_sym___unsafe_unretained] = ACTIONS(7076), + [anon_sym___block] = ACTIONS(7076), + [anon_sym___kindof] = ACTIONS(7076), + [anon_sym___unused] = ACTIONS(7076), + [anon_sym__Complex] = ACTIONS(7076), + [anon_sym___complex] = ACTIONS(7076), + [anon_sym_IBOutlet] = ACTIONS(7076), + [anon_sym_IBInspectable] = ACTIONS(7076), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7076), + [anon_sym_COLON] = ACTIONS(7078), + [anon_sym_QMARK] = ACTIONS(7078), + [anon_sym_DASH_DASH] = ACTIONS(7078), + [anon_sym_PLUS_PLUS] = ACTIONS(7078), + [anon_sym_DOT] = ACTIONS(7078), + [anon_sym_DASH_GT] = ACTIONS(7078), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7076), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7076), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7076), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7076), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7076), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7076), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7076), + [anon_sym_NS_AVAILABLE] = ACTIONS(7076), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7076), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7076), + [anon_sym_API_AVAILABLE] = ACTIONS(7076), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7076), + [anon_sym_API_DEPRECATED] = ACTIONS(7076), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7076), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7076), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7076), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7076), + [anon_sym___deprecated_msg] = ACTIONS(7076), + [anon_sym___deprecated_enum_msg] = ACTIONS(7076), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7076), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7076), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7076), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7076), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7076), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7076), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3298] = { + [sym_identifier] = ACTIONS(7208), + [anon_sym_COMMA] = ACTIONS(7210), + [anon_sym_RPAREN] = ACTIONS(7210), + [anon_sym_LPAREN2] = ACTIONS(7210), + [anon_sym_DASH] = ACTIONS(7208), + [anon_sym_PLUS] = ACTIONS(7208), + [anon_sym_STAR] = ACTIONS(7210), + [anon_sym_SLASH] = ACTIONS(7208), + [anon_sym_PERCENT] = ACTIONS(7210), + [anon_sym_PIPE_PIPE] = ACTIONS(7210), + [anon_sym_AMP_AMP] = ACTIONS(7210), + [anon_sym_PIPE] = ACTIONS(7208), + [anon_sym_CARET] = ACTIONS(7210), + [anon_sym_AMP] = ACTIONS(7208), + [anon_sym_EQ_EQ] = ACTIONS(7210), + [anon_sym_BANG_EQ] = ACTIONS(7210), + [anon_sym_GT] = ACTIONS(7208), + [anon_sym_GT_EQ] = ACTIONS(7210), + [anon_sym_LT_EQ] = ACTIONS(7210), + [anon_sym_LT] = ACTIONS(7208), + [anon_sym_LT_LT] = ACTIONS(7210), + [anon_sym_GT_GT] = ACTIONS(7210), + [anon_sym_SEMI] = ACTIONS(7210), + [anon_sym___attribute] = ACTIONS(7208), + [anon_sym___attribute__] = ACTIONS(7208), + [anon_sym_RBRACE] = ACTIONS(7210), + [anon_sym_LBRACK] = ACTIONS(7210), + [anon_sym_RBRACK] = ACTIONS(7210), + [anon_sym_const] = ACTIONS(7208), + [anon_sym_volatile] = ACTIONS(7208), + [anon_sym_restrict] = ACTIONS(7208), + [anon_sym__Atomic] = ACTIONS(7208), + [anon_sym_in] = ACTIONS(7208), + [anon_sym_out] = ACTIONS(7208), + [anon_sym_inout] = ACTIONS(7208), + [anon_sym_bycopy] = ACTIONS(7208), + [anon_sym_byref] = ACTIONS(7208), + [anon_sym_oneway] = ACTIONS(7208), + [anon_sym__Nullable] = ACTIONS(7208), + [anon_sym__Nonnull] = ACTIONS(7208), + [anon_sym__Nullable_result] = ACTIONS(7208), + [anon_sym__Null_unspecified] = ACTIONS(7208), + [anon_sym___autoreleasing] = ACTIONS(7208), + [anon_sym___nullable] = ACTIONS(7208), + [anon_sym___nonnull] = ACTIONS(7208), + [anon_sym___strong] = ACTIONS(7208), + [anon_sym___weak] = ACTIONS(7208), + [anon_sym___bridge] = ACTIONS(7208), + [anon_sym___bridge_transfer] = ACTIONS(7208), + [anon_sym___bridge_retained] = ACTIONS(7208), + [anon_sym___unsafe_unretained] = ACTIONS(7208), + [anon_sym___block] = ACTIONS(7208), + [anon_sym___kindof] = ACTIONS(7208), + [anon_sym___unused] = ACTIONS(7208), + [anon_sym__Complex] = ACTIONS(7208), + [anon_sym___complex] = ACTIONS(7208), + [anon_sym_IBOutlet] = ACTIONS(7208), + [anon_sym_IBInspectable] = ACTIONS(7208), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7208), + [anon_sym_COLON] = ACTIONS(7210), + [anon_sym_QMARK] = ACTIONS(7210), + [anon_sym_DASH_DASH] = ACTIONS(7210), + [anon_sym_PLUS_PLUS] = ACTIONS(7210), + [anon_sym_DOT] = ACTIONS(7210), + [anon_sym_DASH_GT] = ACTIONS(7210), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7208), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7208), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7208), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7208), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7208), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7208), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7208), + [anon_sym_NS_AVAILABLE] = ACTIONS(7208), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7208), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7208), + [anon_sym_API_AVAILABLE] = ACTIONS(7208), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7208), + [anon_sym_API_DEPRECATED] = ACTIONS(7208), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7208), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7208), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7208), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7208), + [anon_sym___deprecated_msg] = ACTIONS(7208), + [anon_sym___deprecated_enum_msg] = ACTIONS(7208), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7208), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7208), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7208), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7208), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(7208), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(7208), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3299] = { + [sym_swift_name_attribute_sepcifier] = STATE(5854), + [sym_identifier] = ACTIONS(7764), + [anon_sym_typedef] = ACTIONS(6787), + [anon_sym_extern] = ACTIONS(7764), + [anon_sym___attribute] = ACTIONS(7764), + [anon_sym___attribute__] = ACTIONS(7764), + [anon_sym___declspec] = ACTIONS(7764), + [anon_sym_static] = ACTIONS(7764), + [anon_sym_auto] = ACTIONS(7764), + [anon_sym_register] = ACTIONS(7764), + [anon_sym_inline] = ACTIONS(7764), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7764), + [anon_sym_const] = ACTIONS(7764), + [anon_sym_volatile] = ACTIONS(7764), + [anon_sym_restrict] = ACTIONS(7764), + [anon_sym__Atomic] = ACTIONS(7764), + [anon_sym_in] = ACTIONS(7764), + [anon_sym_out] = ACTIONS(7764), + [anon_sym_inout] = ACTIONS(7764), + [anon_sym_bycopy] = ACTIONS(7764), + [anon_sym_byref] = ACTIONS(7764), + [anon_sym_oneway] = ACTIONS(7764), + [anon_sym__Nullable] = ACTIONS(7764), + [anon_sym__Nonnull] = ACTIONS(7764), + [anon_sym__Nullable_result] = ACTIONS(7764), + [anon_sym__Null_unspecified] = ACTIONS(7764), + [anon_sym___autoreleasing] = ACTIONS(7764), + [anon_sym___nullable] = ACTIONS(7764), + [anon_sym___nonnull] = ACTIONS(7764), + [anon_sym___strong] = ACTIONS(7764), + [anon_sym___weak] = ACTIONS(7764), + [anon_sym___bridge] = ACTIONS(7764), + [anon_sym___bridge_transfer] = ACTIONS(7764), + [anon_sym___bridge_retained] = ACTIONS(7764), + [anon_sym___unsafe_unretained] = ACTIONS(7764), + [anon_sym___block] = ACTIONS(7764), + [anon_sym___kindof] = ACTIONS(7764), + [anon_sym___unused] = ACTIONS(7764), + [anon_sym__Complex] = ACTIONS(7764), + [anon_sym___complex] = ACTIONS(7764), + [anon_sym_IBOutlet] = ACTIONS(7764), + [anon_sym_IBInspectable] = ACTIONS(7764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7764), + [anon_sym_signed] = ACTIONS(7764), + [anon_sym_unsigned] = ACTIONS(7764), + [anon_sym_long] = ACTIONS(7764), + [anon_sym_short] = ACTIONS(7764), + [sym_primitive_type] = ACTIONS(7764), + [anon_sym_enum] = ACTIONS(7764), + [anon_sym_struct] = ACTIONS(7764), + [anon_sym_union] = ACTIONS(7764), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7764), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7764), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7764), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7764), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7764), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7764), + [anon_sym_NS_AVAILABLE] = ACTIONS(7764), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7764), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_API_AVAILABLE] = ACTIONS(7764), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_API_DEPRECATED] = ACTIONS(7764), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7764), + [anon_sym___deprecated_msg] = ACTIONS(7764), + [anon_sym___deprecated_enum_msg] = ACTIONS(7764), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(7764), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7764), + [anon_sym_NS_OPTIONS] = ACTIONS(7764), + [anon_sym_typeof] = ACTIONS(7764), + [anon_sym___typeof] = ACTIONS(7764), + [anon_sym___typeof__] = ACTIONS(7764), + [sym_id] = ACTIONS(7764), + [sym_instancetype] = ACTIONS(7764), + [sym_Class] = ACTIONS(7764), + [sym_SEL] = ACTIONS(7764), + [sym_IMP] = ACTIONS(7764), + [sym_BOOL] = ACTIONS(7764), + [sym_auto] = ACTIONS(7764), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3300] = { [sym_swift_name_attribute_sepcifier] = STATE(5836), - [sym_identifier] = ACTIONS(7788), - [anon_sym_typedef] = ACTIONS(6898), - [anon_sym_extern] = ACTIONS(7788), - [anon_sym___attribute] = ACTIONS(7788), - [anon_sym___attribute__] = ACTIONS(7788), - [anon_sym___declspec] = ACTIONS(7788), - [anon_sym_static] = ACTIONS(7788), - [anon_sym_auto] = ACTIONS(7788), - [anon_sym_register] = ACTIONS(7788), - [anon_sym_inline] = ACTIONS(7788), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7788), - [anon_sym_const] = ACTIONS(7788), - [anon_sym_volatile] = ACTIONS(7788), - [anon_sym_restrict] = ACTIONS(7788), - [anon_sym__Atomic] = ACTIONS(7788), - [anon_sym_in] = ACTIONS(7788), - [anon_sym_out] = ACTIONS(7788), - [anon_sym_inout] = ACTIONS(7788), - [anon_sym_bycopy] = ACTIONS(7788), - [anon_sym_byref] = ACTIONS(7788), - [anon_sym_oneway] = ACTIONS(7788), - [anon_sym__Nullable] = ACTIONS(7788), - [anon_sym__Nonnull] = ACTIONS(7788), - [anon_sym__Nullable_result] = ACTIONS(7788), - [anon_sym__Null_unspecified] = ACTIONS(7788), - [anon_sym___autoreleasing] = ACTIONS(7788), - [anon_sym___nullable] = ACTIONS(7788), - [anon_sym___nonnull] = ACTIONS(7788), - [anon_sym___strong] = ACTIONS(7788), - [anon_sym___weak] = ACTIONS(7788), - [anon_sym___bridge] = ACTIONS(7788), - [anon_sym___bridge_transfer] = ACTIONS(7788), - [anon_sym___bridge_retained] = ACTIONS(7788), - [anon_sym___unsafe_unretained] = ACTIONS(7788), - [anon_sym___block] = ACTIONS(7788), - [anon_sym___kindof] = ACTIONS(7788), - [anon_sym___unused] = ACTIONS(7788), - [anon_sym__Complex] = ACTIONS(7788), - [anon_sym___complex] = ACTIONS(7788), - [anon_sym_IBOutlet] = ACTIONS(7788), - [anon_sym_IBInspectable] = ACTIONS(7788), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7788), - [anon_sym_signed] = ACTIONS(7788), - [anon_sym_unsigned] = ACTIONS(7788), - [anon_sym_long] = ACTIONS(7788), - [anon_sym_short] = ACTIONS(7788), - [sym_primitive_type] = ACTIONS(7788), - [anon_sym_enum] = ACTIONS(7788), - [anon_sym_NS_ENUM] = ACTIONS(7788), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7788), - [anon_sym_NS_OPTIONS] = ACTIONS(7788), - [anon_sym_struct] = ACTIONS(7788), - [anon_sym_union] = ACTIONS(7788), + [sym_identifier] = ACTIONS(7764), + [anon_sym_typedef] = ACTIONS(6868), + [anon_sym_extern] = ACTIONS(7764), + [anon_sym___attribute] = ACTIONS(7764), + [anon_sym___attribute__] = ACTIONS(7764), + [anon_sym___declspec] = ACTIONS(7764), + [anon_sym_static] = ACTIONS(7764), + [anon_sym_auto] = ACTIONS(7764), + [anon_sym_register] = ACTIONS(7764), + [anon_sym_inline] = ACTIONS(7764), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7764), + [anon_sym_const] = ACTIONS(7764), + [anon_sym_volatile] = ACTIONS(7764), + [anon_sym_restrict] = ACTIONS(7764), + [anon_sym__Atomic] = ACTIONS(7764), + [anon_sym_in] = ACTIONS(7764), + [anon_sym_out] = ACTIONS(7764), + [anon_sym_inout] = ACTIONS(7764), + [anon_sym_bycopy] = ACTIONS(7764), + [anon_sym_byref] = ACTIONS(7764), + [anon_sym_oneway] = ACTIONS(7764), + [anon_sym__Nullable] = ACTIONS(7764), + [anon_sym__Nonnull] = ACTIONS(7764), + [anon_sym__Nullable_result] = ACTIONS(7764), + [anon_sym__Null_unspecified] = ACTIONS(7764), + [anon_sym___autoreleasing] = ACTIONS(7764), + [anon_sym___nullable] = ACTIONS(7764), + [anon_sym___nonnull] = ACTIONS(7764), + [anon_sym___strong] = ACTIONS(7764), + [anon_sym___weak] = ACTIONS(7764), + [anon_sym___bridge] = ACTIONS(7764), + [anon_sym___bridge_transfer] = ACTIONS(7764), + [anon_sym___bridge_retained] = ACTIONS(7764), + [anon_sym___unsafe_unretained] = ACTIONS(7764), + [anon_sym___block] = ACTIONS(7764), + [anon_sym___kindof] = ACTIONS(7764), + [anon_sym___unused] = ACTIONS(7764), + [anon_sym__Complex] = ACTIONS(7764), + [anon_sym___complex] = ACTIONS(7764), + [anon_sym_IBOutlet] = ACTIONS(7764), + [anon_sym_IBInspectable] = ACTIONS(7764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7764), + [anon_sym_signed] = ACTIONS(7764), + [anon_sym_unsigned] = ACTIONS(7764), + [anon_sym_long] = ACTIONS(7764), + [anon_sym_short] = ACTIONS(7764), + [sym_primitive_type] = ACTIONS(7764), + [anon_sym_enum] = ACTIONS(7764), + [anon_sym_struct] = ACTIONS(7764), + [anon_sym_union] = ACTIONS(7764), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7788), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7788), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7788), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7788), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7788), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7788), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7788), - [anon_sym_NS_AVAILABLE] = ACTIONS(7788), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7788), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_API_AVAILABLE] = ACTIONS(7788), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7788), - [anon_sym_API_DEPRECATED] = ACTIONS(7788), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7788), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7788), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7788), - [anon_sym___deprecated_msg] = ACTIONS(7788), - [anon_sym___deprecated_enum_msg] = ACTIONS(7788), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7788), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7788), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(7788), - [anon_sym___typeof] = ACTIONS(7788), - [anon_sym___typeof__] = ACTIONS(7788), - [sym_id] = ACTIONS(7788), - [sym_instancetype] = ACTIONS(7788), - [sym_Class] = ACTIONS(7788), - [sym_SEL] = ACTIONS(7788), - [sym_IMP] = ACTIONS(7788), - [sym_BOOL] = ACTIONS(7788), - [sym_auto] = ACTIONS(7788), + [sym_method_attribute_specifier] = ACTIONS(7764), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7764), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7764), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7764), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7764), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7764), + [anon_sym_NS_AVAILABLE] = ACTIONS(7764), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7764), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_API_AVAILABLE] = ACTIONS(7764), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_API_DEPRECATED] = ACTIONS(7764), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7764), + [anon_sym___deprecated_msg] = ACTIONS(7764), + [anon_sym___deprecated_enum_msg] = ACTIONS(7764), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(7764), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7764), + [anon_sym_NS_OPTIONS] = ACTIONS(7764), + [anon_sym_typeof] = ACTIONS(7764), + [anon_sym___typeof] = ACTIONS(7764), + [anon_sym___typeof__] = ACTIONS(7764), + [sym_id] = ACTIONS(7764), + [sym_instancetype] = ACTIONS(7764), + [sym_Class] = ACTIONS(7764), + [sym_SEL] = ACTIONS(7764), + [sym_IMP] = ACTIONS(7764), + [sym_BOOL] = ACTIONS(7764), + [sym_auto] = ACTIONS(7764), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -529057,97 +520630,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3361] = { - [sym_swift_name_attribute_sepcifier] = STATE(5876), - [sym_identifier] = ACTIONS(7788), - [anon_sym_typedef] = ACTIONS(6950), - [anon_sym_extern] = ACTIONS(7788), - [anon_sym___attribute] = ACTIONS(7788), - [anon_sym___attribute__] = ACTIONS(7788), - [anon_sym___declspec] = ACTIONS(7788), - [anon_sym_static] = ACTIONS(7788), - [anon_sym_auto] = ACTIONS(7788), - [anon_sym_register] = ACTIONS(7788), - [anon_sym_inline] = ACTIONS(7788), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7788), - [anon_sym_const] = ACTIONS(7788), - [anon_sym_volatile] = ACTIONS(7788), - [anon_sym_restrict] = ACTIONS(7788), - [anon_sym__Atomic] = ACTIONS(7788), - [anon_sym_in] = ACTIONS(7788), - [anon_sym_out] = ACTIONS(7788), - [anon_sym_inout] = ACTIONS(7788), - [anon_sym_bycopy] = ACTIONS(7788), - [anon_sym_byref] = ACTIONS(7788), - [anon_sym_oneway] = ACTIONS(7788), - [anon_sym__Nullable] = ACTIONS(7788), - [anon_sym__Nonnull] = ACTIONS(7788), - [anon_sym__Nullable_result] = ACTIONS(7788), - [anon_sym__Null_unspecified] = ACTIONS(7788), - [anon_sym___autoreleasing] = ACTIONS(7788), - [anon_sym___nullable] = ACTIONS(7788), - [anon_sym___nonnull] = ACTIONS(7788), - [anon_sym___strong] = ACTIONS(7788), - [anon_sym___weak] = ACTIONS(7788), - [anon_sym___bridge] = ACTIONS(7788), - [anon_sym___bridge_transfer] = ACTIONS(7788), - [anon_sym___bridge_retained] = ACTIONS(7788), - [anon_sym___unsafe_unretained] = ACTIONS(7788), - [anon_sym___block] = ACTIONS(7788), - [anon_sym___kindof] = ACTIONS(7788), - [anon_sym___unused] = ACTIONS(7788), - [anon_sym__Complex] = ACTIONS(7788), - [anon_sym___complex] = ACTIONS(7788), - [anon_sym_IBOutlet] = ACTIONS(7788), - [anon_sym_IBInspectable] = ACTIONS(7788), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7788), - [anon_sym_signed] = ACTIONS(7788), - [anon_sym_unsigned] = ACTIONS(7788), - [anon_sym_long] = ACTIONS(7788), - [anon_sym_short] = ACTIONS(7788), - [sym_primitive_type] = ACTIONS(7788), - [anon_sym_enum] = ACTIONS(7788), - [anon_sym_NS_ENUM] = ACTIONS(7788), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7788), - [anon_sym_NS_OPTIONS] = ACTIONS(7788), - [anon_sym_struct] = ACTIONS(7788), - [anon_sym_union] = ACTIONS(7788), + [3301] = { + [sym_swift_name_attribute_sepcifier] = STATE(5655), + [sym_identifier] = ACTIONS(7764), + [anon_sym_typedef] = ACTIONS(6797), + [anon_sym_extern] = ACTIONS(7764), + [anon_sym___attribute] = ACTIONS(7764), + [anon_sym___attribute__] = ACTIONS(7764), + [anon_sym___declspec] = ACTIONS(7764), + [anon_sym_static] = ACTIONS(7764), + [anon_sym_auto] = ACTIONS(7764), + [anon_sym_register] = ACTIONS(7764), + [anon_sym_inline] = ACTIONS(7764), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7764), + [anon_sym_const] = ACTIONS(7764), + [anon_sym_volatile] = ACTIONS(7764), + [anon_sym_restrict] = ACTIONS(7764), + [anon_sym__Atomic] = ACTIONS(7764), + [anon_sym_in] = ACTIONS(7764), + [anon_sym_out] = ACTIONS(7764), + [anon_sym_inout] = ACTIONS(7764), + [anon_sym_bycopy] = ACTIONS(7764), + [anon_sym_byref] = ACTIONS(7764), + [anon_sym_oneway] = ACTIONS(7764), + [anon_sym__Nullable] = ACTIONS(7764), + [anon_sym__Nonnull] = ACTIONS(7764), + [anon_sym__Nullable_result] = ACTIONS(7764), + [anon_sym__Null_unspecified] = ACTIONS(7764), + [anon_sym___autoreleasing] = ACTIONS(7764), + [anon_sym___nullable] = ACTIONS(7764), + [anon_sym___nonnull] = ACTIONS(7764), + [anon_sym___strong] = ACTIONS(7764), + [anon_sym___weak] = ACTIONS(7764), + [anon_sym___bridge] = ACTIONS(7764), + [anon_sym___bridge_transfer] = ACTIONS(7764), + [anon_sym___bridge_retained] = ACTIONS(7764), + [anon_sym___unsafe_unretained] = ACTIONS(7764), + [anon_sym___block] = ACTIONS(7764), + [anon_sym___kindof] = ACTIONS(7764), + [anon_sym___unused] = ACTIONS(7764), + [anon_sym__Complex] = ACTIONS(7764), + [anon_sym___complex] = ACTIONS(7764), + [anon_sym_IBOutlet] = ACTIONS(7764), + [anon_sym_IBInspectable] = ACTIONS(7764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7764), + [anon_sym_signed] = ACTIONS(7764), + [anon_sym_unsigned] = ACTIONS(7764), + [anon_sym_long] = ACTIONS(7764), + [anon_sym_short] = ACTIONS(7764), + [sym_primitive_type] = ACTIONS(7764), + [anon_sym_enum] = ACTIONS(7764), + [anon_sym_struct] = ACTIONS(7764), + [anon_sym_union] = ACTIONS(7764), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7788), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7788), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7788), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7788), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7788), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7788), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7788), - [anon_sym_NS_AVAILABLE] = ACTIONS(7788), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7788), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_API_AVAILABLE] = ACTIONS(7788), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7788), - [anon_sym_API_DEPRECATED] = ACTIONS(7788), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7788), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7788), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7788), - [anon_sym___deprecated_msg] = ACTIONS(7788), - [anon_sym___deprecated_enum_msg] = ACTIONS(7788), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7788), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7788), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(7788), - [anon_sym___typeof] = ACTIONS(7788), - [anon_sym___typeof__] = ACTIONS(7788), - [sym_id] = ACTIONS(7788), - [sym_instancetype] = ACTIONS(7788), - [sym_Class] = ACTIONS(7788), - [sym_SEL] = ACTIONS(7788), - [sym_IMP] = ACTIONS(7788), - [sym_BOOL] = ACTIONS(7788), - [sym_auto] = ACTIONS(7788), + [sym_method_attribute_specifier] = ACTIONS(7764), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7764), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7764), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7764), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7764), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7764), + [anon_sym_NS_AVAILABLE] = ACTIONS(7764), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7764), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_API_AVAILABLE] = ACTIONS(7764), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_API_DEPRECATED] = ACTIONS(7764), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7764), + [anon_sym___deprecated_msg] = ACTIONS(7764), + [anon_sym___deprecated_enum_msg] = ACTIONS(7764), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(7764), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7764), + [anon_sym_NS_OPTIONS] = ACTIONS(7764), + [anon_sym_typeof] = ACTIONS(7764), + [anon_sym___typeof] = ACTIONS(7764), + [anon_sym___typeof__] = ACTIONS(7764), + [sym_id] = ACTIONS(7764), + [sym_instancetype] = ACTIONS(7764), + [sym_Class] = ACTIONS(7764), + [sym_SEL] = ACTIONS(7764), + [sym_IMP] = ACTIONS(7764), + [sym_BOOL] = ACTIONS(7764), + [sym_auto] = ACTIONS(7764), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -529155,97 +520728,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3362] = { - [sym_swift_name_attribute_sepcifier] = STATE(5894), - [sym_identifier] = ACTIONS(7788), - [anon_sym_typedef] = ACTIONS(6904), - [anon_sym_extern] = ACTIONS(7788), - [anon_sym___attribute] = ACTIONS(7788), - [anon_sym___attribute__] = ACTIONS(7788), - [anon_sym___declspec] = ACTIONS(7788), - [anon_sym_static] = ACTIONS(7788), - [anon_sym_auto] = ACTIONS(7788), - [anon_sym_register] = ACTIONS(7788), - [anon_sym_inline] = ACTIONS(7788), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7788), - [anon_sym_const] = ACTIONS(7788), - [anon_sym_volatile] = ACTIONS(7788), - [anon_sym_restrict] = ACTIONS(7788), - [anon_sym__Atomic] = ACTIONS(7788), - [anon_sym_in] = ACTIONS(7788), - [anon_sym_out] = ACTIONS(7788), - [anon_sym_inout] = ACTIONS(7788), - [anon_sym_bycopy] = ACTIONS(7788), - [anon_sym_byref] = ACTIONS(7788), - [anon_sym_oneway] = ACTIONS(7788), - [anon_sym__Nullable] = ACTIONS(7788), - [anon_sym__Nonnull] = ACTIONS(7788), - [anon_sym__Nullable_result] = ACTIONS(7788), - [anon_sym__Null_unspecified] = ACTIONS(7788), - [anon_sym___autoreleasing] = ACTIONS(7788), - [anon_sym___nullable] = ACTIONS(7788), - [anon_sym___nonnull] = ACTIONS(7788), - [anon_sym___strong] = ACTIONS(7788), - [anon_sym___weak] = ACTIONS(7788), - [anon_sym___bridge] = ACTIONS(7788), - [anon_sym___bridge_transfer] = ACTIONS(7788), - [anon_sym___bridge_retained] = ACTIONS(7788), - [anon_sym___unsafe_unretained] = ACTIONS(7788), - [anon_sym___block] = ACTIONS(7788), - [anon_sym___kindof] = ACTIONS(7788), - [anon_sym___unused] = ACTIONS(7788), - [anon_sym__Complex] = ACTIONS(7788), - [anon_sym___complex] = ACTIONS(7788), - [anon_sym_IBOutlet] = ACTIONS(7788), - [anon_sym_IBInspectable] = ACTIONS(7788), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7788), - [anon_sym_signed] = ACTIONS(7788), - [anon_sym_unsigned] = ACTIONS(7788), - [anon_sym_long] = ACTIONS(7788), - [anon_sym_short] = ACTIONS(7788), - [sym_primitive_type] = ACTIONS(7788), - [anon_sym_enum] = ACTIONS(7788), - [anon_sym_NS_ENUM] = ACTIONS(7788), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7788), - [anon_sym_NS_OPTIONS] = ACTIONS(7788), - [anon_sym_struct] = ACTIONS(7788), - [anon_sym_union] = ACTIONS(7788), + [3302] = { + [sym_swift_name_attribute_sepcifier] = STATE(5796), + [sym_identifier] = ACTIONS(7764), + [anon_sym_typedef] = ACTIONS(6764), + [anon_sym_extern] = ACTIONS(7764), + [anon_sym___attribute] = ACTIONS(7764), + [anon_sym___attribute__] = ACTIONS(7764), + [anon_sym___declspec] = ACTIONS(7764), + [anon_sym_static] = ACTIONS(7764), + [anon_sym_auto] = ACTIONS(7764), + [anon_sym_register] = ACTIONS(7764), + [anon_sym_inline] = ACTIONS(7764), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7764), + [anon_sym_const] = ACTIONS(7764), + [anon_sym_volatile] = ACTIONS(7764), + [anon_sym_restrict] = ACTIONS(7764), + [anon_sym__Atomic] = ACTIONS(7764), + [anon_sym_in] = ACTIONS(7764), + [anon_sym_out] = ACTIONS(7764), + [anon_sym_inout] = ACTIONS(7764), + [anon_sym_bycopy] = ACTIONS(7764), + [anon_sym_byref] = ACTIONS(7764), + [anon_sym_oneway] = ACTIONS(7764), + [anon_sym__Nullable] = ACTIONS(7764), + [anon_sym__Nonnull] = ACTIONS(7764), + [anon_sym__Nullable_result] = ACTIONS(7764), + [anon_sym__Null_unspecified] = ACTIONS(7764), + [anon_sym___autoreleasing] = ACTIONS(7764), + [anon_sym___nullable] = ACTIONS(7764), + [anon_sym___nonnull] = ACTIONS(7764), + [anon_sym___strong] = ACTIONS(7764), + [anon_sym___weak] = ACTIONS(7764), + [anon_sym___bridge] = ACTIONS(7764), + [anon_sym___bridge_transfer] = ACTIONS(7764), + [anon_sym___bridge_retained] = ACTIONS(7764), + [anon_sym___unsafe_unretained] = ACTIONS(7764), + [anon_sym___block] = ACTIONS(7764), + [anon_sym___kindof] = ACTIONS(7764), + [anon_sym___unused] = ACTIONS(7764), + [anon_sym__Complex] = ACTIONS(7764), + [anon_sym___complex] = ACTIONS(7764), + [anon_sym_IBOutlet] = ACTIONS(7764), + [anon_sym_IBInspectable] = ACTIONS(7764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7764), + [anon_sym_signed] = ACTIONS(7764), + [anon_sym_unsigned] = ACTIONS(7764), + [anon_sym_long] = ACTIONS(7764), + [anon_sym_short] = ACTIONS(7764), + [sym_primitive_type] = ACTIONS(7764), + [anon_sym_enum] = ACTIONS(7764), + [anon_sym_struct] = ACTIONS(7764), + [anon_sym_union] = ACTIONS(7764), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7788), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7788), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7788), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7788), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7788), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7788), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7788), - [anon_sym_NS_AVAILABLE] = ACTIONS(7788), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7788), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_API_AVAILABLE] = ACTIONS(7788), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7788), - [anon_sym_API_DEPRECATED] = ACTIONS(7788), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7788), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7788), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7788), - [anon_sym___deprecated_msg] = ACTIONS(7788), - [anon_sym___deprecated_enum_msg] = ACTIONS(7788), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7788), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7788), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(121), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(123), - [anon_sym_typeof] = ACTIONS(7788), - [anon_sym___typeof] = ACTIONS(7788), - [anon_sym___typeof__] = ACTIONS(7788), - [sym_id] = ACTIONS(7788), - [sym_instancetype] = ACTIONS(7788), - [sym_Class] = ACTIONS(7788), - [sym_SEL] = ACTIONS(7788), - [sym_IMP] = ACTIONS(7788), - [sym_BOOL] = ACTIONS(7788), - [sym_auto] = ACTIONS(7788), + [sym_method_attribute_specifier] = ACTIONS(7764), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7764), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7764), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7764), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7764), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7764), + [anon_sym_NS_AVAILABLE] = ACTIONS(7764), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7764), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_API_AVAILABLE] = ACTIONS(7764), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_API_DEPRECATED] = ACTIONS(7764), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7764), + [anon_sym___deprecated_msg] = ACTIONS(7764), + [anon_sym___deprecated_enum_msg] = ACTIONS(7764), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(119), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(121), + [anon_sym_NS_ENUM] = ACTIONS(7764), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7764), + [anon_sym_NS_OPTIONS] = ACTIONS(7764), + [anon_sym_typeof] = ACTIONS(7764), + [anon_sym___typeof] = ACTIONS(7764), + [anon_sym___typeof__] = ACTIONS(7764), + [sym_id] = ACTIONS(7764), + [sym_instancetype] = ACTIONS(7764), + [sym_Class] = ACTIONS(7764), + [sym_SEL] = ACTIONS(7764), + [sym_IMP] = ACTIONS(7764), + [sym_BOOL] = ACTIONS(7764), + [sym_auto] = ACTIONS(7764), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -529253,15 +520826,1351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3363] = { + [3303] = { + [sym_identifier] = ACTIONS(7841), + [anon_sym_RPAREN] = ACTIONS(7843), + [anon_sym_CARET] = ACTIONS(7843), + [anon_sym_SEMI] = ACTIONS(7843), + [anon_sym_extern] = ACTIONS(7841), + [anon_sym___attribute] = ACTIONS(7841), + [anon_sym___attribute__] = ACTIONS(7841), + [anon_sym___declspec] = ACTIONS(7841), + [anon_sym_static] = ACTIONS(7841), + [anon_sym_auto] = ACTIONS(7841), + [anon_sym_register] = ACTIONS(7841), + [anon_sym_inline] = ACTIONS(7841), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7841), + [anon_sym_const] = ACTIONS(7841), + [anon_sym_volatile] = ACTIONS(7841), + [anon_sym_restrict] = ACTIONS(7841), + [anon_sym__Atomic] = ACTIONS(7841), + [anon_sym_in] = ACTIONS(7841), + [anon_sym_out] = ACTIONS(7841), + [anon_sym_inout] = ACTIONS(7841), + [anon_sym_bycopy] = ACTIONS(7841), + [anon_sym_byref] = ACTIONS(7841), + [anon_sym_oneway] = ACTIONS(7841), + [anon_sym__Nullable] = ACTIONS(7841), + [anon_sym__Nonnull] = ACTIONS(7841), + [anon_sym__Nullable_result] = ACTIONS(7841), + [anon_sym__Null_unspecified] = ACTIONS(7841), + [anon_sym___autoreleasing] = ACTIONS(7841), + [anon_sym___nullable] = ACTIONS(7841), + [anon_sym___nonnull] = ACTIONS(7841), + [anon_sym___strong] = ACTIONS(7841), + [anon_sym___weak] = ACTIONS(7841), + [anon_sym___bridge] = ACTIONS(7841), + [anon_sym___bridge_transfer] = ACTIONS(7841), + [anon_sym___bridge_retained] = ACTIONS(7841), + [anon_sym___unsafe_unretained] = ACTIONS(7841), + [anon_sym___block] = ACTIONS(7841), + [anon_sym___kindof] = ACTIONS(7841), + [anon_sym___unused] = ACTIONS(7841), + [anon_sym__Complex] = ACTIONS(7841), + [anon_sym___complex] = ACTIONS(7841), + [anon_sym_IBOutlet] = ACTIONS(7841), + [anon_sym_IBInspectable] = ACTIONS(7841), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7841), + [anon_sym_signed] = ACTIONS(7841), + [anon_sym_unsigned] = ACTIONS(7841), + [anon_sym_long] = ACTIONS(7841), + [anon_sym_short] = ACTIONS(7841), + [sym_primitive_type] = ACTIONS(7841), + [anon_sym_enum] = ACTIONS(7841), + [anon_sym_struct] = ACTIONS(7841), + [anon_sym_union] = ACTIONS(7841), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7841), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7841), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7841), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7841), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7841), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7841), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7841), + [anon_sym_NS_AVAILABLE] = ACTIONS(7841), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7841), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7841), + [anon_sym_API_AVAILABLE] = ACTIONS(7841), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7841), + [anon_sym_API_DEPRECATED] = ACTIONS(7841), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7841), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7841), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7841), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7841), + [anon_sym___deprecated_msg] = ACTIONS(7841), + [anon_sym___deprecated_enum_msg] = ACTIONS(7841), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7841), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7841), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7841), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7841), + [anon_sym_NS_ENUM] = ACTIONS(7841), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7841), + [anon_sym_NS_OPTIONS] = ACTIONS(7841), + [anon_sym_typeof] = ACTIONS(7841), + [anon_sym___typeof] = ACTIONS(7841), + [anon_sym___typeof__] = ACTIONS(7841), + [sym_id] = ACTIONS(7841), + [sym_instancetype] = ACTIONS(7841), + [sym_Class] = ACTIONS(7841), + [sym_SEL] = ACTIONS(7841), + [sym_IMP] = ACTIONS(7841), + [sym_BOOL] = ACTIONS(7841), + [sym_auto] = ACTIONS(7841), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3304] = { + [sym_identifier] = ACTIONS(7841), + [anon_sym_LPAREN2] = ACTIONS(7845), + [anon_sym_CARET] = ACTIONS(7843), + [anon_sym_extern] = ACTIONS(7841), + [anon_sym___attribute] = ACTIONS(7841), + [anon_sym___attribute__] = ACTIONS(7841), + [anon_sym___declspec] = ACTIONS(7841), + [anon_sym_static] = ACTIONS(7841), + [anon_sym_auto] = ACTIONS(7841), + [anon_sym_register] = ACTIONS(7841), + [anon_sym_inline] = ACTIONS(7841), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7841), + [anon_sym_const] = ACTIONS(7841), + [anon_sym_volatile] = ACTIONS(7841), + [anon_sym_restrict] = ACTIONS(7841), + [anon_sym__Atomic] = ACTIONS(7841), + [anon_sym_in] = ACTIONS(7841), + [anon_sym_out] = ACTIONS(7841), + [anon_sym_inout] = ACTIONS(7841), + [anon_sym_bycopy] = ACTIONS(7841), + [anon_sym_byref] = ACTIONS(7841), + [anon_sym_oneway] = ACTIONS(7841), + [anon_sym__Nullable] = ACTIONS(7841), + [anon_sym__Nonnull] = ACTIONS(7841), + [anon_sym__Nullable_result] = ACTIONS(7841), + [anon_sym__Null_unspecified] = ACTIONS(7841), + [anon_sym___autoreleasing] = ACTIONS(7841), + [anon_sym___nullable] = ACTIONS(7841), + [anon_sym___nonnull] = ACTIONS(7841), + [anon_sym___strong] = ACTIONS(7841), + [anon_sym___weak] = ACTIONS(7841), + [anon_sym___bridge] = ACTIONS(7841), + [anon_sym___bridge_transfer] = ACTIONS(7841), + [anon_sym___bridge_retained] = ACTIONS(7841), + [anon_sym___unsafe_unretained] = ACTIONS(7841), + [anon_sym___block] = ACTIONS(7841), + [anon_sym___kindof] = ACTIONS(7841), + [anon_sym___unused] = ACTIONS(7841), + [anon_sym__Complex] = ACTIONS(7841), + [anon_sym___complex] = ACTIONS(7841), + [anon_sym_IBOutlet] = ACTIONS(7841), + [anon_sym_IBInspectable] = ACTIONS(7841), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7841), + [anon_sym_signed] = ACTIONS(7841), + [anon_sym_unsigned] = ACTIONS(7841), + [anon_sym_long] = ACTIONS(7841), + [anon_sym_short] = ACTIONS(7841), + [sym_primitive_type] = ACTIONS(7841), + [anon_sym_enum] = ACTIONS(7841), + [anon_sym_struct] = ACTIONS(7841), + [anon_sym_union] = ACTIONS(7841), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7841), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7841), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7841), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7841), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7841), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7841), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7841), + [anon_sym_NS_AVAILABLE] = ACTIONS(7841), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7841), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7841), + [anon_sym_API_AVAILABLE] = ACTIONS(7841), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7841), + [anon_sym_API_DEPRECATED] = ACTIONS(7841), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7841), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7841), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7841), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7841), + [anon_sym___deprecated_msg] = ACTIONS(7841), + [anon_sym___deprecated_enum_msg] = ACTIONS(7841), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7841), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7841), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7841), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7841), + [anon_sym_NS_ENUM] = ACTIONS(7841), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7841), + [anon_sym_NS_OPTIONS] = ACTIONS(7841), + [anon_sym_typeof] = ACTIONS(7841), + [anon_sym___typeof] = ACTIONS(7841), + [anon_sym___typeof__] = ACTIONS(7841), + [sym_id] = ACTIONS(7841), + [sym_instancetype] = ACTIONS(7841), + [sym_Class] = ACTIONS(7841), + [sym_SEL] = ACTIONS(7841), + [sym_IMP] = ACTIONS(7841), + [sym_BOOL] = ACTIONS(7841), + [sym_auto] = ACTIONS(7841), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3305] = { + [sym_identifier] = ACTIONS(7764), + [anon_sym_extern] = ACTIONS(7764), + [anon_sym___attribute] = ACTIONS(7766), + [anon_sym___attribute__] = ACTIONS(7766), + [anon_sym___declspec] = ACTIONS(7764), + [anon_sym_static] = ACTIONS(7764), + [anon_sym_auto] = ACTIONS(7764), + [anon_sym_register] = ACTIONS(7764), + [anon_sym_inline] = ACTIONS(7764), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7764), + [anon_sym_const] = ACTIONS(7764), + [anon_sym_volatile] = ACTIONS(7764), + [anon_sym_restrict] = ACTIONS(7764), + [anon_sym__Atomic] = ACTIONS(7764), + [anon_sym_in] = ACTIONS(7764), + [anon_sym_out] = ACTIONS(7764), + [anon_sym_inout] = ACTIONS(7764), + [anon_sym_bycopy] = ACTIONS(7764), + [anon_sym_byref] = ACTIONS(7764), + [anon_sym_oneway] = ACTIONS(7764), + [anon_sym__Nullable] = ACTIONS(7764), + [anon_sym__Nonnull] = ACTIONS(7764), + [anon_sym__Nullable_result] = ACTIONS(7764), + [anon_sym__Null_unspecified] = ACTIONS(7764), + [anon_sym___autoreleasing] = ACTIONS(7764), + [anon_sym___nullable] = ACTIONS(7764), + [anon_sym___nonnull] = ACTIONS(7764), + [anon_sym___strong] = ACTIONS(7764), + [anon_sym___weak] = ACTIONS(7764), + [anon_sym___bridge] = ACTIONS(7764), + [anon_sym___bridge_transfer] = ACTIONS(7764), + [anon_sym___bridge_retained] = ACTIONS(7764), + [anon_sym___unsafe_unretained] = ACTIONS(7764), + [anon_sym___block] = ACTIONS(7764), + [anon_sym___kindof] = ACTIONS(7764), + [anon_sym___unused] = ACTIONS(7764), + [anon_sym__Complex] = ACTIONS(7764), + [anon_sym___complex] = ACTIONS(7764), + [anon_sym_IBOutlet] = ACTIONS(7764), + [anon_sym_IBInspectable] = ACTIONS(7764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7764), + [anon_sym_signed] = ACTIONS(7764), + [anon_sym_unsigned] = ACTIONS(7764), + [anon_sym_long] = ACTIONS(7764), + [anon_sym_short] = ACTIONS(7764), + [sym_primitive_type] = ACTIONS(7764), + [anon_sym_enum] = ACTIONS(7764), + [anon_sym_struct] = ACTIONS(7764), + [anon_sym_union] = ACTIONS(7764), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(7847), + [anon_sym_ATinterface] = ACTIONS(7769), + [sym_method_attribute_specifier] = ACTIONS(7766), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7766), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7766), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7766), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7766), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7766), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7766), + [anon_sym_NS_AVAILABLE] = ACTIONS(7766), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7766), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_API_AVAILABLE] = ACTIONS(7766), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7766), + [anon_sym_API_DEPRECATED] = ACTIONS(7766), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7766), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7766), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7766), + [anon_sym___deprecated_msg] = ACTIONS(7766), + [anon_sym___deprecated_enum_msg] = ACTIONS(7766), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7766), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7766), + [anon_sym_NS_ENUM] = ACTIONS(7764), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7764), + [anon_sym_NS_OPTIONS] = ACTIONS(7764), + [anon_sym_typeof] = ACTIONS(7764), + [anon_sym___typeof] = ACTIONS(7764), + [anon_sym___typeof__] = ACTIONS(7764), + [sym_id] = ACTIONS(7764), + [sym_instancetype] = ACTIONS(7764), + [sym_Class] = ACTIONS(7764), + [sym_SEL] = ACTIONS(7764), + [sym_IMP] = ACTIONS(7764), + [sym_BOOL] = ACTIONS(7764), + [sym_auto] = ACTIONS(7764), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3306] = { + [sym_identifier] = ACTIONS(7764), + [anon_sym_extern] = ACTIONS(7764), + [anon_sym___attribute] = ACTIONS(7766), + [anon_sym___attribute__] = ACTIONS(7766), + [anon_sym___declspec] = ACTIONS(7764), + [anon_sym_static] = ACTIONS(7764), + [anon_sym_auto] = ACTIONS(7764), + [anon_sym_register] = ACTIONS(7764), + [anon_sym_inline] = ACTIONS(7764), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7764), + [anon_sym_const] = ACTIONS(7764), + [anon_sym_volatile] = ACTIONS(7764), + [anon_sym_restrict] = ACTIONS(7764), + [anon_sym__Atomic] = ACTIONS(7764), + [anon_sym_in] = ACTIONS(7764), + [anon_sym_out] = ACTIONS(7764), + [anon_sym_inout] = ACTIONS(7764), + [anon_sym_bycopy] = ACTIONS(7764), + [anon_sym_byref] = ACTIONS(7764), + [anon_sym_oneway] = ACTIONS(7764), + [anon_sym__Nullable] = ACTIONS(7764), + [anon_sym__Nonnull] = ACTIONS(7764), + [anon_sym__Nullable_result] = ACTIONS(7764), + [anon_sym__Null_unspecified] = ACTIONS(7764), + [anon_sym___autoreleasing] = ACTIONS(7764), + [anon_sym___nullable] = ACTIONS(7764), + [anon_sym___nonnull] = ACTIONS(7764), + [anon_sym___strong] = ACTIONS(7764), + [anon_sym___weak] = ACTIONS(7764), + [anon_sym___bridge] = ACTIONS(7764), + [anon_sym___bridge_transfer] = ACTIONS(7764), + [anon_sym___bridge_retained] = ACTIONS(7764), + [anon_sym___unsafe_unretained] = ACTIONS(7764), + [anon_sym___block] = ACTIONS(7764), + [anon_sym___kindof] = ACTIONS(7764), + [anon_sym___unused] = ACTIONS(7764), + [anon_sym__Complex] = ACTIONS(7764), + [anon_sym___complex] = ACTIONS(7764), + [anon_sym_IBOutlet] = ACTIONS(7764), + [anon_sym_IBInspectable] = ACTIONS(7764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7764), + [anon_sym_signed] = ACTIONS(7764), + [anon_sym_unsigned] = ACTIONS(7764), + [anon_sym_long] = ACTIONS(7764), + [anon_sym_short] = ACTIONS(7764), + [sym_primitive_type] = ACTIONS(7764), + [anon_sym_enum] = ACTIONS(7764), + [anon_sym_struct] = ACTIONS(7764), + [anon_sym_union] = ACTIONS(7764), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(7849), + [anon_sym_ATinterface] = ACTIONS(7769), + [sym_method_attribute_specifier] = ACTIONS(7766), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7766), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7766), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7766), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7766), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7766), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7766), + [anon_sym_NS_AVAILABLE] = ACTIONS(7766), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7766), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_API_AVAILABLE] = ACTIONS(7766), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7766), + [anon_sym_API_DEPRECATED] = ACTIONS(7766), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7766), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7766), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7766), + [anon_sym___deprecated_msg] = ACTIONS(7766), + [anon_sym___deprecated_enum_msg] = ACTIONS(7766), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7766), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7766), + [anon_sym_NS_ENUM] = ACTIONS(7764), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7764), + [anon_sym_NS_OPTIONS] = ACTIONS(7764), + [anon_sym_typeof] = ACTIONS(7764), + [anon_sym___typeof] = ACTIONS(7764), + [anon_sym___typeof__] = ACTIONS(7764), + [sym_id] = ACTIONS(7764), + [sym_instancetype] = ACTIONS(7764), + [sym_Class] = ACTIONS(7764), + [sym_SEL] = ACTIONS(7764), + [sym_IMP] = ACTIONS(7764), + [sym_BOOL] = ACTIONS(7764), + [sym_auto] = ACTIONS(7764), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3307] = { + [sym_identifier] = ACTIONS(7764), + [anon_sym_extern] = ACTIONS(7764), + [anon_sym___attribute] = ACTIONS(7766), + [anon_sym___attribute__] = ACTIONS(7766), + [anon_sym___declspec] = ACTIONS(7764), + [anon_sym_static] = ACTIONS(7764), + [anon_sym_auto] = ACTIONS(7764), + [anon_sym_register] = ACTIONS(7764), + [anon_sym_inline] = ACTIONS(7764), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7764), + [anon_sym_const] = ACTIONS(7764), + [anon_sym_volatile] = ACTIONS(7764), + [anon_sym_restrict] = ACTIONS(7764), + [anon_sym__Atomic] = ACTIONS(7764), + [anon_sym_in] = ACTIONS(7764), + [anon_sym_out] = ACTIONS(7764), + [anon_sym_inout] = ACTIONS(7764), + [anon_sym_bycopy] = ACTIONS(7764), + [anon_sym_byref] = ACTIONS(7764), + [anon_sym_oneway] = ACTIONS(7764), + [anon_sym__Nullable] = ACTIONS(7764), + [anon_sym__Nonnull] = ACTIONS(7764), + [anon_sym__Nullable_result] = ACTIONS(7764), + [anon_sym__Null_unspecified] = ACTIONS(7764), + [anon_sym___autoreleasing] = ACTIONS(7764), + [anon_sym___nullable] = ACTIONS(7764), + [anon_sym___nonnull] = ACTIONS(7764), + [anon_sym___strong] = ACTIONS(7764), + [anon_sym___weak] = ACTIONS(7764), + [anon_sym___bridge] = ACTIONS(7764), + [anon_sym___bridge_transfer] = ACTIONS(7764), + [anon_sym___bridge_retained] = ACTIONS(7764), + [anon_sym___unsafe_unretained] = ACTIONS(7764), + [anon_sym___block] = ACTIONS(7764), + [anon_sym___kindof] = ACTIONS(7764), + [anon_sym___unused] = ACTIONS(7764), + [anon_sym__Complex] = ACTIONS(7764), + [anon_sym___complex] = ACTIONS(7764), + [anon_sym_IBOutlet] = ACTIONS(7764), + [anon_sym_IBInspectable] = ACTIONS(7764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7764), + [anon_sym_signed] = ACTIONS(7764), + [anon_sym_unsigned] = ACTIONS(7764), + [anon_sym_long] = ACTIONS(7764), + [anon_sym_short] = ACTIONS(7764), + [sym_primitive_type] = ACTIONS(7764), + [anon_sym_enum] = ACTIONS(7764), + [anon_sym_struct] = ACTIONS(7764), + [anon_sym_union] = ACTIONS(7764), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(7851), + [anon_sym_ATinterface] = ACTIONS(7769), + [sym_method_attribute_specifier] = ACTIONS(7766), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7766), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7766), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7766), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7766), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7766), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7766), + [anon_sym_NS_AVAILABLE] = ACTIONS(7766), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7766), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_API_AVAILABLE] = ACTIONS(7766), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7766), + [anon_sym_API_DEPRECATED] = ACTIONS(7766), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7766), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7766), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7766), + [anon_sym___deprecated_msg] = ACTIONS(7766), + [anon_sym___deprecated_enum_msg] = ACTIONS(7766), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7766), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7766), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7766), + [anon_sym_NS_ENUM] = ACTIONS(7764), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7764), + [anon_sym_NS_OPTIONS] = ACTIONS(7764), + [anon_sym_typeof] = ACTIONS(7764), + [anon_sym___typeof] = ACTIONS(7764), + [anon_sym___typeof__] = ACTIONS(7764), + [sym_id] = ACTIONS(7764), + [sym_instancetype] = ACTIONS(7764), + [sym_Class] = ACTIONS(7764), + [sym_SEL] = ACTIONS(7764), + [sym_IMP] = ACTIONS(7764), + [sym_BOOL] = ACTIONS(7764), + [sym_auto] = ACTIONS(7764), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3308] = { + [sym_identifier] = ACTIONS(7853), + [anon_sym_extern] = ACTIONS(7853), + [anon_sym___attribute] = ACTIONS(7853), + [anon_sym___attribute__] = ACTIONS(7853), + [anon_sym___declspec] = ACTIONS(7853), + [anon_sym_LBRACE] = ACTIONS(7855), + [anon_sym_static] = ACTIONS(7853), + [anon_sym_auto] = ACTIONS(7853), + [anon_sym_register] = ACTIONS(7853), + [anon_sym_inline] = ACTIONS(7853), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7853), + [anon_sym_const] = ACTIONS(7853), + [anon_sym_volatile] = ACTIONS(7853), + [anon_sym_restrict] = ACTIONS(7853), + [anon_sym__Atomic] = ACTIONS(7853), + [anon_sym_in] = ACTIONS(7853), + [anon_sym_out] = ACTIONS(7853), + [anon_sym_inout] = ACTIONS(7853), + [anon_sym_bycopy] = ACTIONS(7853), + [anon_sym_byref] = ACTIONS(7853), + [anon_sym_oneway] = ACTIONS(7853), + [anon_sym__Nullable] = ACTIONS(7853), + [anon_sym__Nonnull] = ACTIONS(7853), + [anon_sym__Nullable_result] = ACTIONS(7853), + [anon_sym__Null_unspecified] = ACTIONS(7853), + [anon_sym___autoreleasing] = ACTIONS(7853), + [anon_sym___nullable] = ACTIONS(7853), + [anon_sym___nonnull] = ACTIONS(7853), + [anon_sym___strong] = ACTIONS(7853), + [anon_sym___weak] = ACTIONS(7853), + [anon_sym___bridge] = ACTIONS(7853), + [anon_sym___bridge_transfer] = ACTIONS(7853), + [anon_sym___bridge_retained] = ACTIONS(7853), + [anon_sym___unsafe_unretained] = ACTIONS(7853), + [anon_sym___block] = ACTIONS(7853), + [anon_sym___kindof] = ACTIONS(7853), + [anon_sym___unused] = ACTIONS(7853), + [anon_sym__Complex] = ACTIONS(7853), + [anon_sym___complex] = ACTIONS(7853), + [anon_sym_IBOutlet] = ACTIONS(7853), + [anon_sym_IBInspectable] = ACTIONS(7853), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7853), + [anon_sym_signed] = ACTIONS(7853), + [anon_sym_unsigned] = ACTIONS(7853), + [anon_sym_long] = ACTIONS(7853), + [anon_sym_short] = ACTIONS(7853), + [sym_primitive_type] = ACTIONS(7853), + [anon_sym_enum] = ACTIONS(7853), + [anon_sym_struct] = ACTIONS(7853), + [anon_sym_union] = ACTIONS(7853), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7853), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7853), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7853), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7853), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7853), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7853), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7853), + [anon_sym_NS_AVAILABLE] = ACTIONS(7853), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7853), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7853), + [anon_sym_API_AVAILABLE] = ACTIONS(7853), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7853), + [anon_sym_API_DEPRECATED] = ACTIONS(7853), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7853), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7853), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7853), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7853), + [anon_sym___deprecated_msg] = ACTIONS(7853), + [anon_sym___deprecated_enum_msg] = ACTIONS(7853), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7853), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7853), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7853), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7853), + [anon_sym_NS_ENUM] = ACTIONS(7853), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7853), + [anon_sym_NS_OPTIONS] = ACTIONS(7853), + [anon_sym_typeof] = ACTIONS(7853), + [anon_sym___typeof] = ACTIONS(7853), + [anon_sym___typeof__] = ACTIONS(7853), + [sym_id] = ACTIONS(7853), + [sym_instancetype] = ACTIONS(7853), + [sym_Class] = ACTIONS(7853), + [sym_SEL] = ACTIONS(7853), + [sym_IMP] = ACTIONS(7853), + [sym_BOOL] = ACTIONS(7853), + [sym_auto] = ACTIONS(7853), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3309] = { + [sym_identifier] = ACTIONS(7764), + [anon_sym_CARET] = ACTIONS(7857), + [anon_sym_extern] = ACTIONS(7764), + [anon_sym___attribute] = ACTIONS(7764), + [anon_sym___attribute__] = ACTIONS(7764), + [anon_sym___declspec] = ACTIONS(7764), + [anon_sym_static] = ACTIONS(7764), + [anon_sym_auto] = ACTIONS(7764), + [anon_sym_register] = ACTIONS(7764), + [anon_sym_inline] = ACTIONS(7764), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7764), + [anon_sym_const] = ACTIONS(7764), + [anon_sym_volatile] = ACTIONS(7764), + [anon_sym_restrict] = ACTIONS(7764), + [anon_sym__Atomic] = ACTIONS(7764), + [anon_sym_in] = ACTIONS(7764), + [anon_sym_out] = ACTIONS(7764), + [anon_sym_inout] = ACTIONS(7764), + [anon_sym_bycopy] = ACTIONS(7764), + [anon_sym_byref] = ACTIONS(7764), + [anon_sym_oneway] = ACTIONS(7764), + [anon_sym__Nullable] = ACTIONS(7764), + [anon_sym__Nonnull] = ACTIONS(7764), + [anon_sym__Nullable_result] = ACTIONS(7764), + [anon_sym__Null_unspecified] = ACTIONS(7764), + [anon_sym___autoreleasing] = ACTIONS(7764), + [anon_sym___nullable] = ACTIONS(7764), + [anon_sym___nonnull] = ACTIONS(7764), + [anon_sym___strong] = ACTIONS(7764), + [anon_sym___weak] = ACTIONS(7764), + [anon_sym___bridge] = ACTIONS(7764), + [anon_sym___bridge_transfer] = ACTIONS(7764), + [anon_sym___bridge_retained] = ACTIONS(7764), + [anon_sym___unsafe_unretained] = ACTIONS(7764), + [anon_sym___block] = ACTIONS(7764), + [anon_sym___kindof] = ACTIONS(7764), + [anon_sym___unused] = ACTIONS(7764), + [anon_sym__Complex] = ACTIONS(7764), + [anon_sym___complex] = ACTIONS(7764), + [anon_sym_IBOutlet] = ACTIONS(7764), + [anon_sym_IBInspectable] = ACTIONS(7764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7764), + [anon_sym_signed] = ACTIONS(7764), + [anon_sym_unsigned] = ACTIONS(7764), + [anon_sym_long] = ACTIONS(7764), + [anon_sym_short] = ACTIONS(7764), + [sym_primitive_type] = ACTIONS(7764), + [anon_sym_enum] = ACTIONS(7764), + [anon_sym_struct] = ACTIONS(7764), + [anon_sym_union] = ACTIONS(7764), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7764), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7764), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7764), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7764), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7764), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7764), + [anon_sym_NS_AVAILABLE] = ACTIONS(7764), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7764), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_API_AVAILABLE] = ACTIONS(7764), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_API_DEPRECATED] = ACTIONS(7764), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7764), + [anon_sym___deprecated_msg] = ACTIONS(7764), + [anon_sym___deprecated_enum_msg] = ACTIONS(7764), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_NS_ENUM] = ACTIONS(7764), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7764), + [anon_sym_NS_OPTIONS] = ACTIONS(7764), + [anon_sym_typeof] = ACTIONS(7764), + [anon_sym___typeof] = ACTIONS(7764), + [anon_sym___typeof__] = ACTIONS(7764), + [sym_id] = ACTIONS(7764), + [sym_instancetype] = ACTIONS(7764), + [sym_Class] = ACTIONS(7764), + [sym_SEL] = ACTIONS(7764), + [sym_IMP] = ACTIONS(7764), + [sym_BOOL] = ACTIONS(7764), + [sym_auto] = ACTIONS(7764), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3310] = { + [sym_ms_based_modifier] = STATE(5835), + [sym_ms_unaligned_ptr_modifier] = STATE(4023), + [sym_ms_pointer_modifier] = STATE(3903), + [sym__declarator] = STATE(4126), + [sym__abstract_declarator] = STATE(4280), + [sym_parenthesized_declarator] = STATE(3790), + [sym_abstract_parenthesized_declarator] = STATE(4310), + [sym_pointer_declarator] = STATE(3790), + [sym_abstract_pointer_declarator] = STATE(4310), + [sym_function_declarator] = STATE(3790), + [sym_abstract_function_declarator] = STATE(4310), + [sym_array_declarator] = STATE(3790), + [sym_abstract_array_declarator] = STATE(4310), + [sym_type_qualifier] = STATE(3333), + [sym_parameter_list] = STATE(4311), + [sym_block_abstract_declarator] = STATE(4310), + [sym_block_declarator] = STATE(3790), + [aux_sym_type_definition_repeat1] = STATE(3333), + [aux_sym_pointer_declarator_repeat1] = STATE(3903), + [sym_identifier] = ACTIONS(7859), + [anon_sym_RPAREN] = ACTIONS(7861), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_STAR] = ACTIONS(7863), + [anon_sym___attribute] = ACTIONS(7865), + [anon_sym___attribute__] = ACTIONS(7865), + [anon_sym___based] = ACTIONS(6477), + [sym_ms_restrict_modifier] = ACTIONS(7867), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7867), + [sym_ms_signed_ptr_modifier] = ACTIONS(7867), + [anon_sym__unaligned] = ACTIONS(7869), + [anon_sym___unaligned] = ACTIONS(7869), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7865), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7865), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7865), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7865), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7865), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7865), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7865), + [anon_sym_NS_AVAILABLE] = ACTIONS(7865), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7865), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7865), + [anon_sym_API_AVAILABLE] = ACTIONS(7865), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7865), + [anon_sym_API_DEPRECATED] = ACTIONS(7865), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7865), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7865), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7865), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7865), + [anon_sym___deprecated_msg] = ACTIONS(7865), + [anon_sym___deprecated_enum_msg] = ACTIONS(7865), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7865), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7865), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7865), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7865), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3311] = { + [sym_identifier] = ACTIONS(7764), + [anon_sym_CARET] = ACTIONS(7873), + [anon_sym_extern] = ACTIONS(7764), + [anon_sym___attribute] = ACTIONS(7764), + [anon_sym___attribute__] = ACTIONS(7764), + [anon_sym___declspec] = ACTIONS(7764), + [anon_sym_static] = ACTIONS(7764), + [anon_sym_auto] = ACTIONS(7764), + [anon_sym_register] = ACTIONS(7764), + [anon_sym_inline] = ACTIONS(7764), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7764), + [anon_sym_const] = ACTIONS(7764), + [anon_sym_volatile] = ACTIONS(7764), + [anon_sym_restrict] = ACTIONS(7764), + [anon_sym__Atomic] = ACTIONS(7764), + [anon_sym_in] = ACTIONS(7764), + [anon_sym_out] = ACTIONS(7764), + [anon_sym_inout] = ACTIONS(7764), + [anon_sym_bycopy] = ACTIONS(7764), + [anon_sym_byref] = ACTIONS(7764), + [anon_sym_oneway] = ACTIONS(7764), + [anon_sym__Nullable] = ACTIONS(7764), + [anon_sym__Nonnull] = ACTIONS(7764), + [anon_sym__Nullable_result] = ACTIONS(7764), + [anon_sym__Null_unspecified] = ACTIONS(7764), + [anon_sym___autoreleasing] = ACTIONS(7764), + [anon_sym___nullable] = ACTIONS(7764), + [anon_sym___nonnull] = ACTIONS(7764), + [anon_sym___strong] = ACTIONS(7764), + [anon_sym___weak] = ACTIONS(7764), + [anon_sym___bridge] = ACTIONS(7764), + [anon_sym___bridge_transfer] = ACTIONS(7764), + [anon_sym___bridge_retained] = ACTIONS(7764), + [anon_sym___unsafe_unretained] = ACTIONS(7764), + [anon_sym___block] = ACTIONS(7764), + [anon_sym___kindof] = ACTIONS(7764), + [anon_sym___unused] = ACTIONS(7764), + [anon_sym__Complex] = ACTIONS(7764), + [anon_sym___complex] = ACTIONS(7764), + [anon_sym_IBOutlet] = ACTIONS(7764), + [anon_sym_IBInspectable] = ACTIONS(7764), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7764), + [anon_sym_signed] = ACTIONS(7764), + [anon_sym_unsigned] = ACTIONS(7764), + [anon_sym_long] = ACTIONS(7764), + [anon_sym_short] = ACTIONS(7764), + [sym_primitive_type] = ACTIONS(7764), + [anon_sym_enum] = ACTIONS(7764), + [anon_sym_struct] = ACTIONS(7764), + [anon_sym_union] = ACTIONS(7764), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7764), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7764), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7764), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7764), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7764), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7764), + [anon_sym_NS_AVAILABLE] = ACTIONS(7764), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7764), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_API_AVAILABLE] = ACTIONS(7764), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_API_DEPRECATED] = ACTIONS(7764), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7764), + [anon_sym___deprecated_msg] = ACTIONS(7764), + [anon_sym___deprecated_enum_msg] = ACTIONS(7764), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7764), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7764), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7764), + [anon_sym_NS_ENUM] = ACTIONS(7764), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7764), + [anon_sym_NS_OPTIONS] = ACTIONS(7764), + [anon_sym_typeof] = ACTIONS(7764), + [anon_sym___typeof] = ACTIONS(7764), + [anon_sym___typeof__] = ACTIONS(7764), + [sym_id] = ACTIONS(7764), + [sym_instancetype] = ACTIONS(7764), + [sym_Class] = ACTIONS(7764), + [sym_SEL] = ACTIONS(7764), + [sym_IMP] = ACTIONS(7764), + [sym_BOOL] = ACTIONS(7764), + [sym_auto] = ACTIONS(7764), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3312] = { + [sym_identifier] = ACTIONS(7875), + [anon_sym_extern] = ACTIONS(7875), + [anon_sym___attribute] = ACTIONS(7875), + [anon_sym___attribute__] = ACTIONS(7875), + [anon_sym___declspec] = ACTIONS(7875), + [anon_sym_static] = ACTIONS(7875), + [anon_sym_auto] = ACTIONS(7875), + [anon_sym_register] = ACTIONS(7875), + [anon_sym_inline] = ACTIONS(7875), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7875), + [anon_sym_const] = ACTIONS(7875), + [anon_sym_volatile] = ACTIONS(7875), + [anon_sym_restrict] = ACTIONS(7875), + [anon_sym__Atomic] = ACTIONS(7875), + [anon_sym_in] = ACTIONS(7875), + [anon_sym_out] = ACTIONS(7875), + [anon_sym_inout] = ACTIONS(7875), + [anon_sym_bycopy] = ACTIONS(7875), + [anon_sym_byref] = ACTIONS(7875), + [anon_sym_oneway] = ACTIONS(7875), + [anon_sym__Nullable] = ACTIONS(7875), + [anon_sym__Nonnull] = ACTIONS(7875), + [anon_sym__Nullable_result] = ACTIONS(7875), + [anon_sym__Null_unspecified] = ACTIONS(7875), + [anon_sym___autoreleasing] = ACTIONS(7875), + [anon_sym___nullable] = ACTIONS(7875), + [anon_sym___nonnull] = ACTIONS(7875), + [anon_sym___strong] = ACTIONS(7875), + [anon_sym___weak] = ACTIONS(7875), + [anon_sym___bridge] = ACTIONS(7875), + [anon_sym___bridge_transfer] = ACTIONS(7875), + [anon_sym___bridge_retained] = ACTIONS(7875), + [anon_sym___unsafe_unretained] = ACTIONS(7875), + [anon_sym___block] = ACTIONS(7875), + [anon_sym___kindof] = ACTIONS(7875), + [anon_sym___unused] = ACTIONS(7875), + [anon_sym__Complex] = ACTIONS(7875), + [anon_sym___complex] = ACTIONS(7875), + [anon_sym_IBOutlet] = ACTIONS(7875), + [anon_sym_IBInspectable] = ACTIONS(7875), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7875), + [anon_sym_signed] = ACTIONS(7875), + [anon_sym_unsigned] = ACTIONS(7875), + [anon_sym_long] = ACTIONS(7875), + [anon_sym_short] = ACTIONS(7875), + [sym_primitive_type] = ACTIONS(7875), + [anon_sym_enum] = ACTIONS(7875), + [anon_sym_struct] = ACTIONS(7875), + [anon_sym_union] = ACTIONS(7875), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7875), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7875), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7875), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7875), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7875), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7875), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7875), + [anon_sym_NS_AVAILABLE] = ACTIONS(7875), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7875), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7875), + [anon_sym_API_AVAILABLE] = ACTIONS(7875), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7875), + [anon_sym_API_DEPRECATED] = ACTIONS(7875), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7875), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7875), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7875), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7875), + [anon_sym___deprecated_msg] = ACTIONS(7875), + [anon_sym___deprecated_enum_msg] = ACTIONS(7875), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7875), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7875), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7875), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7875), + [anon_sym_NS_ENUM] = ACTIONS(7875), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7875), + [anon_sym_NS_OPTIONS] = ACTIONS(7875), + [anon_sym_typeof] = ACTIONS(7875), + [anon_sym___typeof] = ACTIONS(7875), + [anon_sym___typeof__] = ACTIONS(7875), + [sym_id] = ACTIONS(7875), + [sym_instancetype] = ACTIONS(7875), + [sym_Class] = ACTIONS(7875), + [sym_SEL] = ACTIONS(7875), + [sym_IMP] = ACTIONS(7875), + [sym_BOOL] = ACTIONS(7875), + [sym_auto] = ACTIONS(7875), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3313] = { + [sym_ms_based_modifier] = STATE(5659), + [sym_ms_unaligned_ptr_modifier] = STATE(4023), + [sym_ms_pointer_modifier] = STATE(3893), + [sym__declarator] = STATE(3839), + [sym__abstract_declarator] = STATE(4436), + [sym_parenthesized_declarator] = STATE(3790), + [sym_abstract_parenthesized_declarator] = STATE(4310), + [sym_pointer_declarator] = STATE(3790), + [sym_abstract_pointer_declarator] = STATE(4310), + [sym_function_declarator] = STATE(3790), + [sym_abstract_function_declarator] = STATE(4310), + [sym_array_declarator] = STATE(3790), + [sym_abstract_array_declarator] = STATE(4310), + [sym_type_qualifier] = STATE(3339), + [sym_parameter_list] = STATE(4311), + [sym_block_abstract_declarator] = STATE(4310), + [sym_block_declarator] = STATE(3790), + [aux_sym_type_definition_repeat1] = STATE(3339), + [aux_sym_pointer_declarator_repeat1] = STATE(3893), + [sym_identifier] = ACTIONS(7859), + [anon_sym_LPAREN2] = ACTIONS(7877), + [anon_sym_STAR] = ACTIONS(7879), + [anon_sym___attribute] = ACTIONS(7865), + [anon_sym___attribute__] = ACTIONS(7865), + [anon_sym___based] = ACTIONS(6477), + [sym_ms_restrict_modifier] = ACTIONS(7867), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7867), + [sym_ms_signed_ptr_modifier] = ACTIONS(7867), + [anon_sym__unaligned] = ACTIONS(7869), + [anon_sym___unaligned] = ACTIONS(7869), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7865), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7865), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7865), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7865), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7865), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7865), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7865), + [anon_sym_NS_AVAILABLE] = ACTIONS(7865), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7865), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7865), + [anon_sym_API_AVAILABLE] = ACTIONS(7865), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7865), + [anon_sym_API_DEPRECATED] = ACTIONS(7865), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7865), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7865), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7865), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7865), + [anon_sym___deprecated_msg] = ACTIONS(7865), + [anon_sym___deprecated_enum_msg] = ACTIONS(7865), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7865), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7865), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7865), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7865), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3314] = { + [sym_identifier] = ACTIONS(7831), + [anon_sym_extern] = ACTIONS(7831), + [anon_sym___attribute] = ACTIONS(7831), + [anon_sym___attribute__] = ACTIONS(7831), + [anon_sym___declspec] = ACTIONS(7831), + [anon_sym_static] = ACTIONS(7831), + [anon_sym_auto] = ACTIONS(7831), + [anon_sym_register] = ACTIONS(7831), + [anon_sym_inline] = ACTIONS(7831), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7831), + [anon_sym_const] = ACTIONS(7831), + [anon_sym_volatile] = ACTIONS(7831), + [anon_sym_restrict] = ACTIONS(7831), + [anon_sym__Atomic] = ACTIONS(7831), + [anon_sym_in] = ACTIONS(7831), + [anon_sym_out] = ACTIONS(7831), + [anon_sym_inout] = ACTIONS(7831), + [anon_sym_bycopy] = ACTIONS(7831), + [anon_sym_byref] = ACTIONS(7831), + [anon_sym_oneway] = ACTIONS(7831), + [anon_sym__Nullable] = ACTIONS(7831), + [anon_sym__Nonnull] = ACTIONS(7831), + [anon_sym__Nullable_result] = ACTIONS(7831), + [anon_sym__Null_unspecified] = ACTIONS(7831), + [anon_sym___autoreleasing] = ACTIONS(7831), + [anon_sym___nullable] = ACTIONS(7831), + [anon_sym___nonnull] = ACTIONS(7831), + [anon_sym___strong] = ACTIONS(7831), + [anon_sym___weak] = ACTIONS(7831), + [anon_sym___bridge] = ACTIONS(7831), + [anon_sym___bridge_transfer] = ACTIONS(7831), + [anon_sym___bridge_retained] = ACTIONS(7831), + [anon_sym___unsafe_unretained] = ACTIONS(7831), + [anon_sym___block] = ACTIONS(7831), + [anon_sym___kindof] = ACTIONS(7831), + [anon_sym___unused] = ACTIONS(7831), + [anon_sym__Complex] = ACTIONS(7831), + [anon_sym___complex] = ACTIONS(7831), + [anon_sym_IBOutlet] = ACTIONS(7831), + [anon_sym_IBInspectable] = ACTIONS(7831), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7831), + [anon_sym_signed] = ACTIONS(7831), + [anon_sym_unsigned] = ACTIONS(7831), + [anon_sym_long] = ACTIONS(7831), + [anon_sym_short] = ACTIONS(7831), + [sym_primitive_type] = ACTIONS(7831), + [anon_sym_enum] = ACTIONS(7831), + [anon_sym_struct] = ACTIONS(7831), + [anon_sym_union] = ACTIONS(7831), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7831), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7831), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7831), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7831), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7831), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7831), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7831), + [anon_sym_NS_AVAILABLE] = ACTIONS(7831), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7831), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_API_AVAILABLE] = ACTIONS(7831), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7831), + [anon_sym_API_DEPRECATED] = ACTIONS(7831), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7831), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7831), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7831), + [anon_sym___deprecated_msg] = ACTIONS(7831), + [anon_sym___deprecated_enum_msg] = ACTIONS(7831), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7831), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7831), + [anon_sym_NS_ENUM] = ACTIONS(7831), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7831), + [anon_sym_NS_OPTIONS] = ACTIONS(7831), + [anon_sym_typeof] = ACTIONS(7831), + [anon_sym___typeof] = ACTIONS(7831), + [anon_sym___typeof__] = ACTIONS(7831), + [sym_id] = ACTIONS(7831), + [sym_instancetype] = ACTIONS(7831), + [sym_Class] = ACTIONS(7831), + [sym_SEL] = ACTIONS(7831), + [sym_IMP] = ACTIONS(7831), + [sym_BOOL] = ACTIONS(7831), + [sym_auto] = ACTIONS(7831), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3315] = { + [sym_ms_based_modifier] = STATE(5666), + [sym_ms_unaligned_ptr_modifier] = STATE(4023), + [sym_ms_pointer_modifier] = STATE(3891), + [sym__declarator] = STATE(4411), + [sym__abstract_declarator] = STATE(4436), + [sym_parenthesized_declarator] = STATE(4472), + [sym_abstract_parenthesized_declarator] = STATE(4310), + [sym_pointer_declarator] = STATE(4472), + [sym_abstract_pointer_declarator] = STATE(4310), + [sym_function_declarator] = STATE(4472), + [sym_abstract_function_declarator] = STATE(4310), + [sym_array_declarator] = STATE(4472), + [sym_abstract_array_declarator] = STATE(4310), + [sym_type_qualifier] = STATE(3338), + [sym_parameter_list] = STATE(4311), + [sym_block_abstract_declarator] = STATE(4310), + [sym_block_declarator] = STATE(4472), + [aux_sym_type_definition_repeat1] = STATE(3338), + [aux_sym_pointer_declarator_repeat1] = STATE(3891), + [sym_identifier] = ACTIONS(7881), + [anon_sym_LPAREN2] = ACTIONS(7883), + [anon_sym_STAR] = ACTIONS(7885), + [anon_sym___attribute] = ACTIONS(7865), + [anon_sym___attribute__] = ACTIONS(7865), + [anon_sym___based] = ACTIONS(6477), + [sym_ms_restrict_modifier] = ACTIONS(7867), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7867), + [sym_ms_signed_ptr_modifier] = ACTIONS(7867), + [anon_sym__unaligned] = ACTIONS(7869), + [anon_sym___unaligned] = ACTIONS(7869), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7865), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7865), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7865), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7865), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7865), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7865), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7865), + [anon_sym_NS_AVAILABLE] = ACTIONS(7865), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7865), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7865), + [anon_sym_API_AVAILABLE] = ACTIONS(7865), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7865), + [anon_sym_API_DEPRECATED] = ACTIONS(7865), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7865), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7865), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7865), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7865), + [anon_sym___deprecated_msg] = ACTIONS(7865), + [anon_sym___deprecated_enum_msg] = ACTIONS(7865), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7865), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7865), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7865), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7865), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3316] = { + [sym_argument_list] = STATE(3012), + [anon_sym_COMMA] = ACTIONS(7887), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(7781), + [anon_sym_PLUS] = ACTIONS(7781), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7785), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(7819), + [anon_sym_AMP_AMP] = ACTIONS(7787), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7791), + [anon_sym_AMP] = ACTIONS(7793), + [anon_sym_EQ_EQ] = ACTIONS(7795), + [anon_sym_BANG_EQ] = ACTIONS(7795), + [anon_sym_GT] = ACTIONS(7797), + [anon_sym_GT_EQ] = ACTIONS(7799), + [anon_sym_LT_EQ] = ACTIONS(7799), + [anon_sym_LT] = ACTIONS(7797), + [anon_sym_LT_LT] = ACTIONS(7801), + [anon_sym_GT_GT] = ACTIONS(7801), + [anon_sym_SEMI] = ACTIONS(7887), + [anon_sym___attribute] = ACTIONS(7889), + [anon_sym___attribute__] = ACTIONS(7887), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_const] = ACTIONS(7887), + [anon_sym_volatile] = ACTIONS(7887), + [anon_sym_restrict] = ACTIONS(7887), + [anon_sym__Atomic] = ACTIONS(7887), + [anon_sym_in] = ACTIONS(7889), + [anon_sym_out] = ACTIONS(7887), + [anon_sym_inout] = ACTIONS(7887), + [anon_sym_bycopy] = ACTIONS(7887), + [anon_sym_byref] = ACTIONS(7887), + [anon_sym_oneway] = ACTIONS(7887), + [anon_sym__Nullable] = ACTIONS(7889), + [anon_sym__Nonnull] = ACTIONS(7887), + [anon_sym__Nullable_result] = ACTIONS(7887), + [anon_sym__Null_unspecified] = ACTIONS(7887), + [anon_sym___autoreleasing] = ACTIONS(7887), + [anon_sym___nullable] = ACTIONS(7887), + [anon_sym___nonnull] = ACTIONS(7887), + [anon_sym___strong] = ACTIONS(7887), + [anon_sym___weak] = ACTIONS(7887), + [anon_sym___bridge] = ACTIONS(7889), + [anon_sym___bridge_transfer] = ACTIONS(7887), + [anon_sym___bridge_retained] = ACTIONS(7887), + [anon_sym___unsafe_unretained] = ACTIONS(7887), + [anon_sym___block] = ACTIONS(7887), + [anon_sym___kindof] = ACTIONS(7887), + [anon_sym___unused] = ACTIONS(7887), + [anon_sym__Complex] = ACTIONS(7887), + [anon_sym___complex] = ACTIONS(7887), + [anon_sym_IBOutlet] = ACTIONS(7887), + [anon_sym_IBInspectable] = ACTIONS(7887), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7887), + [anon_sym_QMARK] = ACTIONS(7821), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7887), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7887), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7887), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7887), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7887), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7887), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7887), + [anon_sym_NS_AVAILABLE] = ACTIONS(7889), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7887), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7887), + [anon_sym_API_AVAILABLE] = ACTIONS(7887), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7887), + [anon_sym_API_DEPRECATED] = ACTIONS(7887), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7887), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7887), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7887), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7887), + [anon_sym___deprecated_msg] = ACTIONS(7887), + [anon_sym___deprecated_enum_msg] = ACTIONS(7887), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7887), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7887), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7887), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7887), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3317] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3317), [sym_identifier] = ACTIONS(7891), + [anon_sym_COMMA] = ACTIONS(7893), [anon_sym_RPAREN] = ACTIONS(7893), - [anon_sym_CARET] = ACTIONS(7893), + [anon_sym_LPAREN2] = ACTIONS(7893), + [anon_sym_STAR] = ACTIONS(7893), [anon_sym_SEMI] = ACTIONS(7893), [anon_sym_extern] = ACTIONS(7891), [anon_sym___attribute] = ACTIONS(7891), [anon_sym___attribute__] = ACTIONS(7891), [anon_sym___declspec] = ACTIONS(7891), + [anon_sym___based] = ACTIONS(7891), + [anon_sym_LBRACE] = ACTIONS(7893), + [anon_sym_LBRACK] = ACTIONS(7893), [anon_sym_static] = ACTIONS(7891), [anon_sym_auto] = ACTIONS(7891), [anon_sym_register] = ACTIONS(7891), @@ -529298,17 +522207,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_IBOutlet] = ACTIONS(7891), [anon_sym_IBInspectable] = ACTIONS(7891), [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7891), - [anon_sym_signed] = ACTIONS(7891), - [anon_sym_unsigned] = ACTIONS(7891), - [anon_sym_long] = ACTIONS(7891), - [anon_sym_short] = ACTIONS(7891), + [anon_sym_signed] = ACTIONS(7895), + [anon_sym_unsigned] = ACTIONS(7895), + [anon_sym_long] = ACTIONS(7895), + [anon_sym_short] = ACTIONS(7895), [sym_primitive_type] = ACTIONS(7891), - [anon_sym_enum] = ACTIONS(7891), - [anon_sym_NS_ENUM] = ACTIONS(7891), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7891), - [anon_sym_NS_OPTIONS] = ACTIONS(7891), - [anon_sym_struct] = ACTIONS(7891), - [anon_sym_union] = ACTIONS(7891), + [anon_sym_COLON] = ACTIONS(7893), [sym_comment] = ACTIONS(3), [sym_method_attribute_specifier] = ACTIONS(7891), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7891), @@ -529333,16 +522237,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7891), [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7891), [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7891), - [anon_sym_typeof] = ACTIONS(7891), - [anon_sym___typeof] = ACTIONS(7891), - [anon_sym___typeof__] = ACTIONS(7891), - [sym_id] = ACTIONS(7891), - [sym_instancetype] = ACTIONS(7891), - [sym_Class] = ACTIONS(7891), - [sym_SEL] = ACTIONS(7891), - [sym_IMP] = ACTIONS(7891), - [sym_BOOL] = ACTIONS(7891), - [sym_auto] = ACTIONS(7891), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -529350,95 +522244,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3364] = { - [sym_identifier] = ACTIONS(7788), - [anon_sym_extern] = ACTIONS(7788), - [anon_sym___attribute] = ACTIONS(7790), - [anon_sym___attribute__] = ACTIONS(7790), - [anon_sym___declspec] = ACTIONS(7788), - [anon_sym_static] = ACTIONS(7788), - [anon_sym_auto] = ACTIONS(7788), - [anon_sym_register] = ACTIONS(7788), - [anon_sym_inline] = ACTIONS(7788), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7788), - [anon_sym_const] = ACTIONS(7788), - [anon_sym_volatile] = ACTIONS(7788), - [anon_sym_restrict] = ACTIONS(7788), - [anon_sym__Atomic] = ACTIONS(7788), - [anon_sym_in] = ACTIONS(7788), - [anon_sym_out] = ACTIONS(7788), - [anon_sym_inout] = ACTIONS(7788), - [anon_sym_bycopy] = ACTIONS(7788), - [anon_sym_byref] = ACTIONS(7788), - [anon_sym_oneway] = ACTIONS(7788), - [anon_sym__Nullable] = ACTIONS(7788), - [anon_sym__Nonnull] = ACTIONS(7788), - [anon_sym__Nullable_result] = ACTIONS(7788), - [anon_sym__Null_unspecified] = ACTIONS(7788), - [anon_sym___autoreleasing] = ACTIONS(7788), - [anon_sym___nullable] = ACTIONS(7788), - [anon_sym___nonnull] = ACTIONS(7788), - [anon_sym___strong] = ACTIONS(7788), - [anon_sym___weak] = ACTIONS(7788), - [anon_sym___bridge] = ACTIONS(7788), - [anon_sym___bridge_transfer] = ACTIONS(7788), - [anon_sym___bridge_retained] = ACTIONS(7788), - [anon_sym___unsafe_unretained] = ACTIONS(7788), - [anon_sym___block] = ACTIONS(7788), - [anon_sym___kindof] = ACTIONS(7788), - [anon_sym___unused] = ACTIONS(7788), - [anon_sym__Complex] = ACTIONS(7788), - [anon_sym___complex] = ACTIONS(7788), - [anon_sym_IBOutlet] = ACTIONS(7788), - [anon_sym_IBInspectable] = ACTIONS(7788), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7788), - [anon_sym_signed] = ACTIONS(7788), - [anon_sym_unsigned] = ACTIONS(7788), - [anon_sym_long] = ACTIONS(7788), - [anon_sym_short] = ACTIONS(7788), - [sym_primitive_type] = ACTIONS(7788), - [anon_sym_enum] = ACTIONS(7788), - [anon_sym_NS_ENUM] = ACTIONS(7788), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7788), - [anon_sym_NS_OPTIONS] = ACTIONS(7788), - [anon_sym_struct] = ACTIONS(7788), - [anon_sym_union] = ACTIONS(7788), + [3318] = { + [sym_attribute_specifier] = STATE(3324), + [sym_ms_declspec_modifier] = STATE(3324), + [sym_storage_class_specifier] = STATE(3324), + [sym_type_qualifier] = STATE(3324), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3534), + [sym_availability_attribute_specifier] = STATE(3534), + [aux_sym__declaration_specifiers_repeat1] = STATE(3324), + [sym_identifier] = ACTIONS(7898), + [anon_sym_COMMA] = ACTIONS(7900), + [anon_sym_RPAREN] = ACTIONS(7900), + [anon_sym_LPAREN2] = ACTIONS(7900), + [anon_sym_STAR] = ACTIONS(7900), + [anon_sym_SEMI] = ACTIONS(7900), + [anon_sym_extern] = ACTIONS(7902), + [anon_sym___attribute] = ACTIONS(7904), + [anon_sym___attribute__] = ACTIONS(7904), + [anon_sym___declspec] = ACTIONS(7906), + [anon_sym___based] = ACTIONS(7898), + [anon_sym_LBRACK] = ACTIONS(7900), + [anon_sym_static] = ACTIONS(7902), + [anon_sym_auto] = ACTIONS(7902), + [anon_sym_register] = ACTIONS(7902), + [anon_sym_inline] = ACTIONS(7902), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7902), + [anon_sym_const] = ACTIONS(7908), + [anon_sym_volatile] = ACTIONS(7908), + [anon_sym_restrict] = ACTIONS(7908), + [anon_sym__Atomic] = ACTIONS(7908), + [anon_sym_in] = ACTIONS(7908), + [anon_sym_out] = ACTIONS(7908), + [anon_sym_inout] = ACTIONS(7908), + [anon_sym_bycopy] = ACTIONS(7908), + [anon_sym_byref] = ACTIONS(7908), + [anon_sym_oneway] = ACTIONS(7908), + [anon_sym__Nullable] = ACTIONS(7908), + [anon_sym__Nonnull] = ACTIONS(7908), + [anon_sym__Nullable_result] = ACTIONS(7908), + [anon_sym__Null_unspecified] = ACTIONS(7908), + [anon_sym___autoreleasing] = ACTIONS(7908), + [anon_sym___nullable] = ACTIONS(7908), + [anon_sym___nonnull] = ACTIONS(7908), + [anon_sym___strong] = ACTIONS(7908), + [anon_sym___weak] = ACTIONS(7908), + [anon_sym___bridge] = ACTIONS(7908), + [anon_sym___bridge_transfer] = ACTIONS(7908), + [anon_sym___bridge_retained] = ACTIONS(7908), + [anon_sym___unsafe_unretained] = ACTIONS(7908), + [anon_sym___block] = ACTIONS(7908), + [anon_sym___kindof] = ACTIONS(7908), + [anon_sym___unused] = ACTIONS(7908), + [anon_sym__Complex] = ACTIONS(7908), + [anon_sym___complex] = ACTIONS(7908), + [anon_sym_IBOutlet] = ACTIONS(7908), + [anon_sym_IBInspectable] = ACTIONS(7908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7908), + [anon_sym_COLON] = ACTIONS(7900), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(7895), - [anon_sym_ATinterface] = ACTIONS(7793), - [sym_method_attribute_specifier] = ACTIONS(7790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7790), - [anon_sym_NS_AVAILABLE] = ACTIONS(7790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_API_AVAILABLE] = ACTIONS(7790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7790), - [anon_sym_API_DEPRECATED] = ACTIONS(7790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7790), - [anon_sym___deprecated_msg] = ACTIONS(7790), - [anon_sym___deprecated_enum_msg] = ACTIONS(7790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7790), - [anon_sym_typeof] = ACTIONS(7788), - [anon_sym___typeof] = ACTIONS(7788), - [anon_sym___typeof__] = ACTIONS(7788), - [sym_id] = ACTIONS(7788), - [sym_instancetype] = ACTIONS(7788), - [sym_Class] = ACTIONS(7788), - [sym_SEL] = ACTIONS(7788), - [sym_IMP] = ACTIONS(7788), - [sym_BOOL] = ACTIONS(7788), - [sym_auto] = ACTIONS(7788), + [sym_method_attribute_specifier] = ACTIONS(7910), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7914), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7914), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7914), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7914), + [anon_sym_NS_AVAILABLE] = ACTIONS(7916), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7916), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_API_AVAILABLE] = ACTIONS(7916), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7916), + [anon_sym_API_DEPRECATED] = ACTIONS(7916), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7916), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7916), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7916), + [anon_sym___deprecated_msg] = ACTIONS(7916), + [anon_sym___deprecated_enum_msg] = ACTIONS(7916), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7916), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7916), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -529446,95 +522332,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3365] = { - [sym_identifier] = ACTIONS(7788), - [anon_sym_extern] = ACTIONS(7788), - [anon_sym___attribute] = ACTIONS(7790), - [anon_sym___attribute__] = ACTIONS(7790), - [anon_sym___declspec] = ACTIONS(7788), - [anon_sym_static] = ACTIONS(7788), - [anon_sym_auto] = ACTIONS(7788), - [anon_sym_register] = ACTIONS(7788), - [anon_sym_inline] = ACTIONS(7788), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7788), - [anon_sym_const] = ACTIONS(7788), - [anon_sym_volatile] = ACTIONS(7788), - [anon_sym_restrict] = ACTIONS(7788), - [anon_sym__Atomic] = ACTIONS(7788), - [anon_sym_in] = ACTIONS(7788), - [anon_sym_out] = ACTIONS(7788), - [anon_sym_inout] = ACTIONS(7788), - [anon_sym_bycopy] = ACTIONS(7788), - [anon_sym_byref] = ACTIONS(7788), - [anon_sym_oneway] = ACTIONS(7788), - [anon_sym__Nullable] = ACTIONS(7788), - [anon_sym__Nonnull] = ACTIONS(7788), - [anon_sym__Nullable_result] = ACTIONS(7788), - [anon_sym__Null_unspecified] = ACTIONS(7788), - [anon_sym___autoreleasing] = ACTIONS(7788), - [anon_sym___nullable] = ACTIONS(7788), - [anon_sym___nonnull] = ACTIONS(7788), - [anon_sym___strong] = ACTIONS(7788), - [anon_sym___weak] = ACTIONS(7788), - [anon_sym___bridge] = ACTIONS(7788), - [anon_sym___bridge_transfer] = ACTIONS(7788), - [anon_sym___bridge_retained] = ACTIONS(7788), - [anon_sym___unsafe_unretained] = ACTIONS(7788), - [anon_sym___block] = ACTIONS(7788), - [anon_sym___kindof] = ACTIONS(7788), - [anon_sym___unused] = ACTIONS(7788), - [anon_sym__Complex] = ACTIONS(7788), - [anon_sym___complex] = ACTIONS(7788), - [anon_sym_IBOutlet] = ACTIONS(7788), - [anon_sym_IBInspectable] = ACTIONS(7788), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7788), - [anon_sym_signed] = ACTIONS(7788), - [anon_sym_unsigned] = ACTIONS(7788), - [anon_sym_long] = ACTIONS(7788), - [anon_sym_short] = ACTIONS(7788), - [sym_primitive_type] = ACTIONS(7788), - [anon_sym_enum] = ACTIONS(7788), - [anon_sym_NS_ENUM] = ACTIONS(7788), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7788), - [anon_sym_NS_OPTIONS] = ACTIONS(7788), - [anon_sym_struct] = ACTIONS(7788), - [anon_sym_union] = ACTIONS(7788), + [3319] = { + [sym_attribute_specifier] = STATE(3322), + [sym_ms_declspec_modifier] = STATE(3322), + [sym_storage_class_specifier] = STATE(3322), + [sym_type_qualifier] = STATE(3322), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3534), + [sym_availability_attribute_specifier] = STATE(3534), + [aux_sym__declaration_specifiers_repeat1] = STATE(3322), + [sym_identifier] = ACTIONS(7918), + [anon_sym_COMMA] = ACTIONS(7920), + [anon_sym_RPAREN] = ACTIONS(7920), + [anon_sym_LPAREN2] = ACTIONS(7920), + [anon_sym_STAR] = ACTIONS(7920), + [anon_sym_SEMI] = ACTIONS(7920), + [anon_sym_extern] = ACTIONS(7902), + [anon_sym___attribute] = ACTIONS(7904), + [anon_sym___attribute__] = ACTIONS(7904), + [anon_sym___declspec] = ACTIONS(7906), + [anon_sym___based] = ACTIONS(7918), + [anon_sym_LBRACK] = ACTIONS(7920), + [anon_sym_static] = ACTIONS(7902), + [anon_sym_auto] = ACTIONS(7902), + [anon_sym_register] = ACTIONS(7902), + [anon_sym_inline] = ACTIONS(7902), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7902), + [anon_sym_const] = ACTIONS(7908), + [anon_sym_volatile] = ACTIONS(7908), + [anon_sym_restrict] = ACTIONS(7908), + [anon_sym__Atomic] = ACTIONS(7908), + [anon_sym_in] = ACTIONS(7908), + [anon_sym_out] = ACTIONS(7908), + [anon_sym_inout] = ACTIONS(7908), + [anon_sym_bycopy] = ACTIONS(7908), + [anon_sym_byref] = ACTIONS(7908), + [anon_sym_oneway] = ACTIONS(7908), + [anon_sym__Nullable] = ACTIONS(7908), + [anon_sym__Nonnull] = ACTIONS(7908), + [anon_sym__Nullable_result] = ACTIONS(7908), + [anon_sym__Null_unspecified] = ACTIONS(7908), + [anon_sym___autoreleasing] = ACTIONS(7908), + [anon_sym___nullable] = ACTIONS(7908), + [anon_sym___nonnull] = ACTIONS(7908), + [anon_sym___strong] = ACTIONS(7908), + [anon_sym___weak] = ACTIONS(7908), + [anon_sym___bridge] = ACTIONS(7908), + [anon_sym___bridge_transfer] = ACTIONS(7908), + [anon_sym___bridge_retained] = ACTIONS(7908), + [anon_sym___unsafe_unretained] = ACTIONS(7908), + [anon_sym___block] = ACTIONS(7908), + [anon_sym___kindof] = ACTIONS(7908), + [anon_sym___unused] = ACTIONS(7908), + [anon_sym__Complex] = ACTIONS(7908), + [anon_sym___complex] = ACTIONS(7908), + [anon_sym_IBOutlet] = ACTIONS(7908), + [anon_sym_IBInspectable] = ACTIONS(7908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7908), + [anon_sym_COLON] = ACTIONS(7920), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(7897), - [anon_sym_ATinterface] = ACTIONS(7793), - [sym_method_attribute_specifier] = ACTIONS(7790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7790), - [anon_sym_NS_AVAILABLE] = ACTIONS(7790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_API_AVAILABLE] = ACTIONS(7790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7790), - [anon_sym_API_DEPRECATED] = ACTIONS(7790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7790), - [anon_sym___deprecated_msg] = ACTIONS(7790), - [anon_sym___deprecated_enum_msg] = ACTIONS(7790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7790), - [anon_sym_typeof] = ACTIONS(7788), - [anon_sym___typeof] = ACTIONS(7788), - [anon_sym___typeof__] = ACTIONS(7788), - [sym_id] = ACTIONS(7788), - [sym_instancetype] = ACTIONS(7788), - [sym_Class] = ACTIONS(7788), - [sym_SEL] = ACTIONS(7788), - [sym_IMP] = ACTIONS(7788), - [sym_BOOL] = ACTIONS(7788), - [sym_auto] = ACTIONS(7788), + [sym_method_attribute_specifier] = ACTIONS(7910), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7914), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7914), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7914), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7914), + [anon_sym_NS_AVAILABLE] = ACTIONS(7916), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7916), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_API_AVAILABLE] = ACTIONS(7916), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7916), + [anon_sym_API_DEPRECATED] = ACTIONS(7916), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7916), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7916), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7916), + [anon_sym___deprecated_msg] = ACTIONS(7916), + [anon_sym___deprecated_enum_msg] = ACTIONS(7916), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7916), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7916), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -529542,95 +522420,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3366] = { - [sym_identifier] = ACTIONS(7891), - [anon_sym_LPAREN2] = ACTIONS(7899), - [anon_sym_CARET] = ACTIONS(7893), - [anon_sym_extern] = ACTIONS(7891), - [anon_sym___attribute] = ACTIONS(7891), - [anon_sym___attribute__] = ACTIONS(7891), - [anon_sym___declspec] = ACTIONS(7891), - [anon_sym_static] = ACTIONS(7891), - [anon_sym_auto] = ACTIONS(7891), - [anon_sym_register] = ACTIONS(7891), - [anon_sym_inline] = ACTIONS(7891), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7891), - [anon_sym_const] = ACTIONS(7891), - [anon_sym_volatile] = ACTIONS(7891), - [anon_sym_restrict] = ACTIONS(7891), - [anon_sym__Atomic] = ACTIONS(7891), - [anon_sym_in] = ACTIONS(7891), - [anon_sym_out] = ACTIONS(7891), - [anon_sym_inout] = ACTIONS(7891), - [anon_sym_bycopy] = ACTIONS(7891), - [anon_sym_byref] = ACTIONS(7891), - [anon_sym_oneway] = ACTIONS(7891), - [anon_sym__Nullable] = ACTIONS(7891), - [anon_sym__Nonnull] = ACTIONS(7891), - [anon_sym__Nullable_result] = ACTIONS(7891), - [anon_sym__Null_unspecified] = ACTIONS(7891), - [anon_sym___autoreleasing] = ACTIONS(7891), - [anon_sym___nullable] = ACTIONS(7891), - [anon_sym___nonnull] = ACTIONS(7891), - [anon_sym___strong] = ACTIONS(7891), - [anon_sym___weak] = ACTIONS(7891), - [anon_sym___bridge] = ACTIONS(7891), - [anon_sym___bridge_transfer] = ACTIONS(7891), - [anon_sym___bridge_retained] = ACTIONS(7891), - [anon_sym___unsafe_unretained] = ACTIONS(7891), - [anon_sym___block] = ACTIONS(7891), - [anon_sym___kindof] = ACTIONS(7891), - [anon_sym___unused] = ACTIONS(7891), - [anon_sym__Complex] = ACTIONS(7891), - [anon_sym___complex] = ACTIONS(7891), - [anon_sym_IBOutlet] = ACTIONS(7891), - [anon_sym_IBInspectable] = ACTIONS(7891), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7891), - [anon_sym_signed] = ACTIONS(7891), - [anon_sym_unsigned] = ACTIONS(7891), - [anon_sym_long] = ACTIONS(7891), - [anon_sym_short] = ACTIONS(7891), - [sym_primitive_type] = ACTIONS(7891), - [anon_sym_enum] = ACTIONS(7891), - [anon_sym_NS_ENUM] = ACTIONS(7891), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7891), - [anon_sym_NS_OPTIONS] = ACTIONS(7891), - [anon_sym_struct] = ACTIONS(7891), - [anon_sym_union] = ACTIONS(7891), + [3320] = { + [sym__expression] = STATE(4442), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_initializer_list] = STATE(4929), + [sym_initializer_pair] = STATE(4929), + [sym_subscript_designator] = STATE(4776), + [sym_field_designator] = STATE(4776), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_initializer_pair_repeat1] = STATE(4776), + [sym_identifier] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(7922), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(7924), + [anon_sym_LBRACK] = ACTIONS(7926), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(7928), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7891), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7891), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7891), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7891), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7891), - [anon_sym_NS_AVAILABLE] = ACTIONS(7891), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7891), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7891), - [anon_sym_API_AVAILABLE] = ACTIONS(7891), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7891), - [anon_sym_API_DEPRECATED] = ACTIONS(7891), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7891), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7891), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7891), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7891), - [anon_sym___deprecated_msg] = ACTIONS(7891), - [anon_sym___deprecated_enum_msg] = ACTIONS(7891), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7891), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7891), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7891), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7891), - [anon_sym_typeof] = ACTIONS(7891), - [anon_sym___typeof] = ACTIONS(7891), - [anon_sym___typeof__] = ACTIONS(7891), - [sym_id] = ACTIONS(7891), - [sym_instancetype] = ACTIONS(7891), - [sym_Class] = ACTIONS(7891), - [sym_SEL] = ACTIONS(7891), - [sym_IMP] = ACTIONS(7891), - [sym_BOOL] = ACTIONS(7891), - [sym_auto] = ACTIONS(7891), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -529638,770 +522508,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3367] = { - [sym_identifier] = ACTIONS(7788), - [anon_sym_extern] = ACTIONS(7788), - [anon_sym___attribute] = ACTIONS(7790), - [anon_sym___attribute__] = ACTIONS(7790), - [anon_sym___declspec] = ACTIONS(7788), - [anon_sym_static] = ACTIONS(7788), - [anon_sym_auto] = ACTIONS(7788), - [anon_sym_register] = ACTIONS(7788), - [anon_sym_inline] = ACTIONS(7788), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7788), - [anon_sym_const] = ACTIONS(7788), - [anon_sym_volatile] = ACTIONS(7788), - [anon_sym_restrict] = ACTIONS(7788), - [anon_sym__Atomic] = ACTIONS(7788), - [anon_sym_in] = ACTIONS(7788), - [anon_sym_out] = ACTIONS(7788), - [anon_sym_inout] = ACTIONS(7788), - [anon_sym_bycopy] = ACTIONS(7788), - [anon_sym_byref] = ACTIONS(7788), - [anon_sym_oneway] = ACTIONS(7788), - [anon_sym__Nullable] = ACTIONS(7788), - [anon_sym__Nonnull] = ACTIONS(7788), - [anon_sym__Nullable_result] = ACTIONS(7788), - [anon_sym__Null_unspecified] = ACTIONS(7788), - [anon_sym___autoreleasing] = ACTIONS(7788), - [anon_sym___nullable] = ACTIONS(7788), - [anon_sym___nonnull] = ACTIONS(7788), - [anon_sym___strong] = ACTIONS(7788), - [anon_sym___weak] = ACTIONS(7788), - [anon_sym___bridge] = ACTIONS(7788), - [anon_sym___bridge_transfer] = ACTIONS(7788), - [anon_sym___bridge_retained] = ACTIONS(7788), - [anon_sym___unsafe_unretained] = ACTIONS(7788), - [anon_sym___block] = ACTIONS(7788), - [anon_sym___kindof] = ACTIONS(7788), - [anon_sym___unused] = ACTIONS(7788), - [anon_sym__Complex] = ACTIONS(7788), - [anon_sym___complex] = ACTIONS(7788), - [anon_sym_IBOutlet] = ACTIONS(7788), - [anon_sym_IBInspectable] = ACTIONS(7788), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7788), - [anon_sym_signed] = ACTIONS(7788), - [anon_sym_unsigned] = ACTIONS(7788), - [anon_sym_long] = ACTIONS(7788), - [anon_sym_short] = ACTIONS(7788), - [sym_primitive_type] = ACTIONS(7788), - [anon_sym_enum] = ACTIONS(7788), - [anon_sym_NS_ENUM] = ACTIONS(7788), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7788), - [anon_sym_NS_OPTIONS] = ACTIONS(7788), - [anon_sym_struct] = ACTIONS(7788), - [anon_sym_union] = ACTIONS(7788), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(7901), - [anon_sym_ATinterface] = ACTIONS(7793), - [sym_method_attribute_specifier] = ACTIONS(7790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7790), - [anon_sym_NS_AVAILABLE] = ACTIONS(7790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_API_AVAILABLE] = ACTIONS(7790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7790), - [anon_sym_API_DEPRECATED] = ACTIONS(7790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7790), - [anon_sym___deprecated_msg] = ACTIONS(7790), - [anon_sym___deprecated_enum_msg] = ACTIONS(7790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7790), - [anon_sym_typeof] = ACTIONS(7788), - [anon_sym___typeof] = ACTIONS(7788), - [anon_sym___typeof__] = ACTIONS(7788), - [sym_id] = ACTIONS(7788), - [sym_instancetype] = ACTIONS(7788), - [sym_Class] = ACTIONS(7788), - [sym_SEL] = ACTIONS(7788), - [sym_IMP] = ACTIONS(7788), - [sym_BOOL] = ACTIONS(7788), - [sym_auto] = ACTIONS(7788), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3368] = { - [sym_identifier] = ACTIONS(7788), - [anon_sym_CARET] = ACTIONS(7903), - [anon_sym_extern] = ACTIONS(7788), - [anon_sym___attribute] = ACTIONS(7788), - [anon_sym___attribute__] = ACTIONS(7788), - [anon_sym___declspec] = ACTIONS(7788), - [anon_sym_static] = ACTIONS(7788), - [anon_sym_auto] = ACTIONS(7788), - [anon_sym_register] = ACTIONS(7788), - [anon_sym_inline] = ACTIONS(7788), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7788), - [anon_sym_const] = ACTIONS(7788), - [anon_sym_volatile] = ACTIONS(7788), - [anon_sym_restrict] = ACTIONS(7788), - [anon_sym__Atomic] = ACTIONS(7788), - [anon_sym_in] = ACTIONS(7788), - [anon_sym_out] = ACTIONS(7788), - [anon_sym_inout] = ACTIONS(7788), - [anon_sym_bycopy] = ACTIONS(7788), - [anon_sym_byref] = ACTIONS(7788), - [anon_sym_oneway] = ACTIONS(7788), - [anon_sym__Nullable] = ACTIONS(7788), - [anon_sym__Nonnull] = ACTIONS(7788), - [anon_sym__Nullable_result] = ACTIONS(7788), - [anon_sym__Null_unspecified] = ACTIONS(7788), - [anon_sym___autoreleasing] = ACTIONS(7788), - [anon_sym___nullable] = ACTIONS(7788), - [anon_sym___nonnull] = ACTIONS(7788), - [anon_sym___strong] = ACTIONS(7788), - [anon_sym___weak] = ACTIONS(7788), - [anon_sym___bridge] = ACTIONS(7788), - [anon_sym___bridge_transfer] = ACTIONS(7788), - [anon_sym___bridge_retained] = ACTIONS(7788), - [anon_sym___unsafe_unretained] = ACTIONS(7788), - [anon_sym___block] = ACTIONS(7788), - [anon_sym___kindof] = ACTIONS(7788), - [anon_sym___unused] = ACTIONS(7788), - [anon_sym__Complex] = ACTIONS(7788), - [anon_sym___complex] = ACTIONS(7788), - [anon_sym_IBOutlet] = ACTIONS(7788), - [anon_sym_IBInspectable] = ACTIONS(7788), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7788), - [anon_sym_signed] = ACTIONS(7788), - [anon_sym_unsigned] = ACTIONS(7788), - [anon_sym_long] = ACTIONS(7788), - [anon_sym_short] = ACTIONS(7788), - [sym_primitive_type] = ACTIONS(7788), - [anon_sym_enum] = ACTIONS(7788), - [anon_sym_NS_ENUM] = ACTIONS(7788), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7788), - [anon_sym_NS_OPTIONS] = ACTIONS(7788), - [anon_sym_struct] = ACTIONS(7788), - [anon_sym_union] = ACTIONS(7788), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7788), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7788), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7788), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7788), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7788), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7788), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7788), - [anon_sym_NS_AVAILABLE] = ACTIONS(7788), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7788), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_API_AVAILABLE] = ACTIONS(7788), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7788), - [anon_sym_API_DEPRECATED] = ACTIONS(7788), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7788), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7788), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7788), - [anon_sym___deprecated_msg] = ACTIONS(7788), - [anon_sym___deprecated_enum_msg] = ACTIONS(7788), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7788), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7788), - [anon_sym_typeof] = ACTIONS(7788), - [anon_sym___typeof] = ACTIONS(7788), - [anon_sym___typeof__] = ACTIONS(7788), - [sym_id] = ACTIONS(7788), - [sym_instancetype] = ACTIONS(7788), - [sym_Class] = ACTIONS(7788), - [sym_SEL] = ACTIONS(7788), - [sym_IMP] = ACTIONS(7788), - [sym_BOOL] = ACTIONS(7788), - [sym_auto] = ACTIONS(7788), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3369] = { - [sym_identifier] = ACTIONS(7905), - [anon_sym_extern] = ACTIONS(7905), - [anon_sym___attribute] = ACTIONS(7905), - [anon_sym___attribute__] = ACTIONS(7905), - [anon_sym___declspec] = ACTIONS(7905), - [anon_sym_LBRACE] = ACTIONS(7907), - [anon_sym_static] = ACTIONS(7905), - [anon_sym_auto] = ACTIONS(7905), - [anon_sym_register] = ACTIONS(7905), - [anon_sym_inline] = ACTIONS(7905), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7905), - [anon_sym_const] = ACTIONS(7905), - [anon_sym_volatile] = ACTIONS(7905), - [anon_sym_restrict] = ACTIONS(7905), - [anon_sym__Atomic] = ACTIONS(7905), - [anon_sym_in] = ACTIONS(7905), - [anon_sym_out] = ACTIONS(7905), - [anon_sym_inout] = ACTIONS(7905), - [anon_sym_bycopy] = ACTIONS(7905), - [anon_sym_byref] = ACTIONS(7905), - [anon_sym_oneway] = ACTIONS(7905), - [anon_sym__Nullable] = ACTIONS(7905), - [anon_sym__Nonnull] = ACTIONS(7905), - [anon_sym__Nullable_result] = ACTIONS(7905), - [anon_sym__Null_unspecified] = ACTIONS(7905), - [anon_sym___autoreleasing] = ACTIONS(7905), - [anon_sym___nullable] = ACTIONS(7905), - [anon_sym___nonnull] = ACTIONS(7905), - [anon_sym___strong] = ACTIONS(7905), - [anon_sym___weak] = ACTIONS(7905), - [anon_sym___bridge] = ACTIONS(7905), - [anon_sym___bridge_transfer] = ACTIONS(7905), - [anon_sym___bridge_retained] = ACTIONS(7905), - [anon_sym___unsafe_unretained] = ACTIONS(7905), - [anon_sym___block] = ACTIONS(7905), - [anon_sym___kindof] = ACTIONS(7905), - [anon_sym___unused] = ACTIONS(7905), - [anon_sym__Complex] = ACTIONS(7905), - [anon_sym___complex] = ACTIONS(7905), - [anon_sym_IBOutlet] = ACTIONS(7905), - [anon_sym_IBInspectable] = ACTIONS(7905), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7905), - [anon_sym_signed] = ACTIONS(7905), - [anon_sym_unsigned] = ACTIONS(7905), - [anon_sym_long] = ACTIONS(7905), - [anon_sym_short] = ACTIONS(7905), - [sym_primitive_type] = ACTIONS(7905), - [anon_sym_enum] = ACTIONS(7905), - [anon_sym_NS_ENUM] = ACTIONS(7905), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7905), - [anon_sym_NS_OPTIONS] = ACTIONS(7905), - [anon_sym_struct] = ACTIONS(7905), - [anon_sym_union] = ACTIONS(7905), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7905), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7905), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7905), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7905), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7905), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7905), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7905), - [anon_sym_NS_AVAILABLE] = ACTIONS(7905), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7905), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7905), - [anon_sym_API_AVAILABLE] = ACTIONS(7905), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7905), - [anon_sym_API_DEPRECATED] = ACTIONS(7905), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7905), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7905), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7905), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7905), - [anon_sym___deprecated_msg] = ACTIONS(7905), - [anon_sym___deprecated_enum_msg] = ACTIONS(7905), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7905), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7905), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7905), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7905), - [anon_sym_typeof] = ACTIONS(7905), - [anon_sym___typeof] = ACTIONS(7905), - [anon_sym___typeof__] = ACTIONS(7905), - [sym_id] = ACTIONS(7905), - [sym_instancetype] = ACTIONS(7905), - [sym_Class] = ACTIONS(7905), - [sym_SEL] = ACTIONS(7905), - [sym_IMP] = ACTIONS(7905), - [sym_BOOL] = ACTIONS(7905), - [sym_auto] = ACTIONS(7905), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3370] = { - [sym_ms_based_modifier] = STATE(5875), - [sym_ms_unaligned_ptr_modifier] = STATE(4001), - [sym_ms_pointer_modifier] = STATE(3923), - [sym__declarator] = STATE(4250), - [sym__abstract_declarator] = STATE(4257), - [sym_parenthesized_declarator] = STATE(3843), - [sym_abstract_parenthesized_declarator] = STATE(4266), - [sym_pointer_declarator] = STATE(3843), - [sym_abstract_pointer_declarator] = STATE(4266), - [sym_function_declarator] = STATE(3843), - [sym_abstract_function_declarator] = STATE(4266), - [sym_array_declarator] = STATE(3843), - [sym_abstract_array_declarator] = STATE(4266), - [sym_type_qualifier] = STATE(3388), - [sym_parameter_list] = STATE(4263), - [sym_block_abstract_declarator] = STATE(4266), - [sym_block_declarator] = STATE(3843), - [aux_sym_type_definition_repeat1] = STATE(3388), - [aux_sym_pointer_declarator_repeat1] = STATE(3923), - [sym_identifier] = ACTIONS(7909), - [anon_sym_RPAREN] = ACTIONS(7911), - [anon_sym_LPAREN2] = ACTIONS(6521), - [anon_sym_STAR] = ACTIONS(7913), - [anon_sym___attribute] = ACTIONS(7915), - [anon_sym___attribute__] = ACTIONS(7915), - [anon_sym___based] = ACTIONS(6527), - [sym_ms_restrict_modifier] = ACTIONS(7917), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7917), - [sym_ms_signed_ptr_modifier] = ACTIONS(7917), - [anon_sym__unaligned] = ACTIONS(7919), - [anon_sym___unaligned] = ACTIONS(7919), - [anon_sym_LBRACK] = ACTIONS(6529), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7915), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7915), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7915), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7915), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7915), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7915), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7915), - [anon_sym_NS_AVAILABLE] = ACTIONS(7915), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7915), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7915), - [anon_sym_API_AVAILABLE] = ACTIONS(7915), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7915), - [anon_sym_API_DEPRECATED] = ACTIONS(7915), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7915), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7915), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7915), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7915), - [anon_sym___deprecated_msg] = ACTIONS(7915), - [anon_sym___deprecated_enum_msg] = ACTIONS(7915), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7915), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7915), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7915), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7915), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3371] = { - [sym_identifier] = ACTIONS(7788), - [anon_sym_CARET] = ACTIONS(7923), - [anon_sym_extern] = ACTIONS(7788), - [anon_sym___attribute] = ACTIONS(7788), - [anon_sym___attribute__] = ACTIONS(7788), - [anon_sym___declspec] = ACTIONS(7788), - [anon_sym_static] = ACTIONS(7788), - [anon_sym_auto] = ACTIONS(7788), - [anon_sym_register] = ACTIONS(7788), - [anon_sym_inline] = ACTIONS(7788), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7788), - [anon_sym_const] = ACTIONS(7788), - [anon_sym_volatile] = ACTIONS(7788), - [anon_sym_restrict] = ACTIONS(7788), - [anon_sym__Atomic] = ACTIONS(7788), - [anon_sym_in] = ACTIONS(7788), - [anon_sym_out] = ACTIONS(7788), - [anon_sym_inout] = ACTIONS(7788), - [anon_sym_bycopy] = ACTIONS(7788), - [anon_sym_byref] = ACTIONS(7788), - [anon_sym_oneway] = ACTIONS(7788), - [anon_sym__Nullable] = ACTIONS(7788), - [anon_sym__Nonnull] = ACTIONS(7788), - [anon_sym__Nullable_result] = ACTIONS(7788), - [anon_sym__Null_unspecified] = ACTIONS(7788), - [anon_sym___autoreleasing] = ACTIONS(7788), - [anon_sym___nullable] = ACTIONS(7788), - [anon_sym___nonnull] = ACTIONS(7788), - [anon_sym___strong] = ACTIONS(7788), - [anon_sym___weak] = ACTIONS(7788), - [anon_sym___bridge] = ACTIONS(7788), - [anon_sym___bridge_transfer] = ACTIONS(7788), - [anon_sym___bridge_retained] = ACTIONS(7788), - [anon_sym___unsafe_unretained] = ACTIONS(7788), - [anon_sym___block] = ACTIONS(7788), - [anon_sym___kindof] = ACTIONS(7788), - [anon_sym___unused] = ACTIONS(7788), - [anon_sym__Complex] = ACTIONS(7788), - [anon_sym___complex] = ACTIONS(7788), - [anon_sym_IBOutlet] = ACTIONS(7788), - [anon_sym_IBInspectable] = ACTIONS(7788), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7788), - [anon_sym_signed] = ACTIONS(7788), - [anon_sym_unsigned] = ACTIONS(7788), - [anon_sym_long] = ACTIONS(7788), - [anon_sym_short] = ACTIONS(7788), - [sym_primitive_type] = ACTIONS(7788), - [anon_sym_enum] = ACTIONS(7788), - [anon_sym_NS_ENUM] = ACTIONS(7788), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7788), - [anon_sym_NS_OPTIONS] = ACTIONS(7788), - [anon_sym_struct] = ACTIONS(7788), - [anon_sym_union] = ACTIONS(7788), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7788), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7788), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7788), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7788), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7788), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7788), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7788), - [anon_sym_NS_AVAILABLE] = ACTIONS(7788), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7788), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_API_AVAILABLE] = ACTIONS(7788), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7788), - [anon_sym_API_DEPRECATED] = ACTIONS(7788), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7788), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7788), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7788), - [anon_sym___deprecated_msg] = ACTIONS(7788), - [anon_sym___deprecated_enum_msg] = ACTIONS(7788), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7788), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7788), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7788), - [anon_sym_typeof] = ACTIONS(7788), - [anon_sym___typeof] = ACTIONS(7788), - [anon_sym___typeof__] = ACTIONS(7788), - [sym_id] = ACTIONS(7788), - [sym_instancetype] = ACTIONS(7788), - [sym_Class] = ACTIONS(7788), - [sym_SEL] = ACTIONS(7788), - [sym_IMP] = ACTIONS(7788), - [sym_BOOL] = ACTIONS(7788), - [sym_auto] = ACTIONS(7788), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3372] = { - [sym_ms_based_modifier] = STATE(5402), - [sym_ms_unaligned_ptr_modifier] = STATE(4001), - [sym_ms_pointer_modifier] = STATE(3938), - [sym__declarator] = STATE(4355), - [sym__abstract_declarator] = STATE(4404), - [sym_parenthesized_declarator] = STATE(4453), - [sym_abstract_parenthesized_declarator] = STATE(4266), - [sym_pointer_declarator] = STATE(4453), - [sym_abstract_pointer_declarator] = STATE(4266), - [sym_function_declarator] = STATE(4453), - [sym_abstract_function_declarator] = STATE(4266), - [sym_array_declarator] = STATE(4453), - [sym_abstract_array_declarator] = STATE(4266), - [sym_type_qualifier] = STATE(3395), - [sym_parameter_list] = STATE(4263), - [sym_block_abstract_declarator] = STATE(4266), - [sym_block_declarator] = STATE(4453), - [aux_sym_type_definition_repeat1] = STATE(3395), - [aux_sym_pointer_declarator_repeat1] = STATE(3938), - [sym_identifier] = ACTIONS(7925), - [anon_sym_LPAREN2] = ACTIONS(7927), - [anon_sym_STAR] = ACTIONS(7929), - [anon_sym___attribute] = ACTIONS(7915), - [anon_sym___attribute__] = ACTIONS(7915), - [anon_sym___based] = ACTIONS(6527), - [sym_ms_restrict_modifier] = ACTIONS(7917), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7917), - [sym_ms_signed_ptr_modifier] = ACTIONS(7917), - [anon_sym__unaligned] = ACTIONS(7919), - [anon_sym___unaligned] = ACTIONS(7919), - [anon_sym_LBRACK] = ACTIONS(6529), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7915), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7915), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7915), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7915), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7915), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7915), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7915), - [anon_sym_NS_AVAILABLE] = ACTIONS(7915), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7915), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7915), - [anon_sym_API_AVAILABLE] = ACTIONS(7915), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7915), - [anon_sym_API_DEPRECATED] = ACTIONS(7915), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7915), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7915), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7915), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7915), - [anon_sym___deprecated_msg] = ACTIONS(7915), - [anon_sym___deprecated_enum_msg] = ACTIONS(7915), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7915), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7915), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7915), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7915), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3373] = { - [sym_ms_based_modifier] = STATE(5669), - [sym_ms_unaligned_ptr_modifier] = STATE(4001), - [sym_ms_pointer_modifier] = STATE(3926), - [sym__declarator] = STATE(3886), - [sym__abstract_declarator] = STATE(4404), - [sym_parenthesized_declarator] = STATE(3843), - [sym_abstract_parenthesized_declarator] = STATE(4266), - [sym_pointer_declarator] = STATE(3843), - [sym_abstract_pointer_declarator] = STATE(4266), - [sym_function_declarator] = STATE(3843), - [sym_abstract_function_declarator] = STATE(4266), - [sym_array_declarator] = STATE(3843), - [sym_abstract_array_declarator] = STATE(4266), - [sym_type_qualifier] = STATE(3399), - [sym_parameter_list] = STATE(4263), - [sym_block_abstract_declarator] = STATE(4266), - [sym_block_declarator] = STATE(3843), - [aux_sym_type_definition_repeat1] = STATE(3399), - [aux_sym_pointer_declarator_repeat1] = STATE(3926), - [sym_identifier] = ACTIONS(7909), - [anon_sym_LPAREN2] = ACTIONS(7931), + [3321] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3317), + [sym_identifier] = ACTIONS(7930), + [anon_sym_COMMA] = ACTIONS(7933), + [anon_sym_RPAREN] = ACTIONS(7933), + [anon_sym_LPAREN2] = ACTIONS(7933), [anon_sym_STAR] = ACTIONS(7933), - [anon_sym___attribute] = ACTIONS(7915), - [anon_sym___attribute__] = ACTIONS(7915), - [anon_sym___based] = ACTIONS(6527), - [sym_ms_restrict_modifier] = ACTIONS(7917), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7917), - [sym_ms_signed_ptr_modifier] = ACTIONS(7917), - [anon_sym__unaligned] = ACTIONS(7919), - [anon_sym___unaligned] = ACTIONS(7919), - [anon_sym_LBRACK] = ACTIONS(6529), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7915), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7915), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7915), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7915), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7915), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7915), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7915), - [anon_sym_NS_AVAILABLE] = ACTIONS(7915), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7915), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7915), - [anon_sym_API_AVAILABLE] = ACTIONS(7915), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7915), - [anon_sym_API_DEPRECATED] = ACTIONS(7915), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7915), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7915), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7915), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7915), - [anon_sym___deprecated_msg] = ACTIONS(7915), - [anon_sym___deprecated_enum_msg] = ACTIONS(7915), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7915), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7915), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7915), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7915), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3374] = { - [sym_identifier] = ACTIONS(7867), - [anon_sym_extern] = ACTIONS(7867), - [anon_sym___attribute] = ACTIONS(7867), - [anon_sym___attribute__] = ACTIONS(7867), - [anon_sym___declspec] = ACTIONS(7867), - [anon_sym_static] = ACTIONS(7867), - [anon_sym_auto] = ACTIONS(7867), - [anon_sym_register] = ACTIONS(7867), - [anon_sym_inline] = ACTIONS(7867), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7867), - [anon_sym_const] = ACTIONS(7867), - [anon_sym_volatile] = ACTIONS(7867), - [anon_sym_restrict] = ACTIONS(7867), - [anon_sym__Atomic] = ACTIONS(7867), - [anon_sym_in] = ACTIONS(7867), - [anon_sym_out] = ACTIONS(7867), - [anon_sym_inout] = ACTIONS(7867), - [anon_sym_bycopy] = ACTIONS(7867), - [anon_sym_byref] = ACTIONS(7867), - [anon_sym_oneway] = ACTIONS(7867), - [anon_sym__Nullable] = ACTIONS(7867), - [anon_sym__Nonnull] = ACTIONS(7867), - [anon_sym__Nullable_result] = ACTIONS(7867), - [anon_sym__Null_unspecified] = ACTIONS(7867), - [anon_sym___autoreleasing] = ACTIONS(7867), - [anon_sym___nullable] = ACTIONS(7867), - [anon_sym___nonnull] = ACTIONS(7867), - [anon_sym___strong] = ACTIONS(7867), - [anon_sym___weak] = ACTIONS(7867), - [anon_sym___bridge] = ACTIONS(7867), - [anon_sym___bridge_transfer] = ACTIONS(7867), - [anon_sym___bridge_retained] = ACTIONS(7867), - [anon_sym___unsafe_unretained] = ACTIONS(7867), - [anon_sym___block] = ACTIONS(7867), - [anon_sym___kindof] = ACTIONS(7867), - [anon_sym___unused] = ACTIONS(7867), - [anon_sym__Complex] = ACTIONS(7867), - [anon_sym___complex] = ACTIONS(7867), - [anon_sym_IBOutlet] = ACTIONS(7867), - [anon_sym_IBInspectable] = ACTIONS(7867), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7867), - [anon_sym_signed] = ACTIONS(7867), - [anon_sym_unsigned] = ACTIONS(7867), - [anon_sym_long] = ACTIONS(7867), - [anon_sym_short] = ACTIONS(7867), - [sym_primitive_type] = ACTIONS(7867), - [anon_sym_enum] = ACTIONS(7867), - [anon_sym_NS_ENUM] = ACTIONS(7867), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7867), - [anon_sym_NS_OPTIONS] = ACTIONS(7867), - [anon_sym_struct] = ACTIONS(7867), - [anon_sym_union] = ACTIONS(7867), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7867), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7867), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7867), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7867), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7867), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7867), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7867), - [anon_sym_NS_AVAILABLE] = ACTIONS(7867), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7867), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_API_AVAILABLE] = ACTIONS(7867), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7867), - [anon_sym_API_DEPRECATED] = ACTIONS(7867), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7867), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7867), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7867), - [anon_sym___deprecated_msg] = ACTIONS(7867), - [anon_sym___deprecated_enum_msg] = ACTIONS(7867), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7867), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7867), - [anon_sym_typeof] = ACTIONS(7867), - [anon_sym___typeof] = ACTIONS(7867), - [anon_sym___typeof__] = ACTIONS(7867), - [sym_id] = ACTIONS(7867), - [sym_instancetype] = ACTIONS(7867), - [sym_Class] = ACTIONS(7867), - [sym_SEL] = ACTIONS(7867), - [sym_IMP] = ACTIONS(7867), - [sym_BOOL] = ACTIONS(7867), - [sym_auto] = ACTIONS(7867), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3375] = { - [sym_identifier] = ACTIONS(7935), + [anon_sym_SEMI] = ACTIONS(7933), [anon_sym_extern] = ACTIONS(7935), [anon_sym___attribute] = ACTIONS(7935), [anon_sym___attribute__] = ACTIONS(7935), [anon_sym___declspec] = ACTIONS(7935), + [anon_sym___based] = ACTIONS(7935), + [anon_sym_LBRACE] = ACTIONS(7933), + [anon_sym_LBRACK] = ACTIONS(7933), [anon_sym_static] = ACTIONS(7935), [anon_sym_auto] = ACTIONS(7935), [anon_sym_register] = ACTIONS(7935), @@ -530438,17 +522559,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_IBOutlet] = ACTIONS(7935), [anon_sym_IBInspectable] = ACTIONS(7935), [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7935), - [anon_sym_signed] = ACTIONS(7935), - [anon_sym_unsigned] = ACTIONS(7935), - [anon_sym_long] = ACTIONS(7935), - [anon_sym_short] = ACTIONS(7935), - [sym_primitive_type] = ACTIONS(7935), - [anon_sym_enum] = ACTIONS(7935), - [anon_sym_NS_ENUM] = ACTIONS(7935), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(7935), - [anon_sym_NS_OPTIONS] = ACTIONS(7935), - [anon_sym_struct] = ACTIONS(7935), - [anon_sym_union] = ACTIONS(7935), + [anon_sym_signed] = ACTIONS(7937), + [anon_sym_unsigned] = ACTIONS(7937), + [anon_sym_long] = ACTIONS(7937), + [anon_sym_short] = ACTIONS(7937), + [sym_primitive_type] = ACTIONS(7939), + [anon_sym_COLON] = ACTIONS(7933), [sym_comment] = ACTIONS(3), [sym_method_attribute_specifier] = ACTIONS(7935), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7935), @@ -530473,16 +522589,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7935), [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7935), [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7935), - [anon_sym_typeof] = ACTIONS(7935), - [anon_sym___typeof] = ACTIONS(7935), - [anon_sym___typeof__] = ACTIONS(7935), - [sym_id] = ACTIONS(7935), - [sym_instancetype] = ACTIONS(7935), - [sym_Class] = ACTIONS(7935), - [sym_SEL] = ACTIONS(7935), - [sym_IMP] = ACTIONS(7935), - [sym_BOOL] = ACTIONS(7935), - [sym_auto] = ACTIONS(7935), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -530490,180 +522596,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3376] = { - [sym_argument_list] = STATE(3088), - [anon_sym_COMMA] = ACTIONS(7937), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7837), - [anon_sym_PLUS] = ACTIONS(7837), - [anon_sym_STAR] = ACTIONS(7831), - [anon_sym_SLASH] = ACTIONS(7833), - [anon_sym_PERCENT] = ACTIONS(7831), - [anon_sym_PIPE_PIPE] = ACTIONS(7871), - [anon_sym_AMP_AMP] = ACTIONS(7853), - [anon_sym_PIPE] = ACTIONS(7855), - [anon_sym_CARET] = ACTIONS(7857), - [anon_sym_AMP] = ACTIONS(7859), - [anon_sym_EQ_EQ] = ACTIONS(7861), - [anon_sym_BANG_EQ] = ACTIONS(7861), - [anon_sym_GT] = ACTIONS(7863), - [anon_sym_GT_EQ] = ACTIONS(7865), - [anon_sym_LT_EQ] = ACTIONS(7865), - [anon_sym_LT] = ACTIONS(7863), - [anon_sym_LT_LT] = ACTIONS(7839), - [anon_sym_GT_GT] = ACTIONS(7839), - [anon_sym_SEMI] = ACTIONS(7937), - [anon_sym___attribute] = ACTIONS(7939), - [anon_sym___attribute__] = ACTIONS(7937), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_const] = ACTIONS(7937), - [anon_sym_volatile] = ACTIONS(7937), - [anon_sym_restrict] = ACTIONS(7937), - [anon_sym__Atomic] = ACTIONS(7937), - [anon_sym_in] = ACTIONS(7939), - [anon_sym_out] = ACTIONS(7937), - [anon_sym_inout] = ACTIONS(7937), - [anon_sym_bycopy] = ACTIONS(7937), - [anon_sym_byref] = ACTIONS(7937), - [anon_sym_oneway] = ACTIONS(7937), - [anon_sym__Nullable] = ACTIONS(7939), - [anon_sym__Nonnull] = ACTIONS(7937), - [anon_sym__Nullable_result] = ACTIONS(7937), - [anon_sym__Null_unspecified] = ACTIONS(7937), - [anon_sym___autoreleasing] = ACTIONS(7937), - [anon_sym___nullable] = ACTIONS(7937), - [anon_sym___nonnull] = ACTIONS(7937), - [anon_sym___strong] = ACTIONS(7937), - [anon_sym___weak] = ACTIONS(7937), - [anon_sym___bridge] = ACTIONS(7939), - [anon_sym___bridge_transfer] = ACTIONS(7937), - [anon_sym___bridge_retained] = ACTIONS(7937), - [anon_sym___unsafe_unretained] = ACTIONS(7937), - [anon_sym___block] = ACTIONS(7937), - [anon_sym___kindof] = ACTIONS(7937), - [anon_sym___unused] = ACTIONS(7937), - [anon_sym__Complex] = ACTIONS(7937), - [anon_sym___complex] = ACTIONS(7937), - [anon_sym_IBOutlet] = ACTIONS(7937), - [anon_sym_IBInspectable] = ACTIONS(7937), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7937), - [anon_sym_QMARK] = ACTIONS(7873), - [anon_sym_DASH_DASH] = ACTIONS(7827), - [anon_sym_PLUS_PLUS] = ACTIONS(7827), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7937), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7937), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7937), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7937), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7937), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7937), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7937), - [anon_sym_NS_AVAILABLE] = ACTIONS(7939), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7937), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7937), - [anon_sym_API_AVAILABLE] = ACTIONS(7937), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7937), - [anon_sym_API_DEPRECATED] = ACTIONS(7937), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7937), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7937), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7937), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7937), - [anon_sym___deprecated_msg] = ACTIONS(7937), - [anon_sym___deprecated_enum_msg] = ACTIONS(7937), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7937), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7937), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7937), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7937), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3377] = { - [sym_attribute_specifier] = STATE(3385), - [sym_ms_declspec_modifier] = STATE(3385), - [sym_storage_class_specifier] = STATE(3385), - [sym_type_qualifier] = STATE(3385), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3598), - [sym_availability_attribute_specifier] = STATE(3598), - [aux_sym__declaration_specifiers_repeat1] = STATE(3385), + [3322] = { + [sym_attribute_specifier] = STATE(3324), + [sym_ms_declspec_modifier] = STATE(3324), + [sym_storage_class_specifier] = STATE(3324), + [sym_type_qualifier] = STATE(3324), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3534), + [sym_availability_attribute_specifier] = STATE(3534), + [aux_sym__declaration_specifiers_repeat1] = STATE(3324), [sym_identifier] = ACTIONS(7941), [anon_sym_COMMA] = ACTIONS(7943), [anon_sym_RPAREN] = ACTIONS(7943), [anon_sym_LPAREN2] = ACTIONS(7943), [anon_sym_STAR] = ACTIONS(7943), [anon_sym_SEMI] = ACTIONS(7943), - [anon_sym_extern] = ACTIONS(7945), - [anon_sym___attribute] = ACTIONS(7947), - [anon_sym___attribute__] = ACTIONS(7947), - [anon_sym___declspec] = ACTIONS(7949), + [anon_sym_extern] = ACTIONS(7902), + [anon_sym___attribute] = ACTIONS(7904), + [anon_sym___attribute__] = ACTIONS(7904), + [anon_sym___declspec] = ACTIONS(7906), [anon_sym___based] = ACTIONS(7941), [anon_sym_LBRACK] = ACTIONS(7943), - [anon_sym_static] = ACTIONS(7945), - [anon_sym_auto] = ACTIONS(7945), - [anon_sym_register] = ACTIONS(7945), - [anon_sym_inline] = ACTIONS(7945), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7945), - [anon_sym_const] = ACTIONS(7951), - [anon_sym_volatile] = ACTIONS(7951), - [anon_sym_restrict] = ACTIONS(7951), - [anon_sym__Atomic] = ACTIONS(7951), - [anon_sym_in] = ACTIONS(7951), - [anon_sym_out] = ACTIONS(7951), - [anon_sym_inout] = ACTIONS(7951), - [anon_sym_bycopy] = ACTIONS(7951), - [anon_sym_byref] = ACTIONS(7951), - [anon_sym_oneway] = ACTIONS(7951), - [anon_sym__Nullable] = ACTIONS(7951), - [anon_sym__Nonnull] = ACTIONS(7951), - [anon_sym__Nullable_result] = ACTIONS(7951), - [anon_sym__Null_unspecified] = ACTIONS(7951), - [anon_sym___autoreleasing] = ACTIONS(7951), - [anon_sym___nullable] = ACTIONS(7951), - [anon_sym___nonnull] = ACTIONS(7951), - [anon_sym___strong] = ACTIONS(7951), - [anon_sym___weak] = ACTIONS(7951), - [anon_sym___bridge] = ACTIONS(7951), - [anon_sym___bridge_transfer] = ACTIONS(7951), - [anon_sym___bridge_retained] = ACTIONS(7951), - [anon_sym___unsafe_unretained] = ACTIONS(7951), - [anon_sym___block] = ACTIONS(7951), - [anon_sym___kindof] = ACTIONS(7951), - [anon_sym___unused] = ACTIONS(7951), - [anon_sym__Complex] = ACTIONS(7951), - [anon_sym___complex] = ACTIONS(7951), - [anon_sym_IBOutlet] = ACTIONS(7951), - [anon_sym_IBInspectable] = ACTIONS(7951), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7951), + [anon_sym_static] = ACTIONS(7902), + [anon_sym_auto] = ACTIONS(7902), + [anon_sym_register] = ACTIONS(7902), + [anon_sym_inline] = ACTIONS(7902), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7902), + [anon_sym_const] = ACTIONS(7908), + [anon_sym_volatile] = ACTIONS(7908), + [anon_sym_restrict] = ACTIONS(7908), + [anon_sym__Atomic] = ACTIONS(7908), + [anon_sym_in] = ACTIONS(7908), + [anon_sym_out] = ACTIONS(7908), + [anon_sym_inout] = ACTIONS(7908), + [anon_sym_bycopy] = ACTIONS(7908), + [anon_sym_byref] = ACTIONS(7908), + [anon_sym_oneway] = ACTIONS(7908), + [anon_sym__Nullable] = ACTIONS(7908), + [anon_sym__Nonnull] = ACTIONS(7908), + [anon_sym__Nullable_result] = ACTIONS(7908), + [anon_sym__Null_unspecified] = ACTIONS(7908), + [anon_sym___autoreleasing] = ACTIONS(7908), + [anon_sym___nullable] = ACTIONS(7908), + [anon_sym___nonnull] = ACTIONS(7908), + [anon_sym___strong] = ACTIONS(7908), + [anon_sym___weak] = ACTIONS(7908), + [anon_sym___bridge] = ACTIONS(7908), + [anon_sym___bridge_transfer] = ACTIONS(7908), + [anon_sym___bridge_retained] = ACTIONS(7908), + [anon_sym___unsafe_unretained] = ACTIONS(7908), + [anon_sym___block] = ACTIONS(7908), + [anon_sym___kindof] = ACTIONS(7908), + [anon_sym___unused] = ACTIONS(7908), + [anon_sym__Complex] = ACTIONS(7908), + [anon_sym___complex] = ACTIONS(7908), + [anon_sym_IBOutlet] = ACTIONS(7908), + [anon_sym_IBInspectable] = ACTIONS(7908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7908), [anon_sym_COLON] = ACTIONS(7943), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7953), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7955), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7955), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7957), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7957), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7957), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7957), - [anon_sym_NS_AVAILABLE] = ACTIONS(7959), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7959), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_API_AVAILABLE] = ACTIONS(7959), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7959), - [anon_sym_API_DEPRECATED] = ACTIONS(7959), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7959), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7959), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7959), - [anon_sym___deprecated_msg] = ACTIONS(7959), - [anon_sym___deprecated_enum_msg] = ACTIONS(7959), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7959), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7959), + [sym_method_attribute_specifier] = ACTIONS(7910), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7914), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7914), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7914), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7914), + [anon_sym_NS_AVAILABLE] = ACTIONS(7916), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7916), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_API_AVAILABLE] = ACTIONS(7916), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7916), + [anon_sym_API_DEPRECATED] = ACTIONS(7916), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7916), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7916), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7916), + [anon_sym___deprecated_msg] = ACTIONS(7916), + [anon_sym___deprecated_enum_msg] = ACTIONS(7916), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7916), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7916), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -530671,133 +522684,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3378] = { - [sym_attribute_specifier] = STATE(3380), - [sym_ms_declspec_modifier] = STATE(3380), - [sym_storage_class_specifier] = STATE(3380), - [sym_type_qualifier] = STATE(3380), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3598), - [sym_availability_attribute_specifier] = STATE(3598), - [aux_sym__declaration_specifiers_repeat1] = STATE(3380), - [sym_identifier] = ACTIONS(7961), - [anon_sym_COMMA] = ACTIONS(7963), - [anon_sym_RPAREN] = ACTIONS(7963), - [anon_sym_LPAREN2] = ACTIONS(7963), - [anon_sym_STAR] = ACTIONS(7963), - [anon_sym_SEMI] = ACTIONS(7963), - [anon_sym_extern] = ACTIONS(7945), - [anon_sym___attribute] = ACTIONS(7947), - [anon_sym___attribute__] = ACTIONS(7947), - [anon_sym___declspec] = ACTIONS(7949), - [anon_sym___based] = ACTIONS(7961), - [anon_sym_LBRACK] = ACTIONS(7963), - [anon_sym_static] = ACTIONS(7945), - [anon_sym_auto] = ACTIONS(7945), - [anon_sym_register] = ACTIONS(7945), - [anon_sym_inline] = ACTIONS(7945), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7945), - [anon_sym_const] = ACTIONS(7951), - [anon_sym_volatile] = ACTIONS(7951), - [anon_sym_restrict] = ACTIONS(7951), - [anon_sym__Atomic] = ACTIONS(7951), - [anon_sym_in] = ACTIONS(7951), - [anon_sym_out] = ACTIONS(7951), - [anon_sym_inout] = ACTIONS(7951), - [anon_sym_bycopy] = ACTIONS(7951), - [anon_sym_byref] = ACTIONS(7951), - [anon_sym_oneway] = ACTIONS(7951), - [anon_sym__Nullable] = ACTIONS(7951), - [anon_sym__Nonnull] = ACTIONS(7951), - [anon_sym__Nullable_result] = ACTIONS(7951), - [anon_sym__Null_unspecified] = ACTIONS(7951), - [anon_sym___autoreleasing] = ACTIONS(7951), - [anon_sym___nullable] = ACTIONS(7951), - [anon_sym___nonnull] = ACTIONS(7951), - [anon_sym___strong] = ACTIONS(7951), - [anon_sym___weak] = ACTIONS(7951), - [anon_sym___bridge] = ACTIONS(7951), - [anon_sym___bridge_transfer] = ACTIONS(7951), - [anon_sym___bridge_retained] = ACTIONS(7951), - [anon_sym___unsafe_unretained] = ACTIONS(7951), - [anon_sym___block] = ACTIONS(7951), - [anon_sym___kindof] = ACTIONS(7951), - [anon_sym___unused] = ACTIONS(7951), - [anon_sym__Complex] = ACTIONS(7951), - [anon_sym___complex] = ACTIONS(7951), - [anon_sym_IBOutlet] = ACTIONS(7951), - [anon_sym_IBInspectable] = ACTIONS(7951), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7951), - [anon_sym_COLON] = ACTIONS(7963), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7953), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7955), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7955), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7957), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7957), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7957), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7957), - [anon_sym_NS_AVAILABLE] = ACTIONS(7959), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7959), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_API_AVAILABLE] = ACTIONS(7959), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7959), - [anon_sym_API_DEPRECATED] = ACTIONS(7959), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7959), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7959), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7959), - [anon_sym___deprecated_msg] = ACTIONS(7959), - [anon_sym___deprecated_enum_msg] = ACTIONS(7959), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7959), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7959), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3379] = { - [sym__expression] = STATE(4385), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_initializer_list] = STATE(4944), - [sym_initializer_pair] = STATE(4944), - [sym_subscript_designator] = STATE(4747), - [sym_field_designator] = STATE(4747), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_initializer_pair_repeat1] = STATE(4747), + [3323] = { + [sym__expression] = STATE(4438), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_initializer_list] = STATE(4971), + [sym_initializer_pair] = STATE(4971), + [sym_subscript_designator] = STATE(4776), + [sym_field_designator] = STATE(4776), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_initializer_pair_repeat1] = STATE(4776), [sym_identifier] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(7965), + [anon_sym_COMMA] = ACTIONS(7945), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -530806,37 +522731,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(7967), - [anon_sym_LBRACK] = ACTIONS(7969), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(7971), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(7947), + [anon_sym_LBRACK] = ACTIONS(7926), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(7928), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -530847,87 +522772,610 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3380] = { - [sym_attribute_specifier] = STATE(3380), - [sym_ms_declspec_modifier] = STATE(3380), - [sym_storage_class_specifier] = STATE(3380), - [sym_type_qualifier] = STATE(3380), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3598), - [sym_availability_attribute_specifier] = STATE(3598), - [aux_sym__declaration_specifiers_repeat1] = STATE(3380), - [sym_identifier] = ACTIONS(7801), - [anon_sym_COMMA] = ACTIONS(7973), - [anon_sym_RPAREN] = ACTIONS(7973), - [anon_sym_LPAREN2] = ACTIONS(7973), - [anon_sym_STAR] = ACTIONS(7973), - [anon_sym_SEMI] = ACTIONS(7973), - [anon_sym_extern] = ACTIONS(7975), - [anon_sym___attribute] = ACTIONS(7978), - [anon_sym___attribute__] = ACTIONS(7978), - [anon_sym___declspec] = ACTIONS(7981), - [anon_sym___based] = ACTIONS(7801), - [anon_sym_LBRACK] = ACTIONS(7973), - [anon_sym_static] = ACTIONS(7975), - [anon_sym_auto] = ACTIONS(7975), - [anon_sym_register] = ACTIONS(7975), - [anon_sym_inline] = ACTIONS(7975), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7975), - [anon_sym_const] = ACTIONS(7984), - [anon_sym_volatile] = ACTIONS(7984), - [anon_sym_restrict] = ACTIONS(7984), - [anon_sym__Atomic] = ACTIONS(7984), - [anon_sym_in] = ACTIONS(7984), - [anon_sym_out] = ACTIONS(7984), - [anon_sym_inout] = ACTIONS(7984), - [anon_sym_bycopy] = ACTIONS(7984), - [anon_sym_byref] = ACTIONS(7984), - [anon_sym_oneway] = ACTIONS(7984), - [anon_sym__Nullable] = ACTIONS(7984), - [anon_sym__Nonnull] = ACTIONS(7984), - [anon_sym__Nullable_result] = ACTIONS(7984), - [anon_sym__Null_unspecified] = ACTIONS(7984), - [anon_sym___autoreleasing] = ACTIONS(7984), - [anon_sym___nullable] = ACTIONS(7984), - [anon_sym___nonnull] = ACTIONS(7984), - [anon_sym___strong] = ACTIONS(7984), - [anon_sym___weak] = ACTIONS(7984), - [anon_sym___bridge] = ACTIONS(7984), - [anon_sym___bridge_transfer] = ACTIONS(7984), - [anon_sym___bridge_retained] = ACTIONS(7984), - [anon_sym___unsafe_unretained] = ACTIONS(7984), - [anon_sym___block] = ACTIONS(7984), - [anon_sym___kindof] = ACTIONS(7984), - [anon_sym___unused] = ACTIONS(7984), - [anon_sym__Complex] = ACTIONS(7984), - [anon_sym___complex] = ACTIONS(7984), - [anon_sym_IBOutlet] = ACTIONS(7984), - [anon_sym_IBInspectable] = ACTIONS(7984), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7984), - [anon_sym_COLON] = ACTIONS(7973), + [3324] = { + [sym_attribute_specifier] = STATE(3324), + [sym_ms_declspec_modifier] = STATE(3324), + [sym_storage_class_specifier] = STATE(3324), + [sym_type_qualifier] = STATE(3324), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3534), + [sym_availability_attribute_specifier] = STATE(3534), + [aux_sym__declaration_specifiers_repeat1] = STATE(3324), + [sym_identifier] = ACTIONS(7738), + [anon_sym_COMMA] = ACTIONS(7949), + [anon_sym_RPAREN] = ACTIONS(7949), + [anon_sym_LPAREN2] = ACTIONS(7949), + [anon_sym_STAR] = ACTIONS(7949), + [anon_sym_SEMI] = ACTIONS(7949), + [anon_sym_extern] = ACTIONS(7951), + [anon_sym___attribute] = ACTIONS(7954), + [anon_sym___attribute__] = ACTIONS(7954), + [anon_sym___declspec] = ACTIONS(7957), + [anon_sym___based] = ACTIONS(7738), + [anon_sym_LBRACK] = ACTIONS(7949), + [anon_sym_static] = ACTIONS(7951), + [anon_sym_auto] = ACTIONS(7951), + [anon_sym_register] = ACTIONS(7951), + [anon_sym_inline] = ACTIONS(7951), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7951), + [anon_sym_const] = ACTIONS(7960), + [anon_sym_volatile] = ACTIONS(7960), + [anon_sym_restrict] = ACTIONS(7960), + [anon_sym__Atomic] = ACTIONS(7960), + [anon_sym_in] = ACTIONS(7960), + [anon_sym_out] = ACTIONS(7960), + [anon_sym_inout] = ACTIONS(7960), + [anon_sym_bycopy] = ACTIONS(7960), + [anon_sym_byref] = ACTIONS(7960), + [anon_sym_oneway] = ACTIONS(7960), + [anon_sym__Nullable] = ACTIONS(7960), + [anon_sym__Nonnull] = ACTIONS(7960), + [anon_sym__Nullable_result] = ACTIONS(7960), + [anon_sym__Null_unspecified] = ACTIONS(7960), + [anon_sym___autoreleasing] = ACTIONS(7960), + [anon_sym___nullable] = ACTIONS(7960), + [anon_sym___nonnull] = ACTIONS(7960), + [anon_sym___strong] = ACTIONS(7960), + [anon_sym___weak] = ACTIONS(7960), + [anon_sym___bridge] = ACTIONS(7960), + [anon_sym___bridge_transfer] = ACTIONS(7960), + [anon_sym___bridge_retained] = ACTIONS(7960), + [anon_sym___unsafe_unretained] = ACTIONS(7960), + [anon_sym___block] = ACTIONS(7960), + [anon_sym___kindof] = ACTIONS(7960), + [anon_sym___unused] = ACTIONS(7960), + [anon_sym__Complex] = ACTIONS(7960), + [anon_sym___complex] = ACTIONS(7960), + [anon_sym_IBOutlet] = ACTIONS(7960), + [anon_sym_IBInspectable] = ACTIONS(7960), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7960), + [anon_sym_COLON] = ACTIONS(7949), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7963), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7966), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7966), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7969), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7969), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7969), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7969), + [anon_sym_NS_AVAILABLE] = ACTIONS(7972), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7972), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7972), + [anon_sym_API_AVAILABLE] = ACTIONS(7972), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7972), + [anon_sym_API_DEPRECATED] = ACTIONS(7972), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7972), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7972), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7972), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7972), + [anon_sym___deprecated_msg] = ACTIONS(7972), + [anon_sym___deprecated_enum_msg] = ACTIONS(7972), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7972), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7972), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7972), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7972), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3325] = { + [sym_attribute_specifier] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3534), + [sym_availability_attribute_specifier] = STATE(3534), + [aux_sym__declaration_specifiers_repeat1] = STATE(3318), + [sym_identifier] = ACTIONS(7975), + [anon_sym_COMMA] = ACTIONS(7977), + [anon_sym_RPAREN] = ACTIONS(7977), + [anon_sym_LPAREN2] = ACTIONS(7977), + [anon_sym_STAR] = ACTIONS(7977), + [anon_sym_SEMI] = ACTIONS(7977), + [anon_sym_extern] = ACTIONS(7902), + [anon_sym___attribute] = ACTIONS(7904), + [anon_sym___attribute__] = ACTIONS(7904), + [anon_sym___declspec] = ACTIONS(7906), + [anon_sym___based] = ACTIONS(7975), + [anon_sym_LBRACK] = ACTIONS(7977), + [anon_sym_static] = ACTIONS(7902), + [anon_sym_auto] = ACTIONS(7902), + [anon_sym_register] = ACTIONS(7902), + [anon_sym_inline] = ACTIONS(7902), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7902), + [anon_sym_const] = ACTIONS(7908), + [anon_sym_volatile] = ACTIONS(7908), + [anon_sym_restrict] = ACTIONS(7908), + [anon_sym__Atomic] = ACTIONS(7908), + [anon_sym_in] = ACTIONS(7908), + [anon_sym_out] = ACTIONS(7908), + [anon_sym_inout] = ACTIONS(7908), + [anon_sym_bycopy] = ACTIONS(7908), + [anon_sym_byref] = ACTIONS(7908), + [anon_sym_oneway] = ACTIONS(7908), + [anon_sym__Nullable] = ACTIONS(7908), + [anon_sym__Nonnull] = ACTIONS(7908), + [anon_sym__Nullable_result] = ACTIONS(7908), + [anon_sym__Null_unspecified] = ACTIONS(7908), + [anon_sym___autoreleasing] = ACTIONS(7908), + [anon_sym___nullable] = ACTIONS(7908), + [anon_sym___nonnull] = ACTIONS(7908), + [anon_sym___strong] = ACTIONS(7908), + [anon_sym___weak] = ACTIONS(7908), + [anon_sym___bridge] = ACTIONS(7908), + [anon_sym___bridge_transfer] = ACTIONS(7908), + [anon_sym___bridge_retained] = ACTIONS(7908), + [anon_sym___unsafe_unretained] = ACTIONS(7908), + [anon_sym___block] = ACTIONS(7908), + [anon_sym___kindof] = ACTIONS(7908), + [anon_sym___unused] = ACTIONS(7908), + [anon_sym__Complex] = ACTIONS(7908), + [anon_sym___complex] = ACTIONS(7908), + [anon_sym_IBOutlet] = ACTIONS(7908), + [anon_sym_IBInspectable] = ACTIONS(7908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7908), + [anon_sym_COLON] = ACTIONS(7977), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7910), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7914), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7914), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7914), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7914), + [anon_sym_NS_AVAILABLE] = ACTIONS(7916), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7916), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_API_AVAILABLE] = ACTIONS(7916), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7916), + [anon_sym_API_DEPRECATED] = ACTIONS(7916), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7916), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7916), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7916), + [anon_sym___deprecated_msg] = ACTIONS(7916), + [anon_sym___deprecated_enum_msg] = ACTIONS(7916), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7916), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7916), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3326] = { + [sym__expression] = STATE(4457), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_initializer_list] = STATE(5186), + [sym_initializer_pair] = STATE(5186), + [sym_subscript_designator] = STATE(4776), + [sym_field_designator] = STATE(4776), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_initializer_pair_repeat1] = STATE(4776), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(7979), + [anon_sym_LBRACK] = ACTIONS(7926), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(7928), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3327] = { + [sym__expression] = STATE(4457), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_initializer_list] = STATE(5186), + [sym_initializer_pair] = STATE(5186), + [sym_subscript_designator] = STATE(4776), + [sym_field_designator] = STATE(4776), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_initializer_pair_repeat1] = STATE(4776), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(7981), + [anon_sym_LBRACK] = ACTIONS(7926), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(7928), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3328] = { + [sym_identifier] = ACTIONS(7983), + [anon_sym___attribute] = ACTIONS(7983), + [anon_sym___attribute__] = ACTIONS(7983), + [anon_sym_const] = ACTIONS(7983), + [anon_sym_volatile] = ACTIONS(7983), + [anon_sym_restrict] = ACTIONS(7983), + [anon_sym__Atomic] = ACTIONS(7983), + [anon_sym_in] = ACTIONS(7983), + [anon_sym_out] = ACTIONS(7983), + [anon_sym_inout] = ACTIONS(7983), + [anon_sym_bycopy] = ACTIONS(7983), + [anon_sym_byref] = ACTIONS(7983), + [anon_sym_oneway] = ACTIONS(7983), + [anon_sym__Nullable] = ACTIONS(7983), + [anon_sym__Nonnull] = ACTIONS(7983), + [anon_sym__Nullable_result] = ACTIONS(7983), + [anon_sym__Null_unspecified] = ACTIONS(7983), + [anon_sym___autoreleasing] = ACTIONS(7983), + [anon_sym___nullable] = ACTIONS(7983), + [anon_sym___nonnull] = ACTIONS(7983), + [anon_sym___strong] = ACTIONS(7983), + [anon_sym___weak] = ACTIONS(7983), + [anon_sym___bridge] = ACTIONS(7983), + [anon_sym___bridge_transfer] = ACTIONS(7983), + [anon_sym___bridge_retained] = ACTIONS(7983), + [anon_sym___unsafe_unretained] = ACTIONS(7983), + [anon_sym___block] = ACTIONS(7983), + [anon_sym___kindof] = ACTIONS(7983), + [anon_sym___unused] = ACTIONS(7983), + [anon_sym__Complex] = ACTIONS(7983), + [anon_sym___complex] = ACTIONS(7983), + [anon_sym_IBOutlet] = ACTIONS(7983), + [anon_sym_IBInspectable] = ACTIONS(7983), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7983), + [anon_sym_signed] = ACTIONS(7983), + [anon_sym_unsigned] = ACTIONS(7983), + [anon_sym_long] = ACTIONS(7983), + [anon_sym_short] = ACTIONS(7983), + [sym_primitive_type] = ACTIONS(7983), + [anon_sym_enum] = ACTIONS(7983), + [anon_sym_struct] = ACTIONS(7983), + [anon_sym_union] = ACTIONS(7983), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7983), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7983), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7983), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7983), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7983), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7983), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7983), + [anon_sym_NS_AVAILABLE] = ACTIONS(7983), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7983), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7983), + [anon_sym_API_AVAILABLE] = ACTIONS(7983), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7983), + [anon_sym_API_DEPRECATED] = ACTIONS(7983), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7983), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7983), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7983), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7983), + [anon_sym___deprecated_msg] = ACTIONS(7983), + [anon_sym___deprecated_enum_msg] = ACTIONS(7983), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7983), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7983), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7983), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7983), + [anon_sym_NS_ENUM] = ACTIONS(7983), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7983), + [anon_sym_NS_OPTIONS] = ACTIONS(7983), + [anon_sym_typeof] = ACTIONS(7983), + [anon_sym___typeof] = ACTIONS(7983), + [anon_sym___typeof__] = ACTIONS(7983), + [sym_id] = ACTIONS(7983), + [sym_instancetype] = ACTIONS(7983), + [sym_Class] = ACTIONS(7983), + [sym_SEL] = ACTIONS(7983), + [sym_IMP] = ACTIONS(7983), + [sym_BOOL] = ACTIONS(7983), + [sym_auto] = ACTIONS(7983), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3329] = { + [sym__expression] = STATE(4457), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_initializer_list] = STATE(5186), + [sym_initializer_pair] = STATE(5186), + [sym_subscript_designator] = STATE(4776), + [sym_field_designator] = STATE(4776), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_initializer_pair_repeat1] = STATE(4776), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(7985), + [anon_sym_LBRACK] = ACTIONS(7926), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(7928), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3330] = { + [sym_identifier] = ACTIONS(7987), + [anon_sym___attribute] = ACTIONS(7987), + [anon_sym___attribute__] = ACTIONS(7987), + [anon_sym_const] = ACTIONS(7987), + [anon_sym_volatile] = ACTIONS(7987), + [anon_sym_restrict] = ACTIONS(7987), + [anon_sym__Atomic] = ACTIONS(7987), + [anon_sym_in] = ACTIONS(7987), + [anon_sym_out] = ACTIONS(7987), + [anon_sym_inout] = ACTIONS(7987), + [anon_sym_bycopy] = ACTIONS(7987), + [anon_sym_byref] = ACTIONS(7987), + [anon_sym_oneway] = ACTIONS(7987), + [anon_sym__Nullable] = ACTIONS(7987), + [anon_sym__Nonnull] = ACTIONS(7987), + [anon_sym__Nullable_result] = ACTIONS(7987), + [anon_sym__Null_unspecified] = ACTIONS(7987), + [anon_sym___autoreleasing] = ACTIONS(7987), + [anon_sym___nullable] = ACTIONS(7987), + [anon_sym___nonnull] = ACTIONS(7987), + [anon_sym___strong] = ACTIONS(7987), + [anon_sym___weak] = ACTIONS(7987), + [anon_sym___bridge] = ACTIONS(7987), + [anon_sym___bridge_transfer] = ACTIONS(7987), + [anon_sym___bridge_retained] = ACTIONS(7987), + [anon_sym___unsafe_unretained] = ACTIONS(7987), + [anon_sym___block] = ACTIONS(7987), + [anon_sym___kindof] = ACTIONS(7987), + [anon_sym___unused] = ACTIONS(7987), + [anon_sym__Complex] = ACTIONS(7987), + [anon_sym___complex] = ACTIONS(7987), + [anon_sym_IBOutlet] = ACTIONS(7987), + [anon_sym_IBInspectable] = ACTIONS(7987), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7987), + [anon_sym_signed] = ACTIONS(7987), + [anon_sym_unsigned] = ACTIONS(7987), + [anon_sym_long] = ACTIONS(7987), + [anon_sym_short] = ACTIONS(7987), + [sym_primitive_type] = ACTIONS(7987), + [anon_sym_enum] = ACTIONS(7987), + [anon_sym_struct] = ACTIONS(7987), + [anon_sym_union] = ACTIONS(7987), [sym_comment] = ACTIONS(3), [sym_method_attribute_specifier] = ACTIONS(7987), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7990), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7990), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7993), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7993), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7993), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7993), - [anon_sym_NS_AVAILABLE] = ACTIONS(7996), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7996), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7996), - [anon_sym_API_AVAILABLE] = ACTIONS(7996), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7996), - [anon_sym_API_DEPRECATED] = ACTIONS(7996), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7996), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7996), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7996), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7996), - [anon_sym___deprecated_msg] = ACTIONS(7996), - [anon_sym___deprecated_enum_msg] = ACTIONS(7996), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7996), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7996), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7996), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7996), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7987), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7987), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7987), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7987), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7987), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7987), + [anon_sym_NS_AVAILABLE] = ACTIONS(7987), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7987), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7987), + [anon_sym_API_AVAILABLE] = ACTIONS(7987), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7987), + [anon_sym_API_DEPRECATED] = ACTIONS(7987), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7987), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7987), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7987), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7987), + [anon_sym___deprecated_msg] = ACTIONS(7987), + [anon_sym___deprecated_enum_msg] = ACTIONS(7987), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7987), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7987), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7987), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7987), + [anon_sym_NS_ENUM] = ACTIONS(7987), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7987), + [anon_sym_NS_OPTIONS] = ACTIONS(7987), + [anon_sym_typeof] = ACTIONS(7987), + [anon_sym___typeof] = ACTIONS(7987), + [anon_sym___typeof__] = ACTIONS(7987), + [sym_id] = ACTIONS(7987), + [sym_instancetype] = ACTIONS(7987), + [sym_Class] = ACTIONS(7987), + [sym_SEL] = ACTIONS(7987), + [sym_IMP] = ACTIONS(7987), + [sym_BOOL] = ACTIONS(7987), + [sym_auto] = ACTIONS(7987), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -530935,45 +523383,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3381] = { - [sym__expression] = STATE(4359), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_initializer_list] = STATE(4950), - [sym_initializer_pair] = STATE(4950), - [sym_subscript_designator] = STATE(4747), - [sym_field_designator] = STATE(4747), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_initializer_pair_repeat1] = STATE(4747), + [3331] = { + [sym__expression] = STATE(4457), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_initializer_list] = STATE(5186), + [sym_initializer_pair] = STATE(5186), + [sym_subscript_designator] = STATE(4776), + [sym_field_designator] = STATE(4776), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_initializer_pair_repeat1] = STATE(4776), [sym_identifier] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(7999), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -530982,37 +523429,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(8001), - [anon_sym_LBRACK] = ACTIONS(7969), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(7971), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(7989), + [anon_sym_LBRACK] = ACTIONS(7926), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(7928), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -531023,21 +523470,370 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3382] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(8003), - [anon_sym_COMMA] = ACTIONS(8006), - [anon_sym_RPAREN] = ACTIONS(8006), - [anon_sym_LPAREN2] = ACTIONS(8006), - [anon_sym_STAR] = ACTIONS(8006), - [anon_sym_SEMI] = ACTIONS(8006), + [3332] = { + [sym_identifier] = ACTIONS(7991), + [anon_sym___attribute] = ACTIONS(7991), + [anon_sym___attribute__] = ACTIONS(7991), + [anon_sym_const] = ACTIONS(7991), + [anon_sym_volatile] = ACTIONS(7991), + [anon_sym_restrict] = ACTIONS(7991), + [anon_sym__Atomic] = ACTIONS(7991), + [anon_sym_in] = ACTIONS(7991), + [anon_sym_out] = ACTIONS(7991), + [anon_sym_inout] = ACTIONS(7991), + [anon_sym_bycopy] = ACTIONS(7991), + [anon_sym_byref] = ACTIONS(7991), + [anon_sym_oneway] = ACTIONS(7991), + [anon_sym__Nullable] = ACTIONS(7991), + [anon_sym__Nonnull] = ACTIONS(7991), + [anon_sym__Nullable_result] = ACTIONS(7991), + [anon_sym__Null_unspecified] = ACTIONS(7991), + [anon_sym___autoreleasing] = ACTIONS(7991), + [anon_sym___nullable] = ACTIONS(7991), + [anon_sym___nonnull] = ACTIONS(7991), + [anon_sym___strong] = ACTIONS(7991), + [anon_sym___weak] = ACTIONS(7991), + [anon_sym___bridge] = ACTIONS(7991), + [anon_sym___bridge_transfer] = ACTIONS(7991), + [anon_sym___bridge_retained] = ACTIONS(7991), + [anon_sym___unsafe_unretained] = ACTIONS(7991), + [anon_sym___block] = ACTIONS(7991), + [anon_sym___kindof] = ACTIONS(7991), + [anon_sym___unused] = ACTIONS(7991), + [anon_sym__Complex] = ACTIONS(7991), + [anon_sym___complex] = ACTIONS(7991), + [anon_sym_IBOutlet] = ACTIONS(7991), + [anon_sym_IBInspectable] = ACTIONS(7991), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7991), + [anon_sym_signed] = ACTIONS(7991), + [anon_sym_unsigned] = ACTIONS(7991), + [anon_sym_long] = ACTIONS(7991), + [anon_sym_short] = ACTIONS(7991), + [sym_primitive_type] = ACTIONS(7991), + [anon_sym_enum] = ACTIONS(7991), + [anon_sym_struct] = ACTIONS(7991), + [anon_sym_union] = ACTIONS(7991), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7991), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7991), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7991), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7991), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7991), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7991), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7991), + [anon_sym_NS_AVAILABLE] = ACTIONS(7991), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7991), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7991), + [anon_sym_API_AVAILABLE] = ACTIONS(7991), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7991), + [anon_sym_API_DEPRECATED] = ACTIONS(7991), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7991), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7991), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7991), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7991), + [anon_sym___deprecated_msg] = ACTIONS(7991), + [anon_sym___deprecated_enum_msg] = ACTIONS(7991), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7991), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7991), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7991), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7991), + [anon_sym_NS_ENUM] = ACTIONS(7991), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(7991), + [anon_sym_NS_OPTIONS] = ACTIONS(7991), + [anon_sym_typeof] = ACTIONS(7991), + [anon_sym___typeof] = ACTIONS(7991), + [anon_sym___typeof__] = ACTIONS(7991), + [sym_id] = ACTIONS(7991), + [sym_instancetype] = ACTIONS(7991), + [sym_Class] = ACTIONS(7991), + [sym_SEL] = ACTIONS(7991), + [sym_IMP] = ACTIONS(7991), + [sym_BOOL] = ACTIONS(7991), + [sym_auto] = ACTIONS(7991), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3333] = { + [sym_ms_based_modifier] = STATE(5835), + [sym__declarator] = STATE(4207), + [sym__abstract_declarator] = STATE(4279), + [sym_parenthesized_declarator] = STATE(3790), + [sym_abstract_parenthesized_declarator] = STATE(4310), + [sym_pointer_declarator] = STATE(3790), + [sym_abstract_pointer_declarator] = STATE(4310), + [sym_function_declarator] = STATE(3790), + [sym_abstract_function_declarator] = STATE(4310), + [sym_array_declarator] = STATE(3790), + [sym_abstract_array_declarator] = STATE(4310), + [sym_type_qualifier] = STATE(3688), + [sym_parameter_list] = STATE(4311), + [sym_block_abstract_declarator] = STATE(4310), + [sym_block_declarator] = STATE(3790), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(7859), + [anon_sym_RPAREN] = ACTIONS(7993), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_STAR] = ACTIONS(7863), + [anon_sym___attribute] = ACTIONS(7995), + [anon_sym___attribute__] = ACTIONS(7995), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7995), + [anon_sym_NS_AVAILABLE] = ACTIONS(7995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7995), + [anon_sym_API_AVAILABLE] = ACTIONS(7995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7995), + [anon_sym_API_DEPRECATED] = ACTIONS(7995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7995), + [anon_sym___deprecated_msg] = ACTIONS(7995), + [anon_sym___deprecated_enum_msg] = ACTIONS(7995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7995), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3334] = { + [sym_protocol_qualifiers] = STATE(3340), + [sym_generic_type_references] = STATE(3340), + [aux_sym_generic_type_specifier_repeat1] = STATE(3340), + [sym_identifier] = ACTIONS(7997), + [anon_sym_COMMA] = ACTIONS(7999), + [anon_sym_RPAREN] = ACTIONS(7999), + [anon_sym_LPAREN2] = ACTIONS(7999), + [anon_sym_STAR] = ACTIONS(7999), + [anon_sym_LT] = ACTIONS(8001), + [anon_sym_SEMI] = ACTIONS(7999), + [anon_sym_extern] = ACTIONS(7997), + [anon_sym___attribute] = ACTIONS(7997), + [anon_sym___attribute__] = ACTIONS(7997), + [anon_sym___declspec] = ACTIONS(7997), + [anon_sym___based] = ACTIONS(7997), + [anon_sym_LBRACE] = ACTIONS(7999), + [anon_sym_LBRACK] = ACTIONS(7999), + [anon_sym_static] = ACTIONS(7997), + [anon_sym_auto] = ACTIONS(7997), + [anon_sym_register] = ACTIONS(7997), + [anon_sym_inline] = ACTIONS(7997), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7997), + [anon_sym_const] = ACTIONS(7997), + [anon_sym_volatile] = ACTIONS(7997), + [anon_sym_restrict] = ACTIONS(7997), + [anon_sym__Atomic] = ACTIONS(7997), + [anon_sym_in] = ACTIONS(7997), + [anon_sym_out] = ACTIONS(7997), + [anon_sym_inout] = ACTIONS(7997), + [anon_sym_bycopy] = ACTIONS(7997), + [anon_sym_byref] = ACTIONS(7997), + [anon_sym_oneway] = ACTIONS(7997), + [anon_sym__Nullable] = ACTIONS(7997), + [anon_sym__Nonnull] = ACTIONS(7997), + [anon_sym__Nullable_result] = ACTIONS(7997), + [anon_sym__Null_unspecified] = ACTIONS(7997), + [anon_sym___autoreleasing] = ACTIONS(7997), + [anon_sym___nullable] = ACTIONS(7997), + [anon_sym___nonnull] = ACTIONS(7997), + [anon_sym___strong] = ACTIONS(7997), + [anon_sym___weak] = ACTIONS(7997), + [anon_sym___bridge] = ACTIONS(7997), + [anon_sym___bridge_transfer] = ACTIONS(7997), + [anon_sym___bridge_retained] = ACTIONS(7997), + [anon_sym___unsafe_unretained] = ACTIONS(7997), + [anon_sym___block] = ACTIONS(7997), + [anon_sym___kindof] = ACTIONS(7997), + [anon_sym___unused] = ACTIONS(7997), + [anon_sym__Complex] = ACTIONS(7997), + [anon_sym___complex] = ACTIONS(7997), + [anon_sym_IBOutlet] = ACTIONS(7997), + [anon_sym_IBInspectable] = ACTIONS(7997), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7997), + [anon_sym_COLON] = ACTIONS(7999), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7997), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7997), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7997), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7997), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7997), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7997), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7997), + [anon_sym_NS_AVAILABLE] = ACTIONS(7997), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7997), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7997), + [anon_sym_API_AVAILABLE] = ACTIONS(7997), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7997), + [anon_sym_API_DEPRECATED] = ACTIONS(7997), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7997), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7997), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7997), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7997), + [anon_sym___deprecated_msg] = ACTIONS(7997), + [anon_sym___deprecated_enum_msg] = ACTIONS(7997), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7997), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7997), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7997), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7997), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3335] = { + [sym_protocol_qualifiers] = STATE(3341), + [sym_generic_type_references] = STATE(3341), + [aux_sym_generic_type_specifier_repeat1] = STATE(3341), + [sym_identifier] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(8003), + [anon_sym_RPAREN] = ACTIONS(8003), + [anon_sym_LPAREN2] = ACTIONS(8005), + [anon_sym_STAR] = ACTIONS(8003), + [anon_sym_LT] = ACTIONS(8001), + [anon_sym_SEMI] = ACTIONS(8003), + [anon_sym_extern] = ACTIONS(6813), + [anon_sym___attribute] = ACTIONS(6813), + [anon_sym___attribute__] = ACTIONS(6813), + [anon_sym___declspec] = ACTIONS(6813), + [anon_sym___based] = ACTIONS(6813), + [anon_sym_LBRACE] = ACTIONS(8003), + [anon_sym_LBRACK] = ACTIONS(8003), + [anon_sym_static] = ACTIONS(6813), + [anon_sym_auto] = ACTIONS(6813), + [anon_sym_register] = ACTIONS(6813), + [anon_sym_inline] = ACTIONS(6813), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6813), + [anon_sym_const] = ACTIONS(6813), + [anon_sym_volatile] = ACTIONS(6813), + [anon_sym_restrict] = ACTIONS(6813), + [anon_sym__Atomic] = ACTIONS(6813), + [anon_sym_in] = ACTIONS(6813), + [anon_sym_out] = ACTIONS(6813), + [anon_sym_inout] = ACTIONS(6813), + [anon_sym_bycopy] = ACTIONS(6813), + [anon_sym_byref] = ACTIONS(6813), + [anon_sym_oneway] = ACTIONS(6813), + [anon_sym__Nullable] = ACTIONS(6813), + [anon_sym__Nonnull] = ACTIONS(6813), + [anon_sym__Nullable_result] = ACTIONS(6813), + [anon_sym__Null_unspecified] = ACTIONS(6813), + [anon_sym___autoreleasing] = ACTIONS(6813), + [anon_sym___nullable] = ACTIONS(6813), + [anon_sym___nonnull] = ACTIONS(6813), + [anon_sym___strong] = ACTIONS(6813), + [anon_sym___weak] = ACTIONS(6813), + [anon_sym___bridge] = ACTIONS(6813), + [anon_sym___bridge_transfer] = ACTIONS(6813), + [anon_sym___bridge_retained] = ACTIONS(6813), + [anon_sym___unsafe_unretained] = ACTIONS(6813), + [anon_sym___block] = ACTIONS(6813), + [anon_sym___kindof] = ACTIONS(6813), + [anon_sym___unused] = ACTIONS(6813), + [anon_sym__Complex] = ACTIONS(6813), + [anon_sym___complex] = ACTIONS(6813), + [anon_sym_IBOutlet] = ACTIONS(6813), + [anon_sym_IBInspectable] = ACTIONS(6813), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6813), + [anon_sym_COLON] = ACTIONS(8003), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6813), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6813), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE] = ACTIONS(6813), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_API_AVAILABLE] = ACTIONS(6813), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_API_DEPRECATED] = ACTIONS(6813), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6813), + [anon_sym___deprecated_msg] = ACTIONS(6813), + [anon_sym___deprecated_enum_msg] = ACTIONS(6813), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6813), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3336] = { + [sym_protocol_qualifiers] = STATE(3336), + [sym_generic_type_references] = STATE(3336), + [aux_sym_generic_type_specifier_repeat1] = STATE(3336), + [sym_identifier] = ACTIONS(8008), + [anon_sym_COMMA] = ACTIONS(8010), + [anon_sym_RPAREN] = ACTIONS(8010), + [anon_sym_LPAREN2] = ACTIONS(8010), + [anon_sym_STAR] = ACTIONS(8010), + [anon_sym_LT] = ACTIONS(8012), + [anon_sym_SEMI] = ACTIONS(8010), [anon_sym_extern] = ACTIONS(8008), [anon_sym___attribute] = ACTIONS(8008), [anon_sym___attribute__] = ACTIONS(8008), [anon_sym___declspec] = ACTIONS(8008), [anon_sym___based] = ACTIONS(8008), - [anon_sym_LBRACE] = ACTIONS(8006), - [anon_sym_LBRACK] = ACTIONS(8006), + [anon_sym_LBRACE] = ACTIONS(8010), + [anon_sym_LBRACK] = ACTIONS(8010), [anon_sym_static] = ACTIONS(8008), [anon_sym_auto] = ACTIONS(8008), [anon_sym_register] = ACTIONS(8008), @@ -531074,12 +523870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_IBOutlet] = ACTIONS(8008), [anon_sym_IBInspectable] = ACTIONS(8008), [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8008), - [anon_sym_signed] = ACTIONS(8010), - [anon_sym_unsigned] = ACTIONS(8010), - [anon_sym_long] = ACTIONS(8010), - [anon_sym_short] = ACTIONS(8010), - [sym_primitive_type] = ACTIONS(8012), - [anon_sym_COLON] = ACTIONS(8006), + [anon_sym_COLON] = ACTIONS(8010), [sym_comment] = ACTIONS(3), [sym_method_attribute_specifier] = ACTIONS(8008), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8008), @@ -531111,307 +523902,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3383] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3383), - [sym_identifier] = ACTIONS(8014), - [anon_sym_COMMA] = ACTIONS(8016), - [anon_sym_RPAREN] = ACTIONS(8016), - [anon_sym_LPAREN2] = ACTIONS(8016), - [anon_sym_STAR] = ACTIONS(8016), - [anon_sym_SEMI] = ACTIONS(8016), - [anon_sym_extern] = ACTIONS(8014), - [anon_sym___attribute] = ACTIONS(8014), - [anon_sym___attribute__] = ACTIONS(8014), - [anon_sym___declspec] = ACTIONS(8014), - [anon_sym___based] = ACTIONS(8014), - [anon_sym_LBRACE] = ACTIONS(8016), - [anon_sym_LBRACK] = ACTIONS(8016), - [anon_sym_static] = ACTIONS(8014), - [anon_sym_auto] = ACTIONS(8014), - [anon_sym_register] = ACTIONS(8014), - [anon_sym_inline] = ACTIONS(8014), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8014), - [anon_sym_const] = ACTIONS(8014), - [anon_sym_volatile] = ACTIONS(8014), - [anon_sym_restrict] = ACTIONS(8014), - [anon_sym__Atomic] = ACTIONS(8014), - [anon_sym_in] = ACTIONS(8014), - [anon_sym_out] = ACTIONS(8014), - [anon_sym_inout] = ACTIONS(8014), - [anon_sym_bycopy] = ACTIONS(8014), - [anon_sym_byref] = ACTIONS(8014), - [anon_sym_oneway] = ACTIONS(8014), - [anon_sym__Nullable] = ACTIONS(8014), - [anon_sym__Nonnull] = ACTIONS(8014), - [anon_sym__Nullable_result] = ACTIONS(8014), - [anon_sym__Null_unspecified] = ACTIONS(8014), - [anon_sym___autoreleasing] = ACTIONS(8014), - [anon_sym___nullable] = ACTIONS(8014), - [anon_sym___nonnull] = ACTIONS(8014), - [anon_sym___strong] = ACTIONS(8014), - [anon_sym___weak] = ACTIONS(8014), - [anon_sym___bridge] = ACTIONS(8014), - [anon_sym___bridge_transfer] = ACTIONS(8014), - [anon_sym___bridge_retained] = ACTIONS(8014), - [anon_sym___unsafe_unretained] = ACTIONS(8014), - [anon_sym___block] = ACTIONS(8014), - [anon_sym___kindof] = ACTIONS(8014), - [anon_sym___unused] = ACTIONS(8014), - [anon_sym__Complex] = ACTIONS(8014), - [anon_sym___complex] = ACTIONS(8014), - [anon_sym_IBOutlet] = ACTIONS(8014), - [anon_sym_IBInspectable] = ACTIONS(8014), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8014), - [anon_sym_signed] = ACTIONS(8018), - [anon_sym_unsigned] = ACTIONS(8018), - [anon_sym_long] = ACTIONS(8018), - [anon_sym_short] = ACTIONS(8018), - [sym_primitive_type] = ACTIONS(8014), - [anon_sym_COLON] = ACTIONS(8016), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8014), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8014), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8014), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8014), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8014), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8014), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8014), - [anon_sym_NS_AVAILABLE] = ACTIONS(8014), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8014), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8014), - [anon_sym_API_AVAILABLE] = ACTIONS(8014), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8014), - [anon_sym_API_DEPRECATED] = ACTIONS(8014), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8014), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8014), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8014), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8014), - [anon_sym___deprecated_msg] = ACTIONS(8014), - [anon_sym___deprecated_enum_msg] = ACTIONS(8014), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8014), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8014), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8014), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8014), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3384] = { - [sym_attribute_specifier] = STATE(3378), - [sym_ms_declspec_modifier] = STATE(3378), - [sym_storage_class_specifier] = STATE(3378), - [sym_type_qualifier] = STATE(3378), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3598), - [sym_availability_attribute_specifier] = STATE(3598), - [aux_sym__declaration_specifiers_repeat1] = STATE(3378), - [sym_identifier] = ACTIONS(8021), - [anon_sym_COMMA] = ACTIONS(8023), - [anon_sym_RPAREN] = ACTIONS(8023), - [anon_sym_LPAREN2] = ACTIONS(8023), - [anon_sym_STAR] = ACTIONS(8023), - [anon_sym_SEMI] = ACTIONS(8023), - [anon_sym_extern] = ACTIONS(7945), - [anon_sym___attribute] = ACTIONS(7947), - [anon_sym___attribute__] = ACTIONS(7947), - [anon_sym___declspec] = ACTIONS(7949), - [anon_sym___based] = ACTIONS(8021), - [anon_sym_LBRACK] = ACTIONS(8023), - [anon_sym_static] = ACTIONS(7945), - [anon_sym_auto] = ACTIONS(7945), - [anon_sym_register] = ACTIONS(7945), - [anon_sym_inline] = ACTIONS(7945), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7945), - [anon_sym_const] = ACTIONS(7951), - [anon_sym_volatile] = ACTIONS(7951), - [anon_sym_restrict] = ACTIONS(7951), - [anon_sym__Atomic] = ACTIONS(7951), - [anon_sym_in] = ACTIONS(7951), - [anon_sym_out] = ACTIONS(7951), - [anon_sym_inout] = ACTIONS(7951), - [anon_sym_bycopy] = ACTIONS(7951), - [anon_sym_byref] = ACTIONS(7951), - [anon_sym_oneway] = ACTIONS(7951), - [anon_sym__Nullable] = ACTIONS(7951), - [anon_sym__Nonnull] = ACTIONS(7951), - [anon_sym__Nullable_result] = ACTIONS(7951), - [anon_sym__Null_unspecified] = ACTIONS(7951), - [anon_sym___autoreleasing] = ACTIONS(7951), - [anon_sym___nullable] = ACTIONS(7951), - [anon_sym___nonnull] = ACTIONS(7951), - [anon_sym___strong] = ACTIONS(7951), - [anon_sym___weak] = ACTIONS(7951), - [anon_sym___bridge] = ACTIONS(7951), - [anon_sym___bridge_transfer] = ACTIONS(7951), - [anon_sym___bridge_retained] = ACTIONS(7951), - [anon_sym___unsafe_unretained] = ACTIONS(7951), - [anon_sym___block] = ACTIONS(7951), - [anon_sym___kindof] = ACTIONS(7951), - [anon_sym___unused] = ACTIONS(7951), - [anon_sym__Complex] = ACTIONS(7951), - [anon_sym___complex] = ACTIONS(7951), - [anon_sym_IBOutlet] = ACTIONS(7951), - [anon_sym_IBInspectable] = ACTIONS(7951), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7951), - [anon_sym_COLON] = ACTIONS(8023), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7953), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7955), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7955), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7957), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7957), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7957), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7957), - [anon_sym_NS_AVAILABLE] = ACTIONS(7959), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7959), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_API_AVAILABLE] = ACTIONS(7959), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7959), - [anon_sym_API_DEPRECATED] = ACTIONS(7959), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7959), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7959), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7959), - [anon_sym___deprecated_msg] = ACTIONS(7959), - [anon_sym___deprecated_enum_msg] = ACTIONS(7959), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7959), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7959), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3385] = { - [sym_attribute_specifier] = STATE(3380), - [sym_ms_declspec_modifier] = STATE(3380), - [sym_storage_class_specifier] = STATE(3380), - [sym_type_qualifier] = STATE(3380), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3598), - [sym_availability_attribute_specifier] = STATE(3598), - [aux_sym__declaration_specifiers_repeat1] = STATE(3380), - [sym_identifier] = ACTIONS(8025), - [anon_sym_COMMA] = ACTIONS(8027), - [anon_sym_RPAREN] = ACTIONS(8027), - [anon_sym_LPAREN2] = ACTIONS(8027), - [anon_sym_STAR] = ACTIONS(8027), - [anon_sym_SEMI] = ACTIONS(8027), - [anon_sym_extern] = ACTIONS(7945), - [anon_sym___attribute] = ACTIONS(7947), - [anon_sym___attribute__] = ACTIONS(7947), - [anon_sym___declspec] = ACTIONS(7949), - [anon_sym___based] = ACTIONS(8025), - [anon_sym_LBRACK] = ACTIONS(8027), - [anon_sym_static] = ACTIONS(7945), - [anon_sym_auto] = ACTIONS(7945), - [anon_sym_register] = ACTIONS(7945), - [anon_sym_inline] = ACTIONS(7945), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7945), - [anon_sym_const] = ACTIONS(7951), - [anon_sym_volatile] = ACTIONS(7951), - [anon_sym_restrict] = ACTIONS(7951), - [anon_sym__Atomic] = ACTIONS(7951), - [anon_sym_in] = ACTIONS(7951), - [anon_sym_out] = ACTIONS(7951), - [anon_sym_inout] = ACTIONS(7951), - [anon_sym_bycopy] = ACTIONS(7951), - [anon_sym_byref] = ACTIONS(7951), - [anon_sym_oneway] = ACTIONS(7951), - [anon_sym__Nullable] = ACTIONS(7951), - [anon_sym__Nonnull] = ACTIONS(7951), - [anon_sym__Nullable_result] = ACTIONS(7951), - [anon_sym__Null_unspecified] = ACTIONS(7951), - [anon_sym___autoreleasing] = ACTIONS(7951), - [anon_sym___nullable] = ACTIONS(7951), - [anon_sym___nonnull] = ACTIONS(7951), - [anon_sym___strong] = ACTIONS(7951), - [anon_sym___weak] = ACTIONS(7951), - [anon_sym___bridge] = ACTIONS(7951), - [anon_sym___bridge_transfer] = ACTIONS(7951), - [anon_sym___bridge_retained] = ACTIONS(7951), - [anon_sym___unsafe_unretained] = ACTIONS(7951), - [anon_sym___block] = ACTIONS(7951), - [anon_sym___kindof] = ACTIONS(7951), - [anon_sym___unused] = ACTIONS(7951), - [anon_sym__Complex] = ACTIONS(7951), - [anon_sym___complex] = ACTIONS(7951), - [anon_sym_IBOutlet] = ACTIONS(7951), - [anon_sym_IBInspectable] = ACTIONS(7951), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7951), - [anon_sym_COLON] = ACTIONS(8027), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7953), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7955), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7955), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7957), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7957), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7957), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7957), - [anon_sym_NS_AVAILABLE] = ACTIONS(7959), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7959), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_API_AVAILABLE] = ACTIONS(7959), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7959), - [anon_sym_API_DEPRECATED] = ACTIONS(7959), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7959), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7959), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7959), - [anon_sym___deprecated_msg] = ACTIONS(7959), - [anon_sym___deprecated_enum_msg] = ACTIONS(7959), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7959), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7959), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3386] = { - [sym__expression] = STATE(4437), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_initializer_list] = STATE(5079), - [sym_initializer_pair] = STATE(5079), - [sym_subscript_designator] = STATE(4747), - [sym_field_designator] = STATE(4747), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_initializer_pair_repeat1] = STATE(4747), + [3337] = { + [sym__expression] = STATE(4457), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_initializer_list] = STATE(5186), + [sym_initializer_pair] = STATE(5186), + [sym_subscript_designator] = STATE(4776), + [sym_field_designator] = STATE(4776), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [aux_sym_initializer_pair_repeat1] = STATE(4776), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -531421,37 +523948,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(8029), - [anon_sym_LBRACK] = ACTIONS(7969), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(7971), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(7926), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(7928), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -531462,86 +523988,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3387] = { - [sym__expression] = STATE(4437), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_initializer_list] = STATE(5079), - [sym_initializer_pair] = STATE(5079), - [sym_subscript_designator] = STATE(4747), - [sym_field_designator] = STATE(4747), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_initializer_pair_repeat1] = STATE(4747), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(8031), - [anon_sym_LBRACK] = ACTIONS(7969), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(7971), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [3338] = { + [sym_ms_based_modifier] = STATE(5666), + [sym__declarator] = STATE(4412), + [sym__abstract_declarator] = STATE(4444), + [sym_parenthesized_declarator] = STATE(4472), + [sym_abstract_parenthesized_declarator] = STATE(4310), + [sym_pointer_declarator] = STATE(4472), + [sym_abstract_pointer_declarator] = STATE(4310), + [sym_function_declarator] = STATE(4472), + [sym_abstract_function_declarator] = STATE(4310), + [sym_array_declarator] = STATE(4472), + [sym_abstract_array_declarator] = STATE(4310), + [sym_type_qualifier] = STATE(3688), + [sym_parameter_list] = STATE(4311), + [sym_block_abstract_declarator] = STATE(4310), + [sym_block_declarator] = STATE(4472), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(7881), + [anon_sym_LPAREN2] = ACTIONS(7883), + [anon_sym_STAR] = ACTIONS(7885), + [anon_sym___attribute] = ACTIONS(7995), + [anon_sym___attribute__] = ACTIONS(7995), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [sym_method_attribute_specifier] = ACTIONS(7995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7995), + [anon_sym_NS_AVAILABLE] = ACTIONS(7995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7995), + [anon_sym_API_AVAILABLE] = ACTIONS(7995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7995), + [anon_sym_API_DEPRECATED] = ACTIONS(7995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7995), + [anon_sym___deprecated_msg] = ACTIONS(7995), + [anon_sym___deprecated_enum_msg] = ACTIONS(7995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7995), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -531549,86 +524074,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3388] = { - [sym_ms_based_modifier] = STATE(5875), - [sym__declarator] = STATE(4178), - [sym__abstract_declarator] = STATE(4282), - [sym_parenthesized_declarator] = STATE(3843), - [sym_abstract_parenthesized_declarator] = STATE(4266), - [sym_pointer_declarator] = STATE(3843), - [sym_abstract_pointer_declarator] = STATE(4266), - [sym_function_declarator] = STATE(3843), - [sym_abstract_function_declarator] = STATE(4266), - [sym_array_declarator] = STATE(3843), - [sym_abstract_array_declarator] = STATE(4266), - [sym_type_qualifier] = STATE(3725), - [sym_parameter_list] = STATE(4263), - [sym_block_abstract_declarator] = STATE(4266), - [sym_block_declarator] = STATE(3843), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(7909), - [anon_sym_RPAREN] = ACTIONS(8033), - [anon_sym_LPAREN2] = ACTIONS(6521), - [anon_sym_STAR] = ACTIONS(7913), - [anon_sym___attribute] = ACTIONS(8035), - [anon_sym___attribute__] = ACTIONS(8035), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_LBRACK] = ACTIONS(6529), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [3339] = { + [sym_ms_based_modifier] = STATE(5659), + [sym__declarator] = STATE(3834), + [sym__abstract_declarator] = STATE(4444), + [sym_parenthesized_declarator] = STATE(3790), + [sym_abstract_parenthesized_declarator] = STATE(4310), + [sym_pointer_declarator] = STATE(3790), + [sym_abstract_pointer_declarator] = STATE(4310), + [sym_function_declarator] = STATE(3790), + [sym_abstract_function_declarator] = STATE(4310), + [sym_array_declarator] = STATE(3790), + [sym_abstract_array_declarator] = STATE(4310), + [sym_type_qualifier] = STATE(3688), + [sym_parameter_list] = STATE(4311), + [sym_block_abstract_declarator] = STATE(4310), + [sym_block_declarator] = STATE(3790), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(7859), + [anon_sym_LPAREN2] = ACTIONS(7877), + [anon_sym_STAR] = ACTIONS(7879), + [anon_sym___attribute] = ACTIONS(7995), + [anon_sym___attribute__] = ACTIONS(7995), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8035), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8035), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8035), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8035), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8035), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8035), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8035), - [anon_sym_NS_AVAILABLE] = ACTIONS(8035), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8035), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8035), - [anon_sym_API_AVAILABLE] = ACTIONS(8035), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8035), - [anon_sym_API_DEPRECATED] = ACTIONS(8035), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8035), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8035), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8035), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8035), - [anon_sym___deprecated_msg] = ACTIONS(8035), - [anon_sym___deprecated_enum_msg] = ACTIONS(8035), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8035), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8035), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8035), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8035), + [sym_method_attribute_specifier] = ACTIONS(7995), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7995), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7995), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7995), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7995), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7995), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7995), + [anon_sym_NS_AVAILABLE] = ACTIONS(7995), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7995), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7995), + [anon_sym_API_AVAILABLE] = ACTIONS(7995), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7995), + [anon_sym_API_DEPRECATED] = ACTIONS(7995), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7995), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7995), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7995), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7995), + [anon_sym___deprecated_msg] = ACTIONS(7995), + [anon_sym___deprecated_enum_msg] = ACTIONS(7995), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7995), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7995), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7995), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7995), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -531636,86 +524160,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3389] = { - [sym_identifier] = ACTIONS(8037), - [anon_sym___attribute] = ACTIONS(8037), - [anon_sym___attribute__] = ACTIONS(8037), - [anon_sym_const] = ACTIONS(8037), - [anon_sym_volatile] = ACTIONS(8037), - [anon_sym_restrict] = ACTIONS(8037), - [anon_sym__Atomic] = ACTIONS(8037), - [anon_sym_in] = ACTIONS(8037), - [anon_sym_out] = ACTIONS(8037), - [anon_sym_inout] = ACTIONS(8037), - [anon_sym_bycopy] = ACTIONS(8037), - [anon_sym_byref] = ACTIONS(8037), - [anon_sym_oneway] = ACTIONS(8037), - [anon_sym__Nullable] = ACTIONS(8037), - [anon_sym__Nonnull] = ACTIONS(8037), - [anon_sym__Nullable_result] = ACTIONS(8037), - [anon_sym__Null_unspecified] = ACTIONS(8037), - [anon_sym___autoreleasing] = ACTIONS(8037), - [anon_sym___nullable] = ACTIONS(8037), - [anon_sym___nonnull] = ACTIONS(8037), - [anon_sym___strong] = ACTIONS(8037), - [anon_sym___weak] = ACTIONS(8037), - [anon_sym___bridge] = ACTIONS(8037), - [anon_sym___bridge_transfer] = ACTIONS(8037), - [anon_sym___bridge_retained] = ACTIONS(8037), - [anon_sym___unsafe_unretained] = ACTIONS(8037), - [anon_sym___block] = ACTIONS(8037), - [anon_sym___kindof] = ACTIONS(8037), - [anon_sym___unused] = ACTIONS(8037), - [anon_sym__Complex] = ACTIONS(8037), - [anon_sym___complex] = ACTIONS(8037), - [anon_sym_IBOutlet] = ACTIONS(8037), - [anon_sym_IBInspectable] = ACTIONS(8037), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8037), - [anon_sym_signed] = ACTIONS(8037), - [anon_sym_unsigned] = ACTIONS(8037), - [anon_sym_long] = ACTIONS(8037), - [anon_sym_short] = ACTIONS(8037), - [sym_primitive_type] = ACTIONS(8037), - [anon_sym_enum] = ACTIONS(8037), - [anon_sym_NS_ENUM] = ACTIONS(8037), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(8037), - [anon_sym_NS_OPTIONS] = ACTIONS(8037), - [anon_sym_struct] = ACTIONS(8037), - [anon_sym_union] = ACTIONS(8037), + [3340] = { + [sym_protocol_qualifiers] = STATE(3336), + [sym_generic_type_references] = STATE(3336), + [aux_sym_generic_type_specifier_repeat1] = STATE(3336), + [sym_identifier] = ACTIONS(8015), + [anon_sym_COMMA] = ACTIONS(8017), + [anon_sym_RPAREN] = ACTIONS(8017), + [anon_sym_LPAREN2] = ACTIONS(8017), + [anon_sym_STAR] = ACTIONS(8017), + [anon_sym_LT] = ACTIONS(8001), + [anon_sym_SEMI] = ACTIONS(8017), + [anon_sym_extern] = ACTIONS(8015), + [anon_sym___attribute] = ACTIONS(8015), + [anon_sym___attribute__] = ACTIONS(8015), + [anon_sym___declspec] = ACTIONS(8015), + [anon_sym___based] = ACTIONS(8015), + [anon_sym_LBRACE] = ACTIONS(8017), + [anon_sym_LBRACK] = ACTIONS(8017), + [anon_sym_static] = ACTIONS(8015), + [anon_sym_auto] = ACTIONS(8015), + [anon_sym_register] = ACTIONS(8015), + [anon_sym_inline] = ACTIONS(8015), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8015), + [anon_sym_const] = ACTIONS(8015), + [anon_sym_volatile] = ACTIONS(8015), + [anon_sym_restrict] = ACTIONS(8015), + [anon_sym__Atomic] = ACTIONS(8015), + [anon_sym_in] = ACTIONS(8015), + [anon_sym_out] = ACTIONS(8015), + [anon_sym_inout] = ACTIONS(8015), + [anon_sym_bycopy] = ACTIONS(8015), + [anon_sym_byref] = ACTIONS(8015), + [anon_sym_oneway] = ACTIONS(8015), + [anon_sym__Nullable] = ACTIONS(8015), + [anon_sym__Nonnull] = ACTIONS(8015), + [anon_sym__Nullable_result] = ACTIONS(8015), + [anon_sym__Null_unspecified] = ACTIONS(8015), + [anon_sym___autoreleasing] = ACTIONS(8015), + [anon_sym___nullable] = ACTIONS(8015), + [anon_sym___nonnull] = ACTIONS(8015), + [anon_sym___strong] = ACTIONS(8015), + [anon_sym___weak] = ACTIONS(8015), + [anon_sym___bridge] = ACTIONS(8015), + [anon_sym___bridge_transfer] = ACTIONS(8015), + [anon_sym___bridge_retained] = ACTIONS(8015), + [anon_sym___unsafe_unretained] = ACTIONS(8015), + [anon_sym___block] = ACTIONS(8015), + [anon_sym___kindof] = ACTIONS(8015), + [anon_sym___unused] = ACTIONS(8015), + [anon_sym__Complex] = ACTIONS(8015), + [anon_sym___complex] = ACTIONS(8015), + [anon_sym_IBOutlet] = ACTIONS(8015), + [anon_sym_IBInspectable] = ACTIONS(8015), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8015), + [anon_sym_COLON] = ACTIONS(8017), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8037), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8037), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8037), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8037), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8037), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8037), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8037), - [anon_sym_NS_AVAILABLE] = ACTIONS(8037), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8037), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8037), - [anon_sym_API_AVAILABLE] = ACTIONS(8037), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8037), - [anon_sym_API_DEPRECATED] = ACTIONS(8037), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8037), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8037), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8037), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8037), - [anon_sym___deprecated_msg] = ACTIONS(8037), - [anon_sym___deprecated_enum_msg] = ACTIONS(8037), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8037), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8037), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8037), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8037), - [anon_sym_typeof] = ACTIONS(8037), - [anon_sym___typeof] = ACTIONS(8037), - [anon_sym___typeof__] = ACTIONS(8037), - [sym_id] = ACTIONS(8037), - [sym_instancetype] = ACTIONS(8037), - [sym_Class] = ACTIONS(8037), - [sym_SEL] = ACTIONS(8037), - [sym_IMP] = ACTIONS(8037), - [sym_BOOL] = ACTIONS(8037), - [sym_auto] = ACTIONS(8037), + [sym_method_attribute_specifier] = ACTIONS(8015), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8015), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8015), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8015), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8015), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8015), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8015), + [anon_sym_NS_AVAILABLE] = ACTIONS(8015), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8015), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8015), + [anon_sym_API_AVAILABLE] = ACTIONS(8015), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8015), + [anon_sym_API_DEPRECATED] = ACTIONS(8015), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8015), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8015), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8015), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8015), + [anon_sym___deprecated_msg] = ACTIONS(8015), + [anon_sym___deprecated_enum_msg] = ACTIONS(8015), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8015), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8015), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8015), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8015), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -531723,86 +524246,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3390] = { - [sym_identifier] = ACTIONS(8039), - [anon_sym___attribute] = ACTIONS(8039), - [anon_sym___attribute__] = ACTIONS(8039), - [anon_sym_const] = ACTIONS(8039), - [anon_sym_volatile] = ACTIONS(8039), - [anon_sym_restrict] = ACTIONS(8039), - [anon_sym__Atomic] = ACTIONS(8039), - [anon_sym_in] = ACTIONS(8039), - [anon_sym_out] = ACTIONS(8039), - [anon_sym_inout] = ACTIONS(8039), - [anon_sym_bycopy] = ACTIONS(8039), - [anon_sym_byref] = ACTIONS(8039), - [anon_sym_oneway] = ACTIONS(8039), - [anon_sym__Nullable] = ACTIONS(8039), - [anon_sym__Nonnull] = ACTIONS(8039), - [anon_sym__Nullable_result] = ACTIONS(8039), - [anon_sym__Null_unspecified] = ACTIONS(8039), - [anon_sym___autoreleasing] = ACTIONS(8039), - [anon_sym___nullable] = ACTIONS(8039), - [anon_sym___nonnull] = ACTIONS(8039), - [anon_sym___strong] = ACTIONS(8039), - [anon_sym___weak] = ACTIONS(8039), - [anon_sym___bridge] = ACTIONS(8039), - [anon_sym___bridge_transfer] = ACTIONS(8039), - [anon_sym___bridge_retained] = ACTIONS(8039), - [anon_sym___unsafe_unretained] = ACTIONS(8039), - [anon_sym___block] = ACTIONS(8039), - [anon_sym___kindof] = ACTIONS(8039), - [anon_sym___unused] = ACTIONS(8039), - [anon_sym__Complex] = ACTIONS(8039), - [anon_sym___complex] = ACTIONS(8039), - [anon_sym_IBOutlet] = ACTIONS(8039), - [anon_sym_IBInspectable] = ACTIONS(8039), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8039), - [anon_sym_signed] = ACTIONS(8039), - [anon_sym_unsigned] = ACTIONS(8039), - [anon_sym_long] = ACTIONS(8039), - [anon_sym_short] = ACTIONS(8039), - [sym_primitive_type] = ACTIONS(8039), - [anon_sym_enum] = ACTIONS(8039), - [anon_sym_NS_ENUM] = ACTIONS(8039), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(8039), - [anon_sym_NS_OPTIONS] = ACTIONS(8039), - [anon_sym_struct] = ACTIONS(8039), - [anon_sym_union] = ACTIONS(8039), + [3341] = { + [sym_protocol_qualifiers] = STATE(3336), + [sym_generic_type_references] = STATE(3336), + [aux_sym_generic_type_specifier_repeat1] = STATE(3336), + [sym_identifier] = ACTIONS(8019), + [anon_sym_COMMA] = ACTIONS(8021), + [anon_sym_RPAREN] = ACTIONS(8021), + [anon_sym_LPAREN2] = ACTIONS(8021), + [anon_sym_STAR] = ACTIONS(8021), + [anon_sym_LT] = ACTIONS(8001), + [anon_sym_SEMI] = ACTIONS(8021), + [anon_sym_extern] = ACTIONS(8019), + [anon_sym___attribute] = ACTIONS(8019), + [anon_sym___attribute__] = ACTIONS(8019), + [anon_sym___declspec] = ACTIONS(8019), + [anon_sym___based] = ACTIONS(8019), + [anon_sym_LBRACE] = ACTIONS(8021), + [anon_sym_LBRACK] = ACTIONS(8021), + [anon_sym_static] = ACTIONS(8019), + [anon_sym_auto] = ACTIONS(8019), + [anon_sym_register] = ACTIONS(8019), + [anon_sym_inline] = ACTIONS(8019), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8019), + [anon_sym_const] = ACTIONS(8019), + [anon_sym_volatile] = ACTIONS(8019), + [anon_sym_restrict] = ACTIONS(8019), + [anon_sym__Atomic] = ACTIONS(8019), + [anon_sym_in] = ACTIONS(8019), + [anon_sym_out] = ACTIONS(8019), + [anon_sym_inout] = ACTIONS(8019), + [anon_sym_bycopy] = ACTIONS(8019), + [anon_sym_byref] = ACTIONS(8019), + [anon_sym_oneway] = ACTIONS(8019), + [anon_sym__Nullable] = ACTIONS(8019), + [anon_sym__Nonnull] = ACTIONS(8019), + [anon_sym__Nullable_result] = ACTIONS(8019), + [anon_sym__Null_unspecified] = ACTIONS(8019), + [anon_sym___autoreleasing] = ACTIONS(8019), + [anon_sym___nullable] = ACTIONS(8019), + [anon_sym___nonnull] = ACTIONS(8019), + [anon_sym___strong] = ACTIONS(8019), + [anon_sym___weak] = ACTIONS(8019), + [anon_sym___bridge] = ACTIONS(8019), + [anon_sym___bridge_transfer] = ACTIONS(8019), + [anon_sym___bridge_retained] = ACTIONS(8019), + [anon_sym___unsafe_unretained] = ACTIONS(8019), + [anon_sym___block] = ACTIONS(8019), + [anon_sym___kindof] = ACTIONS(8019), + [anon_sym___unused] = ACTIONS(8019), + [anon_sym__Complex] = ACTIONS(8019), + [anon_sym___complex] = ACTIONS(8019), + [anon_sym_IBOutlet] = ACTIONS(8019), + [anon_sym_IBInspectable] = ACTIONS(8019), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8019), + [anon_sym_COLON] = ACTIONS(8021), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8039), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8039), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8039), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8039), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8039), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8039), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8039), - [anon_sym_NS_AVAILABLE] = ACTIONS(8039), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8039), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8039), - [anon_sym_API_AVAILABLE] = ACTIONS(8039), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8039), - [anon_sym_API_DEPRECATED] = ACTIONS(8039), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8039), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8039), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8039), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8039), - [anon_sym___deprecated_msg] = ACTIONS(8039), - [anon_sym___deprecated_enum_msg] = ACTIONS(8039), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8039), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8039), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8039), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8039), - [anon_sym_typeof] = ACTIONS(8039), - [anon_sym___typeof] = ACTIONS(8039), - [anon_sym___typeof__] = ACTIONS(8039), - [sym_id] = ACTIONS(8039), - [sym_instancetype] = ACTIONS(8039), - [sym_Class] = ACTIONS(8039), - [sym_SEL] = ACTIONS(8039), - [sym_IMP] = ACTIONS(8039), - [sym_BOOL] = ACTIONS(8039), - [sym_auto] = ACTIONS(8039), + [sym_method_attribute_specifier] = ACTIONS(8019), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8019), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8019), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8019), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8019), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8019), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8019), + [anon_sym_NS_AVAILABLE] = ACTIONS(8019), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8019), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8019), + [anon_sym_API_AVAILABLE] = ACTIONS(8019), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8019), + [anon_sym_API_DEPRECATED] = ACTIONS(8019), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8019), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8019), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8019), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8019), + [anon_sym___deprecated_msg] = ACTIONS(8019), + [anon_sym___deprecated_enum_msg] = ACTIONS(8019), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8019), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8019), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8019), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8019), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -531810,86 +524332,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3391] = { - [sym_identifier] = ACTIONS(8041), - [anon_sym___attribute] = ACTIONS(8041), - [anon_sym___attribute__] = ACTIONS(8041), - [anon_sym_const] = ACTIONS(8041), - [anon_sym_volatile] = ACTIONS(8041), - [anon_sym_restrict] = ACTIONS(8041), - [anon_sym__Atomic] = ACTIONS(8041), - [anon_sym_in] = ACTIONS(8041), - [anon_sym_out] = ACTIONS(8041), - [anon_sym_inout] = ACTIONS(8041), - [anon_sym_bycopy] = ACTIONS(8041), - [anon_sym_byref] = ACTIONS(8041), - [anon_sym_oneway] = ACTIONS(8041), - [anon_sym__Nullable] = ACTIONS(8041), - [anon_sym__Nonnull] = ACTIONS(8041), - [anon_sym__Nullable_result] = ACTIONS(8041), - [anon_sym__Null_unspecified] = ACTIONS(8041), - [anon_sym___autoreleasing] = ACTIONS(8041), - [anon_sym___nullable] = ACTIONS(8041), - [anon_sym___nonnull] = ACTIONS(8041), - [anon_sym___strong] = ACTIONS(8041), - [anon_sym___weak] = ACTIONS(8041), - [anon_sym___bridge] = ACTIONS(8041), - [anon_sym___bridge_transfer] = ACTIONS(8041), - [anon_sym___bridge_retained] = ACTIONS(8041), - [anon_sym___unsafe_unretained] = ACTIONS(8041), - [anon_sym___block] = ACTIONS(8041), - [anon_sym___kindof] = ACTIONS(8041), - [anon_sym___unused] = ACTIONS(8041), - [anon_sym__Complex] = ACTIONS(8041), - [anon_sym___complex] = ACTIONS(8041), - [anon_sym_IBOutlet] = ACTIONS(8041), - [anon_sym_IBInspectable] = ACTIONS(8041), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8041), - [anon_sym_signed] = ACTIONS(8041), - [anon_sym_unsigned] = ACTIONS(8041), - [anon_sym_long] = ACTIONS(8041), - [anon_sym_short] = ACTIONS(8041), - [sym_primitive_type] = ACTIONS(8041), - [anon_sym_enum] = ACTIONS(8041), - [anon_sym_NS_ENUM] = ACTIONS(8041), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(8041), - [anon_sym_NS_OPTIONS] = ACTIONS(8041), - [anon_sym_struct] = ACTIONS(8041), - [anon_sym_union] = ACTIONS(8041), + [3342] = { + [sym_field_declaration_list] = STATE(3456), + [sym_superclass_reference] = STATE(3378), + [sym_identifier] = ACTIONS(8023), + [anon_sym_COMMA] = ACTIONS(8025), + [anon_sym_RPAREN] = ACTIONS(8025), + [anon_sym_LPAREN2] = ACTIONS(8025), + [anon_sym_STAR] = ACTIONS(8025), + [anon_sym_SEMI] = ACTIONS(8025), + [anon_sym_extern] = ACTIONS(8023), + [anon_sym___attribute] = ACTIONS(8023), + [anon_sym___attribute__] = ACTIONS(8023), + [anon_sym___declspec] = ACTIONS(8023), + [anon_sym___based] = ACTIONS(8023), + [anon_sym_LBRACE] = ACTIONS(8027), + [anon_sym_LBRACK] = ACTIONS(8025), + [anon_sym_static] = ACTIONS(8023), + [anon_sym_auto] = ACTIONS(8023), + [anon_sym_register] = ACTIONS(8023), + [anon_sym_inline] = ACTIONS(8023), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8023), + [anon_sym_const] = ACTIONS(8023), + [anon_sym_volatile] = ACTIONS(8023), + [anon_sym_restrict] = ACTIONS(8023), + [anon_sym__Atomic] = ACTIONS(8023), + [anon_sym_in] = ACTIONS(8023), + [anon_sym_out] = ACTIONS(8023), + [anon_sym_inout] = ACTIONS(8023), + [anon_sym_bycopy] = ACTIONS(8023), + [anon_sym_byref] = ACTIONS(8023), + [anon_sym_oneway] = ACTIONS(8023), + [anon_sym__Nullable] = ACTIONS(8023), + [anon_sym__Nonnull] = ACTIONS(8023), + [anon_sym__Nullable_result] = ACTIONS(8023), + [anon_sym__Null_unspecified] = ACTIONS(8023), + [anon_sym___autoreleasing] = ACTIONS(8023), + [anon_sym___nullable] = ACTIONS(8023), + [anon_sym___nonnull] = ACTIONS(8023), + [anon_sym___strong] = ACTIONS(8023), + [anon_sym___weak] = ACTIONS(8023), + [anon_sym___bridge] = ACTIONS(8023), + [anon_sym___bridge_transfer] = ACTIONS(8023), + [anon_sym___bridge_retained] = ACTIONS(8023), + [anon_sym___unsafe_unretained] = ACTIONS(8023), + [anon_sym___block] = ACTIONS(8023), + [anon_sym___kindof] = ACTIONS(8023), + [anon_sym___unused] = ACTIONS(8023), + [anon_sym__Complex] = ACTIONS(8023), + [anon_sym___complex] = ACTIONS(8023), + [anon_sym_IBOutlet] = ACTIONS(8023), + [anon_sym_IBInspectable] = ACTIONS(8023), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8023), + [anon_sym_COLON] = ACTIONS(8029), + [anon_sym_ATdefs] = ACTIONS(8031), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8041), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8041), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8041), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8041), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8041), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8041), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8041), - [anon_sym_NS_AVAILABLE] = ACTIONS(8041), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8041), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8041), - [anon_sym_API_AVAILABLE] = ACTIONS(8041), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8041), - [anon_sym_API_DEPRECATED] = ACTIONS(8041), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8041), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8041), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8041), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8041), - [anon_sym___deprecated_msg] = ACTIONS(8041), - [anon_sym___deprecated_enum_msg] = ACTIONS(8041), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8041), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8041), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8041), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8041), - [anon_sym_typeof] = ACTIONS(8041), - [anon_sym___typeof] = ACTIONS(8041), - [anon_sym___typeof__] = ACTIONS(8041), - [sym_id] = ACTIONS(8041), - [sym_instancetype] = ACTIONS(8041), - [sym_Class] = ACTIONS(8041), - [sym_SEL] = ACTIONS(8041), - [sym_IMP] = ACTIONS(8041), - [sym_BOOL] = ACTIONS(8041), - [sym_auto] = ACTIONS(8041), + [sym_method_attribute_specifier] = ACTIONS(8023), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8023), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8023), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8023), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8023), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8023), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8023), + [anon_sym_NS_AVAILABLE] = ACTIONS(8023), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8023), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_API_AVAILABLE] = ACTIONS(8023), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8023), + [anon_sym_API_DEPRECATED] = ACTIONS(8023), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8023), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8023), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8023), + [anon_sym___deprecated_msg] = ACTIONS(8023), + [anon_sym___deprecated_enum_msg] = ACTIONS(8023), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8023), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8023), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -531897,86 +524417,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3392] = { - [sym__expression] = STATE(4437), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_initializer_list] = STATE(5079), - [sym_initializer_pair] = STATE(5079), - [sym_subscript_designator] = STATE(4747), - [sym_field_designator] = STATE(4747), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_initializer_pair_repeat1] = STATE(4747), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(8043), - [anon_sym_LBRACK] = ACTIONS(7969), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(7971), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [3343] = { + [sym_field_declaration_list] = STATE(3454), + [sym_superclass_reference] = STATE(3373), + [sym_identifier] = ACTIONS(8033), + [anon_sym_COMMA] = ACTIONS(8035), + [anon_sym_RPAREN] = ACTIONS(8035), + [anon_sym_LPAREN2] = ACTIONS(8035), + [anon_sym_STAR] = ACTIONS(8035), + [anon_sym_SEMI] = ACTIONS(8035), + [anon_sym_extern] = ACTIONS(8033), + [anon_sym___attribute] = ACTIONS(8033), + [anon_sym___attribute__] = ACTIONS(8033), + [anon_sym___declspec] = ACTIONS(8033), + [anon_sym___based] = ACTIONS(8033), + [anon_sym_LBRACE] = ACTIONS(8037), + [anon_sym_LBRACK] = ACTIONS(8035), + [anon_sym_static] = ACTIONS(8033), + [anon_sym_auto] = ACTIONS(8033), + [anon_sym_register] = ACTIONS(8033), + [anon_sym_inline] = ACTIONS(8033), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8033), + [anon_sym_const] = ACTIONS(8033), + [anon_sym_volatile] = ACTIONS(8033), + [anon_sym_restrict] = ACTIONS(8033), + [anon_sym__Atomic] = ACTIONS(8033), + [anon_sym_in] = ACTIONS(8033), + [anon_sym_out] = ACTIONS(8033), + [anon_sym_inout] = ACTIONS(8033), + [anon_sym_bycopy] = ACTIONS(8033), + [anon_sym_byref] = ACTIONS(8033), + [anon_sym_oneway] = ACTIONS(8033), + [anon_sym__Nullable] = ACTIONS(8033), + [anon_sym__Nonnull] = ACTIONS(8033), + [anon_sym__Nullable_result] = ACTIONS(8033), + [anon_sym__Null_unspecified] = ACTIONS(8033), + [anon_sym___autoreleasing] = ACTIONS(8033), + [anon_sym___nullable] = ACTIONS(8033), + [anon_sym___nonnull] = ACTIONS(8033), + [anon_sym___strong] = ACTIONS(8033), + [anon_sym___weak] = ACTIONS(8033), + [anon_sym___bridge] = ACTIONS(8033), + [anon_sym___bridge_transfer] = ACTIONS(8033), + [anon_sym___bridge_retained] = ACTIONS(8033), + [anon_sym___unsafe_unretained] = ACTIONS(8033), + [anon_sym___block] = ACTIONS(8033), + [anon_sym___kindof] = ACTIONS(8033), + [anon_sym___unused] = ACTIONS(8033), + [anon_sym__Complex] = ACTIONS(8033), + [anon_sym___complex] = ACTIONS(8033), + [anon_sym_IBOutlet] = ACTIONS(8033), + [anon_sym_IBInspectable] = ACTIONS(8033), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8033), + [anon_sym_COLON] = ACTIONS(8029), + [anon_sym_ATdefs] = ACTIONS(8040), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [sym_method_attribute_specifier] = ACTIONS(8033), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8033), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8033), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8033), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8033), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8033), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8033), + [anon_sym_NS_AVAILABLE] = ACTIONS(8033), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8033), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_API_AVAILABLE] = ACTIONS(8033), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8033), + [anon_sym_API_DEPRECATED] = ACTIONS(8033), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8033), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8033), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8033), + [anon_sym___deprecated_msg] = ACTIONS(8033), + [anon_sym___deprecated_enum_msg] = ACTIONS(8033), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8033), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8033), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -531984,86 +524502,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3393] = { - [sym__expression] = STATE(4437), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_initializer_list] = STATE(5079), - [sym_initializer_pair] = STATE(5079), - [sym_subscript_designator] = STATE(4747), - [sym_field_designator] = STATE(4747), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_initializer_pair_repeat1] = STATE(4747), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(8045), - [anon_sym_LBRACK] = ACTIONS(7969), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(7971), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [3344] = { + [sym_attribute_specifier] = STATE(3324), + [sym_ms_declspec_modifier] = STATE(3324), + [sym_storage_class_specifier] = STATE(3324), + [sym_type_qualifier] = STATE(3324), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3534), + [sym_availability_attribute_specifier] = STATE(3534), + [aux_sym__declaration_specifiers_repeat1] = STATE(3324), + [sym_identifier] = ACTIONS(7898), + [anon_sym_RPAREN] = ACTIONS(7900), + [anon_sym_LPAREN2] = ACTIONS(7900), + [anon_sym_STAR] = ACTIONS(7900), + [anon_sym_extern] = ACTIONS(7902), + [anon_sym___attribute] = ACTIONS(8042), + [anon_sym___attribute__] = ACTIONS(8042), + [anon_sym___declspec] = ACTIONS(7906), + [anon_sym___based] = ACTIONS(7898), + [anon_sym_LBRACK] = ACTIONS(7900), + [anon_sym_static] = ACTIONS(7902), + [anon_sym_auto] = ACTIONS(7902), + [anon_sym_register] = ACTIONS(7902), + [anon_sym_inline] = ACTIONS(7902), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7902), + [anon_sym_const] = ACTIONS(7908), + [anon_sym_volatile] = ACTIONS(7908), + [anon_sym_restrict] = ACTIONS(7908), + [anon_sym__Atomic] = ACTIONS(7908), + [anon_sym_in] = ACTIONS(7908), + [anon_sym_out] = ACTIONS(7908), + [anon_sym_inout] = ACTIONS(7908), + [anon_sym_bycopy] = ACTIONS(7908), + [anon_sym_byref] = ACTIONS(7908), + [anon_sym_oneway] = ACTIONS(7908), + [anon_sym__Nullable] = ACTIONS(7908), + [anon_sym__Nonnull] = ACTIONS(7908), + [anon_sym__Nullable_result] = ACTIONS(7908), + [anon_sym__Null_unspecified] = ACTIONS(7908), + [anon_sym___autoreleasing] = ACTIONS(7908), + [anon_sym___nullable] = ACTIONS(7908), + [anon_sym___nonnull] = ACTIONS(7908), + [anon_sym___strong] = ACTIONS(7908), + [anon_sym___weak] = ACTIONS(7908), + [anon_sym___bridge] = ACTIONS(7908), + [anon_sym___bridge_transfer] = ACTIONS(7908), + [anon_sym___bridge_retained] = ACTIONS(7908), + [anon_sym___unsafe_unretained] = ACTIONS(7908), + [anon_sym___block] = ACTIONS(7908), + [anon_sym___kindof] = ACTIONS(7908), + [anon_sym___unused] = ACTIONS(7908), + [anon_sym__Complex] = ACTIONS(7908), + [anon_sym___complex] = ACTIONS(7908), + [anon_sym_IBOutlet] = ACTIONS(7908), + [anon_sym_IBInspectable] = ACTIONS(7908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7908), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [sym_method_attribute_specifier] = ACTIONS(8045), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8048), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8048), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8051), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8051), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8051), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8051), + [anon_sym_NS_AVAILABLE] = ACTIONS(8054), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8054), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8054), + [anon_sym_API_AVAILABLE] = ACTIONS(8054), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8054), + [anon_sym_API_DEPRECATED] = ACTIONS(8054), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8054), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8054), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8054), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8054), + [anon_sym___deprecated_msg] = ACTIONS(8054), + [anon_sym___deprecated_enum_msg] = ACTIONS(8054), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8054), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8054), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8054), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8054), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -532071,85 +524587,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3394] = { - [sym_protocol_qualifiers] = STATE(3401), - [sym_generic_type_references] = STATE(3401), - [aux_sym_generic_type_specifier_repeat1] = STATE(3401), - [sym_identifier] = ACTIONS(8047), - [anon_sym_COMMA] = ACTIONS(8049), - [anon_sym_RPAREN] = ACTIONS(8049), - [anon_sym_LPAREN2] = ACTIONS(8049), - [anon_sym_STAR] = ACTIONS(8049), - [anon_sym_LT] = ACTIONS(8051), - [anon_sym_SEMI] = ACTIONS(8049), - [anon_sym_extern] = ACTIONS(8047), - [anon_sym___attribute] = ACTIONS(8047), - [anon_sym___attribute__] = ACTIONS(8047), - [anon_sym___declspec] = ACTIONS(8047), - [anon_sym___based] = ACTIONS(8047), - [anon_sym_LBRACE] = ACTIONS(8049), - [anon_sym_LBRACK] = ACTIONS(8049), - [anon_sym_static] = ACTIONS(8047), - [anon_sym_auto] = ACTIONS(8047), - [anon_sym_register] = ACTIONS(8047), - [anon_sym_inline] = ACTIONS(8047), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8047), - [anon_sym_const] = ACTIONS(8047), - [anon_sym_volatile] = ACTIONS(8047), - [anon_sym_restrict] = ACTIONS(8047), - [anon_sym__Atomic] = ACTIONS(8047), - [anon_sym_in] = ACTIONS(8047), - [anon_sym_out] = ACTIONS(8047), - [anon_sym_inout] = ACTIONS(8047), - [anon_sym_bycopy] = ACTIONS(8047), - [anon_sym_byref] = ACTIONS(8047), - [anon_sym_oneway] = ACTIONS(8047), - [anon_sym__Nullable] = ACTIONS(8047), - [anon_sym__Nonnull] = ACTIONS(8047), - [anon_sym__Nullable_result] = ACTIONS(8047), - [anon_sym__Null_unspecified] = ACTIONS(8047), - [anon_sym___autoreleasing] = ACTIONS(8047), - [anon_sym___nullable] = ACTIONS(8047), - [anon_sym___nonnull] = ACTIONS(8047), - [anon_sym___strong] = ACTIONS(8047), - [anon_sym___weak] = ACTIONS(8047), - [anon_sym___bridge] = ACTIONS(8047), - [anon_sym___bridge_transfer] = ACTIONS(8047), - [anon_sym___bridge_retained] = ACTIONS(8047), - [anon_sym___unsafe_unretained] = ACTIONS(8047), - [anon_sym___block] = ACTIONS(8047), - [anon_sym___kindof] = ACTIONS(8047), - [anon_sym___unused] = ACTIONS(8047), - [anon_sym__Complex] = ACTIONS(8047), - [anon_sym___complex] = ACTIONS(8047), - [anon_sym_IBOutlet] = ACTIONS(8047), - [anon_sym_IBInspectable] = ACTIONS(8047), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8047), - [anon_sym_COLON] = ACTIONS(8049), + [3345] = { + [sym_field_declaration_list] = STATE(3454), + [sym_superclass_reference] = STATE(3377), + [sym_identifier] = ACTIONS(8033), + [anon_sym_COMMA] = ACTIONS(8035), + [anon_sym_RPAREN] = ACTIONS(8035), + [anon_sym_LPAREN2] = ACTIONS(8035), + [anon_sym_STAR] = ACTIONS(8035), + [anon_sym_SEMI] = ACTIONS(8035), + [anon_sym_extern] = ACTIONS(8033), + [anon_sym___attribute] = ACTIONS(8033), + [anon_sym___attribute__] = ACTIONS(8033), + [anon_sym___declspec] = ACTIONS(8033), + [anon_sym___based] = ACTIONS(8033), + [anon_sym_LBRACE] = ACTIONS(8027), + [anon_sym_LBRACK] = ACTIONS(8035), + [anon_sym_static] = ACTIONS(8033), + [anon_sym_auto] = ACTIONS(8033), + [anon_sym_register] = ACTIONS(8033), + [anon_sym_inline] = ACTIONS(8033), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8033), + [anon_sym_const] = ACTIONS(8033), + [anon_sym_volatile] = ACTIONS(8033), + [anon_sym_restrict] = ACTIONS(8033), + [anon_sym__Atomic] = ACTIONS(8033), + [anon_sym_in] = ACTIONS(8033), + [anon_sym_out] = ACTIONS(8033), + [anon_sym_inout] = ACTIONS(8033), + [anon_sym_bycopy] = ACTIONS(8033), + [anon_sym_byref] = ACTIONS(8033), + [anon_sym_oneway] = ACTIONS(8033), + [anon_sym__Nullable] = ACTIONS(8033), + [anon_sym__Nonnull] = ACTIONS(8033), + [anon_sym__Nullable_result] = ACTIONS(8033), + [anon_sym__Null_unspecified] = ACTIONS(8033), + [anon_sym___autoreleasing] = ACTIONS(8033), + [anon_sym___nullable] = ACTIONS(8033), + [anon_sym___nonnull] = ACTIONS(8033), + [anon_sym___strong] = ACTIONS(8033), + [anon_sym___weak] = ACTIONS(8033), + [anon_sym___bridge] = ACTIONS(8033), + [anon_sym___bridge_transfer] = ACTIONS(8033), + [anon_sym___bridge_retained] = ACTIONS(8033), + [anon_sym___unsafe_unretained] = ACTIONS(8033), + [anon_sym___block] = ACTIONS(8033), + [anon_sym___kindof] = ACTIONS(8033), + [anon_sym___unused] = ACTIONS(8033), + [anon_sym__Complex] = ACTIONS(8033), + [anon_sym___complex] = ACTIONS(8033), + [anon_sym_IBOutlet] = ACTIONS(8033), + [anon_sym_IBInspectable] = ACTIONS(8033), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8033), + [anon_sym_COLON] = ACTIONS(8029), + [anon_sym_ATdefs] = ACTIONS(8040), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8047), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8047), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8047), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8047), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8047), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8047), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8047), - [anon_sym_NS_AVAILABLE] = ACTIONS(8047), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8047), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8047), - [anon_sym_API_AVAILABLE] = ACTIONS(8047), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8047), - [anon_sym_API_DEPRECATED] = ACTIONS(8047), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8047), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8047), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8047), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8047), - [anon_sym___deprecated_msg] = ACTIONS(8047), - [anon_sym___deprecated_enum_msg] = ACTIONS(8047), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8047), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8047), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8047), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8047), + [sym_method_attribute_specifier] = ACTIONS(8033), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8033), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8033), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8033), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8033), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8033), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8033), + [anon_sym_NS_AVAILABLE] = ACTIONS(8033), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8033), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_API_AVAILABLE] = ACTIONS(8033), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8033), + [anon_sym_API_DEPRECATED] = ACTIONS(8033), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8033), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8033), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8033), + [anon_sym___deprecated_msg] = ACTIONS(8033), + [anon_sym___deprecated_enum_msg] = ACTIONS(8033), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8033), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8033), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -532157,585 +524672,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3395] = { - [sym_ms_based_modifier] = STATE(5402), - [sym__declarator] = STATE(4395), - [sym__abstract_declarator] = STATE(4367), - [sym_parenthesized_declarator] = STATE(4453), - [sym_abstract_parenthesized_declarator] = STATE(4266), - [sym_pointer_declarator] = STATE(4453), - [sym_abstract_pointer_declarator] = STATE(4266), - [sym_function_declarator] = STATE(4453), - [sym_abstract_function_declarator] = STATE(4266), - [sym_array_declarator] = STATE(4453), - [sym_abstract_array_declarator] = STATE(4266), - [sym_type_qualifier] = STATE(3725), - [sym_parameter_list] = STATE(4263), - [sym_block_abstract_declarator] = STATE(4266), - [sym_block_declarator] = STATE(4453), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(7925), - [anon_sym_LPAREN2] = ACTIONS(7927), - [anon_sym_STAR] = ACTIONS(7929), - [anon_sym___attribute] = ACTIONS(8035), - [anon_sym___attribute__] = ACTIONS(8035), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_LBRACK] = ACTIONS(6529), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [3346] = { + [sym_attribute_specifier] = STATE(3344), + [sym_ms_declspec_modifier] = STATE(3344), + [sym_storage_class_specifier] = STATE(3344), + [sym_type_qualifier] = STATE(3344), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3534), + [sym_availability_attribute_specifier] = STATE(3534), + [aux_sym__declaration_specifiers_repeat1] = STATE(3344), + [sym_identifier] = ACTIONS(7975), + [anon_sym_RPAREN] = ACTIONS(7977), + [anon_sym_LPAREN2] = ACTIONS(7977), + [anon_sym_STAR] = ACTIONS(7977), + [anon_sym_extern] = ACTIONS(7902), + [anon_sym___attribute] = ACTIONS(8057), + [anon_sym___attribute__] = ACTIONS(8057), + [anon_sym___declspec] = ACTIONS(7906), + [anon_sym___based] = ACTIONS(7975), + [anon_sym_LBRACK] = ACTIONS(7977), + [anon_sym_static] = ACTIONS(7902), + [anon_sym_auto] = ACTIONS(7902), + [anon_sym_register] = ACTIONS(7902), + [anon_sym_inline] = ACTIONS(7902), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7902), + [anon_sym_const] = ACTIONS(7908), + [anon_sym_volatile] = ACTIONS(7908), + [anon_sym_restrict] = ACTIONS(7908), + [anon_sym__Atomic] = ACTIONS(7908), + [anon_sym_in] = ACTIONS(7908), + [anon_sym_out] = ACTIONS(7908), + [anon_sym_inout] = ACTIONS(7908), + [anon_sym_bycopy] = ACTIONS(7908), + [anon_sym_byref] = ACTIONS(7908), + [anon_sym_oneway] = ACTIONS(7908), + [anon_sym__Nullable] = ACTIONS(7908), + [anon_sym__Nonnull] = ACTIONS(7908), + [anon_sym__Nullable_result] = ACTIONS(7908), + [anon_sym__Null_unspecified] = ACTIONS(7908), + [anon_sym___autoreleasing] = ACTIONS(7908), + [anon_sym___nullable] = ACTIONS(7908), + [anon_sym___nonnull] = ACTIONS(7908), + [anon_sym___strong] = ACTIONS(7908), + [anon_sym___weak] = ACTIONS(7908), + [anon_sym___bridge] = ACTIONS(7908), + [anon_sym___bridge_transfer] = ACTIONS(7908), + [anon_sym___bridge_retained] = ACTIONS(7908), + [anon_sym___unsafe_unretained] = ACTIONS(7908), + [anon_sym___block] = ACTIONS(7908), + [anon_sym___kindof] = ACTIONS(7908), + [anon_sym___unused] = ACTIONS(7908), + [anon_sym__Complex] = ACTIONS(7908), + [anon_sym___complex] = ACTIONS(7908), + [anon_sym_IBOutlet] = ACTIONS(7908), + [anon_sym_IBInspectable] = ACTIONS(7908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7908), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8035), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8035), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8035), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8035), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8035), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8035), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8035), - [anon_sym_NS_AVAILABLE] = ACTIONS(8035), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8035), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8035), - [anon_sym_API_AVAILABLE] = ACTIONS(8035), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8035), - [anon_sym_API_DEPRECATED] = ACTIONS(8035), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8035), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8035), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8035), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8035), - [anon_sym___deprecated_msg] = ACTIONS(8035), - [anon_sym___deprecated_enum_msg] = ACTIONS(8035), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8035), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8035), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8035), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8035), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3396] = { - [sym_protocol_qualifiers] = STATE(3397), - [sym_generic_type_references] = STATE(3397), - [aux_sym_generic_type_specifier_repeat1] = STATE(3397), - [sym_identifier] = ACTIONS(6841), - [anon_sym_COMMA] = ACTIONS(8053), - [anon_sym_RPAREN] = ACTIONS(8053), - [anon_sym_LPAREN2] = ACTIONS(8055), - [anon_sym_STAR] = ACTIONS(8053), - [anon_sym_LT] = ACTIONS(8051), - [anon_sym_SEMI] = ACTIONS(8053), - [anon_sym_extern] = ACTIONS(6841), - [anon_sym___attribute] = ACTIONS(6841), - [anon_sym___attribute__] = ACTIONS(6841), - [anon_sym___declspec] = ACTIONS(6841), - [anon_sym___based] = ACTIONS(6841), - [anon_sym_LBRACE] = ACTIONS(8053), - [anon_sym_LBRACK] = ACTIONS(8053), - [anon_sym_static] = ACTIONS(6841), - [anon_sym_auto] = ACTIONS(6841), - [anon_sym_register] = ACTIONS(6841), - [anon_sym_inline] = ACTIONS(6841), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6841), - [anon_sym_const] = ACTIONS(6841), - [anon_sym_volatile] = ACTIONS(6841), - [anon_sym_restrict] = ACTIONS(6841), - [anon_sym__Atomic] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6841), - [anon_sym_out] = ACTIONS(6841), - [anon_sym_inout] = ACTIONS(6841), - [anon_sym_bycopy] = ACTIONS(6841), - [anon_sym_byref] = ACTIONS(6841), - [anon_sym_oneway] = ACTIONS(6841), - [anon_sym__Nullable] = ACTIONS(6841), - [anon_sym__Nonnull] = ACTIONS(6841), - [anon_sym__Nullable_result] = ACTIONS(6841), - [anon_sym__Null_unspecified] = ACTIONS(6841), - [anon_sym___autoreleasing] = ACTIONS(6841), - [anon_sym___nullable] = ACTIONS(6841), - [anon_sym___nonnull] = ACTIONS(6841), - [anon_sym___strong] = ACTIONS(6841), - [anon_sym___weak] = ACTIONS(6841), - [anon_sym___bridge] = ACTIONS(6841), - [anon_sym___bridge_transfer] = ACTIONS(6841), - [anon_sym___bridge_retained] = ACTIONS(6841), - [anon_sym___unsafe_unretained] = ACTIONS(6841), - [anon_sym___block] = ACTIONS(6841), - [anon_sym___kindof] = ACTIONS(6841), - [anon_sym___unused] = ACTIONS(6841), - [anon_sym__Complex] = ACTIONS(6841), - [anon_sym___complex] = ACTIONS(6841), - [anon_sym_IBOutlet] = ACTIONS(6841), - [anon_sym_IBInspectable] = ACTIONS(6841), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6841), - [anon_sym_COLON] = ACTIONS(8053), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6841), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6841), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE] = ACTIONS(6841), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_API_AVAILABLE] = ACTIONS(6841), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_API_DEPRECATED] = ACTIONS(6841), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6841), - [anon_sym___deprecated_msg] = ACTIONS(6841), - [anon_sym___deprecated_enum_msg] = ACTIONS(6841), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6841), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3397] = { - [sym_protocol_qualifiers] = STATE(3400), - [sym_generic_type_references] = STATE(3400), - [aux_sym_generic_type_specifier_repeat1] = STATE(3400), - [sym_identifier] = ACTIONS(8058), - [anon_sym_COMMA] = ACTIONS(8060), - [anon_sym_RPAREN] = ACTIONS(8060), - [anon_sym_LPAREN2] = ACTIONS(8060), - [anon_sym_STAR] = ACTIONS(8060), - [anon_sym_LT] = ACTIONS(8051), - [anon_sym_SEMI] = ACTIONS(8060), - [anon_sym_extern] = ACTIONS(8058), - [anon_sym___attribute] = ACTIONS(8058), - [anon_sym___attribute__] = ACTIONS(8058), - [anon_sym___declspec] = ACTIONS(8058), - [anon_sym___based] = ACTIONS(8058), - [anon_sym_LBRACE] = ACTIONS(8060), - [anon_sym_LBRACK] = ACTIONS(8060), - [anon_sym_static] = ACTIONS(8058), - [anon_sym_auto] = ACTIONS(8058), - [anon_sym_register] = ACTIONS(8058), - [anon_sym_inline] = ACTIONS(8058), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8058), - [anon_sym_const] = ACTIONS(8058), - [anon_sym_volatile] = ACTIONS(8058), - [anon_sym_restrict] = ACTIONS(8058), - [anon_sym__Atomic] = ACTIONS(8058), - [anon_sym_in] = ACTIONS(8058), - [anon_sym_out] = ACTIONS(8058), - [anon_sym_inout] = ACTIONS(8058), - [anon_sym_bycopy] = ACTIONS(8058), - [anon_sym_byref] = ACTIONS(8058), - [anon_sym_oneway] = ACTIONS(8058), - [anon_sym__Nullable] = ACTIONS(8058), - [anon_sym__Nonnull] = ACTIONS(8058), - [anon_sym__Nullable_result] = ACTIONS(8058), - [anon_sym__Null_unspecified] = ACTIONS(8058), - [anon_sym___autoreleasing] = ACTIONS(8058), - [anon_sym___nullable] = ACTIONS(8058), - [anon_sym___nonnull] = ACTIONS(8058), - [anon_sym___strong] = ACTIONS(8058), - [anon_sym___weak] = ACTIONS(8058), - [anon_sym___bridge] = ACTIONS(8058), - [anon_sym___bridge_transfer] = ACTIONS(8058), - [anon_sym___bridge_retained] = ACTIONS(8058), - [anon_sym___unsafe_unretained] = ACTIONS(8058), - [anon_sym___block] = ACTIONS(8058), - [anon_sym___kindof] = ACTIONS(8058), - [anon_sym___unused] = ACTIONS(8058), - [anon_sym__Complex] = ACTIONS(8058), - [anon_sym___complex] = ACTIONS(8058), - [anon_sym_IBOutlet] = ACTIONS(8058), - [anon_sym_IBInspectable] = ACTIONS(8058), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8058), - [anon_sym_COLON] = ACTIONS(8060), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8058), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8058), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8058), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8058), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8058), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8058), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8058), - [anon_sym_NS_AVAILABLE] = ACTIONS(8058), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8058), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8058), - [anon_sym_API_AVAILABLE] = ACTIONS(8058), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8058), - [anon_sym_API_DEPRECATED] = ACTIONS(8058), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8058), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8058), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8058), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8058), - [anon_sym___deprecated_msg] = ACTIONS(8058), - [anon_sym___deprecated_enum_msg] = ACTIONS(8058), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8058), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8058), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8058), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8058), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3398] = { - [sym__expression] = STATE(4437), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_initializer_list] = STATE(5079), - [sym_initializer_pair] = STATE(5079), - [sym_subscript_designator] = STATE(4747), - [sym_field_designator] = STATE(4747), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [aux_sym_initializer_pair_repeat1] = STATE(4747), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(7969), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(7971), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3399] = { - [sym_ms_based_modifier] = STATE(5669), - [sym__declarator] = STATE(3884), - [sym__abstract_declarator] = STATE(4367), - [sym_parenthesized_declarator] = STATE(3843), - [sym_abstract_parenthesized_declarator] = STATE(4266), - [sym_pointer_declarator] = STATE(3843), - [sym_abstract_pointer_declarator] = STATE(4266), - [sym_function_declarator] = STATE(3843), - [sym_abstract_function_declarator] = STATE(4266), - [sym_array_declarator] = STATE(3843), - [sym_abstract_array_declarator] = STATE(4266), - [sym_type_qualifier] = STATE(3725), - [sym_parameter_list] = STATE(4263), - [sym_block_abstract_declarator] = STATE(4266), - [sym_block_declarator] = STATE(3843), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(7909), - [anon_sym_LPAREN2] = ACTIONS(7931), - [anon_sym_STAR] = ACTIONS(7933), - [anon_sym___attribute] = ACTIONS(8035), - [anon_sym___attribute__] = ACTIONS(8035), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_LBRACK] = ACTIONS(6529), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8035), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8035), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8035), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8035), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8035), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8035), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8035), - [anon_sym_NS_AVAILABLE] = ACTIONS(8035), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8035), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8035), - [anon_sym_API_AVAILABLE] = ACTIONS(8035), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8035), - [anon_sym_API_DEPRECATED] = ACTIONS(8035), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8035), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8035), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8035), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8035), - [anon_sym___deprecated_msg] = ACTIONS(8035), - [anon_sym___deprecated_enum_msg] = ACTIONS(8035), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8035), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8035), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8035), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8035), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3400] = { - [sym_protocol_qualifiers] = STATE(3400), - [sym_generic_type_references] = STATE(3400), - [aux_sym_generic_type_specifier_repeat1] = STATE(3400), - [sym_identifier] = ACTIONS(8062), - [anon_sym_COMMA] = ACTIONS(8064), - [anon_sym_RPAREN] = ACTIONS(8064), - [anon_sym_LPAREN2] = ACTIONS(8064), - [anon_sym_STAR] = ACTIONS(8064), - [anon_sym_LT] = ACTIONS(8066), - [anon_sym_SEMI] = ACTIONS(8064), - [anon_sym_extern] = ACTIONS(8062), - [anon_sym___attribute] = ACTIONS(8062), - [anon_sym___attribute__] = ACTIONS(8062), - [anon_sym___declspec] = ACTIONS(8062), - [anon_sym___based] = ACTIONS(8062), - [anon_sym_LBRACE] = ACTIONS(8064), - [anon_sym_LBRACK] = ACTIONS(8064), - [anon_sym_static] = ACTIONS(8062), - [anon_sym_auto] = ACTIONS(8062), - [anon_sym_register] = ACTIONS(8062), - [anon_sym_inline] = ACTIONS(8062), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8062), - [anon_sym_const] = ACTIONS(8062), - [anon_sym_volatile] = ACTIONS(8062), - [anon_sym_restrict] = ACTIONS(8062), - [anon_sym__Atomic] = ACTIONS(8062), - [anon_sym_in] = ACTIONS(8062), - [anon_sym_out] = ACTIONS(8062), - [anon_sym_inout] = ACTIONS(8062), - [anon_sym_bycopy] = ACTIONS(8062), - [anon_sym_byref] = ACTIONS(8062), - [anon_sym_oneway] = ACTIONS(8062), - [anon_sym__Nullable] = ACTIONS(8062), - [anon_sym__Nonnull] = ACTIONS(8062), - [anon_sym__Nullable_result] = ACTIONS(8062), - [anon_sym__Null_unspecified] = ACTIONS(8062), - [anon_sym___autoreleasing] = ACTIONS(8062), - [anon_sym___nullable] = ACTIONS(8062), - [anon_sym___nonnull] = ACTIONS(8062), - [anon_sym___strong] = ACTIONS(8062), - [anon_sym___weak] = ACTIONS(8062), - [anon_sym___bridge] = ACTIONS(8062), - [anon_sym___bridge_transfer] = ACTIONS(8062), - [anon_sym___bridge_retained] = ACTIONS(8062), - [anon_sym___unsafe_unretained] = ACTIONS(8062), - [anon_sym___block] = ACTIONS(8062), - [anon_sym___kindof] = ACTIONS(8062), - [anon_sym___unused] = ACTIONS(8062), - [anon_sym__Complex] = ACTIONS(8062), - [anon_sym___complex] = ACTIONS(8062), - [anon_sym_IBOutlet] = ACTIONS(8062), - [anon_sym_IBInspectable] = ACTIONS(8062), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8062), - [anon_sym_COLON] = ACTIONS(8064), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8062), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8062), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8062), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8062), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8062), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8062), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8062), - [anon_sym_NS_AVAILABLE] = ACTIONS(8062), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8062), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8062), - [anon_sym_API_AVAILABLE] = ACTIONS(8062), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8062), - [anon_sym_API_DEPRECATED] = ACTIONS(8062), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8062), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8062), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8062), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8062), - [anon_sym___deprecated_msg] = ACTIONS(8062), - [anon_sym___deprecated_enum_msg] = ACTIONS(8062), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8062), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8062), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8062), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8062), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3401] = { - [sym_protocol_qualifiers] = STATE(3400), - [sym_generic_type_references] = STATE(3400), - [aux_sym_generic_type_specifier_repeat1] = STATE(3400), - [sym_identifier] = ACTIONS(8069), - [anon_sym_COMMA] = ACTIONS(8071), - [anon_sym_RPAREN] = ACTIONS(8071), - [anon_sym_LPAREN2] = ACTIONS(8071), - [anon_sym_STAR] = ACTIONS(8071), - [anon_sym_LT] = ACTIONS(8051), - [anon_sym_SEMI] = ACTIONS(8071), - [anon_sym_extern] = ACTIONS(8069), - [anon_sym___attribute] = ACTIONS(8069), - [anon_sym___attribute__] = ACTIONS(8069), - [anon_sym___declspec] = ACTIONS(8069), - [anon_sym___based] = ACTIONS(8069), - [anon_sym_LBRACE] = ACTIONS(8071), - [anon_sym_LBRACK] = ACTIONS(8071), - [anon_sym_static] = ACTIONS(8069), - [anon_sym_auto] = ACTIONS(8069), - [anon_sym_register] = ACTIONS(8069), - [anon_sym_inline] = ACTIONS(8069), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8069), - [anon_sym_const] = ACTIONS(8069), - [anon_sym_volatile] = ACTIONS(8069), - [anon_sym_restrict] = ACTIONS(8069), - [anon_sym__Atomic] = ACTIONS(8069), - [anon_sym_in] = ACTIONS(8069), - [anon_sym_out] = ACTIONS(8069), - [anon_sym_inout] = ACTIONS(8069), - [anon_sym_bycopy] = ACTIONS(8069), - [anon_sym_byref] = ACTIONS(8069), - [anon_sym_oneway] = ACTIONS(8069), - [anon_sym__Nullable] = ACTIONS(8069), - [anon_sym__Nonnull] = ACTIONS(8069), - [anon_sym__Nullable_result] = ACTIONS(8069), - [anon_sym__Null_unspecified] = ACTIONS(8069), - [anon_sym___autoreleasing] = ACTIONS(8069), - [anon_sym___nullable] = ACTIONS(8069), - [anon_sym___nonnull] = ACTIONS(8069), - [anon_sym___strong] = ACTIONS(8069), - [anon_sym___weak] = ACTIONS(8069), - [anon_sym___bridge] = ACTIONS(8069), - [anon_sym___bridge_transfer] = ACTIONS(8069), - [anon_sym___bridge_retained] = ACTIONS(8069), - [anon_sym___unsafe_unretained] = ACTIONS(8069), - [anon_sym___block] = ACTIONS(8069), - [anon_sym___kindof] = ACTIONS(8069), - [anon_sym___unused] = ACTIONS(8069), - [anon_sym__Complex] = ACTIONS(8069), - [anon_sym___complex] = ACTIONS(8069), - [anon_sym_IBOutlet] = ACTIONS(8069), - [anon_sym_IBInspectable] = ACTIONS(8069), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8069), - [anon_sym_COLON] = ACTIONS(8071), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8069), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8069), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8069), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8069), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8069), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8069), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8069), + [sym_method_attribute_specifier] = ACTIONS(8060), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8063), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8063), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8066), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8066), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8066), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8066), [anon_sym_NS_AVAILABLE] = ACTIONS(8069), [anon_sym___IOS_AVAILABLE] = ACTIONS(8069), [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8069), @@ -532759,594 +524757,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3402] = { - [sym_attribute_specifier] = STATE(3380), - [sym_ms_declspec_modifier] = STATE(3380), - [sym_storage_class_specifier] = STATE(3380), - [sym_type_qualifier] = STATE(3380), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3598), - [sym_availability_attribute_specifier] = STATE(3598), - [aux_sym__declaration_specifiers_repeat1] = STATE(3380), - [sym_identifier] = ACTIONS(7961), - [anon_sym_RPAREN] = ACTIONS(7963), - [anon_sym_LPAREN2] = ACTIONS(7963), - [anon_sym_STAR] = ACTIONS(7963), - [anon_sym_extern] = ACTIONS(7945), - [anon_sym___attribute] = ACTIONS(8073), - [anon_sym___attribute__] = ACTIONS(8073), - [anon_sym___declspec] = ACTIONS(7949), - [anon_sym___based] = ACTIONS(7961), - [anon_sym_LBRACK] = ACTIONS(7963), - [anon_sym_static] = ACTIONS(7945), - [anon_sym_auto] = ACTIONS(7945), - [anon_sym_register] = ACTIONS(7945), - [anon_sym_inline] = ACTIONS(7945), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7945), - [anon_sym_const] = ACTIONS(7951), - [anon_sym_volatile] = ACTIONS(7951), - [anon_sym_restrict] = ACTIONS(7951), - [anon_sym__Atomic] = ACTIONS(7951), - [anon_sym_in] = ACTIONS(7951), - [anon_sym_out] = ACTIONS(7951), - [anon_sym_inout] = ACTIONS(7951), - [anon_sym_bycopy] = ACTIONS(7951), - [anon_sym_byref] = ACTIONS(7951), - [anon_sym_oneway] = ACTIONS(7951), - [anon_sym__Nullable] = ACTIONS(7951), - [anon_sym__Nonnull] = ACTIONS(7951), - [anon_sym__Nullable_result] = ACTIONS(7951), - [anon_sym__Null_unspecified] = ACTIONS(7951), - [anon_sym___autoreleasing] = ACTIONS(7951), - [anon_sym___nullable] = ACTIONS(7951), - [anon_sym___nonnull] = ACTIONS(7951), - [anon_sym___strong] = ACTIONS(7951), - [anon_sym___weak] = ACTIONS(7951), - [anon_sym___bridge] = ACTIONS(7951), - [anon_sym___bridge_transfer] = ACTIONS(7951), - [anon_sym___bridge_retained] = ACTIONS(7951), - [anon_sym___unsafe_unretained] = ACTIONS(7951), - [anon_sym___block] = ACTIONS(7951), - [anon_sym___kindof] = ACTIONS(7951), - [anon_sym___unused] = ACTIONS(7951), - [anon_sym__Complex] = ACTIONS(7951), - [anon_sym___complex] = ACTIONS(7951), - [anon_sym_IBOutlet] = ACTIONS(7951), - [anon_sym_IBInspectable] = ACTIONS(7951), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7951), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8076), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8079), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8079), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8082), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8082), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8082), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8082), - [anon_sym_NS_AVAILABLE] = ACTIONS(8085), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8085), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8085), - [anon_sym_API_AVAILABLE] = ACTIONS(8085), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8085), - [anon_sym_API_DEPRECATED] = ACTIONS(8085), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8085), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8085), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8085), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8085), - [anon_sym___deprecated_msg] = ACTIONS(8085), - [anon_sym___deprecated_enum_msg] = ACTIONS(8085), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8085), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8085), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8085), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8085), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3403] = { - [sym_field_declaration_list] = STATE(3559), - [sym_superclass_reference] = STATE(3428), - [sym_identifier] = ACTIONS(8088), - [anon_sym_COMMA] = ACTIONS(8090), - [anon_sym_RPAREN] = ACTIONS(8090), - [anon_sym_LPAREN2] = ACTIONS(8090), - [anon_sym_STAR] = ACTIONS(8090), - [anon_sym_SEMI] = ACTIONS(8090), - [anon_sym_extern] = ACTIONS(8088), - [anon_sym___attribute] = ACTIONS(8088), - [anon_sym___attribute__] = ACTIONS(8088), - [anon_sym___declspec] = ACTIONS(8088), - [anon_sym___based] = ACTIONS(8088), - [anon_sym_LBRACE] = ACTIONS(8092), - [anon_sym_LBRACK] = ACTIONS(8090), - [anon_sym_static] = ACTIONS(8088), - [anon_sym_auto] = ACTIONS(8088), - [anon_sym_register] = ACTIONS(8088), - [anon_sym_inline] = ACTIONS(8088), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8088), - [anon_sym_const] = ACTIONS(8088), - [anon_sym_volatile] = ACTIONS(8088), - [anon_sym_restrict] = ACTIONS(8088), - [anon_sym__Atomic] = ACTIONS(8088), - [anon_sym_in] = ACTIONS(8088), - [anon_sym_out] = ACTIONS(8088), - [anon_sym_inout] = ACTIONS(8088), - [anon_sym_bycopy] = ACTIONS(8088), - [anon_sym_byref] = ACTIONS(8088), - [anon_sym_oneway] = ACTIONS(8088), - [anon_sym__Nullable] = ACTIONS(8088), - [anon_sym__Nonnull] = ACTIONS(8088), - [anon_sym__Nullable_result] = ACTIONS(8088), - [anon_sym__Null_unspecified] = ACTIONS(8088), - [anon_sym___autoreleasing] = ACTIONS(8088), - [anon_sym___nullable] = ACTIONS(8088), - [anon_sym___nonnull] = ACTIONS(8088), - [anon_sym___strong] = ACTIONS(8088), - [anon_sym___weak] = ACTIONS(8088), - [anon_sym___bridge] = ACTIONS(8088), - [anon_sym___bridge_transfer] = ACTIONS(8088), - [anon_sym___bridge_retained] = ACTIONS(8088), - [anon_sym___unsafe_unretained] = ACTIONS(8088), - [anon_sym___block] = ACTIONS(8088), - [anon_sym___kindof] = ACTIONS(8088), - [anon_sym___unused] = ACTIONS(8088), - [anon_sym__Complex] = ACTIONS(8088), - [anon_sym___complex] = ACTIONS(8088), - [anon_sym_IBOutlet] = ACTIONS(8088), - [anon_sym_IBInspectable] = ACTIONS(8088), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8088), - [anon_sym_COLON] = ACTIONS(8095), - [anon_sym_ATdefs] = ACTIONS(8097), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8088), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8088), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8088), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8088), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8088), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8088), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8088), - [anon_sym_NS_AVAILABLE] = ACTIONS(8088), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8088), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_API_AVAILABLE] = ACTIONS(8088), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8088), - [anon_sym_API_DEPRECATED] = ACTIONS(8088), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8088), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8088), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8088), - [anon_sym___deprecated_msg] = ACTIONS(8088), - [anon_sym___deprecated_enum_msg] = ACTIONS(8088), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8088), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8088), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3404] = { - [sym_field_declaration_list] = STATE(3538), - [sym_superclass_reference] = STATE(3422), - [sym_identifier] = ACTIONS(8099), - [anon_sym_COMMA] = ACTIONS(8101), - [anon_sym_RPAREN] = ACTIONS(8101), - [anon_sym_LPAREN2] = ACTIONS(8101), - [anon_sym_STAR] = ACTIONS(8101), - [anon_sym_SEMI] = ACTIONS(8101), - [anon_sym_extern] = ACTIONS(8099), - [anon_sym___attribute] = ACTIONS(8099), - [anon_sym___attribute__] = ACTIONS(8099), - [anon_sym___declspec] = ACTIONS(8099), - [anon_sym___based] = ACTIONS(8099), - [anon_sym_LBRACE] = ACTIONS(8103), - [anon_sym_LBRACK] = ACTIONS(8101), - [anon_sym_static] = ACTIONS(8099), - [anon_sym_auto] = ACTIONS(8099), - [anon_sym_register] = ACTIONS(8099), - [anon_sym_inline] = ACTIONS(8099), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8099), - [anon_sym_const] = ACTIONS(8099), - [anon_sym_volatile] = ACTIONS(8099), - [anon_sym_restrict] = ACTIONS(8099), - [anon_sym__Atomic] = ACTIONS(8099), - [anon_sym_in] = ACTIONS(8099), - [anon_sym_out] = ACTIONS(8099), - [anon_sym_inout] = ACTIONS(8099), - [anon_sym_bycopy] = ACTIONS(8099), - [anon_sym_byref] = ACTIONS(8099), - [anon_sym_oneway] = ACTIONS(8099), - [anon_sym__Nullable] = ACTIONS(8099), - [anon_sym__Nonnull] = ACTIONS(8099), - [anon_sym__Nullable_result] = ACTIONS(8099), - [anon_sym__Null_unspecified] = ACTIONS(8099), - [anon_sym___autoreleasing] = ACTIONS(8099), - [anon_sym___nullable] = ACTIONS(8099), - [anon_sym___nonnull] = ACTIONS(8099), - [anon_sym___strong] = ACTIONS(8099), - [anon_sym___weak] = ACTIONS(8099), - [anon_sym___bridge] = ACTIONS(8099), - [anon_sym___bridge_transfer] = ACTIONS(8099), - [anon_sym___bridge_retained] = ACTIONS(8099), - [anon_sym___unsafe_unretained] = ACTIONS(8099), - [anon_sym___block] = ACTIONS(8099), - [anon_sym___kindof] = ACTIONS(8099), - [anon_sym___unused] = ACTIONS(8099), - [anon_sym__Complex] = ACTIONS(8099), - [anon_sym___complex] = ACTIONS(8099), - [anon_sym_IBOutlet] = ACTIONS(8099), - [anon_sym_IBInspectable] = ACTIONS(8099), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8099), - [anon_sym_COLON] = ACTIONS(8095), - [anon_sym_ATdefs] = ACTIONS(8106), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8099), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8099), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8099), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8099), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8099), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8099), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8099), - [anon_sym_NS_AVAILABLE] = ACTIONS(8099), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8099), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_API_AVAILABLE] = ACTIONS(8099), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8099), - [anon_sym_API_DEPRECATED] = ACTIONS(8099), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8099), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8099), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8099), - [anon_sym___deprecated_msg] = ACTIONS(8099), - [anon_sym___deprecated_enum_msg] = ACTIONS(8099), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8099), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8099), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3405] = { - [sym_attribute_specifier] = STATE(3402), - [sym_ms_declspec_modifier] = STATE(3402), - [sym_storage_class_specifier] = STATE(3402), - [sym_type_qualifier] = STATE(3402), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3598), - [sym_availability_attribute_specifier] = STATE(3598), - [aux_sym__declaration_specifiers_repeat1] = STATE(3402), - [sym_identifier] = ACTIONS(8021), - [anon_sym_RPAREN] = ACTIONS(8023), - [anon_sym_LPAREN2] = ACTIONS(8023), - [anon_sym_STAR] = ACTIONS(8023), - [anon_sym_extern] = ACTIONS(7945), - [anon_sym___attribute] = ACTIONS(8108), - [anon_sym___attribute__] = ACTIONS(8108), - [anon_sym___declspec] = ACTIONS(7949), - [anon_sym___based] = ACTIONS(8021), - [anon_sym_LBRACK] = ACTIONS(8023), - [anon_sym_static] = ACTIONS(7945), - [anon_sym_auto] = ACTIONS(7945), - [anon_sym_register] = ACTIONS(7945), - [anon_sym_inline] = ACTIONS(7945), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7945), - [anon_sym_const] = ACTIONS(7951), - [anon_sym_volatile] = ACTIONS(7951), - [anon_sym_restrict] = ACTIONS(7951), - [anon_sym__Atomic] = ACTIONS(7951), - [anon_sym_in] = ACTIONS(7951), - [anon_sym_out] = ACTIONS(7951), - [anon_sym_inout] = ACTIONS(7951), - [anon_sym_bycopy] = ACTIONS(7951), - [anon_sym_byref] = ACTIONS(7951), - [anon_sym_oneway] = ACTIONS(7951), - [anon_sym__Nullable] = ACTIONS(7951), - [anon_sym__Nonnull] = ACTIONS(7951), - [anon_sym__Nullable_result] = ACTIONS(7951), - [anon_sym__Null_unspecified] = ACTIONS(7951), - [anon_sym___autoreleasing] = ACTIONS(7951), - [anon_sym___nullable] = ACTIONS(7951), - [anon_sym___nonnull] = ACTIONS(7951), - [anon_sym___strong] = ACTIONS(7951), - [anon_sym___weak] = ACTIONS(7951), - [anon_sym___bridge] = ACTIONS(7951), - [anon_sym___bridge_transfer] = ACTIONS(7951), - [anon_sym___bridge_retained] = ACTIONS(7951), - [anon_sym___unsafe_unretained] = ACTIONS(7951), - [anon_sym___block] = ACTIONS(7951), - [anon_sym___kindof] = ACTIONS(7951), - [anon_sym___unused] = ACTIONS(7951), - [anon_sym__Complex] = ACTIONS(7951), - [anon_sym___complex] = ACTIONS(7951), - [anon_sym_IBOutlet] = ACTIONS(7951), - [anon_sym_IBInspectable] = ACTIONS(7951), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7951), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8111), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8114), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8114), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8117), - [anon_sym_NS_AVAILABLE] = ACTIONS(8120), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8120), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8120), - [anon_sym_API_AVAILABLE] = ACTIONS(8120), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8120), - [anon_sym_API_DEPRECATED] = ACTIONS(8120), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8120), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8120), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8120), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8120), - [anon_sym___deprecated_msg] = ACTIONS(8120), - [anon_sym___deprecated_enum_msg] = ACTIONS(8120), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8120), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8120), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8120), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8120), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3406] = { - [sym_field_declaration_list] = STATE(3559), - [sym_superclass_reference] = STATE(3437), - [sym_identifier] = ACTIONS(8088), - [anon_sym_COMMA] = ACTIONS(8090), - [anon_sym_RPAREN] = ACTIONS(8090), - [anon_sym_LPAREN2] = ACTIONS(8090), - [anon_sym_STAR] = ACTIONS(8090), - [anon_sym_SEMI] = ACTIONS(8090), - [anon_sym_extern] = ACTIONS(8088), - [anon_sym___attribute] = ACTIONS(8088), - [anon_sym___attribute__] = ACTIONS(8088), - [anon_sym___declspec] = ACTIONS(8088), - [anon_sym___based] = ACTIONS(8088), - [anon_sym_LBRACE] = ACTIONS(8123), - [anon_sym_LBRACK] = ACTIONS(8090), - [anon_sym_static] = ACTIONS(8088), - [anon_sym_auto] = ACTIONS(8088), - [anon_sym_register] = ACTIONS(8088), - [anon_sym_inline] = ACTIONS(8088), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8088), - [anon_sym_const] = ACTIONS(8088), - [anon_sym_volatile] = ACTIONS(8088), - [anon_sym_restrict] = ACTIONS(8088), - [anon_sym__Atomic] = ACTIONS(8088), - [anon_sym_in] = ACTIONS(8088), - [anon_sym_out] = ACTIONS(8088), - [anon_sym_inout] = ACTIONS(8088), - [anon_sym_bycopy] = ACTIONS(8088), - [anon_sym_byref] = ACTIONS(8088), - [anon_sym_oneway] = ACTIONS(8088), - [anon_sym__Nullable] = ACTIONS(8088), - [anon_sym__Nonnull] = ACTIONS(8088), - [anon_sym__Nullable_result] = ACTIONS(8088), - [anon_sym__Null_unspecified] = ACTIONS(8088), - [anon_sym___autoreleasing] = ACTIONS(8088), - [anon_sym___nullable] = ACTIONS(8088), - [anon_sym___nonnull] = ACTIONS(8088), - [anon_sym___strong] = ACTIONS(8088), - [anon_sym___weak] = ACTIONS(8088), - [anon_sym___bridge] = ACTIONS(8088), - [anon_sym___bridge_transfer] = ACTIONS(8088), - [anon_sym___bridge_retained] = ACTIONS(8088), - [anon_sym___unsafe_unretained] = ACTIONS(8088), - [anon_sym___block] = ACTIONS(8088), - [anon_sym___kindof] = ACTIONS(8088), - [anon_sym___unused] = ACTIONS(8088), - [anon_sym__Complex] = ACTIONS(8088), - [anon_sym___complex] = ACTIONS(8088), - [anon_sym_IBOutlet] = ACTIONS(8088), - [anon_sym_IBInspectable] = ACTIONS(8088), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8088), - [anon_sym_COLON] = ACTIONS(8095), - [anon_sym_ATdefs] = ACTIONS(8097), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8088), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8088), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8088), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8088), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8088), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8088), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8088), - [anon_sym_NS_AVAILABLE] = ACTIONS(8088), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8088), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_API_AVAILABLE] = ACTIONS(8088), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8088), - [anon_sym_API_DEPRECATED] = ACTIONS(8088), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8088), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8088), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8088), - [anon_sym___deprecated_msg] = ACTIONS(8088), - [anon_sym___deprecated_enum_msg] = ACTIONS(8088), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8088), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8088), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3407] = { - [sym_attribute_specifier] = STATE(3380), - [sym_ms_declspec_modifier] = STATE(3380), - [sym_storage_class_specifier] = STATE(3380), - [sym_type_qualifier] = STATE(3380), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3598), - [sym_availability_attribute_specifier] = STATE(3598), - [aux_sym__declaration_specifiers_repeat1] = STATE(3380), - [sym_identifier] = ACTIONS(8025), - [anon_sym_RPAREN] = ACTIONS(8027), - [anon_sym_LPAREN2] = ACTIONS(8027), - [anon_sym_STAR] = ACTIONS(8027), - [anon_sym_extern] = ACTIONS(7945), - [anon_sym___attribute] = ACTIONS(8125), - [anon_sym___attribute__] = ACTIONS(8125), - [anon_sym___declspec] = ACTIONS(7949), - [anon_sym___based] = ACTIONS(8025), - [anon_sym_LBRACK] = ACTIONS(8027), - [anon_sym_static] = ACTIONS(7945), - [anon_sym_auto] = ACTIONS(7945), - [anon_sym_register] = ACTIONS(7945), - [anon_sym_inline] = ACTIONS(7945), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7945), - [anon_sym_const] = ACTIONS(7951), - [anon_sym_volatile] = ACTIONS(7951), - [anon_sym_restrict] = ACTIONS(7951), - [anon_sym__Atomic] = ACTIONS(7951), - [anon_sym_in] = ACTIONS(7951), - [anon_sym_out] = ACTIONS(7951), - [anon_sym_inout] = ACTIONS(7951), - [anon_sym_bycopy] = ACTIONS(7951), - [anon_sym_byref] = ACTIONS(7951), - [anon_sym_oneway] = ACTIONS(7951), - [anon_sym__Nullable] = ACTIONS(7951), - [anon_sym__Nonnull] = ACTIONS(7951), - [anon_sym__Nullable_result] = ACTIONS(7951), - [anon_sym__Null_unspecified] = ACTIONS(7951), - [anon_sym___autoreleasing] = ACTIONS(7951), - [anon_sym___nullable] = ACTIONS(7951), - [anon_sym___nonnull] = ACTIONS(7951), - [anon_sym___strong] = ACTIONS(7951), - [anon_sym___weak] = ACTIONS(7951), - [anon_sym___bridge] = ACTIONS(7951), - [anon_sym___bridge_transfer] = ACTIONS(7951), - [anon_sym___bridge_retained] = ACTIONS(7951), - [anon_sym___unsafe_unretained] = ACTIONS(7951), - [anon_sym___block] = ACTIONS(7951), - [anon_sym___kindof] = ACTIONS(7951), - [anon_sym___unused] = ACTIONS(7951), - [anon_sym__Complex] = ACTIONS(7951), - [anon_sym___complex] = ACTIONS(7951), - [anon_sym_IBOutlet] = ACTIONS(7951), - [anon_sym_IBInspectable] = ACTIONS(7951), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7951), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8128), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8131), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8131), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8134), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8134), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8134), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8134), - [anon_sym_NS_AVAILABLE] = ACTIONS(8137), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8137), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8137), - [anon_sym_API_AVAILABLE] = ACTIONS(8137), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8137), - [anon_sym_API_DEPRECATED] = ACTIONS(8137), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8137), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8137), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8137), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8137), - [anon_sym___deprecated_msg] = ACTIONS(8137), - [anon_sym___deprecated_enum_msg] = ACTIONS(8137), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8137), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8137), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8137), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8137), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3408] = { - [sym_attribute_specifier] = STATE(3407), - [sym_ms_declspec_modifier] = STATE(3407), - [sym_storage_class_specifier] = STATE(3407), - [sym_type_qualifier] = STATE(3407), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3598), - [sym_availability_attribute_specifier] = STATE(3598), - [aux_sym__declaration_specifiers_repeat1] = STATE(3407), + [3347] = { + [sym_attribute_specifier] = STATE(3324), + [sym_ms_declspec_modifier] = STATE(3324), + [sym_storage_class_specifier] = STATE(3324), + [sym_type_qualifier] = STATE(3324), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3534), + [sym_availability_attribute_specifier] = STATE(3534), + [aux_sym__declaration_specifiers_repeat1] = STATE(3324), [sym_identifier] = ACTIONS(7941), [anon_sym_RPAREN] = ACTIONS(7943), [anon_sym_LPAREN2] = ACTIONS(7943), [anon_sym_STAR] = ACTIONS(7943), - [anon_sym_extern] = ACTIONS(7945), - [anon_sym___attribute] = ACTIONS(8140), - [anon_sym___attribute__] = ACTIONS(8140), - [anon_sym___declspec] = ACTIONS(7949), + [anon_sym_extern] = ACTIONS(7902), + [anon_sym___attribute] = ACTIONS(8072), + [anon_sym___attribute__] = ACTIONS(8072), + [anon_sym___declspec] = ACTIONS(7906), [anon_sym___based] = ACTIONS(7941), [anon_sym_LBRACK] = ACTIONS(7943), - [anon_sym_static] = ACTIONS(7945), - [anon_sym_auto] = ACTIONS(7945), - [anon_sym_register] = ACTIONS(7945), - [anon_sym_inline] = ACTIONS(7945), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7945), - [anon_sym_const] = ACTIONS(7951), - [anon_sym_volatile] = ACTIONS(7951), - [anon_sym_restrict] = ACTIONS(7951), - [anon_sym__Atomic] = ACTIONS(7951), - [anon_sym_in] = ACTIONS(7951), - [anon_sym_out] = ACTIONS(7951), - [anon_sym_inout] = ACTIONS(7951), - [anon_sym_bycopy] = ACTIONS(7951), - [anon_sym_byref] = ACTIONS(7951), - [anon_sym_oneway] = ACTIONS(7951), - [anon_sym__Nullable] = ACTIONS(7951), - [anon_sym__Nonnull] = ACTIONS(7951), - [anon_sym__Nullable_result] = ACTIONS(7951), - [anon_sym__Null_unspecified] = ACTIONS(7951), - [anon_sym___autoreleasing] = ACTIONS(7951), - [anon_sym___nullable] = ACTIONS(7951), - [anon_sym___nonnull] = ACTIONS(7951), - [anon_sym___strong] = ACTIONS(7951), - [anon_sym___weak] = ACTIONS(7951), - [anon_sym___bridge] = ACTIONS(7951), - [anon_sym___bridge_transfer] = ACTIONS(7951), - [anon_sym___bridge_retained] = ACTIONS(7951), - [anon_sym___unsafe_unretained] = ACTIONS(7951), - [anon_sym___block] = ACTIONS(7951), - [anon_sym___kindof] = ACTIONS(7951), - [anon_sym___unused] = ACTIONS(7951), - [anon_sym__Complex] = ACTIONS(7951), - [anon_sym___complex] = ACTIONS(7951), - [anon_sym_IBOutlet] = ACTIONS(7951), - [anon_sym_IBInspectable] = ACTIONS(7951), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7951), + [anon_sym_static] = ACTIONS(7902), + [anon_sym_auto] = ACTIONS(7902), + [anon_sym_register] = ACTIONS(7902), + [anon_sym_inline] = ACTIONS(7902), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7902), + [anon_sym_const] = ACTIONS(7908), + [anon_sym_volatile] = ACTIONS(7908), + [anon_sym_restrict] = ACTIONS(7908), + [anon_sym__Atomic] = ACTIONS(7908), + [anon_sym_in] = ACTIONS(7908), + [anon_sym_out] = ACTIONS(7908), + [anon_sym_inout] = ACTIONS(7908), + [anon_sym_bycopy] = ACTIONS(7908), + [anon_sym_byref] = ACTIONS(7908), + [anon_sym_oneway] = ACTIONS(7908), + [anon_sym__Nullable] = ACTIONS(7908), + [anon_sym__Nonnull] = ACTIONS(7908), + [anon_sym__Nullable_result] = ACTIONS(7908), + [anon_sym__Null_unspecified] = ACTIONS(7908), + [anon_sym___autoreleasing] = ACTIONS(7908), + [anon_sym___nullable] = ACTIONS(7908), + [anon_sym___nonnull] = ACTIONS(7908), + [anon_sym___strong] = ACTIONS(7908), + [anon_sym___weak] = ACTIONS(7908), + [anon_sym___bridge] = ACTIONS(7908), + [anon_sym___bridge_transfer] = ACTIONS(7908), + [anon_sym___bridge_retained] = ACTIONS(7908), + [anon_sym___unsafe_unretained] = ACTIONS(7908), + [anon_sym___block] = ACTIONS(7908), + [anon_sym___kindof] = ACTIONS(7908), + [anon_sym___unused] = ACTIONS(7908), + [anon_sym__Complex] = ACTIONS(7908), + [anon_sym___complex] = ACTIONS(7908), + [anon_sym_IBOutlet] = ACTIONS(7908), + [anon_sym_IBInspectable] = ACTIONS(7908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7908), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8143), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8146), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8146), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8149), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8149), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8149), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8149), - [anon_sym_NS_AVAILABLE] = ACTIONS(8152), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8152), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8152), - [anon_sym_API_AVAILABLE] = ACTIONS(8152), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8152), - [anon_sym_API_DEPRECATED] = ACTIONS(8152), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8152), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8152), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8152), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8152), - [anon_sym___deprecated_msg] = ACTIONS(8152), - [anon_sym___deprecated_enum_msg] = ACTIONS(8152), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8152), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8152), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8152), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8152), + [sym_method_attribute_specifier] = ACTIONS(8075), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8078), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8078), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8081), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8081), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8081), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8081), + [anon_sym_NS_AVAILABLE] = ACTIONS(8084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8084), + [anon_sym_API_AVAILABLE] = ACTIONS(8084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8084), + [anon_sym_API_DEPRECATED] = ACTIONS(8084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8084), + [anon_sym___deprecated_msg] = ACTIONS(8084), + [anon_sym___deprecated_enum_msg] = ACTIONS(8084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8084), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -533354,84 +524842,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3409] = { - [sym_field_declaration_list] = STATE(3538), - [sym_superclass_reference] = STATE(3432), - [sym_identifier] = ACTIONS(8099), - [anon_sym_COMMA] = ACTIONS(8101), - [anon_sym_RPAREN] = ACTIONS(8101), - [anon_sym_LPAREN2] = ACTIONS(8101), - [anon_sym_STAR] = ACTIONS(8101), - [anon_sym_SEMI] = ACTIONS(8101), - [anon_sym_extern] = ACTIONS(8099), - [anon_sym___attribute] = ACTIONS(8099), - [anon_sym___attribute__] = ACTIONS(8099), - [anon_sym___declspec] = ACTIONS(8099), - [anon_sym___based] = ACTIONS(8099), - [anon_sym_LBRACE] = ACTIONS(8123), - [anon_sym_LBRACK] = ACTIONS(8101), - [anon_sym_static] = ACTIONS(8099), - [anon_sym_auto] = ACTIONS(8099), - [anon_sym_register] = ACTIONS(8099), - [anon_sym_inline] = ACTIONS(8099), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8099), - [anon_sym_const] = ACTIONS(8099), - [anon_sym_volatile] = ACTIONS(8099), - [anon_sym_restrict] = ACTIONS(8099), - [anon_sym__Atomic] = ACTIONS(8099), - [anon_sym_in] = ACTIONS(8099), - [anon_sym_out] = ACTIONS(8099), - [anon_sym_inout] = ACTIONS(8099), - [anon_sym_bycopy] = ACTIONS(8099), - [anon_sym_byref] = ACTIONS(8099), - [anon_sym_oneway] = ACTIONS(8099), - [anon_sym__Nullable] = ACTIONS(8099), - [anon_sym__Nonnull] = ACTIONS(8099), - [anon_sym__Nullable_result] = ACTIONS(8099), - [anon_sym__Null_unspecified] = ACTIONS(8099), - [anon_sym___autoreleasing] = ACTIONS(8099), - [anon_sym___nullable] = ACTIONS(8099), - [anon_sym___nonnull] = ACTIONS(8099), - [anon_sym___strong] = ACTIONS(8099), - [anon_sym___weak] = ACTIONS(8099), - [anon_sym___bridge] = ACTIONS(8099), - [anon_sym___bridge_transfer] = ACTIONS(8099), - [anon_sym___bridge_retained] = ACTIONS(8099), - [anon_sym___unsafe_unretained] = ACTIONS(8099), - [anon_sym___block] = ACTIONS(8099), - [anon_sym___kindof] = ACTIONS(8099), - [anon_sym___unused] = ACTIONS(8099), - [anon_sym__Complex] = ACTIONS(8099), - [anon_sym___complex] = ACTIONS(8099), - [anon_sym_IBOutlet] = ACTIONS(8099), - [anon_sym_IBInspectable] = ACTIONS(8099), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8099), - [anon_sym_COLON] = ACTIONS(8095), - [anon_sym_ATdefs] = ACTIONS(8106), + [3348] = { + [sym_field_declaration_list] = STATE(3456), + [sym_superclass_reference] = STATE(3374), + [sym_identifier] = ACTIONS(8023), + [anon_sym_COMMA] = ACTIONS(8025), + [anon_sym_RPAREN] = ACTIONS(8025), + [anon_sym_LPAREN2] = ACTIONS(8025), + [anon_sym_STAR] = ACTIONS(8025), + [anon_sym_SEMI] = ACTIONS(8025), + [anon_sym_extern] = ACTIONS(8023), + [anon_sym___attribute] = ACTIONS(8023), + [anon_sym___attribute__] = ACTIONS(8023), + [anon_sym___declspec] = ACTIONS(8023), + [anon_sym___based] = ACTIONS(8023), + [anon_sym_LBRACE] = ACTIONS(8087), + [anon_sym_LBRACK] = ACTIONS(8025), + [anon_sym_static] = ACTIONS(8023), + [anon_sym_auto] = ACTIONS(8023), + [anon_sym_register] = ACTIONS(8023), + [anon_sym_inline] = ACTIONS(8023), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8023), + [anon_sym_const] = ACTIONS(8023), + [anon_sym_volatile] = ACTIONS(8023), + [anon_sym_restrict] = ACTIONS(8023), + [anon_sym__Atomic] = ACTIONS(8023), + [anon_sym_in] = ACTIONS(8023), + [anon_sym_out] = ACTIONS(8023), + [anon_sym_inout] = ACTIONS(8023), + [anon_sym_bycopy] = ACTIONS(8023), + [anon_sym_byref] = ACTIONS(8023), + [anon_sym_oneway] = ACTIONS(8023), + [anon_sym__Nullable] = ACTIONS(8023), + [anon_sym__Nonnull] = ACTIONS(8023), + [anon_sym__Nullable_result] = ACTIONS(8023), + [anon_sym__Null_unspecified] = ACTIONS(8023), + [anon_sym___autoreleasing] = ACTIONS(8023), + [anon_sym___nullable] = ACTIONS(8023), + [anon_sym___nonnull] = ACTIONS(8023), + [anon_sym___strong] = ACTIONS(8023), + [anon_sym___weak] = ACTIONS(8023), + [anon_sym___bridge] = ACTIONS(8023), + [anon_sym___bridge_transfer] = ACTIONS(8023), + [anon_sym___bridge_retained] = ACTIONS(8023), + [anon_sym___unsafe_unretained] = ACTIONS(8023), + [anon_sym___block] = ACTIONS(8023), + [anon_sym___kindof] = ACTIONS(8023), + [anon_sym___unused] = ACTIONS(8023), + [anon_sym__Complex] = ACTIONS(8023), + [anon_sym___complex] = ACTIONS(8023), + [anon_sym_IBOutlet] = ACTIONS(8023), + [anon_sym_IBInspectable] = ACTIONS(8023), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8023), + [anon_sym_COLON] = ACTIONS(8029), + [anon_sym_ATdefs] = ACTIONS(8031), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8099), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8099), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8099), + [sym_method_attribute_specifier] = ACTIONS(8023), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8023), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8023), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8023), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8023), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8023), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8023), + [anon_sym_NS_AVAILABLE] = ACTIONS(8023), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8023), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_API_AVAILABLE] = ACTIONS(8023), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8023), + [anon_sym_API_DEPRECATED] = ACTIONS(8023), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8023), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8023), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8023), + [anon_sym___deprecated_msg] = ACTIONS(8023), + [anon_sym___deprecated_enum_msg] = ACTIONS(8023), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8023), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8023), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3349] = { + [sym_attribute_specifier] = STATE(3347), + [sym_ms_declspec_modifier] = STATE(3347), + [sym_storage_class_specifier] = STATE(3347), + [sym_type_qualifier] = STATE(3347), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3534), + [sym_availability_attribute_specifier] = STATE(3534), + [aux_sym__declaration_specifiers_repeat1] = STATE(3347), + [sym_identifier] = ACTIONS(7918), + [anon_sym_RPAREN] = ACTIONS(7920), + [anon_sym_LPAREN2] = ACTIONS(7920), + [anon_sym_STAR] = ACTIONS(7920), + [anon_sym_extern] = ACTIONS(7902), + [anon_sym___attribute] = ACTIONS(8090), + [anon_sym___attribute__] = ACTIONS(8090), + [anon_sym___declspec] = ACTIONS(7906), + [anon_sym___based] = ACTIONS(7918), + [anon_sym_LBRACK] = ACTIONS(7920), + [anon_sym_static] = ACTIONS(7902), + [anon_sym_auto] = ACTIONS(7902), + [anon_sym_register] = ACTIONS(7902), + [anon_sym_inline] = ACTIONS(7902), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7902), + [anon_sym_const] = ACTIONS(7908), + [anon_sym_volatile] = ACTIONS(7908), + [anon_sym_restrict] = ACTIONS(7908), + [anon_sym__Atomic] = ACTIONS(7908), + [anon_sym_in] = ACTIONS(7908), + [anon_sym_out] = ACTIONS(7908), + [anon_sym_inout] = ACTIONS(7908), + [anon_sym_bycopy] = ACTIONS(7908), + [anon_sym_byref] = ACTIONS(7908), + [anon_sym_oneway] = ACTIONS(7908), + [anon_sym__Nullable] = ACTIONS(7908), + [anon_sym__Nonnull] = ACTIONS(7908), + [anon_sym__Nullable_result] = ACTIONS(7908), + [anon_sym__Null_unspecified] = ACTIONS(7908), + [anon_sym___autoreleasing] = ACTIONS(7908), + [anon_sym___nullable] = ACTIONS(7908), + [anon_sym___nonnull] = ACTIONS(7908), + [anon_sym___strong] = ACTIONS(7908), + [anon_sym___weak] = ACTIONS(7908), + [anon_sym___bridge] = ACTIONS(7908), + [anon_sym___bridge_transfer] = ACTIONS(7908), + [anon_sym___bridge_retained] = ACTIONS(7908), + [anon_sym___unsafe_unretained] = ACTIONS(7908), + [anon_sym___block] = ACTIONS(7908), + [anon_sym___kindof] = ACTIONS(7908), + [anon_sym___unused] = ACTIONS(7908), + [anon_sym__Complex] = ACTIONS(7908), + [anon_sym___complex] = ACTIONS(7908), + [anon_sym_IBOutlet] = ACTIONS(7908), + [anon_sym_IBInspectable] = ACTIONS(7908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7908), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8093), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8096), [anon_sym_NS_UNAVAILABLE] = ACTIONS(8099), [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8099), [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8099), [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8099), - [anon_sym_NS_AVAILABLE] = ACTIONS(8099), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8099), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_API_AVAILABLE] = ACTIONS(8099), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8099), - [anon_sym_API_DEPRECATED] = ACTIONS(8099), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8099), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8099), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8099), - [anon_sym___deprecated_msg] = ACTIONS(8099), - [anon_sym___deprecated_enum_msg] = ACTIONS(8099), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8099), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8099), + [anon_sym_NS_AVAILABLE] = ACTIONS(8102), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8102), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8102), + [anon_sym_API_AVAILABLE] = ACTIONS(8102), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8102), + [anon_sym_API_DEPRECATED] = ACTIONS(8102), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8102), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8102), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8102), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8102), + [anon_sym___deprecated_msg] = ACTIONS(8102), + [anon_sym___deprecated_enum_msg] = ACTIONS(8102), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8102), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8102), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8102), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8102), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -533439,83 +525012,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3410] = { - [sym_attribute_specifier] = STATE(3414), - [sym_ms_declspec_modifier] = STATE(3414), - [sym_storage_class_specifier] = STATE(3414), - [sym_type_qualifier] = STATE(3414), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3598), - [sym_availability_attribute_specifier] = STATE(3598), - [aux_sym__declaration_specifiers_repeat1] = STATE(3414), + [3350] = { + [sym_attribute_specifier] = STATE(3353), + [sym_ms_declspec_modifier] = STATE(3353), + [sym_storage_class_specifier] = STATE(3353), + [sym_type_qualifier] = STATE(3353), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3534), + [sym_availability_attribute_specifier] = STATE(3534), + [aux_sym__declaration_specifiers_repeat1] = STATE(3353), + [sym_identifier] = ACTIONS(7918), + [anon_sym_LPAREN2] = ACTIONS(7920), + [anon_sym_STAR] = ACTIONS(7920), + [anon_sym_extern] = ACTIONS(7902), + [anon_sym___attribute] = ACTIONS(8090), + [anon_sym___attribute__] = ACTIONS(8090), + [anon_sym___declspec] = ACTIONS(7906), + [anon_sym___based] = ACTIONS(7918), + [anon_sym_LBRACK] = ACTIONS(7920), + [anon_sym_static] = ACTIONS(7902), + [anon_sym_auto] = ACTIONS(7902), + [anon_sym_register] = ACTIONS(7902), + [anon_sym_inline] = ACTIONS(7902), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7902), + [anon_sym_const] = ACTIONS(7908), + [anon_sym_volatile] = ACTIONS(7908), + [anon_sym_restrict] = ACTIONS(7908), + [anon_sym__Atomic] = ACTIONS(7908), + [anon_sym_in] = ACTIONS(8105), + [anon_sym_out] = ACTIONS(7908), + [anon_sym_inout] = ACTIONS(7908), + [anon_sym_bycopy] = ACTIONS(7908), + [anon_sym_byref] = ACTIONS(7908), + [anon_sym_oneway] = ACTIONS(7908), + [anon_sym__Nullable] = ACTIONS(7908), + [anon_sym__Nonnull] = ACTIONS(7908), + [anon_sym__Nullable_result] = ACTIONS(7908), + [anon_sym__Null_unspecified] = ACTIONS(7908), + [anon_sym___autoreleasing] = ACTIONS(7908), + [anon_sym___nullable] = ACTIONS(7908), + [anon_sym___nonnull] = ACTIONS(7908), + [anon_sym___strong] = ACTIONS(7908), + [anon_sym___weak] = ACTIONS(7908), + [anon_sym___bridge] = ACTIONS(7908), + [anon_sym___bridge_transfer] = ACTIONS(7908), + [anon_sym___bridge_retained] = ACTIONS(7908), + [anon_sym___unsafe_unretained] = ACTIONS(7908), + [anon_sym___block] = ACTIONS(7908), + [anon_sym___kindof] = ACTIONS(7908), + [anon_sym___unused] = ACTIONS(7908), + [anon_sym__Complex] = ACTIONS(7908), + [anon_sym___complex] = ACTIONS(7908), + [anon_sym_IBOutlet] = ACTIONS(7908), + [anon_sym_IBInspectable] = ACTIONS(7908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7908), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8093), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8096), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8096), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8099), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8099), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8099), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8099), + [anon_sym_NS_AVAILABLE] = ACTIONS(8102), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8102), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8102), + [anon_sym_API_AVAILABLE] = ACTIONS(8102), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8102), + [anon_sym_API_DEPRECATED] = ACTIONS(8102), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8102), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8102), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8102), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8102), + [anon_sym___deprecated_msg] = ACTIONS(8102), + [anon_sym___deprecated_enum_msg] = ACTIONS(8102), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8102), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8102), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8102), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8102), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3351] = { + [sym_generic_type_references] = STATE(3449), + [sym_identifier] = ACTIONS(6781), + [anon_sym_COMMA] = ACTIONS(6783), + [anon_sym_RPAREN] = ACTIONS(6783), + [anon_sym_LPAREN2] = ACTIONS(6783), + [anon_sym_STAR] = ACTIONS(6783), + [anon_sym_LT] = ACTIONS(8108), + [anon_sym_SEMI] = ACTIONS(6783), + [anon_sym_extern] = ACTIONS(6781), + [anon_sym___attribute] = ACTIONS(6781), + [anon_sym___attribute__] = ACTIONS(6781), + [anon_sym___declspec] = ACTIONS(6781), + [anon_sym___based] = ACTIONS(6781), + [anon_sym_LBRACE] = ACTIONS(6783), + [anon_sym_LBRACK] = ACTIONS(6783), + [anon_sym_static] = ACTIONS(6781), + [anon_sym_auto] = ACTIONS(6781), + [anon_sym_register] = ACTIONS(6781), + [anon_sym_inline] = ACTIONS(6781), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6781), + [anon_sym_const] = ACTIONS(6781), + [anon_sym_volatile] = ACTIONS(6781), + [anon_sym_restrict] = ACTIONS(6781), + [anon_sym__Atomic] = ACTIONS(6781), + [anon_sym_in] = ACTIONS(6781), + [anon_sym_out] = ACTIONS(6781), + [anon_sym_inout] = ACTIONS(6781), + [anon_sym_bycopy] = ACTIONS(6781), + [anon_sym_byref] = ACTIONS(6781), + [anon_sym_oneway] = ACTIONS(6781), + [anon_sym__Nullable] = ACTIONS(6781), + [anon_sym__Nonnull] = ACTIONS(6781), + [anon_sym__Nullable_result] = ACTIONS(6781), + [anon_sym__Null_unspecified] = ACTIONS(6781), + [anon_sym___autoreleasing] = ACTIONS(6781), + [anon_sym___nullable] = ACTIONS(6781), + [anon_sym___nonnull] = ACTIONS(6781), + [anon_sym___strong] = ACTIONS(6781), + [anon_sym___weak] = ACTIONS(6781), + [anon_sym___bridge] = ACTIONS(6781), + [anon_sym___bridge_transfer] = ACTIONS(6781), + [anon_sym___bridge_retained] = ACTIONS(6781), + [anon_sym___unsafe_unretained] = ACTIONS(6781), + [anon_sym___block] = ACTIONS(6781), + [anon_sym___kindof] = ACTIONS(6781), + [anon_sym___unused] = ACTIONS(6781), + [anon_sym__Complex] = ACTIONS(6781), + [anon_sym___complex] = ACTIONS(6781), + [anon_sym_IBOutlet] = ACTIONS(6781), + [anon_sym_IBInspectable] = ACTIONS(6781), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6781), + [anon_sym_COLON] = ACTIONS(6783), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6781), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6781), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6781), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6781), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6781), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6781), + [anon_sym_NS_AVAILABLE] = ACTIONS(6781), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6781), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_API_AVAILABLE] = ACTIONS(6781), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_API_DEPRECATED] = ACTIONS(6781), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6781), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6781), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6781), + [anon_sym___deprecated_msg] = ACTIONS(6781), + [anon_sym___deprecated_enum_msg] = ACTIONS(6781), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6781), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3352] = { + [sym_attribute_specifier] = STATE(3355), + [sym_ms_declspec_modifier] = STATE(3355), + [sym_storage_class_specifier] = STATE(3355), + [sym_type_qualifier] = STATE(3355), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3534), + [sym_availability_attribute_specifier] = STATE(3534), + [aux_sym__declaration_specifiers_repeat1] = STATE(3355), + [sym_identifier] = ACTIONS(7975), + [anon_sym_LPAREN2] = ACTIONS(7977), + [anon_sym_STAR] = ACTIONS(7977), + [anon_sym_extern] = ACTIONS(7902), + [anon_sym___attribute] = ACTIONS(8057), + [anon_sym___attribute__] = ACTIONS(8057), + [anon_sym___declspec] = ACTIONS(7906), + [anon_sym___based] = ACTIONS(7975), + [anon_sym_LBRACK] = ACTIONS(7977), + [anon_sym_static] = ACTIONS(7902), + [anon_sym_auto] = ACTIONS(7902), + [anon_sym_register] = ACTIONS(7902), + [anon_sym_inline] = ACTIONS(7902), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7902), + [anon_sym_const] = ACTIONS(7908), + [anon_sym_volatile] = ACTIONS(7908), + [anon_sym_restrict] = ACTIONS(7908), + [anon_sym__Atomic] = ACTIONS(7908), + [anon_sym_in] = ACTIONS(8110), + [anon_sym_out] = ACTIONS(7908), + [anon_sym_inout] = ACTIONS(7908), + [anon_sym_bycopy] = ACTIONS(7908), + [anon_sym_byref] = ACTIONS(7908), + [anon_sym_oneway] = ACTIONS(7908), + [anon_sym__Nullable] = ACTIONS(7908), + [anon_sym__Nonnull] = ACTIONS(7908), + [anon_sym__Nullable_result] = ACTIONS(7908), + [anon_sym__Null_unspecified] = ACTIONS(7908), + [anon_sym___autoreleasing] = ACTIONS(7908), + [anon_sym___nullable] = ACTIONS(7908), + [anon_sym___nonnull] = ACTIONS(7908), + [anon_sym___strong] = ACTIONS(7908), + [anon_sym___weak] = ACTIONS(7908), + [anon_sym___bridge] = ACTIONS(7908), + [anon_sym___bridge_transfer] = ACTIONS(7908), + [anon_sym___bridge_retained] = ACTIONS(7908), + [anon_sym___unsafe_unretained] = ACTIONS(7908), + [anon_sym___block] = ACTIONS(7908), + [anon_sym___kindof] = ACTIONS(7908), + [anon_sym___unused] = ACTIONS(7908), + [anon_sym__Complex] = ACTIONS(7908), + [anon_sym___complex] = ACTIONS(7908), + [anon_sym_IBOutlet] = ACTIONS(7908), + [anon_sym_IBInspectable] = ACTIONS(7908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7908), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8060), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8063), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8063), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8066), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8066), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8066), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8066), + [anon_sym_NS_AVAILABLE] = ACTIONS(8069), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8069), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8069), + [anon_sym_API_AVAILABLE] = ACTIONS(8069), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8069), + [anon_sym_API_DEPRECATED] = ACTIONS(8069), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8069), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8069), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8069), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8069), + [anon_sym___deprecated_msg] = ACTIONS(8069), + [anon_sym___deprecated_enum_msg] = ACTIONS(8069), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8069), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8069), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8069), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8069), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3353] = { + [sym_attribute_specifier] = STATE(3324), + [sym_ms_declspec_modifier] = STATE(3324), + [sym_storage_class_specifier] = STATE(3324), + [sym_type_qualifier] = STATE(3324), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3534), + [sym_availability_attribute_specifier] = STATE(3534), + [aux_sym__declaration_specifiers_repeat1] = STATE(3324), [sym_identifier] = ACTIONS(7941), [anon_sym_LPAREN2] = ACTIONS(7943), [anon_sym_STAR] = ACTIONS(7943), - [anon_sym_extern] = ACTIONS(7945), - [anon_sym___attribute] = ACTIONS(8140), - [anon_sym___attribute__] = ACTIONS(8140), - [anon_sym___declspec] = ACTIONS(7949), + [anon_sym_extern] = ACTIONS(7902), + [anon_sym___attribute] = ACTIONS(8072), + [anon_sym___attribute__] = ACTIONS(8072), + [anon_sym___declspec] = ACTIONS(7906), [anon_sym___based] = ACTIONS(7941), [anon_sym_LBRACK] = ACTIONS(7943), - [anon_sym_static] = ACTIONS(7945), - [anon_sym_auto] = ACTIONS(7945), - [anon_sym_register] = ACTIONS(7945), - [anon_sym_inline] = ACTIONS(7945), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7945), - [anon_sym_const] = ACTIONS(7951), - [anon_sym_volatile] = ACTIONS(7951), - [anon_sym_restrict] = ACTIONS(7951), - [anon_sym__Atomic] = ACTIONS(7951), - [anon_sym_in] = ACTIONS(8155), - [anon_sym_out] = ACTIONS(7951), - [anon_sym_inout] = ACTIONS(7951), - [anon_sym_bycopy] = ACTIONS(7951), - [anon_sym_byref] = ACTIONS(7951), - [anon_sym_oneway] = ACTIONS(7951), - [anon_sym__Nullable] = ACTIONS(7951), - [anon_sym__Nonnull] = ACTIONS(7951), - [anon_sym__Nullable_result] = ACTIONS(7951), - [anon_sym__Null_unspecified] = ACTIONS(7951), - [anon_sym___autoreleasing] = ACTIONS(7951), - [anon_sym___nullable] = ACTIONS(7951), - [anon_sym___nonnull] = ACTIONS(7951), - [anon_sym___strong] = ACTIONS(7951), - [anon_sym___weak] = ACTIONS(7951), - [anon_sym___bridge] = ACTIONS(7951), - [anon_sym___bridge_transfer] = ACTIONS(7951), - [anon_sym___bridge_retained] = ACTIONS(7951), - [anon_sym___unsafe_unretained] = ACTIONS(7951), - [anon_sym___block] = ACTIONS(7951), - [anon_sym___kindof] = ACTIONS(7951), - [anon_sym___unused] = ACTIONS(7951), - [anon_sym__Complex] = ACTIONS(7951), - [anon_sym___complex] = ACTIONS(7951), - [anon_sym_IBOutlet] = ACTIONS(7951), - [anon_sym_IBInspectable] = ACTIONS(7951), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7951), + [anon_sym_static] = ACTIONS(7902), + [anon_sym_auto] = ACTIONS(7902), + [anon_sym_register] = ACTIONS(7902), + [anon_sym_inline] = ACTIONS(7902), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7902), + [anon_sym_const] = ACTIONS(7908), + [anon_sym_volatile] = ACTIONS(7908), + [anon_sym_restrict] = ACTIONS(7908), + [anon_sym__Atomic] = ACTIONS(7908), + [anon_sym_in] = ACTIONS(8113), + [anon_sym_out] = ACTIONS(7908), + [anon_sym_inout] = ACTIONS(7908), + [anon_sym_bycopy] = ACTIONS(7908), + [anon_sym_byref] = ACTIONS(7908), + [anon_sym_oneway] = ACTIONS(7908), + [anon_sym__Nullable] = ACTIONS(7908), + [anon_sym__Nonnull] = ACTIONS(7908), + [anon_sym__Nullable_result] = ACTIONS(7908), + [anon_sym__Null_unspecified] = ACTIONS(7908), + [anon_sym___autoreleasing] = ACTIONS(7908), + [anon_sym___nullable] = ACTIONS(7908), + [anon_sym___nonnull] = ACTIONS(7908), + [anon_sym___strong] = ACTIONS(7908), + [anon_sym___weak] = ACTIONS(7908), + [anon_sym___bridge] = ACTIONS(7908), + [anon_sym___bridge_transfer] = ACTIONS(7908), + [anon_sym___bridge_retained] = ACTIONS(7908), + [anon_sym___unsafe_unretained] = ACTIONS(7908), + [anon_sym___block] = ACTIONS(7908), + [anon_sym___kindof] = ACTIONS(7908), + [anon_sym___unused] = ACTIONS(7908), + [anon_sym__Complex] = ACTIONS(7908), + [anon_sym___complex] = ACTIONS(7908), + [anon_sym_IBOutlet] = ACTIONS(7908), + [anon_sym_IBInspectable] = ACTIONS(7908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7908), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8143), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8146), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8146), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8149), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8149), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8149), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8149), - [anon_sym_NS_AVAILABLE] = ACTIONS(8152), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8152), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8152), - [anon_sym_API_AVAILABLE] = ACTIONS(8152), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8152), - [anon_sym_API_DEPRECATED] = ACTIONS(8152), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8152), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8152), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8152), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8152), - [anon_sym___deprecated_msg] = ACTIONS(8152), - [anon_sym___deprecated_enum_msg] = ACTIONS(8152), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8152), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8152), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8152), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8152), + [sym_method_attribute_specifier] = ACTIONS(8075), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8078), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8078), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8081), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8081), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8081), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8081), + [anon_sym_NS_AVAILABLE] = ACTIONS(8084), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8084), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8084), + [anon_sym_API_AVAILABLE] = ACTIONS(8084), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8084), + [anon_sym_API_DEPRECATED] = ACTIONS(8084), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8084), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8084), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8084), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8084), + [anon_sym___deprecated_msg] = ACTIONS(8084), + [anon_sym___deprecated_enum_msg] = ACTIONS(8084), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8084), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8084), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8084), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8084), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -533523,83 +525348,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3411] = { - [sym_generic_type_references] = STATE(3485), - [sym_identifier] = ACTIONS(6814), - [anon_sym_COMMA] = ACTIONS(6816), - [anon_sym_RPAREN] = ACTIONS(6816), - [anon_sym_LPAREN2] = ACTIONS(6816), - [anon_sym_STAR] = ACTIONS(6816), - [anon_sym_LT] = ACTIONS(8158), - [anon_sym_SEMI] = ACTIONS(6816), - [anon_sym_extern] = ACTIONS(6814), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___declspec] = ACTIONS(6814), - [anon_sym___based] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6816), - [anon_sym_LBRACK] = ACTIONS(6816), - [anon_sym_static] = ACTIONS(6814), - [anon_sym_auto] = ACTIONS(6814), - [anon_sym_register] = ACTIONS(6814), - [anon_sym_inline] = ACTIONS(6814), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6814), - [anon_sym_const] = ACTIONS(6814), - [anon_sym_volatile] = ACTIONS(6814), - [anon_sym_restrict] = ACTIONS(6814), - [anon_sym__Atomic] = ACTIONS(6814), - [anon_sym_in] = ACTIONS(6814), - [anon_sym_out] = ACTIONS(6814), - [anon_sym_inout] = ACTIONS(6814), - [anon_sym_bycopy] = ACTIONS(6814), - [anon_sym_byref] = ACTIONS(6814), - [anon_sym_oneway] = ACTIONS(6814), - [anon_sym__Nullable] = ACTIONS(6814), - [anon_sym__Nonnull] = ACTIONS(6814), - [anon_sym__Nullable_result] = ACTIONS(6814), - [anon_sym__Null_unspecified] = ACTIONS(6814), - [anon_sym___autoreleasing] = ACTIONS(6814), - [anon_sym___nullable] = ACTIONS(6814), - [anon_sym___nonnull] = ACTIONS(6814), - [anon_sym___strong] = ACTIONS(6814), - [anon_sym___weak] = ACTIONS(6814), - [anon_sym___bridge] = ACTIONS(6814), - [anon_sym___bridge_transfer] = ACTIONS(6814), - [anon_sym___bridge_retained] = ACTIONS(6814), - [anon_sym___unsafe_unretained] = ACTIONS(6814), - [anon_sym___block] = ACTIONS(6814), - [anon_sym___kindof] = ACTIONS(6814), - [anon_sym___unused] = ACTIONS(6814), - [anon_sym__Complex] = ACTIONS(6814), - [anon_sym___complex] = ACTIONS(6814), - [anon_sym_IBOutlet] = ACTIONS(6814), - [anon_sym_IBInspectable] = ACTIONS(6814), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6814), - [anon_sym_COLON] = ACTIONS(6816), + [3354] = { + [sym_attribute_specifier] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3534), + [sym_availability_attribute_specifier] = STATE(3534), + [aux_sym__declaration_specifiers_repeat1] = STATE(3318), + [sym_identifier] = ACTIONS(7975), + [anon_sym_LPAREN2] = ACTIONS(7977), + [anon_sym_STAR] = ACTIONS(7977), + [anon_sym_SEMI] = ACTIONS(8116), + [anon_sym_extern] = ACTIONS(7902), + [anon_sym___attribute] = ACTIONS(7904), + [anon_sym___attribute__] = ACTIONS(7904), + [anon_sym___declspec] = ACTIONS(7906), + [anon_sym___based] = ACTIONS(7975), + [anon_sym_static] = ACTIONS(7902), + [anon_sym_auto] = ACTIONS(7902), + [anon_sym_register] = ACTIONS(7902), + [anon_sym_inline] = ACTIONS(7902), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7902), + [anon_sym_const] = ACTIONS(7908), + [anon_sym_volatile] = ACTIONS(7908), + [anon_sym_restrict] = ACTIONS(7908), + [anon_sym__Atomic] = ACTIONS(7908), + [anon_sym_in] = ACTIONS(7908), + [anon_sym_out] = ACTIONS(7908), + [anon_sym_inout] = ACTIONS(7908), + [anon_sym_bycopy] = ACTIONS(7908), + [anon_sym_byref] = ACTIONS(7908), + [anon_sym_oneway] = ACTIONS(7908), + [anon_sym__Nullable] = ACTIONS(7908), + [anon_sym__Nonnull] = ACTIONS(7908), + [anon_sym__Nullable_result] = ACTIONS(7908), + [anon_sym__Null_unspecified] = ACTIONS(7908), + [anon_sym___autoreleasing] = ACTIONS(7908), + [anon_sym___nullable] = ACTIONS(7908), + [anon_sym___nonnull] = ACTIONS(7908), + [anon_sym___strong] = ACTIONS(7908), + [anon_sym___weak] = ACTIONS(7908), + [anon_sym___bridge] = ACTIONS(7908), + [anon_sym___bridge_transfer] = ACTIONS(7908), + [anon_sym___bridge_retained] = ACTIONS(7908), + [anon_sym___unsafe_unretained] = ACTIONS(7908), + [anon_sym___block] = ACTIONS(7908), + [anon_sym___kindof] = ACTIONS(7908), + [anon_sym___unused] = ACTIONS(7908), + [anon_sym__Complex] = ACTIONS(7908), + [anon_sym___complex] = ACTIONS(7908), + [anon_sym_IBOutlet] = ACTIONS(7908), + [anon_sym_IBInspectable] = ACTIONS(7908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7908), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6814), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6814), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6814), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6814), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6814), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6814), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6814), - [anon_sym_NS_AVAILABLE] = ACTIONS(6814), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6814), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6814), - [anon_sym_API_AVAILABLE] = ACTIONS(6814), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6814), - [anon_sym_API_DEPRECATED] = ACTIONS(6814), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6814), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6814), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6814), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6814), - [anon_sym___deprecated_msg] = ACTIONS(6814), - [anon_sym___deprecated_enum_msg] = ACTIONS(6814), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6814), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6814), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6814), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6814), + [sym_method_attribute_specifier] = ACTIONS(7910), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7914), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7914), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7914), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7914), + [anon_sym_NS_AVAILABLE] = ACTIONS(7916), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7916), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_API_AVAILABLE] = ACTIONS(7916), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7916), + [anon_sym_API_DEPRECATED] = ACTIONS(7916), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7916), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7916), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7916), + [anon_sym___deprecated_msg] = ACTIONS(7916), + [anon_sym___deprecated_enum_msg] = ACTIONS(7916), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7916), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7916), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -533607,83 +525432,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3412] = { - [sym_attribute_specifier] = STATE(3416), - [sym_ms_declspec_modifier] = STATE(3416), - [sym_storage_class_specifier] = STATE(3416), - [sym_type_qualifier] = STATE(3416), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3598), - [sym_availability_attribute_specifier] = STATE(3598), - [aux_sym__declaration_specifiers_repeat1] = STATE(3416), - [sym_identifier] = ACTIONS(8021), - [anon_sym_LPAREN2] = ACTIONS(8023), - [anon_sym_STAR] = ACTIONS(8023), - [anon_sym_extern] = ACTIONS(7945), - [anon_sym___attribute] = ACTIONS(8108), - [anon_sym___attribute__] = ACTIONS(8108), - [anon_sym___declspec] = ACTIONS(7949), - [anon_sym___based] = ACTIONS(8021), - [anon_sym_LBRACK] = ACTIONS(8023), - [anon_sym_static] = ACTIONS(7945), - [anon_sym_auto] = ACTIONS(7945), - [anon_sym_register] = ACTIONS(7945), - [anon_sym_inline] = ACTIONS(7945), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7945), - [anon_sym_const] = ACTIONS(7951), - [anon_sym_volatile] = ACTIONS(7951), - [anon_sym_restrict] = ACTIONS(7951), - [anon_sym__Atomic] = ACTIONS(7951), - [anon_sym_in] = ACTIONS(8160), - [anon_sym_out] = ACTIONS(7951), - [anon_sym_inout] = ACTIONS(7951), - [anon_sym_bycopy] = ACTIONS(7951), - [anon_sym_byref] = ACTIONS(7951), - [anon_sym_oneway] = ACTIONS(7951), - [anon_sym__Nullable] = ACTIONS(7951), - [anon_sym__Nonnull] = ACTIONS(7951), - [anon_sym__Nullable_result] = ACTIONS(7951), - [anon_sym__Null_unspecified] = ACTIONS(7951), - [anon_sym___autoreleasing] = ACTIONS(7951), - [anon_sym___nullable] = ACTIONS(7951), - [anon_sym___nonnull] = ACTIONS(7951), - [anon_sym___strong] = ACTIONS(7951), - [anon_sym___weak] = ACTIONS(7951), - [anon_sym___bridge] = ACTIONS(7951), - [anon_sym___bridge_transfer] = ACTIONS(7951), - [anon_sym___bridge_retained] = ACTIONS(7951), - [anon_sym___unsafe_unretained] = ACTIONS(7951), - [anon_sym___block] = ACTIONS(7951), - [anon_sym___kindof] = ACTIONS(7951), - [anon_sym___unused] = ACTIONS(7951), - [anon_sym__Complex] = ACTIONS(7951), - [anon_sym___complex] = ACTIONS(7951), - [anon_sym_IBOutlet] = ACTIONS(7951), - [anon_sym_IBInspectable] = ACTIONS(7951), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7951), + [3355] = { + [sym_attribute_specifier] = STATE(3324), + [sym_ms_declspec_modifier] = STATE(3324), + [sym_storage_class_specifier] = STATE(3324), + [sym_type_qualifier] = STATE(3324), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3534), + [sym_availability_attribute_specifier] = STATE(3534), + [aux_sym__declaration_specifiers_repeat1] = STATE(3324), + [sym_identifier] = ACTIONS(7898), + [anon_sym_LPAREN2] = ACTIONS(7900), + [anon_sym_STAR] = ACTIONS(7900), + [anon_sym_extern] = ACTIONS(7902), + [anon_sym___attribute] = ACTIONS(8042), + [anon_sym___attribute__] = ACTIONS(8042), + [anon_sym___declspec] = ACTIONS(7906), + [anon_sym___based] = ACTIONS(7898), + [anon_sym_LBRACK] = ACTIONS(7900), + [anon_sym_static] = ACTIONS(7902), + [anon_sym_auto] = ACTIONS(7902), + [anon_sym_register] = ACTIONS(7902), + [anon_sym_inline] = ACTIONS(7902), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7902), + [anon_sym_const] = ACTIONS(7908), + [anon_sym_volatile] = ACTIONS(7908), + [anon_sym_restrict] = ACTIONS(7908), + [anon_sym__Atomic] = ACTIONS(7908), + [anon_sym_in] = ACTIONS(8118), + [anon_sym_out] = ACTIONS(7908), + [anon_sym_inout] = ACTIONS(7908), + [anon_sym_bycopy] = ACTIONS(7908), + [anon_sym_byref] = ACTIONS(7908), + [anon_sym_oneway] = ACTIONS(7908), + [anon_sym__Nullable] = ACTIONS(7908), + [anon_sym__Nonnull] = ACTIONS(7908), + [anon_sym__Nullable_result] = ACTIONS(7908), + [anon_sym__Null_unspecified] = ACTIONS(7908), + [anon_sym___autoreleasing] = ACTIONS(7908), + [anon_sym___nullable] = ACTIONS(7908), + [anon_sym___nonnull] = ACTIONS(7908), + [anon_sym___strong] = ACTIONS(7908), + [anon_sym___weak] = ACTIONS(7908), + [anon_sym___bridge] = ACTIONS(7908), + [anon_sym___bridge_transfer] = ACTIONS(7908), + [anon_sym___bridge_retained] = ACTIONS(7908), + [anon_sym___unsafe_unretained] = ACTIONS(7908), + [anon_sym___block] = ACTIONS(7908), + [anon_sym___kindof] = ACTIONS(7908), + [anon_sym___unused] = ACTIONS(7908), + [anon_sym__Complex] = ACTIONS(7908), + [anon_sym___complex] = ACTIONS(7908), + [anon_sym_IBOutlet] = ACTIONS(7908), + [anon_sym_IBInspectable] = ACTIONS(7908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7908), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8111), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8114), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8114), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8117), - [anon_sym_NS_AVAILABLE] = ACTIONS(8120), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8120), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8120), - [anon_sym_API_AVAILABLE] = ACTIONS(8120), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8120), - [anon_sym_API_DEPRECATED] = ACTIONS(8120), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8120), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8120), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8120), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8120), - [anon_sym___deprecated_msg] = ACTIONS(8120), - [anon_sym___deprecated_enum_msg] = ACTIONS(8120), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8120), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8120), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8120), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8120), + [sym_method_attribute_specifier] = ACTIONS(8045), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8048), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8048), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8051), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8051), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8051), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8051), + [anon_sym_NS_AVAILABLE] = ACTIONS(8054), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8054), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8054), + [anon_sym_API_AVAILABLE] = ACTIONS(8054), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8054), + [anon_sym_API_DEPRECATED] = ACTIONS(8054), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8054), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8054), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8054), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8054), + [anon_sym___deprecated_msg] = ACTIONS(8054), + [anon_sym___deprecated_enum_msg] = ACTIONS(8054), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8054), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8054), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8054), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8054), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -533691,83 +525516,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3413] = { - [sym_attribute_specifier] = STATE(3385), - [sym_ms_declspec_modifier] = STATE(3385), - [sym_storage_class_specifier] = STATE(3385), - [sym_type_qualifier] = STATE(3385), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3598), - [sym_availability_attribute_specifier] = STATE(3598), - [aux_sym__declaration_specifiers_repeat1] = STATE(3385), - [sym_identifier] = ACTIONS(7941), - [anon_sym_LPAREN2] = ACTIONS(7943), - [anon_sym_STAR] = ACTIONS(7943), - [anon_sym_SEMI] = ACTIONS(8163), - [anon_sym_extern] = ACTIONS(7945), - [anon_sym___attribute] = ACTIONS(7947), - [anon_sym___attribute__] = ACTIONS(7947), - [anon_sym___declspec] = ACTIONS(7949), - [anon_sym___based] = ACTIONS(7941), - [anon_sym_static] = ACTIONS(7945), - [anon_sym_auto] = ACTIONS(7945), - [anon_sym_register] = ACTIONS(7945), - [anon_sym_inline] = ACTIONS(7945), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7945), - [anon_sym_const] = ACTIONS(7951), - [anon_sym_volatile] = ACTIONS(7951), - [anon_sym_restrict] = ACTIONS(7951), - [anon_sym__Atomic] = ACTIONS(7951), - [anon_sym_in] = ACTIONS(7951), - [anon_sym_out] = ACTIONS(7951), - [anon_sym_inout] = ACTIONS(7951), - [anon_sym_bycopy] = ACTIONS(7951), - [anon_sym_byref] = ACTIONS(7951), - [anon_sym_oneway] = ACTIONS(7951), - [anon_sym__Nullable] = ACTIONS(7951), - [anon_sym__Nonnull] = ACTIONS(7951), - [anon_sym__Nullable_result] = ACTIONS(7951), - [anon_sym__Null_unspecified] = ACTIONS(7951), - [anon_sym___autoreleasing] = ACTIONS(7951), - [anon_sym___nullable] = ACTIONS(7951), - [anon_sym___nonnull] = ACTIONS(7951), - [anon_sym___strong] = ACTIONS(7951), - [anon_sym___weak] = ACTIONS(7951), - [anon_sym___bridge] = ACTIONS(7951), - [anon_sym___bridge_transfer] = ACTIONS(7951), - [anon_sym___bridge_retained] = ACTIONS(7951), - [anon_sym___unsafe_unretained] = ACTIONS(7951), - [anon_sym___block] = ACTIONS(7951), - [anon_sym___kindof] = ACTIONS(7951), - [anon_sym___unused] = ACTIONS(7951), - [anon_sym__Complex] = ACTIONS(7951), - [anon_sym___complex] = ACTIONS(7951), - [anon_sym_IBOutlet] = ACTIONS(7951), - [anon_sym_IBInspectable] = ACTIONS(7951), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7951), + [3356] = { + [sym_attribute_specifier] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3534), + [sym_availability_attribute_specifier] = STATE(3534), + [aux_sym__declaration_specifiers_repeat1] = STATE(3318), + [sym_identifier] = ACTIONS(7975), + [anon_sym_LPAREN2] = ACTIONS(7977), + [anon_sym_STAR] = ACTIONS(7977), + [anon_sym_SEMI] = ACTIONS(8121), + [anon_sym_extern] = ACTIONS(7902), + [anon_sym___attribute] = ACTIONS(7904), + [anon_sym___attribute__] = ACTIONS(7904), + [anon_sym___declspec] = ACTIONS(7906), + [anon_sym___based] = ACTIONS(7975), + [anon_sym_static] = ACTIONS(7902), + [anon_sym_auto] = ACTIONS(7902), + [anon_sym_register] = ACTIONS(7902), + [anon_sym_inline] = ACTIONS(7902), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7902), + [anon_sym_const] = ACTIONS(7908), + [anon_sym_volatile] = ACTIONS(7908), + [anon_sym_restrict] = ACTIONS(7908), + [anon_sym__Atomic] = ACTIONS(7908), + [anon_sym_in] = ACTIONS(7908), + [anon_sym_out] = ACTIONS(7908), + [anon_sym_inout] = ACTIONS(7908), + [anon_sym_bycopy] = ACTIONS(7908), + [anon_sym_byref] = ACTIONS(7908), + [anon_sym_oneway] = ACTIONS(7908), + [anon_sym__Nullable] = ACTIONS(7908), + [anon_sym__Nonnull] = ACTIONS(7908), + [anon_sym__Nullable_result] = ACTIONS(7908), + [anon_sym__Null_unspecified] = ACTIONS(7908), + [anon_sym___autoreleasing] = ACTIONS(7908), + [anon_sym___nullable] = ACTIONS(7908), + [anon_sym___nonnull] = ACTIONS(7908), + [anon_sym___strong] = ACTIONS(7908), + [anon_sym___weak] = ACTIONS(7908), + [anon_sym___bridge] = ACTIONS(7908), + [anon_sym___bridge_transfer] = ACTIONS(7908), + [anon_sym___bridge_retained] = ACTIONS(7908), + [anon_sym___unsafe_unretained] = ACTIONS(7908), + [anon_sym___block] = ACTIONS(7908), + [anon_sym___kindof] = ACTIONS(7908), + [anon_sym___unused] = ACTIONS(7908), + [anon_sym__Complex] = ACTIONS(7908), + [anon_sym___complex] = ACTIONS(7908), + [anon_sym_IBOutlet] = ACTIONS(7908), + [anon_sym_IBInspectable] = ACTIONS(7908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7908), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7953), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7955), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7955), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7957), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7957), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7957), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7957), - [anon_sym_NS_AVAILABLE] = ACTIONS(7959), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7959), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_API_AVAILABLE] = ACTIONS(7959), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7959), - [anon_sym_API_DEPRECATED] = ACTIONS(7959), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7959), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7959), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7959), - [anon_sym___deprecated_msg] = ACTIONS(7959), - [anon_sym___deprecated_enum_msg] = ACTIONS(7959), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7959), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7959), + [sym_method_attribute_specifier] = ACTIONS(7910), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7914), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7914), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7914), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7914), + [anon_sym_NS_AVAILABLE] = ACTIONS(7916), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7916), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_API_AVAILABLE] = ACTIONS(7916), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7916), + [anon_sym_API_DEPRECATED] = ACTIONS(7916), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7916), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7916), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7916), + [anon_sym___deprecated_msg] = ACTIONS(7916), + [anon_sym___deprecated_enum_msg] = ACTIONS(7916), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7916), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7916), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -533775,83 +525600,333 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3414] = { - [sym_attribute_specifier] = STATE(3380), - [sym_ms_declspec_modifier] = STATE(3380), - [sym_storage_class_specifier] = STATE(3380), - [sym_type_qualifier] = STATE(3380), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3598), - [sym_availability_attribute_specifier] = STATE(3598), - [aux_sym__declaration_specifiers_repeat1] = STATE(3380), - [sym_identifier] = ACTIONS(8025), - [anon_sym_LPAREN2] = ACTIONS(8027), - [anon_sym_STAR] = ACTIONS(8027), - [anon_sym_extern] = ACTIONS(7945), - [anon_sym___attribute] = ACTIONS(8125), - [anon_sym___attribute__] = ACTIONS(8125), - [anon_sym___declspec] = ACTIONS(7949), - [anon_sym___based] = ACTIONS(8025), - [anon_sym_LBRACK] = ACTIONS(8027), - [anon_sym_static] = ACTIONS(7945), - [anon_sym_auto] = ACTIONS(7945), - [anon_sym_register] = ACTIONS(7945), - [anon_sym_inline] = ACTIONS(7945), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7945), - [anon_sym_const] = ACTIONS(7951), - [anon_sym_volatile] = ACTIONS(7951), - [anon_sym_restrict] = ACTIONS(7951), - [anon_sym__Atomic] = ACTIONS(7951), - [anon_sym_in] = ACTIONS(8165), - [anon_sym_out] = ACTIONS(7951), - [anon_sym_inout] = ACTIONS(7951), - [anon_sym_bycopy] = ACTIONS(7951), - [anon_sym_byref] = ACTIONS(7951), - [anon_sym_oneway] = ACTIONS(7951), - [anon_sym__Nullable] = ACTIONS(7951), - [anon_sym__Nonnull] = ACTIONS(7951), - [anon_sym__Nullable_result] = ACTIONS(7951), - [anon_sym__Null_unspecified] = ACTIONS(7951), - [anon_sym___autoreleasing] = ACTIONS(7951), - [anon_sym___nullable] = ACTIONS(7951), - [anon_sym___nonnull] = ACTIONS(7951), - [anon_sym___strong] = ACTIONS(7951), - [anon_sym___weak] = ACTIONS(7951), - [anon_sym___bridge] = ACTIONS(7951), - [anon_sym___bridge_transfer] = ACTIONS(7951), - [anon_sym___bridge_retained] = ACTIONS(7951), - [anon_sym___unsafe_unretained] = ACTIONS(7951), - [anon_sym___block] = ACTIONS(7951), - [anon_sym___kindof] = ACTIONS(7951), - [anon_sym___unused] = ACTIONS(7951), - [anon_sym__Complex] = ACTIONS(7951), - [anon_sym___complex] = ACTIONS(7951), - [anon_sym_IBOutlet] = ACTIONS(7951), - [anon_sym_IBInspectable] = ACTIONS(7951), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7951), + [3357] = { + [sym_attribute_specifier] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3534), + [sym_availability_attribute_specifier] = STATE(3534), + [aux_sym__declaration_specifiers_repeat1] = STATE(3318), + [sym_identifier] = ACTIONS(7975), + [anon_sym_LPAREN2] = ACTIONS(7977), + [anon_sym_STAR] = ACTIONS(7977), + [anon_sym_SEMI] = ACTIONS(8123), + [anon_sym_extern] = ACTIONS(7902), + [anon_sym___attribute] = ACTIONS(7904), + [anon_sym___attribute__] = ACTIONS(7904), + [anon_sym___declspec] = ACTIONS(7906), + [anon_sym___based] = ACTIONS(7975), + [anon_sym_static] = ACTIONS(7902), + [anon_sym_auto] = ACTIONS(7902), + [anon_sym_register] = ACTIONS(7902), + [anon_sym_inline] = ACTIONS(7902), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7902), + [anon_sym_const] = ACTIONS(7908), + [anon_sym_volatile] = ACTIONS(7908), + [anon_sym_restrict] = ACTIONS(7908), + [anon_sym__Atomic] = ACTIONS(7908), + [anon_sym_in] = ACTIONS(7908), + [anon_sym_out] = ACTIONS(7908), + [anon_sym_inout] = ACTIONS(7908), + [anon_sym_bycopy] = ACTIONS(7908), + [anon_sym_byref] = ACTIONS(7908), + [anon_sym_oneway] = ACTIONS(7908), + [anon_sym__Nullable] = ACTIONS(7908), + [anon_sym__Nonnull] = ACTIONS(7908), + [anon_sym__Nullable_result] = ACTIONS(7908), + [anon_sym__Null_unspecified] = ACTIONS(7908), + [anon_sym___autoreleasing] = ACTIONS(7908), + [anon_sym___nullable] = ACTIONS(7908), + [anon_sym___nonnull] = ACTIONS(7908), + [anon_sym___strong] = ACTIONS(7908), + [anon_sym___weak] = ACTIONS(7908), + [anon_sym___bridge] = ACTIONS(7908), + [anon_sym___bridge_transfer] = ACTIONS(7908), + [anon_sym___bridge_retained] = ACTIONS(7908), + [anon_sym___unsafe_unretained] = ACTIONS(7908), + [anon_sym___block] = ACTIONS(7908), + [anon_sym___kindof] = ACTIONS(7908), + [anon_sym___unused] = ACTIONS(7908), + [anon_sym__Complex] = ACTIONS(7908), + [anon_sym___complex] = ACTIONS(7908), + [anon_sym_IBOutlet] = ACTIONS(7908), + [anon_sym_IBInspectable] = ACTIONS(7908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7908), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8128), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8131), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8131), + [sym_method_attribute_specifier] = ACTIONS(7910), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7914), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7914), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7914), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7914), + [anon_sym_NS_AVAILABLE] = ACTIONS(7916), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7916), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_API_AVAILABLE] = ACTIONS(7916), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7916), + [anon_sym_API_DEPRECATED] = ACTIONS(7916), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7916), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7916), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7916), + [anon_sym___deprecated_msg] = ACTIONS(7916), + [anon_sym___deprecated_enum_msg] = ACTIONS(7916), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7916), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7916), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3358] = { + [sym_attribute_specifier] = STATE(3318), + [sym_ms_declspec_modifier] = STATE(3318), + [sym_storage_class_specifier] = STATE(3318), + [sym_type_qualifier] = STATE(3318), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3534), + [sym_availability_attribute_specifier] = STATE(3534), + [aux_sym__declaration_specifiers_repeat1] = STATE(3318), + [sym_identifier] = ACTIONS(7975), + [anon_sym_LPAREN2] = ACTIONS(7977), + [anon_sym_STAR] = ACTIONS(7977), + [anon_sym_SEMI] = ACTIONS(8125), + [anon_sym_extern] = ACTIONS(7902), + [anon_sym___attribute] = ACTIONS(7904), + [anon_sym___attribute__] = ACTIONS(7904), + [anon_sym___declspec] = ACTIONS(7906), + [anon_sym___based] = ACTIONS(7975), + [anon_sym_static] = ACTIONS(7902), + [anon_sym_auto] = ACTIONS(7902), + [anon_sym_register] = ACTIONS(7902), + [anon_sym_inline] = ACTIONS(7902), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7902), + [anon_sym_const] = ACTIONS(7908), + [anon_sym_volatile] = ACTIONS(7908), + [anon_sym_restrict] = ACTIONS(7908), + [anon_sym__Atomic] = ACTIONS(7908), + [anon_sym_in] = ACTIONS(7908), + [anon_sym_out] = ACTIONS(7908), + [anon_sym_inout] = ACTIONS(7908), + [anon_sym_bycopy] = ACTIONS(7908), + [anon_sym_byref] = ACTIONS(7908), + [anon_sym_oneway] = ACTIONS(7908), + [anon_sym__Nullable] = ACTIONS(7908), + [anon_sym__Nonnull] = ACTIONS(7908), + [anon_sym__Nullable_result] = ACTIONS(7908), + [anon_sym__Null_unspecified] = ACTIONS(7908), + [anon_sym___autoreleasing] = ACTIONS(7908), + [anon_sym___nullable] = ACTIONS(7908), + [anon_sym___nonnull] = ACTIONS(7908), + [anon_sym___strong] = ACTIONS(7908), + [anon_sym___weak] = ACTIONS(7908), + [anon_sym___bridge] = ACTIONS(7908), + [anon_sym___bridge_transfer] = ACTIONS(7908), + [anon_sym___bridge_retained] = ACTIONS(7908), + [anon_sym___unsafe_unretained] = ACTIONS(7908), + [anon_sym___block] = ACTIONS(7908), + [anon_sym___kindof] = ACTIONS(7908), + [anon_sym___unused] = ACTIONS(7908), + [anon_sym__Complex] = ACTIONS(7908), + [anon_sym___complex] = ACTIONS(7908), + [anon_sym_IBOutlet] = ACTIONS(7908), + [anon_sym_IBInspectable] = ACTIONS(7908), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7908), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7910), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7912), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7912), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7914), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7914), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7914), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7914), + [anon_sym_NS_AVAILABLE] = ACTIONS(7916), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7916), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_API_AVAILABLE] = ACTIONS(7916), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7916), + [anon_sym_API_DEPRECATED] = ACTIONS(7916), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7916), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7916), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7916), + [anon_sym___deprecated_msg] = ACTIONS(7916), + [anon_sym___deprecated_enum_msg] = ACTIONS(7916), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7916), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7916), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7916), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3359] = { + [sym_protocol_qualifiers] = STATE(3678), + [sym_generic_type_references] = STATE(3678), + [aux_sym_generic_type_specifier_repeat1] = STATE(3678), + [anon_sym_COMMA] = ACTIONS(6779), + [anon_sym_RPAREN] = ACTIONS(6825), + [anon_sym_LPAREN2] = ACTIONS(8127), + [anon_sym_DASH] = ACTIONS(6777), + [anon_sym_PLUS] = ACTIONS(6777), + [anon_sym_STAR] = ACTIONS(6819), + [anon_sym_SLASH] = ACTIONS(6777), + [anon_sym_PERCENT] = ACTIONS(6777), + [anon_sym_PIPE_PIPE] = ACTIONS(6779), + [anon_sym_AMP_AMP] = ACTIONS(6779), + [anon_sym_PIPE] = ACTIONS(6777), + [anon_sym_CARET] = ACTIONS(6777), + [anon_sym_AMP] = ACTIONS(6777), + [anon_sym_EQ_EQ] = ACTIONS(6779), + [anon_sym_BANG_EQ] = ACTIONS(6779), + [anon_sym_GT] = ACTIONS(6777), + [anon_sym_GT_EQ] = ACTIONS(6779), + [anon_sym_LT_EQ] = ACTIONS(6779), + [anon_sym_LT] = ACTIONS(8131), + [anon_sym_LT_LT] = ACTIONS(6777), + [anon_sym_GT_GT] = ACTIONS(6777), + [anon_sym_SEMI] = ACTIONS(6779), + [anon_sym_LBRACK] = ACTIONS(6825), + [anon_sym_EQ] = ACTIONS(6828), + [anon_sym_const] = ACTIONS(8003), + [anon_sym_volatile] = ACTIONS(8003), + [anon_sym_restrict] = ACTIONS(8003), + [anon_sym__Atomic] = ACTIONS(8003), + [anon_sym_in] = ACTIONS(6813), + [anon_sym_out] = ACTIONS(8003), + [anon_sym_inout] = ACTIONS(8003), + [anon_sym_bycopy] = ACTIONS(8003), + [anon_sym_byref] = ACTIONS(8003), + [anon_sym_oneway] = ACTIONS(8003), + [anon_sym__Nullable] = ACTIONS(6813), + [anon_sym__Nonnull] = ACTIONS(8003), + [anon_sym__Nullable_result] = ACTIONS(8003), + [anon_sym__Null_unspecified] = ACTIONS(8003), + [anon_sym___autoreleasing] = ACTIONS(8003), + [anon_sym___nullable] = ACTIONS(8003), + [anon_sym___nonnull] = ACTIONS(8003), + [anon_sym___strong] = ACTIONS(8003), + [anon_sym___weak] = ACTIONS(8003), + [anon_sym___bridge] = ACTIONS(6813), + [anon_sym___bridge_transfer] = ACTIONS(8003), + [anon_sym___bridge_retained] = ACTIONS(8003), + [anon_sym___unsafe_unretained] = ACTIONS(8003), + [anon_sym___block] = ACTIONS(8003), + [anon_sym___kindof] = ACTIONS(8003), + [anon_sym___unused] = ACTIONS(8003), + [anon_sym__Complex] = ACTIONS(8003), + [anon_sym___complex] = ACTIONS(8003), + [anon_sym_IBOutlet] = ACTIONS(8003), + [anon_sym_IBInspectable] = ACTIONS(8003), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8003), + [anon_sym_COLON] = ACTIONS(6848), + [anon_sym_QMARK] = ACTIONS(6779), + [anon_sym_STAR_EQ] = ACTIONS(6832), + [anon_sym_SLASH_EQ] = ACTIONS(6832), + [anon_sym_PERCENT_EQ] = ACTIONS(6832), + [anon_sym_PLUS_EQ] = ACTIONS(6832), + [anon_sym_DASH_EQ] = ACTIONS(6832), + [anon_sym_LT_LT_EQ] = ACTIONS(6832), + [anon_sym_GT_GT_EQ] = ACTIONS(6832), + [anon_sym_AMP_EQ] = ACTIONS(6832), + [anon_sym_CARET_EQ] = ACTIONS(6832), + [anon_sym_PIPE_EQ] = ACTIONS(6832), + [anon_sym_DASH_DASH] = ACTIONS(6779), + [anon_sym_PLUS_PLUS] = ACTIONS(6779), + [anon_sym_DOT] = ACTIONS(6779), + [anon_sym_DASH_GT] = ACTIONS(6779), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3360] = { + [sym_enumerator_list] = STATE(3396), + [sym_identifier] = ACTIONS(8134), + [anon_sym_COMMA] = ACTIONS(8136), + [anon_sym_RPAREN] = ACTIONS(8136), + [anon_sym_LPAREN2] = ACTIONS(8136), + [anon_sym_STAR] = ACTIONS(8136), + [anon_sym_SEMI] = ACTIONS(8136), + [anon_sym_extern] = ACTIONS(8134), + [anon_sym___attribute] = ACTIONS(8134), + [anon_sym___attribute__] = ACTIONS(8134), + [anon_sym___declspec] = ACTIONS(8134), + [anon_sym___based] = ACTIONS(8134), + [anon_sym_LBRACE] = ACTIONS(8138), + [anon_sym_LBRACK] = ACTIONS(8136), + [anon_sym_static] = ACTIONS(8134), + [anon_sym_auto] = ACTIONS(8134), + [anon_sym_register] = ACTIONS(8134), + [anon_sym_inline] = ACTIONS(8134), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8134), + [anon_sym_const] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym_in] = ACTIONS(8134), + [anon_sym_out] = ACTIONS(8134), + [anon_sym_inout] = ACTIONS(8134), + [anon_sym_bycopy] = ACTIONS(8134), + [anon_sym_byref] = ACTIONS(8134), + [anon_sym_oneway] = ACTIONS(8134), + [anon_sym__Nullable] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym__Nullable_result] = ACTIONS(8134), + [anon_sym__Null_unspecified] = ACTIONS(8134), + [anon_sym___autoreleasing] = ACTIONS(8134), + [anon_sym___nullable] = ACTIONS(8134), + [anon_sym___nonnull] = ACTIONS(8134), + [anon_sym___strong] = ACTIONS(8134), + [anon_sym___weak] = ACTIONS(8134), + [anon_sym___bridge] = ACTIONS(8134), + [anon_sym___bridge_transfer] = ACTIONS(8134), + [anon_sym___bridge_retained] = ACTIONS(8134), + [anon_sym___unsafe_unretained] = ACTIONS(8134), + [anon_sym___block] = ACTIONS(8134), + [anon_sym___kindof] = ACTIONS(8134), + [anon_sym___unused] = ACTIONS(8134), + [anon_sym__Complex] = ACTIONS(8134), + [anon_sym___complex] = ACTIONS(8134), + [anon_sym_IBOutlet] = ACTIONS(8134), + [anon_sym_IBInspectable] = ACTIONS(8134), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8134), + [anon_sym_COLON] = ACTIONS(8136), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8134), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8134), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8134), [anon_sym_NS_UNAVAILABLE] = ACTIONS(8134), [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8134), [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8134), [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8134), - [anon_sym_NS_AVAILABLE] = ACTIONS(8137), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8137), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8137), - [anon_sym_API_AVAILABLE] = ACTIONS(8137), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8137), - [anon_sym_API_DEPRECATED] = ACTIONS(8137), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8137), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8137), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8137), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8137), - [anon_sym___deprecated_msg] = ACTIONS(8137), - [anon_sym___deprecated_enum_msg] = ACTIONS(8137), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8137), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8137), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8137), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8137), + [anon_sym_NS_AVAILABLE] = ACTIONS(8134), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8134), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8134), + [anon_sym_API_AVAILABLE] = ACTIONS(8134), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8134), + [anon_sym_API_DEPRECATED] = ACTIONS(8134), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8134), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8134), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8134), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8134), + [anon_sym___deprecated_msg] = ACTIONS(8134), + [anon_sym___deprecated_enum_msg] = ACTIONS(8134), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8134), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8134), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8134), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8134), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -533859,83 +525934,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3415] = { - [sym_attribute_specifier] = STATE(3385), - [sym_ms_declspec_modifier] = STATE(3385), - [sym_storage_class_specifier] = STATE(3385), - [sym_type_qualifier] = STATE(3385), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3598), - [sym_availability_attribute_specifier] = STATE(3598), - [aux_sym__declaration_specifiers_repeat1] = STATE(3385), - [sym_identifier] = ACTIONS(7941), - [anon_sym_LPAREN2] = ACTIONS(7943), - [anon_sym_STAR] = ACTIONS(7943), - [anon_sym_SEMI] = ACTIONS(8168), - [anon_sym_extern] = ACTIONS(7945), - [anon_sym___attribute] = ACTIONS(7947), - [anon_sym___attribute__] = ACTIONS(7947), - [anon_sym___declspec] = ACTIONS(7949), - [anon_sym___based] = ACTIONS(7941), - [anon_sym_static] = ACTIONS(7945), - [anon_sym_auto] = ACTIONS(7945), - [anon_sym_register] = ACTIONS(7945), - [anon_sym_inline] = ACTIONS(7945), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7945), - [anon_sym_const] = ACTIONS(7951), - [anon_sym_volatile] = ACTIONS(7951), - [anon_sym_restrict] = ACTIONS(7951), - [anon_sym__Atomic] = ACTIONS(7951), - [anon_sym_in] = ACTIONS(7951), - [anon_sym_out] = ACTIONS(7951), - [anon_sym_inout] = ACTIONS(7951), - [anon_sym_bycopy] = ACTIONS(7951), - [anon_sym_byref] = ACTIONS(7951), - [anon_sym_oneway] = ACTIONS(7951), - [anon_sym__Nullable] = ACTIONS(7951), - [anon_sym__Nonnull] = ACTIONS(7951), - [anon_sym__Nullable_result] = ACTIONS(7951), - [anon_sym__Null_unspecified] = ACTIONS(7951), - [anon_sym___autoreleasing] = ACTIONS(7951), - [anon_sym___nullable] = ACTIONS(7951), - [anon_sym___nonnull] = ACTIONS(7951), - [anon_sym___strong] = ACTIONS(7951), - [anon_sym___weak] = ACTIONS(7951), - [anon_sym___bridge] = ACTIONS(7951), - [anon_sym___bridge_transfer] = ACTIONS(7951), - [anon_sym___bridge_retained] = ACTIONS(7951), - [anon_sym___unsafe_unretained] = ACTIONS(7951), - [anon_sym___block] = ACTIONS(7951), - [anon_sym___kindof] = ACTIONS(7951), - [anon_sym___unused] = ACTIONS(7951), - [anon_sym__Complex] = ACTIONS(7951), - [anon_sym___complex] = ACTIONS(7951), - [anon_sym_IBOutlet] = ACTIONS(7951), - [anon_sym_IBInspectable] = ACTIONS(7951), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7951), + [3361] = { + [sym_identifier] = ACTIONS(6856), + [anon_sym_COMMA] = ACTIONS(6858), + [anon_sym_RPAREN] = ACTIONS(6858), + [anon_sym_LPAREN2] = ACTIONS(6858), + [anon_sym_STAR] = ACTIONS(6858), + [anon_sym_LT] = ACTIONS(6858), + [anon_sym_SEMI] = ACTIONS(6858), + [anon_sym_extern] = ACTIONS(6856), + [anon_sym___attribute] = ACTIONS(6856), + [anon_sym___attribute__] = ACTIONS(6856), + [anon_sym___declspec] = ACTIONS(6856), + [anon_sym___based] = ACTIONS(6856), + [anon_sym_LBRACE] = ACTIONS(6858), + [anon_sym_LBRACK] = ACTIONS(6858), + [anon_sym_static] = ACTIONS(6856), + [anon_sym_auto] = ACTIONS(6856), + [anon_sym_register] = ACTIONS(6856), + [anon_sym_inline] = ACTIONS(6856), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6856), + [anon_sym_const] = ACTIONS(6856), + [anon_sym_volatile] = ACTIONS(6856), + [anon_sym_restrict] = ACTIONS(6856), + [anon_sym__Atomic] = ACTIONS(6856), + [anon_sym_in] = ACTIONS(6856), + [anon_sym_out] = ACTIONS(6856), + [anon_sym_inout] = ACTIONS(6856), + [anon_sym_bycopy] = ACTIONS(6856), + [anon_sym_byref] = ACTIONS(6856), + [anon_sym_oneway] = ACTIONS(6856), + [anon_sym__Nullable] = ACTIONS(6856), + [anon_sym__Nonnull] = ACTIONS(6856), + [anon_sym__Nullable_result] = ACTIONS(6856), + [anon_sym__Null_unspecified] = ACTIONS(6856), + [anon_sym___autoreleasing] = ACTIONS(6856), + [anon_sym___nullable] = ACTIONS(6856), + [anon_sym___nonnull] = ACTIONS(6856), + [anon_sym___strong] = ACTIONS(6856), + [anon_sym___weak] = ACTIONS(6856), + [anon_sym___bridge] = ACTIONS(6856), + [anon_sym___bridge_transfer] = ACTIONS(6856), + [anon_sym___bridge_retained] = ACTIONS(6856), + [anon_sym___unsafe_unretained] = ACTIONS(6856), + [anon_sym___block] = ACTIONS(6856), + [anon_sym___kindof] = ACTIONS(6856), + [anon_sym___unused] = ACTIONS(6856), + [anon_sym__Complex] = ACTIONS(6856), + [anon_sym___complex] = ACTIONS(6856), + [anon_sym_IBOutlet] = ACTIONS(6856), + [anon_sym_IBInspectable] = ACTIONS(6856), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6856), + [anon_sym_COLON] = ACTIONS(6858), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7953), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7955), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7955), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7957), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7957), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7957), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7957), - [anon_sym_NS_AVAILABLE] = ACTIONS(7959), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7959), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_API_AVAILABLE] = ACTIONS(7959), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7959), - [anon_sym_API_DEPRECATED] = ACTIONS(7959), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7959), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7959), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7959), - [anon_sym___deprecated_msg] = ACTIONS(7959), - [anon_sym___deprecated_enum_msg] = ACTIONS(7959), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7959), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7959), + [sym_method_attribute_specifier] = ACTIONS(6856), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6856), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6856), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6856), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6856), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6856), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6856), + [anon_sym_NS_AVAILABLE] = ACTIONS(6856), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6856), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6856), + [anon_sym_API_AVAILABLE] = ACTIONS(6856), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6856), + [anon_sym_API_DEPRECATED] = ACTIONS(6856), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6856), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6856), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6856), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6856), + [anon_sym___deprecated_msg] = ACTIONS(6856), + [anon_sym___deprecated_enum_msg] = ACTIONS(6856), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6856), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6856), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6856), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6856), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -533943,83 +526017,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3416] = { - [sym_attribute_specifier] = STATE(3380), - [sym_ms_declspec_modifier] = STATE(3380), - [sym_storage_class_specifier] = STATE(3380), - [sym_type_qualifier] = STATE(3380), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3598), - [sym_availability_attribute_specifier] = STATE(3598), - [aux_sym__declaration_specifiers_repeat1] = STATE(3380), - [sym_identifier] = ACTIONS(7961), - [anon_sym_LPAREN2] = ACTIONS(7963), - [anon_sym_STAR] = ACTIONS(7963), - [anon_sym_extern] = ACTIONS(7945), - [anon_sym___attribute] = ACTIONS(8073), - [anon_sym___attribute__] = ACTIONS(8073), - [anon_sym___declspec] = ACTIONS(7949), - [anon_sym___based] = ACTIONS(7961), - [anon_sym_LBRACK] = ACTIONS(7963), - [anon_sym_static] = ACTIONS(7945), - [anon_sym_auto] = ACTIONS(7945), - [anon_sym_register] = ACTIONS(7945), - [anon_sym_inline] = ACTIONS(7945), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7945), - [anon_sym_const] = ACTIONS(7951), - [anon_sym_volatile] = ACTIONS(7951), - [anon_sym_restrict] = ACTIONS(7951), - [anon_sym__Atomic] = ACTIONS(7951), - [anon_sym_in] = ACTIONS(8170), - [anon_sym_out] = ACTIONS(7951), - [anon_sym_inout] = ACTIONS(7951), - [anon_sym_bycopy] = ACTIONS(7951), - [anon_sym_byref] = ACTIONS(7951), - [anon_sym_oneway] = ACTIONS(7951), - [anon_sym__Nullable] = ACTIONS(7951), - [anon_sym__Nonnull] = ACTIONS(7951), - [anon_sym__Nullable_result] = ACTIONS(7951), - [anon_sym__Null_unspecified] = ACTIONS(7951), - [anon_sym___autoreleasing] = ACTIONS(7951), - [anon_sym___nullable] = ACTIONS(7951), - [anon_sym___nonnull] = ACTIONS(7951), - [anon_sym___strong] = ACTIONS(7951), - [anon_sym___weak] = ACTIONS(7951), - [anon_sym___bridge] = ACTIONS(7951), - [anon_sym___bridge_transfer] = ACTIONS(7951), - [anon_sym___bridge_retained] = ACTIONS(7951), - [anon_sym___unsafe_unretained] = ACTIONS(7951), - [anon_sym___block] = ACTIONS(7951), - [anon_sym___kindof] = ACTIONS(7951), - [anon_sym___unused] = ACTIONS(7951), - [anon_sym__Complex] = ACTIONS(7951), - [anon_sym___complex] = ACTIONS(7951), - [anon_sym_IBOutlet] = ACTIONS(7951), - [anon_sym_IBInspectable] = ACTIONS(7951), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7951), + [3362] = { + [sym_protocol_qualifiers] = STATE(3341), + [sym_generic_type_references] = STATE(3341), + [aux_sym_generic_type_specifier_repeat1] = STATE(3341), + [sym_identifier] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(8003), + [anon_sym_RPAREN] = ACTIONS(8140), + [anon_sym_LPAREN2] = ACTIONS(8143), + [anon_sym_STAR] = ACTIONS(8003), + [anon_sym_LT] = ACTIONS(8001), + [anon_sym_extern] = ACTIONS(6813), + [anon_sym___attribute] = ACTIONS(6813), + [anon_sym___attribute__] = ACTIONS(6813), + [anon_sym___declspec] = ACTIONS(6813), + [anon_sym___based] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(8140), + [anon_sym_static] = ACTIONS(6813), + [anon_sym_auto] = ACTIONS(6813), + [anon_sym_register] = ACTIONS(6813), + [anon_sym_inline] = ACTIONS(6813), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6813), + [anon_sym_const] = ACTIONS(6813), + [anon_sym_volatile] = ACTIONS(6813), + [anon_sym_restrict] = ACTIONS(6813), + [anon_sym__Atomic] = ACTIONS(6813), + [anon_sym_in] = ACTIONS(6813), + [anon_sym_out] = ACTIONS(6813), + [anon_sym_inout] = ACTIONS(6813), + [anon_sym_bycopy] = ACTIONS(6813), + [anon_sym_byref] = ACTIONS(6813), + [anon_sym_oneway] = ACTIONS(6813), + [anon_sym__Nullable] = ACTIONS(6813), + [anon_sym__Nonnull] = ACTIONS(6813), + [anon_sym__Nullable_result] = ACTIONS(6813), + [anon_sym__Null_unspecified] = ACTIONS(6813), + [anon_sym___autoreleasing] = ACTIONS(6813), + [anon_sym___nullable] = ACTIONS(6813), + [anon_sym___nonnull] = ACTIONS(6813), + [anon_sym___strong] = ACTIONS(6813), + [anon_sym___weak] = ACTIONS(6813), + [anon_sym___bridge] = ACTIONS(6813), + [anon_sym___bridge_transfer] = ACTIONS(6813), + [anon_sym___bridge_retained] = ACTIONS(6813), + [anon_sym___unsafe_unretained] = ACTIONS(6813), + [anon_sym___block] = ACTIONS(6813), + [anon_sym___kindof] = ACTIONS(6813), + [anon_sym___unused] = ACTIONS(6813), + [anon_sym__Complex] = ACTIONS(6813), + [anon_sym___complex] = ACTIONS(6813), + [anon_sym_IBOutlet] = ACTIONS(6813), + [anon_sym_IBInspectable] = ACTIONS(6813), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6813), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8076), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8079), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8079), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8082), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8082), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8082), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8082), - [anon_sym_NS_AVAILABLE] = ACTIONS(8085), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8085), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8085), - [anon_sym_API_AVAILABLE] = ACTIONS(8085), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8085), - [anon_sym_API_DEPRECATED] = ACTIONS(8085), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8085), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8085), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8085), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8085), - [anon_sym___deprecated_msg] = ACTIONS(8085), - [anon_sym___deprecated_enum_msg] = ACTIONS(8085), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8085), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8085), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8085), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8085), + [sym_method_attribute_specifier] = ACTIONS(6813), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6813), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE] = ACTIONS(6813), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_API_AVAILABLE] = ACTIONS(6813), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_API_DEPRECATED] = ACTIONS(6813), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6813), + [anon_sym___deprecated_msg] = ACTIONS(6813), + [anon_sym___deprecated_enum_msg] = ACTIONS(6813), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6813), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -534027,83 +526100,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3417] = { - [sym_attribute_specifier] = STATE(3385), - [sym_ms_declspec_modifier] = STATE(3385), - [sym_storage_class_specifier] = STATE(3385), - [sym_type_qualifier] = STATE(3385), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3598), - [sym_availability_attribute_specifier] = STATE(3598), - [aux_sym__declaration_specifiers_repeat1] = STATE(3385), - [sym_identifier] = ACTIONS(7941), - [anon_sym_LPAREN2] = ACTIONS(7943), - [anon_sym_STAR] = ACTIONS(7943), - [anon_sym_SEMI] = ACTIONS(8173), - [anon_sym_extern] = ACTIONS(7945), - [anon_sym___attribute] = ACTIONS(7947), - [anon_sym___attribute__] = ACTIONS(7947), - [anon_sym___declspec] = ACTIONS(7949), - [anon_sym___based] = ACTIONS(7941), - [anon_sym_static] = ACTIONS(7945), - [anon_sym_auto] = ACTIONS(7945), - [anon_sym_register] = ACTIONS(7945), - [anon_sym_inline] = ACTIONS(7945), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7945), - [anon_sym_const] = ACTIONS(7951), - [anon_sym_volatile] = ACTIONS(7951), - [anon_sym_restrict] = ACTIONS(7951), - [anon_sym__Atomic] = ACTIONS(7951), - [anon_sym_in] = ACTIONS(7951), - [anon_sym_out] = ACTIONS(7951), - [anon_sym_inout] = ACTIONS(7951), - [anon_sym_bycopy] = ACTIONS(7951), - [anon_sym_byref] = ACTIONS(7951), - [anon_sym_oneway] = ACTIONS(7951), - [anon_sym__Nullable] = ACTIONS(7951), - [anon_sym__Nonnull] = ACTIONS(7951), - [anon_sym__Nullable_result] = ACTIONS(7951), - [anon_sym__Null_unspecified] = ACTIONS(7951), - [anon_sym___autoreleasing] = ACTIONS(7951), - [anon_sym___nullable] = ACTIONS(7951), - [anon_sym___nonnull] = ACTIONS(7951), - [anon_sym___strong] = ACTIONS(7951), - [anon_sym___weak] = ACTIONS(7951), - [anon_sym___bridge] = ACTIONS(7951), - [anon_sym___bridge_transfer] = ACTIONS(7951), - [anon_sym___bridge_retained] = ACTIONS(7951), - [anon_sym___unsafe_unretained] = ACTIONS(7951), - [anon_sym___block] = ACTIONS(7951), - [anon_sym___kindof] = ACTIONS(7951), - [anon_sym___unused] = ACTIONS(7951), - [anon_sym__Complex] = ACTIONS(7951), - [anon_sym___complex] = ACTIONS(7951), - [anon_sym_IBOutlet] = ACTIONS(7951), - [anon_sym_IBInspectable] = ACTIONS(7951), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7951), + [3363] = { + [sym_enumerator_list] = STATE(3451), + [sym_identifier] = ACTIONS(8147), + [anon_sym_COMMA] = ACTIONS(8149), + [anon_sym_RPAREN] = ACTIONS(8149), + [anon_sym_LPAREN2] = ACTIONS(8149), + [anon_sym_STAR] = ACTIONS(8149), + [anon_sym_SEMI] = ACTIONS(8149), + [anon_sym_extern] = ACTIONS(8147), + [anon_sym___attribute] = ACTIONS(8147), + [anon_sym___attribute__] = ACTIONS(8147), + [anon_sym___declspec] = ACTIONS(8147), + [anon_sym___based] = ACTIONS(8147), + [anon_sym_LBRACE] = ACTIONS(8138), + [anon_sym_LBRACK] = ACTIONS(8149), + [anon_sym_static] = ACTIONS(8147), + [anon_sym_auto] = ACTIONS(8147), + [anon_sym_register] = ACTIONS(8147), + [anon_sym_inline] = ACTIONS(8147), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8147), + [anon_sym_const] = ACTIONS(8147), + [anon_sym_volatile] = ACTIONS(8147), + [anon_sym_restrict] = ACTIONS(8147), + [anon_sym__Atomic] = ACTIONS(8147), + [anon_sym_in] = ACTIONS(8147), + [anon_sym_out] = ACTIONS(8147), + [anon_sym_inout] = ACTIONS(8147), + [anon_sym_bycopy] = ACTIONS(8147), + [anon_sym_byref] = ACTIONS(8147), + [anon_sym_oneway] = ACTIONS(8147), + [anon_sym__Nullable] = ACTIONS(8147), + [anon_sym__Nonnull] = ACTIONS(8147), + [anon_sym__Nullable_result] = ACTIONS(8147), + [anon_sym__Null_unspecified] = ACTIONS(8147), + [anon_sym___autoreleasing] = ACTIONS(8147), + [anon_sym___nullable] = ACTIONS(8147), + [anon_sym___nonnull] = ACTIONS(8147), + [anon_sym___strong] = ACTIONS(8147), + [anon_sym___weak] = ACTIONS(8147), + [anon_sym___bridge] = ACTIONS(8147), + [anon_sym___bridge_transfer] = ACTIONS(8147), + [anon_sym___bridge_retained] = ACTIONS(8147), + [anon_sym___unsafe_unretained] = ACTIONS(8147), + [anon_sym___block] = ACTIONS(8147), + [anon_sym___kindof] = ACTIONS(8147), + [anon_sym___unused] = ACTIONS(8147), + [anon_sym__Complex] = ACTIONS(8147), + [anon_sym___complex] = ACTIONS(8147), + [anon_sym_IBOutlet] = ACTIONS(8147), + [anon_sym_IBInspectable] = ACTIONS(8147), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8147), + [anon_sym_COLON] = ACTIONS(8151), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7953), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7955), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7955), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7957), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7957), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7957), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7957), - [anon_sym_NS_AVAILABLE] = ACTIONS(7959), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7959), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_API_AVAILABLE] = ACTIONS(7959), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7959), - [anon_sym_API_DEPRECATED] = ACTIONS(7959), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7959), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7959), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7959), - [anon_sym___deprecated_msg] = ACTIONS(7959), - [anon_sym___deprecated_enum_msg] = ACTIONS(7959), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7959), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7959), + [sym_method_attribute_specifier] = ACTIONS(8147), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8147), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8147), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8147), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8147), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8147), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8147), + [anon_sym_NS_AVAILABLE] = ACTIONS(8147), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8147), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_API_AVAILABLE] = ACTIONS(8147), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8147), + [anon_sym_API_DEPRECATED] = ACTIONS(8147), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8147), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8147), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8147), + [anon_sym___deprecated_msg] = ACTIONS(8147), + [anon_sym___deprecated_enum_msg] = ACTIONS(8147), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8147), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8147), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -534111,83 +526183,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3418] = { - [sym_attribute_specifier] = STATE(3385), - [sym_ms_declspec_modifier] = STATE(3385), - [sym_storage_class_specifier] = STATE(3385), - [sym_type_qualifier] = STATE(3385), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3598), - [sym_availability_attribute_specifier] = STATE(3598), - [aux_sym__declaration_specifiers_repeat1] = STATE(3385), - [sym_identifier] = ACTIONS(7941), - [anon_sym_LPAREN2] = ACTIONS(7943), - [anon_sym_STAR] = ACTIONS(7943), - [anon_sym_SEMI] = ACTIONS(8175), - [anon_sym_extern] = ACTIONS(7945), - [anon_sym___attribute] = ACTIONS(7947), - [anon_sym___attribute__] = ACTIONS(7947), - [anon_sym___declspec] = ACTIONS(7949), - [anon_sym___based] = ACTIONS(7941), - [anon_sym_static] = ACTIONS(7945), - [anon_sym_auto] = ACTIONS(7945), - [anon_sym_register] = ACTIONS(7945), - [anon_sym_inline] = ACTIONS(7945), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7945), - [anon_sym_const] = ACTIONS(7951), - [anon_sym_volatile] = ACTIONS(7951), - [anon_sym_restrict] = ACTIONS(7951), - [anon_sym__Atomic] = ACTIONS(7951), - [anon_sym_in] = ACTIONS(7951), - [anon_sym_out] = ACTIONS(7951), - [anon_sym_inout] = ACTIONS(7951), - [anon_sym_bycopy] = ACTIONS(7951), - [anon_sym_byref] = ACTIONS(7951), - [anon_sym_oneway] = ACTIONS(7951), - [anon_sym__Nullable] = ACTIONS(7951), - [anon_sym__Nonnull] = ACTIONS(7951), - [anon_sym__Nullable_result] = ACTIONS(7951), - [anon_sym__Null_unspecified] = ACTIONS(7951), - [anon_sym___autoreleasing] = ACTIONS(7951), - [anon_sym___nullable] = ACTIONS(7951), - [anon_sym___nonnull] = ACTIONS(7951), - [anon_sym___strong] = ACTIONS(7951), - [anon_sym___weak] = ACTIONS(7951), - [anon_sym___bridge] = ACTIONS(7951), - [anon_sym___bridge_transfer] = ACTIONS(7951), - [anon_sym___bridge_retained] = ACTIONS(7951), - [anon_sym___unsafe_unretained] = ACTIONS(7951), - [anon_sym___block] = ACTIONS(7951), - [anon_sym___kindof] = ACTIONS(7951), - [anon_sym___unused] = ACTIONS(7951), - [anon_sym__Complex] = ACTIONS(7951), - [anon_sym___complex] = ACTIONS(7951), - [anon_sym_IBOutlet] = ACTIONS(7951), - [anon_sym_IBInspectable] = ACTIONS(7951), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7951), + [3364] = { + [sym_enumerator_list] = STATE(3396), + [sym_identifier] = ACTIONS(8134), + [anon_sym_COMMA] = ACTIONS(8136), + [anon_sym_RPAREN] = ACTIONS(8136), + [anon_sym_LPAREN2] = ACTIONS(8136), + [anon_sym_STAR] = ACTIONS(8136), + [anon_sym_SEMI] = ACTIONS(8136), + [anon_sym_extern] = ACTIONS(8134), + [anon_sym___attribute] = ACTIONS(8134), + [anon_sym___attribute__] = ACTIONS(8134), + [anon_sym___declspec] = ACTIONS(8134), + [anon_sym___based] = ACTIONS(8134), + [anon_sym_LBRACE] = ACTIONS(8153), + [anon_sym_LBRACK] = ACTIONS(8136), + [anon_sym_static] = ACTIONS(8134), + [anon_sym_auto] = ACTIONS(8134), + [anon_sym_register] = ACTIONS(8134), + [anon_sym_inline] = ACTIONS(8134), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8134), + [anon_sym_const] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym_in] = ACTIONS(8134), + [anon_sym_out] = ACTIONS(8134), + [anon_sym_inout] = ACTIONS(8134), + [anon_sym_bycopy] = ACTIONS(8134), + [anon_sym_byref] = ACTIONS(8134), + [anon_sym_oneway] = ACTIONS(8134), + [anon_sym__Nullable] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym__Nullable_result] = ACTIONS(8134), + [anon_sym__Null_unspecified] = ACTIONS(8134), + [anon_sym___autoreleasing] = ACTIONS(8134), + [anon_sym___nullable] = ACTIONS(8134), + [anon_sym___nonnull] = ACTIONS(8134), + [anon_sym___strong] = ACTIONS(8134), + [anon_sym___weak] = ACTIONS(8134), + [anon_sym___bridge] = ACTIONS(8134), + [anon_sym___bridge_transfer] = ACTIONS(8134), + [anon_sym___bridge_retained] = ACTIONS(8134), + [anon_sym___unsafe_unretained] = ACTIONS(8134), + [anon_sym___block] = ACTIONS(8134), + [anon_sym___kindof] = ACTIONS(8134), + [anon_sym___unused] = ACTIONS(8134), + [anon_sym__Complex] = ACTIONS(8134), + [anon_sym___complex] = ACTIONS(8134), + [anon_sym_IBOutlet] = ACTIONS(8134), + [anon_sym_IBInspectable] = ACTIONS(8134), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8134), + [anon_sym_COLON] = ACTIONS(8136), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7953), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7955), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7955), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7957), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7957), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7957), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7957), - [anon_sym_NS_AVAILABLE] = ACTIONS(7959), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7959), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_API_AVAILABLE] = ACTIONS(7959), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7959), - [anon_sym_API_DEPRECATED] = ACTIONS(7959), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7959), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7959), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7959), - [anon_sym___deprecated_msg] = ACTIONS(7959), - [anon_sym___deprecated_enum_msg] = ACTIONS(7959), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7959), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7959), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7959), + [sym_method_attribute_specifier] = ACTIONS(8134), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8134), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8134), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8134), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8134), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8134), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8134), + [anon_sym_NS_AVAILABLE] = ACTIONS(8134), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8134), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8134), + [anon_sym_API_AVAILABLE] = ACTIONS(8134), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8134), + [anon_sym_API_DEPRECATED] = ACTIONS(8134), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8134), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8134), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8134), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8134), + [anon_sym___deprecated_msg] = ACTIONS(8134), + [anon_sym___deprecated_enum_msg] = ACTIONS(8134), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8134), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8134), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8134), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8134), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -534195,82 +526266,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3419] = { - [sym_enumerator_list] = STATE(3536), - [sym_identifier] = ACTIONS(8177), - [anon_sym_COMMA] = ACTIONS(8179), - [anon_sym_RPAREN] = ACTIONS(8179), - [anon_sym_LPAREN2] = ACTIONS(8179), - [anon_sym_STAR] = ACTIONS(8179), - [anon_sym_SEMI] = ACTIONS(8179), - [anon_sym_extern] = ACTIONS(8177), - [anon_sym___attribute] = ACTIONS(8177), - [anon_sym___attribute__] = ACTIONS(8177), - [anon_sym___declspec] = ACTIONS(8177), - [anon_sym___based] = ACTIONS(8177), - [anon_sym_LBRACE] = ACTIONS(8181), - [anon_sym_LBRACK] = ACTIONS(8179), - [anon_sym_static] = ACTIONS(8177), - [anon_sym_auto] = ACTIONS(8177), - [anon_sym_register] = ACTIONS(8177), - [anon_sym_inline] = ACTIONS(8177), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8177), - [anon_sym_const] = ACTIONS(8177), - [anon_sym_volatile] = ACTIONS(8177), - [anon_sym_restrict] = ACTIONS(8177), - [anon_sym__Atomic] = ACTIONS(8177), - [anon_sym_in] = ACTIONS(8177), - [anon_sym_out] = ACTIONS(8177), - [anon_sym_inout] = ACTIONS(8177), - [anon_sym_bycopy] = ACTIONS(8177), - [anon_sym_byref] = ACTIONS(8177), - [anon_sym_oneway] = ACTIONS(8177), - [anon_sym__Nullable] = ACTIONS(8177), - [anon_sym__Nonnull] = ACTIONS(8177), - [anon_sym__Nullable_result] = ACTIONS(8177), - [anon_sym__Null_unspecified] = ACTIONS(8177), - [anon_sym___autoreleasing] = ACTIONS(8177), - [anon_sym___nullable] = ACTIONS(8177), - [anon_sym___nonnull] = ACTIONS(8177), - [anon_sym___strong] = ACTIONS(8177), - [anon_sym___weak] = ACTIONS(8177), - [anon_sym___bridge] = ACTIONS(8177), - [anon_sym___bridge_transfer] = ACTIONS(8177), - [anon_sym___bridge_retained] = ACTIONS(8177), - [anon_sym___unsafe_unretained] = ACTIONS(8177), - [anon_sym___block] = ACTIONS(8177), - [anon_sym___kindof] = ACTIONS(8177), - [anon_sym___unused] = ACTIONS(8177), - [anon_sym__Complex] = ACTIONS(8177), - [anon_sym___complex] = ACTIONS(8177), - [anon_sym_IBOutlet] = ACTIONS(8177), - [anon_sym_IBInspectable] = ACTIONS(8177), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8177), - [anon_sym_COLON] = ACTIONS(8179), + [3365] = { + [sym_identifier] = ACTIONS(7272), + [anon_sym_COMMA] = ACTIONS(7274), + [anon_sym_RPAREN] = ACTIONS(7274), + [anon_sym_LPAREN2] = ACTIONS(7274), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_LT] = ACTIONS(7274), + [anon_sym_SEMI] = ACTIONS(7274), + [anon_sym_extern] = ACTIONS(7272), + [anon_sym___attribute] = ACTIONS(7272), + [anon_sym___attribute__] = ACTIONS(7272), + [anon_sym___declspec] = ACTIONS(7272), + [anon_sym___based] = ACTIONS(7272), + [anon_sym_LBRACE] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(7274), + [anon_sym_static] = ACTIONS(7272), + [anon_sym_auto] = ACTIONS(7272), + [anon_sym_register] = ACTIONS(7272), + [anon_sym_inline] = ACTIONS(7272), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7272), + [anon_sym_const] = ACTIONS(7272), + [anon_sym_volatile] = ACTIONS(7272), + [anon_sym_restrict] = ACTIONS(7272), + [anon_sym__Atomic] = ACTIONS(7272), + [anon_sym_in] = ACTIONS(7272), + [anon_sym_out] = ACTIONS(7272), + [anon_sym_inout] = ACTIONS(7272), + [anon_sym_bycopy] = ACTIONS(7272), + [anon_sym_byref] = ACTIONS(7272), + [anon_sym_oneway] = ACTIONS(7272), + [anon_sym__Nullable] = ACTIONS(7272), + [anon_sym__Nonnull] = ACTIONS(7272), + [anon_sym__Nullable_result] = ACTIONS(7272), + [anon_sym__Null_unspecified] = ACTIONS(7272), + [anon_sym___autoreleasing] = ACTIONS(7272), + [anon_sym___nullable] = ACTIONS(7272), + [anon_sym___nonnull] = ACTIONS(7272), + [anon_sym___strong] = ACTIONS(7272), + [anon_sym___weak] = ACTIONS(7272), + [anon_sym___bridge] = ACTIONS(7272), + [anon_sym___bridge_transfer] = ACTIONS(7272), + [anon_sym___bridge_retained] = ACTIONS(7272), + [anon_sym___unsafe_unretained] = ACTIONS(7272), + [anon_sym___block] = ACTIONS(7272), + [anon_sym___kindof] = ACTIONS(7272), + [anon_sym___unused] = ACTIONS(7272), + [anon_sym__Complex] = ACTIONS(7272), + [anon_sym___complex] = ACTIONS(7272), + [anon_sym_IBOutlet] = ACTIONS(7272), + [anon_sym_IBInspectable] = ACTIONS(7272), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7272), + [anon_sym_COLON] = ACTIONS(7274), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8177), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8177), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8177), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8177), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8177), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8177), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8177), - [anon_sym_NS_AVAILABLE] = ACTIONS(8177), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8177), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8177), - [anon_sym_API_AVAILABLE] = ACTIONS(8177), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8177), - [anon_sym_API_DEPRECATED] = ACTIONS(8177), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8177), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8177), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8177), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8177), - [anon_sym___deprecated_msg] = ACTIONS(8177), - [anon_sym___deprecated_enum_msg] = ACTIONS(8177), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8177), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8177), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8177), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8177), + [sym_method_attribute_specifier] = ACTIONS(7272), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7272), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7272), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7272), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7272), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7272), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7272), + [anon_sym_NS_AVAILABLE] = ACTIONS(7272), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7272), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7272), + [anon_sym_API_AVAILABLE] = ACTIONS(7272), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7272), + [anon_sym_API_DEPRECATED] = ACTIONS(7272), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7272), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7272), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7272), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7272), + [anon_sym___deprecated_msg] = ACTIONS(7272), + [anon_sym___deprecated_enum_msg] = ACTIONS(7272), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7272), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7272), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7272), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7272), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -534278,82 +526349,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3420] = { - [sym_protocol_qualifiers] = STATE(3700), - [sym_generic_type_references] = STATE(3700), - [aux_sym_generic_type_specifier_repeat1] = STATE(3700), - [anon_sym_COMMA] = ACTIONS(6822), - [anon_sym_RPAREN] = ACTIONS(6871), - [anon_sym_LPAREN2] = ACTIONS(8183), - [anon_sym_DASH] = ACTIONS(6820), - [anon_sym_PLUS] = ACTIONS(6820), - [anon_sym_STAR] = ACTIONS(6847), - [anon_sym_SLASH] = ACTIONS(6820), - [anon_sym_PERCENT] = ACTIONS(6820), - [anon_sym_PIPE_PIPE] = ACTIONS(6822), - [anon_sym_AMP_AMP] = ACTIONS(6822), - [anon_sym_PIPE] = ACTIONS(6820), - [anon_sym_CARET] = ACTIONS(6820), - [anon_sym_AMP] = ACTIONS(6820), - [anon_sym_EQ_EQ] = ACTIONS(6822), - [anon_sym_BANG_EQ] = ACTIONS(6822), - [anon_sym_GT] = ACTIONS(6820), - [anon_sym_GT_EQ] = ACTIONS(6822), - [anon_sym_LT_EQ] = ACTIONS(6822), - [anon_sym_LT] = ACTIONS(8187), - [anon_sym_LT_LT] = ACTIONS(6820), - [anon_sym_GT_GT] = ACTIONS(6820), - [anon_sym_SEMI] = ACTIONS(6822), - [anon_sym_LBRACK] = ACTIONS(6871), - [anon_sym_EQ] = ACTIONS(6853), - [anon_sym_const] = ACTIONS(8053), - [anon_sym_volatile] = ACTIONS(8053), - [anon_sym_restrict] = ACTIONS(8053), - [anon_sym__Atomic] = ACTIONS(8053), - [anon_sym_in] = ACTIONS(6841), - [anon_sym_out] = ACTIONS(8053), - [anon_sym_inout] = ACTIONS(8053), - [anon_sym_bycopy] = ACTIONS(8053), - [anon_sym_byref] = ACTIONS(8053), - [anon_sym_oneway] = ACTIONS(8053), - [anon_sym__Nullable] = ACTIONS(6841), - [anon_sym__Nonnull] = ACTIONS(8053), - [anon_sym__Nullable_result] = ACTIONS(8053), - [anon_sym__Null_unspecified] = ACTIONS(8053), - [anon_sym___autoreleasing] = ACTIONS(8053), - [anon_sym___nullable] = ACTIONS(8053), - [anon_sym___nonnull] = ACTIONS(8053), - [anon_sym___strong] = ACTIONS(8053), - [anon_sym___weak] = ACTIONS(8053), - [anon_sym___bridge] = ACTIONS(6841), - [anon_sym___bridge_transfer] = ACTIONS(8053), - [anon_sym___bridge_retained] = ACTIONS(8053), - [anon_sym___unsafe_unretained] = ACTIONS(8053), - [anon_sym___block] = ACTIONS(8053), - [anon_sym___kindof] = ACTIONS(8053), - [anon_sym___unused] = ACTIONS(8053), - [anon_sym__Complex] = ACTIONS(8053), - [anon_sym___complex] = ACTIONS(8053), - [anon_sym_IBOutlet] = ACTIONS(8053), - [anon_sym_IBInspectable] = ACTIONS(8053), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8053), - [anon_sym_COLON] = ACTIONS(6855), - [anon_sym_QMARK] = ACTIONS(6822), - [anon_sym_STAR_EQ] = ACTIONS(6857), - [anon_sym_SLASH_EQ] = ACTIONS(6857), - [anon_sym_PERCENT_EQ] = ACTIONS(6857), - [anon_sym_PLUS_EQ] = ACTIONS(6857), - [anon_sym_DASH_EQ] = ACTIONS(6857), - [anon_sym_LT_LT_EQ] = ACTIONS(6857), - [anon_sym_GT_GT_EQ] = ACTIONS(6857), - [anon_sym_AMP_EQ] = ACTIONS(6857), - [anon_sym_CARET_EQ] = ACTIONS(6857), - [anon_sym_PIPE_EQ] = ACTIONS(6857), - [anon_sym_DASH_DASH] = ACTIONS(6822), - [anon_sym_PLUS_PLUS] = ACTIONS(6822), - [anon_sym_DOT] = ACTIONS(6822), - [anon_sym_DASH_GT] = ACTIONS(6822), + [3366] = { + [sym_identifier] = ACTIONS(6840), + [anon_sym_COMMA] = ACTIONS(6842), + [anon_sym_RPAREN] = ACTIONS(6842), + [anon_sym_LPAREN2] = ACTIONS(6842), + [anon_sym_STAR] = ACTIONS(6842), + [anon_sym_LT] = ACTIONS(6842), + [anon_sym_SEMI] = ACTIONS(6842), + [anon_sym_extern] = ACTIONS(6840), + [anon_sym___attribute] = ACTIONS(6840), + [anon_sym___attribute__] = ACTIONS(6840), + [anon_sym___declspec] = ACTIONS(6840), + [anon_sym___based] = ACTIONS(6840), + [anon_sym_LBRACE] = ACTIONS(6842), + [anon_sym_LBRACK] = ACTIONS(6842), + [anon_sym_static] = ACTIONS(6840), + [anon_sym_auto] = ACTIONS(6840), + [anon_sym_register] = ACTIONS(6840), + [anon_sym_inline] = ACTIONS(6840), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6840), + [anon_sym_const] = ACTIONS(6840), + [anon_sym_volatile] = ACTIONS(6840), + [anon_sym_restrict] = ACTIONS(6840), + [anon_sym__Atomic] = ACTIONS(6840), + [anon_sym_in] = ACTIONS(6840), + [anon_sym_out] = ACTIONS(6840), + [anon_sym_inout] = ACTIONS(6840), + [anon_sym_bycopy] = ACTIONS(6840), + [anon_sym_byref] = ACTIONS(6840), + [anon_sym_oneway] = ACTIONS(6840), + [anon_sym__Nullable] = ACTIONS(6840), + [anon_sym__Nonnull] = ACTIONS(6840), + [anon_sym__Nullable_result] = ACTIONS(6840), + [anon_sym__Null_unspecified] = ACTIONS(6840), + [anon_sym___autoreleasing] = ACTIONS(6840), + [anon_sym___nullable] = ACTIONS(6840), + [anon_sym___nonnull] = ACTIONS(6840), + [anon_sym___strong] = ACTIONS(6840), + [anon_sym___weak] = ACTIONS(6840), + [anon_sym___bridge] = ACTIONS(6840), + [anon_sym___bridge_transfer] = ACTIONS(6840), + [anon_sym___bridge_retained] = ACTIONS(6840), + [anon_sym___unsafe_unretained] = ACTIONS(6840), + [anon_sym___block] = ACTIONS(6840), + [anon_sym___kindof] = ACTIONS(6840), + [anon_sym___unused] = ACTIONS(6840), + [anon_sym__Complex] = ACTIONS(6840), + [anon_sym___complex] = ACTIONS(6840), + [anon_sym_IBOutlet] = ACTIONS(6840), + [anon_sym_IBInspectable] = ACTIONS(6840), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6840), + [anon_sym_COLON] = ACTIONS(6842), [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6840), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6840), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6840), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6840), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6840), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6840), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6840), + [anon_sym_NS_AVAILABLE] = ACTIONS(6840), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6840), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6840), + [anon_sym_API_AVAILABLE] = ACTIONS(6840), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6840), + [anon_sym_API_DEPRECATED] = ACTIONS(6840), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6840), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6840), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6840), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6840), + [anon_sym___deprecated_msg] = ACTIONS(6840), + [anon_sym___deprecated_enum_msg] = ACTIONS(6840), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6840), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6840), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6840), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6840), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -534361,21 +526432,602 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3421] = { - [sym_enumerator_list] = STATE(3510), - [sym_identifier] = ACTIONS(8190), - [anon_sym_COMMA] = ACTIONS(8193), - [anon_sym_RPAREN] = ACTIONS(8193), - [anon_sym_LPAREN2] = ACTIONS(8193), - [anon_sym_STAR] = ACTIONS(8193), - [anon_sym_SEMI] = ACTIONS(8193), + [3367] = { + [sym_enumerator_list] = STATE(3397), + [sym_identifier] = ACTIONS(8156), + [anon_sym_COMMA] = ACTIONS(8158), + [anon_sym_RPAREN] = ACTIONS(8158), + [anon_sym_LPAREN2] = ACTIONS(8158), + [anon_sym_STAR] = ACTIONS(8158), + [anon_sym_SEMI] = ACTIONS(8158), + [anon_sym_extern] = ACTIONS(8156), + [anon_sym___attribute] = ACTIONS(8156), + [anon_sym___attribute__] = ACTIONS(8156), + [anon_sym___declspec] = ACTIONS(8156), + [anon_sym___based] = ACTIONS(8156), + [anon_sym_LBRACE] = ACTIONS(8138), + [anon_sym_LBRACK] = ACTIONS(8158), + [anon_sym_static] = ACTIONS(8156), + [anon_sym_auto] = ACTIONS(8156), + [anon_sym_register] = ACTIONS(8156), + [anon_sym_inline] = ACTIONS(8156), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8156), + [anon_sym_const] = ACTIONS(8156), + [anon_sym_volatile] = ACTIONS(8156), + [anon_sym_restrict] = ACTIONS(8156), + [anon_sym__Atomic] = ACTIONS(8156), + [anon_sym_in] = ACTIONS(8156), + [anon_sym_out] = ACTIONS(8156), + [anon_sym_inout] = ACTIONS(8156), + [anon_sym_bycopy] = ACTIONS(8156), + [anon_sym_byref] = ACTIONS(8156), + [anon_sym_oneway] = ACTIONS(8156), + [anon_sym__Nullable] = ACTIONS(8156), + [anon_sym__Nonnull] = ACTIONS(8156), + [anon_sym__Nullable_result] = ACTIONS(8156), + [anon_sym__Null_unspecified] = ACTIONS(8156), + [anon_sym___autoreleasing] = ACTIONS(8156), + [anon_sym___nullable] = ACTIONS(8156), + [anon_sym___nonnull] = ACTIONS(8156), + [anon_sym___strong] = ACTIONS(8156), + [anon_sym___weak] = ACTIONS(8156), + [anon_sym___bridge] = ACTIONS(8156), + [anon_sym___bridge_transfer] = ACTIONS(8156), + [anon_sym___bridge_retained] = ACTIONS(8156), + [anon_sym___unsafe_unretained] = ACTIONS(8156), + [anon_sym___block] = ACTIONS(8156), + [anon_sym___kindof] = ACTIONS(8156), + [anon_sym___unused] = ACTIONS(8156), + [anon_sym__Complex] = ACTIONS(8156), + [anon_sym___complex] = ACTIONS(8156), + [anon_sym_IBOutlet] = ACTIONS(8156), + [anon_sym_IBInspectable] = ACTIONS(8156), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8156), + [anon_sym_COLON] = ACTIONS(8158), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8156), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8156), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8156), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8156), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8156), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8156), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8156), + [anon_sym_NS_AVAILABLE] = ACTIONS(8156), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8156), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8156), + [anon_sym_API_AVAILABLE] = ACTIONS(8156), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8156), + [anon_sym_API_DEPRECATED] = ACTIONS(8156), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8156), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8156), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8156), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8156), + [anon_sym___deprecated_msg] = ACTIONS(8156), + [anon_sym___deprecated_enum_msg] = ACTIONS(8156), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8156), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8156), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8156), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8156), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3368] = { + [sym_field_declaration_list] = STATE(3464), + [sym_identifier] = ACTIONS(8160), + [anon_sym_COMMA] = ACTIONS(8162), + [anon_sym_RPAREN] = ACTIONS(8162), + [anon_sym_LPAREN2] = ACTIONS(8162), + [anon_sym_STAR] = ACTIONS(8162), + [anon_sym_SEMI] = ACTIONS(8162), + [anon_sym_extern] = ACTIONS(8160), + [anon_sym___attribute] = ACTIONS(8160), + [anon_sym___attribute__] = ACTIONS(8160), + [anon_sym___declspec] = ACTIONS(8160), + [anon_sym___based] = ACTIONS(8160), + [anon_sym_LBRACE] = ACTIONS(8027), + [anon_sym_LBRACK] = ACTIONS(8162), + [anon_sym_static] = ACTIONS(8160), + [anon_sym_auto] = ACTIONS(8160), + [anon_sym_register] = ACTIONS(8160), + [anon_sym_inline] = ACTIONS(8160), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8160), + [anon_sym_const] = ACTIONS(8160), + [anon_sym_volatile] = ACTIONS(8160), + [anon_sym_restrict] = ACTIONS(8160), + [anon_sym__Atomic] = ACTIONS(8160), + [anon_sym_in] = ACTIONS(8160), + [anon_sym_out] = ACTIONS(8160), + [anon_sym_inout] = ACTIONS(8160), + [anon_sym_bycopy] = ACTIONS(8160), + [anon_sym_byref] = ACTIONS(8160), + [anon_sym_oneway] = ACTIONS(8160), + [anon_sym__Nullable] = ACTIONS(8160), + [anon_sym__Nonnull] = ACTIONS(8160), + [anon_sym__Nullable_result] = ACTIONS(8160), + [anon_sym__Null_unspecified] = ACTIONS(8160), + [anon_sym___autoreleasing] = ACTIONS(8160), + [anon_sym___nullable] = ACTIONS(8160), + [anon_sym___nonnull] = ACTIONS(8160), + [anon_sym___strong] = ACTIONS(8160), + [anon_sym___weak] = ACTIONS(8160), + [anon_sym___bridge] = ACTIONS(8160), + [anon_sym___bridge_transfer] = ACTIONS(8160), + [anon_sym___bridge_retained] = ACTIONS(8160), + [anon_sym___unsafe_unretained] = ACTIONS(8160), + [anon_sym___block] = ACTIONS(8160), + [anon_sym___kindof] = ACTIONS(8160), + [anon_sym___unused] = ACTIONS(8160), + [anon_sym__Complex] = ACTIONS(8160), + [anon_sym___complex] = ACTIONS(8160), + [anon_sym_IBOutlet] = ACTIONS(8160), + [anon_sym_IBInspectable] = ACTIONS(8160), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8160), + [anon_sym_COLON] = ACTIONS(8162), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8160), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8160), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8160), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8160), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8160), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8160), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8160), + [anon_sym_NS_AVAILABLE] = ACTIONS(8160), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8160), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8160), + [anon_sym_API_AVAILABLE] = ACTIONS(8160), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8160), + [anon_sym_API_DEPRECATED] = ACTIONS(8160), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8160), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8160), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8160), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8160), + [anon_sym___deprecated_msg] = ACTIONS(8160), + [anon_sym___deprecated_enum_msg] = ACTIONS(8160), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8160), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8160), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8160), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8160), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3369] = { + [sym_enumerator_list] = STATE(3451), + [sym_identifier] = ACTIONS(8147), + [anon_sym_COMMA] = ACTIONS(8149), + [anon_sym_RPAREN] = ACTIONS(8149), + [anon_sym_LPAREN2] = ACTIONS(8149), + [anon_sym_STAR] = ACTIONS(8149), + [anon_sym_SEMI] = ACTIONS(8149), + [anon_sym_extern] = ACTIONS(8147), + [anon_sym___attribute] = ACTIONS(8147), + [anon_sym___attribute__] = ACTIONS(8147), + [anon_sym___declspec] = ACTIONS(8147), + [anon_sym___based] = ACTIONS(8147), + [anon_sym_LBRACE] = ACTIONS(8164), + [anon_sym_LBRACK] = ACTIONS(8149), + [anon_sym_static] = ACTIONS(8147), + [anon_sym_auto] = ACTIONS(8147), + [anon_sym_register] = ACTIONS(8147), + [anon_sym_inline] = ACTIONS(8147), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8147), + [anon_sym_const] = ACTIONS(8147), + [anon_sym_volatile] = ACTIONS(8147), + [anon_sym_restrict] = ACTIONS(8147), + [anon_sym__Atomic] = ACTIONS(8147), + [anon_sym_in] = ACTIONS(8147), + [anon_sym_out] = ACTIONS(8147), + [anon_sym_inout] = ACTIONS(8147), + [anon_sym_bycopy] = ACTIONS(8147), + [anon_sym_byref] = ACTIONS(8147), + [anon_sym_oneway] = ACTIONS(8147), + [anon_sym__Nullable] = ACTIONS(8147), + [anon_sym__Nonnull] = ACTIONS(8147), + [anon_sym__Nullable_result] = ACTIONS(8147), + [anon_sym__Null_unspecified] = ACTIONS(8147), + [anon_sym___autoreleasing] = ACTIONS(8147), + [anon_sym___nullable] = ACTIONS(8147), + [anon_sym___nonnull] = ACTIONS(8147), + [anon_sym___strong] = ACTIONS(8147), + [anon_sym___weak] = ACTIONS(8147), + [anon_sym___bridge] = ACTIONS(8147), + [anon_sym___bridge_transfer] = ACTIONS(8147), + [anon_sym___bridge_retained] = ACTIONS(8147), + [anon_sym___unsafe_unretained] = ACTIONS(8147), + [anon_sym___block] = ACTIONS(8147), + [anon_sym___kindof] = ACTIONS(8147), + [anon_sym___unused] = ACTIONS(8147), + [anon_sym__Complex] = ACTIONS(8147), + [anon_sym___complex] = ACTIONS(8147), + [anon_sym_IBOutlet] = ACTIONS(8147), + [anon_sym_IBInspectable] = ACTIONS(8147), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8147), + [anon_sym_COLON] = ACTIONS(8167), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8147), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8147), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8147), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8147), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8147), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8147), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8147), + [anon_sym_NS_AVAILABLE] = ACTIONS(8147), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8147), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_API_AVAILABLE] = ACTIONS(8147), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8147), + [anon_sym_API_DEPRECATED] = ACTIONS(8147), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8147), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8147), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8147), + [anon_sym___deprecated_msg] = ACTIONS(8147), + [anon_sym___deprecated_enum_msg] = ACTIONS(8147), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8147), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8147), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3370] = { + [sym_field_declaration_list] = STATE(3430), + [sym_identifier] = ACTIONS(8169), + [anon_sym_COMMA] = ACTIONS(8171), + [anon_sym_RPAREN] = ACTIONS(8171), + [anon_sym_LPAREN2] = ACTIONS(8171), + [anon_sym_STAR] = ACTIONS(8171), + [anon_sym_SEMI] = ACTIONS(8171), + [anon_sym_extern] = ACTIONS(8169), + [anon_sym___attribute] = ACTIONS(8169), + [anon_sym___attribute__] = ACTIONS(8169), + [anon_sym___declspec] = ACTIONS(8169), + [anon_sym___based] = ACTIONS(8169), + [anon_sym_LBRACE] = ACTIONS(8173), + [anon_sym_LBRACK] = ACTIONS(8171), + [anon_sym_static] = ACTIONS(8169), + [anon_sym_auto] = ACTIONS(8169), + [anon_sym_register] = ACTIONS(8169), + [anon_sym_inline] = ACTIONS(8169), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8169), + [anon_sym_const] = ACTIONS(8169), + [anon_sym_volatile] = ACTIONS(8169), + [anon_sym_restrict] = ACTIONS(8169), + [anon_sym__Atomic] = ACTIONS(8169), + [anon_sym_in] = ACTIONS(8169), + [anon_sym_out] = ACTIONS(8169), + [anon_sym_inout] = ACTIONS(8169), + [anon_sym_bycopy] = ACTIONS(8169), + [anon_sym_byref] = ACTIONS(8169), + [anon_sym_oneway] = ACTIONS(8169), + [anon_sym__Nullable] = ACTIONS(8169), + [anon_sym__Nonnull] = ACTIONS(8169), + [anon_sym__Nullable_result] = ACTIONS(8169), + [anon_sym__Null_unspecified] = ACTIONS(8169), + [anon_sym___autoreleasing] = ACTIONS(8169), + [anon_sym___nullable] = ACTIONS(8169), + [anon_sym___nonnull] = ACTIONS(8169), + [anon_sym___strong] = ACTIONS(8169), + [anon_sym___weak] = ACTIONS(8169), + [anon_sym___bridge] = ACTIONS(8169), + [anon_sym___bridge_transfer] = ACTIONS(8169), + [anon_sym___bridge_retained] = ACTIONS(8169), + [anon_sym___unsafe_unretained] = ACTIONS(8169), + [anon_sym___block] = ACTIONS(8169), + [anon_sym___kindof] = ACTIONS(8169), + [anon_sym___unused] = ACTIONS(8169), + [anon_sym__Complex] = ACTIONS(8169), + [anon_sym___complex] = ACTIONS(8169), + [anon_sym_IBOutlet] = ACTIONS(8169), + [anon_sym_IBInspectable] = ACTIONS(8169), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8169), + [anon_sym_COLON] = ACTIONS(8171), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8169), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8169), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8169), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8169), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8169), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8169), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8169), + [anon_sym_NS_AVAILABLE] = ACTIONS(8169), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8169), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8169), + [anon_sym_API_AVAILABLE] = ACTIONS(8169), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8169), + [anon_sym_API_DEPRECATED] = ACTIONS(8169), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8169), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8169), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8169), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8169), + [anon_sym___deprecated_msg] = ACTIONS(8169), + [anon_sym___deprecated_enum_msg] = ACTIONS(8169), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8169), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8169), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8169), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8169), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3371] = { + [sym_enumerator_list] = STATE(3397), + [sym_identifier] = ACTIONS(8156), + [anon_sym_COMMA] = ACTIONS(8158), + [anon_sym_RPAREN] = ACTIONS(8158), + [anon_sym_LPAREN2] = ACTIONS(8158), + [anon_sym_STAR] = ACTIONS(8158), + [anon_sym_SEMI] = ACTIONS(8158), + [anon_sym_extern] = ACTIONS(8156), + [anon_sym___attribute] = ACTIONS(8156), + [anon_sym___attribute__] = ACTIONS(8156), + [anon_sym___declspec] = ACTIONS(8156), + [anon_sym___based] = ACTIONS(8156), + [anon_sym_LBRACE] = ACTIONS(8176), + [anon_sym_LBRACK] = ACTIONS(8158), + [anon_sym_static] = ACTIONS(8156), + [anon_sym_auto] = ACTIONS(8156), + [anon_sym_register] = ACTIONS(8156), + [anon_sym_inline] = ACTIONS(8156), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8156), + [anon_sym_const] = ACTIONS(8156), + [anon_sym_volatile] = ACTIONS(8156), + [anon_sym_restrict] = ACTIONS(8156), + [anon_sym__Atomic] = ACTIONS(8156), + [anon_sym_in] = ACTIONS(8156), + [anon_sym_out] = ACTIONS(8156), + [anon_sym_inout] = ACTIONS(8156), + [anon_sym_bycopy] = ACTIONS(8156), + [anon_sym_byref] = ACTIONS(8156), + [anon_sym_oneway] = ACTIONS(8156), + [anon_sym__Nullable] = ACTIONS(8156), + [anon_sym__Nonnull] = ACTIONS(8156), + [anon_sym__Nullable_result] = ACTIONS(8156), + [anon_sym__Null_unspecified] = ACTIONS(8156), + [anon_sym___autoreleasing] = ACTIONS(8156), + [anon_sym___nullable] = ACTIONS(8156), + [anon_sym___nonnull] = ACTIONS(8156), + [anon_sym___strong] = ACTIONS(8156), + [anon_sym___weak] = ACTIONS(8156), + [anon_sym___bridge] = ACTIONS(8156), + [anon_sym___bridge_transfer] = ACTIONS(8156), + [anon_sym___bridge_retained] = ACTIONS(8156), + [anon_sym___unsafe_unretained] = ACTIONS(8156), + [anon_sym___block] = ACTIONS(8156), + [anon_sym___kindof] = ACTIONS(8156), + [anon_sym___unused] = ACTIONS(8156), + [anon_sym__Complex] = ACTIONS(8156), + [anon_sym___complex] = ACTIONS(8156), + [anon_sym_IBOutlet] = ACTIONS(8156), + [anon_sym_IBInspectable] = ACTIONS(8156), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8156), + [anon_sym_COLON] = ACTIONS(8158), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8156), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8156), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8156), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8156), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8156), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8156), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8156), + [anon_sym_NS_AVAILABLE] = ACTIONS(8156), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8156), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8156), + [anon_sym_API_AVAILABLE] = ACTIONS(8156), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8156), + [anon_sym_API_DEPRECATED] = ACTIONS(8156), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8156), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8156), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8156), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8156), + [anon_sym___deprecated_msg] = ACTIONS(8156), + [anon_sym___deprecated_enum_msg] = ACTIONS(8156), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8156), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8156), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8156), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8156), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3372] = { + [sym_enumerator_list] = STATE(3455), + [sym_identifier] = ACTIONS(8179), + [anon_sym_COMMA] = ACTIONS(8182), + [anon_sym_RPAREN] = ACTIONS(8182), + [anon_sym_LPAREN2] = ACTIONS(8182), + [anon_sym_STAR] = ACTIONS(8182), + [anon_sym_SEMI] = ACTIONS(8182), + [anon_sym_extern] = ACTIONS(8184), + [anon_sym___attribute] = ACTIONS(8184), + [anon_sym___attribute__] = ACTIONS(8184), + [anon_sym___declspec] = ACTIONS(8184), + [anon_sym___based] = ACTIONS(8184), + [anon_sym_LBRACE] = ACTIONS(8138), + [anon_sym_LBRACK] = ACTIONS(8182), + [anon_sym_static] = ACTIONS(8184), + [anon_sym_auto] = ACTIONS(8184), + [anon_sym_register] = ACTIONS(8184), + [anon_sym_inline] = ACTIONS(8184), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8184), + [anon_sym_const] = ACTIONS(8184), + [anon_sym_volatile] = ACTIONS(8184), + [anon_sym_restrict] = ACTIONS(8184), + [anon_sym__Atomic] = ACTIONS(8184), + [anon_sym_in] = ACTIONS(8184), + [anon_sym_out] = ACTIONS(8184), + [anon_sym_inout] = ACTIONS(8184), + [anon_sym_bycopy] = ACTIONS(8184), + [anon_sym_byref] = ACTIONS(8184), + [anon_sym_oneway] = ACTIONS(8184), + [anon_sym__Nullable] = ACTIONS(8184), + [anon_sym__Nonnull] = ACTIONS(8184), + [anon_sym__Nullable_result] = ACTIONS(8184), + [anon_sym__Null_unspecified] = ACTIONS(8184), + [anon_sym___autoreleasing] = ACTIONS(8184), + [anon_sym___nullable] = ACTIONS(8184), + [anon_sym___nonnull] = ACTIONS(8184), + [anon_sym___strong] = ACTIONS(8184), + [anon_sym___weak] = ACTIONS(8184), + [anon_sym___bridge] = ACTIONS(8184), + [anon_sym___bridge_transfer] = ACTIONS(8184), + [anon_sym___bridge_retained] = ACTIONS(8184), + [anon_sym___unsafe_unretained] = ACTIONS(8184), + [anon_sym___block] = ACTIONS(8184), + [anon_sym___kindof] = ACTIONS(8184), + [anon_sym___unused] = ACTIONS(8184), + [anon_sym__Complex] = ACTIONS(8184), + [anon_sym___complex] = ACTIONS(8184), + [anon_sym_IBOutlet] = ACTIONS(8184), + [anon_sym_IBInspectable] = ACTIONS(8184), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8184), + [anon_sym_COLON] = ACTIONS(8186), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8184), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8184), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8184), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8184), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8184), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8184), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8184), + [anon_sym_NS_AVAILABLE] = ACTIONS(8184), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8184), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_API_AVAILABLE] = ACTIONS(8184), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8184), + [anon_sym_API_DEPRECATED] = ACTIONS(8184), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8184), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8184), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8184), + [anon_sym___deprecated_msg] = ACTIONS(8184), + [anon_sym___deprecated_enum_msg] = ACTIONS(8184), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8184), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8184), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3373] = { + [sym_field_declaration_list] = STATE(3458), + [sym_identifier] = ACTIONS(8188), + [anon_sym_COMMA] = ACTIONS(8190), + [anon_sym_RPAREN] = ACTIONS(8190), + [anon_sym_LPAREN2] = ACTIONS(8190), + [anon_sym_STAR] = ACTIONS(8190), + [anon_sym_SEMI] = ACTIONS(8190), + [anon_sym_extern] = ACTIONS(8188), + [anon_sym___attribute] = ACTIONS(8188), + [anon_sym___attribute__] = ACTIONS(8188), + [anon_sym___declspec] = ACTIONS(8188), + [anon_sym___based] = ACTIONS(8188), + [anon_sym_LBRACE] = ACTIONS(8192), + [anon_sym_LBRACK] = ACTIONS(8190), + [anon_sym_static] = ACTIONS(8188), + [anon_sym_auto] = ACTIONS(8188), + [anon_sym_register] = ACTIONS(8188), + [anon_sym_inline] = ACTIONS(8188), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8188), + [anon_sym_const] = ACTIONS(8188), + [anon_sym_volatile] = ACTIONS(8188), + [anon_sym_restrict] = ACTIONS(8188), + [anon_sym__Atomic] = ACTIONS(8188), + [anon_sym_in] = ACTIONS(8188), + [anon_sym_out] = ACTIONS(8188), + [anon_sym_inout] = ACTIONS(8188), + [anon_sym_bycopy] = ACTIONS(8188), + [anon_sym_byref] = ACTIONS(8188), + [anon_sym_oneway] = ACTIONS(8188), + [anon_sym__Nullable] = ACTIONS(8188), + [anon_sym__Nonnull] = ACTIONS(8188), + [anon_sym__Nullable_result] = ACTIONS(8188), + [anon_sym__Null_unspecified] = ACTIONS(8188), + [anon_sym___autoreleasing] = ACTIONS(8188), + [anon_sym___nullable] = ACTIONS(8188), + [anon_sym___nonnull] = ACTIONS(8188), + [anon_sym___strong] = ACTIONS(8188), + [anon_sym___weak] = ACTIONS(8188), + [anon_sym___bridge] = ACTIONS(8188), + [anon_sym___bridge_transfer] = ACTIONS(8188), + [anon_sym___bridge_retained] = ACTIONS(8188), + [anon_sym___unsafe_unretained] = ACTIONS(8188), + [anon_sym___block] = ACTIONS(8188), + [anon_sym___kindof] = ACTIONS(8188), + [anon_sym___unused] = ACTIONS(8188), + [anon_sym__Complex] = ACTIONS(8188), + [anon_sym___complex] = ACTIONS(8188), + [anon_sym_IBOutlet] = ACTIONS(8188), + [anon_sym_IBInspectable] = ACTIONS(8188), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8188), + [anon_sym_COLON] = ACTIONS(8190), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8188), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8188), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8188), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8188), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8188), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8188), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8188), + [anon_sym_NS_AVAILABLE] = ACTIONS(8188), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8188), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8188), + [anon_sym_API_AVAILABLE] = ACTIONS(8188), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8188), + [anon_sym_API_DEPRECATED] = ACTIONS(8188), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8188), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8188), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8188), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8188), + [anon_sym___deprecated_msg] = ACTIONS(8188), + [anon_sym___deprecated_enum_msg] = ACTIONS(8188), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8188), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8188), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8188), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8188), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3374] = { + [sym_field_declaration_list] = STATE(3467), + [sym_identifier] = ACTIONS(8195), + [anon_sym_COMMA] = ACTIONS(8197), + [anon_sym_RPAREN] = ACTIONS(8197), + [anon_sym_LPAREN2] = ACTIONS(8197), + [anon_sym_STAR] = ACTIONS(8197), + [anon_sym_SEMI] = ACTIONS(8197), [anon_sym_extern] = ACTIONS(8195), [anon_sym___attribute] = ACTIONS(8195), [anon_sym___attribute__] = ACTIONS(8195), [anon_sym___declspec] = ACTIONS(8195), [anon_sym___based] = ACTIONS(8195), - [anon_sym_LBRACE] = ACTIONS(8197), - [anon_sym_LBRACK] = ACTIONS(8193), + [anon_sym_LBRACE] = ACTIONS(8199), + [anon_sym_LBRACK] = ACTIONS(8197), [anon_sym_static] = ACTIONS(8195), [anon_sym_auto] = ACTIONS(8195), [anon_sym_register] = ACTIONS(8195), @@ -534412,7 +527064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_IBOutlet] = ACTIONS(8195), [anon_sym_IBInspectable] = ACTIONS(8195), [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8195), - [anon_sym_COLON] = ACTIONS(8200), + [anon_sym_COLON] = ACTIONS(8197), [sym_comment] = ACTIONS(3), [sym_method_attribute_specifier] = ACTIONS(8195), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8195), @@ -534444,8 +527096,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3422] = { - [sym_field_declaration_list] = STATE(3449), + [3375] = { + [sym_enumerator_list] = STATE(3497), [sym_identifier] = ACTIONS(8202), [anon_sym_COMMA] = ACTIONS(8204), [anon_sym_RPAREN] = ACTIONS(8204), @@ -534527,755 +527179,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3423] = { - [sym_enumerator_list] = STATE(3534), - [sym_identifier] = ACTIONS(8209), - [anon_sym_COMMA] = ACTIONS(8211), - [anon_sym_RPAREN] = ACTIONS(8211), - [anon_sym_LPAREN2] = ACTIONS(8211), - [anon_sym_STAR] = ACTIONS(8211), - [anon_sym_SEMI] = ACTIONS(8211), - [anon_sym_extern] = ACTIONS(8209), - [anon_sym___attribute] = ACTIONS(8209), - [anon_sym___attribute__] = ACTIONS(8209), - [anon_sym___declspec] = ACTIONS(8209), - [anon_sym___based] = ACTIONS(8209), - [anon_sym_LBRACE] = ACTIONS(8213), - [anon_sym_LBRACK] = ACTIONS(8211), - [anon_sym_static] = ACTIONS(8209), - [anon_sym_auto] = ACTIONS(8209), - [anon_sym_register] = ACTIONS(8209), - [anon_sym_inline] = ACTIONS(8209), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8209), - [anon_sym_const] = ACTIONS(8209), - [anon_sym_volatile] = ACTIONS(8209), - [anon_sym_restrict] = ACTIONS(8209), - [anon_sym__Atomic] = ACTIONS(8209), - [anon_sym_in] = ACTIONS(8209), - [anon_sym_out] = ACTIONS(8209), - [anon_sym_inout] = ACTIONS(8209), - [anon_sym_bycopy] = ACTIONS(8209), - [anon_sym_byref] = ACTIONS(8209), - [anon_sym_oneway] = ACTIONS(8209), - [anon_sym__Nullable] = ACTIONS(8209), - [anon_sym__Nonnull] = ACTIONS(8209), - [anon_sym__Nullable_result] = ACTIONS(8209), - [anon_sym__Null_unspecified] = ACTIONS(8209), - [anon_sym___autoreleasing] = ACTIONS(8209), - [anon_sym___nullable] = ACTIONS(8209), - [anon_sym___nonnull] = ACTIONS(8209), - [anon_sym___strong] = ACTIONS(8209), - [anon_sym___weak] = ACTIONS(8209), - [anon_sym___bridge] = ACTIONS(8209), - [anon_sym___bridge_transfer] = ACTIONS(8209), - [anon_sym___bridge_retained] = ACTIONS(8209), - [anon_sym___unsafe_unretained] = ACTIONS(8209), - [anon_sym___block] = ACTIONS(8209), - [anon_sym___kindof] = ACTIONS(8209), - [anon_sym___unused] = ACTIONS(8209), - [anon_sym__Complex] = ACTIONS(8209), - [anon_sym___complex] = ACTIONS(8209), - [anon_sym_IBOutlet] = ACTIONS(8209), - [anon_sym_IBInspectable] = ACTIONS(8209), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8209), - [anon_sym_COLON] = ACTIONS(8211), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8209), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8209), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8209), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8209), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8209), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8209), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8209), - [anon_sym_NS_AVAILABLE] = ACTIONS(8209), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8209), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8209), - [anon_sym_API_AVAILABLE] = ACTIONS(8209), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8209), - [anon_sym_API_DEPRECATED] = ACTIONS(8209), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8209), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8209), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8209), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8209), - [anon_sym___deprecated_msg] = ACTIONS(8209), - [anon_sym___deprecated_enum_msg] = ACTIONS(8209), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8209), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8209), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8209), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8209), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3424] = { - [sym_enumerator_list] = STATE(3536), - [sym_identifier] = ACTIONS(8177), - [anon_sym_COMMA] = ACTIONS(8179), - [anon_sym_RPAREN] = ACTIONS(8179), - [anon_sym_LPAREN2] = ACTIONS(8179), - [anon_sym_STAR] = ACTIONS(8179), - [anon_sym_SEMI] = ACTIONS(8179), - [anon_sym_extern] = ACTIONS(8177), - [anon_sym___attribute] = ACTIONS(8177), - [anon_sym___attribute__] = ACTIONS(8177), - [anon_sym___declspec] = ACTIONS(8177), - [anon_sym___based] = ACTIONS(8177), - [anon_sym_LBRACE] = ACTIONS(8216), - [anon_sym_LBRACK] = ACTIONS(8179), - [anon_sym_static] = ACTIONS(8177), - [anon_sym_auto] = ACTIONS(8177), - [anon_sym_register] = ACTIONS(8177), - [anon_sym_inline] = ACTIONS(8177), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8177), - [anon_sym_const] = ACTIONS(8177), - [anon_sym_volatile] = ACTIONS(8177), - [anon_sym_restrict] = ACTIONS(8177), - [anon_sym__Atomic] = ACTIONS(8177), - [anon_sym_in] = ACTIONS(8177), - [anon_sym_out] = ACTIONS(8177), - [anon_sym_inout] = ACTIONS(8177), - [anon_sym_bycopy] = ACTIONS(8177), - [anon_sym_byref] = ACTIONS(8177), - [anon_sym_oneway] = ACTIONS(8177), - [anon_sym__Nullable] = ACTIONS(8177), - [anon_sym__Nonnull] = ACTIONS(8177), - [anon_sym__Nullable_result] = ACTIONS(8177), - [anon_sym__Null_unspecified] = ACTIONS(8177), - [anon_sym___autoreleasing] = ACTIONS(8177), - [anon_sym___nullable] = ACTIONS(8177), - [anon_sym___nonnull] = ACTIONS(8177), - [anon_sym___strong] = ACTIONS(8177), - [anon_sym___weak] = ACTIONS(8177), - [anon_sym___bridge] = ACTIONS(8177), - [anon_sym___bridge_transfer] = ACTIONS(8177), - [anon_sym___bridge_retained] = ACTIONS(8177), - [anon_sym___unsafe_unretained] = ACTIONS(8177), - [anon_sym___block] = ACTIONS(8177), - [anon_sym___kindof] = ACTIONS(8177), - [anon_sym___unused] = ACTIONS(8177), - [anon_sym__Complex] = ACTIONS(8177), - [anon_sym___complex] = ACTIONS(8177), - [anon_sym_IBOutlet] = ACTIONS(8177), - [anon_sym_IBInspectable] = ACTIONS(8177), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8177), - [anon_sym_COLON] = ACTIONS(8179), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8177), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8177), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8177), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8177), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8177), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8177), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8177), - [anon_sym_NS_AVAILABLE] = ACTIONS(8177), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8177), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8177), - [anon_sym_API_AVAILABLE] = ACTIONS(8177), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8177), - [anon_sym_API_DEPRECATED] = ACTIONS(8177), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8177), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8177), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8177), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8177), - [anon_sym___deprecated_msg] = ACTIONS(8177), - [anon_sym___deprecated_enum_msg] = ACTIONS(8177), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8177), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8177), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8177), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8177), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3425] = { - [sym_field_declaration_list] = STATE(3540), - [sym_identifier] = ACTIONS(8219), - [anon_sym_COMMA] = ACTIONS(8221), - [anon_sym_RPAREN] = ACTIONS(8221), - [anon_sym_LPAREN2] = ACTIONS(8221), - [anon_sym_STAR] = ACTIONS(8221), - [anon_sym_SEMI] = ACTIONS(8221), - [anon_sym_extern] = ACTIONS(8219), - [anon_sym___attribute] = ACTIONS(8219), - [anon_sym___attribute__] = ACTIONS(8219), - [anon_sym___declspec] = ACTIONS(8219), - [anon_sym___based] = ACTIONS(8219), - [anon_sym_LBRACE] = ACTIONS(8223), - [anon_sym_LBRACK] = ACTIONS(8221), - [anon_sym_static] = ACTIONS(8219), - [anon_sym_auto] = ACTIONS(8219), - [anon_sym_register] = ACTIONS(8219), - [anon_sym_inline] = ACTIONS(8219), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8219), - [anon_sym_const] = ACTIONS(8219), - [anon_sym_volatile] = ACTIONS(8219), - [anon_sym_restrict] = ACTIONS(8219), - [anon_sym__Atomic] = ACTIONS(8219), - [anon_sym_in] = ACTIONS(8219), - [anon_sym_out] = ACTIONS(8219), - [anon_sym_inout] = ACTIONS(8219), - [anon_sym_bycopy] = ACTIONS(8219), - [anon_sym_byref] = ACTIONS(8219), - [anon_sym_oneway] = ACTIONS(8219), - [anon_sym__Nullable] = ACTIONS(8219), - [anon_sym__Nonnull] = ACTIONS(8219), - [anon_sym__Nullable_result] = ACTIONS(8219), - [anon_sym__Null_unspecified] = ACTIONS(8219), - [anon_sym___autoreleasing] = ACTIONS(8219), - [anon_sym___nullable] = ACTIONS(8219), - [anon_sym___nonnull] = ACTIONS(8219), - [anon_sym___strong] = ACTIONS(8219), - [anon_sym___weak] = ACTIONS(8219), - [anon_sym___bridge] = ACTIONS(8219), - [anon_sym___bridge_transfer] = ACTIONS(8219), - [anon_sym___bridge_retained] = ACTIONS(8219), - [anon_sym___unsafe_unretained] = ACTIONS(8219), - [anon_sym___block] = ACTIONS(8219), - [anon_sym___kindof] = ACTIONS(8219), - [anon_sym___unused] = ACTIONS(8219), - [anon_sym__Complex] = ACTIONS(8219), - [anon_sym___complex] = ACTIONS(8219), - [anon_sym_IBOutlet] = ACTIONS(8219), - [anon_sym_IBInspectable] = ACTIONS(8219), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8219), - [anon_sym_COLON] = ACTIONS(8221), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8219), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8219), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8219), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8219), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8219), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8219), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8219), - [anon_sym_NS_AVAILABLE] = ACTIONS(8219), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8219), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8219), - [anon_sym_API_AVAILABLE] = ACTIONS(8219), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8219), - [anon_sym_API_DEPRECATED] = ACTIONS(8219), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8219), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8219), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8219), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8219), - [anon_sym___deprecated_msg] = ACTIONS(8219), - [anon_sym___deprecated_enum_msg] = ACTIONS(8219), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8219), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8219), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8219), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8219), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3426] = { - [sym_enumerator_list] = STATE(3534), - [sym_identifier] = ACTIONS(8209), - [anon_sym_COMMA] = ACTIONS(8211), - [anon_sym_RPAREN] = ACTIONS(8211), - [anon_sym_LPAREN2] = ACTIONS(8211), - [anon_sym_STAR] = ACTIONS(8211), - [anon_sym_SEMI] = ACTIONS(8211), - [anon_sym_extern] = ACTIONS(8209), - [anon_sym___attribute] = ACTIONS(8209), - [anon_sym___attribute__] = ACTIONS(8209), - [anon_sym___declspec] = ACTIONS(8209), - [anon_sym___based] = ACTIONS(8209), - [anon_sym_LBRACE] = ACTIONS(8181), - [anon_sym_LBRACK] = ACTIONS(8211), - [anon_sym_static] = ACTIONS(8209), - [anon_sym_auto] = ACTIONS(8209), - [anon_sym_register] = ACTIONS(8209), - [anon_sym_inline] = ACTIONS(8209), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8209), - [anon_sym_const] = ACTIONS(8209), - [anon_sym_volatile] = ACTIONS(8209), - [anon_sym_restrict] = ACTIONS(8209), - [anon_sym__Atomic] = ACTIONS(8209), - [anon_sym_in] = ACTIONS(8209), - [anon_sym_out] = ACTIONS(8209), - [anon_sym_inout] = ACTIONS(8209), - [anon_sym_bycopy] = ACTIONS(8209), - [anon_sym_byref] = ACTIONS(8209), - [anon_sym_oneway] = ACTIONS(8209), - [anon_sym__Nullable] = ACTIONS(8209), - [anon_sym__Nonnull] = ACTIONS(8209), - [anon_sym__Nullable_result] = ACTIONS(8209), - [anon_sym__Null_unspecified] = ACTIONS(8209), - [anon_sym___autoreleasing] = ACTIONS(8209), - [anon_sym___nullable] = ACTIONS(8209), - [anon_sym___nonnull] = ACTIONS(8209), - [anon_sym___strong] = ACTIONS(8209), - [anon_sym___weak] = ACTIONS(8209), - [anon_sym___bridge] = ACTIONS(8209), - [anon_sym___bridge_transfer] = ACTIONS(8209), - [anon_sym___bridge_retained] = ACTIONS(8209), - [anon_sym___unsafe_unretained] = ACTIONS(8209), - [anon_sym___block] = ACTIONS(8209), - [anon_sym___kindof] = ACTIONS(8209), - [anon_sym___unused] = ACTIONS(8209), - [anon_sym__Complex] = ACTIONS(8209), - [anon_sym___complex] = ACTIONS(8209), - [anon_sym_IBOutlet] = ACTIONS(8209), - [anon_sym_IBInspectable] = ACTIONS(8209), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8209), - [anon_sym_COLON] = ACTIONS(8211), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8209), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8209), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8209), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8209), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8209), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8209), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8209), - [anon_sym_NS_AVAILABLE] = ACTIONS(8209), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8209), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8209), - [anon_sym_API_AVAILABLE] = ACTIONS(8209), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8209), - [anon_sym_API_DEPRECATED] = ACTIONS(8209), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8209), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8209), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8209), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8209), - [anon_sym___deprecated_msg] = ACTIONS(8209), - [anon_sym___deprecated_enum_msg] = ACTIONS(8209), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8209), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8209), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8209), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8209), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3427] = { - [sym_enumerator_list] = STATE(3530), - [sym_identifier] = ACTIONS(8226), - [anon_sym_COMMA] = ACTIONS(8228), - [anon_sym_RPAREN] = ACTIONS(8228), - [anon_sym_LPAREN2] = ACTIONS(8228), - [anon_sym_STAR] = ACTIONS(8228), - [anon_sym_SEMI] = ACTIONS(8228), - [anon_sym_extern] = ACTIONS(8226), - [anon_sym___attribute] = ACTIONS(8226), - [anon_sym___attribute__] = ACTIONS(8226), - [anon_sym___declspec] = ACTIONS(8226), - [anon_sym___based] = ACTIONS(8226), - [anon_sym_LBRACE] = ACTIONS(8230), - [anon_sym_LBRACK] = ACTIONS(8228), - [anon_sym_static] = ACTIONS(8226), - [anon_sym_auto] = ACTIONS(8226), - [anon_sym_register] = ACTIONS(8226), - [anon_sym_inline] = ACTIONS(8226), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8226), - [anon_sym_const] = ACTIONS(8226), - [anon_sym_volatile] = ACTIONS(8226), - [anon_sym_restrict] = ACTIONS(8226), - [anon_sym__Atomic] = ACTIONS(8226), - [anon_sym_in] = ACTIONS(8226), - [anon_sym_out] = ACTIONS(8226), - [anon_sym_inout] = ACTIONS(8226), - [anon_sym_bycopy] = ACTIONS(8226), - [anon_sym_byref] = ACTIONS(8226), - [anon_sym_oneway] = ACTIONS(8226), - [anon_sym__Nullable] = ACTIONS(8226), - [anon_sym__Nonnull] = ACTIONS(8226), - [anon_sym__Nullable_result] = ACTIONS(8226), - [anon_sym__Null_unspecified] = ACTIONS(8226), - [anon_sym___autoreleasing] = ACTIONS(8226), - [anon_sym___nullable] = ACTIONS(8226), - [anon_sym___nonnull] = ACTIONS(8226), - [anon_sym___strong] = ACTIONS(8226), - [anon_sym___weak] = ACTIONS(8226), - [anon_sym___bridge] = ACTIONS(8226), - [anon_sym___bridge_transfer] = ACTIONS(8226), - [anon_sym___bridge_retained] = ACTIONS(8226), - [anon_sym___unsafe_unretained] = ACTIONS(8226), - [anon_sym___block] = ACTIONS(8226), - [anon_sym___kindof] = ACTIONS(8226), - [anon_sym___unused] = ACTIONS(8226), - [anon_sym__Complex] = ACTIONS(8226), - [anon_sym___complex] = ACTIONS(8226), - [anon_sym_IBOutlet] = ACTIONS(8226), - [anon_sym_IBInspectable] = ACTIONS(8226), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8226), - [anon_sym_COLON] = ACTIONS(8228), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8226), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8226), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8226), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8226), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8226), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8226), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8226), - [anon_sym_NS_AVAILABLE] = ACTIONS(8226), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8226), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8226), - [anon_sym_API_AVAILABLE] = ACTIONS(8226), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8226), - [anon_sym_API_DEPRECATED] = ACTIONS(8226), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8226), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8226), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8226), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8226), - [anon_sym___deprecated_msg] = ACTIONS(8226), - [anon_sym___deprecated_enum_msg] = ACTIONS(8226), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8226), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8226), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8226), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8226), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3428] = { - [sym_field_declaration_list] = STATE(3535), - [sym_identifier] = ACTIONS(8233), - [anon_sym_COMMA] = ACTIONS(8235), - [anon_sym_RPAREN] = ACTIONS(8235), - [anon_sym_LPAREN2] = ACTIONS(8235), - [anon_sym_STAR] = ACTIONS(8235), - [anon_sym_SEMI] = ACTIONS(8235), - [anon_sym_extern] = ACTIONS(8233), - [anon_sym___attribute] = ACTIONS(8233), - [anon_sym___attribute__] = ACTIONS(8233), - [anon_sym___declspec] = ACTIONS(8233), - [anon_sym___based] = ACTIONS(8233), - [anon_sym_LBRACE] = ACTIONS(8237), - [anon_sym_LBRACK] = ACTIONS(8235), - [anon_sym_static] = ACTIONS(8233), - [anon_sym_auto] = ACTIONS(8233), - [anon_sym_register] = ACTIONS(8233), - [anon_sym_inline] = ACTIONS(8233), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8233), - [anon_sym_const] = ACTIONS(8233), - [anon_sym_volatile] = ACTIONS(8233), - [anon_sym_restrict] = ACTIONS(8233), - [anon_sym__Atomic] = ACTIONS(8233), - [anon_sym_in] = ACTIONS(8233), - [anon_sym_out] = ACTIONS(8233), - [anon_sym_inout] = ACTIONS(8233), - [anon_sym_bycopy] = ACTIONS(8233), - [anon_sym_byref] = ACTIONS(8233), - [anon_sym_oneway] = ACTIONS(8233), - [anon_sym__Nullable] = ACTIONS(8233), - [anon_sym__Nonnull] = ACTIONS(8233), - [anon_sym__Nullable_result] = ACTIONS(8233), - [anon_sym__Null_unspecified] = ACTIONS(8233), - [anon_sym___autoreleasing] = ACTIONS(8233), - [anon_sym___nullable] = ACTIONS(8233), - [anon_sym___nonnull] = ACTIONS(8233), - [anon_sym___strong] = ACTIONS(8233), - [anon_sym___weak] = ACTIONS(8233), - [anon_sym___bridge] = ACTIONS(8233), - [anon_sym___bridge_transfer] = ACTIONS(8233), - [anon_sym___bridge_retained] = ACTIONS(8233), - [anon_sym___unsafe_unretained] = ACTIONS(8233), - [anon_sym___block] = ACTIONS(8233), - [anon_sym___kindof] = ACTIONS(8233), - [anon_sym___unused] = ACTIONS(8233), - [anon_sym__Complex] = ACTIONS(8233), - [anon_sym___complex] = ACTIONS(8233), - [anon_sym_IBOutlet] = ACTIONS(8233), - [anon_sym_IBInspectable] = ACTIONS(8233), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8233), - [anon_sym_COLON] = ACTIONS(8235), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8233), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8233), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8233), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8233), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8233), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8233), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8233), - [anon_sym_NS_AVAILABLE] = ACTIONS(8233), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8233), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8233), - [anon_sym_API_AVAILABLE] = ACTIONS(8233), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8233), - [anon_sym_API_DEPRECATED] = ACTIONS(8233), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8233), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8233), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8233), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8233), - [anon_sym___deprecated_msg] = ACTIONS(8233), - [anon_sym___deprecated_enum_msg] = ACTIONS(8233), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8233), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8233), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8233), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8233), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3429] = { - [sym_enumerator_list] = STATE(3522), - [sym_identifier] = ACTIONS(8240), - [anon_sym_COMMA] = ACTIONS(8242), - [anon_sym_RPAREN] = ACTIONS(8242), - [anon_sym_LPAREN2] = ACTIONS(8242), - [anon_sym_STAR] = ACTIONS(8242), - [anon_sym_SEMI] = ACTIONS(8242), - [anon_sym_extern] = ACTIONS(8240), - [anon_sym___attribute] = ACTIONS(8240), - [anon_sym___attribute__] = ACTIONS(8240), - [anon_sym___declspec] = ACTIONS(8240), - [anon_sym___based] = ACTIONS(8240), - [anon_sym_LBRACE] = ACTIONS(8181), - [anon_sym_LBRACK] = ACTIONS(8242), - [anon_sym_static] = ACTIONS(8240), - [anon_sym_auto] = ACTIONS(8240), - [anon_sym_register] = ACTIONS(8240), - [anon_sym_inline] = ACTIONS(8240), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8240), - [anon_sym_const] = ACTIONS(8240), - [anon_sym_volatile] = ACTIONS(8240), - [anon_sym_restrict] = ACTIONS(8240), - [anon_sym__Atomic] = ACTIONS(8240), - [anon_sym_in] = ACTIONS(8240), - [anon_sym_out] = ACTIONS(8240), - [anon_sym_inout] = ACTIONS(8240), - [anon_sym_bycopy] = ACTIONS(8240), - [anon_sym_byref] = ACTIONS(8240), - [anon_sym_oneway] = ACTIONS(8240), - [anon_sym__Nullable] = ACTIONS(8240), - [anon_sym__Nonnull] = ACTIONS(8240), - [anon_sym__Nullable_result] = ACTIONS(8240), - [anon_sym__Null_unspecified] = ACTIONS(8240), - [anon_sym___autoreleasing] = ACTIONS(8240), - [anon_sym___nullable] = ACTIONS(8240), - [anon_sym___nonnull] = ACTIONS(8240), - [anon_sym___strong] = ACTIONS(8240), - [anon_sym___weak] = ACTIONS(8240), - [anon_sym___bridge] = ACTIONS(8240), - [anon_sym___bridge_transfer] = ACTIONS(8240), - [anon_sym___bridge_retained] = ACTIONS(8240), - [anon_sym___unsafe_unretained] = ACTIONS(8240), - [anon_sym___block] = ACTIONS(8240), - [anon_sym___kindof] = ACTIONS(8240), - [anon_sym___unused] = ACTIONS(8240), - [anon_sym__Complex] = ACTIONS(8240), - [anon_sym___complex] = ACTIONS(8240), - [anon_sym_IBOutlet] = ACTIONS(8240), - [anon_sym_IBInspectable] = ACTIONS(8240), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8240), - [anon_sym_COLON] = ACTIONS(8244), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8240), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8240), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8240), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8240), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8240), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8240), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8240), - [anon_sym_NS_AVAILABLE] = ACTIONS(8240), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8240), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_API_AVAILABLE] = ACTIONS(8240), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8240), - [anon_sym_API_DEPRECATED] = ACTIONS(8240), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8240), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8240), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8240), - [anon_sym___deprecated_msg] = ACTIONS(8240), - [anon_sym___deprecated_enum_msg] = ACTIONS(8240), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8240), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8240), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3430] = { - [sym_enumerator_list] = STATE(3516), - [sym_identifier] = ACTIONS(8246), - [anon_sym_COMMA] = ACTIONS(8248), - [anon_sym_RPAREN] = ACTIONS(8248), - [anon_sym_LPAREN2] = ACTIONS(8248), - [anon_sym_STAR] = ACTIONS(8248), - [anon_sym_SEMI] = ACTIONS(8248), - [anon_sym_extern] = ACTIONS(8246), - [anon_sym___attribute] = ACTIONS(8246), - [anon_sym___attribute__] = ACTIONS(8246), - [anon_sym___declspec] = ACTIONS(8246), - [anon_sym___based] = ACTIONS(8246), - [anon_sym_LBRACE] = ACTIONS(8250), - [anon_sym_LBRACK] = ACTIONS(8248), - [anon_sym_static] = ACTIONS(8246), - [anon_sym_auto] = ACTIONS(8246), - [anon_sym_register] = ACTIONS(8246), - [anon_sym_inline] = ACTIONS(8246), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8246), - [anon_sym_const] = ACTIONS(8246), - [anon_sym_volatile] = ACTIONS(8246), - [anon_sym_restrict] = ACTIONS(8246), - [anon_sym__Atomic] = ACTIONS(8246), - [anon_sym_in] = ACTIONS(8246), - [anon_sym_out] = ACTIONS(8246), - [anon_sym_inout] = ACTIONS(8246), - [anon_sym_bycopy] = ACTIONS(8246), - [anon_sym_byref] = ACTIONS(8246), - [anon_sym_oneway] = ACTIONS(8246), - [anon_sym__Nullable] = ACTIONS(8246), - [anon_sym__Nonnull] = ACTIONS(8246), - [anon_sym__Nullable_result] = ACTIONS(8246), - [anon_sym__Null_unspecified] = ACTIONS(8246), - [anon_sym___autoreleasing] = ACTIONS(8246), - [anon_sym___nullable] = ACTIONS(8246), - [anon_sym___nonnull] = ACTIONS(8246), - [anon_sym___strong] = ACTIONS(8246), - [anon_sym___weak] = ACTIONS(8246), - [anon_sym___bridge] = ACTIONS(8246), - [anon_sym___bridge_transfer] = ACTIONS(8246), - [anon_sym___bridge_retained] = ACTIONS(8246), - [anon_sym___unsafe_unretained] = ACTIONS(8246), - [anon_sym___block] = ACTIONS(8246), - [anon_sym___kindof] = ACTIONS(8246), - [anon_sym___unused] = ACTIONS(8246), - [anon_sym__Complex] = ACTIONS(8246), - [anon_sym___complex] = ACTIONS(8246), - [anon_sym_IBOutlet] = ACTIONS(8246), - [anon_sym_IBInspectable] = ACTIONS(8246), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8246), - [anon_sym_COLON] = ACTIONS(8248), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8246), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8246), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8246), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8246), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8246), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8246), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8246), - [anon_sym_NS_AVAILABLE] = ACTIONS(8246), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8246), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8246), - [anon_sym_API_AVAILABLE] = ACTIONS(8246), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8246), - [anon_sym_API_DEPRECATED] = ACTIONS(8246), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8246), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8246), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8246), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8246), - [anon_sym___deprecated_msg] = ACTIONS(8246), - [anon_sym___deprecated_enum_msg] = ACTIONS(8246), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8246), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8246), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8246), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8246), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3431] = { - [sym_enumerator_list] = STATE(3516), - [sym_identifier] = ACTIONS(8246), - [anon_sym_COMMA] = ACTIONS(8248), - [anon_sym_RPAREN] = ACTIONS(8248), - [anon_sym_LPAREN2] = ACTIONS(8248), - [anon_sym_STAR] = ACTIONS(8248), - [anon_sym_SEMI] = ACTIONS(8248), - [anon_sym_extern] = ACTIONS(8246), - [anon_sym___attribute] = ACTIONS(8246), - [anon_sym___attribute__] = ACTIONS(8246), - [anon_sym___declspec] = ACTIONS(8246), - [anon_sym___based] = ACTIONS(8246), - [anon_sym_LBRACE] = ACTIONS(8181), - [anon_sym_LBRACK] = ACTIONS(8248), - [anon_sym_static] = ACTIONS(8246), - [anon_sym_auto] = ACTIONS(8246), - [anon_sym_register] = ACTIONS(8246), - [anon_sym_inline] = ACTIONS(8246), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8246), - [anon_sym_const] = ACTIONS(8246), - [anon_sym_volatile] = ACTIONS(8246), - [anon_sym_restrict] = ACTIONS(8246), - [anon_sym__Atomic] = ACTIONS(8246), - [anon_sym_in] = ACTIONS(8246), - [anon_sym_out] = ACTIONS(8246), - [anon_sym_inout] = ACTIONS(8246), - [anon_sym_bycopy] = ACTIONS(8246), - [anon_sym_byref] = ACTIONS(8246), - [anon_sym_oneway] = ACTIONS(8246), - [anon_sym__Nullable] = ACTIONS(8246), - [anon_sym__Nonnull] = ACTIONS(8246), - [anon_sym__Nullable_result] = ACTIONS(8246), - [anon_sym__Null_unspecified] = ACTIONS(8246), - [anon_sym___autoreleasing] = ACTIONS(8246), - [anon_sym___nullable] = ACTIONS(8246), - [anon_sym___nonnull] = ACTIONS(8246), - [anon_sym___strong] = ACTIONS(8246), - [anon_sym___weak] = ACTIONS(8246), - [anon_sym___bridge] = ACTIONS(8246), - [anon_sym___bridge_transfer] = ACTIONS(8246), - [anon_sym___bridge_retained] = ACTIONS(8246), - [anon_sym___unsafe_unretained] = ACTIONS(8246), - [anon_sym___block] = ACTIONS(8246), - [anon_sym___kindof] = ACTIONS(8246), - [anon_sym___unused] = ACTIONS(8246), - [anon_sym__Complex] = ACTIONS(8246), - [anon_sym___complex] = ACTIONS(8246), - [anon_sym_IBOutlet] = ACTIONS(8246), - [anon_sym_IBInspectable] = ACTIONS(8246), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8246), - [anon_sym_COLON] = ACTIONS(8248), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8246), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8246), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8246), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8246), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8246), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8246), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8246), - [anon_sym_NS_AVAILABLE] = ACTIONS(8246), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8246), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8246), - [anon_sym_API_AVAILABLE] = ACTIONS(8246), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8246), - [anon_sym_API_DEPRECATED] = ACTIONS(8246), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8246), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8246), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8246), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8246), - [anon_sym___deprecated_msg] = ACTIONS(8246), - [anon_sym___deprecated_enum_msg] = ACTIONS(8246), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8246), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8246), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8246), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8246), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3432] = { - [sym_field_declaration_list] = STATE(3449), + [3376] = { + [sym_enumerator_list] = STATE(3497), [sym_identifier] = ACTIONS(8202), [anon_sym_COMMA] = ACTIONS(8204), [anon_sym_RPAREN] = ACTIONS(8204), @@ -535287,7 +527192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(8202), [anon_sym___declspec] = ACTIONS(8202), [anon_sym___based] = ACTIONS(8202), - [anon_sym_LBRACE] = ACTIONS(8123), + [anon_sym_LBRACE] = ACTIONS(8138), [anon_sym_LBRACK] = ACTIONS(8204), [anon_sym_static] = ACTIONS(8202), [anon_sym_auto] = ACTIONS(8202), @@ -535357,21 +527262,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3433] = { - [sym_enumerator_list] = STATE(3510), - [sym_identifier] = ACTIONS(8253), - [anon_sym_COMMA] = ACTIONS(8193), - [anon_sym_RPAREN] = ACTIONS(8193), - [anon_sym_LPAREN2] = ACTIONS(8193), - [anon_sym_STAR] = ACTIONS(8193), - [anon_sym_SEMI] = ACTIONS(8193), + [3377] = { + [sym_field_declaration_list] = STATE(3458), + [sym_identifier] = ACTIONS(8188), + [anon_sym_COMMA] = ACTIONS(8190), + [anon_sym_RPAREN] = ACTIONS(8190), + [anon_sym_LPAREN2] = ACTIONS(8190), + [anon_sym_STAR] = ACTIONS(8190), + [anon_sym_SEMI] = ACTIONS(8190), + [anon_sym_extern] = ACTIONS(8188), + [anon_sym___attribute] = ACTIONS(8188), + [anon_sym___attribute__] = ACTIONS(8188), + [anon_sym___declspec] = ACTIONS(8188), + [anon_sym___based] = ACTIONS(8188), + [anon_sym_LBRACE] = ACTIONS(8027), + [anon_sym_LBRACK] = ACTIONS(8190), + [anon_sym_static] = ACTIONS(8188), + [anon_sym_auto] = ACTIONS(8188), + [anon_sym_register] = ACTIONS(8188), + [anon_sym_inline] = ACTIONS(8188), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8188), + [anon_sym_const] = ACTIONS(8188), + [anon_sym_volatile] = ACTIONS(8188), + [anon_sym_restrict] = ACTIONS(8188), + [anon_sym__Atomic] = ACTIONS(8188), + [anon_sym_in] = ACTIONS(8188), + [anon_sym_out] = ACTIONS(8188), + [anon_sym_inout] = ACTIONS(8188), + [anon_sym_bycopy] = ACTIONS(8188), + [anon_sym_byref] = ACTIONS(8188), + [anon_sym_oneway] = ACTIONS(8188), + [anon_sym__Nullable] = ACTIONS(8188), + [anon_sym__Nonnull] = ACTIONS(8188), + [anon_sym__Nullable_result] = ACTIONS(8188), + [anon_sym__Null_unspecified] = ACTIONS(8188), + [anon_sym___autoreleasing] = ACTIONS(8188), + [anon_sym___nullable] = ACTIONS(8188), + [anon_sym___nonnull] = ACTIONS(8188), + [anon_sym___strong] = ACTIONS(8188), + [anon_sym___weak] = ACTIONS(8188), + [anon_sym___bridge] = ACTIONS(8188), + [anon_sym___bridge_transfer] = ACTIONS(8188), + [anon_sym___bridge_retained] = ACTIONS(8188), + [anon_sym___unsafe_unretained] = ACTIONS(8188), + [anon_sym___block] = ACTIONS(8188), + [anon_sym___kindof] = ACTIONS(8188), + [anon_sym___unused] = ACTIONS(8188), + [anon_sym__Complex] = ACTIONS(8188), + [anon_sym___complex] = ACTIONS(8188), + [anon_sym_IBOutlet] = ACTIONS(8188), + [anon_sym_IBInspectable] = ACTIONS(8188), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8188), + [anon_sym_COLON] = ACTIONS(8190), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8188), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8188), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8188), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8188), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8188), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8188), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8188), + [anon_sym_NS_AVAILABLE] = ACTIONS(8188), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8188), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8188), + [anon_sym_API_AVAILABLE] = ACTIONS(8188), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8188), + [anon_sym_API_DEPRECATED] = ACTIONS(8188), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8188), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8188), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8188), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8188), + [anon_sym___deprecated_msg] = ACTIONS(8188), + [anon_sym___deprecated_enum_msg] = ACTIONS(8188), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8188), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8188), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8188), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8188), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3378] = { + [sym_field_declaration_list] = STATE(3467), + [sym_identifier] = ACTIONS(8195), + [anon_sym_COMMA] = ACTIONS(8197), + [anon_sym_RPAREN] = ACTIONS(8197), + [anon_sym_LPAREN2] = ACTIONS(8197), + [anon_sym_STAR] = ACTIONS(8197), + [anon_sym_SEMI] = ACTIONS(8197), [anon_sym_extern] = ACTIONS(8195), [anon_sym___attribute] = ACTIONS(8195), [anon_sym___attribute__] = ACTIONS(8195), [anon_sym___declspec] = ACTIONS(8195), [anon_sym___based] = ACTIONS(8195), - [anon_sym_LBRACE] = ACTIONS(8181), - [anon_sym_LBRACK] = ACTIONS(8193), + [anon_sym_LBRACE] = ACTIONS(8027), + [anon_sym_LBRACK] = ACTIONS(8197), [anon_sym_static] = ACTIONS(8195), [anon_sym_auto] = ACTIONS(8195), [anon_sym_register] = ACTIONS(8195), @@ -535408,7 +527396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_IBOutlet] = ACTIONS(8195), [anon_sym_IBInspectable] = ACTIONS(8195), [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8195), - [anon_sym_COLON] = ACTIONS(8256), + [anon_sym_COLON] = ACTIONS(8197), [sym_comment] = ACTIONS(3), [sym_method_attribute_specifier] = ACTIONS(8195), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8195), @@ -535440,82 +527428,4598 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3434] = { - [sym_field_declaration_list] = STATE(3488), - [sym_identifier] = ACTIONS(8258), - [anon_sym_COMMA] = ACTIONS(8260), - [anon_sym_RPAREN] = ACTIONS(8260), - [anon_sym_LPAREN2] = ACTIONS(8260), - [anon_sym_STAR] = ACTIONS(8260), - [anon_sym_SEMI] = ACTIONS(8260), - [anon_sym_extern] = ACTIONS(8258), - [anon_sym___attribute] = ACTIONS(8258), - [anon_sym___attribute__] = ACTIONS(8258), - [anon_sym___declspec] = ACTIONS(8258), - [anon_sym___based] = ACTIONS(8258), - [anon_sym_LBRACE] = ACTIONS(8262), - [anon_sym_LBRACK] = ACTIONS(8260), - [anon_sym_static] = ACTIONS(8258), - [anon_sym_auto] = ACTIONS(8258), - [anon_sym_register] = ACTIONS(8258), - [anon_sym_inline] = ACTIONS(8258), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8258), - [anon_sym_const] = ACTIONS(8258), - [anon_sym_volatile] = ACTIONS(8258), - [anon_sym_restrict] = ACTIONS(8258), - [anon_sym__Atomic] = ACTIONS(8258), - [anon_sym_in] = ACTIONS(8258), - [anon_sym_out] = ACTIONS(8258), - [anon_sym_inout] = ACTIONS(8258), - [anon_sym_bycopy] = ACTIONS(8258), - [anon_sym_byref] = ACTIONS(8258), - [anon_sym_oneway] = ACTIONS(8258), - [anon_sym__Nullable] = ACTIONS(8258), - [anon_sym__Nonnull] = ACTIONS(8258), - [anon_sym__Nullable_result] = ACTIONS(8258), - [anon_sym__Null_unspecified] = ACTIONS(8258), - [anon_sym___autoreleasing] = ACTIONS(8258), - [anon_sym___nullable] = ACTIONS(8258), - [anon_sym___nonnull] = ACTIONS(8258), - [anon_sym___strong] = ACTIONS(8258), - [anon_sym___weak] = ACTIONS(8258), - [anon_sym___bridge] = ACTIONS(8258), - [anon_sym___bridge_transfer] = ACTIONS(8258), - [anon_sym___bridge_retained] = ACTIONS(8258), - [anon_sym___unsafe_unretained] = ACTIONS(8258), - [anon_sym___block] = ACTIONS(8258), - [anon_sym___kindof] = ACTIONS(8258), - [anon_sym___unused] = ACTIONS(8258), - [anon_sym__Complex] = ACTIONS(8258), - [anon_sym___complex] = ACTIONS(8258), - [anon_sym_IBOutlet] = ACTIONS(8258), - [anon_sym_IBInspectable] = ACTIONS(8258), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8258), - [anon_sym_COLON] = ACTIONS(8260), + [3379] = { + [sym_field_declaration_list] = STATE(3464), + [sym_identifier] = ACTIONS(8160), + [anon_sym_COMMA] = ACTIONS(8162), + [anon_sym_RPAREN] = ACTIONS(8162), + [anon_sym_LPAREN2] = ACTIONS(8162), + [anon_sym_STAR] = ACTIONS(8162), + [anon_sym_SEMI] = ACTIONS(8162), + [anon_sym_extern] = ACTIONS(8160), + [anon_sym___attribute] = ACTIONS(8160), + [anon_sym___attribute__] = ACTIONS(8160), + [anon_sym___declspec] = ACTIONS(8160), + [anon_sym___based] = ACTIONS(8160), + [anon_sym_LBRACE] = ACTIONS(8209), + [anon_sym_LBRACK] = ACTIONS(8162), + [anon_sym_static] = ACTIONS(8160), + [anon_sym_auto] = ACTIONS(8160), + [anon_sym_register] = ACTIONS(8160), + [anon_sym_inline] = ACTIONS(8160), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8160), + [anon_sym_const] = ACTIONS(8160), + [anon_sym_volatile] = ACTIONS(8160), + [anon_sym_restrict] = ACTIONS(8160), + [anon_sym__Atomic] = ACTIONS(8160), + [anon_sym_in] = ACTIONS(8160), + [anon_sym_out] = ACTIONS(8160), + [anon_sym_inout] = ACTIONS(8160), + [anon_sym_bycopy] = ACTIONS(8160), + [anon_sym_byref] = ACTIONS(8160), + [anon_sym_oneway] = ACTIONS(8160), + [anon_sym__Nullable] = ACTIONS(8160), + [anon_sym__Nonnull] = ACTIONS(8160), + [anon_sym__Nullable_result] = ACTIONS(8160), + [anon_sym__Null_unspecified] = ACTIONS(8160), + [anon_sym___autoreleasing] = ACTIONS(8160), + [anon_sym___nullable] = ACTIONS(8160), + [anon_sym___nonnull] = ACTIONS(8160), + [anon_sym___strong] = ACTIONS(8160), + [anon_sym___weak] = ACTIONS(8160), + [anon_sym___bridge] = ACTIONS(8160), + [anon_sym___bridge_transfer] = ACTIONS(8160), + [anon_sym___bridge_retained] = ACTIONS(8160), + [anon_sym___unsafe_unretained] = ACTIONS(8160), + [anon_sym___block] = ACTIONS(8160), + [anon_sym___kindof] = ACTIONS(8160), + [anon_sym___unused] = ACTIONS(8160), + [anon_sym__Complex] = ACTIONS(8160), + [anon_sym___complex] = ACTIONS(8160), + [anon_sym_IBOutlet] = ACTIONS(8160), + [anon_sym_IBInspectable] = ACTIONS(8160), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8160), + [anon_sym_COLON] = ACTIONS(8162), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8258), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8258), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8258), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8258), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8258), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8258), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8258), - [anon_sym_NS_AVAILABLE] = ACTIONS(8258), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8258), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8258), - [anon_sym_API_AVAILABLE] = ACTIONS(8258), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8258), - [anon_sym_API_DEPRECATED] = ACTIONS(8258), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8258), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8258), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8258), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8258), - [anon_sym___deprecated_msg] = ACTIONS(8258), - [anon_sym___deprecated_enum_msg] = ACTIONS(8258), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8258), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8258), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8258), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8258), + [sym_method_attribute_specifier] = ACTIONS(8160), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8160), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8160), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8160), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8160), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8160), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8160), + [anon_sym_NS_AVAILABLE] = ACTIONS(8160), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8160), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8160), + [anon_sym_API_AVAILABLE] = ACTIONS(8160), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8160), + [anon_sym_API_DEPRECATED] = ACTIONS(8160), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8160), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8160), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8160), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8160), + [anon_sym___deprecated_msg] = ACTIONS(8160), + [anon_sym___deprecated_enum_msg] = ACTIONS(8160), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8160), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8160), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8160), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8160), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3380] = { + [sym_field_declaration_list] = STATE(3430), + [sym_identifier] = ACTIONS(8169), + [anon_sym_COMMA] = ACTIONS(8171), + [anon_sym_RPAREN] = ACTIONS(8171), + [anon_sym_LPAREN2] = ACTIONS(8171), + [anon_sym_STAR] = ACTIONS(8171), + [anon_sym_SEMI] = ACTIONS(8171), + [anon_sym_extern] = ACTIONS(8169), + [anon_sym___attribute] = ACTIONS(8169), + [anon_sym___attribute__] = ACTIONS(8169), + [anon_sym___declspec] = ACTIONS(8169), + [anon_sym___based] = ACTIONS(8169), + [anon_sym_LBRACE] = ACTIONS(8027), + [anon_sym_LBRACK] = ACTIONS(8171), + [anon_sym_static] = ACTIONS(8169), + [anon_sym_auto] = ACTIONS(8169), + [anon_sym_register] = ACTIONS(8169), + [anon_sym_inline] = ACTIONS(8169), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8169), + [anon_sym_const] = ACTIONS(8169), + [anon_sym_volatile] = ACTIONS(8169), + [anon_sym_restrict] = ACTIONS(8169), + [anon_sym__Atomic] = ACTIONS(8169), + [anon_sym_in] = ACTIONS(8169), + [anon_sym_out] = ACTIONS(8169), + [anon_sym_inout] = ACTIONS(8169), + [anon_sym_bycopy] = ACTIONS(8169), + [anon_sym_byref] = ACTIONS(8169), + [anon_sym_oneway] = ACTIONS(8169), + [anon_sym__Nullable] = ACTIONS(8169), + [anon_sym__Nonnull] = ACTIONS(8169), + [anon_sym__Nullable_result] = ACTIONS(8169), + [anon_sym__Null_unspecified] = ACTIONS(8169), + [anon_sym___autoreleasing] = ACTIONS(8169), + [anon_sym___nullable] = ACTIONS(8169), + [anon_sym___nonnull] = ACTIONS(8169), + [anon_sym___strong] = ACTIONS(8169), + [anon_sym___weak] = ACTIONS(8169), + [anon_sym___bridge] = ACTIONS(8169), + [anon_sym___bridge_transfer] = ACTIONS(8169), + [anon_sym___bridge_retained] = ACTIONS(8169), + [anon_sym___unsafe_unretained] = ACTIONS(8169), + [anon_sym___block] = ACTIONS(8169), + [anon_sym___kindof] = ACTIONS(8169), + [anon_sym___unused] = ACTIONS(8169), + [anon_sym__Complex] = ACTIONS(8169), + [anon_sym___complex] = ACTIONS(8169), + [anon_sym_IBOutlet] = ACTIONS(8169), + [anon_sym_IBInspectable] = ACTIONS(8169), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8169), + [anon_sym_COLON] = ACTIONS(8171), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8169), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8169), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8169), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8169), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8169), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8169), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8169), + [anon_sym_NS_AVAILABLE] = ACTIONS(8169), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8169), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8169), + [anon_sym_API_AVAILABLE] = ACTIONS(8169), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8169), + [anon_sym_API_DEPRECATED] = ACTIONS(8169), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8169), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8169), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8169), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8169), + [anon_sym___deprecated_msg] = ACTIONS(8169), + [anon_sym___deprecated_enum_msg] = ACTIONS(8169), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8169), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8169), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8169), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8169), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3381] = { + [sym_enumerator_list] = STATE(3455), + [sym_identifier] = ACTIONS(8212), + [anon_sym_COMMA] = ACTIONS(8182), + [anon_sym_RPAREN] = ACTIONS(8182), + [anon_sym_LPAREN2] = ACTIONS(8182), + [anon_sym_STAR] = ACTIONS(8182), + [anon_sym_SEMI] = ACTIONS(8182), + [anon_sym_extern] = ACTIONS(8184), + [anon_sym___attribute] = ACTIONS(8184), + [anon_sym___attribute__] = ACTIONS(8184), + [anon_sym___declspec] = ACTIONS(8184), + [anon_sym___based] = ACTIONS(8184), + [anon_sym_LBRACE] = ACTIONS(8215), + [anon_sym_LBRACK] = ACTIONS(8182), + [anon_sym_static] = ACTIONS(8184), + [anon_sym_auto] = ACTIONS(8184), + [anon_sym_register] = ACTIONS(8184), + [anon_sym_inline] = ACTIONS(8184), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8184), + [anon_sym_const] = ACTIONS(8184), + [anon_sym_volatile] = ACTIONS(8184), + [anon_sym_restrict] = ACTIONS(8184), + [anon_sym__Atomic] = ACTIONS(8184), + [anon_sym_in] = ACTIONS(8184), + [anon_sym_out] = ACTIONS(8184), + [anon_sym_inout] = ACTIONS(8184), + [anon_sym_bycopy] = ACTIONS(8184), + [anon_sym_byref] = ACTIONS(8184), + [anon_sym_oneway] = ACTIONS(8184), + [anon_sym__Nullable] = ACTIONS(8184), + [anon_sym__Nonnull] = ACTIONS(8184), + [anon_sym__Nullable_result] = ACTIONS(8184), + [anon_sym__Null_unspecified] = ACTIONS(8184), + [anon_sym___autoreleasing] = ACTIONS(8184), + [anon_sym___nullable] = ACTIONS(8184), + [anon_sym___nonnull] = ACTIONS(8184), + [anon_sym___strong] = ACTIONS(8184), + [anon_sym___weak] = ACTIONS(8184), + [anon_sym___bridge] = ACTIONS(8184), + [anon_sym___bridge_transfer] = ACTIONS(8184), + [anon_sym___bridge_retained] = ACTIONS(8184), + [anon_sym___unsafe_unretained] = ACTIONS(8184), + [anon_sym___block] = ACTIONS(8184), + [anon_sym___kindof] = ACTIONS(8184), + [anon_sym___unused] = ACTIONS(8184), + [anon_sym__Complex] = ACTIONS(8184), + [anon_sym___complex] = ACTIONS(8184), + [anon_sym_IBOutlet] = ACTIONS(8184), + [anon_sym_IBInspectable] = ACTIONS(8184), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8184), + [anon_sym_COLON] = ACTIONS(8218), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8184), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8184), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8184), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8184), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8184), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8184), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8184), + [anon_sym_NS_AVAILABLE] = ACTIONS(8184), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8184), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_API_AVAILABLE] = ACTIONS(8184), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8184), + [anon_sym_API_DEPRECATED] = ACTIONS(8184), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8184), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8184), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8184), + [anon_sym___deprecated_msg] = ACTIONS(8184), + [anon_sym___deprecated_enum_msg] = ACTIONS(8184), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8184), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8184), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3382] = { + [sym_enumerator_list] = STATE(3493), + [sym_identifier] = ACTIONS(8220), + [anon_sym_COMMA] = ACTIONS(8222), + [anon_sym_RPAREN] = ACTIONS(8222), + [anon_sym_LPAREN2] = ACTIONS(8222), + [anon_sym_STAR] = ACTIONS(8222), + [anon_sym_SEMI] = ACTIONS(8222), + [anon_sym_extern] = ACTIONS(8220), + [anon_sym___attribute] = ACTIONS(8220), + [anon_sym___attribute__] = ACTIONS(8220), + [anon_sym___declspec] = ACTIONS(8220), + [anon_sym___based] = ACTIONS(8220), + [anon_sym_LBRACE] = ACTIONS(8224), + [anon_sym_LBRACK] = ACTIONS(8222), + [anon_sym_static] = ACTIONS(8220), + [anon_sym_auto] = ACTIONS(8220), + [anon_sym_register] = ACTIONS(8220), + [anon_sym_inline] = ACTIONS(8220), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8220), + [anon_sym_const] = ACTIONS(8220), + [anon_sym_volatile] = ACTIONS(8220), + [anon_sym_restrict] = ACTIONS(8220), + [anon_sym__Atomic] = ACTIONS(8220), + [anon_sym_in] = ACTIONS(8220), + [anon_sym_out] = ACTIONS(8220), + [anon_sym_inout] = ACTIONS(8220), + [anon_sym_bycopy] = ACTIONS(8220), + [anon_sym_byref] = ACTIONS(8220), + [anon_sym_oneway] = ACTIONS(8220), + [anon_sym__Nullable] = ACTIONS(8220), + [anon_sym__Nonnull] = ACTIONS(8220), + [anon_sym__Nullable_result] = ACTIONS(8220), + [anon_sym__Null_unspecified] = ACTIONS(8220), + [anon_sym___autoreleasing] = ACTIONS(8220), + [anon_sym___nullable] = ACTIONS(8220), + [anon_sym___nonnull] = ACTIONS(8220), + [anon_sym___strong] = ACTIONS(8220), + [anon_sym___weak] = ACTIONS(8220), + [anon_sym___bridge] = ACTIONS(8220), + [anon_sym___bridge_transfer] = ACTIONS(8220), + [anon_sym___bridge_retained] = ACTIONS(8220), + [anon_sym___unsafe_unretained] = ACTIONS(8220), + [anon_sym___block] = ACTIONS(8220), + [anon_sym___kindof] = ACTIONS(8220), + [anon_sym___unused] = ACTIONS(8220), + [anon_sym__Complex] = ACTIONS(8220), + [anon_sym___complex] = ACTIONS(8220), + [anon_sym_IBOutlet] = ACTIONS(8220), + [anon_sym_IBInspectable] = ACTIONS(8220), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8220), + [anon_sym_COLON] = ACTIONS(8222), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8220), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8220), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8220), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8220), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8220), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8220), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8220), + [anon_sym_NS_AVAILABLE] = ACTIONS(8220), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8220), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8220), + [anon_sym_API_AVAILABLE] = ACTIONS(8220), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8220), + [anon_sym_API_DEPRECATED] = ACTIONS(8220), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8220), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8220), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8220), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8220), + [anon_sym___deprecated_msg] = ACTIONS(8220), + [anon_sym___deprecated_enum_msg] = ACTIONS(8220), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8220), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8220), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8220), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8220), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3383] = { + [sym_identifier] = ACTIONS(6740), + [anon_sym_COMMA] = ACTIONS(6742), + [anon_sym_RPAREN] = ACTIONS(6742), + [anon_sym_LPAREN2] = ACTIONS(6742), + [anon_sym_STAR] = ACTIONS(6742), + [anon_sym_LT] = ACTIONS(6742), + [anon_sym_SEMI] = ACTIONS(6742), + [anon_sym_extern] = ACTIONS(6740), + [anon_sym___attribute] = ACTIONS(6740), + [anon_sym___attribute__] = ACTIONS(6740), + [anon_sym___declspec] = ACTIONS(6740), + [anon_sym___based] = ACTIONS(6740), + [anon_sym_LBRACE] = ACTIONS(6742), + [anon_sym_LBRACK] = ACTIONS(6742), + [anon_sym_static] = ACTIONS(6740), + [anon_sym_auto] = ACTIONS(6740), + [anon_sym_register] = ACTIONS(6740), + [anon_sym_inline] = ACTIONS(6740), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6740), + [anon_sym_const] = ACTIONS(6740), + [anon_sym_volatile] = ACTIONS(6740), + [anon_sym_restrict] = ACTIONS(6740), + [anon_sym__Atomic] = ACTIONS(6740), + [anon_sym_in] = ACTIONS(6740), + [anon_sym_out] = ACTIONS(6740), + [anon_sym_inout] = ACTIONS(6740), + [anon_sym_bycopy] = ACTIONS(6740), + [anon_sym_byref] = ACTIONS(6740), + [anon_sym_oneway] = ACTIONS(6740), + [anon_sym__Nullable] = ACTIONS(6740), + [anon_sym__Nonnull] = ACTIONS(6740), + [anon_sym__Nullable_result] = ACTIONS(6740), + [anon_sym__Null_unspecified] = ACTIONS(6740), + [anon_sym___autoreleasing] = ACTIONS(6740), + [anon_sym___nullable] = ACTIONS(6740), + [anon_sym___nonnull] = ACTIONS(6740), + [anon_sym___strong] = ACTIONS(6740), + [anon_sym___weak] = ACTIONS(6740), + [anon_sym___bridge] = ACTIONS(6740), + [anon_sym___bridge_transfer] = ACTIONS(6740), + [anon_sym___bridge_retained] = ACTIONS(6740), + [anon_sym___unsafe_unretained] = ACTIONS(6740), + [anon_sym___block] = ACTIONS(6740), + [anon_sym___kindof] = ACTIONS(6740), + [anon_sym___unused] = ACTIONS(6740), + [anon_sym__Complex] = ACTIONS(6740), + [anon_sym___complex] = ACTIONS(6740), + [anon_sym_IBOutlet] = ACTIONS(6740), + [anon_sym_IBInspectable] = ACTIONS(6740), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6740), + [anon_sym_COLON] = ACTIONS(6742), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6740), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6740), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6740), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6740), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6740), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6740), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6740), + [anon_sym_NS_AVAILABLE] = ACTIONS(6740), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6740), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6740), + [anon_sym_API_AVAILABLE] = ACTIONS(6740), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6740), + [anon_sym_API_DEPRECATED] = ACTIONS(6740), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6740), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6740), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6740), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6740), + [anon_sym___deprecated_msg] = ACTIONS(6740), + [anon_sym___deprecated_enum_msg] = ACTIONS(6740), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6740), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6740), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6740), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6740), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3384] = { + [sym_enumerator_list] = STATE(3493), + [sym_identifier] = ACTIONS(8220), + [anon_sym_COMMA] = ACTIONS(8222), + [anon_sym_RPAREN] = ACTIONS(8222), + [anon_sym_LPAREN2] = ACTIONS(8222), + [anon_sym_STAR] = ACTIONS(8222), + [anon_sym_SEMI] = ACTIONS(8222), + [anon_sym_extern] = ACTIONS(8220), + [anon_sym___attribute] = ACTIONS(8220), + [anon_sym___attribute__] = ACTIONS(8220), + [anon_sym___declspec] = ACTIONS(8220), + [anon_sym___based] = ACTIONS(8220), + [anon_sym_LBRACE] = ACTIONS(8138), + [anon_sym_LBRACK] = ACTIONS(8222), + [anon_sym_static] = ACTIONS(8220), + [anon_sym_auto] = ACTIONS(8220), + [anon_sym_register] = ACTIONS(8220), + [anon_sym_inline] = ACTIONS(8220), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8220), + [anon_sym_const] = ACTIONS(8220), + [anon_sym_volatile] = ACTIONS(8220), + [anon_sym_restrict] = ACTIONS(8220), + [anon_sym__Atomic] = ACTIONS(8220), + [anon_sym_in] = ACTIONS(8220), + [anon_sym_out] = ACTIONS(8220), + [anon_sym_inout] = ACTIONS(8220), + [anon_sym_bycopy] = ACTIONS(8220), + [anon_sym_byref] = ACTIONS(8220), + [anon_sym_oneway] = ACTIONS(8220), + [anon_sym__Nullable] = ACTIONS(8220), + [anon_sym__Nonnull] = ACTIONS(8220), + [anon_sym__Nullable_result] = ACTIONS(8220), + [anon_sym__Null_unspecified] = ACTIONS(8220), + [anon_sym___autoreleasing] = ACTIONS(8220), + [anon_sym___nullable] = ACTIONS(8220), + [anon_sym___nonnull] = ACTIONS(8220), + [anon_sym___strong] = ACTIONS(8220), + [anon_sym___weak] = ACTIONS(8220), + [anon_sym___bridge] = ACTIONS(8220), + [anon_sym___bridge_transfer] = ACTIONS(8220), + [anon_sym___bridge_retained] = ACTIONS(8220), + [anon_sym___unsafe_unretained] = ACTIONS(8220), + [anon_sym___block] = ACTIONS(8220), + [anon_sym___kindof] = ACTIONS(8220), + [anon_sym___unused] = ACTIONS(8220), + [anon_sym__Complex] = ACTIONS(8220), + [anon_sym___complex] = ACTIONS(8220), + [anon_sym_IBOutlet] = ACTIONS(8220), + [anon_sym_IBInspectable] = ACTIONS(8220), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8220), + [anon_sym_COLON] = ACTIONS(8222), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8220), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8220), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8220), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8220), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8220), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8220), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8220), + [anon_sym_NS_AVAILABLE] = ACTIONS(8220), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8220), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8220), + [anon_sym_API_AVAILABLE] = ACTIONS(8220), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8220), + [anon_sym_API_DEPRECATED] = ACTIONS(8220), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8220), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8220), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8220), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8220), + [anon_sym___deprecated_msg] = ACTIONS(8220), + [anon_sym___deprecated_enum_msg] = ACTIONS(8220), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8220), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8220), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8220), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8220), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3385] = { + [sym_identifier] = ACTIONS(7286), + [anon_sym_COMMA] = ACTIONS(7288), + [anon_sym_RPAREN] = ACTIONS(7288), + [anon_sym_LPAREN2] = ACTIONS(7288), + [anon_sym_STAR] = ACTIONS(7288), + [anon_sym_LT] = ACTIONS(7288), + [anon_sym_SEMI] = ACTIONS(7288), + [anon_sym_extern] = ACTIONS(7286), + [anon_sym___attribute] = ACTIONS(7286), + [anon_sym___attribute__] = ACTIONS(7286), + [anon_sym___declspec] = ACTIONS(7286), + [anon_sym___based] = ACTIONS(7286), + [anon_sym_LBRACE] = ACTIONS(7288), + [anon_sym_LBRACK] = ACTIONS(7288), + [anon_sym_static] = ACTIONS(7286), + [anon_sym_auto] = ACTIONS(7286), + [anon_sym_register] = ACTIONS(7286), + [anon_sym_inline] = ACTIONS(7286), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7286), + [anon_sym_const] = ACTIONS(7286), + [anon_sym_volatile] = ACTIONS(7286), + [anon_sym_restrict] = ACTIONS(7286), + [anon_sym__Atomic] = ACTIONS(7286), + [anon_sym_in] = ACTIONS(7286), + [anon_sym_out] = ACTIONS(7286), + [anon_sym_inout] = ACTIONS(7286), + [anon_sym_bycopy] = ACTIONS(7286), + [anon_sym_byref] = ACTIONS(7286), + [anon_sym_oneway] = ACTIONS(7286), + [anon_sym__Nullable] = ACTIONS(7286), + [anon_sym__Nonnull] = ACTIONS(7286), + [anon_sym__Nullable_result] = ACTIONS(7286), + [anon_sym__Null_unspecified] = ACTIONS(7286), + [anon_sym___autoreleasing] = ACTIONS(7286), + [anon_sym___nullable] = ACTIONS(7286), + [anon_sym___nonnull] = ACTIONS(7286), + [anon_sym___strong] = ACTIONS(7286), + [anon_sym___weak] = ACTIONS(7286), + [anon_sym___bridge] = ACTIONS(7286), + [anon_sym___bridge_transfer] = ACTIONS(7286), + [anon_sym___bridge_retained] = ACTIONS(7286), + [anon_sym___unsafe_unretained] = ACTIONS(7286), + [anon_sym___block] = ACTIONS(7286), + [anon_sym___kindof] = ACTIONS(7286), + [anon_sym___unused] = ACTIONS(7286), + [anon_sym__Complex] = ACTIONS(7286), + [anon_sym___complex] = ACTIONS(7286), + [anon_sym_IBOutlet] = ACTIONS(7286), + [anon_sym_IBInspectable] = ACTIONS(7286), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7286), + [anon_sym_COLON] = ACTIONS(7288), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7286), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7286), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7286), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7286), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7286), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7286), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7286), + [anon_sym_NS_AVAILABLE] = ACTIONS(7286), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7286), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7286), + [anon_sym_API_AVAILABLE] = ACTIONS(7286), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7286), + [anon_sym_API_DEPRECATED] = ACTIONS(7286), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7286), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7286), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7286), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7286), + [anon_sym___deprecated_msg] = ACTIONS(7286), + [anon_sym___deprecated_enum_msg] = ACTIONS(7286), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7286), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7286), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7286), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7286), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3386] = { + [sym_attribute_specifier] = STATE(5734), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4195), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3474), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3474), + [sym_identifier] = ACTIONS(8227), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8233), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3387] = { + [sym_identifier] = ACTIONS(8235), + [anon_sym_COMMA] = ACTIONS(8237), + [anon_sym_RPAREN] = ACTIONS(8237), + [anon_sym_LPAREN2] = ACTIONS(8237), + [anon_sym_STAR] = ACTIONS(8237), + [anon_sym_SEMI] = ACTIONS(8237), + [anon_sym_extern] = ACTIONS(8235), + [anon_sym___attribute] = ACTIONS(8235), + [anon_sym___attribute__] = ACTIONS(8235), + [anon_sym___declspec] = ACTIONS(8235), + [anon_sym___based] = ACTIONS(8235), + [anon_sym_LBRACE] = ACTIONS(8237), + [anon_sym_LBRACK] = ACTIONS(8237), + [anon_sym_static] = ACTIONS(8235), + [anon_sym_auto] = ACTIONS(8235), + [anon_sym_register] = ACTIONS(8235), + [anon_sym_inline] = ACTIONS(8235), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8235), + [anon_sym_const] = ACTIONS(8235), + [anon_sym_volatile] = ACTIONS(8235), + [anon_sym_restrict] = ACTIONS(8235), + [anon_sym__Atomic] = ACTIONS(8235), + [anon_sym_in] = ACTIONS(8235), + [anon_sym_out] = ACTIONS(8235), + [anon_sym_inout] = ACTIONS(8235), + [anon_sym_bycopy] = ACTIONS(8235), + [anon_sym_byref] = ACTIONS(8235), + [anon_sym_oneway] = ACTIONS(8235), + [anon_sym__Nullable] = ACTIONS(8235), + [anon_sym__Nonnull] = ACTIONS(8235), + [anon_sym__Nullable_result] = ACTIONS(8235), + [anon_sym__Null_unspecified] = ACTIONS(8235), + [anon_sym___autoreleasing] = ACTIONS(8235), + [anon_sym___nullable] = ACTIONS(8235), + [anon_sym___nonnull] = ACTIONS(8235), + [anon_sym___strong] = ACTIONS(8235), + [anon_sym___weak] = ACTIONS(8235), + [anon_sym___bridge] = ACTIONS(8235), + [anon_sym___bridge_transfer] = ACTIONS(8235), + [anon_sym___bridge_retained] = ACTIONS(8235), + [anon_sym___unsafe_unretained] = ACTIONS(8235), + [anon_sym___block] = ACTIONS(8235), + [anon_sym___kindof] = ACTIONS(8235), + [anon_sym___unused] = ACTIONS(8235), + [anon_sym__Complex] = ACTIONS(8235), + [anon_sym___complex] = ACTIONS(8235), + [anon_sym_IBOutlet] = ACTIONS(8235), + [anon_sym_IBInspectable] = ACTIONS(8235), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8235), + [anon_sym_COLON] = ACTIONS(8237), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8235), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8235), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8235), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8235), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8235), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8235), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8235), + [anon_sym_NS_AVAILABLE] = ACTIONS(8235), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8235), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8235), + [anon_sym_API_AVAILABLE] = ACTIONS(8235), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8235), + [anon_sym_API_DEPRECATED] = ACTIONS(8235), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8235), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8235), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8235), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8235), + [anon_sym___deprecated_msg] = ACTIONS(8235), + [anon_sym___deprecated_enum_msg] = ACTIONS(8235), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8235), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8235), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8235), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8235), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3388] = { + [sym_attribute_specifier] = STATE(3393), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4129), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3394), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3394), + [sym_identifier] = ACTIONS(8239), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8241), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3389] = { + [sym_field_declaration_list] = STATE(3456), + [sym_superclass_reference] = STATE(3374), + [sym_identifier] = ACTIONS(8023), + [anon_sym_LPAREN2] = ACTIONS(8025), + [anon_sym_STAR] = ACTIONS(8025), + [anon_sym_SEMI] = ACTIONS(8025), + [anon_sym_extern] = ACTIONS(8023), + [anon_sym___attribute] = ACTIONS(8023), + [anon_sym___attribute__] = ACTIONS(8023), + [anon_sym___declspec] = ACTIONS(8023), + [anon_sym___based] = ACTIONS(8023), + [anon_sym_LBRACE] = ACTIONS(8087), + [anon_sym_static] = ACTIONS(8023), + [anon_sym_auto] = ACTIONS(8023), + [anon_sym_register] = ACTIONS(8023), + [anon_sym_inline] = ACTIONS(8023), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8023), + [anon_sym_const] = ACTIONS(8023), + [anon_sym_volatile] = ACTIONS(8023), + [anon_sym_restrict] = ACTIONS(8023), + [anon_sym__Atomic] = ACTIONS(8023), + [anon_sym_in] = ACTIONS(8023), + [anon_sym_out] = ACTIONS(8023), + [anon_sym_inout] = ACTIONS(8023), + [anon_sym_bycopy] = ACTIONS(8023), + [anon_sym_byref] = ACTIONS(8023), + [anon_sym_oneway] = ACTIONS(8023), + [anon_sym__Nullable] = ACTIONS(8023), + [anon_sym__Nonnull] = ACTIONS(8023), + [anon_sym__Nullable_result] = ACTIONS(8023), + [anon_sym__Null_unspecified] = ACTIONS(8023), + [anon_sym___autoreleasing] = ACTIONS(8023), + [anon_sym___nullable] = ACTIONS(8023), + [anon_sym___nonnull] = ACTIONS(8023), + [anon_sym___strong] = ACTIONS(8023), + [anon_sym___weak] = ACTIONS(8023), + [anon_sym___bridge] = ACTIONS(8023), + [anon_sym___bridge_transfer] = ACTIONS(8023), + [anon_sym___bridge_retained] = ACTIONS(8023), + [anon_sym___unsafe_unretained] = ACTIONS(8023), + [anon_sym___block] = ACTIONS(8023), + [anon_sym___kindof] = ACTIONS(8023), + [anon_sym___unused] = ACTIONS(8023), + [anon_sym__Complex] = ACTIONS(8023), + [anon_sym___complex] = ACTIONS(8023), + [anon_sym_IBOutlet] = ACTIONS(8023), + [anon_sym_IBInspectable] = ACTIONS(8023), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8023), + [anon_sym_COLON] = ACTIONS(8253), + [anon_sym_ATdefs] = ACTIONS(8031), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8023), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8023), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8023), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8023), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8023), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8023), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8023), + [anon_sym_NS_AVAILABLE] = ACTIONS(8023), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8023), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_API_AVAILABLE] = ACTIONS(8023), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8023), + [anon_sym_API_DEPRECATED] = ACTIONS(8023), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8023), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8023), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8023), + [anon_sym___deprecated_msg] = ACTIONS(8023), + [anon_sym___deprecated_enum_msg] = ACTIONS(8023), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8023), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8023), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3390] = { + [sym_attribute_specifier] = STATE(5693), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4232), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3501), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3501), + [sym_identifier] = ACTIONS(8256), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8258), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3391] = { + [sym_attribute_specifier] = STATE(5372), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4128), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8260), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8262), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3392] = { + [sym_attribute_specifier] = STATE(5499), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4159), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8264), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8266), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3393] = { + [sym_attribute_specifier] = STATE(5376), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4124), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3404), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3404), + [sym_identifier] = ACTIONS(8268), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8270), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3394] = { + [sym_attribute_specifier] = STATE(5376), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4124), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8268), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8272), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3395] = { + [sym_attribute_specifier] = STATE(5637), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4152), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8274), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8276), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3396] = { + [sym_identifier] = ACTIONS(8278), + [anon_sym_COMMA] = ACTIONS(8280), + [anon_sym_RPAREN] = ACTIONS(8280), + [anon_sym_LPAREN2] = ACTIONS(8280), + [anon_sym_STAR] = ACTIONS(8280), + [anon_sym_SEMI] = ACTIONS(8280), + [anon_sym_extern] = ACTIONS(8278), + [anon_sym___attribute] = ACTIONS(8278), + [anon_sym___attribute__] = ACTIONS(8278), + [anon_sym___declspec] = ACTIONS(8278), + [anon_sym___based] = ACTIONS(8278), + [anon_sym_LBRACE] = ACTIONS(8280), + [anon_sym_LBRACK] = ACTIONS(8280), + [anon_sym_static] = ACTIONS(8278), + [anon_sym_auto] = ACTIONS(8278), + [anon_sym_register] = ACTIONS(8278), + [anon_sym_inline] = ACTIONS(8278), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8278), + [anon_sym_const] = ACTIONS(8278), + [anon_sym_volatile] = ACTIONS(8278), + [anon_sym_restrict] = ACTIONS(8278), + [anon_sym__Atomic] = ACTIONS(8278), + [anon_sym_in] = ACTIONS(8278), + [anon_sym_out] = ACTIONS(8278), + [anon_sym_inout] = ACTIONS(8278), + [anon_sym_bycopy] = ACTIONS(8278), + [anon_sym_byref] = ACTIONS(8278), + [anon_sym_oneway] = ACTIONS(8278), + [anon_sym__Nullable] = ACTIONS(8278), + [anon_sym__Nonnull] = ACTIONS(8278), + [anon_sym__Nullable_result] = ACTIONS(8278), + [anon_sym__Null_unspecified] = ACTIONS(8278), + [anon_sym___autoreleasing] = ACTIONS(8278), + [anon_sym___nullable] = ACTIONS(8278), + [anon_sym___nonnull] = ACTIONS(8278), + [anon_sym___strong] = ACTIONS(8278), + [anon_sym___weak] = ACTIONS(8278), + [anon_sym___bridge] = ACTIONS(8278), + [anon_sym___bridge_transfer] = ACTIONS(8278), + [anon_sym___bridge_retained] = ACTIONS(8278), + [anon_sym___unsafe_unretained] = ACTIONS(8278), + [anon_sym___block] = ACTIONS(8278), + [anon_sym___kindof] = ACTIONS(8278), + [anon_sym___unused] = ACTIONS(8278), + [anon_sym__Complex] = ACTIONS(8278), + [anon_sym___complex] = ACTIONS(8278), + [anon_sym_IBOutlet] = ACTIONS(8278), + [anon_sym_IBInspectable] = ACTIONS(8278), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8278), + [anon_sym_COLON] = ACTIONS(8280), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8278), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8278), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8278), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8278), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8278), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8278), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8278), + [anon_sym_NS_AVAILABLE] = ACTIONS(8278), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8278), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8278), + [anon_sym_API_AVAILABLE] = ACTIONS(8278), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8278), + [anon_sym_API_DEPRECATED] = ACTIONS(8278), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8278), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8278), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8278), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8278), + [anon_sym___deprecated_msg] = ACTIONS(8278), + [anon_sym___deprecated_enum_msg] = ACTIONS(8278), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8278), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8278), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8278), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8278), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3397] = { + [sym_identifier] = ACTIONS(8282), + [anon_sym_COMMA] = ACTIONS(8284), + [anon_sym_RPAREN] = ACTIONS(8284), + [anon_sym_LPAREN2] = ACTIONS(8284), + [anon_sym_STAR] = ACTIONS(8284), + [anon_sym_SEMI] = ACTIONS(8284), + [anon_sym_extern] = ACTIONS(8282), + [anon_sym___attribute] = ACTIONS(8282), + [anon_sym___attribute__] = ACTIONS(8282), + [anon_sym___declspec] = ACTIONS(8282), + [anon_sym___based] = ACTIONS(8282), + [anon_sym_LBRACE] = ACTIONS(8284), + [anon_sym_LBRACK] = ACTIONS(8284), + [anon_sym_static] = ACTIONS(8282), + [anon_sym_auto] = ACTIONS(8282), + [anon_sym_register] = ACTIONS(8282), + [anon_sym_inline] = ACTIONS(8282), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8282), + [anon_sym_const] = ACTIONS(8282), + [anon_sym_volatile] = ACTIONS(8282), + [anon_sym_restrict] = ACTIONS(8282), + [anon_sym__Atomic] = ACTIONS(8282), + [anon_sym_in] = ACTIONS(8282), + [anon_sym_out] = ACTIONS(8282), + [anon_sym_inout] = ACTIONS(8282), + [anon_sym_bycopy] = ACTIONS(8282), + [anon_sym_byref] = ACTIONS(8282), + [anon_sym_oneway] = ACTIONS(8282), + [anon_sym__Nullable] = ACTIONS(8282), + [anon_sym__Nonnull] = ACTIONS(8282), + [anon_sym__Nullable_result] = ACTIONS(8282), + [anon_sym__Null_unspecified] = ACTIONS(8282), + [anon_sym___autoreleasing] = ACTIONS(8282), + [anon_sym___nullable] = ACTIONS(8282), + [anon_sym___nonnull] = ACTIONS(8282), + [anon_sym___strong] = ACTIONS(8282), + [anon_sym___weak] = ACTIONS(8282), + [anon_sym___bridge] = ACTIONS(8282), + [anon_sym___bridge_transfer] = ACTIONS(8282), + [anon_sym___bridge_retained] = ACTIONS(8282), + [anon_sym___unsafe_unretained] = ACTIONS(8282), + [anon_sym___block] = ACTIONS(8282), + [anon_sym___kindof] = ACTIONS(8282), + [anon_sym___unused] = ACTIONS(8282), + [anon_sym__Complex] = ACTIONS(8282), + [anon_sym___complex] = ACTIONS(8282), + [anon_sym_IBOutlet] = ACTIONS(8282), + [anon_sym_IBInspectable] = ACTIONS(8282), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8282), + [anon_sym_COLON] = ACTIONS(8284), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8282), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8282), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8282), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8282), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8282), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8282), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8282), + [anon_sym_NS_AVAILABLE] = ACTIONS(8282), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8282), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8282), + [anon_sym_API_AVAILABLE] = ACTIONS(8282), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8282), + [anon_sym_API_DEPRECATED] = ACTIONS(8282), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8282), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8282), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8282), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8282), + [anon_sym___deprecated_msg] = ACTIONS(8282), + [anon_sym___deprecated_enum_msg] = ACTIONS(8282), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8282), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8282), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8282), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8282), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3398] = { + [sym_field_declaration_list] = STATE(3454), + [sym_superclass_reference] = STATE(3373), + [sym_identifier] = ACTIONS(8033), + [anon_sym_LPAREN2] = ACTIONS(8035), + [anon_sym_STAR] = ACTIONS(8035), + [anon_sym_SEMI] = ACTIONS(8035), + [anon_sym_extern] = ACTIONS(8033), + [anon_sym___attribute] = ACTIONS(8033), + [anon_sym___attribute__] = ACTIONS(8033), + [anon_sym___declspec] = ACTIONS(8033), + [anon_sym___based] = ACTIONS(8033), + [anon_sym_LBRACE] = ACTIONS(8037), + [anon_sym_static] = ACTIONS(8033), + [anon_sym_auto] = ACTIONS(8033), + [anon_sym_register] = ACTIONS(8033), + [anon_sym_inline] = ACTIONS(8033), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8033), + [anon_sym_const] = ACTIONS(8033), + [anon_sym_volatile] = ACTIONS(8033), + [anon_sym_restrict] = ACTIONS(8033), + [anon_sym__Atomic] = ACTIONS(8033), + [anon_sym_in] = ACTIONS(8033), + [anon_sym_out] = ACTIONS(8033), + [anon_sym_inout] = ACTIONS(8033), + [anon_sym_bycopy] = ACTIONS(8033), + [anon_sym_byref] = ACTIONS(8033), + [anon_sym_oneway] = ACTIONS(8033), + [anon_sym__Nullable] = ACTIONS(8033), + [anon_sym__Nonnull] = ACTIONS(8033), + [anon_sym__Nullable_result] = ACTIONS(8033), + [anon_sym__Null_unspecified] = ACTIONS(8033), + [anon_sym___autoreleasing] = ACTIONS(8033), + [anon_sym___nullable] = ACTIONS(8033), + [anon_sym___nonnull] = ACTIONS(8033), + [anon_sym___strong] = ACTIONS(8033), + [anon_sym___weak] = ACTIONS(8033), + [anon_sym___bridge] = ACTIONS(8033), + [anon_sym___bridge_transfer] = ACTIONS(8033), + [anon_sym___bridge_retained] = ACTIONS(8033), + [anon_sym___unsafe_unretained] = ACTIONS(8033), + [anon_sym___block] = ACTIONS(8033), + [anon_sym___kindof] = ACTIONS(8033), + [anon_sym___unused] = ACTIONS(8033), + [anon_sym__Complex] = ACTIONS(8033), + [anon_sym___complex] = ACTIONS(8033), + [anon_sym_IBOutlet] = ACTIONS(8033), + [anon_sym_IBInspectable] = ACTIONS(8033), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8033), + [anon_sym_COLON] = ACTIONS(8286), + [anon_sym_ATdefs] = ACTIONS(8040), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8033), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8033), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8033), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8033), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8033), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8033), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8033), + [anon_sym_NS_AVAILABLE] = ACTIONS(8033), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8033), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_API_AVAILABLE] = ACTIONS(8033), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8033), + [anon_sym_API_DEPRECATED] = ACTIONS(8033), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8033), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8033), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8033), + [anon_sym___deprecated_msg] = ACTIONS(8033), + [anon_sym___deprecated_enum_msg] = ACTIONS(8033), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8033), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8033), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3399] = { + [sym_attribute_specifier] = STATE(5269), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4217), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8289), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8291), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3400] = { + [sym_attribute_specifier] = STATE(5463), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4255), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8293), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8295), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3401] = { + [sym_attribute_specifier] = STATE(5499), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4159), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3472), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3472), + [sym_identifier] = ACTIONS(8264), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8297), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3402] = { + [sym_identifier] = ACTIONS(8299), + [anon_sym_COMMA] = ACTIONS(8301), + [anon_sym_RPAREN] = ACTIONS(8301), + [anon_sym_LPAREN2] = ACTIONS(8301), + [anon_sym_STAR] = ACTIONS(8301), + [anon_sym_SEMI] = ACTIONS(8301), + [anon_sym_extern] = ACTIONS(8299), + [anon_sym___attribute] = ACTIONS(8299), + [anon_sym___attribute__] = ACTIONS(8299), + [anon_sym___declspec] = ACTIONS(8299), + [anon_sym___based] = ACTIONS(8299), + [anon_sym_LBRACE] = ACTIONS(8301), + [anon_sym_LBRACK] = ACTIONS(8301), + [anon_sym_static] = ACTIONS(8299), + [anon_sym_auto] = ACTIONS(8299), + [anon_sym_register] = ACTIONS(8299), + [anon_sym_inline] = ACTIONS(8299), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8299), + [anon_sym_const] = ACTIONS(8299), + [anon_sym_volatile] = ACTIONS(8299), + [anon_sym_restrict] = ACTIONS(8299), + [anon_sym__Atomic] = ACTIONS(8299), + [anon_sym_in] = ACTIONS(8299), + [anon_sym_out] = ACTIONS(8299), + [anon_sym_inout] = ACTIONS(8299), + [anon_sym_bycopy] = ACTIONS(8299), + [anon_sym_byref] = ACTIONS(8299), + [anon_sym_oneway] = ACTIONS(8299), + [anon_sym__Nullable] = ACTIONS(8299), + [anon_sym__Nonnull] = ACTIONS(8299), + [anon_sym__Nullable_result] = ACTIONS(8299), + [anon_sym__Null_unspecified] = ACTIONS(8299), + [anon_sym___autoreleasing] = ACTIONS(8299), + [anon_sym___nullable] = ACTIONS(8299), + [anon_sym___nonnull] = ACTIONS(8299), + [anon_sym___strong] = ACTIONS(8299), + [anon_sym___weak] = ACTIONS(8299), + [anon_sym___bridge] = ACTIONS(8299), + [anon_sym___bridge_transfer] = ACTIONS(8299), + [anon_sym___bridge_retained] = ACTIONS(8299), + [anon_sym___unsafe_unretained] = ACTIONS(8299), + [anon_sym___block] = ACTIONS(8299), + [anon_sym___kindof] = ACTIONS(8299), + [anon_sym___unused] = ACTIONS(8299), + [anon_sym__Complex] = ACTIONS(8299), + [anon_sym___complex] = ACTIONS(8299), + [anon_sym_IBOutlet] = ACTIONS(8299), + [anon_sym_IBInspectable] = ACTIONS(8299), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8299), + [anon_sym_COLON] = ACTIONS(8301), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8299), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8299), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8299), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8299), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8299), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8299), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8299), + [anon_sym_NS_AVAILABLE] = ACTIONS(8299), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8299), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8299), + [anon_sym_API_AVAILABLE] = ACTIONS(8299), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8299), + [anon_sym_API_DEPRECATED] = ACTIONS(8299), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8299), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8299), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8299), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8299), + [anon_sym___deprecated_msg] = ACTIONS(8299), + [anon_sym___deprecated_enum_msg] = ACTIONS(8299), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8299), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8299), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8299), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8299), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3403] = { + [sym_attribute_specifier] = STATE(5339), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4133), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8303), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8305), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3404] = { + [sym_attribute_specifier] = STATE(5382), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4265), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8307), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8309), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3405] = { + [sym_attribute_specifier] = STATE(3489), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4244), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3487), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3487), + [sym_identifier] = ACTIONS(8311), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8313), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3406] = { + [sym_attribute_specifier] = STATE(5343), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4132), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3417), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3417), + [sym_identifier] = ACTIONS(8315), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8317), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3407] = { + [sym_attribute_specifier] = STATE(5343), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4132), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8315), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8319), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3408] = { + [sym_identifier] = ACTIONS(8321), + [anon_sym_COMMA] = ACTIONS(8323), + [anon_sym_RPAREN] = ACTIONS(8323), + [anon_sym_LPAREN2] = ACTIONS(8323), + [anon_sym_STAR] = ACTIONS(8323), + [anon_sym_SEMI] = ACTIONS(8323), + [anon_sym_extern] = ACTIONS(8321), + [anon_sym___attribute] = ACTIONS(8321), + [anon_sym___attribute__] = ACTIONS(8321), + [anon_sym___declspec] = ACTIONS(8321), + [anon_sym___based] = ACTIONS(8321), + [anon_sym_LBRACE] = ACTIONS(8323), + [anon_sym_LBRACK] = ACTIONS(8323), + [anon_sym_static] = ACTIONS(8321), + [anon_sym_auto] = ACTIONS(8321), + [anon_sym_register] = ACTIONS(8321), + [anon_sym_inline] = ACTIONS(8321), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8321), + [anon_sym_const] = ACTIONS(8321), + [anon_sym_volatile] = ACTIONS(8321), + [anon_sym_restrict] = ACTIONS(8321), + [anon_sym__Atomic] = ACTIONS(8321), + [anon_sym_in] = ACTIONS(8321), + [anon_sym_out] = ACTIONS(8321), + [anon_sym_inout] = ACTIONS(8321), + [anon_sym_bycopy] = ACTIONS(8321), + [anon_sym_byref] = ACTIONS(8321), + [anon_sym_oneway] = ACTIONS(8321), + [anon_sym__Nullable] = ACTIONS(8321), + [anon_sym__Nonnull] = ACTIONS(8321), + [anon_sym__Nullable_result] = ACTIONS(8321), + [anon_sym__Null_unspecified] = ACTIONS(8321), + [anon_sym___autoreleasing] = ACTIONS(8321), + [anon_sym___nullable] = ACTIONS(8321), + [anon_sym___nonnull] = ACTIONS(8321), + [anon_sym___strong] = ACTIONS(8321), + [anon_sym___weak] = ACTIONS(8321), + [anon_sym___bridge] = ACTIONS(8321), + [anon_sym___bridge_transfer] = ACTIONS(8321), + [anon_sym___bridge_retained] = ACTIONS(8321), + [anon_sym___unsafe_unretained] = ACTIONS(8321), + [anon_sym___block] = ACTIONS(8321), + [anon_sym___kindof] = ACTIONS(8321), + [anon_sym___unused] = ACTIONS(8321), + [anon_sym__Complex] = ACTIONS(8321), + [anon_sym___complex] = ACTIONS(8321), + [anon_sym_IBOutlet] = ACTIONS(8321), + [anon_sym_IBInspectable] = ACTIONS(8321), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8321), + [anon_sym_COLON] = ACTIONS(8323), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8321), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8321), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8321), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8321), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8321), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8321), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8321), + [anon_sym_NS_AVAILABLE] = ACTIONS(8321), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8321), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8321), + [anon_sym_API_AVAILABLE] = ACTIONS(8321), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8321), + [anon_sym_API_DEPRECATED] = ACTIONS(8321), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8321), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8321), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8321), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8321), + [anon_sym___deprecated_msg] = ACTIONS(8321), + [anon_sym___deprecated_enum_msg] = ACTIONS(8321), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8321), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8321), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8321), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8321), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3409] = { + [sym_attribute_specifier] = STATE(5460), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4254), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8325), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8327), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3410] = { + [sym_identifier] = ACTIONS(8329), + [anon_sym_COMMA] = ACTIONS(8331), + [anon_sym_RPAREN] = ACTIONS(8331), + [anon_sym_LPAREN2] = ACTIONS(8331), + [anon_sym_STAR] = ACTIONS(8331), + [anon_sym_SEMI] = ACTIONS(8331), + [anon_sym_extern] = ACTIONS(8329), + [anon_sym___attribute] = ACTIONS(8329), + [anon_sym___attribute__] = ACTIONS(8329), + [anon_sym___declspec] = ACTIONS(8329), + [anon_sym___based] = ACTIONS(8329), + [anon_sym_LBRACE] = ACTIONS(8331), + [anon_sym_LBRACK] = ACTIONS(8331), + [anon_sym_static] = ACTIONS(8329), + [anon_sym_auto] = ACTIONS(8329), + [anon_sym_register] = ACTIONS(8329), + [anon_sym_inline] = ACTIONS(8329), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8329), + [anon_sym_const] = ACTIONS(8329), + [anon_sym_volatile] = ACTIONS(8329), + [anon_sym_restrict] = ACTIONS(8329), + [anon_sym__Atomic] = ACTIONS(8329), + [anon_sym_in] = ACTIONS(8329), + [anon_sym_out] = ACTIONS(8329), + [anon_sym_inout] = ACTIONS(8329), + [anon_sym_bycopy] = ACTIONS(8329), + [anon_sym_byref] = ACTIONS(8329), + [anon_sym_oneway] = ACTIONS(8329), + [anon_sym__Nullable] = ACTIONS(8329), + [anon_sym__Nonnull] = ACTIONS(8329), + [anon_sym__Nullable_result] = ACTIONS(8329), + [anon_sym__Null_unspecified] = ACTIONS(8329), + [anon_sym___autoreleasing] = ACTIONS(8329), + [anon_sym___nullable] = ACTIONS(8329), + [anon_sym___nonnull] = ACTIONS(8329), + [anon_sym___strong] = ACTIONS(8329), + [anon_sym___weak] = ACTIONS(8329), + [anon_sym___bridge] = ACTIONS(8329), + [anon_sym___bridge_transfer] = ACTIONS(8329), + [anon_sym___bridge_retained] = ACTIONS(8329), + [anon_sym___unsafe_unretained] = ACTIONS(8329), + [anon_sym___block] = ACTIONS(8329), + [anon_sym___kindof] = ACTIONS(8329), + [anon_sym___unused] = ACTIONS(8329), + [anon_sym__Complex] = ACTIONS(8329), + [anon_sym___complex] = ACTIONS(8329), + [anon_sym_IBOutlet] = ACTIONS(8329), + [anon_sym_IBInspectable] = ACTIONS(8329), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8329), + [anon_sym_COLON] = ACTIONS(8331), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8329), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8329), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8329), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8329), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8329), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8329), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8329), + [anon_sym_NS_AVAILABLE] = ACTIONS(8329), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8329), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8329), + [anon_sym_API_AVAILABLE] = ACTIONS(8329), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8329), + [anon_sym_API_DEPRECATED] = ACTIONS(8329), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8329), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8329), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8329), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8329), + [anon_sym___deprecated_msg] = ACTIONS(8329), + [anon_sym___deprecated_enum_msg] = ACTIONS(8329), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8329), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8329), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8329), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8329), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3411] = { + [sym_identifier] = ACTIONS(8333), + [anon_sym_COMMA] = ACTIONS(8335), + [anon_sym_RPAREN] = ACTIONS(8335), + [anon_sym_LPAREN2] = ACTIONS(8335), + [anon_sym_STAR] = ACTIONS(8335), + [anon_sym_SEMI] = ACTIONS(8335), + [anon_sym_extern] = ACTIONS(8333), + [anon_sym___attribute] = ACTIONS(8333), + [anon_sym___attribute__] = ACTIONS(8333), + [anon_sym___declspec] = ACTIONS(8333), + [anon_sym___based] = ACTIONS(8333), + [anon_sym_LBRACE] = ACTIONS(8335), + [anon_sym_LBRACK] = ACTIONS(8335), + [anon_sym_static] = ACTIONS(8333), + [anon_sym_auto] = ACTIONS(8333), + [anon_sym_register] = ACTIONS(8333), + [anon_sym_inline] = ACTIONS(8333), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8333), + [anon_sym_const] = ACTIONS(8333), + [anon_sym_volatile] = ACTIONS(8333), + [anon_sym_restrict] = ACTIONS(8333), + [anon_sym__Atomic] = ACTIONS(8333), + [anon_sym_in] = ACTIONS(8333), + [anon_sym_out] = ACTIONS(8333), + [anon_sym_inout] = ACTIONS(8333), + [anon_sym_bycopy] = ACTIONS(8333), + [anon_sym_byref] = ACTIONS(8333), + [anon_sym_oneway] = ACTIONS(8333), + [anon_sym__Nullable] = ACTIONS(8333), + [anon_sym__Nonnull] = ACTIONS(8333), + [anon_sym__Nullable_result] = ACTIONS(8333), + [anon_sym__Null_unspecified] = ACTIONS(8333), + [anon_sym___autoreleasing] = ACTIONS(8333), + [anon_sym___nullable] = ACTIONS(8333), + [anon_sym___nonnull] = ACTIONS(8333), + [anon_sym___strong] = ACTIONS(8333), + [anon_sym___weak] = ACTIONS(8333), + [anon_sym___bridge] = ACTIONS(8333), + [anon_sym___bridge_transfer] = ACTIONS(8333), + [anon_sym___bridge_retained] = ACTIONS(8333), + [anon_sym___unsafe_unretained] = ACTIONS(8333), + [anon_sym___block] = ACTIONS(8333), + [anon_sym___kindof] = ACTIONS(8333), + [anon_sym___unused] = ACTIONS(8333), + [anon_sym__Complex] = ACTIONS(8333), + [anon_sym___complex] = ACTIONS(8333), + [anon_sym_IBOutlet] = ACTIONS(8333), + [anon_sym_IBInspectable] = ACTIONS(8333), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8333), + [anon_sym_COLON] = ACTIONS(8335), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8333), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8333), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8333), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8333), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8333), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8333), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8333), + [anon_sym_NS_AVAILABLE] = ACTIONS(8333), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8333), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8333), + [anon_sym_API_AVAILABLE] = ACTIONS(8333), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8333), + [anon_sym_API_DEPRECATED] = ACTIONS(8333), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8333), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8333), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8333), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8333), + [anon_sym___deprecated_msg] = ACTIONS(8333), + [anon_sym___deprecated_enum_msg] = ACTIONS(8333), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8333), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8333), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8333), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8333), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3412] = { + [sym_attribute_specifier] = STATE(3419), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4131), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3433), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3433), + [sym_identifier] = ACTIONS(8337), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8339), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3413] = { + [sym_identifier] = ACTIONS(8341), + [anon_sym_COMMA] = ACTIONS(8343), + [anon_sym_RPAREN] = ACTIONS(8343), + [anon_sym_LPAREN2] = ACTIONS(8343), + [anon_sym_STAR] = ACTIONS(8343), + [anon_sym_SEMI] = ACTIONS(8343), + [anon_sym_extern] = ACTIONS(8341), + [anon_sym___attribute] = ACTIONS(8341), + [anon_sym___attribute__] = ACTIONS(8341), + [anon_sym___declspec] = ACTIONS(8341), + [anon_sym___based] = ACTIONS(8341), + [anon_sym_LBRACE] = ACTIONS(8343), + [anon_sym_LBRACK] = ACTIONS(8343), + [anon_sym_static] = ACTIONS(8341), + [anon_sym_auto] = ACTIONS(8341), + [anon_sym_register] = ACTIONS(8341), + [anon_sym_inline] = ACTIONS(8341), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8341), + [anon_sym_const] = ACTIONS(8341), + [anon_sym_volatile] = ACTIONS(8341), + [anon_sym_restrict] = ACTIONS(8341), + [anon_sym__Atomic] = ACTIONS(8341), + [anon_sym_in] = ACTIONS(8341), + [anon_sym_out] = ACTIONS(8341), + [anon_sym_inout] = ACTIONS(8341), + [anon_sym_bycopy] = ACTIONS(8341), + [anon_sym_byref] = ACTIONS(8341), + [anon_sym_oneway] = ACTIONS(8341), + [anon_sym__Nullable] = ACTIONS(8341), + [anon_sym__Nonnull] = ACTIONS(8341), + [anon_sym__Nullable_result] = ACTIONS(8341), + [anon_sym__Null_unspecified] = ACTIONS(8341), + [anon_sym___autoreleasing] = ACTIONS(8341), + [anon_sym___nullable] = ACTIONS(8341), + [anon_sym___nonnull] = ACTIONS(8341), + [anon_sym___strong] = ACTIONS(8341), + [anon_sym___weak] = ACTIONS(8341), + [anon_sym___bridge] = ACTIONS(8341), + [anon_sym___bridge_transfer] = ACTIONS(8341), + [anon_sym___bridge_retained] = ACTIONS(8341), + [anon_sym___unsafe_unretained] = ACTIONS(8341), + [anon_sym___block] = ACTIONS(8341), + [anon_sym___kindof] = ACTIONS(8341), + [anon_sym___unused] = ACTIONS(8341), + [anon_sym__Complex] = ACTIONS(8341), + [anon_sym___complex] = ACTIONS(8341), + [anon_sym_IBOutlet] = ACTIONS(8341), + [anon_sym_IBInspectable] = ACTIONS(8341), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8341), + [anon_sym_COLON] = ACTIONS(8343), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8341), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8341), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8341), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8341), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8341), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8341), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8341), + [anon_sym_NS_AVAILABLE] = ACTIONS(8341), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8341), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8341), + [anon_sym_API_AVAILABLE] = ACTIONS(8341), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8341), + [anon_sym_API_DEPRECATED] = ACTIONS(8341), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8341), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8341), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8341), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8341), + [anon_sym___deprecated_msg] = ACTIONS(8341), + [anon_sym___deprecated_enum_msg] = ACTIONS(8341), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8341), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8341), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8341), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8341), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3414] = { + [sym_type_qualifier] = STATE(3414), + [aux_sym_type_definition_repeat1] = STATE(3414), + [sym_identifier] = ACTIONS(8345), + [anon_sym_LPAREN2] = ACTIONS(8347), + [anon_sym_BANG] = ACTIONS(8347), + [anon_sym_TILDE] = ACTIONS(8347), + [anon_sym_DASH] = ACTIONS(8345), + [anon_sym_PLUS] = ACTIONS(8345), + [anon_sym_STAR] = ACTIONS(8347), + [anon_sym_CARET] = ACTIONS(8347), + [anon_sym_AMP] = ACTIONS(8347), + [anon_sym_LBRACK] = ACTIONS(8347), + [anon_sym_RBRACK] = ACTIONS(8347), + [anon_sym_const] = ACTIONS(8349), + [anon_sym_volatile] = ACTIONS(8349), + [anon_sym_restrict] = ACTIONS(8349), + [anon_sym__Atomic] = ACTIONS(8349), + [anon_sym_in] = ACTIONS(8349), + [anon_sym_out] = ACTIONS(8349), + [anon_sym_inout] = ACTIONS(8349), + [anon_sym_bycopy] = ACTIONS(8349), + [anon_sym_byref] = ACTIONS(8349), + [anon_sym_oneway] = ACTIONS(8349), + [anon_sym__Nullable] = ACTIONS(8349), + [anon_sym__Nonnull] = ACTIONS(8349), + [anon_sym__Nullable_result] = ACTIONS(8349), + [anon_sym__Null_unspecified] = ACTIONS(8349), + [anon_sym___autoreleasing] = ACTIONS(8349), + [anon_sym___nullable] = ACTIONS(8349), + [anon_sym___nonnull] = ACTIONS(8349), + [anon_sym___strong] = ACTIONS(8349), + [anon_sym___weak] = ACTIONS(8349), + [anon_sym___bridge] = ACTIONS(8349), + [anon_sym___bridge_transfer] = ACTIONS(8349), + [anon_sym___bridge_retained] = ACTIONS(8349), + [anon_sym___unsafe_unretained] = ACTIONS(8349), + [anon_sym___block] = ACTIONS(8349), + [anon_sym___kindof] = ACTIONS(8349), + [anon_sym___unused] = ACTIONS(8349), + [anon_sym__Complex] = ACTIONS(8349), + [anon_sym___complex] = ACTIONS(8349), + [anon_sym_IBOutlet] = ACTIONS(8349), + [anon_sym_IBInspectable] = ACTIONS(8349), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8349), + [anon_sym_DASH_DASH] = ACTIONS(8347), + [anon_sym_PLUS_PLUS] = ACTIONS(8347), + [anon_sym_sizeof] = ACTIONS(8345), + [sym_number_literal] = ACTIONS(8347), + [anon_sym_L_SQUOTE] = ACTIONS(8347), + [anon_sym_u_SQUOTE] = ACTIONS(8347), + [anon_sym_U_SQUOTE] = ACTIONS(8347), + [anon_sym_u8_SQUOTE] = ACTIONS(8347), + [anon_sym_SQUOTE] = ACTIONS(8347), + [anon_sym_L_DQUOTE] = ACTIONS(8347), + [anon_sym_u_DQUOTE] = ACTIONS(8347), + [anon_sym_U_DQUOTE] = ACTIONS(8347), + [anon_sym_u8_DQUOTE] = ACTIONS(8347), + [anon_sym_DQUOTE] = ACTIONS(8347), + [sym_true] = ACTIONS(8345), + [sym_false] = ACTIONS(8345), + [sym_null] = ACTIONS(8345), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(8347), + [sym_self] = ACTIONS(8345), + [sym_super] = ACTIONS(8345), + [sym_nil] = ACTIONS(8345), + [anon_sym_ATselector] = ACTIONS(8347), + [anon_sym_ATencode] = ACTIONS(8347), + [anon_sym_AT] = ACTIONS(8345), + [sym_YES] = ACTIONS(8345), + [sym_NO] = ACTIONS(8345), + [anon_sym___builtin_available] = ACTIONS(8345), + [anon_sym_ATavailable] = ACTIONS(8347), + [anon_sym_va_arg] = ACTIONS(8345), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3415] = { + [sym_identifier] = ACTIONS(8352), + [anon_sym_COMMA] = ACTIONS(8354), + [anon_sym_RPAREN] = ACTIONS(8354), + [anon_sym_LPAREN2] = ACTIONS(8354), + [anon_sym_STAR] = ACTIONS(8354), + [anon_sym_SEMI] = ACTIONS(8354), + [anon_sym_extern] = ACTIONS(8352), + [anon_sym___attribute] = ACTIONS(8352), + [anon_sym___attribute__] = ACTIONS(8352), + [anon_sym___declspec] = ACTIONS(8352), + [anon_sym___based] = ACTIONS(8352), + [anon_sym_LBRACE] = ACTIONS(8354), + [anon_sym_LBRACK] = ACTIONS(8354), + [anon_sym_static] = ACTIONS(8352), + [anon_sym_auto] = ACTIONS(8352), + [anon_sym_register] = ACTIONS(8352), + [anon_sym_inline] = ACTIONS(8352), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8352), + [anon_sym_const] = ACTIONS(8352), + [anon_sym_volatile] = ACTIONS(8352), + [anon_sym_restrict] = ACTIONS(8352), + [anon_sym__Atomic] = ACTIONS(8352), + [anon_sym_in] = ACTIONS(8352), + [anon_sym_out] = ACTIONS(8352), + [anon_sym_inout] = ACTIONS(8352), + [anon_sym_bycopy] = ACTIONS(8352), + [anon_sym_byref] = ACTIONS(8352), + [anon_sym_oneway] = ACTIONS(8352), + [anon_sym__Nullable] = ACTIONS(8352), + [anon_sym__Nonnull] = ACTIONS(8352), + [anon_sym__Nullable_result] = ACTIONS(8352), + [anon_sym__Null_unspecified] = ACTIONS(8352), + [anon_sym___autoreleasing] = ACTIONS(8352), + [anon_sym___nullable] = ACTIONS(8352), + [anon_sym___nonnull] = ACTIONS(8352), + [anon_sym___strong] = ACTIONS(8352), + [anon_sym___weak] = ACTIONS(8352), + [anon_sym___bridge] = ACTIONS(8352), + [anon_sym___bridge_transfer] = ACTIONS(8352), + [anon_sym___bridge_retained] = ACTIONS(8352), + [anon_sym___unsafe_unretained] = ACTIONS(8352), + [anon_sym___block] = ACTIONS(8352), + [anon_sym___kindof] = ACTIONS(8352), + [anon_sym___unused] = ACTIONS(8352), + [anon_sym__Complex] = ACTIONS(8352), + [anon_sym___complex] = ACTIONS(8352), + [anon_sym_IBOutlet] = ACTIONS(8352), + [anon_sym_IBInspectable] = ACTIONS(8352), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8352), + [anon_sym_COLON] = ACTIONS(8354), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8352), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8352), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8352), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8352), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8352), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8352), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8352), + [anon_sym_NS_AVAILABLE] = ACTIONS(8352), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8352), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8352), + [anon_sym_API_AVAILABLE] = ACTIONS(8352), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8352), + [anon_sym_API_DEPRECATED] = ACTIONS(8352), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8352), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8352), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8352), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8352), + [anon_sym___deprecated_msg] = ACTIONS(8352), + [anon_sym___deprecated_enum_msg] = ACTIONS(8352), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8352), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8352), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8352), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8352), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3416] = { + [sym_attribute_specifier] = STATE(5409), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4239), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8356), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8358), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3417] = { + [sym_attribute_specifier] = STATE(5358), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4215), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8360), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8362), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3418] = { + [sym_attribute_specifier] = STATE(5460), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4254), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3416), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3416), + [sym_identifier] = ACTIONS(8325), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8364), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3419] = { + [sym_attribute_specifier] = STATE(5362), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4130), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3391), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3391), + [sym_identifier] = ACTIONS(8366), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8368), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3420] = { + [sym_identifier] = ACTIONS(8370), + [anon_sym_COMMA] = ACTIONS(8372), + [anon_sym_RPAREN] = ACTIONS(8372), + [anon_sym_LPAREN2] = ACTIONS(8372), + [anon_sym_STAR] = ACTIONS(8372), + [anon_sym_SEMI] = ACTIONS(8372), + [anon_sym_extern] = ACTIONS(8370), + [anon_sym___attribute] = ACTIONS(8370), + [anon_sym___attribute__] = ACTIONS(8370), + [anon_sym___declspec] = ACTIONS(8370), + [anon_sym___based] = ACTIONS(8370), + [anon_sym_LBRACE] = ACTIONS(8372), + [anon_sym_LBRACK] = ACTIONS(8372), + [anon_sym_static] = ACTIONS(8370), + [anon_sym_auto] = ACTIONS(8370), + [anon_sym_register] = ACTIONS(8370), + [anon_sym_inline] = ACTIONS(8370), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8370), + [anon_sym_const] = ACTIONS(8370), + [anon_sym_volatile] = ACTIONS(8370), + [anon_sym_restrict] = ACTIONS(8370), + [anon_sym__Atomic] = ACTIONS(8370), + [anon_sym_in] = ACTIONS(8370), + [anon_sym_out] = ACTIONS(8370), + [anon_sym_inout] = ACTIONS(8370), + [anon_sym_bycopy] = ACTIONS(8370), + [anon_sym_byref] = ACTIONS(8370), + [anon_sym_oneway] = ACTIONS(8370), + [anon_sym__Nullable] = ACTIONS(8370), + [anon_sym__Nonnull] = ACTIONS(8370), + [anon_sym__Nullable_result] = ACTIONS(8370), + [anon_sym__Null_unspecified] = ACTIONS(8370), + [anon_sym___autoreleasing] = ACTIONS(8370), + [anon_sym___nullable] = ACTIONS(8370), + [anon_sym___nonnull] = ACTIONS(8370), + [anon_sym___strong] = ACTIONS(8370), + [anon_sym___weak] = ACTIONS(8370), + [anon_sym___bridge] = ACTIONS(8370), + [anon_sym___bridge_transfer] = ACTIONS(8370), + [anon_sym___bridge_retained] = ACTIONS(8370), + [anon_sym___unsafe_unretained] = ACTIONS(8370), + [anon_sym___block] = ACTIONS(8370), + [anon_sym___kindof] = ACTIONS(8370), + [anon_sym___unused] = ACTIONS(8370), + [anon_sym__Complex] = ACTIONS(8370), + [anon_sym___complex] = ACTIONS(8370), + [anon_sym_IBOutlet] = ACTIONS(8370), + [anon_sym_IBInspectable] = ACTIONS(8370), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8370), + [anon_sym_COLON] = ACTIONS(8372), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8370), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8370), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8370), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8370), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8370), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8370), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8370), + [anon_sym_NS_AVAILABLE] = ACTIONS(8370), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8370), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8370), + [anon_sym_API_AVAILABLE] = ACTIONS(8370), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8370), + [anon_sym_API_DEPRECATED] = ACTIONS(8370), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8370), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8370), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8370), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8370), + [anon_sym___deprecated_msg] = ACTIONS(8370), + [anon_sym___deprecated_enum_msg] = ACTIONS(8370), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8370), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8370), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8370), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8370), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3421] = { + [sym_attribute_specifier] = STATE(5419), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4198), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8374), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8376), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3422] = { + [sym_attribute_specifier] = STATE(5419), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4198), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3436), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3436), + [sym_identifier] = ACTIONS(8374), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8378), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3423] = { + [sym_attribute_specifier] = STATE(5296), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4125), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8380), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8382), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3424] = { + [sym__expression] = STATE(4520), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym__dictionary_key_value_list] = STATE(5439), + [sym__dictionary_key_value_pair] = STATE(4977), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(8384), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3425] = { + [sym_attribute_specifier] = STATE(3484), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4271), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3485), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3485), + [sym_identifier] = ACTIONS(8386), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8388), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3426] = { + [sym_attribute_specifier] = STATE(3390), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4266), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3428), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3428), + [sym_identifier] = ACTIONS(8390), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8392), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3427] = { + [sym_attribute_specifier] = STATE(5296), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4125), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3399), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3399), + [sym_identifier] = ACTIONS(8380), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8394), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3428] = { + [sym_attribute_specifier] = STATE(5693), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4232), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8256), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8396), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3429] = { + [sym_identifier] = ACTIONS(8398), + [anon_sym_COMMA] = ACTIONS(8400), + [anon_sym_RPAREN] = ACTIONS(8400), + [anon_sym_LPAREN2] = ACTIONS(8400), + [anon_sym_STAR] = ACTIONS(8400), + [anon_sym_SEMI] = ACTIONS(8400), + [anon_sym_extern] = ACTIONS(8398), + [anon_sym___attribute] = ACTIONS(8398), + [anon_sym___attribute__] = ACTIONS(8398), + [anon_sym___declspec] = ACTIONS(8398), + [anon_sym___based] = ACTIONS(8398), + [anon_sym_LBRACE] = ACTIONS(8400), + [anon_sym_LBRACK] = ACTIONS(8400), + [anon_sym_static] = ACTIONS(8398), + [anon_sym_auto] = ACTIONS(8398), + [anon_sym_register] = ACTIONS(8398), + [anon_sym_inline] = ACTIONS(8398), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8398), + [anon_sym_const] = ACTIONS(8398), + [anon_sym_volatile] = ACTIONS(8398), + [anon_sym_restrict] = ACTIONS(8398), + [anon_sym__Atomic] = ACTIONS(8398), + [anon_sym_in] = ACTIONS(8398), + [anon_sym_out] = ACTIONS(8398), + [anon_sym_inout] = ACTIONS(8398), + [anon_sym_bycopy] = ACTIONS(8398), + [anon_sym_byref] = ACTIONS(8398), + [anon_sym_oneway] = ACTIONS(8398), + [anon_sym__Nullable] = ACTIONS(8398), + [anon_sym__Nonnull] = ACTIONS(8398), + [anon_sym__Nullable_result] = ACTIONS(8398), + [anon_sym__Null_unspecified] = ACTIONS(8398), + [anon_sym___autoreleasing] = ACTIONS(8398), + [anon_sym___nullable] = ACTIONS(8398), + [anon_sym___nonnull] = ACTIONS(8398), + [anon_sym___strong] = ACTIONS(8398), + [anon_sym___weak] = ACTIONS(8398), + [anon_sym___bridge] = ACTIONS(8398), + [anon_sym___bridge_transfer] = ACTIONS(8398), + [anon_sym___bridge_retained] = ACTIONS(8398), + [anon_sym___unsafe_unretained] = ACTIONS(8398), + [anon_sym___block] = ACTIONS(8398), + [anon_sym___kindof] = ACTIONS(8398), + [anon_sym___unused] = ACTIONS(8398), + [anon_sym__Complex] = ACTIONS(8398), + [anon_sym___complex] = ACTIONS(8398), + [anon_sym_IBOutlet] = ACTIONS(8398), + [anon_sym_IBInspectable] = ACTIONS(8398), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8398), + [anon_sym_COLON] = ACTIONS(8400), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8398), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8398), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8398), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8398), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8398), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8398), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8398), + [anon_sym_NS_AVAILABLE] = ACTIONS(8398), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8398), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8398), + [anon_sym_API_AVAILABLE] = ACTIONS(8398), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8398), + [anon_sym_API_DEPRECATED] = ACTIONS(8398), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8398), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8398), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8398), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8398), + [anon_sym___deprecated_msg] = ACTIONS(8398), + [anon_sym___deprecated_enum_msg] = ACTIONS(8398), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8398), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8398), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8398), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8398), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3430] = { + [sym_identifier] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8404), + [anon_sym_RPAREN] = ACTIONS(8404), + [anon_sym_LPAREN2] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8404), + [anon_sym_SEMI] = ACTIONS(8404), + [anon_sym_extern] = ACTIONS(8402), + [anon_sym___attribute] = ACTIONS(8402), + [anon_sym___attribute__] = ACTIONS(8402), + [anon_sym___declspec] = ACTIONS(8402), + [anon_sym___based] = ACTIONS(8402), + [anon_sym_LBRACE] = ACTIONS(8404), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_static] = ACTIONS(8402), + [anon_sym_auto] = ACTIONS(8402), + [anon_sym_register] = ACTIONS(8402), + [anon_sym_inline] = ACTIONS(8402), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8402), + [anon_sym_const] = ACTIONS(8402), + [anon_sym_volatile] = ACTIONS(8402), + [anon_sym_restrict] = ACTIONS(8402), + [anon_sym__Atomic] = ACTIONS(8402), + [anon_sym_in] = ACTIONS(8402), + [anon_sym_out] = ACTIONS(8402), + [anon_sym_inout] = ACTIONS(8402), + [anon_sym_bycopy] = ACTIONS(8402), + [anon_sym_byref] = ACTIONS(8402), + [anon_sym_oneway] = ACTIONS(8402), + [anon_sym__Nullable] = ACTIONS(8402), + [anon_sym__Nonnull] = ACTIONS(8402), + [anon_sym__Nullable_result] = ACTIONS(8402), + [anon_sym__Null_unspecified] = ACTIONS(8402), + [anon_sym___autoreleasing] = ACTIONS(8402), + [anon_sym___nullable] = ACTIONS(8402), + [anon_sym___nonnull] = ACTIONS(8402), + [anon_sym___strong] = ACTIONS(8402), + [anon_sym___weak] = ACTIONS(8402), + [anon_sym___bridge] = ACTIONS(8402), + [anon_sym___bridge_transfer] = ACTIONS(8402), + [anon_sym___bridge_retained] = ACTIONS(8402), + [anon_sym___unsafe_unretained] = ACTIONS(8402), + [anon_sym___block] = ACTIONS(8402), + [anon_sym___kindof] = ACTIONS(8402), + [anon_sym___unused] = ACTIONS(8402), + [anon_sym__Complex] = ACTIONS(8402), + [anon_sym___complex] = ACTIONS(8402), + [anon_sym_IBOutlet] = ACTIONS(8402), + [anon_sym_IBInspectable] = ACTIONS(8402), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8402), + [anon_sym_COLON] = ACTIONS(8404), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8402), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8402), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8402), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8402), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8402), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8402), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8402), + [anon_sym_NS_AVAILABLE] = ACTIONS(8402), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8402), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8402), + [anon_sym_API_AVAILABLE] = ACTIONS(8402), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8402), + [anon_sym_API_DEPRECATED] = ACTIONS(8402), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8402), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8402), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8402), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8402), + [anon_sym___deprecated_msg] = ACTIONS(8402), + [anon_sym___deprecated_enum_msg] = ACTIONS(8402), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8402), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8402), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8402), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8402), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3431] = { + [sym_attribute_specifier] = STATE(3460), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4188), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3461), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3461), + [sym_identifier] = ACTIONS(8406), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8408), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3432] = { + [sym_attribute_specifier] = STATE(3475), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4197), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3479), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3479), + [sym_identifier] = ACTIONS(8410), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3433] = { + [sym_attribute_specifier] = STATE(5362), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4130), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8366), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8414), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3434] = { + [sym_attribute_specifier] = STATE(5736), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4205), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8416), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8418), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -535524,81 +532028,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3435] = { - [sym_field_declaration_list] = STATE(3540), - [sym_identifier] = ACTIONS(8219), - [anon_sym_COMMA] = ACTIONS(8221), - [anon_sym_RPAREN] = ACTIONS(8221), - [anon_sym_LPAREN2] = ACTIONS(8221), - [anon_sym_STAR] = ACTIONS(8221), - [anon_sym_SEMI] = ACTIONS(8221), - [anon_sym_extern] = ACTIONS(8219), - [anon_sym___attribute] = ACTIONS(8219), - [anon_sym___attribute__] = ACTIONS(8219), - [anon_sym___declspec] = ACTIONS(8219), - [anon_sym___based] = ACTIONS(8219), - [anon_sym_LBRACE] = ACTIONS(8123), - [anon_sym_LBRACK] = ACTIONS(8221), - [anon_sym_static] = ACTIONS(8219), - [anon_sym_auto] = ACTIONS(8219), - [anon_sym_register] = ACTIONS(8219), - [anon_sym_inline] = ACTIONS(8219), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8219), - [anon_sym_const] = ACTIONS(8219), - [anon_sym_volatile] = ACTIONS(8219), - [anon_sym_restrict] = ACTIONS(8219), - [anon_sym__Atomic] = ACTIONS(8219), - [anon_sym_in] = ACTIONS(8219), - [anon_sym_out] = ACTIONS(8219), - [anon_sym_inout] = ACTIONS(8219), - [anon_sym_bycopy] = ACTIONS(8219), - [anon_sym_byref] = ACTIONS(8219), - [anon_sym_oneway] = ACTIONS(8219), - [anon_sym__Nullable] = ACTIONS(8219), - [anon_sym__Nonnull] = ACTIONS(8219), - [anon_sym__Nullable_result] = ACTIONS(8219), - [anon_sym__Null_unspecified] = ACTIONS(8219), - [anon_sym___autoreleasing] = ACTIONS(8219), - [anon_sym___nullable] = ACTIONS(8219), - [anon_sym___nonnull] = ACTIONS(8219), - [anon_sym___strong] = ACTIONS(8219), - [anon_sym___weak] = ACTIONS(8219), - [anon_sym___bridge] = ACTIONS(8219), - [anon_sym___bridge_transfer] = ACTIONS(8219), - [anon_sym___bridge_retained] = ACTIONS(8219), - [anon_sym___unsafe_unretained] = ACTIONS(8219), - [anon_sym___block] = ACTIONS(8219), - [anon_sym___kindof] = ACTIONS(8219), - [anon_sym___unused] = ACTIONS(8219), - [anon_sym__Complex] = ACTIONS(8219), - [anon_sym___complex] = ACTIONS(8219), - [anon_sym_IBOutlet] = ACTIONS(8219), - [anon_sym_IBInspectable] = ACTIONS(8219), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8219), - [anon_sym_COLON] = ACTIONS(8221), + [sym_attribute_specifier] = STATE(5506), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4249), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8420), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8422), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8219), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8219), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8219), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8219), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8219), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8219), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8219), - [anon_sym_NS_AVAILABLE] = ACTIONS(8219), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8219), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8219), - [anon_sym_API_AVAILABLE] = ACTIONS(8219), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8219), - [anon_sym_API_DEPRECATED] = ACTIONS(8219), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8219), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8219), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8219), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8219), - [anon_sym___deprecated_msg] = ACTIONS(8219), - [anon_sym___deprecated_enum_msg] = ACTIONS(8219), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8219), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8219), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8219), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8219), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -535607,81 +532110,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3436] = { - [sym_protocol_qualifiers] = STATE(3397), - [sym_generic_type_references] = STATE(3397), - [aux_sym_generic_type_specifier_repeat1] = STATE(3397), - [sym_identifier] = ACTIONS(6841), - [anon_sym_COMMA] = ACTIONS(8053), - [anon_sym_RPAREN] = ACTIONS(8265), - [anon_sym_LPAREN2] = ACTIONS(8268), - [anon_sym_STAR] = ACTIONS(8053), - [anon_sym_LT] = ACTIONS(8051), - [anon_sym_extern] = ACTIONS(6841), - [anon_sym___attribute] = ACTIONS(6841), - [anon_sym___attribute__] = ACTIONS(6841), - [anon_sym___declspec] = ACTIONS(6841), - [anon_sym___based] = ACTIONS(6841), - [anon_sym_LBRACK] = ACTIONS(8265), - [anon_sym_static] = ACTIONS(6841), - [anon_sym_auto] = ACTIONS(6841), - [anon_sym_register] = ACTIONS(6841), - [anon_sym_inline] = ACTIONS(6841), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6841), - [anon_sym_const] = ACTIONS(6841), - [anon_sym_volatile] = ACTIONS(6841), - [anon_sym_restrict] = ACTIONS(6841), - [anon_sym__Atomic] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6841), - [anon_sym_out] = ACTIONS(6841), - [anon_sym_inout] = ACTIONS(6841), - [anon_sym_bycopy] = ACTIONS(6841), - [anon_sym_byref] = ACTIONS(6841), - [anon_sym_oneway] = ACTIONS(6841), - [anon_sym__Nullable] = ACTIONS(6841), - [anon_sym__Nonnull] = ACTIONS(6841), - [anon_sym__Nullable_result] = ACTIONS(6841), - [anon_sym__Null_unspecified] = ACTIONS(6841), - [anon_sym___autoreleasing] = ACTIONS(6841), - [anon_sym___nullable] = ACTIONS(6841), - [anon_sym___nonnull] = ACTIONS(6841), - [anon_sym___strong] = ACTIONS(6841), - [anon_sym___weak] = ACTIONS(6841), - [anon_sym___bridge] = ACTIONS(6841), - [anon_sym___bridge_transfer] = ACTIONS(6841), - [anon_sym___bridge_retained] = ACTIONS(6841), - [anon_sym___unsafe_unretained] = ACTIONS(6841), - [anon_sym___block] = ACTIONS(6841), - [anon_sym___kindof] = ACTIONS(6841), - [anon_sym___unused] = ACTIONS(6841), - [anon_sym__Complex] = ACTIONS(6841), - [anon_sym___complex] = ACTIONS(6841), - [anon_sym_IBOutlet] = ACTIONS(6841), - [anon_sym_IBInspectable] = ACTIONS(6841), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6841), + [sym_attribute_specifier] = STATE(5462), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4253), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8424), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8426), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6841), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6841), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE] = ACTIONS(6841), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_API_AVAILABLE] = ACTIONS(6841), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_API_DEPRECATED] = ACTIONS(6841), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6841), - [anon_sym___deprecated_msg] = ACTIONS(6841), - [anon_sym___deprecated_enum_msg] = ACTIONS(6841), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6841), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -535690,81 +532192,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3437] = { - [sym_field_declaration_list] = STATE(3535), - [sym_identifier] = ACTIONS(8233), - [anon_sym_COMMA] = ACTIONS(8235), - [anon_sym_RPAREN] = ACTIONS(8235), - [anon_sym_LPAREN2] = ACTIONS(8235), - [anon_sym_STAR] = ACTIONS(8235), - [anon_sym_SEMI] = ACTIONS(8235), - [anon_sym_extern] = ACTIONS(8233), - [anon_sym___attribute] = ACTIONS(8233), - [anon_sym___attribute__] = ACTIONS(8233), - [anon_sym___declspec] = ACTIONS(8233), - [anon_sym___based] = ACTIONS(8233), - [anon_sym_LBRACE] = ACTIONS(8123), - [anon_sym_LBRACK] = ACTIONS(8235), - [anon_sym_static] = ACTIONS(8233), - [anon_sym_auto] = ACTIONS(8233), - [anon_sym_register] = ACTIONS(8233), - [anon_sym_inline] = ACTIONS(8233), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8233), - [anon_sym_const] = ACTIONS(8233), - [anon_sym_volatile] = ACTIONS(8233), - [anon_sym_restrict] = ACTIONS(8233), - [anon_sym__Atomic] = ACTIONS(8233), - [anon_sym_in] = ACTIONS(8233), - [anon_sym_out] = ACTIONS(8233), - [anon_sym_inout] = ACTIONS(8233), - [anon_sym_bycopy] = ACTIONS(8233), - [anon_sym_byref] = ACTIONS(8233), - [anon_sym_oneway] = ACTIONS(8233), - [anon_sym__Nullable] = ACTIONS(8233), - [anon_sym__Nonnull] = ACTIONS(8233), - [anon_sym__Nullable_result] = ACTIONS(8233), - [anon_sym__Null_unspecified] = ACTIONS(8233), - [anon_sym___autoreleasing] = ACTIONS(8233), - [anon_sym___nullable] = ACTIONS(8233), - [anon_sym___nonnull] = ACTIONS(8233), - [anon_sym___strong] = ACTIONS(8233), - [anon_sym___weak] = ACTIONS(8233), - [anon_sym___bridge] = ACTIONS(8233), - [anon_sym___bridge_transfer] = ACTIONS(8233), - [anon_sym___bridge_retained] = ACTIONS(8233), - [anon_sym___unsafe_unretained] = ACTIONS(8233), - [anon_sym___block] = ACTIONS(8233), - [anon_sym___kindof] = ACTIONS(8233), - [anon_sym___unused] = ACTIONS(8233), - [anon_sym__Complex] = ACTIONS(8233), - [anon_sym___complex] = ACTIONS(8233), - [anon_sym_IBOutlet] = ACTIONS(8233), - [anon_sym_IBInspectable] = ACTIONS(8233), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8233), - [anon_sym_COLON] = ACTIONS(8235), + [sym_attribute_specifier] = STATE(5359), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4246), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3457), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3457), + [sym_identifier] = ACTIONS(8428), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8430), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8233), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8233), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8233), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8233), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8233), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8233), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8233), - [anon_sym_NS_AVAILABLE] = ACTIONS(8233), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8233), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8233), - [anon_sym_API_AVAILABLE] = ACTIONS(8233), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8233), - [anon_sym_API_DEPRECATED] = ACTIONS(8233), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8233), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8233), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8233), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8233), - [anon_sym___deprecated_msg] = ACTIONS(8233), - [anon_sym___deprecated_enum_msg] = ACTIONS(8233), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8233), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8233), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8233), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8233), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -535773,81 +532274,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3438] = { - [sym_identifier] = ACTIONS(6790), - [anon_sym_COMMA] = ACTIONS(6792), - [anon_sym_RPAREN] = ACTIONS(6792), - [anon_sym_LPAREN2] = ACTIONS(6792), - [anon_sym_STAR] = ACTIONS(6792), - [anon_sym_LT] = ACTIONS(6792), - [anon_sym_SEMI] = ACTIONS(6792), - [anon_sym_extern] = ACTIONS(6790), - [anon_sym___attribute] = ACTIONS(6790), - [anon_sym___attribute__] = ACTIONS(6790), - [anon_sym___declspec] = ACTIONS(6790), - [anon_sym___based] = ACTIONS(6790), - [anon_sym_LBRACE] = ACTIONS(6792), - [anon_sym_LBRACK] = ACTIONS(6792), - [anon_sym_static] = ACTIONS(6790), - [anon_sym_auto] = ACTIONS(6790), - [anon_sym_register] = ACTIONS(6790), - [anon_sym_inline] = ACTIONS(6790), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6790), - [anon_sym_const] = ACTIONS(6790), - [anon_sym_volatile] = ACTIONS(6790), - [anon_sym_restrict] = ACTIONS(6790), - [anon_sym__Atomic] = ACTIONS(6790), - [anon_sym_in] = ACTIONS(6790), - [anon_sym_out] = ACTIONS(6790), - [anon_sym_inout] = ACTIONS(6790), - [anon_sym_bycopy] = ACTIONS(6790), - [anon_sym_byref] = ACTIONS(6790), - [anon_sym_oneway] = ACTIONS(6790), - [anon_sym__Nullable] = ACTIONS(6790), - [anon_sym__Nonnull] = ACTIONS(6790), - [anon_sym__Nullable_result] = ACTIONS(6790), - [anon_sym__Null_unspecified] = ACTIONS(6790), - [anon_sym___autoreleasing] = ACTIONS(6790), - [anon_sym___nullable] = ACTIONS(6790), - [anon_sym___nonnull] = ACTIONS(6790), - [anon_sym___strong] = ACTIONS(6790), - [anon_sym___weak] = ACTIONS(6790), - [anon_sym___bridge] = ACTIONS(6790), - [anon_sym___bridge_transfer] = ACTIONS(6790), - [anon_sym___bridge_retained] = ACTIONS(6790), - [anon_sym___unsafe_unretained] = ACTIONS(6790), - [anon_sym___block] = ACTIONS(6790), - [anon_sym___kindof] = ACTIONS(6790), - [anon_sym___unused] = ACTIONS(6790), - [anon_sym__Complex] = ACTIONS(6790), - [anon_sym___complex] = ACTIONS(6790), - [anon_sym_IBOutlet] = ACTIONS(6790), - [anon_sym_IBInspectable] = ACTIONS(6790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6790), - [anon_sym_COLON] = ACTIONS(6792), + [sym_attribute_specifier] = STATE(5416), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4262), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8432), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8434), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6790), - [anon_sym_NS_AVAILABLE] = ACTIONS(6790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6790), - [anon_sym_API_AVAILABLE] = ACTIONS(6790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6790), - [anon_sym_API_DEPRECATED] = ACTIONS(6790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6790), - [anon_sym___deprecated_msg] = ACTIONS(6790), - [anon_sym___deprecated_enum_msg] = ACTIONS(6790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6790), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -535856,81 +532356,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3439] = { - [sym_identifier] = ACTIONS(6874), - [anon_sym_COMMA] = ACTIONS(6876), - [anon_sym_RPAREN] = ACTIONS(6876), - [anon_sym_LPAREN2] = ACTIONS(6876), - [anon_sym_STAR] = ACTIONS(6876), - [anon_sym_LT] = ACTIONS(6876), - [anon_sym_SEMI] = ACTIONS(6876), - [anon_sym_extern] = ACTIONS(6874), - [anon_sym___attribute] = ACTIONS(6874), - [anon_sym___attribute__] = ACTIONS(6874), - [anon_sym___declspec] = ACTIONS(6874), - [anon_sym___based] = ACTIONS(6874), - [anon_sym_LBRACE] = ACTIONS(6876), - [anon_sym_LBRACK] = ACTIONS(6876), - [anon_sym_static] = ACTIONS(6874), - [anon_sym_auto] = ACTIONS(6874), - [anon_sym_register] = ACTIONS(6874), - [anon_sym_inline] = ACTIONS(6874), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6874), - [anon_sym_const] = ACTIONS(6874), - [anon_sym_volatile] = ACTIONS(6874), - [anon_sym_restrict] = ACTIONS(6874), - [anon_sym__Atomic] = ACTIONS(6874), - [anon_sym_in] = ACTIONS(6874), - [anon_sym_out] = ACTIONS(6874), - [anon_sym_inout] = ACTIONS(6874), - [anon_sym_bycopy] = ACTIONS(6874), - [anon_sym_byref] = ACTIONS(6874), - [anon_sym_oneway] = ACTIONS(6874), - [anon_sym__Nullable] = ACTIONS(6874), - [anon_sym__Nonnull] = ACTIONS(6874), - [anon_sym__Nullable_result] = ACTIONS(6874), - [anon_sym__Null_unspecified] = ACTIONS(6874), - [anon_sym___autoreleasing] = ACTIONS(6874), - [anon_sym___nullable] = ACTIONS(6874), - [anon_sym___nonnull] = ACTIONS(6874), - [anon_sym___strong] = ACTIONS(6874), - [anon_sym___weak] = ACTIONS(6874), - [anon_sym___bridge] = ACTIONS(6874), - [anon_sym___bridge_transfer] = ACTIONS(6874), - [anon_sym___bridge_retained] = ACTIONS(6874), - [anon_sym___unsafe_unretained] = ACTIONS(6874), - [anon_sym___block] = ACTIONS(6874), - [anon_sym___kindof] = ACTIONS(6874), - [anon_sym___unused] = ACTIONS(6874), - [anon_sym__Complex] = ACTIONS(6874), - [anon_sym___complex] = ACTIONS(6874), - [anon_sym_IBOutlet] = ACTIONS(6874), - [anon_sym_IBInspectable] = ACTIONS(6874), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6874), - [anon_sym_COLON] = ACTIONS(6876), + [sym_attribute_specifier] = STATE(5359), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4246), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8428), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8436), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6874), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6874), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6874), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6874), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6874), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6874), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6874), - [anon_sym_NS_AVAILABLE] = ACTIONS(6874), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6874), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6874), - [anon_sym_API_AVAILABLE] = ACTIONS(6874), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6874), - [anon_sym_API_DEPRECATED] = ACTIONS(6874), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6874), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6874), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6874), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6874), - [anon_sym___deprecated_msg] = ACTIONS(6874), - [anon_sym___deprecated_enum_msg] = ACTIONS(6874), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6874), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6874), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6874), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6874), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -535939,81 +532438,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3440] = { - [sym_identifier] = ACTIONS(6882), - [anon_sym_COMMA] = ACTIONS(6884), - [anon_sym_RPAREN] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_STAR] = ACTIONS(6884), - [anon_sym_LT] = ACTIONS(6884), - [anon_sym_SEMI] = ACTIONS(6884), - [anon_sym_extern] = ACTIONS(6882), - [anon_sym___attribute] = ACTIONS(6882), - [anon_sym___attribute__] = ACTIONS(6882), - [anon_sym___declspec] = ACTIONS(6882), - [anon_sym___based] = ACTIONS(6882), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_static] = ACTIONS(6882), - [anon_sym_auto] = ACTIONS(6882), - [anon_sym_register] = ACTIONS(6882), - [anon_sym_inline] = ACTIONS(6882), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6882), - [anon_sym_const] = ACTIONS(6882), - [anon_sym_volatile] = ACTIONS(6882), - [anon_sym_restrict] = ACTIONS(6882), - [anon_sym__Atomic] = ACTIONS(6882), - [anon_sym_in] = ACTIONS(6882), - [anon_sym_out] = ACTIONS(6882), - [anon_sym_inout] = ACTIONS(6882), - [anon_sym_bycopy] = ACTIONS(6882), - [anon_sym_byref] = ACTIONS(6882), - [anon_sym_oneway] = ACTIONS(6882), - [anon_sym__Nullable] = ACTIONS(6882), - [anon_sym__Nonnull] = ACTIONS(6882), - [anon_sym__Nullable_result] = ACTIONS(6882), - [anon_sym__Null_unspecified] = ACTIONS(6882), - [anon_sym___autoreleasing] = ACTIONS(6882), - [anon_sym___nullable] = ACTIONS(6882), - [anon_sym___nonnull] = ACTIONS(6882), - [anon_sym___strong] = ACTIONS(6882), - [anon_sym___weak] = ACTIONS(6882), - [anon_sym___bridge] = ACTIONS(6882), - [anon_sym___bridge_transfer] = ACTIONS(6882), - [anon_sym___bridge_retained] = ACTIONS(6882), - [anon_sym___unsafe_unretained] = ACTIONS(6882), - [anon_sym___block] = ACTIONS(6882), - [anon_sym___kindof] = ACTIONS(6882), - [anon_sym___unused] = ACTIONS(6882), - [anon_sym__Complex] = ACTIONS(6882), - [anon_sym___complex] = ACTIONS(6882), - [anon_sym_IBOutlet] = ACTIONS(6882), - [anon_sym_IBInspectable] = ACTIONS(6882), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6882), - [anon_sym_COLON] = ACTIONS(6884), + [sym_attribute_specifier] = STATE(3437), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4121), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3439), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3439), + [sym_identifier] = ACTIONS(8438), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8440), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6882), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6882), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6882), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6882), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6882), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6882), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6882), - [anon_sym_NS_AVAILABLE] = ACTIONS(6882), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6882), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6882), - [anon_sym_API_AVAILABLE] = ACTIONS(6882), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6882), - [anon_sym_API_DEPRECATED] = ACTIONS(6882), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6882), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6882), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6882), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6882), - [anon_sym___deprecated_msg] = ACTIONS(6882), - [anon_sym___deprecated_enum_msg] = ACTIONS(6882), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6882), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6882), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6882), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6882), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -536022,81 +532520,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3441] = { - [sym_field_declaration_list] = STATE(3488), - [sym_identifier] = ACTIONS(8258), - [anon_sym_COMMA] = ACTIONS(8260), - [anon_sym_RPAREN] = ACTIONS(8260), - [anon_sym_LPAREN2] = ACTIONS(8260), - [anon_sym_STAR] = ACTIONS(8260), - [anon_sym_SEMI] = ACTIONS(8260), - [anon_sym_extern] = ACTIONS(8258), - [anon_sym___attribute] = ACTIONS(8258), - [anon_sym___attribute__] = ACTIONS(8258), - [anon_sym___declspec] = ACTIONS(8258), - [anon_sym___based] = ACTIONS(8258), - [anon_sym_LBRACE] = ACTIONS(8123), - [anon_sym_LBRACK] = ACTIONS(8260), - [anon_sym_static] = ACTIONS(8258), - [anon_sym_auto] = ACTIONS(8258), - [anon_sym_register] = ACTIONS(8258), - [anon_sym_inline] = ACTIONS(8258), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8258), - [anon_sym_const] = ACTIONS(8258), - [anon_sym_volatile] = ACTIONS(8258), - [anon_sym_restrict] = ACTIONS(8258), - [anon_sym__Atomic] = ACTIONS(8258), - [anon_sym_in] = ACTIONS(8258), - [anon_sym_out] = ACTIONS(8258), - [anon_sym_inout] = ACTIONS(8258), - [anon_sym_bycopy] = ACTIONS(8258), - [anon_sym_byref] = ACTIONS(8258), - [anon_sym_oneway] = ACTIONS(8258), - [anon_sym__Nullable] = ACTIONS(8258), - [anon_sym__Nonnull] = ACTIONS(8258), - [anon_sym__Nullable_result] = ACTIONS(8258), - [anon_sym__Null_unspecified] = ACTIONS(8258), - [anon_sym___autoreleasing] = ACTIONS(8258), - [anon_sym___nullable] = ACTIONS(8258), - [anon_sym___nonnull] = ACTIONS(8258), - [anon_sym___strong] = ACTIONS(8258), - [anon_sym___weak] = ACTIONS(8258), - [anon_sym___bridge] = ACTIONS(8258), - [anon_sym___bridge_transfer] = ACTIONS(8258), - [anon_sym___bridge_retained] = ACTIONS(8258), - [anon_sym___unsafe_unretained] = ACTIONS(8258), - [anon_sym___block] = ACTIONS(8258), - [anon_sym___kindof] = ACTIONS(8258), - [anon_sym___unused] = ACTIONS(8258), - [anon_sym__Complex] = ACTIONS(8258), - [anon_sym___complex] = ACTIONS(8258), - [anon_sym_IBOutlet] = ACTIONS(8258), - [anon_sym_IBInspectable] = ACTIONS(8258), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8258), - [anon_sym_COLON] = ACTIONS(8260), + [sym_attribute_specifier] = STATE(5284), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4199), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3481), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3481), + [sym_identifier] = ACTIONS(8442), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8444), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8258), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8258), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8258), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8258), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8258), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8258), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8258), - [anon_sym_NS_AVAILABLE] = ACTIONS(8258), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8258), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8258), - [anon_sym_API_AVAILABLE] = ACTIONS(8258), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8258), - [anon_sym_API_DEPRECATED] = ACTIONS(8258), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8258), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8258), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8258), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8258), - [anon_sym___deprecated_msg] = ACTIONS(8258), - [anon_sym___deprecated_enum_msg] = ACTIONS(8258), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8258), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8258), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8258), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8258), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -536105,81 +532602,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3442] = { - [sym_enumerator_list] = STATE(3530), - [sym_identifier] = ACTIONS(8226), - [anon_sym_COMMA] = ACTIONS(8228), - [anon_sym_RPAREN] = ACTIONS(8228), - [anon_sym_LPAREN2] = ACTIONS(8228), - [anon_sym_STAR] = ACTIONS(8228), - [anon_sym_SEMI] = ACTIONS(8228), - [anon_sym_extern] = ACTIONS(8226), - [anon_sym___attribute] = ACTIONS(8226), - [anon_sym___attribute__] = ACTIONS(8226), - [anon_sym___declspec] = ACTIONS(8226), - [anon_sym___based] = ACTIONS(8226), - [anon_sym_LBRACE] = ACTIONS(8181), - [anon_sym_LBRACK] = ACTIONS(8228), - [anon_sym_static] = ACTIONS(8226), - [anon_sym_auto] = ACTIONS(8226), - [anon_sym_register] = ACTIONS(8226), - [anon_sym_inline] = ACTIONS(8226), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8226), - [anon_sym_const] = ACTIONS(8226), - [anon_sym_volatile] = ACTIONS(8226), - [anon_sym_restrict] = ACTIONS(8226), - [anon_sym__Atomic] = ACTIONS(8226), - [anon_sym_in] = ACTIONS(8226), - [anon_sym_out] = ACTIONS(8226), - [anon_sym_inout] = ACTIONS(8226), - [anon_sym_bycopy] = ACTIONS(8226), - [anon_sym_byref] = ACTIONS(8226), - [anon_sym_oneway] = ACTIONS(8226), - [anon_sym__Nullable] = ACTIONS(8226), - [anon_sym__Nonnull] = ACTIONS(8226), - [anon_sym__Nullable_result] = ACTIONS(8226), - [anon_sym__Null_unspecified] = ACTIONS(8226), - [anon_sym___autoreleasing] = ACTIONS(8226), - [anon_sym___nullable] = ACTIONS(8226), - [anon_sym___nonnull] = ACTIONS(8226), - [anon_sym___strong] = ACTIONS(8226), - [anon_sym___weak] = ACTIONS(8226), - [anon_sym___bridge] = ACTIONS(8226), - [anon_sym___bridge_transfer] = ACTIONS(8226), - [anon_sym___bridge_retained] = ACTIONS(8226), - [anon_sym___unsafe_unretained] = ACTIONS(8226), - [anon_sym___block] = ACTIONS(8226), - [anon_sym___kindof] = ACTIONS(8226), - [anon_sym___unused] = ACTIONS(8226), - [anon_sym__Complex] = ACTIONS(8226), - [anon_sym___complex] = ACTIONS(8226), - [anon_sym_IBOutlet] = ACTIONS(8226), - [anon_sym_IBInspectable] = ACTIONS(8226), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8226), - [anon_sym_COLON] = ACTIONS(8228), + [sym_attribute_specifier] = STATE(5284), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4199), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8442), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8446), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8226), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8226), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8226), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8226), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8226), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8226), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8226), - [anon_sym_NS_AVAILABLE] = ACTIONS(8226), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8226), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8226), - [anon_sym_API_AVAILABLE] = ACTIONS(8226), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8226), - [anon_sym_API_DEPRECATED] = ACTIONS(8226), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8226), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8226), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8226), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8226), - [anon_sym___deprecated_msg] = ACTIONS(8226), - [anon_sym___deprecated_enum_msg] = ACTIONS(8226), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8226), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8226), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8226), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8226), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -536188,81 +532684,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3443] = { - [sym_identifier] = ACTIONS(7356), - [anon_sym_COMMA] = ACTIONS(7358), - [anon_sym_RPAREN] = ACTIONS(7358), - [anon_sym_LPAREN2] = ACTIONS(7358), - [anon_sym_STAR] = ACTIONS(7358), - [anon_sym_LT] = ACTIONS(7358), - [anon_sym_SEMI] = ACTIONS(7358), - [anon_sym_extern] = ACTIONS(7356), - [anon_sym___attribute] = ACTIONS(7356), - [anon_sym___attribute__] = ACTIONS(7356), - [anon_sym___declspec] = ACTIONS(7356), - [anon_sym___based] = ACTIONS(7356), - [anon_sym_LBRACE] = ACTIONS(7358), - [anon_sym_LBRACK] = ACTIONS(7358), - [anon_sym_static] = ACTIONS(7356), - [anon_sym_auto] = ACTIONS(7356), - [anon_sym_register] = ACTIONS(7356), - [anon_sym_inline] = ACTIONS(7356), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7356), - [anon_sym_const] = ACTIONS(7356), - [anon_sym_volatile] = ACTIONS(7356), - [anon_sym_restrict] = ACTIONS(7356), - [anon_sym__Atomic] = ACTIONS(7356), - [anon_sym_in] = ACTIONS(7356), - [anon_sym_out] = ACTIONS(7356), - [anon_sym_inout] = ACTIONS(7356), - [anon_sym_bycopy] = ACTIONS(7356), - [anon_sym_byref] = ACTIONS(7356), - [anon_sym_oneway] = ACTIONS(7356), - [anon_sym__Nullable] = ACTIONS(7356), - [anon_sym__Nonnull] = ACTIONS(7356), - [anon_sym__Nullable_result] = ACTIONS(7356), - [anon_sym__Null_unspecified] = ACTIONS(7356), - [anon_sym___autoreleasing] = ACTIONS(7356), - [anon_sym___nullable] = ACTIONS(7356), - [anon_sym___nonnull] = ACTIONS(7356), - [anon_sym___strong] = ACTIONS(7356), - [anon_sym___weak] = ACTIONS(7356), - [anon_sym___bridge] = ACTIONS(7356), - [anon_sym___bridge_transfer] = ACTIONS(7356), - [anon_sym___bridge_retained] = ACTIONS(7356), - [anon_sym___unsafe_unretained] = ACTIONS(7356), - [anon_sym___block] = ACTIONS(7356), - [anon_sym___kindof] = ACTIONS(7356), - [anon_sym___unused] = ACTIONS(7356), - [anon_sym__Complex] = ACTIONS(7356), - [anon_sym___complex] = ACTIONS(7356), - [anon_sym_IBOutlet] = ACTIONS(7356), - [anon_sym_IBInspectable] = ACTIONS(7356), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7356), - [anon_sym_COLON] = ACTIONS(7358), + [sym_attribute_specifier] = STATE(3469), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4200), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3478), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3478), + [sym_identifier] = ACTIONS(8448), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8450), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7356), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7356), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7356), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7356), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7356), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7356), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7356), - [anon_sym_NS_AVAILABLE] = ACTIONS(7356), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7356), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7356), - [anon_sym_API_AVAILABLE] = ACTIONS(7356), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7356), - [anon_sym_API_DEPRECATED] = ACTIONS(7356), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7356), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7356), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7356), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7356), - [anon_sym___deprecated_msg] = ACTIONS(7356), - [anon_sym___deprecated_enum_msg] = ACTIONS(7356), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7356), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7356), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7356), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7356), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -536271,81 +532766,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3444] = { - [sym_enumerator_list] = STATE(3522), - [sym_identifier] = ACTIONS(8240), - [anon_sym_COMMA] = ACTIONS(8242), - [anon_sym_RPAREN] = ACTIONS(8242), - [anon_sym_LPAREN2] = ACTIONS(8242), - [anon_sym_STAR] = ACTIONS(8242), - [anon_sym_SEMI] = ACTIONS(8242), - [anon_sym_extern] = ACTIONS(8240), - [anon_sym___attribute] = ACTIONS(8240), - [anon_sym___attribute__] = ACTIONS(8240), - [anon_sym___declspec] = ACTIONS(8240), - [anon_sym___based] = ACTIONS(8240), - [anon_sym_LBRACE] = ACTIONS(8272), - [anon_sym_LBRACK] = ACTIONS(8242), - [anon_sym_static] = ACTIONS(8240), - [anon_sym_auto] = ACTIONS(8240), - [anon_sym_register] = ACTIONS(8240), - [anon_sym_inline] = ACTIONS(8240), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8240), - [anon_sym_const] = ACTIONS(8240), - [anon_sym_volatile] = ACTIONS(8240), - [anon_sym_restrict] = ACTIONS(8240), - [anon_sym__Atomic] = ACTIONS(8240), - [anon_sym_in] = ACTIONS(8240), - [anon_sym_out] = ACTIONS(8240), - [anon_sym_inout] = ACTIONS(8240), - [anon_sym_bycopy] = ACTIONS(8240), - [anon_sym_byref] = ACTIONS(8240), - [anon_sym_oneway] = ACTIONS(8240), - [anon_sym__Nullable] = ACTIONS(8240), - [anon_sym__Nonnull] = ACTIONS(8240), - [anon_sym__Nullable_result] = ACTIONS(8240), - [anon_sym__Null_unspecified] = ACTIONS(8240), - [anon_sym___autoreleasing] = ACTIONS(8240), - [anon_sym___nullable] = ACTIONS(8240), - [anon_sym___nonnull] = ACTIONS(8240), - [anon_sym___strong] = ACTIONS(8240), - [anon_sym___weak] = ACTIONS(8240), - [anon_sym___bridge] = ACTIONS(8240), - [anon_sym___bridge_transfer] = ACTIONS(8240), - [anon_sym___bridge_retained] = ACTIONS(8240), - [anon_sym___unsafe_unretained] = ACTIONS(8240), - [anon_sym___block] = ACTIONS(8240), - [anon_sym___kindof] = ACTIONS(8240), - [anon_sym___unused] = ACTIONS(8240), - [anon_sym__Complex] = ACTIONS(8240), - [anon_sym___complex] = ACTIONS(8240), - [anon_sym_IBOutlet] = ACTIONS(8240), - [anon_sym_IBInspectable] = ACTIONS(8240), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8240), - [anon_sym_COLON] = ACTIONS(8275), + [sym__expression] = STATE(4520), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym__dictionary_key_value_list] = STATE(5698), + [sym__dictionary_key_value_pair] = STATE(4977), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(8452), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8240), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8240), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8240), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8240), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8240), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8240), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8240), - [anon_sym_NS_AVAILABLE] = ACTIONS(8240), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8240), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_API_AVAILABLE] = ACTIONS(8240), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8240), - [anon_sym_API_DEPRECATED] = ACTIONS(8240), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8240), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8240), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8240), - [anon_sym___deprecated_msg] = ACTIONS(8240), - [anon_sym___deprecated_enum_msg] = ACTIONS(8240), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8240), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8240), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -536354,81 +532848,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3445] = { - [sym_identifier] = ACTIONS(7330), - [anon_sym_COMMA] = ACTIONS(7332), - [anon_sym_RPAREN] = ACTIONS(7332), - [anon_sym_LPAREN2] = ACTIONS(7332), - [anon_sym_STAR] = ACTIONS(7332), - [anon_sym_LT] = ACTIONS(7332), - [anon_sym_SEMI] = ACTIONS(7332), - [anon_sym_extern] = ACTIONS(7330), - [anon_sym___attribute] = ACTIONS(7330), - [anon_sym___attribute__] = ACTIONS(7330), - [anon_sym___declspec] = ACTIONS(7330), - [anon_sym___based] = ACTIONS(7330), - [anon_sym_LBRACE] = ACTIONS(7332), - [anon_sym_LBRACK] = ACTIONS(7332), - [anon_sym_static] = ACTIONS(7330), - [anon_sym_auto] = ACTIONS(7330), - [anon_sym_register] = ACTIONS(7330), - [anon_sym_inline] = ACTIONS(7330), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7330), - [anon_sym_const] = ACTIONS(7330), - [anon_sym_volatile] = ACTIONS(7330), - [anon_sym_restrict] = ACTIONS(7330), - [anon_sym__Atomic] = ACTIONS(7330), - [anon_sym_in] = ACTIONS(7330), - [anon_sym_out] = ACTIONS(7330), - [anon_sym_inout] = ACTIONS(7330), - [anon_sym_bycopy] = ACTIONS(7330), - [anon_sym_byref] = ACTIONS(7330), - [anon_sym_oneway] = ACTIONS(7330), - [anon_sym__Nullable] = ACTIONS(7330), - [anon_sym__Nonnull] = ACTIONS(7330), - [anon_sym__Nullable_result] = ACTIONS(7330), - [anon_sym__Null_unspecified] = ACTIONS(7330), - [anon_sym___autoreleasing] = ACTIONS(7330), - [anon_sym___nullable] = ACTIONS(7330), - [anon_sym___nonnull] = ACTIONS(7330), - [anon_sym___strong] = ACTIONS(7330), - [anon_sym___weak] = ACTIONS(7330), - [anon_sym___bridge] = ACTIONS(7330), - [anon_sym___bridge_transfer] = ACTIONS(7330), - [anon_sym___bridge_retained] = ACTIONS(7330), - [anon_sym___unsafe_unretained] = ACTIONS(7330), - [anon_sym___block] = ACTIONS(7330), - [anon_sym___kindof] = ACTIONS(7330), - [anon_sym___unused] = ACTIONS(7330), - [anon_sym__Complex] = ACTIONS(7330), - [anon_sym___complex] = ACTIONS(7330), - [anon_sym_IBOutlet] = ACTIONS(7330), - [anon_sym_IBInspectable] = ACTIONS(7330), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7330), - [anon_sym_COLON] = ACTIONS(7332), + [sym_attribute_specifier] = STATE(3441), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4245), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3442), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3442), + [sym_identifier] = ACTIONS(8454), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8456), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7330), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7330), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7330), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7330), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7330), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7330), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7330), - [anon_sym_NS_AVAILABLE] = ACTIONS(7330), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7330), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7330), - [anon_sym_API_AVAILABLE] = ACTIONS(7330), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7330), - [anon_sym_API_DEPRECATED] = ACTIONS(7330), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7330), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7330), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7330), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7330), - [anon_sym___deprecated_msg] = ACTIONS(7330), - [anon_sym___deprecated_enum_msg] = ACTIONS(7330), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7330), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7330), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7330), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7330), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -536437,80 +532930,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3446] = { - [sym_attribute_specifier] = STATE(5430), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4141), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8277), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8283), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_identifier] = ACTIONS(8458), + [anon_sym_COMMA] = ACTIONS(8460), + [anon_sym_RPAREN] = ACTIONS(8460), + [anon_sym_LPAREN2] = ACTIONS(8460), + [anon_sym_STAR] = ACTIONS(8460), + [anon_sym_SEMI] = ACTIONS(8460), + [anon_sym_extern] = ACTIONS(8458), + [anon_sym___attribute] = ACTIONS(8458), + [anon_sym___attribute__] = ACTIONS(8458), + [anon_sym___declspec] = ACTIONS(8458), + [anon_sym___based] = ACTIONS(8458), + [anon_sym_LBRACE] = ACTIONS(8460), + [anon_sym_LBRACK] = ACTIONS(8460), + [anon_sym_static] = ACTIONS(8458), + [anon_sym_auto] = ACTIONS(8458), + [anon_sym_register] = ACTIONS(8458), + [anon_sym_inline] = ACTIONS(8458), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8458), + [anon_sym_const] = ACTIONS(8458), + [anon_sym_volatile] = ACTIONS(8458), + [anon_sym_restrict] = ACTIONS(8458), + [anon_sym__Atomic] = ACTIONS(8458), + [anon_sym_in] = ACTIONS(8458), + [anon_sym_out] = ACTIONS(8458), + [anon_sym_inout] = ACTIONS(8458), + [anon_sym_bycopy] = ACTIONS(8458), + [anon_sym_byref] = ACTIONS(8458), + [anon_sym_oneway] = ACTIONS(8458), + [anon_sym__Nullable] = ACTIONS(8458), + [anon_sym__Nonnull] = ACTIONS(8458), + [anon_sym__Nullable_result] = ACTIONS(8458), + [anon_sym__Null_unspecified] = ACTIONS(8458), + [anon_sym___autoreleasing] = ACTIONS(8458), + [anon_sym___nullable] = ACTIONS(8458), + [anon_sym___nonnull] = ACTIONS(8458), + [anon_sym___strong] = ACTIONS(8458), + [anon_sym___weak] = ACTIONS(8458), + [anon_sym___bridge] = ACTIONS(8458), + [anon_sym___bridge_transfer] = ACTIONS(8458), + [anon_sym___bridge_retained] = ACTIONS(8458), + [anon_sym___unsafe_unretained] = ACTIONS(8458), + [anon_sym___block] = ACTIONS(8458), + [anon_sym___kindof] = ACTIONS(8458), + [anon_sym___unused] = ACTIONS(8458), + [anon_sym__Complex] = ACTIONS(8458), + [anon_sym___complex] = ACTIONS(8458), + [anon_sym_IBOutlet] = ACTIONS(8458), + [anon_sym_IBInspectable] = ACTIONS(8458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8458), + [anon_sym_COLON] = ACTIONS(8460), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8458), + [anon_sym_NS_AVAILABLE] = ACTIONS(8458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8458), + [anon_sym_API_AVAILABLE] = ACTIONS(8458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8458), + [anon_sym_API_DEPRECATED] = ACTIONS(8458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8458), + [anon_sym___deprecated_msg] = ACTIONS(8458), + [anon_sym___deprecated_enum_msg] = ACTIONS(8458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8458), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -536519,80 +533012,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3447] = { - [sym_attribute_specifier] = STATE(5902), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4118), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3560), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3560), - [sym_identifier] = ACTIONS(8285), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8287), + [sym_attribute_specifier] = STATE(5508), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4247), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3476), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3476), + [sym_identifier] = ACTIONS(8462), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8464), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -536601,80 +533094,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3448] = { - [sym_identifier] = ACTIONS(8289), - [anon_sym_COMMA] = ACTIONS(8291), - [anon_sym_RPAREN] = ACTIONS(8291), - [anon_sym_LPAREN2] = ACTIONS(8291), - [anon_sym_STAR] = ACTIONS(8291), - [anon_sym_SEMI] = ACTIONS(8291), - [anon_sym_extern] = ACTIONS(8289), - [anon_sym___attribute] = ACTIONS(8289), - [anon_sym___attribute__] = ACTIONS(8289), - [anon_sym___declspec] = ACTIONS(8289), - [anon_sym___based] = ACTIONS(8289), - [anon_sym_LBRACE] = ACTIONS(8291), - [anon_sym_LBRACK] = ACTIONS(8291), - [anon_sym_static] = ACTIONS(8289), - [anon_sym_auto] = ACTIONS(8289), - [anon_sym_register] = ACTIONS(8289), - [anon_sym_inline] = ACTIONS(8289), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8289), - [anon_sym_const] = ACTIONS(8289), - [anon_sym_volatile] = ACTIONS(8289), - [anon_sym_restrict] = ACTIONS(8289), - [anon_sym__Atomic] = ACTIONS(8289), - [anon_sym_in] = ACTIONS(8289), - [anon_sym_out] = ACTIONS(8289), - [anon_sym_inout] = ACTIONS(8289), - [anon_sym_bycopy] = ACTIONS(8289), - [anon_sym_byref] = ACTIONS(8289), - [anon_sym_oneway] = ACTIONS(8289), - [anon_sym__Nullable] = ACTIONS(8289), - [anon_sym__Nonnull] = ACTIONS(8289), - [anon_sym__Nullable_result] = ACTIONS(8289), - [anon_sym__Null_unspecified] = ACTIONS(8289), - [anon_sym___autoreleasing] = ACTIONS(8289), - [anon_sym___nullable] = ACTIONS(8289), - [anon_sym___nonnull] = ACTIONS(8289), - [anon_sym___strong] = ACTIONS(8289), - [anon_sym___weak] = ACTIONS(8289), - [anon_sym___bridge] = ACTIONS(8289), - [anon_sym___bridge_transfer] = ACTIONS(8289), - [anon_sym___bridge_retained] = ACTIONS(8289), - [anon_sym___unsafe_unretained] = ACTIONS(8289), - [anon_sym___block] = ACTIONS(8289), - [anon_sym___kindof] = ACTIONS(8289), - [anon_sym___unused] = ACTIONS(8289), - [anon_sym__Complex] = ACTIONS(8289), - [anon_sym___complex] = ACTIONS(8289), - [anon_sym_IBOutlet] = ACTIONS(8289), - [anon_sym_IBInspectable] = ACTIONS(8289), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8289), - [anon_sym_COLON] = ACTIONS(8291), + [sym_attribute_specifier] = STATE(5734), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4195), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8227), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8466), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8289), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8289), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8289), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8289), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8289), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8289), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8289), - [anon_sym_NS_AVAILABLE] = ACTIONS(8289), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8289), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8289), - [anon_sym_API_AVAILABLE] = ACTIONS(8289), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8289), - [anon_sym_API_DEPRECATED] = ACTIONS(8289), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8289), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8289), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8289), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8289), - [anon_sym___deprecated_msg] = ACTIONS(8289), - [anon_sym___deprecated_enum_msg] = ACTIONS(8289), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8289), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8289), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8289), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8289), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -536683,80 +533176,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3449] = { - [sym_identifier] = ACTIONS(8293), - [anon_sym_COMMA] = ACTIONS(8295), - [anon_sym_RPAREN] = ACTIONS(8295), - [anon_sym_LPAREN2] = ACTIONS(8295), - [anon_sym_STAR] = ACTIONS(8295), - [anon_sym_SEMI] = ACTIONS(8295), - [anon_sym_extern] = ACTIONS(8293), - [anon_sym___attribute] = ACTIONS(8293), - [anon_sym___attribute__] = ACTIONS(8293), - [anon_sym___declspec] = ACTIONS(8293), - [anon_sym___based] = ACTIONS(8293), - [anon_sym_LBRACE] = ACTIONS(8295), - [anon_sym_LBRACK] = ACTIONS(8295), - [anon_sym_static] = ACTIONS(8293), - [anon_sym_auto] = ACTIONS(8293), - [anon_sym_register] = ACTIONS(8293), - [anon_sym_inline] = ACTIONS(8293), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8293), - [anon_sym_const] = ACTIONS(8293), - [anon_sym_volatile] = ACTIONS(8293), - [anon_sym_restrict] = ACTIONS(8293), - [anon_sym__Atomic] = ACTIONS(8293), - [anon_sym_in] = ACTIONS(8293), - [anon_sym_out] = ACTIONS(8293), - [anon_sym_inout] = ACTIONS(8293), - [anon_sym_bycopy] = ACTIONS(8293), - [anon_sym_byref] = ACTIONS(8293), - [anon_sym_oneway] = ACTIONS(8293), - [anon_sym__Nullable] = ACTIONS(8293), - [anon_sym__Nonnull] = ACTIONS(8293), - [anon_sym__Nullable_result] = ACTIONS(8293), - [anon_sym__Null_unspecified] = ACTIONS(8293), - [anon_sym___autoreleasing] = ACTIONS(8293), - [anon_sym___nullable] = ACTIONS(8293), - [anon_sym___nonnull] = ACTIONS(8293), - [anon_sym___strong] = ACTIONS(8293), - [anon_sym___weak] = ACTIONS(8293), - [anon_sym___bridge] = ACTIONS(8293), - [anon_sym___bridge_transfer] = ACTIONS(8293), - [anon_sym___bridge_retained] = ACTIONS(8293), - [anon_sym___unsafe_unretained] = ACTIONS(8293), - [anon_sym___block] = ACTIONS(8293), - [anon_sym___kindof] = ACTIONS(8293), - [anon_sym___unused] = ACTIONS(8293), - [anon_sym__Complex] = ACTIONS(8293), - [anon_sym___complex] = ACTIONS(8293), - [anon_sym_IBOutlet] = ACTIONS(8293), - [anon_sym_IBInspectable] = ACTIONS(8293), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8293), - [anon_sym_COLON] = ACTIONS(8295), + [sym_identifier] = ACTIONS(6836), + [anon_sym_COMMA] = ACTIONS(6838), + [anon_sym_RPAREN] = ACTIONS(6838), + [anon_sym_LPAREN2] = ACTIONS(6838), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_SEMI] = ACTIONS(6838), + [anon_sym_extern] = ACTIONS(6836), + [anon_sym___attribute] = ACTIONS(6836), + [anon_sym___attribute__] = ACTIONS(6836), + [anon_sym___declspec] = ACTIONS(6836), + [anon_sym___based] = ACTIONS(6836), + [anon_sym_LBRACE] = ACTIONS(6838), + [anon_sym_LBRACK] = ACTIONS(6838), + [anon_sym_static] = ACTIONS(6836), + [anon_sym_auto] = ACTIONS(6836), + [anon_sym_register] = ACTIONS(6836), + [anon_sym_inline] = ACTIONS(6836), + [aux_sym_storage_class_specifier_token1] = ACTIONS(6836), + [anon_sym_const] = ACTIONS(6836), + [anon_sym_volatile] = ACTIONS(6836), + [anon_sym_restrict] = ACTIONS(6836), + [anon_sym__Atomic] = ACTIONS(6836), + [anon_sym_in] = ACTIONS(6836), + [anon_sym_out] = ACTIONS(6836), + [anon_sym_inout] = ACTIONS(6836), + [anon_sym_bycopy] = ACTIONS(6836), + [anon_sym_byref] = ACTIONS(6836), + [anon_sym_oneway] = ACTIONS(6836), + [anon_sym__Nullable] = ACTIONS(6836), + [anon_sym__Nonnull] = ACTIONS(6836), + [anon_sym__Nullable_result] = ACTIONS(6836), + [anon_sym__Null_unspecified] = ACTIONS(6836), + [anon_sym___autoreleasing] = ACTIONS(6836), + [anon_sym___nullable] = ACTIONS(6836), + [anon_sym___nonnull] = ACTIONS(6836), + [anon_sym___strong] = ACTIONS(6836), + [anon_sym___weak] = ACTIONS(6836), + [anon_sym___bridge] = ACTIONS(6836), + [anon_sym___bridge_transfer] = ACTIONS(6836), + [anon_sym___bridge_retained] = ACTIONS(6836), + [anon_sym___unsafe_unretained] = ACTIONS(6836), + [anon_sym___block] = ACTIONS(6836), + [anon_sym___kindof] = ACTIONS(6836), + [anon_sym___unused] = ACTIONS(6836), + [anon_sym__Complex] = ACTIONS(6836), + [anon_sym___complex] = ACTIONS(6836), + [anon_sym_IBOutlet] = ACTIONS(6836), + [anon_sym_IBInspectable] = ACTIONS(6836), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6836), + [anon_sym_COLON] = ACTIONS(6838), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8293), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8293), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8293), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8293), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8293), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8293), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8293), - [anon_sym_NS_AVAILABLE] = ACTIONS(8293), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8293), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8293), - [anon_sym_API_AVAILABLE] = ACTIONS(8293), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8293), - [anon_sym_API_DEPRECATED] = ACTIONS(8293), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8293), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8293), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8293), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8293), - [anon_sym___deprecated_msg] = ACTIONS(8293), - [anon_sym___deprecated_enum_msg] = ACTIONS(8293), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8293), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8293), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8293), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8293), + [sym_method_attribute_specifier] = ACTIONS(6836), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6836), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6836), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6836), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6836), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6836), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6836), + [anon_sym_NS_AVAILABLE] = ACTIONS(6836), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6836), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6836), + [anon_sym_API_AVAILABLE] = ACTIONS(6836), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6836), + [anon_sym_API_DEPRECATED] = ACTIONS(6836), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6836), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6836), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6836), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6836), + [anon_sym___deprecated_msg] = ACTIONS(6836), + [anon_sym___deprecated_enum_msg] = ACTIONS(6836), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6836), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6836), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6836), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6836), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -536765,80 +533258,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3450] = { - [sym__expression] = STATE(4494), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym__dictionary_key_value_list] = STATE(5492), - [sym__dictionary_key_value_pair] = STATE(4894), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(8297), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [sym_attribute_specifier] = STATE(5508), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4247), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8462), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8468), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -536847,80 +533340,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3451] = { - [sym_attribute_specifier] = STATE(5756), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4115), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8299), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8301), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_identifier] = ACTIONS(8470), + [anon_sym_COMMA] = ACTIONS(8472), + [anon_sym_RPAREN] = ACTIONS(8472), + [anon_sym_LPAREN2] = ACTIONS(8472), + [anon_sym_STAR] = ACTIONS(8472), + [anon_sym_SEMI] = ACTIONS(8472), + [anon_sym_extern] = ACTIONS(8470), + [anon_sym___attribute] = ACTIONS(8470), + [anon_sym___attribute__] = ACTIONS(8470), + [anon_sym___declspec] = ACTIONS(8470), + [anon_sym___based] = ACTIONS(8470), + [anon_sym_LBRACE] = ACTIONS(8472), + [anon_sym_LBRACK] = ACTIONS(8472), + [anon_sym_static] = ACTIONS(8470), + [anon_sym_auto] = ACTIONS(8470), + [anon_sym_register] = ACTIONS(8470), + [anon_sym_inline] = ACTIONS(8470), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8470), + [anon_sym_const] = ACTIONS(8470), + [anon_sym_volatile] = ACTIONS(8470), + [anon_sym_restrict] = ACTIONS(8470), + [anon_sym__Atomic] = ACTIONS(8470), + [anon_sym_in] = ACTIONS(8470), + [anon_sym_out] = ACTIONS(8470), + [anon_sym_inout] = ACTIONS(8470), + [anon_sym_bycopy] = ACTIONS(8470), + [anon_sym_byref] = ACTIONS(8470), + [anon_sym_oneway] = ACTIONS(8470), + [anon_sym__Nullable] = ACTIONS(8470), + [anon_sym__Nonnull] = ACTIONS(8470), + [anon_sym__Nullable_result] = ACTIONS(8470), + [anon_sym__Null_unspecified] = ACTIONS(8470), + [anon_sym___autoreleasing] = ACTIONS(8470), + [anon_sym___nullable] = ACTIONS(8470), + [anon_sym___nonnull] = ACTIONS(8470), + [anon_sym___strong] = ACTIONS(8470), + [anon_sym___weak] = ACTIONS(8470), + [anon_sym___bridge] = ACTIONS(8470), + [anon_sym___bridge_transfer] = ACTIONS(8470), + [anon_sym___bridge_retained] = ACTIONS(8470), + [anon_sym___unsafe_unretained] = ACTIONS(8470), + [anon_sym___block] = ACTIONS(8470), + [anon_sym___kindof] = ACTIONS(8470), + [anon_sym___unused] = ACTIONS(8470), + [anon_sym__Complex] = ACTIONS(8470), + [anon_sym___complex] = ACTIONS(8470), + [anon_sym_IBOutlet] = ACTIONS(8470), + [anon_sym_IBInspectable] = ACTIONS(8470), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8470), + [anon_sym_COLON] = ACTIONS(8472), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8470), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8470), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8470), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8470), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8470), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8470), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8470), + [anon_sym_NS_AVAILABLE] = ACTIONS(8470), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8470), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8470), + [anon_sym_API_AVAILABLE] = ACTIONS(8470), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8470), + [anon_sym_API_DEPRECATED] = ACTIONS(8470), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8470), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8470), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8470), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8470), + [anon_sym___deprecated_msg] = ACTIONS(8470), + [anon_sym___deprecated_enum_msg] = ACTIONS(8470), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8470), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8470), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8470), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8470), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -536929,80 +533422,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3452] = { - [sym_attribute_specifier] = STATE(3461), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4158), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3462), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3462), - [sym_identifier] = ACTIONS(8303), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8305), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_attribute_specifier] = STATE(5322), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4137), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8474), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8476), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -537011,80 +533504,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3453] = { - [sym_attribute_specifier] = STATE(5528), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4163), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8317), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8319), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_identifier] = ACTIONS(8478), + [anon_sym_COMMA] = ACTIONS(8480), + [anon_sym_RPAREN] = ACTIONS(8480), + [anon_sym_LPAREN2] = ACTIONS(8480), + [anon_sym_STAR] = ACTIONS(8480), + [anon_sym_SEMI] = ACTIONS(8480), + [anon_sym_extern] = ACTIONS(8478), + [anon_sym___attribute] = ACTIONS(8478), + [anon_sym___attribute__] = ACTIONS(8478), + [anon_sym___declspec] = ACTIONS(8478), + [anon_sym___based] = ACTIONS(8478), + [anon_sym_LBRACE] = ACTIONS(8480), + [anon_sym_LBRACK] = ACTIONS(8480), + [anon_sym_static] = ACTIONS(8478), + [anon_sym_auto] = ACTIONS(8478), + [anon_sym_register] = ACTIONS(8478), + [anon_sym_inline] = ACTIONS(8478), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8478), + [anon_sym_const] = ACTIONS(8478), + [anon_sym_volatile] = ACTIONS(8478), + [anon_sym_restrict] = ACTIONS(8478), + [anon_sym__Atomic] = ACTIONS(8478), + [anon_sym_in] = ACTIONS(8478), + [anon_sym_out] = ACTIONS(8478), + [anon_sym_inout] = ACTIONS(8478), + [anon_sym_bycopy] = ACTIONS(8478), + [anon_sym_byref] = ACTIONS(8478), + [anon_sym_oneway] = ACTIONS(8478), + [anon_sym__Nullable] = ACTIONS(8478), + [anon_sym__Nonnull] = ACTIONS(8478), + [anon_sym__Nullable_result] = ACTIONS(8478), + [anon_sym__Null_unspecified] = ACTIONS(8478), + [anon_sym___autoreleasing] = ACTIONS(8478), + [anon_sym___nullable] = ACTIONS(8478), + [anon_sym___nonnull] = ACTIONS(8478), + [anon_sym___strong] = ACTIONS(8478), + [anon_sym___weak] = ACTIONS(8478), + [anon_sym___bridge] = ACTIONS(8478), + [anon_sym___bridge_transfer] = ACTIONS(8478), + [anon_sym___bridge_retained] = ACTIONS(8478), + [anon_sym___unsafe_unretained] = ACTIONS(8478), + [anon_sym___block] = ACTIONS(8478), + [anon_sym___kindof] = ACTIONS(8478), + [anon_sym___unused] = ACTIONS(8478), + [anon_sym__Complex] = ACTIONS(8478), + [anon_sym___complex] = ACTIONS(8478), + [anon_sym_IBOutlet] = ACTIONS(8478), + [anon_sym_IBInspectable] = ACTIONS(8478), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8478), + [anon_sym_COLON] = ACTIONS(8480), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8478), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8478), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8478), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8478), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8478), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8478), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8478), + [anon_sym_NS_AVAILABLE] = ACTIONS(8478), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8478), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8478), + [anon_sym_API_AVAILABLE] = ACTIONS(8478), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8478), + [anon_sym_API_DEPRECATED] = ACTIONS(8478), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8478), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8478), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8478), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8478), + [anon_sym___deprecated_msg] = ACTIONS(8478), + [anon_sym___deprecated_enum_msg] = ACTIONS(8478), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8478), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8478), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8478), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8478), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -537093,80 +533586,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3454] = { - [sym_type_qualifier] = STATE(3454), - [aux_sym_type_definition_repeat1] = STATE(3454), - [sym_identifier] = ACTIONS(8321), - [anon_sym_LPAREN2] = ACTIONS(8323), - [anon_sym_BANG] = ACTIONS(8323), - [anon_sym_TILDE] = ACTIONS(8323), - [anon_sym_DASH] = ACTIONS(8321), - [anon_sym_PLUS] = ACTIONS(8321), - [anon_sym_STAR] = ACTIONS(8323), - [anon_sym_CARET] = ACTIONS(8323), - [anon_sym_AMP] = ACTIONS(8323), - [anon_sym_LBRACK] = ACTIONS(8323), - [anon_sym_RBRACK] = ACTIONS(8323), - [anon_sym_const] = ACTIONS(8325), - [anon_sym_volatile] = ACTIONS(8325), - [anon_sym_restrict] = ACTIONS(8325), - [anon_sym__Atomic] = ACTIONS(8325), - [anon_sym_in] = ACTIONS(8325), - [anon_sym_out] = ACTIONS(8325), - [anon_sym_inout] = ACTIONS(8325), - [anon_sym_bycopy] = ACTIONS(8325), - [anon_sym_byref] = ACTIONS(8325), - [anon_sym_oneway] = ACTIONS(8325), - [anon_sym__Nullable] = ACTIONS(8325), - [anon_sym__Nonnull] = ACTIONS(8325), - [anon_sym__Nullable_result] = ACTIONS(8325), - [anon_sym__Null_unspecified] = ACTIONS(8325), - [anon_sym___autoreleasing] = ACTIONS(8325), - [anon_sym___nullable] = ACTIONS(8325), - [anon_sym___nonnull] = ACTIONS(8325), - [anon_sym___strong] = ACTIONS(8325), - [anon_sym___weak] = ACTIONS(8325), - [anon_sym___bridge] = ACTIONS(8325), - [anon_sym___bridge_transfer] = ACTIONS(8325), - [anon_sym___bridge_retained] = ACTIONS(8325), - [anon_sym___unsafe_unretained] = ACTIONS(8325), - [anon_sym___block] = ACTIONS(8325), - [anon_sym___kindof] = ACTIONS(8325), - [anon_sym___unused] = ACTIONS(8325), - [anon_sym__Complex] = ACTIONS(8325), - [anon_sym___complex] = ACTIONS(8325), - [anon_sym_IBOutlet] = ACTIONS(8325), - [anon_sym_IBInspectable] = ACTIONS(8325), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8325), - [anon_sym_DASH_DASH] = ACTIONS(8323), - [anon_sym_PLUS_PLUS] = ACTIONS(8323), - [anon_sym_sizeof] = ACTIONS(8321), - [sym_number_literal] = ACTIONS(8323), - [anon_sym_L_SQUOTE] = ACTIONS(8323), - [anon_sym_u_SQUOTE] = ACTIONS(8323), - [anon_sym_U_SQUOTE] = ACTIONS(8323), - [anon_sym_u8_SQUOTE] = ACTIONS(8323), - [anon_sym_SQUOTE] = ACTIONS(8323), - [anon_sym_L_DQUOTE] = ACTIONS(8323), - [anon_sym_u_DQUOTE] = ACTIONS(8323), - [anon_sym_U_DQUOTE] = ACTIONS(8323), - [anon_sym_u8_DQUOTE] = ACTIONS(8323), - [anon_sym_DQUOTE] = ACTIONS(8323), - [sym_true] = ACTIONS(8321), - [sym_false] = ACTIONS(8321), - [sym_null] = ACTIONS(8321), + [sym_identifier] = ACTIONS(8482), + [anon_sym_COMMA] = ACTIONS(8484), + [anon_sym_RPAREN] = ACTIONS(8484), + [anon_sym_LPAREN2] = ACTIONS(8484), + [anon_sym_STAR] = ACTIONS(8484), + [anon_sym_SEMI] = ACTIONS(8484), + [anon_sym_extern] = ACTIONS(8482), + [anon_sym___attribute] = ACTIONS(8482), + [anon_sym___attribute__] = ACTIONS(8482), + [anon_sym___declspec] = ACTIONS(8482), + [anon_sym___based] = ACTIONS(8482), + [anon_sym_LBRACE] = ACTIONS(8484), + [anon_sym_LBRACK] = ACTIONS(8484), + [anon_sym_static] = ACTIONS(8482), + [anon_sym_auto] = ACTIONS(8482), + [anon_sym_register] = ACTIONS(8482), + [anon_sym_inline] = ACTIONS(8482), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8482), + [anon_sym_const] = ACTIONS(8482), + [anon_sym_volatile] = ACTIONS(8482), + [anon_sym_restrict] = ACTIONS(8482), + [anon_sym__Atomic] = ACTIONS(8482), + [anon_sym_in] = ACTIONS(8482), + [anon_sym_out] = ACTIONS(8482), + [anon_sym_inout] = ACTIONS(8482), + [anon_sym_bycopy] = ACTIONS(8482), + [anon_sym_byref] = ACTIONS(8482), + [anon_sym_oneway] = ACTIONS(8482), + [anon_sym__Nullable] = ACTIONS(8482), + [anon_sym__Nonnull] = ACTIONS(8482), + [anon_sym__Nullable_result] = ACTIONS(8482), + [anon_sym__Null_unspecified] = ACTIONS(8482), + [anon_sym___autoreleasing] = ACTIONS(8482), + [anon_sym___nullable] = ACTIONS(8482), + [anon_sym___nonnull] = ACTIONS(8482), + [anon_sym___strong] = ACTIONS(8482), + [anon_sym___weak] = ACTIONS(8482), + [anon_sym___bridge] = ACTIONS(8482), + [anon_sym___bridge_transfer] = ACTIONS(8482), + [anon_sym___bridge_retained] = ACTIONS(8482), + [anon_sym___unsafe_unretained] = ACTIONS(8482), + [anon_sym___block] = ACTIONS(8482), + [anon_sym___kindof] = ACTIONS(8482), + [anon_sym___unused] = ACTIONS(8482), + [anon_sym__Complex] = ACTIONS(8482), + [anon_sym___complex] = ACTIONS(8482), + [anon_sym_IBOutlet] = ACTIONS(8482), + [anon_sym_IBInspectable] = ACTIONS(8482), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8482), + [anon_sym_COLON] = ACTIONS(8484), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(8323), - [sym_self] = ACTIONS(8321), - [sym_super] = ACTIONS(8321), - [sym_nil] = ACTIONS(8321), - [anon_sym_ATselector] = ACTIONS(8323), - [anon_sym_ATencode] = ACTIONS(8323), - [anon_sym_AT] = ACTIONS(8321), - [sym_YES] = ACTIONS(8321), - [sym_NO] = ACTIONS(8321), - [anon_sym___builtin_available] = ACTIONS(8321), - [anon_sym_ATavailable] = ACTIONS(8323), - [anon_sym_va_arg] = ACTIONS(8321), + [sym_method_attribute_specifier] = ACTIONS(8482), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8482), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8482), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8482), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8482), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8482), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8482), + [anon_sym_NS_AVAILABLE] = ACTIONS(8482), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8482), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8482), + [anon_sym_API_AVAILABLE] = ACTIONS(8482), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8482), + [anon_sym_API_DEPRECATED] = ACTIONS(8482), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8482), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8482), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8482), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8482), + [anon_sym___deprecated_msg] = ACTIONS(8482), + [anon_sym___deprecated_enum_msg] = ACTIONS(8482), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8482), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8482), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8482), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8482), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -537175,80 +533668,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3455] = { - [sym_attribute_specifier] = STATE(5256), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4231), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8328), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8330), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_identifier] = ACTIONS(8486), + [anon_sym_COMMA] = ACTIONS(8488), + [anon_sym_RPAREN] = ACTIONS(8488), + [anon_sym_LPAREN2] = ACTIONS(8488), + [anon_sym_STAR] = ACTIONS(8488), + [anon_sym_SEMI] = ACTIONS(8488), + [anon_sym_extern] = ACTIONS(8486), + [anon_sym___attribute] = ACTIONS(8486), + [anon_sym___attribute__] = ACTIONS(8486), + [anon_sym___declspec] = ACTIONS(8486), + [anon_sym___based] = ACTIONS(8486), + [anon_sym_LBRACE] = ACTIONS(8488), + [anon_sym_LBRACK] = ACTIONS(8488), + [anon_sym_static] = ACTIONS(8486), + [anon_sym_auto] = ACTIONS(8486), + [anon_sym_register] = ACTIONS(8486), + [anon_sym_inline] = ACTIONS(8486), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8486), + [anon_sym_const] = ACTIONS(8486), + [anon_sym_volatile] = ACTIONS(8486), + [anon_sym_restrict] = ACTIONS(8486), + [anon_sym__Atomic] = ACTIONS(8486), + [anon_sym_in] = ACTIONS(8486), + [anon_sym_out] = ACTIONS(8486), + [anon_sym_inout] = ACTIONS(8486), + [anon_sym_bycopy] = ACTIONS(8486), + [anon_sym_byref] = ACTIONS(8486), + [anon_sym_oneway] = ACTIONS(8486), + [anon_sym__Nullable] = ACTIONS(8486), + [anon_sym__Nonnull] = ACTIONS(8486), + [anon_sym__Nullable_result] = ACTIONS(8486), + [anon_sym__Null_unspecified] = ACTIONS(8486), + [anon_sym___autoreleasing] = ACTIONS(8486), + [anon_sym___nullable] = ACTIONS(8486), + [anon_sym___nonnull] = ACTIONS(8486), + [anon_sym___strong] = ACTIONS(8486), + [anon_sym___weak] = ACTIONS(8486), + [anon_sym___bridge] = ACTIONS(8486), + [anon_sym___bridge_transfer] = ACTIONS(8486), + [anon_sym___bridge_retained] = ACTIONS(8486), + [anon_sym___unsafe_unretained] = ACTIONS(8486), + [anon_sym___block] = ACTIONS(8486), + [anon_sym___kindof] = ACTIONS(8486), + [anon_sym___unused] = ACTIONS(8486), + [anon_sym__Complex] = ACTIONS(8486), + [anon_sym___complex] = ACTIONS(8486), + [anon_sym_IBOutlet] = ACTIONS(8486), + [anon_sym_IBInspectable] = ACTIONS(8486), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8486), + [anon_sym_COLON] = ACTIONS(8488), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8486), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8486), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8486), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8486), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8486), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8486), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8486), + [anon_sym_NS_AVAILABLE] = ACTIONS(8486), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8486), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8486), + [anon_sym_API_AVAILABLE] = ACTIONS(8486), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8486), + [anon_sym_API_DEPRECATED] = ACTIONS(8486), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8486), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8486), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8486), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8486), + [anon_sym___deprecated_msg] = ACTIONS(8486), + [anon_sym___deprecated_enum_msg] = ACTIONS(8486), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8486), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8486), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8486), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8486), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -537257,80 +533750,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3456] = { - [sym_attribute_specifier] = STATE(5256), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4231), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3484), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3484), - [sym_identifier] = ACTIONS(8328), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8330), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_identifier] = ACTIONS(8490), + [anon_sym_COMMA] = ACTIONS(8492), + [anon_sym_RPAREN] = ACTIONS(8492), + [anon_sym_LPAREN2] = ACTIONS(8492), + [anon_sym_STAR] = ACTIONS(8492), + [anon_sym_SEMI] = ACTIONS(8492), + [anon_sym_extern] = ACTIONS(8490), + [anon_sym___attribute] = ACTIONS(8490), + [anon_sym___attribute__] = ACTIONS(8490), + [anon_sym___declspec] = ACTIONS(8490), + [anon_sym___based] = ACTIONS(8490), + [anon_sym_LBRACE] = ACTIONS(8492), + [anon_sym_LBRACK] = ACTIONS(8492), + [anon_sym_static] = ACTIONS(8490), + [anon_sym_auto] = ACTIONS(8490), + [anon_sym_register] = ACTIONS(8490), + [anon_sym_inline] = ACTIONS(8490), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8490), + [anon_sym_const] = ACTIONS(8490), + [anon_sym_volatile] = ACTIONS(8490), + [anon_sym_restrict] = ACTIONS(8490), + [anon_sym__Atomic] = ACTIONS(8490), + [anon_sym_in] = ACTIONS(8490), + [anon_sym_out] = ACTIONS(8490), + [anon_sym_inout] = ACTIONS(8490), + [anon_sym_bycopy] = ACTIONS(8490), + [anon_sym_byref] = ACTIONS(8490), + [anon_sym_oneway] = ACTIONS(8490), + [anon_sym__Nullable] = ACTIONS(8490), + [anon_sym__Nonnull] = ACTIONS(8490), + [anon_sym__Nullable_result] = ACTIONS(8490), + [anon_sym__Null_unspecified] = ACTIONS(8490), + [anon_sym___autoreleasing] = ACTIONS(8490), + [anon_sym___nullable] = ACTIONS(8490), + [anon_sym___nonnull] = ACTIONS(8490), + [anon_sym___strong] = ACTIONS(8490), + [anon_sym___weak] = ACTIONS(8490), + [anon_sym___bridge] = ACTIONS(8490), + [anon_sym___bridge_transfer] = ACTIONS(8490), + [anon_sym___bridge_retained] = ACTIONS(8490), + [anon_sym___unsafe_unretained] = ACTIONS(8490), + [anon_sym___block] = ACTIONS(8490), + [anon_sym___kindof] = ACTIONS(8490), + [anon_sym___unused] = ACTIONS(8490), + [anon_sym__Complex] = ACTIONS(8490), + [anon_sym___complex] = ACTIONS(8490), + [anon_sym_IBOutlet] = ACTIONS(8490), + [anon_sym_IBInspectable] = ACTIONS(8490), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8490), + [anon_sym_COLON] = ACTIONS(8492), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8490), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8490), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8490), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8490), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8490), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8490), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8490), + [anon_sym_NS_AVAILABLE] = ACTIONS(8490), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8490), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8490), + [anon_sym_API_AVAILABLE] = ACTIONS(8490), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8490), + [anon_sym_API_DEPRECATED] = ACTIONS(8490), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8490), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8490), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8490), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8490), + [anon_sym___deprecated_msg] = ACTIONS(8490), + [anon_sym___deprecated_enum_msg] = ACTIONS(8490), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8490), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8490), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8490), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8490), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -537339,80 +533832,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3457] = { - [sym_attribute_specifier] = STATE(5342), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4202), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8332), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8334), + [sym_attribute_specifier] = STATE(5299), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4272), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8494), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8496), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -537421,80 +533914,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3458] = { - [sym_attribute_specifier] = STATE(3476), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4242), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3480), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3480), - [sym_identifier] = ACTIONS(8336), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8338), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_identifier] = ACTIONS(8498), + [anon_sym_COMMA] = ACTIONS(8500), + [anon_sym_RPAREN] = ACTIONS(8500), + [anon_sym_LPAREN2] = ACTIONS(8500), + [anon_sym_STAR] = ACTIONS(8500), + [anon_sym_SEMI] = ACTIONS(8500), + [anon_sym_extern] = ACTIONS(8498), + [anon_sym___attribute] = ACTIONS(8498), + [anon_sym___attribute__] = ACTIONS(8498), + [anon_sym___declspec] = ACTIONS(8498), + [anon_sym___based] = ACTIONS(8498), + [anon_sym_LBRACE] = ACTIONS(8500), + [anon_sym_LBRACK] = ACTIONS(8500), + [anon_sym_static] = ACTIONS(8498), + [anon_sym_auto] = ACTIONS(8498), + [anon_sym_register] = ACTIONS(8498), + [anon_sym_inline] = ACTIONS(8498), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8498), + [anon_sym_const] = ACTIONS(8498), + [anon_sym_volatile] = ACTIONS(8498), + [anon_sym_restrict] = ACTIONS(8498), + [anon_sym__Atomic] = ACTIONS(8498), + [anon_sym_in] = ACTIONS(8498), + [anon_sym_out] = ACTIONS(8498), + [anon_sym_inout] = ACTIONS(8498), + [anon_sym_bycopy] = ACTIONS(8498), + [anon_sym_byref] = ACTIONS(8498), + [anon_sym_oneway] = ACTIONS(8498), + [anon_sym__Nullable] = ACTIONS(8498), + [anon_sym__Nonnull] = ACTIONS(8498), + [anon_sym__Nullable_result] = ACTIONS(8498), + [anon_sym__Null_unspecified] = ACTIONS(8498), + [anon_sym___autoreleasing] = ACTIONS(8498), + [anon_sym___nullable] = ACTIONS(8498), + [anon_sym___nonnull] = ACTIONS(8498), + [anon_sym___strong] = ACTIONS(8498), + [anon_sym___weak] = ACTIONS(8498), + [anon_sym___bridge] = ACTIONS(8498), + [anon_sym___bridge_transfer] = ACTIONS(8498), + [anon_sym___bridge_retained] = ACTIONS(8498), + [anon_sym___unsafe_unretained] = ACTIONS(8498), + [anon_sym___block] = ACTIONS(8498), + [anon_sym___kindof] = ACTIONS(8498), + [anon_sym___unused] = ACTIONS(8498), + [anon_sym__Complex] = ACTIONS(8498), + [anon_sym___complex] = ACTIONS(8498), + [anon_sym_IBOutlet] = ACTIONS(8498), + [anon_sym_IBInspectable] = ACTIONS(8498), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8498), + [anon_sym_COLON] = ACTIONS(8500), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), + [sym_method_attribute_specifier] = ACTIONS(8498), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8498), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8498), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8498), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8498), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8498), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8498), + [anon_sym_NS_AVAILABLE] = ACTIONS(8498), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8498), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8498), + [anon_sym_API_AVAILABLE] = ACTIONS(8498), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8498), + [anon_sym_API_DEPRECATED] = ACTIONS(8498), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8498), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8498), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8498), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8498), + [anon_sym___deprecated_msg] = ACTIONS(8498), + [anon_sym___deprecated_enum_msg] = ACTIONS(8498), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8498), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8498), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8498), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8498), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -537503,80 +533996,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3459] = { - [sym_attribute_specifier] = STATE(5397), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4209), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3478), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3478), - [sym_identifier] = ACTIONS(8340), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8342), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_attribute_specifier] = STATE(3406), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4140), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3407), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3407), + [sym_identifier] = ACTIONS(8502), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8504), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -537585,80 +534078,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3460] = { - [sym_attribute_specifier] = STATE(3506), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4174), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3512), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3512), - [sym_identifier] = ACTIONS(8344), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8346), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_attribute_specifier] = STATE(5337), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4236), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3438), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3438), + [sym_identifier] = ACTIONS(8506), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8508), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -537667,80 +534160,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3461] = { - [sym_attribute_specifier] = STATE(5572), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4241), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3466), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3466), - [sym_identifier] = ACTIONS(8348), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8350), + [sym_attribute_specifier] = STATE(5337), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4236), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8506), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8510), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -537749,80 +534242,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3462] = { - [sym_attribute_specifier] = STATE(5572), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4241), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8348), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8350), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_identifier] = ACTIONS(8512), + [anon_sym_COMMA] = ACTIONS(8514), + [anon_sym_RPAREN] = ACTIONS(8514), + [anon_sym_LPAREN2] = ACTIONS(8514), + [anon_sym_STAR] = ACTIONS(8514), + [anon_sym_SEMI] = ACTIONS(8514), + [anon_sym_extern] = ACTIONS(8512), + [anon_sym___attribute] = ACTIONS(8512), + [anon_sym___attribute__] = ACTIONS(8512), + [anon_sym___declspec] = ACTIONS(8512), + [anon_sym___based] = ACTIONS(8512), + [anon_sym_LBRACE] = ACTIONS(8514), + [anon_sym_LBRACK] = ACTIONS(8514), + [anon_sym_static] = ACTIONS(8512), + [anon_sym_auto] = ACTIONS(8512), + [anon_sym_register] = ACTIONS(8512), + [anon_sym_inline] = ACTIONS(8512), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8512), + [anon_sym_const] = ACTIONS(8512), + [anon_sym_volatile] = ACTIONS(8512), + [anon_sym_restrict] = ACTIONS(8512), + [anon_sym__Atomic] = ACTIONS(8512), + [anon_sym_in] = ACTIONS(8512), + [anon_sym_out] = ACTIONS(8512), + [anon_sym_inout] = ACTIONS(8512), + [anon_sym_bycopy] = ACTIONS(8512), + [anon_sym_byref] = ACTIONS(8512), + [anon_sym_oneway] = ACTIONS(8512), + [anon_sym__Nullable] = ACTIONS(8512), + [anon_sym__Nonnull] = ACTIONS(8512), + [anon_sym__Nullable_result] = ACTIONS(8512), + [anon_sym__Null_unspecified] = ACTIONS(8512), + [anon_sym___autoreleasing] = ACTIONS(8512), + [anon_sym___nullable] = ACTIONS(8512), + [anon_sym___nonnull] = ACTIONS(8512), + [anon_sym___strong] = ACTIONS(8512), + [anon_sym___weak] = ACTIONS(8512), + [anon_sym___bridge] = ACTIONS(8512), + [anon_sym___bridge_transfer] = ACTIONS(8512), + [anon_sym___bridge_retained] = ACTIONS(8512), + [anon_sym___unsafe_unretained] = ACTIONS(8512), + [anon_sym___block] = ACTIONS(8512), + [anon_sym___kindof] = ACTIONS(8512), + [anon_sym___unused] = ACTIONS(8512), + [anon_sym__Complex] = ACTIONS(8512), + [anon_sym___complex] = ACTIONS(8512), + [anon_sym_IBOutlet] = ACTIONS(8512), + [anon_sym_IBInspectable] = ACTIONS(8512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8512), + [anon_sym_COLON] = ACTIONS(8514), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8512), + [anon_sym_NS_AVAILABLE] = ACTIONS(8512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8512), + [anon_sym_API_AVAILABLE] = ACTIONS(8512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8512), + [anon_sym_API_DEPRECATED] = ACTIONS(8512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8512), + [anon_sym___deprecated_msg] = ACTIONS(8512), + [anon_sym___deprecated_enum_msg] = ACTIONS(8512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8512), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -537831,80 +534324,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3463] = { - [sym_attribute_specifier] = STATE(3469), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4244), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3471), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3471), - [sym_identifier] = ACTIONS(8352), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8354), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_identifier] = ACTIONS(8516), + [anon_sym_COMMA] = ACTIONS(8518), + [anon_sym_RPAREN] = ACTIONS(8518), + [anon_sym_LPAREN2] = ACTIONS(8518), + [anon_sym_STAR] = ACTIONS(8518), + [anon_sym_SEMI] = ACTIONS(8518), + [anon_sym_extern] = ACTIONS(8516), + [anon_sym___attribute] = ACTIONS(8516), + [anon_sym___attribute__] = ACTIONS(8516), + [anon_sym___declspec] = ACTIONS(8516), + [anon_sym___based] = ACTIONS(8516), + [anon_sym_LBRACE] = ACTIONS(8518), + [anon_sym_LBRACK] = ACTIONS(8518), + [anon_sym_static] = ACTIONS(8516), + [anon_sym_auto] = ACTIONS(8516), + [anon_sym_register] = ACTIONS(8516), + [anon_sym_inline] = ACTIONS(8516), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8516), + [anon_sym_const] = ACTIONS(8516), + [anon_sym_volatile] = ACTIONS(8516), + [anon_sym_restrict] = ACTIONS(8516), + [anon_sym__Atomic] = ACTIONS(8516), + [anon_sym_in] = ACTIONS(8516), + [anon_sym_out] = ACTIONS(8516), + [anon_sym_inout] = ACTIONS(8516), + [anon_sym_bycopy] = ACTIONS(8516), + [anon_sym_byref] = ACTIONS(8516), + [anon_sym_oneway] = ACTIONS(8516), + [anon_sym__Nullable] = ACTIONS(8516), + [anon_sym__Nonnull] = ACTIONS(8516), + [anon_sym__Nullable_result] = ACTIONS(8516), + [anon_sym__Null_unspecified] = ACTIONS(8516), + [anon_sym___autoreleasing] = ACTIONS(8516), + [anon_sym___nullable] = ACTIONS(8516), + [anon_sym___nonnull] = ACTIONS(8516), + [anon_sym___strong] = ACTIONS(8516), + [anon_sym___weak] = ACTIONS(8516), + [anon_sym___bridge] = ACTIONS(8516), + [anon_sym___bridge_transfer] = ACTIONS(8516), + [anon_sym___bridge_retained] = ACTIONS(8516), + [anon_sym___unsafe_unretained] = ACTIONS(8516), + [anon_sym___block] = ACTIONS(8516), + [anon_sym___kindof] = ACTIONS(8516), + [anon_sym___unused] = ACTIONS(8516), + [anon_sym__Complex] = ACTIONS(8516), + [anon_sym___complex] = ACTIONS(8516), + [anon_sym_IBOutlet] = ACTIONS(8516), + [anon_sym_IBInspectable] = ACTIONS(8516), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8516), + [anon_sym_COLON] = ACTIONS(8518), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), + [sym_method_attribute_specifier] = ACTIONS(8516), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8516), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8516), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8516), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8516), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8516), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8516), + [anon_sym_NS_AVAILABLE] = ACTIONS(8516), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8516), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8516), + [anon_sym_API_AVAILABLE] = ACTIONS(8516), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8516), + [anon_sym_API_DEPRECATED] = ACTIONS(8516), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8516), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8516), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8516), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8516), + [anon_sym___deprecated_msg] = ACTIONS(8516), + [anon_sym___deprecated_enum_msg] = ACTIONS(8516), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8516), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8516), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8516), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8516), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -537913,80 +534406,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3464] = { - [sym_attribute_specifier] = STATE(5581), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4247), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8356), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8358), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_identifier] = ACTIONS(8520), + [anon_sym_COMMA] = ACTIONS(8522), + [anon_sym_RPAREN] = ACTIONS(8522), + [anon_sym_LPAREN2] = ACTIONS(8522), + [anon_sym_STAR] = ACTIONS(8522), + [anon_sym_SEMI] = ACTIONS(8522), + [anon_sym_extern] = ACTIONS(8520), + [anon_sym___attribute] = ACTIONS(8520), + [anon_sym___attribute__] = ACTIONS(8520), + [anon_sym___declspec] = ACTIONS(8520), + [anon_sym___based] = ACTIONS(8520), + [anon_sym_LBRACE] = ACTIONS(8522), + [anon_sym_LBRACK] = ACTIONS(8522), + [anon_sym_static] = ACTIONS(8520), + [anon_sym_auto] = ACTIONS(8520), + [anon_sym_register] = ACTIONS(8520), + [anon_sym_inline] = ACTIONS(8520), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8520), + [anon_sym_const] = ACTIONS(8520), + [anon_sym_volatile] = ACTIONS(8520), + [anon_sym_restrict] = ACTIONS(8520), + [anon_sym__Atomic] = ACTIONS(8520), + [anon_sym_in] = ACTIONS(8520), + [anon_sym_out] = ACTIONS(8520), + [anon_sym_inout] = ACTIONS(8520), + [anon_sym_bycopy] = ACTIONS(8520), + [anon_sym_byref] = ACTIONS(8520), + [anon_sym_oneway] = ACTIONS(8520), + [anon_sym__Nullable] = ACTIONS(8520), + [anon_sym__Nonnull] = ACTIONS(8520), + [anon_sym__Nullable_result] = ACTIONS(8520), + [anon_sym__Null_unspecified] = ACTIONS(8520), + [anon_sym___autoreleasing] = ACTIONS(8520), + [anon_sym___nullable] = ACTIONS(8520), + [anon_sym___nonnull] = ACTIONS(8520), + [anon_sym___strong] = ACTIONS(8520), + [anon_sym___weak] = ACTIONS(8520), + [anon_sym___bridge] = ACTIONS(8520), + [anon_sym___bridge_transfer] = ACTIONS(8520), + [anon_sym___bridge_retained] = ACTIONS(8520), + [anon_sym___unsafe_unretained] = ACTIONS(8520), + [anon_sym___block] = ACTIONS(8520), + [anon_sym___kindof] = ACTIONS(8520), + [anon_sym___unused] = ACTIONS(8520), + [anon_sym__Complex] = ACTIONS(8520), + [anon_sym___complex] = ACTIONS(8520), + [anon_sym_IBOutlet] = ACTIONS(8520), + [anon_sym_IBInspectable] = ACTIONS(8520), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8520), + [anon_sym_COLON] = ACTIONS(8522), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8520), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8520), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8520), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8520), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8520), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8520), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8520), + [anon_sym_NS_AVAILABLE] = ACTIONS(8520), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8520), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8520), + [anon_sym_API_AVAILABLE] = ACTIONS(8520), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8520), + [anon_sym_API_DEPRECATED] = ACTIONS(8520), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8520), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8520), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8520), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8520), + [anon_sym___deprecated_msg] = ACTIONS(8520), + [anon_sym___deprecated_enum_msg] = ACTIONS(8520), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8520), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8520), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8520), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8520), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -537995,80 +534488,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3465] = { - [sym_attribute_specifier] = STATE(3554), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4097), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3451), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3451), - [sym_identifier] = ACTIONS(8360), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8362), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_identifier] = ACTIONS(8524), + [anon_sym_COMMA] = ACTIONS(8526), + [anon_sym_RPAREN] = ACTIONS(8526), + [anon_sym_LPAREN2] = ACTIONS(8526), + [anon_sym_STAR] = ACTIONS(8526), + [anon_sym_SEMI] = ACTIONS(8526), + [anon_sym_extern] = ACTIONS(8524), + [anon_sym___attribute] = ACTIONS(8524), + [anon_sym___attribute__] = ACTIONS(8524), + [anon_sym___declspec] = ACTIONS(8524), + [anon_sym___based] = ACTIONS(8524), + [anon_sym_LBRACE] = ACTIONS(8526), + [anon_sym_LBRACK] = ACTIONS(8526), + [anon_sym_static] = ACTIONS(8524), + [anon_sym_auto] = ACTIONS(8524), + [anon_sym_register] = ACTIONS(8524), + [anon_sym_inline] = ACTIONS(8524), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8524), + [anon_sym_const] = ACTIONS(8524), + [anon_sym_volatile] = ACTIONS(8524), + [anon_sym_restrict] = ACTIONS(8524), + [anon_sym__Atomic] = ACTIONS(8524), + [anon_sym_in] = ACTIONS(8524), + [anon_sym_out] = ACTIONS(8524), + [anon_sym_inout] = ACTIONS(8524), + [anon_sym_bycopy] = ACTIONS(8524), + [anon_sym_byref] = ACTIONS(8524), + [anon_sym_oneway] = ACTIONS(8524), + [anon_sym__Nullable] = ACTIONS(8524), + [anon_sym__Nonnull] = ACTIONS(8524), + [anon_sym__Nullable_result] = ACTIONS(8524), + [anon_sym__Null_unspecified] = ACTIONS(8524), + [anon_sym___autoreleasing] = ACTIONS(8524), + [anon_sym___nullable] = ACTIONS(8524), + [anon_sym___nonnull] = ACTIONS(8524), + [anon_sym___strong] = ACTIONS(8524), + [anon_sym___weak] = ACTIONS(8524), + [anon_sym___bridge] = ACTIONS(8524), + [anon_sym___bridge_transfer] = ACTIONS(8524), + [anon_sym___bridge_retained] = ACTIONS(8524), + [anon_sym___unsafe_unretained] = ACTIONS(8524), + [anon_sym___block] = ACTIONS(8524), + [anon_sym___kindof] = ACTIONS(8524), + [anon_sym___unused] = ACTIONS(8524), + [anon_sym__Complex] = ACTIONS(8524), + [anon_sym___complex] = ACTIONS(8524), + [anon_sym_IBOutlet] = ACTIONS(8524), + [anon_sym_IBInspectable] = ACTIONS(8524), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8524), + [anon_sym_COLON] = ACTIONS(8526), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), + [sym_method_attribute_specifier] = ACTIONS(8524), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8524), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8524), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8524), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8524), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8524), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8524), + [anon_sym_NS_AVAILABLE] = ACTIONS(8524), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8524), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8524), + [anon_sym_API_AVAILABLE] = ACTIONS(8524), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8524), + [anon_sym_API_DEPRECATED] = ACTIONS(8524), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8524), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8524), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8524), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8524), + [anon_sym___deprecated_msg] = ACTIONS(8524), + [anon_sym___deprecated_enum_msg] = ACTIONS(8524), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8524), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8524), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8524), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8524), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -538077,80 +534570,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3466] = { - [sym_attribute_specifier] = STATE(5645), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4170), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8364), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8366), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_attribute_specifier] = STATE(3422), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4273), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3421), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3421), + [sym_identifier] = ACTIONS(8528), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8530), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -538159,80 +534652,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3467] = { - [sym_attribute_specifier] = STATE(5397), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4209), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8340), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8342), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_identifier] = ACTIONS(8532), + [anon_sym_COMMA] = ACTIONS(8534), + [anon_sym_RPAREN] = ACTIONS(8534), + [anon_sym_LPAREN2] = ACTIONS(8534), + [anon_sym_STAR] = ACTIONS(8534), + [anon_sym_SEMI] = ACTIONS(8534), + [anon_sym_extern] = ACTIONS(8532), + [anon_sym___attribute] = ACTIONS(8532), + [anon_sym___attribute__] = ACTIONS(8532), + [anon_sym___declspec] = ACTIONS(8532), + [anon_sym___based] = ACTIONS(8532), + [anon_sym_LBRACE] = ACTIONS(8534), + [anon_sym_LBRACK] = ACTIONS(8534), + [anon_sym_static] = ACTIONS(8532), + [anon_sym_auto] = ACTIONS(8532), + [anon_sym_register] = ACTIONS(8532), + [anon_sym_inline] = ACTIONS(8532), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8532), + [anon_sym_const] = ACTIONS(8532), + [anon_sym_volatile] = ACTIONS(8532), + [anon_sym_restrict] = ACTIONS(8532), + [anon_sym__Atomic] = ACTIONS(8532), + [anon_sym_in] = ACTIONS(8532), + [anon_sym_out] = ACTIONS(8532), + [anon_sym_inout] = ACTIONS(8532), + [anon_sym_bycopy] = ACTIONS(8532), + [anon_sym_byref] = ACTIONS(8532), + [anon_sym_oneway] = ACTIONS(8532), + [anon_sym__Nullable] = ACTIONS(8532), + [anon_sym__Nonnull] = ACTIONS(8532), + [anon_sym__Nullable_result] = ACTIONS(8532), + [anon_sym__Null_unspecified] = ACTIONS(8532), + [anon_sym___autoreleasing] = ACTIONS(8532), + [anon_sym___nullable] = ACTIONS(8532), + [anon_sym___nonnull] = ACTIONS(8532), + [anon_sym___strong] = ACTIONS(8532), + [anon_sym___weak] = ACTIONS(8532), + [anon_sym___bridge] = ACTIONS(8532), + [anon_sym___bridge_transfer] = ACTIONS(8532), + [anon_sym___bridge_retained] = ACTIONS(8532), + [anon_sym___unsafe_unretained] = ACTIONS(8532), + [anon_sym___block] = ACTIONS(8532), + [anon_sym___kindof] = ACTIONS(8532), + [anon_sym___unused] = ACTIONS(8532), + [anon_sym__Complex] = ACTIONS(8532), + [anon_sym___complex] = ACTIONS(8532), + [anon_sym_IBOutlet] = ACTIONS(8532), + [anon_sym_IBInspectable] = ACTIONS(8532), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8532), + [anon_sym_COLON] = ACTIONS(8534), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8532), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8532), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8532), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8532), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8532), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8532), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8532), + [anon_sym_NS_AVAILABLE] = ACTIONS(8532), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8532), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8532), + [anon_sym_API_AVAILABLE] = ACTIONS(8532), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8532), + [anon_sym_API_DEPRECATED] = ACTIONS(8532), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8532), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8532), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8532), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8532), + [anon_sym___deprecated_msg] = ACTIONS(8532), + [anon_sym___deprecated_enum_msg] = ACTIONS(8532), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8532), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8532), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8532), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8532), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -538241,80 +534734,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3468] = { - [sym_attribute_specifier] = STATE(3479), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4184), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3446), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3446), - [sym_identifier] = ACTIONS(8368), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8370), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_attribute_specifier] = STATE(5313), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4141), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8536), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8538), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -538323,80 +534816,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3469] = { - [sym_attribute_specifier] = STATE(5651), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4169), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3492), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3492), - [sym_identifier] = ACTIONS(8372), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8374), + [sym_attribute_specifier] = STATE(5818), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4226), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3496), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3496), + [sym_identifier] = ACTIONS(8540), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8542), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -538405,80 +534898,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3470] = { - [sym_attribute_specifier] = STATE(5409), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4166), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8376), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8378), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_attribute_specifier] = STATE(3386), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4175), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3448), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3448), + [sym_identifier] = ACTIONS(8544), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8546), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -538487,80 +534980,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3471] = { - [sym_attribute_specifier] = STATE(5651), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4169), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8372), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8374), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_identifier] = ACTIONS(8548), + [anon_sym_COMMA] = ACTIONS(8550), + [anon_sym_RPAREN] = ACTIONS(8550), + [anon_sym_LPAREN2] = ACTIONS(8550), + [anon_sym_STAR] = ACTIONS(8550), + [anon_sym_SEMI] = ACTIONS(8550), + [anon_sym_extern] = ACTIONS(8548), + [anon_sym___attribute] = ACTIONS(8548), + [anon_sym___attribute__] = ACTIONS(8548), + [anon_sym___declspec] = ACTIONS(8548), + [anon_sym___based] = ACTIONS(8548), + [anon_sym_LBRACE] = ACTIONS(8550), + [anon_sym_LBRACK] = ACTIONS(8550), + [anon_sym_static] = ACTIONS(8548), + [anon_sym_auto] = ACTIONS(8548), + [anon_sym_register] = ACTIONS(8548), + [anon_sym_inline] = ACTIONS(8548), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8548), + [anon_sym_const] = ACTIONS(8548), + [anon_sym_volatile] = ACTIONS(8548), + [anon_sym_restrict] = ACTIONS(8548), + [anon_sym__Atomic] = ACTIONS(8548), + [anon_sym_in] = ACTIONS(8548), + [anon_sym_out] = ACTIONS(8548), + [anon_sym_inout] = ACTIONS(8548), + [anon_sym_bycopy] = ACTIONS(8548), + [anon_sym_byref] = ACTIONS(8548), + [anon_sym_oneway] = ACTIONS(8548), + [anon_sym__Nullable] = ACTIONS(8548), + [anon_sym__Nonnull] = ACTIONS(8548), + [anon_sym__Nullable_result] = ACTIONS(8548), + [anon_sym__Null_unspecified] = ACTIONS(8548), + [anon_sym___autoreleasing] = ACTIONS(8548), + [anon_sym___nullable] = ACTIONS(8548), + [anon_sym___nonnull] = ACTIONS(8548), + [anon_sym___strong] = ACTIONS(8548), + [anon_sym___weak] = ACTIONS(8548), + [anon_sym___bridge] = ACTIONS(8548), + [anon_sym___bridge_transfer] = ACTIONS(8548), + [anon_sym___bridge_retained] = ACTIONS(8548), + [anon_sym___unsafe_unretained] = ACTIONS(8548), + [anon_sym___block] = ACTIONS(8548), + [anon_sym___kindof] = ACTIONS(8548), + [anon_sym___unused] = ACTIONS(8548), + [anon_sym__Complex] = ACTIONS(8548), + [anon_sym___complex] = ACTIONS(8548), + [anon_sym_IBOutlet] = ACTIONS(8548), + [anon_sym_IBInspectable] = ACTIONS(8548), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8548), + [anon_sym_COLON] = ACTIONS(8550), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8548), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8548), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8548), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8548), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8548), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8548), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8548), + [anon_sym_NS_AVAILABLE] = ACTIONS(8548), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8548), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8548), + [anon_sym_API_AVAILABLE] = ACTIONS(8548), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8548), + [anon_sym_API_DEPRECATED] = ACTIONS(8548), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8548), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8548), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8548), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8548), + [anon_sym___deprecated_msg] = ACTIONS(8548), + [anon_sym___deprecated_enum_msg] = ACTIONS(8548), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8548), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8548), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8548), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8548), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -538569,80 +535062,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3472] = { - [sym_attribute_specifier] = STATE(5493), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4122), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8380), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8382), + [sym_attribute_specifier] = STATE(5538), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4153), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8552), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8554), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -538651,80 +535144,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3473] = { - [sym_attribute_specifier] = STATE(5493), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4122), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3457), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3457), - [sym_identifier] = ACTIONS(8380), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8382), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_field_declaration_list] = STATE(3456), + [sym_superclass_reference] = STATE(3378), + [sym_identifier] = ACTIONS(8023), + [anon_sym_LPAREN2] = ACTIONS(8025), + [anon_sym_STAR] = ACTIONS(8025), + [anon_sym_SEMI] = ACTIONS(8025), + [anon_sym_extern] = ACTIONS(8023), + [anon_sym___attribute] = ACTIONS(8023), + [anon_sym___attribute__] = ACTIONS(8023), + [anon_sym___declspec] = ACTIONS(8023), + [anon_sym___based] = ACTIONS(8023), + [anon_sym_LBRACE] = ACTIONS(8027), + [anon_sym_static] = ACTIONS(8023), + [anon_sym_auto] = ACTIONS(8023), + [anon_sym_register] = ACTIONS(8023), + [anon_sym_inline] = ACTIONS(8023), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8023), + [anon_sym_const] = ACTIONS(8023), + [anon_sym_volatile] = ACTIONS(8023), + [anon_sym_restrict] = ACTIONS(8023), + [anon_sym__Atomic] = ACTIONS(8023), + [anon_sym_in] = ACTIONS(8023), + [anon_sym_out] = ACTIONS(8023), + [anon_sym_inout] = ACTIONS(8023), + [anon_sym_bycopy] = ACTIONS(8023), + [anon_sym_byref] = ACTIONS(8023), + [anon_sym_oneway] = ACTIONS(8023), + [anon_sym__Nullable] = ACTIONS(8023), + [anon_sym__Nonnull] = ACTIONS(8023), + [anon_sym__Nullable_result] = ACTIONS(8023), + [anon_sym__Null_unspecified] = ACTIONS(8023), + [anon_sym___autoreleasing] = ACTIONS(8023), + [anon_sym___nullable] = ACTIONS(8023), + [anon_sym___nonnull] = ACTIONS(8023), + [anon_sym___strong] = ACTIONS(8023), + [anon_sym___weak] = ACTIONS(8023), + [anon_sym___bridge] = ACTIONS(8023), + [anon_sym___bridge_transfer] = ACTIONS(8023), + [anon_sym___bridge_retained] = ACTIONS(8023), + [anon_sym___unsafe_unretained] = ACTIONS(8023), + [anon_sym___block] = ACTIONS(8023), + [anon_sym___kindof] = ACTIONS(8023), + [anon_sym___unused] = ACTIONS(8023), + [anon_sym__Complex] = ACTIONS(8023), + [anon_sym___complex] = ACTIONS(8023), + [anon_sym_IBOutlet] = ACTIONS(8023), + [anon_sym_IBInspectable] = ACTIONS(8023), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8023), + [anon_sym_COLON] = ACTIONS(8253), + [anon_sym_ATdefs] = ACTIONS(8031), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8023), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8023), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8023), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8023), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8023), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8023), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8023), + [anon_sym_NS_AVAILABLE] = ACTIONS(8023), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8023), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_API_AVAILABLE] = ACTIONS(8023), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8023), + [anon_sym_API_DEPRECATED] = ACTIONS(8023), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8023), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8023), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8023), + [anon_sym___deprecated_msg] = ACTIONS(8023), + [anon_sym___deprecated_enum_msg] = ACTIONS(8023), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8023), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8023), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -538733,80 +535226,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3474] = { - [sym_identifier] = ACTIONS(8384), - [anon_sym_COMMA] = ACTIONS(8386), - [anon_sym_RPAREN] = ACTIONS(8386), - [anon_sym_LPAREN2] = ACTIONS(8386), - [anon_sym_STAR] = ACTIONS(8386), - [anon_sym_SEMI] = ACTIONS(8386), - [anon_sym_extern] = ACTIONS(8384), - [anon_sym___attribute] = ACTIONS(8384), - [anon_sym___attribute__] = ACTIONS(8384), - [anon_sym___declspec] = ACTIONS(8384), - [anon_sym___based] = ACTIONS(8384), - [anon_sym_LBRACE] = ACTIONS(8386), - [anon_sym_LBRACK] = ACTIONS(8386), - [anon_sym_static] = ACTIONS(8384), - [anon_sym_auto] = ACTIONS(8384), - [anon_sym_register] = ACTIONS(8384), - [anon_sym_inline] = ACTIONS(8384), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8384), - [anon_sym_const] = ACTIONS(8384), - [anon_sym_volatile] = ACTIONS(8384), - [anon_sym_restrict] = ACTIONS(8384), - [anon_sym__Atomic] = ACTIONS(8384), - [anon_sym_in] = ACTIONS(8384), - [anon_sym_out] = ACTIONS(8384), - [anon_sym_inout] = ACTIONS(8384), - [anon_sym_bycopy] = ACTIONS(8384), - [anon_sym_byref] = ACTIONS(8384), - [anon_sym_oneway] = ACTIONS(8384), - [anon_sym__Nullable] = ACTIONS(8384), - [anon_sym__Nonnull] = ACTIONS(8384), - [anon_sym__Nullable_result] = ACTIONS(8384), - [anon_sym__Null_unspecified] = ACTIONS(8384), - [anon_sym___autoreleasing] = ACTIONS(8384), - [anon_sym___nullable] = ACTIONS(8384), - [anon_sym___nonnull] = ACTIONS(8384), - [anon_sym___strong] = ACTIONS(8384), - [anon_sym___weak] = ACTIONS(8384), - [anon_sym___bridge] = ACTIONS(8384), - [anon_sym___bridge_transfer] = ACTIONS(8384), - [anon_sym___bridge_retained] = ACTIONS(8384), - [anon_sym___unsafe_unretained] = ACTIONS(8384), - [anon_sym___block] = ACTIONS(8384), - [anon_sym___kindof] = ACTIONS(8384), - [anon_sym___unused] = ACTIONS(8384), - [anon_sym__Complex] = ACTIONS(8384), - [anon_sym___complex] = ACTIONS(8384), - [anon_sym_IBOutlet] = ACTIONS(8384), - [anon_sym_IBInspectable] = ACTIONS(8384), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8384), - [anon_sym_COLON] = ACTIONS(8386), + [sym_attribute_specifier] = STATE(5816), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4231), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8556), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8558), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8384), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8384), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8384), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8384), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8384), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8384), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8384), - [anon_sym_NS_AVAILABLE] = ACTIONS(8384), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8384), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8384), - [anon_sym_API_AVAILABLE] = ACTIONS(8384), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8384), - [anon_sym_API_DEPRECATED] = ACTIONS(8384), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8384), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8384), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8384), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8384), - [anon_sym___deprecated_msg] = ACTIONS(8384), - [anon_sym___deprecated_enum_msg] = ACTIONS(8384), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8384), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8384), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8384), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8384), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -538815,80 +535308,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3475] = { - [sym_identifier] = ACTIONS(8388), - [anon_sym_COMMA] = ACTIONS(8390), - [anon_sym_RPAREN] = ACTIONS(8390), - [anon_sym_LPAREN2] = ACTIONS(8390), - [anon_sym_STAR] = ACTIONS(8390), - [anon_sym_SEMI] = ACTIONS(8390), - [anon_sym_extern] = ACTIONS(8388), - [anon_sym___attribute] = ACTIONS(8388), - [anon_sym___attribute__] = ACTIONS(8388), - [anon_sym___declspec] = ACTIONS(8388), - [anon_sym___based] = ACTIONS(8388), - [anon_sym_LBRACE] = ACTIONS(8390), - [anon_sym_LBRACK] = ACTIONS(8390), - [anon_sym_static] = ACTIONS(8388), - [anon_sym_auto] = ACTIONS(8388), - [anon_sym_register] = ACTIONS(8388), - [anon_sym_inline] = ACTIONS(8388), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8388), - [anon_sym_const] = ACTIONS(8388), - [anon_sym_volatile] = ACTIONS(8388), - [anon_sym_restrict] = ACTIONS(8388), - [anon_sym__Atomic] = ACTIONS(8388), - [anon_sym_in] = ACTIONS(8388), - [anon_sym_out] = ACTIONS(8388), - [anon_sym_inout] = ACTIONS(8388), - [anon_sym_bycopy] = ACTIONS(8388), - [anon_sym_byref] = ACTIONS(8388), - [anon_sym_oneway] = ACTIONS(8388), - [anon_sym__Nullable] = ACTIONS(8388), - [anon_sym__Nonnull] = ACTIONS(8388), - [anon_sym__Nullable_result] = ACTIONS(8388), - [anon_sym__Null_unspecified] = ACTIONS(8388), - [anon_sym___autoreleasing] = ACTIONS(8388), - [anon_sym___nullable] = ACTIONS(8388), - [anon_sym___nonnull] = ACTIONS(8388), - [anon_sym___strong] = ACTIONS(8388), - [anon_sym___weak] = ACTIONS(8388), - [anon_sym___bridge] = ACTIONS(8388), - [anon_sym___bridge_transfer] = ACTIONS(8388), - [anon_sym___bridge_retained] = ACTIONS(8388), - [anon_sym___unsafe_unretained] = ACTIONS(8388), - [anon_sym___block] = ACTIONS(8388), - [anon_sym___kindof] = ACTIONS(8388), - [anon_sym___unused] = ACTIONS(8388), - [anon_sym__Complex] = ACTIONS(8388), - [anon_sym___complex] = ACTIONS(8388), - [anon_sym_IBOutlet] = ACTIONS(8388), - [anon_sym_IBInspectable] = ACTIONS(8388), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8388), - [anon_sym_COLON] = ACTIONS(8390), + [sym_attribute_specifier] = STATE(5490), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4148), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3435), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3435), + [sym_identifier] = ACTIONS(8560), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8562), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8388), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8388), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8388), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8388), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8388), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8388), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8388), - [anon_sym_NS_AVAILABLE] = ACTIONS(8388), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8388), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8388), - [anon_sym_API_AVAILABLE] = ACTIONS(8388), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8388), - [anon_sym_API_DEPRECATED] = ACTIONS(8388), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8388), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8388), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8388), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8388), - [anon_sym___deprecated_msg] = ACTIONS(8388), - [anon_sym___deprecated_enum_msg] = ACTIONS(8388), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8388), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8388), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8388), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8388), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -538897,80 +535390,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3476] = { - [sym_attribute_specifier] = STATE(5334), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4210), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3541), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3541), - [sym_identifier] = ACTIONS(8392), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8394), + [sym_attribute_specifier] = STATE(5531), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4166), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8564), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8566), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -538979,80 +535472,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3477] = { - [sym_identifier] = ACTIONS(8396), - [anon_sym_COMMA] = ACTIONS(8398), - [anon_sym_RPAREN] = ACTIONS(8398), - [anon_sym_LPAREN2] = ACTIONS(8398), - [anon_sym_STAR] = ACTIONS(8398), - [anon_sym_SEMI] = ACTIONS(8398), - [anon_sym_extern] = ACTIONS(8396), - [anon_sym___attribute] = ACTIONS(8396), - [anon_sym___attribute__] = ACTIONS(8396), - [anon_sym___declspec] = ACTIONS(8396), - [anon_sym___based] = ACTIONS(8396), - [anon_sym_LBRACE] = ACTIONS(8398), - [anon_sym_LBRACK] = ACTIONS(8398), - [anon_sym_static] = ACTIONS(8396), - [anon_sym_auto] = ACTIONS(8396), - [anon_sym_register] = ACTIONS(8396), - [anon_sym_inline] = ACTIONS(8396), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8396), - [anon_sym_const] = ACTIONS(8396), - [anon_sym_volatile] = ACTIONS(8396), - [anon_sym_restrict] = ACTIONS(8396), - [anon_sym__Atomic] = ACTIONS(8396), - [anon_sym_in] = ACTIONS(8396), - [anon_sym_out] = ACTIONS(8396), - [anon_sym_inout] = ACTIONS(8396), - [anon_sym_bycopy] = ACTIONS(8396), - [anon_sym_byref] = ACTIONS(8396), - [anon_sym_oneway] = ACTIONS(8396), - [anon_sym__Nullable] = ACTIONS(8396), - [anon_sym__Nonnull] = ACTIONS(8396), - [anon_sym__Nullable_result] = ACTIONS(8396), - [anon_sym__Null_unspecified] = ACTIONS(8396), - [anon_sym___autoreleasing] = ACTIONS(8396), - [anon_sym___nullable] = ACTIONS(8396), - [anon_sym___nonnull] = ACTIONS(8396), - [anon_sym___strong] = ACTIONS(8396), - [anon_sym___weak] = ACTIONS(8396), - [anon_sym___bridge] = ACTIONS(8396), - [anon_sym___bridge_transfer] = ACTIONS(8396), - [anon_sym___bridge_retained] = ACTIONS(8396), - [anon_sym___unsafe_unretained] = ACTIONS(8396), - [anon_sym___block] = ACTIONS(8396), - [anon_sym___kindof] = ACTIONS(8396), - [anon_sym___unused] = ACTIONS(8396), - [anon_sym__Complex] = ACTIONS(8396), - [anon_sym___complex] = ACTIONS(8396), - [anon_sym_IBOutlet] = ACTIONS(8396), - [anon_sym_IBInspectable] = ACTIONS(8396), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8396), - [anon_sym_COLON] = ACTIONS(8398), + [sym_attribute_specifier] = STATE(5313), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4141), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3403), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3403), + [sym_identifier] = ACTIONS(8536), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8568), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8396), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8396), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8396), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8396), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8396), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8396), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8396), - [anon_sym_NS_AVAILABLE] = ACTIONS(8396), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8396), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8396), - [anon_sym_API_AVAILABLE] = ACTIONS(8396), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8396), - [anon_sym_API_DEPRECATED] = ACTIONS(8396), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8396), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8396), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8396), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8396), - [anon_sym___deprecated_msg] = ACTIONS(8396), - [anon_sym___deprecated_enum_msg] = ACTIONS(8396), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8396), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8396), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8396), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8396), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -539061,80 +535554,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3478] = { - [sym_attribute_specifier] = STATE(5427), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4147), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8400), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8402), + [sym_attribute_specifier] = STATE(5818), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4226), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8540), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8570), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -539143,80 +535636,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3479] = { - [sym_attribute_specifier] = STATE(5430), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4141), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3496), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3496), - [sym_identifier] = ACTIONS(8277), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8283), + [sym_attribute_specifier] = STATE(5490), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4148), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8560), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8572), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -539225,80 +535718,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3480] = { - [sym_attribute_specifier] = STATE(5334), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4210), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8392), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8394), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_attribute_specifier] = STATE(3447), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4156), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3450), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3450), + [sym_identifier] = ACTIONS(8574), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8576), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -539307,80 +535800,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3481] = { - [sym_attribute_specifier] = STATE(3558), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4213), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3523), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3523), - [sym_identifier] = ACTIONS(8404), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8406), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_attribute_specifier] = STATE(5280), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4269), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8578), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8580), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -539389,80 +535882,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3482] = { - [sym_attribute_specifier] = STATE(5497), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4126), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8408), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8410), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_attribute_specifier] = STATE(3490), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4189), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3492), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3492), + [sym_identifier] = ACTIONS(8582), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8584), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -539471,80 +535964,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3483] = { - [sym_attribute_specifier] = STATE(3515), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4088), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3519), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3519), - [sym_identifier] = ACTIONS(8412), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8414), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [sym_attribute_specifier] = STATE(3418), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4143), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3409), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3409), + [sym_identifier] = ACTIONS(8586), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8588), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -539553,80 +536046,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3484] = { - [sym_attribute_specifier] = STATE(5343), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4252), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8416), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8418), + [sym_attribute_specifier] = STATE(5716), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4165), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3434), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3434), + [sym_identifier] = ACTIONS(8590), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8592), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -539635,80 +536128,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3485] = { - [sym_identifier] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6861), - [anon_sym_RPAREN] = ACTIONS(6861), - [anon_sym_LPAREN2] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(6861), - [anon_sym_SEMI] = ACTIONS(6861), - [anon_sym_extern] = ACTIONS(6859), - [anon_sym___attribute] = ACTIONS(6859), - [anon_sym___attribute__] = ACTIONS(6859), - [anon_sym___declspec] = ACTIONS(6859), - [anon_sym___based] = ACTIONS(6859), - [anon_sym_LBRACE] = ACTIONS(6861), - [anon_sym_LBRACK] = ACTIONS(6861), - [anon_sym_static] = ACTIONS(6859), - [anon_sym_auto] = ACTIONS(6859), - [anon_sym_register] = ACTIONS(6859), - [anon_sym_inline] = ACTIONS(6859), - [aux_sym_storage_class_specifier_token1] = ACTIONS(6859), - [anon_sym_const] = ACTIONS(6859), - [anon_sym_volatile] = ACTIONS(6859), - [anon_sym_restrict] = ACTIONS(6859), - [anon_sym__Atomic] = ACTIONS(6859), - [anon_sym_in] = ACTIONS(6859), - [anon_sym_out] = ACTIONS(6859), - [anon_sym_inout] = ACTIONS(6859), - [anon_sym_bycopy] = ACTIONS(6859), - [anon_sym_byref] = ACTIONS(6859), - [anon_sym_oneway] = ACTIONS(6859), - [anon_sym__Nullable] = ACTIONS(6859), - [anon_sym__Nonnull] = ACTIONS(6859), - [anon_sym__Nullable_result] = ACTIONS(6859), - [anon_sym__Null_unspecified] = ACTIONS(6859), - [anon_sym___autoreleasing] = ACTIONS(6859), - [anon_sym___nullable] = ACTIONS(6859), - [anon_sym___nonnull] = ACTIONS(6859), - [anon_sym___strong] = ACTIONS(6859), - [anon_sym___weak] = ACTIONS(6859), - [anon_sym___bridge] = ACTIONS(6859), - [anon_sym___bridge_transfer] = ACTIONS(6859), - [anon_sym___bridge_retained] = ACTIONS(6859), - [anon_sym___unsafe_unretained] = ACTIONS(6859), - [anon_sym___block] = ACTIONS(6859), - [anon_sym___kindof] = ACTIONS(6859), - [anon_sym___unused] = ACTIONS(6859), - [anon_sym__Complex] = ACTIONS(6859), - [anon_sym___complex] = ACTIONS(6859), - [anon_sym_IBOutlet] = ACTIONS(6859), - [anon_sym_IBInspectable] = ACTIONS(6859), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6859), - [anon_sym_COLON] = ACTIONS(6861), + [sym_attribute_specifier] = STATE(5716), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4165), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8590), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8594), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6859), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6859), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6859), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6859), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6859), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6859), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6859), - [anon_sym_NS_AVAILABLE] = ACTIONS(6859), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6859), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6859), - [anon_sym_API_AVAILABLE] = ACTIONS(6859), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6859), - [anon_sym_API_DEPRECATED] = ACTIONS(6859), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6859), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6859), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6859), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6859), - [anon_sym___deprecated_msg] = ACTIONS(6859), - [anon_sym___deprecated_enum_msg] = ACTIONS(6859), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6859), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6859), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6859), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6859), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -539717,4598 +536210,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3486] = { - [sym_attribute_specifier] = STATE(3447), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4112), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3507), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3507), - [sym_identifier] = ACTIONS(8420), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8422), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3487] = { - [sym_attribute_specifier] = STATE(5272), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4191), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8424), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8426), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3488] = { - [sym_identifier] = ACTIONS(8428), - [anon_sym_COMMA] = ACTIONS(8430), - [anon_sym_RPAREN] = ACTIONS(8430), - [anon_sym_LPAREN2] = ACTIONS(8430), - [anon_sym_STAR] = ACTIONS(8430), - [anon_sym_SEMI] = ACTIONS(8430), - [anon_sym_extern] = ACTIONS(8428), - [anon_sym___attribute] = ACTIONS(8428), - [anon_sym___attribute__] = ACTIONS(8428), - [anon_sym___declspec] = ACTIONS(8428), - [anon_sym___based] = ACTIONS(8428), - [anon_sym_LBRACE] = ACTIONS(8430), - [anon_sym_LBRACK] = ACTIONS(8430), - [anon_sym_static] = ACTIONS(8428), - [anon_sym_auto] = ACTIONS(8428), - [anon_sym_register] = ACTIONS(8428), - [anon_sym_inline] = ACTIONS(8428), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8428), - [anon_sym_const] = ACTIONS(8428), - [anon_sym_volatile] = ACTIONS(8428), - [anon_sym_restrict] = ACTIONS(8428), - [anon_sym__Atomic] = ACTIONS(8428), - [anon_sym_in] = ACTIONS(8428), - [anon_sym_out] = ACTIONS(8428), - [anon_sym_inout] = ACTIONS(8428), - [anon_sym_bycopy] = ACTIONS(8428), - [anon_sym_byref] = ACTIONS(8428), - [anon_sym_oneway] = ACTIONS(8428), - [anon_sym__Nullable] = ACTIONS(8428), - [anon_sym__Nonnull] = ACTIONS(8428), - [anon_sym__Nullable_result] = ACTIONS(8428), - [anon_sym__Null_unspecified] = ACTIONS(8428), - [anon_sym___autoreleasing] = ACTIONS(8428), - [anon_sym___nullable] = ACTIONS(8428), - [anon_sym___nonnull] = ACTIONS(8428), - [anon_sym___strong] = ACTIONS(8428), - [anon_sym___weak] = ACTIONS(8428), - [anon_sym___bridge] = ACTIONS(8428), - [anon_sym___bridge_transfer] = ACTIONS(8428), - [anon_sym___bridge_retained] = ACTIONS(8428), - [anon_sym___unsafe_unretained] = ACTIONS(8428), - [anon_sym___block] = ACTIONS(8428), - [anon_sym___kindof] = ACTIONS(8428), - [anon_sym___unused] = ACTIONS(8428), - [anon_sym__Complex] = ACTIONS(8428), - [anon_sym___complex] = ACTIONS(8428), - [anon_sym_IBOutlet] = ACTIONS(8428), - [anon_sym_IBInspectable] = ACTIONS(8428), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8428), - [anon_sym_COLON] = ACTIONS(8430), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8428), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8428), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8428), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8428), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8428), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8428), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8428), - [anon_sym_NS_AVAILABLE] = ACTIONS(8428), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8428), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8428), - [anon_sym_API_AVAILABLE] = ACTIONS(8428), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8428), - [anon_sym_API_DEPRECATED] = ACTIONS(8428), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8428), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8428), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8428), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8428), - [anon_sym___deprecated_msg] = ACTIONS(8428), - [anon_sym___deprecated_enum_msg] = ACTIONS(8428), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8428), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8428), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8428), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8428), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3489] = { - [sym_attribute_specifier] = STATE(3528), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4078), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3453), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3453), - [sym_identifier] = ACTIONS(8432), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8434), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3490] = { - [sym_attribute_specifier] = STATE(5275), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4212), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8436), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8438), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3491] = { - [sym_attribute_specifier] = STATE(3456), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4109), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3455), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3455), - [sym_identifier] = ACTIONS(8440), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8442), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3492] = { - [sym_attribute_specifier] = STATE(5694), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4077), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8444), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8446), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3493] = { - [sym_attribute_specifier] = STATE(3497), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4121), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3498), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3498), - [sym_identifier] = ACTIONS(8448), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8450), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3494] = { - [sym_attribute_specifier] = STATE(5275), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4212), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3511), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3511), - [sym_identifier] = ACTIONS(8436), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8438), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3495] = { - [sym_identifier] = ACTIONS(8452), - [anon_sym_COMMA] = ACTIONS(8454), - [anon_sym_RPAREN] = ACTIONS(8454), - [anon_sym_LPAREN2] = ACTIONS(8454), - [anon_sym_STAR] = ACTIONS(8454), - [anon_sym_SEMI] = ACTIONS(8454), - [anon_sym_extern] = ACTIONS(8452), - [anon_sym___attribute] = ACTIONS(8452), - [anon_sym___attribute__] = ACTIONS(8452), - [anon_sym___declspec] = ACTIONS(8452), - [anon_sym___based] = ACTIONS(8452), - [anon_sym_LBRACE] = ACTIONS(8454), - [anon_sym_LBRACK] = ACTIONS(8454), - [anon_sym_static] = ACTIONS(8452), - [anon_sym_auto] = ACTIONS(8452), - [anon_sym_register] = ACTIONS(8452), - [anon_sym_inline] = ACTIONS(8452), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8452), - [anon_sym_const] = ACTIONS(8452), - [anon_sym_volatile] = ACTIONS(8452), - [anon_sym_restrict] = ACTIONS(8452), - [anon_sym__Atomic] = ACTIONS(8452), - [anon_sym_in] = ACTIONS(8452), - [anon_sym_out] = ACTIONS(8452), - [anon_sym_inout] = ACTIONS(8452), - [anon_sym_bycopy] = ACTIONS(8452), - [anon_sym_byref] = ACTIONS(8452), - [anon_sym_oneway] = ACTIONS(8452), - [anon_sym__Nullable] = ACTIONS(8452), - [anon_sym__Nonnull] = ACTIONS(8452), - [anon_sym__Nullable_result] = ACTIONS(8452), - [anon_sym__Null_unspecified] = ACTIONS(8452), - [anon_sym___autoreleasing] = ACTIONS(8452), - [anon_sym___nullable] = ACTIONS(8452), - [anon_sym___nonnull] = ACTIONS(8452), - [anon_sym___strong] = ACTIONS(8452), - [anon_sym___weak] = ACTIONS(8452), - [anon_sym___bridge] = ACTIONS(8452), - [anon_sym___bridge_transfer] = ACTIONS(8452), - [anon_sym___bridge_retained] = ACTIONS(8452), - [anon_sym___unsafe_unretained] = ACTIONS(8452), - [anon_sym___block] = ACTIONS(8452), - [anon_sym___kindof] = ACTIONS(8452), - [anon_sym___unused] = ACTIONS(8452), - [anon_sym__Complex] = ACTIONS(8452), - [anon_sym___complex] = ACTIONS(8452), - [anon_sym_IBOutlet] = ACTIONS(8452), - [anon_sym_IBInspectable] = ACTIONS(8452), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8452), - [anon_sym_COLON] = ACTIONS(8454), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8452), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8452), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8452), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8452), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8452), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8452), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8452), - [anon_sym_NS_AVAILABLE] = ACTIONS(8452), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8452), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8452), - [anon_sym_API_AVAILABLE] = ACTIONS(8452), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8452), - [anon_sym_API_DEPRECATED] = ACTIONS(8452), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8452), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8452), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8452), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8452), - [anon_sym___deprecated_msg] = ACTIONS(8452), - [anon_sym___deprecated_enum_msg] = ACTIONS(8452), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8452), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8452), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8452), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8452), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3496] = { - [sym_attribute_specifier] = STATE(5450), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4117), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8456), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8458), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3497] = { - [sym_attribute_specifier] = STATE(5453), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4116), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3500), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3500), - [sym_identifier] = ACTIONS(8460), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8462), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3498] = { - [sym_attribute_specifier] = STATE(5453), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4116), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8460), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8462), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3499] = { - [sym_attribute_specifier] = STATE(3504), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4108), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3508), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3508), - [sym_identifier] = ACTIONS(8464), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8466), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3500] = { - [sym_attribute_specifier] = STATE(5467), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4105), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8468), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8470), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3501] = { - [sym_attribute_specifier] = STATE(5906), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4075), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8472), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8474), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3502] = { - [sym_identifier] = ACTIONS(8476), - [anon_sym_COMMA] = ACTIONS(8478), - [anon_sym_RPAREN] = ACTIONS(8478), - [anon_sym_LPAREN2] = ACTIONS(8478), - [anon_sym_STAR] = ACTIONS(8478), - [anon_sym_SEMI] = ACTIONS(8478), - [anon_sym_extern] = ACTIONS(8476), - [anon_sym___attribute] = ACTIONS(8476), - [anon_sym___attribute__] = ACTIONS(8476), - [anon_sym___declspec] = ACTIONS(8476), - [anon_sym___based] = ACTIONS(8476), - [anon_sym_LBRACE] = ACTIONS(8478), - [anon_sym_LBRACK] = ACTIONS(8478), - [anon_sym_static] = ACTIONS(8476), - [anon_sym_auto] = ACTIONS(8476), - [anon_sym_register] = ACTIONS(8476), - [anon_sym_inline] = ACTIONS(8476), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8476), - [anon_sym_const] = ACTIONS(8476), - [anon_sym_volatile] = ACTIONS(8476), - [anon_sym_restrict] = ACTIONS(8476), - [anon_sym__Atomic] = ACTIONS(8476), - [anon_sym_in] = ACTIONS(8476), - [anon_sym_out] = ACTIONS(8476), - [anon_sym_inout] = ACTIONS(8476), - [anon_sym_bycopy] = ACTIONS(8476), - [anon_sym_byref] = ACTIONS(8476), - [anon_sym_oneway] = ACTIONS(8476), - [anon_sym__Nullable] = ACTIONS(8476), - [anon_sym__Nonnull] = ACTIONS(8476), - [anon_sym__Nullable_result] = ACTIONS(8476), - [anon_sym__Null_unspecified] = ACTIONS(8476), - [anon_sym___autoreleasing] = ACTIONS(8476), - [anon_sym___nullable] = ACTIONS(8476), - [anon_sym___nonnull] = ACTIONS(8476), - [anon_sym___strong] = ACTIONS(8476), - [anon_sym___weak] = ACTIONS(8476), - [anon_sym___bridge] = ACTIONS(8476), - [anon_sym___bridge_transfer] = ACTIONS(8476), - [anon_sym___bridge_retained] = ACTIONS(8476), - [anon_sym___unsafe_unretained] = ACTIONS(8476), - [anon_sym___block] = ACTIONS(8476), - [anon_sym___kindof] = ACTIONS(8476), - [anon_sym___unused] = ACTIONS(8476), - [anon_sym__Complex] = ACTIONS(8476), - [anon_sym___complex] = ACTIONS(8476), - [anon_sym_IBOutlet] = ACTIONS(8476), - [anon_sym_IBInspectable] = ACTIONS(8476), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8476), - [anon_sym_COLON] = ACTIONS(8478), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8476), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8476), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8476), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8476), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8476), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8476), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8476), - [anon_sym_NS_AVAILABLE] = ACTIONS(8476), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8476), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8476), - [anon_sym_API_AVAILABLE] = ACTIONS(8476), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8476), - [anon_sym_API_DEPRECATED] = ACTIONS(8476), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8476), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8476), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8476), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8476), - [anon_sym___deprecated_msg] = ACTIONS(8476), - [anon_sym___deprecated_enum_msg] = ACTIONS(8476), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8476), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8476), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8476), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8476), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3503] = { - [sym_attribute_specifier] = STATE(3539), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4237), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3527), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3527), - [sym_identifier] = ACTIONS(8480), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8482), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3504] = { - [sym_attribute_specifier] = STATE(5470), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4099), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3520), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3520), - [sym_identifier] = ACTIONS(8484), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8486), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3505] = { - [sym_identifier] = ACTIONS(8488), - [anon_sym_COMMA] = ACTIONS(8490), - [anon_sym_RPAREN] = ACTIONS(8490), - [anon_sym_LPAREN2] = ACTIONS(8490), - [anon_sym_STAR] = ACTIONS(8490), - [anon_sym_SEMI] = ACTIONS(8490), - [anon_sym_extern] = ACTIONS(8488), - [anon_sym___attribute] = ACTIONS(8488), - [anon_sym___attribute__] = ACTIONS(8488), - [anon_sym___declspec] = ACTIONS(8488), - [anon_sym___based] = ACTIONS(8488), - [anon_sym_LBRACE] = ACTIONS(8490), - [anon_sym_LBRACK] = ACTIONS(8490), - [anon_sym_static] = ACTIONS(8488), - [anon_sym_auto] = ACTIONS(8488), - [anon_sym_register] = ACTIONS(8488), - [anon_sym_inline] = ACTIONS(8488), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8488), - [anon_sym_const] = ACTIONS(8488), - [anon_sym_volatile] = ACTIONS(8488), - [anon_sym_restrict] = ACTIONS(8488), - [anon_sym__Atomic] = ACTIONS(8488), - [anon_sym_in] = ACTIONS(8488), - [anon_sym_out] = ACTIONS(8488), - [anon_sym_inout] = ACTIONS(8488), - [anon_sym_bycopy] = ACTIONS(8488), - [anon_sym_byref] = ACTIONS(8488), - [anon_sym_oneway] = ACTIONS(8488), - [anon_sym__Nullable] = ACTIONS(8488), - [anon_sym__Nonnull] = ACTIONS(8488), - [anon_sym__Nullable_result] = ACTIONS(8488), - [anon_sym__Null_unspecified] = ACTIONS(8488), - [anon_sym___autoreleasing] = ACTIONS(8488), - [anon_sym___nullable] = ACTIONS(8488), - [anon_sym___nonnull] = ACTIONS(8488), - [anon_sym___strong] = ACTIONS(8488), - [anon_sym___weak] = ACTIONS(8488), - [anon_sym___bridge] = ACTIONS(8488), - [anon_sym___bridge_transfer] = ACTIONS(8488), - [anon_sym___bridge_retained] = ACTIONS(8488), - [anon_sym___unsafe_unretained] = ACTIONS(8488), - [anon_sym___block] = ACTIONS(8488), - [anon_sym___kindof] = ACTIONS(8488), - [anon_sym___unused] = ACTIONS(8488), - [anon_sym__Complex] = ACTIONS(8488), - [anon_sym___complex] = ACTIONS(8488), - [anon_sym_IBOutlet] = ACTIONS(8488), - [anon_sym_IBInspectable] = ACTIONS(8488), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8488), - [anon_sym_COLON] = ACTIONS(8490), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8488), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8488), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8488), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8488), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8488), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8488), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8488), - [anon_sym_NS_AVAILABLE] = ACTIONS(8488), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8488), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8488), - [anon_sym_API_AVAILABLE] = ACTIONS(8488), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8488), - [anon_sym_API_DEPRECATED] = ACTIONS(8488), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8488), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8488), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8488), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8488), - [anon_sym___deprecated_msg] = ACTIONS(8488), - [anon_sym___deprecated_enum_msg] = ACTIONS(8488), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8488), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8488), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8488), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8488), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3506] = { - [sym_attribute_specifier] = STATE(5276), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4127), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3487), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3487), - [sym_identifier] = ACTIONS(8492), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8494), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3507] = { - [sym_attribute_specifier] = STATE(5902), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4118), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8285), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8287), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3508] = { - [sym_attribute_specifier] = STATE(5470), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4099), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8484), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8486), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3509] = { - [sym_field_declaration_list] = STATE(3538), - [sym_superclass_reference] = STATE(3422), - [sym_identifier] = ACTIONS(8099), - [anon_sym_LPAREN2] = ACTIONS(8101), - [anon_sym_STAR] = ACTIONS(8101), - [anon_sym_SEMI] = ACTIONS(8101), - [anon_sym_extern] = ACTIONS(8099), - [anon_sym___attribute] = ACTIONS(8099), - [anon_sym___attribute__] = ACTIONS(8099), - [anon_sym___declspec] = ACTIONS(8099), - [anon_sym___based] = ACTIONS(8099), - [anon_sym_LBRACE] = ACTIONS(8103), - [anon_sym_static] = ACTIONS(8099), - [anon_sym_auto] = ACTIONS(8099), - [anon_sym_register] = ACTIONS(8099), - [anon_sym_inline] = ACTIONS(8099), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8099), - [anon_sym_const] = ACTIONS(8099), - [anon_sym_volatile] = ACTIONS(8099), - [anon_sym_restrict] = ACTIONS(8099), - [anon_sym__Atomic] = ACTIONS(8099), - [anon_sym_in] = ACTIONS(8099), - [anon_sym_out] = ACTIONS(8099), - [anon_sym_inout] = ACTIONS(8099), - [anon_sym_bycopy] = ACTIONS(8099), - [anon_sym_byref] = ACTIONS(8099), - [anon_sym_oneway] = ACTIONS(8099), - [anon_sym__Nullable] = ACTIONS(8099), - [anon_sym__Nonnull] = ACTIONS(8099), - [anon_sym__Nullable_result] = ACTIONS(8099), - [anon_sym__Null_unspecified] = ACTIONS(8099), - [anon_sym___autoreleasing] = ACTIONS(8099), - [anon_sym___nullable] = ACTIONS(8099), - [anon_sym___nonnull] = ACTIONS(8099), - [anon_sym___strong] = ACTIONS(8099), - [anon_sym___weak] = ACTIONS(8099), - [anon_sym___bridge] = ACTIONS(8099), - [anon_sym___bridge_transfer] = ACTIONS(8099), - [anon_sym___bridge_retained] = ACTIONS(8099), - [anon_sym___unsafe_unretained] = ACTIONS(8099), - [anon_sym___block] = ACTIONS(8099), - [anon_sym___kindof] = ACTIONS(8099), - [anon_sym___unused] = ACTIONS(8099), - [anon_sym__Complex] = ACTIONS(8099), - [anon_sym___complex] = ACTIONS(8099), - [anon_sym_IBOutlet] = ACTIONS(8099), - [anon_sym_IBInspectable] = ACTIONS(8099), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8099), - [anon_sym_COLON] = ACTIONS(8496), - [anon_sym_ATdefs] = ACTIONS(8106), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8099), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8099), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8099), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8099), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8099), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8099), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8099), - [anon_sym_NS_AVAILABLE] = ACTIONS(8099), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8099), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_API_AVAILABLE] = ACTIONS(8099), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8099), - [anon_sym_API_DEPRECATED] = ACTIONS(8099), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8099), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8099), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8099), - [anon_sym___deprecated_msg] = ACTIONS(8099), - [anon_sym___deprecated_enum_msg] = ACTIONS(8099), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8099), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8099), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3510] = { - [sym_identifier] = ACTIONS(8499), - [anon_sym_COMMA] = ACTIONS(8501), - [anon_sym_RPAREN] = ACTIONS(8501), - [anon_sym_LPAREN2] = ACTIONS(8501), - [anon_sym_STAR] = ACTIONS(8501), - [anon_sym_SEMI] = ACTIONS(8501), - [anon_sym_extern] = ACTIONS(8499), - [anon_sym___attribute] = ACTIONS(8499), - [anon_sym___attribute__] = ACTIONS(8499), - [anon_sym___declspec] = ACTIONS(8499), - [anon_sym___based] = ACTIONS(8499), - [anon_sym_LBRACE] = ACTIONS(8501), - [anon_sym_LBRACK] = ACTIONS(8501), - [anon_sym_static] = ACTIONS(8499), - [anon_sym_auto] = ACTIONS(8499), - [anon_sym_register] = ACTIONS(8499), - [anon_sym_inline] = ACTIONS(8499), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8499), - [anon_sym_const] = ACTIONS(8499), - [anon_sym_volatile] = ACTIONS(8499), - [anon_sym_restrict] = ACTIONS(8499), - [anon_sym__Atomic] = ACTIONS(8499), - [anon_sym_in] = ACTIONS(8499), - [anon_sym_out] = ACTIONS(8499), - [anon_sym_inout] = ACTIONS(8499), - [anon_sym_bycopy] = ACTIONS(8499), - [anon_sym_byref] = ACTIONS(8499), - [anon_sym_oneway] = ACTIONS(8499), - [anon_sym__Nullable] = ACTIONS(8499), - [anon_sym__Nonnull] = ACTIONS(8499), - [anon_sym__Nullable_result] = ACTIONS(8499), - [anon_sym__Null_unspecified] = ACTIONS(8499), - [anon_sym___autoreleasing] = ACTIONS(8499), - [anon_sym___nullable] = ACTIONS(8499), - [anon_sym___nonnull] = ACTIONS(8499), - [anon_sym___strong] = ACTIONS(8499), - [anon_sym___weak] = ACTIONS(8499), - [anon_sym___bridge] = ACTIONS(8499), - [anon_sym___bridge_transfer] = ACTIONS(8499), - [anon_sym___bridge_retained] = ACTIONS(8499), - [anon_sym___unsafe_unretained] = ACTIONS(8499), - [anon_sym___block] = ACTIONS(8499), - [anon_sym___kindof] = ACTIONS(8499), - [anon_sym___unused] = ACTIONS(8499), - [anon_sym__Complex] = ACTIONS(8499), - [anon_sym___complex] = ACTIONS(8499), - [anon_sym_IBOutlet] = ACTIONS(8499), - [anon_sym_IBInspectable] = ACTIONS(8499), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8499), - [anon_sym_COLON] = ACTIONS(8501), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8499), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8499), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8499), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8499), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8499), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8499), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8499), - [anon_sym_NS_AVAILABLE] = ACTIONS(8499), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8499), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8499), - [anon_sym_API_AVAILABLE] = ACTIONS(8499), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8499), - [anon_sym_API_DEPRECATED] = ACTIONS(8499), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8499), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8499), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8499), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8499), - [anon_sym___deprecated_msg] = ACTIONS(8499), - [anon_sym___deprecated_enum_msg] = ACTIONS(8499), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8499), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8499), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8499), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8499), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3511] = { - [sym_attribute_specifier] = STATE(5313), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4125), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8503), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8505), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3512] = { - [sym_attribute_specifier] = STATE(5276), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4127), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8492), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8494), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3513] = { - [sym_identifier] = ACTIONS(8507), - [anon_sym_COMMA] = ACTIONS(8509), - [anon_sym_RPAREN] = ACTIONS(8509), - [anon_sym_LPAREN2] = ACTIONS(8509), - [anon_sym_STAR] = ACTIONS(8509), - [anon_sym_SEMI] = ACTIONS(8509), - [anon_sym_extern] = ACTIONS(8507), - [anon_sym___attribute] = ACTIONS(8507), - [anon_sym___attribute__] = ACTIONS(8507), - [anon_sym___declspec] = ACTIONS(8507), - [anon_sym___based] = ACTIONS(8507), - [anon_sym_LBRACE] = ACTIONS(8509), - [anon_sym_LBRACK] = ACTIONS(8509), - [anon_sym_static] = ACTIONS(8507), - [anon_sym_auto] = ACTIONS(8507), - [anon_sym_register] = ACTIONS(8507), - [anon_sym_inline] = ACTIONS(8507), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8507), - [anon_sym_const] = ACTIONS(8507), - [anon_sym_volatile] = ACTIONS(8507), - [anon_sym_restrict] = ACTIONS(8507), - [anon_sym__Atomic] = ACTIONS(8507), - [anon_sym_in] = ACTIONS(8507), - [anon_sym_out] = ACTIONS(8507), - [anon_sym_inout] = ACTIONS(8507), - [anon_sym_bycopy] = ACTIONS(8507), - [anon_sym_byref] = ACTIONS(8507), - [anon_sym_oneway] = ACTIONS(8507), - [anon_sym__Nullable] = ACTIONS(8507), - [anon_sym__Nonnull] = ACTIONS(8507), - [anon_sym__Nullable_result] = ACTIONS(8507), - [anon_sym__Null_unspecified] = ACTIONS(8507), - [anon_sym___autoreleasing] = ACTIONS(8507), - [anon_sym___nullable] = ACTIONS(8507), - [anon_sym___nonnull] = ACTIONS(8507), - [anon_sym___strong] = ACTIONS(8507), - [anon_sym___weak] = ACTIONS(8507), - [anon_sym___bridge] = ACTIONS(8507), - [anon_sym___bridge_transfer] = ACTIONS(8507), - [anon_sym___bridge_retained] = ACTIONS(8507), - [anon_sym___unsafe_unretained] = ACTIONS(8507), - [anon_sym___block] = ACTIONS(8507), - [anon_sym___kindof] = ACTIONS(8507), - [anon_sym___unused] = ACTIONS(8507), - [anon_sym__Complex] = ACTIONS(8507), - [anon_sym___complex] = ACTIONS(8507), - [anon_sym_IBOutlet] = ACTIONS(8507), - [anon_sym_IBInspectable] = ACTIONS(8507), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8507), - [anon_sym_COLON] = ACTIONS(8509), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8507), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8507), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8507), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8507), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8507), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8507), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8507), - [anon_sym_NS_AVAILABLE] = ACTIONS(8507), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8507), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8507), - [anon_sym_API_AVAILABLE] = ACTIONS(8507), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8507), - [anon_sym_API_DEPRECATED] = ACTIONS(8507), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8507), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8507), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8507), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8507), - [anon_sym___deprecated_msg] = ACTIONS(8507), - [anon_sym___deprecated_enum_msg] = ACTIONS(8507), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8507), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8507), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8507), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8507), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3514] = { - [sym_identifier] = ACTIONS(8511), - [anon_sym_COMMA] = ACTIONS(8513), - [anon_sym_RPAREN] = ACTIONS(8513), - [anon_sym_LPAREN2] = ACTIONS(8513), - [anon_sym_STAR] = ACTIONS(8513), - [anon_sym_SEMI] = ACTIONS(8513), - [anon_sym_extern] = ACTIONS(8511), - [anon_sym___attribute] = ACTIONS(8511), - [anon_sym___attribute__] = ACTIONS(8511), - [anon_sym___declspec] = ACTIONS(8511), - [anon_sym___based] = ACTIONS(8511), - [anon_sym_LBRACE] = ACTIONS(8513), - [anon_sym_LBRACK] = ACTIONS(8513), - [anon_sym_static] = ACTIONS(8511), - [anon_sym_auto] = ACTIONS(8511), - [anon_sym_register] = ACTIONS(8511), - [anon_sym_inline] = ACTIONS(8511), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8511), - [anon_sym_const] = ACTIONS(8511), - [anon_sym_volatile] = ACTIONS(8511), - [anon_sym_restrict] = ACTIONS(8511), - [anon_sym__Atomic] = ACTIONS(8511), - [anon_sym_in] = ACTIONS(8511), - [anon_sym_out] = ACTIONS(8511), - [anon_sym_inout] = ACTIONS(8511), - [anon_sym_bycopy] = ACTIONS(8511), - [anon_sym_byref] = ACTIONS(8511), - [anon_sym_oneway] = ACTIONS(8511), - [anon_sym__Nullable] = ACTIONS(8511), - [anon_sym__Nonnull] = ACTIONS(8511), - [anon_sym__Nullable_result] = ACTIONS(8511), - [anon_sym__Null_unspecified] = ACTIONS(8511), - [anon_sym___autoreleasing] = ACTIONS(8511), - [anon_sym___nullable] = ACTIONS(8511), - [anon_sym___nonnull] = ACTIONS(8511), - [anon_sym___strong] = ACTIONS(8511), - [anon_sym___weak] = ACTIONS(8511), - [anon_sym___bridge] = ACTIONS(8511), - [anon_sym___bridge_transfer] = ACTIONS(8511), - [anon_sym___bridge_retained] = ACTIONS(8511), - [anon_sym___unsafe_unretained] = ACTIONS(8511), - [anon_sym___block] = ACTIONS(8511), - [anon_sym___kindof] = ACTIONS(8511), - [anon_sym___unused] = ACTIONS(8511), - [anon_sym__Complex] = ACTIONS(8511), - [anon_sym___complex] = ACTIONS(8511), - [anon_sym_IBOutlet] = ACTIONS(8511), - [anon_sym_IBInspectable] = ACTIONS(8511), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8511), - [anon_sym_COLON] = ACTIONS(8513), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8511), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8511), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8511), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8511), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8511), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8511), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8511), - [anon_sym_NS_AVAILABLE] = ACTIONS(8511), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8511), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8511), - [anon_sym_API_AVAILABLE] = ACTIONS(8511), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8511), - [anon_sym_API_DEPRECATED] = ACTIONS(8511), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8511), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8511), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8511), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8511), - [anon_sym___deprecated_msg] = ACTIONS(8511), - [anon_sym___deprecated_enum_msg] = ACTIONS(8511), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8511), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8511), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8511), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8511), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3515] = { - [sym_attribute_specifier] = STATE(5711), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4227), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3547), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3547), - [sym_identifier] = ACTIONS(8515), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8517), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3516] = { - [sym_identifier] = ACTIONS(8519), - [anon_sym_COMMA] = ACTIONS(8521), - [anon_sym_RPAREN] = ACTIONS(8521), - [anon_sym_LPAREN2] = ACTIONS(8521), - [anon_sym_STAR] = ACTIONS(8521), - [anon_sym_SEMI] = ACTIONS(8521), - [anon_sym_extern] = ACTIONS(8519), - [anon_sym___attribute] = ACTIONS(8519), - [anon_sym___attribute__] = ACTIONS(8519), - [anon_sym___declspec] = ACTIONS(8519), - [anon_sym___based] = ACTIONS(8519), - [anon_sym_LBRACE] = ACTIONS(8521), - [anon_sym_LBRACK] = ACTIONS(8521), - [anon_sym_static] = ACTIONS(8519), - [anon_sym_auto] = ACTIONS(8519), - [anon_sym_register] = ACTIONS(8519), - [anon_sym_inline] = ACTIONS(8519), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8519), - [anon_sym_const] = ACTIONS(8519), - [anon_sym_volatile] = ACTIONS(8519), - [anon_sym_restrict] = ACTIONS(8519), - [anon_sym__Atomic] = ACTIONS(8519), - [anon_sym_in] = ACTIONS(8519), - [anon_sym_out] = ACTIONS(8519), - [anon_sym_inout] = ACTIONS(8519), - [anon_sym_bycopy] = ACTIONS(8519), - [anon_sym_byref] = ACTIONS(8519), - [anon_sym_oneway] = ACTIONS(8519), - [anon_sym__Nullable] = ACTIONS(8519), - [anon_sym__Nonnull] = ACTIONS(8519), - [anon_sym__Nullable_result] = ACTIONS(8519), - [anon_sym__Null_unspecified] = ACTIONS(8519), - [anon_sym___autoreleasing] = ACTIONS(8519), - [anon_sym___nullable] = ACTIONS(8519), - [anon_sym___nonnull] = ACTIONS(8519), - [anon_sym___strong] = ACTIONS(8519), - [anon_sym___weak] = ACTIONS(8519), - [anon_sym___bridge] = ACTIONS(8519), - [anon_sym___bridge_transfer] = ACTIONS(8519), - [anon_sym___bridge_retained] = ACTIONS(8519), - [anon_sym___unsafe_unretained] = ACTIONS(8519), - [anon_sym___block] = ACTIONS(8519), - [anon_sym___kindof] = ACTIONS(8519), - [anon_sym___unused] = ACTIONS(8519), - [anon_sym__Complex] = ACTIONS(8519), - [anon_sym___complex] = ACTIONS(8519), - [anon_sym_IBOutlet] = ACTIONS(8519), - [anon_sym_IBInspectable] = ACTIONS(8519), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8519), - [anon_sym_COLON] = ACTIONS(8521), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8519), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8519), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8519), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8519), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8519), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8519), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8519), - [anon_sym_NS_AVAILABLE] = ACTIONS(8519), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8519), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8519), - [anon_sym_API_AVAILABLE] = ACTIONS(8519), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8519), - [anon_sym_API_DEPRECATED] = ACTIONS(8519), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8519), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8519), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8519), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8519), - [anon_sym___deprecated_msg] = ACTIONS(8519), - [anon_sym___deprecated_enum_msg] = ACTIONS(8519), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8519), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8519), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8519), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8519), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3517] = { - [sym_field_declaration_list] = STATE(3559), - [sym_superclass_reference] = STATE(3428), - [sym_identifier] = ACTIONS(8088), - [anon_sym_LPAREN2] = ACTIONS(8090), - [anon_sym_STAR] = ACTIONS(8090), - [anon_sym_SEMI] = ACTIONS(8090), - [anon_sym_extern] = ACTIONS(8088), - [anon_sym___attribute] = ACTIONS(8088), - [anon_sym___attribute__] = ACTIONS(8088), - [anon_sym___declspec] = ACTIONS(8088), - [anon_sym___based] = ACTIONS(8088), - [anon_sym_LBRACE] = ACTIONS(8092), - [anon_sym_static] = ACTIONS(8088), - [anon_sym_auto] = ACTIONS(8088), - [anon_sym_register] = ACTIONS(8088), - [anon_sym_inline] = ACTIONS(8088), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8088), - [anon_sym_const] = ACTIONS(8088), - [anon_sym_volatile] = ACTIONS(8088), - [anon_sym_restrict] = ACTIONS(8088), - [anon_sym__Atomic] = ACTIONS(8088), - [anon_sym_in] = ACTIONS(8088), - [anon_sym_out] = ACTIONS(8088), - [anon_sym_inout] = ACTIONS(8088), - [anon_sym_bycopy] = ACTIONS(8088), - [anon_sym_byref] = ACTIONS(8088), - [anon_sym_oneway] = ACTIONS(8088), - [anon_sym__Nullable] = ACTIONS(8088), - [anon_sym__Nonnull] = ACTIONS(8088), - [anon_sym__Nullable_result] = ACTIONS(8088), - [anon_sym__Null_unspecified] = ACTIONS(8088), - [anon_sym___autoreleasing] = ACTIONS(8088), - [anon_sym___nullable] = ACTIONS(8088), - [anon_sym___nonnull] = ACTIONS(8088), - [anon_sym___strong] = ACTIONS(8088), - [anon_sym___weak] = ACTIONS(8088), - [anon_sym___bridge] = ACTIONS(8088), - [anon_sym___bridge_transfer] = ACTIONS(8088), - [anon_sym___bridge_retained] = ACTIONS(8088), - [anon_sym___unsafe_unretained] = ACTIONS(8088), - [anon_sym___block] = ACTIONS(8088), - [anon_sym___kindof] = ACTIONS(8088), - [anon_sym___unused] = ACTIONS(8088), - [anon_sym__Complex] = ACTIONS(8088), - [anon_sym___complex] = ACTIONS(8088), - [anon_sym_IBOutlet] = ACTIONS(8088), - [anon_sym_IBInspectable] = ACTIONS(8088), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8088), - [anon_sym_COLON] = ACTIONS(8523), - [anon_sym_ATdefs] = ACTIONS(8097), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8088), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8088), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8088), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8088), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8088), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8088), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8088), - [anon_sym_NS_AVAILABLE] = ACTIONS(8088), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8088), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_API_AVAILABLE] = ACTIONS(8088), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8088), - [anon_sym_API_DEPRECATED] = ACTIONS(8088), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8088), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8088), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8088), - [anon_sym___deprecated_msg] = ACTIONS(8088), - [anon_sym___deprecated_enum_msg] = ACTIONS(8088), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8088), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8088), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3518] = { - [sym_attribute_specifier] = STATE(3494), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4073), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3490), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3490), - [sym_identifier] = ACTIONS(8526), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8528), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3519] = { - [sym_attribute_specifier] = STATE(5711), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4227), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8515), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8517), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3520] = { - [sym_attribute_specifier] = STATE(5480), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4086), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8530), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8532), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3521] = { - [sym_field_declaration_list] = STATE(3538), - [sym_superclass_reference] = STATE(3432), - [sym_identifier] = ACTIONS(8099), - [anon_sym_LPAREN2] = ACTIONS(8101), - [anon_sym_STAR] = ACTIONS(8101), - [anon_sym_SEMI] = ACTIONS(8101), - [anon_sym_extern] = ACTIONS(8099), - [anon_sym___attribute] = ACTIONS(8099), - [anon_sym___attribute__] = ACTIONS(8099), - [anon_sym___declspec] = ACTIONS(8099), - [anon_sym___based] = ACTIONS(8099), - [anon_sym_LBRACE] = ACTIONS(8123), - [anon_sym_static] = ACTIONS(8099), - [anon_sym_auto] = ACTIONS(8099), - [anon_sym_register] = ACTIONS(8099), - [anon_sym_inline] = ACTIONS(8099), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8099), - [anon_sym_const] = ACTIONS(8099), - [anon_sym_volatile] = ACTIONS(8099), - [anon_sym_restrict] = ACTIONS(8099), - [anon_sym__Atomic] = ACTIONS(8099), - [anon_sym_in] = ACTIONS(8099), - [anon_sym_out] = ACTIONS(8099), - [anon_sym_inout] = ACTIONS(8099), - [anon_sym_bycopy] = ACTIONS(8099), - [anon_sym_byref] = ACTIONS(8099), - [anon_sym_oneway] = ACTIONS(8099), - [anon_sym__Nullable] = ACTIONS(8099), - [anon_sym__Nonnull] = ACTIONS(8099), - [anon_sym__Nullable_result] = ACTIONS(8099), - [anon_sym__Null_unspecified] = ACTIONS(8099), - [anon_sym___autoreleasing] = ACTIONS(8099), - [anon_sym___nullable] = ACTIONS(8099), - [anon_sym___nonnull] = ACTIONS(8099), - [anon_sym___strong] = ACTIONS(8099), - [anon_sym___weak] = ACTIONS(8099), - [anon_sym___bridge] = ACTIONS(8099), - [anon_sym___bridge_transfer] = ACTIONS(8099), - [anon_sym___bridge_retained] = ACTIONS(8099), - [anon_sym___unsafe_unretained] = ACTIONS(8099), - [anon_sym___block] = ACTIONS(8099), - [anon_sym___kindof] = ACTIONS(8099), - [anon_sym___unused] = ACTIONS(8099), - [anon_sym__Complex] = ACTIONS(8099), - [anon_sym___complex] = ACTIONS(8099), - [anon_sym_IBOutlet] = ACTIONS(8099), - [anon_sym_IBInspectable] = ACTIONS(8099), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8099), - [anon_sym_COLON] = ACTIONS(8496), - [anon_sym_ATdefs] = ACTIONS(8106), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8099), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8099), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8099), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8099), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8099), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8099), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8099), - [anon_sym_NS_AVAILABLE] = ACTIONS(8099), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8099), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_API_AVAILABLE] = ACTIONS(8099), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8099), - [anon_sym_API_DEPRECATED] = ACTIONS(8099), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8099), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8099), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8099), - [anon_sym___deprecated_msg] = ACTIONS(8099), - [anon_sym___deprecated_enum_msg] = ACTIONS(8099), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8099), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8099), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3522] = { - [sym_identifier] = ACTIONS(8534), - [anon_sym_COMMA] = ACTIONS(8536), - [anon_sym_RPAREN] = ACTIONS(8536), - [anon_sym_LPAREN2] = ACTIONS(8536), - [anon_sym_STAR] = ACTIONS(8536), - [anon_sym_SEMI] = ACTIONS(8536), - [anon_sym_extern] = ACTIONS(8534), - [anon_sym___attribute] = ACTIONS(8534), - [anon_sym___attribute__] = ACTIONS(8534), - [anon_sym___declspec] = ACTIONS(8534), - [anon_sym___based] = ACTIONS(8534), - [anon_sym_LBRACE] = ACTIONS(8536), - [anon_sym_LBRACK] = ACTIONS(8536), - [anon_sym_static] = ACTIONS(8534), - [anon_sym_auto] = ACTIONS(8534), - [anon_sym_register] = ACTIONS(8534), - [anon_sym_inline] = ACTIONS(8534), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8534), - [anon_sym_const] = ACTIONS(8534), - [anon_sym_volatile] = ACTIONS(8534), - [anon_sym_restrict] = ACTIONS(8534), - [anon_sym__Atomic] = ACTIONS(8534), - [anon_sym_in] = ACTIONS(8534), - [anon_sym_out] = ACTIONS(8534), - [anon_sym_inout] = ACTIONS(8534), - [anon_sym_bycopy] = ACTIONS(8534), - [anon_sym_byref] = ACTIONS(8534), - [anon_sym_oneway] = ACTIONS(8534), - [anon_sym__Nullable] = ACTIONS(8534), - [anon_sym__Nonnull] = ACTIONS(8534), - [anon_sym__Nullable_result] = ACTIONS(8534), - [anon_sym__Null_unspecified] = ACTIONS(8534), - [anon_sym___autoreleasing] = ACTIONS(8534), - [anon_sym___nullable] = ACTIONS(8534), - [anon_sym___nonnull] = ACTIONS(8534), - [anon_sym___strong] = ACTIONS(8534), - [anon_sym___weak] = ACTIONS(8534), - [anon_sym___bridge] = ACTIONS(8534), - [anon_sym___bridge_transfer] = ACTIONS(8534), - [anon_sym___bridge_retained] = ACTIONS(8534), - [anon_sym___unsafe_unretained] = ACTIONS(8534), - [anon_sym___block] = ACTIONS(8534), - [anon_sym___kindof] = ACTIONS(8534), - [anon_sym___unused] = ACTIONS(8534), - [anon_sym__Complex] = ACTIONS(8534), - [anon_sym___complex] = ACTIONS(8534), - [anon_sym_IBOutlet] = ACTIONS(8534), - [anon_sym_IBInspectable] = ACTIONS(8534), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8534), - [anon_sym_COLON] = ACTIONS(8536), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8534), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8534), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8534), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8534), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8534), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8534), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8534), - [anon_sym_NS_AVAILABLE] = ACTIONS(8534), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8534), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8534), - [anon_sym_API_AVAILABLE] = ACTIONS(8534), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8534), - [anon_sym_API_DEPRECATED] = ACTIONS(8534), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8534), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8534), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8534), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8534), - [anon_sym___deprecated_msg] = ACTIONS(8534), - [anon_sym___deprecated_enum_msg] = ACTIONS(8534), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8534), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8534), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8534), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8534), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3523] = { - [sym_attribute_specifier] = STATE(5541), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4254), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8538), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8540), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3524] = { - [sym_attribute_specifier] = STATE(3548), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4255), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3550), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3550), - [sym_identifier] = ACTIONS(8542), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8544), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3525] = { - [sym_identifier] = ACTIONS(8546), - [anon_sym_COMMA] = ACTIONS(8548), - [anon_sym_RPAREN] = ACTIONS(8548), - [anon_sym_LPAREN2] = ACTIONS(8548), - [anon_sym_STAR] = ACTIONS(8548), - [anon_sym_SEMI] = ACTIONS(8548), - [anon_sym_extern] = ACTIONS(8546), - [anon_sym___attribute] = ACTIONS(8546), - [anon_sym___attribute__] = ACTIONS(8546), - [anon_sym___declspec] = ACTIONS(8546), - [anon_sym___based] = ACTIONS(8546), - [anon_sym_LBRACE] = ACTIONS(8548), - [anon_sym_LBRACK] = ACTIONS(8548), - [anon_sym_static] = ACTIONS(8546), - [anon_sym_auto] = ACTIONS(8546), - [anon_sym_register] = ACTIONS(8546), - [anon_sym_inline] = ACTIONS(8546), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8546), - [anon_sym_const] = ACTIONS(8546), - [anon_sym_volatile] = ACTIONS(8546), - [anon_sym_restrict] = ACTIONS(8546), - [anon_sym__Atomic] = ACTIONS(8546), - [anon_sym_in] = ACTIONS(8546), - [anon_sym_out] = ACTIONS(8546), - [anon_sym_inout] = ACTIONS(8546), - [anon_sym_bycopy] = ACTIONS(8546), - [anon_sym_byref] = ACTIONS(8546), - [anon_sym_oneway] = ACTIONS(8546), - [anon_sym__Nullable] = ACTIONS(8546), - [anon_sym__Nonnull] = ACTIONS(8546), - [anon_sym__Nullable_result] = ACTIONS(8546), - [anon_sym__Null_unspecified] = ACTIONS(8546), - [anon_sym___autoreleasing] = ACTIONS(8546), - [anon_sym___nullable] = ACTIONS(8546), - [anon_sym___nonnull] = ACTIONS(8546), - [anon_sym___strong] = ACTIONS(8546), - [anon_sym___weak] = ACTIONS(8546), - [anon_sym___bridge] = ACTIONS(8546), - [anon_sym___bridge_transfer] = ACTIONS(8546), - [anon_sym___bridge_retained] = ACTIONS(8546), - [anon_sym___unsafe_unretained] = ACTIONS(8546), - [anon_sym___block] = ACTIONS(8546), - [anon_sym___kindof] = ACTIONS(8546), - [anon_sym___unused] = ACTIONS(8546), - [anon_sym__Complex] = ACTIONS(8546), - [anon_sym___complex] = ACTIONS(8546), - [anon_sym_IBOutlet] = ACTIONS(8546), - [anon_sym_IBInspectable] = ACTIONS(8546), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8546), - [anon_sym_COLON] = ACTIONS(8548), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8546), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8546), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8546), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8546), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8546), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8546), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8546), - [anon_sym_NS_AVAILABLE] = ACTIONS(8546), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8546), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8546), - [anon_sym_API_AVAILABLE] = ACTIONS(8546), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8546), - [anon_sym_API_DEPRECATED] = ACTIONS(8546), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8546), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8546), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8546), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8546), - [anon_sym___deprecated_msg] = ACTIONS(8546), - [anon_sym___deprecated_enum_msg] = ACTIONS(8546), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8546), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8546), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8546), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8546), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3526] = { - [sym_field_declaration_list] = STATE(3559), - [sym_superclass_reference] = STATE(3437), - [sym_identifier] = ACTIONS(8088), - [anon_sym_LPAREN2] = ACTIONS(8090), - [anon_sym_STAR] = ACTIONS(8090), - [anon_sym_SEMI] = ACTIONS(8090), - [anon_sym_extern] = ACTIONS(8088), - [anon_sym___attribute] = ACTIONS(8088), - [anon_sym___attribute__] = ACTIONS(8088), - [anon_sym___declspec] = ACTIONS(8088), - [anon_sym___based] = ACTIONS(8088), - [anon_sym_LBRACE] = ACTIONS(8123), - [anon_sym_static] = ACTIONS(8088), - [anon_sym_auto] = ACTIONS(8088), - [anon_sym_register] = ACTIONS(8088), - [anon_sym_inline] = ACTIONS(8088), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8088), - [anon_sym_const] = ACTIONS(8088), - [anon_sym_volatile] = ACTIONS(8088), - [anon_sym_restrict] = ACTIONS(8088), - [anon_sym__Atomic] = ACTIONS(8088), - [anon_sym_in] = ACTIONS(8088), - [anon_sym_out] = ACTIONS(8088), - [anon_sym_inout] = ACTIONS(8088), - [anon_sym_bycopy] = ACTIONS(8088), - [anon_sym_byref] = ACTIONS(8088), - [anon_sym_oneway] = ACTIONS(8088), - [anon_sym__Nullable] = ACTIONS(8088), - [anon_sym__Nonnull] = ACTIONS(8088), - [anon_sym__Nullable_result] = ACTIONS(8088), - [anon_sym__Null_unspecified] = ACTIONS(8088), - [anon_sym___autoreleasing] = ACTIONS(8088), - [anon_sym___nullable] = ACTIONS(8088), - [anon_sym___nonnull] = ACTIONS(8088), - [anon_sym___strong] = ACTIONS(8088), - [anon_sym___weak] = ACTIONS(8088), - [anon_sym___bridge] = ACTIONS(8088), - [anon_sym___bridge_transfer] = ACTIONS(8088), - [anon_sym___bridge_retained] = ACTIONS(8088), - [anon_sym___unsafe_unretained] = ACTIONS(8088), - [anon_sym___block] = ACTIONS(8088), - [anon_sym___kindof] = ACTIONS(8088), - [anon_sym___unused] = ACTIONS(8088), - [anon_sym__Complex] = ACTIONS(8088), - [anon_sym___complex] = ACTIONS(8088), - [anon_sym_IBOutlet] = ACTIONS(8088), - [anon_sym_IBInspectable] = ACTIONS(8088), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8088), - [anon_sym_COLON] = ACTIONS(8523), - [anon_sym_ATdefs] = ACTIONS(8097), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8088), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8088), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8088), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8088), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8088), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8088), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8088), - [anon_sym_NS_AVAILABLE] = ACTIONS(8088), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8088), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_API_AVAILABLE] = ACTIONS(8088), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8088), - [anon_sym_API_DEPRECATED] = ACTIONS(8088), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8088), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8088), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8088), - [anon_sym___deprecated_msg] = ACTIONS(8088), - [anon_sym___deprecated_enum_msg] = ACTIONS(8088), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8088), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8088), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3527] = { - [sym_attribute_specifier] = STATE(5375), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4245), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8550), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8552), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3528] = { - [sym_attribute_specifier] = STATE(5528), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4163), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3464), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3464), - [sym_identifier] = ACTIONS(8317), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8319), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3529] = { - [sym_attribute_specifier] = STATE(5602), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4248), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8554), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8556), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3530] = { - [sym_identifier] = ACTIONS(8558), - [anon_sym_COMMA] = ACTIONS(8560), - [anon_sym_RPAREN] = ACTIONS(8560), - [anon_sym_LPAREN2] = ACTIONS(8560), - [anon_sym_STAR] = ACTIONS(8560), - [anon_sym_SEMI] = ACTIONS(8560), - [anon_sym_extern] = ACTIONS(8558), - [anon_sym___attribute] = ACTIONS(8558), - [anon_sym___attribute__] = ACTIONS(8558), - [anon_sym___declspec] = ACTIONS(8558), - [anon_sym___based] = ACTIONS(8558), - [anon_sym_LBRACE] = ACTIONS(8560), - [anon_sym_LBRACK] = ACTIONS(8560), - [anon_sym_static] = ACTIONS(8558), - [anon_sym_auto] = ACTIONS(8558), - [anon_sym_register] = ACTIONS(8558), - [anon_sym_inline] = ACTIONS(8558), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8558), - [anon_sym_const] = ACTIONS(8558), - [anon_sym_volatile] = ACTIONS(8558), - [anon_sym_restrict] = ACTIONS(8558), - [anon_sym__Atomic] = ACTIONS(8558), - [anon_sym_in] = ACTIONS(8558), - [anon_sym_out] = ACTIONS(8558), - [anon_sym_inout] = ACTIONS(8558), - [anon_sym_bycopy] = ACTIONS(8558), - [anon_sym_byref] = ACTIONS(8558), - [anon_sym_oneway] = ACTIONS(8558), - [anon_sym__Nullable] = ACTIONS(8558), - [anon_sym__Nonnull] = ACTIONS(8558), - [anon_sym__Nullable_result] = ACTIONS(8558), - [anon_sym__Null_unspecified] = ACTIONS(8558), - [anon_sym___autoreleasing] = ACTIONS(8558), - [anon_sym___nullable] = ACTIONS(8558), - [anon_sym___nonnull] = ACTIONS(8558), - [anon_sym___strong] = ACTIONS(8558), - [anon_sym___weak] = ACTIONS(8558), - [anon_sym___bridge] = ACTIONS(8558), - [anon_sym___bridge_transfer] = ACTIONS(8558), - [anon_sym___bridge_retained] = ACTIONS(8558), - [anon_sym___unsafe_unretained] = ACTIONS(8558), - [anon_sym___block] = ACTIONS(8558), - [anon_sym___kindof] = ACTIONS(8558), - [anon_sym___unused] = ACTIONS(8558), - [anon_sym__Complex] = ACTIONS(8558), - [anon_sym___complex] = ACTIONS(8558), - [anon_sym_IBOutlet] = ACTIONS(8558), - [anon_sym_IBInspectable] = ACTIONS(8558), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8558), - [anon_sym_COLON] = ACTIONS(8560), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8558), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8558), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8558), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8558), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8558), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8558), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8558), - [anon_sym_NS_AVAILABLE] = ACTIONS(8558), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8558), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8558), - [anon_sym_API_AVAILABLE] = ACTIONS(8558), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8558), - [anon_sym_API_DEPRECATED] = ACTIONS(8558), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8558), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8558), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8558), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8558), - [anon_sym___deprecated_msg] = ACTIONS(8558), - [anon_sym___deprecated_enum_msg] = ACTIONS(8558), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8558), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8558), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8558), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8558), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3531] = { - [sym_attribute_specifier] = STATE(3473), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4216), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3472), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3472), - [sym_identifier] = ACTIONS(8562), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8564), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3532] = { - [sym_attribute_specifier] = STATE(5613), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4205), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8566), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8568), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3533] = { - [sym__expression] = STATE(4494), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym__dictionary_key_value_list] = STATE(5287), - [sym__dictionary_key_value_pair] = STATE(4894), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(8570), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3534] = { - [sym_identifier] = ACTIONS(8572), - [anon_sym_COMMA] = ACTIONS(8574), - [anon_sym_RPAREN] = ACTIONS(8574), - [anon_sym_LPAREN2] = ACTIONS(8574), - [anon_sym_STAR] = ACTIONS(8574), - [anon_sym_SEMI] = ACTIONS(8574), - [anon_sym_extern] = ACTIONS(8572), - [anon_sym___attribute] = ACTIONS(8572), - [anon_sym___attribute__] = ACTIONS(8572), - [anon_sym___declspec] = ACTIONS(8572), - [anon_sym___based] = ACTIONS(8572), - [anon_sym_LBRACE] = ACTIONS(8574), - [anon_sym_LBRACK] = ACTIONS(8574), - [anon_sym_static] = ACTIONS(8572), - [anon_sym_auto] = ACTIONS(8572), - [anon_sym_register] = ACTIONS(8572), - [anon_sym_inline] = ACTIONS(8572), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8572), - [anon_sym_const] = ACTIONS(8572), - [anon_sym_volatile] = ACTIONS(8572), - [anon_sym_restrict] = ACTIONS(8572), - [anon_sym__Atomic] = ACTIONS(8572), - [anon_sym_in] = ACTIONS(8572), - [anon_sym_out] = ACTIONS(8572), - [anon_sym_inout] = ACTIONS(8572), - [anon_sym_bycopy] = ACTIONS(8572), - [anon_sym_byref] = ACTIONS(8572), - [anon_sym_oneway] = ACTIONS(8572), - [anon_sym__Nullable] = ACTIONS(8572), - [anon_sym__Nonnull] = ACTIONS(8572), - [anon_sym__Nullable_result] = ACTIONS(8572), - [anon_sym__Null_unspecified] = ACTIONS(8572), - [anon_sym___autoreleasing] = ACTIONS(8572), - [anon_sym___nullable] = ACTIONS(8572), - [anon_sym___nonnull] = ACTIONS(8572), - [anon_sym___strong] = ACTIONS(8572), - [anon_sym___weak] = ACTIONS(8572), - [anon_sym___bridge] = ACTIONS(8572), - [anon_sym___bridge_transfer] = ACTIONS(8572), - [anon_sym___bridge_retained] = ACTIONS(8572), - [anon_sym___unsafe_unretained] = ACTIONS(8572), - [anon_sym___block] = ACTIONS(8572), - [anon_sym___kindof] = ACTIONS(8572), - [anon_sym___unused] = ACTIONS(8572), - [anon_sym__Complex] = ACTIONS(8572), - [anon_sym___complex] = ACTIONS(8572), - [anon_sym_IBOutlet] = ACTIONS(8572), - [anon_sym_IBInspectable] = ACTIONS(8572), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8572), - [anon_sym_COLON] = ACTIONS(8574), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8572), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8572), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8572), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8572), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8572), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8572), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8572), - [anon_sym_NS_AVAILABLE] = ACTIONS(8572), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8572), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8572), - [anon_sym_API_AVAILABLE] = ACTIONS(8572), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8572), - [anon_sym_API_DEPRECATED] = ACTIONS(8572), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8572), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8572), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8572), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8572), - [anon_sym___deprecated_msg] = ACTIONS(8572), - [anon_sym___deprecated_enum_msg] = ACTIONS(8572), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8572), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8572), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8572), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8572), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3535] = { - [sym_identifier] = ACTIONS(8576), - [anon_sym_COMMA] = ACTIONS(8578), - [anon_sym_RPAREN] = ACTIONS(8578), - [anon_sym_LPAREN2] = ACTIONS(8578), - [anon_sym_STAR] = ACTIONS(8578), - [anon_sym_SEMI] = ACTIONS(8578), - [anon_sym_extern] = ACTIONS(8576), - [anon_sym___attribute] = ACTIONS(8576), - [anon_sym___attribute__] = ACTIONS(8576), - [anon_sym___declspec] = ACTIONS(8576), - [anon_sym___based] = ACTIONS(8576), - [anon_sym_LBRACE] = ACTIONS(8578), - [anon_sym_LBRACK] = ACTIONS(8578), - [anon_sym_static] = ACTIONS(8576), - [anon_sym_auto] = ACTIONS(8576), - [anon_sym_register] = ACTIONS(8576), - [anon_sym_inline] = ACTIONS(8576), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8576), - [anon_sym_const] = ACTIONS(8576), - [anon_sym_volatile] = ACTIONS(8576), - [anon_sym_restrict] = ACTIONS(8576), - [anon_sym__Atomic] = ACTIONS(8576), - [anon_sym_in] = ACTIONS(8576), - [anon_sym_out] = ACTIONS(8576), - [anon_sym_inout] = ACTIONS(8576), - [anon_sym_bycopy] = ACTIONS(8576), - [anon_sym_byref] = ACTIONS(8576), - [anon_sym_oneway] = ACTIONS(8576), - [anon_sym__Nullable] = ACTIONS(8576), - [anon_sym__Nonnull] = ACTIONS(8576), - [anon_sym__Nullable_result] = ACTIONS(8576), - [anon_sym__Null_unspecified] = ACTIONS(8576), - [anon_sym___autoreleasing] = ACTIONS(8576), - [anon_sym___nullable] = ACTIONS(8576), - [anon_sym___nonnull] = ACTIONS(8576), - [anon_sym___strong] = ACTIONS(8576), - [anon_sym___weak] = ACTIONS(8576), - [anon_sym___bridge] = ACTIONS(8576), - [anon_sym___bridge_transfer] = ACTIONS(8576), - [anon_sym___bridge_retained] = ACTIONS(8576), - [anon_sym___unsafe_unretained] = ACTIONS(8576), - [anon_sym___block] = ACTIONS(8576), - [anon_sym___kindof] = ACTIONS(8576), - [anon_sym___unused] = ACTIONS(8576), - [anon_sym__Complex] = ACTIONS(8576), - [anon_sym___complex] = ACTIONS(8576), - [anon_sym_IBOutlet] = ACTIONS(8576), - [anon_sym_IBInspectable] = ACTIONS(8576), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8576), - [anon_sym_COLON] = ACTIONS(8578), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8576), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8576), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8576), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8576), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8576), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8576), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8576), - [anon_sym_NS_AVAILABLE] = ACTIONS(8576), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8576), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8576), - [anon_sym_API_AVAILABLE] = ACTIONS(8576), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8576), - [anon_sym_API_DEPRECATED] = ACTIONS(8576), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8576), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8576), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8576), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8576), - [anon_sym___deprecated_msg] = ACTIONS(8576), - [anon_sym___deprecated_enum_msg] = ACTIONS(8576), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8576), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8576), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8576), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8576), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3536] = { - [sym_identifier] = ACTIONS(8580), - [anon_sym_COMMA] = ACTIONS(8582), - [anon_sym_RPAREN] = ACTIONS(8582), - [anon_sym_LPAREN2] = ACTIONS(8582), - [anon_sym_STAR] = ACTIONS(8582), - [anon_sym_SEMI] = ACTIONS(8582), - [anon_sym_extern] = ACTIONS(8580), - [anon_sym___attribute] = ACTIONS(8580), - [anon_sym___attribute__] = ACTIONS(8580), - [anon_sym___declspec] = ACTIONS(8580), - [anon_sym___based] = ACTIONS(8580), - [anon_sym_LBRACE] = ACTIONS(8582), - [anon_sym_LBRACK] = ACTIONS(8582), - [anon_sym_static] = ACTIONS(8580), - [anon_sym_auto] = ACTIONS(8580), - [anon_sym_register] = ACTIONS(8580), - [anon_sym_inline] = ACTIONS(8580), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8580), - [anon_sym_const] = ACTIONS(8580), - [anon_sym_volatile] = ACTIONS(8580), - [anon_sym_restrict] = ACTIONS(8580), - [anon_sym__Atomic] = ACTIONS(8580), - [anon_sym_in] = ACTIONS(8580), - [anon_sym_out] = ACTIONS(8580), - [anon_sym_inout] = ACTIONS(8580), - [anon_sym_bycopy] = ACTIONS(8580), - [anon_sym_byref] = ACTIONS(8580), - [anon_sym_oneway] = ACTIONS(8580), - [anon_sym__Nullable] = ACTIONS(8580), - [anon_sym__Nonnull] = ACTIONS(8580), - [anon_sym__Nullable_result] = ACTIONS(8580), - [anon_sym__Null_unspecified] = ACTIONS(8580), - [anon_sym___autoreleasing] = ACTIONS(8580), - [anon_sym___nullable] = ACTIONS(8580), - [anon_sym___nonnull] = ACTIONS(8580), - [anon_sym___strong] = ACTIONS(8580), - [anon_sym___weak] = ACTIONS(8580), - [anon_sym___bridge] = ACTIONS(8580), - [anon_sym___bridge_transfer] = ACTIONS(8580), - [anon_sym___bridge_retained] = ACTIONS(8580), - [anon_sym___unsafe_unretained] = ACTIONS(8580), - [anon_sym___block] = ACTIONS(8580), - [anon_sym___kindof] = ACTIONS(8580), - [anon_sym___unused] = ACTIONS(8580), - [anon_sym__Complex] = ACTIONS(8580), - [anon_sym___complex] = ACTIONS(8580), - [anon_sym_IBOutlet] = ACTIONS(8580), - [anon_sym_IBInspectable] = ACTIONS(8580), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8580), - [anon_sym_COLON] = ACTIONS(8582), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8580), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8580), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8580), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8580), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8580), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8580), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8580), - [anon_sym_NS_AVAILABLE] = ACTIONS(8580), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8580), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8580), - [anon_sym_API_AVAILABLE] = ACTIONS(8580), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8580), - [anon_sym_API_DEPRECATED] = ACTIONS(8580), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8580), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8580), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8580), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8580), - [anon_sym___deprecated_msg] = ACTIONS(8580), - [anon_sym___deprecated_enum_msg] = ACTIONS(8580), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8580), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8580), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8580), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8580), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3537] = { - [sym_attribute_specifier] = STATE(5613), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4205), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3482), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3482), - [sym_identifier] = ACTIONS(8566), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8568), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3538] = { - [sym_identifier] = ACTIONS(8584), - [anon_sym_COMMA] = ACTIONS(8586), - [anon_sym_RPAREN] = ACTIONS(8586), - [anon_sym_LPAREN2] = ACTIONS(8586), - [anon_sym_STAR] = ACTIONS(8586), - [anon_sym_SEMI] = ACTIONS(8586), - [anon_sym_extern] = ACTIONS(8584), - [anon_sym___attribute] = ACTIONS(8584), - [anon_sym___attribute__] = ACTIONS(8584), - [anon_sym___declspec] = ACTIONS(8584), - [anon_sym___based] = ACTIONS(8584), - [anon_sym_LBRACE] = ACTIONS(8586), - [anon_sym_LBRACK] = ACTIONS(8586), - [anon_sym_static] = ACTIONS(8584), - [anon_sym_auto] = ACTIONS(8584), - [anon_sym_register] = ACTIONS(8584), - [anon_sym_inline] = ACTIONS(8584), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8584), - [anon_sym_const] = ACTIONS(8584), - [anon_sym_volatile] = ACTIONS(8584), - [anon_sym_restrict] = ACTIONS(8584), - [anon_sym__Atomic] = ACTIONS(8584), - [anon_sym_in] = ACTIONS(8584), - [anon_sym_out] = ACTIONS(8584), - [anon_sym_inout] = ACTIONS(8584), - [anon_sym_bycopy] = ACTIONS(8584), - [anon_sym_byref] = ACTIONS(8584), - [anon_sym_oneway] = ACTIONS(8584), - [anon_sym__Nullable] = ACTIONS(8584), - [anon_sym__Nonnull] = ACTIONS(8584), - [anon_sym__Nullable_result] = ACTIONS(8584), - [anon_sym__Null_unspecified] = ACTIONS(8584), - [anon_sym___autoreleasing] = ACTIONS(8584), - [anon_sym___nullable] = ACTIONS(8584), - [anon_sym___nonnull] = ACTIONS(8584), - [anon_sym___strong] = ACTIONS(8584), - [anon_sym___weak] = ACTIONS(8584), - [anon_sym___bridge] = ACTIONS(8584), - [anon_sym___bridge_transfer] = ACTIONS(8584), - [anon_sym___bridge_retained] = ACTIONS(8584), - [anon_sym___unsafe_unretained] = ACTIONS(8584), - [anon_sym___block] = ACTIONS(8584), - [anon_sym___kindof] = ACTIONS(8584), - [anon_sym___unused] = ACTIONS(8584), - [anon_sym__Complex] = ACTIONS(8584), - [anon_sym___complex] = ACTIONS(8584), - [anon_sym_IBOutlet] = ACTIONS(8584), - [anon_sym_IBInspectable] = ACTIONS(8584), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8584), - [anon_sym_COLON] = ACTIONS(8586), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8584), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8584), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8584), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8584), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8584), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8584), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8584), - [anon_sym_NS_AVAILABLE] = ACTIONS(8584), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8584), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8584), - [anon_sym_API_AVAILABLE] = ACTIONS(8584), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8584), - [anon_sym_API_DEPRECATED] = ACTIONS(8584), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8584), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8584), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8584), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8584), - [anon_sym___deprecated_msg] = ACTIONS(8584), - [anon_sym___deprecated_enum_msg] = ACTIONS(8584), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8584), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8584), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8584), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8584), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3539] = { - [sym_attribute_specifier] = STATE(5375), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4245), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3470), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3470), - [sym_identifier] = ACTIONS(8550), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8552), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3540] = { - [sym_identifier] = ACTIONS(8588), - [anon_sym_COMMA] = ACTIONS(8590), - [anon_sym_RPAREN] = ACTIONS(8590), - [anon_sym_LPAREN2] = ACTIONS(8590), - [anon_sym_STAR] = ACTIONS(8590), - [anon_sym_SEMI] = ACTIONS(8590), - [anon_sym_extern] = ACTIONS(8588), - [anon_sym___attribute] = ACTIONS(8588), - [anon_sym___attribute__] = ACTIONS(8588), - [anon_sym___declspec] = ACTIONS(8588), - [anon_sym___based] = ACTIONS(8588), - [anon_sym_LBRACE] = ACTIONS(8590), - [anon_sym_LBRACK] = ACTIONS(8590), - [anon_sym_static] = ACTIONS(8588), - [anon_sym_auto] = ACTIONS(8588), - [anon_sym_register] = ACTIONS(8588), - [anon_sym_inline] = ACTIONS(8588), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8588), - [anon_sym_const] = ACTIONS(8588), - [anon_sym_volatile] = ACTIONS(8588), - [anon_sym_restrict] = ACTIONS(8588), - [anon_sym__Atomic] = ACTIONS(8588), - [anon_sym_in] = ACTIONS(8588), - [anon_sym_out] = ACTIONS(8588), - [anon_sym_inout] = ACTIONS(8588), - [anon_sym_bycopy] = ACTIONS(8588), - [anon_sym_byref] = ACTIONS(8588), - [anon_sym_oneway] = ACTIONS(8588), - [anon_sym__Nullable] = ACTIONS(8588), - [anon_sym__Nonnull] = ACTIONS(8588), - [anon_sym__Nullable_result] = ACTIONS(8588), - [anon_sym__Null_unspecified] = ACTIONS(8588), - [anon_sym___autoreleasing] = ACTIONS(8588), - [anon_sym___nullable] = ACTIONS(8588), - [anon_sym___nonnull] = ACTIONS(8588), - [anon_sym___strong] = ACTIONS(8588), - [anon_sym___weak] = ACTIONS(8588), - [anon_sym___bridge] = ACTIONS(8588), - [anon_sym___bridge_transfer] = ACTIONS(8588), - [anon_sym___bridge_retained] = ACTIONS(8588), - [anon_sym___unsafe_unretained] = ACTIONS(8588), - [anon_sym___block] = ACTIONS(8588), - [anon_sym___kindof] = ACTIONS(8588), - [anon_sym___unused] = ACTIONS(8588), - [anon_sym__Complex] = ACTIONS(8588), - [anon_sym___complex] = ACTIONS(8588), - [anon_sym_IBOutlet] = ACTIONS(8588), - [anon_sym_IBInspectable] = ACTIONS(8588), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8588), - [anon_sym_COLON] = ACTIONS(8590), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8588), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8588), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8588), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8588), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8588), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8588), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8588), - [anon_sym_NS_AVAILABLE] = ACTIONS(8588), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8588), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8588), - [anon_sym_API_AVAILABLE] = ACTIONS(8588), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8588), - [anon_sym_API_DEPRECATED] = ACTIONS(8588), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8588), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8588), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8588), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8588), - [anon_sym___deprecated_msg] = ACTIONS(8588), - [anon_sym___deprecated_enum_msg] = ACTIONS(8588), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8588), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8588), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8588), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8588), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3541] = { - [sym_attribute_specifier] = STATE(5539), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4223), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8592), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8594), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3542] = { [sym_identifier] = ACTIONS(8596), [anon_sym_COMMA] = ACTIONS(8598), [anon_sym_RPAREN] = ACTIONS(8598), @@ -544390,81 +536291,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3543] = { + [3487] = { + [sym_attribute_specifier] = STATE(5559), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4134), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), [sym_identifier] = ACTIONS(8600), - [anon_sym_COMMA] = ACTIONS(8602), - [anon_sym_RPAREN] = ACTIONS(8602), - [anon_sym_LPAREN2] = ACTIONS(8602), - [anon_sym_STAR] = ACTIONS(8602), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), [anon_sym_SEMI] = ACTIONS(8602), - [anon_sym_extern] = ACTIONS(8600), - [anon_sym___attribute] = ACTIONS(8600), - [anon_sym___attribute__] = ACTIONS(8600), - [anon_sym___declspec] = ACTIONS(8600), - [anon_sym___based] = ACTIONS(8600), - [anon_sym_LBRACE] = ACTIONS(8602), - [anon_sym_LBRACK] = ACTIONS(8602), - [anon_sym_static] = ACTIONS(8600), - [anon_sym_auto] = ACTIONS(8600), - [anon_sym_register] = ACTIONS(8600), - [anon_sym_inline] = ACTIONS(8600), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8600), - [anon_sym_const] = ACTIONS(8600), - [anon_sym_volatile] = ACTIONS(8600), - [anon_sym_restrict] = ACTIONS(8600), - [anon_sym__Atomic] = ACTIONS(8600), - [anon_sym_in] = ACTIONS(8600), - [anon_sym_out] = ACTIONS(8600), - [anon_sym_inout] = ACTIONS(8600), - [anon_sym_bycopy] = ACTIONS(8600), - [anon_sym_byref] = ACTIONS(8600), - [anon_sym_oneway] = ACTIONS(8600), - [anon_sym__Nullable] = ACTIONS(8600), - [anon_sym__Nonnull] = ACTIONS(8600), - [anon_sym__Nullable_result] = ACTIONS(8600), - [anon_sym__Null_unspecified] = ACTIONS(8600), - [anon_sym___autoreleasing] = ACTIONS(8600), - [anon_sym___nullable] = ACTIONS(8600), - [anon_sym___nonnull] = ACTIONS(8600), - [anon_sym___strong] = ACTIONS(8600), - [anon_sym___weak] = ACTIONS(8600), - [anon_sym___bridge] = ACTIONS(8600), - [anon_sym___bridge_transfer] = ACTIONS(8600), - [anon_sym___bridge_retained] = ACTIONS(8600), - [anon_sym___unsafe_unretained] = ACTIONS(8600), - [anon_sym___block] = ACTIONS(8600), - [anon_sym___kindof] = ACTIONS(8600), - [anon_sym___unused] = ACTIONS(8600), - [anon_sym__Complex] = ACTIONS(8600), - [anon_sym___complex] = ACTIONS(8600), - [anon_sym_IBOutlet] = ACTIONS(8600), - [anon_sym_IBInspectable] = ACTIONS(8600), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8600), - [anon_sym_COLON] = ACTIONS(8602), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8600), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8600), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8600), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8600), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8600), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8600), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8600), - [anon_sym_NS_AVAILABLE] = ACTIONS(8600), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8600), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8600), - [anon_sym_API_AVAILABLE] = ACTIONS(8600), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8600), - [anon_sym_API_DEPRECATED] = ACTIONS(8600), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8600), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8600), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8600), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8600), - [anon_sym___deprecated_msg] = ACTIONS(8600), - [anon_sym___deprecated_enum_msg] = ACTIONS(8600), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8600), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8600), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8600), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8600), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -544472,81 +536373,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3544] = { - [sym_attribute_specifier] = STATE(3459), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4243), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3467), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3467), + [3488] = { + [sym_attribute_specifier] = STATE(3477), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4206), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3468), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3468), [sym_identifier] = ACTIONS(8604), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), [anon_sym_SEMI] = ACTIONS(8606), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -544554,81 +536455,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3545] = { - [sym_identifier] = ACTIONS(8608), - [anon_sym_COMMA] = ACTIONS(8610), - [anon_sym_RPAREN] = ACTIONS(8610), - [anon_sym_LPAREN2] = ACTIONS(8610), - [anon_sym_STAR] = ACTIONS(8610), - [anon_sym_SEMI] = ACTIONS(8610), - [anon_sym_extern] = ACTIONS(8608), - [anon_sym___attribute] = ACTIONS(8608), - [anon_sym___attribute__] = ACTIONS(8608), - [anon_sym___declspec] = ACTIONS(8608), - [anon_sym___based] = ACTIONS(8608), - [anon_sym_LBRACE] = ACTIONS(8610), - [anon_sym_LBRACK] = ACTIONS(8610), - [anon_sym_static] = ACTIONS(8608), - [anon_sym_auto] = ACTIONS(8608), - [anon_sym_register] = ACTIONS(8608), - [anon_sym_inline] = ACTIONS(8608), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8608), - [anon_sym_const] = ACTIONS(8608), - [anon_sym_volatile] = ACTIONS(8608), - [anon_sym_restrict] = ACTIONS(8608), - [anon_sym__Atomic] = ACTIONS(8608), - [anon_sym_in] = ACTIONS(8608), - [anon_sym_out] = ACTIONS(8608), - [anon_sym_inout] = ACTIONS(8608), - [anon_sym_bycopy] = ACTIONS(8608), - [anon_sym_byref] = ACTIONS(8608), - [anon_sym_oneway] = ACTIONS(8608), - [anon_sym__Nullable] = ACTIONS(8608), - [anon_sym__Nonnull] = ACTIONS(8608), - [anon_sym__Nullable_result] = ACTIONS(8608), - [anon_sym__Null_unspecified] = ACTIONS(8608), - [anon_sym___autoreleasing] = ACTIONS(8608), - [anon_sym___nullable] = ACTIONS(8608), - [anon_sym___nonnull] = ACTIONS(8608), - [anon_sym___strong] = ACTIONS(8608), - [anon_sym___weak] = ACTIONS(8608), - [anon_sym___bridge] = ACTIONS(8608), - [anon_sym___bridge_transfer] = ACTIONS(8608), - [anon_sym___bridge_retained] = ACTIONS(8608), - [anon_sym___unsafe_unretained] = ACTIONS(8608), - [anon_sym___block] = ACTIONS(8608), - [anon_sym___kindof] = ACTIONS(8608), - [anon_sym___unused] = ACTIONS(8608), - [anon_sym__Complex] = ACTIONS(8608), - [anon_sym___complex] = ACTIONS(8608), - [anon_sym_IBOutlet] = ACTIONS(8608), - [anon_sym_IBInspectable] = ACTIONS(8608), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8608), - [anon_sym_COLON] = ACTIONS(8610), + [3489] = { + [sym_attribute_specifier] = STATE(5559), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4134), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3400), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3400), + [sym_identifier] = ACTIONS(8600), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8608), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8608), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8608), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8608), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8608), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8608), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8608), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8608), - [anon_sym_NS_AVAILABLE] = ACTIONS(8608), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8608), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8608), - [anon_sym_API_AVAILABLE] = ACTIONS(8608), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8608), - [anon_sym_API_DEPRECATED] = ACTIONS(8608), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8608), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8608), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8608), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8608), - [anon_sym___deprecated_msg] = ACTIONS(8608), - [anon_sym___deprecated_enum_msg] = ACTIONS(8608), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8608), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8608), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8608), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8608), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -544636,81 +536537,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3546] = { - [sym_identifier] = ACTIONS(8612), - [anon_sym_COMMA] = ACTIONS(8614), - [anon_sym_RPAREN] = ACTIONS(8614), - [anon_sym_LPAREN2] = ACTIONS(8614), - [anon_sym_STAR] = ACTIONS(8614), + [3490] = { + [sym_attribute_specifier] = STATE(5292), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4186), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3452), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3452), + [sym_identifier] = ACTIONS(8610), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8612), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3491] = { + [sym_field_declaration_list] = STATE(3454), + [sym_superclass_reference] = STATE(3377), + [sym_identifier] = ACTIONS(8033), + [anon_sym_LPAREN2] = ACTIONS(8035), + [anon_sym_STAR] = ACTIONS(8035), + [anon_sym_SEMI] = ACTIONS(8035), + [anon_sym_extern] = ACTIONS(8033), + [anon_sym___attribute] = ACTIONS(8033), + [anon_sym___attribute__] = ACTIONS(8033), + [anon_sym___declspec] = ACTIONS(8033), + [anon_sym___based] = ACTIONS(8033), + [anon_sym_LBRACE] = ACTIONS(8027), + [anon_sym_static] = ACTIONS(8033), + [anon_sym_auto] = ACTIONS(8033), + [anon_sym_register] = ACTIONS(8033), + [anon_sym_inline] = ACTIONS(8033), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8033), + [anon_sym_const] = ACTIONS(8033), + [anon_sym_volatile] = ACTIONS(8033), + [anon_sym_restrict] = ACTIONS(8033), + [anon_sym__Atomic] = ACTIONS(8033), + [anon_sym_in] = ACTIONS(8033), + [anon_sym_out] = ACTIONS(8033), + [anon_sym_inout] = ACTIONS(8033), + [anon_sym_bycopy] = ACTIONS(8033), + [anon_sym_byref] = ACTIONS(8033), + [anon_sym_oneway] = ACTIONS(8033), + [anon_sym__Nullable] = ACTIONS(8033), + [anon_sym__Nonnull] = ACTIONS(8033), + [anon_sym__Nullable_result] = ACTIONS(8033), + [anon_sym__Null_unspecified] = ACTIONS(8033), + [anon_sym___autoreleasing] = ACTIONS(8033), + [anon_sym___nullable] = ACTIONS(8033), + [anon_sym___nonnull] = ACTIONS(8033), + [anon_sym___strong] = ACTIONS(8033), + [anon_sym___weak] = ACTIONS(8033), + [anon_sym___bridge] = ACTIONS(8033), + [anon_sym___bridge_transfer] = ACTIONS(8033), + [anon_sym___bridge_retained] = ACTIONS(8033), + [anon_sym___unsafe_unretained] = ACTIONS(8033), + [anon_sym___block] = ACTIONS(8033), + [anon_sym___kindof] = ACTIONS(8033), + [anon_sym___unused] = ACTIONS(8033), + [anon_sym__Complex] = ACTIONS(8033), + [anon_sym___complex] = ACTIONS(8033), + [anon_sym_IBOutlet] = ACTIONS(8033), + [anon_sym_IBInspectable] = ACTIONS(8033), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8033), + [anon_sym_COLON] = ACTIONS(8286), + [anon_sym_ATdefs] = ACTIONS(8040), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8033), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8033), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8033), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8033), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8033), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8033), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8033), + [anon_sym_NS_AVAILABLE] = ACTIONS(8033), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8033), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_API_AVAILABLE] = ACTIONS(8033), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8033), + [anon_sym_API_DEPRECATED] = ACTIONS(8033), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8033), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8033), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8033), + [anon_sym___deprecated_msg] = ACTIONS(8033), + [anon_sym___deprecated_enum_msg] = ACTIONS(8033), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8033), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8033), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3492] = { + [sym_attribute_specifier] = STATE(5292), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4186), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8610), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), [anon_sym_SEMI] = ACTIONS(8614), - [anon_sym_extern] = ACTIONS(8612), - [anon_sym___attribute] = ACTIONS(8612), - [anon_sym___attribute__] = ACTIONS(8612), - [anon_sym___declspec] = ACTIONS(8612), - [anon_sym___based] = ACTIONS(8612), - [anon_sym_LBRACE] = ACTIONS(8614), - [anon_sym_LBRACK] = ACTIONS(8614), - [anon_sym_static] = ACTIONS(8612), - [anon_sym_auto] = ACTIONS(8612), - [anon_sym_register] = ACTIONS(8612), - [anon_sym_inline] = ACTIONS(8612), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8612), - [anon_sym_const] = ACTIONS(8612), - [anon_sym_volatile] = ACTIONS(8612), - [anon_sym_restrict] = ACTIONS(8612), - [anon_sym__Atomic] = ACTIONS(8612), - [anon_sym_in] = ACTIONS(8612), - [anon_sym_out] = ACTIONS(8612), - [anon_sym_inout] = ACTIONS(8612), - [anon_sym_bycopy] = ACTIONS(8612), - [anon_sym_byref] = ACTIONS(8612), - [anon_sym_oneway] = ACTIONS(8612), - [anon_sym__Nullable] = ACTIONS(8612), - [anon_sym__Nonnull] = ACTIONS(8612), - [anon_sym__Nullable_result] = ACTIONS(8612), - [anon_sym__Null_unspecified] = ACTIONS(8612), - [anon_sym___autoreleasing] = ACTIONS(8612), - [anon_sym___nullable] = ACTIONS(8612), - [anon_sym___nonnull] = ACTIONS(8612), - [anon_sym___strong] = ACTIONS(8612), - [anon_sym___weak] = ACTIONS(8612), - [anon_sym___bridge] = ACTIONS(8612), - [anon_sym___bridge_transfer] = ACTIONS(8612), - [anon_sym___bridge_retained] = ACTIONS(8612), - [anon_sym___unsafe_unretained] = ACTIONS(8612), - [anon_sym___block] = ACTIONS(8612), - [anon_sym___kindof] = ACTIONS(8612), - [anon_sym___unused] = ACTIONS(8612), - [anon_sym__Complex] = ACTIONS(8612), - [anon_sym___complex] = ACTIONS(8612), - [anon_sym_IBOutlet] = ACTIONS(8612), - [anon_sym_IBInspectable] = ACTIONS(8612), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8612), - [anon_sym_COLON] = ACTIONS(8614), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8612), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8612), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8612), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8612), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8612), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8612), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8612), - [anon_sym_NS_AVAILABLE] = ACTIONS(8612), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8612), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8612), - [anon_sym_API_AVAILABLE] = ACTIONS(8612), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8612), - [anon_sym_API_DEPRECATED] = ACTIONS(8612), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8612), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8612), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8612), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8612), - [anon_sym___deprecated_msg] = ACTIONS(8612), - [anon_sym___deprecated_enum_msg] = ACTIONS(8612), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8612), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8612), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8612), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8612), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -544718,81 +536783,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3547] = { - [sym_attribute_specifier] = STATE(5668), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4203), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), + [3493] = { [sym_identifier] = ACTIONS(8616), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), + [anon_sym_COMMA] = ACTIONS(8618), + [anon_sym_RPAREN] = ACTIONS(8618), + [anon_sym_LPAREN2] = ACTIONS(8618), + [anon_sym_STAR] = ACTIONS(8618), [anon_sym_SEMI] = ACTIONS(8618), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [anon_sym_extern] = ACTIONS(8616), + [anon_sym___attribute] = ACTIONS(8616), + [anon_sym___attribute__] = ACTIONS(8616), + [anon_sym___declspec] = ACTIONS(8616), + [anon_sym___based] = ACTIONS(8616), + [anon_sym_LBRACE] = ACTIONS(8618), + [anon_sym_LBRACK] = ACTIONS(8618), + [anon_sym_static] = ACTIONS(8616), + [anon_sym_auto] = ACTIONS(8616), + [anon_sym_register] = ACTIONS(8616), + [anon_sym_inline] = ACTIONS(8616), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8616), + [anon_sym_const] = ACTIONS(8616), + [anon_sym_volatile] = ACTIONS(8616), + [anon_sym_restrict] = ACTIONS(8616), + [anon_sym__Atomic] = ACTIONS(8616), + [anon_sym_in] = ACTIONS(8616), + [anon_sym_out] = ACTIONS(8616), + [anon_sym_inout] = ACTIONS(8616), + [anon_sym_bycopy] = ACTIONS(8616), + [anon_sym_byref] = ACTIONS(8616), + [anon_sym_oneway] = ACTIONS(8616), + [anon_sym__Nullable] = ACTIONS(8616), + [anon_sym__Nonnull] = ACTIONS(8616), + [anon_sym__Nullable_result] = ACTIONS(8616), + [anon_sym__Null_unspecified] = ACTIONS(8616), + [anon_sym___autoreleasing] = ACTIONS(8616), + [anon_sym___nullable] = ACTIONS(8616), + [anon_sym___nonnull] = ACTIONS(8616), + [anon_sym___strong] = ACTIONS(8616), + [anon_sym___weak] = ACTIONS(8616), + [anon_sym___bridge] = ACTIONS(8616), + [anon_sym___bridge_transfer] = ACTIONS(8616), + [anon_sym___bridge_retained] = ACTIONS(8616), + [anon_sym___unsafe_unretained] = ACTIONS(8616), + [anon_sym___block] = ACTIONS(8616), + [anon_sym___kindof] = ACTIONS(8616), + [anon_sym___unused] = ACTIONS(8616), + [anon_sym__Complex] = ACTIONS(8616), + [anon_sym___complex] = ACTIONS(8616), + [anon_sym_IBOutlet] = ACTIONS(8616), + [anon_sym_IBInspectable] = ACTIONS(8616), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8616), + [anon_sym_COLON] = ACTIONS(8618), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8616), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8616), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8616), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8616), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8616), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8616), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8616), + [anon_sym_NS_AVAILABLE] = ACTIONS(8616), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8616), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8616), + [anon_sym_API_AVAILABLE] = ACTIONS(8616), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8616), + [anon_sym_API_DEPRECATED] = ACTIONS(8616), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8616), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8616), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8616), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8616), + [anon_sym___deprecated_msg] = ACTIONS(8616), + [anon_sym___deprecated_enum_msg] = ACTIONS(8616), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8616), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8616), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8616), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8616), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -544800,81 +536865,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3548] = { - [sym_attribute_specifier] = STATE(5733), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4198), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3556), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3556), + [3494] = { [sym_identifier] = ACTIONS(8620), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), + [anon_sym_COMMA] = ACTIONS(8622), + [anon_sym_RPAREN] = ACTIONS(8622), + [anon_sym_LPAREN2] = ACTIONS(8622), + [anon_sym_STAR] = ACTIONS(8622), [anon_sym_SEMI] = ACTIONS(8622), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [anon_sym_extern] = ACTIONS(8620), + [anon_sym___attribute] = ACTIONS(8620), + [anon_sym___attribute__] = ACTIONS(8620), + [anon_sym___declspec] = ACTIONS(8620), + [anon_sym___based] = ACTIONS(8620), + [anon_sym_LBRACE] = ACTIONS(8622), + [anon_sym_LBRACK] = ACTIONS(8622), + [anon_sym_static] = ACTIONS(8620), + [anon_sym_auto] = ACTIONS(8620), + [anon_sym_register] = ACTIONS(8620), + [anon_sym_inline] = ACTIONS(8620), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8620), + [anon_sym_const] = ACTIONS(8620), + [anon_sym_volatile] = ACTIONS(8620), + [anon_sym_restrict] = ACTIONS(8620), + [anon_sym__Atomic] = ACTIONS(8620), + [anon_sym_in] = ACTIONS(8620), + [anon_sym_out] = ACTIONS(8620), + [anon_sym_inout] = ACTIONS(8620), + [anon_sym_bycopy] = ACTIONS(8620), + [anon_sym_byref] = ACTIONS(8620), + [anon_sym_oneway] = ACTIONS(8620), + [anon_sym__Nullable] = ACTIONS(8620), + [anon_sym__Nonnull] = ACTIONS(8620), + [anon_sym__Nullable_result] = ACTIONS(8620), + [anon_sym__Null_unspecified] = ACTIONS(8620), + [anon_sym___autoreleasing] = ACTIONS(8620), + [anon_sym___nullable] = ACTIONS(8620), + [anon_sym___nonnull] = ACTIONS(8620), + [anon_sym___strong] = ACTIONS(8620), + [anon_sym___weak] = ACTIONS(8620), + [anon_sym___bridge] = ACTIONS(8620), + [anon_sym___bridge_transfer] = ACTIONS(8620), + [anon_sym___bridge_retained] = ACTIONS(8620), + [anon_sym___unsafe_unretained] = ACTIONS(8620), + [anon_sym___block] = ACTIONS(8620), + [anon_sym___kindof] = ACTIONS(8620), + [anon_sym___unused] = ACTIONS(8620), + [anon_sym__Complex] = ACTIONS(8620), + [anon_sym___complex] = ACTIONS(8620), + [anon_sym_IBOutlet] = ACTIONS(8620), + [anon_sym_IBInspectable] = ACTIONS(8620), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8620), + [anon_sym_COLON] = ACTIONS(8622), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8620), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8620), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8620), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8620), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8620), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8620), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8620), + [anon_sym_NS_AVAILABLE] = ACTIONS(8620), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8620), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8620), + [anon_sym_API_AVAILABLE] = ACTIONS(8620), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8620), + [anon_sym_API_DEPRECATED] = ACTIONS(8620), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8620), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8620), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8620), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8620), + [anon_sym___deprecated_msg] = ACTIONS(8620), + [anon_sym___deprecated_enum_msg] = ACTIONS(8620), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8620), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8620), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8620), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8620), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -544882,81 +536947,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3549] = { - [sym_attribute_specifier] = STATE(5686), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4172), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), + [3495] = { + [sym_attribute_specifier] = STATE(3401), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4263), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3392), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3392), [sym_identifier] = ACTIONS(8624), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), [anon_sym_SEMI] = ACTIONS(8626), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -544964,163 +537029,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3550] = { - [sym_attribute_specifier] = STATE(5733), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4198), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8620), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8622), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3551] = { + [3496] = { + [sym_attribute_specifier] = STATE(5748), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4213), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), [sym_identifier] = ACTIONS(8628), - [anon_sym_COMMA] = ACTIONS(8630), - [anon_sym_RPAREN] = ACTIONS(8630), - [anon_sym_LPAREN2] = ACTIONS(8630), - [anon_sym_STAR] = ACTIONS(8630), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), [anon_sym_SEMI] = ACTIONS(8630), - [anon_sym_extern] = ACTIONS(8628), - [anon_sym___attribute] = ACTIONS(8628), - [anon_sym___attribute__] = ACTIONS(8628), - [anon_sym___declspec] = ACTIONS(8628), - [anon_sym___based] = ACTIONS(8628), - [anon_sym_LBRACE] = ACTIONS(8630), - [anon_sym_LBRACK] = ACTIONS(8630), - [anon_sym_static] = ACTIONS(8628), - [anon_sym_auto] = ACTIONS(8628), - [anon_sym_register] = ACTIONS(8628), - [anon_sym_inline] = ACTIONS(8628), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8628), - [anon_sym_const] = ACTIONS(8628), - [anon_sym_volatile] = ACTIONS(8628), - [anon_sym_restrict] = ACTIONS(8628), - [anon_sym__Atomic] = ACTIONS(8628), - [anon_sym_in] = ACTIONS(8628), - [anon_sym_out] = ACTIONS(8628), - [anon_sym_inout] = ACTIONS(8628), - [anon_sym_bycopy] = ACTIONS(8628), - [anon_sym_byref] = ACTIONS(8628), - [anon_sym_oneway] = ACTIONS(8628), - [anon_sym__Nullable] = ACTIONS(8628), - [anon_sym__Nonnull] = ACTIONS(8628), - [anon_sym__Nullable_result] = ACTIONS(8628), - [anon_sym__Null_unspecified] = ACTIONS(8628), - [anon_sym___autoreleasing] = ACTIONS(8628), - [anon_sym___nullable] = ACTIONS(8628), - [anon_sym___nonnull] = ACTIONS(8628), - [anon_sym___strong] = ACTIONS(8628), - [anon_sym___weak] = ACTIONS(8628), - [anon_sym___bridge] = ACTIONS(8628), - [anon_sym___bridge_transfer] = ACTIONS(8628), - [anon_sym___bridge_retained] = ACTIONS(8628), - [anon_sym___unsafe_unretained] = ACTIONS(8628), - [anon_sym___block] = ACTIONS(8628), - [anon_sym___kindof] = ACTIONS(8628), - [anon_sym___unused] = ACTIONS(8628), - [anon_sym__Complex] = ACTIONS(8628), - [anon_sym___complex] = ACTIONS(8628), - [anon_sym_IBOutlet] = ACTIONS(8628), - [anon_sym_IBInspectable] = ACTIONS(8628), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8628), - [anon_sym_COLON] = ACTIONS(8630), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(35), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8628), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8628), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8628), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8628), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8628), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8628), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8628), - [anon_sym_NS_AVAILABLE] = ACTIONS(8628), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8628), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8628), - [anon_sym_API_AVAILABLE] = ACTIONS(8628), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8628), - [anon_sym_API_DEPRECATED] = ACTIONS(8628), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8628), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8628), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8628), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8628), - [anon_sym___deprecated_msg] = ACTIONS(8628), - [anon_sym___deprecated_enum_msg] = ACTIONS(8628), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8628), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8628), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8628), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8628), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -545128,7 +537111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3552] = { + [3497] = { [sym_identifier] = ACTIONS(8632), [anon_sym_COMMA] = ACTIONS(8634), [anon_sym_RPAREN] = ACTIONS(8634), @@ -545210,7 +537193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3553] = { + [3498] = { [sym_identifier] = ACTIONS(8636), [anon_sym_COMMA] = ACTIONS(8638), [anon_sym_RPAREN] = ACTIONS(8638), @@ -545292,245 +537275,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3554] = { - [sym_attribute_specifier] = STATE(5756), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4115), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3501), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3501), - [sym_identifier] = ACTIONS(8299), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8301), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3555] = { + [3499] = { + [sym_attribute_specifier] = STATE(5647), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4190), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), [sym_identifier] = ACTIONS(8640), - [anon_sym_COMMA] = ACTIONS(8642), - [anon_sym_RPAREN] = ACTIONS(8642), - [anon_sym_LPAREN2] = ACTIONS(8642), - [anon_sym_STAR] = ACTIONS(8642), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), [anon_sym_SEMI] = ACTIONS(8642), - [anon_sym_extern] = ACTIONS(8640), - [anon_sym___attribute] = ACTIONS(8640), - [anon_sym___attribute__] = ACTIONS(8640), - [anon_sym___declspec] = ACTIONS(8640), - [anon_sym___based] = ACTIONS(8640), - [anon_sym_LBRACE] = ACTIONS(8642), - [anon_sym_LBRACK] = ACTIONS(8642), - [anon_sym_static] = ACTIONS(8640), - [anon_sym_auto] = ACTIONS(8640), - [anon_sym_register] = ACTIONS(8640), - [anon_sym_inline] = ACTIONS(8640), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8640), - [anon_sym_const] = ACTIONS(8640), - [anon_sym_volatile] = ACTIONS(8640), - [anon_sym_restrict] = ACTIONS(8640), - [anon_sym__Atomic] = ACTIONS(8640), - [anon_sym_in] = ACTIONS(8640), - [anon_sym_out] = ACTIONS(8640), - [anon_sym_inout] = ACTIONS(8640), - [anon_sym_bycopy] = ACTIONS(8640), - [anon_sym_byref] = ACTIONS(8640), - [anon_sym_oneway] = ACTIONS(8640), - [anon_sym__Nullable] = ACTIONS(8640), - [anon_sym__Nonnull] = ACTIONS(8640), - [anon_sym__Nullable_result] = ACTIONS(8640), - [anon_sym__Null_unspecified] = ACTIONS(8640), - [anon_sym___autoreleasing] = ACTIONS(8640), - [anon_sym___nullable] = ACTIONS(8640), - [anon_sym___nonnull] = ACTIONS(8640), - [anon_sym___strong] = ACTIONS(8640), - [anon_sym___weak] = ACTIONS(8640), - [anon_sym___bridge] = ACTIONS(8640), - [anon_sym___bridge_transfer] = ACTIONS(8640), - [anon_sym___bridge_retained] = ACTIONS(8640), - [anon_sym___unsafe_unretained] = ACTIONS(8640), - [anon_sym___block] = ACTIONS(8640), - [anon_sym___kindof] = ACTIONS(8640), - [anon_sym___unused] = ACTIONS(8640), - [anon_sym__Complex] = ACTIONS(8640), - [anon_sym___complex] = ACTIONS(8640), - [anon_sym_IBOutlet] = ACTIONS(8640), - [anon_sym_IBInspectable] = ACTIONS(8640), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8640), - [anon_sym_COLON] = ACTIONS(8642), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8640), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8640), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8640), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8640), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8640), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8640), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8640), - [anon_sym_NS_AVAILABLE] = ACTIONS(8640), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8640), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8640), - [anon_sym_API_AVAILABLE] = ACTIONS(8640), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8640), - [anon_sym_API_DEPRECATED] = ACTIONS(8640), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8640), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8640), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8640), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8640), - [anon_sym___deprecated_msg] = ACTIONS(8640), - [anon_sym___deprecated_enum_msg] = ACTIONS(8640), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8640), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8640), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8640), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8640), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3556] = { - [sym_attribute_specifier] = STATE(5763), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4145), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8644), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8646), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -545538,163 +537357,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3557] = { - [sym_identifier] = ACTIONS(8648), - [anon_sym_COMMA] = ACTIONS(8650), - [anon_sym_RPAREN] = ACTIONS(8650), - [anon_sym_LPAREN2] = ACTIONS(8650), - [anon_sym_STAR] = ACTIONS(8650), - [anon_sym_SEMI] = ACTIONS(8650), - [anon_sym_extern] = ACTIONS(8648), - [anon_sym___attribute] = ACTIONS(8648), - [anon_sym___attribute__] = ACTIONS(8648), - [anon_sym___declspec] = ACTIONS(8648), - [anon_sym___based] = ACTIONS(8648), - [anon_sym_LBRACE] = ACTIONS(8650), - [anon_sym_LBRACK] = ACTIONS(8650), - [anon_sym_static] = ACTIONS(8648), - [anon_sym_auto] = ACTIONS(8648), - [anon_sym_register] = ACTIONS(8648), - [anon_sym_inline] = ACTIONS(8648), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8648), - [anon_sym_const] = ACTIONS(8648), - [anon_sym_volatile] = ACTIONS(8648), - [anon_sym_restrict] = ACTIONS(8648), - [anon_sym__Atomic] = ACTIONS(8648), - [anon_sym_in] = ACTIONS(8648), - [anon_sym_out] = ACTIONS(8648), - [anon_sym_inout] = ACTIONS(8648), - [anon_sym_bycopy] = ACTIONS(8648), - [anon_sym_byref] = ACTIONS(8648), - [anon_sym_oneway] = ACTIONS(8648), - [anon_sym__Nullable] = ACTIONS(8648), - [anon_sym__Nonnull] = ACTIONS(8648), - [anon_sym__Nullable_result] = ACTIONS(8648), - [anon_sym__Null_unspecified] = ACTIONS(8648), - [anon_sym___autoreleasing] = ACTIONS(8648), - [anon_sym___nullable] = ACTIONS(8648), - [anon_sym___nonnull] = ACTIONS(8648), - [anon_sym___strong] = ACTIONS(8648), - [anon_sym___weak] = ACTIONS(8648), - [anon_sym___bridge] = ACTIONS(8648), - [anon_sym___bridge_transfer] = ACTIONS(8648), - [anon_sym___bridge_retained] = ACTIONS(8648), - [anon_sym___unsafe_unretained] = ACTIONS(8648), - [anon_sym___block] = ACTIONS(8648), - [anon_sym___kindof] = ACTIONS(8648), - [anon_sym___unused] = ACTIONS(8648), - [anon_sym__Complex] = ACTIONS(8648), - [anon_sym___complex] = ACTIONS(8648), - [anon_sym_IBOutlet] = ACTIONS(8648), - [anon_sym_IBInspectable] = ACTIONS(8648), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8648), - [anon_sym_COLON] = ACTIONS(8650), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8648), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8648), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8648), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8648), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8648), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8648), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8648), - [anon_sym_NS_AVAILABLE] = ACTIONS(8648), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8648), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8648), - [anon_sym_API_AVAILABLE] = ACTIONS(8648), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8648), - [anon_sym_API_DEPRECATED] = ACTIONS(8648), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8648), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8648), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8648), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8648), - [anon_sym___deprecated_msg] = ACTIONS(8648), - [anon_sym___deprecated_enum_msg] = ACTIONS(8648), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8648), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8648), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8648), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8648), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3558] = { - [sym_attribute_specifier] = STATE(5541), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4254), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3549), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3549), - [sym_identifier] = ACTIONS(8538), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8540), + [3500] = { + [sym_attribute_specifier] = STATE(5647), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4190), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3395), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3395), + [sym_identifier] = ACTIONS(8640), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8644), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -545702,163 +537439,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3559] = { - [sym_identifier] = ACTIONS(8652), - [anon_sym_COMMA] = ACTIONS(8654), - [anon_sym_RPAREN] = ACTIONS(8654), - [anon_sym_LPAREN2] = ACTIONS(8654), - [anon_sym_STAR] = ACTIONS(8654), - [anon_sym_SEMI] = ACTIONS(8654), - [anon_sym_extern] = ACTIONS(8652), - [anon_sym___attribute] = ACTIONS(8652), - [anon_sym___attribute__] = ACTIONS(8652), - [anon_sym___declspec] = ACTIONS(8652), - [anon_sym___based] = ACTIONS(8652), - [anon_sym_LBRACE] = ACTIONS(8654), - [anon_sym_LBRACK] = ACTIONS(8654), - [anon_sym_static] = ACTIONS(8652), - [anon_sym_auto] = ACTIONS(8652), - [anon_sym_register] = ACTIONS(8652), - [anon_sym_inline] = ACTIONS(8652), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8652), - [anon_sym_const] = ACTIONS(8652), - [anon_sym_volatile] = ACTIONS(8652), - [anon_sym_restrict] = ACTIONS(8652), - [anon_sym__Atomic] = ACTIONS(8652), - [anon_sym_in] = ACTIONS(8652), - [anon_sym_out] = ACTIONS(8652), - [anon_sym_inout] = ACTIONS(8652), - [anon_sym_bycopy] = ACTIONS(8652), - [anon_sym_byref] = ACTIONS(8652), - [anon_sym_oneway] = ACTIONS(8652), - [anon_sym__Nullable] = ACTIONS(8652), - [anon_sym__Nonnull] = ACTIONS(8652), - [anon_sym__Nullable_result] = ACTIONS(8652), - [anon_sym__Null_unspecified] = ACTIONS(8652), - [anon_sym___autoreleasing] = ACTIONS(8652), - [anon_sym___nullable] = ACTIONS(8652), - [anon_sym___nonnull] = ACTIONS(8652), - [anon_sym___strong] = ACTIONS(8652), - [anon_sym___weak] = ACTIONS(8652), - [anon_sym___bridge] = ACTIONS(8652), - [anon_sym___bridge_transfer] = ACTIONS(8652), - [anon_sym___bridge_retained] = ACTIONS(8652), - [anon_sym___unsafe_unretained] = ACTIONS(8652), - [anon_sym___block] = ACTIONS(8652), - [anon_sym___kindof] = ACTIONS(8652), - [anon_sym___unused] = ACTIONS(8652), - [anon_sym__Complex] = ACTIONS(8652), - [anon_sym___complex] = ACTIONS(8652), - [anon_sym_IBOutlet] = ACTIONS(8652), - [anon_sym_IBInspectable] = ACTIONS(8652), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8652), - [anon_sym_COLON] = ACTIONS(8654), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8652), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8652), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8652), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8652), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8652), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8652), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8652), - [anon_sym_NS_AVAILABLE] = ACTIONS(8652), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8652), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8652), - [anon_sym_API_AVAILABLE] = ACTIONS(8652), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8652), - [anon_sym_API_DEPRECATED] = ACTIONS(8652), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8652), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8652), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8652), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8652), - [anon_sym___deprecated_msg] = ACTIONS(8652), - [anon_sym___deprecated_enum_msg] = ACTIONS(8652), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8652), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8652), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8652), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8652), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3560] = { - [sym_attribute_specifier] = STATE(5839), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4226), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8656), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8658), + [3501] = { + [sym_attribute_specifier] = STATE(5649), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4192), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3688), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8646), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8648), [anon_sym___attribute] = ACTIONS(35), [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(111), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(113), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(115), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(115), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(115), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(115), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(117), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_API_AVAILABLE] = ACTIONS(117), + [anon_sym_API_UNAVAILABLE] = ACTIONS(117), + [anon_sym_API_DEPRECATED] = ACTIONS(117), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(117), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(117), + [anon_sym___deprecated_msg] = ACTIONS(117), + [anon_sym___deprecated_enum_msg] = ACTIONS(117), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(117), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(117), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(117), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -545866,81 +537521,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3561] = { - [sym_attribute_specifier] = STATE(5695), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4081), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3725), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3725), - [sym_identifier] = ACTIONS(8660), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8662), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [3502] = { + [sym_attribute_specifier] = STATE(3500), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4251), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3499), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3499), + [sym_identifier] = ACTIONS(8650), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8652), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -545948,81 +537603,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3562] = { - [sym_attribute_specifier] = STATE(5695), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4081), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3529), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3529), - [sym_identifier] = ACTIONS(8660), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8662), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(35), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [3503] = { + [sym_identifier] = ACTIONS(8654), + [anon_sym_COMMA] = ACTIONS(8656), + [anon_sym_RPAREN] = ACTIONS(8656), + [anon_sym_LPAREN2] = ACTIONS(8656), + [anon_sym_STAR] = ACTIONS(8656), + [anon_sym_SEMI] = ACTIONS(8656), + [anon_sym_extern] = ACTIONS(8654), + [anon_sym___attribute] = ACTIONS(8654), + [anon_sym___attribute__] = ACTIONS(8654), + [anon_sym___declspec] = ACTIONS(8654), + [anon_sym___based] = ACTIONS(8654), + [anon_sym_LBRACE] = ACTIONS(8656), + [anon_sym_LBRACK] = ACTIONS(8656), + [anon_sym_static] = ACTIONS(8654), + [anon_sym_auto] = ACTIONS(8654), + [anon_sym_register] = ACTIONS(8654), + [anon_sym_inline] = ACTIONS(8654), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8654), + [anon_sym_const] = ACTIONS(8654), + [anon_sym_volatile] = ACTIONS(8654), + [anon_sym_restrict] = ACTIONS(8654), + [anon_sym__Atomic] = ACTIONS(8654), + [anon_sym_in] = ACTIONS(8654), + [anon_sym_out] = ACTIONS(8654), + [anon_sym_inout] = ACTIONS(8654), + [anon_sym_bycopy] = ACTIONS(8654), + [anon_sym_byref] = ACTIONS(8654), + [anon_sym_oneway] = ACTIONS(8654), + [anon_sym__Nullable] = ACTIONS(8654), + [anon_sym__Nonnull] = ACTIONS(8654), + [anon_sym__Nullable_result] = ACTIONS(8654), + [anon_sym__Null_unspecified] = ACTIONS(8654), + [anon_sym___autoreleasing] = ACTIONS(8654), + [anon_sym___nullable] = ACTIONS(8654), + [anon_sym___nonnull] = ACTIONS(8654), + [anon_sym___strong] = ACTIONS(8654), + [anon_sym___weak] = ACTIONS(8654), + [anon_sym___bridge] = ACTIONS(8654), + [anon_sym___bridge_transfer] = ACTIONS(8654), + [anon_sym___bridge_retained] = ACTIONS(8654), + [anon_sym___unsafe_unretained] = ACTIONS(8654), + [anon_sym___block] = ACTIONS(8654), + [anon_sym___kindof] = ACTIONS(8654), + [anon_sym___unused] = ACTIONS(8654), + [anon_sym__Complex] = ACTIONS(8654), + [anon_sym___complex] = ACTIONS(8654), + [anon_sym_IBOutlet] = ACTIONS(8654), + [anon_sym_IBInspectable] = ACTIONS(8654), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8654), + [anon_sym_COLON] = ACTIONS(8656), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(113), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(115), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(117), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(117), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(117), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(117), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(119), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_API_AVAILABLE] = ACTIONS(119), - [anon_sym_API_UNAVAILABLE] = ACTIONS(119), - [anon_sym_API_DEPRECATED] = ACTIONS(119), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(119), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(119), - [anon_sym___deprecated_msg] = ACTIONS(119), - [anon_sym___deprecated_enum_msg] = ACTIONS(119), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(119), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(119), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(119), + [sym_method_attribute_specifier] = ACTIONS(8654), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8654), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8654), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8654), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8654), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8654), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8654), + [anon_sym_NS_AVAILABLE] = ACTIONS(8654), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8654), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8654), + [anon_sym_API_AVAILABLE] = ACTIONS(8654), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8654), + [anon_sym_API_DEPRECATED] = ACTIONS(8654), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8654), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8654), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8654), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8654), + [anon_sym___deprecated_msg] = ACTIONS(8654), + [anon_sym___deprecated_enum_msg] = ACTIONS(8654), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8654), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8654), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8654), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8654), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -546030,81 +537685,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3563] = { - [sym_attribute_specifier] = STATE(3537), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4069), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3532), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3532), - [sym_identifier] = ACTIONS(8664), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8666), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [3504] = { + [sym_attribute_specifier] = STATE(3427), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4250), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3423), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3423), + [sym_identifier] = ACTIONS(8658), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym_SEMI] = ACTIONS(8660), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -546112,121 +537767,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3564] = { - [sym_attribute_specifier] = STATE(3562), - [sym_ms_based_modifier] = STATE(5452), - [sym__type_declarator] = STATE(4107), - [sym_parenthesized_type_declarator] = STATE(4319), - [sym_pointer_type_declarator] = STATE(4319), - [sym_function_type_declarator] = STATE(4319), - [sym_array_type_declarator] = STATE(4319), - [sym_type_qualifier] = STATE(3561), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(4319), - [aux_sym_type_definition_repeat1] = STATE(3561), - [sym_identifier] = ACTIONS(8668), - [anon_sym_LPAREN2] = ACTIONS(8279), - [anon_sym_STAR] = ACTIONS(8281), - [anon_sym_SEMI] = ACTIONS(8670), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3565] = { - [sym__expression] = STATE(3376), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_initializer_list] = STATE(3903), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [3505] = { + [sym__expression] = STATE(3196), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_initializer_list] = STATE(3289), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -546236,35 +537809,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2182), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -546275,41 +537848,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3566] = { - [sym__expression] = STATE(4451), - [sym_comma_expression] = STATE(5665), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [3506] = { + [sym_attribute_specifier] = STATE(3994), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4273), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3983), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3983), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3507] = { + [sym_attribute_specifier] = STATE(3925), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4143), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3924), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3924), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3508] = { + [sym__expression] = STATE(4481), + [sym_comma_expression] = STATE(5841), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(8672), + [anon_sym_RPAREN] = ACTIONS(8664), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -546319,33 +538054,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -546356,40 +538091,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3567] = { - [sym__expression] = STATE(4483), - [sym_comma_expression] = STATE(5700), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [3509] = { + [sym__expression] = STATE(4471), + [sym_comma_expression] = STATE(5866), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(8666), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -546398,35 +538134,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(8674), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -546437,39 +538172,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3568] = { - [sym__expression] = STATE(4494), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym__dictionary_key_value_pair] = STATE(5028), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [3510] = { + [sym__expression] = STATE(4480), + [sym_comma_expression] = STATE(5626), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -546479,35 +538214,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(8676), + [anon_sym_SEMI] = ACTIONS(8668), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -546518,80 +538253,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3569] = { - [sym_attribute_specifier] = STATE(3979), - [sym_ms_based_modifier] = STATE(5875), - [sym__declarator] = STATE(4017), - [sym_parenthesized_declarator] = STATE(3843), - [sym_pointer_declarator] = STATE(3843), - [sym_function_declarator] = STATE(3843), - [sym_array_declarator] = STATE(3843), - [sym_type_qualifier] = STATE(3982), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(3843), - [aux_sym_type_definition_repeat1] = STATE(3982), - [sym_identifier] = ACTIONS(7909), - [anon_sym_LPAREN2] = ACTIONS(8678), - [anon_sym_STAR] = ACTIONS(8680), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), + [3511] = { + [sym_attribute_specifier] = STATE(3935), + [sym_ms_based_modifier] = STATE(5835), + [sym__declarator] = STATE(4039), + [sym_parenthesized_declarator] = STATE(3790), + [sym_pointer_declarator] = STATE(3790), + [sym_function_declarator] = STATE(3790), + [sym_array_declarator] = STATE(3790), + [sym_type_qualifier] = STATE(3939), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(3790), + [aux_sym_type_definition_repeat1] = STATE(3939), + [sym_identifier] = ACTIONS(7859), + [anon_sym_LPAREN2] = ACTIONS(8670), + [anon_sym_STAR] = ACTIONS(8672), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -546599,40 +538334,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3570] = { - [sym__expression] = STATE(4424), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [3512] = { + [sym_attribute_specifier] = STATE(3985), + [sym_ms_based_modifier] = STATE(5835), + [sym__declarator] = STATE(4043), + [sym_parenthesized_declarator] = STATE(3790), + [sym_pointer_declarator] = STATE(3790), + [sym_function_declarator] = STATE(3790), + [sym_array_declarator] = STATE(3790), + [sym_type_qualifier] = STATE(3977), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(3790), + [aux_sym_type_definition_repeat1] = STATE(3977), + [sym_identifier] = ACTIONS(7859), + [anon_sym_LPAREN2] = ACTIONS(8670), + [anon_sym_STAR] = ACTIONS(8672), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3513] = { + [sym__expression] = STATE(4485), + [sym_comma_expression] = STATE(5365), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(8682), + [anon_sym_RPAREN] = ACTIONS(8674), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -546642,34 +538459,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(8684), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -546680,40 +538496,931 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3571] = { - [sym__expression] = STATE(4393), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [3514] = { + [sym__expression] = STATE(4467), + [sym_comma_expression] = STATE(5430), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(8676), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3515] = { + [sym__expression] = STATE(4466), + [sym_comma_expression] = STATE(5629), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8678), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3516] = { + [sym__expression] = STATE(4459), + [sym_comma_expression] = STATE(5739), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(8680), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3517] = { + [sym__expression] = STATE(4503), + [sym_comma_expression] = STATE(5660), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8682), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3518] = { + [sym__expression] = STATE(4511), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_initializer_list] = STATE(5188), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3519] = { + [sym__expression] = STATE(4510), + [sym_comma_expression] = STATE(5761), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(8684), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3520] = { + [sym_attribute_specifier] = STATE(3954), + [sym_ms_based_modifier] = STATE(5835), + [sym__declarator] = STATE(4033), + [sym_parenthesized_declarator] = STATE(3790), + [sym_pointer_declarator] = STATE(3790), + [sym_function_declarator] = STATE(3790), + [sym_array_declarator] = STATE(3790), + [sym_type_qualifier] = STATE(3956), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(3790), + [aux_sym_type_definition_repeat1] = STATE(3956), + [sym_identifier] = ACTIONS(7859), + [anon_sym_LPAREN2] = ACTIONS(8670), + [anon_sym_STAR] = ACTIONS(8672), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3521] = { + [sym_identifier] = ACTIONS(7831), [anon_sym_COMMA] = ACTIONS(8686), + [anon_sym_RPAREN] = ACTIONS(8686), + [anon_sym_LPAREN2] = ACTIONS(8686), + [anon_sym_STAR] = ACTIONS(8686), + [anon_sym_SEMI] = ACTIONS(8686), + [anon_sym_extern] = ACTIONS(7831), + [anon_sym___attribute] = ACTIONS(7831), + [anon_sym___attribute__] = ACTIONS(7831), + [anon_sym___declspec] = ACTIONS(7831), + [anon_sym___based] = ACTIONS(7831), + [anon_sym_LBRACK] = ACTIONS(8686), + [anon_sym_static] = ACTIONS(7831), + [anon_sym_auto] = ACTIONS(7831), + [anon_sym_register] = ACTIONS(7831), + [anon_sym_inline] = ACTIONS(7831), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7831), + [anon_sym_const] = ACTIONS(7831), + [anon_sym_volatile] = ACTIONS(7831), + [anon_sym_restrict] = ACTIONS(7831), + [anon_sym__Atomic] = ACTIONS(7831), + [anon_sym_in] = ACTIONS(7831), + [anon_sym_out] = ACTIONS(7831), + [anon_sym_inout] = ACTIONS(7831), + [anon_sym_bycopy] = ACTIONS(7831), + [anon_sym_byref] = ACTIONS(7831), + [anon_sym_oneway] = ACTIONS(7831), + [anon_sym__Nullable] = ACTIONS(7831), + [anon_sym__Nonnull] = ACTIONS(7831), + [anon_sym__Nullable_result] = ACTIONS(7831), + [anon_sym__Null_unspecified] = ACTIONS(7831), + [anon_sym___autoreleasing] = ACTIONS(7831), + [anon_sym___nullable] = ACTIONS(7831), + [anon_sym___nonnull] = ACTIONS(7831), + [anon_sym___strong] = ACTIONS(7831), + [anon_sym___weak] = ACTIONS(7831), + [anon_sym___bridge] = ACTIONS(7831), + [anon_sym___bridge_transfer] = ACTIONS(7831), + [anon_sym___bridge_retained] = ACTIONS(7831), + [anon_sym___unsafe_unretained] = ACTIONS(7831), + [anon_sym___block] = ACTIONS(7831), + [anon_sym___kindof] = ACTIONS(7831), + [anon_sym___unused] = ACTIONS(7831), + [anon_sym__Complex] = ACTIONS(7831), + [anon_sym___complex] = ACTIONS(7831), + [anon_sym_IBOutlet] = ACTIONS(7831), + [anon_sym_IBInspectable] = ACTIONS(7831), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7831), + [anon_sym_COLON] = ACTIONS(8686), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7831), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7831), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7831), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7831), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7831), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7831), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7831), + [anon_sym_NS_AVAILABLE] = ACTIONS(7831), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7831), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_API_AVAILABLE] = ACTIONS(7831), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7831), + [anon_sym_API_DEPRECATED] = ACTIONS(7831), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7831), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7831), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7831), + [anon_sym___deprecated_msg] = ACTIONS(7831), + [anon_sym___deprecated_enum_msg] = ACTIONS(7831), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7831), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7831), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7831), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3522] = { + [sym_identifier] = ACTIONS(7310), + [anon_sym_COMMA] = ACTIONS(7312), + [anon_sym_RPAREN] = ACTIONS(7312), + [anon_sym_LPAREN2] = ACTIONS(7312), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_SEMI] = ACTIONS(7312), + [anon_sym_extern] = ACTIONS(7310), + [anon_sym___attribute] = ACTIONS(7310), + [anon_sym___attribute__] = ACTIONS(7310), + [anon_sym___declspec] = ACTIONS(7310), + [anon_sym___based] = ACTIONS(7310), + [anon_sym_LBRACK] = ACTIONS(7312), + [anon_sym_static] = ACTIONS(7310), + [anon_sym_auto] = ACTIONS(7310), + [anon_sym_register] = ACTIONS(7310), + [anon_sym_inline] = ACTIONS(7310), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7310), + [anon_sym_const] = ACTIONS(7310), + [anon_sym_volatile] = ACTIONS(7310), + [anon_sym_restrict] = ACTIONS(7310), + [anon_sym__Atomic] = ACTIONS(7310), + [anon_sym_in] = ACTIONS(7310), + [anon_sym_out] = ACTIONS(7310), + [anon_sym_inout] = ACTIONS(7310), + [anon_sym_bycopy] = ACTIONS(7310), + [anon_sym_byref] = ACTIONS(7310), + [anon_sym_oneway] = ACTIONS(7310), + [anon_sym__Nullable] = ACTIONS(7310), + [anon_sym__Nonnull] = ACTIONS(7310), + [anon_sym__Nullable_result] = ACTIONS(7310), + [anon_sym__Null_unspecified] = ACTIONS(7310), + [anon_sym___autoreleasing] = ACTIONS(7310), + [anon_sym___nullable] = ACTIONS(7310), + [anon_sym___nonnull] = ACTIONS(7310), + [anon_sym___strong] = ACTIONS(7310), + [anon_sym___weak] = ACTIONS(7310), + [anon_sym___bridge] = ACTIONS(7310), + [anon_sym___bridge_transfer] = ACTIONS(7310), + [anon_sym___bridge_retained] = ACTIONS(7310), + [anon_sym___unsafe_unretained] = ACTIONS(7310), + [anon_sym___block] = ACTIONS(7310), + [anon_sym___kindof] = ACTIONS(7310), + [anon_sym___unused] = ACTIONS(7310), + [anon_sym__Complex] = ACTIONS(7310), + [anon_sym___complex] = ACTIONS(7310), + [anon_sym_IBOutlet] = ACTIONS(7310), + [anon_sym_IBInspectable] = ACTIONS(7310), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7310), + [anon_sym_COLON] = ACTIONS(7312), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7310), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7310), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7310), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7310), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7310), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7310), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7310), + [anon_sym_NS_AVAILABLE] = ACTIONS(7310), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7310), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7310), + [anon_sym_API_AVAILABLE] = ACTIONS(7310), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7310), + [anon_sym_API_DEPRECATED] = ACTIONS(7310), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7310), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7310), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7310), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7310), + [anon_sym___deprecated_msg] = ACTIONS(7310), + [anon_sym___deprecated_enum_msg] = ACTIONS(7310), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7310), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7310), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7310), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7310), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3523] = { + [sym_attribute_specifier] = STATE(3963), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4131), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(4011), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(4011), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3524] = { + [sym_attribute_specifier] = STATE(3989), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4206), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3990), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3990), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3525] = { + [sym__expression] = STATE(4520), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym__dictionary_key_value_pair] = STATE(5076), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -546722,35 +539429,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(8688), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(8688), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -546761,39 +539468,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3572] = { - [sym__expression] = STATE(4457), - [sym_comma_expression] = STATE(5575), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [3526] = { + [sym__expression] = STATE(4456), + [sym_comma_expression] = STATE(5745), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_RPAREN] = ACTIONS(8690), [anon_sym_LPAREN2] = ACTIONS(19), @@ -546805,33 +539512,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -546842,80 +539549,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3573] = { - [sym_identifier] = ACTIONS(7360), - [anon_sym_COMMA] = ACTIONS(7362), - [anon_sym_RPAREN] = ACTIONS(7362), - [anon_sym_LPAREN2] = ACTIONS(7362), - [anon_sym_STAR] = ACTIONS(7362), - [anon_sym_SEMI] = ACTIONS(7362), - [anon_sym_extern] = ACTIONS(7360), - [anon_sym___attribute] = ACTIONS(7360), - [anon_sym___attribute__] = ACTIONS(7360), - [anon_sym___declspec] = ACTIONS(7360), - [anon_sym___based] = ACTIONS(7360), - [anon_sym_LBRACK] = ACTIONS(7362), - [anon_sym_static] = ACTIONS(7360), - [anon_sym_auto] = ACTIONS(7360), - [anon_sym_register] = ACTIONS(7360), - [anon_sym_inline] = ACTIONS(7360), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7360), - [anon_sym_const] = ACTIONS(7360), - [anon_sym_volatile] = ACTIONS(7360), - [anon_sym_restrict] = ACTIONS(7360), - [anon_sym__Atomic] = ACTIONS(7360), - [anon_sym_in] = ACTIONS(7360), - [anon_sym_out] = ACTIONS(7360), - [anon_sym_inout] = ACTIONS(7360), - [anon_sym_bycopy] = ACTIONS(7360), - [anon_sym_byref] = ACTIONS(7360), - [anon_sym_oneway] = ACTIONS(7360), - [anon_sym__Nullable] = ACTIONS(7360), - [anon_sym__Nonnull] = ACTIONS(7360), - [anon_sym__Nullable_result] = ACTIONS(7360), - [anon_sym__Null_unspecified] = ACTIONS(7360), - [anon_sym___autoreleasing] = ACTIONS(7360), - [anon_sym___nullable] = ACTIONS(7360), - [anon_sym___nonnull] = ACTIONS(7360), - [anon_sym___strong] = ACTIONS(7360), - [anon_sym___weak] = ACTIONS(7360), - [anon_sym___bridge] = ACTIONS(7360), - [anon_sym___bridge_transfer] = ACTIONS(7360), - [anon_sym___bridge_retained] = ACTIONS(7360), - [anon_sym___unsafe_unretained] = ACTIONS(7360), - [anon_sym___block] = ACTIONS(7360), - [anon_sym___kindof] = ACTIONS(7360), - [anon_sym___unused] = ACTIONS(7360), - [anon_sym__Complex] = ACTIONS(7360), - [anon_sym___complex] = ACTIONS(7360), - [anon_sym_IBOutlet] = ACTIONS(7360), - [anon_sym_IBInspectable] = ACTIONS(7360), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7360), - [anon_sym_COLON] = ACTIONS(7362), + [3527] = { + [sym_attribute_specifier] = STATE(3988), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4175), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(4014), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(4014), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7360), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7360), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7360), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7360), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7360), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7360), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7360), - [anon_sym_NS_AVAILABLE] = ACTIONS(7360), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7360), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7360), - [anon_sym_API_AVAILABLE] = ACTIONS(7360), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7360), - [anon_sym_API_DEPRECATED] = ACTIONS(7360), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7360), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7360), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7360), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7360), - [anon_sym___deprecated_msg] = ACTIONS(7360), - [anon_sym___deprecated_enum_msg] = ACTIONS(7360), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7360), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7360), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7360), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7360), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -546923,120 +539630,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3574] = { - [sym__expression] = STATE(4463), - [sym_comma_expression] = STATE(5588), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(8692), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3575] = { - [sym__expression] = STATE(4476), - [sym_comma_expression] = STATE(5777), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [3528] = { + [sym__expression] = STATE(4491), + [sym_comma_expression] = STATE(5665), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -547046,35 +539672,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(8694), + [anon_sym_SEMI] = ACTIONS(8692), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -547085,80 +539711,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3576] = { - [sym_identifier] = ACTIONS(2300), - [anon_sym_COMMA] = ACTIONS(7334), - [anon_sym_RPAREN] = ACTIONS(7334), - [anon_sym_LPAREN2] = ACTIONS(7334), - [anon_sym_STAR] = ACTIONS(7334), - [anon_sym_SEMI] = ACTIONS(7334), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym___attribute] = ACTIONS(2300), - [anon_sym___attribute__] = ACTIONS(2300), - [anon_sym___declspec] = ACTIONS(2300), - [anon_sym___based] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(7334), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_auto] = ACTIONS(2300), - [anon_sym_register] = ACTIONS(2300), - [anon_sym_inline] = ACTIONS(2300), - [aux_sym_storage_class_specifier_token1] = ACTIONS(2300), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_volatile] = ACTIONS(2300), - [anon_sym_restrict] = ACTIONS(2300), - [anon_sym__Atomic] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_out] = ACTIONS(2300), - [anon_sym_inout] = ACTIONS(2300), - [anon_sym_bycopy] = ACTIONS(2300), - [anon_sym_byref] = ACTIONS(2300), - [anon_sym_oneway] = ACTIONS(2300), - [anon_sym__Nullable] = ACTIONS(2300), - [anon_sym__Nonnull] = ACTIONS(2300), - [anon_sym__Nullable_result] = ACTIONS(2300), - [anon_sym__Null_unspecified] = ACTIONS(2300), - [anon_sym___autoreleasing] = ACTIONS(2300), - [anon_sym___nullable] = ACTIONS(2300), - [anon_sym___nonnull] = ACTIONS(2300), - [anon_sym___strong] = ACTIONS(2300), - [anon_sym___weak] = ACTIONS(2300), - [anon_sym___bridge] = ACTIONS(2300), - [anon_sym___bridge_transfer] = ACTIONS(2300), - [anon_sym___bridge_retained] = ACTIONS(2300), - [anon_sym___unsafe_unretained] = ACTIONS(2300), - [anon_sym___block] = ACTIONS(2300), - [anon_sym___kindof] = ACTIONS(2300), - [anon_sym___unused] = ACTIONS(2300), - [anon_sym__Complex] = ACTIONS(2300), - [anon_sym___complex] = ACTIONS(2300), - [anon_sym_IBOutlet] = ACTIONS(2300), - [anon_sym_IBInspectable] = ACTIONS(2300), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2300), - [anon_sym_COLON] = ACTIONS(7334), + [3529] = { + [sym_identifier] = ACTIONS(2256), + [anon_sym_COMMA] = ACTIONS(7280), + [anon_sym_RPAREN] = ACTIONS(7280), + [anon_sym_LPAREN2] = ACTIONS(7280), + [anon_sym_STAR] = ACTIONS(7280), + [anon_sym_SEMI] = ACTIONS(7280), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___declspec] = ACTIONS(2256), + [anon_sym___based] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(7280), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_auto] = ACTIONS(2256), + [anon_sym_register] = ACTIONS(2256), + [anon_sym_inline] = ACTIONS(2256), + [aux_sym_storage_class_specifier_token1] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_out] = ACTIONS(2256), + [anon_sym_inout] = ACTIONS(2256), + [anon_sym_bycopy] = ACTIONS(2256), + [anon_sym_byref] = ACTIONS(2256), + [anon_sym_oneway] = ACTIONS(2256), + [anon_sym__Nullable] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym__Nullable_result] = ACTIONS(2256), + [anon_sym__Null_unspecified] = ACTIONS(2256), + [anon_sym___autoreleasing] = ACTIONS(2256), + [anon_sym___nullable] = ACTIONS(2256), + [anon_sym___nonnull] = ACTIONS(2256), + [anon_sym___strong] = ACTIONS(2256), + [anon_sym___weak] = ACTIONS(2256), + [anon_sym___bridge] = ACTIONS(2256), + [anon_sym___bridge_transfer] = ACTIONS(2256), + [anon_sym___bridge_retained] = ACTIONS(2256), + [anon_sym___unsafe_unretained] = ACTIONS(2256), + [anon_sym___block] = ACTIONS(2256), + [anon_sym___kindof] = ACTIONS(2256), + [anon_sym___unused] = ACTIONS(2256), + [anon_sym__Complex] = ACTIONS(2256), + [anon_sym___complex] = ACTIONS(2256), + [anon_sym_IBOutlet] = ACTIONS(2256), + [anon_sym_IBInspectable] = ACTIONS(2256), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2256), + [anon_sym_COLON] = ACTIONS(7280), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(2300), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2300), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE] = ACTIONS(2300), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_API_AVAILABLE] = ACTIONS(2300), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_API_DEPRECATED] = ACTIONS(2300), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2300), - [anon_sym___deprecated_msg] = ACTIONS(2300), - [anon_sym___deprecated_enum_msg] = ACTIONS(2300), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2300), + [sym_method_attribute_specifier] = ACTIONS(2256), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2256), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE] = ACTIONS(2256), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_API_AVAILABLE] = ACTIONS(2256), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_API_DEPRECATED] = ACTIONS(2256), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2256), + [anon_sym___deprecated_msg] = ACTIONS(2256), + [anon_sym___deprecated_enum_msg] = ACTIONS(2256), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2256), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -547166,39 +539792,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3577] = { - [sym__expression] = STATE(4471), - [sym_comma_expression] = STATE(5585), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [3530] = { + [sym__expression] = STATE(4520), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym__dictionary_key_value_pair] = STATE(5076), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(8694), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3531] = { + [sym__expression] = STATE(4469), + [sym_comma_expression] = STATE(5429), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_RPAREN] = ACTIONS(8696), [anon_sym_LPAREN2] = ACTIONS(19), @@ -547210,33 +539917,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -547247,39 +539954,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3578] = { - [sym__expression] = STATE(4444), - [sym_comma_expression] = STATE(5339), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [3532] = { + [sym_attribute_specifier] = STATE(3950), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4121), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3953), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3953), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3533] = { + [sym_attribute_specifier] = STATE(3957), + [sym_ms_based_modifier] = STATE(5835), + [sym__declarator] = STATE(4035), + [sym_parenthesized_declarator] = STATE(3790), + [sym_pointer_declarator] = STATE(3790), + [sym_function_declarator] = STATE(3790), + [sym_array_declarator] = STATE(3790), + [sym_type_qualifier] = STATE(3955), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(3790), + [aux_sym_type_definition_repeat1] = STATE(3955), + [sym_identifier] = ACTIONS(7859), + [anon_sym_LPAREN2] = ACTIONS(8670), + [anon_sym_STAR] = ACTIONS(8672), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3534] = { + [sym_identifier] = ACTIONS(7282), + [anon_sym_COMMA] = ACTIONS(7284), + [anon_sym_RPAREN] = ACTIONS(7284), + [anon_sym_LPAREN2] = ACTIONS(7284), + [anon_sym_STAR] = ACTIONS(7284), + [anon_sym_SEMI] = ACTIONS(7284), + [anon_sym_extern] = ACTIONS(7282), + [anon_sym___attribute] = ACTIONS(7282), + [anon_sym___attribute__] = ACTIONS(7282), + [anon_sym___declspec] = ACTIONS(7282), + [anon_sym___based] = ACTIONS(7282), + [anon_sym_LBRACK] = ACTIONS(7284), + [anon_sym_static] = ACTIONS(7282), + [anon_sym_auto] = ACTIONS(7282), + [anon_sym_register] = ACTIONS(7282), + [anon_sym_inline] = ACTIONS(7282), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7282), + [anon_sym_const] = ACTIONS(7282), + [anon_sym_volatile] = ACTIONS(7282), + [anon_sym_restrict] = ACTIONS(7282), + [anon_sym__Atomic] = ACTIONS(7282), + [anon_sym_in] = ACTIONS(7282), + [anon_sym_out] = ACTIONS(7282), + [anon_sym_inout] = ACTIONS(7282), + [anon_sym_bycopy] = ACTIONS(7282), + [anon_sym_byref] = ACTIONS(7282), + [anon_sym_oneway] = ACTIONS(7282), + [anon_sym__Nullable] = ACTIONS(7282), + [anon_sym__Nonnull] = ACTIONS(7282), + [anon_sym__Nullable_result] = ACTIONS(7282), + [anon_sym__Null_unspecified] = ACTIONS(7282), + [anon_sym___autoreleasing] = ACTIONS(7282), + [anon_sym___nullable] = ACTIONS(7282), + [anon_sym___nonnull] = ACTIONS(7282), + [anon_sym___strong] = ACTIONS(7282), + [anon_sym___weak] = ACTIONS(7282), + [anon_sym___bridge] = ACTIONS(7282), + [anon_sym___bridge_transfer] = ACTIONS(7282), + [anon_sym___bridge_retained] = ACTIONS(7282), + [anon_sym___unsafe_unretained] = ACTIONS(7282), + [anon_sym___block] = ACTIONS(7282), + [anon_sym___kindof] = ACTIONS(7282), + [anon_sym___unused] = ACTIONS(7282), + [anon_sym__Complex] = ACTIONS(7282), + [anon_sym___complex] = ACTIONS(7282), + [anon_sym_IBOutlet] = ACTIONS(7282), + [anon_sym_IBInspectable] = ACTIONS(7282), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7282), + [anon_sym_COLON] = ACTIONS(7284), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7282), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7282), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7282), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7282), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7282), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7282), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7282), + [anon_sym_NS_AVAILABLE] = ACTIONS(7282), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7282), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7282), + [anon_sym_API_AVAILABLE] = ACTIONS(7282), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7282), + [anon_sym_API_DEPRECATED] = ACTIONS(7282), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7282), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7282), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7282), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7282), + [anon_sym___deprecated_msg] = ACTIONS(7282), + [anon_sym___deprecated_enum_msg] = ACTIONS(7282), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7282), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7282), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7282), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7282), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3535] = { + [sym__expression] = STATE(4507), + [sym_comma_expression] = STATE(5760), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_RPAREN] = ACTIONS(8698), [anon_sym_LPAREN2] = ACTIONS(19), @@ -547291,33 +540241,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -547328,39 +540278,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3579] = { - [sym__expression] = STATE(4479), - [sym_comma_expression] = STATE(5576), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [3536] = { + [sym__expression] = STATE(4484), + [sym_comma_expression] = STATE(5404), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_RPAREN] = ACTIONS(8700), [anon_sym_LPAREN2] = ACTIONS(19), @@ -547372,33 +540322,3509 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3537] = { + [sym_attribute_specifier] = STATE(3943), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4244), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3940), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3940), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3538] = { + [sym__expression] = STATE(4500), + [sym_comma_expression] = STATE(5364), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(8702), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3539] = { + [sym_attribute_specifier] = STATE(3961), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4263), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3960), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3960), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3540] = { + [sym_attribute_specifier] = STATE(3922), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4129), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3946), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3946), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3541] = { + [sym__expression] = STATE(4423), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(8704), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_RBRACK] = ACTIONS(8706), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3542] = { + [sym_identifier] = ACTIONS(7268), + [anon_sym_COMMA] = ACTIONS(7270), + [anon_sym_RPAREN] = ACTIONS(7270), + [anon_sym_LPAREN2] = ACTIONS(7270), + [anon_sym_STAR] = ACTIONS(7270), + [anon_sym_SEMI] = ACTIONS(7270), + [anon_sym_extern] = ACTIONS(7268), + [anon_sym___attribute] = ACTIONS(7268), + [anon_sym___attribute__] = ACTIONS(7268), + [anon_sym___declspec] = ACTIONS(7268), + [anon_sym___based] = ACTIONS(7268), + [anon_sym_LBRACK] = ACTIONS(7270), + [anon_sym_static] = ACTIONS(7268), + [anon_sym_auto] = ACTIONS(7268), + [anon_sym_register] = ACTIONS(7268), + [anon_sym_inline] = ACTIONS(7268), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7268), + [anon_sym_const] = ACTIONS(7268), + [anon_sym_volatile] = ACTIONS(7268), + [anon_sym_restrict] = ACTIONS(7268), + [anon_sym__Atomic] = ACTIONS(7268), + [anon_sym_in] = ACTIONS(7268), + [anon_sym_out] = ACTIONS(7268), + [anon_sym_inout] = ACTIONS(7268), + [anon_sym_bycopy] = ACTIONS(7268), + [anon_sym_byref] = ACTIONS(7268), + [anon_sym_oneway] = ACTIONS(7268), + [anon_sym__Nullable] = ACTIONS(7268), + [anon_sym__Nonnull] = ACTIONS(7268), + [anon_sym__Nullable_result] = ACTIONS(7268), + [anon_sym__Null_unspecified] = ACTIONS(7268), + [anon_sym___autoreleasing] = ACTIONS(7268), + [anon_sym___nullable] = ACTIONS(7268), + [anon_sym___nonnull] = ACTIONS(7268), + [anon_sym___strong] = ACTIONS(7268), + [anon_sym___weak] = ACTIONS(7268), + [anon_sym___bridge] = ACTIONS(7268), + [anon_sym___bridge_transfer] = ACTIONS(7268), + [anon_sym___bridge_retained] = ACTIONS(7268), + [anon_sym___unsafe_unretained] = ACTIONS(7268), + [anon_sym___block] = ACTIONS(7268), + [anon_sym___kindof] = ACTIONS(7268), + [anon_sym___unused] = ACTIONS(7268), + [anon_sym__Complex] = ACTIONS(7268), + [anon_sym___complex] = ACTIONS(7268), + [anon_sym_IBOutlet] = ACTIONS(7268), + [anon_sym_IBInspectable] = ACTIONS(7268), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7268), + [anon_sym_COLON] = ACTIONS(7270), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7268), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7268), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7268), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7268), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7268), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7268), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7268), + [anon_sym_NS_AVAILABLE] = ACTIONS(7268), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7268), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7268), + [anon_sym_API_AVAILABLE] = ACTIONS(7268), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7268), + [anon_sym_API_DEPRECATED] = ACTIONS(7268), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7268), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7268), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7268), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7268), + [anon_sym___deprecated_msg] = ACTIONS(7268), + [anon_sym___deprecated_enum_msg] = ACTIONS(7268), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7268), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7268), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7268), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7268), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3543] = { + [sym_identifier] = ACTIONS(7294), + [anon_sym_COMMA] = ACTIONS(7296), + [anon_sym_RPAREN] = ACTIONS(7296), + [anon_sym_LPAREN2] = ACTIONS(7296), + [anon_sym_STAR] = ACTIONS(7296), + [anon_sym_SEMI] = ACTIONS(7296), + [anon_sym_extern] = ACTIONS(7294), + [anon_sym___attribute] = ACTIONS(7294), + [anon_sym___attribute__] = ACTIONS(7294), + [anon_sym___declspec] = ACTIONS(7294), + [anon_sym___based] = ACTIONS(7294), + [anon_sym_LBRACK] = ACTIONS(7296), + [anon_sym_static] = ACTIONS(7294), + [anon_sym_auto] = ACTIONS(7294), + [anon_sym_register] = ACTIONS(7294), + [anon_sym_inline] = ACTIONS(7294), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7294), + [anon_sym_const] = ACTIONS(7294), + [anon_sym_volatile] = ACTIONS(7294), + [anon_sym_restrict] = ACTIONS(7294), + [anon_sym__Atomic] = ACTIONS(7294), + [anon_sym_in] = ACTIONS(7294), + [anon_sym_out] = ACTIONS(7294), + [anon_sym_inout] = ACTIONS(7294), + [anon_sym_bycopy] = ACTIONS(7294), + [anon_sym_byref] = ACTIONS(7294), + [anon_sym_oneway] = ACTIONS(7294), + [anon_sym__Nullable] = ACTIONS(7294), + [anon_sym__Nonnull] = ACTIONS(7294), + [anon_sym__Nullable_result] = ACTIONS(7294), + [anon_sym__Null_unspecified] = ACTIONS(7294), + [anon_sym___autoreleasing] = ACTIONS(7294), + [anon_sym___nullable] = ACTIONS(7294), + [anon_sym___nonnull] = ACTIONS(7294), + [anon_sym___strong] = ACTIONS(7294), + [anon_sym___weak] = ACTIONS(7294), + [anon_sym___bridge] = ACTIONS(7294), + [anon_sym___bridge_transfer] = ACTIONS(7294), + [anon_sym___bridge_retained] = ACTIONS(7294), + [anon_sym___unsafe_unretained] = ACTIONS(7294), + [anon_sym___block] = ACTIONS(7294), + [anon_sym___kindof] = ACTIONS(7294), + [anon_sym___unused] = ACTIONS(7294), + [anon_sym__Complex] = ACTIONS(7294), + [anon_sym___complex] = ACTIONS(7294), + [anon_sym_IBOutlet] = ACTIONS(7294), + [anon_sym_IBInspectable] = ACTIONS(7294), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7294), + [anon_sym_COLON] = ACTIONS(7296), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7294), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7294), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7294), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7294), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7294), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7294), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7294), + [anon_sym_NS_AVAILABLE] = ACTIONS(7294), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7294), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7294), + [anon_sym_API_AVAILABLE] = ACTIONS(7294), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7294), + [anon_sym_API_DEPRECATED] = ACTIONS(7294), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7294), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7294), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7294), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7294), + [anon_sym___deprecated_msg] = ACTIONS(7294), + [anon_sym___deprecated_enum_msg] = ACTIONS(7294), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7294), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7294), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7294), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7294), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3544] = { + [sym_compound_statement] = STATE(3282), + [sym_type_qualifier] = STATE(3862), + [sym__type_specifier] = STATE(3951), + [sym_sized_type_specifier] = STATE(3951), + [sym_enum_specifier] = STATE(3951), + [sym_struct_specifier] = STATE(3951), + [sym_union_specifier] = STATE(3951), + [sym_parameter_list] = STATE(5215), + [sym_type_descriptor] = STATE(4836), + [sym_macro_type_specifier] = STATE(3951), + [sym_ns_enum_specifier] = STATE(3951), + [sym_typeof_specifier] = STATE(3951), + [sym_atomic_specifier] = STATE(3951), + [sym_generic_type_specifier] = STATE(3951), + [aux_sym_type_definition_repeat1] = STATE(3751), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_RPAREN] = ACTIONS(8708), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_LBRACE] = ACTIONS(8712), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(8714), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(8716), + [anon_sym_enum] = ACTIONS(8718), + [anon_sym_struct] = ACTIONS(8720), + [anon_sym_union] = ACTIONS(8722), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(8724), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(8724), + [anon_sym_NS_OPTIONS] = ACTIONS(8724), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(8716), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(8716), + [sym_IMP] = ACTIONS(8716), + [sym_BOOL] = ACTIONS(8716), + [sym_auto] = ACTIONS(8716), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3545] = { + [sym_attribute_specifier] = STATE(4010), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4140), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(4012), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(4012), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3546] = { + [sym_attribute_specifier] = STATE(4007), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4200), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(4006), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(4006), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3547] = { + [sym_identifier] = ACTIONS(7290), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_RPAREN] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_STAR] = ACTIONS(7292), + [anon_sym_SEMI] = ACTIONS(7292), + [anon_sym_extern] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___declspec] = ACTIONS(7290), + [anon_sym___based] = ACTIONS(7290), + [anon_sym_LBRACK] = ACTIONS(7292), + [anon_sym_static] = ACTIONS(7290), + [anon_sym_auto] = ACTIONS(7290), + [anon_sym_register] = ACTIONS(7290), + [anon_sym_inline] = ACTIONS(7290), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7290), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym_in] = ACTIONS(7290), + [anon_sym_out] = ACTIONS(7290), + [anon_sym_inout] = ACTIONS(7290), + [anon_sym_bycopy] = ACTIONS(7290), + [anon_sym_byref] = ACTIONS(7290), + [anon_sym_oneway] = ACTIONS(7290), + [anon_sym__Nullable] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym__Nullable_result] = ACTIONS(7290), + [anon_sym__Null_unspecified] = ACTIONS(7290), + [anon_sym___autoreleasing] = ACTIONS(7290), + [anon_sym___nullable] = ACTIONS(7290), + [anon_sym___nonnull] = ACTIONS(7290), + [anon_sym___strong] = ACTIONS(7290), + [anon_sym___weak] = ACTIONS(7290), + [anon_sym___bridge] = ACTIONS(7290), + [anon_sym___bridge_transfer] = ACTIONS(7290), + [anon_sym___bridge_retained] = ACTIONS(7290), + [anon_sym___unsafe_unretained] = ACTIONS(7290), + [anon_sym___block] = ACTIONS(7290), + [anon_sym___kindof] = ACTIONS(7290), + [anon_sym___unused] = ACTIONS(7290), + [anon_sym__Complex] = ACTIONS(7290), + [anon_sym___complex] = ACTIONS(7290), + [anon_sym_IBOutlet] = ACTIONS(7290), + [anon_sym_IBInspectable] = ACTIONS(7290), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7290), + [anon_sym_COLON] = ACTIONS(7292), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7290), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7290), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7290), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7290), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7290), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7290), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7290), + [anon_sym_NS_AVAILABLE] = ACTIONS(7290), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7290), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7290), + [anon_sym_API_AVAILABLE] = ACTIONS(7290), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7290), + [anon_sym_API_DEPRECATED] = ACTIONS(7290), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7290), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7290), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7290), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7290), + [anon_sym___deprecated_msg] = ACTIONS(7290), + [anon_sym___deprecated_enum_msg] = ACTIONS(7290), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7290), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7290), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7290), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7290), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3548] = { + [sym_attribute_specifier] = STATE(3941), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4197), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3944), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3944), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3549] = { + [sym_attribute_specifier] = STATE(3959), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4271), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3964), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3964), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3550] = { + [sym_attribute_specifier] = STATE(3934), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4188), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3930), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3930), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3551] = { + [sym__expression] = STATE(4482), + [sym_comma_expression] = STATE(5472), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(8726), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3552] = { + [sym__expression] = STATE(4512), + [sym_comma_expression] = STATE(5448), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(8728), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3553] = { + [sym__expression] = STATE(2958), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_initializer_list] = STATE(3006), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8730), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3554] = { + [sym__expression] = STATE(4496), + [sym_comma_expression] = STATE(5447), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(8732), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3555] = { + [sym_attribute_specifier] = STATE(3968), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4250), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3969), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3969), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3556] = { + [sym__expression] = STATE(4494), + [sym_comma_expression] = STATE(5681), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8734), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3557] = { + [sym__expression] = STATE(4464), + [sym_comma_expression] = STATE(5356), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(8736), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3558] = { + [sym__expression] = STATE(4479), + [sym_comma_expression] = STATE(5709), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8738), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3559] = { + [sym_attribute_specifier] = STATE(4003), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4266), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(4002), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(4002), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3560] = { + [sym__expression] = STATE(4452), + [sym_comma_expression] = STATE(5525), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(8740), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3561] = { + [sym_identifier] = ACTIONS(7302), + [anon_sym_COMMA] = ACTIONS(7304), + [anon_sym_RPAREN] = ACTIONS(7304), + [anon_sym_LPAREN2] = ACTIONS(7304), + [anon_sym_STAR] = ACTIONS(7304), + [anon_sym_SEMI] = ACTIONS(7304), + [anon_sym_extern] = ACTIONS(7302), + [anon_sym___attribute] = ACTIONS(7302), + [anon_sym___attribute__] = ACTIONS(7302), + [anon_sym___declspec] = ACTIONS(7302), + [anon_sym___based] = ACTIONS(7302), + [anon_sym_LBRACK] = ACTIONS(7304), + [anon_sym_static] = ACTIONS(7302), + [anon_sym_auto] = ACTIONS(7302), + [anon_sym_register] = ACTIONS(7302), + [anon_sym_inline] = ACTIONS(7302), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7302), + [anon_sym_const] = ACTIONS(7302), + [anon_sym_volatile] = ACTIONS(7302), + [anon_sym_restrict] = ACTIONS(7302), + [anon_sym__Atomic] = ACTIONS(7302), + [anon_sym_in] = ACTIONS(7302), + [anon_sym_out] = ACTIONS(7302), + [anon_sym_inout] = ACTIONS(7302), + [anon_sym_bycopy] = ACTIONS(7302), + [anon_sym_byref] = ACTIONS(7302), + [anon_sym_oneway] = ACTIONS(7302), + [anon_sym__Nullable] = ACTIONS(7302), + [anon_sym__Nonnull] = ACTIONS(7302), + [anon_sym__Nullable_result] = ACTIONS(7302), + [anon_sym__Null_unspecified] = ACTIONS(7302), + [anon_sym___autoreleasing] = ACTIONS(7302), + [anon_sym___nullable] = ACTIONS(7302), + [anon_sym___nonnull] = ACTIONS(7302), + [anon_sym___strong] = ACTIONS(7302), + [anon_sym___weak] = ACTIONS(7302), + [anon_sym___bridge] = ACTIONS(7302), + [anon_sym___bridge_transfer] = ACTIONS(7302), + [anon_sym___bridge_retained] = ACTIONS(7302), + [anon_sym___unsafe_unretained] = ACTIONS(7302), + [anon_sym___block] = ACTIONS(7302), + [anon_sym___kindof] = ACTIONS(7302), + [anon_sym___unused] = ACTIONS(7302), + [anon_sym__Complex] = ACTIONS(7302), + [anon_sym___complex] = ACTIONS(7302), + [anon_sym_IBOutlet] = ACTIONS(7302), + [anon_sym_IBInspectable] = ACTIONS(7302), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7302), + [anon_sym_COLON] = ACTIONS(7304), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7302), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7302), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7302), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7302), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7302), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7302), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7302), + [anon_sym_NS_AVAILABLE] = ACTIONS(7302), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7302), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7302), + [anon_sym_API_AVAILABLE] = ACTIONS(7302), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7302), + [anon_sym_API_DEPRECATED] = ACTIONS(7302), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7302), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7302), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7302), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7302), + [anon_sym___deprecated_msg] = ACTIONS(7302), + [anon_sym___deprecated_enum_msg] = ACTIONS(7302), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7302), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7302), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7302), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7302), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3562] = { + [sym__expression] = STATE(4502), + [sym_comma_expression] = STATE(5446), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(8742), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3563] = { + [sym_identifier] = ACTIONS(7298), + [anon_sym_COMMA] = ACTIONS(7300), + [anon_sym_RPAREN] = ACTIONS(7300), + [anon_sym_LPAREN2] = ACTIONS(7300), + [anon_sym_STAR] = ACTIONS(7300), + [anon_sym_SEMI] = ACTIONS(7300), + [anon_sym_extern] = ACTIONS(7298), + [anon_sym___attribute] = ACTIONS(7298), + [anon_sym___attribute__] = ACTIONS(7298), + [anon_sym___declspec] = ACTIONS(7298), + [anon_sym___based] = ACTIONS(7298), + [anon_sym_LBRACK] = ACTIONS(7300), + [anon_sym_static] = ACTIONS(7298), + [anon_sym_auto] = ACTIONS(7298), + [anon_sym_register] = ACTIONS(7298), + [anon_sym_inline] = ACTIONS(7298), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7298), + [anon_sym_const] = ACTIONS(7298), + [anon_sym_volatile] = ACTIONS(7298), + [anon_sym_restrict] = ACTIONS(7298), + [anon_sym__Atomic] = ACTIONS(7298), + [anon_sym_in] = ACTIONS(7298), + [anon_sym_out] = ACTIONS(7298), + [anon_sym_inout] = ACTIONS(7298), + [anon_sym_bycopy] = ACTIONS(7298), + [anon_sym_byref] = ACTIONS(7298), + [anon_sym_oneway] = ACTIONS(7298), + [anon_sym__Nullable] = ACTIONS(7298), + [anon_sym__Nonnull] = ACTIONS(7298), + [anon_sym__Nullable_result] = ACTIONS(7298), + [anon_sym__Null_unspecified] = ACTIONS(7298), + [anon_sym___autoreleasing] = ACTIONS(7298), + [anon_sym___nullable] = ACTIONS(7298), + [anon_sym___nonnull] = ACTIONS(7298), + [anon_sym___strong] = ACTIONS(7298), + [anon_sym___weak] = ACTIONS(7298), + [anon_sym___bridge] = ACTIONS(7298), + [anon_sym___bridge_transfer] = ACTIONS(7298), + [anon_sym___bridge_retained] = ACTIONS(7298), + [anon_sym___unsafe_unretained] = ACTIONS(7298), + [anon_sym___block] = ACTIONS(7298), + [anon_sym___kindof] = ACTIONS(7298), + [anon_sym___unused] = ACTIONS(7298), + [anon_sym__Complex] = ACTIONS(7298), + [anon_sym___complex] = ACTIONS(7298), + [anon_sym_IBOutlet] = ACTIONS(7298), + [anon_sym_IBInspectable] = ACTIONS(7298), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7298), + [anon_sym_COLON] = ACTIONS(7300), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7298), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7298), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7298), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7298), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7298), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7298), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7298), + [anon_sym_NS_AVAILABLE] = ACTIONS(7298), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7298), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7298), + [anon_sym_API_AVAILABLE] = ACTIONS(7298), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7298), + [anon_sym_API_DEPRECATED] = ACTIONS(7298), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7298), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7298), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7298), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7298), + [anon_sym___deprecated_msg] = ACTIONS(7298), + [anon_sym___deprecated_enum_msg] = ACTIONS(7298), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7298), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7298), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7298), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7298), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3564] = { + [sym__expression] = STATE(4446), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(8744), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_RBRACK] = ACTIONS(8746), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3565] = { + [sym_attribute_specifier] = STATE(4000), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4251), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3998), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3998), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3566] = { + [sym_attribute_specifier] = STATE(3923), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4156), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3975), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3975), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3567] = { + [sym_identifier] = ACTIONS(7841), + [anon_sym_COMMA] = ACTIONS(7843), + [anon_sym_RPAREN] = ACTIONS(7843), + [anon_sym_LPAREN2] = ACTIONS(7843), + [anon_sym_STAR] = ACTIONS(7843), + [anon_sym_SEMI] = ACTIONS(7843), + [anon_sym_extern] = ACTIONS(7841), + [anon_sym___attribute] = ACTIONS(7841), + [anon_sym___attribute__] = ACTIONS(7841), + [anon_sym___declspec] = ACTIONS(7841), + [anon_sym___based] = ACTIONS(7841), + [anon_sym_LBRACK] = ACTIONS(7843), + [anon_sym_static] = ACTIONS(7841), + [anon_sym_auto] = ACTIONS(7841), + [anon_sym_register] = ACTIONS(7841), + [anon_sym_inline] = ACTIONS(7841), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7841), + [anon_sym_const] = ACTIONS(7841), + [anon_sym_volatile] = ACTIONS(7841), + [anon_sym_restrict] = ACTIONS(7841), + [anon_sym__Atomic] = ACTIONS(7841), + [anon_sym_in] = ACTIONS(7841), + [anon_sym_out] = ACTIONS(7841), + [anon_sym_inout] = ACTIONS(7841), + [anon_sym_bycopy] = ACTIONS(7841), + [anon_sym_byref] = ACTIONS(7841), + [anon_sym_oneway] = ACTIONS(7841), + [anon_sym__Nullable] = ACTIONS(7841), + [anon_sym__Nonnull] = ACTIONS(7841), + [anon_sym__Nullable_result] = ACTIONS(7841), + [anon_sym__Null_unspecified] = ACTIONS(7841), + [anon_sym___autoreleasing] = ACTIONS(7841), + [anon_sym___nullable] = ACTIONS(7841), + [anon_sym___nonnull] = ACTIONS(7841), + [anon_sym___strong] = ACTIONS(7841), + [anon_sym___weak] = ACTIONS(7841), + [anon_sym___bridge] = ACTIONS(7841), + [anon_sym___bridge_transfer] = ACTIONS(7841), + [anon_sym___bridge_retained] = ACTIONS(7841), + [anon_sym___unsafe_unretained] = ACTIONS(7841), + [anon_sym___block] = ACTIONS(7841), + [anon_sym___kindof] = ACTIONS(7841), + [anon_sym___unused] = ACTIONS(7841), + [anon_sym__Complex] = ACTIONS(7841), + [anon_sym___complex] = ACTIONS(7841), + [anon_sym_IBOutlet] = ACTIONS(7841), + [anon_sym_IBInspectable] = ACTIONS(7841), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7841), + [anon_sym_COLON] = ACTIONS(7843), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7841), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7841), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7841), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7841), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7841), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7841), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7841), + [anon_sym_NS_AVAILABLE] = ACTIONS(7841), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7841), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7841), + [anon_sym_API_AVAILABLE] = ACTIONS(7841), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7841), + [anon_sym_API_DEPRECATED] = ACTIONS(7841), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7841), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7841), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7841), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7841), + [anon_sym___deprecated_msg] = ACTIONS(7841), + [anon_sym___deprecated_enum_msg] = ACTIONS(7841), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7841), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7841), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7841), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7841), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3568] = { + [sym_identifier] = ACTIONS(7853), + [anon_sym_COMMA] = ACTIONS(7855), + [anon_sym_RPAREN] = ACTIONS(7855), + [anon_sym_LPAREN2] = ACTIONS(7855), + [anon_sym_STAR] = ACTIONS(7855), + [anon_sym_SEMI] = ACTIONS(7855), + [anon_sym_extern] = ACTIONS(7853), + [anon_sym___attribute] = ACTIONS(7853), + [anon_sym___attribute__] = ACTIONS(7853), + [anon_sym___declspec] = ACTIONS(7853), + [anon_sym___based] = ACTIONS(7853), + [anon_sym_LBRACK] = ACTIONS(7855), + [anon_sym_static] = ACTIONS(7853), + [anon_sym_auto] = ACTIONS(7853), + [anon_sym_register] = ACTIONS(7853), + [anon_sym_inline] = ACTIONS(7853), + [aux_sym_storage_class_specifier_token1] = ACTIONS(7853), + [anon_sym_const] = ACTIONS(7853), + [anon_sym_volatile] = ACTIONS(7853), + [anon_sym_restrict] = ACTIONS(7853), + [anon_sym__Atomic] = ACTIONS(7853), + [anon_sym_in] = ACTIONS(7853), + [anon_sym_out] = ACTIONS(7853), + [anon_sym_inout] = ACTIONS(7853), + [anon_sym_bycopy] = ACTIONS(7853), + [anon_sym_byref] = ACTIONS(7853), + [anon_sym_oneway] = ACTIONS(7853), + [anon_sym__Nullable] = ACTIONS(7853), + [anon_sym__Nonnull] = ACTIONS(7853), + [anon_sym__Nullable_result] = ACTIONS(7853), + [anon_sym__Null_unspecified] = ACTIONS(7853), + [anon_sym___autoreleasing] = ACTIONS(7853), + [anon_sym___nullable] = ACTIONS(7853), + [anon_sym___nonnull] = ACTIONS(7853), + [anon_sym___strong] = ACTIONS(7853), + [anon_sym___weak] = ACTIONS(7853), + [anon_sym___bridge] = ACTIONS(7853), + [anon_sym___bridge_transfer] = ACTIONS(7853), + [anon_sym___bridge_retained] = ACTIONS(7853), + [anon_sym___unsafe_unretained] = ACTIONS(7853), + [anon_sym___block] = ACTIONS(7853), + [anon_sym___kindof] = ACTIONS(7853), + [anon_sym___unused] = ACTIONS(7853), + [anon_sym__Complex] = ACTIONS(7853), + [anon_sym___complex] = ACTIONS(7853), + [anon_sym_IBOutlet] = ACTIONS(7853), + [anon_sym_IBInspectable] = ACTIONS(7853), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7853), + [anon_sym_COLON] = ACTIONS(7855), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7853), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7853), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7853), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7853), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7853), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7853), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7853), + [anon_sym_NS_AVAILABLE] = ACTIONS(7853), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7853), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7853), + [anon_sym_API_AVAILABLE] = ACTIONS(7853), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7853), + [anon_sym_API_DEPRECATED] = ACTIONS(7853), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7853), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7853), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7853), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7853), + [anon_sym___deprecated_msg] = ACTIONS(7853), + [anon_sym___deprecated_enum_msg] = ACTIONS(7853), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7853), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7853), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7853), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7853), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3569] = { + [sym_attribute_specifier] = STATE(3987), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4245), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3996), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3996), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3570] = { + [sym__expression] = STATE(4489), + [sym_comma_expression] = STATE(5528), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(8748), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3571] = { + [sym__expression] = STATE(3316), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_initializer_list] = STATE(3863), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3572] = { + [sym_attribute_specifier] = STATE(3981), + [sym_ms_based_modifier] = STATE(5596), + [sym__type_declarator] = STATE(4189), + [sym_parenthesized_type_declarator] = STATE(4335), + [sym_pointer_type_declarator] = STATE(4335), + [sym_function_type_declarator] = STATE(4335), + [sym_array_type_declarator] = STATE(4335), + [sym_type_qualifier] = STATE(3984), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [sym_block_declarator] = STATE(4335), + [aux_sym_type_definition_repeat1] = STATE(3984), + [sym_identifier] = ACTIONS(8662), + [anon_sym_LPAREN2] = ACTIONS(8229), + [anon_sym_STAR] = ACTIONS(8231), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8243), + [anon_sym___based] = ACTIONS(6477), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8245), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8247), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8249), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8249), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8249), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8251), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_API_AVAILABLE] = ACTIONS(8251), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_API_DEPRECATED] = ACTIONS(8251), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8251), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8251), + [anon_sym___deprecated_msg] = ACTIONS(8251), + [anon_sym___deprecated_enum_msg] = ACTIONS(8251), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8251), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8251), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8251), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3573] = { + [sym__expression] = STATE(4528), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8750), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3574] = { + [sym__expression] = STATE(2977), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8730), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(8752), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3575] = { + [sym__expression] = STATE(4315), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym__variadic_arguments] = STATE(4984), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3576] = { + [sym__expression] = STATE(2977), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8730), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(8754), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3577] = { + [sym__expression] = STATE(2977), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8730), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(8756), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3578] = { + [sym__expression] = STATE(4317), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_RBRACK] = ACTIONS(8758), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3579] = { + [sym__expression] = STATE(4541), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8760), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -547410,79 +543836,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3580] = { - [sym__expression] = STATE(4477), - [sym_comma_expression] = STATE(5792), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [sym__expression] = STATE(2977), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), + [anon_sym_CARET] = ACTIONS(8730), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(8702), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(8762), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -547491,38 +543916,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3581] = { - [sym__expression] = STATE(4491), - [sym_comma_expression] = STATE(5499), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(4458), + [sym_comma_expression] = STATE(5554), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -547532,35 +543957,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(8704), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -547572,79 +543996,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3582] = { - [sym__expression] = STATE(4494), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym__dictionary_key_value_pair] = STATE(5028), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(8706), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [sym_compound_statement] = STATE(2990), + [sym_type_qualifier] = STATE(3867), + [sym__type_specifier] = STATE(3951), + [sym_sized_type_specifier] = STATE(3951), + [sym_enum_specifier] = STATE(3951), + [sym_struct_specifier] = STATE(3951), + [sym_union_specifier] = STATE(3951), + [sym_parameter_list] = STATE(5125), + [sym_type_descriptor] = STATE(4870), + [sym_macro_type_specifier] = STATE(3951), + [sym_ns_enum_specifier] = STATE(3951), + [sym_typeof_specifier] = STATE(3951), + [sym_atomic_specifier] = STATE(3951), + [sym_generic_type_specifier] = STATE(3951), + [aux_sym_type_definition_repeat1] = STATE(3751), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_LBRACE] = ACTIONS(8764), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(8714), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(8716), + [anon_sym_enum] = ACTIONS(8718), + [anon_sym_struct] = ACTIONS(8720), + [anon_sym_union] = ACTIONS(8722), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [anon_sym_NS_ENUM] = ACTIONS(8724), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(8724), + [anon_sym_NS_OPTIONS] = ACTIONS(8724), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(8716), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(8716), + [sym_IMP] = ACTIONS(8716), + [sym_BOOL] = ACTIONS(8716), + [sym_auto] = ACTIONS(8716), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -547653,38 +544076,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3583] = { - [sym__expression] = STATE(4464), - [sym_comma_expression] = STATE(5383), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(4550), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -547694,35 +544116,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(8708), + [anon_sym_SEMI] = ACTIONS(8766), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -547734,79 +544156,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3584] = { - [sym_identifier] = ACTIONS(7348), - [anon_sym_COMMA] = ACTIONS(7350), - [anon_sym_RPAREN] = ACTIONS(7350), - [anon_sym_LPAREN2] = ACTIONS(7350), - [anon_sym_STAR] = ACTIONS(7350), - [anon_sym_SEMI] = ACTIONS(7350), - [anon_sym_extern] = ACTIONS(7348), - [anon_sym___attribute] = ACTIONS(7348), - [anon_sym___attribute__] = ACTIONS(7348), - [anon_sym___declspec] = ACTIONS(7348), - [anon_sym___based] = ACTIONS(7348), - [anon_sym_LBRACK] = ACTIONS(7350), - [anon_sym_static] = ACTIONS(7348), - [anon_sym_auto] = ACTIONS(7348), - [anon_sym_register] = ACTIONS(7348), - [anon_sym_inline] = ACTIONS(7348), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7348), - [anon_sym_const] = ACTIONS(7348), - [anon_sym_volatile] = ACTIONS(7348), - [anon_sym_restrict] = ACTIONS(7348), - [anon_sym__Atomic] = ACTIONS(7348), - [anon_sym_in] = ACTIONS(7348), - [anon_sym_out] = ACTIONS(7348), - [anon_sym_inout] = ACTIONS(7348), - [anon_sym_bycopy] = ACTIONS(7348), - [anon_sym_byref] = ACTIONS(7348), - [anon_sym_oneway] = ACTIONS(7348), - [anon_sym__Nullable] = ACTIONS(7348), - [anon_sym__Nonnull] = ACTIONS(7348), - [anon_sym__Nullable_result] = ACTIONS(7348), - [anon_sym__Null_unspecified] = ACTIONS(7348), - [anon_sym___autoreleasing] = ACTIONS(7348), - [anon_sym___nullable] = ACTIONS(7348), - [anon_sym___nonnull] = ACTIONS(7348), - [anon_sym___strong] = ACTIONS(7348), - [anon_sym___weak] = ACTIONS(7348), - [anon_sym___bridge] = ACTIONS(7348), - [anon_sym___bridge_transfer] = ACTIONS(7348), - [anon_sym___bridge_retained] = ACTIONS(7348), - [anon_sym___unsafe_unretained] = ACTIONS(7348), - [anon_sym___block] = ACTIONS(7348), - [anon_sym___kindof] = ACTIONS(7348), - [anon_sym___unused] = ACTIONS(7348), - [anon_sym__Complex] = ACTIONS(7348), - [anon_sym___complex] = ACTIONS(7348), - [anon_sym_IBOutlet] = ACTIONS(7348), - [anon_sym_IBInspectable] = ACTIONS(7348), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7348), - [anon_sym_COLON] = ACTIONS(7350), + [sym__expression] = STATE(2977), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8730), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(8768), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7348), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7348), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7348), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7348), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7348), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7348), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7348), - [anon_sym_NS_AVAILABLE] = ACTIONS(7348), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7348), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7348), - [anon_sym_API_AVAILABLE] = ACTIONS(7348), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7348), - [anon_sym_API_DEPRECATED] = ACTIONS(7348), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7348), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7348), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7348), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7348), - [anon_sym___deprecated_msg] = ACTIONS(7348), - [anon_sym___deprecated_enum_msg] = ACTIONS(7348), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7348), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7348), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7348), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7348), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -547815,79 +544236,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3585] = { - [sym__expression] = STATE(4466), - [sym_comma_expression] = STATE(5595), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(8710), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [sym__expression] = STATE(2977), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), + [anon_sym_CARET] = ACTIONS(8730), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(8770), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -547896,40 +544316,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3586] = { - [sym__expression] = STATE(4459), - [sym_comma_expression] = STATE(5600), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(4544), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(8712), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -547938,34 +544356,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8772), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -547977,40 +544396,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3587] = { - [sym__expression] = STATE(4439), - [sym_comma_expression] = STATE(5371), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(2977), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8730), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(8774), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3588] = { + [sym__expression] = STATE(4317), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(8714), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -548020,33 +544517,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(8776), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -548057,161 +544555,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3588] = { - [sym__expression] = STATE(3015), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_initializer_list] = STATE(3048), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, [3589] = { - [sym_identifier] = ACTIONS(7905), - [anon_sym_COMMA] = ACTIONS(7907), - [anon_sym_RPAREN] = ACTIONS(7907), - [anon_sym_LPAREN2] = ACTIONS(7907), - [anon_sym_STAR] = ACTIONS(7907), - [anon_sym_SEMI] = ACTIONS(7907), - [anon_sym_extern] = ACTIONS(7905), - [anon_sym___attribute] = ACTIONS(7905), - [anon_sym___attribute__] = ACTIONS(7905), - [anon_sym___declspec] = ACTIONS(7905), - [anon_sym___based] = ACTIONS(7905), - [anon_sym_LBRACK] = ACTIONS(7907), - [anon_sym_static] = ACTIONS(7905), - [anon_sym_auto] = ACTIONS(7905), - [anon_sym_register] = ACTIONS(7905), - [anon_sym_inline] = ACTIONS(7905), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7905), - [anon_sym_const] = ACTIONS(7905), - [anon_sym_volatile] = ACTIONS(7905), - [anon_sym_restrict] = ACTIONS(7905), - [anon_sym__Atomic] = ACTIONS(7905), - [anon_sym_in] = ACTIONS(7905), - [anon_sym_out] = ACTIONS(7905), - [anon_sym_inout] = ACTIONS(7905), - [anon_sym_bycopy] = ACTIONS(7905), - [anon_sym_byref] = ACTIONS(7905), - [anon_sym_oneway] = ACTIONS(7905), - [anon_sym__Nullable] = ACTIONS(7905), - [anon_sym__Nonnull] = ACTIONS(7905), - [anon_sym__Nullable_result] = ACTIONS(7905), - [anon_sym__Null_unspecified] = ACTIONS(7905), - [anon_sym___autoreleasing] = ACTIONS(7905), - [anon_sym___nullable] = ACTIONS(7905), - [anon_sym___nonnull] = ACTIONS(7905), - [anon_sym___strong] = ACTIONS(7905), - [anon_sym___weak] = ACTIONS(7905), - [anon_sym___bridge] = ACTIONS(7905), - [anon_sym___bridge_transfer] = ACTIONS(7905), - [anon_sym___bridge_retained] = ACTIONS(7905), - [anon_sym___unsafe_unretained] = ACTIONS(7905), - [anon_sym___block] = ACTIONS(7905), - [anon_sym___kindof] = ACTIONS(7905), - [anon_sym___unused] = ACTIONS(7905), - [anon_sym__Complex] = ACTIONS(7905), - [anon_sym___complex] = ACTIONS(7905), - [anon_sym_IBOutlet] = ACTIONS(7905), - [anon_sym_IBInspectable] = ACTIONS(7905), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7905), - [anon_sym_COLON] = ACTIONS(7907), + [sym__expression] = STATE(2977), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8730), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(8778), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7905), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7905), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7905), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7905), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7905), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7905), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7905), - [anon_sym_NS_AVAILABLE] = ACTIONS(7905), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7905), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7905), - [anon_sym_API_AVAILABLE] = ACTIONS(7905), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7905), - [anon_sym_API_DEPRECATED] = ACTIONS(7905), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7905), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7905), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7905), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7905), - [anon_sym___deprecated_msg] = ACTIONS(7905), - [anon_sym___deprecated_enum_msg] = ACTIONS(7905), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7905), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7905), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7905), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7905), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -548220,119 +544636,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3590] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3590), - [sym_identifier] = ACTIONS(8014), - [anon_sym_COMMA] = ACTIONS(8016), - [anon_sym_RPAREN] = ACTIONS(8016), - [anon_sym_LPAREN2] = ACTIONS(8016), - [anon_sym_STAR] = ACTIONS(8016), - [anon_sym_GT] = ACTIONS(8016), - [anon_sym_SEMI] = ACTIONS(8016), - [anon_sym___attribute] = ACTIONS(8014), - [anon_sym___attribute__] = ACTIONS(8014), - [anon_sym___based] = ACTIONS(8014), - [anon_sym_LBRACE] = ACTIONS(8016), - [anon_sym_LBRACK] = ACTIONS(8016), - [anon_sym_const] = ACTIONS(8014), - [anon_sym_volatile] = ACTIONS(8014), - [anon_sym_restrict] = ACTIONS(8014), - [anon_sym__Atomic] = ACTIONS(8014), - [anon_sym_in] = ACTIONS(8014), - [anon_sym_out] = ACTIONS(8014), - [anon_sym_inout] = ACTIONS(8014), - [anon_sym_bycopy] = ACTIONS(8014), - [anon_sym_byref] = ACTIONS(8014), - [anon_sym_oneway] = ACTIONS(8014), - [anon_sym__Nullable] = ACTIONS(8014), - [anon_sym__Nonnull] = ACTIONS(8014), - [anon_sym__Nullable_result] = ACTIONS(8014), - [anon_sym__Null_unspecified] = ACTIONS(8014), - [anon_sym___autoreleasing] = ACTIONS(8014), - [anon_sym___nullable] = ACTIONS(8014), - [anon_sym___nonnull] = ACTIONS(8014), - [anon_sym___strong] = ACTIONS(8014), - [anon_sym___weak] = ACTIONS(8014), - [anon_sym___bridge] = ACTIONS(8014), - [anon_sym___bridge_transfer] = ACTIONS(8014), - [anon_sym___bridge_retained] = ACTIONS(8014), - [anon_sym___unsafe_unretained] = ACTIONS(8014), - [anon_sym___block] = ACTIONS(8014), - [anon_sym___kindof] = ACTIONS(8014), - [anon_sym___unused] = ACTIONS(8014), - [anon_sym__Complex] = ACTIONS(8014), - [anon_sym___complex] = ACTIONS(8014), - [anon_sym_IBOutlet] = ACTIONS(8014), - [anon_sym_IBInspectable] = ACTIONS(8014), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8014), - [anon_sym_signed] = ACTIONS(8718), - [anon_sym_unsigned] = ACTIONS(8718), - [anon_sym_long] = ACTIONS(8718), - [anon_sym_short] = ACTIONS(8718), - [sym_primitive_type] = ACTIONS(8014), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8014), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8014), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8014), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8014), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8014), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8014), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8014), - [anon_sym_NS_AVAILABLE] = ACTIONS(8014), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8014), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8014), - [anon_sym_API_AVAILABLE] = ACTIONS(8014), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8014), - [anon_sym_API_DEPRECATED] = ACTIONS(8014), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8014), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8014), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8014), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8014), - [anon_sym___deprecated_msg] = ACTIONS(8014), - [anon_sym___deprecated_enum_msg] = ACTIONS(8014), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8014), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8014), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8014), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8014), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3591] = { - [sym__expression] = STATE(3287), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_initializer_list] = STATE(3334), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(4317), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -548342,35 +544676,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(2232), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_RBRACK] = ACTIONS(8780), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3591] = { + [sym__expression] = STATE(4532), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8782), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -548382,79 +544796,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3592] = { - [sym__expression] = STATE(4482), - [sym_comma_expression] = STATE(5338), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(8721), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [sym__expression] = STATE(2977), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), + [anon_sym_CARET] = ACTIONS(8730), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(8784), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -548463,121 +544876,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3593] = { - [sym_identifier] = ACTIONS(7867), - [anon_sym_COMMA] = ACTIONS(8723), - [anon_sym_RPAREN] = ACTIONS(8723), - [anon_sym_LPAREN2] = ACTIONS(8723), - [anon_sym_STAR] = ACTIONS(8723), - [anon_sym_SEMI] = ACTIONS(8723), - [anon_sym_extern] = ACTIONS(7867), - [anon_sym___attribute] = ACTIONS(7867), - [anon_sym___attribute__] = ACTIONS(7867), - [anon_sym___declspec] = ACTIONS(7867), - [anon_sym___based] = ACTIONS(7867), - [anon_sym_LBRACK] = ACTIONS(8723), - [anon_sym_static] = ACTIONS(7867), - [anon_sym_auto] = ACTIONS(7867), - [anon_sym_register] = ACTIONS(7867), - [anon_sym_inline] = ACTIONS(7867), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7867), - [anon_sym_const] = ACTIONS(7867), - [anon_sym_volatile] = ACTIONS(7867), - [anon_sym_restrict] = ACTIONS(7867), - [anon_sym__Atomic] = ACTIONS(7867), - [anon_sym_in] = ACTIONS(7867), - [anon_sym_out] = ACTIONS(7867), - [anon_sym_inout] = ACTIONS(7867), - [anon_sym_bycopy] = ACTIONS(7867), - [anon_sym_byref] = ACTIONS(7867), - [anon_sym_oneway] = ACTIONS(7867), - [anon_sym__Nullable] = ACTIONS(7867), - [anon_sym__Nonnull] = ACTIONS(7867), - [anon_sym__Nullable_result] = ACTIONS(7867), - [anon_sym__Null_unspecified] = ACTIONS(7867), - [anon_sym___autoreleasing] = ACTIONS(7867), - [anon_sym___nullable] = ACTIONS(7867), - [anon_sym___nonnull] = ACTIONS(7867), - [anon_sym___strong] = ACTIONS(7867), - [anon_sym___weak] = ACTIONS(7867), - [anon_sym___bridge] = ACTIONS(7867), - [anon_sym___bridge_transfer] = ACTIONS(7867), - [anon_sym___bridge_retained] = ACTIONS(7867), - [anon_sym___unsafe_unretained] = ACTIONS(7867), - [anon_sym___block] = ACTIONS(7867), - [anon_sym___kindof] = ACTIONS(7867), - [anon_sym___unused] = ACTIONS(7867), - [anon_sym__Complex] = ACTIONS(7867), - [anon_sym___complex] = ACTIONS(7867), - [anon_sym_IBOutlet] = ACTIONS(7867), - [anon_sym_IBInspectable] = ACTIONS(7867), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7867), - [anon_sym_COLON] = ACTIONS(8723), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7867), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7867), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7867), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7867), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7867), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7867), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7867), - [anon_sym_NS_AVAILABLE] = ACTIONS(7867), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7867), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_API_AVAILABLE] = ACTIONS(7867), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7867), - [anon_sym_API_DEPRECATED] = ACTIONS(7867), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7867), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7867), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7867), - [anon_sym___deprecated_msg] = ACTIONS(7867), - [anon_sym___deprecated_enum_msg] = ACTIONS(7867), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7867), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7867), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7867), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3594] = { - [sym__expression] = STATE(4484), - [sym_comma_expression] = STATE(5697), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(4543), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(8725), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -548587,33 +544917,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_COLON] = ACTIONS(8786), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -548624,40 +544955,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, + [3594] = { + [sym__expression] = STATE(2977), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8730), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(8788), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, [3595] = { - [sym__expression] = STATE(4455), - [sym_comma_expression] = STATE(5746), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(4519), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(8790), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -548666,35 +545077,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(8727), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8792), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(8794), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -548706,23 +545116,1298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3596] = { + [sym__expression] = STATE(4542), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8796), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3597] = { + [sym__expression] = STATE(4317), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_RBRACK] = ACTIONS(8798), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3598] = { + [sym__expression] = STATE(4516), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_COLON] = ACTIONS(8800), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3599] = { + [sym_enumerator_list] = STATE(3455), + [sym_identifier] = ACTIONS(8802), + [anon_sym_LPAREN2] = ACTIONS(8182), + [anon_sym_STAR] = ACTIONS(8182), + [anon_sym_SEMI] = ACTIONS(8182), + [anon_sym_extern] = ACTIONS(8184), + [anon_sym___attribute] = ACTIONS(8184), + [anon_sym___attribute__] = ACTIONS(8184), + [anon_sym___declspec] = ACTIONS(8184), + [anon_sym___based] = ACTIONS(8184), + [anon_sym_LBRACE] = ACTIONS(8215), + [anon_sym_static] = ACTIONS(8184), + [anon_sym_auto] = ACTIONS(8184), + [anon_sym_register] = ACTIONS(8184), + [anon_sym_inline] = ACTIONS(8184), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8184), + [anon_sym_const] = ACTIONS(8184), + [anon_sym_volatile] = ACTIONS(8184), + [anon_sym_restrict] = ACTIONS(8184), + [anon_sym__Atomic] = ACTIONS(8184), + [anon_sym_in] = ACTIONS(8184), + [anon_sym_out] = ACTIONS(8184), + [anon_sym_inout] = ACTIONS(8184), + [anon_sym_bycopy] = ACTIONS(8184), + [anon_sym_byref] = ACTIONS(8184), + [anon_sym_oneway] = ACTIONS(8184), + [anon_sym__Nullable] = ACTIONS(8184), + [anon_sym__Nonnull] = ACTIONS(8184), + [anon_sym__Nullable_result] = ACTIONS(8184), + [anon_sym__Null_unspecified] = ACTIONS(8184), + [anon_sym___autoreleasing] = ACTIONS(8184), + [anon_sym___nullable] = ACTIONS(8184), + [anon_sym___nonnull] = ACTIONS(8184), + [anon_sym___strong] = ACTIONS(8184), + [anon_sym___weak] = ACTIONS(8184), + [anon_sym___bridge] = ACTIONS(8184), + [anon_sym___bridge_transfer] = ACTIONS(8184), + [anon_sym___bridge_retained] = ACTIONS(8184), + [anon_sym___unsafe_unretained] = ACTIONS(8184), + [anon_sym___block] = ACTIONS(8184), + [anon_sym___kindof] = ACTIONS(8184), + [anon_sym___unused] = ACTIONS(8184), + [anon_sym__Complex] = ACTIONS(8184), + [anon_sym___complex] = ACTIONS(8184), + [anon_sym_IBOutlet] = ACTIONS(8184), + [anon_sym_IBInspectable] = ACTIONS(8184), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8184), + [anon_sym_COLON] = ACTIONS(8805), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8184), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8184), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8184), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8184), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8184), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8184), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8184), + [anon_sym_NS_AVAILABLE] = ACTIONS(8184), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8184), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_API_AVAILABLE] = ACTIONS(8184), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8184), + [anon_sym_API_DEPRECATED] = ACTIONS(8184), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8184), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8184), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8184), + [anon_sym___deprecated_msg] = ACTIONS(8184), + [anon_sym___deprecated_enum_msg] = ACTIONS(8184), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8184), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8184), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3600] = { + [sym_identifier] = ACTIONS(7841), + [anon_sym_LPAREN2] = ACTIONS(7843), + [anon_sym_BANG] = ACTIONS(7843), + [anon_sym_TILDE] = ACTIONS(7843), + [anon_sym_DASH] = ACTIONS(7841), + [anon_sym_PLUS] = ACTIONS(7841), + [anon_sym_STAR] = ACTIONS(7843), + [anon_sym_CARET] = ACTIONS(7843), + [anon_sym_AMP] = ACTIONS(7843), + [anon_sym_LBRACK] = ACTIONS(7843), + [anon_sym_RBRACK] = ACTIONS(7843), + [anon_sym_const] = ACTIONS(7841), + [anon_sym_volatile] = ACTIONS(7841), + [anon_sym_restrict] = ACTIONS(7841), + [anon_sym__Atomic] = ACTIONS(7841), + [anon_sym_in] = ACTIONS(7841), + [anon_sym_out] = ACTIONS(7841), + [anon_sym_inout] = ACTIONS(7841), + [anon_sym_bycopy] = ACTIONS(7841), + [anon_sym_byref] = ACTIONS(7841), + [anon_sym_oneway] = ACTIONS(7841), + [anon_sym__Nullable] = ACTIONS(7841), + [anon_sym__Nonnull] = ACTIONS(7841), + [anon_sym__Nullable_result] = ACTIONS(7841), + [anon_sym__Null_unspecified] = ACTIONS(7841), + [anon_sym___autoreleasing] = ACTIONS(7841), + [anon_sym___nullable] = ACTIONS(7841), + [anon_sym___nonnull] = ACTIONS(7841), + [anon_sym___strong] = ACTIONS(7841), + [anon_sym___weak] = ACTIONS(7841), + [anon_sym___bridge] = ACTIONS(7841), + [anon_sym___bridge_transfer] = ACTIONS(7841), + [anon_sym___bridge_retained] = ACTIONS(7841), + [anon_sym___unsafe_unretained] = ACTIONS(7841), + [anon_sym___block] = ACTIONS(7841), + [anon_sym___kindof] = ACTIONS(7841), + [anon_sym___unused] = ACTIONS(7841), + [anon_sym__Complex] = ACTIONS(7841), + [anon_sym___complex] = ACTIONS(7841), + [anon_sym_IBOutlet] = ACTIONS(7841), + [anon_sym_IBInspectable] = ACTIONS(7841), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7841), + [anon_sym_DASH_DASH] = ACTIONS(7843), + [anon_sym_PLUS_PLUS] = ACTIONS(7843), + [anon_sym_sizeof] = ACTIONS(7841), + [sym_number_literal] = ACTIONS(7843), + [anon_sym_L_SQUOTE] = ACTIONS(7843), + [anon_sym_u_SQUOTE] = ACTIONS(7843), + [anon_sym_U_SQUOTE] = ACTIONS(7843), + [anon_sym_u8_SQUOTE] = ACTIONS(7843), + [anon_sym_SQUOTE] = ACTIONS(7843), + [anon_sym_L_DQUOTE] = ACTIONS(7843), + [anon_sym_u_DQUOTE] = ACTIONS(7843), + [anon_sym_U_DQUOTE] = ACTIONS(7843), + [anon_sym_u8_DQUOTE] = ACTIONS(7843), + [anon_sym_DQUOTE] = ACTIONS(7843), + [sym_true] = ACTIONS(7841), + [sym_false] = ACTIONS(7841), + [sym_null] = ACTIONS(7841), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(7843), + [sym_self] = ACTIONS(7841), + [sym_super] = ACTIONS(7841), + [sym_nil] = ACTIONS(7841), + [anon_sym_ATselector] = ACTIONS(7843), + [anon_sym_ATencode] = ACTIONS(7843), + [anon_sym_AT] = ACTIONS(7841), + [sym_YES] = ACTIONS(7841), + [sym_NO] = ACTIONS(7841), + [anon_sym___builtin_available] = ACTIONS(7841), + [anon_sym_ATavailable] = ACTIONS(7843), + [anon_sym_va_arg] = ACTIONS(7841), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3601] = { + [sym_compound_statement] = STATE(3282), + [sym_type_qualifier] = STATE(3866), + [sym__type_specifier] = STATE(3951), + [sym_sized_type_specifier] = STATE(3951), + [sym_enum_specifier] = STATE(3951), + [sym_struct_specifier] = STATE(3951), + [sym_union_specifier] = STATE(3951), + [sym_parameter_list] = STATE(5215), + [sym_type_descriptor] = STATE(4836), + [sym_macro_type_specifier] = STATE(3951), + [sym_ns_enum_specifier] = STATE(3951), + [sym_typeof_specifier] = STATE(3951), + [sym_atomic_specifier] = STATE(3951), + [sym_generic_type_specifier] = STATE(3951), + [aux_sym_type_definition_repeat1] = STATE(3751), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_LBRACE] = ACTIONS(8712), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(8714), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(8716), + [anon_sym_enum] = ACTIONS(8718), + [anon_sym_struct] = ACTIONS(8720), + [anon_sym_union] = ACTIONS(8722), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(8724), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(8724), + [anon_sym_NS_OPTIONS] = ACTIONS(8724), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(8716), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(8716), + [sym_IMP] = ACTIONS(8716), + [sym_BOOL] = ACTIONS(8716), + [sym_auto] = ACTIONS(8716), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3602] = { + [sym__expression] = STATE(4314), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym__variadic_arguments] = STATE(4927), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3603] = { + [sym__expression] = STATE(4520), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym__dictionary_key_value_pair] = STATE(5076), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3604] = { + [sym__expression] = STATE(2977), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8730), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(8808), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3605] = { + [sym__expression] = STATE(4493), + [sym_comma_expression] = STATE(5601), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3606] = { + [sym__expression] = STATE(4523), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(8810), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(8812), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(8814), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3607] = { + [sym_enumerator_list] = STATE(3451), + [sym_identifier] = ACTIONS(8147), + [anon_sym_LPAREN2] = ACTIONS(8149), + [anon_sym_STAR] = ACTIONS(8149), + [anon_sym_SEMI] = ACTIONS(8149), + [anon_sym_extern] = ACTIONS(8147), + [anon_sym___attribute] = ACTIONS(8147), + [anon_sym___attribute__] = ACTIONS(8147), + [anon_sym___declspec] = ACTIONS(8147), + [anon_sym___based] = ACTIONS(8147), + [anon_sym_LBRACE] = ACTIONS(8164), + [anon_sym_static] = ACTIONS(8147), + [anon_sym_auto] = ACTIONS(8147), + [anon_sym_register] = ACTIONS(8147), + [anon_sym_inline] = ACTIONS(8147), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8147), + [anon_sym_const] = ACTIONS(8147), + [anon_sym_volatile] = ACTIONS(8147), + [anon_sym_restrict] = ACTIONS(8147), + [anon_sym__Atomic] = ACTIONS(8147), + [anon_sym_in] = ACTIONS(8147), + [anon_sym_out] = ACTIONS(8147), + [anon_sym_inout] = ACTIONS(8147), + [anon_sym_bycopy] = ACTIONS(8147), + [anon_sym_byref] = ACTIONS(8147), + [anon_sym_oneway] = ACTIONS(8147), + [anon_sym__Nullable] = ACTIONS(8147), + [anon_sym__Nonnull] = ACTIONS(8147), + [anon_sym__Nullable_result] = ACTIONS(8147), + [anon_sym__Null_unspecified] = ACTIONS(8147), + [anon_sym___autoreleasing] = ACTIONS(8147), + [anon_sym___nullable] = ACTIONS(8147), + [anon_sym___nonnull] = ACTIONS(8147), + [anon_sym___strong] = ACTIONS(8147), + [anon_sym___weak] = ACTIONS(8147), + [anon_sym___bridge] = ACTIONS(8147), + [anon_sym___bridge_transfer] = ACTIONS(8147), + [anon_sym___bridge_retained] = ACTIONS(8147), + [anon_sym___unsafe_unretained] = ACTIONS(8147), + [anon_sym___block] = ACTIONS(8147), + [anon_sym___kindof] = ACTIONS(8147), + [anon_sym___unused] = ACTIONS(8147), + [anon_sym__Complex] = ACTIONS(8147), + [anon_sym___complex] = ACTIONS(8147), + [anon_sym_IBOutlet] = ACTIONS(8147), + [anon_sym_IBInspectable] = ACTIONS(8147), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8147), + [anon_sym_COLON] = ACTIONS(8816), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8147), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8147), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8147), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8147), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8147), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8147), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8147), + [anon_sym_NS_AVAILABLE] = ACTIONS(8147), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8147), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_API_AVAILABLE] = ACTIONS(8147), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8147), + [anon_sym_API_DEPRECATED] = ACTIONS(8147), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8147), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8147), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8147), + [anon_sym___deprecated_msg] = ACTIONS(8147), + [anon_sym___deprecated_enum_msg] = ACTIONS(8147), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8147), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8147), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3608] = { + [sym__expression] = STATE(4548), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8819), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3609] = { + [sym_enumerator_list] = STATE(3455), + [sym_identifier] = ACTIONS(8821), + [anon_sym_LPAREN2] = ACTIONS(8182), + [anon_sym_STAR] = ACTIONS(8182), + [anon_sym_SEMI] = ACTIONS(8182), + [anon_sym_extern] = ACTIONS(8184), + [anon_sym___attribute] = ACTIONS(8184), + [anon_sym___attribute__] = ACTIONS(8184), + [anon_sym___declspec] = ACTIONS(8184), + [anon_sym___based] = ACTIONS(8184), + [anon_sym_LBRACE] = ACTIONS(8138), + [anon_sym_static] = ACTIONS(8184), + [anon_sym_auto] = ACTIONS(8184), + [anon_sym_register] = ACTIONS(8184), + [anon_sym_inline] = ACTIONS(8184), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8184), + [anon_sym_const] = ACTIONS(8184), + [anon_sym_volatile] = ACTIONS(8184), + [anon_sym_restrict] = ACTIONS(8184), + [anon_sym__Atomic] = ACTIONS(8184), + [anon_sym_in] = ACTIONS(8184), + [anon_sym_out] = ACTIONS(8184), + [anon_sym_inout] = ACTIONS(8184), + [anon_sym_bycopy] = ACTIONS(8184), + [anon_sym_byref] = ACTIONS(8184), + [anon_sym_oneway] = ACTIONS(8184), + [anon_sym__Nullable] = ACTIONS(8184), + [anon_sym__Nonnull] = ACTIONS(8184), + [anon_sym__Nullable_result] = ACTIONS(8184), + [anon_sym__Null_unspecified] = ACTIONS(8184), + [anon_sym___autoreleasing] = ACTIONS(8184), + [anon_sym___nullable] = ACTIONS(8184), + [anon_sym___nonnull] = ACTIONS(8184), + [anon_sym___strong] = ACTIONS(8184), + [anon_sym___weak] = ACTIONS(8184), + [anon_sym___bridge] = ACTIONS(8184), + [anon_sym___bridge_transfer] = ACTIONS(8184), + [anon_sym___bridge_retained] = ACTIONS(8184), + [anon_sym___unsafe_unretained] = ACTIONS(8184), + [anon_sym___block] = ACTIONS(8184), + [anon_sym___kindof] = ACTIONS(8184), + [anon_sym___unused] = ACTIONS(8184), + [anon_sym__Complex] = ACTIONS(8184), + [anon_sym___complex] = ACTIONS(8184), + [anon_sym_IBOutlet] = ACTIONS(8184), + [anon_sym_IBInspectable] = ACTIONS(8184), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8184), + [anon_sym_COLON] = ACTIONS(8824), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8184), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8184), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8184), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8184), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8184), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8184), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8184), + [anon_sym_NS_AVAILABLE] = ACTIONS(8184), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8184), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_API_AVAILABLE] = ACTIONS(8184), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8184), + [anon_sym_API_DEPRECATED] = ACTIONS(8184), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8184), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8184), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8184), + [anon_sym___deprecated_msg] = ACTIONS(8184), + [anon_sym___deprecated_enum_msg] = ACTIONS(8184), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8184), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8184), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3610] = { + [sym__expression] = STATE(4540), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8827), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3611] = { + [sym__expression] = STATE(2977), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8730), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(8829), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3612] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3612), [sym_identifier] = ACTIONS(7891), [anon_sym_COMMA] = ACTIONS(7893), [anon_sym_RPAREN] = ACTIONS(7893), [anon_sym_LPAREN2] = ACTIONS(7893), [anon_sym_STAR] = ACTIONS(7893), - [anon_sym_SEMI] = ACTIONS(7893), - [anon_sym_extern] = ACTIONS(7891), + [anon_sym_GT] = ACTIONS(7893), [anon_sym___attribute] = ACTIONS(7891), [anon_sym___attribute__] = ACTIONS(7891), - [anon_sym___declspec] = ACTIONS(7891), [anon_sym___based] = ACTIONS(7891), + [anon_sym_LBRACE] = ACTIONS(7893), [anon_sym_LBRACK] = ACTIONS(7893), - [anon_sym_static] = ACTIONS(7891), - [anon_sym_auto] = ACTIONS(7891), - [anon_sym_register] = ACTIONS(7891), - [anon_sym_inline] = ACTIONS(7891), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7891), [anon_sym_const] = ACTIONS(7891), [anon_sym_volatile] = ACTIONS(7891), [anon_sym_restrict] = ACTIONS(7891), @@ -548754,7 +546439,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_IBOutlet] = ACTIONS(7891), [anon_sym_IBInspectable] = ACTIONS(7891), [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7891), - [anon_sym_COLON] = ACTIONS(7893), + [anon_sym_signed] = ACTIONS(8831), + [anon_sym_unsigned] = ACTIONS(8831), + [anon_sym_long] = ACTIONS(8831), + [anon_sym_short] = ACTIONS(8831), + [sym_primitive_type] = ACTIONS(7891), [sym_comment] = ACTIONS(3), [sym_method_attribute_specifier] = ACTIONS(7891), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7891), @@ -548786,1375 +546475,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3597] = { - [sym_attribute_specifier] = STATE(3972), - [sym_ms_based_modifier] = STATE(5875), - [sym__declarator] = STATE(4015), - [sym_parenthesized_declarator] = STATE(3843), - [sym_pointer_declarator] = STATE(3843), - [sym_function_declarator] = STATE(3843), - [sym_array_declarator] = STATE(3843), - [sym_type_qualifier] = STATE(3976), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(3843), - [aux_sym_type_definition_repeat1] = STATE(3976), - [sym_identifier] = ACTIONS(7909), - [anon_sym_LPAREN2] = ACTIONS(8678), - [anon_sym_STAR] = ACTIONS(8680), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3598] = { - [sym_identifier] = ACTIONS(7322), - [anon_sym_COMMA] = ACTIONS(7324), - [anon_sym_RPAREN] = ACTIONS(7324), - [anon_sym_LPAREN2] = ACTIONS(7324), - [anon_sym_STAR] = ACTIONS(7324), - [anon_sym_SEMI] = ACTIONS(7324), - [anon_sym_extern] = ACTIONS(7322), - [anon_sym___attribute] = ACTIONS(7322), - [anon_sym___attribute__] = ACTIONS(7322), - [anon_sym___declspec] = ACTIONS(7322), - [anon_sym___based] = ACTIONS(7322), - [anon_sym_LBRACK] = ACTIONS(7324), - [anon_sym_static] = ACTIONS(7322), - [anon_sym_auto] = ACTIONS(7322), - [anon_sym_register] = ACTIONS(7322), - [anon_sym_inline] = ACTIONS(7322), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7322), - [anon_sym_const] = ACTIONS(7322), - [anon_sym_volatile] = ACTIONS(7322), - [anon_sym_restrict] = ACTIONS(7322), - [anon_sym__Atomic] = ACTIONS(7322), - [anon_sym_in] = ACTIONS(7322), - [anon_sym_out] = ACTIONS(7322), - [anon_sym_inout] = ACTIONS(7322), - [anon_sym_bycopy] = ACTIONS(7322), - [anon_sym_byref] = ACTIONS(7322), - [anon_sym_oneway] = ACTIONS(7322), - [anon_sym__Nullable] = ACTIONS(7322), - [anon_sym__Nonnull] = ACTIONS(7322), - [anon_sym__Nullable_result] = ACTIONS(7322), - [anon_sym__Null_unspecified] = ACTIONS(7322), - [anon_sym___autoreleasing] = ACTIONS(7322), - [anon_sym___nullable] = ACTIONS(7322), - [anon_sym___nonnull] = ACTIONS(7322), - [anon_sym___strong] = ACTIONS(7322), - [anon_sym___weak] = ACTIONS(7322), - [anon_sym___bridge] = ACTIONS(7322), - [anon_sym___bridge_transfer] = ACTIONS(7322), - [anon_sym___bridge_retained] = ACTIONS(7322), - [anon_sym___unsafe_unretained] = ACTIONS(7322), - [anon_sym___block] = ACTIONS(7322), - [anon_sym___kindof] = ACTIONS(7322), - [anon_sym___unused] = ACTIONS(7322), - [anon_sym__Complex] = ACTIONS(7322), - [anon_sym___complex] = ACTIONS(7322), - [anon_sym_IBOutlet] = ACTIONS(7322), - [anon_sym_IBInspectable] = ACTIONS(7322), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7322), - [anon_sym_COLON] = ACTIONS(7324), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7322), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7322), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7322), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7322), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7322), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7322), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7322), - [anon_sym_NS_AVAILABLE] = ACTIONS(7322), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7322), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7322), - [anon_sym_API_AVAILABLE] = ACTIONS(7322), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7322), - [anon_sym_API_DEPRECATED] = ACTIONS(7322), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7322), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7322), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7322), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7322), - [anon_sym___deprecated_msg] = ACTIONS(7322), - [anon_sym___deprecated_enum_msg] = ACTIONS(7322), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7322), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7322), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7322), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7322), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3599] = { - [sym_attribute_specifier] = STATE(3993), - [sym_ms_based_modifier] = STATE(5875), - [sym__declarator] = STATE(4009), - [sym_parenthesized_declarator] = STATE(3843), - [sym_pointer_declarator] = STATE(3843), - [sym_function_declarator] = STATE(3843), - [sym_array_declarator] = STATE(3843), - [sym_type_qualifier] = STATE(3974), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(3843), - [aux_sym_type_definition_repeat1] = STATE(3974), - [sym_identifier] = ACTIONS(7909), - [anon_sym_LPAREN2] = ACTIONS(8678), - [anon_sym_STAR] = ACTIONS(8680), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3600] = { - [sym__expression] = STATE(4485), - [sym_comma_expression] = STATE(5580), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(8729), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3601] = { - [sym_identifier] = ACTIONS(7318), - [anon_sym_COMMA] = ACTIONS(7320), - [anon_sym_RPAREN] = ACTIONS(7320), - [anon_sym_LPAREN2] = ACTIONS(7320), - [anon_sym_STAR] = ACTIONS(7320), - [anon_sym_SEMI] = ACTIONS(7320), - [anon_sym_extern] = ACTIONS(7318), - [anon_sym___attribute] = ACTIONS(7318), - [anon_sym___attribute__] = ACTIONS(7318), - [anon_sym___declspec] = ACTIONS(7318), - [anon_sym___based] = ACTIONS(7318), - [anon_sym_LBRACK] = ACTIONS(7320), - [anon_sym_static] = ACTIONS(7318), - [anon_sym_auto] = ACTIONS(7318), - [anon_sym_register] = ACTIONS(7318), - [anon_sym_inline] = ACTIONS(7318), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7318), - [anon_sym_const] = ACTIONS(7318), - [anon_sym_volatile] = ACTIONS(7318), - [anon_sym_restrict] = ACTIONS(7318), - [anon_sym__Atomic] = ACTIONS(7318), - [anon_sym_in] = ACTIONS(7318), - [anon_sym_out] = ACTIONS(7318), - [anon_sym_inout] = ACTIONS(7318), - [anon_sym_bycopy] = ACTIONS(7318), - [anon_sym_byref] = ACTIONS(7318), - [anon_sym_oneway] = ACTIONS(7318), - [anon_sym__Nullable] = ACTIONS(7318), - [anon_sym__Nonnull] = ACTIONS(7318), - [anon_sym__Nullable_result] = ACTIONS(7318), - [anon_sym__Null_unspecified] = ACTIONS(7318), - [anon_sym___autoreleasing] = ACTIONS(7318), - [anon_sym___nullable] = ACTIONS(7318), - [anon_sym___nonnull] = ACTIONS(7318), - [anon_sym___strong] = ACTIONS(7318), - [anon_sym___weak] = ACTIONS(7318), - [anon_sym___bridge] = ACTIONS(7318), - [anon_sym___bridge_transfer] = ACTIONS(7318), - [anon_sym___bridge_retained] = ACTIONS(7318), - [anon_sym___unsafe_unretained] = ACTIONS(7318), - [anon_sym___block] = ACTIONS(7318), - [anon_sym___kindof] = ACTIONS(7318), - [anon_sym___unused] = ACTIONS(7318), - [anon_sym__Complex] = ACTIONS(7318), - [anon_sym___complex] = ACTIONS(7318), - [anon_sym_IBOutlet] = ACTIONS(7318), - [anon_sym_IBInspectable] = ACTIONS(7318), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7318), - [anon_sym_COLON] = ACTIONS(7320), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7318), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7318), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7318), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7318), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7318), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7318), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7318), - [anon_sym_NS_AVAILABLE] = ACTIONS(7318), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7318), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7318), - [anon_sym_API_AVAILABLE] = ACTIONS(7318), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7318), - [anon_sym_API_DEPRECATED] = ACTIONS(7318), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7318), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7318), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7318), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7318), - [anon_sym___deprecated_msg] = ACTIONS(7318), - [anon_sym___deprecated_enum_msg] = ACTIONS(7318), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7318), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7318), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7318), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7318), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3602] = { - [sym_identifier] = ACTIONS(7326), - [anon_sym_COMMA] = ACTIONS(7328), - [anon_sym_RPAREN] = ACTIONS(7328), - [anon_sym_LPAREN2] = ACTIONS(7328), - [anon_sym_STAR] = ACTIONS(7328), - [anon_sym_SEMI] = ACTIONS(7328), - [anon_sym_extern] = ACTIONS(7326), - [anon_sym___attribute] = ACTIONS(7326), - [anon_sym___attribute__] = ACTIONS(7326), - [anon_sym___declspec] = ACTIONS(7326), - [anon_sym___based] = ACTIONS(7326), - [anon_sym_LBRACK] = ACTIONS(7328), - [anon_sym_static] = ACTIONS(7326), - [anon_sym_auto] = ACTIONS(7326), - [anon_sym_register] = ACTIONS(7326), - [anon_sym_inline] = ACTIONS(7326), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7326), - [anon_sym_const] = ACTIONS(7326), - [anon_sym_volatile] = ACTIONS(7326), - [anon_sym_restrict] = ACTIONS(7326), - [anon_sym__Atomic] = ACTIONS(7326), - [anon_sym_in] = ACTIONS(7326), - [anon_sym_out] = ACTIONS(7326), - [anon_sym_inout] = ACTIONS(7326), - [anon_sym_bycopy] = ACTIONS(7326), - [anon_sym_byref] = ACTIONS(7326), - [anon_sym_oneway] = ACTIONS(7326), - [anon_sym__Nullable] = ACTIONS(7326), - [anon_sym__Nonnull] = ACTIONS(7326), - [anon_sym__Nullable_result] = ACTIONS(7326), - [anon_sym__Null_unspecified] = ACTIONS(7326), - [anon_sym___autoreleasing] = ACTIONS(7326), - [anon_sym___nullable] = ACTIONS(7326), - [anon_sym___nonnull] = ACTIONS(7326), - [anon_sym___strong] = ACTIONS(7326), - [anon_sym___weak] = ACTIONS(7326), - [anon_sym___bridge] = ACTIONS(7326), - [anon_sym___bridge_transfer] = ACTIONS(7326), - [anon_sym___bridge_retained] = ACTIONS(7326), - [anon_sym___unsafe_unretained] = ACTIONS(7326), - [anon_sym___block] = ACTIONS(7326), - [anon_sym___kindof] = ACTIONS(7326), - [anon_sym___unused] = ACTIONS(7326), - [anon_sym__Complex] = ACTIONS(7326), - [anon_sym___complex] = ACTIONS(7326), - [anon_sym_IBOutlet] = ACTIONS(7326), - [anon_sym_IBInspectable] = ACTIONS(7326), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7326), - [anon_sym_COLON] = ACTIONS(7328), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7326), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7326), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7326), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7326), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7326), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7326), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7326), - [anon_sym_NS_AVAILABLE] = ACTIONS(7326), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7326), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7326), - [anon_sym_API_AVAILABLE] = ACTIONS(7326), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7326), - [anon_sym_API_DEPRECATED] = ACTIONS(7326), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7326), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7326), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7326), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7326), - [anon_sym___deprecated_msg] = ACTIONS(7326), - [anon_sym___deprecated_enum_msg] = ACTIONS(7326), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7326), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7326), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7326), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7326), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3603] = { - [sym__expression] = STATE(4452), - [sym_comma_expression] = STATE(5451), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(8731), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3604] = { - [sym_identifier] = ACTIONS(7344), - [anon_sym_COMMA] = ACTIONS(7346), - [anon_sym_RPAREN] = ACTIONS(7346), - [anon_sym_LPAREN2] = ACTIONS(7346), - [anon_sym_STAR] = ACTIONS(7346), - [anon_sym_SEMI] = ACTIONS(7346), - [anon_sym_extern] = ACTIONS(7344), - [anon_sym___attribute] = ACTIONS(7344), - [anon_sym___attribute__] = ACTIONS(7344), - [anon_sym___declspec] = ACTIONS(7344), - [anon_sym___based] = ACTIONS(7344), - [anon_sym_LBRACK] = ACTIONS(7346), - [anon_sym_static] = ACTIONS(7344), - [anon_sym_auto] = ACTIONS(7344), - [anon_sym_register] = ACTIONS(7344), - [anon_sym_inline] = ACTIONS(7344), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7344), - [anon_sym_const] = ACTIONS(7344), - [anon_sym_volatile] = ACTIONS(7344), - [anon_sym_restrict] = ACTIONS(7344), - [anon_sym__Atomic] = ACTIONS(7344), - [anon_sym_in] = ACTIONS(7344), - [anon_sym_out] = ACTIONS(7344), - [anon_sym_inout] = ACTIONS(7344), - [anon_sym_bycopy] = ACTIONS(7344), - [anon_sym_byref] = ACTIONS(7344), - [anon_sym_oneway] = ACTIONS(7344), - [anon_sym__Nullable] = ACTIONS(7344), - [anon_sym__Nonnull] = ACTIONS(7344), - [anon_sym__Nullable_result] = ACTIONS(7344), - [anon_sym__Null_unspecified] = ACTIONS(7344), - [anon_sym___autoreleasing] = ACTIONS(7344), - [anon_sym___nullable] = ACTIONS(7344), - [anon_sym___nonnull] = ACTIONS(7344), - [anon_sym___strong] = ACTIONS(7344), - [anon_sym___weak] = ACTIONS(7344), - [anon_sym___bridge] = ACTIONS(7344), - [anon_sym___bridge_transfer] = ACTIONS(7344), - [anon_sym___bridge_retained] = ACTIONS(7344), - [anon_sym___unsafe_unretained] = ACTIONS(7344), - [anon_sym___block] = ACTIONS(7344), - [anon_sym___kindof] = ACTIONS(7344), - [anon_sym___unused] = ACTIONS(7344), - [anon_sym__Complex] = ACTIONS(7344), - [anon_sym___complex] = ACTIONS(7344), - [anon_sym_IBOutlet] = ACTIONS(7344), - [anon_sym_IBInspectable] = ACTIONS(7344), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7344), - [anon_sym_COLON] = ACTIONS(7346), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7344), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7344), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7344), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7344), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7344), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7344), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7344), - [anon_sym_NS_AVAILABLE] = ACTIONS(7344), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7344), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7344), - [anon_sym_API_AVAILABLE] = ACTIONS(7344), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7344), - [anon_sym_API_DEPRECATED] = ACTIONS(7344), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7344), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7344), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7344), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7344), - [anon_sym___deprecated_msg] = ACTIONS(7344), - [anon_sym___deprecated_enum_msg] = ACTIONS(7344), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7344), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7344), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7344), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7344), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3605] = { - [sym__expression] = STATE(4445), - [sym_comma_expression] = STATE(5454), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(8733), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3606] = { - [sym_identifier] = ACTIONS(7352), - [anon_sym_COMMA] = ACTIONS(7354), - [anon_sym_RPAREN] = ACTIONS(7354), - [anon_sym_LPAREN2] = ACTIONS(7354), - [anon_sym_STAR] = ACTIONS(7354), - [anon_sym_SEMI] = ACTIONS(7354), - [anon_sym_extern] = ACTIONS(7352), - [anon_sym___attribute] = ACTIONS(7352), - [anon_sym___attribute__] = ACTIONS(7352), - [anon_sym___declspec] = ACTIONS(7352), - [anon_sym___based] = ACTIONS(7352), - [anon_sym_LBRACK] = ACTIONS(7354), - [anon_sym_static] = ACTIONS(7352), - [anon_sym_auto] = ACTIONS(7352), - [anon_sym_register] = ACTIONS(7352), - [anon_sym_inline] = ACTIONS(7352), - [aux_sym_storage_class_specifier_token1] = ACTIONS(7352), - [anon_sym_const] = ACTIONS(7352), - [anon_sym_volatile] = ACTIONS(7352), - [anon_sym_restrict] = ACTIONS(7352), - [anon_sym__Atomic] = ACTIONS(7352), - [anon_sym_in] = ACTIONS(7352), - [anon_sym_out] = ACTIONS(7352), - [anon_sym_inout] = ACTIONS(7352), - [anon_sym_bycopy] = ACTIONS(7352), - [anon_sym_byref] = ACTIONS(7352), - [anon_sym_oneway] = ACTIONS(7352), - [anon_sym__Nullable] = ACTIONS(7352), - [anon_sym__Nonnull] = ACTIONS(7352), - [anon_sym__Nullable_result] = ACTIONS(7352), - [anon_sym__Null_unspecified] = ACTIONS(7352), - [anon_sym___autoreleasing] = ACTIONS(7352), - [anon_sym___nullable] = ACTIONS(7352), - [anon_sym___nonnull] = ACTIONS(7352), - [anon_sym___strong] = ACTIONS(7352), - [anon_sym___weak] = ACTIONS(7352), - [anon_sym___bridge] = ACTIONS(7352), - [anon_sym___bridge_transfer] = ACTIONS(7352), - [anon_sym___bridge_retained] = ACTIONS(7352), - [anon_sym___unsafe_unretained] = ACTIONS(7352), - [anon_sym___block] = ACTIONS(7352), - [anon_sym___kindof] = ACTIONS(7352), - [anon_sym___unused] = ACTIONS(7352), - [anon_sym__Complex] = ACTIONS(7352), - [anon_sym___complex] = ACTIONS(7352), - [anon_sym_IBOutlet] = ACTIONS(7352), - [anon_sym_IBInspectable] = ACTIONS(7352), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7352), - [anon_sym_COLON] = ACTIONS(7354), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7352), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7352), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7352), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7352), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7352), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7352), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7352), - [anon_sym_NS_AVAILABLE] = ACTIONS(7352), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7352), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7352), - [anon_sym_API_AVAILABLE] = ACTIONS(7352), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7352), - [anon_sym_API_DEPRECATED] = ACTIONS(7352), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7352), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7352), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7352), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7352), - [anon_sym___deprecated_msg] = ACTIONS(7352), - [anon_sym___deprecated_enum_msg] = ACTIONS(7352), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7352), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7352), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7352), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7352), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3607] = { - [sym__expression] = STATE(4448), - [sym_comma_expression] = STATE(5667), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(8735), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3608] = { - [sym__expression] = STATE(4441), - [sym_comma_expression] = STATE(5459), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(8737), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3609] = { - [sym_attribute_specifier] = STATE(3975), - [sym_ms_based_modifier] = STATE(5875), - [sym__declarator] = STATE(4014), - [sym_parenthesized_declarator] = STATE(3843), - [sym_pointer_declarator] = STATE(3843), - [sym_function_declarator] = STATE(3843), - [sym_array_declarator] = STATE(3843), - [sym_type_qualifier] = STATE(3991), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [sym_block_declarator] = STATE(3843), - [aux_sym_type_definition_repeat1] = STATE(3991), - [sym_identifier] = ACTIONS(7909), - [anon_sym_LPAREN2] = ACTIONS(8678), - [anon_sym_STAR] = ACTIONS(8680), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8307), - [anon_sym___based] = ACTIONS(6527), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8309), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8311), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8313), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8313), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8313), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8315), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_API_AVAILABLE] = ACTIONS(8315), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_API_DEPRECATED] = ACTIONS(8315), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8315), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8315), - [anon_sym___deprecated_msg] = ACTIONS(8315), - [anon_sym___deprecated_enum_msg] = ACTIONS(8315), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8315), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8315), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8315), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3610] = { - [sym__expression] = STATE(4468), - [sym_comma_expression] = STATE(5687), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(8739), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3611] = { - [sym__expression] = STATE(4438), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_initializer_list] = STATE(5102), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3612] = { - [sym__expression] = STATE(4449), - [sym_comma_expression] = STATE(5666), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(8741), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, [3613] = { - [sym_identifier] = ACTIONS(7891), - [anon_sym_LPAREN2] = ACTIONS(7893), - [anon_sym_BANG] = ACTIONS(7893), - [anon_sym_TILDE] = ACTIONS(7893), - [anon_sym_DASH] = ACTIONS(7891), - [anon_sym_PLUS] = ACTIONS(7891), - [anon_sym_STAR] = ACTIONS(7893), - [anon_sym_CARET] = ACTIONS(7893), - [anon_sym_AMP] = ACTIONS(7893), - [anon_sym_LBRACK] = ACTIONS(7893), - [anon_sym_RBRACK] = ACTIONS(7893), - [anon_sym_const] = ACTIONS(7891), - [anon_sym_volatile] = ACTIONS(7891), - [anon_sym_restrict] = ACTIONS(7891), - [anon_sym__Atomic] = ACTIONS(7891), - [anon_sym_in] = ACTIONS(7891), - [anon_sym_out] = ACTIONS(7891), - [anon_sym_inout] = ACTIONS(7891), - [anon_sym_bycopy] = ACTIONS(7891), - [anon_sym_byref] = ACTIONS(7891), - [anon_sym_oneway] = ACTIONS(7891), - [anon_sym__Nullable] = ACTIONS(7891), - [anon_sym__Nonnull] = ACTIONS(7891), - [anon_sym__Nullable_result] = ACTIONS(7891), - [anon_sym__Null_unspecified] = ACTIONS(7891), - [anon_sym___autoreleasing] = ACTIONS(7891), - [anon_sym___nullable] = ACTIONS(7891), - [anon_sym___nonnull] = ACTIONS(7891), - [anon_sym___strong] = ACTIONS(7891), - [anon_sym___weak] = ACTIONS(7891), - [anon_sym___bridge] = ACTIONS(7891), - [anon_sym___bridge_transfer] = ACTIONS(7891), - [anon_sym___bridge_retained] = ACTIONS(7891), - [anon_sym___unsafe_unretained] = ACTIONS(7891), - [anon_sym___block] = ACTIONS(7891), - [anon_sym___kindof] = ACTIONS(7891), - [anon_sym___unused] = ACTIONS(7891), - [anon_sym__Complex] = ACTIONS(7891), - [anon_sym___complex] = ACTIONS(7891), - [anon_sym_IBOutlet] = ACTIONS(7891), - [anon_sym_IBInspectable] = ACTIONS(7891), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7891), - [anon_sym_DASH_DASH] = ACTIONS(7893), - [anon_sym_PLUS_PLUS] = ACTIONS(7893), - [anon_sym_sizeof] = ACTIONS(7891), - [sym_number_literal] = ACTIONS(7893), - [anon_sym_L_SQUOTE] = ACTIONS(7893), - [anon_sym_u_SQUOTE] = ACTIONS(7893), - [anon_sym_U_SQUOTE] = ACTIONS(7893), - [anon_sym_u8_SQUOTE] = ACTIONS(7893), - [anon_sym_SQUOTE] = ACTIONS(7893), - [anon_sym_L_DQUOTE] = ACTIONS(7893), - [anon_sym_u_DQUOTE] = ACTIONS(7893), - [anon_sym_U_DQUOTE] = ACTIONS(7893), - [anon_sym_u8_DQUOTE] = ACTIONS(7893), - [anon_sym_DQUOTE] = ACTIONS(7893), - [sym_true] = ACTIONS(7891), - [sym_false] = ACTIONS(7891), - [sym_null] = ACTIONS(7891), + [sym_enumerator_list] = STATE(3451), + [sym_identifier] = ACTIONS(8147), + [anon_sym_LPAREN2] = ACTIONS(8149), + [anon_sym_STAR] = ACTIONS(8149), + [anon_sym_SEMI] = ACTIONS(8149), + [anon_sym_extern] = ACTIONS(8147), + [anon_sym___attribute] = ACTIONS(8147), + [anon_sym___attribute__] = ACTIONS(8147), + [anon_sym___declspec] = ACTIONS(8147), + [anon_sym___based] = ACTIONS(8147), + [anon_sym_LBRACE] = ACTIONS(8138), + [anon_sym_static] = ACTIONS(8147), + [anon_sym_auto] = ACTIONS(8147), + [anon_sym_register] = ACTIONS(8147), + [anon_sym_inline] = ACTIONS(8147), + [aux_sym_storage_class_specifier_token1] = ACTIONS(8147), + [anon_sym_const] = ACTIONS(8147), + [anon_sym_volatile] = ACTIONS(8147), + [anon_sym_restrict] = ACTIONS(8147), + [anon_sym__Atomic] = ACTIONS(8147), + [anon_sym_in] = ACTIONS(8147), + [anon_sym_out] = ACTIONS(8147), + [anon_sym_inout] = ACTIONS(8147), + [anon_sym_bycopy] = ACTIONS(8147), + [anon_sym_byref] = ACTIONS(8147), + [anon_sym_oneway] = ACTIONS(8147), + [anon_sym__Nullable] = ACTIONS(8147), + [anon_sym__Nonnull] = ACTIONS(8147), + [anon_sym__Nullable_result] = ACTIONS(8147), + [anon_sym__Null_unspecified] = ACTIONS(8147), + [anon_sym___autoreleasing] = ACTIONS(8147), + [anon_sym___nullable] = ACTIONS(8147), + [anon_sym___nonnull] = ACTIONS(8147), + [anon_sym___strong] = ACTIONS(8147), + [anon_sym___weak] = ACTIONS(8147), + [anon_sym___bridge] = ACTIONS(8147), + [anon_sym___bridge_transfer] = ACTIONS(8147), + [anon_sym___bridge_retained] = ACTIONS(8147), + [anon_sym___unsafe_unretained] = ACTIONS(8147), + [anon_sym___block] = ACTIONS(8147), + [anon_sym___kindof] = ACTIONS(8147), + [anon_sym___unused] = ACTIONS(8147), + [anon_sym__Complex] = ACTIONS(8147), + [anon_sym___complex] = ACTIONS(8147), + [anon_sym_IBOutlet] = ACTIONS(8147), + [anon_sym_IBInspectable] = ACTIONS(8147), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8147), + [anon_sym_COLON] = ACTIONS(8834), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(7893), - [sym_self] = ACTIONS(7891), - [sym_super] = ACTIONS(7891), - [sym_nil] = ACTIONS(7891), - [anon_sym_ATselector] = ACTIONS(7893), - [anon_sym_ATencode] = ACTIONS(7893), - [anon_sym_AT] = ACTIONS(7891), - [sym_YES] = ACTIONS(7891), - [sym_NO] = ACTIONS(7891), - [anon_sym___builtin_available] = ACTIONS(7891), - [anon_sym_ATavailable] = ACTIONS(7893), - [anon_sym_va_arg] = ACTIONS(7891), + [sym_method_attribute_specifier] = ACTIONS(8147), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8147), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8147), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8147), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8147), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8147), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8147), + [anon_sym_NS_AVAILABLE] = ACTIONS(8147), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8147), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_API_AVAILABLE] = ACTIONS(8147), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8147), + [anon_sym_API_DEPRECATED] = ACTIONS(8147), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8147), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8147), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8147), + [anon_sym___deprecated_msg] = ACTIONS(8147), + [anon_sym___deprecated_enum_msg] = ACTIONS(8147), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8147), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8147), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -550163,197 +546556,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3614] = { - [sym_enumerator_list] = STATE(3510), - [sym_identifier] = ACTIONS(8743), - [anon_sym_LPAREN2] = ACTIONS(8193), - [anon_sym_STAR] = ACTIONS(8193), - [anon_sym_SEMI] = ACTIONS(8193), - [anon_sym_extern] = ACTIONS(8195), - [anon_sym___attribute] = ACTIONS(8195), - [anon_sym___attribute__] = ACTIONS(8195), - [anon_sym___declspec] = ACTIONS(8195), - [anon_sym___based] = ACTIONS(8195), - [anon_sym_LBRACE] = ACTIONS(8181), - [anon_sym_static] = ACTIONS(8195), - [anon_sym_auto] = ACTIONS(8195), - [anon_sym_register] = ACTIONS(8195), - [anon_sym_inline] = ACTIONS(8195), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8195), - [anon_sym_const] = ACTIONS(8195), - [anon_sym_volatile] = ACTIONS(8195), - [anon_sym_restrict] = ACTIONS(8195), - [anon_sym__Atomic] = ACTIONS(8195), - [anon_sym_in] = ACTIONS(8195), - [anon_sym_out] = ACTIONS(8195), - [anon_sym_inout] = ACTIONS(8195), - [anon_sym_bycopy] = ACTIONS(8195), - [anon_sym_byref] = ACTIONS(8195), - [anon_sym_oneway] = ACTIONS(8195), - [anon_sym__Nullable] = ACTIONS(8195), - [anon_sym__Nonnull] = ACTIONS(8195), - [anon_sym__Nullable_result] = ACTIONS(8195), - [anon_sym__Null_unspecified] = ACTIONS(8195), - [anon_sym___autoreleasing] = ACTIONS(8195), - [anon_sym___nullable] = ACTIONS(8195), - [anon_sym___nonnull] = ACTIONS(8195), - [anon_sym___strong] = ACTIONS(8195), - [anon_sym___weak] = ACTIONS(8195), - [anon_sym___bridge] = ACTIONS(8195), - [anon_sym___bridge_transfer] = ACTIONS(8195), - [anon_sym___bridge_retained] = ACTIONS(8195), - [anon_sym___unsafe_unretained] = ACTIONS(8195), - [anon_sym___block] = ACTIONS(8195), - [anon_sym___kindof] = ACTIONS(8195), - [anon_sym___unused] = ACTIONS(8195), - [anon_sym__Complex] = ACTIONS(8195), - [anon_sym___complex] = ACTIONS(8195), - [anon_sym_IBOutlet] = ACTIONS(8195), - [anon_sym_IBInspectable] = ACTIONS(8195), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8195), - [anon_sym_COLON] = ACTIONS(8746), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8195), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8195), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8195), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8195), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8195), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8195), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8195), - [anon_sym_NS_AVAILABLE] = ACTIONS(8195), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8195), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8195), - [anon_sym_API_AVAILABLE] = ACTIONS(8195), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8195), - [anon_sym_API_DEPRECATED] = ACTIONS(8195), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8195), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8195), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8195), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8195), - [anon_sym___deprecated_msg] = ACTIONS(8195), - [anon_sym___deprecated_enum_msg] = ACTIONS(8195), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8195), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8195), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8195), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8195), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3615] = { - [sym__expression] = STATE(3030), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(8749), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3616] = { - [sym__expression] = STATE(4532), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(4374), + [sym_comma_expression] = STATE(5046), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -550363,35 +546597,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(8751), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3615] = { + [sym__expression] = STATE(4375), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(8837), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3616] = { + [sym__expression] = STATE(4515), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(8839), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -550403,78 +546796,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3617] = { - [sym_enumerator_list] = STATE(3522), - [sym_identifier] = ACTIONS(8240), - [anon_sym_LPAREN2] = ACTIONS(8242), - [anon_sym_STAR] = ACTIONS(8242), - [anon_sym_SEMI] = ACTIONS(8242), - [anon_sym_extern] = ACTIONS(8240), - [anon_sym___attribute] = ACTIONS(8240), - [anon_sym___attribute__] = ACTIONS(8240), - [anon_sym___declspec] = ACTIONS(8240), - [anon_sym___based] = ACTIONS(8240), - [anon_sym_LBRACE] = ACTIONS(8181), - [anon_sym_static] = ACTIONS(8240), - [anon_sym_auto] = ACTIONS(8240), - [anon_sym_register] = ACTIONS(8240), - [anon_sym_inline] = ACTIONS(8240), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8240), - [anon_sym_const] = ACTIONS(8240), - [anon_sym_volatile] = ACTIONS(8240), - [anon_sym_restrict] = ACTIONS(8240), - [anon_sym__Atomic] = ACTIONS(8240), - [anon_sym_in] = ACTIONS(8240), - [anon_sym_out] = ACTIONS(8240), - [anon_sym_inout] = ACTIONS(8240), - [anon_sym_bycopy] = ACTIONS(8240), - [anon_sym_byref] = ACTIONS(8240), - [anon_sym_oneway] = ACTIONS(8240), - [anon_sym__Nullable] = ACTIONS(8240), - [anon_sym__Nonnull] = ACTIONS(8240), - [anon_sym__Nullable_result] = ACTIONS(8240), - [anon_sym__Null_unspecified] = ACTIONS(8240), - [anon_sym___autoreleasing] = ACTIONS(8240), - [anon_sym___nullable] = ACTIONS(8240), - [anon_sym___nonnull] = ACTIONS(8240), - [anon_sym___strong] = ACTIONS(8240), - [anon_sym___weak] = ACTIONS(8240), - [anon_sym___bridge] = ACTIONS(8240), - [anon_sym___bridge_transfer] = ACTIONS(8240), - [anon_sym___bridge_retained] = ACTIONS(8240), - [anon_sym___unsafe_unretained] = ACTIONS(8240), - [anon_sym___block] = ACTIONS(8240), - [anon_sym___kindof] = ACTIONS(8240), - [anon_sym___unused] = ACTIONS(8240), - [anon_sym__Complex] = ACTIONS(8240), - [anon_sym___complex] = ACTIONS(8240), - [anon_sym_IBOutlet] = ACTIONS(8240), - [anon_sym_IBInspectable] = ACTIONS(8240), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8240), - [anon_sym_COLON] = ACTIONS(8753), + [sym__expression] = STATE(2978), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8730), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8240), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8240), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8240), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8240), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8240), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8240), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8240), - [anon_sym_NS_AVAILABLE] = ACTIONS(8240), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8240), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_API_AVAILABLE] = ACTIONS(8240), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8240), - [anon_sym_API_DEPRECATED] = ACTIONS(8240), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8240), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8240), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8240), - [anon_sym___deprecated_msg] = ACTIONS(8240), - [anon_sym___deprecated_enum_msg] = ACTIONS(8240), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8240), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8240), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -550483,37 +546875,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3618] = { - [sym__expression] = STATE(4511), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(4547), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -550523,35 +546915,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(8756), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -550563,37 +546954,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3619] = { - [sym__expression] = STATE(4507), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(3199), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -550603,35 +546994,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(8758), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -550643,78 +547033,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3620] = { - [sym__expression] = STATE(4509), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [sym__expression] = STATE(2958), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), + [anon_sym_CARET] = ACTIONS(8730), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(8760), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -550723,37 +547112,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3621] = { - [sym__expression] = STATE(4294), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(3200), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -550764,34 +547153,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(8762), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -550803,78 +547191,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3622] = { - [sym__expression] = STATE(3030), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), + [sym__expression] = STATE(2977), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), + [anon_sym_CARET] = ACTIONS(8730), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(8764), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -550883,38 +547270,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3623] = { - [sym__expression] = STATE(4494), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym__dictionary_key_value_pair] = STATE(5028), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(4549), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -550925,33 +547311,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -550963,37 +547349,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3624] = { - [sym__expression] = STATE(4510), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(3203), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -551004,34 +547390,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(8766), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -551043,117 +547428,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3625] = { - [sym_enumerator_list] = STATE(3522), - [sym_identifier] = ACTIONS(8240), - [anon_sym_LPAREN2] = ACTIONS(8242), - [anon_sym_STAR] = ACTIONS(8242), - [anon_sym_SEMI] = ACTIONS(8242), - [anon_sym_extern] = ACTIONS(8240), - [anon_sym___attribute] = ACTIONS(8240), - [anon_sym___attribute__] = ACTIONS(8240), - [anon_sym___declspec] = ACTIONS(8240), - [anon_sym___based] = ACTIONS(8240), - [anon_sym_LBRACE] = ACTIONS(8272), - [anon_sym_static] = ACTIONS(8240), - [anon_sym_auto] = ACTIONS(8240), - [anon_sym_register] = ACTIONS(8240), - [anon_sym_inline] = ACTIONS(8240), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8240), - [anon_sym_const] = ACTIONS(8240), - [anon_sym_volatile] = ACTIONS(8240), - [anon_sym_restrict] = ACTIONS(8240), - [anon_sym__Atomic] = ACTIONS(8240), - [anon_sym_in] = ACTIONS(8240), - [anon_sym_out] = ACTIONS(8240), - [anon_sym_inout] = ACTIONS(8240), - [anon_sym_bycopy] = ACTIONS(8240), - [anon_sym_byref] = ACTIONS(8240), - [anon_sym_oneway] = ACTIONS(8240), - [anon_sym__Nullable] = ACTIONS(8240), - [anon_sym__Nonnull] = ACTIONS(8240), - [anon_sym__Nullable_result] = ACTIONS(8240), - [anon_sym__Null_unspecified] = ACTIONS(8240), - [anon_sym___autoreleasing] = ACTIONS(8240), - [anon_sym___nullable] = ACTIONS(8240), - [anon_sym___nonnull] = ACTIONS(8240), - [anon_sym___strong] = ACTIONS(8240), - [anon_sym___weak] = ACTIONS(8240), - [anon_sym___bridge] = ACTIONS(8240), - [anon_sym___bridge_transfer] = ACTIONS(8240), - [anon_sym___bridge_retained] = ACTIONS(8240), - [anon_sym___unsafe_unretained] = ACTIONS(8240), - [anon_sym___block] = ACTIONS(8240), - [anon_sym___kindof] = ACTIONS(8240), - [anon_sym___unused] = ACTIONS(8240), - [anon_sym__Complex] = ACTIONS(8240), - [anon_sym___complex] = ACTIONS(8240), - [anon_sym_IBOutlet] = ACTIONS(8240), - [anon_sym_IBInspectable] = ACTIONS(8240), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8240), - [anon_sym_COLON] = ACTIONS(8768), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8240), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8240), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8240), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8240), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8240), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8240), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8240), - [anon_sym_NS_AVAILABLE] = ACTIONS(8240), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8240), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_API_AVAILABLE] = ACTIONS(8240), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8240), - [anon_sym_API_DEPRECATED] = ACTIONS(8240), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8240), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8240), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8240), - [anon_sym___deprecated_msg] = ACTIONS(8240), - [anon_sym___deprecated_enum_msg] = ACTIONS(8240), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8240), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8240), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3626] = { - [sym__expression] = STATE(4527), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(4530), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -551163,35 +547468,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(8771), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -551202,159 +547506,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3627] = { - [sym_enumerator_list] = STATE(3510), - [sym_identifier] = ACTIONS(8773), - [anon_sym_LPAREN2] = ACTIONS(8193), - [anon_sym_STAR] = ACTIONS(8193), - [anon_sym_SEMI] = ACTIONS(8193), - [anon_sym_extern] = ACTIONS(8195), - [anon_sym___attribute] = ACTIONS(8195), - [anon_sym___attribute__] = ACTIONS(8195), - [anon_sym___declspec] = ACTIONS(8195), - [anon_sym___based] = ACTIONS(8195), - [anon_sym_LBRACE] = ACTIONS(8197), - [anon_sym_static] = ACTIONS(8195), - [anon_sym_auto] = ACTIONS(8195), - [anon_sym_register] = ACTIONS(8195), - [anon_sym_inline] = ACTIONS(8195), - [aux_sym_storage_class_specifier_token1] = ACTIONS(8195), - [anon_sym_const] = ACTIONS(8195), - [anon_sym_volatile] = ACTIONS(8195), - [anon_sym_restrict] = ACTIONS(8195), - [anon_sym__Atomic] = ACTIONS(8195), - [anon_sym_in] = ACTIONS(8195), - [anon_sym_out] = ACTIONS(8195), - [anon_sym_inout] = ACTIONS(8195), - [anon_sym_bycopy] = ACTIONS(8195), - [anon_sym_byref] = ACTIONS(8195), - [anon_sym_oneway] = ACTIONS(8195), - [anon_sym__Nullable] = ACTIONS(8195), - [anon_sym__Nonnull] = ACTIONS(8195), - [anon_sym__Nullable_result] = ACTIONS(8195), - [anon_sym__Null_unspecified] = ACTIONS(8195), - [anon_sym___autoreleasing] = ACTIONS(8195), - [anon_sym___nullable] = ACTIONS(8195), - [anon_sym___nonnull] = ACTIONS(8195), - [anon_sym___strong] = ACTIONS(8195), - [anon_sym___weak] = ACTIONS(8195), - [anon_sym___bridge] = ACTIONS(8195), - [anon_sym___bridge_transfer] = ACTIONS(8195), - [anon_sym___bridge_retained] = ACTIONS(8195), - [anon_sym___unsafe_unretained] = ACTIONS(8195), - [anon_sym___block] = ACTIONS(8195), - [anon_sym___kindof] = ACTIONS(8195), - [anon_sym___unused] = ACTIONS(8195), - [anon_sym__Complex] = ACTIONS(8195), - [anon_sym___complex] = ACTIONS(8195), - [anon_sym_IBOutlet] = ACTIONS(8195), - [anon_sym_IBInspectable] = ACTIONS(8195), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8195), - [anon_sym_COLON] = ACTIONS(8776), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8195), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8195), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8195), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8195), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8195), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8195), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8195), - [anon_sym_NS_AVAILABLE] = ACTIONS(8195), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8195), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8195), - [anon_sym_API_AVAILABLE] = ACTIONS(8195), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8195), - [anon_sym_API_DEPRECATED] = ACTIONS(8195), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8195), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8195), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8195), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8195), - [anon_sym___deprecated_msg] = ACTIONS(8195), - [anon_sym___deprecated_enum_msg] = ACTIONS(8195), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8195), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8195), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8195), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8195), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3628] = { - [sym__expression] = STATE(3030), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), + [3626] = { + [sym__expression] = STATE(2966), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), + [anon_sym_CARET] = ACTIONS(8730), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(8779), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -551362,38 +547585,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3629] = { - [sym__expression] = STATE(4531), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [3627] = { + [sym__expression] = STATE(4513), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -551403,35 +547626,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(8781), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3628] = { + [sym__expression] = STATE(4537), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3629] = { + [sym__expression] = STATE(3215), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -551443,37 +547823,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3630] = { - [sym__expression] = STATE(4505), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(3204), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -551483,35 +547863,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(8783), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -551523,198 +547902,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3631] = { - [sym__expression] = STATE(3030), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(8785), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3632] = { - [sym__expression] = STATE(3030), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(8787), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3633] = { - [sym__expression] = STATE(4300), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym__variadic_arguments] = STATE(4955), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(4545), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -551725,33 +547943,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3632] = { + [sym__expression] = STATE(2974), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(8841), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8730), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3633] = { + [sym__expression] = STATE(3205), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -551763,37 +548139,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3634] = { - [sym__expression] = STATE(4294), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(3196), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -551804,34 +548180,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(8789), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -551843,117 +548218,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3635] = { - [sym_compound_statement] = STATE(3345), - [sym_type_qualifier] = STATE(3904), - [sym__type_specifier] = STATE(3988), - [sym_sized_type_specifier] = STATE(3988), - [sym_enum_specifier] = STATE(3988), - [sym_struct_specifier] = STATE(3988), - [sym_union_specifier] = STATE(3988), - [sym_parameter_list] = STATE(5216), - [sym_type_descriptor] = STATE(4873), - [sym_macro_type_specifier] = STATE(3988), - [sym_typeof_specifier] = STATE(3988), - [sym_atomic_specifier] = STATE(3988), - [sym_generic_type_specifier] = STATE(3988), - [aux_sym_type_definition_repeat1] = STATE(3833), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), - [anon_sym_RPAREN] = ACTIONS(8791), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_LBRACE] = ACTIONS(8795), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(8797), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(8799), - [anon_sym_enum] = ACTIONS(8801), - [anon_sym_NS_ENUM] = ACTIONS(8803), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(8803), - [anon_sym_NS_OPTIONS] = ACTIONS(8803), - [anon_sym_struct] = ACTIONS(8805), - [anon_sym_union] = ACTIONS(8807), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(8799), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(8799), - [sym_IMP] = ACTIONS(8799), - [sym_BOOL] = ACTIONS(8799), - [sym_auto] = ACTIONS(8799), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3636] = { - [sym__expression] = STATE(4508), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(3206), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -551963,35 +548258,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(8809), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3636] = { + [sym__expression] = STATE(3208), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -552003,78 +548376,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3637] = { - [sym__expression] = STATE(4399), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(8811), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [sym__expression] = STATE(2975), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), + [anon_sym_CARET] = ACTIONS(8730), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -552083,38 +548455,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3638] = { - [sym__expression] = STATE(4412), - [sym_comma_expression] = STATE(5209), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(4531), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -552125,33 +548496,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -552163,37 +548534,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3639] = { - [sym__expression] = STATE(4520), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(3209), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -552203,35 +548574,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(8813), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -552243,38 +548613,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3640] = { - [sym__expression] = STATE(4446), - [sym_comma_expression] = STATE(5331), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(3210), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -552285,33 +548654,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -552323,37 +548692,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3641] = { - [sym__expression] = STATE(4294), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(2976), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8730), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3642] = { + [sym__expression] = STATE(3255), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -552364,34 +548812,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(8815), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -552402,119 +548849,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3642] = { - [sym__expression] = STATE(3030), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(8817), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, [3643] = { - [sym__expression] = STATE(4432), - [sym_comma_expression] = STATE(5716), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(4539), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -552525,33 +548891,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -552563,38 +548929,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3644] = { - [sym__expression] = STATE(4298), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym__variadic_arguments] = STATE(4886), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(3230), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -552605,33 +548970,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -552643,197 +549008,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3645] = { - [sym__expression] = STATE(3030), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(8819), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3646] = { - [sym__expression] = STATE(3030), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(8821), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3647] = { - [sym__expression] = STATE(4294), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(3232), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -552844,34 +549049,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_RBRACK] = ACTIONS(8823), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3646] = { + [sym__expression] = STATE(2953), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8730), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3647] = { + [sym__expression] = STATE(4538), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -552883,40 +549245,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3648] = { - [sym__expression] = STATE(4517), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(2954), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(8730), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3649] = { + [sym__expression] = STATE(3233), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(8825), - [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_LPAREN2] = ACTIONS(8843), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(23), @@ -552925,33 +549365,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(8827), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(8829), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -552962,278 +549402,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3649] = { - [sym__expression] = STATE(3030), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(8831), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, [3650] = { - [sym__expression] = STATE(3030), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(8833), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3651] = { - [sym__expression] = STATE(3030), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(8835), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3652] = { - [sym__expression] = STATE(4518), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(4522), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -553244,34 +549444,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_COLON] = ACTIONS(8837), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3651] = { + [sym__expression] = STATE(4536), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3652] = { + [sym__expression] = STATE(4527), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -553283,119 +549640,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3653] = { - [sym__expression] = STATE(3030), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(8839), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3654] = { - [sym__expression] = STATE(4529), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(3226), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(8841), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -553405,33 +549681,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(8843), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(8845), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3654] = { + [sym__expression] = STATE(4525), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_CARET] = ACTIONS(27), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), + [sym_comment] = ACTIONS(3), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -553443,77 +549798,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3655] = { - [sym__expression] = STATE(3020), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), + [sym__expression] = STATE(2955), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), + [anon_sym_CARET] = ACTIONS(8730), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -553522,77 +549877,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3656] = { - [sym__expression] = STATE(3900), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [sym__expression] = STATE(2957), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), + [anon_sym_CARET] = ACTIONS(8730), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -553601,77 +549956,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3657] = { - [sym__expression] = STATE(3270), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [sym__expression] = STATE(2959), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), + [anon_sym_CARET] = ACTIONS(8730), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -553680,77 +550035,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3658] = { - [sym__expression] = STATE(3258), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [sym__expression] = STATE(2960), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), + [anon_sym_CARET] = ACTIONS(8730), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -553759,77 +550114,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3659] = { - [sym__expression] = STATE(3271), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [sym__expression] = STATE(2949), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), + [anon_sym_CARET] = ACTIONS(8730), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -553838,37 +550193,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3660] = { - [sym__expression] = STATE(4433), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(4317), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -553879,33 +550234,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -553917,37 +550272,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3661] = { - [sym__expression] = STATE(4506), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), + [sym__expression] = STATE(3860), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), [sym_identifier] = ACTIONS(129), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -553958,33 +550313,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), [anon_sym_ATprotocol] = ACTIONS(831), [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), [anon_sym_ATselector] = ACTIONS(141), [anon_sym_ATencode] = ACTIONS(143), [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), [anon_sym___builtin_available] = ACTIONS(147), [anon_sym_ATavailable] = ACTIONS(149), [anon_sym_va_arg] = ACTIONS(151), @@ -553996,77 +550351,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3662] = { - [sym__expression] = STATE(3016), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), + [sym__expression] = STATE(2964), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), + [anon_sym_CARET] = ACTIONS(8730), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -554075,77 +550430,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3663] = { - [sym__expression] = STATE(3018), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), + [sym__expression] = STATE(3225), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), + [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -554154,77 +550509,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3664] = { - [sym__expression] = STATE(3019), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), + [sym__expression] = STATE(4546), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), + [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -554233,77 +550588,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3665] = { - [sym__expression] = STATE(4495), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [sym__expression] = STATE(2951), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), + [anon_sym_CARET] = ACTIONS(8730), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -554312,77 +550667,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3666] = { - [sym__expression] = STATE(3300), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), + [sym__expression] = STATE(2950), + [sym_conditional_expression] = STATE(2997), + [sym_assignment_expression] = STATE(2997), + [sym_pointer_expression] = STATE(2995), + [sym_unary_expression] = STATE(2997), + [sym_binary_expression] = STATE(2997), + [sym_update_expression] = STATE(2997), + [sym_cast_expression] = STATE(2997), + [sym_sizeof_expression] = STATE(2997), + [sym_subscript_expression] = STATE(2995), + [sym_call_expression] = STATE(2995), + [sym_field_expression] = STATE(2995), + [sym_compound_literal_expression] = STATE(2997), + [sym_parenthesized_expression] = STATE(2995), + [sym_char_literal] = STATE(2997), + [sym_concatenated_string] = STATE(2997), + [sym_string_literal] = STATE(2712), + [sym_block_expression] = STATE(2997), + [sym_message_expression] = STATE(2997), + [sym_selector_expression] = STATE(2997), + [sym_protocol_expression] = STATE(2997), + [sym_encode_expression] = STATE(2997), + [sym_number_expression] = STATE(2997), + [sym_string_expression] = STATE(2997), + [sym_object_expression] = STATE(2997), + [sym_dictionary_expression] = STATE(2997), + [sym_array_expression] = STATE(2997), + [sym_boolean_expression] = STATE(2997), + [sym_available_expression] = STATE(2997), + [sym_statement_expression] = STATE(2997), + [sym_va_arg_expression] = STATE(2997), + [sym_identifier] = ACTIONS(2136), + [anon_sym_LPAREN2] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), + [anon_sym_CARET] = ACTIONS(8730), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_DASH_DASH] = ACTIONS(2156), + [anon_sym_PLUS_PLUS] = ACTIONS(2156), + [anon_sym_sizeof] = ACTIONS(2158), + [sym_number_literal] = ACTIONS(2160), + [anon_sym_L_SQUOTE] = ACTIONS(2162), + [anon_sym_u_SQUOTE] = ACTIONS(2162), + [anon_sym_U_SQUOTE] = ACTIONS(2162), + [anon_sym_u8_SQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_L_DQUOTE] = ACTIONS(2164), + [anon_sym_u_DQUOTE] = ACTIONS(2164), + [anon_sym_U_DQUOTE] = ACTIONS(2164), + [anon_sym_u8_DQUOTE] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [anon_sym_ATprotocol] = ACTIONS(2168), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2166), + [sym_nil] = ACTIONS(2166), + [anon_sym_ATselector] = ACTIONS(2170), + [anon_sym_ATencode] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2174), + [sym_YES] = ACTIONS(2166), + [sym_NO] = ACTIONS(2166), + [anon_sym___builtin_available] = ACTIONS(2176), + [anon_sym_ATavailable] = ACTIONS(2178), + [anon_sym_va_arg] = ACTIONS(2180), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -554391,77 +550746,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3667] = { - [sym__expression] = STATE(3021), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), + [sym__expression] = STATE(4455), + [sym_conditional_expression] = STATE(3280), + [sym_assignment_expression] = STATE(3280), + [sym_pointer_expression] = STATE(3013), + [sym_unary_expression] = STATE(3280), + [sym_binary_expression] = STATE(3280), + [sym_update_expression] = STATE(3280), + [sym_cast_expression] = STATE(3280), + [sym_sizeof_expression] = STATE(3280), + [sym_subscript_expression] = STATE(3013), + [sym_call_expression] = STATE(3013), + [sym_field_expression] = STATE(3013), + [sym_compound_literal_expression] = STATE(3280), + [sym_parenthesized_expression] = STATE(3013), + [sym_char_literal] = STATE(3280), + [sym_concatenated_string] = STATE(3280), + [sym_string_literal] = STATE(3055), + [sym_block_expression] = STATE(3280), + [sym_message_expression] = STATE(3280), + [sym_selector_expression] = STATE(3280), + [sym_protocol_expression] = STATE(3280), + [sym_encode_expression] = STATE(3280), + [sym_number_expression] = STATE(3280), + [sym_string_expression] = STATE(3280), + [sym_object_expression] = STATE(3280), + [sym_dictionary_expression] = STATE(3280), + [sym_array_expression] = STATE(3280), + [sym_boolean_expression] = STATE(3280), + [sym_available_expression] = STATE(3280), + [sym_statement_expression] = STATE(3280), + [sym_va_arg_expression] = STATE(3280), + [sym_identifier] = ACTIONS(129), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), + [anon_sym_CARET] = ACTIONS(27), [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(43), + [anon_sym_DASH_DASH] = ACTIONS(83), + [anon_sym_PLUS_PLUS] = ACTIONS(83), + [anon_sym_sizeof] = ACTIONS(85), + [sym_number_literal] = ACTIONS(87), + [anon_sym_L_SQUOTE] = ACTIONS(89), + [anon_sym_u_SQUOTE] = ACTIONS(89), + [anon_sym_U_SQUOTE] = ACTIONS(89), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_u_DQUOTE] = ACTIONS(91), + [anon_sym_U_DQUOTE] = ACTIONS(91), + [anon_sym_u8_DQUOTE] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), + [sym_null] = ACTIONS(93), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), + [anon_sym_ATprotocol] = ACTIONS(831), + [sym_self] = ACTIONS(129), + [sym_super] = ACTIONS(93), + [sym_nil] = ACTIONS(93), + [anon_sym_ATselector] = ACTIONS(141), + [anon_sym_ATencode] = ACTIONS(143), + [anon_sym_AT] = ACTIONS(145), + [sym_YES] = ACTIONS(93), + [sym_NO] = ACTIONS(93), + [anon_sym___builtin_available] = ACTIONS(147), + [anon_sym_ATavailable] = ACTIONS(149), + [anon_sym_va_arg] = ACTIONS(151), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -554470,77 +550825,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3668] = { - [sym__expression] = STATE(3022), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), + [sym_protocol_qualifiers] = STATE(3678), + [sym_generic_type_references] = STATE(3678), + [aux_sym_generic_type_specifier_repeat1] = STATE(3678), + [sym_identifier] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(8003), + [anon_sym_RPAREN] = ACTIONS(8003), + [anon_sym_LPAREN2] = ACTIONS(8845), + [anon_sym_STAR] = ACTIONS(8003), + [anon_sym_GT] = ACTIONS(8003), + [anon_sym_LT] = ACTIONS(8848), + [anon_sym___attribute] = ACTIONS(6813), + [anon_sym___attribute__] = ACTIONS(6813), + [anon_sym___based] = ACTIONS(6813), + [anon_sym_LBRACE] = ACTIONS(8003), + [anon_sym_LBRACK] = ACTIONS(8003), + [anon_sym_const] = ACTIONS(6813), + [anon_sym_volatile] = ACTIONS(6813), + [anon_sym_restrict] = ACTIONS(6813), + [anon_sym__Atomic] = ACTIONS(6813), + [anon_sym_in] = ACTIONS(6813), + [anon_sym_out] = ACTIONS(6813), + [anon_sym_inout] = ACTIONS(6813), + [anon_sym_bycopy] = ACTIONS(6813), + [anon_sym_byref] = ACTIONS(6813), + [anon_sym_oneway] = ACTIONS(6813), + [anon_sym__Nullable] = ACTIONS(6813), + [anon_sym__Nonnull] = ACTIONS(6813), + [anon_sym__Nullable_result] = ACTIONS(6813), + [anon_sym__Null_unspecified] = ACTIONS(6813), + [anon_sym___autoreleasing] = ACTIONS(6813), + [anon_sym___nullable] = ACTIONS(6813), + [anon_sym___nonnull] = ACTIONS(6813), + [anon_sym___strong] = ACTIONS(6813), + [anon_sym___weak] = ACTIONS(6813), + [anon_sym___bridge] = ACTIONS(6813), + [anon_sym___bridge_transfer] = ACTIONS(6813), + [anon_sym___bridge_retained] = ACTIONS(6813), + [anon_sym___unsafe_unretained] = ACTIONS(6813), + [anon_sym___block] = ACTIONS(6813), + [anon_sym___kindof] = ACTIONS(6813), + [anon_sym___unused] = ACTIONS(6813), + [anon_sym__Complex] = ACTIONS(6813), + [anon_sym___complex] = ACTIONS(6813), + [anon_sym_IBOutlet] = ACTIONS(6813), + [anon_sym_IBInspectable] = ACTIONS(6813), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6813), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), + [sym_method_attribute_specifier] = ACTIONS(6813), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6813), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6813), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE] = ACTIONS(6813), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6813), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_API_AVAILABLE] = ACTIONS(6813), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_API_DEPRECATED] = ACTIONS(6813), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6813), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6813), + [anon_sym___deprecated_msg] = ACTIONS(6813), + [anon_sym___deprecated_enum_msg] = ACTIONS(6813), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6813), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6813), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6813), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -554549,77 +550903,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3669] = { - [sym__expression] = STATE(3295), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [sym_protocol_qualifiers] = STATE(3677), + [sym_generic_type_references] = STATE(3677), + [aux_sym_generic_type_specifier_repeat1] = STATE(3677), + [sym_identifier] = ACTIONS(7997), + [anon_sym_COMMA] = ACTIONS(7999), + [anon_sym_RPAREN] = ACTIONS(7999), + [anon_sym_LPAREN2] = ACTIONS(7999), + [anon_sym_STAR] = ACTIONS(7999), + [anon_sym_GT] = ACTIONS(7999), + [anon_sym_LT] = ACTIONS(8848), + [anon_sym___attribute] = ACTIONS(7997), + [anon_sym___attribute__] = ACTIONS(7997), + [anon_sym___based] = ACTIONS(7997), + [anon_sym_LBRACE] = ACTIONS(7999), + [anon_sym_LBRACK] = ACTIONS(7999), + [anon_sym_const] = ACTIONS(7997), + [anon_sym_volatile] = ACTIONS(7997), + [anon_sym_restrict] = ACTIONS(7997), + [anon_sym__Atomic] = ACTIONS(7997), + [anon_sym_in] = ACTIONS(7997), + [anon_sym_out] = ACTIONS(7997), + [anon_sym_inout] = ACTIONS(7997), + [anon_sym_bycopy] = ACTIONS(7997), + [anon_sym_byref] = ACTIONS(7997), + [anon_sym_oneway] = ACTIONS(7997), + [anon_sym__Nullable] = ACTIONS(7997), + [anon_sym__Nonnull] = ACTIONS(7997), + [anon_sym__Nullable_result] = ACTIONS(7997), + [anon_sym__Null_unspecified] = ACTIONS(7997), + [anon_sym___autoreleasing] = ACTIONS(7997), + [anon_sym___nullable] = ACTIONS(7997), + [anon_sym___nonnull] = ACTIONS(7997), + [anon_sym___strong] = ACTIONS(7997), + [anon_sym___weak] = ACTIONS(7997), + [anon_sym___bridge] = ACTIONS(7997), + [anon_sym___bridge_transfer] = ACTIONS(7997), + [anon_sym___bridge_retained] = ACTIONS(7997), + [anon_sym___unsafe_unretained] = ACTIONS(7997), + [anon_sym___block] = ACTIONS(7997), + [anon_sym___kindof] = ACTIONS(7997), + [anon_sym___unused] = ACTIONS(7997), + [anon_sym__Complex] = ACTIONS(7997), + [anon_sym___complex] = ACTIONS(7997), + [anon_sym_IBOutlet] = ACTIONS(7997), + [anon_sym_IBInspectable] = ACTIONS(7997), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7997), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [sym_method_attribute_specifier] = ACTIONS(7997), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7997), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7997), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7997), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7997), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7997), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7997), + [anon_sym_NS_AVAILABLE] = ACTIONS(7997), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7997), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7997), + [anon_sym_API_AVAILABLE] = ACTIONS(7997), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7997), + [anon_sym_API_DEPRECATED] = ACTIONS(7997), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7997), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7997), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7997), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7997), + [anon_sym___deprecated_msg] = ACTIONS(7997), + [anon_sym___deprecated_enum_msg] = ACTIONS(7997), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7997), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7997), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7997), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7997), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -554628,77 +550981,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3670] = { - [sym__expression] = STATE(4502), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [sym_attribute_specifier] = STATE(4178), + [sym_compound_statement] = STATE(1198), + [sym_type_qualifier] = STATE(5392), + [sym_parameter_list] = STATE(3759), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3826), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_SEMI] = ACTIONS(8852), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(8856), + [anon_sym_EQ] = ACTIONS(8858), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -554707,77 +551059,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3671] = { - [sym__expression] = STATE(3269), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [sym_attribute_specifier] = STATE(4122), + [sym_compound_statement] = STATE(488), + [sym_type_qualifier] = STATE(5704), + [sym_parameter_list] = STATE(3759), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3845), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_SEMI] = ACTIONS(8870), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_LBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(8856), + [anon_sym_EQ] = ACTIONS(8858), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -554786,77 +551137,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3672] = { - [sym__expression] = STATE(3296), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [sym_attribute_specifier] = STATE(4151), + [sym_compound_statement] = STATE(2989), + [sym_type_qualifier] = STATE(5617), + [sym_parameter_list] = STATE(3759), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3844), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_SEMI] = ACTIONS(8872), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_LBRACE] = ACTIONS(8874), + [anon_sym_LBRACK] = ACTIONS(8856), + [anon_sym_EQ] = ACTIONS(8858), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -554865,77 +551215,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3673] = { - [sym__expression] = STATE(3023), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), + [sym_field_declaration_list] = STATE(3820), + [sym_superclass_reference] = STATE(3756), + [sym_identifier] = ACTIONS(8023), + [anon_sym_COMMA] = ACTIONS(8025), + [anon_sym_RPAREN] = ACTIONS(8025), + [anon_sym_LPAREN2] = ACTIONS(8025), + [anon_sym_STAR] = ACTIONS(8025), + [anon_sym_GT] = ACTIONS(8025), + [anon_sym___attribute] = ACTIONS(8023), + [anon_sym___attribute__] = ACTIONS(8023), + [anon_sym___based] = ACTIONS(8023), + [anon_sym_LBRACE] = ACTIONS(8876), + [anon_sym_LBRACK] = ACTIONS(8025), + [anon_sym_const] = ACTIONS(8023), + [anon_sym_volatile] = ACTIONS(8023), + [anon_sym_restrict] = ACTIONS(8023), + [anon_sym__Atomic] = ACTIONS(8023), + [anon_sym_in] = ACTIONS(8023), + [anon_sym_out] = ACTIONS(8023), + [anon_sym_inout] = ACTIONS(8023), + [anon_sym_bycopy] = ACTIONS(8023), + [anon_sym_byref] = ACTIONS(8023), + [anon_sym_oneway] = ACTIONS(8023), + [anon_sym__Nullable] = ACTIONS(8023), + [anon_sym__Nonnull] = ACTIONS(8023), + [anon_sym__Nullable_result] = ACTIONS(8023), + [anon_sym__Null_unspecified] = ACTIONS(8023), + [anon_sym___autoreleasing] = ACTIONS(8023), + [anon_sym___nullable] = ACTIONS(8023), + [anon_sym___nonnull] = ACTIONS(8023), + [anon_sym___strong] = ACTIONS(8023), + [anon_sym___weak] = ACTIONS(8023), + [anon_sym___bridge] = ACTIONS(8023), + [anon_sym___bridge_transfer] = ACTIONS(8023), + [anon_sym___bridge_retained] = ACTIONS(8023), + [anon_sym___unsafe_unretained] = ACTIONS(8023), + [anon_sym___block] = ACTIONS(8023), + [anon_sym___kindof] = ACTIONS(8023), + [anon_sym___unused] = ACTIONS(8023), + [anon_sym__Complex] = ACTIONS(8023), + [anon_sym___complex] = ACTIONS(8023), + [anon_sym_IBOutlet] = ACTIONS(8023), + [anon_sym_IBInspectable] = ACTIONS(8023), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8023), + [anon_sym_COLON] = ACTIONS(8879), + [anon_sym_ATdefs] = ACTIONS(8881), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), + [sym_method_attribute_specifier] = ACTIONS(8023), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8023), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8023), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8023), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8023), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8023), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8023), + [anon_sym_NS_AVAILABLE] = ACTIONS(8023), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8023), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_API_AVAILABLE] = ACTIONS(8023), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8023), + [anon_sym_API_DEPRECATED] = ACTIONS(8023), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8023), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8023), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8023), + [anon_sym___deprecated_msg] = ACTIONS(8023), + [anon_sym___deprecated_enum_msg] = ACTIONS(8023), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8023), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8023), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -554944,77 +551293,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3674] = { - [sym__expression] = STATE(4513), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [sym_field_declaration_list] = STATE(3814), + [sym_superclass_reference] = STATE(3772), + [sym_identifier] = ACTIONS(8033), + [anon_sym_COMMA] = ACTIONS(8035), + [anon_sym_RPAREN] = ACTIONS(8035), + [anon_sym_LPAREN2] = ACTIONS(8035), + [anon_sym_STAR] = ACTIONS(8035), + [anon_sym_GT] = ACTIONS(8035), + [anon_sym___attribute] = ACTIONS(8033), + [anon_sym___attribute__] = ACTIONS(8033), + [anon_sym___based] = ACTIONS(8033), + [anon_sym_LBRACE] = ACTIONS(8883), + [anon_sym_LBRACK] = ACTIONS(8035), + [anon_sym_const] = ACTIONS(8033), + [anon_sym_volatile] = ACTIONS(8033), + [anon_sym_restrict] = ACTIONS(8033), + [anon_sym__Atomic] = ACTIONS(8033), + [anon_sym_in] = ACTIONS(8033), + [anon_sym_out] = ACTIONS(8033), + [anon_sym_inout] = ACTIONS(8033), + [anon_sym_bycopy] = ACTIONS(8033), + [anon_sym_byref] = ACTIONS(8033), + [anon_sym_oneway] = ACTIONS(8033), + [anon_sym__Nullable] = ACTIONS(8033), + [anon_sym__Nonnull] = ACTIONS(8033), + [anon_sym__Nullable_result] = ACTIONS(8033), + [anon_sym__Null_unspecified] = ACTIONS(8033), + [anon_sym___autoreleasing] = ACTIONS(8033), + [anon_sym___nullable] = ACTIONS(8033), + [anon_sym___nonnull] = ACTIONS(8033), + [anon_sym___strong] = ACTIONS(8033), + [anon_sym___weak] = ACTIONS(8033), + [anon_sym___bridge] = ACTIONS(8033), + [anon_sym___bridge_transfer] = ACTIONS(8033), + [anon_sym___bridge_retained] = ACTIONS(8033), + [anon_sym___unsafe_unretained] = ACTIONS(8033), + [anon_sym___block] = ACTIONS(8033), + [anon_sym___kindof] = ACTIONS(8033), + [anon_sym___unused] = ACTIONS(8033), + [anon_sym__Complex] = ACTIONS(8033), + [anon_sym___complex] = ACTIONS(8033), + [anon_sym_IBOutlet] = ACTIONS(8033), + [anon_sym_IBInspectable] = ACTIONS(8033), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8033), + [anon_sym_COLON] = ACTIONS(8879), + [anon_sym_ATdefs] = ACTIONS(8886), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [sym_method_attribute_specifier] = ACTIONS(8033), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8033), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8033), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8033), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8033), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8033), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8033), + [anon_sym_NS_AVAILABLE] = ACTIONS(8033), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8033), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_API_AVAILABLE] = ACTIONS(8033), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8033), + [anon_sym_API_DEPRECATED] = ACTIONS(8033), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8033), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8033), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8033), + [anon_sym___deprecated_msg] = ACTIONS(8033), + [anon_sym___deprecated_enum_msg] = ACTIONS(8033), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8033), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8033), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -555023,77 +551371,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3675] = { - [sym__expression] = STATE(3287), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [sym_field_declaration_list] = STATE(3820), + [sym_superclass_reference] = STATE(3753), + [sym_identifier] = ACTIONS(8023), + [anon_sym_COMMA] = ACTIONS(8025), + [anon_sym_RPAREN] = ACTIONS(8025), + [anon_sym_LPAREN2] = ACTIONS(8025), + [anon_sym_STAR] = ACTIONS(8025), + [anon_sym_GT] = ACTIONS(8025), + [anon_sym___attribute] = ACTIONS(8023), + [anon_sym___attribute__] = ACTIONS(8023), + [anon_sym___based] = ACTIONS(8023), + [anon_sym_LBRACE] = ACTIONS(8888), + [anon_sym_LBRACK] = ACTIONS(8025), + [anon_sym_const] = ACTIONS(8023), + [anon_sym_volatile] = ACTIONS(8023), + [anon_sym_restrict] = ACTIONS(8023), + [anon_sym__Atomic] = ACTIONS(8023), + [anon_sym_in] = ACTIONS(8023), + [anon_sym_out] = ACTIONS(8023), + [anon_sym_inout] = ACTIONS(8023), + [anon_sym_bycopy] = ACTIONS(8023), + [anon_sym_byref] = ACTIONS(8023), + [anon_sym_oneway] = ACTIONS(8023), + [anon_sym__Nullable] = ACTIONS(8023), + [anon_sym__Nonnull] = ACTIONS(8023), + [anon_sym__Nullable_result] = ACTIONS(8023), + [anon_sym__Null_unspecified] = ACTIONS(8023), + [anon_sym___autoreleasing] = ACTIONS(8023), + [anon_sym___nullable] = ACTIONS(8023), + [anon_sym___nonnull] = ACTIONS(8023), + [anon_sym___strong] = ACTIONS(8023), + [anon_sym___weak] = ACTIONS(8023), + [anon_sym___bridge] = ACTIONS(8023), + [anon_sym___bridge_transfer] = ACTIONS(8023), + [anon_sym___bridge_retained] = ACTIONS(8023), + [anon_sym___unsafe_unretained] = ACTIONS(8023), + [anon_sym___block] = ACTIONS(8023), + [anon_sym___kindof] = ACTIONS(8023), + [anon_sym___unused] = ACTIONS(8023), + [anon_sym__Complex] = ACTIONS(8023), + [anon_sym___complex] = ACTIONS(8023), + [anon_sym_IBOutlet] = ACTIONS(8023), + [anon_sym_IBInspectable] = ACTIONS(8023), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8023), + [anon_sym_COLON] = ACTIONS(8879), + [anon_sym_ATdefs] = ACTIONS(8881), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [sym_method_attribute_specifier] = ACTIONS(8023), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8023), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8023), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8023), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8023), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8023), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8023), + [anon_sym_NS_AVAILABLE] = ACTIONS(8023), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8023), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_API_AVAILABLE] = ACTIONS(8023), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8023), + [anon_sym_API_DEPRECATED] = ACTIONS(8023), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8023), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8023), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8023), + [anon_sym___deprecated_msg] = ACTIONS(8023), + [anon_sym___deprecated_enum_msg] = ACTIONS(8023), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8023), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8023), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8023), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -555102,77 +551449,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3676] = { - [sym__expression] = STATE(3298), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [sym_attribute_specifier] = STATE(4237), + [sym_compound_statement] = STATE(1352), + [sym_type_qualifier] = STATE(5275), + [sym_parameter_list] = STATE(3759), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3830), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_SEMI] = ACTIONS(8890), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(8856), + [anon_sym_EQ] = ACTIONS(8858), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -555181,77 +551527,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3677] = { - [sym__expression] = STATE(3299), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [sym_protocol_qualifiers] = STATE(3679), + [sym_generic_type_references] = STATE(3679), + [aux_sym_generic_type_specifier_repeat1] = STATE(3679), + [sym_identifier] = ACTIONS(8015), + [anon_sym_COMMA] = ACTIONS(8017), + [anon_sym_RPAREN] = ACTIONS(8017), + [anon_sym_LPAREN2] = ACTIONS(8017), + [anon_sym_STAR] = ACTIONS(8017), + [anon_sym_GT] = ACTIONS(8017), + [anon_sym_LT] = ACTIONS(8848), + [anon_sym___attribute] = ACTIONS(8015), + [anon_sym___attribute__] = ACTIONS(8015), + [anon_sym___based] = ACTIONS(8015), + [anon_sym_LBRACE] = ACTIONS(8017), + [anon_sym_LBRACK] = ACTIONS(8017), + [anon_sym_const] = ACTIONS(8015), + [anon_sym_volatile] = ACTIONS(8015), + [anon_sym_restrict] = ACTIONS(8015), + [anon_sym__Atomic] = ACTIONS(8015), + [anon_sym_in] = ACTIONS(8015), + [anon_sym_out] = ACTIONS(8015), + [anon_sym_inout] = ACTIONS(8015), + [anon_sym_bycopy] = ACTIONS(8015), + [anon_sym_byref] = ACTIONS(8015), + [anon_sym_oneway] = ACTIONS(8015), + [anon_sym__Nullable] = ACTIONS(8015), + [anon_sym__Nonnull] = ACTIONS(8015), + [anon_sym__Nullable_result] = ACTIONS(8015), + [anon_sym__Null_unspecified] = ACTIONS(8015), + [anon_sym___autoreleasing] = ACTIONS(8015), + [anon_sym___nullable] = ACTIONS(8015), + [anon_sym___nonnull] = ACTIONS(8015), + [anon_sym___strong] = ACTIONS(8015), + [anon_sym___weak] = ACTIONS(8015), + [anon_sym___bridge] = ACTIONS(8015), + [anon_sym___bridge_transfer] = ACTIONS(8015), + [anon_sym___bridge_retained] = ACTIONS(8015), + [anon_sym___unsafe_unretained] = ACTIONS(8015), + [anon_sym___block] = ACTIONS(8015), + [anon_sym___kindof] = ACTIONS(8015), + [anon_sym___unused] = ACTIONS(8015), + [anon_sym__Complex] = ACTIONS(8015), + [anon_sym___complex] = ACTIONS(8015), + [anon_sym_IBOutlet] = ACTIONS(8015), + [anon_sym_IBInspectable] = ACTIONS(8015), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8015), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [sym_method_attribute_specifier] = ACTIONS(8015), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8015), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8015), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8015), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8015), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8015), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8015), + [anon_sym_NS_AVAILABLE] = ACTIONS(8015), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8015), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8015), + [anon_sym_API_AVAILABLE] = ACTIONS(8015), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8015), + [anon_sym_API_DEPRECATED] = ACTIONS(8015), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8015), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8015), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8015), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8015), + [anon_sym___deprecated_msg] = ACTIONS(8015), + [anon_sym___deprecated_enum_msg] = ACTIONS(8015), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8015), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8015), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8015), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8015), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -555260,77 +551605,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3678] = { - [sym__expression] = STATE(3024), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), + [sym_protocol_qualifiers] = STATE(3679), + [sym_generic_type_references] = STATE(3679), + [aux_sym_generic_type_specifier_repeat1] = STATE(3679), + [sym_identifier] = ACTIONS(8019), + [anon_sym_COMMA] = ACTIONS(8021), + [anon_sym_RPAREN] = ACTIONS(8021), + [anon_sym_LPAREN2] = ACTIONS(8021), + [anon_sym_STAR] = ACTIONS(8021), + [anon_sym_GT] = ACTIONS(8021), + [anon_sym_LT] = ACTIONS(8848), + [anon_sym___attribute] = ACTIONS(8019), + [anon_sym___attribute__] = ACTIONS(8019), + [anon_sym___based] = ACTIONS(8019), + [anon_sym_LBRACE] = ACTIONS(8021), + [anon_sym_LBRACK] = ACTIONS(8021), + [anon_sym_const] = ACTIONS(8019), + [anon_sym_volatile] = ACTIONS(8019), + [anon_sym_restrict] = ACTIONS(8019), + [anon_sym__Atomic] = ACTIONS(8019), + [anon_sym_in] = ACTIONS(8019), + [anon_sym_out] = ACTIONS(8019), + [anon_sym_inout] = ACTIONS(8019), + [anon_sym_bycopy] = ACTIONS(8019), + [anon_sym_byref] = ACTIONS(8019), + [anon_sym_oneway] = ACTIONS(8019), + [anon_sym__Nullable] = ACTIONS(8019), + [anon_sym__Nonnull] = ACTIONS(8019), + [anon_sym__Nullable_result] = ACTIONS(8019), + [anon_sym__Null_unspecified] = ACTIONS(8019), + [anon_sym___autoreleasing] = ACTIONS(8019), + [anon_sym___nullable] = ACTIONS(8019), + [anon_sym___nonnull] = ACTIONS(8019), + [anon_sym___strong] = ACTIONS(8019), + [anon_sym___weak] = ACTIONS(8019), + [anon_sym___bridge] = ACTIONS(8019), + [anon_sym___bridge_transfer] = ACTIONS(8019), + [anon_sym___bridge_retained] = ACTIONS(8019), + [anon_sym___unsafe_unretained] = ACTIONS(8019), + [anon_sym___block] = ACTIONS(8019), + [anon_sym___kindof] = ACTIONS(8019), + [anon_sym___unused] = ACTIONS(8019), + [anon_sym__Complex] = ACTIONS(8019), + [anon_sym___complex] = ACTIONS(8019), + [anon_sym_IBOutlet] = ACTIONS(8019), + [anon_sym_IBInspectable] = ACTIONS(8019), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8019), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), + [sym_method_attribute_specifier] = ACTIONS(8019), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8019), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8019), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8019), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8019), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8019), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8019), + [anon_sym_NS_AVAILABLE] = ACTIONS(8019), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8019), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8019), + [anon_sym_API_AVAILABLE] = ACTIONS(8019), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8019), + [anon_sym_API_DEPRECATED] = ACTIONS(8019), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8019), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8019), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8019), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8019), + [anon_sym___deprecated_msg] = ACTIONS(8019), + [anon_sym___deprecated_enum_msg] = ACTIONS(8019), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8019), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8019), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8019), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8019), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -555339,77 +551683,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3679] = { - [sym_field_declaration_list] = STATE(3791), - [sym_superclass_reference] = STATE(3731), - [sym_identifier] = ACTIONS(8099), - [anon_sym_COMMA] = ACTIONS(8101), - [anon_sym_RPAREN] = ACTIONS(8101), - [anon_sym_LPAREN2] = ACTIONS(8101), - [anon_sym_STAR] = ACTIONS(8101), - [anon_sym_GT] = ACTIONS(8101), - [anon_sym_SEMI] = ACTIONS(8101), - [anon_sym___attribute] = ACTIONS(8099), - [anon_sym___attribute__] = ACTIONS(8099), - [anon_sym___based] = ACTIONS(8099), - [anon_sym_LBRACE] = ACTIONS(8847), - [anon_sym_LBRACK] = ACTIONS(8101), - [anon_sym_const] = ACTIONS(8099), - [anon_sym_volatile] = ACTIONS(8099), - [anon_sym_restrict] = ACTIONS(8099), - [anon_sym__Atomic] = ACTIONS(8099), - [anon_sym_in] = ACTIONS(8099), - [anon_sym_out] = ACTIONS(8099), - [anon_sym_inout] = ACTIONS(8099), - [anon_sym_bycopy] = ACTIONS(8099), - [anon_sym_byref] = ACTIONS(8099), - [anon_sym_oneway] = ACTIONS(8099), - [anon_sym__Nullable] = ACTIONS(8099), - [anon_sym__Nonnull] = ACTIONS(8099), - [anon_sym__Nullable_result] = ACTIONS(8099), - [anon_sym__Null_unspecified] = ACTIONS(8099), - [anon_sym___autoreleasing] = ACTIONS(8099), - [anon_sym___nullable] = ACTIONS(8099), - [anon_sym___nonnull] = ACTIONS(8099), - [anon_sym___strong] = ACTIONS(8099), - [anon_sym___weak] = ACTIONS(8099), - [anon_sym___bridge] = ACTIONS(8099), - [anon_sym___bridge_transfer] = ACTIONS(8099), - [anon_sym___bridge_retained] = ACTIONS(8099), - [anon_sym___unsafe_unretained] = ACTIONS(8099), - [anon_sym___block] = ACTIONS(8099), - [anon_sym___kindof] = ACTIONS(8099), - [anon_sym___unused] = ACTIONS(8099), - [anon_sym__Complex] = ACTIONS(8099), - [anon_sym___complex] = ACTIONS(8099), - [anon_sym_IBOutlet] = ACTIONS(8099), - [anon_sym_IBInspectable] = ACTIONS(8099), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8099), - [anon_sym_COLON] = ACTIONS(8849), - [anon_sym_ATdefs] = ACTIONS(8851), + [sym_protocol_qualifiers] = STATE(3679), + [sym_generic_type_references] = STATE(3679), + [aux_sym_generic_type_specifier_repeat1] = STATE(3679), + [sym_identifier] = ACTIONS(8008), + [anon_sym_COMMA] = ACTIONS(8010), + [anon_sym_RPAREN] = ACTIONS(8010), + [anon_sym_LPAREN2] = ACTIONS(8010), + [anon_sym_STAR] = ACTIONS(8010), + [anon_sym_GT] = ACTIONS(8010), + [anon_sym_LT] = ACTIONS(8892), + [anon_sym___attribute] = ACTIONS(8008), + [anon_sym___attribute__] = ACTIONS(8008), + [anon_sym___based] = ACTIONS(8008), + [anon_sym_LBRACE] = ACTIONS(8010), + [anon_sym_LBRACK] = ACTIONS(8010), + [anon_sym_const] = ACTIONS(8008), + [anon_sym_volatile] = ACTIONS(8008), + [anon_sym_restrict] = ACTIONS(8008), + [anon_sym__Atomic] = ACTIONS(8008), + [anon_sym_in] = ACTIONS(8008), + [anon_sym_out] = ACTIONS(8008), + [anon_sym_inout] = ACTIONS(8008), + [anon_sym_bycopy] = ACTIONS(8008), + [anon_sym_byref] = ACTIONS(8008), + [anon_sym_oneway] = ACTIONS(8008), + [anon_sym__Nullable] = ACTIONS(8008), + [anon_sym__Nonnull] = ACTIONS(8008), + [anon_sym__Nullable_result] = ACTIONS(8008), + [anon_sym__Null_unspecified] = ACTIONS(8008), + [anon_sym___autoreleasing] = ACTIONS(8008), + [anon_sym___nullable] = ACTIONS(8008), + [anon_sym___nonnull] = ACTIONS(8008), + [anon_sym___strong] = ACTIONS(8008), + [anon_sym___weak] = ACTIONS(8008), + [anon_sym___bridge] = ACTIONS(8008), + [anon_sym___bridge_transfer] = ACTIONS(8008), + [anon_sym___bridge_retained] = ACTIONS(8008), + [anon_sym___unsafe_unretained] = ACTIONS(8008), + [anon_sym___block] = ACTIONS(8008), + [anon_sym___kindof] = ACTIONS(8008), + [anon_sym___unused] = ACTIONS(8008), + [anon_sym__Complex] = ACTIONS(8008), + [anon_sym___complex] = ACTIONS(8008), + [anon_sym_IBOutlet] = ACTIONS(8008), + [anon_sym_IBInspectable] = ACTIONS(8008), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8008), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8099), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8099), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8099), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8099), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8099), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8099), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8099), - [anon_sym_NS_AVAILABLE] = ACTIONS(8099), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8099), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_API_AVAILABLE] = ACTIONS(8099), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8099), - [anon_sym_API_DEPRECATED] = ACTIONS(8099), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8099), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8099), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8099), - [anon_sym___deprecated_msg] = ACTIONS(8099), - [anon_sym___deprecated_enum_msg] = ACTIONS(8099), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8099), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8099), + [sym_method_attribute_specifier] = ACTIONS(8008), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8008), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8008), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8008), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8008), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8008), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8008), + [anon_sym_NS_AVAILABLE] = ACTIONS(8008), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8008), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8008), + [anon_sym_API_AVAILABLE] = ACTIONS(8008), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8008), + [anon_sym_API_DEPRECATED] = ACTIONS(8008), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8008), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8008), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8008), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8008), + [anon_sym___deprecated_msg] = ACTIONS(8008), + [anon_sym___deprecated_enum_msg] = ACTIONS(8008), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8008), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8008), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8008), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8008), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -555418,77 +551761,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3680] = { - [sym__expression] = STATE(4504), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [sym_field_declaration_list] = STATE(3814), + [sym_superclass_reference] = STATE(3739), + [sym_identifier] = ACTIONS(8033), + [anon_sym_COMMA] = ACTIONS(8035), + [anon_sym_RPAREN] = ACTIONS(8035), + [anon_sym_LPAREN2] = ACTIONS(8035), + [anon_sym_STAR] = ACTIONS(8035), + [anon_sym_GT] = ACTIONS(8035), + [anon_sym___attribute] = ACTIONS(8033), + [anon_sym___attribute__] = ACTIONS(8033), + [anon_sym___based] = ACTIONS(8033), + [anon_sym_LBRACE] = ACTIONS(8888), + [anon_sym_LBRACK] = ACTIONS(8035), + [anon_sym_const] = ACTIONS(8033), + [anon_sym_volatile] = ACTIONS(8033), + [anon_sym_restrict] = ACTIONS(8033), + [anon_sym__Atomic] = ACTIONS(8033), + [anon_sym_in] = ACTIONS(8033), + [anon_sym_out] = ACTIONS(8033), + [anon_sym_inout] = ACTIONS(8033), + [anon_sym_bycopy] = ACTIONS(8033), + [anon_sym_byref] = ACTIONS(8033), + [anon_sym_oneway] = ACTIONS(8033), + [anon_sym__Nullable] = ACTIONS(8033), + [anon_sym__Nonnull] = ACTIONS(8033), + [anon_sym__Nullable_result] = ACTIONS(8033), + [anon_sym__Null_unspecified] = ACTIONS(8033), + [anon_sym___autoreleasing] = ACTIONS(8033), + [anon_sym___nullable] = ACTIONS(8033), + [anon_sym___nonnull] = ACTIONS(8033), + [anon_sym___strong] = ACTIONS(8033), + [anon_sym___weak] = ACTIONS(8033), + [anon_sym___bridge] = ACTIONS(8033), + [anon_sym___bridge_transfer] = ACTIONS(8033), + [anon_sym___bridge_retained] = ACTIONS(8033), + [anon_sym___unsafe_unretained] = ACTIONS(8033), + [anon_sym___block] = ACTIONS(8033), + [anon_sym___kindof] = ACTIONS(8033), + [anon_sym___unused] = ACTIONS(8033), + [anon_sym__Complex] = ACTIONS(8033), + [anon_sym___complex] = ACTIONS(8033), + [anon_sym_IBOutlet] = ACTIONS(8033), + [anon_sym_IBInspectable] = ACTIONS(8033), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8033), + [anon_sym_COLON] = ACTIONS(8879), + [anon_sym_ATdefs] = ACTIONS(8886), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [sym_method_attribute_specifier] = ACTIONS(8033), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8033), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8033), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8033), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8033), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8033), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8033), + [anon_sym_NS_AVAILABLE] = ACTIONS(8033), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8033), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_API_AVAILABLE] = ACTIONS(8033), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8033), + [anon_sym_API_DEPRECATED] = ACTIONS(8033), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8033), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8033), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8033), + [anon_sym___deprecated_msg] = ACTIONS(8033), + [anon_sym___deprecated_enum_msg] = ACTIONS(8033), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8033), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8033), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8033), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -555497,77 +551839,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3681] = { - [sym__expression] = STATE(3301), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [sym_attribute_specifier] = STATE(3865), + [sym_type_qualifier] = STATE(5392), + [sym_parameter_list] = STATE(3759), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3826), + [aux_sym_function_declarator_repeat1] = STATE(4344), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_SEMI] = ACTIONS(8852), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_LBRACK] = ACTIONS(8856), + [anon_sym_EQ] = ACTIONS(8858), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(8895), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -555576,77 +551916,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3682] = { - [sym__expression] = STATE(3025), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), + [sym_identifier] = ACTIONS(8897), + [anon_sym_COMMA] = ACTIONS(8899), + [anon_sym_RPAREN] = ACTIONS(8899), + [anon_sym_LPAREN2] = ACTIONS(8899), + [anon_sym_GT] = ACTIONS(8899), + [anon_sym_SEMI] = ACTIONS(8899), + [anon_sym___attribute] = ACTIONS(8897), + [anon_sym___attribute__] = ACTIONS(8897), + [anon_sym_LBRACE] = ACTIONS(8899), + [anon_sym_LBRACK] = ACTIONS(8899), + [anon_sym_EQ] = ACTIONS(8899), + [anon_sym_const] = ACTIONS(8897), + [anon_sym_volatile] = ACTIONS(8897), + [anon_sym_restrict] = ACTIONS(8897), + [anon_sym__Atomic] = ACTIONS(8897), + [anon_sym_in] = ACTIONS(8897), + [anon_sym_out] = ACTIONS(8897), + [anon_sym_inout] = ACTIONS(8897), + [anon_sym_bycopy] = ACTIONS(8897), + [anon_sym_byref] = ACTIONS(8897), + [anon_sym_oneway] = ACTIONS(8897), + [anon_sym__Nullable] = ACTIONS(8897), + [anon_sym__Nonnull] = ACTIONS(8897), + [anon_sym__Nullable_result] = ACTIONS(8897), + [anon_sym__Null_unspecified] = ACTIONS(8897), + [anon_sym___autoreleasing] = ACTIONS(8897), + [anon_sym___nullable] = ACTIONS(8897), + [anon_sym___nonnull] = ACTIONS(8897), + [anon_sym___strong] = ACTIONS(8897), + [anon_sym___weak] = ACTIONS(8897), + [anon_sym___bridge] = ACTIONS(8897), + [anon_sym___bridge_transfer] = ACTIONS(8897), + [anon_sym___bridge_retained] = ACTIONS(8897), + [anon_sym___unsafe_unretained] = ACTIONS(8897), + [anon_sym___block] = ACTIONS(8897), + [anon_sym___kindof] = ACTIONS(8897), + [anon_sym___unused] = ACTIONS(8897), + [anon_sym__Complex] = ACTIONS(8897), + [anon_sym___complex] = ACTIONS(8897), + [anon_sym_IBOutlet] = ACTIONS(8897), + [anon_sym_IBInspectable] = ACTIONS(8897), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8897), + [anon_sym_COLON] = ACTIONS(8899), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), + [sym_method_attribute_specifier] = ACTIONS(8897), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8897), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8897), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8897), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8897), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8897), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8897), + [anon_sym_NS_AVAILABLE] = ACTIONS(8897), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8897), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8897), + [anon_sym_API_AVAILABLE] = ACTIONS(8897), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8897), + [anon_sym_API_DEPRECATED] = ACTIONS(8897), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8897), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8897), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8897), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8897), + [anon_sym___deprecated_msg] = ACTIONS(8897), + [anon_sym___deprecated_enum_msg] = ACTIONS(8897), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8897), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8897), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8897), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8897), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(8897), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8897), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -555655,77 +551993,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3683] = { - [sym__expression] = STATE(4525), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym_type_descriptor] = STATE(5024), + [sym_macro_type_specifier] = STATE(3918), + [sym__protocol_identifier] = STATE(5025), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(8901), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(1149), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(1149), + [sym_IMP] = ACTIONS(1149), + [sym_BOOL] = ACTIONS(1149), + [sym_auto] = ACTIONS(1149), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -555734,2925 +552070,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3684] = { - [sym__expression] = STATE(4294), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3685] = { - [sym__expression] = STATE(3026), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3686] = { - [sym__expression] = STATE(4523), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3687] = { - [sym__expression] = STATE(4514), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3688] = { - [sym__expression] = STATE(4519), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3689] = { - [sym__expression] = STATE(3311), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3690] = { - [sym__expression] = STATE(4524), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3691] = { - [sym__expression] = STATE(4503), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3692] = { - [sym_field_declaration_list] = STATE(3791), - [sym_superclass_reference] = STATE(3733), - [sym_identifier] = ACTIONS(8099), - [anon_sym_COMMA] = ACTIONS(8101), - [anon_sym_RPAREN] = ACTIONS(8101), - [anon_sym_LPAREN2] = ACTIONS(8101), - [anon_sym_STAR] = ACTIONS(8101), - [anon_sym_GT] = ACTIONS(8101), - [anon_sym_SEMI] = ACTIONS(8101), - [anon_sym___attribute] = ACTIONS(8099), - [anon_sym___attribute__] = ACTIONS(8099), - [anon_sym___based] = ACTIONS(8099), - [anon_sym_LBRACE] = ACTIONS(8853), - [anon_sym_LBRACK] = ACTIONS(8101), - [anon_sym_const] = ACTIONS(8099), - [anon_sym_volatile] = ACTIONS(8099), - [anon_sym_restrict] = ACTIONS(8099), - [anon_sym__Atomic] = ACTIONS(8099), - [anon_sym_in] = ACTIONS(8099), - [anon_sym_out] = ACTIONS(8099), - [anon_sym_inout] = ACTIONS(8099), - [anon_sym_bycopy] = ACTIONS(8099), - [anon_sym_byref] = ACTIONS(8099), - [anon_sym_oneway] = ACTIONS(8099), - [anon_sym__Nullable] = ACTIONS(8099), - [anon_sym__Nonnull] = ACTIONS(8099), - [anon_sym__Nullable_result] = ACTIONS(8099), - [anon_sym__Null_unspecified] = ACTIONS(8099), - [anon_sym___autoreleasing] = ACTIONS(8099), - [anon_sym___nullable] = ACTIONS(8099), - [anon_sym___nonnull] = ACTIONS(8099), - [anon_sym___strong] = ACTIONS(8099), - [anon_sym___weak] = ACTIONS(8099), - [anon_sym___bridge] = ACTIONS(8099), - [anon_sym___bridge_transfer] = ACTIONS(8099), - [anon_sym___bridge_retained] = ACTIONS(8099), - [anon_sym___unsafe_unretained] = ACTIONS(8099), - [anon_sym___block] = ACTIONS(8099), - [anon_sym___kindof] = ACTIONS(8099), - [anon_sym___unused] = ACTIONS(8099), - [anon_sym__Complex] = ACTIONS(8099), - [anon_sym___complex] = ACTIONS(8099), - [anon_sym_IBOutlet] = ACTIONS(8099), - [anon_sym_IBInspectable] = ACTIONS(8099), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8099), - [anon_sym_COLON] = ACTIONS(8849), - [anon_sym_ATdefs] = ACTIONS(8851), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8099), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8099), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8099), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8099), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8099), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8099), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8099), - [anon_sym_NS_AVAILABLE] = ACTIONS(8099), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8099), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_API_AVAILABLE] = ACTIONS(8099), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8099), - [anon_sym_API_DEPRECATED] = ACTIONS(8099), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8099), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8099), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8099), - [anon_sym___deprecated_msg] = ACTIONS(8099), - [anon_sym___deprecated_enum_msg] = ACTIONS(8099), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8099), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8099), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8099), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3693] = { - [sym_protocol_qualifiers] = STATE(3698), - [sym_generic_type_references] = STATE(3698), - [aux_sym_generic_type_specifier_repeat1] = STATE(3698), - [sym_identifier] = ACTIONS(8047), - [anon_sym_COMMA] = ACTIONS(8049), - [anon_sym_RPAREN] = ACTIONS(8049), - [anon_sym_LPAREN2] = ACTIONS(8049), - [anon_sym_STAR] = ACTIONS(8049), - [anon_sym_GT] = ACTIONS(8049), - [anon_sym_LT] = ACTIONS(8856), - [anon_sym_SEMI] = ACTIONS(8049), - [anon_sym___attribute] = ACTIONS(8047), - [anon_sym___attribute__] = ACTIONS(8047), - [anon_sym___based] = ACTIONS(8047), - [anon_sym_LBRACE] = ACTIONS(8049), - [anon_sym_LBRACK] = ACTIONS(8049), - [anon_sym_const] = ACTIONS(8047), - [anon_sym_volatile] = ACTIONS(8047), - [anon_sym_restrict] = ACTIONS(8047), - [anon_sym__Atomic] = ACTIONS(8047), - [anon_sym_in] = ACTIONS(8047), - [anon_sym_out] = ACTIONS(8047), - [anon_sym_inout] = ACTIONS(8047), - [anon_sym_bycopy] = ACTIONS(8047), - [anon_sym_byref] = ACTIONS(8047), - [anon_sym_oneway] = ACTIONS(8047), - [anon_sym__Nullable] = ACTIONS(8047), - [anon_sym__Nonnull] = ACTIONS(8047), - [anon_sym__Nullable_result] = ACTIONS(8047), - [anon_sym__Null_unspecified] = ACTIONS(8047), - [anon_sym___autoreleasing] = ACTIONS(8047), - [anon_sym___nullable] = ACTIONS(8047), - [anon_sym___nonnull] = ACTIONS(8047), - [anon_sym___strong] = ACTIONS(8047), - [anon_sym___weak] = ACTIONS(8047), - [anon_sym___bridge] = ACTIONS(8047), - [anon_sym___bridge_transfer] = ACTIONS(8047), - [anon_sym___bridge_retained] = ACTIONS(8047), - [anon_sym___unsafe_unretained] = ACTIONS(8047), - [anon_sym___block] = ACTIONS(8047), - [anon_sym___kindof] = ACTIONS(8047), - [anon_sym___unused] = ACTIONS(8047), - [anon_sym__Complex] = ACTIONS(8047), - [anon_sym___complex] = ACTIONS(8047), - [anon_sym_IBOutlet] = ACTIONS(8047), - [anon_sym_IBInspectable] = ACTIONS(8047), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8047), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8047), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8047), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8047), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8047), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8047), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8047), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8047), - [anon_sym_NS_AVAILABLE] = ACTIONS(8047), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8047), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8047), - [anon_sym_API_AVAILABLE] = ACTIONS(8047), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8047), - [anon_sym_API_DEPRECATED] = ACTIONS(8047), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8047), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8047), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8047), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8047), - [anon_sym___deprecated_msg] = ACTIONS(8047), - [anon_sym___deprecated_enum_msg] = ACTIONS(8047), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8047), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8047), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8047), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8047), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3694] = { - [sym__expression] = STATE(3312), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3695] = { - [sym__expression] = STATE(3274), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3696] = { - [sym__expression] = STATE(4516), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3697] = { - [sym__expression] = STATE(3034), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(8858), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3698] = { - [sym_protocol_qualifiers] = STATE(3699), - [sym_generic_type_references] = STATE(3699), - [aux_sym_generic_type_specifier_repeat1] = STATE(3699), - [sym_identifier] = ACTIONS(8069), - [anon_sym_COMMA] = ACTIONS(8071), - [anon_sym_RPAREN] = ACTIONS(8071), - [anon_sym_LPAREN2] = ACTIONS(8071), - [anon_sym_STAR] = ACTIONS(8071), - [anon_sym_GT] = ACTIONS(8071), - [anon_sym_LT] = ACTIONS(8856), - [anon_sym_SEMI] = ACTIONS(8071), - [anon_sym___attribute] = ACTIONS(8069), - [anon_sym___attribute__] = ACTIONS(8069), - [anon_sym___based] = ACTIONS(8069), - [anon_sym_LBRACE] = ACTIONS(8071), - [anon_sym_LBRACK] = ACTIONS(8071), - [anon_sym_const] = ACTIONS(8069), - [anon_sym_volatile] = ACTIONS(8069), - [anon_sym_restrict] = ACTIONS(8069), - [anon_sym__Atomic] = ACTIONS(8069), - [anon_sym_in] = ACTIONS(8069), - [anon_sym_out] = ACTIONS(8069), - [anon_sym_inout] = ACTIONS(8069), - [anon_sym_bycopy] = ACTIONS(8069), - [anon_sym_byref] = ACTIONS(8069), - [anon_sym_oneway] = ACTIONS(8069), - [anon_sym__Nullable] = ACTIONS(8069), - [anon_sym__Nonnull] = ACTIONS(8069), - [anon_sym__Nullable_result] = ACTIONS(8069), - [anon_sym__Null_unspecified] = ACTIONS(8069), - [anon_sym___autoreleasing] = ACTIONS(8069), - [anon_sym___nullable] = ACTIONS(8069), - [anon_sym___nonnull] = ACTIONS(8069), - [anon_sym___strong] = ACTIONS(8069), - [anon_sym___weak] = ACTIONS(8069), - [anon_sym___bridge] = ACTIONS(8069), - [anon_sym___bridge_transfer] = ACTIONS(8069), - [anon_sym___bridge_retained] = ACTIONS(8069), - [anon_sym___unsafe_unretained] = ACTIONS(8069), - [anon_sym___block] = ACTIONS(8069), - [anon_sym___kindof] = ACTIONS(8069), - [anon_sym___unused] = ACTIONS(8069), - [anon_sym__Complex] = ACTIONS(8069), - [anon_sym___complex] = ACTIONS(8069), - [anon_sym_IBOutlet] = ACTIONS(8069), - [anon_sym_IBInspectable] = ACTIONS(8069), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8069), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8069), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8069), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8069), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8069), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8069), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8069), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8069), - [anon_sym_NS_AVAILABLE] = ACTIONS(8069), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8069), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8069), - [anon_sym_API_AVAILABLE] = ACTIONS(8069), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8069), - [anon_sym_API_DEPRECATED] = ACTIONS(8069), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8069), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8069), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8069), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8069), - [anon_sym___deprecated_msg] = ACTIONS(8069), - [anon_sym___deprecated_enum_msg] = ACTIONS(8069), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8069), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8069), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8069), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8069), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3699] = { - [sym_protocol_qualifiers] = STATE(3699), - [sym_generic_type_references] = STATE(3699), - [aux_sym_generic_type_specifier_repeat1] = STATE(3699), - [sym_identifier] = ACTIONS(8062), - [anon_sym_COMMA] = ACTIONS(8064), - [anon_sym_RPAREN] = ACTIONS(8064), - [anon_sym_LPAREN2] = ACTIONS(8064), - [anon_sym_STAR] = ACTIONS(8064), - [anon_sym_GT] = ACTIONS(8064), - [anon_sym_LT] = ACTIONS(8860), - [anon_sym_SEMI] = ACTIONS(8064), - [anon_sym___attribute] = ACTIONS(8062), - [anon_sym___attribute__] = ACTIONS(8062), - [anon_sym___based] = ACTIONS(8062), - [anon_sym_LBRACE] = ACTIONS(8064), - [anon_sym_LBRACK] = ACTIONS(8064), - [anon_sym_const] = ACTIONS(8062), - [anon_sym_volatile] = ACTIONS(8062), - [anon_sym_restrict] = ACTIONS(8062), - [anon_sym__Atomic] = ACTIONS(8062), - [anon_sym_in] = ACTIONS(8062), - [anon_sym_out] = ACTIONS(8062), - [anon_sym_inout] = ACTIONS(8062), - [anon_sym_bycopy] = ACTIONS(8062), - [anon_sym_byref] = ACTIONS(8062), - [anon_sym_oneway] = ACTIONS(8062), - [anon_sym__Nullable] = ACTIONS(8062), - [anon_sym__Nonnull] = ACTIONS(8062), - [anon_sym__Nullable_result] = ACTIONS(8062), - [anon_sym__Null_unspecified] = ACTIONS(8062), - [anon_sym___autoreleasing] = ACTIONS(8062), - [anon_sym___nullable] = ACTIONS(8062), - [anon_sym___nonnull] = ACTIONS(8062), - [anon_sym___strong] = ACTIONS(8062), - [anon_sym___weak] = ACTIONS(8062), - [anon_sym___bridge] = ACTIONS(8062), - [anon_sym___bridge_transfer] = ACTIONS(8062), - [anon_sym___bridge_retained] = ACTIONS(8062), - [anon_sym___unsafe_unretained] = ACTIONS(8062), - [anon_sym___block] = ACTIONS(8062), - [anon_sym___kindof] = ACTIONS(8062), - [anon_sym___unused] = ACTIONS(8062), - [anon_sym__Complex] = ACTIONS(8062), - [anon_sym___complex] = ACTIONS(8062), - [anon_sym_IBOutlet] = ACTIONS(8062), - [anon_sym_IBInspectable] = ACTIONS(8062), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8062), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8062), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8062), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8062), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8062), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8062), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8062), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8062), - [anon_sym_NS_AVAILABLE] = ACTIONS(8062), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8062), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8062), - [anon_sym_API_AVAILABLE] = ACTIONS(8062), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8062), - [anon_sym_API_DEPRECATED] = ACTIONS(8062), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8062), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8062), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8062), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8062), - [anon_sym___deprecated_msg] = ACTIONS(8062), - [anon_sym___deprecated_enum_msg] = ACTIONS(8062), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8062), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8062), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8062), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8062), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3700] = { - [sym_protocol_qualifiers] = STATE(3699), - [sym_generic_type_references] = STATE(3699), - [aux_sym_generic_type_specifier_repeat1] = STATE(3699), - [sym_identifier] = ACTIONS(8058), - [anon_sym_COMMA] = ACTIONS(8060), - [anon_sym_RPAREN] = ACTIONS(8060), - [anon_sym_LPAREN2] = ACTIONS(8060), - [anon_sym_STAR] = ACTIONS(8060), - [anon_sym_GT] = ACTIONS(8060), - [anon_sym_LT] = ACTIONS(8856), - [anon_sym_SEMI] = ACTIONS(8060), - [anon_sym___attribute] = ACTIONS(8058), - [anon_sym___attribute__] = ACTIONS(8058), - [anon_sym___based] = ACTIONS(8058), - [anon_sym_LBRACE] = ACTIONS(8060), - [anon_sym_LBRACK] = ACTIONS(8060), - [anon_sym_const] = ACTIONS(8058), - [anon_sym_volatile] = ACTIONS(8058), - [anon_sym_restrict] = ACTIONS(8058), - [anon_sym__Atomic] = ACTIONS(8058), - [anon_sym_in] = ACTIONS(8058), - [anon_sym_out] = ACTIONS(8058), - [anon_sym_inout] = ACTIONS(8058), - [anon_sym_bycopy] = ACTIONS(8058), - [anon_sym_byref] = ACTIONS(8058), - [anon_sym_oneway] = ACTIONS(8058), - [anon_sym__Nullable] = ACTIONS(8058), - [anon_sym__Nonnull] = ACTIONS(8058), - [anon_sym__Nullable_result] = ACTIONS(8058), - [anon_sym__Null_unspecified] = ACTIONS(8058), - [anon_sym___autoreleasing] = ACTIONS(8058), - [anon_sym___nullable] = ACTIONS(8058), - [anon_sym___nonnull] = ACTIONS(8058), - [anon_sym___strong] = ACTIONS(8058), - [anon_sym___weak] = ACTIONS(8058), - [anon_sym___bridge] = ACTIONS(8058), - [anon_sym___bridge_transfer] = ACTIONS(8058), - [anon_sym___bridge_retained] = ACTIONS(8058), - [anon_sym___unsafe_unretained] = ACTIONS(8058), - [anon_sym___block] = ACTIONS(8058), - [anon_sym___kindof] = ACTIONS(8058), - [anon_sym___unused] = ACTIONS(8058), - [anon_sym__Complex] = ACTIONS(8058), - [anon_sym___complex] = ACTIONS(8058), - [anon_sym_IBOutlet] = ACTIONS(8058), - [anon_sym_IBInspectable] = ACTIONS(8058), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8058), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8058), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8058), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8058), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8058), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8058), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8058), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8058), - [anon_sym_NS_AVAILABLE] = ACTIONS(8058), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8058), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8058), - [anon_sym_API_AVAILABLE] = ACTIONS(8058), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8058), - [anon_sym_API_DEPRECATED] = ACTIONS(8058), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8058), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8058), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8058), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8058), - [anon_sym___deprecated_msg] = ACTIONS(8058), - [anon_sym___deprecated_enum_msg] = ACTIONS(8058), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8058), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8058), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8058), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8058), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3701] = { - [sym__expression] = STATE(3261), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(8863), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3702] = { - [sym__expression] = STATE(3035), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3703] = { - [sym__expression] = STATE(4500), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3704] = { - [sym_protocol_qualifiers] = STATE(3700), - [sym_generic_type_references] = STATE(3700), - [aux_sym_generic_type_specifier_repeat1] = STATE(3700), - [sym_identifier] = ACTIONS(6841), - [anon_sym_COMMA] = ACTIONS(8053), - [anon_sym_RPAREN] = ACTIONS(8053), - [anon_sym_LPAREN2] = ACTIONS(8865), - [anon_sym_STAR] = ACTIONS(8053), - [anon_sym_GT] = ACTIONS(8053), - [anon_sym_LT] = ACTIONS(8856), - [anon_sym_SEMI] = ACTIONS(8053), - [anon_sym___attribute] = ACTIONS(6841), - [anon_sym___attribute__] = ACTIONS(6841), - [anon_sym___based] = ACTIONS(6841), - [anon_sym_LBRACE] = ACTIONS(8053), - [anon_sym_LBRACK] = ACTIONS(8053), - [anon_sym_const] = ACTIONS(6841), - [anon_sym_volatile] = ACTIONS(6841), - [anon_sym_restrict] = ACTIONS(6841), - [anon_sym__Atomic] = ACTIONS(6841), - [anon_sym_in] = ACTIONS(6841), - [anon_sym_out] = ACTIONS(6841), - [anon_sym_inout] = ACTIONS(6841), - [anon_sym_bycopy] = ACTIONS(6841), - [anon_sym_byref] = ACTIONS(6841), - [anon_sym_oneway] = ACTIONS(6841), - [anon_sym__Nullable] = ACTIONS(6841), - [anon_sym__Nonnull] = ACTIONS(6841), - [anon_sym__Nullable_result] = ACTIONS(6841), - [anon_sym__Null_unspecified] = ACTIONS(6841), - [anon_sym___autoreleasing] = ACTIONS(6841), - [anon_sym___nullable] = ACTIONS(6841), - [anon_sym___nonnull] = ACTIONS(6841), - [anon_sym___strong] = ACTIONS(6841), - [anon_sym___weak] = ACTIONS(6841), - [anon_sym___bridge] = ACTIONS(6841), - [anon_sym___bridge_transfer] = ACTIONS(6841), - [anon_sym___bridge_retained] = ACTIONS(6841), - [anon_sym___unsafe_unretained] = ACTIONS(6841), - [anon_sym___block] = ACTIONS(6841), - [anon_sym___kindof] = ACTIONS(6841), - [anon_sym___unused] = ACTIONS(6841), - [anon_sym__Complex] = ACTIONS(6841), - [anon_sym___complex] = ACTIONS(6841), - [anon_sym_IBOutlet] = ACTIONS(6841), - [anon_sym_IBInspectable] = ACTIONS(6841), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6841), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6841), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6841), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6841), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE] = ACTIONS(6841), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6841), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_API_AVAILABLE] = ACTIONS(6841), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_API_DEPRECATED] = ACTIONS(6841), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6841), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6841), - [anon_sym___deprecated_msg] = ACTIONS(6841), - [anon_sym___deprecated_enum_msg] = ACTIONS(6841), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6841), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6841), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6841), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3705] = { - [sym__expression] = STATE(3304), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3706] = { - [sym__expression] = STATE(3032), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3707] = { - [sym__expression] = STATE(4493), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3708] = { - [sym__expression] = STATE(3256), - [sym_conditional_expression] = STATE(3351), - [sym_assignment_expression] = STATE(3351), - [sym_pointer_expression] = STATE(3039), - [sym_unary_expression] = STATE(3351), - [sym_binary_expression] = STATE(3351), - [sym_update_expression] = STATE(3351), - [sym_cast_expression] = STATE(3351), - [sym_sizeof_expression] = STATE(3351), - [sym_subscript_expression] = STATE(3039), - [sym_call_expression] = STATE(3039), - [sym_field_expression] = STATE(3039), - [sym_compound_literal_expression] = STATE(3351), - [sym_parenthesized_expression] = STATE(3039), - [sym_char_literal] = STATE(3351), - [sym_concatenated_string] = STATE(3351), - [sym_string_literal] = STATE(3115), - [sym_block_expression] = STATE(3351), - [sym_message_expression] = STATE(3351), - [sym_selector_expression] = STATE(3351), - [sym_protocol_expression] = STATE(3351), - [sym_encode_expression] = STATE(3351), - [sym_number_expression] = STATE(3351), - [sym_string_expression] = STATE(3351), - [sym_object_expression] = STATE(3351), - [sym_dictionary_expression] = STATE(3351), - [sym_array_expression] = STATE(3351), - [sym_boolean_expression] = STATE(3351), - [sym_available_expression] = STATE(3351), - [sym_statement_expression] = STATE(3351), - [sym_va_arg_expression] = STATE(3351), - [sym_identifier] = ACTIONS(129), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(43), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_sizeof] = ACTIONS(87), - [sym_number_literal] = ACTIONS(89), - [anon_sym_L_SQUOTE] = ACTIONS(91), - [anon_sym_u_SQUOTE] = ACTIONS(91), - [anon_sym_U_SQUOTE] = ACTIONS(91), - [anon_sym_u8_SQUOTE] = ACTIONS(91), - [anon_sym_SQUOTE] = ACTIONS(91), - [anon_sym_L_DQUOTE] = ACTIONS(93), - [anon_sym_u_DQUOTE] = ACTIONS(93), - [anon_sym_U_DQUOTE] = ACTIONS(93), - [anon_sym_u8_DQUOTE] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym_true] = ACTIONS(95), - [sym_false] = ACTIONS(95), - [sym_null] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(831), - [sym_self] = ACTIONS(129), - [sym_super] = ACTIONS(95), - [sym_nil] = ACTIONS(95), - [anon_sym_ATselector] = ACTIONS(141), - [anon_sym_ATencode] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [sym_YES] = ACTIONS(95), - [sym_NO] = ACTIONS(95), - [anon_sym___builtin_available] = ACTIONS(147), - [anon_sym_ATavailable] = ACTIONS(149), - [anon_sym_va_arg] = ACTIONS(151), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3709] = { - [sym__expression] = STATE(3009), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3710] = { - [sym__expression] = STATE(3006), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3711] = { - [sym_compound_statement] = STATE(3345), - [sym_type_qualifier] = STATE(3906), - [sym__type_specifier] = STATE(3988), - [sym_sized_type_specifier] = STATE(3988), - [sym_enum_specifier] = STATE(3988), - [sym_struct_specifier] = STATE(3988), - [sym_union_specifier] = STATE(3988), - [sym_parameter_list] = STATE(5216), - [sym_type_descriptor] = STATE(4873), - [sym_macro_type_specifier] = STATE(3988), - [sym_typeof_specifier] = STATE(3988), - [sym_atomic_specifier] = STATE(3988), - [sym_generic_type_specifier] = STATE(3988), - [aux_sym_type_definition_repeat1] = STATE(3833), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_LBRACE] = ACTIONS(8795), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(8797), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(8799), - [anon_sym_enum] = ACTIONS(8801), - [anon_sym_NS_ENUM] = ACTIONS(8803), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(8803), - [anon_sym_NS_OPTIONS] = ACTIONS(8803), - [anon_sym_struct] = ACTIONS(8805), - [anon_sym_union] = ACTIONS(8807), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(8799), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(8799), - [sym_IMP] = ACTIONS(8799), - [sym_BOOL] = ACTIONS(8799), - [sym_auto] = ACTIONS(8799), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3712] = { - [sym_field_declaration_list] = STATE(3767), - [sym_superclass_reference] = STATE(3746), - [sym_identifier] = ACTIONS(8088), - [anon_sym_COMMA] = ACTIONS(8090), - [anon_sym_RPAREN] = ACTIONS(8090), - [anon_sym_LPAREN2] = ACTIONS(8090), - [anon_sym_STAR] = ACTIONS(8090), - [anon_sym_GT] = ACTIONS(8090), - [anon_sym_SEMI] = ACTIONS(8090), - [anon_sym___attribute] = ACTIONS(8088), - [anon_sym___attribute__] = ACTIONS(8088), - [anon_sym___based] = ACTIONS(8088), - [anon_sym_LBRACE] = ACTIONS(8868), - [anon_sym_LBRACK] = ACTIONS(8090), - [anon_sym_const] = ACTIONS(8088), - [anon_sym_volatile] = ACTIONS(8088), - [anon_sym_restrict] = ACTIONS(8088), - [anon_sym__Atomic] = ACTIONS(8088), - [anon_sym_in] = ACTIONS(8088), - [anon_sym_out] = ACTIONS(8088), - [anon_sym_inout] = ACTIONS(8088), - [anon_sym_bycopy] = ACTIONS(8088), - [anon_sym_byref] = ACTIONS(8088), - [anon_sym_oneway] = ACTIONS(8088), - [anon_sym__Nullable] = ACTIONS(8088), - [anon_sym__Nonnull] = ACTIONS(8088), - [anon_sym__Nullable_result] = ACTIONS(8088), - [anon_sym__Null_unspecified] = ACTIONS(8088), - [anon_sym___autoreleasing] = ACTIONS(8088), - [anon_sym___nullable] = ACTIONS(8088), - [anon_sym___nonnull] = ACTIONS(8088), - [anon_sym___strong] = ACTIONS(8088), - [anon_sym___weak] = ACTIONS(8088), - [anon_sym___bridge] = ACTIONS(8088), - [anon_sym___bridge_transfer] = ACTIONS(8088), - [anon_sym___bridge_retained] = ACTIONS(8088), - [anon_sym___unsafe_unretained] = ACTIONS(8088), - [anon_sym___block] = ACTIONS(8088), - [anon_sym___kindof] = ACTIONS(8088), - [anon_sym___unused] = ACTIONS(8088), - [anon_sym__Complex] = ACTIONS(8088), - [anon_sym___complex] = ACTIONS(8088), - [anon_sym_IBOutlet] = ACTIONS(8088), - [anon_sym_IBInspectable] = ACTIONS(8088), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8088), - [anon_sym_COLON] = ACTIONS(8849), - [anon_sym_ATdefs] = ACTIONS(8871), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8088), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8088), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8088), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8088), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8088), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8088), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8088), - [anon_sym_NS_AVAILABLE] = ACTIONS(8088), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8088), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_API_AVAILABLE] = ACTIONS(8088), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8088), - [anon_sym_API_DEPRECATED] = ACTIONS(8088), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8088), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8088), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8088), - [anon_sym___deprecated_msg] = ACTIONS(8088), - [anon_sym___deprecated_enum_msg] = ACTIONS(8088), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8088), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8088), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3713] = { - [sym__expression] = STATE(3015), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3714] = { - [sym_compound_statement] = STATE(3072), - [sym_type_qualifier] = STATE(3908), - [sym__type_specifier] = STATE(3988), - [sym_sized_type_specifier] = STATE(3988), - [sym_enum_specifier] = STATE(3988), - [sym_struct_specifier] = STATE(3988), - [sym_union_specifier] = STATE(3988), - [sym_parameter_list] = STATE(5085), - [sym_type_descriptor] = STATE(4845), - [sym_macro_type_specifier] = STATE(3988), - [sym_typeof_specifier] = STATE(3988), - [sym_atomic_specifier] = STATE(3988), - [sym_generic_type_specifier] = STATE(3988), - [aux_sym_type_definition_repeat1] = STATE(3833), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_LBRACE] = ACTIONS(8873), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(8797), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(8799), - [anon_sym_enum] = ACTIONS(8801), - [anon_sym_NS_ENUM] = ACTIONS(8803), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(8803), - [anon_sym_NS_OPTIONS] = ACTIONS(8803), - [anon_sym_struct] = ACTIONS(8805), - [anon_sym_union] = ACTIONS(8807), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(8799), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(8799), - [sym_IMP] = ACTIONS(8799), - [sym_BOOL] = ACTIONS(8799), - [sym_auto] = ACTIONS(8799), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3715] = { - [sym__expression] = STATE(3030), - [sym_conditional_expression] = STATE(3056), - [sym_assignment_expression] = STATE(3056), - [sym_pointer_expression] = STATE(3058), - [sym_unary_expression] = STATE(3056), - [sym_binary_expression] = STATE(3056), - [sym_update_expression] = STATE(3056), - [sym_cast_expression] = STATE(3056), - [sym_sizeof_expression] = STATE(3056), - [sym_subscript_expression] = STATE(3058), - [sym_call_expression] = STATE(3058), - [sym_field_expression] = STATE(3058), - [sym_compound_literal_expression] = STATE(3056), - [sym_parenthesized_expression] = STATE(3058), - [sym_char_literal] = STATE(3056), - [sym_concatenated_string] = STATE(3056), - [sym_string_literal] = STATE(2756), - [sym_block_expression] = STATE(3056), - [sym_message_expression] = STATE(3056), - [sym_selector_expression] = STATE(3056), - [sym_protocol_expression] = STATE(3056), - [sym_encode_expression] = STATE(3056), - [sym_number_expression] = STATE(3056), - [sym_string_expression] = STATE(3056), - [sym_object_expression] = STATE(3056), - [sym_dictionary_expression] = STATE(3056), - [sym_array_expression] = STATE(3056), - [sym_boolean_expression] = STATE(3056), - [sym_available_expression] = STATE(3056), - [sym_statement_expression] = STATE(3056), - [sym_va_arg_expression] = STATE(3056), - [sym_identifier] = ACTIONS(2186), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_CARET] = ACTIONS(8716), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_sizeof] = ACTIONS(2208), - [sym_number_literal] = ACTIONS(2210), - [anon_sym_L_SQUOTE] = ACTIONS(2212), - [anon_sym_u_SQUOTE] = ACTIONS(2212), - [anon_sym_U_SQUOTE] = ACTIONS(2212), - [anon_sym_u8_SQUOTE] = ACTIONS(2212), - [anon_sym_SQUOTE] = ACTIONS(2212), - [anon_sym_L_DQUOTE] = ACTIONS(2214), - [anon_sym_u_DQUOTE] = ACTIONS(2214), - [anon_sym_U_DQUOTE] = ACTIONS(2214), - [anon_sym_u8_DQUOTE] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [anon_sym_ATprotocol] = ACTIONS(2218), - [sym_self] = ACTIONS(2186), - [sym_super] = ACTIONS(2216), - [sym_nil] = ACTIONS(2216), - [anon_sym_ATselector] = ACTIONS(2220), - [anon_sym_ATencode] = ACTIONS(2222), - [anon_sym_AT] = ACTIONS(2224), - [sym_YES] = ACTIONS(2216), - [sym_NO] = ACTIONS(2216), - [anon_sym___builtin_available] = ACTIONS(2226), - [anon_sym_ATavailable] = ACTIONS(2228), - [anon_sym_va_arg] = ACTIONS(2230), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3716] = { - [sym_field_declaration_list] = STATE(3767), - [sym_superclass_reference] = STATE(3755), - [sym_identifier] = ACTIONS(8088), - [anon_sym_COMMA] = ACTIONS(8090), - [anon_sym_RPAREN] = ACTIONS(8090), - [anon_sym_LPAREN2] = ACTIONS(8090), - [anon_sym_STAR] = ACTIONS(8090), - [anon_sym_GT] = ACTIONS(8090), - [anon_sym_SEMI] = ACTIONS(8090), - [anon_sym___attribute] = ACTIONS(8088), - [anon_sym___attribute__] = ACTIONS(8088), - [anon_sym___based] = ACTIONS(8088), - [anon_sym_LBRACE] = ACTIONS(8847), - [anon_sym_LBRACK] = ACTIONS(8090), - [anon_sym_const] = ACTIONS(8088), - [anon_sym_volatile] = ACTIONS(8088), - [anon_sym_restrict] = ACTIONS(8088), - [anon_sym__Atomic] = ACTIONS(8088), - [anon_sym_in] = ACTIONS(8088), - [anon_sym_out] = ACTIONS(8088), - [anon_sym_inout] = ACTIONS(8088), - [anon_sym_bycopy] = ACTIONS(8088), - [anon_sym_byref] = ACTIONS(8088), - [anon_sym_oneway] = ACTIONS(8088), - [anon_sym__Nullable] = ACTIONS(8088), - [anon_sym__Nonnull] = ACTIONS(8088), - [anon_sym__Nullable_result] = ACTIONS(8088), - [anon_sym__Null_unspecified] = ACTIONS(8088), - [anon_sym___autoreleasing] = ACTIONS(8088), - [anon_sym___nullable] = ACTIONS(8088), - [anon_sym___nonnull] = ACTIONS(8088), - [anon_sym___strong] = ACTIONS(8088), - [anon_sym___weak] = ACTIONS(8088), - [anon_sym___bridge] = ACTIONS(8088), - [anon_sym___bridge_transfer] = ACTIONS(8088), - [anon_sym___bridge_retained] = ACTIONS(8088), - [anon_sym___unsafe_unretained] = ACTIONS(8088), - [anon_sym___block] = ACTIONS(8088), - [anon_sym___kindof] = ACTIONS(8088), - [anon_sym___unused] = ACTIONS(8088), - [anon_sym__Complex] = ACTIONS(8088), - [anon_sym___complex] = ACTIONS(8088), - [anon_sym_IBOutlet] = ACTIONS(8088), - [anon_sym_IBInspectable] = ACTIONS(8088), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8088), - [anon_sym_COLON] = ACTIONS(8849), - [anon_sym_ATdefs] = ACTIONS(8871), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8088), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8088), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8088), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8088), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8088), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8088), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8088), - [anon_sym_NS_AVAILABLE] = ACTIONS(8088), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8088), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_API_AVAILABLE] = ACTIONS(8088), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8088), - [anon_sym_API_DEPRECATED] = ACTIONS(8088), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8088), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8088), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8088), - [anon_sym___deprecated_msg] = ACTIONS(8088), - [anon_sym___deprecated_enum_msg] = ACTIONS(8088), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8088), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8088), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8088), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3717] = { - [sym_attribute_specifier] = STATE(4251), - [sym_compound_statement] = STATE(3046), - [sym_type_qualifier] = STATE(5721), - [sym_parameter_list] = STATE(3788), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3880), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_SEMI] = ACTIONS(8877), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_LBRACE] = ACTIONS(8881), - [anon_sym_LBRACK] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(8885), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3718] = { - [sym_attribute_specifier] = STATE(4133), - [sym_compound_statement] = STATE(729), - [sym_type_qualifier] = STATE(5504), - [sym_parameter_list] = STATE(3788), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3887), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_SEMI] = ACTIONS(8897), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_LBRACK] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(8885), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3719] = { - [sym_attribute_specifier] = STATE(4119), - [sym_compound_statement] = STATE(1462), - [sym_type_qualifier] = STATE(5360), - [sym_parameter_list] = STATE(3788), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3891), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_SEMI] = ACTIONS(8899), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_LBRACE] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(8885), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3720] = { - [sym_attribute_specifier] = STATE(4148), - [sym_compound_statement] = STATE(908), - [sym_type_qualifier] = STATE(5281), - [sym_parameter_list] = STATE(3788), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3872), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_SEMI] = ACTIONS(8901), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(8885), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3721] = { [sym_identifier] = ACTIONS(8903), [anon_sym_COMMA] = ACTIONS(8905), [anon_sym_RPAREN] = ACTIONS(8905), @@ -558729,76 +552146,2890 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3722] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3590), - [sym_identifier] = ACTIONS(8907), - [anon_sym_LPAREN2] = ACTIONS(8006), - [anon_sym_STAR] = ACTIONS(8006), - [anon_sym_SEMI] = ACTIONS(8006), - [anon_sym___attribute] = ACTIONS(8008), - [anon_sym___attribute__] = ACTIONS(8008), - [anon_sym___based] = ACTIONS(8008), - [anon_sym_LBRACE] = ACTIONS(8006), - [anon_sym_const] = ACTIONS(8008), - [anon_sym_volatile] = ACTIONS(8008), - [anon_sym_restrict] = ACTIONS(8008), - [anon_sym__Atomic] = ACTIONS(8008), - [anon_sym_in] = ACTIONS(8008), - [anon_sym_out] = ACTIONS(8008), - [anon_sym_inout] = ACTIONS(8008), - [anon_sym_bycopy] = ACTIONS(8008), - [anon_sym_byref] = ACTIONS(8008), - [anon_sym_oneway] = ACTIONS(8008), - [anon_sym__Nullable] = ACTIONS(8008), - [anon_sym__Nonnull] = ACTIONS(8008), - [anon_sym__Nullable_result] = ACTIONS(8008), - [anon_sym__Null_unspecified] = ACTIONS(8008), - [anon_sym___autoreleasing] = ACTIONS(8008), - [anon_sym___nullable] = ACTIONS(8008), - [anon_sym___nonnull] = ACTIONS(8008), - [anon_sym___strong] = ACTIONS(8008), - [anon_sym___weak] = ACTIONS(8008), - [anon_sym___bridge] = ACTIONS(8008), - [anon_sym___bridge_transfer] = ACTIONS(8008), - [anon_sym___bridge_retained] = ACTIONS(8008), - [anon_sym___unsafe_unretained] = ACTIONS(8008), - [anon_sym___block] = ACTIONS(8008), - [anon_sym___kindof] = ACTIONS(8008), - [anon_sym___unused] = ACTIONS(8008), - [anon_sym__Complex] = ACTIONS(8008), - [anon_sym___complex] = ACTIONS(8008), - [anon_sym_IBOutlet] = ACTIONS(8008), - [anon_sym_IBInspectable] = ACTIONS(8008), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8008), - [anon_sym_signed] = ACTIONS(8910), - [anon_sym_unsigned] = ACTIONS(8910), - [anon_sym_long] = ACTIONS(8910), - [anon_sym_short] = ACTIONS(8910), - [sym_primitive_type] = ACTIONS(8912), + [3685] = { + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym_type_descriptor] = STATE(4955), + [sym_macro_type_specifier] = STATE(3918), + [sym__protocol_identifier] = STATE(4954), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(8901), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8008), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8008), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8008), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8008), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8008), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8008), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8008), - [anon_sym_NS_AVAILABLE] = ACTIONS(8008), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8008), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8008), - [anon_sym_API_AVAILABLE] = ACTIONS(8008), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8008), - [anon_sym_API_DEPRECATED] = ACTIONS(8008), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8008), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8008), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8008), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8008), - [anon_sym___deprecated_msg] = ACTIONS(8008), - [anon_sym___deprecated_enum_msg] = ACTIONS(8008), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8008), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8008), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8008), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8008), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(1149), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(1149), + [sym_IMP] = ACTIONS(1149), + [sym_BOOL] = ACTIONS(1149), + [sym_auto] = ACTIONS(1149), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3686] = { + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym_type_descriptor] = STATE(4987), + [sym_macro_type_specifier] = STATE(3918), + [sym__protocol_identifier] = STATE(4982), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(8901), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(1149), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(1149), + [sym_IMP] = ACTIONS(1149), + [sym_BOOL] = ACTIONS(1149), + [sym_auto] = ACTIONS(1149), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3687] = { + [sym_identifier] = ACTIONS(8907), + [anon_sym_COMMA] = ACTIONS(8909), + [anon_sym_RPAREN] = ACTIONS(8909), + [anon_sym_LPAREN2] = ACTIONS(8909), + [anon_sym_GT] = ACTIONS(8909), + [anon_sym_SEMI] = ACTIONS(8909), + [anon_sym___attribute] = ACTIONS(8907), + [anon_sym___attribute__] = ACTIONS(8907), + [anon_sym_LBRACE] = ACTIONS(8909), + [anon_sym_LBRACK] = ACTIONS(8909), + [anon_sym_EQ] = ACTIONS(8909), + [anon_sym_const] = ACTIONS(8907), + [anon_sym_volatile] = ACTIONS(8907), + [anon_sym_restrict] = ACTIONS(8907), + [anon_sym__Atomic] = ACTIONS(8907), + [anon_sym_in] = ACTIONS(8907), + [anon_sym_out] = ACTIONS(8907), + [anon_sym_inout] = ACTIONS(8907), + [anon_sym_bycopy] = ACTIONS(8907), + [anon_sym_byref] = ACTIONS(8907), + [anon_sym_oneway] = ACTIONS(8907), + [anon_sym__Nullable] = ACTIONS(8907), + [anon_sym__Nonnull] = ACTIONS(8907), + [anon_sym__Nullable_result] = ACTIONS(8907), + [anon_sym__Null_unspecified] = ACTIONS(8907), + [anon_sym___autoreleasing] = ACTIONS(8907), + [anon_sym___nullable] = ACTIONS(8907), + [anon_sym___nonnull] = ACTIONS(8907), + [anon_sym___strong] = ACTIONS(8907), + [anon_sym___weak] = ACTIONS(8907), + [anon_sym___bridge] = ACTIONS(8907), + [anon_sym___bridge_transfer] = ACTIONS(8907), + [anon_sym___bridge_retained] = ACTIONS(8907), + [anon_sym___unsafe_unretained] = ACTIONS(8907), + [anon_sym___block] = ACTIONS(8907), + [anon_sym___kindof] = ACTIONS(8907), + [anon_sym___unused] = ACTIONS(8907), + [anon_sym__Complex] = ACTIONS(8907), + [anon_sym___complex] = ACTIONS(8907), + [anon_sym_IBOutlet] = ACTIONS(8907), + [anon_sym_IBInspectable] = ACTIONS(8907), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8907), + [anon_sym_COLON] = ACTIONS(8909), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8907), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8907), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8907), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8907), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8907), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8907), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8907), + [anon_sym_NS_AVAILABLE] = ACTIONS(8907), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8907), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8907), + [anon_sym_API_AVAILABLE] = ACTIONS(8907), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8907), + [anon_sym_API_DEPRECATED] = ACTIONS(8907), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8907), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8907), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8907), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8907), + [anon_sym___deprecated_msg] = ACTIONS(8907), + [anon_sym___deprecated_enum_msg] = ACTIONS(8907), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8907), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8907), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8907), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8907), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(8907), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8907), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3688] = { + [sym_type_qualifier] = STATE(3688), + [aux_sym_type_definition_repeat1] = STATE(3688), + [sym_identifier] = ACTIONS(8345), + [anon_sym_COMMA] = ACTIONS(8347), + [anon_sym_RPAREN] = ACTIONS(8347), + [anon_sym_LPAREN2] = ACTIONS(8347), + [anon_sym_STAR] = ACTIONS(8347), + [anon_sym_GT] = ACTIONS(8347), + [anon_sym_SEMI] = ACTIONS(8347), + [anon_sym___attribute] = ACTIONS(8345), + [anon_sym___attribute__] = ACTIONS(8345), + [anon_sym___based] = ACTIONS(8345), + [anon_sym_LBRACE] = ACTIONS(8347), + [anon_sym_LBRACK] = ACTIONS(8347), + [anon_sym_const] = ACTIONS(8911), + [anon_sym_volatile] = ACTIONS(8911), + [anon_sym_restrict] = ACTIONS(8911), + [anon_sym__Atomic] = ACTIONS(8911), + [anon_sym_in] = ACTIONS(8911), + [anon_sym_out] = ACTIONS(8911), + [anon_sym_inout] = ACTIONS(8911), + [anon_sym_bycopy] = ACTIONS(8911), + [anon_sym_byref] = ACTIONS(8911), + [anon_sym_oneway] = ACTIONS(8911), + [anon_sym__Nullable] = ACTIONS(8911), + [anon_sym__Nonnull] = ACTIONS(8911), + [anon_sym__Nullable_result] = ACTIONS(8911), + [anon_sym__Null_unspecified] = ACTIONS(8911), + [anon_sym___autoreleasing] = ACTIONS(8911), + [anon_sym___nullable] = ACTIONS(8911), + [anon_sym___nonnull] = ACTIONS(8911), + [anon_sym___strong] = ACTIONS(8911), + [anon_sym___weak] = ACTIONS(8911), + [anon_sym___bridge] = ACTIONS(8911), + [anon_sym___bridge_transfer] = ACTIONS(8911), + [anon_sym___bridge_retained] = ACTIONS(8911), + [anon_sym___unsafe_unretained] = ACTIONS(8911), + [anon_sym___block] = ACTIONS(8911), + [anon_sym___kindof] = ACTIONS(8911), + [anon_sym___unused] = ACTIONS(8911), + [anon_sym__Complex] = ACTIONS(8911), + [anon_sym___complex] = ACTIONS(8911), + [anon_sym_IBOutlet] = ACTIONS(8911), + [anon_sym_IBInspectable] = ACTIONS(8911), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8911), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8345), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8345), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8345), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8345), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8345), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8345), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8345), + [anon_sym_NS_AVAILABLE] = ACTIONS(8345), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8345), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8345), + [anon_sym_API_AVAILABLE] = ACTIONS(8345), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8345), + [anon_sym_API_DEPRECATED] = ACTIONS(8345), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8345), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8345), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8345), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8345), + [anon_sym___deprecated_msg] = ACTIONS(8345), + [anon_sym___deprecated_enum_msg] = ACTIONS(8345), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8345), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8345), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8345), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8345), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3689] = { + [sym_enumerator_list] = STATE(3742), + [sym_identifier] = ACTIONS(8156), + [anon_sym_COMMA] = ACTIONS(8158), + [anon_sym_RPAREN] = ACTIONS(8158), + [anon_sym_LPAREN2] = ACTIONS(8158), + [anon_sym_STAR] = ACTIONS(8158), + [anon_sym_GT] = ACTIONS(8158), + [anon_sym_SEMI] = ACTIONS(8158), + [anon_sym___attribute] = ACTIONS(8156), + [anon_sym___attribute__] = ACTIONS(8156), + [anon_sym___based] = ACTIONS(8156), + [anon_sym_LBRACE] = ACTIONS(8914), + [anon_sym_LBRACK] = ACTIONS(8158), + [anon_sym_const] = ACTIONS(8156), + [anon_sym_volatile] = ACTIONS(8156), + [anon_sym_restrict] = ACTIONS(8156), + [anon_sym__Atomic] = ACTIONS(8156), + [anon_sym_in] = ACTIONS(8156), + [anon_sym_out] = ACTIONS(8156), + [anon_sym_inout] = ACTIONS(8156), + [anon_sym_bycopy] = ACTIONS(8156), + [anon_sym_byref] = ACTIONS(8156), + [anon_sym_oneway] = ACTIONS(8156), + [anon_sym__Nullable] = ACTIONS(8156), + [anon_sym__Nonnull] = ACTIONS(8156), + [anon_sym__Nullable_result] = ACTIONS(8156), + [anon_sym__Null_unspecified] = ACTIONS(8156), + [anon_sym___autoreleasing] = ACTIONS(8156), + [anon_sym___nullable] = ACTIONS(8156), + [anon_sym___nonnull] = ACTIONS(8156), + [anon_sym___strong] = ACTIONS(8156), + [anon_sym___weak] = ACTIONS(8156), + [anon_sym___bridge] = ACTIONS(8156), + [anon_sym___bridge_transfer] = ACTIONS(8156), + [anon_sym___bridge_retained] = ACTIONS(8156), + [anon_sym___unsafe_unretained] = ACTIONS(8156), + [anon_sym___block] = ACTIONS(8156), + [anon_sym___kindof] = ACTIONS(8156), + [anon_sym___unused] = ACTIONS(8156), + [anon_sym__Complex] = ACTIONS(8156), + [anon_sym___complex] = ACTIONS(8156), + [anon_sym_IBOutlet] = ACTIONS(8156), + [anon_sym_IBInspectable] = ACTIONS(8156), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8156), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8156), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8156), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8156), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8156), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8156), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8156), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8156), + [anon_sym_NS_AVAILABLE] = ACTIONS(8156), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8156), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8156), + [anon_sym_API_AVAILABLE] = ACTIONS(8156), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8156), + [anon_sym_API_DEPRECATED] = ACTIONS(8156), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8156), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8156), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8156), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8156), + [anon_sym___deprecated_msg] = ACTIONS(8156), + [anon_sym___deprecated_enum_msg] = ACTIONS(8156), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8156), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8156), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8156), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8156), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3690] = { + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym_type_descriptor] = STATE(5024), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(1149), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(1149), + [sym_IMP] = ACTIONS(1149), + [sym_BOOL] = ACTIONS(1149), + [sym_auto] = ACTIONS(1149), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3691] = { + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym_type_descriptor] = STATE(5684), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(1149), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(1149), + [sym_IMP] = ACTIONS(1149), + [sym_BOOL] = ACTIONS(1149), + [sym_auto] = ACTIONS(1149), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3692] = { + [sym_identifier] = ACTIONS(8916), + [anon_sym_COMMA] = ACTIONS(8918), + [anon_sym_RPAREN] = ACTIONS(8918), + [anon_sym_LPAREN2] = ACTIONS(8918), + [anon_sym_SEMI] = ACTIONS(8918), + [anon_sym___attribute] = ACTIONS(8916), + [anon_sym___attribute__] = ACTIONS(8916), + [anon_sym_LBRACE] = ACTIONS(8918), + [anon_sym_LBRACK] = ACTIONS(8918), + [anon_sym_EQ] = ACTIONS(8918), + [anon_sym_const] = ACTIONS(8916), + [anon_sym_volatile] = ACTIONS(8916), + [anon_sym_restrict] = ACTIONS(8916), + [anon_sym__Atomic] = ACTIONS(8916), + [anon_sym_in] = ACTIONS(8916), + [anon_sym_out] = ACTIONS(8916), + [anon_sym_inout] = ACTIONS(8916), + [anon_sym_bycopy] = ACTIONS(8916), + [anon_sym_byref] = ACTIONS(8916), + [anon_sym_oneway] = ACTIONS(8916), + [anon_sym__Nullable] = ACTIONS(8916), + [anon_sym__Nonnull] = ACTIONS(8916), + [anon_sym__Nullable_result] = ACTIONS(8916), + [anon_sym__Null_unspecified] = ACTIONS(8916), + [anon_sym___autoreleasing] = ACTIONS(8916), + [anon_sym___nullable] = ACTIONS(8916), + [anon_sym___nonnull] = ACTIONS(8916), + [anon_sym___strong] = ACTIONS(8916), + [anon_sym___weak] = ACTIONS(8916), + [anon_sym___bridge] = ACTIONS(8916), + [anon_sym___bridge_transfer] = ACTIONS(8916), + [anon_sym___bridge_retained] = ACTIONS(8916), + [anon_sym___unsafe_unretained] = ACTIONS(8916), + [anon_sym___block] = ACTIONS(8916), + [anon_sym___kindof] = ACTIONS(8916), + [anon_sym___unused] = ACTIONS(8916), + [anon_sym__Complex] = ACTIONS(8916), + [anon_sym___complex] = ACTIONS(8916), + [anon_sym_IBOutlet] = ACTIONS(8916), + [anon_sym_IBInspectable] = ACTIONS(8916), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8916), + [anon_sym_COLON] = ACTIONS(8918), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8916), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8916), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8916), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8916), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8916), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8916), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8916), + [anon_sym_NS_AVAILABLE] = ACTIONS(8916), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8916), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8916), + [anon_sym_API_AVAILABLE] = ACTIONS(8916), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8916), + [anon_sym_API_DEPRECATED] = ACTIONS(8916), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8916), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8916), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8916), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8916), + [anon_sym___deprecated_msg] = ACTIONS(8916), + [anon_sym___deprecated_enum_msg] = ACTIONS(8916), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8916), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8916), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8916), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8916), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(8916), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8916), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3693] = { + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym_type_descriptor] = STATE(5452), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(1149), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(1149), + [sym_IMP] = ACTIONS(1149), + [sym_BOOL] = ACTIONS(1149), + [sym_auto] = ACTIONS(1149), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3694] = { + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym_type_descriptor] = STATE(5676), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(1149), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(1149), + [sym_IMP] = ACTIONS(1149), + [sym_BOOL] = ACTIONS(1149), + [sym_auto] = ACTIONS(1149), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3695] = { + [sym_generic_type_references] = STATE(3795), + [sym_identifier] = ACTIONS(6781), + [anon_sym_COMMA] = ACTIONS(6783), + [anon_sym_RPAREN] = ACTIONS(6783), + [anon_sym_LPAREN2] = ACTIONS(6783), + [anon_sym_STAR] = ACTIONS(6783), + [anon_sym_GT] = ACTIONS(6783), + [anon_sym_LT] = ACTIONS(8920), + [anon_sym___attribute] = ACTIONS(6781), + [anon_sym___attribute__] = ACTIONS(6781), + [anon_sym___based] = ACTIONS(6781), + [anon_sym_LBRACE] = ACTIONS(6783), + [anon_sym_LBRACK] = ACTIONS(6783), + [anon_sym_const] = ACTIONS(6781), + [anon_sym_volatile] = ACTIONS(6781), + [anon_sym_restrict] = ACTIONS(6781), + [anon_sym__Atomic] = ACTIONS(6781), + [anon_sym_in] = ACTIONS(6781), + [anon_sym_out] = ACTIONS(6781), + [anon_sym_inout] = ACTIONS(6781), + [anon_sym_bycopy] = ACTIONS(6781), + [anon_sym_byref] = ACTIONS(6781), + [anon_sym_oneway] = ACTIONS(6781), + [anon_sym__Nullable] = ACTIONS(6781), + [anon_sym__Nonnull] = ACTIONS(6781), + [anon_sym__Nullable_result] = ACTIONS(6781), + [anon_sym__Null_unspecified] = ACTIONS(6781), + [anon_sym___autoreleasing] = ACTIONS(6781), + [anon_sym___nullable] = ACTIONS(6781), + [anon_sym___nonnull] = ACTIONS(6781), + [anon_sym___strong] = ACTIONS(6781), + [anon_sym___weak] = ACTIONS(6781), + [anon_sym___bridge] = ACTIONS(6781), + [anon_sym___bridge_transfer] = ACTIONS(6781), + [anon_sym___bridge_retained] = ACTIONS(6781), + [anon_sym___unsafe_unretained] = ACTIONS(6781), + [anon_sym___block] = ACTIONS(6781), + [anon_sym___kindof] = ACTIONS(6781), + [anon_sym___unused] = ACTIONS(6781), + [anon_sym__Complex] = ACTIONS(6781), + [anon_sym___complex] = ACTIONS(6781), + [anon_sym_IBOutlet] = ACTIONS(6781), + [anon_sym_IBInspectable] = ACTIONS(6781), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6781), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6781), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6781), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6781), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6781), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6781), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6781), + [anon_sym_NS_AVAILABLE] = ACTIONS(6781), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6781), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_API_AVAILABLE] = ACTIONS(6781), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_API_DEPRECATED] = ACTIONS(6781), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6781), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6781), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6781), + [anon_sym___deprecated_msg] = ACTIONS(6781), + [anon_sym___deprecated_enum_msg] = ACTIONS(6781), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6781), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6781), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6781), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3696] = { + [sym_identifier] = ACTIONS(8922), + [anon_sym_COMMA] = ACTIONS(8924), + [anon_sym_RPAREN] = ACTIONS(8924), + [anon_sym_LPAREN2] = ACTIONS(8924), + [anon_sym_SEMI] = ACTIONS(8924), + [anon_sym___attribute] = ACTIONS(8922), + [anon_sym___attribute__] = ACTIONS(8922), + [anon_sym_LBRACE] = ACTIONS(8924), + [anon_sym_LBRACK] = ACTIONS(8924), + [anon_sym_EQ] = ACTIONS(8924), + [anon_sym_const] = ACTIONS(8922), + [anon_sym_volatile] = ACTIONS(8922), + [anon_sym_restrict] = ACTIONS(8922), + [anon_sym__Atomic] = ACTIONS(8922), + [anon_sym_in] = ACTIONS(8922), + [anon_sym_out] = ACTIONS(8922), + [anon_sym_inout] = ACTIONS(8922), + [anon_sym_bycopy] = ACTIONS(8922), + [anon_sym_byref] = ACTIONS(8922), + [anon_sym_oneway] = ACTIONS(8922), + [anon_sym__Nullable] = ACTIONS(8922), + [anon_sym__Nonnull] = ACTIONS(8922), + [anon_sym__Nullable_result] = ACTIONS(8922), + [anon_sym__Null_unspecified] = ACTIONS(8922), + [anon_sym___autoreleasing] = ACTIONS(8922), + [anon_sym___nullable] = ACTIONS(8922), + [anon_sym___nonnull] = ACTIONS(8922), + [anon_sym___strong] = ACTIONS(8922), + [anon_sym___weak] = ACTIONS(8922), + [anon_sym___bridge] = ACTIONS(8922), + [anon_sym___bridge_transfer] = ACTIONS(8922), + [anon_sym___bridge_retained] = ACTIONS(8922), + [anon_sym___unsafe_unretained] = ACTIONS(8922), + [anon_sym___block] = ACTIONS(8922), + [anon_sym___kindof] = ACTIONS(8922), + [anon_sym___unused] = ACTIONS(8922), + [anon_sym__Complex] = ACTIONS(8922), + [anon_sym___complex] = ACTIONS(8922), + [anon_sym_IBOutlet] = ACTIONS(8922), + [anon_sym_IBInspectable] = ACTIONS(8922), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8922), + [anon_sym_COLON] = ACTIONS(8924), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8922), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8922), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8922), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8922), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8922), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8922), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8922), + [anon_sym_NS_AVAILABLE] = ACTIONS(8922), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8922), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8922), + [anon_sym_API_AVAILABLE] = ACTIONS(8922), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8922), + [anon_sym_API_DEPRECATED] = ACTIONS(8922), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8922), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8922), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8922), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8922), + [anon_sym___deprecated_msg] = ACTIONS(8922), + [anon_sym___deprecated_enum_msg] = ACTIONS(8922), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8922), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8922), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8922), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8922), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(8922), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8922), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3697] = { + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym_type_descriptor] = STATE(5388), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(1149), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(1149), + [sym_IMP] = ACTIONS(1149), + [sym_BOOL] = ACTIONS(1149), + [sym_auto] = ACTIONS(1149), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3698] = { + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym_type_descriptor] = STATE(4987), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(1149), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(1149), + [sym_IMP] = ACTIONS(1149), + [sym_BOOL] = ACTIONS(1149), + [sym_auto] = ACTIONS(1149), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3699] = { + [sym_identifier] = ACTIONS(8926), + [anon_sym_COMMA] = ACTIONS(8928), + [anon_sym_RPAREN] = ACTIONS(8928), + [anon_sym_LPAREN2] = ACTIONS(8928), + [anon_sym_SEMI] = ACTIONS(8928), + [anon_sym___attribute] = ACTIONS(8926), + [anon_sym___attribute__] = ACTIONS(8926), + [anon_sym_LBRACE] = ACTIONS(8928), + [anon_sym_LBRACK] = ACTIONS(8928), + [anon_sym_EQ] = ACTIONS(8928), + [anon_sym_const] = ACTIONS(8926), + [anon_sym_volatile] = ACTIONS(8926), + [anon_sym_restrict] = ACTIONS(8926), + [anon_sym__Atomic] = ACTIONS(8926), + [anon_sym_in] = ACTIONS(8926), + [anon_sym_out] = ACTIONS(8926), + [anon_sym_inout] = ACTIONS(8926), + [anon_sym_bycopy] = ACTIONS(8926), + [anon_sym_byref] = ACTIONS(8926), + [anon_sym_oneway] = ACTIONS(8926), + [anon_sym__Nullable] = ACTIONS(8926), + [anon_sym__Nonnull] = ACTIONS(8926), + [anon_sym__Nullable_result] = ACTIONS(8926), + [anon_sym__Null_unspecified] = ACTIONS(8926), + [anon_sym___autoreleasing] = ACTIONS(8926), + [anon_sym___nullable] = ACTIONS(8926), + [anon_sym___nonnull] = ACTIONS(8926), + [anon_sym___strong] = ACTIONS(8926), + [anon_sym___weak] = ACTIONS(8926), + [anon_sym___bridge] = ACTIONS(8926), + [anon_sym___bridge_transfer] = ACTIONS(8926), + [anon_sym___bridge_retained] = ACTIONS(8926), + [anon_sym___unsafe_unretained] = ACTIONS(8926), + [anon_sym___block] = ACTIONS(8926), + [anon_sym___kindof] = ACTIONS(8926), + [anon_sym___unused] = ACTIONS(8926), + [anon_sym__Complex] = ACTIONS(8926), + [anon_sym___complex] = ACTIONS(8926), + [anon_sym_IBOutlet] = ACTIONS(8926), + [anon_sym_IBInspectable] = ACTIONS(8926), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8926), + [anon_sym_COLON] = ACTIONS(8928), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8926), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8926), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8926), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8926), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8926), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8926), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8926), + [anon_sym_NS_AVAILABLE] = ACTIONS(8926), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8926), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8926), + [anon_sym_API_AVAILABLE] = ACTIONS(8926), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8926), + [anon_sym_API_DEPRECATED] = ACTIONS(8926), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8926), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8926), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8926), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8926), + [anon_sym___deprecated_msg] = ACTIONS(8926), + [anon_sym___deprecated_enum_msg] = ACTIONS(8926), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8926), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8926), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8926), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8926), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(8926), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8926), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3700] = { + [sym_identifier] = ACTIONS(8930), + [anon_sym_COMMA] = ACTIONS(8932), + [anon_sym_RPAREN] = ACTIONS(8932), + [anon_sym_LPAREN2] = ACTIONS(8932), + [anon_sym_SEMI] = ACTIONS(8932), + [anon_sym___attribute] = ACTIONS(8930), + [anon_sym___attribute__] = ACTIONS(8930), + [anon_sym_LBRACE] = ACTIONS(8932), + [anon_sym_LBRACK] = ACTIONS(8932), + [anon_sym_EQ] = ACTIONS(8932), + [anon_sym_const] = ACTIONS(8930), + [anon_sym_volatile] = ACTIONS(8930), + [anon_sym_restrict] = ACTIONS(8930), + [anon_sym__Atomic] = ACTIONS(8930), + [anon_sym_in] = ACTIONS(8930), + [anon_sym_out] = ACTIONS(8930), + [anon_sym_inout] = ACTIONS(8930), + [anon_sym_bycopy] = ACTIONS(8930), + [anon_sym_byref] = ACTIONS(8930), + [anon_sym_oneway] = ACTIONS(8930), + [anon_sym__Nullable] = ACTIONS(8930), + [anon_sym__Nonnull] = ACTIONS(8930), + [anon_sym__Nullable_result] = ACTIONS(8930), + [anon_sym__Null_unspecified] = ACTIONS(8930), + [anon_sym___autoreleasing] = ACTIONS(8930), + [anon_sym___nullable] = ACTIONS(8930), + [anon_sym___nonnull] = ACTIONS(8930), + [anon_sym___strong] = ACTIONS(8930), + [anon_sym___weak] = ACTIONS(8930), + [anon_sym___bridge] = ACTIONS(8930), + [anon_sym___bridge_transfer] = ACTIONS(8930), + [anon_sym___bridge_retained] = ACTIONS(8930), + [anon_sym___unsafe_unretained] = ACTIONS(8930), + [anon_sym___block] = ACTIONS(8930), + [anon_sym___kindof] = ACTIONS(8930), + [anon_sym___unused] = ACTIONS(8930), + [anon_sym__Complex] = ACTIONS(8930), + [anon_sym___complex] = ACTIONS(8930), + [anon_sym_IBOutlet] = ACTIONS(8930), + [anon_sym_IBInspectable] = ACTIONS(8930), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8930), + [anon_sym_COLON] = ACTIONS(8932), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8930), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8930), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8930), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8930), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8930), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8930), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8930), + [anon_sym_NS_AVAILABLE] = ACTIONS(8930), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8930), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8930), + [anon_sym_API_AVAILABLE] = ACTIONS(8930), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8930), + [anon_sym_API_DEPRECATED] = ACTIONS(8930), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8930), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8930), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8930), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8930), + [anon_sym___deprecated_msg] = ACTIONS(8930), + [anon_sym___deprecated_enum_msg] = ACTIONS(8930), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8930), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8930), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8930), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8930), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(8930), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8930), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3701] = { + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym_type_descriptor] = STATE(5784), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(1149), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(1149), + [sym_IMP] = ACTIONS(1149), + [sym_BOOL] = ACTIONS(1149), + [sym_auto] = ACTIONS(1149), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3702] = { + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym_type_descriptor] = STATE(5619), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(1149), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(1149), + [sym_IMP] = ACTIONS(1149), + [sym_BOOL] = ACTIONS(1149), + [sym_auto] = ACTIONS(1149), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3703] = { + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym_type_descriptor] = STATE(5234), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(1149), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(1149), + [sym_IMP] = ACTIONS(1149), + [sym_BOOL] = ACTIONS(1149), + [sym_auto] = ACTIONS(1149), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3704] = { + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym_type_descriptor] = STATE(5697), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(1149), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(1149), + [sym_IMP] = ACTIONS(1149), + [sym_BOOL] = ACTIONS(1149), + [sym_auto] = ACTIONS(1149), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3705] = { + [sym_attribute_specifier] = STATE(4150), + [sym_type_qualifier] = STATE(5571), + [sym_parameter_list] = STATE(3759), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3849), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_SEMI] = ACTIONS(8934), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_LBRACK] = ACTIONS(8856), + [anon_sym_EQ] = ACTIONS(8858), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3706] = { + [sym_attribute_specifier] = STATE(4170), + [sym_type_qualifier] = STATE(5305), + [sym_parameter_list] = STATE(3759), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3842), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_SEMI] = ACTIONS(8936), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_LBRACK] = ACTIONS(8856), + [anon_sym_EQ] = ACTIONS(8858), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3707] = { + [sym_attribute_specifier] = STATE(4178), + [sym_type_qualifier] = STATE(5392), + [sym_parameter_list] = STATE(3759), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3826), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_SEMI] = ACTIONS(8852), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_LBRACK] = ACTIONS(8856), + [anon_sym_EQ] = ACTIONS(8858), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3708] = { + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym_type_descriptor] = STATE(5621), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(1149), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(1149), + [sym_IMP] = ACTIONS(1149), + [sym_BOOL] = ACTIONS(1149), + [sym_auto] = ACTIONS(1149), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3709] = { + [sym_attribute_specifier] = STATE(4171), + [sym_type_qualifier] = STATE(5317), + [sym_parameter_list] = STATE(3759), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3847), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_SEMI] = ACTIONS(8938), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_LBRACK] = ACTIONS(8856), + [anon_sym_EQ] = ACTIONS(8858), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3710] = { + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym_type_descriptor] = STATE(5118), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(1149), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(1149), + [sym_IMP] = ACTIONS(1149), + [sym_BOOL] = ACTIONS(1149), + [sym_auto] = ACTIONS(1149), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3711] = { + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym_type_descriptor] = STATE(5112), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(1149), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(1149), + [sym_IMP] = ACTIONS(1149), + [sym_BOOL] = ACTIONS(1149), + [sym_auto] = ACTIONS(1149), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3712] = { + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym_type_descriptor] = STATE(4955), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(1149), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(1149), + [sym_IMP] = ACTIONS(1149), + [sym_BOOL] = ACTIONS(1149), + [sym_auto] = ACTIONS(1149), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3713] = { + [sym_enumerator_list] = STATE(3746), + [sym_identifier] = ACTIONS(8134), + [anon_sym_COMMA] = ACTIONS(8136), + [anon_sym_RPAREN] = ACTIONS(8136), + [anon_sym_LPAREN2] = ACTIONS(8136), + [anon_sym_STAR] = ACTIONS(8136), + [anon_sym_GT] = ACTIONS(8136), + [anon_sym_SEMI] = ACTIONS(8136), + [anon_sym___attribute] = ACTIONS(8134), + [anon_sym___attribute__] = ACTIONS(8134), + [anon_sym___based] = ACTIONS(8134), + [anon_sym_LBRACE] = ACTIONS(8914), + [anon_sym_LBRACK] = ACTIONS(8136), + [anon_sym_const] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym_in] = ACTIONS(8134), + [anon_sym_out] = ACTIONS(8134), + [anon_sym_inout] = ACTIONS(8134), + [anon_sym_bycopy] = ACTIONS(8134), + [anon_sym_byref] = ACTIONS(8134), + [anon_sym_oneway] = ACTIONS(8134), + [anon_sym__Nullable] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym__Nullable_result] = ACTIONS(8134), + [anon_sym__Null_unspecified] = ACTIONS(8134), + [anon_sym___autoreleasing] = ACTIONS(8134), + [anon_sym___nullable] = ACTIONS(8134), + [anon_sym___nonnull] = ACTIONS(8134), + [anon_sym___strong] = ACTIONS(8134), + [anon_sym___weak] = ACTIONS(8134), + [anon_sym___bridge] = ACTIONS(8134), + [anon_sym___bridge_transfer] = ACTIONS(8134), + [anon_sym___bridge_retained] = ACTIONS(8134), + [anon_sym___unsafe_unretained] = ACTIONS(8134), + [anon_sym___block] = ACTIONS(8134), + [anon_sym___kindof] = ACTIONS(8134), + [anon_sym___unused] = ACTIONS(8134), + [anon_sym__Complex] = ACTIONS(8134), + [anon_sym___complex] = ACTIONS(8134), + [anon_sym_IBOutlet] = ACTIONS(8134), + [anon_sym_IBInspectable] = ACTIONS(8134), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8134), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8134), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8134), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8134), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8134), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8134), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8134), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8134), + [anon_sym_NS_AVAILABLE] = ACTIONS(8134), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8134), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8134), + [anon_sym_API_AVAILABLE] = ACTIONS(8134), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8134), + [anon_sym_API_DEPRECATED] = ACTIONS(8134), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8134), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8134), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8134), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8134), + [anon_sym___deprecated_msg] = ACTIONS(8134), + [anon_sym___deprecated_enum_msg] = ACTIONS(8134), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8134), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8134), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8134), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8134), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3714] = { + [sym_attribute_specifier] = STATE(4237), + [sym_type_qualifier] = STATE(5275), + [sym_parameter_list] = STATE(3759), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3830), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_SEMI] = ACTIONS(8890), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_LBRACK] = ACTIONS(8856), + [anon_sym_EQ] = ACTIONS(8858), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3715] = { + [sym_attribute_specifier] = STATE(4151), + [sym_type_qualifier] = STATE(5617), + [sym_parameter_list] = STATE(3759), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3844), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_SEMI] = ACTIONS(8872), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_LBRACK] = ACTIONS(8856), + [anon_sym_EQ] = ACTIONS(8858), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3716] = { + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym_type_descriptor] = STATE(5584), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(1149), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(1149), + [sym_IMP] = ACTIONS(1149), + [sym_BOOL] = ACTIONS(1149), + [sym_auto] = ACTIONS(1149), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3717] = { + [sym_attribute_specifier] = STATE(4180), + [sym_type_qualifier] = STATE(5727), + [sym_parameter_list] = STATE(3759), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3838), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_SEMI] = ACTIONS(8940), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_LBRACK] = ACTIONS(8856), + [anon_sym_EQ] = ACTIONS(8858), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3718] = { + [sym_attribute_specifier] = STATE(4122), + [sym_type_qualifier] = STATE(5704), + [sym_parameter_list] = STATE(3759), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3845), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_SEMI] = ACTIONS(8870), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_LBRACK] = ACTIONS(8856), + [anon_sym_EQ] = ACTIONS(8858), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3719] = { + [sym_identifier] = ACTIONS(8942), + [anon_sym_COMMA] = ACTIONS(8944), + [anon_sym_RPAREN] = ACTIONS(8944), + [anon_sym_LPAREN2] = ACTIONS(8944), + [anon_sym_SEMI] = ACTIONS(8944), + [anon_sym___attribute] = ACTIONS(8942), + [anon_sym___attribute__] = ACTIONS(8942), + [anon_sym_LBRACE] = ACTIONS(8944), + [anon_sym_LBRACK] = ACTIONS(8944), + [anon_sym_EQ] = ACTIONS(8944), + [anon_sym_const] = ACTIONS(8942), + [anon_sym_volatile] = ACTIONS(8942), + [anon_sym_restrict] = ACTIONS(8942), + [anon_sym__Atomic] = ACTIONS(8942), + [anon_sym_in] = ACTIONS(8942), + [anon_sym_out] = ACTIONS(8942), + [anon_sym_inout] = ACTIONS(8942), + [anon_sym_bycopy] = ACTIONS(8942), + [anon_sym_byref] = ACTIONS(8942), + [anon_sym_oneway] = ACTIONS(8942), + [anon_sym__Nullable] = ACTIONS(8942), + [anon_sym__Nonnull] = ACTIONS(8942), + [anon_sym__Nullable_result] = ACTIONS(8942), + [anon_sym__Null_unspecified] = ACTIONS(8942), + [anon_sym___autoreleasing] = ACTIONS(8942), + [anon_sym___nullable] = ACTIONS(8942), + [anon_sym___nonnull] = ACTIONS(8942), + [anon_sym___strong] = ACTIONS(8942), + [anon_sym___weak] = ACTIONS(8942), + [anon_sym___bridge] = ACTIONS(8942), + [anon_sym___bridge_transfer] = ACTIONS(8942), + [anon_sym___bridge_retained] = ACTIONS(8942), + [anon_sym___unsafe_unretained] = ACTIONS(8942), + [anon_sym___block] = ACTIONS(8942), + [anon_sym___kindof] = ACTIONS(8942), + [anon_sym___unused] = ACTIONS(8942), + [anon_sym__Complex] = ACTIONS(8942), + [anon_sym___complex] = ACTIONS(8942), + [anon_sym_IBOutlet] = ACTIONS(8942), + [anon_sym_IBInspectable] = ACTIONS(8942), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8942), + [anon_sym_COLON] = ACTIONS(8944), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8942), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8942), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8942), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8942), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8942), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8942), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8942), + [anon_sym_NS_AVAILABLE] = ACTIONS(8942), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8942), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8942), + [anon_sym_API_AVAILABLE] = ACTIONS(8942), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8942), + [anon_sym_API_DEPRECATED] = ACTIONS(8942), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8942), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8942), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8942), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8942), + [anon_sym___deprecated_msg] = ACTIONS(8942), + [anon_sym___deprecated_enum_msg] = ACTIONS(8942), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8942), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8942), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8942), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8942), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(8942), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(8942), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3720] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3612), + [sym_identifier] = ACTIONS(8946), + [anon_sym_LPAREN2] = ACTIONS(7933), + [anon_sym_STAR] = ACTIONS(7933), + [anon_sym___attribute] = ACTIONS(7935), + [anon_sym___attribute__] = ACTIONS(7935), + [anon_sym___based] = ACTIONS(7935), + [anon_sym_LBRACE] = ACTIONS(7933), + [anon_sym_const] = ACTIONS(7935), + [anon_sym_volatile] = ACTIONS(7935), + [anon_sym_restrict] = ACTIONS(7935), + [anon_sym__Atomic] = ACTIONS(7935), + [anon_sym_in] = ACTIONS(7935), + [anon_sym_out] = ACTIONS(7935), + [anon_sym_inout] = ACTIONS(7935), + [anon_sym_bycopy] = ACTIONS(7935), + [anon_sym_byref] = ACTIONS(7935), + [anon_sym_oneway] = ACTIONS(7935), + [anon_sym__Nullable] = ACTIONS(7935), + [anon_sym__Nonnull] = ACTIONS(7935), + [anon_sym__Nullable_result] = ACTIONS(7935), + [anon_sym__Null_unspecified] = ACTIONS(7935), + [anon_sym___autoreleasing] = ACTIONS(7935), + [anon_sym___nullable] = ACTIONS(7935), + [anon_sym___nonnull] = ACTIONS(7935), + [anon_sym___strong] = ACTIONS(7935), + [anon_sym___weak] = ACTIONS(7935), + [anon_sym___bridge] = ACTIONS(7935), + [anon_sym___bridge_transfer] = ACTIONS(7935), + [anon_sym___bridge_retained] = ACTIONS(7935), + [anon_sym___unsafe_unretained] = ACTIONS(7935), + [anon_sym___block] = ACTIONS(7935), + [anon_sym___kindof] = ACTIONS(7935), + [anon_sym___unused] = ACTIONS(7935), + [anon_sym__Complex] = ACTIONS(7935), + [anon_sym___complex] = ACTIONS(7935), + [anon_sym_IBOutlet] = ACTIONS(7935), + [anon_sym_IBInspectable] = ACTIONS(7935), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7935), + [anon_sym_signed] = ACTIONS(8949), + [anon_sym_unsigned] = ACTIONS(8949), + [anon_sym_long] = ACTIONS(8949), + [anon_sym_short] = ACTIONS(8949), + [sym_primitive_type] = ACTIONS(8951), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7935), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7935), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7935), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7935), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7935), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7935), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7935), + [anon_sym_NS_AVAILABLE] = ACTIONS(7935), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7935), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7935), + [anon_sym_API_AVAILABLE] = ACTIONS(7935), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7935), + [anon_sym_API_DEPRECATED] = ACTIONS(7935), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7935), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7935), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7935), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7935), + [anon_sym___deprecated_msg] = ACTIONS(7935), + [anon_sym___deprecated_enum_msg] = ACTIONS(7935), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7935), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7935), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7935), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7935), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3721] = { + [sym_type_qualifier] = STATE(3734), + [sym__type_specifier] = STATE(3918), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym_type_descriptor] = STATE(5543), + [sym_macro_type_specifier] = STATE(3918), + [sym_ns_enum_specifier] = STATE(3918), + [sym_typeof_specifier] = STATE(3918), + [sym_atomic_specifier] = STATE(3918), + [sym_generic_type_specifier] = STATE(3918), + [aux_sym_type_definition_repeat1] = STATE(3734), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(1149), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(1149), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(1149), + [sym_IMP] = ACTIONS(1149), + [sym_BOOL] = ACTIONS(1149), + [sym_auto] = ACTIONS(1149), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3722] = { + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3506), + [sym_sized_type_specifier] = STATE(3506), + [sym_enum_specifier] = STATE(3506), + [sym_struct_specifier] = STATE(3506), + [sym_union_specifier] = STATE(3506), + [sym_macro_type_specifier] = STATE(3506), + [sym_ns_enum_specifier] = STATE(3466), + [sym_typeof_specifier] = STATE(3506), + [sym_atomic_specifier] = STATE(3506), + [sym_generic_type_specifier] = STATE(3506), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7652), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7652), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7652), + [sym_IMP] = ACTIONS(7652), + [sym_BOOL] = ACTIONS(7652), + [sym_auto] = ACTIONS(7652), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -558807,75 +555038,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3723] = { - [sym_identifier] = ACTIONS(8914), - [anon_sym_COMMA] = ACTIONS(8916), - [anon_sym_RPAREN] = ACTIONS(8916), - [anon_sym_LPAREN2] = ACTIONS(8916), - [anon_sym_GT] = ACTIONS(8916), - [anon_sym_SEMI] = ACTIONS(8916), - [anon_sym___attribute] = ACTIONS(8914), - [anon_sym___attribute__] = ACTIONS(8914), - [anon_sym_LBRACE] = ACTIONS(8916), - [anon_sym_LBRACK] = ACTIONS(8916), - [anon_sym_EQ] = ACTIONS(8916), - [anon_sym_const] = ACTIONS(8914), - [anon_sym_volatile] = ACTIONS(8914), - [anon_sym_restrict] = ACTIONS(8914), - [anon_sym__Atomic] = ACTIONS(8914), - [anon_sym_in] = ACTIONS(8914), - [anon_sym_out] = ACTIONS(8914), - [anon_sym_inout] = ACTIONS(8914), - [anon_sym_bycopy] = ACTIONS(8914), - [anon_sym_byref] = ACTIONS(8914), - [anon_sym_oneway] = ACTIONS(8914), - [anon_sym__Nullable] = ACTIONS(8914), - [anon_sym__Nonnull] = ACTIONS(8914), - [anon_sym__Nullable_result] = ACTIONS(8914), - [anon_sym__Null_unspecified] = ACTIONS(8914), - [anon_sym___autoreleasing] = ACTIONS(8914), - [anon_sym___nullable] = ACTIONS(8914), - [anon_sym___nonnull] = ACTIONS(8914), - [anon_sym___strong] = ACTIONS(8914), - [anon_sym___weak] = ACTIONS(8914), - [anon_sym___bridge] = ACTIONS(8914), - [anon_sym___bridge_transfer] = ACTIONS(8914), - [anon_sym___bridge_retained] = ACTIONS(8914), - [anon_sym___unsafe_unretained] = ACTIONS(8914), - [anon_sym___block] = ACTIONS(8914), - [anon_sym___kindof] = ACTIONS(8914), - [anon_sym___unused] = ACTIONS(8914), - [anon_sym__Complex] = ACTIONS(8914), - [anon_sym___complex] = ACTIONS(8914), - [anon_sym_IBOutlet] = ACTIONS(8914), - [anon_sym_IBInspectable] = ACTIONS(8914), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8914), - [anon_sym_COLON] = ACTIONS(8916), + [sym_identifier] = ACTIONS(7286), + [anon_sym_COMMA] = ACTIONS(7288), + [anon_sym_RPAREN] = ACTIONS(7288), + [anon_sym_LPAREN2] = ACTIONS(7288), + [anon_sym_STAR] = ACTIONS(7288), + [anon_sym_GT] = ACTIONS(7288), + [anon_sym_LT] = ACTIONS(7288), + [anon_sym___attribute] = ACTIONS(7286), + [anon_sym___attribute__] = ACTIONS(7286), + [anon_sym___based] = ACTIONS(7286), + [anon_sym_LBRACE] = ACTIONS(7288), + [anon_sym_LBRACK] = ACTIONS(7288), + [anon_sym_const] = ACTIONS(7286), + [anon_sym_volatile] = ACTIONS(7286), + [anon_sym_restrict] = ACTIONS(7286), + [anon_sym__Atomic] = ACTIONS(7286), + [anon_sym_in] = ACTIONS(7286), + [anon_sym_out] = ACTIONS(7286), + [anon_sym_inout] = ACTIONS(7286), + [anon_sym_bycopy] = ACTIONS(7286), + [anon_sym_byref] = ACTIONS(7286), + [anon_sym_oneway] = ACTIONS(7286), + [anon_sym__Nullable] = ACTIONS(7286), + [anon_sym__Nonnull] = ACTIONS(7286), + [anon_sym__Nullable_result] = ACTIONS(7286), + [anon_sym__Null_unspecified] = ACTIONS(7286), + [anon_sym___autoreleasing] = ACTIONS(7286), + [anon_sym___nullable] = ACTIONS(7286), + [anon_sym___nonnull] = ACTIONS(7286), + [anon_sym___strong] = ACTIONS(7286), + [anon_sym___weak] = ACTIONS(7286), + [anon_sym___bridge] = ACTIONS(7286), + [anon_sym___bridge_transfer] = ACTIONS(7286), + [anon_sym___bridge_retained] = ACTIONS(7286), + [anon_sym___unsafe_unretained] = ACTIONS(7286), + [anon_sym___block] = ACTIONS(7286), + [anon_sym___kindof] = ACTIONS(7286), + [anon_sym___unused] = ACTIONS(7286), + [anon_sym__Complex] = ACTIONS(7286), + [anon_sym___complex] = ACTIONS(7286), + [anon_sym_IBOutlet] = ACTIONS(7286), + [anon_sym_IBInspectable] = ACTIONS(7286), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7286), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8914), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8914), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8914), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8914), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8914), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8914), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8914), - [anon_sym_NS_AVAILABLE] = ACTIONS(8914), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8914), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8914), - [anon_sym_API_AVAILABLE] = ACTIONS(8914), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8914), - [anon_sym_API_DEPRECATED] = ACTIONS(8914), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8914), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8914), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8914), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8914), - [anon_sym___deprecated_msg] = ACTIONS(8914), - [anon_sym___deprecated_enum_msg] = ACTIONS(8914), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8914), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8914), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8914), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8914), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(8914), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(8914), + [sym_method_attribute_specifier] = ACTIONS(7286), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7286), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7286), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7286), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7286), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7286), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7286), + [anon_sym_NS_AVAILABLE] = ACTIONS(7286), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7286), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7286), + [anon_sym_API_AVAILABLE] = ACTIONS(7286), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7286), + [anon_sym_API_DEPRECATED] = ACTIONS(7286), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7286), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7286), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7286), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7286), + [anon_sym___deprecated_msg] = ACTIONS(7286), + [anon_sym___deprecated_enum_msg] = ACTIONS(7286), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7286), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7286), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7286), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7286), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -558884,75 +555113,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3724] = { - [sym_generic_type_references] = STATE(3793), - [sym_identifier] = ACTIONS(6814), - [anon_sym_COMMA] = ACTIONS(6816), - [anon_sym_RPAREN] = ACTIONS(6816), - [anon_sym_LPAREN2] = ACTIONS(6816), - [anon_sym_STAR] = ACTIONS(6816), - [anon_sym_GT] = ACTIONS(6816), - [anon_sym_LT] = ACTIONS(8918), - [anon_sym_SEMI] = ACTIONS(6816), - [anon_sym___attribute] = ACTIONS(6814), - [anon_sym___attribute__] = ACTIONS(6814), - [anon_sym___based] = ACTIONS(6814), - [anon_sym_LBRACE] = ACTIONS(6816), - [anon_sym_LBRACK] = ACTIONS(6816), - [anon_sym_const] = ACTIONS(6814), - [anon_sym_volatile] = ACTIONS(6814), - [anon_sym_restrict] = ACTIONS(6814), - [anon_sym__Atomic] = ACTIONS(6814), - [anon_sym_in] = ACTIONS(6814), - [anon_sym_out] = ACTIONS(6814), - [anon_sym_inout] = ACTIONS(6814), - [anon_sym_bycopy] = ACTIONS(6814), - [anon_sym_byref] = ACTIONS(6814), - [anon_sym_oneway] = ACTIONS(6814), - [anon_sym__Nullable] = ACTIONS(6814), - [anon_sym__Nonnull] = ACTIONS(6814), - [anon_sym__Nullable_result] = ACTIONS(6814), - [anon_sym__Null_unspecified] = ACTIONS(6814), - [anon_sym___autoreleasing] = ACTIONS(6814), - [anon_sym___nullable] = ACTIONS(6814), - [anon_sym___nonnull] = ACTIONS(6814), - [anon_sym___strong] = ACTIONS(6814), - [anon_sym___weak] = ACTIONS(6814), - [anon_sym___bridge] = ACTIONS(6814), - [anon_sym___bridge_transfer] = ACTIONS(6814), - [anon_sym___bridge_retained] = ACTIONS(6814), - [anon_sym___unsafe_unretained] = ACTIONS(6814), - [anon_sym___block] = ACTIONS(6814), - [anon_sym___kindof] = ACTIONS(6814), - [anon_sym___unused] = ACTIONS(6814), - [anon_sym__Complex] = ACTIONS(6814), - [anon_sym___complex] = ACTIONS(6814), - [anon_sym_IBOutlet] = ACTIONS(6814), - [anon_sym_IBInspectable] = ACTIONS(6814), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6814), + [sym_type_qualifier] = STATE(3769), + [sym__type_specifier] = STATE(3507), + [sym_sized_type_specifier] = STATE(3507), + [sym_enum_specifier] = STATE(3507), + [sym_struct_specifier] = STATE(3507), + [sym_union_specifier] = STATE(3507), + [sym_macro_type_specifier] = STATE(3507), + [sym_ns_enum_specifier] = STATE(3483), + [sym_typeof_specifier] = STATE(3507), + [sym_atomic_specifier] = STATE(3507), + [sym_generic_type_specifier] = STATE(3507), + [aux_sym_type_definition_repeat1] = STATE(3769), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7656), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6814), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6814), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6814), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6814), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6814), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6814), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6814), - [anon_sym_NS_AVAILABLE] = ACTIONS(6814), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6814), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6814), - [anon_sym_API_AVAILABLE] = ACTIONS(6814), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6814), - [anon_sym_API_DEPRECATED] = ACTIONS(6814), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6814), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6814), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6814), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6814), - [anon_sym___deprecated_msg] = ACTIONS(6814), - [anon_sym___deprecated_enum_msg] = ACTIONS(6814), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6814), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6814), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6814), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6814), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7656), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7656), + [sym_IMP] = ACTIONS(7656), + [sym_BOOL] = ACTIONS(7656), + [sym_auto] = ACTIONS(7656), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -558961,8 +555188,3006 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3725] = { - [sym_type_qualifier] = STATE(3725), - [aux_sym_type_definition_repeat1] = STATE(3725), + [sym_enumerator_list] = STATE(3742), + [sym_identifier] = ACTIONS(8156), + [anon_sym_COMMA] = ACTIONS(8158), + [anon_sym_RPAREN] = ACTIONS(8158), + [anon_sym_LPAREN2] = ACTIONS(8158), + [anon_sym_STAR] = ACTIONS(8158), + [anon_sym_GT] = ACTIONS(8158), + [anon_sym___attribute] = ACTIONS(8156), + [anon_sym___attribute__] = ACTIONS(8156), + [anon_sym___based] = ACTIONS(8156), + [anon_sym_LBRACE] = ACTIONS(8953), + [anon_sym_LBRACK] = ACTIONS(8158), + [anon_sym_const] = ACTIONS(8156), + [anon_sym_volatile] = ACTIONS(8156), + [anon_sym_restrict] = ACTIONS(8156), + [anon_sym__Atomic] = ACTIONS(8156), + [anon_sym_in] = ACTIONS(8156), + [anon_sym_out] = ACTIONS(8156), + [anon_sym_inout] = ACTIONS(8156), + [anon_sym_bycopy] = ACTIONS(8156), + [anon_sym_byref] = ACTIONS(8156), + [anon_sym_oneway] = ACTIONS(8156), + [anon_sym__Nullable] = ACTIONS(8156), + [anon_sym__Nonnull] = ACTIONS(8156), + [anon_sym__Nullable_result] = ACTIONS(8156), + [anon_sym__Null_unspecified] = ACTIONS(8156), + [anon_sym___autoreleasing] = ACTIONS(8156), + [anon_sym___nullable] = ACTIONS(8156), + [anon_sym___nonnull] = ACTIONS(8156), + [anon_sym___strong] = ACTIONS(8156), + [anon_sym___weak] = ACTIONS(8156), + [anon_sym___bridge] = ACTIONS(8156), + [anon_sym___bridge_transfer] = ACTIONS(8156), + [anon_sym___bridge_retained] = ACTIONS(8156), + [anon_sym___unsafe_unretained] = ACTIONS(8156), + [anon_sym___block] = ACTIONS(8156), + [anon_sym___kindof] = ACTIONS(8156), + [anon_sym___unused] = ACTIONS(8156), + [anon_sym__Complex] = ACTIONS(8156), + [anon_sym___complex] = ACTIONS(8156), + [anon_sym_IBOutlet] = ACTIONS(8156), + [anon_sym_IBInspectable] = ACTIONS(8156), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8156), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8156), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8156), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8156), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8156), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8156), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8156), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8156), + [anon_sym_NS_AVAILABLE] = ACTIONS(8156), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8156), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8156), + [anon_sym_API_AVAILABLE] = ACTIONS(8156), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8156), + [anon_sym_API_DEPRECATED] = ACTIONS(8156), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8156), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8156), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8156), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8156), + [anon_sym___deprecated_msg] = ACTIONS(8156), + [anon_sym___deprecated_enum_msg] = ACTIONS(8156), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8156), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8156), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8156), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8156), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3726] = { + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3540), + [sym_sized_type_specifier] = STATE(3540), + [sym_enum_specifier] = STATE(3540), + [sym_struct_specifier] = STATE(3540), + [sym_union_specifier] = STATE(3540), + [sym_macro_type_specifier] = STATE(3540), + [sym_ns_enum_specifier] = STATE(3388), + [sym_typeof_specifier] = STATE(3540), + [sym_atomic_specifier] = STATE(3540), + [sym_generic_type_specifier] = STATE(3540), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(8956), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(8956), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(8956), + [sym_IMP] = ACTIONS(8956), + [sym_BOOL] = ACTIONS(8956), + [sym_auto] = ACTIONS(8956), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3727] = { + [sym_identifier] = ACTIONS(8341), + [anon_sym_COMMA] = ACTIONS(8343), + [anon_sym_RPAREN] = ACTIONS(8343), + [anon_sym_LPAREN2] = ACTIONS(8343), + [anon_sym_STAR] = ACTIONS(8343), + [anon_sym_GT] = ACTIONS(8343), + [anon_sym_SEMI] = ACTIONS(8343), + [anon_sym___attribute] = ACTIONS(8341), + [anon_sym___attribute__] = ACTIONS(8341), + [anon_sym___based] = ACTIONS(8341), + [anon_sym_LBRACE] = ACTIONS(8343), + [anon_sym_LBRACK] = ACTIONS(8343), + [anon_sym_const] = ACTIONS(8341), + [anon_sym_volatile] = ACTIONS(8341), + [anon_sym_restrict] = ACTIONS(8341), + [anon_sym__Atomic] = ACTIONS(8341), + [anon_sym_in] = ACTIONS(8341), + [anon_sym_out] = ACTIONS(8341), + [anon_sym_inout] = ACTIONS(8341), + [anon_sym_bycopy] = ACTIONS(8341), + [anon_sym_byref] = ACTIONS(8341), + [anon_sym_oneway] = ACTIONS(8341), + [anon_sym__Nullable] = ACTIONS(8341), + [anon_sym__Nonnull] = ACTIONS(8341), + [anon_sym__Nullable_result] = ACTIONS(8341), + [anon_sym__Null_unspecified] = ACTIONS(8341), + [anon_sym___autoreleasing] = ACTIONS(8341), + [anon_sym___nullable] = ACTIONS(8341), + [anon_sym___nonnull] = ACTIONS(8341), + [anon_sym___strong] = ACTIONS(8341), + [anon_sym___weak] = ACTIONS(8341), + [anon_sym___bridge] = ACTIONS(8341), + [anon_sym___bridge_transfer] = ACTIONS(8341), + [anon_sym___bridge_retained] = ACTIONS(8341), + [anon_sym___unsafe_unretained] = ACTIONS(8341), + [anon_sym___block] = ACTIONS(8341), + [anon_sym___kindof] = ACTIONS(8341), + [anon_sym___unused] = ACTIONS(8341), + [anon_sym__Complex] = ACTIONS(8341), + [anon_sym___complex] = ACTIONS(8341), + [anon_sym_IBOutlet] = ACTIONS(8341), + [anon_sym_IBInspectable] = ACTIONS(8341), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8341), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8341), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8341), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8341), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8341), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8341), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8341), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8341), + [anon_sym_NS_AVAILABLE] = ACTIONS(8341), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8341), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8341), + [anon_sym_API_AVAILABLE] = ACTIONS(8341), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8341), + [anon_sym_API_DEPRECATED] = ACTIONS(8341), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8341), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8341), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8341), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8341), + [anon_sym___deprecated_msg] = ACTIONS(8341), + [anon_sym___deprecated_enum_msg] = ACTIONS(8341), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8341), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8341), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8341), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8341), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3728] = { + [sym_identifier] = ACTIONS(7841), + [anon_sym_COMMA] = ACTIONS(7843), + [anon_sym_RPAREN] = ACTIONS(7843), + [anon_sym_LPAREN2] = ACTIONS(7843), + [anon_sym_STAR] = ACTIONS(7843), + [anon_sym_GT] = ACTIONS(7843), + [anon_sym_SEMI] = ACTIONS(7843), + [anon_sym___attribute] = ACTIONS(7841), + [anon_sym___attribute__] = ACTIONS(7841), + [anon_sym___based] = ACTIONS(7841), + [anon_sym_LBRACE] = ACTIONS(7843), + [anon_sym_LBRACK] = ACTIONS(7843), + [anon_sym_const] = ACTIONS(7841), + [anon_sym_volatile] = ACTIONS(7841), + [anon_sym_restrict] = ACTIONS(7841), + [anon_sym__Atomic] = ACTIONS(7841), + [anon_sym_in] = ACTIONS(7841), + [anon_sym_out] = ACTIONS(7841), + [anon_sym_inout] = ACTIONS(7841), + [anon_sym_bycopy] = ACTIONS(7841), + [anon_sym_byref] = ACTIONS(7841), + [anon_sym_oneway] = ACTIONS(7841), + [anon_sym__Nullable] = ACTIONS(7841), + [anon_sym__Nonnull] = ACTIONS(7841), + [anon_sym__Nullable_result] = ACTIONS(7841), + [anon_sym__Null_unspecified] = ACTIONS(7841), + [anon_sym___autoreleasing] = ACTIONS(7841), + [anon_sym___nullable] = ACTIONS(7841), + [anon_sym___nonnull] = ACTIONS(7841), + [anon_sym___strong] = ACTIONS(7841), + [anon_sym___weak] = ACTIONS(7841), + [anon_sym___bridge] = ACTIONS(7841), + [anon_sym___bridge_transfer] = ACTIONS(7841), + [anon_sym___bridge_retained] = ACTIONS(7841), + [anon_sym___unsafe_unretained] = ACTIONS(7841), + [anon_sym___block] = ACTIONS(7841), + [anon_sym___kindof] = ACTIONS(7841), + [anon_sym___unused] = ACTIONS(7841), + [anon_sym__Complex] = ACTIONS(7841), + [anon_sym___complex] = ACTIONS(7841), + [anon_sym_IBOutlet] = ACTIONS(7841), + [anon_sym_IBInspectable] = ACTIONS(7841), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7841), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7841), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7841), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7841), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7841), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7841), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7841), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7841), + [anon_sym_NS_AVAILABLE] = ACTIONS(7841), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7841), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7841), + [anon_sym_API_AVAILABLE] = ACTIONS(7841), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7841), + [anon_sym_API_DEPRECATED] = ACTIONS(7841), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7841), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7841), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7841), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7841), + [anon_sym___deprecated_msg] = ACTIONS(7841), + [anon_sym___deprecated_enum_msg] = ACTIONS(7841), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7841), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7841), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7841), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7841), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3729] = { + [sym_type_qualifier] = STATE(3726), + [sym__type_specifier] = STATE(3523), + [sym_sized_type_specifier] = STATE(3523), + [sym_enum_specifier] = STATE(3523), + [sym_struct_specifier] = STATE(3523), + [sym_union_specifier] = STATE(3523), + [sym_macro_type_specifier] = STATE(3523), + [sym_ns_enum_specifier] = STATE(3412), + [sym_typeof_specifier] = STATE(3523), + [sym_atomic_specifier] = STATE(3523), + [sym_generic_type_specifier] = STATE(3523), + [aux_sym_type_definition_repeat1] = STATE(3726), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(8958), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(8958), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(8958), + [sym_IMP] = ACTIONS(8958), + [sym_BOOL] = ACTIONS(8958), + [sym_auto] = ACTIONS(8958), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3730] = { + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3523), + [sym_sized_type_specifier] = STATE(3523), + [sym_enum_specifier] = STATE(3523), + [sym_struct_specifier] = STATE(3523), + [sym_union_specifier] = STATE(3523), + [sym_macro_type_specifier] = STATE(3523), + [sym_ns_enum_specifier] = STATE(3412), + [sym_typeof_specifier] = STATE(3523), + [sym_atomic_specifier] = STATE(3523), + [sym_generic_type_specifier] = STATE(3523), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(8958), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(8958), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(8958), + [sym_IMP] = ACTIONS(8958), + [sym_BOOL] = ACTIONS(8958), + [sym_auto] = ACTIONS(8958), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3731] = { + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3566), + [sym_sized_type_specifier] = STATE(3566), + [sym_enum_specifier] = STATE(3566), + [sym_struct_specifier] = STATE(3566), + [sym_union_specifier] = STATE(3566), + [sym_macro_type_specifier] = STATE(3566), + [sym_ns_enum_specifier] = STATE(3480), + [sym_typeof_specifier] = STATE(3566), + [sym_atomic_specifier] = STATE(3566), + [sym_generic_type_specifier] = STATE(3566), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(8960), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(8960), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(8960), + [sym_IMP] = ACTIONS(8960), + [sym_BOOL] = ACTIONS(8960), + [sym_auto] = ACTIONS(8960), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3732] = { + [sym_enumerator_list] = STATE(3813), + [sym_identifier] = ACTIONS(8202), + [anon_sym_COMMA] = ACTIONS(8204), + [anon_sym_RPAREN] = ACTIONS(8204), + [anon_sym_LPAREN2] = ACTIONS(8204), + [anon_sym_STAR] = ACTIONS(8204), + [anon_sym_GT] = ACTIONS(8204), + [anon_sym___attribute] = ACTIONS(8202), + [anon_sym___attribute__] = ACTIONS(8202), + [anon_sym___based] = ACTIONS(8202), + [anon_sym_LBRACE] = ACTIONS(8962), + [anon_sym_LBRACK] = ACTIONS(8204), + [anon_sym_const] = ACTIONS(8202), + [anon_sym_volatile] = ACTIONS(8202), + [anon_sym_restrict] = ACTIONS(8202), + [anon_sym__Atomic] = ACTIONS(8202), + [anon_sym_in] = ACTIONS(8202), + [anon_sym_out] = ACTIONS(8202), + [anon_sym_inout] = ACTIONS(8202), + [anon_sym_bycopy] = ACTIONS(8202), + [anon_sym_byref] = ACTIONS(8202), + [anon_sym_oneway] = ACTIONS(8202), + [anon_sym__Nullable] = ACTIONS(8202), + [anon_sym__Nonnull] = ACTIONS(8202), + [anon_sym__Nullable_result] = ACTIONS(8202), + [anon_sym__Null_unspecified] = ACTIONS(8202), + [anon_sym___autoreleasing] = ACTIONS(8202), + [anon_sym___nullable] = ACTIONS(8202), + [anon_sym___nonnull] = ACTIONS(8202), + [anon_sym___strong] = ACTIONS(8202), + [anon_sym___weak] = ACTIONS(8202), + [anon_sym___bridge] = ACTIONS(8202), + [anon_sym___bridge_transfer] = ACTIONS(8202), + [anon_sym___bridge_retained] = ACTIONS(8202), + [anon_sym___unsafe_unretained] = ACTIONS(8202), + [anon_sym___block] = ACTIONS(8202), + [anon_sym___kindof] = ACTIONS(8202), + [anon_sym___unused] = ACTIONS(8202), + [anon_sym__Complex] = ACTIONS(8202), + [anon_sym___complex] = ACTIONS(8202), + [anon_sym_IBOutlet] = ACTIONS(8202), + [anon_sym_IBInspectable] = ACTIONS(8202), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8202), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8202), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8202), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8202), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8202), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8202), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8202), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8202), + [anon_sym_NS_AVAILABLE] = ACTIONS(8202), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8202), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8202), + [anon_sym_API_AVAILABLE] = ACTIONS(8202), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8202), + [anon_sym_API_DEPRECATED] = ACTIONS(8202), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8202), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8202), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8202), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8202), + [anon_sym___deprecated_msg] = ACTIONS(8202), + [anon_sym___deprecated_enum_msg] = ACTIONS(8202), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8202), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8202), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8202), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8202), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3733] = { + [sym_type_qualifier] = STATE(3730), + [sym__type_specifier] = STATE(3545), + [sym_sized_type_specifier] = STATE(3545), + [sym_enum_specifier] = STATE(3545), + [sym_struct_specifier] = STATE(3545), + [sym_union_specifier] = STATE(3545), + [sym_macro_type_specifier] = STATE(3545), + [sym_ns_enum_specifier] = STATE(3459), + [sym_typeof_specifier] = STATE(3545), + [sym_atomic_specifier] = STATE(3545), + [sym_generic_type_specifier] = STATE(3545), + [aux_sym_type_definition_repeat1] = STATE(3730), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7662), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7662), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7662), + [sym_IMP] = ACTIONS(7662), + [sym_BOOL] = ACTIONS(7662), + [sym_auto] = ACTIONS(7662), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3734] = { + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3917), + [sym_sized_type_specifier] = STATE(3917), + [sym_enum_specifier] = STATE(3917), + [sym_struct_specifier] = STATE(3917), + [sym_union_specifier] = STATE(3917), + [sym_macro_type_specifier] = STATE(3917), + [sym_ns_enum_specifier] = STATE(3917), + [sym_typeof_specifier] = STATE(3917), + [sym_atomic_specifier] = STATE(3917), + [sym_generic_type_specifier] = STATE(3917), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(8965), + [anon_sym_enum] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(8965), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(8965), + [sym_IMP] = ACTIONS(8965), + [sym_BOOL] = ACTIONS(8965), + [sym_auto] = ACTIONS(8965), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3735] = { + [sym_field_declaration_list] = STATE(3806), + [sym_identifier] = ACTIONS(8169), + [anon_sym_COMMA] = ACTIONS(8171), + [anon_sym_RPAREN] = ACTIONS(8171), + [anon_sym_LPAREN2] = ACTIONS(8171), + [anon_sym_STAR] = ACTIONS(8171), + [anon_sym_GT] = ACTIONS(8171), + [anon_sym___attribute] = ACTIONS(8169), + [anon_sym___attribute__] = ACTIONS(8169), + [anon_sym___based] = ACTIONS(8169), + [anon_sym_LBRACE] = ACTIONS(8967), + [anon_sym_LBRACK] = ACTIONS(8171), + [anon_sym_const] = ACTIONS(8169), + [anon_sym_volatile] = ACTIONS(8169), + [anon_sym_restrict] = ACTIONS(8169), + [anon_sym__Atomic] = ACTIONS(8169), + [anon_sym_in] = ACTIONS(8169), + [anon_sym_out] = ACTIONS(8169), + [anon_sym_inout] = ACTIONS(8169), + [anon_sym_bycopy] = ACTIONS(8169), + [anon_sym_byref] = ACTIONS(8169), + [anon_sym_oneway] = ACTIONS(8169), + [anon_sym__Nullable] = ACTIONS(8169), + [anon_sym__Nonnull] = ACTIONS(8169), + [anon_sym__Nullable_result] = ACTIONS(8169), + [anon_sym__Null_unspecified] = ACTIONS(8169), + [anon_sym___autoreleasing] = ACTIONS(8169), + [anon_sym___nullable] = ACTIONS(8169), + [anon_sym___nonnull] = ACTIONS(8169), + [anon_sym___strong] = ACTIONS(8169), + [anon_sym___weak] = ACTIONS(8169), + [anon_sym___bridge] = ACTIONS(8169), + [anon_sym___bridge_transfer] = ACTIONS(8169), + [anon_sym___bridge_retained] = ACTIONS(8169), + [anon_sym___unsafe_unretained] = ACTIONS(8169), + [anon_sym___block] = ACTIONS(8169), + [anon_sym___kindof] = ACTIONS(8169), + [anon_sym___unused] = ACTIONS(8169), + [anon_sym__Complex] = ACTIONS(8169), + [anon_sym___complex] = ACTIONS(8169), + [anon_sym_IBOutlet] = ACTIONS(8169), + [anon_sym_IBInspectable] = ACTIONS(8169), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8169), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8169), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8169), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8169), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8169), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8169), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8169), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8169), + [anon_sym_NS_AVAILABLE] = ACTIONS(8169), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8169), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8169), + [anon_sym_API_AVAILABLE] = ACTIONS(8169), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8169), + [anon_sym_API_DEPRECATED] = ACTIONS(8169), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8169), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8169), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8169), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8169), + [anon_sym___deprecated_msg] = ACTIONS(8169), + [anon_sym___deprecated_enum_msg] = ACTIONS(8169), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8169), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8169), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8169), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8169), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3736] = { + [sym_identifier] = ACTIONS(7272), + [anon_sym_COMMA] = ACTIONS(7274), + [anon_sym_RPAREN] = ACTIONS(7274), + [anon_sym_LPAREN2] = ACTIONS(7274), + [anon_sym_STAR] = ACTIONS(7274), + [anon_sym_GT] = ACTIONS(7274), + [anon_sym_LT] = ACTIONS(7274), + [anon_sym___attribute] = ACTIONS(7272), + [anon_sym___attribute__] = ACTIONS(7272), + [anon_sym___based] = ACTIONS(7272), + [anon_sym_LBRACE] = ACTIONS(7274), + [anon_sym_LBRACK] = ACTIONS(7274), + [anon_sym_const] = ACTIONS(7272), + [anon_sym_volatile] = ACTIONS(7272), + [anon_sym_restrict] = ACTIONS(7272), + [anon_sym__Atomic] = ACTIONS(7272), + [anon_sym_in] = ACTIONS(7272), + [anon_sym_out] = ACTIONS(7272), + [anon_sym_inout] = ACTIONS(7272), + [anon_sym_bycopy] = ACTIONS(7272), + [anon_sym_byref] = ACTIONS(7272), + [anon_sym_oneway] = ACTIONS(7272), + [anon_sym__Nullable] = ACTIONS(7272), + [anon_sym__Nonnull] = ACTIONS(7272), + [anon_sym__Nullable_result] = ACTIONS(7272), + [anon_sym__Null_unspecified] = ACTIONS(7272), + [anon_sym___autoreleasing] = ACTIONS(7272), + [anon_sym___nullable] = ACTIONS(7272), + [anon_sym___nonnull] = ACTIONS(7272), + [anon_sym___strong] = ACTIONS(7272), + [anon_sym___weak] = ACTIONS(7272), + [anon_sym___bridge] = ACTIONS(7272), + [anon_sym___bridge_transfer] = ACTIONS(7272), + [anon_sym___bridge_retained] = ACTIONS(7272), + [anon_sym___unsafe_unretained] = ACTIONS(7272), + [anon_sym___block] = ACTIONS(7272), + [anon_sym___kindof] = ACTIONS(7272), + [anon_sym___unused] = ACTIONS(7272), + [anon_sym__Complex] = ACTIONS(7272), + [anon_sym___complex] = ACTIONS(7272), + [anon_sym_IBOutlet] = ACTIONS(7272), + [anon_sym_IBInspectable] = ACTIONS(7272), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7272), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7272), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7272), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7272), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7272), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7272), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7272), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7272), + [anon_sym_NS_AVAILABLE] = ACTIONS(7272), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7272), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7272), + [anon_sym_API_AVAILABLE] = ACTIONS(7272), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7272), + [anon_sym_API_DEPRECATED] = ACTIONS(7272), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7272), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7272), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7272), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7272), + [anon_sym___deprecated_msg] = ACTIONS(7272), + [anon_sym___deprecated_enum_msg] = ACTIONS(7272), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7272), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7272), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7272), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7272), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3737] = { + [sym_type_qualifier] = STATE(3782), + [sym__type_specifier] = STATE(3511), + [sym_sized_type_specifier] = STATE(3511), + [sym_enum_specifier] = STATE(3511), + [sym_struct_specifier] = STATE(3511), + [sym_union_specifier] = STATE(3511), + [sym_macro_type_specifier] = STATE(3511), + [sym_ns_enum_specifier] = STATE(3511), + [sym_typeof_specifier] = STATE(3511), + [sym_atomic_specifier] = STATE(3511), + [sym_generic_type_specifier] = STATE(3511), + [aux_sym_type_definition_repeat1] = STATE(3782), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7660), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7660), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7660), + [sym_IMP] = ACTIONS(7660), + [sym_BOOL] = ACTIONS(7660), + [sym_auto] = ACTIONS(7660), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3738] = { + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3520), + [sym_sized_type_specifier] = STATE(3520), + [sym_enum_specifier] = STATE(3520), + [sym_struct_specifier] = STATE(3520), + [sym_union_specifier] = STATE(3520), + [sym_macro_type_specifier] = STATE(3520), + [sym_ns_enum_specifier] = STATE(3520), + [sym_typeof_specifier] = STATE(3520), + [sym_atomic_specifier] = STATE(3520), + [sym_generic_type_specifier] = STATE(3520), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(8970), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(8970), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(8970), + [sym_IMP] = ACTIONS(8970), + [sym_BOOL] = ACTIONS(8970), + [sym_auto] = ACTIONS(8970), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3739] = { + [sym_field_declaration_list] = STATE(3801), + [sym_identifier] = ACTIONS(8188), + [anon_sym_COMMA] = ACTIONS(8190), + [anon_sym_RPAREN] = ACTIONS(8190), + [anon_sym_LPAREN2] = ACTIONS(8190), + [anon_sym_STAR] = ACTIONS(8190), + [anon_sym_GT] = ACTIONS(8190), + [anon_sym___attribute] = ACTIONS(8188), + [anon_sym___attribute__] = ACTIONS(8188), + [anon_sym___based] = ACTIONS(8188), + [anon_sym_LBRACE] = ACTIONS(8888), + [anon_sym_LBRACK] = ACTIONS(8190), + [anon_sym_const] = ACTIONS(8188), + [anon_sym_volatile] = ACTIONS(8188), + [anon_sym_restrict] = ACTIONS(8188), + [anon_sym__Atomic] = ACTIONS(8188), + [anon_sym_in] = ACTIONS(8188), + [anon_sym_out] = ACTIONS(8188), + [anon_sym_inout] = ACTIONS(8188), + [anon_sym_bycopy] = ACTIONS(8188), + [anon_sym_byref] = ACTIONS(8188), + [anon_sym_oneway] = ACTIONS(8188), + [anon_sym__Nullable] = ACTIONS(8188), + [anon_sym__Nonnull] = ACTIONS(8188), + [anon_sym__Nullable_result] = ACTIONS(8188), + [anon_sym__Null_unspecified] = ACTIONS(8188), + [anon_sym___autoreleasing] = ACTIONS(8188), + [anon_sym___nullable] = ACTIONS(8188), + [anon_sym___nonnull] = ACTIONS(8188), + [anon_sym___strong] = ACTIONS(8188), + [anon_sym___weak] = ACTIONS(8188), + [anon_sym___bridge] = ACTIONS(8188), + [anon_sym___bridge_transfer] = ACTIONS(8188), + [anon_sym___bridge_retained] = ACTIONS(8188), + [anon_sym___unsafe_unretained] = ACTIONS(8188), + [anon_sym___block] = ACTIONS(8188), + [anon_sym___kindof] = ACTIONS(8188), + [anon_sym___unused] = ACTIONS(8188), + [anon_sym__Complex] = ACTIONS(8188), + [anon_sym___complex] = ACTIONS(8188), + [anon_sym_IBOutlet] = ACTIONS(8188), + [anon_sym_IBInspectable] = ACTIONS(8188), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8188), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8188), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8188), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8188), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8188), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8188), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8188), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8188), + [anon_sym_NS_AVAILABLE] = ACTIONS(8188), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8188), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8188), + [anon_sym_API_AVAILABLE] = ACTIONS(8188), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8188), + [anon_sym_API_DEPRECATED] = ACTIONS(8188), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8188), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8188), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8188), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8188), + [anon_sym___deprecated_msg] = ACTIONS(8188), + [anon_sym___deprecated_enum_msg] = ACTIONS(8188), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8188), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8188), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8188), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8188), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3740] = { + [sym_attribute_specifier] = STATE(3740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_function_declarator_repeat1] = STATE(3740), + [anon_sym_COMMA] = ACTIONS(8972), + [anon_sym_LPAREN2] = ACTIONS(8972), + [anon_sym_SEMI] = ACTIONS(8972), + [anon_sym___attribute] = ACTIONS(8974), + [anon_sym___attribute__] = ACTIONS(8977), + [anon_sym_LBRACE] = ACTIONS(8972), + [anon_sym_LBRACK] = ACTIONS(8972), + [anon_sym_EQ] = ACTIONS(8972), + [anon_sym_const] = ACTIONS(8972), + [anon_sym_volatile] = ACTIONS(8972), + [anon_sym_restrict] = ACTIONS(8972), + [anon_sym__Atomic] = ACTIONS(8972), + [anon_sym_in] = ACTIONS(8980), + [anon_sym_out] = ACTIONS(8972), + [anon_sym_inout] = ACTIONS(8972), + [anon_sym_bycopy] = ACTIONS(8972), + [anon_sym_byref] = ACTIONS(8972), + [anon_sym_oneway] = ACTIONS(8972), + [anon_sym__Nullable] = ACTIONS(8980), + [anon_sym__Nonnull] = ACTIONS(8972), + [anon_sym__Nullable_result] = ACTIONS(8972), + [anon_sym__Null_unspecified] = ACTIONS(8972), + [anon_sym___autoreleasing] = ACTIONS(8972), + [anon_sym___nullable] = ACTIONS(8972), + [anon_sym___nonnull] = ACTIONS(8972), + [anon_sym___strong] = ACTIONS(8972), + [anon_sym___weak] = ACTIONS(8972), + [anon_sym___bridge] = ACTIONS(8980), + [anon_sym___bridge_transfer] = ACTIONS(8972), + [anon_sym___bridge_retained] = ACTIONS(8972), + [anon_sym___unsafe_unretained] = ACTIONS(8972), + [anon_sym___block] = ACTIONS(8972), + [anon_sym___kindof] = ACTIONS(8972), + [anon_sym___unused] = ACTIONS(8972), + [anon_sym__Complex] = ACTIONS(8972), + [anon_sym___complex] = ACTIONS(8972), + [anon_sym_IBOutlet] = ACTIONS(8972), + [anon_sym_IBInspectable] = ACTIONS(8972), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8972), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8982), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8985), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8985), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8988), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8988), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8988), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8988), + [anon_sym_NS_AVAILABLE] = ACTIONS(8991), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8994), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8994), + [anon_sym_API_AVAILABLE] = ACTIONS(8994), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8994), + [anon_sym_API_DEPRECATED] = ACTIONS(8994), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8994), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8994), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8994), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8994), + [anon_sym___deprecated_msg] = ACTIONS(8994), + [anon_sym___deprecated_enum_msg] = ACTIONS(8994), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8994), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8994), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8994), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8994), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3741] = { + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3511), + [sym_sized_type_specifier] = STATE(3511), + [sym_enum_specifier] = STATE(3511), + [sym_struct_specifier] = STATE(3511), + [sym_union_specifier] = STATE(3511), + [sym_macro_type_specifier] = STATE(3511), + [sym_ns_enum_specifier] = STATE(3511), + [sym_typeof_specifier] = STATE(3511), + [sym_atomic_specifier] = STATE(3511), + [sym_generic_type_specifier] = STATE(3511), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7660), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7660), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7660), + [sym_IMP] = ACTIONS(7660), + [sym_BOOL] = ACTIONS(7660), + [sym_auto] = ACTIONS(7660), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3742] = { + [sym_identifier] = ACTIONS(8282), + [anon_sym_COMMA] = ACTIONS(8284), + [anon_sym_RPAREN] = ACTIONS(8284), + [anon_sym_LPAREN2] = ACTIONS(8284), + [anon_sym_STAR] = ACTIONS(8284), + [anon_sym_GT] = ACTIONS(8284), + [anon_sym_SEMI] = ACTIONS(8284), + [anon_sym___attribute] = ACTIONS(8282), + [anon_sym___attribute__] = ACTIONS(8282), + [anon_sym___based] = ACTIONS(8282), + [anon_sym_LBRACE] = ACTIONS(8284), + [anon_sym_LBRACK] = ACTIONS(8284), + [anon_sym_const] = ACTIONS(8282), + [anon_sym_volatile] = ACTIONS(8282), + [anon_sym_restrict] = ACTIONS(8282), + [anon_sym__Atomic] = ACTIONS(8282), + [anon_sym_in] = ACTIONS(8282), + [anon_sym_out] = ACTIONS(8282), + [anon_sym_inout] = ACTIONS(8282), + [anon_sym_bycopy] = ACTIONS(8282), + [anon_sym_byref] = ACTIONS(8282), + [anon_sym_oneway] = ACTIONS(8282), + [anon_sym__Nullable] = ACTIONS(8282), + [anon_sym__Nonnull] = ACTIONS(8282), + [anon_sym__Nullable_result] = ACTIONS(8282), + [anon_sym__Null_unspecified] = ACTIONS(8282), + [anon_sym___autoreleasing] = ACTIONS(8282), + [anon_sym___nullable] = ACTIONS(8282), + [anon_sym___nonnull] = ACTIONS(8282), + [anon_sym___strong] = ACTIONS(8282), + [anon_sym___weak] = ACTIONS(8282), + [anon_sym___bridge] = ACTIONS(8282), + [anon_sym___bridge_transfer] = ACTIONS(8282), + [anon_sym___bridge_retained] = ACTIONS(8282), + [anon_sym___unsafe_unretained] = ACTIONS(8282), + [anon_sym___block] = ACTIONS(8282), + [anon_sym___kindof] = ACTIONS(8282), + [anon_sym___unused] = ACTIONS(8282), + [anon_sym__Complex] = ACTIONS(8282), + [anon_sym___complex] = ACTIONS(8282), + [anon_sym_IBOutlet] = ACTIONS(8282), + [anon_sym_IBInspectable] = ACTIONS(8282), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8282), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8282), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8282), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8282), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8282), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8282), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8282), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8282), + [anon_sym_NS_AVAILABLE] = ACTIONS(8282), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8282), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8282), + [anon_sym_API_AVAILABLE] = ACTIONS(8282), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8282), + [anon_sym_API_DEPRECATED] = ACTIONS(8282), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8282), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8282), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8282), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8282), + [anon_sym___deprecated_msg] = ACTIONS(8282), + [anon_sym___deprecated_enum_msg] = ACTIONS(8282), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8282), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8282), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8282), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8282), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3743] = { + [sym_type_qualifier] = STATE(3722), + [sym__type_specifier] = STATE(3550), + [sym_sized_type_specifier] = STATE(3550), + [sym_enum_specifier] = STATE(3550), + [sym_struct_specifier] = STATE(3550), + [sym_union_specifier] = STATE(3550), + [sym_macro_type_specifier] = STATE(3550), + [sym_ns_enum_specifier] = STATE(3431), + [sym_typeof_specifier] = STATE(3550), + [sym_atomic_specifier] = STATE(3550), + [sym_generic_type_specifier] = STATE(3550), + [aux_sym_type_definition_repeat1] = STATE(3722), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7658), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7658), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7658), + [sym_IMP] = ACTIONS(7658), + [sym_BOOL] = ACTIONS(7658), + [sym_auto] = ACTIONS(7658), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3744] = { + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3507), + [sym_sized_type_specifier] = STATE(3507), + [sym_enum_specifier] = STATE(3507), + [sym_struct_specifier] = STATE(3507), + [sym_union_specifier] = STATE(3507), + [sym_macro_type_specifier] = STATE(3507), + [sym_ns_enum_specifier] = STATE(3483), + [sym_typeof_specifier] = STATE(3507), + [sym_atomic_specifier] = STATE(3507), + [sym_generic_type_specifier] = STATE(3507), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7656), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7656), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7656), + [sym_IMP] = ACTIONS(7656), + [sym_BOOL] = ACTIONS(7656), + [sym_auto] = ACTIONS(7656), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3745] = { + [sym_field_declaration_list] = STATE(3806), + [sym_identifier] = ACTIONS(8169), + [anon_sym_COMMA] = ACTIONS(8171), + [anon_sym_RPAREN] = ACTIONS(8171), + [anon_sym_LPAREN2] = ACTIONS(8171), + [anon_sym_STAR] = ACTIONS(8171), + [anon_sym_GT] = ACTIONS(8171), + [anon_sym___attribute] = ACTIONS(8169), + [anon_sym___attribute__] = ACTIONS(8169), + [anon_sym___based] = ACTIONS(8169), + [anon_sym_LBRACE] = ACTIONS(8888), + [anon_sym_LBRACK] = ACTIONS(8171), + [anon_sym_const] = ACTIONS(8169), + [anon_sym_volatile] = ACTIONS(8169), + [anon_sym_restrict] = ACTIONS(8169), + [anon_sym__Atomic] = ACTIONS(8169), + [anon_sym_in] = ACTIONS(8169), + [anon_sym_out] = ACTIONS(8169), + [anon_sym_inout] = ACTIONS(8169), + [anon_sym_bycopy] = ACTIONS(8169), + [anon_sym_byref] = ACTIONS(8169), + [anon_sym_oneway] = ACTIONS(8169), + [anon_sym__Nullable] = ACTIONS(8169), + [anon_sym__Nonnull] = ACTIONS(8169), + [anon_sym__Nullable_result] = ACTIONS(8169), + [anon_sym__Null_unspecified] = ACTIONS(8169), + [anon_sym___autoreleasing] = ACTIONS(8169), + [anon_sym___nullable] = ACTIONS(8169), + [anon_sym___nonnull] = ACTIONS(8169), + [anon_sym___strong] = ACTIONS(8169), + [anon_sym___weak] = ACTIONS(8169), + [anon_sym___bridge] = ACTIONS(8169), + [anon_sym___bridge_transfer] = ACTIONS(8169), + [anon_sym___bridge_retained] = ACTIONS(8169), + [anon_sym___unsafe_unretained] = ACTIONS(8169), + [anon_sym___block] = ACTIONS(8169), + [anon_sym___kindof] = ACTIONS(8169), + [anon_sym___unused] = ACTIONS(8169), + [anon_sym__Complex] = ACTIONS(8169), + [anon_sym___complex] = ACTIONS(8169), + [anon_sym_IBOutlet] = ACTIONS(8169), + [anon_sym_IBInspectable] = ACTIONS(8169), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8169), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8169), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8169), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8169), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8169), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8169), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8169), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8169), + [anon_sym_NS_AVAILABLE] = ACTIONS(8169), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8169), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8169), + [anon_sym_API_AVAILABLE] = ACTIONS(8169), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8169), + [anon_sym_API_DEPRECATED] = ACTIONS(8169), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8169), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8169), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8169), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8169), + [anon_sym___deprecated_msg] = ACTIONS(8169), + [anon_sym___deprecated_enum_msg] = ACTIONS(8169), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8169), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8169), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8169), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8169), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3746] = { + [sym_identifier] = ACTIONS(8278), + [anon_sym_COMMA] = ACTIONS(8280), + [anon_sym_RPAREN] = ACTIONS(8280), + [anon_sym_LPAREN2] = ACTIONS(8280), + [anon_sym_STAR] = ACTIONS(8280), + [anon_sym_GT] = ACTIONS(8280), + [anon_sym_SEMI] = ACTIONS(8280), + [anon_sym___attribute] = ACTIONS(8278), + [anon_sym___attribute__] = ACTIONS(8278), + [anon_sym___based] = ACTIONS(8278), + [anon_sym_LBRACE] = ACTIONS(8280), + [anon_sym_LBRACK] = ACTIONS(8280), + [anon_sym_const] = ACTIONS(8278), + [anon_sym_volatile] = ACTIONS(8278), + [anon_sym_restrict] = ACTIONS(8278), + [anon_sym__Atomic] = ACTIONS(8278), + [anon_sym_in] = ACTIONS(8278), + [anon_sym_out] = ACTIONS(8278), + [anon_sym_inout] = ACTIONS(8278), + [anon_sym_bycopy] = ACTIONS(8278), + [anon_sym_byref] = ACTIONS(8278), + [anon_sym_oneway] = ACTIONS(8278), + [anon_sym__Nullable] = ACTIONS(8278), + [anon_sym__Nonnull] = ACTIONS(8278), + [anon_sym__Nullable_result] = ACTIONS(8278), + [anon_sym__Null_unspecified] = ACTIONS(8278), + [anon_sym___autoreleasing] = ACTIONS(8278), + [anon_sym___nullable] = ACTIONS(8278), + [anon_sym___nonnull] = ACTIONS(8278), + [anon_sym___strong] = ACTIONS(8278), + [anon_sym___weak] = ACTIONS(8278), + [anon_sym___bridge] = ACTIONS(8278), + [anon_sym___bridge_transfer] = ACTIONS(8278), + [anon_sym___bridge_retained] = ACTIONS(8278), + [anon_sym___unsafe_unretained] = ACTIONS(8278), + [anon_sym___block] = ACTIONS(8278), + [anon_sym___kindof] = ACTIONS(8278), + [anon_sym___unused] = ACTIONS(8278), + [anon_sym__Complex] = ACTIONS(8278), + [anon_sym___complex] = ACTIONS(8278), + [anon_sym_IBOutlet] = ACTIONS(8278), + [anon_sym_IBInspectable] = ACTIONS(8278), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8278), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8278), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8278), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8278), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8278), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8278), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8278), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8278), + [anon_sym_NS_AVAILABLE] = ACTIONS(8278), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8278), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8278), + [anon_sym_API_AVAILABLE] = ACTIONS(8278), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8278), + [anon_sym_API_DEPRECATED] = ACTIONS(8278), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8278), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8278), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8278), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8278), + [anon_sym___deprecated_msg] = ACTIONS(8278), + [anon_sym___deprecated_enum_msg] = ACTIONS(8278), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8278), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8278), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8278), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8278), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3747] = { + [sym_type_qualifier] = STATE(3764), + [sym__type_specifier] = STATE(3506), + [sym_sized_type_specifier] = STATE(3506), + [sym_enum_specifier] = STATE(3506), + [sym_struct_specifier] = STATE(3506), + [sym_union_specifier] = STATE(3506), + [sym_macro_type_specifier] = STATE(3506), + [sym_ns_enum_specifier] = STATE(3466), + [sym_typeof_specifier] = STATE(3506), + [sym_atomic_specifier] = STATE(3506), + [sym_generic_type_specifier] = STATE(3506), + [aux_sym_type_definition_repeat1] = STATE(3764), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7652), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7652), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7652), + [sym_IMP] = ACTIONS(7652), + [sym_BOOL] = ACTIONS(7652), + [sym_auto] = ACTIONS(7652), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3748] = { + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3537), + [sym_sized_type_specifier] = STATE(3537), + [sym_enum_specifier] = STATE(3537), + [sym_struct_specifier] = STATE(3537), + [sym_union_specifier] = STATE(3537), + [sym_macro_type_specifier] = STATE(3537), + [sym_ns_enum_specifier] = STATE(3405), + [sym_typeof_specifier] = STATE(3537), + [sym_atomic_specifier] = STATE(3537), + [sym_generic_type_specifier] = STATE(3537), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7674), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7674), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7674), + [sym_IMP] = ACTIONS(7674), + [sym_BOOL] = ACTIONS(7674), + [sym_auto] = ACTIONS(7674), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3749] = { + [sym_type_qualifier] = STATE(3744), + [sym__type_specifier] = STATE(3537), + [sym_sized_type_specifier] = STATE(3537), + [sym_enum_specifier] = STATE(3537), + [sym_struct_specifier] = STATE(3537), + [sym_union_specifier] = STATE(3537), + [sym_macro_type_specifier] = STATE(3537), + [sym_ns_enum_specifier] = STATE(3405), + [sym_typeof_specifier] = STATE(3537), + [sym_atomic_specifier] = STATE(3537), + [sym_generic_type_specifier] = STATE(3537), + [aux_sym_type_definition_repeat1] = STATE(3744), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7674), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7674), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7674), + [sym_IMP] = ACTIONS(7674), + [sym_BOOL] = ACTIONS(7674), + [sym_auto] = ACTIONS(7674), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3750] = { + [sym_identifier] = ACTIONS(6856), + [anon_sym_COMMA] = ACTIONS(6858), + [anon_sym_RPAREN] = ACTIONS(6858), + [anon_sym_LPAREN2] = ACTIONS(6858), + [anon_sym_STAR] = ACTIONS(6858), + [anon_sym_GT] = ACTIONS(6858), + [anon_sym_LT] = ACTIONS(6858), + [anon_sym___attribute] = ACTIONS(6856), + [anon_sym___attribute__] = ACTIONS(6856), + [anon_sym___based] = ACTIONS(6856), + [anon_sym_LBRACE] = ACTIONS(6858), + [anon_sym_LBRACK] = ACTIONS(6858), + [anon_sym_const] = ACTIONS(6856), + [anon_sym_volatile] = ACTIONS(6856), + [anon_sym_restrict] = ACTIONS(6856), + [anon_sym__Atomic] = ACTIONS(6856), + [anon_sym_in] = ACTIONS(6856), + [anon_sym_out] = ACTIONS(6856), + [anon_sym_inout] = ACTIONS(6856), + [anon_sym_bycopy] = ACTIONS(6856), + [anon_sym_byref] = ACTIONS(6856), + [anon_sym_oneway] = ACTIONS(6856), + [anon_sym__Nullable] = ACTIONS(6856), + [anon_sym__Nonnull] = ACTIONS(6856), + [anon_sym__Nullable_result] = ACTIONS(6856), + [anon_sym__Null_unspecified] = ACTIONS(6856), + [anon_sym___autoreleasing] = ACTIONS(6856), + [anon_sym___nullable] = ACTIONS(6856), + [anon_sym___nonnull] = ACTIONS(6856), + [anon_sym___strong] = ACTIONS(6856), + [anon_sym___weak] = ACTIONS(6856), + [anon_sym___bridge] = ACTIONS(6856), + [anon_sym___bridge_transfer] = ACTIONS(6856), + [anon_sym___bridge_retained] = ACTIONS(6856), + [anon_sym___unsafe_unretained] = ACTIONS(6856), + [anon_sym___block] = ACTIONS(6856), + [anon_sym___kindof] = ACTIONS(6856), + [anon_sym___unused] = ACTIONS(6856), + [anon_sym__Complex] = ACTIONS(6856), + [anon_sym___complex] = ACTIONS(6856), + [anon_sym_IBOutlet] = ACTIONS(6856), + [anon_sym_IBInspectable] = ACTIONS(6856), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6856), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6856), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6856), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6856), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6856), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6856), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6856), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6856), + [anon_sym_NS_AVAILABLE] = ACTIONS(6856), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6856), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6856), + [anon_sym_API_AVAILABLE] = ACTIONS(6856), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6856), + [anon_sym_API_DEPRECATED] = ACTIONS(6856), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6856), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6856), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6856), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6856), + [anon_sym___deprecated_msg] = ACTIONS(6856), + [anon_sym___deprecated_enum_msg] = ACTIONS(6856), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6856), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6856), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6856), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6856), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3751] = { + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3982), + [sym_sized_type_specifier] = STATE(3982), + [sym_enum_specifier] = STATE(3982), + [sym_struct_specifier] = STATE(3982), + [sym_union_specifier] = STATE(3982), + [sym_macro_type_specifier] = STATE(3982), + [sym_ns_enum_specifier] = STATE(3982), + [sym_typeof_specifier] = STATE(3982), + [sym_atomic_specifier] = STATE(3982), + [sym_generic_type_specifier] = STATE(3982), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3921), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(1147), + [anon_sym_unsigned] = ACTIONS(1147), + [anon_sym_long] = ACTIONS(1147), + [anon_sym_short] = ACTIONS(1147), + [sym_primitive_type] = ACTIONS(8997), + [anon_sym_enum] = ACTIONS(8718), + [anon_sym_struct] = ACTIONS(8720), + [anon_sym_union] = ACTIONS(8722), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(8724), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(8724), + [anon_sym_NS_OPTIONS] = ACTIONS(8724), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(8997), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(8997), + [sym_IMP] = ACTIONS(8997), + [sym_BOOL] = ACTIONS(8997), + [sym_auto] = ACTIONS(8997), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3752] = { + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3550), + [sym_sized_type_specifier] = STATE(3550), + [sym_enum_specifier] = STATE(3550), + [sym_struct_specifier] = STATE(3550), + [sym_union_specifier] = STATE(3550), + [sym_macro_type_specifier] = STATE(3550), + [sym_ns_enum_specifier] = STATE(3431), + [sym_typeof_specifier] = STATE(3550), + [sym_atomic_specifier] = STATE(3550), + [sym_generic_type_specifier] = STATE(3550), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7658), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7658), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7658), + [sym_IMP] = ACTIONS(7658), + [sym_BOOL] = ACTIONS(7658), + [sym_auto] = ACTIONS(7658), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3753] = { + [sym_field_declaration_list] = STATE(3816), + [sym_identifier] = ACTIONS(8195), + [anon_sym_COMMA] = ACTIONS(8197), + [anon_sym_RPAREN] = ACTIONS(8197), + [anon_sym_LPAREN2] = ACTIONS(8197), + [anon_sym_STAR] = ACTIONS(8197), + [anon_sym_GT] = ACTIONS(8197), + [anon_sym___attribute] = ACTIONS(8195), + [anon_sym___attribute__] = ACTIONS(8195), + [anon_sym___based] = ACTIONS(8195), + [anon_sym_LBRACE] = ACTIONS(8888), + [anon_sym_LBRACK] = ACTIONS(8197), + [anon_sym_const] = ACTIONS(8195), + [anon_sym_volatile] = ACTIONS(8195), + [anon_sym_restrict] = ACTIONS(8195), + [anon_sym__Atomic] = ACTIONS(8195), + [anon_sym_in] = ACTIONS(8195), + [anon_sym_out] = ACTIONS(8195), + [anon_sym_inout] = ACTIONS(8195), + [anon_sym_bycopy] = ACTIONS(8195), + [anon_sym_byref] = ACTIONS(8195), + [anon_sym_oneway] = ACTIONS(8195), + [anon_sym__Nullable] = ACTIONS(8195), + [anon_sym__Nonnull] = ACTIONS(8195), + [anon_sym__Nullable_result] = ACTIONS(8195), + [anon_sym__Null_unspecified] = ACTIONS(8195), + [anon_sym___autoreleasing] = ACTIONS(8195), + [anon_sym___nullable] = ACTIONS(8195), + [anon_sym___nonnull] = ACTIONS(8195), + [anon_sym___strong] = ACTIONS(8195), + [anon_sym___weak] = ACTIONS(8195), + [anon_sym___bridge] = ACTIONS(8195), + [anon_sym___bridge_transfer] = ACTIONS(8195), + [anon_sym___bridge_retained] = ACTIONS(8195), + [anon_sym___unsafe_unretained] = ACTIONS(8195), + [anon_sym___block] = ACTIONS(8195), + [anon_sym___kindof] = ACTIONS(8195), + [anon_sym___unused] = ACTIONS(8195), + [anon_sym__Complex] = ACTIONS(8195), + [anon_sym___complex] = ACTIONS(8195), + [anon_sym_IBOutlet] = ACTIONS(8195), + [anon_sym_IBInspectable] = ACTIONS(8195), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8195), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8195), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8195), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8195), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8195), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8195), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8195), + [anon_sym_NS_AVAILABLE] = ACTIONS(8195), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8195), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8195), + [anon_sym_API_AVAILABLE] = ACTIONS(8195), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8195), + [anon_sym_API_DEPRECATED] = ACTIONS(8195), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8195), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8195), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8195), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8195), + [anon_sym___deprecated_msg] = ACTIONS(8195), + [anon_sym___deprecated_enum_msg] = ACTIONS(8195), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8195), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8195), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8195), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8195), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3754] = { + [sym_identifier] = ACTIONS(6740), + [anon_sym_COMMA] = ACTIONS(6742), + [anon_sym_RPAREN] = ACTIONS(6742), + [anon_sym_LPAREN2] = ACTIONS(6742), + [anon_sym_STAR] = ACTIONS(6742), + [anon_sym_GT] = ACTIONS(6742), + [anon_sym_LT] = ACTIONS(6742), + [anon_sym___attribute] = ACTIONS(6740), + [anon_sym___attribute__] = ACTIONS(6740), + [anon_sym___based] = ACTIONS(6740), + [anon_sym_LBRACE] = ACTIONS(6742), + [anon_sym_LBRACK] = ACTIONS(6742), + [anon_sym_const] = ACTIONS(6740), + [anon_sym_volatile] = ACTIONS(6740), + [anon_sym_restrict] = ACTIONS(6740), + [anon_sym__Atomic] = ACTIONS(6740), + [anon_sym_in] = ACTIONS(6740), + [anon_sym_out] = ACTIONS(6740), + [anon_sym_inout] = ACTIONS(6740), + [anon_sym_bycopy] = ACTIONS(6740), + [anon_sym_byref] = ACTIONS(6740), + [anon_sym_oneway] = ACTIONS(6740), + [anon_sym__Nullable] = ACTIONS(6740), + [anon_sym__Nonnull] = ACTIONS(6740), + [anon_sym__Nullable_result] = ACTIONS(6740), + [anon_sym__Null_unspecified] = ACTIONS(6740), + [anon_sym___autoreleasing] = ACTIONS(6740), + [anon_sym___nullable] = ACTIONS(6740), + [anon_sym___nonnull] = ACTIONS(6740), + [anon_sym___strong] = ACTIONS(6740), + [anon_sym___weak] = ACTIONS(6740), + [anon_sym___bridge] = ACTIONS(6740), + [anon_sym___bridge_transfer] = ACTIONS(6740), + [anon_sym___bridge_retained] = ACTIONS(6740), + [anon_sym___unsafe_unretained] = ACTIONS(6740), + [anon_sym___block] = ACTIONS(6740), + [anon_sym___kindof] = ACTIONS(6740), + [anon_sym___unused] = ACTIONS(6740), + [anon_sym__Complex] = ACTIONS(6740), + [anon_sym___complex] = ACTIONS(6740), + [anon_sym_IBOutlet] = ACTIONS(6740), + [anon_sym_IBInspectable] = ACTIONS(6740), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6740), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6740), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6740), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6740), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6740), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6740), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6740), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6740), + [anon_sym_NS_AVAILABLE] = ACTIONS(6740), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6740), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6740), + [anon_sym_API_AVAILABLE] = ACTIONS(6740), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6740), + [anon_sym_API_DEPRECATED] = ACTIONS(6740), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6740), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6740), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6740), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6740), + [anon_sym___deprecated_msg] = ACTIONS(6740), + [anon_sym___deprecated_enum_msg] = ACTIONS(6740), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6740), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6740), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6740), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6740), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3755] = { + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3545), + [sym_sized_type_specifier] = STATE(3545), + [sym_enum_specifier] = STATE(3545), + [sym_struct_specifier] = STATE(3545), + [sym_union_specifier] = STATE(3545), + [sym_macro_type_specifier] = STATE(3545), + [sym_ns_enum_specifier] = STATE(3459), + [sym_typeof_specifier] = STATE(3545), + [sym_atomic_specifier] = STATE(3545), + [sym_generic_type_specifier] = STATE(3545), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7662), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7662), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7662), + [sym_IMP] = ACTIONS(7662), + [sym_BOOL] = ACTIONS(7662), + [sym_auto] = ACTIONS(7662), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3756] = { + [sym_field_declaration_list] = STATE(3816), + [sym_identifier] = ACTIONS(8195), + [anon_sym_COMMA] = ACTIONS(8197), + [anon_sym_RPAREN] = ACTIONS(8197), + [anon_sym_LPAREN2] = ACTIONS(8197), + [anon_sym_STAR] = ACTIONS(8197), + [anon_sym_GT] = ACTIONS(8197), + [anon_sym___attribute] = ACTIONS(8195), + [anon_sym___attribute__] = ACTIONS(8195), + [anon_sym___based] = ACTIONS(8195), + [anon_sym_LBRACE] = ACTIONS(8999), + [anon_sym_LBRACK] = ACTIONS(8197), + [anon_sym_const] = ACTIONS(8195), + [anon_sym_volatile] = ACTIONS(8195), + [anon_sym_restrict] = ACTIONS(8195), + [anon_sym__Atomic] = ACTIONS(8195), + [anon_sym_in] = ACTIONS(8195), + [anon_sym_out] = ACTIONS(8195), + [anon_sym_inout] = ACTIONS(8195), + [anon_sym_bycopy] = ACTIONS(8195), + [anon_sym_byref] = ACTIONS(8195), + [anon_sym_oneway] = ACTIONS(8195), + [anon_sym__Nullable] = ACTIONS(8195), + [anon_sym__Nonnull] = ACTIONS(8195), + [anon_sym__Nullable_result] = ACTIONS(8195), + [anon_sym__Null_unspecified] = ACTIONS(8195), + [anon_sym___autoreleasing] = ACTIONS(8195), + [anon_sym___nullable] = ACTIONS(8195), + [anon_sym___nonnull] = ACTIONS(8195), + [anon_sym___strong] = ACTIONS(8195), + [anon_sym___weak] = ACTIONS(8195), + [anon_sym___bridge] = ACTIONS(8195), + [anon_sym___bridge_transfer] = ACTIONS(8195), + [anon_sym___bridge_retained] = ACTIONS(8195), + [anon_sym___unsafe_unretained] = ACTIONS(8195), + [anon_sym___block] = ACTIONS(8195), + [anon_sym___kindof] = ACTIONS(8195), + [anon_sym___unused] = ACTIONS(8195), + [anon_sym__Complex] = ACTIONS(8195), + [anon_sym___complex] = ACTIONS(8195), + [anon_sym_IBOutlet] = ACTIONS(8195), + [anon_sym_IBInspectable] = ACTIONS(8195), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8195), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8195), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8195), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8195), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8195), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8195), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8195), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8195), + [anon_sym_NS_AVAILABLE] = ACTIONS(8195), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8195), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8195), + [anon_sym_API_AVAILABLE] = ACTIONS(8195), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8195), + [anon_sym_API_DEPRECATED] = ACTIONS(8195), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8195), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8195), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8195), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8195), + [anon_sym___deprecated_msg] = ACTIONS(8195), + [anon_sym___deprecated_enum_msg] = ACTIONS(8195), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8195), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8195), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8195), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8195), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3757] = { + [sym_enumerator_list] = STATE(3813), + [sym_identifier] = ACTIONS(8202), + [anon_sym_COMMA] = ACTIONS(8204), + [anon_sym_RPAREN] = ACTIONS(8204), + [anon_sym_LPAREN2] = ACTIONS(8204), + [anon_sym_STAR] = ACTIONS(8204), + [anon_sym_GT] = ACTIONS(8204), + [anon_sym___attribute] = ACTIONS(8202), + [anon_sym___attribute__] = ACTIONS(8202), + [anon_sym___based] = ACTIONS(8202), + [anon_sym_LBRACE] = ACTIONS(8914), + [anon_sym_LBRACK] = ACTIONS(8204), + [anon_sym_const] = ACTIONS(8202), + [anon_sym_volatile] = ACTIONS(8202), + [anon_sym_restrict] = ACTIONS(8202), + [anon_sym__Atomic] = ACTIONS(8202), + [anon_sym_in] = ACTIONS(8202), + [anon_sym_out] = ACTIONS(8202), + [anon_sym_inout] = ACTIONS(8202), + [anon_sym_bycopy] = ACTIONS(8202), + [anon_sym_byref] = ACTIONS(8202), + [anon_sym_oneway] = ACTIONS(8202), + [anon_sym__Nullable] = ACTIONS(8202), + [anon_sym__Nonnull] = ACTIONS(8202), + [anon_sym__Nullable_result] = ACTIONS(8202), + [anon_sym__Null_unspecified] = ACTIONS(8202), + [anon_sym___autoreleasing] = ACTIONS(8202), + [anon_sym___nullable] = ACTIONS(8202), + [anon_sym___nonnull] = ACTIONS(8202), + [anon_sym___strong] = ACTIONS(8202), + [anon_sym___weak] = ACTIONS(8202), + [anon_sym___bridge] = ACTIONS(8202), + [anon_sym___bridge_transfer] = ACTIONS(8202), + [anon_sym___bridge_retained] = ACTIONS(8202), + [anon_sym___unsafe_unretained] = ACTIONS(8202), + [anon_sym___block] = ACTIONS(8202), + [anon_sym___kindof] = ACTIONS(8202), + [anon_sym___unused] = ACTIONS(8202), + [anon_sym__Complex] = ACTIONS(8202), + [anon_sym___complex] = ACTIONS(8202), + [anon_sym_IBOutlet] = ACTIONS(8202), + [anon_sym_IBInspectable] = ACTIONS(8202), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8202), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8202), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8202), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8202), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8202), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8202), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8202), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8202), + [anon_sym_NS_AVAILABLE] = ACTIONS(8202), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8202), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8202), + [anon_sym_API_AVAILABLE] = ACTIONS(8202), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8202), + [anon_sym_API_DEPRECATED] = ACTIONS(8202), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8202), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8202), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8202), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8202), + [anon_sym___deprecated_msg] = ACTIONS(8202), + [anon_sym___deprecated_enum_msg] = ACTIONS(8202), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8202), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8202), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8202), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8202), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3758] = { + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3524), + [sym_sized_type_specifier] = STATE(3524), + [sym_enum_specifier] = STATE(3524), + [sym_struct_specifier] = STATE(3524), + [sym_union_specifier] = STATE(3524), + [sym_macro_type_specifier] = STATE(3524), + [sym_ns_enum_specifier] = STATE(3488), + [sym_typeof_specifier] = STATE(3524), + [sym_atomic_specifier] = STATE(3524), + [sym_generic_type_specifier] = STATE(3524), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7668), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7668), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7668), + [sym_IMP] = ACTIONS(7668), + [sym_BOOL] = ACTIONS(7668), + [sym_auto] = ACTIONS(7668), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3759] = { + [sym_attribute_specifier] = STATE(3761), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_function_declarator_repeat1] = STATE(3761), + [anon_sym_COMMA] = ACTIONS(9002), + [anon_sym_LPAREN2] = ACTIONS(9002), + [anon_sym_SEMI] = ACTIONS(9002), + [anon_sym___attribute] = ACTIONS(9004), + [anon_sym___attribute__] = ACTIONS(9007), + [anon_sym_LBRACE] = ACTIONS(9002), + [anon_sym_LBRACK] = ACTIONS(9002), + [anon_sym_EQ] = ACTIONS(9002), + [anon_sym_const] = ACTIONS(9002), + [anon_sym_volatile] = ACTIONS(9002), + [anon_sym_restrict] = ACTIONS(9002), + [anon_sym__Atomic] = ACTIONS(9002), + [anon_sym_in] = ACTIONS(9010), + [anon_sym_out] = ACTIONS(9002), + [anon_sym_inout] = ACTIONS(9002), + [anon_sym_bycopy] = ACTIONS(9002), + [anon_sym_byref] = ACTIONS(9002), + [anon_sym_oneway] = ACTIONS(9002), + [anon_sym__Nullable] = ACTIONS(9010), + [anon_sym__Nonnull] = ACTIONS(9002), + [anon_sym__Nullable_result] = ACTIONS(9002), + [anon_sym__Null_unspecified] = ACTIONS(9002), + [anon_sym___autoreleasing] = ACTIONS(9002), + [anon_sym___nullable] = ACTIONS(9002), + [anon_sym___nonnull] = ACTIONS(9002), + [anon_sym___strong] = ACTIONS(9002), + [anon_sym___weak] = ACTIONS(9002), + [anon_sym___bridge] = ACTIONS(9010), + [anon_sym___bridge_transfer] = ACTIONS(9002), + [anon_sym___bridge_retained] = ACTIONS(9002), + [anon_sym___unsafe_unretained] = ACTIONS(9002), + [anon_sym___block] = ACTIONS(9002), + [anon_sym___kindof] = ACTIONS(9002), + [anon_sym___unused] = ACTIONS(9002), + [anon_sym__Complex] = ACTIONS(9002), + [anon_sym___complex] = ACTIONS(9002), + [anon_sym_IBOutlet] = ACTIONS(9002), + [anon_sym_IBInspectable] = ACTIONS(9002), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9002), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(9012), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9015), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9015), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(9018), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9018), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9018), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9018), + [anon_sym_NS_AVAILABLE] = ACTIONS(9021), + [anon_sym___IOS_AVAILABLE] = ACTIONS(9024), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9024), + [anon_sym_API_AVAILABLE] = ACTIONS(9024), + [anon_sym_API_UNAVAILABLE] = ACTIONS(9024), + [anon_sym_API_DEPRECATED] = ACTIONS(9024), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9024), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9024), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9024), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9024), + [anon_sym___deprecated_msg] = ACTIONS(9024), + [anon_sym___deprecated_enum_msg] = ACTIONS(9024), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9024), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9024), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9024), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9024), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3760] = { + [sym_identifier] = ACTIONS(8458), + [anon_sym_COMMA] = ACTIONS(8460), + [anon_sym_RPAREN] = ACTIONS(8460), + [anon_sym_LPAREN2] = ACTIONS(8460), + [anon_sym_STAR] = ACTIONS(8460), + [anon_sym_GT] = ACTIONS(8460), + [anon_sym_SEMI] = ACTIONS(8460), + [anon_sym___attribute] = ACTIONS(8458), + [anon_sym___attribute__] = ACTIONS(8458), + [anon_sym___based] = ACTIONS(8458), + [anon_sym_LBRACE] = ACTIONS(8460), + [anon_sym_LBRACK] = ACTIONS(8460), + [anon_sym_const] = ACTIONS(8458), + [anon_sym_volatile] = ACTIONS(8458), + [anon_sym_restrict] = ACTIONS(8458), + [anon_sym__Atomic] = ACTIONS(8458), + [anon_sym_in] = ACTIONS(8458), + [anon_sym_out] = ACTIONS(8458), + [anon_sym_inout] = ACTIONS(8458), + [anon_sym_bycopy] = ACTIONS(8458), + [anon_sym_byref] = ACTIONS(8458), + [anon_sym_oneway] = ACTIONS(8458), + [anon_sym__Nullable] = ACTIONS(8458), + [anon_sym__Nonnull] = ACTIONS(8458), + [anon_sym__Nullable_result] = ACTIONS(8458), + [anon_sym__Null_unspecified] = ACTIONS(8458), + [anon_sym___autoreleasing] = ACTIONS(8458), + [anon_sym___nullable] = ACTIONS(8458), + [anon_sym___nonnull] = ACTIONS(8458), + [anon_sym___strong] = ACTIONS(8458), + [anon_sym___weak] = ACTIONS(8458), + [anon_sym___bridge] = ACTIONS(8458), + [anon_sym___bridge_transfer] = ACTIONS(8458), + [anon_sym___bridge_retained] = ACTIONS(8458), + [anon_sym___unsafe_unretained] = ACTIONS(8458), + [anon_sym___block] = ACTIONS(8458), + [anon_sym___kindof] = ACTIONS(8458), + [anon_sym___unused] = ACTIONS(8458), + [anon_sym__Complex] = ACTIONS(8458), + [anon_sym___complex] = ACTIONS(8458), + [anon_sym_IBOutlet] = ACTIONS(8458), + [anon_sym_IBInspectable] = ACTIONS(8458), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8458), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8458), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8458), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8458), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8458), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8458), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8458), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8458), + [anon_sym_NS_AVAILABLE] = ACTIONS(8458), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8458), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8458), + [anon_sym_API_AVAILABLE] = ACTIONS(8458), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8458), + [anon_sym_API_DEPRECATED] = ACTIONS(8458), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8458), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8458), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8458), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8458), + [anon_sym___deprecated_msg] = ACTIONS(8458), + [anon_sym___deprecated_enum_msg] = ACTIONS(8458), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8458), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8458), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8458), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8458), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3761] = { + [sym_attribute_specifier] = STATE(3740), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_function_declarator_repeat1] = STATE(3740), + [anon_sym_COMMA] = ACTIONS(9027), + [anon_sym_LPAREN2] = ACTIONS(9027), + [anon_sym_SEMI] = ACTIONS(9027), + [anon_sym___attribute] = ACTIONS(9029), + [anon_sym___attribute__] = ACTIONS(9027), + [anon_sym_LBRACE] = ACTIONS(9027), + [anon_sym_LBRACK] = ACTIONS(9027), + [anon_sym_EQ] = ACTIONS(9027), + [anon_sym_const] = ACTIONS(9027), + [anon_sym_volatile] = ACTIONS(9027), + [anon_sym_restrict] = ACTIONS(9027), + [anon_sym__Atomic] = ACTIONS(9027), + [anon_sym_in] = ACTIONS(9029), + [anon_sym_out] = ACTIONS(9027), + [anon_sym_inout] = ACTIONS(9027), + [anon_sym_bycopy] = ACTIONS(9027), + [anon_sym_byref] = ACTIONS(9027), + [anon_sym_oneway] = ACTIONS(9027), + [anon_sym__Nullable] = ACTIONS(9029), + [anon_sym__Nonnull] = ACTIONS(9027), + [anon_sym__Nullable_result] = ACTIONS(9027), + [anon_sym__Null_unspecified] = ACTIONS(9027), + [anon_sym___autoreleasing] = ACTIONS(9027), + [anon_sym___nullable] = ACTIONS(9027), + [anon_sym___nonnull] = ACTIONS(9027), + [anon_sym___strong] = ACTIONS(9027), + [anon_sym___weak] = ACTIONS(9027), + [anon_sym___bridge] = ACTIONS(9029), + [anon_sym___bridge_transfer] = ACTIONS(9027), + [anon_sym___bridge_retained] = ACTIONS(9027), + [anon_sym___unsafe_unretained] = ACTIONS(9027), + [anon_sym___block] = ACTIONS(9027), + [anon_sym___kindof] = ACTIONS(9027), + [anon_sym___unused] = ACTIONS(9027), + [anon_sym__Complex] = ACTIONS(9027), + [anon_sym___complex] = ACTIONS(9027), + [anon_sym_IBOutlet] = ACTIONS(9027), + [anon_sym_IBInspectable] = ACTIONS(9027), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9027), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(9027), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9027), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9027), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(9027), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9027), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9027), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9027), + [anon_sym_NS_AVAILABLE] = ACTIONS(9029), + [anon_sym___IOS_AVAILABLE] = ACTIONS(9027), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9027), + [anon_sym_API_AVAILABLE] = ACTIONS(9027), + [anon_sym_API_UNAVAILABLE] = ACTIONS(9027), + [anon_sym_API_DEPRECATED] = ACTIONS(9027), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9027), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9027), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9027), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9027), + [anon_sym___deprecated_msg] = ACTIONS(9027), + [anon_sym___deprecated_enum_msg] = ACTIONS(9027), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9027), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9027), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9027), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9027), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3762] = { + [sym_enumerator_list] = STATE(3798), + [sym_identifier] = ACTIONS(8220), + [anon_sym_COMMA] = ACTIONS(8222), + [anon_sym_RPAREN] = ACTIONS(8222), + [anon_sym_LPAREN2] = ACTIONS(8222), + [anon_sym_STAR] = ACTIONS(8222), + [anon_sym_GT] = ACTIONS(8222), + [anon_sym___attribute] = ACTIONS(8220), + [anon_sym___attribute__] = ACTIONS(8220), + [anon_sym___based] = ACTIONS(8220), + [anon_sym_LBRACE] = ACTIONS(8914), + [anon_sym_LBRACK] = ACTIONS(8222), + [anon_sym_const] = ACTIONS(8220), + [anon_sym_volatile] = ACTIONS(8220), + [anon_sym_restrict] = ACTIONS(8220), + [anon_sym__Atomic] = ACTIONS(8220), + [anon_sym_in] = ACTIONS(8220), + [anon_sym_out] = ACTIONS(8220), + [anon_sym_inout] = ACTIONS(8220), + [anon_sym_bycopy] = ACTIONS(8220), + [anon_sym_byref] = ACTIONS(8220), + [anon_sym_oneway] = ACTIONS(8220), + [anon_sym__Nullable] = ACTIONS(8220), + [anon_sym__Nonnull] = ACTIONS(8220), + [anon_sym__Nullable_result] = ACTIONS(8220), + [anon_sym__Null_unspecified] = ACTIONS(8220), + [anon_sym___autoreleasing] = ACTIONS(8220), + [anon_sym___nullable] = ACTIONS(8220), + [anon_sym___nonnull] = ACTIONS(8220), + [anon_sym___strong] = ACTIONS(8220), + [anon_sym___weak] = ACTIONS(8220), + [anon_sym___bridge] = ACTIONS(8220), + [anon_sym___bridge_transfer] = ACTIONS(8220), + [anon_sym___bridge_retained] = ACTIONS(8220), + [anon_sym___unsafe_unretained] = ACTIONS(8220), + [anon_sym___block] = ACTIONS(8220), + [anon_sym___kindof] = ACTIONS(8220), + [anon_sym___unused] = ACTIONS(8220), + [anon_sym__Complex] = ACTIONS(8220), + [anon_sym___complex] = ACTIONS(8220), + [anon_sym_IBOutlet] = ACTIONS(8220), + [anon_sym_IBInspectable] = ACTIONS(8220), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8220), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8220), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8220), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8220), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8220), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8220), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8220), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8220), + [anon_sym_NS_AVAILABLE] = ACTIONS(8220), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8220), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8220), + [anon_sym_API_AVAILABLE] = ACTIONS(8220), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8220), + [anon_sym_API_DEPRECATED] = ACTIONS(8220), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8220), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8220), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8220), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8220), + [anon_sym___deprecated_msg] = ACTIONS(8220), + [anon_sym___deprecated_enum_msg] = ACTIONS(8220), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8220), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8220), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8220), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8220), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3763] = { + [sym_type_qualifier] = STATE(3755), + [sym__type_specifier] = STATE(3524), + [sym_sized_type_specifier] = STATE(3524), + [sym_enum_specifier] = STATE(3524), + [sym_struct_specifier] = STATE(3524), + [sym_union_specifier] = STATE(3524), + [sym_macro_type_specifier] = STATE(3524), + [sym_ns_enum_specifier] = STATE(3488), + [sym_typeof_specifier] = STATE(3524), + [sym_atomic_specifier] = STATE(3524), + [sym_generic_type_specifier] = STATE(3524), + [aux_sym_type_definition_repeat1] = STATE(3755), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7668), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7668), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7668), + [sym_IMP] = ACTIONS(7668), + [sym_BOOL] = ACTIONS(7668), + [sym_auto] = ACTIONS(7668), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3764] = { + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3548), + [sym_sized_type_specifier] = STATE(3548), + [sym_enum_specifier] = STATE(3548), + [sym_struct_specifier] = STATE(3548), + [sym_union_specifier] = STATE(3548), + [sym_macro_type_specifier] = STATE(3548), + [sym_ns_enum_specifier] = STATE(3432), + [sym_typeof_specifier] = STATE(3548), + [sym_atomic_specifier] = STATE(3548), + [sym_generic_type_specifier] = STATE(3548), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(9031), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), + [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(9031), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(9031), + [sym_IMP] = ACTIONS(9031), + [sym_BOOL] = ACTIONS(9031), + [sym_auto] = ACTIONS(9031), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3765] = { [sym_identifier] = ACTIONS(8321), [anon_sym_COMMA] = ACTIONS(8323), [anon_sym_RPAREN] = ACTIONS(8323), @@ -558975,37 +558200,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___based] = ACTIONS(8321), [anon_sym_LBRACE] = ACTIONS(8323), [anon_sym_LBRACK] = ACTIONS(8323), - [anon_sym_const] = ACTIONS(8920), - [anon_sym_volatile] = ACTIONS(8920), - [anon_sym_restrict] = ACTIONS(8920), - [anon_sym__Atomic] = ACTIONS(8920), - [anon_sym_in] = ACTIONS(8920), - [anon_sym_out] = ACTIONS(8920), - [anon_sym_inout] = ACTIONS(8920), - [anon_sym_bycopy] = ACTIONS(8920), - [anon_sym_byref] = ACTIONS(8920), - [anon_sym_oneway] = ACTIONS(8920), - [anon_sym__Nullable] = ACTIONS(8920), - [anon_sym__Nonnull] = ACTIONS(8920), - [anon_sym__Nullable_result] = ACTIONS(8920), - [anon_sym__Null_unspecified] = ACTIONS(8920), - [anon_sym___autoreleasing] = ACTIONS(8920), - [anon_sym___nullable] = ACTIONS(8920), - [anon_sym___nonnull] = ACTIONS(8920), - [anon_sym___strong] = ACTIONS(8920), - [anon_sym___weak] = ACTIONS(8920), - [anon_sym___bridge] = ACTIONS(8920), - [anon_sym___bridge_transfer] = ACTIONS(8920), - [anon_sym___bridge_retained] = ACTIONS(8920), - [anon_sym___unsafe_unretained] = ACTIONS(8920), - [anon_sym___block] = ACTIONS(8920), - [anon_sym___kindof] = ACTIONS(8920), - [anon_sym___unused] = ACTIONS(8920), - [anon_sym__Complex] = ACTIONS(8920), - [anon_sym___complex] = ACTIONS(8920), - [anon_sym_IBOutlet] = ACTIONS(8920), - [anon_sym_IBInspectable] = ACTIONS(8920), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8920), + [anon_sym_const] = ACTIONS(8321), + [anon_sym_volatile] = ACTIONS(8321), + [anon_sym_restrict] = ACTIONS(8321), + [anon_sym__Atomic] = ACTIONS(8321), + [anon_sym_in] = ACTIONS(8321), + [anon_sym_out] = ACTIONS(8321), + [anon_sym_inout] = ACTIONS(8321), + [anon_sym_bycopy] = ACTIONS(8321), + [anon_sym_byref] = ACTIONS(8321), + [anon_sym_oneway] = ACTIONS(8321), + [anon_sym__Nullable] = ACTIONS(8321), + [anon_sym__Nonnull] = ACTIONS(8321), + [anon_sym__Nullable_result] = ACTIONS(8321), + [anon_sym__Null_unspecified] = ACTIONS(8321), + [anon_sym___autoreleasing] = ACTIONS(8321), + [anon_sym___nullable] = ACTIONS(8321), + [anon_sym___nonnull] = ACTIONS(8321), + [anon_sym___strong] = ACTIONS(8321), + [anon_sym___weak] = ACTIONS(8321), + [anon_sym___bridge] = ACTIONS(8321), + [anon_sym___bridge_transfer] = ACTIONS(8321), + [anon_sym___bridge_retained] = ACTIONS(8321), + [anon_sym___unsafe_unretained] = ACTIONS(8321), + [anon_sym___block] = ACTIONS(8321), + [anon_sym___kindof] = ACTIONS(8321), + [anon_sym___unused] = ACTIONS(8321), + [anon_sym__Complex] = ACTIONS(8321), + [anon_sym___complex] = ACTIONS(8321), + [anon_sym_IBOutlet] = ACTIONS(8321), + [anon_sym_IBInspectable] = ACTIONS(8321), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8321), [sym_comment] = ACTIONS(3), [sym_method_attribute_specifier] = ACTIONS(8321), [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8321), @@ -559037,3115 +558262,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3726] = { - [sym_identifier] = ACTIONS(8923), - [anon_sym_COMMA] = ACTIONS(8925), - [anon_sym_RPAREN] = ACTIONS(8925), - [anon_sym_LPAREN2] = ACTIONS(8925), - [anon_sym_GT] = ACTIONS(8925), - [anon_sym_SEMI] = ACTIONS(8925), - [anon_sym___attribute] = ACTIONS(8923), - [anon_sym___attribute__] = ACTIONS(8923), - [anon_sym_LBRACE] = ACTIONS(8925), - [anon_sym_LBRACK] = ACTIONS(8925), - [anon_sym_EQ] = ACTIONS(8925), - [anon_sym_const] = ACTIONS(8923), - [anon_sym_volatile] = ACTIONS(8923), - [anon_sym_restrict] = ACTIONS(8923), - [anon_sym__Atomic] = ACTIONS(8923), - [anon_sym_in] = ACTIONS(8923), - [anon_sym_out] = ACTIONS(8923), - [anon_sym_inout] = ACTIONS(8923), - [anon_sym_bycopy] = ACTIONS(8923), - [anon_sym_byref] = ACTIONS(8923), - [anon_sym_oneway] = ACTIONS(8923), - [anon_sym__Nullable] = ACTIONS(8923), - [anon_sym__Nonnull] = ACTIONS(8923), - [anon_sym__Nullable_result] = ACTIONS(8923), - [anon_sym__Null_unspecified] = ACTIONS(8923), - [anon_sym___autoreleasing] = ACTIONS(8923), - [anon_sym___nullable] = ACTIONS(8923), - [anon_sym___nonnull] = ACTIONS(8923), - [anon_sym___strong] = ACTIONS(8923), - [anon_sym___weak] = ACTIONS(8923), - [anon_sym___bridge] = ACTIONS(8923), - [anon_sym___bridge_transfer] = ACTIONS(8923), - [anon_sym___bridge_retained] = ACTIONS(8923), - [anon_sym___unsafe_unretained] = ACTIONS(8923), - [anon_sym___block] = ACTIONS(8923), - [anon_sym___kindof] = ACTIONS(8923), - [anon_sym___unused] = ACTIONS(8923), - [anon_sym__Complex] = ACTIONS(8923), - [anon_sym___complex] = ACTIONS(8923), - [anon_sym_IBOutlet] = ACTIONS(8923), - [anon_sym_IBInspectable] = ACTIONS(8923), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8923), - [anon_sym_COLON] = ACTIONS(8925), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8923), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8923), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8923), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8923), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8923), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8923), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8923), - [anon_sym_NS_AVAILABLE] = ACTIONS(8923), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8923), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8923), - [anon_sym_API_AVAILABLE] = ACTIONS(8923), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8923), - [anon_sym_API_DEPRECATED] = ACTIONS(8923), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8923), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8923), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8923), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8923), - [anon_sym___deprecated_msg] = ACTIONS(8923), - [anon_sym___deprecated_enum_msg] = ACTIONS(8923), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8923), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8923), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8923), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8923), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(8923), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(8923), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3727] = { - [sym_attribute_specifier] = STATE(3905), - [sym_type_qualifier] = STATE(5281), - [sym_parameter_list] = STATE(3788), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3872), - [aux_sym_function_declarator_repeat1] = STATE(4339), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_SEMI] = ACTIONS(8901), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_LBRACK] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(8885), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(8927), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3728] = { - [sym_identifier] = ACTIONS(8929), - [anon_sym_COMMA] = ACTIONS(8931), - [anon_sym_RPAREN] = ACTIONS(8931), - [anon_sym_LPAREN2] = ACTIONS(8931), - [anon_sym_SEMI] = ACTIONS(8931), - [anon_sym___attribute] = ACTIONS(8929), - [anon_sym___attribute__] = ACTIONS(8929), - [anon_sym_LBRACE] = ACTIONS(8931), - [anon_sym_LBRACK] = ACTIONS(8931), - [anon_sym_EQ] = ACTIONS(8931), - [anon_sym_const] = ACTIONS(8929), - [anon_sym_volatile] = ACTIONS(8929), - [anon_sym_restrict] = ACTIONS(8929), - [anon_sym__Atomic] = ACTIONS(8929), - [anon_sym_in] = ACTIONS(8929), - [anon_sym_out] = ACTIONS(8929), - [anon_sym_inout] = ACTIONS(8929), - [anon_sym_bycopy] = ACTIONS(8929), - [anon_sym_byref] = ACTIONS(8929), - [anon_sym_oneway] = ACTIONS(8929), - [anon_sym__Nullable] = ACTIONS(8929), - [anon_sym__Nonnull] = ACTIONS(8929), - [anon_sym__Nullable_result] = ACTIONS(8929), - [anon_sym__Null_unspecified] = ACTIONS(8929), - [anon_sym___autoreleasing] = ACTIONS(8929), - [anon_sym___nullable] = ACTIONS(8929), - [anon_sym___nonnull] = ACTIONS(8929), - [anon_sym___strong] = ACTIONS(8929), - [anon_sym___weak] = ACTIONS(8929), - [anon_sym___bridge] = ACTIONS(8929), - [anon_sym___bridge_transfer] = ACTIONS(8929), - [anon_sym___bridge_retained] = ACTIONS(8929), - [anon_sym___unsafe_unretained] = ACTIONS(8929), - [anon_sym___block] = ACTIONS(8929), - [anon_sym___kindof] = ACTIONS(8929), - [anon_sym___unused] = ACTIONS(8929), - [anon_sym__Complex] = ACTIONS(8929), - [anon_sym___complex] = ACTIONS(8929), - [anon_sym_IBOutlet] = ACTIONS(8929), - [anon_sym_IBInspectable] = ACTIONS(8929), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8929), - [anon_sym_COLON] = ACTIONS(8931), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8929), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8929), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8929), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8929), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8929), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8929), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8929), - [anon_sym_NS_AVAILABLE] = ACTIONS(8929), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8929), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8929), - [anon_sym_API_AVAILABLE] = ACTIONS(8929), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8929), - [anon_sym_API_DEPRECATED] = ACTIONS(8929), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8929), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8929), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8929), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8929), - [anon_sym___deprecated_msg] = ACTIONS(8929), - [anon_sym___deprecated_enum_msg] = ACTIONS(8929), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8929), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8929), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8929), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8929), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(8929), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(8929), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3729] = { - [sym_identifier] = ACTIONS(8933), - [anon_sym_COMMA] = ACTIONS(8935), - [anon_sym_RPAREN] = ACTIONS(8935), - [anon_sym_LPAREN2] = ACTIONS(8935), - [anon_sym_SEMI] = ACTIONS(8935), - [anon_sym___attribute] = ACTIONS(8933), - [anon_sym___attribute__] = ACTIONS(8933), - [anon_sym_LBRACE] = ACTIONS(8935), - [anon_sym_LBRACK] = ACTIONS(8935), - [anon_sym_EQ] = ACTIONS(8935), - [anon_sym_const] = ACTIONS(8933), - [anon_sym_volatile] = ACTIONS(8933), - [anon_sym_restrict] = ACTIONS(8933), - [anon_sym__Atomic] = ACTIONS(8933), - [anon_sym_in] = ACTIONS(8933), - [anon_sym_out] = ACTIONS(8933), - [anon_sym_inout] = ACTIONS(8933), - [anon_sym_bycopy] = ACTIONS(8933), - [anon_sym_byref] = ACTIONS(8933), - [anon_sym_oneway] = ACTIONS(8933), - [anon_sym__Nullable] = ACTIONS(8933), - [anon_sym__Nonnull] = ACTIONS(8933), - [anon_sym__Nullable_result] = ACTIONS(8933), - [anon_sym__Null_unspecified] = ACTIONS(8933), - [anon_sym___autoreleasing] = ACTIONS(8933), - [anon_sym___nullable] = ACTIONS(8933), - [anon_sym___nonnull] = ACTIONS(8933), - [anon_sym___strong] = ACTIONS(8933), - [anon_sym___weak] = ACTIONS(8933), - [anon_sym___bridge] = ACTIONS(8933), - [anon_sym___bridge_transfer] = ACTIONS(8933), - [anon_sym___bridge_retained] = ACTIONS(8933), - [anon_sym___unsafe_unretained] = ACTIONS(8933), - [anon_sym___block] = ACTIONS(8933), - [anon_sym___kindof] = ACTIONS(8933), - [anon_sym___unused] = ACTIONS(8933), - [anon_sym__Complex] = ACTIONS(8933), - [anon_sym___complex] = ACTIONS(8933), - [anon_sym_IBOutlet] = ACTIONS(8933), - [anon_sym_IBInspectable] = ACTIONS(8933), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8933), - [anon_sym_COLON] = ACTIONS(8935), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8933), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8933), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8933), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8933), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8933), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8933), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8933), - [anon_sym_NS_AVAILABLE] = ACTIONS(8933), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8933), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8933), - [anon_sym_API_AVAILABLE] = ACTIONS(8933), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8933), - [anon_sym_API_DEPRECATED] = ACTIONS(8933), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8933), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8933), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8933), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8933), - [anon_sym___deprecated_msg] = ACTIONS(8933), - [anon_sym___deprecated_enum_msg] = ACTIONS(8933), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8933), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8933), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8933), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8933), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(8933), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(8933), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3730] = { - [sym_attribute_specifier] = STATE(4102), - [sym_type_qualifier] = STATE(5306), - [sym_parameter_list] = STATE(3788), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3885), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_SEMI] = ACTIONS(8937), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_LBRACK] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(8885), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3731] = { - [sym_field_declaration_list] = STATE(3800), - [sym_identifier] = ACTIONS(8202), - [anon_sym_COMMA] = ACTIONS(8204), - [anon_sym_RPAREN] = ACTIONS(8204), - [anon_sym_LPAREN2] = ACTIONS(8204), - [anon_sym_STAR] = ACTIONS(8204), - [anon_sym_GT] = ACTIONS(8204), - [anon_sym_SEMI] = ACTIONS(8204), - [anon_sym___attribute] = ACTIONS(8202), - [anon_sym___attribute__] = ACTIONS(8202), - [anon_sym___based] = ACTIONS(8202), - [anon_sym_LBRACE] = ACTIONS(8847), - [anon_sym_LBRACK] = ACTIONS(8204), - [anon_sym_const] = ACTIONS(8202), - [anon_sym_volatile] = ACTIONS(8202), - [anon_sym_restrict] = ACTIONS(8202), - [anon_sym__Atomic] = ACTIONS(8202), - [anon_sym_in] = ACTIONS(8202), - [anon_sym_out] = ACTIONS(8202), - [anon_sym_inout] = ACTIONS(8202), - [anon_sym_bycopy] = ACTIONS(8202), - [anon_sym_byref] = ACTIONS(8202), - [anon_sym_oneway] = ACTIONS(8202), - [anon_sym__Nullable] = ACTIONS(8202), - [anon_sym__Nonnull] = ACTIONS(8202), - [anon_sym__Nullable_result] = ACTIONS(8202), - [anon_sym__Null_unspecified] = ACTIONS(8202), - [anon_sym___autoreleasing] = ACTIONS(8202), - [anon_sym___nullable] = ACTIONS(8202), - [anon_sym___nonnull] = ACTIONS(8202), - [anon_sym___strong] = ACTIONS(8202), - [anon_sym___weak] = ACTIONS(8202), - [anon_sym___bridge] = ACTIONS(8202), - [anon_sym___bridge_transfer] = ACTIONS(8202), - [anon_sym___bridge_retained] = ACTIONS(8202), - [anon_sym___unsafe_unretained] = ACTIONS(8202), - [anon_sym___block] = ACTIONS(8202), - [anon_sym___kindof] = ACTIONS(8202), - [anon_sym___unused] = ACTIONS(8202), - [anon_sym__Complex] = ACTIONS(8202), - [anon_sym___complex] = ACTIONS(8202), - [anon_sym_IBOutlet] = ACTIONS(8202), - [anon_sym_IBInspectable] = ACTIONS(8202), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8202), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8202), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8202), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8202), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8202), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8202), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8202), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8202), - [anon_sym_NS_AVAILABLE] = ACTIONS(8202), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8202), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8202), - [anon_sym_API_AVAILABLE] = ACTIONS(8202), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8202), - [anon_sym_API_DEPRECATED] = ACTIONS(8202), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8202), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8202), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8202), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8202), - [anon_sym___deprecated_msg] = ACTIONS(8202), - [anon_sym___deprecated_enum_msg] = ACTIONS(8202), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8202), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8202), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8202), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8202), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3732] = { - [sym_field_declaration_list] = STATE(3814), - [sym_identifier] = ACTIONS(8258), - [anon_sym_COMMA] = ACTIONS(8260), - [anon_sym_RPAREN] = ACTIONS(8260), - [anon_sym_LPAREN2] = ACTIONS(8260), - [anon_sym_STAR] = ACTIONS(8260), - [anon_sym_GT] = ACTIONS(8260), - [anon_sym_SEMI] = ACTIONS(8260), - [anon_sym___attribute] = ACTIONS(8258), - [anon_sym___attribute__] = ACTIONS(8258), - [anon_sym___based] = ACTIONS(8258), - [anon_sym_LBRACE] = ACTIONS(8939), - [anon_sym_LBRACK] = ACTIONS(8260), - [anon_sym_const] = ACTIONS(8258), - [anon_sym_volatile] = ACTIONS(8258), - [anon_sym_restrict] = ACTIONS(8258), - [anon_sym__Atomic] = ACTIONS(8258), - [anon_sym_in] = ACTIONS(8258), - [anon_sym_out] = ACTIONS(8258), - [anon_sym_inout] = ACTIONS(8258), - [anon_sym_bycopy] = ACTIONS(8258), - [anon_sym_byref] = ACTIONS(8258), - [anon_sym_oneway] = ACTIONS(8258), - [anon_sym__Nullable] = ACTIONS(8258), - [anon_sym__Nonnull] = ACTIONS(8258), - [anon_sym__Nullable_result] = ACTIONS(8258), - [anon_sym__Null_unspecified] = ACTIONS(8258), - [anon_sym___autoreleasing] = ACTIONS(8258), - [anon_sym___nullable] = ACTIONS(8258), - [anon_sym___nonnull] = ACTIONS(8258), - [anon_sym___strong] = ACTIONS(8258), - [anon_sym___weak] = ACTIONS(8258), - [anon_sym___bridge] = ACTIONS(8258), - [anon_sym___bridge_transfer] = ACTIONS(8258), - [anon_sym___bridge_retained] = ACTIONS(8258), - [anon_sym___unsafe_unretained] = ACTIONS(8258), - [anon_sym___block] = ACTIONS(8258), - [anon_sym___kindof] = ACTIONS(8258), - [anon_sym___unused] = ACTIONS(8258), - [anon_sym__Complex] = ACTIONS(8258), - [anon_sym___complex] = ACTIONS(8258), - [anon_sym_IBOutlet] = ACTIONS(8258), - [anon_sym_IBInspectable] = ACTIONS(8258), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8258), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8258), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8258), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8258), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8258), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8258), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8258), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8258), - [anon_sym_NS_AVAILABLE] = ACTIONS(8258), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8258), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8258), - [anon_sym_API_AVAILABLE] = ACTIONS(8258), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8258), - [anon_sym_API_DEPRECATED] = ACTIONS(8258), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8258), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8258), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8258), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8258), - [anon_sym___deprecated_msg] = ACTIONS(8258), - [anon_sym___deprecated_enum_msg] = ACTIONS(8258), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8258), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8258), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8258), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8258), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3733] = { - [sym_field_declaration_list] = STATE(3800), - [sym_identifier] = ACTIONS(8202), - [anon_sym_COMMA] = ACTIONS(8204), - [anon_sym_RPAREN] = ACTIONS(8204), - [anon_sym_LPAREN2] = ACTIONS(8204), - [anon_sym_STAR] = ACTIONS(8204), - [anon_sym_GT] = ACTIONS(8204), - [anon_sym_SEMI] = ACTIONS(8204), - [anon_sym___attribute] = ACTIONS(8202), - [anon_sym___attribute__] = ACTIONS(8202), - [anon_sym___based] = ACTIONS(8202), - [anon_sym_LBRACE] = ACTIONS(8942), - [anon_sym_LBRACK] = ACTIONS(8204), - [anon_sym_const] = ACTIONS(8202), - [anon_sym_volatile] = ACTIONS(8202), - [anon_sym_restrict] = ACTIONS(8202), - [anon_sym__Atomic] = ACTIONS(8202), - [anon_sym_in] = ACTIONS(8202), - [anon_sym_out] = ACTIONS(8202), - [anon_sym_inout] = ACTIONS(8202), - [anon_sym_bycopy] = ACTIONS(8202), - [anon_sym_byref] = ACTIONS(8202), - [anon_sym_oneway] = ACTIONS(8202), - [anon_sym__Nullable] = ACTIONS(8202), - [anon_sym__Nonnull] = ACTIONS(8202), - [anon_sym__Nullable_result] = ACTIONS(8202), - [anon_sym__Null_unspecified] = ACTIONS(8202), - [anon_sym___autoreleasing] = ACTIONS(8202), - [anon_sym___nullable] = ACTIONS(8202), - [anon_sym___nonnull] = ACTIONS(8202), - [anon_sym___strong] = ACTIONS(8202), - [anon_sym___weak] = ACTIONS(8202), - [anon_sym___bridge] = ACTIONS(8202), - [anon_sym___bridge_transfer] = ACTIONS(8202), - [anon_sym___bridge_retained] = ACTIONS(8202), - [anon_sym___unsafe_unretained] = ACTIONS(8202), - [anon_sym___block] = ACTIONS(8202), - [anon_sym___kindof] = ACTIONS(8202), - [anon_sym___unused] = ACTIONS(8202), - [anon_sym__Complex] = ACTIONS(8202), - [anon_sym___complex] = ACTIONS(8202), - [anon_sym_IBOutlet] = ACTIONS(8202), - [anon_sym_IBInspectable] = ACTIONS(8202), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8202), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8202), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8202), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8202), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8202), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8202), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8202), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8202), - [anon_sym_NS_AVAILABLE] = ACTIONS(8202), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8202), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8202), - [anon_sym_API_AVAILABLE] = ACTIONS(8202), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8202), - [anon_sym_API_DEPRECATED] = ACTIONS(8202), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8202), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8202), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8202), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8202), - [anon_sym___deprecated_msg] = ACTIONS(8202), - [anon_sym___deprecated_enum_msg] = ACTIONS(8202), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8202), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8202), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8202), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8202), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3734] = { - [sym_enumerator_list] = STATE(3803), - [sym_identifier] = ACTIONS(8177), - [anon_sym_COMMA] = ACTIONS(8179), - [anon_sym_RPAREN] = ACTIONS(8179), - [anon_sym_LPAREN2] = ACTIONS(8179), - [anon_sym_STAR] = ACTIONS(8179), - [anon_sym_GT] = ACTIONS(8179), - [anon_sym_SEMI] = ACTIONS(8179), - [anon_sym___attribute] = ACTIONS(8177), - [anon_sym___attribute__] = ACTIONS(8177), - [anon_sym___based] = ACTIONS(8177), - [anon_sym_LBRACE] = ACTIONS(8945), - [anon_sym_LBRACK] = ACTIONS(8179), - [anon_sym_const] = ACTIONS(8177), - [anon_sym_volatile] = ACTIONS(8177), - [anon_sym_restrict] = ACTIONS(8177), - [anon_sym__Atomic] = ACTIONS(8177), - [anon_sym_in] = ACTIONS(8177), - [anon_sym_out] = ACTIONS(8177), - [anon_sym_inout] = ACTIONS(8177), - [anon_sym_bycopy] = ACTIONS(8177), - [anon_sym_byref] = ACTIONS(8177), - [anon_sym_oneway] = ACTIONS(8177), - [anon_sym__Nullable] = ACTIONS(8177), - [anon_sym__Nonnull] = ACTIONS(8177), - [anon_sym__Nullable_result] = ACTIONS(8177), - [anon_sym__Null_unspecified] = ACTIONS(8177), - [anon_sym___autoreleasing] = ACTIONS(8177), - [anon_sym___nullable] = ACTIONS(8177), - [anon_sym___nonnull] = ACTIONS(8177), - [anon_sym___strong] = ACTIONS(8177), - [anon_sym___weak] = ACTIONS(8177), - [anon_sym___bridge] = ACTIONS(8177), - [anon_sym___bridge_transfer] = ACTIONS(8177), - [anon_sym___bridge_retained] = ACTIONS(8177), - [anon_sym___unsafe_unretained] = ACTIONS(8177), - [anon_sym___block] = ACTIONS(8177), - [anon_sym___kindof] = ACTIONS(8177), - [anon_sym___unused] = ACTIONS(8177), - [anon_sym__Complex] = ACTIONS(8177), - [anon_sym___complex] = ACTIONS(8177), - [anon_sym_IBOutlet] = ACTIONS(8177), - [anon_sym_IBInspectable] = ACTIONS(8177), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8177), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8177), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8177), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8177), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8177), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8177), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8177), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8177), - [anon_sym_NS_AVAILABLE] = ACTIONS(8177), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8177), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8177), - [anon_sym_API_AVAILABLE] = ACTIONS(8177), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8177), - [anon_sym_API_DEPRECATED] = ACTIONS(8177), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8177), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8177), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8177), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8177), - [anon_sym___deprecated_msg] = ACTIONS(8177), - [anon_sym___deprecated_enum_msg] = ACTIONS(8177), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8177), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8177), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8177), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8177), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3735] = { - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym_type_descriptor] = STATE(4945), - [sym_macro_type_specifier] = STATE(3957), - [sym__protocol_identifier] = STATE(4943), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(8948), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(1149), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(1149), - [sym_IMP] = ACTIONS(1149), - [sym_BOOL] = ACTIONS(1149), - [sym_auto] = ACTIONS(1149), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3736] = { - [sym_enumerator_list] = STATE(3789), - [sym_identifier] = ACTIONS(8209), - [anon_sym_COMMA] = ACTIONS(8211), - [anon_sym_RPAREN] = ACTIONS(8211), - [anon_sym_LPAREN2] = ACTIONS(8211), - [anon_sym_STAR] = ACTIONS(8211), - [anon_sym_GT] = ACTIONS(8211), - [anon_sym_SEMI] = ACTIONS(8211), - [anon_sym___attribute] = ACTIONS(8209), - [anon_sym___attribute__] = ACTIONS(8209), - [anon_sym___based] = ACTIONS(8209), - [anon_sym_LBRACE] = ACTIONS(8950), - [anon_sym_LBRACK] = ACTIONS(8211), - [anon_sym_const] = ACTIONS(8209), - [anon_sym_volatile] = ACTIONS(8209), - [anon_sym_restrict] = ACTIONS(8209), - [anon_sym__Atomic] = ACTIONS(8209), - [anon_sym_in] = ACTIONS(8209), - [anon_sym_out] = ACTIONS(8209), - [anon_sym_inout] = ACTIONS(8209), - [anon_sym_bycopy] = ACTIONS(8209), - [anon_sym_byref] = ACTIONS(8209), - [anon_sym_oneway] = ACTIONS(8209), - [anon_sym__Nullable] = ACTIONS(8209), - [anon_sym__Nonnull] = ACTIONS(8209), - [anon_sym__Nullable_result] = ACTIONS(8209), - [anon_sym__Null_unspecified] = ACTIONS(8209), - [anon_sym___autoreleasing] = ACTIONS(8209), - [anon_sym___nullable] = ACTIONS(8209), - [anon_sym___nonnull] = ACTIONS(8209), - [anon_sym___strong] = ACTIONS(8209), - [anon_sym___weak] = ACTIONS(8209), - [anon_sym___bridge] = ACTIONS(8209), - [anon_sym___bridge_transfer] = ACTIONS(8209), - [anon_sym___bridge_retained] = ACTIONS(8209), - [anon_sym___unsafe_unretained] = ACTIONS(8209), - [anon_sym___block] = ACTIONS(8209), - [anon_sym___kindof] = ACTIONS(8209), - [anon_sym___unused] = ACTIONS(8209), - [anon_sym__Complex] = ACTIONS(8209), - [anon_sym___complex] = ACTIONS(8209), - [anon_sym_IBOutlet] = ACTIONS(8209), - [anon_sym_IBInspectable] = ACTIONS(8209), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8209), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8209), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8209), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8209), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8209), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8209), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8209), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8209), - [anon_sym_NS_AVAILABLE] = ACTIONS(8209), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8209), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8209), - [anon_sym_API_AVAILABLE] = ACTIONS(8209), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8209), - [anon_sym_API_DEPRECATED] = ACTIONS(8209), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8209), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8209), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8209), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8209), - [anon_sym___deprecated_msg] = ACTIONS(8209), - [anon_sym___deprecated_enum_msg] = ACTIONS(8209), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8209), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8209), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8209), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8209), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3737] = { - [sym_attribute_specifier] = STATE(4236), - [sym_type_qualifier] = STATE(5564), - [sym_parameter_list] = STATE(3788), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3893), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_SEMI] = ACTIONS(8953), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_LBRACK] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(8885), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3738] = { - [sym_attribute_specifier] = STATE(4251), - [sym_type_qualifier] = STATE(5721), - [sym_parameter_list] = STATE(3788), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3880), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_SEMI] = ACTIONS(8877), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_LBRACK] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(8885), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3739] = { - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym_type_descriptor] = STATE(4989), - [sym_macro_type_specifier] = STATE(3957), - [sym__protocol_identifier] = STATE(4996), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(8948), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(1149), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(1149), - [sym_IMP] = ACTIONS(1149), - [sym_BOOL] = ACTIONS(1149), - [sym_auto] = ACTIONS(1149), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3740] = { - [sym_identifier] = ACTIONS(8955), - [anon_sym_COMMA] = ACTIONS(8957), - [anon_sym_RPAREN] = ACTIONS(8957), - [anon_sym_LPAREN2] = ACTIONS(8957), - [anon_sym_SEMI] = ACTIONS(8957), - [anon_sym___attribute] = ACTIONS(8955), - [anon_sym___attribute__] = ACTIONS(8955), - [anon_sym_LBRACE] = ACTIONS(8957), - [anon_sym_LBRACK] = ACTIONS(8957), - [anon_sym_EQ] = ACTIONS(8957), - [anon_sym_const] = ACTIONS(8955), - [anon_sym_volatile] = ACTIONS(8955), - [anon_sym_restrict] = ACTIONS(8955), - [anon_sym__Atomic] = ACTIONS(8955), - [anon_sym_in] = ACTIONS(8955), - [anon_sym_out] = ACTIONS(8955), - [anon_sym_inout] = ACTIONS(8955), - [anon_sym_bycopy] = ACTIONS(8955), - [anon_sym_byref] = ACTIONS(8955), - [anon_sym_oneway] = ACTIONS(8955), - [anon_sym__Nullable] = ACTIONS(8955), - [anon_sym__Nonnull] = ACTIONS(8955), - [anon_sym__Nullable_result] = ACTIONS(8955), - [anon_sym__Null_unspecified] = ACTIONS(8955), - [anon_sym___autoreleasing] = ACTIONS(8955), - [anon_sym___nullable] = ACTIONS(8955), - [anon_sym___nonnull] = ACTIONS(8955), - [anon_sym___strong] = ACTIONS(8955), - [anon_sym___weak] = ACTIONS(8955), - [anon_sym___bridge] = ACTIONS(8955), - [anon_sym___bridge_transfer] = ACTIONS(8955), - [anon_sym___bridge_retained] = ACTIONS(8955), - [anon_sym___unsafe_unretained] = ACTIONS(8955), - [anon_sym___block] = ACTIONS(8955), - [anon_sym___kindof] = ACTIONS(8955), - [anon_sym___unused] = ACTIONS(8955), - [anon_sym__Complex] = ACTIONS(8955), - [anon_sym___complex] = ACTIONS(8955), - [anon_sym_IBOutlet] = ACTIONS(8955), - [anon_sym_IBInspectable] = ACTIONS(8955), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8955), - [anon_sym_COLON] = ACTIONS(8957), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8955), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8955), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8955), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8955), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8955), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8955), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8955), - [anon_sym_NS_AVAILABLE] = ACTIONS(8955), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8955), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8955), - [anon_sym_API_AVAILABLE] = ACTIONS(8955), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8955), - [anon_sym_API_DEPRECATED] = ACTIONS(8955), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8955), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8955), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8955), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8955), - [anon_sym___deprecated_msg] = ACTIONS(8955), - [anon_sym___deprecated_enum_msg] = ACTIONS(8955), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8955), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8955), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8955), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8955), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(8955), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(8955), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3741] = { - [sym_field_declaration_list] = STATE(3792), - [sym_identifier] = ACTIONS(8219), - [anon_sym_COMMA] = ACTIONS(8221), - [anon_sym_RPAREN] = ACTIONS(8221), - [anon_sym_LPAREN2] = ACTIONS(8221), - [anon_sym_STAR] = ACTIONS(8221), - [anon_sym_GT] = ACTIONS(8221), - [anon_sym_SEMI] = ACTIONS(8221), - [anon_sym___attribute] = ACTIONS(8219), - [anon_sym___attribute__] = ACTIONS(8219), - [anon_sym___based] = ACTIONS(8219), - [anon_sym_LBRACE] = ACTIONS(8959), - [anon_sym_LBRACK] = ACTIONS(8221), - [anon_sym_const] = ACTIONS(8219), - [anon_sym_volatile] = ACTIONS(8219), - [anon_sym_restrict] = ACTIONS(8219), - [anon_sym__Atomic] = ACTIONS(8219), - [anon_sym_in] = ACTIONS(8219), - [anon_sym_out] = ACTIONS(8219), - [anon_sym_inout] = ACTIONS(8219), - [anon_sym_bycopy] = ACTIONS(8219), - [anon_sym_byref] = ACTIONS(8219), - [anon_sym_oneway] = ACTIONS(8219), - [anon_sym__Nullable] = ACTIONS(8219), - [anon_sym__Nonnull] = ACTIONS(8219), - [anon_sym__Nullable_result] = ACTIONS(8219), - [anon_sym__Null_unspecified] = ACTIONS(8219), - [anon_sym___autoreleasing] = ACTIONS(8219), - [anon_sym___nullable] = ACTIONS(8219), - [anon_sym___nonnull] = ACTIONS(8219), - [anon_sym___strong] = ACTIONS(8219), - [anon_sym___weak] = ACTIONS(8219), - [anon_sym___bridge] = ACTIONS(8219), - [anon_sym___bridge_transfer] = ACTIONS(8219), - [anon_sym___bridge_retained] = ACTIONS(8219), - [anon_sym___unsafe_unretained] = ACTIONS(8219), - [anon_sym___block] = ACTIONS(8219), - [anon_sym___kindof] = ACTIONS(8219), - [anon_sym___unused] = ACTIONS(8219), - [anon_sym__Complex] = ACTIONS(8219), - [anon_sym___complex] = ACTIONS(8219), - [anon_sym_IBOutlet] = ACTIONS(8219), - [anon_sym_IBInspectable] = ACTIONS(8219), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8219), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8219), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8219), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8219), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8219), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8219), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8219), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8219), - [anon_sym_NS_AVAILABLE] = ACTIONS(8219), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8219), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8219), - [anon_sym_API_AVAILABLE] = ACTIONS(8219), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8219), - [anon_sym_API_DEPRECATED] = ACTIONS(8219), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8219), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8219), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8219), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8219), - [anon_sym___deprecated_msg] = ACTIONS(8219), - [anon_sym___deprecated_enum_msg] = ACTIONS(8219), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8219), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8219), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8219), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8219), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3742] = { - [sym_attribute_specifier] = STATE(4222), - [sym_type_qualifier] = STATE(5391), - [sym_parameter_list] = STATE(3788), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3879), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_SEMI] = ACTIONS(8962), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_LBRACK] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(8885), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3743] = { - [sym_enumerator_list] = STATE(3766), - [sym_identifier] = ACTIONS(8226), - [anon_sym_COMMA] = ACTIONS(8228), - [anon_sym_RPAREN] = ACTIONS(8228), - [anon_sym_LPAREN2] = ACTIONS(8228), - [anon_sym_STAR] = ACTIONS(8228), - [anon_sym_GT] = ACTIONS(8228), - [anon_sym_SEMI] = ACTIONS(8228), - [anon_sym___attribute] = ACTIONS(8226), - [anon_sym___attribute__] = ACTIONS(8226), - [anon_sym___based] = ACTIONS(8226), - [anon_sym_LBRACE] = ACTIONS(8964), - [anon_sym_LBRACK] = ACTIONS(8228), - [anon_sym_const] = ACTIONS(8226), - [anon_sym_volatile] = ACTIONS(8226), - [anon_sym_restrict] = ACTIONS(8226), - [anon_sym__Atomic] = ACTIONS(8226), - [anon_sym_in] = ACTIONS(8226), - [anon_sym_out] = ACTIONS(8226), - [anon_sym_inout] = ACTIONS(8226), - [anon_sym_bycopy] = ACTIONS(8226), - [anon_sym_byref] = ACTIONS(8226), - [anon_sym_oneway] = ACTIONS(8226), - [anon_sym__Nullable] = ACTIONS(8226), - [anon_sym__Nonnull] = ACTIONS(8226), - [anon_sym__Nullable_result] = ACTIONS(8226), - [anon_sym__Null_unspecified] = ACTIONS(8226), - [anon_sym___autoreleasing] = ACTIONS(8226), - [anon_sym___nullable] = ACTIONS(8226), - [anon_sym___nonnull] = ACTIONS(8226), - [anon_sym___strong] = ACTIONS(8226), - [anon_sym___weak] = ACTIONS(8226), - [anon_sym___bridge] = ACTIONS(8226), - [anon_sym___bridge_transfer] = ACTIONS(8226), - [anon_sym___bridge_retained] = ACTIONS(8226), - [anon_sym___unsafe_unretained] = ACTIONS(8226), - [anon_sym___block] = ACTIONS(8226), - [anon_sym___kindof] = ACTIONS(8226), - [anon_sym___unused] = ACTIONS(8226), - [anon_sym__Complex] = ACTIONS(8226), - [anon_sym___complex] = ACTIONS(8226), - [anon_sym_IBOutlet] = ACTIONS(8226), - [anon_sym_IBInspectable] = ACTIONS(8226), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8226), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8226), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8226), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8226), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8226), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8226), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8226), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8226), - [anon_sym_NS_AVAILABLE] = ACTIONS(8226), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8226), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8226), - [anon_sym_API_AVAILABLE] = ACTIONS(8226), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8226), - [anon_sym_API_DEPRECATED] = ACTIONS(8226), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8226), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8226), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8226), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8226), - [anon_sym___deprecated_msg] = ACTIONS(8226), - [anon_sym___deprecated_enum_msg] = ACTIONS(8226), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8226), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8226), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8226), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8226), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3744] = { - [sym_identifier] = ACTIONS(6790), - [anon_sym_COMMA] = ACTIONS(6792), - [anon_sym_RPAREN] = ACTIONS(6792), - [anon_sym_LPAREN2] = ACTIONS(6792), - [anon_sym_STAR] = ACTIONS(6792), - [anon_sym_GT] = ACTIONS(6792), - [anon_sym_LT] = ACTIONS(6792), - [anon_sym_SEMI] = ACTIONS(6792), - [anon_sym___attribute] = ACTIONS(6790), - [anon_sym___attribute__] = ACTIONS(6790), - [anon_sym___based] = ACTIONS(6790), - [anon_sym_LBRACE] = ACTIONS(6792), - [anon_sym_LBRACK] = ACTIONS(6792), - [anon_sym_const] = ACTIONS(6790), - [anon_sym_volatile] = ACTIONS(6790), - [anon_sym_restrict] = ACTIONS(6790), - [anon_sym__Atomic] = ACTIONS(6790), - [anon_sym_in] = ACTIONS(6790), - [anon_sym_out] = ACTIONS(6790), - [anon_sym_inout] = ACTIONS(6790), - [anon_sym_bycopy] = ACTIONS(6790), - [anon_sym_byref] = ACTIONS(6790), - [anon_sym_oneway] = ACTIONS(6790), - [anon_sym__Nullable] = ACTIONS(6790), - [anon_sym__Nonnull] = ACTIONS(6790), - [anon_sym__Nullable_result] = ACTIONS(6790), - [anon_sym__Null_unspecified] = ACTIONS(6790), - [anon_sym___autoreleasing] = ACTIONS(6790), - [anon_sym___nullable] = ACTIONS(6790), - [anon_sym___nonnull] = ACTIONS(6790), - [anon_sym___strong] = ACTIONS(6790), - [anon_sym___weak] = ACTIONS(6790), - [anon_sym___bridge] = ACTIONS(6790), - [anon_sym___bridge_transfer] = ACTIONS(6790), - [anon_sym___bridge_retained] = ACTIONS(6790), - [anon_sym___unsafe_unretained] = ACTIONS(6790), - [anon_sym___block] = ACTIONS(6790), - [anon_sym___kindof] = ACTIONS(6790), - [anon_sym___unused] = ACTIONS(6790), - [anon_sym__Complex] = ACTIONS(6790), - [anon_sym___complex] = ACTIONS(6790), - [anon_sym_IBOutlet] = ACTIONS(6790), - [anon_sym_IBInspectable] = ACTIONS(6790), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6790), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6790), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6790), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6790), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6790), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6790), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6790), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6790), - [anon_sym_NS_AVAILABLE] = ACTIONS(6790), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6790), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6790), - [anon_sym_API_AVAILABLE] = ACTIONS(6790), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6790), - [anon_sym_API_DEPRECATED] = ACTIONS(6790), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6790), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6790), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6790), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6790), - [anon_sym___deprecated_msg] = ACTIONS(6790), - [anon_sym___deprecated_enum_msg] = ACTIONS(6790), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6790), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6790), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6790), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6790), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3745] = { - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym_type_descriptor] = STATE(5001), - [sym_macro_type_specifier] = STATE(3957), - [sym__protocol_identifier] = STATE(5002), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(8948), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(1149), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(1149), - [sym_IMP] = ACTIONS(1149), - [sym_BOOL] = ACTIONS(1149), - [sym_auto] = ACTIONS(1149), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3746] = { - [sym_field_declaration_list] = STATE(3787), - [sym_identifier] = ACTIONS(8233), - [anon_sym_COMMA] = ACTIONS(8235), - [anon_sym_RPAREN] = ACTIONS(8235), - [anon_sym_LPAREN2] = ACTIONS(8235), - [anon_sym_STAR] = ACTIONS(8235), - [anon_sym_GT] = ACTIONS(8235), - [anon_sym_SEMI] = ACTIONS(8235), - [anon_sym___attribute] = ACTIONS(8233), - [anon_sym___attribute__] = ACTIONS(8233), - [anon_sym___based] = ACTIONS(8233), - [anon_sym_LBRACE] = ACTIONS(8966), - [anon_sym_LBRACK] = ACTIONS(8235), - [anon_sym_const] = ACTIONS(8233), - [anon_sym_volatile] = ACTIONS(8233), - [anon_sym_restrict] = ACTIONS(8233), - [anon_sym__Atomic] = ACTIONS(8233), - [anon_sym_in] = ACTIONS(8233), - [anon_sym_out] = ACTIONS(8233), - [anon_sym_inout] = ACTIONS(8233), - [anon_sym_bycopy] = ACTIONS(8233), - [anon_sym_byref] = ACTIONS(8233), - [anon_sym_oneway] = ACTIONS(8233), - [anon_sym__Nullable] = ACTIONS(8233), - [anon_sym__Nonnull] = ACTIONS(8233), - [anon_sym__Nullable_result] = ACTIONS(8233), - [anon_sym__Null_unspecified] = ACTIONS(8233), - [anon_sym___autoreleasing] = ACTIONS(8233), - [anon_sym___nullable] = ACTIONS(8233), - [anon_sym___nonnull] = ACTIONS(8233), - [anon_sym___strong] = ACTIONS(8233), - [anon_sym___weak] = ACTIONS(8233), - [anon_sym___bridge] = ACTIONS(8233), - [anon_sym___bridge_transfer] = ACTIONS(8233), - [anon_sym___bridge_retained] = ACTIONS(8233), - [anon_sym___unsafe_unretained] = ACTIONS(8233), - [anon_sym___block] = ACTIONS(8233), - [anon_sym___kindof] = ACTIONS(8233), - [anon_sym___unused] = ACTIONS(8233), - [anon_sym__Complex] = ACTIONS(8233), - [anon_sym___complex] = ACTIONS(8233), - [anon_sym_IBOutlet] = ACTIONS(8233), - [anon_sym_IBInspectable] = ACTIONS(8233), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8233), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8233), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8233), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8233), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8233), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8233), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8233), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8233), - [anon_sym_NS_AVAILABLE] = ACTIONS(8233), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8233), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8233), - [anon_sym_API_AVAILABLE] = ACTIONS(8233), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8233), - [anon_sym_API_DEPRECATED] = ACTIONS(8233), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8233), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8233), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8233), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8233), - [anon_sym___deprecated_msg] = ACTIONS(8233), - [anon_sym___deprecated_enum_msg] = ACTIONS(8233), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8233), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8233), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8233), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8233), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3747] = { - [sym_enumerator_list] = STATE(3775), - [sym_identifier] = ACTIONS(8246), - [anon_sym_COMMA] = ACTIONS(8248), - [anon_sym_RPAREN] = ACTIONS(8248), - [anon_sym_LPAREN2] = ACTIONS(8248), - [anon_sym_STAR] = ACTIONS(8248), - [anon_sym_GT] = ACTIONS(8248), - [anon_sym_SEMI] = ACTIONS(8248), - [anon_sym___attribute] = ACTIONS(8246), - [anon_sym___attribute__] = ACTIONS(8246), - [anon_sym___based] = ACTIONS(8246), - [anon_sym_LBRACE] = ACTIONS(8969), - [anon_sym_LBRACK] = ACTIONS(8248), - [anon_sym_const] = ACTIONS(8246), - [anon_sym_volatile] = ACTIONS(8246), - [anon_sym_restrict] = ACTIONS(8246), - [anon_sym__Atomic] = ACTIONS(8246), - [anon_sym_in] = ACTIONS(8246), - [anon_sym_out] = ACTIONS(8246), - [anon_sym_inout] = ACTIONS(8246), - [anon_sym_bycopy] = ACTIONS(8246), - [anon_sym_byref] = ACTIONS(8246), - [anon_sym_oneway] = ACTIONS(8246), - [anon_sym__Nullable] = ACTIONS(8246), - [anon_sym__Nonnull] = ACTIONS(8246), - [anon_sym__Nullable_result] = ACTIONS(8246), - [anon_sym__Null_unspecified] = ACTIONS(8246), - [anon_sym___autoreleasing] = ACTIONS(8246), - [anon_sym___nullable] = ACTIONS(8246), - [anon_sym___nonnull] = ACTIONS(8246), - [anon_sym___strong] = ACTIONS(8246), - [anon_sym___weak] = ACTIONS(8246), - [anon_sym___bridge] = ACTIONS(8246), - [anon_sym___bridge_transfer] = ACTIONS(8246), - [anon_sym___bridge_retained] = ACTIONS(8246), - [anon_sym___unsafe_unretained] = ACTIONS(8246), - [anon_sym___block] = ACTIONS(8246), - [anon_sym___kindof] = ACTIONS(8246), - [anon_sym___unused] = ACTIONS(8246), - [anon_sym__Complex] = ACTIONS(8246), - [anon_sym___complex] = ACTIONS(8246), - [anon_sym_IBOutlet] = ACTIONS(8246), - [anon_sym_IBInspectable] = ACTIONS(8246), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8246), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8246), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8246), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8246), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8246), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8246), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8246), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8246), - [anon_sym_NS_AVAILABLE] = ACTIONS(8246), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8246), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8246), - [anon_sym_API_AVAILABLE] = ACTIONS(8246), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8246), - [anon_sym_API_DEPRECATED] = ACTIONS(8246), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8246), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8246), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8246), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8246), - [anon_sym___deprecated_msg] = ACTIONS(8246), - [anon_sym___deprecated_enum_msg] = ACTIONS(8246), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8246), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8246), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8246), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8246), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3748] = { - [sym_enumerator_list] = STATE(3775), - [sym_identifier] = ACTIONS(8246), - [anon_sym_COMMA] = ACTIONS(8248), - [anon_sym_RPAREN] = ACTIONS(8248), - [anon_sym_LPAREN2] = ACTIONS(8248), - [anon_sym_STAR] = ACTIONS(8248), - [anon_sym_GT] = ACTIONS(8248), - [anon_sym_SEMI] = ACTIONS(8248), - [anon_sym___attribute] = ACTIONS(8246), - [anon_sym___attribute__] = ACTIONS(8246), - [anon_sym___based] = ACTIONS(8246), - [anon_sym_LBRACE] = ACTIONS(8964), - [anon_sym_LBRACK] = ACTIONS(8248), - [anon_sym_const] = ACTIONS(8246), - [anon_sym_volatile] = ACTIONS(8246), - [anon_sym_restrict] = ACTIONS(8246), - [anon_sym__Atomic] = ACTIONS(8246), - [anon_sym_in] = ACTIONS(8246), - [anon_sym_out] = ACTIONS(8246), - [anon_sym_inout] = ACTIONS(8246), - [anon_sym_bycopy] = ACTIONS(8246), - [anon_sym_byref] = ACTIONS(8246), - [anon_sym_oneway] = ACTIONS(8246), - [anon_sym__Nullable] = ACTIONS(8246), - [anon_sym__Nonnull] = ACTIONS(8246), - [anon_sym__Nullable_result] = ACTIONS(8246), - [anon_sym__Null_unspecified] = ACTIONS(8246), - [anon_sym___autoreleasing] = ACTIONS(8246), - [anon_sym___nullable] = ACTIONS(8246), - [anon_sym___nonnull] = ACTIONS(8246), - [anon_sym___strong] = ACTIONS(8246), - [anon_sym___weak] = ACTIONS(8246), - [anon_sym___bridge] = ACTIONS(8246), - [anon_sym___bridge_transfer] = ACTIONS(8246), - [anon_sym___bridge_retained] = ACTIONS(8246), - [anon_sym___unsafe_unretained] = ACTIONS(8246), - [anon_sym___block] = ACTIONS(8246), - [anon_sym___kindof] = ACTIONS(8246), - [anon_sym___unused] = ACTIONS(8246), - [anon_sym__Complex] = ACTIONS(8246), - [anon_sym___complex] = ACTIONS(8246), - [anon_sym_IBOutlet] = ACTIONS(8246), - [anon_sym_IBInspectable] = ACTIONS(8246), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8246), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8246), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8246), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8246), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8246), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8246), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8246), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8246), - [anon_sym_NS_AVAILABLE] = ACTIONS(8246), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8246), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8246), - [anon_sym_API_AVAILABLE] = ACTIONS(8246), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8246), - [anon_sym_API_DEPRECATED] = ACTIONS(8246), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8246), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8246), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8246), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8246), - [anon_sym___deprecated_msg] = ACTIONS(8246), - [anon_sym___deprecated_enum_msg] = ACTIONS(8246), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8246), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8246), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8246), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8246), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3749] = { - [sym_identifier] = ACTIONS(6874), - [anon_sym_COMMA] = ACTIONS(6876), - [anon_sym_RPAREN] = ACTIONS(6876), - [anon_sym_LPAREN2] = ACTIONS(6876), - [anon_sym_STAR] = ACTIONS(6876), - [anon_sym_GT] = ACTIONS(6876), - [anon_sym_LT] = ACTIONS(6876), - [anon_sym_SEMI] = ACTIONS(6876), - [anon_sym___attribute] = ACTIONS(6874), - [anon_sym___attribute__] = ACTIONS(6874), - [anon_sym___based] = ACTIONS(6874), - [anon_sym_LBRACE] = ACTIONS(6876), - [anon_sym_LBRACK] = ACTIONS(6876), - [anon_sym_const] = ACTIONS(6874), - [anon_sym_volatile] = ACTIONS(6874), - [anon_sym_restrict] = ACTIONS(6874), - [anon_sym__Atomic] = ACTIONS(6874), - [anon_sym_in] = ACTIONS(6874), - [anon_sym_out] = ACTIONS(6874), - [anon_sym_inout] = ACTIONS(6874), - [anon_sym_bycopy] = ACTIONS(6874), - [anon_sym_byref] = ACTIONS(6874), - [anon_sym_oneway] = ACTIONS(6874), - [anon_sym__Nullable] = ACTIONS(6874), - [anon_sym__Nonnull] = ACTIONS(6874), - [anon_sym__Nullable_result] = ACTIONS(6874), - [anon_sym__Null_unspecified] = ACTIONS(6874), - [anon_sym___autoreleasing] = ACTIONS(6874), - [anon_sym___nullable] = ACTIONS(6874), - [anon_sym___nonnull] = ACTIONS(6874), - [anon_sym___strong] = ACTIONS(6874), - [anon_sym___weak] = ACTIONS(6874), - [anon_sym___bridge] = ACTIONS(6874), - [anon_sym___bridge_transfer] = ACTIONS(6874), - [anon_sym___bridge_retained] = ACTIONS(6874), - [anon_sym___unsafe_unretained] = ACTIONS(6874), - [anon_sym___block] = ACTIONS(6874), - [anon_sym___kindof] = ACTIONS(6874), - [anon_sym___unused] = ACTIONS(6874), - [anon_sym__Complex] = ACTIONS(6874), - [anon_sym___complex] = ACTIONS(6874), - [anon_sym_IBOutlet] = ACTIONS(6874), - [anon_sym_IBInspectable] = ACTIONS(6874), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6874), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6874), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6874), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6874), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6874), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6874), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6874), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6874), - [anon_sym_NS_AVAILABLE] = ACTIONS(6874), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6874), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6874), - [anon_sym_API_AVAILABLE] = ACTIONS(6874), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6874), - [anon_sym_API_DEPRECATED] = ACTIONS(6874), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6874), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6874), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6874), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6874), - [anon_sym___deprecated_msg] = ACTIONS(6874), - [anon_sym___deprecated_enum_msg] = ACTIONS(6874), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6874), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6874), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6874), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6874), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3750] = { - [sym_identifier] = ACTIONS(7330), - [anon_sym_COMMA] = ACTIONS(7332), - [anon_sym_RPAREN] = ACTIONS(7332), - [anon_sym_LPAREN2] = ACTIONS(7332), - [anon_sym_STAR] = ACTIONS(7332), - [anon_sym_GT] = ACTIONS(7332), - [anon_sym_LT] = ACTIONS(7332), - [anon_sym_SEMI] = ACTIONS(7332), - [anon_sym___attribute] = ACTIONS(7330), - [anon_sym___attribute__] = ACTIONS(7330), - [anon_sym___based] = ACTIONS(7330), - [anon_sym_LBRACE] = ACTIONS(7332), - [anon_sym_LBRACK] = ACTIONS(7332), - [anon_sym_const] = ACTIONS(7330), - [anon_sym_volatile] = ACTIONS(7330), - [anon_sym_restrict] = ACTIONS(7330), - [anon_sym__Atomic] = ACTIONS(7330), - [anon_sym_in] = ACTIONS(7330), - [anon_sym_out] = ACTIONS(7330), - [anon_sym_inout] = ACTIONS(7330), - [anon_sym_bycopy] = ACTIONS(7330), - [anon_sym_byref] = ACTIONS(7330), - [anon_sym_oneway] = ACTIONS(7330), - [anon_sym__Nullable] = ACTIONS(7330), - [anon_sym__Nonnull] = ACTIONS(7330), - [anon_sym__Nullable_result] = ACTIONS(7330), - [anon_sym__Null_unspecified] = ACTIONS(7330), - [anon_sym___autoreleasing] = ACTIONS(7330), - [anon_sym___nullable] = ACTIONS(7330), - [anon_sym___nonnull] = ACTIONS(7330), - [anon_sym___strong] = ACTIONS(7330), - [anon_sym___weak] = ACTIONS(7330), - [anon_sym___bridge] = ACTIONS(7330), - [anon_sym___bridge_transfer] = ACTIONS(7330), - [anon_sym___bridge_retained] = ACTIONS(7330), - [anon_sym___unsafe_unretained] = ACTIONS(7330), - [anon_sym___block] = ACTIONS(7330), - [anon_sym___kindof] = ACTIONS(7330), - [anon_sym___unused] = ACTIONS(7330), - [anon_sym__Complex] = ACTIONS(7330), - [anon_sym___complex] = ACTIONS(7330), - [anon_sym_IBOutlet] = ACTIONS(7330), - [anon_sym_IBInspectable] = ACTIONS(7330), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7330), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7330), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7330), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7330), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7330), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7330), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7330), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7330), - [anon_sym_NS_AVAILABLE] = ACTIONS(7330), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7330), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7330), - [anon_sym_API_AVAILABLE] = ACTIONS(7330), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7330), - [anon_sym_API_DEPRECATED] = ACTIONS(7330), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7330), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7330), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7330), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7330), - [anon_sym___deprecated_msg] = ACTIONS(7330), - [anon_sym___deprecated_enum_msg] = ACTIONS(7330), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7330), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7330), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7330), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7330), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3751] = { - [sym_enumerator_list] = STATE(3766), - [sym_identifier] = ACTIONS(8226), - [anon_sym_COMMA] = ACTIONS(8228), - [anon_sym_RPAREN] = ACTIONS(8228), - [anon_sym_LPAREN2] = ACTIONS(8228), - [anon_sym_STAR] = ACTIONS(8228), - [anon_sym_GT] = ACTIONS(8228), - [anon_sym_SEMI] = ACTIONS(8228), - [anon_sym___attribute] = ACTIONS(8226), - [anon_sym___attribute__] = ACTIONS(8226), - [anon_sym___based] = ACTIONS(8226), - [anon_sym_LBRACE] = ACTIONS(8972), - [anon_sym_LBRACK] = ACTIONS(8228), - [anon_sym_const] = ACTIONS(8226), - [anon_sym_volatile] = ACTIONS(8226), - [anon_sym_restrict] = ACTIONS(8226), - [anon_sym__Atomic] = ACTIONS(8226), - [anon_sym_in] = ACTIONS(8226), - [anon_sym_out] = ACTIONS(8226), - [anon_sym_inout] = ACTIONS(8226), - [anon_sym_bycopy] = ACTIONS(8226), - [anon_sym_byref] = ACTIONS(8226), - [anon_sym_oneway] = ACTIONS(8226), - [anon_sym__Nullable] = ACTIONS(8226), - [anon_sym__Nonnull] = ACTIONS(8226), - [anon_sym__Nullable_result] = ACTIONS(8226), - [anon_sym__Null_unspecified] = ACTIONS(8226), - [anon_sym___autoreleasing] = ACTIONS(8226), - [anon_sym___nullable] = ACTIONS(8226), - [anon_sym___nonnull] = ACTIONS(8226), - [anon_sym___strong] = ACTIONS(8226), - [anon_sym___weak] = ACTIONS(8226), - [anon_sym___bridge] = ACTIONS(8226), - [anon_sym___bridge_transfer] = ACTIONS(8226), - [anon_sym___bridge_retained] = ACTIONS(8226), - [anon_sym___unsafe_unretained] = ACTIONS(8226), - [anon_sym___block] = ACTIONS(8226), - [anon_sym___kindof] = ACTIONS(8226), - [anon_sym___unused] = ACTIONS(8226), - [anon_sym__Complex] = ACTIONS(8226), - [anon_sym___complex] = ACTIONS(8226), - [anon_sym_IBOutlet] = ACTIONS(8226), - [anon_sym_IBInspectable] = ACTIONS(8226), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8226), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8226), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8226), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8226), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8226), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8226), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8226), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8226), - [anon_sym_NS_AVAILABLE] = ACTIONS(8226), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8226), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8226), - [anon_sym_API_AVAILABLE] = ACTIONS(8226), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8226), - [anon_sym_API_DEPRECATED] = ACTIONS(8226), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8226), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8226), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8226), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8226), - [anon_sym___deprecated_msg] = ACTIONS(8226), - [anon_sym___deprecated_enum_msg] = ACTIONS(8226), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8226), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8226), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8226), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8226), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3752] = { - [sym_enumerator_list] = STATE(3789), - [sym_identifier] = ACTIONS(8209), - [anon_sym_COMMA] = ACTIONS(8211), - [anon_sym_RPAREN] = ACTIONS(8211), - [anon_sym_LPAREN2] = ACTIONS(8211), - [anon_sym_STAR] = ACTIONS(8211), - [anon_sym_GT] = ACTIONS(8211), - [anon_sym_SEMI] = ACTIONS(8211), - [anon_sym___attribute] = ACTIONS(8209), - [anon_sym___attribute__] = ACTIONS(8209), - [anon_sym___based] = ACTIONS(8209), - [anon_sym_LBRACE] = ACTIONS(8964), - [anon_sym_LBRACK] = ACTIONS(8211), - [anon_sym_const] = ACTIONS(8209), - [anon_sym_volatile] = ACTIONS(8209), - [anon_sym_restrict] = ACTIONS(8209), - [anon_sym__Atomic] = ACTIONS(8209), - [anon_sym_in] = ACTIONS(8209), - [anon_sym_out] = ACTIONS(8209), - [anon_sym_inout] = ACTIONS(8209), - [anon_sym_bycopy] = ACTIONS(8209), - [anon_sym_byref] = ACTIONS(8209), - [anon_sym_oneway] = ACTIONS(8209), - [anon_sym__Nullable] = ACTIONS(8209), - [anon_sym__Nonnull] = ACTIONS(8209), - [anon_sym__Nullable_result] = ACTIONS(8209), - [anon_sym__Null_unspecified] = ACTIONS(8209), - [anon_sym___autoreleasing] = ACTIONS(8209), - [anon_sym___nullable] = ACTIONS(8209), - [anon_sym___nonnull] = ACTIONS(8209), - [anon_sym___strong] = ACTIONS(8209), - [anon_sym___weak] = ACTIONS(8209), - [anon_sym___bridge] = ACTIONS(8209), - [anon_sym___bridge_transfer] = ACTIONS(8209), - [anon_sym___bridge_retained] = ACTIONS(8209), - [anon_sym___unsafe_unretained] = ACTIONS(8209), - [anon_sym___block] = ACTIONS(8209), - [anon_sym___kindof] = ACTIONS(8209), - [anon_sym___unused] = ACTIONS(8209), - [anon_sym__Complex] = ACTIONS(8209), - [anon_sym___complex] = ACTIONS(8209), - [anon_sym_IBOutlet] = ACTIONS(8209), - [anon_sym_IBInspectable] = ACTIONS(8209), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8209), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8209), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8209), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8209), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8209), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8209), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8209), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8209), - [anon_sym_NS_AVAILABLE] = ACTIONS(8209), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8209), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8209), - [anon_sym_API_AVAILABLE] = ACTIONS(8209), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8209), - [anon_sym_API_DEPRECATED] = ACTIONS(8209), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8209), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8209), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8209), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8209), - [anon_sym___deprecated_msg] = ACTIONS(8209), - [anon_sym___deprecated_enum_msg] = ACTIONS(8209), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8209), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8209), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8209), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8209), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3753] = { - [sym_attribute_specifier] = STATE(4190), - [sym_type_qualifier] = STATE(5623), - [sym_parameter_list] = STATE(3788), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3895), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_SEMI] = ACTIONS(8975), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_LBRACK] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(8885), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3754] = { - [sym_field_declaration_list] = STATE(3814), - [sym_identifier] = ACTIONS(8258), - [anon_sym_COMMA] = ACTIONS(8260), - [anon_sym_RPAREN] = ACTIONS(8260), - [anon_sym_LPAREN2] = ACTIONS(8260), - [anon_sym_STAR] = ACTIONS(8260), - [anon_sym_GT] = ACTIONS(8260), - [anon_sym_SEMI] = ACTIONS(8260), - [anon_sym___attribute] = ACTIONS(8258), - [anon_sym___attribute__] = ACTIONS(8258), - [anon_sym___based] = ACTIONS(8258), - [anon_sym_LBRACE] = ACTIONS(8847), - [anon_sym_LBRACK] = ACTIONS(8260), - [anon_sym_const] = ACTIONS(8258), - [anon_sym_volatile] = ACTIONS(8258), - [anon_sym_restrict] = ACTIONS(8258), - [anon_sym__Atomic] = ACTIONS(8258), - [anon_sym_in] = ACTIONS(8258), - [anon_sym_out] = ACTIONS(8258), - [anon_sym_inout] = ACTIONS(8258), - [anon_sym_bycopy] = ACTIONS(8258), - [anon_sym_byref] = ACTIONS(8258), - [anon_sym_oneway] = ACTIONS(8258), - [anon_sym__Nullable] = ACTIONS(8258), - [anon_sym__Nonnull] = ACTIONS(8258), - [anon_sym__Nullable_result] = ACTIONS(8258), - [anon_sym__Null_unspecified] = ACTIONS(8258), - [anon_sym___autoreleasing] = ACTIONS(8258), - [anon_sym___nullable] = ACTIONS(8258), - [anon_sym___nonnull] = ACTIONS(8258), - [anon_sym___strong] = ACTIONS(8258), - [anon_sym___weak] = ACTIONS(8258), - [anon_sym___bridge] = ACTIONS(8258), - [anon_sym___bridge_transfer] = ACTIONS(8258), - [anon_sym___bridge_retained] = ACTIONS(8258), - [anon_sym___unsafe_unretained] = ACTIONS(8258), - [anon_sym___block] = ACTIONS(8258), - [anon_sym___kindof] = ACTIONS(8258), - [anon_sym___unused] = ACTIONS(8258), - [anon_sym__Complex] = ACTIONS(8258), - [anon_sym___complex] = ACTIONS(8258), - [anon_sym_IBOutlet] = ACTIONS(8258), - [anon_sym_IBInspectable] = ACTIONS(8258), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8258), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8258), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8258), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8258), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8258), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8258), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8258), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8258), - [anon_sym_NS_AVAILABLE] = ACTIONS(8258), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8258), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8258), - [anon_sym_API_AVAILABLE] = ACTIONS(8258), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8258), - [anon_sym_API_DEPRECATED] = ACTIONS(8258), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8258), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8258), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8258), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8258), - [anon_sym___deprecated_msg] = ACTIONS(8258), - [anon_sym___deprecated_enum_msg] = ACTIONS(8258), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8258), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8258), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8258), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8258), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3755] = { - [sym_field_declaration_list] = STATE(3787), - [sym_identifier] = ACTIONS(8233), - [anon_sym_COMMA] = ACTIONS(8235), - [anon_sym_RPAREN] = ACTIONS(8235), - [anon_sym_LPAREN2] = ACTIONS(8235), - [anon_sym_STAR] = ACTIONS(8235), - [anon_sym_GT] = ACTIONS(8235), - [anon_sym_SEMI] = ACTIONS(8235), - [anon_sym___attribute] = ACTIONS(8233), - [anon_sym___attribute__] = ACTIONS(8233), - [anon_sym___based] = ACTIONS(8233), - [anon_sym_LBRACE] = ACTIONS(8847), - [anon_sym_LBRACK] = ACTIONS(8235), - [anon_sym_const] = ACTIONS(8233), - [anon_sym_volatile] = ACTIONS(8233), - [anon_sym_restrict] = ACTIONS(8233), - [anon_sym__Atomic] = ACTIONS(8233), - [anon_sym_in] = ACTIONS(8233), - [anon_sym_out] = ACTIONS(8233), - [anon_sym_inout] = ACTIONS(8233), - [anon_sym_bycopy] = ACTIONS(8233), - [anon_sym_byref] = ACTIONS(8233), - [anon_sym_oneway] = ACTIONS(8233), - [anon_sym__Nullable] = ACTIONS(8233), - [anon_sym__Nonnull] = ACTIONS(8233), - [anon_sym__Nullable_result] = ACTIONS(8233), - [anon_sym__Null_unspecified] = ACTIONS(8233), - [anon_sym___autoreleasing] = ACTIONS(8233), - [anon_sym___nullable] = ACTIONS(8233), - [anon_sym___nonnull] = ACTIONS(8233), - [anon_sym___strong] = ACTIONS(8233), - [anon_sym___weak] = ACTIONS(8233), - [anon_sym___bridge] = ACTIONS(8233), - [anon_sym___bridge_transfer] = ACTIONS(8233), - [anon_sym___bridge_retained] = ACTIONS(8233), - [anon_sym___unsafe_unretained] = ACTIONS(8233), - [anon_sym___block] = ACTIONS(8233), - [anon_sym___kindof] = ACTIONS(8233), - [anon_sym___unused] = ACTIONS(8233), - [anon_sym__Complex] = ACTIONS(8233), - [anon_sym___complex] = ACTIONS(8233), - [anon_sym_IBOutlet] = ACTIONS(8233), - [anon_sym_IBInspectable] = ACTIONS(8233), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8233), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8233), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8233), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8233), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8233), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8233), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8233), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8233), - [anon_sym_NS_AVAILABLE] = ACTIONS(8233), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8233), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8233), - [anon_sym_API_AVAILABLE] = ACTIONS(8233), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8233), - [anon_sym_API_DEPRECATED] = ACTIONS(8233), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8233), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8233), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8233), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8233), - [anon_sym___deprecated_msg] = ACTIONS(8233), - [anon_sym___deprecated_enum_msg] = ACTIONS(8233), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8233), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8233), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8233), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8233), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3756] = { - [sym_attribute_specifier] = STATE(4119), - [sym_type_qualifier] = STATE(5360), - [sym_parameter_list] = STATE(3788), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3891), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_SEMI] = ACTIONS(8899), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_LBRACK] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(8885), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3757] = { - [sym_enumerator_list] = STATE(3803), - [sym_identifier] = ACTIONS(8177), - [anon_sym_COMMA] = ACTIONS(8179), - [anon_sym_RPAREN] = ACTIONS(8179), - [anon_sym_LPAREN2] = ACTIONS(8179), - [anon_sym_STAR] = ACTIONS(8179), - [anon_sym_GT] = ACTIONS(8179), - [anon_sym_SEMI] = ACTIONS(8179), - [anon_sym___attribute] = ACTIONS(8177), - [anon_sym___attribute__] = ACTIONS(8177), - [anon_sym___based] = ACTIONS(8177), - [anon_sym_LBRACE] = ACTIONS(8964), - [anon_sym_LBRACK] = ACTIONS(8179), - [anon_sym_const] = ACTIONS(8177), - [anon_sym_volatile] = ACTIONS(8177), - [anon_sym_restrict] = ACTIONS(8177), - [anon_sym__Atomic] = ACTIONS(8177), - [anon_sym_in] = ACTIONS(8177), - [anon_sym_out] = ACTIONS(8177), - [anon_sym_inout] = ACTIONS(8177), - [anon_sym_bycopy] = ACTIONS(8177), - [anon_sym_byref] = ACTIONS(8177), - [anon_sym_oneway] = ACTIONS(8177), - [anon_sym__Nullable] = ACTIONS(8177), - [anon_sym__Nonnull] = ACTIONS(8177), - [anon_sym__Nullable_result] = ACTIONS(8177), - [anon_sym__Null_unspecified] = ACTIONS(8177), - [anon_sym___autoreleasing] = ACTIONS(8177), - [anon_sym___nullable] = ACTIONS(8177), - [anon_sym___nonnull] = ACTIONS(8177), - [anon_sym___strong] = ACTIONS(8177), - [anon_sym___weak] = ACTIONS(8177), - [anon_sym___bridge] = ACTIONS(8177), - [anon_sym___bridge_transfer] = ACTIONS(8177), - [anon_sym___bridge_retained] = ACTIONS(8177), - [anon_sym___unsafe_unretained] = ACTIONS(8177), - [anon_sym___block] = ACTIONS(8177), - [anon_sym___kindof] = ACTIONS(8177), - [anon_sym___unused] = ACTIONS(8177), - [anon_sym__Complex] = ACTIONS(8177), - [anon_sym___complex] = ACTIONS(8177), - [anon_sym_IBOutlet] = ACTIONS(8177), - [anon_sym_IBInspectable] = ACTIONS(8177), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8177), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8177), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8177), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8177), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8177), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8177), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8177), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8177), - [anon_sym_NS_AVAILABLE] = ACTIONS(8177), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8177), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8177), - [anon_sym_API_AVAILABLE] = ACTIONS(8177), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8177), - [anon_sym_API_DEPRECATED] = ACTIONS(8177), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8177), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8177), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8177), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8177), - [anon_sym___deprecated_msg] = ACTIONS(8177), - [anon_sym___deprecated_enum_msg] = ACTIONS(8177), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8177), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8177), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8177), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8177), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3758] = { - [sym_identifier] = ACTIONS(6882), - [anon_sym_COMMA] = ACTIONS(6884), - [anon_sym_RPAREN] = ACTIONS(6884), - [anon_sym_LPAREN2] = ACTIONS(6884), - [anon_sym_STAR] = ACTIONS(6884), - [anon_sym_GT] = ACTIONS(6884), - [anon_sym_LT] = ACTIONS(6884), - [anon_sym_SEMI] = ACTIONS(6884), - [anon_sym___attribute] = ACTIONS(6882), - [anon_sym___attribute__] = ACTIONS(6882), - [anon_sym___based] = ACTIONS(6882), - [anon_sym_LBRACE] = ACTIONS(6884), - [anon_sym_LBRACK] = ACTIONS(6884), - [anon_sym_const] = ACTIONS(6882), - [anon_sym_volatile] = ACTIONS(6882), - [anon_sym_restrict] = ACTIONS(6882), - [anon_sym__Atomic] = ACTIONS(6882), - [anon_sym_in] = ACTIONS(6882), - [anon_sym_out] = ACTIONS(6882), - [anon_sym_inout] = ACTIONS(6882), - [anon_sym_bycopy] = ACTIONS(6882), - [anon_sym_byref] = ACTIONS(6882), - [anon_sym_oneway] = ACTIONS(6882), - [anon_sym__Nullable] = ACTIONS(6882), - [anon_sym__Nonnull] = ACTIONS(6882), - [anon_sym__Nullable_result] = ACTIONS(6882), - [anon_sym__Null_unspecified] = ACTIONS(6882), - [anon_sym___autoreleasing] = ACTIONS(6882), - [anon_sym___nullable] = ACTIONS(6882), - [anon_sym___nonnull] = ACTIONS(6882), - [anon_sym___strong] = ACTIONS(6882), - [anon_sym___weak] = ACTIONS(6882), - [anon_sym___bridge] = ACTIONS(6882), - [anon_sym___bridge_transfer] = ACTIONS(6882), - [anon_sym___bridge_retained] = ACTIONS(6882), - [anon_sym___unsafe_unretained] = ACTIONS(6882), - [anon_sym___block] = ACTIONS(6882), - [anon_sym___kindof] = ACTIONS(6882), - [anon_sym___unused] = ACTIONS(6882), - [anon_sym__Complex] = ACTIONS(6882), - [anon_sym___complex] = ACTIONS(6882), - [anon_sym_IBOutlet] = ACTIONS(6882), - [anon_sym_IBInspectable] = ACTIONS(6882), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6882), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6882), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6882), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6882), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6882), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6882), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6882), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6882), - [anon_sym_NS_AVAILABLE] = ACTIONS(6882), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6882), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6882), - [anon_sym_API_AVAILABLE] = ACTIONS(6882), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6882), - [anon_sym_API_DEPRECATED] = ACTIONS(6882), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6882), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6882), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6882), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6882), - [anon_sym___deprecated_msg] = ACTIONS(6882), - [anon_sym___deprecated_enum_msg] = ACTIONS(6882), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6882), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6882), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6882), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6882), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3759] = { - [sym_identifier] = ACTIONS(8977), - [anon_sym_COMMA] = ACTIONS(8979), - [anon_sym_RPAREN] = ACTIONS(8979), - [anon_sym_LPAREN2] = ACTIONS(8979), - [anon_sym_SEMI] = ACTIONS(8979), - [anon_sym___attribute] = ACTIONS(8977), - [anon_sym___attribute__] = ACTIONS(8977), - [anon_sym_LBRACE] = ACTIONS(8979), - [anon_sym_LBRACK] = ACTIONS(8979), - [anon_sym_EQ] = ACTIONS(8979), - [anon_sym_const] = ACTIONS(8977), - [anon_sym_volatile] = ACTIONS(8977), - [anon_sym_restrict] = ACTIONS(8977), - [anon_sym__Atomic] = ACTIONS(8977), - [anon_sym_in] = ACTIONS(8977), - [anon_sym_out] = ACTIONS(8977), - [anon_sym_inout] = ACTIONS(8977), - [anon_sym_bycopy] = ACTIONS(8977), - [anon_sym_byref] = ACTIONS(8977), - [anon_sym_oneway] = ACTIONS(8977), - [anon_sym__Nullable] = ACTIONS(8977), - [anon_sym__Nonnull] = ACTIONS(8977), - [anon_sym__Nullable_result] = ACTIONS(8977), - [anon_sym__Null_unspecified] = ACTIONS(8977), - [anon_sym___autoreleasing] = ACTIONS(8977), - [anon_sym___nullable] = ACTIONS(8977), - [anon_sym___nonnull] = ACTIONS(8977), - [anon_sym___strong] = ACTIONS(8977), - [anon_sym___weak] = ACTIONS(8977), - [anon_sym___bridge] = ACTIONS(8977), - [anon_sym___bridge_transfer] = ACTIONS(8977), - [anon_sym___bridge_retained] = ACTIONS(8977), - [anon_sym___unsafe_unretained] = ACTIONS(8977), - [anon_sym___block] = ACTIONS(8977), - [anon_sym___kindof] = ACTIONS(8977), - [anon_sym___unused] = ACTIONS(8977), - [anon_sym__Complex] = ACTIONS(8977), - [anon_sym___complex] = ACTIONS(8977), - [anon_sym_IBOutlet] = ACTIONS(8977), - [anon_sym_IBInspectable] = ACTIONS(8977), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8977), - [anon_sym_COLON] = ACTIONS(8979), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8977), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8977), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8977), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8977), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8977), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8977), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8977), - [anon_sym_NS_AVAILABLE] = ACTIONS(8977), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8977), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8977), - [anon_sym_API_AVAILABLE] = ACTIONS(8977), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8977), - [anon_sym_API_DEPRECATED] = ACTIONS(8977), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8977), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8977), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8977), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8977), - [anon_sym___deprecated_msg] = ACTIONS(8977), - [anon_sym___deprecated_enum_msg] = ACTIONS(8977), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8977), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8977), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8977), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8977), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(8977), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(8977), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3760] = { - [sym_field_declaration_list] = STATE(3792), - [sym_identifier] = ACTIONS(8219), - [anon_sym_COMMA] = ACTIONS(8221), - [anon_sym_RPAREN] = ACTIONS(8221), - [anon_sym_LPAREN2] = ACTIONS(8221), - [anon_sym_STAR] = ACTIONS(8221), - [anon_sym_GT] = ACTIONS(8221), - [anon_sym_SEMI] = ACTIONS(8221), - [anon_sym___attribute] = ACTIONS(8219), - [anon_sym___attribute__] = ACTIONS(8219), - [anon_sym___based] = ACTIONS(8219), - [anon_sym_LBRACE] = ACTIONS(8847), - [anon_sym_LBRACK] = ACTIONS(8221), - [anon_sym_const] = ACTIONS(8219), - [anon_sym_volatile] = ACTIONS(8219), - [anon_sym_restrict] = ACTIONS(8219), - [anon_sym__Atomic] = ACTIONS(8219), - [anon_sym_in] = ACTIONS(8219), - [anon_sym_out] = ACTIONS(8219), - [anon_sym_inout] = ACTIONS(8219), - [anon_sym_bycopy] = ACTIONS(8219), - [anon_sym_byref] = ACTIONS(8219), - [anon_sym_oneway] = ACTIONS(8219), - [anon_sym__Nullable] = ACTIONS(8219), - [anon_sym__Nonnull] = ACTIONS(8219), - [anon_sym__Nullable_result] = ACTIONS(8219), - [anon_sym__Null_unspecified] = ACTIONS(8219), - [anon_sym___autoreleasing] = ACTIONS(8219), - [anon_sym___nullable] = ACTIONS(8219), - [anon_sym___nonnull] = ACTIONS(8219), - [anon_sym___strong] = ACTIONS(8219), - [anon_sym___weak] = ACTIONS(8219), - [anon_sym___bridge] = ACTIONS(8219), - [anon_sym___bridge_transfer] = ACTIONS(8219), - [anon_sym___bridge_retained] = ACTIONS(8219), - [anon_sym___unsafe_unretained] = ACTIONS(8219), - [anon_sym___block] = ACTIONS(8219), - [anon_sym___kindof] = ACTIONS(8219), - [anon_sym___unused] = ACTIONS(8219), - [anon_sym__Complex] = ACTIONS(8219), - [anon_sym___complex] = ACTIONS(8219), - [anon_sym_IBOutlet] = ACTIONS(8219), - [anon_sym_IBInspectable] = ACTIONS(8219), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8219), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8219), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8219), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8219), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8219), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8219), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8219), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8219), - [anon_sym_NS_AVAILABLE] = ACTIONS(8219), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8219), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8219), - [anon_sym_API_AVAILABLE] = ACTIONS(8219), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8219), - [anon_sym_API_DEPRECATED] = ACTIONS(8219), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8219), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8219), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8219), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8219), - [anon_sym___deprecated_msg] = ACTIONS(8219), - [anon_sym___deprecated_enum_msg] = ACTIONS(8219), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8219), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8219), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8219), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8219), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3761] = { - [sym_identifier] = ACTIONS(7356), - [anon_sym_COMMA] = ACTIONS(7358), - [anon_sym_RPAREN] = ACTIONS(7358), - [anon_sym_LPAREN2] = ACTIONS(7358), - [anon_sym_STAR] = ACTIONS(7358), - [anon_sym_GT] = ACTIONS(7358), - [anon_sym_LT] = ACTIONS(7358), - [anon_sym_SEMI] = ACTIONS(7358), - [anon_sym___attribute] = ACTIONS(7356), - [anon_sym___attribute__] = ACTIONS(7356), - [anon_sym___based] = ACTIONS(7356), - [anon_sym_LBRACE] = ACTIONS(7358), - [anon_sym_LBRACK] = ACTIONS(7358), - [anon_sym_const] = ACTIONS(7356), - [anon_sym_volatile] = ACTIONS(7356), - [anon_sym_restrict] = ACTIONS(7356), - [anon_sym__Atomic] = ACTIONS(7356), - [anon_sym_in] = ACTIONS(7356), - [anon_sym_out] = ACTIONS(7356), - [anon_sym_inout] = ACTIONS(7356), - [anon_sym_bycopy] = ACTIONS(7356), - [anon_sym_byref] = ACTIONS(7356), - [anon_sym_oneway] = ACTIONS(7356), - [anon_sym__Nullable] = ACTIONS(7356), - [anon_sym__Nonnull] = ACTIONS(7356), - [anon_sym__Nullable_result] = ACTIONS(7356), - [anon_sym__Null_unspecified] = ACTIONS(7356), - [anon_sym___autoreleasing] = ACTIONS(7356), - [anon_sym___nullable] = ACTIONS(7356), - [anon_sym___nonnull] = ACTIONS(7356), - [anon_sym___strong] = ACTIONS(7356), - [anon_sym___weak] = ACTIONS(7356), - [anon_sym___bridge] = ACTIONS(7356), - [anon_sym___bridge_transfer] = ACTIONS(7356), - [anon_sym___bridge_retained] = ACTIONS(7356), - [anon_sym___unsafe_unretained] = ACTIONS(7356), - [anon_sym___block] = ACTIONS(7356), - [anon_sym___kindof] = ACTIONS(7356), - [anon_sym___unused] = ACTIONS(7356), - [anon_sym__Complex] = ACTIONS(7356), - [anon_sym___complex] = ACTIONS(7356), - [anon_sym_IBOutlet] = ACTIONS(7356), - [anon_sym_IBInspectable] = ACTIONS(7356), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7356), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7356), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7356), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7356), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7356), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7356), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7356), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7356), - [anon_sym_NS_AVAILABLE] = ACTIONS(7356), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7356), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7356), - [anon_sym_API_AVAILABLE] = ACTIONS(7356), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7356), - [anon_sym_API_DEPRECATED] = ACTIONS(7356), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7356), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7356), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7356), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7356), - [anon_sym___deprecated_msg] = ACTIONS(7356), - [anon_sym___deprecated_enum_msg] = ACTIONS(7356), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7356), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7356), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7356), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7356), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3762] = { - [sym_identifier] = ACTIONS(8981), - [anon_sym_COMMA] = ACTIONS(8983), - [anon_sym_RPAREN] = ACTIONS(8983), - [anon_sym_LPAREN2] = ACTIONS(8983), - [anon_sym_SEMI] = ACTIONS(8983), - [anon_sym___attribute] = ACTIONS(8981), - [anon_sym___attribute__] = ACTIONS(8981), - [anon_sym_LBRACE] = ACTIONS(8983), - [anon_sym_LBRACK] = ACTIONS(8983), - [anon_sym_EQ] = ACTIONS(8983), - [anon_sym_const] = ACTIONS(8981), - [anon_sym_volatile] = ACTIONS(8981), - [anon_sym_restrict] = ACTIONS(8981), - [anon_sym__Atomic] = ACTIONS(8981), - [anon_sym_in] = ACTIONS(8981), - [anon_sym_out] = ACTIONS(8981), - [anon_sym_inout] = ACTIONS(8981), - [anon_sym_bycopy] = ACTIONS(8981), - [anon_sym_byref] = ACTIONS(8981), - [anon_sym_oneway] = ACTIONS(8981), - [anon_sym__Nullable] = ACTIONS(8981), - [anon_sym__Nonnull] = ACTIONS(8981), - [anon_sym__Nullable_result] = ACTIONS(8981), - [anon_sym__Null_unspecified] = ACTIONS(8981), - [anon_sym___autoreleasing] = ACTIONS(8981), - [anon_sym___nullable] = ACTIONS(8981), - [anon_sym___nonnull] = ACTIONS(8981), - [anon_sym___strong] = ACTIONS(8981), - [anon_sym___weak] = ACTIONS(8981), - [anon_sym___bridge] = ACTIONS(8981), - [anon_sym___bridge_transfer] = ACTIONS(8981), - [anon_sym___bridge_retained] = ACTIONS(8981), - [anon_sym___unsafe_unretained] = ACTIONS(8981), - [anon_sym___block] = ACTIONS(8981), - [anon_sym___kindof] = ACTIONS(8981), - [anon_sym___unused] = ACTIONS(8981), - [anon_sym__Complex] = ACTIONS(8981), - [anon_sym___complex] = ACTIONS(8981), - [anon_sym_IBOutlet] = ACTIONS(8981), - [anon_sym_IBInspectable] = ACTIONS(8981), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8981), - [anon_sym_COLON] = ACTIONS(8983), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8981), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8981), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8981), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8981), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8981), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8981), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8981), - [anon_sym_NS_AVAILABLE] = ACTIONS(8981), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8981), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8981), - [anon_sym_API_AVAILABLE] = ACTIONS(8981), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8981), - [anon_sym_API_DEPRECATED] = ACTIONS(8981), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8981), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8981), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8981), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8981), - [anon_sym___deprecated_msg] = ACTIONS(8981), - [anon_sym___deprecated_enum_msg] = ACTIONS(8981), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8981), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8981), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8981), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8981), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(8981), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(8981), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3763] = { - [sym_attribute_specifier] = STATE(4148), - [sym_type_qualifier] = STATE(5281), - [sym_parameter_list] = STATE(3788), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3872), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_SEMI] = ACTIONS(8901), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_LBRACK] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(8885), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3764] = { - [sym_attribute_specifier] = STATE(4133), - [sym_type_qualifier] = STATE(5504), - [sym_parameter_list] = STATE(3788), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3887), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_SEMI] = ACTIONS(8897), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_LBRACK] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(8885), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3765] = { - [sym_identifier] = ACTIONS(8476), - [anon_sym_COMMA] = ACTIONS(8478), - [anon_sym_RPAREN] = ACTIONS(8478), - [anon_sym_LPAREN2] = ACTIONS(8478), - [anon_sym_STAR] = ACTIONS(8478), - [anon_sym_GT] = ACTIONS(8478), - [anon_sym_SEMI] = ACTIONS(8478), - [anon_sym___attribute] = ACTIONS(8476), - [anon_sym___attribute__] = ACTIONS(8476), - [anon_sym___based] = ACTIONS(8476), - [anon_sym_LBRACE] = ACTIONS(8478), - [anon_sym_LBRACK] = ACTIONS(8478), - [anon_sym_const] = ACTIONS(8476), - [anon_sym_volatile] = ACTIONS(8476), - [anon_sym_restrict] = ACTIONS(8476), - [anon_sym__Atomic] = ACTIONS(8476), - [anon_sym_in] = ACTIONS(8476), - [anon_sym_out] = ACTIONS(8476), - [anon_sym_inout] = ACTIONS(8476), - [anon_sym_bycopy] = ACTIONS(8476), - [anon_sym_byref] = ACTIONS(8476), - [anon_sym_oneway] = ACTIONS(8476), - [anon_sym__Nullable] = ACTIONS(8476), - [anon_sym__Nonnull] = ACTIONS(8476), - [anon_sym__Nullable_result] = ACTIONS(8476), - [anon_sym__Null_unspecified] = ACTIONS(8476), - [anon_sym___autoreleasing] = ACTIONS(8476), - [anon_sym___nullable] = ACTIONS(8476), - [anon_sym___nonnull] = ACTIONS(8476), - [anon_sym___strong] = ACTIONS(8476), - [anon_sym___weak] = ACTIONS(8476), - [anon_sym___bridge] = ACTIONS(8476), - [anon_sym___bridge_transfer] = ACTIONS(8476), - [anon_sym___bridge_retained] = ACTIONS(8476), - [anon_sym___unsafe_unretained] = ACTIONS(8476), - [anon_sym___block] = ACTIONS(8476), - [anon_sym___kindof] = ACTIONS(8476), - [anon_sym___unused] = ACTIONS(8476), - [anon_sym__Complex] = ACTIONS(8476), - [anon_sym___complex] = ACTIONS(8476), - [anon_sym_IBOutlet] = ACTIONS(8476), - [anon_sym_IBInspectable] = ACTIONS(8476), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8476), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8476), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8476), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8476), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8476), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8476), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8476), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8476), - [anon_sym_NS_AVAILABLE] = ACTIONS(8476), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8476), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8476), - [anon_sym_API_AVAILABLE] = ACTIONS(8476), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8476), - [anon_sym_API_DEPRECATED] = ACTIONS(8476), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8476), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8476), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8476), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8476), - [anon_sym___deprecated_msg] = ACTIONS(8476), - [anon_sym___deprecated_enum_msg] = ACTIONS(8476), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8476), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8476), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8476), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8476), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, [3766] = { - [sym_identifier] = ACTIONS(8558), - [anon_sym_COMMA] = ACTIONS(8560), - [anon_sym_RPAREN] = ACTIONS(8560), - [anon_sym_LPAREN2] = ACTIONS(8560), - [anon_sym_STAR] = ACTIONS(8560), - [anon_sym_GT] = ACTIONS(8560), - [anon_sym_SEMI] = ACTIONS(8560), - [anon_sym___attribute] = ACTIONS(8558), - [anon_sym___attribute__] = ACTIONS(8558), - [anon_sym___based] = ACTIONS(8558), - [anon_sym_LBRACE] = ACTIONS(8560), - [anon_sym_LBRACK] = ACTIONS(8560), - [anon_sym_const] = ACTIONS(8558), - [anon_sym_volatile] = ACTIONS(8558), - [anon_sym_restrict] = ACTIONS(8558), - [anon_sym__Atomic] = ACTIONS(8558), - [anon_sym_in] = ACTIONS(8558), - [anon_sym_out] = ACTIONS(8558), - [anon_sym_inout] = ACTIONS(8558), - [anon_sym_bycopy] = ACTIONS(8558), - [anon_sym_byref] = ACTIONS(8558), - [anon_sym_oneway] = ACTIONS(8558), - [anon_sym__Nullable] = ACTIONS(8558), - [anon_sym__Nonnull] = ACTIONS(8558), - [anon_sym__Nullable_result] = ACTIONS(8558), - [anon_sym__Null_unspecified] = ACTIONS(8558), - [anon_sym___autoreleasing] = ACTIONS(8558), - [anon_sym___nullable] = ACTIONS(8558), - [anon_sym___nonnull] = ACTIONS(8558), - [anon_sym___strong] = ACTIONS(8558), - [anon_sym___weak] = ACTIONS(8558), - [anon_sym___bridge] = ACTIONS(8558), - [anon_sym___bridge_transfer] = ACTIONS(8558), - [anon_sym___bridge_retained] = ACTIONS(8558), - [anon_sym___unsafe_unretained] = ACTIONS(8558), - [anon_sym___block] = ACTIONS(8558), - [anon_sym___kindof] = ACTIONS(8558), - [anon_sym___unused] = ACTIONS(8558), - [anon_sym__Complex] = ACTIONS(8558), - [anon_sym___complex] = ACTIONS(8558), - [anon_sym_IBOutlet] = ACTIONS(8558), - [anon_sym_IBInspectable] = ACTIONS(8558), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8558), + [sym_type_qualifier] = STATE(3731), + [sym__type_specifier] = STATE(3548), + [sym_sized_type_specifier] = STATE(3548), + [sym_enum_specifier] = STATE(3548), + [sym_struct_specifier] = STATE(3548), + [sym_union_specifier] = STATE(3548), + [sym_macro_type_specifier] = STATE(3548), + [sym_ns_enum_specifier] = STATE(3432), + [sym_typeof_specifier] = STATE(3548), + [sym_atomic_specifier] = STATE(3548), + [sym_generic_type_specifier] = STATE(3548), + [aux_sym_type_definition_repeat1] = STATE(3731), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(9031), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8558), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8558), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8558), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8558), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8558), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8558), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8558), - [anon_sym_NS_AVAILABLE] = ACTIONS(8558), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8558), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8558), - [anon_sym_API_AVAILABLE] = ACTIONS(8558), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8558), - [anon_sym_API_DEPRECATED] = ACTIONS(8558), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8558), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8558), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8558), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8558), - [anon_sym___deprecated_msg] = ACTIONS(8558), - [anon_sym___deprecated_enum_msg] = ACTIONS(8558), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8558), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8558), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8558), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8558), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(9031), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(9031), + [sym_IMP] = ACTIONS(9031), + [sym_BOOL] = ACTIONS(9031), + [sym_auto] = ACTIONS(9031), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -562154,73 +558338,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3767] = { - [sym_identifier] = ACTIONS(8652), - [anon_sym_COMMA] = ACTIONS(8654), - [anon_sym_RPAREN] = ACTIONS(8654), - [anon_sym_LPAREN2] = ACTIONS(8654), - [anon_sym_STAR] = ACTIONS(8654), - [anon_sym_GT] = ACTIONS(8654), - [anon_sym_SEMI] = ACTIONS(8654), - [anon_sym___attribute] = ACTIONS(8652), - [anon_sym___attribute__] = ACTIONS(8652), - [anon_sym___based] = ACTIONS(8652), - [anon_sym_LBRACE] = ACTIONS(8654), - [anon_sym_LBRACK] = ACTIONS(8654), - [anon_sym_const] = ACTIONS(8652), - [anon_sym_volatile] = ACTIONS(8652), - [anon_sym_restrict] = ACTIONS(8652), - [anon_sym__Atomic] = ACTIONS(8652), - [anon_sym_in] = ACTIONS(8652), - [anon_sym_out] = ACTIONS(8652), - [anon_sym_inout] = ACTIONS(8652), - [anon_sym_bycopy] = ACTIONS(8652), - [anon_sym_byref] = ACTIONS(8652), - [anon_sym_oneway] = ACTIONS(8652), - [anon_sym__Nullable] = ACTIONS(8652), - [anon_sym__Nonnull] = ACTIONS(8652), - [anon_sym__Nullable_result] = ACTIONS(8652), - [anon_sym__Null_unspecified] = ACTIONS(8652), - [anon_sym___autoreleasing] = ACTIONS(8652), - [anon_sym___nullable] = ACTIONS(8652), - [anon_sym___nonnull] = ACTIONS(8652), - [anon_sym___strong] = ACTIONS(8652), - [anon_sym___weak] = ACTIONS(8652), - [anon_sym___bridge] = ACTIONS(8652), - [anon_sym___bridge_transfer] = ACTIONS(8652), - [anon_sym___bridge_retained] = ACTIONS(8652), - [anon_sym___unsafe_unretained] = ACTIONS(8652), - [anon_sym___block] = ACTIONS(8652), - [anon_sym___kindof] = ACTIONS(8652), - [anon_sym___unused] = ACTIONS(8652), - [anon_sym__Complex] = ACTIONS(8652), - [anon_sym___complex] = ACTIONS(8652), - [anon_sym_IBOutlet] = ACTIONS(8652), - [anon_sym_IBInspectable] = ACTIONS(8652), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8652), + [sym_field_declaration_list] = STATE(3818), + [sym_identifier] = ACTIONS(8160), + [anon_sym_COMMA] = ACTIONS(8162), + [anon_sym_RPAREN] = ACTIONS(8162), + [anon_sym_LPAREN2] = ACTIONS(8162), + [anon_sym_STAR] = ACTIONS(8162), + [anon_sym_GT] = ACTIONS(8162), + [anon_sym___attribute] = ACTIONS(8160), + [anon_sym___attribute__] = ACTIONS(8160), + [anon_sym___based] = ACTIONS(8160), + [anon_sym_LBRACE] = ACTIONS(9033), + [anon_sym_LBRACK] = ACTIONS(8162), + [anon_sym_const] = ACTIONS(8160), + [anon_sym_volatile] = ACTIONS(8160), + [anon_sym_restrict] = ACTIONS(8160), + [anon_sym__Atomic] = ACTIONS(8160), + [anon_sym_in] = ACTIONS(8160), + [anon_sym_out] = ACTIONS(8160), + [anon_sym_inout] = ACTIONS(8160), + [anon_sym_bycopy] = ACTIONS(8160), + [anon_sym_byref] = ACTIONS(8160), + [anon_sym_oneway] = ACTIONS(8160), + [anon_sym__Nullable] = ACTIONS(8160), + [anon_sym__Nonnull] = ACTIONS(8160), + [anon_sym__Nullable_result] = ACTIONS(8160), + [anon_sym__Null_unspecified] = ACTIONS(8160), + [anon_sym___autoreleasing] = ACTIONS(8160), + [anon_sym___nullable] = ACTIONS(8160), + [anon_sym___nonnull] = ACTIONS(8160), + [anon_sym___strong] = ACTIONS(8160), + [anon_sym___weak] = ACTIONS(8160), + [anon_sym___bridge] = ACTIONS(8160), + [anon_sym___bridge_transfer] = ACTIONS(8160), + [anon_sym___bridge_retained] = ACTIONS(8160), + [anon_sym___unsafe_unretained] = ACTIONS(8160), + [anon_sym___block] = ACTIONS(8160), + [anon_sym___kindof] = ACTIONS(8160), + [anon_sym___unused] = ACTIONS(8160), + [anon_sym__Complex] = ACTIONS(8160), + [anon_sym___complex] = ACTIONS(8160), + [anon_sym_IBOutlet] = ACTIONS(8160), + [anon_sym_IBInspectable] = ACTIONS(8160), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8160), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8652), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8652), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8652), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8652), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8652), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8652), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8652), - [anon_sym_NS_AVAILABLE] = ACTIONS(8652), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8652), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8652), - [anon_sym_API_AVAILABLE] = ACTIONS(8652), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8652), - [anon_sym_API_DEPRECATED] = ACTIONS(8652), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8652), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8652), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8652), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8652), - [anon_sym___deprecated_msg] = ACTIONS(8652), - [anon_sym___deprecated_enum_msg] = ACTIONS(8652), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8652), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8652), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8652), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8652), + [sym_method_attribute_specifier] = ACTIONS(8160), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8160), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8160), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8160), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8160), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8160), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8160), + [anon_sym_NS_AVAILABLE] = ACTIONS(8160), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8160), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8160), + [anon_sym_API_AVAILABLE] = ACTIONS(8160), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8160), + [anon_sym_API_DEPRECATED] = ACTIONS(8160), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8160), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8160), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8160), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8160), + [anon_sym___deprecated_msg] = ACTIONS(8160), + [anon_sym___deprecated_enum_msg] = ACTIONS(8160), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8160), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8160), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8160), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8160), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -562229,73 +558413,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3768] = { - [sym_identifier] = ACTIONS(8507), - [anon_sym_COMMA] = ACTIONS(8509), - [anon_sym_RPAREN] = ACTIONS(8509), - [anon_sym_LPAREN2] = ACTIONS(8509), - [anon_sym_STAR] = ACTIONS(8509), - [anon_sym_GT] = ACTIONS(8509), - [anon_sym_SEMI] = ACTIONS(8509), - [anon_sym___attribute] = ACTIONS(8507), - [anon_sym___attribute__] = ACTIONS(8507), - [anon_sym___based] = ACTIONS(8507), - [anon_sym_LBRACE] = ACTIONS(8509), - [anon_sym_LBRACK] = ACTIONS(8509), - [anon_sym_const] = ACTIONS(8507), - [anon_sym_volatile] = ACTIONS(8507), - [anon_sym_restrict] = ACTIONS(8507), - [anon_sym__Atomic] = ACTIONS(8507), - [anon_sym_in] = ACTIONS(8507), - [anon_sym_out] = ACTIONS(8507), - [anon_sym_inout] = ACTIONS(8507), - [anon_sym_bycopy] = ACTIONS(8507), - [anon_sym_byref] = ACTIONS(8507), - [anon_sym_oneway] = ACTIONS(8507), - [anon_sym__Nullable] = ACTIONS(8507), - [anon_sym__Nonnull] = ACTIONS(8507), - [anon_sym__Nullable_result] = ACTIONS(8507), - [anon_sym__Null_unspecified] = ACTIONS(8507), - [anon_sym___autoreleasing] = ACTIONS(8507), - [anon_sym___nullable] = ACTIONS(8507), - [anon_sym___nonnull] = ACTIONS(8507), - [anon_sym___strong] = ACTIONS(8507), - [anon_sym___weak] = ACTIONS(8507), - [anon_sym___bridge] = ACTIONS(8507), - [anon_sym___bridge_transfer] = ACTIONS(8507), - [anon_sym___bridge_retained] = ACTIONS(8507), - [anon_sym___unsafe_unretained] = ACTIONS(8507), - [anon_sym___block] = ACTIONS(8507), - [anon_sym___kindof] = ACTIONS(8507), - [anon_sym___unused] = ACTIONS(8507), - [anon_sym__Complex] = ACTIONS(8507), - [anon_sym___complex] = ACTIONS(8507), - [anon_sym_IBOutlet] = ACTIONS(8507), - [anon_sym_IBInspectable] = ACTIONS(8507), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8507), + [sym_identifier] = ACTIONS(8235), + [anon_sym_COMMA] = ACTIONS(8237), + [anon_sym_RPAREN] = ACTIONS(8237), + [anon_sym_LPAREN2] = ACTIONS(8237), + [anon_sym_STAR] = ACTIONS(8237), + [anon_sym_GT] = ACTIONS(8237), + [anon_sym_SEMI] = ACTIONS(8237), + [anon_sym___attribute] = ACTIONS(8235), + [anon_sym___attribute__] = ACTIONS(8235), + [anon_sym___based] = ACTIONS(8235), + [anon_sym_LBRACE] = ACTIONS(8237), + [anon_sym_LBRACK] = ACTIONS(8237), + [anon_sym_const] = ACTIONS(8235), + [anon_sym_volatile] = ACTIONS(8235), + [anon_sym_restrict] = ACTIONS(8235), + [anon_sym__Atomic] = ACTIONS(8235), + [anon_sym_in] = ACTIONS(8235), + [anon_sym_out] = ACTIONS(8235), + [anon_sym_inout] = ACTIONS(8235), + [anon_sym_bycopy] = ACTIONS(8235), + [anon_sym_byref] = ACTIONS(8235), + [anon_sym_oneway] = ACTIONS(8235), + [anon_sym__Nullable] = ACTIONS(8235), + [anon_sym__Nonnull] = ACTIONS(8235), + [anon_sym__Nullable_result] = ACTIONS(8235), + [anon_sym__Null_unspecified] = ACTIONS(8235), + [anon_sym___autoreleasing] = ACTIONS(8235), + [anon_sym___nullable] = ACTIONS(8235), + [anon_sym___nonnull] = ACTIONS(8235), + [anon_sym___strong] = ACTIONS(8235), + [anon_sym___weak] = ACTIONS(8235), + [anon_sym___bridge] = ACTIONS(8235), + [anon_sym___bridge_transfer] = ACTIONS(8235), + [anon_sym___bridge_retained] = ACTIONS(8235), + [anon_sym___unsafe_unretained] = ACTIONS(8235), + [anon_sym___block] = ACTIONS(8235), + [anon_sym___kindof] = ACTIONS(8235), + [anon_sym___unused] = ACTIONS(8235), + [anon_sym__Complex] = ACTIONS(8235), + [anon_sym___complex] = ACTIONS(8235), + [anon_sym_IBOutlet] = ACTIONS(8235), + [anon_sym_IBInspectable] = ACTIONS(8235), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8235), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8507), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8507), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8507), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8507), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8507), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8507), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8507), - [anon_sym_NS_AVAILABLE] = ACTIONS(8507), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8507), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8507), - [anon_sym_API_AVAILABLE] = ACTIONS(8507), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8507), - [anon_sym_API_DEPRECATED] = ACTIONS(8507), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8507), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8507), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8507), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8507), - [anon_sym___deprecated_msg] = ACTIONS(8507), - [anon_sym___deprecated_enum_msg] = ACTIONS(8507), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8507), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8507), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8507), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8507), + [sym_method_attribute_specifier] = ACTIONS(8235), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8235), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8235), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8235), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8235), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8235), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8235), + [anon_sym_NS_AVAILABLE] = ACTIONS(8235), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8235), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8235), + [anon_sym_API_AVAILABLE] = ACTIONS(8235), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8235), + [anon_sym_API_DEPRECATED] = ACTIONS(8235), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8235), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8235), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8235), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8235), + [anon_sym___deprecated_msg] = ACTIONS(8235), + [anon_sym___deprecated_enum_msg] = ACTIONS(8235), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8235), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8235), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8235), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8235), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -562304,73 +558488,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3769] = { - [sym_identifier] = ACTIONS(7891), - [anon_sym_COMMA] = ACTIONS(7893), - [anon_sym_RPAREN] = ACTIONS(7893), - [anon_sym_LPAREN2] = ACTIONS(7893), - [anon_sym_STAR] = ACTIONS(7893), - [anon_sym_GT] = ACTIONS(7893), - [anon_sym_SEMI] = ACTIONS(7893), - [anon_sym___attribute] = ACTIONS(7891), - [anon_sym___attribute__] = ACTIONS(7891), - [anon_sym___based] = ACTIONS(7891), - [anon_sym_LBRACE] = ACTIONS(7893), - [anon_sym_LBRACK] = ACTIONS(7893), - [anon_sym_const] = ACTIONS(7891), - [anon_sym_volatile] = ACTIONS(7891), - [anon_sym_restrict] = ACTIONS(7891), - [anon_sym__Atomic] = ACTIONS(7891), - [anon_sym_in] = ACTIONS(7891), - [anon_sym_out] = ACTIONS(7891), - [anon_sym_inout] = ACTIONS(7891), - [anon_sym_bycopy] = ACTIONS(7891), - [anon_sym_byref] = ACTIONS(7891), - [anon_sym_oneway] = ACTIONS(7891), - [anon_sym__Nullable] = ACTIONS(7891), - [anon_sym__Nonnull] = ACTIONS(7891), - [anon_sym__Nullable_result] = ACTIONS(7891), - [anon_sym__Null_unspecified] = ACTIONS(7891), - [anon_sym___autoreleasing] = ACTIONS(7891), - [anon_sym___nullable] = ACTIONS(7891), - [anon_sym___nonnull] = ACTIONS(7891), - [anon_sym___strong] = ACTIONS(7891), - [anon_sym___weak] = ACTIONS(7891), - [anon_sym___bridge] = ACTIONS(7891), - [anon_sym___bridge_transfer] = ACTIONS(7891), - [anon_sym___bridge_retained] = ACTIONS(7891), - [anon_sym___unsafe_unretained] = ACTIONS(7891), - [anon_sym___block] = ACTIONS(7891), - [anon_sym___kindof] = ACTIONS(7891), - [anon_sym___unused] = ACTIONS(7891), - [anon_sym__Complex] = ACTIONS(7891), - [anon_sym___complex] = ACTIONS(7891), - [anon_sym_IBOutlet] = ACTIONS(7891), - [anon_sym_IBInspectable] = ACTIONS(7891), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7891), + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3532), + [sym_sized_type_specifier] = STATE(3532), + [sym_enum_specifier] = STATE(3532), + [sym_struct_specifier] = STATE(3532), + [sym_union_specifier] = STATE(3532), + [sym_macro_type_specifier] = STATE(3532), + [sym_ns_enum_specifier] = STATE(3440), + [sym_typeof_specifier] = STATE(3532), + [sym_atomic_specifier] = STATE(3532), + [sym_generic_type_specifier] = STATE(3532), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(9036), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7891), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7891), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7891), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7891), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7891), - [anon_sym_NS_AVAILABLE] = ACTIONS(7891), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7891), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7891), - [anon_sym_API_AVAILABLE] = ACTIONS(7891), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7891), - [anon_sym_API_DEPRECATED] = ACTIONS(7891), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7891), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7891), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7891), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7891), - [anon_sym___deprecated_msg] = ACTIONS(7891), - [anon_sym___deprecated_enum_msg] = ACTIONS(7891), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7891), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7891), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7891), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7891), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(9036), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(9036), + [sym_IMP] = ACTIONS(9036), + [sym_BOOL] = ACTIONS(9036), + [sym_auto] = ACTIONS(9036), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -562379,73 +558563,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3770] = { - [sym_identifier] = ACTIONS(8384), - [anon_sym_COMMA] = ACTIONS(8386), - [anon_sym_RPAREN] = ACTIONS(8386), - [anon_sym_LPAREN2] = ACTIONS(8386), - [anon_sym_STAR] = ACTIONS(8386), - [anon_sym_GT] = ACTIONS(8386), - [anon_sym_SEMI] = ACTIONS(8386), - [anon_sym___attribute] = ACTIONS(8384), - [anon_sym___attribute__] = ACTIONS(8384), - [anon_sym___based] = ACTIONS(8384), - [anon_sym_LBRACE] = ACTIONS(8386), - [anon_sym_LBRACK] = ACTIONS(8386), - [anon_sym_const] = ACTIONS(8384), - [anon_sym_volatile] = ACTIONS(8384), - [anon_sym_restrict] = ACTIONS(8384), - [anon_sym__Atomic] = ACTIONS(8384), - [anon_sym_in] = ACTIONS(8384), - [anon_sym_out] = ACTIONS(8384), - [anon_sym_inout] = ACTIONS(8384), - [anon_sym_bycopy] = ACTIONS(8384), - [anon_sym_byref] = ACTIONS(8384), - [anon_sym_oneway] = ACTIONS(8384), - [anon_sym__Nullable] = ACTIONS(8384), - [anon_sym__Nonnull] = ACTIONS(8384), - [anon_sym__Nullable_result] = ACTIONS(8384), - [anon_sym__Null_unspecified] = ACTIONS(8384), - [anon_sym___autoreleasing] = ACTIONS(8384), - [anon_sym___nullable] = ACTIONS(8384), - [anon_sym___nonnull] = ACTIONS(8384), - [anon_sym___strong] = ACTIONS(8384), - [anon_sym___weak] = ACTIONS(8384), - [anon_sym___bridge] = ACTIONS(8384), - [anon_sym___bridge_transfer] = ACTIONS(8384), - [anon_sym___bridge_retained] = ACTIONS(8384), - [anon_sym___unsafe_unretained] = ACTIONS(8384), - [anon_sym___block] = ACTIONS(8384), - [anon_sym___kindof] = ACTIONS(8384), - [anon_sym___unused] = ACTIONS(8384), - [anon_sym__Complex] = ACTIONS(8384), - [anon_sym___complex] = ACTIONS(8384), - [anon_sym_IBOutlet] = ACTIONS(8384), - [anon_sym_IBInspectable] = ACTIONS(8384), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8384), + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3565), + [sym_sized_type_specifier] = STATE(3565), + [sym_enum_specifier] = STATE(3565), + [sym_struct_specifier] = STATE(3565), + [sym_union_specifier] = STATE(3565), + [sym_macro_type_specifier] = STATE(3565), + [sym_ns_enum_specifier] = STATE(3502), + [sym_typeof_specifier] = STATE(3565), + [sym_atomic_specifier] = STATE(3565), + [sym_generic_type_specifier] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(9038), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8384), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8384), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8384), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8384), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8384), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8384), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8384), - [anon_sym_NS_AVAILABLE] = ACTIONS(8384), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8384), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8384), - [anon_sym_API_AVAILABLE] = ACTIONS(8384), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8384), - [anon_sym_API_DEPRECATED] = ACTIONS(8384), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8384), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8384), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8384), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8384), - [anon_sym___deprecated_msg] = ACTIONS(8384), - [anon_sym___deprecated_enum_msg] = ACTIONS(8384), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8384), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8384), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8384), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8384), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(9038), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(9038), + [sym_IMP] = ACTIONS(9038), + [sym_BOOL] = ACTIONS(9038), + [sym_auto] = ACTIONS(9038), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -562454,73 +558638,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3771] = { - [sym_identifier] = ACTIONS(8388), - [anon_sym_COMMA] = ACTIONS(8390), - [anon_sym_RPAREN] = ACTIONS(8390), - [anon_sym_LPAREN2] = ACTIONS(8390), - [anon_sym_STAR] = ACTIONS(8390), - [anon_sym_GT] = ACTIONS(8390), - [anon_sym_SEMI] = ACTIONS(8390), - [anon_sym___attribute] = ACTIONS(8388), - [anon_sym___attribute__] = ACTIONS(8388), - [anon_sym___based] = ACTIONS(8388), - [anon_sym_LBRACE] = ACTIONS(8390), - [anon_sym_LBRACK] = ACTIONS(8390), - [anon_sym_const] = ACTIONS(8388), - [anon_sym_volatile] = ACTIONS(8388), - [anon_sym_restrict] = ACTIONS(8388), - [anon_sym__Atomic] = ACTIONS(8388), - [anon_sym_in] = ACTIONS(8388), - [anon_sym_out] = ACTIONS(8388), - [anon_sym_inout] = ACTIONS(8388), - [anon_sym_bycopy] = ACTIONS(8388), - [anon_sym_byref] = ACTIONS(8388), - [anon_sym_oneway] = ACTIONS(8388), - [anon_sym__Nullable] = ACTIONS(8388), - [anon_sym__Nonnull] = ACTIONS(8388), - [anon_sym__Nullable_result] = ACTIONS(8388), - [anon_sym__Null_unspecified] = ACTIONS(8388), - [anon_sym___autoreleasing] = ACTIONS(8388), - [anon_sym___nullable] = ACTIONS(8388), - [anon_sym___nonnull] = ACTIONS(8388), - [anon_sym___strong] = ACTIONS(8388), - [anon_sym___weak] = ACTIONS(8388), - [anon_sym___bridge] = ACTIONS(8388), - [anon_sym___bridge_transfer] = ACTIONS(8388), - [anon_sym___bridge_retained] = ACTIONS(8388), - [anon_sym___unsafe_unretained] = ACTIONS(8388), - [anon_sym___block] = ACTIONS(8388), - [anon_sym___kindof] = ACTIONS(8388), - [anon_sym___unused] = ACTIONS(8388), - [anon_sym__Complex] = ACTIONS(8388), - [anon_sym___complex] = ACTIONS(8388), - [anon_sym_IBOutlet] = ACTIONS(8388), - [anon_sym_IBInspectable] = ACTIONS(8388), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8388), + [sym_type_qualifier] = STATE(3785), + [sym__type_specifier] = STATE(3532), + [sym_sized_type_specifier] = STATE(3532), + [sym_enum_specifier] = STATE(3532), + [sym_struct_specifier] = STATE(3532), + [sym_union_specifier] = STATE(3532), + [sym_macro_type_specifier] = STATE(3532), + [sym_ns_enum_specifier] = STATE(3440), + [sym_typeof_specifier] = STATE(3532), + [sym_atomic_specifier] = STATE(3532), + [sym_generic_type_specifier] = STATE(3532), + [aux_sym_type_definition_repeat1] = STATE(3785), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(9036), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8388), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8388), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8388), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8388), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8388), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8388), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8388), - [anon_sym_NS_AVAILABLE] = ACTIONS(8388), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8388), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8388), - [anon_sym_API_AVAILABLE] = ACTIONS(8388), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8388), - [anon_sym_API_DEPRECATED] = ACTIONS(8388), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8388), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8388), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8388), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8388), - [anon_sym___deprecated_msg] = ACTIONS(8388), - [anon_sym___deprecated_enum_msg] = ACTIONS(8388), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8388), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8388), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8388), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8388), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(9036), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(9036), + [sym_IMP] = ACTIONS(9036), + [sym_BOOL] = ACTIONS(9036), + [sym_auto] = ACTIONS(9036), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -562529,73 +558713,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3772] = { - [sym_identifier] = ACTIONS(8511), - [anon_sym_COMMA] = ACTIONS(8513), - [anon_sym_RPAREN] = ACTIONS(8513), - [anon_sym_LPAREN2] = ACTIONS(8513), - [anon_sym_STAR] = ACTIONS(8513), - [anon_sym_GT] = ACTIONS(8513), - [anon_sym_SEMI] = ACTIONS(8513), - [anon_sym___attribute] = ACTIONS(8511), - [anon_sym___attribute__] = ACTIONS(8511), - [anon_sym___based] = ACTIONS(8511), - [anon_sym_LBRACE] = ACTIONS(8513), - [anon_sym_LBRACK] = ACTIONS(8513), - [anon_sym_const] = ACTIONS(8511), - [anon_sym_volatile] = ACTIONS(8511), - [anon_sym_restrict] = ACTIONS(8511), - [anon_sym__Atomic] = ACTIONS(8511), - [anon_sym_in] = ACTIONS(8511), - [anon_sym_out] = ACTIONS(8511), - [anon_sym_inout] = ACTIONS(8511), - [anon_sym_bycopy] = ACTIONS(8511), - [anon_sym_byref] = ACTIONS(8511), - [anon_sym_oneway] = ACTIONS(8511), - [anon_sym__Nullable] = ACTIONS(8511), - [anon_sym__Nonnull] = ACTIONS(8511), - [anon_sym__Nullable_result] = ACTIONS(8511), - [anon_sym__Null_unspecified] = ACTIONS(8511), - [anon_sym___autoreleasing] = ACTIONS(8511), - [anon_sym___nullable] = ACTIONS(8511), - [anon_sym___nonnull] = ACTIONS(8511), - [anon_sym___strong] = ACTIONS(8511), - [anon_sym___weak] = ACTIONS(8511), - [anon_sym___bridge] = ACTIONS(8511), - [anon_sym___bridge_transfer] = ACTIONS(8511), - [anon_sym___bridge_retained] = ACTIONS(8511), - [anon_sym___unsafe_unretained] = ACTIONS(8511), - [anon_sym___block] = ACTIONS(8511), - [anon_sym___kindof] = ACTIONS(8511), - [anon_sym___unused] = ACTIONS(8511), - [anon_sym__Complex] = ACTIONS(8511), - [anon_sym___complex] = ACTIONS(8511), - [anon_sym_IBOutlet] = ACTIONS(8511), - [anon_sym_IBInspectable] = ACTIONS(8511), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8511), + [sym_field_declaration_list] = STATE(3801), + [sym_identifier] = ACTIONS(8188), + [anon_sym_COMMA] = ACTIONS(8190), + [anon_sym_RPAREN] = ACTIONS(8190), + [anon_sym_LPAREN2] = ACTIONS(8190), + [anon_sym_STAR] = ACTIONS(8190), + [anon_sym_GT] = ACTIONS(8190), + [anon_sym___attribute] = ACTIONS(8188), + [anon_sym___attribute__] = ACTIONS(8188), + [anon_sym___based] = ACTIONS(8188), + [anon_sym_LBRACE] = ACTIONS(9040), + [anon_sym_LBRACK] = ACTIONS(8190), + [anon_sym_const] = ACTIONS(8188), + [anon_sym_volatile] = ACTIONS(8188), + [anon_sym_restrict] = ACTIONS(8188), + [anon_sym__Atomic] = ACTIONS(8188), + [anon_sym_in] = ACTIONS(8188), + [anon_sym_out] = ACTIONS(8188), + [anon_sym_inout] = ACTIONS(8188), + [anon_sym_bycopy] = ACTIONS(8188), + [anon_sym_byref] = ACTIONS(8188), + [anon_sym_oneway] = ACTIONS(8188), + [anon_sym__Nullable] = ACTIONS(8188), + [anon_sym__Nonnull] = ACTIONS(8188), + [anon_sym__Nullable_result] = ACTIONS(8188), + [anon_sym__Null_unspecified] = ACTIONS(8188), + [anon_sym___autoreleasing] = ACTIONS(8188), + [anon_sym___nullable] = ACTIONS(8188), + [anon_sym___nonnull] = ACTIONS(8188), + [anon_sym___strong] = ACTIONS(8188), + [anon_sym___weak] = ACTIONS(8188), + [anon_sym___bridge] = ACTIONS(8188), + [anon_sym___bridge_transfer] = ACTIONS(8188), + [anon_sym___bridge_retained] = ACTIONS(8188), + [anon_sym___unsafe_unretained] = ACTIONS(8188), + [anon_sym___block] = ACTIONS(8188), + [anon_sym___kindof] = ACTIONS(8188), + [anon_sym___unused] = ACTIONS(8188), + [anon_sym__Complex] = ACTIONS(8188), + [anon_sym___complex] = ACTIONS(8188), + [anon_sym_IBOutlet] = ACTIONS(8188), + [anon_sym_IBInspectable] = ACTIONS(8188), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8188), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8511), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8511), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8511), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8511), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8511), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8511), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8511), - [anon_sym_NS_AVAILABLE] = ACTIONS(8511), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8511), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8511), - [anon_sym_API_AVAILABLE] = ACTIONS(8511), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8511), - [anon_sym_API_DEPRECATED] = ACTIONS(8511), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8511), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8511), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8511), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8511), - [anon_sym___deprecated_msg] = ACTIONS(8511), - [anon_sym___deprecated_enum_msg] = ACTIONS(8511), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8511), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8511), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8511), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8511), + [sym_method_attribute_specifier] = ACTIONS(8188), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8188), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8188), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8188), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8188), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8188), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8188), + [anon_sym_NS_AVAILABLE] = ACTIONS(8188), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8188), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8188), + [anon_sym_API_AVAILABLE] = ACTIONS(8188), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8188), + [anon_sym_API_DEPRECATED] = ACTIONS(8188), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8188), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8188), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8188), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8188), + [anon_sym___deprecated_msg] = ACTIONS(8188), + [anon_sym___deprecated_enum_msg] = ACTIONS(8188), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8188), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8188), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8188), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8188), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -562604,20 +558788,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3773] = { - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym_type_descriptor] = STATE(5088), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), + [sym_type_qualifier] = STATE(3770), + [sym__type_specifier] = STATE(3559), + [sym_sized_type_specifier] = STATE(3559), + [sym_enum_specifier] = STATE(3559), + [sym_struct_specifier] = STATE(3559), + [sym_union_specifier] = STATE(3559), + [sym_macro_type_specifier] = STATE(3559), + [sym_ns_enum_specifier] = STATE(3426), + [sym_typeof_specifier] = STATE(3559), + [sym_atomic_specifier] = STATE(3559), + [sym_generic_type_specifier] = STATE(3559), + [aux_sym_type_definition_repeat1] = STATE(3770), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), [anon_sym_const] = ACTIONS(1143), [anon_sym_volatile] = ACTIONS(1143), [anon_sym_restrict] = ACTIONS(1143), @@ -562649,28 +558833,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_IBOutlet] = ACTIONS(1143), [anon_sym_IBInspectable] = ACTIONS(1143), [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(9043), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), [anon_sym_typeof] = ACTIONS(1161), [anon_sym___typeof] = ACTIONS(1161), [anon_sym___typeof__] = ACTIONS(1161), [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(1149), + [sym_instancetype] = ACTIONS(9043), [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(1149), - [sym_IMP] = ACTIONS(1149), - [sym_BOOL] = ACTIONS(1149), - [sym_auto] = ACTIONS(1149), + [sym_SEL] = ACTIONS(9043), + [sym_IMP] = ACTIONS(9043), + [sym_BOOL] = ACTIONS(9043), + [sym_auto] = ACTIONS(9043), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -562679,20 +558863,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3774] = { - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym_type_descriptor] = STATE(5195), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3559), + [sym_sized_type_specifier] = STATE(3559), + [sym_enum_specifier] = STATE(3559), + [sym_struct_specifier] = STATE(3559), + [sym_union_specifier] = STATE(3559), + [sym_macro_type_specifier] = STATE(3559), + [sym_ns_enum_specifier] = STATE(3426), + [sym_typeof_specifier] = STATE(3559), + [sym_atomic_specifier] = STATE(3559), + [sym_generic_type_specifier] = STATE(3559), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), [anon_sym_const] = ACTIONS(1143), [anon_sym_volatile] = ACTIONS(1143), [anon_sym_restrict] = ACTIONS(1143), @@ -562724,28 +558908,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_IBOutlet] = ACTIONS(1143), [anon_sym_IBInspectable] = ACTIONS(1143), [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(9043), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), [anon_sym_typeof] = ACTIONS(1161), [anon_sym___typeof] = ACTIONS(1161), [anon_sym___typeof__] = ACTIONS(1161), [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(1149), + [sym_instancetype] = ACTIONS(9043), [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(1149), - [sym_IMP] = ACTIONS(1149), - [sym_BOOL] = ACTIONS(1149), - [sym_auto] = ACTIONS(1149), + [sym_SEL] = ACTIONS(9043), + [sym_IMP] = ACTIONS(9043), + [sym_BOOL] = ACTIONS(9043), + [sym_auto] = ACTIONS(9043), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -562754,73 +558938,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3775] = { - [sym_identifier] = ACTIONS(8519), - [anon_sym_COMMA] = ACTIONS(8521), - [anon_sym_RPAREN] = ACTIONS(8521), - [anon_sym_LPAREN2] = ACTIONS(8521), - [anon_sym_STAR] = ACTIONS(8521), - [anon_sym_GT] = ACTIONS(8521), - [anon_sym_SEMI] = ACTIONS(8521), - [anon_sym___attribute] = ACTIONS(8519), - [anon_sym___attribute__] = ACTIONS(8519), - [anon_sym___based] = ACTIONS(8519), - [anon_sym_LBRACE] = ACTIONS(8521), - [anon_sym_LBRACK] = ACTIONS(8521), - [anon_sym_const] = ACTIONS(8519), - [anon_sym_volatile] = ACTIONS(8519), - [anon_sym_restrict] = ACTIONS(8519), - [anon_sym__Atomic] = ACTIONS(8519), - [anon_sym_in] = ACTIONS(8519), - [anon_sym_out] = ACTIONS(8519), - [anon_sym_inout] = ACTIONS(8519), - [anon_sym_bycopy] = ACTIONS(8519), - [anon_sym_byref] = ACTIONS(8519), - [anon_sym_oneway] = ACTIONS(8519), - [anon_sym__Nullable] = ACTIONS(8519), - [anon_sym__Nonnull] = ACTIONS(8519), - [anon_sym__Nullable_result] = ACTIONS(8519), - [anon_sym__Null_unspecified] = ACTIONS(8519), - [anon_sym___autoreleasing] = ACTIONS(8519), - [anon_sym___nullable] = ACTIONS(8519), - [anon_sym___nonnull] = ACTIONS(8519), - [anon_sym___strong] = ACTIONS(8519), - [anon_sym___weak] = ACTIONS(8519), - [anon_sym___bridge] = ACTIONS(8519), - [anon_sym___bridge_transfer] = ACTIONS(8519), - [anon_sym___bridge_retained] = ACTIONS(8519), - [anon_sym___unsafe_unretained] = ACTIONS(8519), - [anon_sym___block] = ACTIONS(8519), - [anon_sym___kindof] = ACTIONS(8519), - [anon_sym___unused] = ACTIONS(8519), - [anon_sym__Complex] = ACTIONS(8519), - [anon_sym___complex] = ACTIONS(8519), - [anon_sym_IBOutlet] = ACTIONS(8519), - [anon_sym_IBInspectable] = ACTIONS(8519), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8519), + [sym_enumerator_list] = STATE(3798), + [sym_identifier] = ACTIONS(8220), + [anon_sym_COMMA] = ACTIONS(8222), + [anon_sym_RPAREN] = ACTIONS(8222), + [anon_sym_LPAREN2] = ACTIONS(8222), + [anon_sym_STAR] = ACTIONS(8222), + [anon_sym_GT] = ACTIONS(8222), + [anon_sym___attribute] = ACTIONS(8220), + [anon_sym___attribute__] = ACTIONS(8220), + [anon_sym___based] = ACTIONS(8220), + [anon_sym_LBRACE] = ACTIONS(9045), + [anon_sym_LBRACK] = ACTIONS(8222), + [anon_sym_const] = ACTIONS(8220), + [anon_sym_volatile] = ACTIONS(8220), + [anon_sym_restrict] = ACTIONS(8220), + [anon_sym__Atomic] = ACTIONS(8220), + [anon_sym_in] = ACTIONS(8220), + [anon_sym_out] = ACTIONS(8220), + [anon_sym_inout] = ACTIONS(8220), + [anon_sym_bycopy] = ACTIONS(8220), + [anon_sym_byref] = ACTIONS(8220), + [anon_sym_oneway] = ACTIONS(8220), + [anon_sym__Nullable] = ACTIONS(8220), + [anon_sym__Nonnull] = ACTIONS(8220), + [anon_sym__Nullable_result] = ACTIONS(8220), + [anon_sym__Null_unspecified] = ACTIONS(8220), + [anon_sym___autoreleasing] = ACTIONS(8220), + [anon_sym___nullable] = ACTIONS(8220), + [anon_sym___nonnull] = ACTIONS(8220), + [anon_sym___strong] = ACTIONS(8220), + [anon_sym___weak] = ACTIONS(8220), + [anon_sym___bridge] = ACTIONS(8220), + [anon_sym___bridge_transfer] = ACTIONS(8220), + [anon_sym___bridge_retained] = ACTIONS(8220), + [anon_sym___unsafe_unretained] = ACTIONS(8220), + [anon_sym___block] = ACTIONS(8220), + [anon_sym___kindof] = ACTIONS(8220), + [anon_sym___unused] = ACTIONS(8220), + [anon_sym__Complex] = ACTIONS(8220), + [anon_sym___complex] = ACTIONS(8220), + [anon_sym_IBOutlet] = ACTIONS(8220), + [anon_sym_IBInspectable] = ACTIONS(8220), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8220), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8519), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8519), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8519), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8519), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8519), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8519), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8519), - [anon_sym_NS_AVAILABLE] = ACTIONS(8519), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8519), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8519), - [anon_sym_API_AVAILABLE] = ACTIONS(8519), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8519), - [anon_sym_API_DEPRECATED] = ACTIONS(8519), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8519), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8519), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8519), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8519), - [anon_sym___deprecated_msg] = ACTIONS(8519), - [anon_sym___deprecated_enum_msg] = ACTIONS(8519), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8519), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8519), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8519), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8519), + [sym_method_attribute_specifier] = ACTIONS(8220), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8220), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8220), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8220), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8220), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8220), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8220), + [anon_sym_NS_AVAILABLE] = ACTIONS(8220), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8220), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8220), + [anon_sym_API_AVAILABLE] = ACTIONS(8220), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8220), + [anon_sym_API_DEPRECATED] = ACTIONS(8220), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8220), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8220), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8220), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8220), + [anon_sym___deprecated_msg] = ACTIONS(8220), + [anon_sym___deprecated_enum_msg] = ACTIONS(8220), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8220), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8220), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8220), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8220), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -562829,73 +559013,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3776] = { - [sym_attribute_specifier] = STATE(3776), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_function_declarator_repeat1] = STATE(3776), - [anon_sym_COMMA] = ACTIONS(8985), - [anon_sym_LPAREN2] = ACTIONS(8985), - [anon_sym_SEMI] = ACTIONS(8985), - [anon_sym___attribute] = ACTIONS(8987), - [anon_sym___attribute__] = ACTIONS(8990), - [anon_sym_LBRACE] = ACTIONS(8985), - [anon_sym_LBRACK] = ACTIONS(8985), - [anon_sym_EQ] = ACTIONS(8985), - [anon_sym_const] = ACTIONS(8985), - [anon_sym_volatile] = ACTIONS(8985), - [anon_sym_restrict] = ACTIONS(8985), - [anon_sym__Atomic] = ACTIONS(8985), - [anon_sym_in] = ACTIONS(8993), - [anon_sym_out] = ACTIONS(8985), - [anon_sym_inout] = ACTIONS(8985), - [anon_sym_bycopy] = ACTIONS(8985), - [anon_sym_byref] = ACTIONS(8985), - [anon_sym_oneway] = ACTIONS(8985), - [anon_sym__Nullable] = ACTIONS(8993), - [anon_sym__Nonnull] = ACTIONS(8985), - [anon_sym__Nullable_result] = ACTIONS(8985), - [anon_sym__Null_unspecified] = ACTIONS(8985), - [anon_sym___autoreleasing] = ACTIONS(8985), - [anon_sym___nullable] = ACTIONS(8985), - [anon_sym___nonnull] = ACTIONS(8985), - [anon_sym___strong] = ACTIONS(8985), - [anon_sym___weak] = ACTIONS(8985), - [anon_sym___bridge] = ACTIONS(8993), - [anon_sym___bridge_transfer] = ACTIONS(8985), - [anon_sym___bridge_retained] = ACTIONS(8985), - [anon_sym___unsafe_unretained] = ACTIONS(8985), - [anon_sym___block] = ACTIONS(8985), - [anon_sym___kindof] = ACTIONS(8985), - [anon_sym___unused] = ACTIONS(8985), - [anon_sym__Complex] = ACTIONS(8985), - [anon_sym___complex] = ACTIONS(8985), - [anon_sym_IBOutlet] = ACTIONS(8985), - [anon_sym_IBInspectable] = ACTIONS(8985), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8985), + [sym_type_qualifier] = STATE(3779), + [sym__type_specifier] = STATE(3527), + [sym_sized_type_specifier] = STATE(3527), + [sym_enum_specifier] = STATE(3527), + [sym_struct_specifier] = STATE(3527), + [sym_union_specifier] = STATE(3527), + [sym_macro_type_specifier] = STATE(3527), + [sym_ns_enum_specifier] = STATE(3470), + [sym_typeof_specifier] = STATE(3527), + [sym_atomic_specifier] = STATE(3527), + [sym_generic_type_specifier] = STATE(3527), + [aux_sym_type_definition_repeat1] = STATE(3779), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7670), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8995), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8998), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8998), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(9001), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9001), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9001), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9001), - [anon_sym_NS_AVAILABLE] = ACTIONS(9004), - [anon_sym___IOS_AVAILABLE] = ACTIONS(9007), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9007), - [anon_sym_API_AVAILABLE] = ACTIONS(9007), - [anon_sym_API_UNAVAILABLE] = ACTIONS(9007), - [anon_sym_API_DEPRECATED] = ACTIONS(9007), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9007), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9007), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9007), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9007), - [anon_sym___deprecated_msg] = ACTIONS(9007), - [anon_sym___deprecated_enum_msg] = ACTIONS(9007), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9007), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9007), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9007), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9007), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7670), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7670), + [sym_IMP] = ACTIONS(7670), + [sym_BOOL] = ACTIONS(7670), + [sym_auto] = ACTIONS(7670), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -562904,73 +559088,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3777] = { - [sym_identifier] = ACTIONS(8648), - [anon_sym_COMMA] = ACTIONS(8650), - [anon_sym_RPAREN] = ACTIONS(8650), - [anon_sym_LPAREN2] = ACTIONS(8650), - [anon_sym_STAR] = ACTIONS(8650), - [anon_sym_GT] = ACTIONS(8650), - [anon_sym_SEMI] = ACTIONS(8650), - [anon_sym___attribute] = ACTIONS(8648), - [anon_sym___attribute__] = ACTIONS(8648), - [anon_sym___based] = ACTIONS(8648), - [anon_sym_LBRACE] = ACTIONS(8650), - [anon_sym_LBRACK] = ACTIONS(8650), - [anon_sym_const] = ACTIONS(8648), - [anon_sym_volatile] = ACTIONS(8648), - [anon_sym_restrict] = ACTIONS(8648), - [anon_sym__Atomic] = ACTIONS(8648), - [anon_sym_in] = ACTIONS(8648), - [anon_sym_out] = ACTIONS(8648), - [anon_sym_inout] = ACTIONS(8648), - [anon_sym_bycopy] = ACTIONS(8648), - [anon_sym_byref] = ACTIONS(8648), - [anon_sym_oneway] = ACTIONS(8648), - [anon_sym__Nullable] = ACTIONS(8648), - [anon_sym__Nonnull] = ACTIONS(8648), - [anon_sym__Nullable_result] = ACTIONS(8648), - [anon_sym__Null_unspecified] = ACTIONS(8648), - [anon_sym___autoreleasing] = ACTIONS(8648), - [anon_sym___nullable] = ACTIONS(8648), - [anon_sym___nonnull] = ACTIONS(8648), - [anon_sym___strong] = ACTIONS(8648), - [anon_sym___weak] = ACTIONS(8648), - [anon_sym___bridge] = ACTIONS(8648), - [anon_sym___bridge_transfer] = ACTIONS(8648), - [anon_sym___bridge_retained] = ACTIONS(8648), - [anon_sym___unsafe_unretained] = ACTIONS(8648), - [anon_sym___block] = ACTIONS(8648), - [anon_sym___kindof] = ACTIONS(8648), - [anon_sym___unused] = ACTIONS(8648), - [anon_sym__Complex] = ACTIONS(8648), - [anon_sym___complex] = ACTIONS(8648), - [anon_sym_IBOutlet] = ACTIONS(8648), - [anon_sym_IBInspectable] = ACTIONS(8648), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8648), + [sym_identifier] = ACTIONS(6840), + [anon_sym_COMMA] = ACTIONS(6842), + [anon_sym_RPAREN] = ACTIONS(6842), + [anon_sym_LPAREN2] = ACTIONS(6842), + [anon_sym_STAR] = ACTIONS(6842), + [anon_sym_GT] = ACTIONS(6842), + [anon_sym_LT] = ACTIONS(6842), + [anon_sym___attribute] = ACTIONS(6840), + [anon_sym___attribute__] = ACTIONS(6840), + [anon_sym___based] = ACTIONS(6840), + [anon_sym_LBRACE] = ACTIONS(6842), + [anon_sym_LBRACK] = ACTIONS(6842), + [anon_sym_const] = ACTIONS(6840), + [anon_sym_volatile] = ACTIONS(6840), + [anon_sym_restrict] = ACTIONS(6840), + [anon_sym__Atomic] = ACTIONS(6840), + [anon_sym_in] = ACTIONS(6840), + [anon_sym_out] = ACTIONS(6840), + [anon_sym_inout] = ACTIONS(6840), + [anon_sym_bycopy] = ACTIONS(6840), + [anon_sym_byref] = ACTIONS(6840), + [anon_sym_oneway] = ACTIONS(6840), + [anon_sym__Nullable] = ACTIONS(6840), + [anon_sym__Nonnull] = ACTIONS(6840), + [anon_sym__Nullable_result] = ACTIONS(6840), + [anon_sym__Null_unspecified] = ACTIONS(6840), + [anon_sym___autoreleasing] = ACTIONS(6840), + [anon_sym___nullable] = ACTIONS(6840), + [anon_sym___nonnull] = ACTIONS(6840), + [anon_sym___strong] = ACTIONS(6840), + [anon_sym___weak] = ACTIONS(6840), + [anon_sym___bridge] = ACTIONS(6840), + [anon_sym___bridge_transfer] = ACTIONS(6840), + [anon_sym___bridge_retained] = ACTIONS(6840), + [anon_sym___unsafe_unretained] = ACTIONS(6840), + [anon_sym___block] = ACTIONS(6840), + [anon_sym___kindof] = ACTIONS(6840), + [anon_sym___unused] = ACTIONS(6840), + [anon_sym__Complex] = ACTIONS(6840), + [anon_sym___complex] = ACTIONS(6840), + [anon_sym_IBOutlet] = ACTIONS(6840), + [anon_sym_IBInspectable] = ACTIONS(6840), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6840), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8648), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8648), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8648), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8648), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8648), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8648), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8648), - [anon_sym_NS_AVAILABLE] = ACTIONS(8648), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8648), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8648), - [anon_sym_API_AVAILABLE] = ACTIONS(8648), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8648), - [anon_sym_API_DEPRECATED] = ACTIONS(8648), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8648), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8648), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8648), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8648), - [anon_sym___deprecated_msg] = ACTIONS(8648), - [anon_sym___deprecated_enum_msg] = ACTIONS(8648), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8648), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8648), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8648), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8648), + [sym_method_attribute_specifier] = ACTIONS(6840), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6840), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6840), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6840), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6840), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6840), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6840), + [anon_sym_NS_AVAILABLE] = ACTIONS(6840), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6840), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6840), + [anon_sym_API_AVAILABLE] = ACTIONS(6840), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6840), + [anon_sym_API_DEPRECATED] = ACTIONS(6840), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6840), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6840), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6840), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6840), + [anon_sym___deprecated_msg] = ACTIONS(6840), + [anon_sym___deprecated_enum_msg] = ACTIONS(6840), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6840), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6840), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6840), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6840), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -562979,73 +559163,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3778] = { - [sym_identifier] = ACTIONS(8628), - [anon_sym_COMMA] = ACTIONS(8630), - [anon_sym_RPAREN] = ACTIONS(8630), - [anon_sym_LPAREN2] = ACTIONS(8630), - [anon_sym_STAR] = ACTIONS(8630), - [anon_sym_GT] = ACTIONS(8630), - [anon_sym_SEMI] = ACTIONS(8630), - [anon_sym___attribute] = ACTIONS(8628), - [anon_sym___attribute__] = ACTIONS(8628), - [anon_sym___based] = ACTIONS(8628), - [anon_sym_LBRACE] = ACTIONS(8630), - [anon_sym_LBRACK] = ACTIONS(8630), - [anon_sym_const] = ACTIONS(8628), - [anon_sym_volatile] = ACTIONS(8628), - [anon_sym_restrict] = ACTIONS(8628), - [anon_sym__Atomic] = ACTIONS(8628), - [anon_sym_in] = ACTIONS(8628), - [anon_sym_out] = ACTIONS(8628), - [anon_sym_inout] = ACTIONS(8628), - [anon_sym_bycopy] = ACTIONS(8628), - [anon_sym_byref] = ACTIONS(8628), - [anon_sym_oneway] = ACTIONS(8628), - [anon_sym__Nullable] = ACTIONS(8628), - [anon_sym__Nonnull] = ACTIONS(8628), - [anon_sym__Nullable_result] = ACTIONS(8628), - [anon_sym__Null_unspecified] = ACTIONS(8628), - [anon_sym___autoreleasing] = ACTIONS(8628), - [anon_sym___nullable] = ACTIONS(8628), - [anon_sym___nonnull] = ACTIONS(8628), - [anon_sym___strong] = ACTIONS(8628), - [anon_sym___weak] = ACTIONS(8628), - [anon_sym___bridge] = ACTIONS(8628), - [anon_sym___bridge_transfer] = ACTIONS(8628), - [anon_sym___bridge_retained] = ACTIONS(8628), - [anon_sym___unsafe_unretained] = ACTIONS(8628), - [anon_sym___block] = ACTIONS(8628), - [anon_sym___kindof] = ACTIONS(8628), - [anon_sym___unused] = ACTIONS(8628), - [anon_sym__Complex] = ACTIONS(8628), - [anon_sym___complex] = ACTIONS(8628), - [anon_sym_IBOutlet] = ACTIONS(8628), - [anon_sym_IBInspectable] = ACTIONS(8628), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8628), + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3527), + [sym_sized_type_specifier] = STATE(3527), + [sym_enum_specifier] = STATE(3527), + [sym_struct_specifier] = STATE(3527), + [sym_union_specifier] = STATE(3527), + [sym_macro_type_specifier] = STATE(3527), + [sym_ns_enum_specifier] = STATE(3470), + [sym_typeof_specifier] = STATE(3527), + [sym_atomic_specifier] = STATE(3527), + [sym_generic_type_specifier] = STATE(3527), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7670), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8628), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8628), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8628), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8628), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8628), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8628), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8628), - [anon_sym_NS_AVAILABLE] = ACTIONS(8628), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8628), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8628), - [anon_sym_API_AVAILABLE] = ACTIONS(8628), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8628), - [anon_sym_API_DEPRECATED] = ACTIONS(8628), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8628), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8628), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8628), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8628), - [anon_sym___deprecated_msg] = ACTIONS(8628), - [anon_sym___deprecated_enum_msg] = ACTIONS(8628), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8628), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8628), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8628), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8628), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(7670), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(7670), + [sym_IMP] = ACTIONS(7670), + [sym_BOOL] = ACTIONS(7670), + [sym_auto] = ACTIONS(7670), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -563054,20 +559238,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3779] = { - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym_type_descriptor] = STATE(5491), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3546), + [sym_sized_type_specifier] = STATE(3546), + [sym_enum_specifier] = STATE(3546), + [sym_struct_specifier] = STATE(3546), + [sym_union_specifier] = STATE(3546), + [sym_macro_type_specifier] = STATE(3546), + [sym_ns_enum_specifier] = STATE(3443), + [sym_typeof_specifier] = STATE(3546), + [sym_atomic_specifier] = STATE(3546), + [sym_generic_type_specifier] = STATE(3546), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), [anon_sym_const] = ACTIONS(1143), [anon_sym_volatile] = ACTIONS(1143), [anon_sym_restrict] = ACTIONS(1143), @@ -563099,28 +559283,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_IBOutlet] = ACTIONS(1143), [anon_sym_IBInspectable] = ACTIONS(1143), [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7664), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), [anon_sym_typeof] = ACTIONS(1161), [anon_sym___typeof] = ACTIONS(1161), [anon_sym___typeof__] = ACTIONS(1161), [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(1149), + [sym_instancetype] = ACTIONS(7664), [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(1149), - [sym_IMP] = ACTIONS(1149), - [sym_BOOL] = ACTIONS(1149), - [sym_auto] = ACTIONS(1149), + [sym_SEL] = ACTIONS(7664), + [sym_IMP] = ACTIONS(7664), + [sym_BOOL] = ACTIONS(7664), + [sym_auto] = ACTIONS(7664), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -563129,73 +559313,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3780] = { - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym_type_descriptor] = STATE(5469), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [sym_field_declaration_list] = STATE(3818), + [sym_identifier] = ACTIONS(8160), + [anon_sym_COMMA] = ACTIONS(8162), + [anon_sym_RPAREN] = ACTIONS(8162), + [anon_sym_LPAREN2] = ACTIONS(8162), + [anon_sym_STAR] = ACTIONS(8162), + [anon_sym_GT] = ACTIONS(8162), + [anon_sym___attribute] = ACTIONS(8160), + [anon_sym___attribute__] = ACTIONS(8160), + [anon_sym___based] = ACTIONS(8160), + [anon_sym_LBRACE] = ACTIONS(8888), + [anon_sym_LBRACK] = ACTIONS(8162), + [anon_sym_const] = ACTIONS(8160), + [anon_sym_volatile] = ACTIONS(8160), + [anon_sym_restrict] = ACTIONS(8160), + [anon_sym__Atomic] = ACTIONS(8160), + [anon_sym_in] = ACTIONS(8160), + [anon_sym_out] = ACTIONS(8160), + [anon_sym_inout] = ACTIONS(8160), + [anon_sym_bycopy] = ACTIONS(8160), + [anon_sym_byref] = ACTIONS(8160), + [anon_sym_oneway] = ACTIONS(8160), + [anon_sym__Nullable] = ACTIONS(8160), + [anon_sym__Nonnull] = ACTIONS(8160), + [anon_sym__Nullable_result] = ACTIONS(8160), + [anon_sym__Null_unspecified] = ACTIONS(8160), + [anon_sym___autoreleasing] = ACTIONS(8160), + [anon_sym___nullable] = ACTIONS(8160), + [anon_sym___nonnull] = ACTIONS(8160), + [anon_sym___strong] = ACTIONS(8160), + [anon_sym___weak] = ACTIONS(8160), + [anon_sym___bridge] = ACTIONS(8160), + [anon_sym___bridge_transfer] = ACTIONS(8160), + [anon_sym___bridge_retained] = ACTIONS(8160), + [anon_sym___unsafe_unretained] = ACTIONS(8160), + [anon_sym___block] = ACTIONS(8160), + [anon_sym___kindof] = ACTIONS(8160), + [anon_sym___unused] = ACTIONS(8160), + [anon_sym__Complex] = ACTIONS(8160), + [anon_sym___complex] = ACTIONS(8160), + [anon_sym_IBOutlet] = ACTIONS(8160), + [anon_sym_IBInspectable] = ACTIONS(8160), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8160), [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(1149), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(1149), - [sym_IMP] = ACTIONS(1149), - [sym_BOOL] = ACTIONS(1149), - [sym_auto] = ACTIONS(1149), + [sym_method_attribute_specifier] = ACTIONS(8160), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8160), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8160), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8160), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8160), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8160), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8160), + [anon_sym_NS_AVAILABLE] = ACTIONS(8160), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8160), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8160), + [anon_sym_API_AVAILABLE] = ACTIONS(8160), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8160), + [anon_sym_API_DEPRECATED] = ACTIONS(8160), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8160), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8160), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8160), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8160), + [anon_sym___deprecated_msg] = ACTIONS(8160), + [anon_sym___deprecated_enum_msg] = ACTIONS(8160), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8160), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8160), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8160), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8160), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -563204,73 +559388,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3781] = { - [sym_identifier] = ACTIONS(8636), - [anon_sym_COMMA] = ACTIONS(8638), - [anon_sym_RPAREN] = ACTIONS(8638), - [anon_sym_LPAREN2] = ACTIONS(8638), - [anon_sym_STAR] = ACTIONS(8638), - [anon_sym_GT] = ACTIONS(8638), - [anon_sym_SEMI] = ACTIONS(8638), - [anon_sym___attribute] = ACTIONS(8636), - [anon_sym___attribute__] = ACTIONS(8636), - [anon_sym___based] = ACTIONS(8636), - [anon_sym_LBRACE] = ACTIONS(8638), - [anon_sym_LBRACK] = ACTIONS(8638), - [anon_sym_const] = ACTIONS(8636), - [anon_sym_volatile] = ACTIONS(8636), - [anon_sym_restrict] = ACTIONS(8636), - [anon_sym__Atomic] = ACTIONS(8636), - [anon_sym_in] = ACTIONS(8636), - [anon_sym_out] = ACTIONS(8636), - [anon_sym_inout] = ACTIONS(8636), - [anon_sym_bycopy] = ACTIONS(8636), - [anon_sym_byref] = ACTIONS(8636), - [anon_sym_oneway] = ACTIONS(8636), - [anon_sym__Nullable] = ACTIONS(8636), - [anon_sym__Nonnull] = ACTIONS(8636), - [anon_sym__Nullable_result] = ACTIONS(8636), - [anon_sym__Null_unspecified] = ACTIONS(8636), - [anon_sym___autoreleasing] = ACTIONS(8636), - [anon_sym___nullable] = ACTIONS(8636), - [anon_sym___nonnull] = ACTIONS(8636), - [anon_sym___strong] = ACTIONS(8636), - [anon_sym___weak] = ACTIONS(8636), - [anon_sym___bridge] = ACTIONS(8636), - [anon_sym___bridge_transfer] = ACTIONS(8636), - [anon_sym___bridge_retained] = ACTIONS(8636), - [anon_sym___unsafe_unretained] = ACTIONS(8636), - [anon_sym___block] = ACTIONS(8636), - [anon_sym___kindof] = ACTIONS(8636), - [anon_sym___unused] = ACTIONS(8636), - [anon_sym__Complex] = ACTIONS(8636), - [anon_sym___complex] = ACTIONS(8636), - [anon_sym_IBOutlet] = ACTIONS(8636), - [anon_sym_IBInspectable] = ACTIONS(8636), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8636), + [sym_type_qualifier] = STATE(3738), + [sym__type_specifier] = STATE(3512), + [sym_sized_type_specifier] = STATE(3512), + [sym_enum_specifier] = STATE(3512), + [sym_struct_specifier] = STATE(3512), + [sym_union_specifier] = STATE(3512), + [sym_macro_type_specifier] = STATE(3512), + [sym_ns_enum_specifier] = STATE(3512), + [sym_typeof_specifier] = STATE(3512), + [sym_atomic_specifier] = STATE(3512), + [sym_generic_type_specifier] = STATE(3512), + [aux_sym_type_definition_repeat1] = STATE(3738), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(9048), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8636), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8636), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8636), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8636), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8636), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8636), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8636), - [anon_sym_NS_AVAILABLE] = ACTIONS(8636), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8636), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8636), - [anon_sym_API_AVAILABLE] = ACTIONS(8636), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8636), - [anon_sym_API_DEPRECATED] = ACTIONS(8636), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8636), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8636), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8636), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8636), - [anon_sym___deprecated_msg] = ACTIONS(8636), - [anon_sym___deprecated_enum_msg] = ACTIONS(8636), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8636), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8636), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8636), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8636), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(9048), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(9048), + [sym_IMP] = ACTIONS(9048), + [sym_BOOL] = ACTIONS(9048), + [sym_auto] = ACTIONS(9048), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -563279,73 +559463,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3782] = { - [sym_identifier] = ACTIONS(8546), - [anon_sym_COMMA] = ACTIONS(8548), - [anon_sym_RPAREN] = ACTIONS(8548), - [anon_sym_LPAREN2] = ACTIONS(8548), - [anon_sym_STAR] = ACTIONS(8548), - [anon_sym_GT] = ACTIONS(8548), - [anon_sym_SEMI] = ACTIONS(8548), - [anon_sym___attribute] = ACTIONS(8546), - [anon_sym___attribute__] = ACTIONS(8546), - [anon_sym___based] = ACTIONS(8546), - [anon_sym_LBRACE] = ACTIONS(8548), - [anon_sym_LBRACK] = ACTIONS(8548), - [anon_sym_const] = ACTIONS(8546), - [anon_sym_volatile] = ACTIONS(8546), - [anon_sym_restrict] = ACTIONS(8546), - [anon_sym__Atomic] = ACTIONS(8546), - [anon_sym_in] = ACTIONS(8546), - [anon_sym_out] = ACTIONS(8546), - [anon_sym_inout] = ACTIONS(8546), - [anon_sym_bycopy] = ACTIONS(8546), - [anon_sym_byref] = ACTIONS(8546), - [anon_sym_oneway] = ACTIONS(8546), - [anon_sym__Nullable] = ACTIONS(8546), - [anon_sym__Nonnull] = ACTIONS(8546), - [anon_sym__Nullable_result] = ACTIONS(8546), - [anon_sym__Null_unspecified] = ACTIONS(8546), - [anon_sym___autoreleasing] = ACTIONS(8546), - [anon_sym___nullable] = ACTIONS(8546), - [anon_sym___nonnull] = ACTIONS(8546), - [anon_sym___strong] = ACTIONS(8546), - [anon_sym___weak] = ACTIONS(8546), - [anon_sym___bridge] = ACTIONS(8546), - [anon_sym___bridge_transfer] = ACTIONS(8546), - [anon_sym___bridge_retained] = ACTIONS(8546), - [anon_sym___unsafe_unretained] = ACTIONS(8546), - [anon_sym___block] = ACTIONS(8546), - [anon_sym___kindof] = ACTIONS(8546), - [anon_sym___unused] = ACTIONS(8546), - [anon_sym__Complex] = ACTIONS(8546), - [anon_sym___complex] = ACTIONS(8546), - [anon_sym_IBOutlet] = ACTIONS(8546), - [anon_sym_IBInspectable] = ACTIONS(8546), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8546), + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3512), + [sym_sized_type_specifier] = STATE(3512), + [sym_enum_specifier] = STATE(3512), + [sym_struct_specifier] = STATE(3512), + [sym_union_specifier] = STATE(3512), + [sym_macro_type_specifier] = STATE(3512), + [sym_ns_enum_specifier] = STATE(3512), + [sym_typeof_specifier] = STATE(3512), + [sym_atomic_specifier] = STATE(3512), + [sym_generic_type_specifier] = STATE(3512), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_volatile] = ACTIONS(1143), + [anon_sym_restrict] = ACTIONS(1143), + [anon_sym__Atomic] = ACTIONS(1145), + [anon_sym_in] = ACTIONS(1143), + [anon_sym_out] = ACTIONS(1143), + [anon_sym_inout] = ACTIONS(1143), + [anon_sym_bycopy] = ACTIONS(1143), + [anon_sym_byref] = ACTIONS(1143), + [anon_sym_oneway] = ACTIONS(1143), + [anon_sym__Nullable] = ACTIONS(1143), + [anon_sym__Nonnull] = ACTIONS(1143), + [anon_sym__Nullable_result] = ACTIONS(1143), + [anon_sym__Null_unspecified] = ACTIONS(1143), + [anon_sym___autoreleasing] = ACTIONS(1143), + [anon_sym___nullable] = ACTIONS(1143), + [anon_sym___nonnull] = ACTIONS(1143), + [anon_sym___strong] = ACTIONS(1143), + [anon_sym___weak] = ACTIONS(1143), + [anon_sym___bridge] = ACTIONS(1143), + [anon_sym___bridge_transfer] = ACTIONS(1143), + [anon_sym___bridge_retained] = ACTIONS(1143), + [anon_sym___unsafe_unretained] = ACTIONS(1143), + [anon_sym___block] = ACTIONS(1143), + [anon_sym___kindof] = ACTIONS(1143), + [anon_sym___unused] = ACTIONS(1143), + [anon_sym__Complex] = ACTIONS(1143), + [anon_sym___complex] = ACTIONS(1143), + [anon_sym_IBOutlet] = ACTIONS(1143), + [anon_sym_IBInspectable] = ACTIONS(1143), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(9048), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8546), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8546), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8546), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8546), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8546), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8546), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8546), - [anon_sym_NS_AVAILABLE] = ACTIONS(8546), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8546), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8546), - [anon_sym_API_AVAILABLE] = ACTIONS(8546), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8546), - [anon_sym_API_DEPRECATED] = ACTIONS(8546), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8546), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8546), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8546), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8546), - [anon_sym___deprecated_msg] = ACTIONS(8546), - [anon_sym___deprecated_enum_msg] = ACTIONS(8546), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8546), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8546), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8546), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8546), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), + [anon_sym_typeof] = ACTIONS(1161), + [anon_sym___typeof] = ACTIONS(1161), + [anon_sym___typeof__] = ACTIONS(1161), + [sym_id] = ACTIONS(1163), + [sym_instancetype] = ACTIONS(9048), + [sym_Class] = ACTIONS(1163), + [sym_SEL] = ACTIONS(9048), + [sym_IMP] = ACTIONS(9048), + [sym_BOOL] = ACTIONS(9048), + [sym_auto] = ACTIONS(9048), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -563354,20 +559538,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3783] = { - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym_type_descriptor] = STATE(4989), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), + [sym_type_qualifier] = STATE(3774), + [sym__type_specifier] = STATE(3546), + [sym_sized_type_specifier] = STATE(3546), + [sym_enum_specifier] = STATE(3546), + [sym_struct_specifier] = STATE(3546), + [sym_union_specifier] = STATE(3546), + [sym_macro_type_specifier] = STATE(3546), + [sym_ns_enum_specifier] = STATE(3443), + [sym_typeof_specifier] = STATE(3546), + [sym_atomic_specifier] = STATE(3546), + [sym_generic_type_specifier] = STATE(3546), + [aux_sym_type_definition_repeat1] = STATE(3774), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), [anon_sym_const] = ACTIONS(1143), [anon_sym_volatile] = ACTIONS(1143), [anon_sym_restrict] = ACTIONS(1143), @@ -563399,28 +559583,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_IBOutlet] = ACTIONS(1143), [anon_sym_IBInspectable] = ACTIONS(1143), [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7664), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), [anon_sym_typeof] = ACTIONS(1161), [anon_sym___typeof] = ACTIONS(1161), [anon_sym___typeof__] = ACTIONS(1161), [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(1149), + [sym_instancetype] = ACTIONS(7664), [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(1149), - [sym_IMP] = ACTIONS(1149), - [sym_BOOL] = ACTIONS(1149), - [sym_auto] = ACTIONS(1149), + [sym_SEL] = ACTIONS(7664), + [sym_IMP] = ACTIONS(7664), + [sym_BOOL] = ACTIONS(7664), + [sym_auto] = ACTIONS(7664), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -563429,73 +559613,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3784] = { - [sym_identifier] = ACTIONS(8534), - [anon_sym_COMMA] = ACTIONS(8536), - [anon_sym_RPAREN] = ACTIONS(8536), - [anon_sym_LPAREN2] = ACTIONS(8536), - [anon_sym_STAR] = ACTIONS(8536), - [anon_sym_GT] = ACTIONS(8536), - [anon_sym_SEMI] = ACTIONS(8536), - [anon_sym___attribute] = ACTIONS(8534), - [anon_sym___attribute__] = ACTIONS(8534), - [anon_sym___based] = ACTIONS(8534), - [anon_sym_LBRACE] = ACTIONS(8536), - [anon_sym_LBRACK] = ACTIONS(8536), - [anon_sym_const] = ACTIONS(8534), - [anon_sym_volatile] = ACTIONS(8534), - [anon_sym_restrict] = ACTIONS(8534), - [anon_sym__Atomic] = ACTIONS(8534), - [anon_sym_in] = ACTIONS(8534), - [anon_sym_out] = ACTIONS(8534), - [anon_sym_inout] = ACTIONS(8534), - [anon_sym_bycopy] = ACTIONS(8534), - [anon_sym_byref] = ACTIONS(8534), - [anon_sym_oneway] = ACTIONS(8534), - [anon_sym__Nullable] = ACTIONS(8534), - [anon_sym__Nonnull] = ACTIONS(8534), - [anon_sym__Nullable_result] = ACTIONS(8534), - [anon_sym__Null_unspecified] = ACTIONS(8534), - [anon_sym___autoreleasing] = ACTIONS(8534), - [anon_sym___nullable] = ACTIONS(8534), - [anon_sym___nonnull] = ACTIONS(8534), - [anon_sym___strong] = ACTIONS(8534), - [anon_sym___weak] = ACTIONS(8534), - [anon_sym___bridge] = ACTIONS(8534), - [anon_sym___bridge_transfer] = ACTIONS(8534), - [anon_sym___bridge_retained] = ACTIONS(8534), - [anon_sym___unsafe_unretained] = ACTIONS(8534), - [anon_sym___block] = ACTIONS(8534), - [anon_sym___kindof] = ACTIONS(8534), - [anon_sym___unused] = ACTIONS(8534), - [anon_sym__Complex] = ACTIONS(8534), - [anon_sym___complex] = ACTIONS(8534), - [anon_sym_IBOutlet] = ACTIONS(8534), - [anon_sym_IBInspectable] = ACTIONS(8534), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8534), + [sym_enumerator_list] = STATE(3746), + [sym_identifier] = ACTIONS(8134), + [anon_sym_COMMA] = ACTIONS(8136), + [anon_sym_RPAREN] = ACTIONS(8136), + [anon_sym_LPAREN2] = ACTIONS(8136), + [anon_sym_STAR] = ACTIONS(8136), + [anon_sym_GT] = ACTIONS(8136), + [anon_sym___attribute] = ACTIONS(8134), + [anon_sym___attribute__] = ACTIONS(8134), + [anon_sym___based] = ACTIONS(8134), + [anon_sym_LBRACE] = ACTIONS(9050), + [anon_sym_LBRACK] = ACTIONS(8136), + [anon_sym_const] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym_in] = ACTIONS(8134), + [anon_sym_out] = ACTIONS(8134), + [anon_sym_inout] = ACTIONS(8134), + [anon_sym_bycopy] = ACTIONS(8134), + [anon_sym_byref] = ACTIONS(8134), + [anon_sym_oneway] = ACTIONS(8134), + [anon_sym__Nullable] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym__Nullable_result] = ACTIONS(8134), + [anon_sym__Null_unspecified] = ACTIONS(8134), + [anon_sym___autoreleasing] = ACTIONS(8134), + [anon_sym___nullable] = ACTIONS(8134), + [anon_sym___nonnull] = ACTIONS(8134), + [anon_sym___strong] = ACTIONS(8134), + [anon_sym___weak] = ACTIONS(8134), + [anon_sym___bridge] = ACTIONS(8134), + [anon_sym___bridge_transfer] = ACTIONS(8134), + [anon_sym___bridge_retained] = ACTIONS(8134), + [anon_sym___unsafe_unretained] = ACTIONS(8134), + [anon_sym___block] = ACTIONS(8134), + [anon_sym___kindof] = ACTIONS(8134), + [anon_sym___unused] = ACTIONS(8134), + [anon_sym__Complex] = ACTIONS(8134), + [anon_sym___complex] = ACTIONS(8134), + [anon_sym_IBOutlet] = ACTIONS(8134), + [anon_sym_IBInspectable] = ACTIONS(8134), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8134), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8534), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8534), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8534), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8534), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8534), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8534), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8534), - [anon_sym_NS_AVAILABLE] = ACTIONS(8534), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8534), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8534), - [anon_sym_API_AVAILABLE] = ACTIONS(8534), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8534), - [anon_sym_API_DEPRECATED] = ACTIONS(8534), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8534), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8534), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8534), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8534), - [anon_sym___deprecated_msg] = ACTIONS(8534), - [anon_sym___deprecated_enum_msg] = ACTIONS(8534), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8534), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8534), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8534), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8534), + [sym_method_attribute_specifier] = ACTIONS(8134), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8134), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8134), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8134), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8134), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8134), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8134), + [anon_sym_NS_AVAILABLE] = ACTIONS(8134), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8134), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8134), + [anon_sym_API_AVAILABLE] = ACTIONS(8134), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8134), + [anon_sym_API_DEPRECATED] = ACTIONS(8134), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8134), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8134), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8134), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8134), + [anon_sym___deprecated_msg] = ACTIONS(8134), + [anon_sym___deprecated_enum_msg] = ACTIONS(8134), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8134), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8134), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8134), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8134), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -563504,20 +559688,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3785] = { - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym_type_descriptor] = STATE(5001), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), + [sym_type_qualifier] = STATE(3872), + [sym__type_specifier] = STATE(3555), + [sym_sized_type_specifier] = STATE(3555), + [sym_enum_specifier] = STATE(3555), + [sym_struct_specifier] = STATE(3555), + [sym_union_specifier] = STATE(3555), + [sym_macro_type_specifier] = STATE(3555), + [sym_ns_enum_specifier] = STATE(3504), + [sym_typeof_specifier] = STATE(3555), + [sym_atomic_specifier] = STATE(3555), + [sym_generic_type_specifier] = STATE(3555), + [aux_sym_type_definition_repeat1] = STATE(3872), + [aux_sym_sized_type_specifier_repeat1] = STATE(3720), + [sym_identifier] = ACTIONS(7596), [anon_sym_const] = ACTIONS(1143), [anon_sym_volatile] = ACTIONS(1143), [anon_sym_restrict] = ACTIONS(1143), @@ -563549,28 +559733,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_IBOutlet] = ACTIONS(1143), [anon_sym_IBInspectable] = ACTIONS(1143), [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(9053), + [anon_sym_enum] = ACTIONS(7606), + [anon_sym_struct] = ACTIONS(1153), + [anon_sym_union] = ACTIONS(1155), [sym_comment] = ACTIONS(3), + [anon_sym_NS_ENUM] = ACTIONS(1159), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(1159), + [anon_sym_NS_OPTIONS] = ACTIONS(1159), [anon_sym_typeof] = ACTIONS(1161), [anon_sym___typeof] = ACTIONS(1161), [anon_sym___typeof__] = ACTIONS(1161), [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(1149), + [sym_instancetype] = ACTIONS(9053), [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(1149), - [sym_IMP] = ACTIONS(1149), - [sym_BOOL] = ACTIONS(1149), - [sym_auto] = ACTIONS(1149), + [sym_SEL] = ACTIONS(9053), + [sym_IMP] = ACTIONS(9053), + [sym_BOOL] = ACTIONS(9053), + [sym_auto] = ACTIONS(9053), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -563579,73 +559763,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3786] = { - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym_type_descriptor] = STATE(5288), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [sym_identifier] = ACTIONS(8470), + [anon_sym_COMMA] = ACTIONS(8472), + [anon_sym_RPAREN] = ACTIONS(8472), + [anon_sym_LPAREN2] = ACTIONS(8472), + [anon_sym_STAR] = ACTIONS(8472), + [anon_sym_GT] = ACTIONS(8472), + [anon_sym___attribute] = ACTIONS(8470), + [anon_sym___attribute__] = ACTIONS(8470), + [anon_sym___based] = ACTIONS(8470), + [anon_sym_LBRACE] = ACTIONS(8472), + [anon_sym_LBRACK] = ACTIONS(8472), + [anon_sym_const] = ACTIONS(8470), + [anon_sym_volatile] = ACTIONS(8470), + [anon_sym_restrict] = ACTIONS(8470), + [anon_sym__Atomic] = ACTIONS(8470), + [anon_sym_in] = ACTIONS(8470), + [anon_sym_out] = ACTIONS(8470), + [anon_sym_inout] = ACTIONS(8470), + [anon_sym_bycopy] = ACTIONS(8470), + [anon_sym_byref] = ACTIONS(8470), + [anon_sym_oneway] = ACTIONS(8470), + [anon_sym__Nullable] = ACTIONS(8470), + [anon_sym__Nonnull] = ACTIONS(8470), + [anon_sym__Nullable_result] = ACTIONS(8470), + [anon_sym__Null_unspecified] = ACTIONS(8470), + [anon_sym___autoreleasing] = ACTIONS(8470), + [anon_sym___nullable] = ACTIONS(8470), + [anon_sym___nonnull] = ACTIONS(8470), + [anon_sym___strong] = ACTIONS(8470), + [anon_sym___weak] = ACTIONS(8470), + [anon_sym___bridge] = ACTIONS(8470), + [anon_sym___bridge_transfer] = ACTIONS(8470), + [anon_sym___bridge_retained] = ACTIONS(8470), + [anon_sym___unsafe_unretained] = ACTIONS(8470), + [anon_sym___block] = ACTIONS(8470), + [anon_sym___kindof] = ACTIONS(8470), + [anon_sym___unused] = ACTIONS(8470), + [anon_sym__Complex] = ACTIONS(8470), + [anon_sym___complex] = ACTIONS(8470), + [anon_sym_IBOutlet] = ACTIONS(8470), + [anon_sym_IBInspectable] = ACTIONS(8470), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8470), [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(1149), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(1149), - [sym_IMP] = ACTIONS(1149), - [sym_BOOL] = ACTIONS(1149), - [sym_auto] = ACTIONS(1149), + [sym_method_attribute_specifier] = ACTIONS(8470), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8470), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8470), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8470), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8470), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8470), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8470), + [anon_sym_NS_AVAILABLE] = ACTIONS(8470), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8470), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8470), + [anon_sym_API_AVAILABLE] = ACTIONS(8470), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8470), + [anon_sym_API_DEPRECATED] = ACTIONS(8470), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8470), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8470), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8470), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8470), + [anon_sym___deprecated_msg] = ACTIONS(8470), + [anon_sym___deprecated_enum_msg] = ACTIONS(8470), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8470), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8470), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8470), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8470), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -563654,4180 +559837,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3787] = { - [sym_identifier] = ACTIONS(8576), - [anon_sym_COMMA] = ACTIONS(8578), - [anon_sym_RPAREN] = ACTIONS(8578), - [anon_sym_LPAREN2] = ACTIONS(8578), - [anon_sym_STAR] = ACTIONS(8578), - [anon_sym_GT] = ACTIONS(8578), - [anon_sym_SEMI] = ACTIONS(8578), - [anon_sym___attribute] = ACTIONS(8576), - [anon_sym___attribute__] = ACTIONS(8576), - [anon_sym___based] = ACTIONS(8576), - [anon_sym_LBRACE] = ACTIONS(8578), - [anon_sym_LBRACK] = ACTIONS(8578), - [anon_sym_const] = ACTIONS(8576), - [anon_sym_volatile] = ACTIONS(8576), - [anon_sym_restrict] = ACTIONS(8576), - [anon_sym__Atomic] = ACTIONS(8576), - [anon_sym_in] = ACTIONS(8576), - [anon_sym_out] = ACTIONS(8576), - [anon_sym_inout] = ACTIONS(8576), - [anon_sym_bycopy] = ACTIONS(8576), - [anon_sym_byref] = ACTIONS(8576), - [anon_sym_oneway] = ACTIONS(8576), - [anon_sym__Nullable] = ACTIONS(8576), - [anon_sym__Nonnull] = ACTIONS(8576), - [anon_sym__Nullable_result] = ACTIONS(8576), - [anon_sym__Null_unspecified] = ACTIONS(8576), - [anon_sym___autoreleasing] = ACTIONS(8576), - [anon_sym___nullable] = ACTIONS(8576), - [anon_sym___nonnull] = ACTIONS(8576), - [anon_sym___strong] = ACTIONS(8576), - [anon_sym___weak] = ACTIONS(8576), - [anon_sym___bridge] = ACTIONS(8576), - [anon_sym___bridge_transfer] = ACTIONS(8576), - [anon_sym___bridge_retained] = ACTIONS(8576), - [anon_sym___unsafe_unretained] = ACTIONS(8576), - [anon_sym___block] = ACTIONS(8576), - [anon_sym___kindof] = ACTIONS(8576), - [anon_sym___unused] = ACTIONS(8576), - [anon_sym__Complex] = ACTIONS(8576), - [anon_sym___complex] = ACTIONS(8576), - [anon_sym_IBOutlet] = ACTIONS(8576), - [anon_sym_IBInspectable] = ACTIONS(8576), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8576), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8576), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8576), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8576), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8576), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8576), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8576), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8576), - [anon_sym_NS_AVAILABLE] = ACTIONS(8576), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8576), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8576), - [anon_sym_API_AVAILABLE] = ACTIONS(8576), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8576), - [anon_sym_API_DEPRECATED] = ACTIONS(8576), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8576), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8576), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8576), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8576), - [anon_sym___deprecated_msg] = ACTIONS(8576), - [anon_sym___deprecated_enum_msg] = ACTIONS(8576), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8576), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8576), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8576), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8576), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3788] = { - [sym_attribute_specifier] = STATE(3811), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_function_declarator_repeat1] = STATE(3811), - [anon_sym_COMMA] = ACTIONS(9010), - [anon_sym_LPAREN2] = ACTIONS(9010), - [anon_sym_SEMI] = ACTIONS(9010), - [anon_sym___attribute] = ACTIONS(9012), - [anon_sym___attribute__] = ACTIONS(9015), - [anon_sym_LBRACE] = ACTIONS(9010), - [anon_sym_LBRACK] = ACTIONS(9010), - [anon_sym_EQ] = ACTIONS(9010), - [anon_sym_const] = ACTIONS(9010), - [anon_sym_volatile] = ACTIONS(9010), - [anon_sym_restrict] = ACTIONS(9010), - [anon_sym__Atomic] = ACTIONS(9010), - [anon_sym_in] = ACTIONS(9018), - [anon_sym_out] = ACTIONS(9010), - [anon_sym_inout] = ACTIONS(9010), - [anon_sym_bycopy] = ACTIONS(9010), - [anon_sym_byref] = ACTIONS(9010), - [anon_sym_oneway] = ACTIONS(9010), - [anon_sym__Nullable] = ACTIONS(9018), - [anon_sym__Nonnull] = ACTIONS(9010), - [anon_sym__Nullable_result] = ACTIONS(9010), - [anon_sym__Null_unspecified] = ACTIONS(9010), - [anon_sym___autoreleasing] = ACTIONS(9010), - [anon_sym___nullable] = ACTIONS(9010), - [anon_sym___nonnull] = ACTIONS(9010), - [anon_sym___strong] = ACTIONS(9010), - [anon_sym___weak] = ACTIONS(9010), - [anon_sym___bridge] = ACTIONS(9018), - [anon_sym___bridge_transfer] = ACTIONS(9010), - [anon_sym___bridge_retained] = ACTIONS(9010), - [anon_sym___unsafe_unretained] = ACTIONS(9010), - [anon_sym___block] = ACTIONS(9010), - [anon_sym___kindof] = ACTIONS(9010), - [anon_sym___unused] = ACTIONS(9010), - [anon_sym__Complex] = ACTIONS(9010), - [anon_sym___complex] = ACTIONS(9010), - [anon_sym_IBOutlet] = ACTIONS(9010), - [anon_sym_IBInspectable] = ACTIONS(9010), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9010), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(9020), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9023), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9023), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(9026), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9026), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9026), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9026), - [anon_sym_NS_AVAILABLE] = ACTIONS(9029), - [anon_sym___IOS_AVAILABLE] = ACTIONS(9032), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9032), - [anon_sym_API_AVAILABLE] = ACTIONS(9032), - [anon_sym_API_UNAVAILABLE] = ACTIONS(9032), - [anon_sym_API_DEPRECATED] = ACTIONS(9032), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9032), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9032), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9032), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9032), - [anon_sym___deprecated_msg] = ACTIONS(9032), - [anon_sym___deprecated_enum_msg] = ACTIONS(9032), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9032), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9032), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9032), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9032), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3789] = { - [sym_identifier] = ACTIONS(8572), - [anon_sym_COMMA] = ACTIONS(8574), - [anon_sym_RPAREN] = ACTIONS(8574), - [anon_sym_LPAREN2] = ACTIONS(8574), - [anon_sym_STAR] = ACTIONS(8574), - [anon_sym_GT] = ACTIONS(8574), - [anon_sym_SEMI] = ACTIONS(8574), - [anon_sym___attribute] = ACTIONS(8572), - [anon_sym___attribute__] = ACTIONS(8572), - [anon_sym___based] = ACTIONS(8572), - [anon_sym_LBRACE] = ACTIONS(8574), - [anon_sym_LBRACK] = ACTIONS(8574), - [anon_sym_const] = ACTIONS(8572), - [anon_sym_volatile] = ACTIONS(8572), - [anon_sym_restrict] = ACTIONS(8572), - [anon_sym__Atomic] = ACTIONS(8572), - [anon_sym_in] = ACTIONS(8572), - [anon_sym_out] = ACTIONS(8572), - [anon_sym_inout] = ACTIONS(8572), - [anon_sym_bycopy] = ACTIONS(8572), - [anon_sym_byref] = ACTIONS(8572), - [anon_sym_oneway] = ACTIONS(8572), - [anon_sym__Nullable] = ACTIONS(8572), - [anon_sym__Nonnull] = ACTIONS(8572), - [anon_sym__Nullable_result] = ACTIONS(8572), - [anon_sym__Null_unspecified] = ACTIONS(8572), - [anon_sym___autoreleasing] = ACTIONS(8572), - [anon_sym___nullable] = ACTIONS(8572), - [anon_sym___nonnull] = ACTIONS(8572), - [anon_sym___strong] = ACTIONS(8572), - [anon_sym___weak] = ACTIONS(8572), - [anon_sym___bridge] = ACTIONS(8572), - [anon_sym___bridge_transfer] = ACTIONS(8572), - [anon_sym___bridge_retained] = ACTIONS(8572), - [anon_sym___unsafe_unretained] = ACTIONS(8572), - [anon_sym___block] = ACTIONS(8572), - [anon_sym___kindof] = ACTIONS(8572), - [anon_sym___unused] = ACTIONS(8572), - [anon_sym__Complex] = ACTIONS(8572), - [anon_sym___complex] = ACTIONS(8572), - [anon_sym_IBOutlet] = ACTIONS(8572), - [anon_sym_IBInspectable] = ACTIONS(8572), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8572), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8572), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8572), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8572), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8572), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8572), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8572), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8572), - [anon_sym_NS_AVAILABLE] = ACTIONS(8572), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8572), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8572), - [anon_sym_API_AVAILABLE] = ACTIONS(8572), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8572), - [anon_sym_API_DEPRECATED] = ACTIONS(8572), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8572), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8572), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8572), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8572), - [anon_sym___deprecated_msg] = ACTIONS(8572), - [anon_sym___deprecated_enum_msg] = ACTIONS(8572), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8572), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8572), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8572), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8572), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3790] = { - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym_type_descriptor] = STATE(5438), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(1149), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(1149), - [sym_IMP] = ACTIONS(1149), - [sym_BOOL] = ACTIONS(1149), - [sym_auto] = ACTIONS(1149), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3791] = { - [sym_identifier] = ACTIONS(8584), - [anon_sym_COMMA] = ACTIONS(8586), - [anon_sym_RPAREN] = ACTIONS(8586), - [anon_sym_LPAREN2] = ACTIONS(8586), - [anon_sym_STAR] = ACTIONS(8586), - [anon_sym_GT] = ACTIONS(8586), - [anon_sym_SEMI] = ACTIONS(8586), - [anon_sym___attribute] = ACTIONS(8584), - [anon_sym___attribute__] = ACTIONS(8584), - [anon_sym___based] = ACTIONS(8584), - [anon_sym_LBRACE] = ACTIONS(8586), - [anon_sym_LBRACK] = ACTIONS(8586), - [anon_sym_const] = ACTIONS(8584), - [anon_sym_volatile] = ACTIONS(8584), - [anon_sym_restrict] = ACTIONS(8584), - [anon_sym__Atomic] = ACTIONS(8584), - [anon_sym_in] = ACTIONS(8584), - [anon_sym_out] = ACTIONS(8584), - [anon_sym_inout] = ACTIONS(8584), - [anon_sym_bycopy] = ACTIONS(8584), - [anon_sym_byref] = ACTIONS(8584), - [anon_sym_oneway] = ACTIONS(8584), - [anon_sym__Nullable] = ACTIONS(8584), - [anon_sym__Nonnull] = ACTIONS(8584), - [anon_sym__Nullable_result] = ACTIONS(8584), - [anon_sym__Null_unspecified] = ACTIONS(8584), - [anon_sym___autoreleasing] = ACTIONS(8584), - [anon_sym___nullable] = ACTIONS(8584), - [anon_sym___nonnull] = ACTIONS(8584), - [anon_sym___strong] = ACTIONS(8584), - [anon_sym___weak] = ACTIONS(8584), - [anon_sym___bridge] = ACTIONS(8584), - [anon_sym___bridge_transfer] = ACTIONS(8584), - [anon_sym___bridge_retained] = ACTIONS(8584), - [anon_sym___unsafe_unretained] = ACTIONS(8584), - [anon_sym___block] = ACTIONS(8584), - [anon_sym___kindof] = ACTIONS(8584), - [anon_sym___unused] = ACTIONS(8584), - [anon_sym__Complex] = ACTIONS(8584), - [anon_sym___complex] = ACTIONS(8584), - [anon_sym_IBOutlet] = ACTIONS(8584), - [anon_sym_IBInspectable] = ACTIONS(8584), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8584), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8584), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8584), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8584), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8584), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8584), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8584), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8584), - [anon_sym_NS_AVAILABLE] = ACTIONS(8584), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8584), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8584), - [anon_sym_API_AVAILABLE] = ACTIONS(8584), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8584), - [anon_sym_API_DEPRECATED] = ACTIONS(8584), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8584), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8584), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8584), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8584), - [anon_sym___deprecated_msg] = ACTIONS(8584), - [anon_sym___deprecated_enum_msg] = ACTIONS(8584), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8584), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8584), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8584), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8584), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3792] = { - [sym_identifier] = ACTIONS(8588), - [anon_sym_COMMA] = ACTIONS(8590), - [anon_sym_RPAREN] = ACTIONS(8590), - [anon_sym_LPAREN2] = ACTIONS(8590), - [anon_sym_STAR] = ACTIONS(8590), - [anon_sym_GT] = ACTIONS(8590), - [anon_sym_SEMI] = ACTIONS(8590), - [anon_sym___attribute] = ACTIONS(8588), - [anon_sym___attribute__] = ACTIONS(8588), - [anon_sym___based] = ACTIONS(8588), - [anon_sym_LBRACE] = ACTIONS(8590), - [anon_sym_LBRACK] = ACTIONS(8590), - [anon_sym_const] = ACTIONS(8588), - [anon_sym_volatile] = ACTIONS(8588), - [anon_sym_restrict] = ACTIONS(8588), - [anon_sym__Atomic] = ACTIONS(8588), - [anon_sym_in] = ACTIONS(8588), - [anon_sym_out] = ACTIONS(8588), - [anon_sym_inout] = ACTIONS(8588), - [anon_sym_bycopy] = ACTIONS(8588), - [anon_sym_byref] = ACTIONS(8588), - [anon_sym_oneway] = ACTIONS(8588), - [anon_sym__Nullable] = ACTIONS(8588), - [anon_sym__Nonnull] = ACTIONS(8588), - [anon_sym__Nullable_result] = ACTIONS(8588), - [anon_sym__Null_unspecified] = ACTIONS(8588), - [anon_sym___autoreleasing] = ACTIONS(8588), - [anon_sym___nullable] = ACTIONS(8588), - [anon_sym___nonnull] = ACTIONS(8588), - [anon_sym___strong] = ACTIONS(8588), - [anon_sym___weak] = ACTIONS(8588), - [anon_sym___bridge] = ACTIONS(8588), - [anon_sym___bridge_transfer] = ACTIONS(8588), - [anon_sym___bridge_retained] = ACTIONS(8588), - [anon_sym___unsafe_unretained] = ACTIONS(8588), - [anon_sym___block] = ACTIONS(8588), - [anon_sym___kindof] = ACTIONS(8588), - [anon_sym___unused] = ACTIONS(8588), - [anon_sym__Complex] = ACTIONS(8588), - [anon_sym___complex] = ACTIONS(8588), - [anon_sym_IBOutlet] = ACTIONS(8588), - [anon_sym_IBInspectable] = ACTIONS(8588), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8588), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8588), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8588), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8588), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8588), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8588), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8588), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8588), - [anon_sym_NS_AVAILABLE] = ACTIONS(8588), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8588), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8588), - [anon_sym_API_AVAILABLE] = ACTIONS(8588), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8588), - [anon_sym_API_DEPRECATED] = ACTIONS(8588), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8588), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8588), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8588), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8588), - [anon_sym___deprecated_msg] = ACTIONS(8588), - [anon_sym___deprecated_enum_msg] = ACTIONS(8588), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8588), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8588), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8588), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8588), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3793] = { - [sym_identifier] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6861), - [anon_sym_RPAREN] = ACTIONS(6861), - [anon_sym_LPAREN2] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(6861), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_SEMI] = ACTIONS(6861), - [anon_sym___attribute] = ACTIONS(6859), - [anon_sym___attribute__] = ACTIONS(6859), - [anon_sym___based] = ACTIONS(6859), - [anon_sym_LBRACE] = ACTIONS(6861), - [anon_sym_LBRACK] = ACTIONS(6861), - [anon_sym_const] = ACTIONS(6859), - [anon_sym_volatile] = ACTIONS(6859), - [anon_sym_restrict] = ACTIONS(6859), - [anon_sym__Atomic] = ACTIONS(6859), - [anon_sym_in] = ACTIONS(6859), - [anon_sym_out] = ACTIONS(6859), - [anon_sym_inout] = ACTIONS(6859), - [anon_sym_bycopy] = ACTIONS(6859), - [anon_sym_byref] = ACTIONS(6859), - [anon_sym_oneway] = ACTIONS(6859), - [anon_sym__Nullable] = ACTIONS(6859), - [anon_sym__Nonnull] = ACTIONS(6859), - [anon_sym__Nullable_result] = ACTIONS(6859), - [anon_sym__Null_unspecified] = ACTIONS(6859), - [anon_sym___autoreleasing] = ACTIONS(6859), - [anon_sym___nullable] = ACTIONS(6859), - [anon_sym___nonnull] = ACTIONS(6859), - [anon_sym___strong] = ACTIONS(6859), - [anon_sym___weak] = ACTIONS(6859), - [anon_sym___bridge] = ACTIONS(6859), - [anon_sym___bridge_transfer] = ACTIONS(6859), - [anon_sym___bridge_retained] = ACTIONS(6859), - [anon_sym___unsafe_unretained] = ACTIONS(6859), - [anon_sym___block] = ACTIONS(6859), - [anon_sym___kindof] = ACTIONS(6859), - [anon_sym___unused] = ACTIONS(6859), - [anon_sym__Complex] = ACTIONS(6859), - [anon_sym___complex] = ACTIONS(6859), - [anon_sym_IBOutlet] = ACTIONS(6859), - [anon_sym_IBInspectable] = ACTIONS(6859), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(6859), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6859), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6859), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(6859), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6859), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6859), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6859), - [anon_sym_NS_AVAILABLE] = ACTIONS(6859), - [anon_sym___IOS_AVAILABLE] = ACTIONS(6859), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6859), - [anon_sym_API_AVAILABLE] = ACTIONS(6859), - [anon_sym_API_UNAVAILABLE] = ACTIONS(6859), - [anon_sym_API_DEPRECATED] = ACTIONS(6859), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6859), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6859), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6859), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6859), - [anon_sym___deprecated_msg] = ACTIONS(6859), - [anon_sym___deprecated_enum_msg] = ACTIONS(6859), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6859), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6859), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6859), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6859), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3794] = { - [sym_identifier] = ACTIONS(8596), - [anon_sym_COMMA] = ACTIONS(8598), - [anon_sym_RPAREN] = ACTIONS(8598), - [anon_sym_LPAREN2] = ACTIONS(8598), - [anon_sym_STAR] = ACTIONS(8598), - [anon_sym_GT] = ACTIONS(8598), - [anon_sym_SEMI] = ACTIONS(8598), - [anon_sym___attribute] = ACTIONS(8596), - [anon_sym___attribute__] = ACTIONS(8596), - [anon_sym___based] = ACTIONS(8596), - [anon_sym_LBRACE] = ACTIONS(8598), - [anon_sym_LBRACK] = ACTIONS(8598), - [anon_sym_const] = ACTIONS(8596), - [anon_sym_volatile] = ACTIONS(8596), - [anon_sym_restrict] = ACTIONS(8596), - [anon_sym__Atomic] = ACTIONS(8596), - [anon_sym_in] = ACTIONS(8596), - [anon_sym_out] = ACTIONS(8596), - [anon_sym_inout] = ACTIONS(8596), - [anon_sym_bycopy] = ACTIONS(8596), - [anon_sym_byref] = ACTIONS(8596), - [anon_sym_oneway] = ACTIONS(8596), - [anon_sym__Nullable] = ACTIONS(8596), - [anon_sym__Nonnull] = ACTIONS(8596), - [anon_sym__Nullable_result] = ACTIONS(8596), - [anon_sym__Null_unspecified] = ACTIONS(8596), - [anon_sym___autoreleasing] = ACTIONS(8596), - [anon_sym___nullable] = ACTIONS(8596), - [anon_sym___nonnull] = ACTIONS(8596), - [anon_sym___strong] = ACTIONS(8596), - [anon_sym___weak] = ACTIONS(8596), - [anon_sym___bridge] = ACTIONS(8596), - [anon_sym___bridge_transfer] = ACTIONS(8596), - [anon_sym___bridge_retained] = ACTIONS(8596), - [anon_sym___unsafe_unretained] = ACTIONS(8596), - [anon_sym___block] = ACTIONS(8596), - [anon_sym___kindof] = ACTIONS(8596), - [anon_sym___unused] = ACTIONS(8596), - [anon_sym__Complex] = ACTIONS(8596), - [anon_sym___complex] = ACTIONS(8596), - [anon_sym_IBOutlet] = ACTIONS(8596), - [anon_sym_IBInspectable] = ACTIONS(8596), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8596), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8596), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8596), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8596), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8596), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8596), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8596), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8596), - [anon_sym_NS_AVAILABLE] = ACTIONS(8596), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8596), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8596), - [anon_sym_API_AVAILABLE] = ACTIONS(8596), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8596), - [anon_sym_API_DEPRECATED] = ACTIONS(8596), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8596), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8596), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8596), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8596), - [anon_sym___deprecated_msg] = ACTIONS(8596), - [anon_sym___deprecated_enum_msg] = ACTIONS(8596), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8596), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8596), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8596), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8596), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3795] = { - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym_type_descriptor] = STATE(5616), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(1149), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(1149), - [sym_IMP] = ACTIONS(1149), - [sym_BOOL] = ACTIONS(1149), - [sym_auto] = ACTIONS(1149), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3796] = { - [sym_identifier] = ACTIONS(8632), - [anon_sym_COMMA] = ACTIONS(8634), - [anon_sym_RPAREN] = ACTIONS(8634), - [anon_sym_LPAREN2] = ACTIONS(8634), - [anon_sym_STAR] = ACTIONS(8634), - [anon_sym_GT] = ACTIONS(8634), - [anon_sym_SEMI] = ACTIONS(8634), - [anon_sym___attribute] = ACTIONS(8632), - [anon_sym___attribute__] = ACTIONS(8632), - [anon_sym___based] = ACTIONS(8632), - [anon_sym_LBRACE] = ACTIONS(8634), - [anon_sym_LBRACK] = ACTIONS(8634), - [anon_sym_const] = ACTIONS(8632), - [anon_sym_volatile] = ACTIONS(8632), - [anon_sym_restrict] = ACTIONS(8632), - [anon_sym__Atomic] = ACTIONS(8632), - [anon_sym_in] = ACTIONS(8632), - [anon_sym_out] = ACTIONS(8632), - [anon_sym_inout] = ACTIONS(8632), - [anon_sym_bycopy] = ACTIONS(8632), - [anon_sym_byref] = ACTIONS(8632), - [anon_sym_oneway] = ACTIONS(8632), - [anon_sym__Nullable] = ACTIONS(8632), - [anon_sym__Nonnull] = ACTIONS(8632), - [anon_sym__Nullable_result] = ACTIONS(8632), - [anon_sym__Null_unspecified] = ACTIONS(8632), - [anon_sym___autoreleasing] = ACTIONS(8632), - [anon_sym___nullable] = ACTIONS(8632), - [anon_sym___nonnull] = ACTIONS(8632), - [anon_sym___strong] = ACTIONS(8632), - [anon_sym___weak] = ACTIONS(8632), - [anon_sym___bridge] = ACTIONS(8632), - [anon_sym___bridge_transfer] = ACTIONS(8632), - [anon_sym___bridge_retained] = ACTIONS(8632), - [anon_sym___unsafe_unretained] = ACTIONS(8632), - [anon_sym___block] = ACTIONS(8632), - [anon_sym___kindof] = ACTIONS(8632), - [anon_sym___unused] = ACTIONS(8632), - [anon_sym__Complex] = ACTIONS(8632), - [anon_sym___complex] = ACTIONS(8632), - [anon_sym_IBOutlet] = ACTIONS(8632), - [anon_sym_IBInspectable] = ACTIONS(8632), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8632), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8632), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8632), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8632), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8632), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8632), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8632), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8632), - [anon_sym_NS_AVAILABLE] = ACTIONS(8632), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8632), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8632), - [anon_sym_API_AVAILABLE] = ACTIONS(8632), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8632), - [anon_sym_API_DEPRECATED] = ACTIONS(8632), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8632), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8632), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8632), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8632), - [anon_sym___deprecated_msg] = ACTIONS(8632), - [anon_sym___deprecated_enum_msg] = ACTIONS(8632), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8632), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8632), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8632), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8632), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3797] = { - [sym_identifier] = ACTIONS(8452), - [anon_sym_COMMA] = ACTIONS(8454), - [anon_sym_RPAREN] = ACTIONS(8454), - [anon_sym_LPAREN2] = ACTIONS(8454), - [anon_sym_STAR] = ACTIONS(8454), - [anon_sym_GT] = ACTIONS(8454), - [anon_sym_SEMI] = ACTIONS(8454), - [anon_sym___attribute] = ACTIONS(8452), - [anon_sym___attribute__] = ACTIONS(8452), - [anon_sym___based] = ACTIONS(8452), - [anon_sym_LBRACE] = ACTIONS(8454), - [anon_sym_LBRACK] = ACTIONS(8454), - [anon_sym_const] = ACTIONS(8452), - [anon_sym_volatile] = ACTIONS(8452), - [anon_sym_restrict] = ACTIONS(8452), - [anon_sym__Atomic] = ACTIONS(8452), - [anon_sym_in] = ACTIONS(8452), - [anon_sym_out] = ACTIONS(8452), - [anon_sym_inout] = ACTIONS(8452), - [anon_sym_bycopy] = ACTIONS(8452), - [anon_sym_byref] = ACTIONS(8452), - [anon_sym_oneway] = ACTIONS(8452), - [anon_sym__Nullable] = ACTIONS(8452), - [anon_sym__Nonnull] = ACTIONS(8452), - [anon_sym__Nullable_result] = ACTIONS(8452), - [anon_sym__Null_unspecified] = ACTIONS(8452), - [anon_sym___autoreleasing] = ACTIONS(8452), - [anon_sym___nullable] = ACTIONS(8452), - [anon_sym___nonnull] = ACTIONS(8452), - [anon_sym___strong] = ACTIONS(8452), - [anon_sym___weak] = ACTIONS(8452), - [anon_sym___bridge] = ACTIONS(8452), - [anon_sym___bridge_transfer] = ACTIONS(8452), - [anon_sym___bridge_retained] = ACTIONS(8452), - [anon_sym___unsafe_unretained] = ACTIONS(8452), - [anon_sym___block] = ACTIONS(8452), - [anon_sym___kindof] = ACTIONS(8452), - [anon_sym___unused] = ACTIONS(8452), - [anon_sym__Complex] = ACTIONS(8452), - [anon_sym___complex] = ACTIONS(8452), - [anon_sym_IBOutlet] = ACTIONS(8452), - [anon_sym_IBInspectable] = ACTIONS(8452), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8452), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8452), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8452), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8452), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8452), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8452), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8452), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8452), - [anon_sym_NS_AVAILABLE] = ACTIONS(8452), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8452), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8452), - [anon_sym_API_AVAILABLE] = ACTIONS(8452), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8452), - [anon_sym_API_DEPRECATED] = ACTIONS(8452), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8452), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8452), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8452), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8452), - [anon_sym___deprecated_msg] = ACTIONS(8452), - [anon_sym___deprecated_enum_msg] = ACTIONS(8452), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8452), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8452), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8452), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8452), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3798] = { - [sym_identifier] = ACTIONS(8600), - [anon_sym_COMMA] = ACTIONS(8602), - [anon_sym_RPAREN] = ACTIONS(8602), - [anon_sym_LPAREN2] = ACTIONS(8602), - [anon_sym_STAR] = ACTIONS(8602), - [anon_sym_GT] = ACTIONS(8602), - [anon_sym_SEMI] = ACTIONS(8602), - [anon_sym___attribute] = ACTIONS(8600), - [anon_sym___attribute__] = ACTIONS(8600), - [anon_sym___based] = ACTIONS(8600), - [anon_sym_LBRACE] = ACTIONS(8602), - [anon_sym_LBRACK] = ACTIONS(8602), - [anon_sym_const] = ACTIONS(8600), - [anon_sym_volatile] = ACTIONS(8600), - [anon_sym_restrict] = ACTIONS(8600), - [anon_sym__Atomic] = ACTIONS(8600), - [anon_sym_in] = ACTIONS(8600), - [anon_sym_out] = ACTIONS(8600), - [anon_sym_inout] = ACTIONS(8600), - [anon_sym_bycopy] = ACTIONS(8600), - [anon_sym_byref] = ACTIONS(8600), - [anon_sym_oneway] = ACTIONS(8600), - [anon_sym__Nullable] = ACTIONS(8600), - [anon_sym__Nonnull] = ACTIONS(8600), - [anon_sym__Nullable_result] = ACTIONS(8600), - [anon_sym__Null_unspecified] = ACTIONS(8600), - [anon_sym___autoreleasing] = ACTIONS(8600), - [anon_sym___nullable] = ACTIONS(8600), - [anon_sym___nonnull] = ACTIONS(8600), - [anon_sym___strong] = ACTIONS(8600), - [anon_sym___weak] = ACTIONS(8600), - [anon_sym___bridge] = ACTIONS(8600), - [anon_sym___bridge_transfer] = ACTIONS(8600), - [anon_sym___bridge_retained] = ACTIONS(8600), - [anon_sym___unsafe_unretained] = ACTIONS(8600), - [anon_sym___block] = ACTIONS(8600), - [anon_sym___kindof] = ACTIONS(8600), - [anon_sym___unused] = ACTIONS(8600), - [anon_sym__Complex] = ACTIONS(8600), - [anon_sym___complex] = ACTIONS(8600), - [anon_sym_IBOutlet] = ACTIONS(8600), - [anon_sym_IBInspectable] = ACTIONS(8600), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8600), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8600), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8600), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8600), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8600), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8600), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8600), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8600), - [anon_sym_NS_AVAILABLE] = ACTIONS(8600), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8600), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8600), - [anon_sym_API_AVAILABLE] = ACTIONS(8600), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8600), - [anon_sym_API_DEPRECATED] = ACTIONS(8600), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8600), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8600), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8600), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8600), - [anon_sym___deprecated_msg] = ACTIONS(8600), - [anon_sym___deprecated_enum_msg] = ACTIONS(8600), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8600), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8600), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8600), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8600), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3799] = { - [sym_identifier] = ACTIONS(8499), - [anon_sym_COMMA] = ACTIONS(8501), - [anon_sym_RPAREN] = ACTIONS(8501), - [anon_sym_LPAREN2] = ACTIONS(8501), - [anon_sym_STAR] = ACTIONS(8501), - [anon_sym_GT] = ACTIONS(8501), - [anon_sym_SEMI] = ACTIONS(8501), - [anon_sym___attribute] = ACTIONS(8499), - [anon_sym___attribute__] = ACTIONS(8499), - [anon_sym___based] = ACTIONS(8499), - [anon_sym_LBRACE] = ACTIONS(8501), - [anon_sym_LBRACK] = ACTIONS(8501), - [anon_sym_const] = ACTIONS(8499), - [anon_sym_volatile] = ACTIONS(8499), - [anon_sym_restrict] = ACTIONS(8499), - [anon_sym__Atomic] = ACTIONS(8499), - [anon_sym_in] = ACTIONS(8499), - [anon_sym_out] = ACTIONS(8499), - [anon_sym_inout] = ACTIONS(8499), - [anon_sym_bycopy] = ACTIONS(8499), - [anon_sym_byref] = ACTIONS(8499), - [anon_sym_oneway] = ACTIONS(8499), - [anon_sym__Nullable] = ACTIONS(8499), - [anon_sym__Nonnull] = ACTIONS(8499), - [anon_sym__Nullable_result] = ACTIONS(8499), - [anon_sym__Null_unspecified] = ACTIONS(8499), - [anon_sym___autoreleasing] = ACTIONS(8499), - [anon_sym___nullable] = ACTIONS(8499), - [anon_sym___nonnull] = ACTIONS(8499), - [anon_sym___strong] = ACTIONS(8499), - [anon_sym___weak] = ACTIONS(8499), - [anon_sym___bridge] = ACTIONS(8499), - [anon_sym___bridge_transfer] = ACTIONS(8499), - [anon_sym___bridge_retained] = ACTIONS(8499), - [anon_sym___unsafe_unretained] = ACTIONS(8499), - [anon_sym___block] = ACTIONS(8499), - [anon_sym___kindof] = ACTIONS(8499), - [anon_sym___unused] = ACTIONS(8499), - [anon_sym__Complex] = ACTIONS(8499), - [anon_sym___complex] = ACTIONS(8499), - [anon_sym_IBOutlet] = ACTIONS(8499), - [anon_sym_IBInspectable] = ACTIONS(8499), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8499), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8499), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8499), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8499), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8499), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8499), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8499), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8499), - [anon_sym_NS_AVAILABLE] = ACTIONS(8499), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8499), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8499), - [anon_sym_API_AVAILABLE] = ACTIONS(8499), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8499), - [anon_sym_API_DEPRECATED] = ACTIONS(8499), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8499), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8499), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8499), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8499), - [anon_sym___deprecated_msg] = ACTIONS(8499), - [anon_sym___deprecated_enum_msg] = ACTIONS(8499), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8499), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8499), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8499), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8499), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3800] = { - [sym_identifier] = ACTIONS(8293), - [anon_sym_COMMA] = ACTIONS(8295), - [anon_sym_RPAREN] = ACTIONS(8295), - [anon_sym_LPAREN2] = ACTIONS(8295), - [anon_sym_STAR] = ACTIONS(8295), - [anon_sym_GT] = ACTIONS(8295), - [anon_sym_SEMI] = ACTIONS(8295), - [anon_sym___attribute] = ACTIONS(8293), - [anon_sym___attribute__] = ACTIONS(8293), - [anon_sym___based] = ACTIONS(8293), - [anon_sym_LBRACE] = ACTIONS(8295), - [anon_sym_LBRACK] = ACTIONS(8295), - [anon_sym_const] = ACTIONS(8293), - [anon_sym_volatile] = ACTIONS(8293), - [anon_sym_restrict] = ACTIONS(8293), - [anon_sym__Atomic] = ACTIONS(8293), - [anon_sym_in] = ACTIONS(8293), - [anon_sym_out] = ACTIONS(8293), - [anon_sym_inout] = ACTIONS(8293), - [anon_sym_bycopy] = ACTIONS(8293), - [anon_sym_byref] = ACTIONS(8293), - [anon_sym_oneway] = ACTIONS(8293), - [anon_sym__Nullable] = ACTIONS(8293), - [anon_sym__Nonnull] = ACTIONS(8293), - [anon_sym__Nullable_result] = ACTIONS(8293), - [anon_sym__Null_unspecified] = ACTIONS(8293), - [anon_sym___autoreleasing] = ACTIONS(8293), - [anon_sym___nullable] = ACTIONS(8293), - [anon_sym___nonnull] = ACTIONS(8293), - [anon_sym___strong] = ACTIONS(8293), - [anon_sym___weak] = ACTIONS(8293), - [anon_sym___bridge] = ACTIONS(8293), - [anon_sym___bridge_transfer] = ACTIONS(8293), - [anon_sym___bridge_retained] = ACTIONS(8293), - [anon_sym___unsafe_unretained] = ACTIONS(8293), - [anon_sym___block] = ACTIONS(8293), - [anon_sym___kindof] = ACTIONS(8293), - [anon_sym___unused] = ACTIONS(8293), - [anon_sym__Complex] = ACTIONS(8293), - [anon_sym___complex] = ACTIONS(8293), - [anon_sym_IBOutlet] = ACTIONS(8293), - [anon_sym_IBInspectable] = ACTIONS(8293), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8293), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8293), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8293), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8293), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8293), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8293), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8293), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8293), - [anon_sym_NS_AVAILABLE] = ACTIONS(8293), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8293), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8293), - [anon_sym_API_AVAILABLE] = ACTIONS(8293), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8293), - [anon_sym_API_DEPRECATED] = ACTIONS(8293), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8293), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8293), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8293), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8293), - [anon_sym___deprecated_msg] = ACTIONS(8293), - [anon_sym___deprecated_enum_msg] = ACTIONS(8293), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8293), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8293), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8293), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8293), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3801] = { - [sym_identifier] = ACTIONS(8488), - [anon_sym_COMMA] = ACTIONS(8490), - [anon_sym_RPAREN] = ACTIONS(8490), - [anon_sym_LPAREN2] = ACTIONS(8490), - [anon_sym_STAR] = ACTIONS(8490), - [anon_sym_GT] = ACTIONS(8490), - [anon_sym_SEMI] = ACTIONS(8490), - [anon_sym___attribute] = ACTIONS(8488), - [anon_sym___attribute__] = ACTIONS(8488), - [anon_sym___based] = ACTIONS(8488), - [anon_sym_LBRACE] = ACTIONS(8490), - [anon_sym_LBRACK] = ACTIONS(8490), - [anon_sym_const] = ACTIONS(8488), - [anon_sym_volatile] = ACTIONS(8488), - [anon_sym_restrict] = ACTIONS(8488), - [anon_sym__Atomic] = ACTIONS(8488), - [anon_sym_in] = ACTIONS(8488), - [anon_sym_out] = ACTIONS(8488), - [anon_sym_inout] = ACTIONS(8488), - [anon_sym_bycopy] = ACTIONS(8488), - [anon_sym_byref] = ACTIONS(8488), - [anon_sym_oneway] = ACTIONS(8488), - [anon_sym__Nullable] = ACTIONS(8488), - [anon_sym__Nonnull] = ACTIONS(8488), - [anon_sym__Nullable_result] = ACTIONS(8488), - [anon_sym__Null_unspecified] = ACTIONS(8488), - [anon_sym___autoreleasing] = ACTIONS(8488), - [anon_sym___nullable] = ACTIONS(8488), - [anon_sym___nonnull] = ACTIONS(8488), - [anon_sym___strong] = ACTIONS(8488), - [anon_sym___weak] = ACTIONS(8488), - [anon_sym___bridge] = ACTIONS(8488), - [anon_sym___bridge_transfer] = ACTIONS(8488), - [anon_sym___bridge_retained] = ACTIONS(8488), - [anon_sym___unsafe_unretained] = ACTIONS(8488), - [anon_sym___block] = ACTIONS(8488), - [anon_sym___kindof] = ACTIONS(8488), - [anon_sym___unused] = ACTIONS(8488), - [anon_sym__Complex] = ACTIONS(8488), - [anon_sym___complex] = ACTIONS(8488), - [anon_sym_IBOutlet] = ACTIONS(8488), - [anon_sym_IBInspectable] = ACTIONS(8488), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8488), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8488), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8488), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8488), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8488), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8488), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8488), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8488), - [anon_sym_NS_AVAILABLE] = ACTIONS(8488), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8488), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8488), - [anon_sym_API_AVAILABLE] = ACTIONS(8488), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8488), - [anon_sym_API_DEPRECATED] = ACTIONS(8488), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8488), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8488), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8488), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8488), - [anon_sym___deprecated_msg] = ACTIONS(8488), - [anon_sym___deprecated_enum_msg] = ACTIONS(8488), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8488), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8488), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8488), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8488), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3802] = { - [sym_identifier] = ACTIONS(8640), - [anon_sym_COMMA] = ACTIONS(8642), - [anon_sym_RPAREN] = ACTIONS(8642), - [anon_sym_LPAREN2] = ACTIONS(8642), - [anon_sym_STAR] = ACTIONS(8642), - [anon_sym_GT] = ACTIONS(8642), - [anon_sym_SEMI] = ACTIONS(8642), - [anon_sym___attribute] = ACTIONS(8640), - [anon_sym___attribute__] = ACTIONS(8640), - [anon_sym___based] = ACTIONS(8640), - [anon_sym_LBRACE] = ACTIONS(8642), - [anon_sym_LBRACK] = ACTIONS(8642), - [anon_sym_const] = ACTIONS(8640), - [anon_sym_volatile] = ACTIONS(8640), - [anon_sym_restrict] = ACTIONS(8640), - [anon_sym__Atomic] = ACTIONS(8640), - [anon_sym_in] = ACTIONS(8640), - [anon_sym_out] = ACTIONS(8640), - [anon_sym_inout] = ACTIONS(8640), - [anon_sym_bycopy] = ACTIONS(8640), - [anon_sym_byref] = ACTIONS(8640), - [anon_sym_oneway] = ACTIONS(8640), - [anon_sym__Nullable] = ACTIONS(8640), - [anon_sym__Nonnull] = ACTIONS(8640), - [anon_sym__Nullable_result] = ACTIONS(8640), - [anon_sym__Null_unspecified] = ACTIONS(8640), - [anon_sym___autoreleasing] = ACTIONS(8640), - [anon_sym___nullable] = ACTIONS(8640), - [anon_sym___nonnull] = ACTIONS(8640), - [anon_sym___strong] = ACTIONS(8640), - [anon_sym___weak] = ACTIONS(8640), - [anon_sym___bridge] = ACTIONS(8640), - [anon_sym___bridge_transfer] = ACTIONS(8640), - [anon_sym___bridge_retained] = ACTIONS(8640), - [anon_sym___unsafe_unretained] = ACTIONS(8640), - [anon_sym___block] = ACTIONS(8640), - [anon_sym___kindof] = ACTIONS(8640), - [anon_sym___unused] = ACTIONS(8640), - [anon_sym__Complex] = ACTIONS(8640), - [anon_sym___complex] = ACTIONS(8640), - [anon_sym_IBOutlet] = ACTIONS(8640), - [anon_sym_IBInspectable] = ACTIONS(8640), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8640), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8640), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8640), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8640), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8640), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8640), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8640), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8640), - [anon_sym_NS_AVAILABLE] = ACTIONS(8640), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8640), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8640), - [anon_sym_API_AVAILABLE] = ACTIONS(8640), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8640), - [anon_sym_API_DEPRECATED] = ACTIONS(8640), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8640), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8640), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8640), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8640), - [anon_sym___deprecated_msg] = ACTIONS(8640), - [anon_sym___deprecated_enum_msg] = ACTIONS(8640), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8640), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8640), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8640), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8640), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3803] = { - [sym_identifier] = ACTIONS(8580), - [anon_sym_COMMA] = ACTIONS(8582), - [anon_sym_RPAREN] = ACTIONS(8582), - [anon_sym_LPAREN2] = ACTIONS(8582), - [anon_sym_STAR] = ACTIONS(8582), - [anon_sym_GT] = ACTIONS(8582), - [anon_sym_SEMI] = ACTIONS(8582), - [anon_sym___attribute] = ACTIONS(8580), - [anon_sym___attribute__] = ACTIONS(8580), - [anon_sym___based] = ACTIONS(8580), - [anon_sym_LBRACE] = ACTIONS(8582), - [anon_sym_LBRACK] = ACTIONS(8582), - [anon_sym_const] = ACTIONS(8580), - [anon_sym_volatile] = ACTIONS(8580), - [anon_sym_restrict] = ACTIONS(8580), - [anon_sym__Atomic] = ACTIONS(8580), - [anon_sym_in] = ACTIONS(8580), - [anon_sym_out] = ACTIONS(8580), - [anon_sym_inout] = ACTIONS(8580), - [anon_sym_bycopy] = ACTIONS(8580), - [anon_sym_byref] = ACTIONS(8580), - [anon_sym_oneway] = ACTIONS(8580), - [anon_sym__Nullable] = ACTIONS(8580), - [anon_sym__Nonnull] = ACTIONS(8580), - [anon_sym__Nullable_result] = ACTIONS(8580), - [anon_sym__Null_unspecified] = ACTIONS(8580), - [anon_sym___autoreleasing] = ACTIONS(8580), - [anon_sym___nullable] = ACTIONS(8580), - [anon_sym___nonnull] = ACTIONS(8580), - [anon_sym___strong] = ACTIONS(8580), - [anon_sym___weak] = ACTIONS(8580), - [anon_sym___bridge] = ACTIONS(8580), - [anon_sym___bridge_transfer] = ACTIONS(8580), - [anon_sym___bridge_retained] = ACTIONS(8580), - [anon_sym___unsafe_unretained] = ACTIONS(8580), - [anon_sym___block] = ACTIONS(8580), - [anon_sym___kindof] = ACTIONS(8580), - [anon_sym___unused] = ACTIONS(8580), - [anon_sym__Complex] = ACTIONS(8580), - [anon_sym___complex] = ACTIONS(8580), - [anon_sym_IBOutlet] = ACTIONS(8580), - [anon_sym_IBInspectable] = ACTIONS(8580), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8580), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8580), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8580), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8580), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8580), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8580), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8580), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8580), - [anon_sym_NS_AVAILABLE] = ACTIONS(8580), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8580), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8580), - [anon_sym_API_AVAILABLE] = ACTIONS(8580), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8580), - [anon_sym_API_DEPRECATED] = ACTIONS(8580), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8580), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8580), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8580), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8580), - [anon_sym___deprecated_msg] = ACTIONS(8580), - [anon_sym___deprecated_enum_msg] = ACTIONS(8580), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8580), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8580), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8580), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8580), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3804] = { - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym_type_descriptor] = STATE(5398), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(1149), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(1149), - [sym_IMP] = ACTIONS(1149), - [sym_BOOL] = ACTIONS(1149), - [sym_auto] = ACTIONS(1149), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3805] = { - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym_type_descriptor] = STATE(5318), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(1149), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(1149), - [sym_IMP] = ACTIONS(1149), - [sym_BOOL] = ACTIONS(1149), - [sym_auto] = ACTIONS(1149), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3806] = { - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym_type_descriptor] = STATE(5762), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(1149), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(1149), - [sym_IMP] = ACTIONS(1149), - [sym_BOOL] = ACTIONS(1149), - [sym_auto] = ACTIONS(1149), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3807] = { - [sym_identifier] = ACTIONS(8289), - [anon_sym_COMMA] = ACTIONS(8291), - [anon_sym_RPAREN] = ACTIONS(8291), - [anon_sym_LPAREN2] = ACTIONS(8291), - [anon_sym_STAR] = ACTIONS(8291), - [anon_sym_GT] = ACTIONS(8291), - [anon_sym_SEMI] = ACTIONS(8291), - [anon_sym___attribute] = ACTIONS(8289), - [anon_sym___attribute__] = ACTIONS(8289), - [anon_sym___based] = ACTIONS(8289), - [anon_sym_LBRACE] = ACTIONS(8291), - [anon_sym_LBRACK] = ACTIONS(8291), - [anon_sym_const] = ACTIONS(8289), - [anon_sym_volatile] = ACTIONS(8289), - [anon_sym_restrict] = ACTIONS(8289), - [anon_sym__Atomic] = ACTIONS(8289), - [anon_sym_in] = ACTIONS(8289), - [anon_sym_out] = ACTIONS(8289), - [anon_sym_inout] = ACTIONS(8289), - [anon_sym_bycopy] = ACTIONS(8289), - [anon_sym_byref] = ACTIONS(8289), - [anon_sym_oneway] = ACTIONS(8289), - [anon_sym__Nullable] = ACTIONS(8289), - [anon_sym__Nonnull] = ACTIONS(8289), - [anon_sym__Nullable_result] = ACTIONS(8289), - [anon_sym__Null_unspecified] = ACTIONS(8289), - [anon_sym___autoreleasing] = ACTIONS(8289), - [anon_sym___nullable] = ACTIONS(8289), - [anon_sym___nonnull] = ACTIONS(8289), - [anon_sym___strong] = ACTIONS(8289), - [anon_sym___weak] = ACTIONS(8289), - [anon_sym___bridge] = ACTIONS(8289), - [anon_sym___bridge_transfer] = ACTIONS(8289), - [anon_sym___bridge_retained] = ACTIONS(8289), - [anon_sym___unsafe_unretained] = ACTIONS(8289), - [anon_sym___block] = ACTIONS(8289), - [anon_sym___kindof] = ACTIONS(8289), - [anon_sym___unused] = ACTIONS(8289), - [anon_sym__Complex] = ACTIONS(8289), - [anon_sym___complex] = ACTIONS(8289), - [anon_sym_IBOutlet] = ACTIONS(8289), - [anon_sym_IBInspectable] = ACTIONS(8289), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8289), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8289), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8289), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8289), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8289), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8289), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8289), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8289), - [anon_sym_NS_AVAILABLE] = ACTIONS(8289), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8289), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8289), - [anon_sym_API_AVAILABLE] = ACTIONS(8289), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8289), - [anon_sym_API_DEPRECATED] = ACTIONS(8289), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8289), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8289), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8289), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8289), - [anon_sym___deprecated_msg] = ACTIONS(8289), - [anon_sym___deprecated_enum_msg] = ACTIONS(8289), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8289), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8289), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8289), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8289), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3808] = { - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym_type_descriptor] = STATE(5422), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(1149), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(1149), - [sym_IMP] = ACTIONS(1149), - [sym_BOOL] = ACTIONS(1149), - [sym_auto] = ACTIONS(1149), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3809] = { - [sym_identifier] = ACTIONS(8396), - [anon_sym_COMMA] = ACTIONS(8398), - [anon_sym_RPAREN] = ACTIONS(8398), - [anon_sym_LPAREN2] = ACTIONS(8398), - [anon_sym_STAR] = ACTIONS(8398), - [anon_sym_GT] = ACTIONS(8398), - [anon_sym_SEMI] = ACTIONS(8398), - [anon_sym___attribute] = ACTIONS(8396), - [anon_sym___attribute__] = ACTIONS(8396), - [anon_sym___based] = ACTIONS(8396), - [anon_sym_LBRACE] = ACTIONS(8398), - [anon_sym_LBRACK] = ACTIONS(8398), - [anon_sym_const] = ACTIONS(8396), - [anon_sym_volatile] = ACTIONS(8396), - [anon_sym_restrict] = ACTIONS(8396), - [anon_sym__Atomic] = ACTIONS(8396), - [anon_sym_in] = ACTIONS(8396), - [anon_sym_out] = ACTIONS(8396), - [anon_sym_inout] = ACTIONS(8396), - [anon_sym_bycopy] = ACTIONS(8396), - [anon_sym_byref] = ACTIONS(8396), - [anon_sym_oneway] = ACTIONS(8396), - [anon_sym__Nullable] = ACTIONS(8396), - [anon_sym__Nonnull] = ACTIONS(8396), - [anon_sym__Nullable_result] = ACTIONS(8396), - [anon_sym__Null_unspecified] = ACTIONS(8396), - [anon_sym___autoreleasing] = ACTIONS(8396), - [anon_sym___nullable] = ACTIONS(8396), - [anon_sym___nonnull] = ACTIONS(8396), - [anon_sym___strong] = ACTIONS(8396), - [anon_sym___weak] = ACTIONS(8396), - [anon_sym___bridge] = ACTIONS(8396), - [anon_sym___bridge_transfer] = ACTIONS(8396), - [anon_sym___bridge_retained] = ACTIONS(8396), - [anon_sym___unsafe_unretained] = ACTIONS(8396), - [anon_sym___block] = ACTIONS(8396), - [anon_sym___kindof] = ACTIONS(8396), - [anon_sym___unused] = ACTIONS(8396), - [anon_sym__Complex] = ACTIONS(8396), - [anon_sym___complex] = ACTIONS(8396), - [anon_sym_IBOutlet] = ACTIONS(8396), - [anon_sym_IBInspectable] = ACTIONS(8396), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8396), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8396), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8396), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8396), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8396), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8396), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8396), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8396), - [anon_sym_NS_AVAILABLE] = ACTIONS(8396), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8396), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8396), - [anon_sym_API_AVAILABLE] = ACTIONS(8396), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8396), - [anon_sym_API_DEPRECATED] = ACTIONS(8396), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8396), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8396), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8396), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8396), - [anon_sym___deprecated_msg] = ACTIONS(8396), - [anon_sym___deprecated_enum_msg] = ACTIONS(8396), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8396), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8396), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8396), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8396), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3810] = { - [sym_identifier] = ACTIONS(8612), - [anon_sym_COMMA] = ACTIONS(8614), - [anon_sym_RPAREN] = ACTIONS(8614), - [anon_sym_LPAREN2] = ACTIONS(8614), - [anon_sym_STAR] = ACTIONS(8614), - [anon_sym_GT] = ACTIONS(8614), - [anon_sym_SEMI] = ACTIONS(8614), - [anon_sym___attribute] = ACTIONS(8612), - [anon_sym___attribute__] = ACTIONS(8612), - [anon_sym___based] = ACTIONS(8612), - [anon_sym_LBRACE] = ACTIONS(8614), - [anon_sym_LBRACK] = ACTIONS(8614), - [anon_sym_const] = ACTIONS(8612), - [anon_sym_volatile] = ACTIONS(8612), - [anon_sym_restrict] = ACTIONS(8612), - [anon_sym__Atomic] = ACTIONS(8612), - [anon_sym_in] = ACTIONS(8612), - [anon_sym_out] = ACTIONS(8612), - [anon_sym_inout] = ACTIONS(8612), - [anon_sym_bycopy] = ACTIONS(8612), - [anon_sym_byref] = ACTIONS(8612), - [anon_sym_oneway] = ACTIONS(8612), - [anon_sym__Nullable] = ACTIONS(8612), - [anon_sym__Nonnull] = ACTIONS(8612), - [anon_sym__Nullable_result] = ACTIONS(8612), - [anon_sym__Null_unspecified] = ACTIONS(8612), - [anon_sym___autoreleasing] = ACTIONS(8612), - [anon_sym___nullable] = ACTIONS(8612), - [anon_sym___nonnull] = ACTIONS(8612), - [anon_sym___strong] = ACTIONS(8612), - [anon_sym___weak] = ACTIONS(8612), - [anon_sym___bridge] = ACTIONS(8612), - [anon_sym___bridge_transfer] = ACTIONS(8612), - [anon_sym___bridge_retained] = ACTIONS(8612), - [anon_sym___unsafe_unretained] = ACTIONS(8612), - [anon_sym___block] = ACTIONS(8612), - [anon_sym___kindof] = ACTIONS(8612), - [anon_sym___unused] = ACTIONS(8612), - [anon_sym__Complex] = ACTIONS(8612), - [anon_sym___complex] = ACTIONS(8612), - [anon_sym_IBOutlet] = ACTIONS(8612), - [anon_sym_IBInspectable] = ACTIONS(8612), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8612), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8612), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8612), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8612), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8612), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8612), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8612), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8612), - [anon_sym_NS_AVAILABLE] = ACTIONS(8612), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8612), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8612), - [anon_sym_API_AVAILABLE] = ACTIONS(8612), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8612), - [anon_sym_API_DEPRECATED] = ACTIONS(8612), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8612), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8612), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8612), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8612), - [anon_sym___deprecated_msg] = ACTIONS(8612), - [anon_sym___deprecated_enum_msg] = ACTIONS(8612), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8612), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8612), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8612), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8612), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3811] = { - [sym_attribute_specifier] = STATE(3776), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_function_declarator_repeat1] = STATE(3776), - [anon_sym_COMMA] = ACTIONS(9035), - [anon_sym_LPAREN2] = ACTIONS(9035), - [anon_sym_SEMI] = ACTIONS(9035), - [anon_sym___attribute] = ACTIONS(9037), - [anon_sym___attribute__] = ACTIONS(9035), - [anon_sym_LBRACE] = ACTIONS(9035), - [anon_sym_LBRACK] = ACTIONS(9035), - [anon_sym_EQ] = ACTIONS(9035), - [anon_sym_const] = ACTIONS(9035), - [anon_sym_volatile] = ACTIONS(9035), - [anon_sym_restrict] = ACTIONS(9035), - [anon_sym__Atomic] = ACTIONS(9035), - [anon_sym_in] = ACTIONS(9037), - [anon_sym_out] = ACTIONS(9035), - [anon_sym_inout] = ACTIONS(9035), - [anon_sym_bycopy] = ACTIONS(9035), - [anon_sym_byref] = ACTIONS(9035), - [anon_sym_oneway] = ACTIONS(9035), - [anon_sym__Nullable] = ACTIONS(9037), - [anon_sym__Nonnull] = ACTIONS(9035), - [anon_sym__Nullable_result] = ACTIONS(9035), - [anon_sym__Null_unspecified] = ACTIONS(9035), - [anon_sym___autoreleasing] = ACTIONS(9035), - [anon_sym___nullable] = ACTIONS(9035), - [anon_sym___nonnull] = ACTIONS(9035), - [anon_sym___strong] = ACTIONS(9035), - [anon_sym___weak] = ACTIONS(9035), - [anon_sym___bridge] = ACTIONS(9037), - [anon_sym___bridge_transfer] = ACTIONS(9035), - [anon_sym___bridge_retained] = ACTIONS(9035), - [anon_sym___unsafe_unretained] = ACTIONS(9035), - [anon_sym___block] = ACTIONS(9035), - [anon_sym___kindof] = ACTIONS(9035), - [anon_sym___unused] = ACTIONS(9035), - [anon_sym__Complex] = ACTIONS(9035), - [anon_sym___complex] = ACTIONS(9035), - [anon_sym_IBOutlet] = ACTIONS(9035), - [anon_sym_IBInspectable] = ACTIONS(9035), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9035), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(9035), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9035), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9035), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(9035), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9035), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9035), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9035), - [anon_sym_NS_AVAILABLE] = ACTIONS(9037), - [anon_sym___IOS_AVAILABLE] = ACTIONS(9035), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9035), - [anon_sym_API_AVAILABLE] = ACTIONS(9035), - [anon_sym_API_UNAVAILABLE] = ACTIONS(9035), - [anon_sym_API_DEPRECATED] = ACTIONS(9035), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9035), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9035), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9035), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9035), - [anon_sym___deprecated_msg] = ACTIONS(9035), - [anon_sym___deprecated_enum_msg] = ACTIONS(9035), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9035), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9035), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9035), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9035), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3812] = { - [sym_identifier] = ACTIONS(8608), - [anon_sym_COMMA] = ACTIONS(8610), - [anon_sym_RPAREN] = ACTIONS(8610), - [anon_sym_LPAREN2] = ACTIONS(8610), - [anon_sym_STAR] = ACTIONS(8610), - [anon_sym_GT] = ACTIONS(8610), - [anon_sym_SEMI] = ACTIONS(8610), - [anon_sym___attribute] = ACTIONS(8608), - [anon_sym___attribute__] = ACTIONS(8608), - [anon_sym___based] = ACTIONS(8608), - [anon_sym_LBRACE] = ACTIONS(8610), - [anon_sym_LBRACK] = ACTIONS(8610), - [anon_sym_const] = ACTIONS(8608), - [anon_sym_volatile] = ACTIONS(8608), - [anon_sym_restrict] = ACTIONS(8608), - [anon_sym__Atomic] = ACTIONS(8608), - [anon_sym_in] = ACTIONS(8608), - [anon_sym_out] = ACTIONS(8608), - [anon_sym_inout] = ACTIONS(8608), - [anon_sym_bycopy] = ACTIONS(8608), - [anon_sym_byref] = ACTIONS(8608), - [anon_sym_oneway] = ACTIONS(8608), - [anon_sym__Nullable] = ACTIONS(8608), - [anon_sym__Nonnull] = ACTIONS(8608), - [anon_sym__Nullable_result] = ACTIONS(8608), - [anon_sym__Null_unspecified] = ACTIONS(8608), - [anon_sym___autoreleasing] = ACTIONS(8608), - [anon_sym___nullable] = ACTIONS(8608), - [anon_sym___nonnull] = ACTIONS(8608), - [anon_sym___strong] = ACTIONS(8608), - [anon_sym___weak] = ACTIONS(8608), - [anon_sym___bridge] = ACTIONS(8608), - [anon_sym___bridge_transfer] = ACTIONS(8608), - [anon_sym___bridge_retained] = ACTIONS(8608), - [anon_sym___unsafe_unretained] = ACTIONS(8608), - [anon_sym___block] = ACTIONS(8608), - [anon_sym___kindof] = ACTIONS(8608), - [anon_sym___unused] = ACTIONS(8608), - [anon_sym__Complex] = ACTIONS(8608), - [anon_sym___complex] = ACTIONS(8608), - [anon_sym_IBOutlet] = ACTIONS(8608), - [anon_sym_IBInspectable] = ACTIONS(8608), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8608), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8608), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8608), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8608), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8608), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8608), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8608), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8608), - [anon_sym_NS_AVAILABLE] = ACTIONS(8608), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8608), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8608), - [anon_sym_API_AVAILABLE] = ACTIONS(8608), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8608), - [anon_sym_API_DEPRECATED] = ACTIONS(8608), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8608), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8608), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8608), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8608), - [anon_sym___deprecated_msg] = ACTIONS(8608), - [anon_sym___deprecated_enum_msg] = ACTIONS(8608), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8608), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8608), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8608), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8608), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3813] = { - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym_type_descriptor] = STATE(4945), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(1149), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(1149), - [sym_IMP] = ACTIONS(1149), - [sym_BOOL] = ACTIONS(1149), - [sym_auto] = ACTIONS(1149), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3814] = { - [sym_identifier] = ACTIONS(8428), - [anon_sym_COMMA] = ACTIONS(8430), - [anon_sym_RPAREN] = ACTIONS(8430), - [anon_sym_LPAREN2] = ACTIONS(8430), - [anon_sym_STAR] = ACTIONS(8430), - [anon_sym_GT] = ACTIONS(8430), - [anon_sym_SEMI] = ACTIONS(8430), - [anon_sym___attribute] = ACTIONS(8428), - [anon_sym___attribute__] = ACTIONS(8428), - [anon_sym___based] = ACTIONS(8428), - [anon_sym_LBRACE] = ACTIONS(8430), - [anon_sym_LBRACK] = ACTIONS(8430), - [anon_sym_const] = ACTIONS(8428), - [anon_sym_volatile] = ACTIONS(8428), - [anon_sym_restrict] = ACTIONS(8428), - [anon_sym__Atomic] = ACTIONS(8428), - [anon_sym_in] = ACTIONS(8428), - [anon_sym_out] = ACTIONS(8428), - [anon_sym_inout] = ACTIONS(8428), - [anon_sym_bycopy] = ACTIONS(8428), - [anon_sym_byref] = ACTIONS(8428), - [anon_sym_oneway] = ACTIONS(8428), - [anon_sym__Nullable] = ACTIONS(8428), - [anon_sym__Nonnull] = ACTIONS(8428), - [anon_sym__Nullable_result] = ACTIONS(8428), - [anon_sym__Null_unspecified] = ACTIONS(8428), - [anon_sym___autoreleasing] = ACTIONS(8428), - [anon_sym___nullable] = ACTIONS(8428), - [anon_sym___nonnull] = ACTIONS(8428), - [anon_sym___strong] = ACTIONS(8428), - [anon_sym___weak] = ACTIONS(8428), - [anon_sym___bridge] = ACTIONS(8428), - [anon_sym___bridge_transfer] = ACTIONS(8428), - [anon_sym___bridge_retained] = ACTIONS(8428), - [anon_sym___unsafe_unretained] = ACTIONS(8428), - [anon_sym___block] = ACTIONS(8428), - [anon_sym___kindof] = ACTIONS(8428), - [anon_sym___unused] = ACTIONS(8428), - [anon_sym__Complex] = ACTIONS(8428), - [anon_sym___complex] = ACTIONS(8428), - [anon_sym_IBOutlet] = ACTIONS(8428), - [anon_sym_IBInspectable] = ACTIONS(8428), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8428), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8428), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8428), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8428), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8428), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8428), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8428), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8428), - [anon_sym_NS_AVAILABLE] = ACTIONS(8428), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8428), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8428), - [anon_sym_API_AVAILABLE] = ACTIONS(8428), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8428), - [anon_sym_API_DEPRECATED] = ACTIONS(8428), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8428), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8428), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8428), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8428), - [anon_sym___deprecated_msg] = ACTIONS(8428), - [anon_sym___deprecated_enum_msg] = ACTIONS(8428), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8428), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8428), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8428), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8428), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3815] = { - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym_type_descriptor] = STATE(5170), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(1149), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(1149), - [sym_IMP] = ACTIONS(1149), - [sym_BOOL] = ACTIONS(1149), - [sym_auto] = ACTIONS(1149), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3816] = { - [sym_type_qualifier] = STATE(3824), - [sym__type_specifier] = STATE(3957), - [sym_sized_type_specifier] = STATE(3957), - [sym_enum_specifier] = STATE(3957), - [sym_struct_specifier] = STATE(3957), - [sym_union_specifier] = STATE(3957), - [sym_type_descriptor] = STATE(5772), - [sym_macro_type_specifier] = STATE(3957), - [sym_typeof_specifier] = STATE(3957), - [sym_atomic_specifier] = STATE(3957), - [sym_generic_type_specifier] = STATE(3957), - [aux_sym_type_definition_repeat1] = STATE(3824), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(1149), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(1149), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(1149), - [sym_IMP] = ACTIONS(1149), - [sym_BOOL] = ACTIONS(1149), - [sym_auto] = ACTIONS(1149), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3817] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3518), - [sym_sized_type_specifier] = STATE(3518), - [sym_enum_specifier] = STATE(3518), - [sym_struct_specifier] = STATE(3518), - [sym_union_specifier] = STATE(3518), - [sym_macro_type_specifier] = STATE(3518), - [sym_typeof_specifier] = STATE(3518), - [sym_atomic_specifier] = STATE(3518), - [sym_generic_type_specifier] = STATE(3518), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(9039), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(9039), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(9039), - [sym_IMP] = ACTIONS(9039), - [sym_BOOL] = ACTIONS(9039), - [sym_auto] = ACTIONS(9039), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3818] = { - [sym_type_qualifier] = STATE(3837), - [sym__type_specifier] = STATE(3493), - [sym_sized_type_specifier] = STATE(3493), - [sym_enum_specifier] = STATE(3493), - [sym_struct_specifier] = STATE(3493), - [sym_union_specifier] = STATE(3493), - [sym_macro_type_specifier] = STATE(3493), - [sym_typeof_specifier] = STATE(3493), - [sym_atomic_specifier] = STATE(3493), - [sym_generic_type_specifier] = STATE(3493), - [aux_sym_type_definition_repeat1] = STATE(3837), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(9041), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(9041), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(9041), - [sym_IMP] = ACTIONS(9041), - [sym_BOOL] = ACTIONS(9041), - [sym_auto] = ACTIONS(9041), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3819] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3481), - [sym_sized_type_specifier] = STATE(3481), - [sym_enum_specifier] = STATE(3481), - [sym_struct_specifier] = STATE(3481), - [sym_union_specifier] = STATE(3481), - [sym_macro_type_specifier] = STATE(3481), - [sym_typeof_specifier] = STATE(3481), - [sym_atomic_specifier] = STATE(3481), - [sym_generic_type_specifier] = STATE(3481), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7766), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7766), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7766), - [sym_IMP] = ACTIONS(7766), - [sym_BOOL] = ACTIONS(7766), - [sym_auto] = ACTIONS(7766), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3820] = { - [sym_identifier] = ACTIONS(7322), - [anon_sym_COMMA] = ACTIONS(7324), - [anon_sym_LPAREN2] = ACTIONS(7324), - [anon_sym_STAR] = ACTIONS(7324), - [anon_sym_SEMI] = ACTIONS(7324), - [anon_sym___attribute] = ACTIONS(7322), - [anon_sym___attribute__] = ACTIONS(7322), - [anon_sym___based] = ACTIONS(7322), - [anon_sym_LBRACE] = ACTIONS(7324), - [anon_sym_LBRACK] = ACTIONS(7324), - [anon_sym_EQ] = ACTIONS(7324), - [anon_sym_const] = ACTIONS(7322), - [anon_sym_volatile] = ACTIONS(7322), - [anon_sym_restrict] = ACTIONS(7322), - [anon_sym__Atomic] = ACTIONS(7322), - [anon_sym_in] = ACTIONS(7322), - [anon_sym_out] = ACTIONS(7322), - [anon_sym_inout] = ACTIONS(7322), - [anon_sym_bycopy] = ACTIONS(7322), - [anon_sym_byref] = ACTIONS(7322), - [anon_sym_oneway] = ACTIONS(7322), - [anon_sym__Nullable] = ACTIONS(7322), - [anon_sym__Nonnull] = ACTIONS(7322), - [anon_sym__Nullable_result] = ACTIONS(7322), - [anon_sym__Null_unspecified] = ACTIONS(7322), - [anon_sym___autoreleasing] = ACTIONS(7322), - [anon_sym___nullable] = ACTIONS(7322), - [anon_sym___nonnull] = ACTIONS(7322), - [anon_sym___strong] = ACTIONS(7322), - [anon_sym___weak] = ACTIONS(7322), - [anon_sym___bridge] = ACTIONS(7322), - [anon_sym___bridge_transfer] = ACTIONS(7322), - [anon_sym___bridge_retained] = ACTIONS(7322), - [anon_sym___unsafe_unretained] = ACTIONS(7322), - [anon_sym___block] = ACTIONS(7322), - [anon_sym___kindof] = ACTIONS(7322), - [anon_sym___unused] = ACTIONS(7322), - [anon_sym__Complex] = ACTIONS(7322), - [anon_sym___complex] = ACTIONS(7322), - [anon_sym_IBOutlet] = ACTIONS(7322), - [anon_sym_IBInspectable] = ACTIONS(7322), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7322), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7322), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7322), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7322), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7322), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7322), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7322), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7322), - [anon_sym_NS_AVAILABLE] = ACTIONS(7322), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7322), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7322), - [anon_sym_API_AVAILABLE] = ACTIONS(7322), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7322), - [anon_sym_API_DEPRECATED] = ACTIONS(7322), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7322), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7322), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7322), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7322), - [anon_sym___deprecated_msg] = ACTIONS(7322), - [anon_sym___deprecated_enum_msg] = ACTIONS(7322), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7322), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7322), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7322), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7322), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3821] = { - [sym_identifier] = ACTIONS(2300), - [anon_sym_COMMA] = ACTIONS(7334), - [anon_sym_LPAREN2] = ACTIONS(7334), - [anon_sym_STAR] = ACTIONS(7334), - [anon_sym_SEMI] = ACTIONS(7334), - [anon_sym___attribute] = ACTIONS(2300), - [anon_sym___attribute__] = ACTIONS(2300), - [anon_sym___based] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(7334), - [anon_sym_LBRACK] = ACTIONS(7334), - [anon_sym_EQ] = ACTIONS(7334), - [anon_sym_const] = ACTIONS(2300), - [anon_sym_volatile] = ACTIONS(2300), - [anon_sym_restrict] = ACTIONS(2300), - [anon_sym__Atomic] = ACTIONS(2300), - [anon_sym_in] = ACTIONS(2300), - [anon_sym_out] = ACTIONS(2300), - [anon_sym_inout] = ACTIONS(2300), - [anon_sym_bycopy] = ACTIONS(2300), - [anon_sym_byref] = ACTIONS(2300), - [anon_sym_oneway] = ACTIONS(2300), - [anon_sym__Nullable] = ACTIONS(2300), - [anon_sym__Nonnull] = ACTIONS(2300), - [anon_sym__Nullable_result] = ACTIONS(2300), - [anon_sym__Null_unspecified] = ACTIONS(2300), - [anon_sym___autoreleasing] = ACTIONS(2300), - [anon_sym___nullable] = ACTIONS(2300), - [anon_sym___nonnull] = ACTIONS(2300), - [anon_sym___strong] = ACTIONS(2300), - [anon_sym___weak] = ACTIONS(2300), - [anon_sym___bridge] = ACTIONS(2300), - [anon_sym___bridge_transfer] = ACTIONS(2300), - [anon_sym___bridge_retained] = ACTIONS(2300), - [anon_sym___unsafe_unretained] = ACTIONS(2300), - [anon_sym___block] = ACTIONS(2300), - [anon_sym___kindof] = ACTIONS(2300), - [anon_sym___unused] = ACTIONS(2300), - [anon_sym__Complex] = ACTIONS(2300), - [anon_sym___complex] = ACTIONS(2300), - [anon_sym_IBOutlet] = ACTIONS(2300), - [anon_sym_IBInspectable] = ACTIONS(2300), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2300), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(2300), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2300), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2300), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE] = ACTIONS(2300), - [anon_sym___IOS_AVAILABLE] = ACTIONS(2300), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_API_AVAILABLE] = ACTIONS(2300), - [anon_sym_API_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_API_DEPRECATED] = ACTIONS(2300), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2300), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2300), - [anon_sym___deprecated_msg] = ACTIONS(2300), - [anon_sym___deprecated_enum_msg] = ACTIONS(2300), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2300), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2300), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2300), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3822] = { - [sym_type_qualifier] = STATE(3831), - [sym__type_specifier] = STATE(3481), - [sym_sized_type_specifier] = STATE(3481), - [sym_enum_specifier] = STATE(3481), - [sym_struct_specifier] = STATE(3481), - [sym_union_specifier] = STATE(3481), - [sym_macro_type_specifier] = STATE(3481), - [sym_typeof_specifier] = STATE(3481), - [sym_atomic_specifier] = STATE(3481), - [sym_generic_type_specifier] = STATE(3481), - [aux_sym_type_definition_repeat1] = STATE(3831), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7766), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7766), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7766), - [sym_IMP] = ACTIONS(7766), - [sym_BOOL] = ACTIONS(7766), - [sym_auto] = ACTIONS(7766), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3823] = { - [sym_type_qualifier] = STATE(3858), - [sym__type_specifier] = STATE(3465), - [sym_sized_type_specifier] = STATE(3465), - [sym_enum_specifier] = STATE(3465), - [sym_struct_specifier] = STATE(3465), - [sym_union_specifier] = STATE(3465), - [sym_macro_type_specifier] = STATE(3465), - [sym_typeof_specifier] = STATE(3465), - [sym_atomic_specifier] = STATE(3465), - [sym_generic_type_specifier] = STATE(3465), - [aux_sym_type_definition_repeat1] = STATE(3858), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(9043), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(9043), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(9043), - [sym_IMP] = ACTIONS(9043), - [sym_BOOL] = ACTIONS(9043), - [sym_auto] = ACTIONS(9043), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3824] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3958), - [sym_sized_type_specifier] = STATE(3958), - [sym_enum_specifier] = STATE(3958), - [sym_struct_specifier] = STATE(3958), - [sym_union_specifier] = STATE(3958), - [sym_macro_type_specifier] = STATE(3958), - [sym_typeof_specifier] = STATE(3958), - [sym_atomic_specifier] = STATE(3958), - [sym_generic_type_specifier] = STATE(3958), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(9045), - [anon_sym_enum] = ACTIONS(1151), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(9045), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(9045), - [sym_IMP] = ACTIONS(9045), - [sym_BOOL] = ACTIONS(9045), - [sym_auto] = ACTIONS(9045), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3825] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3609), - [sym_sized_type_specifier] = STATE(3609), - [sym_enum_specifier] = STATE(3609), - [sym_struct_specifier] = STATE(3609), - [sym_union_specifier] = STATE(3609), - [sym_macro_type_specifier] = STATE(3609), - [sym_typeof_specifier] = STATE(3609), - [sym_atomic_specifier] = STATE(3609), - [sym_generic_type_specifier] = STATE(3609), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7768), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7768), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7768), - [sym_IMP] = ACTIONS(7768), - [sym_BOOL] = ACTIONS(7768), - [sym_auto] = ACTIONS(7768), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3826] = { - [sym_type_qualifier] = STATE(3839), - [sym__type_specifier] = STATE(3609), - [sym_sized_type_specifier] = STATE(3609), - [sym_enum_specifier] = STATE(3609), - [sym_struct_specifier] = STATE(3609), - [sym_union_specifier] = STATE(3609), - [sym_macro_type_specifier] = STATE(3609), - [sym_typeof_specifier] = STATE(3609), - [sym_atomic_specifier] = STATE(3609), - [sym_generic_type_specifier] = STATE(3609), - [aux_sym_type_definition_repeat1] = STATE(3839), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7768), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7768), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7768), - [sym_IMP] = ACTIONS(7768), - [sym_BOOL] = ACTIONS(7768), - [sym_auto] = ACTIONS(7768), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3827] = { - [sym_type_qualifier] = STATE(3857), - [sym__type_specifier] = STATE(3483), - [sym_sized_type_specifier] = STATE(3483), - [sym_enum_specifier] = STATE(3483), - [sym_struct_specifier] = STATE(3483), - [sym_union_specifier] = STATE(3483), - [sym_macro_type_specifier] = STATE(3483), - [sym_typeof_specifier] = STATE(3483), - [sym_atomic_specifier] = STATE(3483), - [sym_generic_type_specifier] = STATE(3483), - [aux_sym_type_definition_repeat1] = STATE(3857), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(9047), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(9047), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(9047), - [sym_IMP] = ACTIONS(9047), - [sym_BOOL] = ACTIONS(9047), - [sym_auto] = ACTIONS(9047), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3828] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3483), - [sym_sized_type_specifier] = STATE(3483), - [sym_enum_specifier] = STATE(3483), - [sym_struct_specifier] = STATE(3483), - [sym_union_specifier] = STATE(3483), - [sym_macro_type_specifier] = STATE(3483), - [sym_typeof_specifier] = STATE(3483), - [sym_atomic_specifier] = STATE(3483), - [sym_generic_type_specifier] = STATE(3483), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(9047), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(9047), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(9047), - [sym_IMP] = ACTIONS(9047), - [sym_BOOL] = ACTIONS(9047), - [sym_auto] = ACTIONS(9047), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3829] = { - [sym_identifier] = ACTIONS(7326), - [anon_sym_COMMA] = ACTIONS(7328), - [anon_sym_LPAREN2] = ACTIONS(7328), - [anon_sym_STAR] = ACTIONS(7328), - [anon_sym_SEMI] = ACTIONS(7328), - [anon_sym___attribute] = ACTIONS(7326), - [anon_sym___attribute__] = ACTIONS(7326), - [anon_sym___based] = ACTIONS(7326), - [anon_sym_LBRACE] = ACTIONS(7328), - [anon_sym_LBRACK] = ACTIONS(7328), - [anon_sym_EQ] = ACTIONS(7328), - [anon_sym_const] = ACTIONS(7326), - [anon_sym_volatile] = ACTIONS(7326), - [anon_sym_restrict] = ACTIONS(7326), - [anon_sym__Atomic] = ACTIONS(7326), - [anon_sym_in] = ACTIONS(7326), - [anon_sym_out] = ACTIONS(7326), - [anon_sym_inout] = ACTIONS(7326), - [anon_sym_bycopy] = ACTIONS(7326), - [anon_sym_byref] = ACTIONS(7326), - [anon_sym_oneway] = ACTIONS(7326), - [anon_sym__Nullable] = ACTIONS(7326), - [anon_sym__Nonnull] = ACTIONS(7326), - [anon_sym__Nullable_result] = ACTIONS(7326), - [anon_sym__Null_unspecified] = ACTIONS(7326), - [anon_sym___autoreleasing] = ACTIONS(7326), - [anon_sym___nullable] = ACTIONS(7326), - [anon_sym___nonnull] = ACTIONS(7326), - [anon_sym___strong] = ACTIONS(7326), - [anon_sym___weak] = ACTIONS(7326), - [anon_sym___bridge] = ACTIONS(7326), - [anon_sym___bridge_transfer] = ACTIONS(7326), - [anon_sym___bridge_retained] = ACTIONS(7326), - [anon_sym___unsafe_unretained] = ACTIONS(7326), - [anon_sym___block] = ACTIONS(7326), - [anon_sym___kindof] = ACTIONS(7326), - [anon_sym___unused] = ACTIONS(7326), - [anon_sym__Complex] = ACTIONS(7326), - [anon_sym___complex] = ACTIONS(7326), - [anon_sym_IBOutlet] = ACTIONS(7326), - [anon_sym_IBInspectable] = ACTIONS(7326), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7326), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7326), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7326), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7326), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7326), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7326), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7326), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7326), - [anon_sym_NS_AVAILABLE] = ACTIONS(7326), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7326), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7326), - [anon_sym_API_AVAILABLE] = ACTIONS(7326), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7326), - [anon_sym_API_DEPRECATED] = ACTIONS(7326), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7326), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7326), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7326), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7326), - [anon_sym___deprecated_msg] = ACTIONS(7326), - [anon_sym___deprecated_enum_msg] = ACTIONS(7326), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7326), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7326), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7326), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7326), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3830] = { - [sym_identifier] = ACTIONS(7318), - [anon_sym_COMMA] = ACTIONS(7320), - [anon_sym_LPAREN2] = ACTIONS(7320), - [anon_sym_STAR] = ACTIONS(7320), - [anon_sym_SEMI] = ACTIONS(7320), - [anon_sym___attribute] = ACTIONS(7318), - [anon_sym___attribute__] = ACTIONS(7318), - [anon_sym___based] = ACTIONS(7318), - [anon_sym_LBRACE] = ACTIONS(7320), - [anon_sym_LBRACK] = ACTIONS(7320), - [anon_sym_EQ] = ACTIONS(7320), - [anon_sym_const] = ACTIONS(7318), - [anon_sym_volatile] = ACTIONS(7318), - [anon_sym_restrict] = ACTIONS(7318), - [anon_sym__Atomic] = ACTIONS(7318), - [anon_sym_in] = ACTIONS(7318), - [anon_sym_out] = ACTIONS(7318), - [anon_sym_inout] = ACTIONS(7318), - [anon_sym_bycopy] = ACTIONS(7318), - [anon_sym_byref] = ACTIONS(7318), - [anon_sym_oneway] = ACTIONS(7318), - [anon_sym__Nullable] = ACTIONS(7318), - [anon_sym__Nonnull] = ACTIONS(7318), - [anon_sym__Nullable_result] = ACTIONS(7318), - [anon_sym__Null_unspecified] = ACTIONS(7318), - [anon_sym___autoreleasing] = ACTIONS(7318), - [anon_sym___nullable] = ACTIONS(7318), - [anon_sym___nonnull] = ACTIONS(7318), - [anon_sym___strong] = ACTIONS(7318), - [anon_sym___weak] = ACTIONS(7318), - [anon_sym___bridge] = ACTIONS(7318), - [anon_sym___bridge_transfer] = ACTIONS(7318), - [anon_sym___bridge_retained] = ACTIONS(7318), - [anon_sym___unsafe_unretained] = ACTIONS(7318), - [anon_sym___block] = ACTIONS(7318), - [anon_sym___kindof] = ACTIONS(7318), - [anon_sym___unused] = ACTIONS(7318), - [anon_sym__Complex] = ACTIONS(7318), - [anon_sym___complex] = ACTIONS(7318), - [anon_sym_IBOutlet] = ACTIONS(7318), - [anon_sym_IBInspectable] = ACTIONS(7318), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7318), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7318), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7318), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7318), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7318), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7318), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7318), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7318), - [anon_sym_NS_AVAILABLE] = ACTIONS(7318), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7318), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7318), - [anon_sym_API_AVAILABLE] = ACTIONS(7318), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7318), - [anon_sym_API_DEPRECATED] = ACTIONS(7318), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7318), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7318), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7318), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7318), - [anon_sym___deprecated_msg] = ACTIONS(7318), - [anon_sym___deprecated_enum_msg] = ACTIONS(7318), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7318), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7318), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7318), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7318), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3831] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3465), - [sym_sized_type_specifier] = STATE(3465), - [sym_enum_specifier] = STATE(3465), - [sym_struct_specifier] = STATE(3465), - [sym_union_specifier] = STATE(3465), - [sym_macro_type_specifier] = STATE(3465), - [sym_typeof_specifier] = STATE(3465), - [sym_atomic_specifier] = STATE(3465), - [sym_generic_type_specifier] = STATE(3465), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(9043), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(9043), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(9043), - [sym_IMP] = ACTIONS(9043), - [sym_BOOL] = ACTIONS(9043), - [sym_auto] = ACTIONS(9043), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3832] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3452), - [sym_sized_type_specifier] = STATE(3452), - [sym_enum_specifier] = STATE(3452), - [sym_struct_specifier] = STATE(3452), - [sym_union_specifier] = STATE(3452), - [sym_macro_type_specifier] = STATE(3452), - [sym_typeof_specifier] = STATE(3452), - [sym_atomic_specifier] = STATE(3452), - [sym_generic_type_specifier] = STATE(3452), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7754), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7754), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7754), - [sym_IMP] = ACTIONS(7754), - [sym_BOOL] = ACTIONS(7754), - [sym_auto] = ACTIONS(7754), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3833] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3992), - [sym_sized_type_specifier] = STATE(3992), - [sym_enum_specifier] = STATE(3992), - [sym_struct_specifier] = STATE(3992), - [sym_union_specifier] = STATE(3992), - [sym_macro_type_specifier] = STATE(3992), - [sym_typeof_specifier] = STATE(3992), - [sym_atomic_specifier] = STATE(3992), - [sym_generic_type_specifier] = STATE(3992), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3961), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(1147), - [anon_sym_unsigned] = ACTIONS(1147), - [anon_sym_long] = ACTIONS(1147), - [anon_sym_short] = ACTIONS(1147), - [sym_primitive_type] = ACTIONS(9049), - [anon_sym_enum] = ACTIONS(8801), - [anon_sym_NS_ENUM] = ACTIONS(8803), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(8803), - [anon_sym_NS_OPTIONS] = ACTIONS(8803), - [anon_sym_struct] = ACTIONS(8805), - [anon_sym_union] = ACTIONS(8807), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(9049), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(9049), - [sym_IMP] = ACTIONS(9049), - [sym_BOOL] = ACTIONS(9049), - [sym_auto] = ACTIONS(9049), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3834] = { - [sym_type_qualifier] = STATE(3828), - [sym__type_specifier] = STATE(3463), - [sym_sized_type_specifier] = STATE(3463), - [sym_enum_specifier] = STATE(3463), - [sym_struct_specifier] = STATE(3463), - [sym_union_specifier] = STATE(3463), - [sym_macro_type_specifier] = STATE(3463), - [sym_typeof_specifier] = STATE(3463), - [sym_atomic_specifier] = STATE(3463), - [sym_generic_type_specifier] = STATE(3463), - [aux_sym_type_definition_repeat1] = STATE(3828), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7774), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7774), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7774), - [sym_IMP] = ACTIONS(7774), - [sym_BOOL] = ACTIONS(7774), - [sym_auto] = ACTIONS(7774), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3835] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3458), - [sym_sized_type_specifier] = STATE(3458), - [sym_enum_specifier] = STATE(3458), - [sym_struct_specifier] = STATE(3458), - [sym_union_specifier] = STATE(3458), - [sym_macro_type_specifier] = STATE(3458), - [sym_typeof_specifier] = STATE(3458), - [sym_atomic_specifier] = STATE(3458), - [sym_generic_type_specifier] = STATE(3458), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7770), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7770), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7770), - [sym_IMP] = ACTIONS(7770), - [sym_BOOL] = ACTIONS(7770), - [sym_auto] = ACTIONS(7770), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3836] = { - [sym_type_qualifier] = STATE(3819), - [sym__type_specifier] = STATE(3458), - [sym_sized_type_specifier] = STATE(3458), - [sym_enum_specifier] = STATE(3458), - [sym_struct_specifier] = STATE(3458), - [sym_union_specifier] = STATE(3458), - [sym_macro_type_specifier] = STATE(3458), - [sym_typeof_specifier] = STATE(3458), - [sym_atomic_specifier] = STATE(3458), - [sym_generic_type_specifier] = STATE(3458), - [aux_sym_type_definition_repeat1] = STATE(3819), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7770), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7770), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7770), - [sym_IMP] = ACTIONS(7770), - [sym_BOOL] = ACTIONS(7770), - [sym_auto] = ACTIONS(7770), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3837] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3499), - [sym_sized_type_specifier] = STATE(3499), - [sym_enum_specifier] = STATE(3499), - [sym_struct_specifier] = STATE(3499), - [sym_union_specifier] = STATE(3499), - [sym_macro_type_specifier] = STATE(3499), - [sym_typeof_specifier] = STATE(3499), - [sym_atomic_specifier] = STATE(3499), - [sym_generic_type_specifier] = STATE(3499), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(9051), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(9051), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(9051), - [sym_IMP] = ACTIONS(9051), - [sym_BOOL] = ACTIONS(9051), - [sym_auto] = ACTIONS(9051), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3838] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3463), - [sym_sized_type_specifier] = STATE(3463), - [sym_enum_specifier] = STATE(3463), - [sym_struct_specifier] = STATE(3463), - [sym_union_specifier] = STATE(3463), - [sym_macro_type_specifier] = STATE(3463), - [sym_typeof_specifier] = STATE(3463), - [sym_atomic_specifier] = STATE(3463), - [sym_generic_type_specifier] = STATE(3463), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7774), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7774), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7774), - [sym_IMP] = ACTIONS(7774), - [sym_BOOL] = ACTIONS(7774), - [sym_auto] = ACTIONS(7774), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3839] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3599), - [sym_sized_type_specifier] = STATE(3599), - [sym_enum_specifier] = STATE(3599), - [sym_struct_specifier] = STATE(3599), - [sym_union_specifier] = STATE(3599), - [sym_macro_type_specifier] = STATE(3599), - [sym_typeof_specifier] = STATE(3599), - [sym_atomic_specifier] = STATE(3599), - [sym_generic_type_specifier] = STATE(3599), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(9053), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(9053), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(9053), - [sym_IMP] = ACTIONS(9053), - [sym_BOOL] = ACTIONS(9053), - [sym_auto] = ACTIONS(9053), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3840] = { - [sym_identifier] = ACTIONS(7348), - [anon_sym_COMMA] = ACTIONS(7350), - [anon_sym_LPAREN2] = ACTIONS(7350), - [anon_sym_STAR] = ACTIONS(7350), - [anon_sym_SEMI] = ACTIONS(7350), - [anon_sym___attribute] = ACTIONS(7348), - [anon_sym___attribute__] = ACTIONS(7348), - [anon_sym___based] = ACTIONS(7348), - [anon_sym_LBRACE] = ACTIONS(7350), - [anon_sym_LBRACK] = ACTIONS(7350), - [anon_sym_EQ] = ACTIONS(7350), - [anon_sym_const] = ACTIONS(7348), - [anon_sym_volatile] = ACTIONS(7348), - [anon_sym_restrict] = ACTIONS(7348), - [anon_sym__Atomic] = ACTIONS(7348), - [anon_sym_in] = ACTIONS(7348), - [anon_sym_out] = ACTIONS(7348), - [anon_sym_inout] = ACTIONS(7348), - [anon_sym_bycopy] = ACTIONS(7348), - [anon_sym_byref] = ACTIONS(7348), - [anon_sym_oneway] = ACTIONS(7348), - [anon_sym__Nullable] = ACTIONS(7348), - [anon_sym__Nonnull] = ACTIONS(7348), - [anon_sym__Nullable_result] = ACTIONS(7348), - [anon_sym__Null_unspecified] = ACTIONS(7348), - [anon_sym___autoreleasing] = ACTIONS(7348), - [anon_sym___nullable] = ACTIONS(7348), - [anon_sym___nonnull] = ACTIONS(7348), - [anon_sym___strong] = ACTIONS(7348), - [anon_sym___weak] = ACTIONS(7348), - [anon_sym___bridge] = ACTIONS(7348), - [anon_sym___bridge_transfer] = ACTIONS(7348), - [anon_sym___bridge_retained] = ACTIONS(7348), - [anon_sym___unsafe_unretained] = ACTIONS(7348), - [anon_sym___block] = ACTIONS(7348), - [anon_sym___kindof] = ACTIONS(7348), - [anon_sym___unused] = ACTIONS(7348), - [anon_sym__Complex] = ACTIONS(7348), - [anon_sym___complex] = ACTIONS(7348), - [anon_sym_IBOutlet] = ACTIONS(7348), - [anon_sym_IBInspectable] = ACTIONS(7348), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7348), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7348), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7348), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7348), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7348), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7348), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7348), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7348), - [anon_sym_NS_AVAILABLE] = ACTIONS(7348), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7348), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7348), - [anon_sym_API_AVAILABLE] = ACTIONS(7348), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7348), - [anon_sym_API_DEPRECATED] = ACTIONS(7348), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7348), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7348), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7348), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7348), - [anon_sym___deprecated_msg] = ACTIONS(7348), - [anon_sym___deprecated_enum_msg] = ACTIONS(7348), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7348), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7348), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7348), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7348), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3841] = { - [sym_type_qualifier] = STATE(3853), - [sym__type_specifier] = STATE(3599), - [sym_sized_type_specifier] = STATE(3599), - [sym_enum_specifier] = STATE(3599), - [sym_struct_specifier] = STATE(3599), - [sym_union_specifier] = STATE(3599), - [sym_macro_type_specifier] = STATE(3599), - [sym_typeof_specifier] = STATE(3599), - [sym_atomic_specifier] = STATE(3599), - [sym_generic_type_specifier] = STATE(3599), - [aux_sym_type_definition_repeat1] = STATE(3853), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(9053), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(9053), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(9053), - [sym_IMP] = ACTIONS(9053), - [sym_BOOL] = ACTIONS(9053), - [sym_auto] = ACTIONS(9053), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3842] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3563), - [sym_sized_type_specifier] = STATE(3563), - [sym_enum_specifier] = STATE(3563), - [sym_struct_specifier] = STATE(3563), - [sym_union_specifier] = STATE(3563), - [sym_macro_type_specifier] = STATE(3563), - [sym_typeof_specifier] = STATE(3563), - [sym_atomic_specifier] = STATE(3563), - [sym_generic_type_specifier] = STATE(3563), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7720), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7720), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7720), - [sym_IMP] = ACTIONS(7720), - [sym_BOOL] = ACTIONS(7720), - [sym_auto] = ACTIONS(7720), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3843] = { [anon_sym_COMMA] = ACTIONS(9055), [anon_sym_RPAREN] = ACTIONS(9055), [anon_sym_LPAREN2] = ACTIONS(9055), @@ -567901,73 +559910,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3844] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3544), - [sym_sized_type_specifier] = STATE(3544), - [sym_enum_specifier] = STATE(3544), - [sym_struct_specifier] = STATE(3544), - [sym_union_specifier] = STATE(3544), - [sym_macro_type_specifier] = STATE(3544), - [sym_typeof_specifier] = STATE(3544), - [sym_atomic_specifier] = STATE(3544), - [sym_generic_type_specifier] = STATE(3544), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7782), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [3788] = { + [sym_identifier] = ACTIONS(8486), + [anon_sym_COMMA] = ACTIONS(8488), + [anon_sym_RPAREN] = ACTIONS(8488), + [anon_sym_LPAREN2] = ACTIONS(8488), + [anon_sym_STAR] = ACTIONS(8488), + [anon_sym_GT] = ACTIONS(8488), + [anon_sym___attribute] = ACTIONS(8486), + [anon_sym___attribute__] = ACTIONS(8486), + [anon_sym___based] = ACTIONS(8486), + [anon_sym_LBRACE] = ACTIONS(8488), + [anon_sym_LBRACK] = ACTIONS(8488), + [anon_sym_const] = ACTIONS(8486), + [anon_sym_volatile] = ACTIONS(8486), + [anon_sym_restrict] = ACTIONS(8486), + [anon_sym__Atomic] = ACTIONS(8486), + [anon_sym_in] = ACTIONS(8486), + [anon_sym_out] = ACTIONS(8486), + [anon_sym_inout] = ACTIONS(8486), + [anon_sym_bycopy] = ACTIONS(8486), + [anon_sym_byref] = ACTIONS(8486), + [anon_sym_oneway] = ACTIONS(8486), + [anon_sym__Nullable] = ACTIONS(8486), + [anon_sym__Nonnull] = ACTIONS(8486), + [anon_sym__Nullable_result] = ACTIONS(8486), + [anon_sym__Null_unspecified] = ACTIONS(8486), + [anon_sym___autoreleasing] = ACTIONS(8486), + [anon_sym___nullable] = ACTIONS(8486), + [anon_sym___nonnull] = ACTIONS(8486), + [anon_sym___strong] = ACTIONS(8486), + [anon_sym___weak] = ACTIONS(8486), + [anon_sym___bridge] = ACTIONS(8486), + [anon_sym___bridge_transfer] = ACTIONS(8486), + [anon_sym___bridge_retained] = ACTIONS(8486), + [anon_sym___unsafe_unretained] = ACTIONS(8486), + [anon_sym___block] = ACTIONS(8486), + [anon_sym___kindof] = ACTIONS(8486), + [anon_sym___unused] = ACTIONS(8486), + [anon_sym__Complex] = ACTIONS(8486), + [anon_sym___complex] = ACTIONS(8486), + [anon_sym_IBOutlet] = ACTIONS(8486), + [anon_sym_IBInspectable] = ACTIONS(8486), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8486), [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7782), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7782), - [sym_IMP] = ACTIONS(7782), - [sym_BOOL] = ACTIONS(7782), - [sym_auto] = ACTIONS(7782), + [sym_method_attribute_specifier] = ACTIONS(8486), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8486), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8486), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8486), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8486), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8486), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8486), + [anon_sym_NS_AVAILABLE] = ACTIONS(8486), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8486), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8486), + [anon_sym_API_AVAILABLE] = ACTIONS(8486), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8486), + [anon_sym_API_DEPRECATED] = ACTIONS(8486), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8486), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8486), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8486), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8486), + [anon_sym___deprecated_msg] = ACTIONS(8486), + [anon_sym___deprecated_enum_msg] = ACTIONS(8486), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8486), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8486), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8486), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8486), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -567975,73 +559984,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3845] = { - [sym_type_qualifier] = STATE(3849), - [sym__type_specifier] = STATE(3563), - [sym_sized_type_specifier] = STATE(3563), - [sym_enum_specifier] = STATE(3563), - [sym_struct_specifier] = STATE(3563), - [sym_union_specifier] = STATE(3563), - [sym_macro_type_specifier] = STATE(3563), - [sym_typeof_specifier] = STATE(3563), - [sym_atomic_specifier] = STATE(3563), - [sym_generic_type_specifier] = STATE(3563), - [aux_sym_type_definition_repeat1] = STATE(3849), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7720), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [3789] = { + [sym_identifier] = ACTIONS(8329), + [anon_sym_COMMA] = ACTIONS(8331), + [anon_sym_RPAREN] = ACTIONS(8331), + [anon_sym_LPAREN2] = ACTIONS(8331), + [anon_sym_STAR] = ACTIONS(8331), + [anon_sym_GT] = ACTIONS(8331), + [anon_sym___attribute] = ACTIONS(8329), + [anon_sym___attribute__] = ACTIONS(8329), + [anon_sym___based] = ACTIONS(8329), + [anon_sym_LBRACE] = ACTIONS(8331), + [anon_sym_LBRACK] = ACTIONS(8331), + [anon_sym_const] = ACTIONS(8329), + [anon_sym_volatile] = ACTIONS(8329), + [anon_sym_restrict] = ACTIONS(8329), + [anon_sym__Atomic] = ACTIONS(8329), + [anon_sym_in] = ACTIONS(8329), + [anon_sym_out] = ACTIONS(8329), + [anon_sym_inout] = ACTIONS(8329), + [anon_sym_bycopy] = ACTIONS(8329), + [anon_sym_byref] = ACTIONS(8329), + [anon_sym_oneway] = ACTIONS(8329), + [anon_sym__Nullable] = ACTIONS(8329), + [anon_sym__Nonnull] = ACTIONS(8329), + [anon_sym__Nullable_result] = ACTIONS(8329), + [anon_sym__Null_unspecified] = ACTIONS(8329), + [anon_sym___autoreleasing] = ACTIONS(8329), + [anon_sym___nullable] = ACTIONS(8329), + [anon_sym___nonnull] = ACTIONS(8329), + [anon_sym___strong] = ACTIONS(8329), + [anon_sym___weak] = ACTIONS(8329), + [anon_sym___bridge] = ACTIONS(8329), + [anon_sym___bridge_transfer] = ACTIONS(8329), + [anon_sym___bridge_retained] = ACTIONS(8329), + [anon_sym___unsafe_unretained] = ACTIONS(8329), + [anon_sym___block] = ACTIONS(8329), + [anon_sym___kindof] = ACTIONS(8329), + [anon_sym___unused] = ACTIONS(8329), + [anon_sym__Complex] = ACTIONS(8329), + [anon_sym___complex] = ACTIONS(8329), + [anon_sym_IBOutlet] = ACTIONS(8329), + [anon_sym_IBInspectable] = ACTIONS(8329), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8329), [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7720), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7720), - [sym_IMP] = ACTIONS(7720), - [sym_BOOL] = ACTIONS(7720), - [sym_auto] = ACTIONS(7720), + [sym_method_attribute_specifier] = ACTIONS(8329), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8329), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8329), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8329), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8329), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8329), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8329), + [anon_sym_NS_AVAILABLE] = ACTIONS(8329), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8329), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8329), + [anon_sym_API_AVAILABLE] = ACTIONS(8329), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8329), + [anon_sym_API_DEPRECATED] = ACTIONS(8329), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8329), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8329), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8329), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8329), + [anon_sym___deprecated_msg] = ACTIONS(8329), + [anon_sym___deprecated_enum_msg] = ACTIONS(8329), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8329), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8329), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8329), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8329), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -568049,7 +560058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3846] = { + [3790] = { [anon_sym_COMMA] = ACTIONS(9059), [anon_sym_RPAREN] = ACTIONS(9059), [anon_sym_LPAREN2] = ACTIONS(9059), @@ -568123,7 +560132,451 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3847] = { + [3791] = { + [sym_identifier] = ACTIONS(8636), + [anon_sym_COMMA] = ACTIONS(8638), + [anon_sym_RPAREN] = ACTIONS(8638), + [anon_sym_LPAREN2] = ACTIONS(8638), + [anon_sym_STAR] = ACTIONS(8638), + [anon_sym_GT] = ACTIONS(8638), + [anon_sym___attribute] = ACTIONS(8636), + [anon_sym___attribute__] = ACTIONS(8636), + [anon_sym___based] = ACTIONS(8636), + [anon_sym_LBRACE] = ACTIONS(8638), + [anon_sym_LBRACK] = ACTIONS(8638), + [anon_sym_const] = ACTIONS(8636), + [anon_sym_volatile] = ACTIONS(8636), + [anon_sym_restrict] = ACTIONS(8636), + [anon_sym__Atomic] = ACTIONS(8636), + [anon_sym_in] = ACTIONS(8636), + [anon_sym_out] = ACTIONS(8636), + [anon_sym_inout] = ACTIONS(8636), + [anon_sym_bycopy] = ACTIONS(8636), + [anon_sym_byref] = ACTIONS(8636), + [anon_sym_oneway] = ACTIONS(8636), + [anon_sym__Nullable] = ACTIONS(8636), + [anon_sym__Nonnull] = ACTIONS(8636), + [anon_sym__Nullable_result] = ACTIONS(8636), + [anon_sym__Null_unspecified] = ACTIONS(8636), + [anon_sym___autoreleasing] = ACTIONS(8636), + [anon_sym___nullable] = ACTIONS(8636), + [anon_sym___nonnull] = ACTIONS(8636), + [anon_sym___strong] = ACTIONS(8636), + [anon_sym___weak] = ACTIONS(8636), + [anon_sym___bridge] = ACTIONS(8636), + [anon_sym___bridge_transfer] = ACTIONS(8636), + [anon_sym___bridge_retained] = ACTIONS(8636), + [anon_sym___unsafe_unretained] = ACTIONS(8636), + [anon_sym___block] = ACTIONS(8636), + [anon_sym___kindof] = ACTIONS(8636), + [anon_sym___unused] = ACTIONS(8636), + [anon_sym__Complex] = ACTIONS(8636), + [anon_sym___complex] = ACTIONS(8636), + [anon_sym_IBOutlet] = ACTIONS(8636), + [anon_sym_IBInspectable] = ACTIONS(8636), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8636), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8636), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8636), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8636), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8636), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8636), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8636), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8636), + [anon_sym_NS_AVAILABLE] = ACTIONS(8636), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8636), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8636), + [anon_sym_API_AVAILABLE] = ACTIONS(8636), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8636), + [anon_sym_API_DEPRECATED] = ACTIONS(8636), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8636), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8636), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8636), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8636), + [anon_sym___deprecated_msg] = ACTIONS(8636), + [anon_sym___deprecated_enum_msg] = ACTIONS(8636), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8636), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8636), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8636), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8636), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3792] = { + [sym_identifier] = ACTIONS(7302), + [anon_sym_COMMA] = ACTIONS(7304), + [anon_sym_LPAREN2] = ACTIONS(7304), + [anon_sym_STAR] = ACTIONS(7304), + [anon_sym_SEMI] = ACTIONS(7304), + [anon_sym___attribute] = ACTIONS(7302), + [anon_sym___attribute__] = ACTIONS(7302), + [anon_sym___based] = ACTIONS(7302), + [anon_sym_LBRACE] = ACTIONS(7304), + [anon_sym_LBRACK] = ACTIONS(7304), + [anon_sym_EQ] = ACTIONS(7304), + [anon_sym_const] = ACTIONS(7302), + [anon_sym_volatile] = ACTIONS(7302), + [anon_sym_restrict] = ACTIONS(7302), + [anon_sym__Atomic] = ACTIONS(7302), + [anon_sym_in] = ACTIONS(7302), + [anon_sym_out] = ACTIONS(7302), + [anon_sym_inout] = ACTIONS(7302), + [anon_sym_bycopy] = ACTIONS(7302), + [anon_sym_byref] = ACTIONS(7302), + [anon_sym_oneway] = ACTIONS(7302), + [anon_sym__Nullable] = ACTIONS(7302), + [anon_sym__Nonnull] = ACTIONS(7302), + [anon_sym__Nullable_result] = ACTIONS(7302), + [anon_sym__Null_unspecified] = ACTIONS(7302), + [anon_sym___autoreleasing] = ACTIONS(7302), + [anon_sym___nullable] = ACTIONS(7302), + [anon_sym___nonnull] = ACTIONS(7302), + [anon_sym___strong] = ACTIONS(7302), + [anon_sym___weak] = ACTIONS(7302), + [anon_sym___bridge] = ACTIONS(7302), + [anon_sym___bridge_transfer] = ACTIONS(7302), + [anon_sym___bridge_retained] = ACTIONS(7302), + [anon_sym___unsafe_unretained] = ACTIONS(7302), + [anon_sym___block] = ACTIONS(7302), + [anon_sym___kindof] = ACTIONS(7302), + [anon_sym___unused] = ACTIONS(7302), + [anon_sym__Complex] = ACTIONS(7302), + [anon_sym___complex] = ACTIONS(7302), + [anon_sym_IBOutlet] = ACTIONS(7302), + [anon_sym_IBInspectable] = ACTIONS(7302), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7302), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7302), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7302), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7302), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7302), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7302), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7302), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7302), + [anon_sym_NS_AVAILABLE] = ACTIONS(7302), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7302), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7302), + [anon_sym_API_AVAILABLE] = ACTIONS(7302), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7302), + [anon_sym_API_DEPRECATED] = ACTIONS(7302), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7302), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7302), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7302), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7302), + [anon_sym___deprecated_msg] = ACTIONS(7302), + [anon_sym___deprecated_enum_msg] = ACTIONS(7302), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7302), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7302), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7302), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7302), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3793] = { + [sym_identifier] = ACTIONS(8512), + [anon_sym_COMMA] = ACTIONS(8514), + [anon_sym_RPAREN] = ACTIONS(8514), + [anon_sym_LPAREN2] = ACTIONS(8514), + [anon_sym_STAR] = ACTIONS(8514), + [anon_sym_GT] = ACTIONS(8514), + [anon_sym___attribute] = ACTIONS(8512), + [anon_sym___attribute__] = ACTIONS(8512), + [anon_sym___based] = ACTIONS(8512), + [anon_sym_LBRACE] = ACTIONS(8514), + [anon_sym_LBRACK] = ACTIONS(8514), + [anon_sym_const] = ACTIONS(8512), + [anon_sym_volatile] = ACTIONS(8512), + [anon_sym_restrict] = ACTIONS(8512), + [anon_sym__Atomic] = ACTIONS(8512), + [anon_sym_in] = ACTIONS(8512), + [anon_sym_out] = ACTIONS(8512), + [anon_sym_inout] = ACTIONS(8512), + [anon_sym_bycopy] = ACTIONS(8512), + [anon_sym_byref] = ACTIONS(8512), + [anon_sym_oneway] = ACTIONS(8512), + [anon_sym__Nullable] = ACTIONS(8512), + [anon_sym__Nonnull] = ACTIONS(8512), + [anon_sym__Nullable_result] = ACTIONS(8512), + [anon_sym__Null_unspecified] = ACTIONS(8512), + [anon_sym___autoreleasing] = ACTIONS(8512), + [anon_sym___nullable] = ACTIONS(8512), + [anon_sym___nonnull] = ACTIONS(8512), + [anon_sym___strong] = ACTIONS(8512), + [anon_sym___weak] = ACTIONS(8512), + [anon_sym___bridge] = ACTIONS(8512), + [anon_sym___bridge_transfer] = ACTIONS(8512), + [anon_sym___bridge_retained] = ACTIONS(8512), + [anon_sym___unsafe_unretained] = ACTIONS(8512), + [anon_sym___block] = ACTIONS(8512), + [anon_sym___kindof] = ACTIONS(8512), + [anon_sym___unused] = ACTIONS(8512), + [anon_sym__Complex] = ACTIONS(8512), + [anon_sym___complex] = ACTIONS(8512), + [anon_sym_IBOutlet] = ACTIONS(8512), + [anon_sym_IBInspectable] = ACTIONS(8512), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8512), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8512), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8512), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8512), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8512), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8512), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8512), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8512), + [anon_sym_NS_AVAILABLE] = ACTIONS(8512), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8512), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8512), + [anon_sym_API_AVAILABLE] = ACTIONS(8512), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8512), + [anon_sym_API_DEPRECATED] = ACTIONS(8512), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8512), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8512), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8512), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8512), + [anon_sym___deprecated_msg] = ACTIONS(8512), + [anon_sym___deprecated_enum_msg] = ACTIONS(8512), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8512), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8512), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8512), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8512), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3794] = { + [sym_identifier] = ACTIONS(8620), + [anon_sym_COMMA] = ACTIONS(8622), + [anon_sym_RPAREN] = ACTIONS(8622), + [anon_sym_LPAREN2] = ACTIONS(8622), + [anon_sym_STAR] = ACTIONS(8622), + [anon_sym_GT] = ACTIONS(8622), + [anon_sym___attribute] = ACTIONS(8620), + [anon_sym___attribute__] = ACTIONS(8620), + [anon_sym___based] = ACTIONS(8620), + [anon_sym_LBRACE] = ACTIONS(8622), + [anon_sym_LBRACK] = ACTIONS(8622), + [anon_sym_const] = ACTIONS(8620), + [anon_sym_volatile] = ACTIONS(8620), + [anon_sym_restrict] = ACTIONS(8620), + [anon_sym__Atomic] = ACTIONS(8620), + [anon_sym_in] = ACTIONS(8620), + [anon_sym_out] = ACTIONS(8620), + [anon_sym_inout] = ACTIONS(8620), + [anon_sym_bycopy] = ACTIONS(8620), + [anon_sym_byref] = ACTIONS(8620), + [anon_sym_oneway] = ACTIONS(8620), + [anon_sym__Nullable] = ACTIONS(8620), + [anon_sym__Nonnull] = ACTIONS(8620), + [anon_sym__Nullable_result] = ACTIONS(8620), + [anon_sym__Null_unspecified] = ACTIONS(8620), + [anon_sym___autoreleasing] = ACTIONS(8620), + [anon_sym___nullable] = ACTIONS(8620), + [anon_sym___nonnull] = ACTIONS(8620), + [anon_sym___strong] = ACTIONS(8620), + [anon_sym___weak] = ACTIONS(8620), + [anon_sym___bridge] = ACTIONS(8620), + [anon_sym___bridge_transfer] = ACTIONS(8620), + [anon_sym___bridge_retained] = ACTIONS(8620), + [anon_sym___unsafe_unretained] = ACTIONS(8620), + [anon_sym___block] = ACTIONS(8620), + [anon_sym___kindof] = ACTIONS(8620), + [anon_sym___unused] = ACTIONS(8620), + [anon_sym__Complex] = ACTIONS(8620), + [anon_sym___complex] = ACTIONS(8620), + [anon_sym_IBOutlet] = ACTIONS(8620), + [anon_sym_IBInspectable] = ACTIONS(8620), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8620), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8620), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8620), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8620), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8620), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8620), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8620), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8620), + [anon_sym_NS_AVAILABLE] = ACTIONS(8620), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8620), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8620), + [anon_sym_API_AVAILABLE] = ACTIONS(8620), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8620), + [anon_sym_API_DEPRECATED] = ACTIONS(8620), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8620), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8620), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8620), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8620), + [anon_sym___deprecated_msg] = ACTIONS(8620), + [anon_sym___deprecated_enum_msg] = ACTIONS(8620), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8620), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8620), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8620), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8620), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3795] = { + [sym_identifier] = ACTIONS(6836), + [anon_sym_COMMA] = ACTIONS(6838), + [anon_sym_RPAREN] = ACTIONS(6838), + [anon_sym_LPAREN2] = ACTIONS(6838), + [anon_sym_STAR] = ACTIONS(6838), + [anon_sym_GT] = ACTIONS(6838), + [anon_sym___attribute] = ACTIONS(6836), + [anon_sym___attribute__] = ACTIONS(6836), + [anon_sym___based] = ACTIONS(6836), + [anon_sym_LBRACE] = ACTIONS(6838), + [anon_sym_LBRACK] = ACTIONS(6838), + [anon_sym_const] = ACTIONS(6836), + [anon_sym_volatile] = ACTIONS(6836), + [anon_sym_restrict] = ACTIONS(6836), + [anon_sym__Atomic] = ACTIONS(6836), + [anon_sym_in] = ACTIONS(6836), + [anon_sym_out] = ACTIONS(6836), + [anon_sym_inout] = ACTIONS(6836), + [anon_sym_bycopy] = ACTIONS(6836), + [anon_sym_byref] = ACTIONS(6836), + [anon_sym_oneway] = ACTIONS(6836), + [anon_sym__Nullable] = ACTIONS(6836), + [anon_sym__Nonnull] = ACTIONS(6836), + [anon_sym__Nullable_result] = ACTIONS(6836), + [anon_sym__Null_unspecified] = ACTIONS(6836), + [anon_sym___autoreleasing] = ACTIONS(6836), + [anon_sym___nullable] = ACTIONS(6836), + [anon_sym___nonnull] = ACTIONS(6836), + [anon_sym___strong] = ACTIONS(6836), + [anon_sym___weak] = ACTIONS(6836), + [anon_sym___bridge] = ACTIONS(6836), + [anon_sym___bridge_transfer] = ACTIONS(6836), + [anon_sym___bridge_retained] = ACTIONS(6836), + [anon_sym___unsafe_unretained] = ACTIONS(6836), + [anon_sym___block] = ACTIONS(6836), + [anon_sym___kindof] = ACTIONS(6836), + [anon_sym___unused] = ACTIONS(6836), + [anon_sym__Complex] = ACTIONS(6836), + [anon_sym___complex] = ACTIONS(6836), + [anon_sym_IBOutlet] = ACTIONS(6836), + [anon_sym_IBInspectable] = ACTIONS(6836), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(6836), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(6836), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(6836), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(6836), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(6836), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(6836), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(6836), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(6836), + [anon_sym_NS_AVAILABLE] = ACTIONS(6836), + [anon_sym___IOS_AVAILABLE] = ACTIONS(6836), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(6836), + [anon_sym_API_AVAILABLE] = ACTIONS(6836), + [anon_sym_API_UNAVAILABLE] = ACTIONS(6836), + [anon_sym_API_DEPRECATED] = ACTIONS(6836), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(6836), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(6836), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(6836), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(6836), + [anon_sym___deprecated_msg] = ACTIONS(6836), + [anon_sym___deprecated_enum_msg] = ACTIONS(6836), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(6836), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(6836), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(6836), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(6836), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3796] = { + [sym_identifier] = ACTIONS(8548), + [anon_sym_COMMA] = ACTIONS(8550), + [anon_sym_RPAREN] = ACTIONS(8550), + [anon_sym_LPAREN2] = ACTIONS(8550), + [anon_sym_STAR] = ACTIONS(8550), + [anon_sym_GT] = ACTIONS(8550), + [anon_sym___attribute] = ACTIONS(8548), + [anon_sym___attribute__] = ACTIONS(8548), + [anon_sym___based] = ACTIONS(8548), + [anon_sym_LBRACE] = ACTIONS(8550), + [anon_sym_LBRACK] = ACTIONS(8550), + [anon_sym_const] = ACTIONS(8548), + [anon_sym_volatile] = ACTIONS(8548), + [anon_sym_restrict] = ACTIONS(8548), + [anon_sym__Atomic] = ACTIONS(8548), + [anon_sym_in] = ACTIONS(8548), + [anon_sym_out] = ACTIONS(8548), + [anon_sym_inout] = ACTIONS(8548), + [anon_sym_bycopy] = ACTIONS(8548), + [anon_sym_byref] = ACTIONS(8548), + [anon_sym_oneway] = ACTIONS(8548), + [anon_sym__Nullable] = ACTIONS(8548), + [anon_sym__Nonnull] = ACTIONS(8548), + [anon_sym__Nullable_result] = ACTIONS(8548), + [anon_sym__Null_unspecified] = ACTIONS(8548), + [anon_sym___autoreleasing] = ACTIONS(8548), + [anon_sym___nullable] = ACTIONS(8548), + [anon_sym___nonnull] = ACTIONS(8548), + [anon_sym___strong] = ACTIONS(8548), + [anon_sym___weak] = ACTIONS(8548), + [anon_sym___bridge] = ACTIONS(8548), + [anon_sym___bridge_transfer] = ACTIONS(8548), + [anon_sym___bridge_retained] = ACTIONS(8548), + [anon_sym___unsafe_unretained] = ACTIONS(8548), + [anon_sym___block] = ACTIONS(8548), + [anon_sym___kindof] = ACTIONS(8548), + [anon_sym___unused] = ACTIONS(8548), + [anon_sym__Complex] = ACTIONS(8548), + [anon_sym___complex] = ACTIONS(8548), + [anon_sym_IBOutlet] = ACTIONS(8548), + [anon_sym_IBInspectable] = ACTIONS(8548), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8548), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8548), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8548), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8548), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8548), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8548), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8548), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8548), + [anon_sym_NS_AVAILABLE] = ACTIONS(8548), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8548), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8548), + [anon_sym_API_AVAILABLE] = ACTIONS(8548), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8548), + [anon_sym_API_DEPRECATED] = ACTIONS(8548), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8548), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8548), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8548), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8548), + [anon_sym___deprecated_msg] = ACTIONS(8548), + [anon_sym___deprecated_enum_msg] = ACTIONS(8548), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8548), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8548), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8548), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8548), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3797] = { [anon_sym_COMMA] = ACTIONS(9063), [anon_sym_RPAREN] = ACTIONS(9063), [anon_sym_LPAREN2] = ACTIONS(9063), @@ -568197,73 +560650,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3848] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3493), - [sym_sized_type_specifier] = STATE(3493), - [sym_enum_specifier] = STATE(3493), - [sym_struct_specifier] = STATE(3493), - [sym_union_specifier] = STATE(3493), - [sym_macro_type_specifier] = STATE(3493), - [sym_typeof_specifier] = STATE(3493), - [sym_atomic_specifier] = STATE(3493), - [sym_generic_type_specifier] = STATE(3493), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(9041), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [3798] = { + [sym_identifier] = ACTIONS(8616), + [anon_sym_COMMA] = ACTIONS(8618), + [anon_sym_RPAREN] = ACTIONS(8618), + [anon_sym_LPAREN2] = ACTIONS(8618), + [anon_sym_STAR] = ACTIONS(8618), + [anon_sym_GT] = ACTIONS(8618), + [anon_sym___attribute] = ACTIONS(8616), + [anon_sym___attribute__] = ACTIONS(8616), + [anon_sym___based] = ACTIONS(8616), + [anon_sym_LBRACE] = ACTIONS(8618), + [anon_sym_LBRACK] = ACTIONS(8618), + [anon_sym_const] = ACTIONS(8616), + [anon_sym_volatile] = ACTIONS(8616), + [anon_sym_restrict] = ACTIONS(8616), + [anon_sym__Atomic] = ACTIONS(8616), + [anon_sym_in] = ACTIONS(8616), + [anon_sym_out] = ACTIONS(8616), + [anon_sym_inout] = ACTIONS(8616), + [anon_sym_bycopy] = ACTIONS(8616), + [anon_sym_byref] = ACTIONS(8616), + [anon_sym_oneway] = ACTIONS(8616), + [anon_sym__Nullable] = ACTIONS(8616), + [anon_sym__Nonnull] = ACTIONS(8616), + [anon_sym__Nullable_result] = ACTIONS(8616), + [anon_sym__Null_unspecified] = ACTIONS(8616), + [anon_sym___autoreleasing] = ACTIONS(8616), + [anon_sym___nullable] = ACTIONS(8616), + [anon_sym___nonnull] = ACTIONS(8616), + [anon_sym___strong] = ACTIONS(8616), + [anon_sym___weak] = ACTIONS(8616), + [anon_sym___bridge] = ACTIONS(8616), + [anon_sym___bridge_transfer] = ACTIONS(8616), + [anon_sym___bridge_retained] = ACTIONS(8616), + [anon_sym___unsafe_unretained] = ACTIONS(8616), + [anon_sym___block] = ACTIONS(8616), + [anon_sym___kindof] = ACTIONS(8616), + [anon_sym___unused] = ACTIONS(8616), + [anon_sym__Complex] = ACTIONS(8616), + [anon_sym___complex] = ACTIONS(8616), + [anon_sym_IBOutlet] = ACTIONS(8616), + [anon_sym_IBInspectable] = ACTIONS(8616), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8616), [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(9041), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(9041), - [sym_IMP] = ACTIONS(9041), - [sym_BOOL] = ACTIONS(9041), - [sym_auto] = ACTIONS(9041), + [sym_method_attribute_specifier] = ACTIONS(8616), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8616), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8616), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8616), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8616), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8616), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8616), + [anon_sym_NS_AVAILABLE] = ACTIONS(8616), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8616), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8616), + [anon_sym_API_AVAILABLE] = ACTIONS(8616), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8616), + [anon_sym_API_DEPRECATED] = ACTIONS(8616), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8616), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8616), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8616), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8616), + [anon_sym___deprecated_msg] = ACTIONS(8616), + [anon_sym___deprecated_enum_msg] = ACTIONS(8616), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8616), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8616), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8616), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8616), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -568271,73 +560724,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3849] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3531), - [sym_sized_type_specifier] = STATE(3531), - [sym_enum_specifier] = STATE(3531), - [sym_struct_specifier] = STATE(3531), - [sym_union_specifier] = STATE(3531), - [sym_macro_type_specifier] = STATE(3531), - [sym_typeof_specifier] = STATE(3531), - [sym_atomic_specifier] = STATE(3531), - [sym_generic_type_specifier] = STATE(3531), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7718), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [3799] = { + [sym_identifier] = ACTIONS(7282), + [anon_sym_COMMA] = ACTIONS(7284), + [anon_sym_LPAREN2] = ACTIONS(7284), + [anon_sym_STAR] = ACTIONS(7284), + [anon_sym_SEMI] = ACTIONS(7284), + [anon_sym___attribute] = ACTIONS(7282), + [anon_sym___attribute__] = ACTIONS(7282), + [anon_sym___based] = ACTIONS(7282), + [anon_sym_LBRACE] = ACTIONS(7284), + [anon_sym_LBRACK] = ACTIONS(7284), + [anon_sym_EQ] = ACTIONS(7284), + [anon_sym_const] = ACTIONS(7282), + [anon_sym_volatile] = ACTIONS(7282), + [anon_sym_restrict] = ACTIONS(7282), + [anon_sym__Atomic] = ACTIONS(7282), + [anon_sym_in] = ACTIONS(7282), + [anon_sym_out] = ACTIONS(7282), + [anon_sym_inout] = ACTIONS(7282), + [anon_sym_bycopy] = ACTIONS(7282), + [anon_sym_byref] = ACTIONS(7282), + [anon_sym_oneway] = ACTIONS(7282), + [anon_sym__Nullable] = ACTIONS(7282), + [anon_sym__Nonnull] = ACTIONS(7282), + [anon_sym__Nullable_result] = ACTIONS(7282), + [anon_sym__Null_unspecified] = ACTIONS(7282), + [anon_sym___autoreleasing] = ACTIONS(7282), + [anon_sym___nullable] = ACTIONS(7282), + [anon_sym___nonnull] = ACTIONS(7282), + [anon_sym___strong] = ACTIONS(7282), + [anon_sym___weak] = ACTIONS(7282), + [anon_sym___bridge] = ACTIONS(7282), + [anon_sym___bridge_transfer] = ACTIONS(7282), + [anon_sym___bridge_retained] = ACTIONS(7282), + [anon_sym___unsafe_unretained] = ACTIONS(7282), + [anon_sym___block] = ACTIONS(7282), + [anon_sym___kindof] = ACTIONS(7282), + [anon_sym___unused] = ACTIONS(7282), + [anon_sym__Complex] = ACTIONS(7282), + [anon_sym___complex] = ACTIONS(7282), + [anon_sym_IBOutlet] = ACTIONS(7282), + [anon_sym_IBInspectable] = ACTIONS(7282), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7282), [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7718), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7718), - [sym_IMP] = ACTIONS(7718), - [sym_BOOL] = ACTIONS(7718), - [sym_auto] = ACTIONS(7718), + [sym_method_attribute_specifier] = ACTIONS(7282), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7282), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7282), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7282), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7282), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7282), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7282), + [anon_sym_NS_AVAILABLE] = ACTIONS(7282), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7282), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7282), + [anon_sym_API_AVAILABLE] = ACTIONS(7282), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7282), + [anon_sym_API_DEPRECATED] = ACTIONS(7282), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7282), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7282), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7282), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7282), + [anon_sym___deprecated_msg] = ACTIONS(7282), + [anon_sym___deprecated_enum_msg] = ACTIONS(7282), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7282), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7282), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7282), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7282), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -568345,73 +560798,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3850] = { - [sym_identifier] = ACTIONS(7360), - [anon_sym_COMMA] = ACTIONS(7362), - [anon_sym_LPAREN2] = ACTIONS(7362), - [anon_sym_STAR] = ACTIONS(7362), - [anon_sym_SEMI] = ACTIONS(7362), - [anon_sym___attribute] = ACTIONS(7360), - [anon_sym___attribute__] = ACTIONS(7360), - [anon_sym___based] = ACTIONS(7360), - [anon_sym_LBRACE] = ACTIONS(7362), - [anon_sym_LBRACK] = ACTIONS(7362), - [anon_sym_EQ] = ACTIONS(7362), - [anon_sym_const] = ACTIONS(7360), - [anon_sym_volatile] = ACTIONS(7360), - [anon_sym_restrict] = ACTIONS(7360), - [anon_sym__Atomic] = ACTIONS(7360), - [anon_sym_in] = ACTIONS(7360), - [anon_sym_out] = ACTIONS(7360), - [anon_sym_inout] = ACTIONS(7360), - [anon_sym_bycopy] = ACTIONS(7360), - [anon_sym_byref] = ACTIONS(7360), - [anon_sym_oneway] = ACTIONS(7360), - [anon_sym__Nullable] = ACTIONS(7360), - [anon_sym__Nonnull] = ACTIONS(7360), - [anon_sym__Nullable_result] = ACTIONS(7360), - [anon_sym__Null_unspecified] = ACTIONS(7360), - [anon_sym___autoreleasing] = ACTIONS(7360), - [anon_sym___nullable] = ACTIONS(7360), - [anon_sym___nonnull] = ACTIONS(7360), - [anon_sym___strong] = ACTIONS(7360), - [anon_sym___weak] = ACTIONS(7360), - [anon_sym___bridge] = ACTIONS(7360), - [anon_sym___bridge_transfer] = ACTIONS(7360), - [anon_sym___bridge_retained] = ACTIONS(7360), - [anon_sym___unsafe_unretained] = ACTIONS(7360), - [anon_sym___block] = ACTIONS(7360), - [anon_sym___kindof] = ACTIONS(7360), - [anon_sym___unused] = ACTIONS(7360), - [anon_sym__Complex] = ACTIONS(7360), - [anon_sym___complex] = ACTIONS(7360), - [anon_sym_IBOutlet] = ACTIONS(7360), - [anon_sym_IBInspectable] = ACTIONS(7360), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7360), + [3800] = { + [sym_identifier] = ACTIONS(2256), + [anon_sym_COMMA] = ACTIONS(7280), + [anon_sym_LPAREN2] = ACTIONS(7280), + [anon_sym_STAR] = ACTIONS(7280), + [anon_sym_SEMI] = ACTIONS(7280), + [anon_sym___attribute] = ACTIONS(2256), + [anon_sym___attribute__] = ACTIONS(2256), + [anon_sym___based] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(7280), + [anon_sym_LBRACK] = ACTIONS(7280), + [anon_sym_EQ] = ACTIONS(7280), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_volatile] = ACTIONS(2256), + [anon_sym_restrict] = ACTIONS(2256), + [anon_sym__Atomic] = ACTIONS(2256), + [anon_sym_in] = ACTIONS(2256), + [anon_sym_out] = ACTIONS(2256), + [anon_sym_inout] = ACTIONS(2256), + [anon_sym_bycopy] = ACTIONS(2256), + [anon_sym_byref] = ACTIONS(2256), + [anon_sym_oneway] = ACTIONS(2256), + [anon_sym__Nullable] = ACTIONS(2256), + [anon_sym__Nonnull] = ACTIONS(2256), + [anon_sym__Nullable_result] = ACTIONS(2256), + [anon_sym__Null_unspecified] = ACTIONS(2256), + [anon_sym___autoreleasing] = ACTIONS(2256), + [anon_sym___nullable] = ACTIONS(2256), + [anon_sym___nonnull] = ACTIONS(2256), + [anon_sym___strong] = ACTIONS(2256), + [anon_sym___weak] = ACTIONS(2256), + [anon_sym___bridge] = ACTIONS(2256), + [anon_sym___bridge_transfer] = ACTIONS(2256), + [anon_sym___bridge_retained] = ACTIONS(2256), + [anon_sym___unsafe_unretained] = ACTIONS(2256), + [anon_sym___block] = ACTIONS(2256), + [anon_sym___kindof] = ACTIONS(2256), + [anon_sym___unused] = ACTIONS(2256), + [anon_sym__Complex] = ACTIONS(2256), + [anon_sym___complex] = ACTIONS(2256), + [anon_sym_IBOutlet] = ACTIONS(2256), + [anon_sym_IBInspectable] = ACTIONS(2256), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(2256), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7360), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7360), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7360), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7360), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7360), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7360), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7360), - [anon_sym_NS_AVAILABLE] = ACTIONS(7360), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7360), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7360), - [anon_sym_API_AVAILABLE] = ACTIONS(7360), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7360), - [anon_sym_API_DEPRECATED] = ACTIONS(7360), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7360), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7360), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7360), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7360), - [anon_sym___deprecated_msg] = ACTIONS(7360), - [anon_sym___deprecated_enum_msg] = ACTIONS(7360), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7360), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7360), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7360), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7360), + [sym_method_attribute_specifier] = ACTIONS(2256), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(2256), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(2256), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE] = ACTIONS(2256), + [anon_sym___IOS_AVAILABLE] = ACTIONS(2256), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_API_AVAILABLE] = ACTIONS(2256), + [anon_sym_API_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_API_DEPRECATED] = ACTIONS(2256), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(2256), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(2256), + [anon_sym___deprecated_msg] = ACTIONS(2256), + [anon_sym___deprecated_enum_msg] = ACTIONS(2256), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(2256), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(2256), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(2256), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -568419,73 +560872,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3851] = { - [sym_type_qualifier] = STATE(3852), - [sym__type_specifier] = STATE(3544), - [sym_sized_type_specifier] = STATE(3544), - [sym_enum_specifier] = STATE(3544), - [sym_struct_specifier] = STATE(3544), - [sym_union_specifier] = STATE(3544), - [sym_macro_type_specifier] = STATE(3544), - [sym_typeof_specifier] = STATE(3544), - [sym_atomic_specifier] = STATE(3544), - [sym_generic_type_specifier] = STATE(3544), - [aux_sym_type_definition_repeat1] = STATE(3852), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7782), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [3801] = { + [sym_identifier] = ACTIONS(8498), + [anon_sym_COMMA] = ACTIONS(8500), + [anon_sym_RPAREN] = ACTIONS(8500), + [anon_sym_LPAREN2] = ACTIONS(8500), + [anon_sym_STAR] = ACTIONS(8500), + [anon_sym_GT] = ACTIONS(8500), + [anon_sym___attribute] = ACTIONS(8498), + [anon_sym___attribute__] = ACTIONS(8498), + [anon_sym___based] = ACTIONS(8498), + [anon_sym_LBRACE] = ACTIONS(8500), + [anon_sym_LBRACK] = ACTIONS(8500), + [anon_sym_const] = ACTIONS(8498), + [anon_sym_volatile] = ACTIONS(8498), + [anon_sym_restrict] = ACTIONS(8498), + [anon_sym__Atomic] = ACTIONS(8498), + [anon_sym_in] = ACTIONS(8498), + [anon_sym_out] = ACTIONS(8498), + [anon_sym_inout] = ACTIONS(8498), + [anon_sym_bycopy] = ACTIONS(8498), + [anon_sym_byref] = ACTIONS(8498), + [anon_sym_oneway] = ACTIONS(8498), + [anon_sym__Nullable] = ACTIONS(8498), + [anon_sym__Nonnull] = ACTIONS(8498), + [anon_sym__Nullable_result] = ACTIONS(8498), + [anon_sym__Null_unspecified] = ACTIONS(8498), + [anon_sym___autoreleasing] = ACTIONS(8498), + [anon_sym___nullable] = ACTIONS(8498), + [anon_sym___nonnull] = ACTIONS(8498), + [anon_sym___strong] = ACTIONS(8498), + [anon_sym___weak] = ACTIONS(8498), + [anon_sym___bridge] = ACTIONS(8498), + [anon_sym___bridge_transfer] = ACTIONS(8498), + [anon_sym___bridge_retained] = ACTIONS(8498), + [anon_sym___unsafe_unretained] = ACTIONS(8498), + [anon_sym___block] = ACTIONS(8498), + [anon_sym___kindof] = ACTIONS(8498), + [anon_sym___unused] = ACTIONS(8498), + [anon_sym__Complex] = ACTIONS(8498), + [anon_sym___complex] = ACTIONS(8498), + [anon_sym_IBOutlet] = ACTIONS(8498), + [anon_sym_IBInspectable] = ACTIONS(8498), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8498), [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7782), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7782), - [sym_IMP] = ACTIONS(7782), - [sym_BOOL] = ACTIONS(7782), - [sym_auto] = ACTIONS(7782), + [sym_method_attribute_specifier] = ACTIONS(8498), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8498), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8498), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8498), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8498), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8498), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8498), + [anon_sym_NS_AVAILABLE] = ACTIONS(8498), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8498), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8498), + [anon_sym_API_AVAILABLE] = ACTIONS(8498), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8498), + [anon_sym_API_DEPRECATED] = ACTIONS(8498), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8498), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8498), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8498), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8498), + [anon_sym___deprecated_msg] = ACTIONS(8498), + [anon_sym___deprecated_enum_msg] = ACTIONS(8498), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8498), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8498), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8498), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8498), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -568493,73 +560946,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3852] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3468), - [sym_sized_type_specifier] = STATE(3468), - [sym_enum_specifier] = STATE(3468), - [sym_struct_specifier] = STATE(3468), - [sym_union_specifier] = STATE(3468), - [sym_macro_type_specifier] = STATE(3468), - [sym_typeof_specifier] = STATE(3468), - [sym_atomic_specifier] = STATE(3468), - [sym_generic_type_specifier] = STATE(3468), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7722), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [3802] = { + [sym_identifier] = ACTIONS(8654), + [anon_sym_COMMA] = ACTIONS(8656), + [anon_sym_RPAREN] = ACTIONS(8656), + [anon_sym_LPAREN2] = ACTIONS(8656), + [anon_sym_STAR] = ACTIONS(8656), + [anon_sym_GT] = ACTIONS(8656), + [anon_sym___attribute] = ACTIONS(8654), + [anon_sym___attribute__] = ACTIONS(8654), + [anon_sym___based] = ACTIONS(8654), + [anon_sym_LBRACE] = ACTIONS(8656), + [anon_sym_LBRACK] = ACTIONS(8656), + [anon_sym_const] = ACTIONS(8654), + [anon_sym_volatile] = ACTIONS(8654), + [anon_sym_restrict] = ACTIONS(8654), + [anon_sym__Atomic] = ACTIONS(8654), + [anon_sym_in] = ACTIONS(8654), + [anon_sym_out] = ACTIONS(8654), + [anon_sym_inout] = ACTIONS(8654), + [anon_sym_bycopy] = ACTIONS(8654), + [anon_sym_byref] = ACTIONS(8654), + [anon_sym_oneway] = ACTIONS(8654), + [anon_sym__Nullable] = ACTIONS(8654), + [anon_sym__Nonnull] = ACTIONS(8654), + [anon_sym__Nullable_result] = ACTIONS(8654), + [anon_sym__Null_unspecified] = ACTIONS(8654), + [anon_sym___autoreleasing] = ACTIONS(8654), + [anon_sym___nullable] = ACTIONS(8654), + [anon_sym___nonnull] = ACTIONS(8654), + [anon_sym___strong] = ACTIONS(8654), + [anon_sym___weak] = ACTIONS(8654), + [anon_sym___bridge] = ACTIONS(8654), + [anon_sym___bridge_transfer] = ACTIONS(8654), + [anon_sym___bridge_retained] = ACTIONS(8654), + [anon_sym___unsafe_unretained] = ACTIONS(8654), + [anon_sym___block] = ACTIONS(8654), + [anon_sym___kindof] = ACTIONS(8654), + [anon_sym___unused] = ACTIONS(8654), + [anon_sym__Complex] = ACTIONS(8654), + [anon_sym___complex] = ACTIONS(8654), + [anon_sym_IBOutlet] = ACTIONS(8654), + [anon_sym_IBInspectable] = ACTIONS(8654), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8654), [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7722), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7722), - [sym_IMP] = ACTIONS(7722), - [sym_BOOL] = ACTIONS(7722), - [sym_auto] = ACTIONS(7722), + [sym_method_attribute_specifier] = ACTIONS(8654), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8654), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8654), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8654), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8654), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8654), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8654), + [anon_sym_NS_AVAILABLE] = ACTIONS(8654), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8654), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8654), + [anon_sym_API_AVAILABLE] = ACTIONS(8654), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8654), + [anon_sym_API_DEPRECATED] = ACTIONS(8654), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8654), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8654), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8654), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8654), + [anon_sym___deprecated_msg] = ACTIONS(8654), + [anon_sym___deprecated_enum_msg] = ACTIONS(8654), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8654), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8654), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8654), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8654), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -568567,73 +561020,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3853] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3597), - [sym_sized_type_specifier] = STATE(3597), - [sym_enum_specifier] = STATE(3597), - [sym_struct_specifier] = STATE(3597), - [sym_union_specifier] = STATE(3597), - [sym_macro_type_specifier] = STATE(3597), - [sym_typeof_specifier] = STATE(3597), - [sym_atomic_specifier] = STATE(3597), - [sym_generic_type_specifier] = STATE(3597), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(9067), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [3803] = { + [sym_identifier] = ACTIONS(8398), + [anon_sym_COMMA] = ACTIONS(8400), + [anon_sym_RPAREN] = ACTIONS(8400), + [anon_sym_LPAREN2] = ACTIONS(8400), + [anon_sym_STAR] = ACTIONS(8400), + [anon_sym_GT] = ACTIONS(8400), + [anon_sym___attribute] = ACTIONS(8398), + [anon_sym___attribute__] = ACTIONS(8398), + [anon_sym___based] = ACTIONS(8398), + [anon_sym_LBRACE] = ACTIONS(8400), + [anon_sym_LBRACK] = ACTIONS(8400), + [anon_sym_const] = ACTIONS(8398), + [anon_sym_volatile] = ACTIONS(8398), + [anon_sym_restrict] = ACTIONS(8398), + [anon_sym__Atomic] = ACTIONS(8398), + [anon_sym_in] = ACTIONS(8398), + [anon_sym_out] = ACTIONS(8398), + [anon_sym_inout] = ACTIONS(8398), + [anon_sym_bycopy] = ACTIONS(8398), + [anon_sym_byref] = ACTIONS(8398), + [anon_sym_oneway] = ACTIONS(8398), + [anon_sym__Nullable] = ACTIONS(8398), + [anon_sym__Nonnull] = ACTIONS(8398), + [anon_sym__Nullable_result] = ACTIONS(8398), + [anon_sym__Null_unspecified] = ACTIONS(8398), + [anon_sym___autoreleasing] = ACTIONS(8398), + [anon_sym___nullable] = ACTIONS(8398), + [anon_sym___nonnull] = ACTIONS(8398), + [anon_sym___strong] = ACTIONS(8398), + [anon_sym___weak] = ACTIONS(8398), + [anon_sym___bridge] = ACTIONS(8398), + [anon_sym___bridge_transfer] = ACTIONS(8398), + [anon_sym___bridge_retained] = ACTIONS(8398), + [anon_sym___unsafe_unretained] = ACTIONS(8398), + [anon_sym___block] = ACTIONS(8398), + [anon_sym___kindof] = ACTIONS(8398), + [anon_sym___unused] = ACTIONS(8398), + [anon_sym__Complex] = ACTIONS(8398), + [anon_sym___complex] = ACTIONS(8398), + [anon_sym_IBOutlet] = ACTIONS(8398), + [anon_sym_IBInspectable] = ACTIONS(8398), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8398), [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(9067), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(9067), - [sym_IMP] = ACTIONS(9067), - [sym_BOOL] = ACTIONS(9067), - [sym_auto] = ACTIONS(9067), + [sym_method_attribute_specifier] = ACTIONS(8398), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8398), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8398), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8398), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8398), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8398), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8398), + [anon_sym_NS_AVAILABLE] = ACTIONS(8398), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8398), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8398), + [anon_sym_API_AVAILABLE] = ACTIONS(8398), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8398), + [anon_sym_API_DEPRECATED] = ACTIONS(8398), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8398), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8398), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8398), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8398), + [anon_sym___deprecated_msg] = ACTIONS(8398), + [anon_sym___deprecated_enum_msg] = ACTIONS(8398), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8398), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8398), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8398), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8398), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -568641,73 +561094,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3854] = { - [sym_type_qualifier] = STATE(3817), - [sym__type_specifier] = STATE(3460), - [sym_sized_type_specifier] = STATE(3460), - [sym_enum_specifier] = STATE(3460), - [sym_struct_specifier] = STATE(3460), - [sym_union_specifier] = STATE(3460), - [sym_macro_type_specifier] = STATE(3460), - [sym_typeof_specifier] = STATE(3460), - [sym_atomic_specifier] = STATE(3460), - [sym_generic_type_specifier] = STATE(3460), - [aux_sym_type_definition_repeat1] = STATE(3817), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(9069), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [3804] = { + [anon_sym_COMMA] = ACTIONS(9067), + [anon_sym_RPAREN] = ACTIONS(9067), + [anon_sym_LPAREN2] = ACTIONS(9067), + [anon_sym_SEMI] = ACTIONS(9067), + [anon_sym___attribute] = ACTIONS(9069), + [anon_sym___attribute__] = ACTIONS(9067), + [anon_sym_LBRACE] = ACTIONS(9067), + [anon_sym_LBRACK] = ACTIONS(9067), + [anon_sym_EQ] = ACTIONS(9067), + [anon_sym_const] = ACTIONS(9067), + [anon_sym_volatile] = ACTIONS(9067), + [anon_sym_restrict] = ACTIONS(9067), + [anon_sym__Atomic] = ACTIONS(9067), + [anon_sym_in] = ACTIONS(9069), + [anon_sym_out] = ACTIONS(9067), + [anon_sym_inout] = ACTIONS(9067), + [anon_sym_bycopy] = ACTIONS(9067), + [anon_sym_byref] = ACTIONS(9067), + [anon_sym_oneway] = ACTIONS(9067), + [anon_sym__Nullable] = ACTIONS(9069), + [anon_sym__Nonnull] = ACTIONS(9067), + [anon_sym__Nullable_result] = ACTIONS(9067), + [anon_sym__Null_unspecified] = ACTIONS(9067), + [anon_sym___autoreleasing] = ACTIONS(9067), + [anon_sym___nullable] = ACTIONS(9067), + [anon_sym___nonnull] = ACTIONS(9067), + [anon_sym___strong] = ACTIONS(9067), + [anon_sym___weak] = ACTIONS(9067), + [anon_sym___bridge] = ACTIONS(9069), + [anon_sym___bridge_transfer] = ACTIONS(9067), + [anon_sym___bridge_retained] = ACTIONS(9067), + [anon_sym___unsafe_unretained] = ACTIONS(9067), + [anon_sym___block] = ACTIONS(9067), + [anon_sym___kindof] = ACTIONS(9067), + [anon_sym___unused] = ACTIONS(9067), + [anon_sym__Complex] = ACTIONS(9067), + [anon_sym___complex] = ACTIONS(9067), + [anon_sym_IBOutlet] = ACTIONS(9067), + [anon_sym_IBInspectable] = ACTIONS(9067), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9067), [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(9069), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(9069), - [sym_IMP] = ACTIONS(9069), - [sym_BOOL] = ACTIONS(9069), - [sym_auto] = ACTIONS(9069), + [sym_method_attribute_specifier] = ACTIONS(9067), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9067), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9067), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(9067), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9067), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9067), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9067), + [anon_sym_NS_AVAILABLE] = ACTIONS(9069), + [anon_sym___IOS_AVAILABLE] = ACTIONS(9067), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9067), + [anon_sym_API_AVAILABLE] = ACTIONS(9067), + [anon_sym_API_UNAVAILABLE] = ACTIONS(9067), + [anon_sym_API_DEPRECATED] = ACTIONS(9067), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9067), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9067), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9067), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9067), + [anon_sym___deprecated_msg] = ACTIONS(9067), + [anon_sym___deprecated_enum_msg] = ACTIONS(9067), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9067), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9067), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9067), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9067), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(9067), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(9067), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -568715,73 +561168,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3855] = { - [sym_type_qualifier] = STATE(3838), - [sym__type_specifier] = STATE(3452), - [sym_sized_type_specifier] = STATE(3452), - [sym_enum_specifier] = STATE(3452), - [sym_struct_specifier] = STATE(3452), - [sym_union_specifier] = STATE(3452), - [sym_macro_type_specifier] = STATE(3452), - [sym_typeof_specifier] = STATE(3452), - [sym_atomic_specifier] = STATE(3452), - [sym_generic_type_specifier] = STATE(3452), - [aux_sym_type_definition_repeat1] = STATE(3838), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7754), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [3805] = { + [sym_identifier] = ACTIONS(8596), + [anon_sym_COMMA] = ACTIONS(8598), + [anon_sym_RPAREN] = ACTIONS(8598), + [anon_sym_LPAREN2] = ACTIONS(8598), + [anon_sym_STAR] = ACTIONS(8598), + [anon_sym_GT] = ACTIONS(8598), + [anon_sym___attribute] = ACTIONS(8596), + [anon_sym___attribute__] = ACTIONS(8596), + [anon_sym___based] = ACTIONS(8596), + [anon_sym_LBRACE] = ACTIONS(8598), + [anon_sym_LBRACK] = ACTIONS(8598), + [anon_sym_const] = ACTIONS(8596), + [anon_sym_volatile] = ACTIONS(8596), + [anon_sym_restrict] = ACTIONS(8596), + [anon_sym__Atomic] = ACTIONS(8596), + [anon_sym_in] = ACTIONS(8596), + [anon_sym_out] = ACTIONS(8596), + [anon_sym_inout] = ACTIONS(8596), + [anon_sym_bycopy] = ACTIONS(8596), + [anon_sym_byref] = ACTIONS(8596), + [anon_sym_oneway] = ACTIONS(8596), + [anon_sym__Nullable] = ACTIONS(8596), + [anon_sym__Nonnull] = ACTIONS(8596), + [anon_sym__Nullable_result] = ACTIONS(8596), + [anon_sym__Null_unspecified] = ACTIONS(8596), + [anon_sym___autoreleasing] = ACTIONS(8596), + [anon_sym___nullable] = ACTIONS(8596), + [anon_sym___nonnull] = ACTIONS(8596), + [anon_sym___strong] = ACTIONS(8596), + [anon_sym___weak] = ACTIONS(8596), + [anon_sym___bridge] = ACTIONS(8596), + [anon_sym___bridge_transfer] = ACTIONS(8596), + [anon_sym___bridge_retained] = ACTIONS(8596), + [anon_sym___unsafe_unretained] = ACTIONS(8596), + [anon_sym___block] = ACTIONS(8596), + [anon_sym___kindof] = ACTIONS(8596), + [anon_sym___unused] = ACTIONS(8596), + [anon_sym__Complex] = ACTIONS(8596), + [anon_sym___complex] = ACTIONS(8596), + [anon_sym_IBOutlet] = ACTIONS(8596), + [anon_sym_IBInspectable] = ACTIONS(8596), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8596), [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7754), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7754), - [sym_IMP] = ACTIONS(7754), - [sym_BOOL] = ACTIONS(7754), - [sym_auto] = ACTIONS(7754), + [sym_method_attribute_specifier] = ACTIONS(8596), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8596), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8596), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8596), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8596), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8596), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8596), + [anon_sym_NS_AVAILABLE] = ACTIONS(8596), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8596), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8596), + [anon_sym_API_AVAILABLE] = ACTIONS(8596), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8596), + [anon_sym_API_DEPRECATED] = ACTIONS(8596), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8596), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8596), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8596), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8596), + [anon_sym___deprecated_msg] = ACTIONS(8596), + [anon_sym___deprecated_enum_msg] = ACTIONS(8596), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8596), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8596), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8596), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8596), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -568789,73 +561242,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3856] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3460), - [sym_sized_type_specifier] = STATE(3460), - [sym_enum_specifier] = STATE(3460), - [sym_struct_specifier] = STATE(3460), - [sym_union_specifier] = STATE(3460), - [sym_macro_type_specifier] = STATE(3460), - [sym_typeof_specifier] = STATE(3460), - [sym_atomic_specifier] = STATE(3460), - [sym_generic_type_specifier] = STATE(3460), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(9069), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [3806] = { + [sym_identifier] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8404), + [anon_sym_RPAREN] = ACTIONS(8404), + [anon_sym_LPAREN2] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8404), + [anon_sym_GT] = ACTIONS(8404), + [anon_sym___attribute] = ACTIONS(8402), + [anon_sym___attribute__] = ACTIONS(8402), + [anon_sym___based] = ACTIONS(8402), + [anon_sym_LBRACE] = ACTIONS(8404), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_const] = ACTIONS(8402), + [anon_sym_volatile] = ACTIONS(8402), + [anon_sym_restrict] = ACTIONS(8402), + [anon_sym__Atomic] = ACTIONS(8402), + [anon_sym_in] = ACTIONS(8402), + [anon_sym_out] = ACTIONS(8402), + [anon_sym_inout] = ACTIONS(8402), + [anon_sym_bycopy] = ACTIONS(8402), + [anon_sym_byref] = ACTIONS(8402), + [anon_sym_oneway] = ACTIONS(8402), + [anon_sym__Nullable] = ACTIONS(8402), + [anon_sym__Nonnull] = ACTIONS(8402), + [anon_sym__Nullable_result] = ACTIONS(8402), + [anon_sym__Null_unspecified] = ACTIONS(8402), + [anon_sym___autoreleasing] = ACTIONS(8402), + [anon_sym___nullable] = ACTIONS(8402), + [anon_sym___nonnull] = ACTIONS(8402), + [anon_sym___strong] = ACTIONS(8402), + [anon_sym___weak] = ACTIONS(8402), + [anon_sym___bridge] = ACTIONS(8402), + [anon_sym___bridge_transfer] = ACTIONS(8402), + [anon_sym___bridge_retained] = ACTIONS(8402), + [anon_sym___unsafe_unretained] = ACTIONS(8402), + [anon_sym___block] = ACTIONS(8402), + [anon_sym___kindof] = ACTIONS(8402), + [anon_sym___unused] = ACTIONS(8402), + [anon_sym__Complex] = ACTIONS(8402), + [anon_sym___complex] = ACTIONS(8402), + [anon_sym_IBOutlet] = ACTIONS(8402), + [anon_sym_IBInspectable] = ACTIONS(8402), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8402), [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(9069), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(9069), - [sym_IMP] = ACTIONS(9069), - [sym_BOOL] = ACTIONS(9069), - [sym_auto] = ACTIONS(9069), + [sym_method_attribute_specifier] = ACTIONS(8402), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8402), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8402), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8402), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8402), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8402), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8402), + [anon_sym_NS_AVAILABLE] = ACTIONS(8402), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8402), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8402), + [anon_sym_API_AVAILABLE] = ACTIONS(8402), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8402), + [anon_sym_API_DEPRECATED] = ACTIONS(8402), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8402), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8402), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8402), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8402), + [anon_sym___deprecated_msg] = ACTIONS(8402), + [anon_sym___deprecated_enum_msg] = ACTIONS(8402), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8402), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8402), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8402), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8402), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -568863,73 +561316,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3857] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3524), - [sym_sized_type_specifier] = STATE(3524), - [sym_enum_specifier] = STATE(3524), - [sym_struct_specifier] = STATE(3524), - [sym_union_specifier] = STATE(3524), - [sym_macro_type_specifier] = STATE(3524), - [sym_typeof_specifier] = STATE(3524), - [sym_atomic_specifier] = STATE(3524), - [sym_generic_type_specifier] = STATE(3524), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(9071), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [3807] = { + [sym_identifier] = ACTIONS(8516), + [anon_sym_COMMA] = ACTIONS(8518), + [anon_sym_RPAREN] = ACTIONS(8518), + [anon_sym_LPAREN2] = ACTIONS(8518), + [anon_sym_STAR] = ACTIONS(8518), + [anon_sym_GT] = ACTIONS(8518), + [anon_sym___attribute] = ACTIONS(8516), + [anon_sym___attribute__] = ACTIONS(8516), + [anon_sym___based] = ACTIONS(8516), + [anon_sym_LBRACE] = ACTIONS(8518), + [anon_sym_LBRACK] = ACTIONS(8518), + [anon_sym_const] = ACTIONS(8516), + [anon_sym_volatile] = ACTIONS(8516), + [anon_sym_restrict] = ACTIONS(8516), + [anon_sym__Atomic] = ACTIONS(8516), + [anon_sym_in] = ACTIONS(8516), + [anon_sym_out] = ACTIONS(8516), + [anon_sym_inout] = ACTIONS(8516), + [anon_sym_bycopy] = ACTIONS(8516), + [anon_sym_byref] = ACTIONS(8516), + [anon_sym_oneway] = ACTIONS(8516), + [anon_sym__Nullable] = ACTIONS(8516), + [anon_sym__Nonnull] = ACTIONS(8516), + [anon_sym__Nullable_result] = ACTIONS(8516), + [anon_sym__Null_unspecified] = ACTIONS(8516), + [anon_sym___autoreleasing] = ACTIONS(8516), + [anon_sym___nullable] = ACTIONS(8516), + [anon_sym___nonnull] = ACTIONS(8516), + [anon_sym___strong] = ACTIONS(8516), + [anon_sym___weak] = ACTIONS(8516), + [anon_sym___bridge] = ACTIONS(8516), + [anon_sym___bridge_transfer] = ACTIONS(8516), + [anon_sym___bridge_retained] = ACTIONS(8516), + [anon_sym___unsafe_unretained] = ACTIONS(8516), + [anon_sym___block] = ACTIONS(8516), + [anon_sym___kindof] = ACTIONS(8516), + [anon_sym___unused] = ACTIONS(8516), + [anon_sym__Complex] = ACTIONS(8516), + [anon_sym___complex] = ACTIONS(8516), + [anon_sym_IBOutlet] = ACTIONS(8516), + [anon_sym_IBInspectable] = ACTIONS(8516), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8516), [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(9071), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(9071), - [sym_IMP] = ACTIONS(9071), - [sym_BOOL] = ACTIONS(9071), - [sym_auto] = ACTIONS(9071), + [sym_method_attribute_specifier] = ACTIONS(8516), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8516), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8516), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8516), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8516), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8516), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8516), + [anon_sym_NS_AVAILABLE] = ACTIONS(8516), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8516), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8516), + [anon_sym_API_AVAILABLE] = ACTIONS(8516), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8516), + [anon_sym_API_DEPRECATED] = ACTIONS(8516), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8516), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8516), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8516), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8516), + [anon_sym___deprecated_msg] = ACTIONS(8516), + [anon_sym___deprecated_enum_msg] = ACTIONS(8516), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8516), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8516), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8516), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8516), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -568937,73 +561390,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3858] = { - [sym_type_qualifier] = STATE(3912), - [sym__type_specifier] = STATE(3486), - [sym_sized_type_specifier] = STATE(3486), - [sym_enum_specifier] = STATE(3486), - [sym_struct_specifier] = STATE(3486), - [sym_union_specifier] = STATE(3486), - [sym_macro_type_specifier] = STATE(3486), - [sym_typeof_specifier] = STATE(3486), - [sym_atomic_specifier] = STATE(3486), - [sym_generic_type_specifier] = STATE(3486), - [aux_sym_type_definition_repeat1] = STATE(3912), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(9073), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [3808] = { + [sym_identifier] = ACTIONS(8370), + [anon_sym_COMMA] = ACTIONS(8372), + [anon_sym_RPAREN] = ACTIONS(8372), + [anon_sym_LPAREN2] = ACTIONS(8372), + [anon_sym_STAR] = ACTIONS(8372), + [anon_sym_GT] = ACTIONS(8372), + [anon_sym___attribute] = ACTIONS(8370), + [anon_sym___attribute__] = ACTIONS(8370), + [anon_sym___based] = ACTIONS(8370), + [anon_sym_LBRACE] = ACTIONS(8372), + [anon_sym_LBRACK] = ACTIONS(8372), + [anon_sym_const] = ACTIONS(8370), + [anon_sym_volatile] = ACTIONS(8370), + [anon_sym_restrict] = ACTIONS(8370), + [anon_sym__Atomic] = ACTIONS(8370), + [anon_sym_in] = ACTIONS(8370), + [anon_sym_out] = ACTIONS(8370), + [anon_sym_inout] = ACTIONS(8370), + [anon_sym_bycopy] = ACTIONS(8370), + [anon_sym_byref] = ACTIONS(8370), + [anon_sym_oneway] = ACTIONS(8370), + [anon_sym__Nullable] = ACTIONS(8370), + [anon_sym__Nonnull] = ACTIONS(8370), + [anon_sym__Nullable_result] = ACTIONS(8370), + [anon_sym__Null_unspecified] = ACTIONS(8370), + [anon_sym___autoreleasing] = ACTIONS(8370), + [anon_sym___nullable] = ACTIONS(8370), + [anon_sym___nonnull] = ACTIONS(8370), + [anon_sym___strong] = ACTIONS(8370), + [anon_sym___weak] = ACTIONS(8370), + [anon_sym___bridge] = ACTIONS(8370), + [anon_sym___bridge_transfer] = ACTIONS(8370), + [anon_sym___bridge_retained] = ACTIONS(8370), + [anon_sym___unsafe_unretained] = ACTIONS(8370), + [anon_sym___block] = ACTIONS(8370), + [anon_sym___kindof] = ACTIONS(8370), + [anon_sym___unused] = ACTIONS(8370), + [anon_sym__Complex] = ACTIONS(8370), + [anon_sym___complex] = ACTIONS(8370), + [anon_sym_IBOutlet] = ACTIONS(8370), + [anon_sym_IBInspectable] = ACTIONS(8370), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8370), [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(9073), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(9073), - [sym_IMP] = ACTIONS(9073), - [sym_BOOL] = ACTIONS(9073), - [sym_auto] = ACTIONS(9073), + [sym_method_attribute_specifier] = ACTIONS(8370), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8370), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8370), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8370), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8370), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8370), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8370), + [anon_sym_NS_AVAILABLE] = ACTIONS(8370), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8370), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8370), + [anon_sym_API_AVAILABLE] = ACTIONS(8370), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8370), + [anon_sym_API_DEPRECATED] = ACTIONS(8370), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8370), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8370), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8370), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8370), + [anon_sym___deprecated_msg] = ACTIONS(8370), + [anon_sym___deprecated_enum_msg] = ACTIONS(8370), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8370), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8370), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8370), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8370), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -569011,7 +561464,747 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3859] = { + [3809] = { + [sym_identifier] = ACTIONS(7310), + [anon_sym_COMMA] = ACTIONS(7312), + [anon_sym_LPAREN2] = ACTIONS(7312), + [anon_sym_STAR] = ACTIONS(7312), + [anon_sym_SEMI] = ACTIONS(7312), + [anon_sym___attribute] = ACTIONS(7310), + [anon_sym___attribute__] = ACTIONS(7310), + [anon_sym___based] = ACTIONS(7310), + [anon_sym_LBRACE] = ACTIONS(7312), + [anon_sym_LBRACK] = ACTIONS(7312), + [anon_sym_EQ] = ACTIONS(7312), + [anon_sym_const] = ACTIONS(7310), + [anon_sym_volatile] = ACTIONS(7310), + [anon_sym_restrict] = ACTIONS(7310), + [anon_sym__Atomic] = ACTIONS(7310), + [anon_sym_in] = ACTIONS(7310), + [anon_sym_out] = ACTIONS(7310), + [anon_sym_inout] = ACTIONS(7310), + [anon_sym_bycopy] = ACTIONS(7310), + [anon_sym_byref] = ACTIONS(7310), + [anon_sym_oneway] = ACTIONS(7310), + [anon_sym__Nullable] = ACTIONS(7310), + [anon_sym__Nonnull] = ACTIONS(7310), + [anon_sym__Nullable_result] = ACTIONS(7310), + [anon_sym__Null_unspecified] = ACTIONS(7310), + [anon_sym___autoreleasing] = ACTIONS(7310), + [anon_sym___nullable] = ACTIONS(7310), + [anon_sym___nonnull] = ACTIONS(7310), + [anon_sym___strong] = ACTIONS(7310), + [anon_sym___weak] = ACTIONS(7310), + [anon_sym___bridge] = ACTIONS(7310), + [anon_sym___bridge_transfer] = ACTIONS(7310), + [anon_sym___bridge_retained] = ACTIONS(7310), + [anon_sym___unsafe_unretained] = ACTIONS(7310), + [anon_sym___block] = ACTIONS(7310), + [anon_sym___kindof] = ACTIONS(7310), + [anon_sym___unused] = ACTIONS(7310), + [anon_sym__Complex] = ACTIONS(7310), + [anon_sym___complex] = ACTIONS(7310), + [anon_sym_IBOutlet] = ACTIONS(7310), + [anon_sym_IBInspectable] = ACTIONS(7310), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7310), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7310), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7310), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7310), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7310), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7310), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7310), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7310), + [anon_sym_NS_AVAILABLE] = ACTIONS(7310), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7310), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7310), + [anon_sym_API_AVAILABLE] = ACTIONS(7310), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7310), + [anon_sym_API_DEPRECATED] = ACTIONS(7310), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7310), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7310), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7310), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7310), + [anon_sym___deprecated_msg] = ACTIONS(7310), + [anon_sym___deprecated_enum_msg] = ACTIONS(7310), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7310), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7310), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7310), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7310), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3810] = { + [sym_identifier] = ACTIONS(8524), + [anon_sym_COMMA] = ACTIONS(8526), + [anon_sym_RPAREN] = ACTIONS(8526), + [anon_sym_LPAREN2] = ACTIONS(8526), + [anon_sym_STAR] = ACTIONS(8526), + [anon_sym_GT] = ACTIONS(8526), + [anon_sym___attribute] = ACTIONS(8524), + [anon_sym___attribute__] = ACTIONS(8524), + [anon_sym___based] = ACTIONS(8524), + [anon_sym_LBRACE] = ACTIONS(8526), + [anon_sym_LBRACK] = ACTIONS(8526), + [anon_sym_const] = ACTIONS(8524), + [anon_sym_volatile] = ACTIONS(8524), + [anon_sym_restrict] = ACTIONS(8524), + [anon_sym__Atomic] = ACTIONS(8524), + [anon_sym_in] = ACTIONS(8524), + [anon_sym_out] = ACTIONS(8524), + [anon_sym_inout] = ACTIONS(8524), + [anon_sym_bycopy] = ACTIONS(8524), + [anon_sym_byref] = ACTIONS(8524), + [anon_sym_oneway] = ACTIONS(8524), + [anon_sym__Nullable] = ACTIONS(8524), + [anon_sym__Nonnull] = ACTIONS(8524), + [anon_sym__Nullable_result] = ACTIONS(8524), + [anon_sym__Null_unspecified] = ACTIONS(8524), + [anon_sym___autoreleasing] = ACTIONS(8524), + [anon_sym___nullable] = ACTIONS(8524), + [anon_sym___nonnull] = ACTIONS(8524), + [anon_sym___strong] = ACTIONS(8524), + [anon_sym___weak] = ACTIONS(8524), + [anon_sym___bridge] = ACTIONS(8524), + [anon_sym___bridge_transfer] = ACTIONS(8524), + [anon_sym___bridge_retained] = ACTIONS(8524), + [anon_sym___unsafe_unretained] = ACTIONS(8524), + [anon_sym___block] = ACTIONS(8524), + [anon_sym___kindof] = ACTIONS(8524), + [anon_sym___unused] = ACTIONS(8524), + [anon_sym__Complex] = ACTIONS(8524), + [anon_sym___complex] = ACTIONS(8524), + [anon_sym_IBOutlet] = ACTIONS(8524), + [anon_sym_IBInspectable] = ACTIONS(8524), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8524), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8524), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8524), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8524), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8524), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8524), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8524), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8524), + [anon_sym_NS_AVAILABLE] = ACTIONS(8524), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8524), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8524), + [anon_sym_API_AVAILABLE] = ACTIONS(8524), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8524), + [anon_sym_API_DEPRECATED] = ACTIONS(8524), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8524), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8524), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8524), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8524), + [anon_sym___deprecated_msg] = ACTIONS(8524), + [anon_sym___deprecated_enum_msg] = ACTIONS(8524), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8524), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8524), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8524), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8524), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3811] = { + [sym_identifier] = ACTIONS(8333), + [anon_sym_COMMA] = ACTIONS(8335), + [anon_sym_RPAREN] = ACTIONS(8335), + [anon_sym_LPAREN2] = ACTIONS(8335), + [anon_sym_STAR] = ACTIONS(8335), + [anon_sym_GT] = ACTIONS(8335), + [anon_sym___attribute] = ACTIONS(8333), + [anon_sym___attribute__] = ACTIONS(8333), + [anon_sym___based] = ACTIONS(8333), + [anon_sym_LBRACE] = ACTIONS(8335), + [anon_sym_LBRACK] = ACTIONS(8335), + [anon_sym_const] = ACTIONS(8333), + [anon_sym_volatile] = ACTIONS(8333), + [anon_sym_restrict] = ACTIONS(8333), + [anon_sym__Atomic] = ACTIONS(8333), + [anon_sym_in] = ACTIONS(8333), + [anon_sym_out] = ACTIONS(8333), + [anon_sym_inout] = ACTIONS(8333), + [anon_sym_bycopy] = ACTIONS(8333), + [anon_sym_byref] = ACTIONS(8333), + [anon_sym_oneway] = ACTIONS(8333), + [anon_sym__Nullable] = ACTIONS(8333), + [anon_sym__Nonnull] = ACTIONS(8333), + [anon_sym__Nullable_result] = ACTIONS(8333), + [anon_sym__Null_unspecified] = ACTIONS(8333), + [anon_sym___autoreleasing] = ACTIONS(8333), + [anon_sym___nullable] = ACTIONS(8333), + [anon_sym___nonnull] = ACTIONS(8333), + [anon_sym___strong] = ACTIONS(8333), + [anon_sym___weak] = ACTIONS(8333), + [anon_sym___bridge] = ACTIONS(8333), + [anon_sym___bridge_transfer] = ACTIONS(8333), + [anon_sym___bridge_retained] = ACTIONS(8333), + [anon_sym___unsafe_unretained] = ACTIONS(8333), + [anon_sym___block] = ACTIONS(8333), + [anon_sym___kindof] = ACTIONS(8333), + [anon_sym___unused] = ACTIONS(8333), + [anon_sym__Complex] = ACTIONS(8333), + [anon_sym___complex] = ACTIONS(8333), + [anon_sym_IBOutlet] = ACTIONS(8333), + [anon_sym_IBInspectable] = ACTIONS(8333), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8333), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8333), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8333), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8333), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8333), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8333), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8333), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8333), + [anon_sym_NS_AVAILABLE] = ACTIONS(8333), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8333), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8333), + [anon_sym_API_AVAILABLE] = ACTIONS(8333), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8333), + [anon_sym_API_DEPRECATED] = ACTIONS(8333), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8333), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8333), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8333), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8333), + [anon_sym___deprecated_msg] = ACTIONS(8333), + [anon_sym___deprecated_enum_msg] = ACTIONS(8333), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8333), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8333), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8333), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8333), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3812] = { + [anon_sym_COMMA] = ACTIONS(9071), + [anon_sym_RPAREN] = ACTIONS(9071), + [anon_sym_LPAREN2] = ACTIONS(9071), + [anon_sym_SEMI] = ACTIONS(9071), + [anon_sym___attribute] = ACTIONS(9073), + [anon_sym___attribute__] = ACTIONS(9071), + [anon_sym_LBRACE] = ACTIONS(9071), + [anon_sym_LBRACK] = ACTIONS(9071), + [anon_sym_EQ] = ACTIONS(9071), + [anon_sym_const] = ACTIONS(9071), + [anon_sym_volatile] = ACTIONS(9071), + [anon_sym_restrict] = ACTIONS(9071), + [anon_sym__Atomic] = ACTIONS(9071), + [anon_sym_in] = ACTIONS(9073), + [anon_sym_out] = ACTIONS(9071), + [anon_sym_inout] = ACTIONS(9071), + [anon_sym_bycopy] = ACTIONS(9071), + [anon_sym_byref] = ACTIONS(9071), + [anon_sym_oneway] = ACTIONS(9071), + [anon_sym__Nullable] = ACTIONS(9073), + [anon_sym__Nonnull] = ACTIONS(9071), + [anon_sym__Nullable_result] = ACTIONS(9071), + [anon_sym__Null_unspecified] = ACTIONS(9071), + [anon_sym___autoreleasing] = ACTIONS(9071), + [anon_sym___nullable] = ACTIONS(9071), + [anon_sym___nonnull] = ACTIONS(9071), + [anon_sym___strong] = ACTIONS(9071), + [anon_sym___weak] = ACTIONS(9071), + [anon_sym___bridge] = ACTIONS(9073), + [anon_sym___bridge_transfer] = ACTIONS(9071), + [anon_sym___bridge_retained] = ACTIONS(9071), + [anon_sym___unsafe_unretained] = ACTIONS(9071), + [anon_sym___block] = ACTIONS(9071), + [anon_sym___kindof] = ACTIONS(9071), + [anon_sym___unused] = ACTIONS(9071), + [anon_sym__Complex] = ACTIONS(9071), + [anon_sym___complex] = ACTIONS(9071), + [anon_sym_IBOutlet] = ACTIONS(9071), + [anon_sym_IBInspectable] = ACTIONS(9071), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9071), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(9071), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9071), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9071), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(9071), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9071), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9071), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9071), + [anon_sym_NS_AVAILABLE] = ACTIONS(9073), + [anon_sym___IOS_AVAILABLE] = ACTIONS(9071), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9071), + [anon_sym_API_AVAILABLE] = ACTIONS(9071), + [anon_sym_API_UNAVAILABLE] = ACTIONS(9071), + [anon_sym_API_DEPRECATED] = ACTIONS(9071), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9071), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9071), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9071), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9071), + [anon_sym___deprecated_msg] = ACTIONS(9071), + [anon_sym___deprecated_enum_msg] = ACTIONS(9071), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9071), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9071), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9071), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9071), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(9071), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(9071), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3813] = { + [sym_identifier] = ACTIONS(8632), + [anon_sym_COMMA] = ACTIONS(8634), + [anon_sym_RPAREN] = ACTIONS(8634), + [anon_sym_LPAREN2] = ACTIONS(8634), + [anon_sym_STAR] = ACTIONS(8634), + [anon_sym_GT] = ACTIONS(8634), + [anon_sym___attribute] = ACTIONS(8632), + [anon_sym___attribute__] = ACTIONS(8632), + [anon_sym___based] = ACTIONS(8632), + [anon_sym_LBRACE] = ACTIONS(8634), + [anon_sym_LBRACK] = ACTIONS(8634), + [anon_sym_const] = ACTIONS(8632), + [anon_sym_volatile] = ACTIONS(8632), + [anon_sym_restrict] = ACTIONS(8632), + [anon_sym__Atomic] = ACTIONS(8632), + [anon_sym_in] = ACTIONS(8632), + [anon_sym_out] = ACTIONS(8632), + [anon_sym_inout] = ACTIONS(8632), + [anon_sym_bycopy] = ACTIONS(8632), + [anon_sym_byref] = ACTIONS(8632), + [anon_sym_oneway] = ACTIONS(8632), + [anon_sym__Nullable] = ACTIONS(8632), + [anon_sym__Nonnull] = ACTIONS(8632), + [anon_sym__Nullable_result] = ACTIONS(8632), + [anon_sym__Null_unspecified] = ACTIONS(8632), + [anon_sym___autoreleasing] = ACTIONS(8632), + [anon_sym___nullable] = ACTIONS(8632), + [anon_sym___nonnull] = ACTIONS(8632), + [anon_sym___strong] = ACTIONS(8632), + [anon_sym___weak] = ACTIONS(8632), + [anon_sym___bridge] = ACTIONS(8632), + [anon_sym___bridge_transfer] = ACTIONS(8632), + [anon_sym___bridge_retained] = ACTIONS(8632), + [anon_sym___unsafe_unretained] = ACTIONS(8632), + [anon_sym___block] = ACTIONS(8632), + [anon_sym___kindof] = ACTIONS(8632), + [anon_sym___unused] = ACTIONS(8632), + [anon_sym__Complex] = ACTIONS(8632), + [anon_sym___complex] = ACTIONS(8632), + [anon_sym_IBOutlet] = ACTIONS(8632), + [anon_sym_IBInspectable] = ACTIONS(8632), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8632), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8632), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8632), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8632), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8632), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8632), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8632), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8632), + [anon_sym_NS_AVAILABLE] = ACTIONS(8632), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8632), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8632), + [anon_sym_API_AVAILABLE] = ACTIONS(8632), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8632), + [anon_sym_API_DEPRECATED] = ACTIONS(8632), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8632), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8632), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8632), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8632), + [anon_sym___deprecated_msg] = ACTIONS(8632), + [anon_sym___deprecated_enum_msg] = ACTIONS(8632), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8632), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8632), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8632), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8632), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3814] = { + [sym_identifier] = ACTIONS(8482), + [anon_sym_COMMA] = ACTIONS(8484), + [anon_sym_RPAREN] = ACTIONS(8484), + [anon_sym_LPAREN2] = ACTIONS(8484), + [anon_sym_STAR] = ACTIONS(8484), + [anon_sym_GT] = ACTIONS(8484), + [anon_sym___attribute] = ACTIONS(8482), + [anon_sym___attribute__] = ACTIONS(8482), + [anon_sym___based] = ACTIONS(8482), + [anon_sym_LBRACE] = ACTIONS(8484), + [anon_sym_LBRACK] = ACTIONS(8484), + [anon_sym_const] = ACTIONS(8482), + [anon_sym_volatile] = ACTIONS(8482), + [anon_sym_restrict] = ACTIONS(8482), + [anon_sym__Atomic] = ACTIONS(8482), + [anon_sym_in] = ACTIONS(8482), + [anon_sym_out] = ACTIONS(8482), + [anon_sym_inout] = ACTIONS(8482), + [anon_sym_bycopy] = ACTIONS(8482), + [anon_sym_byref] = ACTIONS(8482), + [anon_sym_oneway] = ACTIONS(8482), + [anon_sym__Nullable] = ACTIONS(8482), + [anon_sym__Nonnull] = ACTIONS(8482), + [anon_sym__Nullable_result] = ACTIONS(8482), + [anon_sym__Null_unspecified] = ACTIONS(8482), + [anon_sym___autoreleasing] = ACTIONS(8482), + [anon_sym___nullable] = ACTIONS(8482), + [anon_sym___nonnull] = ACTIONS(8482), + [anon_sym___strong] = ACTIONS(8482), + [anon_sym___weak] = ACTIONS(8482), + [anon_sym___bridge] = ACTIONS(8482), + [anon_sym___bridge_transfer] = ACTIONS(8482), + [anon_sym___bridge_retained] = ACTIONS(8482), + [anon_sym___unsafe_unretained] = ACTIONS(8482), + [anon_sym___block] = ACTIONS(8482), + [anon_sym___kindof] = ACTIONS(8482), + [anon_sym___unused] = ACTIONS(8482), + [anon_sym__Complex] = ACTIONS(8482), + [anon_sym___complex] = ACTIONS(8482), + [anon_sym_IBOutlet] = ACTIONS(8482), + [anon_sym_IBInspectable] = ACTIONS(8482), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8482), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8482), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8482), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8482), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8482), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8482), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8482), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8482), + [anon_sym_NS_AVAILABLE] = ACTIONS(8482), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8482), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8482), + [anon_sym_API_AVAILABLE] = ACTIONS(8482), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8482), + [anon_sym_API_DEPRECATED] = ACTIONS(8482), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8482), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8482), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8482), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8482), + [anon_sym___deprecated_msg] = ACTIONS(8482), + [anon_sym___deprecated_enum_msg] = ACTIONS(8482), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8482), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8482), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8482), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8482), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3815] = { + [sym_identifier] = ACTIONS(8352), + [anon_sym_COMMA] = ACTIONS(8354), + [anon_sym_RPAREN] = ACTIONS(8354), + [anon_sym_LPAREN2] = ACTIONS(8354), + [anon_sym_STAR] = ACTIONS(8354), + [anon_sym_GT] = ACTIONS(8354), + [anon_sym___attribute] = ACTIONS(8352), + [anon_sym___attribute__] = ACTIONS(8352), + [anon_sym___based] = ACTIONS(8352), + [anon_sym_LBRACE] = ACTIONS(8354), + [anon_sym_LBRACK] = ACTIONS(8354), + [anon_sym_const] = ACTIONS(8352), + [anon_sym_volatile] = ACTIONS(8352), + [anon_sym_restrict] = ACTIONS(8352), + [anon_sym__Atomic] = ACTIONS(8352), + [anon_sym_in] = ACTIONS(8352), + [anon_sym_out] = ACTIONS(8352), + [anon_sym_inout] = ACTIONS(8352), + [anon_sym_bycopy] = ACTIONS(8352), + [anon_sym_byref] = ACTIONS(8352), + [anon_sym_oneway] = ACTIONS(8352), + [anon_sym__Nullable] = ACTIONS(8352), + [anon_sym__Nonnull] = ACTIONS(8352), + [anon_sym__Nullable_result] = ACTIONS(8352), + [anon_sym__Null_unspecified] = ACTIONS(8352), + [anon_sym___autoreleasing] = ACTIONS(8352), + [anon_sym___nullable] = ACTIONS(8352), + [anon_sym___nonnull] = ACTIONS(8352), + [anon_sym___strong] = ACTIONS(8352), + [anon_sym___weak] = ACTIONS(8352), + [anon_sym___bridge] = ACTIONS(8352), + [anon_sym___bridge_transfer] = ACTIONS(8352), + [anon_sym___bridge_retained] = ACTIONS(8352), + [anon_sym___unsafe_unretained] = ACTIONS(8352), + [anon_sym___block] = ACTIONS(8352), + [anon_sym___kindof] = ACTIONS(8352), + [anon_sym___unused] = ACTIONS(8352), + [anon_sym__Complex] = ACTIONS(8352), + [anon_sym___complex] = ACTIONS(8352), + [anon_sym_IBOutlet] = ACTIONS(8352), + [anon_sym_IBInspectable] = ACTIONS(8352), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8352), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8352), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8352), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8352), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8352), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8352), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8352), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8352), + [anon_sym_NS_AVAILABLE] = ACTIONS(8352), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8352), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8352), + [anon_sym_API_AVAILABLE] = ACTIONS(8352), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8352), + [anon_sym_API_DEPRECATED] = ACTIONS(8352), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8352), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8352), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8352), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8352), + [anon_sym___deprecated_msg] = ACTIONS(8352), + [anon_sym___deprecated_enum_msg] = ACTIONS(8352), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8352), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8352), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8352), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8352), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3816] = { + [sym_identifier] = ACTIONS(8532), + [anon_sym_COMMA] = ACTIONS(8534), + [anon_sym_RPAREN] = ACTIONS(8534), + [anon_sym_LPAREN2] = ACTIONS(8534), + [anon_sym_STAR] = ACTIONS(8534), + [anon_sym_GT] = ACTIONS(8534), + [anon_sym___attribute] = ACTIONS(8532), + [anon_sym___attribute__] = ACTIONS(8532), + [anon_sym___based] = ACTIONS(8532), + [anon_sym_LBRACE] = ACTIONS(8534), + [anon_sym_LBRACK] = ACTIONS(8534), + [anon_sym_const] = ACTIONS(8532), + [anon_sym_volatile] = ACTIONS(8532), + [anon_sym_restrict] = ACTIONS(8532), + [anon_sym__Atomic] = ACTIONS(8532), + [anon_sym_in] = ACTIONS(8532), + [anon_sym_out] = ACTIONS(8532), + [anon_sym_inout] = ACTIONS(8532), + [anon_sym_bycopy] = ACTIONS(8532), + [anon_sym_byref] = ACTIONS(8532), + [anon_sym_oneway] = ACTIONS(8532), + [anon_sym__Nullable] = ACTIONS(8532), + [anon_sym__Nonnull] = ACTIONS(8532), + [anon_sym__Nullable_result] = ACTIONS(8532), + [anon_sym__Null_unspecified] = ACTIONS(8532), + [anon_sym___autoreleasing] = ACTIONS(8532), + [anon_sym___nullable] = ACTIONS(8532), + [anon_sym___nonnull] = ACTIONS(8532), + [anon_sym___strong] = ACTIONS(8532), + [anon_sym___weak] = ACTIONS(8532), + [anon_sym___bridge] = ACTIONS(8532), + [anon_sym___bridge_transfer] = ACTIONS(8532), + [anon_sym___bridge_retained] = ACTIONS(8532), + [anon_sym___unsafe_unretained] = ACTIONS(8532), + [anon_sym___block] = ACTIONS(8532), + [anon_sym___kindof] = ACTIONS(8532), + [anon_sym___unused] = ACTIONS(8532), + [anon_sym__Complex] = ACTIONS(8532), + [anon_sym___complex] = ACTIONS(8532), + [anon_sym_IBOutlet] = ACTIONS(8532), + [anon_sym_IBInspectable] = ACTIONS(8532), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8532), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8532), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8532), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8532), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8532), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8532), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8532), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8532), + [anon_sym_NS_AVAILABLE] = ACTIONS(8532), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8532), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8532), + [anon_sym_API_AVAILABLE] = ACTIONS(8532), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8532), + [anon_sym_API_DEPRECATED] = ACTIONS(8532), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8532), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8532), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8532), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8532), + [anon_sym___deprecated_msg] = ACTIONS(8532), + [anon_sym___deprecated_enum_msg] = ACTIONS(8532), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8532), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8532), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8532), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8532), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3817] = { + [sym_identifier] = ACTIONS(8299), + [anon_sym_COMMA] = ACTIONS(8301), + [anon_sym_RPAREN] = ACTIONS(8301), + [anon_sym_LPAREN2] = ACTIONS(8301), + [anon_sym_STAR] = ACTIONS(8301), + [anon_sym_GT] = ACTIONS(8301), + [anon_sym___attribute] = ACTIONS(8299), + [anon_sym___attribute__] = ACTIONS(8299), + [anon_sym___based] = ACTIONS(8299), + [anon_sym_LBRACE] = ACTIONS(8301), + [anon_sym_LBRACK] = ACTIONS(8301), + [anon_sym_const] = ACTIONS(8299), + [anon_sym_volatile] = ACTIONS(8299), + [anon_sym_restrict] = ACTIONS(8299), + [anon_sym__Atomic] = ACTIONS(8299), + [anon_sym_in] = ACTIONS(8299), + [anon_sym_out] = ACTIONS(8299), + [anon_sym_inout] = ACTIONS(8299), + [anon_sym_bycopy] = ACTIONS(8299), + [anon_sym_byref] = ACTIONS(8299), + [anon_sym_oneway] = ACTIONS(8299), + [anon_sym__Nullable] = ACTIONS(8299), + [anon_sym__Nonnull] = ACTIONS(8299), + [anon_sym__Nullable_result] = ACTIONS(8299), + [anon_sym__Null_unspecified] = ACTIONS(8299), + [anon_sym___autoreleasing] = ACTIONS(8299), + [anon_sym___nullable] = ACTIONS(8299), + [anon_sym___nonnull] = ACTIONS(8299), + [anon_sym___strong] = ACTIONS(8299), + [anon_sym___weak] = ACTIONS(8299), + [anon_sym___bridge] = ACTIONS(8299), + [anon_sym___bridge_transfer] = ACTIONS(8299), + [anon_sym___bridge_retained] = ACTIONS(8299), + [anon_sym___unsafe_unretained] = ACTIONS(8299), + [anon_sym___block] = ACTIONS(8299), + [anon_sym___kindof] = ACTIONS(8299), + [anon_sym___unused] = ACTIONS(8299), + [anon_sym__Complex] = ACTIONS(8299), + [anon_sym___complex] = ACTIONS(8299), + [anon_sym_IBOutlet] = ACTIONS(8299), + [anon_sym_IBInspectable] = ACTIONS(8299), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8299), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8299), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8299), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8299), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8299), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8299), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8299), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8299), + [anon_sym_NS_AVAILABLE] = ACTIONS(8299), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8299), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8299), + [anon_sym_API_AVAILABLE] = ACTIONS(8299), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8299), + [anon_sym_API_DEPRECATED] = ACTIONS(8299), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8299), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8299), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8299), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8299), + [anon_sym___deprecated_msg] = ACTIONS(8299), + [anon_sym___deprecated_enum_msg] = ACTIONS(8299), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8299), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8299), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8299), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8299), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3818] = { + [sym_identifier] = ACTIONS(8520), + [anon_sym_COMMA] = ACTIONS(8522), + [anon_sym_RPAREN] = ACTIONS(8522), + [anon_sym_LPAREN2] = ACTIONS(8522), + [anon_sym_STAR] = ACTIONS(8522), + [anon_sym_GT] = ACTIONS(8522), + [anon_sym___attribute] = ACTIONS(8520), + [anon_sym___attribute__] = ACTIONS(8520), + [anon_sym___based] = ACTIONS(8520), + [anon_sym_LBRACE] = ACTIONS(8522), + [anon_sym_LBRACK] = ACTIONS(8522), + [anon_sym_const] = ACTIONS(8520), + [anon_sym_volatile] = ACTIONS(8520), + [anon_sym_restrict] = ACTIONS(8520), + [anon_sym__Atomic] = ACTIONS(8520), + [anon_sym_in] = ACTIONS(8520), + [anon_sym_out] = ACTIONS(8520), + [anon_sym_inout] = ACTIONS(8520), + [anon_sym_bycopy] = ACTIONS(8520), + [anon_sym_byref] = ACTIONS(8520), + [anon_sym_oneway] = ACTIONS(8520), + [anon_sym__Nullable] = ACTIONS(8520), + [anon_sym__Nonnull] = ACTIONS(8520), + [anon_sym__Nullable_result] = ACTIONS(8520), + [anon_sym__Null_unspecified] = ACTIONS(8520), + [anon_sym___autoreleasing] = ACTIONS(8520), + [anon_sym___nullable] = ACTIONS(8520), + [anon_sym___nonnull] = ACTIONS(8520), + [anon_sym___strong] = ACTIONS(8520), + [anon_sym___weak] = ACTIONS(8520), + [anon_sym___bridge] = ACTIONS(8520), + [anon_sym___bridge_transfer] = ACTIONS(8520), + [anon_sym___bridge_retained] = ACTIONS(8520), + [anon_sym___unsafe_unretained] = ACTIONS(8520), + [anon_sym___block] = ACTIONS(8520), + [anon_sym___kindof] = ACTIONS(8520), + [anon_sym___unused] = ACTIONS(8520), + [anon_sym__Complex] = ACTIONS(8520), + [anon_sym___complex] = ACTIONS(8520), + [anon_sym_IBOutlet] = ACTIONS(8520), + [anon_sym_IBInspectable] = ACTIONS(8520), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8520), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8520), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8520), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8520), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8520), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8520), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8520), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8520), + [anon_sym_NS_AVAILABLE] = ACTIONS(8520), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8520), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8520), + [anon_sym_API_AVAILABLE] = ACTIONS(8520), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8520), + [anon_sym_API_DEPRECATED] = ACTIONS(8520), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8520), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8520), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8520), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8520), + [anon_sym___deprecated_msg] = ACTIONS(8520), + [anon_sym___deprecated_enum_msg] = ACTIONS(8520), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8520), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8520), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8520), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8520), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3819] = { [anon_sym_COMMA] = ACTIONS(9075), [anon_sym_RPAREN] = ACTIONS(9075), [anon_sym_LPAREN2] = ACTIONS(9075), @@ -569085,73 +562278,2958 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_endif_retain] = ACTIONS(3), [sym__ifdef_undef_retain] = ACTIONS(3), }, - [3860] = { - [sym_type_qualifier] = STATE(3848), - [sym__type_specifier] = STATE(3468), - [sym_sized_type_specifier] = STATE(3468), - [sym_enum_specifier] = STATE(3468), - [sym_struct_specifier] = STATE(3468), - [sym_union_specifier] = STATE(3468), - [sym_macro_type_specifier] = STATE(3468), - [sym_typeof_specifier] = STATE(3468), - [sym_atomic_specifier] = STATE(3468), - [sym_generic_type_specifier] = STATE(3468), - [aux_sym_type_definition_repeat1] = STATE(3848), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7722), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [3820] = { + [sym_identifier] = ACTIONS(8490), + [anon_sym_COMMA] = ACTIONS(8492), + [anon_sym_RPAREN] = ACTIONS(8492), + [anon_sym_LPAREN2] = ACTIONS(8492), + [anon_sym_STAR] = ACTIONS(8492), + [anon_sym_GT] = ACTIONS(8492), + [anon_sym___attribute] = ACTIONS(8490), + [anon_sym___attribute__] = ACTIONS(8490), + [anon_sym___based] = ACTIONS(8490), + [anon_sym_LBRACE] = ACTIONS(8492), + [anon_sym_LBRACK] = ACTIONS(8492), + [anon_sym_const] = ACTIONS(8490), + [anon_sym_volatile] = ACTIONS(8490), + [anon_sym_restrict] = ACTIONS(8490), + [anon_sym__Atomic] = ACTIONS(8490), + [anon_sym_in] = ACTIONS(8490), + [anon_sym_out] = ACTIONS(8490), + [anon_sym_inout] = ACTIONS(8490), + [anon_sym_bycopy] = ACTIONS(8490), + [anon_sym_byref] = ACTIONS(8490), + [anon_sym_oneway] = ACTIONS(8490), + [anon_sym__Nullable] = ACTIONS(8490), + [anon_sym__Nonnull] = ACTIONS(8490), + [anon_sym__Nullable_result] = ACTIONS(8490), + [anon_sym__Null_unspecified] = ACTIONS(8490), + [anon_sym___autoreleasing] = ACTIONS(8490), + [anon_sym___nullable] = ACTIONS(8490), + [anon_sym___nonnull] = ACTIONS(8490), + [anon_sym___strong] = ACTIONS(8490), + [anon_sym___weak] = ACTIONS(8490), + [anon_sym___bridge] = ACTIONS(8490), + [anon_sym___bridge_transfer] = ACTIONS(8490), + [anon_sym___bridge_retained] = ACTIONS(8490), + [anon_sym___unsafe_unretained] = ACTIONS(8490), + [anon_sym___block] = ACTIONS(8490), + [anon_sym___kindof] = ACTIONS(8490), + [anon_sym___unused] = ACTIONS(8490), + [anon_sym__Complex] = ACTIONS(8490), + [anon_sym___complex] = ACTIONS(8490), + [anon_sym_IBOutlet] = ACTIONS(8490), + [anon_sym_IBInspectable] = ACTIONS(8490), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8490), [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7722), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7722), - [sym_IMP] = ACTIONS(7722), - [sym_BOOL] = ACTIONS(7722), - [sym_auto] = ACTIONS(7722), + [sym_method_attribute_specifier] = ACTIONS(8490), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8490), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8490), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8490), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8490), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8490), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8490), + [anon_sym_NS_AVAILABLE] = ACTIONS(8490), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8490), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8490), + [anon_sym_API_AVAILABLE] = ACTIONS(8490), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8490), + [anon_sym_API_DEPRECATED] = ACTIONS(8490), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8490), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8490), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8490), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8490), + [anon_sym___deprecated_msg] = ACTIONS(8490), + [anon_sym___deprecated_enum_msg] = ACTIONS(8490), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8490), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8490), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8490), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8490), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3821] = { + [sym_identifier] = ACTIONS(7290), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_STAR] = ACTIONS(7292), + [anon_sym_SEMI] = ACTIONS(7292), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___based] = ACTIONS(7290), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_LBRACK] = ACTIONS(7292), + [anon_sym_EQ] = ACTIONS(7292), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym_in] = ACTIONS(7290), + [anon_sym_out] = ACTIONS(7290), + [anon_sym_inout] = ACTIONS(7290), + [anon_sym_bycopy] = ACTIONS(7290), + [anon_sym_byref] = ACTIONS(7290), + [anon_sym_oneway] = ACTIONS(7290), + [anon_sym__Nullable] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym__Nullable_result] = ACTIONS(7290), + [anon_sym__Null_unspecified] = ACTIONS(7290), + [anon_sym___autoreleasing] = ACTIONS(7290), + [anon_sym___nullable] = ACTIONS(7290), + [anon_sym___nonnull] = ACTIONS(7290), + [anon_sym___strong] = ACTIONS(7290), + [anon_sym___weak] = ACTIONS(7290), + [anon_sym___bridge] = ACTIONS(7290), + [anon_sym___bridge_transfer] = ACTIONS(7290), + [anon_sym___bridge_retained] = ACTIONS(7290), + [anon_sym___unsafe_unretained] = ACTIONS(7290), + [anon_sym___block] = ACTIONS(7290), + [anon_sym___kindof] = ACTIONS(7290), + [anon_sym___unused] = ACTIONS(7290), + [anon_sym__Complex] = ACTIONS(7290), + [anon_sym___complex] = ACTIONS(7290), + [anon_sym_IBOutlet] = ACTIONS(7290), + [anon_sym_IBInspectable] = ACTIONS(7290), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7290), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7290), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7290), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7290), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7290), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7290), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7290), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7290), + [anon_sym_NS_AVAILABLE] = ACTIONS(7290), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7290), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7290), + [anon_sym_API_AVAILABLE] = ACTIONS(7290), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7290), + [anon_sym_API_DEPRECATED] = ACTIONS(7290), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7290), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7290), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7290), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7290), + [anon_sym___deprecated_msg] = ACTIONS(7290), + [anon_sym___deprecated_enum_msg] = ACTIONS(7290), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7290), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7290), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7290), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7290), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3822] = { + [sym_identifier] = ACTIONS(7268), + [anon_sym_COMMA] = ACTIONS(7270), + [anon_sym_LPAREN2] = ACTIONS(7270), + [anon_sym_STAR] = ACTIONS(7270), + [anon_sym_SEMI] = ACTIONS(7270), + [anon_sym___attribute] = ACTIONS(7268), + [anon_sym___attribute__] = ACTIONS(7268), + [anon_sym___based] = ACTIONS(7268), + [anon_sym_LBRACE] = ACTIONS(7270), + [anon_sym_LBRACK] = ACTIONS(7270), + [anon_sym_EQ] = ACTIONS(7270), + [anon_sym_const] = ACTIONS(7268), + [anon_sym_volatile] = ACTIONS(7268), + [anon_sym_restrict] = ACTIONS(7268), + [anon_sym__Atomic] = ACTIONS(7268), + [anon_sym_in] = ACTIONS(7268), + [anon_sym_out] = ACTIONS(7268), + [anon_sym_inout] = ACTIONS(7268), + [anon_sym_bycopy] = ACTIONS(7268), + [anon_sym_byref] = ACTIONS(7268), + [anon_sym_oneway] = ACTIONS(7268), + [anon_sym__Nullable] = ACTIONS(7268), + [anon_sym__Nonnull] = ACTIONS(7268), + [anon_sym__Nullable_result] = ACTIONS(7268), + [anon_sym__Null_unspecified] = ACTIONS(7268), + [anon_sym___autoreleasing] = ACTIONS(7268), + [anon_sym___nullable] = ACTIONS(7268), + [anon_sym___nonnull] = ACTIONS(7268), + [anon_sym___strong] = ACTIONS(7268), + [anon_sym___weak] = ACTIONS(7268), + [anon_sym___bridge] = ACTIONS(7268), + [anon_sym___bridge_transfer] = ACTIONS(7268), + [anon_sym___bridge_retained] = ACTIONS(7268), + [anon_sym___unsafe_unretained] = ACTIONS(7268), + [anon_sym___block] = ACTIONS(7268), + [anon_sym___kindof] = ACTIONS(7268), + [anon_sym___unused] = ACTIONS(7268), + [anon_sym__Complex] = ACTIONS(7268), + [anon_sym___complex] = ACTIONS(7268), + [anon_sym_IBOutlet] = ACTIONS(7268), + [anon_sym_IBInspectable] = ACTIONS(7268), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7268), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7268), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7268), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7268), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7268), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7268), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7268), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7268), + [anon_sym_NS_AVAILABLE] = ACTIONS(7268), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7268), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7268), + [anon_sym_API_AVAILABLE] = ACTIONS(7268), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7268), + [anon_sym_API_DEPRECATED] = ACTIONS(7268), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7268), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7268), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7268), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7268), + [anon_sym___deprecated_msg] = ACTIONS(7268), + [anon_sym___deprecated_enum_msg] = ACTIONS(7268), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7268), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7268), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7268), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7268), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3823] = { + [sym_identifier] = ACTIONS(7298), + [anon_sym_COMMA] = ACTIONS(7300), + [anon_sym_LPAREN2] = ACTIONS(7300), + [anon_sym_STAR] = ACTIONS(7300), + [anon_sym_SEMI] = ACTIONS(7300), + [anon_sym___attribute] = ACTIONS(7298), + [anon_sym___attribute__] = ACTIONS(7298), + [anon_sym___based] = ACTIONS(7298), + [anon_sym_LBRACE] = ACTIONS(7300), + [anon_sym_LBRACK] = ACTIONS(7300), + [anon_sym_EQ] = ACTIONS(7300), + [anon_sym_const] = ACTIONS(7298), + [anon_sym_volatile] = ACTIONS(7298), + [anon_sym_restrict] = ACTIONS(7298), + [anon_sym__Atomic] = ACTIONS(7298), + [anon_sym_in] = ACTIONS(7298), + [anon_sym_out] = ACTIONS(7298), + [anon_sym_inout] = ACTIONS(7298), + [anon_sym_bycopy] = ACTIONS(7298), + [anon_sym_byref] = ACTIONS(7298), + [anon_sym_oneway] = ACTIONS(7298), + [anon_sym__Nullable] = ACTIONS(7298), + [anon_sym__Nonnull] = ACTIONS(7298), + [anon_sym__Nullable_result] = ACTIONS(7298), + [anon_sym__Null_unspecified] = ACTIONS(7298), + [anon_sym___autoreleasing] = ACTIONS(7298), + [anon_sym___nullable] = ACTIONS(7298), + [anon_sym___nonnull] = ACTIONS(7298), + [anon_sym___strong] = ACTIONS(7298), + [anon_sym___weak] = ACTIONS(7298), + [anon_sym___bridge] = ACTIONS(7298), + [anon_sym___bridge_transfer] = ACTIONS(7298), + [anon_sym___bridge_retained] = ACTIONS(7298), + [anon_sym___unsafe_unretained] = ACTIONS(7298), + [anon_sym___block] = ACTIONS(7298), + [anon_sym___kindof] = ACTIONS(7298), + [anon_sym___unused] = ACTIONS(7298), + [anon_sym__Complex] = ACTIONS(7298), + [anon_sym___complex] = ACTIONS(7298), + [anon_sym_IBOutlet] = ACTIONS(7298), + [anon_sym_IBInspectable] = ACTIONS(7298), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7298), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7298), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7298), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7298), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7298), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7298), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7298), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7298), + [anon_sym_NS_AVAILABLE] = ACTIONS(7298), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7298), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7298), + [anon_sym_API_AVAILABLE] = ACTIONS(7298), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7298), + [anon_sym_API_DEPRECATED] = ACTIONS(7298), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7298), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7298), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7298), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7298), + [anon_sym___deprecated_msg] = ACTIONS(7298), + [anon_sym___deprecated_enum_msg] = ACTIONS(7298), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7298), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7298), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7298), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7298), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3824] = { + [sym_identifier] = ACTIONS(7294), + [anon_sym_COMMA] = ACTIONS(7296), + [anon_sym_LPAREN2] = ACTIONS(7296), + [anon_sym_STAR] = ACTIONS(7296), + [anon_sym_SEMI] = ACTIONS(7296), + [anon_sym___attribute] = ACTIONS(7294), + [anon_sym___attribute__] = ACTIONS(7294), + [anon_sym___based] = ACTIONS(7294), + [anon_sym_LBRACE] = ACTIONS(7296), + [anon_sym_LBRACK] = ACTIONS(7296), + [anon_sym_EQ] = ACTIONS(7296), + [anon_sym_const] = ACTIONS(7294), + [anon_sym_volatile] = ACTIONS(7294), + [anon_sym_restrict] = ACTIONS(7294), + [anon_sym__Atomic] = ACTIONS(7294), + [anon_sym_in] = ACTIONS(7294), + [anon_sym_out] = ACTIONS(7294), + [anon_sym_inout] = ACTIONS(7294), + [anon_sym_bycopy] = ACTIONS(7294), + [anon_sym_byref] = ACTIONS(7294), + [anon_sym_oneway] = ACTIONS(7294), + [anon_sym__Nullable] = ACTIONS(7294), + [anon_sym__Nonnull] = ACTIONS(7294), + [anon_sym__Nullable_result] = ACTIONS(7294), + [anon_sym__Null_unspecified] = ACTIONS(7294), + [anon_sym___autoreleasing] = ACTIONS(7294), + [anon_sym___nullable] = ACTIONS(7294), + [anon_sym___nonnull] = ACTIONS(7294), + [anon_sym___strong] = ACTIONS(7294), + [anon_sym___weak] = ACTIONS(7294), + [anon_sym___bridge] = ACTIONS(7294), + [anon_sym___bridge_transfer] = ACTIONS(7294), + [anon_sym___bridge_retained] = ACTIONS(7294), + [anon_sym___unsafe_unretained] = ACTIONS(7294), + [anon_sym___block] = ACTIONS(7294), + [anon_sym___kindof] = ACTIONS(7294), + [anon_sym___unused] = ACTIONS(7294), + [anon_sym__Complex] = ACTIONS(7294), + [anon_sym___complex] = ACTIONS(7294), + [anon_sym_IBOutlet] = ACTIONS(7294), + [anon_sym_IBInspectable] = ACTIONS(7294), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7294), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(7294), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7294), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7294), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7294), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7294), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7294), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7294), + [anon_sym_NS_AVAILABLE] = ACTIONS(7294), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7294), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7294), + [anon_sym_API_AVAILABLE] = ACTIONS(7294), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7294), + [anon_sym_API_DEPRECATED] = ACTIONS(7294), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7294), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7294), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7294), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7294), + [anon_sym___deprecated_msg] = ACTIONS(7294), + [anon_sym___deprecated_enum_msg] = ACTIONS(7294), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7294), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7294), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7294), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7294), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3825] = { + [sym_identifier] = ACTIONS(8478), + [anon_sym_COMMA] = ACTIONS(8480), + [anon_sym_RPAREN] = ACTIONS(8480), + [anon_sym_LPAREN2] = ACTIONS(8480), + [anon_sym_STAR] = ACTIONS(8480), + [anon_sym_GT] = ACTIONS(8480), + [anon_sym___attribute] = ACTIONS(8478), + [anon_sym___attribute__] = ACTIONS(8478), + [anon_sym___based] = ACTIONS(8478), + [anon_sym_LBRACE] = ACTIONS(8480), + [anon_sym_LBRACK] = ACTIONS(8480), + [anon_sym_const] = ACTIONS(8478), + [anon_sym_volatile] = ACTIONS(8478), + [anon_sym_restrict] = ACTIONS(8478), + [anon_sym__Atomic] = ACTIONS(8478), + [anon_sym_in] = ACTIONS(8478), + [anon_sym_out] = ACTIONS(8478), + [anon_sym_inout] = ACTIONS(8478), + [anon_sym_bycopy] = ACTIONS(8478), + [anon_sym_byref] = ACTIONS(8478), + [anon_sym_oneway] = ACTIONS(8478), + [anon_sym__Nullable] = ACTIONS(8478), + [anon_sym__Nonnull] = ACTIONS(8478), + [anon_sym__Nullable_result] = ACTIONS(8478), + [anon_sym__Null_unspecified] = ACTIONS(8478), + [anon_sym___autoreleasing] = ACTIONS(8478), + [anon_sym___nullable] = ACTIONS(8478), + [anon_sym___nonnull] = ACTIONS(8478), + [anon_sym___strong] = ACTIONS(8478), + [anon_sym___weak] = ACTIONS(8478), + [anon_sym___bridge] = ACTIONS(8478), + [anon_sym___bridge_transfer] = ACTIONS(8478), + [anon_sym___bridge_retained] = ACTIONS(8478), + [anon_sym___unsafe_unretained] = ACTIONS(8478), + [anon_sym___block] = ACTIONS(8478), + [anon_sym___kindof] = ACTIONS(8478), + [anon_sym___unused] = ACTIONS(8478), + [anon_sym__Complex] = ACTIONS(8478), + [anon_sym___complex] = ACTIONS(8478), + [anon_sym_IBOutlet] = ACTIONS(8478), + [anon_sym_IBInspectable] = ACTIONS(8478), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8478), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8478), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8478), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8478), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8478), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8478), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8478), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8478), + [anon_sym_NS_AVAILABLE] = ACTIONS(8478), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8478), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8478), + [anon_sym_API_AVAILABLE] = ACTIONS(8478), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8478), + [anon_sym_API_DEPRECATED] = ACTIONS(8478), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8478), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8478), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8478), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8478), + [anon_sym___deprecated_msg] = ACTIONS(8478), + [anon_sym___deprecated_enum_msg] = ACTIONS(8478), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8478), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8478), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8478), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8478), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3826] = { + [sym_attribute_specifier] = STATE(4160), + [sym_type_qualifier] = STATE(5309), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3861), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9079), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3827] = { + [sym_attribute_specifier] = STATE(4172), + [sym_type_qualifier] = STATE(5726), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3861), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9081), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3828] = { + [sym_attribute_specifier] = STATE(4135), + [sym_type_qualifier] = STATE(5335), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3861), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9083), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3829] = { + [sym_attribute_specifier] = STATE(4161), + [sym_type_qualifier] = STATE(5314), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3861), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9085), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3830] = { + [sym_attribute_specifier] = STATE(4184), + [sym_type_qualifier] = STATE(5300), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3861), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9087), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3831] = { + [sym_enumerator_list] = STATE(3786), + [sym_identifier] = ACTIONS(8147), + [anon_sym_LPAREN2] = ACTIONS(8149), + [anon_sym_STAR] = ACTIONS(8149), + [anon_sym___attribute] = ACTIONS(8147), + [anon_sym___attribute__] = ACTIONS(8147), + [anon_sym___based] = ACTIONS(8147), + [anon_sym_LBRACE] = ACTIONS(9089), + [anon_sym_const] = ACTIONS(8147), + [anon_sym_volatile] = ACTIONS(8147), + [anon_sym_restrict] = ACTIONS(8147), + [anon_sym__Atomic] = ACTIONS(8147), + [anon_sym_in] = ACTIONS(8147), + [anon_sym_out] = ACTIONS(8147), + [anon_sym_inout] = ACTIONS(8147), + [anon_sym_bycopy] = ACTIONS(8147), + [anon_sym_byref] = ACTIONS(8147), + [anon_sym_oneway] = ACTIONS(8147), + [anon_sym__Nullable] = ACTIONS(8147), + [anon_sym__Nonnull] = ACTIONS(8147), + [anon_sym__Nullable_result] = ACTIONS(8147), + [anon_sym__Null_unspecified] = ACTIONS(8147), + [anon_sym___autoreleasing] = ACTIONS(8147), + [anon_sym___nullable] = ACTIONS(8147), + [anon_sym___nonnull] = ACTIONS(8147), + [anon_sym___strong] = ACTIONS(8147), + [anon_sym___weak] = ACTIONS(8147), + [anon_sym___bridge] = ACTIONS(8147), + [anon_sym___bridge_transfer] = ACTIONS(8147), + [anon_sym___bridge_retained] = ACTIONS(8147), + [anon_sym___unsafe_unretained] = ACTIONS(8147), + [anon_sym___block] = ACTIONS(8147), + [anon_sym___kindof] = ACTIONS(8147), + [anon_sym___unused] = ACTIONS(8147), + [anon_sym__Complex] = ACTIONS(8147), + [anon_sym___complex] = ACTIONS(8147), + [anon_sym_IBOutlet] = ACTIONS(8147), + [anon_sym_IBInspectable] = ACTIONS(8147), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8147), + [anon_sym_COLON] = ACTIONS(9092), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8147), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8147), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8147), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8147), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8147), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8147), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8147), + [anon_sym_NS_AVAILABLE] = ACTIONS(8147), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8147), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_API_AVAILABLE] = ACTIONS(8147), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8147), + [anon_sym_API_DEPRECATED] = ACTIONS(8147), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8147), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8147), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8147), + [anon_sym___deprecated_msg] = ACTIONS(8147), + [anon_sym___deprecated_enum_msg] = ACTIONS(8147), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8147), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8147), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3832] = { + [sym_attribute_specifier] = STATE(4243), + [sym_type_qualifier] = STATE(5810), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3861), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9094), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3833] = { + [sym_attribute_specifier] = STATE(4164), + [sym_type_qualifier] = STATE(5616), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3840), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9096), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3834] = { + [sym_parameter_list] = STATE(3759), + [anon_sym_COMMA] = ACTIONS(9098), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_SEMI] = ACTIONS(9098), + [anon_sym___attribute] = ACTIONS(9100), + [anon_sym___attribute__] = ACTIONS(9098), + [anon_sym_LBRACE] = ACTIONS(9098), + [anon_sym_LBRACK] = ACTIONS(8856), + [anon_sym_EQ] = ACTIONS(9098), + [anon_sym_const] = ACTIONS(9098), + [anon_sym_volatile] = ACTIONS(9098), + [anon_sym_restrict] = ACTIONS(9098), + [anon_sym__Atomic] = ACTIONS(9098), + [anon_sym_in] = ACTIONS(9100), + [anon_sym_out] = ACTIONS(9098), + [anon_sym_inout] = ACTIONS(9098), + [anon_sym_bycopy] = ACTIONS(9098), + [anon_sym_byref] = ACTIONS(9098), + [anon_sym_oneway] = ACTIONS(9098), + [anon_sym__Nullable] = ACTIONS(9100), + [anon_sym__Nonnull] = ACTIONS(9098), + [anon_sym__Nullable_result] = ACTIONS(9098), + [anon_sym__Null_unspecified] = ACTIONS(9098), + [anon_sym___autoreleasing] = ACTIONS(9098), + [anon_sym___nullable] = ACTIONS(9098), + [anon_sym___nonnull] = ACTIONS(9098), + [anon_sym___strong] = ACTIONS(9098), + [anon_sym___weak] = ACTIONS(9098), + [anon_sym___bridge] = ACTIONS(9100), + [anon_sym___bridge_transfer] = ACTIONS(9098), + [anon_sym___bridge_retained] = ACTIONS(9098), + [anon_sym___unsafe_unretained] = ACTIONS(9098), + [anon_sym___block] = ACTIONS(9098), + [anon_sym___kindof] = ACTIONS(9098), + [anon_sym___unused] = ACTIONS(9098), + [anon_sym__Complex] = ACTIONS(9098), + [anon_sym___complex] = ACTIONS(9098), + [anon_sym_IBOutlet] = ACTIONS(9098), + [anon_sym_IBInspectable] = ACTIONS(9098), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9098), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(9098), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9098), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9098), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(9098), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9098), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9098), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9098), + [anon_sym_NS_AVAILABLE] = ACTIONS(9100), + [anon_sym___IOS_AVAILABLE] = ACTIONS(9098), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9098), + [anon_sym_API_AVAILABLE] = ACTIONS(9098), + [anon_sym_API_UNAVAILABLE] = ACTIONS(9098), + [anon_sym_API_DEPRECATED] = ACTIONS(9098), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9098), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9098), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9098), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9098), + [anon_sym___deprecated_msg] = ACTIONS(9098), + [anon_sym___deprecated_enum_msg] = ACTIONS(9098), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9098), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9098), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9098), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9098), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3835] = { + [sym_attribute_specifier] = STATE(4183), + [sym_type_qualifier] = STATE(5728), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3832), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9102), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3836] = { + [sym_enumerator_list] = STATE(3786), + [sym_identifier] = ACTIONS(8147), + [anon_sym_LPAREN2] = ACTIONS(8149), + [anon_sym_STAR] = ACTIONS(8149), + [anon_sym___attribute] = ACTIONS(8147), + [anon_sym___attribute__] = ACTIONS(8147), + [anon_sym___based] = ACTIONS(8147), + [anon_sym_LBRACE] = ACTIONS(8914), + [anon_sym_const] = ACTIONS(8147), + [anon_sym_volatile] = ACTIONS(8147), + [anon_sym_restrict] = ACTIONS(8147), + [anon_sym__Atomic] = ACTIONS(8147), + [anon_sym_in] = ACTIONS(8147), + [anon_sym_out] = ACTIONS(8147), + [anon_sym_inout] = ACTIONS(8147), + [anon_sym_bycopy] = ACTIONS(8147), + [anon_sym_byref] = ACTIONS(8147), + [anon_sym_oneway] = ACTIONS(8147), + [anon_sym__Nullable] = ACTIONS(8147), + [anon_sym__Nonnull] = ACTIONS(8147), + [anon_sym__Nullable_result] = ACTIONS(8147), + [anon_sym__Null_unspecified] = ACTIONS(8147), + [anon_sym___autoreleasing] = ACTIONS(8147), + [anon_sym___nullable] = ACTIONS(8147), + [anon_sym___nonnull] = ACTIONS(8147), + [anon_sym___strong] = ACTIONS(8147), + [anon_sym___weak] = ACTIONS(8147), + [anon_sym___bridge] = ACTIONS(8147), + [anon_sym___bridge_transfer] = ACTIONS(8147), + [anon_sym___bridge_retained] = ACTIONS(8147), + [anon_sym___unsafe_unretained] = ACTIONS(8147), + [anon_sym___block] = ACTIONS(8147), + [anon_sym___kindof] = ACTIONS(8147), + [anon_sym___unused] = ACTIONS(8147), + [anon_sym__Complex] = ACTIONS(8147), + [anon_sym___complex] = ACTIONS(8147), + [anon_sym_IBOutlet] = ACTIONS(8147), + [anon_sym_IBInspectable] = ACTIONS(8147), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8147), + [anon_sym_COLON] = ACTIONS(9104), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8147), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8147), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8147), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8147), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8147), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8147), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8147), + [anon_sym_NS_AVAILABLE] = ACTIONS(8147), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8147), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_API_AVAILABLE] = ACTIONS(8147), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8147), + [anon_sym_API_DEPRECATED] = ACTIONS(8147), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8147), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8147), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8147), + [anon_sym___deprecated_msg] = ACTIONS(8147), + [anon_sym___deprecated_enum_msg] = ACTIONS(8147), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8147), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8147), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8147), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3837] = { + [sym_attribute_specifier] = STATE(4179), + [sym_type_qualifier] = STATE(5318), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3852), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9106), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3838] = { + [sym_attribute_specifier] = STATE(4275), + [sym_type_qualifier] = STATE(5802), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3861), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9108), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3839] = { + [sym_parameter_list] = STATE(3759), + [anon_sym_COMMA] = ACTIONS(9110), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_SEMI] = ACTIONS(9110), + [anon_sym___attribute] = ACTIONS(9112), + [anon_sym___attribute__] = ACTIONS(9110), + [anon_sym_LBRACE] = ACTIONS(9110), + [anon_sym_LBRACK] = ACTIONS(8856), + [anon_sym_EQ] = ACTIONS(9110), + [anon_sym_const] = ACTIONS(9110), + [anon_sym_volatile] = ACTIONS(9110), + [anon_sym_restrict] = ACTIONS(9110), + [anon_sym__Atomic] = ACTIONS(9110), + [anon_sym_in] = ACTIONS(9112), + [anon_sym_out] = ACTIONS(9110), + [anon_sym_inout] = ACTIONS(9110), + [anon_sym_bycopy] = ACTIONS(9110), + [anon_sym_byref] = ACTIONS(9110), + [anon_sym_oneway] = ACTIONS(9110), + [anon_sym__Nullable] = ACTIONS(9112), + [anon_sym__Nonnull] = ACTIONS(9110), + [anon_sym__Nullable_result] = ACTIONS(9110), + [anon_sym__Null_unspecified] = ACTIONS(9110), + [anon_sym___autoreleasing] = ACTIONS(9110), + [anon_sym___nullable] = ACTIONS(9110), + [anon_sym___nonnull] = ACTIONS(9110), + [anon_sym___strong] = ACTIONS(9110), + [anon_sym___weak] = ACTIONS(9110), + [anon_sym___bridge] = ACTIONS(9112), + [anon_sym___bridge_transfer] = ACTIONS(9110), + [anon_sym___bridge_retained] = ACTIONS(9110), + [anon_sym___unsafe_unretained] = ACTIONS(9110), + [anon_sym___block] = ACTIONS(9110), + [anon_sym___kindof] = ACTIONS(9110), + [anon_sym___unused] = ACTIONS(9110), + [anon_sym__Complex] = ACTIONS(9110), + [anon_sym___complex] = ACTIONS(9110), + [anon_sym_IBOutlet] = ACTIONS(9110), + [anon_sym_IBInspectable] = ACTIONS(9110), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9110), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(9110), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9110), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9110), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(9110), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9110), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9110), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9110), + [anon_sym_NS_AVAILABLE] = ACTIONS(9112), + [anon_sym___IOS_AVAILABLE] = ACTIONS(9110), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9110), + [anon_sym_API_AVAILABLE] = ACTIONS(9110), + [anon_sym_API_UNAVAILABLE] = ACTIONS(9110), + [anon_sym_API_DEPRECATED] = ACTIONS(9110), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9110), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9110), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9110), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9110), + [anon_sym___deprecated_msg] = ACTIONS(9110), + [anon_sym___deprecated_enum_msg] = ACTIONS(9110), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9110), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9110), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9110), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9110), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3840] = { + [sym_attribute_specifier] = STATE(4185), + [sym_type_qualifier] = STATE(5585), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3861), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9114), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3841] = { + [sym_attribute_specifier] = STATE(4193), + [sym_type_qualifier] = STATE(5705), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3827), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9116), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3842] = { + [sym_attribute_specifier] = STATE(4136), + [sym_type_qualifier] = STATE(5332), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3861), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9118), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3843] = { + [sym_attribute_specifier] = STATE(4259), + [sym_type_qualifier] = STATE(5466), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3861), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9120), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3844] = { + [sym_attribute_specifier] = STATE(4196), + [sym_type_qualifier] = STATE(5588), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3861), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9122), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3845] = { + [sym_attribute_specifier] = STATE(4169), + [sym_type_qualifier] = STATE(5723), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3861), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9124), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3846] = { + [sym_enumerator_list] = STATE(3788), + [sym_identifier] = ACTIONS(9126), + [anon_sym_LPAREN2] = ACTIONS(8182), + [anon_sym_STAR] = ACTIONS(8182), + [anon_sym___attribute] = ACTIONS(8184), + [anon_sym___attribute__] = ACTIONS(8184), + [anon_sym___based] = ACTIONS(8184), + [anon_sym_LBRACE] = ACTIONS(9129), + [anon_sym_const] = ACTIONS(8184), + [anon_sym_volatile] = ACTIONS(8184), + [anon_sym_restrict] = ACTIONS(8184), + [anon_sym__Atomic] = ACTIONS(8184), + [anon_sym_in] = ACTIONS(8184), + [anon_sym_out] = ACTIONS(8184), + [anon_sym_inout] = ACTIONS(8184), + [anon_sym_bycopy] = ACTIONS(8184), + [anon_sym_byref] = ACTIONS(8184), + [anon_sym_oneway] = ACTIONS(8184), + [anon_sym__Nullable] = ACTIONS(8184), + [anon_sym__Nonnull] = ACTIONS(8184), + [anon_sym__Nullable_result] = ACTIONS(8184), + [anon_sym__Null_unspecified] = ACTIONS(8184), + [anon_sym___autoreleasing] = ACTIONS(8184), + [anon_sym___nullable] = ACTIONS(8184), + [anon_sym___nonnull] = ACTIONS(8184), + [anon_sym___strong] = ACTIONS(8184), + [anon_sym___weak] = ACTIONS(8184), + [anon_sym___bridge] = ACTIONS(8184), + [anon_sym___bridge_transfer] = ACTIONS(8184), + [anon_sym___bridge_retained] = ACTIONS(8184), + [anon_sym___unsafe_unretained] = ACTIONS(8184), + [anon_sym___block] = ACTIONS(8184), + [anon_sym___kindof] = ACTIONS(8184), + [anon_sym___unused] = ACTIONS(8184), + [anon_sym__Complex] = ACTIONS(8184), + [anon_sym___complex] = ACTIONS(8184), + [anon_sym_IBOutlet] = ACTIONS(8184), + [anon_sym_IBInspectable] = ACTIONS(8184), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8184), + [anon_sym_COLON] = ACTIONS(9132), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8184), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8184), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8184), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8184), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8184), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8184), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8184), + [anon_sym_NS_AVAILABLE] = ACTIONS(8184), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8184), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_API_AVAILABLE] = ACTIONS(8184), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8184), + [anon_sym_API_DEPRECATED] = ACTIONS(8184), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8184), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8184), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8184), + [anon_sym___deprecated_msg] = ACTIONS(8184), + [anon_sym___deprecated_enum_msg] = ACTIONS(8184), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8184), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8184), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3847] = { + [sym_attribute_specifier] = STATE(4167), + [sym_type_qualifier] = STATE(5397), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3861), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9134), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3848] = { + [sym_parameter_list] = STATE(3759), + [anon_sym_COMMA] = ACTIONS(9136), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_SEMI] = ACTIONS(9136), + [anon_sym___attribute] = ACTIONS(9138), + [anon_sym___attribute__] = ACTIONS(9136), + [anon_sym_LBRACE] = ACTIONS(9136), + [anon_sym_LBRACK] = ACTIONS(8856), + [anon_sym_EQ] = ACTIONS(9136), + [anon_sym_const] = ACTIONS(9136), + [anon_sym_volatile] = ACTIONS(9136), + [anon_sym_restrict] = ACTIONS(9136), + [anon_sym__Atomic] = ACTIONS(9136), + [anon_sym_in] = ACTIONS(9138), + [anon_sym_out] = ACTIONS(9136), + [anon_sym_inout] = ACTIONS(9136), + [anon_sym_bycopy] = ACTIONS(9136), + [anon_sym_byref] = ACTIONS(9136), + [anon_sym_oneway] = ACTIONS(9136), + [anon_sym__Nullable] = ACTIONS(9138), + [anon_sym__Nonnull] = ACTIONS(9136), + [anon_sym__Nullable_result] = ACTIONS(9136), + [anon_sym__Null_unspecified] = ACTIONS(9136), + [anon_sym___autoreleasing] = ACTIONS(9136), + [anon_sym___nullable] = ACTIONS(9136), + [anon_sym___nonnull] = ACTIONS(9136), + [anon_sym___strong] = ACTIONS(9136), + [anon_sym___weak] = ACTIONS(9136), + [anon_sym___bridge] = ACTIONS(9138), + [anon_sym___bridge_transfer] = ACTIONS(9136), + [anon_sym___bridge_retained] = ACTIONS(9136), + [anon_sym___unsafe_unretained] = ACTIONS(9136), + [anon_sym___block] = ACTIONS(9136), + [anon_sym___kindof] = ACTIONS(9136), + [anon_sym___unused] = ACTIONS(9136), + [anon_sym__Complex] = ACTIONS(9136), + [anon_sym___complex] = ACTIONS(9136), + [anon_sym_IBOutlet] = ACTIONS(9136), + [anon_sym_IBInspectable] = ACTIONS(9136), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9136), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(9136), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9136), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9136), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(9136), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9136), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9136), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9136), + [anon_sym_NS_AVAILABLE] = ACTIONS(9138), + [anon_sym___IOS_AVAILABLE] = ACTIONS(9136), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9136), + [anon_sym_API_AVAILABLE] = ACTIONS(9136), + [anon_sym_API_UNAVAILABLE] = ACTIONS(9136), + [anon_sym_API_DEPRECATED] = ACTIONS(9136), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9136), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9136), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9136), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9136), + [anon_sym___deprecated_msg] = ACTIONS(9136), + [anon_sym___deprecated_enum_msg] = ACTIONS(9136), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9136), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9136), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9136), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9136), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3849] = { + [sym_attribute_specifier] = STATE(4268), + [sym_type_qualifier] = STATE(5469), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3861), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9140), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3850] = { + [sym_parameter_list] = STATE(3759), + [anon_sym_COMMA] = ACTIONS(9142), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_SEMI] = ACTIONS(9142), + [anon_sym___attribute] = ACTIONS(9144), + [anon_sym___attribute__] = ACTIONS(9142), + [anon_sym_LBRACE] = ACTIONS(9142), + [anon_sym_LBRACK] = ACTIONS(8856), + [anon_sym_EQ] = ACTIONS(9142), + [anon_sym_const] = ACTIONS(9142), + [anon_sym_volatile] = ACTIONS(9142), + [anon_sym_restrict] = ACTIONS(9142), + [anon_sym__Atomic] = ACTIONS(9142), + [anon_sym_in] = ACTIONS(9144), + [anon_sym_out] = ACTIONS(9142), + [anon_sym_inout] = ACTIONS(9142), + [anon_sym_bycopy] = ACTIONS(9142), + [anon_sym_byref] = ACTIONS(9142), + [anon_sym_oneway] = ACTIONS(9142), + [anon_sym__Nullable] = ACTIONS(9144), + [anon_sym__Nonnull] = ACTIONS(9142), + [anon_sym__Nullable_result] = ACTIONS(9142), + [anon_sym__Null_unspecified] = ACTIONS(9142), + [anon_sym___autoreleasing] = ACTIONS(9142), + [anon_sym___nullable] = ACTIONS(9142), + [anon_sym___nonnull] = ACTIONS(9142), + [anon_sym___strong] = ACTIONS(9142), + [anon_sym___weak] = ACTIONS(9142), + [anon_sym___bridge] = ACTIONS(9144), + [anon_sym___bridge_transfer] = ACTIONS(9142), + [anon_sym___bridge_retained] = ACTIONS(9142), + [anon_sym___unsafe_unretained] = ACTIONS(9142), + [anon_sym___block] = ACTIONS(9142), + [anon_sym___kindof] = ACTIONS(9142), + [anon_sym___unused] = ACTIONS(9142), + [anon_sym__Complex] = ACTIONS(9142), + [anon_sym___complex] = ACTIONS(9142), + [anon_sym_IBOutlet] = ACTIONS(9142), + [anon_sym_IBInspectable] = ACTIONS(9142), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9142), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(9142), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9142), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9142), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(9142), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9142), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9142), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9142), + [anon_sym_NS_AVAILABLE] = ACTIONS(9144), + [anon_sym___IOS_AVAILABLE] = ACTIONS(9142), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9142), + [anon_sym_API_AVAILABLE] = ACTIONS(9142), + [anon_sym_API_UNAVAILABLE] = ACTIONS(9142), + [anon_sym_API_DEPRECATED] = ACTIONS(9142), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9142), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9142), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9142), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9142), + [anon_sym___deprecated_msg] = ACTIONS(9142), + [anon_sym___deprecated_enum_msg] = ACTIONS(9142), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9142), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9142), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9142), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9142), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3851] = { + [sym_attribute_specifier] = STATE(4147), + [sym_type_qualifier] = STATE(5308), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3828), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9146), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3852] = { + [sym_attribute_specifier] = STATE(4168), + [sym_type_qualifier] = STATE(5400), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3861), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9148), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3853] = { + [sym_attribute_specifier] = STATE(4219), + [sym_type_qualifier] = STATE(5278), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3854), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9150), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3854] = { + [sym_attribute_specifier] = STATE(4177), + [sym_type_qualifier] = STATE(5303), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3861), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9152), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3855] = { + [sym_enumerator_list] = STATE(3788), + [sym_identifier] = ACTIONS(9154), + [anon_sym_LPAREN2] = ACTIONS(8182), + [anon_sym_STAR] = ACTIONS(8182), + [anon_sym___attribute] = ACTIONS(8184), + [anon_sym___attribute__] = ACTIONS(8184), + [anon_sym___based] = ACTIONS(8184), + [anon_sym_LBRACE] = ACTIONS(8914), + [anon_sym_const] = ACTIONS(8184), + [anon_sym_volatile] = ACTIONS(8184), + [anon_sym_restrict] = ACTIONS(8184), + [anon_sym__Atomic] = ACTIONS(8184), + [anon_sym_in] = ACTIONS(8184), + [anon_sym_out] = ACTIONS(8184), + [anon_sym_inout] = ACTIONS(8184), + [anon_sym_bycopy] = ACTIONS(8184), + [anon_sym_byref] = ACTIONS(8184), + [anon_sym_oneway] = ACTIONS(8184), + [anon_sym__Nullable] = ACTIONS(8184), + [anon_sym__Nonnull] = ACTIONS(8184), + [anon_sym__Nullable_result] = ACTIONS(8184), + [anon_sym__Null_unspecified] = ACTIONS(8184), + [anon_sym___autoreleasing] = ACTIONS(8184), + [anon_sym___nullable] = ACTIONS(8184), + [anon_sym___nonnull] = ACTIONS(8184), + [anon_sym___strong] = ACTIONS(8184), + [anon_sym___weak] = ACTIONS(8184), + [anon_sym___bridge] = ACTIONS(8184), + [anon_sym___bridge_transfer] = ACTIONS(8184), + [anon_sym___bridge_retained] = ACTIONS(8184), + [anon_sym___unsafe_unretained] = ACTIONS(8184), + [anon_sym___block] = ACTIONS(8184), + [anon_sym___kindof] = ACTIONS(8184), + [anon_sym___unused] = ACTIONS(8184), + [anon_sym__Complex] = ACTIONS(8184), + [anon_sym___complex] = ACTIONS(8184), + [anon_sym_IBOutlet] = ACTIONS(8184), + [anon_sym_IBInspectable] = ACTIONS(8184), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8184), + [anon_sym_COLON] = ACTIONS(9157), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8184), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8184), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8184), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8184), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8184), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8184), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8184), + [anon_sym_NS_AVAILABLE] = ACTIONS(8184), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8184), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_API_AVAILABLE] = ACTIONS(8184), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8184), + [anon_sym_API_DEPRECATED] = ACTIONS(8184), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8184), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8184), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8184), + [anon_sym___deprecated_msg] = ACTIONS(8184), + [anon_sym___deprecated_enum_msg] = ACTIONS(8184), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8184), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8184), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8184), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3856] = { + [sym_attribute_specifier] = STATE(4123), + [sym_type_qualifier] = STATE(5567), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3843), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9159), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3857] = { + [sym_attribute_specifier] = STATE(4174), + [sym_type_qualifier] = STATE(5391), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3799), + [sym_availability_attribute_specifier] = STATE(3799), + [aux_sym_declaration_repeat1] = STATE(3829), + [anon_sym_COMMA] = ACTIONS(8850), + [anon_sym_SEMI] = ACTIONS(9161), + [anon_sym___attribute] = ACTIONS(8243), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), + [anon_sym_in] = ACTIONS(47), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), + [anon_sym__Nullable] = ACTIONS(47), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), + [anon_sym___bridge] = ACTIONS(47), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(8862), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8864), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(8866), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8866), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8866), + [anon_sym_NS_AVAILABLE] = ACTIONS(8251), + [anon_sym___IOS_AVAILABLE] = ACTIONS(8868), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_API_AVAILABLE] = ACTIONS(8868), + [anon_sym_API_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_API_DEPRECATED] = ACTIONS(8868), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8868), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8868), + [anon_sym___deprecated_msg] = ACTIONS(8868), + [anon_sym___deprecated_enum_msg] = ACTIONS(8868), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8868), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8868), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8868), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3858] = { + [sym_parameter_list] = STATE(3759), + [anon_sym_COMMA] = ACTIONS(9163), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_SEMI] = ACTIONS(9163), + [anon_sym___attribute] = ACTIONS(9165), + [anon_sym___attribute__] = ACTIONS(9163), + [anon_sym_LBRACK] = ACTIONS(8856), + [anon_sym_EQ] = ACTIONS(8858), + [anon_sym_const] = ACTIONS(9163), + [anon_sym_volatile] = ACTIONS(9163), + [anon_sym_restrict] = ACTIONS(9163), + [anon_sym__Atomic] = ACTIONS(9163), + [anon_sym_in] = ACTIONS(9165), + [anon_sym_out] = ACTIONS(9163), + [anon_sym_inout] = ACTIONS(9163), + [anon_sym_bycopy] = ACTIONS(9163), + [anon_sym_byref] = ACTIONS(9163), + [anon_sym_oneway] = ACTIONS(9163), + [anon_sym__Nullable] = ACTIONS(9165), + [anon_sym__Nonnull] = ACTIONS(9163), + [anon_sym__Nullable_result] = ACTIONS(9163), + [anon_sym__Null_unspecified] = ACTIONS(9163), + [anon_sym___autoreleasing] = ACTIONS(9163), + [anon_sym___nullable] = ACTIONS(9163), + [anon_sym___nonnull] = ACTIONS(9163), + [anon_sym___strong] = ACTIONS(9163), + [anon_sym___weak] = ACTIONS(9163), + [anon_sym___bridge] = ACTIONS(9165), + [anon_sym___bridge_transfer] = ACTIONS(9163), + [anon_sym___bridge_retained] = ACTIONS(9163), + [anon_sym___unsafe_unretained] = ACTIONS(9163), + [anon_sym___block] = ACTIONS(9163), + [anon_sym___kindof] = ACTIONS(9163), + [anon_sym___unused] = ACTIONS(9163), + [anon_sym__Complex] = ACTIONS(9163), + [anon_sym___complex] = ACTIONS(9163), + [anon_sym_IBOutlet] = ACTIONS(9163), + [anon_sym_IBInspectable] = ACTIONS(9163), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9163), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(9163), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9163), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9163), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(9163), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9163), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9163), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9163), + [anon_sym_NS_AVAILABLE] = ACTIONS(9165), + [anon_sym___IOS_AVAILABLE] = ACTIONS(9163), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9163), + [anon_sym_API_AVAILABLE] = ACTIONS(9163), + [anon_sym_API_UNAVAILABLE] = ACTIONS(9163), + [anon_sym_API_DEPRECATED] = ACTIONS(9163), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9163), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9163), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9163), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9163), + [anon_sym___deprecated_msg] = ACTIONS(9163), + [anon_sym___deprecated_enum_msg] = ACTIONS(9163), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9163), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9163), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9163), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9163), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3859] = { + [sym_ms_based_modifier] = STATE(5795), + [sym_ms_unaligned_ptr_modifier] = STATE(4023), + [sym_ms_pointer_modifier] = STATE(3888), + [sym__declarator] = STATE(4792), + [sym__abstract_declarator] = STATE(4280), + [sym_parenthesized_declarator] = STATE(3790), + [sym_abstract_parenthesized_declarator] = STATE(4310), + [sym_pointer_declarator] = STATE(3790), + [sym_abstract_pointer_declarator] = STATE(4310), + [sym_function_declarator] = STATE(3790), + [sym_abstract_function_declarator] = STATE(4310), + [sym_array_declarator] = STATE(3790), + [sym_abstract_array_declarator] = STATE(4310), + [sym_type_qualifier] = STATE(3874), + [sym_parameter_list] = STATE(4311), + [sym_block_abstract_declarator] = STATE(4310), + [sym_block_declarator] = STATE(3790), + [aux_sym_type_definition_repeat1] = STATE(3874), + [aux_sym_pointer_declarator_repeat1] = STATE(3888), + [sym_identifier] = ACTIONS(7859), + [anon_sym_COMMA] = ACTIONS(7861), + [anon_sym_RPAREN] = ACTIONS(7861), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_STAR] = ACTIONS(6473), + [anon_sym___based] = ACTIONS(6477), + [sym_ms_restrict_modifier] = ACTIONS(7867), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7867), + [sym_ms_signed_ptr_modifier] = ACTIONS(7867), + [anon_sym__unaligned] = ACTIONS(7869), + [anon_sym___unaligned] = ACTIONS(7869), + [anon_sym_LBRACK] = ACTIONS(6479), + [anon_sym_const] = ACTIONS(7871), + [anon_sym_volatile] = ACTIONS(7871), + [anon_sym_restrict] = ACTIONS(7871), + [anon_sym__Atomic] = ACTIONS(7871), + [anon_sym_in] = ACTIONS(7871), + [anon_sym_out] = ACTIONS(7871), + [anon_sym_inout] = ACTIONS(7871), + [anon_sym_bycopy] = ACTIONS(7871), + [anon_sym_byref] = ACTIONS(7871), + [anon_sym_oneway] = ACTIONS(7871), + [anon_sym__Nullable] = ACTIONS(7871), + [anon_sym__Nonnull] = ACTIONS(7871), + [anon_sym__Nullable_result] = ACTIONS(7871), + [anon_sym__Null_unspecified] = ACTIONS(7871), + [anon_sym___autoreleasing] = ACTIONS(7871), + [anon_sym___nullable] = ACTIONS(7871), + [anon_sym___nonnull] = ACTIONS(7871), + [anon_sym___strong] = ACTIONS(7871), + [anon_sym___weak] = ACTIONS(7871), + [anon_sym___bridge] = ACTIONS(7871), + [anon_sym___bridge_transfer] = ACTIONS(7871), + [anon_sym___bridge_retained] = ACTIONS(7871), + [anon_sym___unsafe_unretained] = ACTIONS(7871), + [anon_sym___block] = ACTIONS(7871), + [anon_sym___kindof] = ACTIONS(7871), + [anon_sym___unused] = ACTIONS(7871), + [anon_sym__Complex] = ACTIONS(7871), + [anon_sym___complex] = ACTIONS(7871), + [anon_sym_IBOutlet] = ACTIONS(7871), + [anon_sym_IBInspectable] = ACTIONS(7871), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7871), + [sym_comment] = ACTIONS(3), + [sym_pragma] = ACTIONS(3), + [sym__ifdef_if_retain] = ACTIONS(3), + [sym__ifdef_elif_ignore] = ACTIONS(3), + [sym__ifdef_else_ignore] = ACTIONS(3), + [sym__ifdef_endif_retain] = ACTIONS(3), + [sym__ifdef_undef_retain] = ACTIONS(3), + }, + [3860] = { + [sym_attribute_specifier] = STATE(4072), + [sym_argument_list] = STATE(3012), + [sym_method_variadic_arguments_attribute_specifier] = STATE(3041), + [sym_availability_attribute_specifier] = STATE(3041), + [sym_swift_name_attribute_sepcifier] = STATE(4072), + [aux_sym_enumerator_repeat1] = STATE(4072), + [anon_sym_COMMA] = ACTIONS(9167), + [anon_sym_LPAREN2] = ACTIONS(6954), + [anon_sym_DASH] = ACTIONS(7781), + [anon_sym_PLUS] = ACTIONS(7781), + [anon_sym_STAR] = ACTIONS(7783), + [anon_sym_SLASH] = ACTIONS(7785), + [anon_sym_PERCENT] = ACTIONS(7783), + [anon_sym_PIPE_PIPE] = ACTIONS(7819), + [anon_sym_AMP_AMP] = ACTIONS(7787), + [anon_sym_PIPE] = ACTIONS(7789), + [anon_sym_CARET] = ACTIONS(7791), + [anon_sym_AMP] = ACTIONS(7793), + [anon_sym_EQ_EQ] = ACTIONS(7795), + [anon_sym_BANG_EQ] = ACTIONS(7795), + [anon_sym_GT] = ACTIONS(7797), + [anon_sym_GT_EQ] = ACTIONS(7799), + [anon_sym_LT_EQ] = ACTIONS(7799), + [anon_sym_LT] = ACTIONS(7797), + [anon_sym_LT_LT] = ACTIONS(7801), + [anon_sym_GT_GT] = ACTIONS(7801), + [anon_sym___attribute] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(9169), + [anon_sym_RBRACE] = ACTIONS(9167), + [anon_sym_LBRACK] = ACTIONS(6956), + [anon_sym_QMARK] = ACTIONS(7821), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(6960), + [anon_sym_DASH_GT] = ACTIONS(6960), + [sym_comment] = ACTIONS(3), + [sym_method_attribute_specifier] = ACTIONS(9171), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9173), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9173), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(9175), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9175), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9175), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9175), + [anon_sym_NS_AVAILABLE] = ACTIONS(117), + [anon_sym___IOS_AVAILABLE] = ACTIONS(9177), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9177), + [anon_sym_API_AVAILABLE] = ACTIONS(9177), + [anon_sym_API_UNAVAILABLE] = ACTIONS(9177), + [anon_sym_API_DEPRECATED] = ACTIONS(9177), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9177), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9177), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9177), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9177), + [anon_sym___deprecated_msg] = ACTIONS(9177), + [anon_sym___deprecated_enum_msg] = ACTIONS(9177), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9177), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9177), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9177), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9177), + [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(9179), + [anon_sym_NS_SWIFT_NAME] = ACTIONS(9181), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -569160,72 +565238,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3861] = { - [sym_type_qualifier] = STATE(3856), - [sym__type_specifier] = STATE(3531), - [sym_sized_type_specifier] = STATE(3531), - [sym_enum_specifier] = STATE(3531), - [sym_struct_specifier] = STATE(3531), - [sym_union_specifier] = STATE(3531), - [sym_macro_type_specifier] = STATE(3531), - [sym_typeof_specifier] = STATE(3531), - [sym_atomic_specifier] = STATE(3531), - [sym_generic_type_specifier] = STATE(3531), - [aux_sym_type_definition_repeat1] = STATE(3856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(7682), - [anon_sym_const] = ACTIONS(1143), - [anon_sym_volatile] = ACTIONS(1143), - [anon_sym_restrict] = ACTIONS(1143), - [anon_sym__Atomic] = ACTIONS(1145), - [anon_sym_in] = ACTIONS(1143), - [anon_sym_out] = ACTIONS(1143), - [anon_sym_inout] = ACTIONS(1143), - [anon_sym_bycopy] = ACTIONS(1143), - [anon_sym_byref] = ACTIONS(1143), - [anon_sym_oneway] = ACTIONS(1143), - [anon_sym__Nullable] = ACTIONS(1143), - [anon_sym__Nonnull] = ACTIONS(1143), - [anon_sym__Nullable_result] = ACTIONS(1143), - [anon_sym__Null_unspecified] = ACTIONS(1143), - [anon_sym___autoreleasing] = ACTIONS(1143), - [anon_sym___nullable] = ACTIONS(1143), - [anon_sym___nonnull] = ACTIONS(1143), - [anon_sym___strong] = ACTIONS(1143), - [anon_sym___weak] = ACTIONS(1143), - [anon_sym___bridge] = ACTIONS(1143), - [anon_sym___bridge_transfer] = ACTIONS(1143), - [anon_sym___bridge_retained] = ACTIONS(1143), - [anon_sym___unsafe_unretained] = ACTIONS(1143), - [anon_sym___block] = ACTIONS(1143), - [anon_sym___kindof] = ACTIONS(1143), - [anon_sym___unused] = ACTIONS(1143), - [anon_sym__Complex] = ACTIONS(1143), - [anon_sym___complex] = ACTIONS(1143), - [anon_sym_IBOutlet] = ACTIONS(1143), - [anon_sym_IBInspectable] = ACTIONS(1143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(1143), - [anon_sym_signed] = ACTIONS(7688), - [anon_sym_unsigned] = ACTIONS(7688), - [anon_sym_long] = ACTIONS(7688), - [anon_sym_short] = ACTIONS(7688), - [sym_primitive_type] = ACTIONS(7718), - [anon_sym_enum] = ACTIONS(7692), - [anon_sym_NS_ENUM] = ACTIONS(1153), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(1153), - [anon_sym_NS_OPTIONS] = ACTIONS(1153), - [anon_sym_struct] = ACTIONS(1155), - [anon_sym_union] = ACTIONS(1157), + [aux_sym_declaration_repeat1] = STATE(3861), + [anon_sym_COMMA] = ACTIONS(9183), + [anon_sym_SEMI] = ACTIONS(9186), + [anon_sym___attribute] = ACTIONS(9188), + [anon_sym___attribute__] = ACTIONS(9186), + [anon_sym_const] = ACTIONS(9186), + [anon_sym_volatile] = ACTIONS(9186), + [anon_sym_restrict] = ACTIONS(9186), + [anon_sym__Atomic] = ACTIONS(9186), + [anon_sym_in] = ACTIONS(9188), + [anon_sym_out] = ACTIONS(9186), + [anon_sym_inout] = ACTIONS(9186), + [anon_sym_bycopy] = ACTIONS(9186), + [anon_sym_byref] = ACTIONS(9186), + [anon_sym_oneway] = ACTIONS(9186), + [anon_sym__Nullable] = ACTIONS(9188), + [anon_sym__Nonnull] = ACTIONS(9186), + [anon_sym__Nullable_result] = ACTIONS(9186), + [anon_sym__Null_unspecified] = ACTIONS(9186), + [anon_sym___autoreleasing] = ACTIONS(9186), + [anon_sym___nullable] = ACTIONS(9186), + [anon_sym___nonnull] = ACTIONS(9186), + [anon_sym___strong] = ACTIONS(9186), + [anon_sym___weak] = ACTIONS(9186), + [anon_sym___bridge] = ACTIONS(9188), + [anon_sym___bridge_transfer] = ACTIONS(9186), + [anon_sym___bridge_retained] = ACTIONS(9186), + [anon_sym___unsafe_unretained] = ACTIONS(9186), + [anon_sym___block] = ACTIONS(9186), + [anon_sym___kindof] = ACTIONS(9186), + [anon_sym___unused] = ACTIONS(9186), + [anon_sym__Complex] = ACTIONS(9186), + [anon_sym___complex] = ACTIONS(9186), + [anon_sym_IBOutlet] = ACTIONS(9186), + [anon_sym_IBInspectable] = ACTIONS(9186), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9186), [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(1161), - [anon_sym___typeof] = ACTIONS(1161), - [anon_sym___typeof__] = ACTIONS(1161), - [sym_id] = ACTIONS(1163), - [sym_instancetype] = ACTIONS(7718), - [sym_Class] = ACTIONS(1163), - [sym_SEL] = ACTIONS(7718), - [sym_IMP] = ACTIONS(7718), - [sym_BOOL] = ACTIONS(7718), - [sym_auto] = ACTIONS(7718), + [sym_method_attribute_specifier] = ACTIONS(9186), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9186), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9186), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(9186), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9186), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9186), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9186), + [anon_sym_NS_AVAILABLE] = ACTIONS(9188), + [anon_sym___IOS_AVAILABLE] = ACTIONS(9186), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9186), + [anon_sym_API_AVAILABLE] = ACTIONS(9186), + [anon_sym_API_UNAVAILABLE] = ACTIONS(9186), + [anon_sym_API_DEPRECATED] = ACTIONS(9186), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9186), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9186), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9186), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9186), + [anon_sym___deprecated_msg] = ACTIONS(9186), + [anon_sym___deprecated_enum_msg] = ACTIONS(9186), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9186), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9186), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9186), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9186), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -569234,72 +565306,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3862] = { - [anon_sym_COMMA] = ACTIONS(9079), - [anon_sym_RPAREN] = ACTIONS(9079), - [anon_sym_LPAREN2] = ACTIONS(9079), - [anon_sym_SEMI] = ACTIONS(9079), - [anon_sym___attribute] = ACTIONS(9081), - [anon_sym___attribute__] = ACTIONS(9079), - [anon_sym_LBRACE] = ACTIONS(9079), - [anon_sym_LBRACK] = ACTIONS(9079), - [anon_sym_EQ] = ACTIONS(9079), - [anon_sym_const] = ACTIONS(9079), - [anon_sym_volatile] = ACTIONS(9079), - [anon_sym_restrict] = ACTIONS(9079), - [anon_sym__Atomic] = ACTIONS(9079), - [anon_sym_in] = ACTIONS(9081), - [anon_sym_out] = ACTIONS(9079), - [anon_sym_inout] = ACTIONS(9079), - [anon_sym_bycopy] = ACTIONS(9079), - [anon_sym_byref] = ACTIONS(9079), - [anon_sym_oneway] = ACTIONS(9079), - [anon_sym__Nullable] = ACTIONS(9081), - [anon_sym__Nonnull] = ACTIONS(9079), - [anon_sym__Nullable_result] = ACTIONS(9079), - [anon_sym__Null_unspecified] = ACTIONS(9079), - [anon_sym___autoreleasing] = ACTIONS(9079), - [anon_sym___nullable] = ACTIONS(9079), - [anon_sym___nonnull] = ACTIONS(9079), - [anon_sym___strong] = ACTIONS(9079), - [anon_sym___weak] = ACTIONS(9079), - [anon_sym___bridge] = ACTIONS(9081), - [anon_sym___bridge_transfer] = ACTIONS(9079), - [anon_sym___bridge_retained] = ACTIONS(9079), - [anon_sym___unsafe_unretained] = ACTIONS(9079), - [anon_sym___block] = ACTIONS(9079), - [anon_sym___kindof] = ACTIONS(9079), - [anon_sym___unused] = ACTIONS(9079), - [anon_sym__Complex] = ACTIONS(9079), - [anon_sym___complex] = ACTIONS(9079), - [anon_sym_IBOutlet] = ACTIONS(9079), - [anon_sym_IBInspectable] = ACTIONS(9079), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9079), + [sym_compound_statement] = STATE(3260), + [sym_parameter_list] = STATE(5064), + [sym_identifier] = ACTIONS(9190), + [anon_sym_RPAREN] = ACTIONS(9192), + [anon_sym_LPAREN2] = ACTIONS(8710), + [anon_sym_LBRACE] = ACTIONS(8712), + [anon_sym_const] = ACTIONS(9190), + [anon_sym_volatile] = ACTIONS(9190), + [anon_sym_restrict] = ACTIONS(9190), + [anon_sym__Atomic] = ACTIONS(9190), + [anon_sym_in] = ACTIONS(9190), + [anon_sym_out] = ACTIONS(9190), + [anon_sym_inout] = ACTIONS(9190), + [anon_sym_bycopy] = ACTIONS(9190), + [anon_sym_byref] = ACTIONS(9190), + [anon_sym_oneway] = ACTIONS(9190), + [anon_sym__Nullable] = ACTIONS(9190), + [anon_sym__Nonnull] = ACTIONS(9190), + [anon_sym__Nullable_result] = ACTIONS(9190), + [anon_sym__Null_unspecified] = ACTIONS(9190), + [anon_sym___autoreleasing] = ACTIONS(9190), + [anon_sym___nullable] = ACTIONS(9190), + [anon_sym___nonnull] = ACTIONS(9190), + [anon_sym___strong] = ACTIONS(9190), + [anon_sym___weak] = ACTIONS(9190), + [anon_sym___bridge] = ACTIONS(9190), + [anon_sym___bridge_transfer] = ACTIONS(9190), + [anon_sym___bridge_retained] = ACTIONS(9190), + [anon_sym___unsafe_unretained] = ACTIONS(9190), + [anon_sym___block] = ACTIONS(9190), + [anon_sym___kindof] = ACTIONS(9190), + [anon_sym___unused] = ACTIONS(9190), + [anon_sym__Complex] = ACTIONS(9190), + [anon_sym___complex] = ACTIONS(9190), + [anon_sym_IBOutlet] = ACTIONS(9190), + [anon_sym_IBInspectable] = ACTIONS(9190), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9190), + [anon_sym_signed] = ACTIONS(9190), + [anon_sym_unsigned] = ACTIONS(9190), + [anon_sym_long] = ACTIONS(9190), + [anon_sym_short] = ACTIONS(9190), + [sym_primitive_type] = ACTIONS(9190), + [anon_sym_enum] = ACTIONS(9190), + [anon_sym_struct] = ACTIONS(9190), + [anon_sym_union] = ACTIONS(9190), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(9079), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9079), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9079), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(9079), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9079), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9079), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9079), - [anon_sym_NS_AVAILABLE] = ACTIONS(9081), - [anon_sym___IOS_AVAILABLE] = ACTIONS(9079), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9079), - [anon_sym_API_AVAILABLE] = ACTIONS(9079), - [anon_sym_API_UNAVAILABLE] = ACTIONS(9079), - [anon_sym_API_DEPRECATED] = ACTIONS(9079), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9079), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9079), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9079), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9079), - [anon_sym___deprecated_msg] = ACTIONS(9079), - [anon_sym___deprecated_enum_msg] = ACTIONS(9079), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9079), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9079), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9079), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9079), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(9079), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(9079), + [anon_sym_NS_ENUM] = ACTIONS(9190), + [anon_sym_NS_ERROR_ENUM] = ACTIONS(9190), + [anon_sym_NS_OPTIONS] = ACTIONS(9190), + [anon_sym_typeof] = ACTIONS(9190), + [anon_sym___typeof] = ACTIONS(9190), + [anon_sym___typeof__] = ACTIONS(9190), + [sym_id] = ACTIONS(9190), + [sym_instancetype] = ACTIONS(9190), + [sym_Class] = ACTIONS(9190), + [sym_SEL] = ACTIONS(9190), + [sym_IMP] = ACTIONS(9190), + [sym_BOOL] = ACTIONS(9190), + [sym_auto] = ACTIONS(9190), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -569308,72 +565373,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3863] = { - [sym_identifier] = ACTIONS(7352), - [anon_sym_COMMA] = ACTIONS(7354), - [anon_sym_LPAREN2] = ACTIONS(7354), - [anon_sym_STAR] = ACTIONS(7354), - [anon_sym_SEMI] = ACTIONS(7354), - [anon_sym___attribute] = ACTIONS(7352), - [anon_sym___attribute__] = ACTIONS(7352), - [anon_sym___based] = ACTIONS(7352), - [anon_sym_LBRACE] = ACTIONS(7354), - [anon_sym_LBRACK] = ACTIONS(7354), - [anon_sym_EQ] = ACTIONS(7354), - [anon_sym_const] = ACTIONS(7352), - [anon_sym_volatile] = ACTIONS(7352), - [anon_sym_restrict] = ACTIONS(7352), - [anon_sym__Atomic] = ACTIONS(7352), - [anon_sym_in] = ACTIONS(7352), - [anon_sym_out] = ACTIONS(7352), - [anon_sym_inout] = ACTIONS(7352), - [anon_sym_bycopy] = ACTIONS(7352), - [anon_sym_byref] = ACTIONS(7352), - [anon_sym_oneway] = ACTIONS(7352), - [anon_sym__Nullable] = ACTIONS(7352), - [anon_sym__Nonnull] = ACTIONS(7352), - [anon_sym__Nullable_result] = ACTIONS(7352), - [anon_sym__Null_unspecified] = ACTIONS(7352), - [anon_sym___autoreleasing] = ACTIONS(7352), - [anon_sym___nullable] = ACTIONS(7352), - [anon_sym___nonnull] = ACTIONS(7352), - [anon_sym___strong] = ACTIONS(7352), - [anon_sym___weak] = ACTIONS(7352), - [anon_sym___bridge] = ACTIONS(7352), - [anon_sym___bridge_transfer] = ACTIONS(7352), - [anon_sym___bridge_retained] = ACTIONS(7352), - [anon_sym___unsafe_unretained] = ACTIONS(7352), - [anon_sym___block] = ACTIONS(7352), - [anon_sym___kindof] = ACTIONS(7352), - [anon_sym___unused] = ACTIONS(7352), - [anon_sym__Complex] = ACTIONS(7352), - [anon_sym___complex] = ACTIONS(7352), - [anon_sym_IBOutlet] = ACTIONS(7352), - [anon_sym_IBInspectable] = ACTIONS(7352), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7352), + [anon_sym_COMMA] = ACTIONS(7887), + [anon_sym_SEMI] = ACTIONS(7887), + [anon_sym___attribute] = ACTIONS(7889), + [anon_sym___attribute__] = ACTIONS(7887), + [anon_sym_const] = ACTIONS(7887), + [anon_sym_volatile] = ACTIONS(7887), + [anon_sym_restrict] = ACTIONS(7887), + [anon_sym__Atomic] = ACTIONS(7887), + [anon_sym_in] = ACTIONS(7889), + [anon_sym_out] = ACTIONS(7887), + [anon_sym_inout] = ACTIONS(7887), + [anon_sym_bycopy] = ACTIONS(7887), + [anon_sym_byref] = ACTIONS(7887), + [anon_sym_oneway] = ACTIONS(7887), + [anon_sym__Nullable] = ACTIONS(7889), + [anon_sym__Nonnull] = ACTIONS(7887), + [anon_sym__Nullable_result] = ACTIONS(7887), + [anon_sym__Null_unspecified] = ACTIONS(7887), + [anon_sym___autoreleasing] = ACTIONS(7887), + [anon_sym___nullable] = ACTIONS(7887), + [anon_sym___nonnull] = ACTIONS(7887), + [anon_sym___strong] = ACTIONS(7887), + [anon_sym___weak] = ACTIONS(7887), + [anon_sym___bridge] = ACTIONS(7889), + [anon_sym___bridge_transfer] = ACTIONS(7887), + [anon_sym___bridge_retained] = ACTIONS(7887), + [anon_sym___unsafe_unretained] = ACTIONS(7887), + [anon_sym___block] = ACTIONS(7887), + [anon_sym___kindof] = ACTIONS(7887), + [anon_sym___unused] = ACTIONS(7887), + [anon_sym__Complex] = ACTIONS(7887), + [anon_sym___complex] = ACTIONS(7887), + [anon_sym_IBOutlet] = ACTIONS(7887), + [anon_sym_IBInspectable] = ACTIONS(7887), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7887), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7352), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7352), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7352), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7352), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7352), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7352), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7352), - [anon_sym_NS_AVAILABLE] = ACTIONS(7352), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7352), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7352), - [anon_sym_API_AVAILABLE] = ACTIONS(7352), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7352), - [anon_sym_API_DEPRECATED] = ACTIONS(7352), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7352), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7352), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7352), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7352), - [anon_sym___deprecated_msg] = ACTIONS(7352), - [anon_sym___deprecated_enum_msg] = ACTIONS(7352), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7352), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7352), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7352), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7352), + [sym_method_attribute_specifier] = ACTIONS(7887), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7887), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7887), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7887), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7887), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7887), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7887), + [anon_sym_NS_AVAILABLE] = ACTIONS(7889), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7887), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7887), + [anon_sym_API_AVAILABLE] = ACTIONS(7887), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7887), + [anon_sym_API_DEPRECATED] = ACTIONS(7887), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7887), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7887), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7887), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7887), + [anon_sym___deprecated_msg] = ACTIONS(7887), + [anon_sym___deprecated_enum_msg] = ACTIONS(7887), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7887), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7887), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7887), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7887), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -569382,72 +565440,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3864] = { - [sym_identifier] = ACTIONS(7344), - [anon_sym_COMMA] = ACTIONS(7346), - [anon_sym_LPAREN2] = ACTIONS(7346), - [anon_sym_STAR] = ACTIONS(7346), - [anon_sym_SEMI] = ACTIONS(7346), - [anon_sym___attribute] = ACTIONS(7344), - [anon_sym___attribute__] = ACTIONS(7344), - [anon_sym___based] = ACTIONS(7344), - [anon_sym_LBRACE] = ACTIONS(7346), - [anon_sym_LBRACK] = ACTIONS(7346), - [anon_sym_EQ] = ACTIONS(7346), - [anon_sym_const] = ACTIONS(7344), - [anon_sym_volatile] = ACTIONS(7344), - [anon_sym_restrict] = ACTIONS(7344), - [anon_sym__Atomic] = ACTIONS(7344), - [anon_sym_in] = ACTIONS(7344), - [anon_sym_out] = ACTIONS(7344), - [anon_sym_inout] = ACTIONS(7344), - [anon_sym_bycopy] = ACTIONS(7344), - [anon_sym_byref] = ACTIONS(7344), - [anon_sym_oneway] = ACTIONS(7344), - [anon_sym__Nullable] = ACTIONS(7344), - [anon_sym__Nonnull] = ACTIONS(7344), - [anon_sym__Nullable_result] = ACTIONS(7344), - [anon_sym__Null_unspecified] = ACTIONS(7344), - [anon_sym___autoreleasing] = ACTIONS(7344), - [anon_sym___nullable] = ACTIONS(7344), - [anon_sym___nonnull] = ACTIONS(7344), - [anon_sym___strong] = ACTIONS(7344), - [anon_sym___weak] = ACTIONS(7344), - [anon_sym___bridge] = ACTIONS(7344), - [anon_sym___bridge_transfer] = ACTIONS(7344), - [anon_sym___bridge_retained] = ACTIONS(7344), - [anon_sym___unsafe_unretained] = ACTIONS(7344), - [anon_sym___block] = ACTIONS(7344), - [anon_sym___kindof] = ACTIONS(7344), - [anon_sym___unused] = ACTIONS(7344), - [anon_sym__Complex] = ACTIONS(7344), - [anon_sym___complex] = ACTIONS(7344), - [anon_sym_IBOutlet] = ACTIONS(7344), - [anon_sym_IBInspectable] = ACTIONS(7344), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7344), + [anon_sym_COMMA] = ACTIONS(9163), + [anon_sym_SEMI] = ACTIONS(9163), + [anon_sym___attribute] = ACTIONS(9165), + [anon_sym___attribute__] = ACTIONS(9163), + [anon_sym_const] = ACTIONS(9163), + [anon_sym_volatile] = ACTIONS(9163), + [anon_sym_restrict] = ACTIONS(9163), + [anon_sym__Atomic] = ACTIONS(9163), + [anon_sym_in] = ACTIONS(9165), + [anon_sym_out] = ACTIONS(9163), + [anon_sym_inout] = ACTIONS(9163), + [anon_sym_bycopy] = ACTIONS(9163), + [anon_sym_byref] = ACTIONS(9163), + [anon_sym_oneway] = ACTIONS(9163), + [anon_sym__Nullable] = ACTIONS(9165), + [anon_sym__Nonnull] = ACTIONS(9163), + [anon_sym__Nullable_result] = ACTIONS(9163), + [anon_sym__Null_unspecified] = ACTIONS(9163), + [anon_sym___autoreleasing] = ACTIONS(9163), + [anon_sym___nullable] = ACTIONS(9163), + [anon_sym___nonnull] = ACTIONS(9163), + [anon_sym___strong] = ACTIONS(9163), + [anon_sym___weak] = ACTIONS(9163), + [anon_sym___bridge] = ACTIONS(9165), + [anon_sym___bridge_transfer] = ACTIONS(9163), + [anon_sym___bridge_retained] = ACTIONS(9163), + [anon_sym___unsafe_unretained] = ACTIONS(9163), + [anon_sym___block] = ACTIONS(9163), + [anon_sym___kindof] = ACTIONS(9163), + [anon_sym___unused] = ACTIONS(9163), + [anon_sym__Complex] = ACTIONS(9163), + [anon_sym___complex] = ACTIONS(9163), + [anon_sym_IBOutlet] = ACTIONS(9163), + [anon_sym_IBInspectable] = ACTIONS(9163), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9163), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7344), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7344), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7344), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7344), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7344), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7344), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7344), - [anon_sym_NS_AVAILABLE] = ACTIONS(7344), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7344), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7344), - [anon_sym_API_AVAILABLE] = ACTIONS(7344), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7344), - [anon_sym_API_DEPRECATED] = ACTIONS(7344), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7344), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7344), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7344), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7344), - [anon_sym___deprecated_msg] = ACTIONS(7344), - [anon_sym___deprecated_enum_msg] = ACTIONS(7344), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7344), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7344), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7344), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7344), + [sym_method_attribute_specifier] = ACTIONS(9163), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9163), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9163), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(9163), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9163), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9163), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9163), + [anon_sym_NS_AVAILABLE] = ACTIONS(9165), + [anon_sym___IOS_AVAILABLE] = ACTIONS(9163), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9163), + [anon_sym_API_AVAILABLE] = ACTIONS(9163), + [anon_sym_API_UNAVAILABLE] = ACTIONS(9163), + [anon_sym_API_DEPRECATED] = ACTIONS(9163), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9163), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9163), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9163), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9163), + [anon_sym___deprecated_msg] = ACTIONS(9163), + [anon_sym___deprecated_enum_msg] = ACTIONS(9163), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9163), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9163), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9163), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9163), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -569456,2927 +565507,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ifdef_undef_retain] = ACTIONS(3), }, [3865] = { - [anon_sym_COMMA] = ACTIONS(9083), - [anon_sym_RPAREN] = ACTIONS(9083), - [anon_sym_LPAREN2] = ACTIONS(9083), - [anon_sym_SEMI] = ACTIONS(9083), - [anon_sym___attribute] = ACTIONS(9085), - [anon_sym___attribute__] = ACTIONS(9083), - [anon_sym_LBRACE] = ACTIONS(9083), - [anon_sym_LBRACK] = ACTIONS(9083), - [anon_sym_EQ] = ACTIONS(9083), - [anon_sym_const] = ACTIONS(9083), - [anon_sym_volatile] = ACTIONS(9083), - [anon_sym_restrict] = ACTIONS(9083), - [anon_sym__Atomic] = ACTIONS(9083), - [anon_sym_in] = ACTIONS(9085), - [anon_sym_out] = ACTIONS(9083), - [anon_sym_inout] = ACTIONS(9083), - [anon_sym_bycopy] = ACTIONS(9083), - [anon_sym_byref] = ACTIONS(9083), - [anon_sym_oneway] = ACTIONS(9083), - [anon_sym__Nullable] = ACTIONS(9085), - [anon_sym__Nonnull] = ACTIONS(9083), - [anon_sym__Nullable_result] = ACTIONS(9083), - [anon_sym__Null_unspecified] = ACTIONS(9083), - [anon_sym___autoreleasing] = ACTIONS(9083), - [anon_sym___nullable] = ACTIONS(9083), - [anon_sym___nonnull] = ACTIONS(9083), - [anon_sym___strong] = ACTIONS(9083), - [anon_sym___weak] = ACTIONS(9083), - [anon_sym___bridge] = ACTIONS(9085), - [anon_sym___bridge_transfer] = ACTIONS(9083), - [anon_sym___bridge_retained] = ACTIONS(9083), - [anon_sym___unsafe_unretained] = ACTIONS(9083), - [anon_sym___block] = ACTIONS(9083), - [anon_sym___kindof] = ACTIONS(9083), - [anon_sym___unused] = ACTIONS(9083), - [anon_sym__Complex] = ACTIONS(9083), - [anon_sym___complex] = ACTIONS(9083), - [anon_sym_IBOutlet] = ACTIONS(9083), - [anon_sym_IBInspectable] = ACTIONS(9083), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9083), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(9083), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9083), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9083), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(9083), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9083), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9083), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9083), - [anon_sym_NS_AVAILABLE] = ACTIONS(9085), - [anon_sym___IOS_AVAILABLE] = ACTIONS(9083), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9083), - [anon_sym_API_AVAILABLE] = ACTIONS(9083), - [anon_sym_API_UNAVAILABLE] = ACTIONS(9083), - [anon_sym_API_DEPRECATED] = ACTIONS(9083), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9083), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9083), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9083), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9083), - [anon_sym___deprecated_msg] = ACTIONS(9083), - [anon_sym___deprecated_enum_msg] = ACTIONS(9083), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9083), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9083), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9083), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9083), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(9083), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(9083), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3866] = { - [sym_enumerator_list] = STATE(3784), - [sym_identifier] = ACTIONS(8240), - [anon_sym_LPAREN2] = ACTIONS(8242), - [anon_sym_STAR] = ACTIONS(8242), - [anon_sym_SEMI] = ACTIONS(8242), - [anon_sym___attribute] = ACTIONS(8240), - [anon_sym___attribute__] = ACTIONS(8240), - [anon_sym___based] = ACTIONS(8240), - [anon_sym_LBRACE] = ACTIONS(9087), - [anon_sym_const] = ACTIONS(8240), - [anon_sym_volatile] = ACTIONS(8240), - [anon_sym_restrict] = ACTIONS(8240), - [anon_sym__Atomic] = ACTIONS(8240), - [anon_sym_in] = ACTIONS(8240), - [anon_sym_out] = ACTIONS(8240), - [anon_sym_inout] = ACTIONS(8240), - [anon_sym_bycopy] = ACTIONS(8240), - [anon_sym_byref] = ACTIONS(8240), - [anon_sym_oneway] = ACTIONS(8240), - [anon_sym__Nullable] = ACTIONS(8240), - [anon_sym__Nonnull] = ACTIONS(8240), - [anon_sym__Nullable_result] = ACTIONS(8240), - [anon_sym__Null_unspecified] = ACTIONS(8240), - [anon_sym___autoreleasing] = ACTIONS(8240), - [anon_sym___nullable] = ACTIONS(8240), - [anon_sym___nonnull] = ACTIONS(8240), - [anon_sym___strong] = ACTIONS(8240), - [anon_sym___weak] = ACTIONS(8240), - [anon_sym___bridge] = ACTIONS(8240), - [anon_sym___bridge_transfer] = ACTIONS(8240), - [anon_sym___bridge_retained] = ACTIONS(8240), - [anon_sym___unsafe_unretained] = ACTIONS(8240), - [anon_sym___block] = ACTIONS(8240), - [anon_sym___kindof] = ACTIONS(8240), - [anon_sym___unused] = ACTIONS(8240), - [anon_sym__Complex] = ACTIONS(8240), - [anon_sym___complex] = ACTIONS(8240), - [anon_sym_IBOutlet] = ACTIONS(8240), - [anon_sym_IBInspectable] = ACTIONS(8240), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8240), - [anon_sym_COLON] = ACTIONS(9090), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8240), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8240), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8240), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8240), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8240), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8240), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8240), - [anon_sym_NS_AVAILABLE] = ACTIONS(8240), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8240), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_API_AVAILABLE] = ACTIONS(8240), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8240), - [anon_sym_API_DEPRECATED] = ACTIONS(8240), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8240), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8240), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8240), - [anon_sym___deprecated_msg] = ACTIONS(8240), - [anon_sym___deprecated_enum_msg] = ACTIONS(8240), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8240), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8240), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3867] = { - [sym_enumerator_list] = STATE(3784), - [sym_identifier] = ACTIONS(8240), - [anon_sym_LPAREN2] = ACTIONS(8242), - [anon_sym_STAR] = ACTIONS(8242), - [anon_sym_SEMI] = ACTIONS(8242), - [anon_sym___attribute] = ACTIONS(8240), - [anon_sym___attribute__] = ACTIONS(8240), - [anon_sym___based] = ACTIONS(8240), - [anon_sym_LBRACE] = ACTIONS(8964), - [anon_sym_const] = ACTIONS(8240), - [anon_sym_volatile] = ACTIONS(8240), - [anon_sym_restrict] = ACTIONS(8240), - [anon_sym__Atomic] = ACTIONS(8240), - [anon_sym_in] = ACTIONS(8240), - [anon_sym_out] = ACTIONS(8240), - [anon_sym_inout] = ACTIONS(8240), - [anon_sym_bycopy] = ACTIONS(8240), - [anon_sym_byref] = ACTIONS(8240), - [anon_sym_oneway] = ACTIONS(8240), - [anon_sym__Nullable] = ACTIONS(8240), - [anon_sym__Nonnull] = ACTIONS(8240), - [anon_sym__Nullable_result] = ACTIONS(8240), - [anon_sym__Null_unspecified] = ACTIONS(8240), - [anon_sym___autoreleasing] = ACTIONS(8240), - [anon_sym___nullable] = ACTIONS(8240), - [anon_sym___nonnull] = ACTIONS(8240), - [anon_sym___strong] = ACTIONS(8240), - [anon_sym___weak] = ACTIONS(8240), - [anon_sym___bridge] = ACTIONS(8240), - [anon_sym___bridge_transfer] = ACTIONS(8240), - [anon_sym___bridge_retained] = ACTIONS(8240), - [anon_sym___unsafe_unretained] = ACTIONS(8240), - [anon_sym___block] = ACTIONS(8240), - [anon_sym___kindof] = ACTIONS(8240), - [anon_sym___unused] = ACTIONS(8240), - [anon_sym__Complex] = ACTIONS(8240), - [anon_sym___complex] = ACTIONS(8240), - [anon_sym_IBOutlet] = ACTIONS(8240), - [anon_sym_IBInspectable] = ACTIONS(8240), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8240), - [anon_sym_COLON] = ACTIONS(9092), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8240), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8240), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8240), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8240), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8240), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8240), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8240), - [anon_sym_NS_AVAILABLE] = ACTIONS(8240), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8240), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_API_AVAILABLE] = ACTIONS(8240), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8240), - [anon_sym_API_DEPRECATED] = ACTIONS(8240), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8240), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8240), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8240), - [anon_sym___deprecated_msg] = ACTIONS(8240), - [anon_sym___deprecated_enum_msg] = ACTIONS(8240), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8240), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8240), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8240), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3868] = { - [sym_enumerator_list] = STATE(3799), - [sym_identifier] = ACTIONS(9094), - [anon_sym_LPAREN2] = ACTIONS(8193), - [anon_sym_STAR] = ACTIONS(8193), - [anon_sym_SEMI] = ACTIONS(8193), - [anon_sym___attribute] = ACTIONS(8195), - [anon_sym___attribute__] = ACTIONS(8195), - [anon_sym___based] = ACTIONS(8195), - [anon_sym_LBRACE] = ACTIONS(9097), - [anon_sym_const] = ACTIONS(8195), - [anon_sym_volatile] = ACTIONS(8195), - [anon_sym_restrict] = ACTIONS(8195), - [anon_sym__Atomic] = ACTIONS(8195), - [anon_sym_in] = ACTIONS(8195), - [anon_sym_out] = ACTIONS(8195), - [anon_sym_inout] = ACTIONS(8195), - [anon_sym_bycopy] = ACTIONS(8195), - [anon_sym_byref] = ACTIONS(8195), - [anon_sym_oneway] = ACTIONS(8195), - [anon_sym__Nullable] = ACTIONS(8195), - [anon_sym__Nonnull] = ACTIONS(8195), - [anon_sym__Nullable_result] = ACTIONS(8195), - [anon_sym__Null_unspecified] = ACTIONS(8195), - [anon_sym___autoreleasing] = ACTIONS(8195), - [anon_sym___nullable] = ACTIONS(8195), - [anon_sym___nonnull] = ACTIONS(8195), - [anon_sym___strong] = ACTIONS(8195), - [anon_sym___weak] = ACTIONS(8195), - [anon_sym___bridge] = ACTIONS(8195), - [anon_sym___bridge_transfer] = ACTIONS(8195), - [anon_sym___bridge_retained] = ACTIONS(8195), - [anon_sym___unsafe_unretained] = ACTIONS(8195), - [anon_sym___block] = ACTIONS(8195), - [anon_sym___kindof] = ACTIONS(8195), - [anon_sym___unused] = ACTIONS(8195), - [anon_sym__Complex] = ACTIONS(8195), - [anon_sym___complex] = ACTIONS(8195), - [anon_sym_IBOutlet] = ACTIONS(8195), - [anon_sym_IBInspectable] = ACTIONS(8195), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8195), - [anon_sym_COLON] = ACTIONS(9100), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8195), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8195), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8195), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8195), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8195), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8195), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8195), - [anon_sym_NS_AVAILABLE] = ACTIONS(8195), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8195), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8195), - [anon_sym_API_AVAILABLE] = ACTIONS(8195), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8195), - [anon_sym_API_DEPRECATED] = ACTIONS(8195), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8195), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8195), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8195), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8195), - [anon_sym___deprecated_msg] = ACTIONS(8195), - [anon_sym___deprecated_enum_msg] = ACTIONS(8195), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8195), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8195), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8195), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8195), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3869] = { - [sym_enumerator_list] = STATE(3799), - [sym_identifier] = ACTIONS(9102), - [anon_sym_LPAREN2] = ACTIONS(8193), - [anon_sym_STAR] = ACTIONS(8193), - [anon_sym_SEMI] = ACTIONS(8193), - [anon_sym___attribute] = ACTIONS(8195), - [anon_sym___attribute__] = ACTIONS(8195), - [anon_sym___based] = ACTIONS(8195), - [anon_sym_LBRACE] = ACTIONS(8964), - [anon_sym_const] = ACTIONS(8195), - [anon_sym_volatile] = ACTIONS(8195), - [anon_sym_restrict] = ACTIONS(8195), - [anon_sym__Atomic] = ACTIONS(8195), - [anon_sym_in] = ACTIONS(8195), - [anon_sym_out] = ACTIONS(8195), - [anon_sym_inout] = ACTIONS(8195), - [anon_sym_bycopy] = ACTIONS(8195), - [anon_sym_byref] = ACTIONS(8195), - [anon_sym_oneway] = ACTIONS(8195), - [anon_sym__Nullable] = ACTIONS(8195), - [anon_sym__Nonnull] = ACTIONS(8195), - [anon_sym__Nullable_result] = ACTIONS(8195), - [anon_sym__Null_unspecified] = ACTIONS(8195), - [anon_sym___autoreleasing] = ACTIONS(8195), - [anon_sym___nullable] = ACTIONS(8195), - [anon_sym___nonnull] = ACTIONS(8195), - [anon_sym___strong] = ACTIONS(8195), - [anon_sym___weak] = ACTIONS(8195), - [anon_sym___bridge] = ACTIONS(8195), - [anon_sym___bridge_transfer] = ACTIONS(8195), - [anon_sym___bridge_retained] = ACTIONS(8195), - [anon_sym___unsafe_unretained] = ACTIONS(8195), - [anon_sym___block] = ACTIONS(8195), - [anon_sym___kindof] = ACTIONS(8195), - [anon_sym___unused] = ACTIONS(8195), - [anon_sym__Complex] = ACTIONS(8195), - [anon_sym___complex] = ACTIONS(8195), - [anon_sym_IBOutlet] = ACTIONS(8195), - [anon_sym_IBInspectable] = ACTIONS(8195), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8195), - [anon_sym_COLON] = ACTIONS(9105), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8195), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8195), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8195), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8195), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8195), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8195), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8195), - [anon_sym_NS_AVAILABLE] = ACTIONS(8195), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8195), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8195), - [anon_sym_API_AVAILABLE] = ACTIONS(8195), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8195), - [anon_sym_API_DEPRECATED] = ACTIONS(8195), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8195), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8195), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8195), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8195), - [anon_sym___deprecated_msg] = ACTIONS(8195), - [anon_sym___deprecated_enum_msg] = ACTIONS(8195), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8195), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8195), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8195), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8195), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3870] = { - [sym_attribute_specifier] = STATE(4157), - [sym_type_qualifier] = STATE(5363), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3876), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9107), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3871] = { - [sym_attribute_specifier] = STATE(4131), - [sym_type_qualifier] = STATE(5502), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3901), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9109), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3872] = { - [sym_attribute_specifier] = STATE(4090), - [sym_type_qualifier] = STATE(5301), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3901), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9111), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3873] = { - [sym_attribute_specifier] = STATE(4140), - [sym_type_qualifier] = STATE(5277), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3882), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9113), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3874] = { - [sym_attribute_specifier] = STATE(4074), - [sym_type_qualifier] = STATE(5487), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3901), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9115), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3875] = { - [sym_attribute_specifier] = STATE(4136), - [sym_type_qualifier] = STATE(5510), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3888), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9117), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3876] = { - [sym_attribute_specifier] = STATE(4229), - [sym_type_qualifier] = STATE(5389), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3901), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9119), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3877] = { - [sym_attribute_specifier] = STATE(4181), - [sym_type_qualifier] = STATE(5632), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3901), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9121), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3878] = { - [sym_parameter_list] = STATE(3788), - [anon_sym_COMMA] = ACTIONS(9123), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_SEMI] = ACTIONS(9123), - [anon_sym___attribute] = ACTIONS(9125), - [anon_sym___attribute__] = ACTIONS(9123), - [anon_sym_LBRACE] = ACTIONS(9123), - [anon_sym_LBRACK] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(9123), - [anon_sym_const] = ACTIONS(9123), - [anon_sym_volatile] = ACTIONS(9123), - [anon_sym_restrict] = ACTIONS(9123), - [anon_sym__Atomic] = ACTIONS(9123), - [anon_sym_in] = ACTIONS(9125), - [anon_sym_out] = ACTIONS(9123), - [anon_sym_inout] = ACTIONS(9123), - [anon_sym_bycopy] = ACTIONS(9123), - [anon_sym_byref] = ACTIONS(9123), - [anon_sym_oneway] = ACTIONS(9123), - [anon_sym__Nullable] = ACTIONS(9125), - [anon_sym__Nonnull] = ACTIONS(9123), - [anon_sym__Nullable_result] = ACTIONS(9123), - [anon_sym__Null_unspecified] = ACTIONS(9123), - [anon_sym___autoreleasing] = ACTIONS(9123), - [anon_sym___nullable] = ACTIONS(9123), - [anon_sym___nonnull] = ACTIONS(9123), - [anon_sym___strong] = ACTIONS(9123), - [anon_sym___weak] = ACTIONS(9123), - [anon_sym___bridge] = ACTIONS(9125), - [anon_sym___bridge_transfer] = ACTIONS(9123), - [anon_sym___bridge_retained] = ACTIONS(9123), - [anon_sym___unsafe_unretained] = ACTIONS(9123), - [anon_sym___block] = ACTIONS(9123), - [anon_sym___kindof] = ACTIONS(9123), - [anon_sym___unused] = ACTIONS(9123), - [anon_sym__Complex] = ACTIONS(9123), - [anon_sym___complex] = ACTIONS(9123), - [anon_sym_IBOutlet] = ACTIONS(9123), - [anon_sym_IBInspectable] = ACTIONS(9123), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9123), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(9123), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9123), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9123), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(9123), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9123), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9123), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9123), - [anon_sym_NS_AVAILABLE] = ACTIONS(9125), - [anon_sym___IOS_AVAILABLE] = ACTIONS(9123), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9123), - [anon_sym_API_AVAILABLE] = ACTIONS(9123), - [anon_sym_API_UNAVAILABLE] = ACTIONS(9123), - [anon_sym_API_DEPRECATED] = ACTIONS(9123), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9123), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9123), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9123), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9123), - [anon_sym___deprecated_msg] = ACTIONS(9123), - [anon_sym___deprecated_enum_msg] = ACTIONS(9123), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9123), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9123), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9123), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9123), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3879] = { - [sym_attribute_specifier] = STATE(4159), - [sym_type_qualifier] = STATE(5420), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3901), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9127), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3880] = { - [sym_attribute_specifier] = STATE(4179), - [sym_type_qualifier] = STATE(5637), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3901), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9129), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3881] = { - [sym_attribute_specifier] = STATE(4238), - [sym_type_qualifier] = STATE(5565), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3897), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9131), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3882] = { - [sym_attribute_specifier] = STATE(4094), - [sym_type_qualifier] = STATE(5303), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3901), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9133), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3883] = { - [sym_attribute_specifier] = STATE(4211), - [sym_type_qualifier] = STATE(5394), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3892), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9135), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3884] = { - [sym_parameter_list] = STATE(3788), - [anon_sym_COMMA] = ACTIONS(9137), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_SEMI] = ACTIONS(9137), - [anon_sym___attribute] = ACTIONS(9139), - [anon_sym___attribute__] = ACTIONS(9137), - [anon_sym_LBRACE] = ACTIONS(9137), - [anon_sym_LBRACK] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(9137), - [anon_sym_const] = ACTIONS(9137), - [anon_sym_volatile] = ACTIONS(9137), - [anon_sym_restrict] = ACTIONS(9137), - [anon_sym__Atomic] = ACTIONS(9137), - [anon_sym_in] = ACTIONS(9139), - [anon_sym_out] = ACTIONS(9137), - [anon_sym_inout] = ACTIONS(9137), - [anon_sym_bycopy] = ACTIONS(9137), - [anon_sym_byref] = ACTIONS(9137), - [anon_sym_oneway] = ACTIONS(9137), - [anon_sym__Nullable] = ACTIONS(9139), - [anon_sym__Nonnull] = ACTIONS(9137), - [anon_sym__Nullable_result] = ACTIONS(9137), - [anon_sym__Null_unspecified] = ACTIONS(9137), - [anon_sym___autoreleasing] = ACTIONS(9137), - [anon_sym___nullable] = ACTIONS(9137), - [anon_sym___nonnull] = ACTIONS(9137), - [anon_sym___strong] = ACTIONS(9137), - [anon_sym___weak] = ACTIONS(9137), - [anon_sym___bridge] = ACTIONS(9139), - [anon_sym___bridge_transfer] = ACTIONS(9137), - [anon_sym___bridge_retained] = ACTIONS(9137), - [anon_sym___unsafe_unretained] = ACTIONS(9137), - [anon_sym___block] = ACTIONS(9137), - [anon_sym___kindof] = ACTIONS(9137), - [anon_sym___unused] = ACTIONS(9137), - [anon_sym__Complex] = ACTIONS(9137), - [anon_sym___complex] = ACTIONS(9137), - [anon_sym_IBOutlet] = ACTIONS(9137), - [anon_sym_IBInspectable] = ACTIONS(9137), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9137), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(9137), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9137), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9137), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(9137), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9137), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9137), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9137), - [anon_sym_NS_AVAILABLE] = ACTIONS(9139), - [anon_sym___IOS_AVAILABLE] = ACTIONS(9137), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9137), - [anon_sym_API_AVAILABLE] = ACTIONS(9137), - [anon_sym_API_UNAVAILABLE] = ACTIONS(9137), - [anon_sym_API_DEPRECATED] = ACTIONS(9137), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9137), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9137), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9137), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9137), - [anon_sym___deprecated_msg] = ACTIONS(9137), - [anon_sym___deprecated_enum_msg] = ACTIONS(9137), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9137), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9137), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9137), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9137), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3885] = { - [sym_attribute_specifier] = STATE(4085), - [sym_type_qualifier] = STATE(5485), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3901), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9141), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3886] = { - [sym_parameter_list] = STATE(3788), - [anon_sym_COMMA] = ACTIONS(9143), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_SEMI] = ACTIONS(9143), - [anon_sym___attribute] = ACTIONS(9145), - [anon_sym___attribute__] = ACTIONS(9143), - [anon_sym_LBRACE] = ACTIONS(9143), - [anon_sym_LBRACK] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(9143), - [anon_sym_const] = ACTIONS(9143), - [anon_sym_volatile] = ACTIONS(9143), - [anon_sym_restrict] = ACTIONS(9143), - [anon_sym__Atomic] = ACTIONS(9143), - [anon_sym_in] = ACTIONS(9145), - [anon_sym_out] = ACTIONS(9143), - [anon_sym_inout] = ACTIONS(9143), - [anon_sym_bycopy] = ACTIONS(9143), - [anon_sym_byref] = ACTIONS(9143), - [anon_sym_oneway] = ACTIONS(9143), - [anon_sym__Nullable] = ACTIONS(9145), - [anon_sym__Nonnull] = ACTIONS(9143), - [anon_sym__Nullable_result] = ACTIONS(9143), - [anon_sym__Null_unspecified] = ACTIONS(9143), - [anon_sym___autoreleasing] = ACTIONS(9143), - [anon_sym___nullable] = ACTIONS(9143), - [anon_sym___nonnull] = ACTIONS(9143), - [anon_sym___strong] = ACTIONS(9143), - [anon_sym___weak] = ACTIONS(9143), - [anon_sym___bridge] = ACTIONS(9145), - [anon_sym___bridge_transfer] = ACTIONS(9143), - [anon_sym___bridge_retained] = ACTIONS(9143), - [anon_sym___unsafe_unretained] = ACTIONS(9143), - [anon_sym___block] = ACTIONS(9143), - [anon_sym___kindof] = ACTIONS(9143), - [anon_sym___unused] = ACTIONS(9143), - [anon_sym__Complex] = ACTIONS(9143), - [anon_sym___complex] = ACTIONS(9143), - [anon_sym_IBOutlet] = ACTIONS(9143), - [anon_sym_IBInspectable] = ACTIONS(9143), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9143), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(9143), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9143), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9143), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(9143), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9143), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9143), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9143), - [anon_sym_NS_AVAILABLE] = ACTIONS(9145), - [anon_sym___IOS_AVAILABLE] = ACTIONS(9143), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9143), - [anon_sym_API_AVAILABLE] = ACTIONS(9143), - [anon_sym_API_UNAVAILABLE] = ACTIONS(9143), - [anon_sym_API_DEPRECATED] = ACTIONS(9143), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9143), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9143), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9143), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9143), - [anon_sym___deprecated_msg] = ACTIONS(9143), - [anon_sym___deprecated_enum_msg] = ACTIONS(9143), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9143), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9143), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9143), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9143), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3887] = { - [sym_attribute_specifier] = STATE(4225), - [sym_type_qualifier] = STATE(5559), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3901), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9147), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3888] = { - [sym_attribute_specifier] = STATE(4228), - [sym_type_qualifier] = STATE(5562), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3901), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9149), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3889] = { - [sym_attribute_specifier] = STATE(4103), [sym_type_qualifier] = STATE(5307), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3874), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9151), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3890] = { - [sym_parameter_list] = STATE(3788), - [anon_sym_COMMA] = ACTIONS(9153), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_SEMI] = ACTIONS(9153), - [anon_sym___attribute] = ACTIONS(9155), - [anon_sym___attribute__] = ACTIONS(9153), - [anon_sym_LBRACE] = ACTIONS(9153), - [anon_sym_LBRACK] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(9153), - [anon_sym_const] = ACTIONS(9153), - [anon_sym_volatile] = ACTIONS(9153), - [anon_sym_restrict] = ACTIONS(9153), - [anon_sym__Atomic] = ACTIONS(9153), - [anon_sym_in] = ACTIONS(9155), - [anon_sym_out] = ACTIONS(9153), - [anon_sym_inout] = ACTIONS(9153), - [anon_sym_bycopy] = ACTIONS(9153), - [anon_sym_byref] = ACTIONS(9153), - [anon_sym_oneway] = ACTIONS(9153), - [anon_sym__Nullable] = ACTIONS(9155), - [anon_sym__Nonnull] = ACTIONS(9153), - [anon_sym__Nullable_result] = ACTIONS(9153), - [anon_sym__Null_unspecified] = ACTIONS(9153), - [anon_sym___autoreleasing] = ACTIONS(9153), - [anon_sym___nullable] = ACTIONS(9153), - [anon_sym___nonnull] = ACTIONS(9153), - [anon_sym___strong] = ACTIONS(9153), - [anon_sym___weak] = ACTIONS(9153), - [anon_sym___bridge] = ACTIONS(9155), - [anon_sym___bridge_transfer] = ACTIONS(9153), - [anon_sym___bridge_retained] = ACTIONS(9153), - [anon_sym___unsafe_unretained] = ACTIONS(9153), - [anon_sym___block] = ACTIONS(9153), - [anon_sym___kindof] = ACTIONS(9153), - [anon_sym___unused] = ACTIONS(9153), - [anon_sym__Complex] = ACTIONS(9153), - [anon_sym___complex] = ACTIONS(9153), - [anon_sym_IBOutlet] = ACTIONS(9153), - [anon_sym_IBInspectable] = ACTIONS(9153), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9153), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(9153), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9153), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9153), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(9153), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9153), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9153), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9153), - [anon_sym_NS_AVAILABLE] = ACTIONS(9155), - [anon_sym___IOS_AVAILABLE] = ACTIONS(9153), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9153), - [anon_sym_API_AVAILABLE] = ACTIONS(9153), - [anon_sym_API_UNAVAILABLE] = ACTIONS(9153), - [anon_sym_API_DEPRECATED] = ACTIONS(9153), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9153), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9153), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9153), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9153), - [anon_sym___deprecated_msg] = ACTIONS(9153), - [anon_sym___deprecated_enum_msg] = ACTIONS(9153), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9153), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9153), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9153), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9153), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3891] = { - [sym_attribute_specifier] = STATE(4235), - [sym_type_qualifier] = STATE(5386), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3901), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9157), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3892] = { - [sym_attribute_specifier] = STATE(4152), - [sym_type_qualifier] = STATE(5423), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3901), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9159), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3893] = { - [sym_attribute_specifier] = STATE(4185), - [sym_type_qualifier] = STATE(5628), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3901), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9161), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3894] = { - [sym_attribute_specifier] = STATE(4234), - [sym_type_qualifier] = STATE(5715), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3877), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9163), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3895] = { - [sym_attribute_specifier] = STATE(4134), - [sym_type_qualifier] = STATE(5508), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3901), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9165), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3896] = { - [sym_attribute_specifier] = STATE(4201), - [sym_type_qualifier] = STATE(5621), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3871), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9167), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3897] = { - [sym_attribute_specifier] = STATE(4182), - [sym_type_qualifier] = STATE(5631), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3820), - [sym_availability_attribute_specifier] = STATE(3820), - [aux_sym_declaration_repeat1] = STATE(3901), - [anon_sym_COMMA] = ACTIONS(8875), - [anon_sym_SEMI] = ACTIONS(9169), - [anon_sym___attribute] = ACTIONS(8307), - [anon_sym___attribute__] = ACTIONS(8879), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(47), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), - [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), - [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(8889), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(8891), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(8893), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(8893), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(8893), - [anon_sym_NS_AVAILABLE] = ACTIONS(8315), - [anon_sym___IOS_AVAILABLE] = ACTIONS(8895), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_API_AVAILABLE] = ACTIONS(8895), - [anon_sym_API_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_API_DEPRECATED] = ACTIONS(8895), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(8895), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(8895), - [anon_sym___deprecated_msg] = ACTIONS(8895), - [anon_sym___deprecated_enum_msg] = ACTIONS(8895), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(8895), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(8895), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(8895), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3898] = { - [sym_parameter_list] = STATE(3788), - [anon_sym_COMMA] = ACTIONS(9171), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_SEMI] = ACTIONS(9171), - [anon_sym___attribute] = ACTIONS(9173), - [anon_sym___attribute__] = ACTIONS(9171), - [anon_sym_LBRACK] = ACTIONS(8883), - [anon_sym_EQ] = ACTIONS(8885), - [anon_sym_const] = ACTIONS(9171), - [anon_sym_volatile] = ACTIONS(9171), - [anon_sym_restrict] = ACTIONS(9171), - [anon_sym__Atomic] = ACTIONS(9171), - [anon_sym_in] = ACTIONS(9173), - [anon_sym_out] = ACTIONS(9171), - [anon_sym_inout] = ACTIONS(9171), - [anon_sym_bycopy] = ACTIONS(9171), - [anon_sym_byref] = ACTIONS(9171), - [anon_sym_oneway] = ACTIONS(9171), - [anon_sym__Nullable] = ACTIONS(9173), - [anon_sym__Nonnull] = ACTIONS(9171), - [anon_sym__Nullable_result] = ACTIONS(9171), - [anon_sym__Null_unspecified] = ACTIONS(9171), - [anon_sym___autoreleasing] = ACTIONS(9171), - [anon_sym___nullable] = ACTIONS(9171), - [anon_sym___nonnull] = ACTIONS(9171), - [anon_sym___strong] = ACTIONS(9171), - [anon_sym___weak] = ACTIONS(9171), - [anon_sym___bridge] = ACTIONS(9173), - [anon_sym___bridge_transfer] = ACTIONS(9171), - [anon_sym___bridge_retained] = ACTIONS(9171), - [anon_sym___unsafe_unretained] = ACTIONS(9171), - [anon_sym___block] = ACTIONS(9171), - [anon_sym___kindof] = ACTIONS(9171), - [anon_sym___unused] = ACTIONS(9171), - [anon_sym__Complex] = ACTIONS(9171), - [anon_sym___complex] = ACTIONS(9171), - [anon_sym_IBOutlet] = ACTIONS(9171), - [anon_sym_IBInspectable] = ACTIONS(9171), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9171), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(9171), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9171), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9171), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(9171), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9171), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9171), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9171), - [anon_sym_NS_AVAILABLE] = ACTIONS(9173), - [anon_sym___IOS_AVAILABLE] = ACTIONS(9171), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9171), - [anon_sym_API_AVAILABLE] = ACTIONS(9171), - [anon_sym_API_UNAVAILABLE] = ACTIONS(9171), - [anon_sym_API_DEPRECATED] = ACTIONS(9171), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9171), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9171), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9171), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9171), - [anon_sym___deprecated_msg] = ACTIONS(9171), - [anon_sym___deprecated_enum_msg] = ACTIONS(9171), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9171), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9171), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9171), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9171), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3899] = { - [sym_ms_based_modifier] = STATE(5835), - [sym_ms_unaligned_ptr_modifier] = STATE(4001), - [sym_ms_pointer_modifier] = STATE(3931), - [sym__declarator] = STATE(4786), - [sym__abstract_declarator] = STATE(4257), - [sym_parenthesized_declarator] = STATE(3843), - [sym_abstract_parenthesized_declarator] = STATE(4266), - [sym_pointer_declarator] = STATE(3843), - [sym_abstract_pointer_declarator] = STATE(4266), - [sym_function_declarator] = STATE(3843), - [sym_abstract_function_declarator] = STATE(4266), - [sym_array_declarator] = STATE(3843), - [sym_abstract_array_declarator] = STATE(4266), - [sym_type_qualifier] = STATE(3913), - [sym_parameter_list] = STATE(4263), - [sym_block_abstract_declarator] = STATE(4266), - [sym_block_declarator] = STATE(3843), - [aux_sym_type_definition_repeat1] = STATE(3913), - [aux_sym_pointer_declarator_repeat1] = STATE(3931), - [sym_identifier] = ACTIONS(7909), - [anon_sym_COMMA] = ACTIONS(7911), - [anon_sym_RPAREN] = ACTIONS(7911), - [anon_sym_LPAREN2] = ACTIONS(6521), - [anon_sym_STAR] = ACTIONS(6523), - [anon_sym___based] = ACTIONS(6527), - [sym_ms_restrict_modifier] = ACTIONS(7917), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7917), - [sym_ms_signed_ptr_modifier] = ACTIONS(7917), - [anon_sym__unaligned] = ACTIONS(7919), - [anon_sym___unaligned] = ACTIONS(7919), - [anon_sym_LBRACK] = ACTIONS(6529), - [anon_sym_const] = ACTIONS(7921), - [anon_sym_volatile] = ACTIONS(7921), - [anon_sym_restrict] = ACTIONS(7921), - [anon_sym__Atomic] = ACTIONS(7921), - [anon_sym_in] = ACTIONS(7921), - [anon_sym_out] = ACTIONS(7921), - [anon_sym_inout] = ACTIONS(7921), - [anon_sym_bycopy] = ACTIONS(7921), - [anon_sym_byref] = ACTIONS(7921), - [anon_sym_oneway] = ACTIONS(7921), - [anon_sym__Nullable] = ACTIONS(7921), - [anon_sym__Nonnull] = ACTIONS(7921), - [anon_sym__Nullable_result] = ACTIONS(7921), - [anon_sym__Null_unspecified] = ACTIONS(7921), - [anon_sym___autoreleasing] = ACTIONS(7921), - [anon_sym___nullable] = ACTIONS(7921), - [anon_sym___nonnull] = ACTIONS(7921), - [anon_sym___strong] = ACTIONS(7921), - [anon_sym___weak] = ACTIONS(7921), - [anon_sym___bridge] = ACTIONS(7921), - [anon_sym___bridge_transfer] = ACTIONS(7921), - [anon_sym___bridge_retained] = ACTIONS(7921), - [anon_sym___unsafe_unretained] = ACTIONS(7921), - [anon_sym___block] = ACTIONS(7921), - [anon_sym___kindof] = ACTIONS(7921), - [anon_sym___unused] = ACTIONS(7921), - [anon_sym__Complex] = ACTIONS(7921), - [anon_sym___complex] = ACTIONS(7921), - [anon_sym_IBOutlet] = ACTIONS(7921), - [anon_sym_IBInspectable] = ACTIONS(7921), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7921), - [sym_comment] = ACTIONS(3), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3900] = { - [sym_attribute_specifier] = STATE(4063), - [sym_argument_list] = STATE(3088), - [sym_method_variadic_arguments_attribute_specifier] = STATE(3098), - [sym_availability_attribute_specifier] = STATE(3098), - [sym_swift_name_attribute_sepcifier] = STATE(4063), - [aux_sym_enumerator_repeat1] = STATE(4063), - [anon_sym_COMMA] = ACTIONS(9175), - [anon_sym_LPAREN2] = ACTIONS(7002), - [anon_sym_DASH] = ACTIONS(7837), - [anon_sym_PLUS] = ACTIONS(7837), - [anon_sym_STAR] = ACTIONS(7831), - [anon_sym_SLASH] = ACTIONS(7833), - [anon_sym_PERCENT] = ACTIONS(7831), - [anon_sym_PIPE_PIPE] = ACTIONS(7871), - [anon_sym_AMP_AMP] = ACTIONS(7853), - [anon_sym_PIPE] = ACTIONS(7855), - [anon_sym_CARET] = ACTIONS(7857), - [anon_sym_AMP] = ACTIONS(7859), - [anon_sym_EQ_EQ] = ACTIONS(7861), - [anon_sym_BANG_EQ] = ACTIONS(7861), - [anon_sym_GT] = ACTIONS(7863), - [anon_sym_GT_EQ] = ACTIONS(7865), - [anon_sym_LT_EQ] = ACTIONS(7865), - [anon_sym_LT] = ACTIONS(7863), - [anon_sym_LT_LT] = ACTIONS(7839), - [anon_sym_GT_GT] = ACTIONS(7839), - [anon_sym___attribute] = ACTIONS(35), - [anon_sym___attribute__] = ACTIONS(9177), - [anon_sym_RBRACE] = ACTIONS(9175), - [anon_sym_LBRACK] = ACTIONS(7026), - [anon_sym_QMARK] = ACTIONS(7873), - [anon_sym_DASH_DASH] = ACTIONS(7827), - [anon_sym_PLUS_PLUS] = ACTIONS(7827), - [anon_sym_DOT] = ACTIONS(7032), - [anon_sym_DASH_GT] = ACTIONS(7032), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(9179), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9181), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9181), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(9183), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9183), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9183), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9183), - [anon_sym_NS_AVAILABLE] = ACTIONS(119), - [anon_sym___IOS_AVAILABLE] = ACTIONS(9185), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9185), - [anon_sym_API_AVAILABLE] = ACTIONS(9185), - [anon_sym_API_UNAVAILABLE] = ACTIONS(9185), - [anon_sym_API_DEPRECATED] = ACTIONS(9185), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9185), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9185), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9185), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9185), - [anon_sym___deprecated_msg] = ACTIONS(9185), - [anon_sym___deprecated_enum_msg] = ACTIONS(9185), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9185), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9185), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9185), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9185), - [anon_sym_NS_REFINED_FOR_SWIFT] = ACTIONS(9187), - [anon_sym_NS_SWIFT_NAME] = ACTIONS(9189), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3901] = { - [aux_sym_declaration_repeat1] = STATE(3901), - [anon_sym_COMMA] = ACTIONS(9191), [anon_sym_SEMI] = ACTIONS(9194), [anon_sym___attribute] = ACTIONS(9196), - [anon_sym___attribute__] = ACTIONS(9194), - [anon_sym_const] = ACTIONS(9194), - [anon_sym_volatile] = ACTIONS(9194), - [anon_sym_restrict] = ACTIONS(9194), - [anon_sym__Atomic] = ACTIONS(9194), - [anon_sym_in] = ACTIONS(9196), - [anon_sym_out] = ACTIONS(9194), - [anon_sym_inout] = ACTIONS(9194), - [anon_sym_bycopy] = ACTIONS(9194), - [anon_sym_byref] = ACTIONS(9194), - [anon_sym_oneway] = ACTIONS(9194), - [anon_sym__Nullable] = ACTIONS(9196), - [anon_sym__Nonnull] = ACTIONS(9194), - [anon_sym__Nullable_result] = ACTIONS(9194), - [anon_sym__Null_unspecified] = ACTIONS(9194), - [anon_sym___autoreleasing] = ACTIONS(9194), - [anon_sym___nullable] = ACTIONS(9194), - [anon_sym___nonnull] = ACTIONS(9194), - [anon_sym___strong] = ACTIONS(9194), - [anon_sym___weak] = ACTIONS(9194), - [anon_sym___bridge] = ACTIONS(9196), - [anon_sym___bridge_transfer] = ACTIONS(9194), - [anon_sym___bridge_retained] = ACTIONS(9194), - [anon_sym___unsafe_unretained] = ACTIONS(9194), - [anon_sym___block] = ACTIONS(9194), - [anon_sym___kindof] = ACTIONS(9194), - [anon_sym___unused] = ACTIONS(9194), - [anon_sym__Complex] = ACTIONS(9194), - [anon_sym___complex] = ACTIONS(9194), - [anon_sym_IBOutlet] = ACTIONS(9194), - [anon_sym_IBInspectable] = ACTIONS(9194), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9194), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(9194), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9194), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9194), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(9194), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9194), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9194), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9194), - [anon_sym_NS_AVAILABLE] = ACTIONS(9196), - [anon_sym___IOS_AVAILABLE] = ACTIONS(9194), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9194), - [anon_sym_API_AVAILABLE] = ACTIONS(9194), - [anon_sym_API_UNAVAILABLE] = ACTIONS(9194), - [anon_sym_API_DEPRECATED] = ACTIONS(9194), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9194), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9194), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9194), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9194), - [anon_sym___deprecated_msg] = ACTIONS(9194), - [anon_sym___deprecated_enum_msg] = ACTIONS(9194), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9194), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9194), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9194), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9194), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3902] = { - [anon_sym_COMMA] = ACTIONS(9171), - [anon_sym_SEMI] = ACTIONS(9171), - [anon_sym___attribute] = ACTIONS(9173), - [anon_sym___attribute__] = ACTIONS(9171), - [anon_sym_const] = ACTIONS(9171), - [anon_sym_volatile] = ACTIONS(9171), - [anon_sym_restrict] = ACTIONS(9171), - [anon_sym__Atomic] = ACTIONS(9171), - [anon_sym_in] = ACTIONS(9173), - [anon_sym_out] = ACTIONS(9171), - [anon_sym_inout] = ACTIONS(9171), - [anon_sym_bycopy] = ACTIONS(9171), - [anon_sym_byref] = ACTIONS(9171), - [anon_sym_oneway] = ACTIONS(9171), - [anon_sym__Nullable] = ACTIONS(9173), - [anon_sym__Nonnull] = ACTIONS(9171), - [anon_sym__Nullable_result] = ACTIONS(9171), - [anon_sym__Null_unspecified] = ACTIONS(9171), - [anon_sym___autoreleasing] = ACTIONS(9171), - [anon_sym___nullable] = ACTIONS(9171), - [anon_sym___nonnull] = ACTIONS(9171), - [anon_sym___strong] = ACTIONS(9171), - [anon_sym___weak] = ACTIONS(9171), - [anon_sym___bridge] = ACTIONS(9173), - [anon_sym___bridge_transfer] = ACTIONS(9171), - [anon_sym___bridge_retained] = ACTIONS(9171), - [anon_sym___unsafe_unretained] = ACTIONS(9171), - [anon_sym___block] = ACTIONS(9171), - [anon_sym___kindof] = ACTIONS(9171), - [anon_sym___unused] = ACTIONS(9171), - [anon_sym__Complex] = ACTIONS(9171), - [anon_sym___complex] = ACTIONS(9171), - [anon_sym_IBOutlet] = ACTIONS(9171), - [anon_sym_IBInspectable] = ACTIONS(9171), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9171), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(9171), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(9171), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(9171), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(9171), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(9171), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(9171), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(9171), - [anon_sym_NS_AVAILABLE] = ACTIONS(9173), - [anon_sym___IOS_AVAILABLE] = ACTIONS(9171), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(9171), - [anon_sym_API_AVAILABLE] = ACTIONS(9171), - [anon_sym_API_UNAVAILABLE] = ACTIONS(9171), - [anon_sym_API_DEPRECATED] = ACTIONS(9171), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(9171), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(9171), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(9171), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(9171), - [anon_sym___deprecated_msg] = ACTIONS(9171), - [anon_sym___deprecated_enum_msg] = ACTIONS(9171), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(9171), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(9171), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(9171), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(9171), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3903] = { - [anon_sym_COMMA] = ACTIONS(7937), - [anon_sym_SEMI] = ACTIONS(7937), - [anon_sym___attribute] = ACTIONS(7939), - [anon_sym___attribute__] = ACTIONS(7937), - [anon_sym_const] = ACTIONS(7937), - [anon_sym_volatile] = ACTIONS(7937), - [anon_sym_restrict] = ACTIONS(7937), - [anon_sym__Atomic] = ACTIONS(7937), - [anon_sym_in] = ACTIONS(7939), - [anon_sym_out] = ACTIONS(7937), - [anon_sym_inout] = ACTIONS(7937), - [anon_sym_bycopy] = ACTIONS(7937), - [anon_sym_byref] = ACTIONS(7937), - [anon_sym_oneway] = ACTIONS(7937), - [anon_sym__Nullable] = ACTIONS(7939), - [anon_sym__Nonnull] = ACTIONS(7937), - [anon_sym__Nullable_result] = ACTIONS(7937), - [anon_sym__Null_unspecified] = ACTIONS(7937), - [anon_sym___autoreleasing] = ACTIONS(7937), - [anon_sym___nullable] = ACTIONS(7937), - [anon_sym___nonnull] = ACTIONS(7937), - [anon_sym___strong] = ACTIONS(7937), - [anon_sym___weak] = ACTIONS(7937), - [anon_sym___bridge] = ACTIONS(7939), - [anon_sym___bridge_transfer] = ACTIONS(7937), - [anon_sym___bridge_retained] = ACTIONS(7937), - [anon_sym___unsafe_unretained] = ACTIONS(7937), - [anon_sym___block] = ACTIONS(7937), - [anon_sym___kindof] = ACTIONS(7937), - [anon_sym___unused] = ACTIONS(7937), - [anon_sym__Complex] = ACTIONS(7937), - [anon_sym___complex] = ACTIONS(7937), - [anon_sym_IBOutlet] = ACTIONS(7937), - [anon_sym_IBInspectable] = ACTIONS(7937), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(7937), - [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7937), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7937), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7937), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7937), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7937), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7937), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7937), - [anon_sym_NS_AVAILABLE] = ACTIONS(7939), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7937), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7937), - [anon_sym_API_AVAILABLE] = ACTIONS(7937), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7937), - [anon_sym_API_DEPRECATED] = ACTIONS(7937), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7937), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7937), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7937), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7937), - [anon_sym___deprecated_msg] = ACTIONS(7937), - [anon_sym___deprecated_enum_msg] = ACTIONS(7937), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7937), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7937), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7937), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7937), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3904] = { - [sym_compound_statement] = STATE(3347), - [sym_parameter_list] = STATE(5059), - [sym_identifier] = ACTIONS(9198), - [anon_sym_RPAREN] = ACTIONS(9200), - [anon_sym_LPAREN2] = ACTIONS(8793), - [anon_sym_LBRACE] = ACTIONS(8795), - [anon_sym_const] = ACTIONS(9198), - [anon_sym_volatile] = ACTIONS(9198), - [anon_sym_restrict] = ACTIONS(9198), - [anon_sym__Atomic] = ACTIONS(9198), + [anon_sym___attribute__] = ACTIONS(7769), + [anon_sym_const] = ACTIONS(8860), + [anon_sym_volatile] = ACTIONS(8860), + [anon_sym_restrict] = ACTIONS(8860), + [anon_sym__Atomic] = ACTIONS(8860), [anon_sym_in] = ACTIONS(9198), - [anon_sym_out] = ACTIONS(9198), - [anon_sym_inout] = ACTIONS(9198), - [anon_sym_bycopy] = ACTIONS(9198), - [anon_sym_byref] = ACTIONS(9198), - [anon_sym_oneway] = ACTIONS(9198), - [anon_sym__Nullable] = ACTIONS(9198), - [anon_sym__Nonnull] = ACTIONS(9198), - [anon_sym__Nullable_result] = ACTIONS(9198), - [anon_sym__Null_unspecified] = ACTIONS(9198), - [anon_sym___autoreleasing] = ACTIONS(9198), - [anon_sym___nullable] = ACTIONS(9198), - [anon_sym___nonnull] = ACTIONS(9198), - [anon_sym___strong] = ACTIONS(9198), - [anon_sym___weak] = ACTIONS(9198), - [anon_sym___bridge] = ACTIONS(9198), - [anon_sym___bridge_transfer] = ACTIONS(9198), - [anon_sym___bridge_retained] = ACTIONS(9198), - [anon_sym___unsafe_unretained] = ACTIONS(9198), - [anon_sym___block] = ACTIONS(9198), - [anon_sym___kindof] = ACTIONS(9198), - [anon_sym___unused] = ACTIONS(9198), - [anon_sym__Complex] = ACTIONS(9198), - [anon_sym___complex] = ACTIONS(9198), - [anon_sym_IBOutlet] = ACTIONS(9198), - [anon_sym_IBInspectable] = ACTIONS(9198), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(9198), - [anon_sym_signed] = ACTIONS(9198), - [anon_sym_unsigned] = ACTIONS(9198), - [anon_sym_long] = ACTIONS(9198), - [anon_sym_short] = ACTIONS(9198), - [sym_primitive_type] = ACTIONS(9198), - [anon_sym_enum] = ACTIONS(9198), - [anon_sym_NS_ENUM] = ACTIONS(9198), - [anon_sym_NS_ERROR_ENUM] = ACTIONS(9198), - [anon_sym_NS_OPTIONS] = ACTIONS(9198), - [anon_sym_struct] = ACTIONS(9198), - [anon_sym_union] = ACTIONS(9198), - [sym_comment] = ACTIONS(3), - [anon_sym_typeof] = ACTIONS(9198), - [anon_sym___typeof] = ACTIONS(9198), - [anon_sym___typeof__] = ACTIONS(9198), - [sym_id] = ACTIONS(9198), - [sym_instancetype] = ACTIONS(9198), - [sym_Class] = ACTIONS(9198), - [sym_SEL] = ACTIONS(9198), - [sym_IMP] = ACTIONS(9198), - [sym_BOOL] = ACTIONS(9198), - [sym_auto] = ACTIONS(9198), - [sym_pragma] = ACTIONS(3), - [sym__ifdef_if_retain] = ACTIONS(3), - [sym__ifdef_elif_ignore] = ACTIONS(3), - [sym__ifdef_else_ignore] = ACTIONS(3), - [sym__ifdef_endif_retain] = ACTIONS(3), - [sym__ifdef_undef_retain] = ACTIONS(3), - }, - [3905] = { - [sym_type_qualifier] = STATE(5299), - [anon_sym_SEMI] = ACTIONS(9202), - [anon_sym___attribute] = ACTIONS(9204), - [anon_sym___attribute__] = ACTIONS(7793), - [anon_sym_const] = ACTIONS(8887), - [anon_sym_volatile] = ACTIONS(8887), - [anon_sym_restrict] = ACTIONS(8887), - [anon_sym__Atomic] = ACTIONS(8887), - [anon_sym_in] = ACTIONS(9206), - [anon_sym_out] = ACTIONS(8887), - [anon_sym_inout] = ACTIONS(8887), - [anon_sym_bycopy] = ACTIONS(8887), - [anon_sym_byref] = ACTIONS(8887), - [anon_sym_oneway] = ACTIONS(8887), + [anon_sym_out] = ACTIONS(8860), + [anon_sym_inout] = ACTIONS(8860), + [anon_sym_bycopy] = ACTIONS(8860), + [anon_sym_byref] = ACTIONS(8860), + [anon_sym_oneway] = ACTIONS(8860), [anon_sym__Nullable] = ACTIONS(47), - [anon_sym__Nonnull] = ACTIONS(8887), - [anon_sym__Nullable_result] = ACTIONS(8887), - [anon_sym__Null_unspecified] = ACTIONS(8887), - [anon_sym___autoreleasing] = ACTIONS(8887), - [anon_sym___nullable] = ACTIONS(8887), - [anon_sym___nonnull] = ACTIONS(8887), - [anon_sym___strong] = ACTIONS(8887), - [anon_sym___weak] = ACTIONS(8887), + [anon_sym__Nonnull] = ACTIONS(8860), + [anon_sym__Nullable_result] = ACTIONS(8860), + [anon_sym__Null_unspecified] = ACTIONS(8860), + [anon_sym___autoreleasing] = ACTIONS(8860), + [anon_sym___nullable] = ACTIONS(8860), + [anon_sym___nonnull] = ACTIONS(8860), + [anon_sym___strong] = ACTIONS(8860), + [anon_sym___weak] = ACTIONS(8860), [anon_sym___bridge] = ACTIONS(47), - [anon_sym___bridge_transfer] = ACTIONS(8887), - [anon_sym___bridge_retained] = ACTIONS(8887), - [anon_sym___unsafe_unretained] = ACTIONS(8887), - [anon_sym___block] = ACTIONS(8887), - [anon_sym___kindof] = ACTIONS(8887), - [anon_sym___unused] = ACTIONS(8887), - [anon_sym__Complex] = ACTIONS(8887), - [anon_sym___complex] = ACTIONS(8887), - [anon_sym_IBOutlet] = ACTIONS(8887), - [anon_sym_IBInspectable] = ACTIONS(8887), - [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8887), + [anon_sym___bridge_transfer] = ACTIONS(8860), + [anon_sym___bridge_retained] = ACTIONS(8860), + [anon_sym___unsafe_unretained] = ACTIONS(8860), + [anon_sym___block] = ACTIONS(8860), + [anon_sym___kindof] = ACTIONS(8860), + [anon_sym___unused] = ACTIONS(8860), + [anon_sym__Complex] = ACTIONS(8860), + [anon_sym___complex] = ACTIONS(8860), + [anon_sym_IBOutlet] = ACTIONS(8860), + [anon_sym_IBInspectable] = ACTIONS(8860), + [anon_sym_NS_VALID_UNTIL_END_OF_SCOPE] = ACTIONS(8860), [sym_comment] = ACTIONS(3), - [sym_method_attribute_specifier] = ACTIONS(7793), - [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7793), - [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7793), - [anon_sym_NS_UNAVAILABLE] = ACTIONS(7793), - [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7793), - [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7793), - [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7793), - [anon_sym_NS_AVAILABLE] = ACTIONS(9204), - [anon_sym___IOS_AVAILABLE] = ACTIONS(7793), - [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7793), - [anon_sym_API_AVAILABLE] = ACTIONS(7793), - [anon_sym_API_UNAVAILABLE] = ACTIONS(7793), - [anon_sym_API_DEPRECATED] = ACTIONS(7793), - [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7793), - [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7793), - [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7793), - [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7793), - [anon_sym___deprecated_msg] = ACTIONS(7793), - [anon_sym___deprecated_enum_msg] = ACTIONS(7793), - [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7793), - [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7793), - [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7793), - [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7793), + [sym_method_attribute_specifier] = ACTIONS(7769), + [anon_sym_NS_FORMAT_FUNCTION] = ACTIONS(7769), + [anon_sym_CF_FORMAT_FUNCTION] = ACTIONS(7769), + [anon_sym_NS_UNAVAILABLE] = ACTIONS(7769), + [anon_sym_DEPRECATED_ATTRIBUTE] = ACTIONS(7769), + [anon_sym_UI_APPEARANCE_SELECTOR] = ACTIONS(7769), + [anon_sym_UNAVAILABLE_ATTRIBUTE] = ACTIONS(7769), + [anon_sym_NS_AVAILABLE] = ACTIONS(9196), + [anon_sym___IOS_AVAILABLE] = ACTIONS(7769), + [anon_sym_NS_AVAILABLE_IOS] = ACTIONS(7769), + [anon_sym_API_AVAILABLE] = ACTIONS(7769), + [anon_sym_API_UNAVAILABLE] = ACTIONS(7769), + [anon_sym_API_DEPRECATED] = ACTIONS(7769), + [anon_sym_NS_ENUM_AVAILABLE_IOS] = ACTIONS(7769), + [anon_sym_NS_DEPRECATED_IOS] = ACTIONS(7769), + [anon_sym_NS_ENUM_DEPRECATED_IOS] = ACTIONS(7769), + [anon_sym_DEPRECATED_MSG_ATTRIBUTE] = ACTIONS(7769), + [anon_sym___deprecated_msg] = ACTIONS(7769), + [anon_sym___deprecated_enum_msg] = ACTIONS(7769), + [anon_sym_NS_SWIFT_UNAVAILABLE] = ACTIONS(7769), + [anon_sym_NS_EXTENSION_UNAVAILABLE_IOS] = ACTIONS(7769), + [anon_sym_NS_CLASS_AVAILABLE_IOS] = ACTIONS(7769), + [anon_sym_NS_CLASS_DEPRECATED_IOS] = ACTIONS(7769), [sym_pragma] = ACTIONS(3), [sym__ifdef_if_retain] = ACTIONS(3), [sym__ifdef_elif_ignore] = ACTIONS(3), @@ -572388,13 +565577,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { static const uint16_t ts_small_parse_table[] = { [0] = 6, - ACTIONS(8793), 1, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(8795), 1, + ACTIONS(8712), 1, anon_sym_LBRACE, - STATE(3347), 1, + STATE(3260), 1, sym_compound_statement, - STATE(5059), 1, + STATE(5064), 1, sym_parameter_list, ACTIONS(3), 7, sym_comment, @@ -572404,7 +565593,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9198), 53, + ACTIONS(9190), 53, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -572442,12 +565631,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -572458,8 +565647,79 @@ static const uint16_t ts_small_parse_table[] = { sym_IMP, sym_BOOL, sym_auto, - [77] = 3, - ACTIONS(7893), 4, + [77] = 6, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8764), 1, + anon_sym_LBRACE, + STATE(3029), 1, + sym_compound_statement, + STATE(5133), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9190), 53, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [154] = 3, + ACTIONS(7843), 4, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_CARET, @@ -572472,7 +565732,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7891), 53, + ACTIONS(7841), 53, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -572510,83 +565770,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [148] = 6, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8873), 1, - anon_sym_LBRACE, - STATE(3069), 1, - sym_compound_statement, - STATE(5060), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9198), 53, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, anon_sym_NS_ENUM, anon_sym_NS_ERROR_ENUM, anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -572598,6 +565787,10 @@ static const uint16_t ts_small_parse_table[] = { sym_BOOL, sym_auto, [225] = 3, + ACTIONS(7843), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -572606,7 +565799,70 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7106), 26, + ACTIONS(7841), 53, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [295] = 3, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7014), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -572633,7 +565889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_NO, anon_sym___builtin_available, anon_sym_va_arg, - ACTIONS(7108), 30, + ACTIONS(7016), 30, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -572664,77 +565920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATselector, anon_sym_ATencode, anon_sym_ATavailable, - [295] = 3, - ACTIONS(7893), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7891), 53, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, [365] = 4, - ACTIONS(7893), 1, + ACTIONS(7843), 1, anon_sym_CARET, - ACTIONS(9209), 1, + ACTIONS(9201), 1, anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, @@ -572744,7 +565933,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7891), 53, + ACTIONS(7841), 53, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -572782,12 +565971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -572799,7 +565988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_BOOL, sym_auto, [436] = 4, - STATE(3912), 2, + STATE(3872), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(3), 7, @@ -572810,19 +565999,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8321), 22, + ACTIONS(8345), 22, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -572833,7 +566022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_IMP, sym_BOOL, sym_auto, - ACTIONS(9211), 31, + ACTIONS(9203), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -572865,38 +566054,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [507] = 15, - ACTIONS(6521), 1, - anon_sym_LPAREN2, - ACTIONS(6523), 1, - anon_sym_STAR, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(6529), 1, - anon_sym_LBRACK, - ACTIONS(7909), 1, + [507] = 3, + ACTIONS(7873), 1, + anon_sym_CARET, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9190), 53, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - STATE(4263), 1, - sym_parameter_list, - STATE(4282), 1, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [575] = 15, + ACTIONS(6471), 1, + anon_sym_LPAREN2, + ACTIONS(6473), 1, + anon_sym_STAR, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(7859), 1, + sym_identifier, + STATE(4279), 1, sym__abstract_declarator, - STATE(4782), 1, + STATE(4311), 1, + sym_parameter_list, + STATE(4793), 1, sym__declarator, - STATE(5835), 1, + STATE(5795), 1, sym_ms_based_modifier, - ACTIONS(8033), 2, + ACTIONS(7993), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(3725), 2, + STATE(3688), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, sym_block_declarator, - STATE(4266), 5, + STATE(4310), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -572910,7 +566164,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -572942,71 +566196,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [599] = 3, - ACTIONS(7903), 1, - anon_sym_CARET, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9198), 53, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, [667] = 2, ACTIONS(3), 7, sym_comment, @@ -573016,7 +566205,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7352), 53, + ACTIONS(7268), 53, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -573054,12 +566243,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -573079,7 +566268,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7326), 53, + ACTIONS(7302), 53, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -573117,12 +566306,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -573142,7 +566331,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7344), 53, + ACTIONS(7294), 53, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -573180,12 +566369,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -573205,7 +566394,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7318), 53, + ACTIONS(7290), 53, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -573243,12 +566432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -573268,7 +566457,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7348), 53, + ACTIONS(7298), 53, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -573306,12 +566495,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -573331,7 +566520,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7360), 53, + ACTIONS(7310), 53, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -573369,12 +566558,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -573394,7 +566583,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(2300), 53, + ACTIONS(2256), 53, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -573432,12 +566621,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -573457,7 +566646,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7322), 53, + ACTIONS(7282), 53, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -573495,12 +566684,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -573512,34 +566701,34 @@ static const uint16_t ts_small_parse_table[] = { sym_BOOL, sym_auto, [1187] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7881), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(9206), 1, anon_sym_LPAREN2, - ACTIONS(8680), 1, + ACTIONS(9208), 1, anon_sym_STAR, - STATE(4001), 1, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(4178), 1, + STATE(4411), 1, sym__declarator, - STATE(5875), 1, + STATE(5666), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3984), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3996), 2, + STATE(3891), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(7917), 3, + STATE(3937), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(3843), 5, + STATE(4472), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -573553,7 +566742,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -573586,38 +566775,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [1275] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(9210), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(9212), 1, anon_sym_LPAREN2, ACTIONS(9214), 1, anon_sym_STAR, - STATE(4001), 1, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(4782), 1, - sym__declarator, - STATE(5835), 1, + STATE(4754), 1, + sym__field_declarator, + STATE(5263), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3927), 2, + STATE(3889), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3985), 2, + STATE(3958), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7917), 3, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(4799), 5, + sym_parenthesized_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, sym_block_declarator, ACTIONS(3), 7, sym_comment, @@ -573627,7 +566816,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -573660,34 +566849,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [1363] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(8279), 1, + ACTIONS(8229), 1, anon_sym_LPAREN2, - ACTIONS(8281), 1, + ACTIONS(8231), 1, anon_sym_STAR, - ACTIONS(9216), 1, + ACTIONS(8662), 1, sym_identifier, - STATE(4001), 1, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(4296), 1, + STATE(4319), 1, sym__type_declarator, - STATE(5452), 1, + STATE(5596), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3934), 2, + STATE(3892), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3987), 2, + STATE(3936), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7917), 3, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(4319), 5, + STATE(4335), 5, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, @@ -573701,7 +566890,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -573734,34 +566923,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [1451] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7881), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(9206), 1, anon_sym_LPAREN2, - ACTIONS(9218), 1, + ACTIONS(9208), 1, anon_sym_STAR, - STATE(3884), 1, - sym__declarator, - STATE(4001), 1, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(5669), 1, + STATE(4412), 1, + sym__declarator, + STATE(5666), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3968), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3996), 2, + STATE(3899), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(7917), 3, + STATE(3933), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(3843), 5, + STATE(4472), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -573775,7 +566964,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -573808,34 +566997,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [1539] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, - ACTIONS(9214), 1, + ACTIONS(8672), 1, anon_sym_STAR, - STATE(4001), 1, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(4773), 1, + STATE(4207), 1, sym__declarator, STATE(5835), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3977), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3996), 2, + STATE(3894), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(7917), 3, + STATE(3927), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -573849,7 +567038,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -573882,38 +567071,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [1627] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(8279), 1, - anon_sym_LPAREN2, - ACTIONS(8281), 1, - anon_sym_STAR, - ACTIONS(9216), 1, + ACTIONS(7859), 1, sym_identifier, - STATE(4001), 1, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(9216), 1, + anon_sym_STAR, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(4297), 1, - sym__type_declarator, - STATE(5452), 1, + STATE(4793), 1, + sym__declarator, + STATE(5795), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3945), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3964), 2, + STATE(4013), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7917), 3, + STATE(4016), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(4319), 5, - sym_parenthesized_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, sym_block_declarator, ACTIONS(3), 7, sym_comment, @@ -573923,7 +567112,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -573956,38 +567145,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [1715] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(9210), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(9212), 1, anon_sym_LPAREN2, - ACTIONS(9218), 1, + ACTIONS(9214), 1, anon_sym_STAR, - STATE(3884), 1, - sym__declarator, - STATE(4001), 1, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(5669), 1, + STATE(4763), 1, + sym__field_declarator, + STATE(5263), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3937), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3968), 2, + STATE(3945), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7917), 3, + STATE(4016), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(4799), 5, + sym_parenthesized_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, sym_block_declarator, ACTIONS(3), 7, sym_comment, @@ -573997,7 +567186,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -574030,38 +567219,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [1803] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(9220), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(9222), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, - ACTIONS(9224), 1, + ACTIONS(9216), 1, anon_sym_STAR, - STATE(4001), 1, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(4732), 1, - sym__field_declarator, - STATE(5579), 1, + STATE(4793), 1, + sym__declarator, + STATE(5795), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3971), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3996), 2, + STATE(3900), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(7917), 3, + STATE(4013), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(4785), 5, - sym_parenthesized_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, sym_block_declarator, ACTIONS(3), 7, sym_comment, @@ -574071,7 +567260,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -574104,34 +567293,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [1891] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7881), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(9206), 1, anon_sym_LPAREN2, - ACTIONS(9214), 1, + ACTIONS(9208), 1, anon_sym_STAR, - STATE(4001), 1, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(4782), 1, + STATE(4412), 1, sym__declarator, - STATE(5835), 1, + STATE(5666), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3985), 2, + STATE(3933), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(3996), 2, + STATE(4016), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(7917), 3, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(3843), 5, + STATE(4472), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -574145,7 +567334,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -574178,38 +567367,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [1979] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7925), 1, - sym_identifier, - ACTIONS(9226), 1, + ACTIONS(8229), 1, anon_sym_LPAREN2, - ACTIONS(9228), 1, + ACTIONS(8231), 1, anon_sym_STAR, - STATE(4001), 1, + ACTIONS(8662), 1, + sym_identifier, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(4355), 1, - sym__declarator, - STATE(5402), 1, + STATE(4320), 1, + sym__type_declarator, + STATE(5596), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3938), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3969), 2, + STATE(4009), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7917), 3, + STATE(4016), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(4453), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, sym_block_declarator, ACTIONS(3), 7, sym_comment, @@ -574219,7 +567408,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -574252,38 +567441,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [2067] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(9220), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(9222), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, - ACTIONS(9224), 1, + ACTIONS(9218), 1, anon_sym_STAR, - STATE(4001), 1, + STATE(3834), 1, + sym__declarator, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(4742), 1, - sym__field_declarator, - STATE(5579), 1, + STATE(5659), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3935), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3973), 2, + STATE(3980), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7917), 3, + STATE(4016), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(4785), 5, - sym_parenthesized_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, sym_block_declarator, ACTIONS(3), 7, sym_comment, @@ -574293,7 +567482,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -574326,38 +567515,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [2155] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(8279), 1, - anon_sym_LPAREN2, - ACTIONS(8281), 1, - anon_sym_STAR, - ACTIONS(9216), 1, + ACTIONS(7859), 1, sym_identifier, - STATE(4001), 1, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(8672), 1, + anon_sym_STAR, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(4299), 1, - sym__type_declarator, - STATE(5452), 1, + STATE(4228), 1, + sym__declarator, + STATE(5835), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3965), 2, + STATE(3976), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(3996), 2, + STATE(4016), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(7917), 3, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(4319), 5, - sym_parenthesized_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, sym_block_declarator, ACTIONS(3), 7, sym_comment, @@ -574367,7 +567556,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -574400,38 +567589,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [2243] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(9220), 1, - sym_identifier, - ACTIONS(9222), 1, + ACTIONS(8229), 1, anon_sym_LPAREN2, - ACTIONS(9224), 1, + ACTIONS(8231), 1, anon_sym_STAR, - STATE(4001), 1, + ACTIONS(8662), 1, + sym_identifier, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(4733), 1, - sym__field_declarator, - STATE(5579), 1, + STATE(4318), 1, + sym__type_declarator, + STATE(5596), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3990), 2, + STATE(3972), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(3996), 2, + STATE(4016), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(7917), 3, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(4785), 5, - sym_parenthesized_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, sym_block_declarator, ACTIONS(3), 7, sym_comment, @@ -574441,7 +567630,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -574474,34 +567663,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [2331] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, - ACTIONS(8680), 1, + ACTIONS(9218), 1, anon_sym_STAR, - STATE(4001), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4178), 1, + STATE(3839), 1, sym__declarator, - STATE(5875), 1, + STATE(4023), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5659), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3941), 2, + STATE(3893), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3984), 2, + STATE(3929), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7917), 3, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -574515,7 +567704,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -574548,34 +567737,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [2419] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, - ACTIONS(9218), 1, + ACTIONS(8672), 1, anon_sym_STAR, - STATE(3878), 1, - sym__declarator, - STATE(4001), 1, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(5669), 1, + STATE(4126), 1, + sym__declarator, + STATE(5835), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3981), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3996), 2, + STATE(3903), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(7917), 3, + STATE(3973), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -574589,7 +567778,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -574622,34 +567811,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [2507] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7925), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(9226), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, - ACTIONS(9228), 1, + ACTIONS(9218), 1, anon_sym_STAR, - STATE(4001), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4395), 1, + STATE(3848), 1, sym__declarator, - STATE(5402), 1, + STATE(4023), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5659), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3995), 2, + STATE(3932), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(3996), 2, + STATE(4016), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(7917), 3, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(4453), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -574663,7 +567852,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -574696,38 +567885,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [2595] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(9220), 1, + ACTIONS(7881), 1, sym_identifier, - ACTIONS(9222), 1, + ACTIONS(9206), 1, anon_sym_LPAREN2, - ACTIONS(9224), 1, + ACTIONS(9208), 1, anon_sym_STAR, - STATE(4001), 1, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(4733), 1, - sym__field_declarator, - STATE(5579), 1, + STATE(4409), 1, + sym__declarator, + STATE(5666), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3930), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3990), 2, + STATE(3974), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7917), 3, + STATE(4016), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(4785), 5, - sym_parenthesized_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(4472), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, sym_block_declarator, ACTIONS(3), 7, sym_comment, @@ -574737,7 +567926,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -574770,34 +567959,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [2683] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, - ACTIONS(9218), 1, + ACTIONS(9216), 1, anon_sym_STAR, - STATE(3886), 1, - sym__declarator, - STATE(4001), 1, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(5669), 1, + STATE(4801), 1, + sym__declarator, + STATE(5795), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3926), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3963), 2, + STATE(4005), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7917), 3, + STATE(4016), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -574811,7 +568000,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -574844,34 +568033,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [2771] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, - ACTIONS(8680), 1, + ACTIONS(9216), 1, anon_sym_STAR, - STATE(4001), 1, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(4150), 1, + STATE(4792), 1, sym__declarator, - STATE(5875), 1, + STATE(5795), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3983), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3996), 2, + STATE(3888), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(7917), 3, + STATE(3966), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -574885,7 +568074,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -574918,34 +568107,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [2859] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7925), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(9226), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, - ACTIONS(9228), 1, + ACTIONS(9218), 1, anon_sym_STAR, - STATE(4001), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4395), 1, + STATE(3834), 1, sym__declarator, - STATE(5402), 1, + STATE(4023), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5659), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3946), 2, + STATE(3898), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3995), 2, + STATE(3980), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7917), 3, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(4453), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -574959,7 +568148,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -574992,34 +568181,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [2947] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, - ACTIONS(8680), 1, + ACTIONS(8672), 1, anon_sym_STAR, - STATE(4001), 1, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(4250), 1, + STATE(4207), 1, sym__declarator, - STATE(5875), 1, + STATE(5835), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3923), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3986), 2, + STATE(3927), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7917), 3, + STATE(4016), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -575033,7 +568222,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -575066,38 +568255,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [3035] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(9210), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(9212), 1, anon_sym_LPAREN2, ACTIONS(9214), 1, anon_sym_STAR, - STATE(4001), 1, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(4786), 1, - sym__declarator, - STATE(5835), 1, + STATE(4763), 1, + sym__field_declarator, + STATE(5263), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3931), 2, + STATE(3906), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3967), 2, + STATE(3945), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7917), 3, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(4799), 5, + sym_parenthesized_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, sym_block_declarator, ACTIONS(3), 7, sym_comment, @@ -575107,7 +568296,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -575140,34 +568329,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [3123] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(8279), 1, + ACTIONS(8229), 1, anon_sym_LPAREN2, - ACTIONS(8281), 1, + ACTIONS(8231), 1, anon_sym_STAR, - ACTIONS(9216), 1, + ACTIONS(8662), 1, sym_identifier, - STATE(4001), 1, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(4296), 1, + STATE(4320), 1, sym__type_declarator, - STATE(5452), 1, + STATE(5596), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3987), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3996), 2, + STATE(3895), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(7917), 3, + STATE(4009), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(4319), 5, + STATE(4335), 5, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, @@ -575181,7 +568370,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -575214,38 +568403,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [3211] = 14, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7925), 1, + ACTIONS(9210), 1, sym_identifier, - ACTIONS(9226), 1, + ACTIONS(9212), 1, anon_sym_LPAREN2, - ACTIONS(9228), 1, + ACTIONS(9214), 1, anon_sym_STAR, - STATE(4001), 1, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - STATE(4378), 1, - sym__declarator, - STATE(5402), 1, + STATE(4750), 1, + sym__field_declarator, + STATE(5263), 1, sym_ms_based_modifier, - ACTIONS(7919), 2, + ACTIONS(7869), 2, anon_sym__unaligned, anon_sym___unaligned, STATE(3978), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(3996), 2, + STATE(4016), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(7917), 3, + ACTIONS(7867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(4453), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(4799), 5, + sym_parenthesized_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, sym_block_declarator, ACTIONS(3), 7, sym_comment, @@ -575255,7 +568444,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -575288,54 +568477,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [3299] = 21, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(6529), 1, + ACTIONS(6479), 1, anon_sym_LBRACK, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(7931), 1, + ACTIONS(7877), 1, anon_sym_LPAREN2, - ACTIONS(7933), 1, + ACTIONS(7879), 1, anon_sym_STAR, - ACTIONS(9232), 1, + ACTIONS(9222), 1, anon_sym_in, - ACTIONS(9234), 1, + ACTIONS(9224), 1, sym_method_attribute_specifier, - STATE(3727), 1, + STATE(3681), 1, sym__declarator, - STATE(3873), 1, + STATE(3857), 1, sym_init_declarator, - STATE(4098), 1, + STATE(4260), 1, sym__abstract_declarator, - STATE(4263), 1, + STATE(4311), 1, sym_parameter_list, - STATE(5669), 1, + STATE(5659), 1, sym_ms_based_modifier, - ACTIONS(9230), 2, + ACTIONS(9220), 2, anon_sym___attribute, anon_sym___attribute__, - ACTIONS(9236), 2, + ACTIONS(9226), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(4346), 2, + STATE(4337), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - STATE(4431), 2, + STATE(4468), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - ACTIONS(9238), 4, + ACTIONS(9228), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, anon_sym_UNAVAILABLE_ATTRIBUTE, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, sym_block_declarator, - STATE(4266), 5, + STATE(4310), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -575349,7 +568538,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9240), 16, + ACTIONS(9230), 16, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -575367,52 +568556,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, [3399] = 20, - ACTIONS(113), 1, + ACTIONS(111), 1, sym_method_attribute_specifier, - ACTIONS(6521), 1, + ACTIONS(6471), 1, anon_sym_LPAREN2, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(6529), 1, + ACTIONS(6479), 1, anon_sym_LBRACK, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(7913), 1, + ACTIONS(7863), 1, anon_sym_STAR, - ACTIONS(9242), 1, + ACTIONS(9232), 1, anon_sym_RPAREN, - STATE(4101), 1, - sym__declarator, - STATE(4218), 1, + STATE(4146), 1, sym__abstract_declarator, - STATE(4263), 1, + STATE(4212), 1, + sym__declarator, + STATE(4311), 1, sym_parameter_list, - STATE(5875), 1, + STATE(5835), 1, sym_ms_based_modifier, ACTIONS(35), 2, anon_sym___attribute, anon_sym___attribute__, - ACTIONS(115), 2, + ACTIONS(113), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4314), 2, + STATE(4371), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(117), 4, + ACTIONS(115), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, anon_sym_UNAVAILABLE_ATTRIBUTE, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, sym_block_declarator, - STATE(4266), 5, + STATE(4310), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -575426,7 +568615,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, + ACTIONS(117), 16, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -575444,52 +568633,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, [3496] = 20, - ACTIONS(113), 1, + ACTIONS(111), 1, sym_method_attribute_specifier, - ACTIONS(6521), 1, + ACTIONS(6471), 1, anon_sym_LPAREN2, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(6529), 1, + ACTIONS(6479), 1, anon_sym_LBRACK, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(7913), 1, + ACTIONS(7863), 1, anon_sym_STAR, - ACTIONS(9244), 1, + ACTIONS(9234), 1, anon_sym_RPAREN, - STATE(4220), 1, + STATE(4155), 1, sym__declarator, - STATE(4232), 1, + STATE(4173), 1, sym__abstract_declarator, - STATE(4263), 1, + STATE(4311), 1, sym_parameter_list, - STATE(5875), 1, + STATE(5835), 1, sym_ms_based_modifier, ACTIONS(35), 2, anon_sym___attribute, anon_sym___attribute__, - ACTIONS(115), 2, + ACTIONS(113), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4315), 2, + STATE(4362), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(117), 4, + ACTIONS(115), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, anon_sym_UNAVAILABLE_ATTRIBUTE, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, sym_block_declarator, - STATE(4266), 5, + STATE(4310), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -575503,7 +568692,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, + ACTIONS(117), 16, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -575521,52 +568710,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, [3593] = 20, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(6529), 1, + ACTIONS(6479), 1, anon_sym_LBRACK, - ACTIONS(7925), 1, + ACTIONS(7881), 1, sym_identifier, - ACTIONS(7927), 1, + ACTIONS(7883), 1, anon_sym_LPAREN2, - ACTIONS(7929), 1, + ACTIONS(7885), 1, anon_sym_STAR, - ACTIONS(9234), 1, + ACTIONS(9224), 1, sym_method_attribute_specifier, - ACTIONS(9246), 1, + ACTIONS(9236), 1, anon_sym_in, - STATE(4106), 1, - sym__declarator, - STATE(4113), 1, + STATE(4230), 1, sym__abstract_declarator, - STATE(4263), 1, + STATE(4235), 1, + sym__declarator, + STATE(4311), 1, sym_parameter_list, - STATE(5402), 1, + STATE(5666), 1, sym_ms_based_modifier, - ACTIONS(9230), 2, + ACTIONS(9220), 2, anon_sym___attribute, anon_sym___attribute__, - ACTIONS(9236), 2, + ACTIONS(9226), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(4308), 2, + STATE(4341), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - STATE(4431), 2, + STATE(4468), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - ACTIONS(9238), 4, + ACTIONS(9228), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, anon_sym_UNAVAILABLE_ATTRIBUTE, - STATE(4266), 5, + STATE(4310), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_block_abstract_declarator, - STATE(4453), 5, + STATE(4472), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -575580,7 +568769,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9240), 16, + ACTIONS(9230), 16, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -575598,52 +568787,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, [3690] = 20, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(6529), 1, + ACTIONS(6479), 1, anon_sym_LBRACK, - ACTIONS(7925), 1, + ACTIONS(7881), 1, sym_identifier, - ACTIONS(7927), 1, + ACTIONS(7883), 1, anon_sym_LPAREN2, - ACTIONS(7929), 1, + ACTIONS(7885), 1, anon_sym_STAR, - ACTIONS(9234), 1, + ACTIONS(9224), 1, sym_method_attribute_specifier, - ACTIONS(9246), 1, + ACTIONS(9236), 1, anon_sym_in, - STATE(4130), 1, - sym__declarator, - STATE(4132), 1, + STATE(4238), 1, sym__abstract_declarator, - STATE(4263), 1, + STATE(4241), 1, + sym__declarator, + STATE(4311), 1, sym_parameter_list, - STATE(5402), 1, + STATE(5666), 1, sym_ms_based_modifier, - ACTIONS(9230), 2, + ACTIONS(9220), 2, anon_sym___attribute, anon_sym___attribute__, - ACTIONS(9236), 2, + ACTIONS(9226), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(4307), 2, + STATE(4368), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - STATE(4431), 2, + STATE(4468), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - ACTIONS(9238), 4, + ACTIONS(9228), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, anon_sym_UNAVAILABLE_ATTRIBUTE, - STATE(4266), 5, + STATE(4310), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_block_abstract_declarator, - STATE(4453), 5, + STATE(4472), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -575657,7 +568846,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9240), 16, + ACTIONS(9230), 16, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -575675,57 +568864,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, [3787] = 20, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(6529), 1, - anon_sym_LBRACK, - ACTIONS(7925), 1, - sym_identifier, - ACTIONS(7927), 1, - anon_sym_LPAREN2, - ACTIONS(7929), 1, - anon_sym_STAR, - ACTIONS(9234), 1, + ACTIONS(111), 1, sym_method_attribute_specifier, - ACTIONS(9248), 1, - anon_sym_in, - STATE(4193), 1, + ACTIONS(6471), 1, + anon_sym_LPAREN2, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(7863), 1, + anon_sym_STAR, + ACTIONS(9238), 1, + anon_sym_RPAREN, + STATE(4252), 1, sym__abstract_declarator, - STATE(4194), 1, + STATE(4256), 1, sym__declarator, - STATE(4263), 1, + STATE(4311), 1, sym_parameter_list, - STATE(5402), 1, + STATE(5835), 1, sym_ms_based_modifier, - ACTIONS(9230), 2, + ACTIONS(35), 2, anon_sym___attribute, anon_sym___attribute__, - ACTIONS(9236), 2, + ACTIONS(113), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(4336), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - ACTIONS(9238), 4, + STATE(4353), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(115), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, anon_sym_UNAVAILABLE_ATTRIBUTE, - STATE(4266), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_block_abstract_declarator, - STATE(4453), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, sym_block_declarator, + STATE(4310), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_block_abstract_declarator, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -575734,7 +568923,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9240), 16, + ACTIONS(117), 16, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -575752,52 +568941,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, [3884] = 20, - ACTIONS(113), 1, + ACTIONS(111), 1, sym_method_attribute_specifier, - ACTIONS(6521), 1, + ACTIONS(6471), 1, anon_sym_LPAREN2, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(6529), 1, + ACTIONS(6479), 1, anon_sym_LBRACK, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(7913), 1, + ACTIONS(7863), 1, anon_sym_STAR, - ACTIONS(9244), 1, + ACTIONS(9238), 1, anon_sym_RPAREN, - STATE(4137), 1, - sym__declarator, - STATE(4154), 1, + STATE(4257), 1, sym__abstract_declarator, - STATE(4263), 1, + STATE(4258), 1, + sym__declarator, + STATE(4311), 1, sym_parameter_list, - STATE(5875), 1, + STATE(5835), 1, sym_ms_based_modifier, ACTIONS(35), 2, anon_sym___attribute, anon_sym___attribute__, - ACTIONS(115), 2, + ACTIONS(113), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4320), 2, + STATE(4370), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(117), 4, + ACTIONS(115), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, anon_sym_UNAVAILABLE_ATTRIBUTE, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, sym_block_declarator, - STATE(4266), 5, + STATE(4310), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -575811,7 +569000,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, + ACTIONS(117), 16, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -575829,57 +569018,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, [3981] = 20, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(6521), 1, - anon_sym_LPAREN2, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(6529), 1, + ACTIONS(6479), 1, anon_sym_LBRACK, - ACTIONS(7909), 1, + ACTIONS(7881), 1, sym_identifier, - ACTIONS(7913), 1, + ACTIONS(7883), 1, + anon_sym_LPAREN2, + ACTIONS(7885), 1, anon_sym_STAR, - ACTIONS(9250), 1, - anon_sym_RPAREN, - STATE(4087), 1, - sym__declarator, - STATE(4092), 1, + ACTIONS(9224), 1, + sym_method_attribute_specifier, + ACTIONS(9240), 1, + anon_sym_in, + STATE(4157), 1, sym__abstract_declarator, - STATE(4263), 1, + STATE(4158), 1, + sym__declarator, + STATE(4311), 1, sym_parameter_list, - STATE(5875), 1, + STATE(5666), 1, sym_ms_based_modifier, - ACTIONS(35), 2, + ACTIONS(9220), 2, anon_sym___attribute, anon_sym___attribute__, - ACTIONS(115), 2, + ACTIONS(9226), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4334), 2, + STATE(4363), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(117), 4, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9228), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, anon_sym_UNAVAILABLE_ATTRIBUTE, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - STATE(4266), 5, + STATE(4310), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_block_abstract_declarator, + STATE(4472), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -575888,7 +569077,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, + ACTIONS(9230), 16, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -575906,29 +569095,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, [4078] = 11, - ACTIONS(6529), 1, + ACTIONS(6479), 1, anon_sym_LBRACK, - ACTIONS(6653), 1, + ACTIONS(6603), 1, anon_sym_LPAREN2, - ACTIONS(6655), 1, + ACTIONS(6605), 1, anon_sym_STAR, - STATE(4257), 1, + STATE(4279), 1, sym__abstract_declarator, - STATE(4263), 1, + STATE(4311), 1, sym_parameter_list, - STATE(3956), 2, + STATE(3688), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7921), 3, + ACTIONS(7871), 3, anon_sym_in, anon_sym__Nullable, anon_sym___bridge, - ACTIONS(7911), 4, + ACTIONS(7993), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT, anon_sym_LBRACE, - STATE(4266), 5, + STATE(4310), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -575942,7 +569131,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9252), 28, + ACTIONS(9242), 28, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -575972,29 +569161,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [4155] = 11, - ACTIONS(6529), 1, + ACTIONS(6479), 1, anon_sym_LBRACK, - ACTIONS(6653), 1, + ACTIONS(6603), 1, anon_sym_LPAREN2, - ACTIONS(6655), 1, + ACTIONS(6605), 1, anon_sym_STAR, - STATE(4263), 1, - sym_parameter_list, - STATE(4282), 1, + STATE(4280), 1, sym__abstract_declarator, - STATE(3725), 2, + STATE(4311), 1, + sym_parameter_list, + STATE(3915), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7921), 3, + ACTIONS(7871), 3, anon_sym_in, anon_sym__Nullable, anon_sym___bridge, - ACTIONS(8033), 4, + ACTIONS(7861), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT, anon_sym_LBRACE, - STATE(4266), 5, + STATE(4310), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -576008,7 +569197,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9252), 28, + ACTIONS(9242), 28, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -576038,28 +569227,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [4232] = 11, - ACTIONS(6529), 1, + ACTIONS(6479), 1, anon_sym_LBRACK, - ACTIONS(6653), 1, + ACTIONS(6603), 1, anon_sym_LPAREN2, - ACTIONS(6655), 1, + ACTIONS(6605), 1, anon_sym_STAR, - STATE(4263), 1, + STATE(4311), 1, sym_parameter_list, - STATE(4735), 1, + STATE(4756), 1, sym__abstract_declarator, - STATE(3959), 2, + STATE(3919), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7921), 3, + ACTIONS(7871), 3, anon_sym_in, anon_sym__Nullable, anon_sym___bridge, - ACTIONS(9254), 3, + ACTIONS(9244), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT, - STATE(4266), 5, + STATE(4310), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -576073,7 +569262,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9252), 28, + ACTIONS(9242), 28, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -576103,28 +569292,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [4308] = 11, - ACTIONS(6529), 1, + ACTIONS(6479), 1, anon_sym_LBRACK, - ACTIONS(6653), 1, + ACTIONS(6603), 1, anon_sym_LPAREN2, - ACTIONS(6655), 1, + ACTIONS(6605), 1, anon_sym_STAR, - STATE(4263), 1, + STATE(4311), 1, sym_parameter_list, - STATE(4736), 1, + STATE(4764), 1, sym__abstract_declarator, - STATE(3960), 2, + STATE(3920), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7921), 3, + ACTIONS(7871), 3, anon_sym_in, anon_sym__Nullable, anon_sym___bridge, - ACTIONS(9256), 3, + ACTIONS(9246), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT, - STATE(4266), 5, + STATE(4310), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -576138,7 +569327,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9252), 28, + ACTIONS(9242), 28, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -576168,28 +569357,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [4384] = 11, - ACTIONS(6529), 1, + ACTIONS(6479), 1, anon_sym_LBRACK, - ACTIONS(6653), 1, + ACTIONS(6603), 1, anon_sym_LPAREN2, - ACTIONS(6655), 1, + ACTIONS(6605), 1, anon_sym_STAR, - STATE(4263), 1, + STATE(4311), 1, sym_parameter_list, - STATE(4738), 1, + STATE(4765), 1, sym__abstract_declarator, - STATE(3725), 2, + STATE(3688), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7921), 3, + ACTIONS(7871), 3, anon_sym_in, anon_sym__Nullable, anon_sym___bridge, - ACTIONS(9258), 3, + ACTIONS(9248), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT, - STATE(4266), 5, + STATE(4310), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -576203,7 +569392,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9252), 28, + ACTIONS(9242), 28, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -576233,28 +569422,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [4460] = 11, - ACTIONS(6529), 1, + ACTIONS(6479), 1, anon_sym_LBRACK, - ACTIONS(6653), 1, + ACTIONS(6603), 1, anon_sym_LPAREN2, - ACTIONS(6655), 1, + ACTIONS(6605), 1, anon_sym_STAR, - STATE(4263), 1, + STATE(4311), 1, sym_parameter_list, - STATE(4731), 1, + STATE(4758), 1, sym__abstract_declarator, - STATE(3725), 2, + STATE(3688), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7921), 3, + ACTIONS(7871), 3, anon_sym_in, anon_sym__Nullable, anon_sym___bridge, - ACTIONS(9260), 3, + ACTIONS(9250), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT, - STATE(4266), 5, + STATE(4310), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -576268,7 +569457,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9252), 28, + ACTIONS(9242), 28, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -576298,13 +569487,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [4536] = 7, - ACTIONS(8912), 1, + ACTIONS(8951), 1, sym_primitive_type, - ACTIONS(9262), 1, + ACTIONS(9252), 1, sym_identifier, - STATE(3590), 1, + STATE(3612), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8910), 4, + ACTIONS(8949), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -576317,7 +569506,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8006), 7, + ACTIONS(7933), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -576325,7 +569514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(8008), 31, + ACTIONS(7935), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -576358,26 +569547,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [4603] = 10, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8229), 1, anon_sym_LPAREN2, - ACTIONS(8680), 1, + ACTIONS(8231), 1, anon_sym_STAR, - STATE(4013), 1, - sym__declarator, - STATE(5875), 1, + ACTIONS(8662), 1, + sym_identifier, + STATE(4124), 1, + sym__type_declarator, + STATE(5596), 1, sym_ms_based_modifier, - STATE(3725), 2, + STATE(3928), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, sym_block_declarator, ACTIONS(3), 7, sym_comment, @@ -576387,7 +569576,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -576420,26 +569609,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [4675] = 10, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8229), 1, anon_sym_LPAREN2, - ACTIONS(9218), 1, + ACTIONS(8231), 1, anon_sym_STAR, - STATE(3884), 1, - sym__declarator, - STATE(5669), 1, + ACTIONS(8662), 1, + sym_identifier, + STATE(4247), 1, + sym__type_declarator, + STATE(5596), 1, sym_ms_based_modifier, - STATE(3725), 2, + STATE(3979), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, sym_block_declarator, ACTIONS(3), 7, sym_comment, @@ -576449,7 +569638,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -576482,22 +569671,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [4747] = 10, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(8279), 1, + ACTIONS(8229), 1, anon_sym_LPAREN2, - ACTIONS(8281), 1, + ACTIONS(8231), 1, anon_sym_STAR, - ACTIONS(9216), 1, + ACTIONS(8662), 1, sym_identifier, - STATE(4296), 1, + STATE(4254), 1, sym__type_declarator, - STATE(5452), 1, + STATE(5596), 1, sym_ms_based_modifier, - STATE(3725), 2, + STATE(3688), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4319), 5, + STATE(4335), 5, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, @@ -576511,7 +569700,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -576544,22 +569733,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [4819] = 10, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(8279), 1, + ACTIONS(8229), 1, anon_sym_LPAREN2, - ACTIONS(8281), 1, + ACTIONS(8231), 1, anon_sym_STAR, - ACTIONS(9216), 1, + ACTIONS(8662), 1, sym_identifier, - STATE(4302), 1, + STATE(4254), 1, sym__type_declarator, - STATE(5452), 1, + STATE(5596), 1, sym_ms_based_modifier, - STATE(3725), 2, + STATE(3948), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4319), 5, + STATE(4335), 5, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, @@ -576573,7 +569762,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -576606,26 +569795,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [4891] = 10, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8229), 1, anon_sym_LPAREN2, - ACTIONS(8680), 1, + ACTIONS(8231), 1, anon_sym_STAR, - STATE(4011), 1, - sym__declarator, - STATE(5875), 1, + ACTIONS(8662), 1, + sym_identifier, + STATE(4255), 1, + sym__type_declarator, + STATE(5596), 1, sym_ms_based_modifier, - STATE(3725), 2, + STATE(3688), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, sym_block_declarator, ACTIONS(3), 7, sym_comment, @@ -576635,7 +569824,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -576668,22 +569857,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [4963] = 10, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, - ACTIONS(9214), 1, + ACTIONS(8672), 1, anon_sym_STAR, - STATE(4782), 1, + STATE(4228), 1, sym__declarator, STATE(5835), 1, sym_ms_based_modifier, - STATE(3725), 2, + STATE(3688), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -576697,7 +569886,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -576730,26 +569919,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [5035] = 10, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8229), 1, anon_sym_LPAREN2, - ACTIONS(9218), 1, + ACTIONS(8231), 1, anon_sym_STAR, - STATE(3878), 1, - sym__declarator, - STATE(5669), 1, + ACTIONS(8662), 1, + sym_identifier, + STATE(4265), 1, + sym__type_declarator, + STATE(5596), 1, sym_ms_based_modifier, - STATE(3725), 2, + STATE(3688), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, sym_block_declarator, ACTIONS(3), 7, sym_comment, @@ -576759,7 +569948,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -576792,768 +569981,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, [5107] = 10, - ACTIONS(6527), 1, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7925), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(9226), 1, - anon_sym_LPAREN2, - ACTIONS(9228), 1, - anon_sym_STAR, - STATE(4395), 1, - sym__declarator, - STATE(5402), 1, - sym_ms_based_modifier, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4453), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [5179] = 11, - ACTIONS(6529), 1, - anon_sym_LBRACK, - ACTIONS(6655), 1, - anon_sym_STAR, - ACTIONS(9260), 1, - anon_sym_LBRACE, - ACTIONS(9264), 1, - anon_sym_LPAREN2, - STATE(4263), 1, - sym_parameter_list, - STATE(4731), 1, - sym__abstract_declarator, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7921), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - STATE(4266), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_block_abstract_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9252), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [5253] = 10, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(9220), 1, - sym_identifier, - ACTIONS(9222), 1, - anon_sym_LPAREN2, - ACTIONS(9224), 1, - anon_sym_STAR, - STATE(4741), 1, - sym__field_declarator, - STATE(5579), 1, - sym_ms_based_modifier, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4785), 5, - sym_parenthesized_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [5325] = 10, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, - anon_sym_LPAREN2, - ACTIONS(8680), 1, - anon_sym_STAR, - STATE(4012), 1, - sym__declarator, - STATE(5875), 1, - sym_ms_based_modifier, - STATE(3994), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [5397] = 10, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(9220), 1, - sym_identifier, - ACTIONS(9222), 1, - anon_sym_LPAREN2, - ACTIONS(9224), 1, - anon_sym_STAR, - STATE(4733), 1, - sym__field_declarator, - STATE(5579), 1, - sym_ms_based_modifier, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4785), 5, - sym_parenthesized_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [5469] = 10, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, - anon_sym_LPAREN2, - ACTIONS(8680), 1, - anon_sym_STAR, - STATE(4008), 1, - sym__declarator, - STATE(5875), 1, - sym_ms_based_modifier, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [5541] = 10, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, - anon_sym_LPAREN2, - ACTIONS(8680), 1, - anon_sym_STAR, - STATE(4019), 1, - sym__declarator, - STATE(5875), 1, - sym_ms_based_modifier, - STATE(3989), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [5613] = 10, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, - anon_sym_LPAREN2, - ACTIONS(8680), 1, - anon_sym_STAR, - STATE(4012), 1, - sym__declarator, - STATE(5875), 1, - sym_ms_based_modifier, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [5685] = 10, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, - anon_sym_LPAREN2, - ACTIONS(9214), 1, - anon_sym_STAR, - STATE(4755), 1, - sym__declarator, - STATE(5835), 1, - sym_ms_based_modifier, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [5757] = 10, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7925), 1, - sym_identifier, - ACTIONS(9226), 1, - anon_sym_LPAREN2, - ACTIONS(9228), 1, - anon_sym_STAR, - STATE(4362), 1, - sym__declarator, - STATE(5402), 1, - sym_ms_based_modifier, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4453), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [5829] = 10, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, - anon_sym_LPAREN2, - ACTIONS(8680), 1, - anon_sym_STAR, - STATE(4010), 1, - sym__declarator, - STATE(5875), 1, - sym_ms_based_modifier, - STATE(3962), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [5901] = 11, - ACTIONS(6529), 1, - anon_sym_LBRACK, - ACTIONS(6655), 1, - anon_sym_STAR, - ACTIONS(9258), 1, - anon_sym_LBRACE, - ACTIONS(9267), 1, - anon_sym_LPAREN2, - STATE(4263), 1, - sym_parameter_list, - STATE(4738), 1, - sym__abstract_declarator, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7921), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - STATE(4266), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_block_abstract_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9252), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [5975] = 10, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, ACTIONS(9218), 1, anon_sym_STAR, - STATE(3890), 1, + STATE(3834), 1, sym__declarator, - STATE(5669), 1, + STATE(5659), 1, sym_ms_based_modifier, - STATE(3725), 2, + STATE(3688), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -577567,7 +570010,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -577599,333 +570042,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [6047] = 10, - ACTIONS(6527), 1, + [5179] = 10, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8229), 1, anon_sym_LPAREN2, - ACTIONS(8680), 1, + ACTIONS(8231), 1, anon_sym_STAR, - STATE(4010), 1, - sym__declarator, - STATE(5875), 1, - sym_ms_based_modifier, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [6119] = 10, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(8662), 1, sym_identifier, - ACTIONS(8678), 1, - anon_sym_LPAREN2, - ACTIONS(8680), 1, - anon_sym_STAR, - STATE(4171), 1, - sym__declarator, - STATE(5875), 1, - sym_ms_based_modifier, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [6191] = 10, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, - anon_sym_LPAREN2, - ACTIONS(8680), 1, - anon_sym_STAR, - STATE(4150), 1, - sym__declarator, - STATE(5875), 1, - sym_ms_based_modifier, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [6263] = 10, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, - anon_sym_LPAREN2, - ACTIONS(9214), 1, - anon_sym_STAR, - STATE(4773), 1, - sym__declarator, - STATE(5835), 1, - sym_ms_based_modifier, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [6335] = 10, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, - anon_sym_LPAREN2, - ACTIONS(8680), 1, - anon_sym_STAR, - STATE(4178), 1, - sym__declarator, - STATE(5875), 1, - sym_ms_based_modifier, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [6407] = 10, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(8279), 1, - anon_sym_LPAREN2, - ACTIONS(8281), 1, - anon_sym_STAR, - ACTIONS(9216), 1, - sym_identifier, - STATE(4299), 1, + STATE(4236), 1, sym__type_declarator, - STATE(5452), 1, + STATE(5596), 1, sym_ms_based_modifier, - STATE(3725), 2, + STATE(3688), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4319), 5, + STATE(4335), 5, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, @@ -577939,7 +570072,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -577971,32 +570104,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [6479] = 11, - ACTIONS(6529), 1, - anon_sym_LBRACK, - ACTIONS(6655), 1, - anon_sym_STAR, - ACTIONS(9254), 1, - anon_sym_LBRACE, - ACTIONS(9270), 1, + [5251] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, anon_sym_LPAREN2, - STATE(4263), 1, - sym_parameter_list, - STATE(4735), 1, - sym__abstract_declarator, - STATE(3980), 2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4153), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7921), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - STATE(4266), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_block_abstract_declarator, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -578005,16 +570134,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9252), 28, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, + anon_sym_in, anon_sym_out, anon_sym_inout, anon_sym_bycopy, anon_sym_byref, anon_sym_oneway, + anon_sym__Nullable, anon_sym__Nonnull, anon_sym__Nullable_result, anon_sym__Null_unspecified, @@ -578023,6 +570154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___nonnull, anon_sym___strong, anon_sym___weak, + anon_sym___bridge, anon_sym___bridge_transfer, anon_sym___bridge_retained, anon_sym___unsafe_unretained, @@ -578034,23 +570166,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [6553] = 10, - ACTIONS(6527), 1, + [5323] = 10, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, - ACTIONS(8680), 1, + ACTIONS(9218), 1, anon_sym_STAR, - STATE(4016), 1, + STATE(3850), 1, sym__declarator, - STATE(5875), 1, + STATE(5659), 1, sym_ms_based_modifier, - STATE(3725), 2, + STATE(3688), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -578064,7 +570196,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -578096,23 +570228,767 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [6625] = 10, - ACTIONS(6527), 1, + [5395] = 10, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(9220), 1, + ACTIONS(7881), 1, sym_identifier, - ACTIONS(9222), 1, + ACTIONS(9206), 1, anon_sym_LPAREN2, - ACTIONS(9224), 1, + ACTIONS(9208), 1, anon_sym_STAR, - STATE(4732), 1, - sym__field_declarator, - STATE(5579), 1, + STATE(4409), 1, + sym__declarator, + STATE(5666), 1, sym_ms_based_modifier, - STATE(3725), 2, + STATE(3688), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4785), 5, + STATE(4472), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [5467] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4236), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3992), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [5539] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(8672), 1, + anon_sym_STAR, + STATE(4030), 1, + sym__declarator, + STATE(5835), 1, + sym_ms_based_modifier, + STATE(3993), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [5611] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4320), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [5683] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7881), 1, + sym_identifier, + ACTIONS(9206), 1, + anon_sym_LPAREN2, + ACTIONS(9208), 1, + anon_sym_STAR, + STATE(4412), 1, + sym__declarator, + STATE(5666), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4472), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [5755] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(8672), 1, + anon_sym_STAR, + STATE(4040), 1, + sym__declarator, + STATE(5835), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [5827] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(8672), 1, + anon_sym_STAR, + STATE(4030), 1, + sym__declarator, + STATE(5835), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [5899] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4134), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [5971] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4148), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3986), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [6043] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(8672), 1, + anon_sym_STAR, + STATE(4041), 1, + sym__declarator, + STATE(5835), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [6115] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4134), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3926), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [6187] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4148), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [6259] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(9210), 1, + sym_identifier, + ACTIONS(9212), 1, + anon_sym_LPAREN2, + ACTIONS(9214), 1, + anon_sym_STAR, + STATE(4750), 1, + sym__field_declarator, + STATE(5263), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4799), 5, sym_parenthesized_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, @@ -578126,7 +571002,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -578158,23 +571034,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [6697] = 10, - ACTIONS(6527), 1, + [6331] = 10, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8229), 1, anon_sym_LPAREN2, - ACTIONS(8680), 1, + ACTIONS(8231), 1, anon_sym_STAR, - STATE(4019), 1, - sym__declarator, - STATE(5875), 1, + ACTIONS(8662), 1, + sym_identifier, + STATE(4124), 1, + sym__type_declarator, + STATE(5596), 1, sym_ms_based_modifier, - STATE(3725), 2, + STATE(3688), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(3843), 5, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [6403] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4269), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [6475] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4239), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [6547] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(8672), 1, + anon_sym_STAR, + STATE(4031), 1, + sym__declarator, + STATE(5835), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -578188,7 +571250,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -578220,27 +571282,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [6769] = 11, - ACTIONS(6529), 1, - anon_sym_LBRACK, - ACTIONS(6655), 1, - anon_sym_STAR, - ACTIONS(9256), 1, - anon_sym_LBRACE, - ACTIONS(9273), 1, + [6619] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, anon_sym_LPAREN2, - STATE(4263), 1, - sym_parameter_list, - STATE(4736), 1, - sym__abstract_declarator, - STATE(3970), 2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4246), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3962), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7921), 3, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [6691] = 11, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(6605), 1, + anon_sym_STAR, + ACTIONS(9246), 1, + anon_sym_LBRACE, + ACTIONS(9254), 1, + anon_sym_LPAREN2, + STATE(4311), 1, + sym_parameter_list, + STATE(4764), 1, + sym__abstract_declarator, + STATE(3967), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7871), 3, anon_sym_in, anon_sym__Nullable, anon_sym___bridge, - STATE(4266), 5, + STATE(4310), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -578254,7 +571378,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9252), 28, + ACTIONS(9242), 28, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -578283,27 +571407,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [6843] = 10, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, - anon_sym_LPAREN2, - ACTIONS(8680), 1, + [6765] = 11, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(6605), 1, anon_sym_STAR, - STATE(4008), 1, - sym__declarator, - STATE(5875), 1, - sym_ms_based_modifier, - STATE(3966), 2, + ACTIONS(9248), 1, + anon_sym_LBRACE, + ACTIONS(9257), 1, + anon_sym_LPAREN2, + STATE(4311), 1, + sym_parameter_list, + STATE(4765), 1, + sym__abstract_declarator, + STATE(3688), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + ACTIONS(7871), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + STATE(4310), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_block_abstract_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9242), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [6839] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4246), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, sym_block_declarator, ACTIONS(3), 7, sym_comment, @@ -578313,7 +571500,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -578345,23 +571532,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [6915] = 10, - ACTIONS(6527), 1, + [6911] = 10, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, - ACTIONS(8680), 1, + ACTIONS(8672), 1, anon_sym_STAR, - STATE(4020), 1, + STATE(4032), 1, sym__declarator, - STATE(5875), 1, + STATE(5835), 1, sym_ms_based_modifier, - STATE(3725), 2, + STATE(3949), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -578375,7 +571562,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -578407,23 +571594,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [6987] = 10, - ACTIONS(6527), 1, + [6983] = 10, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7925), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(9226), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, - ACTIONS(9228), 1, + ACTIONS(8672), 1, anon_sym_STAR, - STATE(4378), 1, + STATE(4029), 1, sym__declarator, - STATE(5402), 1, + STATE(5835), 1, sym_ms_based_modifier, - STATE(3725), 2, + STATE(3688), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4453), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -578437,7 +571624,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7921), 31, + ACTIONS(7871), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -578469,19 +571656,3741 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [7059] = 7, - STATE(4001), 1, + [7055] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(8672), 1, + anon_sym_STAR, + STATE(4032), 1, + sym__declarator, + STATE(5835), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [7127] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(8672), 1, + anon_sym_STAR, + STATE(4029), 1, + sym__declarator, + STATE(5835), 1, + sym_ms_based_modifier, + STATE(3942), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [7199] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(9210), 1, + sym_identifier, + ACTIONS(9212), 1, + anon_sym_LPAREN2, + ACTIONS(9214), 1, + anon_sym_STAR, + STATE(4763), 1, + sym__field_declarator, + STATE(5263), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4799), 5, + sym_parenthesized_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [7271] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4165), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(4015), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [7343] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4159), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [7415] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4159), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3931), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [7487] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4272), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [7559] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4130), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3965), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [7631] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4165), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [7703] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4128), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [7775] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(9216), 1, + anon_sym_STAR, + STATE(4793), 1, + sym__declarator, + STATE(5795), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [7847] = 11, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(6605), 1, + anon_sym_STAR, + ACTIONS(9250), 1, + anon_sym_LBRACE, + ACTIONS(9260), 1, + anon_sym_LPAREN2, + STATE(4311), 1, + sym_parameter_list, + STATE(4758), 1, + sym__abstract_declarator, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7871), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + STATE(4310), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_block_abstract_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9242), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [7921] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4125), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3971), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [7993] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4125), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [8065] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4215), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [8137] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4217), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [8209] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4322), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [8281] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(8672), 1, + anon_sym_STAR, + STATE(4207), 1, + sym__declarator, + STATE(5835), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [8353] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7881), 1, + sym_identifier, + ACTIONS(9206), 1, + anon_sym_LPAREN2, + ACTIONS(9208), 1, + anon_sym_STAR, + STATE(4408), 1, + sym__declarator, + STATE(5666), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4472), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [8425] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4247), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [8497] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(8672), 1, + anon_sym_STAR, + STATE(4211), 1, + sym__declarator, + STATE(5835), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [8569] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(8672), 1, + anon_sym_STAR, + STATE(4028), 1, + sym__declarator, + STATE(5835), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [8641] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(9210), 1, + sym_identifier, + ACTIONS(9212), 1, + anon_sym_LPAREN2, + ACTIONS(9214), 1, + anon_sym_STAR, + STATE(4760), 1, + sym__field_declarator, + STATE(5263), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4799), 5, + sym_parenthesized_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [8713] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4166), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [8785] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(9218), 1, + anon_sym_STAR, + STATE(3848), 1, + sym__declarator, + STATE(5659), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [8857] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4186), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3995), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [8929] = 11, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(6605), 1, + anon_sym_STAR, + ACTIONS(9244), 1, + anon_sym_LBRACE, + ACTIONS(9263), 1, + anon_sym_LPAREN2, + STATE(4311), 1, + sym_parameter_list, + STATE(4756), 1, + sym__abstract_declarator, + STATE(3952), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7871), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + STATE(4310), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_block_abstract_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9242), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [9003] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4198), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [9075] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4186), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [9147] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(8672), 1, + anon_sym_STAR, + STATE(4028), 1, + sym__declarator, + STATE(5835), 1, + sym_ms_based_modifier, + STATE(3938), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [9219] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4249), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [9291] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4199), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3947), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [9363] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4195), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(4008), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [9435] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4141), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3999), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [9507] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4141), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [9579] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4253), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [9651] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4262), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [9723] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(8672), 1, + anon_sym_STAR, + STATE(4042), 1, + sym__declarator, + STATE(5835), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [9795] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4198), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3991), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [9867] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4137), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [9939] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4199), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [10011] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4152), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [10083] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4190), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [10155] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4133), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [10227] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4190), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3997), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [10299] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4192), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [10371] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4232), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [10443] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4232), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(4001), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [10515] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4213), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [10587] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(9216), 1, + anon_sym_STAR, + STATE(4797), 1, + sym__declarator, + STATE(5795), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [10659] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4226), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [10731] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4226), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(4004), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [10803] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4231), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [10875] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4318), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [10947] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4132), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3970), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [11019] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4130), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [11091] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4132), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [11163] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(9216), 1, + anon_sym_STAR, + STATE(4801), 1, + sym__declarator, + STATE(5795), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [11235] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4195), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [11307] = 10, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(8229), 1, + anon_sym_LPAREN2, + ACTIONS(8231), 1, + anon_sym_STAR, + ACTIONS(8662), 1, + sym_identifier, + STATE(4205), 1, + sym__type_declarator, + STATE(5596), 1, + sym_ms_based_modifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4335), 5, + sym_parenthesized_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [11379] = 7, + STATE(4023), 1, sym_ms_unaligned_ptr_modifier, - ACTIONS(9278), 2, + ACTIONS(9268), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(9283), 2, + ACTIONS(9273), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3996), 2, + STATE(4016), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(9280), 3, + ACTIONS(9270), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, @@ -578493,7 +575402,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9276), 33, + ACTIONS(9266), 33, anon_sym___based, anon_sym_const, anon_sym_volatile, @@ -578527,17 +575436,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, sym_identifier, - [7124] = 9, - ACTIONS(6850), 1, + [11444] = 9, + ACTIONS(6822), 1, anon_sym_LT, - ACTIONS(6853), 1, + ACTIONS(6828), 1, anon_sym_EQ, - ACTIONS(9286), 1, + ACTIONS(9276), 1, anon_sym_LPAREN2, - ACTIONS(6871), 2, + ACTIONS(6825), 2, anon_sym_COLON, sym_identifier, - STATE(3397), 3, + STATE(3341), 3, sym_protocol_qualifiers, sym_generic_type_references, aux_sym_generic_type_specifier_repeat1, @@ -578549,7 +575458,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(6857), 10, + ACTIONS(6832), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -578560,7 +575469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(6820), 11, + ACTIONS(6777), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578572,7 +575481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6822), 13, + ACTIONS(6779), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -578586,16 +575495,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [7192] = 7, - ACTIONS(8964), 1, + [11512] = 7, + ACTIONS(8914), 1, anon_sym_LBRACE, - ACTIONS(9289), 1, + ACTIONS(9279), 1, sym_identifier, - ACTIONS(9291), 1, + ACTIONS(9281), 1, anon_sym_COLON, - STATE(3799), 1, + STATE(3788), 1, sym_enumerator_list, - ACTIONS(8193), 6, + ACTIONS(8182), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -578610,7 +575519,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8195), 31, + ACTIONS(8184), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -578642,16 +575551,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [7255] = 7, - ACTIONS(9097), 1, + [11575] = 7, + ACTIONS(9129), 1, anon_sym_LBRACE, - ACTIONS(9293), 1, + ACTIONS(9283), 1, sym_identifier, - ACTIONS(9295), 1, + ACTIONS(9285), 1, anon_sym_COLON, - STATE(3799), 1, + STATE(3788), 1, sym_enumerator_list, - ACTIONS(8193), 6, + ACTIONS(8182), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -578666,7 +575575,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8195), 31, + ACTIONS(8184), 31, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -578698,229 +575607,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [7318] = 6, - ACTIONS(9087), 1, - anon_sym_LBRACE, - ACTIONS(9297), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_enumerator_list, - ACTIONS(8240), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8242), 34, - anon_sym_COMMA, - anon_sym_RPAREN, + [11638] = 7, + ACTIONS(8845), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_GT, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [7378] = 3, - ACTIONS(9301), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9299), 38, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - sym_identifier, - [7432] = 3, - ACTIONS(9305), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9303), 38, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - sym_identifier, - [7486] = 6, - ACTIONS(8964), 1, - anon_sym_LBRACE, - ACTIONS(9307), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_enumerator_list, - ACTIONS(8240), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8242), 34, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_GT, - anon_sym_LBRACK, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [7546] = 7, - ACTIONS(8856), 1, + ACTIONS(8848), 1, anon_sym_LT, - ACTIONS(8865), 1, - anon_sym_LPAREN2, - ACTIONS(9309), 2, + ACTIONS(9287), 2, anon_sym_COMMA, anon_sym_GT, - ACTIONS(6841), 3, + ACTIONS(6813), 3, anon_sym_in, anon_sym__Nullable, anon_sym___bridge, - STATE(3700), 3, + STATE(3678), 3, sym_protocol_qualifiers, sym_generic_type_references, aux_sym_generic_type_specifier_repeat1, @@ -578932,7 +575631,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8053), 30, + ACTIONS(8003), 30, anon_sym_STAR, anon_sym_LBRACK, anon_sym_const, @@ -578963,10 +575662,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [7608] = 6, - ACTIONS(6853), 1, + [11700] = 6, + ACTIONS(8914), 1, + anon_sym_LBRACE, + ACTIONS(9290), 1, + anon_sym_COLON, + STATE(3786), 1, + sym_enumerator_list, + ACTIONS(8147), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8149), 34, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_GT, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [11760] = 6, + ACTIONS(9089), 1, + anon_sym_LBRACE, + ACTIONS(9292), 1, + anon_sym_COLON, + STATE(3786), 1, + sym_enumerator_list, + ACTIONS(8147), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8149), 34, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_GT, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [11820] = 3, + ACTIONS(9296), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9294), 38, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + sym_identifier, + [11874] = 3, + ACTIONS(9300), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9298), 38, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + sym_identifier, + [11928] = 6, + ACTIONS(6828), 1, anon_sym_EQ, - ACTIONS(6863), 1, + ACTIONS(6830), 1, anon_sym_COLON, ACTIONS(3), 7, sym_comment, @@ -578976,7 +575885,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(6857), 10, + ACTIONS(6832), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -578987,7 +575896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(6820), 12, + ACTIONS(6777), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579000,7 +575909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6822), 15, + ACTIONS(6779), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -579016,10 +575925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [7667] = 6, - ACTIONS(6853), 1, + [11987] = 6, + ACTIONS(6828), 1, anon_sym_EQ, - ACTIONS(6855), 1, + ACTIONS(6850), 1, anon_sym_COLON, ACTIONS(3), 7, sym_comment, @@ -579029,7 +575938,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(6857), 10, + ACTIONS(6832), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -579040,7 +575949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(6820), 12, + ACTIONS(6777), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579053,7 +575962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6822), 15, + ACTIONS(6779), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -579069,10 +575978,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [7726] = 6, - ACTIONS(6853), 1, + [12046] = 6, + ACTIONS(6828), 1, anon_sym_EQ, - ACTIONS(6869), 1, + ACTIONS(6848), 1, anon_sym_COLON, ACTIONS(3), 7, sym_comment, @@ -579082,7 +575991,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(6857), 10, + ACTIONS(6832), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -579093,7 +576002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(6820), 12, + ACTIONS(6777), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579106,7 +576015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6822), 15, + ACTIONS(6779), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -579122,43 +576031,368 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [7785] = 19, + [12105] = 19, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(8883), 1, + ACTIONS(8856), 1, anon_sym_LBRACK, - ACTIONS(9177), 1, + ACTIONS(9169), 1, anon_sym___attribute__, - ACTIONS(9179), 1, + ACTIONS(9171), 1, sym_method_attribute_specifier, - ACTIONS(9187), 1, + ACTIONS(9179), 1, anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, + ACTIONS(9181), 1, anon_sym_NS_SWIFT_NAME, + ACTIONS(9302), 1, + anon_sym_COMMA, + ACTIONS(9304), 1, + anon_sym_SEMI, + STATE(4052), 1, + sym_parameter_list, + STATE(4058), 1, + aux_sym_property_declaration_repeat1, + STATE(5515), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4234), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [12189] = 19, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9302), 1, + anon_sym_COMMA, + ACTIONS(9306), 1, + anon_sym_SEMI, + STATE(4052), 1, + sym_parameter_list, + STATE(4055), 1, + aux_sym_property_declaration_repeat1, + STATE(5474), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4227), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [12273] = 19, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9302), 1, + anon_sym_COMMA, + ACTIONS(9308), 1, + anon_sym_SEMI, + STATE(4052), 1, + sym_parameter_list, + STATE(4061), 1, + aux_sym_property_declaration_repeat1, + STATE(5494), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4162), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [12357] = 19, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9302), 1, + anon_sym_COMMA, + ACTIONS(9310), 1, + anon_sym_SEMI, + STATE(4052), 1, + sym_parameter_list, + STATE(4056), 1, + aux_sym_property_declaration_repeat1, + STATE(5582), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4187), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [12441] = 19, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9302), 1, + anon_sym_COMMA, ACTIONS(9312), 1, + anon_sym_SEMI, + STATE(4052), 1, + sym_parameter_list, + STATE(4059), 1, + aux_sym_property_declaration_repeat1, + STATE(5565), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4127), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [12525] = 19, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9302), 1, anon_sym_COMMA, ACTIONS(9314), 1, anon_sym_SEMI, - STATE(4030), 1, + STATE(4052), 1, sym_parameter_list, - STATE(4042), 1, + STATE(4066), 1, aux_sym_property_declaration_repeat1, - STATE(5868), 1, + STATE(5539), 1, sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, + ACTIONS(9173), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4177), 2, + STATE(4208), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, + ACTIONS(9175), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -579171,7 +576405,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, + ACTIONS(9177), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -579187,502 +576421,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [7869] = 19, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, - anon_sym_COMMA, + [12609] = 16, ACTIONS(9316), 1, - anon_sym_SEMI, - STATE(4030), 1, - sym_parameter_list, - STATE(4037), 1, - aux_sym_property_declaration_repeat1, - STATE(5802), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4151), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [7953] = 19, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, - anon_sym_COMMA, + sym_identifier, ACTIONS(9318), 1, - anon_sym_SEMI, - STATE(4030), 1, - sym_parameter_list, - STATE(4044), 1, - aux_sym_property_declaration_repeat1, - STATE(5701), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4144), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [8037] = 19, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, - anon_sym_COMMA, + anon_sym_RPAREN, ACTIONS(9320), 1, - anon_sym_SEMI, - STATE(4030), 1, - sym_parameter_list, - STATE(4034), 1, - aux_sym_property_declaration_repeat1, - STATE(5825), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4246), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [8121] = 19, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, - anon_sym_COMMA, - ACTIONS(9322), 1, - anon_sym_SEMI, - STATE(4030), 1, - sym_parameter_list, - STATE(4039), 1, - aux_sym_property_declaration_repeat1, - STATE(5822), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4217), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [8205] = 19, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, - anon_sym_COMMA, - ACTIONS(9324), 1, - anon_sym_SEMI, - STATE(4030), 1, - sym_parameter_list, - STATE(4036), 1, - aux_sym_property_declaration_repeat1, - STATE(5811), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4186), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [8289] = 19, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, - anon_sym_COMMA, + anon_sym__Atomic, ACTIONS(9326), 1, - anon_sym_SEMI, - STATE(4030), 1, - sym_parameter_list, - STATE(4048), 1, - aux_sym_property_declaration_repeat1, - STATE(5699), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4199), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [8373] = 19, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, - anon_sym_COMMA, + anon_sym_enum, ACTIONS(9328), 1, - anon_sym_SEMI, - STATE(4030), 1, - sym_parameter_list, - STATE(4043), 1, - aux_sym_property_declaration_repeat1, - STATE(5857), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4195), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [8457] = 19, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, - anon_sym_COMMA, + anon_sym_COLON, ACTIONS(9330), 1, - anon_sym_SEMI, - STATE(4030), 1, - sym_parameter_list, - STATE(4040), 1, - aux_sym_property_declaration_repeat1, - STATE(5874), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4155), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_struct, + ACTIONS(9332), 1, + anon_sym_union, + STATE(4037), 1, + aux_sym_swift_name_attribute_sepcifier_repeat2, + STATE(4557), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9338), 2, + sym_id, + sym_Class, + ACTIONS(9334), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(9336), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9322), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9324), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -579691,59 +576471,55 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [8541] = 19, + STATE(4053), 11, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + aux_sym_swift_name_attribute_sepcifier_repeat1, + [12687] = 19, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(8883), 1, + ACTIONS(8856), 1, anon_sym_LBRACK, - ACTIONS(9177), 1, + ACTIONS(9169), 1, anon_sym___attribute__, - ACTIONS(9179), 1, + ACTIONS(9171), 1, sym_method_attribute_specifier, - ACTIONS(9187), 1, + ACTIONS(9179), 1, anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, + ACTIONS(9181), 1, anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, + ACTIONS(9302), 1, anon_sym_COMMA, - ACTIONS(9332), 1, + ACTIONS(9340), 1, anon_sym_SEMI, - STATE(4030), 1, + STATE(4052), 1, sym_parameter_list, - STATE(4041), 1, + STATE(4067), 1, aux_sym_property_declaration_repeat1, - STATE(5586), 1, + STATE(5431), 1, sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, + ACTIONS(9173), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4120), 2, + STATE(4204), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, + ACTIONS(9175), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -579756,7 +576532,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, + ACTIONS(9177), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -579772,25 +576548,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [8625] = 11, - ACTIONS(9334), 1, + [12771] = 16, + ACTIONS(9316), 1, + sym_identifier, + ACTIONS(9320), 1, + anon_sym__Atomic, + ACTIONS(9326), 1, + anon_sym_enum, + ACTIONS(9330), 1, + anon_sym_struct, + ACTIONS(9332), 1, + anon_sym_union, + ACTIONS(9342), 1, + anon_sym_RPAREN, + ACTIONS(9344), 1, + anon_sym_COLON, + STATE(4045), 1, + aux_sym_swift_name_attribute_sepcifier_repeat2, + STATE(4557), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9338), 2, + sym_id, + sym_Class, + ACTIONS(9334), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(9336), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9322), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9324), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4053), 11, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + aux_sym_swift_name_attribute_sepcifier_repeat1, + [12849] = 16, + ACTIONS(9316), 1, + sym_identifier, + ACTIONS(9320), 1, + anon_sym__Atomic, + ACTIONS(9326), 1, + anon_sym_enum, + ACTIONS(9330), 1, + anon_sym_struct, + ACTIONS(9332), 1, + anon_sym_union, + ACTIONS(9346), 1, + anon_sym_RPAREN, + ACTIONS(9348), 1, + anon_sym_COLON, + STATE(4044), 1, + aux_sym_swift_name_attribute_sepcifier_repeat2, + STATE(4557), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9338), 2, + sym_id, + sym_Class, + ACTIONS(9334), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(9336), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9322), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9324), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4053), 11, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + aux_sym_swift_name_attribute_sepcifier_repeat1, + [12927] = 11, + ACTIONS(9350), 1, anon_sym___attribute, - ACTIONS(9337), 1, + ACTIONS(9353), 1, anon_sym___attribute__, - ACTIONS(9340), 1, + ACTIONS(9356), 1, sym_method_attribute_specifier, - ACTIONS(9349), 1, + ACTIONS(9365), 1, anon_sym_NS_AVAILABLE, - ACTIONS(9343), 2, + ACTIONS(9359), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4018), 2, + STATE(4038), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(9346), 4, + ACTIONS(9362), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -579803,7 +576703,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8985), 9, + ACTIONS(8972), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -579813,7 +576713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATinterface, anon_sym_NS_REFINED_FOR_SWIFT, anon_sym_NS_SWIFT_NAME, - ACTIONS(9352), 15, + ACTIONS(9368), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -579829,43 +576729,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [8693] = 19, + [12995] = 19, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(8883), 1, + ACTIONS(8856), 1, anon_sym_LBRACK, - ACTIONS(9177), 1, + ACTIONS(9169), 1, anon_sym___attribute__, - ACTIONS(9179), 1, + ACTIONS(9171), 1, sym_method_attribute_specifier, - ACTIONS(9187), 1, + ACTIONS(9179), 1, anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, + ACTIONS(9181), 1, anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, + ACTIONS(9302), 1, anon_sym_COMMA, - ACTIONS(9355), 1, + ACTIONS(9371), 1, anon_sym_SEMI, - STATE(4030), 1, + STATE(4052), 1, sym_parameter_list, - STATE(4047), 1, + STATE(4063), 1, aux_sym_property_declaration_repeat1, - STATE(5797), 1, + STATE(5473), 1, sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, + ACTIONS(9173), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4114), 2, + STATE(4242), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, + ACTIONS(9175), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -579878,7 +576778,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, + ACTIONS(9177), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -579894,1061 +576794,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [8777] = 19, + [13079] = 19, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(8883), 1, + ACTIONS(8856), 1, anon_sym_LBRACK, - ACTIONS(9177), 1, + ACTIONS(9169), 1, anon_sym___attribute__, - ACTIONS(9179), 1, + ACTIONS(9171), 1, sym_method_attribute_specifier, - ACTIONS(9187), 1, + ACTIONS(9179), 1, anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, + ACTIONS(9181), 1, anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, + ACTIONS(9302), 1, anon_sym_COMMA, - ACTIONS(9357), 1, - anon_sym_SEMI, - STATE(4030), 1, - sym_parameter_list, - STATE(4038), 1, - aux_sym_property_declaration_repeat1, - STATE(5766), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4096), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [8861] = 16, - ACTIONS(9359), 1, - sym_identifier, - ACTIONS(9362), 1, - anon_sym_RPAREN, - ACTIONS(9364), 1, - anon_sym__Atomic, ACTIONS(9373), 1, - anon_sym_enum, - ACTIONS(9376), 1, - anon_sym_COLON, - ACTIONS(9382), 1, - anon_sym_struct, - ACTIONS(9385), 1, - anon_sym_union, - STATE(4021), 1, - aux_sym_swift_name_attribute_sepcifier_repeat2, - STATE(4540), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9391), 2, - sym_id, - sym_Class, - ACTIONS(9379), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(9388), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9367), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9370), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4035), 10, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - aux_sym_swift_name_attribute_sepcifier_repeat1, - [8938] = 16, - ACTIONS(9394), 1, - sym_identifier, - ACTIONS(9396), 1, - anon_sym_RPAREN, - ACTIONS(9398), 1, - anon_sym__Atomic, - ACTIONS(9404), 1, - anon_sym_enum, - ACTIONS(9406), 1, - anon_sym_COLON, - ACTIONS(9410), 1, - anon_sym_struct, - ACTIONS(9412), 1, - anon_sym_union, - STATE(4021), 1, - aux_sym_swift_name_attribute_sepcifier_repeat2, - STATE(4540), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9416), 2, - sym_id, - sym_Class, - ACTIONS(9408), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(9414), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9400), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9402), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4035), 10, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - aux_sym_swift_name_attribute_sepcifier_repeat1, - [9015] = 8, - ACTIONS(8791), 1, - anon_sym_RPAREN, - ACTIONS(9418), 1, - sym_identifier, - ACTIONS(9420), 1, - anon_sym_LPAREN2, - STATE(4059), 1, - aux_sym_type_definition_repeat1, - STATE(4192), 1, - sym_type_qualifier, - STATE(5298), 1, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [9076] = 8, - ACTIONS(9418), 1, - sym_identifier, - ACTIONS(9420), 1, - anon_sym_LPAREN2, - ACTIONS(9422), 1, - anon_sym_RPAREN, - STATE(4059), 1, - aux_sym_type_definition_repeat1, - STATE(4176), 1, - sym_type_qualifier, - STATE(5298), 1, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [9137] = 16, - ACTIONS(9394), 1, - sym_identifier, - ACTIONS(9398), 1, - anon_sym__Atomic, - ACTIONS(9404), 1, - anon_sym_enum, - ACTIONS(9410), 1, - anon_sym_struct, - ACTIONS(9412), 1, - anon_sym_union, - ACTIONS(9424), 1, - anon_sym_RPAREN, - ACTIONS(9426), 1, - anon_sym_COLON, - STATE(4027), 1, - aux_sym_swift_name_attribute_sepcifier_repeat2, - STATE(4540), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9416), 2, - sym_id, - sym_Class, - ACTIONS(9408), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(9414), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9400), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9402), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4035), 10, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - aux_sym_swift_name_attribute_sepcifier_repeat1, - [9214] = 8, - ACTIONS(9420), 1, - anon_sym_LPAREN2, - ACTIONS(9422), 1, - anon_sym_RPAREN, - ACTIONS(9428), 1, - sym_identifier, - STATE(4051), 1, - aux_sym_type_definition_repeat1, - STATE(4176), 1, - sym_type_qualifier, - STATE(5639), 1, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [9275] = 16, - ACTIONS(9394), 1, - sym_identifier, - ACTIONS(9398), 1, - anon_sym__Atomic, - ACTIONS(9404), 1, - anon_sym_enum, - ACTIONS(9406), 1, - anon_sym_COLON, - ACTIONS(9410), 1, - anon_sym_struct, - ACTIONS(9412), 1, - anon_sym_union, - ACTIONS(9430), 1, - anon_sym_RPAREN, - STATE(4021), 1, - aux_sym_swift_name_attribute_sepcifier_repeat2, - STATE(4540), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9416), 2, - sym_id, - sym_Class, - ACTIONS(9408), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(9414), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9400), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9402), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4035), 10, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - aux_sym_swift_name_attribute_sepcifier_repeat1, - [9352] = 16, - ACTIONS(9394), 1, - sym_identifier, - ACTIONS(9398), 1, - anon_sym__Atomic, - ACTIONS(9404), 1, - anon_sym_enum, - ACTIONS(9410), 1, - anon_sym_struct, - ACTIONS(9412), 1, - anon_sym_union, - ACTIONS(9432), 1, - anon_sym_RPAREN, - ACTIONS(9434), 1, - anon_sym_COLON, - STATE(4022), 1, - aux_sym_swift_name_attribute_sepcifier_repeat2, - STATE(4540), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9416), 2, - sym_id, - sym_Class, - ACTIONS(9408), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(9414), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9400), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9402), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4035), 10, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - aux_sym_swift_name_attribute_sepcifier_repeat1, - [9429] = 6, - ACTIONS(9418), 1, - sym_identifier, - ACTIONS(9420), 1, - anon_sym_LPAREN2, - STATE(5298), 1, - sym_block_declarator, - STATE(4059), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [9485] = 11, - ACTIONS(9436), 1, - anon_sym___attribute, - ACTIONS(9439), 1, - anon_sym___attribute__, - ACTIONS(9442), 1, - sym_method_attribute_specifier, - ACTIONS(9451), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9445), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4031), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9448), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9010), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_NS_REFINED_FOR_SWIFT, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9454), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [9551] = 5, - ACTIONS(9037), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9035), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - anon_sym_NS_REFINED_FOR_SWIFT, - anon_sym_NS_SWIFT_NAME, - [9605] = 6, - ACTIONS(9420), 1, - anon_sym_LPAREN2, - ACTIONS(9428), 1, - sym_identifier, - STATE(5639), 1, - sym_block_declarator, - STATE(4051), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [9661] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9459), 1, - anon_sym_EQ, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - ACTIONS(9457), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4054), 3, - sym_attribute_specifier, - sym_swift_name_attribute_sepcifier, - aux_sym_enumerator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [9732] = 16, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, - anon_sym_COMMA, - ACTIONS(9461), 1, - anon_sym_SEMI, - STATE(4344), 1, + STATE(4052), 1, + sym_parameter_list, + STATE(4065), 1, aux_sym_property_declaration_repeat1, - STATE(5782), 1, + STATE(5553), 1, sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, + ACTIONS(9173), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4070), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [9807] = 14, - ACTIONS(9394), 1, - sym_identifier, - ACTIONS(9398), 1, - anon_sym__Atomic, - ACTIONS(9404), 1, - anon_sym_enum, - ACTIONS(9410), 1, - anon_sym_struct, - ACTIONS(9412), 1, - anon_sym_union, - ACTIONS(9465), 1, - anon_sym_COLON, - STATE(4540), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9416), 2, - sym_id, - sym_Class, - ACTIONS(9408), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(9414), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9400), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9463), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4045), 10, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - aux_sym_swift_name_attribute_sepcifier_repeat1, - [9878] = 16, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, - anon_sym_COMMA, - ACTIONS(9467), 1, - anon_sym_SEMI, - STATE(4344), 1, - aux_sym_property_declaration_repeat1, - STATE(5858), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4188), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [9953] = 16, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, - anon_sym_COMMA, - ACTIONS(9469), 1, - anon_sym_SEMI, - STATE(4344), 1, - aux_sym_property_declaration_repeat1, - STATE(5866), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4180), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [10028] = 16, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, - anon_sym_COMMA, - ACTIONS(9471), 1, - anon_sym_SEMI, - STATE(4344), 1, - aux_sym_property_declaration_repeat1, - STATE(5740), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, STATE(4139), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, + ACTIONS(9175), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -580961,7 +576843,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, + ACTIONS(9177), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -580977,37 +576859,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [10103] = 16, + [13163] = 19, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + ACTIONS(9169), 1, anon_sym___attribute__, - ACTIONS(9179), 1, + ACTIONS(9171), 1, sym_method_attribute_specifier, - ACTIONS(9187), 1, + ACTIONS(9179), 1, anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, + ACTIONS(9181), 1, anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, + ACTIONS(9302), 1, anon_sym_COMMA, - ACTIONS(9473), 1, + ACTIONS(9375), 1, anon_sym_SEMI, - STATE(4344), 1, + STATE(4052), 1, + sym_parameter_list, + STATE(4068), 1, aux_sym_property_declaration_repeat1, - STATE(5768), 1, + STATE(5503), 1, sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, + ACTIONS(9173), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4091), 2, + STATE(4209), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, + ACTIONS(9175), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -581020,7 +576908,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, + ACTIONS(9177), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -581036,155 +576924,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [10178] = 16, + [13247] = 19, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + ACTIONS(9169), 1, anon_sym___attribute__, - ACTIONS(9179), 1, + ACTIONS(9171), 1, sym_method_attribute_specifier, - ACTIONS(9187), 1, + ACTIONS(9179), 1, anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, + ACTIONS(9181), 1, anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, + ACTIONS(9302), 1, anon_sym_COMMA, - ACTIONS(9475), 1, + ACTIONS(9377), 1, anon_sym_SEMI, - STATE(4344), 1, + STATE(4052), 1, + sym_parameter_list, + STATE(4057), 1, aux_sym_property_declaration_repeat1, - STATE(5833), 1, + STATE(5513), 1, sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, + ACTIONS(9173), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4239), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [10253] = 16, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, - anon_sym_COMMA, - ACTIONS(9477), 1, - anon_sym_SEMI, - STATE(4344), 1, - aux_sym_property_declaration_repeat1, - STATE(5703), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4068), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [10328] = 16, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, - anon_sym_COMMA, - ACTIONS(9479), 1, - anon_sym_SEMI, - STATE(4344), 1, - aux_sym_property_declaration_repeat1, - STATE(5831), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, STATE(4240), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, + ACTIONS(9175), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -581197,7 +576973,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, + ACTIONS(9177), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -581213,37 +576989,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [10403] = 16, + [13331] = 19, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + ACTIONS(9169), 1, anon_sym___attribute__, - ACTIONS(9179), 1, + ACTIONS(9171), 1, sym_method_attribute_specifier, - ACTIONS(9187), 1, + ACTIONS(9179), 1, anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, + ACTIONS(9181), 1, anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, + ACTIONS(9302), 1, anon_sym_COMMA, - ACTIONS(9481), 1, + ACTIONS(9379), 1, anon_sym_SEMI, - STATE(4344), 1, + STATE(4052), 1, + sym_parameter_list, + STATE(4060), 1, aux_sym_property_declaration_repeat1, - STATE(5814), 1, + STATE(5498), 1, sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, + ACTIONS(9173), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4187), 2, + STATE(4191), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, + ACTIONS(9175), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -581256,7 +577038,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, + ACTIONS(9177), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -581272,97 +577054,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [10478] = 16, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, - anon_sym_COMMA, - ACTIONS(9483), 1, - anon_sym_SEMI, - STATE(4344), 1, - aux_sym_property_declaration_repeat1, - STATE(5809), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4165), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [10553] = 14, - ACTIONS(9485), 1, + [13415] = 16, + ACTIONS(9381), 1, sym_identifier, - ACTIONS(9488), 1, + ACTIONS(9384), 1, + anon_sym_RPAREN, + ACTIONS(9386), 1, anon_sym__Atomic, - ACTIONS(9497), 1, + ACTIONS(9395), 1, anon_sym_enum, - ACTIONS(9500), 1, + ACTIONS(9398), 1, anon_sym_COLON, - ACTIONS(9505), 1, + ACTIONS(9401), 1, anon_sym_struct, - ACTIONS(9508), 1, + ACTIONS(9404), 1, anon_sym_union, - STATE(4540), 1, + STATE(4044), 1, + aux_sym_swift_name_attribute_sepcifier_repeat2, + STATE(4557), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(9514), 2, + ACTIONS(9413), 2, sym_id, sym_Class, - ACTIONS(9502), 3, + ACTIONS(9407), 3, anon_sym_NS_ENUM, anon_sym_NS_ERROR_ENUM, anon_sym_NS_OPTIONS, - ACTIONS(9511), 3, + ACTIONS(9410), 3, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, - ACTIONS(9491), 4, + ACTIONS(9389), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(9494), 6, + ACTIONS(9392), 6, sym_primitive_type, sym_instancetype, sym_SEL, @@ -581377,49 +577104,60 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - STATE(4045), 10, + STATE(4053), 11, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, + sym_ns_enum_specifier, sym_typeof_specifier, sym_atomic_specifier, sym_generic_type_specifier, aux_sym_swift_name_attribute_sepcifier_repeat1, - [10624] = 13, - ACTIONS(9519), 1, - anon_sym___attribute, - ACTIONS(9522), 1, - anon_sym___attribute__, - ACTIONS(9525), 1, - sym_method_attribute_specifier, - ACTIONS(9534), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9540), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9543), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9528), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9517), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACE, - STATE(4046), 3, - sym_attribute_specifier, - sym_swift_name_attribute_sepcifier, - aux_sym_enumerator_repeat1, - ACTIONS(9531), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, + [13493] = 16, + ACTIONS(9316), 1, + sym_identifier, + ACTIONS(9320), 1, + anon_sym__Atomic, + ACTIONS(9326), 1, + anon_sym_enum, + ACTIONS(9330), 1, + anon_sym_struct, + ACTIONS(9332), 1, + anon_sym_union, + ACTIONS(9348), 1, + anon_sym_COLON, + ACTIONS(9416), 1, + anon_sym_RPAREN, + STATE(4044), 1, + aux_sym_swift_name_attribute_sepcifier_repeat2, + STATE(4557), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9338), 2, + sym_id, + sym_Class, + ACTIONS(9334), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(9336), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9322), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9324), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -581428,57 +577166,237 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9537), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [10693] = 16, - ACTIONS(35), 1, + STATE(4053), 11, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + aux_sym_swift_name_attribute_sepcifier_repeat1, + [13571] = 8, + ACTIONS(8708), 1, + anon_sym_RPAREN, + ACTIONS(9418), 1, + sym_identifier, + ACTIONS(9420), 1, + anon_sym_LPAREN2, + STATE(4111), 1, + aux_sym_type_definition_repeat1, + STATE(4261), 1, + sym_type_qualifier, + STATE(5306), 1, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [13632] = 8, + ACTIONS(9418), 1, + sym_identifier, + ACTIONS(9420), 1, + anon_sym_LPAREN2, + ACTIONS(9422), 1, + anon_sym_RPAREN, + STATE(4111), 1, + aux_sym_type_definition_repeat1, + STATE(4233), 1, + sym_type_qualifier, + STATE(5306), 1, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [13693] = 8, + ACTIONS(9420), 1, + anon_sym_LPAREN2, + ACTIONS(9422), 1, + anon_sym_RPAREN, + ACTIONS(9424), 1, + sym_identifier, + STATE(4107), 1, + aux_sym_type_definition_repeat1, + STATE(4233), 1, + sym_type_qualifier, + STATE(5547), 1, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [13754] = 6, + ACTIONS(9420), 1, + anon_sym_LPAREN2, + ACTIONS(9424), 1, + sym_identifier, + STATE(5547), 1, + sym_block_declarator, + STATE(4107), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [13810] = 5, + ACTIONS(9029), 2, anon_sym___attribute, - ACTIONS(119), 1, anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, - anon_sym_COMMA, - ACTIONS(9546), 1, - anon_sym_SEMI, - STATE(4344), 1, - aux_sym_property_declaration_repeat1, - STATE(5877), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4143), 2, + STATE(4038), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -581487,7 +577405,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, + ACTIONS(9027), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -581503,666 +577434,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [10768] = 16, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, anon_sym_NS_SWIFT_NAME, - ACTIONS(9312), 1, - anon_sym_COMMA, - ACTIONS(9548), 1, - anon_sym_SEMI, - STATE(4344), 1, - aux_sym_property_declaration_repeat1, - STATE(5801), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, + [13864] = 6, + ACTIONS(9418), 1, + sym_identifier, + ACTIONS(9420), 1, + anon_sym_LPAREN2, + STATE(5306), 1, + sym_block_declarator, + STATE(4111), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [13920] = 11, + ACTIONS(9426), 1, + anon_sym___attribute, + ACTIONS(9429), 1, + anon_sym___attribute__, + ACTIONS(9432), 1, + sym_method_attribute_specifier, + ACTIONS(9441), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9435), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4135), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [10843] = 6, - ACTIONS(9550), 1, - sym_identifier, - ACTIONS(9557), 1, - anon_sym_COLON, - STATE(4049), 2, - sym_keyword_declarator, - aux_sym_keyword_selector_repeat1, - ACTIONS(9553), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9555), 27, - anon_sym___attribute, - anon_sym___attribute__, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - anon_sym_NS_REFINED_FOR_SWIFT, - anon_sym_NS_SWIFT_NAME, - [10897] = 5, - ACTIONS(9560), 1, - anon_sym_RPAREN, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7921), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9252), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [10949] = 4, - ACTIONS(9562), 1, - sym_identifier, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [10999] = 5, - ACTIONS(9564), 1, - anon_sym_RPAREN, - STATE(4064), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7921), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9252), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [11051] = 6, - ACTIONS(9566), 1, - sym_identifier, - ACTIONS(9572), 1, - anon_sym_COLON, - STATE(4049), 2, - sym_keyword_declarator, - aux_sym_keyword_selector_repeat1, - ACTIONS(9568), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9570), 27, - anon_sym___attribute, - anon_sym___attribute__, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - anon_sym_NS_REFINED_FOR_SWIFT, - anon_sym_NS_SWIFT_NAME, - [11105] = 13, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - ACTIONS(9574), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4046), 3, - sym_attribute_specifier, - sym_swift_name_attribute_sepcifier, - aux_sym_enumerator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [11173] = 5, - ACTIONS(9576), 1, - anon_sym_RPAREN, - STATE(4058), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7921), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9252), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [11225] = 5, - ACTIONS(9578), 1, - anon_sym_RPAREN, - STATE(4057), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7921), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9252), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [11277] = 5, - ACTIONS(9580), 1, - anon_sym_RPAREN, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7921), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9252), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [11329] = 5, - ACTIONS(9582), 1, - anon_sym_RPAREN, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7921), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9252), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [11381] = 4, - ACTIONS(9584), 1, - sym_identifier, - STATE(3725), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7921), 31, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [11431] = 5, - ACTIONS(9586), 1, - anon_sym_RPAREN, STATE(4050), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(7921), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9252), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [11483] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, + ACTIONS(9438), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(9035), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_LBRACK, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -582171,102 +577517,703 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [11547] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4061), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(9010), 5, + ACTIONS(9002), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [11611] = 13, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, anon_sym_NS_SWIFT_NAME, - ACTIONS(9181), 2, + ACTIONS(9444), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [13986] = 14, + ACTIONS(9316), 1, + sym_identifier, + ACTIONS(9320), 1, + anon_sym__Atomic, + ACTIONS(9326), 1, + anon_sym_enum, + ACTIONS(9330), 1, + anon_sym_struct, + ACTIONS(9332), 1, + anon_sym_union, + ACTIONS(9449), 1, + anon_sym_COLON, + STATE(4557), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9338), 2, + sym_id, + sym_Class, + ACTIONS(9334), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(9336), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9322), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9447), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4054), 11, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + aux_sym_swift_name_attribute_sepcifier_repeat1, + [14058] = 14, + ACTIONS(9451), 1, + sym_identifier, + ACTIONS(9454), 1, + anon_sym__Atomic, + ACTIONS(9463), 1, + anon_sym_enum, + ACTIONS(9466), 1, + anon_sym_COLON, + ACTIONS(9468), 1, + anon_sym_struct, + ACTIONS(9471), 1, + anon_sym_union, + STATE(4557), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9480), 2, + sym_id, + sym_Class, + ACTIONS(9474), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(9477), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9457), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9460), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4054), 11, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + aux_sym_swift_name_attribute_sepcifier_repeat1, + [14130] = 16, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9302), 1, + anon_sym_COMMA, + ACTIONS(9483), 1, + anon_sym_SEMI, + STATE(4325), 1, + aux_sym_property_declaration_repeat1, + STATE(5502), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - ACTIONS(9588), 2, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4202), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [14205] = 16, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9302), 1, + anon_sym_COMMA, + ACTIONS(9485), 1, + anon_sym_SEMI, + STATE(4325), 1, + aux_sym_property_declaration_repeat1, + STATE(5597), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4220), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [14280] = 16, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9302), 1, + anon_sym_COMMA, + ACTIONS(9487), 1, + anon_sym_SEMI, + STATE(4325), 1, + aux_sym_property_declaration_repeat1, + STATE(5566), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4149), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [14355] = 16, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9302), 1, + anon_sym_COMMA, + ACTIONS(9489), 1, + anon_sym_SEMI, + STATE(4325), 1, + aux_sym_property_declaration_repeat1, + STATE(5551), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4142), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [14430] = 16, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9302), 1, + anon_sym_COMMA, + ACTIONS(9491), 1, + anon_sym_SEMI, + STATE(4325), 1, + aux_sym_property_declaration_repeat1, + STATE(5581), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4182), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [14505] = 16, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9302), 1, + anon_sym_COMMA, + ACTIONS(9493), 1, + anon_sym_SEMI, + STATE(4325), 1, + aux_sym_property_declaration_repeat1, + STATE(5517), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4229), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [14580] = 16, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9302), 1, + anon_sym_COMMA, + ACTIONS(9495), 1, + anon_sym_SEMI, + STATE(4325), 1, + aux_sym_property_declaration_repeat1, + STATE(5512), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4163), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [14655] = 13, + ACTIONS(9499), 1, + anon_sym___attribute, + ACTIONS(9502), 1, + anon_sym___attribute__, + ACTIONS(9505), 1, + sym_method_attribute_specifier, + ACTIONS(9514), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9520), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9523), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9508), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9497), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + STATE(4062), 3, + sym_attribute_specifier, + sym_swift_name_attribute_sepcifier, + aux_sym_enumerator_repeat1, + ACTIONS(9511), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9517), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [14724] = 16, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9302), 1, + anon_sym_COMMA, + ACTIONS(9526), 1, + anon_sym_SEMI, + STATE(4325), 1, + aux_sym_property_declaration_repeat1, + STATE(5496), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4181), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [14799] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9530), 1, + anon_sym_EQ, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + ACTIONS(9528), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4046), 3, + STATE(4085), 3, sym_attribute_specifier, sym_swift_name_attribute_sepcifier, aux_sym_enumerator_repeat1, - ACTIONS(9183), 4, + ACTIONS(9175), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -582279,7 +578226,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, + ACTIONS(9177), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -582295,13 +578242,1072 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [11679] = 5, - ACTIONS(9590), 1, + [14870] = 16, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9302), 1, + anon_sym_COMMA, + ACTIONS(9532), 1, + anon_sym_SEMI, + STATE(4325), 1, + aux_sym_property_declaration_repeat1, + STATE(5579), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4176), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [14945] = 16, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9302), 1, + anon_sym_COMMA, + ACTIONS(9534), 1, + anon_sym_SEMI, + STATE(4325), 1, + aux_sym_property_declaration_repeat1, + STATE(5568), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4138), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [15020] = 16, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9302), 1, + anon_sym_COMMA, + ACTIONS(9536), 1, + anon_sym_SEMI, + STATE(4325), 1, + aux_sym_property_declaration_repeat1, + STATE(5428), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4222), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [15095] = 16, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9302), 1, + anon_sym_COMMA, + ACTIONS(9538), 1, + anon_sym_SEMI, + STATE(4325), 1, + aux_sym_property_declaration_repeat1, + STATE(5520), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4218), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [15170] = 13, + ACTIONS(7596), 1, + sym_identifier, + ACTIONS(8720), 1, + anon_sym_struct, + ACTIONS(8722), 1, + anon_sym_union, + ACTIONS(9540), 1, + anon_sym__Atomic, + ACTIONS(9544), 1, + anon_sym_enum, + STATE(3720), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1163), 2, + sym_id, + sym_Class, + ACTIONS(1161), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(8724), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(7602), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9542), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(3757), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [15238] = 13, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9546), 1, + sym_identifier, + ACTIONS(9552), 1, + anon_sym_enum, + ACTIONS(9554), 1, + anon_sym_struct, + STATE(4738), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(125), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9548), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9550), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(5143), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [15306] = 13, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9546), 1, + sym_identifier, + ACTIONS(9552), 1, + anon_sym_enum, + ACTIONS(9554), 1, + anon_sym_struct, + STATE(4738), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(125), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9548), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9556), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(5160), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [15374] = 13, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + ACTIONS(9558), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4062), 3, + sym_attribute_specifier, + sym_swift_name_attribute_sepcifier, + aux_sym_enumerator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [15442] = 13, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9546), 1, + sym_identifier, + ACTIONS(9562), 1, + anon_sym_enum, + ACTIONS(9564), 1, + anon_sym_struct, + ACTIONS(9566), 1, + anon_sym_union, + STATE(4738), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9568), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(9548), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9560), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4803), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [15510] = 13, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9546), 1, + sym_identifier, + ACTIONS(9562), 1, + anon_sym_enum, + ACTIONS(9564), 1, + anon_sym_struct, + ACTIONS(9566), 1, + anon_sym_union, + STATE(4738), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9568), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(9548), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9570), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4789), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [15578] = 13, + ACTIONS(2184), 1, + sym_identifier, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9574), 1, + anon_sym_enum, + ACTIONS(9576), 1, + anon_sym_struct, + ACTIONS(9578), 1, + anon_sym_union, + STATE(3321), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9580), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9572), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(3382), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [15646] = 13, + ACTIONS(2184), 1, + sym_identifier, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9574), 1, + anon_sym_enum, + ACTIONS(9576), 1, + anon_sym_struct, + ACTIONS(9578), 1, + anon_sym_union, + STATE(3321), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9580), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9582), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(3375), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [15714] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(9027), 5, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(3725), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [15778] = 13, + ACTIONS(2184), 1, + sym_identifier, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9578), 1, + anon_sym_union, + ACTIONS(9584), 1, + anon_sym_enum, + ACTIONS(9586), 1, + anon_sym_struct, + STATE(3321), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9580), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9572), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(3382), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [15846] = 13, + ACTIONS(9316), 1, + sym_identifier, + ACTIONS(9320), 1, + anon_sym__Atomic, + ACTIONS(9590), 1, + anon_sym_enum, + ACTIONS(9592), 1, + anon_sym_struct, + ACTIONS(9594), 1, + anon_sym_union, + STATE(4557), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9338), 2, + sym_id, + sym_Class, + ACTIONS(9336), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9596), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(9322), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9588), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4559), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [15914] = 13, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9546), 1, + sym_identifier, + ACTIONS(9552), 1, + anon_sym_enum, + ACTIONS(9554), 1, + anon_sym_struct, + STATE(4738), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(125), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9548), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9598), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(5060), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [15982] = 13, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9546), 1, + sym_identifier, + ACTIONS(9552), 1, + anon_sym_enum, + ACTIONS(9554), 1, + anon_sym_struct, + STATE(4738), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(125), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9548), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9600), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(5051), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [16050] = 13, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9546), 1, + sym_identifier, + ACTIONS(9566), 1, + anon_sym_union, + ACTIONS(9602), 1, + anon_sym_enum, + ACTIONS(9604), 1, + anon_sym_struct, + STATE(3321), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9568), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9560), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4803), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [16118] = 13, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9546), 1, + sym_identifier, + ACTIONS(9566), 1, + anon_sym_union, + ACTIONS(9602), 1, + anon_sym_enum, + ACTIONS(9604), 1, + anon_sym_struct, + STATE(3321), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9568), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9570), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4789), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [16186] = 5, + ACTIONS(9606), 1, + anon_sym_RPAREN, + STATE(3688), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(7921), 3, + ACTIONS(7871), 3, anon_sym_in, anon_sym__Nullable, anon_sym___bridge, @@ -582313,7 +579319,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9252), 28, + ACTIONS(9242), 28, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -582342,412 +579348,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [11731] = 13, - ACTIONS(7682), 1, - sym_identifier, - ACTIONS(8805), 1, - anon_sym_struct, - ACTIONS(8807), 1, - anon_sym_union, - ACTIONS(9592), 1, - anon_sym__Atomic, - ACTIONS(9596), 1, - anon_sym_enum, - STATE(3722), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1163), 2, - sym_id, - sym_Class, - ACTIONS(1161), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(8803), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(7688), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9594), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(3757), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [11798] = 13, - ACTIONS(2234), 1, - sym_identifier, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9600), 1, - anon_sym_enum, - ACTIONS(9604), 1, - anon_sym_struct, - ACTIONS(9606), 1, - anon_sym_union, - STATE(3382), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9602), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9598), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(3430), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [11865] = 13, - ACTIONS(2234), 1, - sym_identifier, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9600), 1, - anon_sym_enum, - ACTIONS(9604), 1, - anon_sym_struct, - ACTIONS(9606), 1, - anon_sym_union, - STATE(3382), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9602), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9608), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(3431), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [11932] = 14, + [16238] = 13, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, + ACTIONS(9169), 1, anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, + ACTIONS(9181), 1, anon_sym_NS_SWIFT_NAME, - ACTIONS(9610), 1, - anon_sym_SEMI, - STATE(5850), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, + ACTIONS(9173), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + ACTIONS(9608), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [12001] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9612), 1, - sym_identifier, - ACTIONS(9614), 1, - anon_sym_SEMI, - ACTIONS(9616), 1, - anon_sym_LBRACK, - STATE(4321), 1, - sym_parameter_list, - STATE(5610), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [12068] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9618), 1, - anon_sym_SEMI, - STATE(5753), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [12137] = 13, - ACTIONS(2234), 1, - sym_identifier, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9606), 1, - anon_sym_union, - ACTIONS(9620), 1, - anon_sym_enum, - ACTIONS(9622), 1, - anon_sym_struct, - STATE(3382), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9602), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9598), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(3430), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [12204] = 13, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9624), 1, - anon_sym_SEMI, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4221), 3, + STATE(4062), 3, sym_attribute_specifier, sym_swift_name_attribute_sepcifier, aux_sym_enumerator_repeat1, - ACTIONS(9183), 4, + ACTIONS(9175), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -582760,7 +579387,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, + ACTIONS(9177), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -582776,172 +579403,669 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [12271] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9626), 1, - sym_identifier, - ACTIONS(9628), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5279), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [12338] = 5, - ACTIONS(9630), 1, - anon_sym_SEMI, - STATE(5648), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [12389] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9632), 1, - sym_identifier, - ACTIONS(9634), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5851), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [12456] = 13, - ACTIONS(7682), 1, - sym_identifier, - ACTIONS(8805), 1, - anon_sym_struct, - ACTIONS(8807), 1, + [16306] = 13, + ACTIONS(59), 1, anon_sym_union, - ACTIONS(9592), 1, + ACTIONS(6922), 1, anon_sym__Atomic, - ACTIONS(9596), 1, + ACTIONS(9546), 1, + sym_identifier, + ACTIONS(9552), 1, anon_sym_enum, - STATE(3722), 1, + ACTIONS(9554), 1, + anon_sym_struct, + STATE(4738), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(125), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9548), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9610), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(5050), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [16374] = 13, + ACTIONS(2184), 1, + sym_identifier, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9574), 1, + anon_sym_enum, + ACTIONS(9576), 1, + anon_sym_struct, + ACTIONS(9578), 1, + anon_sym_union, + STATE(3321), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9580), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9612), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(3384), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [16442] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4077), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(9002), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [16506] = 13, + ACTIONS(9316), 1, + sym_identifier, + ACTIONS(9320), 1, + anon_sym__Atomic, + ACTIONS(9590), 1, + anon_sym_enum, + ACTIONS(9592), 1, + anon_sym_struct, + ACTIONS(9594), 1, + anon_sym_union, + STATE(4557), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9338), 2, + sym_id, + sym_Class, + ACTIONS(9336), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9596), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(9322), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9614), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4571), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [16574] = 6, + ACTIONS(9616), 1, + sym_identifier, + ACTIONS(9623), 1, + anon_sym_COLON, + STATE(4090), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + ACTIONS(9619), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9621), 27, + anon_sym___attribute, + anon_sym___attribute__, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + anon_sym_NS_REFINED_FOR_SWIFT, + anon_sym_NS_SWIFT_NAME, + [16628] = 13, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9546), 1, + sym_identifier, + ACTIONS(9552), 1, + anon_sym_enum, + ACTIONS(9554), 1, + anon_sym_struct, + STATE(4738), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(125), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9548), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9626), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(5115), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [16696] = 13, + ACTIONS(9316), 1, + sym_identifier, + ACTIONS(9320), 1, + anon_sym__Atomic, + ACTIONS(9590), 1, + anon_sym_enum, + ACTIONS(9592), 1, + anon_sym_struct, + ACTIONS(9594), 1, + anon_sym_union, + STATE(4557), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9338), 2, + sym_id, + sym_Class, + ACTIONS(9336), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9596), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(9322), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9628), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4568), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [16764] = 13, + ACTIONS(9316), 1, + sym_identifier, + ACTIONS(9320), 1, + anon_sym__Atomic, + ACTIONS(9590), 1, + anon_sym_enum, + ACTIONS(9592), 1, + anon_sym_struct, + ACTIONS(9594), 1, + anon_sym_union, + STATE(4557), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9338), 2, + sym_id, + sym_Class, + ACTIONS(9336), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9596), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(9322), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9630), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4563), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [16832] = 13, + ACTIONS(2184), 1, + sym_identifier, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9578), 1, + anon_sym_union, + ACTIONS(9584), 1, + anon_sym_enum, + ACTIONS(9586), 1, + anon_sym_struct, + STATE(3321), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9580), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9582), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(3375), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [16900] = 13, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9546), 1, + sym_identifier, + ACTIONS(9562), 1, + anon_sym_enum, + ACTIONS(9564), 1, + anon_sym_struct, + ACTIONS(9566), 1, + anon_sym_union, + STATE(4738), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9568), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(9548), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9612), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(3384), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [16968] = 13, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9546), 1, + sym_identifier, + ACTIONS(9552), 1, + anon_sym_enum, + ACTIONS(9554), 1, + anon_sym_struct, + STATE(4738), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(125), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9548), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9632), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(5211), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [17036] = 13, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9546), 1, + sym_identifier, + ACTIONS(9562), 1, + anon_sym_enum, + ACTIONS(9564), 1, + anon_sym_struct, + ACTIONS(9566), 1, + anon_sym_union, + STATE(4738), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9568), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(9548), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9634), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(3376), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [17104] = 13, + ACTIONS(7596), 1, + sym_identifier, + ACTIONS(8718), 1, + anon_sym_enum, + ACTIONS(8720), 1, + anon_sym_struct, + ACTIONS(8722), 1, + anon_sym_union, + ACTIONS(9540), 1, + anon_sym__Atomic, + STATE(3921), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(1163), 2, sym_id, @@ -582950,11 +580074,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, - ACTIONS(8803), 3, + ACTIONS(8724), 3, anon_sym_NS_ENUM, anon_sym_NS_ERROR_ENUM, anon_sym_NS_OPTIONS, - ACTIONS(7688), 4, + ACTIONS(1147), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -582974,186 +580098,296 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - STATE(3734), 9, + STATE(3762), 10, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, + sym_ns_enum_specifier, sym_typeof_specifier, sym_atomic_specifier, sym_generic_type_specifier, - [12523] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, + [17172] = 13, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9546), 1, + sym_identifier, + ACTIONS(9566), 1, + anon_sym_union, + ACTIONS(9602), 1, + anon_sym_enum, + ACTIONS(9604), 1, + anon_sym_struct, + STATE(3321), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9568), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9634), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(3376), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [17240] = 13, + ACTIONS(2184), 1, + sym_identifier, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9574), 1, + anon_sym_enum, + ACTIONS(9576), 1, + anon_sym_struct, + ACTIONS(9578), 1, + anon_sym_union, + STATE(3321), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9580), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9634), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(3376), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [17308] = 5, ACTIONS(9638), 1, + anon_sym_RPAREN, + STATE(4112), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7871), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9242), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [17360] = 13, + ACTIONS(2184), 1, sym_identifier, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9578), 1, + anon_sym_union, + ACTIONS(9584), 1, + anon_sym_enum, + ACTIONS(9586), 1, + anon_sym_struct, + STATE(3321), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9580), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9634), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(3376), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [17428] = 13, + ACTIONS(7596), 1, + sym_identifier, + ACTIONS(8720), 1, + anon_sym_struct, + ACTIONS(8722), 1, + anon_sym_union, + ACTIONS(9540), 1, + anon_sym__Atomic, + ACTIONS(9544), 1, + anon_sym_enum, + STATE(3720), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1163), 2, + sym_id, + sym_Class, + ACTIONS(1161), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(8724), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(7602), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9636), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(3762), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [17496] = 6, ACTIONS(9640), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5724), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [12590] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9642), 1, sym_identifier, - ACTIONS(9644), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5531), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [12657] = 13, - ACTIONS(9394), 1, - sym_identifier, - ACTIONS(9398), 1, - anon_sym__Atomic, - ACTIONS(9648), 1, - anon_sym_enum, - ACTIONS(9652), 1, - anon_sym_struct, - ACTIONS(9654), 1, - anon_sym_union, - STATE(4540), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9416), 2, - sym_id, - sym_Class, - ACTIONS(9414), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9650), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(9400), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9646), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4542), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [12724] = 4, - ACTIONS(9660), 1, - anon_sym___unused, - ACTIONS(9658), 4, + ACTIONS(9646), 1, + anon_sym_COLON, + STATE(4090), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + ACTIONS(9642), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_COLON, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -583162,10 +580396,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9656), 28, + ACTIONS(9644), 27, anon_sym___attribute, anon_sym___attribute__, - sym_identifier, sym_method_attribute_specifier, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, @@ -583191,126 +580424,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_CLASS_DEPRECATED_IOS, anon_sym_NS_REFINED_FOR_SWIFT, anon_sym_NS_SWIFT_NAME, - [12773] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9662), 1, + [17550] = 13, + ACTIONS(7596), 1, sym_identifier, - ACTIONS(9664), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5603), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [12840] = 13, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9666), 1, - sym_identifier, - ACTIONS(9670), 1, + ACTIONS(8718), 1, anon_sym_enum, - ACTIONS(9674), 1, + ACTIONS(8720), 1, anon_sym_struct, - ACTIONS(9676), 1, + ACTIONS(8722), 1, anon_sym_union, - STATE(3382), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9672), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9668), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(3419), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [12907] = 13, - ACTIONS(7682), 1, - sym_identifier, - ACTIONS(8805), 1, - anon_sym_struct, - ACTIONS(8807), 1, - anon_sym_union, - ACTIONS(9592), 1, + ACTIONS(9540), 1, anon_sym__Atomic, - ACTIONS(9596), 1, - anon_sym_enum, - STATE(3722), 1, + STATE(3921), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(1163), 2, sym_id, @@ -583319,1469 +580444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, - ACTIONS(8803), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(7688), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9678), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(3747), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [12974] = 4, - ACTIONS(9684), 1, - anon_sym___unused, - ACTIONS(9682), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9680), 28, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - anon_sym_NS_REFINED_FOR_SWIFT, - anon_sym_NS_SWIFT_NAME, - [13023] = 5, - ACTIONS(9686), 1, - anon_sym_SEMI, - STATE(5646), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [13074] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9688), 1, - sym_identifier, - ACTIONS(9690), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5483), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [13141] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9692), 1, - anon_sym_RPAREN, - STATE(4030), 1, - sym_parameter_list, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4330), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [13210] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9694), 1, - sym_identifier, - ACTIONS(9696), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5714), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [13277] = 13, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9666), 1, - sym_identifier, - ACTIONS(9702), 1, - anon_sym_enum, - ACTIONS(9704), 1, - anon_sym_struct, - STATE(4718), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(57), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9698), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9700), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(5108), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [13344] = 5, - ACTIONS(9706), 1, - anon_sym_SEMI, - STATE(5479), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [13395] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9708), 1, - anon_sym_SEMI, - STATE(5752), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [13464] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9692), 1, - anon_sym_RPAREN, - ACTIONS(9710), 1, - anon_sym_LBRACK, - STATE(4286), 1, - sym_parameter_list, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4322), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [13533] = 13, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9666), 1, - sym_identifier, - ACTIONS(9702), 1, - anon_sym_enum, - ACTIONS(9704), 1, - anon_sym_struct, - STATE(4718), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(57), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9698), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9712), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(5160), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [13600] = 5, - ACTIONS(9714), 1, - anon_sym_SEMI, - STATE(5553), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [13651] = 5, - ACTIONS(9716), 1, - anon_sym_RPAREN, - STATE(5644), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [13702] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9718), 1, - anon_sym_SEMI, - STATE(5741), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [13771] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9720), 1, - sym_identifier, - ACTIONS(9722), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5755), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [13838] = 14, - ACTIONS(9230), 1, - anon_sym___attribute, - ACTIONS(9240), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9710), 1, - anon_sym_LBRACK, - ACTIONS(9724), 1, - anon_sym_LPAREN2, - ACTIONS(9726), 1, - anon_sym___attribute__, - ACTIONS(9728), 1, - anon_sym_in, - ACTIONS(9730), 1, - sym_method_attribute_specifier, - STATE(4286), 1, - sym_parameter_list, - ACTIONS(9732), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4348), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9734), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9736), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [13907] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9738), 1, - sym_identifier, - ACTIONS(9740), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5478), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [13974] = 13, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9666), 1, - sym_identifier, - ACTIONS(9670), 1, - anon_sym_enum, - ACTIONS(9674), 1, - anon_sym_struct, - ACTIONS(9676), 1, - anon_sym_union, - STATE(3382), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9672), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9608), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(3431), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [14041] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9728), 1, - anon_sym_RPAREN, - STATE(4030), 1, - sym_parameter_list, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4337), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [14110] = 5, - ACTIONS(9742), 1, - anon_sym_SEMI, - STATE(5484), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [14161] = 5, - ACTIONS(9744), 1, - anon_sym_SEMI, - STATE(5486), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [14212] = 13, - ACTIONS(9394), 1, - sym_identifier, - ACTIONS(9398), 1, - anon_sym__Atomic, - ACTIONS(9648), 1, - anon_sym_enum, - ACTIONS(9652), 1, - anon_sym_struct, - ACTIONS(9654), 1, - anon_sym_union, - STATE(4540), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9416), 2, - sym_id, - sym_Class, - ACTIONS(9414), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9650), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(9400), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9746), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4533), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [14279] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9748), 1, - sym_identifier, - ACTIONS(9750), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5476), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [14346] = 14, - ACTIONS(9230), 1, - anon_sym___attribute, - ACTIONS(9240), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9724), 1, - anon_sym_LPAREN2, - ACTIONS(9726), 1, - anon_sym___attribute__, - ACTIONS(9730), 1, - sym_method_attribute_specifier, - ACTIONS(9752), 1, - anon_sym_LBRACK, - ACTIONS(9754), 1, - anon_sym_in, - STATE(4289), 1, - sym_parameter_list, - ACTIONS(9732), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4350), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9734), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9736), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [14415] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9756), 1, - sym_identifier, - ACTIONS(9758), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5691), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [14482] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9760), 1, - sym_identifier, - ACTIONS(9762), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5474), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [14549] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9764), 1, - sym_identifier, - ACTIONS(9766), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5254), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [14616] = 13, - ACTIONS(9394), 1, - sym_identifier, - ACTIONS(9398), 1, - anon_sym__Atomic, - ACTIONS(9648), 1, - anon_sym_enum, - ACTIONS(9652), 1, - anon_sym_struct, - ACTIONS(9654), 1, - anon_sym_union, - STATE(4540), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9416), 2, - sym_id, - sym_Class, - ACTIONS(9414), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9650), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(9400), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9768), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4550), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [14683] = 13, - ACTIONS(7682), 1, - sym_identifier, - ACTIONS(8801), 1, - anon_sym_enum, - ACTIONS(8805), 1, - anon_sym_struct, - ACTIONS(8807), 1, - anon_sym_union, - ACTIONS(9592), 1, - anon_sym__Atomic, - STATE(3961), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1163), 2, - sym_id, - sym_Class, - ACTIONS(1161), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(8803), 3, + ACTIONS(8724), 3, anon_sym_NS_ENUM, anon_sym_NS_ERROR_ENUM, anon_sym_NS_OPTIONS, @@ -584790,7 +580453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(9594), 6, + ACTIONS(9648), 6, sym_primitive_type, sym_instancetype, sym_SEL, @@ -584805,41 +580468,801 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - STATE(3757), 9, + STATE(3775), 10, sym__type_specifier, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, + sym_ns_enum_specifier, sym_typeof_specifier, sym_atomic_specifier, sym_generic_type_specifier, - [14750] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9770), 1, + [17618] = 13, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9546), 1, sym_identifier, - ACTIONS(9772), 1, + ACTIONS(9566), 1, + anon_sym_union, + ACTIONS(9602), 1, + anon_sym_enum, + ACTIONS(9604), 1, + anon_sym_struct, + STATE(3321), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9568), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9612), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(3384), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [17686] = 4, + ACTIONS(9650), 1, + sym_identifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [17736] = 13, + ACTIONS(7596), 1, + sym_identifier, + ACTIONS(8720), 1, + anon_sym_struct, + ACTIONS(8722), 1, + anon_sym_union, + ACTIONS(9540), 1, + anon_sym__Atomic, + ACTIONS(9544), 1, + anon_sym_enum, + STATE(3720), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1163), 2, + sym_id, + sym_Class, + ACTIONS(1161), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(8724), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(7602), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9648), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(3775), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [17804] = 13, + ACTIONS(7596), 1, + sym_identifier, + ACTIONS(8720), 1, + anon_sym_struct, + ACTIONS(8722), 1, + anon_sym_union, + ACTIONS(9540), 1, + anon_sym__Atomic, + ACTIONS(9544), 1, + anon_sym_enum, + STATE(3720), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1163), 2, + sym_id, + sym_Class, + ACTIONS(1161), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(8724), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(7602), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9652), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(3732), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [17872] = 13, + ACTIONS(59), 1, + anon_sym_union, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9546), 1, + sym_identifier, + ACTIONS(9552), 1, + anon_sym_enum, + ACTIONS(9554), 1, + anon_sym_struct, + STATE(4738), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(125), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9548), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9654), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(5258), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [17940] = 4, + ACTIONS(9656), 1, + sym_identifier, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7871), 31, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [17990] = 5, + ACTIONS(9658), 1, + anon_sym_RPAREN, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7871), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9242), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [18042] = 5, + ACTIONS(9660), 1, + anon_sym_RPAREN, + STATE(4119), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7871), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9242), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [18094] = 5, + ACTIONS(9662), 1, + anon_sym_RPAREN, + STATE(4117), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7871), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9242), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [18146] = 5, + ACTIONS(9664), 1, + anon_sym_RPAREN, + STATE(4084), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7871), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9242), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [18198] = 13, + ACTIONS(7596), 1, + sym_identifier, + ACTIONS(8718), 1, + anon_sym_enum, + ACTIONS(8720), 1, + anon_sym_struct, + ACTIONS(8722), 1, + anon_sym_union, + ACTIONS(9540), 1, + anon_sym__Atomic, + STATE(3921), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1163), 2, + sym_id, + sym_Class, + ACTIONS(1161), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(8724), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(1147), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9652), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(3732), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [18266] = 5, + ACTIONS(9666), 1, + anon_sym_RPAREN, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7871), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9242), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [18318] = 13, + ACTIONS(7596), 1, + sym_identifier, + ACTIONS(8718), 1, + anon_sym_enum, + ACTIONS(8720), 1, + anon_sym_struct, + ACTIONS(8722), 1, + anon_sym_union, + ACTIONS(9540), 1, + anon_sym__Atomic, + STATE(3921), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1163), 2, + sym_id, + sym_Class, + ACTIONS(1161), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(8724), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(1147), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9542), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(3757), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [18386] = 5, + ACTIONS(9668), 1, + anon_sym_RPAREN, + STATE(3688), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7871), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9242), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [18438] = 13, + ACTIONS(2184), 1, + sym_identifier, + ACTIONS(6922), 1, + anon_sym__Atomic, + ACTIONS(9578), 1, + anon_sym_union, + ACTIONS(9584), 1, + anon_sym_enum, + ACTIONS(9586), 1, + anon_sym_struct, + STATE(3321), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(131), 2, + sym_id, + sym_Class, + ACTIONS(127), 3, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + ACTIONS(9580), 3, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + ACTIONS(51), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9612), 6, + sym_primitive_type, + sym_instancetype, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(3384), 10, + sym__type_specifier, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + sym_ns_enum_specifier, + sym_typeof_specifier, + sym_atomic_specifier, + sym_generic_type_specifier, + [18506] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9670), 1, + sym_identifier, + ACTIONS(9672), 1, anon_sym_SEMI, - STATE(4321), 1, + ACTIONS(9674), 1, + anon_sym_LBRACK, + STATE(4340), 1, sym_parameter_list, - STATE(5884), 1, + STATE(5262), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute, anon_sym___attribute__, - ACTIONS(115), 2, + ACTIONS(113), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - ACTIONS(117), 4, + ACTIONS(115), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -584852,7 +581275,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, + ACTIONS(117), 16, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -584869,33 +581292,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [14817] = 14, - ACTIONS(9230), 1, - anon_sym___attribute, - ACTIONS(9240), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9710), 1, - anon_sym_LBRACK, - ACTIONS(9724), 1, - anon_sym_LPAREN2, - ACTIONS(9726), 1, - anon_sym___attribute__, - ACTIONS(9730), 1, - sym_method_attribute_specifier, - ACTIONS(9754), 1, + [18573] = 5, + ACTIONS(9676), 1, + anon_sym_SEMI, + STATE(5722), 1, + sym_type_qualifier, + ACTIONS(47), 3, anon_sym_in, - STATE(4286), 1, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [18624] = 5, + ACTIONS(9678), 1, + anon_sym_SEMI, + STATE(5468), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [18675] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9680), 1, + sym_identifier, + ACTIONS(9682), 1, + anon_sym_SEMI, + STATE(4340), 1, sym_parameter_list, - ACTIONS(9732), 2, + STATE(5379), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(4347), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - ACTIONS(9734), 4, + ACTIONS(115), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -584908,7 +581421,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9736), 15, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -584924,33 +581438,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [14886] = 14, + [18742] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9684), 1, + sym_identifier, + ACTIONS(9686), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5272), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [18809] = 6, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + STATE(4052), 1, + sym_parameter_list, + ACTIONS(9112), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9110), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + anon_sym_NS_REFINED_FOR_SWIFT, + anon_sym_NS_SWIFT_NAME, + [18862] = 14, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, + ACTIONS(9169), 1, anon_sym___attribute__, - ACTIONS(9179), 1, + ACTIONS(9171), 1, sym_method_attribute_specifier, - ACTIONS(9187), 1, + ACTIONS(9179), 1, anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, + ACTIONS(9181), 1, anon_sym_NS_SWIFT_NAME, - ACTIONS(9774), 1, + ACTIONS(9688), 1, anon_sym_SEMI, - STATE(5878), 1, + STATE(5580), 1, sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, + ACTIONS(9173), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4018), 2, + STATE(4038), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, + ACTIONS(9175), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -584963,7 +581578,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, + ACTIONS(9177), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -584979,31 +581594,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [14955] = 13, - ACTIONS(113), 1, + [18931] = 13, + ACTIONS(111), 1, sym_method_attribute_specifier, - ACTIONS(8793), 1, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(9616), 1, + ACTIONS(9674), 1, anon_sym_LBRACK, - ACTIONS(9776), 1, + ACTIONS(9690), 1, sym_identifier, - ACTIONS(9778), 1, + ACTIONS(9692), 1, anon_sym_SEMI, - STATE(4321), 1, + STATE(4340), 1, sym_parameter_list, - STATE(5907), 1, + STATE(5378), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute, anon_sym___attribute__, - ACTIONS(115), 2, + ACTIONS(113), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - ACTIONS(117), 4, + ACTIONS(115), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -585016,7 +581631,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, + ACTIONS(117), 16, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -585033,31 +581648,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [15022] = 13, - ACTIONS(113), 1, + [18998] = 13, + ACTIONS(111), 1, sym_method_attribute_specifier, - ACTIONS(8793), 1, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(9616), 1, + ACTIONS(9674), 1, anon_sym_LBRACK, - ACTIONS(9780), 1, + ACTIONS(9694), 1, sym_identifier, - ACTIONS(9782), 1, + ACTIONS(9696), 1, anon_sym_SEMI, - STATE(4321), 1, + STATE(4340), 1, + sym_parameter_list, + STATE(5374), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [19065] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9698), 1, + sym_identifier, + ACTIONS(9700), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5369), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [19132] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9702), 1, + sym_identifier, + ACTIONS(9704), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5360), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [19199] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9706), 1, + sym_identifier, + ACTIONS(9708), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5355), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [19266] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9710), 1, + sym_identifier, + ACTIONS(9712), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5354), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [19333] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9714), 1, + sym_identifier, + ACTIONS(9716), 1, + anon_sym_SEMI, + STATE(4340), 1, sym_parameter_list, STATE(5465), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute, anon_sym___attribute__, - ACTIONS(115), 2, + ACTIONS(113), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - ACTIONS(117), 4, + ACTIONS(115), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -585070,7 +581955,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, + ACTIONS(117), 16, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -585087,31 +581972,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [15089] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9784), 1, - sym_identifier, - ACTIONS(9786), 1, + [19400] = 5, + ACTIONS(9718), 1, anon_sym_SEMI, - STATE(4321), 1, + STATE(5353), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [19451] = 5, + ACTIONS(9720), 1, + anon_sym_SEMI, + STATE(5352), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [19502] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9722), 1, + sym_identifier, + ACTIONS(9724), 1, + anon_sym_SEMI, + STATE(4340), 1, sym_parameter_list, - STATE(5463), 1, + STATE(5345), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute, anon_sym___attribute__, - ACTIONS(115), 2, + ACTIONS(113), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - ACTIONS(117), 4, + ACTIONS(115), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -585124,7 +582101,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, + ACTIONS(117), 16, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -585141,31 +582118,1125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [15156] = 13, - ACTIONS(113), 1, + [19569] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, sym_method_attribute_specifier, - ACTIONS(8793), 1, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9726), 1, + anon_sym_SEMI, + STATE(5586), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [19638] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9728), 1, + anon_sym_SEMI, + STATE(5578), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [19707] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(9616), 1, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9730), 1, + sym_identifier, + ACTIONS(9732), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5341), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [19774] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9734), 1, + sym_identifier, + ACTIONS(9736), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5336), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [19841] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9738), 1, + anon_sym_SEMI, + STATE(5577), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [19910] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9740), 1, + sym_identifier, + ACTIONS(9742), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5461), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [19977] = 5, + ACTIONS(9192), 1, + anon_sym_RPAREN, + STATE(5321), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [20028] = 5, + ACTIONS(8708), 1, + anon_sym_RPAREN, + STATE(5324), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [20079] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9744), 1, + anon_sym_RPAREN, + ACTIONS(9746), 1, + anon_sym_LBRACK, + STATE(4282), 1, + sym_parameter_list, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4331), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [20148] = 5, + ACTIONS(9748), 1, + anon_sym_SEMI, + STATE(5333), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [20199] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9750), 1, + sym_identifier, + ACTIONS(9752), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5505), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [20266] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9754), 1, + anon_sym_SEMI, + STATE(5575), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [20335] = 5, + ACTIONS(9756), 1, + anon_sym_SEMI, + STATE(5470), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [20386] = 5, + ACTIONS(9758), 1, + anon_sym_SEMI, + STATE(5591), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [20437] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9760), 1, + sym_identifier, + ACTIONS(9762), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5636), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [20504] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9764), 1, + sym_identifier, + ACTIONS(9766), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5459), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [20571] = 5, + ACTIONS(7857), 1, + anon_sym_CARET, + STATE(5812), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [20622] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9768), 1, + anon_sym_RPAREN, + STATE(4052), 1, + sym_parameter_list, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4350), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [20691] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9770), 1, + sym_identifier, + ACTIONS(9772), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5507), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [20758] = 14, + ACTIONS(9220), 1, + anon_sym___attribute, + ACTIONS(9230), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9746), 1, + anon_sym_LBRACK, + ACTIONS(9768), 1, + anon_sym_in, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + ACTIONS(9776), 1, + anon_sym___attribute__, + ACTIONS(9778), 1, + sym_method_attribute_specifier, + STATE(4282), 1, + sym_parameter_list, + ACTIONS(9780), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4323), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9782), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9784), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [20827] = 14, + ACTIONS(9220), 1, + anon_sym___attribute, + ACTIONS(9230), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9768), 1, + anon_sym_in, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + ACTIONS(9776), 1, + anon_sym___attribute__, + ACTIONS(9778), 1, + sym_method_attribute_specifier, + ACTIONS(9786), 1, + anon_sym_LBRACK, + STATE(4278), 1, + sym_parameter_list, + ACTIONS(9780), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4343), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9782), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9784), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [20896] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, anon_sym_LBRACK, ACTIONS(9788), 1, sym_identifier, ACTIONS(9790), 1, anon_sym_SEMI, - STATE(4321), 1, + STATE(4340), 1, sym_parameter_list, - STATE(5842), 1, + STATE(5545), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute, anon_sym___attribute__, - ACTIONS(115), 2, + ACTIONS(113), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - ACTIONS(117), 4, + ACTIONS(115), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -585178,7 +583249,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, + ACTIONS(117), 16, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -585195,10 +583266,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [15223] = 5, + [20963] = 5, ACTIONS(9792), 1, anon_sym_SEMI, - STATE(5384), 1, + STATE(5390), 1, sym_type_qualifier, ACTIONS(47), 3, anon_sym_in, @@ -585212,7 +583283,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8887), 28, + ACTIONS(8860), 28, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -585241,33 +583312,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [15274] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, + [21014] = 5, ACTIONS(9794), 1, anon_sym_SEMI, - STATE(5702), 1, + STATE(5393), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [21065] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9796), 1, + anon_sym_SEMI, + STATE(5510), 1, sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, + ACTIONS(9173), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4018), 2, + STATE(4038), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, + ACTIONS(9175), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -585280,7 +583397,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, + ACTIONS(9177), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -585296,31 +583413,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [15343] = 13, - ACTIONS(113), 1, + [21134] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9796), 1, - sym_identifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, ACTIONS(9798), 1, anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5457), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, + STATE(5534), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - ACTIONS(117), 4, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -585333,8 +583452,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, + ACTIONS(9177), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -585350,193 +583468,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [15410] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, + [21203] = 5, ACTIONS(9800), 1, - sym_identifier, + anon_sym_SEMI, + STATE(5587), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [21254] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, ACTIONS(9802), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5344), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [15477] = 13, - ACTIONS(7682), 1, sym_identifier, - ACTIONS(8801), 1, - anon_sym_enum, - ACTIONS(8805), 1, - anon_sym_struct, - ACTIONS(8807), 1, - anon_sym_union, - ACTIONS(9592), 1, - anon_sym__Atomic, - STATE(3961), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1163), 2, - sym_id, - sym_Class, - ACTIONS(1161), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(8803), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(1147), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9636), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(3734), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [15544] = 13, - ACTIONS(7682), 1, - sym_identifier, - ACTIONS(8801), 1, - anon_sym_enum, - ACTIONS(8805), 1, - anon_sym_struct, - ACTIONS(8807), 1, - anon_sym_union, - ACTIONS(9592), 1, - anon_sym__Atomic, - STATE(3961), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1163), 2, - sym_id, - sym_Class, - ACTIONS(1161), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(8803), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(1147), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9678), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(3747), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [15611] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, ACTIONS(9804), 1, - sym_identifier, - ACTIONS(9806), 1, anon_sym_SEMI, - STATE(4321), 1, + STATE(4340), 1, sym_parameter_list, - STATE(5325), 1, + STATE(5735), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute, anon_sym___attribute__, - ACTIONS(115), 2, + ACTIONS(113), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - ACTIONS(117), 4, + ACTIONS(115), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -585549,7 +583551,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, + ACTIONS(117), 16, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -585566,35 +583568,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [15678] = 13, - ACTIONS(113), 1, + [21321] = 13, + ACTIONS(111), 1, sym_method_attribute_specifier, - ACTIONS(8793), 1, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(9616), 1, + ACTIONS(9674), 1, anon_sym_LBRACK, - ACTIONS(9808), 1, + ACTIONS(9806), 1, sym_identifier, + ACTIONS(9808), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5570), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [21388] = 5, ACTIONS(9810), 1, anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5347), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, + STATE(5442), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -585603,1668 +583639,37 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [15745] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [21439] = 5, ACTIONS(9812), 1, - sym_identifier, - ACTIONS(9814), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5270), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [15812] = 5, - ACTIONS(9200), 1, - anon_sym_RPAREN, - STATE(5319), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [15863] = 13, - ACTIONS(2234), 1, - sym_identifier, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9606), 1, - anon_sym_union, - ACTIONS(9620), 1, - anon_sym_enum, - ACTIONS(9622), 1, - anon_sym_struct, - STATE(3382), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9602), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9816), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(3424), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [15930] = 14, - ACTIONS(9230), 1, - anon_sym___attribute, - ACTIONS(9240), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9724), 1, - anon_sym_LPAREN2, - ACTIONS(9726), 1, - anon_sym___attribute__, - ACTIONS(9730), 1, - sym_method_attribute_specifier, - ACTIONS(9752), 1, - anon_sym_LBRACK, - ACTIONS(9754), 1, - anon_sym_in, - STATE(4289), 1, - sym_parameter_list, - ACTIONS(9732), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4351), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9734), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9736), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [15999] = 5, - ACTIONS(9818), 1, - anon_sym_SEMI, - STATE(5349), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [16050] = 14, - ACTIONS(9230), 1, - anon_sym___attribute, - ACTIONS(9240), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9710), 1, - anon_sym_LBRACK, - ACTIONS(9724), 1, - anon_sym_LPAREN2, - ACTIONS(9726), 1, - anon_sym___attribute__, - ACTIONS(9730), 1, - sym_method_attribute_specifier, - ACTIONS(9754), 1, - anon_sym_in, - STATE(4286), 1, - sym_parameter_list, - ACTIONS(9732), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4332), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9734), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9736), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [16119] = 5, - ACTIONS(9820), 1, - anon_sym_SEMI, - STATE(5556), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [16170] = 5, - ACTIONS(9822), 1, - anon_sym_SEMI, - STATE(5346), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [16221] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9824), 1, - anon_sym_SEMI, - STATE(5873), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [16290] = 5, - ACTIONS(9826), 1, - anon_sym_SEMI, - STATE(5561), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [16341] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9754), 1, - anon_sym_RPAREN, - STATE(4030), 1, - sym_parameter_list, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4333), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [16410] = 5, - ACTIONS(8791), 1, - anon_sym_RPAREN, - STATE(5320), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [16461] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9828), 1, - anon_sym_SEMI, - STATE(5738), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [16530] = 5, - ACTIONS(9830), 1, - anon_sym_SEMI, - STATE(5302), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [16581] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9832), 1, - sym_identifier, - ACTIONS(9834), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5448), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [16648] = 13, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9666), 1, - sym_identifier, - ACTIONS(9670), 1, - anon_sym_enum, - ACTIONS(9674), 1, - anon_sym_struct, - ACTIONS(9676), 1, - anon_sym_union, - STATE(3382), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9672), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9836), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4769), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [16715] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9838), 1, - anon_sym_SEMI, - STATE(5838), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [16784] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9840), 1, - anon_sym_SEMI, - STATE(5806), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [16853] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9842), 1, - sym_identifier, - ACTIONS(9844), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5765), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [16920] = 13, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9666), 1, - sym_identifier, - ACTIONS(9702), 1, - anon_sym_enum, - ACTIONS(9704), 1, - anon_sym_struct, - STATE(4718), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(57), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9698), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9846), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(5041), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [16987] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9848), 1, - sym_identifier, - ACTIONS(9850), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5446), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [17054] = 5, - ACTIONS(9202), 1, - anon_sym_SEMI, - STATE(5299), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [17105] = 13, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9852), 1, - anon_sym_SEMI, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4046), 3, - sym_attribute_specifier, - sym_swift_name_attribute_sepcifier, - aux_sym_enumerator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [17172] = 6, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - STATE(4030), 1, - sym_parameter_list, - ACTIONS(9125), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9123), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - anon_sym_NS_REFINED_FOR_SWIFT, - anon_sym_NS_SWIFT_NAME, - [17225] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9854), 1, - anon_sym_SEMI, - STATE(5867), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [17294] = 5, - ACTIONS(9856), 1, - anon_sym_SEMI, - STATE(5444), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [17345] = 5, - ACTIONS(9858), 1, - anon_sym_RPAREN, - STATE(5514), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [17396] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9710), 1, - anon_sym_LBRACK, - ACTIONS(9754), 1, - anon_sym_RPAREN, - STATE(4286), 1, - sym_parameter_list, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4303), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [17465] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9860), 1, - anon_sym_SEMI, - STATE(5837), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [17534] = 13, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9666), 1, - sym_identifier, - ACTIONS(9670), 1, - anon_sym_enum, - ACTIONS(9674), 1, - anon_sym_struct, - ACTIONS(9676), 1, - anon_sym_union, - STATE(3382), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9672), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9862), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4766), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [17601] = 5, - ACTIONS(9864), 1, - anon_sym_SEMI, - STATE(5387), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [17652] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9866), 1, - sym_identifier, - ACTIONS(9868), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5574), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [17719] = 5, - ACTIONS(9870), 1, anon_sym_SEMI, STATE(5443), 1, sym_type_qualifier, @@ -587280,7 +583685,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8887), 28, + ACTIONS(8860), 28, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -587309,33 +583714,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [17770] = 14, + [21490] = 5, + ACTIONS(9814), 1, + anon_sym_SEMI, + STATE(5797), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [21541] = 5, + ACTIONS(9816), 1, + anon_sym_SEMI, + STATE(5330), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [21592] = 5, + ACTIONS(9818), 1, + anon_sym_SEMI, + STATE(5395), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [21643] = 5, + ACTIONS(9820), 1, + anon_sym_SEMI, + STATE(5798), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [21694] = 14, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_NS_AVAILABLE, - ACTIONS(6890), 1, - anon_sym_ATinterface, - ACTIONS(9177), 1, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9169), 1, anon_sym___attribute__, - ACTIONS(9179), 1, + ACTIONS(9171), 1, sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - STATE(4345), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, + ACTIONS(9746), 1, + anon_sym_LBRACK, + ACTIONS(9768), 1, + anon_sym_RPAREN, + STATE(4282), 1, + sym_parameter_list, + ACTIONS(9173), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4317), 2, + STATE(4349), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, + ACTIONS(9175), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -587348,7 +583937,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, + ACTIONS(9177), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -587364,139 +583953,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [17839] = 13, - ACTIONS(2234), 1, - sym_identifier, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9606), 1, - anon_sym_union, - ACTIONS(9620), 1, - anon_sym_enum, - ACTIONS(9622), 1, - anon_sym_struct, - STATE(3382), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9602), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9608), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(3431), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [17906] = 13, - ACTIONS(2234), 1, - sym_identifier, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9600), 1, - anon_sym_enum, - ACTIONS(9604), 1, - anon_sym_struct, - ACTIONS(9606), 1, - anon_sym_union, - STATE(3382), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9602), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9668), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(3419), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [17973] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9872), 1, - sym_identifier, - ACTIONS(9874), 1, + [21763] = 5, + ACTIONS(9822), 1, anon_sym_SEMI, - STATE(4321), 1, + STATE(5312), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [21814] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9824), 1, + sym_identifier, + ACTIONS(9826), 1, + anon_sym_SEMI, + STATE(4340), 1, sym_parameter_list, - STATE(5243), 1, + STATE(5731), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute, anon_sym___attribute__, - ACTIONS(115), 2, + ACTIONS(113), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - ACTIONS(117), 4, + ACTIONS(115), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -587509,7 +584036,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, + ACTIONS(117), 16, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -587526,87 +584053,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [18040] = 13, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9666), 1, - sym_identifier, - ACTIONS(9702), 1, - anon_sym_enum, - ACTIONS(9704), 1, - anon_sym_struct, - STATE(4718), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(57), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9698), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9876), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(5065), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [18107] = 14, + [21881] = 14, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, + ACTIONS(9169), 1, anon_sym___attribute__, - ACTIONS(9179), 1, + ACTIONS(9171), 1, sym_method_attribute_specifier, - ACTIONS(9187), 1, + ACTIONS(9179), 1, anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, + ACTIONS(9181), 1, anon_sym_NS_SWIFT_NAME, - ACTIONS(9878), 1, + ACTIONS(9828), 1, anon_sym_SEMI, - STATE(5865), 1, + STATE(5589), 1, sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, + ACTIONS(9173), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4018), 2, + STATE(4038), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, + ACTIONS(9175), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -587619,7 +584092,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, + ACTIONS(9177), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -587635,2634 +584108,1035 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [18176] = 13, - ACTIONS(113), 1, + [21950] = 5, + ACTIONS(9830), 1, + anon_sym_SEMI, + STATE(5328), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [22001] = 5, + ACTIONS(9194), 1, + anon_sym_SEMI, + STATE(5307), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [22052] = 5, + ACTIONS(9832), 1, + anon_sym_SEMI, + STATE(5399), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [22103] = 5, + ACTIONS(9834), 1, + anon_sym_SEMI, + STATE(5799), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [22154] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, sym_method_attribute_specifier, - ACTIONS(8793), 1, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9836), 1, + anon_sym_SEMI, + STATE(5514), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [22223] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9838), 1, + anon_sym_SEMI, + STATE(5593), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [22292] = 5, + ACTIONS(9840), 1, + anon_sym_SEMI, + STATE(5809), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [22343] = 5, + ACTIONS(9842), 1, + anon_sym_SEMI, + STATE(5327), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [22394] = 5, + ACTIONS(9844), 1, + anon_sym_SEMI, + STATE(5476), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [22445] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(9616), 1, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9846), 1, + sym_identifier, + ACTIONS(9848), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5319), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [22512] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9850), 1, + anon_sym_SEMI, + STATE(5595), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [22581] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9852), 1, + sym_identifier, + ACTIONS(9854), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5334), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [22648] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9856), 1, + sym_identifier, + ACTIONS(9858), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5290), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [22715] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9860), 1, + sym_identifier, + ACTIONS(9862), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5639), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [22782] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9864), 1, + anon_sym_SEMI, + STATE(5516), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [22851] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9866), 1, + sym_identifier, + ACTIONS(9868), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5640), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [22918] = 5, + ACTIONS(9870), 1, + anon_sym_SEMI, + STATE(5725), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [22969] = 5, + ACTIONS(9872), 1, + anon_sym_RPAREN, + STATE(5402), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [23020] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9876), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5814), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [23087] = 5, + ACTIONS(9878), 1, + anon_sym_SEMI, + STATE(5478), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [23138] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, anon_sym_LBRACK, ACTIONS(9880), 1, sym_identifier, ACTIONS(9882), 1, anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5436), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [18243] = 13, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9666), 1, - sym_identifier, - ACTIONS(9676), 1, - anon_sym_union, - ACTIONS(9884), 1, - anon_sym_enum, - ACTIONS(9886), 1, - anon_sym_struct, - STATE(4718), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9672), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(9698), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9668), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(3419), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [18310] = 13, - ACTIONS(9394), 1, - sym_identifier, - ACTIONS(9398), 1, - anon_sym__Atomic, - ACTIONS(9648), 1, - anon_sym_enum, - ACTIONS(9652), 1, - anon_sym_struct, - ACTIONS(9654), 1, - anon_sym_union, - STATE(4540), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9416), 2, - sym_id, - sym_Class, - ACTIONS(9414), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9650), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(9400), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9888), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4538), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [18377] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9890), 1, - sym_identifier, - ACTIONS(9892), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5693), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [18444] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9894), 1, - sym_identifier, - ACTIONS(9896), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5688), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [18511] = 6, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - STATE(4030), 1, - sym_parameter_list, - ACTIONS(9155), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9153), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - anon_sym_NS_REFINED_FOR_SWIFT, - anon_sym_NS_SWIFT_NAME, - [18564] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9898), 1, - sym_identifier, - ACTIONS(9900), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5790), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [18631] = 13, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9666), 1, - sym_identifier, - ACTIONS(9702), 1, - anon_sym_enum, - ACTIONS(9704), 1, - anon_sym_struct, - STATE(4718), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(57), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9698), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9902), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(5081), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [18698] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9904), 1, - sym_identifier, - ACTIONS(9906), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5271), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [18765] = 13, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9666), 1, - sym_identifier, - ACTIONS(9702), 1, - anon_sym_enum, - ACTIONS(9704), 1, - anon_sym_struct, - STATE(4718), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(57), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9698), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9908), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(5101), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [18832] = 3, - ACTIONS(9716), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9198), 32, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - sym_identifier, - [18879] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9910), 1, - anon_sym_SEMI, - STATE(5832), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [18948] = 6, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - STATE(4030), 1, - sym_parameter_list, - ACTIONS(9139), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9137), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - anon_sym_NS_REFINED_FOR_SWIFT, - anon_sym_NS_SWIFT_NAME, - [19001] = 5, - ACTIONS(9912), 1, - anon_sym_SEMI, - STATE(5521), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [19052] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9914), 1, - anon_sym_SEMI, - STATE(5824), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [19121] = 5, - ACTIONS(9916), 1, - anon_sym_SEMI, - STATE(5520), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [19172] = 5, - ACTIONS(9918), 1, - anon_sym_SEMI, - STATE(5673), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [19223] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(6908), 1, - anon_sym_ATinterface, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - STATE(4311), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4309), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [19292] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9920), 1, - sym_identifier, - ACTIONS(9922), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5434), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [19359] = 5, - ACTIONS(9924), 1, - anon_sym_SEMI, - STATE(5672), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [19410] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9926), 1, - anon_sym_SEMI, - STATE(5862), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [19479] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9928), 1, - anon_sym_SEMI, - STATE(5722), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [19548] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9930), 1, - anon_sym_SEMI, - STATE(5823), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [19617] = 13, - ACTIONS(7682), 1, - sym_identifier, - ACTIONS(8805), 1, - anon_sym_struct, - ACTIONS(8807), 1, - anon_sym_union, - ACTIONS(9592), 1, - anon_sym__Atomic, - ACTIONS(9596), 1, - anon_sym_enum, - STATE(3722), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1163), 2, - sym_id, - sym_Class, - ACTIONS(1161), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(8803), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(7688), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9932), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(3748), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [19684] = 5, - ACTIONS(9934), 1, - anon_sym_SEMI, - STATE(5511), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [19735] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9936), 1, - sym_identifier, - ACTIONS(9938), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5309), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [19802] = 3, - ACTIONS(9200), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9198), 32, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_in, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nullable, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - sym_identifier, - [19849] = 14, - ACTIONS(9230), 1, - anon_sym___attribute, - ACTIONS(9240), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9692), 1, - anon_sym_in, - ACTIONS(9710), 1, - anon_sym_LBRACK, - ACTIONS(9724), 1, - anon_sym_LPAREN2, - ACTIONS(9726), 1, - anon_sym___attribute__, - ACTIONS(9730), 1, - sym_method_attribute_specifier, - STATE(4286), 1, - sym_parameter_list, - ACTIONS(9732), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4323), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9734), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9736), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [19918] = 14, - ACTIONS(9230), 1, - anon_sym___attribute, - ACTIONS(9240), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9692), 1, - anon_sym_in, - ACTIONS(9724), 1, - anon_sym_LPAREN2, - ACTIONS(9726), 1, - anon_sym___attribute__, - ACTIONS(9730), 1, - sym_method_attribute_specifier, - ACTIONS(9752), 1, - anon_sym_LBRACK, - STATE(4289), 1, - sym_parameter_list, - ACTIONS(9732), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4306), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9734), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9736), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [19987] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9940), 1, - anon_sym_SEMI, - STATE(5817), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [20056] = 4, - ACTIONS(9946), 1, - anon_sym___unused, - ACTIONS(9944), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9942), 28, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - anon_sym_NS_REFINED_FOR_SWIFT, - anon_sym_NS_SWIFT_NAME, - [20105] = 13, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9666), 1, - sym_identifier, - ACTIONS(9676), 1, - anon_sym_union, - ACTIONS(9884), 1, - anon_sym_enum, - ACTIONS(9886), 1, - anon_sym_struct, - STATE(4718), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9672), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(9698), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9836), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4769), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [20172] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9948), 1, - sym_identifier, - ACTIONS(9950), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5749), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [20239] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9952), 1, - anon_sym_SEMI, - STATE(5798), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [20308] = 13, - ACTIONS(2234), 1, - sym_identifier, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9606), 1, - anon_sym_union, - ACTIONS(9620), 1, - anon_sym_enum, - ACTIONS(9622), 1, - anon_sym_struct, - STATE(3382), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9602), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9668), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(3419), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [20375] = 5, - ACTIONS(9954), 1, - anon_sym_SEMI, - STATE(5505), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [20426] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9956), 1, - sym_identifier, - ACTIONS(9958), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5265), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [20493] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9960), 1, - sym_identifier, - ACTIONS(9962), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5745), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [20560] = 13, - ACTIONS(7682), 1, - sym_identifier, - ACTIONS(8801), 1, - anon_sym_enum, - ACTIONS(8805), 1, - anon_sym_struct, - ACTIONS(8807), 1, - anon_sym_union, - ACTIONS(9592), 1, - anon_sym__Atomic, - STATE(3961), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1163), 2, - sym_id, - sym_Class, - ACTIONS(1161), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(8803), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(1147), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9932), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(3748), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [20627] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9964), 1, - sym_identifier, - ACTIONS(9966), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5500), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [20694] = 13, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9666), 1, - sym_identifier, - ACTIONS(9702), 1, - anon_sym_enum, - ACTIONS(9704), 1, - anon_sym_struct, - STATE(4718), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(57), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9698), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9968), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(5173), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [20761] = 13, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9666), 1, - sym_identifier, - ACTIONS(9676), 1, - anon_sym_union, - ACTIONS(9884), 1, - anon_sym_enum, - ACTIONS(9886), 1, - anon_sym_struct, - STATE(4718), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9672), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(9698), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9862), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4766), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [20828] = 13, - ACTIONS(61), 1, - anon_sym_union, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9666), 1, - sym_identifier, - ACTIONS(9702), 1, - anon_sym_enum, - ACTIONS(9704), 1, - anon_sym_struct, - STATE(4718), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(57), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9698), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9970), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(5051), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [20895] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9972), 1, - sym_identifier, - ACTIONS(9974), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5425), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [20962] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9976), 1, - sym_identifier, - ACTIONS(9978), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5538), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [21029] = 5, - ACTIONS(9980), 1, - anon_sym_SEMI, - STATE(5421), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [21080] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9982), 1, - sym_identifier, - ACTIONS(9984), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5311), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [21147] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9986), 1, - sym_identifier, - ACTIONS(9988), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5544), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [21214] = 5, - ACTIONS(7903), 1, - anon_sym_CARET, - STATE(5258), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [21265] = 13, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9990), 1, - anon_sym_SEMI, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4149), 3, - sym_attribute_specifier, - sym_swift_name_attribute_sepcifier, - aux_sym_enumerator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [21332] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(9992), 1, - sym_identifier, - ACTIONS(9994), 1, - anon_sym_SEMI, - STATE(4321), 1, + STATE(4340), 1, sym_parameter_list, STATE(5489), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute, anon_sym___attribute__, - ACTIONS(115), 2, + ACTIONS(113), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - ACTIONS(117), 4, + ACTIONS(115), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -590275,7 +585149,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, + ACTIONS(117), 16, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -590292,252 +585166,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [21399] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, + [23205] = 13, + ACTIONS(111), 1, sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9996), 1, - anon_sym_SEMI, - STATE(5758), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [21468] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9710), 1, + ACTIONS(9674), 1, anon_sym_LBRACK, - ACTIONS(9728), 1, - anon_sym_RPAREN, - STATE(4286), 1, - sym_parameter_list, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4340), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [21537] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(6902), 1, - anon_sym_ATinterface, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - STATE(4326), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4312), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [21606] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9754), 1, - anon_sym_RPAREN, - STATE(4030), 1, - sym_parameter_list, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4331), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [21675] = 13, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(9998), 1, + ACTIONS(9884), 1, + sym_identifier, + ACTIONS(9886), 1, anon_sym_SEMI, - ACTIONS(9181), 2, + STATE(4340), 1, + sym_parameter_list, + STATE(5456), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4046), 3, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [23272] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9888), 1, + sym_identifier, + ACTIONS(9890), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5340), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [23339] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9892), 1, + sym_identifier, + ACTIONS(9894), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5817), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [23406] = 13, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9896), 1, + anon_sym_SEMI, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4062), 3, sym_attribute_specifier, sym_swift_name_attribute_sepcifier, aux_sym_enumerator_repeat1, - ACTIONS(9183), 4, + ACTIONS(9175), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -590550,7 +585366,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, + ACTIONS(9177), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -590566,525 +585382,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [21742] = 5, - ACTIONS(10000), 1, - anon_sym_SEMI, - STATE(5418), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [21793] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(10002), 1, - sym_identifier, - ACTIONS(10004), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5676), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [21860] = 5, - ACTIONS(7923), 1, - anon_sym_CARET, - STATE(5852), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [21911] = 5, - ACTIONS(10006), 1, - anon_sym_SEMI, - STATE(5622), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [21962] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(10008), 1, - sym_identifier, - ACTIONS(10010), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5787), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [22029] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(10012), 1, - sym_identifier, - ACTIONS(10014), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5728), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [22096] = 5, - ACTIONS(10016), 1, - anon_sym_SEMI, - STATE(5624), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [22147] = 5, - ACTIONS(10018), 1, - anon_sym_SEMI, - STATE(5416), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [22198] = 5, - ACTIONS(10020), 1, - anon_sym_RPAREN, - STATE(5662), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [22249] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(10022), 1, - sym_identifier, - ACTIONS(10024), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5304), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [22316] = 14, + [23473] = 14, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_NS_AVAILABLE, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9177), 1, + ACTIONS(9169), 1, anon_sym___attribute__, - ACTIONS(9179), 1, + ACTIONS(9171), 1, sym_method_attribute_specifier, - ACTIONS(9710), 1, - anon_sym_LBRACK, - ACTIONS(9754), 1, - anon_sym_RPAREN, - STATE(4286), 1, - sym_parameter_list, - ACTIONS(9181), 2, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9898), 1, + anon_sym_SEMI, + STATE(5518), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4327), 2, + STATE(4038), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, + ACTIONS(9175), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -591097,7 +585421,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, + ACTIONS(9177), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -591113,10 +585437,594 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [22385] = 4, - ACTIONS(10030), 1, + [23542] = 13, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9900), 1, + anon_sym_SEMI, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4201), 3, + sym_attribute_specifier, + sym_swift_name_attribute_sepcifier, + aux_sym_enumerator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [23609] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9902), 1, + anon_sym_SEMI, + STATE(5479), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [23678] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9904), 1, + sym_identifier, + ACTIONS(9906), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5828), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [23745] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9908), 1, + sym_identifier, + ACTIONS(9910), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5311), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [23812] = 6, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + STATE(4052), 1, + sym_parameter_list, + ACTIONS(9100), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9098), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + anon_sym_NS_REFINED_FOR_SWIFT, + anon_sym_NS_SWIFT_NAME, + [23865] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9912), 1, + anon_sym_SEMI, + STATE(5599), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [23934] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9914), 1, + anon_sym_SEMI, + STATE(5519), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [24003] = 13, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9916), 1, + anon_sym_SEMI, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4062), 3, + sym_attribute_specifier, + sym_swift_name_attribute_sepcifier, + aux_sym_enumerator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [24070] = 6, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + STATE(4052), 1, + sym_parameter_list, + ACTIONS(9144), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9142), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + anon_sym_NS_REFINED_FOR_SWIFT, + anon_sym_NS_SWIFT_NAME, + [24123] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9744), 1, + anon_sym_RPAREN, + STATE(4052), 1, + sym_parameter_list, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4339), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [24192] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9918), 1, + sym_identifier, + ACTIONS(9920), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5692), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [24259] = 4, + ACTIONS(9926), 1, anon_sym___unused, - ACTIONS(10028), 4, + ACTIONS(9924), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACE, @@ -591129,7 +586037,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10026), 28, + ACTIONS(9922), 28, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -591158,10 +586066,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_CLASS_DEPRECATED_IOS, anon_sym_NS_REFINED_FOR_SWIFT, anon_sym_NS_SWIFT_NAME, - [22434] = 5, - ACTIONS(10032), 1, + [24308] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9928), 1, + sym_identifier, + ACTIONS(9930), 1, anon_sym_SEMI, - STATE(5635), 1, + STATE(4340), 1, + sym_parameter_list, + STATE(5368), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [24375] = 4, + ACTIONS(9936), 1, + anon_sym___unused, + ACTIONS(9934), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9932), 28, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + anon_sym_NS_REFINED_FOR_SWIFT, + anon_sym_NS_SWIFT_NAME, + [24424] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9938), 1, + sym_identifier, + ACTIONS(9940), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5279), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [24491] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9942), 1, + anon_sym_SEMI, + STATE(5563), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [24560] = 5, + ACTIONS(9944), 1, + anon_sym_SEMI, + STATE(5301), 1, sym_type_qualifier, ACTIONS(47), 3, anon_sym_in, @@ -591175,7 +586291,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8887), 28, + ACTIONS(8860), 28, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -591204,15 +586320,1826 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [22485] = 5, + [24611] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9946), 1, + anon_sym_SEMI, + STATE(5598), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [24680] = 4, + ACTIONS(9952), 1, + anon_sym___unused, + ACTIONS(9950), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9948), 28, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + anon_sym_NS_REFINED_FOR_SWIFT, + anon_sym_NS_SWIFT_NAME, + [24729] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9954), 1, + anon_sym_SEMI, + STATE(5504), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [24798] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(6801), 1, + anon_sym_ATinterface, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + STATE(4357), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4356), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [24867] = 4, + ACTIONS(9960), 1, + anon_sym___unused, + ACTIONS(9958), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9956), 28, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + anon_sym_NS_REFINED_FOR_SWIFT, + anon_sym_NS_SWIFT_NAME, + [24916] = 5, + ACTIONS(7873), 1, + anon_sym_CARET, + STATE(5310), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [24967] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9962), 1, + sym_identifier, + ACTIONS(9964), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5750), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [25034] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9966), 1, + anon_sym_SEMI, + STATE(5483), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [25103] = 6, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + STATE(4052), 1, + sym_parameter_list, + ACTIONS(9138), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9136), 28, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + anon_sym_NS_REFINED_FOR_SWIFT, + anon_sym_NS_SWIFT_NAME, + [25156] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9968), 1, + anon_sym_SEMI, + STATE(5555), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [25225] = 14, + ACTIONS(9220), 1, + anon_sym___attribute, + ACTIONS(9230), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9746), 1, + anon_sym_LBRACK, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + ACTIONS(9776), 1, + anon_sym___attribute__, + ACTIONS(9778), 1, + sym_method_attribute_specifier, + ACTIONS(9970), 1, + anon_sym_in, + STATE(4282), 1, + sym_parameter_list, + ACTIONS(9780), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4327), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9782), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9784), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [25294] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9972), 1, + sym_identifier, + ACTIONS(9974), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5751), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [25361] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9976), 1, + sym_identifier, + ACTIONS(9978), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5650), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [25428] = 3, + ACTIONS(9980), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9190), 32, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + sym_identifier, + [25475] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9982), 1, + anon_sym_SEMI, + STATE(5550), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [25544] = 14, + ACTIONS(9220), 1, + anon_sym___attribute, + ACTIONS(9230), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + ACTIONS(9776), 1, + anon_sym___attribute__, + ACTIONS(9778), 1, + sym_method_attribute_specifier, + ACTIONS(9786), 1, + anon_sym_LBRACK, + ACTIONS(9970), 1, + anon_sym_in, + STATE(4278), 1, + sym_parameter_list, + ACTIONS(9780), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4333), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9782), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9784), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [25613] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9984), 1, + sym_identifier, + ACTIONS(9986), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5415), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [25680] = 5, + ACTIONS(9988), 1, + anon_sym_SEMI, + STATE(5298), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [25731] = 14, + ACTIONS(9220), 1, + anon_sym___attribute, + ACTIONS(9230), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9746), 1, + anon_sym_LBRACK, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + ACTIONS(9776), 1, + anon_sym___attribute__, + ACTIONS(9778), 1, + sym_method_attribute_specifier, + ACTIONS(9970), 1, + anon_sym_in, + STATE(4282), 1, + sym_parameter_list, + ACTIONS(9780), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4367), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9782), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9784), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [25800] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(9990), 1, + sym_identifier, + ACTIONS(9992), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5348), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [25867] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9994), 1, + anon_sym_SEMI, + STATE(5536), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [25936] = 14, + ACTIONS(9220), 1, + anon_sym___attribute, + ACTIONS(9230), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + ACTIONS(9776), 1, + anon_sym___attribute__, + ACTIONS(9778), 1, + sym_method_attribute_specifier, + ACTIONS(9786), 1, + anon_sym_LBRACK, + ACTIONS(9970), 1, + anon_sym_in, + STATE(4278), 1, + sym_parameter_list, + ACTIONS(9780), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4365), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9782), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9784), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [26005] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(9996), 1, + anon_sym_SEMI, + STATE(5495), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [26074] = 5, + ACTIONS(9998), 1, + anon_sym_SEMI, + STATE(5755), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [26125] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(10000), 1, + sym_identifier, + ACTIONS(10002), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5562), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [26192] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(10004), 1, + sym_identifier, + ACTIONS(10006), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5287), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [26259] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(10008), 1, + sym_identifier, + ACTIONS(10010), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5302), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [26326] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(10012), 1, + sym_identifier, + ACTIONS(10014), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5522), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [26393] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(6791), 1, + anon_sym_ATinterface, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + STATE(4364), 1, + sym_swift_name_attribute_sepcifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4345), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [26462] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(10016), 1, + sym_identifier, + ACTIONS(10018), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5521), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [26529] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(10020), 1, + sym_identifier, + ACTIONS(10022), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5297), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [26596] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(10024), 1, + sym_identifier, + ACTIONS(10026), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5648), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [26663] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9746), 1, + anon_sym_LBRACK, + ACTIONS(9970), 1, + anon_sym_RPAREN, + STATE(4282), 1, + sym_parameter_list, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4355), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [26732] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(10028), 1, + sym_identifier, + ACTIONS(10030), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5491), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [26799] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(10032), 1, + sym_identifier, ACTIONS(10034), 1, anon_sym_SEMI, - STATE(5415), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, + STATE(4340), 1, + sym_parameter_list, + STATE(5410), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -591221,139 +588148,246 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [22536] = 5, - ACTIONS(10036), 1, - anon_sym_SEMI, - STATE(5627), 1, - sym_type_qualifier, - ACTIONS(47), 3, - anon_sym_in, - anon_sym__Nullable, - anon_sym___bridge, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8887), 28, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_out, - anon_sym_inout, - anon_sym_bycopy, - anon_sym_byref, - anon_sym_oneway, - anon_sym__Nonnull, - anon_sym__Nullable_result, - anon_sym__Null_unspecified, - anon_sym___autoreleasing, - anon_sym___nullable, - anon_sym___nonnull, - anon_sym___strong, - anon_sym___weak, - anon_sym___bridge_transfer, - anon_sym___bridge_retained, - anon_sym___unsafe_unretained, - anon_sym___block, - anon_sym___kindof, - anon_sym___unused, - anon_sym__Complex, - anon_sym___complex, - anon_sym_IBOutlet, - anon_sym_IBInspectable, - anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [22587] = 13, - ACTIONS(113), 1, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [26866] = 13, + ACTIONS(111), 1, sym_method_attribute_specifier, - ACTIONS(8793), 1, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(9616), 1, + ACTIONS(9674), 1, anon_sym_LBRACK, - ACTIONS(10038), 1, + ACTIONS(10036), 1, sym_identifier, + ACTIONS(10038), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5411), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [26933] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9970), 1, + anon_sym_RPAREN, + STATE(4052), 1, + sym_parameter_list, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4359), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [27002] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9746), 1, + anon_sym_LBRACK, + ACTIONS(9970), 1, + anon_sym_RPAREN, + STATE(4282), 1, + sym_parameter_list, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4360), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [27071] = 14, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9970), 1, + anon_sym_RPAREN, + STATE(4052), 1, + sym_parameter_list, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4361), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [27140] = 5, ACTIONS(10040), 1, anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5379), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [22654] = 5, - ACTIONS(10042), 1, - anon_sym_SEMI, - STATE(5629), 1, + STATE(5412), 1, sym_type_qualifier, ACTIONS(47), 3, anon_sym_in, @@ -591367,7 +588401,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8887), 28, + ACTIONS(8860), 28, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -591396,33 +588430,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [22705] = 14, - ACTIONS(35), 1, + [27191] = 14, + ACTIONS(9220), 1, anon_sym___attribute, - ACTIONS(119), 1, + ACTIONS(9230), 1, anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, + ACTIONS(9744), 1, + anon_sym_in, + ACTIONS(9746), 1, + anon_sym_LBRACK, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + ACTIONS(9776), 1, anon_sym___attribute__, - ACTIONS(9179), 1, + ACTIONS(9778), 1, sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, + STATE(4282), 1, + sym_parameter_list, + ACTIONS(9780), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4348), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9782), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9784), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [27260] = 3, + ACTIONS(9192), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9190), 32, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_in, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nullable, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + sym_identifier, + [27307] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(10042), 1, + sym_identifier, ACTIONS(10044), 1, anon_sym_SEMI, - STATE(5786), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, + STATE(4340), 1, + sym_parameter_list, + STATE(5445), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, + ACTIONS(115), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -591435,7 +588566,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -591451,33 +588583,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [22774] = 14, + [27374] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(10046), 1, + sym_identifier, + ACTIONS(10048), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5611), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [27441] = 5, + ACTIONS(9980), 1, + anon_sym_RPAREN, + STATE(5552), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [27492] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(10050), 1, + sym_identifier, + ACTIONS(10052), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5383), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [27559] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(10054), 1, + sym_identifier, + ACTIONS(10056), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5635), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [27626] = 14, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, + ACTIONS(6768), 1, + anon_sym_ATinterface, + ACTIONS(9169), 1, anon_sym___attribute__, - ACTIONS(9179), 1, + ACTIONS(9171), 1, sym_method_attribute_specifier, - ACTIONS(9187), 1, + ACTIONS(9179), 1, anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, + ACTIONS(9181), 1, anon_sym_NS_SWIFT_NAME, - ACTIONS(10046), 1, - anon_sym_SEMI, - STATE(5784), 1, + STATE(4329), 1, sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, + ACTIONS(9173), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - STATE(4018), 2, + STATE(4346), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, + ACTIONS(9175), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -591490,7 +588830,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, + ACTIONS(9177), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -591506,143 +588846,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [22843] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(10048), 1, - sym_identifier, - ACTIONS(10050), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5643), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [22910] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(10052), 1, - sym_identifier, - ACTIONS(10054), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5336), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [22977] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(10056), 1, - sym_identifier, + [27695] = 5, ACTIONS(10058), 1, anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5401), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, + STATE(5413), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -591651,48 +588863,60 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [23044] = 13, - ACTIONS(113), 1, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [27746] = 13, + ACTIONS(111), 1, sym_method_attribute_specifier, - ACTIONS(8793), 1, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(9616), 1, + ACTIONS(9674), 1, anon_sym_LBRACK, ACTIONS(10060), 1, sym_identifier, ACTIONS(10062), 1, anon_sym_SEMI, - STATE(4321), 1, + STATE(4340), 1, sym_parameter_list, - STATE(5655), 1, + STATE(5420), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute, anon_sym___attribute__, - ACTIONS(115), 2, + ACTIONS(113), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - ACTIONS(117), 4, + ACTIONS(115), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -591705,7 +588929,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, + ACTIONS(117), 16, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -591722,328 +588946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [23111] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, + [27813] = 5, ACTIONS(10064), 1, - sym_identifier, - ACTIONS(10066), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5407), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [23178] = 14, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9187), 1, - anon_sym_NS_REFINED_FOR_SWIFT, - ACTIONS(9189), 1, - anon_sym_NS_SWIFT_NAME, - ACTIONS(10068), 1, - anon_sym_SEMI, - STATE(5783), 1, - sym_swift_name_attribute_sepcifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [23247] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(10070), 1, - sym_identifier, - ACTIONS(10072), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5657), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [23314] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(10074), 1, - sym_identifier, - ACTIONS(10076), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5472), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [23381] = 13, - ACTIONS(2234), 1, - sym_identifier, - ACTIONS(6984), 1, - anon_sym__Atomic, - ACTIONS(9600), 1, - anon_sym_enum, - ACTIONS(9604), 1, - anon_sym_struct, - ACTIONS(9606), 1, - anon_sym_union, - STATE(3382), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9602), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(51), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9816), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(3424), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [23448] = 6, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - STATE(4030), 1, - sym_parameter_list, - ACTIONS(9145), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9143), 28, - anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - anon_sym_NS_REFINED_FOR_SWIFT, - anon_sym_NS_SWIFT_NAME, - [23501] = 5, - ACTIONS(10078), 1, - anon_sym_SEMI, - STATE(5641), 1, + STATE(5574), 1, sym_type_qualifier, ACTIONS(47), 3, anon_sym_in, @@ -592057,7 +588963,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8887), 28, + ACTIONS(8860), 28, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -592086,35 +588992,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_IBOutlet, anon_sym_IBInspectable, anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, - [23552] = 13, - ACTIONS(113), 1, + [27864] = 13, + ACTIONS(111), 1, sym_method_attribute_specifier, - ACTIONS(8793), 1, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(9616), 1, + ACTIONS(9674), 1, anon_sym_LBRACK, + ACTIONS(10066), 1, + sym_identifier, + ACTIONS(10068), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5714), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [27931] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(10070), 1, + sym_identifier, + ACTIONS(10072), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5282), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [27998] = 13, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + ACTIONS(10074), 1, + sym_identifier, + ACTIONS(10076), 1, + anon_sym_SEMI, + STATE(4340), 1, + sym_parameter_list, + STATE(5417), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [28065] = 13, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9179), 1, + anon_sym_NS_REFINED_FOR_SWIFT, + ACTIONS(9181), 1, + anon_sym_NS_SWIFT_NAME, + ACTIONS(10078), 1, + anon_sym_SEMI, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4210), 3, + sym_attribute_specifier, + sym_swift_name_attribute_sepcifier, + aux_sym_enumerator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [28132] = 5, ACTIONS(10080), 1, - sym_identifier, - ACTIONS(10082), 1, anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5549), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, + STATE(5756), 1, + sym_type_qualifier, + ACTIONS(47), 3, + anon_sym_in, + anon_sym__Nullable, + anon_sym___bridge, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -592123,187 +589225,37 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [23619] = 13, - ACTIONS(6984), 1, + ACTIONS(8860), 28, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, anon_sym__Atomic, - ACTIONS(9666), 1, - sym_identifier, - ACTIONS(9676), 1, - anon_sym_union, - ACTIONS(9884), 1, - anon_sym_enum, - ACTIONS(9886), 1, - anon_sym_struct, - STATE(4718), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(131), 2, - sym_id, - sym_Class, - ACTIONS(127), 3, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - ACTIONS(9672), 3, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - ACTIONS(9698), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9608), 6, - sym_primitive_type, - sym_instancetype, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(3431), 9, - sym__type_specifier, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - sym_typeof_specifier, - sym_atomic_specifier, - sym_generic_type_specifier, - [23686] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(10084), 1, - sym_identifier, - ACTIONS(10086), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5678), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [23753] = 13, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(10088), 1, - sym_identifier, - ACTIONS(10090), 1, - anon_sym_SEMI, - STATE(4321), 1, - sym_parameter_list, - STATE(5739), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [23820] = 3, - ACTIONS(10094), 2, + anon_sym_out, + anon_sym_inout, + anon_sym_bycopy, + anon_sym_byref, + anon_sym_oneway, + anon_sym__Nonnull, + anon_sym__Nullable_result, + anon_sym__Null_unspecified, + anon_sym___autoreleasing, + anon_sym___nullable, + anon_sym___nonnull, + anon_sym___strong, + anon_sym___weak, + anon_sym___bridge_transfer, + anon_sym___bridge_retained, + anon_sym___unsafe_unretained, + anon_sym___block, + anon_sym___kindof, + anon_sym___unused, + anon_sym__Complex, + anon_sym___complex, + anon_sym_IBOutlet, + anon_sym_IBInspectable, + anon_sym_NS_VALID_UNTIL_END_OF_SCOPE, + [28183] = 3, + ACTIONS(10084), 2, anon_sym___attribute, anon_sym_NS_AVAILABLE, ACTIONS(3), 7, @@ -592314,7 +589266,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10092), 30, + ACTIONS(10082), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -592345,14 +589297,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [23866] = 6, - ACTIONS(8793), 1, + [28229] = 12, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8888), 1, + anon_sym_LBRACE, + ACTIONS(10086), 1, + sym_identifier, + ACTIONS(10088), 1, + anon_sym_ATdefs, + STATE(3793), 1, + sym_field_declaration_list, + STATE(4846), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [28293] = 11, + ACTIONS(10090), 1, + anon_sym___attribute, + ACTIONS(10093), 1, + anon_sym___attribute__, + ACTIONS(10096), 1, + sym_method_attribute_specifier, + ACTIONS(10105), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(10099), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4313), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9002), 3, anon_sym_LPAREN2, - ACTIONS(9710), 1, anon_sym_LBRACK, - STATE(4286), 1, + anon_sym_in, + ACTIONS(10102), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10108), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [28355] = 6, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9746), 1, + anon_sym_LBRACK, + STATE(4282), 1, sym_parameter_list, - ACTIONS(10098), 2, + ACTIONS(10113), 2, anon_sym___attribute, anon_sym_NS_AVAILABLE, ACTIONS(3), 7, @@ -592363,7 +589418,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10096), 27, + ACTIONS(10111), 27, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_GT, @@ -592391,29 +589446,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [23918] = 12, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8123), 1, + [28407] = 6, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9746), 1, + anon_sym_LBRACK, + STATE(4282), 1, + sym_parameter_list, + ACTIONS(10117), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10115), 27, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym___attribute__, anon_sym_LBRACE, - ACTIONS(10100), 1, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [28459] = 3, + ACTIONS(10121), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10119), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [28505] = 3, + ACTIONS(10125), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10123), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [28551] = 3, + ACTIONS(10129), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10127), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [28597] = 12, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, sym_identifier, - ACTIONS(10102), 1, + ACTIONS(10133), 1, anon_sym_ATdefs, - STATE(3543), 1, + STATE(3462), 1, sym_field_declaration_list, - STATE(4854), 1, + STATE(4895), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute, anon_sym___attribute__, - ACTIONS(115), 2, + ACTIONS(113), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - ACTIONS(117), 4, + ACTIONS(115), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -592426,7 +589656,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, + ACTIONS(117), 16, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -592443,29 +589673,427 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [23982] = 12, - ACTIONS(113), 1, + [28661] = 12, + ACTIONS(111), 1, sym_method_attribute_specifier, - ACTIONS(8847), 1, + ACTIONS(8888), 1, anon_sym_LBRACE, - ACTIONS(10104), 1, - sym_identifier, - ACTIONS(10106), 1, + ACTIONS(10088), 1, anon_sym_ATdefs, - STATE(3798), 1, + ACTIONS(10135), 1, + sym_identifier, + STATE(3793), 1, + sym_field_declaration_list, + STATE(4874), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [28725] = 12, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(10133), 1, + anon_sym_ATdefs, + ACTIONS(10137), 1, + sym_identifier, + STATE(3462), 1, + sym_field_declaration_list, + STATE(4863), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [28789] = 3, + ACTIONS(10141), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10139), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [28835] = 12, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(10133), 1, + anon_sym_ATdefs, + ACTIONS(10143), 1, + sym_identifier, + STATE(3462), 1, + sym_field_declaration_list, + STATE(4892), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [28899] = 12, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(10133), 1, + anon_sym_ATdefs, + ACTIONS(10145), 1, + sym_identifier, + STATE(3462), 1, + sym_field_declaration_list, + STATE(4896), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [28963] = 12, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(10133), 1, + anon_sym_ATdefs, + ACTIONS(10147), 1, + sym_identifier, + STATE(3462), 1, + sym_field_declaration_list, + STATE(4839), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [29027] = 12, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(10133), 1, + anon_sym_ATdefs, + ACTIONS(10149), 1, + sym_identifier, + STATE(3462), 1, + sym_field_declaration_list, + STATE(4834), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [29091] = 3, + ACTIONS(10153), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10151), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [29137] = 12, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(10155), 1, + sym_identifier, + ACTIONS(10157), 1, + anon_sym_LBRACE, + ACTIONS(10159), 1, + anon_sym_ATdefs, + STATE(4593), 1, sym_field_declaration_list, STATE(4847), 1, sym_attribute_specifier, ACTIONS(35), 2, anon_sym___attribute, anon_sym___attribute__, - ACTIONS(115), 2, + ACTIONS(113), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - ACTIONS(117), 4, + ACTIONS(115), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -592478,7 +590106,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, + ACTIONS(117), 16, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -592495,8 +590123,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [24046] = 3, - ACTIONS(10110), 4, + [29201] = 12, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(10133), 1, + anon_sym_ATdefs, + ACTIONS(10161), 1, + sym_identifier, + STATE(3462), 1, + sym_field_declaration_list, + STATE(4851), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [29265] = 12, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(10157), 1, + anon_sym_LBRACE, + ACTIONS(10159), 1, + anon_sym_ATdefs, + ACTIONS(10163), 1, + sym_identifier, + STATE(4593), 1, + sym_field_declaration_list, + STATE(4860), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [29329] = 3, + ACTIONS(10167), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10165), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [29375] = 3, + ACTIONS(10171), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10169), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [29421] = 3, + ACTIONS(10175), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACE, @@ -592509,7 +590327,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10108), 28, + ACTIONS(10173), 28, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -592538,8 +590356,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_CLASS_DEPRECATED_IOS, anon_sym_NS_REFINED_FOR_SWIFT, anon_sym_NS_SWIFT_NAME, - [24092] = 3, - ACTIONS(10114), 4, + [29467] = 11, + ACTIONS(10177), 1, + anon_sym___attribute, + ACTIONS(10180), 1, + anon_sym___attribute__, + ACTIONS(10183), 1, + sym_method_attribute_specifier, + ACTIONS(10192), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(10186), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4299), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(8972), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_in, + ACTIONS(10189), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10195), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [29529] = 3, + ACTIONS(10200), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10198), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [29575] = 12, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(10133), 1, + anon_sym_ATdefs, + ACTIONS(10202), 1, + sym_identifier, + STATE(3462), 1, + sym_field_declaration_list, + STATE(4855), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [29639] = 3, + ACTIONS(10206), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10204), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [29685] = 3, + ACTIONS(10210), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACE, @@ -592552,7 +590559,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10112), 28, + ACTIONS(10208), 28, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -592581,8 +590588,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_CLASS_DEPRECATED_IOS, anon_sym_NS_REFINED_FOR_SWIFT, anon_sym_NS_SWIFT_NAME, - [24138] = 3, - ACTIONS(10118), 2, + [29731] = 3, + ACTIONS(10214), 2, anon_sym___attribute, anon_sym_NS_AVAILABLE, ACTIONS(3), 7, @@ -592593,7 +590600,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10116), 30, + ACTIONS(10212), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -592624,284 +590631,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [24184] = 3, - ACTIONS(10122), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10120), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_GT, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [24230] = 12, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8123), 1, - anon_sym_LBRACE, - ACTIONS(10102), 1, - anon_sym_ATdefs, - ACTIONS(10124), 1, - sym_identifier, - STATE(3543), 1, - sym_field_declaration_list, - STATE(4866), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [24294] = 12, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8847), 1, - anon_sym_LBRACE, - ACTIONS(10106), 1, - anon_sym_ATdefs, - ACTIONS(10126), 1, - sym_identifier, - STATE(3798), 1, - sym_field_declaration_list, - STATE(4824), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [24358] = 3, - ACTIONS(10130), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10128), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_GT, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [24404] = 3, - ACTIONS(10134), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10132), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_GT, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [24450] = 3, - ACTIONS(10138), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10136), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_GT, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [24496] = 3, - ACTIONS(10142), 4, + [29777] = 3, + ACTIONS(10218), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACE, @@ -592914,7 +590645,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10140), 28, + ACTIONS(10216), 28, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -592943,33 +590674,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_CLASS_DEPRECATED_IOS, anon_sym_NS_REFINED_FOR_SWIFT, anon_sym_NS_SWIFT_NAME, - [24542] = 12, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(10144), 1, - sym_identifier, - ACTIONS(10146), 1, + [29823] = 3, + ACTIONS(10222), 4, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(10148), 1, - anon_sym_ATdefs, - STATE(4571), 1, - sym_field_declaration_list, - STATE(4870), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_COLON, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -592978,7 +590688,17 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(119), 16, + ACTIONS(10220), 28, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, anon_sym_NS_AVAILABLE, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, @@ -592995,216 +590715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [24606] = 12, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(10146), 1, - anon_sym_LBRACE, - ACTIONS(10148), 1, - anon_sym_ATdefs, - ACTIONS(10150), 1, - sym_identifier, - STATE(4571), 1, - sym_field_declaration_list, - STATE(4869), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [24670] = 12, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8123), 1, - anon_sym_LBRACE, - ACTIONS(10102), 1, - anon_sym_ATdefs, - ACTIONS(10152), 1, - sym_identifier, - STATE(3543), 1, - sym_field_declaration_list, - STATE(4813), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [24734] = 12, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8123), 1, - anon_sym_LBRACE, - ACTIONS(10102), 1, - anon_sym_ATdefs, - ACTIONS(10154), 1, - sym_identifier, - STATE(3543), 1, - sym_field_declaration_list, - STATE(4859), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [24798] = 12, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8123), 1, - anon_sym_LBRACE, - ACTIONS(10102), 1, - anon_sym_ATdefs, - ACTIONS(10156), 1, - sym_identifier, - STATE(3543), 1, - sym_field_declaration_list, - STATE(4867), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [24862] = 3, - ACTIONS(10160), 2, + anon_sym_NS_REFINED_FOR_SWIFT, + anon_sym_NS_SWIFT_NAME, + [29869] = 3, + ACTIONS(10226), 2, anon_sym___attribute, anon_sym_NS_AVAILABLE, ACTIONS(3), 7, @@ -593215,7 +590729,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10158), 30, + ACTIONS(10224), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -593246,14 +590760,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [24908] = 6, - ACTIONS(8793), 1, + [29915] = 3, + ACTIONS(10230), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10228), 30, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8883), 1, + anon_sym_GT, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4030), 1, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [29961] = 6, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + STATE(4052), 1, sym_parameter_list, - ACTIONS(10164), 2, + ACTIONS(10234), 2, anon_sym___attribute, anon_sym_NS_AVAILABLE, ACTIONS(3), 7, @@ -593264,7 +590821,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10162), 27, + ACTIONS(10232), 27, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -593292,8 +590849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_CLASS_DEPRECATED_IOS, anon_sym_NS_REFINED_FOR_SWIFT, anon_sym_NS_SWIFT_NAME, - [24960] = 3, - ACTIONS(10168), 2, + [30013] = 3, + ACTIONS(10238), 2, anon_sym___attribute, anon_sym_NS_AVAILABLE, ACTIONS(3), 7, @@ -593304,7 +590861,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10166), 30, + ACTIONS(10236), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -593335,111 +590892,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [25006] = 12, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8123), 1, - anon_sym_LBRACE, - ACTIONS(10102), 1, - anon_sym_ATdefs, - ACTIONS(10170), 1, - sym_identifier, - STATE(3543), 1, - sym_field_declaration_list, - STATE(4868), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [25070] = 11, - ACTIONS(10172), 1, - anon_sym___attribute, - ACTIONS(10175), 1, - anon_sym___attribute__, - ACTIONS(10178), 1, - sym_method_attribute_specifier, - ACTIONS(10187), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(10181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4279), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(8985), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_in, - ACTIONS(10184), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10190), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [25132] = 3, - ACTIONS(10195), 2, + [30059] = 3, + ACTIONS(10242), 2, anon_sym___attribute, anon_sym_NS_AVAILABLE, ACTIONS(3), 7, @@ -593450,7 +590904,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10193), 30, + ACTIONS(10240), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -593481,416 +590935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [25178] = 3, - ACTIONS(10199), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10197), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_GT, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [25224] = 6, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9710), 1, - anon_sym_LBRACK, - STATE(4286), 1, - sym_parameter_list, - ACTIONS(10203), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10201), 27, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym___attribute__, - anon_sym_LBRACE, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [25276] = 12, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8123), 1, - anon_sym_LBRACE, - ACTIONS(10102), 1, - anon_sym_ATdefs, - ACTIONS(10205), 1, - sym_identifier, - STATE(3543), 1, - sym_field_declaration_list, - STATE(4837), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [25340] = 3, - ACTIONS(10209), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10207), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_GT, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [25386] = 5, - ACTIONS(9037), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - STATE(4279), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9035), 26, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [25436] = 3, - ACTIONS(10213), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10211), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_GT, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [25482] = 3, - ACTIONS(10217), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10215), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_GT, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [25528] = 3, - ACTIONS(10221), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10219), 28, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - anon_sym_NS_REFINED_FOR_SWIFT, - anon_sym_NS_SWIFT_NAME, - [25574] = 11, - ACTIONS(10223), 1, - anon_sym___attribute, - ACTIONS(10226), 1, - anon_sym___attribute__, - ACTIONS(10229), 1, - sym_method_attribute_specifier, - ACTIONS(10238), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(10232), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4285), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9010), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_in, - ACTIONS(10235), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10241), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [25636] = 3, + [30105] = 3, ACTIONS(10246), 2, anon_sym___attribute, anon_sym_NS_AVAILABLE, @@ -593933,10 +590978,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [25682] = 3, - ACTIONS(10250), 2, + [30151] = 5, + ACTIONS(9029), 2, anon_sym___attribute, anon_sym_NS_AVAILABLE, + STATE(4299), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -593945,13 +590996,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10248), 30, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9027), 26, anon_sym_LPAREN2, - anon_sym_GT, anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_in, sym_method_attribute_specifier, @@ -593976,352 +591023,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [25728] = 3, - ACTIONS(10254), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10252), 30, - anon_sym_COMMA, - anon_sym_RPAREN, + [30201] = 22, + ACTIONS(6954), 1, anon_sym_LPAREN2, - anon_sym_GT, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(6956), 1, anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [25774] = 12, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(8123), 1, - anon_sym_LBRACE, - ACTIONS(10102), 1, - anon_sym_ATdefs, - ACTIONS(10256), 1, - sym_identifier, - STATE(3543), 1, - sym_field_declaration_list, - STATE(4821), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [25838] = 20, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10258), 5, + ACTIONS(10250), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COLON, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [25917] = 13, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(8881), 1, - anon_sym_LBRACE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10260), 1, - anon_sym_SEMI, - STATE(3017), 1, - sym_compound_statement, - STATE(5023), 1, - sym_attribute_specifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [25982] = 6, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - STATE(4321), 1, - sym_parameter_list, - ACTIONS(10264), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10262), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [26033] = 6, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - STATE(4321), 1, - sym_parameter_list, - ACTIONS(10268), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10266), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [26084] = 22, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10272), 1, - anon_sym_COMMA, - STATE(3088), 1, + STATE(3012), 1, sym_argument_list, - STATE(4805), 1, + STATE(4831), 1, aux_sym_argument_list_repeat1, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10270), 3, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10248), 3, anon_sym_RBRACK, anon_sym_COLON, sym_identifier, @@ -594333,101 +591084,56 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [26167] = 6, - ACTIONS(8793), 1, + [30284] = 22, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(9616), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - STATE(4321), 1, - sym_parameter_list, - ACTIONS(10276), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10274), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [26218] = 22, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - ACTIONS(10272), 1, + ACTIONS(10250), 1, anon_sym_COMMA, - STATE(3088), 1, + STATE(3012), 1, sym_argument_list, - STATE(4805), 1, + STATE(4831), 1, aux_sym_argument_list_repeat1, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10270), 3, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10248), 3, anon_sym_RBRACK, anon_sym_COLON, sym_identifier, @@ -594439,30 +591145,30 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [26301] = 13, + [30367] = 13, ACTIONS(35), 1, anon_sym___attribute, - ACTIONS(119), 1, + ACTIONS(117), 1, anon_sym_NS_AVAILABLE, - ACTIONS(8881), 1, + ACTIONS(8874), 1, anon_sym_LBRACE, - ACTIONS(9177), 1, + ACTIONS(9169), 1, anon_sym___attribute__, - ACTIONS(9179), 1, + ACTIONS(9171), 1, sym_method_attribute_specifier, - ACTIONS(10278), 1, + ACTIONS(10252), 1, anon_sym_SEMI, - STATE(3014), 1, + STATE(2963), 1, sym_compound_statement, - STATE(4889), 1, + STATE(4978), 1, sym_attribute_specifier, - ACTIONS(9181), 2, + ACTIONS(9173), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, + STATE(3041), 2, sym_method_variadic_arguments_attribute_specifier, sym_availability_attribute_specifier, - ACTIONS(9183), 4, + ACTIONS(9175), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, @@ -594475,7 +591181,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9185), 15, + ACTIONS(9177), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -594491,1989 +591197,393 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [26366] = 6, - ACTIONS(8793), 1, + [30432] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(9616), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - STATE(4321), 1, - sym_parameter_list, - ACTIONS(10282), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10280), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [26417] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10284), 1, - anon_sym_RPAREN, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [26477] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(6902), 1, - anon_sym_ATinterface, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [26537] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10286), 1, - anon_sym_ATinterface, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [26597] = 11, - ACTIONS(9230), 1, - anon_sym___attribute, - ACTIONS(9240), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9726), 1, - anon_sym___attribute__, - ACTIONS(9730), 1, - sym_method_attribute_specifier, - ACTIONS(10288), 1, - anon_sym_in, - ACTIONS(9732), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4279), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9734), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9736), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [26657] = 11, - ACTIONS(9230), 1, - anon_sym___attribute, - ACTIONS(9240), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9726), 1, - anon_sym___attribute__, - ACTIONS(9730), 1, - sym_method_attribute_specifier, - ACTIONS(10290), 1, - anon_sym_in, - ACTIONS(9732), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4279), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9734), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9736), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [26717] = 11, - ACTIONS(9230), 1, - anon_sym___attribute, - ACTIONS(9240), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9726), 1, - anon_sym___attribute__, - ACTIONS(9730), 1, - sym_method_attribute_specifier, - ACTIONS(10290), 1, - anon_sym_in, - ACTIONS(9732), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4279), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9734), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9736), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [26777] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10292), 1, - anon_sym_ATinterface, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [26837] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10294), 1, - anon_sym_ATinterface, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [26897] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10292), 1, - anon_sym_ATinterface, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4305), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [26957] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10296), 1, - anon_sym_ATinterface, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [27017] = 6, - ACTIONS(10298), 1, - anon_sym_LPAREN2, - ACTIONS(10300), 1, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, anon_sym_LT, - ACTIONS(8053), 2, - anon_sym_LBRACE, - anon_sym_COLON, - STATE(4411), 3, - sym_protocol_qualifiers, - sym_generic_type_references, - aux_sym_generic_type_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(6841), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [27067] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10302), 1, - anon_sym_RPAREN, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [27127] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10290), 1, - anon_sym_RPAREN, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [27187] = 3, - ACTIONS(10306), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10304), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [27231] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10308), 1, - anon_sym_ATinterface, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [27291] = 3, - ACTIONS(10312), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10310), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [27335] = 3, - ACTIONS(10316), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10314), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [27379] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10290), 1, - anon_sym_RPAREN, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [27439] = 3, - ACTIONS(10320), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10318), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [27483] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10288), 1, - anon_sym_RPAREN, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [27543] = 11, - ACTIONS(9230), 1, - anon_sym___attribute, - ACTIONS(9240), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9726), 1, - anon_sym___attribute__, - ACTIONS(9730), 1, - sym_method_attribute_specifier, - ACTIONS(10288), 1, - anon_sym_in, - ACTIONS(9732), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4279), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9734), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9736), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [27603] = 10, - ACTIONS(113), 1, - sym_method_attribute_specifier, - ACTIONS(10322), 1, - sym_identifier, - ACTIONS(10324), 1, - anon_sym_COLON, - STATE(5167), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute, - anon_sym___attribute__, - ACTIONS(115), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(117), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(119), 16, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [27661] = 3, - ACTIONS(10328), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10326), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [27705] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10296), 1, - anon_sym_ATinterface, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4310), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [27765] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10284), 1, - anon_sym_RPAREN, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [27825] = 4, - ACTIONS(10334), 1, - anon_sym_COLON, - ACTIONS(10332), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10330), 27, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - anon_sym_NS_REFINED_FOR_SWIFT, - anon_sym_NS_SWIFT_NAME, - [27871] = 3, - ACTIONS(10338), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10336), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [27915] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10288), 1, - anon_sym_RPAREN, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [27975] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10284), 1, - anon_sym_RPAREN, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [28035] = 11, - ACTIONS(9230), 1, - anon_sym___attribute, - ACTIONS(9240), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9726), 1, - anon_sym___attribute__, - ACTIONS(9730), 1, - sym_method_attribute_specifier, - ACTIONS(10284), 1, - anon_sym_in, - ACTIONS(9732), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4279), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9734), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9736), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [28095] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10284), 1, - anon_sym_RPAREN, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [28155] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10340), 1, - anon_sym_RPAREN, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [28215] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(6890), 1, - anon_sym_ATinterface, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [28275] = 11, - ACTIONS(9230), 1, - anon_sym___attribute, - ACTIONS(9240), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9726), 1, - anon_sym___attribute__, - ACTIONS(9730), 1, - sym_method_attribute_specifier, - ACTIONS(10340), 1, - anon_sym_in, - ACTIONS(9732), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4279), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9734), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9736), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [28335] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10342), 1, - anon_sym_RPAREN, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [28395] = 3, - ACTIONS(10346), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10344), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [28439] = 11, - ACTIONS(9230), 1, - anon_sym___attribute, - ACTIONS(9240), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9726), 1, - anon_sym___attribute__, - ACTIONS(9730), 1, - sym_method_attribute_specifier, - ACTIONS(10342), 1, - anon_sym_in, - ACTIONS(9732), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4279), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9734), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9736), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [28499] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10342), 1, - anon_sym_RPAREN, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [28559] = 3, - ACTIONS(10350), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10348), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [28603] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10352), 1, - anon_sym_ATinterface, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [28663] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(6908), 1, - anon_sym_ATinterface, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4018), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [28723] = 5, - ACTIONS(10354), 1, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10254), 5, anon_sym_COMMA, - STATE(4344), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COLON, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [30511] = 6, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + STATE(4340), 1, + sym_parameter_list, + ACTIONS(10258), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10256), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [30562] = 6, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + STATE(4340), 1, + sym_parameter_list, + ACTIONS(10262), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10260), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [30613] = 6, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + STATE(4340), 1, + sym_parameter_list, + ACTIONS(10266), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10264), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [30664] = 13, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(8874), 1, + anon_sym_LBRACE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10268), 1, + anon_sym_SEMI, + STATE(2961), 1, + sym_compound_statement, + STATE(5015), 1, + sym_attribute_specifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [30729] = 6, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9674), 1, + anon_sym_LBRACK, + STATE(4340), 1, + sym_parameter_list, + ACTIONS(10272), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10270), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [30780] = 11, + ACTIONS(9220), 1, + anon_sym___attribute, + ACTIONS(9230), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9776), 1, + anon_sym___attribute__, + ACTIONS(9778), 1, + sym_method_attribute_specifier, + ACTIONS(10274), 1, + anon_sym_in, + ACTIONS(9780), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4299), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9782), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9784), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [30840] = 3, + ACTIONS(10278), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10276), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [30884] = 5, + ACTIONS(10280), 1, + anon_sym_COMMA, + STATE(4325), 1, aux_sym_property_declaration_repeat1, - ACTIONS(10359), 2, + ACTIONS(10285), 2, anon_sym___attribute, anon_sym_NS_AVAILABLE, ACTIONS(3), 7, @@ -596484,7 +591594,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10357), 26, + ACTIONS(10283), 26, anon_sym_SEMI, anon_sym___attribute__, sym_method_attribute_specifier, @@ -596511,347 +591621,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_CLASS_DEPRECATED_IOS, anon_sym_NS_REFINED_FOR_SWIFT, anon_sym_NS_SWIFT_NAME, - [28771] = 11, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(119), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9177), 1, - anon_sym___attribute__, - ACTIONS(9179), 1, - sym_method_attribute_specifier, - ACTIONS(10308), 1, - anon_sym_ATinterface, - ACTIONS(9181), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(3098), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - STATE(4342), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(9183), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9185), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [28831] = 11, - ACTIONS(9230), 1, - anon_sym___attribute, - ACTIONS(9240), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9726), 1, - anon_sym___attribute__, - ACTIONS(9730), 1, - sym_method_attribute_specifier, - ACTIONS(10302), 1, - anon_sym_in, - ACTIONS(9732), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4279), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9734), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9736), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [28891] = 11, - ACTIONS(9230), 1, - anon_sym___attribute, - ACTIONS(9240), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9726), 1, - anon_sym___attribute__, - ACTIONS(9730), 1, - sym_method_attribute_specifier, - ACTIONS(10284), 1, - anon_sym_in, - ACTIONS(9732), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4279), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9734), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9736), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [28951] = 11, - ACTIONS(9230), 1, - anon_sym___attribute, - ACTIONS(9240), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9726), 1, - anon_sym___attribute__, - ACTIONS(9730), 1, - sym_method_attribute_specifier, - ACTIONS(10342), 1, - anon_sym_in, - ACTIONS(9732), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4279), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9734), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9736), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [29011] = 4, - ACTIONS(10361), 1, - anon_sym_COMMA, - ACTIONS(10365), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10363), 27, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - anon_sym_NS_REFINED_FOR_SWIFT, - anon_sym_NS_SWIFT_NAME, - [29057] = 11, - ACTIONS(9230), 1, - anon_sym___attribute, - ACTIONS(9240), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9726), 1, - anon_sym___attribute__, - ACTIONS(9730), 1, - sym_method_attribute_specifier, - ACTIONS(10284), 1, - anon_sym_in, - ACTIONS(9732), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4279), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9734), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9736), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [29117] = 11, - ACTIONS(9230), 1, - anon_sym___attribute, - ACTIONS(9240), 1, - anon_sym_NS_AVAILABLE, - ACTIONS(9726), 1, - anon_sym___attribute__, - ACTIONS(9730), 1, - sym_method_attribute_specifier, - ACTIONS(10284), 1, - anon_sym_in, - ACTIONS(9732), 2, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - STATE(4279), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(4431), 2, - sym_method_variadic_arguments_attribute_specifier, - sym_availability_attribute_specifier, - ACTIONS(9734), 4, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9736), 15, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [29177] = 4, - ACTIONS(10367), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, + [30932] = 3, + ACTIONS(10289), 4, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK, ACTIONS(3), 7, sym_comment, @@ -596861,7 +591635,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -596888,13 +591662,1193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [29222] = 5, - ACTIONS(10369), 1, + [30976] = 11, + ACTIONS(9220), 1, + anon_sym___attribute, + ACTIONS(9230), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9776), 1, + anon_sym___attribute__, + ACTIONS(9778), 1, + sym_method_attribute_specifier, + ACTIONS(10291), 1, + anon_sym_in, + ACTIONS(9780), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4299), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9782), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9784), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [31036] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(6801), 1, + anon_sym_ATinterface, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [31096] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10293), 1, + anon_sym_ATinterface, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4369), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [31156] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(6791), 1, + anon_sym_ATinterface, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [31216] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10295), 1, + anon_sym_RPAREN, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [31276] = 4, + ACTIONS(10297), 1, + anon_sym_COMMA, + ACTIONS(10301), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10299), 27, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + anon_sym_NS_REFINED_FOR_SWIFT, + anon_sym_NS_SWIFT_NAME, + [31322] = 11, + ACTIONS(9220), 1, + anon_sym___attribute, + ACTIONS(9230), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9776), 1, + anon_sym___attribute__, + ACTIONS(9778), 1, + sym_method_attribute_specifier, + ACTIONS(10291), 1, + anon_sym_in, + ACTIONS(9780), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4299), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9782), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9784), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [31382] = 10, + ACTIONS(111), 1, + sym_method_attribute_specifier, + ACTIONS(10303), 1, + sym_identifier, + ACTIONS(10305), 1, + anon_sym_COLON, + STATE(5233), 1, + sym_attribute_specifier, + ACTIONS(35), 2, + anon_sym___attribute, + anon_sym___attribute__, + ACTIONS(113), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(115), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(117), 16, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [31440] = 3, + ACTIONS(10309), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10307), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [31484] = 3, + ACTIONS(10313), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10311), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [31528] = 11, + ACTIONS(9220), 1, + anon_sym___attribute, + ACTIONS(9230), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9776), 1, + anon_sym___attribute__, + ACTIONS(9778), 1, + sym_method_attribute_specifier, + ACTIONS(10315), 1, + anon_sym_in, + ACTIONS(9780), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4299), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9782), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9784), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [31588] = 4, + ACTIONS(10321), 1, + anon_sym_COLON, + ACTIONS(10319), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10317), 27, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + anon_sym_NS_REFINED_FOR_SWIFT, + anon_sym_NS_SWIFT_NAME, + [31634] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10295), 1, + anon_sym_RPAREN, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [31694] = 3, + ACTIONS(10325), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10323), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [31738] = 11, + ACTIONS(9220), 1, + anon_sym___attribute, + ACTIONS(9230), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9776), 1, + anon_sym___attribute__, + ACTIONS(9778), 1, + sym_method_attribute_specifier, + ACTIONS(10327), 1, + anon_sym_in, + ACTIONS(9780), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4299), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9782), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9784), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [31798] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(6768), 1, + anon_sym_ATinterface, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [31858] = 11, + ACTIONS(9220), 1, + anon_sym___attribute, + ACTIONS(9230), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9776), 1, + anon_sym___attribute__, + ACTIONS(9778), 1, + sym_method_attribute_specifier, + ACTIONS(10274), 1, + anon_sym_in, + ACTIONS(9780), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4299), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9782), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9784), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [31918] = 11, + ACTIONS(9220), 1, + anon_sym___attribute, + ACTIONS(9230), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9776), 1, + anon_sym___attribute__, + ACTIONS(9778), 1, + sym_method_attribute_specifier, + ACTIONS(10295), 1, + anon_sym_in, + ACTIONS(9780), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4299), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9782), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9784), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [31978] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10329), 1, + anon_sym_ATinterface, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [32038] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10293), 1, + anon_sym_ATinterface, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [32098] = 3, + ACTIONS(10333), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10331), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [32142] = 11, + ACTIONS(9220), 1, + anon_sym___attribute, + ACTIONS(9230), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9776), 1, + anon_sym___attribute__, + ACTIONS(9778), 1, + sym_method_attribute_specifier, + ACTIONS(10295), 1, + anon_sym_in, + ACTIONS(9780), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4299), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9782), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9784), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [32202] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10274), 1, + anon_sym_RPAREN, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [32262] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10274), 1, + anon_sym_RPAREN, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [32322] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10335), 1, + anon_sym_ATinterface, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [32382] = 6, + ACTIONS(10337), 1, + anon_sym_LPAREN2, + ACTIONS(10339), 1, anon_sym_LT, - ACTIONS(8064), 2, + ACTIONS(8003), 2, anon_sym_LBRACE, anon_sym_COLON, - STATE(4353), 3, + STATE(4403), 3, sym_protocol_qualifiers, sym_generic_type_references, aux_sym_generic_type_specifier_repeat1, @@ -596906,7 +592860,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8062), 23, + ACTIONS(6813), 23, anon_sym__Atomic, anon_sym_signed, anon_sym_unsigned, @@ -596914,12 +592868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -596930,11 +592884,60 @@ static const uint16_t ts_small_parse_table[] = { sym_IMP, sym_BOOL, sym_auto, - [29269] = 4, - ACTIONS(10372), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, + [32432] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10327), 1, + anon_sym_RPAREN, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [32492] = 3, + ACTIONS(10343), 4, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK, ACTIONS(3), 7, sym_comment, @@ -596944,7 +592947,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10341), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -596971,16 +592974,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [29314] = 6, - ACTIONS(9724), 1, - anon_sym_LPAREN2, - ACTIONS(9752), 1, - anon_sym_LBRACK, - STATE(4289), 1, - sym_parameter_list, - ACTIONS(9145), 2, + [32536] = 11, + ACTIONS(35), 1, anon_sym___attribute, + ACTIONS(117), 1, anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10291), 1, + anon_sym_RPAREN, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -596989,16 +593007,399 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9143), 24, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [32596] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10345), 1, + anon_sym_ATinterface, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [32656] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10345), 1, + anon_sym_ATinterface, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4351), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [32716] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10347), 1, + anon_sym_ATinterface, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [32776] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10291), 1, + anon_sym_RPAREN, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [32836] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10291), 1, + anon_sym_RPAREN, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [32896] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10291), 1, + anon_sym_RPAREN, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [32956] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10349), 1, + anon_sym_RPAREN, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [33016] = 11, + ACTIONS(9220), 1, + anon_sym___attribute, + ACTIONS(9230), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9776), 1, + anon_sym___attribute__, + ACTIONS(9778), 1, + sym_method_attribute_specifier, + ACTIONS(10349), 1, anon_sym_in, - sym_method_attribute_specifier, + ACTIONS(9780), 2, anon_sym_NS_FORMAT_FUNCTION, anon_sym_CF_FORMAT_FUNCTION, + STATE(4299), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9782), 4, anon_sym_NS_UNAVAILABLE, anon_sym_DEPRECATED_ATTRIBUTE, anon_sym_UI_APPEARANCE_SELECTOR, anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9784), 15, anon_sym___IOS_AVAILABLE, anon_sym_NS_AVAILABLE_IOS, anon_sym_API_AVAILABLE, @@ -597014,11 +593415,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [29363] = 4, - ACTIONS(10374), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, + [33076] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10329), 1, + anon_sym_ATinterface, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4358), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [33136] = 11, + ACTIONS(9220), 1, + anon_sym___attribute, + ACTIONS(9230), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9776), 1, + anon_sym___attribute__, + ACTIONS(9778), 1, + sym_method_attribute_specifier, + ACTIONS(10291), 1, + anon_sym_in, + ACTIONS(9780), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4299), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9782), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9784), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [33196] = 3, + ACTIONS(10353), 4, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK, ACTIONS(3), 7, sym_comment, @@ -597028,7 +593527,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10351), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -597055,10 +593554,596 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [29408] = 4, + [33240] = 11, + ACTIONS(9220), 1, + anon_sym___attribute, + ACTIONS(9230), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9776), 1, + anon_sym___attribute__, + ACTIONS(9778), 1, + sym_method_attribute_specifier, + ACTIONS(10291), 1, + anon_sym_in, + ACTIONS(9780), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4299), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9782), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9784), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [33300] = 11, + ACTIONS(9220), 1, + anon_sym___attribute, + ACTIONS(9230), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9776), 1, + anon_sym___attribute__, + ACTIONS(9778), 1, + sym_method_attribute_specifier, + ACTIONS(10327), 1, + anon_sym_in, + ACTIONS(9780), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(4299), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4468), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + ACTIONS(9782), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9784), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [33360] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10355), 1, + anon_sym_ATinterface, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [33420] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10327), 1, + anon_sym_RPAREN, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [33480] = 11, + ACTIONS(35), 1, + anon_sym___attribute, + ACTIONS(117), 1, + anon_sym_NS_AVAILABLE, + ACTIONS(9169), 1, + anon_sym___attribute__, + ACTIONS(9171), 1, + sym_method_attribute_specifier, + ACTIONS(10315), 1, + anon_sym_RPAREN, + ACTIONS(9173), 2, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + STATE(3041), 2, + sym_method_variadic_arguments_attribute_specifier, + sym_availability_attribute_specifier, + STATE(4038), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(9175), 4, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9177), 15, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [33540] = 4, + ACTIONS(10357), 1, + anon_sym_SEMI, + ACTIONS(10289), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [33585] = 22, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10361), 1, + anon_sym_RPAREN, + ACTIONS(10363), 1, + anon_sym_SEMI, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [33666] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10365), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [33745] = 22, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10250), 1, + anon_sym_COMMA, + ACTIONS(10367), 1, + anon_sym_RPAREN, + STATE(3012), 1, + sym_argument_list, + STATE(4967), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [33826] = 4, + ACTIONS(10369), 1, + anon_sym_SEMI, + ACTIONS(10289), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [33871] = 4, + ACTIONS(10371), 1, + anon_sym_SEMI, + ACTIONS(10289), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [33916] = 5, + ACTIONS(10373), 1, + anon_sym_LT, + ACTIONS(8010), 2, + anon_sym_LBRACE, + anon_sym_COLON, + STATE(4378), 3, + sym_protocol_qualifiers, + sym_generic_type_references, + aux_sym_generic_type_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8008), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [33963] = 4, ACTIONS(10376), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -597069,7 +594154,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -597096,10 +594181,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [29453] = 4, + [34008] = 4, ACTIONS(10378), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -597110,7 +594195,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -597137,57 +594222,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [29498] = 22, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, + [34053] = 4, ACTIONS(10380), 1, - anon_sym_COMMA, - ACTIONS(10382), 1, - anon_sym_RBRACE, - STATE(3088), 1, - sym_argument_list, - STATE(5011), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_SEMI, + ACTIONS(10289), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -597196,10 +594236,78 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [29579] = 4, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [34098] = 4, + ACTIONS(10382), 1, + anon_sym_SEMI, + ACTIONS(10289), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [34143] = 4, ACTIONS(10384), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -597210,7 +594318,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -597237,10 +594345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [29624] = 4, + [34188] = 4, ACTIONS(10386), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -597251,7 +594359,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -597278,53 +594386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [29669] = 6, - ACTIONS(9724), 1, - anon_sym_LPAREN2, - ACTIONS(9752), 1, - anon_sym_LBRACK, - STATE(4289), 1, - sym_parameter_list, - ACTIONS(9155), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9153), 24, - anon_sym___attribute__, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [29718] = 4, + [34233] = 4, ACTIONS(10388), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -597335,7 +594400,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -597362,10 +594427,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [29763] = 4, + [34278] = 4, ACTIONS(10390), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -597376,7 +594441,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -597403,10 +594468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [29808] = 4, + [34323] = 4, ACTIONS(10392), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -597417,7 +594482,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -597444,10 +594509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [29853] = 4, + [34368] = 4, ACTIONS(10394), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -597458,7 +594523,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -597485,53 +594550,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [29898] = 6, - ACTIONS(9710), 1, - anon_sym_LBRACK, - ACTIONS(9724), 1, - anon_sym_LPAREN2, - STATE(4286), 1, - sym_parameter_list, - ACTIONS(10203), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10201), 24, - anon_sym___attribute__, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [29947] = 4, + [34413] = 4, ACTIONS(10396), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -597542,7 +594564,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -597569,10 +594591,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [29992] = 4, + [34458] = 4, ACTIONS(10398), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -597583,7 +594605,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -597610,10 +594632,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [30037] = 4, + [34503] = 4, ACTIONS(10400), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -597624,7 +594646,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -597651,10 +594673,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [30082] = 4, + [34548] = 4, ACTIONS(10402), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -597665,7 +594687,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -597692,10 +594714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [30127] = 4, + [34593] = 4, ACTIONS(10404), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -597706,7 +594728,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -597733,10 +594755,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [30172] = 4, + [34638] = 4, ACTIONS(10406), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -597747,7 +594769,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -597774,10 +594796,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [30217] = 4, + [34683] = 5, + ACTIONS(10339), 1, + anon_sym_LT, + ACTIONS(7999), 2, + anon_sym_LBRACE, + anon_sym_COLON, + STATE(4401), 3, + sym_protocol_qualifiers, + sym_generic_type_references, + aux_sym_generic_type_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7997), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [34730] = 4, ACTIONS(10408), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -597788,7 +594852,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -597815,10 +594879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [30262] = 4, + [34775] = 4, ACTIONS(10410), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -597829,7 +594893,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -597856,10 +594920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [30307] = 4, + [34820] = 4, ACTIONS(10412), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -597870,7 +594934,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -597897,10 +594961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [30352] = 4, + [34865] = 4, ACTIONS(10414), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -597911,7 +594975,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -597938,53 +595002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [30397] = 6, - ACTIONS(9724), 1, - anon_sym_LPAREN2, - ACTIONS(9752), 1, - anon_sym_LBRACK, - STATE(4289), 1, - sym_parameter_list, - ACTIONS(9125), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9123), 24, - anon_sym___attribute__, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [30446] = 4, + [34910] = 4, ACTIONS(10416), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -597995,7 +595016,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -598022,10 +595043,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [30491] = 4, + [34955] = 5, + ACTIONS(10339), 1, + anon_sym_LT, + ACTIONS(8017), 2, + anon_sym_LBRACE, + anon_sym_COLON, + STATE(4378), 3, + sym_protocol_qualifiers, + sym_generic_type_references, + aux_sym_generic_type_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8015), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [35002] = 4, ACTIONS(10418), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -598036,7 +595099,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -598063,10 +595126,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [30536] = 4, + [35047] = 5, + ACTIONS(10339), 1, + anon_sym_LT, + ACTIONS(8021), 2, + anon_sym_LBRACE, + anon_sym_COLON, + STATE(4378), 3, + sym_protocol_qualifiers, + sym_generic_type_references, + aux_sym_generic_type_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8019), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [35094] = 4, ACTIONS(10420), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -598077,7 +595182,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -598104,10 +595209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [30581] = 4, + [35139] = 4, ACTIONS(10422), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -598118,7 +595223,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -598145,52 +595250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [30626] = 5, - ACTIONS(10300), 1, - anon_sym_LT, - ACTIONS(8049), 2, - anon_sym_LBRACE, - anon_sym_COLON, - STATE(4416), 3, - sym_protocol_qualifiers, - sym_generic_type_references, - aux_sym_generic_type_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8047), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [30673] = 4, + [35184] = 4, ACTIONS(10424), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -598201,7 +595264,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -598228,57 +595291,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [30718] = 22, - ACTIONS(7002), 1, + [35229] = 21, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - ACTIONS(10426), 1, - anon_sym_COMMA, ACTIONS(10428), 1, - anon_sym_RBRACE, - STATE(3088), 1, + anon_sym_RBRACK, + STATE(3012), 1, sym_argument_list, - STATE(4890), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10426), 2, + anon_sym_COLON, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -598287,10 +595349,96 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [30799] = 4, + [35308] = 6, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + ACTIONS(9786), 1, + anon_sym_LBRACK, + STATE(4278), 1, + sym_parameter_list, + ACTIONS(9144), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9142), 24, + anon_sym___attribute__, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [35357] = 6, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + ACTIONS(9786), 1, + anon_sym_LBRACK, + STATE(4278), 1, + sym_parameter_list, + ACTIONS(9138), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9136), 24, + anon_sym___attribute__, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [35406] = 4, ACTIONS(10430), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -598301,7 +595449,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -598328,10 +595476,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [30844] = 4, + [35451] = 6, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + ACTIONS(9786), 1, + anon_sym_LBRACK, + STATE(4278), 1, + sym_parameter_list, + ACTIONS(9112), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9110), 24, + anon_sym___attribute__, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [35500] = 6, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + ACTIONS(9786), 1, + anon_sym_LBRACK, + STATE(4278), 1, + sym_parameter_list, + ACTIONS(9100), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9098), 24, + anon_sym___attribute__, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [35549] = 4, ACTIONS(10432), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -598342,7 +595576,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -598369,10 +595603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [30889] = 4, + [35594] = 4, ACTIONS(10434), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -598383,7 +595617,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -598410,10 +595644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [30934] = 4, + [35639] = 4, ACTIONS(10436), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -598424,7 +595658,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -598451,10 +595685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [30979] = 4, + [35684] = 4, ACTIONS(10438), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -598465,7 +595699,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -598492,10 +595726,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [31024] = 4, + [35729] = 4, ACTIONS(10440), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -598506,7 +595740,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -598533,10 +595767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [31069] = 4, + [35774] = 4, ACTIONS(10442), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -598547,7 +595781,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -598574,57 +595808,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [31114] = 22, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, + [35819] = 4, ACTIONS(10444), 1, - anon_sym_COMMA, - ACTIONS(10446), 1, - anon_sym_RBRACK, - STATE(3088), 1, - sym_argument_list, - STATE(4920), 1, - aux_sym_argument_list_repeat1, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_SEMI, + ACTIONS(10289), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -598633,10 +595822,78 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [31195] = 4, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [35864] = 4, + ACTIONS(10446), 1, + anon_sym_SEMI, + ACTIONS(10289), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [35909] = 4, ACTIONS(10448), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -598647,7 +595904,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -598674,53 +595931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [31240] = 6, - ACTIONS(9724), 1, - anon_sym_LPAREN2, - ACTIONS(9752), 1, - anon_sym_LBRACK, - STATE(4289), 1, - sym_parameter_list, - ACTIONS(9139), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9137), 24, - anon_sym___attribute__, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [31289] = 4, + [35954] = 4, ACTIONS(10450), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -598731,7 +595945,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -598758,139 +595972,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [31334] = 4, - ACTIONS(10452), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, + [35999] = 22, + ACTIONS(6954), 1, anon_sym_LPAREN2, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10310), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [31379] = 4, - ACTIONS(10454), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10310), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [31424] = 22, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - ACTIONS(10272), 1, + ACTIONS(10452), 1, anon_sym_COMMA, - ACTIONS(10456), 1, - anon_sym_RPAREN, - STATE(3088), 1, + ACTIONS(10454), 1, + anon_sym_RBRACK, + STATE(3012), 1, sym_argument_list, - STATE(4932), 1, + STATE(4956), 1, aux_sym_argument_list_repeat1, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -598899,10 +596031,51 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [31505] = 4, + [36080] = 4, + ACTIONS(10456), 1, + anon_sym_SEMI, + ACTIONS(10289), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [36125] = 4, ACTIONS(10458), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -598913,7 +596086,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -598940,10 +596113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [31550] = 4, + [36170] = 4, ACTIONS(10460), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -598954,7 +596127,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -598981,10 +596154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [31595] = 4, + [36215] = 4, ACTIONS(10462), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -598995,7 +596168,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -599022,10 +596195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [31640] = 4, + [36260] = 4, ACTIONS(10464), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -599036,7 +596209,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -599063,14 +596236,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [31685] = 6, - ACTIONS(9710), 1, - anon_sym_LBRACK, - ACTIONS(9724), 1, + [36305] = 4, + ACTIONS(10466), 1, + anon_sym_SEMI, + ACTIONS(10289), 2, anon_sym_LPAREN2, - STATE(4286), 1, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [36350] = 4, + ACTIONS(10468), 1, + anon_sym_SEMI, + ACTIONS(10289), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [36395] = 4, + ACTIONS(10470), 1, + anon_sym_SEMI, + ACTIONS(10289), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [36440] = 4, + ACTIONS(10472), 1, + anon_sym_SEMI, + ACTIONS(10289), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [36485] = 4, + ACTIONS(10474), 1, + anon_sym_SEMI, + ACTIONS(10289), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [36530] = 4, + ACTIONS(10476), 1, + anon_sym_SEMI, + ACTIONS(10289), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [36575] = 4, + ACTIONS(10478), 1, + anon_sym_SEMI, + ACTIONS(10289), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [36620] = 6, + ACTIONS(9746), 1, + anon_sym_LBRACK, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + STATE(4282), 1, sym_parameter_list, - ACTIONS(10098), 2, + ACTIONS(10117), 2, anon_sym___attribute, anon_sym_NS_AVAILABLE, ACTIONS(3), 7, @@ -599081,7 +596541,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10096), 24, + ACTIONS(10115), 24, anon_sym___attribute__, anon_sym_in, sym_method_attribute_specifier, @@ -599106,10 +596566,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [31734] = 4, - ACTIONS(10466), 1, + [36669] = 4, + ACTIONS(10480), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -599120,7 +596580,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -599147,303 +596607,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [31779] = 4, - ACTIONS(10468), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, + [36714] = 22, + ACTIONS(6954), 1, anon_sym_LPAREN2, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10310), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [31824] = 4, - ACTIONS(10470), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10310), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [31869] = 4, - ACTIONS(10472), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10310), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [31914] = 4, - ACTIONS(10474), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10310), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [31959] = 4, - ACTIONS(10476), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10310), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [32004] = 5, - ACTIONS(10300), 1, - anon_sym_LT, - ACTIONS(8060), 2, - anon_sym_LBRACE, - anon_sym_COLON, - STATE(4353), 3, - sym_protocol_qualifiers, - sym_generic_type_references, - aux_sym_generic_type_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8058), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [32051] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - ACTIONS(10478), 1, + ACTIONS(10482), 1, anon_sym_COMMA, - STATE(3088), 1, + ACTIONS(10484), 1, + anon_sym_RBRACE, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + STATE(4897), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10480), 2, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -599452,10 +596666,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [32130] = 4, - ACTIONS(10482), 1, + [36795] = 4, + ACTIONS(10486), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -599466,7 +596680,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -599493,8 +596707,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [32175] = 3, - ACTIONS(10486), 2, + [36840] = 4, + ACTIONS(10488), 1, + anon_sym_SEMI, + ACTIONS(10289), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [36885] = 4, + ACTIONS(10490), 1, + anon_sym_SEMI, + ACTIONS(10289), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [36930] = 22, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10492), 1, + anon_sym_COMMA, + ACTIONS(10494), 1, + anon_sym_RBRACE, + STATE(3012), 1, + sym_argument_list, + STATE(4905), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [37011] = 4, + ACTIONS(10496), 1, + anon_sym_SEMI, + ACTIONS(10289), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [37056] = 6, + ACTIONS(9746), 1, + anon_sym_LBRACK, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + STATE(4282), 1, + sym_parameter_list, + ACTIONS(10113), 2, anon_sym___attribute, anon_sym_NS_AVAILABLE, ACTIONS(3), 7, @@ -599505,7 +596907,185 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10484), 27, + ACTIONS(10111), 24, + anon_sym___attribute__, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [37105] = 4, + ACTIONS(10498), 1, + anon_sym_SEMI, + ACTIONS(10289), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [37150] = 22, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10500), 1, + anon_sym_COMMA, + ACTIONS(10502), 1, + anon_sym_RBRACK, + STATE(3012), 1, + sym_argument_list, + STATE(4944), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [37231] = 4, + ACTIONS(10504), 1, + anon_sym_SEMI, + ACTIONS(10289), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10287), 26, + anon_sym___attribute, + anon_sym___attribute__, + sym_identifier, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym_NS_AVAILABLE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [37276] = 3, + ACTIONS(10508), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10506), 27, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACE, @@ -599533,480 +597113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_CLASS_DEPRECATED_IOS, anon_sym_NS_REFINED_FOR_SWIFT, anon_sym_NS_SWIFT_NAME, - [32218] = 4, - ACTIONS(10488), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10310), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [32263] = 5, - ACTIONS(10300), 1, - anon_sym_LT, - ACTIONS(8071), 2, - anon_sym_LBRACE, - anon_sym_COLON, - STATE(4353), 3, - sym_protocol_qualifiers, - sym_generic_type_references, - aux_sym_generic_type_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8069), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [32310] = 4, - ACTIONS(10490), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10310), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [32355] = 4, - ACTIONS(10492), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10310), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [32400] = 4, - ACTIONS(10494), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10310), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [32445] = 4, - ACTIONS(10496), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10310), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [32490] = 4, - ACTIONS(10498), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10310), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [32535] = 4, - ACTIONS(10500), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10310), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [32580] = 4, - ACTIONS(10502), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10310), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [32625] = 22, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10504), 1, - anon_sym_COMMA, - ACTIONS(10506), 1, - anon_sym_RBRACK, - STATE(3088), 1, - sym_argument_list, - STATE(4963), 1, - aux_sym_argument_list_repeat1, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [32706] = 4, - ACTIONS(10508), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10310), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [32751] = 4, + [37319] = 4, ACTIONS(10510), 1, anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -600017,7 +597127,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -600044,69 +597154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [32796] = 22, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, + [37364] = 4, ACTIONS(10512), 1, - anon_sym_RPAREN, - ACTIONS(10514), 1, anon_sym_SEMI, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [32877] = 4, - ACTIONS(10516), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, + ACTIONS(10289), 2, anon_sym_LPAREN2, anon_sym_LBRACK, ACTIONS(3), 7, @@ -600117,7 +597168,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10310), 26, + ACTIONS(10287), 26, anon_sym___attribute, anon_sym___attribute__, sym_identifier, @@ -600144,95 +597195,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [32922] = 4, - ACTIONS(10518), 1, - anon_sym_SEMI, - ACTIONS(10312), 2, + [37409] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10310), 26, - anon_sym___attribute, - anon_sym___attribute__, - sym_identifier, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym_NS_AVAILABLE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [32967] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - ACTIONS(10522), 1, - anon_sym_RBRACK, - STATE(3088), 1, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10520), 2, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10426), 2, anon_sym_COLON, sym_identifier, ACTIONS(3), 7, @@ -600243,94 +597251,55 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [33046] = 3, - ACTIONS(7322), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7324), 26, + [37485] = 21, + ACTIONS(6954), 1, anon_sym_LPAREN2, - anon_sym___attribute__, + ACTIONS(6956), 1, anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [33088] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - ACTIONS(10478), 1, + ACTIONS(10359), 1, anon_sym_COMMA, - ACTIONS(10512), 1, + ACTIONS(10514), 1, anon_sym_RPAREN, - STATE(3088), 1, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -600339,51 +597308,278 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [33166] = 20, - ACTIONS(7002), 1, + [37563] = 21, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - STATE(3088), 1, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10516), 1, + anon_sym_SEMI, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [37641] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10518), 1, + anon_sym_SEMI, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [37719] = 20, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10520), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [37795] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10522), 1, + anon_sym_RPAREN, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [37873] = 20, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(10524), 2, anon_sym_COMMA, anon_sym_RBRACE, @@ -600395,55 +597591,55 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [33242] = 21, - ACTIONS(7002), 1, + [37949] = 21, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - ACTIONS(10478), 1, + ACTIONS(10359), 1, anon_sym_COMMA, ACTIONS(10526), 1, - anon_sym_SEMI, - STATE(3088), 1, + anon_sym_RPAREN, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -600452,263 +597648,55 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [33320] = 3, - ACTIONS(9065), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9063), 26, + [38027] = 21, + ACTIONS(6954), 1, anon_sym_LPAREN2, - anon_sym___attribute__, + ACTIONS(6956), 1, anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [33362] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - ACTIONS(10478), 1, + ACTIONS(10359), 1, anon_sym_COMMA, ACTIONS(10528), 1, - anon_sym_SEMI, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [33440] = 20, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10530), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [33516] = 20, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10532), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [33592] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, - ACTIONS(10534), 1, anon_sym_RPAREN, - STATE(3088), 1, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -600717,55 +597705,55 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [33670] = 21, - ACTIONS(7002), 1, + [38105] = 21, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - ACTIONS(10478), 1, + ACTIONS(10359), 1, anon_sym_COMMA, - ACTIONS(10514), 1, + ACTIONS(10530), 1, anon_sym_SEMI, - STATE(3088), 1, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -600774,112 +597762,17 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [33748] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, - ACTIONS(10536), 1, - anon_sym_RPAREN, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [33826] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, + [38183] = 7, + ACTIONS(10532), 1, + anon_sym_LBRACE, + ACTIONS(10535), 1, + anon_sym_COLON, ACTIONS(10538), 1, - anon_sym_SEMI, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_ATdefs, + STATE(4572), 1, + sym_superclass_reference, + STATE(4607), 1, + sym_field_declaration_list, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -600888,304 +597781,41 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [33904] = 3, - ACTIONS(8914), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8916), 26, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [33946] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, + ACTIONS(8033), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [38233] = 7, ACTIONS(10540), 1, - anon_sym_RPAREN, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [34024] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, - ACTIONS(10542), 1, - anon_sym_RPAREN, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [34102] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, - ACTIONS(10544), 1, - anon_sym_RPAREN, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [34180] = 3, - ACTIONS(9085), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9083), 26, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [34222] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, + anon_sym_LBRACE, + ACTIONS(10543), 1, + anon_sym_COLON, ACTIONS(10546), 1, - anon_sym_RPAREN, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_ATdefs, + STATE(4569), 1, + sym_superclass_reference, + STATE(4595), 1, + sym_field_declaration_list, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -601194,55 +597824,122 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [34300] = 21, - ACTIONS(7002), 1, + ACTIONS(8023), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [38283] = 7, + ACTIONS(10157), 1, + anon_sym_LBRACE, + ACTIONS(10535), 1, + anon_sym_COLON, + ACTIONS(10538), 1, + anon_sym_ATdefs, + STATE(4564), 1, + sym_superclass_reference, + STATE(4607), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8033), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [38333] = 21, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - ACTIONS(10478), 1, + ACTIONS(10359), 1, anon_sym_COMMA, ACTIONS(10548), 1, anon_sym_RPAREN, - STATE(3088), 1, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -601251,10 +597948,17 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [34378] = 3, - ACTIONS(9077), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, + [38411] = 7, + ACTIONS(10157), 1, + anon_sym_LBRACE, + ACTIONS(10543), 1, + anon_sym_COLON, + ACTIONS(10546), 1, + anon_sym_ATdefs, + STATE(4560), 1, + sym_superclass_reference, + STATE(4595), 1, + sym_field_declaration_list, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -601263,82 +597967,79 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9075), 26, + ACTIONS(8023), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [38461] = 21, + ACTIONS(6954), 1, anon_sym_LPAREN2, - anon_sym___attribute__, + ACTIONS(6956), 1, anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [34420] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - ACTIONS(10478), 1, + ACTIONS(10359), 1, anon_sym_COMMA, ACTIONS(10550), 1, - anon_sym_RPAREN, - STATE(3088), 1, + anon_sym_SEMI, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -601347,55 +598048,55 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [34498] = 21, - ACTIONS(7002), 1, + [38539] = 21, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - ACTIONS(10478), 1, + ACTIONS(10359), 1, anon_sym_COMMA, ACTIONS(10552), 1, anon_sym_RPAREN, - STATE(3088), 1, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -601404,8 +598105,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [34576] = 3, - ACTIONS(9057), 2, + [38617] = 3, + ACTIONS(7282), 2, anon_sym___attribute, anon_sym_NS_AVAILABLE, ACTIONS(3), 7, @@ -601416,7 +598117,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(9055), 26, + ACTIONS(7284), 26, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, @@ -601443,94 +598144,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [34618] = 3, - ACTIONS(7360), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7362), 26, + [38659] = 21, + ACTIONS(6954), 1, anon_sym_LPAREN2, - anon_sym___attribute__, + ACTIONS(6956), 1, anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [34660] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - ACTIONS(10478), 1, + ACTIONS(10359), 1, anon_sym_COMMA, ACTIONS(10554), 1, - anon_sym_SEMI, - STATE(3088), 1, + anon_sym_RPAREN, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -601539,8 +598201,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [34738] = 3, - ACTIONS(7344), 2, + [38737] = 3, + ACTIONS(2256), 2, anon_sym___attribute, anon_sym_NS_AVAILABLE, ACTIONS(3), 7, @@ -601551,7 +598213,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7346), 26, + ACTIONS(7280), 26, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, @@ -601578,290 +598240,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [34780] = 21, - ACTIONS(7002), 1, + [38779] = 21, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - ACTIONS(10478), 1, + ACTIONS(10359), 1, anon_sym_COMMA, ACTIONS(10556), 1, anon_sym_RPAREN, - STATE(3088), 1, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [34858] = 3, - ACTIONS(8933), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8935), 26, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [34900] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, - ACTIONS(10558), 1, - anon_sym_RPAREN, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, + ACTIONS(7783), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [34978] = 7, - ACTIONS(10146), 1, - anon_sym_LBRACE, - ACTIONS(10560), 1, - anon_sym_COLON, - ACTIONS(10563), 1, - anon_sym_ATdefs, - STATE(4537), 1, - sym_superclass_reference, - STATE(4581), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8088), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [35028] = 3, - ACTIONS(8929), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8931), 26, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [35070] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, - ACTIONS(10565), 1, - anon_sym_SEMI, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, + ACTIONS(7801), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -601870,1227 +598297,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [35148] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, - ACTIONS(10567), 1, - anon_sym_RPAREN, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [35226] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, - ACTIONS(10569), 1, - anon_sym_SEMI, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [35304] = 7, - ACTIONS(10560), 1, - anon_sym_COLON, - ACTIONS(10563), 1, - anon_sym_ATdefs, - ACTIONS(10571), 1, - anon_sym_LBRACE, - STATE(4554), 1, - sym_superclass_reference, - STATE(4581), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8088), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [35354] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, - ACTIONS(10574), 1, - anon_sym_RPAREN, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [35432] = 7, - ACTIONS(10576), 1, - anon_sym_LBRACE, - ACTIONS(10579), 1, - anon_sym_COLON, - ACTIONS(10582), 1, - anon_sym_ATdefs, - STATE(4553), 1, - sym_superclass_reference, - STATE(4585), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8099), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [35482] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, - ACTIONS(10584), 1, - anon_sym_RPAREN, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [35560] = 3, - ACTIONS(2300), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7334), 26, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [35602] = 7, - ACTIONS(10146), 1, - anon_sym_LBRACE, - ACTIONS(10579), 1, - anon_sym_COLON, - ACTIONS(10582), 1, - anon_sym_ATdefs, - STATE(4541), 1, - sym_superclass_reference, - STATE(4585), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8099), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [35652] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, - ACTIONS(10586), 1, - anon_sym_RPAREN, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [35730] = 3, - ACTIONS(7352), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7354), 26, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [35772] = 20, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10520), 2, - anon_sym_COLON, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [35848] = 3, - ACTIONS(8981), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8983), 26, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [35890] = 3, - ACTIONS(8903), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8905), 26, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [35932] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, - ACTIONS(10588), 1, - anon_sym_SEMI, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [36010] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, - ACTIONS(10590), 1, - anon_sym_SEMI, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [36088] = 3, - ACTIONS(8923), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8925), 26, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [36130] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, - ACTIONS(10592), 1, - anon_sym_RPAREN, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [36208] = 3, - ACTIONS(9081), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(9079), 26, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [36250] = 3, - ACTIONS(8977), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8979), 26, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [36292] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, - ACTIONS(10594), 1, - anon_sym_RPAREN, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [36370] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, - ACTIONS(10596), 1, - anon_sym_SEMI, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [36448] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, - ACTIONS(10598), 1, - anon_sym_RPAREN, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [36526] = 21, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, - ACTIONS(10600), 1, - anon_sym_RPAREN, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [36604] = 3, - ACTIONS(8955), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8957), 26, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [36646] = 3, - ACTIONS(7348), 2, - anon_sym___attribute, - anon_sym_NS_AVAILABLE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7350), 26, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_in, - sym_method_attribute_specifier, - anon_sym_NS_FORMAT_FUNCTION, - anon_sym_CF_FORMAT_FUNCTION, - anon_sym_NS_UNAVAILABLE, - anon_sym_DEPRECATED_ATTRIBUTE, - anon_sym_UI_APPEARANCE_SELECTOR, - anon_sym_UNAVAILABLE_ATTRIBUTE, - anon_sym___IOS_AVAILABLE, - anon_sym_NS_AVAILABLE_IOS, - anon_sym_API_AVAILABLE, - anon_sym_API_UNAVAILABLE, - anon_sym_API_DEPRECATED, - anon_sym_NS_ENUM_AVAILABLE_IOS, - anon_sym_NS_DEPRECATED_IOS, - anon_sym_NS_ENUM_DEPRECATED_IOS, - anon_sym_DEPRECATED_MSG_ATTRIBUTE, - anon_sym___deprecated_msg, - anon_sym___deprecated_enum_msg, - anon_sym_NS_SWIFT_UNAVAILABLE, - anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, - anon_sym_NS_CLASS_AVAILABLE_IOS, - anon_sym_NS_CLASS_DEPRECATED_IOS, - [36688] = 3, + [38857] = 3, ACTIONS(9061), 2, anon_sym___attribute, anon_sym_NS_AVAILABLE, @@ -603129,8 +598336,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [36730] = 3, - ACTIONS(7326), 2, + [38899] = 3, + ACTIONS(7290), 2, anon_sym___attribute, anon_sym_NS_AVAILABLE, ACTIONS(3), 7, @@ -603141,7 +598348,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7328), 26, + ACTIONS(7292), 26, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, @@ -603168,8 +598375,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [36772] = 3, - ACTIONS(7318), 2, + [38941] = 3, + ACTIONS(7294), 2, anon_sym___attribute, anon_sym_NS_AVAILABLE, ACTIONS(3), 7, @@ -603180,7 +598387,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(7320), 26, + ACTIONS(7296), 26, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, @@ -603207,55 +598414,2242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, anon_sym_NS_CLASS_AVAILABLE_IOS, anon_sym_NS_CLASS_DEPRECATED_IOS, - [36814] = 21, - ACTIONS(7002), 1, + [38983] = 3, + ACTIONS(7268), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7270), 26, anon_sym_LPAREN2, - ACTIONS(7026), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(7833), 1, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [39025] = 3, + ACTIONS(7302), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7304), 26, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [39067] = 3, + ACTIONS(7298), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7300), 26, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [39109] = 3, + ACTIONS(7310), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7312), 26, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [39151] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - ACTIONS(10478), 1, + ACTIONS(10359), 1, anon_sym_COMMA, + ACTIONS(10558), 1, + anon_sym_SEMI, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [39229] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10560), 1, + anon_sym_SEMI, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [39307] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10562), 1, + anon_sym_RPAREN, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [39385] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10564), 1, + anon_sym_RPAREN, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [39463] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10566), 1, + anon_sym_SEMI, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [39541] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10568), 1, + anon_sym_RPAREN, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [39619] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10570), 1, + anon_sym_RPAREN, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [39697] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10572), 1, + anon_sym_SEMI, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [39775] = 3, + ACTIONS(8926), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8928), 26, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [39817] = 3, + ACTIONS(9077), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9075), 26, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [39859] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10574), 1, + anon_sym_RPAREN, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [39937] = 3, + ACTIONS(8897), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8899), 26, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [39979] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10576), 1, + anon_sym_SEMI, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [40057] = 3, + ACTIONS(8916), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8918), 26, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [40099] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10361), 1, + anon_sym_RPAREN, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [40177] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10578), 1, + anon_sym_SEMI, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [40255] = 3, + ACTIONS(8903), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8905), 26, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [40297] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10580), 1, + anon_sym_RPAREN, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [40375] = 3, + ACTIONS(9057), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9055), 26, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [40417] = 3, + ACTIONS(9065), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9063), 26, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [40459] = 3, + ACTIONS(8922), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8924), 26, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [40501] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10582), 1, + anon_sym_RPAREN, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [40579] = 3, + ACTIONS(8942), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8944), 26, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [40621] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10584), 1, + anon_sym_RPAREN, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [40699] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10586), 1, + anon_sym_SEMI, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [40777] = 3, + ACTIONS(8907), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8909), 26, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [40819] = 3, + ACTIONS(9069), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9067), 26, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [40861] = 3, + ACTIONS(9073), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(9071), 26, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [40903] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10588), 1, + anon_sym_RPAREN, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [40981] = 3, + ACTIONS(8930), 2, + anon_sym___attribute, + anon_sym_NS_AVAILABLE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8932), 26, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_in, + sym_method_attribute_specifier, + anon_sym_NS_FORMAT_FUNCTION, + anon_sym_CF_FORMAT_FUNCTION, + anon_sym_NS_UNAVAILABLE, + anon_sym_DEPRECATED_ATTRIBUTE, + anon_sym_UI_APPEARANCE_SELECTOR, + anon_sym_UNAVAILABLE_ATTRIBUTE, + anon_sym___IOS_AVAILABLE, + anon_sym_NS_AVAILABLE_IOS, + anon_sym_API_AVAILABLE, + anon_sym_API_UNAVAILABLE, + anon_sym_API_DEPRECATED, + anon_sym_NS_ENUM_AVAILABLE_IOS, + anon_sym_NS_DEPRECATED_IOS, + anon_sym_NS_ENUM_DEPRECATED_IOS, + anon_sym_DEPRECATED_MSG_ATTRIBUTE, + anon_sym___deprecated_msg, + anon_sym___deprecated_enum_msg, + anon_sym_NS_SWIFT_UNAVAILABLE, + anon_sym_NS_EXTENSION_UNAVAILABLE_IOS, + anon_sym_NS_CLASS_AVAILABLE_IOS, + anon_sym_NS_CLASS_DEPRECATED_IOS, + [41023] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10363), 1, + anon_sym_SEMI, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [41101] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10590), 1, + anon_sym_RPAREN, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [41179] = 20, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10592), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [41255] = 21, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10359), 1, + anon_sym_COMMA, + ACTIONS(10594), 1, + anon_sym_RPAREN, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [41333] = 20, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10596), 1, + anon_sym_RPAREN, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [41408] = 20, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(8762), 1, + anon_sym_RBRACK, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [41483] = 20, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10598), 1, + anon_sym_SEMI, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [41558] = 20, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(10600), 1, + anon_sym_COLON, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [41633] = 20, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(8756), 1, + anon_sym_RBRACK, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [41708] = 20, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(8774), 1, + anon_sym_RBRACK, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [41783] = 20, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, ACTIONS(10602), 1, - anon_sym_SEMI, - STATE(3088), 1, + anon_sym_RPAREN, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -603264,55 +600658,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [36892] = 21, - ACTIONS(7002), 1, + [41858] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - ACTIONS(10478), 1, - anon_sym_COMMA, ACTIONS(10604), 1, - anon_sym_SEMI, - STATE(3088), 1, + anon_sym_COLON, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -603321,53 +600713,108 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [36970] = 20, - ACTIONS(7002), 1, + [41933] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(8768), 1, + anon_sym_RBRACK, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [42008] = 20, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10606), 1, - anon_sym_COMMA, - STATE(3088), 1, + anon_sym_COLON, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -603376,53 +600823,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [37045] = 20, - ACTIONS(7002), 1, + [42083] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10608), 1, - anon_sym_COLON, - STATE(3088), 1, + anon_sym_RPAREN, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -603431,53 +600878,108 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [37120] = 20, - ACTIONS(7002), 1, + [42158] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(8808), 1, + anon_sym_RBRACK, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [42233] = 20, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10610), 1, anon_sym_RPAREN, - STATE(3088), 1, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -603486,53 +600988,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [37195] = 20, - ACTIONS(7002), 1, + [42308] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - ACTIONS(8839), 1, + ACTIONS(8752), 1, anon_sym_RBRACK, - STATE(3088), 1, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -603541,53 +601043,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [37270] = 20, - ACTIONS(7002), 1, + [42383] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - ACTIONS(8821), 1, + ACTIONS(10428), 1, anon_sym_RBRACK, - STATE(3088), 1, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -603596,163 +601098,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [37345] = 20, - ACTIONS(7002), 1, + [42458] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(8817), 1, - anon_sym_RBRACK, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [37420] = 20, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(8749), 1, - anon_sym_RBRACK, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [37495] = 20, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10612), 1, - anon_sym_RPAREN, - STATE(3088), 1, + anon_sym_SEMI, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -603761,53 +601153,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [37570] = 20, - ACTIONS(7002), 1, + [42533] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - ACTIONS(8819), 1, + ACTIONS(8770), 1, anon_sym_RBRACK, - STATE(3088), 1, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -603816,53 +601208,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [37645] = 20, - ACTIONS(7002), 1, + [42608] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10614), 1, anon_sym_RPAREN, - STATE(3088), 1, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -603871,53 +601263,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [37720] = 20, - ACTIONS(7002), 1, + [42683] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10616), 1, - anon_sym_RPAREN, - STATE(3088), 1, + anon_sym_COMMA, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -603926,53 +601318,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [37795] = 20, - ACTIONS(7002), 1, + [42758] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10618), 1, - anon_sym_COLON, - STATE(3088), 1, + anon_sym_SEMI, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -603981,53 +601373,218 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [37870] = 20, - ACTIONS(7002), 1, + [42833] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(8784), 1, + anon_sym_RBRACK, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [42908] = 20, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(8788), 1, + anon_sym_RBRACK, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [42983] = 20, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(8754), 1, + anon_sym_RBRACK, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [43058] = 20, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10620), 1, - anon_sym_SEMI, - STATE(3088), 1, + anon_sym_RPAREN, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -604036,53 +601593,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [37945] = 20, - ACTIONS(7002), 1, + [43133] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10622), 1, - anon_sym_COLON, - STATE(3088), 1, + anon_sym_SEMI, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -604091,53 +601648,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [38020] = 20, - ACTIONS(7002), 1, + [43208] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10624), 1, - anon_sym_SEMI, - STATE(3088), 1, + anon_sym_COLON, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -604146,53 +601703,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [38095] = 20, - ACTIONS(7002), 1, + [43283] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10626), 1, - anon_sym_SEMI, - STATE(3088), 1, + anon_sym_RBRACK, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -604201,53 +601758,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [38170] = 20, - ACTIONS(7002), 1, + [43358] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10628), 1, anon_sym_SEMI, - STATE(3088), 1, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -604256,53 +601813,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [38245] = 20, - ACTIONS(7002), 1, + [43433] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10630), 1, - anon_sym_COLON, - STATE(3088), 1, + anon_sym_SEMI, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -604311,53 +601868,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [38320] = 20, - ACTIONS(7002), 1, + [43508] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10632), 1, anon_sym_SEMI, - STATE(3088), 1, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -604366,108 +601923,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [38395] = 20, - ACTIONS(7002), 1, + [43583] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(8835), 1, - anon_sym_RBRACK, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [38470] = 20, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10634), 1, - anon_sym_COMMA, - STATE(3088), 1, + anon_sym_COLON, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -604476,53 +601978,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [38545] = 20, - ACTIONS(7002), 1, + [43658] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10636), 1, - anon_sym_RPAREN, - STATE(3088), 1, + anon_sym_SEMI, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -604531,108 +602033,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [38620] = 20, - ACTIONS(7002), 1, + [43733] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(8779), 1, - anon_sym_RBRACK, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [38695] = 20, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10638), 1, - anon_sym_RBRACK, - STATE(3088), 1, + anon_sym_COMMA, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -604641,53 +602088,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [38770] = 20, - ACTIONS(7002), 1, + [43808] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10640), 1, anon_sym_RPAREN, - STATE(3088), 1, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -604696,53 +602143,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [38845] = 20, - ACTIONS(7002), 1, + [43883] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10642), 1, - anon_sym_COLON, - STATE(3088), 1, + anon_sym_RPAREN, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -604751,53 +602198,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [38920] = 20, - ACTIONS(7002), 1, + [43958] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10644), 1, anon_sym_SEMI, - STATE(3088), 1, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -604806,53 +602253,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [38995] = 20, - ACTIONS(7002), 1, + [44033] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10646), 1, - anon_sym_SEMI, - STATE(3088), 1, + anon_sym_COLON, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -604861,218 +602308,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [39070] = 20, - ACTIONS(7002), 1, + [44108] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(8785), 1, - anon_sym_RBRACK, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [39145] = 20, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(8764), 1, - anon_sym_RBRACK, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [39220] = 20, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10522), 1, - anon_sym_RBRACK, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [39295] = 20, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, ACTIONS(10648), 1, - anon_sym_COLON, - STATE(3088), 1, + anon_sym_SEMI, + STATE(3012), 1, sym_argument_list, - ACTIONS(7032), 2, + ACTIONS(6960), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7827), 2, + ACTIONS(7777), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, + ACTIONS(7781), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7863), 2, + ACTIONS(7797), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(7865), 2, + ACTIONS(7799), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -605081,452 +602363,124 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [39370] = 20, - ACTIONS(7002), 1, + [44183] = 20, + ACTIONS(6954), 1, anon_sym_LPAREN2, - ACTIONS(7026), 1, + ACTIONS(6956), 1, anon_sym_LBRACK, - ACTIONS(7833), 1, + ACTIONS(7785), 1, anon_sym_SLASH, - ACTIONS(7853), 1, + ACTIONS(7787), 1, anon_sym_AMP_AMP, - ACTIONS(7855), 1, + ACTIONS(7789), 1, anon_sym_PIPE, - ACTIONS(7857), 1, + ACTIONS(7791), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7793), 1, anon_sym_AMP, - ACTIONS(7871), 1, + ACTIONS(7819), 1, anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, + ACTIONS(7821), 1, anon_sym_QMARK, + ACTIONS(8829), 1, + anon_sym_RBRACK, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [44258] = 20, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + ACTIONS(6956), 1, + anon_sym_LBRACK, + ACTIONS(7785), 1, + anon_sym_SLASH, + ACTIONS(7787), 1, + anon_sym_AMP_AMP, + ACTIONS(7789), 1, + anon_sym_PIPE, + ACTIONS(7791), 1, + anon_sym_CARET, + ACTIONS(7793), 1, + anon_sym_AMP, + ACTIONS(7819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7821), 1, + anon_sym_QMARK, + ACTIONS(8778), 1, + anon_sym_RBRACK, + STATE(3012), 1, + sym_argument_list, + ACTIONS(6960), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7781), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7783), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7795), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7797), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7799), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7801), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [44333] = 6, ACTIONS(10650), 1, - anon_sym_RPAREN, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [39445] = 20, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(8831), 1, - anon_sym_RBRACK, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [39520] = 20, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10652), 1, - anon_sym_SEMI, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [39595] = 20, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(8833), 1, - anon_sym_RBRACK, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [39670] = 20, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10654), 1, - anon_sym_RPAREN, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [39745] = 20, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(8787), 1, - anon_sym_RBRACK, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [39820] = 20, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, + sym_identifier, + ACTIONS(10653), 1, + anon_sym_LBRACE, ACTIONS(10656), 1, - anon_sym_SEMI, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [39895] = 20, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - ACTIONS(7026), 1, - anon_sym_LBRACK, - ACTIONS(7833), 1, - anon_sym_SLASH, - ACTIONS(7853), 1, - anon_sym_AMP_AMP, - ACTIONS(7855), 1, - anon_sym_PIPE, - ACTIONS(7857), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_AMP, - ACTIONS(7871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7873), 1, - anon_sym_QMARK, - ACTIONS(10658), 1, - anon_sym_SEMI, - STATE(3088), 1, - sym_argument_list, - ACTIONS(7032), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7827), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7831), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7839), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7861), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7863), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [39970] = 5, - ACTIONS(8179), 1, anon_sym_COLON, - ACTIONS(10660), 1, - anon_sym_LBRACE, - STATE(4572), 1, + STATE(4580), 1, sym_enumerator_list, ACTIONS(3), 7, sym_comment, @@ -605536,7 +602490,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8177), 23, + ACTIONS(8184), 22, anon_sym__Atomic, anon_sym_signed, anon_sym_unsigned, @@ -605544,12 +602498,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, + anon_sym_struct, + anon_sym_union, anon_sym_NS_ENUM, anon_sym_NS_ERROR_ENUM, anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -605560,12 +602513,12 @@ static const uint16_t ts_small_parse_table[] = { sym_IMP, sym_BOOL, sym_auto, - [40014] = 5, - ACTIONS(8228), 1, - anon_sym_COLON, - ACTIONS(10663), 1, + [44379] = 5, + ACTIONS(10659), 1, anon_sym_LBRACE, - STATE(4560), 1, + ACTIONS(10662), 1, + anon_sym_COLON, + STATE(4601), 1, sym_enumerator_list, ACTIONS(3), 7, sym_comment, @@ -605575,7 +602528,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8226), 23, + ACTIONS(8147), 23, anon_sym__Atomic, anon_sym_signed, anon_sym_unsigned, @@ -605583,12 +602536,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -605599,13 +602552,9 @@ static const uint16_t ts_small_parse_table[] = { sym_IMP, sym_BOOL, sym_auto, - [40058] = 5, + [44423] = 4, ACTIONS(10665), 1, - anon_sym_LBRACE, - ACTIONS(10668), 1, - anon_sym_COLON, - STATE(4577), 1, - sym_enumerator_list, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -605614,37 +602563,36 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8240), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [40102] = 5, - ACTIONS(8221), 1, - anon_sym_COLON, - ACTIONS(10146), 1, - anon_sym_LBRACE, - STATE(4584), 1, - sym_field_declaration_list, + ACTIONS(6777), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(6779), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [44465] = 4, + ACTIONS(10667), 1, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -605653,158 +602601,44 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8219), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, + ACTIONS(6777), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(6779), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [44507] = 7, + ACTIONS(10669), 1, sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [40146] = 5, - ACTIONS(8235), 1, - anon_sym_COLON, - ACTIONS(10146), 1, - anon_sym_LBRACE, - STATE(4586), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8233), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(10675), 1, sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [40190] = 5, - ACTIONS(8248), 1, - anon_sym_COLON, - ACTIONS(10663), 1, - anon_sym_LBRACE, - STATE(4583), 1, - sym_enumerator_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8246), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [40234] = 5, - ACTIONS(8260), 1, - anon_sym_COLON, - ACTIONS(10146), 1, - anon_sym_LBRACE, - STATE(4578), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8258), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [40278] = 7, - ACTIONS(10671), 1, - sym_identifier, - ACTIONS(10677), 1, - sym_primitive_type, - STATE(4549), 1, + STATE(4562), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8006), 2, + ACTIONS(7933), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(10674), 4, + ACTIONS(10672), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -605817,14 +602651,14 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8008), 17, + ACTIONS(7935), 17, anon_sym__Atomic, anon_sym_enum, + anon_sym_struct, + anon_sym_union, anon_sym_NS_ENUM, anon_sym_NS_ERROR_ENUM, anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -605835,13 +602669,52 @@ static const uint16_t ts_small_parse_table[] = { sym_IMP, sym_BOOL, sym_auto, - [40326] = 5, + [44555] = 5, + ACTIONS(8162), 1, + anon_sym_COLON, + ACTIONS(10157), 1, + anon_sym_LBRACE, + STATE(4577), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8160), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [44599] = 5, ACTIONS(8204), 1, anon_sym_COLON, - ACTIONS(10146), 1, + ACTIONS(10678), 1, anon_sym_LBRACE, - STATE(4565), 1, - sym_field_declaration_list, + STATE(4591), 1, + sym_enumerator_list, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -605858,12 +602731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -605874,51 +602747,12 @@ static const uint16_t ts_small_parse_table[] = { sym_IMP, sym_BOOL, sym_auto, - [40370] = 5, - ACTIONS(8179), 1, + [44643] = 5, + ACTIONS(8197), 1, anon_sym_COLON, - ACTIONS(10663), 1, + ACTIONS(10157), 1, anon_sym_LBRACE, - STATE(4572), 1, - sym_enumerator_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8177), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [40414] = 5, - ACTIONS(8260), 1, - anon_sym_COLON, - ACTIONS(10680), 1, - anon_sym_LBRACE, - STATE(4578), 1, + STATE(4597), 1, sym_field_declaration_list, ACTIONS(3), 7, sym_comment, @@ -605928,7 +602762,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8258), 23, + ACTIONS(8195), 23, anon_sym__Atomic, anon_sym_signed, anon_sym_unsigned, @@ -605936,12 +602770,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -605952,325 +602786,246 @@ static const uint16_t ts_small_parse_table[] = { sym_IMP, sym_BOOL, sym_auto, - [40458] = 6, - ACTIONS(10663), 1, + [44687] = 5, + ACTIONS(8171), 1, + anon_sym_COLON, + ACTIONS(10157), 1, anon_sym_LBRACE, + STATE(4596), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8169), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [44731] = 5, + STATE(4562), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7893), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(10680), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7891), 19, + anon_sym__Atomic, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [44775] = 5, + ACTIONS(8222), 1, + anon_sym_COLON, + ACTIONS(10678), 1, + anon_sym_LBRACE, + STATE(4603), 1, + sym_enumerator_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8220), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [44819] = 5, + ACTIONS(8190), 1, + anon_sym_COLON, + ACTIONS(10157), 1, + anon_sym_LBRACE, + STATE(4600), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8188), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [44863] = 5, + ACTIONS(8136), 1, + anon_sym_COLON, + ACTIONS(10678), 1, + anon_sym_LBRACE, + STATE(4598), 1, + sym_enumerator_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8134), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [44907] = 5, + ACTIONS(8158), 1, + anon_sym_COLON, + ACTIONS(10678), 1, + anon_sym_LBRACE, + STATE(4585), 1, + sym_enumerator_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8156), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [44951] = 5, + ACTIONS(8162), 1, + anon_sym_COLON, ACTIONS(10683), 1, - sym_identifier, - ACTIONS(10686), 1, - anon_sym_COLON, - STATE(4573), 1, - sym_enumerator_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8195), 22, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [40504] = 4, - ACTIONS(10689), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(6820), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6822), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [40546] = 5, - ACTIONS(10663), 1, anon_sym_LBRACE, - ACTIONS(10691), 1, - anon_sym_COLON, STATE(4577), 1, - sym_enumerator_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8240), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [40590] = 6, - ACTIONS(10694), 1, - sym_identifier, - ACTIONS(10697), 1, - anon_sym_LBRACE, - ACTIONS(10700), 1, - anon_sym_COLON, - STATE(4573), 1, - sym_enumerator_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8195), 22, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [40636] = 5, - ACTIONS(8211), 1, - anon_sym_COLON, - ACTIONS(10663), 1, - anon_sym_LBRACE, - STATE(4570), 1, - sym_enumerator_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8209), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [40680] = 5, - STATE(4549), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8016), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(10703), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8014), 19, - anon_sym__Atomic, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [40724] = 5, - ACTIONS(8248), 1, - anon_sym_COLON, - ACTIONS(10706), 1, - anon_sym_LBRACE, - STATE(4583), 1, - sym_enumerator_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8246), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [40768] = 5, - ACTIONS(8228), 1, - anon_sym_COLON, - ACTIONS(10709), 1, - anon_sym_LBRACE, - STATE(4560), 1, - sym_enumerator_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8226), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [40812] = 5, - ACTIONS(8221), 1, - anon_sym_COLON, - ACTIONS(10712), 1, - anon_sym_LBRACE, - STATE(4584), 1, sym_field_declaration_list, ACTIONS(3), 7, sym_comment, @@ -606280,7 +603035,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8219), 23, + ACTIONS(8160), 23, anon_sym__Atomic, anon_sym_signed, anon_sym_unsigned, @@ -606288,12 +603043,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -606304,13 +603059,13 @@ static const uint16_t ts_small_parse_table[] = { sym_IMP, sym_BOOL, sym_auto, - [40856] = 5, + [44995] = 5, ACTIONS(8204), 1, anon_sym_COLON, - ACTIONS(10715), 1, + ACTIONS(10686), 1, anon_sym_LBRACE, - STATE(4565), 1, - sym_field_declaration_list, + STATE(4591), 1, + sym_enumerator_list, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -606327,12 +603082,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -606343,12 +603098,12 @@ static const uint16_t ts_small_parse_table[] = { sym_IMP, sym_BOOL, sym_auto, - [40900] = 5, - ACTIONS(8235), 1, + [45039] = 5, + ACTIONS(8197), 1, anon_sym_COLON, - ACTIONS(10718), 1, + ACTIONS(10689), 1, anon_sym_LBRACE, - STATE(4586), 1, + STATE(4597), 1, sym_field_declaration_list, ACTIONS(3), 7, sym_comment, @@ -606358,7 +603113,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8233), 23, + ACTIONS(8195), 23, anon_sym__Atomic, anon_sym_signed, anon_sym_unsigned, @@ -606366,12 +603121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -606382,9 +603137,13 @@ static const uint16_t ts_small_parse_table[] = { sym_IMP, sym_BOOL, sym_auto, - [40944] = 4, - ACTIONS(10721), 1, - anon_sym_RPAREN, + [45083] = 5, + ACTIONS(8171), 1, + anon_sym_COLON, + ACTIONS(10692), 1, + anon_sym_LBRACE, + STATE(4596), 1, + sym_field_declaration_list, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -606393,39 +603152,36 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(6820), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6822), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [40986] = 5, - ACTIONS(8211), 1, + ACTIONS(8169), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [45127] = 5, + ACTIONS(8222), 1, anon_sym_COLON, - ACTIONS(10723), 1, + ACTIONS(10695), 1, anon_sym_LBRACE, - STATE(4570), 1, + STATE(4603), 1, sym_enumerator_list, ACTIONS(3), 7, sym_comment, @@ -606435,7 +603191,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8209), 23, + ACTIONS(8220), 23, anon_sym__Atomic, anon_sym_signed, anon_sym_unsigned, @@ -606443,12 +603199,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -606459,8 +603215,204 @@ static const uint16_t ts_small_parse_table[] = { sym_IMP, sym_BOOL, sym_auto, - [41030] = 3, - ACTIONS(8509), 2, + [45171] = 5, + ACTIONS(8190), 1, + anon_sym_COLON, + ACTIONS(10698), 1, + anon_sym_LBRACE, + STATE(4600), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8188), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [45215] = 5, + ACTIONS(8136), 1, + anon_sym_COLON, + ACTIONS(10701), 1, + anon_sym_LBRACE, + STATE(4598), 1, + sym_enumerator_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8134), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [45259] = 5, + ACTIONS(8158), 1, + anon_sym_COLON, + ACTIONS(10704), 1, + anon_sym_LBRACE, + STATE(4585), 1, + sym_enumerator_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8156), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [45303] = 5, + ACTIONS(10678), 1, + anon_sym_LBRACE, + ACTIONS(10707), 1, + anon_sym_COLON, + STATE(4601), 1, + sym_enumerator_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8147), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [45347] = 6, + ACTIONS(10678), 1, + anon_sym_LBRACE, + ACTIONS(10710), 1, + sym_identifier, + ACTIONS(10713), 1, + anon_sym_COLON, + STATE(4580), 1, + sym_enumerator_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8184), 22, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [45393] = 3, + ACTIONS(8522), 2, anon_sym_LBRACE, anon_sym_COLON, ACTIONS(3), 7, @@ -606471,7 +603423,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8507), 23, + ACTIONS(8520), 23, anon_sym__Atomic, anon_sym_signed, anon_sym_unsigned, @@ -606479,12 +603431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -606495,8 +603447,8 @@ static const uint16_t ts_small_parse_table[] = { sym_IMP, sym_BOOL, sym_auto, - [41069] = 3, - ACTIONS(8291), 2, + [45432] = 3, + ACTIONS(8400), 2, anon_sym_LBRACE, anon_sym_COLON, ACTIONS(3), 7, @@ -606507,7 +603459,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8289), 23, + ACTIONS(8398), 23, anon_sym__Atomic, anon_sym_signed, anon_sym_unsigned, @@ -606515,12 +603467,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -606531,44 +603483,8 @@ static const uint16_t ts_small_parse_table[] = { sym_IMP, sym_BOOL, sym_auto, - [41108] = 3, - ACTIONS(9362), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10726), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41147] = 3, - ACTIONS(8560), 2, + [45471] = 3, + ACTIONS(8518), 2, anon_sym_LBRACE, anon_sym_COLON, ACTIONS(3), 7, @@ -606579,7 +603495,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8558), 23, + ACTIONS(8516), 23, anon_sym__Atomic, anon_sym_signed, anon_sym_unsigned, @@ -606587,12 +603503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -606603,8 +603519,8 @@ static const uint16_t ts_small_parse_table[] = { sym_IMP, sym_BOOL, sym_auto, - [41186] = 3, - ACTIONS(8610), 2, + [45510] = 3, + ACTIONS(8488), 2, anon_sym_LBRACE, anon_sym_COLON, ACTIONS(3), 7, @@ -606615,7 +603531,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8608), 23, + ACTIONS(8486), 23, anon_sym__Atomic, anon_sym_signed, anon_sym_unsigned, @@ -606623,12 +603539,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -606639,907 +603555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_IMP, sym_BOOL, sym_auto, - [41225] = 3, - ACTIONS(8598), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8596), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41264] = 3, - ACTIONS(8478), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8476), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41303] = 3, - ACTIONS(8650), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8648), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41342] = 3, - ACTIONS(8295), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8293), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41381] = 3, - ACTIONS(8390), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8388), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41420] = 3, - ACTIONS(8386), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8384), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41459] = 3, - ACTIONS(8490), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8488), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41498] = 3, - ACTIONS(8634), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8632), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41537] = 3, - ACTIONS(8574), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8572), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41576] = 3, - ACTIONS(8602), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8600), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41615] = 3, - ACTIONS(8582), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8580), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41654] = 3, - ACTIONS(8501), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8499), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41693] = 3, - ACTIONS(8642), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8640), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41732] = 3, - ACTIONS(8614), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8612), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41771] = 3, - ACTIONS(8548), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8546), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41810] = 3, - ACTIONS(8536), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8534), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41849] = 3, - ACTIONS(8430), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8428), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41888] = 3, - ACTIONS(8513), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8511), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41927] = 3, - ACTIONS(8630), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8628), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [41966] = 3, - ACTIONS(8654), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8652), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [42005] = 3, - ACTIONS(8454), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8452), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [42044] = 3, - ACTIONS(8521), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8519), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [42083] = 3, - ACTIONS(8590), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8588), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [42122] = 3, - ACTIONS(8586), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8584), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [42161] = 3, - ACTIONS(8578), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(8576), 23, - anon_sym__Atomic, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, - anon_sym_struct, - anon_sym_union, - sym_identifier, - anon_sym_typeof, - anon_sym___typeof, - anon_sym___typeof__, - sym_id, - sym_instancetype, - sym_Class, - sym_SEL, - sym_IMP, - sym_BOOL, - sym_auto, - [42200] = 3, + [45549] = 3, ACTIONS(8638), 2, anon_sym_LBRACE, anon_sym_COLON, @@ -607559,12 +603575,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -607575,8 +603591,8 @@ static const uint16_t ts_small_parse_table[] = { sym_IMP, sym_BOOL, sym_auto, - [42239] = 3, - ACTIONS(8398), 2, + [45588] = 3, + ACTIONS(8372), 2, anon_sym_LBRACE, anon_sym_COLON, ACTIONS(3), 7, @@ -607587,7 +603603,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(8396), 23, + ACTIONS(8370), 23, anon_sym__Atomic, anon_sym_signed, anon_sym_unsigned, @@ -607595,12 +603611,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_short, sym_primitive_type, anon_sym_enum, - anon_sym_NS_ENUM, - anon_sym_NS_ERROR_ENUM, - anon_sym_NS_OPTIONS, anon_sym_struct, anon_sym_union, sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, anon_sym_typeof, anon_sym___typeof, anon_sym___typeof__, @@ -607611,582 +603627,1000 @@ static const uint16_t ts_small_parse_table[] = { sym_IMP, sym_BOOL, sym_auto, - [42278] = 6, + [45627] = 3, + ACTIONS(8331), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8329), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [45666] = 3, + ACTIONS(8343), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8341), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [45705] = 3, + ACTIONS(8284), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8282), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [45744] = 3, + ACTIONS(8526), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8524), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [45783] = 3, + ACTIONS(9384), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10716), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [45822] = 3, + ACTIONS(8656), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8654), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [45861] = 3, + ACTIONS(8622), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8620), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [45900] = 3, + ACTIONS(8237), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8235), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [45939] = 3, + ACTIONS(8634), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8632), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [45978] = 3, + ACTIONS(8598), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8596), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [46017] = 3, + ACTIONS(8514), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8512), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [46056] = 3, + ACTIONS(8335), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8333), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [46095] = 3, + ACTIONS(8492), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8490), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [46134] = 3, + ACTIONS(8404), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8402), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [46173] = 3, + ACTIONS(8534), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8532), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [46212] = 3, + ACTIONS(8280), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8278), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [46251] = 3, + ACTIONS(8480), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8478), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [46290] = 3, + ACTIONS(8500), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8498), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [46329] = 3, + ACTIONS(8472), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8470), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [46368] = 3, + ACTIONS(8460), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8458), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [46407] = 3, + ACTIONS(8618), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8616), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [46446] = 3, + ACTIONS(8323), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8321), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [46485] = 3, + ACTIONS(8550), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8548), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [46524] = 3, + ACTIONS(8354), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8352), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [46563] = 3, + ACTIONS(8484), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8482), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [46602] = 3, + ACTIONS(8301), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(8299), 23, + anon_sym__Atomic, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + anon_sym_NS_ENUM, + anon_sym_NS_ERROR_ENUM, + anon_sym_NS_OPTIONS, + anon_sym_typeof, + anon_sym___typeof, + anon_sym___typeof__, + sym_id, + sym_instancetype, + sym_Class, + sym_SEL, + sym_IMP, + sym_BOOL, + sym_auto, + [46641] = 6, + ACTIONS(10718), 1, + anon_sym_RPAREN, + ACTIONS(10720), 1, + anon_sym_getter, + ACTIONS(10722), 1, + anon_sym_setter, + STATE(5000), 3, + sym__property_attribute, + sym_getter, + sym_setter, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10724), 18, + sym_nonnull, + sym_nullable, + sym_null_resettable, + sym_unsafe_unretained, + sym_null_unspecified, + sym_direct, + sym_readwrite, + sym_readonly, + sym_strong, + sym_weak, + sym_copy, + sym_assign, + sym_retain, + sym_atomic, + sym_nonatomic, + sym_class, + sym_NS_NONATOMIC_IOSONLY, + sym_DISPATCH_QUEUE_REFERENCE_TYPE, + [46685] = 11, + ACTIONS(10726), 1, + sym_identifier, ACTIONS(10728), 1, anon_sym_RPAREN, ACTIONS(10730), 1, - anon_sym_getter, + anon_sym_LPAREN2, ACTIONS(10732), 1, - anon_sym_setter, - STATE(4986), 3, - sym__property_attribute, - sym_getter, - sym_setter, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10734), 18, - sym_nonnull, - sym_nullable, - sym_null_resettable, - sym_unsafe_unretained, - sym_null_unspecified, - sym_direct, - sym_readwrite, - sym_readonly, - sym_strong, - sym_weak, - sym_copy, - sym_assign, - sym_retain, - sym_atomic, - sym_nonatomic, - sym_class, - sym_NS_NONATOMIC_IOSONLY, - sym_DISPATCH_QUEUE_REFERENCE_TYPE, - [42322] = 11, - ACTIONS(10736), 1, - sym_identifier, + anon_sym_defined, ACTIONS(10738), 1, - anon_sym_RPAREN, - ACTIONS(10740), 1, - anon_sym_LPAREN2, + sym_number_literal, ACTIONS(10742), 1, - anon_sym_defined, - ACTIONS(10748), 1, - sym_number_literal, - ACTIONS(10752), 1, anon_sym___has_include, - ACTIONS(10744), 2, + ACTIONS(10734), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10746), 2, + ACTIONS(10736), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10750), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4629), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [42375] = 5, - ACTIONS(10730), 1, - anon_sym_getter, - ACTIONS(10732), 1, - anon_sym_setter, - STATE(5140), 3, - sym__property_attribute, - sym_getter, - sym_setter, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10754), 18, - sym_nonnull, - sym_nullable, - sym_null_resettable, - sym_unsafe_unretained, - sym_null_unspecified, - sym_direct, - sym_readwrite, - sym_readonly, - sym_strong, - sym_weak, - sym_copy, - sym_assign, - sym_retain, - sym_atomic, - sym_nonatomic, - sym_class, - sym_NS_NONATOMIC_IOSONLY, - sym_DISPATCH_QUEUE_REFERENCE_TYPE, - [42416] = 11, - ACTIONS(10736), 1, - sym_identifier, - ACTIONS(10740), 1, - anon_sym_LPAREN2, - ACTIONS(10742), 1, - anon_sym_defined, - ACTIONS(10752), 1, - anon_sym___has_include, - ACTIONS(10756), 1, - anon_sym_RPAREN, - ACTIONS(10758), 1, - sym_number_literal, - ACTIONS(10744), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10750), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4630), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [42469] = 10, - ACTIONS(10760), 1, - sym_identifier, - ACTIONS(10762), 1, - anon_sym_LPAREN2, - ACTIONS(10764), 1, - anon_sym_defined, - ACTIONS(10770), 1, - sym_number_literal, - ACTIONS(10774), 1, - anon_sym___has_include, - ACTIONS(10766), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10768), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10772), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4658), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [42519] = 10, - ACTIONS(10736), 1, - sym_identifier, - ACTIONS(10740), 1, - anon_sym_LPAREN2, - ACTIONS(10742), 1, - anon_sym_defined, - ACTIONS(10752), 1, - anon_sym___has_include, - ACTIONS(10776), 1, - sym_number_literal, - ACTIONS(10744), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10750), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4633), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [42569] = 10, - ACTIONS(10760), 1, - sym_identifier, - ACTIONS(10762), 1, - anon_sym_LPAREN2, - ACTIONS(10764), 1, - anon_sym_defined, - ACTIONS(10774), 1, - anon_sym___has_include, - ACTIONS(10778), 1, - sym_number_literal, - ACTIONS(10766), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10768), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10772), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4681), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [42619] = 10, - ACTIONS(10760), 1, - sym_identifier, - ACTIONS(10762), 1, - anon_sym_LPAREN2, - ACTIONS(10764), 1, - anon_sym_defined, - ACTIONS(10774), 1, - anon_sym___has_include, - ACTIONS(10780), 1, - sym_number_literal, - ACTIONS(10766), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10768), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10772), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4680), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [42669] = 10, - ACTIONS(10760), 1, - sym_identifier, - ACTIONS(10762), 1, - anon_sym_LPAREN2, - ACTIONS(10764), 1, - anon_sym_defined, - ACTIONS(10774), 1, - anon_sym___has_include, - ACTIONS(10782), 1, - sym_number_literal, - ACTIONS(10766), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10768), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10772), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4653), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [42719] = 10, - ACTIONS(10760), 1, - sym_identifier, - ACTIONS(10762), 1, - anon_sym_LPAREN2, - ACTIONS(10764), 1, - anon_sym_defined, - ACTIONS(10774), 1, - anon_sym___has_include, - ACTIONS(10784), 1, - sym_number_literal, - ACTIONS(10766), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10768), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10772), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4675), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [42769] = 10, - ACTIONS(10760), 1, - sym_identifier, - ACTIONS(10762), 1, - anon_sym_LPAREN2, - ACTIONS(10764), 1, - anon_sym_defined, - ACTIONS(10774), 1, - anon_sym___has_include, - ACTIONS(10786), 1, - sym_number_literal, - ACTIONS(10766), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10768), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10772), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4674), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [42819] = 10, - ACTIONS(10736), 1, - sym_identifier, - ACTIONS(10740), 1, - anon_sym_LPAREN2, - ACTIONS(10742), 1, - anon_sym_defined, - ACTIONS(10752), 1, - anon_sym___has_include, - ACTIONS(10788), 1, - sym_number_literal, - ACTIONS(10744), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10750), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4631), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [42869] = 10, - ACTIONS(10760), 1, - sym_identifier, - ACTIONS(10762), 1, - anon_sym_LPAREN2, - ACTIONS(10764), 1, - anon_sym_defined, - ACTIONS(10774), 1, - anon_sym___has_include, - ACTIONS(10790), 1, - sym_number_literal, - ACTIONS(10766), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10768), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10772), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4652), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [42919] = 10, - ACTIONS(10736), 1, - sym_identifier, - ACTIONS(10740), 1, - anon_sym_LPAREN2, - ACTIONS(10742), 1, - anon_sym_defined, - ACTIONS(10752), 1, - anon_sym___has_include, - ACTIONS(10792), 1, - sym_number_literal, - ACTIONS(10744), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10750), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4676), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [42969] = 10, - ACTIONS(10736), 1, - sym_identifier, - ACTIONS(10740), 1, - anon_sym_LPAREN2, - ACTIONS(10742), 1, - anon_sym_defined, - ACTIONS(10752), 1, - anon_sym___has_include, - ACTIONS(10794), 1, - sym_number_literal, - ACTIONS(10744), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10750), 5, + ACTIONS(10740), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -608209,29 +604643,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_binary_expression, sym_char_literal, sym_preproc_has_include, - [43019] = 10, - ACTIONS(10760), 1, - sym_identifier, - ACTIONS(10762), 1, - anon_sym_LPAREN2, - ACTIONS(10764), 1, - anon_sym_defined, - ACTIONS(10774), 1, - anon_sym___has_include, - ACTIONS(10796), 1, - sym_number_literal, - ACTIONS(10766), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10768), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10772), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, + [46738] = 5, + ACTIONS(10720), 1, + anon_sym_getter, + ACTIONS(10722), 1, + anon_sym_setter, + STATE(5222), 3, + sym__property_attribute, + sym_getter, + sym_setter, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -608240,33 +604660,45 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - STATE(4672), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [43069] = 10, - ACTIONS(10736), 1, + ACTIONS(10744), 18, + sym_nonnull, + sym_nullable, + sym_null_resettable, + sym_unsafe_unretained, + sym_null_unspecified, + sym_direct, + sym_readwrite, + sym_readonly, + sym_strong, + sym_weak, + sym_copy, + sym_assign, + sym_retain, + sym_atomic, + sym_nonatomic, + sym_class, + sym_NS_NONATOMIC_IOSONLY, + sym_DISPATCH_QUEUE_REFERENCE_TYPE, + [46779] = 11, + ACTIONS(10726), 1, sym_identifier, - ACTIONS(10740), 1, + ACTIONS(10730), 1, anon_sym_LPAREN2, + ACTIONS(10732), 1, + anon_sym_defined, ACTIONS(10742), 1, - anon_sym_defined, - ACTIONS(10752), 1, anon_sym___has_include, - ACTIONS(10798), 1, + ACTIONS(10746), 1, + anon_sym_RPAREN, + ACTIONS(10748), 1, sym_number_literal, - ACTIONS(10744), 2, + ACTIONS(10734), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10746), 2, + ACTIONS(10736), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10750), 5, + ACTIONS(10740), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -608280,7 +604712,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - STATE(4640), 8, + STATE(4648), 8, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -608289,144 +604721,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_binary_expression, sym_char_literal, sym_preproc_has_include, - [43119] = 10, - ACTIONS(10760), 1, + [46832] = 10, + ACTIONS(10726), 1, sym_identifier, - ACTIONS(10762), 1, + ACTIONS(10730), 1, anon_sym_LPAREN2, - ACTIONS(10764), 1, + ACTIONS(10732), 1, anon_sym_defined, - ACTIONS(10774), 1, - anon_sym___has_include, - ACTIONS(10800), 1, - sym_number_literal, - ACTIONS(10766), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10768), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10772), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4667), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [43169] = 10, - ACTIONS(10760), 1, - sym_identifier, - ACTIONS(10762), 1, - anon_sym_LPAREN2, - ACTIONS(10764), 1, - anon_sym_defined, - ACTIONS(10774), 1, - anon_sym___has_include, - ACTIONS(10802), 1, - sym_number_literal, - ACTIONS(10766), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10768), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10772), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4665), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [43219] = 10, - ACTIONS(10760), 1, - sym_identifier, - ACTIONS(10762), 1, - anon_sym_LPAREN2, - ACTIONS(10764), 1, - anon_sym_defined, - ACTIONS(10774), 1, - anon_sym___has_include, - ACTIONS(10804), 1, - sym_number_literal, - ACTIONS(10766), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10768), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10772), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4654), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [43269] = 10, - ACTIONS(10736), 1, - sym_identifier, - ACTIONS(10740), 1, - anon_sym_LPAREN2, ACTIONS(10742), 1, - anon_sym_defined, - ACTIONS(10752), 1, anon_sym___has_include, - ACTIONS(10806), 1, + ACTIONS(10750), 1, sym_number_literal, - ACTIONS(10744), 2, + ACTIONS(10734), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10746), 2, + ACTIONS(10736), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10750), 5, + ACTIONS(10740), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -608440,7 +604752,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - STATE(4649), 8, + STATE(4694), 8, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -608449,24 +604761,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_binary_expression, sym_char_literal, sym_preproc_has_include, - [43319] = 10, - ACTIONS(10760), 1, + [46882] = 10, + ACTIONS(10752), 1, sym_identifier, + ACTIONS(10754), 1, + anon_sym_LPAREN2, + ACTIONS(10756), 1, + anon_sym_defined, ACTIONS(10762), 1, - anon_sym_LPAREN2, - ACTIONS(10764), 1, - anon_sym_defined, - ACTIONS(10774), 1, - anon_sym___has_include, - ACTIONS(10808), 1, sym_number_literal, - ACTIONS(10766), 2, + ACTIONS(10766), 1, + anon_sym___has_include, + ACTIONS(10758), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10768), 2, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10772), 5, + ACTIONS(10764), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -608480,7 +604792,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - STATE(4668), 8, + STATE(4692), 8, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -608489,24 +604801,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_binary_expression, sym_char_literal, sym_preproc_has_include, - [43369] = 10, - ACTIONS(10736), 1, - sym_identifier, - ACTIONS(10740), 1, - anon_sym_LPAREN2, - ACTIONS(10742), 1, - anon_sym_defined, + [46932] = 10, ACTIONS(10752), 1, + sym_identifier, + ACTIONS(10754), 1, + anon_sym_LPAREN2, + ACTIONS(10756), 1, + anon_sym_defined, + ACTIONS(10766), 1, anon_sym___has_include, - ACTIONS(10810), 1, + ACTIONS(10768), 1, sym_number_literal, - ACTIONS(10744), 2, + ACTIONS(10758), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10746), 2, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10750), 5, + ACTIONS(10764), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -608520,7 +604832,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - STATE(4662), 8, + STATE(4687), 8, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -608529,64 +604841,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_binary_expression, sym_char_literal, sym_preproc_has_include, - [43419] = 10, - ACTIONS(10736), 1, - sym_identifier, - ACTIONS(10740), 1, - anon_sym_LPAREN2, - ACTIONS(10742), 1, - anon_sym_defined, + [46982] = 10, ACTIONS(10752), 1, - anon_sym___has_include, - ACTIONS(10812), 1, - sym_number_literal, - ACTIONS(10744), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10750), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4651), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [43469] = 10, - ACTIONS(10760), 1, sym_identifier, - ACTIONS(10762), 1, + ACTIONS(10754), 1, anon_sym_LPAREN2, - ACTIONS(10764), 1, + ACTIONS(10756), 1, anon_sym_defined, - ACTIONS(10774), 1, + ACTIONS(10766), 1, anon_sym___has_include, - ACTIONS(10814), 1, + ACTIONS(10770), 1, sym_number_literal, - ACTIONS(10766), 2, + ACTIONS(10758), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10768), 2, + ACTIONS(10760), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10772), 5, + ACTIONS(10764), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -608609,24 +604881,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_binary_expression, sym_char_literal, sym_preproc_has_include, - [43519] = 10, - ACTIONS(10760), 1, + [47032] = 10, + ACTIONS(10726), 1, sym_identifier, - ACTIONS(10762), 1, + ACTIONS(10730), 1, anon_sym_LPAREN2, - ACTIONS(10764), 1, + ACTIONS(10732), 1, anon_sym_defined, - ACTIONS(10774), 1, + ACTIONS(10742), 1, anon_sym___has_include, - ACTIONS(10816), 1, + ACTIONS(10772), 1, sym_number_literal, - ACTIONS(10766), 2, + ACTIONS(10734), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10768), 2, + ACTIONS(10736), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10772), 5, + ACTIONS(10740), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -608640,7 +604912,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - STATE(4671), 8, + STATE(4668), 8, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -608649,24 +604921,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_binary_expression, sym_char_literal, sym_preproc_has_include, - [43569] = 10, - ACTIONS(10760), 1, + [47082] = 10, + ACTIONS(10726), 1, sym_identifier, - ACTIONS(10762), 1, + ACTIONS(10730), 1, anon_sym_LPAREN2, - ACTIONS(10764), 1, + ACTIONS(10732), 1, anon_sym_defined, - ACTIONS(10774), 1, + ACTIONS(10742), 1, anon_sym___has_include, - ACTIONS(10818), 1, + ACTIONS(10774), 1, sym_number_literal, - ACTIONS(10766), 2, + ACTIONS(10734), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10768), 2, + ACTIONS(10736), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10772), 5, + ACTIONS(10740), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -608680,7 +604952,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - STATE(4670), 8, + STATE(4667), 8, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -608689,104 +604961,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_binary_expression, sym_char_literal, sym_preproc_has_include, - [43619] = 10, - ACTIONS(10760), 1, + [47132] = 10, + ACTIONS(10726), 1, sym_identifier, - ACTIONS(10762), 1, + ACTIONS(10730), 1, anon_sym_LPAREN2, - ACTIONS(10764), 1, + ACTIONS(10732), 1, anon_sym_defined, - ACTIONS(10774), 1, + ACTIONS(10742), 1, anon_sym___has_include, - ACTIONS(10820), 1, + ACTIONS(10776), 1, sym_number_literal, - ACTIONS(10766), 2, + ACTIONS(10734), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10768), 2, + ACTIONS(10736), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10772), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4663), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [43669] = 10, - ACTIONS(10760), 1, - sym_identifier, - ACTIONS(10762), 1, - anon_sym_LPAREN2, - ACTIONS(10764), 1, - anon_sym_defined, - ACTIONS(10774), 1, - anon_sym___has_include, - ACTIONS(10822), 1, - sym_number_literal, - ACTIONS(10766), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10768), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10772), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4656), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [43719] = 10, - ACTIONS(10760), 1, - sym_identifier, - ACTIONS(10762), 1, - anon_sym_LPAREN2, - ACTIONS(10764), 1, - anon_sym_defined, - ACTIONS(10774), 1, - anon_sym___has_include, - ACTIONS(10824), 1, - sym_number_literal, - ACTIONS(10766), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10768), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10772), 5, + ACTIONS(10740), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -608809,292 +605001,932 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_binary_expression, sym_char_literal, sym_preproc_has_include, - [43769] = 10, - ACTIONS(10736), 1, + [47182] = 10, + ACTIONS(10726), 1, sym_identifier, - ACTIONS(10740), 1, + ACTIONS(10730), 1, anon_sym_LPAREN2, - ACTIONS(10742), 1, + ACTIONS(10732), 1, anon_sym_defined, - ACTIONS(10752), 1, + ACTIONS(10742), 1, anon_sym___has_include, + ACTIONS(10778), 1, + sym_number_literal, + ACTIONS(10734), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10736), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10740), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4665), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [47232] = 10, + ACTIONS(10752), 1, + sym_identifier, + ACTIONS(10754), 1, + anon_sym_LPAREN2, + ACTIONS(10756), 1, + anon_sym_defined, + ACTIONS(10766), 1, + anon_sym___has_include, + ACTIONS(10780), 1, + sym_number_literal, + ACTIONS(10758), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10764), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4684), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [47282] = 10, + ACTIONS(10752), 1, + sym_identifier, + ACTIONS(10754), 1, + anon_sym_LPAREN2, + ACTIONS(10756), 1, + anon_sym_defined, + ACTIONS(10766), 1, + anon_sym___has_include, + ACTIONS(10782), 1, + sym_number_literal, + ACTIONS(10758), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10764), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4697), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [47332] = 10, + ACTIONS(10726), 1, + sym_identifier, + ACTIONS(10730), 1, + anon_sym_LPAREN2, + ACTIONS(10732), 1, + anon_sym_defined, + ACTIONS(10742), 1, + anon_sym___has_include, + ACTIONS(10784), 1, + sym_number_literal, + ACTIONS(10734), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10736), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10740), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4656), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [47382] = 10, + ACTIONS(10726), 1, + sym_identifier, + ACTIONS(10730), 1, + anon_sym_LPAREN2, + ACTIONS(10732), 1, + anon_sym_defined, + ACTIONS(10742), 1, + anon_sym___has_include, + ACTIONS(10786), 1, + sym_number_literal, + ACTIONS(10734), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10736), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10740), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4672), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [47432] = 10, + ACTIONS(10752), 1, + sym_identifier, + ACTIONS(10754), 1, + anon_sym_LPAREN2, + ACTIONS(10756), 1, + anon_sym_defined, + ACTIONS(10766), 1, + anon_sym___has_include, + ACTIONS(10788), 1, + sym_number_literal, + ACTIONS(10758), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10764), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4681), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [47482] = 10, + ACTIONS(10752), 1, + sym_identifier, + ACTIONS(10754), 1, + anon_sym_LPAREN2, + ACTIONS(10756), 1, + anon_sym_defined, + ACTIONS(10766), 1, + anon_sym___has_include, + ACTIONS(10790), 1, + sym_number_literal, + ACTIONS(10758), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10764), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4690), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [47532] = 10, + ACTIONS(10752), 1, + sym_identifier, + ACTIONS(10754), 1, + anon_sym_LPAREN2, + ACTIONS(10756), 1, + anon_sym_defined, + ACTIONS(10766), 1, + anon_sym___has_include, + ACTIONS(10792), 1, + sym_number_literal, + ACTIONS(10758), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10764), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4675), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [47582] = 10, + ACTIONS(10752), 1, + sym_identifier, + ACTIONS(10754), 1, + anon_sym_LPAREN2, + ACTIONS(10756), 1, + anon_sym_defined, + ACTIONS(10766), 1, + anon_sym___has_include, + ACTIONS(10794), 1, + sym_number_literal, + ACTIONS(10758), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10764), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4682), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [47632] = 10, + ACTIONS(10726), 1, + sym_identifier, + ACTIONS(10730), 1, + anon_sym_LPAREN2, + ACTIONS(10732), 1, + anon_sym_defined, + ACTIONS(10742), 1, + anon_sym___has_include, + ACTIONS(10796), 1, + sym_number_literal, + ACTIONS(10734), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10736), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10740), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4663), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [47682] = 10, + ACTIONS(10752), 1, + sym_identifier, + ACTIONS(10754), 1, + anon_sym_LPAREN2, + ACTIONS(10756), 1, + anon_sym_defined, + ACTIONS(10766), 1, + anon_sym___has_include, + ACTIONS(10798), 1, + sym_number_literal, + ACTIONS(10758), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10764), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4701), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [47732] = 10, + ACTIONS(10726), 1, + sym_identifier, + ACTIONS(10730), 1, + anon_sym_LPAREN2, + ACTIONS(10732), 1, + anon_sym_defined, + ACTIONS(10742), 1, + anon_sym___has_include, + ACTIONS(10800), 1, + sym_number_literal, + ACTIONS(10734), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10736), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10740), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4652), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [47782] = 10, + ACTIONS(10752), 1, + sym_identifier, + ACTIONS(10754), 1, + anon_sym_LPAREN2, + ACTIONS(10756), 1, + anon_sym_defined, + ACTIONS(10766), 1, + anon_sym___has_include, + ACTIONS(10802), 1, + sym_number_literal, + ACTIONS(10758), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10764), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4698), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [47832] = 10, + ACTIONS(10726), 1, + sym_identifier, + ACTIONS(10730), 1, + anon_sym_LPAREN2, + ACTIONS(10732), 1, + anon_sym_defined, + ACTIONS(10742), 1, + anon_sym___has_include, + ACTIONS(10804), 1, + sym_number_literal, + ACTIONS(10734), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10736), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10740), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4655), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [47882] = 10, + ACTIONS(10726), 1, + sym_identifier, + ACTIONS(10730), 1, + anon_sym_LPAREN2, + ACTIONS(10732), 1, + anon_sym_defined, + ACTIONS(10742), 1, + anon_sym___has_include, + ACTIONS(10806), 1, + sym_number_literal, + ACTIONS(10734), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10736), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10740), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4651), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [47932] = 10, + ACTIONS(10752), 1, + sym_identifier, + ACTIONS(10754), 1, + anon_sym_LPAREN2, + ACTIONS(10756), 1, + anon_sym_defined, + ACTIONS(10766), 1, + anon_sym___has_include, + ACTIONS(10808), 1, + sym_number_literal, + ACTIONS(10758), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10764), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4674), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [47982] = 10, + ACTIONS(10752), 1, + sym_identifier, + ACTIONS(10754), 1, + anon_sym_LPAREN2, + ACTIONS(10756), 1, + anon_sym_defined, + ACTIONS(10766), 1, + anon_sym___has_include, + ACTIONS(10810), 1, + sym_number_literal, + ACTIONS(10758), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10764), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4700), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [48032] = 10, + ACTIONS(10752), 1, + sym_identifier, + ACTIONS(10754), 1, + anon_sym_LPAREN2, + ACTIONS(10756), 1, + anon_sym_defined, + ACTIONS(10766), 1, + anon_sym___has_include, + ACTIONS(10812), 1, + sym_number_literal, + ACTIONS(10758), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10764), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4683), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [48082] = 10, + ACTIONS(10752), 1, + sym_identifier, + ACTIONS(10754), 1, + anon_sym_LPAREN2, + ACTIONS(10756), 1, + anon_sym_defined, + ACTIONS(10766), 1, + anon_sym___has_include, + ACTIONS(10814), 1, + sym_number_literal, + ACTIONS(10758), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10764), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4695), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [48132] = 10, + ACTIONS(10752), 1, + sym_identifier, + ACTIONS(10754), 1, + anon_sym_LPAREN2, + ACTIONS(10756), 1, + anon_sym_defined, + ACTIONS(10766), 1, + anon_sym___has_include, + ACTIONS(10816), 1, + sym_number_literal, + ACTIONS(10758), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10764), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4676), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [48182] = 10, + ACTIONS(10752), 1, + sym_identifier, + ACTIONS(10754), 1, + anon_sym_LPAREN2, + ACTIONS(10756), 1, + anon_sym_defined, + ACTIONS(10766), 1, + anon_sym___has_include, + ACTIONS(10818), 1, + sym_number_literal, + ACTIONS(10758), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10764), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4680), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [48232] = 10, + ACTIONS(10752), 1, + sym_identifier, + ACTIONS(10754), 1, + anon_sym_LPAREN2, + ACTIONS(10756), 1, + anon_sym_defined, + ACTIONS(10766), 1, + anon_sym___has_include, + ACTIONS(10820), 1, + sym_number_literal, + ACTIONS(10758), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10764), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4691), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [48282] = 10, + ACTIONS(10752), 1, + sym_identifier, + ACTIONS(10754), 1, + anon_sym_LPAREN2, + ACTIONS(10756), 1, + anon_sym_defined, + ACTIONS(10766), 1, + anon_sym___has_include, + ACTIONS(10822), 1, + sym_number_literal, + ACTIONS(10758), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10760), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10764), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4679), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [48332] = 5, ACTIONS(10826), 1, - sym_number_literal, - ACTIONS(10744), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10750), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4643), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [43819] = 10, - ACTIONS(10736), 1, - sym_identifier, - ACTIONS(10740), 1, anon_sym_LPAREN2, - ACTIONS(10742), 1, - anon_sym_defined, - ACTIONS(10752), 1, - anon_sym___has_include, - ACTIONS(10828), 1, - sym_number_literal, - ACTIONS(10744), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10750), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4645), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [43869] = 10, - ACTIONS(10760), 1, - sym_identifier, - ACTIONS(10762), 1, - anon_sym_LPAREN2, - ACTIONS(10764), 1, - anon_sym_defined, - ACTIONS(10774), 1, - anon_sym___has_include, - ACTIONS(10830), 1, - sym_number_literal, - ACTIONS(10766), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10768), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10772), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4677), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [43919] = 10, - ACTIONS(10736), 1, - sym_identifier, - ACTIONS(10740), 1, - anon_sym_LPAREN2, - ACTIONS(10742), 1, - anon_sym_defined, - ACTIONS(10752), 1, - anon_sym___has_include, - ACTIONS(10832), 1, - sym_number_literal, - ACTIONS(10744), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10750), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4639), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [43969] = 10, - ACTIONS(10736), 1, - sym_identifier, - ACTIONS(10740), 1, - anon_sym_LPAREN2, - ACTIONS(10742), 1, - anon_sym_defined, - ACTIONS(10752), 1, - anon_sym___has_include, - ACTIONS(10834), 1, - sym_number_literal, - ACTIONS(10744), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10750), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4637), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [44019] = 10, - ACTIONS(10736), 1, - sym_identifier, - ACTIONS(10740), 1, - anon_sym_LPAREN2, - ACTIONS(10742), 1, - anon_sym_defined, - ACTIONS(10752), 1, - anon_sym___has_include, - ACTIONS(10836), 1, - sym_number_literal, - ACTIONS(10744), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10750), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4647), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [44069] = 10, - ACTIONS(10736), 1, - sym_identifier, - ACTIONS(10740), 1, - anon_sym_LPAREN2, - ACTIONS(10742), 1, - anon_sym_defined, - ACTIONS(10752), 1, - anon_sym___has_include, - ACTIONS(10838), 1, - sym_number_literal, - ACTIONS(10744), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10750), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - STATE(4636), 8, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - sym_preproc_has_include, - [44119] = 5, - ACTIONS(10842), 1, - anon_sym_LPAREN2, - STATE(4644), 1, + STATE(4664), 1, sym_preproc_argument_list, - ACTIONS(10844), 5, + ACTIONS(10828), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -609108,7 +605940,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10840), 15, + ACTIONS(10824), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -609124,35 +605956,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [44159] = 13, - ACTIONS(6521), 1, - anon_sym_LPAREN2, - ACTIONS(6523), 1, - anon_sym_STAR, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(6529), 1, - anon_sym_LBRACK, - ACTIONS(7909), 1, + [48372] = 10, + ACTIONS(10726), 1, sym_identifier, - STATE(4263), 1, + ACTIONS(10730), 1, + anon_sym_LPAREN2, + ACTIONS(10732), 1, + anon_sym_defined, + ACTIONS(10742), 1, + anon_sym___has_include, + ACTIONS(10830), 1, + sym_number_literal, + ACTIONS(10734), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10736), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10740), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4662), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [48422] = 10, + ACTIONS(10726), 1, + sym_identifier, + ACTIONS(10730), 1, + anon_sym_LPAREN2, + ACTIONS(10732), 1, + anon_sym_defined, + ACTIONS(10742), 1, + anon_sym___has_include, + ACTIONS(10832), 1, + sym_number_literal, + ACTIONS(10734), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10736), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10740), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4657), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [48472] = 10, + ACTIONS(10726), 1, + sym_identifier, + ACTIONS(10730), 1, + anon_sym_LPAREN2, + ACTIONS(10732), 1, + anon_sym_defined, + ACTIONS(10742), 1, + anon_sym___has_include, + ACTIONS(10834), 1, + sym_number_literal, + ACTIONS(10734), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10736), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10740), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + STATE(4661), 8, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + sym_preproc_has_include, + [48522] = 13, + ACTIONS(6471), 1, + anon_sym_LPAREN2, + ACTIONS(6473), 1, + anon_sym_STAR, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(6479), 1, + anon_sym_LBRACK, + ACTIONS(7859), 1, + sym_identifier, + STATE(4311), 1, sym_parameter_list, - STATE(4796), 1, + STATE(4811), 1, sym__declarator, - STATE(4810), 1, + STATE(4822), 1, sym__abstract_declarator, - STATE(5835), 1, + STATE(5795), 1, sym_ms_based_modifier, - ACTIONS(10846), 2, + ACTIONS(10836), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, sym_block_declarator, - STATE(4266), 5, + STATE(4310), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -609166,12 +606118,57 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [44214] = 5, + [48577] = 16, + ACTIONS(10838), 1, + anon_sym_COMMA, ACTIONS(10840), 1, - anon_sym_LF, + anon_sym_RPAREN, + ACTIONS(10846), 1, + anon_sym_SLASH, ACTIONS(10848), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10850), 1, + anon_sym_AMP_AMP, + ACTIONS(10852), 1, + anon_sym_PIPE, + ACTIONS(10854), 1, + anon_sym_CARET, + ACTIONS(10856), 1, + anon_sym_AMP, + STATE(4937), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(10842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10858), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10860), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10862), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10864), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [48638] = 5, + ACTIONS(10824), 1, + anon_sym_LF, + ACTIONS(10866), 1, anon_sym_LPAREN2, - STATE(4679), 1, + STATE(4699), 1, sym_preproc_argument_list, ACTIONS(5), 7, sym_comment, @@ -609181,7 +606178,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10844), 18, + ACTIONS(10828), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -609200,41 +606197,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [44253] = 16, - ACTIONS(10850), 1, + [48677] = 16, + ACTIONS(10838), 1, anon_sym_COMMA, + ACTIONS(10846), 1, + anon_sym_SLASH, + ACTIONS(10848), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10850), 1, + anon_sym_AMP_AMP, ACTIONS(10852), 1, - anon_sym_RPAREN, - ACTIONS(10858), 1, - anon_sym_SLASH, - ACTIONS(10860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10862), 1, - anon_sym_AMP_AMP, - ACTIONS(10864), 1, anon_sym_PIPE, - ACTIONS(10866), 1, + ACTIONS(10854), 1, anon_sym_CARET, - ACTIONS(10868), 1, + ACTIONS(10856), 1, anon_sym_AMP, - STATE(4949), 1, + ACTIONS(10868), 1, + anon_sym_RPAREN, + STATE(4969), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(10854), 2, + ACTIONS(10842), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10856), 2, + ACTIONS(10844), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(10870), 2, + ACTIONS(10858), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10872), 2, + ACTIONS(10860), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(10874), 2, + ACTIONS(10862), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10876), 2, + ACTIONS(10864), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(3), 7, @@ -609245,81 +606242,180 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [44314] = 16, + [48738] = 10, + ACTIONS(10846), 1, + anon_sym_SLASH, + ACTIONS(10842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10858), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10860), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10862), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10864), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10872), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(10870), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [48786] = 12, + ACTIONS(10846), 1, + anon_sym_SLASH, + ACTIONS(10852), 1, + anon_sym_PIPE, + ACTIONS(10854), 1, + anon_sym_CARET, + ACTIONS(10856), 1, + anon_sym_AMP, + ACTIONS(10842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10858), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10860), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10862), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10864), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10870), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [48838] = 3, + ACTIONS(10876), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10874), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48872] = 3, + ACTIONS(10880), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10878), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48906] = 14, + ACTIONS(10846), 1, + anon_sym_SLASH, + ACTIONS(10848), 1, + anon_sym_PIPE_PIPE, ACTIONS(10850), 1, - anon_sym_COMMA, - ACTIONS(10858), 1, - anon_sym_SLASH, - ACTIONS(10860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10862), 1, anon_sym_AMP_AMP, - ACTIONS(10864), 1, + ACTIONS(10852), 1, anon_sym_PIPE, - ACTIONS(10866), 1, + ACTIONS(10854), 1, anon_sym_CARET, - ACTIONS(10868), 1, + ACTIONS(10856), 1, anon_sym_AMP, - ACTIONS(10878), 1, - anon_sym_RPAREN, - STATE(4941), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(10854), 2, + ACTIONS(10842), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10856), 2, + ACTIONS(10844), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(10870), 2, + ACTIONS(10858), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10872), 2, + ACTIONS(10860), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(10874), 2, + ACTIONS(10862), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10876), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [44375] = 10, - ACTIONS(10858), 1, - anon_sym_SLASH, - ACTIONS(10854), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10856), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10870), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10872), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10874), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10876), 2, + ACTIONS(10864), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(10882), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(10880), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -609328,71 +606424,27 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [44423] = 3, - ACTIONS(7150), 5, + [48962] = 9, + ACTIONS(10846), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(10842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10860), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7152), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(10862), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(10864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44457] = 14, - ACTIONS(10858), 1, - anon_sym_SLASH, - ACTIONS(10860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10862), 1, - anon_sym_AMP_AMP, - ACTIONS(10864), 1, - anon_sym_PIPE, - ACTIONS(10866), 1, - anon_sym_CARET, - ACTIONS(10868), 1, - anon_sym_AMP, - ACTIONS(10854), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10856), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10870), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, ACTIONS(10872), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10874), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10876), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10884), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_AMP, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -609401,8 +606453,55 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [44513] = 3, - ACTIONS(10888), 5, + ACTIONS(10870), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [49008] = 11, + ACTIONS(10846), 1, + anon_sym_SLASH, + ACTIONS(10856), 1, + anon_sym_AMP, + ACTIONS(10872), 1, + anon_sym_PIPE, + ACTIONS(10842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10858), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10860), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10862), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10864), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10870), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [49058] = 3, + ACTIONS(10886), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -609416,7 +606515,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10886), 15, + ACTIONS(10884), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -609432,8 +606531,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [44547] = 3, - ACTIONS(10892), 5, + [49092] = 3, + ACTIONS(10890), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -609447,7 +606546,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10890), 15, + ACTIONS(10888), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -609463,13 +606562,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [44581] = 5, - ACTIONS(10858), 1, + [49126] = 7, + ACTIONS(10846), 1, anon_sym_SLASH, - ACTIONS(10856), 2, + ACTIONS(10842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10844), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(10882), 4, + ACTIONS(10864), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10872), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -609482,11 +606587,41 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10880), 13, + ACTIONS(10870), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [49168] = 6, + ACTIONS(10846), 1, + anon_sym_SLASH, + ACTIONS(10842), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10872), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10870), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -609496,8 +606631,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [44619] = 3, - ACTIONS(10882), 5, + [49208] = 12, + ACTIONS(10846), 1, + anon_sym_SLASH, + ACTIONS(10854), 1, + anon_sym_CARET, + ACTIONS(10856), 1, + anon_sym_AMP, + ACTIONS(10872), 1, + anon_sym_PIPE, + ACTIONS(10842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10858), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10860), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10862), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10864), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10870), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [49260] = 13, + ACTIONS(10846), 1, + anon_sym_SLASH, + ACTIONS(10850), 1, + anon_sym_AMP_AMP, + ACTIONS(10852), 1, + anon_sym_PIPE, + ACTIONS(10854), 1, + anon_sym_CARET, + ACTIONS(10856), 1, + anon_sym_AMP, + ACTIONS(10842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10858), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10860), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10862), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10864), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10870), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [49314] = 3, + ACTIONS(10894), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -609511,7 +606727,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10880), 15, + ACTIONS(10892), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -609527,8 +606743,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [44653] = 3, - ACTIONS(10896), 5, + [49348] = 3, + ACTIONS(10872), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -609542,7 +606758,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10894), 15, + ACTIONS(10870), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -609558,89 +606774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [44687] = 13, - ACTIONS(10858), 1, - anon_sym_SLASH, - ACTIONS(10862), 1, - anon_sym_AMP_AMP, - ACTIONS(10864), 1, - anon_sym_PIPE, - ACTIONS(10866), 1, - anon_sym_CARET, - ACTIONS(10868), 1, - anon_sym_AMP, - ACTIONS(10854), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10856), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10870), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10872), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10874), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10876), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10880), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [44741] = 12, - ACTIONS(10858), 1, - anon_sym_SLASH, - ACTIONS(10864), 1, - anon_sym_PIPE, - ACTIONS(10866), 1, - anon_sym_CARET, - ACTIONS(10868), 1, - anon_sym_AMP, - ACTIONS(10854), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10856), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10870), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10872), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10874), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10876), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10880), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [44793] = 3, - ACTIONS(10900), 5, + [49382] = 3, + ACTIONS(10898), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -609654,7 +606789,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10898), 15, + ACTIONS(10896), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -609670,8 +606805,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [44827] = 3, - ACTIONS(10904), 5, + [49416] = 3, + ACTIONS(10902), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -609685,7 +606820,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10902), 15, + ACTIONS(10900), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -609701,38 +606836,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [44861] = 12, - ACTIONS(10858), 1, + [49450] = 5, + ACTIONS(10846), 1, anon_sym_SLASH, - ACTIONS(10866), 1, - anon_sym_CARET, - ACTIONS(10868), 1, - anon_sym_AMP, - ACTIONS(10882), 1, - anon_sym_PIPE, - ACTIONS(10854), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10856), 2, + ACTIONS(10844), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(10870), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10872), 2, + ACTIONS(10872), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(10874), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10876), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10880), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -609741,8 +606855,22 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [44913] = 3, - ACTIONS(10908), 5, + ACTIONS(10870), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49488] = 3, + ACTIONS(7096), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -609756,7 +606884,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10906), 15, + ACTIONS(7098), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -609772,47 +606900,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [44947] = 11, - ACTIONS(10858), 1, - anon_sym_SLASH, - ACTIONS(10868), 1, - anon_sym_AMP, - ACTIONS(10882), 1, - anon_sym_PIPE, - ACTIONS(10854), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10856), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10870), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10872), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10874), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10876), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10880), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [44997] = 3, - ACTIONS(10912), 5, + [49522] = 3, + ACTIONS(10906), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -609826,7 +606915,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10910), 15, + ACTIONS(10904), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -609842,45 +606931,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [45031] = 9, - ACTIONS(10858), 1, - anon_sym_SLASH, - ACTIONS(10854), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10856), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10872), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10874), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10876), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10882), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10880), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [45077] = 3, - ACTIONS(10916), 5, + [49556] = 3, + ACTIONS(10910), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -609894,7 +606946,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10914), 15, + ACTIONS(10908), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -609910,23 +606962,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [45111] = 7, - ACTIONS(10858), 1, + [49590] = 14, + ACTIONS(10846), 1, anon_sym_SLASH, - ACTIONS(10854), 2, + ACTIONS(10848), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10850), 1, + anon_sym_AMP_AMP, + ACTIONS(10852), 1, + anon_sym_PIPE, + ACTIONS(10854), 1, + anon_sym_CARET, + ACTIONS(10856), 1, + anon_sym_AMP, + ACTIONS(10912), 1, + anon_sym_RPAREN, + ACTIONS(10842), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10856), 2, + ACTIONS(10844), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(10876), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10882), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(10858), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10860), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(10862), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10864), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -609935,108 +607003,94 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10880), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [45153] = 3, - ACTIONS(10920), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10918), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45187] = 6, - ACTIONS(10858), 1, - anon_sym_SLASH, - ACTIONS(10854), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10856), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10882), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10880), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45227] = 12, - ACTIONS(10880), 1, + [49645] = 3, + ACTIONS(10874), 1, anon_sym_LF, - ACTIONS(10882), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10926), 1, - anon_sym_AMP_AMP, - ACTIONS(10928), 1, - anon_sym_PIPE, - ACTIONS(10930), 1, - anon_sym_CARET, - ACTIONS(10932), 1, - anon_sym_AMP, - ACTIONS(10922), 2, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10876), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10934), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10938), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10936), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49678] = 4, + ACTIONS(10870), 1, + anon_sym_LF, + ACTIONS(10914), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10872), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49713] = 12, + ACTIONS(10870), 1, + anon_sym_LF, + ACTIONS(10872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10918), 1, + anon_sym_AMP_AMP, + ACTIONS(10920), 1, + anon_sym_PIPE, + ACTIONS(10922), 1, + anon_sym_CARET, + ACTIONS(10924), 1, + anon_sym_AMP, + ACTIONS(10916), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10930), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10914), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10928), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -610049,31 +607103,33 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [45278] = 10, - ACTIONS(10880), 1, - anon_sym_LF, - ACTIONS(10930), 1, + [49764] = 12, + ACTIONS(10918), 1, + anon_sym_AMP_AMP, + ACTIONS(10920), 1, + anon_sym_PIPE, + ACTIONS(10922), 1, anon_sym_CARET, - ACTIONS(10932), 1, + ACTIONS(10924), 1, anon_sym_AMP, - ACTIONS(10922), 2, + ACTIONS(10932), 1, + anon_sym_LF, + ACTIONS(10934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10916), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10934), 2, + ACTIONS(10926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10938), 2, + ACTIONS(10930), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10882), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(10924), 3, + ACTIONS(10914), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10936), 4, + ACTIONS(10928), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -610086,33 +607142,179 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [45325] = 12, - ACTIONS(10926), 1, + [49815] = 3, + ACTIONS(10888), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10890), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10928), 1, anon_sym_PIPE, - ACTIONS(10930), 1, anon_sym_CARET, - ACTIONS(10932), 1, anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49848] = 12, + ACTIONS(10918), 1, + anon_sym_AMP_AMP, + ACTIONS(10920), 1, + anon_sym_PIPE, + ACTIONS(10922), 1, + anon_sym_CARET, + ACTIONS(10924), 1, + anon_sym_AMP, + ACTIONS(10934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10936), 1, + anon_sym_LF, + ACTIONS(10916), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10930), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10914), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10928), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [49899] = 12, + ACTIONS(10918), 1, + anon_sym_AMP_AMP, + ACTIONS(10920), 1, + anon_sym_PIPE, + ACTIONS(10922), 1, + anon_sym_CARET, + ACTIONS(10924), 1, + anon_sym_AMP, + ACTIONS(10934), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10938), 1, + anon_sym_LF, + ACTIONS(10916), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10930), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10914), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10928), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [49950] = 11, + ACTIONS(10870), 1, + anon_sym_LF, + ACTIONS(10920), 1, + anon_sym_PIPE, + ACTIONS(10922), 1, + anon_sym_CARET, + ACTIONS(10924), 1, + anon_sym_AMP, + ACTIONS(10872), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(10916), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10930), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10914), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10928), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [49999] = 12, + ACTIONS(10918), 1, + anon_sym_AMP_AMP, + ACTIONS(10920), 1, + anon_sym_PIPE, + ACTIONS(10922), 1, + anon_sym_CARET, + ACTIONS(10924), 1, + anon_sym_AMP, + ACTIONS(10934), 1, + anon_sym_PIPE_PIPE, ACTIONS(10940), 1, anon_sym_LF, - ACTIONS(10942), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10922), 2, + ACTIONS(10916), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10934), 2, + ACTIONS(10926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10938), 2, + ACTIONS(10930), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10924), 3, + ACTIONS(10914), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10936), 4, + ACTIONS(10928), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -610125,8 +607327,40 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [45376] = 3, - ACTIONS(10910), 1, + [50050] = 5, + ACTIONS(10870), 1, + anon_sym_LF, + ACTIONS(10916), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10914), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10872), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50087] = 3, + ACTIONS(10870), 1, anon_sym_LF, ACTIONS(5), 7, sym_comment, @@ -610136,7 +607370,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10912), 18, + ACTIONS(10872), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -610155,97 +607389,399 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [45409] = 3, + [50120] = 3, + ACTIONS(10900), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10902), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50153] = 3, + ACTIONS(10896), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10898), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50186] = 3, + ACTIONS(7098), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(7096), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50219] = 6, + ACTIONS(10870), 1, + anon_sym_LF, + ACTIONS(10916), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10930), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10914), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10872), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [50258] = 3, + ACTIONS(10878), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10880), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50291] = 3, + ACTIONS(10884), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10886), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50324] = 12, ACTIONS(10918), 1, - anon_sym_LF, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10920), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_AMP_AMP, + ACTIONS(10920), 1, + anon_sym_PIPE, + ACTIONS(10922), 1, + anon_sym_CARET, + ACTIONS(10924), 1, + anon_sym_AMP, + ACTIONS(10934), 1, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45442] = 3, - ACTIONS(10902), 1, - anon_sym_LF, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10904), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45475] = 12, - ACTIONS(10926), 1, - anon_sym_AMP_AMP, - ACTIONS(10928), 1, - anon_sym_PIPE, - ACTIONS(10930), 1, - anon_sym_CARET, - ACTIONS(10932), 1, - anon_sym_AMP, ACTIONS(10942), 1, + anon_sym_LF, + ACTIONS(10916), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10930), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10914), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10928), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [50375] = 9, + ACTIONS(10870), 1, + anon_sym_LF, + ACTIONS(10924), 1, + anon_sym_AMP, + ACTIONS(10916), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10930), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10914), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10872), 4, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(10928), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [50420] = 10, + ACTIONS(10870), 1, + anon_sym_LF, + ACTIONS(10922), 1, + anon_sym_CARET, + ACTIONS(10924), 1, + anon_sym_AMP, + ACTIONS(10916), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10930), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10872), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(10914), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10928), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [50467] = 3, + ACTIONS(10908), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + ACTIONS(10910), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50500] = 14, + ACTIONS(10846), 1, + anon_sym_SLASH, + ACTIONS(10848), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10850), 1, + anon_sym_AMP_AMP, + ACTIONS(10852), 1, + anon_sym_PIPE, + ACTIONS(10854), 1, + anon_sym_CARET, + ACTIONS(10856), 1, + anon_sym_AMP, ACTIONS(10944), 1, - anon_sym_LF, - ACTIONS(10922), 2, + anon_sym_RPAREN, + ACTIONS(10842), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10934), 2, + ACTIONS(10844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10858), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10938), 2, + ACTIONS(10860), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10862), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10864), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10924), 3, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [50555] = 8, + ACTIONS(10870), 1, + anon_sym_LF, + ACTIONS(10916), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10926), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10930), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10914), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10936), 4, + ACTIONS(10928), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(10872), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, ACTIONS(5), 7, sym_comment, sym_pragma, @@ -610254,8 +607790,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [45526] = 3, - ACTIONS(10890), 1, + [50598] = 3, + ACTIONS(10904), 1, anon_sym_LF, ACTIONS(5), 7, sym_comment, @@ -610265,7 +607801,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10892), 18, + ACTIONS(10906), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -610284,33 +607820,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [45559] = 12, - ACTIONS(10926), 1, + [50631] = 12, + ACTIONS(10918), 1, anon_sym_AMP_AMP, - ACTIONS(10928), 1, + ACTIONS(10920), 1, anon_sym_PIPE, - ACTIONS(10930), 1, + ACTIONS(10922), 1, anon_sym_CARET, - ACTIONS(10932), 1, + ACTIONS(10924), 1, anon_sym_AMP, - ACTIONS(10942), 1, + ACTIONS(10934), 1, anon_sym_PIPE_PIPE, ACTIONS(10946), 1, anon_sym_LF, - ACTIONS(10922), 2, + ACTIONS(10916), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10934), 2, + ACTIONS(10926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10938), 2, + ACTIONS(10930), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10924), 3, + ACTIONS(10914), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10936), 4, + ACTIONS(10928), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -610323,84 +607859,37 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [45610] = 3, - ACTIONS(10898), 1, - anon_sym_LF, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10900), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + [50682] = 12, + ACTIONS(10918), 1, anon_sym_AMP_AMP, + ACTIONS(10920), 1, anon_sym_PIPE, + ACTIONS(10922), 1, anon_sym_CARET, + ACTIONS(10924), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45643] = 14, - ACTIONS(10858), 1, - anon_sym_SLASH, - ACTIONS(10860), 1, + ACTIONS(10934), 1, anon_sym_PIPE_PIPE, - ACTIONS(10862), 1, - anon_sym_AMP_AMP, - ACTIONS(10864), 1, - anon_sym_PIPE, - ACTIONS(10866), 1, - anon_sym_CARET, - ACTIONS(10868), 1, - anon_sym_AMP, ACTIONS(10948), 1, - anon_sym_RPAREN, - ACTIONS(10854), 2, + anon_sym_LF, + ACTIONS(10916), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10856), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10870), 2, + ACTIONS(10926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10872), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10874), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10876), 2, + ACTIONS(10930), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [45698] = 4, - ACTIONS(10880), 1, - anon_sym_LF, - ACTIONS(10924), 3, + ACTIONS(10914), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10928), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, ACTIONS(5), 7, sym_comment, sym_pragma, @@ -610409,24 +607898,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10882), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45733] = 3, - ACTIONS(10894), 1, + [50733] = 3, + ACTIONS(10892), 1, anon_sym_LF, ACTIONS(5), 7, sym_comment, @@ -610436,7 +607909,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10896), 18, + ACTIONS(10894), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -610455,16 +607928,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [45766] = 5, - ACTIONS(10880), 1, + [50766] = 7, + ACTIONS(10870), 1, anon_sym_LF, - ACTIONS(10922), 2, + ACTIONS(10916), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10924), 3, + ACTIONS(10930), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10914), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10928), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, ACTIONS(5), 7, sym_comment, sym_pragma, @@ -610473,7 +607954,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10882), 13, + ACTIONS(10872), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -610481,102 +607962,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45803] = 3, - ACTIONS(10886), 1, - anon_sym_LF, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10888), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + [50807] = 12, + ACTIONS(10918), 1, anon_sym_AMP_AMP, + ACTIONS(10920), 1, anon_sym_PIPE, + ACTIONS(10922), 1, anon_sym_CARET, + ACTIONS(10924), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45836] = 6, - ACTIONS(10880), 1, - anon_sym_LF, - ACTIONS(10922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10938), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10882), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [45875] = 12, - ACTIONS(10926), 1, - anon_sym_AMP_AMP, - ACTIONS(10928), 1, - anon_sym_PIPE, - ACTIONS(10930), 1, - anon_sym_CARET, - ACTIONS(10932), 1, - anon_sym_AMP, - ACTIONS(10942), 1, + ACTIONS(10934), 1, anon_sym_PIPE_PIPE, ACTIONS(10950), 1, anon_sym_LF, - ACTIONS(10922), 2, + ACTIONS(10916), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10934), 2, + ACTIONS(10926), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10938), 2, + ACTIONS(10930), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10924), 3, + ACTIONS(10914), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10936), 4, + ACTIONS(10928), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, @@ -610589,352 +608001,31 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [45926] = 3, - ACTIONS(7152), 1, - anon_sym_LF, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(7150), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45959] = 12, - ACTIONS(10926), 1, - anon_sym_AMP_AMP, - ACTIONS(10928), 1, - anon_sym_PIPE, - ACTIONS(10930), 1, - anon_sym_CARET, - ACTIONS(10932), 1, - anon_sym_AMP, - ACTIONS(10942), 1, - anon_sym_PIPE_PIPE, + [50858] = 9, ACTIONS(10952), 1, - anon_sym_LF, - ACTIONS(10922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10934), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10938), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10936), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [46010] = 3, - ACTIONS(10880), 1, - anon_sym_LF, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10882), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46043] = 7, - ACTIONS(10880), 1, - anon_sym_LF, - ACTIONS(10922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10938), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10936), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10882), 7, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [46084] = 3, - ACTIONS(10914), 1, - anon_sym_LF, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - ACTIONS(10916), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46117] = 12, - ACTIONS(10926), 1, - anon_sym_AMP_AMP, - ACTIONS(10928), 1, - anon_sym_PIPE, - ACTIONS(10930), 1, - anon_sym_CARET, - ACTIONS(10932), 1, - anon_sym_AMP, - ACTIONS(10942), 1, - anon_sym_PIPE_PIPE, + sym_number_literal, ACTIONS(10954), 1, - anon_sym_LF, - ACTIONS(10922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10934), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10938), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10936), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [46168] = 8, - ACTIONS(10880), 1, - anon_sym_LF, - ACTIONS(10922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10934), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10938), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10936), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10882), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [46211] = 14, - ACTIONS(10858), 1, - anon_sym_SLASH, - ACTIONS(10860), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10862), 1, - anon_sym_AMP_AMP, - ACTIONS(10864), 1, - anon_sym_PIPE, - ACTIONS(10866), 1, - anon_sym_CARET, - ACTIONS(10868), 1, - anon_sym_AMP, - ACTIONS(10956), 1, - anon_sym_RPAREN, - ACTIONS(10854), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10856), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10870), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10872), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10874), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(10876), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [46266] = 9, - ACTIONS(10880), 1, - anon_sym_LF, - ACTIONS(10932), 1, - anon_sym_AMP, - ACTIONS(10922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10934), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10938), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10882), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(10936), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [46311] = 12, - ACTIONS(10926), 1, - anon_sym_AMP_AMP, - ACTIONS(10928), 1, - anon_sym_PIPE, - ACTIONS(10930), 1, - anon_sym_CARET, - ACTIONS(10932), 1, - anon_sym_AMP, - ACTIONS(10942), 1, - anon_sym_PIPE_PIPE, + aux_sym_platform_version_token1, ACTIONS(10958), 1, - anon_sym_LF, - ACTIONS(10922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10934), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10938), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10936), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5), 7, + anon_sym_macos, + STATE(4903), 1, + sym_platform_version, + STATE(4904), 1, + sym_string_literal, + STATE(4993), 1, + sym_platform, + ACTIONS(10956), 4, + anon_sym_ios, + anon_sym_tvos, + anon_sym_macosx, + anon_sym_watchos, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, @@ -610942,10 +608033,31 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [46362] = 3, - ACTIONS(10906), 1, - anon_sym_LF, - ACTIONS(5), 7, + [50899] = 9, + ACTIONS(10952), 1, + sym_number_literal, + ACTIONS(10954), 1, + aux_sym_platform_version_token1, + ACTIONS(10958), 1, + anon_sym_macos, + STATE(4993), 1, + sym_platform, + STATE(5035), 1, + sym_platform_version, + STATE(5036), 1, + sym_string_literal, + ACTIONS(10956), 4, + anon_sym_ios, + anon_sym_tvos, + anon_sym_macosx, + anon_sym_watchos, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, @@ -610953,56 +608065,31 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - ACTIONS(10908), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [46395] = 11, - ACTIONS(10880), 1, - anon_sym_LF, - ACTIONS(10928), 1, - anon_sym_PIPE, - ACTIONS(10930), 1, - anon_sym_CARET, - ACTIONS(10932), 1, - anon_sym_AMP, - ACTIONS(10882), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(10922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10934), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10938), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10936), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5), 7, + [50940] = 9, + ACTIONS(10952), 1, + sym_number_literal, + ACTIONS(10954), 1, + aux_sym_platform_version_token1, + ACTIONS(10958), 1, + anon_sym_macos, + STATE(4899), 1, + sym_string_literal, + STATE(4901), 1, + sym_platform_version, + STATE(4993), 1, + sym_platform, + ACTIONS(10956), 4, + anon_sym_ios, + anon_sym_tvos, + anon_sym_macosx, + anon_sym_watchos, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, @@ -611010,160 +608097,89 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [46444] = 12, - ACTIONS(10926), 1, - anon_sym_AMP_AMP, - ACTIONS(10928), 1, - anon_sym_PIPE, - ACTIONS(10930), 1, - anon_sym_CARET, - ACTIONS(10932), 1, - anon_sym_AMP, - ACTIONS(10942), 1, - anon_sym_PIPE_PIPE, + [50981] = 9, + ACTIONS(10952), 1, + sym_number_literal, + ACTIONS(10954), 1, + aux_sym_platform_version_token1, + ACTIONS(10958), 1, + anon_sym_macos, + STATE(4973), 1, + sym_platform_version, + STATE(4975), 1, + sym_string_literal, + STATE(4993), 1, + sym_platform, + ACTIONS(10956), 4, + anon_sym_ios, + anon_sym_tvos, + anon_sym_macosx, + anon_sym_watchos, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [51022] = 9, ACTIONS(10960), 1, - anon_sym_LF, - ACTIONS(10922), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10934), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10938), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10936), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [46495] = 9, - ACTIONS(10962), 1, - sym_number_literal, - ACTIONS(10964), 1, - aux_sym_platform_version_token1, - ACTIONS(10968), 1, - anon_sym_macos, - STATE(4925), 1, - sym_platform, - STATE(5007), 1, - sym_platform_version, - STATE(5008), 1, - sym_string_literal, - ACTIONS(10966), 4, - anon_sym_ios, - anon_sym_tvos, - anon_sym_macosx, - anon_sym_watchos, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [46536] = 9, - ACTIONS(10962), 1, - sym_number_literal, - ACTIONS(10964), 1, - aux_sym_platform_version_token1, - ACTIONS(10968), 1, - anon_sym_macos, - STATE(4925), 1, - sym_platform, - STATE(5046), 1, - sym_platform_version, - STATE(5048), 1, - sym_string_literal, - ACTIONS(10966), 4, - anon_sym_ios, - anon_sym_tvos, - anon_sym_macosx, - anon_sym_watchos, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [46577] = 9, - ACTIONS(10970), 1, anon_sym_LPAREN2, + ACTIONS(10962), 1, + anon_sym_LBRACE, + ACTIONS(10964), 1, + anon_sym_LBRACK, + ACTIONS(10966), 1, + sym_number_literal, + ACTIONS(10968), 1, + anon_sym_SQUOTE, + STATE(3050), 1, + sym_string_literal, + ACTIONS(10970), 4, + sym_YES, + sym_NO, + anon_sym___objc_no, + anon_sym___objc_yes, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [51063] = 9, ACTIONS(10972), 1, - anon_sym_LBRACE, + anon_sym_LPAREN2, ACTIONS(10974), 1, - anon_sym_LBRACK, - ACTIONS(10976), 1, - sym_number_literal, - ACTIONS(10978), 1, - anon_sym_SQUOTE, - STATE(3110), 1, - sym_string_literal, - ACTIONS(10980), 4, - sym_YES, - sym_NO, - anon_sym___objc_no, - anon_sym___objc_yes, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [46618] = 9, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(10984), 1, anon_sym_LBRACE, - ACTIONS(10986), 1, + ACTIONS(10976), 1, anon_sym_LBRACK, - ACTIONS(10988), 1, + ACTIONS(10978), 1, sym_number_literal, - ACTIONS(10990), 1, + ACTIONS(10980), 1, anon_sym_SQUOTE, - STATE(2753), 1, + STATE(2709), 1, sym_string_literal, - ACTIONS(10992), 4, + ACTIONS(10982), 4, sym_YES, sym_NO, anon_sym___objc_no, anon_sym___objc_yes, - ACTIONS(2214), 5, + ACTIONS(2164), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -611177,25 +608193,25 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [46659] = 9, - ACTIONS(10962), 1, + [51104] = 9, + ACTIONS(10952), 1, sym_number_literal, - ACTIONS(10964), 1, + ACTIONS(10954), 1, aux_sym_platform_version_token1, - ACTIONS(10968), 1, + ACTIONS(10958), 1, anon_sym_macos, - STATE(4925), 1, + STATE(4993), 1, sym_platform, - STATE(4934), 1, + STATE(5043), 1, sym_platform_version, - STATE(4937), 1, + STATE(5044), 1, sym_string_literal, - ACTIONS(10966), 4, + ACTIONS(10956), 4, anon_sym_ios, anon_sym_tvos, anon_sym_macosx, anon_sym_watchos, - ACTIONS(93), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -611209,25 +608225,25 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [46700] = 9, - ACTIONS(10962), 1, + [51145] = 9, + ACTIONS(10952), 1, sym_number_literal, - ACTIONS(10964), 1, + ACTIONS(10954), 1, aux_sym_platform_version_token1, - ACTIONS(10968), 1, + ACTIONS(10958), 1, anon_sym_macos, - STATE(4877), 1, - sym_platform_version, - STATE(4925), 1, + STATE(4993), 1, sym_platform, - STATE(5022), 1, + STATE(5091), 1, + sym_platform_version, + STATE(5092), 1, sym_string_literal, - ACTIONS(10966), 4, + ACTIONS(10956), 4, anon_sym_ios, anon_sym_tvos, anon_sym_macosx, anon_sym_watchos, - ACTIONS(93), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -611241,222 +608257,30 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [46741] = 9, - ACTIONS(10962), 1, - sym_number_literal, - ACTIONS(10964), 1, - aux_sym_platform_version_token1, - ACTIONS(10968), 1, - anon_sym_macos, - STATE(4925), 1, - sym_platform, - STATE(4967), 1, - sym_string_literal, - STATE(4972), 1, - sym_platform_version, - ACTIONS(10966), 4, - anon_sym_ios, - anon_sym_tvos, - anon_sym_macosx, - anon_sym_watchos, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [46782] = 9, - ACTIONS(10962), 1, - sym_number_literal, - ACTIONS(10964), 1, - aux_sym_platform_version_token1, - ACTIONS(10968), 1, - anon_sym_macos, - STATE(4925), 1, - sym_platform, - STATE(4927), 1, - sym_platform_version, - STATE(4928), 1, - sym_string_literal, - ACTIONS(10966), 4, - anon_sym_ios, - anon_sym_tvos, - anon_sym_macosx, - anon_sym_watchos, - ACTIONS(93), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [46823] = 11, - ACTIONS(6527), 1, + [51186] = 11, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(9220), 1, + ACTIONS(9210), 1, sym_identifier, - ACTIONS(9222), 1, - anon_sym_LPAREN2, - ACTIONS(9224), 1, - anon_sym_STAR, - ACTIONS(10994), 1, - anon_sym_SEMI, - ACTIONS(10996), 1, - anon_sym_COLON, - STATE(4727), 1, - sym__field_declarator, - STATE(5244), 1, - sym_bitfield_clause, - STATE(5579), 1, - sym_ms_based_modifier, - STATE(4785), 5, - sym_parenthesized_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [46867] = 11, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(9220), 1, - sym_identifier, - ACTIONS(9222), 1, - anon_sym_LPAREN2, - ACTIONS(9224), 1, - anon_sym_STAR, - ACTIONS(10996), 1, - anon_sym_COLON, - ACTIONS(10998), 1, - anon_sym_SEMI, - STATE(4725), 1, - sym__field_declarator, - STATE(5543), 1, - sym_bitfield_clause, - STATE(5579), 1, - sym_ms_based_modifier, - STATE(4785), 5, - sym_parenthesized_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [46911] = 11, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(9220), 1, - sym_identifier, - ACTIONS(9222), 1, - anon_sym_LPAREN2, - ACTIONS(9224), 1, - anon_sym_STAR, - ACTIONS(10996), 1, - anon_sym_COLON, - ACTIONS(11000), 1, - anon_sym_SEMI, - STATE(4729), 1, - sym__field_declarator, - STATE(5579), 1, - sym_ms_based_modifier, - STATE(5680), 1, - sym_bitfield_clause, - STATE(4785), 5, - sym_parenthesized_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [46955] = 11, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(9220), 1, - sym_identifier, - ACTIONS(9222), 1, - anon_sym_LPAREN2, - ACTIONS(9224), 1, - anon_sym_STAR, - ACTIONS(10996), 1, - anon_sym_COLON, - ACTIONS(11002), 1, - anon_sym_SEMI, - STATE(4724), 1, - sym__field_declarator, - STATE(5381), 1, - sym_bitfield_clause, - STATE(5579), 1, - sym_ms_based_modifier, - STATE(4785), 5, - sym_parenthesized_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [46999] = 9, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, + ACTIONS(9212), 1, anon_sym_LPAREN2, ACTIONS(9214), 1, anon_sym_STAR, - ACTIONS(11004), 1, - anon_sym_CARET, - STATE(4856), 1, - sym__declarator, - STATE(5835), 1, + ACTIONS(10984), 1, + anon_sym_SEMI, + ACTIONS(10986), 1, + anon_sym_COLON, + STATE(4745), 1, + sym__field_declarator, + STATE(5263), 1, sym_ms_based_modifier, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(5718), 1, + sym_bitfield_clause, + STATE(4799), 5, + sym_parenthesized_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, sym_block_declarator, ACTIONS(3), 7, sym_comment, @@ -611466,22 +608290,121 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [47037] = 9, - ACTIONS(6527), 1, + [51230] = 11, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(9210), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(9212), 1, + anon_sym_LPAREN2, + ACTIONS(9214), 1, + anon_sym_STAR, + ACTIONS(10986), 1, + anon_sym_COLON, + ACTIONS(10988), 1, + anon_sym_SEMI, + STATE(4749), 1, + sym__field_declarator, + STATE(5263), 1, + sym_ms_based_modifier, + STATE(5295), 1, + sym_bitfield_clause, + STATE(4799), 5, + sym_parenthesized_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [51274] = 11, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(9210), 1, + sym_identifier, + ACTIONS(9212), 1, + anon_sym_LPAREN2, + ACTIONS(9214), 1, + anon_sym_STAR, + ACTIONS(10986), 1, + anon_sym_COLON, + ACTIONS(10990), 1, + anon_sym_SEMI, + STATE(4744), 1, + sym__field_declarator, + STATE(5263), 1, + sym_ms_based_modifier, + STATE(5608), 1, + sym_bitfield_clause, + STATE(4799), 5, + sym_parenthesized_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [51318] = 11, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(9210), 1, + sym_identifier, + ACTIONS(9212), 1, + anon_sym_LPAREN2, + ACTIONS(9214), 1, + anon_sym_STAR, + ACTIONS(10986), 1, + anon_sym_COLON, + ACTIONS(10992), 1, + anon_sym_SEMI, + STATE(4747), 1, + sym__field_declarator, + STATE(5263), 1, + sym_ms_based_modifier, + STATE(5273), 1, + sym_bitfield_clause, + STATE(4799), 5, + sym_parenthesized_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [51362] = 9, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, anon_sym_LPAREN2, ACTIONS(9218), 1, anon_sym_STAR, - STATE(3753), 1, + STATE(3709), 1, sym__declarator, - STATE(3896), 1, + STATE(3837), 1, sym_init_declarator, - STATE(5669), 1, + STATE(5659), 1, sym_ms_based_modifier, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -611495,22 +608418,196 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [47075] = 9, - ACTIONS(6527), 1, + [51400] = 9, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(9210), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(9212), 1, + anon_sym_LPAREN2, + ACTIONS(9214), 1, + anon_sym_STAR, + ACTIONS(10994), 1, + anon_sym_CARET, + STATE(4862), 1, + sym__field_declarator, + STATE(5263), 1, + sym_ms_based_modifier, + STATE(4799), 5, + sym_parenthesized_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [51438] = 9, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(9216), 1, + anon_sym_STAR, + ACTIONS(10996), 1, + anon_sym_CARET, + STATE(4878), 1, + sym__declarator, + STATE(5795), 1, + sym_ms_based_modifier, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [51476] = 9, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(9218), 1, + anon_sym_STAR, + STATE(3705), 1, + sym__declarator, + STATE(3856), 1, + sym_init_declarator, + STATE(5659), 1, + sym_ms_based_modifier, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [51514] = 9, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(9216), 1, + anon_sym_STAR, + ACTIONS(10994), 1, + anon_sym_CARET, + STATE(4866), 1, + sym__declarator, + STATE(5795), 1, + sym_ms_based_modifier, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [51552] = 9, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(9218), 1, + anon_sym_STAR, + STATE(3707), 1, + sym__declarator, + STATE(3857), 1, + sym_init_declarator, + STATE(5659), 1, + sym_ms_based_modifier, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [51590] = 9, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(9218), 1, + anon_sym_STAR, + STATE(3715), 1, + sym__declarator, + STATE(3833), 1, + sym_init_declarator, + STATE(5659), 1, + sym_ms_based_modifier, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [51628] = 9, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, anon_sym_LPAREN2, ACTIONS(9218), 1, anon_sym_STAR, STATE(3717), 1, sym__declarator, - STATE(3894), 1, + STATE(3835), 1, sym_init_declarator, - STATE(5669), 1, + STATE(5659), 1, sym_ms_based_modifier, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -611524,80 +608621,22 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [47113] = 9, - ACTIONS(6527), 1, + [51666] = 9, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8229), 1, anon_sym_LPAREN2, - ACTIONS(9218), 1, + ACTIONS(8231), 1, anon_sym_STAR, - STATE(3742), 1, - sym__declarator, - STATE(3883), 1, - sym_init_declarator, - STATE(5669), 1, - sym_ms_based_modifier, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [47151] = 9, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(8662), 1, sym_identifier, - ACTIONS(8678), 1, - anon_sym_LPAREN2, - ACTIONS(9218), 1, - anon_sym_STAR, - STATE(3737), 1, - sym__declarator, - STATE(3881), 1, - sym_init_declarator, - STATE(5669), 1, - sym_ms_based_modifier, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [47189] = 9, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(8279), 1, - anon_sym_LPAREN2, - ACTIONS(8281), 1, - anon_sym_STAR, - ACTIONS(9216), 1, - sym_identifier, - ACTIONS(11006), 1, + ACTIONS(10994), 1, anon_sym_CARET, - STATE(4817), 1, + STATE(4833), 1, sym__type_declarator, - STATE(5452), 1, + STATE(5596), 1, sym_ms_based_modifier, - STATE(4319), 5, + STATE(4335), 5, sym_parenthesized_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, @@ -611611,22 +608650,22 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [47227] = 9, - ACTIONS(6527), 1, + [51704] = 9, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, ACTIONS(9218), 1, anon_sym_STAR, - STATE(3738), 1, + STATE(3672), 1, sym__declarator, - STATE(3894), 1, + STATE(3833), 1, sym_init_declarator, - STATE(5669), 1, + STATE(5659), 1, sym_ms_based_modifier, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -611640,51 +608679,22 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [47265] = 9, - ACTIONS(6527), 1, + [51742] = 9, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(8678), 1, - anon_sym_LPAREN2, - ACTIONS(9214), 1, - anon_sym_STAR, - ACTIONS(11006), 1, - anon_sym_CARET, - STATE(4826), 1, - sym__declarator, - STATE(5835), 1, - sym_ms_based_modifier, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [47303] = 9, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, ACTIONS(9218), 1, anon_sym_STAR, - STATE(3719), 1, + STATE(3676), 1, sym__declarator, - STATE(3870), 1, + STATE(3853), 1, sym_init_declarator, - STATE(5669), 1, + STATE(5659), 1, sym_ms_based_modifier, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -611698,22 +608708,22 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [47341] = 9, - ACTIONS(6527), 1, + [51780] = 9, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, ACTIONS(9218), 1, anon_sym_STAR, - STATE(3730), 1, + STATE(3671), 1, sym__declarator, - STATE(3889), 1, + STATE(3841), 1, sym_init_declarator, - STATE(5669), 1, + STATE(5659), 1, sym_ms_based_modifier, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -611727,22 +608737,22 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [47379] = 9, - ACTIONS(6527), 1, + [51818] = 9, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, ACTIONS(9218), 1, anon_sym_STAR, - STATE(3763), 1, + STATE(3714), 1, sym__declarator, - STATE(3873), 1, + STATE(3853), 1, sym_init_declarator, - STATE(5669), 1, + STATE(5659), 1, sym_ms_based_modifier, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -611756,22 +608766,22 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [47417] = 9, - ACTIONS(6527), 1, + [51856] = 9, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, ACTIONS(9218), 1, anon_sym_STAR, - STATE(3898), 1, + STATE(3670), 1, sym__declarator, - STATE(3902), 1, + STATE(3857), 1, sym_init_declarator, - STATE(5669), 1, + STATE(5659), 1, sym_ms_based_modifier, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -611785,22 +608795,22 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [47455] = 9, - ACTIONS(6527), 1, + [51894] = 9, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, ACTIONS(9218), 1, anon_sym_STAR, - STATE(3756), 1, + STATE(3706), 1, sym__declarator, - STATE(3870), 1, + STATE(3851), 1, sym_init_declarator, - STATE(5669), 1, + STATE(5659), 1, sym_ms_based_modifier, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -611814,51 +608824,22 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [47493] = 9, - ACTIONS(6527), 1, + [51932] = 9, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(8678), 1, - anon_sym_LPAREN2, - ACTIONS(9218), 1, - anon_sym_STAR, - STATE(3720), 1, - sym__declarator, - STATE(3873), 1, - sym_init_declarator, - STATE(5669), 1, - sym_ms_based_modifier, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [47531] = 9, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, ACTIONS(9218), 1, anon_sym_STAR, STATE(3718), 1, sym__declarator, - STATE(3875), 1, + STATE(3841), 1, sym_init_declarator, - STATE(5669), 1, + STATE(5659), 1, sym_ms_based_modifier, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -611872,22 +608853,22 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [47569] = 9, - ACTIONS(6527), 1, + [51970] = 9, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, ACTIONS(9218), 1, anon_sym_STAR, - STATE(3764), 1, + STATE(3858), 1, sym__declarator, - STATE(3875), 1, + STATE(3864), 1, sym_init_declarator, - STATE(5669), 1, + STATE(5659), 1, sym_ms_based_modifier, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -611901,22 +608882,101 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [47607] = 9, - ACTIONS(6527), 1, + [52008] = 8, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(9220), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(9222), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, - ACTIONS(9224), 1, + ACTIONS(9216), 1, anon_sym_STAR, - ACTIONS(11006), 1, - anon_sym_CARET, - STATE(4841), 1, - sym__field_declarator, - STATE(5579), 1, + STATE(4824), 1, + sym__declarator, + STATE(5795), 1, sym_ms_based_modifier, - STATE(4785), 5, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [52043] = 8, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(8672), 1, + anon_sym_STAR, + STATE(4309), 1, + sym__declarator, + STATE(5835), 1, + sym_ms_based_modifier, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [52078] = 8, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(7859), 1, + sym_identifier, + ACTIONS(8670), 1, + anon_sym_LPAREN2, + ACTIONS(9216), 1, + anon_sym_STAR, + STATE(4809), 1, + sym__declarator, + STATE(5795), 1, + sym_ms_based_modifier, + STATE(3790), 5, + sym_parenthesized_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_block_declarator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [52113] = 8, + ACTIONS(6477), 1, + anon_sym___based, + ACTIONS(9210), 1, + sym_identifier, + ACTIONS(9212), 1, + anon_sym_LPAREN2, + ACTIONS(9214), 1, + anon_sym_STAR, + STATE(4767), 1, + sym__field_declarator, + STATE(5263), 1, + sym_ms_based_modifier, + STATE(4799), 5, sym_parenthesized_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, @@ -611930,20 +608990,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [47645] = 8, - ACTIONS(6527), 1, + [52148] = 8, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, - ACTIONS(9214), 1, + ACTIONS(9216), 1, anon_sym_STAR, - STATE(4812), 1, + STATE(4829), 1, sym__declarator, - STATE(5835), 1, + STATE(5795), 1, sym_ms_based_modifier, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -611957,20 +609017,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [47680] = 8, - ACTIONS(6527), 1, + [52183] = 8, + ACTIONS(6477), 1, anon_sym___based, - ACTIONS(7909), 1, + ACTIONS(7859), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8670), 1, anon_sym_LPAREN2, - ACTIONS(9214), 1, + ACTIONS(9216), 1, anon_sym_STAR, - STATE(4799), 1, + STATE(4819), 1, sym__declarator, - STATE(5835), 1, + STATE(5795), 1, sym_ms_based_modifier, - STATE(3843), 5, + STATE(3790), 5, sym_parenthesized_declarator, sym_pointer_declarator, sym_function_declarator, @@ -611984,124 +609044,16 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [47715] = 8, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, - anon_sym_LPAREN2, - ACTIONS(9214), 1, - anon_sym_STAR, - STATE(4802), 1, - sym__declarator, - STATE(5835), 1, - sym_ms_based_modifier, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [47750] = 8, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, - anon_sym_LPAREN2, - ACTIONS(9214), 1, - anon_sym_STAR, - STATE(4792), 1, - sym__declarator, - STATE(5835), 1, - sym_ms_based_modifier, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [47785] = 8, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(9220), 1, - sym_identifier, - ACTIONS(9222), 1, - anon_sym_LPAREN2, - ACTIONS(9224), 1, - anon_sym_STAR, - STATE(4778), 1, - sym__field_declarator, - STATE(5579), 1, - sym_ms_based_modifier, - STATE(4785), 5, - sym_parenthesized_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [47820] = 8, - ACTIONS(6527), 1, - anon_sym___based, - ACTIONS(7909), 1, - sym_identifier, - ACTIONS(8678), 1, - anon_sym_LPAREN2, - ACTIONS(8680), 1, - anon_sym_STAR, - STATE(4276), 1, - sym__declarator, - STATE(5875), 1, - sym_ms_based_modifier, - STATE(3843), 5, - sym_parenthesized_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_block_declarator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [47855] = 5, - ACTIONS(8051), 1, + [52218] = 5, + ACTIONS(8001), 1, anon_sym_LT, - ACTIONS(11008), 1, + ACTIONS(10998), 1, anon_sym_LPAREN2, - STATE(3397), 3, + STATE(3341), 3, sym_protocol_qualifiers, sym_generic_type_references, aux_sym_generic_type_specifier_repeat1, - ACTIONS(8053), 5, + ACTIONS(8003), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACE, @@ -612115,18 +609067,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [47883] = 6, - ACTIONS(8012), 1, + [52246] = 6, + ACTIONS(7939), 1, sym_primitive_type, - ACTIONS(11010), 1, + ACTIONS(11000), 1, sym_identifier, - STATE(3383), 1, + STATE(3317), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8006), 3, + ACTIONS(7933), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(8010), 4, + ACTIONS(7937), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -612139,15 +609091,84 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [47913] = 5, + [52276] = 5, + ACTIONS(11002), 1, + sym_identifier, + ACTIONS(11006), 1, + sym_system_lib_string, + STATE(5753), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(11004), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [52303] = 8, + ACTIONS(9646), 1, + anon_sym_COLON, + ACTIONS(11008), 1, + sym_identifier, + ACTIONS(11010), 1, + anon_sym_LPAREN2, + STATE(4332), 1, + sym_keyword_selector, + STATE(4759), 1, + sym__method_argument_type_specifier, + STATE(4104), 2, + sym_keyword_declarator, + aux_sym_keyword_selector_repeat1, + STATE(4321), 2, + sym__method_selector, + sym__unary_selector, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [52336] = 5, ACTIONS(11012), 1, sym_identifier, + ACTIONS(11014), 1, + sym_system_lib_string, + STATE(5630), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(11004), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [52363] = 5, ACTIONS(11016), 1, + sym_identifier, + ACTIONS(11018), 1, sym_system_lib_string, - STATE(5362), 2, + STATE(5654), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(11014), 5, + ACTIONS(11004), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -612161,21 +609182,21 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [47940] = 8, - ACTIONS(9572), 1, + [52390] = 8, + ACTIONS(9646), 1, anon_sym_COLON, - ACTIONS(11018), 1, + ACTIONS(11008), 1, sym_identifier, - ACTIONS(11020), 1, + ACTIONS(11010), 1, anon_sym_LPAREN2, - STATE(4349), 1, + STATE(4332), 1, sym_keyword_selector, - STATE(4734), 1, + STATE(4761), 1, sym__method_argument_type_specifier, - STATE(4053), 2, + STATE(4104), 2, sym_keyword_declarator, aux_sym_keyword_selector_repeat1, - STATE(4072), 2, + STATE(4274), 2, sym__method_selector, sym__unary_selector, ACTIONS(3), 7, @@ -612186,45 +609207,23 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [47973] = 8, - ACTIONS(9572), 1, - anon_sym_COLON, - ACTIONS(11018), 1, - sym_identifier, - ACTIONS(11020), 1, + [52423] = 9, + ACTIONS(8710), 1, anon_sym_LPAREN2, - STATE(4349), 1, - sym_keyword_selector, - STATE(4745), 1, - sym__method_argument_type_specifier, - STATE(4053), 2, - sym_keyword_declarator, - aux_sym_keyword_selector_repeat1, - STATE(4295), 2, - sym__method_selector, - sym__unary_selector, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [48006] = 5, + ACTIONS(10986), 1, + anon_sym_COLON, + ACTIONS(11020), 1, + anon_sym_COMMA, ACTIONS(11022), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(11024), 1, - sym_system_lib_string, - STATE(5533), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(11014), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, + anon_sym_LBRACK, + STATE(4775), 1, + sym_parameter_list, + STATE(4817), 1, + aux_sym_field_declaration_repeat1, + STATE(5533), 1, + sym_bitfield_clause, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -612233,15 +609232,39 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48033] = 5, + [52457] = 9, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(10986), 1, + anon_sym_COLON, + ACTIONS(11020), 1, + anon_sym_COMMA, + ACTIONS(11024), 1, + anon_sym_LBRACK, ACTIONS(11026), 1, - sym_identifier, + anon_sym_SEMI, + STATE(4775), 1, + sym_parameter_list, + STATE(4827), 1, + aux_sym_field_declaration_repeat1, + STATE(5740), 1, + sym_bitfield_clause, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [52491] = 5, ACTIONS(11028), 1, sym_system_lib_string, - STATE(5793), 2, - sym_preproc_call_expression, + ACTIONS(11030), 1, + sym_module_string, + STATE(5351), 1, sym_string_literal, - ACTIONS(11014), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -612255,22 +609278,22 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48060] = 9, - ACTIONS(8793), 1, + [52517] = 9, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(10996), 1, + ACTIONS(10986), 1, anon_sym_COLON, - ACTIONS(11030), 1, + ACTIONS(11020), 1, anon_sym_COMMA, + ACTIONS(11024), 1, + anon_sym_LBRACK, ACTIONS(11032), 1, anon_sym_SEMI, - ACTIONS(11034), 1, - anon_sym_LBRACK, - STATE(4776), 1, + STATE(4775), 1, sym_parameter_list, - STATE(4794), 1, + STATE(4832), 1, aux_sym_field_declaration_repeat1, - STATE(5412), 1, + STATE(5347), 1, sym_bitfield_clause, ACTIONS(3), 7, sym_comment, @@ -612280,39 +609303,14 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48094] = 9, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(10996), 1, - anon_sym_COLON, - ACTIONS(11030), 1, - anon_sym_COMMA, + [52551] = 5, ACTIONS(11034), 1, - anon_sym_LBRACK, - ACTIONS(11036), 1, - anon_sym_SEMI, - STATE(4776), 1, - sym_parameter_list, - STATE(4797), 1, - aux_sym_field_declaration_repeat1, - STATE(5587), 1, - sym_bitfield_clause, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [48128] = 5, - ACTIONS(11038), 1, sym_system_lib_string, - ACTIONS(11040), 1, + ACTIONS(11036), 1, sym_module_string, - STATE(5262), 1, + STATE(5711), 1, sym_string_literal, - ACTIONS(93), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -612326,22 +609324,22 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48154] = 9, - ACTIONS(8793), 1, + [52577] = 9, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(10996), 1, + ACTIONS(10986), 1, anon_sym_COLON, - ACTIONS(11030), 1, + ACTIONS(11020), 1, anon_sym_COMMA, - ACTIONS(11034), 1, + ACTIONS(11024), 1, anon_sym_LBRACK, - ACTIONS(11042), 1, + ACTIONS(11038), 1, anon_sym_SEMI, - STATE(4776), 1, + STATE(4775), 1, sym_parameter_list, - STATE(4798), 1, + STATE(4825), 1, aux_sym_field_declaration_repeat1, - STATE(5359), 1, + STATE(5323), 1, sym_bitfield_clause, ACTIONS(3), 7, sym_comment, @@ -612351,14 +609349,32 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48188] = 5, + [52611] = 5, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(11024), 1, + anon_sym_LBRACK, + STATE(4775), 1, + sym_parameter_list, + ACTIONS(11040), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [52636] = 4, ACTIONS(11044), 1, sym_system_lib_string, - ACTIONS(11046), 1, - sym_module_string, - STATE(5517), 1, + STATE(1200), 1, sym_string_literal, - ACTIONS(93), 5, + ACTIONS(11042), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -612372,43 +609388,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48214] = 9, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(10996), 1, - anon_sym_COLON, - ACTIONS(11030), 1, - anon_sym_COMMA, - ACTIONS(11034), 1, - anon_sym_LBRACK, - ACTIONS(11048), 1, - anon_sym_SEMI, - STATE(4776), 1, - sym_parameter_list, - STATE(4803), 1, - aux_sym_field_declaration_repeat1, - STATE(5594), 1, - sym_bitfield_clause, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [48248] = 7, - ACTIONS(8106), 1, - anon_sym_ATdefs, - ACTIONS(8123), 1, + [52659] = 7, + ACTIONS(8027), 1, anon_sym_LBRACE, - ACTIONS(11050), 1, + ACTIONS(8031), 1, + anon_sym_ATdefs, + ACTIONS(11046), 1, anon_sym_COLON, - STATE(3432), 1, + STATE(3378), 1, sym_superclass_reference, - STATE(3538), 1, + STATE(3456), 1, sym_field_declaration_list, - ACTIONS(8101), 2, + ACTIONS(8025), 2, anon_sym_COMMA, anon_sym_RPAREN, ACTIONS(3), 7, @@ -612419,18 +609410,37 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48277] = 5, - ACTIONS(8793), 1, + [52688] = 4, + ACTIONS(11050), 1, + sym_system_lib_string, + STATE(475), 1, + sym_string_literal, + ACTIONS(11048), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [52711] = 5, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(9710), 1, + ACTIONS(11024), 1, anon_sym_LBRACK, - STATE(4286), 1, + STATE(4775), 1, sym_parameter_list, ACTIONS(11052), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_GT, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_COLON, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -612439,18 +609449,40 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48302] = 5, - ACTIONS(8793), 1, + [52736] = 7, + ACTIONS(8037), 1, + anon_sym_LBRACE, + ACTIONS(8040), 1, + anon_sym_ATdefs, + ACTIONS(11046), 1, + anon_sym_COLON, + STATE(3454), 1, + sym_field_declaration_list, + STATE(4804), 1, + sym_superclass_reference, + ACTIONS(8035), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [52765] = 5, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(11034), 1, + ACTIONS(9746), 1, anon_sym_LBRACK, - STATE(4776), 1, + STATE(4282), 1, sym_parameter_list, ACTIONS(11054), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_GT, + anon_sym_LBRACE, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -612459,18 +609491,40 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48327] = 5, - ACTIONS(8793), 1, + [52790] = 7, + ACTIONS(8031), 1, + anon_sym_ATdefs, + ACTIONS(8087), 1, + anon_sym_LBRACE, + ACTIONS(11046), 1, + anon_sym_COLON, + STATE(3456), 1, + sym_field_declaration_list, + STATE(4798), 1, + sym_superclass_reference, + ACTIONS(8025), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [52819] = 5, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(11034), 1, + ACTIONS(9746), 1, anon_sym_LBRACK, - STATE(4776), 1, + STATE(4282), 1, sym_parameter_list, ACTIONS(11056), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_GT, + anon_sym_LBRACE, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -612479,17 +609533,17 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48352] = 6, - ACTIONS(9572), 1, + [52844] = 6, + ACTIONS(9646), 1, anon_sym_COLON, - ACTIONS(11018), 1, + ACTIONS(11008), 1, sym_identifier, - STATE(4349), 1, + STATE(4332), 1, sym_keyword_selector, - STATE(4053), 2, + STATE(4104), 2, sym_keyword_declarator, aux_sym_keyword_selector_repeat1, - STATE(4215), 2, + STATE(4316), 2, sym__method_selector, sym__unary_selector, ACTIONS(3), 7, @@ -612500,134 +609554,14 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48379] = 5, - ACTIONS(8793), 1, + [52871] = 5, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(9710), 1, + ACTIONS(11024), 1, anon_sym_LBRACK, - STATE(4286), 1, + STATE(4775), 1, sym_parameter_list, ACTIONS(11058), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_LBRACE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [48404] = 5, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9710), 1, - anon_sym_LBRACK, - STATE(4286), 1, - sym_parameter_list, - ACTIONS(11060), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_LBRACE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [48429] = 4, - ACTIONS(11064), 1, - sym_system_lib_string, - STATE(1382), 1, - sym_string_literal, - ACTIONS(11062), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [48452] = 5, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9710), 1, - anon_sym_LBRACK, - STATE(4286), 1, - sym_parameter_list, - ACTIONS(11066), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_LBRACE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [48477] = 7, - ACTIONS(8097), 1, - anon_sym_ATdefs, - ACTIONS(8123), 1, - anon_sym_LBRACE, - ACTIONS(11050), 1, - anon_sym_COLON, - STATE(3437), 1, - sym_superclass_reference, - STATE(3559), 1, - sym_field_declaration_list, - ACTIONS(8090), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [48506] = 4, - ACTIONS(11070), 1, - sym_system_lib_string, - STATE(697), 1, - sym_string_literal, - ACTIONS(11068), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [48529] = 5, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(11034), 1, - anon_sym_LBRACK, - STATE(4776), 1, - sym_parameter_list, - ACTIONS(11072), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -612640,78 +609574,17 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48554] = 5, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(11034), 1, - anon_sym_LBRACK, - STATE(4776), 1, - sym_parameter_list, - ACTIONS(11074), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + [52896] = 6, + ACTIONS(9646), 1, anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [48579] = 4, - ACTIONS(11078), 1, - sym_system_lib_string, - STATE(895), 1, - sym_string_literal, - ACTIONS(11076), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [48602] = 7, - ACTIONS(8103), 1, - anon_sym_LBRACE, - ACTIONS(8106), 1, - anon_sym_ATdefs, - ACTIONS(11050), 1, - anon_sym_COLON, - STATE(3538), 1, - sym_field_declaration_list, - STATE(4763), 1, - sym_superclass_reference, - ACTIONS(8101), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [48631] = 6, - ACTIONS(9572), 1, - anon_sym_COLON, - ACTIONS(11018), 1, + ACTIONS(11008), 1, sym_identifier, - STATE(4349), 1, + STATE(4332), 1, sym_keyword_selector, - STATE(4053), 2, + STATE(4104), 2, sym_keyword_declarator, aux_sym_keyword_selector_repeat1, - STATE(4301), 2, + STATE(4203), 2, sym__method_selector, sym__unary_selector, ACTIONS(3), 7, @@ -612722,18 +609595,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48658] = 7, - ACTIONS(8092), 1, + [52923] = 7, + ACTIONS(8027), 1, anon_sym_LBRACE, - ACTIONS(8097), 1, + ACTIONS(8040), 1, anon_sym_ATdefs, - ACTIONS(11050), 1, + ACTIONS(11046), 1, anon_sym_COLON, - STATE(3559), 1, - sym_field_declaration_list, - STATE(4768), 1, + STATE(3377), 1, sym_superclass_reference, - ACTIONS(8090), 2, + STATE(3454), 1, + sym_field_declaration_list, + ACTIONS(8035), 2, anon_sym_COMMA, anon_sym_RPAREN, ACTIONS(3), 7, @@ -612744,14 +609617,151 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48687] = 5, - ACTIONS(11080), 1, + [52952] = 5, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(11024), 1, anon_sym_LBRACK, - ACTIONS(11082), 1, + STATE(4775), 1, + sym_parameter_list, + ACTIONS(11060), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [52977] = 5, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9746), 1, + anon_sym_LBRACK, + STATE(4282), 1, + sym_parameter_list, + ACTIONS(11062), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_LBRACE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53002] = 5, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9746), 1, + anon_sym_LBRACK, + STATE(4282), 1, + sym_parameter_list, + ACTIONS(11064), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_LBRACE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53027] = 4, + ACTIONS(11068), 1, + sym_system_lib_string, + STATE(1523), 1, + sym_string_literal, + ACTIONS(11066), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53050] = 5, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(11024), 1, + anon_sym_LBRACK, + STATE(4775), 1, + sym_parameter_list, + ACTIONS(11070), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53074] = 4, + ACTIONS(8173), 1, + anon_sym_LBRACE, + STATE(3430), 1, + sym_field_declaration_list, + ACTIONS(8171), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53096] = 7, + ACTIONS(8035), 1, + sym_identifier, + ACTIONS(8037), 1, + anon_sym_LBRACE, + ACTIONS(8040), 1, + anon_sym_ATdefs, + ACTIONS(11072), 1, + anon_sym_COLON, + STATE(3454), 1, + sym_field_declaration_list, + STATE(4804), 1, + sym_superclass_reference, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53124] = 5, + ACTIONS(11075), 1, + anon_sym_LBRACK, + ACTIONS(11078), 1, anon_sym_EQ, - ACTIONS(11084), 1, + ACTIONS(11080), 1, anon_sym_DOT, - STATE(4787), 3, + STATE(4770), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -612763,19 +609773,14 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48711] = 7, - ACTIONS(11086), 1, + [53148] = 2, + ACTIONS(11083), 6, anon_sym_COMMA, - ACTIONS(11088), 1, - anon_sym_LT, - ACTIONS(11090), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(5016), 1, - sym_protocol_qualifiers, - STATE(5017), 1, - sym_parameterized_class_type_arguments, - STATE(5019), 1, - aux_sym_class_forward_declaration_repeat1, + anon_sym_LBRACK, + anon_sym_COLON, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -612784,39 +609789,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48739] = 7, - ACTIONS(8101), 1, + [53166] = 7, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(8106), 1, - anon_sym_ATdefs, - ACTIONS(8123), 1, - anon_sym_LBRACE, - ACTIONS(11092), 1, + ACTIONS(11087), 1, anon_sym_COLON, - STATE(3432), 1, - sym_superclass_reference, - STATE(3538), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [48767] = 7, - ACTIONS(11095), 1, - sym_identifier, - ACTIONS(11097), 1, - anon_sym_COLON, - STATE(4752), 1, + STATE(4802), 1, aux_sym__selector_name_repeat1, - STATE(4917), 1, + STATE(4949), 1, sym__keyword_name, - STATE(5180), 1, + STATE(5195), 1, sym__name, - STATE(5290), 1, + STATE(5455), 1, sym__selector_name, ACTIONS(3), 7, sym_comment, @@ -612826,10 +609810,183 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48795] = 3, - STATE(3204), 1, + [53194] = 7, + ACTIONS(11089), 1, + anon_sym_COMMA, + ACTIONS(11091), 1, + anon_sym_LT, + ACTIONS(11093), 1, + anon_sym_SEMI, + STATE(4976), 1, + aux_sym_class_forward_declaration_repeat1, + STATE(4979), 1, + sym_protocol_qualifiers, + STATE(4990), 1, + sym_parameterized_class_type_arguments, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53222] = 7, + ACTIONS(11085), 1, + sym_identifier, + ACTIONS(11087), 1, + anon_sym_COLON, + STATE(4802), 1, + aux_sym__selector_name_repeat1, + STATE(4949), 1, + sym__keyword_name, + STATE(5195), 1, + sym__name, + STATE(5696), 1, + sym__selector_name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53250] = 2, + ACTIONS(11095), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53268] = 5, + ACTIONS(11097), 1, + anon_sym_LBRACK, + ACTIONS(11099), 1, + anon_sym_EQ, + ACTIONS(11101), 1, + anon_sym_DOT, + STATE(4770), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53292] = 5, + ACTIONS(11103), 1, + sym_identifier, + ACTIONS(11105), 1, + anon_sym_COLON, + STATE(4818), 2, + sym_keyword_argument, + aux_sym_keyword_argument_list_repeat1, + STATE(5590), 2, + sym__message_selector, + sym_keyword_argument_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53316] = 7, + ACTIONS(11089), 1, + anon_sym_COMMA, + ACTIONS(11091), 1, + anon_sym_LT, + ACTIONS(11107), 1, + anon_sym_SEMI, + STATE(4934), 1, + aux_sym_class_forward_declaration_repeat1, + STATE(4938), 1, + sym_parameterized_class_type_arguments, + STATE(4940), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53344] = 6, + ACTIONS(8215), 1, + anon_sym_LBRACE, + ACTIONS(11109), 1, + sym_identifier, + ACTIONS(11111), 1, + anon_sym_COLON, + STATE(3455), 1, + sym_enumerator_list, + ACTIONS(8182), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53370] = 4, + ACTIONS(8153), 1, + anon_sym_LBRACE, + STATE(3396), 1, + sym_enumerator_list, + ACTIONS(8136), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53392] = 4, + ACTIONS(8176), 1, + anon_sym_LBRACE, + STATE(3397), 1, + sym_enumerator_list, + ACTIONS(8158), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53414] = 3, + STATE(3063), 1, sym_string_literal, - ACTIONS(93), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -612843,95 +610000,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48815] = 7, - ACTIONS(11095), 1, - sym_identifier, - ACTIONS(11097), 1, - anon_sym_COLON, - ACTIONS(11099), 1, - anon_sym_RPAREN, - STATE(4753), 1, - aux_sym__selector_name_repeat1, - STATE(4917), 1, - sym__keyword_name, - STATE(5291), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [48843] = 7, - ACTIONS(11101), 1, - sym_identifier, - ACTIONS(11104), 1, - anon_sym_RPAREN, - ACTIONS(11106), 1, - anon_sym_COLON, - STATE(4753), 1, - aux_sym__selector_name_repeat1, - STATE(4917), 1, - sym__keyword_name, - STATE(5291), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [48871] = 2, - ACTIONS(11109), 6, + [53434] = 7, + ACTIONS(11089), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [48889] = 5, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - STATE(4062), 1, - sym_parameter_list, - ACTIONS(9153), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [48913] = 7, - ACTIONS(11086), 1, - anon_sym_COMMA, - ACTIONS(11088), 1, + ACTIONS(11091), 1, anon_sym_LT, - ACTIONS(11111), 1, + ACTIONS(11113), 1, anon_sym_SEMI, - STATE(4991), 1, + STATE(5037), 1, aux_sym_class_forward_declaration_repeat1, - STATE(5000), 1, + STATE(5038), 1, sym_parameterized_class_type_arguments, - STATE(5003), 1, + STATE(5039), 1, sym_protocol_qualifiers, ACTIONS(3), 7, sym_comment, @@ -612941,15 +610021,33 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48941] = 5, - ACTIONS(11113), 1, - sym_identifier, + [53462] = 4, ACTIONS(11115), 1, + anon_sym_COMMA, + STATE(4784), 1, + aux_sym_argument_list_repeat1, + ACTIONS(10254), 4, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COLON, - STATE(4795), 2, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53484] = 5, + ACTIONS(11103), 1, + sym_identifier, + ACTIONS(11105), 1, + anon_sym_COLON, + STATE(4818), 2, sym_keyword_argument, aux_sym_keyword_argument_list_repeat1, - STATE(5399), 2, + STATE(5675), 2, sym__message_selector, sym_keyword_argument_list, ACTIONS(3), 7, @@ -612960,18 +610058,16 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48965] = 6, - ACTIONS(8181), 1, + [53508] = 4, + ACTIONS(8209), 1, anon_sym_LBRACE, - ACTIONS(11117), 1, - sym_identifier, - ACTIONS(11119), 1, - anon_sym_COLON, - STATE(3510), 1, - sym_enumerator_list, - ACTIONS(8193), 2, + STATE(3464), 1, + sym_field_declaration_list, + ACTIONS(8162), 4, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_COLON, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -612980,58 +610076,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [48991] = 7, - ACTIONS(8090), 1, + [53530] = 7, + ACTIONS(11118), 1, sym_identifier, - ACTIONS(8092), 1, - anon_sym_LBRACE, - ACTIONS(8097), 1, - anon_sym_ATdefs, ACTIONS(11121), 1, - anon_sym_COLON, - STATE(3559), 1, - sym_field_declaration_list, - STATE(4768), 1, - sym_superclass_reference, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49019] = 7, - ACTIONS(11086), 1, - anon_sym_COMMA, - ACTIONS(11088), 1, - anon_sym_LT, - ACTIONS(11124), 1, - anon_sym_SEMI, - STATE(4908), 1, - sym_parameterized_class_type_arguments, - STATE(4933), 1, - aux_sym_class_forward_declaration_repeat1, - STATE(4936), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49047] = 4, - ACTIONS(8230), 1, - anon_sym_LBRACE, - STATE(3530), 1, - sym_enumerator_list, - ACTIONS(8228), 4, - anon_sym_COMMA, anon_sym_RPAREN, + ACTIONS(11123), 1, anon_sym_COLON, - sym_identifier, + STATE(4787), 1, + aux_sym__selector_name_repeat1, + STATE(4949), 1, + sym__keyword_name, + STATE(5293), 1, + sym__name, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -613040,46 +610097,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49069] = 7, - ACTIONS(8101), 1, - sym_identifier, - ACTIONS(8103), 1, - anon_sym_LBRACE, - ACTIONS(8106), 1, - anon_sym_ATdefs, - ACTIONS(11092), 1, - anon_sym_COLON, - STATE(3538), 1, - sym_field_declaration_list, - STATE(4763), 1, - sym_superclass_reference, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49097] = 4, - ACTIONS(8206), 1, - anon_sym_LBRACE, - STATE(3449), 1, - sym_field_declaration_list, - ACTIONS(8204), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49119] = 2, + [53558] = 2, ACTIONS(11126), 6, anon_sym_COMMA, anon_sym_RPAREN, @@ -613095,12 +610113,12 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49137] = 4, - ACTIONS(8213), 1, + [53576] = 4, + ACTIONS(8206), 1, anon_sym_LBRACE, - STATE(3534), 1, + STATE(3497), 1, sym_enumerator_list, - ACTIONS(8211), 4, + ACTIONS(8204), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -613113,16 +610131,15 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49159] = 4, - ACTIONS(8216), 1, - anon_sym_LBRACE, - STATE(3536), 1, - sym_enumerator_list, - ACTIONS(8179), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - sym_identifier, + [53598] = 3, + STATE(2795), 1, + sym_string_literal, + ACTIONS(2164), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -613131,16 +610148,73 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49181] = 4, - ACTIONS(8223), 1, + [53618] = 2, + ACTIONS(11128), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53636] = 5, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + STATE(4088), 1, + sym_parameter_list, + ACTIONS(9110), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACE, - STATE(3540), 1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53660] = 5, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + STATE(4088), 1, + sym_parameter_list, + ACTIONS(9098), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53684] = 7, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(8035), 1, + sym_identifier, + ACTIONS(8040), 1, + anon_sym_ATdefs, + ACTIONS(11072), 1, + anon_sym_COLON, + STATE(3377), 1, + sym_superclass_reference, + STATE(3454), 1, sym_field_declaration_list, - ACTIONS(8221), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -613149,16 +610223,14 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49203] = 4, - ACTIONS(8237), 1, - anon_sym_LBRACE, - STATE(3535), 1, - sym_field_declaration_list, - ACTIONS(8235), 4, + [53712] = 2, + ACTIONS(11130), 6, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COLON, - sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -613167,63 +610239,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49225] = 4, - ACTIONS(8250), 1, - anon_sym_LBRACE, - STATE(3516), 1, - sym_enumerator_list, - ACTIONS(8248), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49247] = 4, - ACTIONS(8262), 1, - anon_sym_LBRACE, - STATE(3488), 1, - sym_field_declaration_list, - ACTIONS(8260), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49269] = 6, - ACTIONS(8197), 1, - anon_sym_LBRACE, - ACTIONS(11128), 1, - sym_identifier, - ACTIONS(11130), 1, - anon_sym_COLON, - STATE(3510), 1, - sym_enumerator_list, - ACTIONS(8193), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49295] = 2, + [53730] = 2, ACTIONS(11132), 6, anon_sym_COMMA, anon_sym_RPAREN, @@ -613239,14 +610255,14 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49313] = 5, - ACTIONS(8793), 1, + [53748] = 5, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(8883), 1, + ACTIONS(8856), 1, anon_sym_LBRACK, - STATE(4062), 1, + STATE(4088), 1, sym_parameter_list, - ACTIONS(9123), 3, + ACTIONS(9142), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACE, @@ -613258,19 +610274,16 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49337] = 7, - ACTIONS(11095), 1, - sym_identifier, - ACTIONS(11097), 1, + [53772] = 4, + ACTIONS(8199), 1, + anon_sym_LBRACE, + STATE(3467), 1, + sym_field_declaration_list, + ACTIONS(8197), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - STATE(4752), 1, - aux_sym__selector_name_repeat1, - STATE(4917), 1, - sym__keyword_name, - STATE(5180), 1, - sym__name, - STATE(5468), 1, - sym__selector_name, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -613279,26 +610292,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49365] = 5, - ACTIONS(11113), 1, - sym_identifier, - ACTIONS(11115), 1, - anon_sym_COLON, - STATE(4795), 2, - sym_keyword_argument, - aux_sym_keyword_argument_list_repeat1, - STATE(5419), 2, - sym__message_selector, - sym_keyword_argument_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49389] = 2, + [53794] = 2, ACTIONS(11134), 6, anon_sym_COMMA, anon_sym_RPAREN, @@ -613314,69 +610308,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49407] = 2, - ACTIONS(11136), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49425] = 5, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(11034), 1, - anon_sym_LBRACK, - STATE(4776), 1, - sym_parameter_list, - ACTIONS(11138), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49449] = 2, - ACTIONS(11140), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49467] = 7, - ACTIONS(8090), 1, + [53812] = 7, + ACTIONS(8025), 1, sym_identifier, - ACTIONS(8097), 1, - anon_sym_ATdefs, - ACTIONS(8123), 1, + ACTIONS(8027), 1, anon_sym_LBRACE, - ACTIONS(11121), 1, + ACTIONS(8031), 1, + anon_sym_ATdefs, + ACTIONS(11136), 1, anon_sym_COLON, - STATE(3437), 1, + STATE(3378), 1, sym_superclass_reference, - STATE(3559), 1, + STATE(3456), 1, sym_field_declaration_list, ACTIONS(3), 7, sym_comment, @@ -613386,30 +610329,14 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49495] = 2, - ACTIONS(11142), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + [53840] = 5, + ACTIONS(8710), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(8856), 1, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49513] = 5, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - STATE(4062), 1, + STATE(4088), 1, sym_parameter_list, - ACTIONS(9137), 3, + ACTIONS(9136), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACE, @@ -613421,15 +610348,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49537] = 3, - STATE(2782), 1, - sym_string_literal, - ACTIONS(2214), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, + [53864] = 7, + ACTIONS(11085), 1, + sym_identifier, + ACTIONS(11087), 1, + anon_sym_COLON, + ACTIONS(11139), 1, + anon_sym_RPAREN, + STATE(4787), 1, + aux_sym__selector_name_repeat1, + STATE(4949), 1, + sym__keyword_name, + STATE(5293), 1, + sym__name, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -613438,14 +610369,14 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49557] = 4, - ACTIONS(11144), 1, + [53892] = 4, + ACTIONS(8224), 1, + anon_sym_LBRACE, + STATE(3493), 1, + sym_enumerator_list, + ACTIONS(8222), 4, anon_sym_COMMA, - STATE(4784), 1, - aux_sym_argument_list_repeat1, - ACTIONS(10258), 4, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_COLON, sym_identifier, ACTIONS(3), 7, @@ -613456,8 +610387,46 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49579] = 2, - ACTIONS(11147), 6, + [53914] = 4, + ACTIONS(8192), 1, + anon_sym_LBRACE, + STATE(3458), 1, + sym_field_declaration_list, + ACTIONS(8190), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53936] = 6, + ACTIONS(8138), 1, + anon_sym_LBRACE, + ACTIONS(11141), 1, + sym_identifier, + ACTIONS(11143), 1, + anon_sym_COLON, + STATE(3455), 1, + sym_enumerator_list, + ACTIONS(8182), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [53962] = 2, + ACTIONS(11145), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -613472,17 +610441,112 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49597] = 5, - ACTIONS(8793), 1, + [53980] = 7, + ACTIONS(8025), 1, + sym_identifier, + ACTIONS(8031), 1, + anon_sym_ATdefs, + ACTIONS(8087), 1, + anon_sym_LBRACE, + ACTIONS(11136), 1, + anon_sym_COLON, + STATE(3456), 1, + sym_field_declaration_list, + STATE(4798), 1, + sym_superclass_reference, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54008] = 6, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(8888), 1, + anon_sym_LBRACE, + ACTIONS(11147), 1, + sym_identifier, + STATE(3796), 1, + sym_field_declaration_list, + STATE(5019), 1, + sym_ms_declspec_modifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54033] = 6, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(8883), 1, + ACTIONS(8856), 1, anon_sym_LBRACK, - STATE(4062), 1, + ACTIONS(8874), 1, + anon_sym_LBRACE, + STATE(2979), 1, + sym_compound_statement, + STATE(4088), 1, sym_parameter_list, - ACTIONS(9143), 3, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54058] = 6, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(10157), 1, + anon_sym_LBRACE, + ACTIONS(11149), 1, + sym_identifier, + STATE(4605), 1, + sym_field_declaration_list, + STATE(5031), 1, + sym_ms_declspec_modifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54083] = 5, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + STATE(4088), 1, + sym_parameter_list, + ACTIONS(11151), 2, anon_sym_COMMA, anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54106] = 5, + ACTIONS(8164), 1, anon_sym_LBRACE, + ACTIONS(11153), 1, + anon_sym_COLON, + STATE(3451), 1, + sym_enumerator_list, + ACTIONS(8149), 2, + anon_sym_COMMA, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -613491,17 +610555,17 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49621] = 5, - ACTIONS(11149), 1, - anon_sym_LBRACK, - ACTIONS(11152), 1, - anon_sym_EQ, - ACTIONS(11154), 1, - anon_sym_DOT, - STATE(4787), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, + [54129] = 6, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(11155), 1, + sym_identifier, + STATE(3471), 1, + sym_field_declaration_list, + STATE(5020), 1, + sym_ms_declspec_modifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -613510,16 +610574,17 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49645] = 5, - ACTIONS(8181), 1, + [54154] = 6, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(8027), 1, anon_sym_LBRACE, ACTIONS(11157), 1, - anon_sym_COLON, - STATE(3522), 1, - sym_enumerator_list, - ACTIONS(8242), 2, - anon_sym_COMMA, - anon_sym_RPAREN, + sym_identifier, + STATE(3471), 1, + sym_field_declaration_list, + STATE(4909), 1, + sym_ms_declspec_modifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -613528,127 +610593,14 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49668] = 6, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(10146), 1, - anon_sym_LBRACE, + [54179] = 5, ACTIONS(11159), 1, sym_identifier, - STATE(4569), 1, - sym_field_declaration_list, - STATE(4984), 1, - sym_ms_declspec_modifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49693] = 6, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(10146), 1, - anon_sym_LBRACE, - ACTIONS(11161), 1, - sym_identifier, - STATE(4569), 1, - sym_field_declaration_list, - STATE(4997), 1, - sym_ms_declspec_modifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49718] = 6, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(8123), 1, - anon_sym_LBRACE, - ACTIONS(11163), 1, - sym_identifier, - STATE(3552), 1, - sym_field_declaration_list, - STATE(5015), 1, - sym_ms_declspec_modifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49743] = 6, - ACTIONS(175), 1, - anon_sym_LBRACE, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - STATE(811), 1, - sym_compound_statement, - STATE(4062), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49768] = 5, - ACTIONS(11088), 1, - anon_sym_LT, - STATE(5068), 1, - sym_parameterized_class_type_arguments, - STATE(5089), 1, - sym_protocol_qualifiers, - ACTIONS(11165), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49791] = 6, - ACTIONS(10996), 1, - anon_sym_COLON, - ACTIONS(11030), 1, - anon_sym_COMMA, - ACTIONS(11167), 1, - anon_sym_SEMI, - STATE(4875), 1, - aux_sym_field_declaration_repeat1, - STATE(5437), 1, - sym_bitfield_clause, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49816] = 5, - ACTIONS(11115), 1, - anon_sym_COLON, - ACTIONS(11169), 1, - sym_identifier, - ACTIONS(11171), 1, + ACTIONS(11162), 1, anon_sym_RBRACK, - STATE(4811), 2, + ACTIONS(11164), 1, + anon_sym_COLON, + STATE(4815), 2, sym_keyword_argument, aux_sym_keyword_argument_list_repeat1, ACTIONS(3), 7, @@ -613659,89 +610611,14 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49839] = 5, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - STATE(4062), 1, - sym_parameter_list, - ACTIONS(11173), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49862] = 6, - ACTIONS(10996), 1, - anon_sym_COLON, - ACTIONS(11030), 1, - anon_sym_COMMA, - ACTIONS(11175), 1, - anon_sym_SEMI, - STATE(4875), 1, - aux_sym_field_declaration_repeat1, - STATE(5661), 1, - sym_bitfield_clause, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49887] = 6, - ACTIONS(10996), 1, - anon_sym_COLON, - ACTIONS(11030), 1, - anon_sym_COMMA, - ACTIONS(11177), 1, - anon_sym_SEMI, - STATE(4875), 1, - aux_sym_field_declaration_repeat1, - STATE(5568), 1, - sym_bitfield_clause, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49912] = 6, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - STATE(904), 1, - sym_compound_statement, - STATE(4062), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49937] = 5, - ACTIONS(11179), 1, + [54202] = 5, + ACTIONS(11167), 1, sym_identifier, - STATE(4895), 1, + STATE(4919), 1, sym__parameterized_class_type_arguments, - STATE(4996), 1, + STATE(4954), 1, sym__protocol_identifier, - ACTIONS(11181), 2, + ACTIONS(11169), 2, anon_sym___covariant, anon_sym___contravariant, ACTIONS(3), 7, @@ -613752,54 +610629,16 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [49960] = 6, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(8123), 1, - anon_sym_LBRACE, - ACTIONS(11183), 1, - sym_identifier, - STATE(3552), 1, - sym_field_declaration_list, - STATE(4966), 1, - sym_ms_declspec_modifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [49985] = 6, - ACTIONS(767), 1, - anon_sym_LBRACE, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - STATE(1458), 1, - sym_compound_statement, - STATE(4062), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50010] = 6, - ACTIONS(10996), 1, + [54225] = 6, + ACTIONS(10986), 1, anon_sym_COLON, - ACTIONS(11030), 1, + ACTIONS(11020), 1, anon_sym_COMMA, - ACTIONS(11185), 1, + ACTIONS(11171), 1, anon_sym_SEMI, - STATE(4875), 1, + STATE(4861), 1, aux_sym_field_declaration_repeat1, - STATE(5461), 1, + STATE(5453), 1, sym_bitfield_clause, ACTIONS(3), 7, sym_comment, @@ -613809,16 +610648,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [50035] = 6, + [54250] = 5, + ACTIONS(11105), 1, + anon_sym_COLON, + ACTIONS(11173), 1, + sym_identifier, + ACTIONS(11175), 1, + anon_sym_RBRACK, + STATE(4815), 2, + sym_keyword_argument, + aux_sym_keyword_argument_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54273] = 6, + ACTIONS(175), 1, + anon_sym_LBRACE, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + STATE(515), 1, + sym_compound_statement, + STATE(4088), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54298] = 6, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(8847), 1, + ACTIONS(10157), 1, anon_sym_LBRACE, - ACTIONS(11187), 1, + ACTIONS(11177), 1, sym_identifier, - STATE(3796), 1, + STATE(4605), 1, sym_field_declaration_list, - STATE(4980), 1, + STATE(5005), 1, sym_ms_declspec_modifier, ACTIONS(3), 7, sym_comment, @@ -613828,12 +610704,198 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [50060] = 4, - ACTIONS(10272), 1, + [54323] = 5, + ACTIONS(8138), 1, + anon_sym_LBRACE, + ACTIONS(11179), 1, + anon_sym_COLON, + STATE(3451), 1, + sym_enumerator_list, + ACTIONS(8149), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54346] = 5, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9746), 1, + anon_sym_LBRACK, + STATE(4282), 1, + sym_parameter_list, + ACTIONS(11151), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54369] = 5, + ACTIONS(11091), 1, + anon_sym_LT, + STATE(5105), 1, + sym_parameterized_class_type_arguments, + STATE(5106), 1, + sym_protocol_qualifiers, + ACTIONS(11181), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54392] = 6, + ACTIONS(629), 1, + anon_sym_LBRACE, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + STATE(1357), 1, + sym_compound_statement, + STATE(4088), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54417] = 6, + ACTIONS(10986), 1, + anon_sym_COLON, + ACTIONS(11020), 1, + anon_sym_COMMA, + ACTIONS(11183), 1, + anon_sym_SEMI, + STATE(4861), 1, + aux_sym_field_declaration_repeat1, + STATE(5346), 1, + sym_bitfield_clause, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54442] = 6, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(8888), 1, + anon_sym_LBRACE, + ACTIONS(11185), 1, + sym_identifier, + STATE(3796), 1, + sym_field_declaration_list, + STATE(4992), 1, + sym_ms_declspec_modifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54467] = 6, + ACTIONS(10986), 1, + anon_sym_COLON, + ACTIONS(11020), 1, + anon_sym_COMMA, + ACTIONS(11187), 1, + anon_sym_SEMI, + STATE(4861), 1, + aux_sym_field_declaration_repeat1, + STATE(5837), 1, + sym_bitfield_clause, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54492] = 6, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(11189), 1, + sym_identifier, + STATE(3471), 1, + sym_field_declaration_list, + STATE(4964), 1, + sym_ms_declspec_modifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54517] = 6, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + STATE(846), 1, + sym_compound_statement, + STATE(4088), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54542] = 5, + ACTIONS(11167), 1, + sym_identifier, + STATE(4919), 1, + sym__parameterized_class_type_arguments, + STATE(5025), 1, + sym__protocol_identifier, + ACTIONS(11169), 2, + anon_sym___covariant, + anon_sym___contravariant, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54565] = 4, + ACTIONS(10250), 1, anon_sym_COMMA, STATE(4784), 1, aux_sym_argument_list_repeat1, - ACTIONS(11189), 3, + ACTIONS(11191), 3, anon_sym_RBRACK, anon_sym_COLON, sym_identifier, @@ -613845,54 +610907,17 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [50081] = 6, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(8847), 1, - anon_sym_LBRACE, - ACTIONS(11191), 1, - sym_identifier, - STATE(3796), 1, - sym_field_declaration_list, - STATE(4904), 1, - sym_ms_declspec_modifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50106] = 6, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(8123), 1, - anon_sym_LBRACE, - ACTIONS(11193), 1, - sym_identifier, - STATE(3552), 1, - sym_field_declaration_list, - STATE(4954), 1, - sym_ms_declspec_modifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50131] = 5, - ACTIONS(8272), 1, - anon_sym_LBRACE, - ACTIONS(11195), 1, + [54586] = 6, + ACTIONS(10986), 1, anon_sym_COLON, - STATE(3522), 1, - sym_enumerator_list, - ACTIONS(8242), 2, + ACTIONS(11020), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11193), 1, + anon_sym_SEMI, + STATE(4861), 1, + aux_sym_field_declaration_repeat1, + STATE(5426), 1, + sym_bitfield_clause, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -613901,34 +610926,15 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [50154] = 5, - ACTIONS(11179), 1, - sym_identifier, - STATE(4895), 1, - sym__parameterized_class_type_arguments, - STATE(4943), 1, - sym__protocol_identifier, - ACTIONS(11181), 2, - anon_sym___covariant, - anon_sym___contravariant, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50177] = 5, - ACTIONS(8793), 1, + [54611] = 5, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(9710), 1, + ACTIONS(9674), 1, anon_sym_LBRACK, - STATE(4286), 1, - sym_parameter_list, - ACTIONS(11173), 2, - anon_sym_COMMA, + ACTIONS(11195), 1, anon_sym_RPAREN, + STATE(4340), 1, + sym_parameter_list, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -613937,16 +610943,15 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [50200] = 5, + [54633] = 5, + ACTIONS(8027), 1, + anon_sym_LBRACE, ACTIONS(11197), 1, sym_identifier, - ACTIONS(11200), 1, - anon_sym_RBRACK, - ACTIONS(11202), 1, - anon_sym_COLON, - STATE(4811), 2, - sym_keyword_argument, - aux_sym_keyword_argument_list_repeat1, + ACTIONS(11199), 1, + anon_sym_ATdefs, + STATE(3463), 1, + sym_field_declaration_list, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -613955,35 +610960,16 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [50223] = 6, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8881), 1, - anon_sym_LBRACE, - ACTIONS(8883), 1, - anon_sym_LBRACK, - STATE(3062), 1, - sym_compound_statement, - STATE(4062), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50248] = 5, - ACTIONS(8123), 1, - anon_sym_LBRACE, + [54655] = 5, + ACTIONS(11201), 1, + anon_sym_DQUOTE, + ACTIONS(11203), 1, + aux_sym_string_literal_token1, ACTIONS(11205), 1, - sym_identifier, - ACTIONS(11207), 1, - anon_sym_ATdefs, - STATE(3477), 1, - sym_field_declaration_list, - ACTIONS(3), 7, + sym_escape_sequence, + STATE(4890), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, @@ -613991,541 +610977,14 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [50270] = 5, - ACTIONS(11209), 1, - sym_identifier, - ACTIONS(11211), 1, - anon_sym___GENERICS, - STATE(1669), 1, - sym__name, - STATE(1670), 1, - sym_generics_type_reference, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50292] = 5, - ACTIONS(11209), 1, - sym_identifier, - ACTIONS(11211), 1, - anon_sym___GENERICS, - STATE(1674), 1, - sym_generics_type_reference, - STATE(1676), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50314] = 5, - ACTIONS(11020), 1, + [54677] = 5, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(11095), 1, - sym_identifier, - STATE(4233), 1, - sym__name, - STATE(5072), 1, - sym__method_argument_type_specifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50336] = 5, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9616), 1, - anon_sym_LBRACK, - ACTIONS(11213), 1, - anon_sym_RPAREN, - STATE(4321), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50358] = 5, - ACTIONS(11215), 1, - anon_sym_DQUOTE, - ACTIONS(11217), 1, - aux_sym_string_literal_token1, - ACTIONS(11219), 1, - sym_escape_sequence, - STATE(4829), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50380] = 5, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(9710), 1, - anon_sym_LBRACK, - ACTIONS(11221), 1, - anon_sym_RPAREN, - STATE(4286), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50402] = 5, - ACTIONS(11223), 1, - anon_sym_LF, - ACTIONS(11225), 1, - anon_sym_LPAREN, - ACTIONS(11227), 1, - sym_preproc_arg, - STATE(5126), 1, - sym_preproc_params, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50424] = 5, - ACTIONS(8123), 1, + ACTIONS(8712), 1, anon_sym_LBRACE, - ACTIONS(11207), 1, - anon_sym_ATdefs, - ACTIONS(11229), 1, - sym_identifier, - STATE(3477), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50446] = 5, - ACTIONS(8181), 1, - anon_sym_LBRACE, - ACTIONS(8242), 1, - sym_identifier, - ACTIONS(11231), 1, - anon_sym_COLON, - STATE(3522), 1, - sym_enumerator_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50468] = 5, - ACTIONS(11234), 1, - sym_identifier, - ACTIONS(11236), 1, - anon_sym_COMMA, - ACTIONS(11238), 1, - anon_sym_RBRACE, - STATE(4960), 1, - sym_enumerator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50490] = 5, - ACTIONS(8847), 1, - anon_sym_LBRACE, - ACTIONS(11240), 1, - sym_identifier, - ACTIONS(11242), 1, - anon_sym_ATdefs, - STATE(3809), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50512] = 5, - ACTIONS(11209), 1, - sym_identifier, - ACTIONS(11211), 1, - anon_sym___GENERICS, - STATE(1675), 1, - sym__name, - STATE(1677), 1, - sym_generics_type_reference, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50534] = 5, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8883), 1, - anon_sym_LBRACK, - ACTIONS(11244), 1, - anon_sym_RPAREN, - STATE(4062), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50556] = 5, - ACTIONS(11209), 1, - sym_identifier, - ACTIONS(11211), 1, - anon_sym___GENERICS, - STATE(1661), 1, - sym_generics_type_reference, - STATE(1668), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50578] = 5, - ACTIONS(11209), 1, - sym_identifier, - ACTIONS(11211), 1, - anon_sym___GENERICS, - STATE(1662), 1, - sym__name, - STATE(1663), 1, - sym_generics_type_reference, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50600] = 5, - ACTIONS(11246), 1, - anon_sym_DQUOTE, - ACTIONS(11248), 1, - aux_sym_string_literal_token1, - ACTIONS(11250), 1, - sym_escape_sequence, - STATE(4830), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50622] = 5, - ACTIONS(11252), 1, - anon_sym_DQUOTE, - ACTIONS(11254), 1, - aux_sym_string_literal_token1, - ACTIONS(11257), 1, - sym_escape_sequence, - STATE(4830), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50644] = 5, - ACTIONS(11248), 1, - aux_sym_string_literal_token1, - ACTIONS(11250), 1, - sym_escape_sequence, - ACTIONS(11260), 1, - anon_sym_DQUOTE, - STATE(4830), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50666] = 5, - ACTIONS(8181), 1, - anon_sym_LBRACE, - ACTIONS(11262), 1, - sym_identifier, - ACTIONS(11265), 1, - anon_sym_COLON, - STATE(3510), 1, - sym_enumerator_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50688] = 5, - ACTIONS(8242), 1, - sym_identifier, - ACTIONS(8272), 1, - anon_sym_LBRACE, - ACTIONS(11268), 1, - anon_sym_COLON, - STATE(3522), 1, - sym_enumerator_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50710] = 5, - ACTIONS(11271), 1, - anon_sym_DQUOTE, - ACTIONS(11273), 1, - aux_sym_string_literal_token1, - ACTIONS(11275), 1, - sym_escape_sequence, - STATE(4838), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50732] = 5, - ACTIONS(11209), 1, - sym_identifier, - ACTIONS(11211), 1, - anon_sym___GENERICS, - STATE(1649), 1, - sym_generics_type_reference, - STATE(1650), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50754] = 5, - ACTIONS(11225), 1, - anon_sym_LPAREN, - ACTIONS(11277), 1, - anon_sym_LF, - ACTIONS(11279), 1, - sym_preproc_arg, - STATE(5121), 1, - sym_preproc_params, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50776] = 5, - ACTIONS(8123), 1, - anon_sym_LBRACE, - ACTIONS(11207), 1, - anon_sym_ATdefs, - ACTIONS(11281), 1, - sym_identifier, - STATE(3477), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50798] = 5, - ACTIONS(11248), 1, - aux_sym_string_literal_token1, - ACTIONS(11250), 1, - sym_escape_sequence, - ACTIONS(11283), 1, - anon_sym_DQUOTE, - STATE(4830), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50820] = 5, - ACTIONS(8197), 1, - anon_sym_LBRACE, - ACTIONS(11285), 1, - sym_identifier, - ACTIONS(11288), 1, - anon_sym_COLON, - STATE(3510), 1, - sym_enumerator_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50842] = 5, - ACTIONS(11291), 1, - anon_sym_DQUOTE, - ACTIONS(11293), 1, - aux_sym_string_literal_token1, - ACTIONS(11295), 1, - sym_escape_sequence, - STATE(4831), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50864] = 5, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(11034), 1, - anon_sym_LBRACK, - ACTIONS(11297), 1, - anon_sym_RPAREN, - STATE(4776), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50886] = 5, - ACTIONS(11299), 1, - anon_sym_DQUOTE, - ACTIONS(11301), 1, - aux_sym_string_literal_token1, - ACTIONS(11303), 1, - sym_escape_sequence, - STATE(4848), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50908] = 5, - ACTIONS(11209), 1, - sym_identifier, - ACTIONS(11211), 1, - anon_sym___GENERICS, - STATE(1651), 1, - sym__name, - STATE(1652), 1, - sym_generics_type_reference, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50930] = 5, - ACTIONS(11225), 1, - anon_sym_LPAREN, - ACTIONS(11305), 1, - anon_sym_LF, - ACTIONS(11307), 1, - sym_preproc_arg, - STATE(5064), 1, - sym_preproc_params, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [50952] = 5, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - ACTIONS(8873), 1, - anon_sym_LBRACE, - STATE(3069), 1, + STATE(3260), 1, sym_compound_statement, - STATE(5060), 1, + STATE(5064), 1, sym_parameter_list, ACTIONS(3), 7, sym_comment, @@ -614535,15 +610994,15 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [50974] = 5, - ACTIONS(11234), 1, + [54699] = 5, + ACTIONS(11207), 1, sym_identifier, - ACTIONS(11309), 1, - anon_sym_COMMA, - ACTIONS(11311), 1, - anon_sym_RBRACE, - STATE(4998), 1, - sym_enumerator, + ACTIONS(11209), 1, + anon_sym___GENERICS, + STATE(1632), 1, + sym_generics_type_reference, + STATE(1636), 1, + sym__name, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -614552,14 +611011,31 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [50996] = 5, - ACTIONS(8847), 1, - anon_sym_LBRACE, - ACTIONS(11242), 1, - anon_sym_ATdefs, - ACTIONS(11313), 1, + [54721] = 5, + ACTIONS(11207), 1, sym_identifier, - STATE(3809), 1, + ACTIONS(11209), 1, + anon_sym___GENERICS, + STATE(1588), 1, + sym_generics_type_reference, + STATE(1593), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54743] = 5, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(11199), 1, + anon_sym_ATdefs, + ACTIONS(11211), 1, + sym_identifier, + STATE(3463), 1, sym_field_declaration_list, ACTIONS(3), 7, sym_comment, @@ -614569,14 +611045,14 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [51018] = 5, - ACTIONS(11248), 1, - aux_sym_string_literal_token1, - ACTIONS(11250), 1, - sym_escape_sequence, - ACTIONS(11315), 1, + [54765] = 5, + ACTIONS(11213), 1, anon_sym_DQUOTE, - STATE(4830), 1, + ACTIONS(11215), 1, + aux_sym_string_literal_token1, + ACTIONS(11217), 1, + sym_escape_sequence, + STATE(4842), 1, aux_sym_string_literal_repeat1, ACTIONS(5), 7, sym_comment, @@ -614586,81 +611062,14 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [51040] = 5, - ACTIONS(11020), 1, - anon_sym_LPAREN2, - ACTIONS(11095), 1, - sym_identifier, - STATE(4080), 1, - sym__name, - STATE(5161), 1, - sym__method_argument_type_specifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51062] = 4, - ACTIONS(11317), 1, - sym_identifier, - STATE(5172), 1, - sym__parameterized_class_type_arguments, - ACTIONS(11181), 2, - anon_sym___covariant, - anon_sym___contravariant, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51082] = 5, - ACTIONS(11209), 1, - sym_identifier, - ACTIONS(11211), 1, - anon_sym___GENERICS, - STATE(1680), 1, - sym__name, - STATE(1681), 1, - sym_generics_type_reference, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51104] = 5, - ACTIONS(11319), 1, - anon_sym_DQUOTE, - ACTIONS(11321), 1, - aux_sym_string_literal_token1, - ACTIONS(11323), 1, - sym_escape_sequence, - STATE(4855), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51126] = 5, - ACTIONS(11225), 1, - anon_sym_LPAREN, - ACTIONS(11325), 1, + [54787] = 5, + ACTIONS(11219), 1, anon_sym_LF, - ACTIONS(11327), 1, + ACTIONS(11221), 1, + anon_sym_LPAREN, + ACTIONS(11223), 1, sym_preproc_arg, - STATE(5038), 1, + STATE(5066), 1, sym_preproc_params, ACTIONS(5), 7, sym_comment, @@ -614670,14 +611079,82 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [51148] = 5, - ACTIONS(8123), 1, - anon_sym_LBRACE, + [54809] = 5, + ACTIONS(11225), 1, + anon_sym_DQUOTE, + ACTIONS(11227), 1, + aux_sym_string_literal_token1, + ACTIONS(11230), 1, + sym_escape_sequence, + STATE(4842), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54831] = 5, ACTIONS(11207), 1, - anon_sym_ATdefs, - ACTIONS(11329), 1, sym_identifier, - STATE(3477), 1, + ACTIONS(11209), 1, + anon_sym___GENERICS, + STATE(1626), 1, + sym_generics_type_reference, + STATE(1630), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54853] = 5, + ACTIONS(11215), 1, + aux_sym_string_literal_token1, + ACTIONS(11217), 1, + sym_escape_sequence, + ACTIONS(11233), 1, + anon_sym_DQUOTE, + STATE(4842), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54875] = 5, + ACTIONS(11221), 1, + anon_sym_LPAREN, + ACTIONS(11235), 1, + anon_sym_LF, + ACTIONS(11237), 1, + sym_preproc_arg, + STATE(5093), 1, + sym_preproc_params, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54897] = 5, + ACTIONS(8888), 1, + anon_sym_LBRACE, + ACTIONS(11239), 1, + sym_identifier, + ACTIONS(11241), 1, + anon_sym_ATdefs, + STATE(3807), 1, sym_field_declaration_list, ACTIONS(3), 7, sym_comment, @@ -614687,14 +611164,65 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [51170] = 5, - ACTIONS(11248), 1, - aux_sym_string_literal_token1, - ACTIONS(11250), 1, - sym_escape_sequence, - ACTIONS(11331), 1, + [54919] = 5, + ACTIONS(10157), 1, + anon_sym_LBRACE, + ACTIONS(11243), 1, + sym_identifier, + ACTIONS(11245), 1, + anon_sym_ATdefs, + STATE(4579), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54941] = 5, + ACTIONS(11247), 1, + sym_identifier, + ACTIONS(11249), 1, + anon_sym_COMMA, + ACTIONS(11251), 1, + anon_sym_RBRACE, + STATE(5014), 1, + sym_enumerator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54963] = 5, + ACTIONS(11247), 1, + sym_identifier, + ACTIONS(11253), 1, + anon_sym_COMMA, + ACTIONS(11255), 1, + anon_sym_RBRACE, + STATE(4988), 1, + sym_enumerator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [54985] = 5, + ACTIONS(11257), 1, anon_sym_DQUOTE, - STATE(4830), 1, + ACTIONS(11259), 1, + aux_sym_string_literal_token1, + ACTIONS(11261), 1, + sym_escape_sequence, + STATE(4889), 1, aux_sym_string_literal_repeat1, ACTIONS(5), 7, sym_comment, @@ -614704,14 +611232,200 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [51192] = 5, - ACTIONS(8793), 1, + [55007] = 5, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(11199), 1, + anon_sym_ATdefs, + ACTIONS(11263), 1, + sym_identifier, + STATE(3463), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55029] = 5, + ACTIONS(11221), 1, + anon_sym_LPAREN, + ACTIONS(11265), 1, + anon_sym_LF, + ACTIONS(11267), 1, + sym_preproc_arg, + STATE(5052), 1, + sym_preproc_params, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55051] = 5, + ACTIONS(11207), 1, + sym_identifier, + ACTIONS(11209), 1, + anon_sym___GENERICS, + STATE(1617), 1, + sym_generics_type_reference, + STATE(1628), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55073] = 5, + ACTIONS(11010), 1, anon_sym_LPAREN2, - ACTIONS(8883), 1, + ACTIONS(11085), 1, + sym_identifier, + STATE(4214), 1, + sym__name, + STATE(5110), 1, + sym__method_argument_type_specifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55095] = 5, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(11199), 1, + anon_sym_ATdefs, + ACTIONS(11269), 1, + sym_identifier, + STATE(3463), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55117] = 5, + ACTIONS(11221), 1, + anon_sym_LPAREN, + ACTIONS(11271), 1, + anon_sym_LF, + ACTIONS(11273), 1, + sym_preproc_arg, + STATE(5142), 1, + sym_preproc_params, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55139] = 5, + ACTIONS(11275), 1, + anon_sym_DQUOTE, + ACTIONS(11277), 1, + aux_sym_string_literal_token1, + ACTIONS(11279), 1, + sym_escape_sequence, + STATE(4844), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55161] = 5, + ACTIONS(11281), 1, + anon_sym_DQUOTE, + ACTIONS(11283), 1, + aux_sym_string_literal_token1, + ACTIONS(11285), 1, + sym_escape_sequence, + STATE(4868), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55183] = 5, + ACTIONS(11221), 1, + anon_sym_LPAREN, + ACTIONS(11287), 1, + anon_sym_LF, + ACTIONS(11289), 1, + sym_preproc_arg, + STATE(5249), 1, + sym_preproc_params, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55205] = 5, + ACTIONS(10157), 1, + anon_sym_LBRACE, + ACTIONS(11245), 1, + anon_sym_ATdefs, + ACTIONS(11291), 1, + sym_identifier, + STATE(4579), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55227] = 4, + ACTIONS(11293), 1, + anon_sym_COMMA, + STATE(4861), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(11296), 2, + anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55247] = 5, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(11024), 1, anon_sym_LBRACK, - ACTIONS(11333), 1, + ACTIONS(11298), 1, anon_sym_RPAREN, - STATE(4062), 1, + STATE(4775), 1, sym_parameter_list, ACTIONS(3), 7, sym_comment, @@ -614721,14 +611435,99 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [51214] = 5, - ACTIONS(11335), 1, - anon_sym_DQUOTE, - ACTIONS(11337), 1, + [55269] = 5, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(11199), 1, + anon_sym_ATdefs, + ACTIONS(11300), 1, + sym_identifier, + STATE(3463), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55291] = 5, + ACTIONS(11247), 1, + sym_identifier, + ACTIONS(11302), 1, + anon_sym_COMMA, + ACTIONS(11304), 1, + anon_sym_RBRACE, + STATE(5021), 1, + sym_enumerator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55313] = 5, + ACTIONS(11207), 1, + sym_identifier, + ACTIONS(11209), 1, + anon_sym___GENERICS, + STATE(1598), 1, + sym__name, + STATE(1606), 1, + sym_generics_type_reference, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55335] = 5, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8856), 1, + anon_sym_LBRACK, + ACTIONS(11306), 1, + anon_sym_RPAREN, + STATE(4088), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55357] = 5, + ACTIONS(11207), 1, + sym_identifier, + ACTIONS(11209), 1, + anon_sym___GENERICS, + STATE(1589), 1, + sym__name, + STATE(1590), 1, + sym_generics_type_reference, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55379] = 5, + ACTIONS(11215), 1, aux_sym_string_literal_token1, - ACTIONS(11339), 1, + ACTIONS(11217), 1, sym_escape_sequence, - STATE(4860), 1, + ACTIONS(11308), 1, + anon_sym_DQUOTE, + STATE(4842), 1, aux_sym_string_literal_repeat1, ACTIONS(5), 7, sym_comment, @@ -614738,12 +611537,148 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [51236] = 5, - ACTIONS(11225), 1, + [55401] = 5, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(9746), 1, + anon_sym_LBRACK, + ACTIONS(11310), 1, + anon_sym_RPAREN, + STATE(4282), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55423] = 5, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + ACTIONS(8764), 1, + anon_sym_LBRACE, + STATE(3029), 1, + sym_compound_statement, + STATE(5133), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55445] = 5, + ACTIONS(8215), 1, + anon_sym_LBRACE, + ACTIONS(11312), 1, + sym_identifier, + ACTIONS(11315), 1, + anon_sym_COLON, + STATE(3455), 1, + sym_enumerator_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55467] = 5, + ACTIONS(11221), 1, anon_sym_LPAREN, - ACTIONS(11341), 1, + ACTIONS(11318), 1, anon_sym_LF, - ACTIONS(11343), 1, + ACTIONS(11320), 1, + sym_preproc_arg, + STATE(5130), 1, + sym_preproc_params, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55489] = 5, + ACTIONS(11207), 1, + sym_identifier, + ACTIONS(11209), 1, + anon_sym___GENERICS, + STATE(1613), 1, + sym__name, + STATE(1622), 1, + sym_generics_type_reference, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55511] = 5, + ACTIONS(8888), 1, + anon_sym_LBRACE, + ACTIONS(11241), 1, + anon_sym_ATdefs, + ACTIONS(11322), 1, + sym_identifier, + STATE(3807), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55533] = 5, + ACTIONS(11207), 1, + sym_identifier, + ACTIONS(11209), 1, + anon_sym___GENERICS, + STATE(1627), 1, + sym_generics_type_reference, + STATE(1629), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55555] = 5, + ACTIONS(11324), 1, + anon_sym_DQUOTE, + ACTIONS(11326), 1, + aux_sym_string_literal_token1, + ACTIONS(11328), 1, + sym_escape_sequence, + STATE(4883), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55577] = 5, + ACTIONS(11221), 1, + anon_sym_LPAREN, + ACTIONS(11330), 1, + anon_sym_LF, + ACTIONS(11332), 1, sym_preproc_arg, STATE(5062), 1, sym_preproc_params, @@ -614755,252 +611690,14 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [51258] = 5, - ACTIONS(8123), 1, - anon_sym_LBRACE, - ACTIONS(11207), 1, - anon_sym_ATdefs, - ACTIONS(11345), 1, - sym_identifier, - STATE(3477), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51280] = 5, - ACTIONS(11248), 1, - aux_sym_string_literal_token1, - ACTIONS(11250), 1, - sym_escape_sequence, - ACTIONS(11347), 1, - anon_sym_DQUOTE, - STATE(4830), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51302] = 5, - ACTIONS(11349), 1, - anon_sym_DQUOTE, - ACTIONS(11351), 1, - aux_sym_string_literal_token1, - ACTIONS(11353), 1, - sym_escape_sequence, - STATE(4863), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51324] = 5, - ACTIONS(11225), 1, - anon_sym_LPAREN, - ACTIONS(11355), 1, - anon_sym_LF, - ACTIONS(11357), 1, - sym_preproc_arg, - STATE(5078), 1, - sym_preproc_params, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51346] = 5, - ACTIONS(11248), 1, - aux_sym_string_literal_token1, - ACTIONS(11250), 1, - sym_escape_sequence, - ACTIONS(11359), 1, - anon_sym_DQUOTE, - STATE(4830), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51368] = 5, - ACTIONS(11225), 1, - anon_sym_LPAREN, - ACTIONS(11361), 1, - anon_sym_LF, - ACTIONS(11363), 1, - sym_preproc_arg, - STATE(5176), 1, - sym_preproc_params, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51390] = 5, - ACTIONS(11234), 1, - sym_identifier, - ACTIONS(11365), 1, - anon_sym_COMMA, - ACTIONS(11367), 1, - anon_sym_RBRACE, - STATE(4974), 1, - sym_enumerator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51412] = 5, - ACTIONS(8123), 1, - anon_sym_LBRACE, - ACTIONS(11207), 1, - anon_sym_ATdefs, - ACTIONS(11369), 1, - sym_identifier, - STATE(3477), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51434] = 5, - ACTIONS(8123), 1, - anon_sym_LBRACE, - ACTIONS(11207), 1, - anon_sym_ATdefs, - ACTIONS(11371), 1, - sym_identifier, - STATE(3477), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51456] = 5, - ACTIONS(8123), 1, - anon_sym_LBRACE, - ACTIONS(11207), 1, - anon_sym_ATdefs, - ACTIONS(11373), 1, - sym_identifier, - STATE(3477), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51478] = 5, - ACTIONS(10146), 1, - anon_sym_LBRACE, - ACTIONS(11375), 1, - sym_identifier, - ACTIONS(11377), 1, - anon_sym_ATdefs, - STATE(4588), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51500] = 5, - ACTIONS(10146), 1, - anon_sym_LBRACE, - ACTIONS(11377), 1, - anon_sym_ATdefs, - ACTIONS(11379), 1, - sym_identifier, - STATE(4588), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51522] = 5, - ACTIONS(11209), 1, - sym_identifier, - ACTIONS(11211), 1, - anon_sym___GENERICS, - STATE(1647), 1, - sym__name, - STATE(1655), 1, - sym_generics_type_reference, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51544] = 5, - ACTIONS(11209), 1, - sym_identifier, - ACTIONS(11211), 1, - anon_sym___GENERICS, - STATE(1672), 1, - sym__name, - STATE(1673), 1, - sym_generics_type_reference, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51566] = 5, - ACTIONS(8793), 1, + [55599] = 5, + ACTIONS(8710), 1, anon_sym_LPAREN2, - ACTIONS(8795), 1, - anon_sym_LBRACE, - STATE(3347), 1, - sym_compound_statement, - STATE(5059), 1, + ACTIONS(8856), 1, + anon_sym_LBRACK, + ACTIONS(11334), 1, + anon_sym_RPAREN, + STATE(4088), 1, sym_parameter_list, ACTIONS(3), 7, sym_comment, @@ -615010,14 +611707,149 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [51588] = 5, - ACTIONS(11209), 1, + [55621] = 5, + ACTIONS(11010), 1, + anon_sym_LPAREN2, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11211), 1, + STATE(4224), 1, + sym__name, + STATE(5103), 1, + sym__method_argument_type_specifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55643] = 5, + ACTIONS(11336), 1, + anon_sym_DQUOTE, + ACTIONS(11338), 1, + aux_sym_string_literal_token1, + ACTIONS(11340), 1, + sym_escape_sequence, + STATE(4884), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55665] = 5, + ACTIONS(11342), 1, + anon_sym_DQUOTE, + ACTIONS(11344), 1, + aux_sym_string_literal_token1, + ACTIONS(11346), 1, + sym_escape_sequence, + STATE(4840), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55687] = 5, + ACTIONS(8138), 1, + anon_sym_LBRACE, + ACTIONS(8149), 1, + sym_identifier, + ACTIONS(11348), 1, + anon_sym_COLON, + STATE(3451), 1, + sym_enumerator_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55709] = 5, + ACTIONS(11215), 1, + aux_sym_string_literal_token1, + ACTIONS(11217), 1, + sym_escape_sequence, + ACTIONS(11351), 1, + anon_sym_DQUOTE, + STATE(4842), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55731] = 5, + ACTIONS(11215), 1, + aux_sym_string_literal_token1, + ACTIONS(11217), 1, + sym_escape_sequence, + ACTIONS(11353), 1, + anon_sym_DQUOTE, + STATE(4842), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55753] = 4, + ACTIONS(11355), 1, + sym_identifier, + STATE(5113), 1, + sym__parameterized_class_type_arguments, + ACTIONS(11169), 2, + anon_sym___covariant, + anon_sym___contravariant, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55773] = 5, + ACTIONS(11207), 1, + sym_identifier, + ACTIONS(11209), 1, anon_sym___GENERICS, - STATE(1682), 1, + STATE(1614), 1, + sym__name, + STATE(1616), 1, sym_generics_type_reference, - STATE(1683), 1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55795] = 5, + ACTIONS(11207), 1, + sym_identifier, + ACTIONS(11209), 1, + anon_sym___GENERICS, + STATE(1633), 1, + sym_generics_type_reference, + STATE(1634), 1, sym__name, ACTIONS(3), 7, sym_comment, @@ -615027,14 +611859,196 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [51610] = 4, + [55817] = 5, + ACTIONS(11207), 1, + sym_identifier, + ACTIONS(11209), 1, + anon_sym___GENERICS, + STATE(1619), 1, + sym_generics_type_reference, + STATE(1623), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55839] = 5, + ACTIONS(11215), 1, + aux_sym_string_literal_token1, + ACTIONS(11217), 1, + sym_escape_sequence, + ACTIONS(11357), 1, + anon_sym_DQUOTE, + STATE(4842), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55861] = 5, + ACTIONS(11215), 1, + aux_sym_string_literal_token1, + ACTIONS(11217), 1, + sym_escape_sequence, + ACTIONS(11359), 1, + anon_sym_DQUOTE, + STATE(4842), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55883] = 5, + ACTIONS(8149), 1, + sym_identifier, + ACTIONS(8164), 1, + anon_sym_LBRACE, + ACTIONS(11361), 1, + anon_sym_COLON, + STATE(3451), 1, + sym_enumerator_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55905] = 5, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(11199), 1, + anon_sym_ATdefs, + ACTIONS(11364), 1, + sym_identifier, + STATE(3463), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55927] = 5, + ACTIONS(8138), 1, + anon_sym_LBRACE, + ACTIONS(11366), 1, + sym_identifier, + ACTIONS(11369), 1, + anon_sym_COLON, + STATE(3455), 1, + sym_enumerator_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55949] = 5, + ACTIONS(11207), 1, + sym_identifier, + ACTIONS(11209), 1, + anon_sym___GENERICS, + STATE(1620), 1, + sym_generics_type_reference, + STATE(1631), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55971] = 5, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(11199), 1, + anon_sym_ATdefs, + ACTIONS(11372), 1, + sym_identifier, + STATE(3463), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [55993] = 5, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(11199), 1, + anon_sym_ATdefs, + ACTIONS(11374), 1, + sym_identifier, + STATE(3463), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56015] = 4, + ACTIONS(7979), 1, + anon_sym_RBRACE, + ACTIONS(11376), 1, + anon_sym_COMMA, + STATE(4963), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56034] = 4, + ACTIONS(10882), 1, + anon_sym_RPAREN, + ACTIONS(11378), 1, + anon_sym_COMMA, + STATE(4898), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56053] = 4, ACTIONS(11381), 1, anon_sym_COMMA, - STATE(4875), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(11384), 2, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(11383), 1, + anon_sym_RPAREN, + STATE(4930), 1, + aux_sym_availability_attribute_specifier_repeat1, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -615043,119 +612057,12 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [51630] = 5, - ACTIONS(11209), 1, + [56072] = 4, + ACTIONS(11247), 1, sym_identifier, - ACTIONS(11211), 1, - anon_sym___GENERICS, - STATE(1664), 1, - sym_generics_type_reference, - STATE(1665), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51652] = 4, - ACTIONS(11386), 1, - anon_sym_COMMA, - ACTIONS(11388), 1, - anon_sym_RPAREN, - STATE(4964), 1, - aux_sym_availability_attribute_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51671] = 4, - ACTIONS(11390), 1, - anon_sym_COMMA, - ACTIONS(11392), 1, - anon_sym_RPAREN, - STATE(4988), 1, - aux_sym_parameter_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51690] = 4, - ACTIONS(11394), 1, - anon_sym_COMMA, - ACTIONS(11396), 1, - anon_sym_GT, - STATE(4975), 1, - aux_sym_generic_type_references_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51709] = 4, - ACTIONS(11398), 1, - anon_sym_COMMA, - ACTIONS(11400), 1, + ACTIONS(11385), 1, anon_sym_RBRACE, - STATE(4959), 1, - aux_sym_enumerator_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51728] = 4, - ACTIONS(11386), 1, - anon_sym_COMMA, - ACTIONS(11402), 1, - anon_sym_RPAREN, - STATE(4999), 1, - aux_sym_availability_attribute_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51747] = 4, - ACTIONS(11386), 1, - anon_sym_COMMA, - ACTIONS(11404), 1, - anon_sym_RPAREN, - STATE(4999), 1, - aux_sym_availability_attribute_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51766] = 4, - ACTIONS(11234), 1, - sym_identifier, - ACTIONS(11400), 1, - anon_sym_RBRACE, - STATE(5118), 1, + STATE(5144), 1, sym_enumerator, ACTIONS(3), 7, sym_comment, @@ -615165,10 +612072,100 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [51785] = 3, - ACTIONS(11408), 1, + [56091] = 4, + ACTIONS(11381), 1, + anon_sym_COMMA, + ACTIONS(11387), 1, + anon_sym_RPAREN, + STATE(4931), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56110] = 4, + ACTIONS(11385), 1, + anon_sym_RBRACE, + ACTIONS(11389), 1, + anon_sym_COMMA, + STATE(4986), 1, + aux_sym_enumerator_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56129] = 4, + ACTIONS(11381), 1, + anon_sym_COMMA, + ACTIONS(11391), 1, + anon_sym_RPAREN, + STATE(4950), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56148] = 4, + ACTIONS(11381), 1, + anon_sym_COMMA, + ACTIONS(11393), 1, + anon_sym_RPAREN, + STATE(4947), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56167] = 4, + ACTIONS(7989), 1, + anon_sym_RBRACE, + ACTIONS(11395), 1, + anon_sym_COMMA, + STATE(4963), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56186] = 4, + ACTIONS(11397), 1, + anon_sym_COMMA, + ACTIONS(11400), 1, + anon_sym_RPAREN, + STATE(4906), 1, + aux_sym_platform_version_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56205] = 3, + ACTIONS(11404), 1, aux_sym_number_expression_token1, - ACTIONS(11406), 2, + ACTIONS(11402), 2, aux_sym_char_literal_token1, sym_escape_sequence, ACTIONS(5), 7, @@ -615179,12 +612176,57 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [51802] = 4, + [56222] = 4, + ACTIONS(11085), 1, + sym_identifier, + ACTIONS(11406), 1, + anon_sym_LPAREN2, + STATE(1763), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56241] = 4, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(11408), 1, + sym_identifier, + STATE(3465), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56260] = 4, ACTIONS(11410), 1, anon_sym_COMMA, ACTIONS(11412), 1, anon_sym_GT, - STATE(4977), 1, + STATE(4995), 1, + aux_sym_generic_type_references_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56279] = 4, + ACTIONS(11414), 1, + anon_sym_COMMA, + ACTIONS(11416), 1, + anon_sym_GT, + STATE(4996), 1, aux_sym_protocol_qualifiers_repeat1, ACTIONS(3), 7, sym_comment, @@ -615194,8 +612236,227 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [51821] = 2, - ACTIONS(11414), 3, + [56298] = 4, + ACTIONS(11418), 1, + anon_sym_COMMA, + ACTIONS(11420), 1, + anon_sym_RPAREN, + STATE(4974), 1, + aux_sym_available_expression_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56317] = 2, + ACTIONS(11422), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56332] = 4, + ACTIONS(11089), 1, + anon_sym_COMMA, + ACTIONS(11424), 1, + anon_sym_SEMI, + STATE(4923), 1, + aux_sym_class_forward_declaration_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56351] = 4, + ACTIONS(11426), 1, + anon_sym_COMMA, + ACTIONS(11429), 1, + anon_sym_SEMI, + STATE(4915), 1, + aux_sym_protocol_forward_declaration_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56370] = 4, + ACTIONS(11431), 1, + sym_identifier, + ACTIONS(11433), 1, + anon_sym_RPAREN, + ACTIONS(11435), 1, + anon_sym_LPAREN2, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56389] = 4, + ACTIONS(10866), 1, + anon_sym_LPAREN2, + ACTIONS(11437), 1, + anon_sym_LF, + STATE(4699), 1, + sym_preproc_argument_list, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56408] = 3, + ACTIONS(11442), 1, + anon_sym_COLON, + ACTIONS(11439), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56425] = 4, + ACTIONS(11444), 1, + anon_sym_COMMA, + ACTIONS(11446), 1, + anon_sym_GT, + STATE(5004), 1, + aux_sym_parameterized_class_type_arguments_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56444] = 4, + ACTIONS(11089), 1, + anon_sym_COMMA, + ACTIONS(11448), 1, + anon_sym_SEMI, + STATE(4923), 1, + aux_sym_class_forward_declaration_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56463] = 2, + ACTIONS(11450), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56478] = 4, + ACTIONS(11089), 1, + anon_sym_COMMA, + ACTIONS(11452), 1, + anon_sym_SEMI, + STATE(4923), 1, + aux_sym_class_forward_declaration_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56497] = 4, + ACTIONS(11454), 1, + anon_sym_COMMA, + ACTIONS(11457), 1, + anon_sym_SEMI, + STATE(4923), 1, + aux_sym_class_forward_declaration_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56516] = 4, + ACTIONS(11459), 1, + anon_sym_COMMA, + ACTIONS(11462), 1, + anon_sym_RPAREN, + STATE(4924), 1, + aux_sym_property_attributes_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56535] = 4, + ACTIONS(11464), 1, + anon_sym_COMMA, + ACTIONS(11466), 1, + anon_sym_RPAREN, + STATE(5008), 1, + aux_sym_generics_type_reference_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56554] = 3, + ACTIONS(11470), 1, + anon_sym_COLON, + ACTIONS(11468), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56571] = 2, + ACTIONS(11472), 3, anon_sym_RBRACK, anon_sym_COLON, sym_identifier, @@ -615207,56 +612468,27 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [51836] = 4, - ACTIONS(11416), 1, - anon_sym_COMMA, - ACTIONS(11419), 1, - anon_sym_RPAREN, - STATE(4887), 1, - aux_sym_available_expression_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51855] = 3, - ACTIONS(11424), 1, - anon_sym_COLON, - ACTIONS(11421), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51872] = 4, - ACTIONS(8881), 1, - anon_sym_LBRACE, - ACTIONS(11426), 1, - anon_sym_SEMI, - STATE(3028), 1, - sym_compound_statement, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51891] = 4, - ACTIONS(8029), 1, + [56586] = 4, + ACTIONS(11247), 1, + sym_identifier, + ACTIONS(11474), 1, anon_sym_RBRACE, - ACTIONS(11428), 1, + STATE(5144), 1, + sym_enumerator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56605] = 4, + ACTIONS(10492), 1, anon_sym_COMMA, - STATE(5014), 1, + ACTIONS(10494), 1, + anon_sym_RBRACE, + STATE(4905), 1, aux_sym_initializer_list_repeat1, ACTIONS(3), 7, sym_comment, @@ -615266,13 +612498,13 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [51910] = 4, - ACTIONS(11390), 1, + [56624] = 4, + ACTIONS(11381), 1, anon_sym_COMMA, - ACTIONS(11430), 1, + ACTIONS(11476), 1, anon_sym_RPAREN, - STATE(4952), 1, - aux_sym_parameter_list_repeat1, + STATE(5009), 1, + aux_sym_availability_attribute_specifier_repeat1, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -615281,13 +612513,41 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [51929] = 4, - ACTIONS(11432), 1, + [56643] = 4, + ACTIONS(11381), 1, + anon_sym_COMMA, + ACTIONS(11478), 1, + anon_sym_RPAREN, + STATE(5009), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56662] = 3, + ACTIONS(11482), 1, + sym_number_literal, + ACTIONS(11480), 2, + sym_identifier, + aux_sym_platform_version_token1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56679] = 3, + ACTIONS(11486), 1, + anon_sym_EQ, + ACTIONS(11484), 2, anon_sym_COMMA, - ACTIONS(11435), 1, anon_sym_SEMI, - STATE(4892), 1, - aux_sym_protocol_forward_declaration_repeat1, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -615296,57 +612556,12 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [51948] = 4, - ACTIONS(10848), 1, - anon_sym_LPAREN2, - ACTIONS(11437), 1, - anon_sym_LF, - STATE(4679), 1, - sym_preproc_argument_list, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51967] = 4, - ACTIONS(11439), 1, + [56696] = 4, + ACTIONS(11089), 1, anon_sym_COMMA, - ACTIONS(11441), 1, - anon_sym_RBRACE, - STATE(4919), 1, - aux_sym__dictionary_key_value_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [51986] = 4, - ACTIONS(11443), 1, - anon_sym_COMMA, - ACTIONS(11445), 1, - anon_sym_GT, - STATE(4994), 1, - aux_sym_parameterized_class_type_arguments_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52005] = 4, - ACTIONS(11086), 1, - anon_sym_COMMA, - ACTIONS(11447), 1, + ACTIONS(11488), 1, anon_sym_SEMI, - STATE(4898), 1, + STATE(4923), 1, aux_sym_class_forward_declaration_repeat1, ACTIONS(3), 7, sym_comment, @@ -615356,87 +612571,12 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [52024] = 4, - ACTIONS(11086), 1, + [56715] = 4, + ACTIONS(11490), 1, anon_sym_COMMA, - ACTIONS(11449), 1, + ACTIONS(11492), 1, anon_sym_SEMI, - STATE(4898), 1, - aux_sym_class_forward_declaration_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52043] = 4, - ACTIONS(11451), 1, - anon_sym_COMMA, - ACTIONS(11454), 1, - anon_sym_SEMI, - STATE(4898), 1, - aux_sym_class_forward_declaration_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52062] = 4, - ACTIONS(11456), 1, - anon_sym_COMMA, - ACTIONS(11458), 1, - anon_sym_RPAREN, - STATE(4995), 1, - aux_sym_generics_type_reference_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52081] = 4, - ACTIONS(11460), 1, - anon_sym_COMMA, - ACTIONS(11463), 1, - anon_sym_SEMI, - STATE(4900), 1, - aux_sym_dynamic_definition_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52100] = 4, - ACTIONS(11465), 1, - anon_sym_COMMA, - ACTIONS(11467), 1, - anon_sym_RPAREN, - STATE(4947), 1, - aux_sym_preproc_params_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52119] = 4, - ACTIONS(11469), 1, - anon_sym_COMMA, - ACTIONS(11472), 1, - anon_sym_SEMI, - STATE(4902), 1, + STATE(5011), 1, aux_sym_synthesize_definition_repeat1, ACTIONS(3), 7, sym_comment, @@ -615446,86 +612586,42 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [52138] = 4, - ACTIONS(11474), 1, + [56734] = 4, + ACTIONS(11494), 1, anon_sym_COMMA, - ACTIONS(11477), 1, - anon_sym_RPAREN, - STATE(4903), 1, - aux_sym_platform_version_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52157] = 4, - ACTIONS(8847), 1, - anon_sym_LBRACE, - ACTIONS(11479), 1, - sym_identifier, - STATE(3765), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52176] = 4, - ACTIONS(11386), 1, - anon_sym_COMMA, - ACTIONS(11481), 1, - anon_sym_RPAREN, - STATE(4999), 1, - aux_sym_availability_attribute_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52195] = 4, - ACTIONS(11386), 1, - anon_sym_COMMA, - ACTIONS(11483), 1, - anon_sym_RPAREN, - STATE(4999), 1, - aux_sym_availability_attribute_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52214] = 3, - ACTIONS(11487), 1, - sym_number_literal, - ACTIONS(11485), 2, - sym_identifier, - aux_sym_platform_version_token1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52231] = 4, - ACTIONS(11086), 1, - anon_sym_COMMA, - ACTIONS(11489), 1, + ACTIONS(11496), 1, anon_sym_SEMI, - STATE(4897), 1, + STATE(5013), 1, + aux_sym_dynamic_definition_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56753] = 4, + ACTIONS(10838), 1, + anon_sym_COMMA, + ACTIONS(11498), 1, + anon_sym_RPAREN, + STATE(4898), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56772] = 4, + ACTIONS(11089), 1, + anon_sym_COMMA, + ACTIONS(11500), 1, + anon_sym_SEMI, + STATE(4922), 1, aux_sym_class_forward_declaration_repeat1, ACTIONS(3), 7, sym_comment, @@ -615535,13 +612631,11 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [52250] = 4, - ACTIONS(11491), 1, - anon_sym_COMMA, - ACTIONS(11493), 1, + [56791] = 2, + ACTIONS(11502), 3, anon_sym_RPAREN, - STATE(4903), 1, - aux_sym_platform_version_repeat1, + anon_sym_COLON, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -615550,12 +612644,42 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [52269] = 4, - ACTIONS(11495), 1, + [56806] = 4, + ACTIONS(11089), 1, anon_sym_COMMA, - ACTIONS(11497), 1, + ACTIONS(11504), 1, + anon_sym_SEMI, + STATE(4920), 1, + aux_sym_class_forward_declaration_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56825] = 4, + ACTIONS(3008), 1, + anon_sym_COMMA, + ACTIONS(11506), 1, + anon_sym_SEMI, + STATE(4915), 1, + aux_sym_protocol_forward_declaration_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56844] = 4, + ACTIONS(11508), 1, + anon_sym_COMMA, + ACTIONS(11510), 1, anon_sym_RPAREN, - STATE(4887), 1, + STATE(4912), 1, aux_sym_available_expression_repeat1, ACTIONS(3), 7, sym_comment, @@ -615565,26 +612689,13 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [52288] = 3, - ACTIONS(11501), 1, - anon_sym_EQ, - ACTIONS(11499), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52305] = 3, - ACTIONS(11505), 1, - sym_number_literal, - ACTIONS(11503), 2, + [56863] = 4, + ACTIONS(11085), 1, sym_identifier, - aux_sym_platform_version_token1, + ACTIONS(11406), 1, + anon_sym_LPAREN2, + STATE(1748), 1, + sym__name, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -615593,10 +612704,229 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [52322] = 3, - ACTIONS(11507), 1, + [56882] = 4, + ACTIONS(8798), 1, + anon_sym_RBRACK, + ACTIONS(11512), 1, + anon_sym_COMMA, + STATE(4784), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56901] = 4, + ACTIONS(11381), 1, + anon_sym_COMMA, + ACTIONS(11514), 1, + anon_sym_RPAREN, + STATE(5009), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56920] = 4, + ACTIONS(11381), 1, + anon_sym_COMMA, + ACTIONS(11516), 1, + anon_sym_RPAREN, + STATE(5009), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56939] = 4, + ACTIONS(11381), 1, + anon_sym_COMMA, + ACTIONS(11518), 1, + anon_sym_RPAREN, + STATE(5009), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56958] = 4, + ACTIONS(11520), 1, + anon_sym_COMMA, + ACTIONS(11522), 1, + anon_sym_RBRACE, + STATE(5016), 1, + aux_sym__dictionary_key_value_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56977] = 2, + ACTIONS(11524), 3, + anon_sym_RPAREN, + anon_sym_COLON, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [56992] = 4, + ACTIONS(11381), 1, + anon_sym_COMMA, + ACTIONS(11526), 1, + anon_sym_RPAREN, + STATE(5009), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57011] = 2, + ACTIONS(11528), 3, + anon_sym_LPAREN2, + anon_sym_COLON, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57026] = 2, + ACTIONS(11530), 3, + anon_sym_LPAREN2, + anon_sym_COLON, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57041] = 4, + ACTIONS(11089), 1, + anon_sym_COMMA, + ACTIONS(11532), 1, + anon_sym_SEMI, + STATE(4923), 1, + aux_sym_class_forward_declaration_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57060] = 4, + ACTIONS(11414), 1, + anon_sym_COMMA, + ACTIONS(11534), 1, + anon_sym_GT, + STATE(4911), 1, + aux_sym_protocol_qualifiers_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57079] = 4, + ACTIONS(11410), 1, + anon_sym_COMMA, + ACTIONS(11536), 1, + anon_sym_GT, + STATE(4910), 1, + aux_sym_generic_type_references_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57098] = 4, + ACTIONS(8758), 1, + anon_sym_RBRACK, + ACTIONS(11538), 1, + anon_sym_COMMA, + STATE(4784), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57117] = 4, + ACTIONS(11414), 1, + anon_sym_COMMA, + ACTIONS(11540), 1, + anon_sym_GT, + STATE(4996), 1, + aux_sym_protocol_qualifiers_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57136] = 4, + ACTIONS(11542), 1, + anon_sym_COMMA, + ACTIONS(11544), 1, + anon_sym_RPAREN, + STATE(5017), 1, + aux_sym_available_expression_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57155] = 3, + ACTIONS(11546), 1, aux_sym_number_expression_token1, - ACTIONS(11406), 2, + ACTIONS(11402), 2, aux_sym_char_literal_token1, sym_escape_sequence, ACTIONS(5), 7, @@ -615607,12 +612937,357 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [52339] = 4, - ACTIONS(11509), 1, + [57172] = 4, + ACTIONS(11548), 1, anon_sym_COMMA, - ACTIONS(11511), 1, + ACTIONS(11550), 1, + anon_sym_RPAREN, + STATE(4972), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57191] = 4, + ACTIONS(11247), 1, + sym_identifier, + ACTIONS(11552), 1, + anon_sym_RBRACE, + STATE(5144), 1, + sym_enumerator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57210] = 4, + ACTIONS(11410), 1, + anon_sym_COMMA, + ACTIONS(11554), 1, + anon_sym_GT, + STATE(4995), 1, + aux_sym_generic_type_references_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57229] = 4, + ACTIONS(10524), 1, + anon_sym_RBRACE, + ACTIONS(11556), 1, + anon_sym_COMMA, + STATE(4963), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57248] = 4, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(11559), 1, + sym_identifier, + STATE(3465), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57267] = 4, + ACTIONS(11561), 1, + anon_sym_COMMA, + ACTIONS(11563), 1, + anon_sym_RBRACE, + STATE(4986), 1, + aux_sym_enumerator_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57286] = 4, + ACTIONS(11247), 1, + sym_identifier, + ACTIONS(11563), 1, + anon_sym_RBRACE, + STATE(5144), 1, + sym_enumerator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57305] = 4, + ACTIONS(10250), 1, + anon_sym_COMMA, + ACTIONS(11565), 1, + anon_sym_RPAREN, + STATE(4784), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57324] = 4, + ACTIONS(11548), 1, + anon_sym_COMMA, + ACTIONS(11567), 1, + anon_sym_RPAREN, + STATE(4972), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57343] = 4, + ACTIONS(10838), 1, + anon_sym_COMMA, + ACTIONS(11569), 1, + anon_sym_RPAREN, + STATE(4898), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57362] = 4, + ACTIONS(11571), 1, + anon_sym_COMMA, + ACTIONS(11573), 1, + anon_sym_RPAREN, + STATE(5045), 1, + aux_sym_preproc_params_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57381] = 4, + ACTIONS(10482), 1, + anon_sym_COMMA, + ACTIONS(10484), 1, + anon_sym_RBRACE, + STATE(4897), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57400] = 4, + ACTIONS(11575), 1, + anon_sym_COMMA, + ACTIONS(11578), 1, + anon_sym_RPAREN, + STATE(4972), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57419] = 4, + ACTIONS(11381), 1, + anon_sym_COMMA, + ACTIONS(11580), 1, + anon_sym_RPAREN, + STATE(4945), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57438] = 4, + ACTIONS(11582), 1, + anon_sym_COMMA, + ACTIONS(11585), 1, + anon_sym_RPAREN, + STATE(4974), 1, + aux_sym_available_expression_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57457] = 4, + ACTIONS(11381), 1, + anon_sym_COMMA, + ACTIONS(11587), 1, + anon_sym_RPAREN, + STATE(4946), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57476] = 4, + ACTIONS(11089), 1, + anon_sym_COMMA, + ACTIONS(11589), 1, anon_sym_SEMI, - STATE(5020), 1, + STATE(4923), 1, + aux_sym_class_forward_declaration_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57495] = 4, + ACTIONS(11591), 1, + anon_sym_COMMA, + ACTIONS(11593), 1, + anon_sym_RBRACE, + STATE(4948), 1, + aux_sym__dictionary_key_value_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57514] = 4, + ACTIONS(8874), 1, + anon_sym_LBRACE, + ACTIONS(11595), 1, + anon_sym_SEMI, + STATE(2970), 1, + sym_compound_statement, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57533] = 4, + ACTIONS(11089), 1, + anon_sym_COMMA, + ACTIONS(11597), 1, + anon_sym_SEMI, + STATE(4953), 1, + aux_sym_class_forward_declaration_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57552] = 4, + ACTIONS(3008), 1, + anon_sym_COMMA, + ACTIONS(11599), 1, + anon_sym_SEMI, + STATE(4915), 1, + aux_sym_protocol_forward_declaration_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57571] = 4, + ACTIONS(11601), 1, + anon_sym_COMMA, + ACTIONS(11604), 1, + anon_sym_SEMI, + STATE(4981), 1, + aux_sym_dynamic_definition_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57590] = 4, + ACTIONS(11414), 1, + anon_sym_COMMA, + ACTIONS(11606), 1, + anon_sym_GT, + STATE(4957), 1, + aux_sym_protocol_qualifiers_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57609] = 4, + ACTIONS(11608), 1, + anon_sym_COMMA, + ACTIONS(11611), 1, + anon_sym_SEMI, + STATE(4983), 1, aux_sym_synthesize_definition_repeat1, ACTIONS(3), 7, sym_comment, @@ -615622,10 +613297,289 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [52358] = 3, - ACTIONS(11515), 1, + [57628] = 2, + ACTIONS(11613), 3, + anon_sym_RBRACK, + anon_sym_COLON, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57643] = 4, + ACTIONS(11247), 1, + sym_identifier, + ACTIONS(11615), 1, + anon_sym_RBRACE, + STATE(5144), 1, + sym_enumerator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57662] = 4, + ACTIONS(11617), 1, + anon_sym_COMMA, + ACTIONS(11620), 1, + anon_sym_RBRACE, + STATE(4986), 1, + aux_sym_enumerator_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57681] = 4, + ACTIONS(11410), 1, + anon_sym_COMMA, + ACTIONS(11622), 1, + anon_sym_GT, + STATE(4962), 1, + aux_sym_generic_type_references_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57700] = 4, + ACTIONS(11624), 1, + anon_sym_COMMA, + ACTIONS(11626), 1, + anon_sym_RBRACE, + STATE(4965), 1, + aux_sym_enumerator_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57719] = 4, + ACTIONS(11628), 1, + anon_sym_COMMA, + ACTIONS(11630), 1, anon_sym_RPAREN, - ACTIONS(11513), 2, + STATE(4906), 1, + aux_sym_platform_version_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57738] = 4, + ACTIONS(11089), 1, + anon_sym_COMMA, + ACTIONS(11632), 1, + anon_sym_SEMI, + STATE(4914), 1, + aux_sym_class_forward_declaration_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57757] = 3, + ACTIONS(11636), 1, + sym_number_literal, + ACTIONS(11634), 2, + sym_identifier, + aux_sym_platform_version_token1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57774] = 4, + ACTIONS(8888), 1, + anon_sym_LBRACE, + ACTIONS(11638), 1, + sym_identifier, + STATE(3810), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57793] = 3, + ACTIONS(11642), 1, + anon_sym_LPAREN2, + ACTIONS(11640), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57810] = 4, + ACTIONS(10866), 1, + anon_sym_LPAREN2, + ACTIONS(11644), 1, + anon_sym_LF, + STATE(4699), 1, + sym_preproc_argument_list, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57829] = 4, + ACTIONS(11646), 1, + anon_sym_COMMA, + ACTIONS(11649), 1, + anon_sym_GT, + STATE(4995), 1, + aux_sym_generic_type_references_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57848] = 4, + ACTIONS(11651), 1, + anon_sym_COMMA, + ACTIONS(11654), 1, + anon_sym_GT, + STATE(4996), 1, + aux_sym_protocol_qualifiers_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57867] = 4, + ACTIONS(11656), 1, + anon_sym_COMMA, + ACTIONS(11659), 1, + anon_sym_RPAREN, + STATE(4997), 1, + aux_sym_generics_type_reference_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57886] = 4, + ACTIONS(11571), 1, + anon_sym_COMMA, + ACTIONS(11661), 1, + anon_sym_RPAREN, + STATE(4970), 1, + aux_sym_preproc_params_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57905] = 4, + ACTIONS(11663), 1, + anon_sym_COMMA, + ACTIONS(11666), 1, + anon_sym_GT, + STATE(4999), 1, + aux_sym_parameterized_class_type_arguments_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57924] = 4, + ACTIONS(11668), 1, + anon_sym_COMMA, + ACTIONS(11670), 1, + anon_sym_RPAREN, + STATE(5007), 1, + aux_sym_property_attributes_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57943] = 3, + ACTIONS(11442), 1, + anon_sym_COLON, + ACTIONS(11672), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57960] = 3, + ACTIONS(11676), 1, + anon_sym_COLON, + ACTIONS(11674), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [57977] = 3, + ACTIONS(11680), 1, + anon_sym_RPAREN, + ACTIONS(11678), 2, anon_sym_DOT_DOT_DOT, sym_identifier, ACTIONS(3), 7, @@ -615636,157 +613590,12 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [52375] = 4, - ACTIONS(11517), 1, + [57994] = 4, + ACTIONS(11444), 1, anon_sym_COMMA, - ACTIONS(11519), 1, - anon_sym_SEMI, - STATE(5021), 1, - aux_sym_dynamic_definition_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52394] = 2, - ACTIONS(11521), 3, - anon_sym_RPAREN, - anon_sym_COLON, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52409] = 2, - ACTIONS(11523), 3, - anon_sym_RPAREN, - anon_sym_COLON, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52424] = 4, - ACTIONS(11525), 1, - anon_sym_COMMA, - ACTIONS(11527), 1, - anon_sym_RBRACE, - STATE(5025), 1, - aux_sym__dictionary_key_value_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52443] = 4, - ACTIONS(8823), 1, - anon_sym_RBRACK, - ACTIONS(11529), 1, - anon_sym_COMMA, - STATE(4784), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52462] = 4, - ACTIONS(11394), 1, - anon_sym_COMMA, - ACTIONS(11531), 1, + ACTIONS(11682), 1, anon_sym_GT, - STATE(4975), 1, - aux_sym_generic_type_references_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52481] = 4, - ACTIONS(11234), 1, - sym_identifier, - ACTIONS(11533), 1, - anon_sym_RBRACE, - STATE(5118), 1, - sym_enumerator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52500] = 4, - ACTIONS(11535), 1, - sym_identifier, - ACTIONS(11537), 1, - anon_sym_RPAREN, - ACTIONS(11539), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52519] = 4, - ACTIONS(11541), 1, - anon_sym_COMMA, - ACTIONS(11544), 1, - anon_sym_RPAREN, - STATE(4924), 1, - aux_sym_generics_type_reference_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52538] = 3, - ACTIONS(11548), 1, - anon_sym_LPAREN2, - ACTIONS(11546), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52555] = 4, - ACTIONS(11550), 1, - anon_sym_COMMA, - ACTIONS(11553), 1, - anon_sym_GT, - STATE(4926), 1, + STATE(4999), 1, aux_sym_parameterized_class_type_arguments_repeat1, ACTIONS(3), 7, sym_comment, @@ -615796,811 +613605,13 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [52574] = 4, - ACTIONS(11386), 1, - anon_sym_COMMA, - ACTIONS(11555), 1, - anon_sym_RPAREN, - STATE(4906), 1, - aux_sym_availability_attribute_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52593] = 4, - ACTIONS(11386), 1, - anon_sym_COMMA, - ACTIONS(11557), 1, - anon_sym_RPAREN, - STATE(4905), 1, - aux_sym_availability_attribute_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52612] = 3, - ACTIONS(11424), 1, - anon_sym_COLON, - ACTIONS(11559), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52629] = 2, - ACTIONS(11561), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52644] = 4, - ACTIONS(11563), 1, - anon_sym_COMMA, - ACTIONS(11565), 1, - anon_sym_RPAREN, - STATE(5024), 1, - aux_sym_available_expression_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52663] = 4, - ACTIONS(10272), 1, - anon_sym_COMMA, - ACTIONS(11567), 1, - anon_sym_RPAREN, - STATE(4784), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52682] = 4, - ACTIONS(11086), 1, - anon_sym_COMMA, - ACTIONS(11569), 1, - anon_sym_SEMI, - STATE(4898), 1, - aux_sym_class_forward_declaration_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52701] = 4, - ACTIONS(11386), 1, - anon_sym_COMMA, - ACTIONS(11571), 1, - anon_sym_RPAREN, - STATE(4882), 1, - aux_sym_availability_attribute_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52720] = 4, - ACTIONS(11573), 1, - anon_sym_COMMA, - ACTIONS(11575), 1, - anon_sym_RPAREN, - STATE(4948), 1, - aux_sym_property_attributes_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52739] = 4, - ACTIONS(11086), 1, - anon_sym_COMMA, - ACTIONS(11577), 1, - anon_sym_SEMI, - STATE(4896), 1, - aux_sym_class_forward_declaration_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52758] = 4, - ACTIONS(11386), 1, - anon_sym_COMMA, - ACTIONS(11579), 1, - anon_sym_RPAREN, - STATE(4881), 1, - aux_sym_availability_attribute_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52777] = 4, - ACTIONS(3034), 1, - anon_sym_COMMA, - ACTIONS(11581), 1, - anon_sym_SEMI, - STATE(4892), 1, - aux_sym_protocol_forward_declaration_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52796] = 4, - ACTIONS(11234), 1, - sym_identifier, - ACTIONS(11583), 1, - anon_sym_RBRACE, - STATE(5118), 1, - sym_enumerator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52815] = 2, - ACTIONS(11585), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52830] = 4, - ACTIONS(10850), 1, - anon_sym_COMMA, - ACTIONS(11587), 1, - anon_sym_RPAREN, - STATE(5018), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52849] = 2, - ACTIONS(11589), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52864] = 4, - ACTIONS(11410), 1, - anon_sym_COMMA, - ACTIONS(11591), 1, - anon_sym_GT, - STATE(4885), 1, - aux_sym_protocol_qualifiers_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52883] = 4, - ACTIONS(10426), 1, - anon_sym_COMMA, - ACTIONS(10428), 1, - anon_sym_RBRACE, - STATE(4890), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52902] = 4, - ACTIONS(11394), 1, - anon_sym_COMMA, - ACTIONS(11593), 1, - anon_sym_GT, - STATE(4879), 1, - aux_sym_generic_type_references_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52921] = 2, - ACTIONS(11595), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52936] = 4, - ACTIONS(11465), 1, - anon_sym_COMMA, - ACTIONS(11597), 1, - anon_sym_RPAREN, - STATE(5004), 1, - aux_sym_preproc_params_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52955] = 4, - ACTIONS(11599), 1, - anon_sym_COMMA, - ACTIONS(11602), 1, - anon_sym_RPAREN, - STATE(4948), 1, - aux_sym_property_attributes_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52974] = 4, - ACTIONS(10850), 1, - anon_sym_COMMA, - ACTIONS(11604), 1, - anon_sym_RPAREN, - STATE(5018), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [52993] = 4, - ACTIONS(10380), 1, - anon_sym_COMMA, - ACTIONS(10382), 1, - anon_sym_RBRACE, - STATE(5011), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53012] = 3, - ACTIONS(11608), 1, - anon_sym_COLON, - ACTIONS(11606), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53029] = 4, - ACTIONS(11610), 1, - anon_sym_COMMA, - ACTIONS(11613), 1, - anon_sym_RPAREN, - STATE(4952), 1, - aux_sym_parameter_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53048] = 4, - ACTIONS(11095), 1, - sym_identifier, - ACTIONS(11615), 1, - anon_sym_LPAREN2, - STATE(1802), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53067] = 4, - ACTIONS(8123), 1, + [58013] = 4, + ACTIONS(10157), 1, anon_sym_LBRACE, - ACTIONS(11617), 1, - sym_identifier, - STATE(3502), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53086] = 2, - ACTIONS(11619), 3, - anon_sym_RBRACK, - anon_sym_COLON, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53101] = 4, - ACTIONS(11095), 1, - sym_identifier, - ACTIONS(11615), 1, - anon_sym_LPAREN2, - STATE(1789), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53120] = 4, - ACTIONS(11234), 1, - sym_identifier, - ACTIONS(11621), 1, - anon_sym_RBRACE, - STATE(5118), 1, - sym_enumerator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53139] = 4, - ACTIONS(11234), 1, - sym_identifier, - ACTIONS(11623), 1, - anon_sym_RBRACE, - STATE(5118), 1, - sym_enumerator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53158] = 4, - ACTIONS(11625), 1, - anon_sym_COMMA, - ACTIONS(11628), 1, - anon_sym_RBRACE, - STATE(4959), 1, - aux_sym_enumerator_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53177] = 4, - ACTIONS(11630), 1, - anon_sym_COMMA, - ACTIONS(11632), 1, - anon_sym_RBRACE, - STATE(4976), 1, - aux_sym_enumerator_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53196] = 4, - ACTIONS(11634), 1, - anon_sym_COMMA, - ACTIONS(11636), 1, - anon_sym_RPAREN, - STATE(4910), 1, - aux_sym_available_expression_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53215] = 4, - ACTIONS(11095), 1, - sym_identifier, - ACTIONS(11615), 1, - anon_sym_LPAREN2, - STATE(1810), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53234] = 4, - ACTIONS(8789), 1, - anon_sym_RBRACK, - ACTIONS(11638), 1, - anon_sym_COMMA, - STATE(4784), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53253] = 4, - ACTIONS(11386), 1, - anon_sym_COMMA, - ACTIONS(11640), 1, - anon_sym_RPAREN, - STATE(4999), 1, - aux_sym_availability_attribute_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53272] = 4, - ACTIONS(11386), 1, - anon_sym_COMMA, - ACTIONS(11642), 1, - anon_sym_RPAREN, - STATE(4999), 1, - aux_sym_availability_attribute_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53291] = 4, - ACTIONS(8123), 1, - anon_sym_LBRACE, - ACTIONS(11644), 1, - sym_identifier, - STATE(3502), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53310] = 4, - ACTIONS(11386), 1, - anon_sym_COMMA, - ACTIONS(11646), 1, - anon_sym_RPAREN, - STATE(4982), 1, - aux_sym_availability_attribute_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53329] = 4, - ACTIONS(11390), 1, - anon_sym_COMMA, - ACTIONS(11648), 1, - anon_sym_RPAREN, - STATE(4891), 1, - aux_sym_parameter_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53348] = 4, - ACTIONS(11086), 1, - anon_sym_COMMA, - ACTIONS(11650), 1, - anon_sym_SEMI, - STATE(4898), 1, - aux_sym_class_forward_declaration_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53367] = 4, - ACTIONS(11086), 1, - anon_sym_COMMA, - ACTIONS(11652), 1, - anon_sym_SEMI, - STATE(4898), 1, - aux_sym_class_forward_declaration_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53386] = 4, - ACTIONS(11410), 1, - anon_sym_COMMA, - ACTIONS(11654), 1, - anon_sym_GT, - STATE(4977), 1, - aux_sym_protocol_qualifiers_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53405] = 4, - ACTIONS(11386), 1, - anon_sym_COMMA, - ACTIONS(11656), 1, - anon_sym_RPAREN, - STATE(4985), 1, - aux_sym_availability_attribute_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53424] = 4, - ACTIONS(10848), 1, - anon_sym_LPAREN2, - ACTIONS(11658), 1, - anon_sym_LF, - STATE(4679), 1, - sym_preproc_argument_list, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53443] = 4, - ACTIONS(11660), 1, - anon_sym_COMMA, - ACTIONS(11662), 1, - anon_sym_RBRACE, - STATE(4880), 1, - aux_sym_enumerator_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53462] = 4, - ACTIONS(11664), 1, - anon_sym_COMMA, - ACTIONS(11667), 1, - anon_sym_GT, - STATE(4975), 1, - aux_sym_generic_type_references_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53481] = 4, - ACTIONS(11623), 1, - anon_sym_RBRACE, - ACTIONS(11669), 1, - anon_sym_COMMA, - STATE(4959), 1, - aux_sym_enumerator_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53500] = 4, - ACTIONS(11671), 1, - anon_sym_COMMA, - ACTIONS(11674), 1, - anon_sym_GT, - STATE(4977), 1, - aux_sym_protocol_qualifiers_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53519] = 4, - ACTIONS(11394), 1, - anon_sym_COMMA, - ACTIONS(11676), 1, - anon_sym_GT, - STATE(4975), 1, - aux_sym_generic_type_references_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53538] = 4, - ACTIONS(10848), 1, - anon_sym_LPAREN2, - ACTIONS(11678), 1, - anon_sym_LF, - STATE(4679), 1, - sym_preproc_argument_list, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53557] = 4, - ACTIONS(8847), 1, - anon_sym_LBRACE, - ACTIONS(11680), 1, - sym_identifier, - STATE(3765), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53576] = 4, - ACTIONS(11682), 1, - anon_sym_COMMA, ACTIONS(11684), 1, - anon_sym_RBRACE, - STATE(4959), 1, - aux_sym_enumerator_list_repeat1, + sym_identifier, + STATE(4586), 1, + sym_field_declaration_list, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -616609,27 +613620,12 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [53595] = 4, - ACTIONS(11386), 1, - anon_sym_COMMA, + [58032] = 4, + ACTIONS(11247), 1, + sym_identifier, ACTIONS(11686), 1, - anon_sym_RPAREN, - STATE(4999), 1, - aux_sym_availability_attribute_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53614] = 4, - ACTIONS(11234), 1, - sym_identifier, - ACTIONS(11684), 1, anon_sym_RBRACE, - STATE(5118), 1, + STATE(5144), 1, sym_enumerator, ACTIONS(3), 7, sym_comment, @@ -616639,13 +613635,13 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [53633] = 4, - ACTIONS(10146), 1, - anon_sym_LBRACE, + [58051] = 4, + ACTIONS(11668), 1, + anon_sym_COMMA, ACTIONS(11688), 1, - sym_identifier, - STATE(4563), 1, - sym_field_declaration_list, + anon_sym_RPAREN, + STATE(4924), 1, + aux_sym_property_attributes_repeat1, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -616654,159 +613650,12 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [53652] = 4, - ACTIONS(11386), 1, + [58070] = 4, + ACTIONS(11464), 1, anon_sym_COMMA, ACTIONS(11690), 1, anon_sym_RPAREN, - STATE(4999), 1, - aux_sym_availability_attribute_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53671] = 4, - ACTIONS(11573), 1, - anon_sym_COMMA, - ACTIONS(11692), 1, - anon_sym_RPAREN, - STATE(4935), 1, - aux_sym_property_attributes_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53690] = 4, - ACTIONS(11410), 1, - anon_sym_COMMA, - ACTIONS(11694), 1, - anon_sym_GT, - STATE(4977), 1, - aux_sym_protocol_qualifiers_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53709] = 4, - ACTIONS(11390), 1, - anon_sym_COMMA, - ACTIONS(11696), 1, - anon_sym_RPAREN, - STATE(4952), 1, - aux_sym_parameter_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53728] = 4, - ACTIONS(11394), 1, - anon_sym_COMMA, - ACTIONS(11698), 1, - anon_sym_GT, - STATE(4978), 1, - aux_sym_generic_type_references_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53747] = 3, - ACTIONS(11702), 1, - anon_sym_COLON, - ACTIONS(11700), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53764] = 4, - ACTIONS(11086), 1, - anon_sym_COMMA, - ACTIONS(11704), 1, - anon_sym_SEMI, - STATE(4898), 1, - aux_sym_class_forward_declaration_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53783] = 4, - ACTIONS(11086), 1, - anon_sym_COMMA, - ACTIONS(11706), 1, - anon_sym_SEMI, - STATE(4898), 1, - aux_sym_class_forward_declaration_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53802] = 2, - ACTIONS(11708), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53817] = 4, - ACTIONS(11443), 1, - anon_sym_COMMA, - ACTIONS(11710), 1, - anon_sym_GT, - STATE(4926), 1, - aux_sym_parameterized_class_type_arguments_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53836] = 4, - ACTIONS(11456), 1, - anon_sym_COMMA, - ACTIONS(11712), 1, - anon_sym_RPAREN, - STATE(4924), 1, + STATE(4997), 1, aux_sym_generics_type_reference_repeat1, ACTIONS(3), 7, sym_comment, @@ -616816,57 +613665,12 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [53855] = 4, - ACTIONS(11410), 1, + [58089] = 4, + ACTIONS(11692), 1, anon_sym_COMMA, - ACTIONS(11714), 1, - anon_sym_GT, - STATE(4987), 1, - aux_sym_protocol_qualifiers_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53874] = 4, - ACTIONS(10146), 1, - anon_sym_LBRACE, - ACTIONS(11716), 1, - sym_identifier, - STATE(4563), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53893] = 4, - ACTIONS(11718), 1, - anon_sym_COMMA, - ACTIONS(11720), 1, - anon_sym_RBRACE, - STATE(4981), 1, - aux_sym_enumerator_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53912] = 4, - ACTIONS(11722), 1, - anon_sym_COMMA, - ACTIONS(11725), 1, + ACTIONS(11695), 1, anon_sym_RPAREN, - STATE(4999), 1, + STATE(5009), 1, aux_sym_availability_attribute_specifier_repeat1, ACTIONS(3), 7, sym_comment, @@ -616876,162 +613680,12 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [53931] = 4, - ACTIONS(11086), 1, + [58108] = 4, + ACTIONS(11628), 1, anon_sym_COMMA, - ACTIONS(11727), 1, - anon_sym_SEMI, - STATE(5013), 1, - aux_sym_class_forward_declaration_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53950] = 4, - ACTIONS(11394), 1, - anon_sym_COMMA, - ACTIONS(11729), 1, - anon_sym_GT, - STATE(4921), 1, - aux_sym_generic_type_references_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53969] = 4, - ACTIONS(11410), 1, - anon_sym_COMMA, - ACTIONS(11731), 1, - anon_sym_GT, - STATE(4971), 1, - aux_sym_protocol_qualifiers_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [53988] = 4, - ACTIONS(11086), 1, - anon_sym_COMMA, - ACTIONS(11733), 1, - anon_sym_SEMI, - STATE(4992), 1, - aux_sym_class_forward_declaration_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54007] = 4, - ACTIONS(11735), 1, - anon_sym_COMMA, - ACTIONS(11738), 1, + ACTIONS(11697), 1, anon_sym_RPAREN, - STATE(5004), 1, - aux_sym_preproc_params_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54026] = 4, - ACTIONS(11386), 1, - anon_sym_COMMA, - ACTIONS(11740), 1, - anon_sym_RPAREN, - STATE(4999), 1, - aux_sym_availability_attribute_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54045] = 4, - ACTIONS(11386), 1, - anon_sym_COMMA, - ACTIONS(11742), 1, - anon_sym_RPAREN, - STATE(4999), 1, - aux_sym_availability_attribute_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54064] = 4, - ACTIONS(11386), 1, - anon_sym_COMMA, - ACTIONS(11744), 1, - anon_sym_RPAREN, - STATE(5005), 1, - aux_sym_availability_attribute_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54083] = 4, - ACTIONS(11386), 1, - anon_sym_COMMA, - ACTIONS(11746), 1, - anon_sym_RPAREN, - STATE(5006), 1, - aux_sym_availability_attribute_specifier_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54102] = 4, - ACTIONS(3034), 1, - anon_sym_COMMA, - ACTIONS(11748), 1, - anon_sym_SEMI, - STATE(4892), 1, - aux_sym_protocol_forward_declaration_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54121] = 4, - ACTIONS(11491), 1, - anon_sym_COMMA, - ACTIONS(11750), 1, - anon_sym_RPAREN, - STATE(4909), 1, + STATE(4989), 1, aux_sym_platform_version_repeat1, ACTIONS(3), 7, sym_comment, @@ -617041,147 +613695,12 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [54140] = 4, - ACTIONS(8045), 1, - anon_sym_RBRACE, - ACTIONS(11752), 1, + [58127] = 4, + ACTIONS(11490), 1, anon_sym_COMMA, - STATE(5014), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54159] = 4, - ACTIONS(3034), 1, - anon_sym_COMMA, - ACTIONS(11754), 1, + ACTIONS(11699), 1, anon_sym_SEMI, - STATE(4892), 1, - aux_sym_protocol_forward_declaration_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54178] = 4, - ACTIONS(11086), 1, - anon_sym_COMMA, - ACTIONS(11756), 1, - anon_sym_SEMI, - STATE(4898), 1, - aux_sym_class_forward_declaration_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54197] = 4, - ACTIONS(10530), 1, - anon_sym_RBRACE, - ACTIONS(11758), 1, - anon_sym_COMMA, - STATE(5014), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54216] = 4, - ACTIONS(8123), 1, - anon_sym_LBRACE, - ACTIONS(11761), 1, - sym_identifier, - STATE(3502), 1, - sym_field_declaration_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54235] = 4, - ACTIONS(11086), 1, - anon_sym_COMMA, - ACTIONS(11763), 1, - anon_sym_SEMI, - STATE(4970), 1, - aux_sym_class_forward_declaration_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54254] = 4, - ACTIONS(11086), 1, - anon_sym_COMMA, - ACTIONS(11765), 1, - anon_sym_SEMI, - STATE(4969), 1, - aux_sym_class_forward_declaration_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54273] = 4, - ACTIONS(10884), 1, - anon_sym_RPAREN, - ACTIONS(11767), 1, - anon_sym_COMMA, - STATE(5018), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54292] = 4, - ACTIONS(11086), 1, - anon_sym_COMMA, - ACTIONS(11770), 1, - anon_sym_SEMI, - STATE(4898), 1, - aux_sym_class_forward_declaration_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54311] = 4, - ACTIONS(11509), 1, - anon_sym_COMMA, - ACTIONS(11772), 1, - anon_sym_SEMI, - STATE(4902), 1, + STATE(4983), 1, aux_sym_synthesize_definition_repeat1, ACTIONS(3), 7, sym_comment, @@ -617191,12 +613710,27 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [54330] = 4, - ACTIONS(11517), 1, + [58146] = 4, + ACTIONS(11548), 1, anon_sym_COMMA, - ACTIONS(11774), 1, + ACTIONS(11701), 1, + anon_sym_RPAREN, + STATE(4968), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58165] = 4, + ACTIONS(11494), 1, + anon_sym_COMMA, + ACTIONS(11703), 1, anon_sym_SEMI, - STATE(4900), 1, + STATE(4981), 1, aux_sym_dynamic_definition_repeat1, ACTIONS(3), 7, sym_comment, @@ -617206,13 +613740,13 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [54349] = 4, - ACTIONS(11386), 1, + [58184] = 4, + ACTIONS(11705), 1, anon_sym_COMMA, - ACTIONS(11776), 1, - anon_sym_RPAREN, - STATE(4965), 1, - aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(11707), 1, + anon_sym_RBRACE, + STATE(4902), 1, + aux_sym_enumerator_list_repeat1, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -617221,12 +613755,12 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [54368] = 4, - ACTIONS(8881), 1, + [58203] = 4, + ACTIONS(8874), 1, anon_sym_LBRACE, - ACTIONS(11778), 1, + ACTIONS(11709), 1, anon_sym_SEMI, - STATE(3010), 1, + STATE(2969), 1, sym_compound_statement, ACTIONS(3), 7, sym_comment, @@ -617236,27 +613770,12 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [54387] = 4, - ACTIONS(11780), 1, + [58222] = 4, + ACTIONS(11711), 1, anon_sym_COMMA, - ACTIONS(11782), 1, - anon_sym_RPAREN, - STATE(4887), 1, - aux_sym_available_expression_repeat1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54406] = 4, - ACTIONS(11784), 1, - anon_sym_COMMA, - ACTIONS(11787), 1, + ACTIONS(11714), 1, anon_sym_RBRACE, - STATE(5025), 1, + STATE(5016), 1, aux_sym__dictionary_key_value_list_repeat1, ACTIONS(3), 7, sym_comment, @@ -617266,10 +613785,520 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [54425] = 3, - ACTIONS(11789), 1, + [58241] = 4, + ACTIONS(11716), 1, + anon_sym_COMMA, + ACTIONS(11718), 1, + anon_sym_RPAREN, + STATE(4974), 1, + aux_sym_available_expression_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58260] = 4, + ACTIONS(10866), 1, + anon_sym_LPAREN2, + ACTIONS(11720), 1, anon_sym_LF, + STATE(4699), 1, + sym_preproc_argument_list, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58279] = 4, + ACTIONS(8888), 1, + anon_sym_LBRACE, + ACTIONS(11722), 1, + sym_identifier, + STATE(3810), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58298] = 4, + ACTIONS(8027), 1, + anon_sym_LBRACE, + ACTIONS(11724), 1, + sym_identifier, + STATE(3465), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58317] = 4, + ACTIONS(11726), 1, + anon_sym_COMMA, + ACTIONS(11728), 1, + anon_sym_RBRACE, + STATE(5032), 1, + aux_sym_enumerator_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58336] = 4, + ACTIONS(11381), 1, + anon_sym_COMMA, + ACTIONS(11730), 1, + anon_sym_RPAREN, + STATE(5009), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58355] = 4, + ACTIONS(11381), 1, + anon_sym_COMMA, + ACTIONS(11732), 1, + anon_sym_RPAREN, + STATE(5009), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58374] = 4, + ACTIONS(11410), 1, + anon_sym_COMMA, + ACTIONS(11734), 1, + anon_sym_GT, + STATE(5030), 1, + aux_sym_generic_type_references_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58393] = 4, + ACTIONS(11414), 1, + anon_sym_COMMA, + ACTIONS(11736), 1, + anon_sym_GT, + STATE(5029), 1, + aux_sym_protocol_qualifiers_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58412] = 4, + ACTIONS(11548), 1, + anon_sym_COMMA, + ACTIONS(11738), 1, + anon_sym_RPAREN, + STATE(4960), 1, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58431] = 4, + ACTIONS(11089), 1, + anon_sym_COMMA, + ACTIONS(11740), 1, + anon_sym_SEMI, + STATE(4923), 1, + aux_sym_class_forward_declaration_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58450] = 4, + ACTIONS(11089), 1, + anon_sym_COMMA, + ACTIONS(11742), 1, + anon_sym_SEMI, + STATE(4923), 1, + aux_sym_class_forward_declaration_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58469] = 4, + ACTIONS(11414), 1, + anon_sym_COMMA, + ACTIONS(11744), 1, + anon_sym_GT, + STATE(4996), 1, + aux_sym_protocol_qualifiers_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58488] = 4, + ACTIONS(11410), 1, + anon_sym_COMMA, + ACTIONS(11746), 1, + anon_sym_GT, + STATE(4995), 1, + aux_sym_generic_type_references_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58507] = 4, + ACTIONS(10157), 1, + anon_sym_LBRACE, + ACTIONS(11748), 1, + sym_identifier, + STATE(4586), 1, + sym_field_declaration_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58526] = 4, + ACTIONS(11686), 1, + anon_sym_RBRACE, + ACTIONS(11750), 1, + anon_sym_COMMA, + STATE(4986), 1, + aux_sym_enumerator_list_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58545] = 4, + ACTIONS(11085), 1, + sym_identifier, + ACTIONS(11406), 1, + anon_sym_LPAREN2, + STATE(1760), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58564] = 2, + ACTIONS(11752), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58579] = 4, + ACTIONS(11381), 1, + anon_sym_COMMA, + ACTIONS(11754), 1, + anon_sym_RPAREN, + STATE(5022), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58598] = 4, + ACTIONS(11381), 1, + anon_sym_COMMA, + ACTIONS(11756), 1, + anon_sym_RPAREN, + STATE(5023), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58617] = 4, + ACTIONS(11089), 1, + anon_sym_COMMA, + ACTIONS(11758), 1, + anon_sym_SEMI, + STATE(4923), 1, + aux_sym_class_forward_declaration_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58636] = 4, + ACTIONS(11089), 1, + anon_sym_COMMA, + ACTIONS(11760), 1, + anon_sym_SEMI, + STATE(5027), 1, + aux_sym_class_forward_declaration_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58655] = 4, + ACTIONS(11089), 1, + anon_sym_COMMA, + ACTIONS(11762), 1, + anon_sym_SEMI, + STATE(5028), 1, + aux_sym_class_forward_declaration_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58674] = 4, + ACTIONS(11381), 1, + anon_sym_COMMA, + ACTIONS(11764), 1, + anon_sym_RPAREN, + STATE(5009), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58693] = 4, + ACTIONS(11381), 1, + anon_sym_COMMA, + ACTIONS(11766), 1, + anon_sym_RPAREN, + STATE(5009), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58712] = 4, + ACTIONS(3008), 1, + anon_sym_COMMA, + ACTIONS(11768), 1, + anon_sym_SEMI, + STATE(4915), 1, + aux_sym_protocol_forward_declaration_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58731] = 4, + ACTIONS(11381), 1, + anon_sym_COMMA, + ACTIONS(11770), 1, + anon_sym_RPAREN, + STATE(5040), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58750] = 4, + ACTIONS(11381), 1, + anon_sym_COMMA, + ACTIONS(11772), 1, + anon_sym_RPAREN, + STATE(5041), 1, + aux_sym_availability_attribute_specifier_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58769] = 4, + ACTIONS(11774), 1, + anon_sym_COMMA, + ACTIONS(11777), 1, + anon_sym_RPAREN, + STATE(5045), 1, + aux_sym_preproc_params_repeat1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58788] = 2, + ACTIONS(10365), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58802] = 3, + ACTIONS(11779), 1, + sym_identifier, + ACTIONS(11781), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58818] = 3, + ACTIONS(11247), 1, + sym_identifier, + STATE(5144), 1, + sym_enumerator, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58834] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(1585), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58850] = 3, + ACTIONS(11783), 1, + anon_sym_COMMA, + ACTIONS(11785), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58866] = 3, + ACTIONS(11787), 1, + anon_sym_COMMA, + ACTIONS(11789), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58882] = 3, ACTIONS(11791), 1, + anon_sym_LF, + ACTIONS(11793), 1, sym_preproc_arg, ACTIONS(5), 7, sym_comment, @@ -617279,10 +614308,201 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [54441] = 3, - ACTIONS(3036), 1, + [58898] = 3, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + STATE(4276), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58914] = 3, + ACTIONS(11795), 1, + anon_sym_LPAREN2, + STATE(2718), 1, + sym_parenthesized_expression, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58930] = 2, + ACTIONS(11797), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58944] = 2, + ACTIONS(11799), 2, + anon_sym_LF, + sym_preproc_arg, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58958] = 2, + ACTIONS(11777), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58972] = 3, + ACTIONS(11801), 1, + anon_sym_LPAREN2, + STATE(5067), 1, + sym_parenthesized_expression, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [58988] = 2, + ACTIONS(11803), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59002] = 3, + ACTIONS(11805), 1, + anon_sym_COMMA, + ACTIONS(11807), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59018] = 3, + ACTIONS(11809), 1, + anon_sym_LF, + ACTIONS(11811), 1, + sym_preproc_arg, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59034] = 3, + ACTIONS(11813), 1, + anon_sym_LF, + ACTIONS(11815), 1, + sym_preproc_arg, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59050] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(3049), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59066] = 3, + ACTIONS(8712), 1, + anon_sym_LBRACE, + STATE(3291), 1, + sym_compound_statement, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59082] = 3, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + STATE(5622), 1, + sym_argument_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59098] = 3, + ACTIONS(11817), 1, + anon_sym_LF, + ACTIONS(11819), 1, + sym_preproc_arg, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59114] = 3, + ACTIONS(629), 1, + anon_sym_LBRACE, + STATE(421), 1, + sym_compound_statement, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59130] = 3, + ACTIONS(3010), 1, anon_sym_LT, - STATE(1977), 1, + STATE(1827), 1, sym_protocol_qualifiers, ACTIONS(3), 7, sym_comment, @@ -617292,8 +614512,99 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [54457] = 2, - ACTIONS(11793), 2, + [59146] = 3, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + STATE(3719), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59162] = 3, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + STATE(3700), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59178] = 3, + ACTIONS(11821), 1, + anon_sym_RBRACK, + ACTIONS(11823), 1, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59194] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1834), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59210] = 3, + ACTIONS(11825), 1, + sym_identifier, + ACTIONS(11827), 1, + anon_sym_STAR, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59226] = 3, + ACTIONS(11795), 1, + anon_sym_LPAREN2, + STATE(2728), 1, + sym_parenthesized_expression, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59242] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1835), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59258] = 2, + ACTIONS(11829), 2, anon_sym_COMMA, anon_sym_RBRACE, ACTIONS(3), 7, @@ -617304,383 +614615,49 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [54471] = 3, + [59272] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(1823), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59288] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(1583), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59304] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(1581), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59320] = 3, ACTIONS(11795), 1, - sym_identifier, - ACTIONS(11797), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54487] = 3, - ACTIONS(8793), 1, anon_sym_LPAREN2, - STATE(3728), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54503] = 3, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - STATE(3759), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54519] = 3, - ACTIONS(8881), 1, - anon_sym_LBRACE, - STATE(3010), 1, - sym_compound_statement, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54535] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1962), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54551] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1879), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54567] = 3, - ACTIONS(9724), 1, - anon_sym_LPAREN2, - STATE(4458), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54583] = 2, - ACTIONS(11738), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54597] = 3, - ACTIONS(9724), 1, - anon_sym_LPAREN2, - STATE(4486), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54613] = 3, - ACTIONS(11799), 1, - anon_sym_LF, - ACTIONS(11801), 1, - sym_preproc_arg, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54629] = 3, - ACTIONS(11803), 1, - sym_identifier, - STATE(5198), 1, - sym_synthesize_property, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54645] = 2, - ACTIONS(11805), 2, - anon_sym_LF, - sym_preproc_arg, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54659] = 3, - ACTIONS(11807), 1, - anon_sym_COMMA, - ACTIONS(11809), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54675] = 3, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - STATE(5327), 1, - sym_argument_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54691] = 3, - ACTIONS(11811), 1, - sym_identifier, - ACTIONS(11813), 1, - anon_sym_STAR, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54707] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(1893), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54723] = 3, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - STATE(4284), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54739] = 2, - ACTIONS(11815), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54753] = 3, - ACTIONS(11817), 1, - sym_identifier, - STATE(3724), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54769] = 2, - ACTIONS(11819), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54783] = 3, - ACTIONS(11821), 1, - anon_sym_LF, - ACTIONS(11823), 1, - sym_preproc_arg, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54799] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1899), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54815] = 3, - ACTIONS(11825), 1, - anon_sym_COMMA, - ACTIONS(11827), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54831] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(1628), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54847] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1900), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54863] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1863), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54879] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1883), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54895] = 3, - ACTIONS(11829), 1, - sym_identifier, - ACTIONS(11831), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54911] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1967), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54927] = 3, - ACTIONS(11833), 1, - anon_sym_LPAREN2, - STATE(2832), 1, + STATE(2758), 1, sym_parenthesized_expression, ACTIONS(3), 7, sym_comment, @@ -617690,36 +614667,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [54943] = 3, - ACTIONS(8795), 1, - anon_sym_LBRACE, - STATE(3327), 1, - sym_compound_statement, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54959] = 3, - ACTIONS(8873), 1, - anon_sym_LBRACE, - STATE(3042), 1, - sym_compound_statement, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [54975] = 3, - ACTIONS(3036), 1, + [59336] = 3, + ACTIONS(3010), 1, anon_sym_LT, - STATE(1916), 1, + STATE(1840), 1, sym_protocol_qualifiers, ACTIONS(3), 7, sym_comment, @@ -617729,24 +614680,11 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [54991] = 3, - ACTIONS(11835), 1, - anon_sym_LF, - ACTIONS(11837), 1, - sym_preproc_arg, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55007] = 3, - ACTIONS(11839), 1, - anon_sym_RBRACK, - ACTIONS(11841), 1, - anon_sym_COLON, + [59352] = 3, + ACTIONS(8874), 1, + anon_sym_LBRACE, + STATE(2969), 1, + sym_compound_statement, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -617755,12 +614693,12 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55023] = 3, - ACTIONS(11843), 1, - anon_sym_LF, - ACTIONS(11845), 1, - sym_preproc_arg, - ACTIONS(5), 7, + [59368] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1842), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, @@ -617768,10 +614706,100 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55039] = 3, - ACTIONS(11847), 1, + [59384] = 3, + ACTIONS(11825), 1, + sym_identifier, + ACTIONS(11831), 1, + anon_sym_STAR, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59400] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1867), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59416] = 3, + ACTIONS(11833), 1, + sym_identifier, + STATE(5146), 1, + sym_synthesize_property, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59432] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(2713), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59448] = 3, + ACTIONS(11795), 1, + anon_sym_LPAREN2, + STATE(2747), 1, + sym_parenthesized_expression, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59464] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1871), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59480] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(5221), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59496] = 2, + ACTIONS(11835), 2, anon_sym_COMMA, - ACTIONS(11849), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -617781,36 +614809,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55055] = 3, - ACTIONS(9724), 1, - anon_sym_LPAREN2, - STATE(4267), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55071] = 3, - ACTIONS(11851), 1, - sym_identifier, - STATE(3411), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55087] = 2, - ACTIONS(11853), 2, + [59510] = 2, + ACTIONS(11837), 2, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -617819,10 +614821,23 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55101] = 3, - ACTIONS(3036), 1, + [59524] = 3, + ACTIONS(11839), 1, + anon_sym_LF, + ACTIONS(11841), 1, + sym_preproc_arg, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59540] = 3, + ACTIONS(3010), 1, anon_sym_LT, - STATE(1884), 1, + STATE(1882), 1, sym_protocol_qualifiers, ACTIONS(3), 7, sym_comment, @@ -617832,47 +614847,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55117] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1878), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55133] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1961), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55149] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(4084), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55165] = 3, - ACTIONS(3036), 1, + [59556] = 3, + ACTIONS(3010), 1, anon_sym_LT, STATE(1880), 1, sym_protocol_qualifiers, @@ -617884,8 +614860,34 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55181] = 3, - ACTIONS(3036), 1, + [59572] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1878), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59588] = 3, + ACTIONS(11843), 1, + sym_identifier, + ACTIONS(11845), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59604] = 3, + ACTIONS(3010), 1, anon_sym_LT, STATE(1869), 1, sym_protocol_qualifiers, @@ -617897,11 +614899,11 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55197] = 3, - ACTIONS(11855), 1, + [59620] = 3, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11857), 1, - anon_sym_RPAREN, + STATE(1851), 1, + sym__name, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -617910,11 +614912,11 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55213] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1888), 1, - sym_protocol_qualifiers, + [59636] = 3, + ACTIONS(11795), 1, + anon_sym_LPAREN2, + STATE(2744), 1, + sym_parenthesized_expression, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -617923,49 +614925,11 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55229] = 3, - ACTIONS(175), 1, - anon_sym_LBRACE, - STATE(88), 1, - sym_compound_statement, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55245] = 3, - ACTIONS(11859), 1, - anon_sym_LF, - ACTIONS(11861), 1, - sym_preproc_arg, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55261] = 2, - ACTIONS(10530), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55275] = 3, - ACTIONS(11863), 1, + [59652] = 3, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11865), 1, - anon_sym_RPAREN, + STATE(4926), 1, + sym__name, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -617974,21 +614938,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55291] = 3, - ACTIONS(11867), 1, - anon_sym_COMMA, - ACTIONS(11869), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55307] = 3, - ACTIONS(3036), 1, + [59668] = 3, + ACTIONS(3010), 1, anon_sym_LT, STATE(1875), 1, sym_protocol_qualifiers, @@ -618000,23 +614951,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55323] = 3, - ACTIONS(9724), 1, - anon_sym_LPAREN2, - STATE(4290), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55339] = 3, - ACTIONS(11095), 1, + [59684] = 3, + ACTIONS(11085), 1, sym_identifier, - STATE(1626), 1, + STATE(4221), 1, sym__name, ACTIONS(3), 7, sym_comment, @@ -618026,12 +614964,12 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55355] = 3, - ACTIONS(8873), 1, - anon_sym_LBRACE, - STATE(3068), 1, - sym_compound_statement, - ACTIONS(3), 7, + [59700] = 3, + ACTIONS(11847), 1, + anon_sym_LF, + ACTIONS(11849), 1, + sym_preproc_arg, + ACTIONS(5), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, @@ -618039,45 +614977,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55371] = 2, - ACTIONS(11871), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55385] = 3, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - STATE(4290), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55401] = 2, - ACTIONS(11667), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55415] = 2, - ACTIONS(11853), 2, + [59716] = 2, + ACTIONS(11851), 2, anon_sym_COMMA, anon_sym_SEMI, ACTIONS(3), 7, @@ -618088,10 +614989,74 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55429] = 3, - ACTIONS(3036), 1, + [59730] = 2, + ACTIONS(11851), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59744] = 3, + ACTIONS(11801), 1, + anon_sym_LPAREN2, + STATE(5603), 1, + sym_parenthesized_expression, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59760] = 3, + ACTIONS(11853), 1, + sym_identifier, + ACTIONS(11855), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59776] = 3, + ACTIONS(11857), 1, + sym_identifier, + ACTIONS(11859), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59792] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(4216), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59808] = 3, + ACTIONS(3010), 1, anon_sym_LT, - STATE(1941), 1, + STATE(1846), 1, sym_protocol_qualifiers, ACTIONS(3), 7, sym_comment, @@ -618101,23 +615066,109 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55445] = 3, + [59824] = 2, + ACTIONS(11861), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59838] = 2, + ACTIONS(11863), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59852] = 3, + ACTIONS(11795), 1, + anon_sym_LPAREN2, + STATE(2739), 1, + sym_parenthesized_expression, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59868] = 2, + ACTIONS(11659), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59882] = 2, + ACTIONS(11865), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59896] = 3, + ACTIONS(11867), 1, + sym_identifier, + STATE(3351), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59912] = 2, + ACTIONS(11649), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59926] = 3, + ACTIONS(11825), 1, + sym_identifier, + ACTIONS(11869), 1, + anon_sym_STAR, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [59942] = 3, + ACTIONS(11871), 1, + sym_identifier, ACTIONS(11873), 1, - sym_identifier, - ACTIONS(11875), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55461] = 3, - ACTIONS(11877), 1, - sym_identifier, - ACTIONS(11879), 1, anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, @@ -618127,49 +615178,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55477] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1874), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55493] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1908), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55509] = 3, - ACTIONS(11881), 1, - sym_identifier, - ACTIONS(11883), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55525] = 3, - ACTIONS(11885), 1, + [59958] = 2, + ACTIONS(11875), 2, anon_sym_LF, - ACTIONS(11887), 1, sym_preproc_arg, ACTIONS(5), 7, sym_comment, @@ -618179,86 +615190,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55541] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1937), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55557] = 3, - ACTIONS(11833), 1, - anon_sym_LPAREN2, - STATE(2812), 1, - sym_parenthesized_expression, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55573] = 2, - ACTIONS(11477), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55587] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1873), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55603] = 3, - ACTIONS(11889), 1, - anon_sym_COMMA, - ACTIONS(11891), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55619] = 2, - ACTIONS(10532), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55633] = 3, - ACTIONS(11095), 1, + [59972] = 3, + ACTIONS(11085), 1, sym_identifier, - STATE(4760), 1, + STATE(1584), 1, sym__name, ACTIONS(3), 7, sym_comment, @@ -618268,215 +615203,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55649] = 3, - ACTIONS(11811), 1, + [59988] = 3, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11893), 1, - anon_sym_STAR, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55665] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1992), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55681] = 3, - ACTIONS(11895), 1, - anon_sym_LPAREN2, - STATE(5674), 1, - sym_parenthesized_expression, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55697] = 3, - ACTIONS(11833), 1, - anon_sym_LPAREN2, - STATE(2814), 1, - sym_parenthesized_expression, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55713] = 3, - ACTIONS(11897), 1, - anon_sym_COMMA, - ACTIONS(11899), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55729] = 3, - ACTIONS(11833), 1, - anon_sym_LPAREN2, - STATE(2815), 1, - sym_parenthesized_expression, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55745] = 3, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - STATE(3762), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55761] = 3, - ACTIONS(11234), 1, - sym_identifier, - STATE(5118), 1, - sym_enumerator, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55777] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1865), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55793] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1866), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55809] = 3, - ACTIONS(11895), 1, - anon_sym_LPAREN2, - STATE(5077), 1, - sym_parenthesized_expression, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55825] = 2, - ACTIONS(11406), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55839] = 3, - ACTIONS(3036), 1, - anon_sym_LT, STATE(1889), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55855] = 2, - ACTIONS(11901), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55869] = 2, - ACTIONS(11628), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55883] = 3, - ACTIONS(11895), 1, - anon_sym_LPAREN2, - STATE(5193), 1, - sym_parenthesized_expression, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55899] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(4748), 1, sym__name, ACTIONS(3), 7, sym_comment, @@ -618486,23 +615216,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55915] = 3, - ACTIONS(11903), 1, - anon_sym_LF, - ACTIONS(11905), 1, - sym_preproc_arg, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55931] = 3, - ACTIONS(3036), 1, + [60004] = 3, + ACTIONS(3010), 1, anon_sym_LT, - STATE(1870), 1, + STATE(1934), 1, sym_protocol_qualifiers, ACTIONS(3), 7, sym_comment, @@ -618512,291 +615229,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [55947] = 2, - ACTIONS(11907), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55961] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1994), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55977] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1914), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [55993] = 3, - ACTIONS(11909), 1, - anon_sym_LF, - ACTIONS(11911), 1, - sym_preproc_arg, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56009] = 2, - ACTIONS(11913), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56023] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1995), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56039] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(1625), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56055] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1998), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56071] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(4756), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56087] = 3, - ACTIONS(11915), 1, - sym_identifier, - STATE(4996), 1, - sym__protocol_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56103] = 3, - ACTIONS(11811), 1, - sym_identifier, - ACTIONS(11917), 1, - anon_sym_STAR, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56119] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1926), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56135] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(1930), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56151] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(3411), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56167] = 2, - ACTIONS(11613), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56181] = 3, - ACTIONS(10512), 1, - anon_sym_RPAREN, - ACTIONS(10514), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56197] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1999), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56213] = 2, - ACTIONS(11602), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56227] = 3, - ACTIONS(11895), 1, - anon_sym_LPAREN2, - STATE(5249), 1, - sym_parenthesized_expression, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56243] = 2, - ACTIONS(11919), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56257] = 3, - ACTIONS(11833), 1, - anon_sym_LPAREN2, - STATE(2767), 1, - sym_parenthesized_expression, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56273] = 3, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - STATE(4262), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56289] = 3, - ACTIONS(8881), 1, + [60020] = 3, + ACTIONS(8764), 1, anon_sym_LBRACE, - STATE(3008), 1, + STATE(3033), 1, sym_compound_statement, ACTIONS(3), 7, sym_comment, @@ -618806,11 +615242,11 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56305] = 3, - ACTIONS(9724), 1, - anon_sym_LPAREN2, - STATE(4262), 1, - sym_parameter_list, + [60036] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1955), 1, + sym_protocol_qualifiers, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -618819,10 +615255,36 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56321] = 3, - ACTIONS(7002), 1, + [60052] = 3, + ACTIONS(175), 1, + anon_sym_LBRACE, + STATE(206), 1, + sym_compound_statement, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60068] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(1887), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60084] = 3, + ACTIONS(6954), 1, anon_sym_LPAREN2, - STATE(5410), 1, + STATE(5408), 1, sym_argument_list, ACTIONS(3), 7, sym_comment, @@ -618832,8 +615294,21 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56337] = 3, - ACTIONS(3036), 1, + [60100] = 3, + ACTIONS(11877), 1, + anon_sym_LF, + ACTIONS(11879), 1, + sym_preproc_arg, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60116] = 3, + ACTIONS(3010), 1, anon_sym_LT, STATE(1928), 1, sym_protocol_qualifiers, @@ -618845,8 +615320,523 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56353] = 2, - ACTIONS(11921), 2, + [60132] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1937), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60148] = 3, + ACTIONS(8764), 1, + anon_sym_LBRACE, + STATE(3016), 1, + sym_compound_statement, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60164] = 3, + ACTIONS(11881), 1, + sym_identifier, + ACTIONS(11883), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60180] = 3, + ACTIONS(11885), 1, + sym_identifier, + ACTIONS(11887), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60196] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1854), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60212] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1831), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60228] = 3, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + STATE(3696), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60244] = 3, + ACTIONS(11889), 1, + anon_sym_LF, + ACTIONS(11891), 1, + sym_preproc_arg, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60260] = 3, + ACTIONS(11893), 1, + sym_identifier, + STATE(3695), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60276] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1891), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60292] = 3, + ACTIONS(11895), 1, + anon_sym_LF, + ACTIONS(11897), 1, + sym_preproc_arg, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60308] = 3, + ACTIONS(11899), 1, + anon_sym_COMMA, + ACTIONS(11901), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60324] = 2, + ACTIONS(11620), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60338] = 2, + ACTIONS(11903), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60352] = 2, + ACTIONS(11611), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60366] = 2, + ACTIONS(11905), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60380] = 3, + ACTIONS(8874), 1, + anon_sym_LBRACE, + STATE(2972), 1, + sym_compound_statement, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60396] = 3, + ACTIONS(11795), 1, + anon_sym_LPAREN2, + STATE(2746), 1, + sym_parenthesized_expression, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60412] = 3, + ACTIONS(8874), 1, + anon_sym_LBRACE, + STATE(2971), 1, + sym_compound_statement, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60428] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1819), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60444] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1914), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60460] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(4783), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60476] = 3, + ACTIONS(11825), 1, + sym_identifier, + ACTIONS(11907), 1, + anon_sym_STAR, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60492] = 3, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + STATE(3692), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60508] = 2, + ACTIONS(11578), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60522] = 3, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + STATE(4499), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60538] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1852), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60554] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1929), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60570] = 3, + ACTIONS(11909), 1, + anon_sym_COMMA, + ACTIONS(11911), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60586] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1828), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60602] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1826), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60618] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(5523), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60634] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1886), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60650] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1912), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60666] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1926), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60682] = 3, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + STATE(4312), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60698] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1927), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60714] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1863), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60730] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1850), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60746] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1936), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60762] = 2, + ACTIONS(11913), 2, anon_sym_LF, sym_preproc_arg, ACTIONS(5), 7, @@ -618857,8 +615847,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56367] = 2, - ACTIONS(11923), 2, + [60776] = 2, + ACTIONS(11915), 2, anon_sym_DOT_DOT_DOT, sym_identifier, ACTIONS(3), 7, @@ -618869,11 +615859,11 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56381] = 3, - ACTIONS(11095), 1, + [60790] = 3, + ACTIONS(11917), 1, sym_identifier, - STATE(5233), 1, - sym__name, + ACTIONS(11919), 1, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -618882,23 +615872,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56397] = 3, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(340), 1, - sym_compound_statement, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56413] = 3, - ACTIONS(3036), 1, + [60806] = 3, + ACTIONS(3010), 1, anon_sym_LT, - STATE(1902), 1, + STATE(1906), 1, sym_protocol_qualifiers, ACTIONS(3), 7, sym_comment, @@ -618908,63 +615885,11 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56429] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(5441), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56445] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(1627), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56461] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(5123), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56477] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(4793), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56493] = 3, - ACTIONS(7002), 1, + [60822] = 3, + ACTIONS(9774), 1, anon_sym_LPAREN2, - STATE(5773), 1, - sym_argument_list, + STATE(4287), 1, + sym_parameter_list, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -618973,11 +615898,11 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56509] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(4951), 1, - sym__name, + [60838] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1838), 1, + sym_protocol_qualifiers, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -618986,9 +615911,163 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56525] = 3, - ACTIONS(11925), 1, + [60854] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1913), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60870] = 3, + ACTIONS(11801), 1, + anon_sym_LPAREN2, + STATE(5270), 1, + sym_parenthesized_expression, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60886] = 3, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + STATE(4287), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60902] = 3, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + STATE(4283), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60918] = 3, + ACTIONS(8710), 1, + anon_sym_LPAREN2, + STATE(3699), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60934] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1818), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60950] = 3, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(187), 1, + sym_compound_statement, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60966] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1946), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60982] = 2, + ACTIONS(10524), 2, anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [60996] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1933), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61012] = 2, + ACTIONS(10592), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61026] = 3, + ACTIONS(11921), 1, + sym_identifier, + ACTIONS(11923), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61042] = 3, + ACTIONS(11925), 1, + sym_identifier, ACTIONS(11927), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -618999,62 +616078,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56541] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(4196), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56557] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(4899), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56573] = 3, - ACTIONS(11929), 1, - sym_identifier, - ACTIONS(11931), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56589] = 3, - ACTIONS(11933), 1, - sym_identifier, - ACTIONS(11935), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56605] = 3, - ACTIONS(3036), 1, + [61058] = 3, + ACTIONS(3010), 1, anon_sym_LT, - STATE(1894), 1, + STATE(1925), 1, sym_protocol_qualifiers, ACTIONS(3), 7, sym_comment, @@ -619064,10 +616091,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56621] = 3, - ACTIONS(11095), 1, + [61074] = 3, + ACTIONS(11085), 1, sym_identifier, - STATE(1945), 1, + STATE(5236), 1, sym__name, ACTIONS(3), 7, sym_comment, @@ -619077,10 +616104,11 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56637] = 2, - ACTIONS(11937), 2, - anon_sym_COLON, - sym_identifier, + [61090] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1910), 1, + sym_protocol_qualifiers, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -619089,84 +616117,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56651] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(1630), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56667] = 2, - ACTIONS(11939), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56681] = 2, - ACTIONS(11941), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56695] = 3, - ACTIONS(11943), 1, - sym_identifier, - ACTIONS(11945), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56711] = 2, - ACTIONS(11947), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56725] = 2, - ACTIONS(11544), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56739] = 3, - ACTIONS(11895), 1, + [61106] = 3, + ACTIONS(11801), 1, anon_sym_LPAREN2, - STATE(5547), 1, + STATE(5127), 1, sym_parenthesized_expression, ACTIONS(3), 7, sym_comment, @@ -619176,75 +616130,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56755] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1952), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56771] = 3, - ACTIONS(11949), 1, - anon_sym_LF, - ACTIONS(11951), 1, - sym_preproc_arg, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56787] = 3, - ACTIONS(11803), 1, - sym_identifier, - STATE(4914), 1, - sym_synthesize_property, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56803] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1989), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56819] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1966), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56835] = 3, - ACTIONS(11099), 1, + [61122] = 3, + ACTIONS(11139), 1, anon_sym_RPAREN, - ACTIONS(11953), 1, + ACTIONS(11929), 1, anon_sym_COLON, ACTIONS(3), 7, sym_comment, @@ -619254,8 +616143,21 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56851] = 2, - ACTIONS(11955), 2, + [61138] = 3, + ACTIONS(11931), 1, + sym_identifier, + STATE(5025), 1, + sym__protocol_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61154] = 2, + ACTIONS(11933), 2, aux_sym_char_literal_token1, sym_escape_sequence, ACTIONS(5), 7, @@ -619266,7 +616168,201 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56865] = 3, + [61168] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(1917), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61184] = 2, + ACTIONS(11935), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61198] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(4773), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61214] = 3, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + STATE(5267), 1, + sym_argument_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61230] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(1580), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61246] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1897), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61262] = 3, + ACTIONS(11937), 1, + sym_identifier, + ACTIONS(11939), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61278] = 3, + ACTIONS(11941), 1, + sym_identifier, + ACTIONS(11943), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61294] = 3, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + STATE(4312), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61310] = 3, + ACTIONS(11945), 1, + anon_sym_RPAREN, + ACTIONS(11947), 1, + anon_sym_LPAREN2, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61326] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(4925), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61342] = 3, + ACTIONS(11801), 1, + anon_sym_LPAREN2, + STATE(5721), 1, + sym_parenthesized_expression, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61358] = 3, + ACTIONS(11949), 1, + sym_identifier, + ACTIONS(11951), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61374] = 3, + ACTIONS(11953), 1, + anon_sym_COMMA, + ACTIONS(11955), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61390] = 3, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + STATE(5594), 1, + sym_argument_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61406] = 3, ACTIONS(11957), 1, sym_identifier, ACTIONS(11959), 1, @@ -619279,11 +616375,11 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56881] = 3, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - STATE(5352), 1, - sym_argument_list, + [61422] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1902), 1, + sym_protocol_qualifiers, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -619292,7 +616388,33 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56897] = 3, + [61438] = 3, + ACTIONS(8712), 1, + anon_sym_LBRACE, + STATE(3262), 1, + sym_compound_statement, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61454] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1905), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61470] = 3, ACTIONS(11961), 1, sym_identifier, ACTIONS(11963), 1, @@ -619305,75 +616427,11 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [56913] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1965), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56929] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1906), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56945] = 2, - ACTIONS(11965), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56959] = 3, - ACTIONS(11095), 1, + [61486] = 3, + ACTIONS(11965), 1, sym_identifier, - STATE(1971), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56975] = 3, - ACTIONS(11833), 1, - anon_sym_LPAREN2, - STATE(2836), 1, - sym_parenthesized_expression, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [56991] = 3, ACTIONS(11967), 1, anon_sym_RPAREN, - ACTIONS(11969), 1, - anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -619382,9 +616440,98 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57007] = 2, + [61502] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1915), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61518] = 3, + ACTIONS(6954), 1, + anon_sym_LPAREN2, + STATE(5672), 1, + sym_argument_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61534] = 2, + ACTIONS(11969), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61548] = 2, + ACTIONS(11462), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61562] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1904), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61578] = 2, ACTIONS(11971), 2, anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61592] = 3, + ACTIONS(11833), 1, + sym_identifier, + STATE(4935), 1, + sym_synthesize_property, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61608] = 3, + ACTIONS(10361), 1, + anon_sym_RPAREN, + ACTIONS(10363), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -619394,10 +616541,23 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57021] = 3, - ACTIONS(9724), 1, + [61624] = 3, + ACTIONS(11973), 1, + sym_identifier, + ACTIONS(11975), 1, anon_sym_LPAREN2, - STATE(4461), 1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61640] = 3, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + STATE(4283), 1, sym_parameter_list, ACTIONS(3), 7, sym_comment, @@ -619407,11 +616567,11 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57037] = 3, - ACTIONS(767), 1, - anon_sym_LBRACE, - STATE(393), 1, - sym_compound_statement, + [61656] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(5689), 1, + sym__name, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -619420,11 +616580,36 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57053] = 3, - ACTIONS(9724), 1, + [61672] = 2, + ACTIONS(11977), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61686] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1877), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61702] = 3, + ACTIONS(6954), 1, anon_sym_LPAREN2, - STATE(4481), 1, - sym_parameter_list, + STATE(5398), 1, + sym_argument_list, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -619433,8 +616618,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57069] = 2, - ACTIONS(11973), 2, + [61718] = 2, + ACTIONS(11979), 2, + anon_sym_COLON, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61732] = 2, + ACTIONS(11981), 2, anon_sym_COMMA, anon_sym_GT, ACTIONS(3), 7, @@ -619445,11 +616642,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57083] = 3, - ACTIONS(11895), 1, - anon_sym_LPAREN2, - STATE(5152), 1, - sym_parenthesized_expression, + [61746] = 2, + ACTIONS(11983), 2, + anon_sym_COMMA, + anon_sym_GT, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -619458,21 +616654,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57099] = 3, - ACTIONS(11833), 1, - anon_sym_LPAREN2, - STATE(2835), 1, - sym_parenthesized_expression, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57115] = 2, - ACTIONS(11472), 2, + [61760] = 2, + ACTIONS(11985), 2, anon_sym_COMMA, anon_sym_SEMI, ACTIONS(3), 7, @@ -619483,10 +616666,36 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57129] = 3, - ACTIONS(11095), 1, + [61774] = 3, + ACTIONS(3010), 1, + anon_sym_LT, + STATE(1952), 1, + sym_protocol_qualifiers, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61790] = 3, + ACTIONS(11931), 1, sym_identifier, - STATE(5315), 1, + STATE(5116), 1, + sym__protocol_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61806] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(1872), 1, sym__name, ACTIONS(3), 7, sym_comment, @@ -619496,10 +616705,88 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57145] = 3, - ACTIONS(3036), 1, + [61822] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(3351), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61838] = 3, + ACTIONS(11795), 1, + anon_sym_LPAREN2, + STATE(2767), 1, + sym_parenthesized_expression, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61854] = 3, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + STATE(4487), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61870] = 3, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + STATE(4492), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61886] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(1582), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61902] = 3, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + STATE(4508), 1, + sym_parameter_list, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61918] = 3, + ACTIONS(3010), 1, anon_sym_LT, - STATE(1953), 1, + STATE(1845), 1, sym_protocol_qualifiers, ACTIONS(3), 7, sym_comment, @@ -619509,11 +616796,11 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57161] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1940), 1, - sym_protocol_qualifiers, + [61934] = 3, + ACTIONS(9774), 1, + anon_sym_LPAREN2, + STATE(4501), 1, + sym_parameter_list, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -619522,8 +616809,34 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57177] = 3, - ACTIONS(3036), 1, + [61950] = 3, + ACTIONS(11085), 1, + sym_identifier, + STATE(4778), 1, + sym__name, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61966] = 3, + ACTIONS(11987), 1, + anon_sym_LF, + ACTIONS(11989), 1, + sym_preproc_arg, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [61982] = 3, + ACTIONS(3010), 1, anon_sym_LT, STATE(1950), 1, sym_protocol_qualifiers, @@ -619535,10 +616848,22 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57193] = 3, - ACTIONS(9724), 1, + [61998] = 2, + ACTIONS(11400), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62012] = 3, + ACTIONS(9774), 1, anon_sym_LPAREN2, - STATE(4474), 1, + STATE(4276), 1, sym_parameter_list, ACTIONS(3), 7, sym_comment, @@ -619548,100 +616873,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57209] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1958), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57225] = 3, - ACTIONS(11975), 1, - sym_identifier, - ACTIONS(11977), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57241] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1938), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57257] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(1917), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57273] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(1629), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57289] = 2, - ACTIONS(10480), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57303] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(1925), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57319] = 2, - ACTIONS(11979), 2, + [62028] = 2, + ACTIONS(11991), 2, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -619650,10 +616885,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57333] = 2, - ACTIONS(11981), 2, - anon_sym_LF, - sym_preproc_arg, + [62042] = 2, + ACTIONS(11402), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, ACTIONS(5), 7, sym_comment, sym_pragma, @@ -619662,153 +616897,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57347] = 3, - ACTIONS(8881), 1, - anon_sym_LBRACE, - STATE(3037), 1, - sym_compound_statement, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57363] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1976), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57379] = 3, - ACTIONS(11983), 1, - sym_identifier, - ACTIONS(11985), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57395] = 3, - ACTIONS(8795), 1, - anon_sym_LBRACE, - STATE(3353), 1, - sym_compound_statement, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57411] = 3, - ACTIONS(11987), 1, - sym_identifier, - ACTIONS(11989), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57427] = 3, - ACTIONS(11991), 1, - sym_identifier, - ACTIONS(11993), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57443] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1983), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57459] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1970), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57475] = 3, - ACTIONS(8793), 1, + [62056] = 3, + ACTIONS(11795), 1, anon_sym_LPAREN2, - STATE(4267), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57491] = 3, - ACTIONS(9724), 1, - anon_sym_LPAREN2, - STATE(4284), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57507] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(2755), 1, - sym__name, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57523] = 3, - ACTIONS(11833), 1, - anon_sym_LPAREN2, - STATE(2762), 1, + STATE(2752), 1, sym_parenthesized_expression, ACTIONS(3), 7, sym_comment, @@ -619818,74 +616910,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57539] = 2, - ACTIONS(11995), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57553] = 3, - ACTIONS(8881), 1, - anon_sym_LBRACE, - STATE(3038), 1, - sym_compound_statement, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57569] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1982), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57585] = 3, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - STATE(5498), 1, - sym_argument_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57601] = 3, - ACTIONS(11811), 1, + [62072] = 3, + ACTIONS(11085), 1, sym_identifier, - ACTIONS(11997), 1, - anon_sym_STAR, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57617] = 3, - ACTIONS(11095), 1, - sym_identifier, - STATE(3109), 1, + STATE(4823), 1, sym__name, ACTIONS(3), 7, sym_comment, @@ -619895,8 +616923,47 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57633] = 2, - ACTIONS(11999), 2, + [62088] = 3, + ACTIONS(8874), 1, + anon_sym_LBRACE, + STATE(2952), 1, + sym_compound_statement, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62104] = 3, + ACTIONS(11993), 1, + anon_sym_COMMA, + ACTIONS(11995), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62120] = 3, + ACTIONS(11801), 1, + anon_sym_LPAREN2, + STATE(5184), 1, + sym_parenthesized_expression, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62136] = 2, + ACTIONS(11997), 2, anon_sym_COMMA, anon_sym_RPAREN, ACTIONS(3), 7, @@ -619907,60 +616974,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57647] = 2, - ACTIONS(12001), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57661] = 2, - ACTIONS(12003), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57675] = 3, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - STATE(3740), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57691] = 3, - ACTIONS(8793), 1, - anon_sym_LPAREN2, - STATE(3729), 1, - sym_parameter_list, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57707] = 3, - ACTIONS(3036), 1, + [62150] = 3, + ACTIONS(3010), 1, anon_sym_LT, - STATE(1923), 1, + STATE(1942), 1, sym_protocol_qualifiers, ACTIONS(3), 7, sym_comment, @@ -619970,11 +616987,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57723] = 3, - ACTIONS(7002), 1, - anon_sym_LPAREN2, - STATE(5335), 1, - sym_argument_list, + [62166] = 2, + ACTIONS(11999), 1, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -619983,9 +616998,40 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57739] = 3, + [62179] = 2, + ACTIONS(12001), 1, + anon_sym_STAR, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62192] = 2, + ACTIONS(12003), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62205] = 2, ACTIONS(12005), 1, sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62218] = 2, ACTIONS(12007), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -619996,48 +617042,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57755] = 3, - ACTIONS(11915), 1, - sym_identifier, - STATE(5086), 1, - sym__protocol_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57771] = 3, - ACTIONS(3036), 1, - anon_sym_LT, - STATE(1919), 1, - sym_protocol_qualifiers, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57787] = 3, - ACTIONS(11833), 1, - anon_sym_LPAREN2, - STATE(2766), 1, - sym_parenthesized_expression, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57803] = 2, + [62231] = 2, ACTIONS(12009), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -620046,8 +617053,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57816] = 2, + [62244] = 2, ACTIONS(12011), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62257] = 2, + ACTIONS(10442), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -620057,7 +617075,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57829] = 2, + [62270] = 2, ACTIONS(12013), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620068,8 +617086,41 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57842] = 2, + [62283] = 2, ACTIONS(12015), 1, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62296] = 2, + ACTIONS(12017), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62309] = 2, + ACTIONS(12019), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62322] = 2, + ACTIONS(12021), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -620079,40 +617130,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57855] = 2, - ACTIONS(12017), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57868] = 2, - ACTIONS(12019), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57881] = 2, - ACTIONS(12021), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57894] = 2, + [62335] = 2, ACTIONS(12023), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620123,19 +617141,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57907] = 2, + [62348] = 2, ACTIONS(12025), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57920] = 2, - ACTIONS(12027), 1, anon_sym_LF, ACTIONS(5), 7, sym_comment, @@ -620145,9 +617152,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57933] = 2, + [62361] = 2, + ACTIONS(12027), 1, + anon_sym_LPAREN2, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62374] = 2, ACTIONS(12029), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -620156,18 +617174,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57946] = 2, - ACTIONS(11841), 1, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [57959] = 2, + [62387] = 2, ACTIONS(12031), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620178,7 +617185,29 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57972] = 2, + [62400] = 2, + ACTIONS(10436), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62413] = 2, + ACTIONS(11823), 1, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62426] = 2, ACTIONS(12033), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620189,8 +617218,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57985] = 2, - ACTIONS(8418), 1, + [62439] = 2, + ACTIONS(12035), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62452] = 2, + ACTIONS(10474), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -620200,20 +617240,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [57998] = 2, - ACTIONS(12035), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58011] = 2, + [62465] = 2, ACTIONS(12037), 1, - anon_sym_CARET, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -620222,21 +617251,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58024] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, + [62478] = 2, ACTIONS(12039), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_undef_retain, - [58039] = 2, - ACTIONS(12041), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -620245,19 +617262,29 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58052] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, - ACTIONS(12043), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, + [62491] = 2, + ACTIONS(12041), 1, + anon_sym_SEMI, + ACTIONS(3), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, sym__ifdef_elif_ignore, sym__ifdef_else_ignore, + sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58067] = 2, + [62504] = 2, + ACTIONS(12043), 1, + sym_number_literal, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62517] = 2, ACTIONS(12045), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -620268,30 +617295,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58080] = 2, + [62530] = 2, ACTIONS(12047), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58093] = 2, - ACTIONS(12049), 1, - anon_sym_LF, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58106] = 2, - ACTIONS(12051), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -620301,9 +617306,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58119] = 2, - ACTIONS(12053), 1, - anon_sym_RPAREN, + [62543] = 2, + ACTIONS(12049), 1, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -620312,7 +617317,62 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58132] = 2, + [62556] = 2, + ACTIONS(10510), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62569] = 2, + ACTIONS(11929), 1, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62582] = 2, + ACTIONS(12051), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62595] = 2, + ACTIONS(12053), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62608] = 2, + ACTIONS(10468), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62621] = 2, ACTIONS(12055), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620323,9 +617383,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58145] = 2, + [62634] = 2, ACTIONS(12057), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -620334,7 +617394,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58158] = 2, + [62647] = 2, + ACTIONS(10476), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62660] = 2, ACTIONS(12059), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620345,7 +617416,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58171] = 2, + [62673] = 2, ACTIONS(12061), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620356,7 +617427,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58184] = 2, + [62686] = 2, ACTIONS(12063), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620367,7 +617438,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58197] = 2, + [62699] = 2, ACTIONS(12065), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620378,7 +617449,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58210] = 2, + [62712] = 2, + ACTIONS(10994), 1, + anon_sym_CARET, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62725] = 2, ACTIONS(12067), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620389,7 +617471,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58223] = 2, + [62738] = 2, ACTIONS(12069), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -620400,29 +617482,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58236] = 2, - ACTIONS(8505), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58249] = 2, - ACTIONS(8426), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58262] = 2, + [62751] = 2, ACTIONS(12071), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620433,7 +617493,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58275] = 2, + [62764] = 2, ACTIONS(12073), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620444,7 +617504,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58288] = 2, + [62777] = 2, ACTIONS(12075), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620455,9 +617515,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58301] = 2, + [62790] = 2, ACTIONS(12077), 1, - sym_number_literal, + anon_sym_CARET, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -620466,7 +617526,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58314] = 2, + [62803] = 2, ACTIONS(12079), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620477,9 +617537,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58327] = 2, + [62816] = 2, ACTIONS(12081), 1, - aux_sym_available_expression_token1, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -620488,9 +617548,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58340] = 2, + [62829] = 2, + ACTIONS(10460), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62842] = 2, ACTIONS(12083), 1, - anon_sym_SQUOTE, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -620499,118 +617570,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58353] = 2, - ACTIONS(10446), 1, - anon_sym_RBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, + [62855] = 3, + ACTIONS(5), 1, sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58366] = 2, ACTIONS(12085), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, sym_comment, sym_pragma, sym__ifdef_if_retain, sym__ifdef_elif_ignore, sym__ifdef_else_ignore, - sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58379] = 2, + [62870] = 2, ACTIONS(12087), 1, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58392] = 2, - ACTIONS(12089), 1, - anon_sym_RBRACE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58405] = 2, - ACTIONS(12091), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58418] = 2, - ACTIONS(12093), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58431] = 2, - ACTIONS(12095), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58444] = 2, - ACTIONS(11953), 1, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58457] = 2, - ACTIONS(12097), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58470] = 2, - ACTIONS(12099), 1, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58483] = 2, - ACTIONS(12101), 1, sym_identifier, ACTIONS(3), 7, sym_comment, @@ -620620,7 +617593,118 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58496] = 2, + [62883] = 2, + ACTIONS(12089), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62896] = 2, + ACTIONS(12091), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62909] = 2, + ACTIONS(12093), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62922] = 3, + ACTIONS(5), 1, + sym__ifdef_endif_retain, + ACTIONS(12095), 1, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_undef_retain, + [62937] = 2, + ACTIONS(9872), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62950] = 2, + ACTIONS(10512), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62963] = 2, + ACTIONS(12097), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62976] = 2, + ACTIONS(9192), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [62989] = 2, + ACTIONS(12099), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63002] = 2, + ACTIONS(12101), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63015] = 2, ACTIONS(12103), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620631,41 +617715,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58509] = 2, + [63028] = 2, ACTIONS(12105), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58522] = 2, - ACTIONS(11006), 1, - anon_sym_CARET, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58535] = 2, - ACTIONS(12107), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58548] = 2, - ACTIONS(12109), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -620675,9 +617726,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58561] = 2, - ACTIONS(12111), 1, - anon_sym_LPAREN2, + [63041] = 2, + ACTIONS(10484), 1, + anon_sym_RBRACE, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -620686,7 +617737,40 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58574] = 2, + [63054] = 2, + ACTIONS(12107), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63067] = 2, + ACTIONS(12109), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63080] = 2, + ACTIONS(12111), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63093] = 2, ACTIONS(12113), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620697,7 +617781,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58587] = 2, + [63106] = 2, ACTIONS(12115), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620708,7 +617792,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58600] = 2, + [63119] = 2, ACTIONS(12117), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620719,7 +617803,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58613] = 2, + [63132] = 2, ACTIONS(12119), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620730,9 +617814,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58626] = 2, - ACTIONS(12121), 1, - anon_sym_COMMA, + [63145] = 2, + ACTIONS(10446), 1, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -620741,7 +617825,29 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58639] = 2, + [63158] = 2, + ACTIONS(12121), 1, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63171] = 2, + ACTIONS(10440), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63184] = 2, ACTIONS(12123), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620752,7 +617858,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58652] = 2, + [63197] = 2, ACTIONS(12125), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620763,8 +617869,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58665] = 2, + [63210] = 2, ACTIONS(12127), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63223] = 2, + ACTIONS(10430), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -620774,18 +617891,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58678] = 2, + [63236] = 3, + ACTIONS(5), 1, + sym__ifdef_endif_retain, ACTIONS(12129), 1, - anon_sym_SEMI, - ACTIONS(3), 7, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, sym_comment, sym_pragma, sym__ifdef_if_retain, sym__ifdef_elif_ignore, sym__ifdef_else_ignore, - sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58691] = 2, + [63251] = 2, ACTIONS(12131), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620796,7 +617914,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58704] = 2, + [63264] = 2, ACTIONS(12133), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620807,7 +617925,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58717] = 2, + [63277] = 2, ACTIONS(12135), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620818,7 +617936,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58730] = 2, + [63290] = 2, ACTIONS(12137), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620829,8 +617947,97 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58743] = 2, + [63303] = 2, ACTIONS(12139), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63316] = 3, + ACTIONS(5), 1, + sym__ifdef_endif_retain, + ACTIONS(12141), 1, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_undef_retain, + [63331] = 2, + ACTIONS(12143), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63344] = 2, + ACTIONS(12145), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63357] = 2, + ACTIONS(12147), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63370] = 2, + ACTIONS(12149), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63383] = 2, + ACTIONS(12151), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63396] = 2, + ACTIONS(10548), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63409] = 2, + ACTIONS(12153), 1, sym_identifier, ACTIONS(3), 7, sym_comment, @@ -620840,19 +618047,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58756] = 2, - ACTIONS(12141), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58769] = 2, - ACTIONS(12143), 1, + [63422] = 2, + ACTIONS(10416), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -620862,86 +618058,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58782] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, - ACTIONS(12145), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_undef_retain, - [58797] = 2, - ACTIONS(12147), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58810] = 2, - ACTIONS(9858), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58823] = 2, - ACTIONS(9200), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58836] = 2, - ACTIONS(10382), 1, - anon_sym_RBRACE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58849] = 2, - ACTIONS(12149), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58862] = 2, - ACTIONS(12151), 1, - anon_sym_in, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58875] = 2, - ACTIONS(12153), 1, + [63435] = 2, + ACTIONS(10414), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -620951,7 +618069,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58888] = 2, + [63448] = 2, ACTIONS(12155), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -620962,63 +618080,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58901] = 2, - ACTIONS(10526), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58914] = 2, + [63461] = 2, ACTIONS(12157), 1, - anon_sym_STAR, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58927] = 2, - ACTIONS(12159), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58940] = 2, - ACTIONS(12161), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58953] = 2, - ACTIONS(12163), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58966] = 2, - ACTIONS(10544), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -621028,30 +618091,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [58979] = 2, - ACTIONS(12165), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [58992] = 2, - ACTIONS(12167), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59005] = 2, - ACTIONS(8594), 1, + [63474] = 2, + ACTIONS(10404), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -621061,7 +618102,84 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59018] = 2, + [63487] = 2, + ACTIONS(12159), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63500] = 2, + ACTIONS(10582), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63513] = 2, + ACTIONS(10570), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63526] = 2, + ACTIONS(12161), 1, + anon_sym_EQ, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63539] = 2, + ACTIONS(12163), 1, + anon_sym_EQ, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63552] = 2, + ACTIONS(12165), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63565] = 2, + ACTIONS(12167), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63578] = 2, ACTIONS(12169), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -621072,8 +618190,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59031] = 2, + [63591] = 2, ACTIONS(12171), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63604] = 2, + ACTIONS(10392), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -621083,7 +618212,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59044] = 2, + [63617] = 2, + ACTIONS(10321), 1, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63630] = 2, ACTIONS(12173), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -621094,43 +618234,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59057] = 2, - ACTIONS(10594), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59070] = 2, - ACTIONS(10540), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59083] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, + [63643] = 2, ACTIONS(12175), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_undef_retain, - [59098] = 2, - ACTIONS(12177), 1, - anon_sym_SQUOTE, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -621139,7 +618245,29 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59111] = 2, + [63656] = 2, + ACTIONS(10380), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63669] = 2, + ACTIONS(12177), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63682] = 2, ACTIONS(12179), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -621150,7 +618278,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59124] = 2, + [63695] = 2, ACTIONS(12181), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -621161,8 +618289,30 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59137] = 2, + [63708] = 2, ACTIONS(12183), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63721] = 2, + ACTIONS(12185), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63734] = 2, + ACTIONS(10369), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -621172,18 +618322,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59150] = 2, - ACTIONS(12185), 1, - anon_sym_LF, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59163] = 2, + [63747] = 2, ACTIONS(12187), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -621194,9 +618333,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59176] = 2, + [63760] = 2, ACTIONS(12189), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -621205,9 +618344,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59189] = 2, + [63773] = 2, ACTIONS(12191), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -621216,9 +618355,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59202] = 2, + [63786] = 2, ACTIONS(12193), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -621227,9 +618366,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59215] = 2, + [63799] = 2, ACTIONS(12195), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -621238,7 +618377,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59228] = 2, + [63812] = 2, ACTIONS(12197), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -621249,7 +618388,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59241] = 2, + [63825] = 2, ACTIONS(12199), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -621260,21 +618399,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59254] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, + [63838] = 2, ACTIONS(12201), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, + anon_sym_SEMI, + ACTIONS(3), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, sym__ifdef_elif_ignore, sym__ifdef_else_ignore, + sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59269] = 2, + [63851] = 2, ACTIONS(12203), 1, - sym_module_string, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -621283,9 +618421,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59282] = 2, + [63864] = 2, ACTIONS(12205), 1, - anon_sym_COLON, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -621294,7 +618432,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59295] = 2, + [63877] = 2, ACTIONS(12207), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -621305,9 +618443,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59308] = 2, + [63890] = 2, ACTIONS(12209), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -621316,19 +618454,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59321] = 2, + [63903] = 2, ACTIONS(12211), 1, - sym_module_string, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59334] = 2, - ACTIONS(12213), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -621338,7 +618465,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59347] = 2, + [63916] = 2, + ACTIONS(12213), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [63929] = 2, ACTIONS(12215), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -621349,31 +618487,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59360] = 2, - ACTIONS(10538), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59373] = 2, - ACTIONS(11658), 1, - anon_sym_LF, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59386] = 2, + [63942] = 2, ACTIONS(12217), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -621382,7 +618498,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59399] = 2, + [63955] = 2, ACTIONS(12219), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -621393,9 +618509,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59412] = 2, + [63968] = 2, ACTIONS(12221), 1, - anon_sym_LPAREN2, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -621404,18 +618520,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59425] = 2, + [63981] = 3, + ACTIONS(5), 1, + sym__ifdef_endif_retain, ACTIONS(12223), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, sym_comment, sym_pragma, sym__ifdef_if_retain, sym__ifdef_elif_ignore, sym__ifdef_else_ignore, - sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59438] = 2, + [63996] = 2, ACTIONS(12225), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -621426,7 +618543,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59451] = 2, + [64009] = 2, ACTIONS(12227), 1, anon_sym_LF, ACTIONS(5), 7, @@ -621437,30 +618554,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59464] = 2, - ACTIONS(12229), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59477] = 2, - ACTIONS(12231), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59490] = 2, - ACTIONS(10534), 1, + [64022] = 2, + ACTIONS(10568), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -621470,7 +618565,30 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59503] = 2, + [64035] = 3, + ACTIONS(5), 1, + sym__ifdef_endif_retain, + ACTIONS(12229), 1, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_undef_retain, + [64050] = 2, + ACTIONS(12231), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64063] = 2, ACTIONS(12233), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -621481,9 +618599,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59516] = 2, + [64076] = 2, ACTIONS(12235), 1, - anon_sym_RPAREN, + anon_sym_STAR, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -621492,19 +618610,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59529] = 2, - ACTIONS(12237), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59542] = 2, - ACTIONS(8378), 1, + [64089] = 2, + ACTIONS(10406), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -621514,9 +618621,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59555] = 2, + [64102] = 2, + ACTIONS(12237), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64115] = 2, ACTIONS(12239), 1, - anon_sym_LPAREN2, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -621525,9 +618643,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59568] = 2, + [64128] = 2, ACTIONS(12241), 1, - anon_sym_EQ, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -621536,7 +618654,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59581] = 2, + [64141] = 2, ACTIONS(12243), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -621547,8 +618665,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59594] = 2, + [64154] = 2, ACTIONS(12245), 1, + aux_sym_available_expression_token1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64167] = 2, + ACTIONS(12247), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -621558,9 +618687,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59607] = 2, - ACTIONS(12247), 1, - anon_sym_EQ, + [64180] = 2, + ACTIONS(10448), 1, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -621569,7 +618698,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59620] = 2, + [64193] = 2, ACTIONS(12249), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -621580,10 +618709,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59633] = 2, + [64206] = 2, ACTIONS(12251), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, + anon_sym_LF, + ACTIONS(5), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, @@ -621591,8 +618720,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59646] = 2, - ACTIONS(10569), 1, + [64219] = 2, + ACTIONS(10450), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -621602,7 +618731,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59659] = 2, + [64232] = 2, ACTIONS(12253), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -621613,206 +618742,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59672] = 2, + [64245] = 3, + ACTIONS(5), 1, + sym__ifdef_endif_retain, ACTIONS(12255), 1, - anon_sym_SEMI, - ACTIONS(3), 7, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, sym_comment, sym_pragma, sym__ifdef_if_retain, sym__ifdef_elif_ignore, sym__ifdef_else_ignore, - sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59685] = 2, + [64260] = 2, ACTIONS(12257), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59698] = 2, - ACTIONS(12259), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59711] = 2, - ACTIONS(12261), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59724] = 2, - ACTIONS(12263), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59737] = 2, - ACTIONS(12265), 1, - anon_sym_SQUOTE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59750] = 2, - ACTIONS(12267), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59763] = 2, - ACTIONS(11662), 1, - anon_sym_RBRACE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59776] = 2, - ACTIONS(12269), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59789] = 2, - ACTIONS(12271), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59802] = 2, - ACTIONS(10334), 1, - anon_sym_COLON, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59815] = 2, - ACTIONS(12273), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59828] = 2, - ACTIONS(8402), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59841] = 2, - ACTIONS(12275), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59854] = 2, - ACTIONS(12277), 1, - anon_sym_RBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59867] = 2, - ACTIONS(12279), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59880] = 2, - ACTIONS(12281), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59893] = 2, - ACTIONS(12283), 1, - anon_sym_STAR, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59906] = 2, - ACTIONS(12285), 1, anon_sym_LF, ACTIONS(5), 7, sym_comment, @@ -621822,10 +618765,32 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59919] = 3, + [64273] = 2, + ACTIONS(12259), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64286] = 2, + ACTIONS(12261), 1, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64299] = 3, ACTIONS(5), 1, sym__ifdef_endif_retain, - ACTIONS(12287), 1, + ACTIONS(12263), 1, aux_sym_preproc_if_token2, ACTIONS(3), 6, sym_comment, @@ -621834,8 +618799,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_elif_ignore, sym__ifdef_else_ignore, sym__ifdef_undef_retain, - [59934] = 2, - ACTIONS(12289), 1, + [64314] = 2, + ACTIONS(12265), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64327] = 2, + ACTIONS(12267), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -621845,8 +618821,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59947] = 2, - ACTIONS(12291), 1, + [64340] = 2, + ACTIONS(12269), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -621856,19 +618832,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59960] = 2, - ACTIONS(12293), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59973] = 2, - ACTIONS(12295), 1, + [64353] = 2, + ACTIONS(10554), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -621878,469 +618843,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [59986] = 2, - ACTIONS(12297), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [59999] = 2, - ACTIONS(12299), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60012] = 2, - ACTIONS(12301), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60025] = 2, - ACTIONS(12303), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60038] = 2, - ACTIONS(12305), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60051] = 2, - ACTIONS(12307), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60064] = 2, - ACTIONS(12309), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60077] = 2, - ACTIONS(12311), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60090] = 2, - ACTIONS(12313), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60103] = 2, - ACTIONS(12315), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60116] = 2, - ACTIONS(12317), 1, - anon_sym_RBRACK, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60129] = 2, - ACTIONS(12319), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60142] = 2, - ACTIONS(12321), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60155] = 2, - ACTIONS(12323), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60168] = 2, - ACTIONS(12325), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60181] = 2, - ACTIONS(12327), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60194] = 2, - ACTIONS(12329), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60207] = 2, - ACTIONS(11720), 1, - anon_sym_RBRACE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60220] = 2, - ACTIONS(12331), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60233] = 2, - ACTIONS(12333), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60246] = 2, - ACTIONS(12335), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60259] = 2, - ACTIONS(8458), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60272] = 2, - ACTIONS(12337), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60285] = 2, - ACTIONS(12339), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60298] = 2, - ACTIONS(12341), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60311] = 2, - ACTIONS(12343), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60324] = 2, - ACTIONS(12345), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60337] = 2, - ACTIONS(12347), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60350] = 2, - ACTIONS(12349), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60363] = 2, - ACTIONS(12351), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60376] = 2, - ACTIONS(12353), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60389] = 2, - ACTIONS(12355), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60402] = 2, - ACTIONS(12357), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60415] = 2, - ACTIONS(12359), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60428] = 2, - ACTIONS(12361), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60441] = 2, - ACTIONS(12363), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60454] = 2, - ACTIONS(12365), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60467] = 2, - ACTIONS(12367), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60480] = 2, - ACTIONS(12369), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60493] = 2, - ACTIONS(12371), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60506] = 2, - ACTIONS(12373), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60519] = 2, - ACTIONS(12375), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60532] = 2, + [64366] = 2, ACTIONS(10552), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -622351,19 +618854,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60545] = 2, - ACTIONS(12377), 1, - anon_sym_STAR, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60558] = 2, - ACTIONS(8470), 1, + [64379] = 2, + ACTIONS(9902), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -622373,8 +618865,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60571] = 2, - ACTIONS(10542), 1, + [64392] = 2, + ACTIONS(12271), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64405] = 2, + ACTIONS(12273), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -622384,9 +618887,751 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60584] = 2, + [64418] = 2, + ACTIONS(10454), 1, + anon_sym_RBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64431] = 2, + ACTIONS(12275), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64444] = 2, + ACTIONS(12277), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64457] = 2, + ACTIONS(12279), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64470] = 2, + ACTIONS(12281), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64483] = 2, + ACTIONS(12283), 1, + anon_sym_RBRACE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64496] = 2, + ACTIONS(12285), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64509] = 2, + ACTIONS(12287), 1, + aux_sym_available_expression_token1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64522] = 2, + ACTIONS(12289), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64535] = 2, + ACTIONS(12291), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64548] = 3, + ACTIONS(5), 1, + sym__ifdef_endif_retain, + ACTIONS(12293), 1, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_undef_retain, + [64563] = 2, + ACTIONS(12295), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64576] = 2, + ACTIONS(10584), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64589] = 2, + ACTIONS(10580), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64602] = 2, + ACTIONS(10594), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64615] = 2, + ACTIONS(12297), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64628] = 2, + ACTIONS(12299), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64641] = 2, + ACTIONS(12301), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64654] = 2, + ACTIONS(12303), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64667] = 2, + ACTIONS(12305), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64680] = 3, + ACTIONS(5), 1, + sym__ifdef_endif_retain, + ACTIONS(12307), 1, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_undef_retain, + [64695] = 2, + ACTIONS(12309), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64708] = 2, + ACTIONS(12311), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64721] = 3, + ACTIONS(5), 1, + sym__ifdef_endif_retain, + ACTIONS(12313), 1, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_undef_retain, + [64736] = 2, + ACTIONS(12315), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64749] = 2, + ACTIONS(12317), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64762] = 2, + ACTIONS(10410), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64775] = 2, + ACTIONS(12319), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64788] = 2, + ACTIONS(10412), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64801] = 2, + ACTIONS(10408), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64814] = 3, + ACTIONS(5), 1, + sym__ifdef_endif_retain, + ACTIONS(12321), 1, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_undef_retain, + [64829] = 2, + ACTIONS(12323), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64842] = 2, + ACTIONS(12325), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64855] = 2, + ACTIONS(12327), 1, + anon_sym_LPAREN2, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64868] = 2, + ACTIONS(12329), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64881] = 2, + ACTIONS(12331), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64894] = 2, + ACTIONS(12333), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64907] = 2, + ACTIONS(12335), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64920] = 2, + ACTIONS(10564), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64933] = 2, + ACTIONS(9996), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64946] = 2, + ACTIONS(9966), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64959] = 2, + ACTIONS(12337), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64972] = 2, + ACTIONS(12339), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64985] = 2, + ACTIONS(12341), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [64998] = 2, + ACTIONS(12343), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65011] = 2, + ACTIONS(12345), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65024] = 2, + ACTIONS(12347), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65037] = 2, + ACTIONS(12349), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65050] = 2, + ACTIONS(12351), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65063] = 2, + ACTIONS(12353), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65076] = 2, + ACTIONS(12355), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65089] = 2, + ACTIONS(12357), 1, + aux_sym_number_expression_token1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65102] = 2, + ACTIONS(12359), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65115] = 2, + ACTIONS(12361), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65128] = 2, + ACTIONS(11825), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65141] = 2, + ACTIONS(12363), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65154] = 2, + ACTIONS(10378), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65167] = 2, + ACTIONS(12365), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65180] = 3, + ACTIONS(5), 1, + sym__ifdef_endif_retain, + ACTIONS(12367), 1, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_undef_retain, + [65195] = 2, + ACTIONS(12369), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65208] = 2, + ACTIONS(9796), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65221] = 2, + ACTIONS(12371), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65234] = 2, + ACTIONS(12373), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65247] = 2, + ACTIONS(12375), 1, + anon_sym_COMMA, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65260] = 2, + ACTIONS(9864), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65273] = 2, + ACTIONS(10496), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65286] = 2, + ACTIONS(12377), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65299] = 2, ACTIONS(12379), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -622395,7 +619640,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60597] = 2, + [65312] = 2, ACTIONS(12381), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -622406,7 +619651,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60610] = 2, + [65325] = 2, + ACTIONS(9914), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65338] = 2, ACTIONS(12383), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -622417,41 +619673,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60623] = 2, + [65351] = 2, ACTIONS(12385), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60636] = 2, - ACTIONS(10536), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60649] = 2, - ACTIONS(12387), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60662] = 2, - ACTIONS(12389), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -622461,7 +619684,52 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60675] = 2, + [65364] = 2, + ACTIONS(10388), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65377] = 2, + ACTIONS(12387), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65390] = 2, + ACTIONS(10394), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65403] = 3, + ACTIONS(5), 1, + sym__ifdef_endif_retain, + ACTIONS(12389), 1, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_undef_retain, + [65418] = 2, ACTIONS(12391), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -622472,9 +619740,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60688] = 2, + [65431] = 2, ACTIONS(12393), 1, - anon_sym_SEMI, + aux_sym_available_expression_token1, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -622483,7 +619751,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60701] = 2, + [65444] = 2, ACTIONS(12395), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -622494,7 +619762,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60714] = 2, + [65457] = 2, + ACTIONS(9994), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65470] = 2, ACTIONS(12397), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -622505,19 +619784,29 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60727] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, - ACTIONS(12399), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, + [65483] = 2, + ACTIONS(9982), 1, + anon_sym_SEMI, + ACTIONS(3), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, sym__ifdef_elif_ignore, sym__ifdef_else_ignore, + sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60742] = 2, + [65496] = 2, + ACTIONS(12399), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65509] = 2, ACTIONS(12401), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -622528,30 +619817,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60755] = 2, + [65522] = 2, ACTIONS(12403), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60768] = 2, - ACTIONS(12405), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60781] = 2, - ACTIONS(8532), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -622561,19 +619828,29 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60794] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, - ACTIONS(12407), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, + [65535] = 2, + ACTIONS(12405), 1, + anon_sym_SEMI, + ACTIONS(3), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, sym__ifdef_elif_ignore, sym__ifdef_else_ignore, + sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60809] = 2, + [65548] = 2, + ACTIONS(12407), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65561] = 2, ACTIONS(12409), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -622584,7 +619861,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60822] = 2, + [65574] = 2, ACTIONS(12411), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -622595,9 +619872,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60835] = 2, + [65587] = 2, ACTIONS(12413), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -622606,7 +619883,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60848] = 2, + [65600] = 2, ACTIONS(12415), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -622617,63 +619894,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60861] = 2, - ACTIONS(12417), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60874] = 2, - ACTIONS(12419), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60887] = 2, - ACTIONS(12421), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60900] = 2, - ACTIONS(12423), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60913] = 2, - ACTIONS(12425), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60926] = 2, - ACTIONS(12427), 1, + [65613] = 2, + ACTIONS(10514), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -622683,7 +619905,95 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60939] = 2, + [65626] = 2, + ACTIONS(12417), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65639] = 2, + ACTIONS(12419), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65652] = 2, + ACTIONS(10574), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65665] = 2, + ACTIONS(12421), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65678] = 2, + ACTIONS(12423), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65691] = 2, + ACTIONS(10418), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65704] = 2, + ACTIONS(12425), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65717] = 2, + ACTIONS(12427), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65730] = 2, ACTIONS(12429), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -622694,18 +620004,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60952] = 2, + [65743] = 3, + ACTIONS(5), 1, + sym__ifdef_endif_retain, ACTIONS(12431), 1, - anon_sym_SEMI, - ACTIONS(3), 7, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, sym_comment, sym_pragma, sym__ifdef_if_retain, sym__ifdef_elif_ignore, sym__ifdef_else_ignore, - sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60965] = 2, + [65758] = 2, ACTIONS(12433), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -622716,74 +620027,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [60978] = 2, + [65771] = 2, ACTIONS(12435), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [60991] = 2, - ACTIONS(12437), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [61004] = 2, - ACTIONS(12439), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [61017] = 2, - ACTIONS(10514), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [61030] = 2, - ACTIONS(12441), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [61043] = 2, - ACTIONS(12443), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [61056] = 2, - ACTIONS(12445), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -622793,19 +620038,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61069] = 2, - ACTIONS(12447), 1, - anon_sym_RBRACE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [61082] = 2, - ACTIONS(8334), 1, + [65784] = 2, + ACTIONS(10438), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -622815,9 +620049,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61095] = 2, - ACTIONS(10506), 1, - anon_sym_RBRACK, + [65797] = 2, + ACTIONS(9912), 1, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -622826,8 +620060,52 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61108] = 2, - ACTIONS(12449), 1, + [65810] = 2, + ACTIONS(12437), 1, + sym_number_literal, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65823] = 2, + ACTIONS(12439), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65836] = 2, + ACTIONS(12441), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65849] = 2, + ACTIONS(12443), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65862] = 2, + ACTIONS(12445), 1, anon_sym_SQUOTE, ACTIONS(3), 7, sym_comment, @@ -622837,19 +620115,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61121] = 2, - ACTIONS(12451), 1, - anon_sym_LF, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [61134] = 2, - ACTIONS(12453), 1, + [65875] = 2, + ACTIONS(12447), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -622859,8 +620126,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61147] = 2, - ACTIONS(12455), 1, + [65888] = 2, + ACTIONS(12449), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -622870,8 +620137,30 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61160] = 2, - ACTIONS(10602), 1, + [65901] = 2, + ACTIONS(12451), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65914] = 2, + ACTIONS(12453), 1, + anon_sym_in, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65927] = 2, + ACTIONS(10516), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -622881,7 +620170,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61173] = 2, + [65940] = 2, + ACTIONS(12455), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65953] = 2, ACTIONS(12457), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -622892,7 +620192,40 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61186] = 2, + [65966] = 2, + ACTIONS(10064), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65979] = 2, + ACTIONS(9728), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [65992] = 2, + ACTIONS(10526), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [66005] = 2, ACTIONS(12459), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -622903,9 +620236,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61199] = 2, + [66018] = 2, ACTIONS(12461), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -622914,10 +620247,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61212] = 2, + [66031] = 2, ACTIONS(12463), 1, - anon_sym_LF, - ACTIONS(5), 7, + anon_sym_LPAREN2, + ACTIONS(3), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, @@ -622925,8 +620258,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61225] = 2, + [66044] = 2, ACTIONS(12465), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [66057] = 2, + ACTIONS(10472), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -622936,9 +620280,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61238] = 2, + [66070] = 2, ACTIONS(12467), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -622947,7 +620291,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61251] = 2, + [66083] = 2, ACTIONS(12469), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -622958,9 +620302,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61264] = 2, + [66096] = 2, ACTIONS(12471), 1, - anon_sym_RPAREN, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -622969,7 +620313,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61277] = 2, + [66109] = 2, ACTIONS(12473), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -622980,7 +620324,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61290] = 3, + [66122] = 3, ACTIONS(5), 1, sym__ifdef_endif_retain, ACTIONS(12475), 1, @@ -622992,7 +620336,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_elif_ignore, sym__ifdef_else_ignore, sym__ifdef_undef_retain, - [61305] = 2, + [66137] = 2, + ACTIONS(9688), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [66150] = 2, ACTIONS(12477), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -623003,7 +620358,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61318] = 2, + [66163] = 2, ACTIONS(12479), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -623014,9 +620369,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61331] = 2, + [66176] = 2, ACTIONS(12481), 1, - anon_sym_LPAREN2, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -623025,9 +620380,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61344] = 2, + [66189] = 2, ACTIONS(12483), 1, - ts_builtin_sym_end, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -623036,9 +620391,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61357] = 2, + [66202] = 2, ACTIONS(12485), 1, - anon_sym_RPAREN, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -623047,10 +620402,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61370] = 2, + [66215] = 2, ACTIONS(12487), 1, - anon_sym_LF, - ACTIONS(5), 7, + anon_sym_SEMI, + ACTIONS(3), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, @@ -623058,7 +620413,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61383] = 2, + [66228] = 2, ACTIONS(12489), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -623069,8 +620424,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61396] = 2, + [66241] = 2, ACTIONS(12491), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [66254] = 2, + ACTIONS(12493), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -623080,31 +620446,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61409] = 2, - ACTIONS(12493), 1, - anon_sym_LF, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [61422] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, + [66267] = 2, ACTIONS(12495), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_undef_retain, - [61437] = 2, - ACTIONS(12497), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -623114,7 +620457,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61450] = 2, + [66280] = 2, + ACTIONS(12497), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [66293] = 2, ACTIONS(12499), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -623125,10 +620479,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61463] = 2, + [66306] = 2, ACTIONS(12501), 1, - anon_sym_LF, - ACTIONS(5), 7, + anon_sym_SEMI, + ACTIONS(3), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, @@ -623136,9 +620490,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61476] = 2, + [66319] = 2, ACTIONS(12503), 1, - anon_sym_RPAREN, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -623147,9 +620501,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61489] = 2, + [66332] = 2, ACTIONS(12505), 1, - anon_sym_RPAREN, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -623158,19 +620512,40 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61502] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, + [66345] = 2, ACTIONS(12507), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, + anon_sym_SEMI, + ACTIONS(3), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, sym__ifdef_elif_ignore, sym__ifdef_else_ignore, + sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61517] = 2, + [66358] = 2, + ACTIONS(9850), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [66371] = 2, + ACTIONS(11707), 1, + anon_sym_RBRACE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [66384] = 2, ACTIONS(12509), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -623181,19 +620556,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61530] = 2, + [66397] = 2, ACTIONS(12511), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [61543] = 2, - ACTIONS(8358), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -623203,7 +620567,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61556] = 2, + [66410] = 2, ACTIONS(12513), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -623214,9 +620578,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61569] = 2, + [66423] = 2, ACTIONS(12515), 1, - anon_sym_RPAREN, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -623225,7 +620589,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61582] = 2, + [66436] = 2, ACTIONS(12517), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -623236,30 +620600,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61595] = 2, + [66449] = 2, ACTIONS(12519), 1, - anon_sym_LF, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [61608] = 2, - ACTIONS(11678), 1, - anon_sym_LF, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [61621] = 2, - ACTIONS(12521), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -623269,10 +620611,21 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61634] = 2, + [66462] = 2, + ACTIONS(12521), 1, + anon_sym_RBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [66475] = 2, ACTIONS(12523), 1, - anon_sym_LF, - ACTIONS(5), 7, + anon_sym_SEMI, + ACTIONS(3), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, @@ -623280,19 +620633,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61647] = 2, + [66488] = 2, ACTIONS(12525), 1, - anon_sym_LF, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [61660] = 2, - ACTIONS(12527), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -623302,8 +620644,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61673] = 2, - ACTIONS(12529), 1, + [66501] = 2, + ACTIONS(12527), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -623313,7 +620655,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61686] = 2, + [66514] = 2, + ACTIONS(12529), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [66527] = 2, ACTIONS(12531), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -623324,9 +620677,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61699] = 2, + [66540] = 2, ACTIONS(12533), 1, - sym_identifier, + anon_sym_STAR, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -623335,18 +620688,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61712] = 2, - ACTIONS(8626), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [61725] = 2, + [66553] = 2, ACTIONS(12535), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -623357,7 +620699,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61738] = 2, + [66566] = 2, ACTIONS(12537), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -623368,7 +620710,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61751] = 2, + [66579] = 2, ACTIONS(12539), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -623379,8 +620721,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61764] = 2, - ACTIONS(12541), 1, + [66592] = 2, + ACTIONS(1686), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [66605] = 2, + ACTIONS(10361), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -623390,9 +620743,31 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61777] = 2, + [66618] = 2, + ACTIONS(1682), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [66631] = 2, + ACTIONS(12541), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [66644] = 2, ACTIONS(12543), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -623401,9 +620776,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61790] = 2, + [66657] = 2, ACTIONS(12545), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -623412,9 +620787,21 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61803] = 2, + [66670] = 3, + ACTIONS(5), 1, + sym__ifdef_endif_retain, ACTIONS(12547), 1, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_undef_retain, + [66685] = 2, + ACTIONS(12549), 1, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -623423,8 +620810,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61816] = 2, - ACTIONS(12549), 1, + [66698] = 2, + ACTIONS(12551), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -623434,21 +620821,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61829] = 2, - ACTIONS(12551), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [61842] = 2, + [66711] = 2, ACTIONS(12553), 1, - sym_identifier, - ACTIONS(3), 7, + anon_sym_LF, + ACTIONS(5), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, @@ -623456,7 +620832,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61855] = 2, + [66724] = 2, ACTIONS(12555), 1, sym_identifier, ACTIONS(3), 7, @@ -623467,7 +620843,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61868] = 2, + [66737] = 2, ACTIONS(12557), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -623478,9 +620854,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61881] = 2, - ACTIONS(11615), 1, - anon_sym_LPAREN2, + [66750] = 2, + ACTIONS(12559), 1, + anon_sym_COLON, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -623489,10 +620865,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61894] = 3, + [66763] = 3, ACTIONS(5), 1, sym__ifdef_endif_retain, - ACTIONS(12559), 1, + ACTIONS(12561), 1, aux_sym_preproc_if_token2, ACTIONS(3), 6, sym_comment, @@ -623501,18 +620877,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_elif_ignore, sym__ifdef_else_ignore, sym__ifdef_undef_retain, - [61909] = 2, - ACTIONS(12561), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [61922] = 3, + [66778] = 3, ACTIONS(5), 1, sym__ifdef_endif_retain, ACTIONS(12563), 1, @@ -623524,10 +620889,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_elif_ignore, sym__ifdef_else_ignore, sym__ifdef_undef_retain, - [61937] = 2, + [66793] = 2, ACTIONS(12565), 1, - sym_identifier, - ACTIONS(3), 7, + anon_sym_LF, + ACTIONS(5), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, @@ -623535,7 +620900,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61950] = 2, + [66806] = 2, ACTIONS(12567), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -623546,9 +620911,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61963] = 2, + [66819] = 2, ACTIONS(12569), 1, - anon_sym_RPAREN, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -623557,7 +620922,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61976] = 2, + [66832] = 2, ACTIONS(12571), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -623568,53 +620933,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [61989] = 2, + [66845] = 2, ACTIONS(12573), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62002] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, - ACTIONS(12575), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_undef_retain, - [62017] = 2, - ACTIONS(12577), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62030] = 2, - ACTIONS(12579), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62043] = 2, - ACTIONS(12581), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -623624,53 +620944,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62056] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, - ACTIONS(12583), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_undef_retain, - [62071] = 2, - ACTIONS(12585), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62084] = 2, - ACTIONS(12587), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62097] = 2, - ACTIONS(12589), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62110] = 2, - ACTIONS(10428), 1, + [66858] = 2, + ACTIONS(11728), 1, anon_sym_RBRACE, ACTIONS(3), 7, sym_comment, @@ -623680,8 +620955,64 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62123] = 2, - ACTIONS(8366), 1, + [66871] = 2, + ACTIONS(12575), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [66884] = 2, + ACTIONS(12577), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [66897] = 3, + ACTIONS(5), 1, + sym__ifdef_endif_retain, + ACTIONS(12579), 1, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_undef_retain, + [66912] = 2, + ACTIONS(12581), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [66925] = 2, + ACTIONS(12583), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [66938] = 2, + ACTIONS(10560), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -623691,7 +621022,73 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62136] = 2, + [66951] = 2, + ACTIONS(12585), 1, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [66964] = 2, + ACTIONS(12587), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [66977] = 2, + ACTIONS(10550), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [66990] = 2, + ACTIONS(11720), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67003] = 2, + ACTIONS(10518), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67016] = 2, + ACTIONS(12589), 1, + sym_module_string, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67029] = 2, ACTIONS(12591), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -623702,7 +621099,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62149] = 2, + [67042] = 2, ACTIONS(12593), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -623713,31 +621110,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62162] = 2, - ACTIONS(10556), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62175] = 2, - ACTIONS(10592), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62188] = 2, + [67055] = 2, ACTIONS(12595), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -623746,7 +621121,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62201] = 2, + [67068] = 2, ACTIONS(12597), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -623757,9 +621132,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62214] = 2, + [67081] = 2, + ACTIONS(10371), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67094] = 2, ACTIONS(12599), 1, - anon_sym_STAR, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -623768,18 +621154,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62227] = 2, - ACTIONS(10600), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62240] = 2, + [67107] = 2, ACTIONS(12601), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -623790,9 +621165,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62253] = 2, + [67120] = 2, ACTIONS(12603), 1, - anon_sym_RPAREN, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -623801,108 +621176,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62266] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, + [67133] = 2, ACTIONS(12605), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_undef_retain, - [62281] = 2, - ACTIONS(12607), 1, - aux_sym_number_expression_token1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62294] = 2, - ACTIONS(10586), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62307] = 2, - ACTIONS(9794), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62320] = 2, - ACTIONS(12609), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62333] = 2, - ACTIONS(10567), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62346] = 2, - ACTIONS(12611), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62359] = 2, - ACTIONS(12613), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62372] = 2, - ACTIONS(12615), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62385] = 2, - ACTIONS(12617), 1, sym_identifier, ACTIONS(3), 7, sym_comment, @@ -623912,9 +621187,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62398] = 2, - ACTIONS(12619), 1, - anon_sym_RPAREN, + [67146] = 2, + ACTIONS(12607), 1, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -623923,8 +621198,30 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62411] = 2, - ACTIONS(12621), 1, + [67159] = 2, + ACTIONS(12609), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67172] = 2, + ACTIONS(12611), 1, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67185] = 2, + ACTIONS(12613), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -623934,9 +621231,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62424] = 2, - ACTIONS(10574), 1, - anon_sym_RPAREN, + [67198] = 2, + ACTIONS(12615), 1, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -623945,7 +621242,73 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62437] = 2, + [67211] = 2, + ACTIONS(10386), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67224] = 2, + ACTIONS(12617), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67237] = 2, + ACTIONS(10398), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67250] = 2, + ACTIONS(12619), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67263] = 2, + ACTIONS(12621), 1, + sym_module_string, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67276] = 2, + ACTIONS(10566), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67289] = 2, ACTIONS(12623), 1, sym_identifier, ACTIONS(3), 7, @@ -623956,9 +621319,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62450] = 2, + [67302] = 2, + ACTIONS(11644), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67315] = 2, ACTIONS(12625), 1, - sym_identifier, + anon_sym_typedef, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -623967,19 +621341,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62463] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, + [67328] = 2, ACTIONS(12627), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, + anon_sym_RPAREN, + ACTIONS(3), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, sym__ifdef_elif_ignore, sym__ifdef_else_ignore, + sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62478] = 2, + [67341] = 2, ACTIONS(12629), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -623990,8 +621363,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62491] = 2, - ACTIONS(10558), 1, + [67354] = 2, + ACTIONS(12631), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -624001,19 +621374,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62504] = 2, - ACTIONS(12631), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62517] = 2, + [67367] = 2, ACTIONS(12633), 1, + anon_sym_STAR, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67380] = 2, + ACTIONS(10586), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -624023,7 +621396,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62530] = 2, + [67393] = 2, ACTIONS(12635), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -624034,8 +621407,41 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62543] = 2, + [67406] = 2, ACTIONS(12637), 1, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67419] = 2, + ACTIONS(12639), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67432] = 2, + ACTIONS(12641), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67445] = 2, + ACTIONS(10576), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -624045,8 +621451,52 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62556] = 2, - ACTIONS(12639), 1, + [67458] = 2, + ACTIONS(12643), 1, + anon_sym_STAR, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67471] = 2, + ACTIONS(12645), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67484] = 2, + ACTIONS(12647), 1, + aux_sym_number_expression_token1, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67497] = 2, + ACTIONS(12649), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67510] = 2, + ACTIONS(12651), 1, anon_sym_LF, ACTIONS(5), 7, sym_comment, @@ -624056,32 +621506,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62569] = 2, - ACTIONS(12641), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62582] = 2, - ACTIONS(12643), 1, - aux_sym_available_expression_token1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62595] = 3, + [67523] = 3, ACTIONS(5), 1, sym__ifdef_endif_retain, - ACTIONS(12645), 1, + ACTIONS(12653), 1, aux_sym_preproc_if_token2, ACTIONS(3), 6, sym_comment, @@ -624090,62 +621518,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_elif_ignore, sym__ifdef_else_ignore, sym__ifdef_undef_retain, - [62610] = 2, - ACTIONS(12647), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62623] = 2, - ACTIONS(12649), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62636] = 2, - ACTIONS(12651), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62649] = 2, - ACTIONS(12653), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62662] = 2, - ACTIONS(8410), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62675] = 2, + [67538] = 2, ACTIONS(12655), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -624156,7 +621529,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62688] = 2, + [67551] = 2, ACTIONS(12657), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -624167,7 +621540,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62701] = 2, + [67564] = 2, ACTIONS(12659), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -624178,9 +621551,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62714] = 2, + [67577] = 2, ACTIONS(12661), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -624189,86 +621562,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62727] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, + [67590] = 2, ACTIONS(12663), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_undef_retain, - [62742] = 2, - ACTIONS(12665), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62755] = 2, - ACTIONS(12667), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62768] = 2, - ACTIONS(12669), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62781] = 2, - ACTIONS(12671), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62794] = 2, - ACTIONS(12673), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62807] = 2, - ACTIONS(12675), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [62820] = 2, - ACTIONS(12677), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -624278,8 +621573,30 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62833] = 2, - ACTIONS(12679), 1, + [67603] = 2, + ACTIONS(12665), 1, + sym_number_literal, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67616] = 2, + ACTIONS(12667), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67629] = 2, + ACTIONS(12669), 1, sym_identifier, ACTIONS(3), 7, sym_comment, @@ -624289,9 +621606,86 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62846] = 2, + [67642] = 2, + ACTIONS(11626), 1, + anon_sym_RBRACE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67655] = 2, + ACTIONS(10578), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67668] = 2, + ACTIONS(12671), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67681] = 2, + ACTIONS(12673), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67694] = 2, + ACTIONS(12675), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67707] = 2, + ACTIONS(12677), 1, + sym_number_literal, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67720] = 2, + ACTIONS(12679), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67733] = 2, ACTIONS(12681), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -624300,9 +621694,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62859] = 2, + [67746] = 2, ACTIONS(12683), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -624311,9 +621705,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62872] = 2, + [67759] = 2, ACTIONS(12685), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -624322,7 +621716,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62885] = 2, + [67772] = 2, ACTIONS(12687), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -624333,9 +621727,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62898] = 2, + [67785] = 2, ACTIONS(12689), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -624344,7 +621738,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62911] = 2, + [67798] = 2, ACTIONS(12691), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -624355,9 +621749,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62924] = 2, - ACTIONS(12693), 1, - sym_number_literal, + [67811] = 2, + ACTIONS(10444), 1, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -624366,7 +621760,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62937] = 2, + [67824] = 3, + ACTIONS(5), 1, + sym__ifdef_endif_retain, + ACTIONS(12693), 1, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_undef_retain, + [67839] = 2, ACTIONS(12695), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -624377,9 +621783,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62950] = 2, + [67852] = 2, ACTIONS(12697), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -624388,9 +621794,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62963] = 2, + [67865] = 2, ACTIONS(12699), 1, - anon_sym_SQUOTE, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -624399,9 +621805,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62976] = 2, + [67878] = 2, ACTIONS(12701), 1, - anon_sym_SEMI, + anon_sym_RBRACE, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -624410,7 +621816,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [62989] = 2, + [67891] = 2, ACTIONS(12703), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -624421,41 +621827,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63002] = 2, + [67904] = 2, ACTIONS(12705), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63015] = 2, - ACTIONS(12707), 1, - aux_sym_available_expression_token1, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63028] = 2, - ACTIONS(12709), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63041] = 2, - ACTIONS(12711), 1, sym_identifier, ACTIONS(3), 7, sym_comment, @@ -624465,7 +621838,51 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63054] = 2, + [67917] = 2, + ACTIONS(10502), 1, + anon_sym_RBRACK, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67930] = 2, + ACTIONS(12707), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67943] = 2, + ACTIONS(12709), 1, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67956] = 2, + ACTIONS(12711), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67969] = 2, ACTIONS(12713), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -624476,8 +621893,52 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63067] = 2, - ACTIONS(10020), 1, + [67982] = 2, + ACTIONS(12715), 1, + anon_sym_LF, + ACTIONS(5), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [67995] = 2, + ACTIONS(12717), 1, + anon_sym_SQUOTE, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68008] = 2, + ACTIONS(12719), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68021] = 2, + ACTIONS(10558), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68034] = 2, + ACTIONS(12721), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -624487,51 +621948,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63080] = 2, - ACTIONS(12715), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63093] = 2, - ACTIONS(12717), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63106] = 2, - ACTIONS(12719), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63119] = 2, - ACTIONS(12721), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63132] = 2, + [68047] = 2, ACTIONS(12723), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -624542,42 +621959,33 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63145] = 2, + [68060] = 3, + ACTIONS(5), 1, + sym__ifdef_endif_retain, ACTIONS(12725), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, sym_comment, sym_pragma, sym__ifdef_if_retain, sym__ifdef_elif_ignore, sym__ifdef_else_ignore, - sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63158] = 2, - ACTIONS(8446), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, + [68075] = 3, + ACTIONS(5), 1, sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63171] = 2, ACTIONS(12727), 1, - anon_sym_SEMI, - ACTIONS(3), 7, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, sym_comment, sym_pragma, sym__ifdef_if_retain, sym__ifdef_elif_ignore, sym__ifdef_else_ignore, - sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63184] = 2, + [68090] = 2, ACTIONS(12729), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -624586,19 +621994,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63197] = 2, - ACTIONS(7899), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63210] = 2, + [68103] = 2, ACTIONS(12731), 1, + anon_sym_while, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68116] = 2, + ACTIONS(10490), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -624608,10 +622016,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63223] = 2, + [68129] = 2, ACTIONS(12733), 1, - anon_sym_SEMI, - ACTIONS(3), 7, + anon_sym_LF, + ACTIONS(5), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, @@ -624619,7 +622027,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63236] = 2, + [68142] = 2, ACTIONS(12735), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -624630,32 +622038,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63249] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, + [68155] = 2, ACTIONS(12737), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, + sym_identifier, + ACTIONS(3), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, sym__ifdef_elif_ignore, sym__ifdef_else_ignore, - sym__ifdef_undef_retain, - [63264] = 3, - ACTIONS(5), 1, sym__ifdef_endif_retain, - ACTIONS(12739), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, sym__ifdef_undef_retain, - [63279] = 2, - ACTIONS(12741), 1, + [68168] = 2, + ACTIONS(12739), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -624665,7 +622060,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63292] = 2, + [68181] = 2, + ACTIONS(12741), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68194] = 2, ACTIONS(12743), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -624676,9 +622082,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63305] = 2, + [68207] = 2, ACTIONS(12745), 1, - anon_sym_RPAREN, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -624687,9 +622093,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63318] = 2, + [68220] = 2, ACTIONS(12747), 1, - anon_sym_RPAREN, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -624698,9 +622104,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63331] = 2, + [68233] = 2, ACTIONS(12749), 1, - anon_sym_RPAREN, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -624709,40 +622115,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63344] = 2, - ACTIONS(10550), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63357] = 2, - ACTIONS(10548), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63370] = 2, - ACTIONS(10546), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63383] = 2, + [68246] = 2, ACTIONS(12751), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -624753,9 +622126,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63396] = 2, + [68259] = 2, ACTIONS(12753), 1, - anon_sym_STAR, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -624764,9 +622137,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63409] = 2, + [68272] = 2, ACTIONS(12755), 1, - anon_sym_RPAREN, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -624775,9 +622148,21 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63422] = 2, + [68285] = 3, + ACTIONS(5), 1, + sym__ifdef_endif_retain, ACTIONS(12757), 1, - sym_identifier, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_undef_retain, + [68300] = 2, + ACTIONS(10494), 1, + anon_sym_RBRACE, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -624786,7 +622171,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63435] = 2, + [68313] = 2, ACTIONS(12759), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -624797,8 +622182,30 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63448] = 2, + [68326] = 2, + ACTIONS(7845), 1, + anon_sym_LPAREN2, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68339] = 2, ACTIONS(12761), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68352] = 2, + ACTIONS(10486), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -624808,7 +622215,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63461] = 2, + [68365] = 2, ACTIONS(12763), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -624819,9 +622226,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63474] = 2, + [68378] = 2, + ACTIONS(10478), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68391] = 2, ACTIONS(12765), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -624830,9 +622248,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63487] = 2, + [68404] = 2, ACTIONS(12767), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -624841,7 +622259,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63500] = 2, + [68417] = 2, + ACTIONS(10528), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68430] = 2, ACTIONS(12769), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -624852,19 +622281,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63513] = 2, + [68443] = 2, ACTIONS(12771), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63526] = 2, - ACTIONS(12773), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -624874,9 +622292,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63539] = 2, - ACTIONS(12775), 1, - anon_sym_SEMI, + [68456] = 2, + ACTIONS(12773), 1, + sym_number_literal, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -624885,10 +622303,54 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63552] = 3, + [68469] = 2, + ACTIONS(12775), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68482] = 2, + ACTIONS(11406), 1, + anon_sym_LPAREN2, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68495] = 2, + ACTIONS(10522), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68508] = 2, + ACTIONS(12777), 1, + anon_sym_LPAREN2, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68521] = 3, ACTIONS(5), 1, sym__ifdef_endif_retain, - ACTIONS(12777), 1, + ACTIONS(12779), 1, aux_sym_preproc_if_token2, ACTIONS(3), 6, sym_comment, @@ -624897,8 +622359,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_elif_ignore, sym__ifdef_else_ignore, sym__ifdef_undef_retain, - [63567] = 2, - ACTIONS(12779), 1, + [68536] = 2, + ACTIONS(10458), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -624908,8 +622370,52 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63580] = 2, + [68549] = 2, ACTIONS(12781), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68562] = 2, + ACTIONS(12783), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68575] = 2, + ACTIONS(12785), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68588] = 2, + ACTIONS(12787), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68601] = 2, + ACTIONS(11437), 1, anon_sym_LF, ACTIONS(5), 7, sym_comment, @@ -624919,30 +622425,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63593] = 2, - ACTIONS(12783), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63606] = 2, - ACTIONS(12785), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63619] = 2, - ACTIONS(12787), 1, + [68614] = 2, + ACTIONS(10363), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -624952,18 +622436,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63632] = 2, - ACTIONS(10584), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63645] = 2, + [68627] = 2, ACTIONS(12789), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -624974,7 +622447,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63658] = 2, + [68640] = 2, ACTIONS(12791), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -624985,8 +622458,30 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63671] = 2, + [68653] = 2, ACTIONS(12793), 1, + ts_builtin_sym_end, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68666] = 2, + ACTIONS(12795), 1, + anon_sym_LPAREN2, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68679] = 2, + ACTIONS(12797), 1, sym_identifier, ACTIONS(3), 7, sym_comment, @@ -624996,75 +622491,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63684] = 2, - ACTIONS(12795), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63697] = 2, - ACTIONS(12797), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63710] = 2, - ACTIONS(12799), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63723] = 2, - ACTIONS(12801), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63736] = 2, - ACTIONS(8556), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63749] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, - ACTIONS(12803), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_undef_retain, - [63764] = 2, - ACTIONS(10598), 1, + [68692] = 2, + ACTIONS(10588), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -625074,9 +622502,53 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63777] = 2, + [68705] = 2, + ACTIONS(10590), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68718] = 2, + ACTIONS(12799), 1, + anon_sym_LPAREN2, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68731] = 2, + ACTIONS(12801), 1, + sym_number_literal, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68744] = 2, + ACTIONS(12803), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68757] = 2, ACTIONS(12805), 1, - aux_sym_number_expression_token1, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625085,42 +622557,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63790] = 2, - ACTIONS(9952), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63803] = 2, - ACTIONS(10596), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63816] = 2, - ACTIONS(9840), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63829] = 2, + [68770] = 2, ACTIONS(12807), 1, - anon_sym_SEMI, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625129,9 +622568,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63842] = 2, + [68783] = 2, ACTIONS(12809), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625140,7 +622579,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63855] = 2, + [68796] = 2, ACTIONS(12811), 1, sym_identifier, ACTIONS(3), 7, @@ -625151,31 +622590,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63868] = 2, + [68809] = 2, ACTIONS(12813), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63881] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, - ACTIONS(12815), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_undef_retain, - [63896] = 2, - ACTIONS(12817), 1, anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, @@ -625185,32 +622601,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63909] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, - ACTIONS(12819), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_undef_retain, - [63924] = 2, - ACTIONS(12821), 1, - anon_sym_LF, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63937] = 2, - ACTIONS(12823), 1, - anon_sym_typedef, + [68822] = 2, + ACTIONS(12815), 1, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625219,63 +622612,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [63950] = 2, - ACTIONS(8618), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63963] = 2, - ACTIONS(12825), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63976] = 2, - ACTIONS(2024), 1, - anon_sym_LF, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [63989] = 2, - ACTIONS(12827), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [64002] = 2, - ACTIONS(12829), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [64015] = 2, - ACTIONS(10512), 1, + [68835] = 2, + ACTIONS(12817), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -625285,9 +622623,75 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64028] = 2, + [68848] = 2, + ACTIONS(12819), 1, + anon_sym_LPAREN2, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68861] = 2, + ACTIONS(12821), 1, + anon_sym_LPAREN2, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68874] = 2, + ACTIONS(12823), 1, + anon_sym_LPAREN2, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68887] = 2, + ACTIONS(12825), 1, + sym_identifier, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68900] = 2, + ACTIONS(12827), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68913] = 2, + ACTIONS(12829), 1, + anon_sym_LPAREN2, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [68926] = 2, ACTIONS(12831), 1, - sym_identifier, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625296,9 +622700,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64041] = 2, + [68939] = 2, ACTIONS(12833), 1, - sym_identifier, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625307,9 +622711,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64054] = 2, + [68952] = 2, ACTIONS(12835), 1, - sym_number_literal, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625318,9 +622722,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64067] = 2, + [68965] = 2, ACTIONS(12837), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625329,9 +622733,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64080] = 2, + [68978] = 2, ACTIONS(12839), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625340,9 +622744,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64093] = 2, + [68991] = 2, ACTIONS(12841), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625351,7 +622755,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64106] = 2, + [69004] = 2, ACTIONS(12843), 1, anon_sym_RPAREN, ACTIONS(3), 7, @@ -625362,9 +622766,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64119] = 2, + [69017] = 2, ACTIONS(12845), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625373,7 +622777,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64132] = 2, + [69030] = 2, ACTIONS(12847), 1, anon_sym_LPAREN2, ACTIONS(3), 7, @@ -625384,9 +622788,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64145] = 2, + [69043] = 2, ACTIONS(12849), 1, - sym_identifier, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625395,9 +622799,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64158] = 2, + [69056] = 2, + ACTIONS(9201), 1, + anon_sym_LPAREN2, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [69069] = 2, ACTIONS(12851), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625406,9 +622821,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64171] = 2, + [69082] = 2, ACTIONS(12853), 1, - anon_sym_SEMI, + anon_sym_while, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625417,9 +622832,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64184] = 2, + [69095] = 2, ACTIONS(12855), 1, - anon_sym_COLON, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625428,10 +622843,10 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64197] = 2, - ACTIONS(2032), 1, - anon_sym_LF, - ACTIONS(5), 7, + [69108] = 2, + ACTIONS(12857), 1, + anon_sym_LPAREN2, + ACTIONS(3), 7, sym_comment, sym_pragma, sym__ifdef_if_retain, @@ -625439,8 +622854,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64210] = 2, - ACTIONS(12857), 1, + [69121] = 2, + ACTIONS(12859), 1, anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, @@ -625450,42 +622865,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64223] = 2, - ACTIONS(11811), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [64236] = 2, - ACTIONS(8646), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [64249] = 2, - ACTIONS(12859), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [64262] = 2, + [69134] = 2, ACTIONS(12861), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625494,9 +622876,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64275] = 2, + [69147] = 2, ACTIONS(12863), 1, - sym_identifier, + anon_sym_STAR, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625505,9 +622887,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64288] = 2, + [69160] = 2, ACTIONS(12865), 1, - sym_identifier, + anon_sym_typedef, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625516,7 +622898,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64301] = 2, + [69173] = 2, ACTIONS(12867), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -625527,7 +622909,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64314] = 2, + [69186] = 2, ACTIONS(12869), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -625538,7 +622920,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64327] = 2, + [69199] = 2, ACTIONS(12871), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -625549,9 +622931,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64340] = 2, + [69212] = 2, ACTIONS(12873), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625560,9 +622942,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64353] = 2, + [69225] = 2, ACTIONS(12875), 1, - anon_sym_RPAREN, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625571,7 +622953,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64366] = 2, + [69238] = 2, ACTIONS(12877), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -625582,9 +622964,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64379] = 2, + [69251] = 2, + ACTIONS(10572), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [69264] = 2, ACTIONS(12879), 1, - anon_sym_while, + anon_sym_in, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625593,9 +622986,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64392] = 2, + [69277] = 2, ACTIONS(12881), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625604,20 +622997,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64405] = 2, - ACTIONS(10554), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [64418] = 2, + [69290] = 2, ACTIONS(12883), 1, - anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625626,9 +623008,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64431] = 2, + [69303] = 2, ACTIONS(12885), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625637,9 +623019,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64444] = 2, + [69316] = 2, ACTIONS(12887), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625648,9 +623030,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64457] = 2, + [69329] = 2, ACTIONS(12889), 1, - sym_number_literal, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625659,9 +623041,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64470] = 2, + [69342] = 2, ACTIONS(12891), 1, - anon_sym_RPAREN, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625670,9 +623052,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64483] = 2, + [69355] = 2, ACTIONS(12893), 1, - anon_sym_SEMI, + sym_module_string, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625681,9 +623063,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64496] = 2, + [69368] = 2, ACTIONS(12895), 1, - anon_sym_SEMI, + anon_sym_CARET, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625692,9 +623074,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64509] = 2, + [69381] = 2, ACTIONS(12897), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625703,7 +623085,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64522] = 2, + [69394] = 2, ACTIONS(12899), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -625714,18 +623096,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64535] = 2, - ACTIONS(8474), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [64548] = 2, + [69407] = 2, ACTIONS(12901), 1, sym_identifier, ACTIONS(3), 7, @@ -625736,7 +623107,18 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64561] = 2, + [69420] = 2, + ACTIONS(10396), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [69433] = 2, ACTIONS(12903), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -625747,9 +623129,20 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64574] = 2, + [69446] = 2, + ACTIONS(10390), 1, + anon_sym_SEMI, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [69459] = 2, ACTIONS(12905), 1, - anon_sym_RPAREN, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625758,9 +623151,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64587] = 2, + [69472] = 2, ACTIONS(12907), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625769,9 +623162,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64600] = 2, + [69485] = 2, ACTIONS(12909), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625780,9 +623173,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64613] = 2, + [69498] = 2, ACTIONS(12911), 1, - anon_sym_RPAREN, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625791,9 +623184,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64626] = 2, + [69511] = 2, ACTIONS(12913), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625802,9 +623195,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64639] = 2, + [69524] = 2, ACTIONS(12915), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625813,7 +623206,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64652] = 2, + [69537] = 2, ACTIONS(12917), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -625824,20 +623217,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64665] = 2, - ACTIONS(9718), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [64678] = 2, + [69550] = 2, ACTIONS(12919), 1, - anon_sym_RPAREN, + anon_sym_SEMI, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625846,9 +623228,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64691] = 2, + [69563] = 2, ACTIONS(12921), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625857,63 +623239,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64704] = 2, + [69576] = 2, ACTIONS(12923), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [64717] = 2, - ACTIONS(12925), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [64730] = 2, - ACTIONS(11632), 1, - anon_sym_RBRACE, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [64743] = 2, - ACTIONS(12927), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [64756] = 2, - ACTIONS(12929), 1, - anon_sym_RPAREN, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [64769] = 2, - ACTIONS(12931), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -625923,7 +623250,51 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64782] = 3, + [69589] = 2, + ACTIONS(12925), 1, + anon_sym_LPAREN2, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [69602] = 2, + ACTIONS(12927), 1, + anon_sym_LPAREN2, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [69615] = 2, + ACTIONS(12929), 1, + anon_sym_while, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [69628] = 2, + ACTIONS(12931), 1, + anon_sym_COLON, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [69641] = 3, ACTIONS(5), 1, sym__ifdef_endif_retain, ACTIONS(12933), 1, @@ -625935,31 +623306,21 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_elif_ignore, sym__ifdef_else_ignore, sym__ifdef_undef_retain, - [64797] = 2, + [69656] = 3, + ACTIONS(5), 1, + sym__ifdef_endif_retain, ACTIONS(12935), 1, - anon_sym_LF, - ACTIONS(5), 7, + aux_sym_preproc_if_token2, + ACTIONS(3), 6, sym_comment, sym_pragma, sym__ifdef_if_retain, sym__ifdef_elif_ignore, sym__ifdef_else_ignore, - sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64810] = 2, - ACTIONS(10588), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [64823] = 2, + [69671] = 2, ACTIONS(12937), 1, - anon_sym_SQUOTE, + anon_sym_STAR, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625968,9 +623329,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64836] = 2, + [69684] = 2, ACTIONS(12939), 1, - sym_identifier, + anon_sym_typedef, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -625979,7 +623340,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64849] = 2, + [69697] = 2, ACTIONS(12941), 1, anon_sym_SEMI, ACTIONS(3), 7, @@ -625990,9 +623351,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64862] = 2, + [69710] = 2, ACTIONS(12943), 1, - anon_sym_SQUOTE, + anon_sym_RPAREN, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626001,9 +623362,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64875] = 2, + [69723] = 2, ACTIONS(12945), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626012,8 +623373,30 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64888] = 2, + [69736] = 2, ACTIONS(12947), 1, + anon_sym_LPAREN2, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [69749] = 2, + ACTIONS(10562), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [69762] = 2, + ACTIONS(10530), 1, anon_sym_SEMI, ACTIONS(3), 7, sym_comment, @@ -626023,9 +623406,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64901] = 2, + [69775] = 2, ACTIONS(12949), 1, - anon_sym_SEMI, + anon_sym_in, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626034,9 +623417,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64914] = 2, + [69788] = 2, ACTIONS(12951), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626045,9 +623428,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64927] = 2, + [69801] = 2, ACTIONS(12953), 1, - anon_sym_SEMI, + anon_sym_COMMA, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626056,9 +623439,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64940] = 2, + [69814] = 2, ACTIONS(12955), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626067,9 +623450,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64953] = 2, + [69827] = 2, ACTIONS(12957), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626078,9 +623461,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64966] = 2, + [69840] = 2, ACTIONS(12959), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626089,9 +623472,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64979] = 2, + [69853] = 2, ACTIONS(12961), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626100,21 +623483,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [64992] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, + [69866] = 2, ACTIONS(12963), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_undef_retain, - [65007] = 2, - ACTIONS(10590), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626123,20 +623494,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65020] = 2, - ACTIONS(11437), 1, - anon_sym_LF, - ACTIONS(5), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65033] = 2, + [69879] = 2, ACTIONS(12965), 1, - sym_identifier, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626145,9 +623505,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65046] = 2, + [69892] = 2, ACTIONS(12967), 1, - sym_number_literal, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626156,31 +623516,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65059] = 2, - ACTIONS(10604), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65072] = 2, - ACTIONS(9774), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65085] = 2, + [69905] = 2, ACTIONS(12969), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626189,9 +623527,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65098] = 2, + [69918] = 2, ACTIONS(12971), 1, - sym_identifier, + anon_sym_typedef, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626200,9 +623538,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65111] = 2, + [69931] = 2, ACTIONS(12973), 1, - sym_module_string, + anon_sym_COMMA, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626211,9 +623549,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65124] = 2, + [69944] = 2, ACTIONS(12975), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626222,20 +623560,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65137] = 2, - ACTIONS(9854), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65150] = 2, + [69957] = 2, ACTIONS(12977), 1, - sym_identifier, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626244,9 +623571,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65163] = 2, + [69970] = 2, ACTIONS(12979), 1, - sym_number_literal, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626255,9 +623582,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65176] = 2, + [69983] = 2, ACTIONS(12981), 1, - sym_identifier, + anon_sym_COMMA, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626266,9 +623593,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65189] = 2, + [69996] = 2, ACTIONS(12983), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626277,9 +623604,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65202] = 2, + [70009] = 2, ACTIONS(12985), 1, - sym_identifier, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626288,7 +623615,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65215] = 2, + [70022] = 2, ACTIONS(12987), 1, sym_identifier, ACTIONS(3), 7, @@ -626299,9 +623626,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65228] = 2, + [70035] = 2, ACTIONS(12989), 1, - anon_sym_SEMI, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626310,9 +623637,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65241] = 2, + [70048] = 2, ACTIONS(12991), 1, - sym_identifier, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626321,20 +623648,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65254] = 2, - ACTIONS(9926), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65267] = 2, + [70061] = 2, ACTIONS(12993), 1, - anon_sym_LPAREN2, + sym_number_literal, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626343,41 +623659,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65280] = 2, + [70074] = 2, + ACTIONS(10556), 1, + anon_sym_RPAREN, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [70087] = 2, ACTIONS(12995), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65293] = 2, - ACTIONS(12997), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65306] = 2, - ACTIONS(12999), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65319] = 2, - ACTIONS(13001), 1, sym_identifier, ACTIONS(3), 7, sym_comment, @@ -626387,9 +623681,9 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65332] = 2, - ACTIONS(13003), 1, - anon_sym_SEMI, + [70100] = 2, + ACTIONS(12997), 1, + anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, sym_pragma, @@ -626398,7 +623692,40 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65345] = 2, + [70113] = 2, + ACTIONS(12999), 1, + sym_number_literal, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [70126] = 2, + ACTIONS(13001), 1, + sym_number_literal, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [70139] = 2, + ACTIONS(13003), 1, + sym_number_literal, + ACTIONS(3), 7, + sym_comment, + sym_pragma, + sym__ifdef_if_retain, + sym__ifdef_elif_ignore, + sym__ifdef_else_ignore, + sym__ifdef_endif_retain, + sym__ifdef_undef_retain, + [70152] = 2, ACTIONS(13005), 1, anon_sym_LPAREN2, ACTIONS(3), 7, @@ -626409,7 +623736,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65358] = 2, + [70165] = 2, ACTIONS(13007), 1, anon_sym_LPAREN2, ACTIONS(3), 7, @@ -626420,7 +623747,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65371] = 2, + [70178] = 2, ACTIONS(13009), 1, anon_sym_LPAREN2, ACTIONS(3), 7, @@ -626431,7 +623758,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65384] = 2, + [70191] = 2, ACTIONS(13011), 1, anon_sym_LPAREN2, ACTIONS(3), 7, @@ -626442,1043 +623769,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ifdef_else_ignore, sym__ifdef_endif_retain, sym__ifdef_undef_retain, - [65397] = 2, - ACTIONS(9996), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65410] = 2, + [70204] = 2, ACTIONS(13013), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65423] = 2, - ACTIONS(13015), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65436] = 2, - ACTIONS(10068), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65449] = 2, - ACTIONS(13017), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65462] = 2, - ACTIONS(13019), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65475] = 2, - ACTIONS(9209), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65488] = 2, - ACTIONS(13021), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65501] = 2, - ACTIONS(13023), 1, - anon_sym_while, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65514] = 2, - ACTIONS(13025), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65527] = 2, - ACTIONS(13027), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65540] = 2, - ACTIONS(13029), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65553] = 2, - ACTIONS(13031), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65566] = 2, - ACTIONS(13033), 1, - anon_sym_STAR, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65579] = 2, - ACTIONS(13035), 1, - anon_sym_typedef, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65592] = 2, - ACTIONS(13037), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65605] = 2, - ACTIONS(13039), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65618] = 2, - ACTIONS(13041), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65631] = 2, - ACTIONS(13043), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65644] = 2, - ACTIONS(13045), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65657] = 2, - ACTIONS(13047), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65670] = 2, - ACTIONS(10528), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65683] = 2, - ACTIONS(13049), 1, - anon_sym_in, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65696] = 2, - ACTIONS(13051), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65709] = 2, - ACTIONS(13053), 1, - anon_sym_COMMA, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65722] = 2, - ACTIONS(13055), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65735] = 2, - ACTIONS(13057), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65748] = 2, - ACTIONS(13059), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65761] = 2, - ACTIONS(13061), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65774] = 2, - ACTIONS(13063), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65787] = 2, - ACTIONS(13065), 1, - anon_sym_CARET, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65800] = 2, - ACTIONS(13067), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65813] = 2, - ACTIONS(13069), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65826] = 2, - ACTIONS(13071), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65839] = 2, - ACTIONS(13073), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65852] = 2, - ACTIONS(9940), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65865] = 2, - ACTIONS(13075), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65878] = 2, - ACTIONS(13077), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65891] = 2, - ACTIONS(13079), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65904] = 2, - ACTIONS(13081), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65917] = 2, - ACTIONS(13083), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65930] = 2, - ACTIONS(13085), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65943] = 2, - ACTIONS(13087), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65956] = 2, - ACTIONS(13089), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65969] = 2, - ACTIONS(13091), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65982] = 2, - ACTIONS(13093), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [65995] = 2, - ACTIONS(9910), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66008] = 2, - ACTIONS(13095), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66021] = 2, - ACTIONS(13097), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66034] = 2, - ACTIONS(13099), 1, - anon_sym_while, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66047] = 2, - ACTIONS(13101), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66060] = 2, - ACTIONS(13103), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66073] = 2, - ACTIONS(9860), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66086] = 2, - ACTIONS(13105), 1, - anon_sym_STAR, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66099] = 2, - ACTIONS(13107), 1, - anon_sym_typedef, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66112] = 2, - ACTIONS(13109), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66125] = 2, - ACTIONS(13111), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66138] = 2, - ACTIONS(13113), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66151] = 2, - ACTIONS(13115), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66164] = 3, - ACTIONS(5), 1, - sym__ifdef_endif_retain, - ACTIONS(13117), 1, - aux_sym_preproc_if_token2, - ACTIONS(3), 6, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_undef_retain, - [66179] = 2, - ACTIONS(10565), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66192] = 2, - ACTIONS(13119), 1, - anon_sym_in, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66205] = 2, - ACTIONS(13121), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66218] = 2, - ACTIONS(13123), 1, - anon_sym_COMMA, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66231] = 2, - ACTIONS(13125), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66244] = 2, - ACTIONS(13127), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66257] = 2, - ACTIONS(13129), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66270] = 2, - ACTIONS(13131), 1, - sym_identifier, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66283] = 2, - ACTIONS(13133), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66296] = 2, - ACTIONS(13135), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66309] = 2, - ACTIONS(13137), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66322] = 2, - ACTIONS(13139), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66335] = 2, - ACTIONS(13141), 1, - anon_sym_typedef, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66348] = 2, - ACTIONS(13143), 1, - anon_sym_COMMA, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66361] = 2, - ACTIONS(13145), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66374] = 2, - ACTIONS(13147), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66387] = 2, - ACTIONS(13149), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66400] = 2, - ACTIONS(13151), 1, - anon_sym_COMMA, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66413] = 2, - ACTIONS(13153), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66426] = 2, - ACTIONS(13155), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66439] = 2, - ACTIONS(8658), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66452] = 2, - ACTIONS(13157), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66465] = 2, - ACTIONS(13159), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66478] = 2, - ACTIONS(13161), 1, - sym_number_literal, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66491] = 2, - ACTIONS(13163), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66504] = 2, - ACTIONS(13165), 1, - anon_sym_SEMI, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66517] = 2, - ACTIONS(13167), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66530] = 2, - ACTIONS(13169), 1, - sym_number_literal, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66543] = 2, - ACTIONS(13171), 1, - sym_number_literal, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66556] = 2, - ACTIONS(13173), 1, - sym_number_literal, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66569] = 2, - ACTIONS(13175), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66582] = 2, - ACTIONS(13177), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66595] = 2, - ACTIONS(13179), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66608] = 2, - ACTIONS(13181), 1, - anon_sym_LPAREN2, - ACTIONS(3), 7, - sym_comment, - sym_pragma, - sym__ifdef_if_retain, - sym__ifdef_elif_ignore, - sym__ifdef_else_ignore, - sym__ifdef_endif_retain, - sym__ifdef_undef_retain, - [66621] = 2, - ACTIONS(13183), 1, anon_sym_LPAREN2, ACTIONS(3), 7, sym_comment, @@ -627491,2017 +623783,2017 @@ static const uint16_t ts_small_parse_table[] = { }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(3906)] = 0, - [SMALL_STATE(3907)] = 77, - [SMALL_STATE(3908)] = 148, - [SMALL_STATE(3909)] = 225, - [SMALL_STATE(3910)] = 295, - [SMALL_STATE(3911)] = 365, - [SMALL_STATE(3912)] = 436, - [SMALL_STATE(3913)] = 507, - [SMALL_STATE(3914)] = 599, - [SMALL_STATE(3915)] = 667, - [SMALL_STATE(3916)] = 732, - [SMALL_STATE(3917)] = 797, - [SMALL_STATE(3918)] = 862, - [SMALL_STATE(3919)] = 927, - [SMALL_STATE(3920)] = 992, - [SMALL_STATE(3921)] = 1057, - [SMALL_STATE(3922)] = 1122, - [SMALL_STATE(3923)] = 1187, - [SMALL_STATE(3924)] = 1275, - [SMALL_STATE(3925)] = 1363, - [SMALL_STATE(3926)] = 1451, - [SMALL_STATE(3927)] = 1539, - [SMALL_STATE(3928)] = 1627, - [SMALL_STATE(3929)] = 1715, - [SMALL_STATE(3930)] = 1803, - [SMALL_STATE(3931)] = 1891, - [SMALL_STATE(3932)] = 1979, - [SMALL_STATE(3933)] = 2067, - [SMALL_STATE(3934)] = 2155, - [SMALL_STATE(3935)] = 2243, - [SMALL_STATE(3936)] = 2331, - [SMALL_STATE(3937)] = 2419, - [SMALL_STATE(3938)] = 2507, - [SMALL_STATE(3939)] = 2595, - [SMALL_STATE(3940)] = 2683, - [SMALL_STATE(3941)] = 2771, - [SMALL_STATE(3942)] = 2859, - [SMALL_STATE(3943)] = 2947, - [SMALL_STATE(3944)] = 3035, - [SMALL_STATE(3945)] = 3123, - [SMALL_STATE(3946)] = 3211, - [SMALL_STATE(3947)] = 3299, - [SMALL_STATE(3948)] = 3399, - [SMALL_STATE(3949)] = 3496, - [SMALL_STATE(3950)] = 3593, - [SMALL_STATE(3951)] = 3690, - [SMALL_STATE(3952)] = 3787, - [SMALL_STATE(3953)] = 3884, - [SMALL_STATE(3954)] = 3981, - [SMALL_STATE(3955)] = 4078, - [SMALL_STATE(3956)] = 4155, - [SMALL_STATE(3957)] = 4232, - [SMALL_STATE(3958)] = 4308, - [SMALL_STATE(3959)] = 4384, - [SMALL_STATE(3960)] = 4460, - [SMALL_STATE(3961)] = 4536, - [SMALL_STATE(3962)] = 4603, - [SMALL_STATE(3963)] = 4675, - [SMALL_STATE(3964)] = 4747, - [SMALL_STATE(3965)] = 4819, - [SMALL_STATE(3966)] = 4891, - [SMALL_STATE(3967)] = 4963, - [SMALL_STATE(3968)] = 5035, - [SMALL_STATE(3969)] = 5107, - [SMALL_STATE(3970)] = 5179, - [SMALL_STATE(3971)] = 5253, - [SMALL_STATE(3972)] = 5325, - [SMALL_STATE(3973)] = 5397, - [SMALL_STATE(3974)] = 5469, - [SMALL_STATE(3975)] = 5541, - [SMALL_STATE(3976)] = 5613, - [SMALL_STATE(3977)] = 5685, - [SMALL_STATE(3978)] = 5757, - [SMALL_STATE(3979)] = 5829, - [SMALL_STATE(3980)] = 5901, - [SMALL_STATE(3981)] = 5975, - [SMALL_STATE(3982)] = 6047, - [SMALL_STATE(3983)] = 6119, - [SMALL_STATE(3984)] = 6191, - [SMALL_STATE(3985)] = 6263, - [SMALL_STATE(3986)] = 6335, - [SMALL_STATE(3987)] = 6407, - [SMALL_STATE(3988)] = 6479, - [SMALL_STATE(3989)] = 6553, - [SMALL_STATE(3990)] = 6625, - [SMALL_STATE(3991)] = 6697, - [SMALL_STATE(3992)] = 6769, - [SMALL_STATE(3993)] = 6843, - [SMALL_STATE(3994)] = 6915, - [SMALL_STATE(3995)] = 6987, - [SMALL_STATE(3996)] = 7059, - [SMALL_STATE(3997)] = 7124, - [SMALL_STATE(3998)] = 7192, - [SMALL_STATE(3999)] = 7255, - [SMALL_STATE(4000)] = 7318, - [SMALL_STATE(4001)] = 7378, - [SMALL_STATE(4002)] = 7432, - [SMALL_STATE(4003)] = 7486, - [SMALL_STATE(4004)] = 7546, - [SMALL_STATE(4005)] = 7608, - [SMALL_STATE(4006)] = 7667, - [SMALL_STATE(4007)] = 7726, - [SMALL_STATE(4008)] = 7785, - [SMALL_STATE(4009)] = 7869, - [SMALL_STATE(4010)] = 7953, - [SMALL_STATE(4011)] = 8037, - [SMALL_STATE(4012)] = 8121, - [SMALL_STATE(4013)] = 8205, - [SMALL_STATE(4014)] = 8289, - [SMALL_STATE(4015)] = 8373, - [SMALL_STATE(4016)] = 8457, - [SMALL_STATE(4017)] = 8541, - [SMALL_STATE(4018)] = 8625, - [SMALL_STATE(4019)] = 8693, - [SMALL_STATE(4020)] = 8777, - [SMALL_STATE(4021)] = 8861, - [SMALL_STATE(4022)] = 8938, - [SMALL_STATE(4023)] = 9015, - [SMALL_STATE(4024)] = 9076, - [SMALL_STATE(4025)] = 9137, - [SMALL_STATE(4026)] = 9214, - [SMALL_STATE(4027)] = 9275, - [SMALL_STATE(4028)] = 9352, - [SMALL_STATE(4029)] = 9429, - [SMALL_STATE(4030)] = 9485, - [SMALL_STATE(4031)] = 9551, - [SMALL_STATE(4032)] = 9605, - [SMALL_STATE(4033)] = 9661, - [SMALL_STATE(4034)] = 9732, - [SMALL_STATE(4035)] = 9807, - [SMALL_STATE(4036)] = 9878, - [SMALL_STATE(4037)] = 9953, - [SMALL_STATE(4038)] = 10028, - [SMALL_STATE(4039)] = 10103, - [SMALL_STATE(4040)] = 10178, - [SMALL_STATE(4041)] = 10253, - [SMALL_STATE(4042)] = 10328, - [SMALL_STATE(4043)] = 10403, - [SMALL_STATE(4044)] = 10478, - [SMALL_STATE(4045)] = 10553, - [SMALL_STATE(4046)] = 10624, - [SMALL_STATE(4047)] = 10693, - [SMALL_STATE(4048)] = 10768, - [SMALL_STATE(4049)] = 10843, - [SMALL_STATE(4050)] = 10897, - [SMALL_STATE(4051)] = 10949, - [SMALL_STATE(4052)] = 10999, - [SMALL_STATE(4053)] = 11051, - [SMALL_STATE(4054)] = 11105, - [SMALL_STATE(4055)] = 11173, - [SMALL_STATE(4056)] = 11225, - [SMALL_STATE(4057)] = 11277, - [SMALL_STATE(4058)] = 11329, - [SMALL_STATE(4059)] = 11381, - [SMALL_STATE(4060)] = 11431, - [SMALL_STATE(4061)] = 11483, - [SMALL_STATE(4062)] = 11547, - [SMALL_STATE(4063)] = 11611, - [SMALL_STATE(4064)] = 11679, - [SMALL_STATE(4065)] = 11731, - [SMALL_STATE(4066)] = 11798, - [SMALL_STATE(4067)] = 11865, - [SMALL_STATE(4068)] = 11932, - [SMALL_STATE(4069)] = 12001, - [SMALL_STATE(4070)] = 12068, - [SMALL_STATE(4071)] = 12137, - [SMALL_STATE(4072)] = 12204, - [SMALL_STATE(4073)] = 12271, - [SMALL_STATE(4074)] = 12338, - [SMALL_STATE(4075)] = 12389, - [SMALL_STATE(4076)] = 12456, - [SMALL_STATE(4077)] = 12523, - [SMALL_STATE(4078)] = 12590, - [SMALL_STATE(4079)] = 12657, - [SMALL_STATE(4080)] = 12724, - [SMALL_STATE(4081)] = 12773, - [SMALL_STATE(4082)] = 12840, - [SMALL_STATE(4083)] = 12907, - [SMALL_STATE(4084)] = 12974, - [SMALL_STATE(4085)] = 13023, - [SMALL_STATE(4086)] = 13074, - [SMALL_STATE(4087)] = 13141, - [SMALL_STATE(4088)] = 13210, - [SMALL_STATE(4089)] = 13277, - [SMALL_STATE(4090)] = 13344, - [SMALL_STATE(4091)] = 13395, - [SMALL_STATE(4092)] = 13464, - [SMALL_STATE(4093)] = 13533, - [SMALL_STATE(4094)] = 13600, - [SMALL_STATE(4095)] = 13651, - [SMALL_STATE(4096)] = 13702, - [SMALL_STATE(4097)] = 13771, - [SMALL_STATE(4098)] = 13838, - [SMALL_STATE(4099)] = 13907, - [SMALL_STATE(4100)] = 13974, - [SMALL_STATE(4101)] = 14041, - [SMALL_STATE(4102)] = 14110, - [SMALL_STATE(4103)] = 14161, - [SMALL_STATE(4104)] = 14212, - [SMALL_STATE(4105)] = 14279, - [SMALL_STATE(4106)] = 14346, - [SMALL_STATE(4107)] = 14415, - [SMALL_STATE(4108)] = 14482, - [SMALL_STATE(4109)] = 14549, - [SMALL_STATE(4110)] = 14616, - [SMALL_STATE(4111)] = 14683, - [SMALL_STATE(4112)] = 14750, - [SMALL_STATE(4113)] = 14817, - [SMALL_STATE(4114)] = 14886, - [SMALL_STATE(4115)] = 14955, - [SMALL_STATE(4116)] = 15022, - [SMALL_STATE(4117)] = 15089, - [SMALL_STATE(4118)] = 15156, - [SMALL_STATE(4119)] = 15223, - [SMALL_STATE(4120)] = 15274, - [SMALL_STATE(4121)] = 15343, - [SMALL_STATE(4122)] = 15410, - [SMALL_STATE(4123)] = 15477, - [SMALL_STATE(4124)] = 15544, - [SMALL_STATE(4125)] = 15611, - [SMALL_STATE(4126)] = 15678, - [SMALL_STATE(4127)] = 15745, - [SMALL_STATE(4128)] = 15812, - [SMALL_STATE(4129)] = 15863, - [SMALL_STATE(4130)] = 15930, - [SMALL_STATE(4131)] = 15999, - [SMALL_STATE(4132)] = 16050, - [SMALL_STATE(4133)] = 16119, - [SMALL_STATE(4134)] = 16170, - [SMALL_STATE(4135)] = 16221, - [SMALL_STATE(4136)] = 16290, - [SMALL_STATE(4137)] = 16341, - [SMALL_STATE(4138)] = 16410, - [SMALL_STATE(4139)] = 16461, - [SMALL_STATE(4140)] = 16530, - [SMALL_STATE(4141)] = 16581, - [SMALL_STATE(4142)] = 16648, - [SMALL_STATE(4143)] = 16715, - [SMALL_STATE(4144)] = 16784, - [SMALL_STATE(4145)] = 16853, - [SMALL_STATE(4146)] = 16920, - [SMALL_STATE(4147)] = 16987, - [SMALL_STATE(4148)] = 17054, - [SMALL_STATE(4149)] = 17105, - [SMALL_STATE(4150)] = 17172, - [SMALL_STATE(4151)] = 17225, - [SMALL_STATE(4152)] = 17294, - [SMALL_STATE(4153)] = 17345, - [SMALL_STATE(4154)] = 17396, - [SMALL_STATE(4155)] = 17465, - [SMALL_STATE(4156)] = 17534, - [SMALL_STATE(4157)] = 17601, - [SMALL_STATE(4158)] = 17652, - [SMALL_STATE(4159)] = 17719, - [SMALL_STATE(4160)] = 17770, - [SMALL_STATE(4161)] = 17839, - [SMALL_STATE(4162)] = 17906, - [SMALL_STATE(4163)] = 17973, - [SMALL_STATE(4164)] = 18040, - [SMALL_STATE(4165)] = 18107, - [SMALL_STATE(4166)] = 18176, - [SMALL_STATE(4167)] = 18243, - [SMALL_STATE(4168)] = 18310, - [SMALL_STATE(4169)] = 18377, - [SMALL_STATE(4170)] = 18444, - [SMALL_STATE(4171)] = 18511, - [SMALL_STATE(4172)] = 18564, - [SMALL_STATE(4173)] = 18631, - [SMALL_STATE(4174)] = 18698, - [SMALL_STATE(4175)] = 18765, - [SMALL_STATE(4176)] = 18832, - [SMALL_STATE(4177)] = 18879, - [SMALL_STATE(4178)] = 18948, - [SMALL_STATE(4179)] = 19001, - [SMALL_STATE(4180)] = 19052, - [SMALL_STATE(4181)] = 19121, - [SMALL_STATE(4182)] = 19172, - [SMALL_STATE(4183)] = 19223, - [SMALL_STATE(4184)] = 19292, - [SMALL_STATE(4185)] = 19359, - [SMALL_STATE(4186)] = 19410, - [SMALL_STATE(4187)] = 19479, - [SMALL_STATE(4188)] = 19548, - [SMALL_STATE(4189)] = 19617, - [SMALL_STATE(4190)] = 19684, - [SMALL_STATE(4191)] = 19735, - [SMALL_STATE(4192)] = 19802, - [SMALL_STATE(4193)] = 19849, - [SMALL_STATE(4194)] = 19918, - [SMALL_STATE(4195)] = 19987, - [SMALL_STATE(4196)] = 20056, - [SMALL_STATE(4197)] = 20105, - [SMALL_STATE(4198)] = 20172, - [SMALL_STATE(4199)] = 20239, - [SMALL_STATE(4200)] = 20308, - [SMALL_STATE(4201)] = 20375, - [SMALL_STATE(4202)] = 20426, - [SMALL_STATE(4203)] = 20493, - [SMALL_STATE(4204)] = 20560, - [SMALL_STATE(4205)] = 20627, - [SMALL_STATE(4206)] = 20694, - [SMALL_STATE(4207)] = 20761, - [SMALL_STATE(4208)] = 20828, - [SMALL_STATE(4209)] = 20895, - [SMALL_STATE(4210)] = 20962, - [SMALL_STATE(4211)] = 21029, - [SMALL_STATE(4212)] = 21080, - [SMALL_STATE(4213)] = 21147, - [SMALL_STATE(4214)] = 21214, - [SMALL_STATE(4215)] = 21265, - [SMALL_STATE(4216)] = 21332, - [SMALL_STATE(4217)] = 21399, - [SMALL_STATE(4218)] = 21468, - [SMALL_STATE(4219)] = 21537, - [SMALL_STATE(4220)] = 21606, - [SMALL_STATE(4221)] = 21675, - [SMALL_STATE(4222)] = 21742, - [SMALL_STATE(4223)] = 21793, - [SMALL_STATE(4224)] = 21860, - [SMALL_STATE(4225)] = 21911, - [SMALL_STATE(4226)] = 21962, - [SMALL_STATE(4227)] = 22029, - [SMALL_STATE(4228)] = 22096, - [SMALL_STATE(4229)] = 22147, - [SMALL_STATE(4230)] = 22198, - [SMALL_STATE(4231)] = 22249, - [SMALL_STATE(4232)] = 22316, - [SMALL_STATE(4233)] = 22385, - [SMALL_STATE(4234)] = 22434, - [SMALL_STATE(4235)] = 22485, - [SMALL_STATE(4236)] = 22536, - [SMALL_STATE(4237)] = 22587, - [SMALL_STATE(4238)] = 22654, - [SMALL_STATE(4239)] = 22705, - [SMALL_STATE(4240)] = 22774, - [SMALL_STATE(4241)] = 22843, - [SMALL_STATE(4242)] = 22910, - [SMALL_STATE(4243)] = 22977, - [SMALL_STATE(4244)] = 23044, - [SMALL_STATE(4245)] = 23111, - [SMALL_STATE(4246)] = 23178, - [SMALL_STATE(4247)] = 23247, - [SMALL_STATE(4248)] = 23314, - [SMALL_STATE(4249)] = 23381, - [SMALL_STATE(4250)] = 23448, - [SMALL_STATE(4251)] = 23501, - [SMALL_STATE(4252)] = 23552, - [SMALL_STATE(4253)] = 23619, - [SMALL_STATE(4254)] = 23686, - [SMALL_STATE(4255)] = 23753, - [SMALL_STATE(4256)] = 23820, - [SMALL_STATE(4257)] = 23866, - [SMALL_STATE(4258)] = 23918, - [SMALL_STATE(4259)] = 23982, - [SMALL_STATE(4260)] = 24046, - [SMALL_STATE(4261)] = 24092, - [SMALL_STATE(4262)] = 24138, - [SMALL_STATE(4263)] = 24184, - [SMALL_STATE(4264)] = 24230, - [SMALL_STATE(4265)] = 24294, - [SMALL_STATE(4266)] = 24358, - [SMALL_STATE(4267)] = 24404, - [SMALL_STATE(4268)] = 24450, - [SMALL_STATE(4269)] = 24496, - [SMALL_STATE(4270)] = 24542, - [SMALL_STATE(4271)] = 24606, - [SMALL_STATE(4272)] = 24670, - [SMALL_STATE(4273)] = 24734, - [SMALL_STATE(4274)] = 24798, - [SMALL_STATE(4275)] = 24862, - [SMALL_STATE(4276)] = 24908, - [SMALL_STATE(4277)] = 24960, - [SMALL_STATE(4278)] = 25006, - [SMALL_STATE(4279)] = 25070, - [SMALL_STATE(4280)] = 25132, - [SMALL_STATE(4281)] = 25178, - [SMALL_STATE(4282)] = 25224, - [SMALL_STATE(4283)] = 25276, - [SMALL_STATE(4284)] = 25340, - [SMALL_STATE(4285)] = 25386, - [SMALL_STATE(4286)] = 25436, - [SMALL_STATE(4287)] = 25482, - [SMALL_STATE(4288)] = 25528, - [SMALL_STATE(4289)] = 25574, - [SMALL_STATE(4290)] = 25636, - [SMALL_STATE(4291)] = 25682, - [SMALL_STATE(4292)] = 25728, - [SMALL_STATE(4293)] = 25774, - [SMALL_STATE(4294)] = 25838, - [SMALL_STATE(4295)] = 25917, - [SMALL_STATE(4296)] = 25982, - [SMALL_STATE(4297)] = 26033, - [SMALL_STATE(4298)] = 26084, - [SMALL_STATE(4299)] = 26167, - [SMALL_STATE(4300)] = 26218, - [SMALL_STATE(4301)] = 26301, - [SMALL_STATE(4302)] = 26366, - [SMALL_STATE(4303)] = 26417, - [SMALL_STATE(4304)] = 26477, - [SMALL_STATE(4305)] = 26537, - [SMALL_STATE(4306)] = 26597, - [SMALL_STATE(4307)] = 26657, - [SMALL_STATE(4308)] = 26717, - [SMALL_STATE(4309)] = 26777, - [SMALL_STATE(4310)] = 26837, - [SMALL_STATE(4311)] = 26897, - [SMALL_STATE(4312)] = 26957, - [SMALL_STATE(4313)] = 27017, - [SMALL_STATE(4314)] = 27067, - [SMALL_STATE(4315)] = 27127, - [SMALL_STATE(4316)] = 27187, - [SMALL_STATE(4317)] = 27231, - [SMALL_STATE(4318)] = 27291, - [SMALL_STATE(4319)] = 27335, - [SMALL_STATE(4320)] = 27379, - [SMALL_STATE(4321)] = 27439, - [SMALL_STATE(4322)] = 27483, - [SMALL_STATE(4323)] = 27543, - [SMALL_STATE(4324)] = 27603, - [SMALL_STATE(4325)] = 27661, - [SMALL_STATE(4326)] = 27705, - [SMALL_STATE(4327)] = 27765, - [SMALL_STATE(4328)] = 27825, - [SMALL_STATE(4329)] = 27871, - [SMALL_STATE(4330)] = 27915, - [SMALL_STATE(4331)] = 27975, - [SMALL_STATE(4332)] = 28035, - [SMALL_STATE(4333)] = 28095, - [SMALL_STATE(4334)] = 28155, - [SMALL_STATE(4335)] = 28215, - [SMALL_STATE(4336)] = 28275, - [SMALL_STATE(4337)] = 28335, - [SMALL_STATE(4338)] = 28395, - [SMALL_STATE(4339)] = 28439, - [SMALL_STATE(4340)] = 28499, - [SMALL_STATE(4341)] = 28559, - [SMALL_STATE(4342)] = 28603, - [SMALL_STATE(4343)] = 28663, - [SMALL_STATE(4344)] = 28723, - [SMALL_STATE(4345)] = 28771, - [SMALL_STATE(4346)] = 28831, - [SMALL_STATE(4347)] = 28891, - [SMALL_STATE(4348)] = 28951, - [SMALL_STATE(4349)] = 29011, - [SMALL_STATE(4350)] = 29057, - [SMALL_STATE(4351)] = 29117, - [SMALL_STATE(4352)] = 29177, - [SMALL_STATE(4353)] = 29222, - [SMALL_STATE(4354)] = 29269, - [SMALL_STATE(4355)] = 29314, - [SMALL_STATE(4356)] = 29363, - [SMALL_STATE(4357)] = 29408, - [SMALL_STATE(4358)] = 29453, - [SMALL_STATE(4359)] = 29498, - [SMALL_STATE(4360)] = 29579, - [SMALL_STATE(4361)] = 29624, - [SMALL_STATE(4362)] = 29669, - [SMALL_STATE(4363)] = 29718, - [SMALL_STATE(4364)] = 29763, - [SMALL_STATE(4365)] = 29808, - [SMALL_STATE(4366)] = 29853, - [SMALL_STATE(4367)] = 29898, - [SMALL_STATE(4368)] = 29947, - [SMALL_STATE(4369)] = 29992, - [SMALL_STATE(4370)] = 30037, - [SMALL_STATE(4371)] = 30082, - [SMALL_STATE(4372)] = 30127, - [SMALL_STATE(4373)] = 30172, - [SMALL_STATE(4374)] = 30217, - [SMALL_STATE(4375)] = 30262, - [SMALL_STATE(4376)] = 30307, - [SMALL_STATE(4377)] = 30352, - [SMALL_STATE(4378)] = 30397, - [SMALL_STATE(4379)] = 30446, - [SMALL_STATE(4380)] = 30491, - [SMALL_STATE(4381)] = 30536, - [SMALL_STATE(4382)] = 30581, - [SMALL_STATE(4383)] = 30626, - [SMALL_STATE(4384)] = 30673, - [SMALL_STATE(4385)] = 30718, - [SMALL_STATE(4386)] = 30799, - [SMALL_STATE(4387)] = 30844, - [SMALL_STATE(4388)] = 30889, - [SMALL_STATE(4389)] = 30934, - [SMALL_STATE(4390)] = 30979, - [SMALL_STATE(4391)] = 31024, - [SMALL_STATE(4392)] = 31069, - [SMALL_STATE(4393)] = 31114, - [SMALL_STATE(4394)] = 31195, - [SMALL_STATE(4395)] = 31240, - [SMALL_STATE(4396)] = 31289, - [SMALL_STATE(4397)] = 31334, - [SMALL_STATE(4398)] = 31379, - [SMALL_STATE(4399)] = 31424, - [SMALL_STATE(4400)] = 31505, - [SMALL_STATE(4401)] = 31550, - [SMALL_STATE(4402)] = 31595, - [SMALL_STATE(4403)] = 31640, - [SMALL_STATE(4404)] = 31685, - [SMALL_STATE(4405)] = 31734, - [SMALL_STATE(4406)] = 31779, - [SMALL_STATE(4407)] = 31824, - [SMALL_STATE(4408)] = 31869, - [SMALL_STATE(4409)] = 31914, - [SMALL_STATE(4410)] = 31959, - [SMALL_STATE(4411)] = 32004, - [SMALL_STATE(4412)] = 32051, - [SMALL_STATE(4413)] = 32130, - [SMALL_STATE(4414)] = 32175, - [SMALL_STATE(4415)] = 32218, - [SMALL_STATE(4416)] = 32263, - [SMALL_STATE(4417)] = 32310, - [SMALL_STATE(4418)] = 32355, - [SMALL_STATE(4419)] = 32400, - [SMALL_STATE(4420)] = 32445, - [SMALL_STATE(4421)] = 32490, - [SMALL_STATE(4422)] = 32535, - [SMALL_STATE(4423)] = 32580, - [SMALL_STATE(4424)] = 32625, - [SMALL_STATE(4425)] = 32706, - [SMALL_STATE(4426)] = 32751, - [SMALL_STATE(4427)] = 32796, - [SMALL_STATE(4428)] = 32877, - [SMALL_STATE(4429)] = 32922, - [SMALL_STATE(4430)] = 32967, - [SMALL_STATE(4431)] = 33046, - [SMALL_STATE(4432)] = 33088, - [SMALL_STATE(4433)] = 33166, - [SMALL_STATE(4434)] = 33242, - [SMALL_STATE(4435)] = 33320, - [SMALL_STATE(4436)] = 33362, - [SMALL_STATE(4437)] = 33440, - [SMALL_STATE(4438)] = 33516, - [SMALL_STATE(4439)] = 33592, - [SMALL_STATE(4440)] = 33670, - [SMALL_STATE(4441)] = 33748, - [SMALL_STATE(4442)] = 33826, - [SMALL_STATE(4443)] = 33904, - [SMALL_STATE(4444)] = 33946, - [SMALL_STATE(4445)] = 34024, - [SMALL_STATE(4446)] = 34102, - [SMALL_STATE(4447)] = 34180, - [SMALL_STATE(4448)] = 34222, - [SMALL_STATE(4449)] = 34300, - [SMALL_STATE(4450)] = 34378, - [SMALL_STATE(4451)] = 34420, - [SMALL_STATE(4452)] = 34498, - [SMALL_STATE(4453)] = 34576, - [SMALL_STATE(4454)] = 34618, - [SMALL_STATE(4455)] = 34660, - [SMALL_STATE(4456)] = 34738, - [SMALL_STATE(4457)] = 34780, - [SMALL_STATE(4458)] = 34858, - [SMALL_STATE(4459)] = 34900, - [SMALL_STATE(4460)] = 34978, - [SMALL_STATE(4461)] = 35028, - [SMALL_STATE(4462)] = 35070, - [SMALL_STATE(4463)] = 35148, - [SMALL_STATE(4464)] = 35226, - [SMALL_STATE(4465)] = 35304, - [SMALL_STATE(4466)] = 35354, - [SMALL_STATE(4467)] = 35432, - [SMALL_STATE(4468)] = 35482, - [SMALL_STATE(4469)] = 35560, - [SMALL_STATE(4470)] = 35602, - [SMALL_STATE(4471)] = 35652, - [SMALL_STATE(4472)] = 35730, - [SMALL_STATE(4473)] = 35772, - [SMALL_STATE(4474)] = 35848, - [SMALL_STATE(4475)] = 35890, - [SMALL_STATE(4476)] = 35932, - [SMALL_STATE(4477)] = 36010, - [SMALL_STATE(4478)] = 36088, - [SMALL_STATE(4479)] = 36130, - [SMALL_STATE(4480)] = 36208, - [SMALL_STATE(4481)] = 36250, - [SMALL_STATE(4482)] = 36292, - [SMALL_STATE(4483)] = 36370, - [SMALL_STATE(4484)] = 36448, - [SMALL_STATE(4485)] = 36526, - [SMALL_STATE(4486)] = 36604, - [SMALL_STATE(4487)] = 36646, - [SMALL_STATE(4488)] = 36688, - [SMALL_STATE(4489)] = 36730, - [SMALL_STATE(4490)] = 36772, - [SMALL_STATE(4491)] = 36814, - [SMALL_STATE(4492)] = 36892, - [SMALL_STATE(4493)] = 36970, - [SMALL_STATE(4494)] = 37045, - [SMALL_STATE(4495)] = 37120, - [SMALL_STATE(4496)] = 37195, - [SMALL_STATE(4497)] = 37270, - [SMALL_STATE(4498)] = 37345, - [SMALL_STATE(4499)] = 37420, - [SMALL_STATE(4500)] = 37495, - [SMALL_STATE(4501)] = 37570, - [SMALL_STATE(4502)] = 37645, - [SMALL_STATE(4503)] = 37720, - [SMALL_STATE(4504)] = 37795, - [SMALL_STATE(4505)] = 37870, - [SMALL_STATE(4506)] = 37945, - [SMALL_STATE(4507)] = 38020, - [SMALL_STATE(4508)] = 38095, - [SMALL_STATE(4509)] = 38170, - [SMALL_STATE(4510)] = 38245, - [SMALL_STATE(4511)] = 38320, - [SMALL_STATE(4512)] = 38395, - [SMALL_STATE(4513)] = 38470, - [SMALL_STATE(4514)] = 38545, - [SMALL_STATE(4515)] = 38620, - [SMALL_STATE(4516)] = 38695, - [SMALL_STATE(4517)] = 38770, - [SMALL_STATE(4518)] = 38845, - [SMALL_STATE(4519)] = 38920, - [SMALL_STATE(4520)] = 38995, - [SMALL_STATE(4521)] = 39070, - [SMALL_STATE(4522)] = 39145, - [SMALL_STATE(4523)] = 39220, - [SMALL_STATE(4524)] = 39295, - [SMALL_STATE(4525)] = 39370, - [SMALL_STATE(4526)] = 39445, - [SMALL_STATE(4527)] = 39520, - [SMALL_STATE(4528)] = 39595, - [SMALL_STATE(4529)] = 39670, - [SMALL_STATE(4530)] = 39745, - [SMALL_STATE(4531)] = 39820, - [SMALL_STATE(4532)] = 39895, - [SMALL_STATE(4533)] = 39970, - [SMALL_STATE(4534)] = 40014, - [SMALL_STATE(4535)] = 40058, - [SMALL_STATE(4536)] = 40102, - [SMALL_STATE(4537)] = 40146, - [SMALL_STATE(4538)] = 40190, - [SMALL_STATE(4539)] = 40234, - [SMALL_STATE(4540)] = 40278, - [SMALL_STATE(4541)] = 40326, - [SMALL_STATE(4542)] = 40370, - [SMALL_STATE(4543)] = 40414, - [SMALL_STATE(4544)] = 40458, - [SMALL_STATE(4545)] = 40504, - [SMALL_STATE(4546)] = 40546, - [SMALL_STATE(4547)] = 40590, - [SMALL_STATE(4548)] = 40636, - [SMALL_STATE(4549)] = 40680, - [SMALL_STATE(4550)] = 40724, - [SMALL_STATE(4551)] = 40768, - [SMALL_STATE(4552)] = 40812, - [SMALL_STATE(4553)] = 40856, - [SMALL_STATE(4554)] = 40900, - [SMALL_STATE(4555)] = 40944, - [SMALL_STATE(4556)] = 40986, - [SMALL_STATE(4557)] = 41030, - [SMALL_STATE(4558)] = 41069, - [SMALL_STATE(4559)] = 41108, - [SMALL_STATE(4560)] = 41147, - [SMALL_STATE(4561)] = 41186, - [SMALL_STATE(4562)] = 41225, - [SMALL_STATE(4563)] = 41264, - [SMALL_STATE(4564)] = 41303, - [SMALL_STATE(4565)] = 41342, - [SMALL_STATE(4566)] = 41381, - [SMALL_STATE(4567)] = 41420, - [SMALL_STATE(4568)] = 41459, - [SMALL_STATE(4569)] = 41498, - [SMALL_STATE(4570)] = 41537, - [SMALL_STATE(4571)] = 41576, - [SMALL_STATE(4572)] = 41615, - [SMALL_STATE(4573)] = 41654, - [SMALL_STATE(4574)] = 41693, - [SMALL_STATE(4575)] = 41732, - [SMALL_STATE(4576)] = 41771, - [SMALL_STATE(4577)] = 41810, - [SMALL_STATE(4578)] = 41849, - [SMALL_STATE(4579)] = 41888, - [SMALL_STATE(4580)] = 41927, - [SMALL_STATE(4581)] = 41966, - [SMALL_STATE(4582)] = 42005, - [SMALL_STATE(4583)] = 42044, - [SMALL_STATE(4584)] = 42083, - [SMALL_STATE(4585)] = 42122, - [SMALL_STATE(4586)] = 42161, - [SMALL_STATE(4587)] = 42200, - [SMALL_STATE(4588)] = 42239, - [SMALL_STATE(4589)] = 42278, - [SMALL_STATE(4590)] = 42322, - [SMALL_STATE(4591)] = 42375, - [SMALL_STATE(4592)] = 42416, - [SMALL_STATE(4593)] = 42469, - [SMALL_STATE(4594)] = 42519, - [SMALL_STATE(4595)] = 42569, - [SMALL_STATE(4596)] = 42619, - [SMALL_STATE(4597)] = 42669, - [SMALL_STATE(4598)] = 42719, - [SMALL_STATE(4599)] = 42769, - [SMALL_STATE(4600)] = 42819, - [SMALL_STATE(4601)] = 42869, - [SMALL_STATE(4602)] = 42919, - [SMALL_STATE(4603)] = 42969, - [SMALL_STATE(4604)] = 43019, - [SMALL_STATE(4605)] = 43069, - [SMALL_STATE(4606)] = 43119, - [SMALL_STATE(4607)] = 43169, - [SMALL_STATE(4608)] = 43219, - [SMALL_STATE(4609)] = 43269, - [SMALL_STATE(4610)] = 43319, - [SMALL_STATE(4611)] = 43369, - [SMALL_STATE(4612)] = 43419, - [SMALL_STATE(4613)] = 43469, - [SMALL_STATE(4614)] = 43519, - [SMALL_STATE(4615)] = 43569, - [SMALL_STATE(4616)] = 43619, - [SMALL_STATE(4617)] = 43669, - [SMALL_STATE(4618)] = 43719, - [SMALL_STATE(4619)] = 43769, - [SMALL_STATE(4620)] = 43819, - [SMALL_STATE(4621)] = 43869, - [SMALL_STATE(4622)] = 43919, - [SMALL_STATE(4623)] = 43969, - [SMALL_STATE(4624)] = 44019, - [SMALL_STATE(4625)] = 44069, - [SMALL_STATE(4626)] = 44119, - [SMALL_STATE(4627)] = 44159, - [SMALL_STATE(4628)] = 44214, - [SMALL_STATE(4629)] = 44253, - [SMALL_STATE(4630)] = 44314, - [SMALL_STATE(4631)] = 44375, - [SMALL_STATE(4632)] = 44423, - [SMALL_STATE(4633)] = 44457, - [SMALL_STATE(4634)] = 44513, - [SMALL_STATE(4635)] = 44547, - [SMALL_STATE(4636)] = 44581, - [SMALL_STATE(4637)] = 44619, - [SMALL_STATE(4638)] = 44653, - [SMALL_STATE(4639)] = 44687, - [SMALL_STATE(4640)] = 44741, - [SMALL_STATE(4641)] = 44793, - [SMALL_STATE(4642)] = 44827, - [SMALL_STATE(4643)] = 44861, - [SMALL_STATE(4644)] = 44913, - [SMALL_STATE(4645)] = 44947, - [SMALL_STATE(4646)] = 44997, - [SMALL_STATE(4647)] = 45031, - [SMALL_STATE(4648)] = 45077, - [SMALL_STATE(4649)] = 45111, - [SMALL_STATE(4650)] = 45153, - [SMALL_STATE(4651)] = 45187, - [SMALL_STATE(4652)] = 45227, - [SMALL_STATE(4653)] = 45278, - [SMALL_STATE(4654)] = 45325, - [SMALL_STATE(4655)] = 45376, - [SMALL_STATE(4656)] = 45409, - [SMALL_STATE(4657)] = 45442, - [SMALL_STATE(4658)] = 45475, - [SMALL_STATE(4659)] = 45526, - [SMALL_STATE(4660)] = 45559, - [SMALL_STATE(4661)] = 45610, - [SMALL_STATE(4662)] = 45643, - [SMALL_STATE(4663)] = 45698, - [SMALL_STATE(4664)] = 45733, - [SMALL_STATE(4665)] = 45766, - [SMALL_STATE(4666)] = 45803, - [SMALL_STATE(4667)] = 45836, - [SMALL_STATE(4668)] = 45875, - [SMALL_STATE(4669)] = 45926, - [SMALL_STATE(4670)] = 45959, - [SMALL_STATE(4671)] = 46010, - [SMALL_STATE(4672)] = 46043, - [SMALL_STATE(4673)] = 46084, - [SMALL_STATE(4674)] = 46117, - [SMALL_STATE(4675)] = 46168, - [SMALL_STATE(4676)] = 46211, - [SMALL_STATE(4677)] = 46266, - [SMALL_STATE(4678)] = 46311, - [SMALL_STATE(4679)] = 46362, - [SMALL_STATE(4680)] = 46395, - [SMALL_STATE(4681)] = 46444, - [SMALL_STATE(4682)] = 46495, - [SMALL_STATE(4683)] = 46536, - [SMALL_STATE(4684)] = 46577, - [SMALL_STATE(4685)] = 46618, - [SMALL_STATE(4686)] = 46659, - [SMALL_STATE(4687)] = 46700, - [SMALL_STATE(4688)] = 46741, - [SMALL_STATE(4689)] = 46782, - [SMALL_STATE(4690)] = 46823, - [SMALL_STATE(4691)] = 46867, - [SMALL_STATE(4692)] = 46911, - [SMALL_STATE(4693)] = 46955, - [SMALL_STATE(4694)] = 46999, - [SMALL_STATE(4695)] = 47037, - [SMALL_STATE(4696)] = 47075, - [SMALL_STATE(4697)] = 47113, - [SMALL_STATE(4698)] = 47151, - [SMALL_STATE(4699)] = 47189, - [SMALL_STATE(4700)] = 47227, - [SMALL_STATE(4701)] = 47265, - [SMALL_STATE(4702)] = 47303, - [SMALL_STATE(4703)] = 47341, - [SMALL_STATE(4704)] = 47379, - [SMALL_STATE(4705)] = 47417, - [SMALL_STATE(4706)] = 47455, - [SMALL_STATE(4707)] = 47493, - [SMALL_STATE(4708)] = 47531, - [SMALL_STATE(4709)] = 47569, - [SMALL_STATE(4710)] = 47607, - [SMALL_STATE(4711)] = 47645, - [SMALL_STATE(4712)] = 47680, - [SMALL_STATE(4713)] = 47715, - [SMALL_STATE(4714)] = 47750, - [SMALL_STATE(4715)] = 47785, - [SMALL_STATE(4716)] = 47820, - [SMALL_STATE(4717)] = 47855, - [SMALL_STATE(4718)] = 47883, - [SMALL_STATE(4719)] = 47913, - [SMALL_STATE(4720)] = 47940, - [SMALL_STATE(4721)] = 47973, - [SMALL_STATE(4722)] = 48006, - [SMALL_STATE(4723)] = 48033, - [SMALL_STATE(4724)] = 48060, - [SMALL_STATE(4725)] = 48094, - [SMALL_STATE(4726)] = 48128, - [SMALL_STATE(4727)] = 48154, - [SMALL_STATE(4728)] = 48188, - [SMALL_STATE(4729)] = 48214, - [SMALL_STATE(4730)] = 48248, - [SMALL_STATE(4731)] = 48277, - [SMALL_STATE(4732)] = 48302, - [SMALL_STATE(4733)] = 48327, - [SMALL_STATE(4734)] = 48352, - [SMALL_STATE(4735)] = 48379, - [SMALL_STATE(4736)] = 48404, - [SMALL_STATE(4737)] = 48429, - [SMALL_STATE(4738)] = 48452, - [SMALL_STATE(4739)] = 48477, - [SMALL_STATE(4740)] = 48506, - [SMALL_STATE(4741)] = 48529, - [SMALL_STATE(4742)] = 48554, - [SMALL_STATE(4743)] = 48579, - [SMALL_STATE(4744)] = 48602, - [SMALL_STATE(4745)] = 48631, - [SMALL_STATE(4746)] = 48658, - [SMALL_STATE(4747)] = 48687, - [SMALL_STATE(4748)] = 48711, - [SMALL_STATE(4749)] = 48739, - [SMALL_STATE(4750)] = 48767, - [SMALL_STATE(4751)] = 48795, - [SMALL_STATE(4752)] = 48815, - [SMALL_STATE(4753)] = 48843, - [SMALL_STATE(4754)] = 48871, - [SMALL_STATE(4755)] = 48889, - [SMALL_STATE(4756)] = 48913, - [SMALL_STATE(4757)] = 48941, - [SMALL_STATE(4758)] = 48965, - [SMALL_STATE(4759)] = 48991, - [SMALL_STATE(4760)] = 49019, - [SMALL_STATE(4761)] = 49047, - [SMALL_STATE(4762)] = 49069, - [SMALL_STATE(4763)] = 49097, - [SMALL_STATE(4764)] = 49119, - [SMALL_STATE(4765)] = 49137, - [SMALL_STATE(4766)] = 49159, - [SMALL_STATE(4767)] = 49181, - [SMALL_STATE(4768)] = 49203, - [SMALL_STATE(4769)] = 49225, - [SMALL_STATE(4770)] = 49247, - [SMALL_STATE(4771)] = 49269, - [SMALL_STATE(4772)] = 49295, - [SMALL_STATE(4773)] = 49313, - [SMALL_STATE(4774)] = 49337, - [SMALL_STATE(4775)] = 49365, - [SMALL_STATE(4776)] = 49389, - [SMALL_STATE(4777)] = 49407, - [SMALL_STATE(4778)] = 49425, - [SMALL_STATE(4779)] = 49449, - [SMALL_STATE(4780)] = 49467, - [SMALL_STATE(4781)] = 49495, - [SMALL_STATE(4782)] = 49513, - [SMALL_STATE(4783)] = 49537, - [SMALL_STATE(4784)] = 49557, - [SMALL_STATE(4785)] = 49579, - [SMALL_STATE(4786)] = 49597, - [SMALL_STATE(4787)] = 49621, - [SMALL_STATE(4788)] = 49645, - [SMALL_STATE(4789)] = 49668, - [SMALL_STATE(4790)] = 49693, - [SMALL_STATE(4791)] = 49718, - [SMALL_STATE(4792)] = 49743, - [SMALL_STATE(4793)] = 49768, - [SMALL_STATE(4794)] = 49791, - [SMALL_STATE(4795)] = 49816, - [SMALL_STATE(4796)] = 49839, - [SMALL_STATE(4797)] = 49862, - [SMALL_STATE(4798)] = 49887, - [SMALL_STATE(4799)] = 49912, - [SMALL_STATE(4800)] = 49937, - [SMALL_STATE(4801)] = 49960, - [SMALL_STATE(4802)] = 49985, - [SMALL_STATE(4803)] = 50010, - [SMALL_STATE(4804)] = 50035, - [SMALL_STATE(4805)] = 50060, - [SMALL_STATE(4806)] = 50081, - [SMALL_STATE(4807)] = 50106, - [SMALL_STATE(4808)] = 50131, - [SMALL_STATE(4809)] = 50154, - [SMALL_STATE(4810)] = 50177, - [SMALL_STATE(4811)] = 50200, - [SMALL_STATE(4812)] = 50223, - [SMALL_STATE(4813)] = 50248, - [SMALL_STATE(4814)] = 50270, - [SMALL_STATE(4815)] = 50292, - [SMALL_STATE(4816)] = 50314, - [SMALL_STATE(4817)] = 50336, - [SMALL_STATE(4818)] = 50358, - [SMALL_STATE(4819)] = 50380, - [SMALL_STATE(4820)] = 50402, - [SMALL_STATE(4821)] = 50424, - [SMALL_STATE(4822)] = 50446, - [SMALL_STATE(4823)] = 50468, - [SMALL_STATE(4824)] = 50490, - [SMALL_STATE(4825)] = 50512, - [SMALL_STATE(4826)] = 50534, - [SMALL_STATE(4827)] = 50556, - [SMALL_STATE(4828)] = 50578, - [SMALL_STATE(4829)] = 50600, - [SMALL_STATE(4830)] = 50622, - [SMALL_STATE(4831)] = 50644, - [SMALL_STATE(4832)] = 50666, - [SMALL_STATE(4833)] = 50688, - [SMALL_STATE(4834)] = 50710, - [SMALL_STATE(4835)] = 50732, - [SMALL_STATE(4836)] = 50754, - [SMALL_STATE(4837)] = 50776, - [SMALL_STATE(4838)] = 50798, - [SMALL_STATE(4839)] = 50820, - [SMALL_STATE(4840)] = 50842, - [SMALL_STATE(4841)] = 50864, - [SMALL_STATE(4842)] = 50886, - [SMALL_STATE(4843)] = 50908, - [SMALL_STATE(4844)] = 50930, - [SMALL_STATE(4845)] = 50952, - [SMALL_STATE(4846)] = 50974, - [SMALL_STATE(4847)] = 50996, - [SMALL_STATE(4848)] = 51018, - [SMALL_STATE(4849)] = 51040, - [SMALL_STATE(4850)] = 51062, - [SMALL_STATE(4851)] = 51082, - [SMALL_STATE(4852)] = 51104, - [SMALL_STATE(4853)] = 51126, - [SMALL_STATE(4854)] = 51148, - [SMALL_STATE(4855)] = 51170, - [SMALL_STATE(4856)] = 51192, - [SMALL_STATE(4857)] = 51214, - [SMALL_STATE(4858)] = 51236, - [SMALL_STATE(4859)] = 51258, - [SMALL_STATE(4860)] = 51280, - [SMALL_STATE(4861)] = 51302, - [SMALL_STATE(4862)] = 51324, - [SMALL_STATE(4863)] = 51346, - [SMALL_STATE(4864)] = 51368, - [SMALL_STATE(4865)] = 51390, - [SMALL_STATE(4866)] = 51412, - [SMALL_STATE(4867)] = 51434, - [SMALL_STATE(4868)] = 51456, - [SMALL_STATE(4869)] = 51478, - [SMALL_STATE(4870)] = 51500, - [SMALL_STATE(4871)] = 51522, - [SMALL_STATE(4872)] = 51544, - [SMALL_STATE(4873)] = 51566, - [SMALL_STATE(4874)] = 51588, - [SMALL_STATE(4875)] = 51610, - [SMALL_STATE(4876)] = 51630, - [SMALL_STATE(4877)] = 51652, - [SMALL_STATE(4878)] = 51671, - [SMALL_STATE(4879)] = 51690, - [SMALL_STATE(4880)] = 51709, - [SMALL_STATE(4881)] = 51728, - [SMALL_STATE(4882)] = 51747, - [SMALL_STATE(4883)] = 51766, - [SMALL_STATE(4884)] = 51785, - [SMALL_STATE(4885)] = 51802, - [SMALL_STATE(4886)] = 51821, - [SMALL_STATE(4887)] = 51836, - [SMALL_STATE(4888)] = 51855, - [SMALL_STATE(4889)] = 51872, - [SMALL_STATE(4890)] = 51891, - [SMALL_STATE(4891)] = 51910, - [SMALL_STATE(4892)] = 51929, - [SMALL_STATE(4893)] = 51948, - [SMALL_STATE(4894)] = 51967, - [SMALL_STATE(4895)] = 51986, - [SMALL_STATE(4896)] = 52005, - [SMALL_STATE(4897)] = 52024, - [SMALL_STATE(4898)] = 52043, - [SMALL_STATE(4899)] = 52062, - [SMALL_STATE(4900)] = 52081, - [SMALL_STATE(4901)] = 52100, - [SMALL_STATE(4902)] = 52119, - [SMALL_STATE(4903)] = 52138, - [SMALL_STATE(4904)] = 52157, - [SMALL_STATE(4905)] = 52176, - [SMALL_STATE(4906)] = 52195, - [SMALL_STATE(4907)] = 52214, - [SMALL_STATE(4908)] = 52231, - [SMALL_STATE(4909)] = 52250, - [SMALL_STATE(4910)] = 52269, - [SMALL_STATE(4911)] = 52288, - [SMALL_STATE(4912)] = 52305, - [SMALL_STATE(4913)] = 52322, - [SMALL_STATE(4914)] = 52339, - [SMALL_STATE(4915)] = 52358, - [SMALL_STATE(4916)] = 52375, - [SMALL_STATE(4917)] = 52394, - [SMALL_STATE(4918)] = 52409, - [SMALL_STATE(4919)] = 52424, - [SMALL_STATE(4920)] = 52443, - [SMALL_STATE(4921)] = 52462, - [SMALL_STATE(4922)] = 52481, - [SMALL_STATE(4923)] = 52500, - [SMALL_STATE(4924)] = 52519, - [SMALL_STATE(4925)] = 52538, - [SMALL_STATE(4926)] = 52555, - [SMALL_STATE(4927)] = 52574, - [SMALL_STATE(4928)] = 52593, - [SMALL_STATE(4929)] = 52612, - [SMALL_STATE(4930)] = 52629, - [SMALL_STATE(4931)] = 52644, - [SMALL_STATE(4932)] = 52663, - [SMALL_STATE(4933)] = 52682, - [SMALL_STATE(4934)] = 52701, - [SMALL_STATE(4935)] = 52720, - [SMALL_STATE(4936)] = 52739, - [SMALL_STATE(4937)] = 52758, - [SMALL_STATE(4938)] = 52777, - [SMALL_STATE(4939)] = 52796, - [SMALL_STATE(4940)] = 52815, - [SMALL_STATE(4941)] = 52830, - [SMALL_STATE(4942)] = 52849, - [SMALL_STATE(4943)] = 52864, - [SMALL_STATE(4944)] = 52883, - [SMALL_STATE(4945)] = 52902, - [SMALL_STATE(4946)] = 52921, - [SMALL_STATE(4947)] = 52936, - [SMALL_STATE(4948)] = 52955, - [SMALL_STATE(4949)] = 52974, - [SMALL_STATE(4950)] = 52993, - [SMALL_STATE(4951)] = 53012, - [SMALL_STATE(4952)] = 53029, - [SMALL_STATE(4953)] = 53048, - [SMALL_STATE(4954)] = 53067, - [SMALL_STATE(4955)] = 53086, - [SMALL_STATE(4956)] = 53101, - [SMALL_STATE(4957)] = 53120, - [SMALL_STATE(4958)] = 53139, - [SMALL_STATE(4959)] = 53158, - [SMALL_STATE(4960)] = 53177, - [SMALL_STATE(4961)] = 53196, - [SMALL_STATE(4962)] = 53215, - [SMALL_STATE(4963)] = 53234, - [SMALL_STATE(4964)] = 53253, - [SMALL_STATE(4965)] = 53272, - [SMALL_STATE(4966)] = 53291, - [SMALL_STATE(4967)] = 53310, - [SMALL_STATE(4968)] = 53329, - [SMALL_STATE(4969)] = 53348, - [SMALL_STATE(4970)] = 53367, - [SMALL_STATE(4971)] = 53386, - [SMALL_STATE(4972)] = 53405, - [SMALL_STATE(4973)] = 53424, - [SMALL_STATE(4974)] = 53443, - [SMALL_STATE(4975)] = 53462, - [SMALL_STATE(4976)] = 53481, - [SMALL_STATE(4977)] = 53500, - [SMALL_STATE(4978)] = 53519, - [SMALL_STATE(4979)] = 53538, - [SMALL_STATE(4980)] = 53557, - [SMALL_STATE(4981)] = 53576, - [SMALL_STATE(4982)] = 53595, - [SMALL_STATE(4983)] = 53614, - [SMALL_STATE(4984)] = 53633, - [SMALL_STATE(4985)] = 53652, - [SMALL_STATE(4986)] = 53671, - [SMALL_STATE(4987)] = 53690, - [SMALL_STATE(4988)] = 53709, - [SMALL_STATE(4989)] = 53728, - [SMALL_STATE(4990)] = 53747, - [SMALL_STATE(4991)] = 53764, - [SMALL_STATE(4992)] = 53783, - [SMALL_STATE(4993)] = 53802, - [SMALL_STATE(4994)] = 53817, - [SMALL_STATE(4995)] = 53836, - [SMALL_STATE(4996)] = 53855, - [SMALL_STATE(4997)] = 53874, - [SMALL_STATE(4998)] = 53893, - [SMALL_STATE(4999)] = 53912, - [SMALL_STATE(5000)] = 53931, - [SMALL_STATE(5001)] = 53950, - [SMALL_STATE(5002)] = 53969, - [SMALL_STATE(5003)] = 53988, - [SMALL_STATE(5004)] = 54007, - [SMALL_STATE(5005)] = 54026, - [SMALL_STATE(5006)] = 54045, - [SMALL_STATE(5007)] = 54064, - [SMALL_STATE(5008)] = 54083, - [SMALL_STATE(5009)] = 54102, - [SMALL_STATE(5010)] = 54121, - [SMALL_STATE(5011)] = 54140, - [SMALL_STATE(5012)] = 54159, - [SMALL_STATE(5013)] = 54178, - [SMALL_STATE(5014)] = 54197, - [SMALL_STATE(5015)] = 54216, - [SMALL_STATE(5016)] = 54235, - [SMALL_STATE(5017)] = 54254, - [SMALL_STATE(5018)] = 54273, - [SMALL_STATE(5019)] = 54292, - [SMALL_STATE(5020)] = 54311, - [SMALL_STATE(5021)] = 54330, - [SMALL_STATE(5022)] = 54349, - [SMALL_STATE(5023)] = 54368, - [SMALL_STATE(5024)] = 54387, - [SMALL_STATE(5025)] = 54406, - [SMALL_STATE(5026)] = 54425, - [SMALL_STATE(5027)] = 54441, - [SMALL_STATE(5028)] = 54457, - [SMALL_STATE(5029)] = 54471, - [SMALL_STATE(5030)] = 54487, - [SMALL_STATE(5031)] = 54503, - [SMALL_STATE(5032)] = 54519, - [SMALL_STATE(5033)] = 54535, - [SMALL_STATE(5034)] = 54551, - [SMALL_STATE(5035)] = 54567, - [SMALL_STATE(5036)] = 54583, - [SMALL_STATE(5037)] = 54597, - [SMALL_STATE(5038)] = 54613, - [SMALL_STATE(5039)] = 54629, - [SMALL_STATE(5040)] = 54645, - [SMALL_STATE(5041)] = 54659, - [SMALL_STATE(5042)] = 54675, - [SMALL_STATE(5043)] = 54691, - [SMALL_STATE(5044)] = 54707, - [SMALL_STATE(5045)] = 54723, - [SMALL_STATE(5046)] = 54739, - [SMALL_STATE(5047)] = 54753, - [SMALL_STATE(5048)] = 54769, - [SMALL_STATE(5049)] = 54783, - [SMALL_STATE(5050)] = 54799, - [SMALL_STATE(5051)] = 54815, - [SMALL_STATE(5052)] = 54831, - [SMALL_STATE(5053)] = 54847, - [SMALL_STATE(5054)] = 54863, - [SMALL_STATE(5055)] = 54879, - [SMALL_STATE(5056)] = 54895, - [SMALL_STATE(5057)] = 54911, - [SMALL_STATE(5058)] = 54927, - [SMALL_STATE(5059)] = 54943, - [SMALL_STATE(5060)] = 54959, - [SMALL_STATE(5061)] = 54975, - [SMALL_STATE(5062)] = 54991, - [SMALL_STATE(5063)] = 55007, - [SMALL_STATE(5064)] = 55023, - [SMALL_STATE(5065)] = 55039, - [SMALL_STATE(5066)] = 55055, - [SMALL_STATE(5067)] = 55071, - [SMALL_STATE(5068)] = 55087, - [SMALL_STATE(5069)] = 55101, - [SMALL_STATE(5070)] = 55117, - [SMALL_STATE(5071)] = 55133, - [SMALL_STATE(5072)] = 55149, - [SMALL_STATE(5073)] = 55165, - [SMALL_STATE(5074)] = 55181, - [SMALL_STATE(5075)] = 55197, - [SMALL_STATE(5076)] = 55213, - [SMALL_STATE(5077)] = 55229, - [SMALL_STATE(5078)] = 55245, - [SMALL_STATE(5079)] = 55261, - [SMALL_STATE(5080)] = 55275, - [SMALL_STATE(5081)] = 55291, - [SMALL_STATE(5082)] = 55307, - [SMALL_STATE(5083)] = 55323, - [SMALL_STATE(5084)] = 55339, - [SMALL_STATE(5085)] = 55355, - [SMALL_STATE(5086)] = 55371, - [SMALL_STATE(5087)] = 55385, - [SMALL_STATE(5088)] = 55401, - [SMALL_STATE(5089)] = 55415, - [SMALL_STATE(5090)] = 55429, - [SMALL_STATE(5091)] = 55445, - [SMALL_STATE(5092)] = 55461, - [SMALL_STATE(5093)] = 55477, - [SMALL_STATE(5094)] = 55493, - [SMALL_STATE(5095)] = 55509, - [SMALL_STATE(5096)] = 55525, - [SMALL_STATE(5097)] = 55541, - [SMALL_STATE(5098)] = 55557, - [SMALL_STATE(5099)] = 55573, - [SMALL_STATE(5100)] = 55587, - [SMALL_STATE(5101)] = 55603, - [SMALL_STATE(5102)] = 55619, - [SMALL_STATE(5103)] = 55633, - [SMALL_STATE(5104)] = 55649, - [SMALL_STATE(5105)] = 55665, - [SMALL_STATE(5106)] = 55681, - [SMALL_STATE(5107)] = 55697, - [SMALL_STATE(5108)] = 55713, - [SMALL_STATE(5109)] = 55729, - [SMALL_STATE(5110)] = 55745, - [SMALL_STATE(5111)] = 55761, - [SMALL_STATE(5112)] = 55777, - [SMALL_STATE(5113)] = 55793, - [SMALL_STATE(5114)] = 55809, - [SMALL_STATE(5115)] = 55825, - [SMALL_STATE(5116)] = 55839, - [SMALL_STATE(5117)] = 55855, - [SMALL_STATE(5118)] = 55869, - [SMALL_STATE(5119)] = 55883, - [SMALL_STATE(5120)] = 55899, - [SMALL_STATE(5121)] = 55915, - [SMALL_STATE(5122)] = 55931, - [SMALL_STATE(5123)] = 55947, - [SMALL_STATE(5124)] = 55961, - [SMALL_STATE(5125)] = 55977, - [SMALL_STATE(5126)] = 55993, - [SMALL_STATE(5127)] = 56009, - [SMALL_STATE(5128)] = 56023, - [SMALL_STATE(5129)] = 56039, - [SMALL_STATE(5130)] = 56055, - [SMALL_STATE(5131)] = 56071, - [SMALL_STATE(5132)] = 56087, - [SMALL_STATE(5133)] = 56103, - [SMALL_STATE(5134)] = 56119, - [SMALL_STATE(5135)] = 56135, - [SMALL_STATE(5136)] = 56151, - [SMALL_STATE(5137)] = 56167, - [SMALL_STATE(5138)] = 56181, - [SMALL_STATE(5139)] = 56197, - [SMALL_STATE(5140)] = 56213, - [SMALL_STATE(5141)] = 56227, - [SMALL_STATE(5142)] = 56243, - [SMALL_STATE(5143)] = 56257, - [SMALL_STATE(5144)] = 56273, - [SMALL_STATE(5145)] = 56289, - [SMALL_STATE(5146)] = 56305, - [SMALL_STATE(5147)] = 56321, - [SMALL_STATE(5148)] = 56337, - [SMALL_STATE(5149)] = 56353, - [SMALL_STATE(5150)] = 56367, - [SMALL_STATE(5151)] = 56381, - [SMALL_STATE(5152)] = 56397, - [SMALL_STATE(5153)] = 56413, - [SMALL_STATE(5154)] = 56429, - [SMALL_STATE(5155)] = 56445, - [SMALL_STATE(5156)] = 56461, - [SMALL_STATE(5157)] = 56477, - [SMALL_STATE(5158)] = 56493, - [SMALL_STATE(5159)] = 56509, - [SMALL_STATE(5160)] = 56525, - [SMALL_STATE(5161)] = 56541, - [SMALL_STATE(5162)] = 56557, - [SMALL_STATE(5163)] = 56573, - [SMALL_STATE(5164)] = 56589, - [SMALL_STATE(5165)] = 56605, - [SMALL_STATE(5166)] = 56621, - [SMALL_STATE(5167)] = 56637, - [SMALL_STATE(5168)] = 56651, - [SMALL_STATE(5169)] = 56667, - [SMALL_STATE(5170)] = 56681, - [SMALL_STATE(5171)] = 56695, - [SMALL_STATE(5172)] = 56711, - [SMALL_STATE(5173)] = 56725, - [SMALL_STATE(5174)] = 56739, - [SMALL_STATE(5175)] = 56755, - [SMALL_STATE(5176)] = 56771, - [SMALL_STATE(5177)] = 56787, - [SMALL_STATE(5178)] = 56803, - [SMALL_STATE(5179)] = 56819, - [SMALL_STATE(5180)] = 56835, - [SMALL_STATE(5181)] = 56851, - [SMALL_STATE(5182)] = 56865, - [SMALL_STATE(5183)] = 56881, - [SMALL_STATE(5184)] = 56897, - [SMALL_STATE(5185)] = 56913, - [SMALL_STATE(5186)] = 56929, - [SMALL_STATE(5187)] = 56945, - [SMALL_STATE(5188)] = 56959, - [SMALL_STATE(5189)] = 56975, - [SMALL_STATE(5190)] = 56991, - [SMALL_STATE(5191)] = 57007, - [SMALL_STATE(5192)] = 57021, - [SMALL_STATE(5193)] = 57037, - [SMALL_STATE(5194)] = 57053, - [SMALL_STATE(5195)] = 57069, - [SMALL_STATE(5196)] = 57083, - [SMALL_STATE(5197)] = 57099, - [SMALL_STATE(5198)] = 57115, - [SMALL_STATE(5199)] = 57129, - [SMALL_STATE(5200)] = 57145, - [SMALL_STATE(5201)] = 57161, - [SMALL_STATE(5202)] = 57177, - [SMALL_STATE(5203)] = 57193, - [SMALL_STATE(5204)] = 57209, - [SMALL_STATE(5205)] = 57225, - [SMALL_STATE(5206)] = 57241, - [SMALL_STATE(5207)] = 57257, - [SMALL_STATE(5208)] = 57273, - [SMALL_STATE(5209)] = 57289, - [SMALL_STATE(5210)] = 57303, - [SMALL_STATE(5211)] = 57319, - [SMALL_STATE(5212)] = 57333, - [SMALL_STATE(5213)] = 57347, - [SMALL_STATE(5214)] = 57363, - [SMALL_STATE(5215)] = 57379, - [SMALL_STATE(5216)] = 57395, - [SMALL_STATE(5217)] = 57411, - [SMALL_STATE(5218)] = 57427, - [SMALL_STATE(5219)] = 57443, - [SMALL_STATE(5220)] = 57459, - [SMALL_STATE(5221)] = 57475, - [SMALL_STATE(5222)] = 57491, - [SMALL_STATE(5223)] = 57507, - [SMALL_STATE(5224)] = 57523, - [SMALL_STATE(5225)] = 57539, - [SMALL_STATE(5226)] = 57553, - [SMALL_STATE(5227)] = 57569, - [SMALL_STATE(5228)] = 57585, - [SMALL_STATE(5229)] = 57601, - [SMALL_STATE(5230)] = 57617, - [SMALL_STATE(5231)] = 57633, - [SMALL_STATE(5232)] = 57647, - [SMALL_STATE(5233)] = 57661, - [SMALL_STATE(5234)] = 57675, - [SMALL_STATE(5235)] = 57691, - [SMALL_STATE(5236)] = 57707, - [SMALL_STATE(5237)] = 57723, - [SMALL_STATE(5238)] = 57739, - [SMALL_STATE(5239)] = 57755, - [SMALL_STATE(5240)] = 57771, - [SMALL_STATE(5241)] = 57787, - [SMALL_STATE(5242)] = 57803, - [SMALL_STATE(5243)] = 57816, - [SMALL_STATE(5244)] = 57829, - [SMALL_STATE(5245)] = 57842, - [SMALL_STATE(5246)] = 57855, - [SMALL_STATE(5247)] = 57868, - [SMALL_STATE(5248)] = 57881, - [SMALL_STATE(5249)] = 57894, - [SMALL_STATE(5250)] = 57907, - [SMALL_STATE(5251)] = 57920, - [SMALL_STATE(5252)] = 57933, - [SMALL_STATE(5253)] = 57946, - [SMALL_STATE(5254)] = 57959, - [SMALL_STATE(5255)] = 57972, - [SMALL_STATE(5256)] = 57985, - [SMALL_STATE(5257)] = 57998, - [SMALL_STATE(5258)] = 58011, - [SMALL_STATE(5259)] = 58024, - [SMALL_STATE(5260)] = 58039, - [SMALL_STATE(5261)] = 58052, - [SMALL_STATE(5262)] = 58067, - [SMALL_STATE(5263)] = 58080, - [SMALL_STATE(5264)] = 58093, - [SMALL_STATE(5265)] = 58106, - [SMALL_STATE(5266)] = 58119, - [SMALL_STATE(5267)] = 58132, - [SMALL_STATE(5268)] = 58145, - [SMALL_STATE(5269)] = 58158, - [SMALL_STATE(5270)] = 58171, - [SMALL_STATE(5271)] = 58184, - [SMALL_STATE(5272)] = 58197, - [SMALL_STATE(5273)] = 58210, - [SMALL_STATE(5274)] = 58223, - [SMALL_STATE(5275)] = 58236, - [SMALL_STATE(5276)] = 58249, - [SMALL_STATE(5277)] = 58262, - [SMALL_STATE(5278)] = 58275, - [SMALL_STATE(5279)] = 58288, - [SMALL_STATE(5280)] = 58301, - [SMALL_STATE(5281)] = 58314, - [SMALL_STATE(5282)] = 58327, - [SMALL_STATE(5283)] = 58340, - [SMALL_STATE(5284)] = 58353, - [SMALL_STATE(5285)] = 58366, - [SMALL_STATE(5286)] = 58379, - [SMALL_STATE(5287)] = 58392, - [SMALL_STATE(5288)] = 58405, - [SMALL_STATE(5289)] = 58418, - [SMALL_STATE(5290)] = 58431, - [SMALL_STATE(5291)] = 58444, - [SMALL_STATE(5292)] = 58457, - [SMALL_STATE(5293)] = 58470, - [SMALL_STATE(5294)] = 58483, - [SMALL_STATE(5295)] = 58496, - [SMALL_STATE(5296)] = 58509, - [SMALL_STATE(5297)] = 58522, - [SMALL_STATE(5298)] = 58535, - [SMALL_STATE(5299)] = 58548, - [SMALL_STATE(5300)] = 58561, - [SMALL_STATE(5301)] = 58574, - [SMALL_STATE(5302)] = 58587, - [SMALL_STATE(5303)] = 58600, - [SMALL_STATE(5304)] = 58613, - [SMALL_STATE(5305)] = 58626, - [SMALL_STATE(5306)] = 58639, - [SMALL_STATE(5307)] = 58652, - [SMALL_STATE(5308)] = 58665, - [SMALL_STATE(5309)] = 58678, - [SMALL_STATE(5310)] = 58691, - [SMALL_STATE(5311)] = 58704, - [SMALL_STATE(5312)] = 58717, - [SMALL_STATE(5313)] = 58730, - [SMALL_STATE(5314)] = 58743, - [SMALL_STATE(5315)] = 58756, - [SMALL_STATE(5316)] = 58769, - [SMALL_STATE(5317)] = 58782, - [SMALL_STATE(5318)] = 58797, - [SMALL_STATE(5319)] = 58810, - [SMALL_STATE(5320)] = 58823, - [SMALL_STATE(5321)] = 58836, - [SMALL_STATE(5322)] = 58849, - [SMALL_STATE(5323)] = 58862, - [SMALL_STATE(5324)] = 58875, - [SMALL_STATE(5325)] = 58888, - [SMALL_STATE(5326)] = 58901, - [SMALL_STATE(5327)] = 58914, - [SMALL_STATE(5328)] = 58927, - [SMALL_STATE(5329)] = 58940, - [SMALL_STATE(5330)] = 58953, - [SMALL_STATE(5331)] = 58966, - [SMALL_STATE(5332)] = 58979, - [SMALL_STATE(5333)] = 58992, - [SMALL_STATE(5334)] = 59005, - [SMALL_STATE(5335)] = 59018, - [SMALL_STATE(5336)] = 59031, - [SMALL_STATE(5337)] = 59044, - [SMALL_STATE(5338)] = 59057, - [SMALL_STATE(5339)] = 59070, - [SMALL_STATE(5340)] = 59083, - [SMALL_STATE(5341)] = 59098, - [SMALL_STATE(5342)] = 59111, - [SMALL_STATE(5343)] = 59124, - [SMALL_STATE(5344)] = 59137, - [SMALL_STATE(5345)] = 59150, - [SMALL_STATE(5346)] = 59163, - [SMALL_STATE(5347)] = 59176, - [SMALL_STATE(5348)] = 59189, - [SMALL_STATE(5349)] = 59202, - [SMALL_STATE(5350)] = 59215, - [SMALL_STATE(5351)] = 59228, - [SMALL_STATE(5352)] = 59241, - [SMALL_STATE(5353)] = 59254, - [SMALL_STATE(5354)] = 59269, - [SMALL_STATE(5355)] = 59282, - [SMALL_STATE(5356)] = 59295, - [SMALL_STATE(5357)] = 59308, - [SMALL_STATE(5358)] = 59321, - [SMALL_STATE(5359)] = 59334, - [SMALL_STATE(5360)] = 59347, - [SMALL_STATE(5361)] = 59360, - [SMALL_STATE(5362)] = 59373, - [SMALL_STATE(5363)] = 59386, - [SMALL_STATE(5364)] = 59399, - [SMALL_STATE(5365)] = 59412, - [SMALL_STATE(5366)] = 59425, - [SMALL_STATE(5367)] = 59438, - [SMALL_STATE(5368)] = 59451, - [SMALL_STATE(5369)] = 59464, - [SMALL_STATE(5370)] = 59477, - [SMALL_STATE(5371)] = 59490, - [SMALL_STATE(5372)] = 59503, - [SMALL_STATE(5373)] = 59516, - [SMALL_STATE(5374)] = 59529, - [SMALL_STATE(5375)] = 59542, - [SMALL_STATE(5376)] = 59555, - [SMALL_STATE(5377)] = 59568, - [SMALL_STATE(5378)] = 59581, - [SMALL_STATE(5379)] = 59594, - [SMALL_STATE(5380)] = 59607, - [SMALL_STATE(5381)] = 59620, - [SMALL_STATE(5382)] = 59633, - [SMALL_STATE(5383)] = 59646, - [SMALL_STATE(5384)] = 59659, - [SMALL_STATE(5385)] = 59672, - [SMALL_STATE(5386)] = 59685, - [SMALL_STATE(5387)] = 59698, - [SMALL_STATE(5388)] = 59711, - [SMALL_STATE(5389)] = 59724, - [SMALL_STATE(5390)] = 59737, - [SMALL_STATE(5391)] = 59750, - [SMALL_STATE(5392)] = 59763, - [SMALL_STATE(5393)] = 59776, - [SMALL_STATE(5394)] = 59789, - [SMALL_STATE(5395)] = 59802, - [SMALL_STATE(5396)] = 59815, - [SMALL_STATE(5397)] = 59828, - [SMALL_STATE(5398)] = 59841, - [SMALL_STATE(5399)] = 59854, - [SMALL_STATE(5400)] = 59867, - [SMALL_STATE(5401)] = 59880, - [SMALL_STATE(5402)] = 59893, - [SMALL_STATE(5403)] = 59906, - [SMALL_STATE(5404)] = 59919, - [SMALL_STATE(5405)] = 59934, - [SMALL_STATE(5406)] = 59947, - [SMALL_STATE(5407)] = 59960, - [SMALL_STATE(5408)] = 59973, - [SMALL_STATE(5409)] = 59986, - [SMALL_STATE(5410)] = 59999, - [SMALL_STATE(5411)] = 60012, - [SMALL_STATE(5412)] = 60025, - [SMALL_STATE(5413)] = 60038, - [SMALL_STATE(5414)] = 60051, - [SMALL_STATE(5415)] = 60064, - [SMALL_STATE(5416)] = 60077, - [SMALL_STATE(5417)] = 60090, - [SMALL_STATE(5418)] = 60103, - [SMALL_STATE(5419)] = 60116, - [SMALL_STATE(5420)] = 60129, - [SMALL_STATE(5421)] = 60142, - [SMALL_STATE(5422)] = 60155, - [SMALL_STATE(5423)] = 60168, - [SMALL_STATE(5424)] = 60181, - [SMALL_STATE(5425)] = 60194, - [SMALL_STATE(5426)] = 60207, - [SMALL_STATE(5427)] = 60220, - [SMALL_STATE(5428)] = 60233, - [SMALL_STATE(5429)] = 60246, - [SMALL_STATE(5430)] = 60259, - [SMALL_STATE(5431)] = 60272, - [SMALL_STATE(5432)] = 60285, - [SMALL_STATE(5433)] = 60298, - [SMALL_STATE(5434)] = 60311, - [SMALL_STATE(5435)] = 60324, - [SMALL_STATE(5436)] = 60337, - [SMALL_STATE(5437)] = 60350, - [SMALL_STATE(5438)] = 60363, - [SMALL_STATE(5439)] = 60376, - [SMALL_STATE(5440)] = 60389, - [SMALL_STATE(5441)] = 60402, - [SMALL_STATE(5442)] = 60415, - [SMALL_STATE(5443)] = 60428, - [SMALL_STATE(5444)] = 60441, - [SMALL_STATE(5445)] = 60454, - [SMALL_STATE(5446)] = 60467, - [SMALL_STATE(5447)] = 60480, - [SMALL_STATE(5448)] = 60493, - [SMALL_STATE(5449)] = 60506, - [SMALL_STATE(5450)] = 60519, - [SMALL_STATE(5451)] = 60532, - [SMALL_STATE(5452)] = 60545, - [SMALL_STATE(5453)] = 60558, - [SMALL_STATE(5454)] = 60571, - [SMALL_STATE(5455)] = 60584, - [SMALL_STATE(5456)] = 60597, - [SMALL_STATE(5457)] = 60610, - [SMALL_STATE(5458)] = 60623, - [SMALL_STATE(5459)] = 60636, - [SMALL_STATE(5460)] = 60649, - [SMALL_STATE(5461)] = 60662, - [SMALL_STATE(5462)] = 60675, - [SMALL_STATE(5463)] = 60688, - [SMALL_STATE(5464)] = 60701, - [SMALL_STATE(5465)] = 60714, - [SMALL_STATE(5466)] = 60727, - [SMALL_STATE(5467)] = 60742, - [SMALL_STATE(5468)] = 60755, - [SMALL_STATE(5469)] = 60768, - [SMALL_STATE(5470)] = 60781, - [SMALL_STATE(5471)] = 60794, - [SMALL_STATE(5472)] = 60809, - [SMALL_STATE(5473)] = 60822, - [SMALL_STATE(5474)] = 60835, - [SMALL_STATE(5475)] = 60848, - [SMALL_STATE(5476)] = 60861, - [SMALL_STATE(5477)] = 60874, - [SMALL_STATE(5478)] = 60887, - [SMALL_STATE(5479)] = 60900, - [SMALL_STATE(5480)] = 60913, - [SMALL_STATE(5481)] = 60926, - [SMALL_STATE(5482)] = 60939, - [SMALL_STATE(5483)] = 60952, - [SMALL_STATE(5484)] = 60965, - [SMALL_STATE(5485)] = 60978, - [SMALL_STATE(5486)] = 60991, - [SMALL_STATE(5487)] = 61004, - [SMALL_STATE(5488)] = 61017, - [SMALL_STATE(5489)] = 61030, - [SMALL_STATE(5490)] = 61043, - [SMALL_STATE(5491)] = 61056, - [SMALL_STATE(5492)] = 61069, - [SMALL_STATE(5493)] = 61082, - [SMALL_STATE(5494)] = 61095, - [SMALL_STATE(5495)] = 61108, - [SMALL_STATE(5496)] = 61121, - [SMALL_STATE(5497)] = 61134, - [SMALL_STATE(5498)] = 61147, - [SMALL_STATE(5499)] = 61160, - [SMALL_STATE(5500)] = 61173, - [SMALL_STATE(5501)] = 61186, - [SMALL_STATE(5502)] = 61199, - [SMALL_STATE(5503)] = 61212, - [SMALL_STATE(5504)] = 61225, - [SMALL_STATE(5505)] = 61238, - [SMALL_STATE(5506)] = 61251, - [SMALL_STATE(5507)] = 61264, - [SMALL_STATE(5508)] = 61277, - [SMALL_STATE(5509)] = 61290, - [SMALL_STATE(5510)] = 61305, - [SMALL_STATE(5511)] = 61318, - [SMALL_STATE(5512)] = 61331, - [SMALL_STATE(5513)] = 61344, - [SMALL_STATE(5514)] = 61357, - [SMALL_STATE(5515)] = 61370, - [SMALL_STATE(5516)] = 61383, - [SMALL_STATE(5517)] = 61396, - [SMALL_STATE(5518)] = 61409, - [SMALL_STATE(5519)] = 61422, - [SMALL_STATE(5520)] = 61437, - [SMALL_STATE(5521)] = 61450, - [SMALL_STATE(5522)] = 61463, - [SMALL_STATE(5523)] = 61476, - [SMALL_STATE(5524)] = 61489, - [SMALL_STATE(5525)] = 61502, - [SMALL_STATE(5526)] = 61517, - [SMALL_STATE(5527)] = 61530, - [SMALL_STATE(5528)] = 61543, - [SMALL_STATE(5529)] = 61556, - [SMALL_STATE(5530)] = 61569, - [SMALL_STATE(5531)] = 61582, - [SMALL_STATE(5532)] = 61595, - [SMALL_STATE(5533)] = 61608, - [SMALL_STATE(5534)] = 61621, - [SMALL_STATE(5535)] = 61634, - [SMALL_STATE(5536)] = 61647, - [SMALL_STATE(5537)] = 61660, - [SMALL_STATE(5538)] = 61673, - [SMALL_STATE(5539)] = 61686, - [SMALL_STATE(5540)] = 61699, - [SMALL_STATE(5541)] = 61712, - [SMALL_STATE(5542)] = 61725, - [SMALL_STATE(5543)] = 61738, - [SMALL_STATE(5544)] = 61751, - [SMALL_STATE(5545)] = 61764, - [SMALL_STATE(5546)] = 61777, - [SMALL_STATE(5547)] = 61790, - [SMALL_STATE(5548)] = 61803, - [SMALL_STATE(5549)] = 61816, - [SMALL_STATE(5550)] = 61829, - [SMALL_STATE(5551)] = 61842, - [SMALL_STATE(5552)] = 61855, - [SMALL_STATE(5553)] = 61868, - [SMALL_STATE(5554)] = 61881, - [SMALL_STATE(5555)] = 61894, - [SMALL_STATE(5556)] = 61909, - [SMALL_STATE(5557)] = 61922, - [SMALL_STATE(5558)] = 61937, - [SMALL_STATE(5559)] = 61950, - [SMALL_STATE(5560)] = 61963, - [SMALL_STATE(5561)] = 61976, - [SMALL_STATE(5562)] = 61989, - [SMALL_STATE(5563)] = 62002, - [SMALL_STATE(5564)] = 62017, - [SMALL_STATE(5565)] = 62030, - [SMALL_STATE(5566)] = 62043, - [SMALL_STATE(5567)] = 62056, - [SMALL_STATE(5568)] = 62071, - [SMALL_STATE(5569)] = 62084, - [SMALL_STATE(5570)] = 62097, - [SMALL_STATE(5571)] = 62110, - [SMALL_STATE(5572)] = 62123, - [SMALL_STATE(5573)] = 62136, - [SMALL_STATE(5574)] = 62149, - [SMALL_STATE(5575)] = 62162, - [SMALL_STATE(5576)] = 62175, - [SMALL_STATE(5577)] = 62188, - [SMALL_STATE(5578)] = 62201, - [SMALL_STATE(5579)] = 62214, - [SMALL_STATE(5580)] = 62227, - [SMALL_STATE(5581)] = 62240, - [SMALL_STATE(5582)] = 62253, - [SMALL_STATE(5583)] = 62266, - [SMALL_STATE(5584)] = 62281, - [SMALL_STATE(5585)] = 62294, - [SMALL_STATE(5586)] = 62307, - [SMALL_STATE(5587)] = 62320, - [SMALL_STATE(5588)] = 62333, - [SMALL_STATE(5589)] = 62346, - [SMALL_STATE(5590)] = 62359, - [SMALL_STATE(5591)] = 62372, - [SMALL_STATE(5592)] = 62385, - [SMALL_STATE(5593)] = 62398, - [SMALL_STATE(5594)] = 62411, - [SMALL_STATE(5595)] = 62424, - [SMALL_STATE(5596)] = 62437, - [SMALL_STATE(5597)] = 62450, - [SMALL_STATE(5598)] = 62463, - [SMALL_STATE(5599)] = 62478, - [SMALL_STATE(5600)] = 62491, - [SMALL_STATE(5601)] = 62504, - [SMALL_STATE(5602)] = 62517, - [SMALL_STATE(5603)] = 62530, - [SMALL_STATE(5604)] = 62543, - [SMALL_STATE(5605)] = 62556, - [SMALL_STATE(5606)] = 62569, - [SMALL_STATE(5607)] = 62582, - [SMALL_STATE(5608)] = 62595, - [SMALL_STATE(5609)] = 62610, - [SMALL_STATE(5610)] = 62623, - [SMALL_STATE(5611)] = 62636, - [SMALL_STATE(5612)] = 62649, - [SMALL_STATE(5613)] = 62662, - [SMALL_STATE(5614)] = 62675, - [SMALL_STATE(5615)] = 62688, - [SMALL_STATE(5616)] = 62701, - [SMALL_STATE(5617)] = 62714, - [SMALL_STATE(5618)] = 62727, - [SMALL_STATE(5619)] = 62742, - [SMALL_STATE(5620)] = 62755, - [SMALL_STATE(5621)] = 62768, - [SMALL_STATE(5622)] = 62781, - [SMALL_STATE(5623)] = 62794, - [SMALL_STATE(5624)] = 62807, - [SMALL_STATE(5625)] = 62820, - [SMALL_STATE(5626)] = 62833, - [SMALL_STATE(5627)] = 62846, - [SMALL_STATE(5628)] = 62859, - [SMALL_STATE(5629)] = 62872, - [SMALL_STATE(5630)] = 62885, - [SMALL_STATE(5631)] = 62898, - [SMALL_STATE(5632)] = 62911, - [SMALL_STATE(5633)] = 62924, - [SMALL_STATE(5634)] = 62937, - [SMALL_STATE(5635)] = 62950, - [SMALL_STATE(5636)] = 62963, - [SMALL_STATE(5637)] = 62976, - [SMALL_STATE(5638)] = 62989, - [SMALL_STATE(5639)] = 63002, - [SMALL_STATE(5640)] = 63015, - [SMALL_STATE(5641)] = 63028, - [SMALL_STATE(5642)] = 63041, - [SMALL_STATE(5643)] = 63054, - [SMALL_STATE(5644)] = 63067, - [SMALL_STATE(5645)] = 63080, - [SMALL_STATE(5646)] = 63093, - [SMALL_STATE(5647)] = 63106, - [SMALL_STATE(5648)] = 63119, - [SMALL_STATE(5649)] = 63132, - [SMALL_STATE(5650)] = 63145, - [SMALL_STATE(5651)] = 63158, - [SMALL_STATE(5652)] = 63171, - [SMALL_STATE(5653)] = 63184, - [SMALL_STATE(5654)] = 63197, - [SMALL_STATE(5655)] = 63210, - [SMALL_STATE(5656)] = 63223, - [SMALL_STATE(5657)] = 63236, - [SMALL_STATE(5658)] = 63249, - [SMALL_STATE(5659)] = 63264, - [SMALL_STATE(5660)] = 63279, - [SMALL_STATE(5661)] = 63292, - [SMALL_STATE(5662)] = 63305, - [SMALL_STATE(5663)] = 63318, - [SMALL_STATE(5664)] = 63331, - [SMALL_STATE(5665)] = 63344, - [SMALL_STATE(5666)] = 63357, - [SMALL_STATE(5667)] = 63370, - [SMALL_STATE(5668)] = 63383, - [SMALL_STATE(5669)] = 63396, - [SMALL_STATE(5670)] = 63409, - [SMALL_STATE(5671)] = 63422, - [SMALL_STATE(5672)] = 63435, - [SMALL_STATE(5673)] = 63448, - [SMALL_STATE(5674)] = 63461, - [SMALL_STATE(5675)] = 63474, - [SMALL_STATE(5676)] = 63487, - [SMALL_STATE(5677)] = 63500, - [SMALL_STATE(5678)] = 63513, - [SMALL_STATE(5679)] = 63526, - [SMALL_STATE(5680)] = 63539, - [SMALL_STATE(5681)] = 63552, - [SMALL_STATE(5682)] = 63567, - [SMALL_STATE(5683)] = 63580, - [SMALL_STATE(5684)] = 63593, - [SMALL_STATE(5685)] = 63606, - [SMALL_STATE(5686)] = 63619, - [SMALL_STATE(5687)] = 63632, - [SMALL_STATE(5688)] = 63645, - [SMALL_STATE(5689)] = 63658, - [SMALL_STATE(5690)] = 63671, - [SMALL_STATE(5691)] = 63684, - [SMALL_STATE(5692)] = 63697, - [SMALL_STATE(5693)] = 63710, - [SMALL_STATE(5694)] = 63723, - [SMALL_STATE(5695)] = 63736, - [SMALL_STATE(5696)] = 63749, - [SMALL_STATE(5697)] = 63764, - [SMALL_STATE(5698)] = 63777, - [SMALL_STATE(5699)] = 63790, - [SMALL_STATE(5700)] = 63803, - [SMALL_STATE(5701)] = 63816, - [SMALL_STATE(5702)] = 63829, - [SMALL_STATE(5703)] = 63842, - [SMALL_STATE(5704)] = 63855, - [SMALL_STATE(5705)] = 63868, - [SMALL_STATE(5706)] = 63881, - [SMALL_STATE(5707)] = 63896, - [SMALL_STATE(5708)] = 63909, - [SMALL_STATE(5709)] = 63924, - [SMALL_STATE(5710)] = 63937, - [SMALL_STATE(5711)] = 63950, - [SMALL_STATE(5712)] = 63963, - [SMALL_STATE(5713)] = 63976, - [SMALL_STATE(5714)] = 63989, - [SMALL_STATE(5715)] = 64002, - [SMALL_STATE(5716)] = 64015, - [SMALL_STATE(5717)] = 64028, - [SMALL_STATE(5718)] = 64041, - [SMALL_STATE(5719)] = 64054, - [SMALL_STATE(5720)] = 64067, - [SMALL_STATE(5721)] = 64080, - [SMALL_STATE(5722)] = 64093, - [SMALL_STATE(5723)] = 64106, - [SMALL_STATE(5724)] = 64119, - [SMALL_STATE(5725)] = 64132, - [SMALL_STATE(5726)] = 64145, - [SMALL_STATE(5727)] = 64158, - [SMALL_STATE(5728)] = 64171, - [SMALL_STATE(5729)] = 64184, - [SMALL_STATE(5730)] = 64197, - [SMALL_STATE(5731)] = 64210, - [SMALL_STATE(5732)] = 64223, - [SMALL_STATE(5733)] = 64236, - [SMALL_STATE(5734)] = 64249, - [SMALL_STATE(5735)] = 64262, - [SMALL_STATE(5736)] = 64275, - [SMALL_STATE(5737)] = 64288, - [SMALL_STATE(5738)] = 64301, - [SMALL_STATE(5739)] = 64314, - [SMALL_STATE(5740)] = 64327, - [SMALL_STATE(5741)] = 64340, - [SMALL_STATE(5742)] = 64353, - [SMALL_STATE(5743)] = 64366, - [SMALL_STATE(5744)] = 64379, - [SMALL_STATE(5745)] = 64392, - [SMALL_STATE(5746)] = 64405, - [SMALL_STATE(5747)] = 64418, - [SMALL_STATE(5748)] = 64431, - [SMALL_STATE(5749)] = 64444, - [SMALL_STATE(5750)] = 64457, - [SMALL_STATE(5751)] = 64470, - [SMALL_STATE(5752)] = 64483, - [SMALL_STATE(5753)] = 64496, - [SMALL_STATE(5754)] = 64509, - [SMALL_STATE(5755)] = 64522, - [SMALL_STATE(5756)] = 64535, - [SMALL_STATE(5757)] = 64548, - [SMALL_STATE(5758)] = 64561, - [SMALL_STATE(5759)] = 64574, - [SMALL_STATE(5760)] = 64587, - [SMALL_STATE(5761)] = 64600, - [SMALL_STATE(5762)] = 64613, - [SMALL_STATE(5763)] = 64626, - [SMALL_STATE(5764)] = 64639, - [SMALL_STATE(5765)] = 64652, - [SMALL_STATE(5766)] = 64665, - [SMALL_STATE(5767)] = 64678, - [SMALL_STATE(5768)] = 64691, - [SMALL_STATE(5769)] = 64704, - [SMALL_STATE(5770)] = 64717, - [SMALL_STATE(5771)] = 64730, - [SMALL_STATE(5772)] = 64743, - [SMALL_STATE(5773)] = 64756, - [SMALL_STATE(5774)] = 64769, - [SMALL_STATE(5775)] = 64782, - [SMALL_STATE(5776)] = 64797, - [SMALL_STATE(5777)] = 64810, - [SMALL_STATE(5778)] = 64823, - [SMALL_STATE(5779)] = 64836, - [SMALL_STATE(5780)] = 64849, - [SMALL_STATE(5781)] = 64862, - [SMALL_STATE(5782)] = 64875, - [SMALL_STATE(5783)] = 64888, - [SMALL_STATE(5784)] = 64901, - [SMALL_STATE(5785)] = 64914, - [SMALL_STATE(5786)] = 64927, - [SMALL_STATE(5787)] = 64940, - [SMALL_STATE(5788)] = 64953, - [SMALL_STATE(5789)] = 64966, - [SMALL_STATE(5790)] = 64979, - [SMALL_STATE(5791)] = 64992, - [SMALL_STATE(5792)] = 65007, - [SMALL_STATE(5793)] = 65020, - [SMALL_STATE(5794)] = 65033, - [SMALL_STATE(5795)] = 65046, - [SMALL_STATE(5796)] = 65059, - [SMALL_STATE(5797)] = 65072, - [SMALL_STATE(5798)] = 65085, - [SMALL_STATE(5799)] = 65098, - [SMALL_STATE(5800)] = 65111, - [SMALL_STATE(5801)] = 65124, - [SMALL_STATE(5802)] = 65137, - [SMALL_STATE(5803)] = 65150, - [SMALL_STATE(5804)] = 65163, - [SMALL_STATE(5805)] = 65176, - [SMALL_STATE(5806)] = 65189, - [SMALL_STATE(5807)] = 65202, - [SMALL_STATE(5808)] = 65215, - [SMALL_STATE(5809)] = 65228, - [SMALL_STATE(5810)] = 65241, - [SMALL_STATE(5811)] = 65254, - [SMALL_STATE(5812)] = 65267, - [SMALL_STATE(5813)] = 65280, - [SMALL_STATE(5814)] = 65293, - [SMALL_STATE(5815)] = 65306, - [SMALL_STATE(5816)] = 65319, - [SMALL_STATE(5817)] = 65332, - [SMALL_STATE(5818)] = 65345, - [SMALL_STATE(5819)] = 65358, - [SMALL_STATE(5820)] = 65371, - [SMALL_STATE(5821)] = 65384, - [SMALL_STATE(5822)] = 65397, - [SMALL_STATE(5823)] = 65410, - [SMALL_STATE(5824)] = 65423, - [SMALL_STATE(5825)] = 65436, - [SMALL_STATE(5826)] = 65449, - [SMALL_STATE(5827)] = 65462, - [SMALL_STATE(5828)] = 65475, - [SMALL_STATE(5829)] = 65488, - [SMALL_STATE(5830)] = 65501, - [SMALL_STATE(5831)] = 65514, - [SMALL_STATE(5832)] = 65527, - [SMALL_STATE(5833)] = 65540, - [SMALL_STATE(5834)] = 65553, - [SMALL_STATE(5835)] = 65566, - [SMALL_STATE(5836)] = 65579, - [SMALL_STATE(5837)] = 65592, - [SMALL_STATE(5838)] = 65605, - [SMALL_STATE(5839)] = 65618, - [SMALL_STATE(5840)] = 65631, - [SMALL_STATE(5841)] = 65644, - [SMALL_STATE(5842)] = 65657, - [SMALL_STATE(5843)] = 65670, - [SMALL_STATE(5844)] = 65683, - [SMALL_STATE(5845)] = 65696, - [SMALL_STATE(5846)] = 65709, - [SMALL_STATE(5847)] = 65722, - [SMALL_STATE(5848)] = 65735, - [SMALL_STATE(5849)] = 65748, - [SMALL_STATE(5850)] = 65761, - [SMALL_STATE(5851)] = 65774, - [SMALL_STATE(5852)] = 65787, - [SMALL_STATE(5853)] = 65800, - [SMALL_STATE(5854)] = 65813, - [SMALL_STATE(5855)] = 65826, - [SMALL_STATE(5856)] = 65839, - [SMALL_STATE(5857)] = 65852, - [SMALL_STATE(5858)] = 65865, - [SMALL_STATE(5859)] = 65878, - [SMALL_STATE(5860)] = 65891, - [SMALL_STATE(5861)] = 65904, - [SMALL_STATE(5862)] = 65917, - [SMALL_STATE(5863)] = 65930, - [SMALL_STATE(5864)] = 65943, - [SMALL_STATE(5865)] = 65956, - [SMALL_STATE(5866)] = 65969, - [SMALL_STATE(5867)] = 65982, - [SMALL_STATE(5868)] = 65995, - [SMALL_STATE(5869)] = 66008, - [SMALL_STATE(5870)] = 66021, - [SMALL_STATE(5871)] = 66034, - [SMALL_STATE(5872)] = 66047, - [SMALL_STATE(5873)] = 66060, - [SMALL_STATE(5874)] = 66073, - [SMALL_STATE(5875)] = 66086, - [SMALL_STATE(5876)] = 66099, - [SMALL_STATE(5877)] = 66112, - [SMALL_STATE(5878)] = 66125, - [SMALL_STATE(5879)] = 66138, - [SMALL_STATE(5880)] = 66151, - [SMALL_STATE(5881)] = 66164, - [SMALL_STATE(5882)] = 66179, - [SMALL_STATE(5883)] = 66192, - [SMALL_STATE(5884)] = 66205, - [SMALL_STATE(5885)] = 66218, - [SMALL_STATE(5886)] = 66231, - [SMALL_STATE(5887)] = 66244, - [SMALL_STATE(5888)] = 66257, - [SMALL_STATE(5889)] = 66270, - [SMALL_STATE(5890)] = 66283, - [SMALL_STATE(5891)] = 66296, - [SMALL_STATE(5892)] = 66309, - [SMALL_STATE(5893)] = 66322, - [SMALL_STATE(5894)] = 66335, - [SMALL_STATE(5895)] = 66348, - [SMALL_STATE(5896)] = 66361, - [SMALL_STATE(5897)] = 66374, - [SMALL_STATE(5898)] = 66387, - [SMALL_STATE(5899)] = 66400, - [SMALL_STATE(5900)] = 66413, - [SMALL_STATE(5901)] = 66426, - [SMALL_STATE(5902)] = 66439, - [SMALL_STATE(5903)] = 66452, - [SMALL_STATE(5904)] = 66465, - [SMALL_STATE(5905)] = 66478, - [SMALL_STATE(5906)] = 66491, - [SMALL_STATE(5907)] = 66504, - [SMALL_STATE(5908)] = 66517, - [SMALL_STATE(5909)] = 66530, - [SMALL_STATE(5910)] = 66543, - [SMALL_STATE(5911)] = 66556, - [SMALL_STATE(5912)] = 66569, - [SMALL_STATE(5913)] = 66582, - [SMALL_STATE(5914)] = 66595, - [SMALL_STATE(5915)] = 66608, - [SMALL_STATE(5916)] = 66621, + [SMALL_STATE(3866)] = 0, + [SMALL_STATE(3867)] = 77, + [SMALL_STATE(3868)] = 154, + [SMALL_STATE(3869)] = 225, + [SMALL_STATE(3870)] = 295, + [SMALL_STATE(3871)] = 365, + [SMALL_STATE(3872)] = 436, + [SMALL_STATE(3873)] = 507, + [SMALL_STATE(3874)] = 575, + [SMALL_STATE(3875)] = 667, + [SMALL_STATE(3876)] = 732, + [SMALL_STATE(3877)] = 797, + [SMALL_STATE(3878)] = 862, + [SMALL_STATE(3879)] = 927, + [SMALL_STATE(3880)] = 992, + [SMALL_STATE(3881)] = 1057, + [SMALL_STATE(3882)] = 1122, + [SMALL_STATE(3883)] = 1187, + [SMALL_STATE(3884)] = 1275, + [SMALL_STATE(3885)] = 1363, + [SMALL_STATE(3886)] = 1451, + [SMALL_STATE(3887)] = 1539, + [SMALL_STATE(3888)] = 1627, + [SMALL_STATE(3889)] = 1715, + [SMALL_STATE(3890)] = 1803, + [SMALL_STATE(3891)] = 1891, + [SMALL_STATE(3892)] = 1979, + [SMALL_STATE(3893)] = 2067, + [SMALL_STATE(3894)] = 2155, + [SMALL_STATE(3895)] = 2243, + [SMALL_STATE(3896)] = 2331, + [SMALL_STATE(3897)] = 2419, + [SMALL_STATE(3898)] = 2507, + [SMALL_STATE(3899)] = 2595, + [SMALL_STATE(3900)] = 2683, + [SMALL_STATE(3901)] = 2771, + [SMALL_STATE(3902)] = 2859, + [SMALL_STATE(3903)] = 2947, + [SMALL_STATE(3904)] = 3035, + [SMALL_STATE(3905)] = 3123, + [SMALL_STATE(3906)] = 3211, + [SMALL_STATE(3907)] = 3299, + [SMALL_STATE(3908)] = 3399, + [SMALL_STATE(3909)] = 3496, + [SMALL_STATE(3910)] = 3593, + [SMALL_STATE(3911)] = 3690, + [SMALL_STATE(3912)] = 3787, + [SMALL_STATE(3913)] = 3884, + [SMALL_STATE(3914)] = 3981, + [SMALL_STATE(3915)] = 4078, + [SMALL_STATE(3916)] = 4155, + [SMALL_STATE(3917)] = 4232, + [SMALL_STATE(3918)] = 4308, + [SMALL_STATE(3919)] = 4384, + [SMALL_STATE(3920)] = 4460, + [SMALL_STATE(3921)] = 4536, + [SMALL_STATE(3922)] = 4603, + [SMALL_STATE(3923)] = 4675, + [SMALL_STATE(3924)] = 4747, + [SMALL_STATE(3925)] = 4819, + [SMALL_STATE(3926)] = 4891, + [SMALL_STATE(3927)] = 4963, + [SMALL_STATE(3928)] = 5035, + [SMALL_STATE(3929)] = 5107, + [SMALL_STATE(3930)] = 5179, + [SMALL_STATE(3931)] = 5251, + [SMALL_STATE(3932)] = 5323, + [SMALL_STATE(3933)] = 5395, + [SMALL_STATE(3934)] = 5467, + [SMALL_STATE(3935)] = 5539, + [SMALL_STATE(3936)] = 5611, + [SMALL_STATE(3937)] = 5683, + [SMALL_STATE(3938)] = 5755, + [SMALL_STATE(3939)] = 5827, + [SMALL_STATE(3940)] = 5899, + [SMALL_STATE(3941)] = 5971, + [SMALL_STATE(3942)] = 6043, + [SMALL_STATE(3943)] = 6115, + [SMALL_STATE(3944)] = 6187, + [SMALL_STATE(3945)] = 6259, + [SMALL_STATE(3946)] = 6331, + [SMALL_STATE(3947)] = 6403, + [SMALL_STATE(3948)] = 6475, + [SMALL_STATE(3949)] = 6547, + [SMALL_STATE(3950)] = 6619, + [SMALL_STATE(3951)] = 6691, + [SMALL_STATE(3952)] = 6765, + [SMALL_STATE(3953)] = 6839, + [SMALL_STATE(3954)] = 6911, + [SMALL_STATE(3955)] = 6983, + [SMALL_STATE(3956)] = 7055, + [SMALL_STATE(3957)] = 7127, + [SMALL_STATE(3958)] = 7199, + [SMALL_STATE(3959)] = 7271, + [SMALL_STATE(3960)] = 7343, + [SMALL_STATE(3961)] = 7415, + [SMALL_STATE(3962)] = 7487, + [SMALL_STATE(3963)] = 7559, + [SMALL_STATE(3964)] = 7631, + [SMALL_STATE(3965)] = 7703, + [SMALL_STATE(3966)] = 7775, + [SMALL_STATE(3967)] = 7847, + [SMALL_STATE(3968)] = 7921, + [SMALL_STATE(3969)] = 7993, + [SMALL_STATE(3970)] = 8065, + [SMALL_STATE(3971)] = 8137, + [SMALL_STATE(3972)] = 8209, + [SMALL_STATE(3973)] = 8281, + [SMALL_STATE(3974)] = 8353, + [SMALL_STATE(3975)] = 8425, + [SMALL_STATE(3976)] = 8497, + [SMALL_STATE(3977)] = 8569, + [SMALL_STATE(3978)] = 8641, + [SMALL_STATE(3979)] = 8713, + [SMALL_STATE(3980)] = 8785, + [SMALL_STATE(3981)] = 8857, + [SMALL_STATE(3982)] = 8929, + [SMALL_STATE(3983)] = 9003, + [SMALL_STATE(3984)] = 9075, + [SMALL_STATE(3985)] = 9147, + [SMALL_STATE(3986)] = 9219, + [SMALL_STATE(3987)] = 9291, + [SMALL_STATE(3988)] = 9363, + [SMALL_STATE(3989)] = 9435, + [SMALL_STATE(3990)] = 9507, + [SMALL_STATE(3991)] = 9579, + [SMALL_STATE(3992)] = 9651, + [SMALL_STATE(3993)] = 9723, + [SMALL_STATE(3994)] = 9795, + [SMALL_STATE(3995)] = 9867, + [SMALL_STATE(3996)] = 9939, + [SMALL_STATE(3997)] = 10011, + [SMALL_STATE(3998)] = 10083, + [SMALL_STATE(3999)] = 10155, + [SMALL_STATE(4000)] = 10227, + [SMALL_STATE(4001)] = 10299, + [SMALL_STATE(4002)] = 10371, + [SMALL_STATE(4003)] = 10443, + [SMALL_STATE(4004)] = 10515, + [SMALL_STATE(4005)] = 10587, + [SMALL_STATE(4006)] = 10659, + [SMALL_STATE(4007)] = 10731, + [SMALL_STATE(4008)] = 10803, + [SMALL_STATE(4009)] = 10875, + [SMALL_STATE(4010)] = 10947, + [SMALL_STATE(4011)] = 11019, + [SMALL_STATE(4012)] = 11091, + [SMALL_STATE(4013)] = 11163, + [SMALL_STATE(4014)] = 11235, + [SMALL_STATE(4015)] = 11307, + [SMALL_STATE(4016)] = 11379, + [SMALL_STATE(4017)] = 11444, + [SMALL_STATE(4018)] = 11512, + [SMALL_STATE(4019)] = 11575, + [SMALL_STATE(4020)] = 11638, + [SMALL_STATE(4021)] = 11700, + [SMALL_STATE(4022)] = 11760, + [SMALL_STATE(4023)] = 11820, + [SMALL_STATE(4024)] = 11874, + [SMALL_STATE(4025)] = 11928, + [SMALL_STATE(4026)] = 11987, + [SMALL_STATE(4027)] = 12046, + [SMALL_STATE(4028)] = 12105, + [SMALL_STATE(4029)] = 12189, + [SMALL_STATE(4030)] = 12273, + [SMALL_STATE(4031)] = 12357, + [SMALL_STATE(4032)] = 12441, + [SMALL_STATE(4033)] = 12525, + [SMALL_STATE(4034)] = 12609, + [SMALL_STATE(4035)] = 12687, + [SMALL_STATE(4036)] = 12771, + [SMALL_STATE(4037)] = 12849, + [SMALL_STATE(4038)] = 12927, + [SMALL_STATE(4039)] = 12995, + [SMALL_STATE(4040)] = 13079, + [SMALL_STATE(4041)] = 13163, + [SMALL_STATE(4042)] = 13247, + [SMALL_STATE(4043)] = 13331, + [SMALL_STATE(4044)] = 13415, + [SMALL_STATE(4045)] = 13493, + [SMALL_STATE(4046)] = 13571, + [SMALL_STATE(4047)] = 13632, + [SMALL_STATE(4048)] = 13693, + [SMALL_STATE(4049)] = 13754, + [SMALL_STATE(4050)] = 13810, + [SMALL_STATE(4051)] = 13864, + [SMALL_STATE(4052)] = 13920, + [SMALL_STATE(4053)] = 13986, + [SMALL_STATE(4054)] = 14058, + [SMALL_STATE(4055)] = 14130, + [SMALL_STATE(4056)] = 14205, + [SMALL_STATE(4057)] = 14280, + [SMALL_STATE(4058)] = 14355, + [SMALL_STATE(4059)] = 14430, + [SMALL_STATE(4060)] = 14505, + [SMALL_STATE(4061)] = 14580, + [SMALL_STATE(4062)] = 14655, + [SMALL_STATE(4063)] = 14724, + [SMALL_STATE(4064)] = 14799, + [SMALL_STATE(4065)] = 14870, + [SMALL_STATE(4066)] = 14945, + [SMALL_STATE(4067)] = 15020, + [SMALL_STATE(4068)] = 15095, + [SMALL_STATE(4069)] = 15170, + [SMALL_STATE(4070)] = 15238, + [SMALL_STATE(4071)] = 15306, + [SMALL_STATE(4072)] = 15374, + [SMALL_STATE(4073)] = 15442, + [SMALL_STATE(4074)] = 15510, + [SMALL_STATE(4075)] = 15578, + [SMALL_STATE(4076)] = 15646, + [SMALL_STATE(4077)] = 15714, + [SMALL_STATE(4078)] = 15778, + [SMALL_STATE(4079)] = 15846, + [SMALL_STATE(4080)] = 15914, + [SMALL_STATE(4081)] = 15982, + [SMALL_STATE(4082)] = 16050, + [SMALL_STATE(4083)] = 16118, + [SMALL_STATE(4084)] = 16186, + [SMALL_STATE(4085)] = 16238, + [SMALL_STATE(4086)] = 16306, + [SMALL_STATE(4087)] = 16374, + [SMALL_STATE(4088)] = 16442, + [SMALL_STATE(4089)] = 16506, + [SMALL_STATE(4090)] = 16574, + [SMALL_STATE(4091)] = 16628, + [SMALL_STATE(4092)] = 16696, + [SMALL_STATE(4093)] = 16764, + [SMALL_STATE(4094)] = 16832, + [SMALL_STATE(4095)] = 16900, + [SMALL_STATE(4096)] = 16968, + [SMALL_STATE(4097)] = 17036, + [SMALL_STATE(4098)] = 17104, + [SMALL_STATE(4099)] = 17172, + [SMALL_STATE(4100)] = 17240, + [SMALL_STATE(4101)] = 17308, + [SMALL_STATE(4102)] = 17360, + [SMALL_STATE(4103)] = 17428, + [SMALL_STATE(4104)] = 17496, + [SMALL_STATE(4105)] = 17550, + [SMALL_STATE(4106)] = 17618, + [SMALL_STATE(4107)] = 17686, + [SMALL_STATE(4108)] = 17736, + [SMALL_STATE(4109)] = 17804, + [SMALL_STATE(4110)] = 17872, + [SMALL_STATE(4111)] = 17940, + [SMALL_STATE(4112)] = 17990, + [SMALL_STATE(4113)] = 18042, + [SMALL_STATE(4114)] = 18094, + [SMALL_STATE(4115)] = 18146, + [SMALL_STATE(4116)] = 18198, + [SMALL_STATE(4117)] = 18266, + [SMALL_STATE(4118)] = 18318, + [SMALL_STATE(4119)] = 18386, + [SMALL_STATE(4120)] = 18438, + [SMALL_STATE(4121)] = 18506, + [SMALL_STATE(4122)] = 18573, + [SMALL_STATE(4123)] = 18624, + [SMALL_STATE(4124)] = 18675, + [SMALL_STATE(4125)] = 18742, + [SMALL_STATE(4126)] = 18809, + [SMALL_STATE(4127)] = 18862, + [SMALL_STATE(4128)] = 18931, + [SMALL_STATE(4129)] = 18998, + [SMALL_STATE(4130)] = 19065, + [SMALL_STATE(4131)] = 19132, + [SMALL_STATE(4132)] = 19199, + [SMALL_STATE(4133)] = 19266, + [SMALL_STATE(4134)] = 19333, + [SMALL_STATE(4135)] = 19400, + [SMALL_STATE(4136)] = 19451, + [SMALL_STATE(4137)] = 19502, + [SMALL_STATE(4138)] = 19569, + [SMALL_STATE(4139)] = 19638, + [SMALL_STATE(4140)] = 19707, + [SMALL_STATE(4141)] = 19774, + [SMALL_STATE(4142)] = 19841, + [SMALL_STATE(4143)] = 19910, + [SMALL_STATE(4144)] = 19977, + [SMALL_STATE(4145)] = 20028, + [SMALL_STATE(4146)] = 20079, + [SMALL_STATE(4147)] = 20148, + [SMALL_STATE(4148)] = 20199, + [SMALL_STATE(4149)] = 20266, + [SMALL_STATE(4150)] = 20335, + [SMALL_STATE(4151)] = 20386, + [SMALL_STATE(4152)] = 20437, + [SMALL_STATE(4153)] = 20504, + [SMALL_STATE(4154)] = 20571, + [SMALL_STATE(4155)] = 20622, + [SMALL_STATE(4156)] = 20691, + [SMALL_STATE(4157)] = 20758, + [SMALL_STATE(4158)] = 20827, + [SMALL_STATE(4159)] = 20896, + [SMALL_STATE(4160)] = 20963, + [SMALL_STATE(4161)] = 21014, + [SMALL_STATE(4162)] = 21065, + [SMALL_STATE(4163)] = 21134, + [SMALL_STATE(4164)] = 21203, + [SMALL_STATE(4165)] = 21254, + [SMALL_STATE(4166)] = 21321, + [SMALL_STATE(4167)] = 21388, + [SMALL_STATE(4168)] = 21439, + [SMALL_STATE(4169)] = 21490, + [SMALL_STATE(4170)] = 21541, + [SMALL_STATE(4171)] = 21592, + [SMALL_STATE(4172)] = 21643, + [SMALL_STATE(4173)] = 21694, + [SMALL_STATE(4174)] = 21763, + [SMALL_STATE(4175)] = 21814, + [SMALL_STATE(4176)] = 21881, + [SMALL_STATE(4177)] = 21950, + [SMALL_STATE(4178)] = 22001, + [SMALL_STATE(4179)] = 22052, + [SMALL_STATE(4180)] = 22103, + [SMALL_STATE(4181)] = 22154, + [SMALL_STATE(4182)] = 22223, + [SMALL_STATE(4183)] = 22292, + [SMALL_STATE(4184)] = 22343, + [SMALL_STATE(4185)] = 22394, + [SMALL_STATE(4186)] = 22445, + [SMALL_STATE(4187)] = 22512, + [SMALL_STATE(4188)] = 22581, + [SMALL_STATE(4189)] = 22648, + [SMALL_STATE(4190)] = 22715, + [SMALL_STATE(4191)] = 22782, + [SMALL_STATE(4192)] = 22851, + [SMALL_STATE(4193)] = 22918, + [SMALL_STATE(4194)] = 22969, + [SMALL_STATE(4195)] = 23020, + [SMALL_STATE(4196)] = 23087, + [SMALL_STATE(4197)] = 23138, + [SMALL_STATE(4198)] = 23205, + [SMALL_STATE(4199)] = 23272, + [SMALL_STATE(4200)] = 23339, + [SMALL_STATE(4201)] = 23406, + [SMALL_STATE(4202)] = 23473, + [SMALL_STATE(4203)] = 23542, + [SMALL_STATE(4204)] = 23609, + [SMALL_STATE(4205)] = 23678, + [SMALL_STATE(4206)] = 23745, + [SMALL_STATE(4207)] = 23812, + [SMALL_STATE(4208)] = 23865, + [SMALL_STATE(4209)] = 23934, + [SMALL_STATE(4210)] = 24003, + [SMALL_STATE(4211)] = 24070, + [SMALL_STATE(4212)] = 24123, + [SMALL_STATE(4213)] = 24192, + [SMALL_STATE(4214)] = 24259, + [SMALL_STATE(4215)] = 24308, + [SMALL_STATE(4216)] = 24375, + [SMALL_STATE(4217)] = 24424, + [SMALL_STATE(4218)] = 24491, + [SMALL_STATE(4219)] = 24560, + [SMALL_STATE(4220)] = 24611, + [SMALL_STATE(4221)] = 24680, + [SMALL_STATE(4222)] = 24729, + [SMALL_STATE(4223)] = 24798, + [SMALL_STATE(4224)] = 24867, + [SMALL_STATE(4225)] = 24916, + [SMALL_STATE(4226)] = 24967, + [SMALL_STATE(4227)] = 25034, + [SMALL_STATE(4228)] = 25103, + [SMALL_STATE(4229)] = 25156, + [SMALL_STATE(4230)] = 25225, + [SMALL_STATE(4231)] = 25294, + [SMALL_STATE(4232)] = 25361, + [SMALL_STATE(4233)] = 25428, + [SMALL_STATE(4234)] = 25475, + [SMALL_STATE(4235)] = 25544, + [SMALL_STATE(4236)] = 25613, + [SMALL_STATE(4237)] = 25680, + [SMALL_STATE(4238)] = 25731, + [SMALL_STATE(4239)] = 25800, + [SMALL_STATE(4240)] = 25867, + [SMALL_STATE(4241)] = 25936, + [SMALL_STATE(4242)] = 26005, + [SMALL_STATE(4243)] = 26074, + [SMALL_STATE(4244)] = 26125, + [SMALL_STATE(4245)] = 26192, + [SMALL_STATE(4246)] = 26259, + [SMALL_STATE(4247)] = 26326, + [SMALL_STATE(4248)] = 26393, + [SMALL_STATE(4249)] = 26462, + [SMALL_STATE(4250)] = 26529, + [SMALL_STATE(4251)] = 26596, + [SMALL_STATE(4252)] = 26663, + [SMALL_STATE(4253)] = 26732, + [SMALL_STATE(4254)] = 26799, + [SMALL_STATE(4255)] = 26866, + [SMALL_STATE(4256)] = 26933, + [SMALL_STATE(4257)] = 27002, + [SMALL_STATE(4258)] = 27071, + [SMALL_STATE(4259)] = 27140, + [SMALL_STATE(4260)] = 27191, + [SMALL_STATE(4261)] = 27260, + [SMALL_STATE(4262)] = 27307, + [SMALL_STATE(4263)] = 27374, + [SMALL_STATE(4264)] = 27441, + [SMALL_STATE(4265)] = 27492, + [SMALL_STATE(4266)] = 27559, + [SMALL_STATE(4267)] = 27626, + [SMALL_STATE(4268)] = 27695, + [SMALL_STATE(4269)] = 27746, + [SMALL_STATE(4270)] = 27813, + [SMALL_STATE(4271)] = 27864, + [SMALL_STATE(4272)] = 27931, + [SMALL_STATE(4273)] = 27998, + [SMALL_STATE(4274)] = 28065, + [SMALL_STATE(4275)] = 28132, + [SMALL_STATE(4276)] = 28183, + [SMALL_STATE(4277)] = 28229, + [SMALL_STATE(4278)] = 28293, + [SMALL_STATE(4279)] = 28355, + [SMALL_STATE(4280)] = 28407, + [SMALL_STATE(4281)] = 28459, + [SMALL_STATE(4282)] = 28505, + [SMALL_STATE(4283)] = 28551, + [SMALL_STATE(4284)] = 28597, + [SMALL_STATE(4285)] = 28661, + [SMALL_STATE(4286)] = 28725, + [SMALL_STATE(4287)] = 28789, + [SMALL_STATE(4288)] = 28835, + [SMALL_STATE(4289)] = 28899, + [SMALL_STATE(4290)] = 28963, + [SMALL_STATE(4291)] = 29027, + [SMALL_STATE(4292)] = 29091, + [SMALL_STATE(4293)] = 29137, + [SMALL_STATE(4294)] = 29201, + [SMALL_STATE(4295)] = 29265, + [SMALL_STATE(4296)] = 29329, + [SMALL_STATE(4297)] = 29375, + [SMALL_STATE(4298)] = 29421, + [SMALL_STATE(4299)] = 29467, + [SMALL_STATE(4300)] = 29529, + [SMALL_STATE(4301)] = 29575, + [SMALL_STATE(4302)] = 29639, + [SMALL_STATE(4303)] = 29685, + [SMALL_STATE(4304)] = 29731, + [SMALL_STATE(4305)] = 29777, + [SMALL_STATE(4306)] = 29823, + [SMALL_STATE(4307)] = 29869, + [SMALL_STATE(4308)] = 29915, + [SMALL_STATE(4309)] = 29961, + [SMALL_STATE(4310)] = 30013, + [SMALL_STATE(4311)] = 30059, + [SMALL_STATE(4312)] = 30105, + [SMALL_STATE(4313)] = 30151, + [SMALL_STATE(4314)] = 30201, + [SMALL_STATE(4315)] = 30284, + [SMALL_STATE(4316)] = 30367, + [SMALL_STATE(4317)] = 30432, + [SMALL_STATE(4318)] = 30511, + [SMALL_STATE(4319)] = 30562, + [SMALL_STATE(4320)] = 30613, + [SMALL_STATE(4321)] = 30664, + [SMALL_STATE(4322)] = 30729, + [SMALL_STATE(4323)] = 30780, + [SMALL_STATE(4324)] = 30840, + [SMALL_STATE(4325)] = 30884, + [SMALL_STATE(4326)] = 30932, + [SMALL_STATE(4327)] = 30976, + [SMALL_STATE(4328)] = 31036, + [SMALL_STATE(4329)] = 31096, + [SMALL_STATE(4330)] = 31156, + [SMALL_STATE(4331)] = 31216, + [SMALL_STATE(4332)] = 31276, + [SMALL_STATE(4333)] = 31322, + [SMALL_STATE(4334)] = 31382, + [SMALL_STATE(4335)] = 31440, + [SMALL_STATE(4336)] = 31484, + [SMALL_STATE(4337)] = 31528, + [SMALL_STATE(4338)] = 31588, + [SMALL_STATE(4339)] = 31634, + [SMALL_STATE(4340)] = 31694, + [SMALL_STATE(4341)] = 31738, + [SMALL_STATE(4342)] = 31798, + [SMALL_STATE(4343)] = 31858, + [SMALL_STATE(4344)] = 31918, + [SMALL_STATE(4345)] = 31978, + [SMALL_STATE(4346)] = 32038, + [SMALL_STATE(4347)] = 32098, + [SMALL_STATE(4348)] = 32142, + [SMALL_STATE(4349)] = 32202, + [SMALL_STATE(4350)] = 32262, + [SMALL_STATE(4351)] = 32322, + [SMALL_STATE(4352)] = 32382, + [SMALL_STATE(4353)] = 32432, + [SMALL_STATE(4354)] = 32492, + [SMALL_STATE(4355)] = 32536, + [SMALL_STATE(4356)] = 32596, + [SMALL_STATE(4357)] = 32656, + [SMALL_STATE(4358)] = 32716, + [SMALL_STATE(4359)] = 32776, + [SMALL_STATE(4360)] = 32836, + [SMALL_STATE(4361)] = 32896, + [SMALL_STATE(4362)] = 32956, + [SMALL_STATE(4363)] = 33016, + [SMALL_STATE(4364)] = 33076, + [SMALL_STATE(4365)] = 33136, + [SMALL_STATE(4366)] = 33196, + [SMALL_STATE(4367)] = 33240, + [SMALL_STATE(4368)] = 33300, + [SMALL_STATE(4369)] = 33360, + [SMALL_STATE(4370)] = 33420, + [SMALL_STATE(4371)] = 33480, + [SMALL_STATE(4372)] = 33540, + [SMALL_STATE(4373)] = 33585, + [SMALL_STATE(4374)] = 33666, + [SMALL_STATE(4375)] = 33745, + [SMALL_STATE(4376)] = 33826, + [SMALL_STATE(4377)] = 33871, + [SMALL_STATE(4378)] = 33916, + [SMALL_STATE(4379)] = 33963, + [SMALL_STATE(4380)] = 34008, + [SMALL_STATE(4381)] = 34053, + [SMALL_STATE(4382)] = 34098, + [SMALL_STATE(4383)] = 34143, + [SMALL_STATE(4384)] = 34188, + [SMALL_STATE(4385)] = 34233, + [SMALL_STATE(4386)] = 34278, + [SMALL_STATE(4387)] = 34323, + [SMALL_STATE(4388)] = 34368, + [SMALL_STATE(4389)] = 34413, + [SMALL_STATE(4390)] = 34458, + [SMALL_STATE(4391)] = 34503, + [SMALL_STATE(4392)] = 34548, + [SMALL_STATE(4393)] = 34593, + [SMALL_STATE(4394)] = 34638, + [SMALL_STATE(4395)] = 34683, + [SMALL_STATE(4396)] = 34730, + [SMALL_STATE(4397)] = 34775, + [SMALL_STATE(4398)] = 34820, + [SMALL_STATE(4399)] = 34865, + [SMALL_STATE(4400)] = 34910, + [SMALL_STATE(4401)] = 34955, + [SMALL_STATE(4402)] = 35002, + [SMALL_STATE(4403)] = 35047, + [SMALL_STATE(4404)] = 35094, + [SMALL_STATE(4405)] = 35139, + [SMALL_STATE(4406)] = 35184, + [SMALL_STATE(4407)] = 35229, + [SMALL_STATE(4408)] = 35308, + [SMALL_STATE(4409)] = 35357, + [SMALL_STATE(4410)] = 35406, + [SMALL_STATE(4411)] = 35451, + [SMALL_STATE(4412)] = 35500, + [SMALL_STATE(4413)] = 35549, + [SMALL_STATE(4414)] = 35594, + [SMALL_STATE(4415)] = 35639, + [SMALL_STATE(4416)] = 35684, + [SMALL_STATE(4417)] = 35729, + [SMALL_STATE(4418)] = 35774, + [SMALL_STATE(4419)] = 35819, + [SMALL_STATE(4420)] = 35864, + [SMALL_STATE(4421)] = 35909, + [SMALL_STATE(4422)] = 35954, + [SMALL_STATE(4423)] = 35999, + [SMALL_STATE(4424)] = 36080, + [SMALL_STATE(4425)] = 36125, + [SMALL_STATE(4426)] = 36170, + [SMALL_STATE(4427)] = 36215, + [SMALL_STATE(4428)] = 36260, + [SMALL_STATE(4429)] = 36305, + [SMALL_STATE(4430)] = 36350, + [SMALL_STATE(4431)] = 36395, + [SMALL_STATE(4432)] = 36440, + [SMALL_STATE(4433)] = 36485, + [SMALL_STATE(4434)] = 36530, + [SMALL_STATE(4435)] = 36575, + [SMALL_STATE(4436)] = 36620, + [SMALL_STATE(4437)] = 36669, + [SMALL_STATE(4438)] = 36714, + [SMALL_STATE(4439)] = 36795, + [SMALL_STATE(4440)] = 36840, + [SMALL_STATE(4441)] = 36885, + [SMALL_STATE(4442)] = 36930, + [SMALL_STATE(4443)] = 37011, + [SMALL_STATE(4444)] = 37056, + [SMALL_STATE(4445)] = 37105, + [SMALL_STATE(4446)] = 37150, + [SMALL_STATE(4447)] = 37231, + [SMALL_STATE(4448)] = 37276, + [SMALL_STATE(4449)] = 37319, + [SMALL_STATE(4450)] = 37364, + [SMALL_STATE(4451)] = 37409, + [SMALL_STATE(4452)] = 37485, + [SMALL_STATE(4453)] = 37563, + [SMALL_STATE(4454)] = 37641, + [SMALL_STATE(4455)] = 37719, + [SMALL_STATE(4456)] = 37795, + [SMALL_STATE(4457)] = 37873, + [SMALL_STATE(4458)] = 37949, + [SMALL_STATE(4459)] = 38027, + [SMALL_STATE(4460)] = 38105, + [SMALL_STATE(4461)] = 38183, + [SMALL_STATE(4462)] = 38233, + [SMALL_STATE(4463)] = 38283, + [SMALL_STATE(4464)] = 38333, + [SMALL_STATE(4465)] = 38411, + [SMALL_STATE(4466)] = 38461, + [SMALL_STATE(4467)] = 38539, + [SMALL_STATE(4468)] = 38617, + [SMALL_STATE(4469)] = 38659, + [SMALL_STATE(4470)] = 38737, + [SMALL_STATE(4471)] = 38779, + [SMALL_STATE(4472)] = 38857, + [SMALL_STATE(4473)] = 38899, + [SMALL_STATE(4474)] = 38941, + [SMALL_STATE(4475)] = 38983, + [SMALL_STATE(4476)] = 39025, + [SMALL_STATE(4477)] = 39067, + [SMALL_STATE(4478)] = 39109, + [SMALL_STATE(4479)] = 39151, + [SMALL_STATE(4480)] = 39229, + [SMALL_STATE(4481)] = 39307, + [SMALL_STATE(4482)] = 39385, + [SMALL_STATE(4483)] = 39463, + [SMALL_STATE(4484)] = 39541, + [SMALL_STATE(4485)] = 39619, + [SMALL_STATE(4486)] = 39697, + [SMALL_STATE(4487)] = 39775, + [SMALL_STATE(4488)] = 39817, + [SMALL_STATE(4489)] = 39859, + [SMALL_STATE(4490)] = 39937, + [SMALL_STATE(4491)] = 39979, + [SMALL_STATE(4492)] = 40057, + [SMALL_STATE(4493)] = 40099, + [SMALL_STATE(4494)] = 40177, + [SMALL_STATE(4495)] = 40255, + [SMALL_STATE(4496)] = 40297, + [SMALL_STATE(4497)] = 40375, + [SMALL_STATE(4498)] = 40417, + [SMALL_STATE(4499)] = 40459, + [SMALL_STATE(4500)] = 40501, + [SMALL_STATE(4501)] = 40579, + [SMALL_STATE(4502)] = 40621, + [SMALL_STATE(4503)] = 40699, + [SMALL_STATE(4504)] = 40777, + [SMALL_STATE(4505)] = 40819, + [SMALL_STATE(4506)] = 40861, + [SMALL_STATE(4507)] = 40903, + [SMALL_STATE(4508)] = 40981, + [SMALL_STATE(4509)] = 41023, + [SMALL_STATE(4510)] = 41101, + [SMALL_STATE(4511)] = 41179, + [SMALL_STATE(4512)] = 41255, + [SMALL_STATE(4513)] = 41333, + [SMALL_STATE(4514)] = 41408, + [SMALL_STATE(4515)] = 41483, + [SMALL_STATE(4516)] = 41558, + [SMALL_STATE(4517)] = 41633, + [SMALL_STATE(4518)] = 41708, + [SMALL_STATE(4519)] = 41783, + [SMALL_STATE(4520)] = 41858, + [SMALL_STATE(4521)] = 41933, + [SMALL_STATE(4522)] = 42008, + [SMALL_STATE(4523)] = 42083, + [SMALL_STATE(4524)] = 42158, + [SMALL_STATE(4525)] = 42233, + [SMALL_STATE(4526)] = 42308, + [SMALL_STATE(4527)] = 42383, + [SMALL_STATE(4528)] = 42458, + [SMALL_STATE(4529)] = 42533, + [SMALL_STATE(4530)] = 42608, + [SMALL_STATE(4531)] = 42683, + [SMALL_STATE(4532)] = 42758, + [SMALL_STATE(4533)] = 42833, + [SMALL_STATE(4534)] = 42908, + [SMALL_STATE(4535)] = 42983, + [SMALL_STATE(4536)] = 43058, + [SMALL_STATE(4537)] = 43133, + [SMALL_STATE(4538)] = 43208, + [SMALL_STATE(4539)] = 43283, + [SMALL_STATE(4540)] = 43358, + [SMALL_STATE(4541)] = 43433, + [SMALL_STATE(4542)] = 43508, + [SMALL_STATE(4543)] = 43583, + [SMALL_STATE(4544)] = 43658, + [SMALL_STATE(4545)] = 43733, + [SMALL_STATE(4546)] = 43808, + [SMALL_STATE(4547)] = 43883, + [SMALL_STATE(4548)] = 43958, + [SMALL_STATE(4549)] = 44033, + [SMALL_STATE(4550)] = 44108, + [SMALL_STATE(4551)] = 44183, + [SMALL_STATE(4552)] = 44258, + [SMALL_STATE(4553)] = 44333, + [SMALL_STATE(4554)] = 44379, + [SMALL_STATE(4555)] = 44423, + [SMALL_STATE(4556)] = 44465, + [SMALL_STATE(4557)] = 44507, + [SMALL_STATE(4558)] = 44555, + [SMALL_STATE(4559)] = 44599, + [SMALL_STATE(4560)] = 44643, + [SMALL_STATE(4561)] = 44687, + [SMALL_STATE(4562)] = 44731, + [SMALL_STATE(4563)] = 44775, + [SMALL_STATE(4564)] = 44819, + [SMALL_STATE(4565)] = 44863, + [SMALL_STATE(4566)] = 44907, + [SMALL_STATE(4567)] = 44951, + [SMALL_STATE(4568)] = 44995, + [SMALL_STATE(4569)] = 45039, + [SMALL_STATE(4570)] = 45083, + [SMALL_STATE(4571)] = 45127, + [SMALL_STATE(4572)] = 45171, + [SMALL_STATE(4573)] = 45215, + [SMALL_STATE(4574)] = 45259, + [SMALL_STATE(4575)] = 45303, + [SMALL_STATE(4576)] = 45347, + [SMALL_STATE(4577)] = 45393, + [SMALL_STATE(4578)] = 45432, + [SMALL_STATE(4579)] = 45471, + [SMALL_STATE(4580)] = 45510, + [SMALL_STATE(4581)] = 45549, + [SMALL_STATE(4582)] = 45588, + [SMALL_STATE(4583)] = 45627, + [SMALL_STATE(4584)] = 45666, + [SMALL_STATE(4585)] = 45705, + [SMALL_STATE(4586)] = 45744, + [SMALL_STATE(4587)] = 45783, + [SMALL_STATE(4588)] = 45822, + [SMALL_STATE(4589)] = 45861, + [SMALL_STATE(4590)] = 45900, + [SMALL_STATE(4591)] = 45939, + [SMALL_STATE(4592)] = 45978, + [SMALL_STATE(4593)] = 46017, + [SMALL_STATE(4594)] = 46056, + [SMALL_STATE(4595)] = 46095, + [SMALL_STATE(4596)] = 46134, + [SMALL_STATE(4597)] = 46173, + [SMALL_STATE(4598)] = 46212, + [SMALL_STATE(4599)] = 46251, + [SMALL_STATE(4600)] = 46290, + [SMALL_STATE(4601)] = 46329, + [SMALL_STATE(4602)] = 46368, + [SMALL_STATE(4603)] = 46407, + [SMALL_STATE(4604)] = 46446, + [SMALL_STATE(4605)] = 46485, + [SMALL_STATE(4606)] = 46524, + [SMALL_STATE(4607)] = 46563, + [SMALL_STATE(4608)] = 46602, + [SMALL_STATE(4609)] = 46641, + [SMALL_STATE(4610)] = 46685, + [SMALL_STATE(4611)] = 46738, + [SMALL_STATE(4612)] = 46779, + [SMALL_STATE(4613)] = 46832, + [SMALL_STATE(4614)] = 46882, + [SMALL_STATE(4615)] = 46932, + [SMALL_STATE(4616)] = 46982, + [SMALL_STATE(4617)] = 47032, + [SMALL_STATE(4618)] = 47082, + [SMALL_STATE(4619)] = 47132, + [SMALL_STATE(4620)] = 47182, + [SMALL_STATE(4621)] = 47232, + [SMALL_STATE(4622)] = 47282, + [SMALL_STATE(4623)] = 47332, + [SMALL_STATE(4624)] = 47382, + [SMALL_STATE(4625)] = 47432, + [SMALL_STATE(4626)] = 47482, + [SMALL_STATE(4627)] = 47532, + [SMALL_STATE(4628)] = 47582, + [SMALL_STATE(4629)] = 47632, + [SMALL_STATE(4630)] = 47682, + [SMALL_STATE(4631)] = 47732, + [SMALL_STATE(4632)] = 47782, + [SMALL_STATE(4633)] = 47832, + [SMALL_STATE(4634)] = 47882, + [SMALL_STATE(4635)] = 47932, + [SMALL_STATE(4636)] = 47982, + [SMALL_STATE(4637)] = 48032, + [SMALL_STATE(4638)] = 48082, + [SMALL_STATE(4639)] = 48132, + [SMALL_STATE(4640)] = 48182, + [SMALL_STATE(4641)] = 48232, + [SMALL_STATE(4642)] = 48282, + [SMALL_STATE(4643)] = 48332, + [SMALL_STATE(4644)] = 48372, + [SMALL_STATE(4645)] = 48422, + [SMALL_STATE(4646)] = 48472, + [SMALL_STATE(4647)] = 48522, + [SMALL_STATE(4648)] = 48577, + [SMALL_STATE(4649)] = 48638, + [SMALL_STATE(4650)] = 48677, + [SMALL_STATE(4651)] = 48738, + [SMALL_STATE(4652)] = 48786, + [SMALL_STATE(4653)] = 48838, + [SMALL_STATE(4654)] = 48872, + [SMALL_STATE(4655)] = 48906, + [SMALL_STATE(4656)] = 48962, + [SMALL_STATE(4657)] = 49008, + [SMALL_STATE(4658)] = 49058, + [SMALL_STATE(4659)] = 49092, + [SMALL_STATE(4660)] = 49126, + [SMALL_STATE(4661)] = 49168, + [SMALL_STATE(4662)] = 49208, + [SMALL_STATE(4663)] = 49260, + [SMALL_STATE(4664)] = 49314, + [SMALL_STATE(4665)] = 49348, + [SMALL_STATE(4666)] = 49382, + [SMALL_STATE(4667)] = 49416, + [SMALL_STATE(4668)] = 49450, + [SMALL_STATE(4669)] = 49488, + [SMALL_STATE(4670)] = 49522, + [SMALL_STATE(4671)] = 49556, + [SMALL_STATE(4672)] = 49590, + [SMALL_STATE(4673)] = 49645, + [SMALL_STATE(4674)] = 49678, + [SMALL_STATE(4675)] = 49713, + [SMALL_STATE(4676)] = 49764, + [SMALL_STATE(4677)] = 49815, + [SMALL_STATE(4678)] = 49848, + [SMALL_STATE(4679)] = 49899, + [SMALL_STATE(4680)] = 49950, + [SMALL_STATE(4681)] = 49999, + [SMALL_STATE(4682)] = 50050, + [SMALL_STATE(4683)] = 50087, + [SMALL_STATE(4684)] = 50120, + [SMALL_STATE(4685)] = 50153, + [SMALL_STATE(4686)] = 50186, + [SMALL_STATE(4687)] = 50219, + [SMALL_STATE(4688)] = 50258, + [SMALL_STATE(4689)] = 50291, + [SMALL_STATE(4690)] = 50324, + [SMALL_STATE(4691)] = 50375, + [SMALL_STATE(4692)] = 50420, + [SMALL_STATE(4693)] = 50467, + [SMALL_STATE(4694)] = 50500, + [SMALL_STATE(4695)] = 50555, + [SMALL_STATE(4696)] = 50598, + [SMALL_STATE(4697)] = 50631, + [SMALL_STATE(4698)] = 50682, + [SMALL_STATE(4699)] = 50733, + [SMALL_STATE(4700)] = 50766, + [SMALL_STATE(4701)] = 50807, + [SMALL_STATE(4702)] = 50858, + [SMALL_STATE(4703)] = 50899, + [SMALL_STATE(4704)] = 50940, + [SMALL_STATE(4705)] = 50981, + [SMALL_STATE(4706)] = 51022, + [SMALL_STATE(4707)] = 51063, + [SMALL_STATE(4708)] = 51104, + [SMALL_STATE(4709)] = 51145, + [SMALL_STATE(4710)] = 51186, + [SMALL_STATE(4711)] = 51230, + [SMALL_STATE(4712)] = 51274, + [SMALL_STATE(4713)] = 51318, + [SMALL_STATE(4714)] = 51362, + [SMALL_STATE(4715)] = 51400, + [SMALL_STATE(4716)] = 51438, + [SMALL_STATE(4717)] = 51476, + [SMALL_STATE(4718)] = 51514, + [SMALL_STATE(4719)] = 51552, + [SMALL_STATE(4720)] = 51590, + [SMALL_STATE(4721)] = 51628, + [SMALL_STATE(4722)] = 51666, + [SMALL_STATE(4723)] = 51704, + [SMALL_STATE(4724)] = 51742, + [SMALL_STATE(4725)] = 51780, + [SMALL_STATE(4726)] = 51818, + [SMALL_STATE(4727)] = 51856, + [SMALL_STATE(4728)] = 51894, + [SMALL_STATE(4729)] = 51932, + [SMALL_STATE(4730)] = 51970, + [SMALL_STATE(4731)] = 52008, + [SMALL_STATE(4732)] = 52043, + [SMALL_STATE(4733)] = 52078, + [SMALL_STATE(4734)] = 52113, + [SMALL_STATE(4735)] = 52148, + [SMALL_STATE(4736)] = 52183, + [SMALL_STATE(4737)] = 52218, + [SMALL_STATE(4738)] = 52246, + [SMALL_STATE(4739)] = 52276, + [SMALL_STATE(4740)] = 52303, + [SMALL_STATE(4741)] = 52336, + [SMALL_STATE(4742)] = 52363, + [SMALL_STATE(4743)] = 52390, + [SMALL_STATE(4744)] = 52423, + [SMALL_STATE(4745)] = 52457, + [SMALL_STATE(4746)] = 52491, + [SMALL_STATE(4747)] = 52517, + [SMALL_STATE(4748)] = 52551, + [SMALL_STATE(4749)] = 52577, + [SMALL_STATE(4750)] = 52611, + [SMALL_STATE(4751)] = 52636, + [SMALL_STATE(4752)] = 52659, + [SMALL_STATE(4753)] = 52688, + [SMALL_STATE(4754)] = 52711, + [SMALL_STATE(4755)] = 52736, + [SMALL_STATE(4756)] = 52765, + [SMALL_STATE(4757)] = 52790, + [SMALL_STATE(4758)] = 52819, + [SMALL_STATE(4759)] = 52844, + [SMALL_STATE(4760)] = 52871, + [SMALL_STATE(4761)] = 52896, + [SMALL_STATE(4762)] = 52923, + [SMALL_STATE(4763)] = 52952, + [SMALL_STATE(4764)] = 52977, + [SMALL_STATE(4765)] = 53002, + [SMALL_STATE(4766)] = 53027, + [SMALL_STATE(4767)] = 53050, + [SMALL_STATE(4768)] = 53074, + [SMALL_STATE(4769)] = 53096, + [SMALL_STATE(4770)] = 53124, + [SMALL_STATE(4771)] = 53148, + [SMALL_STATE(4772)] = 53166, + [SMALL_STATE(4773)] = 53194, + [SMALL_STATE(4774)] = 53222, + [SMALL_STATE(4775)] = 53250, + [SMALL_STATE(4776)] = 53268, + [SMALL_STATE(4777)] = 53292, + [SMALL_STATE(4778)] = 53316, + [SMALL_STATE(4779)] = 53344, + [SMALL_STATE(4780)] = 53370, + [SMALL_STATE(4781)] = 53392, + [SMALL_STATE(4782)] = 53414, + [SMALL_STATE(4783)] = 53434, + [SMALL_STATE(4784)] = 53462, + [SMALL_STATE(4785)] = 53484, + [SMALL_STATE(4786)] = 53508, + [SMALL_STATE(4787)] = 53530, + [SMALL_STATE(4788)] = 53558, + [SMALL_STATE(4789)] = 53576, + [SMALL_STATE(4790)] = 53598, + [SMALL_STATE(4791)] = 53618, + [SMALL_STATE(4792)] = 53636, + [SMALL_STATE(4793)] = 53660, + [SMALL_STATE(4794)] = 53684, + [SMALL_STATE(4795)] = 53712, + [SMALL_STATE(4796)] = 53730, + [SMALL_STATE(4797)] = 53748, + [SMALL_STATE(4798)] = 53772, + [SMALL_STATE(4799)] = 53794, + [SMALL_STATE(4800)] = 53812, + [SMALL_STATE(4801)] = 53840, + [SMALL_STATE(4802)] = 53864, + [SMALL_STATE(4803)] = 53892, + [SMALL_STATE(4804)] = 53914, + [SMALL_STATE(4805)] = 53936, + [SMALL_STATE(4806)] = 53962, + [SMALL_STATE(4807)] = 53980, + [SMALL_STATE(4808)] = 54008, + [SMALL_STATE(4809)] = 54033, + [SMALL_STATE(4810)] = 54058, + [SMALL_STATE(4811)] = 54083, + [SMALL_STATE(4812)] = 54106, + [SMALL_STATE(4813)] = 54129, + [SMALL_STATE(4814)] = 54154, + [SMALL_STATE(4815)] = 54179, + [SMALL_STATE(4816)] = 54202, + [SMALL_STATE(4817)] = 54225, + [SMALL_STATE(4818)] = 54250, + [SMALL_STATE(4819)] = 54273, + [SMALL_STATE(4820)] = 54298, + [SMALL_STATE(4821)] = 54323, + [SMALL_STATE(4822)] = 54346, + [SMALL_STATE(4823)] = 54369, + [SMALL_STATE(4824)] = 54392, + [SMALL_STATE(4825)] = 54417, + [SMALL_STATE(4826)] = 54442, + [SMALL_STATE(4827)] = 54467, + [SMALL_STATE(4828)] = 54492, + [SMALL_STATE(4829)] = 54517, + [SMALL_STATE(4830)] = 54542, + [SMALL_STATE(4831)] = 54565, + [SMALL_STATE(4832)] = 54586, + [SMALL_STATE(4833)] = 54611, + [SMALL_STATE(4834)] = 54633, + [SMALL_STATE(4835)] = 54655, + [SMALL_STATE(4836)] = 54677, + [SMALL_STATE(4837)] = 54699, + [SMALL_STATE(4838)] = 54721, + [SMALL_STATE(4839)] = 54743, + [SMALL_STATE(4840)] = 54765, + [SMALL_STATE(4841)] = 54787, + [SMALL_STATE(4842)] = 54809, + [SMALL_STATE(4843)] = 54831, + [SMALL_STATE(4844)] = 54853, + [SMALL_STATE(4845)] = 54875, + [SMALL_STATE(4846)] = 54897, + [SMALL_STATE(4847)] = 54919, + [SMALL_STATE(4848)] = 54941, + [SMALL_STATE(4849)] = 54963, + [SMALL_STATE(4850)] = 54985, + [SMALL_STATE(4851)] = 55007, + [SMALL_STATE(4852)] = 55029, + [SMALL_STATE(4853)] = 55051, + [SMALL_STATE(4854)] = 55073, + [SMALL_STATE(4855)] = 55095, + [SMALL_STATE(4856)] = 55117, + [SMALL_STATE(4857)] = 55139, + [SMALL_STATE(4858)] = 55161, + [SMALL_STATE(4859)] = 55183, + [SMALL_STATE(4860)] = 55205, + [SMALL_STATE(4861)] = 55227, + [SMALL_STATE(4862)] = 55247, + [SMALL_STATE(4863)] = 55269, + [SMALL_STATE(4864)] = 55291, + [SMALL_STATE(4865)] = 55313, + [SMALL_STATE(4866)] = 55335, + [SMALL_STATE(4867)] = 55357, + [SMALL_STATE(4868)] = 55379, + [SMALL_STATE(4869)] = 55401, + [SMALL_STATE(4870)] = 55423, + [SMALL_STATE(4871)] = 55445, + [SMALL_STATE(4872)] = 55467, + [SMALL_STATE(4873)] = 55489, + [SMALL_STATE(4874)] = 55511, + [SMALL_STATE(4875)] = 55533, + [SMALL_STATE(4876)] = 55555, + [SMALL_STATE(4877)] = 55577, + [SMALL_STATE(4878)] = 55599, + [SMALL_STATE(4879)] = 55621, + [SMALL_STATE(4880)] = 55643, + [SMALL_STATE(4881)] = 55665, + [SMALL_STATE(4882)] = 55687, + [SMALL_STATE(4883)] = 55709, + [SMALL_STATE(4884)] = 55731, + [SMALL_STATE(4885)] = 55753, + [SMALL_STATE(4886)] = 55773, + [SMALL_STATE(4887)] = 55795, + [SMALL_STATE(4888)] = 55817, + [SMALL_STATE(4889)] = 55839, + [SMALL_STATE(4890)] = 55861, + [SMALL_STATE(4891)] = 55883, + [SMALL_STATE(4892)] = 55905, + [SMALL_STATE(4893)] = 55927, + [SMALL_STATE(4894)] = 55949, + [SMALL_STATE(4895)] = 55971, + [SMALL_STATE(4896)] = 55993, + [SMALL_STATE(4897)] = 56015, + [SMALL_STATE(4898)] = 56034, + [SMALL_STATE(4899)] = 56053, + [SMALL_STATE(4900)] = 56072, + [SMALL_STATE(4901)] = 56091, + [SMALL_STATE(4902)] = 56110, + [SMALL_STATE(4903)] = 56129, + [SMALL_STATE(4904)] = 56148, + [SMALL_STATE(4905)] = 56167, + [SMALL_STATE(4906)] = 56186, + [SMALL_STATE(4907)] = 56205, + [SMALL_STATE(4908)] = 56222, + [SMALL_STATE(4909)] = 56241, + [SMALL_STATE(4910)] = 56260, + [SMALL_STATE(4911)] = 56279, + [SMALL_STATE(4912)] = 56298, + [SMALL_STATE(4913)] = 56317, + [SMALL_STATE(4914)] = 56332, + [SMALL_STATE(4915)] = 56351, + [SMALL_STATE(4916)] = 56370, + [SMALL_STATE(4917)] = 56389, + [SMALL_STATE(4918)] = 56408, + [SMALL_STATE(4919)] = 56425, + [SMALL_STATE(4920)] = 56444, + [SMALL_STATE(4921)] = 56463, + [SMALL_STATE(4922)] = 56478, + [SMALL_STATE(4923)] = 56497, + [SMALL_STATE(4924)] = 56516, + [SMALL_STATE(4925)] = 56535, + [SMALL_STATE(4926)] = 56554, + [SMALL_STATE(4927)] = 56571, + [SMALL_STATE(4928)] = 56586, + [SMALL_STATE(4929)] = 56605, + [SMALL_STATE(4930)] = 56624, + [SMALL_STATE(4931)] = 56643, + [SMALL_STATE(4932)] = 56662, + [SMALL_STATE(4933)] = 56679, + [SMALL_STATE(4934)] = 56696, + [SMALL_STATE(4935)] = 56715, + [SMALL_STATE(4936)] = 56734, + [SMALL_STATE(4937)] = 56753, + [SMALL_STATE(4938)] = 56772, + [SMALL_STATE(4939)] = 56791, + [SMALL_STATE(4940)] = 56806, + [SMALL_STATE(4941)] = 56825, + [SMALL_STATE(4942)] = 56844, + [SMALL_STATE(4943)] = 56863, + [SMALL_STATE(4944)] = 56882, + [SMALL_STATE(4945)] = 56901, + [SMALL_STATE(4946)] = 56920, + [SMALL_STATE(4947)] = 56939, + [SMALL_STATE(4948)] = 56958, + [SMALL_STATE(4949)] = 56977, + [SMALL_STATE(4950)] = 56992, + [SMALL_STATE(4951)] = 57011, + [SMALL_STATE(4952)] = 57026, + [SMALL_STATE(4953)] = 57041, + [SMALL_STATE(4954)] = 57060, + [SMALL_STATE(4955)] = 57079, + [SMALL_STATE(4956)] = 57098, + [SMALL_STATE(4957)] = 57117, + [SMALL_STATE(4958)] = 57136, + [SMALL_STATE(4959)] = 57155, + [SMALL_STATE(4960)] = 57172, + [SMALL_STATE(4961)] = 57191, + [SMALL_STATE(4962)] = 57210, + [SMALL_STATE(4963)] = 57229, + [SMALL_STATE(4964)] = 57248, + [SMALL_STATE(4965)] = 57267, + [SMALL_STATE(4966)] = 57286, + [SMALL_STATE(4967)] = 57305, + [SMALL_STATE(4968)] = 57324, + [SMALL_STATE(4969)] = 57343, + [SMALL_STATE(4970)] = 57362, + [SMALL_STATE(4971)] = 57381, + [SMALL_STATE(4972)] = 57400, + [SMALL_STATE(4973)] = 57419, + [SMALL_STATE(4974)] = 57438, + [SMALL_STATE(4975)] = 57457, + [SMALL_STATE(4976)] = 57476, + [SMALL_STATE(4977)] = 57495, + [SMALL_STATE(4978)] = 57514, + [SMALL_STATE(4979)] = 57533, + [SMALL_STATE(4980)] = 57552, + [SMALL_STATE(4981)] = 57571, + [SMALL_STATE(4982)] = 57590, + [SMALL_STATE(4983)] = 57609, + [SMALL_STATE(4984)] = 57628, + [SMALL_STATE(4985)] = 57643, + [SMALL_STATE(4986)] = 57662, + [SMALL_STATE(4987)] = 57681, + [SMALL_STATE(4988)] = 57700, + [SMALL_STATE(4989)] = 57719, + [SMALL_STATE(4990)] = 57738, + [SMALL_STATE(4991)] = 57757, + [SMALL_STATE(4992)] = 57774, + [SMALL_STATE(4993)] = 57793, + [SMALL_STATE(4994)] = 57810, + [SMALL_STATE(4995)] = 57829, + [SMALL_STATE(4996)] = 57848, + [SMALL_STATE(4997)] = 57867, + [SMALL_STATE(4998)] = 57886, + [SMALL_STATE(4999)] = 57905, + [SMALL_STATE(5000)] = 57924, + [SMALL_STATE(5001)] = 57943, + [SMALL_STATE(5002)] = 57960, + [SMALL_STATE(5003)] = 57977, + [SMALL_STATE(5004)] = 57994, + [SMALL_STATE(5005)] = 58013, + [SMALL_STATE(5006)] = 58032, + [SMALL_STATE(5007)] = 58051, + [SMALL_STATE(5008)] = 58070, + [SMALL_STATE(5009)] = 58089, + [SMALL_STATE(5010)] = 58108, + [SMALL_STATE(5011)] = 58127, + [SMALL_STATE(5012)] = 58146, + [SMALL_STATE(5013)] = 58165, + [SMALL_STATE(5014)] = 58184, + [SMALL_STATE(5015)] = 58203, + [SMALL_STATE(5016)] = 58222, + [SMALL_STATE(5017)] = 58241, + [SMALL_STATE(5018)] = 58260, + [SMALL_STATE(5019)] = 58279, + [SMALL_STATE(5020)] = 58298, + [SMALL_STATE(5021)] = 58317, + [SMALL_STATE(5022)] = 58336, + [SMALL_STATE(5023)] = 58355, + [SMALL_STATE(5024)] = 58374, + [SMALL_STATE(5025)] = 58393, + [SMALL_STATE(5026)] = 58412, + [SMALL_STATE(5027)] = 58431, + [SMALL_STATE(5028)] = 58450, + [SMALL_STATE(5029)] = 58469, + [SMALL_STATE(5030)] = 58488, + [SMALL_STATE(5031)] = 58507, + [SMALL_STATE(5032)] = 58526, + [SMALL_STATE(5033)] = 58545, + [SMALL_STATE(5034)] = 58564, + [SMALL_STATE(5035)] = 58579, + [SMALL_STATE(5036)] = 58598, + [SMALL_STATE(5037)] = 58617, + [SMALL_STATE(5038)] = 58636, + [SMALL_STATE(5039)] = 58655, + [SMALL_STATE(5040)] = 58674, + [SMALL_STATE(5041)] = 58693, + [SMALL_STATE(5042)] = 58712, + [SMALL_STATE(5043)] = 58731, + [SMALL_STATE(5044)] = 58750, + [SMALL_STATE(5045)] = 58769, + [SMALL_STATE(5046)] = 58788, + [SMALL_STATE(5047)] = 58802, + [SMALL_STATE(5048)] = 58818, + [SMALL_STATE(5049)] = 58834, + [SMALL_STATE(5050)] = 58850, + [SMALL_STATE(5051)] = 58866, + [SMALL_STATE(5052)] = 58882, + [SMALL_STATE(5053)] = 58898, + [SMALL_STATE(5054)] = 58914, + [SMALL_STATE(5055)] = 58930, + [SMALL_STATE(5056)] = 58944, + [SMALL_STATE(5057)] = 58958, + [SMALL_STATE(5058)] = 58972, + [SMALL_STATE(5059)] = 58988, + [SMALL_STATE(5060)] = 59002, + [SMALL_STATE(5061)] = 59018, + [SMALL_STATE(5062)] = 59034, + [SMALL_STATE(5063)] = 59050, + [SMALL_STATE(5064)] = 59066, + [SMALL_STATE(5065)] = 59082, + [SMALL_STATE(5066)] = 59098, + [SMALL_STATE(5067)] = 59114, + [SMALL_STATE(5068)] = 59130, + [SMALL_STATE(5069)] = 59146, + [SMALL_STATE(5070)] = 59162, + [SMALL_STATE(5071)] = 59178, + [SMALL_STATE(5072)] = 59194, + [SMALL_STATE(5073)] = 59210, + [SMALL_STATE(5074)] = 59226, + [SMALL_STATE(5075)] = 59242, + [SMALL_STATE(5076)] = 59258, + [SMALL_STATE(5077)] = 59272, + [SMALL_STATE(5078)] = 59288, + [SMALL_STATE(5079)] = 59304, + [SMALL_STATE(5080)] = 59320, + [SMALL_STATE(5081)] = 59336, + [SMALL_STATE(5082)] = 59352, + [SMALL_STATE(5083)] = 59368, + [SMALL_STATE(5084)] = 59384, + [SMALL_STATE(5085)] = 59400, + [SMALL_STATE(5086)] = 59416, + [SMALL_STATE(5087)] = 59432, + [SMALL_STATE(5088)] = 59448, + [SMALL_STATE(5089)] = 59464, + [SMALL_STATE(5090)] = 59480, + [SMALL_STATE(5091)] = 59496, + [SMALL_STATE(5092)] = 59510, + [SMALL_STATE(5093)] = 59524, + [SMALL_STATE(5094)] = 59540, + [SMALL_STATE(5095)] = 59556, + [SMALL_STATE(5096)] = 59572, + [SMALL_STATE(5097)] = 59588, + [SMALL_STATE(5098)] = 59604, + [SMALL_STATE(5099)] = 59620, + [SMALL_STATE(5100)] = 59636, + [SMALL_STATE(5101)] = 59652, + [SMALL_STATE(5102)] = 59668, + [SMALL_STATE(5103)] = 59684, + [SMALL_STATE(5104)] = 59700, + [SMALL_STATE(5105)] = 59716, + [SMALL_STATE(5106)] = 59730, + [SMALL_STATE(5107)] = 59744, + [SMALL_STATE(5108)] = 59760, + [SMALL_STATE(5109)] = 59776, + [SMALL_STATE(5110)] = 59792, + [SMALL_STATE(5111)] = 59808, + [SMALL_STATE(5112)] = 59824, + [SMALL_STATE(5113)] = 59838, + [SMALL_STATE(5114)] = 59852, + [SMALL_STATE(5115)] = 59868, + [SMALL_STATE(5116)] = 59882, + [SMALL_STATE(5117)] = 59896, + [SMALL_STATE(5118)] = 59912, + [SMALL_STATE(5119)] = 59926, + [SMALL_STATE(5120)] = 59942, + [SMALL_STATE(5121)] = 59958, + [SMALL_STATE(5122)] = 59972, + [SMALL_STATE(5123)] = 59988, + [SMALL_STATE(5124)] = 60004, + [SMALL_STATE(5125)] = 60020, + [SMALL_STATE(5126)] = 60036, + [SMALL_STATE(5127)] = 60052, + [SMALL_STATE(5128)] = 60068, + [SMALL_STATE(5129)] = 60084, + [SMALL_STATE(5130)] = 60100, + [SMALL_STATE(5131)] = 60116, + [SMALL_STATE(5132)] = 60132, + [SMALL_STATE(5133)] = 60148, + [SMALL_STATE(5134)] = 60164, + [SMALL_STATE(5135)] = 60180, + [SMALL_STATE(5136)] = 60196, + [SMALL_STATE(5137)] = 60212, + [SMALL_STATE(5138)] = 60228, + [SMALL_STATE(5139)] = 60244, + [SMALL_STATE(5140)] = 60260, + [SMALL_STATE(5141)] = 60276, + [SMALL_STATE(5142)] = 60292, + [SMALL_STATE(5143)] = 60308, + [SMALL_STATE(5144)] = 60324, + [SMALL_STATE(5145)] = 60338, + [SMALL_STATE(5146)] = 60352, + [SMALL_STATE(5147)] = 60366, + [SMALL_STATE(5148)] = 60380, + [SMALL_STATE(5149)] = 60396, + [SMALL_STATE(5150)] = 60412, + [SMALL_STATE(5151)] = 60428, + [SMALL_STATE(5152)] = 60444, + [SMALL_STATE(5153)] = 60460, + [SMALL_STATE(5154)] = 60476, + [SMALL_STATE(5155)] = 60492, + [SMALL_STATE(5156)] = 60508, + [SMALL_STATE(5157)] = 60522, + [SMALL_STATE(5158)] = 60538, + [SMALL_STATE(5159)] = 60554, + [SMALL_STATE(5160)] = 60570, + [SMALL_STATE(5161)] = 60586, + [SMALL_STATE(5162)] = 60602, + [SMALL_STATE(5163)] = 60618, + [SMALL_STATE(5164)] = 60634, + [SMALL_STATE(5165)] = 60650, + [SMALL_STATE(5166)] = 60666, + [SMALL_STATE(5167)] = 60682, + [SMALL_STATE(5168)] = 60698, + [SMALL_STATE(5169)] = 60714, + [SMALL_STATE(5170)] = 60730, + [SMALL_STATE(5171)] = 60746, + [SMALL_STATE(5172)] = 60762, + [SMALL_STATE(5173)] = 60776, + [SMALL_STATE(5174)] = 60790, + [SMALL_STATE(5175)] = 60806, + [SMALL_STATE(5176)] = 60822, + [SMALL_STATE(5177)] = 60838, + [SMALL_STATE(5178)] = 60854, + [SMALL_STATE(5179)] = 60870, + [SMALL_STATE(5180)] = 60886, + [SMALL_STATE(5181)] = 60902, + [SMALL_STATE(5182)] = 60918, + [SMALL_STATE(5183)] = 60934, + [SMALL_STATE(5184)] = 60950, + [SMALL_STATE(5185)] = 60966, + [SMALL_STATE(5186)] = 60982, + [SMALL_STATE(5187)] = 60996, + [SMALL_STATE(5188)] = 61012, + [SMALL_STATE(5189)] = 61026, + [SMALL_STATE(5190)] = 61042, + [SMALL_STATE(5191)] = 61058, + [SMALL_STATE(5192)] = 61074, + [SMALL_STATE(5193)] = 61090, + [SMALL_STATE(5194)] = 61106, + [SMALL_STATE(5195)] = 61122, + [SMALL_STATE(5196)] = 61138, + [SMALL_STATE(5197)] = 61154, + [SMALL_STATE(5198)] = 61168, + [SMALL_STATE(5199)] = 61184, + [SMALL_STATE(5200)] = 61198, + [SMALL_STATE(5201)] = 61214, + [SMALL_STATE(5202)] = 61230, + [SMALL_STATE(5203)] = 61246, + [SMALL_STATE(5204)] = 61262, + [SMALL_STATE(5205)] = 61278, + [SMALL_STATE(5206)] = 61294, + [SMALL_STATE(5207)] = 61310, + [SMALL_STATE(5208)] = 61326, + [SMALL_STATE(5209)] = 61342, + [SMALL_STATE(5210)] = 61358, + [SMALL_STATE(5211)] = 61374, + [SMALL_STATE(5212)] = 61390, + [SMALL_STATE(5213)] = 61406, + [SMALL_STATE(5214)] = 61422, + [SMALL_STATE(5215)] = 61438, + [SMALL_STATE(5216)] = 61454, + [SMALL_STATE(5217)] = 61470, + [SMALL_STATE(5218)] = 61486, + [SMALL_STATE(5219)] = 61502, + [SMALL_STATE(5220)] = 61518, + [SMALL_STATE(5221)] = 61534, + [SMALL_STATE(5222)] = 61548, + [SMALL_STATE(5223)] = 61562, + [SMALL_STATE(5224)] = 61578, + [SMALL_STATE(5225)] = 61592, + [SMALL_STATE(5226)] = 61608, + [SMALL_STATE(5227)] = 61624, + [SMALL_STATE(5228)] = 61640, + [SMALL_STATE(5229)] = 61656, + [SMALL_STATE(5230)] = 61672, + [SMALL_STATE(5231)] = 61686, + [SMALL_STATE(5232)] = 61702, + [SMALL_STATE(5233)] = 61718, + [SMALL_STATE(5234)] = 61732, + [SMALL_STATE(5235)] = 61746, + [SMALL_STATE(5236)] = 61760, + [SMALL_STATE(5237)] = 61774, + [SMALL_STATE(5238)] = 61790, + [SMALL_STATE(5239)] = 61806, + [SMALL_STATE(5240)] = 61822, + [SMALL_STATE(5241)] = 61838, + [SMALL_STATE(5242)] = 61854, + [SMALL_STATE(5243)] = 61870, + [SMALL_STATE(5244)] = 61886, + [SMALL_STATE(5245)] = 61902, + [SMALL_STATE(5246)] = 61918, + [SMALL_STATE(5247)] = 61934, + [SMALL_STATE(5248)] = 61950, + [SMALL_STATE(5249)] = 61966, + [SMALL_STATE(5250)] = 61982, + [SMALL_STATE(5251)] = 61998, + [SMALL_STATE(5252)] = 62012, + [SMALL_STATE(5253)] = 62028, + [SMALL_STATE(5254)] = 62042, + [SMALL_STATE(5255)] = 62056, + [SMALL_STATE(5256)] = 62072, + [SMALL_STATE(5257)] = 62088, + [SMALL_STATE(5258)] = 62104, + [SMALL_STATE(5259)] = 62120, + [SMALL_STATE(5260)] = 62136, + [SMALL_STATE(5261)] = 62150, + [SMALL_STATE(5262)] = 62166, + [SMALL_STATE(5263)] = 62179, + [SMALL_STATE(5264)] = 62192, + [SMALL_STATE(5265)] = 62205, + [SMALL_STATE(5266)] = 62218, + [SMALL_STATE(5267)] = 62231, + [SMALL_STATE(5268)] = 62244, + [SMALL_STATE(5269)] = 62257, + [SMALL_STATE(5270)] = 62270, + [SMALL_STATE(5271)] = 62283, + [SMALL_STATE(5272)] = 62296, + [SMALL_STATE(5273)] = 62309, + [SMALL_STATE(5274)] = 62322, + [SMALL_STATE(5275)] = 62335, + [SMALL_STATE(5276)] = 62348, + [SMALL_STATE(5277)] = 62361, + [SMALL_STATE(5278)] = 62374, + [SMALL_STATE(5279)] = 62387, + [SMALL_STATE(5280)] = 62400, + [SMALL_STATE(5281)] = 62413, + [SMALL_STATE(5282)] = 62426, + [SMALL_STATE(5283)] = 62439, + [SMALL_STATE(5284)] = 62452, + [SMALL_STATE(5285)] = 62465, + [SMALL_STATE(5286)] = 62478, + [SMALL_STATE(5287)] = 62491, + [SMALL_STATE(5288)] = 62504, + [SMALL_STATE(5289)] = 62517, + [SMALL_STATE(5290)] = 62530, + [SMALL_STATE(5291)] = 62543, + [SMALL_STATE(5292)] = 62556, + [SMALL_STATE(5293)] = 62569, + [SMALL_STATE(5294)] = 62582, + [SMALL_STATE(5295)] = 62595, + [SMALL_STATE(5296)] = 62608, + [SMALL_STATE(5297)] = 62621, + [SMALL_STATE(5298)] = 62634, + [SMALL_STATE(5299)] = 62647, + [SMALL_STATE(5300)] = 62660, + [SMALL_STATE(5301)] = 62673, + [SMALL_STATE(5302)] = 62686, + [SMALL_STATE(5303)] = 62699, + [SMALL_STATE(5304)] = 62712, + [SMALL_STATE(5305)] = 62725, + [SMALL_STATE(5306)] = 62738, + [SMALL_STATE(5307)] = 62751, + [SMALL_STATE(5308)] = 62764, + [SMALL_STATE(5309)] = 62777, + [SMALL_STATE(5310)] = 62790, + [SMALL_STATE(5311)] = 62803, + [SMALL_STATE(5312)] = 62816, + [SMALL_STATE(5313)] = 62829, + [SMALL_STATE(5314)] = 62842, + [SMALL_STATE(5315)] = 62855, + [SMALL_STATE(5316)] = 62870, + [SMALL_STATE(5317)] = 62883, + [SMALL_STATE(5318)] = 62896, + [SMALL_STATE(5319)] = 62909, + [SMALL_STATE(5320)] = 62922, + [SMALL_STATE(5321)] = 62937, + [SMALL_STATE(5322)] = 62950, + [SMALL_STATE(5323)] = 62963, + [SMALL_STATE(5324)] = 62976, + [SMALL_STATE(5325)] = 62989, + [SMALL_STATE(5326)] = 63002, + [SMALL_STATE(5327)] = 63015, + [SMALL_STATE(5328)] = 63028, + [SMALL_STATE(5329)] = 63041, + [SMALL_STATE(5330)] = 63054, + [SMALL_STATE(5331)] = 63067, + [SMALL_STATE(5332)] = 63080, + [SMALL_STATE(5333)] = 63093, + [SMALL_STATE(5334)] = 63106, + [SMALL_STATE(5335)] = 63119, + [SMALL_STATE(5336)] = 63132, + [SMALL_STATE(5337)] = 63145, + [SMALL_STATE(5338)] = 63158, + [SMALL_STATE(5339)] = 63171, + [SMALL_STATE(5340)] = 63184, + [SMALL_STATE(5341)] = 63197, + [SMALL_STATE(5342)] = 63210, + [SMALL_STATE(5343)] = 63223, + [SMALL_STATE(5344)] = 63236, + [SMALL_STATE(5345)] = 63251, + [SMALL_STATE(5346)] = 63264, + [SMALL_STATE(5347)] = 63277, + [SMALL_STATE(5348)] = 63290, + [SMALL_STATE(5349)] = 63303, + [SMALL_STATE(5350)] = 63316, + [SMALL_STATE(5351)] = 63331, + [SMALL_STATE(5352)] = 63344, + [SMALL_STATE(5353)] = 63357, + [SMALL_STATE(5354)] = 63370, + [SMALL_STATE(5355)] = 63383, + [SMALL_STATE(5356)] = 63396, + [SMALL_STATE(5357)] = 63409, + [SMALL_STATE(5358)] = 63422, + [SMALL_STATE(5359)] = 63435, + [SMALL_STATE(5360)] = 63448, + [SMALL_STATE(5361)] = 63461, + [SMALL_STATE(5362)] = 63474, + [SMALL_STATE(5363)] = 63487, + [SMALL_STATE(5364)] = 63500, + [SMALL_STATE(5365)] = 63513, + [SMALL_STATE(5366)] = 63526, + [SMALL_STATE(5367)] = 63539, + [SMALL_STATE(5368)] = 63552, + [SMALL_STATE(5369)] = 63565, + [SMALL_STATE(5370)] = 63578, + [SMALL_STATE(5371)] = 63591, + [SMALL_STATE(5372)] = 63604, + [SMALL_STATE(5373)] = 63617, + [SMALL_STATE(5374)] = 63630, + [SMALL_STATE(5375)] = 63643, + [SMALL_STATE(5376)] = 63656, + [SMALL_STATE(5377)] = 63669, + [SMALL_STATE(5378)] = 63682, + [SMALL_STATE(5379)] = 63695, + [SMALL_STATE(5380)] = 63708, + [SMALL_STATE(5381)] = 63721, + [SMALL_STATE(5382)] = 63734, + [SMALL_STATE(5383)] = 63747, + [SMALL_STATE(5384)] = 63760, + [SMALL_STATE(5385)] = 63773, + [SMALL_STATE(5386)] = 63786, + [SMALL_STATE(5387)] = 63799, + [SMALL_STATE(5388)] = 63812, + [SMALL_STATE(5389)] = 63825, + [SMALL_STATE(5390)] = 63838, + [SMALL_STATE(5391)] = 63851, + [SMALL_STATE(5392)] = 63864, + [SMALL_STATE(5393)] = 63877, + [SMALL_STATE(5394)] = 63890, + [SMALL_STATE(5395)] = 63903, + [SMALL_STATE(5396)] = 63916, + [SMALL_STATE(5397)] = 63929, + [SMALL_STATE(5398)] = 63942, + [SMALL_STATE(5399)] = 63955, + [SMALL_STATE(5400)] = 63968, + [SMALL_STATE(5401)] = 63981, + [SMALL_STATE(5402)] = 63996, + [SMALL_STATE(5403)] = 64009, + [SMALL_STATE(5404)] = 64022, + [SMALL_STATE(5405)] = 64035, + [SMALL_STATE(5406)] = 64050, + [SMALL_STATE(5407)] = 64063, + [SMALL_STATE(5408)] = 64076, + [SMALL_STATE(5409)] = 64089, + [SMALL_STATE(5410)] = 64102, + [SMALL_STATE(5411)] = 64115, + [SMALL_STATE(5412)] = 64128, + [SMALL_STATE(5413)] = 64141, + [SMALL_STATE(5414)] = 64154, + [SMALL_STATE(5415)] = 64167, + [SMALL_STATE(5416)] = 64180, + [SMALL_STATE(5417)] = 64193, + [SMALL_STATE(5418)] = 64206, + [SMALL_STATE(5419)] = 64219, + [SMALL_STATE(5420)] = 64232, + [SMALL_STATE(5421)] = 64245, + [SMALL_STATE(5422)] = 64260, + [SMALL_STATE(5423)] = 64273, + [SMALL_STATE(5424)] = 64286, + [SMALL_STATE(5425)] = 64299, + [SMALL_STATE(5426)] = 64314, + [SMALL_STATE(5427)] = 64327, + [SMALL_STATE(5428)] = 64340, + [SMALL_STATE(5429)] = 64353, + [SMALL_STATE(5430)] = 64366, + [SMALL_STATE(5431)] = 64379, + [SMALL_STATE(5432)] = 64392, + [SMALL_STATE(5433)] = 64405, + [SMALL_STATE(5434)] = 64418, + [SMALL_STATE(5435)] = 64431, + [SMALL_STATE(5436)] = 64444, + [SMALL_STATE(5437)] = 64457, + [SMALL_STATE(5438)] = 64470, + [SMALL_STATE(5439)] = 64483, + [SMALL_STATE(5440)] = 64496, + [SMALL_STATE(5441)] = 64509, + [SMALL_STATE(5442)] = 64522, + [SMALL_STATE(5443)] = 64535, + [SMALL_STATE(5444)] = 64548, + [SMALL_STATE(5445)] = 64563, + [SMALL_STATE(5446)] = 64576, + [SMALL_STATE(5447)] = 64589, + [SMALL_STATE(5448)] = 64602, + [SMALL_STATE(5449)] = 64615, + [SMALL_STATE(5450)] = 64628, + [SMALL_STATE(5451)] = 64641, + [SMALL_STATE(5452)] = 64654, + [SMALL_STATE(5453)] = 64667, + [SMALL_STATE(5454)] = 64680, + [SMALL_STATE(5455)] = 64695, + [SMALL_STATE(5456)] = 64708, + [SMALL_STATE(5457)] = 64721, + [SMALL_STATE(5458)] = 64736, + [SMALL_STATE(5459)] = 64749, + [SMALL_STATE(5460)] = 64762, + [SMALL_STATE(5461)] = 64775, + [SMALL_STATE(5462)] = 64788, + [SMALL_STATE(5463)] = 64801, + [SMALL_STATE(5464)] = 64814, + [SMALL_STATE(5465)] = 64829, + [SMALL_STATE(5466)] = 64842, + [SMALL_STATE(5467)] = 64855, + [SMALL_STATE(5468)] = 64868, + [SMALL_STATE(5469)] = 64881, + [SMALL_STATE(5470)] = 64894, + [SMALL_STATE(5471)] = 64907, + [SMALL_STATE(5472)] = 64920, + [SMALL_STATE(5473)] = 64933, + [SMALL_STATE(5474)] = 64946, + [SMALL_STATE(5475)] = 64959, + [SMALL_STATE(5476)] = 64972, + [SMALL_STATE(5477)] = 64985, + [SMALL_STATE(5478)] = 64998, + [SMALL_STATE(5479)] = 65011, + [SMALL_STATE(5480)] = 65024, + [SMALL_STATE(5481)] = 65037, + [SMALL_STATE(5482)] = 65050, + [SMALL_STATE(5483)] = 65063, + [SMALL_STATE(5484)] = 65076, + [SMALL_STATE(5485)] = 65089, + [SMALL_STATE(5486)] = 65102, + [SMALL_STATE(5487)] = 65115, + [SMALL_STATE(5488)] = 65128, + [SMALL_STATE(5489)] = 65141, + [SMALL_STATE(5490)] = 65154, + [SMALL_STATE(5491)] = 65167, + [SMALL_STATE(5492)] = 65180, + [SMALL_STATE(5493)] = 65195, + [SMALL_STATE(5494)] = 65208, + [SMALL_STATE(5495)] = 65221, + [SMALL_STATE(5496)] = 65234, + [SMALL_STATE(5497)] = 65247, + [SMALL_STATE(5498)] = 65260, + [SMALL_STATE(5499)] = 65273, + [SMALL_STATE(5500)] = 65286, + [SMALL_STATE(5501)] = 65299, + [SMALL_STATE(5502)] = 65312, + [SMALL_STATE(5503)] = 65325, + [SMALL_STATE(5504)] = 65338, + [SMALL_STATE(5505)] = 65351, + [SMALL_STATE(5506)] = 65364, + [SMALL_STATE(5507)] = 65377, + [SMALL_STATE(5508)] = 65390, + [SMALL_STATE(5509)] = 65403, + [SMALL_STATE(5510)] = 65418, + [SMALL_STATE(5511)] = 65431, + [SMALL_STATE(5512)] = 65444, + [SMALL_STATE(5513)] = 65457, + [SMALL_STATE(5514)] = 65470, + [SMALL_STATE(5515)] = 65483, + [SMALL_STATE(5516)] = 65496, + [SMALL_STATE(5517)] = 65509, + [SMALL_STATE(5518)] = 65522, + [SMALL_STATE(5519)] = 65535, + [SMALL_STATE(5520)] = 65548, + [SMALL_STATE(5521)] = 65561, + [SMALL_STATE(5522)] = 65574, + [SMALL_STATE(5523)] = 65587, + [SMALL_STATE(5524)] = 65600, + [SMALL_STATE(5525)] = 65613, + [SMALL_STATE(5526)] = 65626, + [SMALL_STATE(5527)] = 65639, + [SMALL_STATE(5528)] = 65652, + [SMALL_STATE(5529)] = 65665, + [SMALL_STATE(5530)] = 65678, + [SMALL_STATE(5531)] = 65691, + [SMALL_STATE(5532)] = 65704, + [SMALL_STATE(5533)] = 65717, + [SMALL_STATE(5534)] = 65730, + [SMALL_STATE(5535)] = 65743, + [SMALL_STATE(5536)] = 65758, + [SMALL_STATE(5537)] = 65771, + [SMALL_STATE(5538)] = 65784, + [SMALL_STATE(5539)] = 65797, + [SMALL_STATE(5540)] = 65810, + [SMALL_STATE(5541)] = 65823, + [SMALL_STATE(5542)] = 65836, + [SMALL_STATE(5543)] = 65849, + [SMALL_STATE(5544)] = 65862, + [SMALL_STATE(5545)] = 65875, + [SMALL_STATE(5546)] = 65888, + [SMALL_STATE(5547)] = 65901, + [SMALL_STATE(5548)] = 65914, + [SMALL_STATE(5549)] = 65927, + [SMALL_STATE(5550)] = 65940, + [SMALL_STATE(5551)] = 65953, + [SMALL_STATE(5552)] = 65966, + [SMALL_STATE(5553)] = 65979, + [SMALL_STATE(5554)] = 65992, + [SMALL_STATE(5555)] = 66005, + [SMALL_STATE(5556)] = 66018, + [SMALL_STATE(5557)] = 66031, + [SMALL_STATE(5558)] = 66044, + [SMALL_STATE(5559)] = 66057, + [SMALL_STATE(5560)] = 66070, + [SMALL_STATE(5561)] = 66083, + [SMALL_STATE(5562)] = 66096, + [SMALL_STATE(5563)] = 66109, + [SMALL_STATE(5564)] = 66122, + [SMALL_STATE(5565)] = 66137, + [SMALL_STATE(5566)] = 66150, + [SMALL_STATE(5567)] = 66163, + [SMALL_STATE(5568)] = 66176, + [SMALL_STATE(5569)] = 66189, + [SMALL_STATE(5570)] = 66202, + [SMALL_STATE(5571)] = 66215, + [SMALL_STATE(5572)] = 66228, + [SMALL_STATE(5573)] = 66241, + [SMALL_STATE(5574)] = 66254, + [SMALL_STATE(5575)] = 66267, + [SMALL_STATE(5576)] = 66280, + [SMALL_STATE(5577)] = 66293, + [SMALL_STATE(5578)] = 66306, + [SMALL_STATE(5579)] = 66319, + [SMALL_STATE(5580)] = 66332, + [SMALL_STATE(5581)] = 66345, + [SMALL_STATE(5582)] = 66358, + [SMALL_STATE(5583)] = 66371, + [SMALL_STATE(5584)] = 66384, + [SMALL_STATE(5585)] = 66397, + [SMALL_STATE(5586)] = 66410, + [SMALL_STATE(5587)] = 66423, + [SMALL_STATE(5588)] = 66436, + [SMALL_STATE(5589)] = 66449, + [SMALL_STATE(5590)] = 66462, + [SMALL_STATE(5591)] = 66475, + [SMALL_STATE(5592)] = 66488, + [SMALL_STATE(5593)] = 66501, + [SMALL_STATE(5594)] = 66514, + [SMALL_STATE(5595)] = 66527, + [SMALL_STATE(5596)] = 66540, + [SMALL_STATE(5597)] = 66553, + [SMALL_STATE(5598)] = 66566, + [SMALL_STATE(5599)] = 66579, + [SMALL_STATE(5600)] = 66592, + [SMALL_STATE(5601)] = 66605, + [SMALL_STATE(5602)] = 66618, + [SMALL_STATE(5603)] = 66631, + [SMALL_STATE(5604)] = 66644, + [SMALL_STATE(5605)] = 66657, + [SMALL_STATE(5606)] = 66670, + [SMALL_STATE(5607)] = 66685, + [SMALL_STATE(5608)] = 66698, + [SMALL_STATE(5609)] = 66711, + [SMALL_STATE(5610)] = 66724, + [SMALL_STATE(5611)] = 66737, + [SMALL_STATE(5612)] = 66750, + [SMALL_STATE(5613)] = 66763, + [SMALL_STATE(5614)] = 66778, + [SMALL_STATE(5615)] = 66793, + [SMALL_STATE(5616)] = 66806, + [SMALL_STATE(5617)] = 66819, + [SMALL_STATE(5618)] = 66832, + [SMALL_STATE(5619)] = 66845, + [SMALL_STATE(5620)] = 66858, + [SMALL_STATE(5621)] = 66871, + [SMALL_STATE(5622)] = 66884, + [SMALL_STATE(5623)] = 66897, + [SMALL_STATE(5624)] = 66912, + [SMALL_STATE(5625)] = 66925, + [SMALL_STATE(5626)] = 66938, + [SMALL_STATE(5627)] = 66951, + [SMALL_STATE(5628)] = 66964, + [SMALL_STATE(5629)] = 66977, + [SMALL_STATE(5630)] = 66990, + [SMALL_STATE(5631)] = 67003, + [SMALL_STATE(5632)] = 67016, + [SMALL_STATE(5633)] = 67029, + [SMALL_STATE(5634)] = 67042, + [SMALL_STATE(5635)] = 67055, + [SMALL_STATE(5636)] = 67068, + [SMALL_STATE(5637)] = 67081, + [SMALL_STATE(5638)] = 67094, + [SMALL_STATE(5639)] = 67107, + [SMALL_STATE(5640)] = 67120, + [SMALL_STATE(5641)] = 67133, + [SMALL_STATE(5642)] = 67146, + [SMALL_STATE(5643)] = 67159, + [SMALL_STATE(5644)] = 67172, + [SMALL_STATE(5645)] = 67185, + [SMALL_STATE(5646)] = 67198, + [SMALL_STATE(5647)] = 67211, + [SMALL_STATE(5648)] = 67224, + [SMALL_STATE(5649)] = 67237, + [SMALL_STATE(5650)] = 67250, + [SMALL_STATE(5651)] = 67263, + [SMALL_STATE(5652)] = 67276, + [SMALL_STATE(5653)] = 67289, + [SMALL_STATE(5654)] = 67302, + [SMALL_STATE(5655)] = 67315, + [SMALL_STATE(5656)] = 67328, + [SMALL_STATE(5657)] = 67341, + [SMALL_STATE(5658)] = 67354, + [SMALL_STATE(5659)] = 67367, + [SMALL_STATE(5660)] = 67380, + [SMALL_STATE(5661)] = 67393, + [SMALL_STATE(5662)] = 67406, + [SMALL_STATE(5663)] = 67419, + [SMALL_STATE(5664)] = 67432, + [SMALL_STATE(5665)] = 67445, + [SMALL_STATE(5666)] = 67458, + [SMALL_STATE(5667)] = 67471, + [SMALL_STATE(5668)] = 67484, + [SMALL_STATE(5669)] = 67497, + [SMALL_STATE(5670)] = 67510, + [SMALL_STATE(5671)] = 67523, + [SMALL_STATE(5672)] = 67538, + [SMALL_STATE(5673)] = 67551, + [SMALL_STATE(5674)] = 67564, + [SMALL_STATE(5675)] = 67577, + [SMALL_STATE(5676)] = 67590, + [SMALL_STATE(5677)] = 67603, + [SMALL_STATE(5678)] = 67616, + [SMALL_STATE(5679)] = 67629, + [SMALL_STATE(5680)] = 67642, + [SMALL_STATE(5681)] = 67655, + [SMALL_STATE(5682)] = 67668, + [SMALL_STATE(5683)] = 67681, + [SMALL_STATE(5684)] = 67694, + [SMALL_STATE(5685)] = 67707, + [SMALL_STATE(5686)] = 67720, + [SMALL_STATE(5687)] = 67733, + [SMALL_STATE(5688)] = 67746, + [SMALL_STATE(5689)] = 67759, + [SMALL_STATE(5690)] = 67772, + [SMALL_STATE(5691)] = 67785, + [SMALL_STATE(5692)] = 67798, + [SMALL_STATE(5693)] = 67811, + [SMALL_STATE(5694)] = 67824, + [SMALL_STATE(5695)] = 67839, + [SMALL_STATE(5696)] = 67852, + [SMALL_STATE(5697)] = 67865, + [SMALL_STATE(5698)] = 67878, + [SMALL_STATE(5699)] = 67891, + [SMALL_STATE(5700)] = 67904, + [SMALL_STATE(5701)] = 67917, + [SMALL_STATE(5702)] = 67930, + [SMALL_STATE(5703)] = 67943, + [SMALL_STATE(5704)] = 67956, + [SMALL_STATE(5705)] = 67969, + [SMALL_STATE(5706)] = 67982, + [SMALL_STATE(5707)] = 67995, + [SMALL_STATE(5708)] = 68008, + [SMALL_STATE(5709)] = 68021, + [SMALL_STATE(5710)] = 68034, + [SMALL_STATE(5711)] = 68047, + [SMALL_STATE(5712)] = 68060, + [SMALL_STATE(5713)] = 68075, + [SMALL_STATE(5714)] = 68090, + [SMALL_STATE(5715)] = 68103, + [SMALL_STATE(5716)] = 68116, + [SMALL_STATE(5717)] = 68129, + [SMALL_STATE(5718)] = 68142, + [SMALL_STATE(5719)] = 68155, + [SMALL_STATE(5720)] = 68168, + [SMALL_STATE(5721)] = 68181, + [SMALL_STATE(5722)] = 68194, + [SMALL_STATE(5723)] = 68207, + [SMALL_STATE(5724)] = 68220, + [SMALL_STATE(5725)] = 68233, + [SMALL_STATE(5726)] = 68246, + [SMALL_STATE(5727)] = 68259, + [SMALL_STATE(5728)] = 68272, + [SMALL_STATE(5729)] = 68285, + [SMALL_STATE(5730)] = 68300, + [SMALL_STATE(5731)] = 68313, + [SMALL_STATE(5732)] = 68326, + [SMALL_STATE(5733)] = 68339, + [SMALL_STATE(5734)] = 68352, + [SMALL_STATE(5735)] = 68365, + [SMALL_STATE(5736)] = 68378, + [SMALL_STATE(5737)] = 68391, + [SMALL_STATE(5738)] = 68404, + [SMALL_STATE(5739)] = 68417, + [SMALL_STATE(5740)] = 68430, + [SMALL_STATE(5741)] = 68443, + [SMALL_STATE(5742)] = 68456, + [SMALL_STATE(5743)] = 68469, + [SMALL_STATE(5744)] = 68482, + [SMALL_STATE(5745)] = 68495, + [SMALL_STATE(5746)] = 68508, + [SMALL_STATE(5747)] = 68521, + [SMALL_STATE(5748)] = 68536, + [SMALL_STATE(5749)] = 68549, + [SMALL_STATE(5750)] = 68562, + [SMALL_STATE(5751)] = 68575, + [SMALL_STATE(5752)] = 68588, + [SMALL_STATE(5753)] = 68601, + [SMALL_STATE(5754)] = 68614, + [SMALL_STATE(5755)] = 68627, + [SMALL_STATE(5756)] = 68640, + [SMALL_STATE(5757)] = 68653, + [SMALL_STATE(5758)] = 68666, + [SMALL_STATE(5759)] = 68679, + [SMALL_STATE(5760)] = 68692, + [SMALL_STATE(5761)] = 68705, + [SMALL_STATE(5762)] = 68718, + [SMALL_STATE(5763)] = 68731, + [SMALL_STATE(5764)] = 68744, + [SMALL_STATE(5765)] = 68757, + [SMALL_STATE(5766)] = 68770, + [SMALL_STATE(5767)] = 68783, + [SMALL_STATE(5768)] = 68796, + [SMALL_STATE(5769)] = 68809, + [SMALL_STATE(5770)] = 68822, + [SMALL_STATE(5771)] = 68835, + [SMALL_STATE(5772)] = 68848, + [SMALL_STATE(5773)] = 68861, + [SMALL_STATE(5774)] = 68874, + [SMALL_STATE(5775)] = 68887, + [SMALL_STATE(5776)] = 68900, + [SMALL_STATE(5777)] = 68913, + [SMALL_STATE(5778)] = 68926, + [SMALL_STATE(5779)] = 68939, + [SMALL_STATE(5780)] = 68952, + [SMALL_STATE(5781)] = 68965, + [SMALL_STATE(5782)] = 68978, + [SMALL_STATE(5783)] = 68991, + [SMALL_STATE(5784)] = 69004, + [SMALL_STATE(5785)] = 69017, + [SMALL_STATE(5786)] = 69030, + [SMALL_STATE(5787)] = 69043, + [SMALL_STATE(5788)] = 69056, + [SMALL_STATE(5789)] = 69069, + [SMALL_STATE(5790)] = 69082, + [SMALL_STATE(5791)] = 69095, + [SMALL_STATE(5792)] = 69108, + [SMALL_STATE(5793)] = 69121, + [SMALL_STATE(5794)] = 69134, + [SMALL_STATE(5795)] = 69147, + [SMALL_STATE(5796)] = 69160, + [SMALL_STATE(5797)] = 69173, + [SMALL_STATE(5798)] = 69186, + [SMALL_STATE(5799)] = 69199, + [SMALL_STATE(5800)] = 69212, + [SMALL_STATE(5801)] = 69225, + [SMALL_STATE(5802)] = 69238, + [SMALL_STATE(5803)] = 69251, + [SMALL_STATE(5804)] = 69264, + [SMALL_STATE(5805)] = 69277, + [SMALL_STATE(5806)] = 69290, + [SMALL_STATE(5807)] = 69303, + [SMALL_STATE(5808)] = 69316, + [SMALL_STATE(5809)] = 69329, + [SMALL_STATE(5810)] = 69342, + [SMALL_STATE(5811)] = 69355, + [SMALL_STATE(5812)] = 69368, + [SMALL_STATE(5813)] = 69381, + [SMALL_STATE(5814)] = 69394, + [SMALL_STATE(5815)] = 69407, + [SMALL_STATE(5816)] = 69420, + [SMALL_STATE(5817)] = 69433, + [SMALL_STATE(5818)] = 69446, + [SMALL_STATE(5819)] = 69459, + [SMALL_STATE(5820)] = 69472, + [SMALL_STATE(5821)] = 69485, + [SMALL_STATE(5822)] = 69498, + [SMALL_STATE(5823)] = 69511, + [SMALL_STATE(5824)] = 69524, + [SMALL_STATE(5825)] = 69537, + [SMALL_STATE(5826)] = 69550, + [SMALL_STATE(5827)] = 69563, + [SMALL_STATE(5828)] = 69576, + [SMALL_STATE(5829)] = 69589, + [SMALL_STATE(5830)] = 69602, + [SMALL_STATE(5831)] = 69615, + [SMALL_STATE(5832)] = 69628, + [SMALL_STATE(5833)] = 69641, + [SMALL_STATE(5834)] = 69656, + [SMALL_STATE(5835)] = 69671, + [SMALL_STATE(5836)] = 69684, + [SMALL_STATE(5837)] = 69697, + [SMALL_STATE(5838)] = 69710, + [SMALL_STATE(5839)] = 69723, + [SMALL_STATE(5840)] = 69736, + [SMALL_STATE(5841)] = 69749, + [SMALL_STATE(5842)] = 69762, + [SMALL_STATE(5843)] = 69775, + [SMALL_STATE(5844)] = 69788, + [SMALL_STATE(5845)] = 69801, + [SMALL_STATE(5846)] = 69814, + [SMALL_STATE(5847)] = 69827, + [SMALL_STATE(5848)] = 69840, + [SMALL_STATE(5849)] = 69853, + [SMALL_STATE(5850)] = 69866, + [SMALL_STATE(5851)] = 69879, + [SMALL_STATE(5852)] = 69892, + [SMALL_STATE(5853)] = 69905, + [SMALL_STATE(5854)] = 69918, + [SMALL_STATE(5855)] = 69931, + [SMALL_STATE(5856)] = 69944, + [SMALL_STATE(5857)] = 69957, + [SMALL_STATE(5858)] = 69970, + [SMALL_STATE(5859)] = 69983, + [SMALL_STATE(5860)] = 69996, + [SMALL_STATE(5861)] = 70009, + [SMALL_STATE(5862)] = 70022, + [SMALL_STATE(5863)] = 70035, + [SMALL_STATE(5864)] = 70048, + [SMALL_STATE(5865)] = 70061, + [SMALL_STATE(5866)] = 70074, + [SMALL_STATE(5867)] = 70087, + [SMALL_STATE(5868)] = 70100, + [SMALL_STATE(5869)] = 70113, + [SMALL_STATE(5870)] = 70126, + [SMALL_STATE(5871)] = 70139, + [SMALL_STATE(5872)] = 70152, + [SMALL_STATE(5873)] = 70165, + [SMALL_STATE(5874)] = 70178, + [SMALL_STATE(5875)] = 70191, + [SMALL_STATE(5876)] = 70204, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -629510,6299 +625802,6209 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), [161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 50), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 50), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2791), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4719), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5550), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4599), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5646), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 50), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2794), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4742), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5450), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4632), [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5551), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(59), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3705), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3705), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3715), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3711), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(76), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3240), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3272), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5330), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5300), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3375), - [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(28), - [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2992), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3374), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3363), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3366), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3382), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3417), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3433), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5257), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4293), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4801), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5109), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5114), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3661), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5355), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5107), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2839), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5903), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3583), - [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5356), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5357), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5558), - [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3708), - [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3701), - [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3351), - [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5115), - [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4840), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3351), - [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4740), - [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5358), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(16), - [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5816), - [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4956), - [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5120), - [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4871), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4219), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3098), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5365), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3101), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5370), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3215), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5376), - [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5129), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5382), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3039), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3394), - [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2822), - [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5098), - [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2821), - [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3581), - [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5429), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5431), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4684), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5442), - [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5442), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5512), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5451), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(62), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3629), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3629), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3622), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3601), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(170), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3162), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3248), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5853), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5844), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3312), + [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(30), + [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2920), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3314), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3303), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3304), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3321), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3356), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3372), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4289), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4828), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5088), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5194), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3623), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5644), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5100), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2787), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5863), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3517), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5645), + [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5646), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5458), + [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3645), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3649), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3280), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5254), + [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4880), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3280), + [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4753), + [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5651), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(16), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5775), + [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4943), + [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5200), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4867), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4267), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3041), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5792), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3040), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5791), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3189), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5785), + [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5202), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5783), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5782), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3013), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3334), + [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2790), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5114), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2789), + [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3528), + [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5774), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5769), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4706), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5762), + [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5762), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5758), [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2789), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4722), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5872), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4595), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5552), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(360), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3234), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3289), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(18), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3413), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5197), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5196), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3690), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5286), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5189), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2780), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5289), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3595), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5295), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5312), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5314), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4743), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5354), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2801), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4739), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5867), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4626), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5862), + [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(88), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3152), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3243), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(26), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3358), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5149), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5259), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3647), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5832), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5255), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2725), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5827), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3558), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5826), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5825), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5821), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4751), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5811), [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(17), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5540), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4962), - [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5103), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4843), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4160), - [574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5084), - [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2796), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5058), - [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2799), - [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3567), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2840), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4723), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5799), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4618), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5685), - [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(515), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3235), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3297), - [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(30), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3415), - [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5143), - [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5119), - [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3680), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5729), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5241), - [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2842), - [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5908), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3580), - [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5856), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5849), - [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5690), - [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4737), - [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5800), - [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), - [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5861), - [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4953), - [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5131), - [702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4835), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4183), - [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5155), - [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2769), - [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5224), - [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2768), - [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3575), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 6), - [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 6), - [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2770), - [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(59), - [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3705), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3705), - [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3715), - [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3711), - [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(360), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3234), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3374), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5330), - [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5300), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(18), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2992), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3363), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3366), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3382), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3377), - [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3433), - [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5257), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4293), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4801), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5197), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5196), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5189), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2780), - [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5289), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3595), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5295), - [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5312), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5314), - [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3708), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3701), - [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3351), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5115), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4840), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3351), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5554), - [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3098), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5365), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3101), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5370), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3215), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5376), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5382), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3039), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3394), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2796), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5058), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2799), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3567), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5429), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5431), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4684), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5442), - [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5442), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5512), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 6), - [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 6), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2779), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(76), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3240), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5109), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5114), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5107), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2839), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5903), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3583), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5356), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5357), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5558), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2822), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5098), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2821), - [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3581), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2787), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(515), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3235), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5143), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5119), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5241), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2842), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5908), - [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3580), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5856), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5849), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5690), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2769), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5224), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2768), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3575), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5805), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4908), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5248), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4865), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4223), + [574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5244), + [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2742), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5241), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2804), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3556), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5633), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2721), + [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4741), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5759), + [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4616), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5605), + [710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(339), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3164), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3250), + [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(35), + [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3357), + [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5054), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5058), + [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3650), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5612), + [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5080), + [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2778), + [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5868), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3515), + [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5634), + [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5633), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5610), + [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4766), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5632), + [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(29), + [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5820), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5033), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5153), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4838), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4248), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5049), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2786), + [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5074), + [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2719), + [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3510), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 6), + [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 6), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2797), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(62), + [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3629), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3629), + [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3622), + [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3601), + [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(170), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3162), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3314), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5853), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5844), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2920), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3303), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3304), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3321), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3325), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3372), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4289), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4828), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5088), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5194), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5100), + [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2787), + [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5863), + [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3517), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5645), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5646), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5458), + [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3645), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3649), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3280), + [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5254), + [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4880), + [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3280), + [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5744), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3041), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5792), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3040), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5791), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3189), + [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5785), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5783), + [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5782), + [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3013), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3334), + [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2790), + [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5114), + [983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2789), + [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3528), + [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5774), + [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5769), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4706), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5762), + [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5762), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5758), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 6), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 6), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2792), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(88), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3152), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(26), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5149), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5259), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5255), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2725), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5827), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3558), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5826), + [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5825), + [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5821), + [1054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2742), + [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5241), + [1060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2804), + [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3556), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2737), + [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(339), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3164), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(35), + [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5054), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5058), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5080), + [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2778), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5868), + [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3515), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5634), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5633), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5610), + [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2786), + [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5074), + [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2719), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3510), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 3, .production_id = 39), [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 3, .production_id = 39), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_catch_statement_repeat1, 2, .production_id = 77), - [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_catch_statement_repeat1, 2, .production_id = 77), - [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_catch_statement_repeat1, 2, .production_id = 77), SHIFT_REPEAT(5292), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_catch_statement_repeat1, 2, .production_id = 77), + [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_catch_statement_repeat1, 2, .production_id = 77), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_catch_statement_repeat1, 2, .production_id = 77), SHIFT_REPEAT(5808), [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 2, .production_id = 5), [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 2, .production_id = 5), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_catch_statement_repeat1, 2, .production_id = 77), SHIFT_REPEAT(5848), - [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 89), - [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 89), - [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 233), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 233), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 201), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 201), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 11, .production_id = 244), - [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 11, .production_id = 244), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 11, .production_id = 241), - [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 11, .production_id = 241), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 171), - [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 171), - [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 200), - [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 200), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_catch_statement_repeat1, 5, .production_id = 196), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_catch_statement_repeat1, 5, .production_id = 196), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autoreleasepool_statement, 2, .production_id = 12), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autoreleasepool_statement, 2, .production_id = 12), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), - [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 3, .production_id = 17), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3, .production_id = 17), - [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 31), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 31), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 32), - [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 32), - [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 32), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 32), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 33), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 33), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 35), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 35), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, .production_id = 31), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, .production_id = 31), - [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 43), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 43), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 56), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 56), - [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 57), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 57), - [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 17), - [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 17), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 54), - [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 54), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 4, .production_id = 76), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 4, .production_id = 76), - [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 43), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 43), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 84), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 84), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 89), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 89), - [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 97), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 97), - [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 56), - [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 56), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 98), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 98), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 99), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 99), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 100), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 100), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 17), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 17), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 96), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 96), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 101), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 101), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 54), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 54), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 110), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 110), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 111), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 111), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 7, .dynamic_precedence = 1, .production_id = 187), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 7, .dynamic_precedence = 1, .production_id = 187), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 147), - [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 147), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 186), - [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 186), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 185), - [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 185), - [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 184), - [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 184), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 183), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 183), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 5, .production_id = 123), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 5, .production_id = 123), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 43), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 43), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 84), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 84), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 142), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 142), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 180), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 180), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 139), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 139), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 179), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 179), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 10, .production_id = 231), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 10, .production_id = 231), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 178), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 178), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 99), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 99), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 7, .production_id = 130), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 7, .production_id = 130), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 177), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 177), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 10, .production_id = 241), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 10, .production_id = 241), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 205), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 205), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 176), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 176), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 130), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 130), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 176), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 176), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 56), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 56), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 206), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 206), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 178), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 178), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 207), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 207), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 175), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 175), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 136), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 136), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 174), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 174), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 135), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 135), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 56), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 56), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 136), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 136), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 137), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 137), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 98), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 98), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 138), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 138), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 99), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 99), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 139), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 139), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 140), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 140), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, .production_id = 130), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, .production_id = 130), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 96), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 96), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, .production_id = 89), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, .production_id = 89), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 141), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 141), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 99), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 99), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 17), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 17), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 142), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 142), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 147), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 147), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 171), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 171), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, .production_id = 84), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, .production_id = 84), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 208), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 208), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 203), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 203), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 10, .production_id = 203), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 10, .production_id = 203), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 209), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 209), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 210), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 210), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 211), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 211), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 212), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 212), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 10, .production_id = 240), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 10, .production_id = 240), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 10, .production_id = 233), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 10, .production_id = 233), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 10, .production_id = 239), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 10, .production_id = 239), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 222), - [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 222), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 10, .production_id = 238), - [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 10, .production_id = 238), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 219), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 219), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 171), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 171), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 220), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 220), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 221), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 221), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 201), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 201), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 203), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 203), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 223), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 223), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 224), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 224), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 208), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 208), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 225), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 225), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 229), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 229), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 220), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 220), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 230), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 230), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 171), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 171), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 231), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 231), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 232), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 232), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 203), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 203), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 234), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 234), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 223), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 223), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_catch_statement_repeat1, 2, .production_id = 77), SHIFT_REPEAT(5887), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 10, .production_id = 156), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 10, .production_id = 156), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 9, .production_id = 156), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 9, .production_id = 156), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 7, .production_id = 70), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 7, .production_id = 70), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 7, .production_id = 115), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 7, .production_id = 115), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 8, .production_id = 36), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 8, .production_id = 36), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 8, .production_id = 154), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 8, .production_id = 154), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 8, .production_id = 36), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 8, .production_id = 36), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 8, .production_id = 190), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 8, .production_id = 190), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_implementation, 7, .production_id = 202), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_implementation, 7, .production_id = 202), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 7, .production_id = 36), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 7, .production_id = 36), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_implementation, 7, .production_id = 154), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_implementation, 7, .production_id = 154), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 8, .production_id = 215), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 8, .production_id = 215), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 8), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 8), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 7, .production_id = 156), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 7, .production_id = 156), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 8, .production_id = 155), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 8, .production_id = 155), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 8), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 8), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 8, .production_id = 70), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 8, .production_id = 70), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 8, .production_id = 115), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 8, .production_id = 115), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 7, .production_id = 115), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 7, .production_id = 115), - [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 8, .production_id = 156), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 8, .production_id = 156), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 7, .production_id = 70), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 7, .production_id = 70), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_implementation, 8, .production_id = 202), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_implementation, 8, .production_id = 202), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 8, .production_id = 70), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 8, .production_id = 70), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 7), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 7), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 9, .production_id = 154), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 9, .production_id = 154), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 9, .production_id = 36), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 9, .production_id = 36), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 9, .production_id = 190), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 9, .production_id = 190), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 7, .production_id = 155), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 7, .production_id = 155), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 9, .production_id = 36), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 9, .production_id = 36), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 9, .production_id = 215), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 9, .production_id = 215), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 7), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 7), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 7, .production_id = 36), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 7, .production_id = 36), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 9, .production_id = 155), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 9, .production_id = 155), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 9, .production_id = 70), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 9, .production_id = 70), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 9), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 9), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 9, .production_id = 115), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 9, .production_id = 115), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 7, .production_id = 36), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 7, .production_id = 36), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 7, .production_id = 190), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 7, .production_id = 190), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_import, 2, .production_id = 8), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_import, 2, .production_id = 8), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_import, 2, .production_id = 9), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_import, 2, .production_id = 9), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 8), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 8), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 19), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 19), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 19), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 19), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 25), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 25), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 7, .production_id = 154), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 7, .production_id = 154), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 10, .production_id = 190), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 10, .production_id = 190), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_forward_declaration, 3, .production_id = 36), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_forward_declaration, 3, .production_id = 36), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 10, .production_id = 36), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 10, .production_id = 36), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 3, .production_id = 36), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 3, .production_id = 36), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 10, .production_id = 215), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 10, .production_id = 215), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_forward_declaration, 3, .production_id = 36), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_forward_declaration, 3, .production_id = 36), - [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 3, .production_id = 36), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 3, .production_id = 36), - [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 3), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 3), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 3, .production_id = 36), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 3, .production_id = 36), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 10, .production_id = 70), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 10, .production_id = 70), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 10, .production_id = 115), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 10, .production_id = 115), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 44), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 44), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 48), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 48), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 49), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 49), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 10), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 10), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 50), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 50), - [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 51), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 51), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 19), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 19), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 11, .production_id = 215), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 11, .production_id = 215), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compatibility_alias_declaration, 4, .production_id = 69), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compatibility_alias_declaration, 4, .production_id = 69), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 11, .production_id = 115), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 11, .production_id = 115), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 11, .production_id = 156), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 11, .production_id = 156), - [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 4, .production_id = 36), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 4, .production_id = 36), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_forward_declaration, 4, .production_id = 71), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_forward_declaration, 4, .production_id = 71), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_forward_declaration, 4, .production_id = 36), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_forward_declaration, 4, .production_id = 36), - [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_forward_declaration, 4, .production_id = 71), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_forward_declaration, 4, .production_id = 71), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 11), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 11), - [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 12, .production_id = 156), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 12, .production_id = 156), - [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 4, .production_id = 36), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 4, .production_id = 36), - [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 6, .production_id = 115), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 6, .production_id = 115), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 6, .production_id = 70), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 6, .production_id = 70), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 4), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 4), - [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 4, .production_id = 70), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 4, .production_id = 70), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 4, .production_id = 36), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 4, .production_id = 36), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 6, .production_id = 70), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 6, .production_id = 70), - [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 6, .production_id = 36), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 6, .production_id = 36), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_implementation, 6, .production_id = 154), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_implementation, 6, .production_id = 154), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 6, .production_id = 156), - [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 6, .production_id = 156), - [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 6, .production_id = 115), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 6, .production_id = 115), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 4, .production_id = 70), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 4, .production_id = 70), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 6, .production_id = 70), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 6, .production_id = 70), - [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 4, .production_id = 70), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 4, .production_id = 70), - [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 86), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 86), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 90), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 90), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 92), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 92), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 50), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 50), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 93), - [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 93), - [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 5, .production_id = 36), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 5, .production_id = 36), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_forward_declaration, 5, .production_id = 114), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_forward_declaration, 5, .production_id = 114), - [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 5, .production_id = 36), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 5, .production_id = 36), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 5, .production_id = 36), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 5, .production_id = 36), - [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 5), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 5), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 5), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 5), - [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 5, .production_id = 70), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 5, .production_id = 70), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 5, .production_id = 115), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 5, .production_id = 115), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 5, .production_id = 36), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 5, .production_id = 36), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 5, .production_id = 70), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 5, .production_id = 70), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 5, .production_id = 70), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 5, .production_id = 70), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 6), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 6), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 6, .production_id = 155), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 6, .production_id = 155), - [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 5, .production_id = 115), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 5, .production_id = 115), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 131), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 131), - [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 6), - [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 6), - [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 6, .production_id = 36), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 6, .production_id = 36), - [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 6, .production_id = 36), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 6, .production_id = 36), - [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 6, .production_id = 154), - [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 6, .production_id = 154), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 56), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 56), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_attribute_specifier, 1), - [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3396), - [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5779), - [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(4942), - [2667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(4940), - [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3229), - [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3374), - [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5330), - [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5300), - [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3375), - [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3363), - [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3366), - [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3382), - [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3377), - [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3433), - [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5257), - [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(4293), - [2706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(4801), - [2709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(1695), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__implementation_definition, 2), - [2714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3098), - [2717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5365), - [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3101), - [2723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5370), - [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3215), - [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5376), - [2732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5177), - [2735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5294), - [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5382), - [2741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3394), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [6256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3396), - [6259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(5779), - [6262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(4942), - [6265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(4940), - [6268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3229), - [6271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3374), - [6274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(5330), - [6277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(5300), - [6280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3363), - [6283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3366), - [6286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3382), - [6289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3418), - [6292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3433), - [6295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(5257), - [6298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(4293), - [6301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(4801), - [6304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(2656), - [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_declaration, 2), - [6309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(2656), - [6312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3209), - [6315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3098), - [6318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(5365), - [6321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3101), - [6324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(5370), - [6327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3215), - [6330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(5376), - [6333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(5382), - [6336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3394), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [6545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 50), - [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), - [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [6565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 50), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [6585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3396), - [6588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5805), - [6591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4615), - [6594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [6596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5596), - [6599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5049), - [6602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3374), - [6605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5330), - [6608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5300), - [6611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3363), - [6614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3366), - [6617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3382), - [6620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3377), - [6623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3614), - [6626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5257), - [6629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4272), - [6632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4801), - [6635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3098), - [6638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5365), - [6641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3101), - [6644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5370), - [6647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5382), - [6650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3394), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), - [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), - [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [6671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5808), - [6674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4608), - [6677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5717), - [6680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5096), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), - [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), - [6699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), - [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [6707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5684), - [6710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4593), - [6713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5333), - [6716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5026), - [6719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [6721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [6723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3396), - [6726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3374), - [6729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(5330), - [6732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(5300), - [6735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__instance_variables_repeat1, 2), - [6737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3363), - [6740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3366), - [6743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3382), - [6746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3377), - [6749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3614), - [6752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(5257), - [6755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(4272), - [6758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(4801), - [6761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(2748), - [6764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3098), - [6767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(5365), - [6770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3101), - [6773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(5370), - [6776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(5382), - [6779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3394), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [6790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1, .production_id = 10), - [6792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1, .production_id = 10), - [6794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_expression, 3, .production_id = 14), - [6796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_expression, 3, .production_id = 14), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [6800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_expression, 2, .production_id = 14), - [6802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_expression, 2, .production_id = 14), - [6804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_expression_repeat1, 2), - [6806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_expression_repeat1, 2), - [6808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expression_repeat1, 2), SHIFT_REPEAT(4818), - [6811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expression_repeat1, 2), SHIFT_REPEAT(4783), - [6814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superclass_reference, 2, .production_id = 36), - [6816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass_reference, 2, .production_id = 36), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [6820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [6822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [6824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [6826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [6828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(4818), - [6831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [6833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [6841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [6843] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(3805), - [6847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [6850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3735), - [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [6859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superclass_reference, 3, .production_id = 108), - [6861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass_reference, 3, .production_id = 108), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [6865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_expression_repeat1, 2, .production_id = 14), - [6867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_expression_repeat1, 2, .production_id = 14), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [6871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [6874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type_references, 3), - [6876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_references, 3), - [6878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_expression_repeat1, 1, .production_id = 42), - [6880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_expression_repeat1, 1, .production_id = 42), - [6882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type_references, 4), - [6884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_references, 4), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [6938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__instance_variables, 3), - [6940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__instance_variables, 3), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [6970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__instance_variables, 2), - [6972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__instance_variables, 2), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), - [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), - [6994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterized_class_type_arguments, 4, .production_id = 152), - [6996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterized_class_type_arguments, 4, .production_id = 152), - [6998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 129), - [7000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 129), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [7036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 217), - [7038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 217), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [7042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 88), - [7044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 88), - [7046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 162), - [7048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 162), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [7054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 163), - [7056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 163), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [7060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 53), - [7062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 53), - [7064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 46), - [7066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 46), - [7068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 122), - [7070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 122), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [7074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 34), - [7076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 34), - [7078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 195), - [7080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 195), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [7086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 3), - [7088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 3), - [7090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 3), - [7092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 3), - [7094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterized_class_type_arguments, 3, .production_id = 67), - [7096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterized_class_type_arguments, 3, .production_id = 67), - [7098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 6), - [7100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 6), - [7102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [7104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [7106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [7108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [7110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 194), - [7112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 194), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [7118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 87), - [7120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 87), - [7122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [7124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [7126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_expression, 4, .production_id = 55), - [7128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_expression, 4, .production_id = 55), - [7130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 47), - [7132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 47), - [7134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_expression, 2, .production_id = 13), - [7136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_expression, 2, .production_id = 13), - [7138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_definition, 4, .production_id = 160), - [7140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_definition, 4, .production_id = 160), - [7142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synthesize_definition, 4), - [7144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synthesize_definition, 4), - [7146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 53), - [7148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 53), - [7150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [7152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [7154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [7156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [7158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 8, .production_id = 164), - [7160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 8, .production_id = 164), - [7162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_definition, 3, .production_id = 121), - [7164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_definition, 3, .production_id = 121), - [7166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synthesize_definition, 3), - [7168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synthesize_definition, 3), - [7170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [7172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [7174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_expression, 3), - [7176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_expression, 3), - [7178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_expression, 3), - [7180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 3), - [7182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [7184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [7186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 217), - [7188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 217), - [7190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [7192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [7194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 5, .production_id = 126), - [7196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 5, .production_id = 126), - [7198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [7200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [7202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [7206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_expression, 3, .production_id = 24), - [7208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_expression, 3, .production_id = 24), - [7210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_expression, 3, .production_id = 23), - [7212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_expression, 3, .production_id = 23), - [7214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 194), - [7216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 194), - [7218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_expression, 3, .production_id = 5), - [7220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_expression, 3, .production_id = 5), - [7222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_expression, 2), - [7224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_expression, 2), - [7226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_message_expression, 4, .production_id = 59), - [7228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_message_expression, 4, .production_id = 59), - [7230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 122), - [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 122), - [7234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_expression, 4, .production_id = 70), - [7236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_expression, 4, .production_id = 70), - [7238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 162), - [7240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 162), - [7242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [7244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [7246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_va_arg_expression, 6, .production_id = 166), - [7248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_va_arg_expression, 6, .production_id = 166), - [7250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 6, .production_id = 164), - [7252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 6, .production_id = 164), - [7254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 15), - [7256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 15), - [7258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [7260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [7262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_expression, 6), - [7264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_expression, 6), - [7266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 4, .production_id = 70), - [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 4, .production_id = 70), - [7270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encode_expression, 4), - [7272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encode_expression, 4), - [7274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_expression, 4, .production_id = 78), - [7276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_expression, 4, .production_id = 78), - [7278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_expression, 4), - [7280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 4), - [7282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_expression, 4, .production_id = 79), - [7284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_expression, 4, .production_id = 79), - [7286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 16), - [7288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 16), - [7290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 7, .production_id = 126), - [7292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 7, .production_id = 126), - [7294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 195), - [7296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 195), - [7298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_expression, 2), - [7300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_expression, 2), - [7302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [7304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [7306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 163), - [7308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 163), - [7310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [7314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_expression, 4), - [7316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_expression, 4), - [7318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_attribute_specifier, 5, .production_id = 119), - [7320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_attribute_specifier, 5, .production_id = 119), - [7322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 1, .dynamic_precedence = 1), - [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 1, .dynamic_precedence = 1), - [7326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_attribute_specifier, 5, .production_id = 117), - [7328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_attribute_specifier, 5, .production_id = 117), - [7330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_qualifiers, 3, .production_id = 36), - [7332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_qualifiers, 3, .production_id = 36), - [7334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_attribute_specifier, 1), - [7336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generics_type_reference, 5, .production_id = 70), - [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generics_type_reference, 5, .production_id = 70), - [7340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generics_type_reference, 4, .production_id = 70), - [7342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generics_type_reference, 4, .production_id = 70), - [7344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_attribute_specifier, 4, .production_id = 73), - [7346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_attribute_specifier, 4, .production_id = 73), - [7348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, .dynamic_precedence = 1), - [7350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, .dynamic_precedence = 1), - [7352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_attribute_specifier, 4), - [7354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_attribute_specifier, 4), - [7356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_qualifiers, 4, .production_id = 71), - [7358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_qualifiers, 4, .production_id = 71), - [7360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_variadic_arguments_attribute_specifier, 6), - [7362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_variadic_arguments_attribute_specifier, 6), - [7364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superclass_reference, 2, .production_id = 36), SHIFT(3783), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [7369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expression_repeat1, 2), SHIFT_REPEAT(4840), - [7372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expression_repeat1, 2), SHIFT_REPEAT(4751), - [7375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(4840), - [7378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 176), - [7380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 176), - [7382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, .production_id = 235), - [7384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, .production_id = 235), - [7386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 228), - [7388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 228), - [7390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 96), - [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 96), - [7394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 142), - [7396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 142), - [7398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 220), - [7400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 220), - [7402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 201), - [7404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 201), - [7406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 214), - [7408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 214), - [7410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 96), - [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 96), - [7414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 227), - [7416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 227), - [7418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 139), - [7420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 139), - [7422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 237), - [7424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 237), - [7426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 178), - [7428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 178), - [7430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 228), - [7432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 228), - [7434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 213), - [7436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 213), - [7438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 188), - [7440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 188), - [7442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 227), - [7444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 227), - [7446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 242), - [7448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 242), - [7450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 208), - [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 208), - [7454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 54), - [7456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 54), - [7458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 136), - [7460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 136), - [7462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 236), - [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 236), - [7466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 98), - [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 98), - [7470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 226), - [7472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 226), - [7474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 178), - [7476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 178), - [7478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 235), - [7480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 235), - [7482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 228), - [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 228), - [7486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 176), - [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 176), - [7490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 226), - [7492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 226), - [7494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 151), - [7496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 151), - [7498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 226), - [7500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 226), - [7502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 176), - [7504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 176), - [7506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 54), - [7508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 54), - [7510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 213), - [7512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 213), - [7514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 178), - [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 178), - [7518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 136), - [7520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 136), - [7522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 236), - [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 236), - [7526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 113), - [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 113), - [7530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 136), - [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 136), - [7534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, .production_id = 231), - [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, .production_id = 231), - [7538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 98), - [7540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 98), - [7542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 213), - [7544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 213), - [7546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 231), - [7548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 231), - [7550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 243), - [7552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 243), - [7554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 139), - [7556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 139), - [7558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 96), - [7560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 96), - [7562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, .production_id = 243), - [7564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, .production_id = 243), - [7566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 98), - [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 98), - [7570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 214), - [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 214), - [7574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 12, .production_id = 245), - [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 12, .production_id = 245), - [7578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 235), - [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 235), - [7582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, .production_id = 245), - [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, .production_id = 245), - [7586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, .production_id = 220), - [7588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, .production_id = 220), - [7590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 11, .production_id = 245), - [7592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 11, .production_id = 245), - [7594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, .production_id = 242), - [7596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, .production_id = 242), - [7598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 142), - [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 142), - [7602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 237), - [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 237), - [7606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 11, .production_id = 231), - [7608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 11, .production_id = 231), - [7610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, .production_id = 151), - [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 151), - [7614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 201), - [7616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 201), - [7618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 142), - [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 142), - [7622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 214), - [7624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 214), - [7626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 227), - [7628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 227), - [7630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, .production_id = 208), - [7632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, .production_id = 208), - [7634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 188), - [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 188), - [7638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 139), - [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 139), - [7642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 201), - [7644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 201), - [7646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 11, .production_id = 243), - [7648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 11, .production_id = 243), - [7650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, .production_id = 236), - [7652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, .production_id = 236), - [7654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 208), - [7656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 208), - [7658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 54), - [7660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 54), - [7662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 220), - [7664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 220), - [7666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 11, .production_id = 242), - [7668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 11, .production_id = 242), - [7670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 188), - [7672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 188), - [7674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, .production_id = 113), - [7676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 113), - [7678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, .production_id = 237), - [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, .production_id = 237), - [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), - [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [7692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), - [7698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [7700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), - [7702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_swift_name_attribute_sepcifier, 7, .production_id = 192), - [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_swift_name_attribute_sepcifier, 7, .production_id = 192), - [7706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 43), - [7708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 51), - [7710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_swift_name_attribute_sepcifier, 1), - [7712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_swift_name_attribute_sepcifier, 1), - [7714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 19), - [7716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 19), - [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [7724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_swift_name_attribute_sepcifier, 7, .production_id = 193), - [7726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_swift_name_attribute_sepcifier, 7, .production_id = 193), - [7728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 84), - [7730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 106), - [7732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_swift_name_attribute_sepcifier, 5, .production_id = 120), - [7734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_swift_name_attribute_sepcifier, 5, .production_id = 120), - [7736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 22), - [7738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 43), - [7740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 50), - [7742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 63), - [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [7746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 22), - [7748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_swift_name_attribute_sepcifier, 8, .production_id = 216), - [7750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_swift_name_attribute_sepcifier, 8, .production_id = 216), - [7752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 84), - [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [7760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_swift_name_attribute_sepcifier, 6, .production_id = 158), - [7762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_swift_name_attribute_sepcifier, 6, .production_id = 158), - [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [7772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 92), - [7774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [7776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 50), - [7778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_swift_name_attribute_sepcifier, 4, .production_id = 74), - [7780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_swift_name_attribute_sepcifier, 4, .production_id = 74), - [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [7784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 93), - [7786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 131), - [7788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [7790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_function_declarator_repeat1, 1), - [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [7801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [7803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3374), - [7806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5330), - [7809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5300), - [7812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3363), - [7815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3098), - [7818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5365), - [7821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3101), - [7824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5370), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [7829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 43), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 50), - [7837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [7841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 63), - [7843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 51), - [7845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 22), - [7847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 19), - [7849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 92), - [7851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 131), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [7867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [7875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 50), - [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 22), - [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 93), - [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 19), - [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 106), - [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 84), - [7887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 84), - [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 43), - [7891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [7893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [7905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), - [7911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [7915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [7917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [7919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [7921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [7925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [7935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 83), - [7939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declarator, 3, .production_id = 83), - [7941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [7943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [7947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), - [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), - [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), - [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), - [7961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 17), - [7963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 17), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), - [7973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [7975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3593), - [7978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5859), - [7981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5813), - [7984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3596), - [7987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3598), - [7990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5914), - [7993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3576), - [7996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5863), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [8003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3474), - [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [8008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [8014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [8016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [8018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3383), - [8021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 17), - [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 17), - [8025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [8027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [8035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [8037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_attributes, 3), - [8039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_attributes, 4), - [8041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_attributes, 2), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [8047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [8049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [8053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [8055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(3805), - [8058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type_specifier, 2, .dynamic_precedence = 1, .production_id = 7), - [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_specifier, 2, .dynamic_precedence = 1, .production_id = 7), - [8062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_type_specifier_repeat1, 2), - [8064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_type_specifier_repeat1, 2), - [8066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_type_specifier_repeat1, 2), SHIFT_REPEAT(3735), - [8069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type_specifier, 2, .dynamic_precedence = 1, .production_id = 11), - [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_specifier, 2, .dynamic_precedence = 1, .production_id = 11), - [8073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 17), SHIFT(5859), - [8076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 17), SHIFT(3598), - [8079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 17), SHIFT(5914), - [8082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 17), SHIFT(3576), - [8085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 17), SHIFT(5863), - [8088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 4), - [8090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 4), - [8092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 4), SHIFT(2743), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [8099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 29), - [8101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 29), - [8103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 29), SHIFT(2743), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [8108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 17), SHIFT(5859), - [8111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 17), SHIFT(3598), - [8114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 17), SHIFT(5914), - [8117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 17), SHIFT(3576), - [8120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 17), SHIFT(5863), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [8125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), SHIFT(5859), - [8128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), SHIFT(3598), - [8131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), SHIFT(5914), - [8134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), SHIFT(3576), - [8137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), SHIFT(5863), - [8140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), SHIFT(5859), - [8143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), SHIFT(3598), - [8146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), SHIFT(5914), - [8149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), SHIFT(3576), - [8152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), SHIFT(5863), - [8155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), SHIFT(3596), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [8160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 17), SHIFT(3596), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [8165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), SHIFT(3596), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [8170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 17), SHIFT(3596), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [8177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 62), - [8179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 62), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [8183] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(3790), - [8187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3745), - [8190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 1), SHIFT(3444), - [8193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 1), - [8195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 1), - [8197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4865), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [8202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 29), - [8204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 29), - [8206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 29), SHIFT(2743), - [8209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 56), - [8211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 56), - [8213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 56), SHIFT(4865), - [8216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 62), SHIFT(4865), - [8219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 29), - [8221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 29), - [8223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 29), SHIFT(2743), - [8226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 143), - [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 143), - [8230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 143), SHIFT(4865), - [8233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 4), - [8235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 4), - [8237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 4), SHIFT(2743), - [8240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), - [8242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [8246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 27), - [8248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 27), - [8250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 27), SHIFT(4865), - [8253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 1), SHIFT(3429), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [8258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 4), - [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 4), - [8262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 4), SHIFT(2743), - [8265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [8268] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(3805), - [8272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), SHIFT(4865), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [8289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [8293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 109), - [8295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 109), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), - [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), - [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), - [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [8321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [8325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3613), - [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [8340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [8384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 18), - [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 18), - [8388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 17), - [8390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 17), - [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [8396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 30), - [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 30), - [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [8428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 28), - [8430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 28), - [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [8452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof_specifier, 4, .production_id = 60), - [8454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof_specifier, 4, .production_id = 60), - [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [8464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [8476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 30), - [8478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 30), - [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [8488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 107), - [8490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 107), - [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [8496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 29), SHIFT(5067), - [8499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 5), - [8501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 5), - [8503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [8507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_specifier, 4, .production_id = 60), - [8509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_specifier, 4, .production_id = 60), - [8511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [8513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [8519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 61), - [8521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 61), - [8523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 4), SHIFT(5067), - [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [8534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 28), - [8536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 28), - [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [8542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [8546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [8548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [8550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [8558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 7, .production_id = 181), - [8560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 7, .production_id = 181), - [8562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [8566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [8572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 105), - [8574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 105), - [8576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 65), - [8578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 65), - [8580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 104), - [8582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 104), - [8584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 66), - [8586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 66), - [8588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 66), - [8590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 66), - [8592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [8596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 68), - [8598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 68), - [8600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 5), - [8602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 5), - [8604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [8608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, .production_id = 182), - [8610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, .production_id = 182), - [8612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [8614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [8624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [8628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [8630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [8632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 5), - [8634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 5), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_catch_statement_repeat1, 2, .production_id = 77), SHIFT_REPEAT(5467), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 43), + [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 43), + [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 130), + [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 130), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 230), + [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 230), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 231), + [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 231), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 232), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 232), + [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 233), + [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 233), + [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 234), + [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 234), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 203), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 203), + [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 43), + [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 43), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 10, .production_id = 238), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 10, .production_id = 238), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 10, .production_id = 239), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 10, .production_id = 239), + [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 200), + [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 200), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 201), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 201), + [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 171), REDUCE(sym_type_definition, 7, .production_id = 201), + [1254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 171), REDUCE(sym_type_definition, 7, .production_id = 201), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 171), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 171), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 203), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 203), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 7, .production_id = 130), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 7, .production_id = 130), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 56), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 56), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 54), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 54), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 57), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 57), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 17), REDUCE(sym_type_definition, 4, .production_id = 57), + [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 17), REDUCE(sym_type_definition, 4, .production_id = 57), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 17), + [1293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 17), + [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 205), + [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 205), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 206), + [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 206), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 207), + [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 207), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 208), + [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 208), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 209), + [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 209), + [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 210), + [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 210), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 211), + [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 211), + [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 212), + [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 212), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 7, .dynamic_precedence = 1, .production_id = 186), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 7, .dynamic_precedence = 1, .production_id = 186), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 146), + [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 146), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synchronized_statement, 3, .production_id = 31), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synchronized_statement, 3, .production_id = 31), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 185), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 185), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 184), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 184), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 183), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 183), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 182), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 182), + [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 180), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 180), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 99), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 99), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 11, .production_id = 244), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 11, .production_id = 244), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 10, .production_id = 241), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 10, .production_id = 241), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 10, .production_id = 240), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 10, .production_id = 240), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 229), + [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 229), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 4, .production_id = 76), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 4, .production_id = 76), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 179), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 179), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 84), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 84), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 225), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 225), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 9, .production_id = 224), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 9, .production_id = 224), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 203), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 203), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, .production_id = 89), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, .production_id = 89), + [1419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 203), REDUCE(sym_type_definition, 8, .production_id = 223), + [1422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 203), REDUCE(sym_type_definition, 8, .production_id = 223), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 223), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 223), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 222), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 222), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, .production_id = 84), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, .production_id = 84), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 171), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 171), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 221), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 221), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 220), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 220), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 35), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 35), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 8, .production_id = 219), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 8, .production_id = 219), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 89), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 89), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 178), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 178), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 97), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 97), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 98), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 98), + [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 56), REDUCE(sym_type_definition, 5, .production_id = 98), + [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 56), REDUCE(sym_type_definition, 5, .production_id = 98), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 56), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 56), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 99), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 99), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 33), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 33), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 96), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 96), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 100), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 100), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 101), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 101), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 17), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 17), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 171), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 171), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 32), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 32), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 177), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 177), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_autoreleasepool_statement, 2, .production_id = 12), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_autoreleasepool_statement, 2, .production_id = 12), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_catch_statement_repeat1, 5, .production_id = 196), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_catch_statement_repeat1, 5, .production_id = 196), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 32), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 32), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 31), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 31), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, .production_id = 130), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, .production_id = 130), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 3, .production_id = 17), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3, .production_id = 17), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 176), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 176), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 146), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 146), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 142), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 142), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 141), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 141), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 140), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 140), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 99), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 99), + [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 99), REDUCE(sym_type_definition, 6, .production_id = 139), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 99), REDUCE(sym_type_definition, 6, .production_id = 139), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 139), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 139), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 138), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 138), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 56), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 56), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 137), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 137), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 136), + [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 136), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 135), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 135), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 109), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 109), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 110), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 110), + [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 89), + [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 89), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 174), + [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 174), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 5, .production_id = 123), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 5, .production_id = 123), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 43), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 43), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 84), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 84), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 175), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 175), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_catch_statement_repeat1, 2, .production_id = 77), SHIFT_REPEAT(5847), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 8, .production_id = 114), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 8, .production_id = 114), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 6, .production_id = 36), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 6, .production_id = 36), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_import, 2, .production_id = 8), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_import, 2, .production_id = 8), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_import, 2, .production_id = 9), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_import, 2, .production_id = 9), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 8), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 8), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 19), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 19), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 19), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 19), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 25), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 25), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_forward_declaration, 3, .production_id = 36), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_forward_declaration, 3, .production_id = 36), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 3, .production_id = 36), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 3, .production_id = 36), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_forward_declaration, 3, .production_id = 36), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_forward_declaration, 3, .production_id = 36), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 3, .production_id = 36), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 3, .production_id = 36), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 3), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 3), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 3, .production_id = 36), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 3, .production_id = 36), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 44), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 44), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 48), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 48), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 49), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 49), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 50), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 50), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 51), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 51), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 19), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 19), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compatibility_alias_declaration, 4, .production_id = 69), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compatibility_alias_declaration, 4, .production_id = 69), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 4, .production_id = 36), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 4, .production_id = 36), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_forward_declaration, 4, .production_id = 71), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_forward_declaration, 4, .production_id = 71), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_forward_declaration, 4, .production_id = 36), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_forward_declaration, 4, .production_id = 36), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_forward_declaration, 4, .production_id = 71), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_forward_declaration, 4, .production_id = 71), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 4, .production_id = 36), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 4, .production_id = 36), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 4), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 4), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 4, .production_id = 70), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 4, .production_id = 70), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 4, .production_id = 36), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 4, .production_id = 36), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 4, .production_id = 70), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 4, .production_id = 70), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 4, .production_id = 70), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 4, .production_id = 70), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 86), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 86), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 90), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 90), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 92), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 92), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 50), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 50), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 93), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 93), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 5, .production_id = 36), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 5, .production_id = 36), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_forward_declaration, 5, .production_id = 113), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_forward_declaration, 5, .production_id = 113), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 5, .production_id = 36), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 5, .production_id = 36), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 5, .production_id = 36), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 5, .production_id = 36), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 5), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 5), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 5), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 5), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 5, .production_id = 70), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 5, .production_id = 70), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 5, .production_id = 114), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 5, .production_id = 114), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 5, .production_id = 36), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 5, .production_id = 36), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 5, .production_id = 70), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 5, .production_id = 70), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 5, .production_id = 70), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 5, .production_id = 70), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 5, .production_id = 114), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 5, .production_id = 114), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 131), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 131), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 6, .production_id = 36), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 6, .production_id = 36), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 6, .production_id = 153), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 6, .production_id = 153), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 6), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 6), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 6, .production_id = 154), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 6, .production_id = 154), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 6), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 6), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 6, .production_id = 70), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 6, .production_id = 70), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 6, .production_id = 114), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 6, .production_id = 114), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 6, .production_id = 155), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 6, .production_id = 155), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_implementation, 6, .production_id = 153), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_implementation, 6, .production_id = 153), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 6, .production_id = 36), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 6, .production_id = 36), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 6, .production_id = 70), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 6, .production_id = 70), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 6, .production_id = 70), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 6, .production_id = 70), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 6, .production_id = 114), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 6, .production_id = 114), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 7, .production_id = 36), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 7, .production_id = 36), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 7, .production_id = 153), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 7, .production_id = 153), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 7, .production_id = 36), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 7, .production_id = 36), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 7, .production_id = 189), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 7, .production_id = 189), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 7), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 7), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 7, .production_id = 154), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 7, .production_id = 154), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 7), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 7), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 7, .production_id = 70), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 7, .production_id = 70), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 7, .production_id = 114), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 7, .production_id = 114), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 7, .production_id = 155), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 7, .production_id = 155), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_implementation, 7, .production_id = 153), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_implementation, 7, .production_id = 153), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 7, .production_id = 36), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 7, .production_id = 36), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_implementation, 7, .production_id = 202), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_implementation, 7, .production_id = 202), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 7, .production_id = 70), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 7, .production_id = 70), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 12, .production_id = 155), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 12, .production_id = 155), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 7, .production_id = 114), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 7, .production_id = 114), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 8, .production_id = 36), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 8, .production_id = 36), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 11), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 11), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 8, .production_id = 153), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 8, .production_id = 153), + [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 11, .production_id = 155), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 11, .production_id = 155), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 11, .production_id = 114), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 11, .production_id = 114), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 11, .production_id = 215), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 11, .production_id = 215), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 8, .production_id = 36), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 8, .production_id = 36), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 8, .production_id = 189), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 8, .production_id = 189), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 10, .production_id = 155), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 10, .production_id = 155), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 10), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 10), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 10, .production_id = 114), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 10, .production_id = 114), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 10, .production_id = 70), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 10, .production_id = 70), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 10, .production_id = 215), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 10, .production_id = 215), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 10, .production_id = 36), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 10, .production_id = 36), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 10, .production_id = 189), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 10, .production_id = 189), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 8, .production_id = 215), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 8, .production_id = 215), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 8), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 8), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 9, .production_id = 155), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 9, .production_id = 155), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 8, .production_id = 154), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 8, .production_id = 154), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 8), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 8), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 8, .production_id = 70), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 8, .production_id = 70), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 9, .production_id = 114), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 9, .production_id = 114), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 9), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 9), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 9, .production_id = 70), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 9, .production_id = 70), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 9, .production_id = 154), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 9, .production_id = 154), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 9, .production_id = 215), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 9, .production_id = 215), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 9, .production_id = 36), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 9, .production_id = 36), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 9, .production_id = 36), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 9, .production_id = 36), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 9, .production_id = 189), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 9, .production_id = 189), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_interface, 9, .production_id = 153), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_interface, 9, .production_id = 153), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 8, .production_id = 70), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 8, .production_id = 70), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_category_implementation, 8, .production_id = 202), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_category_implementation, 8, .production_id = 202), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_interface, 8, .production_id = 155), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_interface, 8, .production_id = 155), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 56), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 56), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_attribute_specifier, 1), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3335), + [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5719), + [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(4952), + [2751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(4951), + [2754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3159), + [2757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3314), + [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5853), + [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5844), + [2766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3312), + [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3303), + [2772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3304), + [2775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3321), + [2778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3325), + [2781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3372), + [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(4289), + [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(4828), + [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(1701), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__implementation_definition, 2), + [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3041), + [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5792), + [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3040), + [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5791), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3189), + [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5785), + [2813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5225), + [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5475), + [2819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5783), + [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(5782), + [2825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__implementation_definition, 2), SHIFT_REPEAT(3334), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [5832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3335), + [5835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(5719), + [5838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(4952), + [5841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(4951), + [5844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3159), + [5847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3314), + [5850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(5853), + [5853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(5844), + [5856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3303), + [5859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3304), + [5862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3321), + [5865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3354), + [5868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3372), + [5871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(4289), + [5874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(4828), + [5877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(2492), + [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_declaration, 2), + [5882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(2492), + [5885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3139), + [5888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3041), + [5891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(5792), + [5894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3040), + [5897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(5791), + [5900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3189), + [5903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(5785), + [5906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(5783), + [5909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(5782), + [5912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_declaration, 2), SHIFT_REPEAT(3334), + [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [6495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 50), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [6521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 50), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [6535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3335), + [6538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5765), + [6541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4622), + [6544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [6546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5500), + [6549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5139), + [6552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3314), + [6555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5853), + [6558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5844), + [6561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3303), + [6564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3304), + [6567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3321), + [6570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3325), + [6573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3609), + [6576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4288), + [6579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4828), + [6582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3041), + [6585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5792), + [6588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3040), + [6591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5791), + [6594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5783), + [6597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5782), + [6600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3334), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [6621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5604), + [6624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4639), + [6627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5573), + [6630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5104), + [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [6641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5768), + [6644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4630), + [6647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5641), + [6650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5061), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), + [6663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [6669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [6681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3335), + [6684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3314), + [6687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(5853), + [6690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(5844), + [6693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__instance_variables_repeat1, 2), + [6695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3303), + [6698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3304), + [6701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3321), + [6704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3325), + [6707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3609), + [6710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(4288), + [6713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(4828), + [6716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(2705), + [6719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3041), + [6722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(5792), + [6725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3040), + [6728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(5791), + [6731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(5783), + [6734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(5782), + [6737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__instance_variables_repeat1, 2), SHIFT_REPEAT(3334), + [6740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1, .production_id = 10), + [6742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1, .production_id = 10), + [6744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_expression, 3, .production_id = 14), + [6746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_expression, 3, .production_id = 14), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [6750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_expression_repeat1, 2), + [6752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_expression_repeat1, 2), + [6754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expression_repeat1, 2), SHIFT_REPEAT(4850), + [6757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expression_repeat1, 2), SHIFT_REPEAT(4790), + [6760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_expression, 2, .production_id = 14), + [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_expression, 2, .production_id = 14), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [6770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [6772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [6774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(4850), + [6777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [6779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [6781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superclass_reference, 2, .production_id = 36), + [6783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass_reference, 2, .production_id = 36), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [6793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [6795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [6813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [6815] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(3721), + [6819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [6822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3685), + [6825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [6836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superclass_reference, 3, .production_id = 107), + [6838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superclass_reference, 3, .production_id = 107), + [6840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type_references, 3), + [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_references, 3), + [6844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_expression_repeat1, 1, .production_id = 42), + [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_expression_repeat1, 1, .production_id = 42), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [6852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_expression_repeat1, 2, .production_id = 14), + [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_expression_repeat1, 2, .production_id = 14), + [6856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type_references, 4), + [6858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_references, 4), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [6888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__instance_variables, 3), + [6890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__instance_variables, 3), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [6908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__instance_variables, 2), + [6910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__instance_variables, 2), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), + [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [6950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 46), + [6952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 46), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [6962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 3), + [6964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 3), + [6966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 129), + [6968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 129), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [6994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 217), + [6996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 217), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [7000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 34), + [7002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 34), + [7004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 53), + [7006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 53), + [7008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 121), + [7010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 121), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [7014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [7016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [7018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 162), + [7020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 162), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [7024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 88), + [7026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 88), + [7028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterized_class_type_arguments, 4, .production_id = 151), + [7030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterized_class_type_arguments, 4, .production_id = 151), + [7032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 161), + [7034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 161), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [7038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 194), + [7040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 194), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [7046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 193), + [7048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 193), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [7052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameterized_class_type_arguments, 3, .production_id = 67), + [7054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameterized_class_type_arguments, 3, .production_id = 67), + [7056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 6), + [7058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 6), + [7060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 3), + [7062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 3), + [7064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 3), + [7066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 3), + [7068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [7070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [7072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_expression, 2, .production_id = 13), + [7074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_expression, 2, .production_id = 13), + [7076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_message_expression, 4, .production_id = 59), + [7078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_message_expression, 4, .production_id = 59), + [7080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 87), + [7082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 87), + [7084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [7086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [7088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_expression, 4, .production_id = 70), + [7090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_expression, 4, .production_id = 70), + [7092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [7094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [7096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [7098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [7100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 7, .production_id = 126), + [7102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 7, .production_id = 126), + [7104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_expression, 2), + [7106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_expression, 2), + [7108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [7110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [7112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 4, .production_id = 70), + [7114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 4, .production_id = 70), + [7116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_encode_expression, 4), + [7118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_encode_expression, 4), + [7120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_expression, 4, .production_id = 78), + [7122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_expression, 4, .production_id = 78), + [7124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_expression, 4), + [7126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 4), + [7128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_expression, 4, .production_id = 79), + [7130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_expression, 4, .production_id = 79), + [7132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [7134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [7136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_expression, 4), + [7138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_expression, 4), + [7140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 161), + [7142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 161), + [7144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_expression, 3), + [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_expression, 3), + [7148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_expression, 2), + [7150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_expression, 2), + [7152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 53), + [7154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 53), + [7156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 162), + [7158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 162), + [7160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 8, .production_id = 164), + [7162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 8, .production_id = 164), + [7164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 217), + [7166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 217), + [7168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synthesize_definition, 4), + [7170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synthesize_definition, 4), + [7172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_definition, 4, .production_id = 159), + [7174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_definition, 4, .production_id = 159), + [7176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 16), + [7178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 16), + [7180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 121), + [7182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 121), + [7184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 15), + [7186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 15), + [7188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_expression, 4, .production_id = 55), + [7190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_expression, 4, .production_id = 55), + [7192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [7196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [7198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [7200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_expression, 3, .production_id = 5), + [7202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_expression, 3, .production_id = 5), + [7204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_va_arg_expression, 6, .production_id = 166), + [7206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_va_arg_expression, 6, .production_id = 166), + [7208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 6, .production_id = 164), + [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 6, .production_id = 164), + [7212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [7214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [7216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_expression, 6), + [7218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_expression, 6), + [7220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [7222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [7224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_synthesize_definition, 3), + [7226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synthesize_definition, 3), + [7228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [7230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [7232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 5, .production_id = 126), + [7234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 5, .production_id = 126), + [7236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_definition, 3, .production_id = 120), + [7238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_definition, 3, .production_id = 120), + [7240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_expression, 3, .production_id = 23), + [7242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_expression, 3, .production_id = 23), + [7244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 194), + [7246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 194), + [7248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 47), + [7250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 47), + [7252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [7254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [7256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_expression, 3, .production_id = 24), + [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_expression, 3, .production_id = 24), + [7260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 193), + [7262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 193), + [7264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_expression, 3), + [7266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 3), + [7268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_attribute_specifier, 4), + [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_attribute_specifier, 4), + [7272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_qualifiers, 3, .production_id = 36), + [7274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_qualifiers, 3, .production_id = 36), + [7276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generics_type_reference, 5, .production_id = 70), + [7278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generics_type_reference, 5, .production_id = 70), + [7280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_attribute_specifier, 1), + [7282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 1, .dynamic_precedence = 1), + [7284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 1, .dynamic_precedence = 1), + [7286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_qualifiers, 4, .production_id = 71), + [7288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_qualifiers, 4, .production_id = 71), + [7290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, .dynamic_precedence = 1), + [7292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, .dynamic_precedence = 1), + [7294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_attribute_specifier, 4, .production_id = 73), + [7296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_attribute_specifier, 4, .production_id = 73), + [7298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_attribute_specifier, 5, .production_id = 118), + [7300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_attribute_specifier, 5, .production_id = 118), + [7302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_attribute_specifier, 5, .production_id = 116), + [7304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_attribute_specifier, 5, .production_id = 116), + [7306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generics_type_reference, 4, .production_id = 70), + [7308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generics_type_reference, 4, .production_id = 70), + [7310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_variadic_arguments_attribute_specifier, 6), + [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_variadic_arguments_attribute_specifier, 6), + [7314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_superclass_reference, 2, .production_id = 36), SHIFT(3690), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [7319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expression_repeat1, 2), SHIFT_REPEAT(4880), + [7322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expression_repeat1, 2), SHIFT_REPEAT(4782), + [7325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(4880), + [7328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, .production_id = 242), + [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, .production_id = 242), + [7332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 207), + [7334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 207), + [7336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 236), + [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 236), + [7340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 177), + [7342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 177), + [7344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 213), + [7346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 213), + [7348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 235), + [7350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 235), + [7352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 135), + [7354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 135), + [7356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 175), + [7358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 175), + [7360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 175), + [7362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 175), + [7364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 226), + [7366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 226), + [7368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 235), + [7370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 235), + [7372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 177), + [7374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 177), + [7376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 236), + [7378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 236), + [7380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 135), + [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 135), + [7384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 207), + [7386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 207), + [7388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 97), + [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 97), + [7392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 242), + [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 242), + [7396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 227), + [7398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 227), + [7400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 228), + [7402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 228), + [7404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 219), + [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 219), + [7408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 243), + [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 243), + [7412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 213), + [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 213), + [7416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 230), + [7418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 230), + [7420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 138), + [7422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 138), + [7424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 200), + [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 200), + [7428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 96), + [7430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 96), + [7432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 214), + [7434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 214), + [7436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 141), + [7438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 141), + [7440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 237), + [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 237), + [7444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 54), + [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 54), + [7448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 187), + [7450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 187), + [7452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 237), + [7454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 237), + [7456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 227), + [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 227), + [7460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 150), + [7462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 150), + [7464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, .production_id = 235), + [7466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, .production_id = 235), + [7468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, .production_id = 236), + [7470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, .production_id = 236), + [7472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, .production_id = 207), + [7474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, .production_id = 207), + [7476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 54), + [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 54), + [7480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 138), + [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 138), + [7484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, .production_id = 219), + [7486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, .production_id = 219), + [7488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, .production_id = 243), + [7490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, .production_id = 243), + [7492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 96), + [7494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 96), + [7496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 214), + [7498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 214), + [7500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 226), + [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 226), + [7504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 3, .production_id = 112), + [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 3, .production_id = 112), + [7508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 97), + [7510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 97), + [7512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 200), + [7514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 200), + [7516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, .production_id = 245), + [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, .production_id = 245), + [7520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, .production_id = 237), + [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, .production_id = 237), + [7524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 141), + [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 141), + [7528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 187), + [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 187), + [7532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 228), + [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 228), + [7536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 11, .production_id = 242), + [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 11, .production_id = 242), + [7540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 228), + [7542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 228), + [7544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 11, .production_id = 243), + [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 11, .production_id = 243), + [7548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 11, .production_id = 230), + [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 11, .production_id = 230), + [7552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 11, .production_id = 245), + [7554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 11, .production_id = 245), + [7556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 12, .production_id = 245), + [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 12, .production_id = 245), + [7560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 141), + [7562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 141), + [7564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 214), + [7566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 214), + [7568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 96), + [7570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 96), + [7572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 227), + [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 227), + [7576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 138), + [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 138), + [7580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 177), + [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 177), + [7584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 213), + [7586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 213), + [7588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 97), + [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 97), + [7592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 175), + [7594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 175), + [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), + [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [7604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), + [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [7616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 135), + [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 135), + [7620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 226), + [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 226), + [7624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 219), + [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 219), + [7628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 187), + [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 187), + [7632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 200), + [7634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 200), + [7636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, .production_id = 230), + [7638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, .production_id = 230), + [7640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, .production_id = 150), + [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 150), + [7644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, .production_id = 112), + [7646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 112), + [7648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 54), + [7650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 54), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [7676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [7678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_swift_name_attribute_sepcifier, 5, .production_id = 119), + [7680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_swift_name_attribute_sepcifier, 5, .production_id = 119), + [7682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 43), + [7684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 50), + [7686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 93), + [7688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_swift_name_attribute_sepcifier, 6, .production_id = 157), + [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_swift_name_attribute_sepcifier, 6, .production_id = 157), + [7692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 51), + [7694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 84), + [7696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 50), + [7698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_swift_name_attribute_sepcifier, 7, .production_id = 191), + [7700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_swift_name_attribute_sepcifier, 7, .production_id = 191), + [7702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_swift_name_attribute_sepcifier, 8, .production_id = 216), + [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_swift_name_attribute_sepcifier, 8, .production_id = 216), + [7706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 63), + [7708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_swift_name_attribute_sepcifier, 7, .production_id = 192), + [7710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_swift_name_attribute_sepcifier, 7, .production_id = 192), + [7712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_swift_name_attribute_sepcifier, 4, .production_id = 74), + [7714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_swift_name_attribute_sepcifier, 4, .production_id = 74), + [7716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 22), + [7718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 43), + [7720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 131), + [7722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 105), + [7724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 19), + [7726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 92), + [7728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 22), + [7730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_swift_name_attribute_sepcifier, 1), + [7732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_swift_name_attribute_sepcifier, 1), + [7734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 84), + [7736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 19), + [7738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [7740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3314), + [7743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5853), + [7746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5844), + [7749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3303), + [7752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3041), + [7755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5792), + [7758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3040), + [7761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5791), + [7764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [7766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), REDUCE(aux_sym_function_declarator_repeat1, 1), + [7769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 43), + [7781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [7803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 19), + [7805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 22), + [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 51), + [7809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 19), + [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 50), + [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 93), + [7815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 131), + [7817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 50), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [7823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 22), + [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 105), + [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 63), + [7829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 92), + [7831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 84), + [7837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 84), + [7839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 43), + [7841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [7843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [7853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [7861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [7865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [7875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [7881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [7887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 83), + [7889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_declarator, 3, .production_id = 83), + [7891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [7893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [7895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3317), + [7898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), + [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), + [7918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 17), + [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 17), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), + [7930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3415), + [7933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [7935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [7939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [7941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 17), + [7943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 17), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [7949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [7951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3521), + [7954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5819), + [7957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5773), + [7960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3567), + [7963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3534), + [7966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5874), + [7969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3529), + [7972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5822), + [7975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [7983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_attributes, 3), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [7987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_attributes, 4), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [7991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_attributes, 2), + [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [7995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [7997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [8005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(3721), + [8008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_type_specifier_repeat1, 2), + [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_type_specifier_repeat1, 2), + [8012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_type_specifier_repeat1, 2), SHIFT_REPEAT(3685), + [8015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type_specifier, 2, .dynamic_precedence = 1, .production_id = 11), + [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_specifier, 2, .dynamic_precedence = 1, .production_id = 11), + [8019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type_specifier, 2, .dynamic_precedence = 1, .production_id = 7), + [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_specifier, 2, .dynamic_precedence = 1, .production_id = 7), + [8023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 4), + [8025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 4), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [8033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 29), + [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 29), + [8037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 29), SHIFT(2695), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [8042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), SHIFT(5819), + [8045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), SHIFT(3534), + [8048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), SHIFT(5874), + [8051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), SHIFT(3529), + [8054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), SHIFT(5822), + [8057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), SHIFT(5819), + [8060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), SHIFT(3534), + [8063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), SHIFT(5874), + [8066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), SHIFT(3529), + [8069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), SHIFT(5822), + [8072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 17), SHIFT(5819), + [8075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 17), SHIFT(3534), + [8078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 17), SHIFT(5874), + [8081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 17), SHIFT(3529), + [8084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 17), SHIFT(5822), + [8087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 4), SHIFT(2695), + [8090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 17), SHIFT(5819), + [8093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 17), SHIFT(3534), + [8096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 17), SHIFT(5874), + [8099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 17), SHIFT(3529), + [8102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 17), SHIFT(5822), + [8105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 17), SHIFT(3567), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [8110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), SHIFT(3567), + [8113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 17), SHIFT(3567), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [8118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), SHIFT(3567), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [8127] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), SHIFT(3691), + [8131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3686), + [8134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ns_enum_specifier, 4, .production_id = 56), + [8136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ns_enum_specifier, 4, .production_id = 56), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [8140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [8143] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(3721), + [8147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), + [8149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [8153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ns_enum_specifier, 4, .production_id = 56), SHIFT(4848), + [8156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ns_enum_specifier, 6, .production_id = 163), + [8158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ns_enum_specifier, 6, .production_id = 163), + [8160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 4), + [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 4), + [8164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), SHIFT(4848), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [8169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 29), + [8171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 29), + [8173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 29), SHIFT(2695), + [8176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ns_enum_specifier, 6, .production_id = 163), SHIFT(4848), + [8179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 1), SHIFT(3363), + [8182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 1), + [8184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 1), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [8188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 29), + [8190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 29), + [8192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 29), SHIFT(2695), + [8195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 4), + [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 4), + [8199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 4), SHIFT(2695), + [8202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 27), + [8204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 27), + [8206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 27), SHIFT(4848), + [8209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 4), SHIFT(2695), + [8212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 1), SHIFT(3369), + [8215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4848), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [8220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 62), + [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 62), + [8224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 62), SHIFT(4848), + [8227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [8235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [8237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [8239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), + [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [8251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), + [8253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 4), SHIFT(5117), + [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [8274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [8278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ns_enum_specifier, 5, .production_id = 122), + [8280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ns_enum_specifier, 5, .production_id = 122), + [8282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ns_enum_specifier, 7, .production_id = 195), + [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ns_enum_specifier, 7, .production_id = 195), + [8286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 29), SHIFT(5117), + [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [8299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof_specifier, 4, .production_id = 60), + [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof_specifier, 4, .production_id = 60), + [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [8321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [8323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [8329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 68), + [8331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 68), + [8333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 17), + [8335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 17), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [8341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [8343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [8345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [8347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [8349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3600), + [8352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 18), + [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 18), + [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [8370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, .production_id = 181), + [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, .production_id = 181), + [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [8398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 106), + [8400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 106), + [8402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 66), + [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 66), + [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [8458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [8460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [8470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 28), + [8472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 28), + [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [8478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [8480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [8482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 66), + [8484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 66), + [8486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 5), + [8488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 5), + [8490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 28), + [8492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 28), + [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [8498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 108), + [8500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 108), + [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [8512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 5), + [8514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 5), + [8516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 30), + [8518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 30), + [8520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 28), + [8522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 28), + [8524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 30), + [8526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 30), + [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [8532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 65), + [8534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 65), + [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [8540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [8544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [8548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 5), + [8550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 5), + [8552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [8560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [8564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [8574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [8578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [8582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [8586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [8590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [8596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [8598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [8600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4432), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [8604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [8616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 104), + [8618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 104), + [8620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 143), + [8622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 143), + [8624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [8628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [8632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 61), + [8634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 61), [8636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 144), [8638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 144), - [8640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 145), - [8642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 145), - [8644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [8648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), - [8650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), - [8652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 28), - [8654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 28), - [8656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [8660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [8664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [8676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dictionary_key_value_list, 2, .production_id = 41), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [8706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dictionary_key_value_list, 3, .production_id = 80), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [8718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3590), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [8743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 1), SHIFT(3617), - [8746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4067), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [8753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), SHIFT(4162), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [8768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), SHIFT(4249), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [8773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 1), SHIFT(3625), - [8776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4066), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [8797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), - [8799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [8801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [8803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [8805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [8807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [8853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 29), SHIFT(2736), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [8860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_type_specifier_repeat1, 2), SHIFT_REPEAT(3745), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [8865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(3790), - [8868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 4), SHIFT(2736), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [8903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [8905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [8907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3770), - [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [8912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [8914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [8916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [8920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3769), - [8923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [8925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [8927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_type_declarator, 2, .production_id = 43), - [8929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_declarator, 5, .production_id = 167), - [8931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_declarator, 5, .production_id = 167), - [8933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_declarator, 6, .production_id = 199), - [8935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_declarator, 6, .production_id = 199), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [8939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 4), SHIFT(2736), - [8942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 29), SHIFT(2736), - [8945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 62), SHIFT(4846), - [8948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [8950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 56), SHIFT(4846), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [8955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_declarator, 6, .production_id = 198), - [8957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_declarator, 6, .production_id = 198), - [8959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 29), SHIFT(2736), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [8966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 4), SHIFT(2736), - [8969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 27), SHIFT(4846), - [8972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 143), SHIFT(4846), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [8977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_declarator, 5, .production_id = 168), - [8979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_declarator, 5, .production_id = 168), - [8981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_declarator, 7, .production_id = 218), - [8983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_declarator, 7, .production_id = 218), - [8985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [8987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5890), - [8990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5890), - [8993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [8995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3820), - [8998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5915), - [9001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3821), - [9004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5892), - [9007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5892), - [9010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), - [9012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5890), - [9015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5890), - [9018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 45), - [9020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(3820), - [9023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5915), - [9026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(3821), - [9029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5892), - [9032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5892), - [9035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 45), - [9037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 45), - [9039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [9041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [9055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [9057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [9059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 128), - [9061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 128), + [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [8646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [8650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [8654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_specifier, 4, .production_id = 60), + [8656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_specifier, 4, .production_id = 60), + [8658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [8662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [8686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [8688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dictionary_key_value_list, 3, .production_id = 80), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [8694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dictionary_key_value_list, 2, .production_id = 41), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [8722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), + [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [8802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 1), SHIFT(3607), + [8805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4076), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [8816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), SHIFT(4075), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [8821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 1), SHIFT(3613), + [8824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4100), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [8831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3612), + [8834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), SHIFT(4087), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [8845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(3691), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [8876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 4), SHIFT(2697), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [8883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 29), SHIFT(2697), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [8892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_type_specifier_repeat1, 2), SHIFT_REPEAT(3686), + [8895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_type_declarator, 2, .production_id = 43), + [8897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [8899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [8901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [8903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [8905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [8907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [8909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [8911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3728), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [8916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_declarator, 6, .production_id = 198), + [8918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_declarator, 6, .production_id = 198), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [8922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_declarator, 7, .production_id = 218), + [8924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_declarator, 7, .production_id = 218), + [8926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_declarator, 6, .production_id = 199), + [8928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_declarator, 6, .production_id = 199), + [8930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_declarator, 5, .production_id = 167), + [8932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_declarator, 5, .production_id = 167), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [8942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_declarator, 5, .production_id = 168), + [8944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_declarator, 5, .production_id = 168), + [8946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3815), + [8949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [8953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ns_enum_specifier, 6, .production_id = 163), SHIFT(4849), + [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [8962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 27), SHIFT(4849), + [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [8967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 29), SHIFT(2697), + [8970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [8972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [8974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5850), + [8977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5850), + [8980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [8982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3799), + [8985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5875), + [8988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3800), + [8991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5851), + [8994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5851), + [8997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [8999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 4), SHIFT(2697), + [9002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), + [9004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5850), + [9007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5850), + [9010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 45), + [9012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(3799), + [9015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5875), + [9018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(3800), + [9021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5851), + [9024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5851), + [9027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 45), + [9029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 45), + [9031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [9033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 4), SHIFT(2697), + [9036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [9040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 29), SHIFT(2697), + [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [9045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 62), SHIFT(4849), + [9048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [9050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ns_enum_specifier, 4, .production_id = 56), SHIFT(4849), + [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [9055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 128), + [9057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 128), + [9059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [9061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), [9063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 82), [9065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 82), - [9067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [9069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [9067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 170), + [9069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 170), + [9071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [9073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), [9075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 82), [9077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 82), - [9079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 170), - [9081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 170), - [9083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [9085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [9087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), SHIFT(4846), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [9094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 1), SHIFT(3866), - [9097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4846), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [9102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 1), SHIFT(3867), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [9123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 127), - [9125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 127), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [9137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 81), - [9139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 81), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [9143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 23), - [9145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 23), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [9153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 169), - [9155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 169), - [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [9171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 23), - [9173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 23), - [9175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 103), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [9191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 85), SHIFT_REPEAT(4705), - [9194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 85), - [9196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 85), - [9198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [9204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1), - [9206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1), SHIFT(3363), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [9211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3907), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), - [9232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_type_declarator, 1, .production_id = 22), - [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), - [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), - [9238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), - [9240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), - [9242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 1, .production_id = 22), - [9244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 2, .production_id = 67), - [9246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_type_declarator, 2, .production_id = 67), - [9248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_type_declarator, 3, .production_id = 112), - [9250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 3, .production_id = 112), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [9254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [9256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 17), - [9258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [9260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 17), - [9262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [9264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 17), SHIFT(2734), - [9267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), SHIFT(2734), - [9270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), SHIFT(2734), - [9273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 17), SHIFT(2734), - [9276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [9278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [9280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4001), - [9283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4002), - [9286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3805), - [9289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [9293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [9299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [9301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [9303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [9305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [9309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__protocol_identifier, 1, .dynamic_precedence = 5, .production_id = 10), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [9334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5330), - [9337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5330), - [9340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3098), - [9343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5365), - [9346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3101), - [9349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5370), - [9352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5370), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [9359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(4313), - [9362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), - [9364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(5869), - [9367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(4540), - [9370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(4035), - [9373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(4544), - [9376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(4021), - [9379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(5900), - [9382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(4271), - [9385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(4790), - [9388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(5864), - [9391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(4383), - [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), - [9398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), - [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), - [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), - [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), - [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), - [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [9436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5330), - [9439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5330), - [9442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(3098), - [9445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5365), - [9448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(3101), - [9451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5370), - [9454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5370), - [9457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 10), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [9463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [9485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(4313), - [9488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(5869), - [9491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(4540), - [9494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(4045), - [9497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(4544), - [9500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), - [9502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(5900), - [9505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(4271), - [9508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(4790), - [9511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(5864), - [9514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(4383), - [9517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_repeat1, 2), - [9519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_repeat1, 2), SHIFT_REPEAT(5330), - [9522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_repeat1, 2), SHIFT_REPEAT(5330), - [9525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_repeat1, 2), SHIFT_REPEAT(3098), - [9528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_repeat1, 2), SHIFT_REPEAT(5365), - [9531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_repeat1, 2), SHIFT_REPEAT(3101), - [9534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_repeat1, 2), SHIFT_REPEAT(5370), - [9537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_repeat1, 2), SHIFT_REPEAT(5370), - [9540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_repeat1, 2), SHIFT_REPEAT(3215), - [9543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_repeat1, 2), SHIFT_REPEAT(5376), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [9550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keyword_selector_repeat1, 2), SHIFT_REPEAT(5395), - [9553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_keyword_selector_repeat1, 2), - [9555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_keyword_selector_repeat1, 2), - [9557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_keyword_selector_repeat1, 2), SHIFT_REPEAT(4816), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [9566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), - [9568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_selector, 1), - [9570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_selector, 1), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [9574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 2, .production_id = 10), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [9584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [9588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 4, .production_id = 103), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [9592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), - [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), - [9606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), - [9608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [9620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [9622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [9626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [9632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [9636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [9638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), - [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), - [9650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), - [9652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), - [9654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), - [9656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_declarator, 3, .production_id = 150), - [9658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_declarator, 3, .production_id = 150), - [9660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), - [9662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [9666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [9670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), - [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), - [9674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [9676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), - [9678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [9680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_declarator, 3, .production_id = 149), - [9682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_declarator, 3, .production_id = 149), - [9684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [9688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [9692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 4, .production_id = 146), - [9694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [9698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), - [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), - [9702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [9704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [9712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [9720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [9728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 2, .production_id = 43), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [9738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), - [9748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5475), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [9754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 3, .production_id = 89), - [9756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [9764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [9768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), - [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [9780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [9788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [9796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [9800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [9812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [9832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [9836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [9846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), - [9848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [9862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [9866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [9872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [9876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [9884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), - [9886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [9888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), - [9890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [9894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [9898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [9902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), - [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [9920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [9932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [9936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [9942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_declarator, 4, .production_id = 189), - [9944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_declarator, 4, .production_id = 189), - [9946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [9948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [9956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [9964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [9968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), - [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), - [9972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [9976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [9986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [9992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [10002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [10008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [10022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [10026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_declarator, 2, .production_id = 36), - [10028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_declarator, 2, .production_id = 36), - [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [10038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [10048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [10052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [10056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [10060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [10064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [10074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [10092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [10094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2), - [10096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 23), - [10098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 23), - [10100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [10108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_declarator, 4, .production_id = 149), - [10110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_declarator, 4, .production_id = 149), - [10112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_declarator, 4, .production_id = 150), - [10114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_declarator, 4, .production_id = 150), - [10116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_abstract_declarator, 5, .production_id = 132), - [10118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_abstract_declarator, 5, .production_id = 132), - [10120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 21), - [10122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 21), - [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), - [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [10128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [10130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1), - [10132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_abstract_declarator, 4, .production_id = 94), - [10134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_abstract_declarator, 4, .production_id = 94), - [10136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 82), - [10138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 82), - [10140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_declarator, 3, .production_id = 36), - [10142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_declarator, 3, .production_id = 36), - [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), - [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), - [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), - [10158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 133), - [10160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 133), - [10162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2, .production_id = 23), - [10164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2, .production_id = 23), - [10166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 128), - [10168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 128), - [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [10172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5896), - [10175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5896), - [10178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(4431), - [10181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5916), - [10184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(4469), - [10187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5898), - [10190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5898), - [10193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [10195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3), - [10197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 95), - [10199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 95), - [10201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 81), - [10203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 81), - [10205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), - [10207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_abstract_declarator, 6, .production_id = 172), - [10209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_abstract_declarator, 6, .production_id = 172), - [10211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 45), - [10213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 45), - [10215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [10217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [10219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_declarator, 5, .production_id = 189), - [10221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_declarator, 5, .production_id = 189), - [10223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5896), - [10226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5896), - [10229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(4431), - [10232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5916), - [10235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(4469), - [10238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5898), - [10241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5898), - [10244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_abstract_declarator, 7, .production_id = 204), - [10246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_abstract_declarator, 7, .production_id = 204), - [10248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 170), - [10250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 170), - [10252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 82), - [10254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 82), - [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [10258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [10262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 81), - [10264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 81), - [10266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 23), - [10268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 23), - [10270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variadic_arguments, 1), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [10274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 127), - [10276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 127), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [10280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 169), - [10282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 169), - [10284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 4, .production_id = 89), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [10288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 5, .production_id = 146), - [10290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 3, .production_id = 67), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [10302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 2, .production_id = 22), - [10304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [10306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [10310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [10312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [10314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [10316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [10318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 45), - [10320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 45), - [10322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_argument_type_specifier, 3, .production_id = 148), - [10324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_argument_type_specifier, 3, .production_id = 148), - [10326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 170), - [10328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 170), - [10330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_selector, 1), - [10332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_selector, 1), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [10336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 82), - [10338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 82), - [10340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 4, .production_id = 112), - [10342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 3, .production_id = 43), - [10344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 128), - [10346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 128), - [10348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 82), - [10350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 82), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [10354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2, .production_id = 85), SHIFT_REPEAT(4716), - [10357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2, .production_id = 85), - [10359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2, .production_id = 85), - [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [10363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_selector, 1), - [10365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_selector, 1), - [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [10369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_type_specifier_repeat1, 2), SHIFT_REPEAT(3739), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [10480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 34), - [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [10484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_selector, 3), - [10486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_selector, 3), - [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [10520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver, 1), - [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [10524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dictionary_key_value_pair, 3, .production_id = 124), - [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [10530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [10532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 173), - [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [10560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 4), SHIFT(5223), - [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [10571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 4), SHIFT(2738), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [10576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 29), SHIFT(2738), - [10579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 29), SHIFT(5223), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [10644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [10660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 62), SHIFT(4823), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [10665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), SHIFT(4823), - [10668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), SHIFT(4104), - [10671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(4567), - [10674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(4549), - [10677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(4566), - [10680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 4), SHIFT(2738), - [10683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 1), SHIFT(4546), - [10686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4168), - [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [10691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), SHIFT(4079), - [10694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 1), SHIFT(4535), - [10697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4823), - [10700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4110), - [10703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4549), - [10706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 27), SHIFT(4823), - [10709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 143), SHIFT(4823), - [10712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 29), SHIFT(2738), - [10715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 29), SHIFT(2738), - [10718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 4), SHIFT(2738), - [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [10723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 56), SHIFT(4823), - [10726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), - [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [10736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), - [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), - [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [10760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [10764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), - [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [10774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), - [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [10840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [10844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [10846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 22), - [10848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [10868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [10880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 46), - [10882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 46), - [10884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [10886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [10888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [10890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [10892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [10894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [10896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [10898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [10900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [10902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [10904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [10906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 16), - [10908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 16), - [10910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_has_include, 4, .production_id = 91), - [10912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_has_include, 4, .production_id = 91), - [10914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [10916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [10918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 3), - [10920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 3), - [10922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), - [10924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), - [10926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), - [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), - [10932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), - [10934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), - [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), - [10938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), - [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [10942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), - [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [10962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), - [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [11010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), - [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [11022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [11026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), - [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), - [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [11046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), - [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [11052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 96), - [11054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 127), - [11056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 81), - [11058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 20), - [11060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 54), - [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [11066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 52), - [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [11072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 169), - [11074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 23), - [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [11092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 29), SHIFT(5136), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [11099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__selector_name, 1, .production_id = 40), - [11101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__selector_name_repeat1, 2, .production_id = 72), SHIFT_REPEAT(2751), - [11104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__selector_name_repeat1, 2, .production_id = 72), - [11106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__selector_name_repeat1, 2, .production_id = 72), SHIFT_REPEAT(4917), - [11109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 128), - [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [11121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 4), SHIFT(5136), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [11126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 82), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [11132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 64), - [11134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 45), - [11136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 82), - [11138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 23), - [11140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 170), - [11142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [11144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3684), - [11147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [11149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(3686), - [11152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [11154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(5242), - [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [11159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), - [11161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [11163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), - [11165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_forward_declaration_repeat1, 2, .production_id = 36), - [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [11171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument_list, 1), - [11173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 43), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [11179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), - [11181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), - [11183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [11187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [11189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variadic_arguments, 2), - [11191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [11193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [11197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_keyword_argument_list_repeat1, 2), SHIFT_REPEAT(5253), - [11200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_keyword_argument_list_repeat1, 2), - [11202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_keyword_argument_list_repeat1, 2), SHIFT_REPEAT(3644), - [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), - [11209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [11211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), - [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [11215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [11219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), - [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [11223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [11227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [11231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), SHIFT(4082), - [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [11246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [11250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [11252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [11254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(4830), - [11257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(4830), - [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [11262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4822), - [11265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4100), - [11268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), SHIFT(4156), - [11271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), - [11277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), - [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [11283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [11285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4833), - [11288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4142), - [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [11295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), - [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [11299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [11303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), - [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [11307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), - [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [11315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5713), - [11317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4929), - [11319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), - [11325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [11327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), - [11341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), - [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [11347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [11353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [11355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [11357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), - [11359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [11363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [11381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 85), SHIFT_REPEAT(4715), - [11384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 85), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [11406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), - [11408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [11414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 2, .production_id = 58), - [11416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_available_expression_repeat1, 2, .production_id = 165), SHIFT_REPEAT(5732), - [11419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_available_expression_repeat1, 2, .production_id = 165), - [11421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__protocol_identifier, 1, .dynamic_precedence = 5, .production_id = 10), REDUCE(sym__parameterized_class_type_arguments, 1, .production_id = 2), - [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [11432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_forward_declaration_repeat1, 2, .production_id = 72), SHIFT_REPEAT(5151), - [11435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protocol_forward_declaration_repeat1, 2, .production_id = 72), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [11441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dictionary_key_value_list, 1, .production_id = 41), - [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [11451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_forward_declaration_repeat1, 2, .production_id = 72), SHIFT_REPEAT(5157), - [11454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_forward_declaration_repeat1, 2, .production_id = 72), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [11460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dynamic_definition_repeat1, 2, .production_id = 161), SHIFT_REPEAT(5449), - [11463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dynamic_definition_repeat1, 2, .production_id = 161), - [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [11469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_synthesize_definition_repeat1, 2), SHIFT_REPEAT(5039), - [11472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_synthesize_definition_repeat1, 2), - [11474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_platform_version_repeat1, 2), SHIFT_REPEAT(4912), - [11477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_platform_version_repeat1, 2), - [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5010), - [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [11499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synthesize_property, 1, .production_id = 75), - [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), - [11505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [11507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), - [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [11521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__selector_name_repeat1, 1, .production_id = 40), - [11523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__keyword_name, 2, .production_id = 40), - [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [11527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dictionary_key_value_list, 2, .production_id = 80), - [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [11541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generics_type_reference_repeat1, 2), SHIFT_REPEAT(4206), - [11544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generics_type_reference_repeat1, 2), - [11546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform_version, 1, .production_id = 38), - [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [11550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameterized_class_type_arguments_repeat1, 2, .production_id = 153), SHIFT_REPEAT(4850), - [11553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameterized_class_type_arguments_repeat1, 2, .production_id = 153), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [11559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameterized_class_type_arguments, 1, .production_id = 2), - [11561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform, 1), - [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [11585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_scope, 1), - [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [11589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_scope, 1), - [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [11595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [11599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_attributes_repeat1, 2), SHIFT_REPEAT(4591), - [11602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_attributes_repeat1, 2), - [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [11606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 3, .production_id = 70), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [11610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(2854), - [11613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [11619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 102), - [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [11625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(5111), - [11628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [11664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_type_references_repeat1, 2), SHIFT_REPEAT(3773), - [11667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_type_references_repeat1, 2), - [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [11671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_qualifiers_repeat1, 2, .production_id = 72), SHIFT_REPEAT(5239), - [11674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protocol_qualifiers_repeat1, 2, .production_id = 72), - [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [11700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameterized_class_type_arguments, 2, .production_id = 17), - [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [11708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 134), - [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [11722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_availability_attribute_specifier_repeat1, 2, .production_id = 118), SHIFT_REPEAT(4683), - [11725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_availability_attribute_specifier_repeat1, 2, .production_id = 118), - [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [11735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(5150), - [11738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [11758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(3398), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [11767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(4594), - [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [11784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__dictionary_key_value_list_repeat1, 2, .production_id = 80), SHIFT_REPEAT(3623), - [11787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__dictionary_key_value_list_repeat1, 2, .production_id = 80), - [11789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [11791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [11793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__dictionary_key_value_list_repeat1, 2, .production_id = 125), - [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [11799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [11801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), - [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [11805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [11815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_availability_attribute_specifier_repeat1, 2), - [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [11819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_availability_attribute_specifier_repeat1, 2, .production_id = 116), - [11821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [11823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), - [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [11835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [11837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), - [11839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__message_selector, 1, .production_id = 26), - [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [11843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [11845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), - [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [11853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_forward_declaration_repeat1, 3, .production_id = 36), - [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [11859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [11861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), - [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [11871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protocol_qualifiers_repeat1, 2, .production_id = 36), - [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [11885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [11887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), - [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [11901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), - [11903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [11905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), - [11907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 3, .production_id = 70), - [11909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [11911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), - [11913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), - [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [11919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_available_expression_repeat1, 3, .production_id = 197), - [11921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), - [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [11937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_argument_type_specifier, 4, .production_id = 148), - [11939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform_version, 1, .production_id = 37), - [11941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameterized_class_type_arguments, 3, .production_id = 2), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [11947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameterized_class_type_arguments_repeat1, 2, .production_id = 67), - [11949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [11951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), - [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [11955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [11965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform_version, 4, .production_id = 157), - [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [11971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synthesize_property, 3, .production_id = 159), - [11973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameterized_class_type_arguments, 4, .production_id = 17), - [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [11979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dynamic_definition_repeat1, 2, .production_id = 121), - [11981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [11995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 4, .production_id = 70), - [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), - [11999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform_version, 5, .production_id = 191), - [12001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_identifier, 1, .dynamic_precedence = 5, .production_id = 10), - [12003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protocol_forward_declaration_repeat1, 2, .production_id = 36), - [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [9089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), SHIFT(4849), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [9098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 81), + [9100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 81), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [9110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 23), + [9112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 23), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [9126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 1), SHIFT(3831), + [9129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4849), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [9136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 127), + [9138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 127), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [9142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 169), + [9144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 169), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [9154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 1), SHIFT(3836), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [9163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 23), + [9165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 23), + [9167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 103), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [9183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 85), SHIFT_REPEAT(4730), + [9186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 85), + [9188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 85), + [9190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [9196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1), + [9198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1), SHIFT(3303), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [9203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3868), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [9210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [9222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_type_declarator, 1, .production_id = 22), + [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), + [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), + [9232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 1, .production_id = 22), + [9234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 3, .production_id = 111), + [9236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_type_declarator, 2, .production_id = 67), + [9238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 2, .production_id = 67), + [9240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument_type_declarator, 3, .production_id = 111), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [9244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 17), + [9246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [9248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 17), + [9250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [9254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), SHIFT(2689), + [9257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 17), SHIFT(2689), + [9260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), SHIFT(2689), + [9263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 17), SHIFT(2689), + [9266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [9268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [9270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4023), + [9273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4024), + [9276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(3721), + [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [9287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__protocol_identifier, 1, .dynamic_precedence = 5, .production_id = 10), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [9294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [9296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [9298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [9300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), + [9322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [9326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [9334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), + [9338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [9350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5853), + [9353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5853), + [9356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3041), + [9359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5792), + [9362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(3040), + [9365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5791), + [9368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5791), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [9381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(4352), + [9384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), + [9386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(5829), + [9389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(4557), + [9392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(4053), + [9395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(4576), + [9398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(4044), + [9401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(4293), + [9404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(4810), + [9407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(5860), + [9410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(5824), + [9413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), SHIFT_REPEAT(4395), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [9426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5853), + [9429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5853), + [9432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(3041), + [9435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5792), + [9438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(3040), + [9441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5791), + [9444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5791), + [9447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [9451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(4352), + [9454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(5829), + [9457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(4557), + [9460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(4054), + [9463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(4576), + [9466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), + [9468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(4293), + [9471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(4810), + [9474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(5860), + [9477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(5824), + [9480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat1, 2), SHIFT_REPEAT(4395), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [9497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_repeat1, 2), + [9499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_repeat1, 2), SHIFT_REPEAT(5853), + [9502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_repeat1, 2), SHIFT_REPEAT(5853), + [9505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_repeat1, 2), SHIFT_REPEAT(3041), + [9508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_repeat1, 2), SHIFT_REPEAT(5792), + [9511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_repeat1, 2), SHIFT_REPEAT(3040), + [9514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_repeat1, 2), SHIFT_REPEAT(5791), + [9517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_repeat1, 2), SHIFT_REPEAT(5791), + [9520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_repeat1, 2), SHIFT_REPEAT(3189), + [9523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_repeat1, 2), SHIFT_REPEAT(5785), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [9528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 10), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), + [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [9544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [9548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [9550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), + [9554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [9556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [9558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 4, .production_id = 103), + [9560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), + [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), + [9564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [9566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [9568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), + [9570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [9578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), + [9580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), + [9582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [9584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [9586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [9592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), + [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), + [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), + [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), + [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [9608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 2, .production_id = 10), + [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [9614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [9616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keyword_selector_repeat1, 2), SHIFT_REPEAT(5373), + [9619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_keyword_selector_repeat1, 2), + [9621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_keyword_selector_repeat1, 2), + [9623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_keyword_selector_repeat1, 2), SHIFT_REPEAT(4854), + [9626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [9628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [9632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [9636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [9640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [9642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_selector, 1), + [9644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_selector, 1), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [9650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [9652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [9654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [9656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [9670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [9680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [9684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [9690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [9694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [9698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [9702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [9706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [9710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [9714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [9722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [9730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [9740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [9744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 2, .production_id = 43), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [9750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [9764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [9768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 4, .production_id = 145), + [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [9788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [9802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [9806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [9846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [9852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [9856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [9860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [9866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [9884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [9888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [9892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [9918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [9922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_declarator, 2, .production_id = 36), + [9924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_declarator, 2, .production_id = 36), + [9926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [9928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [9932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_declarator, 3, .production_id = 148), + [9934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_declarator, 3, .production_id = 148), + [9936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [9938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [9948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_declarator, 4, .production_id = 188), + [9950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_declarator, 4, .production_id = 188), + [9952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [9956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_declarator, 3, .production_id = 149), + [9958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_declarator, 3, .production_id = 149), + [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [9962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [9970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 3, .production_id = 89), + [9972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [9976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [9984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [9990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [10000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [10004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [10008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [10016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [10020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [10028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [10036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [10046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [10050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [10054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [10060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [10074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [10082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_abstract_declarator, 6, .production_id = 172), + [10084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_abstract_declarator, 6, .production_id = 172), + [10086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [10090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5856), + [10093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5856), + [10096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(4468), + [10099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5876), + [10102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(4470), + [10105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5857), + [10108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 45), SHIFT(5857), + [10111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 81), + [10113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 81), + [10115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 23), + [10117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 23), + [10119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [10121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2), + [10123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 45), + [10125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 45), + [10127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_abstract_declarator, 7, .production_id = 204), + [10129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_abstract_declarator, 7, .production_id = 204), + [10131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [10135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [10137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [10139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_abstract_declarator, 4, .production_id = 94), + [10141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_abstract_declarator, 4, .production_id = 94), + [10143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [10145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [10147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [10149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [10151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [10153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [10155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), + [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [10161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [10163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [10165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 95), + [10167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 95), + [10169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [10171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3), + [10173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_declarator, 3, .production_id = 36), + [10175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_declarator, 3, .production_id = 36), + [10177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5856), + [10180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5856), + [10183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(4468), + [10186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5876), + [10189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(4470), + [10192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5857), + [10195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(5857), + [10198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 170), + [10200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 170), + [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [10204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 82), + [10206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 82), + [10208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_declarator, 5, .production_id = 188), + [10210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_declarator, 5, .production_id = 188), + [10212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 128), + [10214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 128), + [10216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_declarator, 4, .production_id = 149), + [10218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_declarator, 4, .production_id = 149), + [10220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword_declarator, 4, .production_id = 148), + [10222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_declarator, 4, .production_id = 148), + [10224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 82), + [10226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 82), + [10228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 133), + [10230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 133), + [10232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2, .production_id = 23), + [10234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2, .production_id = 23), + [10236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [10238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1), + [10240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 21), + [10242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 21), + [10244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_abstract_declarator, 5, .production_id = 132), + [10246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_abstract_declarator, 5, .production_id = 132), + [10248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variadic_arguments, 1), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [10254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [10256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 127), + [10258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 127), + [10260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 23), + [10262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 23), + [10264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 81), + [10266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 81), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [10270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 169), + [10272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 169), + [10274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 5, .production_id = 145), + [10276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 82), + [10278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 82), + [10280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2, .production_id = 85), SHIFT_REPEAT(4732), + [10283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_declaration_repeat1, 2, .production_id = 85), + [10285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_declaration_repeat1, 2, .production_id = 85), + [10287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [10289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [10291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 4, .production_id = 89), + [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [10295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 3, .production_id = 43), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [10299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_selector, 1), + [10301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_selector, 1), + [10303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_argument_type_specifier, 3, .production_id = 147), + [10305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_argument_type_specifier, 3, .production_id = 147), + [10307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [10309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [10311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [10313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [10315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 2, .production_id = 22), + [10317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_selector, 1), + [10319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_selector, 1), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [10323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 45), + [10325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 45), + [10327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 3, .production_id = 67), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [10331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 170), + [10333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 170), + [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [10341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 128), + [10343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 128), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [10349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_type_declarator, 4, .production_id = 111), + [10351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 82), + [10353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 82), + [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [10365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 34), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [10373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_type_specifier_repeat1, 2), SHIFT_REPEAT(3683), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [10426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver, 1), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [10506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_selector, 3), + [10508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_selector, 3), + [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [10520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dictionary_key_value_pair, 3, .production_id = 124), + [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [10524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [10532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 29), SHIFT(2691), + [10535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 29), SHIFT(5087), + [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [10540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 4), SHIFT(2691), + [10543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 4), SHIFT(5087), + [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [10592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 173), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [10622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [10650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 1), SHIFT(4554), + [10653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4864), + [10656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4092), + [10659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), SHIFT(4864), + [10662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), SHIFT(4089), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [10669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(4606), + [10672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(4562), + [10675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(4594), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [10680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4562), + [10683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 4), SHIFT(2691), + [10686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 27), SHIFT(4864), + [10689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 4), SHIFT(2691), + [10692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 29), SHIFT(2691), + [10695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 62), SHIFT(4864), + [10698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 29), SHIFT(2691), + [10701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ns_enum_specifier, 4, .production_id = 56), SHIFT(4864), + [10704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ns_enum_specifier, 6, .production_id = 163), SHIFT(4864), + [10707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), SHIFT(4093), + [10710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 1), SHIFT(4575), + [10713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4079), + [10716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_swift_name_attribute_sepcifier_repeat2, 2), + [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [10732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), + [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [10736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [10760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [10766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), + [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [10824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [10828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [10836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 22), + [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [10866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [10870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 46), + [10872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 46), + [10874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [10876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [10878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_has_include, 4, .production_id = 91), + [10880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_has_include, 4, .production_id = 91), + [10882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [10884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [10886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [10888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [10890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [10892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 16), + [10894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 16), + [10896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [10898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [10900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 3), + [10902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 3), + [10904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [10906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [10908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [10910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [10914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [10916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), + [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [10920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [10922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [10924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [10926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [10934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [10952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [10958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [11002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), + [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), + [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [11016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [11030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [11040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 127), + [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [11052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 23), + [11054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 54), + [11056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 52), + [11058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 169), + [11060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 81), + [11062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 20), + [11064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 96), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [11070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 23), + [11072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 29), SHIFT(5240), + [11075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(3652), + [11078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [11080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(5331), + [11083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 170), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [11095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 45), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [11115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3660), + [11118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__selector_name_repeat1, 2, .production_id = 72), SHIFT_REPEAT(2706), + [11121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__selector_name_repeat1, 2, .production_id = 72), + [11123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__selector_name_repeat1, 2, .production_id = 72), SHIFT_REPEAT(4949), + [11126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [11128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 64), + [11130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 82), + [11132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 128), + [11134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [11136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 4), SHIFT(5240), + [11139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__selector_name, 1, .production_id = 40), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [11145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 82), + [11147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [11149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [11151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 43), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [11155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [11157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [11159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_keyword_argument_list_repeat1, 2), SHIFT_REPEAT(5281), + [11162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_keyword_argument_list_repeat1, 2), + [11164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_keyword_argument_list_repeat1, 2), SHIFT_REPEAT(3602), + [11167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), + [11169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), + [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [11175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument_list, 1), + [11177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [11181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_forward_declaration_repeat1, 2, .production_id = 36), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [11185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [11189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [11191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variadic_arguments, 2), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [11205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), + [11207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [11209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [11217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), + [11219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [11223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), + [11225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [11227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(4842), + [11230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(4842), + [11233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [11235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [11237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), + [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [11261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [11267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [11271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [11273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), + [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [11281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [11285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), + [11287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [11293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 85), SHIFT_REPEAT(4734), + [11296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 85), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [11308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [11312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4891), + [11315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4083), + [11318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [11324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [11328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), + [11330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [11332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [11336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [11340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [11342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [11348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), SHIFT(4106), + [11351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [11353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [11355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), + [11357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [11359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [11361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 4), SHIFT(4082), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [11366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4882), + [11369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 1), SHIFT(4099), + [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [11378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(4633), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [11397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_platform_version_repeat1, 2), SHIFT_REPEAT(4991), + [11400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_platform_version_repeat1, 2), + [11402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), + [11404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), + [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [11422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [11426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_forward_declaration_repeat1, 2, .production_id = 72), SHIFT_REPEAT(5192), + [11429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protocol_forward_declaration_repeat1, 2, .production_id = 72), + [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [11439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__protocol_identifier, 1, .dynamic_precedence = 5, .production_id = 10), REDUCE(sym__parameterized_class_type_arguments, 1, .production_id = 2), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [11450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform, 1), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [11454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_forward_declaration_repeat1, 2, .production_id = 72), SHIFT_REPEAT(5256), + [11457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_forward_declaration_repeat1, 2, .production_id = 72), + [11459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_attributes_repeat1, 2), SHIFT_REPEAT(4611), + [11462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_attributes_repeat1, 2), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [11468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 3, .production_id = 70), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [11472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 2, .production_id = 58), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [11482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5010), + [11484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synthesize_property, 1, .production_id = 75), + [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [11502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__keyword_name, 2, .production_id = 40), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [11522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dictionary_key_value_list, 2, .production_id = 80), + [11524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__selector_name_repeat1, 1, .production_id = 40), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [11528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_scope, 1), + [11530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_scope, 1), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [11546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [11556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(3337), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [11575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(2805), + [11578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [11582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_available_expression_repeat1, 2, .production_id = 165), SHIFT_REPEAT(5488), + [11585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_available_expression_repeat1, 2, .production_id = 165), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [11593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dictionary_key_value_list, 1, .production_id = 41), + [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [11601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dynamic_definition_repeat1, 2, .production_id = 160), SHIFT_REPEAT(5384), + [11604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dynamic_definition_repeat1, 2, .production_id = 160), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [11608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_synthesize_definition_repeat1, 2), SHIFT_REPEAT(5086), + [11611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_synthesize_definition_repeat1, 2), + [11613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 102), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [11617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(5048), + [11620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [11636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [11640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform_version, 1, .production_id = 38), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [11646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_type_references_repeat1, 2), SHIFT_REPEAT(3710), + [11649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_type_references_repeat1, 2), + [11651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_qualifiers_repeat1, 2, .production_id = 72), SHIFT_REPEAT(5238), + [11654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protocol_qualifiers_repeat1, 2, .production_id = 72), + [11656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generics_type_reference_repeat1, 2), SHIFT_REPEAT(4091), + [11659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generics_type_reference_repeat1, 2), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [11663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameterized_class_type_arguments_repeat1, 2, .production_id = 152), SHIFT_REPEAT(4885), + [11666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameterized_class_type_arguments_repeat1, 2, .production_id = 152), + [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [11672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameterized_class_type_arguments, 1, .production_id = 2), + [11674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameterized_class_type_arguments, 2, .production_id = 17), + [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [11692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_availability_attribute_specifier_repeat1, 2, .production_id = 117), SHIFT_REPEAT(4709), + [11695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_availability_attribute_specifier_repeat1, 2, .production_id = 117), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [11711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__dictionary_key_value_list_repeat1, 2, .production_id = 80), SHIFT_REPEAT(3603), + [11714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__dictionary_key_value_list_repeat1, 2, .production_id = 80), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [11752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 134), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [11774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(5173), + [11777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [11791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [11793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [11797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [11799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [11803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform_version, 4, .production_id = 156), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [11809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [11811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [11813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [11815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [11817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [11819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), + [11821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__message_selector, 1, .production_id = 26), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [11829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__dictionary_key_value_list_repeat1, 2, .production_id = 125), + [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [11835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_availability_attribute_specifier_repeat1, 2), + [11837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_availability_attribute_specifier_repeat1, 2, .production_id = 115), + [11839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [11841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), + [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [11847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [11849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [11851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_forward_declaration_repeat1, 3, .production_id = 36), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [11861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameterized_class_type_arguments, 3, .production_id = 2), + [11863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameterized_class_type_arguments_repeat1, 2, .production_id = 67), + [11865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protocol_qualifiers_repeat1, 2, .production_id = 36), + [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [11875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [11877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [11879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [11889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [11891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), + [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [11895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [11897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), + [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [11903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_synthesize_property, 3, .production_id = 158), + [11905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dynamic_definition_repeat1, 2, .production_id = 120), + [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [11913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [11933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), + [11935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [11969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 3, .production_id = 70), + [11971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform_version, 1, .production_id = 37), + [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [11977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 4, .production_id = 70), + [11979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_argument_type_specifier, 4, .production_id = 147), + [11981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameterized_class_type_arguments, 4, .production_id = 17), + [11983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_identifier, 1, .dynamic_precedence = 5, .production_id = 10), + [11985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protocol_forward_declaration_repeat1, 2, .production_id = 36), + [11987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [11989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), + [11991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform_version, 5, .production_id = 190), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [11997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_available_expression_repeat1, 3, .production_id = 197), + [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [12039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [12043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [12145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [12157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [12175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [12201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [12287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [12399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [12407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [12475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 92), - [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [12483] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [12495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [12507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [12559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [12563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [12575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [12583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), - [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [12605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [12627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [12645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 5, .production_id = 131), - [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [12663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [12681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), - [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [12737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [12739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), - [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [12773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [12777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [12779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [12787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [12803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [12815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [12819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [12841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [12867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [12883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [12903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [12911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [12915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [12933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [12957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [12963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 92), - [12965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [12979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), - [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [13005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [13009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [13013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [13015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [13017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [13019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), - [13033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [13035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [13037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [13039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [13055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [13057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [13061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [13063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [13067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [13069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [13071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [13073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), - [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [13085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [13087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [13089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [13091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [13093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [13095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [13099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [13101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [13103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [13107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [13109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [13111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [13113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), - [13115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [13117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 131), - [13119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [13123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), - [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [13141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [13143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [13145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [13147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [13149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [13151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [13153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [13155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), - [13161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [13163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [13165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [13167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [13171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [13173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [13177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [13183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [12085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [12095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [12129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [12141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [12223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 92), + [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [12229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [12235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [12255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [12263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [12293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 5, .production_id = 131), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [12307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [12313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [12321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [12367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 92), + [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [12389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 131), + [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [12431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [12475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [12547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [12561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [12563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [12579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), + [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [12653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [12681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [12693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [12725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [12727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [12757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [12773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [12779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [12787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [12793] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [12819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [12841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [12867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [12883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [12903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [12911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [12915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [12933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [12935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [12957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [12965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [12979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [13005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [13009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [13013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), }; #ifdef __cplusplus diff --git a/test/corpus/compiler_attributes.txt b/test/corpus/compiler_attributes.txt index d7a38b4..46d580e 100644 --- a/test/corpus/compiler_attributes.txt +++ b/test/corpus/compiler_attributes.txt @@ -611,7 +611,7 @@ typedef void (^AFURLSessionTaskDidFinishCollectingMetricsBlock)(NSURLSession *se type: (type_identifier) declarator: (pointer_declarator declarator: (identifier))))) - (attribute_specifier + attributes: (attribute_specifier (availability_attribute_specifier))) (type_definition type: (primitive_type) @@ -630,7 +630,7 @@ typedef void (^AFURLSessionTaskDidFinishCollectingMetricsBlock)(NSURLSession *se type: (type_identifier) declarator: (pointer_declarator declarator: (identifier))))) - (attribute_specifier + attributes: (attribute_specifier (availability_attribute_specifier (platform_version platform: (platform) diff --git a/test/corpus/github.txt b/test/corpus/github.txt index e36a33d..319b0b7 100644 --- a/test/corpus/github.txt +++ b/test/corpus/github.txt @@ -45,7 +45,7 @@ typedef NS_ENUM(NSUInteger, RLMSyncStopPolicy); declarator: (identifier) (swift_name_attribute_sepcifier))) (type_definition - type: (enum_specifier + type: (ns_enum_specifier type: (type_identifier) name: (type_identifier))) (class_forward_declaration @@ -75,7 +75,7 @@ typedef void (^JSONObjectBlock)(id json, JSONModelError *err) DEPRECATED_ATTRIBU type: (type_identifier) declarator: (pointer_declarator declarator: (identifier))))) - (attribute_specifier + attributes: (attribute_specifier (availability_attribute_specifier)))) ================================================================================ @@ -209,7 +209,7 @@ typedef void (^AFURLSessionTaskDidFinishCollectingMetricsBlock)(NSURLSession *se type: (type_identifier) declarator: (pointer_declarator declarator: (identifier))))) - (attribute_specifier + attributes: (attribute_specifier (availability_attribute_specifier (platform_version platform: (platform) @@ -354,7 +354,7 @@ typedef NS_ENUM(NSInteger, SVProgressHUDStyle) { (translation_unit (type_definition - type: (enum_specifier + type: (ns_enum_specifier type: (type_identifier) name: (type_identifier) body: (enumerator_list @@ -1021,7 +1021,7 @@ __auto_type copy = (typeof(self.message))[self.message copy]; arguments: (argument_list (string_literal))))) type: (type_identifier) - attributes: (identifier)) + declarator: (type_identifier)) (declaration type: (auto) declarator: (init_declarator @@ -1371,7 +1371,7 @@ NS_ENUM(NSInteger) -------------------------------------------------------------------------------- (translation_unit - (enum_specifier + (ns_enum_specifier type: (type_identifier) body: (enumerator_list (enumerator diff --git a/test/corpus/typedef.txt b/test/corpus/typedef.txt index 459d4db..0e360bb 100644 --- a/test/corpus/typedef.txt +++ b/test/corpus/typedef.txt @@ -21,7 +21,7 @@ typedef SEL _Nonnull nonnull_SEL; class_name: (id) type_reference: (protocol_qualifiers name: (identifier))) - attributes: (identifier)) + declarator: (type_identifier)) (type_definition type: (generic_type_specifier class_name: (type_identifier) @@ -31,7 +31,7 @@ typedef SEL _Nonnull nonnull_SEL; declarator: (abstract_pointer_declarator)) (type_descriptor type: (id)))) - attributes: (identifier)) + declarator: (type_identifier)) (type_definition type: (generic_type_specifier class_name: (type_identifier) @@ -42,15 +42,15 @@ typedef SEL _Nonnull nonnull_SEL; (type_descriptor type: (type_identifier) declarator: (abstract_pointer_declarator)))) - attributes: (identifier)) + declarator: (type_identifier)) (type_definition type: (id) (type_qualifier) - attributes: (identifier)) + declarator: (type_identifier)) (type_definition type: (SEL) (type_qualifier) - attributes: (identifier))) + declarator: (type_identifier))) ================================================================================ Typedef: attributes @@ -104,7 +104,7 @@ typedef __attribute__((__ext_vector_type__(2))) float vector_float2; arguments: (argument_list (string_literal))))) type: (type_identifier) - attributes: (identifier)) + declarator: (type_identifier)) (type_definition (attribute_specifier (argument_list @@ -113,7 +113,7 @@ typedef __attribute__((__ext_vector_type__(2))) float vector_float2; arguments: (argument_list (number_literal))))) type: (primitive_type) - attributes: (identifier))) + declarator: (type_identifier))) ================================================================================ Typedef: struct @@ -140,7 +140,7 @@ typedef struct __attribute__((objc_boxable)) _NSRange { (field_declaration type: (type_identifier) declarator: (field_identifier)))) - attributes: (identifier))) + declarator: (type_identifier))) ================================================================================ Typedef: struct @@ -210,7 +210,7 @@ typedef struct { (field_declaration type: (type_identifier) declarator: (field_identifier)))) - attributes: (identifier)))) + declarator: (type_identifier)))) ================================================================================ Typedef: block @@ -249,7 +249,7 @@ typedef void (^JSONObjectBlock)(id json, JSONModelError *err) DEPRECATED_ATTRIBU type: (type_identifier) declarator: (pointer_declarator declarator: (identifier))))) - (attribute_specifier + attributes: (attribute_specifier (availability_attribute_specifier (platform_version platform: (platform) @@ -275,7 +275,7 @@ typedef void (^JSONObjectBlock)(id json, JSONModelError *err) DEPRECATED_ATTRIBU type: (type_identifier) declarator: (pointer_declarator declarator: (identifier))))) - (attribute_specifier + attributes: (attribute_specifier (availability_attribute_specifier)))) ================================================================================ @@ -313,6 +313,114 @@ typedef void (*mtl_failedMethodCallback)(Class, Method); (parameter_declaration type: (type_identifier)))))) +================================================================================ +Typedef: enum +================================================================================ + +enum { + UITableViewCellStyleDefault, + UITableViewCellStyleValue1, + UITableViewCellStyleValue2, + UITableViewCellStyleSubtitle +}; + +typedef enum { + UITableViewCellStyleDefault, + UITableViewCellStyleValue1, + UITableViewCellStyleValue2, + UITableViewCellStyleSubtitle +} UITableViewCellStyle; + +typedef enum { + UITableViewCellStyleDefault, + UITableViewCellStyleValue1, + UITableViewCellStyleValue2, + UITableViewCellStyleSubtitle +}; + +typedef NSInteger UITableViewCellStyle; + + +// enum attr-spec-seq(optional) identifier(optional) { enumerator-list } +enum week{Mon, Tue, Wed}; // type specifier +enum week day; // declaration, "day" is the declarator + +// Every declaration of an enum or a typedef is a definition. +enum week{Mon, Tue, Wed}day; // declaring an enum variable + // "week{Mon, Tue, Wed}" is the type specifier + // "day" is the declarator +-------------------------------------------------------------------------------- + +(translation_unit + (enum_specifier + body: (enumerator_list + (enumerator + name: (identifier)) + (enumerator + name: (identifier)) + (enumerator + name: (identifier)) + (enumerator + name: (identifier)))) + (type_definition + type: (enum_specifier + body: (enumerator_list + (enumerator + name: (identifier)) + (enumerator + name: (identifier)) + (enumerator + name: (identifier)) + (enumerator + name: (identifier)))) + declarator: (type_identifier)) + (type_definition + type: (enum_specifier + body: (enumerator_list + (enumerator + name: (identifier)) + (enumerator + name: (identifier)) + (enumerator + name: (identifier)) + (enumerator + name: (identifier)))) + declarator: (MISSING type_identifier)) + (type_definition + type: (type_identifier) + declarator: (type_identifier)) + (comment) + (enum_specifier + name: (type_identifier) + body: (enumerator_list + (enumerator + name: (identifier)) + (enumerator + name: (identifier)) + (enumerator + name: (identifier)))) + (comment) + (declaration + type: (enum_specifier + name: (type_identifier)) + declarator: (identifier)) + (comment) + (comment) + (declaration + type: (enum_specifier + name: (type_identifier) + body: (enumerator_list + (enumerator + name: (identifier)) + (enumerator + name: (identifier)) + (enumerator + name: (identifier)))) + declarator: (identifier)) + (comment) + (comment) + (comment)) + ================================================================================ Typedef: NS_ENUM ================================================================================ @@ -356,11 +464,11 @@ typedef enum AvatarStyle : NSUInteger { (translation_unit (type_definition - type: (enum_specifier + type: (ns_enum_specifier type: (type_identifier) name: (type_identifier))) (type_definition - type: (enum_specifier + type: (ns_enum_specifier type: (type_identifier) name: (type_identifier) body: (enumerator_list @@ -378,7 +486,7 @@ typedef enum AvatarStyle : NSUInteger { (enumerator name: (identifier))))) (type_definition - type: (enum_specifier + type: (ns_enum_specifier type: (type_identifier) name: (type_identifier) body: (enumerator_list @@ -394,7 +502,7 @@ typedef enum AvatarStyle : NSUInteger { value: (number_literal)) (enumerator name: (identifier)))) - attributes: (identifier)) + declarator: (type_identifier)) (type_definition type: (enum_specifier name: (type_identifier) @@ -405,7 +513,7 @@ typedef enum AvatarStyle : NSUInteger { value: (number_literal)) (enumerator name: (identifier)))) - attributes: (identifier))) + declarator: (type_identifier))) ================================================================================ Typedef: NS_ENUM without typedef @@ -420,7 +528,7 @@ NS_ENUM(NSInteger) -------------------------------------------------------------------------------- (translation_unit - (enum_specifier + (ns_enum_specifier type: (type_identifier) body: (enumerator_list (enumerator @@ -446,7 +554,7 @@ typedef NS_ENUM(NSInteger, TTCameraDetectionType) { (translation_unit (type_definition - type: (enum_specifier + type: (ns_enum_specifier type: (type_identifier) name: (type_identifier) body: (enumerator_list @@ -498,7 +606,7 @@ typedef NS_ENUM(NSInteger, SVProgressHUDStyle) { (translation_unit (type_definition - type: (enum_specifier + type: (ns_enum_specifier type: (type_identifier) name: (type_identifier) body: (enumerator_list @@ -534,7 +642,7 @@ typedef NS_OPTIONS(NSUInteger, ActionType) { (translation_unit (type_definition - type: (enum_specifier + type: (ns_enum_specifier type: (type_identifier) name: (type_identifier) body: (enumerator_list